diff --git a/.github/workflows/codechecks.yml b/.github/workflows/codechecks.yml index d797f9da0..bbff3ad4b 100644 --- a/.github/workflows/codechecks.yml +++ b/.github/workflows/codechecks.yml @@ -1,14 +1,19 @@ -# This workflow checks for compliance with the Google C++ style guide. +# This workflow checks for compliance with: +# - *.cpp/*.h files (clang-format, .clang-format) +# - *.json (Prettier, .prettierrc) name: Codechecks on: [push, pull_request] jobs: - clang-format: + code-format: runs-on: macos-latest steps: - uses: actions/checkout@v3 - name: Install dependencies run: | brew install clang-format + brew install npm + npm init -y + npm install prettier - name: Run clang-format run: | mkdir Release diff --git a/.gitignore b/.gitignore index edad7bebf..452a15fa1 100644 --- a/.gitignore +++ b/.gitignore @@ -38,6 +38,3 @@ build*/ # Node modules (for directed graph visualization) node_modules/ - -.github - diff --git a/.licenserc.json b/.licenserc.json index 706c60670..85715b03c 100644 --- a/.licenserc.json +++ b/.licenserc.json @@ -4,4 +4,4 @@ "SPDX-License-Identifier: BSD-3-Clause" ], "ignore": [] -} \ No newline at end of file +} diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..502152940 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,6 @@ +{ + "tabWidth": 2, + "useTabs": false, + "printWidth": 80, + "singleQuote": false +} diff --git a/CMakeLists.txt b/CMakeLists.txt index 30edfbe0a..7e0468eed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -256,10 +256,12 @@ set(SDIR ${PROJECT_SOURCE_DIR}/src/**/) # format the code add_custom_target(codeformat + COMMAND npm run format COMMAND find ${SDIR}/*.h ${SDIR}/*.cpp | xargs clang-format -style=file:${PROJECT_SOURCE_DIR}/.clang-format -i) # check code format add_custom_target(codecheck + COMMAND npm run check COMMAND find ${SDIR}/*.h ${SDIR}/*.cpp | xargs clang-format -style=file:${PROJECT_SOURCE_DIR}/.clang-format --dry-run --Werror) set_target_properties(pysvzerod PROPERTIES diff --git a/cypress/downloads/graph_data.json b/cypress/downloads/graph_data.json index fc2485fa0..0cddc71ae 100644 --- a/cypress/downloads/graph_data.json +++ b/cypress/downloads/graph_data.json @@ -25,13 +25,9 @@ ], "junctions": [ { - "inlet_vessels": [ - 0 - ], + "inlet_vessels": [0], "junction_name": "J0", - "outlet_vessels": [ - 1 - ] + "outlet_vessels": [1] } ], "vessels": [ @@ -68,4 +64,4 @@ ], "valves": [], "chambers": [] -} \ No newline at end of file +} diff --git a/docs/pages/developer_guide.md b/docs/pages/developer_guide.md index 6875d030a..adf35c3cb 100644 --- a/docs/pages/developer_guide.md +++ b/docs/pages/developer_guide.md @@ -72,19 +72,13 @@ Steps required to visualize a new block with svZeroDSolver Visualization applica # Code Style -We follow the [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html). - -## Formatting {#formatting} - -We use [clang-format](https://clang.llvm.org/docs/ClangFormat.html) to automatically -format our code accoring to the [Google Style](https://google.github.io/styleguide/cppguide.html), -as specified in the `.clang-format` file. This increases readability and maintainability of the code +We use automatic code formatting for certain files to increase readability and maintainability of the code while enabling you to focus on coding. -There are tools for your favorite IDE to automatically format your code. Examples are: -- [Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=xaver.clang-format) -- [vim](https://github.com/rhysd/vim-clang-format) -- [and many more](https://clang.llvm.org/docs/ClangFormat.html) +## Formatting {#formatting} +The following files are automatically formatted: +- Source code (`.cpp, .h`): [clang-format](https://clang.llvm.org/docs/ClangFormat.html) as specified in `.clang-format` (defaults to [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html)) +- Test cases and results (`.json`): [Prettier](https://prettier.io/) as specified in `.prettierrc` Before formatting the code with clang-format, ensure that you have latest clang-format version by running `clang-format --version`. To upgrade `clang-format` use the following commands * on MacOS: `brew upgrade clang-format` @@ -117,6 +111,27 @@ requirements. On Sherlock at Stanford, clang-format is included in the `llvm` module. +## Visual Studio Code +Install the [clang-format](https://marketplace.visualstudio.com/items?itemName=xaver.clang-format) and [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) plugins. To automatically format your files on save, add to your user settings (on macOS, press `Cmd+Shift+P`, type "Preferences: Open User Settings (JSON)") +```json + "editor.formatOnSave": true, + "[cpp]": { + "editor.defaultFormatter": "xaver.clang-format" + }, + "[json]": { + "editor.defaultFormatter": "esbenp.prettier-vscode", + }, + "[jsonc]": { + "editor.defaultFormatter": "esbenp.prettier-vscode", + }, +``` + +## Vim +Install the [clang-format](https://github.com/rhysd/vim-clang-format) and [Prettier](https://github.com/prettier/vim-prettier) plugins. + +## Other editors +See [clang-format](https://clang.llvm.org/docs/ClangFormat.html) and [Prettier](https://prettier.io/docs/editors.html). + # Documentation {#documentation} We use [Doxygen](https://doxygen.nl) to automatically build an html documentation diff --git a/package.json b/package.json new file mode 100644 index 000000000..01e9f537a --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "devDependencies": { + "prettier": "^3.6.2" + }, + "scripts": { + "format": "prettier --write \"**/*.json\"", + "check": "prettier --check \"**/*.json\"" + } +} diff --git a/tests/cases/chamber_elastance_inductor.json b/tests/cases/chamber_elastance_inductor.json index ec1657ee2..9b756054e 100644 --- a/tests/cases/chamber_elastance_inductor.json +++ b/tests/cases/chamber_elastance_inductor.json @@ -1,299 +1,113 @@ { - "description": { - "description of test case": "pulsatile pressure -> valve -> chamber -> valve -> RC -> R", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "pressure = sinusoid from 0 to 10 over 0.17s, then 0 for the rest of cycle", - "outlet:", - "Resistance: Rd = 1000, Pd = 64" + "description": { + "description of test case": "pulsatile pressure -> valve -> chamber -> valve -> RC -> R", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "pressure = sinusoid from 0 to 10 over 0.17s, then 0 for the rest of cycle", + "outlet:", + "Resistance: Rd = 1000, Pd = 64" + ] + }, + "simulation_parameters": { + "number_of_cardiac_cycles": 30, + "number_of_time_pts_per_cardiac_cycle": 101, + "absolute_tolerance": 1e-9, + "output_all_cycles": false, + "output_variable_based": true + }, + "boundary_conditions": [ + { + "bc_name": "INLET", + "bc_type": "PRESSURE", + "bc_values": { + "P": [ + 0.0, 0.003414699, 0.4075651, 1.431949, 2.938218, 4.722943, 6.545085, + 8.158555, 9.345445, 9.945458, 9.87756, 9.15092, 7.863676, 6.189676, + 4.355004, 2.607442, 1.183009, 0.274081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "simulation_parameters": { - "number_of_cardiac_cycles": 30, - "number_of_time_pts_per_cardiac_cycle": 101, - "absolute_tolerance": 1e-09, - "output_all_cycles": false, - "output_variable_based": true + { + "bc_name": "OUTLET", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 64.0, + "R": 1000.0 + } + } + ], + "junctions": [], + "vessels": [ + { + "boundary_conditions": { + "outlet": "OUTLET" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "vessel", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0001, + "R_poiseuille": 100.0 + } + } + ], + "valves": [ + { + "type": "ValveTanh", + "name": "valve0", + "params": { + "Rmax": 100000.0, + "Rmin": 100.0, + "Steepness": 100.0, + "upstream_block": "INLET", + "downstream_block": "ventricle" + } }, - "boundary_conditions": [ - { - "bc_name": "INLET", - "bc_type": "PRESSURE", - "bc_values": { - "P": [ - 0.0, - 0.003414699, - 0.4075651, - 1.431949, - 2.938218, - 4.722943, - 6.545085, - 8.158555, - 9.345445, - 9.945458, - 9.87756, - 9.15092, - 7.863676, - 6.189676, - 4.355004, - 2.607442, - 1.183009, - 0.274081, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUTLET", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 64.0, - "R": 1000.0 - } - } - ], - "junctions": [], - "vessels": [ - { - "boundary_conditions": { - "outlet": "OUTLET" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "vessel", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0001, - "R_poiseuille": 100.0 - } - } - ], - "valves": [ - { - "type": "ValveTanh", - "name": "valve0", - "params": { - "Rmax": 100000.0, - "Rmin": 100.0, - "Steepness": 100.0, - "upstream_block": "INLET", - "downstream_block": "ventricle" - } - }, - { - "type": "ValveTanh", - "name": "valve1", - "params": { - "Rmax": 100000.0, - "Rmin": 100.0, - "Steepness": 100.0, - "upstream_block": "ventricle", - "downstream_block": "vessel" - } - } - ], - "chambers": [ - { - "type": "ChamberElastanceInductor", - "name": "ventricle", - "values": { - "Emax": 1.057, - "Emin": 0.091, - "Vrd": 26.1, - "Vrs": 18.0, - "t_active": 0.2, - "t_twitch": 0.3, - "Impedance": 0.000351787 - } - } - ], - "initial_condition": { - "Vc:ventricle": 96.07 + { + "type": "ValveTanh", + "name": "valve1", + "params": { + "Rmax": 100000.0, + "Rmin": 100.0, + "Steepness": 100.0, + "upstream_block": "ventricle", + "downstream_block": "vessel" + } + } + ], + "chambers": [ + { + "type": "ChamberElastanceInductor", + "name": "ventricle", + "values": { + "Emax": 1.057, + "Emin": 0.091, + "Vrd": 26.1, + "Vrs": 18.0, + "t_active": 0.2, + "t_twitch": 0.3, + "Impedance": 0.000351787 + } } -} \ No newline at end of file + ], + "initial_condition": { + "Vc:ventricle": 96.07 + } +} diff --git a/tests/cases/chamber_sphere.json b/tests/cases/chamber_sphere.json index 0e27d8d71..4936ccf09 100644 --- a/tests/cases/chamber_sphere.json +++ b/tests/cases/chamber_sphere.json @@ -1,105 +1,105 @@ { - "description": { - "description of test case" : "runs a simple 0D model of a cardiac chamber with inlet and outlet valves" + "description": { + "description of test case": "runs a simple 0D model of a cardiac chamber with inlet and outlet valves" + }, + "boundary_conditions": [ + { + "bc_name": "IN", + "bc_type": "PRESSURE", + "bc_values": { + "P": [2150, 2150], + "t": [0, 1] + } }, - "boundary_conditions": [ - { - "bc_name": "IN", - "bc_type": "PRESSURE", - "bc_values": { - "P": [2150, 2150], - "t": [0, 1] - } - }, - { - "bc_name": "OUT", - "bc_type": "PRESSURE", - "bc_values": { - "P": [13332.2, 13332.2], - "t": [0, 1] - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 1, - "number_of_time_pts_per_cardiac_cycle": 500, - "steady_initial": false, - "output_variable_based": true, - "absolute_tolerance": 1e-9, - "output_all_cycles": true + { + "bc_name": "OUT", + "bc_type": "PRESSURE", + "bc_values": { + "P": [13332.2, 13332.2], + "t": [0, 1] + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 1, + "number_of_time_pts_per_cardiac_cycle": 500, + "steady_initial": false, + "output_variable_based": true, + "absolute_tolerance": 1e-9, + "output_all_cycles": true + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "IN" + }, + "vessel_id": 0, + "vessel_length": 2.0, + "vessel_name": "upstream_vessel", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 1.0e6, + "C": 1.0e-9 + } }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "IN" - }, - "vessel_id": 0, - "vessel_length": 2.0, - "vessel_name": "upstream_vessel", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 1.0e6, - "C": 1.0e-9 - } - }, - { - "boundary_conditions": {}, - "vessel_id": 1, - "vessel_length": 1.0, - "vessel_name": "ventricle", - "zero_d_element_type": "ChamberSphere", - "zero_d_element_values": { - "rho" : 1e3, - "thick0" : 0.01, - "radius0" : 0.05, - "W1" : 10e3, - "W2" : 40, - "eta" : 10.0, - "sigma_max" : 185e3, - "alpha_max": 30.0, - "alpha_min": -30.0, - "tsys": 0.170, - "tdias": 0.484, - "steepness": 0.005 - } - }, - { - "boundary_conditions": { - "outlet": "OUT" - }, - "vessel_id": 2, - "vessel_length": 1.0, - "vessel_name": "downstream_vessel", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 1.0e7, - "C": 1.0e-9 - } - } - ], - "valves": [ - { - "type": "ValveTanh", - "name": "inlet_valve", - "params": { - "Rmax": 7e8, - "Rmin": 0, - "Steepness": 5.75e-4, - "upstream_block": "upstream_vessel", - "downstream_block": "ventricle" - } - }, - { - "type": "ValveTanh", - "name": "outlet_valve", - "params": { - "Rmax": 6.6650e9, - "Rmin": 0, - "Steepness": 5.75e-4, - "upstream_block": "ventricle", - "downstream_block": "downstream_vessel" - } - } - ], - "junctions": [] + { + "boundary_conditions": {}, + "vessel_id": 1, + "vessel_length": 1.0, + "vessel_name": "ventricle", + "zero_d_element_type": "ChamberSphere", + "zero_d_element_values": { + "rho": 1e3, + "thick0": 0.01, + "radius0": 0.05, + "W1": 10e3, + "W2": 40, + "eta": 10.0, + "sigma_max": 185e3, + "alpha_max": 30.0, + "alpha_min": -30.0, + "tsys": 0.17, + "tdias": 0.484, + "steepness": 0.005 + } + }, + { + "boundary_conditions": { + "outlet": "OUT" + }, + "vessel_id": 2, + "vessel_length": 1.0, + "vessel_name": "downstream_vessel", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 1.0e7, + "C": 1.0e-9 + } + } + ], + "valves": [ + { + "type": "ValveTanh", + "name": "inlet_valve", + "params": { + "Rmax": 7e8, + "Rmin": 0, + "Steepness": 5.75e-4, + "upstream_block": "upstream_vessel", + "downstream_block": "ventricle" + } + }, + { + "type": "ValveTanh", + "name": "outlet_valve", + "params": { + "Rmax": 6.665e9, + "Rmin": 0, + "Steepness": 5.75e-4, + "upstream_block": "ventricle", + "downstream_block": "downstream_vessel" + } + } + ], + "junctions": [] } diff --git a/tests/cases/closedLoopHeart_singleVessel.json b/tests/cases/closedLoopHeart_singleVessel.json index bcd9ffb81..6a96fa53d 100644 --- a/tests/cases/closedLoopHeart_singleVessel.json +++ b/tests/cases/closedLoopHeart_singleVessel.json @@ -1,87 +1,85 @@ { - "description": { - "description of test case": "Closed-loop circulation with one vessel (aorta) connected on either side to the heart model." - }, - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 100, - "absolute_tolerance": 1e-8, - "steady_initial": false - }, - "boundary_conditions": [ - { - "bc_name": "RCR_aorta", - "bc_type": "ClosedLoopRCR", - "bc_values": { - "_comment_": "C = 0.228215*1.044637, R_total = 1.570879*0.948914 = 1.490629075, Rp = 0.09*R_total, Rd = 0.91*R_total", - "Rp": 0.134156617, - "Rd": 1.356472458, - "C": 0.238401833, - "closed_loop_outlet": true - } - } - ], - "vessels": [ - { - "_comment_": "aorta", - "vessel_name": "branch0_seg0", - "boundary_conditions": { - "outlet": "RCR_aorta" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "_comment_": "L = 5.25/1333.34, R = 4.464119/1333.34", - "R_poiseuille": 0.003348073, - "L": 0.004 - } - } - ], - "closed_loop_blocks": [ - { - "outlet_blocks": [ - "branch0_seg0" - ], - "closed_loop_type": "ClosedLoopHeartAndPulmonary", - "cardiac_cycle_period": 1.0169, - "parameters": { - "_comment_": "Lrv_a = 0.249155/pConv, Rrv_a = 0.993637 * this->Rrv_base /pConv, Lra_v = 0.289378/pConv, Rra_v = 10.516664/pConv, Lla_v = 0.469052/pConv, Rla_v = 7.081136/pConv, Rlv_ao = 0.972624 * this->Rlv_base /pConv, Llv_a = 0.147702/pConv, Rpd = 1.120725 * this->Rpd_base /pConv", - "Tsa": 0.40742, - "tpwave": 8.976868, - "Erv_s": 2.125279, - "Elv_s": 3.125202, - "iml": 0.509365, - "imr": 0.806369, - "Lrv_a": 0.000186865, - "Rrv_a": 0.035061704, - "Lra_v": 0.000217032, - "Rra_v": 0.007887459, - "Lla_v": 0.000351787, - "Rla_v": 0.005310825, - "Rlv_ao": 0.034320234, - "Llv_a": 0.000110776, - "Vrv_u": 9.424629, - "Vlv_u": 5.606007, - "Rpd": 0.098865401, - "Cp": 1.090989, - "Cpa": 0.556854, - "Kxp_ra": 9.22244, - "Kxv_ra": 0.004837, - "Emax_ra": 0.208858, - "Vaso_ra": 4.848742, - "Kxp_la": 9.194992, - "Kxv_la": 0.008067, - "Emax_la": 0.303119, - "Vaso_la": 9.355754 - } - } - ], - "initial_condition": { - "V_RA:CLH": 38.43, - "V_RV:CLH": 96.07, - "V_LA:CLH": 38.43, - "V_LV:CLH": 96.07, - "P_pul:CLH": 8.0 + "description": { + "description of test case": "Closed-loop circulation with one vessel (aorta) connected on either side to the heart model." + }, + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 100, + "absolute_tolerance": 1e-8, + "steady_initial": false + }, + "boundary_conditions": [ + { + "bc_name": "RCR_aorta", + "bc_type": "ClosedLoopRCR", + "bc_values": { + "_comment_": "C = 0.228215*1.044637, R_total = 1.570879*0.948914 = 1.490629075, Rp = 0.09*R_total, Rd = 0.91*R_total", + "Rp": 0.134156617, + "Rd": 1.356472458, + "C": 0.238401833, + "closed_loop_outlet": true + } } -} \ No newline at end of file + ], + "vessels": [ + { + "_comment_": "aorta", + "vessel_name": "branch0_seg0", + "boundary_conditions": { + "outlet": "RCR_aorta" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "_comment_": "L = 5.25/1333.34, R = 4.464119/1333.34", + "R_poiseuille": 0.003348073, + "L": 0.004 + } + } + ], + "closed_loop_blocks": [ + { + "outlet_blocks": ["branch0_seg0"], + "closed_loop_type": "ClosedLoopHeartAndPulmonary", + "cardiac_cycle_period": 1.0169, + "parameters": { + "_comment_": "Lrv_a = 0.249155/pConv, Rrv_a = 0.993637 * this->Rrv_base /pConv, Lra_v = 0.289378/pConv, Rra_v = 10.516664/pConv, Lla_v = 0.469052/pConv, Rla_v = 7.081136/pConv, Rlv_ao = 0.972624 * this->Rlv_base /pConv, Llv_a = 0.147702/pConv, Rpd = 1.120725 * this->Rpd_base /pConv", + "Tsa": 0.40742, + "tpwave": 8.976868, + "Erv_s": 2.125279, + "Elv_s": 3.125202, + "iml": 0.509365, + "imr": 0.806369, + "Lrv_a": 0.000186865, + "Rrv_a": 0.035061704, + "Lra_v": 0.000217032, + "Rra_v": 0.007887459, + "Lla_v": 0.000351787, + "Rla_v": 0.005310825, + "Rlv_ao": 0.034320234, + "Llv_a": 0.000110776, + "Vrv_u": 9.424629, + "Vlv_u": 5.606007, + "Rpd": 0.098865401, + "Cp": 1.090989, + "Cpa": 0.556854, + "Kxp_ra": 9.22244, + "Kxv_ra": 0.004837, + "Emax_ra": 0.208858, + "Vaso_ra": 4.848742, + "Kxp_la": 9.194992, + "Kxv_la": 0.008067, + "Emax_la": 0.303119, + "Vaso_la": 9.355754 + } + } + ], + "initial_condition": { + "V_RA:CLH": 38.43, + "V_RV:CLH": 96.07, + "V_LA:CLH": 38.43, + "V_LV:CLH": 96.07, + "P_pul:CLH": 8.0 + } +} diff --git a/tests/cases/closedLoopHeart_singleVessel_mistmatchPeriod.json b/tests/cases/closedLoopHeart_singleVessel_mistmatchPeriod.json index 414661cdd..eb2194f79 100644 --- a/tests/cases/closedLoopHeart_singleVessel_mistmatchPeriod.json +++ b/tests/cases/closedLoopHeart_singleVessel_mistmatchPeriod.json @@ -1,99 +1,97 @@ { - "description": { - "description of test case" : "Closed-loop circulation with one vessel (aorta) connected on either side to the heart model." - }, - "simulation_parameters": { - "number_of_cardiac_cycles": 1, - "number_of_time_pts_per_cardiac_cycle": 10000, - "steady_initial": false, - "cardiac_period": 0.67 - }, - "boundary_conditions": [ - { - "bc_name": "RCR_aorta", - "bc_type": "ClosedLoopRCR", - "bc_values": { - "_comment_": "R_total = 1.570879*0.948914 = 1.490629075", - "_comment_": "Rp = 0.09*R_total", - "_comment_": "Rd = 0.91*R_total", - "Rp": 0.134156617, - "Rd": 1.356472458, - "_comment_": "C = 0.228215*1.044637", - "C": 0.238401833, - "closed_loop_outlet": true - } - } - ], - "vessels": [ - { - "_comment_": "aorta", - "vessel_name": "branch0_seg0", - "boundary_conditions": { - "outlet": "RCR_aorta" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "_comment_": "R = 4.464119/1333.34", - "R_poiseuille": 0.003348073, - "_comment_": "L = 5.25/1333.34", - "L": 0.004 - } - } - ], - "closed_loop_blocks": [ - { - "outlet_blocks": [ - "branch0_seg0" - ], - "closed_loop_type": "ClosedLoopHeartAndPulmonary", - "cardiac_cycle_period": 1.0169, - "parameters": { - "Tsa": 0.407420, - "tpwave": 8.976868, - "Erv_s": 2.125279, - "Elv_s": 3.125202, - "iml": 0.509365, - "imr": 0.806369, - "_comment_": "Lrv_a = 0.249155/pConv", - "Lrv_a": 0.000186865, - "_comment_": "Rrv_a = 0.993637 * this->Rrv_base /pConv", - "Rrv_a": 0.035061704, - "_comment_": "Lra_v = 0.289378/pConv", - "Lra_v": 0.000217032, - "_comment_": "Rra_v = 10.516664/pConv", - "Rra_v": 0.007887459, - "_comment_": "Lla_v = 0.469052/pConv", - "Lla_v": 0.000351787, - "_comment_": "Rla_v = 7.081136/pConv", - "Rla_v": 0.005310825, - "_comment_": "Rlv_ao = 0.972624 * this->Rlv_base /pConv", - "Rlv_ao": 0.034320234, - "_comment_": "Llv_a = 0.147702/pConv", - "Llv_a": 0.000110776, - "Vrv_u": 9.424629, - "Vlv_u": 5.606007, - "_comment_": "Rpd = 1.120725 * this->Rpd_base /pConv", - "Rpd": 0.098865401, - "Cp": 1.090989, - "Cpa": 0.556854, - "Kxp_ra": 9.222440, - "Kxv_ra": 0.004837, - "Emax_ra": 0.208858, - "Vaso_ra": 4.848742, - "Kxp_la": 9.194992, - "Kxv_la": 0.008067, - "Emax_la": 0.303119, - "Vaso_la": 9.355754 - } - } - ], - "initial_condition": { - "V_RA:CLH": 38.43, - "V_RV:CLH": 96.07, - "V_LA:CLH": 38.43, - "V_LV:CLH": 96.07, - "P_pul:CLH": 8.0 + "description": { + "description of test case": "Closed-loop circulation with one vessel (aorta) connected on either side to the heart model." + }, + "simulation_parameters": { + "number_of_cardiac_cycles": 1, + "number_of_time_pts_per_cardiac_cycle": 10000, + "steady_initial": false, + "cardiac_period": 0.67 + }, + "boundary_conditions": [ + { + "bc_name": "RCR_aorta", + "bc_type": "ClosedLoopRCR", + "bc_values": { + "_comment_": "R_total = 1.570879*0.948914 = 1.490629075", + "_comment_": "Rp = 0.09*R_total", + "_comment_": "Rd = 0.91*R_total", + "Rp": 0.134156617, + "Rd": 1.356472458, + "_comment_": "C = 0.228215*1.044637", + "C": 0.238401833, + "closed_loop_outlet": true + } } + ], + "vessels": [ + { + "_comment_": "aorta", + "vessel_name": "branch0_seg0", + "boundary_conditions": { + "outlet": "RCR_aorta" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "_comment_": "R = 4.464119/1333.34", + "R_poiseuille": 0.003348073, + "_comment_": "L = 5.25/1333.34", + "L": 0.004 + } + } + ], + "closed_loop_blocks": [ + { + "outlet_blocks": ["branch0_seg0"], + "closed_loop_type": "ClosedLoopHeartAndPulmonary", + "cardiac_cycle_period": 1.0169, + "parameters": { + "Tsa": 0.40742, + "tpwave": 8.976868, + "Erv_s": 2.125279, + "Elv_s": 3.125202, + "iml": 0.509365, + "imr": 0.806369, + "_comment_": "Lrv_a = 0.249155/pConv", + "Lrv_a": 0.000186865, + "_comment_": "Rrv_a = 0.993637 * this->Rrv_base /pConv", + "Rrv_a": 0.035061704, + "_comment_": "Lra_v = 0.289378/pConv", + "Lra_v": 0.000217032, + "_comment_": "Rra_v = 10.516664/pConv", + "Rra_v": 0.007887459, + "_comment_": "Lla_v = 0.469052/pConv", + "Lla_v": 0.000351787, + "_comment_": "Rla_v = 7.081136/pConv", + "Rla_v": 0.005310825, + "_comment_": "Rlv_ao = 0.972624 * this->Rlv_base /pConv", + "Rlv_ao": 0.034320234, + "_comment_": "Llv_a = 0.147702/pConv", + "Llv_a": 0.000110776, + "Vrv_u": 9.424629, + "Vlv_u": 5.606007, + "_comment_": "Rpd = 1.120725 * this->Rpd_base /pConv", + "Rpd": 0.098865401, + "Cp": 1.090989, + "Cpa": 0.556854, + "Kxp_ra": 9.22244, + "Kxv_ra": 0.004837, + "Emax_ra": 0.208858, + "Vaso_ra": 4.848742, + "Kxp_la": 9.194992, + "Kxv_la": 0.008067, + "Emax_la": 0.303119, + "Vaso_la": 9.355754 + } + } + ], + "initial_condition": { + "V_RA:CLH": 38.43, + "V_RV:CLH": 96.07, + "V_LA:CLH": 38.43, + "V_LV:CLH": 96.07, + "P_pul:CLH": 8.0 + } } diff --git a/tests/cases/closedLoopHeart_withCoronaries.json b/tests/cases/closedLoopHeart_withCoronaries.json index a747d8346..4f10bb256 100644 --- a/tests/cases/closedLoopHeart_withCoronaries.json +++ b/tests/cases/closedLoopHeart_withCoronaries.json @@ -1,170 +1,170 @@ { - "description": { - "description of test case": "Closed-loop circulation with two RCR outlets and two coronary outlets" + "description": { + "description of test case": "Closed-loop circulation with two RCR outlets and two coronary outlets" + }, + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 100, + "absolute_tolerance": 1e-9, + "steady_initial": false + }, + "boundary_conditions": [ + { + "bc_name": "LCA", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "_comment_": "Ra_total = 67.540250*0.361748 = 24.432550357, Ra = (0.32/0.84)*Ra_total, Ram = (0.52/0.84)*Ra_total, Ca = 0.000110*5.022065, Rv = 12.864810*2.586199, Cim = 0.000890*4.198904", + "Ra": 9.307638231, + "Ram": 15.124912126, + "Rv": 33.270958757, + "Cim": 0.003737025, + "Ca": 0.000552427 + } }, - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 100, - "absolute_tolerance": 1e-09, - "steady_initial": false + { + "bc_name": "RCA", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "_comment_": "Ra_total = 41.778304*0.361748 = 15.113217915, Ra = (0.32/0.84)*Ra_total, Ram = (0.52/0.84)*Ra_total, Ca = 0.000110*9.599613, Rv = 7.957772*2.586199, Cim = 0.000890*3.891162", + "Ra": 5.757416349, + "Ram": 9.355801566, + "Rv": 20.580381989, + "Cim": 0.003463134, + "Ca": 0.001055957 + } }, - "boundary_conditions": [ - { - "bc_name": "LCA", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "_comment_": "Ra_total = 67.540250*0.361748 = 24.432550357, Ra = (0.32/0.84)*Ra_total, Ram = (0.52/0.84)*Ra_total, Ca = 0.000110*5.022065, Rv = 12.864810*2.586199, Cim = 0.000890*4.198904", - "Ra": 9.307638231, - "Ram": 15.124912126, - "Rv": 33.270958757, - "Cim": 0.003737025, - "Ca": 0.000552427 - } - }, - { - "bc_name": "RCA", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "_comment_": "Ra_total = 41.778304*0.361748 = 15.113217915, Ra = (0.32/0.84)*Ra_total, Ram = (0.52/0.84)*Ra_total, Ca = 0.000110*9.599613, Rv = 7.957772*2.586199, Cim = 0.000890*3.891162", - "Ra": 5.757416349, - "Ram": 9.355801566, - "Rv": 20.580381989, - "Cim": 0.003463134, - "Ca": 0.001055957 - } - }, - { - "bc_name": "RCR_aorta", - "bc_type": "ClosedLoopRCR", - "bc_values": { - "_comment_": "R_total = 1.570879*0.948914 = 1.490629075, Rp = 0.09*R_total, Rd = 0.91*R_total, C = 0.228215*1.044637", - "Rp": 0.134156617, - "Rd": 1.356472458, - "C": 0.238401833, - "closed_loop_outlet": true - } - }, - { - "bc_name": "RCR_aorta_br", - "bc_type": "ClosedLoopRCR", - "bc_values": { - "_comment_": "R_total = 6.922824*0.948914 = 6.569164613, Rp = 0.09*R_total, Rd = 0.91*R_total, C = 0.051785*1.044637", - "Rp": 0.591224815, - "Rd": 5.977939798, - "C": 0.054096527, - "closed_loop_outlet": true - } - } - ], - "vessels": [ - { - "_comment_": "aorta", - "boundary_conditions": { - "outlet": "RCR_aorta" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "_comment_": "R = 4.464119/1333.34, L = 5.25/1333.34", - "R_poiseuille": 0.003348073, - "L": 0.00393748 - } - }, - { - "_comment_": "aorta_br", - "boundary_conditions": { - "outlet": "RCR_aorta_br" - }, - "vessel_id": 1, - "vessel_length": 10.0, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "_comment_": "R = 111.152028/1333.34, L = 5.25/1333.34", - "R_poiseuille": 0.083363604, - "L": 0.00393748 - } - }, - { - "_comment_": "lca", - "boundary_conditions": { - "outlet": "LCA" - }, - "vessel_id": 2, - "vessel_length": 10.0, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "_comment_": "R = 5855.832840/1333.34, L = 10.0/1333.34", - "R_poiseuille": 4.391852671, - "L": 0.007499963 - } - }, - { - "_comment_": "rca", - "boundary_conditions": { - "outlet": "RCA" - }, - "vessel_id": 3, - "vessel_length": 10.0, - "vessel_name": "branch3_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "_comment_": "R = 3013.987966/1333.34, L = 10.0/1333.34", - "R_poiseuille": 2.260479672, - "L": 0.007499963 - } - } - ], - "closed_loop_blocks": [ - { - "outlet_blocks": [ - "branch0_seg0", - "branch1_seg0", - "branch2_seg0", - "branch3_seg0" - ], - "closed_loop_type": "ClosedLoopHeartAndPulmonary", - "cardiac_cycle_period": 1.0169, - "parameters": { - "_comment_": "Lrv_a = 0.249155/pConv, Rrv_a = 0.993637 * this->Rrv_base /pConv, Lra_v = 0.289378/pConv, Rra_v = 10.516664/pConv, Lla_v = 0.469052/pConv, Rla_v = 7.081136/pConv, Rlv_ao = 0.972624 * this->Rlv_base /pConv, Llv_a = 0.147702/pConv, Rpd = 1.120725 * this->Rpd_base /pConv", - "Tsa": 0.40742, - "tpwave": 8.976868, - "Erv_s": 2.125279, - "Elv_s": 3.125202, - "iml": 0.509365, - "imr": 0.806369, - "Lrv_a": 0.000186865, - "Rrv_a": 0.035061704, - "Lra_v": 0.000217032, - "Rra_v": 0.007887459, - "Lla_v": 0.000351787, - "Rla_v": 0.005310825, - "Rlv_ao": 0.034320234, - "Llv_a": 0.000110776, - "Vrv_u": 9.424629, - "Vlv_u": 5.606007, - "Rpd": 0.098865401, - "Cp": 1.090989, - "Cpa": 0.556854, - "Kxp_ra": 9.22244, - "Kxv_ra": 0.004837, - "Emax_ra": 0.208858, - "Vaso_ra": 4.848742, - "Kxp_la": 9.194992, - "Kxv_la": 0.008067, - "Emax_la": 0.303119, - "Vaso_la": 9.355754 - } - } - ], - "initial_condition": { - "V_RA:CLH": 38.43, - "V_RV:CLH": 96.07, - "V_LA:CLH": 38.43, - "V_LV:CLH": 96.07, - "P_pul:CLH": 8.0 + { + "bc_name": "RCR_aorta", + "bc_type": "ClosedLoopRCR", + "bc_values": { + "_comment_": "R_total = 1.570879*0.948914 = 1.490629075, Rp = 0.09*R_total, Rd = 0.91*R_total, C = 0.228215*1.044637", + "Rp": 0.134156617, + "Rd": 1.356472458, + "C": 0.238401833, + "closed_loop_outlet": true + } + }, + { + "bc_name": "RCR_aorta_br", + "bc_type": "ClosedLoopRCR", + "bc_values": { + "_comment_": "R_total = 6.922824*0.948914 = 6.569164613, Rp = 0.09*R_total, Rd = 0.91*R_total, C = 0.051785*1.044637", + "Rp": 0.591224815, + "Rd": 5.977939798, + "C": 0.054096527, + "closed_loop_outlet": true + } + } + ], + "vessels": [ + { + "_comment_": "aorta", + "boundary_conditions": { + "outlet": "RCR_aorta" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "_comment_": "R = 4.464119/1333.34, L = 5.25/1333.34", + "R_poiseuille": 0.003348073, + "L": 0.00393748 + } + }, + { + "_comment_": "aorta_br", + "boundary_conditions": { + "outlet": "RCR_aorta_br" + }, + "vessel_id": 1, + "vessel_length": 10.0, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "_comment_": "R = 111.152028/1333.34, L = 5.25/1333.34", + "R_poiseuille": 0.083363604, + "L": 0.00393748 + } + }, + { + "_comment_": "lca", + "boundary_conditions": { + "outlet": "LCA" + }, + "vessel_id": 2, + "vessel_length": 10.0, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "_comment_": "R = 5855.832840/1333.34, L = 10.0/1333.34", + "R_poiseuille": 4.391852671, + "L": 0.007499963 + } + }, + { + "_comment_": "rca", + "boundary_conditions": { + "outlet": "RCA" + }, + "vessel_id": 3, + "vessel_length": 10.0, + "vessel_name": "branch3_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "_comment_": "R = 3013.987966/1333.34, L = 10.0/1333.34", + "R_poiseuille": 2.260479672, + "L": 0.007499963 + } + } + ], + "closed_loop_blocks": [ + { + "outlet_blocks": [ + "branch0_seg0", + "branch1_seg0", + "branch2_seg0", + "branch3_seg0" + ], + "closed_loop_type": "ClosedLoopHeartAndPulmonary", + "cardiac_cycle_period": 1.0169, + "parameters": { + "_comment_": "Lrv_a = 0.249155/pConv, Rrv_a = 0.993637 * this->Rrv_base /pConv, Lra_v = 0.289378/pConv, Rra_v = 10.516664/pConv, Lla_v = 0.469052/pConv, Rla_v = 7.081136/pConv, Rlv_ao = 0.972624 * this->Rlv_base /pConv, Llv_a = 0.147702/pConv, Rpd = 1.120725 * this->Rpd_base /pConv", + "Tsa": 0.40742, + "tpwave": 8.976868, + "Erv_s": 2.125279, + "Elv_s": 3.125202, + "iml": 0.509365, + "imr": 0.806369, + "Lrv_a": 0.000186865, + "Rrv_a": 0.035061704, + "Lra_v": 0.000217032, + "Rra_v": 0.007887459, + "Lla_v": 0.000351787, + "Rla_v": 0.005310825, + "Rlv_ao": 0.034320234, + "Llv_a": 0.000110776, + "Vrv_u": 9.424629, + "Vlv_u": 5.606007, + "Rpd": 0.098865401, + "Cp": 1.090989, + "Cpa": 0.556854, + "Kxp_ra": 9.22244, + "Kxv_ra": 0.004837, + "Emax_ra": 0.208858, + "Vaso_ra": 4.848742, + "Kxp_la": 9.194992, + "Kxv_la": 0.008067, + "Emax_la": 0.303119, + "Vaso_la": 9.355754 + } } -} \ No newline at end of file + ], + "initial_condition": { + "V_RA:CLH": 38.43, + "V_RV:CLH": 96.07, + "V_LA:CLH": 38.43, + "V_LV:CLH": 96.07, + "P_pul:CLH": 8.0 + } +} diff --git a/tests/cases/coupledBlock_closedLoopHeart_singleVessel.json b/tests/cases/coupledBlock_closedLoopHeart_singleVessel.json index 7c89c740d..64af09de3 100644 --- a/tests/cases/coupledBlock_closedLoopHeart_singleVessel.json +++ b/tests/cases/coupledBlock_closedLoopHeart_singleVessel.json @@ -1,497 +1,181 @@ { - "description": { - "description of test case": "Closed-loop circulation with one vessel (aorta) connected on either side to the heart model." - }, - "simulation_parameters": { - "number_of_cardiac_cycles": 100, - "number_of_time_pts_per_cardiac_cycle": 100, - "absolute_tolerance": 1e-09, - "steady_initial": false, - "output_variable_based": true + "description": { + "description of test case": "Closed-loop circulation with one vessel (aorta) connected on either side to the heart model." + }, + "simulation_parameters": { + "number_of_cardiac_cycles": 100, + "number_of_time_pts_per_cardiac_cycle": 100, + "absolute_tolerance": 1e-9, + "steady_initial": false, + "output_variable_based": true + }, + "boundary_conditions": [ + { + "bc_name": "RCR_aorta", + "bc_type": "ClosedLoopRCR", + "bc_values": { + "_comment_": "C = 0.228215*1.044637, R_total = 1.570879*0.948914 = 1.490629075, Rp = 0.09*R_total, Rd = 0.91*R_total", + "Rp": 0.134156617, + "Rd": 1.356472458, + "C": 0.238401833, + "closed_loop_outlet": true + } + } + ], + "external_solver_coupling_blocks": [ + { + "name": "external_inlet", + "type": "FLOW", + "location": "inlet", + "connected_block": "RCR_aorta", + "values": { + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99 + ], + "Q": [ + 21.864023180643244, 21.815936896410125, 21.767850612177007, + 23.583946940787442, 25.473042704275823, 32.52071136928682, + 39.98039983531585, 55.2112275512422, 71.39106454627611, + 88.98265339304972, 106.80355623261423, 119.01973827059382, + 128.68621781692153, 129.086535118712, 128.12075083932578, + 121.56348984601799, 113.93083734461803, 105.03247156397464, + 95.83757359050261, 88.04335129061417, 80.660403951656, + 75.50611451514771, 70.67349056152909, 68.23725174870611, + 66.34778861624011, 65.35048194504772, 64.65466084735706, + 63.898452510244354, 63.115204169133705, 61.24539554656158, + 58.88298433438117, 55.68538773700724, 52.0724923408317, + 48.11745996604827, 44.5521555574886, 41.6993034439945, + 39.22800548393574, 37.6017880471251, 36.48118099036259, + 35.97829826424406, 35.88005168730974, 36.059766246548996, + 36.4319145921833, 36.83473250792854, 37.29345806676438, + 37.5587723814894, 37.70067232134997, 37.658362750228726, + 37.45220945509625, 37.12111398393015, 36.67093854142869, + 36.17680560248668, 35.64072919965957, 35.12054318276816, + 34.62262389678223, 34.121434877760585, 33.72355199571396, + 33.36498587676248, 33.05872187385497, 32.77820493961315, + 32.533985569650824, 32.296290257721964, 32.066943570314166, + 31.83156059243731, 31.584643527683145, 31.328225512551004, + 31.027464563033178, 30.746682854431857, 30.453842351846003, + 30.159547305213838, 29.86220937429178, 29.562795330703832, + 29.258374365751788, 28.94656475898075, 28.614722408018874, + 28.270034139671647, 27.889294008568953, 27.45483207330866, + 27.017092964565105, 26.573382606325932, 26.10654324315969, + 25.642093508616302, 25.190125431639984, 24.748616873168725, + 24.35830282123085, 23.98352000242839, 23.684490482164872, + 23.401758748526653, 23.17387383703873, 22.979739786196706, + 22.84063063121959, 22.703985062749165, 22.58920790234275, + 22.475267179947068, 22.36474207879929, 22.254591547941487, + 22.149394921070954, 22.044902599906543, 21.957952107911947, + 21.864023180643244 + ] + } }, - "boundary_conditions": [ - { - "bc_name": "RCR_aorta", - "bc_type": "ClosedLoopRCR", - "bc_values": { - "_comment_": "C = 0.228215*1.044637, R_total = 1.570879*0.948914 = 1.490629075, Rp = 0.09*R_total, Rd = 0.91*R_total", - "Rp": 0.134156617, - "Rd": 1.356472458, - "C": 0.238401833, - "closed_loop_outlet": true - } - } - ], - "external_solver_coupling_blocks": [ - { - "name": "external_inlet", - "type": "FLOW", - "location": "inlet", - "connected_block": "RCR_aorta", - "values": { - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99 - ], - "Q": [ - 21.864023180643244, - 21.815936896410125, - 21.767850612177007, - 23.583946940787442, - 25.473042704275823, - 32.52071136928682, - 39.98039983531585, - 55.2112275512422, - 71.39106454627611, - 88.98265339304972, - 106.80355623261423, - 119.01973827059382, - 128.68621781692153, - 129.086535118712, - 128.12075083932578, - 121.56348984601799, - 113.93083734461803, - 105.03247156397464, - 95.83757359050261, - 88.04335129061417, - 80.660403951656, - 75.50611451514771, - 70.67349056152909, - 68.23725174870611, - 66.34778861624011, - 65.35048194504772, - 64.65466084735706, - 63.898452510244354, - 63.115204169133705, - 61.24539554656158, - 58.88298433438117, - 55.68538773700724, - 52.0724923408317, - 48.11745996604827, - 44.5521555574886, - 41.6993034439945, - 39.22800548393574, - 37.6017880471251, - 36.48118099036259, - 35.97829826424406, - 35.88005168730974, - 36.059766246548996, - 36.4319145921833, - 36.83473250792854, - 37.29345806676438, - 37.5587723814894, - 37.70067232134997, - 37.658362750228726, - 37.45220945509625, - 37.12111398393015, - 36.67093854142869, - 36.17680560248668, - 35.64072919965957, - 35.12054318276816, - 34.62262389678223, - 34.121434877760585, - 33.72355199571396, - 33.36498587676248, - 33.05872187385497, - 32.77820493961315, - 32.533985569650824, - 32.296290257721964, - 32.066943570314166, - 31.83156059243731, - 31.584643527683145, - 31.328225512551004, - 31.027464563033178, - 30.746682854431857, - 30.453842351846003, - 30.159547305213838, - 29.86220937429178, - 29.562795330703832, - 29.258374365751788, - 28.94656475898075, - 28.614722408018874, - 28.270034139671647, - 27.889294008568953, - 27.45483207330866, - 27.017092964565105, - 26.573382606325932, - 26.10654324315969, - 25.642093508616302, - 25.190125431639984, - 24.748616873168725, - 24.35830282123085, - 23.98352000242839, - 23.684490482164872, - 23.401758748526653, - 23.17387383703873, - 22.979739786196706, - 22.84063063121959, - 22.703985062749165, - 22.58920790234275, - 22.475267179947068, - 22.36474207879929, - 22.254591547941487, - 22.149394921070954, - 22.044902599906543, - 21.957952107911947, - 21.864023180643244 - ] - } - }, - { - "name": "external_outlet", - "type": "FLOW", - "location": "outlet", - "connected_block": "ClosedLoopHeartAndPulmonary", - "values": { - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99 - ], - "Q": [ - 21.864023180643244, - 21.815936896410125, - 21.767850612177007, - 23.583946940787442, - 25.473042704275823, - 32.52071136928682, - 39.98039983531585, - 55.2112275512422, - 71.39106454627611, - 88.98265339304972, - 106.80355623261423, - 119.01973827059382, - 128.68621781692153, - 129.086535118712, - 128.12075083932578, - 121.56348984601799, - 113.93083734461803, - 105.03247156397464, - 95.83757359050261, - 88.04335129061417, - 80.660403951656, - 75.50611451514771, - 70.67349056152909, - 68.23725174870611, - 66.34778861624011, - 65.35048194504772, - 64.65466084735706, - 63.898452510244354, - 63.115204169133705, - 61.24539554656158, - 58.88298433438117, - 55.68538773700724, - 52.0724923408317, - 48.11745996604827, - 44.5521555574886, - 41.6993034439945, - 39.22800548393574, - 37.6017880471251, - 36.48118099036259, - 35.97829826424406, - 35.88005168730974, - 36.059766246548996, - 36.4319145921833, - 36.83473250792854, - 37.29345806676438, - 37.5587723814894, - 37.70067232134997, - 37.658362750228726, - 37.45220945509625, - 37.12111398393015, - 36.67093854142869, - 36.17680560248668, - 35.64072919965957, - 35.12054318276816, - 34.62262389678223, - 34.121434877760585, - 33.72355199571396, - 33.36498587676248, - 33.05872187385497, - 32.77820493961315, - 32.533985569650824, - 32.296290257721964, - 32.066943570314166, - 31.83156059243731, - 31.584643527683145, - 31.328225512551004, - 31.027464563033178, - 30.746682854431857, - 30.453842351846003, - 30.159547305213838, - 29.86220937429178, - 29.562795330703832, - 29.258374365751788, - 28.94656475898075, - 28.614722408018874, - 28.270034139671647, - 27.889294008568953, - 27.45483207330866, - 27.017092964565105, - 26.573382606325932, - 26.10654324315969, - 25.642093508616302, - 25.190125431639984, - 24.748616873168725, - 24.35830282123085, - 23.98352000242839, - 23.684490482164872, - 23.401758748526653, - 23.17387383703873, - 22.979739786196706, - 22.84063063121959, - 22.703985062749165, - 22.58920790234275, - 22.475267179947068, - 22.36474207879929, - 22.254591547941487, - 22.149394921070954, - 22.044902599906543, - 21.957952107911947, - 21.864023180643244 - ] - } - } - ], - "closed_loop_blocks": [ - { - "outlet_blocks": [ - "external_outlet" - ], - "closed_loop_type": "ClosedLoopHeartAndPulmonary", - "cardiac_cycle_period": 0.99, - "parameters": { - "_comment_": "Lrv_a = 0.249155/pConv, Rrv_a = 0.993637 * this->Rrv_base /pConv, Lra_v = 0.289378/pConv, Rra_v = 10.516664/pConv, Lla_v = 0.469052/pConv, Rla_v = 7.081136/pConv, Rlv_ao = 0.972624 * this->Rlv_base /pConv, Llv_a = 0.147702/pConv, Rpd = 1.120725 * this->Rpd_base /pConv", - "Tsa": 0.40742, - "tpwave": 8.976868, - "Erv_s": 2.125279, - "Elv_s": 3.125202, - "iml": 0.509365, - "imr": 0.806369, - "Lrv_a": 0.000186865, - "Rrv_a": 0.035061704, - "Lra_v": 0.000217032, - "Rra_v": 0.007887459, - "Lla_v": 0.000351787, - "Rla_v": 0.005310825, - "Rlv_ao": 0.034320234, - "Llv_a": 0.000110776, - "Vrv_u": 9.424629, - "Vlv_u": 5.606007, - "Rpd": 0.098865401, - "Cp": 1.090989, - "Cpa": 0.556854, - "Kxp_ra": 9.22244, - "Kxv_ra": 0.004837, - "Emax_ra": 0.208858, - "Vaso_ra": 4.848742, - "Kxp_la": 9.194992, - "Kxv_la": 0.008067, - "Emax_la": 0.303119, - "Vaso_la": 9.355754 - } - } - ], - "initial_condition": { - "V_RA:CLH": 38.43, - "V_RV:CLH": 96.07, - "V_LA:CLH": 38.43, - "V_LV:CLH": 96.07, - "P_pul:CLH": 8.0 + { + "name": "external_outlet", + "type": "FLOW", + "location": "outlet", + "connected_block": "ClosedLoopHeartAndPulmonary", + "values": { + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99 + ], + "Q": [ + 21.864023180643244, 21.815936896410125, 21.767850612177007, + 23.583946940787442, 25.473042704275823, 32.52071136928682, + 39.98039983531585, 55.2112275512422, 71.39106454627611, + 88.98265339304972, 106.80355623261423, 119.01973827059382, + 128.68621781692153, 129.086535118712, 128.12075083932578, + 121.56348984601799, 113.93083734461803, 105.03247156397464, + 95.83757359050261, 88.04335129061417, 80.660403951656, + 75.50611451514771, 70.67349056152909, 68.23725174870611, + 66.34778861624011, 65.35048194504772, 64.65466084735706, + 63.898452510244354, 63.115204169133705, 61.24539554656158, + 58.88298433438117, 55.68538773700724, 52.0724923408317, + 48.11745996604827, 44.5521555574886, 41.6993034439945, + 39.22800548393574, 37.6017880471251, 36.48118099036259, + 35.97829826424406, 35.88005168730974, 36.059766246548996, + 36.4319145921833, 36.83473250792854, 37.29345806676438, + 37.5587723814894, 37.70067232134997, 37.658362750228726, + 37.45220945509625, 37.12111398393015, 36.67093854142869, + 36.17680560248668, 35.64072919965957, 35.12054318276816, + 34.62262389678223, 34.121434877760585, 33.72355199571396, + 33.36498587676248, 33.05872187385497, 32.77820493961315, + 32.533985569650824, 32.296290257721964, 32.066943570314166, + 31.83156059243731, 31.584643527683145, 31.328225512551004, + 31.027464563033178, 30.746682854431857, 30.453842351846003, + 30.159547305213838, 29.86220937429178, 29.562795330703832, + 29.258374365751788, 28.94656475898075, 28.614722408018874, + 28.270034139671647, 27.889294008568953, 27.45483207330866, + 27.017092964565105, 26.573382606325932, 26.10654324315969, + 25.642093508616302, 25.190125431639984, 24.748616873168725, + 24.35830282123085, 23.98352000242839, 23.684490482164872, + 23.401758748526653, 23.17387383703873, 22.979739786196706, + 22.84063063121959, 22.703985062749165, 22.58920790234275, + 22.475267179947068, 22.36474207879929, 22.254591547941487, + 22.149394921070954, 22.044902599906543, 21.957952107911947, + 21.864023180643244 + ] + } + } + ], + "closed_loop_blocks": [ + { + "outlet_blocks": ["external_outlet"], + "closed_loop_type": "ClosedLoopHeartAndPulmonary", + "cardiac_cycle_period": 0.99, + "parameters": { + "_comment_": "Lrv_a = 0.249155/pConv, Rrv_a = 0.993637 * this->Rrv_base /pConv, Lra_v = 0.289378/pConv, Rra_v = 10.516664/pConv, Lla_v = 0.469052/pConv, Rla_v = 7.081136/pConv, Rlv_ao = 0.972624 * this->Rlv_base /pConv, Llv_a = 0.147702/pConv, Rpd = 1.120725 * this->Rpd_base /pConv", + "Tsa": 0.40742, + "tpwave": 8.976868, + "Erv_s": 2.125279, + "Elv_s": 3.125202, + "iml": 0.509365, + "imr": 0.806369, + "Lrv_a": 0.000186865, + "Rrv_a": 0.035061704, + "Lra_v": 0.000217032, + "Rra_v": 0.007887459, + "Lla_v": 0.000351787, + "Rla_v": 0.005310825, + "Rlv_ao": 0.034320234, + "Llv_a": 0.000110776, + "Vrv_u": 9.424629, + "Vlv_u": 5.606007, + "Rpd": 0.098865401, + "Cp": 1.090989, + "Cpa": 0.556854, + "Kxp_ra": 9.22244, + "Kxv_ra": 0.004837, + "Emax_ra": 0.208858, + "Vaso_ra": 4.848742, + "Kxp_la": 9.194992, + "Kxv_la": 0.008067, + "Emax_la": 0.303119, + "Vaso_la": 9.355754 + } } -} \ No newline at end of file + ], + "initial_condition": { + "V_RA:CLH": 38.43, + "V_RV:CLH": 96.07, + "V_LA:CLH": 38.43, + "V_LV:CLH": 96.07, + "P_pul:CLH": 8.0 + } +} diff --git a/tests/cases/coupledBlock_closedLoopHeart_withCoronaries.json b/tests/cases/coupledBlock_closedLoopHeart_withCoronaries.json index c0c61ae28..ab4ba9f1b 100644 --- a/tests/cases/coupledBlock_closedLoopHeart_withCoronaries.json +++ b/tests/cases/coupledBlock_closedLoopHeart_withCoronaries.json @@ -1,1168 +1,381 @@ { - "description": { - "description of test case": "Coupled block specifying inflow (from different simulation) into two RCR blocks and two coronary blocks, all connected to closed-loop heart model. Outlet flow from heart model is also specified using coupled block." + "description": { + "description of test case": "Coupled block specifying inflow (from different simulation) into two RCR blocks and two coronary blocks, all connected to closed-loop heart model. Outlet flow from heart model is also specified using coupled block." + }, + "simulation_parameters": { + "number_of_cardiac_cycles": 100, + "number_of_time_pts_per_cardiac_cycle": 1000, + "absolute_tolerance": 1e-9, + "steady_initial": false, + "output_variable_based": true + }, + "boundary_conditions": [ + { + "bc_name": "LCA", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "_comment_": "Ra_total = 67.540250*0.361748 = 24.432550357, Ra = (0.32/0.84)*Ra_total, Ram = (0.52/0.84)*Ra_total, Ca = 0.000110*5.022065, Rv = 12.864810*2.586199, Cim = 0.000890*4.198904", + "Ra": 9.307638231, + "Ram": 15.124912126, + "Rv": 33.270958757, + "Cim": 0.003737025, + "Ca": 0.000552427 + } }, - "simulation_parameters": { - "number_of_cardiac_cycles": 100, - "number_of_time_pts_per_cardiac_cycle": 1000, - "absolute_tolerance": 1e-9, - "steady_initial": false, - "output_variable_based": true + { + "bc_name": "RCA", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "_comment_": "Ra_total = 41.778304*0.361748 = 15.113217915, Ra = (0.32/0.84)*Ra_total, Ram = (0.52/0.84)*Ra_total, Ca = 0.000110*9.599613, Rv = 7.957772*2.586199, Cim = 0.000890*3.891162", + "Ra": 5.757416349, + "Ram": 9.355801566, + "Rv": 20.580381989, + "Cim": 0.003463134, + "Ca": 0.001055957 + } }, - "boundary_conditions": [ - { - "bc_name": "LCA", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "_comment_": "Ra_total = 67.540250*0.361748 = 24.432550357, Ra = (0.32/0.84)*Ra_total, Ram = (0.52/0.84)*Ra_total, Ca = 0.000110*5.022065, Rv = 12.864810*2.586199, Cim = 0.000890*4.198904", - "Ra": 9.307638231, - "Ram": 15.124912126, - "Rv": 33.270958757, - "Cim": 0.003737025, - "Ca": 0.000552427 - } - }, - { - "bc_name": "RCA", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "_comment_": "Ra_total = 41.778304*0.361748 = 15.113217915, Ra = (0.32/0.84)*Ra_total, Ram = (0.52/0.84)*Ra_total, Ca = 0.000110*9.599613, Rv = 7.957772*2.586199, Cim = 0.000890*3.891162", - "Ra": 5.757416349, - "Ram": 9.355801566, - "Rv": 20.580381989, - "Cim": 0.003463134, - "Ca": 0.001055957 - } - }, - { - "bc_name": "RCR_aorta", - "bc_type": "ClosedLoopRCR", - "bc_values": { - "_comment_": "R_total = 1.570879*0.948914 = 1.490629075, Rp = 0.09*R_total, Rd = 0.91*R_total, C = 0.228215*1.044637", - "Rp": 0.134156617, - "Rd": 1.356472458, - "C": 0.238401833, - "closed_loop_outlet": true - } - }, - { - "bc_name": "RCR_aorta_br", - "bc_type": "ClosedLoopRCR", - "bc_values": { - "_comment_": "R_total = 6.922824*0.948914 = 6.569164613, Rp = 0.09*R_total, Rd = 0.91*R_total, C = 0.051785*1.044637", - "Rp": 0.591224815, - "Rd": 5.977939798, - "C": 0.054096527, - "closed_loop_outlet": true - } - } - ], - "external_solver_coupling_blocks": [ - { - "name": "inlet_aorta", - "type": "FLOW", - "location": "inlet", - "connected_block": "RCR_aorta", - "values": { - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99 - ], - "Q": [ - 15.350283793211176, - 15.295287160830535, - 15.240290528449892, - 19.43301218440402, - 23.79207003104718, - 35.69780607479522, - 48.20623171522454, - 66.3391975856487, - 85.15809518810744, - 101.25320677033157, - 116.89084893274958, - 124.17433201752752, - 128.87113053199886, - 124.57612500310829, - 118.95546626449658, - 109.3510514053199, - 98.98163483870212, - 88.95831052086567, - 79.02429821301156, - 71.50911716183008, - 64.696073802917, - 60.48592525620231, - 56.82735835500791, - 55.392629373297645, - 54.483435868295786, - 54.20574382529792, - 54.14102262523333, - 53.782584325867525, - 53.30576589970133, - 51.675226548746565, - 49.52338965041673, - 46.51411914289192, - 43.07896285052462, - 39.29901483879907, - 35.88188412805706, - 33.15202312671279, - 30.79022973349778, - 29.241252488297924, - 28.178570029397434, - 27.702836274602536, - 27.611436642789556, - 27.793337676413827, - 28.16499032871768, - 28.536933864891324, - 28.933856492358768, - 29.141052526613677, - 29.22491819925967, - 29.152692268391736, - 28.941785848746658, - 28.635037989156796, - 28.237298361129337, - 27.8111584076099, - 27.358620663957925, - 26.92266852185452, - 26.508617387297907, - 26.090137599741762, - 25.75509694170762, - 25.44828649498324, - 25.179029999083777, - 24.924497705843265, - 24.69051735758915, - 24.459435090385966, - 24.231797278557114, - 24.00041819800149, - 23.76206211024728, - 23.518393440064784, - 23.239987136204935, - 22.983165220475403, - 22.72038713645198, - 22.46139310439625, - 22.21109063769679, - 21.958767072770286, - 21.70075450246796, - 21.437059860920403, - 21.15820096667014, - 20.86368230938081, - 20.523285350874374, - 20.127525771456497, - 19.708369157800778, - 19.281332786086267, - 18.823775002881668, - 18.3694126122667, - 17.931707318788792, - 17.506692816441277, - 17.143503218339568, - 16.79818338977452, - 16.53901932883132, - 16.29771822375314, - 16.121455603457996, - 15.981592426357578, - 15.956505560463565, - 15.933795877296337, - 15.925869906556958, - 15.91507889943415, - 15.85436283030258, - 15.78952933450524, - 15.68396016113586, - 15.575649336455083, - 15.468288158331186, - 15.350283793211176 - ] - } - }, - { - "name": "inlet_aorta_br", - "type": "FLOW", - "location": "inlet", - "connected_block": "RCR_aorta_br", - "values": { - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99 - ], - "Q": [ - 3.4353002761635163, - 3.4373158051489967, - 3.4393313341344776, - 5.156747421844652, - 6.941336795322789, - 10.732632133257692, - 14.684159080146522, - 19.043295603913478, - 23.451783390092082, - 25.523749453872, - 27.206509398715173, - 26.211890562503488, - 24.758099646408258, - 22.552231430425728, - 20.235485165750617, - 18.581269831150824, - 17.055391880064523, - 16.242546566755237, - 15.600461242505292, - 15.288853750597653, - 15.07104320402608, - 14.914224043004431, - 14.762747433750105, - 14.537525503353928, - 14.286833871753489, - 13.92100982540633, - 13.516138607021528, - 12.997306055684621, - 12.433817935812737, - 11.617259196704971, - 10.686718318657224, - 9.775152850453129, - 8.876849242130405, - 8.142949072656897, - 7.618123468961851, - 7.312373589051443, - 7.123949813507342, - 7.034641019356584, - 7.003835683331526, - 6.985914018926977, - 6.975267053851184, - 6.950072608159414, - 6.91366123765489, - 6.852950987138117, - 6.7644973562885635, - 6.669187066793694, - 6.563128913808061, - 6.4590836261719415, - 6.356927983517702, - 6.263745920372853, - 6.1793845520128245, - 6.103756827394025, - 6.037202940047151, - 5.975986706056386, - 5.920464308192597, - 5.861347063032419, - 5.809467985907369, - 5.75674120911754, - 5.7028867584617196, - 5.647528779414993, - 5.589999275842678, - 5.531323379445832, - 5.4709295654200725, - 5.410057845277228, - 5.348509151643125, - 5.287089680918098, - 5.219918892822117, - 5.159497999596657, - 5.100329749921039, - 5.043409850598909, - 4.99155464011463, - 4.937756183970056, - 4.878718023855865, - 4.817571493896338, - 4.751209118537552, - 4.679863595579643, - 4.594000348255151, - 4.4950339212560975, - 4.394094633714233, - 4.293642486036747, - 4.19507722322844, - 4.099246941633172, - 4.0153807505223424, - 3.9352260570926, - 3.871789735880873, - 3.811925201540972, - 3.767783443597618, - 3.726232624386565, - 3.691465211950208, - 3.663854198905508, - 3.663370010533184, - 3.66152863605529, - 3.641756686666683, - 3.6203545283926406, - 3.5817721567459735, - 3.542568724519787, - 3.507915383350977, - 3.473884740269829, - 3.4548140634753217, - 3.4353002761635163 - ] - } - }, - { - "name": "inlet_LCA", - "type": "FLOW", - "location": "inlet", - "connected_block": "LCA", - "values": { - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99 - ], - "Q": [ - 0.4538523209670839, - 0.4077606241383135, - 0.36166892730954314, - 0.33906337432982137, - 0.317377514097275, - 0.37395409057984547, - 0.43678177914356436, - 0.587325701287372, - 0.7485765872105582, - 0.879452317843365, - 1.0052081652546168, - 1.073745542905944, - 1.1225280392889565, - 1.1458394337797837, - 1.1653956476844152, - 1.1859234277951245, - 1.2066514580907073, - 1.2267841831303112, - 1.2467719534098416, - 1.2621585940683837, - 1.2762092844317783, - 1.2862950584697381, - 1.2959139622864395, - 1.3005437488017382, - 1.3040189908721322, - 1.3032815079384226, - 1.3011159728488844, - 1.2953472351422275, - 1.2881686162886472, - 1.2753060637404008, - 1.2598914420349372, - 1.267574177368005, - 1.287236589167689, - 1.33412923137269, - 1.390407025341654, - 1.4441307723433174, - 1.4964866983200622, - 1.525778806761463, - 1.5411725486692276, - 1.533710191509838, - 1.5111593032924664, - 1.4770384454738497, - 1.4348370092990135, - 1.3890715171956682, - 1.3359740400952844, - 1.2858984143673102, - 1.2345281061146196, - 1.183712621040344, - 1.1334043010701822, - 1.0867564118915085, - 1.0437137469655102, - 1.0050694967481364, - 0.9710367510699082, - 0.9402654906159588, - 0.9130452748824526, - 0.8864993173477401, - 0.8663531425603287, - 0.8491624476924439, - 0.8359033545523691, - 0.8233839977915032, - 0.8118420844616088, - 0.7998076706822613, - 0.7869212755284902, - 0.7749216840656997, - 0.7645794007525281, - 0.7560821244165954, - 0.7504619276125987, - 0.7455791699654776, - 0.7405637612031774, - 0.7339750952968958, - 0.7238270199390391, - 0.7127979938119637, - 0.6998029759082122, - 0.6872471335563273, - 0.6761793377596741, - 0.6650077403227265, - 0.6532009185590619, - 0.6393239080150244, - 0.623803226511486, - 0.6081135991098964, - 0.5917695775967725, - 0.5759219721467633, - 0.562327527775468, - 0.5489826682025729, - 0.5364837386093733, - 0.5240138677296752, - 0.5114280613133199, - 0.4992699999130912, - 0.4893787710518902, - 0.4810345009338687, - 0.4758820452206143, - 0.4702558734756511, - 0.459014046898126, - 0.44776570962353857, - 0.43881163386529015, - 0.43058344783904456, - 0.43674883846158996, - 0.44384328736918877, - 0.44871315743817447, - 0.4538523209670839 - ] - } - }, - { - "name": "inlet_RCA", - "type": "FLOW", - "location": "inlet", - "connected_block": "RCA", - "values": { - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99 - ], - "Q": [ - 0.8044078540260993, - 0.7537218282204334, - 0.7030358024147677, - 0.7356132004666177, - 0.7714511068215303, - 0.9503992672318208, - 1.1407763123356154, - 1.4301885898288522, - 1.7316760394734911, - 1.93099556736573, - 2.1132372169234195, - 2.177131131697585, - 2.208823720944152, - 2.2041799510252993, - 2.194179145863582, - 2.1952047093443574, - 2.198377945030759, - 2.208769700127154, - 2.2208835833371143, - 2.232928305685326, - 2.2449297390483736, - 2.2537589961446725, - 2.2622673199644727, - 2.26219205686207, - 2.259897510276005, - 2.2490362115925797, - 2.2352705085231523, - 2.212659808958332, - 2.1865818884864985, - 2.142709928777282, - 2.0908299947847158, - 2.0487493680290814, - 2.0119629382661293, - 1.990138137591098, - 1.9805329178169075, - 1.9747423295251882, - 1.9709946688737372, - 1.9583967881550859, - 1.9404375280713535, - 1.912810482740727, - 1.8787886507527853, - 1.8410242452318102, - 1.800706954729144, - 1.760128742167086, - 1.7154200172035328, - 1.676089132376447, - 1.6378230009495252, - 1.6017048865735115, - 1.5675003829205922, - 1.5366050494741954, - 1.508929476314824, - 1.484273062201857, - 1.4627449023713355, - 1.4427906572928477, - 1.4244804590937288, - 1.4055897608736552, - 1.3898442265227084, - 1.3751825468825074, - 1.3619626923162338, - 1.3486037645567648, - 1.3350023332718848, - 1.3206776548785017, - 1.305201907814149, - 1.2902823676929236, - 1.2764635316240474, - 1.2639263097472027, - 1.252732409649256, - 1.2424049151178587, - 1.2313533246001855, - 1.2188741735443525, - 1.2031777846937235, - 1.1864846441030583, - 1.1675104481342942, - 1.1486475735623198, - 1.1303960392441448, - 1.1115530502171156, - 1.0907304728403475, - 1.0665877152334253, - 1.04096356865384, - 1.0152734774767695, - 0.9893279568587977, - 0.9642486407482838, - 0.9430283386392418, - 0.9224729366657621, - 0.9045829322870149, - 0.8870387271743139, - 0.8706571329362932, - 0.854929199648676, - 0.8421220225677372, - 0.831401401973544, - 0.8255532498861812, - 0.8191629422040145, - 0.8062207549158769, - 0.7932947904109505, - 0.7834082564952987, - 0.7744039888965051, - 0.7826159773706572, - 0.7919275046256781, - 0.7980205087520584, - 0.8044078540260993 - ] - } - }, - { - "name": "external_outlet", - "type": "FLOW", - "location": "outlet", - "connected_block": "ClosedLoopHeartAndPulmonary", - "values": { - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99 - ], - "Q": [ - 20.04384424436788, - 19.89408541833828, - 19.744326592308678, - 25.664436181045108, - 31.822235447288776, - 47.754791565864565, - 64.46794888685022, - 87.40000748067841, - 111.09013120488356, - 129.58740410941266, - 147.2158037136428, - 153.63709925463453, - 156.9605819386402, - 150.4783758183391, - 142.55052622379523, - 131.31344937361024, - 119.44205612188816, - 108.6364109708784, - 98.0924149922638, - 90.29305781218144, - 83.28825603042324, - 78.94020335382116, - 75.14828707100895, - 73.49289068231539, - 72.3341862411974, - 71.67907137023525, - 71.1935477136269, - 70.2878974256527, - 69.21433434028921, - 66.71050173796921, - 63.56082940589361, - 59.605595538742136, - 55.255011620088844, - 50.766231280419746, - 46.87094754017746, - 43.88326981763272, - 41.38166091419892, - 39.76006910257105, - 38.66401578946954, - 38.13527096778007, - 37.976651650685994, - 38.0614729752789, - 38.314195530400724, - 38.53908511139219, - 38.74974790594615, - 38.772227140151124, - 38.66039822013187, - 38.397193402177535, - 37.99961851625513, - 37.522145370895345, - 36.969326136422495, - 36.40425779395392, - 35.829605257446325, - 35.28171137581971, - 34.76660742946669, - 34.24357374099557, - 33.82076229669802, - 33.42937269867573, - 33.079782804414094, - 32.74401424760652, - 32.42736105116532, - 32.11124379539256, - 31.79485002731982, - 31.475680095037337, - 31.15161419426698, - 30.82549155514668, - 30.463100366288906, - 30.1306473051554, - 29.792633972176382, - 29.45765222383641, - 29.12965008244418, - 28.795805894655363, - 28.446785950366326, - 28.090526061935392, - 27.715985462211513, - 27.3201066955003, - 26.861217090528942, - 26.328471315961046, - 25.767230586680338, - 25.198362348709683, - 24.59994976056568, - 24.008830166794922, - 23.452443935725842, - 22.91337447840221, - 22.456359625116825, - 22.02116118621948, - 21.688887966678546, - 21.378150047701467, - 21.14442160902783, - 20.957882528170497, - 20.921310866103543, - 20.88474332903129, - 20.832861395037646, - 20.77649392786128, - 20.658354877409145, - 20.537085495760575, - 20.411240360319084, - 20.28530486871978, - 20.16983588799674, - 20.04384424436788 - ] - } - } - ], - "closed_loop_blocks": [ - { - "outlet_blocks": [ - "external_outlet" - ], - "closed_loop_type": "ClosedLoopHeartAndPulmonary", - "cardiac_cycle_period": 0.99, - "parameters": { - "_comment_": "Lrv_a = 0.249155/pConv, Rrv_a = 0.993637 * this->Rrv_base /pConv, Lra_v = 0.289378/pConv, Rra_v = 10.516664/pConv, Lla_v = 0.469052/pConv, Rla_v = 7.081136/pConv, Rlv_ao = 0.972624 * this->Rlv_base /pConv, Llv_a = 0.147702/pConv, Rpd = 1.120725 * this->Rpd_base /pConv", - "Tsa": 0.40742, - "tpwave": 8.976868, - "Erv_s": 2.125279, - "Elv_s": 3.125202, - "iml": 0.509365, - "imr": 0.806369, - "Lrv_a": 0.000186865, - "Rrv_a": 0.035061704, - "Lra_v": 0.000217032, - "Rra_v": 0.007887459, - "Lla_v": 0.000351787, - "Rla_v": 0.005310825, - "Rlv_ao": 0.034320234, - "Llv_a": 0.000110776, - "Vrv_u": 9.424629, - "Vlv_u": 5.606007, - "Rpd": 0.098865401, - "Cp": 1.090989, - "Cpa": 0.556854, - "Kxp_ra": 9.22244, - "Kxv_ra": 0.004837, - "Emax_ra": 0.208858, - "Vaso_ra": 4.848742, - "Kxp_la": 9.194992, - "Kxv_la": 0.008067, - "Emax_la": 0.303119, - "Vaso_la": 9.355754 - } - } - ], - "initial_condition": { - "V_RA:CLH": 38.43, - "V_RV:CLH": 96.07, - "V_LA:CLH": 38.43, - "V_LV:CLH": 96.07, - "P_pul:CLH": 8.0 + { + "bc_name": "RCR_aorta", + "bc_type": "ClosedLoopRCR", + "bc_values": { + "_comment_": "R_total = 1.570879*0.948914 = 1.490629075, Rp = 0.09*R_total, Rd = 0.91*R_total, C = 0.228215*1.044637", + "Rp": 0.134156617, + "Rd": 1.356472458, + "C": 0.238401833, + "closed_loop_outlet": true + } + }, + { + "bc_name": "RCR_aorta_br", + "bc_type": "ClosedLoopRCR", + "bc_values": { + "_comment_": "R_total = 6.922824*0.948914 = 6.569164613, Rp = 0.09*R_total, Rd = 0.91*R_total, C = 0.051785*1.044637", + "Rp": 0.591224815, + "Rd": 5.977939798, + "C": 0.054096527, + "closed_loop_outlet": true + } + } + ], + "external_solver_coupling_blocks": [ + { + "name": "inlet_aorta", + "type": "FLOW", + "location": "inlet", + "connected_block": "RCR_aorta", + "values": { + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99 + ], + "Q": [ + 15.350283793211176, 15.295287160830535, 15.240290528449892, + 19.43301218440402, 23.79207003104718, 35.69780607479522, + 48.20623171522454, 66.3391975856487, 85.15809518810744, + 101.25320677033157, 116.89084893274958, 124.17433201752752, + 128.87113053199886, 124.57612500310829, 118.95546626449658, + 109.3510514053199, 98.98163483870212, 88.95831052086567, + 79.02429821301156, 71.50911716183008, 64.696073802917, + 60.48592525620231, 56.82735835500791, 55.392629373297645, + 54.483435868295786, 54.20574382529792, 54.14102262523333, + 53.782584325867525, 53.30576589970133, 51.675226548746565, + 49.52338965041673, 46.51411914289192, 43.07896285052462, + 39.29901483879907, 35.88188412805706, 33.15202312671279, + 30.79022973349778, 29.241252488297924, 28.178570029397434, + 27.702836274602536, 27.611436642789556, 27.793337676413827, + 28.16499032871768, 28.536933864891324, 28.933856492358768, + 29.141052526613677, 29.22491819925967, 29.152692268391736, + 28.941785848746658, 28.635037989156796, 28.237298361129337, + 27.8111584076099, 27.358620663957925, 26.92266852185452, + 26.508617387297907, 26.090137599741762, 25.75509694170762, + 25.44828649498324, 25.179029999083777, 24.924497705843265, + 24.69051735758915, 24.459435090385966, 24.231797278557114, + 24.00041819800149, 23.76206211024728, 23.518393440064784, + 23.239987136204935, 22.983165220475403, 22.72038713645198, + 22.46139310439625, 22.21109063769679, 21.958767072770286, + 21.70075450246796, 21.437059860920403, 21.15820096667014, + 20.86368230938081, 20.523285350874374, 20.127525771456497, + 19.708369157800778, 19.281332786086267, 18.823775002881668, + 18.3694126122667, 17.931707318788792, 17.506692816441277, + 17.143503218339568, 16.79818338977452, 16.53901932883132, + 16.29771822375314, 16.121455603457996, 15.981592426357578, + 15.956505560463565, 15.933795877296337, 15.925869906556958, + 15.91507889943415, 15.85436283030258, 15.78952933450524, + 15.68396016113586, 15.575649336455083, 15.468288158331186, + 15.350283793211176 + ] + } + }, + { + "name": "inlet_aorta_br", + "type": "FLOW", + "location": "inlet", + "connected_block": "RCR_aorta_br", + "values": { + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99 + ], + "Q": [ + 3.4353002761635163, 3.4373158051489967, 3.4393313341344776, + 5.156747421844652, 6.941336795322789, 10.732632133257692, + 14.684159080146522, 19.043295603913478, 23.451783390092082, + 25.523749453872, 27.206509398715173, 26.211890562503488, + 24.758099646408258, 22.552231430425728, 20.235485165750617, + 18.581269831150824, 17.055391880064523, 16.242546566755237, + 15.600461242505292, 15.288853750597653, 15.07104320402608, + 14.914224043004431, 14.762747433750105, 14.537525503353928, + 14.286833871753489, 13.92100982540633, 13.516138607021528, + 12.997306055684621, 12.433817935812737, 11.617259196704971, + 10.686718318657224, 9.775152850453129, 8.876849242130405, + 8.142949072656897, 7.618123468961851, 7.312373589051443, + 7.123949813507342, 7.034641019356584, 7.003835683331526, + 6.985914018926977, 6.975267053851184, 6.950072608159414, + 6.91366123765489, 6.852950987138117, 6.7644973562885635, + 6.669187066793694, 6.563128913808061, 6.4590836261719415, + 6.356927983517702, 6.263745920372853, 6.1793845520128245, + 6.103756827394025, 6.037202940047151, 5.975986706056386, + 5.920464308192597, 5.861347063032419, 5.809467985907369, + 5.75674120911754, 5.7028867584617196, 5.647528779414993, + 5.589999275842678, 5.531323379445832, 5.4709295654200725, + 5.410057845277228, 5.348509151643125, 5.287089680918098, + 5.219918892822117, 5.159497999596657, 5.100329749921039, + 5.043409850598909, 4.99155464011463, 4.937756183970056, + 4.878718023855865, 4.817571493896338, 4.751209118537552, + 4.679863595579643, 4.594000348255151, 4.4950339212560975, + 4.394094633714233, 4.293642486036747, 4.19507722322844, + 4.099246941633172, 4.0153807505223424, 3.9352260570926, + 3.871789735880873, 3.811925201540972, 3.767783443597618, + 3.726232624386565, 3.691465211950208, 3.663854198905508, + 3.663370010533184, 3.66152863605529, 3.641756686666683, + 3.6203545283926406, 3.5817721567459735, 3.542568724519787, + 3.507915383350977, 3.473884740269829, 3.4548140634753217, + 3.4353002761635163 + ] + } + }, + { + "name": "inlet_LCA", + "type": "FLOW", + "location": "inlet", + "connected_block": "LCA", + "values": { + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99 + ], + "Q": [ + 0.4538523209670839, 0.4077606241383135, 0.36166892730954314, + 0.33906337432982137, 0.317377514097275, 0.37395409057984547, + 0.43678177914356436, 0.587325701287372, 0.7485765872105582, + 0.879452317843365, 1.0052081652546168, 1.073745542905944, + 1.1225280392889565, 1.1458394337797837, 1.1653956476844152, + 1.1859234277951245, 1.2066514580907073, 1.2267841831303112, + 1.2467719534098416, 1.2621585940683837, 1.2762092844317783, + 1.2862950584697381, 1.2959139622864395, 1.3005437488017382, + 1.3040189908721322, 1.3032815079384226, 1.3011159728488844, + 1.2953472351422275, 1.2881686162886472, 1.2753060637404008, + 1.2598914420349372, 1.267574177368005, 1.287236589167689, + 1.33412923137269, 1.390407025341654, 1.4441307723433174, + 1.4964866983200622, 1.525778806761463, 1.5411725486692276, + 1.533710191509838, 1.5111593032924664, 1.4770384454738497, + 1.4348370092990135, 1.3890715171956682, 1.3359740400952844, + 1.2858984143673102, 1.2345281061146196, 1.183712621040344, + 1.1334043010701822, 1.0867564118915085, 1.0437137469655102, + 1.0050694967481364, 0.9710367510699082, 0.9402654906159588, + 0.9130452748824526, 0.8864993173477401, 0.8663531425603287, + 0.8491624476924439, 0.8359033545523691, 0.8233839977915032, + 0.8118420844616088, 0.7998076706822613, 0.7869212755284902, + 0.7749216840656997, 0.7645794007525281, 0.7560821244165954, + 0.7504619276125987, 0.7455791699654776, 0.7405637612031774, + 0.7339750952968958, 0.7238270199390391, 0.7127979938119637, + 0.6998029759082122, 0.6872471335563273, 0.6761793377596741, + 0.6650077403227265, 0.6532009185590619, 0.6393239080150244, + 0.623803226511486, 0.6081135991098964, 0.5917695775967725, + 0.5759219721467633, 0.562327527775468, 0.5489826682025729, + 0.5364837386093733, 0.5240138677296752, 0.5114280613133199, + 0.4992699999130912, 0.4893787710518902, 0.4810345009338687, + 0.4758820452206143, 0.4702558734756511, 0.459014046898126, + 0.44776570962353857, 0.43881163386529015, 0.43058344783904456, + 0.43674883846158996, 0.44384328736918877, 0.44871315743817447, + 0.4538523209670839 + ] + } + }, + { + "name": "inlet_RCA", + "type": "FLOW", + "location": "inlet", + "connected_block": "RCA", + "values": { + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99 + ], + "Q": [ + 0.8044078540260993, 0.7537218282204334, 0.7030358024147677, + 0.7356132004666177, 0.7714511068215303, 0.9503992672318208, + 1.1407763123356154, 1.4301885898288522, 1.7316760394734911, + 1.93099556736573, 2.1132372169234195, 2.177131131697585, + 2.208823720944152, 2.2041799510252993, 2.194179145863582, + 2.1952047093443574, 2.198377945030759, 2.208769700127154, + 2.2208835833371143, 2.232928305685326, 2.2449297390483736, + 2.2537589961446725, 2.2622673199644727, 2.26219205686207, + 2.259897510276005, 2.2490362115925797, 2.2352705085231523, + 2.212659808958332, 2.1865818884864985, 2.142709928777282, + 2.0908299947847158, 2.0487493680290814, 2.0119629382661293, + 1.990138137591098, 1.9805329178169075, 1.9747423295251882, + 1.9709946688737372, 1.9583967881550859, 1.9404375280713535, + 1.912810482740727, 1.8787886507527853, 1.8410242452318102, + 1.800706954729144, 1.760128742167086, 1.7154200172035328, + 1.676089132376447, 1.6378230009495252, 1.6017048865735115, + 1.5675003829205922, 1.5366050494741954, 1.508929476314824, + 1.484273062201857, 1.4627449023713355, 1.4427906572928477, + 1.4244804590937288, 1.4055897608736552, 1.3898442265227084, + 1.3751825468825074, 1.3619626923162338, 1.3486037645567648, + 1.3350023332718848, 1.3206776548785017, 1.305201907814149, + 1.2902823676929236, 1.2764635316240474, 1.2639263097472027, + 1.252732409649256, 1.2424049151178587, 1.2313533246001855, + 1.2188741735443525, 1.2031777846937235, 1.1864846441030583, + 1.1675104481342942, 1.1486475735623198, 1.1303960392441448, + 1.1115530502171156, 1.0907304728403475, 1.0665877152334253, + 1.04096356865384, 1.0152734774767695, 0.9893279568587977, + 0.9642486407482838, 0.9430283386392418, 0.9224729366657621, + 0.9045829322870149, 0.8870387271743139, 0.8706571329362932, + 0.854929199648676, 0.8421220225677372, 0.831401401973544, + 0.8255532498861812, 0.8191629422040145, 0.8062207549158769, + 0.7932947904109505, 0.7834082564952987, 0.7744039888965051, + 0.7826159773706572, 0.7919275046256781, 0.7980205087520584, + 0.8044078540260993 + ] + } + }, + { + "name": "external_outlet", + "type": "FLOW", + "location": "outlet", + "connected_block": "ClosedLoopHeartAndPulmonary", + "values": { + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99 + ], + "Q": [ + 20.04384424436788, 19.89408541833828, 19.744326592308678, + 25.664436181045108, 31.822235447288776, 47.754791565864565, + 64.46794888685022, 87.40000748067841, 111.09013120488356, + 129.58740410941266, 147.2158037136428, 153.63709925463453, + 156.9605819386402, 150.4783758183391, 142.55052622379523, + 131.31344937361024, 119.44205612188816, 108.6364109708784, + 98.0924149922638, 90.29305781218144, 83.28825603042324, + 78.94020335382116, 75.14828707100895, 73.49289068231539, + 72.3341862411974, 71.67907137023525, 71.1935477136269, + 70.2878974256527, 69.21433434028921, 66.71050173796921, + 63.56082940589361, 59.605595538742136, 55.255011620088844, + 50.766231280419746, 46.87094754017746, 43.88326981763272, + 41.38166091419892, 39.76006910257105, 38.66401578946954, + 38.13527096778007, 37.976651650685994, 38.0614729752789, + 38.314195530400724, 38.53908511139219, 38.74974790594615, + 38.772227140151124, 38.66039822013187, 38.397193402177535, + 37.99961851625513, 37.522145370895345, 36.969326136422495, + 36.40425779395392, 35.829605257446325, 35.28171137581971, + 34.76660742946669, 34.24357374099557, 33.82076229669802, + 33.42937269867573, 33.079782804414094, 32.74401424760652, + 32.42736105116532, 32.11124379539256, 31.79485002731982, + 31.475680095037337, 31.15161419426698, 30.82549155514668, + 30.463100366288906, 30.1306473051554, 29.792633972176382, + 29.45765222383641, 29.12965008244418, 28.795805894655363, + 28.446785950366326, 28.090526061935392, 27.715985462211513, + 27.3201066955003, 26.861217090528942, 26.328471315961046, + 25.767230586680338, 25.198362348709683, 24.59994976056568, + 24.008830166794922, 23.452443935725842, 22.91337447840221, + 22.456359625116825, 22.02116118621948, 21.688887966678546, + 21.378150047701467, 21.14442160902783, 20.957882528170497, + 20.921310866103543, 20.88474332903129, 20.832861395037646, + 20.77649392786128, 20.658354877409145, 20.537085495760575, + 20.411240360319084, 20.28530486871978, 20.16983588799674, + 20.04384424436788 + ] + } + } + ], + "closed_loop_blocks": [ + { + "outlet_blocks": ["external_outlet"], + "closed_loop_type": "ClosedLoopHeartAndPulmonary", + "cardiac_cycle_period": 0.99, + "parameters": { + "_comment_": "Lrv_a = 0.249155/pConv, Rrv_a = 0.993637 * this->Rrv_base /pConv, Lra_v = 0.289378/pConv, Rra_v = 10.516664/pConv, Lla_v = 0.469052/pConv, Rla_v = 7.081136/pConv, Rlv_ao = 0.972624 * this->Rlv_base /pConv, Llv_a = 0.147702/pConv, Rpd = 1.120725 * this->Rpd_base /pConv", + "Tsa": 0.40742, + "tpwave": 8.976868, + "Erv_s": 2.125279, + "Elv_s": 3.125202, + "iml": 0.509365, + "imr": 0.806369, + "Lrv_a": 0.000186865, + "Rrv_a": 0.035061704, + "Lra_v": 0.000217032, + "Rra_v": 0.007887459, + "Lla_v": 0.000351787, + "Rla_v": 0.005310825, + "Rlv_ao": 0.034320234, + "Llv_a": 0.000110776, + "Vrv_u": 9.424629, + "Vlv_u": 5.606007, + "Rpd": 0.098865401, + "Cp": 1.090989, + "Cpa": 0.556854, + "Kxp_ra": 9.22244, + "Kxv_ra": 0.004837, + "Emax_ra": 0.208858, + "Vaso_ra": 4.848742, + "Kxp_la": 9.194992, + "Kxv_la": 0.008067, + "Emax_la": 0.303119, + "Vaso_la": 9.355754 + } } -} \ No newline at end of file + ], + "initial_condition": { + "V_RA:CLH": 38.43, + "V_RV:CLH": 96.07, + "V_LA:CLH": 38.43, + "V_LV:CLH": 96.07, + "P_pul:CLH": 8.0 + } +} diff --git a/tests/cases/pulsatileFlow_CStenosis_steadyPressure.json b/tests/cases/pulsatileFlow_CStenosis_steadyPressure.json index b8db96f45..2be00985f 100644 --- a/tests/cases/pulsatileFlow_CStenosis_steadyPressure.json +++ b/tests/cases/pulsatileFlow_CStenosis_steadyPressure.json @@ -1,264 +1,98 @@ { - "description": { - "description of test case": "sine flow -> C + stenosis -> constant pressure", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = SIN(t)", - "outlet:", - "pressure: Pd = 0.1", - "Solutions:", - "inlet pressure = abs( SIN(t) ) * SIN(t) + 0.1", - "outlet flow = SIN(t)" + "description": { + "description of test case": "sine flow -> C + stenosis -> constant pressure", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = SIN(t)", + "outlet:", + "pressure: Pd = 0.1", + "Solutions:", + "inlet pressure = abs( SIN(t) ) * SIN(t) + 0.1", + "outlet flow = SIN(t)" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 0.0, 0.06342392, 0.126592454, 0.189251244, 0.251147987, 0.312033446, + 0.371662456, 0.429794912, 0.486196736, 0.540640817, 0.592907929, + 0.64278761, 0.690079011, 0.734591709, 0.776146464, 0.814575952, + 0.84972543, 0.881453363, 0.909631995, 0.93414786, 0.954902241, + 0.971811568, 0.984807753, 0.993838464, 0.998867339, 0.999874128, + 0.996854776, 0.989821442, 0.978802446, 0.963842159, 0.945000819, + 0.922354294, 0.895993774, 0.866025404, 0.832569855, 0.795761841, + 0.755749574, 0.712694171, 0.666769001, 0.618158986, 0.567059864, + 0.513677392, 0.458226522, 0.400930535, 0.342020143, 0.281732557, + 0.220310533, 0.158001396, 0.095056043, 0.031727933, -0.031727933, + -0.095056043, -0.158001396, -0.220310533, -0.281732557, -0.342020143, + -0.400930535, -0.458226522, -0.513677392, -0.567059864, -0.618158986, + -0.666769001, -0.712694171, -0.755749574, -0.795761841, -0.832569855, + -0.866025404, -0.895993774, -0.922354294, -0.945000819, -0.963842159, + -0.978802446, -0.989821442, -0.996854776, -0.999874128, -0.998867339, + -0.993838464, -0.984807753, -0.971811568, -0.954902241, -0.93414786, + -0.909631995, -0.881453363, -0.84972543, -0.814575952, -0.776146464, + -0.734591709, -0.690079011, -0.64278761, -0.592907929, -0.540640817, + -0.486196736, -0.429794912, -0.371662456, -0.312033446, -0.251147987, + -0.189251244, -0.126592454, -0.06342392, 0.0 + ], + "t": [ + 0.0, 0.063466518, 0.126933037, 0.190399555, 0.253866073, 0.317332591, + 0.38079911, 0.444265628, 0.507732146, 0.571198664, 0.634665183, + 0.698131701, 0.761598219, 0.825064737, 0.888531256, 0.951997774, + 1.015464292, 1.07893081, 1.142397329, 1.205863847, 1.269330365, + 1.332796883, 1.396263402, 1.45972992, 1.523196438, 1.586662956, + 1.650129475, 1.713595993, 1.777062511, 1.840529029, 1.903995548, + 1.967462066, 2.030928584, 2.094395102, 2.157861621, 2.221328139, + 2.284794657, 2.348261175, 2.411727694, 2.475194212, 2.53866073, + 2.602127248, 2.665593767, 2.729060285, 2.792526803, 2.855993321, + 2.91945984, 2.982926358, 3.046392876, 3.109859394, 3.173325913, + 3.236792431, 3.300258949, 3.363725467, 3.427191986, 3.490658504, + 3.554125022, 3.61759154, 3.681058059, 3.744524577, 3.807991095, + 3.871457614, 3.934924132, 3.99839065, 4.061857168, 4.125323687, + 4.188790205, 4.252256723, 4.315723241, 4.37918976, 4.442656278, + 4.506122796, 4.569589314, 4.633055833, 4.696522351, 4.759988869, + 4.823455387, 4.886921906, 4.950388424, 5.013854942, 5.07732146, + 5.140787979, 5.204254497, 5.267721015, 5.331187533, 5.394654052, + 5.45812057, 5.521587088, 5.585053606, 5.648520125, 5.711986643, + 5.775453161, 5.838919679, 5.902386198, 5.965852716, 6.029319234, + 6.092785752, 6.156252271, 6.219718789, 6.283185307 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 0.0, - 0.06342392, - 0.126592454, - 0.189251244, - 0.251147987, - 0.312033446, - 0.371662456, - 0.429794912, - 0.486196736, - 0.540640817, - 0.592907929, - 0.64278761, - 0.690079011, - 0.734591709, - 0.776146464, - 0.814575952, - 0.84972543, - 0.881453363, - 0.909631995, - 0.93414786, - 0.954902241, - 0.971811568, - 0.984807753, - 0.993838464, - 0.998867339, - 0.999874128, - 0.996854776, - 0.989821442, - 0.978802446, - 0.963842159, - 0.945000819, - 0.922354294, - 0.895993774, - 0.866025404, - 0.832569855, - 0.795761841, - 0.755749574, - 0.712694171, - 0.666769001, - 0.618158986, - 0.567059864, - 0.513677392, - 0.458226522, - 0.400930535, - 0.342020143, - 0.281732557, - 0.220310533, - 0.158001396, - 0.095056043, - 0.031727933, - -0.031727933, - -0.095056043, - -0.158001396, - -0.220310533, - -0.281732557, - -0.342020143, - -0.400930535, - -0.458226522, - -0.513677392, - -0.567059864, - -0.618158986, - -0.666769001, - -0.712694171, - -0.755749574, - -0.795761841, - -0.832569855, - -0.866025404, - -0.895993774, - -0.922354294, - -0.945000819, - -0.963842159, - -0.978802446, - -0.989821442, - -0.996854776, - -0.999874128, - -0.998867339, - -0.993838464, - -0.984807753, - -0.971811568, - -0.954902241, - -0.93414786, - -0.909631995, - -0.881453363, - -0.84972543, - -0.814575952, - -0.776146464, - -0.734591709, - -0.690079011, - -0.64278761, - -0.592907929, - -0.540640817, - -0.486196736, - -0.429794912, - -0.371662456, - -0.312033446, - -0.251147987, - -0.189251244, - -0.126592454, - -0.06342392, - 0.0 - ], - "t": [ - 0.0, - 0.063466518, - 0.126933037, - 0.190399555, - 0.253866073, - 0.317332591, - 0.38079911, - 0.444265628, - 0.507732146, - 0.571198664, - 0.634665183, - 0.698131701, - 0.761598219, - 0.825064737, - 0.888531256, - 0.951997774, - 1.015464292, - 1.07893081, - 1.142397329, - 1.205863847, - 1.269330365, - 1.332796883, - 1.396263402, - 1.45972992, - 1.523196438, - 1.586662956, - 1.650129475, - 1.713595993, - 1.777062511, - 1.840529029, - 1.903995548, - 1.967462066, - 2.030928584, - 2.094395102, - 2.157861621, - 2.221328139, - 2.284794657, - 2.348261175, - 2.411727694, - 2.475194212, - 2.53866073, - 2.602127248, - 2.665593767, - 2.729060285, - 2.792526803, - 2.855993321, - 2.91945984, - 2.982926358, - 3.046392876, - 3.109859394, - 3.173325913, - 3.236792431, - 3.300258949, - 3.363725467, - 3.427191986, - 3.490658504, - 3.554125022, - 3.61759154, - 3.681058059, - 3.744524577, - 3.807991095, - 3.871457614, - 3.934924132, - 3.99839065, - 4.061857168, - 4.125323687, - 4.188790205, - 4.252256723, - 4.315723241, - 4.37918976, - 4.442656278, - 4.506122796, - 4.569589314, - 4.633055833, - 4.696522351, - 4.759988869, - 4.823455387, - 4.886921906, - 4.950388424, - 5.013854942, - 5.07732146, - 5.140787979, - 5.204254497, - 5.267721015, - 5.331187533, - 5.394654052, - 5.45812057, - 5.521587088, - 5.585053606, - 5.648520125, - 5.711986643, - 5.775453161, - 5.838919679, - 5.902386198, - 5.965852716, - 6.029319234, - 6.092785752, - 6.156252271, - 6.219718789, - 6.283185307 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "PRESSURE", - "bc_values": { - "P": [ - 0.1, - 0.1 - ], - "t": [ - 0.0, - 6.283185307 - ] - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 30, - "number_of_time_pts_per_cardiac_cycle": 501, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 1.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 1.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "PRESSURE", + "bc_values": { + "P": [0.1, 0.1], + "t": [0.0, 6.283185307] + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 30, + "number_of_time_pts_per_cardiac_cycle": 501, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 1.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 1.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_CStenosis_steadyPressure_definedPeriod.json b/tests/cases/pulsatileFlow_CStenosis_steadyPressure_definedPeriod.json index 0d47f1aaf..829c869f3 100644 --- a/tests/cases/pulsatileFlow_CStenosis_steadyPressure_definedPeriod.json +++ b/tests/cases/pulsatileFlow_CStenosis_steadyPressure_definedPeriod.json @@ -1,263 +1,98 @@ { - "description": { - "description of test case" : "sine flow -> C + stenosis -> constant pressure", - "analytical results" : [ "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = SIN(t)", - "outlet:", - "pressure: Pd = 0.1", - "Solutions:", - "inlet pressure = abs( SIN(t) ) * SIN(t) + 0.1", - "outlet flow = SIN(t)" - ] - }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 0.0, - 0.06342392, - 0.126592454, - 0.189251244, - 0.251147987, - 0.312033446, - 0.371662456, - 0.429794912, - 0.486196736, - 0.540640817, - 0.592907929, - 0.64278761, - 0.690079011, - 0.734591709, - 0.776146464, - 0.814575952, - 0.84972543, - 0.881453363, - 0.909631995, - 0.93414786, - 0.954902241, - 0.971811568, - 0.984807753, - 0.993838464, - 0.998867339, - 0.999874128, - 0.996854776, - 0.989821442, - 0.978802446, - 0.963842159, - 0.945000819, - 0.922354294, - 0.895993774, - 0.866025404, - 0.832569855, - 0.795761841, - 0.755749574, - 0.712694171, - 0.666769001, - 0.618158986, - 0.567059864, - 0.513677392, - 0.458226522, - 0.400930535, - 0.342020143, - 0.281732557, - 0.220310533, - 0.158001396, - 0.095056043, - 0.031727933, - -0.031727933, - -0.095056043, - -0.158001396, - -0.220310533, - -0.281732557, - -0.342020143, - -0.400930535, - -0.458226522, - -0.513677392, - -0.567059864, - -0.618158986, - -0.666769001, - -0.712694171, - -0.755749574, - -0.795761841, - -0.832569855, - -0.866025404, - -0.895993774, - -0.922354294, - -0.945000819, - -0.963842159, - -0.978802446, - -0.989821442, - -0.996854776, - -0.999874128, - -0.998867339, - -0.993838464, - -0.984807753, - -0.971811568, - -0.954902241, - -0.93414786, - -0.909631995, - -0.881453363, - -0.84972543, - -0.814575952, - -0.776146464, - -0.734591709, - -0.690079011, - -0.64278761, - -0.592907929, - -0.540640817, - -0.486196736, - -0.429794912, - -0.371662456, - -0.312033446, - -0.251147987, - -0.189251244, - -0.126592454, - -0.06342392, - 0.0 - ], - "t": [ - 0.0, - 0.063466518, - 0.126933037, - 0.190399555, - 0.253866073, - 0.317332591, - 0.38079911, - 0.444265628, - 0.507732146, - 0.571198664, - 0.634665183, - 0.698131701, - 0.761598219, - 0.825064737, - 0.888531256, - 0.951997774, - 1.015464292, - 1.07893081, - 1.142397329, - 1.205863847, - 1.269330365, - 1.332796883, - 1.396263402, - 1.45972992, - 1.523196438, - 1.586662956, - 1.650129475, - 1.713595993, - 1.777062511, - 1.840529029, - 1.903995548, - 1.967462066, - 2.030928584, - 2.094395102, - 2.157861621, - 2.221328139, - 2.284794657, - 2.348261175, - 2.411727694, - 2.475194212, - 2.53866073, - 2.602127248, - 2.665593767, - 2.729060285, - 2.792526803, - 2.855993321, - 2.91945984, - 2.982926358, - 3.046392876, - 3.109859394, - 3.173325913, - 3.236792431, - 3.300258949, - 3.363725467, - 3.427191986, - 3.490658504, - 3.554125022, - 3.61759154, - 3.681058059, - 3.744524577, - 3.807991095, - 3.871457614, - 3.934924132, - 3.99839065, - 4.061857168, - 4.125323687, - 4.188790205, - 4.252256723, - 4.315723241, - 4.37918976, - 4.442656278, - 4.506122796, - 4.569589314, - 4.633055833, - 4.696522351, - 4.759988869, - 4.823455387, - 4.886921906, - 4.950388424, - 5.013854942, - 5.07732146, - 5.140787979, - 5.204254497, - 5.267721015, - 5.331187533, - 5.394654052, - 5.45812057, - 5.521587088, - 5.585053606, - 5.648520125, - 5.711986643, - 5.775453161, - 5.838919679, - 5.902386198, - 5.965852716, - 6.029319234, - 6.092785752, - 6.156252271, - 6.219718789, - 6.283185307 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "PRESSURE", - "bc_values": { - "P": [ - 0.1, - 0.1 - ], - "t": [ - 0.0, - 6.283185307 - ] - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 30, - "number_of_time_pts_per_cardiac_cycle": 501, - "cardiac_period": 6.283185307 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 1.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 1.0 - } - } + "description": { + "description of test case": "sine flow -> C + stenosis -> constant pressure", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = SIN(t)", + "outlet:", + "pressure: Pd = 0.1", + "Solutions:", + "inlet pressure = abs( SIN(t) ) * SIN(t) + 0.1", + "outlet flow = SIN(t)" ] -} \ No newline at end of file + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 0.0, 0.06342392, 0.126592454, 0.189251244, 0.251147987, 0.312033446, + 0.371662456, 0.429794912, 0.486196736, 0.540640817, 0.592907929, + 0.64278761, 0.690079011, 0.734591709, 0.776146464, 0.814575952, + 0.84972543, 0.881453363, 0.909631995, 0.93414786, 0.954902241, + 0.971811568, 0.984807753, 0.993838464, 0.998867339, 0.999874128, + 0.996854776, 0.989821442, 0.978802446, 0.963842159, 0.945000819, + 0.922354294, 0.895993774, 0.866025404, 0.832569855, 0.795761841, + 0.755749574, 0.712694171, 0.666769001, 0.618158986, 0.567059864, + 0.513677392, 0.458226522, 0.400930535, 0.342020143, 0.281732557, + 0.220310533, 0.158001396, 0.095056043, 0.031727933, -0.031727933, + -0.095056043, -0.158001396, -0.220310533, -0.281732557, -0.342020143, + -0.400930535, -0.458226522, -0.513677392, -0.567059864, -0.618158986, + -0.666769001, -0.712694171, -0.755749574, -0.795761841, -0.832569855, + -0.866025404, -0.895993774, -0.922354294, -0.945000819, -0.963842159, + -0.978802446, -0.989821442, -0.996854776, -0.999874128, -0.998867339, + -0.993838464, -0.984807753, -0.971811568, -0.954902241, -0.93414786, + -0.909631995, -0.881453363, -0.84972543, -0.814575952, -0.776146464, + -0.734591709, -0.690079011, -0.64278761, -0.592907929, -0.540640817, + -0.486196736, -0.429794912, -0.371662456, -0.312033446, -0.251147987, + -0.189251244, -0.126592454, -0.06342392, 0.0 + ], + "t": [ + 0.0, 0.063466518, 0.126933037, 0.190399555, 0.253866073, 0.317332591, + 0.38079911, 0.444265628, 0.507732146, 0.571198664, 0.634665183, + 0.698131701, 0.761598219, 0.825064737, 0.888531256, 0.951997774, + 1.015464292, 1.07893081, 1.142397329, 1.205863847, 1.269330365, + 1.332796883, 1.396263402, 1.45972992, 1.523196438, 1.586662956, + 1.650129475, 1.713595993, 1.777062511, 1.840529029, 1.903995548, + 1.967462066, 2.030928584, 2.094395102, 2.157861621, 2.221328139, + 2.284794657, 2.348261175, 2.411727694, 2.475194212, 2.53866073, + 2.602127248, 2.665593767, 2.729060285, 2.792526803, 2.855993321, + 2.91945984, 2.982926358, 3.046392876, 3.109859394, 3.173325913, + 3.236792431, 3.300258949, 3.363725467, 3.427191986, 3.490658504, + 3.554125022, 3.61759154, 3.681058059, 3.744524577, 3.807991095, + 3.871457614, 3.934924132, 3.99839065, 4.061857168, 4.125323687, + 4.188790205, 4.252256723, 4.315723241, 4.37918976, 4.442656278, + 4.506122796, 4.569589314, 4.633055833, 4.696522351, 4.759988869, + 4.823455387, 4.886921906, 4.950388424, 5.013854942, 5.07732146, + 5.140787979, 5.204254497, 5.267721015, 5.331187533, 5.394654052, + 5.45812057, 5.521587088, 5.585053606, 5.648520125, 5.711986643, + 5.775453161, 5.838919679, 5.902386198, 5.965852716, 6.029319234, + 6.092785752, 6.156252271, 6.219718789, 6.283185307 + ] + } + }, + { + "bc_name": "OUT", + "bc_type": "PRESSURE", + "bc_values": { + "P": [0.1, 0.1], + "t": [0.0, 6.283185307] + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 30, + "number_of_time_pts_per_cardiac_cycle": 501, + "cardiac_period": 6.283185307 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 1.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 1.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_RCR.json b/tests/cases/pulsatileFlow_R_RCR.json index ddb4433b3..a9a3c7a2d 100644 --- a/tests/cases/pulsatileFlow_R_RCR.json +++ b/tests/cases/pulsatileFlow_R_RCR.json @@ -1,265 +1,103 @@ { - "description": { - "description of test case": "pulsatile flow -> R -> RCR", - "analytical results": [ - "Notes:", - "Let t0 = start of cardiac cycle", - "Notice that the inflow waveform has a period of 1 second", - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", - "Solutions:", - "inlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", - "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + "description": { + "description of test case": "pulsatile flow -> R -> RCR", + "analytical results": [ + "Notes:", + "Let t0 = start of cardiac cycle", + "Notice that the inflow waveform has a period of 1 second", + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", + "Solutions:", + "inlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", + "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 1000.0, - "Rp": 1000.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 201, - "output_all_cycles": true, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 1000.0, + "Rp": 1000.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 201, + "output_all_cycles": true, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_RCR_derivative.json b/tests/cases/pulsatileFlow_R_RCR_derivative.json index 15dcedec2..9a68bbb99 100644 --- a/tests/cases/pulsatileFlow_R_RCR_derivative.json +++ b/tests/cases/pulsatileFlow_R_RCR_derivative.json @@ -1,266 +1,104 @@ { - "description": { - "description of test case": "pulsatile flow -> R -> RCR", - "analytical results": [ - "Notes:", - "Let t0 = start of cardiac cycle", - "Notice that the inflow waveform has a period of 1 second", - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", - "Solutions:", - "inlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", - "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + "description": { + "description of test case": "pulsatile flow -> R -> RCR", + "analytical results": [ + "Notes:", + "Let t0 = start of cardiac cycle", + "Notice that the inflow waveform has a period of 1 second", + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", + "Solutions:", + "inlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", + "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 1000.0, - "Rp": 1000.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 201, - "absolute_tolerance": 1e-09, - "output_derivative": true, - "rho_infty": 0.0 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 1000.0, + "Rp": 1000.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 201, + "absolute_tolerance": 1e-9, + "output_derivative": true, + "rho_infty": 0.0 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_RCR_derivative_variable.json b/tests/cases/pulsatileFlow_R_RCR_derivative_variable.json index 458a3d8bf..27218f701 100644 --- a/tests/cases/pulsatileFlow_R_RCR_derivative_variable.json +++ b/tests/cases/pulsatileFlow_R_RCR_derivative_variable.json @@ -1,267 +1,105 @@ { - "description": { - "description of test case": "pulsatile flow -> R -> RCR", - "analytical results": [ - "Notes:", - "Let t0 = start of cardiac cycle", - "Notice that the inflow waveform has a period of 1 second", - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", - "Solutions:", - "inlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", - "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + "description": { + "description of test case": "pulsatile flow -> R -> RCR", + "analytical results": [ + "Notes:", + "Let t0 = start of cardiac cycle", + "Notice that the inflow waveform has a period of 1 second", + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", + "Solutions:", + "inlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", + "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 1000.0, - "Rp": 1000.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 201, - "absolute_tolerance": 1e-09, - "output_derivative": true, - "output_variable_based": true, - "rho_infty": 0.0 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 1000.0, + "Rp": 1000.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 201, + "absolute_tolerance": 1e-9, + "output_derivative": true, + "output_variable_based": true, + "rho_infty": 0.0 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_RCR_mean.json b/tests/cases/pulsatileFlow_R_RCR_mean.json index d2114103c..2cfec25c7 100644 --- a/tests/cases/pulsatileFlow_R_RCR_mean.json +++ b/tests/cases/pulsatileFlow_R_RCR_mean.json @@ -1,266 +1,104 @@ { - "description": { - "description of test case": "pulsatile flow -> R -> RCR", - "analytical results": [ - "Notes:", - "Let t0 = start of cardiac cycle", - "Notice that the inflow waveform has a period of 1 second", - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", - "Solutions:", - "inlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", - "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + "description": { + "description of test case": "pulsatile flow -> R -> RCR", + "analytical results": [ + "Notes:", + "Let t0 = start of cardiac cycle", + "Notice that the inflow waveform has a period of 1 second", + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", + "Solutions:", + "inlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", + "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 1000.0, - "Rp": 1000.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 201, - "output_all_cycles": true, - "output_mean_only": true, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 1000.0, + "Rp": 1000.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 201, + "output_all_cycles": true, + "output_mean_only": true, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_RCR_mean_derivative.json b/tests/cases/pulsatileFlow_R_RCR_mean_derivative.json index 4b167055e..ca9668009 100644 --- a/tests/cases/pulsatileFlow_R_RCR_mean_derivative.json +++ b/tests/cases/pulsatileFlow_R_RCR_mean_derivative.json @@ -1,267 +1,105 @@ { - "description": { - "description of test case": "pulsatile flow -> R -> RCR", - "analytical results": [ - "Notes:", - "Let t0 = start of cardiac cycle", - "Notice that the inflow waveform has a period of 1 second", - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", - "Solutions:", - "inlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", - "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + "description": { + "description of test case": "pulsatile flow -> R -> RCR", + "analytical results": [ + "Notes:", + "Let t0 = start of cardiac cycle", + "Notice that the inflow waveform has a period of 1 second", + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", + "Solutions:", + "inlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", + "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 1000.0, - "Rp": 1000.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 201, - "output_all_cycles": true, - "output_mean_only": true, - "output_derivative": true, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 1000.0, + "Rp": 1000.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 201, + "output_all_cycles": true, + "output_mean_only": true, + "output_derivative": true, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_RCR_mean_derivative_variable.json b/tests/cases/pulsatileFlow_R_RCR_mean_derivative_variable.json index 7297bde0e..5ed6ceb2c 100644 --- a/tests/cases/pulsatileFlow_R_RCR_mean_derivative_variable.json +++ b/tests/cases/pulsatileFlow_R_RCR_mean_derivative_variable.json @@ -1,268 +1,106 @@ { - "description": { - "description of test case": "pulsatile flow -> R -> RCR", - "analytical results": [ - "Notes:", - "Let t0 = start of cardiac cycle", - "Notice that the inflow waveform has a period of 1 second", - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", - "Solutions:", - "inlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", - "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + "description": { + "description of test case": "pulsatile flow -> R -> RCR", + "analytical results": [ + "Notes:", + "Let t0 = start of cardiac cycle", + "Notice that the inflow waveform has a period of 1 second", + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", + "Solutions:", + "inlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", + "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 1000.0, - "Rp": 1000.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 201, - "output_all_cycles": true, - "output_mean_only": true, - "output_derivative": true, - "output_variable_based": true, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 1000.0, + "Rp": 1000.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 201, + "output_all_cycles": true, + "output_mean_only": true, + "output_derivative": true, + "output_variable_based": true, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_RCR_mean_variable.json b/tests/cases/pulsatileFlow_R_RCR_mean_variable.json index 7c9dfba20..fbf34e01b 100644 --- a/tests/cases/pulsatileFlow_R_RCR_mean_variable.json +++ b/tests/cases/pulsatileFlow_R_RCR_mean_variable.json @@ -1,267 +1,105 @@ { - "description": { - "description of test case": "pulsatile flow -> R -> RCR", - "analytical results": [ - "Notes:", - "Let t0 = start of cardiac cycle", - "Notice that the inflow waveform has a period of 1 second", - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", - "Solutions:", - "inlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", - "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + "description": { + "description of test case": "pulsatile flow -> R -> RCR", + "analytical results": [ + "Notes:", + "Let t0 = start of cardiac cycle", + "Notice that the inflow waveform has a period of 1 second", + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", + "Solutions:", + "inlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", + "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 1000.0, - "Rp": 1000.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 201, - "output_all_cycles": true, - "output_mean_only": true, - "output_variable_based": true, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 1000.0, + "Rp": 1000.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 201, + "output_all_cycles": true, + "output_mean_only": true, + "output_variable_based": true, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_RCR_mismatchPeriod.json b/tests/cases/pulsatileFlow_R_RCR_mismatchPeriod.json index 9ad4227f7..67c833d00 100644 --- a/tests/cases/pulsatileFlow_R_RCR_mismatchPeriod.json +++ b/tests/cases/pulsatileFlow_R_RCR_mismatchPeriod.json @@ -1,264 +1,103 @@ { - "description": { - "description of test case" : "pulsatile flow -> R -> RCR", - "analytical results" : [ "Notes:", - "Let t0 = start of cardiac cycle", - "Notice that the inflow waveform has a period of 1 second", - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", - "Solutions:", - "inlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", - "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" - ] - }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 1000.0, - "Rp": 1000.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 201, - "output_all_cycles": true, - "cardiac_period": 1.2 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } + "description": { + "description of test case": "pulsatile flow -> R -> RCR", + "analytical results": [ + "Notes:", + "Let t0 = start of cardiac cycle", + "Notice that the inflow waveform has a period of 1 second", + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", + "Solutions:", + "inlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", + "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" ] -} \ No newline at end of file + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 + ] + } + }, + { + "bc_name": "OUT", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 1000.0, + "Rp": 1000.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 201, + "output_all_cycles": true, + "cardiac_period": 1.2 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_RCR_variable.json b/tests/cases/pulsatileFlow_R_RCR_variable.json index ddb4433b3..a9a3c7a2d 100644 --- a/tests/cases/pulsatileFlow_R_RCR_variable.json +++ b/tests/cases/pulsatileFlow_R_RCR_variable.json @@ -1,265 +1,103 @@ { - "description": { - "description of test case": "pulsatile flow -> R -> RCR", - "analytical results": [ - "Notes:", - "Let t0 = start of cardiac cycle", - "Notice that the inflow waveform has a period of 1 second", - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", - "Solutions:", - "inlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", - "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + "description": { + "description of test case": "pulsatile flow -> R -> RCR", + "analytical results": [ + "Notes:", + "Let t0 = start of cardiac cycle", + "Notice that the inflow waveform has a period of 1 second", + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", + "Solutions:", + "inlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet pressure (at time = t0) = Q(t = 0) * (Rp + Rd) + Pd = 2.2 * (1000 + 1000) + 0 = 4400", + "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 4400 + 2.2 * 100 = 4620" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 1000.0, - "Rp": 1000.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 10, - "number_of_time_pts_per_cardiac_cycle": 201, - "output_all_cycles": true, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 1000.0, + "Rp": 1000.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 10, + "number_of_time_pts_per_cardiac_cycle": 201, + "output_all_cycles": true, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_coronary.json b/tests/cases/pulsatileFlow_R_coronary.json index 12d13949b..685897690 100644 --- a/tests/cases/pulsatileFlow_R_coronary.json +++ b/tests/cases/pulsatileFlow_R_coronary.json @@ -1,275 +1,107 @@ { - "description": { - "description of test case": "pulsatile flow -> R -> coronary", - "analytical results": [ - "Notes:", - "Let t0 = start of cardiac cycle", - "Notice that the inflow waveform has a period of 1 second", - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "Coronary: Ra1 = 100, Ra2 = 100, Rv1 = 100, distal pressure = P_v = 0", - "Solutions:", - "inlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet flow (at time = t0) = Q(t = 0) = 2.2", - "outlet pressure (at time = t0) = Q(t = 0) * (Ra1 + Ra2 + Rv1) + P_v = 2.2 * (100 + 100 + 100) + 0 = 660", - "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 660 + 2.2 * 100 = 880" + "description": { + "description of test case": "pulsatile flow -> R -> coronary", + "analytical results": [ + "Notes:", + "Let t0 = start of cardiac cycle", + "Notice that the inflow waveform has a period of 1 second", + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "Coronary: Ra1 = 100, Ra2 = 100, Rv1 = 100, distal pressure = P_v = 0", + "Solutions:", + "inlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet flow (at time = t0) = Q(t = 0) = 2.2", + "outlet pressure (at time = t0) = Q(t = 0) * (Ra1 + Ra2 + Rv1) + P_v = 2.2 * (100 + 100 + 100) + 0 = 660", + "inlet pressure (at time = t0) = outlet pressure + Q(t = 0) * R_poiseuille = 660 + 2.2 * 100 = 880" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "CORONARY", - "bc_values": { - "Ca": 0.0001, - "Cc": 0.0001, - "Pim": [ - 1000.0, - 1000.0 - ], - "P_v": 0.0, - "Ra1": 100.0, - "Ra2": 100.0, - "Rv1": 100.0, - "t": [ - 0.0, - 1.0 - ] - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 30, - "number_of_time_pts_per_cardiac_cycle": 201, - "absolute_tolerance": 1e-09, - "output_all_cycles": true - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "CORONARY", + "bc_values": { + "Ca": 0.0001, + "Cc": 0.0001, + "Pim": [1000.0, 1000.0], + "P_v": 0.0, + "Ra1": 100.0, + "Ra2": 100.0, + "Rv1": 100.0, + "t": [0.0, 1.0] + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 30, + "number_of_time_pts_per_cardiac_cycle": 201, + "absolute_tolerance": 1e-9, + "output_all_cycles": true + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_R_coronary_cycle_error.json b/tests/cases/pulsatileFlow_R_coronary_cycle_error.json index 0f053a911..1135f028e 100644 --- a/tests/cases/pulsatileFlow_R_coronary_cycle_error.json +++ b/tests/cases/pulsatileFlow_R_coronary_cycle_error.json @@ -1,263 +1,95 @@ { - "description": { - "description of test case": "pulsatile flow -> R -> coronary" + "description": { + "description of test case": "pulsatile flow -> R -> coronary" + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 + ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "CORONARY", - "bc_values": { - "Ca": 0.0001, - "Cc": 0.0001, - "Pim": [ - 1000.0, - 1000.0 - ], - "P_v": 0.0, - "Ra1": 100000.0, - "Ra2": 100000.0, - "Rv1": 100000.0, - "t": [ - 0.0, - 1.0 - ] - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 20, - "number_of_time_pts_per_cardiac_cycle": 201, - "absolute_tolerance": 1e-09, - "output_all_cycles": true, - "use_cycle_to_cycle_error": true, - "sim_cycle_to_cycle_percent_error": 1.0, - "steady_initial": false - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "CORONARY", + "bc_values": { + "Ca": 0.0001, + "Cc": 0.0001, + "Pim": [1000.0, 1000.0], + "P_v": 0.0, + "Ra1": 100000.0, + "Ra2": 100000.0, + "Rv1": 100000.0, + "t": [0.0, 1.0] + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 20, + "number_of_time_pts_per_cardiac_cycle": 201, + "absolute_tolerance": 1e-9, + "output_all_cycles": true, + "use_cycle_to_cycle_error": true, + "sim_cycle_to_cycle_percent_error": 1.0, + "steady_initial": false + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/pulsatileFlow_bifurcationR_RCR_cycle_error.json b/tests/cases/pulsatileFlow_bifurcationR_RCR_cycle_error.json index 750fd5115..9283c8b90 100644 --- a/tests/cases/pulsatileFlow_bifurcationR_RCR_cycle_error.json +++ b/tests/cases/pulsatileFlow_bifurcationR_RCR_cycle_error.json @@ -1,311 +1,144 @@ { - "description": { - "description of test case": "pulsatile flow -> bifurcation (with R's) -> RCR", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet1:", - "RCR: Rp = 1000, C = 0.0001, Rd = 70000, Pd = 0", - "outlet2:", - "RCR: Rp = 1000, C = 0.0001, Rd = 10000, Pd = 0", - "Cardiac cycle period = 1", - "Solutions:", - "n_infinity = ceil(-max(Rd_1 * C_1, Rd_2 * C_2) / period * ln(sim_cycle_to_cycle_percent_error / 100) ) = ceil(-max(70000 * 0.0001, 10000 * 0.0001) / 1.0 * ln(1.0 / 100)) = 33" + "description": { + "description of test case": "pulsatile flow -> bifurcation (with R's) -> RCR", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "flow rate: Q(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet1:", + "RCR: Rp = 1000, C = 0.0001, Rd = 70000, Pd = 0", + "outlet2:", + "RCR: Rp = 1000, C = 0.0001, Rd = 10000, Pd = 0", + "Cardiac cycle period = 1", + "Solutions:", + "n_infinity = ceil(-max(Rd_1 * C_1, Rd_2 * C_2) / period * ln(sim_cycle_to_cycle_percent_error / 100) ) = ceil(-max(70000 * 0.0001, 10000 * 0.0001) / 1.0 * ln(1.0 / 100)) = 33" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUT1", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 70000.0, - "Rp": 1000.0 - } - }, - { - "bc_name": "OUT2", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 10000.0, - "Rp": 1000.0 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0 - ], - "junction_name": "J0", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 1, - 2 - ] - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 3, - "number_of_time_pts_per_cardiac_cycle": 5, - "absolute_tolerance": 1e-09, - "output_all_cycles": true, - "use_cycle_to_cycle_error": true, - "sim_cycle_to_cycle_percent_error": 1.0, - "steady_initial": false + { + "bc_name": "OUT1", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 70000.0, + "Rp": 1000.0 + } }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 300.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT1" - }, - "vessel_id": 1, - "vessel_length": 10.0, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 400.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT2" - }, - "vessel_id": 2, - "vessel_length": 10.0, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 500.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT2", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 10000.0, + "Rp": 1000.0 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0], + "junction_name": "J0", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [1, 2] + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 3, + "number_of_time_pts_per_cardiac_cycle": 5, + "absolute_tolerance": 1e-9, + "output_all_cycles": true, + "use_cycle_to_cycle_error": true, + "sim_cycle_to_cycle_percent_error": 1.0, + "steady_initial": false + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 300.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT1" + }, + "vessel_id": 1, + "vessel_length": 10.0, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 400.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT2" + }, + "vessel_id": 2, + "vessel_length": 10.0, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 500.0 + } + } + ] +} diff --git a/tests/cases/results/result_chamber_elastance_inductor.json b/tests/cases/results/result_chamber_elastance_inductor.json index 5ca0291d2..0473a746d 100644 --- a/tests/cases/results/result_chamber_elastance_inductor.json +++ b/tests/cases/results/result_chamber_elastance_inductor.json @@ -1 +1,3341 @@ -{"name":{"0":"flow:vessel:OUTLET","1":"flow:vessel:OUTLET","2":"flow:vessel:OUTLET","3":"flow:vessel:OUTLET","4":"flow:vessel:OUTLET","5":"flow:vessel:OUTLET","6":"flow:vessel:OUTLET","7":"flow:vessel:OUTLET","8":"flow:vessel:OUTLET","9":"flow:vessel:OUTLET","10":"flow:vessel:OUTLET","11":"flow:vessel:OUTLET","12":"flow:vessel:OUTLET","13":"flow:vessel:OUTLET","14":"flow:vessel:OUTLET","15":"flow:vessel:OUTLET","16":"flow:vessel:OUTLET","17":"flow:vessel:OUTLET","18":"flow:vessel:OUTLET","19":"flow:vessel:OUTLET","20":"flow:vessel:OUTLET","21":"flow:vessel:OUTLET","22":"flow:vessel:OUTLET","23":"flow:vessel:OUTLET","24":"flow:vessel:OUTLET","25":"flow:vessel:OUTLET","26":"flow:vessel:OUTLET","27":"flow:vessel:OUTLET","28":"flow:vessel:OUTLET","29":"flow:vessel:OUTLET","30":"flow:vessel:OUTLET","31":"flow:vessel:OUTLET","32":"flow:vessel:OUTLET","33":"flow:vessel:OUTLET","34":"flow:vessel:OUTLET","35":"flow:vessel:OUTLET","36":"flow:vessel:OUTLET","37":"flow:vessel:OUTLET","38":"flow:vessel:OUTLET","39":"flow:vessel:OUTLET","40":"flow:vessel:OUTLET","41":"flow:vessel:OUTLET","42":"flow:vessel:OUTLET","43":"flow:vessel:OUTLET","44":"flow:vessel:OUTLET","45":"flow:vessel:OUTLET","46":"flow:vessel:OUTLET","47":"flow:vessel:OUTLET","48":"flow:vessel:OUTLET","49":"flow:vessel:OUTLET","50":"flow:vessel:OUTLET","51":"flow:vessel:OUTLET","52":"flow:vessel:OUTLET","53":"flow:vessel:OUTLET","54":"flow:vessel:OUTLET","55":"flow:vessel:OUTLET","56":"flow:vessel:OUTLET","57":"flow:vessel:OUTLET","58":"flow:vessel:OUTLET","59":"flow:vessel:OUTLET","60":"flow:vessel:OUTLET","61":"flow:vessel:OUTLET","62":"flow:vessel:OUTLET","63":"flow:vessel:OUTLET","64":"flow:vessel:OUTLET","65":"flow:vessel:OUTLET","66":"flow:vessel:OUTLET","67":"flow:vessel:OUTLET","68":"flow:vessel:OUTLET","69":"flow:vessel:OUTLET","70":"flow:vessel:OUTLET","71":"flow:vessel:OUTLET","72":"flow:vessel:OUTLET","73":"flow:vessel:OUTLET","74":"flow:vessel:OUTLET","75":"flow:vessel:OUTLET","76":"flow:vessel:OUTLET","77":"flow:vessel:OUTLET","78":"flow:vessel:OUTLET","79":"flow:vessel:OUTLET","80":"flow:vessel:OUTLET","81":"flow:vessel:OUTLET","82":"flow:vessel:OUTLET","83":"flow:vessel:OUTLET","84":"flow:vessel:OUTLET","85":"flow:vessel:OUTLET","86":"flow:vessel:OUTLET","87":"flow:vessel:OUTLET","88":"flow:vessel:OUTLET","89":"flow:vessel:OUTLET","90":"flow:vessel:OUTLET","91":"flow:vessel:OUTLET","92":"flow:vessel:OUTLET","93":"flow:vessel:OUTLET","94":"flow:vessel:OUTLET","95":"flow:vessel:OUTLET","96":"flow:vessel:OUTLET","97":"flow:vessel:OUTLET","98":"flow:vessel:OUTLET","99":"flow:vessel:OUTLET","100":"flow:vessel:OUTLET","101":"pressure:vessel:OUTLET","102":"pressure:vessel:OUTLET","103":"pressure:vessel:OUTLET","104":"pressure:vessel:OUTLET","105":"pressure:vessel:OUTLET","106":"pressure:vessel:OUTLET","107":"pressure:vessel:OUTLET","108":"pressure:vessel:OUTLET","109":"pressure:vessel:OUTLET","110":"pressure:vessel:OUTLET","111":"pressure:vessel:OUTLET","112":"pressure:vessel:OUTLET","113":"pressure:vessel:OUTLET","114":"pressure:vessel:OUTLET","115":"pressure:vessel:OUTLET","116":"pressure:vessel:OUTLET","117":"pressure:vessel:OUTLET","118":"pressure:vessel:OUTLET","119":"pressure:vessel:OUTLET","120":"pressure:vessel:OUTLET","121":"pressure:vessel:OUTLET","122":"pressure:vessel:OUTLET","123":"pressure:vessel:OUTLET","124":"pressure:vessel:OUTLET","125":"pressure:vessel:OUTLET","126":"pressure:vessel:OUTLET","127":"pressure:vessel:OUTLET","128":"pressure:vessel:OUTLET","129":"pressure:vessel:OUTLET","130":"pressure:vessel:OUTLET","131":"pressure:vessel:OUTLET","132":"pressure:vessel:OUTLET","133":"pressure:vessel:OUTLET","134":"pressure:vessel:OUTLET","135":"pressure:vessel:OUTLET","136":"pressure:vessel:OUTLET","137":"pressure:vessel:OUTLET","138":"pressure:vessel:OUTLET","139":"pressure:vessel:OUTLET","140":"pressure:vessel:OUTLET","141":"pressure:vessel:OUTLET","142":"pressure:vessel:OUTLET","143":"pressure:vessel:OUTLET","144":"pressure:vessel:OUTLET","145":"pressure:vessel:OUTLET","146":"pressure:vessel:OUTLET","147":"pressure:vessel:OUTLET","148":"pressure:vessel:OUTLET","149":"pressure:vessel:OUTLET","150":"pressure:vessel:OUTLET","151":"pressure:vessel:OUTLET","152":"pressure:vessel:OUTLET","153":"pressure:vessel:OUTLET","154":"pressure:vessel:OUTLET","155":"pressure:vessel:OUTLET","156":"pressure:vessel:OUTLET","157":"pressure:vessel:OUTLET","158":"pressure:vessel:OUTLET","159":"pressure:vessel:OUTLET","160":"pressure:vessel:OUTLET","161":"pressure:vessel:OUTLET","162":"pressure:vessel:OUTLET","163":"pressure:vessel:OUTLET","164":"pressure:vessel:OUTLET","165":"pressure:vessel:OUTLET","166":"pressure:vessel:OUTLET","167":"pressure:vessel:OUTLET","168":"pressure:vessel:OUTLET","169":"pressure:vessel:OUTLET","170":"pressure:vessel:OUTLET","171":"pressure:vessel:OUTLET","172":"pressure:vessel:OUTLET","173":"pressure:vessel:OUTLET","174":"pressure:vessel:OUTLET","175":"pressure:vessel:OUTLET","176":"pressure:vessel:OUTLET","177":"pressure:vessel:OUTLET","178":"pressure:vessel:OUTLET","179":"pressure:vessel:OUTLET","180":"pressure:vessel:OUTLET","181":"pressure:vessel:OUTLET","182":"pressure:vessel:OUTLET","183":"pressure:vessel:OUTLET","184":"pressure:vessel:OUTLET","185":"pressure:vessel:OUTLET","186":"pressure:vessel:OUTLET","187":"pressure:vessel:OUTLET","188":"pressure:vessel:OUTLET","189":"pressure:vessel:OUTLET","190":"pressure:vessel:OUTLET","191":"pressure:vessel:OUTLET","192":"pressure:vessel:OUTLET","193":"pressure:vessel:OUTLET","194":"pressure:vessel:OUTLET","195":"pressure:vessel:OUTLET","196":"pressure:vessel:OUTLET","197":"pressure:vessel:OUTLET","198":"pressure:vessel:OUTLET","199":"pressure:vessel:OUTLET","200":"pressure:vessel:OUTLET","201":"pressure:vessel:OUTLET","202":"flow:INLET:valve0","203":"flow:INLET:valve0","204":"flow:INLET:valve0","205":"flow:INLET:valve0","206":"flow:INLET:valve0","207":"flow:INLET:valve0","208":"flow:INLET:valve0","209":"flow:INLET:valve0","210":"flow:INLET:valve0","211":"flow:INLET:valve0","212":"flow:INLET:valve0","213":"flow:INLET:valve0","214":"flow:INLET:valve0","215":"flow:INLET:valve0","216":"flow:INLET:valve0","217":"flow:INLET:valve0","218":"flow:INLET:valve0","219":"flow:INLET:valve0","220":"flow:INLET:valve0","221":"flow:INLET:valve0","222":"flow:INLET:valve0","223":"flow:INLET:valve0","224":"flow:INLET:valve0","225":"flow:INLET:valve0","226":"flow:INLET:valve0","227":"flow:INLET:valve0","228":"flow:INLET:valve0","229":"flow:INLET:valve0","230":"flow:INLET:valve0","231":"flow:INLET:valve0","232":"flow:INLET:valve0","233":"flow:INLET:valve0","234":"flow:INLET:valve0","235":"flow:INLET:valve0","236":"flow:INLET:valve0","237":"flow:INLET:valve0","238":"flow:INLET:valve0","239":"flow:INLET:valve0","240":"flow:INLET:valve0","241":"flow:INLET:valve0","242":"flow:INLET:valve0","243":"flow:INLET:valve0","244":"flow:INLET:valve0","245":"flow:INLET:valve0","246":"flow:INLET:valve0","247":"flow:INLET:valve0","248":"flow:INLET:valve0","249":"flow:INLET:valve0","250":"flow:INLET:valve0","251":"flow:INLET:valve0","252":"flow:INLET:valve0","253":"flow:INLET:valve0","254":"flow:INLET:valve0","255":"flow:INLET:valve0","256":"flow:INLET:valve0","257":"flow:INLET:valve0","258":"flow:INLET:valve0","259":"flow:INLET:valve0","260":"flow:INLET:valve0","261":"flow:INLET:valve0","262":"flow:INLET:valve0","263":"flow:INLET:valve0","264":"flow:INLET:valve0","265":"flow:INLET:valve0","266":"flow:INLET:valve0","267":"flow:INLET:valve0","268":"flow:INLET:valve0","269":"flow:INLET:valve0","270":"flow:INLET:valve0","271":"flow:INLET:valve0","272":"flow:INLET:valve0","273":"flow:INLET:valve0","274":"flow:INLET:valve0","275":"flow:INLET:valve0","276":"flow:INLET:valve0","277":"flow:INLET:valve0","278":"flow:INLET:valve0","279":"flow:INLET:valve0","280":"flow:INLET:valve0","281":"flow:INLET:valve0","282":"flow:INLET:valve0","283":"flow:INLET:valve0","284":"flow:INLET:valve0","285":"flow:INLET:valve0","286":"flow:INLET:valve0","287":"flow:INLET:valve0","288":"flow:INLET:valve0","289":"flow:INLET:valve0","290":"flow:INLET:valve0","291":"flow:INLET:valve0","292":"flow:INLET:valve0","293":"flow:INLET:valve0","294":"flow:INLET:valve0","295":"flow:INLET:valve0","296":"flow:INLET:valve0","297":"flow:INLET:valve0","298":"flow:INLET:valve0","299":"flow:INLET:valve0","300":"flow:INLET:valve0","301":"flow:INLET:valve0","302":"flow:INLET:valve0","303":"pressure:INLET:valve0","304":"pressure:INLET:valve0","305":"pressure:INLET:valve0","306":"pressure:INLET:valve0","307":"pressure:INLET:valve0","308":"pressure:INLET:valve0","309":"pressure:INLET:valve0","310":"pressure:INLET:valve0","311":"pressure:INLET:valve0","312":"pressure:INLET:valve0","313":"pressure:INLET:valve0","314":"pressure:INLET:valve0","315":"pressure:INLET:valve0","316":"pressure:INLET:valve0","317":"pressure:INLET:valve0","318":"pressure:INLET:valve0","319":"pressure:INLET:valve0","320":"pressure:INLET:valve0","321":"pressure:INLET:valve0","322":"pressure:INLET:valve0","323":"pressure:INLET:valve0","324":"pressure:INLET:valve0","325":"pressure:INLET:valve0","326":"pressure:INLET:valve0","327":"pressure:INLET:valve0","328":"pressure:INLET:valve0","329":"pressure:INLET:valve0","330":"pressure:INLET:valve0","331":"pressure:INLET:valve0","332":"pressure:INLET:valve0","333":"pressure:INLET:valve0","334":"pressure:INLET:valve0","335":"pressure:INLET:valve0","336":"pressure:INLET:valve0","337":"pressure:INLET:valve0","338":"pressure:INLET:valve0","339":"pressure:INLET:valve0","340":"pressure:INLET:valve0","341":"pressure:INLET:valve0","342":"pressure:INLET:valve0","343":"pressure:INLET:valve0","344":"pressure:INLET:valve0","345":"pressure:INLET:valve0","346":"pressure:INLET:valve0","347":"pressure:INLET:valve0","348":"pressure:INLET:valve0","349":"pressure:INLET:valve0","350":"pressure:INLET:valve0","351":"pressure:INLET:valve0","352":"pressure:INLET:valve0","353":"pressure:INLET:valve0","354":"pressure:INLET:valve0","355":"pressure:INLET:valve0","356":"pressure:INLET:valve0","357":"pressure:INLET:valve0","358":"pressure:INLET:valve0","359":"pressure:INLET:valve0","360":"pressure:INLET:valve0","361":"pressure:INLET:valve0","362":"pressure:INLET:valve0","363":"pressure:INLET:valve0","364":"pressure:INLET:valve0","365":"pressure:INLET:valve0","366":"pressure:INLET:valve0","367":"pressure:INLET:valve0","368":"pressure:INLET:valve0","369":"pressure:INLET:valve0","370":"pressure:INLET:valve0","371":"pressure:INLET:valve0","372":"pressure:INLET:valve0","373":"pressure:INLET:valve0","374":"pressure:INLET:valve0","375":"pressure:INLET:valve0","376":"pressure:INLET:valve0","377":"pressure:INLET:valve0","378":"pressure:INLET:valve0","379":"pressure:INLET:valve0","380":"pressure:INLET:valve0","381":"pressure:INLET:valve0","382":"pressure:INLET:valve0","383":"pressure:INLET:valve0","384":"pressure:INLET:valve0","385":"pressure:INLET:valve0","386":"pressure:INLET:valve0","387":"pressure:INLET:valve0","388":"pressure:INLET:valve0","389":"pressure:INLET:valve0","390":"pressure:INLET:valve0","391":"pressure:INLET:valve0","392":"pressure:INLET:valve0","393":"pressure:INLET:valve0","394":"pressure:INLET:valve0","395":"pressure:INLET:valve0","396":"pressure:INLET:valve0","397":"pressure:INLET:valve0","398":"pressure:INLET:valve0","399":"pressure:INLET:valve0","400":"pressure:INLET:valve0","401":"pressure:INLET:valve0","402":"pressure:INLET:valve0","403":"pressure:INLET:valve0","404":"flow:valve0:ventricle","405":"flow:valve0:ventricle","406":"flow:valve0:ventricle","407":"flow:valve0:ventricle","408":"flow:valve0:ventricle","409":"flow:valve0:ventricle","410":"flow:valve0:ventricle","411":"flow:valve0:ventricle","412":"flow:valve0:ventricle","413":"flow:valve0:ventricle","414":"flow:valve0:ventricle","415":"flow:valve0:ventricle","416":"flow:valve0:ventricle","417":"flow:valve0:ventricle","418":"flow:valve0:ventricle","419":"flow:valve0:ventricle","420":"flow:valve0:ventricle","421":"flow:valve0:ventricle","422":"flow:valve0:ventricle","423":"flow:valve0:ventricle","424":"flow:valve0:ventricle","425":"flow:valve0:ventricle","426":"flow:valve0:ventricle","427":"flow:valve0:ventricle","428":"flow:valve0:ventricle","429":"flow:valve0:ventricle","430":"flow:valve0:ventricle","431":"flow:valve0:ventricle","432":"flow:valve0:ventricle","433":"flow:valve0:ventricle","434":"flow:valve0:ventricle","435":"flow:valve0:ventricle","436":"flow:valve0:ventricle","437":"flow:valve0:ventricle","438":"flow:valve0:ventricle","439":"flow:valve0:ventricle","440":"flow:valve0:ventricle","441":"flow:valve0:ventricle","442":"flow:valve0:ventricle","443":"flow:valve0:ventricle","444":"flow:valve0:ventricle","445":"flow:valve0:ventricle","446":"flow:valve0:ventricle","447":"flow:valve0:ventricle","448":"flow:valve0:ventricle","449":"flow:valve0:ventricle","450":"flow:valve0:ventricle","451":"flow:valve0:ventricle","452":"flow:valve0:ventricle","453":"flow:valve0:ventricle","454":"flow:valve0:ventricle","455":"flow:valve0:ventricle","456":"flow:valve0:ventricle","457":"flow:valve0:ventricle","458":"flow:valve0:ventricle","459":"flow:valve0:ventricle","460":"flow:valve0:ventricle","461":"flow:valve0:ventricle","462":"flow:valve0:ventricle","463":"flow:valve0:ventricle","464":"flow:valve0:ventricle","465":"flow:valve0:ventricle","466":"flow:valve0:ventricle","467":"flow:valve0:ventricle","468":"flow:valve0:ventricle","469":"flow:valve0:ventricle","470":"flow:valve0:ventricle","471":"flow:valve0:ventricle","472":"flow:valve0:ventricle","473":"flow:valve0:ventricle","474":"flow:valve0:ventricle","475":"flow:valve0:ventricle","476":"flow:valve0:ventricle","477":"flow:valve0:ventricle","478":"flow:valve0:ventricle","479":"flow:valve0:ventricle","480":"flow:valve0:ventricle","481":"flow:valve0:ventricle","482":"flow:valve0:ventricle","483":"flow:valve0:ventricle","484":"flow:valve0:ventricle","485":"flow:valve0:ventricle","486":"flow:valve0:ventricle","487":"flow:valve0:ventricle","488":"flow:valve0:ventricle","489":"flow:valve0:ventricle","490":"flow:valve0:ventricle","491":"flow:valve0:ventricle","492":"flow:valve0:ventricle","493":"flow:valve0:ventricle","494":"flow:valve0:ventricle","495":"flow:valve0:ventricle","496":"flow:valve0:ventricle","497":"flow:valve0:ventricle","498":"flow:valve0:ventricle","499":"flow:valve0:ventricle","500":"flow:valve0:ventricle","501":"flow:valve0:ventricle","502":"flow:valve0:ventricle","503":"flow:valve0:ventricle","504":"flow:valve0:ventricle","505":"pressure:valve0:ventricle","506":"pressure:valve0:ventricle","507":"pressure:valve0:ventricle","508":"pressure:valve0:ventricle","509":"pressure:valve0:ventricle","510":"pressure:valve0:ventricle","511":"pressure:valve0:ventricle","512":"pressure:valve0:ventricle","513":"pressure:valve0:ventricle","514":"pressure:valve0:ventricle","515":"pressure:valve0:ventricle","516":"pressure:valve0:ventricle","517":"pressure:valve0:ventricle","518":"pressure:valve0:ventricle","519":"pressure:valve0:ventricle","520":"pressure:valve0:ventricle","521":"pressure:valve0:ventricle","522":"pressure:valve0:ventricle","523":"pressure:valve0:ventricle","524":"pressure:valve0:ventricle","525":"pressure:valve0:ventricle","526":"pressure:valve0:ventricle","527":"pressure:valve0:ventricle","528":"pressure:valve0:ventricle","529":"pressure:valve0:ventricle","530":"pressure:valve0:ventricle","531":"pressure:valve0:ventricle","532":"pressure:valve0:ventricle","533":"pressure:valve0:ventricle","534":"pressure:valve0:ventricle","535":"pressure:valve0:ventricle","536":"pressure:valve0:ventricle","537":"pressure:valve0:ventricle","538":"pressure:valve0:ventricle","539":"pressure:valve0:ventricle","540":"pressure:valve0:ventricle","541":"pressure:valve0:ventricle","542":"pressure:valve0:ventricle","543":"pressure:valve0:ventricle","544":"pressure:valve0:ventricle","545":"pressure:valve0:ventricle","546":"pressure:valve0:ventricle","547":"pressure:valve0:ventricle","548":"pressure:valve0:ventricle","549":"pressure:valve0:ventricle","550":"pressure:valve0:ventricle","551":"pressure:valve0:ventricle","552":"pressure:valve0:ventricle","553":"pressure:valve0:ventricle","554":"pressure:valve0:ventricle","555":"pressure:valve0:ventricle","556":"pressure:valve0:ventricle","557":"pressure:valve0:ventricle","558":"pressure:valve0:ventricle","559":"pressure:valve0:ventricle","560":"pressure:valve0:ventricle","561":"pressure:valve0:ventricle","562":"pressure:valve0:ventricle","563":"pressure:valve0:ventricle","564":"pressure:valve0:ventricle","565":"pressure:valve0:ventricle","566":"pressure:valve0:ventricle","567":"pressure:valve0:ventricle","568":"pressure:valve0:ventricle","569":"pressure:valve0:ventricle","570":"pressure:valve0:ventricle","571":"pressure:valve0:ventricle","572":"pressure:valve0:ventricle","573":"pressure:valve0:ventricle","574":"pressure:valve0:ventricle","575":"pressure:valve0:ventricle","576":"pressure:valve0:ventricle","577":"pressure:valve0:ventricle","578":"pressure:valve0:ventricle","579":"pressure:valve0:ventricle","580":"pressure:valve0:ventricle","581":"pressure:valve0:ventricle","582":"pressure:valve0:ventricle","583":"pressure:valve0:ventricle","584":"pressure:valve0:ventricle","585":"pressure:valve0:ventricle","586":"pressure:valve0:ventricle","587":"pressure:valve0:ventricle","588":"pressure:valve0:ventricle","589":"pressure:valve0:ventricle","590":"pressure:valve0:ventricle","591":"pressure:valve0:ventricle","592":"pressure:valve0:ventricle","593":"pressure:valve0:ventricle","594":"pressure:valve0:ventricle","595":"pressure:valve0:ventricle","596":"pressure:valve0:ventricle","597":"pressure:valve0:ventricle","598":"pressure:valve0:ventricle","599":"pressure:valve0:ventricle","600":"pressure:valve0:ventricle","601":"pressure:valve0:ventricle","602":"pressure:valve0:ventricle","603":"pressure:valve0:ventricle","604":"pressure:valve0:ventricle","605":"pressure:valve0:ventricle","606":"flow:ventricle:valve1","607":"flow:ventricle:valve1","608":"flow:ventricle:valve1","609":"flow:ventricle:valve1","610":"flow:ventricle:valve1","611":"flow:ventricle:valve1","612":"flow:ventricle:valve1","613":"flow:ventricle:valve1","614":"flow:ventricle:valve1","615":"flow:ventricle:valve1","616":"flow:ventricle:valve1","617":"flow:ventricle:valve1","618":"flow:ventricle:valve1","619":"flow:ventricle:valve1","620":"flow:ventricle:valve1","621":"flow:ventricle:valve1","622":"flow:ventricle:valve1","623":"flow:ventricle:valve1","624":"flow:ventricle:valve1","625":"flow:ventricle:valve1","626":"flow:ventricle:valve1","627":"flow:ventricle:valve1","628":"flow:ventricle:valve1","629":"flow:ventricle:valve1","630":"flow:ventricle:valve1","631":"flow:ventricle:valve1","632":"flow:ventricle:valve1","633":"flow:ventricle:valve1","634":"flow:ventricle:valve1","635":"flow:ventricle:valve1","636":"flow:ventricle:valve1","637":"flow:ventricle:valve1","638":"flow:ventricle:valve1","639":"flow:ventricle:valve1","640":"flow:ventricle:valve1","641":"flow:ventricle:valve1","642":"flow:ventricle:valve1","643":"flow:ventricle:valve1","644":"flow:ventricle:valve1","645":"flow:ventricle:valve1","646":"flow:ventricle:valve1","647":"flow:ventricle:valve1","648":"flow:ventricle:valve1","649":"flow:ventricle:valve1","650":"flow:ventricle:valve1","651":"flow:ventricle:valve1","652":"flow:ventricle:valve1","653":"flow:ventricle:valve1","654":"flow:ventricle:valve1","655":"flow:ventricle:valve1","656":"flow:ventricle:valve1","657":"flow:ventricle:valve1","658":"flow:ventricle:valve1","659":"flow:ventricle:valve1","660":"flow:ventricle:valve1","661":"flow:ventricle:valve1","662":"flow:ventricle:valve1","663":"flow:ventricle:valve1","664":"flow:ventricle:valve1","665":"flow:ventricle:valve1","666":"flow:ventricle:valve1","667":"flow:ventricle:valve1","668":"flow:ventricle:valve1","669":"flow:ventricle:valve1","670":"flow:ventricle:valve1","671":"flow:ventricle:valve1","672":"flow:ventricle:valve1","673":"flow:ventricle:valve1","674":"flow:ventricle:valve1","675":"flow:ventricle:valve1","676":"flow:ventricle:valve1","677":"flow:ventricle:valve1","678":"flow:ventricle:valve1","679":"flow:ventricle:valve1","680":"flow:ventricle:valve1","681":"flow:ventricle:valve1","682":"flow:ventricle:valve1","683":"flow:ventricle:valve1","684":"flow:ventricle:valve1","685":"flow:ventricle:valve1","686":"flow:ventricle:valve1","687":"flow:ventricle:valve1","688":"flow:ventricle:valve1","689":"flow:ventricle:valve1","690":"flow:ventricle:valve1","691":"flow:ventricle:valve1","692":"flow:ventricle:valve1","693":"flow:ventricle:valve1","694":"flow:ventricle:valve1","695":"flow:ventricle:valve1","696":"flow:ventricle:valve1","697":"flow:ventricle:valve1","698":"flow:ventricle:valve1","699":"flow:ventricle:valve1","700":"flow:ventricle:valve1","701":"flow:ventricle:valve1","702":"flow:ventricle:valve1","703":"flow:ventricle:valve1","704":"flow:ventricle:valve1","705":"flow:ventricle:valve1","706":"flow:ventricle:valve1","707":"pressure:ventricle:valve1","708":"pressure:ventricle:valve1","709":"pressure:ventricle:valve1","710":"pressure:ventricle:valve1","711":"pressure:ventricle:valve1","712":"pressure:ventricle:valve1","713":"pressure:ventricle:valve1","714":"pressure:ventricle:valve1","715":"pressure:ventricle:valve1","716":"pressure:ventricle:valve1","717":"pressure:ventricle:valve1","718":"pressure:ventricle:valve1","719":"pressure:ventricle:valve1","720":"pressure:ventricle:valve1","721":"pressure:ventricle:valve1","722":"pressure:ventricle:valve1","723":"pressure:ventricle:valve1","724":"pressure:ventricle:valve1","725":"pressure:ventricle:valve1","726":"pressure:ventricle:valve1","727":"pressure:ventricle:valve1","728":"pressure:ventricle:valve1","729":"pressure:ventricle:valve1","730":"pressure:ventricle:valve1","731":"pressure:ventricle:valve1","732":"pressure:ventricle:valve1","733":"pressure:ventricle:valve1","734":"pressure:ventricle:valve1","735":"pressure:ventricle:valve1","736":"pressure:ventricle:valve1","737":"pressure:ventricle:valve1","738":"pressure:ventricle:valve1","739":"pressure:ventricle:valve1","740":"pressure:ventricle:valve1","741":"pressure:ventricle:valve1","742":"pressure:ventricle:valve1","743":"pressure:ventricle:valve1","744":"pressure:ventricle:valve1","745":"pressure:ventricle:valve1","746":"pressure:ventricle:valve1","747":"pressure:ventricle:valve1","748":"pressure:ventricle:valve1","749":"pressure:ventricle:valve1","750":"pressure:ventricle:valve1","751":"pressure:ventricle:valve1","752":"pressure:ventricle:valve1","753":"pressure:ventricle:valve1","754":"pressure:ventricle:valve1","755":"pressure:ventricle:valve1","756":"pressure:ventricle:valve1","757":"pressure:ventricle:valve1","758":"pressure:ventricle:valve1","759":"pressure:ventricle:valve1","760":"pressure:ventricle:valve1","761":"pressure:ventricle:valve1","762":"pressure:ventricle:valve1","763":"pressure:ventricle:valve1","764":"pressure:ventricle:valve1","765":"pressure:ventricle:valve1","766":"pressure:ventricle:valve1","767":"pressure:ventricle:valve1","768":"pressure:ventricle:valve1","769":"pressure:ventricle:valve1","770":"pressure:ventricle:valve1","771":"pressure:ventricle:valve1","772":"pressure:ventricle:valve1","773":"pressure:ventricle:valve1","774":"pressure:ventricle:valve1","775":"pressure:ventricle:valve1","776":"pressure:ventricle:valve1","777":"pressure:ventricle:valve1","778":"pressure:ventricle:valve1","779":"pressure:ventricle:valve1","780":"pressure:ventricle:valve1","781":"pressure:ventricle:valve1","782":"pressure:ventricle:valve1","783":"pressure:ventricle:valve1","784":"pressure:ventricle:valve1","785":"pressure:ventricle:valve1","786":"pressure:ventricle:valve1","787":"pressure:ventricle:valve1","788":"pressure:ventricle:valve1","789":"pressure:ventricle:valve1","790":"pressure:ventricle:valve1","791":"pressure:ventricle:valve1","792":"pressure:ventricle:valve1","793":"pressure:ventricle:valve1","794":"pressure:ventricle:valve1","795":"pressure:ventricle:valve1","796":"pressure:ventricle:valve1","797":"pressure:ventricle:valve1","798":"pressure:ventricle:valve1","799":"pressure:ventricle:valve1","800":"pressure:ventricle:valve1","801":"pressure:ventricle:valve1","802":"pressure:ventricle:valve1","803":"pressure:ventricle:valve1","804":"pressure:ventricle:valve1","805":"pressure:ventricle:valve1","806":"pressure:ventricle:valve1","807":"pressure:ventricle:valve1","808":"flow:valve1:vessel","809":"flow:valve1:vessel","810":"flow:valve1:vessel","811":"flow:valve1:vessel","812":"flow:valve1:vessel","813":"flow:valve1:vessel","814":"flow:valve1:vessel","815":"flow:valve1:vessel","816":"flow:valve1:vessel","817":"flow:valve1:vessel","818":"flow:valve1:vessel","819":"flow:valve1:vessel","820":"flow:valve1:vessel","821":"flow:valve1:vessel","822":"flow:valve1:vessel","823":"flow:valve1:vessel","824":"flow:valve1:vessel","825":"flow:valve1:vessel","826":"flow:valve1:vessel","827":"flow:valve1:vessel","828":"flow:valve1:vessel","829":"flow:valve1:vessel","830":"flow:valve1:vessel","831":"flow:valve1:vessel","832":"flow:valve1:vessel","833":"flow:valve1:vessel","834":"flow:valve1:vessel","835":"flow:valve1:vessel","836":"flow:valve1:vessel","837":"flow:valve1:vessel","838":"flow:valve1:vessel","839":"flow:valve1:vessel","840":"flow:valve1:vessel","841":"flow:valve1:vessel","842":"flow:valve1:vessel","843":"flow:valve1:vessel","844":"flow:valve1:vessel","845":"flow:valve1:vessel","846":"flow:valve1:vessel","847":"flow:valve1:vessel","848":"flow:valve1:vessel","849":"flow:valve1:vessel","850":"flow:valve1:vessel","851":"flow:valve1:vessel","852":"flow:valve1:vessel","853":"flow:valve1:vessel","854":"flow:valve1:vessel","855":"flow:valve1:vessel","856":"flow:valve1:vessel","857":"flow:valve1:vessel","858":"flow:valve1:vessel","859":"flow:valve1:vessel","860":"flow:valve1:vessel","861":"flow:valve1:vessel","862":"flow:valve1:vessel","863":"flow:valve1:vessel","864":"flow:valve1:vessel","865":"flow:valve1:vessel","866":"flow:valve1:vessel","867":"flow:valve1:vessel","868":"flow:valve1:vessel","869":"flow:valve1:vessel","870":"flow:valve1:vessel","871":"flow:valve1:vessel","872":"flow:valve1:vessel","873":"flow:valve1:vessel","874":"flow:valve1:vessel","875":"flow:valve1:vessel","876":"flow:valve1:vessel","877":"flow:valve1:vessel","878":"flow:valve1:vessel","879":"flow:valve1:vessel","880":"flow:valve1:vessel","881":"flow:valve1:vessel","882":"flow:valve1:vessel","883":"flow:valve1:vessel","884":"flow:valve1:vessel","885":"flow:valve1:vessel","886":"flow:valve1:vessel","887":"flow:valve1:vessel","888":"flow:valve1:vessel","889":"flow:valve1:vessel","890":"flow:valve1:vessel","891":"flow:valve1:vessel","892":"flow:valve1:vessel","893":"flow:valve1:vessel","894":"flow:valve1:vessel","895":"flow:valve1:vessel","896":"flow:valve1:vessel","897":"flow:valve1:vessel","898":"flow:valve1:vessel","899":"flow:valve1:vessel","900":"flow:valve1:vessel","901":"flow:valve1:vessel","902":"flow:valve1:vessel","903":"flow:valve1:vessel","904":"flow:valve1:vessel","905":"flow:valve1:vessel","906":"flow:valve1:vessel","907":"flow:valve1:vessel","908":"flow:valve1:vessel","909":"pressure:valve1:vessel","910":"pressure:valve1:vessel","911":"pressure:valve1:vessel","912":"pressure:valve1:vessel","913":"pressure:valve1:vessel","914":"pressure:valve1:vessel","915":"pressure:valve1:vessel","916":"pressure:valve1:vessel","917":"pressure:valve1:vessel","918":"pressure:valve1:vessel","919":"pressure:valve1:vessel","920":"pressure:valve1:vessel","921":"pressure:valve1:vessel","922":"pressure:valve1:vessel","923":"pressure:valve1:vessel","924":"pressure:valve1:vessel","925":"pressure:valve1:vessel","926":"pressure:valve1:vessel","927":"pressure:valve1:vessel","928":"pressure:valve1:vessel","929":"pressure:valve1:vessel","930":"pressure:valve1:vessel","931":"pressure:valve1:vessel","932":"pressure:valve1:vessel","933":"pressure:valve1:vessel","934":"pressure:valve1:vessel","935":"pressure:valve1:vessel","936":"pressure:valve1:vessel","937":"pressure:valve1:vessel","938":"pressure:valve1:vessel","939":"pressure:valve1:vessel","940":"pressure:valve1:vessel","941":"pressure:valve1:vessel","942":"pressure:valve1:vessel","943":"pressure:valve1:vessel","944":"pressure:valve1:vessel","945":"pressure:valve1:vessel","946":"pressure:valve1:vessel","947":"pressure:valve1:vessel","948":"pressure:valve1:vessel","949":"pressure:valve1:vessel","950":"pressure:valve1:vessel","951":"pressure:valve1:vessel","952":"pressure:valve1:vessel","953":"pressure:valve1:vessel","954":"pressure:valve1:vessel","955":"pressure:valve1:vessel","956":"pressure:valve1:vessel","957":"pressure:valve1:vessel","958":"pressure:valve1:vessel","959":"pressure:valve1:vessel","960":"pressure:valve1:vessel","961":"pressure:valve1:vessel","962":"pressure:valve1:vessel","963":"pressure:valve1:vessel","964":"pressure:valve1:vessel","965":"pressure:valve1:vessel","966":"pressure:valve1:vessel","967":"pressure:valve1:vessel","968":"pressure:valve1:vessel","969":"pressure:valve1:vessel","970":"pressure:valve1:vessel","971":"pressure:valve1:vessel","972":"pressure:valve1:vessel","973":"pressure:valve1:vessel","974":"pressure:valve1:vessel","975":"pressure:valve1:vessel","976":"pressure:valve1:vessel","977":"pressure:valve1:vessel","978":"pressure:valve1:vessel","979":"pressure:valve1:vessel","980":"pressure:valve1:vessel","981":"pressure:valve1:vessel","982":"pressure:valve1:vessel","983":"pressure:valve1:vessel","984":"pressure:valve1:vessel","985":"pressure:valve1:vessel","986":"pressure:valve1:vessel","987":"pressure:valve1:vessel","988":"pressure:valve1:vessel","989":"pressure:valve1:vessel","990":"pressure:valve1:vessel","991":"pressure:valve1:vessel","992":"pressure:valve1:vessel","993":"pressure:valve1:vessel","994":"pressure:valve1:vessel","995":"pressure:valve1:vessel","996":"pressure:valve1:vessel","997":"pressure:valve1:vessel","998":"pressure:valve1:vessel","999":"pressure:valve1:vessel","1000":"pressure:valve1:vessel","1001":"pressure:valve1:vessel","1002":"pressure:valve1:vessel","1003":"pressure:valve1:vessel","1004":"pressure:valve1:vessel","1005":"pressure:valve1:vessel","1006":"pressure:valve1:vessel","1007":"pressure:valve1:vessel","1008":"pressure:valve1:vessel","1009":"pressure:valve1:vessel","1010":"Vc:ventricle","1011":"Vc:ventricle","1012":"Vc:ventricle","1013":"Vc:ventricle","1014":"Vc:ventricle","1015":"Vc:ventricle","1016":"Vc:ventricle","1017":"Vc:ventricle","1018":"Vc:ventricle","1019":"Vc:ventricle","1020":"Vc:ventricle","1021":"Vc:ventricle","1022":"Vc:ventricle","1023":"Vc:ventricle","1024":"Vc:ventricle","1025":"Vc:ventricle","1026":"Vc:ventricle","1027":"Vc:ventricle","1028":"Vc:ventricle","1029":"Vc:ventricle","1030":"Vc:ventricle","1031":"Vc:ventricle","1032":"Vc:ventricle","1033":"Vc:ventricle","1034":"Vc:ventricle","1035":"Vc:ventricle","1036":"Vc:ventricle","1037":"Vc:ventricle","1038":"Vc:ventricle","1039":"Vc:ventricle","1040":"Vc:ventricle","1041":"Vc:ventricle","1042":"Vc:ventricle","1043":"Vc:ventricle","1044":"Vc:ventricle","1045":"Vc:ventricle","1046":"Vc:ventricle","1047":"Vc:ventricle","1048":"Vc:ventricle","1049":"Vc:ventricle","1050":"Vc:ventricle","1051":"Vc:ventricle","1052":"Vc:ventricle","1053":"Vc:ventricle","1054":"Vc:ventricle","1055":"Vc:ventricle","1056":"Vc:ventricle","1057":"Vc:ventricle","1058":"Vc:ventricle","1059":"Vc:ventricle","1060":"Vc:ventricle","1061":"Vc:ventricle","1062":"Vc:ventricle","1063":"Vc:ventricle","1064":"Vc:ventricle","1065":"Vc:ventricle","1066":"Vc:ventricle","1067":"Vc:ventricle","1068":"Vc:ventricle","1069":"Vc:ventricle","1070":"Vc:ventricle","1071":"Vc:ventricle","1072":"Vc:ventricle","1073":"Vc:ventricle","1074":"Vc:ventricle","1075":"Vc:ventricle","1076":"Vc:ventricle","1077":"Vc:ventricle","1078":"Vc:ventricle","1079":"Vc:ventricle","1080":"Vc:ventricle","1081":"Vc:ventricle","1082":"Vc:ventricle","1083":"Vc:ventricle","1084":"Vc:ventricle","1085":"Vc:ventricle","1086":"Vc:ventricle","1087":"Vc:ventricle","1088":"Vc:ventricle","1089":"Vc:ventricle","1090":"Vc:ventricle","1091":"Vc:ventricle","1092":"Vc:ventricle","1093":"Vc:ventricle","1094":"Vc:ventricle","1095":"Vc:ventricle","1096":"Vc:ventricle","1097":"Vc:ventricle","1098":"Vc:ventricle","1099":"Vc:ventricle","1100":"Vc:ventricle","1101":"Vc:ventricle","1102":"Vc:ventricle","1103":"Vc:ventricle","1104":"Vc:ventricle","1105":"Vc:ventricle","1106":"Vc:ventricle","1107":"Vc:ventricle","1108":"Vc:ventricle","1109":"Vc:ventricle","1110":"Vc:ventricle"},"time":{"0":0.0,"1":0.01,"2":0.02,"3":0.03,"4":0.04,"5":0.05,"6":0.06,"7":0.07,"8":0.08,"9":0.09,"10":0.1,"11":0.11,"12":0.12,"13":0.13,"14":0.14,"15":0.15,"16":0.16,"17":0.17,"18":0.18,"19":0.19,"20":0.2,"21":0.21,"22":0.22,"23":0.23,"24":0.24,"25":0.25,"26":0.26,"27":0.27,"28":0.28,"29":0.29,"30":0.3,"31":0.31,"32":0.32,"33":0.33,"34":0.34,"35":0.35,"36":0.36,"37":0.37,"38":0.38,"39":0.39,"40":0.4,"41":0.41,"42":0.42,"43":0.43,"44":0.44,"45":0.45,"46":0.46,"47":0.47,"48":0.48,"49":0.49,"50":0.5,"51":0.51,"52":0.52,"53":0.53,"54":0.54,"55":0.55,"56":0.56,"57":0.57,"58":0.58,"59":0.59,"60":0.6,"61":0.61,"62":0.62,"63":0.63,"64":0.64,"65":0.65,"66":0.66,"67":0.67,"68":0.68,"69":0.69,"70":0.7,"71":0.71,"72":0.72,"73":0.73,"74":0.74,"75":0.75,"76":0.76,"77":0.77,"78":0.78,"79":0.79,"80":0.8,"81":0.81,"82":0.82,"83":0.83,"84":0.84,"85":0.85,"86":0.86,"87":0.87,"88":0.88,"89":0.89,"90":0.9,"91":0.91,"92":0.92,"93":0.93,"94":0.94,"95":0.95,"96":0.96,"97":0.97,"98":0.98,"99":0.99,"100":1.0,"101":0.0,"102":0.01,"103":0.02,"104":0.03,"105":0.04,"106":0.05,"107":0.06,"108":0.07,"109":0.08,"110":0.09,"111":0.1,"112":0.11,"113":0.12,"114":0.13,"115":0.14,"116":0.15,"117":0.16,"118":0.17,"119":0.18,"120":0.19,"121":0.2,"122":0.21,"123":0.22,"124":0.23,"125":0.24,"126":0.25,"127":0.26,"128":0.27,"129":0.28,"130":0.29,"131":0.3,"132":0.31,"133":0.32,"134":0.33,"135":0.34,"136":0.35,"137":0.36,"138":0.37,"139":0.38,"140":0.39,"141":0.4,"142":0.41,"143":0.42,"144":0.43,"145":0.44,"146":0.45,"147":0.46,"148":0.47,"149":0.48,"150":0.49,"151":0.5,"152":0.51,"153":0.52,"154":0.53,"155":0.54,"156":0.55,"157":0.56,"158":0.57,"159":0.58,"160":0.59,"161":0.6,"162":0.61,"163":0.62,"164":0.63,"165":0.64,"166":0.65,"167":0.66,"168":0.67,"169":0.68,"170":0.69,"171":0.7,"172":0.71,"173":0.72,"174":0.73,"175":0.74,"176":0.75,"177":0.76,"178":0.77,"179":0.78,"180":0.79,"181":0.8,"182":0.81,"183":0.82,"184":0.83,"185":0.84,"186":0.85,"187":0.86,"188":0.87,"189":0.88,"190":0.89,"191":0.9,"192":0.91,"193":0.92,"194":0.93,"195":0.94,"196":0.95,"197":0.96,"198":0.97,"199":0.98,"200":0.99,"201":1.0,"202":0.0,"203":0.01,"204":0.02,"205":0.03,"206":0.04,"207":0.05,"208":0.06,"209":0.07,"210":0.08,"211":0.09,"212":0.1,"213":0.11,"214":0.12,"215":0.13,"216":0.14,"217":0.15,"218":0.16,"219":0.17,"220":0.18,"221":0.19,"222":0.2,"223":0.21,"224":0.22,"225":0.23,"226":0.24,"227":0.25,"228":0.26,"229":0.27,"230":0.28,"231":0.29,"232":0.3,"233":0.31,"234":0.32,"235":0.33,"236":0.34,"237":0.35,"238":0.36,"239":0.37,"240":0.38,"241":0.39,"242":0.4,"243":0.41,"244":0.42,"245":0.43,"246":0.44,"247":0.45,"248":0.46,"249":0.47,"250":0.48,"251":0.49,"252":0.5,"253":0.51,"254":0.52,"255":0.53,"256":0.54,"257":0.55,"258":0.56,"259":0.57,"260":0.58,"261":0.59,"262":0.6,"263":0.61,"264":0.62,"265":0.63,"266":0.64,"267":0.65,"268":0.66,"269":0.67,"270":0.68,"271":0.69,"272":0.7,"273":0.71,"274":0.72,"275":0.73,"276":0.74,"277":0.75,"278":0.76,"279":0.77,"280":0.78,"281":0.79,"282":0.8,"283":0.81,"284":0.82,"285":0.83,"286":0.84,"287":0.85,"288":0.86,"289":0.87,"290":0.88,"291":0.89,"292":0.9,"293":0.91,"294":0.92,"295":0.93,"296":0.94,"297":0.95,"298":0.96,"299":0.97,"300":0.98,"301":0.99,"302":1.0,"303":0.0,"304":0.01,"305":0.02,"306":0.03,"307":0.04,"308":0.05,"309":0.06,"310":0.07,"311":0.08,"312":0.09,"313":0.1,"314":0.11,"315":0.12,"316":0.13,"317":0.14,"318":0.15,"319":0.16,"320":0.17,"321":0.18,"322":0.19,"323":0.2,"324":0.21,"325":0.22,"326":0.23,"327":0.24,"328":0.25,"329":0.26,"330":0.27,"331":0.28,"332":0.29,"333":0.3,"334":0.31,"335":0.32,"336":0.33,"337":0.34,"338":0.35,"339":0.36,"340":0.37,"341":0.38,"342":0.39,"343":0.4,"344":0.41,"345":0.42,"346":0.43,"347":0.44,"348":0.45,"349":0.46,"350":0.47,"351":0.48,"352":0.49,"353":0.5,"354":0.51,"355":0.52,"356":0.53,"357":0.54,"358":0.55,"359":0.56,"360":0.57,"361":0.58,"362":0.59,"363":0.6,"364":0.61,"365":0.62,"366":0.63,"367":0.64,"368":0.65,"369":0.66,"370":0.67,"371":0.68,"372":0.69,"373":0.7,"374":0.71,"375":0.72,"376":0.73,"377":0.74,"378":0.75,"379":0.76,"380":0.77,"381":0.78,"382":0.79,"383":0.8,"384":0.81,"385":0.82,"386":0.83,"387":0.84,"388":0.85,"389":0.86,"390":0.87,"391":0.88,"392":0.89,"393":0.9,"394":0.91,"395":0.92,"396":0.93,"397":0.94,"398":0.95,"399":0.96,"400":0.97,"401":0.98,"402":0.99,"403":1.0,"404":0.0,"405":0.01,"406":0.02,"407":0.03,"408":0.04,"409":0.05,"410":0.06,"411":0.07,"412":0.08,"413":0.09,"414":0.1,"415":0.11,"416":0.12,"417":0.13,"418":0.14,"419":0.15,"420":0.16,"421":0.17,"422":0.18,"423":0.19,"424":0.2,"425":0.21,"426":0.22,"427":0.23,"428":0.24,"429":0.25,"430":0.26,"431":0.27,"432":0.28,"433":0.29,"434":0.3,"435":0.31,"436":0.32,"437":0.33,"438":0.34,"439":0.35,"440":0.36,"441":0.37,"442":0.38,"443":0.39,"444":0.4,"445":0.41,"446":0.42,"447":0.43,"448":0.44,"449":0.45,"450":0.46,"451":0.47,"452":0.48,"453":0.49,"454":0.5,"455":0.51,"456":0.52,"457":0.53,"458":0.54,"459":0.55,"460":0.56,"461":0.57,"462":0.58,"463":0.59,"464":0.6,"465":0.61,"466":0.62,"467":0.63,"468":0.64,"469":0.65,"470":0.66,"471":0.67,"472":0.68,"473":0.69,"474":0.7,"475":0.71,"476":0.72,"477":0.73,"478":0.74,"479":0.75,"480":0.76,"481":0.77,"482":0.78,"483":0.79,"484":0.8,"485":0.81,"486":0.82,"487":0.83,"488":0.84,"489":0.85,"490":0.86,"491":0.87,"492":0.88,"493":0.89,"494":0.9,"495":0.91,"496":0.92,"497":0.93,"498":0.94,"499":0.95,"500":0.96,"501":0.97,"502":0.98,"503":0.99,"504":1.0,"505":0.0,"506":0.01,"507":0.02,"508":0.03,"509":0.04,"510":0.05,"511":0.06,"512":0.07,"513":0.08,"514":0.09,"515":0.1,"516":0.11,"517":0.12,"518":0.13,"519":0.14,"520":0.15,"521":0.16,"522":0.17,"523":0.18,"524":0.19,"525":0.2,"526":0.21,"527":0.22,"528":0.23,"529":0.24,"530":0.25,"531":0.26,"532":0.27,"533":0.28,"534":0.29,"535":0.3,"536":0.31,"537":0.32,"538":0.33,"539":0.34,"540":0.35,"541":0.36,"542":0.37,"543":0.38,"544":0.39,"545":0.4,"546":0.41,"547":0.42,"548":0.43,"549":0.44,"550":0.45,"551":0.46,"552":0.47,"553":0.48,"554":0.49,"555":0.5,"556":0.51,"557":0.52,"558":0.53,"559":0.54,"560":0.55,"561":0.56,"562":0.57,"563":0.58,"564":0.59,"565":0.6,"566":0.61,"567":0.62,"568":0.63,"569":0.64,"570":0.65,"571":0.66,"572":0.67,"573":0.68,"574":0.69,"575":0.7,"576":0.71,"577":0.72,"578":0.73,"579":0.74,"580":0.75,"581":0.76,"582":0.77,"583":0.78,"584":0.79,"585":0.8,"586":0.81,"587":0.82,"588":0.83,"589":0.84,"590":0.85,"591":0.86,"592":0.87,"593":0.88,"594":0.89,"595":0.9,"596":0.91,"597":0.92,"598":0.93,"599":0.94,"600":0.95,"601":0.96,"602":0.97,"603":0.98,"604":0.99,"605":1.0,"606":0.0,"607":0.01,"608":0.02,"609":0.03,"610":0.04,"611":0.05,"612":0.06,"613":0.07,"614":0.08,"615":0.09,"616":0.1,"617":0.11,"618":0.12,"619":0.13,"620":0.14,"621":0.15,"622":0.16,"623":0.17,"624":0.18,"625":0.19,"626":0.2,"627":0.21,"628":0.22,"629":0.23,"630":0.24,"631":0.25,"632":0.26,"633":0.27,"634":0.28,"635":0.29,"636":0.3,"637":0.31,"638":0.32,"639":0.33,"640":0.34,"641":0.35,"642":0.36,"643":0.37,"644":0.38,"645":0.39,"646":0.4,"647":0.41,"648":0.42,"649":0.43,"650":0.44,"651":0.45,"652":0.46,"653":0.47,"654":0.48,"655":0.49,"656":0.5,"657":0.51,"658":0.52,"659":0.53,"660":0.54,"661":0.55,"662":0.56,"663":0.57,"664":0.58,"665":0.59,"666":0.6,"667":0.61,"668":0.62,"669":0.63,"670":0.64,"671":0.65,"672":0.66,"673":0.67,"674":0.68,"675":0.69,"676":0.7,"677":0.71,"678":0.72,"679":0.73,"680":0.74,"681":0.75,"682":0.76,"683":0.77,"684":0.78,"685":0.79,"686":0.8,"687":0.81,"688":0.82,"689":0.83,"690":0.84,"691":0.85,"692":0.86,"693":0.87,"694":0.88,"695":0.89,"696":0.9,"697":0.91,"698":0.92,"699":0.93,"700":0.94,"701":0.95,"702":0.96,"703":0.97,"704":0.98,"705":0.99,"706":1.0,"707":0.0,"708":0.01,"709":0.02,"710":0.03,"711":0.04,"712":0.05,"713":0.06,"714":0.07,"715":0.08,"716":0.09,"717":0.1,"718":0.11,"719":0.12,"720":0.13,"721":0.14,"722":0.15,"723":0.16,"724":0.17,"725":0.18,"726":0.19,"727":0.2,"728":0.21,"729":0.22,"730":0.23,"731":0.24,"732":0.25,"733":0.26,"734":0.27,"735":0.28,"736":0.29,"737":0.3,"738":0.31,"739":0.32,"740":0.33,"741":0.34,"742":0.35,"743":0.36,"744":0.37,"745":0.38,"746":0.39,"747":0.4,"748":0.41,"749":0.42,"750":0.43,"751":0.44,"752":0.45,"753":0.46,"754":0.47,"755":0.48,"756":0.49,"757":0.5,"758":0.51,"759":0.52,"760":0.53,"761":0.54,"762":0.55,"763":0.56,"764":0.57,"765":0.58,"766":0.59,"767":0.6,"768":0.61,"769":0.62,"770":0.63,"771":0.64,"772":0.65,"773":0.66,"774":0.67,"775":0.68,"776":0.69,"777":0.7,"778":0.71,"779":0.72,"780":0.73,"781":0.74,"782":0.75,"783":0.76,"784":0.77,"785":0.78,"786":0.79,"787":0.8,"788":0.81,"789":0.82,"790":0.83,"791":0.84,"792":0.85,"793":0.86,"794":0.87,"795":0.88,"796":0.89,"797":0.9,"798":0.91,"799":0.92,"800":0.93,"801":0.94,"802":0.95,"803":0.96,"804":0.97,"805":0.98,"806":0.99,"807":1.0,"808":0.0,"809":0.01,"810":0.02,"811":0.03,"812":0.04,"813":0.05,"814":0.06,"815":0.07,"816":0.08,"817":0.09,"818":0.1,"819":0.11,"820":0.12,"821":0.13,"822":0.14,"823":0.15,"824":0.16,"825":0.17,"826":0.18,"827":0.19,"828":0.2,"829":0.21,"830":0.22,"831":0.23,"832":0.24,"833":0.25,"834":0.26,"835":0.27,"836":0.28,"837":0.29,"838":0.3,"839":0.31,"840":0.32,"841":0.33,"842":0.34,"843":0.35,"844":0.36,"845":0.37,"846":0.38,"847":0.39,"848":0.4,"849":0.41,"850":0.42,"851":0.43,"852":0.44,"853":0.45,"854":0.46,"855":0.47,"856":0.48,"857":0.49,"858":0.5,"859":0.51,"860":0.52,"861":0.53,"862":0.54,"863":0.55,"864":0.56,"865":0.57,"866":0.58,"867":0.59,"868":0.6,"869":0.61,"870":0.62,"871":0.63,"872":0.64,"873":0.65,"874":0.66,"875":0.67,"876":0.68,"877":0.69,"878":0.7,"879":0.71,"880":0.72,"881":0.73,"882":0.74,"883":0.75,"884":0.76,"885":0.77,"886":0.78,"887":0.79,"888":0.8,"889":0.81,"890":0.82,"891":0.83,"892":0.84,"893":0.85,"894":0.86,"895":0.87,"896":0.88,"897":0.89,"898":0.9,"899":0.91,"900":0.92,"901":0.93,"902":0.94,"903":0.95,"904":0.96,"905":0.97,"906":0.98,"907":0.99,"908":1.0,"909":0.0,"910":0.01,"911":0.02,"912":0.03,"913":0.04,"914":0.05,"915":0.06,"916":0.07,"917":0.08,"918":0.09,"919":0.1,"920":0.11,"921":0.12,"922":0.13,"923":0.14,"924":0.15,"925":0.16,"926":0.17,"927":0.18,"928":0.19,"929":0.2,"930":0.21,"931":0.22,"932":0.23,"933":0.24,"934":0.25,"935":0.26,"936":0.27,"937":0.28,"938":0.29,"939":0.3,"940":0.31,"941":0.32,"942":0.33,"943":0.34,"944":0.35,"945":0.36,"946":0.37,"947":0.38,"948":0.39,"949":0.4,"950":0.41,"951":0.42,"952":0.43,"953":0.44,"954":0.45,"955":0.46,"956":0.47,"957":0.48,"958":0.49,"959":0.5,"960":0.51,"961":0.52,"962":0.53,"963":0.54,"964":0.55,"965":0.56,"966":0.57,"967":0.58,"968":0.59,"969":0.6,"970":0.61,"971":0.62,"972":0.63,"973":0.64,"974":0.65,"975":0.66,"976":0.67,"977":0.68,"978":0.69,"979":0.7,"980":0.71,"981":0.72,"982":0.73,"983":0.74,"984":0.75,"985":0.76,"986":0.77,"987":0.78,"988":0.79,"989":0.8,"990":0.81,"991":0.82,"992":0.83,"993":0.84,"994":0.85,"995":0.86,"996":0.87,"997":0.88,"998":0.89,"999":0.9,"1000":0.91,"1001":0.92,"1002":0.93,"1003":0.94,"1004":0.95,"1005":0.96,"1006":0.97,"1007":0.98,"1008":0.99,"1009":1.0,"1010":0.0,"1011":0.01,"1012":0.02,"1013":0.03,"1014":0.04,"1015":0.05,"1016":0.06,"1017":0.07,"1018":0.08,"1019":0.09,"1020":0.1,"1021":0.11,"1022":0.12,"1023":0.13,"1024":0.14,"1025":0.15,"1026":0.16,"1027":0.17,"1028":0.18,"1029":0.19,"1030":0.2,"1031":0.21,"1032":0.22,"1033":0.23,"1034":0.24,"1035":0.25,"1036":0.26,"1037":0.27,"1038":0.28,"1039":0.29,"1040":0.3,"1041":0.31,"1042":0.32,"1043":0.33,"1044":0.34,"1045":0.35,"1046":0.36,"1047":0.37,"1048":0.38,"1049":0.39,"1050":0.4,"1051":0.41,"1052":0.42,"1053":0.43,"1054":0.44,"1055":0.45,"1056":0.46,"1057":0.47,"1058":0.48,"1059":0.49,"1060":0.5,"1061":0.51,"1062":0.52,"1063":0.53,"1064":0.54,"1065":0.55,"1066":0.56,"1067":0.57,"1068":0.58,"1069":0.59,"1070":0.6,"1071":0.61,"1072":0.62,"1073":0.63,"1074":0.64,"1075":0.65,"1076":0.66,"1077":0.67,"1078":0.68,"1079":0.69,"1080":0.7,"1081":0.71,"1082":0.72,"1083":0.73,"1084":0.74,"1085":0.75,"1086":0.76,"1087":0.77,"1088":0.78,"1089":0.79,"1090":0.8,"1091":0.81,"1092":0.82,"1093":0.83,"1094":0.84,"1095":0.85,"1096":0.86,"1097":0.87,"1098":0.88,"1099":0.89,"1100":0.9,"1101":0.91,"1102":0.92,"1103":0.93,"1104":0.94,"1105":0.95,"1106":0.96,"1107":0.97,"1108":0.98,"1109":0.99,"1110":1.0},"y":{"0":-0.0005443474,"1":-0.0005468206,"2":-0.000549056,"3":-0.0005510765,"4":-0.0005529026,"5":-0.0005545531,"6":-0.0005560449,"7":-0.0005573932,"8":-0.0005586118,"9":-0.0005597132,"10":-0.0005607086,"11":-0.0005616083,"12":-0.0005624215,"13":-0.0005631564,"14":-0.0005638206,"15":-0.000564421,"16":-0.0005649636,"17":-0.0005654541,"18":-0.0005658973,"19":-0.000566298,"20":-0.0005666601,"21":-0.0005667351,"22":-0.0005654108,"23":-0.0005614257,"24":-0.0005537516,"25":-0.0005415844,"26":-0.0005243779,"27":-0.0005018665,"28":-0.0004740852,"29":-0.0004413802,"30":-0.0004044065,"31":0.0005556742,"32":0.0032342645,"33":0.00668777,"34":0.0099076358,"35":0.0123479087,"36":0.0136656086,"37":0.0136788233,"38":0.0125564416,"39":0.0113208963,"40":0.0102405385,"41":0.0092489092,"42":0.0083468584,"43":0.0075236448,"44":0.0067722258,"45":0.0060860958,"46":0.0054597391,"47":0.0048883817,"48":0.0043678919,"49":0.0038946655,"50":0.0034655304,"51":0.003077409,"52":0.0027266321,"53":0.002409586,"54":0.0021230312,"55":0.0018640344,"56":0.0016299455,"57":0.001418369,"58":0.0012271401,"59":0.0010543017,"60":0.0008980853,"61":0.0007568923,"62":0.000629278,"63":0.0005139364,"64":0.0004096873,"65":0.0003154639,"66":0.000230302,"67":0.0001533302,"68":0.0000837608,"69":0.000020882,"70":-0.0000359498,"71":-0.000087316,"72":-0.0001337423,"73":-0.0001757037,"74":-0.0002136297,"75":-0.0002479083,"76":-0.0002788903,"77":-0.0003068928,"78":-0.0003322022,"79":-0.0003550776,"80":-0.0003757531,"81":-0.0003944402,"82":-0.0004113301,"83":-0.0004265958,"84":-0.0004403933,"85":-0.0004528639,"86":-0.0004641352,"87":-0.0004743225,"88":-0.0004835301,"89":-0.0004918522,"90":-0.000499374,"91":-0.0005061724,"92":-0.000512317,"93":-0.0005178706,"94":-0.0005228902,"95":-0.000527427,"96":-0.0005315275,"97":-0.0005352337,"98":-0.0005385834,"99":-0.000541611,"100":-0.0005443474,"101":63.4556526345,"102":63.4531793686,"103":63.4509439586,"104":63.4489235299,"105":63.4470974076,"106":63.4454469051,"107":63.4439551329,"108":63.4426068306,"109":63.4413882104,"110":63.4402868104,"111":63.4392913625,"112":63.4383916766,"113":63.4375785371,"114":63.4368436103,"115":63.4361793655,"116":63.4355790022,"117":63.4350363767,"118":63.4345459363,"119":63.4341026623,"120":63.4337020187,"121":63.4333399057,"122":63.4332648702,"123":63.4345892235,"124":63.4385742726,"125":63.4462484436,"126":63.4584156323,"127":63.4756221259,"128":63.4981334886,"129":63.5259147522,"130":63.5586197639,"131":63.5955934548,"132":64.5556741554,"133":67.2342645371,"134":70.687769965,"135":73.9076358374,"136":76.3479087141,"137":77.6656086018,"138":77.6788233028,"139":76.5564416342,"140":75.3208962806,"141":74.2405384647,"142":73.2489091681,"143":72.3468583502,"144":71.5236448125,"145":70.7722258444,"146":70.0860958177,"147":69.4597391073,"148":68.8883817486,"149":68.3678918851,"150":67.894665482,"151":67.4655303673,"152":67.0774089508,"153":66.7266320953,"154":66.4095860177,"155":66.1230311811,"156":65.8640343667,"157":65.6299454697,"158":65.4183690469,"159":65.2271400656,"160":65.0543016981,"161":64.8980853075,"162":64.7568923477,"163":64.6292780056,"164":64.513936417,"165":64.4096873032,"166":64.3154638939,"167":64.2303020106,"168":64.1533302007,"169":64.0837608193,"170":64.0208819704,"171":63.9640502211,"172":63.9126840179,"173":63.8662577358,"174":63.8242962995,"175":63.7863703217,"176":63.75209171,"177":63.7211096947,"178":63.6931072402,"179":63.6677978,"180":63.6449223853,"181":63.6242469144,"182":63.6055598172,"183":63.5886698705,"184":63.5734042412,"185":63.5596067178,"186":63.5471361114,"187":63.5358648117,"188":63.5256774805,"189":63.5164698719,"190":63.5081477654,"191":63.5006260016,"192":63.4938276111,"193":63.4876830266,"194":63.4821293711,"195":63.4771098147,"196":63.4725729927,"197":63.4684724802,"198":63.4647663171,"199":63.4614165785,"200":63.4583889868,"201":63.455652561,"202":-0.0000636644,"203":-0.0000636303,"204":-0.0000595888,"205":-0.000049345,"206":-0.0000342823,"207":-0.000016435,"208":0.0000017864,"209":0.0188132749,"210":0.0293435117,"211":0.0360125609,"212":0.0349986442,"213":0.0278992596,"214":0.0149429683,"215":-0.0017552698,"216":0.0008566343,"217":-0.0004759667,"218":0.0001673517,"219":-0.000170519,"220":-0.0000088691,"221":-0.0000910644,"222":-0.0000499668,"223":-0.0000755051,"224":-0.0000887551,"225":-0.0001296603,"226":-0.0001767926,"227":-0.0002386772,"228":-0.0003080931,"229":-0.0003849181,"230":-0.0004647565,"231":-0.0005447477,"232":-0.0006208641,"233":-0.0006895373,"234":-0.0007471768,"235":-0.0007907701,"236":-0.0008179291,"237":-0.0008271618,"238":-0.0008179486,"239":-0.0007908057,"240":-0.0007472326,"241":-0.0006895972,"242":-0.0006209506,"243":-0.0005448031,"244":-0.0004648812,"245":-0.0003848962,"246":-0.0003083445,"247":-0.000238354,"248":-0.0001775859,"249":-0.0001281865,"250":-0.0000917819,"251":-0.0000694986,"252":-0.0000619953,"253":-0.0000644986,"254":-0.000063247,"255":-0.0000638728,"256":-0.0000635599,"257":-0.0000637164,"258":-0.0000636381,"259":-0.0000636773,"260":-0.0000636577,"261":-0.0000636675,"262":-0.0000636626,"263":-0.0000636651,"264":-0.0000636638,"265":-0.0000636644,"266":-0.0000636641,"267":-0.0000636643,"268":-0.0000636642,"269":-0.0000636643,"270":-0.0000636643,"271":-0.0000636643,"272":-0.0000636643,"273":-0.0000636643,"274":-0.0000636643,"275":-0.0000636643,"276":-0.0000636643,"277":-0.0000636643,"278":-0.0000636643,"279":-0.0000636643,"280":-0.0000636643,"281":-0.0000636643,"282":-0.0000636643,"283":-0.0000636643,"284":-0.0000636643,"285":-0.0000636643,"286":-0.0000636643,"287":-0.0000636643,"288":-0.0000636644,"289":-0.0000636644,"290":-0.0000636644,"291":-0.0000636644,"292":-0.0000636644,"293":-0.0000636644,"294":-0.0000636644,"295":-0.0000636644,"296":-0.0000636644,"297":-0.0000636644,"298":-0.0000636644,"299":-0.0000636644,"300":-0.0000636644,"301":-0.0000636644,"302":-0.0000636644,"303":-2.773431984e-38,"304":0.003414699,"305":0.4075651,"306":1.431949,"307":2.938218,"308":4.722943,"309":6.545085,"310":8.158555,"311":9.345445,"312":9.945458,"313":9.87756,"314":9.15092,"315":7.863676,"316":6.189676,"317":4.355004,"318":2.607442,"319":1.183009,"320":0.274081,"321":-0.0,"322":0.0,"323":-0.0,"324":0.0,"325":-0.0,"326":0.0,"327":-0.0,"328":0.0,"329":-5.238864897e-16,"330":2.619432449e-16,"331":-1.309716224e-16,"332":6.548581122e-17,"333":-3.274290561e-17,"334":1.63714528e-17,"335":-8.185726402e-18,"336":4.092863201e-18,"337":-2.046431601e-18,"338":1.0232158e-18,"339":-5.116079001e-19,"340":2.558039501e-19,"341":-1.27901975e-19,"342":6.395098752e-20,"343":-3.197549376e-20,"344":1.598774688e-20,"345":-7.99387344e-21,"346":3.99693672e-21,"347":-1.99846836e-21,"348":9.9923418e-22,"349":-4.9961709e-22,"350":2.49808545e-22,"351":-1.249042725e-22,"352":6.245213625e-23,"353":-3.122606812e-23,"354":1.561303406e-23,"355":-7.806517031e-24,"356":3.903258515e-24,"357":-1.951629258e-24,"358":9.758146289e-25,"359":-4.879073144e-25,"360":2.439536572e-25,"361":-1.219768286e-25,"362":6.09884143e-26,"363":-3.049420715e-26,"364":1.524710358e-26,"365":-7.623551788e-27,"366":3.811775894e-27,"367":-1.905887947e-27,"368":9.529439735e-28,"369":-4.764719868e-28,"370":2.382359934e-28,"371":-1.191179967e-28,"372":5.955899834e-29,"373":-2.977949917e-29,"374":1.488974959e-29,"375":-7.444874793e-30,"376":3.722437397e-30,"377":-1.861218698e-30,"378":9.306093491e-31,"379":-4.653046746e-31,"380":2.326523373e-31,"381":-1.163261686e-31,"382":5.816308432e-32,"383":-2.908154216e-32,"384":1.454077108e-32,"385":-7.27038554e-33,"386":3.63519277e-33,"387":-1.817596385e-33,"388":9.087981925e-34,"389":-4.543990963e-34,"390":2.271995481e-34,"391":-1.135997741e-34,"392":5.679988703e-35,"393":-2.839994352e-35,"394":1.419997176e-35,"395":-7.099985879e-36,"396":3.549992939e-36,"397":-1.77499647e-36,"398":8.874982349e-37,"399":-4.437491174e-37,"400":2.218745587e-37,"401":-1.109372794e-37,"402":5.546863968e-38,"403":-2.773431984e-38,"404":-0.0000636644,"405":-0.0000636303,"406":-0.0000595888,"407":-0.000049345,"408":-0.0000342823,"409":-0.000016435,"410":0.0000017864,"411":0.0188132749,"412":0.0293435117,"413":0.0360125609,"414":0.0349986442,"415":0.0278992596,"416":0.0149429683,"417":-0.0017552698,"418":0.0008566343,"419":-0.0004759667,"420":0.0001673517,"421":-0.000170519,"422":-0.0000088691,"423":-0.0000910644,"424":-0.0000499668,"425":-0.0000755051,"426":-0.0000887551,"427":-0.0001296603,"428":-0.0001767926,"429":-0.0002386772,"430":-0.0003080931,"431":-0.0003849181,"432":-0.0004647565,"433":-0.0005447477,"434":-0.0006208641,"435":-0.0006895373,"436":-0.0007471768,"437":-0.0007907701,"438":-0.0008179291,"439":-0.0008271618,"440":-0.0008179486,"441":-0.0007908057,"442":-0.0007472326,"443":-0.0006895972,"444":-0.0006209506,"445":-0.0005448031,"446":-0.0004648812,"447":-0.0003848962,"448":-0.0003083445,"449":-0.000238354,"450":-0.0001775859,"451":-0.0001281865,"452":-0.0000917819,"453":-0.0000694986,"454":-0.0000619953,"455":-0.0000644986,"456":-0.000063247,"457":-0.0000638728,"458":-0.0000635599,"459":-0.0000637164,"460":-0.0000636381,"461":-0.0000636773,"462":-0.0000636577,"463":-0.0000636675,"464":-0.0000636626,"465":-0.0000636651,"466":-0.0000636638,"467":-0.0000636644,"468":-0.0000636641,"469":-0.0000636643,"470":-0.0000636642,"471":-0.0000636643,"472":-0.0000636643,"473":-0.0000636643,"474":-0.0000636643,"475":-0.0000636643,"476":-0.0000636643,"477":-0.0000636643,"478":-0.0000636643,"479":-0.0000636643,"480":-0.0000636643,"481":-0.0000636643,"482":-0.0000636643,"483":-0.0000636643,"484":-0.0000636643,"485":-0.0000636643,"486":-0.0000636643,"487":-0.0000636643,"488":-0.0000636643,"489":-0.0000636643,"490":-0.0000636644,"491":-0.0000636644,"492":-0.0000636644,"493":-0.0000636644,"494":-0.0000636644,"495":-0.0000636644,"496":-0.0000636644,"497":-0.0000636644,"498":-0.0000636644,"499":-0.0000636644,"500":-0.0000636644,"501":-0.0000636644,"502":-0.0000636644,"503":-0.0000636644,"504":-0.0000636644,"505":6.366444477,"506":6.3664449381,"507":6.3664454011,"508":6.3664458707,"509":6.3664463517,"510":6.3664468475,"511":6.3664473598,"512":6.3664570096,"513":6.3664790746,"514":6.3665092864,"515":6.3665418911,"516":6.3665708887,"517":6.366590751,"518":6.3665971867,"519":6.3665978991,"520":6.366598351,"521":6.3665988373,"522":6.3665993033,"523":6.3665997659,"524":6.3666002268,"525":6.3666006876,"526":6.8655506351,"527":9.2179949207,"528":12.7947873139,"529":17.7648844449,"530":23.8249103596,"531":30.8307168351,"532":38.481110658,"533":46.4810045858,"534":54.472098167,"535":62.0877484618,"536":68.9530608545,"537":74.7180118544,"538":79.0768455139,"539":81.7929932406,"540":82.7161412761,"541":81.7948765666,"542":79.0805549787,"543":74.7232666323,"544":68.9597149822,"545":62.0950631851,"546":54.4803124284,"547":46.4881200631,"548":38.489623738,"549":30.8344451415,"550":23.8354007029,"551":17.758591453,"552":12.8186531006,"553":9.1781852333,"554":6.9498608203,"555":6.1995305533,"556":6.4498626408,"557":6.3246973374,"558":6.3872807247,"559":6.3559897623,"560":6.3716359709,"561":6.3638135906,"562":6.3677255016,"563":6.3657702641,"564":6.3667485982,"565":6.3662601442,"566":6.3665050822,"567":6.3663833223,"568":6.3664449096,"569":6.3664148218,"570":6.3664305701,"571":6.3664233991,"572":6.3664276866,"573":6.3664262438,"574":6.3664276652,"575":6.3664276537,"576":6.3664283579,"577":6.3664287035,"578":6.3664292278,"579":6.3664296622,"580":6.366430141,"581":6.3664305972,"582":6.3664310642,"583":6.3664315255,"584":6.3664319893,"585":6.3664324515,"586":6.3664329143,"587":6.3664333765,"588":6.3664338387,"589":6.3664343008,"590":6.3664347627,"591":6.3664352246,"592":6.3664356863,"593":6.366436148,"594":6.3664366095,"595":6.366437071,"596":6.3664375325,"597":6.3664379939,"598":6.3664384552,"599":6.3664389165,"600":6.3664393777,"601":6.3664398389,"602":6.3664403,"603":6.3664407612,"604":6.3664412223,"605":6.3664416833,"606":-0.0005703218,"607":-0.000570297,"608":-0.0005702747,"609":-0.0005702545,"610":-0.0005702363,"611":-0.0005702198,"612":-0.0005702049,"613":-0.0005701913,"614":-0.0005701789,"615":-0.0005701676,"616":-0.0005701573,"617":-0.0005701481,"618":-0.0005701397,"619":-0.0005701323,"620":-0.0005701257,"621":-0.0005701197,"622":-0.0005701143,"623":-0.0005701094,"624":-0.0005701049,"625":-0.0005701009,"626":-0.0005700973,"627":-0.000565112,"628":-0.0005416243,"629":-0.000505932,"630":-0.0004563573,"631":-0.0003959391,"632":-0.000326123,"633":-0.0002499203,"634":-0.0001702789,"635":-0.0000907745,"636":-0.0000150634,"637":0.0182188441,"638":0.0392976311,"639":0.0410065516,"640":0.039896143,"641":0.0316093196,"642":0.0207649671,"643":0.0069532623,"644":-0.0034879381,"645":0.0016712597,"646":-0.0009887341,"647":0.0002461998,"648":-0.0004751768,"649":-0.0002215871,"650":-0.0004531899,"651":-0.0004349396,"652":-0.0005300475,"653":-0.000553361,"654":-0.0005946938,"655":-0.0006071452,"656":-0.0006128949,"657":-0.0006052463,"658":-0.0006036277,"659":-0.0005995176,"660":-0.0005971263,"661":-0.0005943032,"662":-0.0005920825,"663":-0.0005899099,"664":-0.000588029,"665":-0.0005862876,"666":-0.0005847343,"667":-0.0005833201,"668":-0.0005820471,"669":-0.0005808939,"670":-0.0005798529,"671":-0.0005789114,"672":-0.0005780607,"673":-0.0005772917,"674":-0.0005765968,"675":-0.0005759686,"676":-0.0005754008,"677":-0.0005748877,"678":-0.0005744239,"679":-0.0005740047,"680":-0.0005736258,"681":-0.0005732833,"682":-0.0005729738,"683":-0.0005726941,"684":-0.0005724412,"685":-0.0005722127,"686":-0.0005720061,"687":-0.0005718194,"688":-0.0005716507,"689":-0.0005714982,"690":-0.0005713604,"691":-0.0005712358,"692":-0.0005711232,"693":-0.0005710214,"694":-0.0005709294,"695":-0.0005708463,"696":-0.0005707711,"697":-0.0005707032,"698":-0.0005706418,"699":-0.0005705863,"700":-0.0005705362,"701":-0.0005704908,"702":-0.0005704499,"703":-0.0005704128,"704":-0.0005703794,"705":-0.0005703491,"706":-0.0005703218,"707":6.3664444761,"708":6.3664449373,"709":6.3664454004,"710":6.36644587,"711":6.366446351,"712":6.366446847,"713":6.3664473593,"714":6.3664570091,"715":6.3664790741,"716":6.366509286,"717":6.3665418907,"718":6.3665708884,"719":6.3665907508,"720":6.3665971865,"721":6.3665978989,"722":6.3665983508,"723":6.3665988371,"724":6.3665993032,"725":6.3665997658,"726":6.3666002266,"727":6.3666006875,"728":6.8655503064,"729":9.2179936345,"730":12.7947860182,"731":17.7648823213,"732":23.8249081679,"733":30.8307141556,"734":38.4811079381,"735":46.4810017172,"736":54.4720954208,"737":62.0877458824,"738":68.951860412,"739":74.7175820417,"740":79.0771846451,"741":81.792812261,"742":82.7167987207,"743":81.7950889809,"744":79.081232283,"745":74.7234071309,"746":68.959202597,"747":62.0956478388,"748":54.4798095054,"749":46.4885081135,"750":38.489354208,"751":30.8346295901,"752":23.8352854883,"753":17.758666588,"754":12.8186095617,"755":9.1782130223,"756":6.9498452826,"757":6.1995396873,"758":6.4498569626,"759":6.3247005245,"760":6.3872786647,"761":6.3559908136,"762":6.3716352169,"763":6.3638138981,"764":6.36772521,"765":6.3657703261,"766":6.3667484695,"767":6.3662601321,"768":6.3665050128,"769":6.3663832921,"770":6.3664448643,"771":6.3664147908,"772":6.3664305366,"773":6.3664233718,"774":6.3664276603,"775":6.3664262209,"776":6.3664276441,"777":6.3664276348,"778":6.3664283407,"779":6.366428688,"780":6.3664292138,"781":6.3664296495,"782":6.3664301296,"783":6.3664305868,"784":6.3664310549,"785":6.366431517,"786":6.3664319817,"787":6.3664324446,"788":6.366432908,"789":6.3664333709,"790":6.3664338337,"791":6.3664342962,"792":6.3664347586,"793":6.3664352208,"794":6.3664356829,"795":6.3664361449,"796":6.3664366068,"797":6.3664370685,"798":6.3664375302,"799":6.3664379918,"800":6.3664384533,"801":6.3664389148,"802":6.3664393762,"803":6.3664398375,"804":6.3664402988,"805":6.3664407601,"806":6.3664412213,"807":6.3664416824,"808":-0.0005703218,"809":-0.000570297,"810":-0.0005702747,"811":-0.0005702545,"812":-0.0005702363,"813":-0.0005702198,"814":-0.0005702049,"815":-0.0005701913,"816":-0.0005701789,"817":-0.0005701676,"818":-0.0005701573,"819":-0.0005701481,"820":-0.0005701397,"821":-0.0005701323,"822":-0.0005701257,"823":-0.0005701197,"824":-0.0005701143,"825":-0.0005701094,"826":-0.0005701049,"827":-0.0005701009,"828":-0.0005700973,"829":-0.000565112,"830":-0.0005416243,"831":-0.000505932,"832":-0.0004563573,"833":-0.0003959391,"834":-0.000326123,"835":-0.0002499203,"836":-0.0001702789,"837":-0.0000907745,"838":-0.0000150634,"839":0.0182188441,"840":0.0392976311,"841":0.0410065516,"842":0.039896143,"843":0.0316093196,"844":0.0207649671,"845":0.0069532623,"846":-0.0034879381,"847":0.0016712597,"848":-0.0009887341,"849":0.0002461998,"850":-0.0004751768,"851":-0.0002215871,"852":-0.0004531899,"853":-0.0004349396,"854":-0.0005300475,"855":-0.000553361,"856":-0.0005946938,"857":-0.0006071452,"858":-0.0006128949,"859":-0.0006052463,"860":-0.0006036277,"861":-0.0005995176,"862":-0.0005971263,"863":-0.0005943032,"864":-0.0005920825,"865":-0.0005899099,"866":-0.000588029,"867":-0.0005862876,"868":-0.0005847343,"869":-0.0005833201,"870":-0.0005820471,"871":-0.0005808939,"872":-0.0005798529,"873":-0.0005789114,"874":-0.0005780607,"875":-0.0005772917,"876":-0.0005765968,"877":-0.0005759686,"878":-0.0005754008,"879":-0.0005748877,"880":-0.0005744239,"881":-0.0005740047,"882":-0.0005736258,"883":-0.0005732833,"884":-0.0005729738,"885":-0.0005726941,"886":-0.0005724412,"887":-0.0005722127,"888":-0.0005720061,"889":-0.0005718194,"890":-0.0005716507,"891":-0.0005714982,"892":-0.0005713604,"893":-0.0005712358,"894":-0.0005711232,"895":-0.0005710214,"896":-0.0005709294,"897":-0.0005708463,"898":-0.0005707711,"899":-0.0005707032,"900":-0.0005706418,"901":-0.0005705863,"902":-0.0005705362,"903":-0.0005704908,"904":-0.0005704499,"905":-0.0005704128,"906":-0.0005703794,"907":-0.0005703491,"908":-0.0005703218,"909":63.3986204585,"910":63.3961496638,"911":63.3939164875,"912":63.3918980777,"913":63.3900737802,"914":63.388424927,"915":63.3869346456,"916":63.3855876999,"917":63.3843703192,"918":63.3832700497,"919":63.3822756288,"920":63.3813768706,"921":63.3805645633,"922":63.3798303771,"923":63.3791667966,"924":63.3785670335,"925":63.3780249506,"926":63.3775350006,"927":63.3770921699,"928":63.376691927,"929":63.3763301762,"930":63.3767536669,"931":63.3804267903,"932":63.3879810776,"933":63.4006127132,"934":63.4188217187,"935":63.4430098302,"936":63.4731414551,"937":63.508886867,"938":63.549542317,"939":63.5940871136,"940":66.3775585612,"941":71.1640276507,"942":74.7884251244,"943":77.8972501395,"944":79.5088406722,"945":79.7421053139,"946":78.3741495316,"947":76.2076478205,"948":75.4880222475,"949":74.1416650543,"950":73.2735291451,"951":72.2993406693,"952":71.5014861048,"953":70.7269068551,"954":70.0426018574,"955":69.4067343615,"956":68.8330456515,"957":68.3084225061,"958":67.8339509611,"959":67.4042408737,"960":67.0168843197,"961":66.6662693284,"962":66.3496342612,"963":66.0633185538,"964":65.8046040476,"965":65.5707372215,"966":65.3593780565,"967":65.1683371675,"968":64.9956729392,"969":64.839611873,"970":64.6985603337,"971":64.5710732949,"972":64.4558470252,"973":64.3517020108,"974":64.2575727543,"975":64.1724959368,"976":64.0956010279,"977":64.0261011441,"978":63.9632851131,"979":63.9065101385,"980":63.8551952511,"981":63.8088153492,"982":63.7668958329,"983":63.7290077436,"984":63.6947633767,"985":63.663812313,"986":63.6358378334,"987":63.6105536778,"988":63.5877011162,"989":63.5670463006,"990":63.5483778722,"991":63.5315047991,"992":63.5162544207,"993":63.5024706814,"994":63.4900125336,"995":63.4787524944,"996":63.4685753408,"997":63.4593769311,"998":63.4510631388,"999":63.4435488898,"1000":63.4367572913,"1001":63.4306188457,"1002":63.4250707389,"1003":63.4200561975,"1004":63.4155239082,"1005":63.4114274926,"1006":63.4077250324,"1007":63.4043786406,"1008":63.401354074,"1009":63.3986203823,"1010":96.0609283192,"1011":96.0609333858,"1012":96.0609384739,"1013":96.0609436337,"1014":96.0609489193,"1015":96.0609543686,"1016":96.0609599975,"1017":96.0610660392,"1018":96.0613085117,"1019":96.0616405094,"1020":96.0619988029,"1021":96.0623174583,"1022":96.0625357257,"1023":96.0626064473,"1024":96.0626142758,"1025":96.0626192414,"1026":96.062624586,"1027":96.0626297069,"1028":96.0626347904,"1029":96.0626398546,"1030":96.062644919,"1031":96.0626499301,"1032":96.0626546479,"1033":96.0626587792,"1034":96.0626620546,"1035":96.062664231,"1036":96.0626651033,"1037":96.0626645147,"1038":96.0626623659,"1039":96.0626586239,"1040":96.0626533276,"1041":96.0625497059,"1042":96.0622552055,"1043":96.0618524031,"1044":96.0614395097,"1045":96.0610762223,"1046":96.0608064909,"1047":96.060660778,"1048":96.0606344587,"1049":96.060631423,"1050":96.0606250547,"1051":96.0606209234,"1052":96.0606180763,"1053":96.060616775,"1054":96.0606169505,"1055":96.0606185186,"1056":96.0606213263,"1057":96.0606251743,"1058":96.0606298245,"1059":96.060635011,"1060":96.0606404498,"1061":96.060645901,"1062":96.0606513113,"1063":96.0606566891,"1064":96.0606620365,"1065":96.0606673567,"1066":96.0606726522,"1067":96.0606779255,"1068":96.0606831787,"1069":96.0606884136,"1070":96.0606936321,"1071":96.0606988358,"1072":96.060704026,"1073":96.0607092041,"1074":96.0607143713,"1075":96.0607195285,"1076":96.0607246767,"1077":96.0607298169,"1078":96.0607349497,"1079":96.0607400759,"1080":96.0607451961,"1081":96.0607503109,"1082":96.0607554208,"1083":96.0607605264,"1084":96.0607656279,"1085":96.0607707258,"1086":96.0607758204,"1087":96.0607809121,"1088":96.0607860012,"1089":96.0607910878,"1090":96.0607961723,"1091":96.0608012548,"1092":96.0608063355,"1093":96.0608114146,"1094":96.0608164922,"1095":96.0608215686,"1096":96.0608266437,"1097":96.0608317178,"1098":96.0608367909,"1099":96.0608418632,"1100":96.0608469346,"1101":96.0608520053,"1102":96.0608570754,"1103":96.0608621449,"1104":96.0608672139,"1105":96.0608722824,"1106":96.0608773504,"1107":96.0608824181,"1108":96.0608874854,"1109":96.0608925524,"1110":96.0608976191}} \ No newline at end of file +{ + "name": { + "0": "flow:vessel:OUTLET", + "1": "flow:vessel:OUTLET", + "2": "flow:vessel:OUTLET", + "3": "flow:vessel:OUTLET", + "4": "flow:vessel:OUTLET", + "5": "flow:vessel:OUTLET", + "6": "flow:vessel:OUTLET", + "7": "flow:vessel:OUTLET", + "8": "flow:vessel:OUTLET", + "9": "flow:vessel:OUTLET", + "10": "flow:vessel:OUTLET", + "11": "flow:vessel:OUTLET", + "12": "flow:vessel:OUTLET", + "13": "flow:vessel:OUTLET", + "14": "flow:vessel:OUTLET", + "15": "flow:vessel:OUTLET", + "16": "flow:vessel:OUTLET", + "17": "flow:vessel:OUTLET", + "18": "flow:vessel:OUTLET", + "19": "flow:vessel:OUTLET", + "20": "flow:vessel:OUTLET", + "21": "flow:vessel:OUTLET", + "22": "flow:vessel:OUTLET", + "23": "flow:vessel:OUTLET", + "24": "flow:vessel:OUTLET", + "25": "flow:vessel:OUTLET", + "26": "flow:vessel:OUTLET", + "27": "flow:vessel:OUTLET", + "28": "flow:vessel:OUTLET", + "29": "flow:vessel:OUTLET", + "30": "flow:vessel:OUTLET", + "31": "flow:vessel:OUTLET", + "32": "flow:vessel:OUTLET", + "33": "flow:vessel:OUTLET", + "34": "flow:vessel:OUTLET", + "35": "flow:vessel:OUTLET", + "36": "flow:vessel:OUTLET", + "37": "flow:vessel:OUTLET", + "38": "flow:vessel:OUTLET", + "39": "flow:vessel:OUTLET", + "40": "flow:vessel:OUTLET", + "41": "flow:vessel:OUTLET", + "42": "flow:vessel:OUTLET", + "43": "flow:vessel:OUTLET", + "44": "flow:vessel:OUTLET", + "45": "flow:vessel:OUTLET", + "46": "flow:vessel:OUTLET", + "47": "flow:vessel:OUTLET", + "48": "flow:vessel:OUTLET", + "49": "flow:vessel:OUTLET", + "50": "flow:vessel:OUTLET", + "51": "flow:vessel:OUTLET", + "52": "flow:vessel:OUTLET", + "53": "flow:vessel:OUTLET", + "54": "flow:vessel:OUTLET", + "55": "flow:vessel:OUTLET", + "56": "flow:vessel:OUTLET", + "57": "flow:vessel:OUTLET", + "58": "flow:vessel:OUTLET", + "59": "flow:vessel:OUTLET", + "60": "flow:vessel:OUTLET", + "61": "flow:vessel:OUTLET", + "62": "flow:vessel:OUTLET", + "63": "flow:vessel:OUTLET", + "64": "flow:vessel:OUTLET", + "65": "flow:vessel:OUTLET", + "66": "flow:vessel:OUTLET", + "67": "flow:vessel:OUTLET", + "68": "flow:vessel:OUTLET", + "69": "flow:vessel:OUTLET", + "70": "flow:vessel:OUTLET", + "71": "flow:vessel:OUTLET", + "72": "flow:vessel:OUTLET", + "73": "flow:vessel:OUTLET", + "74": "flow:vessel:OUTLET", + "75": "flow:vessel:OUTLET", + "76": "flow:vessel:OUTLET", + "77": "flow:vessel:OUTLET", + "78": "flow:vessel:OUTLET", + "79": "flow:vessel:OUTLET", + "80": "flow:vessel:OUTLET", + "81": "flow:vessel:OUTLET", + "82": "flow:vessel:OUTLET", + "83": "flow:vessel:OUTLET", + "84": "flow:vessel:OUTLET", + "85": "flow:vessel:OUTLET", + "86": "flow:vessel:OUTLET", + "87": "flow:vessel:OUTLET", + "88": "flow:vessel:OUTLET", + "89": "flow:vessel:OUTLET", + "90": "flow:vessel:OUTLET", + "91": "flow:vessel:OUTLET", + "92": "flow:vessel:OUTLET", + "93": "flow:vessel:OUTLET", + "94": "flow:vessel:OUTLET", + "95": "flow:vessel:OUTLET", + "96": "flow:vessel:OUTLET", + "97": "flow:vessel:OUTLET", + "98": "flow:vessel:OUTLET", + "99": "flow:vessel:OUTLET", + "100": "flow:vessel:OUTLET", + "101": "pressure:vessel:OUTLET", + "102": "pressure:vessel:OUTLET", + "103": "pressure:vessel:OUTLET", + "104": "pressure:vessel:OUTLET", + "105": "pressure:vessel:OUTLET", + "106": "pressure:vessel:OUTLET", + "107": "pressure:vessel:OUTLET", + "108": "pressure:vessel:OUTLET", + "109": "pressure:vessel:OUTLET", + "110": "pressure:vessel:OUTLET", + "111": "pressure:vessel:OUTLET", + "112": "pressure:vessel:OUTLET", + "113": "pressure:vessel:OUTLET", + "114": "pressure:vessel:OUTLET", + "115": "pressure:vessel:OUTLET", + "116": "pressure:vessel:OUTLET", + "117": "pressure:vessel:OUTLET", + "118": "pressure:vessel:OUTLET", + "119": "pressure:vessel:OUTLET", + "120": "pressure:vessel:OUTLET", + "121": "pressure:vessel:OUTLET", + "122": "pressure:vessel:OUTLET", + "123": "pressure:vessel:OUTLET", + "124": "pressure:vessel:OUTLET", + "125": "pressure:vessel:OUTLET", + "126": "pressure:vessel:OUTLET", + "127": "pressure:vessel:OUTLET", + "128": "pressure:vessel:OUTLET", + "129": "pressure:vessel:OUTLET", + "130": "pressure:vessel:OUTLET", + "131": "pressure:vessel:OUTLET", + "132": "pressure:vessel:OUTLET", + "133": "pressure:vessel:OUTLET", + "134": "pressure:vessel:OUTLET", + "135": "pressure:vessel:OUTLET", + "136": "pressure:vessel:OUTLET", + "137": "pressure:vessel:OUTLET", + "138": "pressure:vessel:OUTLET", + "139": "pressure:vessel:OUTLET", + "140": "pressure:vessel:OUTLET", + "141": "pressure:vessel:OUTLET", + "142": "pressure:vessel:OUTLET", + "143": "pressure:vessel:OUTLET", + "144": "pressure:vessel:OUTLET", + "145": "pressure:vessel:OUTLET", + "146": "pressure:vessel:OUTLET", + "147": "pressure:vessel:OUTLET", + "148": "pressure:vessel:OUTLET", + "149": "pressure:vessel:OUTLET", + "150": "pressure:vessel:OUTLET", + "151": "pressure:vessel:OUTLET", + "152": "pressure:vessel:OUTLET", + "153": "pressure:vessel:OUTLET", + "154": "pressure:vessel:OUTLET", + "155": "pressure:vessel:OUTLET", + "156": "pressure:vessel:OUTLET", + "157": "pressure:vessel:OUTLET", + "158": "pressure:vessel:OUTLET", + "159": "pressure:vessel:OUTLET", + "160": "pressure:vessel:OUTLET", + "161": "pressure:vessel:OUTLET", + "162": "pressure:vessel:OUTLET", + "163": "pressure:vessel:OUTLET", + "164": "pressure:vessel:OUTLET", + "165": "pressure:vessel:OUTLET", + "166": "pressure:vessel:OUTLET", + "167": "pressure:vessel:OUTLET", + "168": "pressure:vessel:OUTLET", + "169": "pressure:vessel:OUTLET", + "170": "pressure:vessel:OUTLET", + "171": "pressure:vessel:OUTLET", + "172": "pressure:vessel:OUTLET", + "173": "pressure:vessel:OUTLET", + "174": "pressure:vessel:OUTLET", + "175": "pressure:vessel:OUTLET", + "176": "pressure:vessel:OUTLET", + "177": "pressure:vessel:OUTLET", + "178": "pressure:vessel:OUTLET", + "179": "pressure:vessel:OUTLET", + "180": "pressure:vessel:OUTLET", + "181": "pressure:vessel:OUTLET", + "182": "pressure:vessel:OUTLET", + "183": "pressure:vessel:OUTLET", + "184": "pressure:vessel:OUTLET", + "185": "pressure:vessel:OUTLET", + "186": "pressure:vessel:OUTLET", + "187": "pressure:vessel:OUTLET", + "188": "pressure:vessel:OUTLET", + "189": "pressure:vessel:OUTLET", + "190": "pressure:vessel:OUTLET", + "191": "pressure:vessel:OUTLET", + "192": "pressure:vessel:OUTLET", + "193": "pressure:vessel:OUTLET", + "194": "pressure:vessel:OUTLET", + "195": "pressure:vessel:OUTLET", + "196": "pressure:vessel:OUTLET", + "197": "pressure:vessel:OUTLET", + "198": "pressure:vessel:OUTLET", + "199": "pressure:vessel:OUTLET", + "200": "pressure:vessel:OUTLET", + "201": "pressure:vessel:OUTLET", + "202": "flow:INLET:valve0", + "203": "flow:INLET:valve0", + "204": "flow:INLET:valve0", + "205": "flow:INLET:valve0", + "206": "flow:INLET:valve0", + "207": "flow:INLET:valve0", + "208": "flow:INLET:valve0", + "209": "flow:INLET:valve0", + "210": "flow:INLET:valve0", + "211": "flow:INLET:valve0", + "212": "flow:INLET:valve0", + "213": "flow:INLET:valve0", + "214": "flow:INLET:valve0", + "215": "flow:INLET:valve0", + "216": "flow:INLET:valve0", + "217": "flow:INLET:valve0", + "218": "flow:INLET:valve0", + "219": "flow:INLET:valve0", + "220": "flow:INLET:valve0", + "221": "flow:INLET:valve0", + "222": "flow:INLET:valve0", + "223": "flow:INLET:valve0", + "224": "flow:INLET:valve0", + "225": "flow:INLET:valve0", + "226": "flow:INLET:valve0", + "227": "flow:INLET:valve0", + "228": "flow:INLET:valve0", + "229": "flow:INLET:valve0", + "230": "flow:INLET:valve0", + "231": "flow:INLET:valve0", + "232": "flow:INLET:valve0", + "233": "flow:INLET:valve0", + "234": "flow:INLET:valve0", + "235": "flow:INLET:valve0", + "236": "flow:INLET:valve0", + "237": "flow:INLET:valve0", + "238": "flow:INLET:valve0", + "239": "flow:INLET:valve0", + "240": "flow:INLET:valve0", + "241": "flow:INLET:valve0", + "242": "flow:INLET:valve0", + "243": "flow:INLET:valve0", + "244": "flow:INLET:valve0", + "245": "flow:INLET:valve0", + "246": "flow:INLET:valve0", + "247": "flow:INLET:valve0", + "248": "flow:INLET:valve0", + "249": "flow:INLET:valve0", + "250": "flow:INLET:valve0", + "251": "flow:INLET:valve0", + "252": "flow:INLET:valve0", + "253": "flow:INLET:valve0", + "254": "flow:INLET:valve0", + "255": "flow:INLET:valve0", + "256": "flow:INLET:valve0", + "257": "flow:INLET:valve0", + "258": "flow:INLET:valve0", + "259": "flow:INLET:valve0", + "260": "flow:INLET:valve0", + "261": "flow:INLET:valve0", + "262": "flow:INLET:valve0", + "263": "flow:INLET:valve0", + "264": "flow:INLET:valve0", + "265": "flow:INLET:valve0", + "266": "flow:INLET:valve0", + "267": "flow:INLET:valve0", + "268": "flow:INLET:valve0", + "269": "flow:INLET:valve0", + "270": "flow:INLET:valve0", + "271": "flow:INLET:valve0", + "272": "flow:INLET:valve0", + "273": "flow:INLET:valve0", + "274": "flow:INLET:valve0", + "275": "flow:INLET:valve0", + "276": "flow:INLET:valve0", + "277": "flow:INLET:valve0", + "278": "flow:INLET:valve0", + "279": "flow:INLET:valve0", + "280": "flow:INLET:valve0", + "281": "flow:INLET:valve0", + "282": "flow:INLET:valve0", + "283": "flow:INLET:valve0", + "284": "flow:INLET:valve0", + "285": "flow:INLET:valve0", + "286": "flow:INLET:valve0", + "287": "flow:INLET:valve0", + "288": "flow:INLET:valve0", + "289": "flow:INLET:valve0", + "290": "flow:INLET:valve0", + "291": "flow:INLET:valve0", + "292": "flow:INLET:valve0", + "293": "flow:INLET:valve0", + "294": "flow:INLET:valve0", + "295": "flow:INLET:valve0", + "296": "flow:INLET:valve0", + "297": "flow:INLET:valve0", + "298": "flow:INLET:valve0", + "299": "flow:INLET:valve0", + "300": "flow:INLET:valve0", + "301": "flow:INLET:valve0", + "302": "flow:INLET:valve0", + "303": "pressure:INLET:valve0", + "304": "pressure:INLET:valve0", + "305": "pressure:INLET:valve0", + "306": "pressure:INLET:valve0", + "307": "pressure:INLET:valve0", + "308": "pressure:INLET:valve0", + "309": "pressure:INLET:valve0", + "310": "pressure:INLET:valve0", + "311": "pressure:INLET:valve0", + "312": "pressure:INLET:valve0", + "313": "pressure:INLET:valve0", + "314": "pressure:INLET:valve0", + "315": "pressure:INLET:valve0", + "316": "pressure:INLET:valve0", + "317": "pressure:INLET:valve0", + "318": "pressure:INLET:valve0", + "319": "pressure:INLET:valve0", + "320": "pressure:INLET:valve0", + "321": "pressure:INLET:valve0", + "322": "pressure:INLET:valve0", + "323": "pressure:INLET:valve0", + "324": "pressure:INLET:valve0", + "325": "pressure:INLET:valve0", + "326": "pressure:INLET:valve0", + "327": "pressure:INLET:valve0", + "328": "pressure:INLET:valve0", + "329": "pressure:INLET:valve0", + "330": "pressure:INLET:valve0", + "331": "pressure:INLET:valve0", + "332": "pressure:INLET:valve0", + "333": "pressure:INLET:valve0", + "334": "pressure:INLET:valve0", + "335": "pressure:INLET:valve0", + "336": "pressure:INLET:valve0", + "337": "pressure:INLET:valve0", + "338": "pressure:INLET:valve0", + "339": "pressure:INLET:valve0", + "340": "pressure:INLET:valve0", + "341": "pressure:INLET:valve0", + "342": "pressure:INLET:valve0", + "343": "pressure:INLET:valve0", + "344": "pressure:INLET:valve0", + "345": "pressure:INLET:valve0", + "346": "pressure:INLET:valve0", + "347": "pressure:INLET:valve0", + "348": "pressure:INLET:valve0", + "349": "pressure:INLET:valve0", + "350": "pressure:INLET:valve0", + "351": "pressure:INLET:valve0", + "352": "pressure:INLET:valve0", + "353": "pressure:INLET:valve0", + "354": "pressure:INLET:valve0", + "355": "pressure:INLET:valve0", + "356": "pressure:INLET:valve0", + "357": "pressure:INLET:valve0", + "358": "pressure:INLET:valve0", + "359": "pressure:INLET:valve0", + "360": "pressure:INLET:valve0", + "361": "pressure:INLET:valve0", + "362": "pressure:INLET:valve0", + "363": "pressure:INLET:valve0", + "364": "pressure:INLET:valve0", + "365": "pressure:INLET:valve0", + "366": "pressure:INLET:valve0", + "367": "pressure:INLET:valve0", + "368": "pressure:INLET:valve0", + "369": "pressure:INLET:valve0", + "370": "pressure:INLET:valve0", + "371": "pressure:INLET:valve0", + "372": "pressure:INLET:valve0", + "373": "pressure:INLET:valve0", + "374": "pressure:INLET:valve0", + "375": "pressure:INLET:valve0", + "376": "pressure:INLET:valve0", + "377": "pressure:INLET:valve0", + "378": "pressure:INLET:valve0", + "379": "pressure:INLET:valve0", + "380": "pressure:INLET:valve0", + "381": "pressure:INLET:valve0", + "382": "pressure:INLET:valve0", + "383": "pressure:INLET:valve0", + "384": "pressure:INLET:valve0", + "385": "pressure:INLET:valve0", + "386": "pressure:INLET:valve0", + "387": "pressure:INLET:valve0", + "388": "pressure:INLET:valve0", + "389": "pressure:INLET:valve0", + "390": "pressure:INLET:valve0", + "391": "pressure:INLET:valve0", + "392": "pressure:INLET:valve0", + "393": "pressure:INLET:valve0", + "394": "pressure:INLET:valve0", + "395": "pressure:INLET:valve0", + "396": "pressure:INLET:valve0", + "397": "pressure:INLET:valve0", + "398": "pressure:INLET:valve0", + "399": "pressure:INLET:valve0", + "400": "pressure:INLET:valve0", + "401": "pressure:INLET:valve0", + "402": "pressure:INLET:valve0", + "403": "pressure:INLET:valve0", + "404": "flow:valve0:ventricle", + "405": "flow:valve0:ventricle", + "406": "flow:valve0:ventricle", + "407": "flow:valve0:ventricle", + "408": "flow:valve0:ventricle", + "409": "flow:valve0:ventricle", + "410": "flow:valve0:ventricle", + "411": "flow:valve0:ventricle", + "412": "flow:valve0:ventricle", + "413": "flow:valve0:ventricle", + "414": "flow:valve0:ventricle", + "415": "flow:valve0:ventricle", + "416": "flow:valve0:ventricle", + "417": "flow:valve0:ventricle", + "418": "flow:valve0:ventricle", + "419": "flow:valve0:ventricle", + "420": "flow:valve0:ventricle", + "421": "flow:valve0:ventricle", + "422": "flow:valve0:ventricle", + "423": "flow:valve0:ventricle", + "424": "flow:valve0:ventricle", + "425": "flow:valve0:ventricle", + "426": "flow:valve0:ventricle", + "427": "flow:valve0:ventricle", + "428": "flow:valve0:ventricle", + "429": "flow:valve0:ventricle", + "430": "flow:valve0:ventricle", + "431": "flow:valve0:ventricle", + "432": "flow:valve0:ventricle", + "433": "flow:valve0:ventricle", + "434": "flow:valve0:ventricle", + "435": "flow:valve0:ventricle", + "436": "flow:valve0:ventricle", + "437": "flow:valve0:ventricle", + "438": "flow:valve0:ventricle", + "439": "flow:valve0:ventricle", + "440": "flow:valve0:ventricle", + "441": "flow:valve0:ventricle", + "442": "flow:valve0:ventricle", + "443": "flow:valve0:ventricle", + "444": "flow:valve0:ventricle", + "445": "flow:valve0:ventricle", + "446": "flow:valve0:ventricle", + "447": "flow:valve0:ventricle", + "448": "flow:valve0:ventricle", + "449": "flow:valve0:ventricle", + "450": "flow:valve0:ventricle", + "451": "flow:valve0:ventricle", + "452": "flow:valve0:ventricle", + "453": "flow:valve0:ventricle", + "454": "flow:valve0:ventricle", + "455": "flow:valve0:ventricle", + "456": "flow:valve0:ventricle", + "457": "flow:valve0:ventricle", + "458": "flow:valve0:ventricle", + "459": "flow:valve0:ventricle", + "460": "flow:valve0:ventricle", + "461": "flow:valve0:ventricle", + "462": "flow:valve0:ventricle", + "463": "flow:valve0:ventricle", + "464": "flow:valve0:ventricle", + "465": "flow:valve0:ventricle", + "466": "flow:valve0:ventricle", + "467": "flow:valve0:ventricle", + "468": "flow:valve0:ventricle", + "469": "flow:valve0:ventricle", + "470": "flow:valve0:ventricle", + "471": "flow:valve0:ventricle", + "472": "flow:valve0:ventricle", + "473": "flow:valve0:ventricle", + "474": "flow:valve0:ventricle", + "475": "flow:valve0:ventricle", + "476": "flow:valve0:ventricle", + "477": "flow:valve0:ventricle", + "478": "flow:valve0:ventricle", + "479": "flow:valve0:ventricle", + "480": "flow:valve0:ventricle", + "481": "flow:valve0:ventricle", + "482": "flow:valve0:ventricle", + "483": "flow:valve0:ventricle", + "484": "flow:valve0:ventricle", + "485": "flow:valve0:ventricle", + "486": "flow:valve0:ventricle", + "487": "flow:valve0:ventricle", + "488": "flow:valve0:ventricle", + "489": "flow:valve0:ventricle", + "490": "flow:valve0:ventricle", + "491": "flow:valve0:ventricle", + "492": "flow:valve0:ventricle", + "493": "flow:valve0:ventricle", + "494": "flow:valve0:ventricle", + "495": "flow:valve0:ventricle", + "496": "flow:valve0:ventricle", + "497": "flow:valve0:ventricle", + "498": "flow:valve0:ventricle", + "499": "flow:valve0:ventricle", + "500": "flow:valve0:ventricle", + "501": "flow:valve0:ventricle", + "502": "flow:valve0:ventricle", + "503": "flow:valve0:ventricle", + "504": "flow:valve0:ventricle", + "505": "pressure:valve0:ventricle", + "506": "pressure:valve0:ventricle", + "507": "pressure:valve0:ventricle", + "508": "pressure:valve0:ventricle", + "509": "pressure:valve0:ventricle", + "510": "pressure:valve0:ventricle", + "511": "pressure:valve0:ventricle", + "512": "pressure:valve0:ventricle", + "513": "pressure:valve0:ventricle", + "514": "pressure:valve0:ventricle", + "515": "pressure:valve0:ventricle", + "516": "pressure:valve0:ventricle", + "517": "pressure:valve0:ventricle", + "518": "pressure:valve0:ventricle", + "519": "pressure:valve0:ventricle", + "520": "pressure:valve0:ventricle", + "521": "pressure:valve0:ventricle", + "522": "pressure:valve0:ventricle", + "523": "pressure:valve0:ventricle", + "524": "pressure:valve0:ventricle", + "525": "pressure:valve0:ventricle", + "526": "pressure:valve0:ventricle", + "527": "pressure:valve0:ventricle", + "528": "pressure:valve0:ventricle", + "529": "pressure:valve0:ventricle", + "530": "pressure:valve0:ventricle", + "531": "pressure:valve0:ventricle", + "532": "pressure:valve0:ventricle", + "533": "pressure:valve0:ventricle", + "534": "pressure:valve0:ventricle", + "535": "pressure:valve0:ventricle", + "536": "pressure:valve0:ventricle", + "537": "pressure:valve0:ventricle", + "538": "pressure:valve0:ventricle", + "539": "pressure:valve0:ventricle", + "540": "pressure:valve0:ventricle", + "541": "pressure:valve0:ventricle", + "542": "pressure:valve0:ventricle", + "543": "pressure:valve0:ventricle", + "544": "pressure:valve0:ventricle", + "545": "pressure:valve0:ventricle", + "546": "pressure:valve0:ventricle", + "547": "pressure:valve0:ventricle", + "548": "pressure:valve0:ventricle", + "549": "pressure:valve0:ventricle", + "550": "pressure:valve0:ventricle", + "551": "pressure:valve0:ventricle", + "552": "pressure:valve0:ventricle", + "553": "pressure:valve0:ventricle", + "554": "pressure:valve0:ventricle", + "555": "pressure:valve0:ventricle", + "556": "pressure:valve0:ventricle", + "557": "pressure:valve0:ventricle", + "558": "pressure:valve0:ventricle", + "559": "pressure:valve0:ventricle", + "560": "pressure:valve0:ventricle", + "561": "pressure:valve0:ventricle", + "562": "pressure:valve0:ventricle", + "563": "pressure:valve0:ventricle", + "564": "pressure:valve0:ventricle", + "565": "pressure:valve0:ventricle", + "566": "pressure:valve0:ventricle", + "567": "pressure:valve0:ventricle", + "568": "pressure:valve0:ventricle", + "569": "pressure:valve0:ventricle", + "570": "pressure:valve0:ventricle", + "571": "pressure:valve0:ventricle", + "572": "pressure:valve0:ventricle", + "573": "pressure:valve0:ventricle", + "574": "pressure:valve0:ventricle", + "575": "pressure:valve0:ventricle", + "576": "pressure:valve0:ventricle", + "577": "pressure:valve0:ventricle", + "578": "pressure:valve0:ventricle", + "579": "pressure:valve0:ventricle", + "580": "pressure:valve0:ventricle", + "581": "pressure:valve0:ventricle", + "582": "pressure:valve0:ventricle", + "583": "pressure:valve0:ventricle", + "584": "pressure:valve0:ventricle", + "585": "pressure:valve0:ventricle", + "586": "pressure:valve0:ventricle", + "587": "pressure:valve0:ventricle", + "588": "pressure:valve0:ventricle", + "589": "pressure:valve0:ventricle", + "590": "pressure:valve0:ventricle", + "591": "pressure:valve0:ventricle", + "592": "pressure:valve0:ventricle", + "593": "pressure:valve0:ventricle", + "594": "pressure:valve0:ventricle", + "595": "pressure:valve0:ventricle", + "596": "pressure:valve0:ventricle", + "597": "pressure:valve0:ventricle", + "598": "pressure:valve0:ventricle", + "599": "pressure:valve0:ventricle", + "600": "pressure:valve0:ventricle", + "601": "pressure:valve0:ventricle", + "602": "pressure:valve0:ventricle", + "603": "pressure:valve0:ventricle", + "604": "pressure:valve0:ventricle", + "605": "pressure:valve0:ventricle", + "606": "flow:ventricle:valve1", + "607": "flow:ventricle:valve1", + "608": "flow:ventricle:valve1", + "609": "flow:ventricle:valve1", + "610": "flow:ventricle:valve1", + "611": "flow:ventricle:valve1", + "612": "flow:ventricle:valve1", + "613": "flow:ventricle:valve1", + "614": "flow:ventricle:valve1", + "615": "flow:ventricle:valve1", + "616": "flow:ventricle:valve1", + "617": "flow:ventricle:valve1", + "618": "flow:ventricle:valve1", + "619": "flow:ventricle:valve1", + "620": "flow:ventricle:valve1", + "621": "flow:ventricle:valve1", + "622": "flow:ventricle:valve1", + "623": "flow:ventricle:valve1", + "624": "flow:ventricle:valve1", + "625": "flow:ventricle:valve1", + "626": "flow:ventricle:valve1", + "627": "flow:ventricle:valve1", + "628": "flow:ventricle:valve1", + "629": "flow:ventricle:valve1", + "630": "flow:ventricle:valve1", + "631": "flow:ventricle:valve1", + "632": "flow:ventricle:valve1", + "633": "flow:ventricle:valve1", + "634": "flow:ventricle:valve1", + "635": "flow:ventricle:valve1", + "636": "flow:ventricle:valve1", + "637": "flow:ventricle:valve1", + "638": "flow:ventricle:valve1", + "639": "flow:ventricle:valve1", + "640": "flow:ventricle:valve1", + "641": "flow:ventricle:valve1", + "642": "flow:ventricle:valve1", + "643": "flow:ventricle:valve1", + "644": "flow:ventricle:valve1", + "645": "flow:ventricle:valve1", + "646": "flow:ventricle:valve1", + "647": "flow:ventricle:valve1", + "648": "flow:ventricle:valve1", + "649": "flow:ventricle:valve1", + "650": "flow:ventricle:valve1", + "651": "flow:ventricle:valve1", + "652": "flow:ventricle:valve1", + "653": "flow:ventricle:valve1", + "654": "flow:ventricle:valve1", + "655": "flow:ventricle:valve1", + "656": "flow:ventricle:valve1", + "657": "flow:ventricle:valve1", + "658": "flow:ventricle:valve1", + "659": "flow:ventricle:valve1", + "660": "flow:ventricle:valve1", + "661": "flow:ventricle:valve1", + "662": "flow:ventricle:valve1", + "663": "flow:ventricle:valve1", + "664": "flow:ventricle:valve1", + "665": "flow:ventricle:valve1", + "666": "flow:ventricle:valve1", + "667": "flow:ventricle:valve1", + "668": "flow:ventricle:valve1", + "669": "flow:ventricle:valve1", + "670": "flow:ventricle:valve1", + "671": "flow:ventricle:valve1", + "672": "flow:ventricle:valve1", + "673": "flow:ventricle:valve1", + "674": "flow:ventricle:valve1", + "675": "flow:ventricle:valve1", + "676": "flow:ventricle:valve1", + "677": "flow:ventricle:valve1", + "678": "flow:ventricle:valve1", + "679": "flow:ventricle:valve1", + "680": "flow:ventricle:valve1", + "681": "flow:ventricle:valve1", + "682": "flow:ventricle:valve1", + "683": "flow:ventricle:valve1", + "684": "flow:ventricle:valve1", + "685": "flow:ventricle:valve1", + "686": "flow:ventricle:valve1", + "687": "flow:ventricle:valve1", + "688": "flow:ventricle:valve1", + "689": "flow:ventricle:valve1", + "690": "flow:ventricle:valve1", + "691": "flow:ventricle:valve1", + "692": "flow:ventricle:valve1", + "693": "flow:ventricle:valve1", + "694": "flow:ventricle:valve1", + "695": "flow:ventricle:valve1", + "696": "flow:ventricle:valve1", + "697": "flow:ventricle:valve1", + "698": "flow:ventricle:valve1", + "699": "flow:ventricle:valve1", + "700": "flow:ventricle:valve1", + "701": "flow:ventricle:valve1", + "702": "flow:ventricle:valve1", + "703": "flow:ventricle:valve1", + "704": "flow:ventricle:valve1", + "705": "flow:ventricle:valve1", + "706": "flow:ventricle:valve1", + "707": "pressure:ventricle:valve1", + "708": "pressure:ventricle:valve1", + "709": "pressure:ventricle:valve1", + "710": "pressure:ventricle:valve1", + "711": "pressure:ventricle:valve1", + "712": "pressure:ventricle:valve1", + "713": "pressure:ventricle:valve1", + "714": "pressure:ventricle:valve1", + "715": "pressure:ventricle:valve1", + "716": "pressure:ventricle:valve1", + "717": "pressure:ventricle:valve1", + "718": "pressure:ventricle:valve1", + "719": "pressure:ventricle:valve1", + "720": "pressure:ventricle:valve1", + "721": "pressure:ventricle:valve1", + "722": "pressure:ventricle:valve1", + "723": "pressure:ventricle:valve1", + "724": "pressure:ventricle:valve1", + "725": "pressure:ventricle:valve1", + "726": "pressure:ventricle:valve1", + "727": "pressure:ventricle:valve1", + "728": "pressure:ventricle:valve1", + "729": "pressure:ventricle:valve1", + "730": "pressure:ventricle:valve1", + "731": "pressure:ventricle:valve1", + "732": "pressure:ventricle:valve1", + "733": "pressure:ventricle:valve1", + "734": "pressure:ventricle:valve1", + "735": "pressure:ventricle:valve1", + "736": "pressure:ventricle:valve1", + "737": "pressure:ventricle:valve1", + "738": "pressure:ventricle:valve1", + "739": "pressure:ventricle:valve1", + "740": "pressure:ventricle:valve1", + "741": "pressure:ventricle:valve1", + "742": "pressure:ventricle:valve1", + "743": "pressure:ventricle:valve1", + "744": "pressure:ventricle:valve1", + "745": "pressure:ventricle:valve1", + "746": "pressure:ventricle:valve1", + "747": "pressure:ventricle:valve1", + "748": "pressure:ventricle:valve1", + "749": "pressure:ventricle:valve1", + "750": "pressure:ventricle:valve1", + "751": "pressure:ventricle:valve1", + "752": "pressure:ventricle:valve1", + "753": "pressure:ventricle:valve1", + "754": "pressure:ventricle:valve1", + "755": "pressure:ventricle:valve1", + "756": "pressure:ventricle:valve1", + "757": "pressure:ventricle:valve1", + "758": "pressure:ventricle:valve1", + "759": "pressure:ventricle:valve1", + "760": "pressure:ventricle:valve1", + "761": "pressure:ventricle:valve1", + "762": "pressure:ventricle:valve1", + "763": "pressure:ventricle:valve1", + "764": "pressure:ventricle:valve1", + "765": "pressure:ventricle:valve1", + "766": "pressure:ventricle:valve1", + "767": "pressure:ventricle:valve1", + "768": "pressure:ventricle:valve1", + "769": "pressure:ventricle:valve1", + "770": "pressure:ventricle:valve1", + "771": "pressure:ventricle:valve1", + "772": "pressure:ventricle:valve1", + "773": "pressure:ventricle:valve1", + "774": "pressure:ventricle:valve1", + "775": "pressure:ventricle:valve1", + "776": "pressure:ventricle:valve1", + "777": "pressure:ventricle:valve1", + "778": "pressure:ventricle:valve1", + "779": "pressure:ventricle:valve1", + "780": "pressure:ventricle:valve1", + "781": "pressure:ventricle:valve1", + "782": "pressure:ventricle:valve1", + "783": "pressure:ventricle:valve1", + "784": "pressure:ventricle:valve1", + "785": "pressure:ventricle:valve1", + "786": "pressure:ventricle:valve1", + "787": "pressure:ventricle:valve1", + "788": "pressure:ventricle:valve1", + "789": "pressure:ventricle:valve1", + "790": "pressure:ventricle:valve1", + "791": "pressure:ventricle:valve1", + "792": "pressure:ventricle:valve1", + "793": "pressure:ventricle:valve1", + "794": "pressure:ventricle:valve1", + "795": "pressure:ventricle:valve1", + "796": "pressure:ventricle:valve1", + "797": "pressure:ventricle:valve1", + "798": "pressure:ventricle:valve1", + "799": "pressure:ventricle:valve1", + "800": "pressure:ventricle:valve1", + "801": "pressure:ventricle:valve1", + "802": "pressure:ventricle:valve1", + "803": "pressure:ventricle:valve1", + "804": "pressure:ventricle:valve1", + "805": "pressure:ventricle:valve1", + "806": "pressure:ventricle:valve1", + "807": "pressure:ventricle:valve1", + "808": "flow:valve1:vessel", + "809": "flow:valve1:vessel", + "810": "flow:valve1:vessel", + "811": "flow:valve1:vessel", + "812": "flow:valve1:vessel", + "813": "flow:valve1:vessel", + "814": "flow:valve1:vessel", + "815": "flow:valve1:vessel", + "816": "flow:valve1:vessel", + "817": "flow:valve1:vessel", + "818": "flow:valve1:vessel", + "819": "flow:valve1:vessel", + "820": "flow:valve1:vessel", + "821": "flow:valve1:vessel", + "822": "flow:valve1:vessel", + "823": "flow:valve1:vessel", + "824": "flow:valve1:vessel", + "825": "flow:valve1:vessel", + "826": "flow:valve1:vessel", + "827": "flow:valve1:vessel", + "828": "flow:valve1:vessel", + "829": "flow:valve1:vessel", + "830": "flow:valve1:vessel", + "831": "flow:valve1:vessel", + "832": "flow:valve1:vessel", + "833": "flow:valve1:vessel", + "834": "flow:valve1:vessel", + "835": "flow:valve1:vessel", + "836": "flow:valve1:vessel", + "837": "flow:valve1:vessel", + "838": "flow:valve1:vessel", + "839": "flow:valve1:vessel", + "840": "flow:valve1:vessel", + "841": "flow:valve1:vessel", + "842": "flow:valve1:vessel", + "843": "flow:valve1:vessel", + "844": "flow:valve1:vessel", + "845": "flow:valve1:vessel", + "846": "flow:valve1:vessel", + "847": "flow:valve1:vessel", + "848": "flow:valve1:vessel", + "849": "flow:valve1:vessel", + "850": "flow:valve1:vessel", + "851": "flow:valve1:vessel", + "852": "flow:valve1:vessel", + "853": "flow:valve1:vessel", + "854": "flow:valve1:vessel", + "855": "flow:valve1:vessel", + "856": "flow:valve1:vessel", + "857": "flow:valve1:vessel", + "858": "flow:valve1:vessel", + "859": "flow:valve1:vessel", + "860": "flow:valve1:vessel", + "861": "flow:valve1:vessel", + "862": "flow:valve1:vessel", + "863": "flow:valve1:vessel", + "864": "flow:valve1:vessel", + "865": "flow:valve1:vessel", + "866": "flow:valve1:vessel", + "867": "flow:valve1:vessel", + "868": "flow:valve1:vessel", + "869": "flow:valve1:vessel", + "870": "flow:valve1:vessel", + "871": "flow:valve1:vessel", + "872": "flow:valve1:vessel", + "873": "flow:valve1:vessel", + "874": "flow:valve1:vessel", + "875": "flow:valve1:vessel", + "876": "flow:valve1:vessel", + "877": "flow:valve1:vessel", + "878": "flow:valve1:vessel", + "879": "flow:valve1:vessel", + "880": "flow:valve1:vessel", + "881": "flow:valve1:vessel", + "882": "flow:valve1:vessel", + "883": "flow:valve1:vessel", + "884": "flow:valve1:vessel", + "885": "flow:valve1:vessel", + "886": "flow:valve1:vessel", + "887": "flow:valve1:vessel", + "888": "flow:valve1:vessel", + "889": "flow:valve1:vessel", + "890": "flow:valve1:vessel", + "891": "flow:valve1:vessel", + "892": "flow:valve1:vessel", + "893": "flow:valve1:vessel", + "894": "flow:valve1:vessel", + "895": "flow:valve1:vessel", + "896": "flow:valve1:vessel", + "897": "flow:valve1:vessel", + "898": "flow:valve1:vessel", + "899": "flow:valve1:vessel", + "900": "flow:valve1:vessel", + "901": "flow:valve1:vessel", + "902": "flow:valve1:vessel", + "903": "flow:valve1:vessel", + "904": "flow:valve1:vessel", + "905": "flow:valve1:vessel", + "906": "flow:valve1:vessel", + "907": "flow:valve1:vessel", + "908": "flow:valve1:vessel", + "909": "pressure:valve1:vessel", + "910": "pressure:valve1:vessel", + "911": "pressure:valve1:vessel", + "912": "pressure:valve1:vessel", + "913": "pressure:valve1:vessel", + "914": "pressure:valve1:vessel", + "915": "pressure:valve1:vessel", + "916": "pressure:valve1:vessel", + "917": "pressure:valve1:vessel", + "918": "pressure:valve1:vessel", + "919": "pressure:valve1:vessel", + "920": "pressure:valve1:vessel", + "921": "pressure:valve1:vessel", + "922": "pressure:valve1:vessel", + "923": "pressure:valve1:vessel", + "924": "pressure:valve1:vessel", + "925": "pressure:valve1:vessel", + "926": "pressure:valve1:vessel", + "927": "pressure:valve1:vessel", + "928": "pressure:valve1:vessel", + "929": "pressure:valve1:vessel", + "930": "pressure:valve1:vessel", + "931": "pressure:valve1:vessel", + "932": "pressure:valve1:vessel", + "933": "pressure:valve1:vessel", + "934": "pressure:valve1:vessel", + "935": "pressure:valve1:vessel", + "936": "pressure:valve1:vessel", + "937": "pressure:valve1:vessel", + "938": "pressure:valve1:vessel", + "939": "pressure:valve1:vessel", + "940": "pressure:valve1:vessel", + "941": "pressure:valve1:vessel", + "942": "pressure:valve1:vessel", + "943": "pressure:valve1:vessel", + "944": "pressure:valve1:vessel", + "945": "pressure:valve1:vessel", + "946": "pressure:valve1:vessel", + "947": "pressure:valve1:vessel", + "948": "pressure:valve1:vessel", + "949": "pressure:valve1:vessel", + "950": "pressure:valve1:vessel", + "951": "pressure:valve1:vessel", + "952": "pressure:valve1:vessel", + "953": "pressure:valve1:vessel", + "954": "pressure:valve1:vessel", + "955": "pressure:valve1:vessel", + "956": "pressure:valve1:vessel", + "957": "pressure:valve1:vessel", + "958": "pressure:valve1:vessel", + "959": "pressure:valve1:vessel", + "960": "pressure:valve1:vessel", + "961": "pressure:valve1:vessel", + "962": "pressure:valve1:vessel", + "963": "pressure:valve1:vessel", + "964": "pressure:valve1:vessel", + "965": "pressure:valve1:vessel", + "966": "pressure:valve1:vessel", + "967": "pressure:valve1:vessel", + "968": "pressure:valve1:vessel", + "969": "pressure:valve1:vessel", + "970": "pressure:valve1:vessel", + "971": "pressure:valve1:vessel", + "972": "pressure:valve1:vessel", + "973": "pressure:valve1:vessel", + "974": "pressure:valve1:vessel", + "975": "pressure:valve1:vessel", + "976": "pressure:valve1:vessel", + "977": "pressure:valve1:vessel", + "978": "pressure:valve1:vessel", + "979": "pressure:valve1:vessel", + "980": "pressure:valve1:vessel", + "981": "pressure:valve1:vessel", + "982": "pressure:valve1:vessel", + "983": "pressure:valve1:vessel", + "984": "pressure:valve1:vessel", + "985": "pressure:valve1:vessel", + "986": "pressure:valve1:vessel", + "987": "pressure:valve1:vessel", + "988": "pressure:valve1:vessel", + "989": "pressure:valve1:vessel", + "990": "pressure:valve1:vessel", + "991": "pressure:valve1:vessel", + "992": "pressure:valve1:vessel", + "993": "pressure:valve1:vessel", + "994": "pressure:valve1:vessel", + "995": "pressure:valve1:vessel", + "996": "pressure:valve1:vessel", + "997": "pressure:valve1:vessel", + "998": "pressure:valve1:vessel", + "999": "pressure:valve1:vessel", + "1000": "pressure:valve1:vessel", + "1001": "pressure:valve1:vessel", + "1002": "pressure:valve1:vessel", + "1003": "pressure:valve1:vessel", + "1004": "pressure:valve1:vessel", + "1005": "pressure:valve1:vessel", + "1006": "pressure:valve1:vessel", + "1007": "pressure:valve1:vessel", + "1008": "pressure:valve1:vessel", + "1009": "pressure:valve1:vessel", + "1010": "Vc:ventricle", + "1011": "Vc:ventricle", + "1012": "Vc:ventricle", + "1013": "Vc:ventricle", + "1014": "Vc:ventricle", + "1015": "Vc:ventricle", + "1016": "Vc:ventricle", + "1017": "Vc:ventricle", + "1018": "Vc:ventricle", + "1019": "Vc:ventricle", + "1020": "Vc:ventricle", + "1021": "Vc:ventricle", + "1022": "Vc:ventricle", + "1023": "Vc:ventricle", + "1024": "Vc:ventricle", + "1025": "Vc:ventricle", + "1026": "Vc:ventricle", + "1027": "Vc:ventricle", + "1028": "Vc:ventricle", + "1029": "Vc:ventricle", + "1030": "Vc:ventricle", + "1031": "Vc:ventricle", + "1032": "Vc:ventricle", + "1033": "Vc:ventricle", + "1034": "Vc:ventricle", + "1035": "Vc:ventricle", + "1036": "Vc:ventricle", + "1037": "Vc:ventricle", + "1038": "Vc:ventricle", + "1039": "Vc:ventricle", + "1040": "Vc:ventricle", + "1041": "Vc:ventricle", + "1042": "Vc:ventricle", + "1043": "Vc:ventricle", + "1044": "Vc:ventricle", + "1045": "Vc:ventricle", + "1046": "Vc:ventricle", + "1047": "Vc:ventricle", + "1048": "Vc:ventricle", + "1049": "Vc:ventricle", + "1050": "Vc:ventricle", + "1051": "Vc:ventricle", + "1052": "Vc:ventricle", + "1053": "Vc:ventricle", + "1054": "Vc:ventricle", + "1055": "Vc:ventricle", + "1056": "Vc:ventricle", + "1057": "Vc:ventricle", + "1058": "Vc:ventricle", + "1059": "Vc:ventricle", + "1060": "Vc:ventricle", + "1061": "Vc:ventricle", + "1062": "Vc:ventricle", + "1063": "Vc:ventricle", + "1064": "Vc:ventricle", + "1065": "Vc:ventricle", + "1066": "Vc:ventricle", + "1067": "Vc:ventricle", + "1068": "Vc:ventricle", + "1069": "Vc:ventricle", + "1070": "Vc:ventricle", + "1071": "Vc:ventricle", + "1072": "Vc:ventricle", + "1073": "Vc:ventricle", + "1074": "Vc:ventricle", + "1075": "Vc:ventricle", + "1076": "Vc:ventricle", + "1077": "Vc:ventricle", + "1078": "Vc:ventricle", + "1079": "Vc:ventricle", + "1080": "Vc:ventricle", + "1081": "Vc:ventricle", + "1082": "Vc:ventricle", + "1083": "Vc:ventricle", + "1084": "Vc:ventricle", + "1085": "Vc:ventricle", + "1086": "Vc:ventricle", + "1087": "Vc:ventricle", + "1088": "Vc:ventricle", + "1089": "Vc:ventricle", + "1090": "Vc:ventricle", + "1091": "Vc:ventricle", + "1092": "Vc:ventricle", + "1093": "Vc:ventricle", + "1094": "Vc:ventricle", + "1095": "Vc:ventricle", + "1096": "Vc:ventricle", + "1097": "Vc:ventricle", + "1098": "Vc:ventricle", + "1099": "Vc:ventricle", + "1100": "Vc:ventricle", + "1101": "Vc:ventricle", + "1102": "Vc:ventricle", + "1103": "Vc:ventricle", + "1104": "Vc:ventricle", + "1105": "Vc:ventricle", + "1106": "Vc:ventricle", + "1107": "Vc:ventricle", + "1108": "Vc:ventricle", + "1109": "Vc:ventricle", + "1110": "Vc:ventricle" + }, + "time": { + "0": 0.0, + "1": 0.01, + "2": 0.02, + "3": 0.03, + "4": 0.04, + "5": 0.05, + "6": 0.06, + "7": 0.07, + "8": 0.08, + "9": 0.09, + "10": 0.1, + "11": 0.11, + "12": 0.12, + "13": 0.13, + "14": 0.14, + "15": 0.15, + "16": 0.16, + "17": 0.17, + "18": 0.18, + "19": 0.19, + "20": 0.2, + "21": 0.21, + "22": 0.22, + "23": 0.23, + "24": 0.24, + "25": 0.25, + "26": 0.26, + "27": 0.27, + "28": 0.28, + "29": 0.29, + "30": 0.3, + "31": 0.31, + "32": 0.32, + "33": 0.33, + "34": 0.34, + "35": 0.35, + "36": 0.36, + "37": 0.37, + "38": 0.38, + "39": 0.39, + "40": 0.4, + "41": 0.41, + "42": 0.42, + "43": 0.43, + "44": 0.44, + "45": 0.45, + "46": 0.46, + "47": 0.47, + "48": 0.48, + "49": 0.49, + "50": 0.5, + "51": 0.51, + "52": 0.52, + "53": 0.53, + "54": 0.54, + "55": 0.55, + "56": 0.56, + "57": 0.57, + "58": 0.58, + "59": 0.59, + "60": 0.6, + "61": 0.61, + "62": 0.62, + "63": 0.63, + "64": 0.64, + "65": 0.65, + "66": 0.66, + "67": 0.67, + "68": 0.68, + "69": 0.69, + "70": 0.7, + "71": 0.71, + "72": 0.72, + "73": 0.73, + "74": 0.74, + "75": 0.75, + "76": 0.76, + "77": 0.77, + "78": 0.78, + "79": 0.79, + "80": 0.8, + "81": 0.81, + "82": 0.82, + "83": 0.83, + "84": 0.84, + "85": 0.85, + "86": 0.86, + "87": 0.87, + "88": 0.88, + "89": 0.89, + "90": 0.9, + "91": 0.91, + "92": 0.92, + "93": 0.93, + "94": 0.94, + "95": 0.95, + "96": 0.96, + "97": 0.97, + "98": 0.98, + "99": 0.99, + "100": 1.0, + "101": 0.0, + "102": 0.01, + "103": 0.02, + "104": 0.03, + "105": 0.04, + "106": 0.05, + "107": 0.06, + "108": 0.07, + "109": 0.08, + "110": 0.09, + "111": 0.1, + "112": 0.11, + "113": 0.12, + "114": 0.13, + "115": 0.14, + "116": 0.15, + "117": 0.16, + "118": 0.17, + "119": 0.18, + "120": 0.19, + "121": 0.2, + "122": 0.21, + "123": 0.22, + "124": 0.23, + "125": 0.24, + "126": 0.25, + "127": 0.26, + "128": 0.27, + "129": 0.28, + "130": 0.29, + "131": 0.3, + "132": 0.31, + "133": 0.32, + "134": 0.33, + "135": 0.34, + "136": 0.35, + "137": 0.36, + "138": 0.37, + "139": 0.38, + "140": 0.39, + "141": 0.4, + "142": 0.41, + "143": 0.42, + "144": 0.43, + "145": 0.44, + "146": 0.45, + "147": 0.46, + "148": 0.47, + "149": 0.48, + "150": 0.49, + "151": 0.5, + "152": 0.51, + "153": 0.52, + "154": 0.53, + "155": 0.54, + "156": 0.55, + "157": 0.56, + "158": 0.57, + "159": 0.58, + "160": 0.59, + "161": 0.6, + "162": 0.61, + "163": 0.62, + "164": 0.63, + "165": 0.64, + "166": 0.65, + "167": 0.66, + "168": 0.67, + "169": 0.68, + "170": 0.69, + "171": 0.7, + "172": 0.71, + "173": 0.72, + "174": 0.73, + "175": 0.74, + "176": 0.75, + "177": 0.76, + "178": 0.77, + "179": 0.78, + "180": 0.79, + "181": 0.8, + "182": 0.81, + "183": 0.82, + "184": 0.83, + "185": 0.84, + "186": 0.85, + "187": 0.86, + "188": 0.87, + "189": 0.88, + "190": 0.89, + "191": 0.9, + "192": 0.91, + "193": 0.92, + "194": 0.93, + "195": 0.94, + "196": 0.95, + "197": 0.96, + "198": 0.97, + "199": 0.98, + "200": 0.99, + "201": 1.0, + "202": 0.0, + "203": 0.01, + "204": 0.02, + "205": 0.03, + "206": 0.04, + "207": 0.05, + "208": 0.06, + "209": 0.07, + "210": 0.08, + "211": 0.09, + "212": 0.1, + "213": 0.11, + "214": 0.12, + "215": 0.13, + "216": 0.14, + "217": 0.15, + "218": 0.16, + "219": 0.17, + "220": 0.18, + "221": 0.19, + "222": 0.2, + "223": 0.21, + "224": 0.22, + "225": 0.23, + "226": 0.24, + "227": 0.25, + "228": 0.26, + "229": 0.27, + "230": 0.28, + "231": 0.29, + "232": 0.3, + "233": 0.31, + "234": 0.32, + "235": 0.33, + "236": 0.34, + "237": 0.35, + "238": 0.36, + "239": 0.37, + "240": 0.38, + "241": 0.39, + "242": 0.4, + "243": 0.41, + "244": 0.42, + "245": 0.43, + "246": 0.44, + "247": 0.45, + "248": 0.46, + "249": 0.47, + "250": 0.48, + "251": 0.49, + "252": 0.5, + "253": 0.51, + "254": 0.52, + "255": 0.53, + "256": 0.54, + "257": 0.55, + "258": 0.56, + "259": 0.57, + "260": 0.58, + "261": 0.59, + "262": 0.6, + "263": 0.61, + "264": 0.62, + "265": 0.63, + "266": 0.64, + "267": 0.65, + "268": 0.66, + "269": 0.67, + "270": 0.68, + "271": 0.69, + "272": 0.7, + "273": 0.71, + "274": 0.72, + "275": 0.73, + "276": 0.74, + "277": 0.75, + "278": 0.76, + "279": 0.77, + "280": 0.78, + "281": 0.79, + "282": 0.8, + "283": 0.81, + "284": 0.82, + "285": 0.83, + "286": 0.84, + "287": 0.85, + "288": 0.86, + "289": 0.87, + "290": 0.88, + "291": 0.89, + "292": 0.9, + "293": 0.91, + "294": 0.92, + "295": 0.93, + "296": 0.94, + "297": 0.95, + "298": 0.96, + "299": 0.97, + "300": 0.98, + "301": 0.99, + "302": 1.0, + "303": 0.0, + "304": 0.01, + "305": 0.02, + "306": 0.03, + "307": 0.04, + "308": 0.05, + "309": 0.06, + "310": 0.07, + "311": 0.08, + "312": 0.09, + "313": 0.1, + "314": 0.11, + "315": 0.12, + "316": 0.13, + "317": 0.14, + "318": 0.15, + "319": 0.16, + "320": 0.17, + "321": 0.18, + "322": 0.19, + "323": 0.2, + "324": 0.21, + "325": 0.22, + "326": 0.23, + "327": 0.24, + "328": 0.25, + "329": 0.26, + "330": 0.27, + "331": 0.28, + "332": 0.29, + "333": 0.3, + "334": 0.31, + "335": 0.32, + "336": 0.33, + "337": 0.34, + "338": 0.35, + "339": 0.36, + "340": 0.37, + "341": 0.38, + "342": 0.39, + "343": 0.4, + "344": 0.41, + "345": 0.42, + "346": 0.43, + "347": 0.44, + "348": 0.45, + "349": 0.46, + "350": 0.47, + "351": 0.48, + "352": 0.49, + "353": 0.5, + "354": 0.51, + "355": 0.52, + "356": 0.53, + "357": 0.54, + "358": 0.55, + "359": 0.56, + "360": 0.57, + "361": 0.58, + "362": 0.59, + "363": 0.6, + "364": 0.61, + "365": 0.62, + "366": 0.63, + "367": 0.64, + "368": 0.65, + "369": 0.66, + "370": 0.67, + "371": 0.68, + "372": 0.69, + "373": 0.7, + "374": 0.71, + "375": 0.72, + "376": 0.73, + "377": 0.74, + "378": 0.75, + "379": 0.76, + "380": 0.77, + "381": 0.78, + "382": 0.79, + "383": 0.8, + "384": 0.81, + "385": 0.82, + "386": 0.83, + "387": 0.84, + "388": 0.85, + "389": 0.86, + "390": 0.87, + "391": 0.88, + "392": 0.89, + "393": 0.9, + "394": 0.91, + "395": 0.92, + "396": 0.93, + "397": 0.94, + "398": 0.95, + "399": 0.96, + "400": 0.97, + "401": 0.98, + "402": 0.99, + "403": 1.0, + "404": 0.0, + "405": 0.01, + "406": 0.02, + "407": 0.03, + "408": 0.04, + "409": 0.05, + "410": 0.06, + "411": 0.07, + "412": 0.08, + "413": 0.09, + "414": 0.1, + "415": 0.11, + "416": 0.12, + "417": 0.13, + "418": 0.14, + "419": 0.15, + "420": 0.16, + "421": 0.17, + "422": 0.18, + "423": 0.19, + "424": 0.2, + "425": 0.21, + "426": 0.22, + "427": 0.23, + "428": 0.24, + "429": 0.25, + "430": 0.26, + "431": 0.27, + "432": 0.28, + "433": 0.29, + "434": 0.3, + "435": 0.31, + "436": 0.32, + "437": 0.33, + "438": 0.34, + "439": 0.35, + "440": 0.36, + "441": 0.37, + "442": 0.38, + "443": 0.39, + "444": 0.4, + "445": 0.41, + "446": 0.42, + "447": 0.43, + "448": 0.44, + "449": 0.45, + "450": 0.46, + "451": 0.47, + "452": 0.48, + "453": 0.49, + "454": 0.5, + "455": 0.51, + "456": 0.52, + "457": 0.53, + "458": 0.54, + "459": 0.55, + "460": 0.56, + "461": 0.57, + "462": 0.58, + "463": 0.59, + "464": 0.6, + "465": 0.61, + "466": 0.62, + "467": 0.63, + "468": 0.64, + "469": 0.65, + "470": 0.66, + "471": 0.67, + "472": 0.68, + "473": 0.69, + "474": 0.7, + "475": 0.71, + "476": 0.72, + "477": 0.73, + "478": 0.74, + "479": 0.75, + "480": 0.76, + "481": 0.77, + "482": 0.78, + "483": 0.79, + "484": 0.8, + "485": 0.81, + "486": 0.82, + "487": 0.83, + "488": 0.84, + "489": 0.85, + "490": 0.86, + "491": 0.87, + "492": 0.88, + "493": 0.89, + "494": 0.9, + "495": 0.91, + "496": 0.92, + "497": 0.93, + "498": 0.94, + "499": 0.95, + "500": 0.96, + "501": 0.97, + "502": 0.98, + "503": 0.99, + "504": 1.0, + "505": 0.0, + "506": 0.01, + "507": 0.02, + "508": 0.03, + "509": 0.04, + "510": 0.05, + "511": 0.06, + "512": 0.07, + "513": 0.08, + "514": 0.09, + "515": 0.1, + "516": 0.11, + "517": 0.12, + "518": 0.13, + "519": 0.14, + "520": 0.15, + "521": 0.16, + "522": 0.17, + "523": 0.18, + "524": 0.19, + "525": 0.2, + "526": 0.21, + "527": 0.22, + "528": 0.23, + "529": 0.24, + "530": 0.25, + "531": 0.26, + "532": 0.27, + "533": 0.28, + "534": 0.29, + "535": 0.3, + "536": 0.31, + "537": 0.32, + "538": 0.33, + "539": 0.34, + "540": 0.35, + "541": 0.36, + "542": 0.37, + "543": 0.38, + "544": 0.39, + "545": 0.4, + "546": 0.41, + "547": 0.42, + "548": 0.43, + "549": 0.44, + "550": 0.45, + "551": 0.46, + "552": 0.47, + "553": 0.48, + "554": 0.49, + "555": 0.5, + "556": 0.51, + "557": 0.52, + "558": 0.53, + "559": 0.54, + "560": 0.55, + "561": 0.56, + "562": 0.57, + "563": 0.58, + "564": 0.59, + "565": 0.6, + "566": 0.61, + "567": 0.62, + "568": 0.63, + "569": 0.64, + "570": 0.65, + "571": 0.66, + "572": 0.67, + "573": 0.68, + "574": 0.69, + "575": 0.7, + "576": 0.71, + "577": 0.72, + "578": 0.73, + "579": 0.74, + "580": 0.75, + "581": 0.76, + "582": 0.77, + "583": 0.78, + "584": 0.79, + "585": 0.8, + "586": 0.81, + "587": 0.82, + "588": 0.83, + "589": 0.84, + "590": 0.85, + "591": 0.86, + "592": 0.87, + "593": 0.88, + "594": 0.89, + "595": 0.9, + "596": 0.91, + "597": 0.92, + "598": 0.93, + "599": 0.94, + "600": 0.95, + "601": 0.96, + "602": 0.97, + "603": 0.98, + "604": 0.99, + "605": 1.0, + "606": 0.0, + "607": 0.01, + "608": 0.02, + "609": 0.03, + "610": 0.04, + "611": 0.05, + "612": 0.06, + "613": 0.07, + "614": 0.08, + "615": 0.09, + "616": 0.1, + "617": 0.11, + "618": 0.12, + "619": 0.13, + "620": 0.14, + "621": 0.15, + "622": 0.16, + "623": 0.17, + "624": 0.18, + "625": 0.19, + "626": 0.2, + "627": 0.21, + "628": 0.22, + "629": 0.23, + "630": 0.24, + "631": 0.25, + "632": 0.26, + "633": 0.27, + "634": 0.28, + "635": 0.29, + "636": 0.3, + "637": 0.31, + "638": 0.32, + "639": 0.33, + "640": 0.34, + "641": 0.35, + "642": 0.36, + "643": 0.37, + "644": 0.38, + "645": 0.39, + "646": 0.4, + "647": 0.41, + "648": 0.42, + "649": 0.43, + "650": 0.44, + "651": 0.45, + "652": 0.46, + "653": 0.47, + "654": 0.48, + "655": 0.49, + "656": 0.5, + "657": 0.51, + "658": 0.52, + "659": 0.53, + "660": 0.54, + "661": 0.55, + "662": 0.56, + "663": 0.57, + "664": 0.58, + "665": 0.59, + "666": 0.6, + "667": 0.61, + "668": 0.62, + "669": 0.63, + "670": 0.64, + "671": 0.65, + "672": 0.66, + "673": 0.67, + "674": 0.68, + "675": 0.69, + "676": 0.7, + "677": 0.71, + "678": 0.72, + "679": 0.73, + "680": 0.74, + "681": 0.75, + "682": 0.76, + "683": 0.77, + "684": 0.78, + "685": 0.79, + "686": 0.8, + "687": 0.81, + "688": 0.82, + "689": 0.83, + "690": 0.84, + "691": 0.85, + "692": 0.86, + "693": 0.87, + "694": 0.88, + "695": 0.89, + "696": 0.9, + "697": 0.91, + "698": 0.92, + "699": 0.93, + "700": 0.94, + "701": 0.95, + "702": 0.96, + "703": 0.97, + "704": 0.98, + "705": 0.99, + "706": 1.0, + "707": 0.0, + "708": 0.01, + "709": 0.02, + "710": 0.03, + "711": 0.04, + "712": 0.05, + "713": 0.06, + "714": 0.07, + "715": 0.08, + "716": 0.09, + "717": 0.1, + "718": 0.11, + "719": 0.12, + "720": 0.13, + "721": 0.14, + "722": 0.15, + "723": 0.16, + "724": 0.17, + "725": 0.18, + "726": 0.19, + "727": 0.2, + "728": 0.21, + "729": 0.22, + "730": 0.23, + "731": 0.24, + "732": 0.25, + "733": 0.26, + "734": 0.27, + "735": 0.28, + "736": 0.29, + "737": 0.3, + "738": 0.31, + "739": 0.32, + "740": 0.33, + "741": 0.34, + "742": 0.35, + "743": 0.36, + "744": 0.37, + "745": 0.38, + "746": 0.39, + "747": 0.4, + "748": 0.41, + "749": 0.42, + "750": 0.43, + "751": 0.44, + "752": 0.45, + "753": 0.46, + "754": 0.47, + "755": 0.48, + "756": 0.49, + "757": 0.5, + "758": 0.51, + "759": 0.52, + "760": 0.53, + "761": 0.54, + "762": 0.55, + "763": 0.56, + "764": 0.57, + "765": 0.58, + "766": 0.59, + "767": 0.6, + "768": 0.61, + "769": 0.62, + "770": 0.63, + "771": 0.64, + "772": 0.65, + "773": 0.66, + "774": 0.67, + "775": 0.68, + "776": 0.69, + "777": 0.7, + "778": 0.71, + "779": 0.72, + "780": 0.73, + "781": 0.74, + "782": 0.75, + "783": 0.76, + "784": 0.77, + "785": 0.78, + "786": 0.79, + "787": 0.8, + "788": 0.81, + "789": 0.82, + "790": 0.83, + "791": 0.84, + "792": 0.85, + "793": 0.86, + "794": 0.87, + "795": 0.88, + "796": 0.89, + "797": 0.9, + "798": 0.91, + "799": 0.92, + "800": 0.93, + "801": 0.94, + "802": 0.95, + "803": 0.96, + "804": 0.97, + "805": 0.98, + "806": 0.99, + "807": 1.0, + "808": 0.0, + "809": 0.01, + "810": 0.02, + "811": 0.03, + "812": 0.04, + "813": 0.05, + "814": 0.06, + "815": 0.07, + "816": 0.08, + "817": 0.09, + "818": 0.1, + "819": 0.11, + "820": 0.12, + "821": 0.13, + "822": 0.14, + "823": 0.15, + "824": 0.16, + "825": 0.17, + "826": 0.18, + "827": 0.19, + "828": 0.2, + "829": 0.21, + "830": 0.22, + "831": 0.23, + "832": 0.24, + "833": 0.25, + "834": 0.26, + "835": 0.27, + "836": 0.28, + "837": 0.29, + "838": 0.3, + "839": 0.31, + "840": 0.32, + "841": 0.33, + "842": 0.34, + "843": 0.35, + "844": 0.36, + "845": 0.37, + "846": 0.38, + "847": 0.39, + "848": 0.4, + "849": 0.41, + "850": 0.42, + "851": 0.43, + "852": 0.44, + "853": 0.45, + "854": 0.46, + "855": 0.47, + "856": 0.48, + "857": 0.49, + "858": 0.5, + "859": 0.51, + "860": 0.52, + "861": 0.53, + "862": 0.54, + "863": 0.55, + "864": 0.56, + "865": 0.57, + "866": 0.58, + "867": 0.59, + "868": 0.6, + "869": 0.61, + "870": 0.62, + "871": 0.63, + "872": 0.64, + "873": 0.65, + "874": 0.66, + "875": 0.67, + "876": 0.68, + "877": 0.69, + "878": 0.7, + "879": 0.71, + "880": 0.72, + "881": 0.73, + "882": 0.74, + "883": 0.75, + "884": 0.76, + "885": 0.77, + "886": 0.78, + "887": 0.79, + "888": 0.8, + "889": 0.81, + "890": 0.82, + "891": 0.83, + "892": 0.84, + "893": 0.85, + "894": 0.86, + "895": 0.87, + "896": 0.88, + "897": 0.89, + "898": 0.9, + "899": 0.91, + "900": 0.92, + "901": 0.93, + "902": 0.94, + "903": 0.95, + "904": 0.96, + "905": 0.97, + "906": 0.98, + "907": 0.99, + "908": 1.0, + "909": 0.0, + "910": 0.01, + "911": 0.02, + "912": 0.03, + "913": 0.04, + "914": 0.05, + "915": 0.06, + "916": 0.07, + "917": 0.08, + "918": 0.09, + "919": 0.1, + "920": 0.11, + "921": 0.12, + "922": 0.13, + "923": 0.14, + "924": 0.15, + "925": 0.16, + "926": 0.17, + "927": 0.18, + "928": 0.19, + "929": 0.2, + "930": 0.21, + "931": 0.22, + "932": 0.23, + "933": 0.24, + "934": 0.25, + "935": 0.26, + "936": 0.27, + "937": 0.28, + "938": 0.29, + "939": 0.3, + "940": 0.31, + "941": 0.32, + "942": 0.33, + "943": 0.34, + "944": 0.35, + "945": 0.36, + "946": 0.37, + "947": 0.38, + "948": 0.39, + "949": 0.4, + "950": 0.41, + "951": 0.42, + "952": 0.43, + "953": 0.44, + "954": 0.45, + "955": 0.46, + "956": 0.47, + "957": 0.48, + "958": 0.49, + "959": 0.5, + "960": 0.51, + "961": 0.52, + "962": 0.53, + "963": 0.54, + "964": 0.55, + "965": 0.56, + "966": 0.57, + "967": 0.58, + "968": 0.59, + "969": 0.6, + "970": 0.61, + "971": 0.62, + "972": 0.63, + "973": 0.64, + "974": 0.65, + "975": 0.66, + "976": 0.67, + "977": 0.68, + "978": 0.69, + "979": 0.7, + "980": 0.71, + "981": 0.72, + "982": 0.73, + "983": 0.74, + "984": 0.75, + "985": 0.76, + "986": 0.77, + "987": 0.78, + "988": 0.79, + "989": 0.8, + "990": 0.81, + "991": 0.82, + "992": 0.83, + "993": 0.84, + "994": 0.85, + "995": 0.86, + "996": 0.87, + "997": 0.88, + "998": 0.89, + "999": 0.9, + "1000": 0.91, + "1001": 0.92, + "1002": 0.93, + "1003": 0.94, + "1004": 0.95, + "1005": 0.96, + "1006": 0.97, + "1007": 0.98, + "1008": 0.99, + "1009": 1.0, + "1010": 0.0, + "1011": 0.01, + "1012": 0.02, + "1013": 0.03, + "1014": 0.04, + "1015": 0.05, + "1016": 0.06, + "1017": 0.07, + "1018": 0.08, + "1019": 0.09, + "1020": 0.1, + "1021": 0.11, + "1022": 0.12, + "1023": 0.13, + "1024": 0.14, + "1025": 0.15, + "1026": 0.16, + "1027": 0.17, + "1028": 0.18, + "1029": 0.19, + "1030": 0.2, + "1031": 0.21, + "1032": 0.22, + "1033": 0.23, + "1034": 0.24, + "1035": 0.25, + "1036": 0.26, + "1037": 0.27, + "1038": 0.28, + "1039": 0.29, + "1040": 0.3, + "1041": 0.31, + "1042": 0.32, + "1043": 0.33, + "1044": 0.34, + "1045": 0.35, + "1046": 0.36, + "1047": 0.37, + "1048": 0.38, + "1049": 0.39, + "1050": 0.4, + "1051": 0.41, + "1052": 0.42, + "1053": 0.43, + "1054": 0.44, + "1055": 0.45, + "1056": 0.46, + "1057": 0.47, + "1058": 0.48, + "1059": 0.49, + "1060": 0.5, + "1061": 0.51, + "1062": 0.52, + "1063": 0.53, + "1064": 0.54, + "1065": 0.55, + "1066": 0.56, + "1067": 0.57, + "1068": 0.58, + "1069": 0.59, + "1070": 0.6, + "1071": 0.61, + "1072": 0.62, + "1073": 0.63, + "1074": 0.64, + "1075": 0.65, + "1076": 0.66, + "1077": 0.67, + "1078": 0.68, + "1079": 0.69, + "1080": 0.7, + "1081": 0.71, + "1082": 0.72, + "1083": 0.73, + "1084": 0.74, + "1085": 0.75, + "1086": 0.76, + "1087": 0.77, + "1088": 0.78, + "1089": 0.79, + "1090": 0.8, + "1091": 0.81, + "1092": 0.82, + "1093": 0.83, + "1094": 0.84, + "1095": 0.85, + "1096": 0.86, + "1097": 0.87, + "1098": 0.88, + "1099": 0.89, + "1100": 0.9, + "1101": 0.91, + "1102": 0.92, + "1103": 0.93, + "1104": 0.94, + "1105": 0.95, + "1106": 0.96, + "1107": 0.97, + "1108": 0.98, + "1109": 0.99, + "1110": 1.0 + }, + "y": { + "0": -0.0005443474, + "1": -0.0005468206, + "2": -0.000549056, + "3": -0.0005510765, + "4": -0.0005529026, + "5": -0.0005545531, + "6": -0.0005560449, + "7": -0.0005573932, + "8": -0.0005586118, + "9": -0.0005597132, + "10": -0.0005607086, + "11": -0.0005616083, + "12": -0.0005624215, + "13": -0.0005631564, + "14": -0.0005638206, + "15": -0.000564421, + "16": -0.0005649636, + "17": -0.0005654541, + "18": -0.0005658973, + "19": -0.000566298, + "20": -0.0005666601, + "21": -0.0005667351, + "22": -0.0005654108, + "23": -0.0005614257, + "24": -0.0005537516, + "25": -0.0005415844, + "26": -0.0005243779, + "27": -0.0005018665, + "28": -0.0004740852, + "29": -0.0004413802, + "30": -0.0004044065, + "31": 0.0005556742, + "32": 0.0032342645, + "33": 0.00668777, + "34": 0.0099076358, + "35": 0.0123479087, + "36": 0.0136656086, + "37": 0.0136788233, + "38": 0.0125564416, + "39": 0.0113208963, + "40": 0.0102405385, + "41": 0.0092489092, + "42": 0.0083468584, + "43": 0.0075236448, + "44": 0.0067722258, + "45": 0.0060860958, + "46": 0.0054597391, + "47": 0.0048883817, + "48": 0.0043678919, + "49": 0.0038946655, + "50": 0.0034655304, + "51": 0.003077409, + "52": 0.0027266321, + "53": 0.002409586, + "54": 0.0021230312, + "55": 0.0018640344, + "56": 0.0016299455, + "57": 0.001418369, + "58": 0.0012271401, + "59": 0.0010543017, + "60": 0.0008980853, + "61": 0.0007568923, + "62": 0.000629278, + "63": 0.0005139364, + "64": 0.0004096873, + "65": 0.0003154639, + "66": 0.000230302, + "67": 0.0001533302, + "68": 0.0000837608, + "69": 0.000020882, + "70": -0.0000359498, + "71": -0.000087316, + "72": -0.0001337423, + "73": -0.0001757037, + "74": -0.0002136297, + "75": -0.0002479083, + "76": -0.0002788903, + "77": -0.0003068928, + "78": -0.0003322022, + "79": -0.0003550776, + "80": -0.0003757531, + "81": -0.0003944402, + "82": -0.0004113301, + "83": -0.0004265958, + "84": -0.0004403933, + "85": -0.0004528639, + "86": -0.0004641352, + "87": -0.0004743225, + "88": -0.0004835301, + "89": -0.0004918522, + "90": -0.000499374, + "91": -0.0005061724, + "92": -0.000512317, + "93": -0.0005178706, + "94": -0.0005228902, + "95": -0.000527427, + "96": -0.0005315275, + "97": -0.0005352337, + "98": -0.0005385834, + "99": -0.000541611, + "100": -0.0005443474, + "101": 63.4556526345, + "102": 63.4531793686, + "103": 63.4509439586, + "104": 63.4489235299, + "105": 63.4470974076, + "106": 63.4454469051, + "107": 63.4439551329, + "108": 63.4426068306, + "109": 63.4413882104, + "110": 63.4402868104, + "111": 63.4392913625, + "112": 63.4383916766, + "113": 63.4375785371, + "114": 63.4368436103, + "115": 63.4361793655, + "116": 63.4355790022, + "117": 63.4350363767, + "118": 63.4345459363, + "119": 63.4341026623, + "120": 63.4337020187, + "121": 63.4333399057, + "122": 63.4332648702, + "123": 63.4345892235, + "124": 63.4385742726, + "125": 63.4462484436, + "126": 63.4584156323, + "127": 63.4756221259, + "128": 63.4981334886, + "129": 63.5259147522, + "130": 63.5586197639, + "131": 63.5955934548, + "132": 64.5556741554, + "133": 67.2342645371, + "134": 70.687769965, + "135": 73.9076358374, + "136": 76.3479087141, + "137": 77.6656086018, + "138": 77.6788233028, + "139": 76.5564416342, + "140": 75.3208962806, + "141": 74.2405384647, + "142": 73.2489091681, + "143": 72.3468583502, + "144": 71.5236448125, + "145": 70.7722258444, + "146": 70.0860958177, + "147": 69.4597391073, + "148": 68.8883817486, + "149": 68.3678918851, + "150": 67.894665482, + "151": 67.4655303673, + "152": 67.0774089508, + "153": 66.7266320953, + "154": 66.4095860177, + "155": 66.1230311811, + "156": 65.8640343667, + "157": 65.6299454697, + "158": 65.4183690469, + "159": 65.2271400656, + "160": 65.0543016981, + "161": 64.8980853075, + "162": 64.7568923477, + "163": 64.6292780056, + "164": 64.513936417, + "165": 64.4096873032, + "166": 64.3154638939, + "167": 64.2303020106, + "168": 64.1533302007, + "169": 64.0837608193, + "170": 64.0208819704, + "171": 63.9640502211, + "172": 63.9126840179, + "173": 63.8662577358, + "174": 63.8242962995, + "175": 63.7863703217, + "176": 63.75209171, + "177": 63.7211096947, + "178": 63.6931072402, + "179": 63.6677978, + "180": 63.6449223853, + "181": 63.6242469144, + "182": 63.6055598172, + "183": 63.5886698705, + "184": 63.5734042412, + "185": 63.5596067178, + "186": 63.5471361114, + "187": 63.5358648117, + "188": 63.5256774805, + "189": 63.5164698719, + "190": 63.5081477654, + "191": 63.5006260016, + "192": 63.4938276111, + "193": 63.4876830266, + "194": 63.4821293711, + "195": 63.4771098147, + "196": 63.4725729927, + "197": 63.4684724802, + "198": 63.4647663171, + "199": 63.4614165785, + "200": 63.4583889868, + "201": 63.455652561, + "202": -0.0000636644, + "203": -0.0000636303, + "204": -0.0000595888, + "205": -0.000049345, + "206": -0.0000342823, + "207": -0.000016435, + "208": 0.0000017864, + "209": 0.0188132749, + "210": 0.0293435117, + "211": 0.0360125609, + "212": 0.0349986442, + "213": 0.0278992596, + "214": 0.0149429683, + "215": -0.0017552698, + "216": 0.0008566343, + "217": -0.0004759667, + "218": 0.0001673517, + "219": -0.000170519, + "220": -0.0000088691, + "221": -0.0000910644, + "222": -0.0000499668, + "223": -0.0000755051, + "224": -0.0000887551, + "225": -0.0001296603, + "226": -0.0001767926, + "227": -0.0002386772, + "228": -0.0003080931, + "229": -0.0003849181, + "230": -0.0004647565, + "231": -0.0005447477, + "232": -0.0006208641, + "233": -0.0006895373, + "234": -0.0007471768, + "235": -0.0007907701, + "236": -0.0008179291, + "237": -0.0008271618, + "238": -0.0008179486, + "239": -0.0007908057, + "240": -0.0007472326, + "241": -0.0006895972, + "242": -0.0006209506, + "243": -0.0005448031, + "244": -0.0004648812, + "245": -0.0003848962, + "246": -0.0003083445, + "247": -0.000238354, + "248": -0.0001775859, + "249": -0.0001281865, + "250": -0.0000917819, + "251": -0.0000694986, + "252": -0.0000619953, + "253": -0.0000644986, + "254": -0.000063247, + "255": -0.0000638728, + "256": -0.0000635599, + "257": -0.0000637164, + "258": -0.0000636381, + "259": -0.0000636773, + "260": -0.0000636577, + "261": -0.0000636675, + "262": -0.0000636626, + "263": -0.0000636651, + "264": -0.0000636638, + "265": -0.0000636644, + "266": -0.0000636641, + "267": -0.0000636643, + "268": -0.0000636642, + "269": -0.0000636643, + "270": -0.0000636643, + "271": -0.0000636643, + "272": -0.0000636643, + "273": -0.0000636643, + "274": -0.0000636643, + "275": -0.0000636643, + "276": -0.0000636643, + "277": -0.0000636643, + "278": -0.0000636643, + "279": -0.0000636643, + "280": -0.0000636643, + "281": -0.0000636643, + "282": -0.0000636643, + "283": -0.0000636643, + "284": -0.0000636643, + "285": -0.0000636643, + "286": -0.0000636643, + "287": -0.0000636643, + "288": -0.0000636644, + "289": -0.0000636644, + "290": -0.0000636644, + "291": -0.0000636644, + "292": -0.0000636644, + "293": -0.0000636644, + "294": -0.0000636644, + "295": -0.0000636644, + "296": -0.0000636644, + "297": -0.0000636644, + "298": -0.0000636644, + "299": -0.0000636644, + "300": -0.0000636644, + "301": -0.0000636644, + "302": -0.0000636644, + "303": -2.773431984e-38, + "304": 0.003414699, + "305": 0.4075651, + "306": 1.431949, + "307": 2.938218, + "308": 4.722943, + "309": 6.545085, + "310": 8.158555, + "311": 9.345445, + "312": 9.945458, + "313": 9.87756, + "314": 9.15092, + "315": 7.863676, + "316": 6.189676, + "317": 4.355004, + "318": 2.607442, + "319": 1.183009, + "320": 0.274081, + "321": -0.0, + "322": 0.0, + "323": -0.0, + "324": 0.0, + "325": -0.0, + "326": 0.0, + "327": -0.0, + "328": 0.0, + "329": -5.238864897e-16, + "330": 2.619432449e-16, + "331": -1.309716224e-16, + "332": 6.548581122e-17, + "333": -3.274290561e-17, + "334": 1.63714528e-17, + "335": -8.185726402e-18, + "336": 4.092863201e-18, + "337": -2.046431601e-18, + "338": 1.0232158e-18, + "339": -5.116079001e-19, + "340": 2.558039501e-19, + "341": -1.27901975e-19, + "342": 6.395098752e-20, + "343": -3.197549376e-20, + "344": 1.598774688e-20, + "345": -7.99387344e-21, + "346": 3.99693672e-21, + "347": -1.99846836e-21, + "348": 9.9923418e-22, + "349": -4.9961709e-22, + "350": 2.49808545e-22, + "351": -1.249042725e-22, + "352": 6.245213625e-23, + "353": -3.122606812e-23, + "354": 1.561303406e-23, + "355": -7.806517031e-24, + "356": 3.903258515e-24, + "357": -1.951629258e-24, + "358": 9.758146289e-25, + "359": -4.879073144e-25, + "360": 2.439536572e-25, + "361": -1.219768286e-25, + "362": 6.09884143e-26, + "363": -3.049420715e-26, + "364": 1.524710358e-26, + "365": -7.623551788e-27, + "366": 3.811775894e-27, + "367": -1.905887947e-27, + "368": 9.529439735e-28, + "369": -4.764719868e-28, + "370": 2.382359934e-28, + "371": -1.191179967e-28, + "372": 5.955899834e-29, + "373": -2.977949917e-29, + "374": 1.488974959e-29, + "375": -7.444874793e-30, + "376": 3.722437397e-30, + "377": -1.861218698e-30, + "378": 9.306093491e-31, + "379": -4.653046746e-31, + "380": 2.326523373e-31, + "381": -1.163261686e-31, + "382": 5.816308432e-32, + "383": -2.908154216e-32, + "384": 1.454077108e-32, + "385": -7.27038554e-33, + "386": 3.63519277e-33, + "387": -1.817596385e-33, + "388": 9.087981925e-34, + "389": -4.543990963e-34, + "390": 2.271995481e-34, + "391": -1.135997741e-34, + "392": 5.679988703e-35, + "393": -2.839994352e-35, + "394": 1.419997176e-35, + "395": -7.099985879e-36, + "396": 3.549992939e-36, + "397": -1.77499647e-36, + "398": 8.874982349e-37, + "399": -4.437491174e-37, + "400": 2.218745587e-37, + "401": -1.109372794e-37, + "402": 5.546863968e-38, + "403": -2.773431984e-38, + "404": -0.0000636644, + "405": -0.0000636303, + "406": -0.0000595888, + "407": -0.000049345, + "408": -0.0000342823, + "409": -0.000016435, + "410": 0.0000017864, + "411": 0.0188132749, + "412": 0.0293435117, + "413": 0.0360125609, + "414": 0.0349986442, + "415": 0.0278992596, + "416": 0.0149429683, + "417": -0.0017552698, + "418": 0.0008566343, + "419": -0.0004759667, + "420": 0.0001673517, + "421": -0.000170519, + "422": -0.0000088691, + "423": -0.0000910644, + "424": -0.0000499668, + "425": -0.0000755051, + "426": -0.0000887551, + "427": -0.0001296603, + "428": -0.0001767926, + "429": -0.0002386772, + "430": -0.0003080931, + "431": -0.0003849181, + "432": -0.0004647565, + "433": -0.0005447477, + "434": -0.0006208641, + "435": -0.0006895373, + "436": -0.0007471768, + "437": -0.0007907701, + "438": -0.0008179291, + "439": -0.0008271618, + "440": -0.0008179486, + "441": -0.0007908057, + "442": -0.0007472326, + "443": -0.0006895972, + "444": -0.0006209506, + "445": -0.0005448031, + "446": -0.0004648812, + "447": -0.0003848962, + "448": -0.0003083445, + "449": -0.000238354, + "450": -0.0001775859, + "451": -0.0001281865, + "452": -0.0000917819, + "453": -0.0000694986, + "454": -0.0000619953, + "455": -0.0000644986, + "456": -0.000063247, + "457": -0.0000638728, + "458": -0.0000635599, + "459": -0.0000637164, + "460": -0.0000636381, + "461": -0.0000636773, + "462": -0.0000636577, + "463": -0.0000636675, + "464": -0.0000636626, + "465": -0.0000636651, + "466": -0.0000636638, + "467": -0.0000636644, + "468": -0.0000636641, + "469": -0.0000636643, + "470": -0.0000636642, + "471": -0.0000636643, + "472": -0.0000636643, + "473": -0.0000636643, + "474": -0.0000636643, + "475": -0.0000636643, + "476": -0.0000636643, + "477": -0.0000636643, + "478": -0.0000636643, + "479": -0.0000636643, + "480": -0.0000636643, + "481": -0.0000636643, + "482": -0.0000636643, + "483": -0.0000636643, + "484": -0.0000636643, + "485": -0.0000636643, + "486": -0.0000636643, + "487": -0.0000636643, + "488": -0.0000636643, + "489": -0.0000636643, + "490": -0.0000636644, + "491": -0.0000636644, + "492": -0.0000636644, + "493": -0.0000636644, + "494": -0.0000636644, + "495": -0.0000636644, + "496": -0.0000636644, + "497": -0.0000636644, + "498": -0.0000636644, + "499": -0.0000636644, + "500": -0.0000636644, + "501": -0.0000636644, + "502": -0.0000636644, + "503": -0.0000636644, + "504": -0.0000636644, + "505": 6.366444477, + "506": 6.3664449381, + "507": 6.3664454011, + "508": 6.3664458707, + "509": 6.3664463517, + "510": 6.3664468475, + "511": 6.3664473598, + "512": 6.3664570096, + "513": 6.3664790746, + "514": 6.3665092864, + "515": 6.3665418911, + "516": 6.3665708887, + "517": 6.366590751, + "518": 6.3665971867, + "519": 6.3665978991, + "520": 6.366598351, + "521": 6.3665988373, + "522": 6.3665993033, + "523": 6.3665997659, + "524": 6.3666002268, + "525": 6.3666006876, + "526": 6.8655506351, + "527": 9.2179949207, + "528": 12.7947873139, + "529": 17.7648844449, + "530": 23.8249103596, + "531": 30.8307168351, + "532": 38.481110658, + "533": 46.4810045858, + "534": 54.472098167, + "535": 62.0877484618, + "536": 68.9530608545, + "537": 74.7180118544, + "538": 79.0768455139, + "539": 81.7929932406, + "540": 82.7161412761, + "541": 81.7948765666, + "542": 79.0805549787, + "543": 74.7232666323, + "544": 68.9597149822, + "545": 62.0950631851, + "546": 54.4803124284, + "547": 46.4881200631, + "548": 38.489623738, + "549": 30.8344451415, + "550": 23.8354007029, + "551": 17.758591453, + "552": 12.8186531006, + "553": 9.1781852333, + "554": 6.9498608203, + "555": 6.1995305533, + "556": 6.4498626408, + "557": 6.3246973374, + "558": 6.3872807247, + "559": 6.3559897623, + "560": 6.3716359709, + "561": 6.3638135906, + "562": 6.3677255016, + "563": 6.3657702641, + "564": 6.3667485982, + "565": 6.3662601442, + "566": 6.3665050822, + "567": 6.3663833223, + "568": 6.3664449096, + "569": 6.3664148218, + "570": 6.3664305701, + "571": 6.3664233991, + "572": 6.3664276866, + "573": 6.3664262438, + "574": 6.3664276652, + "575": 6.3664276537, + "576": 6.3664283579, + "577": 6.3664287035, + "578": 6.3664292278, + "579": 6.3664296622, + "580": 6.366430141, + "581": 6.3664305972, + "582": 6.3664310642, + "583": 6.3664315255, + "584": 6.3664319893, + "585": 6.3664324515, + "586": 6.3664329143, + "587": 6.3664333765, + "588": 6.3664338387, + "589": 6.3664343008, + "590": 6.3664347627, + "591": 6.3664352246, + "592": 6.3664356863, + "593": 6.366436148, + "594": 6.3664366095, + "595": 6.366437071, + "596": 6.3664375325, + "597": 6.3664379939, + "598": 6.3664384552, + "599": 6.3664389165, + "600": 6.3664393777, + "601": 6.3664398389, + "602": 6.3664403, + "603": 6.3664407612, + "604": 6.3664412223, + "605": 6.3664416833, + "606": -0.0005703218, + "607": -0.000570297, + "608": -0.0005702747, + "609": -0.0005702545, + "610": -0.0005702363, + "611": -0.0005702198, + "612": -0.0005702049, + "613": -0.0005701913, + "614": -0.0005701789, + "615": -0.0005701676, + "616": -0.0005701573, + "617": -0.0005701481, + "618": -0.0005701397, + "619": -0.0005701323, + "620": -0.0005701257, + "621": -0.0005701197, + "622": -0.0005701143, + "623": -0.0005701094, + "624": -0.0005701049, + "625": -0.0005701009, + "626": -0.0005700973, + "627": -0.000565112, + "628": -0.0005416243, + "629": -0.000505932, + "630": -0.0004563573, + "631": -0.0003959391, + "632": -0.000326123, + "633": -0.0002499203, + "634": -0.0001702789, + "635": -0.0000907745, + "636": -0.0000150634, + "637": 0.0182188441, + "638": 0.0392976311, + "639": 0.0410065516, + "640": 0.039896143, + "641": 0.0316093196, + "642": 0.0207649671, + "643": 0.0069532623, + "644": -0.0034879381, + "645": 0.0016712597, + "646": -0.0009887341, + "647": 0.0002461998, + "648": -0.0004751768, + "649": -0.0002215871, + "650": -0.0004531899, + "651": -0.0004349396, + "652": -0.0005300475, + "653": -0.000553361, + "654": -0.0005946938, + "655": -0.0006071452, + "656": -0.0006128949, + "657": -0.0006052463, + "658": -0.0006036277, + "659": -0.0005995176, + "660": -0.0005971263, + "661": -0.0005943032, + "662": -0.0005920825, + "663": -0.0005899099, + "664": -0.000588029, + "665": -0.0005862876, + "666": -0.0005847343, + "667": -0.0005833201, + "668": -0.0005820471, + "669": -0.0005808939, + "670": -0.0005798529, + "671": -0.0005789114, + "672": -0.0005780607, + "673": -0.0005772917, + "674": -0.0005765968, + "675": -0.0005759686, + "676": -0.0005754008, + "677": -0.0005748877, + "678": -0.0005744239, + "679": -0.0005740047, + "680": -0.0005736258, + "681": -0.0005732833, + "682": -0.0005729738, + "683": -0.0005726941, + "684": -0.0005724412, + "685": -0.0005722127, + "686": -0.0005720061, + "687": -0.0005718194, + "688": -0.0005716507, + "689": -0.0005714982, + "690": -0.0005713604, + "691": -0.0005712358, + "692": -0.0005711232, + "693": -0.0005710214, + "694": -0.0005709294, + "695": -0.0005708463, + "696": -0.0005707711, + "697": -0.0005707032, + "698": -0.0005706418, + "699": -0.0005705863, + "700": -0.0005705362, + "701": -0.0005704908, + "702": -0.0005704499, + "703": -0.0005704128, + "704": -0.0005703794, + "705": -0.0005703491, + "706": -0.0005703218, + "707": 6.3664444761, + "708": 6.3664449373, + "709": 6.3664454004, + "710": 6.36644587, + "711": 6.366446351, + "712": 6.366446847, + "713": 6.3664473593, + "714": 6.3664570091, + "715": 6.3664790741, + "716": 6.366509286, + "717": 6.3665418907, + "718": 6.3665708884, + "719": 6.3665907508, + "720": 6.3665971865, + "721": 6.3665978989, + "722": 6.3665983508, + "723": 6.3665988371, + "724": 6.3665993032, + "725": 6.3665997658, + "726": 6.3666002266, + "727": 6.3666006875, + "728": 6.8655503064, + "729": 9.2179936345, + "730": 12.7947860182, + "731": 17.7648823213, + "732": 23.8249081679, + "733": 30.8307141556, + "734": 38.4811079381, + "735": 46.4810017172, + "736": 54.4720954208, + "737": 62.0877458824, + "738": 68.951860412, + "739": 74.7175820417, + "740": 79.0771846451, + "741": 81.792812261, + "742": 82.7167987207, + "743": 81.7950889809, + "744": 79.081232283, + "745": 74.7234071309, + "746": 68.959202597, + "747": 62.0956478388, + "748": 54.4798095054, + "749": 46.4885081135, + "750": 38.489354208, + "751": 30.8346295901, + "752": 23.8352854883, + "753": 17.758666588, + "754": 12.8186095617, + "755": 9.1782130223, + "756": 6.9498452826, + "757": 6.1995396873, + "758": 6.4498569626, + "759": 6.3247005245, + "760": 6.3872786647, + "761": 6.3559908136, + "762": 6.3716352169, + "763": 6.3638138981, + "764": 6.36772521, + "765": 6.3657703261, + "766": 6.3667484695, + "767": 6.3662601321, + "768": 6.3665050128, + "769": 6.3663832921, + "770": 6.3664448643, + "771": 6.3664147908, + "772": 6.3664305366, + "773": 6.3664233718, + "774": 6.3664276603, + "775": 6.3664262209, + "776": 6.3664276441, + "777": 6.3664276348, + "778": 6.3664283407, + "779": 6.366428688, + "780": 6.3664292138, + "781": 6.3664296495, + "782": 6.3664301296, + "783": 6.3664305868, + "784": 6.3664310549, + "785": 6.366431517, + "786": 6.3664319817, + "787": 6.3664324446, + "788": 6.366432908, + "789": 6.3664333709, + "790": 6.3664338337, + "791": 6.3664342962, + "792": 6.3664347586, + "793": 6.3664352208, + "794": 6.3664356829, + "795": 6.3664361449, + "796": 6.3664366068, + "797": 6.3664370685, + "798": 6.3664375302, + "799": 6.3664379918, + "800": 6.3664384533, + "801": 6.3664389148, + "802": 6.3664393762, + "803": 6.3664398375, + "804": 6.3664402988, + "805": 6.3664407601, + "806": 6.3664412213, + "807": 6.3664416824, + "808": -0.0005703218, + "809": -0.000570297, + "810": -0.0005702747, + "811": -0.0005702545, + "812": -0.0005702363, + "813": -0.0005702198, + "814": -0.0005702049, + "815": -0.0005701913, + "816": -0.0005701789, + "817": -0.0005701676, + "818": -0.0005701573, + "819": -0.0005701481, + "820": -0.0005701397, + "821": -0.0005701323, + "822": -0.0005701257, + "823": -0.0005701197, + "824": -0.0005701143, + "825": -0.0005701094, + "826": -0.0005701049, + "827": -0.0005701009, + "828": -0.0005700973, + "829": -0.000565112, + "830": -0.0005416243, + "831": -0.000505932, + "832": -0.0004563573, + "833": -0.0003959391, + "834": -0.000326123, + "835": -0.0002499203, + "836": -0.0001702789, + "837": -0.0000907745, + "838": -0.0000150634, + "839": 0.0182188441, + "840": 0.0392976311, + "841": 0.0410065516, + "842": 0.039896143, + "843": 0.0316093196, + "844": 0.0207649671, + "845": 0.0069532623, + "846": -0.0034879381, + "847": 0.0016712597, + "848": -0.0009887341, + "849": 0.0002461998, + "850": -0.0004751768, + "851": -0.0002215871, + "852": -0.0004531899, + "853": -0.0004349396, + "854": -0.0005300475, + "855": -0.000553361, + "856": -0.0005946938, + "857": -0.0006071452, + "858": -0.0006128949, + "859": -0.0006052463, + "860": -0.0006036277, + "861": -0.0005995176, + "862": -0.0005971263, + "863": -0.0005943032, + "864": -0.0005920825, + "865": -0.0005899099, + "866": -0.000588029, + "867": -0.0005862876, + "868": -0.0005847343, + "869": -0.0005833201, + "870": -0.0005820471, + "871": -0.0005808939, + "872": -0.0005798529, + "873": -0.0005789114, + "874": -0.0005780607, + "875": -0.0005772917, + "876": -0.0005765968, + "877": -0.0005759686, + "878": -0.0005754008, + "879": -0.0005748877, + "880": -0.0005744239, + "881": -0.0005740047, + "882": -0.0005736258, + "883": -0.0005732833, + "884": -0.0005729738, + "885": -0.0005726941, + "886": -0.0005724412, + "887": -0.0005722127, + "888": -0.0005720061, + "889": -0.0005718194, + "890": -0.0005716507, + "891": -0.0005714982, + "892": -0.0005713604, + "893": -0.0005712358, + "894": -0.0005711232, + "895": -0.0005710214, + "896": -0.0005709294, + "897": -0.0005708463, + "898": -0.0005707711, + "899": -0.0005707032, + "900": -0.0005706418, + "901": -0.0005705863, + "902": -0.0005705362, + "903": -0.0005704908, + "904": -0.0005704499, + "905": -0.0005704128, + "906": -0.0005703794, + "907": -0.0005703491, + "908": -0.0005703218, + "909": 63.3986204585, + "910": 63.3961496638, + "911": 63.3939164875, + "912": 63.3918980777, + "913": 63.3900737802, + "914": 63.388424927, + "915": 63.3869346456, + "916": 63.3855876999, + "917": 63.3843703192, + "918": 63.3832700497, + "919": 63.3822756288, + "920": 63.3813768706, + "921": 63.3805645633, + "922": 63.3798303771, + "923": 63.3791667966, + "924": 63.3785670335, + "925": 63.3780249506, + "926": 63.3775350006, + "927": 63.3770921699, + "928": 63.376691927, + "929": 63.3763301762, + "930": 63.3767536669, + "931": 63.3804267903, + "932": 63.3879810776, + "933": 63.4006127132, + "934": 63.4188217187, + "935": 63.4430098302, + "936": 63.4731414551, + "937": 63.508886867, + "938": 63.549542317, + "939": 63.5940871136, + "940": 66.3775585612, + "941": 71.1640276507, + "942": 74.7884251244, + "943": 77.8972501395, + "944": 79.5088406722, + "945": 79.7421053139, + "946": 78.3741495316, + "947": 76.2076478205, + "948": 75.4880222475, + "949": 74.1416650543, + "950": 73.2735291451, + "951": 72.2993406693, + "952": 71.5014861048, + "953": 70.7269068551, + "954": 70.0426018574, + "955": 69.4067343615, + "956": 68.8330456515, + "957": 68.3084225061, + "958": 67.8339509611, + "959": 67.4042408737, + "960": 67.0168843197, + "961": 66.6662693284, + "962": 66.3496342612, + "963": 66.0633185538, + "964": 65.8046040476, + "965": 65.5707372215, + "966": 65.3593780565, + "967": 65.1683371675, + "968": 64.9956729392, + "969": 64.839611873, + "970": 64.6985603337, + "971": 64.5710732949, + "972": 64.4558470252, + "973": 64.3517020108, + "974": 64.2575727543, + "975": 64.1724959368, + "976": 64.0956010279, + "977": 64.0261011441, + "978": 63.9632851131, + "979": 63.9065101385, + "980": 63.8551952511, + "981": 63.8088153492, + "982": 63.7668958329, + "983": 63.7290077436, + "984": 63.6947633767, + "985": 63.663812313, + "986": 63.6358378334, + "987": 63.6105536778, + "988": 63.5877011162, + "989": 63.5670463006, + "990": 63.5483778722, + "991": 63.5315047991, + "992": 63.5162544207, + "993": 63.5024706814, + "994": 63.4900125336, + "995": 63.4787524944, + "996": 63.4685753408, + "997": 63.4593769311, + "998": 63.4510631388, + "999": 63.4435488898, + "1000": 63.4367572913, + "1001": 63.4306188457, + "1002": 63.4250707389, + "1003": 63.4200561975, + "1004": 63.4155239082, + "1005": 63.4114274926, + "1006": 63.4077250324, + "1007": 63.4043786406, + "1008": 63.401354074, + "1009": 63.3986203823, + "1010": 96.0609283192, + "1011": 96.0609333858, + "1012": 96.0609384739, + "1013": 96.0609436337, + "1014": 96.0609489193, + "1015": 96.0609543686, + "1016": 96.0609599975, + "1017": 96.0610660392, + "1018": 96.0613085117, + "1019": 96.0616405094, + "1020": 96.0619988029, + "1021": 96.0623174583, + "1022": 96.0625357257, + "1023": 96.0626064473, + "1024": 96.0626142758, + "1025": 96.0626192414, + "1026": 96.062624586, + "1027": 96.0626297069, + "1028": 96.0626347904, + "1029": 96.0626398546, + "1030": 96.062644919, + "1031": 96.0626499301, + "1032": 96.0626546479, + "1033": 96.0626587792, + "1034": 96.0626620546, + "1035": 96.062664231, + "1036": 96.0626651033, + "1037": 96.0626645147, + "1038": 96.0626623659, + "1039": 96.0626586239, + "1040": 96.0626533276, + "1041": 96.0625497059, + "1042": 96.0622552055, + "1043": 96.0618524031, + "1044": 96.0614395097, + "1045": 96.0610762223, + "1046": 96.0608064909, + "1047": 96.060660778, + "1048": 96.0606344587, + "1049": 96.060631423, + "1050": 96.0606250547, + "1051": 96.0606209234, + "1052": 96.0606180763, + "1053": 96.060616775, + "1054": 96.0606169505, + "1055": 96.0606185186, + "1056": 96.0606213263, + "1057": 96.0606251743, + "1058": 96.0606298245, + "1059": 96.060635011, + "1060": 96.0606404498, + "1061": 96.060645901, + "1062": 96.0606513113, + "1063": 96.0606566891, + "1064": 96.0606620365, + "1065": 96.0606673567, + "1066": 96.0606726522, + "1067": 96.0606779255, + "1068": 96.0606831787, + "1069": 96.0606884136, + "1070": 96.0606936321, + "1071": 96.0606988358, + "1072": 96.060704026, + "1073": 96.0607092041, + "1074": 96.0607143713, + "1075": 96.0607195285, + "1076": 96.0607246767, + "1077": 96.0607298169, + "1078": 96.0607349497, + "1079": 96.0607400759, + "1080": 96.0607451961, + "1081": 96.0607503109, + "1082": 96.0607554208, + "1083": 96.0607605264, + "1084": 96.0607656279, + "1085": 96.0607707258, + "1086": 96.0607758204, + "1087": 96.0607809121, + "1088": 96.0607860012, + "1089": 96.0607910878, + "1090": 96.0607961723, + "1091": 96.0608012548, + "1092": 96.0608063355, + "1093": 96.0608114146, + "1094": 96.0608164922, + "1095": 96.0608215686, + "1096": 96.0608266437, + "1097": 96.0608317178, + "1098": 96.0608367909, + "1099": 96.0608418632, + "1100": 96.0608469346, + "1101": 96.0608520053, + "1102": 96.0608570754, + "1103": 96.0608621449, + "1104": 96.0608672139, + "1105": 96.0608722824, + "1106": 96.0608773504, + "1107": 96.0608824181, + "1108": 96.0608874854, + "1109": 96.0608925524, + "1110": 96.0608976191 + } +} diff --git a/tests/cases/results/result_chamber_sphere.json b/tests/cases/results/result_chamber_sphere.json index b1b24c615..b38679ecd 100644 --- a/tests/cases/results/result_chamber_sphere.json +++ b/tests/cases/results/result_chamber_sphere.json @@ -1 +1,25508 @@ -{"name":{"0":"flow:IN:upstream_vessel","1":"flow:IN:upstream_vessel","2":"flow:IN:upstream_vessel","3":"flow:IN:upstream_vessel","4":"flow:IN:upstream_vessel","5":"flow:IN:upstream_vessel","6":"flow:IN:upstream_vessel","7":"flow:IN:upstream_vessel","8":"flow:IN:upstream_vessel","9":"flow:IN:upstream_vessel","10":"flow:IN:upstream_vessel","11":"flow:IN:upstream_vessel","12":"flow:IN:upstream_vessel","13":"flow:IN:upstream_vessel","14":"flow:IN:upstream_vessel","15":"flow:IN:upstream_vessel","16":"flow:IN:upstream_vessel","17":"flow:IN:upstream_vessel","18":"flow:IN:upstream_vessel","19":"flow:IN:upstream_vessel","20":"flow:IN:upstream_vessel","21":"flow:IN:upstream_vessel","22":"flow:IN:upstream_vessel","23":"flow:IN:upstream_vessel","24":"flow:IN:upstream_vessel","25":"flow:IN:upstream_vessel","26":"flow:IN:upstream_vessel","27":"flow:IN:upstream_vessel","28":"flow:IN:upstream_vessel","29":"flow:IN:upstream_vessel","30":"flow:IN:upstream_vessel","31":"flow:IN:upstream_vessel","32":"flow:IN:upstream_vessel","33":"flow:IN:upstream_vessel","34":"flow:IN:upstream_vessel","35":"flow:IN:upstream_vessel","36":"flow:IN:upstream_vessel","37":"flow:IN:upstream_vessel","38":"flow:IN:upstream_vessel","39":"flow:IN:upstream_vessel","40":"flow:IN:upstream_vessel","41":"flow:IN:upstream_vessel","42":"flow:IN:upstream_vessel","43":"flow:IN:upstream_vessel","44":"flow:IN:upstream_vessel","45":"flow:IN:upstream_vessel","46":"flow:IN:upstream_vessel","47":"flow:IN:upstream_vessel","48":"flow:IN:upstream_vessel","49":"flow:IN:upstream_vessel","50":"flow:IN:upstream_vessel","51":"flow:IN:upstream_vessel","52":"flow:IN:upstream_vessel","53":"flow:IN:upstream_vessel","54":"flow:IN:upstream_vessel","55":"flow:IN:upstream_vessel","56":"flow:IN:upstream_vessel","57":"flow:IN:upstream_vessel","58":"flow:IN:upstream_vessel","59":"flow:IN:upstream_vessel","60":"flow:IN:upstream_vessel","61":"flow:IN:upstream_vessel","62":"flow:IN:upstream_vessel","63":"flow:IN:upstream_vessel","64":"flow:IN:upstream_vessel","65":"flow:IN:upstream_vessel","66":"flow:IN:upstream_vessel","67":"flow:IN:upstream_vessel","68":"flow:IN:upstream_vessel","69":"flow:IN:upstream_vessel","70":"flow:IN:upstream_vessel","71":"flow:IN:upstream_vessel","72":"flow:IN:upstream_vessel","73":"flow:IN:upstream_vessel","74":"flow:IN:upstream_vessel","75":"flow:IN:upstream_vessel","76":"flow:IN:upstream_vessel","77":"flow:IN:upstream_vessel","78":"flow:IN:upstream_vessel","79":"flow:IN:upstream_vessel","80":"flow:IN:upstream_vessel","81":"flow:IN:upstream_vessel","82":"flow:IN:upstream_vessel","83":"flow:IN:upstream_vessel","84":"flow:IN:upstream_vessel","85":"flow:IN:upstream_vessel","86":"flow:IN:upstream_vessel","87":"flow:IN:upstream_vessel","88":"flow:IN:upstream_vessel","89":"flow:IN:upstream_vessel","90":"flow:IN:upstream_vessel","91":"flow:IN:upstream_vessel","92":"flow:IN:upstream_vessel","93":"flow:IN:upstream_vessel","94":"flow:IN:upstream_vessel","95":"flow:IN:upstream_vessel","96":"flow:IN:upstream_vessel","97":"flow:IN:upstream_vessel","98":"flow:IN:upstream_vessel","99":"flow:IN:upstream_vessel","100":"flow:IN:upstream_vessel","101":"flow:IN:upstream_vessel","102":"flow:IN:upstream_vessel","103":"flow:IN:upstream_vessel","104":"flow:IN:upstream_vessel","105":"flow:IN:upstream_vessel","106":"flow:IN:upstream_vessel","107":"flow:IN:upstream_vessel","108":"flow:IN:upstream_vessel","109":"flow:IN:upstream_vessel","110":"flow:IN:upstream_vessel","111":"flow:IN:upstream_vessel","112":"flow:IN:upstream_vessel","113":"flow:IN:upstream_vessel","114":"flow:IN:upstream_vessel","115":"flow:IN:upstream_vessel","116":"flow:IN:upstream_vessel","117":"flow:IN:upstream_vessel","118":"flow:IN:upstream_vessel","119":"flow:IN:upstream_vessel","120":"flow:IN:upstream_vessel","121":"flow:IN:upstream_vessel","122":"flow:IN:upstream_vessel","123":"flow:IN:upstream_vessel","124":"flow:IN:upstream_vessel","125":"flow:IN:upstream_vessel","126":"flow:IN:upstream_vessel","127":"flow:IN:upstream_vessel","128":"flow:IN:upstream_vessel","129":"flow:IN:upstream_vessel","130":"flow:IN:upstream_vessel","131":"flow:IN:upstream_vessel","132":"flow:IN:upstream_vessel","133":"flow:IN:upstream_vessel","134":"flow:IN:upstream_vessel","135":"flow:IN:upstream_vessel","136":"flow:IN:upstream_vessel","137":"flow:IN:upstream_vessel","138":"flow:IN:upstream_vessel","139":"flow:IN:upstream_vessel","140":"flow:IN:upstream_vessel","141":"flow:IN:upstream_vessel","142":"flow:IN:upstream_vessel","143":"flow:IN:upstream_vessel","144":"flow:IN:upstream_vessel","145":"flow:IN:upstream_vessel","146":"flow:IN:upstream_vessel","147":"flow:IN:upstream_vessel","148":"flow:IN:upstream_vessel","149":"flow:IN:upstream_vessel","150":"flow:IN:upstream_vessel","151":"flow:IN:upstream_vessel","152":"flow:IN:upstream_vessel","153":"flow:IN:upstream_vessel","154":"flow:IN:upstream_vessel","155":"flow:IN:upstream_vessel","156":"flow:IN:upstream_vessel","157":"flow:IN:upstream_vessel","158":"flow:IN:upstream_vessel","159":"flow:IN:upstream_vessel","160":"flow:IN:upstream_vessel","161":"flow:IN:upstream_vessel","162":"flow:IN:upstream_vessel","163":"flow:IN:upstream_vessel","164":"flow:IN:upstream_vessel","165":"flow:IN:upstream_vessel","166":"flow:IN:upstream_vessel","167":"flow:IN:upstream_vessel","168":"flow:IN:upstream_vessel","169":"flow:IN:upstream_vessel","170":"flow:IN:upstream_vessel","171":"flow:IN:upstream_vessel","172":"flow:IN:upstream_vessel","173":"flow:IN:upstream_vessel","174":"flow:IN:upstream_vessel","175":"flow:IN:upstream_vessel","176":"flow:IN:upstream_vessel","177":"flow:IN:upstream_vessel","178":"flow:IN:upstream_vessel","179":"flow:IN:upstream_vessel","180":"flow:IN:upstream_vessel","181":"flow:IN:upstream_vessel","182":"flow:IN:upstream_vessel","183":"flow:IN:upstream_vessel","184":"flow:IN:upstream_vessel","185":"flow:IN:upstream_vessel","186":"flow:IN:upstream_vessel","187":"flow:IN:upstream_vessel","188":"flow:IN:upstream_vessel","189":"flow:IN:upstream_vessel","190":"flow:IN:upstream_vessel","191":"flow:IN:upstream_vessel","192":"flow:IN:upstream_vessel","193":"flow:IN:upstream_vessel","194":"flow:IN:upstream_vessel","195":"flow:IN:upstream_vessel","196":"flow:IN:upstream_vessel","197":"flow:IN:upstream_vessel","198":"flow:IN:upstream_vessel","199":"flow:IN:upstream_vessel","200":"flow:IN:upstream_vessel","201":"flow:IN:upstream_vessel","202":"flow:IN:upstream_vessel","203":"flow:IN:upstream_vessel","204":"flow:IN:upstream_vessel","205":"flow:IN:upstream_vessel","206":"flow:IN:upstream_vessel","207":"flow:IN:upstream_vessel","208":"flow:IN:upstream_vessel","209":"flow:IN:upstream_vessel","210":"flow:IN:upstream_vessel","211":"flow:IN:upstream_vessel","212":"flow:IN:upstream_vessel","213":"flow:IN:upstream_vessel","214":"flow:IN:upstream_vessel","215":"flow:IN:upstream_vessel","216":"flow:IN:upstream_vessel","217":"flow:IN:upstream_vessel","218":"flow:IN:upstream_vessel","219":"flow:IN:upstream_vessel","220":"flow:IN:upstream_vessel","221":"flow:IN:upstream_vessel","222":"flow:IN:upstream_vessel","223":"flow:IN:upstream_vessel","224":"flow:IN:upstream_vessel","225":"flow:IN:upstream_vessel","226":"flow:IN:upstream_vessel","227":"flow:IN:upstream_vessel","228":"flow:IN:upstream_vessel","229":"flow:IN:upstream_vessel","230":"flow:IN:upstream_vessel","231":"flow:IN:upstream_vessel","232":"flow:IN:upstream_vessel","233":"flow:IN:upstream_vessel","234":"flow:IN:upstream_vessel","235":"flow:IN:upstream_vessel","236":"flow:IN:upstream_vessel","237":"flow:IN:upstream_vessel","238":"flow:IN:upstream_vessel","239":"flow:IN:upstream_vessel","240":"flow:IN:upstream_vessel","241":"flow:IN:upstream_vessel","242":"flow:IN:upstream_vessel","243":"flow:IN:upstream_vessel","244":"flow:IN:upstream_vessel","245":"flow:IN:upstream_vessel","246":"flow:IN:upstream_vessel","247":"flow:IN:upstream_vessel","248":"flow:IN:upstream_vessel","249":"flow:IN:upstream_vessel","250":"flow:IN:upstream_vessel","251":"flow:IN:upstream_vessel","252":"flow:IN:upstream_vessel","253":"flow:IN:upstream_vessel","254":"flow:IN:upstream_vessel","255":"flow:IN:upstream_vessel","256":"flow:IN:upstream_vessel","257":"flow:IN:upstream_vessel","258":"flow:IN:upstream_vessel","259":"flow:IN:upstream_vessel","260":"flow:IN:upstream_vessel","261":"flow:IN:upstream_vessel","262":"flow:IN:upstream_vessel","263":"flow:IN:upstream_vessel","264":"flow:IN:upstream_vessel","265":"flow:IN:upstream_vessel","266":"flow:IN:upstream_vessel","267":"flow:IN:upstream_vessel","268":"flow:IN:upstream_vessel","269":"flow:IN:upstream_vessel","270":"flow:IN:upstream_vessel","271":"flow:IN:upstream_vessel","272":"flow:IN:upstream_vessel","273":"flow:IN:upstream_vessel","274":"flow:IN:upstream_vessel","275":"flow:IN:upstream_vessel","276":"flow:IN:upstream_vessel","277":"flow:IN:upstream_vessel","278":"flow:IN:upstream_vessel","279":"flow:IN:upstream_vessel","280":"flow:IN:upstream_vessel","281":"flow:IN:upstream_vessel","282":"flow:IN:upstream_vessel","283":"flow:IN:upstream_vessel","284":"flow:IN:upstream_vessel","285":"flow:IN:upstream_vessel","286":"flow:IN:upstream_vessel","287":"flow:IN:upstream_vessel","288":"flow:IN:upstream_vessel","289":"flow:IN:upstream_vessel","290":"flow:IN:upstream_vessel","291":"flow:IN:upstream_vessel","292":"flow:IN:upstream_vessel","293":"flow:IN:upstream_vessel","294":"flow:IN:upstream_vessel","295":"flow:IN:upstream_vessel","296":"flow:IN:upstream_vessel","297":"flow:IN:upstream_vessel","298":"flow:IN:upstream_vessel","299":"flow:IN:upstream_vessel","300":"flow:IN:upstream_vessel","301":"flow:IN:upstream_vessel","302":"flow:IN:upstream_vessel","303":"flow:IN:upstream_vessel","304":"flow:IN:upstream_vessel","305":"flow:IN:upstream_vessel","306":"flow:IN:upstream_vessel","307":"flow:IN:upstream_vessel","308":"flow:IN:upstream_vessel","309":"flow:IN:upstream_vessel","310":"flow:IN:upstream_vessel","311":"flow:IN:upstream_vessel","312":"flow:IN:upstream_vessel","313":"flow:IN:upstream_vessel","314":"flow:IN:upstream_vessel","315":"flow:IN:upstream_vessel","316":"flow:IN:upstream_vessel","317":"flow:IN:upstream_vessel","318":"flow:IN:upstream_vessel","319":"flow:IN:upstream_vessel","320":"flow:IN:upstream_vessel","321":"flow:IN:upstream_vessel","322":"flow:IN:upstream_vessel","323":"flow:IN:upstream_vessel","324":"flow:IN:upstream_vessel","325":"flow:IN:upstream_vessel","326":"flow:IN:upstream_vessel","327":"flow:IN:upstream_vessel","328":"flow:IN:upstream_vessel","329":"flow:IN:upstream_vessel","330":"flow:IN:upstream_vessel","331":"flow:IN:upstream_vessel","332":"flow:IN:upstream_vessel","333":"flow:IN:upstream_vessel","334":"flow:IN:upstream_vessel","335":"flow:IN:upstream_vessel","336":"flow:IN:upstream_vessel","337":"flow:IN:upstream_vessel","338":"flow:IN:upstream_vessel","339":"flow:IN:upstream_vessel","340":"flow:IN:upstream_vessel","341":"flow:IN:upstream_vessel","342":"flow:IN:upstream_vessel","343":"flow:IN:upstream_vessel","344":"flow:IN:upstream_vessel","345":"flow:IN:upstream_vessel","346":"flow:IN:upstream_vessel","347":"flow:IN:upstream_vessel","348":"flow:IN:upstream_vessel","349":"flow:IN:upstream_vessel","350":"flow:IN:upstream_vessel","351":"flow:IN:upstream_vessel","352":"flow:IN:upstream_vessel","353":"flow:IN:upstream_vessel","354":"flow:IN:upstream_vessel","355":"flow:IN:upstream_vessel","356":"flow:IN:upstream_vessel","357":"flow:IN:upstream_vessel","358":"flow:IN:upstream_vessel","359":"flow:IN:upstream_vessel","360":"flow:IN:upstream_vessel","361":"flow:IN:upstream_vessel","362":"flow:IN:upstream_vessel","363":"flow:IN:upstream_vessel","364":"flow:IN:upstream_vessel","365":"flow:IN:upstream_vessel","366":"flow:IN:upstream_vessel","367":"flow:IN:upstream_vessel","368":"flow:IN:upstream_vessel","369":"flow:IN:upstream_vessel","370":"flow:IN:upstream_vessel","371":"flow:IN:upstream_vessel","372":"flow:IN:upstream_vessel","373":"flow:IN:upstream_vessel","374":"flow:IN:upstream_vessel","375":"flow:IN:upstream_vessel","376":"flow:IN:upstream_vessel","377":"flow:IN:upstream_vessel","378":"flow:IN:upstream_vessel","379":"flow:IN:upstream_vessel","380":"flow:IN:upstream_vessel","381":"flow:IN:upstream_vessel","382":"flow:IN:upstream_vessel","383":"flow:IN:upstream_vessel","384":"flow:IN:upstream_vessel","385":"flow:IN:upstream_vessel","386":"flow:IN:upstream_vessel","387":"flow:IN:upstream_vessel","388":"flow:IN:upstream_vessel","389":"flow:IN:upstream_vessel","390":"flow:IN:upstream_vessel","391":"flow:IN:upstream_vessel","392":"flow:IN:upstream_vessel","393":"flow:IN:upstream_vessel","394":"flow:IN:upstream_vessel","395":"flow:IN:upstream_vessel","396":"flow:IN:upstream_vessel","397":"flow:IN:upstream_vessel","398":"flow:IN:upstream_vessel","399":"flow:IN:upstream_vessel","400":"flow:IN:upstream_vessel","401":"flow:IN:upstream_vessel","402":"flow:IN:upstream_vessel","403":"flow:IN:upstream_vessel","404":"flow:IN:upstream_vessel","405":"flow:IN:upstream_vessel","406":"flow:IN:upstream_vessel","407":"flow:IN:upstream_vessel","408":"flow:IN:upstream_vessel","409":"flow:IN:upstream_vessel","410":"flow:IN:upstream_vessel","411":"flow:IN:upstream_vessel","412":"flow:IN:upstream_vessel","413":"flow:IN:upstream_vessel","414":"flow:IN:upstream_vessel","415":"flow:IN:upstream_vessel","416":"flow:IN:upstream_vessel","417":"flow:IN:upstream_vessel","418":"flow:IN:upstream_vessel","419":"flow:IN:upstream_vessel","420":"flow:IN:upstream_vessel","421":"flow:IN:upstream_vessel","422":"flow:IN:upstream_vessel","423":"flow:IN:upstream_vessel","424":"flow:IN:upstream_vessel","425":"flow:IN:upstream_vessel","426":"flow:IN:upstream_vessel","427":"flow:IN:upstream_vessel","428":"flow:IN:upstream_vessel","429":"flow:IN:upstream_vessel","430":"flow:IN:upstream_vessel","431":"flow:IN:upstream_vessel","432":"flow:IN:upstream_vessel","433":"flow:IN:upstream_vessel","434":"flow:IN:upstream_vessel","435":"flow:IN:upstream_vessel","436":"flow:IN:upstream_vessel","437":"flow:IN:upstream_vessel","438":"flow:IN:upstream_vessel","439":"flow:IN:upstream_vessel","440":"flow:IN:upstream_vessel","441":"flow:IN:upstream_vessel","442":"flow:IN:upstream_vessel","443":"flow:IN:upstream_vessel","444":"flow:IN:upstream_vessel","445":"flow:IN:upstream_vessel","446":"flow:IN:upstream_vessel","447":"flow:IN:upstream_vessel","448":"flow:IN:upstream_vessel","449":"flow:IN:upstream_vessel","450":"flow:IN:upstream_vessel","451":"flow:IN:upstream_vessel","452":"flow:IN:upstream_vessel","453":"flow:IN:upstream_vessel","454":"flow:IN:upstream_vessel","455":"flow:IN:upstream_vessel","456":"flow:IN:upstream_vessel","457":"flow:IN:upstream_vessel","458":"flow:IN:upstream_vessel","459":"flow:IN:upstream_vessel","460":"flow:IN:upstream_vessel","461":"flow:IN:upstream_vessel","462":"flow:IN:upstream_vessel","463":"flow:IN:upstream_vessel","464":"flow:IN:upstream_vessel","465":"flow:IN:upstream_vessel","466":"flow:IN:upstream_vessel","467":"flow:IN:upstream_vessel","468":"flow:IN:upstream_vessel","469":"flow:IN:upstream_vessel","470":"flow:IN:upstream_vessel","471":"flow:IN:upstream_vessel","472":"flow:IN:upstream_vessel","473":"flow:IN:upstream_vessel","474":"flow:IN:upstream_vessel","475":"flow:IN:upstream_vessel","476":"flow:IN:upstream_vessel","477":"flow:IN:upstream_vessel","478":"flow:IN:upstream_vessel","479":"flow:IN:upstream_vessel","480":"flow:IN:upstream_vessel","481":"flow:IN:upstream_vessel","482":"flow:IN:upstream_vessel","483":"flow:IN:upstream_vessel","484":"flow:IN:upstream_vessel","485":"flow:IN:upstream_vessel","486":"flow:IN:upstream_vessel","487":"flow:IN:upstream_vessel","488":"flow:IN:upstream_vessel","489":"flow:IN:upstream_vessel","490":"flow:IN:upstream_vessel","491":"flow:IN:upstream_vessel","492":"flow:IN:upstream_vessel","493":"flow:IN:upstream_vessel","494":"flow:IN:upstream_vessel","495":"flow:IN:upstream_vessel","496":"flow:IN:upstream_vessel","497":"flow:IN:upstream_vessel","498":"flow:IN:upstream_vessel","499":"flow:IN:upstream_vessel","500":"pressure:IN:upstream_vessel","501":"pressure:IN:upstream_vessel","502":"pressure:IN:upstream_vessel","503":"pressure:IN:upstream_vessel","504":"pressure:IN:upstream_vessel","505":"pressure:IN:upstream_vessel","506":"pressure:IN:upstream_vessel","507":"pressure:IN:upstream_vessel","508":"pressure:IN:upstream_vessel","509":"pressure:IN:upstream_vessel","510":"pressure:IN:upstream_vessel","511":"pressure:IN:upstream_vessel","512":"pressure:IN:upstream_vessel","513":"pressure:IN:upstream_vessel","514":"pressure:IN:upstream_vessel","515":"pressure:IN:upstream_vessel","516":"pressure:IN:upstream_vessel","517":"pressure:IN:upstream_vessel","518":"pressure:IN:upstream_vessel","519":"pressure:IN:upstream_vessel","520":"pressure:IN:upstream_vessel","521":"pressure:IN:upstream_vessel","522":"pressure:IN:upstream_vessel","523":"pressure:IN:upstream_vessel","524":"pressure:IN:upstream_vessel","525":"pressure:IN:upstream_vessel","526":"pressure:IN:upstream_vessel","527":"pressure:IN:upstream_vessel","528":"pressure:IN:upstream_vessel","529":"pressure:IN:upstream_vessel","530":"pressure:IN:upstream_vessel","531":"pressure:IN:upstream_vessel","532":"pressure:IN:upstream_vessel","533":"pressure:IN:upstream_vessel","534":"pressure:IN:upstream_vessel","535":"pressure:IN:upstream_vessel","536":"pressure:IN:upstream_vessel","537":"pressure:IN:upstream_vessel","538":"pressure:IN:upstream_vessel","539":"pressure:IN:upstream_vessel","540":"pressure:IN:upstream_vessel","541":"pressure:IN:upstream_vessel","542":"pressure:IN:upstream_vessel","543":"pressure:IN:upstream_vessel","544":"pressure:IN:upstream_vessel","545":"pressure:IN:upstream_vessel","546":"pressure:IN:upstream_vessel","547":"pressure:IN:upstream_vessel","548":"pressure:IN:upstream_vessel","549":"pressure:IN:upstream_vessel","550":"pressure:IN:upstream_vessel","551":"pressure:IN:upstream_vessel","552":"pressure:IN:upstream_vessel","553":"pressure:IN:upstream_vessel","554":"pressure:IN:upstream_vessel","555":"pressure:IN:upstream_vessel","556":"pressure:IN:upstream_vessel","557":"pressure:IN:upstream_vessel","558":"pressure:IN:upstream_vessel","559":"pressure:IN:upstream_vessel","560":"pressure:IN:upstream_vessel","561":"pressure:IN:upstream_vessel","562":"pressure:IN:upstream_vessel","563":"pressure:IN:upstream_vessel","564":"pressure:IN:upstream_vessel","565":"pressure:IN:upstream_vessel","566":"pressure:IN:upstream_vessel","567":"pressure:IN:upstream_vessel","568":"pressure:IN:upstream_vessel","569":"pressure:IN:upstream_vessel","570":"pressure:IN:upstream_vessel","571":"pressure:IN:upstream_vessel","572":"pressure:IN:upstream_vessel","573":"pressure:IN:upstream_vessel","574":"pressure:IN:upstream_vessel","575":"pressure:IN:upstream_vessel","576":"pressure:IN:upstream_vessel","577":"pressure:IN:upstream_vessel","578":"pressure:IN:upstream_vessel","579":"pressure:IN:upstream_vessel","580":"pressure:IN:upstream_vessel","581":"pressure:IN:upstream_vessel","582":"pressure:IN:upstream_vessel","583":"pressure:IN:upstream_vessel","584":"pressure:IN:upstream_vessel","585":"pressure:IN:upstream_vessel","586":"pressure:IN:upstream_vessel","587":"pressure:IN:upstream_vessel","588":"pressure:IN:upstream_vessel","589":"pressure:IN:upstream_vessel","590":"pressure:IN:upstream_vessel","591":"pressure:IN:upstream_vessel","592":"pressure:IN:upstream_vessel","593":"pressure:IN:upstream_vessel","594":"pressure:IN:upstream_vessel","595":"pressure:IN:upstream_vessel","596":"pressure:IN:upstream_vessel","597":"pressure:IN:upstream_vessel","598":"pressure:IN:upstream_vessel","599":"pressure:IN:upstream_vessel","600":"pressure:IN:upstream_vessel","601":"pressure:IN:upstream_vessel","602":"pressure:IN:upstream_vessel","603":"pressure:IN:upstream_vessel","604":"pressure:IN:upstream_vessel","605":"pressure:IN:upstream_vessel","606":"pressure:IN:upstream_vessel","607":"pressure:IN:upstream_vessel","608":"pressure:IN:upstream_vessel","609":"pressure:IN:upstream_vessel","610":"pressure:IN:upstream_vessel","611":"pressure:IN:upstream_vessel","612":"pressure:IN:upstream_vessel","613":"pressure:IN:upstream_vessel","614":"pressure:IN:upstream_vessel","615":"pressure:IN:upstream_vessel","616":"pressure:IN:upstream_vessel","617":"pressure:IN:upstream_vessel","618":"pressure:IN:upstream_vessel","619":"pressure:IN:upstream_vessel","620":"pressure:IN:upstream_vessel","621":"pressure:IN:upstream_vessel","622":"pressure:IN:upstream_vessel","623":"pressure:IN:upstream_vessel","624":"pressure:IN:upstream_vessel","625":"pressure:IN:upstream_vessel","626":"pressure:IN:upstream_vessel","627":"pressure:IN:upstream_vessel","628":"pressure:IN:upstream_vessel","629":"pressure:IN:upstream_vessel","630":"pressure:IN:upstream_vessel","631":"pressure:IN:upstream_vessel","632":"pressure:IN:upstream_vessel","633":"pressure:IN:upstream_vessel","634":"pressure:IN:upstream_vessel","635":"pressure:IN:upstream_vessel","636":"pressure:IN:upstream_vessel","637":"pressure:IN:upstream_vessel","638":"pressure:IN:upstream_vessel","639":"pressure:IN:upstream_vessel","640":"pressure:IN:upstream_vessel","641":"pressure:IN:upstream_vessel","642":"pressure:IN:upstream_vessel","643":"pressure:IN:upstream_vessel","644":"pressure:IN:upstream_vessel","645":"pressure:IN:upstream_vessel","646":"pressure:IN:upstream_vessel","647":"pressure:IN:upstream_vessel","648":"pressure:IN:upstream_vessel","649":"pressure:IN:upstream_vessel","650":"pressure:IN:upstream_vessel","651":"pressure:IN:upstream_vessel","652":"pressure:IN:upstream_vessel","653":"pressure:IN:upstream_vessel","654":"pressure:IN:upstream_vessel","655":"pressure:IN:upstream_vessel","656":"pressure:IN:upstream_vessel","657":"pressure:IN:upstream_vessel","658":"pressure:IN:upstream_vessel","659":"pressure:IN:upstream_vessel","660":"pressure:IN:upstream_vessel","661":"pressure:IN:upstream_vessel","662":"pressure:IN:upstream_vessel","663":"pressure:IN:upstream_vessel","664":"pressure:IN:upstream_vessel","665":"pressure:IN:upstream_vessel","666":"pressure:IN:upstream_vessel","667":"pressure:IN:upstream_vessel","668":"pressure:IN:upstream_vessel","669":"pressure:IN:upstream_vessel","670":"pressure:IN:upstream_vessel","671":"pressure:IN:upstream_vessel","672":"pressure:IN:upstream_vessel","673":"pressure:IN:upstream_vessel","674":"pressure:IN:upstream_vessel","675":"pressure:IN:upstream_vessel","676":"pressure:IN:upstream_vessel","677":"pressure:IN:upstream_vessel","678":"pressure:IN:upstream_vessel","679":"pressure:IN:upstream_vessel","680":"pressure:IN:upstream_vessel","681":"pressure:IN:upstream_vessel","682":"pressure:IN:upstream_vessel","683":"pressure:IN:upstream_vessel","684":"pressure:IN:upstream_vessel","685":"pressure:IN:upstream_vessel","686":"pressure:IN:upstream_vessel","687":"pressure:IN:upstream_vessel","688":"pressure:IN:upstream_vessel","689":"pressure:IN:upstream_vessel","690":"pressure:IN:upstream_vessel","691":"pressure:IN:upstream_vessel","692":"pressure:IN:upstream_vessel","693":"pressure:IN:upstream_vessel","694":"pressure:IN:upstream_vessel","695":"pressure:IN:upstream_vessel","696":"pressure:IN:upstream_vessel","697":"pressure:IN:upstream_vessel","698":"pressure:IN:upstream_vessel","699":"pressure:IN:upstream_vessel","700":"pressure:IN:upstream_vessel","701":"pressure:IN:upstream_vessel","702":"pressure:IN:upstream_vessel","703":"pressure:IN:upstream_vessel","704":"pressure:IN:upstream_vessel","705":"pressure:IN:upstream_vessel","706":"pressure:IN:upstream_vessel","707":"pressure:IN:upstream_vessel","708":"pressure:IN:upstream_vessel","709":"pressure:IN:upstream_vessel","710":"pressure:IN:upstream_vessel","711":"pressure:IN:upstream_vessel","712":"pressure:IN:upstream_vessel","713":"pressure:IN:upstream_vessel","714":"pressure:IN:upstream_vessel","715":"pressure:IN:upstream_vessel","716":"pressure:IN:upstream_vessel","717":"pressure:IN:upstream_vessel","718":"pressure:IN:upstream_vessel","719":"pressure:IN:upstream_vessel","720":"pressure:IN:upstream_vessel","721":"pressure:IN:upstream_vessel","722":"pressure:IN:upstream_vessel","723":"pressure:IN:upstream_vessel","724":"pressure:IN:upstream_vessel","725":"pressure:IN:upstream_vessel","726":"pressure:IN:upstream_vessel","727":"pressure:IN:upstream_vessel","728":"pressure:IN:upstream_vessel","729":"pressure:IN:upstream_vessel","730":"pressure:IN:upstream_vessel","731":"pressure:IN:upstream_vessel","732":"pressure:IN:upstream_vessel","733":"pressure:IN:upstream_vessel","734":"pressure:IN:upstream_vessel","735":"pressure:IN:upstream_vessel","736":"pressure:IN:upstream_vessel","737":"pressure:IN:upstream_vessel","738":"pressure:IN:upstream_vessel","739":"pressure:IN:upstream_vessel","740":"pressure:IN:upstream_vessel","741":"pressure:IN:upstream_vessel","742":"pressure:IN:upstream_vessel","743":"pressure:IN:upstream_vessel","744":"pressure:IN:upstream_vessel","745":"pressure:IN:upstream_vessel","746":"pressure:IN:upstream_vessel","747":"pressure:IN:upstream_vessel","748":"pressure:IN:upstream_vessel","749":"pressure:IN:upstream_vessel","750":"pressure:IN:upstream_vessel","751":"pressure:IN:upstream_vessel","752":"pressure:IN:upstream_vessel","753":"pressure:IN:upstream_vessel","754":"pressure:IN:upstream_vessel","755":"pressure:IN:upstream_vessel","756":"pressure:IN:upstream_vessel","757":"pressure:IN:upstream_vessel","758":"pressure:IN:upstream_vessel","759":"pressure:IN:upstream_vessel","760":"pressure:IN:upstream_vessel","761":"pressure:IN:upstream_vessel","762":"pressure:IN:upstream_vessel","763":"pressure:IN:upstream_vessel","764":"pressure:IN:upstream_vessel","765":"pressure:IN:upstream_vessel","766":"pressure:IN:upstream_vessel","767":"pressure:IN:upstream_vessel","768":"pressure:IN:upstream_vessel","769":"pressure:IN:upstream_vessel","770":"pressure:IN:upstream_vessel","771":"pressure:IN:upstream_vessel","772":"pressure:IN:upstream_vessel","773":"pressure:IN:upstream_vessel","774":"pressure:IN:upstream_vessel","775":"pressure:IN:upstream_vessel","776":"pressure:IN:upstream_vessel","777":"pressure:IN:upstream_vessel","778":"pressure:IN:upstream_vessel","779":"pressure:IN:upstream_vessel","780":"pressure:IN:upstream_vessel","781":"pressure:IN:upstream_vessel","782":"pressure:IN:upstream_vessel","783":"pressure:IN:upstream_vessel","784":"pressure:IN:upstream_vessel","785":"pressure:IN:upstream_vessel","786":"pressure:IN:upstream_vessel","787":"pressure:IN:upstream_vessel","788":"pressure:IN:upstream_vessel","789":"pressure:IN:upstream_vessel","790":"pressure:IN:upstream_vessel","791":"pressure:IN:upstream_vessel","792":"pressure:IN:upstream_vessel","793":"pressure:IN:upstream_vessel","794":"pressure:IN:upstream_vessel","795":"pressure:IN:upstream_vessel","796":"pressure:IN:upstream_vessel","797":"pressure:IN:upstream_vessel","798":"pressure:IN:upstream_vessel","799":"pressure:IN:upstream_vessel","800":"pressure:IN:upstream_vessel","801":"pressure:IN:upstream_vessel","802":"pressure:IN:upstream_vessel","803":"pressure:IN:upstream_vessel","804":"pressure:IN:upstream_vessel","805":"pressure:IN:upstream_vessel","806":"pressure:IN:upstream_vessel","807":"pressure:IN:upstream_vessel","808":"pressure:IN:upstream_vessel","809":"pressure:IN:upstream_vessel","810":"pressure:IN:upstream_vessel","811":"pressure:IN:upstream_vessel","812":"pressure:IN:upstream_vessel","813":"pressure:IN:upstream_vessel","814":"pressure:IN:upstream_vessel","815":"pressure:IN:upstream_vessel","816":"pressure:IN:upstream_vessel","817":"pressure:IN:upstream_vessel","818":"pressure:IN:upstream_vessel","819":"pressure:IN:upstream_vessel","820":"pressure:IN:upstream_vessel","821":"pressure:IN:upstream_vessel","822":"pressure:IN:upstream_vessel","823":"pressure:IN:upstream_vessel","824":"pressure:IN:upstream_vessel","825":"pressure:IN:upstream_vessel","826":"pressure:IN:upstream_vessel","827":"pressure:IN:upstream_vessel","828":"pressure:IN:upstream_vessel","829":"pressure:IN:upstream_vessel","830":"pressure:IN:upstream_vessel","831":"pressure:IN:upstream_vessel","832":"pressure:IN:upstream_vessel","833":"pressure:IN:upstream_vessel","834":"pressure:IN:upstream_vessel","835":"pressure:IN:upstream_vessel","836":"pressure:IN:upstream_vessel","837":"pressure:IN:upstream_vessel","838":"pressure:IN:upstream_vessel","839":"pressure:IN:upstream_vessel","840":"pressure:IN:upstream_vessel","841":"pressure:IN:upstream_vessel","842":"pressure:IN:upstream_vessel","843":"pressure:IN:upstream_vessel","844":"pressure:IN:upstream_vessel","845":"pressure:IN:upstream_vessel","846":"pressure:IN:upstream_vessel","847":"pressure:IN:upstream_vessel","848":"pressure:IN:upstream_vessel","849":"pressure:IN:upstream_vessel","850":"pressure:IN:upstream_vessel","851":"pressure:IN:upstream_vessel","852":"pressure:IN:upstream_vessel","853":"pressure:IN:upstream_vessel","854":"pressure:IN:upstream_vessel","855":"pressure:IN:upstream_vessel","856":"pressure:IN:upstream_vessel","857":"pressure:IN:upstream_vessel","858":"pressure:IN:upstream_vessel","859":"pressure:IN:upstream_vessel","860":"pressure:IN:upstream_vessel","861":"pressure:IN:upstream_vessel","862":"pressure:IN:upstream_vessel","863":"pressure:IN:upstream_vessel","864":"pressure:IN:upstream_vessel","865":"pressure:IN:upstream_vessel","866":"pressure:IN:upstream_vessel","867":"pressure:IN:upstream_vessel","868":"pressure:IN:upstream_vessel","869":"pressure:IN:upstream_vessel","870":"pressure:IN:upstream_vessel","871":"pressure:IN:upstream_vessel","872":"pressure:IN:upstream_vessel","873":"pressure:IN:upstream_vessel","874":"pressure:IN:upstream_vessel","875":"pressure:IN:upstream_vessel","876":"pressure:IN:upstream_vessel","877":"pressure:IN:upstream_vessel","878":"pressure:IN:upstream_vessel","879":"pressure:IN:upstream_vessel","880":"pressure:IN:upstream_vessel","881":"pressure:IN:upstream_vessel","882":"pressure:IN:upstream_vessel","883":"pressure:IN:upstream_vessel","884":"pressure:IN:upstream_vessel","885":"pressure:IN:upstream_vessel","886":"pressure:IN:upstream_vessel","887":"pressure:IN:upstream_vessel","888":"pressure:IN:upstream_vessel","889":"pressure:IN:upstream_vessel","890":"pressure:IN:upstream_vessel","891":"pressure:IN:upstream_vessel","892":"pressure:IN:upstream_vessel","893":"pressure:IN:upstream_vessel","894":"pressure:IN:upstream_vessel","895":"pressure:IN:upstream_vessel","896":"pressure:IN:upstream_vessel","897":"pressure:IN:upstream_vessel","898":"pressure:IN:upstream_vessel","899":"pressure:IN:upstream_vessel","900":"pressure:IN:upstream_vessel","901":"pressure:IN:upstream_vessel","902":"pressure:IN:upstream_vessel","903":"pressure:IN:upstream_vessel","904":"pressure:IN:upstream_vessel","905":"pressure:IN:upstream_vessel","906":"pressure:IN:upstream_vessel","907":"pressure:IN:upstream_vessel","908":"pressure:IN:upstream_vessel","909":"pressure:IN:upstream_vessel","910":"pressure:IN:upstream_vessel","911":"pressure:IN:upstream_vessel","912":"pressure:IN:upstream_vessel","913":"pressure:IN:upstream_vessel","914":"pressure:IN:upstream_vessel","915":"pressure:IN:upstream_vessel","916":"pressure:IN:upstream_vessel","917":"pressure:IN:upstream_vessel","918":"pressure:IN:upstream_vessel","919":"pressure:IN:upstream_vessel","920":"pressure:IN:upstream_vessel","921":"pressure:IN:upstream_vessel","922":"pressure:IN:upstream_vessel","923":"pressure:IN:upstream_vessel","924":"pressure:IN:upstream_vessel","925":"pressure:IN:upstream_vessel","926":"pressure:IN:upstream_vessel","927":"pressure:IN:upstream_vessel","928":"pressure:IN:upstream_vessel","929":"pressure:IN:upstream_vessel","930":"pressure:IN:upstream_vessel","931":"pressure:IN:upstream_vessel","932":"pressure:IN:upstream_vessel","933":"pressure:IN:upstream_vessel","934":"pressure:IN:upstream_vessel","935":"pressure:IN:upstream_vessel","936":"pressure:IN:upstream_vessel","937":"pressure:IN:upstream_vessel","938":"pressure:IN:upstream_vessel","939":"pressure:IN:upstream_vessel","940":"pressure:IN:upstream_vessel","941":"pressure:IN:upstream_vessel","942":"pressure:IN:upstream_vessel","943":"pressure:IN:upstream_vessel","944":"pressure:IN:upstream_vessel","945":"pressure:IN:upstream_vessel","946":"pressure:IN:upstream_vessel","947":"pressure:IN:upstream_vessel","948":"pressure:IN:upstream_vessel","949":"pressure:IN:upstream_vessel","950":"pressure:IN:upstream_vessel","951":"pressure:IN:upstream_vessel","952":"pressure:IN:upstream_vessel","953":"pressure:IN:upstream_vessel","954":"pressure:IN:upstream_vessel","955":"pressure:IN:upstream_vessel","956":"pressure:IN:upstream_vessel","957":"pressure:IN:upstream_vessel","958":"pressure:IN:upstream_vessel","959":"pressure:IN:upstream_vessel","960":"pressure:IN:upstream_vessel","961":"pressure:IN:upstream_vessel","962":"pressure:IN:upstream_vessel","963":"pressure:IN:upstream_vessel","964":"pressure:IN:upstream_vessel","965":"pressure:IN:upstream_vessel","966":"pressure:IN:upstream_vessel","967":"pressure:IN:upstream_vessel","968":"pressure:IN:upstream_vessel","969":"pressure:IN:upstream_vessel","970":"pressure:IN:upstream_vessel","971":"pressure:IN:upstream_vessel","972":"pressure:IN:upstream_vessel","973":"pressure:IN:upstream_vessel","974":"pressure:IN:upstream_vessel","975":"pressure:IN:upstream_vessel","976":"pressure:IN:upstream_vessel","977":"pressure:IN:upstream_vessel","978":"pressure:IN:upstream_vessel","979":"pressure:IN:upstream_vessel","980":"pressure:IN:upstream_vessel","981":"pressure:IN:upstream_vessel","982":"pressure:IN:upstream_vessel","983":"pressure:IN:upstream_vessel","984":"pressure:IN:upstream_vessel","985":"pressure:IN:upstream_vessel","986":"pressure:IN:upstream_vessel","987":"pressure:IN:upstream_vessel","988":"pressure:IN:upstream_vessel","989":"pressure:IN:upstream_vessel","990":"pressure:IN:upstream_vessel","991":"pressure:IN:upstream_vessel","992":"pressure:IN:upstream_vessel","993":"pressure:IN:upstream_vessel","994":"pressure:IN:upstream_vessel","995":"pressure:IN:upstream_vessel","996":"pressure:IN:upstream_vessel","997":"pressure:IN:upstream_vessel","998":"pressure:IN:upstream_vessel","999":"pressure:IN:upstream_vessel","1000":"flow:downstream_vessel:OUT","1001":"flow:downstream_vessel:OUT","1002":"flow:downstream_vessel:OUT","1003":"flow:downstream_vessel:OUT","1004":"flow:downstream_vessel:OUT","1005":"flow:downstream_vessel:OUT","1006":"flow:downstream_vessel:OUT","1007":"flow:downstream_vessel:OUT","1008":"flow:downstream_vessel:OUT","1009":"flow:downstream_vessel:OUT","1010":"flow:downstream_vessel:OUT","1011":"flow:downstream_vessel:OUT","1012":"flow:downstream_vessel:OUT","1013":"flow:downstream_vessel:OUT","1014":"flow:downstream_vessel:OUT","1015":"flow:downstream_vessel:OUT","1016":"flow:downstream_vessel:OUT","1017":"flow:downstream_vessel:OUT","1018":"flow:downstream_vessel:OUT","1019":"flow:downstream_vessel:OUT","1020":"flow:downstream_vessel:OUT","1021":"flow:downstream_vessel:OUT","1022":"flow:downstream_vessel:OUT","1023":"flow:downstream_vessel:OUT","1024":"flow:downstream_vessel:OUT","1025":"flow:downstream_vessel:OUT","1026":"flow:downstream_vessel:OUT","1027":"flow:downstream_vessel:OUT","1028":"flow:downstream_vessel:OUT","1029":"flow:downstream_vessel:OUT","1030":"flow:downstream_vessel:OUT","1031":"flow:downstream_vessel:OUT","1032":"flow:downstream_vessel:OUT","1033":"flow:downstream_vessel:OUT","1034":"flow:downstream_vessel:OUT","1035":"flow:downstream_vessel:OUT","1036":"flow:downstream_vessel:OUT","1037":"flow:downstream_vessel:OUT","1038":"flow:downstream_vessel:OUT","1039":"flow:downstream_vessel:OUT","1040":"flow:downstream_vessel:OUT","1041":"flow:downstream_vessel:OUT","1042":"flow:downstream_vessel:OUT","1043":"flow:downstream_vessel:OUT","1044":"flow:downstream_vessel:OUT","1045":"flow:downstream_vessel:OUT","1046":"flow:downstream_vessel:OUT","1047":"flow:downstream_vessel:OUT","1048":"flow:downstream_vessel:OUT","1049":"flow:downstream_vessel:OUT","1050":"flow:downstream_vessel:OUT","1051":"flow:downstream_vessel:OUT","1052":"flow:downstream_vessel:OUT","1053":"flow:downstream_vessel:OUT","1054":"flow:downstream_vessel:OUT","1055":"flow:downstream_vessel:OUT","1056":"flow:downstream_vessel:OUT","1057":"flow:downstream_vessel:OUT","1058":"flow:downstream_vessel:OUT","1059":"flow:downstream_vessel:OUT","1060":"flow:downstream_vessel:OUT","1061":"flow:downstream_vessel:OUT","1062":"flow:downstream_vessel:OUT","1063":"flow:downstream_vessel:OUT","1064":"flow:downstream_vessel:OUT","1065":"flow:downstream_vessel:OUT","1066":"flow:downstream_vessel:OUT","1067":"flow:downstream_vessel:OUT","1068":"flow:downstream_vessel:OUT","1069":"flow:downstream_vessel:OUT","1070":"flow:downstream_vessel:OUT","1071":"flow:downstream_vessel:OUT","1072":"flow:downstream_vessel:OUT","1073":"flow:downstream_vessel:OUT","1074":"flow:downstream_vessel:OUT","1075":"flow:downstream_vessel:OUT","1076":"flow:downstream_vessel:OUT","1077":"flow:downstream_vessel:OUT","1078":"flow:downstream_vessel:OUT","1079":"flow:downstream_vessel:OUT","1080":"flow:downstream_vessel:OUT","1081":"flow:downstream_vessel:OUT","1082":"flow:downstream_vessel:OUT","1083":"flow:downstream_vessel:OUT","1084":"flow:downstream_vessel:OUT","1085":"flow:downstream_vessel:OUT","1086":"flow:downstream_vessel:OUT","1087":"flow:downstream_vessel:OUT","1088":"flow:downstream_vessel:OUT","1089":"flow:downstream_vessel:OUT","1090":"flow:downstream_vessel:OUT","1091":"flow:downstream_vessel:OUT","1092":"flow:downstream_vessel:OUT","1093":"flow:downstream_vessel:OUT","1094":"flow:downstream_vessel:OUT","1095":"flow:downstream_vessel:OUT","1096":"flow:downstream_vessel:OUT","1097":"flow:downstream_vessel:OUT","1098":"flow:downstream_vessel:OUT","1099":"flow:downstream_vessel:OUT","1100":"flow:downstream_vessel:OUT","1101":"flow:downstream_vessel:OUT","1102":"flow:downstream_vessel:OUT","1103":"flow:downstream_vessel:OUT","1104":"flow:downstream_vessel:OUT","1105":"flow:downstream_vessel:OUT","1106":"flow:downstream_vessel:OUT","1107":"flow:downstream_vessel:OUT","1108":"flow:downstream_vessel:OUT","1109":"flow:downstream_vessel:OUT","1110":"flow:downstream_vessel:OUT","1111":"flow:downstream_vessel:OUT","1112":"flow:downstream_vessel:OUT","1113":"flow:downstream_vessel:OUT","1114":"flow:downstream_vessel:OUT","1115":"flow:downstream_vessel:OUT","1116":"flow:downstream_vessel:OUT","1117":"flow:downstream_vessel:OUT","1118":"flow:downstream_vessel:OUT","1119":"flow:downstream_vessel:OUT","1120":"flow:downstream_vessel:OUT","1121":"flow:downstream_vessel:OUT","1122":"flow:downstream_vessel:OUT","1123":"flow:downstream_vessel:OUT","1124":"flow:downstream_vessel:OUT","1125":"flow:downstream_vessel:OUT","1126":"flow:downstream_vessel:OUT","1127":"flow:downstream_vessel:OUT","1128":"flow:downstream_vessel:OUT","1129":"flow:downstream_vessel:OUT","1130":"flow:downstream_vessel:OUT","1131":"flow:downstream_vessel:OUT","1132":"flow:downstream_vessel:OUT","1133":"flow:downstream_vessel:OUT","1134":"flow:downstream_vessel:OUT","1135":"flow:downstream_vessel:OUT","1136":"flow:downstream_vessel:OUT","1137":"flow:downstream_vessel:OUT","1138":"flow:downstream_vessel:OUT","1139":"flow:downstream_vessel:OUT","1140":"flow:downstream_vessel:OUT","1141":"flow:downstream_vessel:OUT","1142":"flow:downstream_vessel:OUT","1143":"flow:downstream_vessel:OUT","1144":"flow:downstream_vessel:OUT","1145":"flow:downstream_vessel:OUT","1146":"flow:downstream_vessel:OUT","1147":"flow:downstream_vessel:OUT","1148":"flow:downstream_vessel:OUT","1149":"flow:downstream_vessel:OUT","1150":"flow:downstream_vessel:OUT","1151":"flow:downstream_vessel:OUT","1152":"flow:downstream_vessel:OUT","1153":"flow:downstream_vessel:OUT","1154":"flow:downstream_vessel:OUT","1155":"flow:downstream_vessel:OUT","1156":"flow:downstream_vessel:OUT","1157":"flow:downstream_vessel:OUT","1158":"flow:downstream_vessel:OUT","1159":"flow:downstream_vessel:OUT","1160":"flow:downstream_vessel:OUT","1161":"flow:downstream_vessel:OUT","1162":"flow:downstream_vessel:OUT","1163":"flow:downstream_vessel:OUT","1164":"flow:downstream_vessel:OUT","1165":"flow:downstream_vessel:OUT","1166":"flow:downstream_vessel:OUT","1167":"flow:downstream_vessel:OUT","1168":"flow:downstream_vessel:OUT","1169":"flow:downstream_vessel:OUT","1170":"flow:downstream_vessel:OUT","1171":"flow:downstream_vessel:OUT","1172":"flow:downstream_vessel:OUT","1173":"flow:downstream_vessel:OUT","1174":"flow:downstream_vessel:OUT","1175":"flow:downstream_vessel:OUT","1176":"flow:downstream_vessel:OUT","1177":"flow:downstream_vessel:OUT","1178":"flow:downstream_vessel:OUT","1179":"flow:downstream_vessel:OUT","1180":"flow:downstream_vessel:OUT","1181":"flow:downstream_vessel:OUT","1182":"flow:downstream_vessel:OUT","1183":"flow:downstream_vessel:OUT","1184":"flow:downstream_vessel:OUT","1185":"flow:downstream_vessel:OUT","1186":"flow:downstream_vessel:OUT","1187":"flow:downstream_vessel:OUT","1188":"flow:downstream_vessel:OUT","1189":"flow:downstream_vessel:OUT","1190":"flow:downstream_vessel:OUT","1191":"flow:downstream_vessel:OUT","1192":"flow:downstream_vessel:OUT","1193":"flow:downstream_vessel:OUT","1194":"flow:downstream_vessel:OUT","1195":"flow:downstream_vessel:OUT","1196":"flow:downstream_vessel:OUT","1197":"flow:downstream_vessel:OUT","1198":"flow:downstream_vessel:OUT","1199":"flow:downstream_vessel:OUT","1200":"flow:downstream_vessel:OUT","1201":"flow:downstream_vessel:OUT","1202":"flow:downstream_vessel:OUT","1203":"flow:downstream_vessel:OUT","1204":"flow:downstream_vessel:OUT","1205":"flow:downstream_vessel:OUT","1206":"flow:downstream_vessel:OUT","1207":"flow:downstream_vessel:OUT","1208":"flow:downstream_vessel:OUT","1209":"flow:downstream_vessel:OUT","1210":"flow:downstream_vessel:OUT","1211":"flow:downstream_vessel:OUT","1212":"flow:downstream_vessel:OUT","1213":"flow:downstream_vessel:OUT","1214":"flow:downstream_vessel:OUT","1215":"flow:downstream_vessel:OUT","1216":"flow:downstream_vessel:OUT","1217":"flow:downstream_vessel:OUT","1218":"flow:downstream_vessel:OUT","1219":"flow:downstream_vessel:OUT","1220":"flow:downstream_vessel:OUT","1221":"flow:downstream_vessel:OUT","1222":"flow:downstream_vessel:OUT","1223":"flow:downstream_vessel:OUT","1224":"flow:downstream_vessel:OUT","1225":"flow:downstream_vessel:OUT","1226":"flow:downstream_vessel:OUT","1227":"flow:downstream_vessel:OUT","1228":"flow:downstream_vessel:OUT","1229":"flow:downstream_vessel:OUT","1230":"flow:downstream_vessel:OUT","1231":"flow:downstream_vessel:OUT","1232":"flow:downstream_vessel:OUT","1233":"flow:downstream_vessel:OUT","1234":"flow:downstream_vessel:OUT","1235":"flow:downstream_vessel:OUT","1236":"flow:downstream_vessel:OUT","1237":"flow:downstream_vessel:OUT","1238":"flow:downstream_vessel:OUT","1239":"flow:downstream_vessel:OUT","1240":"flow:downstream_vessel:OUT","1241":"flow:downstream_vessel:OUT","1242":"flow:downstream_vessel:OUT","1243":"flow:downstream_vessel:OUT","1244":"flow:downstream_vessel:OUT","1245":"flow:downstream_vessel:OUT","1246":"flow:downstream_vessel:OUT","1247":"flow:downstream_vessel:OUT","1248":"flow:downstream_vessel:OUT","1249":"flow:downstream_vessel:OUT","1250":"flow:downstream_vessel:OUT","1251":"flow:downstream_vessel:OUT","1252":"flow:downstream_vessel:OUT","1253":"flow:downstream_vessel:OUT","1254":"flow:downstream_vessel:OUT","1255":"flow:downstream_vessel:OUT","1256":"flow:downstream_vessel:OUT","1257":"flow:downstream_vessel:OUT","1258":"flow:downstream_vessel:OUT","1259":"flow:downstream_vessel:OUT","1260":"flow:downstream_vessel:OUT","1261":"flow:downstream_vessel:OUT","1262":"flow:downstream_vessel:OUT","1263":"flow:downstream_vessel:OUT","1264":"flow:downstream_vessel:OUT","1265":"flow:downstream_vessel:OUT","1266":"flow:downstream_vessel:OUT","1267":"flow:downstream_vessel:OUT","1268":"flow:downstream_vessel:OUT","1269":"flow:downstream_vessel:OUT","1270":"flow:downstream_vessel:OUT","1271":"flow:downstream_vessel:OUT","1272":"flow:downstream_vessel:OUT","1273":"flow:downstream_vessel:OUT","1274":"flow:downstream_vessel:OUT","1275":"flow:downstream_vessel:OUT","1276":"flow:downstream_vessel:OUT","1277":"flow:downstream_vessel:OUT","1278":"flow:downstream_vessel:OUT","1279":"flow:downstream_vessel:OUT","1280":"flow:downstream_vessel:OUT","1281":"flow:downstream_vessel:OUT","1282":"flow:downstream_vessel:OUT","1283":"flow:downstream_vessel:OUT","1284":"flow:downstream_vessel:OUT","1285":"flow:downstream_vessel:OUT","1286":"flow:downstream_vessel:OUT","1287":"flow:downstream_vessel:OUT","1288":"flow:downstream_vessel:OUT","1289":"flow:downstream_vessel:OUT","1290":"flow:downstream_vessel:OUT","1291":"flow:downstream_vessel:OUT","1292":"flow:downstream_vessel:OUT","1293":"flow:downstream_vessel:OUT","1294":"flow:downstream_vessel:OUT","1295":"flow:downstream_vessel:OUT","1296":"flow:downstream_vessel:OUT","1297":"flow:downstream_vessel:OUT","1298":"flow:downstream_vessel:OUT","1299":"flow:downstream_vessel:OUT","1300":"flow:downstream_vessel:OUT","1301":"flow:downstream_vessel:OUT","1302":"flow:downstream_vessel:OUT","1303":"flow:downstream_vessel:OUT","1304":"flow:downstream_vessel:OUT","1305":"flow:downstream_vessel:OUT","1306":"flow:downstream_vessel:OUT","1307":"flow:downstream_vessel:OUT","1308":"flow:downstream_vessel:OUT","1309":"flow:downstream_vessel:OUT","1310":"flow:downstream_vessel:OUT","1311":"flow:downstream_vessel:OUT","1312":"flow:downstream_vessel:OUT","1313":"flow:downstream_vessel:OUT","1314":"flow:downstream_vessel:OUT","1315":"flow:downstream_vessel:OUT","1316":"flow:downstream_vessel:OUT","1317":"flow:downstream_vessel:OUT","1318":"flow:downstream_vessel:OUT","1319":"flow:downstream_vessel:OUT","1320":"flow:downstream_vessel:OUT","1321":"flow:downstream_vessel:OUT","1322":"flow:downstream_vessel:OUT","1323":"flow:downstream_vessel:OUT","1324":"flow:downstream_vessel:OUT","1325":"flow:downstream_vessel:OUT","1326":"flow:downstream_vessel:OUT","1327":"flow:downstream_vessel:OUT","1328":"flow:downstream_vessel:OUT","1329":"flow:downstream_vessel:OUT","1330":"flow:downstream_vessel:OUT","1331":"flow:downstream_vessel:OUT","1332":"flow:downstream_vessel:OUT","1333":"flow:downstream_vessel:OUT","1334":"flow:downstream_vessel:OUT","1335":"flow:downstream_vessel:OUT","1336":"flow:downstream_vessel:OUT","1337":"flow:downstream_vessel:OUT","1338":"flow:downstream_vessel:OUT","1339":"flow:downstream_vessel:OUT","1340":"flow:downstream_vessel:OUT","1341":"flow:downstream_vessel:OUT","1342":"flow:downstream_vessel:OUT","1343":"flow:downstream_vessel:OUT","1344":"flow:downstream_vessel:OUT","1345":"flow:downstream_vessel:OUT","1346":"flow:downstream_vessel:OUT","1347":"flow:downstream_vessel:OUT","1348":"flow:downstream_vessel:OUT","1349":"flow:downstream_vessel:OUT","1350":"flow:downstream_vessel:OUT","1351":"flow:downstream_vessel:OUT","1352":"flow:downstream_vessel:OUT","1353":"flow:downstream_vessel:OUT","1354":"flow:downstream_vessel:OUT","1355":"flow:downstream_vessel:OUT","1356":"flow:downstream_vessel:OUT","1357":"flow:downstream_vessel:OUT","1358":"flow:downstream_vessel:OUT","1359":"flow:downstream_vessel:OUT","1360":"flow:downstream_vessel:OUT","1361":"flow:downstream_vessel:OUT","1362":"flow:downstream_vessel:OUT","1363":"flow:downstream_vessel:OUT","1364":"flow:downstream_vessel:OUT","1365":"flow:downstream_vessel:OUT","1366":"flow:downstream_vessel:OUT","1367":"flow:downstream_vessel:OUT","1368":"flow:downstream_vessel:OUT","1369":"flow:downstream_vessel:OUT","1370":"flow:downstream_vessel:OUT","1371":"flow:downstream_vessel:OUT","1372":"flow:downstream_vessel:OUT","1373":"flow:downstream_vessel:OUT","1374":"flow:downstream_vessel:OUT","1375":"flow:downstream_vessel:OUT","1376":"flow:downstream_vessel:OUT","1377":"flow:downstream_vessel:OUT","1378":"flow:downstream_vessel:OUT","1379":"flow:downstream_vessel:OUT","1380":"flow:downstream_vessel:OUT","1381":"flow:downstream_vessel:OUT","1382":"flow:downstream_vessel:OUT","1383":"flow:downstream_vessel:OUT","1384":"flow:downstream_vessel:OUT","1385":"flow:downstream_vessel:OUT","1386":"flow:downstream_vessel:OUT","1387":"flow:downstream_vessel:OUT","1388":"flow:downstream_vessel:OUT","1389":"flow:downstream_vessel:OUT","1390":"flow:downstream_vessel:OUT","1391":"flow:downstream_vessel:OUT","1392":"flow:downstream_vessel:OUT","1393":"flow:downstream_vessel:OUT","1394":"flow:downstream_vessel:OUT","1395":"flow:downstream_vessel:OUT","1396":"flow:downstream_vessel:OUT","1397":"flow:downstream_vessel:OUT","1398":"flow:downstream_vessel:OUT","1399":"flow:downstream_vessel:OUT","1400":"flow:downstream_vessel:OUT","1401":"flow:downstream_vessel:OUT","1402":"flow:downstream_vessel:OUT","1403":"flow:downstream_vessel:OUT","1404":"flow:downstream_vessel:OUT","1405":"flow:downstream_vessel:OUT","1406":"flow:downstream_vessel:OUT","1407":"flow:downstream_vessel:OUT","1408":"flow:downstream_vessel:OUT","1409":"flow:downstream_vessel:OUT","1410":"flow:downstream_vessel:OUT","1411":"flow:downstream_vessel:OUT","1412":"flow:downstream_vessel:OUT","1413":"flow:downstream_vessel:OUT","1414":"flow:downstream_vessel:OUT","1415":"flow:downstream_vessel:OUT","1416":"flow:downstream_vessel:OUT","1417":"flow:downstream_vessel:OUT","1418":"flow:downstream_vessel:OUT","1419":"flow:downstream_vessel:OUT","1420":"flow:downstream_vessel:OUT","1421":"flow:downstream_vessel:OUT","1422":"flow:downstream_vessel:OUT","1423":"flow:downstream_vessel:OUT","1424":"flow:downstream_vessel:OUT","1425":"flow:downstream_vessel:OUT","1426":"flow:downstream_vessel:OUT","1427":"flow:downstream_vessel:OUT","1428":"flow:downstream_vessel:OUT","1429":"flow:downstream_vessel:OUT","1430":"flow:downstream_vessel:OUT","1431":"flow:downstream_vessel:OUT","1432":"flow:downstream_vessel:OUT","1433":"flow:downstream_vessel:OUT","1434":"flow:downstream_vessel:OUT","1435":"flow:downstream_vessel:OUT","1436":"flow:downstream_vessel:OUT","1437":"flow:downstream_vessel:OUT","1438":"flow:downstream_vessel:OUT","1439":"flow:downstream_vessel:OUT","1440":"flow:downstream_vessel:OUT","1441":"flow:downstream_vessel:OUT","1442":"flow:downstream_vessel:OUT","1443":"flow:downstream_vessel:OUT","1444":"flow:downstream_vessel:OUT","1445":"flow:downstream_vessel:OUT","1446":"flow:downstream_vessel:OUT","1447":"flow:downstream_vessel:OUT","1448":"flow:downstream_vessel:OUT","1449":"flow:downstream_vessel:OUT","1450":"flow:downstream_vessel:OUT","1451":"flow:downstream_vessel:OUT","1452":"flow:downstream_vessel:OUT","1453":"flow:downstream_vessel:OUT","1454":"flow:downstream_vessel:OUT","1455":"flow:downstream_vessel:OUT","1456":"flow:downstream_vessel:OUT","1457":"flow:downstream_vessel:OUT","1458":"flow:downstream_vessel:OUT","1459":"flow:downstream_vessel:OUT","1460":"flow:downstream_vessel:OUT","1461":"flow:downstream_vessel:OUT","1462":"flow:downstream_vessel:OUT","1463":"flow:downstream_vessel:OUT","1464":"flow:downstream_vessel:OUT","1465":"flow:downstream_vessel:OUT","1466":"flow:downstream_vessel:OUT","1467":"flow:downstream_vessel:OUT","1468":"flow:downstream_vessel:OUT","1469":"flow:downstream_vessel:OUT","1470":"flow:downstream_vessel:OUT","1471":"flow:downstream_vessel:OUT","1472":"flow:downstream_vessel:OUT","1473":"flow:downstream_vessel:OUT","1474":"flow:downstream_vessel:OUT","1475":"flow:downstream_vessel:OUT","1476":"flow:downstream_vessel:OUT","1477":"flow:downstream_vessel:OUT","1478":"flow:downstream_vessel:OUT","1479":"flow:downstream_vessel:OUT","1480":"flow:downstream_vessel:OUT","1481":"flow:downstream_vessel:OUT","1482":"flow:downstream_vessel:OUT","1483":"flow:downstream_vessel:OUT","1484":"flow:downstream_vessel:OUT","1485":"flow:downstream_vessel:OUT","1486":"flow:downstream_vessel:OUT","1487":"flow:downstream_vessel:OUT","1488":"flow:downstream_vessel:OUT","1489":"flow:downstream_vessel:OUT","1490":"flow:downstream_vessel:OUT","1491":"flow:downstream_vessel:OUT","1492":"flow:downstream_vessel:OUT","1493":"flow:downstream_vessel:OUT","1494":"flow:downstream_vessel:OUT","1495":"flow:downstream_vessel:OUT","1496":"flow:downstream_vessel:OUT","1497":"flow:downstream_vessel:OUT","1498":"flow:downstream_vessel:OUT","1499":"flow:downstream_vessel:OUT","1500":"pressure:downstream_vessel:OUT","1501":"pressure:downstream_vessel:OUT","1502":"pressure:downstream_vessel:OUT","1503":"pressure:downstream_vessel:OUT","1504":"pressure:downstream_vessel:OUT","1505":"pressure:downstream_vessel:OUT","1506":"pressure:downstream_vessel:OUT","1507":"pressure:downstream_vessel:OUT","1508":"pressure:downstream_vessel:OUT","1509":"pressure:downstream_vessel:OUT","1510":"pressure:downstream_vessel:OUT","1511":"pressure:downstream_vessel:OUT","1512":"pressure:downstream_vessel:OUT","1513":"pressure:downstream_vessel:OUT","1514":"pressure:downstream_vessel:OUT","1515":"pressure:downstream_vessel:OUT","1516":"pressure:downstream_vessel:OUT","1517":"pressure:downstream_vessel:OUT","1518":"pressure:downstream_vessel:OUT","1519":"pressure:downstream_vessel:OUT","1520":"pressure:downstream_vessel:OUT","1521":"pressure:downstream_vessel:OUT","1522":"pressure:downstream_vessel:OUT","1523":"pressure:downstream_vessel:OUT","1524":"pressure:downstream_vessel:OUT","1525":"pressure:downstream_vessel:OUT","1526":"pressure:downstream_vessel:OUT","1527":"pressure:downstream_vessel:OUT","1528":"pressure:downstream_vessel:OUT","1529":"pressure:downstream_vessel:OUT","1530":"pressure:downstream_vessel:OUT","1531":"pressure:downstream_vessel:OUT","1532":"pressure:downstream_vessel:OUT","1533":"pressure:downstream_vessel:OUT","1534":"pressure:downstream_vessel:OUT","1535":"pressure:downstream_vessel:OUT","1536":"pressure:downstream_vessel:OUT","1537":"pressure:downstream_vessel:OUT","1538":"pressure:downstream_vessel:OUT","1539":"pressure:downstream_vessel:OUT","1540":"pressure:downstream_vessel:OUT","1541":"pressure:downstream_vessel:OUT","1542":"pressure:downstream_vessel:OUT","1543":"pressure:downstream_vessel:OUT","1544":"pressure:downstream_vessel:OUT","1545":"pressure:downstream_vessel:OUT","1546":"pressure:downstream_vessel:OUT","1547":"pressure:downstream_vessel:OUT","1548":"pressure:downstream_vessel:OUT","1549":"pressure:downstream_vessel:OUT","1550":"pressure:downstream_vessel:OUT","1551":"pressure:downstream_vessel:OUT","1552":"pressure:downstream_vessel:OUT","1553":"pressure:downstream_vessel:OUT","1554":"pressure:downstream_vessel:OUT","1555":"pressure:downstream_vessel:OUT","1556":"pressure:downstream_vessel:OUT","1557":"pressure:downstream_vessel:OUT","1558":"pressure:downstream_vessel:OUT","1559":"pressure:downstream_vessel:OUT","1560":"pressure:downstream_vessel:OUT","1561":"pressure:downstream_vessel:OUT","1562":"pressure:downstream_vessel:OUT","1563":"pressure:downstream_vessel:OUT","1564":"pressure:downstream_vessel:OUT","1565":"pressure:downstream_vessel:OUT","1566":"pressure:downstream_vessel:OUT","1567":"pressure:downstream_vessel:OUT","1568":"pressure:downstream_vessel:OUT","1569":"pressure:downstream_vessel:OUT","1570":"pressure:downstream_vessel:OUT","1571":"pressure:downstream_vessel:OUT","1572":"pressure:downstream_vessel:OUT","1573":"pressure:downstream_vessel:OUT","1574":"pressure:downstream_vessel:OUT","1575":"pressure:downstream_vessel:OUT","1576":"pressure:downstream_vessel:OUT","1577":"pressure:downstream_vessel:OUT","1578":"pressure:downstream_vessel:OUT","1579":"pressure:downstream_vessel:OUT","1580":"pressure:downstream_vessel:OUT","1581":"pressure:downstream_vessel:OUT","1582":"pressure:downstream_vessel:OUT","1583":"pressure:downstream_vessel:OUT","1584":"pressure:downstream_vessel:OUT","1585":"pressure:downstream_vessel:OUT","1586":"pressure:downstream_vessel:OUT","1587":"pressure:downstream_vessel:OUT","1588":"pressure:downstream_vessel:OUT","1589":"pressure:downstream_vessel:OUT","1590":"pressure:downstream_vessel:OUT","1591":"pressure:downstream_vessel:OUT","1592":"pressure:downstream_vessel:OUT","1593":"pressure:downstream_vessel:OUT","1594":"pressure:downstream_vessel:OUT","1595":"pressure:downstream_vessel:OUT","1596":"pressure:downstream_vessel:OUT","1597":"pressure:downstream_vessel:OUT","1598":"pressure:downstream_vessel:OUT","1599":"pressure:downstream_vessel:OUT","1600":"pressure:downstream_vessel:OUT","1601":"pressure:downstream_vessel:OUT","1602":"pressure:downstream_vessel:OUT","1603":"pressure:downstream_vessel:OUT","1604":"pressure:downstream_vessel:OUT","1605":"pressure:downstream_vessel:OUT","1606":"pressure:downstream_vessel:OUT","1607":"pressure:downstream_vessel:OUT","1608":"pressure:downstream_vessel:OUT","1609":"pressure:downstream_vessel:OUT","1610":"pressure:downstream_vessel:OUT","1611":"pressure:downstream_vessel:OUT","1612":"pressure:downstream_vessel:OUT","1613":"pressure:downstream_vessel:OUT","1614":"pressure:downstream_vessel:OUT","1615":"pressure:downstream_vessel:OUT","1616":"pressure:downstream_vessel:OUT","1617":"pressure:downstream_vessel:OUT","1618":"pressure:downstream_vessel:OUT","1619":"pressure:downstream_vessel:OUT","1620":"pressure:downstream_vessel:OUT","1621":"pressure:downstream_vessel:OUT","1622":"pressure:downstream_vessel:OUT","1623":"pressure:downstream_vessel:OUT","1624":"pressure:downstream_vessel:OUT","1625":"pressure:downstream_vessel:OUT","1626":"pressure:downstream_vessel:OUT","1627":"pressure:downstream_vessel:OUT","1628":"pressure:downstream_vessel:OUT","1629":"pressure:downstream_vessel:OUT","1630":"pressure:downstream_vessel:OUT","1631":"pressure:downstream_vessel:OUT","1632":"pressure:downstream_vessel:OUT","1633":"pressure:downstream_vessel:OUT","1634":"pressure:downstream_vessel:OUT","1635":"pressure:downstream_vessel:OUT","1636":"pressure:downstream_vessel:OUT","1637":"pressure:downstream_vessel:OUT","1638":"pressure:downstream_vessel:OUT","1639":"pressure:downstream_vessel:OUT","1640":"pressure:downstream_vessel:OUT","1641":"pressure:downstream_vessel:OUT","1642":"pressure:downstream_vessel:OUT","1643":"pressure:downstream_vessel:OUT","1644":"pressure:downstream_vessel:OUT","1645":"pressure:downstream_vessel:OUT","1646":"pressure:downstream_vessel:OUT","1647":"pressure:downstream_vessel:OUT","1648":"pressure:downstream_vessel:OUT","1649":"pressure:downstream_vessel:OUT","1650":"pressure:downstream_vessel:OUT","1651":"pressure:downstream_vessel:OUT","1652":"pressure:downstream_vessel:OUT","1653":"pressure:downstream_vessel:OUT","1654":"pressure:downstream_vessel:OUT","1655":"pressure:downstream_vessel:OUT","1656":"pressure:downstream_vessel:OUT","1657":"pressure:downstream_vessel:OUT","1658":"pressure:downstream_vessel:OUT","1659":"pressure:downstream_vessel:OUT","1660":"pressure:downstream_vessel:OUT","1661":"pressure:downstream_vessel:OUT","1662":"pressure:downstream_vessel:OUT","1663":"pressure:downstream_vessel:OUT","1664":"pressure:downstream_vessel:OUT","1665":"pressure:downstream_vessel:OUT","1666":"pressure:downstream_vessel:OUT","1667":"pressure:downstream_vessel:OUT","1668":"pressure:downstream_vessel:OUT","1669":"pressure:downstream_vessel:OUT","1670":"pressure:downstream_vessel:OUT","1671":"pressure:downstream_vessel:OUT","1672":"pressure:downstream_vessel:OUT","1673":"pressure:downstream_vessel:OUT","1674":"pressure:downstream_vessel:OUT","1675":"pressure:downstream_vessel:OUT","1676":"pressure:downstream_vessel:OUT","1677":"pressure:downstream_vessel:OUT","1678":"pressure:downstream_vessel:OUT","1679":"pressure:downstream_vessel:OUT","1680":"pressure:downstream_vessel:OUT","1681":"pressure:downstream_vessel:OUT","1682":"pressure:downstream_vessel:OUT","1683":"pressure:downstream_vessel:OUT","1684":"pressure:downstream_vessel:OUT","1685":"pressure:downstream_vessel:OUT","1686":"pressure:downstream_vessel:OUT","1687":"pressure:downstream_vessel:OUT","1688":"pressure:downstream_vessel:OUT","1689":"pressure:downstream_vessel:OUT","1690":"pressure:downstream_vessel:OUT","1691":"pressure:downstream_vessel:OUT","1692":"pressure:downstream_vessel:OUT","1693":"pressure:downstream_vessel:OUT","1694":"pressure:downstream_vessel:OUT","1695":"pressure:downstream_vessel:OUT","1696":"pressure:downstream_vessel:OUT","1697":"pressure:downstream_vessel:OUT","1698":"pressure:downstream_vessel:OUT","1699":"pressure:downstream_vessel:OUT","1700":"pressure:downstream_vessel:OUT","1701":"pressure:downstream_vessel:OUT","1702":"pressure:downstream_vessel:OUT","1703":"pressure:downstream_vessel:OUT","1704":"pressure:downstream_vessel:OUT","1705":"pressure:downstream_vessel:OUT","1706":"pressure:downstream_vessel:OUT","1707":"pressure:downstream_vessel:OUT","1708":"pressure:downstream_vessel:OUT","1709":"pressure:downstream_vessel:OUT","1710":"pressure:downstream_vessel:OUT","1711":"pressure:downstream_vessel:OUT","1712":"pressure:downstream_vessel:OUT","1713":"pressure:downstream_vessel:OUT","1714":"pressure:downstream_vessel:OUT","1715":"pressure:downstream_vessel:OUT","1716":"pressure:downstream_vessel:OUT","1717":"pressure:downstream_vessel:OUT","1718":"pressure:downstream_vessel:OUT","1719":"pressure:downstream_vessel:OUT","1720":"pressure:downstream_vessel:OUT","1721":"pressure:downstream_vessel:OUT","1722":"pressure:downstream_vessel:OUT","1723":"pressure:downstream_vessel:OUT","1724":"pressure:downstream_vessel:OUT","1725":"pressure:downstream_vessel:OUT","1726":"pressure:downstream_vessel:OUT","1727":"pressure:downstream_vessel:OUT","1728":"pressure:downstream_vessel:OUT","1729":"pressure:downstream_vessel:OUT","1730":"pressure:downstream_vessel:OUT","1731":"pressure:downstream_vessel:OUT","1732":"pressure:downstream_vessel:OUT","1733":"pressure:downstream_vessel:OUT","1734":"pressure:downstream_vessel:OUT","1735":"pressure:downstream_vessel:OUT","1736":"pressure:downstream_vessel:OUT","1737":"pressure:downstream_vessel:OUT","1738":"pressure:downstream_vessel:OUT","1739":"pressure:downstream_vessel:OUT","1740":"pressure:downstream_vessel:OUT","1741":"pressure:downstream_vessel:OUT","1742":"pressure:downstream_vessel:OUT","1743":"pressure:downstream_vessel:OUT","1744":"pressure:downstream_vessel:OUT","1745":"pressure:downstream_vessel:OUT","1746":"pressure:downstream_vessel:OUT","1747":"pressure:downstream_vessel:OUT","1748":"pressure:downstream_vessel:OUT","1749":"pressure:downstream_vessel:OUT","1750":"pressure:downstream_vessel:OUT","1751":"pressure:downstream_vessel:OUT","1752":"pressure:downstream_vessel:OUT","1753":"pressure:downstream_vessel:OUT","1754":"pressure:downstream_vessel:OUT","1755":"pressure:downstream_vessel:OUT","1756":"pressure:downstream_vessel:OUT","1757":"pressure:downstream_vessel:OUT","1758":"pressure:downstream_vessel:OUT","1759":"pressure:downstream_vessel:OUT","1760":"pressure:downstream_vessel:OUT","1761":"pressure:downstream_vessel:OUT","1762":"pressure:downstream_vessel:OUT","1763":"pressure:downstream_vessel:OUT","1764":"pressure:downstream_vessel:OUT","1765":"pressure:downstream_vessel:OUT","1766":"pressure:downstream_vessel:OUT","1767":"pressure:downstream_vessel:OUT","1768":"pressure:downstream_vessel:OUT","1769":"pressure:downstream_vessel:OUT","1770":"pressure:downstream_vessel:OUT","1771":"pressure:downstream_vessel:OUT","1772":"pressure:downstream_vessel:OUT","1773":"pressure:downstream_vessel:OUT","1774":"pressure:downstream_vessel:OUT","1775":"pressure:downstream_vessel:OUT","1776":"pressure:downstream_vessel:OUT","1777":"pressure:downstream_vessel:OUT","1778":"pressure:downstream_vessel:OUT","1779":"pressure:downstream_vessel:OUT","1780":"pressure:downstream_vessel:OUT","1781":"pressure:downstream_vessel:OUT","1782":"pressure:downstream_vessel:OUT","1783":"pressure:downstream_vessel:OUT","1784":"pressure:downstream_vessel:OUT","1785":"pressure:downstream_vessel:OUT","1786":"pressure:downstream_vessel:OUT","1787":"pressure:downstream_vessel:OUT","1788":"pressure:downstream_vessel:OUT","1789":"pressure:downstream_vessel:OUT","1790":"pressure:downstream_vessel:OUT","1791":"pressure:downstream_vessel:OUT","1792":"pressure:downstream_vessel:OUT","1793":"pressure:downstream_vessel:OUT","1794":"pressure:downstream_vessel:OUT","1795":"pressure:downstream_vessel:OUT","1796":"pressure:downstream_vessel:OUT","1797":"pressure:downstream_vessel:OUT","1798":"pressure:downstream_vessel:OUT","1799":"pressure:downstream_vessel:OUT","1800":"pressure:downstream_vessel:OUT","1801":"pressure:downstream_vessel:OUT","1802":"pressure:downstream_vessel:OUT","1803":"pressure:downstream_vessel:OUT","1804":"pressure:downstream_vessel:OUT","1805":"pressure:downstream_vessel:OUT","1806":"pressure:downstream_vessel:OUT","1807":"pressure:downstream_vessel:OUT","1808":"pressure:downstream_vessel:OUT","1809":"pressure:downstream_vessel:OUT","1810":"pressure:downstream_vessel:OUT","1811":"pressure:downstream_vessel:OUT","1812":"pressure:downstream_vessel:OUT","1813":"pressure:downstream_vessel:OUT","1814":"pressure:downstream_vessel:OUT","1815":"pressure:downstream_vessel:OUT","1816":"pressure:downstream_vessel:OUT","1817":"pressure:downstream_vessel:OUT","1818":"pressure:downstream_vessel:OUT","1819":"pressure:downstream_vessel:OUT","1820":"pressure:downstream_vessel:OUT","1821":"pressure:downstream_vessel:OUT","1822":"pressure:downstream_vessel:OUT","1823":"pressure:downstream_vessel:OUT","1824":"pressure:downstream_vessel:OUT","1825":"pressure:downstream_vessel:OUT","1826":"pressure:downstream_vessel:OUT","1827":"pressure:downstream_vessel:OUT","1828":"pressure:downstream_vessel:OUT","1829":"pressure:downstream_vessel:OUT","1830":"pressure:downstream_vessel:OUT","1831":"pressure:downstream_vessel:OUT","1832":"pressure:downstream_vessel:OUT","1833":"pressure:downstream_vessel:OUT","1834":"pressure:downstream_vessel:OUT","1835":"pressure:downstream_vessel:OUT","1836":"pressure:downstream_vessel:OUT","1837":"pressure:downstream_vessel:OUT","1838":"pressure:downstream_vessel:OUT","1839":"pressure:downstream_vessel:OUT","1840":"pressure:downstream_vessel:OUT","1841":"pressure:downstream_vessel:OUT","1842":"pressure:downstream_vessel:OUT","1843":"pressure:downstream_vessel:OUT","1844":"pressure:downstream_vessel:OUT","1845":"pressure:downstream_vessel:OUT","1846":"pressure:downstream_vessel:OUT","1847":"pressure:downstream_vessel:OUT","1848":"pressure:downstream_vessel:OUT","1849":"pressure:downstream_vessel:OUT","1850":"pressure:downstream_vessel:OUT","1851":"pressure:downstream_vessel:OUT","1852":"pressure:downstream_vessel:OUT","1853":"pressure:downstream_vessel:OUT","1854":"pressure:downstream_vessel:OUT","1855":"pressure:downstream_vessel:OUT","1856":"pressure:downstream_vessel:OUT","1857":"pressure:downstream_vessel:OUT","1858":"pressure:downstream_vessel:OUT","1859":"pressure:downstream_vessel:OUT","1860":"pressure:downstream_vessel:OUT","1861":"pressure:downstream_vessel:OUT","1862":"pressure:downstream_vessel:OUT","1863":"pressure:downstream_vessel:OUT","1864":"pressure:downstream_vessel:OUT","1865":"pressure:downstream_vessel:OUT","1866":"pressure:downstream_vessel:OUT","1867":"pressure:downstream_vessel:OUT","1868":"pressure:downstream_vessel:OUT","1869":"pressure:downstream_vessel:OUT","1870":"pressure:downstream_vessel:OUT","1871":"pressure:downstream_vessel:OUT","1872":"pressure:downstream_vessel:OUT","1873":"pressure:downstream_vessel:OUT","1874":"pressure:downstream_vessel:OUT","1875":"pressure:downstream_vessel:OUT","1876":"pressure:downstream_vessel:OUT","1877":"pressure:downstream_vessel:OUT","1878":"pressure:downstream_vessel:OUT","1879":"pressure:downstream_vessel:OUT","1880":"pressure:downstream_vessel:OUT","1881":"pressure:downstream_vessel:OUT","1882":"pressure:downstream_vessel:OUT","1883":"pressure:downstream_vessel:OUT","1884":"pressure:downstream_vessel:OUT","1885":"pressure:downstream_vessel:OUT","1886":"pressure:downstream_vessel:OUT","1887":"pressure:downstream_vessel:OUT","1888":"pressure:downstream_vessel:OUT","1889":"pressure:downstream_vessel:OUT","1890":"pressure:downstream_vessel:OUT","1891":"pressure:downstream_vessel:OUT","1892":"pressure:downstream_vessel:OUT","1893":"pressure:downstream_vessel:OUT","1894":"pressure:downstream_vessel:OUT","1895":"pressure:downstream_vessel:OUT","1896":"pressure:downstream_vessel:OUT","1897":"pressure:downstream_vessel:OUT","1898":"pressure:downstream_vessel:OUT","1899":"pressure:downstream_vessel:OUT","1900":"pressure:downstream_vessel:OUT","1901":"pressure:downstream_vessel:OUT","1902":"pressure:downstream_vessel:OUT","1903":"pressure:downstream_vessel:OUT","1904":"pressure:downstream_vessel:OUT","1905":"pressure:downstream_vessel:OUT","1906":"pressure:downstream_vessel:OUT","1907":"pressure:downstream_vessel:OUT","1908":"pressure:downstream_vessel:OUT","1909":"pressure:downstream_vessel:OUT","1910":"pressure:downstream_vessel:OUT","1911":"pressure:downstream_vessel:OUT","1912":"pressure:downstream_vessel:OUT","1913":"pressure:downstream_vessel:OUT","1914":"pressure:downstream_vessel:OUT","1915":"pressure:downstream_vessel:OUT","1916":"pressure:downstream_vessel:OUT","1917":"pressure:downstream_vessel:OUT","1918":"pressure:downstream_vessel:OUT","1919":"pressure:downstream_vessel:OUT","1920":"pressure:downstream_vessel:OUT","1921":"pressure:downstream_vessel:OUT","1922":"pressure:downstream_vessel:OUT","1923":"pressure:downstream_vessel:OUT","1924":"pressure:downstream_vessel:OUT","1925":"pressure:downstream_vessel:OUT","1926":"pressure:downstream_vessel:OUT","1927":"pressure:downstream_vessel:OUT","1928":"pressure:downstream_vessel:OUT","1929":"pressure:downstream_vessel:OUT","1930":"pressure:downstream_vessel:OUT","1931":"pressure:downstream_vessel:OUT","1932":"pressure:downstream_vessel:OUT","1933":"pressure:downstream_vessel:OUT","1934":"pressure:downstream_vessel:OUT","1935":"pressure:downstream_vessel:OUT","1936":"pressure:downstream_vessel:OUT","1937":"pressure:downstream_vessel:OUT","1938":"pressure:downstream_vessel:OUT","1939":"pressure:downstream_vessel:OUT","1940":"pressure:downstream_vessel:OUT","1941":"pressure:downstream_vessel:OUT","1942":"pressure:downstream_vessel:OUT","1943":"pressure:downstream_vessel:OUT","1944":"pressure:downstream_vessel:OUT","1945":"pressure:downstream_vessel:OUT","1946":"pressure:downstream_vessel:OUT","1947":"pressure:downstream_vessel:OUT","1948":"pressure:downstream_vessel:OUT","1949":"pressure:downstream_vessel:OUT","1950":"pressure:downstream_vessel:OUT","1951":"pressure:downstream_vessel:OUT","1952":"pressure:downstream_vessel:OUT","1953":"pressure:downstream_vessel:OUT","1954":"pressure:downstream_vessel:OUT","1955":"pressure:downstream_vessel:OUT","1956":"pressure:downstream_vessel:OUT","1957":"pressure:downstream_vessel:OUT","1958":"pressure:downstream_vessel:OUT","1959":"pressure:downstream_vessel:OUT","1960":"pressure:downstream_vessel:OUT","1961":"pressure:downstream_vessel:OUT","1962":"pressure:downstream_vessel:OUT","1963":"pressure:downstream_vessel:OUT","1964":"pressure:downstream_vessel:OUT","1965":"pressure:downstream_vessel:OUT","1966":"pressure:downstream_vessel:OUT","1967":"pressure:downstream_vessel:OUT","1968":"pressure:downstream_vessel:OUT","1969":"pressure:downstream_vessel:OUT","1970":"pressure:downstream_vessel:OUT","1971":"pressure:downstream_vessel:OUT","1972":"pressure:downstream_vessel:OUT","1973":"pressure:downstream_vessel:OUT","1974":"pressure:downstream_vessel:OUT","1975":"pressure:downstream_vessel:OUT","1976":"pressure:downstream_vessel:OUT","1977":"pressure:downstream_vessel:OUT","1978":"pressure:downstream_vessel:OUT","1979":"pressure:downstream_vessel:OUT","1980":"pressure:downstream_vessel:OUT","1981":"pressure:downstream_vessel:OUT","1982":"pressure:downstream_vessel:OUT","1983":"pressure:downstream_vessel:OUT","1984":"pressure:downstream_vessel:OUT","1985":"pressure:downstream_vessel:OUT","1986":"pressure:downstream_vessel:OUT","1987":"pressure:downstream_vessel:OUT","1988":"pressure:downstream_vessel:OUT","1989":"pressure:downstream_vessel:OUT","1990":"pressure:downstream_vessel:OUT","1991":"pressure:downstream_vessel:OUT","1992":"pressure:downstream_vessel:OUT","1993":"pressure:downstream_vessel:OUT","1994":"pressure:downstream_vessel:OUT","1995":"pressure:downstream_vessel:OUT","1996":"pressure:downstream_vessel:OUT","1997":"pressure:downstream_vessel:OUT","1998":"pressure:downstream_vessel:OUT","1999":"pressure:downstream_vessel:OUT","2000":"flow:upstream_vessel:inlet_valve","2001":"flow:upstream_vessel:inlet_valve","2002":"flow:upstream_vessel:inlet_valve","2003":"flow:upstream_vessel:inlet_valve","2004":"flow:upstream_vessel:inlet_valve","2005":"flow:upstream_vessel:inlet_valve","2006":"flow:upstream_vessel:inlet_valve","2007":"flow:upstream_vessel:inlet_valve","2008":"flow:upstream_vessel:inlet_valve","2009":"flow:upstream_vessel:inlet_valve","2010":"flow:upstream_vessel:inlet_valve","2011":"flow:upstream_vessel:inlet_valve","2012":"flow:upstream_vessel:inlet_valve","2013":"flow:upstream_vessel:inlet_valve","2014":"flow:upstream_vessel:inlet_valve","2015":"flow:upstream_vessel:inlet_valve","2016":"flow:upstream_vessel:inlet_valve","2017":"flow:upstream_vessel:inlet_valve","2018":"flow:upstream_vessel:inlet_valve","2019":"flow:upstream_vessel:inlet_valve","2020":"flow:upstream_vessel:inlet_valve","2021":"flow:upstream_vessel:inlet_valve","2022":"flow:upstream_vessel:inlet_valve","2023":"flow:upstream_vessel:inlet_valve","2024":"flow:upstream_vessel:inlet_valve","2025":"flow:upstream_vessel:inlet_valve","2026":"flow:upstream_vessel:inlet_valve","2027":"flow:upstream_vessel:inlet_valve","2028":"flow:upstream_vessel:inlet_valve","2029":"flow:upstream_vessel:inlet_valve","2030":"flow:upstream_vessel:inlet_valve","2031":"flow:upstream_vessel:inlet_valve","2032":"flow:upstream_vessel:inlet_valve","2033":"flow:upstream_vessel:inlet_valve","2034":"flow:upstream_vessel:inlet_valve","2035":"flow:upstream_vessel:inlet_valve","2036":"flow:upstream_vessel:inlet_valve","2037":"flow:upstream_vessel:inlet_valve","2038":"flow:upstream_vessel:inlet_valve","2039":"flow:upstream_vessel:inlet_valve","2040":"flow:upstream_vessel:inlet_valve","2041":"flow:upstream_vessel:inlet_valve","2042":"flow:upstream_vessel:inlet_valve","2043":"flow:upstream_vessel:inlet_valve","2044":"flow:upstream_vessel:inlet_valve","2045":"flow:upstream_vessel:inlet_valve","2046":"flow:upstream_vessel:inlet_valve","2047":"flow:upstream_vessel:inlet_valve","2048":"flow:upstream_vessel:inlet_valve","2049":"flow:upstream_vessel:inlet_valve","2050":"flow:upstream_vessel:inlet_valve","2051":"flow:upstream_vessel:inlet_valve","2052":"flow:upstream_vessel:inlet_valve","2053":"flow:upstream_vessel:inlet_valve","2054":"flow:upstream_vessel:inlet_valve","2055":"flow:upstream_vessel:inlet_valve","2056":"flow:upstream_vessel:inlet_valve","2057":"flow:upstream_vessel:inlet_valve","2058":"flow:upstream_vessel:inlet_valve","2059":"flow:upstream_vessel:inlet_valve","2060":"flow:upstream_vessel:inlet_valve","2061":"flow:upstream_vessel:inlet_valve","2062":"flow:upstream_vessel:inlet_valve","2063":"flow:upstream_vessel:inlet_valve","2064":"flow:upstream_vessel:inlet_valve","2065":"flow:upstream_vessel:inlet_valve","2066":"flow:upstream_vessel:inlet_valve","2067":"flow:upstream_vessel:inlet_valve","2068":"flow:upstream_vessel:inlet_valve","2069":"flow:upstream_vessel:inlet_valve","2070":"flow:upstream_vessel:inlet_valve","2071":"flow:upstream_vessel:inlet_valve","2072":"flow:upstream_vessel:inlet_valve","2073":"flow:upstream_vessel:inlet_valve","2074":"flow:upstream_vessel:inlet_valve","2075":"flow:upstream_vessel:inlet_valve","2076":"flow:upstream_vessel:inlet_valve","2077":"flow:upstream_vessel:inlet_valve","2078":"flow:upstream_vessel:inlet_valve","2079":"flow:upstream_vessel:inlet_valve","2080":"flow:upstream_vessel:inlet_valve","2081":"flow:upstream_vessel:inlet_valve","2082":"flow:upstream_vessel:inlet_valve","2083":"flow:upstream_vessel:inlet_valve","2084":"flow:upstream_vessel:inlet_valve","2085":"flow:upstream_vessel:inlet_valve","2086":"flow:upstream_vessel:inlet_valve","2087":"flow:upstream_vessel:inlet_valve","2088":"flow:upstream_vessel:inlet_valve","2089":"flow:upstream_vessel:inlet_valve","2090":"flow:upstream_vessel:inlet_valve","2091":"flow:upstream_vessel:inlet_valve","2092":"flow:upstream_vessel:inlet_valve","2093":"flow:upstream_vessel:inlet_valve","2094":"flow:upstream_vessel:inlet_valve","2095":"flow:upstream_vessel:inlet_valve","2096":"flow:upstream_vessel:inlet_valve","2097":"flow:upstream_vessel:inlet_valve","2098":"flow:upstream_vessel:inlet_valve","2099":"flow:upstream_vessel:inlet_valve","2100":"flow:upstream_vessel:inlet_valve","2101":"flow:upstream_vessel:inlet_valve","2102":"flow:upstream_vessel:inlet_valve","2103":"flow:upstream_vessel:inlet_valve","2104":"flow:upstream_vessel:inlet_valve","2105":"flow:upstream_vessel:inlet_valve","2106":"flow:upstream_vessel:inlet_valve","2107":"flow:upstream_vessel:inlet_valve","2108":"flow:upstream_vessel:inlet_valve","2109":"flow:upstream_vessel:inlet_valve","2110":"flow:upstream_vessel:inlet_valve","2111":"flow:upstream_vessel:inlet_valve","2112":"flow:upstream_vessel:inlet_valve","2113":"flow:upstream_vessel:inlet_valve","2114":"flow:upstream_vessel:inlet_valve","2115":"flow:upstream_vessel:inlet_valve","2116":"flow:upstream_vessel:inlet_valve","2117":"flow:upstream_vessel:inlet_valve","2118":"flow:upstream_vessel:inlet_valve","2119":"flow:upstream_vessel:inlet_valve","2120":"flow:upstream_vessel:inlet_valve","2121":"flow:upstream_vessel:inlet_valve","2122":"flow:upstream_vessel:inlet_valve","2123":"flow:upstream_vessel:inlet_valve","2124":"flow:upstream_vessel:inlet_valve","2125":"flow:upstream_vessel:inlet_valve","2126":"flow:upstream_vessel:inlet_valve","2127":"flow:upstream_vessel:inlet_valve","2128":"flow:upstream_vessel:inlet_valve","2129":"flow:upstream_vessel:inlet_valve","2130":"flow:upstream_vessel:inlet_valve","2131":"flow:upstream_vessel:inlet_valve","2132":"flow:upstream_vessel:inlet_valve","2133":"flow:upstream_vessel:inlet_valve","2134":"flow:upstream_vessel:inlet_valve","2135":"flow:upstream_vessel:inlet_valve","2136":"flow:upstream_vessel:inlet_valve","2137":"flow:upstream_vessel:inlet_valve","2138":"flow:upstream_vessel:inlet_valve","2139":"flow:upstream_vessel:inlet_valve","2140":"flow:upstream_vessel:inlet_valve","2141":"flow:upstream_vessel:inlet_valve","2142":"flow:upstream_vessel:inlet_valve","2143":"flow:upstream_vessel:inlet_valve","2144":"flow:upstream_vessel:inlet_valve","2145":"flow:upstream_vessel:inlet_valve","2146":"flow:upstream_vessel:inlet_valve","2147":"flow:upstream_vessel:inlet_valve","2148":"flow:upstream_vessel:inlet_valve","2149":"flow:upstream_vessel:inlet_valve","2150":"flow:upstream_vessel:inlet_valve","2151":"flow:upstream_vessel:inlet_valve","2152":"flow:upstream_vessel:inlet_valve","2153":"flow:upstream_vessel:inlet_valve","2154":"flow:upstream_vessel:inlet_valve","2155":"flow:upstream_vessel:inlet_valve","2156":"flow:upstream_vessel:inlet_valve","2157":"flow:upstream_vessel:inlet_valve","2158":"flow:upstream_vessel:inlet_valve","2159":"flow:upstream_vessel:inlet_valve","2160":"flow:upstream_vessel:inlet_valve","2161":"flow:upstream_vessel:inlet_valve","2162":"flow:upstream_vessel:inlet_valve","2163":"flow:upstream_vessel:inlet_valve","2164":"flow:upstream_vessel:inlet_valve","2165":"flow:upstream_vessel:inlet_valve","2166":"flow:upstream_vessel:inlet_valve","2167":"flow:upstream_vessel:inlet_valve","2168":"flow:upstream_vessel:inlet_valve","2169":"flow:upstream_vessel:inlet_valve","2170":"flow:upstream_vessel:inlet_valve","2171":"flow:upstream_vessel:inlet_valve","2172":"flow:upstream_vessel:inlet_valve","2173":"flow:upstream_vessel:inlet_valve","2174":"flow:upstream_vessel:inlet_valve","2175":"flow:upstream_vessel:inlet_valve","2176":"flow:upstream_vessel:inlet_valve","2177":"flow:upstream_vessel:inlet_valve","2178":"flow:upstream_vessel:inlet_valve","2179":"flow:upstream_vessel:inlet_valve","2180":"flow:upstream_vessel:inlet_valve","2181":"flow:upstream_vessel:inlet_valve","2182":"flow:upstream_vessel:inlet_valve","2183":"flow:upstream_vessel:inlet_valve","2184":"flow:upstream_vessel:inlet_valve","2185":"flow:upstream_vessel:inlet_valve","2186":"flow:upstream_vessel:inlet_valve","2187":"flow:upstream_vessel:inlet_valve","2188":"flow:upstream_vessel:inlet_valve","2189":"flow:upstream_vessel:inlet_valve","2190":"flow:upstream_vessel:inlet_valve","2191":"flow:upstream_vessel:inlet_valve","2192":"flow:upstream_vessel:inlet_valve","2193":"flow:upstream_vessel:inlet_valve","2194":"flow:upstream_vessel:inlet_valve","2195":"flow:upstream_vessel:inlet_valve","2196":"flow:upstream_vessel:inlet_valve","2197":"flow:upstream_vessel:inlet_valve","2198":"flow:upstream_vessel:inlet_valve","2199":"flow:upstream_vessel:inlet_valve","2200":"flow:upstream_vessel:inlet_valve","2201":"flow:upstream_vessel:inlet_valve","2202":"flow:upstream_vessel:inlet_valve","2203":"flow:upstream_vessel:inlet_valve","2204":"flow:upstream_vessel:inlet_valve","2205":"flow:upstream_vessel:inlet_valve","2206":"flow:upstream_vessel:inlet_valve","2207":"flow:upstream_vessel:inlet_valve","2208":"flow:upstream_vessel:inlet_valve","2209":"flow:upstream_vessel:inlet_valve","2210":"flow:upstream_vessel:inlet_valve","2211":"flow:upstream_vessel:inlet_valve","2212":"flow:upstream_vessel:inlet_valve","2213":"flow:upstream_vessel:inlet_valve","2214":"flow:upstream_vessel:inlet_valve","2215":"flow:upstream_vessel:inlet_valve","2216":"flow:upstream_vessel:inlet_valve","2217":"flow:upstream_vessel:inlet_valve","2218":"flow:upstream_vessel:inlet_valve","2219":"flow:upstream_vessel:inlet_valve","2220":"flow:upstream_vessel:inlet_valve","2221":"flow:upstream_vessel:inlet_valve","2222":"flow:upstream_vessel:inlet_valve","2223":"flow:upstream_vessel:inlet_valve","2224":"flow:upstream_vessel:inlet_valve","2225":"flow:upstream_vessel:inlet_valve","2226":"flow:upstream_vessel:inlet_valve","2227":"flow:upstream_vessel:inlet_valve","2228":"flow:upstream_vessel:inlet_valve","2229":"flow:upstream_vessel:inlet_valve","2230":"flow:upstream_vessel:inlet_valve","2231":"flow:upstream_vessel:inlet_valve","2232":"flow:upstream_vessel:inlet_valve","2233":"flow:upstream_vessel:inlet_valve","2234":"flow:upstream_vessel:inlet_valve","2235":"flow:upstream_vessel:inlet_valve","2236":"flow:upstream_vessel:inlet_valve","2237":"flow:upstream_vessel:inlet_valve","2238":"flow:upstream_vessel:inlet_valve","2239":"flow:upstream_vessel:inlet_valve","2240":"flow:upstream_vessel:inlet_valve","2241":"flow:upstream_vessel:inlet_valve","2242":"flow:upstream_vessel:inlet_valve","2243":"flow:upstream_vessel:inlet_valve","2244":"flow:upstream_vessel:inlet_valve","2245":"flow:upstream_vessel:inlet_valve","2246":"flow:upstream_vessel:inlet_valve","2247":"flow:upstream_vessel:inlet_valve","2248":"flow:upstream_vessel:inlet_valve","2249":"flow:upstream_vessel:inlet_valve","2250":"flow:upstream_vessel:inlet_valve","2251":"flow:upstream_vessel:inlet_valve","2252":"flow:upstream_vessel:inlet_valve","2253":"flow:upstream_vessel:inlet_valve","2254":"flow:upstream_vessel:inlet_valve","2255":"flow:upstream_vessel:inlet_valve","2256":"flow:upstream_vessel:inlet_valve","2257":"flow:upstream_vessel:inlet_valve","2258":"flow:upstream_vessel:inlet_valve","2259":"flow:upstream_vessel:inlet_valve","2260":"flow:upstream_vessel:inlet_valve","2261":"flow:upstream_vessel:inlet_valve","2262":"flow:upstream_vessel:inlet_valve","2263":"flow:upstream_vessel:inlet_valve","2264":"flow:upstream_vessel:inlet_valve","2265":"flow:upstream_vessel:inlet_valve","2266":"flow:upstream_vessel:inlet_valve","2267":"flow:upstream_vessel:inlet_valve","2268":"flow:upstream_vessel:inlet_valve","2269":"flow:upstream_vessel:inlet_valve","2270":"flow:upstream_vessel:inlet_valve","2271":"flow:upstream_vessel:inlet_valve","2272":"flow:upstream_vessel:inlet_valve","2273":"flow:upstream_vessel:inlet_valve","2274":"flow:upstream_vessel:inlet_valve","2275":"flow:upstream_vessel:inlet_valve","2276":"flow:upstream_vessel:inlet_valve","2277":"flow:upstream_vessel:inlet_valve","2278":"flow:upstream_vessel:inlet_valve","2279":"flow:upstream_vessel:inlet_valve","2280":"flow:upstream_vessel:inlet_valve","2281":"flow:upstream_vessel:inlet_valve","2282":"flow:upstream_vessel:inlet_valve","2283":"flow:upstream_vessel:inlet_valve","2284":"flow:upstream_vessel:inlet_valve","2285":"flow:upstream_vessel:inlet_valve","2286":"flow:upstream_vessel:inlet_valve","2287":"flow:upstream_vessel:inlet_valve","2288":"flow:upstream_vessel:inlet_valve","2289":"flow:upstream_vessel:inlet_valve","2290":"flow:upstream_vessel:inlet_valve","2291":"flow:upstream_vessel:inlet_valve","2292":"flow:upstream_vessel:inlet_valve","2293":"flow:upstream_vessel:inlet_valve","2294":"flow:upstream_vessel:inlet_valve","2295":"flow:upstream_vessel:inlet_valve","2296":"flow:upstream_vessel:inlet_valve","2297":"flow:upstream_vessel:inlet_valve","2298":"flow:upstream_vessel:inlet_valve","2299":"flow:upstream_vessel:inlet_valve","2300":"flow:upstream_vessel:inlet_valve","2301":"flow:upstream_vessel:inlet_valve","2302":"flow:upstream_vessel:inlet_valve","2303":"flow:upstream_vessel:inlet_valve","2304":"flow:upstream_vessel:inlet_valve","2305":"flow:upstream_vessel:inlet_valve","2306":"flow:upstream_vessel:inlet_valve","2307":"flow:upstream_vessel:inlet_valve","2308":"flow:upstream_vessel:inlet_valve","2309":"flow:upstream_vessel:inlet_valve","2310":"flow:upstream_vessel:inlet_valve","2311":"flow:upstream_vessel:inlet_valve","2312":"flow:upstream_vessel:inlet_valve","2313":"flow:upstream_vessel:inlet_valve","2314":"flow:upstream_vessel:inlet_valve","2315":"flow:upstream_vessel:inlet_valve","2316":"flow:upstream_vessel:inlet_valve","2317":"flow:upstream_vessel:inlet_valve","2318":"flow:upstream_vessel:inlet_valve","2319":"flow:upstream_vessel:inlet_valve","2320":"flow:upstream_vessel:inlet_valve","2321":"flow:upstream_vessel:inlet_valve","2322":"flow:upstream_vessel:inlet_valve","2323":"flow:upstream_vessel:inlet_valve","2324":"flow:upstream_vessel:inlet_valve","2325":"flow:upstream_vessel:inlet_valve","2326":"flow:upstream_vessel:inlet_valve","2327":"flow:upstream_vessel:inlet_valve","2328":"flow:upstream_vessel:inlet_valve","2329":"flow:upstream_vessel:inlet_valve","2330":"flow:upstream_vessel:inlet_valve","2331":"flow:upstream_vessel:inlet_valve","2332":"flow:upstream_vessel:inlet_valve","2333":"flow:upstream_vessel:inlet_valve","2334":"flow:upstream_vessel:inlet_valve","2335":"flow:upstream_vessel:inlet_valve","2336":"flow:upstream_vessel:inlet_valve","2337":"flow:upstream_vessel:inlet_valve","2338":"flow:upstream_vessel:inlet_valve","2339":"flow:upstream_vessel:inlet_valve","2340":"flow:upstream_vessel:inlet_valve","2341":"flow:upstream_vessel:inlet_valve","2342":"flow:upstream_vessel:inlet_valve","2343":"flow:upstream_vessel:inlet_valve","2344":"flow:upstream_vessel:inlet_valve","2345":"flow:upstream_vessel:inlet_valve","2346":"flow:upstream_vessel:inlet_valve","2347":"flow:upstream_vessel:inlet_valve","2348":"flow:upstream_vessel:inlet_valve","2349":"flow:upstream_vessel:inlet_valve","2350":"flow:upstream_vessel:inlet_valve","2351":"flow:upstream_vessel:inlet_valve","2352":"flow:upstream_vessel:inlet_valve","2353":"flow:upstream_vessel:inlet_valve","2354":"flow:upstream_vessel:inlet_valve","2355":"flow:upstream_vessel:inlet_valve","2356":"flow:upstream_vessel:inlet_valve","2357":"flow:upstream_vessel:inlet_valve","2358":"flow:upstream_vessel:inlet_valve","2359":"flow:upstream_vessel:inlet_valve","2360":"flow:upstream_vessel:inlet_valve","2361":"flow:upstream_vessel:inlet_valve","2362":"flow:upstream_vessel:inlet_valve","2363":"flow:upstream_vessel:inlet_valve","2364":"flow:upstream_vessel:inlet_valve","2365":"flow:upstream_vessel:inlet_valve","2366":"flow:upstream_vessel:inlet_valve","2367":"flow:upstream_vessel:inlet_valve","2368":"flow:upstream_vessel:inlet_valve","2369":"flow:upstream_vessel:inlet_valve","2370":"flow:upstream_vessel:inlet_valve","2371":"flow:upstream_vessel:inlet_valve","2372":"flow:upstream_vessel:inlet_valve","2373":"flow:upstream_vessel:inlet_valve","2374":"flow:upstream_vessel:inlet_valve","2375":"flow:upstream_vessel:inlet_valve","2376":"flow:upstream_vessel:inlet_valve","2377":"flow:upstream_vessel:inlet_valve","2378":"flow:upstream_vessel:inlet_valve","2379":"flow:upstream_vessel:inlet_valve","2380":"flow:upstream_vessel:inlet_valve","2381":"flow:upstream_vessel:inlet_valve","2382":"flow:upstream_vessel:inlet_valve","2383":"flow:upstream_vessel:inlet_valve","2384":"flow:upstream_vessel:inlet_valve","2385":"flow:upstream_vessel:inlet_valve","2386":"flow:upstream_vessel:inlet_valve","2387":"flow:upstream_vessel:inlet_valve","2388":"flow:upstream_vessel:inlet_valve","2389":"flow:upstream_vessel:inlet_valve","2390":"flow:upstream_vessel:inlet_valve","2391":"flow:upstream_vessel:inlet_valve","2392":"flow:upstream_vessel:inlet_valve","2393":"flow:upstream_vessel:inlet_valve","2394":"flow:upstream_vessel:inlet_valve","2395":"flow:upstream_vessel:inlet_valve","2396":"flow:upstream_vessel:inlet_valve","2397":"flow:upstream_vessel:inlet_valve","2398":"flow:upstream_vessel:inlet_valve","2399":"flow:upstream_vessel:inlet_valve","2400":"flow:upstream_vessel:inlet_valve","2401":"flow:upstream_vessel:inlet_valve","2402":"flow:upstream_vessel:inlet_valve","2403":"flow:upstream_vessel:inlet_valve","2404":"flow:upstream_vessel:inlet_valve","2405":"flow:upstream_vessel:inlet_valve","2406":"flow:upstream_vessel:inlet_valve","2407":"flow:upstream_vessel:inlet_valve","2408":"flow:upstream_vessel:inlet_valve","2409":"flow:upstream_vessel:inlet_valve","2410":"flow:upstream_vessel:inlet_valve","2411":"flow:upstream_vessel:inlet_valve","2412":"flow:upstream_vessel:inlet_valve","2413":"flow:upstream_vessel:inlet_valve","2414":"flow:upstream_vessel:inlet_valve","2415":"flow:upstream_vessel:inlet_valve","2416":"flow:upstream_vessel:inlet_valve","2417":"flow:upstream_vessel:inlet_valve","2418":"flow:upstream_vessel:inlet_valve","2419":"flow:upstream_vessel:inlet_valve","2420":"flow:upstream_vessel:inlet_valve","2421":"flow:upstream_vessel:inlet_valve","2422":"flow:upstream_vessel:inlet_valve","2423":"flow:upstream_vessel:inlet_valve","2424":"flow:upstream_vessel:inlet_valve","2425":"flow:upstream_vessel:inlet_valve","2426":"flow:upstream_vessel:inlet_valve","2427":"flow:upstream_vessel:inlet_valve","2428":"flow:upstream_vessel:inlet_valve","2429":"flow:upstream_vessel:inlet_valve","2430":"flow:upstream_vessel:inlet_valve","2431":"flow:upstream_vessel:inlet_valve","2432":"flow:upstream_vessel:inlet_valve","2433":"flow:upstream_vessel:inlet_valve","2434":"flow:upstream_vessel:inlet_valve","2435":"flow:upstream_vessel:inlet_valve","2436":"flow:upstream_vessel:inlet_valve","2437":"flow:upstream_vessel:inlet_valve","2438":"flow:upstream_vessel:inlet_valve","2439":"flow:upstream_vessel:inlet_valve","2440":"flow:upstream_vessel:inlet_valve","2441":"flow:upstream_vessel:inlet_valve","2442":"flow:upstream_vessel:inlet_valve","2443":"flow:upstream_vessel:inlet_valve","2444":"flow:upstream_vessel:inlet_valve","2445":"flow:upstream_vessel:inlet_valve","2446":"flow:upstream_vessel:inlet_valve","2447":"flow:upstream_vessel:inlet_valve","2448":"flow:upstream_vessel:inlet_valve","2449":"flow:upstream_vessel:inlet_valve","2450":"flow:upstream_vessel:inlet_valve","2451":"flow:upstream_vessel:inlet_valve","2452":"flow:upstream_vessel:inlet_valve","2453":"flow:upstream_vessel:inlet_valve","2454":"flow:upstream_vessel:inlet_valve","2455":"flow:upstream_vessel:inlet_valve","2456":"flow:upstream_vessel:inlet_valve","2457":"flow:upstream_vessel:inlet_valve","2458":"flow:upstream_vessel:inlet_valve","2459":"flow:upstream_vessel:inlet_valve","2460":"flow:upstream_vessel:inlet_valve","2461":"flow:upstream_vessel:inlet_valve","2462":"flow:upstream_vessel:inlet_valve","2463":"flow:upstream_vessel:inlet_valve","2464":"flow:upstream_vessel:inlet_valve","2465":"flow:upstream_vessel:inlet_valve","2466":"flow:upstream_vessel:inlet_valve","2467":"flow:upstream_vessel:inlet_valve","2468":"flow:upstream_vessel:inlet_valve","2469":"flow:upstream_vessel:inlet_valve","2470":"flow:upstream_vessel:inlet_valve","2471":"flow:upstream_vessel:inlet_valve","2472":"flow:upstream_vessel:inlet_valve","2473":"flow:upstream_vessel:inlet_valve","2474":"flow:upstream_vessel:inlet_valve","2475":"flow:upstream_vessel:inlet_valve","2476":"flow:upstream_vessel:inlet_valve","2477":"flow:upstream_vessel:inlet_valve","2478":"flow:upstream_vessel:inlet_valve","2479":"flow:upstream_vessel:inlet_valve","2480":"flow:upstream_vessel:inlet_valve","2481":"flow:upstream_vessel:inlet_valve","2482":"flow:upstream_vessel:inlet_valve","2483":"flow:upstream_vessel:inlet_valve","2484":"flow:upstream_vessel:inlet_valve","2485":"flow:upstream_vessel:inlet_valve","2486":"flow:upstream_vessel:inlet_valve","2487":"flow:upstream_vessel:inlet_valve","2488":"flow:upstream_vessel:inlet_valve","2489":"flow:upstream_vessel:inlet_valve","2490":"flow:upstream_vessel:inlet_valve","2491":"flow:upstream_vessel:inlet_valve","2492":"flow:upstream_vessel:inlet_valve","2493":"flow:upstream_vessel:inlet_valve","2494":"flow:upstream_vessel:inlet_valve","2495":"flow:upstream_vessel:inlet_valve","2496":"flow:upstream_vessel:inlet_valve","2497":"flow:upstream_vessel:inlet_valve","2498":"flow:upstream_vessel:inlet_valve","2499":"flow:upstream_vessel:inlet_valve","2500":"pressure:upstream_vessel:inlet_valve","2501":"pressure:upstream_vessel:inlet_valve","2502":"pressure:upstream_vessel:inlet_valve","2503":"pressure:upstream_vessel:inlet_valve","2504":"pressure:upstream_vessel:inlet_valve","2505":"pressure:upstream_vessel:inlet_valve","2506":"pressure:upstream_vessel:inlet_valve","2507":"pressure:upstream_vessel:inlet_valve","2508":"pressure:upstream_vessel:inlet_valve","2509":"pressure:upstream_vessel:inlet_valve","2510":"pressure:upstream_vessel:inlet_valve","2511":"pressure:upstream_vessel:inlet_valve","2512":"pressure:upstream_vessel:inlet_valve","2513":"pressure:upstream_vessel:inlet_valve","2514":"pressure:upstream_vessel:inlet_valve","2515":"pressure:upstream_vessel:inlet_valve","2516":"pressure:upstream_vessel:inlet_valve","2517":"pressure:upstream_vessel:inlet_valve","2518":"pressure:upstream_vessel:inlet_valve","2519":"pressure:upstream_vessel:inlet_valve","2520":"pressure:upstream_vessel:inlet_valve","2521":"pressure:upstream_vessel:inlet_valve","2522":"pressure:upstream_vessel:inlet_valve","2523":"pressure:upstream_vessel:inlet_valve","2524":"pressure:upstream_vessel:inlet_valve","2525":"pressure:upstream_vessel:inlet_valve","2526":"pressure:upstream_vessel:inlet_valve","2527":"pressure:upstream_vessel:inlet_valve","2528":"pressure:upstream_vessel:inlet_valve","2529":"pressure:upstream_vessel:inlet_valve","2530":"pressure:upstream_vessel:inlet_valve","2531":"pressure:upstream_vessel:inlet_valve","2532":"pressure:upstream_vessel:inlet_valve","2533":"pressure:upstream_vessel:inlet_valve","2534":"pressure:upstream_vessel:inlet_valve","2535":"pressure:upstream_vessel:inlet_valve","2536":"pressure:upstream_vessel:inlet_valve","2537":"pressure:upstream_vessel:inlet_valve","2538":"pressure:upstream_vessel:inlet_valve","2539":"pressure:upstream_vessel:inlet_valve","2540":"pressure:upstream_vessel:inlet_valve","2541":"pressure:upstream_vessel:inlet_valve","2542":"pressure:upstream_vessel:inlet_valve","2543":"pressure:upstream_vessel:inlet_valve","2544":"pressure:upstream_vessel:inlet_valve","2545":"pressure:upstream_vessel:inlet_valve","2546":"pressure:upstream_vessel:inlet_valve","2547":"pressure:upstream_vessel:inlet_valve","2548":"pressure:upstream_vessel:inlet_valve","2549":"pressure:upstream_vessel:inlet_valve","2550":"pressure:upstream_vessel:inlet_valve","2551":"pressure:upstream_vessel:inlet_valve","2552":"pressure:upstream_vessel:inlet_valve","2553":"pressure:upstream_vessel:inlet_valve","2554":"pressure:upstream_vessel:inlet_valve","2555":"pressure:upstream_vessel:inlet_valve","2556":"pressure:upstream_vessel:inlet_valve","2557":"pressure:upstream_vessel:inlet_valve","2558":"pressure:upstream_vessel:inlet_valve","2559":"pressure:upstream_vessel:inlet_valve","2560":"pressure:upstream_vessel:inlet_valve","2561":"pressure:upstream_vessel:inlet_valve","2562":"pressure:upstream_vessel:inlet_valve","2563":"pressure:upstream_vessel:inlet_valve","2564":"pressure:upstream_vessel:inlet_valve","2565":"pressure:upstream_vessel:inlet_valve","2566":"pressure:upstream_vessel:inlet_valve","2567":"pressure:upstream_vessel:inlet_valve","2568":"pressure:upstream_vessel:inlet_valve","2569":"pressure:upstream_vessel:inlet_valve","2570":"pressure:upstream_vessel:inlet_valve","2571":"pressure:upstream_vessel:inlet_valve","2572":"pressure:upstream_vessel:inlet_valve","2573":"pressure:upstream_vessel:inlet_valve","2574":"pressure:upstream_vessel:inlet_valve","2575":"pressure:upstream_vessel:inlet_valve","2576":"pressure:upstream_vessel:inlet_valve","2577":"pressure:upstream_vessel:inlet_valve","2578":"pressure:upstream_vessel:inlet_valve","2579":"pressure:upstream_vessel:inlet_valve","2580":"pressure:upstream_vessel:inlet_valve","2581":"pressure:upstream_vessel:inlet_valve","2582":"pressure:upstream_vessel:inlet_valve","2583":"pressure:upstream_vessel:inlet_valve","2584":"pressure:upstream_vessel:inlet_valve","2585":"pressure:upstream_vessel:inlet_valve","2586":"pressure:upstream_vessel:inlet_valve","2587":"pressure:upstream_vessel:inlet_valve","2588":"pressure:upstream_vessel:inlet_valve","2589":"pressure:upstream_vessel:inlet_valve","2590":"pressure:upstream_vessel:inlet_valve","2591":"pressure:upstream_vessel:inlet_valve","2592":"pressure:upstream_vessel:inlet_valve","2593":"pressure:upstream_vessel:inlet_valve","2594":"pressure:upstream_vessel:inlet_valve","2595":"pressure:upstream_vessel:inlet_valve","2596":"pressure:upstream_vessel:inlet_valve","2597":"pressure:upstream_vessel:inlet_valve","2598":"pressure:upstream_vessel:inlet_valve","2599":"pressure:upstream_vessel:inlet_valve","2600":"pressure:upstream_vessel:inlet_valve","2601":"pressure:upstream_vessel:inlet_valve","2602":"pressure:upstream_vessel:inlet_valve","2603":"pressure:upstream_vessel:inlet_valve","2604":"pressure:upstream_vessel:inlet_valve","2605":"pressure:upstream_vessel:inlet_valve","2606":"pressure:upstream_vessel:inlet_valve","2607":"pressure:upstream_vessel:inlet_valve","2608":"pressure:upstream_vessel:inlet_valve","2609":"pressure:upstream_vessel:inlet_valve","2610":"pressure:upstream_vessel:inlet_valve","2611":"pressure:upstream_vessel:inlet_valve","2612":"pressure:upstream_vessel:inlet_valve","2613":"pressure:upstream_vessel:inlet_valve","2614":"pressure:upstream_vessel:inlet_valve","2615":"pressure:upstream_vessel:inlet_valve","2616":"pressure:upstream_vessel:inlet_valve","2617":"pressure:upstream_vessel:inlet_valve","2618":"pressure:upstream_vessel:inlet_valve","2619":"pressure:upstream_vessel:inlet_valve","2620":"pressure:upstream_vessel:inlet_valve","2621":"pressure:upstream_vessel:inlet_valve","2622":"pressure:upstream_vessel:inlet_valve","2623":"pressure:upstream_vessel:inlet_valve","2624":"pressure:upstream_vessel:inlet_valve","2625":"pressure:upstream_vessel:inlet_valve","2626":"pressure:upstream_vessel:inlet_valve","2627":"pressure:upstream_vessel:inlet_valve","2628":"pressure:upstream_vessel:inlet_valve","2629":"pressure:upstream_vessel:inlet_valve","2630":"pressure:upstream_vessel:inlet_valve","2631":"pressure:upstream_vessel:inlet_valve","2632":"pressure:upstream_vessel:inlet_valve","2633":"pressure:upstream_vessel:inlet_valve","2634":"pressure:upstream_vessel:inlet_valve","2635":"pressure:upstream_vessel:inlet_valve","2636":"pressure:upstream_vessel:inlet_valve","2637":"pressure:upstream_vessel:inlet_valve","2638":"pressure:upstream_vessel:inlet_valve","2639":"pressure:upstream_vessel:inlet_valve","2640":"pressure:upstream_vessel:inlet_valve","2641":"pressure:upstream_vessel:inlet_valve","2642":"pressure:upstream_vessel:inlet_valve","2643":"pressure:upstream_vessel:inlet_valve","2644":"pressure:upstream_vessel:inlet_valve","2645":"pressure:upstream_vessel:inlet_valve","2646":"pressure:upstream_vessel:inlet_valve","2647":"pressure:upstream_vessel:inlet_valve","2648":"pressure:upstream_vessel:inlet_valve","2649":"pressure:upstream_vessel:inlet_valve","2650":"pressure:upstream_vessel:inlet_valve","2651":"pressure:upstream_vessel:inlet_valve","2652":"pressure:upstream_vessel:inlet_valve","2653":"pressure:upstream_vessel:inlet_valve","2654":"pressure:upstream_vessel:inlet_valve","2655":"pressure:upstream_vessel:inlet_valve","2656":"pressure:upstream_vessel:inlet_valve","2657":"pressure:upstream_vessel:inlet_valve","2658":"pressure:upstream_vessel:inlet_valve","2659":"pressure:upstream_vessel:inlet_valve","2660":"pressure:upstream_vessel:inlet_valve","2661":"pressure:upstream_vessel:inlet_valve","2662":"pressure:upstream_vessel:inlet_valve","2663":"pressure:upstream_vessel:inlet_valve","2664":"pressure:upstream_vessel:inlet_valve","2665":"pressure:upstream_vessel:inlet_valve","2666":"pressure:upstream_vessel:inlet_valve","2667":"pressure:upstream_vessel:inlet_valve","2668":"pressure:upstream_vessel:inlet_valve","2669":"pressure:upstream_vessel:inlet_valve","2670":"pressure:upstream_vessel:inlet_valve","2671":"pressure:upstream_vessel:inlet_valve","2672":"pressure:upstream_vessel:inlet_valve","2673":"pressure:upstream_vessel:inlet_valve","2674":"pressure:upstream_vessel:inlet_valve","2675":"pressure:upstream_vessel:inlet_valve","2676":"pressure:upstream_vessel:inlet_valve","2677":"pressure:upstream_vessel:inlet_valve","2678":"pressure:upstream_vessel:inlet_valve","2679":"pressure:upstream_vessel:inlet_valve","2680":"pressure:upstream_vessel:inlet_valve","2681":"pressure:upstream_vessel:inlet_valve","2682":"pressure:upstream_vessel:inlet_valve","2683":"pressure:upstream_vessel:inlet_valve","2684":"pressure:upstream_vessel:inlet_valve","2685":"pressure:upstream_vessel:inlet_valve","2686":"pressure:upstream_vessel:inlet_valve","2687":"pressure:upstream_vessel:inlet_valve","2688":"pressure:upstream_vessel:inlet_valve","2689":"pressure:upstream_vessel:inlet_valve","2690":"pressure:upstream_vessel:inlet_valve","2691":"pressure:upstream_vessel:inlet_valve","2692":"pressure:upstream_vessel:inlet_valve","2693":"pressure:upstream_vessel:inlet_valve","2694":"pressure:upstream_vessel:inlet_valve","2695":"pressure:upstream_vessel:inlet_valve","2696":"pressure:upstream_vessel:inlet_valve","2697":"pressure:upstream_vessel:inlet_valve","2698":"pressure:upstream_vessel:inlet_valve","2699":"pressure:upstream_vessel:inlet_valve","2700":"pressure:upstream_vessel:inlet_valve","2701":"pressure:upstream_vessel:inlet_valve","2702":"pressure:upstream_vessel:inlet_valve","2703":"pressure:upstream_vessel:inlet_valve","2704":"pressure:upstream_vessel:inlet_valve","2705":"pressure:upstream_vessel:inlet_valve","2706":"pressure:upstream_vessel:inlet_valve","2707":"pressure:upstream_vessel:inlet_valve","2708":"pressure:upstream_vessel:inlet_valve","2709":"pressure:upstream_vessel:inlet_valve","2710":"pressure:upstream_vessel:inlet_valve","2711":"pressure:upstream_vessel:inlet_valve","2712":"pressure:upstream_vessel:inlet_valve","2713":"pressure:upstream_vessel:inlet_valve","2714":"pressure:upstream_vessel:inlet_valve","2715":"pressure:upstream_vessel:inlet_valve","2716":"pressure:upstream_vessel:inlet_valve","2717":"pressure:upstream_vessel:inlet_valve","2718":"pressure:upstream_vessel:inlet_valve","2719":"pressure:upstream_vessel:inlet_valve","2720":"pressure:upstream_vessel:inlet_valve","2721":"pressure:upstream_vessel:inlet_valve","2722":"pressure:upstream_vessel:inlet_valve","2723":"pressure:upstream_vessel:inlet_valve","2724":"pressure:upstream_vessel:inlet_valve","2725":"pressure:upstream_vessel:inlet_valve","2726":"pressure:upstream_vessel:inlet_valve","2727":"pressure:upstream_vessel:inlet_valve","2728":"pressure:upstream_vessel:inlet_valve","2729":"pressure:upstream_vessel:inlet_valve","2730":"pressure:upstream_vessel:inlet_valve","2731":"pressure:upstream_vessel:inlet_valve","2732":"pressure:upstream_vessel:inlet_valve","2733":"pressure:upstream_vessel:inlet_valve","2734":"pressure:upstream_vessel:inlet_valve","2735":"pressure:upstream_vessel:inlet_valve","2736":"pressure:upstream_vessel:inlet_valve","2737":"pressure:upstream_vessel:inlet_valve","2738":"pressure:upstream_vessel:inlet_valve","2739":"pressure:upstream_vessel:inlet_valve","2740":"pressure:upstream_vessel:inlet_valve","2741":"pressure:upstream_vessel:inlet_valve","2742":"pressure:upstream_vessel:inlet_valve","2743":"pressure:upstream_vessel:inlet_valve","2744":"pressure:upstream_vessel:inlet_valve","2745":"pressure:upstream_vessel:inlet_valve","2746":"pressure:upstream_vessel:inlet_valve","2747":"pressure:upstream_vessel:inlet_valve","2748":"pressure:upstream_vessel:inlet_valve","2749":"pressure:upstream_vessel:inlet_valve","2750":"pressure:upstream_vessel:inlet_valve","2751":"pressure:upstream_vessel:inlet_valve","2752":"pressure:upstream_vessel:inlet_valve","2753":"pressure:upstream_vessel:inlet_valve","2754":"pressure:upstream_vessel:inlet_valve","2755":"pressure:upstream_vessel:inlet_valve","2756":"pressure:upstream_vessel:inlet_valve","2757":"pressure:upstream_vessel:inlet_valve","2758":"pressure:upstream_vessel:inlet_valve","2759":"pressure:upstream_vessel:inlet_valve","2760":"pressure:upstream_vessel:inlet_valve","2761":"pressure:upstream_vessel:inlet_valve","2762":"pressure:upstream_vessel:inlet_valve","2763":"pressure:upstream_vessel:inlet_valve","2764":"pressure:upstream_vessel:inlet_valve","2765":"pressure:upstream_vessel:inlet_valve","2766":"pressure:upstream_vessel:inlet_valve","2767":"pressure:upstream_vessel:inlet_valve","2768":"pressure:upstream_vessel:inlet_valve","2769":"pressure:upstream_vessel:inlet_valve","2770":"pressure:upstream_vessel:inlet_valve","2771":"pressure:upstream_vessel:inlet_valve","2772":"pressure:upstream_vessel:inlet_valve","2773":"pressure:upstream_vessel:inlet_valve","2774":"pressure:upstream_vessel:inlet_valve","2775":"pressure:upstream_vessel:inlet_valve","2776":"pressure:upstream_vessel:inlet_valve","2777":"pressure:upstream_vessel:inlet_valve","2778":"pressure:upstream_vessel:inlet_valve","2779":"pressure:upstream_vessel:inlet_valve","2780":"pressure:upstream_vessel:inlet_valve","2781":"pressure:upstream_vessel:inlet_valve","2782":"pressure:upstream_vessel:inlet_valve","2783":"pressure:upstream_vessel:inlet_valve","2784":"pressure:upstream_vessel:inlet_valve","2785":"pressure:upstream_vessel:inlet_valve","2786":"pressure:upstream_vessel:inlet_valve","2787":"pressure:upstream_vessel:inlet_valve","2788":"pressure:upstream_vessel:inlet_valve","2789":"pressure:upstream_vessel:inlet_valve","2790":"pressure:upstream_vessel:inlet_valve","2791":"pressure:upstream_vessel:inlet_valve","2792":"pressure:upstream_vessel:inlet_valve","2793":"pressure:upstream_vessel:inlet_valve","2794":"pressure:upstream_vessel:inlet_valve","2795":"pressure:upstream_vessel:inlet_valve","2796":"pressure:upstream_vessel:inlet_valve","2797":"pressure:upstream_vessel:inlet_valve","2798":"pressure:upstream_vessel:inlet_valve","2799":"pressure:upstream_vessel:inlet_valve","2800":"pressure:upstream_vessel:inlet_valve","2801":"pressure:upstream_vessel:inlet_valve","2802":"pressure:upstream_vessel:inlet_valve","2803":"pressure:upstream_vessel:inlet_valve","2804":"pressure:upstream_vessel:inlet_valve","2805":"pressure:upstream_vessel:inlet_valve","2806":"pressure:upstream_vessel:inlet_valve","2807":"pressure:upstream_vessel:inlet_valve","2808":"pressure:upstream_vessel:inlet_valve","2809":"pressure:upstream_vessel:inlet_valve","2810":"pressure:upstream_vessel:inlet_valve","2811":"pressure:upstream_vessel:inlet_valve","2812":"pressure:upstream_vessel:inlet_valve","2813":"pressure:upstream_vessel:inlet_valve","2814":"pressure:upstream_vessel:inlet_valve","2815":"pressure:upstream_vessel:inlet_valve","2816":"pressure:upstream_vessel:inlet_valve","2817":"pressure:upstream_vessel:inlet_valve","2818":"pressure:upstream_vessel:inlet_valve","2819":"pressure:upstream_vessel:inlet_valve","2820":"pressure:upstream_vessel:inlet_valve","2821":"pressure:upstream_vessel:inlet_valve","2822":"pressure:upstream_vessel:inlet_valve","2823":"pressure:upstream_vessel:inlet_valve","2824":"pressure:upstream_vessel:inlet_valve","2825":"pressure:upstream_vessel:inlet_valve","2826":"pressure:upstream_vessel:inlet_valve","2827":"pressure:upstream_vessel:inlet_valve","2828":"pressure:upstream_vessel:inlet_valve","2829":"pressure:upstream_vessel:inlet_valve","2830":"pressure:upstream_vessel:inlet_valve","2831":"pressure:upstream_vessel:inlet_valve","2832":"pressure:upstream_vessel:inlet_valve","2833":"pressure:upstream_vessel:inlet_valve","2834":"pressure:upstream_vessel:inlet_valve","2835":"pressure:upstream_vessel:inlet_valve","2836":"pressure:upstream_vessel:inlet_valve","2837":"pressure:upstream_vessel:inlet_valve","2838":"pressure:upstream_vessel:inlet_valve","2839":"pressure:upstream_vessel:inlet_valve","2840":"pressure:upstream_vessel:inlet_valve","2841":"pressure:upstream_vessel:inlet_valve","2842":"pressure:upstream_vessel:inlet_valve","2843":"pressure:upstream_vessel:inlet_valve","2844":"pressure:upstream_vessel:inlet_valve","2845":"pressure:upstream_vessel:inlet_valve","2846":"pressure:upstream_vessel:inlet_valve","2847":"pressure:upstream_vessel:inlet_valve","2848":"pressure:upstream_vessel:inlet_valve","2849":"pressure:upstream_vessel:inlet_valve","2850":"pressure:upstream_vessel:inlet_valve","2851":"pressure:upstream_vessel:inlet_valve","2852":"pressure:upstream_vessel:inlet_valve","2853":"pressure:upstream_vessel:inlet_valve","2854":"pressure:upstream_vessel:inlet_valve","2855":"pressure:upstream_vessel:inlet_valve","2856":"pressure:upstream_vessel:inlet_valve","2857":"pressure:upstream_vessel:inlet_valve","2858":"pressure:upstream_vessel:inlet_valve","2859":"pressure:upstream_vessel:inlet_valve","2860":"pressure:upstream_vessel:inlet_valve","2861":"pressure:upstream_vessel:inlet_valve","2862":"pressure:upstream_vessel:inlet_valve","2863":"pressure:upstream_vessel:inlet_valve","2864":"pressure:upstream_vessel:inlet_valve","2865":"pressure:upstream_vessel:inlet_valve","2866":"pressure:upstream_vessel:inlet_valve","2867":"pressure:upstream_vessel:inlet_valve","2868":"pressure:upstream_vessel:inlet_valve","2869":"pressure:upstream_vessel:inlet_valve","2870":"pressure:upstream_vessel:inlet_valve","2871":"pressure:upstream_vessel:inlet_valve","2872":"pressure:upstream_vessel:inlet_valve","2873":"pressure:upstream_vessel:inlet_valve","2874":"pressure:upstream_vessel:inlet_valve","2875":"pressure:upstream_vessel:inlet_valve","2876":"pressure:upstream_vessel:inlet_valve","2877":"pressure:upstream_vessel:inlet_valve","2878":"pressure:upstream_vessel:inlet_valve","2879":"pressure:upstream_vessel:inlet_valve","2880":"pressure:upstream_vessel:inlet_valve","2881":"pressure:upstream_vessel:inlet_valve","2882":"pressure:upstream_vessel:inlet_valve","2883":"pressure:upstream_vessel:inlet_valve","2884":"pressure:upstream_vessel:inlet_valve","2885":"pressure:upstream_vessel:inlet_valve","2886":"pressure:upstream_vessel:inlet_valve","2887":"pressure:upstream_vessel:inlet_valve","2888":"pressure:upstream_vessel:inlet_valve","2889":"pressure:upstream_vessel:inlet_valve","2890":"pressure:upstream_vessel:inlet_valve","2891":"pressure:upstream_vessel:inlet_valve","2892":"pressure:upstream_vessel:inlet_valve","2893":"pressure:upstream_vessel:inlet_valve","2894":"pressure:upstream_vessel:inlet_valve","2895":"pressure:upstream_vessel:inlet_valve","2896":"pressure:upstream_vessel:inlet_valve","2897":"pressure:upstream_vessel:inlet_valve","2898":"pressure:upstream_vessel:inlet_valve","2899":"pressure:upstream_vessel:inlet_valve","2900":"pressure:upstream_vessel:inlet_valve","2901":"pressure:upstream_vessel:inlet_valve","2902":"pressure:upstream_vessel:inlet_valve","2903":"pressure:upstream_vessel:inlet_valve","2904":"pressure:upstream_vessel:inlet_valve","2905":"pressure:upstream_vessel:inlet_valve","2906":"pressure:upstream_vessel:inlet_valve","2907":"pressure:upstream_vessel:inlet_valve","2908":"pressure:upstream_vessel:inlet_valve","2909":"pressure:upstream_vessel:inlet_valve","2910":"pressure:upstream_vessel:inlet_valve","2911":"pressure:upstream_vessel:inlet_valve","2912":"pressure:upstream_vessel:inlet_valve","2913":"pressure:upstream_vessel:inlet_valve","2914":"pressure:upstream_vessel:inlet_valve","2915":"pressure:upstream_vessel:inlet_valve","2916":"pressure:upstream_vessel:inlet_valve","2917":"pressure:upstream_vessel:inlet_valve","2918":"pressure:upstream_vessel:inlet_valve","2919":"pressure:upstream_vessel:inlet_valve","2920":"pressure:upstream_vessel:inlet_valve","2921":"pressure:upstream_vessel:inlet_valve","2922":"pressure:upstream_vessel:inlet_valve","2923":"pressure:upstream_vessel:inlet_valve","2924":"pressure:upstream_vessel:inlet_valve","2925":"pressure:upstream_vessel:inlet_valve","2926":"pressure:upstream_vessel:inlet_valve","2927":"pressure:upstream_vessel:inlet_valve","2928":"pressure:upstream_vessel:inlet_valve","2929":"pressure:upstream_vessel:inlet_valve","2930":"pressure:upstream_vessel:inlet_valve","2931":"pressure:upstream_vessel:inlet_valve","2932":"pressure:upstream_vessel:inlet_valve","2933":"pressure:upstream_vessel:inlet_valve","2934":"pressure:upstream_vessel:inlet_valve","2935":"pressure:upstream_vessel:inlet_valve","2936":"pressure:upstream_vessel:inlet_valve","2937":"pressure:upstream_vessel:inlet_valve","2938":"pressure:upstream_vessel:inlet_valve","2939":"pressure:upstream_vessel:inlet_valve","2940":"pressure:upstream_vessel:inlet_valve","2941":"pressure:upstream_vessel:inlet_valve","2942":"pressure:upstream_vessel:inlet_valve","2943":"pressure:upstream_vessel:inlet_valve","2944":"pressure:upstream_vessel:inlet_valve","2945":"pressure:upstream_vessel:inlet_valve","2946":"pressure:upstream_vessel:inlet_valve","2947":"pressure:upstream_vessel:inlet_valve","2948":"pressure:upstream_vessel:inlet_valve","2949":"pressure:upstream_vessel:inlet_valve","2950":"pressure:upstream_vessel:inlet_valve","2951":"pressure:upstream_vessel:inlet_valve","2952":"pressure:upstream_vessel:inlet_valve","2953":"pressure:upstream_vessel:inlet_valve","2954":"pressure:upstream_vessel:inlet_valve","2955":"pressure:upstream_vessel:inlet_valve","2956":"pressure:upstream_vessel:inlet_valve","2957":"pressure:upstream_vessel:inlet_valve","2958":"pressure:upstream_vessel:inlet_valve","2959":"pressure:upstream_vessel:inlet_valve","2960":"pressure:upstream_vessel:inlet_valve","2961":"pressure:upstream_vessel:inlet_valve","2962":"pressure:upstream_vessel:inlet_valve","2963":"pressure:upstream_vessel:inlet_valve","2964":"pressure:upstream_vessel:inlet_valve","2965":"pressure:upstream_vessel:inlet_valve","2966":"pressure:upstream_vessel:inlet_valve","2967":"pressure:upstream_vessel:inlet_valve","2968":"pressure:upstream_vessel:inlet_valve","2969":"pressure:upstream_vessel:inlet_valve","2970":"pressure:upstream_vessel:inlet_valve","2971":"pressure:upstream_vessel:inlet_valve","2972":"pressure:upstream_vessel:inlet_valve","2973":"pressure:upstream_vessel:inlet_valve","2974":"pressure:upstream_vessel:inlet_valve","2975":"pressure:upstream_vessel:inlet_valve","2976":"pressure:upstream_vessel:inlet_valve","2977":"pressure:upstream_vessel:inlet_valve","2978":"pressure:upstream_vessel:inlet_valve","2979":"pressure:upstream_vessel:inlet_valve","2980":"pressure:upstream_vessel:inlet_valve","2981":"pressure:upstream_vessel:inlet_valve","2982":"pressure:upstream_vessel:inlet_valve","2983":"pressure:upstream_vessel:inlet_valve","2984":"pressure:upstream_vessel:inlet_valve","2985":"pressure:upstream_vessel:inlet_valve","2986":"pressure:upstream_vessel:inlet_valve","2987":"pressure:upstream_vessel:inlet_valve","2988":"pressure:upstream_vessel:inlet_valve","2989":"pressure:upstream_vessel:inlet_valve","2990":"pressure:upstream_vessel:inlet_valve","2991":"pressure:upstream_vessel:inlet_valve","2992":"pressure:upstream_vessel:inlet_valve","2993":"pressure:upstream_vessel:inlet_valve","2994":"pressure:upstream_vessel:inlet_valve","2995":"pressure:upstream_vessel:inlet_valve","2996":"pressure:upstream_vessel:inlet_valve","2997":"pressure:upstream_vessel:inlet_valve","2998":"pressure:upstream_vessel:inlet_valve","2999":"pressure:upstream_vessel:inlet_valve","3000":"flow:inlet_valve:ventricle","3001":"flow:inlet_valve:ventricle","3002":"flow:inlet_valve:ventricle","3003":"flow:inlet_valve:ventricle","3004":"flow:inlet_valve:ventricle","3005":"flow:inlet_valve:ventricle","3006":"flow:inlet_valve:ventricle","3007":"flow:inlet_valve:ventricle","3008":"flow:inlet_valve:ventricle","3009":"flow:inlet_valve:ventricle","3010":"flow:inlet_valve:ventricle","3011":"flow:inlet_valve:ventricle","3012":"flow:inlet_valve:ventricle","3013":"flow:inlet_valve:ventricle","3014":"flow:inlet_valve:ventricle","3015":"flow:inlet_valve:ventricle","3016":"flow:inlet_valve:ventricle","3017":"flow:inlet_valve:ventricle","3018":"flow:inlet_valve:ventricle","3019":"flow:inlet_valve:ventricle","3020":"flow:inlet_valve:ventricle","3021":"flow:inlet_valve:ventricle","3022":"flow:inlet_valve:ventricle","3023":"flow:inlet_valve:ventricle","3024":"flow:inlet_valve:ventricle","3025":"flow:inlet_valve:ventricle","3026":"flow:inlet_valve:ventricle","3027":"flow:inlet_valve:ventricle","3028":"flow:inlet_valve:ventricle","3029":"flow:inlet_valve:ventricle","3030":"flow:inlet_valve:ventricle","3031":"flow:inlet_valve:ventricle","3032":"flow:inlet_valve:ventricle","3033":"flow:inlet_valve:ventricle","3034":"flow:inlet_valve:ventricle","3035":"flow:inlet_valve:ventricle","3036":"flow:inlet_valve:ventricle","3037":"flow:inlet_valve:ventricle","3038":"flow:inlet_valve:ventricle","3039":"flow:inlet_valve:ventricle","3040":"flow:inlet_valve:ventricle","3041":"flow:inlet_valve:ventricle","3042":"flow:inlet_valve:ventricle","3043":"flow:inlet_valve:ventricle","3044":"flow:inlet_valve:ventricle","3045":"flow:inlet_valve:ventricle","3046":"flow:inlet_valve:ventricle","3047":"flow:inlet_valve:ventricle","3048":"flow:inlet_valve:ventricle","3049":"flow:inlet_valve:ventricle","3050":"flow:inlet_valve:ventricle","3051":"flow:inlet_valve:ventricle","3052":"flow:inlet_valve:ventricle","3053":"flow:inlet_valve:ventricle","3054":"flow:inlet_valve:ventricle","3055":"flow:inlet_valve:ventricle","3056":"flow:inlet_valve:ventricle","3057":"flow:inlet_valve:ventricle","3058":"flow:inlet_valve:ventricle","3059":"flow:inlet_valve:ventricle","3060":"flow:inlet_valve:ventricle","3061":"flow:inlet_valve:ventricle","3062":"flow:inlet_valve:ventricle","3063":"flow:inlet_valve:ventricle","3064":"flow:inlet_valve:ventricle","3065":"flow:inlet_valve:ventricle","3066":"flow:inlet_valve:ventricle","3067":"flow:inlet_valve:ventricle","3068":"flow:inlet_valve:ventricle","3069":"flow:inlet_valve:ventricle","3070":"flow:inlet_valve:ventricle","3071":"flow:inlet_valve:ventricle","3072":"flow:inlet_valve:ventricle","3073":"flow:inlet_valve:ventricle","3074":"flow:inlet_valve:ventricle","3075":"flow:inlet_valve:ventricle","3076":"flow:inlet_valve:ventricle","3077":"flow:inlet_valve:ventricle","3078":"flow:inlet_valve:ventricle","3079":"flow:inlet_valve:ventricle","3080":"flow:inlet_valve:ventricle","3081":"flow:inlet_valve:ventricle","3082":"flow:inlet_valve:ventricle","3083":"flow:inlet_valve:ventricle","3084":"flow:inlet_valve:ventricle","3085":"flow:inlet_valve:ventricle","3086":"flow:inlet_valve:ventricle","3087":"flow:inlet_valve:ventricle","3088":"flow:inlet_valve:ventricle","3089":"flow:inlet_valve:ventricle","3090":"flow:inlet_valve:ventricle","3091":"flow:inlet_valve:ventricle","3092":"flow:inlet_valve:ventricle","3093":"flow:inlet_valve:ventricle","3094":"flow:inlet_valve:ventricle","3095":"flow:inlet_valve:ventricle","3096":"flow:inlet_valve:ventricle","3097":"flow:inlet_valve:ventricle","3098":"flow:inlet_valve:ventricle","3099":"flow:inlet_valve:ventricle","3100":"flow:inlet_valve:ventricle","3101":"flow:inlet_valve:ventricle","3102":"flow:inlet_valve:ventricle","3103":"flow:inlet_valve:ventricle","3104":"flow:inlet_valve:ventricle","3105":"flow:inlet_valve:ventricle","3106":"flow:inlet_valve:ventricle","3107":"flow:inlet_valve:ventricle","3108":"flow:inlet_valve:ventricle","3109":"flow:inlet_valve:ventricle","3110":"flow:inlet_valve:ventricle","3111":"flow:inlet_valve:ventricle","3112":"flow:inlet_valve:ventricle","3113":"flow:inlet_valve:ventricle","3114":"flow:inlet_valve:ventricle","3115":"flow:inlet_valve:ventricle","3116":"flow:inlet_valve:ventricle","3117":"flow:inlet_valve:ventricle","3118":"flow:inlet_valve:ventricle","3119":"flow:inlet_valve:ventricle","3120":"flow:inlet_valve:ventricle","3121":"flow:inlet_valve:ventricle","3122":"flow:inlet_valve:ventricle","3123":"flow:inlet_valve:ventricle","3124":"flow:inlet_valve:ventricle","3125":"flow:inlet_valve:ventricle","3126":"flow:inlet_valve:ventricle","3127":"flow:inlet_valve:ventricle","3128":"flow:inlet_valve:ventricle","3129":"flow:inlet_valve:ventricle","3130":"flow:inlet_valve:ventricle","3131":"flow:inlet_valve:ventricle","3132":"flow:inlet_valve:ventricle","3133":"flow:inlet_valve:ventricle","3134":"flow:inlet_valve:ventricle","3135":"flow:inlet_valve:ventricle","3136":"flow:inlet_valve:ventricle","3137":"flow:inlet_valve:ventricle","3138":"flow:inlet_valve:ventricle","3139":"flow:inlet_valve:ventricle","3140":"flow:inlet_valve:ventricle","3141":"flow:inlet_valve:ventricle","3142":"flow:inlet_valve:ventricle","3143":"flow:inlet_valve:ventricle","3144":"flow:inlet_valve:ventricle","3145":"flow:inlet_valve:ventricle","3146":"flow:inlet_valve:ventricle","3147":"flow:inlet_valve:ventricle","3148":"flow:inlet_valve:ventricle","3149":"flow:inlet_valve:ventricle","3150":"flow:inlet_valve:ventricle","3151":"flow:inlet_valve:ventricle","3152":"flow:inlet_valve:ventricle","3153":"flow:inlet_valve:ventricle","3154":"flow:inlet_valve:ventricle","3155":"flow:inlet_valve:ventricle","3156":"flow:inlet_valve:ventricle","3157":"flow:inlet_valve:ventricle","3158":"flow:inlet_valve:ventricle","3159":"flow:inlet_valve:ventricle","3160":"flow:inlet_valve:ventricle","3161":"flow:inlet_valve:ventricle","3162":"flow:inlet_valve:ventricle","3163":"flow:inlet_valve:ventricle","3164":"flow:inlet_valve:ventricle","3165":"flow:inlet_valve:ventricle","3166":"flow:inlet_valve:ventricle","3167":"flow:inlet_valve:ventricle","3168":"flow:inlet_valve:ventricle","3169":"flow:inlet_valve:ventricle","3170":"flow:inlet_valve:ventricle","3171":"flow:inlet_valve:ventricle","3172":"flow:inlet_valve:ventricle","3173":"flow:inlet_valve:ventricle","3174":"flow:inlet_valve:ventricle","3175":"flow:inlet_valve:ventricle","3176":"flow:inlet_valve:ventricle","3177":"flow:inlet_valve:ventricle","3178":"flow:inlet_valve:ventricle","3179":"flow:inlet_valve:ventricle","3180":"flow:inlet_valve:ventricle","3181":"flow:inlet_valve:ventricle","3182":"flow:inlet_valve:ventricle","3183":"flow:inlet_valve:ventricle","3184":"flow:inlet_valve:ventricle","3185":"flow:inlet_valve:ventricle","3186":"flow:inlet_valve:ventricle","3187":"flow:inlet_valve:ventricle","3188":"flow:inlet_valve:ventricle","3189":"flow:inlet_valve:ventricle","3190":"flow:inlet_valve:ventricle","3191":"flow:inlet_valve:ventricle","3192":"flow:inlet_valve:ventricle","3193":"flow:inlet_valve:ventricle","3194":"flow:inlet_valve:ventricle","3195":"flow:inlet_valve:ventricle","3196":"flow:inlet_valve:ventricle","3197":"flow:inlet_valve:ventricle","3198":"flow:inlet_valve:ventricle","3199":"flow:inlet_valve:ventricle","3200":"flow:inlet_valve:ventricle","3201":"flow:inlet_valve:ventricle","3202":"flow:inlet_valve:ventricle","3203":"flow:inlet_valve:ventricle","3204":"flow:inlet_valve:ventricle","3205":"flow:inlet_valve:ventricle","3206":"flow:inlet_valve:ventricle","3207":"flow:inlet_valve:ventricle","3208":"flow:inlet_valve:ventricle","3209":"flow:inlet_valve:ventricle","3210":"flow:inlet_valve:ventricle","3211":"flow:inlet_valve:ventricle","3212":"flow:inlet_valve:ventricle","3213":"flow:inlet_valve:ventricle","3214":"flow:inlet_valve:ventricle","3215":"flow:inlet_valve:ventricle","3216":"flow:inlet_valve:ventricle","3217":"flow:inlet_valve:ventricle","3218":"flow:inlet_valve:ventricle","3219":"flow:inlet_valve:ventricle","3220":"flow:inlet_valve:ventricle","3221":"flow:inlet_valve:ventricle","3222":"flow:inlet_valve:ventricle","3223":"flow:inlet_valve:ventricle","3224":"flow:inlet_valve:ventricle","3225":"flow:inlet_valve:ventricle","3226":"flow:inlet_valve:ventricle","3227":"flow:inlet_valve:ventricle","3228":"flow:inlet_valve:ventricle","3229":"flow:inlet_valve:ventricle","3230":"flow:inlet_valve:ventricle","3231":"flow:inlet_valve:ventricle","3232":"flow:inlet_valve:ventricle","3233":"flow:inlet_valve:ventricle","3234":"flow:inlet_valve:ventricle","3235":"flow:inlet_valve:ventricle","3236":"flow:inlet_valve:ventricle","3237":"flow:inlet_valve:ventricle","3238":"flow:inlet_valve:ventricle","3239":"flow:inlet_valve:ventricle","3240":"flow:inlet_valve:ventricle","3241":"flow:inlet_valve:ventricle","3242":"flow:inlet_valve:ventricle","3243":"flow:inlet_valve:ventricle","3244":"flow:inlet_valve:ventricle","3245":"flow:inlet_valve:ventricle","3246":"flow:inlet_valve:ventricle","3247":"flow:inlet_valve:ventricle","3248":"flow:inlet_valve:ventricle","3249":"flow:inlet_valve:ventricle","3250":"flow:inlet_valve:ventricle","3251":"flow:inlet_valve:ventricle","3252":"flow:inlet_valve:ventricle","3253":"flow:inlet_valve:ventricle","3254":"flow:inlet_valve:ventricle","3255":"flow:inlet_valve:ventricle","3256":"flow:inlet_valve:ventricle","3257":"flow:inlet_valve:ventricle","3258":"flow:inlet_valve:ventricle","3259":"flow:inlet_valve:ventricle","3260":"flow:inlet_valve:ventricle","3261":"flow:inlet_valve:ventricle","3262":"flow:inlet_valve:ventricle","3263":"flow:inlet_valve:ventricle","3264":"flow:inlet_valve:ventricle","3265":"flow:inlet_valve:ventricle","3266":"flow:inlet_valve:ventricle","3267":"flow:inlet_valve:ventricle","3268":"flow:inlet_valve:ventricle","3269":"flow:inlet_valve:ventricle","3270":"flow:inlet_valve:ventricle","3271":"flow:inlet_valve:ventricle","3272":"flow:inlet_valve:ventricle","3273":"flow:inlet_valve:ventricle","3274":"flow:inlet_valve:ventricle","3275":"flow:inlet_valve:ventricle","3276":"flow:inlet_valve:ventricle","3277":"flow:inlet_valve:ventricle","3278":"flow:inlet_valve:ventricle","3279":"flow:inlet_valve:ventricle","3280":"flow:inlet_valve:ventricle","3281":"flow:inlet_valve:ventricle","3282":"flow:inlet_valve:ventricle","3283":"flow:inlet_valve:ventricle","3284":"flow:inlet_valve:ventricle","3285":"flow:inlet_valve:ventricle","3286":"flow:inlet_valve:ventricle","3287":"flow:inlet_valve:ventricle","3288":"flow:inlet_valve:ventricle","3289":"flow:inlet_valve:ventricle","3290":"flow:inlet_valve:ventricle","3291":"flow:inlet_valve:ventricle","3292":"flow:inlet_valve:ventricle","3293":"flow:inlet_valve:ventricle","3294":"flow:inlet_valve:ventricle","3295":"flow:inlet_valve:ventricle","3296":"flow:inlet_valve:ventricle","3297":"flow:inlet_valve:ventricle","3298":"flow:inlet_valve:ventricle","3299":"flow:inlet_valve:ventricle","3300":"flow:inlet_valve:ventricle","3301":"flow:inlet_valve:ventricle","3302":"flow:inlet_valve:ventricle","3303":"flow:inlet_valve:ventricle","3304":"flow:inlet_valve:ventricle","3305":"flow:inlet_valve:ventricle","3306":"flow:inlet_valve:ventricle","3307":"flow:inlet_valve:ventricle","3308":"flow:inlet_valve:ventricle","3309":"flow:inlet_valve:ventricle","3310":"flow:inlet_valve:ventricle","3311":"flow:inlet_valve:ventricle","3312":"flow:inlet_valve:ventricle","3313":"flow:inlet_valve:ventricle","3314":"flow:inlet_valve:ventricle","3315":"flow:inlet_valve:ventricle","3316":"flow:inlet_valve:ventricle","3317":"flow:inlet_valve:ventricle","3318":"flow:inlet_valve:ventricle","3319":"flow:inlet_valve:ventricle","3320":"flow:inlet_valve:ventricle","3321":"flow:inlet_valve:ventricle","3322":"flow:inlet_valve:ventricle","3323":"flow:inlet_valve:ventricle","3324":"flow:inlet_valve:ventricle","3325":"flow:inlet_valve:ventricle","3326":"flow:inlet_valve:ventricle","3327":"flow:inlet_valve:ventricle","3328":"flow:inlet_valve:ventricle","3329":"flow:inlet_valve:ventricle","3330":"flow:inlet_valve:ventricle","3331":"flow:inlet_valve:ventricle","3332":"flow:inlet_valve:ventricle","3333":"flow:inlet_valve:ventricle","3334":"flow:inlet_valve:ventricle","3335":"flow:inlet_valve:ventricle","3336":"flow:inlet_valve:ventricle","3337":"flow:inlet_valve:ventricle","3338":"flow:inlet_valve:ventricle","3339":"flow:inlet_valve:ventricle","3340":"flow:inlet_valve:ventricle","3341":"flow:inlet_valve:ventricle","3342":"flow:inlet_valve:ventricle","3343":"flow:inlet_valve:ventricle","3344":"flow:inlet_valve:ventricle","3345":"flow:inlet_valve:ventricle","3346":"flow:inlet_valve:ventricle","3347":"flow:inlet_valve:ventricle","3348":"flow:inlet_valve:ventricle","3349":"flow:inlet_valve:ventricle","3350":"flow:inlet_valve:ventricle","3351":"flow:inlet_valve:ventricle","3352":"flow:inlet_valve:ventricle","3353":"flow:inlet_valve:ventricle","3354":"flow:inlet_valve:ventricle","3355":"flow:inlet_valve:ventricle","3356":"flow:inlet_valve:ventricle","3357":"flow:inlet_valve:ventricle","3358":"flow:inlet_valve:ventricle","3359":"flow:inlet_valve:ventricle","3360":"flow:inlet_valve:ventricle","3361":"flow:inlet_valve:ventricle","3362":"flow:inlet_valve:ventricle","3363":"flow:inlet_valve:ventricle","3364":"flow:inlet_valve:ventricle","3365":"flow:inlet_valve:ventricle","3366":"flow:inlet_valve:ventricle","3367":"flow:inlet_valve:ventricle","3368":"flow:inlet_valve:ventricle","3369":"flow:inlet_valve:ventricle","3370":"flow:inlet_valve:ventricle","3371":"flow:inlet_valve:ventricle","3372":"flow:inlet_valve:ventricle","3373":"flow:inlet_valve:ventricle","3374":"flow:inlet_valve:ventricle","3375":"flow:inlet_valve:ventricle","3376":"flow:inlet_valve:ventricle","3377":"flow:inlet_valve:ventricle","3378":"flow:inlet_valve:ventricle","3379":"flow:inlet_valve:ventricle","3380":"flow:inlet_valve:ventricle","3381":"flow:inlet_valve:ventricle","3382":"flow:inlet_valve:ventricle","3383":"flow:inlet_valve:ventricle","3384":"flow:inlet_valve:ventricle","3385":"flow:inlet_valve:ventricle","3386":"flow:inlet_valve:ventricle","3387":"flow:inlet_valve:ventricle","3388":"flow:inlet_valve:ventricle","3389":"flow:inlet_valve:ventricle","3390":"flow:inlet_valve:ventricle","3391":"flow:inlet_valve:ventricle","3392":"flow:inlet_valve:ventricle","3393":"flow:inlet_valve:ventricle","3394":"flow:inlet_valve:ventricle","3395":"flow:inlet_valve:ventricle","3396":"flow:inlet_valve:ventricle","3397":"flow:inlet_valve:ventricle","3398":"flow:inlet_valve:ventricle","3399":"flow:inlet_valve:ventricle","3400":"flow:inlet_valve:ventricle","3401":"flow:inlet_valve:ventricle","3402":"flow:inlet_valve:ventricle","3403":"flow:inlet_valve:ventricle","3404":"flow:inlet_valve:ventricle","3405":"flow:inlet_valve:ventricle","3406":"flow:inlet_valve:ventricle","3407":"flow:inlet_valve:ventricle","3408":"flow:inlet_valve:ventricle","3409":"flow:inlet_valve:ventricle","3410":"flow:inlet_valve:ventricle","3411":"flow:inlet_valve:ventricle","3412":"flow:inlet_valve:ventricle","3413":"flow:inlet_valve:ventricle","3414":"flow:inlet_valve:ventricle","3415":"flow:inlet_valve:ventricle","3416":"flow:inlet_valve:ventricle","3417":"flow:inlet_valve:ventricle","3418":"flow:inlet_valve:ventricle","3419":"flow:inlet_valve:ventricle","3420":"flow:inlet_valve:ventricle","3421":"flow:inlet_valve:ventricle","3422":"flow:inlet_valve:ventricle","3423":"flow:inlet_valve:ventricle","3424":"flow:inlet_valve:ventricle","3425":"flow:inlet_valve:ventricle","3426":"flow:inlet_valve:ventricle","3427":"flow:inlet_valve:ventricle","3428":"flow:inlet_valve:ventricle","3429":"flow:inlet_valve:ventricle","3430":"flow:inlet_valve:ventricle","3431":"flow:inlet_valve:ventricle","3432":"flow:inlet_valve:ventricle","3433":"flow:inlet_valve:ventricle","3434":"flow:inlet_valve:ventricle","3435":"flow:inlet_valve:ventricle","3436":"flow:inlet_valve:ventricle","3437":"flow:inlet_valve:ventricle","3438":"flow:inlet_valve:ventricle","3439":"flow:inlet_valve:ventricle","3440":"flow:inlet_valve:ventricle","3441":"flow:inlet_valve:ventricle","3442":"flow:inlet_valve:ventricle","3443":"flow:inlet_valve:ventricle","3444":"flow:inlet_valve:ventricle","3445":"flow:inlet_valve:ventricle","3446":"flow:inlet_valve:ventricle","3447":"flow:inlet_valve:ventricle","3448":"flow:inlet_valve:ventricle","3449":"flow:inlet_valve:ventricle","3450":"flow:inlet_valve:ventricle","3451":"flow:inlet_valve:ventricle","3452":"flow:inlet_valve:ventricle","3453":"flow:inlet_valve:ventricle","3454":"flow:inlet_valve:ventricle","3455":"flow:inlet_valve:ventricle","3456":"flow:inlet_valve:ventricle","3457":"flow:inlet_valve:ventricle","3458":"flow:inlet_valve:ventricle","3459":"flow:inlet_valve:ventricle","3460":"flow:inlet_valve:ventricle","3461":"flow:inlet_valve:ventricle","3462":"flow:inlet_valve:ventricle","3463":"flow:inlet_valve:ventricle","3464":"flow:inlet_valve:ventricle","3465":"flow:inlet_valve:ventricle","3466":"flow:inlet_valve:ventricle","3467":"flow:inlet_valve:ventricle","3468":"flow:inlet_valve:ventricle","3469":"flow:inlet_valve:ventricle","3470":"flow:inlet_valve:ventricle","3471":"flow:inlet_valve:ventricle","3472":"flow:inlet_valve:ventricle","3473":"flow:inlet_valve:ventricle","3474":"flow:inlet_valve:ventricle","3475":"flow:inlet_valve:ventricle","3476":"flow:inlet_valve:ventricle","3477":"flow:inlet_valve:ventricle","3478":"flow:inlet_valve:ventricle","3479":"flow:inlet_valve:ventricle","3480":"flow:inlet_valve:ventricle","3481":"flow:inlet_valve:ventricle","3482":"flow:inlet_valve:ventricle","3483":"flow:inlet_valve:ventricle","3484":"flow:inlet_valve:ventricle","3485":"flow:inlet_valve:ventricle","3486":"flow:inlet_valve:ventricle","3487":"flow:inlet_valve:ventricle","3488":"flow:inlet_valve:ventricle","3489":"flow:inlet_valve:ventricle","3490":"flow:inlet_valve:ventricle","3491":"flow:inlet_valve:ventricle","3492":"flow:inlet_valve:ventricle","3493":"flow:inlet_valve:ventricle","3494":"flow:inlet_valve:ventricle","3495":"flow:inlet_valve:ventricle","3496":"flow:inlet_valve:ventricle","3497":"flow:inlet_valve:ventricle","3498":"flow:inlet_valve:ventricle","3499":"flow:inlet_valve:ventricle","3500":"pressure:inlet_valve:ventricle","3501":"pressure:inlet_valve:ventricle","3502":"pressure:inlet_valve:ventricle","3503":"pressure:inlet_valve:ventricle","3504":"pressure:inlet_valve:ventricle","3505":"pressure:inlet_valve:ventricle","3506":"pressure:inlet_valve:ventricle","3507":"pressure:inlet_valve:ventricle","3508":"pressure:inlet_valve:ventricle","3509":"pressure:inlet_valve:ventricle","3510":"pressure:inlet_valve:ventricle","3511":"pressure:inlet_valve:ventricle","3512":"pressure:inlet_valve:ventricle","3513":"pressure:inlet_valve:ventricle","3514":"pressure:inlet_valve:ventricle","3515":"pressure:inlet_valve:ventricle","3516":"pressure:inlet_valve:ventricle","3517":"pressure:inlet_valve:ventricle","3518":"pressure:inlet_valve:ventricle","3519":"pressure:inlet_valve:ventricle","3520":"pressure:inlet_valve:ventricle","3521":"pressure:inlet_valve:ventricle","3522":"pressure:inlet_valve:ventricle","3523":"pressure:inlet_valve:ventricle","3524":"pressure:inlet_valve:ventricle","3525":"pressure:inlet_valve:ventricle","3526":"pressure:inlet_valve:ventricle","3527":"pressure:inlet_valve:ventricle","3528":"pressure:inlet_valve:ventricle","3529":"pressure:inlet_valve:ventricle","3530":"pressure:inlet_valve:ventricle","3531":"pressure:inlet_valve:ventricle","3532":"pressure:inlet_valve:ventricle","3533":"pressure:inlet_valve:ventricle","3534":"pressure:inlet_valve:ventricle","3535":"pressure:inlet_valve:ventricle","3536":"pressure:inlet_valve:ventricle","3537":"pressure:inlet_valve:ventricle","3538":"pressure:inlet_valve:ventricle","3539":"pressure:inlet_valve:ventricle","3540":"pressure:inlet_valve:ventricle","3541":"pressure:inlet_valve:ventricle","3542":"pressure:inlet_valve:ventricle","3543":"pressure:inlet_valve:ventricle","3544":"pressure:inlet_valve:ventricle","3545":"pressure:inlet_valve:ventricle","3546":"pressure:inlet_valve:ventricle","3547":"pressure:inlet_valve:ventricle","3548":"pressure:inlet_valve:ventricle","3549":"pressure:inlet_valve:ventricle","3550":"pressure:inlet_valve:ventricle","3551":"pressure:inlet_valve:ventricle","3552":"pressure:inlet_valve:ventricle","3553":"pressure:inlet_valve:ventricle","3554":"pressure:inlet_valve:ventricle","3555":"pressure:inlet_valve:ventricle","3556":"pressure:inlet_valve:ventricle","3557":"pressure:inlet_valve:ventricle","3558":"pressure:inlet_valve:ventricle","3559":"pressure:inlet_valve:ventricle","3560":"pressure:inlet_valve:ventricle","3561":"pressure:inlet_valve:ventricle","3562":"pressure:inlet_valve:ventricle","3563":"pressure:inlet_valve:ventricle","3564":"pressure:inlet_valve:ventricle","3565":"pressure:inlet_valve:ventricle","3566":"pressure:inlet_valve:ventricle","3567":"pressure:inlet_valve:ventricle","3568":"pressure:inlet_valve:ventricle","3569":"pressure:inlet_valve:ventricle","3570":"pressure:inlet_valve:ventricle","3571":"pressure:inlet_valve:ventricle","3572":"pressure:inlet_valve:ventricle","3573":"pressure:inlet_valve:ventricle","3574":"pressure:inlet_valve:ventricle","3575":"pressure:inlet_valve:ventricle","3576":"pressure:inlet_valve:ventricle","3577":"pressure:inlet_valve:ventricle","3578":"pressure:inlet_valve:ventricle","3579":"pressure:inlet_valve:ventricle","3580":"pressure:inlet_valve:ventricle","3581":"pressure:inlet_valve:ventricle","3582":"pressure:inlet_valve:ventricle","3583":"pressure:inlet_valve:ventricle","3584":"pressure:inlet_valve:ventricle","3585":"pressure:inlet_valve:ventricle","3586":"pressure:inlet_valve:ventricle","3587":"pressure:inlet_valve:ventricle","3588":"pressure:inlet_valve:ventricle","3589":"pressure:inlet_valve:ventricle","3590":"pressure:inlet_valve:ventricle","3591":"pressure:inlet_valve:ventricle","3592":"pressure:inlet_valve:ventricle","3593":"pressure:inlet_valve:ventricle","3594":"pressure:inlet_valve:ventricle","3595":"pressure:inlet_valve:ventricle","3596":"pressure:inlet_valve:ventricle","3597":"pressure:inlet_valve:ventricle","3598":"pressure:inlet_valve:ventricle","3599":"pressure:inlet_valve:ventricle","3600":"pressure:inlet_valve:ventricle","3601":"pressure:inlet_valve:ventricle","3602":"pressure:inlet_valve:ventricle","3603":"pressure:inlet_valve:ventricle","3604":"pressure:inlet_valve:ventricle","3605":"pressure:inlet_valve:ventricle","3606":"pressure:inlet_valve:ventricle","3607":"pressure:inlet_valve:ventricle","3608":"pressure:inlet_valve:ventricle","3609":"pressure:inlet_valve:ventricle","3610":"pressure:inlet_valve:ventricle","3611":"pressure:inlet_valve:ventricle","3612":"pressure:inlet_valve:ventricle","3613":"pressure:inlet_valve:ventricle","3614":"pressure:inlet_valve:ventricle","3615":"pressure:inlet_valve:ventricle","3616":"pressure:inlet_valve:ventricle","3617":"pressure:inlet_valve:ventricle","3618":"pressure:inlet_valve:ventricle","3619":"pressure:inlet_valve:ventricle","3620":"pressure:inlet_valve:ventricle","3621":"pressure:inlet_valve:ventricle","3622":"pressure:inlet_valve:ventricle","3623":"pressure:inlet_valve:ventricle","3624":"pressure:inlet_valve:ventricle","3625":"pressure:inlet_valve:ventricle","3626":"pressure:inlet_valve:ventricle","3627":"pressure:inlet_valve:ventricle","3628":"pressure:inlet_valve:ventricle","3629":"pressure:inlet_valve:ventricle","3630":"pressure:inlet_valve:ventricle","3631":"pressure:inlet_valve:ventricle","3632":"pressure:inlet_valve:ventricle","3633":"pressure:inlet_valve:ventricle","3634":"pressure:inlet_valve:ventricle","3635":"pressure:inlet_valve:ventricle","3636":"pressure:inlet_valve:ventricle","3637":"pressure:inlet_valve:ventricle","3638":"pressure:inlet_valve:ventricle","3639":"pressure:inlet_valve:ventricle","3640":"pressure:inlet_valve:ventricle","3641":"pressure:inlet_valve:ventricle","3642":"pressure:inlet_valve:ventricle","3643":"pressure:inlet_valve:ventricle","3644":"pressure:inlet_valve:ventricle","3645":"pressure:inlet_valve:ventricle","3646":"pressure:inlet_valve:ventricle","3647":"pressure:inlet_valve:ventricle","3648":"pressure:inlet_valve:ventricle","3649":"pressure:inlet_valve:ventricle","3650":"pressure:inlet_valve:ventricle","3651":"pressure:inlet_valve:ventricle","3652":"pressure:inlet_valve:ventricle","3653":"pressure:inlet_valve:ventricle","3654":"pressure:inlet_valve:ventricle","3655":"pressure:inlet_valve:ventricle","3656":"pressure:inlet_valve:ventricle","3657":"pressure:inlet_valve:ventricle","3658":"pressure:inlet_valve:ventricle","3659":"pressure:inlet_valve:ventricle","3660":"pressure:inlet_valve:ventricle","3661":"pressure:inlet_valve:ventricle","3662":"pressure:inlet_valve:ventricle","3663":"pressure:inlet_valve:ventricle","3664":"pressure:inlet_valve:ventricle","3665":"pressure:inlet_valve:ventricle","3666":"pressure:inlet_valve:ventricle","3667":"pressure:inlet_valve:ventricle","3668":"pressure:inlet_valve:ventricle","3669":"pressure:inlet_valve:ventricle","3670":"pressure:inlet_valve:ventricle","3671":"pressure:inlet_valve:ventricle","3672":"pressure:inlet_valve:ventricle","3673":"pressure:inlet_valve:ventricle","3674":"pressure:inlet_valve:ventricle","3675":"pressure:inlet_valve:ventricle","3676":"pressure:inlet_valve:ventricle","3677":"pressure:inlet_valve:ventricle","3678":"pressure:inlet_valve:ventricle","3679":"pressure:inlet_valve:ventricle","3680":"pressure:inlet_valve:ventricle","3681":"pressure:inlet_valve:ventricle","3682":"pressure:inlet_valve:ventricle","3683":"pressure:inlet_valve:ventricle","3684":"pressure:inlet_valve:ventricle","3685":"pressure:inlet_valve:ventricle","3686":"pressure:inlet_valve:ventricle","3687":"pressure:inlet_valve:ventricle","3688":"pressure:inlet_valve:ventricle","3689":"pressure:inlet_valve:ventricle","3690":"pressure:inlet_valve:ventricle","3691":"pressure:inlet_valve:ventricle","3692":"pressure:inlet_valve:ventricle","3693":"pressure:inlet_valve:ventricle","3694":"pressure:inlet_valve:ventricle","3695":"pressure:inlet_valve:ventricle","3696":"pressure:inlet_valve:ventricle","3697":"pressure:inlet_valve:ventricle","3698":"pressure:inlet_valve:ventricle","3699":"pressure:inlet_valve:ventricle","3700":"pressure:inlet_valve:ventricle","3701":"pressure:inlet_valve:ventricle","3702":"pressure:inlet_valve:ventricle","3703":"pressure:inlet_valve:ventricle","3704":"pressure:inlet_valve:ventricle","3705":"pressure:inlet_valve:ventricle","3706":"pressure:inlet_valve:ventricle","3707":"pressure:inlet_valve:ventricle","3708":"pressure:inlet_valve:ventricle","3709":"pressure:inlet_valve:ventricle","3710":"pressure:inlet_valve:ventricle","3711":"pressure:inlet_valve:ventricle","3712":"pressure:inlet_valve:ventricle","3713":"pressure:inlet_valve:ventricle","3714":"pressure:inlet_valve:ventricle","3715":"pressure:inlet_valve:ventricle","3716":"pressure:inlet_valve:ventricle","3717":"pressure:inlet_valve:ventricle","3718":"pressure:inlet_valve:ventricle","3719":"pressure:inlet_valve:ventricle","3720":"pressure:inlet_valve:ventricle","3721":"pressure:inlet_valve:ventricle","3722":"pressure:inlet_valve:ventricle","3723":"pressure:inlet_valve:ventricle","3724":"pressure:inlet_valve:ventricle","3725":"pressure:inlet_valve:ventricle","3726":"pressure:inlet_valve:ventricle","3727":"pressure:inlet_valve:ventricle","3728":"pressure:inlet_valve:ventricle","3729":"pressure:inlet_valve:ventricle","3730":"pressure:inlet_valve:ventricle","3731":"pressure:inlet_valve:ventricle","3732":"pressure:inlet_valve:ventricle","3733":"pressure:inlet_valve:ventricle","3734":"pressure:inlet_valve:ventricle","3735":"pressure:inlet_valve:ventricle","3736":"pressure:inlet_valve:ventricle","3737":"pressure:inlet_valve:ventricle","3738":"pressure:inlet_valve:ventricle","3739":"pressure:inlet_valve:ventricle","3740":"pressure:inlet_valve:ventricle","3741":"pressure:inlet_valve:ventricle","3742":"pressure:inlet_valve:ventricle","3743":"pressure:inlet_valve:ventricle","3744":"pressure:inlet_valve:ventricle","3745":"pressure:inlet_valve:ventricle","3746":"pressure:inlet_valve:ventricle","3747":"pressure:inlet_valve:ventricle","3748":"pressure:inlet_valve:ventricle","3749":"pressure:inlet_valve:ventricle","3750":"pressure:inlet_valve:ventricle","3751":"pressure:inlet_valve:ventricle","3752":"pressure:inlet_valve:ventricle","3753":"pressure:inlet_valve:ventricle","3754":"pressure:inlet_valve:ventricle","3755":"pressure:inlet_valve:ventricle","3756":"pressure:inlet_valve:ventricle","3757":"pressure:inlet_valve:ventricle","3758":"pressure:inlet_valve:ventricle","3759":"pressure:inlet_valve:ventricle","3760":"pressure:inlet_valve:ventricle","3761":"pressure:inlet_valve:ventricle","3762":"pressure:inlet_valve:ventricle","3763":"pressure:inlet_valve:ventricle","3764":"pressure:inlet_valve:ventricle","3765":"pressure:inlet_valve:ventricle","3766":"pressure:inlet_valve:ventricle","3767":"pressure:inlet_valve:ventricle","3768":"pressure:inlet_valve:ventricle","3769":"pressure:inlet_valve:ventricle","3770":"pressure:inlet_valve:ventricle","3771":"pressure:inlet_valve:ventricle","3772":"pressure:inlet_valve:ventricle","3773":"pressure:inlet_valve:ventricle","3774":"pressure:inlet_valve:ventricle","3775":"pressure:inlet_valve:ventricle","3776":"pressure:inlet_valve:ventricle","3777":"pressure:inlet_valve:ventricle","3778":"pressure:inlet_valve:ventricle","3779":"pressure:inlet_valve:ventricle","3780":"pressure:inlet_valve:ventricle","3781":"pressure:inlet_valve:ventricle","3782":"pressure:inlet_valve:ventricle","3783":"pressure:inlet_valve:ventricle","3784":"pressure:inlet_valve:ventricle","3785":"pressure:inlet_valve:ventricle","3786":"pressure:inlet_valve:ventricle","3787":"pressure:inlet_valve:ventricle","3788":"pressure:inlet_valve:ventricle","3789":"pressure:inlet_valve:ventricle","3790":"pressure:inlet_valve:ventricle","3791":"pressure:inlet_valve:ventricle","3792":"pressure:inlet_valve:ventricle","3793":"pressure:inlet_valve:ventricle","3794":"pressure:inlet_valve:ventricle","3795":"pressure:inlet_valve:ventricle","3796":"pressure:inlet_valve:ventricle","3797":"pressure:inlet_valve:ventricle","3798":"pressure:inlet_valve:ventricle","3799":"pressure:inlet_valve:ventricle","3800":"pressure:inlet_valve:ventricle","3801":"pressure:inlet_valve:ventricle","3802":"pressure:inlet_valve:ventricle","3803":"pressure:inlet_valve:ventricle","3804":"pressure:inlet_valve:ventricle","3805":"pressure:inlet_valve:ventricle","3806":"pressure:inlet_valve:ventricle","3807":"pressure:inlet_valve:ventricle","3808":"pressure:inlet_valve:ventricle","3809":"pressure:inlet_valve:ventricle","3810":"pressure:inlet_valve:ventricle","3811":"pressure:inlet_valve:ventricle","3812":"pressure:inlet_valve:ventricle","3813":"pressure:inlet_valve:ventricle","3814":"pressure:inlet_valve:ventricle","3815":"pressure:inlet_valve:ventricle","3816":"pressure:inlet_valve:ventricle","3817":"pressure:inlet_valve:ventricle","3818":"pressure:inlet_valve:ventricle","3819":"pressure:inlet_valve:ventricle","3820":"pressure:inlet_valve:ventricle","3821":"pressure:inlet_valve:ventricle","3822":"pressure:inlet_valve:ventricle","3823":"pressure:inlet_valve:ventricle","3824":"pressure:inlet_valve:ventricle","3825":"pressure:inlet_valve:ventricle","3826":"pressure:inlet_valve:ventricle","3827":"pressure:inlet_valve:ventricle","3828":"pressure:inlet_valve:ventricle","3829":"pressure:inlet_valve:ventricle","3830":"pressure:inlet_valve:ventricle","3831":"pressure:inlet_valve:ventricle","3832":"pressure:inlet_valve:ventricle","3833":"pressure:inlet_valve:ventricle","3834":"pressure:inlet_valve:ventricle","3835":"pressure:inlet_valve:ventricle","3836":"pressure:inlet_valve:ventricle","3837":"pressure:inlet_valve:ventricle","3838":"pressure:inlet_valve:ventricle","3839":"pressure:inlet_valve:ventricle","3840":"pressure:inlet_valve:ventricle","3841":"pressure:inlet_valve:ventricle","3842":"pressure:inlet_valve:ventricle","3843":"pressure:inlet_valve:ventricle","3844":"pressure:inlet_valve:ventricle","3845":"pressure:inlet_valve:ventricle","3846":"pressure:inlet_valve:ventricle","3847":"pressure:inlet_valve:ventricle","3848":"pressure:inlet_valve:ventricle","3849":"pressure:inlet_valve:ventricle","3850":"pressure:inlet_valve:ventricle","3851":"pressure:inlet_valve:ventricle","3852":"pressure:inlet_valve:ventricle","3853":"pressure:inlet_valve:ventricle","3854":"pressure:inlet_valve:ventricle","3855":"pressure:inlet_valve:ventricle","3856":"pressure:inlet_valve:ventricle","3857":"pressure:inlet_valve:ventricle","3858":"pressure:inlet_valve:ventricle","3859":"pressure:inlet_valve:ventricle","3860":"pressure:inlet_valve:ventricle","3861":"pressure:inlet_valve:ventricle","3862":"pressure:inlet_valve:ventricle","3863":"pressure:inlet_valve:ventricle","3864":"pressure:inlet_valve:ventricle","3865":"pressure:inlet_valve:ventricle","3866":"pressure:inlet_valve:ventricle","3867":"pressure:inlet_valve:ventricle","3868":"pressure:inlet_valve:ventricle","3869":"pressure:inlet_valve:ventricle","3870":"pressure:inlet_valve:ventricle","3871":"pressure:inlet_valve:ventricle","3872":"pressure:inlet_valve:ventricle","3873":"pressure:inlet_valve:ventricle","3874":"pressure:inlet_valve:ventricle","3875":"pressure:inlet_valve:ventricle","3876":"pressure:inlet_valve:ventricle","3877":"pressure:inlet_valve:ventricle","3878":"pressure:inlet_valve:ventricle","3879":"pressure:inlet_valve:ventricle","3880":"pressure:inlet_valve:ventricle","3881":"pressure:inlet_valve:ventricle","3882":"pressure:inlet_valve:ventricle","3883":"pressure:inlet_valve:ventricle","3884":"pressure:inlet_valve:ventricle","3885":"pressure:inlet_valve:ventricle","3886":"pressure:inlet_valve:ventricle","3887":"pressure:inlet_valve:ventricle","3888":"pressure:inlet_valve:ventricle","3889":"pressure:inlet_valve:ventricle","3890":"pressure:inlet_valve:ventricle","3891":"pressure:inlet_valve:ventricle","3892":"pressure:inlet_valve:ventricle","3893":"pressure:inlet_valve:ventricle","3894":"pressure:inlet_valve:ventricle","3895":"pressure:inlet_valve:ventricle","3896":"pressure:inlet_valve:ventricle","3897":"pressure:inlet_valve:ventricle","3898":"pressure:inlet_valve:ventricle","3899":"pressure:inlet_valve:ventricle","3900":"pressure:inlet_valve:ventricle","3901":"pressure:inlet_valve:ventricle","3902":"pressure:inlet_valve:ventricle","3903":"pressure:inlet_valve:ventricle","3904":"pressure:inlet_valve:ventricle","3905":"pressure:inlet_valve:ventricle","3906":"pressure:inlet_valve:ventricle","3907":"pressure:inlet_valve:ventricle","3908":"pressure:inlet_valve:ventricle","3909":"pressure:inlet_valve:ventricle","3910":"pressure:inlet_valve:ventricle","3911":"pressure:inlet_valve:ventricle","3912":"pressure:inlet_valve:ventricle","3913":"pressure:inlet_valve:ventricle","3914":"pressure:inlet_valve:ventricle","3915":"pressure:inlet_valve:ventricle","3916":"pressure:inlet_valve:ventricle","3917":"pressure:inlet_valve:ventricle","3918":"pressure:inlet_valve:ventricle","3919":"pressure:inlet_valve:ventricle","3920":"pressure:inlet_valve:ventricle","3921":"pressure:inlet_valve:ventricle","3922":"pressure:inlet_valve:ventricle","3923":"pressure:inlet_valve:ventricle","3924":"pressure:inlet_valve:ventricle","3925":"pressure:inlet_valve:ventricle","3926":"pressure:inlet_valve:ventricle","3927":"pressure:inlet_valve:ventricle","3928":"pressure:inlet_valve:ventricle","3929":"pressure:inlet_valve:ventricle","3930":"pressure:inlet_valve:ventricle","3931":"pressure:inlet_valve:ventricle","3932":"pressure:inlet_valve:ventricle","3933":"pressure:inlet_valve:ventricle","3934":"pressure:inlet_valve:ventricle","3935":"pressure:inlet_valve:ventricle","3936":"pressure:inlet_valve:ventricle","3937":"pressure:inlet_valve:ventricle","3938":"pressure:inlet_valve:ventricle","3939":"pressure:inlet_valve:ventricle","3940":"pressure:inlet_valve:ventricle","3941":"pressure:inlet_valve:ventricle","3942":"pressure:inlet_valve:ventricle","3943":"pressure:inlet_valve:ventricle","3944":"pressure:inlet_valve:ventricle","3945":"pressure:inlet_valve:ventricle","3946":"pressure:inlet_valve:ventricle","3947":"pressure:inlet_valve:ventricle","3948":"pressure:inlet_valve:ventricle","3949":"pressure:inlet_valve:ventricle","3950":"pressure:inlet_valve:ventricle","3951":"pressure:inlet_valve:ventricle","3952":"pressure:inlet_valve:ventricle","3953":"pressure:inlet_valve:ventricle","3954":"pressure:inlet_valve:ventricle","3955":"pressure:inlet_valve:ventricle","3956":"pressure:inlet_valve:ventricle","3957":"pressure:inlet_valve:ventricle","3958":"pressure:inlet_valve:ventricle","3959":"pressure:inlet_valve:ventricle","3960":"pressure:inlet_valve:ventricle","3961":"pressure:inlet_valve:ventricle","3962":"pressure:inlet_valve:ventricle","3963":"pressure:inlet_valve:ventricle","3964":"pressure:inlet_valve:ventricle","3965":"pressure:inlet_valve:ventricle","3966":"pressure:inlet_valve:ventricle","3967":"pressure:inlet_valve:ventricle","3968":"pressure:inlet_valve:ventricle","3969":"pressure:inlet_valve:ventricle","3970":"pressure:inlet_valve:ventricle","3971":"pressure:inlet_valve:ventricle","3972":"pressure:inlet_valve:ventricle","3973":"pressure:inlet_valve:ventricle","3974":"pressure:inlet_valve:ventricle","3975":"pressure:inlet_valve:ventricle","3976":"pressure:inlet_valve:ventricle","3977":"pressure:inlet_valve:ventricle","3978":"pressure:inlet_valve:ventricle","3979":"pressure:inlet_valve:ventricle","3980":"pressure:inlet_valve:ventricle","3981":"pressure:inlet_valve:ventricle","3982":"pressure:inlet_valve:ventricle","3983":"pressure:inlet_valve:ventricle","3984":"pressure:inlet_valve:ventricle","3985":"pressure:inlet_valve:ventricle","3986":"pressure:inlet_valve:ventricle","3987":"pressure:inlet_valve:ventricle","3988":"pressure:inlet_valve:ventricle","3989":"pressure:inlet_valve:ventricle","3990":"pressure:inlet_valve:ventricle","3991":"pressure:inlet_valve:ventricle","3992":"pressure:inlet_valve:ventricle","3993":"pressure:inlet_valve:ventricle","3994":"pressure:inlet_valve:ventricle","3995":"pressure:inlet_valve:ventricle","3996":"pressure:inlet_valve:ventricle","3997":"pressure:inlet_valve:ventricle","3998":"pressure:inlet_valve:ventricle","3999":"pressure:inlet_valve:ventricle","4000":"flow:ventricle:outlet_valve","4001":"flow:ventricle:outlet_valve","4002":"flow:ventricle:outlet_valve","4003":"flow:ventricle:outlet_valve","4004":"flow:ventricle:outlet_valve","4005":"flow:ventricle:outlet_valve","4006":"flow:ventricle:outlet_valve","4007":"flow:ventricle:outlet_valve","4008":"flow:ventricle:outlet_valve","4009":"flow:ventricle:outlet_valve","4010":"flow:ventricle:outlet_valve","4011":"flow:ventricle:outlet_valve","4012":"flow:ventricle:outlet_valve","4013":"flow:ventricle:outlet_valve","4014":"flow:ventricle:outlet_valve","4015":"flow:ventricle:outlet_valve","4016":"flow:ventricle:outlet_valve","4017":"flow:ventricle:outlet_valve","4018":"flow:ventricle:outlet_valve","4019":"flow:ventricle:outlet_valve","4020":"flow:ventricle:outlet_valve","4021":"flow:ventricle:outlet_valve","4022":"flow:ventricle:outlet_valve","4023":"flow:ventricle:outlet_valve","4024":"flow:ventricle:outlet_valve","4025":"flow:ventricle:outlet_valve","4026":"flow:ventricle:outlet_valve","4027":"flow:ventricle:outlet_valve","4028":"flow:ventricle:outlet_valve","4029":"flow:ventricle:outlet_valve","4030":"flow:ventricle:outlet_valve","4031":"flow:ventricle:outlet_valve","4032":"flow:ventricle:outlet_valve","4033":"flow:ventricle:outlet_valve","4034":"flow:ventricle:outlet_valve","4035":"flow:ventricle:outlet_valve","4036":"flow:ventricle:outlet_valve","4037":"flow:ventricle:outlet_valve","4038":"flow:ventricle:outlet_valve","4039":"flow:ventricle:outlet_valve","4040":"flow:ventricle:outlet_valve","4041":"flow:ventricle:outlet_valve","4042":"flow:ventricle:outlet_valve","4043":"flow:ventricle:outlet_valve","4044":"flow:ventricle:outlet_valve","4045":"flow:ventricle:outlet_valve","4046":"flow:ventricle:outlet_valve","4047":"flow:ventricle:outlet_valve","4048":"flow:ventricle:outlet_valve","4049":"flow:ventricle:outlet_valve","4050":"flow:ventricle:outlet_valve","4051":"flow:ventricle:outlet_valve","4052":"flow:ventricle:outlet_valve","4053":"flow:ventricle:outlet_valve","4054":"flow:ventricle:outlet_valve","4055":"flow:ventricle:outlet_valve","4056":"flow:ventricle:outlet_valve","4057":"flow:ventricle:outlet_valve","4058":"flow:ventricle:outlet_valve","4059":"flow:ventricle:outlet_valve","4060":"flow:ventricle:outlet_valve","4061":"flow:ventricle:outlet_valve","4062":"flow:ventricle:outlet_valve","4063":"flow:ventricle:outlet_valve","4064":"flow:ventricle:outlet_valve","4065":"flow:ventricle:outlet_valve","4066":"flow:ventricle:outlet_valve","4067":"flow:ventricle:outlet_valve","4068":"flow:ventricle:outlet_valve","4069":"flow:ventricle:outlet_valve","4070":"flow:ventricle:outlet_valve","4071":"flow:ventricle:outlet_valve","4072":"flow:ventricle:outlet_valve","4073":"flow:ventricle:outlet_valve","4074":"flow:ventricle:outlet_valve","4075":"flow:ventricle:outlet_valve","4076":"flow:ventricle:outlet_valve","4077":"flow:ventricle:outlet_valve","4078":"flow:ventricle:outlet_valve","4079":"flow:ventricle:outlet_valve","4080":"flow:ventricle:outlet_valve","4081":"flow:ventricle:outlet_valve","4082":"flow:ventricle:outlet_valve","4083":"flow:ventricle:outlet_valve","4084":"flow:ventricle:outlet_valve","4085":"flow:ventricle:outlet_valve","4086":"flow:ventricle:outlet_valve","4087":"flow:ventricle:outlet_valve","4088":"flow:ventricle:outlet_valve","4089":"flow:ventricle:outlet_valve","4090":"flow:ventricle:outlet_valve","4091":"flow:ventricle:outlet_valve","4092":"flow:ventricle:outlet_valve","4093":"flow:ventricle:outlet_valve","4094":"flow:ventricle:outlet_valve","4095":"flow:ventricle:outlet_valve","4096":"flow:ventricle:outlet_valve","4097":"flow:ventricle:outlet_valve","4098":"flow:ventricle:outlet_valve","4099":"flow:ventricle:outlet_valve","4100":"flow:ventricle:outlet_valve","4101":"flow:ventricle:outlet_valve","4102":"flow:ventricle:outlet_valve","4103":"flow:ventricle:outlet_valve","4104":"flow:ventricle:outlet_valve","4105":"flow:ventricle:outlet_valve","4106":"flow:ventricle:outlet_valve","4107":"flow:ventricle:outlet_valve","4108":"flow:ventricle:outlet_valve","4109":"flow:ventricle:outlet_valve","4110":"flow:ventricle:outlet_valve","4111":"flow:ventricle:outlet_valve","4112":"flow:ventricle:outlet_valve","4113":"flow:ventricle:outlet_valve","4114":"flow:ventricle:outlet_valve","4115":"flow:ventricle:outlet_valve","4116":"flow:ventricle:outlet_valve","4117":"flow:ventricle:outlet_valve","4118":"flow:ventricle:outlet_valve","4119":"flow:ventricle:outlet_valve","4120":"flow:ventricle:outlet_valve","4121":"flow:ventricle:outlet_valve","4122":"flow:ventricle:outlet_valve","4123":"flow:ventricle:outlet_valve","4124":"flow:ventricle:outlet_valve","4125":"flow:ventricle:outlet_valve","4126":"flow:ventricle:outlet_valve","4127":"flow:ventricle:outlet_valve","4128":"flow:ventricle:outlet_valve","4129":"flow:ventricle:outlet_valve","4130":"flow:ventricle:outlet_valve","4131":"flow:ventricle:outlet_valve","4132":"flow:ventricle:outlet_valve","4133":"flow:ventricle:outlet_valve","4134":"flow:ventricle:outlet_valve","4135":"flow:ventricle:outlet_valve","4136":"flow:ventricle:outlet_valve","4137":"flow:ventricle:outlet_valve","4138":"flow:ventricle:outlet_valve","4139":"flow:ventricle:outlet_valve","4140":"flow:ventricle:outlet_valve","4141":"flow:ventricle:outlet_valve","4142":"flow:ventricle:outlet_valve","4143":"flow:ventricle:outlet_valve","4144":"flow:ventricle:outlet_valve","4145":"flow:ventricle:outlet_valve","4146":"flow:ventricle:outlet_valve","4147":"flow:ventricle:outlet_valve","4148":"flow:ventricle:outlet_valve","4149":"flow:ventricle:outlet_valve","4150":"flow:ventricle:outlet_valve","4151":"flow:ventricle:outlet_valve","4152":"flow:ventricle:outlet_valve","4153":"flow:ventricle:outlet_valve","4154":"flow:ventricle:outlet_valve","4155":"flow:ventricle:outlet_valve","4156":"flow:ventricle:outlet_valve","4157":"flow:ventricle:outlet_valve","4158":"flow:ventricle:outlet_valve","4159":"flow:ventricle:outlet_valve","4160":"flow:ventricle:outlet_valve","4161":"flow:ventricle:outlet_valve","4162":"flow:ventricle:outlet_valve","4163":"flow:ventricle:outlet_valve","4164":"flow:ventricle:outlet_valve","4165":"flow:ventricle:outlet_valve","4166":"flow:ventricle:outlet_valve","4167":"flow:ventricle:outlet_valve","4168":"flow:ventricle:outlet_valve","4169":"flow:ventricle:outlet_valve","4170":"flow:ventricle:outlet_valve","4171":"flow:ventricle:outlet_valve","4172":"flow:ventricle:outlet_valve","4173":"flow:ventricle:outlet_valve","4174":"flow:ventricle:outlet_valve","4175":"flow:ventricle:outlet_valve","4176":"flow:ventricle:outlet_valve","4177":"flow:ventricle:outlet_valve","4178":"flow:ventricle:outlet_valve","4179":"flow:ventricle:outlet_valve","4180":"flow:ventricle:outlet_valve","4181":"flow:ventricle:outlet_valve","4182":"flow:ventricle:outlet_valve","4183":"flow:ventricle:outlet_valve","4184":"flow:ventricle:outlet_valve","4185":"flow:ventricle:outlet_valve","4186":"flow:ventricle:outlet_valve","4187":"flow:ventricle:outlet_valve","4188":"flow:ventricle:outlet_valve","4189":"flow:ventricle:outlet_valve","4190":"flow:ventricle:outlet_valve","4191":"flow:ventricle:outlet_valve","4192":"flow:ventricle:outlet_valve","4193":"flow:ventricle:outlet_valve","4194":"flow:ventricle:outlet_valve","4195":"flow:ventricle:outlet_valve","4196":"flow:ventricle:outlet_valve","4197":"flow:ventricle:outlet_valve","4198":"flow:ventricle:outlet_valve","4199":"flow:ventricle:outlet_valve","4200":"flow:ventricle:outlet_valve","4201":"flow:ventricle:outlet_valve","4202":"flow:ventricle:outlet_valve","4203":"flow:ventricle:outlet_valve","4204":"flow:ventricle:outlet_valve","4205":"flow:ventricle:outlet_valve","4206":"flow:ventricle:outlet_valve","4207":"flow:ventricle:outlet_valve","4208":"flow:ventricle:outlet_valve","4209":"flow:ventricle:outlet_valve","4210":"flow:ventricle:outlet_valve","4211":"flow:ventricle:outlet_valve","4212":"flow:ventricle:outlet_valve","4213":"flow:ventricle:outlet_valve","4214":"flow:ventricle:outlet_valve","4215":"flow:ventricle:outlet_valve","4216":"flow:ventricle:outlet_valve","4217":"flow:ventricle:outlet_valve","4218":"flow:ventricle:outlet_valve","4219":"flow:ventricle:outlet_valve","4220":"flow:ventricle:outlet_valve","4221":"flow:ventricle:outlet_valve","4222":"flow:ventricle:outlet_valve","4223":"flow:ventricle:outlet_valve","4224":"flow:ventricle:outlet_valve","4225":"flow:ventricle:outlet_valve","4226":"flow:ventricle:outlet_valve","4227":"flow:ventricle:outlet_valve","4228":"flow:ventricle:outlet_valve","4229":"flow:ventricle:outlet_valve","4230":"flow:ventricle:outlet_valve","4231":"flow:ventricle:outlet_valve","4232":"flow:ventricle:outlet_valve","4233":"flow:ventricle:outlet_valve","4234":"flow:ventricle:outlet_valve","4235":"flow:ventricle:outlet_valve","4236":"flow:ventricle:outlet_valve","4237":"flow:ventricle:outlet_valve","4238":"flow:ventricle:outlet_valve","4239":"flow:ventricle:outlet_valve","4240":"flow:ventricle:outlet_valve","4241":"flow:ventricle:outlet_valve","4242":"flow:ventricle:outlet_valve","4243":"flow:ventricle:outlet_valve","4244":"flow:ventricle:outlet_valve","4245":"flow:ventricle:outlet_valve","4246":"flow:ventricle:outlet_valve","4247":"flow:ventricle:outlet_valve","4248":"flow:ventricle:outlet_valve","4249":"flow:ventricle:outlet_valve","4250":"flow:ventricle:outlet_valve","4251":"flow:ventricle:outlet_valve","4252":"flow:ventricle:outlet_valve","4253":"flow:ventricle:outlet_valve","4254":"flow:ventricle:outlet_valve","4255":"flow:ventricle:outlet_valve","4256":"flow:ventricle:outlet_valve","4257":"flow:ventricle:outlet_valve","4258":"flow:ventricle:outlet_valve","4259":"flow:ventricle:outlet_valve","4260":"flow:ventricle:outlet_valve","4261":"flow:ventricle:outlet_valve","4262":"flow:ventricle:outlet_valve","4263":"flow:ventricle:outlet_valve","4264":"flow:ventricle:outlet_valve","4265":"flow:ventricle:outlet_valve","4266":"flow:ventricle:outlet_valve","4267":"flow:ventricle:outlet_valve","4268":"flow:ventricle:outlet_valve","4269":"flow:ventricle:outlet_valve","4270":"flow:ventricle:outlet_valve","4271":"flow:ventricle:outlet_valve","4272":"flow:ventricle:outlet_valve","4273":"flow:ventricle:outlet_valve","4274":"flow:ventricle:outlet_valve","4275":"flow:ventricle:outlet_valve","4276":"flow:ventricle:outlet_valve","4277":"flow:ventricle:outlet_valve","4278":"flow:ventricle:outlet_valve","4279":"flow:ventricle:outlet_valve","4280":"flow:ventricle:outlet_valve","4281":"flow:ventricle:outlet_valve","4282":"flow:ventricle:outlet_valve","4283":"flow:ventricle:outlet_valve","4284":"flow:ventricle:outlet_valve","4285":"flow:ventricle:outlet_valve","4286":"flow:ventricle:outlet_valve","4287":"flow:ventricle:outlet_valve","4288":"flow:ventricle:outlet_valve","4289":"flow:ventricle:outlet_valve","4290":"flow:ventricle:outlet_valve","4291":"flow:ventricle:outlet_valve","4292":"flow:ventricle:outlet_valve","4293":"flow:ventricle:outlet_valve","4294":"flow:ventricle:outlet_valve","4295":"flow:ventricle:outlet_valve","4296":"flow:ventricle:outlet_valve","4297":"flow:ventricle:outlet_valve","4298":"flow:ventricle:outlet_valve","4299":"flow:ventricle:outlet_valve","4300":"flow:ventricle:outlet_valve","4301":"flow:ventricle:outlet_valve","4302":"flow:ventricle:outlet_valve","4303":"flow:ventricle:outlet_valve","4304":"flow:ventricle:outlet_valve","4305":"flow:ventricle:outlet_valve","4306":"flow:ventricle:outlet_valve","4307":"flow:ventricle:outlet_valve","4308":"flow:ventricle:outlet_valve","4309":"flow:ventricle:outlet_valve","4310":"flow:ventricle:outlet_valve","4311":"flow:ventricle:outlet_valve","4312":"flow:ventricle:outlet_valve","4313":"flow:ventricle:outlet_valve","4314":"flow:ventricle:outlet_valve","4315":"flow:ventricle:outlet_valve","4316":"flow:ventricle:outlet_valve","4317":"flow:ventricle:outlet_valve","4318":"flow:ventricle:outlet_valve","4319":"flow:ventricle:outlet_valve","4320":"flow:ventricle:outlet_valve","4321":"flow:ventricle:outlet_valve","4322":"flow:ventricle:outlet_valve","4323":"flow:ventricle:outlet_valve","4324":"flow:ventricle:outlet_valve","4325":"flow:ventricle:outlet_valve","4326":"flow:ventricle:outlet_valve","4327":"flow:ventricle:outlet_valve","4328":"flow:ventricle:outlet_valve","4329":"flow:ventricle:outlet_valve","4330":"flow:ventricle:outlet_valve","4331":"flow:ventricle:outlet_valve","4332":"flow:ventricle:outlet_valve","4333":"flow:ventricle:outlet_valve","4334":"flow:ventricle:outlet_valve","4335":"flow:ventricle:outlet_valve","4336":"flow:ventricle:outlet_valve","4337":"flow:ventricle:outlet_valve","4338":"flow:ventricle:outlet_valve","4339":"flow:ventricle:outlet_valve","4340":"flow:ventricle:outlet_valve","4341":"flow:ventricle:outlet_valve","4342":"flow:ventricle:outlet_valve","4343":"flow:ventricle:outlet_valve","4344":"flow:ventricle:outlet_valve","4345":"flow:ventricle:outlet_valve","4346":"flow:ventricle:outlet_valve","4347":"flow:ventricle:outlet_valve","4348":"flow:ventricle:outlet_valve","4349":"flow:ventricle:outlet_valve","4350":"flow:ventricle:outlet_valve","4351":"flow:ventricle:outlet_valve","4352":"flow:ventricle:outlet_valve","4353":"flow:ventricle:outlet_valve","4354":"flow:ventricle:outlet_valve","4355":"flow:ventricle:outlet_valve","4356":"flow:ventricle:outlet_valve","4357":"flow:ventricle:outlet_valve","4358":"flow:ventricle:outlet_valve","4359":"flow:ventricle:outlet_valve","4360":"flow:ventricle:outlet_valve","4361":"flow:ventricle:outlet_valve","4362":"flow:ventricle:outlet_valve","4363":"flow:ventricle:outlet_valve","4364":"flow:ventricle:outlet_valve","4365":"flow:ventricle:outlet_valve","4366":"flow:ventricle:outlet_valve","4367":"flow:ventricle:outlet_valve","4368":"flow:ventricle:outlet_valve","4369":"flow:ventricle:outlet_valve","4370":"flow:ventricle:outlet_valve","4371":"flow:ventricle:outlet_valve","4372":"flow:ventricle:outlet_valve","4373":"flow:ventricle:outlet_valve","4374":"flow:ventricle:outlet_valve","4375":"flow:ventricle:outlet_valve","4376":"flow:ventricle:outlet_valve","4377":"flow:ventricle:outlet_valve","4378":"flow:ventricle:outlet_valve","4379":"flow:ventricle:outlet_valve","4380":"flow:ventricle:outlet_valve","4381":"flow:ventricle:outlet_valve","4382":"flow:ventricle:outlet_valve","4383":"flow:ventricle:outlet_valve","4384":"flow:ventricle:outlet_valve","4385":"flow:ventricle:outlet_valve","4386":"flow:ventricle:outlet_valve","4387":"flow:ventricle:outlet_valve","4388":"flow:ventricle:outlet_valve","4389":"flow:ventricle:outlet_valve","4390":"flow:ventricle:outlet_valve","4391":"flow:ventricle:outlet_valve","4392":"flow:ventricle:outlet_valve","4393":"flow:ventricle:outlet_valve","4394":"flow:ventricle:outlet_valve","4395":"flow:ventricle:outlet_valve","4396":"flow:ventricle:outlet_valve","4397":"flow:ventricle:outlet_valve","4398":"flow:ventricle:outlet_valve","4399":"flow:ventricle:outlet_valve","4400":"flow:ventricle:outlet_valve","4401":"flow:ventricle:outlet_valve","4402":"flow:ventricle:outlet_valve","4403":"flow:ventricle:outlet_valve","4404":"flow:ventricle:outlet_valve","4405":"flow:ventricle:outlet_valve","4406":"flow:ventricle:outlet_valve","4407":"flow:ventricle:outlet_valve","4408":"flow:ventricle:outlet_valve","4409":"flow:ventricle:outlet_valve","4410":"flow:ventricle:outlet_valve","4411":"flow:ventricle:outlet_valve","4412":"flow:ventricle:outlet_valve","4413":"flow:ventricle:outlet_valve","4414":"flow:ventricle:outlet_valve","4415":"flow:ventricle:outlet_valve","4416":"flow:ventricle:outlet_valve","4417":"flow:ventricle:outlet_valve","4418":"flow:ventricle:outlet_valve","4419":"flow:ventricle:outlet_valve","4420":"flow:ventricle:outlet_valve","4421":"flow:ventricle:outlet_valve","4422":"flow:ventricle:outlet_valve","4423":"flow:ventricle:outlet_valve","4424":"flow:ventricle:outlet_valve","4425":"flow:ventricle:outlet_valve","4426":"flow:ventricle:outlet_valve","4427":"flow:ventricle:outlet_valve","4428":"flow:ventricle:outlet_valve","4429":"flow:ventricle:outlet_valve","4430":"flow:ventricle:outlet_valve","4431":"flow:ventricle:outlet_valve","4432":"flow:ventricle:outlet_valve","4433":"flow:ventricle:outlet_valve","4434":"flow:ventricle:outlet_valve","4435":"flow:ventricle:outlet_valve","4436":"flow:ventricle:outlet_valve","4437":"flow:ventricle:outlet_valve","4438":"flow:ventricle:outlet_valve","4439":"flow:ventricle:outlet_valve","4440":"flow:ventricle:outlet_valve","4441":"flow:ventricle:outlet_valve","4442":"flow:ventricle:outlet_valve","4443":"flow:ventricle:outlet_valve","4444":"flow:ventricle:outlet_valve","4445":"flow:ventricle:outlet_valve","4446":"flow:ventricle:outlet_valve","4447":"flow:ventricle:outlet_valve","4448":"flow:ventricle:outlet_valve","4449":"flow:ventricle:outlet_valve","4450":"flow:ventricle:outlet_valve","4451":"flow:ventricle:outlet_valve","4452":"flow:ventricle:outlet_valve","4453":"flow:ventricle:outlet_valve","4454":"flow:ventricle:outlet_valve","4455":"flow:ventricle:outlet_valve","4456":"flow:ventricle:outlet_valve","4457":"flow:ventricle:outlet_valve","4458":"flow:ventricle:outlet_valve","4459":"flow:ventricle:outlet_valve","4460":"flow:ventricle:outlet_valve","4461":"flow:ventricle:outlet_valve","4462":"flow:ventricle:outlet_valve","4463":"flow:ventricle:outlet_valve","4464":"flow:ventricle:outlet_valve","4465":"flow:ventricle:outlet_valve","4466":"flow:ventricle:outlet_valve","4467":"flow:ventricle:outlet_valve","4468":"flow:ventricle:outlet_valve","4469":"flow:ventricle:outlet_valve","4470":"flow:ventricle:outlet_valve","4471":"flow:ventricle:outlet_valve","4472":"flow:ventricle:outlet_valve","4473":"flow:ventricle:outlet_valve","4474":"flow:ventricle:outlet_valve","4475":"flow:ventricle:outlet_valve","4476":"flow:ventricle:outlet_valve","4477":"flow:ventricle:outlet_valve","4478":"flow:ventricle:outlet_valve","4479":"flow:ventricle:outlet_valve","4480":"flow:ventricle:outlet_valve","4481":"flow:ventricle:outlet_valve","4482":"flow:ventricle:outlet_valve","4483":"flow:ventricle:outlet_valve","4484":"flow:ventricle:outlet_valve","4485":"flow:ventricle:outlet_valve","4486":"flow:ventricle:outlet_valve","4487":"flow:ventricle:outlet_valve","4488":"flow:ventricle:outlet_valve","4489":"flow:ventricle:outlet_valve","4490":"flow:ventricle:outlet_valve","4491":"flow:ventricle:outlet_valve","4492":"flow:ventricle:outlet_valve","4493":"flow:ventricle:outlet_valve","4494":"flow:ventricle:outlet_valve","4495":"flow:ventricle:outlet_valve","4496":"flow:ventricle:outlet_valve","4497":"flow:ventricle:outlet_valve","4498":"flow:ventricle:outlet_valve","4499":"flow:ventricle:outlet_valve","4500":"pressure:ventricle:outlet_valve","4501":"pressure:ventricle:outlet_valve","4502":"pressure:ventricle:outlet_valve","4503":"pressure:ventricle:outlet_valve","4504":"pressure:ventricle:outlet_valve","4505":"pressure:ventricle:outlet_valve","4506":"pressure:ventricle:outlet_valve","4507":"pressure:ventricle:outlet_valve","4508":"pressure:ventricle:outlet_valve","4509":"pressure:ventricle:outlet_valve","4510":"pressure:ventricle:outlet_valve","4511":"pressure:ventricle:outlet_valve","4512":"pressure:ventricle:outlet_valve","4513":"pressure:ventricle:outlet_valve","4514":"pressure:ventricle:outlet_valve","4515":"pressure:ventricle:outlet_valve","4516":"pressure:ventricle:outlet_valve","4517":"pressure:ventricle:outlet_valve","4518":"pressure:ventricle:outlet_valve","4519":"pressure:ventricle:outlet_valve","4520":"pressure:ventricle:outlet_valve","4521":"pressure:ventricle:outlet_valve","4522":"pressure:ventricle:outlet_valve","4523":"pressure:ventricle:outlet_valve","4524":"pressure:ventricle:outlet_valve","4525":"pressure:ventricle:outlet_valve","4526":"pressure:ventricle:outlet_valve","4527":"pressure:ventricle:outlet_valve","4528":"pressure:ventricle:outlet_valve","4529":"pressure:ventricle:outlet_valve","4530":"pressure:ventricle:outlet_valve","4531":"pressure:ventricle:outlet_valve","4532":"pressure:ventricle:outlet_valve","4533":"pressure:ventricle:outlet_valve","4534":"pressure:ventricle:outlet_valve","4535":"pressure:ventricle:outlet_valve","4536":"pressure:ventricle:outlet_valve","4537":"pressure:ventricle:outlet_valve","4538":"pressure:ventricle:outlet_valve","4539":"pressure:ventricle:outlet_valve","4540":"pressure:ventricle:outlet_valve","4541":"pressure:ventricle:outlet_valve","4542":"pressure:ventricle:outlet_valve","4543":"pressure:ventricle:outlet_valve","4544":"pressure:ventricle:outlet_valve","4545":"pressure:ventricle:outlet_valve","4546":"pressure:ventricle:outlet_valve","4547":"pressure:ventricle:outlet_valve","4548":"pressure:ventricle:outlet_valve","4549":"pressure:ventricle:outlet_valve","4550":"pressure:ventricle:outlet_valve","4551":"pressure:ventricle:outlet_valve","4552":"pressure:ventricle:outlet_valve","4553":"pressure:ventricle:outlet_valve","4554":"pressure:ventricle:outlet_valve","4555":"pressure:ventricle:outlet_valve","4556":"pressure:ventricle:outlet_valve","4557":"pressure:ventricle:outlet_valve","4558":"pressure:ventricle:outlet_valve","4559":"pressure:ventricle:outlet_valve","4560":"pressure:ventricle:outlet_valve","4561":"pressure:ventricle:outlet_valve","4562":"pressure:ventricle:outlet_valve","4563":"pressure:ventricle:outlet_valve","4564":"pressure:ventricle:outlet_valve","4565":"pressure:ventricle:outlet_valve","4566":"pressure:ventricle:outlet_valve","4567":"pressure:ventricle:outlet_valve","4568":"pressure:ventricle:outlet_valve","4569":"pressure:ventricle:outlet_valve","4570":"pressure:ventricle:outlet_valve","4571":"pressure:ventricle:outlet_valve","4572":"pressure:ventricle:outlet_valve","4573":"pressure:ventricle:outlet_valve","4574":"pressure:ventricle:outlet_valve","4575":"pressure:ventricle:outlet_valve","4576":"pressure:ventricle:outlet_valve","4577":"pressure:ventricle:outlet_valve","4578":"pressure:ventricle:outlet_valve","4579":"pressure:ventricle:outlet_valve","4580":"pressure:ventricle:outlet_valve","4581":"pressure:ventricle:outlet_valve","4582":"pressure:ventricle:outlet_valve","4583":"pressure:ventricle:outlet_valve","4584":"pressure:ventricle:outlet_valve","4585":"pressure:ventricle:outlet_valve","4586":"pressure:ventricle:outlet_valve","4587":"pressure:ventricle:outlet_valve","4588":"pressure:ventricle:outlet_valve","4589":"pressure:ventricle:outlet_valve","4590":"pressure:ventricle:outlet_valve","4591":"pressure:ventricle:outlet_valve","4592":"pressure:ventricle:outlet_valve","4593":"pressure:ventricle:outlet_valve","4594":"pressure:ventricle:outlet_valve","4595":"pressure:ventricle:outlet_valve","4596":"pressure:ventricle:outlet_valve","4597":"pressure:ventricle:outlet_valve","4598":"pressure:ventricle:outlet_valve","4599":"pressure:ventricle:outlet_valve","4600":"pressure:ventricle:outlet_valve","4601":"pressure:ventricle:outlet_valve","4602":"pressure:ventricle:outlet_valve","4603":"pressure:ventricle:outlet_valve","4604":"pressure:ventricle:outlet_valve","4605":"pressure:ventricle:outlet_valve","4606":"pressure:ventricle:outlet_valve","4607":"pressure:ventricle:outlet_valve","4608":"pressure:ventricle:outlet_valve","4609":"pressure:ventricle:outlet_valve","4610":"pressure:ventricle:outlet_valve","4611":"pressure:ventricle:outlet_valve","4612":"pressure:ventricle:outlet_valve","4613":"pressure:ventricle:outlet_valve","4614":"pressure:ventricle:outlet_valve","4615":"pressure:ventricle:outlet_valve","4616":"pressure:ventricle:outlet_valve","4617":"pressure:ventricle:outlet_valve","4618":"pressure:ventricle:outlet_valve","4619":"pressure:ventricle:outlet_valve","4620":"pressure:ventricle:outlet_valve","4621":"pressure:ventricle:outlet_valve","4622":"pressure:ventricle:outlet_valve","4623":"pressure:ventricle:outlet_valve","4624":"pressure:ventricle:outlet_valve","4625":"pressure:ventricle:outlet_valve","4626":"pressure:ventricle:outlet_valve","4627":"pressure:ventricle:outlet_valve","4628":"pressure:ventricle:outlet_valve","4629":"pressure:ventricle:outlet_valve","4630":"pressure:ventricle:outlet_valve","4631":"pressure:ventricle:outlet_valve","4632":"pressure:ventricle:outlet_valve","4633":"pressure:ventricle:outlet_valve","4634":"pressure:ventricle:outlet_valve","4635":"pressure:ventricle:outlet_valve","4636":"pressure:ventricle:outlet_valve","4637":"pressure:ventricle:outlet_valve","4638":"pressure:ventricle:outlet_valve","4639":"pressure:ventricle:outlet_valve","4640":"pressure:ventricle:outlet_valve","4641":"pressure:ventricle:outlet_valve","4642":"pressure:ventricle:outlet_valve","4643":"pressure:ventricle:outlet_valve","4644":"pressure:ventricle:outlet_valve","4645":"pressure:ventricle:outlet_valve","4646":"pressure:ventricle:outlet_valve","4647":"pressure:ventricle:outlet_valve","4648":"pressure:ventricle:outlet_valve","4649":"pressure:ventricle:outlet_valve","4650":"pressure:ventricle:outlet_valve","4651":"pressure:ventricle:outlet_valve","4652":"pressure:ventricle:outlet_valve","4653":"pressure:ventricle:outlet_valve","4654":"pressure:ventricle:outlet_valve","4655":"pressure:ventricle:outlet_valve","4656":"pressure:ventricle:outlet_valve","4657":"pressure:ventricle:outlet_valve","4658":"pressure:ventricle:outlet_valve","4659":"pressure:ventricle:outlet_valve","4660":"pressure:ventricle:outlet_valve","4661":"pressure:ventricle:outlet_valve","4662":"pressure:ventricle:outlet_valve","4663":"pressure:ventricle:outlet_valve","4664":"pressure:ventricle:outlet_valve","4665":"pressure:ventricle:outlet_valve","4666":"pressure:ventricle:outlet_valve","4667":"pressure:ventricle:outlet_valve","4668":"pressure:ventricle:outlet_valve","4669":"pressure:ventricle:outlet_valve","4670":"pressure:ventricle:outlet_valve","4671":"pressure:ventricle:outlet_valve","4672":"pressure:ventricle:outlet_valve","4673":"pressure:ventricle:outlet_valve","4674":"pressure:ventricle:outlet_valve","4675":"pressure:ventricle:outlet_valve","4676":"pressure:ventricle:outlet_valve","4677":"pressure:ventricle:outlet_valve","4678":"pressure:ventricle:outlet_valve","4679":"pressure:ventricle:outlet_valve","4680":"pressure:ventricle:outlet_valve","4681":"pressure:ventricle:outlet_valve","4682":"pressure:ventricle:outlet_valve","4683":"pressure:ventricle:outlet_valve","4684":"pressure:ventricle:outlet_valve","4685":"pressure:ventricle:outlet_valve","4686":"pressure:ventricle:outlet_valve","4687":"pressure:ventricle:outlet_valve","4688":"pressure:ventricle:outlet_valve","4689":"pressure:ventricle:outlet_valve","4690":"pressure:ventricle:outlet_valve","4691":"pressure:ventricle:outlet_valve","4692":"pressure:ventricle:outlet_valve","4693":"pressure:ventricle:outlet_valve","4694":"pressure:ventricle:outlet_valve","4695":"pressure:ventricle:outlet_valve","4696":"pressure:ventricle:outlet_valve","4697":"pressure:ventricle:outlet_valve","4698":"pressure:ventricle:outlet_valve","4699":"pressure:ventricle:outlet_valve","4700":"pressure:ventricle:outlet_valve","4701":"pressure:ventricle:outlet_valve","4702":"pressure:ventricle:outlet_valve","4703":"pressure:ventricle:outlet_valve","4704":"pressure:ventricle:outlet_valve","4705":"pressure:ventricle:outlet_valve","4706":"pressure:ventricle:outlet_valve","4707":"pressure:ventricle:outlet_valve","4708":"pressure:ventricle:outlet_valve","4709":"pressure:ventricle:outlet_valve","4710":"pressure:ventricle:outlet_valve","4711":"pressure:ventricle:outlet_valve","4712":"pressure:ventricle:outlet_valve","4713":"pressure:ventricle:outlet_valve","4714":"pressure:ventricle:outlet_valve","4715":"pressure:ventricle:outlet_valve","4716":"pressure:ventricle:outlet_valve","4717":"pressure:ventricle:outlet_valve","4718":"pressure:ventricle:outlet_valve","4719":"pressure:ventricle:outlet_valve","4720":"pressure:ventricle:outlet_valve","4721":"pressure:ventricle:outlet_valve","4722":"pressure:ventricle:outlet_valve","4723":"pressure:ventricle:outlet_valve","4724":"pressure:ventricle:outlet_valve","4725":"pressure:ventricle:outlet_valve","4726":"pressure:ventricle:outlet_valve","4727":"pressure:ventricle:outlet_valve","4728":"pressure:ventricle:outlet_valve","4729":"pressure:ventricle:outlet_valve","4730":"pressure:ventricle:outlet_valve","4731":"pressure:ventricle:outlet_valve","4732":"pressure:ventricle:outlet_valve","4733":"pressure:ventricle:outlet_valve","4734":"pressure:ventricle:outlet_valve","4735":"pressure:ventricle:outlet_valve","4736":"pressure:ventricle:outlet_valve","4737":"pressure:ventricle:outlet_valve","4738":"pressure:ventricle:outlet_valve","4739":"pressure:ventricle:outlet_valve","4740":"pressure:ventricle:outlet_valve","4741":"pressure:ventricle:outlet_valve","4742":"pressure:ventricle:outlet_valve","4743":"pressure:ventricle:outlet_valve","4744":"pressure:ventricle:outlet_valve","4745":"pressure:ventricle:outlet_valve","4746":"pressure:ventricle:outlet_valve","4747":"pressure:ventricle:outlet_valve","4748":"pressure:ventricle:outlet_valve","4749":"pressure:ventricle:outlet_valve","4750":"pressure:ventricle:outlet_valve","4751":"pressure:ventricle:outlet_valve","4752":"pressure:ventricle:outlet_valve","4753":"pressure:ventricle:outlet_valve","4754":"pressure:ventricle:outlet_valve","4755":"pressure:ventricle:outlet_valve","4756":"pressure:ventricle:outlet_valve","4757":"pressure:ventricle:outlet_valve","4758":"pressure:ventricle:outlet_valve","4759":"pressure:ventricle:outlet_valve","4760":"pressure:ventricle:outlet_valve","4761":"pressure:ventricle:outlet_valve","4762":"pressure:ventricle:outlet_valve","4763":"pressure:ventricle:outlet_valve","4764":"pressure:ventricle:outlet_valve","4765":"pressure:ventricle:outlet_valve","4766":"pressure:ventricle:outlet_valve","4767":"pressure:ventricle:outlet_valve","4768":"pressure:ventricle:outlet_valve","4769":"pressure:ventricle:outlet_valve","4770":"pressure:ventricle:outlet_valve","4771":"pressure:ventricle:outlet_valve","4772":"pressure:ventricle:outlet_valve","4773":"pressure:ventricle:outlet_valve","4774":"pressure:ventricle:outlet_valve","4775":"pressure:ventricle:outlet_valve","4776":"pressure:ventricle:outlet_valve","4777":"pressure:ventricle:outlet_valve","4778":"pressure:ventricle:outlet_valve","4779":"pressure:ventricle:outlet_valve","4780":"pressure:ventricle:outlet_valve","4781":"pressure:ventricle:outlet_valve","4782":"pressure:ventricle:outlet_valve","4783":"pressure:ventricle:outlet_valve","4784":"pressure:ventricle:outlet_valve","4785":"pressure:ventricle:outlet_valve","4786":"pressure:ventricle:outlet_valve","4787":"pressure:ventricle:outlet_valve","4788":"pressure:ventricle:outlet_valve","4789":"pressure:ventricle:outlet_valve","4790":"pressure:ventricle:outlet_valve","4791":"pressure:ventricle:outlet_valve","4792":"pressure:ventricle:outlet_valve","4793":"pressure:ventricle:outlet_valve","4794":"pressure:ventricle:outlet_valve","4795":"pressure:ventricle:outlet_valve","4796":"pressure:ventricle:outlet_valve","4797":"pressure:ventricle:outlet_valve","4798":"pressure:ventricle:outlet_valve","4799":"pressure:ventricle:outlet_valve","4800":"pressure:ventricle:outlet_valve","4801":"pressure:ventricle:outlet_valve","4802":"pressure:ventricle:outlet_valve","4803":"pressure:ventricle:outlet_valve","4804":"pressure:ventricle:outlet_valve","4805":"pressure:ventricle:outlet_valve","4806":"pressure:ventricle:outlet_valve","4807":"pressure:ventricle:outlet_valve","4808":"pressure:ventricle:outlet_valve","4809":"pressure:ventricle:outlet_valve","4810":"pressure:ventricle:outlet_valve","4811":"pressure:ventricle:outlet_valve","4812":"pressure:ventricle:outlet_valve","4813":"pressure:ventricle:outlet_valve","4814":"pressure:ventricle:outlet_valve","4815":"pressure:ventricle:outlet_valve","4816":"pressure:ventricle:outlet_valve","4817":"pressure:ventricle:outlet_valve","4818":"pressure:ventricle:outlet_valve","4819":"pressure:ventricle:outlet_valve","4820":"pressure:ventricle:outlet_valve","4821":"pressure:ventricle:outlet_valve","4822":"pressure:ventricle:outlet_valve","4823":"pressure:ventricle:outlet_valve","4824":"pressure:ventricle:outlet_valve","4825":"pressure:ventricle:outlet_valve","4826":"pressure:ventricle:outlet_valve","4827":"pressure:ventricle:outlet_valve","4828":"pressure:ventricle:outlet_valve","4829":"pressure:ventricle:outlet_valve","4830":"pressure:ventricle:outlet_valve","4831":"pressure:ventricle:outlet_valve","4832":"pressure:ventricle:outlet_valve","4833":"pressure:ventricle:outlet_valve","4834":"pressure:ventricle:outlet_valve","4835":"pressure:ventricle:outlet_valve","4836":"pressure:ventricle:outlet_valve","4837":"pressure:ventricle:outlet_valve","4838":"pressure:ventricle:outlet_valve","4839":"pressure:ventricle:outlet_valve","4840":"pressure:ventricle:outlet_valve","4841":"pressure:ventricle:outlet_valve","4842":"pressure:ventricle:outlet_valve","4843":"pressure:ventricle:outlet_valve","4844":"pressure:ventricle:outlet_valve","4845":"pressure:ventricle:outlet_valve","4846":"pressure:ventricle:outlet_valve","4847":"pressure:ventricle:outlet_valve","4848":"pressure:ventricle:outlet_valve","4849":"pressure:ventricle:outlet_valve","4850":"pressure:ventricle:outlet_valve","4851":"pressure:ventricle:outlet_valve","4852":"pressure:ventricle:outlet_valve","4853":"pressure:ventricle:outlet_valve","4854":"pressure:ventricle:outlet_valve","4855":"pressure:ventricle:outlet_valve","4856":"pressure:ventricle:outlet_valve","4857":"pressure:ventricle:outlet_valve","4858":"pressure:ventricle:outlet_valve","4859":"pressure:ventricle:outlet_valve","4860":"pressure:ventricle:outlet_valve","4861":"pressure:ventricle:outlet_valve","4862":"pressure:ventricle:outlet_valve","4863":"pressure:ventricle:outlet_valve","4864":"pressure:ventricle:outlet_valve","4865":"pressure:ventricle:outlet_valve","4866":"pressure:ventricle:outlet_valve","4867":"pressure:ventricle:outlet_valve","4868":"pressure:ventricle:outlet_valve","4869":"pressure:ventricle:outlet_valve","4870":"pressure:ventricle:outlet_valve","4871":"pressure:ventricle:outlet_valve","4872":"pressure:ventricle:outlet_valve","4873":"pressure:ventricle:outlet_valve","4874":"pressure:ventricle:outlet_valve","4875":"pressure:ventricle:outlet_valve","4876":"pressure:ventricle:outlet_valve","4877":"pressure:ventricle:outlet_valve","4878":"pressure:ventricle:outlet_valve","4879":"pressure:ventricle:outlet_valve","4880":"pressure:ventricle:outlet_valve","4881":"pressure:ventricle:outlet_valve","4882":"pressure:ventricle:outlet_valve","4883":"pressure:ventricle:outlet_valve","4884":"pressure:ventricle:outlet_valve","4885":"pressure:ventricle:outlet_valve","4886":"pressure:ventricle:outlet_valve","4887":"pressure:ventricle:outlet_valve","4888":"pressure:ventricle:outlet_valve","4889":"pressure:ventricle:outlet_valve","4890":"pressure:ventricle:outlet_valve","4891":"pressure:ventricle:outlet_valve","4892":"pressure:ventricle:outlet_valve","4893":"pressure:ventricle:outlet_valve","4894":"pressure:ventricle:outlet_valve","4895":"pressure:ventricle:outlet_valve","4896":"pressure:ventricle:outlet_valve","4897":"pressure:ventricle:outlet_valve","4898":"pressure:ventricle:outlet_valve","4899":"pressure:ventricle:outlet_valve","4900":"pressure:ventricle:outlet_valve","4901":"pressure:ventricle:outlet_valve","4902":"pressure:ventricle:outlet_valve","4903":"pressure:ventricle:outlet_valve","4904":"pressure:ventricle:outlet_valve","4905":"pressure:ventricle:outlet_valve","4906":"pressure:ventricle:outlet_valve","4907":"pressure:ventricle:outlet_valve","4908":"pressure:ventricle:outlet_valve","4909":"pressure:ventricle:outlet_valve","4910":"pressure:ventricle:outlet_valve","4911":"pressure:ventricle:outlet_valve","4912":"pressure:ventricle:outlet_valve","4913":"pressure:ventricle:outlet_valve","4914":"pressure:ventricle:outlet_valve","4915":"pressure:ventricle:outlet_valve","4916":"pressure:ventricle:outlet_valve","4917":"pressure:ventricle:outlet_valve","4918":"pressure:ventricle:outlet_valve","4919":"pressure:ventricle:outlet_valve","4920":"pressure:ventricle:outlet_valve","4921":"pressure:ventricle:outlet_valve","4922":"pressure:ventricle:outlet_valve","4923":"pressure:ventricle:outlet_valve","4924":"pressure:ventricle:outlet_valve","4925":"pressure:ventricle:outlet_valve","4926":"pressure:ventricle:outlet_valve","4927":"pressure:ventricle:outlet_valve","4928":"pressure:ventricle:outlet_valve","4929":"pressure:ventricle:outlet_valve","4930":"pressure:ventricle:outlet_valve","4931":"pressure:ventricle:outlet_valve","4932":"pressure:ventricle:outlet_valve","4933":"pressure:ventricle:outlet_valve","4934":"pressure:ventricle:outlet_valve","4935":"pressure:ventricle:outlet_valve","4936":"pressure:ventricle:outlet_valve","4937":"pressure:ventricle:outlet_valve","4938":"pressure:ventricle:outlet_valve","4939":"pressure:ventricle:outlet_valve","4940":"pressure:ventricle:outlet_valve","4941":"pressure:ventricle:outlet_valve","4942":"pressure:ventricle:outlet_valve","4943":"pressure:ventricle:outlet_valve","4944":"pressure:ventricle:outlet_valve","4945":"pressure:ventricle:outlet_valve","4946":"pressure:ventricle:outlet_valve","4947":"pressure:ventricle:outlet_valve","4948":"pressure:ventricle:outlet_valve","4949":"pressure:ventricle:outlet_valve","4950":"pressure:ventricle:outlet_valve","4951":"pressure:ventricle:outlet_valve","4952":"pressure:ventricle:outlet_valve","4953":"pressure:ventricle:outlet_valve","4954":"pressure:ventricle:outlet_valve","4955":"pressure:ventricle:outlet_valve","4956":"pressure:ventricle:outlet_valve","4957":"pressure:ventricle:outlet_valve","4958":"pressure:ventricle:outlet_valve","4959":"pressure:ventricle:outlet_valve","4960":"pressure:ventricle:outlet_valve","4961":"pressure:ventricle:outlet_valve","4962":"pressure:ventricle:outlet_valve","4963":"pressure:ventricle:outlet_valve","4964":"pressure:ventricle:outlet_valve","4965":"pressure:ventricle:outlet_valve","4966":"pressure:ventricle:outlet_valve","4967":"pressure:ventricle:outlet_valve","4968":"pressure:ventricle:outlet_valve","4969":"pressure:ventricle:outlet_valve","4970":"pressure:ventricle:outlet_valve","4971":"pressure:ventricle:outlet_valve","4972":"pressure:ventricle:outlet_valve","4973":"pressure:ventricle:outlet_valve","4974":"pressure:ventricle:outlet_valve","4975":"pressure:ventricle:outlet_valve","4976":"pressure:ventricle:outlet_valve","4977":"pressure:ventricle:outlet_valve","4978":"pressure:ventricle:outlet_valve","4979":"pressure:ventricle:outlet_valve","4980":"pressure:ventricle:outlet_valve","4981":"pressure:ventricle:outlet_valve","4982":"pressure:ventricle:outlet_valve","4983":"pressure:ventricle:outlet_valve","4984":"pressure:ventricle:outlet_valve","4985":"pressure:ventricle:outlet_valve","4986":"pressure:ventricle:outlet_valve","4987":"pressure:ventricle:outlet_valve","4988":"pressure:ventricle:outlet_valve","4989":"pressure:ventricle:outlet_valve","4990":"pressure:ventricle:outlet_valve","4991":"pressure:ventricle:outlet_valve","4992":"pressure:ventricle:outlet_valve","4993":"pressure:ventricle:outlet_valve","4994":"pressure:ventricle:outlet_valve","4995":"pressure:ventricle:outlet_valve","4996":"pressure:ventricle:outlet_valve","4997":"pressure:ventricle:outlet_valve","4998":"pressure:ventricle:outlet_valve","4999":"pressure:ventricle:outlet_valve","5000":"flow:outlet_valve:downstream_vessel","5001":"flow:outlet_valve:downstream_vessel","5002":"flow:outlet_valve:downstream_vessel","5003":"flow:outlet_valve:downstream_vessel","5004":"flow:outlet_valve:downstream_vessel","5005":"flow:outlet_valve:downstream_vessel","5006":"flow:outlet_valve:downstream_vessel","5007":"flow:outlet_valve:downstream_vessel","5008":"flow:outlet_valve:downstream_vessel","5009":"flow:outlet_valve:downstream_vessel","5010":"flow:outlet_valve:downstream_vessel","5011":"flow:outlet_valve:downstream_vessel","5012":"flow:outlet_valve:downstream_vessel","5013":"flow:outlet_valve:downstream_vessel","5014":"flow:outlet_valve:downstream_vessel","5015":"flow:outlet_valve:downstream_vessel","5016":"flow:outlet_valve:downstream_vessel","5017":"flow:outlet_valve:downstream_vessel","5018":"flow:outlet_valve:downstream_vessel","5019":"flow:outlet_valve:downstream_vessel","5020":"flow:outlet_valve:downstream_vessel","5021":"flow:outlet_valve:downstream_vessel","5022":"flow:outlet_valve:downstream_vessel","5023":"flow:outlet_valve:downstream_vessel","5024":"flow:outlet_valve:downstream_vessel","5025":"flow:outlet_valve:downstream_vessel","5026":"flow:outlet_valve:downstream_vessel","5027":"flow:outlet_valve:downstream_vessel","5028":"flow:outlet_valve:downstream_vessel","5029":"flow:outlet_valve:downstream_vessel","5030":"flow:outlet_valve:downstream_vessel","5031":"flow:outlet_valve:downstream_vessel","5032":"flow:outlet_valve:downstream_vessel","5033":"flow:outlet_valve:downstream_vessel","5034":"flow:outlet_valve:downstream_vessel","5035":"flow:outlet_valve:downstream_vessel","5036":"flow:outlet_valve:downstream_vessel","5037":"flow:outlet_valve:downstream_vessel","5038":"flow:outlet_valve:downstream_vessel","5039":"flow:outlet_valve:downstream_vessel","5040":"flow:outlet_valve:downstream_vessel","5041":"flow:outlet_valve:downstream_vessel","5042":"flow:outlet_valve:downstream_vessel","5043":"flow:outlet_valve:downstream_vessel","5044":"flow:outlet_valve:downstream_vessel","5045":"flow:outlet_valve:downstream_vessel","5046":"flow:outlet_valve:downstream_vessel","5047":"flow:outlet_valve:downstream_vessel","5048":"flow:outlet_valve:downstream_vessel","5049":"flow:outlet_valve:downstream_vessel","5050":"flow:outlet_valve:downstream_vessel","5051":"flow:outlet_valve:downstream_vessel","5052":"flow:outlet_valve:downstream_vessel","5053":"flow:outlet_valve:downstream_vessel","5054":"flow:outlet_valve:downstream_vessel","5055":"flow:outlet_valve:downstream_vessel","5056":"flow:outlet_valve:downstream_vessel","5057":"flow:outlet_valve:downstream_vessel","5058":"flow:outlet_valve:downstream_vessel","5059":"flow:outlet_valve:downstream_vessel","5060":"flow:outlet_valve:downstream_vessel","5061":"flow:outlet_valve:downstream_vessel","5062":"flow:outlet_valve:downstream_vessel","5063":"flow:outlet_valve:downstream_vessel","5064":"flow:outlet_valve:downstream_vessel","5065":"flow:outlet_valve:downstream_vessel","5066":"flow:outlet_valve:downstream_vessel","5067":"flow:outlet_valve:downstream_vessel","5068":"flow:outlet_valve:downstream_vessel","5069":"flow:outlet_valve:downstream_vessel","5070":"flow:outlet_valve:downstream_vessel","5071":"flow:outlet_valve:downstream_vessel","5072":"flow:outlet_valve:downstream_vessel","5073":"flow:outlet_valve:downstream_vessel","5074":"flow:outlet_valve:downstream_vessel","5075":"flow:outlet_valve:downstream_vessel","5076":"flow:outlet_valve:downstream_vessel","5077":"flow:outlet_valve:downstream_vessel","5078":"flow:outlet_valve:downstream_vessel","5079":"flow:outlet_valve:downstream_vessel","5080":"flow:outlet_valve:downstream_vessel","5081":"flow:outlet_valve:downstream_vessel","5082":"flow:outlet_valve:downstream_vessel","5083":"flow:outlet_valve:downstream_vessel","5084":"flow:outlet_valve:downstream_vessel","5085":"flow:outlet_valve:downstream_vessel","5086":"flow:outlet_valve:downstream_vessel","5087":"flow:outlet_valve:downstream_vessel","5088":"flow:outlet_valve:downstream_vessel","5089":"flow:outlet_valve:downstream_vessel","5090":"flow:outlet_valve:downstream_vessel","5091":"flow:outlet_valve:downstream_vessel","5092":"flow:outlet_valve:downstream_vessel","5093":"flow:outlet_valve:downstream_vessel","5094":"flow:outlet_valve:downstream_vessel","5095":"flow:outlet_valve:downstream_vessel","5096":"flow:outlet_valve:downstream_vessel","5097":"flow:outlet_valve:downstream_vessel","5098":"flow:outlet_valve:downstream_vessel","5099":"flow:outlet_valve:downstream_vessel","5100":"flow:outlet_valve:downstream_vessel","5101":"flow:outlet_valve:downstream_vessel","5102":"flow:outlet_valve:downstream_vessel","5103":"flow:outlet_valve:downstream_vessel","5104":"flow:outlet_valve:downstream_vessel","5105":"flow:outlet_valve:downstream_vessel","5106":"flow:outlet_valve:downstream_vessel","5107":"flow:outlet_valve:downstream_vessel","5108":"flow:outlet_valve:downstream_vessel","5109":"flow:outlet_valve:downstream_vessel","5110":"flow:outlet_valve:downstream_vessel","5111":"flow:outlet_valve:downstream_vessel","5112":"flow:outlet_valve:downstream_vessel","5113":"flow:outlet_valve:downstream_vessel","5114":"flow:outlet_valve:downstream_vessel","5115":"flow:outlet_valve:downstream_vessel","5116":"flow:outlet_valve:downstream_vessel","5117":"flow:outlet_valve:downstream_vessel","5118":"flow:outlet_valve:downstream_vessel","5119":"flow:outlet_valve:downstream_vessel","5120":"flow:outlet_valve:downstream_vessel","5121":"flow:outlet_valve:downstream_vessel","5122":"flow:outlet_valve:downstream_vessel","5123":"flow:outlet_valve:downstream_vessel","5124":"flow:outlet_valve:downstream_vessel","5125":"flow:outlet_valve:downstream_vessel","5126":"flow:outlet_valve:downstream_vessel","5127":"flow:outlet_valve:downstream_vessel","5128":"flow:outlet_valve:downstream_vessel","5129":"flow:outlet_valve:downstream_vessel","5130":"flow:outlet_valve:downstream_vessel","5131":"flow:outlet_valve:downstream_vessel","5132":"flow:outlet_valve:downstream_vessel","5133":"flow:outlet_valve:downstream_vessel","5134":"flow:outlet_valve:downstream_vessel","5135":"flow:outlet_valve:downstream_vessel","5136":"flow:outlet_valve:downstream_vessel","5137":"flow:outlet_valve:downstream_vessel","5138":"flow:outlet_valve:downstream_vessel","5139":"flow:outlet_valve:downstream_vessel","5140":"flow:outlet_valve:downstream_vessel","5141":"flow:outlet_valve:downstream_vessel","5142":"flow:outlet_valve:downstream_vessel","5143":"flow:outlet_valve:downstream_vessel","5144":"flow:outlet_valve:downstream_vessel","5145":"flow:outlet_valve:downstream_vessel","5146":"flow:outlet_valve:downstream_vessel","5147":"flow:outlet_valve:downstream_vessel","5148":"flow:outlet_valve:downstream_vessel","5149":"flow:outlet_valve:downstream_vessel","5150":"flow:outlet_valve:downstream_vessel","5151":"flow:outlet_valve:downstream_vessel","5152":"flow:outlet_valve:downstream_vessel","5153":"flow:outlet_valve:downstream_vessel","5154":"flow:outlet_valve:downstream_vessel","5155":"flow:outlet_valve:downstream_vessel","5156":"flow:outlet_valve:downstream_vessel","5157":"flow:outlet_valve:downstream_vessel","5158":"flow:outlet_valve:downstream_vessel","5159":"flow:outlet_valve:downstream_vessel","5160":"flow:outlet_valve:downstream_vessel","5161":"flow:outlet_valve:downstream_vessel","5162":"flow:outlet_valve:downstream_vessel","5163":"flow:outlet_valve:downstream_vessel","5164":"flow:outlet_valve:downstream_vessel","5165":"flow:outlet_valve:downstream_vessel","5166":"flow:outlet_valve:downstream_vessel","5167":"flow:outlet_valve:downstream_vessel","5168":"flow:outlet_valve:downstream_vessel","5169":"flow:outlet_valve:downstream_vessel","5170":"flow:outlet_valve:downstream_vessel","5171":"flow:outlet_valve:downstream_vessel","5172":"flow:outlet_valve:downstream_vessel","5173":"flow:outlet_valve:downstream_vessel","5174":"flow:outlet_valve:downstream_vessel","5175":"flow:outlet_valve:downstream_vessel","5176":"flow:outlet_valve:downstream_vessel","5177":"flow:outlet_valve:downstream_vessel","5178":"flow:outlet_valve:downstream_vessel","5179":"flow:outlet_valve:downstream_vessel","5180":"flow:outlet_valve:downstream_vessel","5181":"flow:outlet_valve:downstream_vessel","5182":"flow:outlet_valve:downstream_vessel","5183":"flow:outlet_valve:downstream_vessel","5184":"flow:outlet_valve:downstream_vessel","5185":"flow:outlet_valve:downstream_vessel","5186":"flow:outlet_valve:downstream_vessel","5187":"flow:outlet_valve:downstream_vessel","5188":"flow:outlet_valve:downstream_vessel","5189":"flow:outlet_valve:downstream_vessel","5190":"flow:outlet_valve:downstream_vessel","5191":"flow:outlet_valve:downstream_vessel","5192":"flow:outlet_valve:downstream_vessel","5193":"flow:outlet_valve:downstream_vessel","5194":"flow:outlet_valve:downstream_vessel","5195":"flow:outlet_valve:downstream_vessel","5196":"flow:outlet_valve:downstream_vessel","5197":"flow:outlet_valve:downstream_vessel","5198":"flow:outlet_valve:downstream_vessel","5199":"flow:outlet_valve:downstream_vessel","5200":"flow:outlet_valve:downstream_vessel","5201":"flow:outlet_valve:downstream_vessel","5202":"flow:outlet_valve:downstream_vessel","5203":"flow:outlet_valve:downstream_vessel","5204":"flow:outlet_valve:downstream_vessel","5205":"flow:outlet_valve:downstream_vessel","5206":"flow:outlet_valve:downstream_vessel","5207":"flow:outlet_valve:downstream_vessel","5208":"flow:outlet_valve:downstream_vessel","5209":"flow:outlet_valve:downstream_vessel","5210":"flow:outlet_valve:downstream_vessel","5211":"flow:outlet_valve:downstream_vessel","5212":"flow:outlet_valve:downstream_vessel","5213":"flow:outlet_valve:downstream_vessel","5214":"flow:outlet_valve:downstream_vessel","5215":"flow:outlet_valve:downstream_vessel","5216":"flow:outlet_valve:downstream_vessel","5217":"flow:outlet_valve:downstream_vessel","5218":"flow:outlet_valve:downstream_vessel","5219":"flow:outlet_valve:downstream_vessel","5220":"flow:outlet_valve:downstream_vessel","5221":"flow:outlet_valve:downstream_vessel","5222":"flow:outlet_valve:downstream_vessel","5223":"flow:outlet_valve:downstream_vessel","5224":"flow:outlet_valve:downstream_vessel","5225":"flow:outlet_valve:downstream_vessel","5226":"flow:outlet_valve:downstream_vessel","5227":"flow:outlet_valve:downstream_vessel","5228":"flow:outlet_valve:downstream_vessel","5229":"flow:outlet_valve:downstream_vessel","5230":"flow:outlet_valve:downstream_vessel","5231":"flow:outlet_valve:downstream_vessel","5232":"flow:outlet_valve:downstream_vessel","5233":"flow:outlet_valve:downstream_vessel","5234":"flow:outlet_valve:downstream_vessel","5235":"flow:outlet_valve:downstream_vessel","5236":"flow:outlet_valve:downstream_vessel","5237":"flow:outlet_valve:downstream_vessel","5238":"flow:outlet_valve:downstream_vessel","5239":"flow:outlet_valve:downstream_vessel","5240":"flow:outlet_valve:downstream_vessel","5241":"flow:outlet_valve:downstream_vessel","5242":"flow:outlet_valve:downstream_vessel","5243":"flow:outlet_valve:downstream_vessel","5244":"flow:outlet_valve:downstream_vessel","5245":"flow:outlet_valve:downstream_vessel","5246":"flow:outlet_valve:downstream_vessel","5247":"flow:outlet_valve:downstream_vessel","5248":"flow:outlet_valve:downstream_vessel","5249":"flow:outlet_valve:downstream_vessel","5250":"flow:outlet_valve:downstream_vessel","5251":"flow:outlet_valve:downstream_vessel","5252":"flow:outlet_valve:downstream_vessel","5253":"flow:outlet_valve:downstream_vessel","5254":"flow:outlet_valve:downstream_vessel","5255":"flow:outlet_valve:downstream_vessel","5256":"flow:outlet_valve:downstream_vessel","5257":"flow:outlet_valve:downstream_vessel","5258":"flow:outlet_valve:downstream_vessel","5259":"flow:outlet_valve:downstream_vessel","5260":"flow:outlet_valve:downstream_vessel","5261":"flow:outlet_valve:downstream_vessel","5262":"flow:outlet_valve:downstream_vessel","5263":"flow:outlet_valve:downstream_vessel","5264":"flow:outlet_valve:downstream_vessel","5265":"flow:outlet_valve:downstream_vessel","5266":"flow:outlet_valve:downstream_vessel","5267":"flow:outlet_valve:downstream_vessel","5268":"flow:outlet_valve:downstream_vessel","5269":"flow:outlet_valve:downstream_vessel","5270":"flow:outlet_valve:downstream_vessel","5271":"flow:outlet_valve:downstream_vessel","5272":"flow:outlet_valve:downstream_vessel","5273":"flow:outlet_valve:downstream_vessel","5274":"flow:outlet_valve:downstream_vessel","5275":"flow:outlet_valve:downstream_vessel","5276":"flow:outlet_valve:downstream_vessel","5277":"flow:outlet_valve:downstream_vessel","5278":"flow:outlet_valve:downstream_vessel","5279":"flow:outlet_valve:downstream_vessel","5280":"flow:outlet_valve:downstream_vessel","5281":"flow:outlet_valve:downstream_vessel","5282":"flow:outlet_valve:downstream_vessel","5283":"flow:outlet_valve:downstream_vessel","5284":"flow:outlet_valve:downstream_vessel","5285":"flow:outlet_valve:downstream_vessel","5286":"flow:outlet_valve:downstream_vessel","5287":"flow:outlet_valve:downstream_vessel","5288":"flow:outlet_valve:downstream_vessel","5289":"flow:outlet_valve:downstream_vessel","5290":"flow:outlet_valve:downstream_vessel","5291":"flow:outlet_valve:downstream_vessel","5292":"flow:outlet_valve:downstream_vessel","5293":"flow:outlet_valve:downstream_vessel","5294":"flow:outlet_valve:downstream_vessel","5295":"flow:outlet_valve:downstream_vessel","5296":"flow:outlet_valve:downstream_vessel","5297":"flow:outlet_valve:downstream_vessel","5298":"flow:outlet_valve:downstream_vessel","5299":"flow:outlet_valve:downstream_vessel","5300":"flow:outlet_valve:downstream_vessel","5301":"flow:outlet_valve:downstream_vessel","5302":"flow:outlet_valve:downstream_vessel","5303":"flow:outlet_valve:downstream_vessel","5304":"flow:outlet_valve:downstream_vessel","5305":"flow:outlet_valve:downstream_vessel","5306":"flow:outlet_valve:downstream_vessel","5307":"flow:outlet_valve:downstream_vessel","5308":"flow:outlet_valve:downstream_vessel","5309":"flow:outlet_valve:downstream_vessel","5310":"flow:outlet_valve:downstream_vessel","5311":"flow:outlet_valve:downstream_vessel","5312":"flow:outlet_valve:downstream_vessel","5313":"flow:outlet_valve:downstream_vessel","5314":"flow:outlet_valve:downstream_vessel","5315":"flow:outlet_valve:downstream_vessel","5316":"flow:outlet_valve:downstream_vessel","5317":"flow:outlet_valve:downstream_vessel","5318":"flow:outlet_valve:downstream_vessel","5319":"flow:outlet_valve:downstream_vessel","5320":"flow:outlet_valve:downstream_vessel","5321":"flow:outlet_valve:downstream_vessel","5322":"flow:outlet_valve:downstream_vessel","5323":"flow:outlet_valve:downstream_vessel","5324":"flow:outlet_valve:downstream_vessel","5325":"flow:outlet_valve:downstream_vessel","5326":"flow:outlet_valve:downstream_vessel","5327":"flow:outlet_valve:downstream_vessel","5328":"flow:outlet_valve:downstream_vessel","5329":"flow:outlet_valve:downstream_vessel","5330":"flow:outlet_valve:downstream_vessel","5331":"flow:outlet_valve:downstream_vessel","5332":"flow:outlet_valve:downstream_vessel","5333":"flow:outlet_valve:downstream_vessel","5334":"flow:outlet_valve:downstream_vessel","5335":"flow:outlet_valve:downstream_vessel","5336":"flow:outlet_valve:downstream_vessel","5337":"flow:outlet_valve:downstream_vessel","5338":"flow:outlet_valve:downstream_vessel","5339":"flow:outlet_valve:downstream_vessel","5340":"flow:outlet_valve:downstream_vessel","5341":"flow:outlet_valve:downstream_vessel","5342":"flow:outlet_valve:downstream_vessel","5343":"flow:outlet_valve:downstream_vessel","5344":"flow:outlet_valve:downstream_vessel","5345":"flow:outlet_valve:downstream_vessel","5346":"flow:outlet_valve:downstream_vessel","5347":"flow:outlet_valve:downstream_vessel","5348":"flow:outlet_valve:downstream_vessel","5349":"flow:outlet_valve:downstream_vessel","5350":"flow:outlet_valve:downstream_vessel","5351":"flow:outlet_valve:downstream_vessel","5352":"flow:outlet_valve:downstream_vessel","5353":"flow:outlet_valve:downstream_vessel","5354":"flow:outlet_valve:downstream_vessel","5355":"flow:outlet_valve:downstream_vessel","5356":"flow:outlet_valve:downstream_vessel","5357":"flow:outlet_valve:downstream_vessel","5358":"flow:outlet_valve:downstream_vessel","5359":"flow:outlet_valve:downstream_vessel","5360":"flow:outlet_valve:downstream_vessel","5361":"flow:outlet_valve:downstream_vessel","5362":"flow:outlet_valve:downstream_vessel","5363":"flow:outlet_valve:downstream_vessel","5364":"flow:outlet_valve:downstream_vessel","5365":"flow:outlet_valve:downstream_vessel","5366":"flow:outlet_valve:downstream_vessel","5367":"flow:outlet_valve:downstream_vessel","5368":"flow:outlet_valve:downstream_vessel","5369":"flow:outlet_valve:downstream_vessel","5370":"flow:outlet_valve:downstream_vessel","5371":"flow:outlet_valve:downstream_vessel","5372":"flow:outlet_valve:downstream_vessel","5373":"flow:outlet_valve:downstream_vessel","5374":"flow:outlet_valve:downstream_vessel","5375":"flow:outlet_valve:downstream_vessel","5376":"flow:outlet_valve:downstream_vessel","5377":"flow:outlet_valve:downstream_vessel","5378":"flow:outlet_valve:downstream_vessel","5379":"flow:outlet_valve:downstream_vessel","5380":"flow:outlet_valve:downstream_vessel","5381":"flow:outlet_valve:downstream_vessel","5382":"flow:outlet_valve:downstream_vessel","5383":"flow:outlet_valve:downstream_vessel","5384":"flow:outlet_valve:downstream_vessel","5385":"flow:outlet_valve:downstream_vessel","5386":"flow:outlet_valve:downstream_vessel","5387":"flow:outlet_valve:downstream_vessel","5388":"flow:outlet_valve:downstream_vessel","5389":"flow:outlet_valve:downstream_vessel","5390":"flow:outlet_valve:downstream_vessel","5391":"flow:outlet_valve:downstream_vessel","5392":"flow:outlet_valve:downstream_vessel","5393":"flow:outlet_valve:downstream_vessel","5394":"flow:outlet_valve:downstream_vessel","5395":"flow:outlet_valve:downstream_vessel","5396":"flow:outlet_valve:downstream_vessel","5397":"flow:outlet_valve:downstream_vessel","5398":"flow:outlet_valve:downstream_vessel","5399":"flow:outlet_valve:downstream_vessel","5400":"flow:outlet_valve:downstream_vessel","5401":"flow:outlet_valve:downstream_vessel","5402":"flow:outlet_valve:downstream_vessel","5403":"flow:outlet_valve:downstream_vessel","5404":"flow:outlet_valve:downstream_vessel","5405":"flow:outlet_valve:downstream_vessel","5406":"flow:outlet_valve:downstream_vessel","5407":"flow:outlet_valve:downstream_vessel","5408":"flow:outlet_valve:downstream_vessel","5409":"flow:outlet_valve:downstream_vessel","5410":"flow:outlet_valve:downstream_vessel","5411":"flow:outlet_valve:downstream_vessel","5412":"flow:outlet_valve:downstream_vessel","5413":"flow:outlet_valve:downstream_vessel","5414":"flow:outlet_valve:downstream_vessel","5415":"flow:outlet_valve:downstream_vessel","5416":"flow:outlet_valve:downstream_vessel","5417":"flow:outlet_valve:downstream_vessel","5418":"flow:outlet_valve:downstream_vessel","5419":"flow:outlet_valve:downstream_vessel","5420":"flow:outlet_valve:downstream_vessel","5421":"flow:outlet_valve:downstream_vessel","5422":"flow:outlet_valve:downstream_vessel","5423":"flow:outlet_valve:downstream_vessel","5424":"flow:outlet_valve:downstream_vessel","5425":"flow:outlet_valve:downstream_vessel","5426":"flow:outlet_valve:downstream_vessel","5427":"flow:outlet_valve:downstream_vessel","5428":"flow:outlet_valve:downstream_vessel","5429":"flow:outlet_valve:downstream_vessel","5430":"flow:outlet_valve:downstream_vessel","5431":"flow:outlet_valve:downstream_vessel","5432":"flow:outlet_valve:downstream_vessel","5433":"flow:outlet_valve:downstream_vessel","5434":"flow:outlet_valve:downstream_vessel","5435":"flow:outlet_valve:downstream_vessel","5436":"flow:outlet_valve:downstream_vessel","5437":"flow:outlet_valve:downstream_vessel","5438":"flow:outlet_valve:downstream_vessel","5439":"flow:outlet_valve:downstream_vessel","5440":"flow:outlet_valve:downstream_vessel","5441":"flow:outlet_valve:downstream_vessel","5442":"flow:outlet_valve:downstream_vessel","5443":"flow:outlet_valve:downstream_vessel","5444":"flow:outlet_valve:downstream_vessel","5445":"flow:outlet_valve:downstream_vessel","5446":"flow:outlet_valve:downstream_vessel","5447":"flow:outlet_valve:downstream_vessel","5448":"flow:outlet_valve:downstream_vessel","5449":"flow:outlet_valve:downstream_vessel","5450":"flow:outlet_valve:downstream_vessel","5451":"flow:outlet_valve:downstream_vessel","5452":"flow:outlet_valve:downstream_vessel","5453":"flow:outlet_valve:downstream_vessel","5454":"flow:outlet_valve:downstream_vessel","5455":"flow:outlet_valve:downstream_vessel","5456":"flow:outlet_valve:downstream_vessel","5457":"flow:outlet_valve:downstream_vessel","5458":"flow:outlet_valve:downstream_vessel","5459":"flow:outlet_valve:downstream_vessel","5460":"flow:outlet_valve:downstream_vessel","5461":"flow:outlet_valve:downstream_vessel","5462":"flow:outlet_valve:downstream_vessel","5463":"flow:outlet_valve:downstream_vessel","5464":"flow:outlet_valve:downstream_vessel","5465":"flow:outlet_valve:downstream_vessel","5466":"flow:outlet_valve:downstream_vessel","5467":"flow:outlet_valve:downstream_vessel","5468":"flow:outlet_valve:downstream_vessel","5469":"flow:outlet_valve:downstream_vessel","5470":"flow:outlet_valve:downstream_vessel","5471":"flow:outlet_valve:downstream_vessel","5472":"flow:outlet_valve:downstream_vessel","5473":"flow:outlet_valve:downstream_vessel","5474":"flow:outlet_valve:downstream_vessel","5475":"flow:outlet_valve:downstream_vessel","5476":"flow:outlet_valve:downstream_vessel","5477":"flow:outlet_valve:downstream_vessel","5478":"flow:outlet_valve:downstream_vessel","5479":"flow:outlet_valve:downstream_vessel","5480":"flow:outlet_valve:downstream_vessel","5481":"flow:outlet_valve:downstream_vessel","5482":"flow:outlet_valve:downstream_vessel","5483":"flow:outlet_valve:downstream_vessel","5484":"flow:outlet_valve:downstream_vessel","5485":"flow:outlet_valve:downstream_vessel","5486":"flow:outlet_valve:downstream_vessel","5487":"flow:outlet_valve:downstream_vessel","5488":"flow:outlet_valve:downstream_vessel","5489":"flow:outlet_valve:downstream_vessel","5490":"flow:outlet_valve:downstream_vessel","5491":"flow:outlet_valve:downstream_vessel","5492":"flow:outlet_valve:downstream_vessel","5493":"flow:outlet_valve:downstream_vessel","5494":"flow:outlet_valve:downstream_vessel","5495":"flow:outlet_valve:downstream_vessel","5496":"flow:outlet_valve:downstream_vessel","5497":"flow:outlet_valve:downstream_vessel","5498":"flow:outlet_valve:downstream_vessel","5499":"flow:outlet_valve:downstream_vessel","5500":"pressure:outlet_valve:downstream_vessel","5501":"pressure:outlet_valve:downstream_vessel","5502":"pressure:outlet_valve:downstream_vessel","5503":"pressure:outlet_valve:downstream_vessel","5504":"pressure:outlet_valve:downstream_vessel","5505":"pressure:outlet_valve:downstream_vessel","5506":"pressure:outlet_valve:downstream_vessel","5507":"pressure:outlet_valve:downstream_vessel","5508":"pressure:outlet_valve:downstream_vessel","5509":"pressure:outlet_valve:downstream_vessel","5510":"pressure:outlet_valve:downstream_vessel","5511":"pressure:outlet_valve:downstream_vessel","5512":"pressure:outlet_valve:downstream_vessel","5513":"pressure:outlet_valve:downstream_vessel","5514":"pressure:outlet_valve:downstream_vessel","5515":"pressure:outlet_valve:downstream_vessel","5516":"pressure:outlet_valve:downstream_vessel","5517":"pressure:outlet_valve:downstream_vessel","5518":"pressure:outlet_valve:downstream_vessel","5519":"pressure:outlet_valve:downstream_vessel","5520":"pressure:outlet_valve:downstream_vessel","5521":"pressure:outlet_valve:downstream_vessel","5522":"pressure:outlet_valve:downstream_vessel","5523":"pressure:outlet_valve:downstream_vessel","5524":"pressure:outlet_valve:downstream_vessel","5525":"pressure:outlet_valve:downstream_vessel","5526":"pressure:outlet_valve:downstream_vessel","5527":"pressure:outlet_valve:downstream_vessel","5528":"pressure:outlet_valve:downstream_vessel","5529":"pressure:outlet_valve:downstream_vessel","5530":"pressure:outlet_valve:downstream_vessel","5531":"pressure:outlet_valve:downstream_vessel","5532":"pressure:outlet_valve:downstream_vessel","5533":"pressure:outlet_valve:downstream_vessel","5534":"pressure:outlet_valve:downstream_vessel","5535":"pressure:outlet_valve:downstream_vessel","5536":"pressure:outlet_valve:downstream_vessel","5537":"pressure:outlet_valve:downstream_vessel","5538":"pressure:outlet_valve:downstream_vessel","5539":"pressure:outlet_valve:downstream_vessel","5540":"pressure:outlet_valve:downstream_vessel","5541":"pressure:outlet_valve:downstream_vessel","5542":"pressure:outlet_valve:downstream_vessel","5543":"pressure:outlet_valve:downstream_vessel","5544":"pressure:outlet_valve:downstream_vessel","5545":"pressure:outlet_valve:downstream_vessel","5546":"pressure:outlet_valve:downstream_vessel","5547":"pressure:outlet_valve:downstream_vessel","5548":"pressure:outlet_valve:downstream_vessel","5549":"pressure:outlet_valve:downstream_vessel","5550":"pressure:outlet_valve:downstream_vessel","5551":"pressure:outlet_valve:downstream_vessel","5552":"pressure:outlet_valve:downstream_vessel","5553":"pressure:outlet_valve:downstream_vessel","5554":"pressure:outlet_valve:downstream_vessel","5555":"pressure:outlet_valve:downstream_vessel","5556":"pressure:outlet_valve:downstream_vessel","5557":"pressure:outlet_valve:downstream_vessel","5558":"pressure:outlet_valve:downstream_vessel","5559":"pressure:outlet_valve:downstream_vessel","5560":"pressure:outlet_valve:downstream_vessel","5561":"pressure:outlet_valve:downstream_vessel","5562":"pressure:outlet_valve:downstream_vessel","5563":"pressure:outlet_valve:downstream_vessel","5564":"pressure:outlet_valve:downstream_vessel","5565":"pressure:outlet_valve:downstream_vessel","5566":"pressure:outlet_valve:downstream_vessel","5567":"pressure:outlet_valve:downstream_vessel","5568":"pressure:outlet_valve:downstream_vessel","5569":"pressure:outlet_valve:downstream_vessel","5570":"pressure:outlet_valve:downstream_vessel","5571":"pressure:outlet_valve:downstream_vessel","5572":"pressure:outlet_valve:downstream_vessel","5573":"pressure:outlet_valve:downstream_vessel","5574":"pressure:outlet_valve:downstream_vessel","5575":"pressure:outlet_valve:downstream_vessel","5576":"pressure:outlet_valve:downstream_vessel","5577":"pressure:outlet_valve:downstream_vessel","5578":"pressure:outlet_valve:downstream_vessel","5579":"pressure:outlet_valve:downstream_vessel","5580":"pressure:outlet_valve:downstream_vessel","5581":"pressure:outlet_valve:downstream_vessel","5582":"pressure:outlet_valve:downstream_vessel","5583":"pressure:outlet_valve:downstream_vessel","5584":"pressure:outlet_valve:downstream_vessel","5585":"pressure:outlet_valve:downstream_vessel","5586":"pressure:outlet_valve:downstream_vessel","5587":"pressure:outlet_valve:downstream_vessel","5588":"pressure:outlet_valve:downstream_vessel","5589":"pressure:outlet_valve:downstream_vessel","5590":"pressure:outlet_valve:downstream_vessel","5591":"pressure:outlet_valve:downstream_vessel","5592":"pressure:outlet_valve:downstream_vessel","5593":"pressure:outlet_valve:downstream_vessel","5594":"pressure:outlet_valve:downstream_vessel","5595":"pressure:outlet_valve:downstream_vessel","5596":"pressure:outlet_valve:downstream_vessel","5597":"pressure:outlet_valve:downstream_vessel","5598":"pressure:outlet_valve:downstream_vessel","5599":"pressure:outlet_valve:downstream_vessel","5600":"pressure:outlet_valve:downstream_vessel","5601":"pressure:outlet_valve:downstream_vessel","5602":"pressure:outlet_valve:downstream_vessel","5603":"pressure:outlet_valve:downstream_vessel","5604":"pressure:outlet_valve:downstream_vessel","5605":"pressure:outlet_valve:downstream_vessel","5606":"pressure:outlet_valve:downstream_vessel","5607":"pressure:outlet_valve:downstream_vessel","5608":"pressure:outlet_valve:downstream_vessel","5609":"pressure:outlet_valve:downstream_vessel","5610":"pressure:outlet_valve:downstream_vessel","5611":"pressure:outlet_valve:downstream_vessel","5612":"pressure:outlet_valve:downstream_vessel","5613":"pressure:outlet_valve:downstream_vessel","5614":"pressure:outlet_valve:downstream_vessel","5615":"pressure:outlet_valve:downstream_vessel","5616":"pressure:outlet_valve:downstream_vessel","5617":"pressure:outlet_valve:downstream_vessel","5618":"pressure:outlet_valve:downstream_vessel","5619":"pressure:outlet_valve:downstream_vessel","5620":"pressure:outlet_valve:downstream_vessel","5621":"pressure:outlet_valve:downstream_vessel","5622":"pressure:outlet_valve:downstream_vessel","5623":"pressure:outlet_valve:downstream_vessel","5624":"pressure:outlet_valve:downstream_vessel","5625":"pressure:outlet_valve:downstream_vessel","5626":"pressure:outlet_valve:downstream_vessel","5627":"pressure:outlet_valve:downstream_vessel","5628":"pressure:outlet_valve:downstream_vessel","5629":"pressure:outlet_valve:downstream_vessel","5630":"pressure:outlet_valve:downstream_vessel","5631":"pressure:outlet_valve:downstream_vessel","5632":"pressure:outlet_valve:downstream_vessel","5633":"pressure:outlet_valve:downstream_vessel","5634":"pressure:outlet_valve:downstream_vessel","5635":"pressure:outlet_valve:downstream_vessel","5636":"pressure:outlet_valve:downstream_vessel","5637":"pressure:outlet_valve:downstream_vessel","5638":"pressure:outlet_valve:downstream_vessel","5639":"pressure:outlet_valve:downstream_vessel","5640":"pressure:outlet_valve:downstream_vessel","5641":"pressure:outlet_valve:downstream_vessel","5642":"pressure:outlet_valve:downstream_vessel","5643":"pressure:outlet_valve:downstream_vessel","5644":"pressure:outlet_valve:downstream_vessel","5645":"pressure:outlet_valve:downstream_vessel","5646":"pressure:outlet_valve:downstream_vessel","5647":"pressure:outlet_valve:downstream_vessel","5648":"pressure:outlet_valve:downstream_vessel","5649":"pressure:outlet_valve:downstream_vessel","5650":"pressure:outlet_valve:downstream_vessel","5651":"pressure:outlet_valve:downstream_vessel","5652":"pressure:outlet_valve:downstream_vessel","5653":"pressure:outlet_valve:downstream_vessel","5654":"pressure:outlet_valve:downstream_vessel","5655":"pressure:outlet_valve:downstream_vessel","5656":"pressure:outlet_valve:downstream_vessel","5657":"pressure:outlet_valve:downstream_vessel","5658":"pressure:outlet_valve:downstream_vessel","5659":"pressure:outlet_valve:downstream_vessel","5660":"pressure:outlet_valve:downstream_vessel","5661":"pressure:outlet_valve:downstream_vessel","5662":"pressure:outlet_valve:downstream_vessel","5663":"pressure:outlet_valve:downstream_vessel","5664":"pressure:outlet_valve:downstream_vessel","5665":"pressure:outlet_valve:downstream_vessel","5666":"pressure:outlet_valve:downstream_vessel","5667":"pressure:outlet_valve:downstream_vessel","5668":"pressure:outlet_valve:downstream_vessel","5669":"pressure:outlet_valve:downstream_vessel","5670":"pressure:outlet_valve:downstream_vessel","5671":"pressure:outlet_valve:downstream_vessel","5672":"pressure:outlet_valve:downstream_vessel","5673":"pressure:outlet_valve:downstream_vessel","5674":"pressure:outlet_valve:downstream_vessel","5675":"pressure:outlet_valve:downstream_vessel","5676":"pressure:outlet_valve:downstream_vessel","5677":"pressure:outlet_valve:downstream_vessel","5678":"pressure:outlet_valve:downstream_vessel","5679":"pressure:outlet_valve:downstream_vessel","5680":"pressure:outlet_valve:downstream_vessel","5681":"pressure:outlet_valve:downstream_vessel","5682":"pressure:outlet_valve:downstream_vessel","5683":"pressure:outlet_valve:downstream_vessel","5684":"pressure:outlet_valve:downstream_vessel","5685":"pressure:outlet_valve:downstream_vessel","5686":"pressure:outlet_valve:downstream_vessel","5687":"pressure:outlet_valve:downstream_vessel","5688":"pressure:outlet_valve:downstream_vessel","5689":"pressure:outlet_valve:downstream_vessel","5690":"pressure:outlet_valve:downstream_vessel","5691":"pressure:outlet_valve:downstream_vessel","5692":"pressure:outlet_valve:downstream_vessel","5693":"pressure:outlet_valve:downstream_vessel","5694":"pressure:outlet_valve:downstream_vessel","5695":"pressure:outlet_valve:downstream_vessel","5696":"pressure:outlet_valve:downstream_vessel","5697":"pressure:outlet_valve:downstream_vessel","5698":"pressure:outlet_valve:downstream_vessel","5699":"pressure:outlet_valve:downstream_vessel","5700":"pressure:outlet_valve:downstream_vessel","5701":"pressure:outlet_valve:downstream_vessel","5702":"pressure:outlet_valve:downstream_vessel","5703":"pressure:outlet_valve:downstream_vessel","5704":"pressure:outlet_valve:downstream_vessel","5705":"pressure:outlet_valve:downstream_vessel","5706":"pressure:outlet_valve:downstream_vessel","5707":"pressure:outlet_valve:downstream_vessel","5708":"pressure:outlet_valve:downstream_vessel","5709":"pressure:outlet_valve:downstream_vessel","5710":"pressure:outlet_valve:downstream_vessel","5711":"pressure:outlet_valve:downstream_vessel","5712":"pressure:outlet_valve:downstream_vessel","5713":"pressure:outlet_valve:downstream_vessel","5714":"pressure:outlet_valve:downstream_vessel","5715":"pressure:outlet_valve:downstream_vessel","5716":"pressure:outlet_valve:downstream_vessel","5717":"pressure:outlet_valve:downstream_vessel","5718":"pressure:outlet_valve:downstream_vessel","5719":"pressure:outlet_valve:downstream_vessel","5720":"pressure:outlet_valve:downstream_vessel","5721":"pressure:outlet_valve:downstream_vessel","5722":"pressure:outlet_valve:downstream_vessel","5723":"pressure:outlet_valve:downstream_vessel","5724":"pressure:outlet_valve:downstream_vessel","5725":"pressure:outlet_valve:downstream_vessel","5726":"pressure:outlet_valve:downstream_vessel","5727":"pressure:outlet_valve:downstream_vessel","5728":"pressure:outlet_valve:downstream_vessel","5729":"pressure:outlet_valve:downstream_vessel","5730":"pressure:outlet_valve:downstream_vessel","5731":"pressure:outlet_valve:downstream_vessel","5732":"pressure:outlet_valve:downstream_vessel","5733":"pressure:outlet_valve:downstream_vessel","5734":"pressure:outlet_valve:downstream_vessel","5735":"pressure:outlet_valve:downstream_vessel","5736":"pressure:outlet_valve:downstream_vessel","5737":"pressure:outlet_valve:downstream_vessel","5738":"pressure:outlet_valve:downstream_vessel","5739":"pressure:outlet_valve:downstream_vessel","5740":"pressure:outlet_valve:downstream_vessel","5741":"pressure:outlet_valve:downstream_vessel","5742":"pressure:outlet_valve:downstream_vessel","5743":"pressure:outlet_valve:downstream_vessel","5744":"pressure:outlet_valve:downstream_vessel","5745":"pressure:outlet_valve:downstream_vessel","5746":"pressure:outlet_valve:downstream_vessel","5747":"pressure:outlet_valve:downstream_vessel","5748":"pressure:outlet_valve:downstream_vessel","5749":"pressure:outlet_valve:downstream_vessel","5750":"pressure:outlet_valve:downstream_vessel","5751":"pressure:outlet_valve:downstream_vessel","5752":"pressure:outlet_valve:downstream_vessel","5753":"pressure:outlet_valve:downstream_vessel","5754":"pressure:outlet_valve:downstream_vessel","5755":"pressure:outlet_valve:downstream_vessel","5756":"pressure:outlet_valve:downstream_vessel","5757":"pressure:outlet_valve:downstream_vessel","5758":"pressure:outlet_valve:downstream_vessel","5759":"pressure:outlet_valve:downstream_vessel","5760":"pressure:outlet_valve:downstream_vessel","5761":"pressure:outlet_valve:downstream_vessel","5762":"pressure:outlet_valve:downstream_vessel","5763":"pressure:outlet_valve:downstream_vessel","5764":"pressure:outlet_valve:downstream_vessel","5765":"pressure:outlet_valve:downstream_vessel","5766":"pressure:outlet_valve:downstream_vessel","5767":"pressure:outlet_valve:downstream_vessel","5768":"pressure:outlet_valve:downstream_vessel","5769":"pressure:outlet_valve:downstream_vessel","5770":"pressure:outlet_valve:downstream_vessel","5771":"pressure:outlet_valve:downstream_vessel","5772":"pressure:outlet_valve:downstream_vessel","5773":"pressure:outlet_valve:downstream_vessel","5774":"pressure:outlet_valve:downstream_vessel","5775":"pressure:outlet_valve:downstream_vessel","5776":"pressure:outlet_valve:downstream_vessel","5777":"pressure:outlet_valve:downstream_vessel","5778":"pressure:outlet_valve:downstream_vessel","5779":"pressure:outlet_valve:downstream_vessel","5780":"pressure:outlet_valve:downstream_vessel","5781":"pressure:outlet_valve:downstream_vessel","5782":"pressure:outlet_valve:downstream_vessel","5783":"pressure:outlet_valve:downstream_vessel","5784":"pressure:outlet_valve:downstream_vessel","5785":"pressure:outlet_valve:downstream_vessel","5786":"pressure:outlet_valve:downstream_vessel","5787":"pressure:outlet_valve:downstream_vessel","5788":"pressure:outlet_valve:downstream_vessel","5789":"pressure:outlet_valve:downstream_vessel","5790":"pressure:outlet_valve:downstream_vessel","5791":"pressure:outlet_valve:downstream_vessel","5792":"pressure:outlet_valve:downstream_vessel","5793":"pressure:outlet_valve:downstream_vessel","5794":"pressure:outlet_valve:downstream_vessel","5795":"pressure:outlet_valve:downstream_vessel","5796":"pressure:outlet_valve:downstream_vessel","5797":"pressure:outlet_valve:downstream_vessel","5798":"pressure:outlet_valve:downstream_vessel","5799":"pressure:outlet_valve:downstream_vessel","5800":"pressure:outlet_valve:downstream_vessel","5801":"pressure:outlet_valve:downstream_vessel","5802":"pressure:outlet_valve:downstream_vessel","5803":"pressure:outlet_valve:downstream_vessel","5804":"pressure:outlet_valve:downstream_vessel","5805":"pressure:outlet_valve:downstream_vessel","5806":"pressure:outlet_valve:downstream_vessel","5807":"pressure:outlet_valve:downstream_vessel","5808":"pressure:outlet_valve:downstream_vessel","5809":"pressure:outlet_valve:downstream_vessel","5810":"pressure:outlet_valve:downstream_vessel","5811":"pressure:outlet_valve:downstream_vessel","5812":"pressure:outlet_valve:downstream_vessel","5813":"pressure:outlet_valve:downstream_vessel","5814":"pressure:outlet_valve:downstream_vessel","5815":"pressure:outlet_valve:downstream_vessel","5816":"pressure:outlet_valve:downstream_vessel","5817":"pressure:outlet_valve:downstream_vessel","5818":"pressure:outlet_valve:downstream_vessel","5819":"pressure:outlet_valve:downstream_vessel","5820":"pressure:outlet_valve:downstream_vessel","5821":"pressure:outlet_valve:downstream_vessel","5822":"pressure:outlet_valve:downstream_vessel","5823":"pressure:outlet_valve:downstream_vessel","5824":"pressure:outlet_valve:downstream_vessel","5825":"pressure:outlet_valve:downstream_vessel","5826":"pressure:outlet_valve:downstream_vessel","5827":"pressure:outlet_valve:downstream_vessel","5828":"pressure:outlet_valve:downstream_vessel","5829":"pressure:outlet_valve:downstream_vessel","5830":"pressure:outlet_valve:downstream_vessel","5831":"pressure:outlet_valve:downstream_vessel","5832":"pressure:outlet_valve:downstream_vessel","5833":"pressure:outlet_valve:downstream_vessel","5834":"pressure:outlet_valve:downstream_vessel","5835":"pressure:outlet_valve:downstream_vessel","5836":"pressure:outlet_valve:downstream_vessel","5837":"pressure:outlet_valve:downstream_vessel","5838":"pressure:outlet_valve:downstream_vessel","5839":"pressure:outlet_valve:downstream_vessel","5840":"pressure:outlet_valve:downstream_vessel","5841":"pressure:outlet_valve:downstream_vessel","5842":"pressure:outlet_valve:downstream_vessel","5843":"pressure:outlet_valve:downstream_vessel","5844":"pressure:outlet_valve:downstream_vessel","5845":"pressure:outlet_valve:downstream_vessel","5846":"pressure:outlet_valve:downstream_vessel","5847":"pressure:outlet_valve:downstream_vessel","5848":"pressure:outlet_valve:downstream_vessel","5849":"pressure:outlet_valve:downstream_vessel","5850":"pressure:outlet_valve:downstream_vessel","5851":"pressure:outlet_valve:downstream_vessel","5852":"pressure:outlet_valve:downstream_vessel","5853":"pressure:outlet_valve:downstream_vessel","5854":"pressure:outlet_valve:downstream_vessel","5855":"pressure:outlet_valve:downstream_vessel","5856":"pressure:outlet_valve:downstream_vessel","5857":"pressure:outlet_valve:downstream_vessel","5858":"pressure:outlet_valve:downstream_vessel","5859":"pressure:outlet_valve:downstream_vessel","5860":"pressure:outlet_valve:downstream_vessel","5861":"pressure:outlet_valve:downstream_vessel","5862":"pressure:outlet_valve:downstream_vessel","5863":"pressure:outlet_valve:downstream_vessel","5864":"pressure:outlet_valve:downstream_vessel","5865":"pressure:outlet_valve:downstream_vessel","5866":"pressure:outlet_valve:downstream_vessel","5867":"pressure:outlet_valve:downstream_vessel","5868":"pressure:outlet_valve:downstream_vessel","5869":"pressure:outlet_valve:downstream_vessel","5870":"pressure:outlet_valve:downstream_vessel","5871":"pressure:outlet_valve:downstream_vessel","5872":"pressure:outlet_valve:downstream_vessel","5873":"pressure:outlet_valve:downstream_vessel","5874":"pressure:outlet_valve:downstream_vessel","5875":"pressure:outlet_valve:downstream_vessel","5876":"pressure:outlet_valve:downstream_vessel","5877":"pressure:outlet_valve:downstream_vessel","5878":"pressure:outlet_valve:downstream_vessel","5879":"pressure:outlet_valve:downstream_vessel","5880":"pressure:outlet_valve:downstream_vessel","5881":"pressure:outlet_valve:downstream_vessel","5882":"pressure:outlet_valve:downstream_vessel","5883":"pressure:outlet_valve:downstream_vessel","5884":"pressure:outlet_valve:downstream_vessel","5885":"pressure:outlet_valve:downstream_vessel","5886":"pressure:outlet_valve:downstream_vessel","5887":"pressure:outlet_valve:downstream_vessel","5888":"pressure:outlet_valve:downstream_vessel","5889":"pressure:outlet_valve:downstream_vessel","5890":"pressure:outlet_valve:downstream_vessel","5891":"pressure:outlet_valve:downstream_vessel","5892":"pressure:outlet_valve:downstream_vessel","5893":"pressure:outlet_valve:downstream_vessel","5894":"pressure:outlet_valve:downstream_vessel","5895":"pressure:outlet_valve:downstream_vessel","5896":"pressure:outlet_valve:downstream_vessel","5897":"pressure:outlet_valve:downstream_vessel","5898":"pressure:outlet_valve:downstream_vessel","5899":"pressure:outlet_valve:downstream_vessel","5900":"pressure:outlet_valve:downstream_vessel","5901":"pressure:outlet_valve:downstream_vessel","5902":"pressure:outlet_valve:downstream_vessel","5903":"pressure:outlet_valve:downstream_vessel","5904":"pressure:outlet_valve:downstream_vessel","5905":"pressure:outlet_valve:downstream_vessel","5906":"pressure:outlet_valve:downstream_vessel","5907":"pressure:outlet_valve:downstream_vessel","5908":"pressure:outlet_valve:downstream_vessel","5909":"pressure:outlet_valve:downstream_vessel","5910":"pressure:outlet_valve:downstream_vessel","5911":"pressure:outlet_valve:downstream_vessel","5912":"pressure:outlet_valve:downstream_vessel","5913":"pressure:outlet_valve:downstream_vessel","5914":"pressure:outlet_valve:downstream_vessel","5915":"pressure:outlet_valve:downstream_vessel","5916":"pressure:outlet_valve:downstream_vessel","5917":"pressure:outlet_valve:downstream_vessel","5918":"pressure:outlet_valve:downstream_vessel","5919":"pressure:outlet_valve:downstream_vessel","5920":"pressure:outlet_valve:downstream_vessel","5921":"pressure:outlet_valve:downstream_vessel","5922":"pressure:outlet_valve:downstream_vessel","5923":"pressure:outlet_valve:downstream_vessel","5924":"pressure:outlet_valve:downstream_vessel","5925":"pressure:outlet_valve:downstream_vessel","5926":"pressure:outlet_valve:downstream_vessel","5927":"pressure:outlet_valve:downstream_vessel","5928":"pressure:outlet_valve:downstream_vessel","5929":"pressure:outlet_valve:downstream_vessel","5930":"pressure:outlet_valve:downstream_vessel","5931":"pressure:outlet_valve:downstream_vessel","5932":"pressure:outlet_valve:downstream_vessel","5933":"pressure:outlet_valve:downstream_vessel","5934":"pressure:outlet_valve:downstream_vessel","5935":"pressure:outlet_valve:downstream_vessel","5936":"pressure:outlet_valve:downstream_vessel","5937":"pressure:outlet_valve:downstream_vessel","5938":"pressure:outlet_valve:downstream_vessel","5939":"pressure:outlet_valve:downstream_vessel","5940":"pressure:outlet_valve:downstream_vessel","5941":"pressure:outlet_valve:downstream_vessel","5942":"pressure:outlet_valve:downstream_vessel","5943":"pressure:outlet_valve:downstream_vessel","5944":"pressure:outlet_valve:downstream_vessel","5945":"pressure:outlet_valve:downstream_vessel","5946":"pressure:outlet_valve:downstream_vessel","5947":"pressure:outlet_valve:downstream_vessel","5948":"pressure:outlet_valve:downstream_vessel","5949":"pressure:outlet_valve:downstream_vessel","5950":"pressure:outlet_valve:downstream_vessel","5951":"pressure:outlet_valve:downstream_vessel","5952":"pressure:outlet_valve:downstream_vessel","5953":"pressure:outlet_valve:downstream_vessel","5954":"pressure:outlet_valve:downstream_vessel","5955":"pressure:outlet_valve:downstream_vessel","5956":"pressure:outlet_valve:downstream_vessel","5957":"pressure:outlet_valve:downstream_vessel","5958":"pressure:outlet_valve:downstream_vessel","5959":"pressure:outlet_valve:downstream_vessel","5960":"pressure:outlet_valve:downstream_vessel","5961":"pressure:outlet_valve:downstream_vessel","5962":"pressure:outlet_valve:downstream_vessel","5963":"pressure:outlet_valve:downstream_vessel","5964":"pressure:outlet_valve:downstream_vessel","5965":"pressure:outlet_valve:downstream_vessel","5966":"pressure:outlet_valve:downstream_vessel","5967":"pressure:outlet_valve:downstream_vessel","5968":"pressure:outlet_valve:downstream_vessel","5969":"pressure:outlet_valve:downstream_vessel","5970":"pressure:outlet_valve:downstream_vessel","5971":"pressure:outlet_valve:downstream_vessel","5972":"pressure:outlet_valve:downstream_vessel","5973":"pressure:outlet_valve:downstream_vessel","5974":"pressure:outlet_valve:downstream_vessel","5975":"pressure:outlet_valve:downstream_vessel","5976":"pressure:outlet_valve:downstream_vessel","5977":"pressure:outlet_valve:downstream_vessel","5978":"pressure:outlet_valve:downstream_vessel","5979":"pressure:outlet_valve:downstream_vessel","5980":"pressure:outlet_valve:downstream_vessel","5981":"pressure:outlet_valve:downstream_vessel","5982":"pressure:outlet_valve:downstream_vessel","5983":"pressure:outlet_valve:downstream_vessel","5984":"pressure:outlet_valve:downstream_vessel","5985":"pressure:outlet_valve:downstream_vessel","5986":"pressure:outlet_valve:downstream_vessel","5987":"pressure:outlet_valve:downstream_vessel","5988":"pressure:outlet_valve:downstream_vessel","5989":"pressure:outlet_valve:downstream_vessel","5990":"pressure:outlet_valve:downstream_vessel","5991":"pressure:outlet_valve:downstream_vessel","5992":"pressure:outlet_valve:downstream_vessel","5993":"pressure:outlet_valve:downstream_vessel","5994":"pressure:outlet_valve:downstream_vessel","5995":"pressure:outlet_valve:downstream_vessel","5996":"pressure:outlet_valve:downstream_vessel","5997":"pressure:outlet_valve:downstream_vessel","5998":"pressure:outlet_valve:downstream_vessel","5999":"pressure:outlet_valve:downstream_vessel","6000":"r:ventricle","6001":"r:ventricle","6002":"r:ventricle","6003":"r:ventricle","6004":"r:ventricle","6005":"r:ventricle","6006":"r:ventricle","6007":"r:ventricle","6008":"r:ventricle","6009":"r:ventricle","6010":"r:ventricle","6011":"r:ventricle","6012":"r:ventricle","6013":"r:ventricle","6014":"r:ventricle","6015":"r:ventricle","6016":"r:ventricle","6017":"r:ventricle","6018":"r:ventricle","6019":"r:ventricle","6020":"r:ventricle","6021":"r:ventricle","6022":"r:ventricle","6023":"r:ventricle","6024":"r:ventricle","6025":"r:ventricle","6026":"r:ventricle","6027":"r:ventricle","6028":"r:ventricle","6029":"r:ventricle","6030":"r:ventricle","6031":"r:ventricle","6032":"r:ventricle","6033":"r:ventricle","6034":"r:ventricle","6035":"r:ventricle","6036":"r:ventricle","6037":"r:ventricle","6038":"r:ventricle","6039":"r:ventricle","6040":"r:ventricle","6041":"r:ventricle","6042":"r:ventricle","6043":"r:ventricle","6044":"r:ventricle","6045":"r:ventricle","6046":"r:ventricle","6047":"r:ventricle","6048":"r:ventricle","6049":"r:ventricle","6050":"r:ventricle","6051":"r:ventricle","6052":"r:ventricle","6053":"r:ventricle","6054":"r:ventricle","6055":"r:ventricle","6056":"r:ventricle","6057":"r:ventricle","6058":"r:ventricle","6059":"r:ventricle","6060":"r:ventricle","6061":"r:ventricle","6062":"r:ventricle","6063":"r:ventricle","6064":"r:ventricle","6065":"r:ventricle","6066":"r:ventricle","6067":"r:ventricle","6068":"r:ventricle","6069":"r:ventricle","6070":"r:ventricle","6071":"r:ventricle","6072":"r:ventricle","6073":"r:ventricle","6074":"r:ventricle","6075":"r:ventricle","6076":"r:ventricle","6077":"r:ventricle","6078":"r:ventricle","6079":"r:ventricle","6080":"r:ventricle","6081":"r:ventricle","6082":"r:ventricle","6083":"r:ventricle","6084":"r:ventricle","6085":"r:ventricle","6086":"r:ventricle","6087":"r:ventricle","6088":"r:ventricle","6089":"r:ventricle","6090":"r:ventricle","6091":"r:ventricle","6092":"r:ventricle","6093":"r:ventricle","6094":"r:ventricle","6095":"r:ventricle","6096":"r:ventricle","6097":"r:ventricle","6098":"r:ventricle","6099":"r:ventricle","6100":"r:ventricle","6101":"r:ventricle","6102":"r:ventricle","6103":"r:ventricle","6104":"r:ventricle","6105":"r:ventricle","6106":"r:ventricle","6107":"r:ventricle","6108":"r:ventricle","6109":"r:ventricle","6110":"r:ventricle","6111":"r:ventricle","6112":"r:ventricle","6113":"r:ventricle","6114":"r:ventricle","6115":"r:ventricle","6116":"r:ventricle","6117":"r:ventricle","6118":"r:ventricle","6119":"r:ventricle","6120":"r:ventricle","6121":"r:ventricle","6122":"r:ventricle","6123":"r:ventricle","6124":"r:ventricle","6125":"r:ventricle","6126":"r:ventricle","6127":"r:ventricle","6128":"r:ventricle","6129":"r:ventricle","6130":"r:ventricle","6131":"r:ventricle","6132":"r:ventricle","6133":"r:ventricle","6134":"r:ventricle","6135":"r:ventricle","6136":"r:ventricle","6137":"r:ventricle","6138":"r:ventricle","6139":"r:ventricle","6140":"r:ventricle","6141":"r:ventricle","6142":"r:ventricle","6143":"r:ventricle","6144":"r:ventricle","6145":"r:ventricle","6146":"r:ventricle","6147":"r:ventricle","6148":"r:ventricle","6149":"r:ventricle","6150":"r:ventricle","6151":"r:ventricle","6152":"r:ventricle","6153":"r:ventricle","6154":"r:ventricle","6155":"r:ventricle","6156":"r:ventricle","6157":"r:ventricle","6158":"r:ventricle","6159":"r:ventricle","6160":"r:ventricle","6161":"r:ventricle","6162":"r:ventricle","6163":"r:ventricle","6164":"r:ventricle","6165":"r:ventricle","6166":"r:ventricle","6167":"r:ventricle","6168":"r:ventricle","6169":"r:ventricle","6170":"r:ventricle","6171":"r:ventricle","6172":"r:ventricle","6173":"r:ventricle","6174":"r:ventricle","6175":"r:ventricle","6176":"r:ventricle","6177":"r:ventricle","6178":"r:ventricle","6179":"r:ventricle","6180":"r:ventricle","6181":"r:ventricle","6182":"r:ventricle","6183":"r:ventricle","6184":"r:ventricle","6185":"r:ventricle","6186":"r:ventricle","6187":"r:ventricle","6188":"r:ventricle","6189":"r:ventricle","6190":"r:ventricle","6191":"r:ventricle","6192":"r:ventricle","6193":"r:ventricle","6194":"r:ventricle","6195":"r:ventricle","6196":"r:ventricle","6197":"r:ventricle","6198":"r:ventricle","6199":"r:ventricle","6200":"r:ventricle","6201":"r:ventricle","6202":"r:ventricle","6203":"r:ventricle","6204":"r:ventricle","6205":"r:ventricle","6206":"r:ventricle","6207":"r:ventricle","6208":"r:ventricle","6209":"r:ventricle","6210":"r:ventricle","6211":"r:ventricle","6212":"r:ventricle","6213":"r:ventricle","6214":"r:ventricle","6215":"r:ventricle","6216":"r:ventricle","6217":"r:ventricle","6218":"r:ventricle","6219":"r:ventricle","6220":"r:ventricle","6221":"r:ventricle","6222":"r:ventricle","6223":"r:ventricle","6224":"r:ventricle","6225":"r:ventricle","6226":"r:ventricle","6227":"r:ventricle","6228":"r:ventricle","6229":"r:ventricle","6230":"r:ventricle","6231":"r:ventricle","6232":"r:ventricle","6233":"r:ventricle","6234":"r:ventricle","6235":"r:ventricle","6236":"r:ventricle","6237":"r:ventricle","6238":"r:ventricle","6239":"r:ventricle","6240":"r:ventricle","6241":"r:ventricle","6242":"r:ventricle","6243":"r:ventricle","6244":"r:ventricle","6245":"r:ventricle","6246":"r:ventricle","6247":"r:ventricle","6248":"r:ventricle","6249":"r:ventricle","6250":"r:ventricle","6251":"r:ventricle","6252":"r:ventricle","6253":"r:ventricle","6254":"r:ventricle","6255":"r:ventricle","6256":"r:ventricle","6257":"r:ventricle","6258":"r:ventricle","6259":"r:ventricle","6260":"r:ventricle","6261":"r:ventricle","6262":"r:ventricle","6263":"r:ventricle","6264":"r:ventricle","6265":"r:ventricle","6266":"r:ventricle","6267":"r:ventricle","6268":"r:ventricle","6269":"r:ventricle","6270":"r:ventricle","6271":"r:ventricle","6272":"r:ventricle","6273":"r:ventricle","6274":"r:ventricle","6275":"r:ventricle","6276":"r:ventricle","6277":"r:ventricle","6278":"r:ventricle","6279":"r:ventricle","6280":"r:ventricle","6281":"r:ventricle","6282":"r:ventricle","6283":"r:ventricle","6284":"r:ventricle","6285":"r:ventricle","6286":"r:ventricle","6287":"r:ventricle","6288":"r:ventricle","6289":"r:ventricle","6290":"r:ventricle","6291":"r:ventricle","6292":"r:ventricle","6293":"r:ventricle","6294":"r:ventricle","6295":"r:ventricle","6296":"r:ventricle","6297":"r:ventricle","6298":"r:ventricle","6299":"r:ventricle","6300":"r:ventricle","6301":"r:ventricle","6302":"r:ventricle","6303":"r:ventricle","6304":"r:ventricle","6305":"r:ventricle","6306":"r:ventricle","6307":"r:ventricle","6308":"r:ventricle","6309":"r:ventricle","6310":"r:ventricle","6311":"r:ventricle","6312":"r:ventricle","6313":"r:ventricle","6314":"r:ventricle","6315":"r:ventricle","6316":"r:ventricle","6317":"r:ventricle","6318":"r:ventricle","6319":"r:ventricle","6320":"r:ventricle","6321":"r:ventricle","6322":"r:ventricle","6323":"r:ventricle","6324":"r:ventricle","6325":"r:ventricle","6326":"r:ventricle","6327":"r:ventricle","6328":"r:ventricle","6329":"r:ventricle","6330":"r:ventricle","6331":"r:ventricle","6332":"r:ventricle","6333":"r:ventricle","6334":"r:ventricle","6335":"r:ventricle","6336":"r:ventricle","6337":"r:ventricle","6338":"r:ventricle","6339":"r:ventricle","6340":"r:ventricle","6341":"r:ventricle","6342":"r:ventricle","6343":"r:ventricle","6344":"r:ventricle","6345":"r:ventricle","6346":"r:ventricle","6347":"r:ventricle","6348":"r:ventricle","6349":"r:ventricle","6350":"r:ventricle","6351":"r:ventricle","6352":"r:ventricle","6353":"r:ventricle","6354":"r:ventricle","6355":"r:ventricle","6356":"r:ventricle","6357":"r:ventricle","6358":"r:ventricle","6359":"r:ventricle","6360":"r:ventricle","6361":"r:ventricle","6362":"r:ventricle","6363":"r:ventricle","6364":"r:ventricle","6365":"r:ventricle","6366":"r:ventricle","6367":"r:ventricle","6368":"r:ventricle","6369":"r:ventricle","6370":"r:ventricle","6371":"r:ventricle","6372":"r:ventricle","6373":"r:ventricle","6374":"r:ventricle","6375":"r:ventricle","6376":"r:ventricle","6377":"r:ventricle","6378":"r:ventricle","6379":"r:ventricle","6380":"r:ventricle","6381":"r:ventricle","6382":"r:ventricle","6383":"r:ventricle","6384":"r:ventricle","6385":"r:ventricle","6386":"r:ventricle","6387":"r:ventricle","6388":"r:ventricle","6389":"r:ventricle","6390":"r:ventricle","6391":"r:ventricle","6392":"r:ventricle","6393":"r:ventricle","6394":"r:ventricle","6395":"r:ventricle","6396":"r:ventricle","6397":"r:ventricle","6398":"r:ventricle","6399":"r:ventricle","6400":"r:ventricle","6401":"r:ventricle","6402":"r:ventricle","6403":"r:ventricle","6404":"r:ventricle","6405":"r:ventricle","6406":"r:ventricle","6407":"r:ventricle","6408":"r:ventricle","6409":"r:ventricle","6410":"r:ventricle","6411":"r:ventricle","6412":"r:ventricle","6413":"r:ventricle","6414":"r:ventricle","6415":"r:ventricle","6416":"r:ventricle","6417":"r:ventricle","6418":"r:ventricle","6419":"r:ventricle","6420":"r:ventricle","6421":"r:ventricle","6422":"r:ventricle","6423":"r:ventricle","6424":"r:ventricle","6425":"r:ventricle","6426":"r:ventricle","6427":"r:ventricle","6428":"r:ventricle","6429":"r:ventricle","6430":"r:ventricle","6431":"r:ventricle","6432":"r:ventricle","6433":"r:ventricle","6434":"r:ventricle","6435":"r:ventricle","6436":"r:ventricle","6437":"r:ventricle","6438":"r:ventricle","6439":"r:ventricle","6440":"r:ventricle","6441":"r:ventricle","6442":"r:ventricle","6443":"r:ventricle","6444":"r:ventricle","6445":"r:ventricle","6446":"r:ventricle","6447":"r:ventricle","6448":"r:ventricle","6449":"r:ventricle","6450":"r:ventricle","6451":"r:ventricle","6452":"r:ventricle","6453":"r:ventricle","6454":"r:ventricle","6455":"r:ventricle","6456":"r:ventricle","6457":"r:ventricle","6458":"r:ventricle","6459":"r:ventricle","6460":"r:ventricle","6461":"r:ventricle","6462":"r:ventricle","6463":"r:ventricle","6464":"r:ventricle","6465":"r:ventricle","6466":"r:ventricle","6467":"r:ventricle","6468":"r:ventricle","6469":"r:ventricle","6470":"r:ventricle","6471":"r:ventricle","6472":"r:ventricle","6473":"r:ventricle","6474":"r:ventricle","6475":"r:ventricle","6476":"r:ventricle","6477":"r:ventricle","6478":"r:ventricle","6479":"r:ventricle","6480":"r:ventricle","6481":"r:ventricle","6482":"r:ventricle","6483":"r:ventricle","6484":"r:ventricle","6485":"r:ventricle","6486":"r:ventricle","6487":"r:ventricle","6488":"r:ventricle","6489":"r:ventricle","6490":"r:ventricle","6491":"r:ventricle","6492":"r:ventricle","6493":"r:ventricle","6494":"r:ventricle","6495":"r:ventricle","6496":"r:ventricle","6497":"r:ventricle","6498":"r:ventricle","6499":"r:ventricle","6500":"v:ventricle","6501":"v:ventricle","6502":"v:ventricle","6503":"v:ventricle","6504":"v:ventricle","6505":"v:ventricle","6506":"v:ventricle","6507":"v:ventricle","6508":"v:ventricle","6509":"v:ventricle","6510":"v:ventricle","6511":"v:ventricle","6512":"v:ventricle","6513":"v:ventricle","6514":"v:ventricle","6515":"v:ventricle","6516":"v:ventricle","6517":"v:ventricle","6518":"v:ventricle","6519":"v:ventricle","6520":"v:ventricle","6521":"v:ventricle","6522":"v:ventricle","6523":"v:ventricle","6524":"v:ventricle","6525":"v:ventricle","6526":"v:ventricle","6527":"v:ventricle","6528":"v:ventricle","6529":"v:ventricle","6530":"v:ventricle","6531":"v:ventricle","6532":"v:ventricle","6533":"v:ventricle","6534":"v:ventricle","6535":"v:ventricle","6536":"v:ventricle","6537":"v:ventricle","6538":"v:ventricle","6539":"v:ventricle","6540":"v:ventricle","6541":"v:ventricle","6542":"v:ventricle","6543":"v:ventricle","6544":"v:ventricle","6545":"v:ventricle","6546":"v:ventricle","6547":"v:ventricle","6548":"v:ventricle","6549":"v:ventricle","6550":"v:ventricle","6551":"v:ventricle","6552":"v:ventricle","6553":"v:ventricle","6554":"v:ventricle","6555":"v:ventricle","6556":"v:ventricle","6557":"v:ventricle","6558":"v:ventricle","6559":"v:ventricle","6560":"v:ventricle","6561":"v:ventricle","6562":"v:ventricle","6563":"v:ventricle","6564":"v:ventricle","6565":"v:ventricle","6566":"v:ventricle","6567":"v:ventricle","6568":"v:ventricle","6569":"v:ventricle","6570":"v:ventricle","6571":"v:ventricle","6572":"v:ventricle","6573":"v:ventricle","6574":"v:ventricle","6575":"v:ventricle","6576":"v:ventricle","6577":"v:ventricle","6578":"v:ventricle","6579":"v:ventricle","6580":"v:ventricle","6581":"v:ventricle","6582":"v:ventricle","6583":"v:ventricle","6584":"v:ventricle","6585":"v:ventricle","6586":"v:ventricle","6587":"v:ventricle","6588":"v:ventricle","6589":"v:ventricle","6590":"v:ventricle","6591":"v:ventricle","6592":"v:ventricle","6593":"v:ventricle","6594":"v:ventricle","6595":"v:ventricle","6596":"v:ventricle","6597":"v:ventricle","6598":"v:ventricle","6599":"v:ventricle","6600":"v:ventricle","6601":"v:ventricle","6602":"v:ventricle","6603":"v:ventricle","6604":"v:ventricle","6605":"v:ventricle","6606":"v:ventricle","6607":"v:ventricle","6608":"v:ventricle","6609":"v:ventricle","6610":"v:ventricle","6611":"v:ventricle","6612":"v:ventricle","6613":"v:ventricle","6614":"v:ventricle","6615":"v:ventricle","6616":"v:ventricle","6617":"v:ventricle","6618":"v:ventricle","6619":"v:ventricle","6620":"v:ventricle","6621":"v:ventricle","6622":"v:ventricle","6623":"v:ventricle","6624":"v:ventricle","6625":"v:ventricle","6626":"v:ventricle","6627":"v:ventricle","6628":"v:ventricle","6629":"v:ventricle","6630":"v:ventricle","6631":"v:ventricle","6632":"v:ventricle","6633":"v:ventricle","6634":"v:ventricle","6635":"v:ventricle","6636":"v:ventricle","6637":"v:ventricle","6638":"v:ventricle","6639":"v:ventricle","6640":"v:ventricle","6641":"v:ventricle","6642":"v:ventricle","6643":"v:ventricle","6644":"v:ventricle","6645":"v:ventricle","6646":"v:ventricle","6647":"v:ventricle","6648":"v:ventricle","6649":"v:ventricle","6650":"v:ventricle","6651":"v:ventricle","6652":"v:ventricle","6653":"v:ventricle","6654":"v:ventricle","6655":"v:ventricle","6656":"v:ventricle","6657":"v:ventricle","6658":"v:ventricle","6659":"v:ventricle","6660":"v:ventricle","6661":"v:ventricle","6662":"v:ventricle","6663":"v:ventricle","6664":"v:ventricle","6665":"v:ventricle","6666":"v:ventricle","6667":"v:ventricle","6668":"v:ventricle","6669":"v:ventricle","6670":"v:ventricle","6671":"v:ventricle","6672":"v:ventricle","6673":"v:ventricle","6674":"v:ventricle","6675":"v:ventricle","6676":"v:ventricle","6677":"v:ventricle","6678":"v:ventricle","6679":"v:ventricle","6680":"v:ventricle","6681":"v:ventricle","6682":"v:ventricle","6683":"v:ventricle","6684":"v:ventricle","6685":"v:ventricle","6686":"v:ventricle","6687":"v:ventricle","6688":"v:ventricle","6689":"v:ventricle","6690":"v:ventricle","6691":"v:ventricle","6692":"v:ventricle","6693":"v:ventricle","6694":"v:ventricle","6695":"v:ventricle","6696":"v:ventricle","6697":"v:ventricle","6698":"v:ventricle","6699":"v:ventricle","6700":"v:ventricle","6701":"v:ventricle","6702":"v:ventricle","6703":"v:ventricle","6704":"v:ventricle","6705":"v:ventricle","6706":"v:ventricle","6707":"v:ventricle","6708":"v:ventricle","6709":"v:ventricle","6710":"v:ventricle","6711":"v:ventricle","6712":"v:ventricle","6713":"v:ventricle","6714":"v:ventricle","6715":"v:ventricle","6716":"v:ventricle","6717":"v:ventricle","6718":"v:ventricle","6719":"v:ventricle","6720":"v:ventricle","6721":"v:ventricle","6722":"v:ventricle","6723":"v:ventricle","6724":"v:ventricle","6725":"v:ventricle","6726":"v:ventricle","6727":"v:ventricle","6728":"v:ventricle","6729":"v:ventricle","6730":"v:ventricle","6731":"v:ventricle","6732":"v:ventricle","6733":"v:ventricle","6734":"v:ventricle","6735":"v:ventricle","6736":"v:ventricle","6737":"v:ventricle","6738":"v:ventricle","6739":"v:ventricle","6740":"v:ventricle","6741":"v:ventricle","6742":"v:ventricle","6743":"v:ventricle","6744":"v:ventricle","6745":"v:ventricle","6746":"v:ventricle","6747":"v:ventricle","6748":"v:ventricle","6749":"v:ventricle","6750":"v:ventricle","6751":"v:ventricle","6752":"v:ventricle","6753":"v:ventricle","6754":"v:ventricle","6755":"v:ventricle","6756":"v:ventricle","6757":"v:ventricle","6758":"v:ventricle","6759":"v:ventricle","6760":"v:ventricle","6761":"v:ventricle","6762":"v:ventricle","6763":"v:ventricle","6764":"v:ventricle","6765":"v:ventricle","6766":"v:ventricle","6767":"v:ventricle","6768":"v:ventricle","6769":"v:ventricle","6770":"v:ventricle","6771":"v:ventricle","6772":"v:ventricle","6773":"v:ventricle","6774":"v:ventricle","6775":"v:ventricle","6776":"v:ventricle","6777":"v:ventricle","6778":"v:ventricle","6779":"v:ventricle","6780":"v:ventricle","6781":"v:ventricle","6782":"v:ventricle","6783":"v:ventricle","6784":"v:ventricle","6785":"v:ventricle","6786":"v:ventricle","6787":"v:ventricle","6788":"v:ventricle","6789":"v:ventricle","6790":"v:ventricle","6791":"v:ventricle","6792":"v:ventricle","6793":"v:ventricle","6794":"v:ventricle","6795":"v:ventricle","6796":"v:ventricle","6797":"v:ventricle","6798":"v:ventricle","6799":"v:ventricle","6800":"v:ventricle","6801":"v:ventricle","6802":"v:ventricle","6803":"v:ventricle","6804":"v:ventricle","6805":"v:ventricle","6806":"v:ventricle","6807":"v:ventricle","6808":"v:ventricle","6809":"v:ventricle","6810":"v:ventricle","6811":"v:ventricle","6812":"v:ventricle","6813":"v:ventricle","6814":"v:ventricle","6815":"v:ventricle","6816":"v:ventricle","6817":"v:ventricle","6818":"v:ventricle","6819":"v:ventricle","6820":"v:ventricle","6821":"v:ventricle","6822":"v:ventricle","6823":"v:ventricle","6824":"v:ventricle","6825":"v:ventricle","6826":"v:ventricle","6827":"v:ventricle","6828":"v:ventricle","6829":"v:ventricle","6830":"v:ventricle","6831":"v:ventricle","6832":"v:ventricle","6833":"v:ventricle","6834":"v:ventricle","6835":"v:ventricle","6836":"v:ventricle","6837":"v:ventricle","6838":"v:ventricle","6839":"v:ventricle","6840":"v:ventricle","6841":"v:ventricle","6842":"v:ventricle","6843":"v:ventricle","6844":"v:ventricle","6845":"v:ventricle","6846":"v:ventricle","6847":"v:ventricle","6848":"v:ventricle","6849":"v:ventricle","6850":"v:ventricle","6851":"v:ventricle","6852":"v:ventricle","6853":"v:ventricle","6854":"v:ventricle","6855":"v:ventricle","6856":"v:ventricle","6857":"v:ventricle","6858":"v:ventricle","6859":"v:ventricle","6860":"v:ventricle","6861":"v:ventricle","6862":"v:ventricle","6863":"v:ventricle","6864":"v:ventricle","6865":"v:ventricle","6866":"v:ventricle","6867":"v:ventricle","6868":"v:ventricle","6869":"v:ventricle","6870":"v:ventricle","6871":"v:ventricle","6872":"v:ventricle","6873":"v:ventricle","6874":"v:ventricle","6875":"v:ventricle","6876":"v:ventricle","6877":"v:ventricle","6878":"v:ventricle","6879":"v:ventricle","6880":"v:ventricle","6881":"v:ventricle","6882":"v:ventricle","6883":"v:ventricle","6884":"v:ventricle","6885":"v:ventricle","6886":"v:ventricle","6887":"v:ventricle","6888":"v:ventricle","6889":"v:ventricle","6890":"v:ventricle","6891":"v:ventricle","6892":"v:ventricle","6893":"v:ventricle","6894":"v:ventricle","6895":"v:ventricle","6896":"v:ventricle","6897":"v:ventricle","6898":"v:ventricle","6899":"v:ventricle","6900":"v:ventricle","6901":"v:ventricle","6902":"v:ventricle","6903":"v:ventricle","6904":"v:ventricle","6905":"v:ventricle","6906":"v:ventricle","6907":"v:ventricle","6908":"v:ventricle","6909":"v:ventricle","6910":"v:ventricle","6911":"v:ventricle","6912":"v:ventricle","6913":"v:ventricle","6914":"v:ventricle","6915":"v:ventricle","6916":"v:ventricle","6917":"v:ventricle","6918":"v:ventricle","6919":"v:ventricle","6920":"v:ventricle","6921":"v:ventricle","6922":"v:ventricle","6923":"v:ventricle","6924":"v:ventricle","6925":"v:ventricle","6926":"v:ventricle","6927":"v:ventricle","6928":"v:ventricle","6929":"v:ventricle","6930":"v:ventricle","6931":"v:ventricle","6932":"v:ventricle","6933":"v:ventricle","6934":"v:ventricle","6935":"v:ventricle","6936":"v:ventricle","6937":"v:ventricle","6938":"v:ventricle","6939":"v:ventricle","6940":"v:ventricle","6941":"v:ventricle","6942":"v:ventricle","6943":"v:ventricle","6944":"v:ventricle","6945":"v:ventricle","6946":"v:ventricle","6947":"v:ventricle","6948":"v:ventricle","6949":"v:ventricle","6950":"v:ventricle","6951":"v:ventricle","6952":"v:ventricle","6953":"v:ventricle","6954":"v:ventricle","6955":"v:ventricle","6956":"v:ventricle","6957":"v:ventricle","6958":"v:ventricle","6959":"v:ventricle","6960":"v:ventricle","6961":"v:ventricle","6962":"v:ventricle","6963":"v:ventricle","6964":"v:ventricle","6965":"v:ventricle","6966":"v:ventricle","6967":"v:ventricle","6968":"v:ventricle","6969":"v:ventricle","6970":"v:ventricle","6971":"v:ventricle","6972":"v:ventricle","6973":"v:ventricle","6974":"v:ventricle","6975":"v:ventricle","6976":"v:ventricle","6977":"v:ventricle","6978":"v:ventricle","6979":"v:ventricle","6980":"v:ventricle","6981":"v:ventricle","6982":"v:ventricle","6983":"v:ventricle","6984":"v:ventricle","6985":"v:ventricle","6986":"v:ventricle","6987":"v:ventricle","6988":"v:ventricle","6989":"v:ventricle","6990":"v:ventricle","6991":"v:ventricle","6992":"v:ventricle","6993":"v:ventricle","6994":"v:ventricle","6995":"v:ventricle","6996":"v:ventricle","6997":"v:ventricle","6998":"v:ventricle","6999":"v:ventricle","7000":"S:ventricle","7001":"S:ventricle","7002":"S:ventricle","7003":"S:ventricle","7004":"S:ventricle","7005":"S:ventricle","7006":"S:ventricle","7007":"S:ventricle","7008":"S:ventricle","7009":"S:ventricle","7010":"S:ventricle","7011":"S:ventricle","7012":"S:ventricle","7013":"S:ventricle","7014":"S:ventricle","7015":"S:ventricle","7016":"S:ventricle","7017":"S:ventricle","7018":"S:ventricle","7019":"S:ventricle","7020":"S:ventricle","7021":"S:ventricle","7022":"S:ventricle","7023":"S:ventricle","7024":"S:ventricle","7025":"S:ventricle","7026":"S:ventricle","7027":"S:ventricle","7028":"S:ventricle","7029":"S:ventricle","7030":"S:ventricle","7031":"S:ventricle","7032":"S:ventricle","7033":"S:ventricle","7034":"S:ventricle","7035":"S:ventricle","7036":"S:ventricle","7037":"S:ventricle","7038":"S:ventricle","7039":"S:ventricle","7040":"S:ventricle","7041":"S:ventricle","7042":"S:ventricle","7043":"S:ventricle","7044":"S:ventricle","7045":"S:ventricle","7046":"S:ventricle","7047":"S:ventricle","7048":"S:ventricle","7049":"S:ventricle","7050":"S:ventricle","7051":"S:ventricle","7052":"S:ventricle","7053":"S:ventricle","7054":"S:ventricle","7055":"S:ventricle","7056":"S:ventricle","7057":"S:ventricle","7058":"S:ventricle","7059":"S:ventricle","7060":"S:ventricle","7061":"S:ventricle","7062":"S:ventricle","7063":"S:ventricle","7064":"S:ventricle","7065":"S:ventricle","7066":"S:ventricle","7067":"S:ventricle","7068":"S:ventricle","7069":"S:ventricle","7070":"S:ventricle","7071":"S:ventricle","7072":"S:ventricle","7073":"S:ventricle","7074":"S:ventricle","7075":"S:ventricle","7076":"S:ventricle","7077":"S:ventricle","7078":"S:ventricle","7079":"S:ventricle","7080":"S:ventricle","7081":"S:ventricle","7082":"S:ventricle","7083":"S:ventricle","7084":"S:ventricle","7085":"S:ventricle","7086":"S:ventricle","7087":"S:ventricle","7088":"S:ventricle","7089":"S:ventricle","7090":"S:ventricle","7091":"S:ventricle","7092":"S:ventricle","7093":"S:ventricle","7094":"S:ventricle","7095":"S:ventricle","7096":"S:ventricle","7097":"S:ventricle","7098":"S:ventricle","7099":"S:ventricle","7100":"S:ventricle","7101":"S:ventricle","7102":"S:ventricle","7103":"S:ventricle","7104":"S:ventricle","7105":"S:ventricle","7106":"S:ventricle","7107":"S:ventricle","7108":"S:ventricle","7109":"S:ventricle","7110":"S:ventricle","7111":"S:ventricle","7112":"S:ventricle","7113":"S:ventricle","7114":"S:ventricle","7115":"S:ventricle","7116":"S:ventricle","7117":"S:ventricle","7118":"S:ventricle","7119":"S:ventricle","7120":"S:ventricle","7121":"S:ventricle","7122":"S:ventricle","7123":"S:ventricle","7124":"S:ventricle","7125":"S:ventricle","7126":"S:ventricle","7127":"S:ventricle","7128":"S:ventricle","7129":"S:ventricle","7130":"S:ventricle","7131":"S:ventricle","7132":"S:ventricle","7133":"S:ventricle","7134":"S:ventricle","7135":"S:ventricle","7136":"S:ventricle","7137":"S:ventricle","7138":"S:ventricle","7139":"S:ventricle","7140":"S:ventricle","7141":"S:ventricle","7142":"S:ventricle","7143":"S:ventricle","7144":"S:ventricle","7145":"S:ventricle","7146":"S:ventricle","7147":"S:ventricle","7148":"S:ventricle","7149":"S:ventricle","7150":"S:ventricle","7151":"S:ventricle","7152":"S:ventricle","7153":"S:ventricle","7154":"S:ventricle","7155":"S:ventricle","7156":"S:ventricle","7157":"S:ventricle","7158":"S:ventricle","7159":"S:ventricle","7160":"S:ventricle","7161":"S:ventricle","7162":"S:ventricle","7163":"S:ventricle","7164":"S:ventricle","7165":"S:ventricle","7166":"S:ventricle","7167":"S:ventricle","7168":"S:ventricle","7169":"S:ventricle","7170":"S:ventricle","7171":"S:ventricle","7172":"S:ventricle","7173":"S:ventricle","7174":"S:ventricle","7175":"S:ventricle","7176":"S:ventricle","7177":"S:ventricle","7178":"S:ventricle","7179":"S:ventricle","7180":"S:ventricle","7181":"S:ventricle","7182":"S:ventricle","7183":"S:ventricle","7184":"S:ventricle","7185":"S:ventricle","7186":"S:ventricle","7187":"S:ventricle","7188":"S:ventricle","7189":"S:ventricle","7190":"S:ventricle","7191":"S:ventricle","7192":"S:ventricle","7193":"S:ventricle","7194":"S:ventricle","7195":"S:ventricle","7196":"S:ventricle","7197":"S:ventricle","7198":"S:ventricle","7199":"S:ventricle","7200":"S:ventricle","7201":"S:ventricle","7202":"S:ventricle","7203":"S:ventricle","7204":"S:ventricle","7205":"S:ventricle","7206":"S:ventricle","7207":"S:ventricle","7208":"S:ventricle","7209":"S:ventricle","7210":"S:ventricle","7211":"S:ventricle","7212":"S:ventricle","7213":"S:ventricle","7214":"S:ventricle","7215":"S:ventricle","7216":"S:ventricle","7217":"S:ventricle","7218":"S:ventricle","7219":"S:ventricle","7220":"S:ventricle","7221":"S:ventricle","7222":"S:ventricle","7223":"S:ventricle","7224":"S:ventricle","7225":"S:ventricle","7226":"S:ventricle","7227":"S:ventricle","7228":"S:ventricle","7229":"S:ventricle","7230":"S:ventricle","7231":"S:ventricle","7232":"S:ventricle","7233":"S:ventricle","7234":"S:ventricle","7235":"S:ventricle","7236":"S:ventricle","7237":"S:ventricle","7238":"S:ventricle","7239":"S:ventricle","7240":"S:ventricle","7241":"S:ventricle","7242":"S:ventricle","7243":"S:ventricle","7244":"S:ventricle","7245":"S:ventricle","7246":"S:ventricle","7247":"S:ventricle","7248":"S:ventricle","7249":"S:ventricle","7250":"S:ventricle","7251":"S:ventricle","7252":"S:ventricle","7253":"S:ventricle","7254":"S:ventricle","7255":"S:ventricle","7256":"S:ventricle","7257":"S:ventricle","7258":"S:ventricle","7259":"S:ventricle","7260":"S:ventricle","7261":"S:ventricle","7262":"S:ventricle","7263":"S:ventricle","7264":"S:ventricle","7265":"S:ventricle","7266":"S:ventricle","7267":"S:ventricle","7268":"S:ventricle","7269":"S:ventricle","7270":"S:ventricle","7271":"S:ventricle","7272":"S:ventricle","7273":"S:ventricle","7274":"S:ventricle","7275":"S:ventricle","7276":"S:ventricle","7277":"S:ventricle","7278":"S:ventricle","7279":"S:ventricle","7280":"S:ventricle","7281":"S:ventricle","7282":"S:ventricle","7283":"S:ventricle","7284":"S:ventricle","7285":"S:ventricle","7286":"S:ventricle","7287":"S:ventricle","7288":"S:ventricle","7289":"S:ventricle","7290":"S:ventricle","7291":"S:ventricle","7292":"S:ventricle","7293":"S:ventricle","7294":"S:ventricle","7295":"S:ventricle","7296":"S:ventricle","7297":"S:ventricle","7298":"S:ventricle","7299":"S:ventricle","7300":"S:ventricle","7301":"S:ventricle","7302":"S:ventricle","7303":"S:ventricle","7304":"S:ventricle","7305":"S:ventricle","7306":"S:ventricle","7307":"S:ventricle","7308":"S:ventricle","7309":"S:ventricle","7310":"S:ventricle","7311":"S:ventricle","7312":"S:ventricle","7313":"S:ventricle","7314":"S:ventricle","7315":"S:ventricle","7316":"S:ventricle","7317":"S:ventricle","7318":"S:ventricle","7319":"S:ventricle","7320":"S:ventricle","7321":"S:ventricle","7322":"S:ventricle","7323":"S:ventricle","7324":"S:ventricle","7325":"S:ventricle","7326":"S:ventricle","7327":"S:ventricle","7328":"S:ventricle","7329":"S:ventricle","7330":"S:ventricle","7331":"S:ventricle","7332":"S:ventricle","7333":"S:ventricle","7334":"S:ventricle","7335":"S:ventricle","7336":"S:ventricle","7337":"S:ventricle","7338":"S:ventricle","7339":"S:ventricle","7340":"S:ventricle","7341":"S:ventricle","7342":"S:ventricle","7343":"S:ventricle","7344":"S:ventricle","7345":"S:ventricle","7346":"S:ventricle","7347":"S:ventricle","7348":"S:ventricle","7349":"S:ventricle","7350":"S:ventricle","7351":"S:ventricle","7352":"S:ventricle","7353":"S:ventricle","7354":"S:ventricle","7355":"S:ventricle","7356":"S:ventricle","7357":"S:ventricle","7358":"S:ventricle","7359":"S:ventricle","7360":"S:ventricle","7361":"S:ventricle","7362":"S:ventricle","7363":"S:ventricle","7364":"S:ventricle","7365":"S:ventricle","7366":"S:ventricle","7367":"S:ventricle","7368":"S:ventricle","7369":"S:ventricle","7370":"S:ventricle","7371":"S:ventricle","7372":"S:ventricle","7373":"S:ventricle","7374":"S:ventricle","7375":"S:ventricle","7376":"S:ventricle","7377":"S:ventricle","7378":"S:ventricle","7379":"S:ventricle","7380":"S:ventricle","7381":"S:ventricle","7382":"S:ventricle","7383":"S:ventricle","7384":"S:ventricle","7385":"S:ventricle","7386":"S:ventricle","7387":"S:ventricle","7388":"S:ventricle","7389":"S:ventricle","7390":"S:ventricle","7391":"S:ventricle","7392":"S:ventricle","7393":"S:ventricle","7394":"S:ventricle","7395":"S:ventricle","7396":"S:ventricle","7397":"S:ventricle","7398":"S:ventricle","7399":"S:ventricle","7400":"S:ventricle","7401":"S:ventricle","7402":"S:ventricle","7403":"S:ventricle","7404":"S:ventricle","7405":"S:ventricle","7406":"S:ventricle","7407":"S:ventricle","7408":"S:ventricle","7409":"S:ventricle","7410":"S:ventricle","7411":"S:ventricle","7412":"S:ventricle","7413":"S:ventricle","7414":"S:ventricle","7415":"S:ventricle","7416":"S:ventricle","7417":"S:ventricle","7418":"S:ventricle","7419":"S:ventricle","7420":"S:ventricle","7421":"S:ventricle","7422":"S:ventricle","7423":"S:ventricle","7424":"S:ventricle","7425":"S:ventricle","7426":"S:ventricle","7427":"S:ventricle","7428":"S:ventricle","7429":"S:ventricle","7430":"S:ventricle","7431":"S:ventricle","7432":"S:ventricle","7433":"S:ventricle","7434":"S:ventricle","7435":"S:ventricle","7436":"S:ventricle","7437":"S:ventricle","7438":"S:ventricle","7439":"S:ventricle","7440":"S:ventricle","7441":"S:ventricle","7442":"S:ventricle","7443":"S:ventricle","7444":"S:ventricle","7445":"S:ventricle","7446":"S:ventricle","7447":"S:ventricle","7448":"S:ventricle","7449":"S:ventricle","7450":"S:ventricle","7451":"S:ventricle","7452":"S:ventricle","7453":"S:ventricle","7454":"S:ventricle","7455":"S:ventricle","7456":"S:ventricle","7457":"S:ventricle","7458":"S:ventricle","7459":"S:ventricle","7460":"S:ventricle","7461":"S:ventricle","7462":"S:ventricle","7463":"S:ventricle","7464":"S:ventricle","7465":"S:ventricle","7466":"S:ventricle","7467":"S:ventricle","7468":"S:ventricle","7469":"S:ventricle","7470":"S:ventricle","7471":"S:ventricle","7472":"S:ventricle","7473":"S:ventricle","7474":"S:ventricle","7475":"S:ventricle","7476":"S:ventricle","7477":"S:ventricle","7478":"S:ventricle","7479":"S:ventricle","7480":"S:ventricle","7481":"S:ventricle","7482":"S:ventricle","7483":"S:ventricle","7484":"S:ventricle","7485":"S:ventricle","7486":"S:ventricle","7487":"S:ventricle","7488":"S:ventricle","7489":"S:ventricle","7490":"S:ventricle","7491":"S:ventricle","7492":"S:ventricle","7493":"S:ventricle","7494":"S:ventricle","7495":"S:ventricle","7496":"S:ventricle","7497":"S:ventricle","7498":"S:ventricle","7499":"S:ventricle","7500":"tau:ventricle","7501":"tau:ventricle","7502":"tau:ventricle","7503":"tau:ventricle","7504":"tau:ventricle","7505":"tau:ventricle","7506":"tau:ventricle","7507":"tau:ventricle","7508":"tau:ventricle","7509":"tau:ventricle","7510":"tau:ventricle","7511":"tau:ventricle","7512":"tau:ventricle","7513":"tau:ventricle","7514":"tau:ventricle","7515":"tau:ventricle","7516":"tau:ventricle","7517":"tau:ventricle","7518":"tau:ventricle","7519":"tau:ventricle","7520":"tau:ventricle","7521":"tau:ventricle","7522":"tau:ventricle","7523":"tau:ventricle","7524":"tau:ventricle","7525":"tau:ventricle","7526":"tau:ventricle","7527":"tau:ventricle","7528":"tau:ventricle","7529":"tau:ventricle","7530":"tau:ventricle","7531":"tau:ventricle","7532":"tau:ventricle","7533":"tau:ventricle","7534":"tau:ventricle","7535":"tau:ventricle","7536":"tau:ventricle","7537":"tau:ventricle","7538":"tau:ventricle","7539":"tau:ventricle","7540":"tau:ventricle","7541":"tau:ventricle","7542":"tau:ventricle","7543":"tau:ventricle","7544":"tau:ventricle","7545":"tau:ventricle","7546":"tau:ventricle","7547":"tau:ventricle","7548":"tau:ventricle","7549":"tau:ventricle","7550":"tau:ventricle","7551":"tau:ventricle","7552":"tau:ventricle","7553":"tau:ventricle","7554":"tau:ventricle","7555":"tau:ventricle","7556":"tau:ventricle","7557":"tau:ventricle","7558":"tau:ventricle","7559":"tau:ventricle","7560":"tau:ventricle","7561":"tau:ventricle","7562":"tau:ventricle","7563":"tau:ventricle","7564":"tau:ventricle","7565":"tau:ventricle","7566":"tau:ventricle","7567":"tau:ventricle","7568":"tau:ventricle","7569":"tau:ventricle","7570":"tau:ventricle","7571":"tau:ventricle","7572":"tau:ventricle","7573":"tau:ventricle","7574":"tau:ventricle","7575":"tau:ventricle","7576":"tau:ventricle","7577":"tau:ventricle","7578":"tau:ventricle","7579":"tau:ventricle","7580":"tau:ventricle","7581":"tau:ventricle","7582":"tau:ventricle","7583":"tau:ventricle","7584":"tau:ventricle","7585":"tau:ventricle","7586":"tau:ventricle","7587":"tau:ventricle","7588":"tau:ventricle","7589":"tau:ventricle","7590":"tau:ventricle","7591":"tau:ventricle","7592":"tau:ventricle","7593":"tau:ventricle","7594":"tau:ventricle","7595":"tau:ventricle","7596":"tau:ventricle","7597":"tau:ventricle","7598":"tau:ventricle","7599":"tau:ventricle","7600":"tau:ventricle","7601":"tau:ventricle","7602":"tau:ventricle","7603":"tau:ventricle","7604":"tau:ventricle","7605":"tau:ventricle","7606":"tau:ventricle","7607":"tau:ventricle","7608":"tau:ventricle","7609":"tau:ventricle","7610":"tau:ventricle","7611":"tau:ventricle","7612":"tau:ventricle","7613":"tau:ventricle","7614":"tau:ventricle","7615":"tau:ventricle","7616":"tau:ventricle","7617":"tau:ventricle","7618":"tau:ventricle","7619":"tau:ventricle","7620":"tau:ventricle","7621":"tau:ventricle","7622":"tau:ventricle","7623":"tau:ventricle","7624":"tau:ventricle","7625":"tau:ventricle","7626":"tau:ventricle","7627":"tau:ventricle","7628":"tau:ventricle","7629":"tau:ventricle","7630":"tau:ventricle","7631":"tau:ventricle","7632":"tau:ventricle","7633":"tau:ventricle","7634":"tau:ventricle","7635":"tau:ventricle","7636":"tau:ventricle","7637":"tau:ventricle","7638":"tau:ventricle","7639":"tau:ventricle","7640":"tau:ventricle","7641":"tau:ventricle","7642":"tau:ventricle","7643":"tau:ventricle","7644":"tau:ventricle","7645":"tau:ventricle","7646":"tau:ventricle","7647":"tau:ventricle","7648":"tau:ventricle","7649":"tau:ventricle","7650":"tau:ventricle","7651":"tau:ventricle","7652":"tau:ventricle","7653":"tau:ventricle","7654":"tau:ventricle","7655":"tau:ventricle","7656":"tau:ventricle","7657":"tau:ventricle","7658":"tau:ventricle","7659":"tau:ventricle","7660":"tau:ventricle","7661":"tau:ventricle","7662":"tau:ventricle","7663":"tau:ventricle","7664":"tau:ventricle","7665":"tau:ventricle","7666":"tau:ventricle","7667":"tau:ventricle","7668":"tau:ventricle","7669":"tau:ventricle","7670":"tau:ventricle","7671":"tau:ventricle","7672":"tau:ventricle","7673":"tau:ventricle","7674":"tau:ventricle","7675":"tau:ventricle","7676":"tau:ventricle","7677":"tau:ventricle","7678":"tau:ventricle","7679":"tau:ventricle","7680":"tau:ventricle","7681":"tau:ventricle","7682":"tau:ventricle","7683":"tau:ventricle","7684":"tau:ventricle","7685":"tau:ventricle","7686":"tau:ventricle","7687":"tau:ventricle","7688":"tau:ventricle","7689":"tau:ventricle","7690":"tau:ventricle","7691":"tau:ventricle","7692":"tau:ventricle","7693":"tau:ventricle","7694":"tau:ventricle","7695":"tau:ventricle","7696":"tau:ventricle","7697":"tau:ventricle","7698":"tau:ventricle","7699":"tau:ventricle","7700":"tau:ventricle","7701":"tau:ventricle","7702":"tau:ventricle","7703":"tau:ventricle","7704":"tau:ventricle","7705":"tau:ventricle","7706":"tau:ventricle","7707":"tau:ventricle","7708":"tau:ventricle","7709":"tau:ventricle","7710":"tau:ventricle","7711":"tau:ventricle","7712":"tau:ventricle","7713":"tau:ventricle","7714":"tau:ventricle","7715":"tau:ventricle","7716":"tau:ventricle","7717":"tau:ventricle","7718":"tau:ventricle","7719":"tau:ventricle","7720":"tau:ventricle","7721":"tau:ventricle","7722":"tau:ventricle","7723":"tau:ventricle","7724":"tau:ventricle","7725":"tau:ventricle","7726":"tau:ventricle","7727":"tau:ventricle","7728":"tau:ventricle","7729":"tau:ventricle","7730":"tau:ventricle","7731":"tau:ventricle","7732":"tau:ventricle","7733":"tau:ventricle","7734":"tau:ventricle","7735":"tau:ventricle","7736":"tau:ventricle","7737":"tau:ventricle","7738":"tau:ventricle","7739":"tau:ventricle","7740":"tau:ventricle","7741":"tau:ventricle","7742":"tau:ventricle","7743":"tau:ventricle","7744":"tau:ventricle","7745":"tau:ventricle","7746":"tau:ventricle","7747":"tau:ventricle","7748":"tau:ventricle","7749":"tau:ventricle","7750":"tau:ventricle","7751":"tau:ventricle","7752":"tau:ventricle","7753":"tau:ventricle","7754":"tau:ventricle","7755":"tau:ventricle","7756":"tau:ventricle","7757":"tau:ventricle","7758":"tau:ventricle","7759":"tau:ventricle","7760":"tau:ventricle","7761":"tau:ventricle","7762":"tau:ventricle","7763":"tau:ventricle","7764":"tau:ventricle","7765":"tau:ventricle","7766":"tau:ventricle","7767":"tau:ventricle","7768":"tau:ventricle","7769":"tau:ventricle","7770":"tau:ventricle","7771":"tau:ventricle","7772":"tau:ventricle","7773":"tau:ventricle","7774":"tau:ventricle","7775":"tau:ventricle","7776":"tau:ventricle","7777":"tau:ventricle","7778":"tau:ventricle","7779":"tau:ventricle","7780":"tau:ventricle","7781":"tau:ventricle","7782":"tau:ventricle","7783":"tau:ventricle","7784":"tau:ventricle","7785":"tau:ventricle","7786":"tau:ventricle","7787":"tau:ventricle","7788":"tau:ventricle","7789":"tau:ventricle","7790":"tau:ventricle","7791":"tau:ventricle","7792":"tau:ventricle","7793":"tau:ventricle","7794":"tau:ventricle","7795":"tau:ventricle","7796":"tau:ventricle","7797":"tau:ventricle","7798":"tau:ventricle","7799":"tau:ventricle","7800":"tau:ventricle","7801":"tau:ventricle","7802":"tau:ventricle","7803":"tau:ventricle","7804":"tau:ventricle","7805":"tau:ventricle","7806":"tau:ventricle","7807":"tau:ventricle","7808":"tau:ventricle","7809":"tau:ventricle","7810":"tau:ventricle","7811":"tau:ventricle","7812":"tau:ventricle","7813":"tau:ventricle","7814":"tau:ventricle","7815":"tau:ventricle","7816":"tau:ventricle","7817":"tau:ventricle","7818":"tau:ventricle","7819":"tau:ventricle","7820":"tau:ventricle","7821":"tau:ventricle","7822":"tau:ventricle","7823":"tau:ventricle","7824":"tau:ventricle","7825":"tau:ventricle","7826":"tau:ventricle","7827":"tau:ventricle","7828":"tau:ventricle","7829":"tau:ventricle","7830":"tau:ventricle","7831":"tau:ventricle","7832":"tau:ventricle","7833":"tau:ventricle","7834":"tau:ventricle","7835":"tau:ventricle","7836":"tau:ventricle","7837":"tau:ventricle","7838":"tau:ventricle","7839":"tau:ventricle","7840":"tau:ventricle","7841":"tau:ventricle","7842":"tau:ventricle","7843":"tau:ventricle","7844":"tau:ventricle","7845":"tau:ventricle","7846":"tau:ventricle","7847":"tau:ventricle","7848":"tau:ventricle","7849":"tau:ventricle","7850":"tau:ventricle","7851":"tau:ventricle","7852":"tau:ventricle","7853":"tau:ventricle","7854":"tau:ventricle","7855":"tau:ventricle","7856":"tau:ventricle","7857":"tau:ventricle","7858":"tau:ventricle","7859":"tau:ventricle","7860":"tau:ventricle","7861":"tau:ventricle","7862":"tau:ventricle","7863":"tau:ventricle","7864":"tau:ventricle","7865":"tau:ventricle","7866":"tau:ventricle","7867":"tau:ventricle","7868":"tau:ventricle","7869":"tau:ventricle","7870":"tau:ventricle","7871":"tau:ventricle","7872":"tau:ventricle","7873":"tau:ventricle","7874":"tau:ventricle","7875":"tau:ventricle","7876":"tau:ventricle","7877":"tau:ventricle","7878":"tau:ventricle","7879":"tau:ventricle","7880":"tau:ventricle","7881":"tau:ventricle","7882":"tau:ventricle","7883":"tau:ventricle","7884":"tau:ventricle","7885":"tau:ventricle","7886":"tau:ventricle","7887":"tau:ventricle","7888":"tau:ventricle","7889":"tau:ventricle","7890":"tau:ventricle","7891":"tau:ventricle","7892":"tau:ventricle","7893":"tau:ventricle","7894":"tau:ventricle","7895":"tau:ventricle","7896":"tau:ventricle","7897":"tau:ventricle","7898":"tau:ventricle","7899":"tau:ventricle","7900":"tau:ventricle","7901":"tau:ventricle","7902":"tau:ventricle","7903":"tau:ventricle","7904":"tau:ventricle","7905":"tau:ventricle","7906":"tau:ventricle","7907":"tau:ventricle","7908":"tau:ventricle","7909":"tau:ventricle","7910":"tau:ventricle","7911":"tau:ventricle","7912":"tau:ventricle","7913":"tau:ventricle","7914":"tau:ventricle","7915":"tau:ventricle","7916":"tau:ventricle","7917":"tau:ventricle","7918":"tau:ventricle","7919":"tau:ventricle","7920":"tau:ventricle","7921":"tau:ventricle","7922":"tau:ventricle","7923":"tau:ventricle","7924":"tau:ventricle","7925":"tau:ventricle","7926":"tau:ventricle","7927":"tau:ventricle","7928":"tau:ventricle","7929":"tau:ventricle","7930":"tau:ventricle","7931":"tau:ventricle","7932":"tau:ventricle","7933":"tau:ventricle","7934":"tau:ventricle","7935":"tau:ventricle","7936":"tau:ventricle","7937":"tau:ventricle","7938":"tau:ventricle","7939":"tau:ventricle","7940":"tau:ventricle","7941":"tau:ventricle","7942":"tau:ventricle","7943":"tau:ventricle","7944":"tau:ventricle","7945":"tau:ventricle","7946":"tau:ventricle","7947":"tau:ventricle","7948":"tau:ventricle","7949":"tau:ventricle","7950":"tau:ventricle","7951":"tau:ventricle","7952":"tau:ventricle","7953":"tau:ventricle","7954":"tau:ventricle","7955":"tau:ventricle","7956":"tau:ventricle","7957":"tau:ventricle","7958":"tau:ventricle","7959":"tau:ventricle","7960":"tau:ventricle","7961":"tau:ventricle","7962":"tau:ventricle","7963":"tau:ventricle","7964":"tau:ventricle","7965":"tau:ventricle","7966":"tau:ventricle","7967":"tau:ventricle","7968":"tau:ventricle","7969":"tau:ventricle","7970":"tau:ventricle","7971":"tau:ventricle","7972":"tau:ventricle","7973":"tau:ventricle","7974":"tau:ventricle","7975":"tau:ventricle","7976":"tau:ventricle","7977":"tau:ventricle","7978":"tau:ventricle","7979":"tau:ventricle","7980":"tau:ventricle","7981":"tau:ventricle","7982":"tau:ventricle","7983":"tau:ventricle","7984":"tau:ventricle","7985":"tau:ventricle","7986":"tau:ventricle","7987":"tau:ventricle","7988":"tau:ventricle","7989":"tau:ventricle","7990":"tau:ventricle","7991":"tau:ventricle","7992":"tau:ventricle","7993":"tau:ventricle","7994":"tau:ventricle","7995":"tau:ventricle","7996":"tau:ventricle","7997":"tau:ventricle","7998":"tau:ventricle","7999":"tau:ventricle","8000":"V:ventricle","8001":"V:ventricle","8002":"V:ventricle","8003":"V:ventricle","8004":"V:ventricle","8005":"V:ventricle","8006":"V:ventricle","8007":"V:ventricle","8008":"V:ventricle","8009":"V:ventricle","8010":"V:ventricle","8011":"V:ventricle","8012":"V:ventricle","8013":"V:ventricle","8014":"V:ventricle","8015":"V:ventricle","8016":"V:ventricle","8017":"V:ventricle","8018":"V:ventricle","8019":"V:ventricle","8020":"V:ventricle","8021":"V:ventricle","8022":"V:ventricle","8023":"V:ventricle","8024":"V:ventricle","8025":"V:ventricle","8026":"V:ventricle","8027":"V:ventricle","8028":"V:ventricle","8029":"V:ventricle","8030":"V:ventricle","8031":"V:ventricle","8032":"V:ventricle","8033":"V:ventricle","8034":"V:ventricle","8035":"V:ventricle","8036":"V:ventricle","8037":"V:ventricle","8038":"V:ventricle","8039":"V:ventricle","8040":"V:ventricle","8041":"V:ventricle","8042":"V:ventricle","8043":"V:ventricle","8044":"V:ventricle","8045":"V:ventricle","8046":"V:ventricle","8047":"V:ventricle","8048":"V:ventricle","8049":"V:ventricle","8050":"V:ventricle","8051":"V:ventricle","8052":"V:ventricle","8053":"V:ventricle","8054":"V:ventricle","8055":"V:ventricle","8056":"V:ventricle","8057":"V:ventricle","8058":"V:ventricle","8059":"V:ventricle","8060":"V:ventricle","8061":"V:ventricle","8062":"V:ventricle","8063":"V:ventricle","8064":"V:ventricle","8065":"V:ventricle","8066":"V:ventricle","8067":"V:ventricle","8068":"V:ventricle","8069":"V:ventricle","8070":"V:ventricle","8071":"V:ventricle","8072":"V:ventricle","8073":"V:ventricle","8074":"V:ventricle","8075":"V:ventricle","8076":"V:ventricle","8077":"V:ventricle","8078":"V:ventricle","8079":"V:ventricle","8080":"V:ventricle","8081":"V:ventricle","8082":"V:ventricle","8083":"V:ventricle","8084":"V:ventricle","8085":"V:ventricle","8086":"V:ventricle","8087":"V:ventricle","8088":"V:ventricle","8089":"V:ventricle","8090":"V:ventricle","8091":"V:ventricle","8092":"V:ventricle","8093":"V:ventricle","8094":"V:ventricle","8095":"V:ventricle","8096":"V:ventricle","8097":"V:ventricle","8098":"V:ventricle","8099":"V:ventricle","8100":"V:ventricle","8101":"V:ventricle","8102":"V:ventricle","8103":"V:ventricle","8104":"V:ventricle","8105":"V:ventricle","8106":"V:ventricle","8107":"V:ventricle","8108":"V:ventricle","8109":"V:ventricle","8110":"V:ventricle","8111":"V:ventricle","8112":"V:ventricle","8113":"V:ventricle","8114":"V:ventricle","8115":"V:ventricle","8116":"V:ventricle","8117":"V:ventricle","8118":"V:ventricle","8119":"V:ventricle","8120":"V:ventricle","8121":"V:ventricle","8122":"V:ventricle","8123":"V:ventricle","8124":"V:ventricle","8125":"V:ventricle","8126":"V:ventricle","8127":"V:ventricle","8128":"V:ventricle","8129":"V:ventricle","8130":"V:ventricle","8131":"V:ventricle","8132":"V:ventricle","8133":"V:ventricle","8134":"V:ventricle","8135":"V:ventricle","8136":"V:ventricle","8137":"V:ventricle","8138":"V:ventricle","8139":"V:ventricle","8140":"V:ventricle","8141":"V:ventricle","8142":"V:ventricle","8143":"V:ventricle","8144":"V:ventricle","8145":"V:ventricle","8146":"V:ventricle","8147":"V:ventricle","8148":"V:ventricle","8149":"V:ventricle","8150":"V:ventricle","8151":"V:ventricle","8152":"V:ventricle","8153":"V:ventricle","8154":"V:ventricle","8155":"V:ventricle","8156":"V:ventricle","8157":"V:ventricle","8158":"V:ventricle","8159":"V:ventricle","8160":"V:ventricle","8161":"V:ventricle","8162":"V:ventricle","8163":"V:ventricle","8164":"V:ventricle","8165":"V:ventricle","8166":"V:ventricle","8167":"V:ventricle","8168":"V:ventricle","8169":"V:ventricle","8170":"V:ventricle","8171":"V:ventricle","8172":"V:ventricle","8173":"V:ventricle","8174":"V:ventricle","8175":"V:ventricle","8176":"V:ventricle","8177":"V:ventricle","8178":"V:ventricle","8179":"V:ventricle","8180":"V:ventricle","8181":"V:ventricle","8182":"V:ventricle","8183":"V:ventricle","8184":"V:ventricle","8185":"V:ventricle","8186":"V:ventricle","8187":"V:ventricle","8188":"V:ventricle","8189":"V:ventricle","8190":"V:ventricle","8191":"V:ventricle","8192":"V:ventricle","8193":"V:ventricle","8194":"V:ventricle","8195":"V:ventricle","8196":"V:ventricle","8197":"V:ventricle","8198":"V:ventricle","8199":"V:ventricle","8200":"V:ventricle","8201":"V:ventricle","8202":"V:ventricle","8203":"V:ventricle","8204":"V:ventricle","8205":"V:ventricle","8206":"V:ventricle","8207":"V:ventricle","8208":"V:ventricle","8209":"V:ventricle","8210":"V:ventricle","8211":"V:ventricle","8212":"V:ventricle","8213":"V:ventricle","8214":"V:ventricle","8215":"V:ventricle","8216":"V:ventricle","8217":"V:ventricle","8218":"V:ventricle","8219":"V:ventricle","8220":"V:ventricle","8221":"V:ventricle","8222":"V:ventricle","8223":"V:ventricle","8224":"V:ventricle","8225":"V:ventricle","8226":"V:ventricle","8227":"V:ventricle","8228":"V:ventricle","8229":"V:ventricle","8230":"V:ventricle","8231":"V:ventricle","8232":"V:ventricle","8233":"V:ventricle","8234":"V:ventricle","8235":"V:ventricle","8236":"V:ventricle","8237":"V:ventricle","8238":"V:ventricle","8239":"V:ventricle","8240":"V:ventricle","8241":"V:ventricle","8242":"V:ventricle","8243":"V:ventricle","8244":"V:ventricle","8245":"V:ventricle","8246":"V:ventricle","8247":"V:ventricle","8248":"V:ventricle","8249":"V:ventricle","8250":"V:ventricle","8251":"V:ventricle","8252":"V:ventricle","8253":"V:ventricle","8254":"V:ventricle","8255":"V:ventricle","8256":"V:ventricle","8257":"V:ventricle","8258":"V:ventricle","8259":"V:ventricle","8260":"V:ventricle","8261":"V:ventricle","8262":"V:ventricle","8263":"V:ventricle","8264":"V:ventricle","8265":"V:ventricle","8266":"V:ventricle","8267":"V:ventricle","8268":"V:ventricle","8269":"V:ventricle","8270":"V:ventricle","8271":"V:ventricle","8272":"V:ventricle","8273":"V:ventricle","8274":"V:ventricle","8275":"V:ventricle","8276":"V:ventricle","8277":"V:ventricle","8278":"V:ventricle","8279":"V:ventricle","8280":"V:ventricle","8281":"V:ventricle","8282":"V:ventricle","8283":"V:ventricle","8284":"V:ventricle","8285":"V:ventricle","8286":"V:ventricle","8287":"V:ventricle","8288":"V:ventricle","8289":"V:ventricle","8290":"V:ventricle","8291":"V:ventricle","8292":"V:ventricle","8293":"V:ventricle","8294":"V:ventricle","8295":"V:ventricle","8296":"V:ventricle","8297":"V:ventricle","8298":"V:ventricle","8299":"V:ventricle","8300":"V:ventricle","8301":"V:ventricle","8302":"V:ventricle","8303":"V:ventricle","8304":"V:ventricle","8305":"V:ventricle","8306":"V:ventricle","8307":"V:ventricle","8308":"V:ventricle","8309":"V:ventricle","8310":"V:ventricle","8311":"V:ventricle","8312":"V:ventricle","8313":"V:ventricle","8314":"V:ventricle","8315":"V:ventricle","8316":"V:ventricle","8317":"V:ventricle","8318":"V:ventricle","8319":"V:ventricle","8320":"V:ventricle","8321":"V:ventricle","8322":"V:ventricle","8323":"V:ventricle","8324":"V:ventricle","8325":"V:ventricle","8326":"V:ventricle","8327":"V:ventricle","8328":"V:ventricle","8329":"V:ventricle","8330":"V:ventricle","8331":"V:ventricle","8332":"V:ventricle","8333":"V:ventricle","8334":"V:ventricle","8335":"V:ventricle","8336":"V:ventricle","8337":"V:ventricle","8338":"V:ventricle","8339":"V:ventricle","8340":"V:ventricle","8341":"V:ventricle","8342":"V:ventricle","8343":"V:ventricle","8344":"V:ventricle","8345":"V:ventricle","8346":"V:ventricle","8347":"V:ventricle","8348":"V:ventricle","8349":"V:ventricle","8350":"V:ventricle","8351":"V:ventricle","8352":"V:ventricle","8353":"V:ventricle","8354":"V:ventricle","8355":"V:ventricle","8356":"V:ventricle","8357":"V:ventricle","8358":"V:ventricle","8359":"V:ventricle","8360":"V:ventricle","8361":"V:ventricle","8362":"V:ventricle","8363":"V:ventricle","8364":"V:ventricle","8365":"V:ventricle","8366":"V:ventricle","8367":"V:ventricle","8368":"V:ventricle","8369":"V:ventricle","8370":"V:ventricle","8371":"V:ventricle","8372":"V:ventricle","8373":"V:ventricle","8374":"V:ventricle","8375":"V:ventricle","8376":"V:ventricle","8377":"V:ventricle","8378":"V:ventricle","8379":"V:ventricle","8380":"V:ventricle","8381":"V:ventricle","8382":"V:ventricle","8383":"V:ventricle","8384":"V:ventricle","8385":"V:ventricle","8386":"V:ventricle","8387":"V:ventricle","8388":"V:ventricle","8389":"V:ventricle","8390":"V:ventricle","8391":"V:ventricle","8392":"V:ventricle","8393":"V:ventricle","8394":"V:ventricle","8395":"V:ventricle","8396":"V:ventricle","8397":"V:ventricle","8398":"V:ventricle","8399":"V:ventricle","8400":"V:ventricle","8401":"V:ventricle","8402":"V:ventricle","8403":"V:ventricle","8404":"V:ventricle","8405":"V:ventricle","8406":"V:ventricle","8407":"V:ventricle","8408":"V:ventricle","8409":"V:ventricle","8410":"V:ventricle","8411":"V:ventricle","8412":"V:ventricle","8413":"V:ventricle","8414":"V:ventricle","8415":"V:ventricle","8416":"V:ventricle","8417":"V:ventricle","8418":"V:ventricle","8419":"V:ventricle","8420":"V:ventricle","8421":"V:ventricle","8422":"V:ventricle","8423":"V:ventricle","8424":"V:ventricle","8425":"V:ventricle","8426":"V:ventricle","8427":"V:ventricle","8428":"V:ventricle","8429":"V:ventricle","8430":"V:ventricle","8431":"V:ventricle","8432":"V:ventricle","8433":"V:ventricle","8434":"V:ventricle","8435":"V:ventricle","8436":"V:ventricle","8437":"V:ventricle","8438":"V:ventricle","8439":"V:ventricle","8440":"V:ventricle","8441":"V:ventricle","8442":"V:ventricle","8443":"V:ventricle","8444":"V:ventricle","8445":"V:ventricle","8446":"V:ventricle","8447":"V:ventricle","8448":"V:ventricle","8449":"V:ventricle","8450":"V:ventricle","8451":"V:ventricle","8452":"V:ventricle","8453":"V:ventricle","8454":"V:ventricle","8455":"V:ventricle","8456":"V:ventricle","8457":"V:ventricle","8458":"V:ventricle","8459":"V:ventricle","8460":"V:ventricle","8461":"V:ventricle","8462":"V:ventricle","8463":"V:ventricle","8464":"V:ventricle","8465":"V:ventricle","8466":"V:ventricle","8467":"V:ventricle","8468":"V:ventricle","8469":"V:ventricle","8470":"V:ventricle","8471":"V:ventricle","8472":"V:ventricle","8473":"V:ventricle","8474":"V:ventricle","8475":"V:ventricle","8476":"V:ventricle","8477":"V:ventricle","8478":"V:ventricle","8479":"V:ventricle","8480":"V:ventricle","8481":"V:ventricle","8482":"V:ventricle","8483":"V:ventricle","8484":"V:ventricle","8485":"V:ventricle","8486":"V:ventricle","8487":"V:ventricle","8488":"V:ventricle","8489":"V:ventricle","8490":"V:ventricle","8491":"V:ventricle","8492":"V:ventricle","8493":"V:ventricle","8494":"V:ventricle","8495":"V:ventricle","8496":"V:ventricle","8497":"V:ventricle","8498":"V:ventricle","8499":"V:ventricle"},"time":{"0":0.0,"1":0.002004008,"2":0.004008016,"3":0.006012024,"4":0.0080160321,"5":0.0100200401,"6":0.0120240481,"7":0.0140280561,"8":0.0160320641,"9":0.0180360721,"10":0.0200400802,"11":0.0220440882,"12":0.0240480962,"13":0.0260521042,"14":0.0280561122,"15":0.0300601202,"16":0.0320641283,"17":0.0340681363,"18":0.0360721443,"19":0.0380761523,"20":0.0400801603,"21":0.0420841683,"22":0.0440881764,"23":0.0460921844,"24":0.0480961924,"25":0.0501002004,"26":0.0521042084,"27":0.0541082164,"28":0.0561122244,"29":0.0581162325,"30":0.0601202405,"31":0.0621242485,"32":0.0641282565,"33":0.0661322645,"34":0.0681362725,"35":0.0701402806,"36":0.0721442886,"37":0.0741482966,"38":0.0761523046,"39":0.0781563126,"40":0.0801603206,"41":0.0821643287,"42":0.0841683367,"43":0.0861723447,"44":0.0881763527,"45":0.0901803607,"46":0.0921843687,"47":0.0941883768,"48":0.0961923848,"49":0.0981963928,"50":0.1002004008,"51":0.1022044088,"52":0.1042084168,"53":0.1062124248,"54":0.1082164329,"55":0.1102204409,"56":0.1122244489,"57":0.1142284569,"58":0.1162324649,"59":0.1182364729,"60":0.120240481,"61":0.122244489,"62":0.124248497,"63":0.126252505,"64":0.128256513,"65":0.130260521,"66":0.1322645291,"67":0.1342685371,"68":0.1362725451,"69":0.1382765531,"70":0.1402805611,"71":0.1422845691,"72":0.1442885772,"73":0.1462925852,"74":0.1482965932,"75":0.1503006012,"76":0.1523046092,"77":0.1543086172,"78":0.1563126253,"79":0.1583166333,"80":0.1603206413,"81":0.1623246493,"82":0.1643286573,"83":0.1663326653,"84":0.1683366733,"85":0.1703406814,"86":0.1723446894,"87":0.1743486974,"88":0.1763527054,"89":0.1783567134,"90":0.1803607214,"91":0.1823647295,"92":0.1843687375,"93":0.1863727455,"94":0.1883767535,"95":0.1903807615,"96":0.1923847695,"97":0.1943887776,"98":0.1963927856,"99":0.1983967936,"100":0.2004008016,"101":0.2024048096,"102":0.2044088176,"103":0.2064128257,"104":0.2084168337,"105":0.2104208417,"106":0.2124248497,"107":0.2144288577,"108":0.2164328657,"109":0.2184368737,"110":0.2204408818,"111":0.2224448898,"112":0.2244488978,"113":0.2264529058,"114":0.2284569138,"115":0.2304609218,"116":0.2324649299,"117":0.2344689379,"118":0.2364729459,"119":0.2384769539,"120":0.2404809619,"121":0.2424849699,"122":0.244488978,"123":0.246492986,"124":0.248496994,"125":0.250501002,"126":0.25250501,"127":0.254509018,"128":0.2565130261,"129":0.2585170341,"130":0.2605210421,"131":0.2625250501,"132":0.2645290581,"133":0.2665330661,"134":0.2685370741,"135":0.2705410822,"136":0.2725450902,"137":0.2745490982,"138":0.2765531062,"139":0.2785571142,"140":0.2805611222,"141":0.2825651303,"142":0.2845691383,"143":0.2865731463,"144":0.2885771543,"145":0.2905811623,"146":0.2925851703,"147":0.2945891784,"148":0.2965931864,"149":0.2985971944,"150":0.3006012024,"151":0.3026052104,"152":0.3046092184,"153":0.3066132265,"154":0.3086172345,"155":0.3106212425,"156":0.3126252505,"157":0.3146292585,"158":0.3166332665,"159":0.3186372745,"160":0.3206412826,"161":0.3226452906,"162":0.3246492986,"163":0.3266533066,"164":0.3286573146,"165":0.3306613226,"166":0.3326653307,"167":0.3346693387,"168":0.3366733467,"169":0.3386773547,"170":0.3406813627,"171":0.3426853707,"172":0.3446893788,"173":0.3466933868,"174":0.3486973948,"175":0.3507014028,"176":0.3527054108,"177":0.3547094188,"178":0.3567134269,"179":0.3587174349,"180":0.3607214429,"181":0.3627254509,"182":0.3647294589,"183":0.3667334669,"184":0.3687374749,"185":0.370741483,"186":0.372745491,"187":0.374749499,"188":0.376753507,"189":0.378757515,"190":0.380761523,"191":0.3827655311,"192":0.3847695391,"193":0.3867735471,"194":0.3887775551,"195":0.3907815631,"196":0.3927855711,"197":0.3947895792,"198":0.3967935872,"199":0.3987975952,"200":0.4008016032,"201":0.4028056112,"202":0.4048096192,"203":0.4068136273,"204":0.4088176353,"205":0.4108216433,"206":0.4128256513,"207":0.4148296593,"208":0.4168336673,"209":0.4188376754,"210":0.4208416834,"211":0.4228456914,"212":0.4248496994,"213":0.4268537074,"214":0.4288577154,"215":0.4308617234,"216":0.4328657315,"217":0.4348697395,"218":0.4368737475,"219":0.4388777555,"220":0.4408817635,"221":0.4428857715,"222":0.4448897796,"223":0.4468937876,"224":0.4488977956,"225":0.4509018036,"226":0.4529058116,"227":0.4549098196,"228":0.4569138277,"229":0.4589178357,"230":0.4609218437,"231":0.4629258517,"232":0.4649298597,"233":0.4669338677,"234":0.4689378758,"235":0.4709418838,"236":0.4729458918,"237":0.4749498998,"238":0.4769539078,"239":0.4789579158,"240":0.4809619238,"241":0.4829659319,"242":0.4849699399,"243":0.4869739479,"244":0.4889779559,"245":0.4909819639,"246":0.4929859719,"247":0.49498998,"248":0.496993988,"249":0.498997996,"250":0.501002004,"251":0.503006012,"252":0.50501002,"253":0.5070140281,"254":0.5090180361,"255":0.5110220441,"256":0.5130260521,"257":0.5150300601,"258":0.5170340681,"259":0.5190380762,"260":0.5210420842,"261":0.5230460922,"262":0.5250501002,"263":0.5270541082,"264":0.5290581162,"265":0.5310621242,"266":0.5330661323,"267":0.5350701403,"268":0.5370741483,"269":0.5390781563,"270":0.5410821643,"271":0.5430861723,"272":0.5450901804,"273":0.5470941884,"274":0.5490981964,"275":0.5511022044,"276":0.5531062124,"277":0.5551102204,"278":0.5571142285,"279":0.5591182365,"280":0.5611222445,"281":0.5631262525,"282":0.5651302605,"283":0.5671342685,"284":0.5691382766,"285":0.5711422846,"286":0.5731462926,"287":0.5751503006,"288":0.5771543086,"289":0.5791583166,"290":0.5811623246,"291":0.5831663327,"292":0.5851703407,"293":0.5871743487,"294":0.5891783567,"295":0.5911823647,"296":0.5931863727,"297":0.5951903808,"298":0.5971943888,"299":0.5991983968,"300":0.6012024048,"301":0.6032064128,"302":0.6052104208,"303":0.6072144289,"304":0.6092184369,"305":0.6112224449,"306":0.6132264529,"307":0.6152304609,"308":0.6172344689,"309":0.619238477,"310":0.621242485,"311":0.623246493,"312":0.625250501,"313":0.627254509,"314":0.629258517,"315":0.6312625251,"316":0.6332665331,"317":0.6352705411,"318":0.6372745491,"319":0.6392785571,"320":0.6412825651,"321":0.6432865731,"322":0.6452905812,"323":0.6472945892,"324":0.6492985972,"325":0.6513026052,"326":0.6533066132,"327":0.6553106212,"328":0.6573146293,"329":0.6593186373,"330":0.6613226453,"331":0.6633266533,"332":0.6653306613,"333":0.6673346693,"334":0.6693386774,"335":0.6713426854,"336":0.6733466934,"337":0.6753507014,"338":0.6773547094,"339":0.6793587174,"340":0.6813627255,"341":0.6833667335,"342":0.6853707415,"343":0.6873747495,"344":0.6893787575,"345":0.6913827655,"346":0.6933867735,"347":0.6953907816,"348":0.6973947896,"349":0.6993987976,"350":0.7014028056,"351":0.7034068136,"352":0.7054108216,"353":0.7074148297,"354":0.7094188377,"355":0.7114228457,"356":0.7134268537,"357":0.7154308617,"358":0.7174348697,"359":0.7194388778,"360":0.7214428858,"361":0.7234468938,"362":0.7254509018,"363":0.7274549098,"364":0.7294589178,"365":0.7314629259,"366":0.7334669339,"367":0.7354709419,"368":0.7374749499,"369":0.7394789579,"370":0.7414829659,"371":0.7434869739,"372":0.745490982,"373":0.74749499,"374":0.749498998,"375":0.751503006,"376":0.753507014,"377":0.755511022,"378":0.7575150301,"379":0.7595190381,"380":0.7615230461,"381":0.7635270541,"382":0.7655310621,"383":0.7675350701,"384":0.7695390782,"385":0.7715430862,"386":0.7735470942,"387":0.7755511022,"388":0.7775551102,"389":0.7795591182,"390":0.7815631263,"391":0.7835671343,"392":0.7855711423,"393":0.7875751503,"394":0.7895791583,"395":0.7915831663,"396":0.7935871743,"397":0.7955911824,"398":0.7975951904,"399":0.7995991984,"400":0.8016032064,"401":0.8036072144,"402":0.8056112224,"403":0.8076152305,"404":0.8096192385,"405":0.8116232465,"406":0.8136272545,"407":0.8156312625,"408":0.8176352705,"409":0.8196392786,"410":0.8216432866,"411":0.8236472946,"412":0.8256513026,"413":0.8276553106,"414":0.8296593186,"415":0.8316633267,"416":0.8336673347,"417":0.8356713427,"418":0.8376753507,"419":0.8396793587,"420":0.8416833667,"421":0.8436873747,"422":0.8456913828,"423":0.8476953908,"424":0.8496993988,"425":0.8517034068,"426":0.8537074148,"427":0.8557114228,"428":0.8577154309,"429":0.8597194389,"430":0.8617234469,"431":0.8637274549,"432":0.8657314629,"433":0.8677354709,"434":0.869739479,"435":0.871743487,"436":0.873747495,"437":0.875751503,"438":0.877755511,"439":0.879759519,"440":0.8817635271,"441":0.8837675351,"442":0.8857715431,"443":0.8877755511,"444":0.8897795591,"445":0.8917835671,"446":0.8937875752,"447":0.8957915832,"448":0.8977955912,"449":0.8997995992,"450":0.9018036072,"451":0.9038076152,"452":0.9058116232,"453":0.9078156313,"454":0.9098196393,"455":0.9118236473,"456":0.9138276553,"457":0.9158316633,"458":0.9178356713,"459":0.9198396794,"460":0.9218436874,"461":0.9238476954,"462":0.9258517034,"463":0.9278557114,"464":0.9298597194,"465":0.9318637275,"466":0.9338677355,"467":0.9358717435,"468":0.9378757515,"469":0.9398797595,"470":0.9418837675,"471":0.9438877756,"472":0.9458917836,"473":0.9478957916,"474":0.9498997996,"475":0.9519038076,"476":0.9539078156,"477":0.9559118236,"478":0.9579158317,"479":0.9599198397,"480":0.9619238477,"481":0.9639278557,"482":0.9659318637,"483":0.9679358717,"484":0.9699398798,"485":0.9719438878,"486":0.9739478958,"487":0.9759519038,"488":0.9779559118,"489":0.9799599198,"490":0.9819639279,"491":0.9839679359,"492":0.9859719439,"493":0.9879759519,"494":0.9899799599,"495":0.9919839679,"496":0.993987976,"497":0.995991984,"498":0.997995992,"499":1.0,"500":0.0,"501":0.002004008,"502":0.004008016,"503":0.006012024,"504":0.0080160321,"505":0.0100200401,"506":0.0120240481,"507":0.0140280561,"508":0.0160320641,"509":0.0180360721,"510":0.0200400802,"511":0.0220440882,"512":0.0240480962,"513":0.0260521042,"514":0.0280561122,"515":0.0300601202,"516":0.0320641283,"517":0.0340681363,"518":0.0360721443,"519":0.0380761523,"520":0.0400801603,"521":0.0420841683,"522":0.0440881764,"523":0.0460921844,"524":0.0480961924,"525":0.0501002004,"526":0.0521042084,"527":0.0541082164,"528":0.0561122244,"529":0.0581162325,"530":0.0601202405,"531":0.0621242485,"532":0.0641282565,"533":0.0661322645,"534":0.0681362725,"535":0.0701402806,"536":0.0721442886,"537":0.0741482966,"538":0.0761523046,"539":0.0781563126,"540":0.0801603206,"541":0.0821643287,"542":0.0841683367,"543":0.0861723447,"544":0.0881763527,"545":0.0901803607,"546":0.0921843687,"547":0.0941883768,"548":0.0961923848,"549":0.0981963928,"550":0.1002004008,"551":0.1022044088,"552":0.1042084168,"553":0.1062124248,"554":0.1082164329,"555":0.1102204409,"556":0.1122244489,"557":0.1142284569,"558":0.1162324649,"559":0.1182364729,"560":0.120240481,"561":0.122244489,"562":0.124248497,"563":0.126252505,"564":0.128256513,"565":0.130260521,"566":0.1322645291,"567":0.1342685371,"568":0.1362725451,"569":0.1382765531,"570":0.1402805611,"571":0.1422845691,"572":0.1442885772,"573":0.1462925852,"574":0.1482965932,"575":0.1503006012,"576":0.1523046092,"577":0.1543086172,"578":0.1563126253,"579":0.1583166333,"580":0.1603206413,"581":0.1623246493,"582":0.1643286573,"583":0.1663326653,"584":0.1683366733,"585":0.1703406814,"586":0.1723446894,"587":0.1743486974,"588":0.1763527054,"589":0.1783567134,"590":0.1803607214,"591":0.1823647295,"592":0.1843687375,"593":0.1863727455,"594":0.1883767535,"595":0.1903807615,"596":0.1923847695,"597":0.1943887776,"598":0.1963927856,"599":0.1983967936,"600":0.2004008016,"601":0.2024048096,"602":0.2044088176,"603":0.2064128257,"604":0.2084168337,"605":0.2104208417,"606":0.2124248497,"607":0.2144288577,"608":0.2164328657,"609":0.2184368737,"610":0.2204408818,"611":0.2224448898,"612":0.2244488978,"613":0.2264529058,"614":0.2284569138,"615":0.2304609218,"616":0.2324649299,"617":0.2344689379,"618":0.2364729459,"619":0.2384769539,"620":0.2404809619,"621":0.2424849699,"622":0.244488978,"623":0.246492986,"624":0.248496994,"625":0.250501002,"626":0.25250501,"627":0.254509018,"628":0.2565130261,"629":0.2585170341,"630":0.2605210421,"631":0.2625250501,"632":0.2645290581,"633":0.2665330661,"634":0.2685370741,"635":0.2705410822,"636":0.2725450902,"637":0.2745490982,"638":0.2765531062,"639":0.2785571142,"640":0.2805611222,"641":0.2825651303,"642":0.2845691383,"643":0.2865731463,"644":0.2885771543,"645":0.2905811623,"646":0.2925851703,"647":0.2945891784,"648":0.2965931864,"649":0.2985971944,"650":0.3006012024,"651":0.3026052104,"652":0.3046092184,"653":0.3066132265,"654":0.3086172345,"655":0.3106212425,"656":0.3126252505,"657":0.3146292585,"658":0.3166332665,"659":0.3186372745,"660":0.3206412826,"661":0.3226452906,"662":0.3246492986,"663":0.3266533066,"664":0.3286573146,"665":0.3306613226,"666":0.3326653307,"667":0.3346693387,"668":0.3366733467,"669":0.3386773547,"670":0.3406813627,"671":0.3426853707,"672":0.3446893788,"673":0.3466933868,"674":0.3486973948,"675":0.3507014028,"676":0.3527054108,"677":0.3547094188,"678":0.3567134269,"679":0.3587174349,"680":0.3607214429,"681":0.3627254509,"682":0.3647294589,"683":0.3667334669,"684":0.3687374749,"685":0.370741483,"686":0.372745491,"687":0.374749499,"688":0.376753507,"689":0.378757515,"690":0.380761523,"691":0.3827655311,"692":0.3847695391,"693":0.3867735471,"694":0.3887775551,"695":0.3907815631,"696":0.3927855711,"697":0.3947895792,"698":0.3967935872,"699":0.3987975952,"700":0.4008016032,"701":0.4028056112,"702":0.4048096192,"703":0.4068136273,"704":0.4088176353,"705":0.4108216433,"706":0.4128256513,"707":0.4148296593,"708":0.4168336673,"709":0.4188376754,"710":0.4208416834,"711":0.4228456914,"712":0.4248496994,"713":0.4268537074,"714":0.4288577154,"715":0.4308617234,"716":0.4328657315,"717":0.4348697395,"718":0.4368737475,"719":0.4388777555,"720":0.4408817635,"721":0.4428857715,"722":0.4448897796,"723":0.4468937876,"724":0.4488977956,"725":0.4509018036,"726":0.4529058116,"727":0.4549098196,"728":0.4569138277,"729":0.4589178357,"730":0.4609218437,"731":0.4629258517,"732":0.4649298597,"733":0.4669338677,"734":0.4689378758,"735":0.4709418838,"736":0.4729458918,"737":0.4749498998,"738":0.4769539078,"739":0.4789579158,"740":0.4809619238,"741":0.4829659319,"742":0.4849699399,"743":0.4869739479,"744":0.4889779559,"745":0.4909819639,"746":0.4929859719,"747":0.49498998,"748":0.496993988,"749":0.498997996,"750":0.501002004,"751":0.503006012,"752":0.50501002,"753":0.5070140281,"754":0.5090180361,"755":0.5110220441,"756":0.5130260521,"757":0.5150300601,"758":0.5170340681,"759":0.5190380762,"760":0.5210420842,"761":0.5230460922,"762":0.5250501002,"763":0.5270541082,"764":0.5290581162,"765":0.5310621242,"766":0.5330661323,"767":0.5350701403,"768":0.5370741483,"769":0.5390781563,"770":0.5410821643,"771":0.5430861723,"772":0.5450901804,"773":0.5470941884,"774":0.5490981964,"775":0.5511022044,"776":0.5531062124,"777":0.5551102204,"778":0.5571142285,"779":0.5591182365,"780":0.5611222445,"781":0.5631262525,"782":0.5651302605,"783":0.5671342685,"784":0.5691382766,"785":0.5711422846,"786":0.5731462926,"787":0.5751503006,"788":0.5771543086,"789":0.5791583166,"790":0.5811623246,"791":0.5831663327,"792":0.5851703407,"793":0.5871743487,"794":0.5891783567,"795":0.5911823647,"796":0.5931863727,"797":0.5951903808,"798":0.5971943888,"799":0.5991983968,"800":0.6012024048,"801":0.6032064128,"802":0.6052104208,"803":0.6072144289,"804":0.6092184369,"805":0.6112224449,"806":0.6132264529,"807":0.6152304609,"808":0.6172344689,"809":0.619238477,"810":0.621242485,"811":0.623246493,"812":0.625250501,"813":0.627254509,"814":0.629258517,"815":0.6312625251,"816":0.6332665331,"817":0.6352705411,"818":0.6372745491,"819":0.6392785571,"820":0.6412825651,"821":0.6432865731,"822":0.6452905812,"823":0.6472945892,"824":0.6492985972,"825":0.6513026052,"826":0.6533066132,"827":0.6553106212,"828":0.6573146293,"829":0.6593186373,"830":0.6613226453,"831":0.6633266533,"832":0.6653306613,"833":0.6673346693,"834":0.6693386774,"835":0.6713426854,"836":0.6733466934,"837":0.6753507014,"838":0.6773547094,"839":0.6793587174,"840":0.6813627255,"841":0.6833667335,"842":0.6853707415,"843":0.6873747495,"844":0.6893787575,"845":0.6913827655,"846":0.6933867735,"847":0.6953907816,"848":0.6973947896,"849":0.6993987976,"850":0.7014028056,"851":0.7034068136,"852":0.7054108216,"853":0.7074148297,"854":0.7094188377,"855":0.7114228457,"856":0.7134268537,"857":0.7154308617,"858":0.7174348697,"859":0.7194388778,"860":0.7214428858,"861":0.7234468938,"862":0.7254509018,"863":0.7274549098,"864":0.7294589178,"865":0.7314629259,"866":0.7334669339,"867":0.7354709419,"868":0.7374749499,"869":0.7394789579,"870":0.7414829659,"871":0.7434869739,"872":0.745490982,"873":0.74749499,"874":0.749498998,"875":0.751503006,"876":0.753507014,"877":0.755511022,"878":0.7575150301,"879":0.7595190381,"880":0.7615230461,"881":0.7635270541,"882":0.7655310621,"883":0.7675350701,"884":0.7695390782,"885":0.7715430862,"886":0.7735470942,"887":0.7755511022,"888":0.7775551102,"889":0.7795591182,"890":0.7815631263,"891":0.7835671343,"892":0.7855711423,"893":0.7875751503,"894":0.7895791583,"895":0.7915831663,"896":0.7935871743,"897":0.7955911824,"898":0.7975951904,"899":0.7995991984,"900":0.8016032064,"901":0.8036072144,"902":0.8056112224,"903":0.8076152305,"904":0.8096192385,"905":0.8116232465,"906":0.8136272545,"907":0.8156312625,"908":0.8176352705,"909":0.8196392786,"910":0.8216432866,"911":0.8236472946,"912":0.8256513026,"913":0.8276553106,"914":0.8296593186,"915":0.8316633267,"916":0.8336673347,"917":0.8356713427,"918":0.8376753507,"919":0.8396793587,"920":0.8416833667,"921":0.8436873747,"922":0.8456913828,"923":0.8476953908,"924":0.8496993988,"925":0.8517034068,"926":0.8537074148,"927":0.8557114228,"928":0.8577154309,"929":0.8597194389,"930":0.8617234469,"931":0.8637274549,"932":0.8657314629,"933":0.8677354709,"934":0.869739479,"935":0.871743487,"936":0.873747495,"937":0.875751503,"938":0.877755511,"939":0.879759519,"940":0.8817635271,"941":0.8837675351,"942":0.8857715431,"943":0.8877755511,"944":0.8897795591,"945":0.8917835671,"946":0.8937875752,"947":0.8957915832,"948":0.8977955912,"949":0.8997995992,"950":0.9018036072,"951":0.9038076152,"952":0.9058116232,"953":0.9078156313,"954":0.9098196393,"955":0.9118236473,"956":0.9138276553,"957":0.9158316633,"958":0.9178356713,"959":0.9198396794,"960":0.9218436874,"961":0.9238476954,"962":0.9258517034,"963":0.9278557114,"964":0.9298597194,"965":0.9318637275,"966":0.9338677355,"967":0.9358717435,"968":0.9378757515,"969":0.9398797595,"970":0.9418837675,"971":0.9438877756,"972":0.9458917836,"973":0.9478957916,"974":0.9498997996,"975":0.9519038076,"976":0.9539078156,"977":0.9559118236,"978":0.9579158317,"979":0.9599198397,"980":0.9619238477,"981":0.9639278557,"982":0.9659318637,"983":0.9679358717,"984":0.9699398798,"985":0.9719438878,"986":0.9739478958,"987":0.9759519038,"988":0.9779559118,"989":0.9799599198,"990":0.9819639279,"991":0.9839679359,"992":0.9859719439,"993":0.9879759519,"994":0.9899799599,"995":0.9919839679,"996":0.993987976,"997":0.995991984,"998":0.997995992,"999":1.0,"1000":0.0,"1001":0.002004008,"1002":0.004008016,"1003":0.006012024,"1004":0.0080160321,"1005":0.0100200401,"1006":0.0120240481,"1007":0.0140280561,"1008":0.0160320641,"1009":0.0180360721,"1010":0.0200400802,"1011":0.0220440882,"1012":0.0240480962,"1013":0.0260521042,"1014":0.0280561122,"1015":0.0300601202,"1016":0.0320641283,"1017":0.0340681363,"1018":0.0360721443,"1019":0.0380761523,"1020":0.0400801603,"1021":0.0420841683,"1022":0.0440881764,"1023":0.0460921844,"1024":0.0480961924,"1025":0.0501002004,"1026":0.0521042084,"1027":0.0541082164,"1028":0.0561122244,"1029":0.0581162325,"1030":0.0601202405,"1031":0.0621242485,"1032":0.0641282565,"1033":0.0661322645,"1034":0.0681362725,"1035":0.0701402806,"1036":0.0721442886,"1037":0.0741482966,"1038":0.0761523046,"1039":0.0781563126,"1040":0.0801603206,"1041":0.0821643287,"1042":0.0841683367,"1043":0.0861723447,"1044":0.0881763527,"1045":0.0901803607,"1046":0.0921843687,"1047":0.0941883768,"1048":0.0961923848,"1049":0.0981963928,"1050":0.1002004008,"1051":0.1022044088,"1052":0.1042084168,"1053":0.1062124248,"1054":0.1082164329,"1055":0.1102204409,"1056":0.1122244489,"1057":0.1142284569,"1058":0.1162324649,"1059":0.1182364729,"1060":0.120240481,"1061":0.122244489,"1062":0.124248497,"1063":0.126252505,"1064":0.128256513,"1065":0.130260521,"1066":0.1322645291,"1067":0.1342685371,"1068":0.1362725451,"1069":0.1382765531,"1070":0.1402805611,"1071":0.1422845691,"1072":0.1442885772,"1073":0.1462925852,"1074":0.1482965932,"1075":0.1503006012,"1076":0.1523046092,"1077":0.1543086172,"1078":0.1563126253,"1079":0.1583166333,"1080":0.1603206413,"1081":0.1623246493,"1082":0.1643286573,"1083":0.1663326653,"1084":0.1683366733,"1085":0.1703406814,"1086":0.1723446894,"1087":0.1743486974,"1088":0.1763527054,"1089":0.1783567134,"1090":0.1803607214,"1091":0.1823647295,"1092":0.1843687375,"1093":0.1863727455,"1094":0.1883767535,"1095":0.1903807615,"1096":0.1923847695,"1097":0.1943887776,"1098":0.1963927856,"1099":0.1983967936,"1100":0.2004008016,"1101":0.2024048096,"1102":0.2044088176,"1103":0.2064128257,"1104":0.2084168337,"1105":0.2104208417,"1106":0.2124248497,"1107":0.2144288577,"1108":0.2164328657,"1109":0.2184368737,"1110":0.2204408818,"1111":0.2224448898,"1112":0.2244488978,"1113":0.2264529058,"1114":0.2284569138,"1115":0.2304609218,"1116":0.2324649299,"1117":0.2344689379,"1118":0.2364729459,"1119":0.2384769539,"1120":0.2404809619,"1121":0.2424849699,"1122":0.244488978,"1123":0.246492986,"1124":0.248496994,"1125":0.250501002,"1126":0.25250501,"1127":0.254509018,"1128":0.2565130261,"1129":0.2585170341,"1130":0.2605210421,"1131":0.2625250501,"1132":0.2645290581,"1133":0.2665330661,"1134":0.2685370741,"1135":0.2705410822,"1136":0.2725450902,"1137":0.2745490982,"1138":0.2765531062,"1139":0.2785571142,"1140":0.2805611222,"1141":0.2825651303,"1142":0.2845691383,"1143":0.2865731463,"1144":0.2885771543,"1145":0.2905811623,"1146":0.2925851703,"1147":0.2945891784,"1148":0.2965931864,"1149":0.2985971944,"1150":0.3006012024,"1151":0.3026052104,"1152":0.3046092184,"1153":0.3066132265,"1154":0.3086172345,"1155":0.3106212425,"1156":0.3126252505,"1157":0.3146292585,"1158":0.3166332665,"1159":0.3186372745,"1160":0.3206412826,"1161":0.3226452906,"1162":0.3246492986,"1163":0.3266533066,"1164":0.3286573146,"1165":0.3306613226,"1166":0.3326653307,"1167":0.3346693387,"1168":0.3366733467,"1169":0.3386773547,"1170":0.3406813627,"1171":0.3426853707,"1172":0.3446893788,"1173":0.3466933868,"1174":0.3486973948,"1175":0.3507014028,"1176":0.3527054108,"1177":0.3547094188,"1178":0.3567134269,"1179":0.3587174349,"1180":0.3607214429,"1181":0.3627254509,"1182":0.3647294589,"1183":0.3667334669,"1184":0.3687374749,"1185":0.370741483,"1186":0.372745491,"1187":0.374749499,"1188":0.376753507,"1189":0.378757515,"1190":0.380761523,"1191":0.3827655311,"1192":0.3847695391,"1193":0.3867735471,"1194":0.3887775551,"1195":0.3907815631,"1196":0.3927855711,"1197":0.3947895792,"1198":0.3967935872,"1199":0.3987975952,"1200":0.4008016032,"1201":0.4028056112,"1202":0.4048096192,"1203":0.4068136273,"1204":0.4088176353,"1205":0.4108216433,"1206":0.4128256513,"1207":0.4148296593,"1208":0.4168336673,"1209":0.4188376754,"1210":0.4208416834,"1211":0.4228456914,"1212":0.4248496994,"1213":0.4268537074,"1214":0.4288577154,"1215":0.4308617234,"1216":0.4328657315,"1217":0.4348697395,"1218":0.4368737475,"1219":0.4388777555,"1220":0.4408817635,"1221":0.4428857715,"1222":0.4448897796,"1223":0.4468937876,"1224":0.4488977956,"1225":0.4509018036,"1226":0.4529058116,"1227":0.4549098196,"1228":0.4569138277,"1229":0.4589178357,"1230":0.4609218437,"1231":0.4629258517,"1232":0.4649298597,"1233":0.4669338677,"1234":0.4689378758,"1235":0.4709418838,"1236":0.4729458918,"1237":0.4749498998,"1238":0.4769539078,"1239":0.4789579158,"1240":0.4809619238,"1241":0.4829659319,"1242":0.4849699399,"1243":0.4869739479,"1244":0.4889779559,"1245":0.4909819639,"1246":0.4929859719,"1247":0.49498998,"1248":0.496993988,"1249":0.498997996,"1250":0.501002004,"1251":0.503006012,"1252":0.50501002,"1253":0.5070140281,"1254":0.5090180361,"1255":0.5110220441,"1256":0.5130260521,"1257":0.5150300601,"1258":0.5170340681,"1259":0.5190380762,"1260":0.5210420842,"1261":0.5230460922,"1262":0.5250501002,"1263":0.5270541082,"1264":0.5290581162,"1265":0.5310621242,"1266":0.5330661323,"1267":0.5350701403,"1268":0.5370741483,"1269":0.5390781563,"1270":0.5410821643,"1271":0.5430861723,"1272":0.5450901804,"1273":0.5470941884,"1274":0.5490981964,"1275":0.5511022044,"1276":0.5531062124,"1277":0.5551102204,"1278":0.5571142285,"1279":0.5591182365,"1280":0.5611222445,"1281":0.5631262525,"1282":0.5651302605,"1283":0.5671342685,"1284":0.5691382766,"1285":0.5711422846,"1286":0.5731462926,"1287":0.5751503006,"1288":0.5771543086,"1289":0.5791583166,"1290":0.5811623246,"1291":0.5831663327,"1292":0.5851703407,"1293":0.5871743487,"1294":0.5891783567,"1295":0.5911823647,"1296":0.5931863727,"1297":0.5951903808,"1298":0.5971943888,"1299":0.5991983968,"1300":0.6012024048,"1301":0.6032064128,"1302":0.6052104208,"1303":0.6072144289,"1304":0.6092184369,"1305":0.6112224449,"1306":0.6132264529,"1307":0.6152304609,"1308":0.6172344689,"1309":0.619238477,"1310":0.621242485,"1311":0.623246493,"1312":0.625250501,"1313":0.627254509,"1314":0.629258517,"1315":0.6312625251,"1316":0.6332665331,"1317":0.6352705411,"1318":0.6372745491,"1319":0.6392785571,"1320":0.6412825651,"1321":0.6432865731,"1322":0.6452905812,"1323":0.6472945892,"1324":0.6492985972,"1325":0.6513026052,"1326":0.6533066132,"1327":0.6553106212,"1328":0.6573146293,"1329":0.6593186373,"1330":0.6613226453,"1331":0.6633266533,"1332":0.6653306613,"1333":0.6673346693,"1334":0.6693386774,"1335":0.6713426854,"1336":0.6733466934,"1337":0.6753507014,"1338":0.6773547094,"1339":0.6793587174,"1340":0.6813627255,"1341":0.6833667335,"1342":0.6853707415,"1343":0.6873747495,"1344":0.6893787575,"1345":0.6913827655,"1346":0.6933867735,"1347":0.6953907816,"1348":0.6973947896,"1349":0.6993987976,"1350":0.7014028056,"1351":0.7034068136,"1352":0.7054108216,"1353":0.7074148297,"1354":0.7094188377,"1355":0.7114228457,"1356":0.7134268537,"1357":0.7154308617,"1358":0.7174348697,"1359":0.7194388778,"1360":0.7214428858,"1361":0.7234468938,"1362":0.7254509018,"1363":0.7274549098,"1364":0.7294589178,"1365":0.7314629259,"1366":0.7334669339,"1367":0.7354709419,"1368":0.7374749499,"1369":0.7394789579,"1370":0.7414829659,"1371":0.7434869739,"1372":0.745490982,"1373":0.74749499,"1374":0.749498998,"1375":0.751503006,"1376":0.753507014,"1377":0.755511022,"1378":0.7575150301,"1379":0.7595190381,"1380":0.7615230461,"1381":0.7635270541,"1382":0.7655310621,"1383":0.7675350701,"1384":0.7695390782,"1385":0.7715430862,"1386":0.7735470942,"1387":0.7755511022,"1388":0.7775551102,"1389":0.7795591182,"1390":0.7815631263,"1391":0.7835671343,"1392":0.7855711423,"1393":0.7875751503,"1394":0.7895791583,"1395":0.7915831663,"1396":0.7935871743,"1397":0.7955911824,"1398":0.7975951904,"1399":0.7995991984,"1400":0.8016032064,"1401":0.8036072144,"1402":0.8056112224,"1403":0.8076152305,"1404":0.8096192385,"1405":0.8116232465,"1406":0.8136272545,"1407":0.8156312625,"1408":0.8176352705,"1409":0.8196392786,"1410":0.8216432866,"1411":0.8236472946,"1412":0.8256513026,"1413":0.8276553106,"1414":0.8296593186,"1415":0.8316633267,"1416":0.8336673347,"1417":0.8356713427,"1418":0.8376753507,"1419":0.8396793587,"1420":0.8416833667,"1421":0.8436873747,"1422":0.8456913828,"1423":0.8476953908,"1424":0.8496993988,"1425":0.8517034068,"1426":0.8537074148,"1427":0.8557114228,"1428":0.8577154309,"1429":0.8597194389,"1430":0.8617234469,"1431":0.8637274549,"1432":0.8657314629,"1433":0.8677354709,"1434":0.869739479,"1435":0.871743487,"1436":0.873747495,"1437":0.875751503,"1438":0.877755511,"1439":0.879759519,"1440":0.8817635271,"1441":0.8837675351,"1442":0.8857715431,"1443":0.8877755511,"1444":0.8897795591,"1445":0.8917835671,"1446":0.8937875752,"1447":0.8957915832,"1448":0.8977955912,"1449":0.8997995992,"1450":0.9018036072,"1451":0.9038076152,"1452":0.9058116232,"1453":0.9078156313,"1454":0.9098196393,"1455":0.9118236473,"1456":0.9138276553,"1457":0.9158316633,"1458":0.9178356713,"1459":0.9198396794,"1460":0.9218436874,"1461":0.9238476954,"1462":0.9258517034,"1463":0.9278557114,"1464":0.9298597194,"1465":0.9318637275,"1466":0.9338677355,"1467":0.9358717435,"1468":0.9378757515,"1469":0.9398797595,"1470":0.9418837675,"1471":0.9438877756,"1472":0.9458917836,"1473":0.9478957916,"1474":0.9498997996,"1475":0.9519038076,"1476":0.9539078156,"1477":0.9559118236,"1478":0.9579158317,"1479":0.9599198397,"1480":0.9619238477,"1481":0.9639278557,"1482":0.9659318637,"1483":0.9679358717,"1484":0.9699398798,"1485":0.9719438878,"1486":0.9739478958,"1487":0.9759519038,"1488":0.9779559118,"1489":0.9799599198,"1490":0.9819639279,"1491":0.9839679359,"1492":0.9859719439,"1493":0.9879759519,"1494":0.9899799599,"1495":0.9919839679,"1496":0.993987976,"1497":0.995991984,"1498":0.997995992,"1499":1.0,"1500":0.0,"1501":0.002004008,"1502":0.004008016,"1503":0.006012024,"1504":0.0080160321,"1505":0.0100200401,"1506":0.0120240481,"1507":0.0140280561,"1508":0.0160320641,"1509":0.0180360721,"1510":0.0200400802,"1511":0.0220440882,"1512":0.0240480962,"1513":0.0260521042,"1514":0.0280561122,"1515":0.0300601202,"1516":0.0320641283,"1517":0.0340681363,"1518":0.0360721443,"1519":0.0380761523,"1520":0.0400801603,"1521":0.0420841683,"1522":0.0440881764,"1523":0.0460921844,"1524":0.0480961924,"1525":0.0501002004,"1526":0.0521042084,"1527":0.0541082164,"1528":0.0561122244,"1529":0.0581162325,"1530":0.0601202405,"1531":0.0621242485,"1532":0.0641282565,"1533":0.0661322645,"1534":0.0681362725,"1535":0.0701402806,"1536":0.0721442886,"1537":0.0741482966,"1538":0.0761523046,"1539":0.0781563126,"1540":0.0801603206,"1541":0.0821643287,"1542":0.0841683367,"1543":0.0861723447,"1544":0.0881763527,"1545":0.0901803607,"1546":0.0921843687,"1547":0.0941883768,"1548":0.0961923848,"1549":0.0981963928,"1550":0.1002004008,"1551":0.1022044088,"1552":0.1042084168,"1553":0.1062124248,"1554":0.1082164329,"1555":0.1102204409,"1556":0.1122244489,"1557":0.1142284569,"1558":0.1162324649,"1559":0.1182364729,"1560":0.120240481,"1561":0.122244489,"1562":0.124248497,"1563":0.126252505,"1564":0.128256513,"1565":0.130260521,"1566":0.1322645291,"1567":0.1342685371,"1568":0.1362725451,"1569":0.1382765531,"1570":0.1402805611,"1571":0.1422845691,"1572":0.1442885772,"1573":0.1462925852,"1574":0.1482965932,"1575":0.1503006012,"1576":0.1523046092,"1577":0.1543086172,"1578":0.1563126253,"1579":0.1583166333,"1580":0.1603206413,"1581":0.1623246493,"1582":0.1643286573,"1583":0.1663326653,"1584":0.1683366733,"1585":0.1703406814,"1586":0.1723446894,"1587":0.1743486974,"1588":0.1763527054,"1589":0.1783567134,"1590":0.1803607214,"1591":0.1823647295,"1592":0.1843687375,"1593":0.1863727455,"1594":0.1883767535,"1595":0.1903807615,"1596":0.1923847695,"1597":0.1943887776,"1598":0.1963927856,"1599":0.1983967936,"1600":0.2004008016,"1601":0.2024048096,"1602":0.2044088176,"1603":0.2064128257,"1604":0.2084168337,"1605":0.2104208417,"1606":0.2124248497,"1607":0.2144288577,"1608":0.2164328657,"1609":0.2184368737,"1610":0.2204408818,"1611":0.2224448898,"1612":0.2244488978,"1613":0.2264529058,"1614":0.2284569138,"1615":0.2304609218,"1616":0.2324649299,"1617":0.2344689379,"1618":0.2364729459,"1619":0.2384769539,"1620":0.2404809619,"1621":0.2424849699,"1622":0.244488978,"1623":0.246492986,"1624":0.248496994,"1625":0.250501002,"1626":0.25250501,"1627":0.254509018,"1628":0.2565130261,"1629":0.2585170341,"1630":0.2605210421,"1631":0.2625250501,"1632":0.2645290581,"1633":0.2665330661,"1634":0.2685370741,"1635":0.2705410822,"1636":0.2725450902,"1637":0.2745490982,"1638":0.2765531062,"1639":0.2785571142,"1640":0.2805611222,"1641":0.2825651303,"1642":0.2845691383,"1643":0.2865731463,"1644":0.2885771543,"1645":0.2905811623,"1646":0.2925851703,"1647":0.2945891784,"1648":0.2965931864,"1649":0.2985971944,"1650":0.3006012024,"1651":0.3026052104,"1652":0.3046092184,"1653":0.3066132265,"1654":0.3086172345,"1655":0.3106212425,"1656":0.3126252505,"1657":0.3146292585,"1658":0.3166332665,"1659":0.3186372745,"1660":0.3206412826,"1661":0.3226452906,"1662":0.3246492986,"1663":0.3266533066,"1664":0.3286573146,"1665":0.3306613226,"1666":0.3326653307,"1667":0.3346693387,"1668":0.3366733467,"1669":0.3386773547,"1670":0.3406813627,"1671":0.3426853707,"1672":0.3446893788,"1673":0.3466933868,"1674":0.3486973948,"1675":0.3507014028,"1676":0.3527054108,"1677":0.3547094188,"1678":0.3567134269,"1679":0.3587174349,"1680":0.3607214429,"1681":0.3627254509,"1682":0.3647294589,"1683":0.3667334669,"1684":0.3687374749,"1685":0.370741483,"1686":0.372745491,"1687":0.374749499,"1688":0.376753507,"1689":0.378757515,"1690":0.380761523,"1691":0.3827655311,"1692":0.3847695391,"1693":0.3867735471,"1694":0.3887775551,"1695":0.3907815631,"1696":0.3927855711,"1697":0.3947895792,"1698":0.3967935872,"1699":0.3987975952,"1700":0.4008016032,"1701":0.4028056112,"1702":0.4048096192,"1703":0.4068136273,"1704":0.4088176353,"1705":0.4108216433,"1706":0.4128256513,"1707":0.4148296593,"1708":0.4168336673,"1709":0.4188376754,"1710":0.4208416834,"1711":0.4228456914,"1712":0.4248496994,"1713":0.4268537074,"1714":0.4288577154,"1715":0.4308617234,"1716":0.4328657315,"1717":0.4348697395,"1718":0.4368737475,"1719":0.4388777555,"1720":0.4408817635,"1721":0.4428857715,"1722":0.4448897796,"1723":0.4468937876,"1724":0.4488977956,"1725":0.4509018036,"1726":0.4529058116,"1727":0.4549098196,"1728":0.4569138277,"1729":0.4589178357,"1730":0.4609218437,"1731":0.4629258517,"1732":0.4649298597,"1733":0.4669338677,"1734":0.4689378758,"1735":0.4709418838,"1736":0.4729458918,"1737":0.4749498998,"1738":0.4769539078,"1739":0.4789579158,"1740":0.4809619238,"1741":0.4829659319,"1742":0.4849699399,"1743":0.4869739479,"1744":0.4889779559,"1745":0.4909819639,"1746":0.4929859719,"1747":0.49498998,"1748":0.496993988,"1749":0.498997996,"1750":0.501002004,"1751":0.503006012,"1752":0.50501002,"1753":0.5070140281,"1754":0.5090180361,"1755":0.5110220441,"1756":0.5130260521,"1757":0.5150300601,"1758":0.5170340681,"1759":0.5190380762,"1760":0.5210420842,"1761":0.5230460922,"1762":0.5250501002,"1763":0.5270541082,"1764":0.5290581162,"1765":0.5310621242,"1766":0.5330661323,"1767":0.5350701403,"1768":0.5370741483,"1769":0.5390781563,"1770":0.5410821643,"1771":0.5430861723,"1772":0.5450901804,"1773":0.5470941884,"1774":0.5490981964,"1775":0.5511022044,"1776":0.5531062124,"1777":0.5551102204,"1778":0.5571142285,"1779":0.5591182365,"1780":0.5611222445,"1781":0.5631262525,"1782":0.5651302605,"1783":0.5671342685,"1784":0.5691382766,"1785":0.5711422846,"1786":0.5731462926,"1787":0.5751503006,"1788":0.5771543086,"1789":0.5791583166,"1790":0.5811623246,"1791":0.5831663327,"1792":0.5851703407,"1793":0.5871743487,"1794":0.5891783567,"1795":0.5911823647,"1796":0.5931863727,"1797":0.5951903808,"1798":0.5971943888,"1799":0.5991983968,"1800":0.6012024048,"1801":0.6032064128,"1802":0.6052104208,"1803":0.6072144289,"1804":0.6092184369,"1805":0.6112224449,"1806":0.6132264529,"1807":0.6152304609,"1808":0.6172344689,"1809":0.619238477,"1810":0.621242485,"1811":0.623246493,"1812":0.625250501,"1813":0.627254509,"1814":0.629258517,"1815":0.6312625251,"1816":0.6332665331,"1817":0.6352705411,"1818":0.6372745491,"1819":0.6392785571,"1820":0.6412825651,"1821":0.6432865731,"1822":0.6452905812,"1823":0.6472945892,"1824":0.6492985972,"1825":0.6513026052,"1826":0.6533066132,"1827":0.6553106212,"1828":0.6573146293,"1829":0.6593186373,"1830":0.6613226453,"1831":0.6633266533,"1832":0.6653306613,"1833":0.6673346693,"1834":0.6693386774,"1835":0.6713426854,"1836":0.6733466934,"1837":0.6753507014,"1838":0.6773547094,"1839":0.6793587174,"1840":0.6813627255,"1841":0.6833667335,"1842":0.6853707415,"1843":0.6873747495,"1844":0.6893787575,"1845":0.6913827655,"1846":0.6933867735,"1847":0.6953907816,"1848":0.6973947896,"1849":0.6993987976,"1850":0.7014028056,"1851":0.7034068136,"1852":0.7054108216,"1853":0.7074148297,"1854":0.7094188377,"1855":0.7114228457,"1856":0.7134268537,"1857":0.7154308617,"1858":0.7174348697,"1859":0.7194388778,"1860":0.7214428858,"1861":0.7234468938,"1862":0.7254509018,"1863":0.7274549098,"1864":0.7294589178,"1865":0.7314629259,"1866":0.7334669339,"1867":0.7354709419,"1868":0.7374749499,"1869":0.7394789579,"1870":0.7414829659,"1871":0.7434869739,"1872":0.745490982,"1873":0.74749499,"1874":0.749498998,"1875":0.751503006,"1876":0.753507014,"1877":0.755511022,"1878":0.7575150301,"1879":0.7595190381,"1880":0.7615230461,"1881":0.7635270541,"1882":0.7655310621,"1883":0.7675350701,"1884":0.7695390782,"1885":0.7715430862,"1886":0.7735470942,"1887":0.7755511022,"1888":0.7775551102,"1889":0.7795591182,"1890":0.7815631263,"1891":0.7835671343,"1892":0.7855711423,"1893":0.7875751503,"1894":0.7895791583,"1895":0.7915831663,"1896":0.7935871743,"1897":0.7955911824,"1898":0.7975951904,"1899":0.7995991984,"1900":0.8016032064,"1901":0.8036072144,"1902":0.8056112224,"1903":0.8076152305,"1904":0.8096192385,"1905":0.8116232465,"1906":0.8136272545,"1907":0.8156312625,"1908":0.8176352705,"1909":0.8196392786,"1910":0.8216432866,"1911":0.8236472946,"1912":0.8256513026,"1913":0.8276553106,"1914":0.8296593186,"1915":0.8316633267,"1916":0.8336673347,"1917":0.8356713427,"1918":0.8376753507,"1919":0.8396793587,"1920":0.8416833667,"1921":0.8436873747,"1922":0.8456913828,"1923":0.8476953908,"1924":0.8496993988,"1925":0.8517034068,"1926":0.8537074148,"1927":0.8557114228,"1928":0.8577154309,"1929":0.8597194389,"1930":0.8617234469,"1931":0.8637274549,"1932":0.8657314629,"1933":0.8677354709,"1934":0.869739479,"1935":0.871743487,"1936":0.873747495,"1937":0.875751503,"1938":0.877755511,"1939":0.879759519,"1940":0.8817635271,"1941":0.8837675351,"1942":0.8857715431,"1943":0.8877755511,"1944":0.8897795591,"1945":0.8917835671,"1946":0.8937875752,"1947":0.8957915832,"1948":0.8977955912,"1949":0.8997995992,"1950":0.9018036072,"1951":0.9038076152,"1952":0.9058116232,"1953":0.9078156313,"1954":0.9098196393,"1955":0.9118236473,"1956":0.9138276553,"1957":0.9158316633,"1958":0.9178356713,"1959":0.9198396794,"1960":0.9218436874,"1961":0.9238476954,"1962":0.9258517034,"1963":0.9278557114,"1964":0.9298597194,"1965":0.9318637275,"1966":0.9338677355,"1967":0.9358717435,"1968":0.9378757515,"1969":0.9398797595,"1970":0.9418837675,"1971":0.9438877756,"1972":0.9458917836,"1973":0.9478957916,"1974":0.9498997996,"1975":0.9519038076,"1976":0.9539078156,"1977":0.9559118236,"1978":0.9579158317,"1979":0.9599198397,"1980":0.9619238477,"1981":0.9639278557,"1982":0.9659318637,"1983":0.9679358717,"1984":0.9699398798,"1985":0.9719438878,"1986":0.9739478958,"1987":0.9759519038,"1988":0.9779559118,"1989":0.9799599198,"1990":0.9819639279,"1991":0.9839679359,"1992":0.9859719439,"1993":0.9879759519,"1994":0.9899799599,"1995":0.9919839679,"1996":0.993987976,"1997":0.995991984,"1998":0.997995992,"1999":1.0,"2000":0.0,"2001":0.002004008,"2002":0.004008016,"2003":0.006012024,"2004":0.0080160321,"2005":0.0100200401,"2006":0.0120240481,"2007":0.0140280561,"2008":0.0160320641,"2009":0.0180360721,"2010":0.0200400802,"2011":0.0220440882,"2012":0.0240480962,"2013":0.0260521042,"2014":0.0280561122,"2015":0.0300601202,"2016":0.0320641283,"2017":0.0340681363,"2018":0.0360721443,"2019":0.0380761523,"2020":0.0400801603,"2021":0.0420841683,"2022":0.0440881764,"2023":0.0460921844,"2024":0.0480961924,"2025":0.0501002004,"2026":0.0521042084,"2027":0.0541082164,"2028":0.0561122244,"2029":0.0581162325,"2030":0.0601202405,"2031":0.0621242485,"2032":0.0641282565,"2033":0.0661322645,"2034":0.0681362725,"2035":0.0701402806,"2036":0.0721442886,"2037":0.0741482966,"2038":0.0761523046,"2039":0.0781563126,"2040":0.0801603206,"2041":0.0821643287,"2042":0.0841683367,"2043":0.0861723447,"2044":0.0881763527,"2045":0.0901803607,"2046":0.0921843687,"2047":0.0941883768,"2048":0.0961923848,"2049":0.0981963928,"2050":0.1002004008,"2051":0.1022044088,"2052":0.1042084168,"2053":0.1062124248,"2054":0.1082164329,"2055":0.1102204409,"2056":0.1122244489,"2057":0.1142284569,"2058":0.1162324649,"2059":0.1182364729,"2060":0.120240481,"2061":0.122244489,"2062":0.124248497,"2063":0.126252505,"2064":0.128256513,"2065":0.130260521,"2066":0.1322645291,"2067":0.1342685371,"2068":0.1362725451,"2069":0.1382765531,"2070":0.1402805611,"2071":0.1422845691,"2072":0.1442885772,"2073":0.1462925852,"2074":0.1482965932,"2075":0.1503006012,"2076":0.1523046092,"2077":0.1543086172,"2078":0.1563126253,"2079":0.1583166333,"2080":0.1603206413,"2081":0.1623246493,"2082":0.1643286573,"2083":0.1663326653,"2084":0.1683366733,"2085":0.1703406814,"2086":0.1723446894,"2087":0.1743486974,"2088":0.1763527054,"2089":0.1783567134,"2090":0.1803607214,"2091":0.1823647295,"2092":0.1843687375,"2093":0.1863727455,"2094":0.1883767535,"2095":0.1903807615,"2096":0.1923847695,"2097":0.1943887776,"2098":0.1963927856,"2099":0.1983967936,"2100":0.2004008016,"2101":0.2024048096,"2102":0.2044088176,"2103":0.2064128257,"2104":0.2084168337,"2105":0.2104208417,"2106":0.2124248497,"2107":0.2144288577,"2108":0.2164328657,"2109":0.2184368737,"2110":0.2204408818,"2111":0.2224448898,"2112":0.2244488978,"2113":0.2264529058,"2114":0.2284569138,"2115":0.2304609218,"2116":0.2324649299,"2117":0.2344689379,"2118":0.2364729459,"2119":0.2384769539,"2120":0.2404809619,"2121":0.2424849699,"2122":0.244488978,"2123":0.246492986,"2124":0.248496994,"2125":0.250501002,"2126":0.25250501,"2127":0.254509018,"2128":0.2565130261,"2129":0.2585170341,"2130":0.2605210421,"2131":0.2625250501,"2132":0.2645290581,"2133":0.2665330661,"2134":0.2685370741,"2135":0.2705410822,"2136":0.2725450902,"2137":0.2745490982,"2138":0.2765531062,"2139":0.2785571142,"2140":0.2805611222,"2141":0.2825651303,"2142":0.2845691383,"2143":0.2865731463,"2144":0.2885771543,"2145":0.2905811623,"2146":0.2925851703,"2147":0.2945891784,"2148":0.2965931864,"2149":0.2985971944,"2150":0.3006012024,"2151":0.3026052104,"2152":0.3046092184,"2153":0.3066132265,"2154":0.3086172345,"2155":0.3106212425,"2156":0.3126252505,"2157":0.3146292585,"2158":0.3166332665,"2159":0.3186372745,"2160":0.3206412826,"2161":0.3226452906,"2162":0.3246492986,"2163":0.3266533066,"2164":0.3286573146,"2165":0.3306613226,"2166":0.3326653307,"2167":0.3346693387,"2168":0.3366733467,"2169":0.3386773547,"2170":0.3406813627,"2171":0.3426853707,"2172":0.3446893788,"2173":0.3466933868,"2174":0.3486973948,"2175":0.3507014028,"2176":0.3527054108,"2177":0.3547094188,"2178":0.3567134269,"2179":0.3587174349,"2180":0.3607214429,"2181":0.3627254509,"2182":0.3647294589,"2183":0.3667334669,"2184":0.3687374749,"2185":0.370741483,"2186":0.372745491,"2187":0.374749499,"2188":0.376753507,"2189":0.378757515,"2190":0.380761523,"2191":0.3827655311,"2192":0.3847695391,"2193":0.3867735471,"2194":0.3887775551,"2195":0.3907815631,"2196":0.3927855711,"2197":0.3947895792,"2198":0.3967935872,"2199":0.3987975952,"2200":0.4008016032,"2201":0.4028056112,"2202":0.4048096192,"2203":0.4068136273,"2204":0.4088176353,"2205":0.4108216433,"2206":0.4128256513,"2207":0.4148296593,"2208":0.4168336673,"2209":0.4188376754,"2210":0.4208416834,"2211":0.4228456914,"2212":0.4248496994,"2213":0.4268537074,"2214":0.4288577154,"2215":0.4308617234,"2216":0.4328657315,"2217":0.4348697395,"2218":0.4368737475,"2219":0.4388777555,"2220":0.4408817635,"2221":0.4428857715,"2222":0.4448897796,"2223":0.4468937876,"2224":0.4488977956,"2225":0.4509018036,"2226":0.4529058116,"2227":0.4549098196,"2228":0.4569138277,"2229":0.4589178357,"2230":0.4609218437,"2231":0.4629258517,"2232":0.4649298597,"2233":0.4669338677,"2234":0.4689378758,"2235":0.4709418838,"2236":0.4729458918,"2237":0.4749498998,"2238":0.4769539078,"2239":0.4789579158,"2240":0.4809619238,"2241":0.4829659319,"2242":0.4849699399,"2243":0.4869739479,"2244":0.4889779559,"2245":0.4909819639,"2246":0.4929859719,"2247":0.49498998,"2248":0.496993988,"2249":0.498997996,"2250":0.501002004,"2251":0.503006012,"2252":0.50501002,"2253":0.5070140281,"2254":0.5090180361,"2255":0.5110220441,"2256":0.5130260521,"2257":0.5150300601,"2258":0.5170340681,"2259":0.5190380762,"2260":0.5210420842,"2261":0.5230460922,"2262":0.5250501002,"2263":0.5270541082,"2264":0.5290581162,"2265":0.5310621242,"2266":0.5330661323,"2267":0.5350701403,"2268":0.5370741483,"2269":0.5390781563,"2270":0.5410821643,"2271":0.5430861723,"2272":0.5450901804,"2273":0.5470941884,"2274":0.5490981964,"2275":0.5511022044,"2276":0.5531062124,"2277":0.5551102204,"2278":0.5571142285,"2279":0.5591182365,"2280":0.5611222445,"2281":0.5631262525,"2282":0.5651302605,"2283":0.5671342685,"2284":0.5691382766,"2285":0.5711422846,"2286":0.5731462926,"2287":0.5751503006,"2288":0.5771543086,"2289":0.5791583166,"2290":0.5811623246,"2291":0.5831663327,"2292":0.5851703407,"2293":0.5871743487,"2294":0.5891783567,"2295":0.5911823647,"2296":0.5931863727,"2297":0.5951903808,"2298":0.5971943888,"2299":0.5991983968,"2300":0.6012024048,"2301":0.6032064128,"2302":0.6052104208,"2303":0.6072144289,"2304":0.6092184369,"2305":0.6112224449,"2306":0.6132264529,"2307":0.6152304609,"2308":0.6172344689,"2309":0.619238477,"2310":0.621242485,"2311":0.623246493,"2312":0.625250501,"2313":0.627254509,"2314":0.629258517,"2315":0.6312625251,"2316":0.6332665331,"2317":0.6352705411,"2318":0.6372745491,"2319":0.6392785571,"2320":0.6412825651,"2321":0.6432865731,"2322":0.6452905812,"2323":0.6472945892,"2324":0.6492985972,"2325":0.6513026052,"2326":0.6533066132,"2327":0.6553106212,"2328":0.6573146293,"2329":0.6593186373,"2330":0.6613226453,"2331":0.6633266533,"2332":0.6653306613,"2333":0.6673346693,"2334":0.6693386774,"2335":0.6713426854,"2336":0.6733466934,"2337":0.6753507014,"2338":0.6773547094,"2339":0.6793587174,"2340":0.6813627255,"2341":0.6833667335,"2342":0.6853707415,"2343":0.6873747495,"2344":0.6893787575,"2345":0.6913827655,"2346":0.6933867735,"2347":0.6953907816,"2348":0.6973947896,"2349":0.6993987976,"2350":0.7014028056,"2351":0.7034068136,"2352":0.7054108216,"2353":0.7074148297,"2354":0.7094188377,"2355":0.7114228457,"2356":0.7134268537,"2357":0.7154308617,"2358":0.7174348697,"2359":0.7194388778,"2360":0.7214428858,"2361":0.7234468938,"2362":0.7254509018,"2363":0.7274549098,"2364":0.7294589178,"2365":0.7314629259,"2366":0.7334669339,"2367":0.7354709419,"2368":0.7374749499,"2369":0.7394789579,"2370":0.7414829659,"2371":0.7434869739,"2372":0.745490982,"2373":0.74749499,"2374":0.749498998,"2375":0.751503006,"2376":0.753507014,"2377":0.755511022,"2378":0.7575150301,"2379":0.7595190381,"2380":0.7615230461,"2381":0.7635270541,"2382":0.7655310621,"2383":0.7675350701,"2384":0.7695390782,"2385":0.7715430862,"2386":0.7735470942,"2387":0.7755511022,"2388":0.7775551102,"2389":0.7795591182,"2390":0.7815631263,"2391":0.7835671343,"2392":0.7855711423,"2393":0.7875751503,"2394":0.7895791583,"2395":0.7915831663,"2396":0.7935871743,"2397":0.7955911824,"2398":0.7975951904,"2399":0.7995991984,"2400":0.8016032064,"2401":0.8036072144,"2402":0.8056112224,"2403":0.8076152305,"2404":0.8096192385,"2405":0.8116232465,"2406":0.8136272545,"2407":0.8156312625,"2408":0.8176352705,"2409":0.8196392786,"2410":0.8216432866,"2411":0.8236472946,"2412":0.8256513026,"2413":0.8276553106,"2414":0.8296593186,"2415":0.8316633267,"2416":0.8336673347,"2417":0.8356713427,"2418":0.8376753507,"2419":0.8396793587,"2420":0.8416833667,"2421":0.8436873747,"2422":0.8456913828,"2423":0.8476953908,"2424":0.8496993988,"2425":0.8517034068,"2426":0.8537074148,"2427":0.8557114228,"2428":0.8577154309,"2429":0.8597194389,"2430":0.8617234469,"2431":0.8637274549,"2432":0.8657314629,"2433":0.8677354709,"2434":0.869739479,"2435":0.871743487,"2436":0.873747495,"2437":0.875751503,"2438":0.877755511,"2439":0.879759519,"2440":0.8817635271,"2441":0.8837675351,"2442":0.8857715431,"2443":0.8877755511,"2444":0.8897795591,"2445":0.8917835671,"2446":0.8937875752,"2447":0.8957915832,"2448":0.8977955912,"2449":0.8997995992,"2450":0.9018036072,"2451":0.9038076152,"2452":0.9058116232,"2453":0.9078156313,"2454":0.9098196393,"2455":0.9118236473,"2456":0.9138276553,"2457":0.9158316633,"2458":0.9178356713,"2459":0.9198396794,"2460":0.9218436874,"2461":0.9238476954,"2462":0.9258517034,"2463":0.9278557114,"2464":0.9298597194,"2465":0.9318637275,"2466":0.9338677355,"2467":0.9358717435,"2468":0.9378757515,"2469":0.9398797595,"2470":0.9418837675,"2471":0.9438877756,"2472":0.9458917836,"2473":0.9478957916,"2474":0.9498997996,"2475":0.9519038076,"2476":0.9539078156,"2477":0.9559118236,"2478":0.9579158317,"2479":0.9599198397,"2480":0.9619238477,"2481":0.9639278557,"2482":0.9659318637,"2483":0.9679358717,"2484":0.9699398798,"2485":0.9719438878,"2486":0.9739478958,"2487":0.9759519038,"2488":0.9779559118,"2489":0.9799599198,"2490":0.9819639279,"2491":0.9839679359,"2492":0.9859719439,"2493":0.9879759519,"2494":0.9899799599,"2495":0.9919839679,"2496":0.993987976,"2497":0.995991984,"2498":0.997995992,"2499":1.0,"2500":0.0,"2501":0.002004008,"2502":0.004008016,"2503":0.006012024,"2504":0.0080160321,"2505":0.0100200401,"2506":0.0120240481,"2507":0.0140280561,"2508":0.0160320641,"2509":0.0180360721,"2510":0.0200400802,"2511":0.0220440882,"2512":0.0240480962,"2513":0.0260521042,"2514":0.0280561122,"2515":0.0300601202,"2516":0.0320641283,"2517":0.0340681363,"2518":0.0360721443,"2519":0.0380761523,"2520":0.0400801603,"2521":0.0420841683,"2522":0.0440881764,"2523":0.0460921844,"2524":0.0480961924,"2525":0.0501002004,"2526":0.0521042084,"2527":0.0541082164,"2528":0.0561122244,"2529":0.0581162325,"2530":0.0601202405,"2531":0.0621242485,"2532":0.0641282565,"2533":0.0661322645,"2534":0.0681362725,"2535":0.0701402806,"2536":0.0721442886,"2537":0.0741482966,"2538":0.0761523046,"2539":0.0781563126,"2540":0.0801603206,"2541":0.0821643287,"2542":0.0841683367,"2543":0.0861723447,"2544":0.0881763527,"2545":0.0901803607,"2546":0.0921843687,"2547":0.0941883768,"2548":0.0961923848,"2549":0.0981963928,"2550":0.1002004008,"2551":0.1022044088,"2552":0.1042084168,"2553":0.1062124248,"2554":0.1082164329,"2555":0.1102204409,"2556":0.1122244489,"2557":0.1142284569,"2558":0.1162324649,"2559":0.1182364729,"2560":0.120240481,"2561":0.122244489,"2562":0.124248497,"2563":0.126252505,"2564":0.128256513,"2565":0.130260521,"2566":0.1322645291,"2567":0.1342685371,"2568":0.1362725451,"2569":0.1382765531,"2570":0.1402805611,"2571":0.1422845691,"2572":0.1442885772,"2573":0.1462925852,"2574":0.1482965932,"2575":0.1503006012,"2576":0.1523046092,"2577":0.1543086172,"2578":0.1563126253,"2579":0.1583166333,"2580":0.1603206413,"2581":0.1623246493,"2582":0.1643286573,"2583":0.1663326653,"2584":0.1683366733,"2585":0.1703406814,"2586":0.1723446894,"2587":0.1743486974,"2588":0.1763527054,"2589":0.1783567134,"2590":0.1803607214,"2591":0.1823647295,"2592":0.1843687375,"2593":0.1863727455,"2594":0.1883767535,"2595":0.1903807615,"2596":0.1923847695,"2597":0.1943887776,"2598":0.1963927856,"2599":0.1983967936,"2600":0.2004008016,"2601":0.2024048096,"2602":0.2044088176,"2603":0.2064128257,"2604":0.2084168337,"2605":0.2104208417,"2606":0.2124248497,"2607":0.2144288577,"2608":0.2164328657,"2609":0.2184368737,"2610":0.2204408818,"2611":0.2224448898,"2612":0.2244488978,"2613":0.2264529058,"2614":0.2284569138,"2615":0.2304609218,"2616":0.2324649299,"2617":0.2344689379,"2618":0.2364729459,"2619":0.2384769539,"2620":0.2404809619,"2621":0.2424849699,"2622":0.244488978,"2623":0.246492986,"2624":0.248496994,"2625":0.250501002,"2626":0.25250501,"2627":0.254509018,"2628":0.2565130261,"2629":0.2585170341,"2630":0.2605210421,"2631":0.2625250501,"2632":0.2645290581,"2633":0.2665330661,"2634":0.2685370741,"2635":0.2705410822,"2636":0.2725450902,"2637":0.2745490982,"2638":0.2765531062,"2639":0.2785571142,"2640":0.2805611222,"2641":0.2825651303,"2642":0.2845691383,"2643":0.2865731463,"2644":0.2885771543,"2645":0.2905811623,"2646":0.2925851703,"2647":0.2945891784,"2648":0.2965931864,"2649":0.2985971944,"2650":0.3006012024,"2651":0.3026052104,"2652":0.3046092184,"2653":0.3066132265,"2654":0.3086172345,"2655":0.3106212425,"2656":0.3126252505,"2657":0.3146292585,"2658":0.3166332665,"2659":0.3186372745,"2660":0.3206412826,"2661":0.3226452906,"2662":0.3246492986,"2663":0.3266533066,"2664":0.3286573146,"2665":0.3306613226,"2666":0.3326653307,"2667":0.3346693387,"2668":0.3366733467,"2669":0.3386773547,"2670":0.3406813627,"2671":0.3426853707,"2672":0.3446893788,"2673":0.3466933868,"2674":0.3486973948,"2675":0.3507014028,"2676":0.3527054108,"2677":0.3547094188,"2678":0.3567134269,"2679":0.3587174349,"2680":0.3607214429,"2681":0.3627254509,"2682":0.3647294589,"2683":0.3667334669,"2684":0.3687374749,"2685":0.370741483,"2686":0.372745491,"2687":0.374749499,"2688":0.376753507,"2689":0.378757515,"2690":0.380761523,"2691":0.3827655311,"2692":0.3847695391,"2693":0.3867735471,"2694":0.3887775551,"2695":0.3907815631,"2696":0.3927855711,"2697":0.3947895792,"2698":0.3967935872,"2699":0.3987975952,"2700":0.4008016032,"2701":0.4028056112,"2702":0.4048096192,"2703":0.4068136273,"2704":0.4088176353,"2705":0.4108216433,"2706":0.4128256513,"2707":0.4148296593,"2708":0.4168336673,"2709":0.4188376754,"2710":0.4208416834,"2711":0.4228456914,"2712":0.4248496994,"2713":0.4268537074,"2714":0.4288577154,"2715":0.4308617234,"2716":0.4328657315,"2717":0.4348697395,"2718":0.4368737475,"2719":0.4388777555,"2720":0.4408817635,"2721":0.4428857715,"2722":0.4448897796,"2723":0.4468937876,"2724":0.4488977956,"2725":0.4509018036,"2726":0.4529058116,"2727":0.4549098196,"2728":0.4569138277,"2729":0.4589178357,"2730":0.4609218437,"2731":0.4629258517,"2732":0.4649298597,"2733":0.4669338677,"2734":0.4689378758,"2735":0.4709418838,"2736":0.4729458918,"2737":0.4749498998,"2738":0.4769539078,"2739":0.4789579158,"2740":0.4809619238,"2741":0.4829659319,"2742":0.4849699399,"2743":0.4869739479,"2744":0.4889779559,"2745":0.4909819639,"2746":0.4929859719,"2747":0.49498998,"2748":0.496993988,"2749":0.498997996,"2750":0.501002004,"2751":0.503006012,"2752":0.50501002,"2753":0.5070140281,"2754":0.5090180361,"2755":0.5110220441,"2756":0.5130260521,"2757":0.5150300601,"2758":0.5170340681,"2759":0.5190380762,"2760":0.5210420842,"2761":0.5230460922,"2762":0.5250501002,"2763":0.5270541082,"2764":0.5290581162,"2765":0.5310621242,"2766":0.5330661323,"2767":0.5350701403,"2768":0.5370741483,"2769":0.5390781563,"2770":0.5410821643,"2771":0.5430861723,"2772":0.5450901804,"2773":0.5470941884,"2774":0.5490981964,"2775":0.5511022044,"2776":0.5531062124,"2777":0.5551102204,"2778":0.5571142285,"2779":0.5591182365,"2780":0.5611222445,"2781":0.5631262525,"2782":0.5651302605,"2783":0.5671342685,"2784":0.5691382766,"2785":0.5711422846,"2786":0.5731462926,"2787":0.5751503006,"2788":0.5771543086,"2789":0.5791583166,"2790":0.5811623246,"2791":0.5831663327,"2792":0.5851703407,"2793":0.5871743487,"2794":0.5891783567,"2795":0.5911823647,"2796":0.5931863727,"2797":0.5951903808,"2798":0.5971943888,"2799":0.5991983968,"2800":0.6012024048,"2801":0.6032064128,"2802":0.6052104208,"2803":0.6072144289,"2804":0.6092184369,"2805":0.6112224449,"2806":0.6132264529,"2807":0.6152304609,"2808":0.6172344689,"2809":0.619238477,"2810":0.621242485,"2811":0.623246493,"2812":0.625250501,"2813":0.627254509,"2814":0.629258517,"2815":0.6312625251,"2816":0.6332665331,"2817":0.6352705411,"2818":0.6372745491,"2819":0.6392785571,"2820":0.6412825651,"2821":0.6432865731,"2822":0.6452905812,"2823":0.6472945892,"2824":0.6492985972,"2825":0.6513026052,"2826":0.6533066132,"2827":0.6553106212,"2828":0.6573146293,"2829":0.6593186373,"2830":0.6613226453,"2831":0.6633266533,"2832":0.6653306613,"2833":0.6673346693,"2834":0.6693386774,"2835":0.6713426854,"2836":0.6733466934,"2837":0.6753507014,"2838":0.6773547094,"2839":0.6793587174,"2840":0.6813627255,"2841":0.6833667335,"2842":0.6853707415,"2843":0.6873747495,"2844":0.6893787575,"2845":0.6913827655,"2846":0.6933867735,"2847":0.6953907816,"2848":0.6973947896,"2849":0.6993987976,"2850":0.7014028056,"2851":0.7034068136,"2852":0.7054108216,"2853":0.7074148297,"2854":0.7094188377,"2855":0.7114228457,"2856":0.7134268537,"2857":0.7154308617,"2858":0.7174348697,"2859":0.7194388778,"2860":0.7214428858,"2861":0.7234468938,"2862":0.7254509018,"2863":0.7274549098,"2864":0.7294589178,"2865":0.7314629259,"2866":0.7334669339,"2867":0.7354709419,"2868":0.7374749499,"2869":0.7394789579,"2870":0.7414829659,"2871":0.7434869739,"2872":0.745490982,"2873":0.74749499,"2874":0.749498998,"2875":0.751503006,"2876":0.753507014,"2877":0.755511022,"2878":0.7575150301,"2879":0.7595190381,"2880":0.7615230461,"2881":0.7635270541,"2882":0.7655310621,"2883":0.7675350701,"2884":0.7695390782,"2885":0.7715430862,"2886":0.7735470942,"2887":0.7755511022,"2888":0.7775551102,"2889":0.7795591182,"2890":0.7815631263,"2891":0.7835671343,"2892":0.7855711423,"2893":0.7875751503,"2894":0.7895791583,"2895":0.7915831663,"2896":0.7935871743,"2897":0.7955911824,"2898":0.7975951904,"2899":0.7995991984,"2900":0.8016032064,"2901":0.8036072144,"2902":0.8056112224,"2903":0.8076152305,"2904":0.8096192385,"2905":0.8116232465,"2906":0.8136272545,"2907":0.8156312625,"2908":0.8176352705,"2909":0.8196392786,"2910":0.8216432866,"2911":0.8236472946,"2912":0.8256513026,"2913":0.8276553106,"2914":0.8296593186,"2915":0.8316633267,"2916":0.8336673347,"2917":0.8356713427,"2918":0.8376753507,"2919":0.8396793587,"2920":0.8416833667,"2921":0.8436873747,"2922":0.8456913828,"2923":0.8476953908,"2924":0.8496993988,"2925":0.8517034068,"2926":0.8537074148,"2927":0.8557114228,"2928":0.8577154309,"2929":0.8597194389,"2930":0.8617234469,"2931":0.8637274549,"2932":0.8657314629,"2933":0.8677354709,"2934":0.869739479,"2935":0.871743487,"2936":0.873747495,"2937":0.875751503,"2938":0.877755511,"2939":0.879759519,"2940":0.8817635271,"2941":0.8837675351,"2942":0.8857715431,"2943":0.8877755511,"2944":0.8897795591,"2945":0.8917835671,"2946":0.8937875752,"2947":0.8957915832,"2948":0.8977955912,"2949":0.8997995992,"2950":0.9018036072,"2951":0.9038076152,"2952":0.9058116232,"2953":0.9078156313,"2954":0.9098196393,"2955":0.9118236473,"2956":0.9138276553,"2957":0.9158316633,"2958":0.9178356713,"2959":0.9198396794,"2960":0.9218436874,"2961":0.9238476954,"2962":0.9258517034,"2963":0.9278557114,"2964":0.9298597194,"2965":0.9318637275,"2966":0.9338677355,"2967":0.9358717435,"2968":0.9378757515,"2969":0.9398797595,"2970":0.9418837675,"2971":0.9438877756,"2972":0.9458917836,"2973":0.9478957916,"2974":0.9498997996,"2975":0.9519038076,"2976":0.9539078156,"2977":0.9559118236,"2978":0.9579158317,"2979":0.9599198397,"2980":0.9619238477,"2981":0.9639278557,"2982":0.9659318637,"2983":0.9679358717,"2984":0.9699398798,"2985":0.9719438878,"2986":0.9739478958,"2987":0.9759519038,"2988":0.9779559118,"2989":0.9799599198,"2990":0.9819639279,"2991":0.9839679359,"2992":0.9859719439,"2993":0.9879759519,"2994":0.9899799599,"2995":0.9919839679,"2996":0.993987976,"2997":0.995991984,"2998":0.997995992,"2999":1.0,"3000":0.0,"3001":0.002004008,"3002":0.004008016,"3003":0.006012024,"3004":0.0080160321,"3005":0.0100200401,"3006":0.0120240481,"3007":0.0140280561,"3008":0.0160320641,"3009":0.0180360721,"3010":0.0200400802,"3011":0.0220440882,"3012":0.0240480962,"3013":0.0260521042,"3014":0.0280561122,"3015":0.0300601202,"3016":0.0320641283,"3017":0.0340681363,"3018":0.0360721443,"3019":0.0380761523,"3020":0.0400801603,"3021":0.0420841683,"3022":0.0440881764,"3023":0.0460921844,"3024":0.0480961924,"3025":0.0501002004,"3026":0.0521042084,"3027":0.0541082164,"3028":0.0561122244,"3029":0.0581162325,"3030":0.0601202405,"3031":0.0621242485,"3032":0.0641282565,"3033":0.0661322645,"3034":0.0681362725,"3035":0.0701402806,"3036":0.0721442886,"3037":0.0741482966,"3038":0.0761523046,"3039":0.0781563126,"3040":0.0801603206,"3041":0.0821643287,"3042":0.0841683367,"3043":0.0861723447,"3044":0.0881763527,"3045":0.0901803607,"3046":0.0921843687,"3047":0.0941883768,"3048":0.0961923848,"3049":0.0981963928,"3050":0.1002004008,"3051":0.1022044088,"3052":0.1042084168,"3053":0.1062124248,"3054":0.1082164329,"3055":0.1102204409,"3056":0.1122244489,"3057":0.1142284569,"3058":0.1162324649,"3059":0.1182364729,"3060":0.120240481,"3061":0.122244489,"3062":0.124248497,"3063":0.126252505,"3064":0.128256513,"3065":0.130260521,"3066":0.1322645291,"3067":0.1342685371,"3068":0.1362725451,"3069":0.1382765531,"3070":0.1402805611,"3071":0.1422845691,"3072":0.1442885772,"3073":0.1462925852,"3074":0.1482965932,"3075":0.1503006012,"3076":0.1523046092,"3077":0.1543086172,"3078":0.1563126253,"3079":0.1583166333,"3080":0.1603206413,"3081":0.1623246493,"3082":0.1643286573,"3083":0.1663326653,"3084":0.1683366733,"3085":0.1703406814,"3086":0.1723446894,"3087":0.1743486974,"3088":0.1763527054,"3089":0.1783567134,"3090":0.1803607214,"3091":0.1823647295,"3092":0.1843687375,"3093":0.1863727455,"3094":0.1883767535,"3095":0.1903807615,"3096":0.1923847695,"3097":0.1943887776,"3098":0.1963927856,"3099":0.1983967936,"3100":0.2004008016,"3101":0.2024048096,"3102":0.2044088176,"3103":0.2064128257,"3104":0.2084168337,"3105":0.2104208417,"3106":0.2124248497,"3107":0.2144288577,"3108":0.2164328657,"3109":0.2184368737,"3110":0.2204408818,"3111":0.2224448898,"3112":0.2244488978,"3113":0.2264529058,"3114":0.2284569138,"3115":0.2304609218,"3116":0.2324649299,"3117":0.2344689379,"3118":0.2364729459,"3119":0.2384769539,"3120":0.2404809619,"3121":0.2424849699,"3122":0.244488978,"3123":0.246492986,"3124":0.248496994,"3125":0.250501002,"3126":0.25250501,"3127":0.254509018,"3128":0.2565130261,"3129":0.2585170341,"3130":0.2605210421,"3131":0.2625250501,"3132":0.2645290581,"3133":0.2665330661,"3134":0.2685370741,"3135":0.2705410822,"3136":0.2725450902,"3137":0.2745490982,"3138":0.2765531062,"3139":0.2785571142,"3140":0.2805611222,"3141":0.2825651303,"3142":0.2845691383,"3143":0.2865731463,"3144":0.2885771543,"3145":0.2905811623,"3146":0.2925851703,"3147":0.2945891784,"3148":0.2965931864,"3149":0.2985971944,"3150":0.3006012024,"3151":0.3026052104,"3152":0.3046092184,"3153":0.3066132265,"3154":0.3086172345,"3155":0.3106212425,"3156":0.3126252505,"3157":0.3146292585,"3158":0.3166332665,"3159":0.3186372745,"3160":0.3206412826,"3161":0.3226452906,"3162":0.3246492986,"3163":0.3266533066,"3164":0.3286573146,"3165":0.3306613226,"3166":0.3326653307,"3167":0.3346693387,"3168":0.3366733467,"3169":0.3386773547,"3170":0.3406813627,"3171":0.3426853707,"3172":0.3446893788,"3173":0.3466933868,"3174":0.3486973948,"3175":0.3507014028,"3176":0.3527054108,"3177":0.3547094188,"3178":0.3567134269,"3179":0.3587174349,"3180":0.3607214429,"3181":0.3627254509,"3182":0.3647294589,"3183":0.3667334669,"3184":0.3687374749,"3185":0.370741483,"3186":0.372745491,"3187":0.374749499,"3188":0.376753507,"3189":0.378757515,"3190":0.380761523,"3191":0.3827655311,"3192":0.3847695391,"3193":0.3867735471,"3194":0.3887775551,"3195":0.3907815631,"3196":0.3927855711,"3197":0.3947895792,"3198":0.3967935872,"3199":0.3987975952,"3200":0.4008016032,"3201":0.4028056112,"3202":0.4048096192,"3203":0.4068136273,"3204":0.4088176353,"3205":0.4108216433,"3206":0.4128256513,"3207":0.4148296593,"3208":0.4168336673,"3209":0.4188376754,"3210":0.4208416834,"3211":0.4228456914,"3212":0.4248496994,"3213":0.4268537074,"3214":0.4288577154,"3215":0.4308617234,"3216":0.4328657315,"3217":0.4348697395,"3218":0.4368737475,"3219":0.4388777555,"3220":0.4408817635,"3221":0.4428857715,"3222":0.4448897796,"3223":0.4468937876,"3224":0.4488977956,"3225":0.4509018036,"3226":0.4529058116,"3227":0.4549098196,"3228":0.4569138277,"3229":0.4589178357,"3230":0.4609218437,"3231":0.4629258517,"3232":0.4649298597,"3233":0.4669338677,"3234":0.4689378758,"3235":0.4709418838,"3236":0.4729458918,"3237":0.4749498998,"3238":0.4769539078,"3239":0.4789579158,"3240":0.4809619238,"3241":0.4829659319,"3242":0.4849699399,"3243":0.4869739479,"3244":0.4889779559,"3245":0.4909819639,"3246":0.4929859719,"3247":0.49498998,"3248":0.496993988,"3249":0.498997996,"3250":0.501002004,"3251":0.503006012,"3252":0.50501002,"3253":0.5070140281,"3254":0.5090180361,"3255":0.5110220441,"3256":0.5130260521,"3257":0.5150300601,"3258":0.5170340681,"3259":0.5190380762,"3260":0.5210420842,"3261":0.5230460922,"3262":0.5250501002,"3263":0.5270541082,"3264":0.5290581162,"3265":0.5310621242,"3266":0.5330661323,"3267":0.5350701403,"3268":0.5370741483,"3269":0.5390781563,"3270":0.5410821643,"3271":0.5430861723,"3272":0.5450901804,"3273":0.5470941884,"3274":0.5490981964,"3275":0.5511022044,"3276":0.5531062124,"3277":0.5551102204,"3278":0.5571142285,"3279":0.5591182365,"3280":0.5611222445,"3281":0.5631262525,"3282":0.5651302605,"3283":0.5671342685,"3284":0.5691382766,"3285":0.5711422846,"3286":0.5731462926,"3287":0.5751503006,"3288":0.5771543086,"3289":0.5791583166,"3290":0.5811623246,"3291":0.5831663327,"3292":0.5851703407,"3293":0.5871743487,"3294":0.5891783567,"3295":0.5911823647,"3296":0.5931863727,"3297":0.5951903808,"3298":0.5971943888,"3299":0.5991983968,"3300":0.6012024048,"3301":0.6032064128,"3302":0.6052104208,"3303":0.6072144289,"3304":0.6092184369,"3305":0.6112224449,"3306":0.6132264529,"3307":0.6152304609,"3308":0.6172344689,"3309":0.619238477,"3310":0.621242485,"3311":0.623246493,"3312":0.625250501,"3313":0.627254509,"3314":0.629258517,"3315":0.6312625251,"3316":0.6332665331,"3317":0.6352705411,"3318":0.6372745491,"3319":0.6392785571,"3320":0.6412825651,"3321":0.6432865731,"3322":0.6452905812,"3323":0.6472945892,"3324":0.6492985972,"3325":0.6513026052,"3326":0.6533066132,"3327":0.6553106212,"3328":0.6573146293,"3329":0.6593186373,"3330":0.6613226453,"3331":0.6633266533,"3332":0.6653306613,"3333":0.6673346693,"3334":0.6693386774,"3335":0.6713426854,"3336":0.6733466934,"3337":0.6753507014,"3338":0.6773547094,"3339":0.6793587174,"3340":0.6813627255,"3341":0.6833667335,"3342":0.6853707415,"3343":0.6873747495,"3344":0.6893787575,"3345":0.6913827655,"3346":0.6933867735,"3347":0.6953907816,"3348":0.6973947896,"3349":0.6993987976,"3350":0.7014028056,"3351":0.7034068136,"3352":0.7054108216,"3353":0.7074148297,"3354":0.7094188377,"3355":0.7114228457,"3356":0.7134268537,"3357":0.7154308617,"3358":0.7174348697,"3359":0.7194388778,"3360":0.7214428858,"3361":0.7234468938,"3362":0.7254509018,"3363":0.7274549098,"3364":0.7294589178,"3365":0.7314629259,"3366":0.7334669339,"3367":0.7354709419,"3368":0.7374749499,"3369":0.7394789579,"3370":0.7414829659,"3371":0.7434869739,"3372":0.745490982,"3373":0.74749499,"3374":0.749498998,"3375":0.751503006,"3376":0.753507014,"3377":0.755511022,"3378":0.7575150301,"3379":0.7595190381,"3380":0.7615230461,"3381":0.7635270541,"3382":0.7655310621,"3383":0.7675350701,"3384":0.7695390782,"3385":0.7715430862,"3386":0.7735470942,"3387":0.7755511022,"3388":0.7775551102,"3389":0.7795591182,"3390":0.7815631263,"3391":0.7835671343,"3392":0.7855711423,"3393":0.7875751503,"3394":0.7895791583,"3395":0.7915831663,"3396":0.7935871743,"3397":0.7955911824,"3398":0.7975951904,"3399":0.7995991984,"3400":0.8016032064,"3401":0.8036072144,"3402":0.8056112224,"3403":0.8076152305,"3404":0.8096192385,"3405":0.8116232465,"3406":0.8136272545,"3407":0.8156312625,"3408":0.8176352705,"3409":0.8196392786,"3410":0.8216432866,"3411":0.8236472946,"3412":0.8256513026,"3413":0.8276553106,"3414":0.8296593186,"3415":0.8316633267,"3416":0.8336673347,"3417":0.8356713427,"3418":0.8376753507,"3419":0.8396793587,"3420":0.8416833667,"3421":0.8436873747,"3422":0.8456913828,"3423":0.8476953908,"3424":0.8496993988,"3425":0.8517034068,"3426":0.8537074148,"3427":0.8557114228,"3428":0.8577154309,"3429":0.8597194389,"3430":0.8617234469,"3431":0.8637274549,"3432":0.8657314629,"3433":0.8677354709,"3434":0.869739479,"3435":0.871743487,"3436":0.873747495,"3437":0.875751503,"3438":0.877755511,"3439":0.879759519,"3440":0.8817635271,"3441":0.8837675351,"3442":0.8857715431,"3443":0.8877755511,"3444":0.8897795591,"3445":0.8917835671,"3446":0.8937875752,"3447":0.8957915832,"3448":0.8977955912,"3449":0.8997995992,"3450":0.9018036072,"3451":0.9038076152,"3452":0.9058116232,"3453":0.9078156313,"3454":0.9098196393,"3455":0.9118236473,"3456":0.9138276553,"3457":0.9158316633,"3458":0.9178356713,"3459":0.9198396794,"3460":0.9218436874,"3461":0.9238476954,"3462":0.9258517034,"3463":0.9278557114,"3464":0.9298597194,"3465":0.9318637275,"3466":0.9338677355,"3467":0.9358717435,"3468":0.9378757515,"3469":0.9398797595,"3470":0.9418837675,"3471":0.9438877756,"3472":0.9458917836,"3473":0.9478957916,"3474":0.9498997996,"3475":0.9519038076,"3476":0.9539078156,"3477":0.9559118236,"3478":0.9579158317,"3479":0.9599198397,"3480":0.9619238477,"3481":0.9639278557,"3482":0.9659318637,"3483":0.9679358717,"3484":0.9699398798,"3485":0.9719438878,"3486":0.9739478958,"3487":0.9759519038,"3488":0.9779559118,"3489":0.9799599198,"3490":0.9819639279,"3491":0.9839679359,"3492":0.9859719439,"3493":0.9879759519,"3494":0.9899799599,"3495":0.9919839679,"3496":0.993987976,"3497":0.995991984,"3498":0.997995992,"3499":1.0,"3500":0.0,"3501":0.002004008,"3502":0.004008016,"3503":0.006012024,"3504":0.0080160321,"3505":0.0100200401,"3506":0.0120240481,"3507":0.0140280561,"3508":0.0160320641,"3509":0.0180360721,"3510":0.0200400802,"3511":0.0220440882,"3512":0.0240480962,"3513":0.0260521042,"3514":0.0280561122,"3515":0.0300601202,"3516":0.0320641283,"3517":0.0340681363,"3518":0.0360721443,"3519":0.0380761523,"3520":0.0400801603,"3521":0.0420841683,"3522":0.0440881764,"3523":0.0460921844,"3524":0.0480961924,"3525":0.0501002004,"3526":0.0521042084,"3527":0.0541082164,"3528":0.0561122244,"3529":0.0581162325,"3530":0.0601202405,"3531":0.0621242485,"3532":0.0641282565,"3533":0.0661322645,"3534":0.0681362725,"3535":0.0701402806,"3536":0.0721442886,"3537":0.0741482966,"3538":0.0761523046,"3539":0.0781563126,"3540":0.0801603206,"3541":0.0821643287,"3542":0.0841683367,"3543":0.0861723447,"3544":0.0881763527,"3545":0.0901803607,"3546":0.0921843687,"3547":0.0941883768,"3548":0.0961923848,"3549":0.0981963928,"3550":0.1002004008,"3551":0.1022044088,"3552":0.1042084168,"3553":0.1062124248,"3554":0.1082164329,"3555":0.1102204409,"3556":0.1122244489,"3557":0.1142284569,"3558":0.1162324649,"3559":0.1182364729,"3560":0.120240481,"3561":0.122244489,"3562":0.124248497,"3563":0.126252505,"3564":0.128256513,"3565":0.130260521,"3566":0.1322645291,"3567":0.1342685371,"3568":0.1362725451,"3569":0.1382765531,"3570":0.1402805611,"3571":0.1422845691,"3572":0.1442885772,"3573":0.1462925852,"3574":0.1482965932,"3575":0.1503006012,"3576":0.1523046092,"3577":0.1543086172,"3578":0.1563126253,"3579":0.1583166333,"3580":0.1603206413,"3581":0.1623246493,"3582":0.1643286573,"3583":0.1663326653,"3584":0.1683366733,"3585":0.1703406814,"3586":0.1723446894,"3587":0.1743486974,"3588":0.1763527054,"3589":0.1783567134,"3590":0.1803607214,"3591":0.1823647295,"3592":0.1843687375,"3593":0.1863727455,"3594":0.1883767535,"3595":0.1903807615,"3596":0.1923847695,"3597":0.1943887776,"3598":0.1963927856,"3599":0.1983967936,"3600":0.2004008016,"3601":0.2024048096,"3602":0.2044088176,"3603":0.2064128257,"3604":0.2084168337,"3605":0.2104208417,"3606":0.2124248497,"3607":0.2144288577,"3608":0.2164328657,"3609":0.2184368737,"3610":0.2204408818,"3611":0.2224448898,"3612":0.2244488978,"3613":0.2264529058,"3614":0.2284569138,"3615":0.2304609218,"3616":0.2324649299,"3617":0.2344689379,"3618":0.2364729459,"3619":0.2384769539,"3620":0.2404809619,"3621":0.2424849699,"3622":0.244488978,"3623":0.246492986,"3624":0.248496994,"3625":0.250501002,"3626":0.25250501,"3627":0.254509018,"3628":0.2565130261,"3629":0.2585170341,"3630":0.2605210421,"3631":0.2625250501,"3632":0.2645290581,"3633":0.2665330661,"3634":0.2685370741,"3635":0.2705410822,"3636":0.2725450902,"3637":0.2745490982,"3638":0.2765531062,"3639":0.2785571142,"3640":0.2805611222,"3641":0.2825651303,"3642":0.2845691383,"3643":0.2865731463,"3644":0.2885771543,"3645":0.2905811623,"3646":0.2925851703,"3647":0.2945891784,"3648":0.2965931864,"3649":0.2985971944,"3650":0.3006012024,"3651":0.3026052104,"3652":0.3046092184,"3653":0.3066132265,"3654":0.3086172345,"3655":0.3106212425,"3656":0.3126252505,"3657":0.3146292585,"3658":0.3166332665,"3659":0.3186372745,"3660":0.3206412826,"3661":0.3226452906,"3662":0.3246492986,"3663":0.3266533066,"3664":0.3286573146,"3665":0.3306613226,"3666":0.3326653307,"3667":0.3346693387,"3668":0.3366733467,"3669":0.3386773547,"3670":0.3406813627,"3671":0.3426853707,"3672":0.3446893788,"3673":0.3466933868,"3674":0.3486973948,"3675":0.3507014028,"3676":0.3527054108,"3677":0.3547094188,"3678":0.3567134269,"3679":0.3587174349,"3680":0.3607214429,"3681":0.3627254509,"3682":0.3647294589,"3683":0.3667334669,"3684":0.3687374749,"3685":0.370741483,"3686":0.372745491,"3687":0.374749499,"3688":0.376753507,"3689":0.378757515,"3690":0.380761523,"3691":0.3827655311,"3692":0.3847695391,"3693":0.3867735471,"3694":0.3887775551,"3695":0.3907815631,"3696":0.3927855711,"3697":0.3947895792,"3698":0.3967935872,"3699":0.3987975952,"3700":0.4008016032,"3701":0.4028056112,"3702":0.4048096192,"3703":0.4068136273,"3704":0.4088176353,"3705":0.4108216433,"3706":0.4128256513,"3707":0.4148296593,"3708":0.4168336673,"3709":0.4188376754,"3710":0.4208416834,"3711":0.4228456914,"3712":0.4248496994,"3713":0.4268537074,"3714":0.4288577154,"3715":0.4308617234,"3716":0.4328657315,"3717":0.4348697395,"3718":0.4368737475,"3719":0.4388777555,"3720":0.4408817635,"3721":0.4428857715,"3722":0.4448897796,"3723":0.4468937876,"3724":0.4488977956,"3725":0.4509018036,"3726":0.4529058116,"3727":0.4549098196,"3728":0.4569138277,"3729":0.4589178357,"3730":0.4609218437,"3731":0.4629258517,"3732":0.4649298597,"3733":0.4669338677,"3734":0.4689378758,"3735":0.4709418838,"3736":0.4729458918,"3737":0.4749498998,"3738":0.4769539078,"3739":0.4789579158,"3740":0.4809619238,"3741":0.4829659319,"3742":0.4849699399,"3743":0.4869739479,"3744":0.4889779559,"3745":0.4909819639,"3746":0.4929859719,"3747":0.49498998,"3748":0.496993988,"3749":0.498997996,"3750":0.501002004,"3751":0.503006012,"3752":0.50501002,"3753":0.5070140281,"3754":0.5090180361,"3755":0.5110220441,"3756":0.5130260521,"3757":0.5150300601,"3758":0.5170340681,"3759":0.5190380762,"3760":0.5210420842,"3761":0.5230460922,"3762":0.5250501002,"3763":0.5270541082,"3764":0.5290581162,"3765":0.5310621242,"3766":0.5330661323,"3767":0.5350701403,"3768":0.5370741483,"3769":0.5390781563,"3770":0.5410821643,"3771":0.5430861723,"3772":0.5450901804,"3773":0.5470941884,"3774":0.5490981964,"3775":0.5511022044,"3776":0.5531062124,"3777":0.5551102204,"3778":0.5571142285,"3779":0.5591182365,"3780":0.5611222445,"3781":0.5631262525,"3782":0.5651302605,"3783":0.5671342685,"3784":0.5691382766,"3785":0.5711422846,"3786":0.5731462926,"3787":0.5751503006,"3788":0.5771543086,"3789":0.5791583166,"3790":0.5811623246,"3791":0.5831663327,"3792":0.5851703407,"3793":0.5871743487,"3794":0.5891783567,"3795":0.5911823647,"3796":0.5931863727,"3797":0.5951903808,"3798":0.5971943888,"3799":0.5991983968,"3800":0.6012024048,"3801":0.6032064128,"3802":0.6052104208,"3803":0.6072144289,"3804":0.6092184369,"3805":0.6112224449,"3806":0.6132264529,"3807":0.6152304609,"3808":0.6172344689,"3809":0.619238477,"3810":0.621242485,"3811":0.623246493,"3812":0.625250501,"3813":0.627254509,"3814":0.629258517,"3815":0.6312625251,"3816":0.6332665331,"3817":0.6352705411,"3818":0.6372745491,"3819":0.6392785571,"3820":0.6412825651,"3821":0.6432865731,"3822":0.6452905812,"3823":0.6472945892,"3824":0.6492985972,"3825":0.6513026052,"3826":0.6533066132,"3827":0.6553106212,"3828":0.6573146293,"3829":0.6593186373,"3830":0.6613226453,"3831":0.6633266533,"3832":0.6653306613,"3833":0.6673346693,"3834":0.6693386774,"3835":0.6713426854,"3836":0.6733466934,"3837":0.6753507014,"3838":0.6773547094,"3839":0.6793587174,"3840":0.6813627255,"3841":0.6833667335,"3842":0.6853707415,"3843":0.6873747495,"3844":0.6893787575,"3845":0.6913827655,"3846":0.6933867735,"3847":0.6953907816,"3848":0.6973947896,"3849":0.6993987976,"3850":0.7014028056,"3851":0.7034068136,"3852":0.7054108216,"3853":0.7074148297,"3854":0.7094188377,"3855":0.7114228457,"3856":0.7134268537,"3857":0.7154308617,"3858":0.7174348697,"3859":0.7194388778,"3860":0.7214428858,"3861":0.7234468938,"3862":0.7254509018,"3863":0.7274549098,"3864":0.7294589178,"3865":0.7314629259,"3866":0.7334669339,"3867":0.7354709419,"3868":0.7374749499,"3869":0.7394789579,"3870":0.7414829659,"3871":0.7434869739,"3872":0.745490982,"3873":0.74749499,"3874":0.749498998,"3875":0.751503006,"3876":0.753507014,"3877":0.755511022,"3878":0.7575150301,"3879":0.7595190381,"3880":0.7615230461,"3881":0.7635270541,"3882":0.7655310621,"3883":0.7675350701,"3884":0.7695390782,"3885":0.7715430862,"3886":0.7735470942,"3887":0.7755511022,"3888":0.7775551102,"3889":0.7795591182,"3890":0.7815631263,"3891":0.7835671343,"3892":0.7855711423,"3893":0.7875751503,"3894":0.7895791583,"3895":0.7915831663,"3896":0.7935871743,"3897":0.7955911824,"3898":0.7975951904,"3899":0.7995991984,"3900":0.8016032064,"3901":0.8036072144,"3902":0.8056112224,"3903":0.8076152305,"3904":0.8096192385,"3905":0.8116232465,"3906":0.8136272545,"3907":0.8156312625,"3908":0.8176352705,"3909":0.8196392786,"3910":0.8216432866,"3911":0.8236472946,"3912":0.8256513026,"3913":0.8276553106,"3914":0.8296593186,"3915":0.8316633267,"3916":0.8336673347,"3917":0.8356713427,"3918":0.8376753507,"3919":0.8396793587,"3920":0.8416833667,"3921":0.8436873747,"3922":0.8456913828,"3923":0.8476953908,"3924":0.8496993988,"3925":0.8517034068,"3926":0.8537074148,"3927":0.8557114228,"3928":0.8577154309,"3929":0.8597194389,"3930":0.8617234469,"3931":0.8637274549,"3932":0.8657314629,"3933":0.8677354709,"3934":0.869739479,"3935":0.871743487,"3936":0.873747495,"3937":0.875751503,"3938":0.877755511,"3939":0.879759519,"3940":0.8817635271,"3941":0.8837675351,"3942":0.8857715431,"3943":0.8877755511,"3944":0.8897795591,"3945":0.8917835671,"3946":0.8937875752,"3947":0.8957915832,"3948":0.8977955912,"3949":0.8997995992,"3950":0.9018036072,"3951":0.9038076152,"3952":0.9058116232,"3953":0.9078156313,"3954":0.9098196393,"3955":0.9118236473,"3956":0.9138276553,"3957":0.9158316633,"3958":0.9178356713,"3959":0.9198396794,"3960":0.9218436874,"3961":0.9238476954,"3962":0.9258517034,"3963":0.9278557114,"3964":0.9298597194,"3965":0.9318637275,"3966":0.9338677355,"3967":0.9358717435,"3968":0.9378757515,"3969":0.9398797595,"3970":0.9418837675,"3971":0.9438877756,"3972":0.9458917836,"3973":0.9478957916,"3974":0.9498997996,"3975":0.9519038076,"3976":0.9539078156,"3977":0.9559118236,"3978":0.9579158317,"3979":0.9599198397,"3980":0.9619238477,"3981":0.9639278557,"3982":0.9659318637,"3983":0.9679358717,"3984":0.9699398798,"3985":0.9719438878,"3986":0.9739478958,"3987":0.9759519038,"3988":0.9779559118,"3989":0.9799599198,"3990":0.9819639279,"3991":0.9839679359,"3992":0.9859719439,"3993":0.9879759519,"3994":0.9899799599,"3995":0.9919839679,"3996":0.993987976,"3997":0.995991984,"3998":0.997995992,"3999":1.0,"4000":0.0,"4001":0.002004008,"4002":0.004008016,"4003":0.006012024,"4004":0.0080160321,"4005":0.0100200401,"4006":0.0120240481,"4007":0.0140280561,"4008":0.0160320641,"4009":0.0180360721,"4010":0.0200400802,"4011":0.0220440882,"4012":0.0240480962,"4013":0.0260521042,"4014":0.0280561122,"4015":0.0300601202,"4016":0.0320641283,"4017":0.0340681363,"4018":0.0360721443,"4019":0.0380761523,"4020":0.0400801603,"4021":0.0420841683,"4022":0.0440881764,"4023":0.0460921844,"4024":0.0480961924,"4025":0.0501002004,"4026":0.0521042084,"4027":0.0541082164,"4028":0.0561122244,"4029":0.0581162325,"4030":0.0601202405,"4031":0.0621242485,"4032":0.0641282565,"4033":0.0661322645,"4034":0.0681362725,"4035":0.0701402806,"4036":0.0721442886,"4037":0.0741482966,"4038":0.0761523046,"4039":0.0781563126,"4040":0.0801603206,"4041":0.0821643287,"4042":0.0841683367,"4043":0.0861723447,"4044":0.0881763527,"4045":0.0901803607,"4046":0.0921843687,"4047":0.0941883768,"4048":0.0961923848,"4049":0.0981963928,"4050":0.1002004008,"4051":0.1022044088,"4052":0.1042084168,"4053":0.1062124248,"4054":0.1082164329,"4055":0.1102204409,"4056":0.1122244489,"4057":0.1142284569,"4058":0.1162324649,"4059":0.1182364729,"4060":0.120240481,"4061":0.122244489,"4062":0.124248497,"4063":0.126252505,"4064":0.128256513,"4065":0.130260521,"4066":0.1322645291,"4067":0.1342685371,"4068":0.1362725451,"4069":0.1382765531,"4070":0.1402805611,"4071":0.1422845691,"4072":0.1442885772,"4073":0.1462925852,"4074":0.1482965932,"4075":0.1503006012,"4076":0.1523046092,"4077":0.1543086172,"4078":0.1563126253,"4079":0.1583166333,"4080":0.1603206413,"4081":0.1623246493,"4082":0.1643286573,"4083":0.1663326653,"4084":0.1683366733,"4085":0.1703406814,"4086":0.1723446894,"4087":0.1743486974,"4088":0.1763527054,"4089":0.1783567134,"4090":0.1803607214,"4091":0.1823647295,"4092":0.1843687375,"4093":0.1863727455,"4094":0.1883767535,"4095":0.1903807615,"4096":0.1923847695,"4097":0.1943887776,"4098":0.1963927856,"4099":0.1983967936,"4100":0.2004008016,"4101":0.2024048096,"4102":0.2044088176,"4103":0.2064128257,"4104":0.2084168337,"4105":0.2104208417,"4106":0.2124248497,"4107":0.2144288577,"4108":0.2164328657,"4109":0.2184368737,"4110":0.2204408818,"4111":0.2224448898,"4112":0.2244488978,"4113":0.2264529058,"4114":0.2284569138,"4115":0.2304609218,"4116":0.2324649299,"4117":0.2344689379,"4118":0.2364729459,"4119":0.2384769539,"4120":0.2404809619,"4121":0.2424849699,"4122":0.244488978,"4123":0.246492986,"4124":0.248496994,"4125":0.250501002,"4126":0.25250501,"4127":0.254509018,"4128":0.2565130261,"4129":0.2585170341,"4130":0.2605210421,"4131":0.2625250501,"4132":0.2645290581,"4133":0.2665330661,"4134":0.2685370741,"4135":0.2705410822,"4136":0.2725450902,"4137":0.2745490982,"4138":0.2765531062,"4139":0.2785571142,"4140":0.2805611222,"4141":0.2825651303,"4142":0.2845691383,"4143":0.2865731463,"4144":0.2885771543,"4145":0.2905811623,"4146":0.2925851703,"4147":0.2945891784,"4148":0.2965931864,"4149":0.2985971944,"4150":0.3006012024,"4151":0.3026052104,"4152":0.3046092184,"4153":0.3066132265,"4154":0.3086172345,"4155":0.3106212425,"4156":0.3126252505,"4157":0.3146292585,"4158":0.3166332665,"4159":0.3186372745,"4160":0.3206412826,"4161":0.3226452906,"4162":0.3246492986,"4163":0.3266533066,"4164":0.3286573146,"4165":0.3306613226,"4166":0.3326653307,"4167":0.3346693387,"4168":0.3366733467,"4169":0.3386773547,"4170":0.3406813627,"4171":0.3426853707,"4172":0.3446893788,"4173":0.3466933868,"4174":0.3486973948,"4175":0.3507014028,"4176":0.3527054108,"4177":0.3547094188,"4178":0.3567134269,"4179":0.3587174349,"4180":0.3607214429,"4181":0.3627254509,"4182":0.3647294589,"4183":0.3667334669,"4184":0.3687374749,"4185":0.370741483,"4186":0.372745491,"4187":0.374749499,"4188":0.376753507,"4189":0.378757515,"4190":0.380761523,"4191":0.3827655311,"4192":0.3847695391,"4193":0.3867735471,"4194":0.3887775551,"4195":0.3907815631,"4196":0.3927855711,"4197":0.3947895792,"4198":0.3967935872,"4199":0.3987975952,"4200":0.4008016032,"4201":0.4028056112,"4202":0.4048096192,"4203":0.4068136273,"4204":0.4088176353,"4205":0.4108216433,"4206":0.4128256513,"4207":0.4148296593,"4208":0.4168336673,"4209":0.4188376754,"4210":0.4208416834,"4211":0.4228456914,"4212":0.4248496994,"4213":0.4268537074,"4214":0.4288577154,"4215":0.4308617234,"4216":0.4328657315,"4217":0.4348697395,"4218":0.4368737475,"4219":0.4388777555,"4220":0.4408817635,"4221":0.4428857715,"4222":0.4448897796,"4223":0.4468937876,"4224":0.4488977956,"4225":0.4509018036,"4226":0.4529058116,"4227":0.4549098196,"4228":0.4569138277,"4229":0.4589178357,"4230":0.4609218437,"4231":0.4629258517,"4232":0.4649298597,"4233":0.4669338677,"4234":0.4689378758,"4235":0.4709418838,"4236":0.4729458918,"4237":0.4749498998,"4238":0.4769539078,"4239":0.4789579158,"4240":0.4809619238,"4241":0.4829659319,"4242":0.4849699399,"4243":0.4869739479,"4244":0.4889779559,"4245":0.4909819639,"4246":0.4929859719,"4247":0.49498998,"4248":0.496993988,"4249":0.498997996,"4250":0.501002004,"4251":0.503006012,"4252":0.50501002,"4253":0.5070140281,"4254":0.5090180361,"4255":0.5110220441,"4256":0.5130260521,"4257":0.5150300601,"4258":0.5170340681,"4259":0.5190380762,"4260":0.5210420842,"4261":0.5230460922,"4262":0.5250501002,"4263":0.5270541082,"4264":0.5290581162,"4265":0.5310621242,"4266":0.5330661323,"4267":0.5350701403,"4268":0.5370741483,"4269":0.5390781563,"4270":0.5410821643,"4271":0.5430861723,"4272":0.5450901804,"4273":0.5470941884,"4274":0.5490981964,"4275":0.5511022044,"4276":0.5531062124,"4277":0.5551102204,"4278":0.5571142285,"4279":0.5591182365,"4280":0.5611222445,"4281":0.5631262525,"4282":0.5651302605,"4283":0.5671342685,"4284":0.5691382766,"4285":0.5711422846,"4286":0.5731462926,"4287":0.5751503006,"4288":0.5771543086,"4289":0.5791583166,"4290":0.5811623246,"4291":0.5831663327,"4292":0.5851703407,"4293":0.5871743487,"4294":0.5891783567,"4295":0.5911823647,"4296":0.5931863727,"4297":0.5951903808,"4298":0.5971943888,"4299":0.5991983968,"4300":0.6012024048,"4301":0.6032064128,"4302":0.6052104208,"4303":0.6072144289,"4304":0.6092184369,"4305":0.6112224449,"4306":0.6132264529,"4307":0.6152304609,"4308":0.6172344689,"4309":0.619238477,"4310":0.621242485,"4311":0.623246493,"4312":0.625250501,"4313":0.627254509,"4314":0.629258517,"4315":0.6312625251,"4316":0.6332665331,"4317":0.6352705411,"4318":0.6372745491,"4319":0.6392785571,"4320":0.6412825651,"4321":0.6432865731,"4322":0.6452905812,"4323":0.6472945892,"4324":0.6492985972,"4325":0.6513026052,"4326":0.6533066132,"4327":0.6553106212,"4328":0.6573146293,"4329":0.6593186373,"4330":0.6613226453,"4331":0.6633266533,"4332":0.6653306613,"4333":0.6673346693,"4334":0.6693386774,"4335":0.6713426854,"4336":0.6733466934,"4337":0.6753507014,"4338":0.6773547094,"4339":0.6793587174,"4340":0.6813627255,"4341":0.6833667335,"4342":0.6853707415,"4343":0.6873747495,"4344":0.6893787575,"4345":0.6913827655,"4346":0.6933867735,"4347":0.6953907816,"4348":0.6973947896,"4349":0.6993987976,"4350":0.7014028056,"4351":0.7034068136,"4352":0.7054108216,"4353":0.7074148297,"4354":0.7094188377,"4355":0.7114228457,"4356":0.7134268537,"4357":0.7154308617,"4358":0.7174348697,"4359":0.7194388778,"4360":0.7214428858,"4361":0.7234468938,"4362":0.7254509018,"4363":0.7274549098,"4364":0.7294589178,"4365":0.7314629259,"4366":0.7334669339,"4367":0.7354709419,"4368":0.7374749499,"4369":0.7394789579,"4370":0.7414829659,"4371":0.7434869739,"4372":0.745490982,"4373":0.74749499,"4374":0.749498998,"4375":0.751503006,"4376":0.753507014,"4377":0.755511022,"4378":0.7575150301,"4379":0.7595190381,"4380":0.7615230461,"4381":0.7635270541,"4382":0.7655310621,"4383":0.7675350701,"4384":0.7695390782,"4385":0.7715430862,"4386":0.7735470942,"4387":0.7755511022,"4388":0.7775551102,"4389":0.7795591182,"4390":0.7815631263,"4391":0.7835671343,"4392":0.7855711423,"4393":0.7875751503,"4394":0.7895791583,"4395":0.7915831663,"4396":0.7935871743,"4397":0.7955911824,"4398":0.7975951904,"4399":0.7995991984,"4400":0.8016032064,"4401":0.8036072144,"4402":0.8056112224,"4403":0.8076152305,"4404":0.8096192385,"4405":0.8116232465,"4406":0.8136272545,"4407":0.8156312625,"4408":0.8176352705,"4409":0.8196392786,"4410":0.8216432866,"4411":0.8236472946,"4412":0.8256513026,"4413":0.8276553106,"4414":0.8296593186,"4415":0.8316633267,"4416":0.8336673347,"4417":0.8356713427,"4418":0.8376753507,"4419":0.8396793587,"4420":0.8416833667,"4421":0.8436873747,"4422":0.8456913828,"4423":0.8476953908,"4424":0.8496993988,"4425":0.8517034068,"4426":0.8537074148,"4427":0.8557114228,"4428":0.8577154309,"4429":0.8597194389,"4430":0.8617234469,"4431":0.8637274549,"4432":0.8657314629,"4433":0.8677354709,"4434":0.869739479,"4435":0.871743487,"4436":0.873747495,"4437":0.875751503,"4438":0.877755511,"4439":0.879759519,"4440":0.8817635271,"4441":0.8837675351,"4442":0.8857715431,"4443":0.8877755511,"4444":0.8897795591,"4445":0.8917835671,"4446":0.8937875752,"4447":0.8957915832,"4448":0.8977955912,"4449":0.8997995992,"4450":0.9018036072,"4451":0.9038076152,"4452":0.9058116232,"4453":0.9078156313,"4454":0.9098196393,"4455":0.9118236473,"4456":0.9138276553,"4457":0.9158316633,"4458":0.9178356713,"4459":0.9198396794,"4460":0.9218436874,"4461":0.9238476954,"4462":0.9258517034,"4463":0.9278557114,"4464":0.9298597194,"4465":0.9318637275,"4466":0.9338677355,"4467":0.9358717435,"4468":0.9378757515,"4469":0.9398797595,"4470":0.9418837675,"4471":0.9438877756,"4472":0.9458917836,"4473":0.9478957916,"4474":0.9498997996,"4475":0.9519038076,"4476":0.9539078156,"4477":0.9559118236,"4478":0.9579158317,"4479":0.9599198397,"4480":0.9619238477,"4481":0.9639278557,"4482":0.9659318637,"4483":0.9679358717,"4484":0.9699398798,"4485":0.9719438878,"4486":0.9739478958,"4487":0.9759519038,"4488":0.9779559118,"4489":0.9799599198,"4490":0.9819639279,"4491":0.9839679359,"4492":0.9859719439,"4493":0.9879759519,"4494":0.9899799599,"4495":0.9919839679,"4496":0.993987976,"4497":0.995991984,"4498":0.997995992,"4499":1.0,"4500":0.0,"4501":0.002004008,"4502":0.004008016,"4503":0.006012024,"4504":0.0080160321,"4505":0.0100200401,"4506":0.0120240481,"4507":0.0140280561,"4508":0.0160320641,"4509":0.0180360721,"4510":0.0200400802,"4511":0.0220440882,"4512":0.0240480962,"4513":0.0260521042,"4514":0.0280561122,"4515":0.0300601202,"4516":0.0320641283,"4517":0.0340681363,"4518":0.0360721443,"4519":0.0380761523,"4520":0.0400801603,"4521":0.0420841683,"4522":0.0440881764,"4523":0.0460921844,"4524":0.0480961924,"4525":0.0501002004,"4526":0.0521042084,"4527":0.0541082164,"4528":0.0561122244,"4529":0.0581162325,"4530":0.0601202405,"4531":0.0621242485,"4532":0.0641282565,"4533":0.0661322645,"4534":0.0681362725,"4535":0.0701402806,"4536":0.0721442886,"4537":0.0741482966,"4538":0.0761523046,"4539":0.0781563126,"4540":0.0801603206,"4541":0.0821643287,"4542":0.0841683367,"4543":0.0861723447,"4544":0.0881763527,"4545":0.0901803607,"4546":0.0921843687,"4547":0.0941883768,"4548":0.0961923848,"4549":0.0981963928,"4550":0.1002004008,"4551":0.1022044088,"4552":0.1042084168,"4553":0.1062124248,"4554":0.1082164329,"4555":0.1102204409,"4556":0.1122244489,"4557":0.1142284569,"4558":0.1162324649,"4559":0.1182364729,"4560":0.120240481,"4561":0.122244489,"4562":0.124248497,"4563":0.126252505,"4564":0.128256513,"4565":0.130260521,"4566":0.1322645291,"4567":0.1342685371,"4568":0.1362725451,"4569":0.1382765531,"4570":0.1402805611,"4571":0.1422845691,"4572":0.1442885772,"4573":0.1462925852,"4574":0.1482965932,"4575":0.1503006012,"4576":0.1523046092,"4577":0.1543086172,"4578":0.1563126253,"4579":0.1583166333,"4580":0.1603206413,"4581":0.1623246493,"4582":0.1643286573,"4583":0.1663326653,"4584":0.1683366733,"4585":0.1703406814,"4586":0.1723446894,"4587":0.1743486974,"4588":0.1763527054,"4589":0.1783567134,"4590":0.1803607214,"4591":0.1823647295,"4592":0.1843687375,"4593":0.1863727455,"4594":0.1883767535,"4595":0.1903807615,"4596":0.1923847695,"4597":0.1943887776,"4598":0.1963927856,"4599":0.1983967936,"4600":0.2004008016,"4601":0.2024048096,"4602":0.2044088176,"4603":0.2064128257,"4604":0.2084168337,"4605":0.2104208417,"4606":0.2124248497,"4607":0.2144288577,"4608":0.2164328657,"4609":0.2184368737,"4610":0.2204408818,"4611":0.2224448898,"4612":0.2244488978,"4613":0.2264529058,"4614":0.2284569138,"4615":0.2304609218,"4616":0.2324649299,"4617":0.2344689379,"4618":0.2364729459,"4619":0.2384769539,"4620":0.2404809619,"4621":0.2424849699,"4622":0.244488978,"4623":0.246492986,"4624":0.248496994,"4625":0.250501002,"4626":0.25250501,"4627":0.254509018,"4628":0.2565130261,"4629":0.2585170341,"4630":0.2605210421,"4631":0.2625250501,"4632":0.2645290581,"4633":0.2665330661,"4634":0.2685370741,"4635":0.2705410822,"4636":0.2725450902,"4637":0.2745490982,"4638":0.2765531062,"4639":0.2785571142,"4640":0.2805611222,"4641":0.2825651303,"4642":0.2845691383,"4643":0.2865731463,"4644":0.2885771543,"4645":0.2905811623,"4646":0.2925851703,"4647":0.2945891784,"4648":0.2965931864,"4649":0.2985971944,"4650":0.3006012024,"4651":0.3026052104,"4652":0.3046092184,"4653":0.3066132265,"4654":0.3086172345,"4655":0.3106212425,"4656":0.3126252505,"4657":0.3146292585,"4658":0.3166332665,"4659":0.3186372745,"4660":0.3206412826,"4661":0.3226452906,"4662":0.3246492986,"4663":0.3266533066,"4664":0.3286573146,"4665":0.3306613226,"4666":0.3326653307,"4667":0.3346693387,"4668":0.3366733467,"4669":0.3386773547,"4670":0.3406813627,"4671":0.3426853707,"4672":0.3446893788,"4673":0.3466933868,"4674":0.3486973948,"4675":0.3507014028,"4676":0.3527054108,"4677":0.3547094188,"4678":0.3567134269,"4679":0.3587174349,"4680":0.3607214429,"4681":0.3627254509,"4682":0.3647294589,"4683":0.3667334669,"4684":0.3687374749,"4685":0.370741483,"4686":0.372745491,"4687":0.374749499,"4688":0.376753507,"4689":0.378757515,"4690":0.380761523,"4691":0.3827655311,"4692":0.3847695391,"4693":0.3867735471,"4694":0.3887775551,"4695":0.3907815631,"4696":0.3927855711,"4697":0.3947895792,"4698":0.3967935872,"4699":0.3987975952,"4700":0.4008016032,"4701":0.4028056112,"4702":0.4048096192,"4703":0.4068136273,"4704":0.4088176353,"4705":0.4108216433,"4706":0.4128256513,"4707":0.4148296593,"4708":0.4168336673,"4709":0.4188376754,"4710":0.4208416834,"4711":0.4228456914,"4712":0.4248496994,"4713":0.4268537074,"4714":0.4288577154,"4715":0.4308617234,"4716":0.4328657315,"4717":0.4348697395,"4718":0.4368737475,"4719":0.4388777555,"4720":0.4408817635,"4721":0.4428857715,"4722":0.4448897796,"4723":0.4468937876,"4724":0.4488977956,"4725":0.4509018036,"4726":0.4529058116,"4727":0.4549098196,"4728":0.4569138277,"4729":0.4589178357,"4730":0.4609218437,"4731":0.4629258517,"4732":0.4649298597,"4733":0.4669338677,"4734":0.4689378758,"4735":0.4709418838,"4736":0.4729458918,"4737":0.4749498998,"4738":0.4769539078,"4739":0.4789579158,"4740":0.4809619238,"4741":0.4829659319,"4742":0.4849699399,"4743":0.4869739479,"4744":0.4889779559,"4745":0.4909819639,"4746":0.4929859719,"4747":0.49498998,"4748":0.496993988,"4749":0.498997996,"4750":0.501002004,"4751":0.503006012,"4752":0.50501002,"4753":0.5070140281,"4754":0.5090180361,"4755":0.5110220441,"4756":0.5130260521,"4757":0.5150300601,"4758":0.5170340681,"4759":0.5190380762,"4760":0.5210420842,"4761":0.5230460922,"4762":0.5250501002,"4763":0.5270541082,"4764":0.5290581162,"4765":0.5310621242,"4766":0.5330661323,"4767":0.5350701403,"4768":0.5370741483,"4769":0.5390781563,"4770":0.5410821643,"4771":0.5430861723,"4772":0.5450901804,"4773":0.5470941884,"4774":0.5490981964,"4775":0.5511022044,"4776":0.5531062124,"4777":0.5551102204,"4778":0.5571142285,"4779":0.5591182365,"4780":0.5611222445,"4781":0.5631262525,"4782":0.5651302605,"4783":0.5671342685,"4784":0.5691382766,"4785":0.5711422846,"4786":0.5731462926,"4787":0.5751503006,"4788":0.5771543086,"4789":0.5791583166,"4790":0.5811623246,"4791":0.5831663327,"4792":0.5851703407,"4793":0.5871743487,"4794":0.5891783567,"4795":0.5911823647,"4796":0.5931863727,"4797":0.5951903808,"4798":0.5971943888,"4799":0.5991983968,"4800":0.6012024048,"4801":0.6032064128,"4802":0.6052104208,"4803":0.6072144289,"4804":0.6092184369,"4805":0.6112224449,"4806":0.6132264529,"4807":0.6152304609,"4808":0.6172344689,"4809":0.619238477,"4810":0.621242485,"4811":0.623246493,"4812":0.625250501,"4813":0.627254509,"4814":0.629258517,"4815":0.6312625251,"4816":0.6332665331,"4817":0.6352705411,"4818":0.6372745491,"4819":0.6392785571,"4820":0.6412825651,"4821":0.6432865731,"4822":0.6452905812,"4823":0.6472945892,"4824":0.6492985972,"4825":0.6513026052,"4826":0.6533066132,"4827":0.6553106212,"4828":0.6573146293,"4829":0.6593186373,"4830":0.6613226453,"4831":0.6633266533,"4832":0.6653306613,"4833":0.6673346693,"4834":0.6693386774,"4835":0.6713426854,"4836":0.6733466934,"4837":0.6753507014,"4838":0.6773547094,"4839":0.6793587174,"4840":0.6813627255,"4841":0.6833667335,"4842":0.6853707415,"4843":0.6873747495,"4844":0.6893787575,"4845":0.6913827655,"4846":0.6933867735,"4847":0.6953907816,"4848":0.6973947896,"4849":0.6993987976,"4850":0.7014028056,"4851":0.7034068136,"4852":0.7054108216,"4853":0.7074148297,"4854":0.7094188377,"4855":0.7114228457,"4856":0.7134268537,"4857":0.7154308617,"4858":0.7174348697,"4859":0.7194388778,"4860":0.7214428858,"4861":0.7234468938,"4862":0.7254509018,"4863":0.7274549098,"4864":0.7294589178,"4865":0.7314629259,"4866":0.7334669339,"4867":0.7354709419,"4868":0.7374749499,"4869":0.7394789579,"4870":0.7414829659,"4871":0.7434869739,"4872":0.745490982,"4873":0.74749499,"4874":0.749498998,"4875":0.751503006,"4876":0.753507014,"4877":0.755511022,"4878":0.7575150301,"4879":0.7595190381,"4880":0.7615230461,"4881":0.7635270541,"4882":0.7655310621,"4883":0.7675350701,"4884":0.7695390782,"4885":0.7715430862,"4886":0.7735470942,"4887":0.7755511022,"4888":0.7775551102,"4889":0.7795591182,"4890":0.7815631263,"4891":0.7835671343,"4892":0.7855711423,"4893":0.7875751503,"4894":0.7895791583,"4895":0.7915831663,"4896":0.7935871743,"4897":0.7955911824,"4898":0.7975951904,"4899":0.7995991984,"4900":0.8016032064,"4901":0.8036072144,"4902":0.8056112224,"4903":0.8076152305,"4904":0.8096192385,"4905":0.8116232465,"4906":0.8136272545,"4907":0.8156312625,"4908":0.8176352705,"4909":0.8196392786,"4910":0.8216432866,"4911":0.8236472946,"4912":0.8256513026,"4913":0.8276553106,"4914":0.8296593186,"4915":0.8316633267,"4916":0.8336673347,"4917":0.8356713427,"4918":0.8376753507,"4919":0.8396793587,"4920":0.8416833667,"4921":0.8436873747,"4922":0.8456913828,"4923":0.8476953908,"4924":0.8496993988,"4925":0.8517034068,"4926":0.8537074148,"4927":0.8557114228,"4928":0.8577154309,"4929":0.8597194389,"4930":0.8617234469,"4931":0.8637274549,"4932":0.8657314629,"4933":0.8677354709,"4934":0.869739479,"4935":0.871743487,"4936":0.873747495,"4937":0.875751503,"4938":0.877755511,"4939":0.879759519,"4940":0.8817635271,"4941":0.8837675351,"4942":0.8857715431,"4943":0.8877755511,"4944":0.8897795591,"4945":0.8917835671,"4946":0.8937875752,"4947":0.8957915832,"4948":0.8977955912,"4949":0.8997995992,"4950":0.9018036072,"4951":0.9038076152,"4952":0.9058116232,"4953":0.9078156313,"4954":0.9098196393,"4955":0.9118236473,"4956":0.9138276553,"4957":0.9158316633,"4958":0.9178356713,"4959":0.9198396794,"4960":0.9218436874,"4961":0.9238476954,"4962":0.9258517034,"4963":0.9278557114,"4964":0.9298597194,"4965":0.9318637275,"4966":0.9338677355,"4967":0.9358717435,"4968":0.9378757515,"4969":0.9398797595,"4970":0.9418837675,"4971":0.9438877756,"4972":0.9458917836,"4973":0.9478957916,"4974":0.9498997996,"4975":0.9519038076,"4976":0.9539078156,"4977":0.9559118236,"4978":0.9579158317,"4979":0.9599198397,"4980":0.9619238477,"4981":0.9639278557,"4982":0.9659318637,"4983":0.9679358717,"4984":0.9699398798,"4985":0.9719438878,"4986":0.9739478958,"4987":0.9759519038,"4988":0.9779559118,"4989":0.9799599198,"4990":0.9819639279,"4991":0.9839679359,"4992":0.9859719439,"4993":0.9879759519,"4994":0.9899799599,"4995":0.9919839679,"4996":0.993987976,"4997":0.995991984,"4998":0.997995992,"4999":1.0,"5000":0.0,"5001":0.002004008,"5002":0.004008016,"5003":0.006012024,"5004":0.0080160321,"5005":0.0100200401,"5006":0.0120240481,"5007":0.0140280561,"5008":0.0160320641,"5009":0.0180360721,"5010":0.0200400802,"5011":0.0220440882,"5012":0.0240480962,"5013":0.0260521042,"5014":0.0280561122,"5015":0.0300601202,"5016":0.0320641283,"5017":0.0340681363,"5018":0.0360721443,"5019":0.0380761523,"5020":0.0400801603,"5021":0.0420841683,"5022":0.0440881764,"5023":0.0460921844,"5024":0.0480961924,"5025":0.0501002004,"5026":0.0521042084,"5027":0.0541082164,"5028":0.0561122244,"5029":0.0581162325,"5030":0.0601202405,"5031":0.0621242485,"5032":0.0641282565,"5033":0.0661322645,"5034":0.0681362725,"5035":0.0701402806,"5036":0.0721442886,"5037":0.0741482966,"5038":0.0761523046,"5039":0.0781563126,"5040":0.0801603206,"5041":0.0821643287,"5042":0.0841683367,"5043":0.0861723447,"5044":0.0881763527,"5045":0.0901803607,"5046":0.0921843687,"5047":0.0941883768,"5048":0.0961923848,"5049":0.0981963928,"5050":0.1002004008,"5051":0.1022044088,"5052":0.1042084168,"5053":0.1062124248,"5054":0.1082164329,"5055":0.1102204409,"5056":0.1122244489,"5057":0.1142284569,"5058":0.1162324649,"5059":0.1182364729,"5060":0.120240481,"5061":0.122244489,"5062":0.124248497,"5063":0.126252505,"5064":0.128256513,"5065":0.130260521,"5066":0.1322645291,"5067":0.1342685371,"5068":0.1362725451,"5069":0.1382765531,"5070":0.1402805611,"5071":0.1422845691,"5072":0.1442885772,"5073":0.1462925852,"5074":0.1482965932,"5075":0.1503006012,"5076":0.1523046092,"5077":0.1543086172,"5078":0.1563126253,"5079":0.1583166333,"5080":0.1603206413,"5081":0.1623246493,"5082":0.1643286573,"5083":0.1663326653,"5084":0.1683366733,"5085":0.1703406814,"5086":0.1723446894,"5087":0.1743486974,"5088":0.1763527054,"5089":0.1783567134,"5090":0.1803607214,"5091":0.1823647295,"5092":0.1843687375,"5093":0.1863727455,"5094":0.1883767535,"5095":0.1903807615,"5096":0.1923847695,"5097":0.1943887776,"5098":0.1963927856,"5099":0.1983967936,"5100":0.2004008016,"5101":0.2024048096,"5102":0.2044088176,"5103":0.2064128257,"5104":0.2084168337,"5105":0.2104208417,"5106":0.2124248497,"5107":0.2144288577,"5108":0.2164328657,"5109":0.2184368737,"5110":0.2204408818,"5111":0.2224448898,"5112":0.2244488978,"5113":0.2264529058,"5114":0.2284569138,"5115":0.2304609218,"5116":0.2324649299,"5117":0.2344689379,"5118":0.2364729459,"5119":0.2384769539,"5120":0.2404809619,"5121":0.2424849699,"5122":0.244488978,"5123":0.246492986,"5124":0.248496994,"5125":0.250501002,"5126":0.25250501,"5127":0.254509018,"5128":0.2565130261,"5129":0.2585170341,"5130":0.2605210421,"5131":0.2625250501,"5132":0.2645290581,"5133":0.2665330661,"5134":0.2685370741,"5135":0.2705410822,"5136":0.2725450902,"5137":0.2745490982,"5138":0.2765531062,"5139":0.2785571142,"5140":0.2805611222,"5141":0.2825651303,"5142":0.2845691383,"5143":0.2865731463,"5144":0.2885771543,"5145":0.2905811623,"5146":0.2925851703,"5147":0.2945891784,"5148":0.2965931864,"5149":0.2985971944,"5150":0.3006012024,"5151":0.3026052104,"5152":0.3046092184,"5153":0.3066132265,"5154":0.3086172345,"5155":0.3106212425,"5156":0.3126252505,"5157":0.3146292585,"5158":0.3166332665,"5159":0.3186372745,"5160":0.3206412826,"5161":0.3226452906,"5162":0.3246492986,"5163":0.3266533066,"5164":0.3286573146,"5165":0.3306613226,"5166":0.3326653307,"5167":0.3346693387,"5168":0.3366733467,"5169":0.3386773547,"5170":0.3406813627,"5171":0.3426853707,"5172":0.3446893788,"5173":0.3466933868,"5174":0.3486973948,"5175":0.3507014028,"5176":0.3527054108,"5177":0.3547094188,"5178":0.3567134269,"5179":0.3587174349,"5180":0.3607214429,"5181":0.3627254509,"5182":0.3647294589,"5183":0.3667334669,"5184":0.3687374749,"5185":0.370741483,"5186":0.372745491,"5187":0.374749499,"5188":0.376753507,"5189":0.378757515,"5190":0.380761523,"5191":0.3827655311,"5192":0.3847695391,"5193":0.3867735471,"5194":0.3887775551,"5195":0.3907815631,"5196":0.3927855711,"5197":0.3947895792,"5198":0.3967935872,"5199":0.3987975952,"5200":0.4008016032,"5201":0.4028056112,"5202":0.4048096192,"5203":0.4068136273,"5204":0.4088176353,"5205":0.4108216433,"5206":0.4128256513,"5207":0.4148296593,"5208":0.4168336673,"5209":0.4188376754,"5210":0.4208416834,"5211":0.4228456914,"5212":0.4248496994,"5213":0.4268537074,"5214":0.4288577154,"5215":0.4308617234,"5216":0.4328657315,"5217":0.4348697395,"5218":0.4368737475,"5219":0.4388777555,"5220":0.4408817635,"5221":0.4428857715,"5222":0.4448897796,"5223":0.4468937876,"5224":0.4488977956,"5225":0.4509018036,"5226":0.4529058116,"5227":0.4549098196,"5228":0.4569138277,"5229":0.4589178357,"5230":0.4609218437,"5231":0.4629258517,"5232":0.4649298597,"5233":0.4669338677,"5234":0.4689378758,"5235":0.4709418838,"5236":0.4729458918,"5237":0.4749498998,"5238":0.4769539078,"5239":0.4789579158,"5240":0.4809619238,"5241":0.4829659319,"5242":0.4849699399,"5243":0.4869739479,"5244":0.4889779559,"5245":0.4909819639,"5246":0.4929859719,"5247":0.49498998,"5248":0.496993988,"5249":0.498997996,"5250":0.501002004,"5251":0.503006012,"5252":0.50501002,"5253":0.5070140281,"5254":0.5090180361,"5255":0.5110220441,"5256":0.5130260521,"5257":0.5150300601,"5258":0.5170340681,"5259":0.5190380762,"5260":0.5210420842,"5261":0.5230460922,"5262":0.5250501002,"5263":0.5270541082,"5264":0.5290581162,"5265":0.5310621242,"5266":0.5330661323,"5267":0.5350701403,"5268":0.5370741483,"5269":0.5390781563,"5270":0.5410821643,"5271":0.5430861723,"5272":0.5450901804,"5273":0.5470941884,"5274":0.5490981964,"5275":0.5511022044,"5276":0.5531062124,"5277":0.5551102204,"5278":0.5571142285,"5279":0.5591182365,"5280":0.5611222445,"5281":0.5631262525,"5282":0.5651302605,"5283":0.5671342685,"5284":0.5691382766,"5285":0.5711422846,"5286":0.5731462926,"5287":0.5751503006,"5288":0.5771543086,"5289":0.5791583166,"5290":0.5811623246,"5291":0.5831663327,"5292":0.5851703407,"5293":0.5871743487,"5294":0.5891783567,"5295":0.5911823647,"5296":0.5931863727,"5297":0.5951903808,"5298":0.5971943888,"5299":0.5991983968,"5300":0.6012024048,"5301":0.6032064128,"5302":0.6052104208,"5303":0.6072144289,"5304":0.6092184369,"5305":0.6112224449,"5306":0.6132264529,"5307":0.6152304609,"5308":0.6172344689,"5309":0.619238477,"5310":0.621242485,"5311":0.623246493,"5312":0.625250501,"5313":0.627254509,"5314":0.629258517,"5315":0.6312625251,"5316":0.6332665331,"5317":0.6352705411,"5318":0.6372745491,"5319":0.6392785571,"5320":0.6412825651,"5321":0.6432865731,"5322":0.6452905812,"5323":0.6472945892,"5324":0.6492985972,"5325":0.6513026052,"5326":0.6533066132,"5327":0.6553106212,"5328":0.6573146293,"5329":0.6593186373,"5330":0.6613226453,"5331":0.6633266533,"5332":0.6653306613,"5333":0.6673346693,"5334":0.6693386774,"5335":0.6713426854,"5336":0.6733466934,"5337":0.6753507014,"5338":0.6773547094,"5339":0.6793587174,"5340":0.6813627255,"5341":0.6833667335,"5342":0.6853707415,"5343":0.6873747495,"5344":0.6893787575,"5345":0.6913827655,"5346":0.6933867735,"5347":0.6953907816,"5348":0.6973947896,"5349":0.6993987976,"5350":0.7014028056,"5351":0.7034068136,"5352":0.7054108216,"5353":0.7074148297,"5354":0.7094188377,"5355":0.7114228457,"5356":0.7134268537,"5357":0.7154308617,"5358":0.7174348697,"5359":0.7194388778,"5360":0.7214428858,"5361":0.7234468938,"5362":0.7254509018,"5363":0.7274549098,"5364":0.7294589178,"5365":0.7314629259,"5366":0.7334669339,"5367":0.7354709419,"5368":0.7374749499,"5369":0.7394789579,"5370":0.7414829659,"5371":0.7434869739,"5372":0.745490982,"5373":0.74749499,"5374":0.749498998,"5375":0.751503006,"5376":0.753507014,"5377":0.755511022,"5378":0.7575150301,"5379":0.7595190381,"5380":0.7615230461,"5381":0.7635270541,"5382":0.7655310621,"5383":0.7675350701,"5384":0.7695390782,"5385":0.7715430862,"5386":0.7735470942,"5387":0.7755511022,"5388":0.7775551102,"5389":0.7795591182,"5390":0.7815631263,"5391":0.7835671343,"5392":0.7855711423,"5393":0.7875751503,"5394":0.7895791583,"5395":0.7915831663,"5396":0.7935871743,"5397":0.7955911824,"5398":0.7975951904,"5399":0.7995991984,"5400":0.8016032064,"5401":0.8036072144,"5402":0.8056112224,"5403":0.8076152305,"5404":0.8096192385,"5405":0.8116232465,"5406":0.8136272545,"5407":0.8156312625,"5408":0.8176352705,"5409":0.8196392786,"5410":0.8216432866,"5411":0.8236472946,"5412":0.8256513026,"5413":0.8276553106,"5414":0.8296593186,"5415":0.8316633267,"5416":0.8336673347,"5417":0.8356713427,"5418":0.8376753507,"5419":0.8396793587,"5420":0.8416833667,"5421":0.8436873747,"5422":0.8456913828,"5423":0.8476953908,"5424":0.8496993988,"5425":0.8517034068,"5426":0.8537074148,"5427":0.8557114228,"5428":0.8577154309,"5429":0.8597194389,"5430":0.8617234469,"5431":0.8637274549,"5432":0.8657314629,"5433":0.8677354709,"5434":0.869739479,"5435":0.871743487,"5436":0.873747495,"5437":0.875751503,"5438":0.877755511,"5439":0.879759519,"5440":0.8817635271,"5441":0.8837675351,"5442":0.8857715431,"5443":0.8877755511,"5444":0.8897795591,"5445":0.8917835671,"5446":0.8937875752,"5447":0.8957915832,"5448":0.8977955912,"5449":0.8997995992,"5450":0.9018036072,"5451":0.9038076152,"5452":0.9058116232,"5453":0.9078156313,"5454":0.9098196393,"5455":0.9118236473,"5456":0.9138276553,"5457":0.9158316633,"5458":0.9178356713,"5459":0.9198396794,"5460":0.9218436874,"5461":0.9238476954,"5462":0.9258517034,"5463":0.9278557114,"5464":0.9298597194,"5465":0.9318637275,"5466":0.9338677355,"5467":0.9358717435,"5468":0.9378757515,"5469":0.9398797595,"5470":0.9418837675,"5471":0.9438877756,"5472":0.9458917836,"5473":0.9478957916,"5474":0.9498997996,"5475":0.9519038076,"5476":0.9539078156,"5477":0.9559118236,"5478":0.9579158317,"5479":0.9599198397,"5480":0.9619238477,"5481":0.9639278557,"5482":0.9659318637,"5483":0.9679358717,"5484":0.9699398798,"5485":0.9719438878,"5486":0.9739478958,"5487":0.9759519038,"5488":0.9779559118,"5489":0.9799599198,"5490":0.9819639279,"5491":0.9839679359,"5492":0.9859719439,"5493":0.9879759519,"5494":0.9899799599,"5495":0.9919839679,"5496":0.993987976,"5497":0.995991984,"5498":0.997995992,"5499":1.0,"5500":0.0,"5501":0.002004008,"5502":0.004008016,"5503":0.006012024,"5504":0.0080160321,"5505":0.0100200401,"5506":0.0120240481,"5507":0.0140280561,"5508":0.0160320641,"5509":0.0180360721,"5510":0.0200400802,"5511":0.0220440882,"5512":0.0240480962,"5513":0.0260521042,"5514":0.0280561122,"5515":0.0300601202,"5516":0.0320641283,"5517":0.0340681363,"5518":0.0360721443,"5519":0.0380761523,"5520":0.0400801603,"5521":0.0420841683,"5522":0.0440881764,"5523":0.0460921844,"5524":0.0480961924,"5525":0.0501002004,"5526":0.0521042084,"5527":0.0541082164,"5528":0.0561122244,"5529":0.0581162325,"5530":0.0601202405,"5531":0.0621242485,"5532":0.0641282565,"5533":0.0661322645,"5534":0.0681362725,"5535":0.0701402806,"5536":0.0721442886,"5537":0.0741482966,"5538":0.0761523046,"5539":0.0781563126,"5540":0.0801603206,"5541":0.0821643287,"5542":0.0841683367,"5543":0.0861723447,"5544":0.0881763527,"5545":0.0901803607,"5546":0.0921843687,"5547":0.0941883768,"5548":0.0961923848,"5549":0.0981963928,"5550":0.1002004008,"5551":0.1022044088,"5552":0.1042084168,"5553":0.1062124248,"5554":0.1082164329,"5555":0.1102204409,"5556":0.1122244489,"5557":0.1142284569,"5558":0.1162324649,"5559":0.1182364729,"5560":0.120240481,"5561":0.122244489,"5562":0.124248497,"5563":0.126252505,"5564":0.128256513,"5565":0.130260521,"5566":0.1322645291,"5567":0.1342685371,"5568":0.1362725451,"5569":0.1382765531,"5570":0.1402805611,"5571":0.1422845691,"5572":0.1442885772,"5573":0.1462925852,"5574":0.1482965932,"5575":0.1503006012,"5576":0.1523046092,"5577":0.1543086172,"5578":0.1563126253,"5579":0.1583166333,"5580":0.1603206413,"5581":0.1623246493,"5582":0.1643286573,"5583":0.1663326653,"5584":0.1683366733,"5585":0.1703406814,"5586":0.1723446894,"5587":0.1743486974,"5588":0.1763527054,"5589":0.1783567134,"5590":0.1803607214,"5591":0.1823647295,"5592":0.1843687375,"5593":0.1863727455,"5594":0.1883767535,"5595":0.1903807615,"5596":0.1923847695,"5597":0.1943887776,"5598":0.1963927856,"5599":0.1983967936,"5600":0.2004008016,"5601":0.2024048096,"5602":0.2044088176,"5603":0.2064128257,"5604":0.2084168337,"5605":0.2104208417,"5606":0.2124248497,"5607":0.2144288577,"5608":0.2164328657,"5609":0.2184368737,"5610":0.2204408818,"5611":0.2224448898,"5612":0.2244488978,"5613":0.2264529058,"5614":0.2284569138,"5615":0.2304609218,"5616":0.2324649299,"5617":0.2344689379,"5618":0.2364729459,"5619":0.2384769539,"5620":0.2404809619,"5621":0.2424849699,"5622":0.244488978,"5623":0.246492986,"5624":0.248496994,"5625":0.250501002,"5626":0.25250501,"5627":0.254509018,"5628":0.2565130261,"5629":0.2585170341,"5630":0.2605210421,"5631":0.2625250501,"5632":0.2645290581,"5633":0.2665330661,"5634":0.2685370741,"5635":0.2705410822,"5636":0.2725450902,"5637":0.2745490982,"5638":0.2765531062,"5639":0.2785571142,"5640":0.2805611222,"5641":0.2825651303,"5642":0.2845691383,"5643":0.2865731463,"5644":0.2885771543,"5645":0.2905811623,"5646":0.2925851703,"5647":0.2945891784,"5648":0.2965931864,"5649":0.2985971944,"5650":0.3006012024,"5651":0.3026052104,"5652":0.3046092184,"5653":0.3066132265,"5654":0.3086172345,"5655":0.3106212425,"5656":0.3126252505,"5657":0.3146292585,"5658":0.3166332665,"5659":0.3186372745,"5660":0.3206412826,"5661":0.3226452906,"5662":0.3246492986,"5663":0.3266533066,"5664":0.3286573146,"5665":0.3306613226,"5666":0.3326653307,"5667":0.3346693387,"5668":0.3366733467,"5669":0.3386773547,"5670":0.3406813627,"5671":0.3426853707,"5672":0.3446893788,"5673":0.3466933868,"5674":0.3486973948,"5675":0.3507014028,"5676":0.3527054108,"5677":0.3547094188,"5678":0.3567134269,"5679":0.3587174349,"5680":0.3607214429,"5681":0.3627254509,"5682":0.3647294589,"5683":0.3667334669,"5684":0.3687374749,"5685":0.370741483,"5686":0.372745491,"5687":0.374749499,"5688":0.376753507,"5689":0.378757515,"5690":0.380761523,"5691":0.3827655311,"5692":0.3847695391,"5693":0.3867735471,"5694":0.3887775551,"5695":0.3907815631,"5696":0.3927855711,"5697":0.3947895792,"5698":0.3967935872,"5699":0.3987975952,"5700":0.4008016032,"5701":0.4028056112,"5702":0.4048096192,"5703":0.4068136273,"5704":0.4088176353,"5705":0.4108216433,"5706":0.4128256513,"5707":0.4148296593,"5708":0.4168336673,"5709":0.4188376754,"5710":0.4208416834,"5711":0.4228456914,"5712":0.4248496994,"5713":0.4268537074,"5714":0.4288577154,"5715":0.4308617234,"5716":0.4328657315,"5717":0.4348697395,"5718":0.4368737475,"5719":0.4388777555,"5720":0.4408817635,"5721":0.4428857715,"5722":0.4448897796,"5723":0.4468937876,"5724":0.4488977956,"5725":0.4509018036,"5726":0.4529058116,"5727":0.4549098196,"5728":0.4569138277,"5729":0.4589178357,"5730":0.4609218437,"5731":0.4629258517,"5732":0.4649298597,"5733":0.4669338677,"5734":0.4689378758,"5735":0.4709418838,"5736":0.4729458918,"5737":0.4749498998,"5738":0.4769539078,"5739":0.4789579158,"5740":0.4809619238,"5741":0.4829659319,"5742":0.4849699399,"5743":0.4869739479,"5744":0.4889779559,"5745":0.4909819639,"5746":0.4929859719,"5747":0.49498998,"5748":0.496993988,"5749":0.498997996,"5750":0.501002004,"5751":0.503006012,"5752":0.50501002,"5753":0.5070140281,"5754":0.5090180361,"5755":0.5110220441,"5756":0.5130260521,"5757":0.5150300601,"5758":0.5170340681,"5759":0.5190380762,"5760":0.5210420842,"5761":0.5230460922,"5762":0.5250501002,"5763":0.5270541082,"5764":0.5290581162,"5765":0.5310621242,"5766":0.5330661323,"5767":0.5350701403,"5768":0.5370741483,"5769":0.5390781563,"5770":0.5410821643,"5771":0.5430861723,"5772":0.5450901804,"5773":0.5470941884,"5774":0.5490981964,"5775":0.5511022044,"5776":0.5531062124,"5777":0.5551102204,"5778":0.5571142285,"5779":0.5591182365,"5780":0.5611222445,"5781":0.5631262525,"5782":0.5651302605,"5783":0.5671342685,"5784":0.5691382766,"5785":0.5711422846,"5786":0.5731462926,"5787":0.5751503006,"5788":0.5771543086,"5789":0.5791583166,"5790":0.5811623246,"5791":0.5831663327,"5792":0.5851703407,"5793":0.5871743487,"5794":0.5891783567,"5795":0.5911823647,"5796":0.5931863727,"5797":0.5951903808,"5798":0.5971943888,"5799":0.5991983968,"5800":0.6012024048,"5801":0.6032064128,"5802":0.6052104208,"5803":0.6072144289,"5804":0.6092184369,"5805":0.6112224449,"5806":0.6132264529,"5807":0.6152304609,"5808":0.6172344689,"5809":0.619238477,"5810":0.621242485,"5811":0.623246493,"5812":0.625250501,"5813":0.627254509,"5814":0.629258517,"5815":0.6312625251,"5816":0.6332665331,"5817":0.6352705411,"5818":0.6372745491,"5819":0.6392785571,"5820":0.6412825651,"5821":0.6432865731,"5822":0.6452905812,"5823":0.6472945892,"5824":0.6492985972,"5825":0.6513026052,"5826":0.6533066132,"5827":0.6553106212,"5828":0.6573146293,"5829":0.6593186373,"5830":0.6613226453,"5831":0.6633266533,"5832":0.6653306613,"5833":0.6673346693,"5834":0.6693386774,"5835":0.6713426854,"5836":0.6733466934,"5837":0.6753507014,"5838":0.6773547094,"5839":0.6793587174,"5840":0.6813627255,"5841":0.6833667335,"5842":0.6853707415,"5843":0.6873747495,"5844":0.6893787575,"5845":0.6913827655,"5846":0.6933867735,"5847":0.6953907816,"5848":0.6973947896,"5849":0.6993987976,"5850":0.7014028056,"5851":0.7034068136,"5852":0.7054108216,"5853":0.7074148297,"5854":0.7094188377,"5855":0.7114228457,"5856":0.7134268537,"5857":0.7154308617,"5858":0.7174348697,"5859":0.7194388778,"5860":0.7214428858,"5861":0.7234468938,"5862":0.7254509018,"5863":0.7274549098,"5864":0.7294589178,"5865":0.7314629259,"5866":0.7334669339,"5867":0.7354709419,"5868":0.7374749499,"5869":0.7394789579,"5870":0.7414829659,"5871":0.7434869739,"5872":0.745490982,"5873":0.74749499,"5874":0.749498998,"5875":0.751503006,"5876":0.753507014,"5877":0.755511022,"5878":0.7575150301,"5879":0.7595190381,"5880":0.7615230461,"5881":0.7635270541,"5882":0.7655310621,"5883":0.7675350701,"5884":0.7695390782,"5885":0.7715430862,"5886":0.7735470942,"5887":0.7755511022,"5888":0.7775551102,"5889":0.7795591182,"5890":0.7815631263,"5891":0.7835671343,"5892":0.7855711423,"5893":0.7875751503,"5894":0.7895791583,"5895":0.7915831663,"5896":0.7935871743,"5897":0.7955911824,"5898":0.7975951904,"5899":0.7995991984,"5900":0.8016032064,"5901":0.8036072144,"5902":0.8056112224,"5903":0.8076152305,"5904":0.8096192385,"5905":0.8116232465,"5906":0.8136272545,"5907":0.8156312625,"5908":0.8176352705,"5909":0.8196392786,"5910":0.8216432866,"5911":0.8236472946,"5912":0.8256513026,"5913":0.8276553106,"5914":0.8296593186,"5915":0.8316633267,"5916":0.8336673347,"5917":0.8356713427,"5918":0.8376753507,"5919":0.8396793587,"5920":0.8416833667,"5921":0.8436873747,"5922":0.8456913828,"5923":0.8476953908,"5924":0.8496993988,"5925":0.8517034068,"5926":0.8537074148,"5927":0.8557114228,"5928":0.8577154309,"5929":0.8597194389,"5930":0.8617234469,"5931":0.8637274549,"5932":0.8657314629,"5933":0.8677354709,"5934":0.869739479,"5935":0.871743487,"5936":0.873747495,"5937":0.875751503,"5938":0.877755511,"5939":0.879759519,"5940":0.8817635271,"5941":0.8837675351,"5942":0.8857715431,"5943":0.8877755511,"5944":0.8897795591,"5945":0.8917835671,"5946":0.8937875752,"5947":0.8957915832,"5948":0.8977955912,"5949":0.8997995992,"5950":0.9018036072,"5951":0.9038076152,"5952":0.9058116232,"5953":0.9078156313,"5954":0.9098196393,"5955":0.9118236473,"5956":0.9138276553,"5957":0.9158316633,"5958":0.9178356713,"5959":0.9198396794,"5960":0.9218436874,"5961":0.9238476954,"5962":0.9258517034,"5963":0.9278557114,"5964":0.9298597194,"5965":0.9318637275,"5966":0.9338677355,"5967":0.9358717435,"5968":0.9378757515,"5969":0.9398797595,"5970":0.9418837675,"5971":0.9438877756,"5972":0.9458917836,"5973":0.9478957916,"5974":0.9498997996,"5975":0.9519038076,"5976":0.9539078156,"5977":0.9559118236,"5978":0.9579158317,"5979":0.9599198397,"5980":0.9619238477,"5981":0.9639278557,"5982":0.9659318637,"5983":0.9679358717,"5984":0.9699398798,"5985":0.9719438878,"5986":0.9739478958,"5987":0.9759519038,"5988":0.9779559118,"5989":0.9799599198,"5990":0.9819639279,"5991":0.9839679359,"5992":0.9859719439,"5993":0.9879759519,"5994":0.9899799599,"5995":0.9919839679,"5996":0.993987976,"5997":0.995991984,"5998":0.997995992,"5999":1.0,"6000":0.0,"6001":0.002004008,"6002":0.004008016,"6003":0.006012024,"6004":0.0080160321,"6005":0.0100200401,"6006":0.0120240481,"6007":0.0140280561,"6008":0.0160320641,"6009":0.0180360721,"6010":0.0200400802,"6011":0.0220440882,"6012":0.0240480962,"6013":0.0260521042,"6014":0.0280561122,"6015":0.0300601202,"6016":0.0320641283,"6017":0.0340681363,"6018":0.0360721443,"6019":0.0380761523,"6020":0.0400801603,"6021":0.0420841683,"6022":0.0440881764,"6023":0.0460921844,"6024":0.0480961924,"6025":0.0501002004,"6026":0.0521042084,"6027":0.0541082164,"6028":0.0561122244,"6029":0.0581162325,"6030":0.0601202405,"6031":0.0621242485,"6032":0.0641282565,"6033":0.0661322645,"6034":0.0681362725,"6035":0.0701402806,"6036":0.0721442886,"6037":0.0741482966,"6038":0.0761523046,"6039":0.0781563126,"6040":0.0801603206,"6041":0.0821643287,"6042":0.0841683367,"6043":0.0861723447,"6044":0.0881763527,"6045":0.0901803607,"6046":0.0921843687,"6047":0.0941883768,"6048":0.0961923848,"6049":0.0981963928,"6050":0.1002004008,"6051":0.1022044088,"6052":0.1042084168,"6053":0.1062124248,"6054":0.1082164329,"6055":0.1102204409,"6056":0.1122244489,"6057":0.1142284569,"6058":0.1162324649,"6059":0.1182364729,"6060":0.120240481,"6061":0.122244489,"6062":0.124248497,"6063":0.126252505,"6064":0.128256513,"6065":0.130260521,"6066":0.1322645291,"6067":0.1342685371,"6068":0.1362725451,"6069":0.1382765531,"6070":0.1402805611,"6071":0.1422845691,"6072":0.1442885772,"6073":0.1462925852,"6074":0.1482965932,"6075":0.1503006012,"6076":0.1523046092,"6077":0.1543086172,"6078":0.1563126253,"6079":0.1583166333,"6080":0.1603206413,"6081":0.1623246493,"6082":0.1643286573,"6083":0.1663326653,"6084":0.1683366733,"6085":0.1703406814,"6086":0.1723446894,"6087":0.1743486974,"6088":0.1763527054,"6089":0.1783567134,"6090":0.1803607214,"6091":0.1823647295,"6092":0.1843687375,"6093":0.1863727455,"6094":0.1883767535,"6095":0.1903807615,"6096":0.1923847695,"6097":0.1943887776,"6098":0.1963927856,"6099":0.1983967936,"6100":0.2004008016,"6101":0.2024048096,"6102":0.2044088176,"6103":0.2064128257,"6104":0.2084168337,"6105":0.2104208417,"6106":0.2124248497,"6107":0.2144288577,"6108":0.2164328657,"6109":0.2184368737,"6110":0.2204408818,"6111":0.2224448898,"6112":0.2244488978,"6113":0.2264529058,"6114":0.2284569138,"6115":0.2304609218,"6116":0.2324649299,"6117":0.2344689379,"6118":0.2364729459,"6119":0.2384769539,"6120":0.2404809619,"6121":0.2424849699,"6122":0.244488978,"6123":0.246492986,"6124":0.248496994,"6125":0.250501002,"6126":0.25250501,"6127":0.254509018,"6128":0.2565130261,"6129":0.2585170341,"6130":0.2605210421,"6131":0.2625250501,"6132":0.2645290581,"6133":0.2665330661,"6134":0.2685370741,"6135":0.2705410822,"6136":0.2725450902,"6137":0.2745490982,"6138":0.2765531062,"6139":0.2785571142,"6140":0.2805611222,"6141":0.2825651303,"6142":0.2845691383,"6143":0.2865731463,"6144":0.2885771543,"6145":0.2905811623,"6146":0.2925851703,"6147":0.2945891784,"6148":0.2965931864,"6149":0.2985971944,"6150":0.3006012024,"6151":0.3026052104,"6152":0.3046092184,"6153":0.3066132265,"6154":0.3086172345,"6155":0.3106212425,"6156":0.3126252505,"6157":0.3146292585,"6158":0.3166332665,"6159":0.3186372745,"6160":0.3206412826,"6161":0.3226452906,"6162":0.3246492986,"6163":0.3266533066,"6164":0.3286573146,"6165":0.3306613226,"6166":0.3326653307,"6167":0.3346693387,"6168":0.3366733467,"6169":0.3386773547,"6170":0.3406813627,"6171":0.3426853707,"6172":0.3446893788,"6173":0.3466933868,"6174":0.3486973948,"6175":0.3507014028,"6176":0.3527054108,"6177":0.3547094188,"6178":0.3567134269,"6179":0.3587174349,"6180":0.3607214429,"6181":0.3627254509,"6182":0.3647294589,"6183":0.3667334669,"6184":0.3687374749,"6185":0.370741483,"6186":0.372745491,"6187":0.374749499,"6188":0.376753507,"6189":0.378757515,"6190":0.380761523,"6191":0.3827655311,"6192":0.3847695391,"6193":0.3867735471,"6194":0.3887775551,"6195":0.3907815631,"6196":0.3927855711,"6197":0.3947895792,"6198":0.3967935872,"6199":0.3987975952,"6200":0.4008016032,"6201":0.4028056112,"6202":0.4048096192,"6203":0.4068136273,"6204":0.4088176353,"6205":0.4108216433,"6206":0.4128256513,"6207":0.4148296593,"6208":0.4168336673,"6209":0.4188376754,"6210":0.4208416834,"6211":0.4228456914,"6212":0.4248496994,"6213":0.4268537074,"6214":0.4288577154,"6215":0.4308617234,"6216":0.4328657315,"6217":0.4348697395,"6218":0.4368737475,"6219":0.4388777555,"6220":0.4408817635,"6221":0.4428857715,"6222":0.4448897796,"6223":0.4468937876,"6224":0.4488977956,"6225":0.4509018036,"6226":0.4529058116,"6227":0.4549098196,"6228":0.4569138277,"6229":0.4589178357,"6230":0.4609218437,"6231":0.4629258517,"6232":0.4649298597,"6233":0.4669338677,"6234":0.4689378758,"6235":0.4709418838,"6236":0.4729458918,"6237":0.4749498998,"6238":0.4769539078,"6239":0.4789579158,"6240":0.4809619238,"6241":0.4829659319,"6242":0.4849699399,"6243":0.4869739479,"6244":0.4889779559,"6245":0.4909819639,"6246":0.4929859719,"6247":0.49498998,"6248":0.496993988,"6249":0.498997996,"6250":0.501002004,"6251":0.503006012,"6252":0.50501002,"6253":0.5070140281,"6254":0.5090180361,"6255":0.5110220441,"6256":0.5130260521,"6257":0.5150300601,"6258":0.5170340681,"6259":0.5190380762,"6260":0.5210420842,"6261":0.5230460922,"6262":0.5250501002,"6263":0.5270541082,"6264":0.5290581162,"6265":0.5310621242,"6266":0.5330661323,"6267":0.5350701403,"6268":0.5370741483,"6269":0.5390781563,"6270":0.5410821643,"6271":0.5430861723,"6272":0.5450901804,"6273":0.5470941884,"6274":0.5490981964,"6275":0.5511022044,"6276":0.5531062124,"6277":0.5551102204,"6278":0.5571142285,"6279":0.5591182365,"6280":0.5611222445,"6281":0.5631262525,"6282":0.5651302605,"6283":0.5671342685,"6284":0.5691382766,"6285":0.5711422846,"6286":0.5731462926,"6287":0.5751503006,"6288":0.5771543086,"6289":0.5791583166,"6290":0.5811623246,"6291":0.5831663327,"6292":0.5851703407,"6293":0.5871743487,"6294":0.5891783567,"6295":0.5911823647,"6296":0.5931863727,"6297":0.5951903808,"6298":0.5971943888,"6299":0.5991983968,"6300":0.6012024048,"6301":0.6032064128,"6302":0.6052104208,"6303":0.6072144289,"6304":0.6092184369,"6305":0.6112224449,"6306":0.6132264529,"6307":0.6152304609,"6308":0.6172344689,"6309":0.619238477,"6310":0.621242485,"6311":0.623246493,"6312":0.625250501,"6313":0.627254509,"6314":0.629258517,"6315":0.6312625251,"6316":0.6332665331,"6317":0.6352705411,"6318":0.6372745491,"6319":0.6392785571,"6320":0.6412825651,"6321":0.6432865731,"6322":0.6452905812,"6323":0.6472945892,"6324":0.6492985972,"6325":0.6513026052,"6326":0.6533066132,"6327":0.6553106212,"6328":0.6573146293,"6329":0.6593186373,"6330":0.6613226453,"6331":0.6633266533,"6332":0.6653306613,"6333":0.6673346693,"6334":0.6693386774,"6335":0.6713426854,"6336":0.6733466934,"6337":0.6753507014,"6338":0.6773547094,"6339":0.6793587174,"6340":0.6813627255,"6341":0.6833667335,"6342":0.6853707415,"6343":0.6873747495,"6344":0.6893787575,"6345":0.6913827655,"6346":0.6933867735,"6347":0.6953907816,"6348":0.6973947896,"6349":0.6993987976,"6350":0.7014028056,"6351":0.7034068136,"6352":0.7054108216,"6353":0.7074148297,"6354":0.7094188377,"6355":0.7114228457,"6356":0.7134268537,"6357":0.7154308617,"6358":0.7174348697,"6359":0.7194388778,"6360":0.7214428858,"6361":0.7234468938,"6362":0.7254509018,"6363":0.7274549098,"6364":0.7294589178,"6365":0.7314629259,"6366":0.7334669339,"6367":0.7354709419,"6368":0.7374749499,"6369":0.7394789579,"6370":0.7414829659,"6371":0.7434869739,"6372":0.745490982,"6373":0.74749499,"6374":0.749498998,"6375":0.751503006,"6376":0.753507014,"6377":0.755511022,"6378":0.7575150301,"6379":0.7595190381,"6380":0.7615230461,"6381":0.7635270541,"6382":0.7655310621,"6383":0.7675350701,"6384":0.7695390782,"6385":0.7715430862,"6386":0.7735470942,"6387":0.7755511022,"6388":0.7775551102,"6389":0.7795591182,"6390":0.7815631263,"6391":0.7835671343,"6392":0.7855711423,"6393":0.7875751503,"6394":0.7895791583,"6395":0.7915831663,"6396":0.7935871743,"6397":0.7955911824,"6398":0.7975951904,"6399":0.7995991984,"6400":0.8016032064,"6401":0.8036072144,"6402":0.8056112224,"6403":0.8076152305,"6404":0.8096192385,"6405":0.8116232465,"6406":0.8136272545,"6407":0.8156312625,"6408":0.8176352705,"6409":0.8196392786,"6410":0.8216432866,"6411":0.8236472946,"6412":0.8256513026,"6413":0.8276553106,"6414":0.8296593186,"6415":0.8316633267,"6416":0.8336673347,"6417":0.8356713427,"6418":0.8376753507,"6419":0.8396793587,"6420":0.8416833667,"6421":0.8436873747,"6422":0.8456913828,"6423":0.8476953908,"6424":0.8496993988,"6425":0.8517034068,"6426":0.8537074148,"6427":0.8557114228,"6428":0.8577154309,"6429":0.8597194389,"6430":0.8617234469,"6431":0.8637274549,"6432":0.8657314629,"6433":0.8677354709,"6434":0.869739479,"6435":0.871743487,"6436":0.873747495,"6437":0.875751503,"6438":0.877755511,"6439":0.879759519,"6440":0.8817635271,"6441":0.8837675351,"6442":0.8857715431,"6443":0.8877755511,"6444":0.8897795591,"6445":0.8917835671,"6446":0.8937875752,"6447":0.8957915832,"6448":0.8977955912,"6449":0.8997995992,"6450":0.9018036072,"6451":0.9038076152,"6452":0.9058116232,"6453":0.9078156313,"6454":0.9098196393,"6455":0.9118236473,"6456":0.9138276553,"6457":0.9158316633,"6458":0.9178356713,"6459":0.9198396794,"6460":0.9218436874,"6461":0.9238476954,"6462":0.9258517034,"6463":0.9278557114,"6464":0.9298597194,"6465":0.9318637275,"6466":0.9338677355,"6467":0.9358717435,"6468":0.9378757515,"6469":0.9398797595,"6470":0.9418837675,"6471":0.9438877756,"6472":0.9458917836,"6473":0.9478957916,"6474":0.9498997996,"6475":0.9519038076,"6476":0.9539078156,"6477":0.9559118236,"6478":0.9579158317,"6479":0.9599198397,"6480":0.9619238477,"6481":0.9639278557,"6482":0.9659318637,"6483":0.9679358717,"6484":0.9699398798,"6485":0.9719438878,"6486":0.9739478958,"6487":0.9759519038,"6488":0.9779559118,"6489":0.9799599198,"6490":0.9819639279,"6491":0.9839679359,"6492":0.9859719439,"6493":0.9879759519,"6494":0.9899799599,"6495":0.9919839679,"6496":0.993987976,"6497":0.995991984,"6498":0.997995992,"6499":1.0,"6500":0.0,"6501":0.002004008,"6502":0.004008016,"6503":0.006012024,"6504":0.0080160321,"6505":0.0100200401,"6506":0.0120240481,"6507":0.0140280561,"6508":0.0160320641,"6509":0.0180360721,"6510":0.0200400802,"6511":0.0220440882,"6512":0.0240480962,"6513":0.0260521042,"6514":0.0280561122,"6515":0.0300601202,"6516":0.0320641283,"6517":0.0340681363,"6518":0.0360721443,"6519":0.0380761523,"6520":0.0400801603,"6521":0.0420841683,"6522":0.0440881764,"6523":0.0460921844,"6524":0.0480961924,"6525":0.0501002004,"6526":0.0521042084,"6527":0.0541082164,"6528":0.0561122244,"6529":0.0581162325,"6530":0.0601202405,"6531":0.0621242485,"6532":0.0641282565,"6533":0.0661322645,"6534":0.0681362725,"6535":0.0701402806,"6536":0.0721442886,"6537":0.0741482966,"6538":0.0761523046,"6539":0.0781563126,"6540":0.0801603206,"6541":0.0821643287,"6542":0.0841683367,"6543":0.0861723447,"6544":0.0881763527,"6545":0.0901803607,"6546":0.0921843687,"6547":0.0941883768,"6548":0.0961923848,"6549":0.0981963928,"6550":0.1002004008,"6551":0.1022044088,"6552":0.1042084168,"6553":0.1062124248,"6554":0.1082164329,"6555":0.1102204409,"6556":0.1122244489,"6557":0.1142284569,"6558":0.1162324649,"6559":0.1182364729,"6560":0.120240481,"6561":0.122244489,"6562":0.124248497,"6563":0.126252505,"6564":0.128256513,"6565":0.130260521,"6566":0.1322645291,"6567":0.1342685371,"6568":0.1362725451,"6569":0.1382765531,"6570":0.1402805611,"6571":0.1422845691,"6572":0.1442885772,"6573":0.1462925852,"6574":0.1482965932,"6575":0.1503006012,"6576":0.1523046092,"6577":0.1543086172,"6578":0.1563126253,"6579":0.1583166333,"6580":0.1603206413,"6581":0.1623246493,"6582":0.1643286573,"6583":0.1663326653,"6584":0.1683366733,"6585":0.1703406814,"6586":0.1723446894,"6587":0.1743486974,"6588":0.1763527054,"6589":0.1783567134,"6590":0.1803607214,"6591":0.1823647295,"6592":0.1843687375,"6593":0.1863727455,"6594":0.1883767535,"6595":0.1903807615,"6596":0.1923847695,"6597":0.1943887776,"6598":0.1963927856,"6599":0.1983967936,"6600":0.2004008016,"6601":0.2024048096,"6602":0.2044088176,"6603":0.2064128257,"6604":0.2084168337,"6605":0.2104208417,"6606":0.2124248497,"6607":0.2144288577,"6608":0.2164328657,"6609":0.2184368737,"6610":0.2204408818,"6611":0.2224448898,"6612":0.2244488978,"6613":0.2264529058,"6614":0.2284569138,"6615":0.2304609218,"6616":0.2324649299,"6617":0.2344689379,"6618":0.2364729459,"6619":0.2384769539,"6620":0.2404809619,"6621":0.2424849699,"6622":0.244488978,"6623":0.246492986,"6624":0.248496994,"6625":0.250501002,"6626":0.25250501,"6627":0.254509018,"6628":0.2565130261,"6629":0.2585170341,"6630":0.2605210421,"6631":0.2625250501,"6632":0.2645290581,"6633":0.2665330661,"6634":0.2685370741,"6635":0.2705410822,"6636":0.2725450902,"6637":0.2745490982,"6638":0.2765531062,"6639":0.2785571142,"6640":0.2805611222,"6641":0.2825651303,"6642":0.2845691383,"6643":0.2865731463,"6644":0.2885771543,"6645":0.2905811623,"6646":0.2925851703,"6647":0.2945891784,"6648":0.2965931864,"6649":0.2985971944,"6650":0.3006012024,"6651":0.3026052104,"6652":0.3046092184,"6653":0.3066132265,"6654":0.3086172345,"6655":0.3106212425,"6656":0.3126252505,"6657":0.3146292585,"6658":0.3166332665,"6659":0.3186372745,"6660":0.3206412826,"6661":0.3226452906,"6662":0.3246492986,"6663":0.3266533066,"6664":0.3286573146,"6665":0.3306613226,"6666":0.3326653307,"6667":0.3346693387,"6668":0.3366733467,"6669":0.3386773547,"6670":0.3406813627,"6671":0.3426853707,"6672":0.3446893788,"6673":0.3466933868,"6674":0.3486973948,"6675":0.3507014028,"6676":0.3527054108,"6677":0.3547094188,"6678":0.3567134269,"6679":0.3587174349,"6680":0.3607214429,"6681":0.3627254509,"6682":0.3647294589,"6683":0.3667334669,"6684":0.3687374749,"6685":0.370741483,"6686":0.372745491,"6687":0.374749499,"6688":0.376753507,"6689":0.378757515,"6690":0.380761523,"6691":0.3827655311,"6692":0.3847695391,"6693":0.3867735471,"6694":0.3887775551,"6695":0.3907815631,"6696":0.3927855711,"6697":0.3947895792,"6698":0.3967935872,"6699":0.3987975952,"6700":0.4008016032,"6701":0.4028056112,"6702":0.4048096192,"6703":0.4068136273,"6704":0.4088176353,"6705":0.4108216433,"6706":0.4128256513,"6707":0.4148296593,"6708":0.4168336673,"6709":0.4188376754,"6710":0.4208416834,"6711":0.4228456914,"6712":0.4248496994,"6713":0.4268537074,"6714":0.4288577154,"6715":0.4308617234,"6716":0.4328657315,"6717":0.4348697395,"6718":0.4368737475,"6719":0.4388777555,"6720":0.4408817635,"6721":0.4428857715,"6722":0.4448897796,"6723":0.4468937876,"6724":0.4488977956,"6725":0.4509018036,"6726":0.4529058116,"6727":0.4549098196,"6728":0.4569138277,"6729":0.4589178357,"6730":0.4609218437,"6731":0.4629258517,"6732":0.4649298597,"6733":0.4669338677,"6734":0.4689378758,"6735":0.4709418838,"6736":0.4729458918,"6737":0.4749498998,"6738":0.4769539078,"6739":0.4789579158,"6740":0.4809619238,"6741":0.4829659319,"6742":0.4849699399,"6743":0.4869739479,"6744":0.4889779559,"6745":0.4909819639,"6746":0.4929859719,"6747":0.49498998,"6748":0.496993988,"6749":0.498997996,"6750":0.501002004,"6751":0.503006012,"6752":0.50501002,"6753":0.5070140281,"6754":0.5090180361,"6755":0.5110220441,"6756":0.5130260521,"6757":0.5150300601,"6758":0.5170340681,"6759":0.5190380762,"6760":0.5210420842,"6761":0.5230460922,"6762":0.5250501002,"6763":0.5270541082,"6764":0.5290581162,"6765":0.5310621242,"6766":0.5330661323,"6767":0.5350701403,"6768":0.5370741483,"6769":0.5390781563,"6770":0.5410821643,"6771":0.5430861723,"6772":0.5450901804,"6773":0.5470941884,"6774":0.5490981964,"6775":0.5511022044,"6776":0.5531062124,"6777":0.5551102204,"6778":0.5571142285,"6779":0.5591182365,"6780":0.5611222445,"6781":0.5631262525,"6782":0.5651302605,"6783":0.5671342685,"6784":0.5691382766,"6785":0.5711422846,"6786":0.5731462926,"6787":0.5751503006,"6788":0.5771543086,"6789":0.5791583166,"6790":0.5811623246,"6791":0.5831663327,"6792":0.5851703407,"6793":0.5871743487,"6794":0.5891783567,"6795":0.5911823647,"6796":0.5931863727,"6797":0.5951903808,"6798":0.5971943888,"6799":0.5991983968,"6800":0.6012024048,"6801":0.6032064128,"6802":0.6052104208,"6803":0.6072144289,"6804":0.6092184369,"6805":0.6112224449,"6806":0.6132264529,"6807":0.6152304609,"6808":0.6172344689,"6809":0.619238477,"6810":0.621242485,"6811":0.623246493,"6812":0.625250501,"6813":0.627254509,"6814":0.629258517,"6815":0.6312625251,"6816":0.6332665331,"6817":0.6352705411,"6818":0.6372745491,"6819":0.6392785571,"6820":0.6412825651,"6821":0.6432865731,"6822":0.6452905812,"6823":0.6472945892,"6824":0.6492985972,"6825":0.6513026052,"6826":0.6533066132,"6827":0.6553106212,"6828":0.6573146293,"6829":0.6593186373,"6830":0.6613226453,"6831":0.6633266533,"6832":0.6653306613,"6833":0.6673346693,"6834":0.6693386774,"6835":0.6713426854,"6836":0.6733466934,"6837":0.6753507014,"6838":0.6773547094,"6839":0.6793587174,"6840":0.6813627255,"6841":0.6833667335,"6842":0.6853707415,"6843":0.6873747495,"6844":0.6893787575,"6845":0.6913827655,"6846":0.6933867735,"6847":0.6953907816,"6848":0.6973947896,"6849":0.6993987976,"6850":0.7014028056,"6851":0.7034068136,"6852":0.7054108216,"6853":0.7074148297,"6854":0.7094188377,"6855":0.7114228457,"6856":0.7134268537,"6857":0.7154308617,"6858":0.7174348697,"6859":0.7194388778,"6860":0.7214428858,"6861":0.7234468938,"6862":0.7254509018,"6863":0.7274549098,"6864":0.7294589178,"6865":0.7314629259,"6866":0.7334669339,"6867":0.7354709419,"6868":0.7374749499,"6869":0.7394789579,"6870":0.7414829659,"6871":0.7434869739,"6872":0.745490982,"6873":0.74749499,"6874":0.749498998,"6875":0.751503006,"6876":0.753507014,"6877":0.755511022,"6878":0.7575150301,"6879":0.7595190381,"6880":0.7615230461,"6881":0.7635270541,"6882":0.7655310621,"6883":0.7675350701,"6884":0.7695390782,"6885":0.7715430862,"6886":0.7735470942,"6887":0.7755511022,"6888":0.7775551102,"6889":0.7795591182,"6890":0.7815631263,"6891":0.7835671343,"6892":0.7855711423,"6893":0.7875751503,"6894":0.7895791583,"6895":0.7915831663,"6896":0.7935871743,"6897":0.7955911824,"6898":0.7975951904,"6899":0.7995991984,"6900":0.8016032064,"6901":0.8036072144,"6902":0.8056112224,"6903":0.8076152305,"6904":0.8096192385,"6905":0.8116232465,"6906":0.8136272545,"6907":0.8156312625,"6908":0.8176352705,"6909":0.8196392786,"6910":0.8216432866,"6911":0.8236472946,"6912":0.8256513026,"6913":0.8276553106,"6914":0.8296593186,"6915":0.8316633267,"6916":0.8336673347,"6917":0.8356713427,"6918":0.8376753507,"6919":0.8396793587,"6920":0.8416833667,"6921":0.8436873747,"6922":0.8456913828,"6923":0.8476953908,"6924":0.8496993988,"6925":0.8517034068,"6926":0.8537074148,"6927":0.8557114228,"6928":0.8577154309,"6929":0.8597194389,"6930":0.8617234469,"6931":0.8637274549,"6932":0.8657314629,"6933":0.8677354709,"6934":0.869739479,"6935":0.871743487,"6936":0.873747495,"6937":0.875751503,"6938":0.877755511,"6939":0.879759519,"6940":0.8817635271,"6941":0.8837675351,"6942":0.8857715431,"6943":0.8877755511,"6944":0.8897795591,"6945":0.8917835671,"6946":0.8937875752,"6947":0.8957915832,"6948":0.8977955912,"6949":0.8997995992,"6950":0.9018036072,"6951":0.9038076152,"6952":0.9058116232,"6953":0.9078156313,"6954":0.9098196393,"6955":0.9118236473,"6956":0.9138276553,"6957":0.9158316633,"6958":0.9178356713,"6959":0.9198396794,"6960":0.9218436874,"6961":0.9238476954,"6962":0.9258517034,"6963":0.9278557114,"6964":0.9298597194,"6965":0.9318637275,"6966":0.9338677355,"6967":0.9358717435,"6968":0.9378757515,"6969":0.9398797595,"6970":0.9418837675,"6971":0.9438877756,"6972":0.9458917836,"6973":0.9478957916,"6974":0.9498997996,"6975":0.9519038076,"6976":0.9539078156,"6977":0.9559118236,"6978":0.9579158317,"6979":0.9599198397,"6980":0.9619238477,"6981":0.9639278557,"6982":0.9659318637,"6983":0.9679358717,"6984":0.9699398798,"6985":0.9719438878,"6986":0.9739478958,"6987":0.9759519038,"6988":0.9779559118,"6989":0.9799599198,"6990":0.9819639279,"6991":0.9839679359,"6992":0.9859719439,"6993":0.9879759519,"6994":0.9899799599,"6995":0.9919839679,"6996":0.993987976,"6997":0.995991984,"6998":0.997995992,"6999":1.0,"7000":0.0,"7001":0.002004008,"7002":0.004008016,"7003":0.006012024,"7004":0.0080160321,"7005":0.0100200401,"7006":0.0120240481,"7007":0.0140280561,"7008":0.0160320641,"7009":0.0180360721,"7010":0.0200400802,"7011":0.0220440882,"7012":0.0240480962,"7013":0.0260521042,"7014":0.0280561122,"7015":0.0300601202,"7016":0.0320641283,"7017":0.0340681363,"7018":0.0360721443,"7019":0.0380761523,"7020":0.0400801603,"7021":0.0420841683,"7022":0.0440881764,"7023":0.0460921844,"7024":0.0480961924,"7025":0.0501002004,"7026":0.0521042084,"7027":0.0541082164,"7028":0.0561122244,"7029":0.0581162325,"7030":0.0601202405,"7031":0.0621242485,"7032":0.0641282565,"7033":0.0661322645,"7034":0.0681362725,"7035":0.0701402806,"7036":0.0721442886,"7037":0.0741482966,"7038":0.0761523046,"7039":0.0781563126,"7040":0.0801603206,"7041":0.0821643287,"7042":0.0841683367,"7043":0.0861723447,"7044":0.0881763527,"7045":0.0901803607,"7046":0.0921843687,"7047":0.0941883768,"7048":0.0961923848,"7049":0.0981963928,"7050":0.1002004008,"7051":0.1022044088,"7052":0.1042084168,"7053":0.1062124248,"7054":0.1082164329,"7055":0.1102204409,"7056":0.1122244489,"7057":0.1142284569,"7058":0.1162324649,"7059":0.1182364729,"7060":0.120240481,"7061":0.122244489,"7062":0.124248497,"7063":0.126252505,"7064":0.128256513,"7065":0.130260521,"7066":0.1322645291,"7067":0.1342685371,"7068":0.1362725451,"7069":0.1382765531,"7070":0.1402805611,"7071":0.1422845691,"7072":0.1442885772,"7073":0.1462925852,"7074":0.1482965932,"7075":0.1503006012,"7076":0.1523046092,"7077":0.1543086172,"7078":0.1563126253,"7079":0.1583166333,"7080":0.1603206413,"7081":0.1623246493,"7082":0.1643286573,"7083":0.1663326653,"7084":0.1683366733,"7085":0.1703406814,"7086":0.1723446894,"7087":0.1743486974,"7088":0.1763527054,"7089":0.1783567134,"7090":0.1803607214,"7091":0.1823647295,"7092":0.1843687375,"7093":0.1863727455,"7094":0.1883767535,"7095":0.1903807615,"7096":0.1923847695,"7097":0.1943887776,"7098":0.1963927856,"7099":0.1983967936,"7100":0.2004008016,"7101":0.2024048096,"7102":0.2044088176,"7103":0.2064128257,"7104":0.2084168337,"7105":0.2104208417,"7106":0.2124248497,"7107":0.2144288577,"7108":0.2164328657,"7109":0.2184368737,"7110":0.2204408818,"7111":0.2224448898,"7112":0.2244488978,"7113":0.2264529058,"7114":0.2284569138,"7115":0.2304609218,"7116":0.2324649299,"7117":0.2344689379,"7118":0.2364729459,"7119":0.2384769539,"7120":0.2404809619,"7121":0.2424849699,"7122":0.244488978,"7123":0.246492986,"7124":0.248496994,"7125":0.250501002,"7126":0.25250501,"7127":0.254509018,"7128":0.2565130261,"7129":0.2585170341,"7130":0.2605210421,"7131":0.2625250501,"7132":0.2645290581,"7133":0.2665330661,"7134":0.2685370741,"7135":0.2705410822,"7136":0.2725450902,"7137":0.2745490982,"7138":0.2765531062,"7139":0.2785571142,"7140":0.2805611222,"7141":0.2825651303,"7142":0.2845691383,"7143":0.2865731463,"7144":0.2885771543,"7145":0.2905811623,"7146":0.2925851703,"7147":0.2945891784,"7148":0.2965931864,"7149":0.2985971944,"7150":0.3006012024,"7151":0.3026052104,"7152":0.3046092184,"7153":0.3066132265,"7154":0.3086172345,"7155":0.3106212425,"7156":0.3126252505,"7157":0.3146292585,"7158":0.3166332665,"7159":0.3186372745,"7160":0.3206412826,"7161":0.3226452906,"7162":0.3246492986,"7163":0.3266533066,"7164":0.3286573146,"7165":0.3306613226,"7166":0.3326653307,"7167":0.3346693387,"7168":0.3366733467,"7169":0.3386773547,"7170":0.3406813627,"7171":0.3426853707,"7172":0.3446893788,"7173":0.3466933868,"7174":0.3486973948,"7175":0.3507014028,"7176":0.3527054108,"7177":0.3547094188,"7178":0.3567134269,"7179":0.3587174349,"7180":0.3607214429,"7181":0.3627254509,"7182":0.3647294589,"7183":0.3667334669,"7184":0.3687374749,"7185":0.370741483,"7186":0.372745491,"7187":0.374749499,"7188":0.376753507,"7189":0.378757515,"7190":0.380761523,"7191":0.3827655311,"7192":0.3847695391,"7193":0.3867735471,"7194":0.3887775551,"7195":0.3907815631,"7196":0.3927855711,"7197":0.3947895792,"7198":0.3967935872,"7199":0.3987975952,"7200":0.4008016032,"7201":0.4028056112,"7202":0.4048096192,"7203":0.4068136273,"7204":0.4088176353,"7205":0.4108216433,"7206":0.4128256513,"7207":0.4148296593,"7208":0.4168336673,"7209":0.4188376754,"7210":0.4208416834,"7211":0.4228456914,"7212":0.4248496994,"7213":0.4268537074,"7214":0.4288577154,"7215":0.4308617234,"7216":0.4328657315,"7217":0.4348697395,"7218":0.4368737475,"7219":0.4388777555,"7220":0.4408817635,"7221":0.4428857715,"7222":0.4448897796,"7223":0.4468937876,"7224":0.4488977956,"7225":0.4509018036,"7226":0.4529058116,"7227":0.4549098196,"7228":0.4569138277,"7229":0.4589178357,"7230":0.4609218437,"7231":0.4629258517,"7232":0.4649298597,"7233":0.4669338677,"7234":0.4689378758,"7235":0.4709418838,"7236":0.4729458918,"7237":0.4749498998,"7238":0.4769539078,"7239":0.4789579158,"7240":0.4809619238,"7241":0.4829659319,"7242":0.4849699399,"7243":0.4869739479,"7244":0.4889779559,"7245":0.4909819639,"7246":0.4929859719,"7247":0.49498998,"7248":0.496993988,"7249":0.498997996,"7250":0.501002004,"7251":0.503006012,"7252":0.50501002,"7253":0.5070140281,"7254":0.5090180361,"7255":0.5110220441,"7256":0.5130260521,"7257":0.5150300601,"7258":0.5170340681,"7259":0.5190380762,"7260":0.5210420842,"7261":0.5230460922,"7262":0.5250501002,"7263":0.5270541082,"7264":0.5290581162,"7265":0.5310621242,"7266":0.5330661323,"7267":0.5350701403,"7268":0.5370741483,"7269":0.5390781563,"7270":0.5410821643,"7271":0.5430861723,"7272":0.5450901804,"7273":0.5470941884,"7274":0.5490981964,"7275":0.5511022044,"7276":0.5531062124,"7277":0.5551102204,"7278":0.5571142285,"7279":0.5591182365,"7280":0.5611222445,"7281":0.5631262525,"7282":0.5651302605,"7283":0.5671342685,"7284":0.5691382766,"7285":0.5711422846,"7286":0.5731462926,"7287":0.5751503006,"7288":0.5771543086,"7289":0.5791583166,"7290":0.5811623246,"7291":0.5831663327,"7292":0.5851703407,"7293":0.5871743487,"7294":0.5891783567,"7295":0.5911823647,"7296":0.5931863727,"7297":0.5951903808,"7298":0.5971943888,"7299":0.5991983968,"7300":0.6012024048,"7301":0.6032064128,"7302":0.6052104208,"7303":0.6072144289,"7304":0.6092184369,"7305":0.6112224449,"7306":0.6132264529,"7307":0.6152304609,"7308":0.6172344689,"7309":0.619238477,"7310":0.621242485,"7311":0.623246493,"7312":0.625250501,"7313":0.627254509,"7314":0.629258517,"7315":0.6312625251,"7316":0.6332665331,"7317":0.6352705411,"7318":0.6372745491,"7319":0.6392785571,"7320":0.6412825651,"7321":0.6432865731,"7322":0.6452905812,"7323":0.6472945892,"7324":0.6492985972,"7325":0.6513026052,"7326":0.6533066132,"7327":0.6553106212,"7328":0.6573146293,"7329":0.6593186373,"7330":0.6613226453,"7331":0.6633266533,"7332":0.6653306613,"7333":0.6673346693,"7334":0.6693386774,"7335":0.6713426854,"7336":0.6733466934,"7337":0.6753507014,"7338":0.6773547094,"7339":0.6793587174,"7340":0.6813627255,"7341":0.6833667335,"7342":0.6853707415,"7343":0.6873747495,"7344":0.6893787575,"7345":0.6913827655,"7346":0.6933867735,"7347":0.6953907816,"7348":0.6973947896,"7349":0.6993987976,"7350":0.7014028056,"7351":0.7034068136,"7352":0.7054108216,"7353":0.7074148297,"7354":0.7094188377,"7355":0.7114228457,"7356":0.7134268537,"7357":0.7154308617,"7358":0.7174348697,"7359":0.7194388778,"7360":0.7214428858,"7361":0.7234468938,"7362":0.7254509018,"7363":0.7274549098,"7364":0.7294589178,"7365":0.7314629259,"7366":0.7334669339,"7367":0.7354709419,"7368":0.7374749499,"7369":0.7394789579,"7370":0.7414829659,"7371":0.7434869739,"7372":0.745490982,"7373":0.74749499,"7374":0.749498998,"7375":0.751503006,"7376":0.753507014,"7377":0.755511022,"7378":0.7575150301,"7379":0.7595190381,"7380":0.7615230461,"7381":0.7635270541,"7382":0.7655310621,"7383":0.7675350701,"7384":0.7695390782,"7385":0.7715430862,"7386":0.7735470942,"7387":0.7755511022,"7388":0.7775551102,"7389":0.7795591182,"7390":0.7815631263,"7391":0.7835671343,"7392":0.7855711423,"7393":0.7875751503,"7394":0.7895791583,"7395":0.7915831663,"7396":0.7935871743,"7397":0.7955911824,"7398":0.7975951904,"7399":0.7995991984,"7400":0.8016032064,"7401":0.8036072144,"7402":0.8056112224,"7403":0.8076152305,"7404":0.8096192385,"7405":0.8116232465,"7406":0.8136272545,"7407":0.8156312625,"7408":0.8176352705,"7409":0.8196392786,"7410":0.8216432866,"7411":0.8236472946,"7412":0.8256513026,"7413":0.8276553106,"7414":0.8296593186,"7415":0.8316633267,"7416":0.8336673347,"7417":0.8356713427,"7418":0.8376753507,"7419":0.8396793587,"7420":0.8416833667,"7421":0.8436873747,"7422":0.8456913828,"7423":0.8476953908,"7424":0.8496993988,"7425":0.8517034068,"7426":0.8537074148,"7427":0.8557114228,"7428":0.8577154309,"7429":0.8597194389,"7430":0.8617234469,"7431":0.8637274549,"7432":0.8657314629,"7433":0.8677354709,"7434":0.869739479,"7435":0.871743487,"7436":0.873747495,"7437":0.875751503,"7438":0.877755511,"7439":0.879759519,"7440":0.8817635271,"7441":0.8837675351,"7442":0.8857715431,"7443":0.8877755511,"7444":0.8897795591,"7445":0.8917835671,"7446":0.8937875752,"7447":0.8957915832,"7448":0.8977955912,"7449":0.8997995992,"7450":0.9018036072,"7451":0.9038076152,"7452":0.9058116232,"7453":0.9078156313,"7454":0.9098196393,"7455":0.9118236473,"7456":0.9138276553,"7457":0.9158316633,"7458":0.9178356713,"7459":0.9198396794,"7460":0.9218436874,"7461":0.9238476954,"7462":0.9258517034,"7463":0.9278557114,"7464":0.9298597194,"7465":0.9318637275,"7466":0.9338677355,"7467":0.9358717435,"7468":0.9378757515,"7469":0.9398797595,"7470":0.9418837675,"7471":0.9438877756,"7472":0.9458917836,"7473":0.9478957916,"7474":0.9498997996,"7475":0.9519038076,"7476":0.9539078156,"7477":0.9559118236,"7478":0.9579158317,"7479":0.9599198397,"7480":0.9619238477,"7481":0.9639278557,"7482":0.9659318637,"7483":0.9679358717,"7484":0.9699398798,"7485":0.9719438878,"7486":0.9739478958,"7487":0.9759519038,"7488":0.9779559118,"7489":0.9799599198,"7490":0.9819639279,"7491":0.9839679359,"7492":0.9859719439,"7493":0.9879759519,"7494":0.9899799599,"7495":0.9919839679,"7496":0.993987976,"7497":0.995991984,"7498":0.997995992,"7499":1.0,"7500":0.0,"7501":0.002004008,"7502":0.004008016,"7503":0.006012024,"7504":0.0080160321,"7505":0.0100200401,"7506":0.0120240481,"7507":0.0140280561,"7508":0.0160320641,"7509":0.0180360721,"7510":0.0200400802,"7511":0.0220440882,"7512":0.0240480962,"7513":0.0260521042,"7514":0.0280561122,"7515":0.0300601202,"7516":0.0320641283,"7517":0.0340681363,"7518":0.0360721443,"7519":0.0380761523,"7520":0.0400801603,"7521":0.0420841683,"7522":0.0440881764,"7523":0.0460921844,"7524":0.0480961924,"7525":0.0501002004,"7526":0.0521042084,"7527":0.0541082164,"7528":0.0561122244,"7529":0.0581162325,"7530":0.0601202405,"7531":0.0621242485,"7532":0.0641282565,"7533":0.0661322645,"7534":0.0681362725,"7535":0.0701402806,"7536":0.0721442886,"7537":0.0741482966,"7538":0.0761523046,"7539":0.0781563126,"7540":0.0801603206,"7541":0.0821643287,"7542":0.0841683367,"7543":0.0861723447,"7544":0.0881763527,"7545":0.0901803607,"7546":0.0921843687,"7547":0.0941883768,"7548":0.0961923848,"7549":0.0981963928,"7550":0.1002004008,"7551":0.1022044088,"7552":0.1042084168,"7553":0.1062124248,"7554":0.1082164329,"7555":0.1102204409,"7556":0.1122244489,"7557":0.1142284569,"7558":0.1162324649,"7559":0.1182364729,"7560":0.120240481,"7561":0.122244489,"7562":0.124248497,"7563":0.126252505,"7564":0.128256513,"7565":0.130260521,"7566":0.1322645291,"7567":0.1342685371,"7568":0.1362725451,"7569":0.1382765531,"7570":0.1402805611,"7571":0.1422845691,"7572":0.1442885772,"7573":0.1462925852,"7574":0.1482965932,"7575":0.1503006012,"7576":0.1523046092,"7577":0.1543086172,"7578":0.1563126253,"7579":0.1583166333,"7580":0.1603206413,"7581":0.1623246493,"7582":0.1643286573,"7583":0.1663326653,"7584":0.1683366733,"7585":0.1703406814,"7586":0.1723446894,"7587":0.1743486974,"7588":0.1763527054,"7589":0.1783567134,"7590":0.1803607214,"7591":0.1823647295,"7592":0.1843687375,"7593":0.1863727455,"7594":0.1883767535,"7595":0.1903807615,"7596":0.1923847695,"7597":0.1943887776,"7598":0.1963927856,"7599":0.1983967936,"7600":0.2004008016,"7601":0.2024048096,"7602":0.2044088176,"7603":0.2064128257,"7604":0.2084168337,"7605":0.2104208417,"7606":0.2124248497,"7607":0.2144288577,"7608":0.2164328657,"7609":0.2184368737,"7610":0.2204408818,"7611":0.2224448898,"7612":0.2244488978,"7613":0.2264529058,"7614":0.2284569138,"7615":0.2304609218,"7616":0.2324649299,"7617":0.2344689379,"7618":0.2364729459,"7619":0.2384769539,"7620":0.2404809619,"7621":0.2424849699,"7622":0.244488978,"7623":0.246492986,"7624":0.248496994,"7625":0.250501002,"7626":0.25250501,"7627":0.254509018,"7628":0.2565130261,"7629":0.2585170341,"7630":0.2605210421,"7631":0.2625250501,"7632":0.2645290581,"7633":0.2665330661,"7634":0.2685370741,"7635":0.2705410822,"7636":0.2725450902,"7637":0.2745490982,"7638":0.2765531062,"7639":0.2785571142,"7640":0.2805611222,"7641":0.2825651303,"7642":0.2845691383,"7643":0.2865731463,"7644":0.2885771543,"7645":0.2905811623,"7646":0.2925851703,"7647":0.2945891784,"7648":0.2965931864,"7649":0.2985971944,"7650":0.3006012024,"7651":0.3026052104,"7652":0.3046092184,"7653":0.3066132265,"7654":0.3086172345,"7655":0.3106212425,"7656":0.3126252505,"7657":0.3146292585,"7658":0.3166332665,"7659":0.3186372745,"7660":0.3206412826,"7661":0.3226452906,"7662":0.3246492986,"7663":0.3266533066,"7664":0.3286573146,"7665":0.3306613226,"7666":0.3326653307,"7667":0.3346693387,"7668":0.3366733467,"7669":0.3386773547,"7670":0.3406813627,"7671":0.3426853707,"7672":0.3446893788,"7673":0.3466933868,"7674":0.3486973948,"7675":0.3507014028,"7676":0.3527054108,"7677":0.3547094188,"7678":0.3567134269,"7679":0.3587174349,"7680":0.3607214429,"7681":0.3627254509,"7682":0.3647294589,"7683":0.3667334669,"7684":0.3687374749,"7685":0.370741483,"7686":0.372745491,"7687":0.374749499,"7688":0.376753507,"7689":0.378757515,"7690":0.380761523,"7691":0.3827655311,"7692":0.3847695391,"7693":0.3867735471,"7694":0.3887775551,"7695":0.3907815631,"7696":0.3927855711,"7697":0.3947895792,"7698":0.3967935872,"7699":0.3987975952,"7700":0.4008016032,"7701":0.4028056112,"7702":0.4048096192,"7703":0.4068136273,"7704":0.4088176353,"7705":0.4108216433,"7706":0.4128256513,"7707":0.4148296593,"7708":0.4168336673,"7709":0.4188376754,"7710":0.4208416834,"7711":0.4228456914,"7712":0.4248496994,"7713":0.4268537074,"7714":0.4288577154,"7715":0.4308617234,"7716":0.4328657315,"7717":0.4348697395,"7718":0.4368737475,"7719":0.4388777555,"7720":0.4408817635,"7721":0.4428857715,"7722":0.4448897796,"7723":0.4468937876,"7724":0.4488977956,"7725":0.4509018036,"7726":0.4529058116,"7727":0.4549098196,"7728":0.4569138277,"7729":0.4589178357,"7730":0.4609218437,"7731":0.4629258517,"7732":0.4649298597,"7733":0.4669338677,"7734":0.4689378758,"7735":0.4709418838,"7736":0.4729458918,"7737":0.4749498998,"7738":0.4769539078,"7739":0.4789579158,"7740":0.4809619238,"7741":0.4829659319,"7742":0.4849699399,"7743":0.4869739479,"7744":0.4889779559,"7745":0.4909819639,"7746":0.4929859719,"7747":0.49498998,"7748":0.496993988,"7749":0.498997996,"7750":0.501002004,"7751":0.503006012,"7752":0.50501002,"7753":0.5070140281,"7754":0.5090180361,"7755":0.5110220441,"7756":0.5130260521,"7757":0.5150300601,"7758":0.5170340681,"7759":0.5190380762,"7760":0.5210420842,"7761":0.5230460922,"7762":0.5250501002,"7763":0.5270541082,"7764":0.5290581162,"7765":0.5310621242,"7766":0.5330661323,"7767":0.5350701403,"7768":0.5370741483,"7769":0.5390781563,"7770":0.5410821643,"7771":0.5430861723,"7772":0.5450901804,"7773":0.5470941884,"7774":0.5490981964,"7775":0.5511022044,"7776":0.5531062124,"7777":0.5551102204,"7778":0.5571142285,"7779":0.5591182365,"7780":0.5611222445,"7781":0.5631262525,"7782":0.5651302605,"7783":0.5671342685,"7784":0.5691382766,"7785":0.5711422846,"7786":0.5731462926,"7787":0.5751503006,"7788":0.5771543086,"7789":0.5791583166,"7790":0.5811623246,"7791":0.5831663327,"7792":0.5851703407,"7793":0.5871743487,"7794":0.5891783567,"7795":0.5911823647,"7796":0.5931863727,"7797":0.5951903808,"7798":0.5971943888,"7799":0.5991983968,"7800":0.6012024048,"7801":0.6032064128,"7802":0.6052104208,"7803":0.6072144289,"7804":0.6092184369,"7805":0.6112224449,"7806":0.6132264529,"7807":0.6152304609,"7808":0.6172344689,"7809":0.619238477,"7810":0.621242485,"7811":0.623246493,"7812":0.625250501,"7813":0.627254509,"7814":0.629258517,"7815":0.6312625251,"7816":0.6332665331,"7817":0.6352705411,"7818":0.6372745491,"7819":0.6392785571,"7820":0.6412825651,"7821":0.6432865731,"7822":0.6452905812,"7823":0.6472945892,"7824":0.6492985972,"7825":0.6513026052,"7826":0.6533066132,"7827":0.6553106212,"7828":0.6573146293,"7829":0.6593186373,"7830":0.6613226453,"7831":0.6633266533,"7832":0.6653306613,"7833":0.6673346693,"7834":0.6693386774,"7835":0.6713426854,"7836":0.6733466934,"7837":0.6753507014,"7838":0.6773547094,"7839":0.6793587174,"7840":0.6813627255,"7841":0.6833667335,"7842":0.6853707415,"7843":0.6873747495,"7844":0.6893787575,"7845":0.6913827655,"7846":0.6933867735,"7847":0.6953907816,"7848":0.6973947896,"7849":0.6993987976,"7850":0.7014028056,"7851":0.7034068136,"7852":0.7054108216,"7853":0.7074148297,"7854":0.7094188377,"7855":0.7114228457,"7856":0.7134268537,"7857":0.7154308617,"7858":0.7174348697,"7859":0.7194388778,"7860":0.7214428858,"7861":0.7234468938,"7862":0.7254509018,"7863":0.7274549098,"7864":0.7294589178,"7865":0.7314629259,"7866":0.7334669339,"7867":0.7354709419,"7868":0.7374749499,"7869":0.7394789579,"7870":0.7414829659,"7871":0.7434869739,"7872":0.745490982,"7873":0.74749499,"7874":0.749498998,"7875":0.751503006,"7876":0.753507014,"7877":0.755511022,"7878":0.7575150301,"7879":0.7595190381,"7880":0.7615230461,"7881":0.7635270541,"7882":0.7655310621,"7883":0.7675350701,"7884":0.7695390782,"7885":0.7715430862,"7886":0.7735470942,"7887":0.7755511022,"7888":0.7775551102,"7889":0.7795591182,"7890":0.7815631263,"7891":0.7835671343,"7892":0.7855711423,"7893":0.7875751503,"7894":0.7895791583,"7895":0.7915831663,"7896":0.7935871743,"7897":0.7955911824,"7898":0.7975951904,"7899":0.7995991984,"7900":0.8016032064,"7901":0.8036072144,"7902":0.8056112224,"7903":0.8076152305,"7904":0.8096192385,"7905":0.8116232465,"7906":0.8136272545,"7907":0.8156312625,"7908":0.8176352705,"7909":0.8196392786,"7910":0.8216432866,"7911":0.8236472946,"7912":0.8256513026,"7913":0.8276553106,"7914":0.8296593186,"7915":0.8316633267,"7916":0.8336673347,"7917":0.8356713427,"7918":0.8376753507,"7919":0.8396793587,"7920":0.8416833667,"7921":0.8436873747,"7922":0.8456913828,"7923":0.8476953908,"7924":0.8496993988,"7925":0.8517034068,"7926":0.8537074148,"7927":0.8557114228,"7928":0.8577154309,"7929":0.8597194389,"7930":0.8617234469,"7931":0.8637274549,"7932":0.8657314629,"7933":0.8677354709,"7934":0.869739479,"7935":0.871743487,"7936":0.873747495,"7937":0.875751503,"7938":0.877755511,"7939":0.879759519,"7940":0.8817635271,"7941":0.8837675351,"7942":0.8857715431,"7943":0.8877755511,"7944":0.8897795591,"7945":0.8917835671,"7946":0.8937875752,"7947":0.8957915832,"7948":0.8977955912,"7949":0.8997995992,"7950":0.9018036072,"7951":0.9038076152,"7952":0.9058116232,"7953":0.9078156313,"7954":0.9098196393,"7955":0.9118236473,"7956":0.9138276553,"7957":0.9158316633,"7958":0.9178356713,"7959":0.9198396794,"7960":0.9218436874,"7961":0.9238476954,"7962":0.9258517034,"7963":0.9278557114,"7964":0.9298597194,"7965":0.9318637275,"7966":0.9338677355,"7967":0.9358717435,"7968":0.9378757515,"7969":0.9398797595,"7970":0.9418837675,"7971":0.9438877756,"7972":0.9458917836,"7973":0.9478957916,"7974":0.9498997996,"7975":0.9519038076,"7976":0.9539078156,"7977":0.9559118236,"7978":0.9579158317,"7979":0.9599198397,"7980":0.9619238477,"7981":0.9639278557,"7982":0.9659318637,"7983":0.9679358717,"7984":0.9699398798,"7985":0.9719438878,"7986":0.9739478958,"7987":0.9759519038,"7988":0.9779559118,"7989":0.9799599198,"7990":0.9819639279,"7991":0.9839679359,"7992":0.9859719439,"7993":0.9879759519,"7994":0.9899799599,"7995":0.9919839679,"7996":0.993987976,"7997":0.995991984,"7998":0.997995992,"7999":1.0,"8000":0.0,"8001":0.002004008,"8002":0.004008016,"8003":0.006012024,"8004":0.0080160321,"8005":0.0100200401,"8006":0.0120240481,"8007":0.0140280561,"8008":0.0160320641,"8009":0.0180360721,"8010":0.0200400802,"8011":0.0220440882,"8012":0.0240480962,"8013":0.0260521042,"8014":0.0280561122,"8015":0.0300601202,"8016":0.0320641283,"8017":0.0340681363,"8018":0.0360721443,"8019":0.0380761523,"8020":0.0400801603,"8021":0.0420841683,"8022":0.0440881764,"8023":0.0460921844,"8024":0.0480961924,"8025":0.0501002004,"8026":0.0521042084,"8027":0.0541082164,"8028":0.0561122244,"8029":0.0581162325,"8030":0.0601202405,"8031":0.0621242485,"8032":0.0641282565,"8033":0.0661322645,"8034":0.0681362725,"8035":0.0701402806,"8036":0.0721442886,"8037":0.0741482966,"8038":0.0761523046,"8039":0.0781563126,"8040":0.0801603206,"8041":0.0821643287,"8042":0.0841683367,"8043":0.0861723447,"8044":0.0881763527,"8045":0.0901803607,"8046":0.0921843687,"8047":0.0941883768,"8048":0.0961923848,"8049":0.0981963928,"8050":0.1002004008,"8051":0.1022044088,"8052":0.1042084168,"8053":0.1062124248,"8054":0.1082164329,"8055":0.1102204409,"8056":0.1122244489,"8057":0.1142284569,"8058":0.1162324649,"8059":0.1182364729,"8060":0.120240481,"8061":0.122244489,"8062":0.124248497,"8063":0.126252505,"8064":0.128256513,"8065":0.130260521,"8066":0.1322645291,"8067":0.1342685371,"8068":0.1362725451,"8069":0.1382765531,"8070":0.1402805611,"8071":0.1422845691,"8072":0.1442885772,"8073":0.1462925852,"8074":0.1482965932,"8075":0.1503006012,"8076":0.1523046092,"8077":0.1543086172,"8078":0.1563126253,"8079":0.1583166333,"8080":0.1603206413,"8081":0.1623246493,"8082":0.1643286573,"8083":0.1663326653,"8084":0.1683366733,"8085":0.1703406814,"8086":0.1723446894,"8087":0.1743486974,"8088":0.1763527054,"8089":0.1783567134,"8090":0.1803607214,"8091":0.1823647295,"8092":0.1843687375,"8093":0.1863727455,"8094":0.1883767535,"8095":0.1903807615,"8096":0.1923847695,"8097":0.1943887776,"8098":0.1963927856,"8099":0.1983967936,"8100":0.2004008016,"8101":0.2024048096,"8102":0.2044088176,"8103":0.2064128257,"8104":0.2084168337,"8105":0.2104208417,"8106":0.2124248497,"8107":0.2144288577,"8108":0.2164328657,"8109":0.2184368737,"8110":0.2204408818,"8111":0.2224448898,"8112":0.2244488978,"8113":0.2264529058,"8114":0.2284569138,"8115":0.2304609218,"8116":0.2324649299,"8117":0.2344689379,"8118":0.2364729459,"8119":0.2384769539,"8120":0.2404809619,"8121":0.2424849699,"8122":0.244488978,"8123":0.246492986,"8124":0.248496994,"8125":0.250501002,"8126":0.25250501,"8127":0.254509018,"8128":0.2565130261,"8129":0.2585170341,"8130":0.2605210421,"8131":0.2625250501,"8132":0.2645290581,"8133":0.2665330661,"8134":0.2685370741,"8135":0.2705410822,"8136":0.2725450902,"8137":0.2745490982,"8138":0.2765531062,"8139":0.2785571142,"8140":0.2805611222,"8141":0.2825651303,"8142":0.2845691383,"8143":0.2865731463,"8144":0.2885771543,"8145":0.2905811623,"8146":0.2925851703,"8147":0.2945891784,"8148":0.2965931864,"8149":0.2985971944,"8150":0.3006012024,"8151":0.3026052104,"8152":0.3046092184,"8153":0.3066132265,"8154":0.3086172345,"8155":0.3106212425,"8156":0.3126252505,"8157":0.3146292585,"8158":0.3166332665,"8159":0.3186372745,"8160":0.3206412826,"8161":0.3226452906,"8162":0.3246492986,"8163":0.3266533066,"8164":0.3286573146,"8165":0.3306613226,"8166":0.3326653307,"8167":0.3346693387,"8168":0.3366733467,"8169":0.3386773547,"8170":0.3406813627,"8171":0.3426853707,"8172":0.3446893788,"8173":0.3466933868,"8174":0.3486973948,"8175":0.3507014028,"8176":0.3527054108,"8177":0.3547094188,"8178":0.3567134269,"8179":0.3587174349,"8180":0.3607214429,"8181":0.3627254509,"8182":0.3647294589,"8183":0.3667334669,"8184":0.3687374749,"8185":0.370741483,"8186":0.372745491,"8187":0.374749499,"8188":0.376753507,"8189":0.378757515,"8190":0.380761523,"8191":0.3827655311,"8192":0.3847695391,"8193":0.3867735471,"8194":0.3887775551,"8195":0.3907815631,"8196":0.3927855711,"8197":0.3947895792,"8198":0.3967935872,"8199":0.3987975952,"8200":0.4008016032,"8201":0.4028056112,"8202":0.4048096192,"8203":0.4068136273,"8204":0.4088176353,"8205":0.4108216433,"8206":0.4128256513,"8207":0.4148296593,"8208":0.4168336673,"8209":0.4188376754,"8210":0.4208416834,"8211":0.4228456914,"8212":0.4248496994,"8213":0.4268537074,"8214":0.4288577154,"8215":0.4308617234,"8216":0.4328657315,"8217":0.4348697395,"8218":0.4368737475,"8219":0.4388777555,"8220":0.4408817635,"8221":0.4428857715,"8222":0.4448897796,"8223":0.4468937876,"8224":0.4488977956,"8225":0.4509018036,"8226":0.4529058116,"8227":0.4549098196,"8228":0.4569138277,"8229":0.4589178357,"8230":0.4609218437,"8231":0.4629258517,"8232":0.4649298597,"8233":0.4669338677,"8234":0.4689378758,"8235":0.4709418838,"8236":0.4729458918,"8237":0.4749498998,"8238":0.4769539078,"8239":0.4789579158,"8240":0.4809619238,"8241":0.4829659319,"8242":0.4849699399,"8243":0.4869739479,"8244":0.4889779559,"8245":0.4909819639,"8246":0.4929859719,"8247":0.49498998,"8248":0.496993988,"8249":0.498997996,"8250":0.501002004,"8251":0.503006012,"8252":0.50501002,"8253":0.5070140281,"8254":0.5090180361,"8255":0.5110220441,"8256":0.5130260521,"8257":0.5150300601,"8258":0.5170340681,"8259":0.5190380762,"8260":0.5210420842,"8261":0.5230460922,"8262":0.5250501002,"8263":0.5270541082,"8264":0.5290581162,"8265":0.5310621242,"8266":0.5330661323,"8267":0.5350701403,"8268":0.5370741483,"8269":0.5390781563,"8270":0.5410821643,"8271":0.5430861723,"8272":0.5450901804,"8273":0.5470941884,"8274":0.5490981964,"8275":0.5511022044,"8276":0.5531062124,"8277":0.5551102204,"8278":0.5571142285,"8279":0.5591182365,"8280":0.5611222445,"8281":0.5631262525,"8282":0.5651302605,"8283":0.5671342685,"8284":0.5691382766,"8285":0.5711422846,"8286":0.5731462926,"8287":0.5751503006,"8288":0.5771543086,"8289":0.5791583166,"8290":0.5811623246,"8291":0.5831663327,"8292":0.5851703407,"8293":0.5871743487,"8294":0.5891783567,"8295":0.5911823647,"8296":0.5931863727,"8297":0.5951903808,"8298":0.5971943888,"8299":0.5991983968,"8300":0.6012024048,"8301":0.6032064128,"8302":0.6052104208,"8303":0.6072144289,"8304":0.6092184369,"8305":0.6112224449,"8306":0.6132264529,"8307":0.6152304609,"8308":0.6172344689,"8309":0.619238477,"8310":0.621242485,"8311":0.623246493,"8312":0.625250501,"8313":0.627254509,"8314":0.629258517,"8315":0.6312625251,"8316":0.6332665331,"8317":0.6352705411,"8318":0.6372745491,"8319":0.6392785571,"8320":0.6412825651,"8321":0.6432865731,"8322":0.6452905812,"8323":0.6472945892,"8324":0.6492985972,"8325":0.6513026052,"8326":0.6533066132,"8327":0.6553106212,"8328":0.6573146293,"8329":0.6593186373,"8330":0.6613226453,"8331":0.6633266533,"8332":0.6653306613,"8333":0.6673346693,"8334":0.6693386774,"8335":0.6713426854,"8336":0.6733466934,"8337":0.6753507014,"8338":0.6773547094,"8339":0.6793587174,"8340":0.6813627255,"8341":0.6833667335,"8342":0.6853707415,"8343":0.6873747495,"8344":0.6893787575,"8345":0.6913827655,"8346":0.6933867735,"8347":0.6953907816,"8348":0.6973947896,"8349":0.6993987976,"8350":0.7014028056,"8351":0.7034068136,"8352":0.7054108216,"8353":0.7074148297,"8354":0.7094188377,"8355":0.7114228457,"8356":0.7134268537,"8357":0.7154308617,"8358":0.7174348697,"8359":0.7194388778,"8360":0.7214428858,"8361":0.7234468938,"8362":0.7254509018,"8363":0.7274549098,"8364":0.7294589178,"8365":0.7314629259,"8366":0.7334669339,"8367":0.7354709419,"8368":0.7374749499,"8369":0.7394789579,"8370":0.7414829659,"8371":0.7434869739,"8372":0.745490982,"8373":0.74749499,"8374":0.749498998,"8375":0.751503006,"8376":0.753507014,"8377":0.755511022,"8378":0.7575150301,"8379":0.7595190381,"8380":0.7615230461,"8381":0.7635270541,"8382":0.7655310621,"8383":0.7675350701,"8384":0.7695390782,"8385":0.7715430862,"8386":0.7735470942,"8387":0.7755511022,"8388":0.7775551102,"8389":0.7795591182,"8390":0.7815631263,"8391":0.7835671343,"8392":0.7855711423,"8393":0.7875751503,"8394":0.7895791583,"8395":0.7915831663,"8396":0.7935871743,"8397":0.7955911824,"8398":0.7975951904,"8399":0.7995991984,"8400":0.8016032064,"8401":0.8036072144,"8402":0.8056112224,"8403":0.8076152305,"8404":0.8096192385,"8405":0.8116232465,"8406":0.8136272545,"8407":0.8156312625,"8408":0.8176352705,"8409":0.8196392786,"8410":0.8216432866,"8411":0.8236472946,"8412":0.8256513026,"8413":0.8276553106,"8414":0.8296593186,"8415":0.8316633267,"8416":0.8336673347,"8417":0.8356713427,"8418":0.8376753507,"8419":0.8396793587,"8420":0.8416833667,"8421":0.8436873747,"8422":0.8456913828,"8423":0.8476953908,"8424":0.8496993988,"8425":0.8517034068,"8426":0.8537074148,"8427":0.8557114228,"8428":0.8577154309,"8429":0.8597194389,"8430":0.8617234469,"8431":0.8637274549,"8432":0.8657314629,"8433":0.8677354709,"8434":0.869739479,"8435":0.871743487,"8436":0.873747495,"8437":0.875751503,"8438":0.877755511,"8439":0.879759519,"8440":0.8817635271,"8441":0.8837675351,"8442":0.8857715431,"8443":0.8877755511,"8444":0.8897795591,"8445":0.8917835671,"8446":0.8937875752,"8447":0.8957915832,"8448":0.8977955912,"8449":0.8997995992,"8450":0.9018036072,"8451":0.9038076152,"8452":0.9058116232,"8453":0.9078156313,"8454":0.9098196393,"8455":0.9118236473,"8456":0.9138276553,"8457":0.9158316633,"8458":0.9178356713,"8459":0.9198396794,"8460":0.9218436874,"8461":0.9238476954,"8462":0.9258517034,"8463":0.9278557114,"8464":0.9298597194,"8465":0.9318637275,"8466":0.9338677355,"8467":0.9358717435,"8468":0.9378757515,"8469":0.9398797595,"8470":0.9418837675,"8471":0.9438877756,"8472":0.9458917836,"8473":0.9478957916,"8474":0.9498997996,"8475":0.9519038076,"8476":0.9539078156,"8477":0.9559118236,"8478":0.9579158317,"8479":0.9599198397,"8480":0.9619238477,"8481":0.9639278557,"8482":0.9659318637,"8483":0.9679358717,"8484":0.9699398798,"8485":0.9719438878,"8486":0.9739478958,"8487":0.9759519038,"8488":0.9779559118,"8489":0.9799599198,"8490":0.9819639279,"8491":0.9839679359,"8492":0.9859719439,"8493":0.9879759519,"8494":0.9899799599,"8495":0.9919839679,"8496":0.993987976,"8497":0.995991984,"8498":0.997995992,"8499":1.0},"y":{"0":0.0,"1":0.0015644445,"2":-0.0006419336,"3":0.00031041,"4":-0.0000925751,"5":0.0001030978,"6":0.0000030779,"7":0.0000534253,"8":0.0000280591,"9":0.0000405356,"10":0.0000341151,"11":0.0000371413,"12":0.000035445,"13":0.0000361114,"14":0.0000355976,"15":0.0000356751,"16":0.0000354582,"17":0.0000353897,"18":0.0000352481,"19":0.0000351443,"20":0.0000350227,"21":0.0000349111,"22":0.0000347957,"23":0.0000346833,"24":0.0000345705,"25":0.000034459,"26":0.0000343479,"27":0.0000342377,"28":0.0000341281,"29":0.0000340192,"30":0.0000339111,"31":0.0000338036,"32":0.0000336968,"33":0.0000335907,"34":0.0000334852,"35":0.0000333804,"36":0.0000332763,"37":0.0000331728,"38":0.0000330699,"39":0.0000329677,"40":0.0000328661,"41":0.0000327651,"42":0.0000326648,"43":0.0000325651,"44":0.0000324659,"45":0.0000323674,"46":0.0000322695,"47":0.0000321722,"48":0.0000320754,"49":0.0000319792,"50":0.0000318836,"51":0.0000317886,"52":0.0000316942,"53":0.0000316003,"54":0.0000315069,"55":0.0000314141,"56":0.0000313219,"57":0.0000312302,"58":0.000031139,"59":0.0000310483,"60":0.0000309582,"61":0.0000308686,"62":0.0000307795,"63":0.000030691,"64":0.0000306029,"65":0.0000305154,"66":0.0000304283,"67":0.0000303417,"68":0.0000302557,"69":0.0000301701,"70":0.000030085,"71":0.0000300004,"72":0.0000299162,"73":0.0000298325,"74":0.0000297493,"75":0.0000296666,"76":0.0000295843,"77":0.0000295024,"78":0.000029421,"79":0.0000293401,"80":0.0000292596,"81":0.0000291795,"82":0.0000290999,"83":0.0000290207,"84":0.000028942,"85":0.0000288636,"86":0.0000189392,"87":0.0000046778,"88":-0.0000016606,"89":-0.000003658,"90":-0.0000058678,"91":-0.0000083181,"92":-0.0000106969,"93":-0.0000129596,"94":-0.0000151007,"95":-0.0000171204,"96":-0.0000190227,"97":-0.000020811,"98":-0.0000224917,"99":-0.0000240743,"100":-0.0000255636,"101":-0.0000269635,"102":-0.0000282789,"103":-0.0000295145,"104":-0.0000306751,"105":-0.000031765,"106":-0.0000327884,"107":-0.0000337492,"108":-0.000034651,"109":-0.0000354974,"110":-0.0000362915,"111":-0.0000370362,"112":-0.0000377344,"113":-0.0000383886,"114":-0.0000390014,"115":-0.0000395749,"116":-0.0000401113,"117":-0.0000406126,"118":-0.0000410806,"119":-0.0000415171,"120":-0.0000419236,"121":-0.0000423018,"122":-0.0000426529,"123":-0.0000429784,"124":-0.0000432794,"125":-0.0000435571,"126":-0.0000438126,"127":-0.0000440469,"128":-0.0000442609,"129":-0.0000444555,"130":-0.0000446315,"131":-0.0000447896,"132":-0.0000449306,"133":-0.0000450551,"134":-0.0000451638,"135":-0.0000452571,"136":-0.0000453358,"137":-0.0000454001,"138":-0.0000454507,"139":-0.0000454879,"140":-0.0000455121,"141":-0.0000455237,"142":-0.0000455231,"143":-0.0000455105,"144":-0.0000454863,"145":-0.0000454508,"146":-0.0000454042,"147":-0.0000453468,"148":-0.0000452787,"149":-0.0000452003,"150":-0.0000451118,"151":-0.0000450133,"152":-0.000044905,"153":-0.0000447871,"154":-0.0000446598,"155":-0.0000445233,"156":-0.0000443777,"157":-0.0000442233,"158":-0.0000440601,"159":-0.0000438883,"160":-0.0000437082,"161":-0.0000435199,"162":-0.0000433236,"163":-0.0000431194,"164":-0.0000429076,"165":-0.0000426883,"166":-0.0000424618,"167":-0.0000422283,"168":-0.0000419879,"169":-0.000041741,"170":-0.0000414877,"171":-0.0000412284,"172":-0.0000409632,"173":-0.0000406924,"174":-0.0000404164,"175":-0.0000401353,"176":-0.0000398496,"177":-0.0000395595,"178":-0.0000392654,"179":-0.0000389675,"180":-0.0000386661,"181":-0.0000383618,"182":-0.0000380547,"183":-0.0000377453,"184":-0.0000374339,"185":-0.0000371208,"186":-0.0000368065,"187":-0.0000364912,"188":-0.0000361754,"189":-0.0000358595,"190":-0.0000355437,"191":-0.0000352284,"192":-0.000034914,"193":-0.0000346008,"194":-0.0000342891,"195":-0.0000339793,"196":-0.0000336717,"197":-0.0000333666,"198":-0.0000330642,"199":-0.0000327648,"200":-0.0000324688,"201":-0.0000321762,"202":-0.0000318875,"203":-0.0000316027,"204":-0.0000313221,"205":-0.0000310458,"206":-0.0000307741,"207":-0.0000305069,"208":-0.0000302446,"209":-0.0000299872,"210":-0.0000297347,"211":-0.0000294873,"212":-0.0000292451,"213":-0.000029008,"214":-0.0000287761,"215":-0.0000285495,"216":-0.000028328,"217":-0.0000281119,"218":-0.0000279009,"219":-0.0000276951,"220":-0.0000274944,"221":-0.0000272989,"222":-0.0000271084,"223":-0.0000269229,"224":-0.0000267422,"225":-0.0000265664,"226":-0.0000263954,"227":-0.000026229,"228":-0.0000260671,"229":-0.0000259097,"230":-0.0000257567,"231":-0.000025608,"232":-0.0000254634,"233":-0.0000253229,"234":-0.0000251863,"235":-0.0000250535,"236":-0.0000249245,"237":-0.0000247991,"238":-0.0000246772,"239":-0.0000245587,"240":-0.0000244435,"241":-0.0000243314,"242":-0.0000241286,"243":-0.0000232459,"244":-0.0000212526,"245":-0.0000184515,"246":-0.0000153584,"247":-0.00001221,"248":-0.0000091438,"249":-0.0000062449,"250":-0.0000036401,"251":-0.0000010677,"252":0.0000101107,"253":0.0001005506,"254":0.0004425623,"255":0.0010327815,"256":0.0015720224,"257":0.0018613094,"258":0.0019952214,"259":0.0020944739,"260":0.0021583882,"261":0.0021765111,"262":0.0021769866,"263":0.0021739686,"264":0.0021615261,"265":0.0021407156,"266":0.0021174048,"267":0.0020919831,"268":0.0020634478,"269":0.0020329723,"270":0.0020013881,"271":0.0019685407,"272":0.0019345815,"273":0.0018998757,"274":0.0018645399,"275":0.0018286458,"276":0.0017923458,"277":0.0017557581,"278":0.0017189634,"279":0.0016820529,"280":0.0016451149,"281":0.0016082229,"282":0.0015714464,"283":0.001534852,"284":0.0014984996,"285":0.001462444,"286":0.001426736,"287":0.0013914219,"288":0.0013565436,"289":0.001322139,"290":0.0012882423,"291":0.0012548838,"292":0.0012220903,"293":0.0011898852,"294":0.001158289,"295":0.0011273189,"296":0.0010969893,"297":0.001067312,"298":0.0010382962,"299":0.0010099489,"300":0.0009822747,"301":0.0009552763,"302":0.0009289545,"303":0.0009033084,"304":0.0008783353,"305":0.0008540313,"306":0.000830391,"307":0.0008074079,"308":0.0007850742,"309":0.0007633813,"310":0.0007423198,"311":0.0007218793,"312":0.0007020489,"313":0.0006828171,"314":0.0006641719,"315":0.0006461008,"316":0.000628591,"317":0.0006116294,"318":0.0005952029,"319":0.0005792979,"320":0.000563901,"321":0.0005489986,"322":0.000534577,"323":0.0005206228,"324":0.0005071225,"325":0.0004940627,"326":0.0004814303,"327":0.000469212,"328":0.0004573952,"329":0.000445967,"330":0.0004349152,"331":0.0004242273,"332":0.0004138916,"333":0.0004038964,"334":0.0003942301,"335":0.0003848817,"336":0.0003758404,"337":0.0003670956,"338":0.0003586369,"339":0.0003504545,"340":0.0003425387,"341":0.00033488,"342":0.0003274693,"343":0.0003202979,"344":0.0003133572,"345":0.0003066389,"346":0.000300135,"347":0.0002938379,"348":0.0002877401,"349":0.0002818343,"350":0.0002761138,"351":0.0002705716,"352":0.0002652015,"353":0.0002599971,"354":0.0002549525,"355":0.0002500619,"356":0.0002453197,"357":0.0002407206,"358":0.0002362595,"359":0.0002319313,"360":0.0002277312,"361":0.0002236548,"362":0.0002196975,"363":0.0002158551,"364":0.0002121235,"365":0.0002084988,"366":0.0002049772,"367":0.0002015551,"368":0.0001982289,"369":0.0001949954,"370":0.0001918512,"371":0.0001887932,"372":0.0001858186,"373":0.0001829243,"374":0.0001801077,"375":0.000177366,"376":0.0001746968,"377":0.0001720975,"378":0.0001695659,"379":0.0001670995,"380":0.0001646964,"381":0.0001623542,"382":0.0001600711,"383":0.0001578451,"384":0.0001556743,"385":0.0001535569,"386":0.0001514912,"387":0.0001494754,"388":0.0001475081,"389":0.0001455877,"390":0.0001437126,"391":0.0001418815,"392":0.0001400929,"393":0.0001383456,"394":0.0001366383,"395":0.0001349696,"396":0.0001333385,"397":0.0001317438,"398":0.0001301845,"399":0.0001286593,"400":0.0001271673,"401":0.0001257076,"402":0.0001242791,"403":0.000122881,"404":0.0001215124,"405":0.0001201724,"406":0.0001188601,"407":0.0001175748,"408":0.0001163158,"409":0.0001150823,"410":0.0001138735,"411":0.0001126887,"412":0.0001115274,"413":0.0001103889,"414":0.0001092724,"415":0.0001081775,"416":0.0001071036,"417":0.00010605,"418":0.0001050163,"419":0.0001040019,"420":0.0001030063,"421":0.0001020291,"422":0.0001010696,"423":0.0001001276,"424":0.0000992024,"425":0.0000982938,"426":0.0000974013,"427":0.0000965244,"428":0.0000956628,"429":0.0000948161,"430":0.0000939839,"431":0.0000931659,"432":0.0000923618,"433":0.0000915711,"434":0.0000907936,"435":0.000090029,"436":0.0000892769,"437":0.0000885371,"438":0.0000878092,"439":0.000087093,"440":0.0000863883,"441":0.0000856947,"442":0.000085012,"443":0.0000843399,"444":0.0000836783,"445":0.0000830268,"446":0.0000823853,"447":0.0000817535,"448":0.0000811312,"449":0.0000805182,"450":0.0000799144,"451":0.0000793194,"452":0.0000787332,"453":0.0000781554,"454":0.0000775861,"455":0.0000770249,"456":0.0000764717,"457":0.0000759263,"458":0.0000753886,"459":0.0000748584,"460":0.0000743356,"461":0.00007382,"462":0.0000733115,"463":0.0000728099,"464":0.000072315,"465":0.0000718269,"466":0.0000713452,"467":0.0000708699,"468":0.0000704009,"469":0.0000699381,"470":0.0000694813,"471":0.0000690303,"472":0.0000685852,"473":0.0000681458,"474":0.0000677119,"475":0.0000672836,"476":0.0000668606,"477":0.0000664429,"478":0.0000660303,"479":0.0000656229,"480":0.0000652204,"481":0.0000648228,"482":0.0000644301,"483":0.0000640421,"484":0.0000636587,"485":0.0000632799,"486":0.0000629055,"487":0.0000625356,"488":0.00006217,"489":0.0000618086,"490":0.0000614514,"491":0.0000610983,"492":0.0000607493,"493":0.0000604042,"494":0.0000600631,"495":0.0000597257,"496":0.0000593922,"497":0.0000590623,"498":0.0000587361,"499":0.0000584135,"500":0.0,"501":3225.0,"502":1612.5,"503":2418.75,"504":2015.625,"505":2217.1875,"506":2116.40625,"507":2166.796875,"508":2141.6015625,"509":2154.19921875,"510":2147.900390625,"511":2151.0498046875,"512":2149.4750976562,"513":2150.2624511719,"514":2149.8687744141,"515":2150.065612793,"516":2149.9671936035,"517":2150.0164031982,"518":2149.9917984009,"519":2150.0041007996,"520":2149.9979496002,"521":2150.0010251999,"522":2149.9994874001,"523":2150.0002563,"524":2149.99987185,"525":2150.000064075,"526":2149.9999679625,"527":2150.0000160187,"528":2149.9999919906,"529":2150.0000040047,"530":2149.9999979977,"531":2150.0000010012,"532":2149.9999994994,"533":2150.0000002503,"534":2149.9999998749,"535":2150.0000000626,"536":2149.9999999687,"537":2150.0000000156,"538":2149.9999999922,"539":2150.0000000039,"540":2149.999999998,"541":2150.000000001,"542":2149.9999999995,"543":2150.0000000002,"544":2149.9999999999,"545":2150.0000000001,"546":2150.0,"547":2150.0,"548":2150.0,"549":2150.0,"550":2150.0,"551":2150.0,"552":2150.0,"553":2150.0,"554":2150.0,"555":2150.0,"556":2150.0,"557":2150.0,"558":2150.0,"559":2150.0,"560":2150.0,"561":2150.0,"562":2150.0,"563":2150.0,"564":2150.0,"565":2150.0,"566":2150.0,"567":2150.0,"568":2150.0,"569":2150.0,"570":2150.0,"571":2150.0,"572":2150.0,"573":2150.0,"574":2150.0,"575":2150.0,"576":2150.0,"577":2150.0,"578":2150.0,"579":2150.0,"580":2150.0,"581":2150.0,"582":2150.0,"583":2150.0,"584":2150.0,"585":2150.0,"586":2150.0,"587":2150.0,"588":2150.0,"589":2150.0,"590":2150.0,"591":2150.0,"592":2150.0,"593":2150.0,"594":2150.0,"595":2150.0,"596":2150.0,"597":2150.0,"598":2150.0,"599":2150.0,"600":2150.0,"601":2150.0,"602":2150.0,"603":2150.0,"604":2150.0,"605":2150.0,"606":2150.0,"607":2150.0,"608":2150.0,"609":2150.0,"610":2150.0,"611":2150.0,"612":2150.0,"613":2150.0,"614":2150.0,"615":2150.0,"616":2150.0,"617":2150.0,"618":2150.0,"619":2150.0,"620":2150.0,"621":2150.0,"622":2150.0,"623":2150.0,"624":2150.0,"625":2150.0,"626":2150.0,"627":2150.0,"628":2150.0,"629":2150.0,"630":2150.0,"631":2150.0,"632":2150.0,"633":2150.0,"634":2150.0,"635":2150.0,"636":2150.0,"637":2150.0,"638":2150.0,"639":2150.0,"640":2150.0,"641":2150.0,"642":2150.0,"643":2150.0,"644":2150.0,"645":2150.0,"646":2150.0,"647":2150.0,"648":2150.0,"649":2150.0,"650":2150.0,"651":2150.0,"652":2150.0,"653":2150.0,"654":2150.0,"655":2150.0,"656":2150.0,"657":2150.0,"658":2150.0,"659":2150.0,"660":2150.0,"661":2150.0,"662":2150.0,"663":2150.0,"664":2150.0,"665":2150.0,"666":2150.0,"667":2150.0,"668":2150.0,"669":2150.0,"670":2150.0,"671":2150.0,"672":2150.0,"673":2150.0,"674":2150.0,"675":2150.0,"676":2150.0,"677":2150.0,"678":2150.0,"679":2150.0,"680":2150.0,"681":2150.0,"682":2150.0,"683":2150.0,"684":2150.0,"685":2150.0,"686":2150.0,"687":2150.0,"688":2150.0,"689":2150.0,"690":2150.0,"691":2150.0,"692":2150.0,"693":2150.0,"694":2150.0,"695":2150.0,"696":2150.0,"697":2150.0,"698":2150.0,"699":2150.0,"700":2150.0,"701":2150.0,"702":2150.0,"703":2150.0,"704":2150.0,"705":2150.0,"706":2150.0,"707":2150.0,"708":2150.0,"709":2150.0,"710":2150.0,"711":2150.0,"712":2150.0,"713":2150.0,"714":2150.0,"715":2150.0,"716":2150.0,"717":2150.0,"718":2150.0,"719":2150.0,"720":2150.0,"721":2150.0,"722":2150.0,"723":2150.0,"724":2150.0,"725":2150.0,"726":2150.0,"727":2150.0,"728":2150.0,"729":2150.0,"730":2150.0,"731":2150.0,"732":2150.0,"733":2150.0,"734":2150.0,"735":2150.0,"736":2150.0,"737":2150.0,"738":2150.0,"739":2150.0,"740":2150.0,"741":2150.0,"742":2150.0,"743":2150.0,"744":2150.0,"745":2150.0,"746":2150.0,"747":2150.0,"748":2150.0,"749":2150.0,"750":2150.0,"751":2150.0,"752":2150.0,"753":2150.0,"754":2150.0,"755":2150.0,"756":2150.0,"757":2150.0,"758":2150.0,"759":2150.0,"760":2150.0,"761":2150.0,"762":2150.0,"763":2150.0,"764":2150.0,"765":2150.0,"766":2150.0,"767":2150.0,"768":2150.0,"769":2150.0,"770":2150.0,"771":2150.0,"772":2150.0,"773":2150.0,"774":2150.0,"775":2150.0,"776":2150.0,"777":2150.0,"778":2150.0,"779":2150.0,"780":2150.0,"781":2150.0,"782":2150.0,"783":2150.0,"784":2150.0,"785":2150.0,"786":2150.0,"787":2150.0,"788":2150.0,"789":2150.0,"790":2150.0,"791":2150.0,"792":2150.0,"793":2150.0,"794":2150.0,"795":2150.0,"796":2150.0,"797":2150.0,"798":2150.0,"799":2150.0,"800":2150.0,"801":2150.0,"802":2150.0,"803":2150.0,"804":2150.0,"805":2150.0,"806":2150.0,"807":2150.0,"808":2150.0,"809":2150.0,"810":2150.0,"811":2150.0,"812":2150.0,"813":2150.0,"814":2150.0,"815":2150.0,"816":2150.0,"817":2150.0,"818":2150.0,"819":2150.0,"820":2150.0,"821":2150.0,"822":2150.0,"823":2150.0,"824":2150.0,"825":2150.0,"826":2150.0,"827":2150.0,"828":2150.0,"829":2150.0,"830":2150.0,"831":2150.0,"832":2150.0,"833":2150.0,"834":2150.0,"835":2150.0,"836":2150.0,"837":2150.0,"838":2150.0,"839":2150.0,"840":2150.0,"841":2150.0,"842":2150.0,"843":2150.0,"844":2150.0,"845":2150.0,"846":2150.0,"847":2150.0,"848":2150.0,"849":2150.0,"850":2150.0,"851":2150.0,"852":2150.0,"853":2150.0,"854":2150.0,"855":2150.0,"856":2150.0,"857":2150.0,"858":2150.0,"859":2150.0,"860":2150.0,"861":2150.0,"862":2150.0,"863":2150.0,"864":2150.0,"865":2150.0,"866":2150.0,"867":2150.0,"868":2150.0,"869":2150.0,"870":2150.0,"871":2150.0,"872":2150.0,"873":2150.0,"874":2150.0,"875":2150.0,"876":2150.0,"877":2150.0,"878":2150.0,"879":2150.0,"880":2150.0,"881":2150.0,"882":2150.0,"883":2150.0,"884":2150.0,"885":2150.0,"886":2150.0,"887":2150.0,"888":2150.0,"889":2150.0,"890":2150.0,"891":2150.0,"892":2150.0,"893":2150.0,"894":2150.0,"895":2150.0,"896":2150.0,"897":2150.0,"898":2150.0,"899":2150.0,"900":2150.0,"901":2150.0,"902":2150.0,"903":2150.0,"904":2150.0,"905":2150.0,"906":2150.0,"907":2150.0,"908":2150.0,"909":2150.0,"910":2150.0,"911":2150.0,"912":2150.0,"913":2150.0,"914":2150.0,"915":2150.0,"916":2150.0,"917":2150.0,"918":2150.0,"919":2150.0,"920":2150.0,"921":2150.0,"922":2150.0,"923":2150.0,"924":2150.0,"925":2150.0,"926":2150.0,"927":2150.0,"928":2150.0,"929":2150.0,"930":2150.0,"931":2150.0,"932":2150.0,"933":2150.0,"934":2150.0,"935":2150.0,"936":2150.0,"937":2150.0,"938":2150.0,"939":2150.0,"940":2150.0,"941":2150.0,"942":2150.0,"943":2150.0,"944":2150.0,"945":2150.0,"946":2150.0,"947":2150.0,"948":2150.0,"949":2150.0,"950":2150.0,"951":2150.0,"952":2150.0,"953":2150.0,"954":2150.0,"955":2150.0,"956":2150.0,"957":2150.0,"958":2150.0,"959":2150.0,"960":2150.0,"961":2150.0,"962":2150.0,"963":2150.0,"964":2150.0,"965":2150.0,"966":2150.0,"967":2150.0,"968":2150.0,"969":2150.0,"970":2150.0,"971":2150.0,"972":2150.0,"973":2150.0,"974":2150.0,"975":2150.0,"976":2150.0,"977":2150.0,"978":2150.0,"979":2150.0,"980":2150.0,"981":2150.0,"982":2150.0,"983":2150.0,"984":2150.0,"985":2150.0,"986":2150.0,"987":2150.0,"988":2150.0,"989":2150.0,"990":2150.0,"991":2150.0,"992":2150.0,"993":2150.0,"994":2150.0,"995":2150.0,"996":2150.0,"997":2150.0,"998":2150.0,"999":2150.0,"1000":0.0,"1001":-0.0187139048,"1002":0.0243226856,"1003":-0.0224553388,"1004":0.0177734933,"1005":-0.0128658091,"1006":0.0087687747,"1007":-0.005732227,"1008":0.0036232517,"1009":-0.0022385368,"1010":0.0013501634,"1011":-0.0008059792,"1012":0.0004694343,"1013":-0.0002751653,"1014":0.000154693,"1015":-0.0000910703,"1016":0.000048257,"1017":-0.0000301426,"1018":0.0000136829,"1019":-0.0000106704,"1020":0.0000027915,"1021":-0.0000046135,"1022":-0.0000005572,"1023":-0.0000027695,"1024":-0.0000015665,"1025":-0.0000022177,"1026":-0.0000018655,"1027":-0.0000020546,"1028":-0.0000019525,"1029":-0.0000020067,"1030":-0.0000019773,"1031":-0.0000019925,"1032":-0.0000019839,"1033":-0.000001988,"1034":-0.0000019853,"1035":-0.0000019862,"1036":-0.0000019852,"1037":-0.0000019853,"1038":-0.0000019848,"1039":-0.0000019846,"1040":-0.0000019842,"1041":-0.0000019839,"1042":-0.0000019836,"1043":-0.0000019833,"1044":-0.000001983,"1045":-0.0000019826,"1046":-0.0000019823,"1047":-0.000001982,"1048":-0.0000019817,"1049":-0.0000019814,"1050":-0.0000019811,"1051":-0.0000019808,"1052":-0.0000019805,"1053":-0.0000019802,"1054":-0.0000019799,"1055":-0.0000019796,"1056":-0.0000019793,"1057":-0.000001979,"1058":-0.0000019787,"1059":-0.0000019784,"1060":-0.0000019781,"1061":-0.0000019778,"1062":-0.0000019775,"1063":-0.0000019772,"1064":-0.000001977,"1065":-0.0000019767,"1066":-0.0000019764,"1067":-0.0000019761,"1068":-0.0000019758,"1069":-0.0000019755,"1070":-0.0000019752,"1071":-0.0000019749,"1072":-0.0000019747,"1073":-0.0000019744,"1074":-0.0000019741,"1075":-0.0000019738,"1076":-0.0000019735,"1077":-0.0000019733,"1078":-0.000001973,"1079":-0.0000019727,"1080":-0.0000019724,"1081":-0.0000019721,"1082":-0.0000019719,"1083":-0.0000019716,"1084":-0.0000019713,"1085":-0.000001971,"1086":-0.0000018867,"1087":-0.0000016999,"1088":-0.0000014581,"1089":-0.0000011951,"1090":-0.0000009313,"1091":-0.0000006777,"1092":-0.0000004439,"1093":-0.000000242,"1094":-0.0000000121,"1095":0.0000010123,"1096":0.0000074544,"1097":0.0000331126,"1098":0.0000858861,"1099":0.0001533054,"1100":0.0002265053,"1101":0.0003008609,"1102":0.000374097,"1103":0.0004450863,"1104":0.0005132386,"1105":0.0005782893,"1106":0.0006401274,"1107":0.0006987482,"1108":0.0007541997,"1109":0.0008065664,"1110":0.0008559509,"1111":0.0009024673,"1112":0.000946234,"1113":0.0009873708,"1114":0.0010259963,"1115":0.001062226,"1116":0.0010961718,"1117":0.0011279413,"1118":0.001157637,"1119":0.0011853566,"1120":0.001211193,"1121":0.0012352339,"1122":0.0012575622,"1123":0.0012782562,"1124":0.0012973894,"1125":0.0013150313,"1126":0.0013312468,"1127":0.0013460971,"1128":0.0013596395,"1129":0.0013719278,"1130":0.0013830122,"1131":0.0013929398,"1132":0.0014017547,"1133":0.001409498,"1134":0.0014162082,"1135":0.0014219213,"1136":0.0014266707,"1137":0.0014304878,"1138":0.0014334018,"1139":0.00143544,"1140":0.001436628,"1141":0.0014369894,"1142":0.0014365467,"1143":0.0014353206,"1144":0.0014333307,"1145":0.0014305953,"1146":0.0014271316,"1147":0.0014229561,"1148":0.0014180841,"1149":0.0014125303,"1150":0.0014063087,"1151":0.0013994329,"1152":0.0013919157,"1153":0.0013837698,"1154":0.0013750076,"1155":0.0013656411,"1156":0.0013556825,"1157":0.0013451437,"1158":0.0013340368,"1159":0.001322374,"1160":0.0013101677,"1161":0.0012974305,"1162":0.0012841755,"1163":0.0012704161,"1164":0.0012561661,"1165":0.0012414399,"1166":0.0012262524,"1167":0.0012106192,"1168":0.0011945563,"1169":0.0011780806,"1170":0.0011612097,"1171":0.0011439616,"1172":0.0011263553,"1173":0.0011084103,"1174":0.0010901471,"1175":0.0010715864,"1176":0.0010527501,"1177":0.0010336603,"1178":0.00101434,"1179":0.0009948125,"1180":0.0009751016,"1181":0.0009552318,"1182":0.0009352278,"1183":0.0009151143,"1184":0.0008949168,"1185":0.0008746604,"1186":0.0008543706,"1187":0.0008340725,"1188":0.0008137915,"1189":0.0007935523,"1190":0.0007733796,"1191":0.0007532976,"1192":0.0007333298,"1193":0.0007134994,"1194":0.0006938288,"1195":0.0006743394,"1196":0.0006550521,"1197":0.0006359866,"1198":0.0006171619,"1199":0.0005985956,"1200":0.0005803046,"1201":0.0005623044,"1202":0.0005446094,"1203":0.0005272329,"1204":0.0005101868,"1205":0.000493482,"1206":0.0004771281,"1207":0.0004611333,"1208":0.000445505,"1209":0.0004302489,"1210":0.00041537,"1211":0.0004008719,"1212":0.0003867572,"1213":0.0003730275,"1214":0.0003596832,"1215":0.0003467241,"1216":0.0003341487,"1217":0.0003219549,"1218":0.0003101397,"1219":0.0002986994,"1220":0.0002876296,"1221":0.0002769253,"1222":0.0002665809,"1223":0.0002565903,"1224":0.000246947,"1225":0.000237644,"1226":0.0002286739,"1227":0.0002200293,"1228":0.0002117021,"1229":0.0002036844,"1230":0.0001959678,"1231":0.0001885441,"1232":0.0001814047,"1233":0.0001745411,"1234":0.0001679449,"1235":0.0001616074,"1236":0.00015552,"1237":0.0001496743,"1238":0.0001440614,"1239":0.0001386724,"1240":0.0001334982,"1241":0.0001285294,"1242":0.0001158087,"1243":0.0000583052,"1244":0.0000008123,"1245":0.0000014237,"1246":-0.0000009589,"1247":-0.0000002139,"1248":-0.000001048,"1249":-0.0000010875,"1250":-0.0000015018,"1251":-0.0000017048,"1252":-0.0000019876,"1253":-0.0000021921,"1254":-0.0000023753,"1255":-0.0000025251,"1256":-0.0000026347,"1257":-0.0000026862,"1258":-0.0000027128,"1259":-0.0000027325,"1260":-0.0000027439,"1261":-0.0000027466,"1262":-0.0000027467,"1263":-0.000002746,"1264":-0.0000027431,"1265":-0.0000027388,"1266":-0.0000027341,"1267":-0.0000027288,"1268":-0.0000027229,"1269":-0.0000027167,"1270":-0.0000027102,"1271":-0.0000027034,"1272":-0.0000026963,"1273":-0.000002689,"1274":-0.0000026816,"1275":-0.0000026741,"1276":-0.0000026664,"1277":-0.0000026586,"1278":-0.0000026507,"1279":-0.0000026427,"1280":-0.0000026347,"1281":-0.0000026267,"1282":-0.0000026186,"1283":-0.0000026105,"1284":-0.0000026024,"1285":-0.0000025942,"1286":-0.0000025862,"1287":-0.0000025781,"1288":-0.00000257,"1289":-0.000002562,"1290":-0.0000025541,"1291":-0.0000025462,"1292":-0.0000025384,"1293":-0.0000025306,"1294":-0.0000025229,"1295":-0.0000025153,"1296":-0.0000025077,"1297":-0.0000025003,"1298":-0.0000024929,"1299":-0.0000024856,"1300":-0.0000024784,"1301":-0.0000024713,"1302":-0.0000024643,"1303":-0.0000024574,"1304":-0.0000024506,"1305":-0.000002444,"1306":-0.0000024374,"1307":-0.0000024309,"1308":-0.0000024245,"1309":-0.0000024182,"1310":-0.000002412,"1311":-0.0000024059,"1312":-0.0000023999,"1313":-0.000002394,"1314":-0.0000023882,"1315":-0.0000023825,"1316":-0.000002377,"1317":-0.0000023715,"1318":-0.0000023661,"1319":-0.0000023608,"1320":-0.0000023556,"1321":-0.0000023505,"1322":-0.0000023454,"1323":-0.0000023405,"1324":-0.0000023357,"1325":-0.0000023309,"1326":-0.0000023263,"1327":-0.0000023217,"1328":-0.0000023172,"1329":-0.0000023128,"1330":-0.0000023084,"1331":-0.0000023042,"1332":-0.0000023,"1333":-0.0000022959,"1334":-0.0000022919,"1335":-0.0000022879,"1336":-0.0000022841,"1337":-0.0000022803,"1338":-0.0000022765,"1339":-0.0000022728,"1340":-0.0000022692,"1341":-0.0000022657,"1342":-0.0000022622,"1343":-0.0000022588,"1344":-0.0000022555,"1345":-0.0000022522,"1346":-0.0000022489,"1347":-0.0000022458,"1348":-0.0000022426,"1349":-0.0000022396,"1350":-0.0000022366,"1351":-0.0000022336,"1352":-0.0000022307,"1353":-0.0000022278,"1354":-0.000002225,"1355":-0.0000022223,"1356":-0.0000022195,"1357":-0.0000022169,"1358":-0.0000022142,"1359":-0.0000022117,"1360":-0.0000022091,"1361":-0.0000022066,"1362":-0.0000022042,"1363":-0.0000022017,"1364":-0.0000021994,"1365":-0.000002197,"1366":-0.0000021947,"1367":-0.0000021925,"1368":-0.0000021902,"1369":-0.000002188,"1370":-0.0000021859,"1371":-0.0000021838,"1372":-0.0000021817,"1373":-0.0000021796,"1374":-0.0000021776,"1375":-0.0000021756,"1376":-0.0000021736,"1377":-0.0000021716,"1378":-0.0000021697,"1379":-0.0000021678,"1380":-0.000002166,"1381":-0.0000021642,"1382":-0.0000021623,"1383":-0.0000021606,"1384":-0.0000021588,"1385":-0.0000021571,"1386":-0.0000021554,"1387":-0.0000021537,"1388":-0.000002152,"1389":-0.0000021504,"1390":-0.0000021488,"1391":-0.0000021472,"1392":-0.0000021456,"1393":-0.0000021441,"1394":-0.0000021425,"1395":-0.000002141,"1396":-0.0000021395,"1397":-0.000002138,"1398":-0.0000021366,"1399":-0.0000021351,"1400":-0.0000021337,"1401":-0.0000021323,"1402":-0.0000021309,"1403":-0.0000021296,"1404":-0.0000021282,"1405":-0.0000021269,"1406":-0.0000021256,"1407":-0.0000021243,"1408":-0.000002123,"1409":-0.0000021217,"1410":-0.0000021204,"1411":-0.0000021192,"1412":-0.0000021179,"1413":-0.0000021167,"1414":-0.0000021155,"1415":-0.0000021143,"1416":-0.0000021132,"1417":-0.000002112,"1418":-0.0000021108,"1419":-0.0000021097,"1420":-0.0000021086,"1421":-0.0000021074,"1422":-0.0000021063,"1423":-0.0000021052,"1424":-0.0000021042,"1425":-0.0000021031,"1426":-0.000002102,"1427":-0.000002101,"1428":-0.0000020999,"1429":-0.0000020989,"1430":-0.0000020979,"1431":-0.0000020969,"1432":-0.0000020959,"1433":-0.0000020949,"1434":-0.0000020939,"1435":-0.0000020929,"1436":-0.000002092,"1437":-0.000002091,"1438":-0.0000020901,"1439":-0.0000020891,"1440":-0.0000020882,"1441":-0.0000020873,"1442":-0.0000020864,"1443":-0.0000020855,"1444":-0.0000020846,"1445":-0.0000020837,"1446":-0.0000020828,"1447":-0.0000020819,"1448":-0.0000020811,"1449":-0.0000020802,"1450":-0.0000020794,"1451":-0.0000020785,"1452":-0.0000020777,"1453":-0.0000020768,"1454":-0.000002076,"1455":-0.0000020752,"1456":-0.0000020744,"1457":-0.0000020736,"1458":-0.0000020728,"1459":-0.000002072,"1460":-0.0000020712,"1461":-0.0000020704,"1462":-0.0000020697,"1463":-0.0000020689,"1464":-0.0000020681,"1465":-0.0000020674,"1466":-0.0000020666,"1467":-0.0000020659,"1468":-0.0000020652,"1469":-0.0000020644,"1470":-0.0000020637,"1471":-0.000002063,"1472":-0.0000020623,"1473":-0.0000020615,"1474":-0.0000020608,"1475":-0.0000020601,"1476":-0.0000020594,"1477":-0.0000020588,"1478":-0.0000020581,"1479":-0.0000020574,"1480":-0.0000020567,"1481":-0.000002056,"1482":-0.0000020554,"1483":-0.0000020547,"1484":-0.000002054,"1485":-0.0000020534,"1486":-0.0000020527,"1487":-0.0000020521,"1488":-0.0000020515,"1489":-0.0000020508,"1490":-0.0000020502,"1491":-0.0000020496,"1492":-0.0000020489,"1493":-0.0000020483,"1494":-0.0000020477,"1495":-0.0000020471,"1496":-0.0000020465,"1497":-0.0000020459,"1498":-0.0000020453,"1499":-0.0000020447,"1500":0.0,"1501":19998.3,"1502":9999.15,"1503":14998.725,"1504":12498.9375,"1505":13748.83125,"1506":13123.884375,"1507":13436.3578125,"1508":13280.12109375,"1509":13358.239453125,"1510":13319.1802734375,"1511":13338.7098632813,"1512":13328.9450683594,"1513":13333.8274658203,"1514":13331.3862670898,"1515":13332.6068664551,"1516":13331.9965667725,"1517":13332.3017166138,"1518":13332.1491416931,"1519":13332.2254291534,"1520":13332.1872854233,"1521":13332.2063572884,"1522":13332.1968213558,"1523":13332.2015893221,"1524":13332.199205339,"1525":13332.2003973305,"1526":13332.1998013347,"1527":13332.2000993326,"1528":13332.1999503337,"1529":13332.2000248332,"1530":13332.1999875834,"1531":13332.2000062083,"1532":13332.1999968959,"1533":13332.2000015521,"1534":13332.199999224,"1535":13332.200000388,"1536":13332.199999806,"1537":13332.200000097,"1538":13332.1999999515,"1539":13332.2000000243,"1540":13332.1999999879,"1541":13332.2000000061,"1542":13332.199999997,"1543":13332.2000000015,"1544":13332.1999999992,"1545":13332.2000000004,"1546":13332.1999999998,"1547":13332.2000000001,"1548":13332.2,"1549":13332.2,"1550":13332.2,"1551":13332.2,"1552":13332.2,"1553":13332.2,"1554":13332.2,"1555":13332.2,"1556":13332.2,"1557":13332.2,"1558":13332.2,"1559":13332.2,"1560":13332.2,"1561":13332.2,"1562":13332.2,"1563":13332.2,"1564":13332.2,"1565":13332.2,"1566":13332.2,"1567":13332.2,"1568":13332.2,"1569":13332.2,"1570":13332.2,"1571":13332.2,"1572":13332.2,"1573":13332.2,"1574":13332.2,"1575":13332.2,"1576":13332.2,"1577":13332.2,"1578":13332.2,"1579":13332.2,"1580":13332.2,"1581":13332.2,"1582":13332.2,"1583":13332.2,"1584":13332.2,"1585":13332.2,"1586":13332.2,"1587":13332.2,"1588":13332.2,"1589":13332.2,"1590":13332.2,"1591":13332.2,"1592":13332.2,"1593":13332.2,"1594":13332.2,"1595":13332.2,"1596":13332.2,"1597":13332.2,"1598":13332.2,"1599":13332.2,"1600":13332.2,"1601":13332.2,"1602":13332.2,"1603":13332.2,"1604":13332.2,"1605":13332.2,"1606":13332.2,"1607":13332.2,"1608":13332.2,"1609":13332.2,"1610":13332.2,"1611":13332.2,"1612":13332.2,"1613":13332.2,"1614":13332.2,"1615":13332.2,"1616":13332.2,"1617":13332.2,"1618":13332.2,"1619":13332.2,"1620":13332.2,"1621":13332.2,"1622":13332.2,"1623":13332.2,"1624":13332.2,"1625":13332.2,"1626":13332.2,"1627":13332.2,"1628":13332.2,"1629":13332.2,"1630":13332.2,"1631":13332.2,"1632":13332.2,"1633":13332.2,"1634":13332.2,"1635":13332.2,"1636":13332.2,"1637":13332.2,"1638":13332.2,"1639":13332.2,"1640":13332.2,"1641":13332.2,"1642":13332.2,"1643":13332.2,"1644":13332.2,"1645":13332.2,"1646":13332.2,"1647":13332.2,"1648":13332.2,"1649":13332.2,"1650":13332.2,"1651":13332.2,"1652":13332.2,"1653":13332.2,"1654":13332.2,"1655":13332.2,"1656":13332.2,"1657":13332.2,"1658":13332.2,"1659":13332.2,"1660":13332.2,"1661":13332.2,"1662":13332.2,"1663":13332.2,"1664":13332.2,"1665":13332.2,"1666":13332.2,"1667":13332.2,"1668":13332.2,"1669":13332.2,"1670":13332.2,"1671":13332.2,"1672":13332.2,"1673":13332.2,"1674":13332.2,"1675":13332.2,"1676":13332.2,"1677":13332.2,"1678":13332.2,"1679":13332.2,"1680":13332.2,"1681":13332.2,"1682":13332.2,"1683":13332.2,"1684":13332.2,"1685":13332.2,"1686":13332.2,"1687":13332.2,"1688":13332.2,"1689":13332.2,"1690":13332.2,"1691":13332.2,"1692":13332.2,"1693":13332.2,"1694":13332.2,"1695":13332.2,"1696":13332.2,"1697":13332.2,"1698":13332.2,"1699":13332.2,"1700":13332.2,"1701":13332.2,"1702":13332.2,"1703":13332.2,"1704":13332.2,"1705":13332.2,"1706":13332.2,"1707":13332.2,"1708":13332.2,"1709":13332.2,"1710":13332.2,"1711":13332.2,"1712":13332.2,"1713":13332.2,"1714":13332.2,"1715":13332.2,"1716":13332.2,"1717":13332.2,"1718":13332.2,"1719":13332.2,"1720":13332.2,"1721":13332.2,"1722":13332.2,"1723":13332.2,"1724":13332.2,"1725":13332.2,"1726":13332.2,"1727":13332.2,"1728":13332.2,"1729":13332.2,"1730":13332.2,"1731":13332.2,"1732":13332.2,"1733":13332.2,"1734":13332.2,"1735":13332.2,"1736":13332.2,"1737":13332.2,"1738":13332.2,"1739":13332.2,"1740":13332.2,"1741":13332.2,"1742":13332.2,"1743":13332.2,"1744":13332.2,"1745":13332.2,"1746":13332.2,"1747":13332.2,"1748":13332.2,"1749":13332.2,"1750":13332.2,"1751":13332.2,"1752":13332.2,"1753":13332.2,"1754":13332.2,"1755":13332.2,"1756":13332.2,"1757":13332.2,"1758":13332.2,"1759":13332.2,"1760":13332.2,"1761":13332.2,"1762":13332.2,"1763":13332.2,"1764":13332.2,"1765":13332.2,"1766":13332.2,"1767":13332.2,"1768":13332.2,"1769":13332.2,"1770":13332.2,"1771":13332.2,"1772":13332.2,"1773":13332.2,"1774":13332.2,"1775":13332.2,"1776":13332.2,"1777":13332.2,"1778":13332.2,"1779":13332.2,"1780":13332.2,"1781":13332.2,"1782":13332.2,"1783":13332.2,"1784":13332.2,"1785":13332.2,"1786":13332.2,"1787":13332.2,"1788":13332.2,"1789":13332.2,"1790":13332.2,"1791":13332.2,"1792":13332.2,"1793":13332.2,"1794":13332.2,"1795":13332.2,"1796":13332.2,"1797":13332.2,"1798":13332.2,"1799":13332.2,"1800":13332.2,"1801":13332.2,"1802":13332.2,"1803":13332.2,"1804":13332.2,"1805":13332.2,"1806":13332.2,"1807":13332.2,"1808":13332.2,"1809":13332.2,"1810":13332.2,"1811":13332.2,"1812":13332.2,"1813":13332.2,"1814":13332.2,"1815":13332.2,"1816":13332.2,"1817":13332.2,"1818":13332.2,"1819":13332.2,"1820":13332.2,"1821":13332.2,"1822":13332.2,"1823":13332.2,"1824":13332.2,"1825":13332.2,"1826":13332.2,"1827":13332.2,"1828":13332.2,"1829":13332.2,"1830":13332.2,"1831":13332.2,"1832":13332.2,"1833":13332.2,"1834":13332.2,"1835":13332.2,"1836":13332.2,"1837":13332.2,"1838":13332.2,"1839":13332.2,"1840":13332.2,"1841":13332.2,"1842":13332.2,"1843":13332.2,"1844":13332.2,"1845":13332.2,"1846":13332.2,"1847":13332.2,"1848":13332.2,"1849":13332.2,"1850":13332.2,"1851":13332.2,"1852":13332.2,"1853":13332.2,"1854":13332.2,"1855":13332.2,"1856":13332.2,"1857":13332.2,"1858":13332.2,"1859":13332.2,"1860":13332.2,"1861":13332.2,"1862":13332.2,"1863":13332.2,"1864":13332.2,"1865":13332.2,"1866":13332.2,"1867":13332.2,"1868":13332.2,"1869":13332.2,"1870":13332.2,"1871":13332.2,"1872":13332.2,"1873":13332.2,"1874":13332.2,"1875":13332.2,"1876":13332.2,"1877":13332.2,"1878":13332.2,"1879":13332.2,"1880":13332.2,"1881":13332.2,"1882":13332.2,"1883":13332.2,"1884":13332.2,"1885":13332.2,"1886":13332.2,"1887":13332.2,"1888":13332.2,"1889":13332.2,"1890":13332.2,"1891":13332.2,"1892":13332.2,"1893":13332.2,"1894":13332.2,"1895":13332.2,"1896":13332.2,"1897":13332.2,"1898":13332.2,"1899":13332.2,"1900":13332.2,"1901":13332.2,"1902":13332.2,"1903":13332.2,"1904":13332.2,"1905":13332.2,"1906":13332.2,"1907":13332.2,"1908":13332.2,"1909":13332.2,"1910":13332.2,"1911":13332.2,"1912":13332.2,"1913":13332.2,"1914":13332.2,"1915":13332.2,"1916":13332.2,"1917":13332.2,"1918":13332.2,"1919":13332.2,"1920":13332.2,"1921":13332.2,"1922":13332.2,"1923":13332.2,"1924":13332.2,"1925":13332.2,"1926":13332.2,"1927":13332.2,"1928":13332.2,"1929":13332.2,"1930":13332.2,"1931":13332.2,"1932":13332.2,"1933":13332.2,"1934":13332.2,"1935":13332.2,"1936":13332.2,"1937":13332.2,"1938":13332.2,"1939":13332.2,"1940":13332.2,"1941":13332.2,"1942":13332.2,"1943":13332.2,"1944":13332.2,"1945":13332.2,"1946":13332.2,"1947":13332.2,"1948":13332.2,"1949":13332.2,"1950":13332.2,"1951":13332.2,"1952":13332.2,"1953":13332.2,"1954":13332.2,"1955":13332.2,"1956":13332.2,"1957":13332.2,"1958":13332.2,"1959":13332.2,"1960":13332.2,"1961":13332.2,"1962":13332.2,"1963":13332.2,"1964":13332.2,"1965":13332.2,"1966":13332.2,"1967":13332.2,"1968":13332.2,"1969":13332.2,"1970":13332.2,"1971":13332.2,"1972":13332.2,"1973":13332.2,"1974":13332.2,"1975":13332.2,"1976":13332.2,"1977":13332.2,"1978":13332.2,"1979":13332.2,"1980":13332.2,"1981":13332.2,"1982":13332.2,"1983":13332.2,"1984":13332.2,"1985":13332.2,"1986":13332.2,"1987":13332.2,"1988":13332.2,"1989":13332.2,"1990":13332.2,"1991":13332.2,"1992":13332.2,"1993":13332.2,"1994":13332.2,"1995":13332.2,"1996":13332.2,"1997":13332.2,"1998":13332.2,"1999":13332.2,"2000":0.0,"2001":0.0000107872,"2002":0.000045345,"2003":0.0000371051,"2004":0.0000363789,"2005":0.0000369858,"2006":0.0000365615,"2007":0.0000365716,"2008":0.000036374,"2009":0.0000362889,"2010":0.0000361465,"2011":0.0000360336,"2012":0.000035908,"2013":0.0000357894,"2014":0.0000356689,"2015":0.0000355503,"2016":0.0000354321,"2017":0.0000353147,"2018":0.0000351982,"2019":0.0000350824,"2020":0.0000349674,"2021":0.0000348531,"2022":0.0000347395,"2023":0.0000346268,"2024":0.0000345147,"2025":0.0000344033,"2026":0.0000342927,"2027":0.0000341828,"2028":0.0000340736,"2029":0.0000339651,"2030":0.0000338573,"2031":0.0000337501,"2032":0.0000336437,"2033":0.0000335379,"2034":0.0000334327,"2035":0.0000333283,"2036":0.0000332245,"2037":0.0000331213,"2038":0.0000330187,"2039":0.0000329168,"2040":0.0000328156,"2041":0.0000327149,"2042":0.0000326149,"2043":0.0000325154,"2044":0.0000324166,"2045":0.0000323184,"2046":0.0000322208,"2047":0.0000321237,"2048":0.0000320273,"2049":0.0000319314,"2050":0.0000318361,"2051":0.0000317413,"2052":0.0000316472,"2053":0.0000315535,"2054":0.0000314605,"2055":0.000031368,"2056":0.000031276,"2057":0.0000311845,"2058":0.0000310936,"2059":0.0000310032,"2060":0.0000309134,"2061":0.000030824,"2062":0.0000307352,"2063":0.0000306469,"2064":0.0000305591,"2065":0.0000304718,"2066":0.000030385,"2067":0.0000302987,"2068":0.0000302128,"2069":0.0000301275,"2070":0.0000300426,"2071":0.0000299582,"2072":0.0000298743,"2073":0.0000297909,"2074":0.0000297079,"2075":0.0000296254,"2076":0.0000295433,"2077":0.0000294617,"2078":0.0000293805,"2079":0.0000292998,"2080":0.0000292195,"2081":0.0000291397,"2082":0.0000290603,"2083":0.0000289813,"2084":0.0000289028,"2085":0.0000288247,"2086":0.0000096878,"2087":-0.0000012615,"2088":-0.0000020075,"2089":-0.0000048812,"2090":-0.0000069992,"2091":-0.0000095871,"2092":-0.0000118293,"2093":-0.0000140722,"2094":-0.0000161316,"2095":-0.0000181017,"2096":-0.0000199415,"2097":-0.000021676,"2098":-0.000023304,"2099":-0.000024841,"2100":-0.0000262834,"2101":-0.0000276406,"2102":-0.0000289146,"2103":-0.0000301118,"2104":-0.0000312359,"2105":-0.0000322917,"2106":-0.0000332829,"2107":-0.0000342134,"2108":-0.0000350868,"2109":-0.0000359063,"2110":-0.000036675,"2111":-0.0000373958,"2112":-0.0000380715,"2113":-0.0000387044,"2114":-0.000039297,"2115":-0.0000398515,"2116":-0.0000403699,"2117":-0.0000408542,"2118":-0.000041306,"2119":-0.0000417272,"2120":-0.0000421192,"2121":-0.0000424836,"2122":-0.0000428216,"2123":-0.0000431345,"2124":-0.0000434237,"2125":-0.00004369,"2126":-0.0000439347,"2127":-0.0000441586,"2128":-0.0000443627,"2129":-0.0000445478,"2130":-0.0000447147,"2131":-0.0000448641,"2132":-0.0000449967,"2133":-0.0000451132,"2134":-0.0000452141,"2135":-0.0000453,"2136":-0.0000453714,"2137":-0.0000454287,"2138":-0.0000454725,"2139":-0.0000455031,"2140":-0.000045521,"2141":-0.0000455264,"2142":-0.0000455197,"2143":-0.0000455013,"2144":-0.0000454714,"2145":-0.0000454303,"2146":-0.0000453782,"2147":-0.0000453154,"2148":-0.0000452422,"2149":-0.0000451587,"2150":-0.0000450651,"2151":-0.0000449616,"2152":-0.0000448485,"2153":-0.0000447259,"2154":-0.000044594,"2155":-0.0000444529,"2156":-0.0000443028,"2157":-0.000044144,"2158":-0.0000439765,"2159":-0.0000438005,"2160":-0.0000436163,"2161":-0.0000434239,"2162":-0.0000432236,"2163":-0.0000430156,"2164":-0.0000428,"2165":-0.0000425771,"2166":-0.000042347,"2167":-0.00004211,"2168":-0.0000418663,"2169":-0.0000416162,"2170":-0.0000413598,"2171":-0.0000410975,"2172":-0.0000408294,"2173":-0.000040556,"2174":-0.0000402774,"2175":-0.0000399939,"2176":-0.0000397059,"2177":-0.0000394137,"2178":-0.0000391176,"2179":-0.0000388179,"2180":-0.000038515,"2181":-0.0000382092,"2182":-0.0000379009,"2183":-0.0000375903,"2184":-0.000037278,"2185":-0.0000369642,"2186":-0.0000366494,"2187":-0.0000363337,"2188":-0.0000360178,"2189":-0.0000357018,"2190":-0.0000353862,"2191":-0.0000350712,"2192":-0.0000347573,"2193":-0.0000344448,"2194":-0.000034134,"2195":-0.0000338252,"2196":-0.0000335188,"2197":-0.0000332149,"2198":-0.000032914,"2199":-0.0000326162,"2200":-0.0000323219,"2201":-0.0000320312,"2202":-0.0000317444,"2203":-0.0000314616,"2204":-0.0000311831,"2205":-0.0000309091,"2206":-0.0000306396,"2207":-0.0000303748,"2208":-0.0000301149,"2209":-0.00002986,"2210":-0.00002961,"2211":-0.0000293652,"2212":-0.0000291255,"2213":-0.000028891,"2214":-0.0000286617,"2215":-0.0000284377,"2216":-0.0000282189,"2217":-0.0000280053,"2218":-0.0000277969,"2219":-0.0000275937,"2220":-0.0000273956,"2221":-0.0000272026,"2222":-0.0000270146,"2223":-0.0000268315,"2224":-0.0000266533,"2225":-0.0000264799,"2226":-0.0000263112,"2227":-0.0000261471,"2228":-0.0000259875,"2229":-0.0000258323,"2230":-0.0000256815,"2231":-0.0000255348,"2232":-0.0000253923,"2233":-0.0000252537,"2234":-0.0000251191,"2235":-0.0000249882,"2236":-0.000024861,"2237":-0.0000247374,"2238":-0.0000246172,"2239":-0.0000245004,"2240":-0.0000243868,"2241":-0.0000242762,"2242":-0.0000239873,"2243":-0.0000225371,"2244":-0.0000199665,"2245":-0.000016921,"2246":-0.0000137923,"2247":-0.0000106343,"2248":-0.0000076532,"2249":-0.0000048434,"2250":-0.0000024347,"2251":0.0000002708,"2252":0.000019411,"2253":0.0001776253,"2254":0.0007000809,"2255":0.001372217,"2256":0.0017831793,"2257":0.0019368632,"2258":0.0020463026,"2259":0.0021424257,"2260":0.0021760385,"2261":0.002175789,"2262":0.0021771323,"2263":0.0021712687,"2264":0.0021519834,"2265":0.0021291341,"2266":0.0021056676,"2267":0.0020784685,"2268":0.0020484413,"2269":0.0020175042,"2270":0.0019853543,"2271":0.0019517986,"2272":0.0019174123,"2273":0.0018824041,"2274":0.0018467484,"2275":0.0018106095,"2276":0.00177415,"2277":0.001737438,"2278":0.0017005599,"2279":0.0016636169,"2280":0.0016266848,"2281":0.0015898328,"2282":0.0015531316,"2283":0.001516644,"2284":0.0014804264,"2285":0.0014445322,"2286":0.0014090099,"2287":0.0013739033,"2288":0.0013392525,"2289":0.0013050934,"2290":0.0012714582,"2291":0.0012383753,"2292":0.0012058701,"2293":0.0011739642,"2294":0.0011426765,"2295":0.0011120228,"2296":0.0010820161,"2297":0.0010526669,"2298":0.0010239833,"2299":0.000995971,"2300":0.0009686336,"2301":0.0009419729,"2302":0.0009159888,"2303":0.0008906793,"2304":0.0008660414,"2305":0.0008420701,"2306":0.0008187595,"2307":0.0007961024,"2308":0.0007740908,"2309":0.0007527154,"2310":0.0007319665,"2311":0.0007118333,"2312":0.0006923045,"2313":0.0006733685,"2314":0.0006550129,"2315":0.0006372251,"2316":0.0006199922,"2317":0.000603301,"2318":0.000587138,"2319":0.00057149,"2320":0.0005563432,"2321":0.0005416841,"2322":0.0005274991,"2323":0.0005137748,"2324":0.0005004976,"2325":0.0004876543,"2326":0.0004752318,"2327":0.0004632171,"2328":0.0004515973,"2329":0.00044036,"2330":0.0004294928,"2331":0.0004189836,"2332":0.0004088207,"2333":0.0003989924,"2334":0.0003894875,"2335":0.000380295,"2336":0.0003714042,"2337":0.0003628047,"2338":0.0003544864,"2339":0.0003464393,"2340":0.0003386541,"2341":0.0003311214,"2342":0.0003238323,"2343":0.0003167781,"2344":0.0003099504,"2345":0.000303341,"2346":0.0002969422,"2347":0.0002907464,"2348":0.0002847462,"2349":0.0002789345,"2350":0.0002733046,"2351":0.0002678499,"2352":0.000262564,"2353":0.0002574408,"2354":0.0002524745,"2355":0.0002476593,"2356":0.0002429898,"2357":0.0002384608,"2358":0.0002340672,"2359":0.0002298041,"2360":0.0002256668,"2361":0.0002216509,"2362":0.000217752,"2363":0.0002139659,"2364":0.0002102886,"2365":0.0002067163,"2366":0.0002032452,"2367":0.0001998719,"2368":0.0001965927,"2369":0.0001934045,"2370":0.0001903042,"2371":0.0001872885,"2372":0.0001843547,"2373":0.0001814998,"2374":0.0001787212,"2375":0.0001760164,"2376":0.0001733826,"2377":0.0001708177,"2378":0.0001683192,"2379":0.0001658849,"2380":0.0001635127,"2381":0.0001612005,"2382":0.0001589464,"2383":0.0001567484,"2384":0.0001546046,"2385":0.0001525134,"2386":0.0001504731,"2387":0.0001484819,"2388":0.0001465384,"2389":0.0001446409,"2390":0.0001427881,"2391":0.0001409786,"2392":0.0001392109,"2393":0.0001374839,"2394":0.0001357961,"2395":0.0001341465,"2396":0.0001325339,"2397":0.0001309571,"2398":0.000129415,"2399":0.0001279067,"2400":0.000126431,"2401":0.0001249871,"2402":0.000123574,"2403":0.0001221908,"2404":0.0001208367,"2405":0.0001195107,"2406":0.0001182121,"2407":0.0001169401,"2408":0.000115694,"2409":0.000114473,"2410":0.0001132764,"2411":0.0001121035,"2412":0.0001109537,"2413":0.0001098263,"2414":0.0001087208,"2415":0.0001076365,"2416":0.0001065729,"2417":0.0001055293,"2418":0.0001045054,"2419":0.0001035005,"2420":0.0001025142,"2421":0.0001015459,"2422":0.0001005953,"2423":0.0000996618,"2424":0.000098745,"2425":0.0000978445,"2426":0.0000969598,"2427":0.0000960907,"2428":0.0000952366,"2429":0.0000943973,"2430":0.0000935723,"2431":0.0000927613,"2432":0.0000919639,"2433":0.0000911799,"2434":0.0000904089,"2435":0.0000896506,"2436":0.0000889047,"2437":0.0000881709,"2438":0.000087449,"2439":0.0000867386,"2440":0.0000860394,"2441":0.0000853513,"2442":0.000084674,"2443":0.0000840072,"2444":0.0000833507,"2445":0.0000827042,"2446":0.0000820676,"2447":0.0000814406,"2448":0.000080823,"2449":0.0000802147,"2450":0.0000796153,"2451":0.0000790247,"2452":0.0000784428,"2453":0.0000778693,"2454":0.000077304,"2455":0.0000767469,"2456":0.0000761976,"2457":0.0000756561,"2458":0.0000751222,"2459":0.0000745957,"2460":0.0000740766,"2461":0.0000735645,"2462":0.0000730595,"2463":0.0000725613,"2464":0.0000720698,"2465":0.0000715849,"2466":0.0000711065,"2467":0.0000706344,"2468":0.0000701685,"2469":0.0000697086,"2470":0.0000692548,"2471":0.0000688068,"2472":0.0000683645,"2473":0.0000679279,"2474":0.0000674968,"2475":0.0000670712,"2476":0.0000666508,"2477":0.0000662357,"2478":0.0000658257,"2479":0.0000654208,"2480":0.0000650208,"2481":0.0000646257,"2482":0.0000642353,"2483":0.0000638496,"2484":0.0000634685,"2485":0.000063092,"2486":0.0000627198,"2487":0.0000623521,"2488":0.0000619886,"2489":0.0000616293,"2490":0.0000612742,"2491":0.0000609232,"2492":0.0000605761,"2493":0.000060233,"2494":0.0000598938,"2495":0.0000595583,"2496":0.0000592266,"2497":0.0000588986,"2498":0.0000585742,"2499":0.0000582534,"2500":0.0,"2501":1660.5555298119,"2502":2254.4336215282,"2503":2108.3399854882,"2504":2108.2000541554,"2505":2114.0896661352,"2506":2113.3283919524,"2507":2113.3715941722,"2508":2113.5424194555,"2509":2113.663579051,"2510":2113.7853183212,"2511":2113.9084551092,"2512":2114.0300940851,"2513":2114.1510531356,"2514":2114.271149988,"2515":2114.3904685595,"2516":2114.508980355,"2517":2114.6267085738,"2518":2114.743655804,"2519":2114.8598312159,"2520":2114.9752423506,"2521":2115.0898965415,"2522":2115.203801489,"2523":2115.3169643706,"2524":2115.4293925673,"2525":2115.5410931784,"2526":2115.6520733191,"2527":2115.7623399532,"2528":2115.8718999865,"2529":2115.9807602197,"2530":2116.0889273748,"2531":2116.1964080841,"2532":2116.3032088975,"2533":2116.4093362807,"2534":2116.5147966186,"2535":2116.619596215,"2536":2116.7237412951,"2537":2116.8272380059,"2538":2116.9300924176,"2539":2117.0323105252,"2540":2117.133898249,"2541":2117.2348614364,"2542":2117.3352058625,"2543":2117.4349372317,"2544":2117.5340611782,"2545":2117.6325832677,"2546":2117.7305089978,"2547":2117.8278437996,"2548":2117.9245930385,"2549":2118.0207620148,"2550":2118.1163559655,"2551":2118.2113800644,"2552":2118.3058394236,"2553":2118.3997390942,"2554":2118.4930840672,"2555":2118.5858792746,"2556":2118.6781295899,"2557":2118.7698398292,"2558":2118.8610147521,"2559":2118.9516590624,"2560":2119.0417774089,"2561":2119.1313743862,"2562":2119.2204545357,"2563":2119.309022346,"2564":2119.397082254,"2565":2119.4846386455,"2566":2119.5716958559,"2567":2119.6582581708,"2568":2119.7443298272,"2569":2119.8299150136,"2570":2119.915017871,"2571":2119.9996424935,"2572":2120.0837929291,"2573":2120.1674731801,"2574":2120.2506872039,"2575":2120.3334389136,"2576":2120.4157321786,"2577":2120.4975708253,"2578":2120.5789586374,"2579":2120.6598993569,"2580":2120.7403966844,"2581":2120.8204542798,"2582":2120.9000757627,"2583":2120.9792647133,"2584":2121.0580246723,"2585":2121.1363591423,"2586":2131.0608083731,"2587":2145.3222114542,"2588":2151.6606186379,"2589":2153.6580112319,"2590":2155.8677884823,"2591":2158.3181397134,"2592":2160.6968941716,"2593":2162.959607534,"2594":2165.1006523519,"2595":2167.1204266166,"2596":2169.0227123276,"2597":2170.8109750219,"2598":2172.4916549398,"2599":2174.0743228188,"2600":2175.5635606354,"2601":2176.9635081966,"2602":2178.2789004446,"2603":2179.5145431184,"2604":2180.6750982266,"2605":2181.764985412,"2606":2182.7883755558,"2607":2183.7491766577,"2608":2184.6510485968,"2609":2185.497411627,"2610":2186.2914619769,"2611":2187.0361849179,"2612":2187.7343688439,"2613":2188.3886181073,"2614":2189.0013653688,"2615":2189.5748830549,"2616":2190.1112940716,"2617":2190.612581759,"2618":2191.0805991397,"2619":2191.5170775091,"2620":2191.9236344103,"2621":2192.3017810448,"2622":2192.6529291605,"2623":2192.9783974588,"2624":2193.2794175608,"2625":2193.5571395667,"2626":2193.8126372426,"2627":2194.0469128637,"2628":2194.260901744,"2629":2194.4554764754,"2630":2194.6314509017,"2631":2194.789583849,"2632":2194.9305826308,"2633":2195.055106349,"2634":2195.1637690045,"2635":2195.2571424359,"2636":2195.3357590984,"2637":2195.400114698,"2638":2195.4506706916,"2639":2195.4878566653,"2640":2195.5120726015,"2641":2195.5236910433,"2642":2195.5230591657,"2643":2195.5105007619,"2644":2195.4863181509,"2645":2195.4507940138,"2646":2195.4041931655,"2647":2195.3467642649,"2648":2195.2787414701,"2649":2195.2003460424,"2650":2195.1117879017,"2651":2195.0132671362,"2652":2194.9049754696,"2653":2194.7870976859,"2654":2194.6598130137,"2655":2194.5232964695,"2656":2194.3777201606,"2657":2194.2232545462,"2658":2194.0600696543,"2659":2193.8883362545,"2660":2193.7082269817,"2661":2193.5199174094,"2662":2193.3235870677,"2663":2193.1194204027,"2664":2192.9076076728,"2665":2192.688345777,"2666":2192.4618390098,"2667":2192.228299739,"2668":2191.9879489997,"2669":2191.7410169999,"2670":2191.4877435335,"2671":2191.2283782947,"2672":2190.9631810906,"2673":2190.692421948,"2674":2190.4163811105,"2675":2190.1353489249,"2676":2189.8496256144,"2677":2189.5595209383,"2678":2189.2653537389,"2679":2188.9674513783,"2680":2188.6661490658,"2681":2188.3617890825,"2682":2188.0547199074,"2683":2187.7452952524,"2684":2187.4338730133,"2685":2187.1208141471,"2686":2186.8064814856,"2687":2186.4912384958,"2688":2186.1754480005,"2689":2185.8594708708,"2690":2185.5436647034,"2691":2185.2283824985,"2692":2184.9139713481,"2693":2184.6007711518,"2694":2184.2891133709,"2695":2183.9793198336,"2696":2183.6717016041,"2697":2183.3665579248,"2698":2183.0641752424,"2699":2182.7648263264,"2700":2182.4687694855,"2701":2182.1762478899,"2702":2181.8874890015,"2703":2181.6027041158,"2704":2181.3220880169,"2705":2181.045818744,"2706":2180.7740574688,"2707":2180.5069484808,"2708":2180.2446192758,"2709":2179.987180743,"2710":2179.7347274434,"2711":2179.4873379748,"2712":2179.2450754132,"2713":2179.0079878248,"2714":2178.7761088394,"2715":2178.5494582764,"2716":2178.328042816,"2717":2178.1118567065,"2718":2177.9008824989,"2719":2177.6950918031,"2720":2177.4944460553,"2721":2177.2988972923,"2722":2177.1083889244,"2723":2176.9228565014,"2724":2176.7422284675,"2725":2176.5664268978,"2726":2176.3953682147,"2727":2176.2289638791,"2728":2176.0671210534,"2729":2175.909743233,"2730":2175.7567308441,"2731":2175.6079818016,"2732":2175.4633920228,"2733":2175.3228558822,"2734":2175.1862665841,"2735":2175.0535163992,"2736":2174.9244966635,"2737":2174.7990973402,"2738":2174.6772058124,"2739":2174.5587045579,"2740":2174.4434681309,"2741":2174.3313627838,"2742":2174.1286348338,"2743":2173.2458850138,"2744":2171.252571212,"2745":2168.4514878876,"2746":2165.3584198891,"2747":2162.2100393121,"2748":2159.1438407139,"2749":2156.2448960302,"2750":2153.6401016186,"2751":2151.0676641564,"2752":2139.8893187473,"2753":2049.4493897335,"2754":1707.4376587775,"2755":1117.2185237951,"2756":577.9775740319,"2757":288.6906015635,"2758":154.7786326764,"2759":55.5260787208,"2760":-8.3882108141,"2761":-26.5111088659,"2762":-26.9866114184,"2763":-23.9685938927,"2764":-11.5261357216,"2765":9.2844372354,"2766":32.5952278963,"2767":58.0168937599,"2768":86.5522080053,"2769":117.0276754602,"2770":148.6118565236,"2771":181.4592627054,"2772":215.4185494933,"2773":250.1243470967,"2774":285.4601230327,"2775":321.3542292764,"2776":357.6542200869,"2777":394.241860112,"2778":431.0366144265,"2779":467.9470806321,"2780":504.8850873938,"2781":541.7771097444,"2782":578.5535785671,"2783":615.1479631498,"2784":651.5003923018,"2785":687.556034373,"2786":723.2640286162,"2787":758.5781194396,"2788":793.4564216562,"2789":827.8609728444,"2790":861.7576888341,"2791":895.1162246498,"2792":927.9097429168,"2793":960.1147565276,"2794":991.7109702536,"2795":1022.6810999142,"2796":1053.0107040862,"2797":1082.6880200341,"2798":1111.703797376,"2799":1140.0511360563,"2800":1167.7253284627,"2801":1194.7237045827,"2802":1221.0454815547,"2803":1246.6916179872,"2804":1271.6646730706,"2805":1295.9686708728,"2806":1319.6089700466,"2807":1342.5921390636,"2808":1364.9258371104,"2809":1386.6187007274,"2810":1407.6802362212,"2811":1428.1207178563,"2812":1447.9510917977,"2813":1467.1828857457,"2814":1485.8281241791,"2815":1503.8992491024,"2816":1521.4090461683,"2817":1538.3705760329,"2818":1554.7971107842,"2819":1570.7020752725,"2820":1586.0989931606,"2821":1601.0014375026,"2822":1615.4229856558,"2823":1629.377178323,"2824":1642.8774825211,"2825":1655.9372582698,"2826":1668.5697287953,"2827":1680.7879540426,"2828":1692.6048072955,"2829":1704.0329547043,"2830":1715.0848375271,"2831":1725.7726568943,"2832":1736.1083609137,"2833":1746.1036339366,"2834":1755.7698878164,"2835":1765.1182549941,"2836":1774.1595832553,"2837":1782.9044320104,"2838":1791.3630699561,"2839":1799.5454739855,"2840":1807.4613292227,"2841":1815.1200300609,"2842":1822.5306820984,"2843":1829.7021048656,"2844":1836.6428352499,"2845":1843.36113153,"2846":1849.8649779363,"2847":1856.1620896638,"2848":1862.2599182669,"2849":1868.1656573742,"2850":1873.8862486644,"2851":1879.4283880515,"2852":1884.7985320318,"2853":1890.0029041493,"2854":1895.0475015415,"2855":1899.938101531,"2856":1904.680268232,"2857":1909.2793591447,"2858":1913.7405317128,"2859":1918.0687498245,"2860":1922.2687902369,"2861":1926.3452489092,"2862":1930.3025472308,"2863":1934.1449381319,"2864":1937.8765120682,"2865":1941.5012028713,"2866":1945.0227934573,"2867":1948.4449213908,"2868":1951.7710842976,"2869":1955.0046451262,"2870":1958.1488372541,"2871":1961.2067694393,"2872":1964.1814306162,"2873":1967.0756945371,"2874":1969.8923242598,"2875":1972.6339764827,"2876":1975.3032057309,"2877":1977.9024683935,"2878":1980.4341266167,"2879":1982.9004520553,"2880":1985.3036294847,"2881":1987.6457602782,"2882":1989.9288657523,"2883":1992.1548903838,"2884":1994.3257049029,"2885":1996.4431092645,"2886":1998.5088355035,"2887":2000.5245504763,"2888":2002.4918584931,"2889":2004.4123038445,"2890":2006.2873732252,"2891":2008.1184980604,"2892":2009.9070567367,"2893":2011.6543767411,"2894":2013.3617367134,"2895":2015.0303684122,"2896":2016.661458601,"2897":2018.2561508554,"2898":2019.8155472951,"2899":2021.3407102438,"2900":2022.8326638204,"2901":2024.2923954627,"2902":2025.7208573884,"2903":2027.1189679941,"2904":2028.4876131966,"2905":2029.8276477168,"2906":2031.1398963112,"2907":2032.4251549506,"2908":2033.6841919502,"2909":2034.9177490519,"2910":2036.1265424615,"2911":2037.3112638428,"2912":2038.4725812695,"2913":2039.6111401378,"2914":2040.7275640412,"2915":2041.8224556081,"2916":2042.8963973054,"2917":2043.9499522081,"2918":2044.9836647373,"2919":2045.9980613678,"2920":2046.993651306,"2921":2047.9709271403,"2922":2048.9303654647,"2923":2049.8724274764,"2924":2050.7975595493,"2925":2051.7061937841,"2926":2052.5987485356,"2927":2053.4756289192,"2928":2054.3372272957,"2929":2055.183923738,"2930":2056.0160864776,"2931":2056.8340723342,"2932":2057.6382271271,"2933":2058.4288860708,"2934":2059.2063741548,"2935":2059.9710065076,"2936":2060.7230887473,"2937":2061.4629173175,"2938":2062.1907798102,"2939":2062.9069552761,"2940":2063.6117145228,"2941":2064.3053204012,"2942":2064.9880280806,"2943":2065.6600853135,"2944":2066.32173269,"2945":2066.9732038822,"2946":2067.6147258796,"2947":2068.2465192151,"2948":2068.8687981826,"2949":2069.4817710462,"2950":2070.0856402418,"2951":2070.6806025705,"2952":2071.2668493853,"2953":2071.8445667706,"2954":2072.4139357148,"2955":2072.9751322767,"2956":2073.5283277459,"2957":2074.0736887967,"2958":2074.6113776368,"2959":2075.1415521508,"2960":2075.6643660376,"2961":2076.1799689437,"2962":2076.6885065909,"2963":2077.1901209003,"2964":2077.6849501107,"2965":2078.173128894,"2966":2078.6547884651,"2967":2079.1300566896,"2968":2079.5990581859,"2969":2080.0619144248,"2970":2080.5187438257,"2971":2080.9696618485,"2972":2081.4147810833,"2973":2081.8542113362,"2974":2082.2880597131,"2975":2082.7164306992,"2976":2083.1394262371,"2977":2083.5571458018,"2978":2083.9696864726,"2979":2084.3771430034,"2980":2084.7796078902,"2981":2085.1771714363,"2982":2085.5699218155,"2983":2085.9579451329,"2984":2086.3413254843,"2985":2086.7201450128,"2986":2087.094483964,"2987":2087.4644207397,"2988":2087.8300319491,"2989":2088.191392459,"2990":2088.5485754419,"2991":2088.9016524227,"2992":2089.2506933245,"2993":2089.5957665116,"2994":2089.9369388326,"2995":2090.2742756608,"2996":2090.6078409347,"2997":2090.937697196,"2998":2091.2639056269,"2999":2091.5865260867,"3000":0.0,"3001":0.0000107872,"3002":0.000045345,"3003":0.0000371051,"3004":0.0000363789,"3005":0.0000369858,"3006":0.0000365615,"3007":0.0000365716,"3008":0.000036374,"3009":0.0000362889,"3010":0.0000361465,"3011":0.0000360336,"3012":0.000035908,"3013":0.0000357894,"3014":0.0000356689,"3015":0.0000355503,"3016":0.0000354321,"3017":0.0000353147,"3018":0.0000351982,"3019":0.0000350824,"3020":0.0000349674,"3021":0.0000348531,"3022":0.0000347395,"3023":0.0000346268,"3024":0.0000345147,"3025":0.0000344033,"3026":0.0000342927,"3027":0.0000341828,"3028":0.0000340736,"3029":0.0000339651,"3030":0.0000338573,"3031":0.0000337501,"3032":0.0000336437,"3033":0.0000335379,"3034":0.0000334327,"3035":0.0000333283,"3036":0.0000332245,"3037":0.0000331213,"3038":0.0000330187,"3039":0.0000329168,"3040":0.0000328156,"3041":0.0000327149,"3042":0.0000326149,"3043":0.0000325154,"3044":0.0000324166,"3045":0.0000323184,"3046":0.0000322208,"3047":0.0000321237,"3048":0.0000320273,"3049":0.0000319314,"3050":0.0000318361,"3051":0.0000317413,"3052":0.0000316472,"3053":0.0000315535,"3054":0.0000314605,"3055":0.000031368,"3056":0.000031276,"3057":0.0000311845,"3058":0.0000310936,"3059":0.0000310032,"3060":0.0000309134,"3061":0.000030824,"3062":0.0000307352,"3063":0.0000306469,"3064":0.0000305591,"3065":0.0000304718,"3066":0.000030385,"3067":0.0000302987,"3068":0.0000302128,"3069":0.0000301275,"3070":0.0000300426,"3071":0.0000299582,"3072":0.0000298743,"3073":0.0000297909,"3074":0.0000297079,"3075":0.0000296254,"3076":0.0000295433,"3077":0.0000294617,"3078":0.0000293805,"3079":0.0000292998,"3080":0.0000292195,"3081":0.0000291397,"3082":0.0000290603,"3083":0.0000289813,"3084":0.0000289028,"3085":0.0000288247,"3086":0.0000096878,"3087":-0.0000012615,"3088":-0.0000020075,"3089":-0.0000048812,"3090":-0.0000069992,"3091":-0.0000095871,"3092":-0.0000118293,"3093":-0.0000140722,"3094":-0.0000161316,"3095":-0.0000181017,"3096":-0.0000199415,"3097":-0.000021676,"3098":-0.000023304,"3099":-0.000024841,"3100":-0.0000262834,"3101":-0.0000276406,"3102":-0.0000289146,"3103":-0.0000301118,"3104":-0.0000312359,"3105":-0.0000322917,"3106":-0.0000332829,"3107":-0.0000342134,"3108":-0.0000350868,"3109":-0.0000359063,"3110":-0.000036675,"3111":-0.0000373958,"3112":-0.0000380715,"3113":-0.0000387044,"3114":-0.000039297,"3115":-0.0000398515,"3116":-0.0000403699,"3117":-0.0000408542,"3118":-0.000041306,"3119":-0.0000417272,"3120":-0.0000421192,"3121":-0.0000424836,"3122":-0.0000428216,"3123":-0.0000431345,"3124":-0.0000434237,"3125":-0.00004369,"3126":-0.0000439347,"3127":-0.0000441586,"3128":-0.0000443627,"3129":-0.0000445478,"3130":-0.0000447147,"3131":-0.0000448641,"3132":-0.0000449967,"3133":-0.0000451132,"3134":-0.0000452141,"3135":-0.0000453,"3136":-0.0000453714,"3137":-0.0000454287,"3138":-0.0000454725,"3139":-0.0000455031,"3140":-0.000045521,"3141":-0.0000455264,"3142":-0.0000455197,"3143":-0.0000455013,"3144":-0.0000454714,"3145":-0.0000454303,"3146":-0.0000453782,"3147":-0.0000453154,"3148":-0.0000452422,"3149":-0.0000451587,"3150":-0.0000450651,"3151":-0.0000449616,"3152":-0.0000448485,"3153":-0.0000447259,"3154":-0.000044594,"3155":-0.0000444529,"3156":-0.0000443028,"3157":-0.000044144,"3158":-0.0000439765,"3159":-0.0000438005,"3160":-0.0000436163,"3161":-0.0000434239,"3162":-0.0000432236,"3163":-0.0000430156,"3164":-0.0000428,"3165":-0.0000425771,"3166":-0.000042347,"3167":-0.00004211,"3168":-0.0000418663,"3169":-0.0000416162,"3170":-0.0000413598,"3171":-0.0000410975,"3172":-0.0000408294,"3173":-0.000040556,"3174":-0.0000402774,"3175":-0.0000399939,"3176":-0.0000397059,"3177":-0.0000394137,"3178":-0.0000391176,"3179":-0.0000388179,"3180":-0.000038515,"3181":-0.0000382092,"3182":-0.0000379009,"3183":-0.0000375903,"3184":-0.000037278,"3185":-0.0000369642,"3186":-0.0000366494,"3187":-0.0000363337,"3188":-0.0000360178,"3189":-0.0000357018,"3190":-0.0000353862,"3191":-0.0000350712,"3192":-0.0000347573,"3193":-0.0000344448,"3194":-0.000034134,"3195":-0.0000338252,"3196":-0.0000335188,"3197":-0.0000332149,"3198":-0.000032914,"3199":-0.0000326162,"3200":-0.0000323219,"3201":-0.0000320312,"3202":-0.0000317444,"3203":-0.0000314616,"3204":-0.0000311831,"3205":-0.0000309091,"3206":-0.0000306396,"3207":-0.0000303748,"3208":-0.0000301149,"3209":-0.00002986,"3210":-0.00002961,"3211":-0.0000293652,"3212":-0.0000291255,"3213":-0.000028891,"3214":-0.0000286617,"3215":-0.0000284377,"3216":-0.0000282189,"3217":-0.0000280053,"3218":-0.0000277969,"3219":-0.0000275937,"3220":-0.0000273956,"3221":-0.0000272026,"3222":-0.0000270146,"3223":-0.0000268315,"3224":-0.0000266533,"3225":-0.0000264799,"3226":-0.0000263112,"3227":-0.0000261471,"3228":-0.0000259875,"3229":-0.0000258323,"3230":-0.0000256815,"3231":-0.0000255348,"3232":-0.0000253923,"3233":-0.0000252537,"3234":-0.0000251191,"3235":-0.0000249882,"3236":-0.000024861,"3237":-0.0000247374,"3238":-0.0000246172,"3239":-0.0000245004,"3240":-0.0000243868,"3241":-0.0000242762,"3242":-0.0000239873,"3243":-0.0000225371,"3244":-0.0000199665,"3245":-0.000016921,"3246":-0.0000137923,"3247":-0.0000106343,"3248":-0.0000076532,"3249":-0.0000048434,"3250":-0.0000024347,"3251":0.0000002708,"3252":0.000019411,"3253":0.0001776253,"3254":0.0007000809,"3255":0.001372217,"3256":0.0017831793,"3257":0.0019368632,"3258":0.0020463026,"3259":0.0021424257,"3260":0.0021760385,"3261":0.002175789,"3262":0.0021771323,"3263":0.0021712687,"3264":0.0021519834,"3265":0.0021291341,"3266":0.0021056676,"3267":0.0020784685,"3268":0.0020484413,"3269":0.0020175042,"3270":0.0019853543,"3271":0.0019517986,"3272":0.0019174123,"3273":0.0018824041,"3274":0.0018467484,"3275":0.0018106095,"3276":0.00177415,"3277":0.001737438,"3278":0.0017005599,"3279":0.0016636169,"3280":0.0016266848,"3281":0.0015898328,"3282":0.0015531316,"3283":0.001516644,"3284":0.0014804264,"3285":0.0014445322,"3286":0.0014090099,"3287":0.0013739033,"3288":0.0013392525,"3289":0.0013050934,"3290":0.0012714582,"3291":0.0012383753,"3292":0.0012058701,"3293":0.0011739642,"3294":0.0011426765,"3295":0.0011120228,"3296":0.0010820161,"3297":0.0010526669,"3298":0.0010239833,"3299":0.000995971,"3300":0.0009686336,"3301":0.0009419729,"3302":0.0009159888,"3303":0.0008906793,"3304":0.0008660414,"3305":0.0008420701,"3306":0.0008187595,"3307":0.0007961024,"3308":0.0007740908,"3309":0.0007527154,"3310":0.0007319665,"3311":0.0007118333,"3312":0.0006923045,"3313":0.0006733685,"3314":0.0006550129,"3315":0.0006372251,"3316":0.0006199922,"3317":0.000603301,"3318":0.000587138,"3319":0.00057149,"3320":0.0005563432,"3321":0.0005416841,"3322":0.0005274991,"3323":0.0005137748,"3324":0.0005004976,"3325":0.0004876543,"3326":0.0004752318,"3327":0.0004632171,"3328":0.0004515973,"3329":0.00044036,"3330":0.0004294928,"3331":0.0004189836,"3332":0.0004088207,"3333":0.0003989924,"3334":0.0003894875,"3335":0.000380295,"3336":0.0003714042,"3337":0.0003628047,"3338":0.0003544864,"3339":0.0003464393,"3340":0.0003386541,"3341":0.0003311214,"3342":0.0003238323,"3343":0.0003167781,"3344":0.0003099504,"3345":0.000303341,"3346":0.0002969422,"3347":0.0002907464,"3348":0.0002847462,"3349":0.0002789345,"3350":0.0002733046,"3351":0.0002678499,"3352":0.000262564,"3353":0.0002574408,"3354":0.0002524745,"3355":0.0002476593,"3356":0.0002429898,"3357":0.0002384608,"3358":0.0002340672,"3359":0.0002298041,"3360":0.0002256668,"3361":0.0002216509,"3362":0.000217752,"3363":0.0002139659,"3364":0.0002102886,"3365":0.0002067163,"3366":0.0002032452,"3367":0.0001998719,"3368":0.0001965927,"3369":0.0001934045,"3370":0.0001903042,"3371":0.0001872885,"3372":0.0001843547,"3373":0.0001814998,"3374":0.0001787212,"3375":0.0001760164,"3376":0.0001733826,"3377":0.0001708177,"3378":0.0001683192,"3379":0.0001658849,"3380":0.0001635127,"3381":0.0001612005,"3382":0.0001589464,"3383":0.0001567484,"3384":0.0001546046,"3385":0.0001525134,"3386":0.0001504731,"3387":0.0001484819,"3388":0.0001465384,"3389":0.0001446409,"3390":0.0001427881,"3391":0.0001409786,"3392":0.0001392109,"3393":0.0001374839,"3394":0.0001357961,"3395":0.0001341465,"3396":0.0001325339,"3397":0.0001309571,"3398":0.000129415,"3399":0.0001279067,"3400":0.000126431,"3401":0.0001249871,"3402":0.000123574,"3403":0.0001221908,"3404":0.0001208367,"3405":0.0001195107,"3406":0.0001182121,"3407":0.0001169401,"3408":0.000115694,"3409":0.000114473,"3410":0.0001132764,"3411":0.0001121035,"3412":0.0001109537,"3413":0.0001098263,"3414":0.0001087208,"3415":0.0001076365,"3416":0.0001065729,"3417":0.0001055293,"3418":0.0001045054,"3419":0.0001035005,"3420":0.0001025142,"3421":0.0001015459,"3422":0.0001005953,"3423":0.0000996618,"3424":0.000098745,"3425":0.0000978445,"3426":0.0000969598,"3427":0.0000960907,"3428":0.0000952366,"3429":0.0000943973,"3430":0.0000935723,"3431":0.0000927613,"3432":0.0000919639,"3433":0.0000911799,"3434":0.0000904089,"3435":0.0000896506,"3436":0.0000889047,"3437":0.0000881709,"3438":0.000087449,"3439":0.0000867386,"3440":0.0000860394,"3441":0.0000853513,"3442":0.000084674,"3443":0.0000840072,"3444":0.0000833507,"3445":0.0000827042,"3446":0.0000820676,"3447":0.0000814406,"3448":0.000080823,"3449":0.0000802147,"3450":0.0000796153,"3451":0.0000790247,"3452":0.0000784428,"3453":0.0000778693,"3454":0.000077304,"3455":0.0000767469,"3456":0.0000761976,"3457":0.0000756561,"3458":0.0000751222,"3459":0.0000745957,"3460":0.0000740766,"3461":0.0000735645,"3462":0.0000730595,"3463":0.0000725613,"3464":0.0000720698,"3465":0.0000715849,"3466":0.0000711065,"3467":0.0000706344,"3468":0.0000701685,"3469":0.0000697086,"3470":0.0000692548,"3471":0.0000688068,"3472":0.0000683645,"3473":0.0000679279,"3474":0.0000674968,"3475":0.0000670712,"3476":0.0000666508,"3477":0.0000662357,"3478":0.0000658257,"3479":0.0000654208,"3480":0.0000650208,"3481":0.0000646257,"3482":0.0000642353,"3483":0.0000638496,"3484":0.0000634685,"3485":0.000063092,"3486":0.0000627198,"3487":0.0000623521,"3488":0.0000619886,"3489":0.0000616293,"3490":0.0000612742,"3491":0.0000609232,"3492":0.0000605761,"3493":0.000060233,"3494":0.0000598938,"3495":0.0000595583,"3496":0.0000592266,"3497":0.0000588986,"3498":0.0000585742,"3499":0.0000582534,"3500":0.0,"3501":4.4863334228,"3502":8.6708954831,"3503":-3.1420301032,"3504":12.559072217,"3505":6.1901235016,"3506":13.705273333,"3507":13.211132976,"3508":17.0949982895,"3509":18.658517271,"3510":21.3869533346,"3511":23.5311809364,"3512":25.9389749734,"3513":28.2141703056,"3514":30.5346682931,"3515":32.8245897213,"3516":35.1142845557,"3517":37.3929774896,"3518":39.663826318,"3519":41.9265480126,"3520":44.1807630453,"3521":46.4270468803,"3522":48.6650558236,"3523":50.8951126567,"3524":53.1171112062,"3525":55.3312005967,"3526":57.5373839776,"3527":59.7357434972,"3528":61.9263185565,"3529":64.1091697937,"3530":66.2843463419,"3531":68.4519021971,"3532":70.6118882433,"3533":72.7643560607,"3534":74.909356168,"3535":77.0469388248,"3536":79.1771536913,"3537":81.3000499796,"3538":83.415676403,"3539":85.5240812028,"3540":87.6253121482,"3541":89.7194165433,"3542":91.8064412339,"3543":93.8864326121,"3544":95.9594366229,"3545":98.0254987699,"3546":100.0846641202,"3547":102.1369773106,"3548":104.1824825526,"3549":106.221223638,"3550":108.2532439438,"3551":110.2785864377,"3552":112.2972936831,"3553":114.3094078439,"3554":116.3149706897,"3555":118.3140236005,"3556":120.3066075713,"3557":122.2927632174,"3558":124.2725307784,"3559":126.2459501231,"3560":128.2130607538,"3561":130.173901811,"3562":132.1285120774,"3563":134.0769299827,"3564":136.0191936074,"3565":137.9553406869,"3566":139.8854086161,"3567":141.8094344531,"3568":143.7274549232,"3569":145.6395064228,"3570":147.5456250237,"3571":149.4458464762,"3572":151.3402062134,"3573":153.2287393548,"3574":155.1114807098,"3575":156.9884647815,"3576":158.8597257701,"3577":160.7252975764,"3578":162.5852138055,"3579":164.4395077696,"3580":166.2882124923,"3581":168.1313607108,"3582":169.9689848801,"3583":171.8011171757,"3584":173.6277894968,"3585":175.4490334697,"3586":738.4653086254,"3587":1985.2198728104,"3588":3599.2063598716,"3589":5355.7951122677,"3590":7119.8510806787,"3591":8828.7810323793,"3592":10459.8668018829,"3593":12003.8373216072,"3594":13461.9883063178,"3595":14835.9290661844,"3596":16129.236168748,"3597":17343.4244025262,"3598":18485.6201276032,"3599":19562.5939462694,"3600":20573.9871869768,"3601":21525.3143242595,"3602":22418.5066717218,"3603":23257.7921592382,"3604":24045.8418633484,"3605":24785.9586092918,"3606":25480.8161072798,"3607":26133.1480235532,"3608":26745.3913565313,"3609":27319.8843014039,"3610":27858.7808507674,"3611":28364.1075861496,"3612":28837.7503309577,"3613":29281.4737761509,"3614":29696.9248327471,"3615":30085.6426630553,"3616":30449.0649135019,"3617":30788.5348761235,"3618":31105.3075457594,"3619":31400.5554979694,"3620":31675.3742411472,"3621":31930.7872353875,"3622":32167.7505399131,"3623":32387.1571468645,"3624":32589.8410140454,"3625":32776.5808271745,"3626":32948.1035104625,"3627":33105.0875077089,"3628":33248.1658516213,"3629":33377.9290391623,"3630":33494.9277284091,"3631":33599.675271681,"3632":33692.6500982233,"3633":33774.2979588536,"3634":33845.0340439117,"3635":33905.2449850241,"3636":33955.2907503458,"3637":33995.506442215,"3638":34026.2040054454,"3639":34047.6738538445,"3640":34060.1864219388,"3641":34063.993648316,"3642":34059.3303964608,"3643":34046.4158184451,"3644":34025.45466634,"3645":33996.6385557454,"3646":33960.1471853653,"3647":33916.1495161086,"3648":33864.804912745,"3649":33806.2642507084,"3650":33740.6709901991,"3651":33668.1622193027,"3652":33588.8696674066,"3653":33502.9206897635,"3654":33410.4392236189,"3655":33311.5467158891,"3656":33206.3630219567,"3657":33095.0072747276,"3658":32977.5987226937,"3659":32854.2575353486,"3660":32725.1055739337,"3661":32590.2671251423,"3662":32449.8695950894,"3663":32304.0441605733,"3664":32152.926374413,"3665":31996.656721454,"3666":31835.3811217011,"3667":31669.2513769623,"3668":31498.425557385,"3669":31323.0683243383,"3670":31143.3511862434,"3671":30959.4526841931,"3672":30771.5585045189,"3673":30579.8615158747,"3674":30384.5617289009,"3675":30185.8661771097,"3676":29983.9887182915,"3677":29779.1497564687,"3678":29571.5758852134,"3679":29361.4994539859,"3680":29149.1580600266,"3681":28934.7939692301,"3682":28718.6534703295,"3683":28500.9861676024,"3684":28282.0442181607,"3685":28062.0815206788,"3686":27841.3528631372,"3687":27620.1130377911,"3688":27398.6159320896,"3689":27177.1136046772,"3690":26955.855355869,"3691":26735.086802114,"3692":26515.0489639343,"3693":26295.9773766479,"3694":26078.101232858,"3695":25861.6425652214,"3696":25646.8154774056,"3697":25433.8254304221,"3698":25222.868590693,"3699":25014.1312452966,"3700":24807.7892888495,"3701":24604.0077854627,"3702":24402.9406081493,"3703":24204.7301570146,"3704":24009.507156516,"3705":23817.3905310902,"3706":23628.4873574952,"3707":23442.8928913502,"3708":23260.6906645656,"3709":23081.9526496656,"3710":22906.7394864149,"3711":22735.1007656752,"3712":22567.0753650443,"3713":22402.6918305594,"3714":22241.9687985806,"3715":22084.9154519063,"3716":21931.5320041966,"3717":21781.8102068865,"3718":21635.7338729589,"3719":21493.2794121864,"3720":21354.416372758,"3721":21219.1079845412,"3722":21087.3116996121,"3723":20958.9797260759,"3724":20834.0595516111,"3725":20712.4944535705,"3726":20594.2239928612,"3727":20479.1844891635,"3728":20367.3094753002,"3729":20258.530128639,"3730":20152.7756771207,"3731":20049.9737764828,"3732":19950.0508527132,"3733":19852.9323981183,"3734":19758.5431973645,"3735":19666.8074351263,"3736":19577.6485886269,"3737":19490.9889239635,"3738":19406.7483123864,"3739":19324.8421542033,"3740":19245.1791926502,"3741":19167.6630687576,"3742":18965.2595805738,"3743":17949.233341298,"3744":16147.78642666,"3745":14013.1476405589,"3746":11819.8846396598,"3747":9605.237412861,"3748":7508.1938004528,"3749":5490.7338814074,"3750":3599.6964338407,"3751":1807.1352412835,"3752":138.0229339708,"3753":-1336.7784369368,"3754":-2504.7039275435,"3755":-3531.6899894015,"3756":-4249.8678283973,"3757":-4600.2351189664,"3758":-4774.4608638423,"3759":-4907.8555904607,"3760":-4983.0502087131,"3761":-5001.1950097193,"3762":-5002.075137417,"3763":-4997.0829760229,"3764":-4978.0142506029,"3765":-4949.2897923129,"3766":-4917.755037206,"3767":-4882.6975506437,"3768":-4843.3742375957,"3769":-4801.6201217713,"3770":-4758.1350569692,"3771":-4712.6634221308,"3772":-4665.5437361233,"3773":-4617.2000566269,"3774":-4567.7164550917,"3775":-4517.2068240844,"3776":-4465.8690540762,"3777":-4413.8305433281,"3778":-4361.1896190259,"3779":-4308.0639407234,"3780":-4254.559217044,"3781":-4200.7651187262,"3782":-4146.7700667198,"3783":-4092.6578626386,"3784":-4038.5044395446,"3785":-3984.3810763339,"3786":-3930.3547246931,"3787":-3876.4871621825,"3788":-3822.8356383142,"3789":-3769.4532459725,"3790":-3716.3888716732,"3791":-3663.6874187243,"3792":-3611.3900412918,"3793":-3559.5342748795,"3794":-3508.1542072577,"3795":-3457.2806606285,"3796":-3406.9413511039,"3797":-3357.1610511287,"3798":-3307.9617527754,"3799":-3259.3628240495,"3800":-3211.3811620893,"3801":-3164.0313431112,"3802":-3117.3257673637,"3803":-3071.2747994811,"3804":-3025.8869040953,"3805":-2981.1687762842,"3806":-2937.1254668198,"3807":-2893.7605021411,"3808":-2851.0759989606,"3809":-2809.072773504,"3810":-2767.7504454008,"3811":-2727.1075362697,"3812":-2687.1415630724,"3813":-2647.8491263321,"3814":-2609.2259933329,"3815":-2571.2671764314,"3816":-2533.9670066274,"3817":-2497.3192025503,"3818":-2461.3169350278,"3819":-2425.9528874097,"3820":-2391.2193118227,"3821":-2357.1080815386,"3822":-2323.6107396345,"3823":-2290.718544129,"3824":-2258.4225097725,"3825":-2226.7134466695,"3826":-2195.5819959076,"3827":-2165.0186623635,"3828":-2135.0138448504,"3829":-2105.5578637689,"3830":-2076.6409864143,"3831":-2048.2534500905,"3832":-2020.3854831726,"3833":-1993.0273242545,"3834":-1966.1692395115,"3835":-1939.801538402,"3836":-1913.9145878244,"3837":-1888.498824842,"3838":-1863.5447680788,"3839":-1839.0430278853,"3840":-1814.9843153691,"3841":-1791.3594503744,"3842":-1768.1593684946,"3843":-1745.3751271941,"3844":-1722.9979111092,"3845":-1701.0190365973,"3846":-1679.4299555949,"3847":-1658.2222588425,"3848":-1637.3876785312,"3849":-1616.9180904195,"3850":-1596.8055154682,"3851":-1577.0421210352,"3852":-1557.6202216711,"3853":-1538.5322795505,"3854":-1519.7709045761,"3855":-1501.3288541839,"3856":-1483.1990328802,"3857":-1465.3744915369,"3858":-1447.8484264701,"3859":-1430.6141783232,"3860":-1413.665230777,"3861":-1396.9952091058,"3862":-1380.5978785962,"3863":-1364.4671428452,"3864":-1348.5970419533,"3865":-1332.9817506252,"3866":-1317.6155761907,"3867":-1302.4929565585,"3868":-1287.6084581108,"3869":-1272.9567735515,"3870":-1258.532719714,"3871":-1244.331235338,"3872":-1230.3473788228,"3873":-1216.5763259621,"3874":-1203.0133676683,"3875":-1189.6539076907,"3876":-1176.4934603322,"3877":-1163.5276481706,"3878":-1150.7521997862,"3879":-1138.1629475019,"3880":-1125.7558251368,"3881":-1113.5268657781,"3882":-1101.4721995729,"3883":-1089.588051542,"3884":-1077.8707394195,"3885":-1066.3166715175,"3886":-1054.9223446198,"3887":-1043.6843419051,"3888":-1032.5993309006,"3889":-1021.6640614675,"3890":-1010.8753638192,"3891":-1000.2301465737,"3892":-989.725394839,"3893":-979.358168334,"3894":-969.1255995439,"3895":-959.0248919114,"3896":-949.0533180631,"3897":-939.2082180716,"3898":-929.4869977531,"3899":-919.887127001,"3900":-910.4061381547,"3901":-901.0416244042,"3902":-891.7912382291,"3903":-882.6526898733,"3904":-873.6237458538,"3905":-864.7022275041,"3906":-855.8860095512,"3907":-847.1730187261,"3908":-838.5612324079,"3909":-830.0486772994,"3910":-821.6334281362,"3911":-813.313606426,"3912":-805.0873792204,"3913":-796.9529579162,"3914":-788.9085970875,"3915":-780.9525933468,"3916":-773.0832842353,"3917":-765.2990471421,"3918":-757.59829825,"3919":-749.9794915102,"3920":-742.4411176424,"3921":-734.9817031617,"3922":-727.5998094314,"3923":-720.2940317399,"3924":-713.0629984031,"3925":-705.9053698901,"3926":-698.8198379726,"3927":-691.8051248971,"3928":-684.8599825793,"3929":-677.9831918201,"3930":-671.1735615437,"3931":-664.4299280552,"3932":-657.7511543195,"3933":-651.1361292592,"3934":-644.5837670719,"3935":-638.0930065668,"3936":-631.6628105186,"3937":-625.2921650397,"3938":-618.9800789699,"3939":-612.7255832825,"3940":-606.5277305073,"3941":-600.3855941693,"3942":-594.2982682425,"3943":-588.2648666204,"3944":-582.2845225989,"3945":-576.356388376,"3946":-570.4796345635,"3947":-564.6534497133,"3948":-558.8770398564,"3949":-553.1496280554,"3950":-547.4704539685,"3951":-541.8387734263,"3952":-536.2538580204,"3953":-530.7149947031,"3954":-525.2214853982,"3955":-519.7726466232,"3956":-514.3678091214,"3957":-509.0063175044,"3958":-503.6875299048,"3959":-498.4108176381,"3960":-493.1755648742,"3961":-487.981168318,"3962":-482.827036899,"3963":-477.7125914689,"3964":-472.6372645084,"3965":-467.6004998413,"3966":-462.601752357,"3967":-457.6404877404,"3968":-452.7161822092,"3969":-447.8283222586,"3970":-442.9764044128,"3971":-438.1599349833,"3972":-433.3784298341,"3973":-428.6314141529,"3974":-423.9184222285,"3975":-419.2389972351,"3976":-414.592691021,"3977":-409.9790639043,"3978":-405.3976844736,"3979":-400.848129394,"3980":-396.3299832183,"3981":-391.8428382038,"3982":-387.3862941332,"3983":-382.9599581408,"3984":-378.5634445433,"3985":-374.1963746752,"3986":-369.8583767279,"3987":-365.5490855939,"3988":-361.268142715,"3989":-357.0151959336,"3990":-352.7898993493,"3991":-348.591913178,"3992":-344.4209036156,"3993":-340.2765427048,"3994":-336.1585082052,"3995":-332.0664834674,"3996":-328.0001573097,"3997":-323.9592238983,"3998":-319.9433826307,"3999":-315.9523380219,"4000":0.0,"4001":-0.0000029953,"4002":-0.0000014967,"4003":-0.0000022475,"4004":-0.0000018706,"4005":-0.0000020588,"4006":-0.0000019641,"4007":-0.000002011,"4008":-0.000001987,"4009":-0.0000019984,"4010":-0.0000019922,"4011":-0.0000019948,"4012":-0.000001993,"4013":-0.0000019934,"4014":-0.0000019926,"4015":-0.0000019925,"4016":-0.000001992,"4017":-0.0000019917,"4018":-0.0000019914,"4019":-0.0000019911,"4020":-0.0000019907,"4021":-0.0000019904,"4022":-0.00000199,"4023":-0.0000019897,"4024":-0.0000019894,"4025":-0.000001989,"4026":-0.0000019887,"4027":-0.0000019884,"4028":-0.0000019881,"4029":-0.0000019877,"4030":-0.0000019874,"4031":-0.0000019871,"4032":-0.0000019868,"4033":-0.0000019864,"4034":-0.0000019861,"4035":-0.0000019858,"4036":-0.0000019855,"4037":-0.0000019852,"4038":-0.0000019848,"4039":-0.0000019845,"4040":-0.0000019842,"4041":-0.0000019839,"4042":-0.0000019836,"4043":-0.0000019833,"4044":-0.000001983,"4045":-0.0000019826,"4046":-0.0000019823,"4047":-0.000001982,"4048":-0.0000019817,"4049":-0.0000019814,"4050":-0.0000019811,"4051":-0.0000019808,"4052":-0.0000019805,"4053":-0.0000019802,"4054":-0.0000019799,"4055":-0.0000019796,"4056":-0.0000019793,"4057":-0.000001979,"4058":-0.0000019787,"4059":-0.0000019784,"4060":-0.0000019781,"4061":-0.0000019778,"4062":-0.0000019775,"4063":-0.0000019772,"4064":-0.000001977,"4065":-0.0000019767,"4066":-0.0000019764,"4067":-0.0000019761,"4068":-0.0000019758,"4069":-0.0000019755,"4070":-0.0000019752,"4071":-0.0000019749,"4072":-0.0000019747,"4073":-0.0000019744,"4074":-0.0000019741,"4075":-0.0000019738,"4076":-0.0000019735,"4077":-0.0000019733,"4078":-0.000001973,"4079":-0.0000019727,"4080":-0.0000019724,"4081":-0.0000019721,"4082":-0.0000019719,"4083":-0.0000019716,"4084":-0.0000019713,"4085":-0.000001971,"4086":-0.0000018867,"4087":-0.0000016999,"4088":-0.0000014581,"4089":-0.0000011951,"4090":-0.0000009313,"4091":-0.0000006777,"4092":-0.0000004439,"4093":-0.000000242,"4094":-0.0000000121,"4095":0.0000010123,"4096":0.0000074544,"4097":0.0000331126,"4098":0.0000858861,"4099":0.0001533054,"4100":0.0002265053,"4101":0.0003008609,"4102":0.000374097,"4103":0.0004450863,"4104":0.0005132386,"4105":0.0005782893,"4106":0.0006401274,"4107":0.0006987482,"4108":0.0007541997,"4109":0.0008065664,"4110":0.0008559509,"4111":0.0009024673,"4112":0.000946234,"4113":0.0009873708,"4114":0.0010259963,"4115":0.001062226,"4116":0.0010961718,"4117":0.0011279413,"4118":0.001157637,"4119":0.0011853566,"4120":0.001211193,"4121":0.0012352339,"4122":0.0012575622,"4123":0.0012782562,"4124":0.0012973894,"4125":0.0013150313,"4126":0.0013312468,"4127":0.0013460971,"4128":0.0013596395,"4129":0.0013719278,"4130":0.0013830122,"4131":0.0013929398,"4132":0.0014017547,"4133":0.001409498,"4134":0.0014162082,"4135":0.0014219213,"4136":0.0014266707,"4137":0.0014304878,"4138":0.0014334018,"4139":0.00143544,"4140":0.001436628,"4141":0.0014369894,"4142":0.0014365467,"4143":0.0014353206,"4144":0.0014333307,"4145":0.0014305953,"4146":0.0014271316,"4147":0.0014229561,"4148":0.0014180841,"4149":0.0014125303,"4150":0.0014063087,"4151":0.0013994329,"4152":0.0013919157,"4153":0.0013837698,"4154":0.0013750076,"4155":0.0013656411,"4156":0.0013556825,"4157":0.0013451437,"4158":0.0013340368,"4159":0.001322374,"4160":0.0013101677,"4161":0.0012974305,"4162":0.0012841755,"4163":0.0012704161,"4164":0.0012561661,"4165":0.0012414399,"4166":0.0012262524,"4167":0.0012106192,"4168":0.0011945563,"4169":0.0011780806,"4170":0.0011612097,"4171":0.0011439616,"4172":0.0011263553,"4173":0.0011084103,"4174":0.0010901471,"4175":0.0010715864,"4176":0.0010527501,"4177":0.0010336603,"4178":0.00101434,"4179":0.0009948125,"4180":0.0009751016,"4181":0.0009552318,"4182":0.0009352278,"4183":0.0009151143,"4184":0.0008949168,"4185":0.0008746604,"4186":0.0008543706,"4187":0.0008340725,"4188":0.0008137915,"4189":0.0007935523,"4190":0.0007733796,"4191":0.0007532976,"4192":0.0007333298,"4193":0.0007134994,"4194":0.0006938288,"4195":0.0006743394,"4196":0.0006550521,"4197":0.0006359866,"4198":0.0006171619,"4199":0.0005985956,"4200":0.0005803046,"4201":0.0005623044,"4202":0.0005446094,"4203":0.0005272329,"4204":0.0005101868,"4205":0.000493482,"4206":0.0004771281,"4207":0.0004611333,"4208":0.000445505,"4209":0.0004302489,"4210":0.00041537,"4211":0.0004008719,"4212":0.0003867572,"4213":0.0003730275,"4214":0.0003596832,"4215":0.0003467241,"4216":0.0003341487,"4217":0.0003219549,"4218":0.0003101397,"4219":0.0002986994,"4220":0.0002876296,"4221":0.0002769253,"4222":0.0002665809,"4223":0.0002565903,"4224":0.000246947,"4225":0.000237644,"4226":0.0002286739,"4227":0.0002200293,"4228":0.0002117021,"4229":0.0002036844,"4230":0.0001959678,"4231":0.0001885441,"4232":0.0001814047,"4233":0.0001745411,"4234":0.0001679449,"4235":0.0001616074,"4236":0.00015552,"4237":0.0001496743,"4238":0.0001440614,"4239":0.0001386724,"4240":0.0001334982,"4241":0.0001285294,"4242":0.0001158087,"4243":0.0000583052,"4244":0.0000008123,"4245":0.0000014237,"4246":-0.0000009589,"4247":-0.0000002139,"4248":-0.000001048,"4249":-0.0000010875,"4250":-0.0000015018,"4251":-0.0000017048,"4252":-0.0000019876,"4253":-0.0000021921,"4254":-0.0000023753,"4255":-0.0000025251,"4256":-0.0000026347,"4257":-0.0000026862,"4258":-0.0000027128,"4259":-0.0000027325,"4260":-0.0000027439,"4261":-0.0000027466,"4262":-0.0000027467,"4263":-0.000002746,"4264":-0.0000027431,"4265":-0.0000027388,"4266":-0.0000027341,"4267":-0.0000027288,"4268":-0.0000027229,"4269":-0.0000027167,"4270":-0.0000027102,"4271":-0.0000027034,"4272":-0.0000026963,"4273":-0.000002689,"4274":-0.0000026816,"4275":-0.0000026741,"4276":-0.0000026664,"4277":-0.0000026586,"4278":-0.0000026507,"4279":-0.0000026427,"4280":-0.0000026347,"4281":-0.0000026267,"4282":-0.0000026186,"4283":-0.0000026105,"4284":-0.0000026024,"4285":-0.0000025942,"4286":-0.0000025862,"4287":-0.0000025781,"4288":-0.00000257,"4289":-0.000002562,"4290":-0.0000025541,"4291":-0.0000025462,"4292":-0.0000025384,"4293":-0.0000025306,"4294":-0.0000025229,"4295":-0.0000025153,"4296":-0.0000025077,"4297":-0.0000025003,"4298":-0.0000024929,"4299":-0.0000024856,"4300":-0.0000024784,"4301":-0.0000024713,"4302":-0.0000024643,"4303":-0.0000024574,"4304":-0.0000024506,"4305":-0.000002444,"4306":-0.0000024374,"4307":-0.0000024309,"4308":-0.0000024245,"4309":-0.0000024182,"4310":-0.000002412,"4311":-0.0000024059,"4312":-0.0000023999,"4313":-0.000002394,"4314":-0.0000023882,"4315":-0.0000023825,"4316":-0.000002377,"4317":-0.0000023715,"4318":-0.0000023661,"4319":-0.0000023608,"4320":-0.0000023556,"4321":-0.0000023505,"4322":-0.0000023454,"4323":-0.0000023405,"4324":-0.0000023357,"4325":-0.0000023309,"4326":-0.0000023263,"4327":-0.0000023217,"4328":-0.0000023172,"4329":-0.0000023128,"4330":-0.0000023084,"4331":-0.0000023042,"4332":-0.0000023,"4333":-0.0000022959,"4334":-0.0000022919,"4335":-0.0000022879,"4336":-0.0000022841,"4337":-0.0000022803,"4338":-0.0000022765,"4339":-0.0000022728,"4340":-0.0000022692,"4341":-0.0000022657,"4342":-0.0000022622,"4343":-0.0000022588,"4344":-0.0000022555,"4345":-0.0000022522,"4346":-0.0000022489,"4347":-0.0000022458,"4348":-0.0000022426,"4349":-0.0000022396,"4350":-0.0000022366,"4351":-0.0000022336,"4352":-0.0000022307,"4353":-0.0000022278,"4354":-0.000002225,"4355":-0.0000022223,"4356":-0.0000022195,"4357":-0.0000022169,"4358":-0.0000022142,"4359":-0.0000022117,"4360":-0.0000022091,"4361":-0.0000022066,"4362":-0.0000022042,"4363":-0.0000022017,"4364":-0.0000021994,"4365":-0.000002197,"4366":-0.0000021947,"4367":-0.0000021925,"4368":-0.0000021902,"4369":-0.000002188,"4370":-0.0000021859,"4371":-0.0000021838,"4372":-0.0000021817,"4373":-0.0000021796,"4374":-0.0000021776,"4375":-0.0000021756,"4376":-0.0000021736,"4377":-0.0000021716,"4378":-0.0000021697,"4379":-0.0000021678,"4380":-0.000002166,"4381":-0.0000021642,"4382":-0.0000021623,"4383":-0.0000021606,"4384":-0.0000021588,"4385":-0.0000021571,"4386":-0.0000021554,"4387":-0.0000021537,"4388":-0.000002152,"4389":-0.0000021504,"4390":-0.0000021488,"4391":-0.0000021472,"4392":-0.0000021456,"4393":-0.0000021441,"4394":-0.0000021425,"4395":-0.000002141,"4396":-0.0000021395,"4397":-0.000002138,"4398":-0.0000021366,"4399":-0.0000021351,"4400":-0.0000021337,"4401":-0.0000021323,"4402":-0.0000021309,"4403":-0.0000021296,"4404":-0.0000021282,"4405":-0.0000021269,"4406":-0.0000021256,"4407":-0.0000021243,"4408":-0.000002123,"4409":-0.0000021217,"4410":-0.0000021204,"4411":-0.0000021192,"4412":-0.0000021179,"4413":-0.0000021167,"4414":-0.0000021155,"4415":-0.0000021143,"4416":-0.0000021132,"4417":-0.000002112,"4418":-0.0000021108,"4419":-0.0000021097,"4420":-0.0000021086,"4421":-0.0000021074,"4422":-0.0000021063,"4423":-0.0000021052,"4424":-0.0000021042,"4425":-0.0000021031,"4426":-0.000002102,"4427":-0.000002101,"4428":-0.0000020999,"4429":-0.0000020989,"4430":-0.0000020979,"4431":-0.0000020969,"4432":-0.0000020959,"4433":-0.0000020949,"4434":-0.0000020939,"4435":-0.0000020929,"4436":-0.000002092,"4437":-0.000002091,"4438":-0.0000020901,"4439":-0.0000020891,"4440":-0.0000020882,"4441":-0.0000020873,"4442":-0.0000020864,"4443":-0.0000020855,"4444":-0.0000020846,"4445":-0.0000020837,"4446":-0.0000020828,"4447":-0.0000020819,"4448":-0.0000020811,"4449":-0.0000020802,"4450":-0.0000020794,"4451":-0.0000020785,"4452":-0.0000020777,"4453":-0.0000020768,"4454":-0.000002076,"4455":-0.0000020752,"4456":-0.0000020744,"4457":-0.0000020736,"4458":-0.0000020728,"4459":-0.000002072,"4460":-0.0000020712,"4461":-0.0000020704,"4462":-0.0000020697,"4463":-0.0000020689,"4464":-0.0000020681,"4465":-0.0000020674,"4466":-0.0000020666,"4467":-0.0000020659,"4468":-0.0000020652,"4469":-0.0000020644,"4470":-0.0000020637,"4471":-0.000002063,"4472":-0.0000020623,"4473":-0.0000020615,"4474":-0.0000020608,"4475":-0.0000020601,"4476":-0.0000020594,"4477":-0.0000020588,"4478":-0.0000020581,"4479":-0.0000020574,"4480":-0.0000020567,"4481":-0.000002056,"4482":-0.0000020554,"4483":-0.0000020547,"4484":-0.000002054,"4485":-0.0000020534,"4486":-0.0000020527,"4487":-0.0000020521,"4488":-0.0000020515,"4489":-0.0000020508,"4490":-0.0000020502,"4491":-0.0000020496,"4492":-0.0000020489,"4493":-0.0000020483,"4494":-0.0000020477,"4495":-0.0000020471,"4496":-0.0000020465,"4497":-0.0000020459,"4498":-0.0000020453,"4499":-0.0000020447,"4500":0.0,"4501":4.4863334228,"4502":8.6708954831,"4503":-3.1420301032,"4504":12.559072217,"4505":6.1901235016,"4506":13.705273333,"4507":13.211132976,"4508":17.0949982895,"4509":18.658517271,"4510":21.3869533346,"4511":23.5311809364,"4512":25.9389749734,"4513":28.2141703056,"4514":30.5346682931,"4515":32.8245897213,"4516":35.1142845557,"4517":37.3929774896,"4518":39.663826318,"4519":41.9265480126,"4520":44.1807630453,"4521":46.4270468803,"4522":48.6650558236,"4523":50.8951126567,"4524":53.1171112062,"4525":55.3312005967,"4526":57.5373839776,"4527":59.7357434972,"4528":61.9263185565,"4529":64.1091697937,"4530":66.2843463419,"4531":68.4519021971,"4532":70.6118882433,"4533":72.7643560607,"4534":74.909356168,"4535":77.0469388248,"4536":79.1771536913,"4537":81.3000499796,"4538":83.415676403,"4539":85.5240812028,"4540":87.6253121482,"4541":89.7194165433,"4542":91.8064412339,"4543":93.8864326121,"4544":95.9594366229,"4545":98.0254987699,"4546":100.0846641202,"4547":102.1369773106,"4548":104.1824825526,"4549":106.221223638,"4550":108.2532439438,"4551":110.2785864377,"4552":112.2972936831,"4553":114.3094078439,"4554":116.3149706897,"4555":118.3140236005,"4556":120.3066075713,"4557":122.2927632174,"4558":124.2725307784,"4559":126.2459501231,"4560":128.2130607538,"4561":130.173901811,"4562":132.1285120774,"4563":134.0769299827,"4564":136.0191936074,"4565":137.9553406869,"4566":139.8854086161,"4567":141.8094344531,"4568":143.7274549232,"4569":145.6395064228,"4570":147.5456250237,"4571":149.4458464762,"4572":151.3402062134,"4573":153.2287393548,"4574":155.1114807098,"4575":156.9884647815,"4576":158.8597257701,"4577":160.7252975764,"4578":162.5852138055,"4579":164.4395077696,"4580":166.2882124923,"4581":168.1313607108,"4582":169.9689848801,"4583":171.8011171757,"4584":173.6277894968,"4585":175.4490334697,"4586":738.4653086254,"4587":1985.2198728104,"4588":3599.2063598716,"4589":5355.7951122677,"4590":7119.8510806787,"4591":8828.7810323793,"4592":10459.8668018829,"4593":12003.8373216072,"4594":13461.9883063178,"4595":14835.9290661844,"4596":16129.236168748,"4597":17343.4244025262,"4598":18485.6201276032,"4599":19562.5939462694,"4600":20573.9871869768,"4601":21525.3143242595,"4602":22418.5066717218,"4603":23257.7921592382,"4604":24045.8418633484,"4605":24785.9586092918,"4606":25480.8161072798,"4607":26133.1480235532,"4608":26745.3913565313,"4609":27319.8843014039,"4610":27858.7808507674,"4611":28364.1075861496,"4612":28837.7503309577,"4613":29281.4737761509,"4614":29696.9248327471,"4615":30085.6426630553,"4616":30449.0649135019,"4617":30788.5348761235,"4618":31105.3075457594,"4619":31400.5554979694,"4620":31675.3742411472,"4621":31930.7872353875,"4622":32167.7505399131,"4623":32387.1571468645,"4624":32589.8410140454,"4625":32776.5808271745,"4626":32948.1035104625,"4627":33105.0875077089,"4628":33248.1658516213,"4629":33377.9290391623,"4630":33494.9277284091,"4631":33599.675271681,"4632":33692.6500982233,"4633":33774.2979588536,"4634":33845.0340439117,"4635":33905.2449850241,"4636":33955.2907503458,"4637":33995.506442215,"4638":34026.2040054454,"4639":34047.6738538445,"4640":34060.1864219388,"4641":34063.993648316,"4642":34059.3303964608,"4643":34046.4158184451,"4644":34025.45466634,"4645":33996.6385557454,"4646":33960.1471853653,"4647":33916.1495161086,"4648":33864.804912745,"4649":33806.2642507084,"4650":33740.6709901991,"4651":33668.1622193027,"4652":33588.8696674066,"4653":33502.9206897635,"4654":33410.4392236189,"4655":33311.5467158891,"4656":33206.3630219567,"4657":33095.0072747276,"4658":32977.5987226937,"4659":32854.2575353486,"4660":32725.1055739337,"4661":32590.2671251423,"4662":32449.8695950894,"4663":32304.0441605733,"4664":32152.926374413,"4665":31996.656721454,"4666":31835.3811217011,"4667":31669.2513769623,"4668":31498.425557385,"4669":31323.0683243383,"4670":31143.3511862434,"4671":30959.4526841931,"4672":30771.5585045189,"4673":30579.8615158747,"4674":30384.5617289009,"4675":30185.8661771097,"4676":29983.9887182915,"4677":29779.1497564687,"4678":29571.5758852134,"4679":29361.4994539859,"4680":29149.1580600266,"4681":28934.7939692301,"4682":28718.6534703295,"4683":28500.9861676024,"4684":28282.0442181607,"4685":28062.0815206788,"4686":27841.3528631372,"4687":27620.1130377911,"4688":27398.6159320896,"4689":27177.1136046772,"4690":26955.855355869,"4691":26735.086802114,"4692":26515.0489639343,"4693":26295.9773766479,"4694":26078.101232858,"4695":25861.6425652214,"4696":25646.8154774056,"4697":25433.8254304221,"4698":25222.868590693,"4699":25014.1312452966,"4700":24807.7892888495,"4701":24604.0077854627,"4702":24402.9406081493,"4703":24204.7301570146,"4704":24009.507156516,"4705":23817.3905310902,"4706":23628.4873574952,"4707":23442.8928913502,"4708":23260.6906645656,"4709":23081.9526496656,"4710":22906.7394864149,"4711":22735.1007656752,"4712":22567.0753650443,"4713":22402.6918305594,"4714":22241.9687985806,"4715":22084.9154519063,"4716":21931.5320041966,"4717":21781.8102068865,"4718":21635.7338729589,"4719":21493.2794121864,"4720":21354.416372758,"4721":21219.1079845412,"4722":21087.3116996121,"4723":20958.9797260759,"4724":20834.0595516111,"4725":20712.4944535705,"4726":20594.2239928612,"4727":20479.1844891635,"4728":20367.3094753002,"4729":20258.530128639,"4730":20152.7756771207,"4731":20049.9737764828,"4732":19950.0508527132,"4733":19852.9323981183,"4734":19758.5431973645,"4735":19666.8074351263,"4736":19577.6485886269,"4737":19490.9889239635,"4738":19406.7483123864,"4739":19324.8421542033,"4740":19245.1791926502,"4741":19167.6630687576,"4742":18965.2595805738,"4743":17949.233341298,"4744":16147.78642666,"4745":14013.1476405589,"4746":11819.8846396598,"4747":9605.237412861,"4748":7508.1938004528,"4749":5490.7338814074,"4750":3599.6964338407,"4751":1807.1352412835,"4752":138.0229339708,"4753":-1336.7784369368,"4754":-2504.7039275435,"4755":-3531.6899894015,"4756":-4249.8678283973,"4757":-4600.2351189664,"4758":-4774.4608638423,"4759":-4907.8555904607,"4760":-4983.0502087131,"4761":-5001.1950097193,"4762":-5002.075137417,"4763":-4997.0829760229,"4764":-4978.0142506029,"4765":-4949.2897923129,"4766":-4917.755037206,"4767":-4882.6975506437,"4768":-4843.3742375957,"4769":-4801.6201217713,"4770":-4758.1350569692,"4771":-4712.6634221308,"4772":-4665.5437361233,"4773":-4617.2000566269,"4774":-4567.7164550917,"4775":-4517.2068240844,"4776":-4465.8690540762,"4777":-4413.8305433281,"4778":-4361.1896190259,"4779":-4308.0639407234,"4780":-4254.559217044,"4781":-4200.7651187262,"4782":-4146.7700667198,"4783":-4092.6578626386,"4784":-4038.5044395446,"4785":-3984.3810763339,"4786":-3930.3547246931,"4787":-3876.4871621825,"4788":-3822.8356383142,"4789":-3769.4532459725,"4790":-3716.3888716732,"4791":-3663.6874187243,"4792":-3611.3900412918,"4793":-3559.5342748795,"4794":-3508.1542072577,"4795":-3457.2806606285,"4796":-3406.9413511039,"4797":-3357.1610511287,"4798":-3307.9617527754,"4799":-3259.3628240495,"4800":-3211.3811620893,"4801":-3164.0313431112,"4802":-3117.3257673637,"4803":-3071.2747994811,"4804":-3025.8869040953,"4805":-2981.1687762842,"4806":-2937.1254668198,"4807":-2893.7605021411,"4808":-2851.0759989606,"4809":-2809.072773504,"4810":-2767.7504454008,"4811":-2727.1075362697,"4812":-2687.1415630724,"4813":-2647.8491263321,"4814":-2609.2259933329,"4815":-2571.2671764314,"4816":-2533.9670066274,"4817":-2497.3192025503,"4818":-2461.3169350278,"4819":-2425.9528874097,"4820":-2391.2193118227,"4821":-2357.1080815386,"4822":-2323.6107396345,"4823":-2290.718544129,"4824":-2258.4225097725,"4825":-2226.7134466695,"4826":-2195.5819959076,"4827":-2165.0186623635,"4828":-2135.0138448504,"4829":-2105.5578637689,"4830":-2076.6409864143,"4831":-2048.2534500905,"4832":-2020.3854831726,"4833":-1993.0273242545,"4834":-1966.1692395115,"4835":-1939.801538402,"4836":-1913.9145878244,"4837":-1888.498824842,"4838":-1863.5447680788,"4839":-1839.0430278853,"4840":-1814.9843153691,"4841":-1791.3594503744,"4842":-1768.1593684946,"4843":-1745.3751271941,"4844":-1722.9979111092,"4845":-1701.0190365973,"4846":-1679.4299555949,"4847":-1658.2222588425,"4848":-1637.3876785312,"4849":-1616.9180904195,"4850":-1596.8055154682,"4851":-1577.0421210352,"4852":-1557.6202216711,"4853":-1538.5322795505,"4854":-1519.7709045761,"4855":-1501.3288541839,"4856":-1483.1990328802,"4857":-1465.3744915369,"4858":-1447.8484264701,"4859":-1430.6141783232,"4860":-1413.665230777,"4861":-1396.9952091058,"4862":-1380.5978785962,"4863":-1364.4671428452,"4864":-1348.5970419533,"4865":-1332.9817506252,"4866":-1317.6155761907,"4867":-1302.4929565585,"4868":-1287.6084581108,"4869":-1272.9567735515,"4870":-1258.532719714,"4871":-1244.331235338,"4872":-1230.3473788228,"4873":-1216.5763259621,"4874":-1203.0133676683,"4875":-1189.6539076907,"4876":-1176.4934603322,"4877":-1163.5276481706,"4878":-1150.7521997862,"4879":-1138.1629475019,"4880":-1125.7558251368,"4881":-1113.5268657781,"4882":-1101.4721995729,"4883":-1089.588051542,"4884":-1077.8707394195,"4885":-1066.3166715175,"4886":-1054.9223446198,"4887":-1043.6843419051,"4888":-1032.5993309006,"4889":-1021.6640614675,"4890":-1010.8753638192,"4891":-1000.2301465737,"4892":-989.725394839,"4893":-979.358168334,"4894":-969.1255995439,"4895":-959.0248919114,"4896":-949.0533180631,"4897":-939.2082180716,"4898":-929.4869977531,"4899":-919.887127001,"4900":-910.4061381547,"4901":-901.0416244042,"4902":-891.7912382291,"4903":-882.6526898733,"4904":-873.6237458538,"4905":-864.7022275041,"4906":-855.8860095512,"4907":-847.1730187261,"4908":-838.5612324079,"4909":-830.0486772994,"4910":-821.6334281362,"4911":-813.313606426,"4912":-805.0873792204,"4913":-796.9529579162,"4914":-788.9085970875,"4915":-780.9525933468,"4916":-773.0832842353,"4917":-765.2990471421,"4918":-757.59829825,"4919":-749.9794915102,"4920":-742.4411176424,"4921":-734.9817031617,"4922":-727.5998094314,"4923":-720.2940317399,"4924":-713.0629984031,"4925":-705.9053698901,"4926":-698.8198379726,"4927":-691.8051248971,"4928":-684.8599825793,"4929":-677.9831918201,"4930":-671.1735615437,"4931":-664.4299280552,"4932":-657.7511543195,"4933":-651.1361292592,"4934":-644.5837670719,"4935":-638.0930065668,"4936":-631.6628105186,"4937":-625.2921650397,"4938":-618.9800789699,"4939":-612.7255832825,"4940":-606.5277305073,"4941":-600.3855941693,"4942":-594.2982682425,"4943":-588.2648666204,"4944":-582.2845225989,"4945":-576.356388376,"4946":-570.4796345635,"4947":-564.6534497133,"4948":-558.8770398564,"4949":-553.1496280554,"4950":-547.4704539685,"4951":-541.8387734263,"4952":-536.2538580204,"4953":-530.7149947031,"4954":-525.2214853982,"4955":-519.7726466232,"4956":-514.3678091214,"4957":-509.0063175044,"4958":-503.6875299048,"4959":-498.4108176381,"4960":-493.1755648742,"4961":-487.981168318,"4962":-482.827036899,"4963":-477.7125914689,"4964":-472.6372645084,"4965":-467.6004998413,"4966":-462.601752357,"4967":-457.6404877404,"4968":-452.7161822092,"4969":-447.8283222586,"4970":-442.9764044128,"4971":-438.1599349833,"4972":-433.3784298341,"4973":-428.6314141529,"4974":-423.9184222285,"4975":-419.2389972351,"4976":-414.592691021,"4977":-409.9790639043,"4978":-405.3976844736,"4979":-400.848129394,"4980":-396.3299832183,"4981":-391.8428382038,"4982":-387.3862941332,"4983":-382.9599581408,"4984":-378.5634445433,"4985":-374.1963746752,"4986":-369.8583767279,"4987":-365.5490855939,"4988":-361.268142715,"4989":-357.0151959336,"4990":-352.7898993493,"4991":-348.591913178,"4992":-344.4209036156,"4993":-340.2765427048,"4994":-336.1585082052,"4995":-332.0664834674,"4996":-328.0001573097,"4997":-323.9592238983,"4998":-319.9433826307,"4999":-315.9523380219,"5000":0.0,"5001":-0.0000029953,"5002":-0.0000014967,"5003":-0.0000022475,"5004":-0.0000018706,"5005":-0.0000020588,"5006":-0.0000019641,"5007":-0.000002011,"5008":-0.000001987,"5009":-0.0000019984,"5010":-0.0000019922,"5011":-0.0000019948,"5012":-0.000001993,"5013":-0.0000019934,"5014":-0.0000019926,"5015":-0.0000019925,"5016":-0.000001992,"5017":-0.0000019917,"5018":-0.0000019914,"5019":-0.0000019911,"5020":-0.0000019907,"5021":-0.0000019904,"5022":-0.00000199,"5023":-0.0000019897,"5024":-0.0000019894,"5025":-0.000001989,"5026":-0.0000019887,"5027":-0.0000019884,"5028":-0.0000019881,"5029":-0.0000019877,"5030":-0.0000019874,"5031":-0.0000019871,"5032":-0.0000019868,"5033":-0.0000019864,"5034":-0.0000019861,"5035":-0.0000019858,"5036":-0.0000019855,"5037":-0.0000019852,"5038":-0.0000019848,"5039":-0.0000019845,"5040":-0.0000019842,"5041":-0.0000019839,"5042":-0.0000019836,"5043":-0.0000019833,"5044":-0.000001983,"5045":-0.0000019826,"5046":-0.0000019823,"5047":-0.000001982,"5048":-0.0000019817,"5049":-0.0000019814,"5050":-0.0000019811,"5051":-0.0000019808,"5052":-0.0000019805,"5053":-0.0000019802,"5054":-0.0000019799,"5055":-0.0000019796,"5056":-0.0000019793,"5057":-0.000001979,"5058":-0.0000019787,"5059":-0.0000019784,"5060":-0.0000019781,"5061":-0.0000019778,"5062":-0.0000019775,"5063":-0.0000019772,"5064":-0.000001977,"5065":-0.0000019767,"5066":-0.0000019764,"5067":-0.0000019761,"5068":-0.0000019758,"5069":-0.0000019755,"5070":-0.0000019752,"5071":-0.0000019749,"5072":-0.0000019747,"5073":-0.0000019744,"5074":-0.0000019741,"5075":-0.0000019738,"5076":-0.0000019735,"5077":-0.0000019733,"5078":-0.000001973,"5079":-0.0000019727,"5080":-0.0000019724,"5081":-0.0000019721,"5082":-0.0000019719,"5083":-0.0000019716,"5084":-0.0000019713,"5085":-0.000001971,"5086":-0.0000018867,"5087":-0.0000016999,"5088":-0.0000014581,"5089":-0.0000011951,"5090":-0.0000009313,"5091":-0.0000006777,"5092":-0.0000004439,"5093":-0.000000242,"5094":-0.0000000121,"5095":0.0000010123,"5096":0.0000074544,"5097":0.0000331126,"5098":0.0000858861,"5099":0.0001533054,"5100":0.0002265053,"5101":0.0003008609,"5102":0.000374097,"5103":0.0004450863,"5104":0.0005132386,"5105":0.0005782893,"5106":0.0006401274,"5107":0.0006987482,"5108":0.0007541997,"5109":0.0008065664,"5110":0.0008559509,"5111":0.0009024673,"5112":0.000946234,"5113":0.0009873708,"5114":0.0010259963,"5115":0.001062226,"5116":0.0010961718,"5117":0.0011279413,"5118":0.001157637,"5119":0.0011853566,"5120":0.001211193,"5121":0.0012352339,"5122":0.0012575622,"5123":0.0012782562,"5124":0.0012973894,"5125":0.0013150313,"5126":0.0013312468,"5127":0.0013460971,"5128":0.0013596395,"5129":0.0013719278,"5130":0.0013830122,"5131":0.0013929398,"5132":0.0014017547,"5133":0.001409498,"5134":0.0014162082,"5135":0.0014219213,"5136":0.0014266707,"5137":0.0014304878,"5138":0.0014334018,"5139":0.00143544,"5140":0.001436628,"5141":0.0014369894,"5142":0.0014365467,"5143":0.0014353206,"5144":0.0014333307,"5145":0.0014305953,"5146":0.0014271316,"5147":0.0014229561,"5148":0.0014180841,"5149":0.0014125303,"5150":0.0014063087,"5151":0.0013994329,"5152":0.0013919157,"5153":0.0013837698,"5154":0.0013750076,"5155":0.0013656411,"5156":0.0013556825,"5157":0.0013451437,"5158":0.0013340368,"5159":0.001322374,"5160":0.0013101677,"5161":0.0012974305,"5162":0.0012841755,"5163":0.0012704161,"5164":0.0012561661,"5165":0.0012414399,"5166":0.0012262524,"5167":0.0012106192,"5168":0.0011945563,"5169":0.0011780806,"5170":0.0011612097,"5171":0.0011439616,"5172":0.0011263553,"5173":0.0011084103,"5174":0.0010901471,"5175":0.0010715864,"5176":0.0010527501,"5177":0.0010336603,"5178":0.00101434,"5179":0.0009948125,"5180":0.0009751016,"5181":0.0009552318,"5182":0.0009352278,"5183":0.0009151143,"5184":0.0008949168,"5185":0.0008746604,"5186":0.0008543706,"5187":0.0008340725,"5188":0.0008137915,"5189":0.0007935523,"5190":0.0007733796,"5191":0.0007532976,"5192":0.0007333298,"5193":0.0007134994,"5194":0.0006938288,"5195":0.0006743394,"5196":0.0006550521,"5197":0.0006359866,"5198":0.0006171619,"5199":0.0005985956,"5200":0.0005803046,"5201":0.0005623044,"5202":0.0005446094,"5203":0.0005272329,"5204":0.0005101868,"5205":0.000493482,"5206":0.0004771281,"5207":0.0004611333,"5208":0.000445505,"5209":0.0004302489,"5210":0.00041537,"5211":0.0004008719,"5212":0.0003867572,"5213":0.0003730275,"5214":0.0003596832,"5215":0.0003467241,"5216":0.0003341487,"5217":0.0003219549,"5218":0.0003101397,"5219":0.0002986994,"5220":0.0002876296,"5221":0.0002769253,"5222":0.0002665809,"5223":0.0002565903,"5224":0.000246947,"5225":0.000237644,"5226":0.0002286739,"5227":0.0002200293,"5228":0.0002117021,"5229":0.0002036844,"5230":0.0001959678,"5231":0.0001885441,"5232":0.0001814047,"5233":0.0001745411,"5234":0.0001679449,"5235":0.0001616074,"5236":0.00015552,"5237":0.0001496743,"5238":0.0001440614,"5239":0.0001386724,"5240":0.0001334982,"5241":0.0001285294,"5242":0.0001158087,"5243":0.0000583052,"5244":0.0000008123,"5245":0.0000014237,"5246":-0.0000009589,"5247":-0.0000002139,"5248":-0.000001048,"5249":-0.0000010875,"5250":-0.0000015018,"5251":-0.0000017048,"5252":-0.0000019876,"5253":-0.0000021921,"5254":-0.0000023753,"5255":-0.0000025251,"5256":-0.0000026347,"5257":-0.0000026862,"5258":-0.0000027128,"5259":-0.0000027325,"5260":-0.0000027439,"5261":-0.0000027466,"5262":-0.0000027467,"5263":-0.000002746,"5264":-0.0000027431,"5265":-0.0000027388,"5266":-0.0000027341,"5267":-0.0000027288,"5268":-0.0000027229,"5269":-0.0000027167,"5270":-0.0000027102,"5271":-0.0000027034,"5272":-0.0000026963,"5273":-0.000002689,"5274":-0.0000026816,"5275":-0.0000026741,"5276":-0.0000026664,"5277":-0.0000026586,"5278":-0.0000026507,"5279":-0.0000026427,"5280":-0.0000026347,"5281":-0.0000026267,"5282":-0.0000026186,"5283":-0.0000026105,"5284":-0.0000026024,"5285":-0.0000025942,"5286":-0.0000025862,"5287":-0.0000025781,"5288":-0.00000257,"5289":-0.000002562,"5290":-0.0000025541,"5291":-0.0000025462,"5292":-0.0000025384,"5293":-0.0000025306,"5294":-0.0000025229,"5295":-0.0000025153,"5296":-0.0000025077,"5297":-0.0000025003,"5298":-0.0000024929,"5299":-0.0000024856,"5300":-0.0000024784,"5301":-0.0000024713,"5302":-0.0000024643,"5303":-0.0000024574,"5304":-0.0000024506,"5305":-0.000002444,"5306":-0.0000024374,"5307":-0.0000024309,"5308":-0.0000024245,"5309":-0.0000024182,"5310":-0.000002412,"5311":-0.0000024059,"5312":-0.0000023999,"5313":-0.000002394,"5314":-0.0000023882,"5315":-0.0000023825,"5316":-0.000002377,"5317":-0.0000023715,"5318":-0.0000023661,"5319":-0.0000023608,"5320":-0.0000023556,"5321":-0.0000023505,"5322":-0.0000023454,"5323":-0.0000023405,"5324":-0.0000023357,"5325":-0.0000023309,"5326":-0.0000023263,"5327":-0.0000023217,"5328":-0.0000023172,"5329":-0.0000023128,"5330":-0.0000023084,"5331":-0.0000023042,"5332":-0.0000023,"5333":-0.0000022959,"5334":-0.0000022919,"5335":-0.0000022879,"5336":-0.0000022841,"5337":-0.0000022803,"5338":-0.0000022765,"5339":-0.0000022728,"5340":-0.0000022692,"5341":-0.0000022657,"5342":-0.0000022622,"5343":-0.0000022588,"5344":-0.0000022555,"5345":-0.0000022522,"5346":-0.0000022489,"5347":-0.0000022458,"5348":-0.0000022426,"5349":-0.0000022396,"5350":-0.0000022366,"5351":-0.0000022336,"5352":-0.0000022307,"5353":-0.0000022278,"5354":-0.000002225,"5355":-0.0000022223,"5356":-0.0000022195,"5357":-0.0000022169,"5358":-0.0000022142,"5359":-0.0000022117,"5360":-0.0000022091,"5361":-0.0000022066,"5362":-0.0000022042,"5363":-0.0000022017,"5364":-0.0000021994,"5365":-0.000002197,"5366":-0.0000021947,"5367":-0.0000021925,"5368":-0.0000021902,"5369":-0.000002188,"5370":-0.0000021859,"5371":-0.0000021838,"5372":-0.0000021817,"5373":-0.0000021796,"5374":-0.0000021776,"5375":-0.0000021756,"5376":-0.0000021736,"5377":-0.0000021716,"5378":-0.0000021697,"5379":-0.0000021678,"5380":-0.000002166,"5381":-0.0000021642,"5382":-0.0000021623,"5383":-0.0000021606,"5384":-0.0000021588,"5385":-0.0000021571,"5386":-0.0000021554,"5387":-0.0000021537,"5388":-0.000002152,"5389":-0.0000021504,"5390":-0.0000021488,"5391":-0.0000021472,"5392":-0.0000021456,"5393":-0.0000021441,"5394":-0.0000021425,"5395":-0.000002141,"5396":-0.0000021395,"5397":-0.000002138,"5398":-0.0000021366,"5399":-0.0000021351,"5400":-0.0000021337,"5401":-0.0000021323,"5402":-0.0000021309,"5403":-0.0000021296,"5404":-0.0000021282,"5405":-0.0000021269,"5406":-0.0000021256,"5407":-0.0000021243,"5408":-0.000002123,"5409":-0.0000021217,"5410":-0.0000021204,"5411":-0.0000021192,"5412":-0.0000021179,"5413":-0.0000021167,"5414":-0.0000021155,"5415":-0.0000021143,"5416":-0.0000021132,"5417":-0.000002112,"5418":-0.0000021108,"5419":-0.0000021097,"5420":-0.0000021086,"5421":-0.0000021074,"5422":-0.0000021063,"5423":-0.0000021052,"5424":-0.0000021042,"5425":-0.0000021031,"5426":-0.000002102,"5427":-0.000002101,"5428":-0.0000020999,"5429":-0.0000020989,"5430":-0.0000020979,"5431":-0.0000020969,"5432":-0.0000020959,"5433":-0.0000020949,"5434":-0.0000020939,"5435":-0.0000020929,"5436":-0.000002092,"5437":-0.000002091,"5438":-0.0000020901,"5439":-0.0000020891,"5440":-0.0000020882,"5441":-0.0000020873,"5442":-0.0000020864,"5443":-0.0000020855,"5444":-0.0000020846,"5445":-0.0000020837,"5446":-0.0000020828,"5447":-0.0000020819,"5448":-0.0000020811,"5449":-0.0000020802,"5450":-0.0000020794,"5451":-0.0000020785,"5452":-0.0000020777,"5453":-0.0000020768,"5454":-0.000002076,"5455":-0.0000020752,"5456":-0.0000020744,"5457":-0.0000020736,"5458":-0.0000020728,"5459":-0.000002072,"5460":-0.0000020712,"5461":-0.0000020704,"5462":-0.0000020697,"5463":-0.0000020689,"5464":-0.0000020681,"5465":-0.0000020674,"5466":-0.0000020666,"5467":-0.0000020659,"5468":-0.0000020652,"5469":-0.0000020644,"5470":-0.0000020637,"5471":-0.000002063,"5472":-0.0000020623,"5473":-0.0000020615,"5474":-0.0000020608,"5475":-0.0000020601,"5476":-0.0000020594,"5477":-0.0000020588,"5478":-0.0000020581,"5479":-0.0000020574,"5480":-0.0000020567,"5481":-0.000002056,"5482":-0.0000020554,"5483":-0.0000020547,"5484":-0.000002054,"5485":-0.0000020534,"5486":-0.0000020527,"5487":-0.0000020521,"5488":-0.0000020515,"5489":-0.0000020508,"5490":-0.0000020502,"5491":-0.0000020496,"5492":-0.0000020489,"5493":-0.0000020483,"5494":-0.0000020477,"5495":-0.0000020471,"5496":-0.0000020465,"5497":-0.0000020459,"5498":-0.0000020453,"5499":-0.0000020447,"5500":0.0,"5501":19968.346714359,"5502":9984.1829867046,"5503":14976.2502878154,"5504":12480.23131083,"5505":13728.2430189446,"5506":13104.2436527696,"5507":13416.2482248818,"5508":13260.2513871902,"5509":13338.2550576317,"5510":13299.2584811137,"5511":13318.7620254538,"5512":13309.0154666116,"5513":13313.8939581389,"5514":13311.4598930258,"5515":13312.6820943598,"5516":13312.0761392271,"5517":13312.3842456757,"5518":13312.2353013411,"5519":13312.314864347,"5520":13312.2801548508,"5521":13312.3025633517,"5522":13312.2963945163,"5523":13312.3044962373,"5524":13312.3054446512,"5525":13312.3099518336,"5526":13312.3126618631,"5527":13312.3162528258,"5528":13312.3193857992,"5529":13312.322730365,"5530":13312.3259518513,"5531":13312.3292177117,"5532":13312.3324443362,"5533":13312.3356736452,"5534":13312.3388847927,"5535":13312.3420883149,"5536":13312.3452790557,"5537":13312.3484597042,"5538":13312.3516290256,"5539":13312.354787746,"5540":13312.3579356101,"5541":13312.3610728523,"5542":13312.3641994609,"5543":13312.3673155463,"5544":13312.370421157,"5545":13312.3735163713,"5546":13312.3766012517,"5547":13312.3796758675,"5548":13312.3827402837,"5549":13312.3857945665,"5550":13312.3888387807,"5551":13312.3918729908,"5552":13312.3948972604,"5553":13312.3979116527,"5554":13312.4009162303,"5555":13312.4039110552,"5556":13312.4068961889,"5557":13312.4098716921,"5558":13312.4128376252,"5559":13312.4157940478,"5560":13312.4187410192,"5561":13312.421678598,"5562":13312.4246068422,"5563":13312.4275258096,"5564":13312.430435557,"5565":13312.4333361411,"5566":13312.4362276179,"5567":13312.4391100429,"5568":13312.441983471,"5569":13312.4448479569,"5570":13312.4477035546,"5571":13312.4505503176,"5572":13312.453388299,"5573":13312.4562175515,"5574":13312.4590381271,"5575":13312.4618500776,"5576":13312.4646534542,"5577":13312.4674483077,"5578":13312.4702346884,"5579":13312.4730126463,"5580":13312.4757822308,"5581":13312.478543491,"5582":13312.4812964754,"5583":13312.4840412323,"5584":13312.4867778095,"5585":13312.4895062543,"5586":13313.3329723161,"5587":13315.2007476027,"5588":13317.618577733,"5589":13320.2493766487,"5590":13322.8873888833,"5591":13325.4225623863,"5592":13327.7605427887,"5593":13329.7797896419,"5594":13332.0788293132,"5595":13342.3233331935,"5596":13406.7438477148,"5597":13663.3261958787,"5598":14191.0612599623,"5599":14865.2536794736,"5600":15597.2527429996,"5601":16340.8093311289,"5602":17073.169958077,"5603":17783.0627108314,"5604":18464.5858323125,"5605":19115.0933512677,"5606":19733.4737528092,"5607":20319.6817485016,"5608":20874.1968192532,"5609":21397.8635045074,"5610":21891.7091351059,"5611":22356.8729577899,"5612":22794.5401267688,"5613":23205.908443104,"5614":23592.1627338005,"5615":23954.4597990253,"5616":24293.9183047804,"5617":24611.6126802623,"5618":24908.569628666,"5619":25185.7663960444,"5620":25444.1303233588,"5621":25684.5392277665,"5622":25907.8223884334,"5623":26114.7619191518,"5624":26306.0944067499,"5625":26482.512710721,"5626":26644.66785837,"5627":26793.1709841524,"5628":26928.5952786519,"5629":27051.4779220346,"5630":27162.3219848673,"5631":27261.5982846577,"5632":27349.7471906578,"5633":27427.1803725092,"5634":27494.2824905575,"5635":27551.4128272956,"5636":27598.9068605926,"5637":27637.0777802038,"5638":27666.2179496469,"5639":27686.6003159181,"5640":27698.4797697526,"5641":27702.0944592517,"5642":27697.6670597224,"5643":27685.40600252,"5644":27665.5066655799,"5645":27638.1525281559,"5646":27603.5162920999,"5647":27561.7609717684,"5648":27513.0409543986,"5649":27457.5030325005,"5650":27395.2874095165,"5651":27326.5286796722,"5652":27251.35678261,"5653":27169.8979330403,"5654":27082.2755252984,"5655":26988.6110123161,"5656":26889.0247581581,"5657":26783.636862906,"5658":26672.5679583017,"5659":26555.939972221,"5660":26433.8768597025,"5661":26306.5052979451,"5662":26173.9553423975,"5663":26036.3610408062,"5664":25893.8610018795,"5665":25746.5989150499,"5666":25594.7240177182,"5667":25438.3915062971,"5668":25277.7628874067,"5669":25113.0062656542,"5670":24944.2965646079,"5671":24771.815677829,"5672":24595.7525471619,"5673":24416.3031659133,"5674":24233.6705050576,"5675":24048.0643612035,"5676":23859.7011257215,"5677":23668.8034751806,"5678":23475.5999840319,"5679":23280.3246613346,"5680":23083.2164141964,"5681":22884.5184415013,"5682":22684.4775624017,"5683":22483.3434849302,"5684":22281.3680209375,"5685":22078.804254348,"5686":21875.9056704404,"5687":21672.9252544819,"5688":21470.1145685504,"5689":21267.7228157689,"5690":21065.995901421,"5691":20865.1755005247,"5692":20665.4981413909,"5693":20467.1943145006,"5694":20270.4876156866,"5695":20075.5939321127,"5696":19882.7206789311,"5697":19692.0660937422,"5698":19503.8185951512,"5699":19318.1562107683,"5700":19135.246079014,"5701":18955.2440280434,"5702":18778.2942340405,"5703":18604.5289600731,"5704":18434.0683756493,"5705":18267.0204561199,"5706":18103.4809601198,"5707":17943.533482373,"5708":17787.2495783961,"5709":17634.6889569481,"5710":17485.8997354849,"5711":17340.9187533976,"5712":17199.7719374438,"5713":17062.4747135178,"5714":16929.0324587465,"5715":16799.4409878395,"5716":16673.6870676525,"5717":16551.7489540392,"5718":16433.5969452564,"5719":16319.1939464366,"5720":16208.4960399513,"5721":16101.4530568326,"5722":15998.0091448017,"5723":15898.103328854,"5724":15801.6700607602,"5725":15708.6397542579,"5726":15618.9393031024,"5727":15532.4925795128,"5728":15449.2209108465,"5729":15369.0435325098,"5730":15291.8780150363,"5731":15217.640662708,"5732":15146.2468795444,"5733":15077.6114949503,"5734":15011.6490337747,"5735":14948.273900169,"5736":14887.4004151081,"5737":14828.9425974337,"5738":14772.8135227539,"5739":14718.924161596,"5740":14667.1822580029,"5741":14617.4937166271,"5742":14490.2873392403,"5743":13915.2521754713,"5744":13340.3234123997,"5745":13346.4374435707,"5746":13322.6109699507,"5747":13330.061424776,"5748":13321.7204703461,"5749":13321.3254195457,"5750":13317.1824129815,"5751":13315.1524269396,"5752":13312.3242076826,"5753":13310.2786170924,"5754":13308.4469931709,"5755":13306.9493991511,"5756":13305.8529964822,"5757":13305.3383421065,"5758":13305.0722095455,"5759":13304.874927369,"5760":13304.7609962036,"5761":13304.7344530083,"5762":13304.7328144516,"5763":13304.7404533517,"5764":13304.7689407268,"5765":13304.8120136241,"5766":13304.8592367014,"5767":13304.9117672801,"5768":13304.9706736093,"5769":13305.0332290908,"5770":13305.0983740041,"5771":13305.1664969272,"5772":13305.2370879031,"5773":13305.3095130458,"5774":13305.3836457024,"5775":13305.4593155989,"5776":13305.5362260943,"5777":13305.6141864177,"5778":13305.6930492185,"5779":13305.7726382498,"5780":13305.8527951354,"5781":13305.9333855428,"5782":13306.0142770033,"5783":13306.0953439728,"5784":13306.1764726932,"5785":13306.25755638,"5786":13306.3384947309,"5787":13306.4191951952,"5788":13306.499572006,"5789":13306.5795456232,"5790":13306.6590428086,"5791":13306.7379962914,"5792":13306.8163444175,"5793":13306.8940309537,"5794":13306.9710048323,"5795":13307.0472198777,"5796":13307.1226345676,"5797":13307.1972117897,"5798":13307.2709185972,"5799":13307.3437259743,"5800":13307.4156086068,"5801":13307.4865446579,"5802":13307.5565155503,"5803":13307.6255057564,"5804":13307.6935025952,"5805":13307.7604960367,"5806":13307.826478514,"5807":13307.8914447442,"5808":13307.9553915561,"5809":13308.0183177269,"5810":13308.0802238265,"5811":13308.1411120698,"5812":13308.2009861765,"5813":13308.2598512395,"5814":13308.3177136001,"5815":13308.3745807302,"5816":13308.4304611229,"5817":13308.4853641884,"5818":13308.5393001577,"5819":13308.592279992,"5820":13308.6443152987,"5821":13308.6954182526,"5822":13308.7456015233,"5823":13308.7948782075,"5824":13308.8432617661,"5825":13308.8907659668,"5826":13308.9374048304,"5827":13308.9831925819,"5828":13309.028143605,"5829":13309.0722724011,"5830":13309.115593551,"5831":13309.1581216804,"5832":13309.1998714285,"5833":13309.2408574191,"5834":13309.2810942348,"5835":13309.3205963932,"5836":13309.3593783259,"5837":13309.3974543594,"5838":13309.4348386981,"5839":13309.4715454089,"5840":13309.5075884076,"5841":13309.5429814474,"5842":13309.5777381078,"5843":13309.611871786,"5844":13309.6453956885,"5845":13309.6783228245,"5846":13309.7106660001,"5847":13309.7424378135,"5848":13309.7736506508,"5849":13309.8043166832,"5850":13309.8344478644,"5851":13309.8640559286,"5852":13309.8931523897,"5853":13309.9217485402,"5854":13309.9498554515,"5855":13309.9774839739,"5856":13310.0046447373,"5857":13310.0313481524,"5858":13310.057604412,"5859":13310.0834234926,"5860":13310.1088151566,"5861":13310.1337889541,"5862":13310.1583542254,"5863":13310.1825201039,"5864":13310.2062955181,"5865":13310.2296891952,"5866":13310.2527096634,"5867":13310.2753652555,"5868":13310.2976641117,"5869":13310.3196141831,"5870":13310.3412232346,"5871":13310.3624988488,"5872":13310.3834484287,"5873":13310.4040792017,"5874":13310.4243982225,"5875":13310.4444123769,"5876":13310.4641283851,"5877":13310.483552805,"5878":13310.5026920358,"5879":13310.5215523211,"5880":13310.5401397526,"5881":13310.5584602732,"5882":13310.5765196806,"5883":13310.59432363,"5884":13310.611877638,"5885":13310.6291870854,"5886":13310.6462572205,"5887":13310.663093162,"5888":13310.6796999026,"5889":13310.6960823112,"5890":13310.7122451367,"5891":13310.7281930102,"5892":13310.7439304486,"5893":13310.7594618567,"5894":13310.7747915305,"5895":13310.7899236595,"5896":13310.8048623296,"5897":13310.8196115259,"5898":13310.8341751346,"5899":13310.8485569463,"5900":13310.8627606578,"5901":13310.8767898748,"5902":13310.8906481143,"5903":13310.9043388064,"5904":13310.9178652974,"5905":13310.931230851,"5906":13310.9444386513,"5907":13310.9574918042,"5908":13310.97039334,"5909":13310.9831462148,"5910":13310.9957533129,"5911":13311.0082174486,"5912":13311.0205413679,"5913":13311.0327277503,"5914":13311.0447792106,"5915":13311.0566983008,"5916":13311.0684875115,"5917":13311.0801492735,"5918":13311.0916859596,"5919":13311.1030998859,"5920":13311.1143933136,"5921":13311.1255684501,"5922":13311.1366274507,"5923":13311.1475724198,"5924":13311.1584054124,"5925":13311.1691284353,"5926":13311.1797434483,"5927":13311.1902523658,"5928":13311.2006570574,"5929":13311.2109593497,"5930":13311.2211610271,"5931":13311.2312638329,"5932":13311.2412694706,"5933":13311.2511796047,"5934":13311.2609958619,"5935":13311.270719832,"5936":13311.2803530688,"5937":13311.2898970914,"5938":13311.2993533845,"5939":13311.3087233999,"5940":13311.3180085571,"5941":13311.327210244,"5942":13311.336329818,"5943":13311.3453686065,"5944":13311.354327908,"5945":13311.3632089926,"5946":13311.3720131029,"5947":13311.3807414545,"5948":13311.3893952368,"5949":13311.3979756138,"5950":13311.4064837246,"5951":13311.4149206841,"5952":13311.4232875835,"5953":13311.431585491,"5954":13311.4398154525,"5955":13311.4479784919,"5956":13311.4560756117,"5957":13311.464107794,"5958":13311.4720760003,"5959":13311.4799811723,"5960":13311.4878242328,"5961":13311.4956060856,"5962":13311.503327616,"5963":13311.5109896918,"5964":13311.5185931632,"5965":13311.5261388635,"5966":13311.5336276091,"5967":13311.5410602007,"5968":13311.5484374229,"5969":13311.555760045,"5970":13311.5630288213,"5971":13311.5702444914,"5972":13311.5774077806,"5973":13311.5845194002,"5974":13311.5915800479,"5975":13311.598590408,"5976":13311.6055511521,"5977":13311.6124629388,"5978":13311.6193264143,"5979":13311.626142213,"5980":13311.6329109571,"5981":13311.6396332576,"5982":13311.646309714,"5983":13311.6529409148,"5984":13311.659527438,"5985":13311.6660698507,"5986":13311.67256871,"5987":13311.6790245629,"5988":13311.6854379466,"5989":13311.6918093885,"5990":13311.6981394069,"5991":13311.7044285109,"5992":13311.7106772005,"5993":13311.7168859671,"5994":13311.7230552934,"5995":13311.7291856538,"5996":13311.7352775144,"5997":13311.7413313335,"5998":13311.7473475615,"5999":13311.7533266408,"6000":0.0,"6001":0.0000004689,"6002":0.0000024375,"6003":0.000005093,"6004":0.0000075997,"6005":0.0000100617,"6006":0.0000125323,"6007":0.000014992,"6008":0.0000174436,"6009":0.000019887,"6010":0.0000223222,"6011":0.0000247494,"6012":0.0000271686,"6013":0.0000295798,"6014":0.0000319831,"6015":0.0000343786,"6016":0.0000367662,"6017":0.0000391461,"6018":0.0000415183,"6019":0.0000438829,"6020":0.0000462399,"6021":0.0000485893,"6022":0.0000509312,"6023":0.0000532657,"6024":0.0000555928,"6025":0.0000579125,"6026":0.000060225,"6027":0.0000625302,"6028":0.0000648282,"6029":0.000067119,"6030":0.0000694028,"6031":0.0000716794,"6032":0.0000739491,"6033":0.0000762117,"6034":0.0000784675,"6035":0.0000807163,"6036":0.0000829583,"6037":0.0000851935,"6038":0.000087422,"6039":0.0000896437,"6040":0.0000918587,"6041":0.0000940672,"6042":0.000096269,"6043":0.0000984643,"6044":0.000100653,"6045":0.0001028353,"6046":0.0001050112,"6047":0.0001071807,"6048":0.0001093438,"6049":0.0001115006,"6050":0.0001136512,"6051":0.0001157955,"6052":0.0001179336,"6053":0.0001200655,"6054":0.0001221913,"6055":0.0001243111,"6056":0.0001264247,"6057":0.0001285324,"6058":0.0001306341,"6059":0.0001327298,"6060":0.0001348196,"6061":0.0001369035,"6062":0.0001389816,"6063":0.0001410539,"6064":0.0001431204,"6065":0.0001451812,"6066":0.0001472363,"6067":0.0001492856,"6068":0.0001513294,"6069":0.0001533675,"6070":0.0001554001,"6071":0.0001574271,"6072":0.0001594486,"6073":0.0001614646,"6074":0.0001634751,"6075":0.0001654802,"6076":0.00016748,"6077":0.0001694743,"6078":0.0001714634,"6079":0.0001734471,"6080":0.0001754256,"6081":0.0001773988,"6082":0.0001793668,"6083":0.0001813296,"6084":0.0001832873,"6085":0.0001852398,"6086":0.0001865408,"6087":0.0001869463,"6088":0.0001869591,"6089":0.0001868172,"6090":0.0001865116,"6091":0.0001860358,"6092":0.0001853944,"6093":0.0001845959,"6094":0.0001836481,"6095":0.0001825309,"6096":0.0001810474,"6097":0.0001784067,"6098":0.0001731637,"6099":0.0001640396,"6100":0.0001503729,"6101":0.000131936,"6102":0.0001087186,"6103":0.000080818,"6104":0.0000483843,"6105":0.0000115931,"6106":-0.000029369,"6107":-0.000074313,"6108":-0.0001230521,"6109":-0.000175404,"6110":-0.0002311928,"6111":-0.0002902496,"6112":-0.0003524129,"6113":-0.0004175285,"6114":-0.0004854496,"6115":-0.0005560366,"6116":-0.0006291565,"6117":-0.000704683,"6118":-0.0007824958,"6119":-0.0008624804,"6120":-0.0009445278,"6121":-0.0010285342,"6122":-0.0011144004,"6123":-0.0012020319,"6124":-0.0012913381,"6125":-0.0013822323,"6126":-0.0014746316,"6127":-0.0015684561,"6128":-0.0016636293,"6129":-0.0017600772,"6130":-0.0018577285,"6131":-0.0019565145,"6132":-0.0020563685,"6133":-0.0021572256,"6134":-0.0022590231,"6135":-0.0023616996,"6136":-0.0024651955,"6137":-0.0025694523,"6138":-0.0026744126,"6139":-0.0027800205,"6140":-0.0028862204,"6141":-0.0029929581,"6142":-0.0031001798,"6143":-0.0032078323,"6144":-0.003315863,"6145":-0.0034242198,"6146":-0.0035328507,"6147":-0.0036417042,"6148":-0.0037507291,"6149":-0.003859874,"6150":-0.0039690879,"6151":-0.0040783198,"6152":-0.0041875189,"6153":-0.0042966341,"6154":-0.0044056145,"6155":-0.0045144091,"6156":-0.0046229671,"6157":-0.0047312374,"6158":-0.004839169,"6159":-0.0049467111,"6160":-0.0050538127,"6161":-0.0051604229,"6162":-0.0052664912,"6163":-0.005371967,"6164":-0.0054767999,"6165":-0.0055809402,"6166":-0.0056843381,"6167":-0.0057869445,"6168":-0.0058887107,"6169":-0.0059895889,"6170":-0.0060895316,"6171":-0.0061884924,"6172":-0.0062864258,"6173":-0.0063832871,"6174":-0.0064790331,"6175":-0.0065736214,"6176":-0.0066670112,"6177":-0.0067591632,"6178":-0.0068500396,"6179":-0.0069396041,"6180":-0.0070278224,"6181":-0.0071146619,"6182":-0.0072000922,"6183":-0.0072840847,"6184":-0.0073666131,"6185":-0.0074476532,"6186":-0.0075271832,"6187":-0.0076051834,"6188":-0.0076816369,"6189":-0.0077565288,"6190":-0.0078298469,"6191":-0.0079015813,"6192":-0.0079717247,"6193":-0.0080402722,"6194":-0.0081072214,"6195":-0.0081725723,"6196":-0.0082363272,"6197":-0.0082984908,"6198":-0.00835907,"6199":-0.0084180742,"6200":-0.0084755144,"6201":-0.0085314041,"6202":-0.0085857585,"6203":-0.0086385948,"6204":-0.0086899317,"6205":-0.0087397899,"6206":-0.0087881913,"6207":-0.0088351593,"6208":-0.0088807187,"6209":-0.0089248952,"6210":-0.0089677159,"6211":-0.0090092085,"6212":-0.0090494017,"6213":-0.0090883249,"6214":-0.0091260079,"6215":-0.0091624812,"6216":-0.0091977756,"6217":-0.0092319221,"6218":-0.0092649518,"6219":-0.0092968961,"6220":-0.0093277862,"6221":-0.0093576533,"6222":-0.0093865284,"6223":-0.0094144422,"6224":-0.0094414253,"6225":-0.0094675076,"6226":-0.0094927189,"6227":-0.0095170884,"6228":-0.0095406447,"6229":-0.0095634161,"6230":-0.00958543,"6231":-0.0096067135,"6232":-0.0096272929,"6233":-0.0096471937,"6234":-0.0096664411,"6235":-0.0096850592,"6236":-0.0097030718,"6237":-0.0097205016,"6238":-0.0097373709,"6239":-0.0097537011,"6240":-0.0097695127,"6241":-0.0097848256,"6242":-0.0097992308,"6243":-0.0098099735,"6244":-0.0098150161,"6245":-0.0098171327,"6246":-0.0098186254,"6247":-0.0098197934,"6248":-0.0098206258,"6249":-0.0098211424,"6250":-0.0098213732,"6251":-0.0098213215,"6252":-0.0098201127,"6253":-0.0098097312,"6254":-0.0097651298,"6255":-0.0096628452,"6256":-0.0095094868,"6257":-0.0093297686,"6258":-0.0091384162,"6259":-0.0089391401,"6260":-0.0087358437,"6261":-0.0085328614,"6262":-0.0083317119,"6263":-0.0081327346,"6264":-0.0079367732,"6265":-0.0077444712,"6266":-0.0075559516,"6267":-0.0073713249,"6268":-0.0071907694,"6269":-0.0070143509,"6270":-0.0068420716,"6271":-0.0066739485,"6272":-0.0065099833,"6273":-0.0063501497,"6274":-0.006194415,"6275":-0.0060427425,"6276":-0.0058950856,"6277":-0.0057513912,"6278":-0.0056116024,"6279":-0.0054756582,"6280":-0.0053434933,"6281":-0.0052150399,"6282":-0.0050902274,"6283":-0.0049689832,"6284":-0.0048512328,"6285":-0.0047369005,"6286":-0.0046259092,"6287":-0.0045181813,"6288":-0.0044136383,"6289":-0.0043122016,"6290":-0.0042137925,"6291":-0.0041183321,"6292":-0.0040257421,"6293":-0.0039359445,"6294":-0.0038488619,"6295":-0.0037644175,"6296":-0.0036825356,"6297":-0.0036031413,"6298":-0.0035261607,"6299":-0.0034515213,"6300":-0.0033791514,"6301":-0.0033089811,"6302":-0.0032409414,"6303":-0.003174965,"6304":-0.003110986,"6305":-0.0030489398,"6306":-0.0029887635,"6307":-0.0029303958,"6308":-0.0028737766,"6309":-0.0028188477,"6310":-0.0027655523,"6311":-0.0027138353,"6312":-0.002663643,"6313":-0.0026149232,"6314":-0.0025676256,"6315":-0.0025217009,"6316":-0.0024771018,"6317":-0.0024337823,"6318":-0.0023916977,"6319":-0.0023508049,"6320":-0.0023110623,"6321":-0.0022724295,"6322":-0.0022348676,"6323":-0.002198339,"6324":-0.0021628074,"6325":-0.0021282376,"6326":-0.0020945958,"6327":-0.0020618495,"6328":-0.0020299672,"6329":-0.0019989186,"6330":-0.0019686743,"6331":-0.0019392064,"6332":-0.0019104876,"6333":-0.0018824918,"6334":-0.001855194,"6335":-0.0018285698,"6336":-0.0018025961,"6337":-0.0017772503,"6338":-0.0017525109,"6339":-0.0017283571,"6340":-0.001704769,"6341":-0.0016817274,"6342":-0.0016592137,"6343":-0.0016372101,"6344":-0.0016156997,"6345":-0.0015946658,"6346":-0.0015740928,"6347":-0.0015539653,"6348":-0.0015342688,"6349":-0.0015149892,"6350":-0.0014961129,"6351":-0.0014776268,"6352":-0.0014595186,"6353":-0.001441776,"6354":-0.0014243876,"6355":-0.0014073421,"6356":-0.0013906288,"6357":-0.0013742374,"6358":-0.001358158,"6359":-0.0013423809,"6360":-0.0013268969,"6361":-0.0013116972,"6362":-0.0012967732,"6363":-0.0012821167,"6364":-0.0012677198,"6365":-0.0012535748,"6366":-0.0012396744,"6367":-0.0012260115,"6368":-0.0012125793,"6369":-0.0011993711,"6370":-0.0011863807,"6371":-0.0011736019,"6372":-0.0011610288,"6373":-0.0011486557,"6374":-0.0011364772,"6375":-0.0011244879,"6376":-0.0011126828,"6377":-0.0011010568,"6378":-0.0010896053,"6379":-0.0010783236,"6380":-0.0010672073,"6381":-0.0010562521,"6382":-0.0010454539,"6383":-0.0010348086,"6384":-0.0010243124,"6385":-0.0010139615,"6386":-0.0010037524,"6387":-0.0009936814,"6388":-0.0009837453,"6389":-0.0009739408,"6390":-0.0009642647,"6391":-0.0009547138,"6392":-0.0009452854,"6393":-0.0009359764,"6394":-0.0009267841,"6395":-0.0009177059,"6396":-0.000908739,"6397":-0.000899881,"6398":-0.0008911294,"6399":-0.0008824819,"6400":-0.0008739361,"6401":-0.0008654897,"6402":-0.0008571407,"6403":-0.0008488869,"6404":-0.0008407263,"6405":-0.0008326569,"6406":-0.0008246768,"6407":-0.0008167841,"6408":-0.000808977,"6409":-0.0008012537,"6410":-0.0007936126,"6411":-0.0007860519,"6412":-0.00077857,"6413":-0.0007711655,"6414":-0.0007638367,"6415":-0.0007565821,"6416":-0.0007494004,"6417":-0.0007422901,"6418":-0.0007352499,"6419":-0.0007282784,"6420":-0.0007213743,"6421":-0.0007145364,"6422":-0.0007077634,"6423":-0.0007010542,"6424":-0.0006944075,"6425":-0.0006878223,"6426":-0.0006812975,"6427":-0.0006748319,"6428":-0.0006684246,"6429":-0.0006620745,"6430":-0.0006557806,"6431":-0.0006495419,"6432":-0.0006433575,"6433":-0.0006372264,"6434":-0.0006311478,"6435":-0.0006251208,"6436":-0.0006191446,"6437":-0.0006132182,"6438":-0.0006073408,"6439":-0.0006015118,"6440":-0.0005957302,"6441":-0.0005899953,"6442":-0.0005843064,"6443":-0.0005786628,"6444":-0.0005730637,"6445":-0.0005675085,"6446":-0.0005619964,"6447":-0.0005565268,"6448":-0.0005510991,"6449":-0.0005457126,"6450":-0.0005403666,"6451":-0.0005350607,"6452":-0.0005297942,"6453":-0.0005245665,"6454":-0.000519377,"6455":-0.0005142252,"6456":-0.0005091106,"6457":-0.0005040325,"6458":-0.0004989906,"6459":-0.0004939842,"6460":-0.000489013,"6461":-0.0004840763,"6462":-0.0004791737,"6463":-0.0004743047,"6464":-0.0004694689,"6465":-0.0004646659,"6466":-0.0004598951,"6467":-0.0004551561,"6468":-0.0004504486,"6469":-0.0004457721,"6470":-0.0004411262,"6471":-0.0004365104,"6472":-0.0004319245,"6473":-0.000427368,"6474":-0.0004228405,"6475":-0.0004183416,"6476":-0.0004138711,"6477":-0.0004094285,"6478":-0.0004050135,"6479":-0.0004006257,"6480":-0.0003962649,"6481":-0.0003919306,"6482":-0.0003876225,"6483":-0.0003833404,"6484":-0.0003790839,"6485":-0.0003748527,"6486":-0.0003706465,"6487":-0.0003664651,"6488":-0.000362308,"6489":-0.000358175,"6490":-0.0003540659,"6491":-0.0003499804,"6492":-0.0003459181,"6493":-0.0003418788,"6494":-0.0003378624,"6495":-0.0003338684,"6496":-0.0003298966,"6497":-0.0003259469,"6498":-0.0003220189,"6499":-0.0003181124,"6500":0.0,"6501":0.0004387061,"6502":0.0014908986,"6503":0.0012523554,"6504":0.0012171587,"6505":0.0012423264,"6506":0.0012256952,"6507":0.0012273851,"6508":0.0012202149,"6509":0.0012177551,"6510":0.0012129093,"6511":0.0012092832,"6512":0.0012051165,"6513":0.0012012392,"6514":0.0011972718,"6515":0.0011933809,"6516":0.0011894962,"6517":0.001185645,"6518":0.0011818172,"6519":0.0011780155,"6520":0.0011742391,"6521":0.0011704875,"6522":0.0011667609,"6523":0.0011630587,"6524":0.0011593808,"6525":0.001155727,"6526":0.001152097,"6527":0.0011484905,"6528":0.0011449075,"6529":0.0011413475,"6530":0.0011378104,"6531":0.001134296,"6532":0.0011308041,"6533":0.0011273345,"6534":0.0011238868,"6535":0.001120461,"6536":0.0011170568,"6537":0.001113674,"6538":0.0011103125,"6539":0.0011069719,"6540":0.0011036522,"6541":0.0011003531,"6542":0.0010970744,"6543":0.0010938159,"6544":0.0010905775,"6545":0.001087359,"6546":0.0010841601,"6547":0.0010809808,"6548":0.0010778208,"6549":0.0010746799,"6550":0.001071558,"6551":0.0010684549,"6552":0.0010653705,"6553":0.0010623045,"6554":0.0010592568,"6555":0.0010562272,"6556":0.0010532157,"6557":0.0010502219,"6558":0.0010472458,"6559":0.0010442872,"6560":0.0010413459,"6561":0.0010384218,"6562":0.0010355148,"6563":0.0010326247,"6564":0.0010297513,"6565":0.0010268945,"6566":0.0010240542,"6567":0.0010212301,"6568":0.0010184223,"6569":0.0010156305,"6570":0.0010128546,"6571":0.0010100944,"6572":0.0010073499,"6573":0.0010046209,"6574":0.0010019072,"6575":0.0009992087,"6576":0.0009965254,"6577":0.0009938571,"6578":0.0009912035,"6579":0.0009885648,"6580":0.0009859406,"6581":0.0009833309,"6582":0.0009807356,"6583":0.0009781545,"6584":0.0009755876,"6585":0.0009730346,"6586":0.0003656821,"6587":0.0000138562,"6588":-0.0000173596,"6589":-0.0001164592,"6590":-0.0001917156,"6591":-0.0002814931,"6592":-0.000359733,"6593":-0.0004369944,"6594":-0.0005093503,"6595":-0.0006040001,"6596":-0.0008657511,"6597":-0.0017315692,"6598":-0.0034515756,"6599":-0.0056333363,"6600":-0.0079980067,"6601":-0.0104011341,"6602":-0.0127721336,"6603":-0.0150766504,"6604":-0.0172970098,"6605":-0.0194256778,"6606":-0.0214597668,"6607":-0.0233996167,"6608":-0.025247083,"6609":-0.0270050622,"6610":-0.0286769275,"6611":-0.0302663225,"6612":-0.0317769645,"6613":-0.0332125515,"6614":-0.034576691,"6615":-0.0358728606,"6616":-0.0371043836,"6617":-0.0382744154,"6618":-0.0393859381,"6619":-0.0404417587,"6620":-0.041444512,"6621":-0.042396664,"6622":-0.0433005181,"6623":-0.0441582211,"6624":-0.04497177,"6625":-0.0457430188,"6626":-0.0464736859,"6627":-0.0471653603,"6628":-0.047819509,"6629":-0.0484374828,"6630":-0.049020523,"6631":-0.0495697672,"6632":-0.0500862548,"6633":-0.0505709328,"6634":-0.0510246611,"6635":-0.0514482169,"6636":-0.0518423003,"6637":-0.0522075381,"6638":-0.0525444891,"6639":-0.0528536475,"6640":-0.053135448,"6641":-0.0533902689,"6642":-0.0536184368,"6643":-0.0538202301,"6644":-0.0539958828,"6645":-0.0541455883,"6646":-0.0542695035,"6647":-0.0543677518,"6648":-0.0544404273,"6649":-0.0544875983,"6650":-0.0545093111,"6651":-0.0545055937,"6652":-0.0544764594,"6653":-0.0544219106,"6654":-0.0543419427,"6655":-0.0542365477,"6656":-0.0541057181,"6657":-0.0539494509,"6658":-0.053767751,"6659":-0.0535606354,"6660":-0.0533281368,"6661":-0.0530703075,"6662":-0.0527872228,"6663":-0.052478985,"6664":-0.0521457268,"6665":-0.0517876145,"6666":-0.0514048514,"6667":-0.0509976811,"6668":-0.0505663898,"6669":-0.0501113097,"6670":-0.0496328206,"6671":-0.0491313524,"6672":-0.0486073866,"6673":-0.048061458,"6674":-0.0474941554,"6675":-0.046906122,"6676":-0.0462980562,"6677":-0.0456707104,"6678":-0.0450248911,"6679":-0.044361457,"6680":-0.0436813177,"6681":-0.0429854312,"6682":-0.0422748016,"6683":-0.0415504754,"6684":-0.0408135388,"6685":-0.0400651129,"6686":-0.0393063502,"6687":-0.0385384291,"6688":-0.0377625498,"6689":-0.0369799285,"6690":-0.0361917924,"6691":-0.0353993741,"6692":-0.0346039059,"6693":-0.0338066145,"6694":-0.0330087151,"6695":-0.0322114062,"6696":-0.0314158642,"6697":-0.0306232383,"6698":-0.0298346457,"6699":-0.029051167,"6700":-0.0282738419,"6701":-0.0275036656,"6702":-0.0267415854,"6703":-0.0259884974,"6704":-0.025245244,"6705":-0.0245126121,"6706":-0.0237913312,"6707":-0.0230820723,"6708":-0.0223854468,"6709":-0.0217020068,"6710":-0.0210322448,"6711":-0.020376594,"6712":-0.0197354296,"6713":-0.0191090697,"6714":-0.0184977767,"6715":-0.0179017594,"6716":-0.0173211744,"6717":-0.0167561292,"6718":-0.0162066836,"6719":-0.015672853,"6720":-0.0151546105,"6721":-0.0146518899,"6722":-0.0141645882,"6723":-0.0136925689,"6724":-0.0132356641,"6725":-0.0127936777,"6726":-0.012366388,"6727":-0.0119535504,"6728":-0.0115548998,"6729":-0.0111701533,"6730":-0.0107990126,"6731":-0.010441166,"6732":-0.0100962905,"6733":-0.0097640543,"6734":-0.0094441174,"6735":-0.0091361339,"6736":-0.0088397517,"6737":-0.0085546119,"6738":-0.008280346,"6739":-0.00801657,"6740":-0.0077628793,"6741":-0.0075188552,"6742":-0.0068837433,"6743":-0.0039832873,"6744":-0.001023983,"6745":-0.0009041009,"6746":-0.0006325426,"6747":-0.0005136275,"6748":-0.0003255946,"6749":-0.0001851453,"6750":-0.0000459889,"6751":0.0000973848,"6752":0.0010547871,"6753":0.0088602419,"6754":0.034548921,"6755":0.0672821126,"6756":0.0867065566,"6757":0.0933189981,"6758":0.0976681572,"6759":0.1012566357,"6760":0.1018250645,"6761":0.1008179119,"6762":0.0999094074,"6763":0.0986943327,"6764":0.0969083337,"6765":0.0950099727,"6766":0.093131059,"6767":0.0911345003,"6768":0.0890632556,"6769":0.0870011655,"6770":0.0849341345,"6771":0.0828534859,"6772":0.0807829495,"6773":0.0787300431,"6774":0.0766923856,"6775":0.0746754889,"6776":0.0726845887,"6777":0.0707209512,"6778":0.0687865701,"6779":0.0668839885,"6780":0.065014703,"6781":0.0631799263,"6782":0.0613809419,"6783":0.0596187315,"6784":0.0578940364,"6785":0.0562074989,"6786":0.0545596097,"6787":0.0529507039,"6788":0.0513810036,"6789":0.0498506195,"6790":0.0483595541,"6791":0.0469077161,"6792":0.0454949282,"6793":0.0441209333,"6794":0.0427854025,"6795":0.0414879421,"6796":0.0402280997,"6797":0.0390053702,"6798":0.0378192019,"6799":0.0366690015,"6800":0.0355541392,"6801":0.0344739532,"6802":0.0334277547,"6803":0.0324148316,"6804":0.0314344522,"6805":0.0304858694,"6806":0.0295683233,"6807":0.0286810449,"6808":0.0278232588,"6809":0.0269941857,"6810":0.0261930449,"6811":0.0254190569,"6812":0.0246714447,"6813":0.0239494365,"6814":0.0232522666,"6815":0.0225791778,"6816":0.0219294219,"6817":0.0213022614,"6818":0.0206969706,"6819":0.0201128364,"6820":0.0195491591,"6821":0.0190052533,"6822":0.0184804483,"6823":0.0179740888,"6824":0.017485535,"6825":0.0170141634,"6826":0.0165593666,"6827":0.0161205536,"6828":0.01569715,"6829":0.0152885981,"6830":0.0148943565,"6831":0.0145139005,"6832":0.0141467217,"6833":0.0137923279,"6834":0.013450243,"6835":0.0131200067,"6836":0.012801174,"6837":0.0124933156,"6838":0.0121960168,"6839":0.0119088777,"6840":0.0116315127,"6841":0.0113635502,"6842":0.0111046323,"6843":0.010854414,"6844":0.0106125636,"6845":0.0103787617,"6846":0.0101527011,"6847":0.0099340863,"6848":0.0097226331,"6849":0.0095180686,"6850":0.0093201304,"6851":0.0091285663,"6852":0.0089431341,"6853":0.0087636013,"6854":0.0085897444,"6855":0.0084213491,"6856":0.0082582093,"6857":0.0081001274,"6858":0.0079469138,"6859":0.0077983863,"6860":0.0076543702,"6861":0.0075146978,"6862":0.0073792081,"6863":0.0072477468,"6864":0.0071201656,"6865":0.0069963223,"6866":0.0068760805,"6867":0.0067593092,"6868":0.0066458828,"6869":0.0065356806,"6870":0.006428587,"6871":0.0063244909,"6872":0.0062232856,"6873":0.0061248689,"6874":0.0060291424,"6875":0.0059360119,"6876":0.0058453868,"6877":0.0057571802,"6878":0.0056713086,"6879":0.0055876918,"6880":0.0055062528,"6881":0.0054269175,"6882":0.0053496149,"6883":0.0052742767,"6884":0.0052008373,"6885":0.0051292336,"6886":0.0050594049,"6887":0.0049912929,"6888":0.0049248416,"6889":0.004859997,"6890":0.0047967075,"6891":0.0047349229,"6892":0.0046745955,"6893":0.0046156789,"6894":0.0045581288,"6895":0.0045019025,"6896":0.0044469586,"6897":0.0043932576,"6898":0.0043407614,"6899":0.004289433,"6900":0.0042392372,"6901":0.0041901397,"6902":0.0041421076,"6903":0.0040951093,"6904":0.0040491142,"6905":0.0040040928,"6906":0.0039600167,"6907":0.0039168585,"6908":0.0038745917,"6909":0.0038331907,"6910":0.0037926311,"6911":0.003752889,"6912":0.0037139414,"6913":0.0036757662,"6914":0.003638342,"6915":0.0036016482,"6916":0.0035656647,"6917":0.0035303722,"6918":0.0034957522,"6919":0.0034617866,"6920":0.0034284579,"6921":0.0033957493,"6922":0.0033636445,"6923":0.0033321278,"6924":0.0033011838,"6925":0.0032707979,"6926":0.0032409557,"6927":0.0032116434,"6928":0.0031828476,"6929":0.0031545554,"6930":0.0031267542,"6931":0.0030994318,"6932":0.0030725764,"6933":0.0030461767,"6934":0.0030202216,"6935":0.0029947002,"6936":0.0029696023,"6937":0.0029449178,"6938":0.0029206367,"6939":0.0028967498,"6940":0.0028732477,"6941":0.0028501215,"6942":0.0028273626,"6943":0.0028049625,"6944":0.0027829131,"6945":0.0027612064,"6946":0.0027398347,"6947":0.0027187905,"6948":0.0026980667,"6949":0.002677656,"6950":0.0026575516,"6951":0.0026377469,"6952":0.0026182353,"6953":0.0025990107,"6954":0.0025800667,"6955":0.0025613975,"6956":0.0025429973,"6957":0.0025248603,"6958":0.0025069812,"6959":0.0024893546,"6960":0.0024719753,"6961":0.0024548381,"6962":0.0024379382,"6963":0.0024212708,"6964":0.0024048312,"6965":0.0023886149,"6966":0.0023726173,"6967":0.0023568343,"6968":0.0023412615,"6969":0.0023258949,"6970":0.0023107304,"6971":0.0022957642,"6972":0.0022809925,"6973":0.0022664115,"6974":0.0022520176,"6975":0.0022378074,"6976":0.0022237773,"6977":0.0022099241,"6978":0.0021962443,"6979":0.0021827349,"6980":0.0021693927,"6981":0.0021562147,"6982":0.0021431979,"6983":0.0021303394,"6984":0.0021176363,"6985":0.0021050859,"6986":0.0020926855,"6987":0.0020804324,"6988":0.002068324,"6989":0.0020563579,"6990":0.0020445316,"6991":0.0020328426,"6992":0.0020212886,"6993":0.0020098674,"6994":0.0019985765,"6995":0.001987414,"6996":0.0019763775,"6997":0.001965465,"6998":0.0019546744,"6999":0.0019440037,"7000":0.0,"7001":1.9087155762,"7002":10.553515632,"7003":23.5366423342,"7004":35.6349679647,"7005":47.466454126,"7006":59.3685596064,"7007":71.1992863053,"7008":82.9939712841,"7009":94.741383242,"7010":106.4478453897,"7011":118.1104719683,"7012":129.7311351791,"7013":141.3094070726,"7014":152.8459194109,"7015":164.3408232942,"7016":175.7944736177,"7017":187.2071370268,"7018":198.5791096775,"7019":209.9106738117,"7020":221.2021114694,"7021":232.4537017812,"7022":243.6657203672,"7023":254.8384406601,"7024":265.9721328531,"7025":277.0670646829,"7026":288.1235010073,"7027":299.1417041064,"7028":310.1219335719,"7029":321.0644464192,"7030":331.9694970829,"7031":342.8373374694,"7032":353.6682169812,"7033":364.4623825537,"7034":375.2200786858,"7035":385.9415474717,"7036":396.6270286326,"7037":407.2767595465,"7038":417.8909752792,"7039":428.4699086134,"7040":439.0137900783,"7041":449.5228479777,"7042":459.9973084191,"7043":470.4373953412,"7044":480.8433305408,"7045":491.2153337009,"7046":501.5536224158,"7047":511.8584122189,"7048":522.129916607,"7049":532.3683470661,"7050":542.5739130971,"7051":552.746822239,"7052":562.8872800944,"7053":572.9954903525,"7054":583.0716548126,"7055":593.1159734078,"7056":603.128644227,"7057":613.1098635379,"7058":623.0598258088,"7059":632.9787237302,"7060":642.8667482366,"7061":652.7240885272,"7062":662.5509320871,"7063":672.3474647073,"7064":682.1138705053,"7065":691.8503319446,"7066":701.5570298548,"7067":711.2341434502,"7068":720.8818503493,"7069":730.5003265936,"7070":740.0897466656,"7071":749.6502835073,"7072":759.1821085386,"7073":768.6853916736,"7074":778.1603013398,"7075":787.6070044936,"7076":797.0256666387,"7077":806.4164518414,"7078":815.7795227484,"7079":825.1150406017,"7080":834.4231652557,"7081":843.7040551921,"7082":852.9578675363,"7083":862.1847580716,"7084":871.3848812557,"7085":880.5583902342,"7086":3734.3295050562,"7087":9956.9990536889,"7088":18067.2038848507,"7089":26881.6203945902,"7090":35732.9424856231,"7091":44311.5330884432,"7092":52494.1816362921,"7093":60243.388706897,"7094":67558.4796180861,"7095":74453.6419540876,"7096":80947.8461265105,"7097":87059.0299760001,"7098":92801.8098847159,"7099":98190.3326534987,"7100":103240.6978489703,"7101":107970.0436414381,"7102":112395.4991259498,"7103":116533.6826468479,"7104":120400.4878491019,"7105":124011.0071014209,"7106":127379.5141465988,"7107":130519.478076066,"7108":133443.5903828268,"7109":136163.7992859139,"7110":138691.3464296947,"7111":141036.8043777596,"7112":143210.1135099066,"7113":145220.6178243049,"7114":147077.0992688022,"7115":148787.8104680482,"7116":150360.5057842066,"7117":151802.470717234,"7118":153120.5496836211,"7119":154321.1722320018,"7120":155410.3777660352,"7121":156393.838849424,"7122":157276.8831702984,"7123":158064.5142413974,"7124":158761.4309108722,"7125":159372.0457558127,"7126":159900.5024275533,"7127":160350.6920144674,"7128":160726.2684845557,"7129":161030.6632667198,"7130":161267.099026273,"7131":161438.602687002,"7132":161548.0177489685,"7133":161598.0159482581,"7134":161591.108302019,"7135":161529.6555794098,"7136":161415.8782364685,"7137":161251.8658504229,"7138":161039.5860865803,"7139":160780.893228646,"7140":160477.5363011202,"7141":160131.1668102983,"7142":159743.3461283499,"7143":159315.5525429512,"7144":158849.1879930106,"7145":158345.5845091267,"7146":157806.0103755635,"7147":157231.676028704,"7148":156623.7397051519,"7149":155983.3128508917,"7150":155311.4653011763,"7151":154609.2302391109,"7152":153877.6089392212,"7153":153117.5753006544,"7154":152330.0801730609,"7155":151516.0554766489,"7156":150676.4181164169,"7157":149812.0736891351,"7158":148923.9199803145,"7159":148012.8502471536,"7160":147079.7562823274,"7161":146125.5312524938,"7162":145151.0723045424,"7163":144157.2829319545,"7164":143145.0750931558,"7165":142115.3710734906,"7166":141069.1050824077,"7167":140007.2245776662,"7168":138930.6913088512,"7169":137840.4820732382,"7170":136737.5891780844,"7171":135623.0206047414,"7172":134497.7998715906,"7173":133362.9655946704,"7174":132219.5707470094,"7175":131068.6816200349,"7176":129911.3764930176,"7177":128748.744019246,"7178":127581.8813405076,"7179":126411.8919443935,"7180":125239.8832819251,"7181":124066.9641659203,"7182":122894.2419733623,"7183":121722.8196776829,"7184":120553.7927393217,"7185":119388.2458850473,"7186":118227.2498083301,"7187":117071.8578244266,"7188":115923.1025147773,"7189":114781.9923957669,"7190":113649.5086468282,"7191":112526.6019322917,"7192":111414.189350266,"7193":110313.1515402158,"7194":109224.3299787937,"7195":108148.5244909218,"7196":107086.4910001675,"7197":106038.9395391464,"7198":105006.5325371231,"7199":103989.8833981896,"7200":102989.5553795053,"7201":102006.0607751267,"7202":101039.860407026,"7203":100091.3634210866,"7204":99160.9273822033,"7205":98248.8586592082,"7206":97355.4130872131,"7207":96480.7968921674,"7208":95625.1678600115,"7209":94788.6367307658,"7210":93971.2687962802,"7211":93173.0856791486,"7212":92394.0672694892,"7213":91634.1537958706,"7214":90893.2480066151,"7215":90171.2174380091,"7216":89467.8967465431,"7217":88783.090083188,"7218":88116.5734888167,"7219":87468.0972911793,"7220":86837.3884853026,"7221":86224.1530807437,"7222":85628.0784007742,"7223":85048.8353202494,"7224":84486.0804305895,"7225":83939.4581219218,"7226":83408.6025739483,"7227":82893.1396483966,"7228":82392.6886768274,"7229":81906.864137721,"7230":81435.2772154405,"7231":80977.5372293439,"7232":80533.2529108132,"7233":80102.0334828024,"7234":79683.4894473899,"7235":79277.2328861532,"7236":78882.8768818875,"7237":78500.0333292797,"7238":78128.3079946045,"7239":77767.2920125717,"7240":77416.5531526641,"7241":77075.642736,"7242":76211.2825702202,"7243":71993.8070985401,"7244":64835.211582939,"7245":56357.8123856488,"7246":47441.2261498513,"7247":38624.27117794,"7248":30137.965554164,"7249":22072.6420921383,"7250":14449.1887660047,"7251":7261.8814854911,"7252":499.6619128323,"7253":-5782.818987689,"7254":-11236.5909513443,"7255":-15179.2646123829,"7256":-17484.096418685,"7257":-18802.0001658272,"7258":-19670.97218492,"7259":-20220.5663887966,"7260":-20525.6444362775,"7261":-20707.0316309119,"7262":-20820.8121932338,"7263":-20873.0522016821,"7264":-20879.993031982,"7265":-20859.7272359991,"7266":-20816.9366593255,"7267":-20753.5122734099,"7268":-20673.8704415714,"7269":-20580.754088853,"7270":-20475.1395929113,"7271":-20358.3074129065,"7272":-20231.5589289759,"7273":-20095.7186539859,"7274":-19951.5096144404,"7275":-19799.6889155597,"7276":-19640.9156117727,"7277":-19475.7779658605,"7278":-19304.8516867356,"7279":-19128.6831513154,"7280":-18947.7837610553,"7281":-18762.6436033458,"7282":-18573.7320297301,"7283":-18381.4951892708,"7284":-18186.3584141156,"7285":-17988.7272269495,"7286":-17788.9869486781,"7287":-17587.5031726644,"7288":-17384.6222784174,"7289":-17180.6716305401,"7290":-16975.9599229183,"7291":-16770.7776097661,"7292":-16565.3973100258,"7293":-16360.0742571864,"7294":-16155.0467977282,"7295":-15950.5369097054,"7296":-15746.7507471021,"7297":-15543.8792088647,"7298":-15342.0985235309,"7299":-15141.5708460414,"7300":-14942.4448632597,"7301":-14744.8564034263,"7302":-14548.9290458999,"7303":-14354.7747279436,"7304":-14162.4943453948,"7305":-13972.1783445196,"7306":-13783.9073027162,"7307":-13597.7524960167,"7308":-13413.7764516667,"7309":-13232.0334843513,"7310":-13052.5702149082,"7311":-12875.4260706108,"7312":-12700.6337663384,"7313":-12528.2197661502,"7314":-12358.2047249671,"7315":-12190.6039102258,"7316":-12025.4276035195,"7317":-11862.6814823609,"7318":-11702.366982318,"7319":-11544.4816398632,"7320":-11389.0194163602,"7321":-11235.9710036759,"7322":-11085.324111963,"7323":-10937.0637401975,"7324":-10791.1724300945,"7325":-10647.6305040451,"7326":-10506.4162877381,"7327":-10367.5063181372,"7328":-10230.87553749,"7329":-10096.4974740408,"7330":-9964.344410118,"7331":-9834.3875382499,"7332":-9706.5971059548,"7333":-9580.9425498343,"7334":-9457.3926195763,"7335":-9335.9154924604,"7336":-9216.4788789319,"7337":-9099.0501197913,"7338":-8983.5962755208,"7339":-8870.0842082488,"7340":-8758.4806568274,"7341":-8648.7523054751,"7342":-8540.8658464148,"7343":-8434.7880369139,"7344":-8330.4857511093,"7345":-8227.926026982,"7346":-8127.0761088212,"7347":-8027.9034855011,"7348":-7930.3759248712,"7349":-7834.4615045449,"7350":-7740.128639351,"7351":-7647.3461056986,"7352":-7556.083063087,"7353":-7466.3090729791,"7354":-7377.9941152415,"7355":-7291.1086023417,"7356":-7205.6233914776,"7357":-7121.5097948073,"7358":-7038.739587929,"7359":-6957.2850167585,"7360":-6877.1188029321,"7361":-6798.2141478647,"7362":-6720.5447355718,"7363":-6644.0847343669,"7364":-6568.8087975317,"7365":-6494.69206305,"7366":-6421.7101524933,"7367":-6349.8391691341,"7368":-6279.0556953634,"7369":-6209.3367894773,"7370":-6140.6599818982,"7371":-6073.0032708869,"7372":-6006.3451178004,"7373":-5940.6644419457,"7374":-5875.940615073,"7375":-5812.1534555553,"7376":-5749.2832222884,"7377":-5687.3106083518,"7378":-5626.216734461,"7379":-5565.9831422437,"7380":-5506.5917873667,"7381":-5448.0250325403,"7382":-5390.2656404247,"7383":-5333.2967664576,"7384":-5277.1019516274,"7385":-5221.6651152053,"7386":-5166.9705474578,"7387":-5113.0029023511,"7388":-5059.7471902642,"7389":-5007.1887707215,"7390":-4955.313345157,"7391":-4904.1069497211,"7392":-4853.5559481386,"7393":-4803.6470246268,"7394":-4754.3671768807,"7395":-4705.7037091337,"7396":-4657.6442252976,"7397":-4610.1766221891,"7398":-4563.2890828466,"7399":-4516.9700699417,"7400":-4471.2083192896,"7401":-4425.9928334597,"7402":-4381.3128754913,"7403":-4337.1579627155,"7404":-4293.517860684,"7405":-4250.3825772092,"7406":-4207.7423565133,"7407":-4165.5876734899,"7408":-4123.909228077,"7409":-4082.6979397426,"7410":-4041.9449420823,"7411":-4001.6415775294,"7412":-3961.7793921764,"7413":-3922.3501307077,"7414":-3883.3457314436,"7415":-3844.7583214928,"7416":-3806.5802120144,"7417":-3768.8038935875,"7418":-3731.4220316871,"7419":-3694.4274622647,"7420":-3657.8131874338,"7421":-3621.5723712565,"7422":-3585.6983356319,"7423":-3550.184556283,"7424":-3515.0246588421,"7425":-3480.2124150314,"7426":-3445.7417389389,"7427":-3411.6066833857,"7428":-3377.8014363857,"7429":-3344.3203176933,"7430":-3311.1577754389,"7431":-3278.3083828507,"7432":-3245.7668350592,"7433":-3213.5279459849,"7434":-3181.586645306,"7435":-3149.9379755045,"7436":-3118.5770889899,"7437":-3087.4992452967,"7438":-3056.6998083575,"7439":-3026.1742438453,"7440":-2995.918116588,"7441":-2965.9270880504,"7442":-2936.1969138822,"7443":-2906.7234415333,"7444":-2877.5026079298,"7445":-2848.5304372146,"7446":-2819.8030385468,"7447":-2791.3166039604,"7448":-2763.0674062808,"7449":-2735.0517970966,"7450":-2707.2662047867,"7451":-2679.7071325996,"7452":-2652.3711567851,"7453":-2625.254924776,"7454":-2598.355153419,"7455":-2571.6686272534,"7456":-2545.1921968356,"7457":-2518.9227771102,"7458":-2492.8573458233,"7459":-2466.9929419802,"7460":-2441.326664344,"7461":-2415.8556699745,"7462":-2390.577172807,"7463":-2365.4884422696,"7464":-2340.586801937,"7465":-2315.8696282211,"7466":-2291.334349097,"7467":-2266.9784428628,"7468":-2242.7994369333,"7469":-2218.7949066653,"7470":-2194.9624742153,"7471":-2171.2998074274,"7472":-2147.8046187506,"7473":-2124.4746641859,"7474":-2101.3077422607,"7475":-2078.3016930312,"7476":-2055.4543971107,"7477":-2032.7637747242,"7478":-2010.2277847883,"7479":-1987.8444240145,"7480":-1965.6117260376,"7481":-1943.5277605656,"7482":-1921.5906325538,"7483":-1899.7984813986,"7484":-1878.1494801541,"7485":-1856.6418347685,"7486":-1835.2737833407,"7487":-1814.0435953957,"7488":-1792.9495711802,"7489":-1771.9900409749,"7490":-1751.1633644258,"7491":-1730.4679298922,"7492":-1709.902153812,"7493":-1689.4644800825,"7494":-1669.1533794586,"7495":-1648.9673489642,"7496":-1628.9049113213,"7497":-1608.964614391,"7498":-1589.145030631,"7499":-1569.4447565651,"7500":0.0,"7501":0.0,"7502":0.0,"7503":0.0,"7504":0.0,"7505":0.0,"7506":0.0,"7507":0.0,"7508":0.0,"7509":0.0,"7510":0.0,"7511":0.0,"7512":0.0,"7513":0.0,"7514":0.0,"7515":0.0,"7516":0.0,"7517":0.0,"7518":0.0,"7519":0.0,"7520":0.0,"7521":0.0,"7522":0.0,"7523":0.0,"7524":0.0,"7525":0.0,"7526":0.0,"7527":0.0,"7528":0.0,"7529":0.0,"7530":0.0,"7531":0.0,"7532":0.0,"7533":0.0,"7534":0.0,"7535":0.0,"7536":0.0,"7537":0.0,"7538":0.0,"7539":0.0,"7540":0.0,"7541":0.0,"7542":0.0,"7543":0.0,"7544":0.0,"7545":0.0,"7546":0.0,"7547":0.0,"7548":0.0,"7549":0.0,"7550":0.0,"7551":0.0,"7552":0.0,"7553":0.0,"7554":0.0,"7555":0.0,"7556":0.0,"7557":0.0,"7558":0.0,"7559":0.0,"7560":0.0,"7561":0.0,"7562":0.0,"7563":0.0,"7564":0.0,"7565":0.0,"7566":0.0,"7567":0.0,"7568":0.0,"7569":0.0,"7570":0.0,"7571":0.0,"7572":0.0,"7573":0.0,"7574":0.0,"7575":0.0,"7576":0.0,"7577":0.0,"7578":0.0,"7579":0.0,"7580":0.0,"7581":0.0,"7582":0.0,"7583":0.0,"7584":0.0,"7585":0.0,"7586":2847.2163698538,"7587":9067.7245504363,"7588":17177.8460009269,"7589":25992.8561769267,"7590":34845.5581763994,"7591":43426.3169363167,"7592":51611.9201597822,"7593":59364.8204851476,"7594":66684.3103993091,"7595":73584.6510603008,"7596":80085.6331144655,"7597":86208.5900891312,"7598":91974.752015856,"7599":97404.5923928552,"7600":102517.5936239016,"7601":107332.1870722317,"7602":111865.7646397231,"7603":116134.7184150201,"7604":120154.4901515631,"7605":123939.6229878347,"7606":127503.8123158452,"7607":130859.954595846,"7608":134020.1937083823,"7609":136995.9647640676,"7610":139798.0354251235,"7611":142436.5448440664,"7612":144921.0403417968,"7613":147260.5119499327,"7614":149463.4249390501,"7615":151537.7504491277,"7616":153490.9943324363,"7617":155330.22431299,"7618":157062.0955607264,"7619":158692.8747729129,"7620":160228.4628498948,"7621":161674.4162472309,"7622":163035.9670814727,"7623":164318.0420623396,"7624":165525.2803197934,"7625":166662.0501905183,"7626":167732.4650245491,"7627":168740.3980692405,"7628":169689.4964844365,"7629":170583.194539552,"7630":171424.7260403211,"7631":172217.136030175,"7632":172963.2918085938,"7633":173665.8933062989,"7634":174327.4828548291,"7635":174950.4543858524,"7636":175537.0620934976,"7637":176089.4285910542,"7638":176609.5525915516,"7639":177099.3161400108,"7640":177560.4914235394,"7641":177994.7471839093,"7642":178403.6547558235,"7643":178788.6937527186,"7644":179151.257420679,"7645":179492.6576798342,"7646":179814.1298714826,"7647":180116.837228117,"7648":180401.875082529,"7649":180670.2748312208,"7650":180923.0076664662,"7651":181160.9880905258,"7652":181385.077224732,"7653":181596.0859254168,"7654":181794.7777179593,"7655":181981.8715595669,"7656":182158.0444407894,"7657":182323.9338351786,"7658":182480.1400059575,"7659":182627.2281780446,"7660":182765.730583296,"7661":182896.1483863606,"7662":183018.9534981226,"7663":183134.5902832892,"7664":183243.477168304,"7665":183346.0081554042,"7666":183442.5542482998,"7667":183533.4647946334,"7668":183619.068750079,"7669":183699.6758686527,"7670":183775.5778235442,"7671":183847.0492625225,"7672":183914.3488017363,"7673":183977.7199615048,"7674":184037.3920474854,"7675":184093.5809804049,"7676":184146.4900773597,"7677":184196.3107875088,"7678":184243.2233848241,"7679":184287.3976204038,"7680":184328.9933367085,"7681":184368.1610459444,"7682":184405.0424746846,"7683":184439.7710767002,"7684":184472.4725158569,"7685":184503.2651208238,"7686":184532.2603132403,"7687":184559.5630108905,"7688":184585.2720073431,"7689":184609.4803294314,"7690":184632.2755738672,"7691":184653.7402242047,"7692":184673.9519493043,"7693":184692.9838843733,"7694":184710.9048956023,"7695":184727.7798293549,"7696":184743.6697468107,"7697":184758.6321449128,"7698":184772.7211644175,"7699":184785.9877858008,"7700":184798.4800137283,"7701":184810.2430507581,"7702":184821.3194609042,"7703":184831.7493236526,"7704":184841.570378987,"7705":184850.818163949,"7706":184859.5261412276,"7707":184867.7258202423,"7708":184875.4468711581,"7709":184882.7172322465,"7710":184889.5632109782,"7711":184896.0095792154,"7712":184902.0796628481,"7713":184907.7954261976,"7714":184913.1775514926,"7715":184918.2455137077,"7716":184923.0176510313,"7717":184927.5112312205,"7718":184931.7425140813,"7719":184935.7268102982,"7720":184939.4785368241,"7721":184943.011269023,"7722":184946.3377897418,"7723":184949.4701354587,"7724":184952.4196396143,"7725":184955.1969731556,"7726":184957.8121821705,"7727":184960.2747221864,"7728":184962.5934880761,"7729":184964.7768372021,"7730":184966.8326006804,"7731":184968.768071902,"7732":184970.5899494236,"7733":184972.3041862737,"7734":184973.9156458825,"7735":184975.4273595623,"7736":184976.838975762,"7737":184978.143634814,"7738":184979.3220683628,"7739":184980.3330149489,"7740":184981.1031841524,"7741":184981.5327297836,"7742":184446.0198276745,"7743":180515.7227292636,"7744":173519.5109509305,"7745":165091.153320983,"7746":156212.3593413488,"7747":147423.3878905201,"7748":138958.7922568248,"7749":130907.3522600929,"7750":123291.405511489,"7751":116105.4018769122,"7752":109332.6735289873,"7753":102952.6664627529,"7754":96943.9660152349,"7755":91285.5362441885,"7756":85957.2007701165,"7757":80939.8053138318,"7758":76215.2479106782,"7759":71766.4554602671,"7760":67577.3397123037,"7761":63632.7465563039,"7762":59918.4043571616,"7763":56420.8736529913,"7764":53127.4990907178,"7765":50026.3638722093,"7766":47106.2467348254,"7767":44356.5813904277,"7768":41767.4183097591,"7769":39329.3887281332,"7770":37033.6707482006,"7771":34871.9574196714,"7772":32836.4266815684,"7773":30919.7130586968,"7774":29114.8810101104,"7775":27415.3998332153,"7776":25815.1200327383,"7777":24308.2510690658,"7778":22889.3404054427,"7779":21553.2537782182,"7780":20295.1566187471,"7781":19110.4965597228,"7782":17994.9869626442,"7783":16944.5914068092,"7784":15955.5090837099,"7785":15024.1610439805,"7786":14147.1772471315,"7787":13321.3843672119,"7788":12543.7943102734,"7789":11811.5934020887,"7790":11122.1322069992,"7791":10472.9159410528,"7792":9861.5954447416,"7793":9285.9586826754,"7794":8743.922739432,"7795":8233.5262826226,"7796":7752.9224659001,"7797":7300.3722462295,"7798":6874.2380912395,"7799":6472.9780538869,"7800":6095.1401929907,"7801":5739.3573194494,"7802":5404.3420491291,"7803":5088.8821445234,"7804":4791.8361283261,"7805":4512.1291530483,"7806":4248.7491117316,"7807":4000.7429756846,"7808":3767.2133459927,"7809":3547.3152063203,"7810":3340.2528652583,"7811":3145.2770771505,"7812":2961.6823309821,"7813":2788.8042975211,"7814":2626.0174254722,"7815":2472.7326779485,"7816":2328.3954010681,"7817":2192.4833169646,"7818":2064.5046339479,"7819":1943.9962669787,"7820":1830.5221620164,"7821":1723.6717181772,"7822":1623.0583019935,"7823":1528.3178483986,"7824":1439.1075433735,"7825":1355.1045834899,"7826":1276.0050078612,"7827":1201.5225982733,"7828":1131.3878435173,"7829":1065.3469641756,"7830":1003.1609943321,"7831":944.6049168856,"7832":889.4668493351,"7833":837.5472770929,"7834":788.6583315501,"7835":742.6231102825,"7836":699.2750369374,"7837":658.4572584844,"7838":620.0220776502,"7839":583.8304184822,"7840":549.7513231093,"7841":517.6614778759,"7842":487.4447671377,"7843":458.9918531023,"7844":432.1997801953,"7845":406.9716025205,"7846":383.2160330651,"7847":360.8471133826,"7848":339.783902555,"7849":319.9501843129,"7850":301.2741912495,"7851":283.6883451339,"7852":267.1290123826,"7853":251.5362738035,"7854":236.8537077821,"7855":223.0281861213,"7856":210.0096818004,"7857":197.751087954,"7858":186.2080474184,"7859":175.3387922266,"7860":165.1039924737,"7861":155.4666140024,"7862":146.3917843974,"7863":137.846666801,"7864":129.800341094,"7865":122.2236920131,"7866":115.0893037985,"7867":108.3713609912,"7868":102.0455550208,"7869":96.0889962465,"7870":90.4801311313,"7871":85.1986642523,"7872":80.2254848619,"7873":75.5425977368,"7874":71.1330580631,"7875":66.9809101223,"7876":63.0711295559,"7877":59.3895690011,"7878":55.9229068984,"7879":52.6585992889,"7880":49.584834424,"7881":46.6904900255,"7882":43.96509304,"7883":41.3987817425,"7884":38.9822700523,"7885":36.706813932,"7886":34.5641797471,"7887":32.5466144733,"7888":30.6468176426,"7889":28.8579149266,"7890":27.1734332622,"7891":25.5872774292,"7892":24.0937079949,"7893":22.6873205464,"7894":21.3630261345,"7895":20.1160328604,"7896":18.9418285355,"7897":17.836164355,"7898":16.7950395234,"7899":15.8146867778,"7900":14.8915587565,"7901":14.0223151627,"7902":13.2038106781,"7903":12.4330835814,"7904":11.7073450318,"7905":11.0239689773,"7906":10.3804826527,"7907":9.7745576321,"7908":9.2040014034,"7909":8.6667494348,"7910":8.1608577046,"7911":7.6844956665,"7912":7.2359396262,"7913":6.8135665041,"7914":6.4158479623,"7915":6.0413448743,"7916":5.6887021177,"7917":5.3566436708,"7918":5.0439679952,"7919":4.7495436882,"7920":4.4723053888,"7921":4.211249923,"7922":3.9654326733,"7923":3.7339641612,"7924":3.5160068285,"7925":3.3107720064,"7926":3.1175170622,"7927":2.9355427116,"7928":2.7641904886,"7929":2.6028403631,"7930":2.450908497,"7931":2.3078451317,"7932":2.173132599,"7933":2.0462834477,"7934":1.9268386799,"7935":1.8143660901,"7936":1.7084587015,"7937":1.6087332929,"7938":1.5148290125,"7939":1.4264060719,"7940":1.3431445168,"7941":1.264743069,"7942":1.1909180364,"7943":1.1214022865,"7944":1.0559442798,"7945":0.9943071594,"7946":0.9362678941,"7947":0.8816164716,"7948":0.8301551382,"7949":0.7816976834,"7950":0.7360687661,"7951":0.69310328,"7952":0.6526457567,"7953":0.6145498023,"7954":0.5786775684,"7955":0.544899253,"7956":0.5130926307,"7957":0.4831426107,"7958":0.4549408203,"7959":0.4283852125,"7960":0.4033796971,"7961":0.3798337928,"7962":0.3576622998,"7963":0.3367849915,"7964":0.3171263244,"7965":0.2986151644,"7966":0.2811845299,"7967":0.2647713488,"7968":0.2493162307,"7969":0.2347632521,"7970":0.2210597536,"7971":0.2081561497,"7972":0.1960057495,"7973":0.1845645871,"7974":0.1737912632,"7975":0.1636467952,"7976":0.1540944756,"7977":0.1450997398,"7978":0.1366300409,"7979":0.1286547316,"7980":0.1211449535,"7981":0.1140735329,"7982":0.1074148823,"7983":0.1011449075,"7984":0.0952409209,"7985":0.0896815593,"7986":0.0844467063,"7987":0.0795174198,"7988":0.0748758636,"7989":0.0705052422,"7990":0.0663897409,"7991":0.0625144678,"7992":0.0588654005,"7993":0.0554293349,"7994":0.0521938378,"7995":0.0491472018,"7996":0.0462784027,"7997":0.0435770599,"7998":0.0410333987,"7999":0.038638215,"8000":0.0,"8001":0.0000000147,"8002":0.0000000766,"8003":0.00000016,"8004":0.0000002388,"8005":0.0000003162,"8006":0.0000003938,"8007":0.0000004711,"8008":0.0000005482,"8009":0.000000625,"8010":0.0000007016,"8011":0.0000007779,"8012":0.000000854,"8013":0.0000009298,"8014":0.0000010054,"8015":0.0000010808,"8016":0.0000011559,"8017":0.0000012308,"8018":0.0000013054,"8019":0.0000013798,"8020":0.000001454,"8021":0.000001528,"8022":0.0000016017,"8023":0.0000016752,"8024":0.0000017484,"8025":0.0000018215,"8026":0.0000018943,"8027":0.0000019669,"8028":0.0000020393,"8029":0.0000021114,"8030":0.0000021834,"8031":0.0000022551,"8032":0.0000023266,"8033":0.0000023979,"8034":0.000002469,"8035":0.0000025399,"8036":0.0000026105,"8037":0.000002681,"8038":0.0000027512,"8039":0.0000028213,"8040":0.0000028911,"8041":0.0000029608,"8042":0.0000030302,"8043":0.0000030994,"8044":0.0000031685,"8045":0.0000032373,"8046":0.000003306,"8047":0.0000033744,"8048":0.0000034427,"8049":0.0000035107,"8050":0.0000035786,"8051":0.0000036463,"8052":0.0000037137,"8053":0.000003781,"8054":0.0000038481,"8055":0.0000039151,"8056":0.0000039818,"8057":0.0000040484,"8058":0.0000041147,"8059":0.0000041809,"8060":0.0000042469,"8061":0.0000043127,"8062":0.0000043784,"8063":0.0000044439,"8064":0.0000045091,"8065":0.0000045743,"8066":0.0000046392,"8067":0.000004704,"8068":0.0000047686,"8069":0.000004833,"8070":0.0000048972,"8071":0.0000049613,"8072":0.0000050252,"8073":0.000005089,"8074":0.0000051525,"8075":0.0000052159,"8076":0.0000052792,"8077":0.0000053423,"8078":0.0000054052,"8079":0.0000054679,"8080":0.0000055305,"8081":0.0000055929,"8082":0.0000056552,"8083":0.0000057173,"8084":0.0000057793,"8085":0.0000058411,"8086":0.0000058822,"8087":0.0000058951,"8088":0.0000058955,"8089":0.000005891,"8090":0.0000058813,"8091":0.0000058663,"8092":0.000005846,"8093":0.0000058207,"8094":0.0000057907,"8095":0.0000057553,"8096":0.0000057084,"8097":0.0000056248,"8098":0.000005459,"8099":0.0000051704,"8100":0.0000047383,"8101":0.0000041559,"8102":0.000003423,"8103":0.0000025431,"8104":0.0000015216,"8105":0.0000003644,"8106":-0.000000922,"8107":-0.000002331,"8108":-0.0000038561,"8109":-0.000005491,"8110":-0.0000072294,"8111":-0.0000090654,"8112":-0.0000109932,"8113":-0.0000130075,"8114":-0.0000151029,"8115":-0.0000172745,"8116":-0.0000195175,"8117":-0.0000218273,"8118":-0.0000241997,"8119":-0.0000266305,"8120":-0.0000291157,"8121":-0.0000316517,"8122":-0.0000342349,"8123":-0.0000368618,"8124":-0.0000395293,"8125":-0.0000422341,"8126":-0.0000449734,"8127":-0.0000477443,"8128":-0.0000505441,"8129":-0.0000533702,"8130":-0.00005622,"8131":-0.0000590912,"8132":-0.0000619815,"8133":-0.0000648886,"8134":-0.0000678104,"8135":-0.0000707449,"8136":-0.00007369,"8137":-0.0000766438,"8138":-0.0000796045,"8139":-0.0000825702,"8140":-0.0000855392,"8141":-0.0000885097,"8142":-0.0000914802,"8143":-0.000094449,"8144":-0.0000974145,"8145":-0.0001003752,"8146":-0.0001033296,"8147":-0.0001062762,"8148":-0.0001092137,"8149":-0.0001121405,"8150":-0.0001150554,"8151":-0.0001179569,"8152":-0.0001208438,"8153":-0.0001237147,"8154":-0.0001265685,"8155":-0.0001294039,"8156":-0.0001322195,"8157":-0.0001350144,"8158":-0.0001377872,"8159":-0.0001405368,"8160":-0.0001432622,"8161":-0.0001459622,"8162":-0.0001486358,"8163":-0.0001512819,"8164":-0.0001538995,"8165":-0.0001564876,"8166":-0.0001590453,"8167":-0.0001615717,"8168":-0.0001640658,"8169":-0.0001665268,"8170":-0.0001689539,"8171":-0.0001713463,"8172":-0.0001737032,"8173":-0.000176024,"8174":-0.000178308,"8175":-0.0001805544,"8176":-0.0001827629,"8177":-0.0001849327,"8178":-0.0001870635,"8179":-0.0001891548,"8180":-0.0001912061,"8181":-0.0001932172,"8182":-0.0001951877,"8183":-0.0001971174,"8184":-0.000199006,"8185":-0.0002008536,"8186":-0.0002026598,"8187":-0.0002044248,"8188":-0.0002061484,"8189":-0.0002078309,"8190":-0.0002094722,"8191":-0.0002110725,"8192":-0.0002126321,"8193":-0.0002141512,"8194":-0.00021563,"8195":-0.0002170691,"8196":-0.0002184686,"8197":-0.0002198291,"8198":-0.000221151,"8199":-0.0002224349,"8200":-0.0002236813,"8201":-0.0002248907,"8202":-0.0002260637,"8203":-0.0002272011,"8204":-0.0002283033,"8205":-0.0002293713,"8206":-0.0002304055,"8207":-0.0002314068,"8208":-0.0002323759,"8209":-0.0002333135,"8210":-0.0002342204,"8211":-0.0002350974,"8212":-0.0002359453,"8213":-0.0002367647,"8214":-0.0002375566,"8215":-0.0002383217,"8216":-0.0002390607,"8217":-0.0002397745,"8218":-0.0002404638,"8219":-0.0002411293,"8220":-0.000241772,"8221":-0.0002423924,"8222":-0.0002429913,"8223":-0.0002435695,"8224":-0.0002441277,"8225":-0.0002446665,"8226":-0.0002451867,"8227":-0.0002456888,"8228":-0.0002461737,"8229":-0.0002466419,"8230":-0.000247094,"8231":-0.0002475306,"8232":-0.0002479523,"8233":-0.0002483597,"8234":-0.0002487534,"8235":-0.0002491338,"8236":-0.0002495015,"8237":-0.0002498571,"8238":-0.0002502009,"8239":-0.0002505334,"8240":-0.0002508551,"8241":-0.0002511664,"8242":-0.0002514591,"8243":-0.0002516772,"8244":-0.0002517795,"8245":-0.0002518225,"8246":-0.0002518528,"8247":-0.0002518765,"8248":-0.0002518934,"8249":-0.0002519038,"8250":-0.0002519085,"8251":-0.0002519075,"8252":-0.0002518829,"8253":-0.0002516723,"8254":-0.0002507657,"8255":-0.0002486789,"8256":-0.0002455305,"8257":-0.0002418112,"8258":-0.0002378149,"8259":-0.0002336131,"8260":-0.0002292845,"8261":-0.0002249199,"8262":-0.0002205524,"8263":-0.0002161903,"8264":-0.0002118537,"8265":-0.0002075586,"8266":-0.0002033098,"8267":-0.0001991121,"8268":-0.0001949716,"8269":-0.0001908921,"8270":-0.0001868758,"8271":-0.0001829254,"8272":-0.0001790431,"8273":-0.0001752303,"8274":-0.0001714883,"8275":-0.0001678183,"8276":-0.000164221,"8277":-0.0001606971,"8278":-0.0001572469,"8279":-0.0001538707,"8280":-0.0001505685,"8281":-0.0001473403,"8282":-0.0001441857,"8283":-0.0001411045,"8284":-0.0001380962,"8285":-0.0001351602,"8286":-0.0001322957,"8287":-0.000129502,"8288":-0.0001267782,"8289":-0.0001241234,"8290":-0.0001215366,"8291":-0.0001190166,"8292":-0.0001165623,"8293":-0.0001141726,"8294":-0.0001118462,"8295":-0.0001095819,"8296":-0.0001073784,"8297":-0.0001052344,"8298":-0.0001031485,"8299":-0.0001011195,"8300":-0.0000991459,"8301":-0.0000972265,"8302":-0.0000953598,"8303":-0.0000935446,"8304":-0.0000917794,"8305":-0.0000900629,"8306":-0.0000883938,"8307":-0.0000867708,"8308":-0.0000851926,"8309":-0.0000836578,"8310":-0.0000821653,"8311":-0.0000807137,"8312":-0.0000793019,"8313":-0.0000779287,"8314":-0.0000765928,"8315":-0.0000752932,"8316":-0.0000740286,"8317":-0.0000727981,"8318":-0.0000716005,"8319":-0.0000704348,"8320":-0.0000692999,"8321":-0.000068195,"8322":-0.0000671189,"8323":-0.0000660708,"8324":-0.0000650498,"8325":-0.000064055,"8326":-0.0000630855,"8327":-0.0000621405,"8328":-0.0000612191,"8329":-0.0000603207,"8330":-0.0000594445,"8331":-0.0000585897,"8332":-0.0000577556,"8333":-0.0000569415,"8334":-0.0000561468,"8335":-0.0000553709,"8336":-0.0000546131,"8337":-0.0000538728,"8338":-0.0000531495,"8339":-0.0000524426,"8340":-0.0000517516,"8341":-0.0000510759,"8342":-0.0000504151,"8343":-0.0000497687,"8344":-0.0000491361,"8345":-0.0000485171,"8346":-0.0000479111,"8347":-0.0000473177,"8348":-0.0000467366,"8349":-0.0000461672,"8350":-0.0000456094,"8351":-0.0000450627,"8352":-0.0000445267,"8353":-0.0000440012,"8354":-0.0000434858,"8355":-0.0000429802,"8356":-0.0000424841,"8357":-0.0000419972,"8358":-0.0000415193,"8359":-0.0000410501,"8360":-0.0000405892,"8361":-0.0000401366,"8362":-0.0000396919,"8363":-0.0000392549,"8364":-0.0000388254,"8365":-0.0000384031,"8366":-0.0000379879,"8367":-0.0000375796,"8368":-0.0000371779,"8369":-0.0000367828,"8370":-0.0000363939,"8371":-0.0000360112,"8372":-0.0000356344,"8373":-0.0000352634,"8374":-0.0000348981,"8375":-0.0000345383,"8376":-0.0000341838,"8377":-0.0000338346,"8378":-0.0000334904,"8379":-0.0000331512,"8380":-0.0000328168,"8381":-0.0000324871,"8382":-0.000032162,"8383":-0.0000318413,"8384":-0.000031525,"8385":-0.0000312129,"8386":-0.000030905,"8387":-0.0000306011,"8388":-0.0000303012,"8389":-0.0000300051,"8390":-0.0000297128,"8391":-0.0000294242,"8392":-0.0000291391,"8393":-0.0000288576,"8394":-0.0000285795,"8395":-0.0000283047,"8396":-0.0000280332,"8397":-0.0000277649,"8398":-0.0000274997,"8399":-0.0000272376,"8400":-0.0000269784,"8401":-0.0000267222,"8402":-0.0000264689,"8403":-0.0000262184,"8404":-0.0000259706,"8405":-0.0000257255,"8406":-0.000025483,"8407":-0.0000252432,"8408":-0.0000250058,"8409":-0.0000247709,"8410":-0.0000245385,"8411":-0.0000243084,"8412":-0.0000240806,"8413":-0.0000238552,"8414":-0.0000236319,"8415":-0.0000234109,"8416":-0.000023192,"8417":-0.0000229753,"8418":-0.0000227606,"8419":-0.0000225479,"8420":-0.0000223373,"8421":-0.0000221286,"8422":-0.0000219218,"8423":-0.0000217169,"8424":-0.0000215139,"8425":-0.0000213127,"8426":-0.0000211133,"8427":-0.0000209156,"8428":-0.0000207197,"8429":-0.0000205255,"8430":-0.0000203329,"8431":-0.000020142,"8432":-0.0000199527,"8433":-0.000019765,"8434":-0.0000195789,"8435":-0.0000193943,"8436":-0.0000192112,"8437":-0.0000190295,"8438":-0.0000188494,"8439":-0.0000186706,"8440":-0.0000184933,"8441":-0.0000183174,"8442":-0.0000181429,"8443":-0.0000179697,"8444":-0.0000177978,"8445":-0.0000176272,"8446":-0.000017458,"8447":-0.0000172899,"8448":-0.0000171232,"8449":-0.0000169577,"8450":-0.0000167933,"8451":-0.0000166302,"8452":-0.0000164683,"8453":-0.0000163075,"8454":-0.0000161478,"8455":-0.0000159893,"8456":-0.0000158319,"8457":-0.0000156756,"8458":-0.0000155203,"8459":-0.0000153662,"8460":-0.0000152131,"8461":-0.000015061,"8462":-0.0000149099,"8463":-0.0000147598,"8464":-0.0000146108,"8465":-0.0000144627,"8466":-0.0000143156,"8467":-0.0000141694,"8468":-0.0000140242,"8469":-0.0000138799,"8470":-0.0000137365,"8471":-0.000013594,"8472":-0.0000134524,"8473":-0.0000133118,"8474":-0.0000131719,"8475":-0.000013033,"8476":-0.0000128948,"8477":-0.0000127576,"8478":-0.0000126211,"8479":-0.0000124855,"8480":-0.0000123506,"8481":-0.0000122166,"8482":-0.0000120834,"8483":-0.0000119509,"8484":-0.0000118192,"8485":-0.0000116883,"8486":-0.0000115581,"8487":-0.0000114287,"8488":-0.0000113,"8489":-0.000011172,"8490":-0.0000110447,"8491":-0.0000109182,"8492":-0.0000107923,"8493":-0.0000106672,"8494":-0.0000105427,"8495":-0.0000104189,"8496":-0.0000102958,"8497":-0.0000101733,"8498":-0.0000100515,"8499":-0.0000099304}} \ No newline at end of file +{ + "name": { + "0": "flow:IN:upstream_vessel", + "1": "flow:IN:upstream_vessel", + "2": "flow:IN:upstream_vessel", + "3": "flow:IN:upstream_vessel", + "4": "flow:IN:upstream_vessel", + "5": "flow:IN:upstream_vessel", + "6": "flow:IN:upstream_vessel", + "7": "flow:IN:upstream_vessel", + "8": "flow:IN:upstream_vessel", + "9": "flow:IN:upstream_vessel", + "10": "flow:IN:upstream_vessel", + "11": "flow:IN:upstream_vessel", + "12": "flow:IN:upstream_vessel", + "13": "flow:IN:upstream_vessel", + "14": "flow:IN:upstream_vessel", + "15": "flow:IN:upstream_vessel", + "16": "flow:IN:upstream_vessel", + "17": "flow:IN:upstream_vessel", + "18": "flow:IN:upstream_vessel", + "19": "flow:IN:upstream_vessel", + "20": "flow:IN:upstream_vessel", + "21": "flow:IN:upstream_vessel", + "22": "flow:IN:upstream_vessel", + "23": "flow:IN:upstream_vessel", + "24": "flow:IN:upstream_vessel", + "25": "flow:IN:upstream_vessel", + "26": "flow:IN:upstream_vessel", + "27": "flow:IN:upstream_vessel", + "28": "flow:IN:upstream_vessel", + "29": "flow:IN:upstream_vessel", + "30": "flow:IN:upstream_vessel", + "31": "flow:IN:upstream_vessel", + "32": "flow:IN:upstream_vessel", + "33": "flow:IN:upstream_vessel", + "34": "flow:IN:upstream_vessel", + "35": "flow:IN:upstream_vessel", + "36": "flow:IN:upstream_vessel", + "37": "flow:IN:upstream_vessel", + "38": "flow:IN:upstream_vessel", + "39": "flow:IN:upstream_vessel", + "40": "flow:IN:upstream_vessel", + "41": "flow:IN:upstream_vessel", + "42": "flow:IN:upstream_vessel", + "43": "flow:IN:upstream_vessel", + "44": "flow:IN:upstream_vessel", + "45": "flow:IN:upstream_vessel", + "46": "flow:IN:upstream_vessel", + "47": "flow:IN:upstream_vessel", + "48": "flow:IN:upstream_vessel", + "49": "flow:IN:upstream_vessel", + "50": "flow:IN:upstream_vessel", + "51": "flow:IN:upstream_vessel", + "52": "flow:IN:upstream_vessel", + "53": "flow:IN:upstream_vessel", + "54": "flow:IN:upstream_vessel", + "55": "flow:IN:upstream_vessel", + "56": "flow:IN:upstream_vessel", + "57": "flow:IN:upstream_vessel", + "58": "flow:IN:upstream_vessel", + "59": "flow:IN:upstream_vessel", + "60": "flow:IN:upstream_vessel", + "61": "flow:IN:upstream_vessel", + "62": "flow:IN:upstream_vessel", + "63": "flow:IN:upstream_vessel", + "64": "flow:IN:upstream_vessel", + "65": "flow:IN:upstream_vessel", + "66": "flow:IN:upstream_vessel", + "67": "flow:IN:upstream_vessel", + "68": "flow:IN:upstream_vessel", + "69": "flow:IN:upstream_vessel", + "70": "flow:IN:upstream_vessel", + "71": "flow:IN:upstream_vessel", + "72": "flow:IN:upstream_vessel", + "73": "flow:IN:upstream_vessel", + "74": "flow:IN:upstream_vessel", + "75": "flow:IN:upstream_vessel", + "76": "flow:IN:upstream_vessel", + "77": "flow:IN:upstream_vessel", + "78": "flow:IN:upstream_vessel", + "79": "flow:IN:upstream_vessel", + "80": "flow:IN:upstream_vessel", + "81": "flow:IN:upstream_vessel", + "82": "flow:IN:upstream_vessel", + "83": "flow:IN:upstream_vessel", + "84": "flow:IN:upstream_vessel", + "85": "flow:IN:upstream_vessel", + "86": "flow:IN:upstream_vessel", + "87": "flow:IN:upstream_vessel", + "88": "flow:IN:upstream_vessel", + "89": "flow:IN:upstream_vessel", + "90": "flow:IN:upstream_vessel", + "91": "flow:IN:upstream_vessel", + "92": "flow:IN:upstream_vessel", + "93": "flow:IN:upstream_vessel", + "94": "flow:IN:upstream_vessel", + "95": "flow:IN:upstream_vessel", + "96": "flow:IN:upstream_vessel", + "97": "flow:IN:upstream_vessel", + "98": "flow:IN:upstream_vessel", + "99": "flow:IN:upstream_vessel", + "100": "flow:IN:upstream_vessel", + "101": "flow:IN:upstream_vessel", + "102": "flow:IN:upstream_vessel", + "103": "flow:IN:upstream_vessel", + "104": "flow:IN:upstream_vessel", + "105": "flow:IN:upstream_vessel", + "106": "flow:IN:upstream_vessel", + "107": "flow:IN:upstream_vessel", + "108": "flow:IN:upstream_vessel", + "109": "flow:IN:upstream_vessel", + "110": "flow:IN:upstream_vessel", + "111": "flow:IN:upstream_vessel", + "112": "flow:IN:upstream_vessel", + "113": "flow:IN:upstream_vessel", + "114": "flow:IN:upstream_vessel", + "115": "flow:IN:upstream_vessel", + "116": "flow:IN:upstream_vessel", + "117": "flow:IN:upstream_vessel", + "118": "flow:IN:upstream_vessel", + "119": "flow:IN:upstream_vessel", + "120": "flow:IN:upstream_vessel", + "121": "flow:IN:upstream_vessel", + "122": "flow:IN:upstream_vessel", + "123": "flow:IN:upstream_vessel", + "124": "flow:IN:upstream_vessel", + "125": "flow:IN:upstream_vessel", + "126": "flow:IN:upstream_vessel", + "127": "flow:IN:upstream_vessel", + "128": "flow:IN:upstream_vessel", + "129": "flow:IN:upstream_vessel", + "130": "flow:IN:upstream_vessel", + "131": "flow:IN:upstream_vessel", + "132": "flow:IN:upstream_vessel", + "133": "flow:IN:upstream_vessel", + "134": "flow:IN:upstream_vessel", + "135": "flow:IN:upstream_vessel", + "136": "flow:IN:upstream_vessel", + "137": "flow:IN:upstream_vessel", + "138": "flow:IN:upstream_vessel", + "139": "flow:IN:upstream_vessel", + "140": "flow:IN:upstream_vessel", + "141": "flow:IN:upstream_vessel", + "142": "flow:IN:upstream_vessel", + "143": "flow:IN:upstream_vessel", + "144": "flow:IN:upstream_vessel", + "145": "flow:IN:upstream_vessel", + "146": "flow:IN:upstream_vessel", + "147": "flow:IN:upstream_vessel", + "148": "flow:IN:upstream_vessel", + "149": "flow:IN:upstream_vessel", + "150": "flow:IN:upstream_vessel", + "151": "flow:IN:upstream_vessel", + "152": "flow:IN:upstream_vessel", + "153": "flow:IN:upstream_vessel", + "154": "flow:IN:upstream_vessel", + "155": "flow:IN:upstream_vessel", + "156": "flow:IN:upstream_vessel", + "157": "flow:IN:upstream_vessel", + "158": "flow:IN:upstream_vessel", + "159": "flow:IN:upstream_vessel", + "160": "flow:IN:upstream_vessel", + "161": "flow:IN:upstream_vessel", + "162": "flow:IN:upstream_vessel", + "163": "flow:IN:upstream_vessel", + "164": "flow:IN:upstream_vessel", + "165": "flow:IN:upstream_vessel", + "166": "flow:IN:upstream_vessel", + "167": "flow:IN:upstream_vessel", + "168": "flow:IN:upstream_vessel", + "169": "flow:IN:upstream_vessel", + "170": "flow:IN:upstream_vessel", + "171": "flow:IN:upstream_vessel", + "172": "flow:IN:upstream_vessel", + "173": "flow:IN:upstream_vessel", + "174": "flow:IN:upstream_vessel", + "175": "flow:IN:upstream_vessel", + "176": "flow:IN:upstream_vessel", + "177": "flow:IN:upstream_vessel", + "178": "flow:IN:upstream_vessel", + "179": "flow:IN:upstream_vessel", + "180": "flow:IN:upstream_vessel", + "181": "flow:IN:upstream_vessel", + "182": "flow:IN:upstream_vessel", + "183": "flow:IN:upstream_vessel", + "184": "flow:IN:upstream_vessel", + "185": "flow:IN:upstream_vessel", + "186": "flow:IN:upstream_vessel", + "187": "flow:IN:upstream_vessel", + "188": "flow:IN:upstream_vessel", + "189": "flow:IN:upstream_vessel", + "190": "flow:IN:upstream_vessel", + "191": "flow:IN:upstream_vessel", + "192": "flow:IN:upstream_vessel", + "193": "flow:IN:upstream_vessel", + "194": "flow:IN:upstream_vessel", + "195": "flow:IN:upstream_vessel", + "196": "flow:IN:upstream_vessel", + "197": "flow:IN:upstream_vessel", + "198": "flow:IN:upstream_vessel", + "199": "flow:IN:upstream_vessel", + "200": "flow:IN:upstream_vessel", + "201": "flow:IN:upstream_vessel", + "202": "flow:IN:upstream_vessel", + "203": "flow:IN:upstream_vessel", + "204": "flow:IN:upstream_vessel", + "205": "flow:IN:upstream_vessel", + "206": "flow:IN:upstream_vessel", + "207": "flow:IN:upstream_vessel", + "208": "flow:IN:upstream_vessel", + "209": "flow:IN:upstream_vessel", + "210": "flow:IN:upstream_vessel", + "211": "flow:IN:upstream_vessel", + "212": "flow:IN:upstream_vessel", + "213": "flow:IN:upstream_vessel", + "214": "flow:IN:upstream_vessel", + "215": "flow:IN:upstream_vessel", + "216": "flow:IN:upstream_vessel", + "217": "flow:IN:upstream_vessel", + "218": "flow:IN:upstream_vessel", + "219": "flow:IN:upstream_vessel", + "220": "flow:IN:upstream_vessel", + "221": "flow:IN:upstream_vessel", + "222": "flow:IN:upstream_vessel", + "223": "flow:IN:upstream_vessel", + "224": "flow:IN:upstream_vessel", + "225": "flow:IN:upstream_vessel", + "226": "flow:IN:upstream_vessel", + "227": "flow:IN:upstream_vessel", + "228": "flow:IN:upstream_vessel", + "229": "flow:IN:upstream_vessel", + "230": "flow:IN:upstream_vessel", + "231": "flow:IN:upstream_vessel", + "232": "flow:IN:upstream_vessel", + "233": "flow:IN:upstream_vessel", + "234": "flow:IN:upstream_vessel", + "235": "flow:IN:upstream_vessel", + "236": "flow:IN:upstream_vessel", + "237": "flow:IN:upstream_vessel", + "238": "flow:IN:upstream_vessel", + "239": "flow:IN:upstream_vessel", + "240": "flow:IN:upstream_vessel", + "241": "flow:IN:upstream_vessel", + "242": "flow:IN:upstream_vessel", + "243": "flow:IN:upstream_vessel", + "244": "flow:IN:upstream_vessel", + "245": "flow:IN:upstream_vessel", + "246": "flow:IN:upstream_vessel", + "247": "flow:IN:upstream_vessel", + "248": "flow:IN:upstream_vessel", + "249": "flow:IN:upstream_vessel", + "250": "flow:IN:upstream_vessel", + "251": "flow:IN:upstream_vessel", + "252": "flow:IN:upstream_vessel", + "253": "flow:IN:upstream_vessel", + "254": "flow:IN:upstream_vessel", + "255": "flow:IN:upstream_vessel", + "256": "flow:IN:upstream_vessel", + "257": "flow:IN:upstream_vessel", + "258": "flow:IN:upstream_vessel", + "259": "flow:IN:upstream_vessel", + "260": "flow:IN:upstream_vessel", + "261": "flow:IN:upstream_vessel", + "262": "flow:IN:upstream_vessel", + "263": "flow:IN:upstream_vessel", + "264": "flow:IN:upstream_vessel", + "265": "flow:IN:upstream_vessel", + "266": "flow:IN:upstream_vessel", + "267": "flow:IN:upstream_vessel", + "268": "flow:IN:upstream_vessel", + "269": "flow:IN:upstream_vessel", + "270": "flow:IN:upstream_vessel", + "271": "flow:IN:upstream_vessel", + "272": "flow:IN:upstream_vessel", + "273": "flow:IN:upstream_vessel", + "274": "flow:IN:upstream_vessel", + "275": "flow:IN:upstream_vessel", + "276": "flow:IN:upstream_vessel", + "277": "flow:IN:upstream_vessel", + "278": "flow:IN:upstream_vessel", + "279": "flow:IN:upstream_vessel", + "280": "flow:IN:upstream_vessel", + "281": "flow:IN:upstream_vessel", + "282": "flow:IN:upstream_vessel", + "283": "flow:IN:upstream_vessel", + "284": "flow:IN:upstream_vessel", + "285": "flow:IN:upstream_vessel", + "286": "flow:IN:upstream_vessel", + "287": "flow:IN:upstream_vessel", + "288": "flow:IN:upstream_vessel", + "289": "flow:IN:upstream_vessel", + "290": "flow:IN:upstream_vessel", + "291": "flow:IN:upstream_vessel", + "292": "flow:IN:upstream_vessel", + "293": "flow:IN:upstream_vessel", + "294": "flow:IN:upstream_vessel", + "295": "flow:IN:upstream_vessel", + "296": "flow:IN:upstream_vessel", + "297": "flow:IN:upstream_vessel", + "298": "flow:IN:upstream_vessel", + "299": "flow:IN:upstream_vessel", + "300": "flow:IN:upstream_vessel", + "301": "flow:IN:upstream_vessel", + "302": "flow:IN:upstream_vessel", + "303": "flow:IN:upstream_vessel", + "304": "flow:IN:upstream_vessel", + "305": "flow:IN:upstream_vessel", + "306": "flow:IN:upstream_vessel", + "307": "flow:IN:upstream_vessel", + "308": "flow:IN:upstream_vessel", + "309": "flow:IN:upstream_vessel", + "310": "flow:IN:upstream_vessel", + "311": "flow:IN:upstream_vessel", + "312": "flow:IN:upstream_vessel", + "313": "flow:IN:upstream_vessel", + "314": "flow:IN:upstream_vessel", + "315": "flow:IN:upstream_vessel", + "316": "flow:IN:upstream_vessel", + "317": "flow:IN:upstream_vessel", + "318": "flow:IN:upstream_vessel", + "319": "flow:IN:upstream_vessel", + "320": "flow:IN:upstream_vessel", + "321": "flow:IN:upstream_vessel", + "322": "flow:IN:upstream_vessel", + "323": "flow:IN:upstream_vessel", + "324": "flow:IN:upstream_vessel", + "325": "flow:IN:upstream_vessel", + "326": "flow:IN:upstream_vessel", + "327": "flow:IN:upstream_vessel", + "328": "flow:IN:upstream_vessel", + "329": "flow:IN:upstream_vessel", + "330": "flow:IN:upstream_vessel", + "331": "flow:IN:upstream_vessel", + "332": "flow:IN:upstream_vessel", + "333": "flow:IN:upstream_vessel", + "334": "flow:IN:upstream_vessel", + "335": "flow:IN:upstream_vessel", + "336": "flow:IN:upstream_vessel", + "337": "flow:IN:upstream_vessel", + "338": "flow:IN:upstream_vessel", + "339": "flow:IN:upstream_vessel", + "340": "flow:IN:upstream_vessel", + "341": "flow:IN:upstream_vessel", + "342": "flow:IN:upstream_vessel", + "343": "flow:IN:upstream_vessel", + "344": "flow:IN:upstream_vessel", + "345": "flow:IN:upstream_vessel", + "346": "flow:IN:upstream_vessel", + "347": "flow:IN:upstream_vessel", + "348": "flow:IN:upstream_vessel", + "349": "flow:IN:upstream_vessel", + "350": "flow:IN:upstream_vessel", + "351": "flow:IN:upstream_vessel", + "352": "flow:IN:upstream_vessel", + "353": "flow:IN:upstream_vessel", + "354": "flow:IN:upstream_vessel", + "355": "flow:IN:upstream_vessel", + "356": "flow:IN:upstream_vessel", + "357": "flow:IN:upstream_vessel", + "358": "flow:IN:upstream_vessel", + "359": "flow:IN:upstream_vessel", + "360": "flow:IN:upstream_vessel", + "361": "flow:IN:upstream_vessel", + "362": "flow:IN:upstream_vessel", + "363": "flow:IN:upstream_vessel", + "364": "flow:IN:upstream_vessel", + "365": "flow:IN:upstream_vessel", + "366": "flow:IN:upstream_vessel", + "367": "flow:IN:upstream_vessel", + "368": "flow:IN:upstream_vessel", + "369": "flow:IN:upstream_vessel", + "370": "flow:IN:upstream_vessel", + "371": "flow:IN:upstream_vessel", + "372": "flow:IN:upstream_vessel", + "373": "flow:IN:upstream_vessel", + "374": "flow:IN:upstream_vessel", + "375": "flow:IN:upstream_vessel", + "376": "flow:IN:upstream_vessel", + "377": "flow:IN:upstream_vessel", + "378": "flow:IN:upstream_vessel", + "379": "flow:IN:upstream_vessel", + "380": "flow:IN:upstream_vessel", + "381": "flow:IN:upstream_vessel", + "382": "flow:IN:upstream_vessel", + "383": "flow:IN:upstream_vessel", + "384": "flow:IN:upstream_vessel", + "385": "flow:IN:upstream_vessel", + "386": "flow:IN:upstream_vessel", + "387": "flow:IN:upstream_vessel", + "388": "flow:IN:upstream_vessel", + "389": "flow:IN:upstream_vessel", + "390": "flow:IN:upstream_vessel", + "391": "flow:IN:upstream_vessel", + "392": "flow:IN:upstream_vessel", + "393": "flow:IN:upstream_vessel", + "394": "flow:IN:upstream_vessel", + "395": "flow:IN:upstream_vessel", + "396": "flow:IN:upstream_vessel", + "397": "flow:IN:upstream_vessel", + "398": "flow:IN:upstream_vessel", + "399": "flow:IN:upstream_vessel", + "400": "flow:IN:upstream_vessel", + "401": "flow:IN:upstream_vessel", + "402": "flow:IN:upstream_vessel", + "403": "flow:IN:upstream_vessel", + "404": "flow:IN:upstream_vessel", + "405": "flow:IN:upstream_vessel", + "406": "flow:IN:upstream_vessel", + "407": "flow:IN:upstream_vessel", + "408": "flow:IN:upstream_vessel", + "409": "flow:IN:upstream_vessel", + "410": "flow:IN:upstream_vessel", + "411": "flow:IN:upstream_vessel", + "412": "flow:IN:upstream_vessel", + "413": "flow:IN:upstream_vessel", + "414": "flow:IN:upstream_vessel", + "415": "flow:IN:upstream_vessel", + "416": "flow:IN:upstream_vessel", + "417": "flow:IN:upstream_vessel", + "418": "flow:IN:upstream_vessel", + "419": "flow:IN:upstream_vessel", + "420": "flow:IN:upstream_vessel", + "421": "flow:IN:upstream_vessel", + "422": "flow:IN:upstream_vessel", + "423": "flow:IN:upstream_vessel", + "424": "flow:IN:upstream_vessel", + "425": "flow:IN:upstream_vessel", + "426": "flow:IN:upstream_vessel", + "427": "flow:IN:upstream_vessel", + "428": "flow:IN:upstream_vessel", + "429": "flow:IN:upstream_vessel", + "430": "flow:IN:upstream_vessel", + "431": "flow:IN:upstream_vessel", + "432": "flow:IN:upstream_vessel", + "433": "flow:IN:upstream_vessel", + "434": "flow:IN:upstream_vessel", + "435": "flow:IN:upstream_vessel", + "436": "flow:IN:upstream_vessel", + "437": "flow:IN:upstream_vessel", + "438": "flow:IN:upstream_vessel", + "439": "flow:IN:upstream_vessel", + "440": "flow:IN:upstream_vessel", + "441": "flow:IN:upstream_vessel", + "442": "flow:IN:upstream_vessel", + "443": "flow:IN:upstream_vessel", + "444": "flow:IN:upstream_vessel", + "445": "flow:IN:upstream_vessel", + "446": "flow:IN:upstream_vessel", + "447": "flow:IN:upstream_vessel", + "448": "flow:IN:upstream_vessel", + "449": "flow:IN:upstream_vessel", + "450": "flow:IN:upstream_vessel", + "451": "flow:IN:upstream_vessel", + "452": "flow:IN:upstream_vessel", + "453": "flow:IN:upstream_vessel", + "454": "flow:IN:upstream_vessel", + "455": "flow:IN:upstream_vessel", + "456": "flow:IN:upstream_vessel", + "457": "flow:IN:upstream_vessel", + "458": "flow:IN:upstream_vessel", + "459": "flow:IN:upstream_vessel", + "460": "flow:IN:upstream_vessel", + "461": "flow:IN:upstream_vessel", + "462": "flow:IN:upstream_vessel", + "463": "flow:IN:upstream_vessel", + "464": "flow:IN:upstream_vessel", + "465": "flow:IN:upstream_vessel", + "466": "flow:IN:upstream_vessel", + "467": "flow:IN:upstream_vessel", + "468": "flow:IN:upstream_vessel", + "469": "flow:IN:upstream_vessel", + "470": "flow:IN:upstream_vessel", + "471": "flow:IN:upstream_vessel", + "472": "flow:IN:upstream_vessel", + "473": "flow:IN:upstream_vessel", + "474": "flow:IN:upstream_vessel", + "475": "flow:IN:upstream_vessel", + "476": "flow:IN:upstream_vessel", + "477": "flow:IN:upstream_vessel", + "478": "flow:IN:upstream_vessel", + "479": "flow:IN:upstream_vessel", + "480": "flow:IN:upstream_vessel", + "481": "flow:IN:upstream_vessel", + "482": "flow:IN:upstream_vessel", + "483": "flow:IN:upstream_vessel", + "484": "flow:IN:upstream_vessel", + "485": "flow:IN:upstream_vessel", + "486": "flow:IN:upstream_vessel", + "487": "flow:IN:upstream_vessel", + "488": "flow:IN:upstream_vessel", + "489": "flow:IN:upstream_vessel", + "490": "flow:IN:upstream_vessel", + "491": "flow:IN:upstream_vessel", + "492": "flow:IN:upstream_vessel", + "493": "flow:IN:upstream_vessel", + "494": "flow:IN:upstream_vessel", + "495": "flow:IN:upstream_vessel", + "496": "flow:IN:upstream_vessel", + "497": "flow:IN:upstream_vessel", + "498": "flow:IN:upstream_vessel", + "499": "flow:IN:upstream_vessel", + "500": "pressure:IN:upstream_vessel", + "501": "pressure:IN:upstream_vessel", + "502": "pressure:IN:upstream_vessel", + "503": "pressure:IN:upstream_vessel", + "504": "pressure:IN:upstream_vessel", + "505": "pressure:IN:upstream_vessel", + "506": "pressure:IN:upstream_vessel", + "507": "pressure:IN:upstream_vessel", + "508": "pressure:IN:upstream_vessel", + "509": "pressure:IN:upstream_vessel", + "510": "pressure:IN:upstream_vessel", + "511": "pressure:IN:upstream_vessel", + "512": "pressure:IN:upstream_vessel", + "513": "pressure:IN:upstream_vessel", + "514": "pressure:IN:upstream_vessel", + "515": "pressure:IN:upstream_vessel", + "516": "pressure:IN:upstream_vessel", + "517": "pressure:IN:upstream_vessel", + "518": "pressure:IN:upstream_vessel", + "519": "pressure:IN:upstream_vessel", + "520": "pressure:IN:upstream_vessel", + "521": "pressure:IN:upstream_vessel", + "522": "pressure:IN:upstream_vessel", + "523": "pressure:IN:upstream_vessel", + "524": "pressure:IN:upstream_vessel", + "525": "pressure:IN:upstream_vessel", + "526": "pressure:IN:upstream_vessel", + "527": "pressure:IN:upstream_vessel", + "528": "pressure:IN:upstream_vessel", + "529": "pressure:IN:upstream_vessel", + "530": "pressure:IN:upstream_vessel", + "531": "pressure:IN:upstream_vessel", + "532": "pressure:IN:upstream_vessel", + "533": "pressure:IN:upstream_vessel", + "534": "pressure:IN:upstream_vessel", + "535": "pressure:IN:upstream_vessel", + "536": "pressure:IN:upstream_vessel", + "537": "pressure:IN:upstream_vessel", + "538": "pressure:IN:upstream_vessel", + "539": "pressure:IN:upstream_vessel", + "540": "pressure:IN:upstream_vessel", + "541": "pressure:IN:upstream_vessel", + "542": "pressure:IN:upstream_vessel", + "543": "pressure:IN:upstream_vessel", + "544": "pressure:IN:upstream_vessel", + "545": "pressure:IN:upstream_vessel", + "546": "pressure:IN:upstream_vessel", + "547": "pressure:IN:upstream_vessel", + "548": "pressure:IN:upstream_vessel", + "549": "pressure:IN:upstream_vessel", + "550": "pressure:IN:upstream_vessel", + "551": "pressure:IN:upstream_vessel", + "552": "pressure:IN:upstream_vessel", + "553": "pressure:IN:upstream_vessel", + "554": "pressure:IN:upstream_vessel", + "555": "pressure:IN:upstream_vessel", + "556": "pressure:IN:upstream_vessel", + "557": "pressure:IN:upstream_vessel", + "558": "pressure:IN:upstream_vessel", + "559": "pressure:IN:upstream_vessel", + "560": "pressure:IN:upstream_vessel", + "561": "pressure:IN:upstream_vessel", + "562": "pressure:IN:upstream_vessel", + "563": "pressure:IN:upstream_vessel", + "564": "pressure:IN:upstream_vessel", + "565": "pressure:IN:upstream_vessel", + "566": "pressure:IN:upstream_vessel", + "567": "pressure:IN:upstream_vessel", + "568": "pressure:IN:upstream_vessel", + "569": "pressure:IN:upstream_vessel", + "570": "pressure:IN:upstream_vessel", + "571": "pressure:IN:upstream_vessel", + "572": "pressure:IN:upstream_vessel", + "573": "pressure:IN:upstream_vessel", + "574": "pressure:IN:upstream_vessel", + "575": "pressure:IN:upstream_vessel", + "576": "pressure:IN:upstream_vessel", + "577": "pressure:IN:upstream_vessel", + "578": "pressure:IN:upstream_vessel", + "579": "pressure:IN:upstream_vessel", + "580": "pressure:IN:upstream_vessel", + "581": "pressure:IN:upstream_vessel", + "582": "pressure:IN:upstream_vessel", + "583": "pressure:IN:upstream_vessel", + "584": "pressure:IN:upstream_vessel", + "585": "pressure:IN:upstream_vessel", + "586": "pressure:IN:upstream_vessel", + "587": "pressure:IN:upstream_vessel", + "588": "pressure:IN:upstream_vessel", + "589": "pressure:IN:upstream_vessel", + "590": "pressure:IN:upstream_vessel", + "591": "pressure:IN:upstream_vessel", + "592": "pressure:IN:upstream_vessel", + "593": "pressure:IN:upstream_vessel", + "594": "pressure:IN:upstream_vessel", + "595": "pressure:IN:upstream_vessel", + "596": "pressure:IN:upstream_vessel", + "597": "pressure:IN:upstream_vessel", + "598": "pressure:IN:upstream_vessel", + "599": "pressure:IN:upstream_vessel", + "600": "pressure:IN:upstream_vessel", + "601": "pressure:IN:upstream_vessel", + "602": "pressure:IN:upstream_vessel", + "603": "pressure:IN:upstream_vessel", + "604": "pressure:IN:upstream_vessel", + "605": "pressure:IN:upstream_vessel", + "606": "pressure:IN:upstream_vessel", + "607": "pressure:IN:upstream_vessel", + "608": "pressure:IN:upstream_vessel", + "609": "pressure:IN:upstream_vessel", + "610": "pressure:IN:upstream_vessel", + "611": "pressure:IN:upstream_vessel", + "612": "pressure:IN:upstream_vessel", + "613": "pressure:IN:upstream_vessel", + "614": "pressure:IN:upstream_vessel", + "615": "pressure:IN:upstream_vessel", + "616": "pressure:IN:upstream_vessel", + "617": "pressure:IN:upstream_vessel", + "618": "pressure:IN:upstream_vessel", + "619": "pressure:IN:upstream_vessel", + "620": "pressure:IN:upstream_vessel", + "621": "pressure:IN:upstream_vessel", + "622": "pressure:IN:upstream_vessel", + "623": "pressure:IN:upstream_vessel", + "624": "pressure:IN:upstream_vessel", + "625": "pressure:IN:upstream_vessel", + "626": "pressure:IN:upstream_vessel", + "627": "pressure:IN:upstream_vessel", + "628": "pressure:IN:upstream_vessel", + "629": "pressure:IN:upstream_vessel", + "630": "pressure:IN:upstream_vessel", + "631": "pressure:IN:upstream_vessel", + "632": "pressure:IN:upstream_vessel", + "633": "pressure:IN:upstream_vessel", + "634": "pressure:IN:upstream_vessel", + "635": "pressure:IN:upstream_vessel", + "636": "pressure:IN:upstream_vessel", + "637": "pressure:IN:upstream_vessel", + "638": "pressure:IN:upstream_vessel", + "639": "pressure:IN:upstream_vessel", + "640": "pressure:IN:upstream_vessel", + "641": "pressure:IN:upstream_vessel", + "642": "pressure:IN:upstream_vessel", + "643": "pressure:IN:upstream_vessel", + "644": "pressure:IN:upstream_vessel", + "645": "pressure:IN:upstream_vessel", + "646": "pressure:IN:upstream_vessel", + "647": "pressure:IN:upstream_vessel", + "648": "pressure:IN:upstream_vessel", + "649": "pressure:IN:upstream_vessel", + "650": "pressure:IN:upstream_vessel", + "651": "pressure:IN:upstream_vessel", + "652": "pressure:IN:upstream_vessel", + "653": "pressure:IN:upstream_vessel", + "654": "pressure:IN:upstream_vessel", + "655": "pressure:IN:upstream_vessel", + "656": "pressure:IN:upstream_vessel", + "657": "pressure:IN:upstream_vessel", + "658": "pressure:IN:upstream_vessel", + "659": "pressure:IN:upstream_vessel", + "660": "pressure:IN:upstream_vessel", + "661": "pressure:IN:upstream_vessel", + "662": "pressure:IN:upstream_vessel", + "663": "pressure:IN:upstream_vessel", + "664": "pressure:IN:upstream_vessel", + "665": "pressure:IN:upstream_vessel", + "666": "pressure:IN:upstream_vessel", + "667": "pressure:IN:upstream_vessel", + "668": "pressure:IN:upstream_vessel", + "669": "pressure:IN:upstream_vessel", + "670": "pressure:IN:upstream_vessel", + "671": "pressure:IN:upstream_vessel", + "672": "pressure:IN:upstream_vessel", + "673": "pressure:IN:upstream_vessel", + "674": "pressure:IN:upstream_vessel", + "675": "pressure:IN:upstream_vessel", + "676": "pressure:IN:upstream_vessel", + "677": "pressure:IN:upstream_vessel", + "678": "pressure:IN:upstream_vessel", + "679": "pressure:IN:upstream_vessel", + "680": "pressure:IN:upstream_vessel", + "681": "pressure:IN:upstream_vessel", + "682": "pressure:IN:upstream_vessel", + "683": "pressure:IN:upstream_vessel", + "684": "pressure:IN:upstream_vessel", + "685": "pressure:IN:upstream_vessel", + "686": "pressure:IN:upstream_vessel", + "687": "pressure:IN:upstream_vessel", + "688": "pressure:IN:upstream_vessel", + "689": "pressure:IN:upstream_vessel", + "690": "pressure:IN:upstream_vessel", + "691": "pressure:IN:upstream_vessel", + "692": "pressure:IN:upstream_vessel", + "693": "pressure:IN:upstream_vessel", + "694": "pressure:IN:upstream_vessel", + "695": "pressure:IN:upstream_vessel", + "696": "pressure:IN:upstream_vessel", + "697": "pressure:IN:upstream_vessel", + "698": "pressure:IN:upstream_vessel", + "699": "pressure:IN:upstream_vessel", + "700": "pressure:IN:upstream_vessel", + "701": "pressure:IN:upstream_vessel", + "702": "pressure:IN:upstream_vessel", + "703": "pressure:IN:upstream_vessel", + "704": "pressure:IN:upstream_vessel", + "705": "pressure:IN:upstream_vessel", + "706": "pressure:IN:upstream_vessel", + "707": "pressure:IN:upstream_vessel", + "708": "pressure:IN:upstream_vessel", + "709": "pressure:IN:upstream_vessel", + "710": "pressure:IN:upstream_vessel", + "711": "pressure:IN:upstream_vessel", + "712": "pressure:IN:upstream_vessel", + "713": "pressure:IN:upstream_vessel", + "714": "pressure:IN:upstream_vessel", + "715": "pressure:IN:upstream_vessel", + "716": "pressure:IN:upstream_vessel", + "717": "pressure:IN:upstream_vessel", + "718": "pressure:IN:upstream_vessel", + "719": "pressure:IN:upstream_vessel", + "720": "pressure:IN:upstream_vessel", + "721": "pressure:IN:upstream_vessel", + "722": "pressure:IN:upstream_vessel", + "723": "pressure:IN:upstream_vessel", + "724": "pressure:IN:upstream_vessel", + "725": "pressure:IN:upstream_vessel", + "726": "pressure:IN:upstream_vessel", + "727": "pressure:IN:upstream_vessel", + "728": "pressure:IN:upstream_vessel", + "729": "pressure:IN:upstream_vessel", + "730": "pressure:IN:upstream_vessel", + "731": "pressure:IN:upstream_vessel", + "732": "pressure:IN:upstream_vessel", + "733": "pressure:IN:upstream_vessel", + "734": "pressure:IN:upstream_vessel", + "735": "pressure:IN:upstream_vessel", + "736": "pressure:IN:upstream_vessel", + "737": "pressure:IN:upstream_vessel", + "738": "pressure:IN:upstream_vessel", + "739": "pressure:IN:upstream_vessel", + "740": "pressure:IN:upstream_vessel", + "741": "pressure:IN:upstream_vessel", + "742": "pressure:IN:upstream_vessel", + "743": "pressure:IN:upstream_vessel", + "744": "pressure:IN:upstream_vessel", + "745": "pressure:IN:upstream_vessel", + "746": "pressure:IN:upstream_vessel", + "747": "pressure:IN:upstream_vessel", + "748": "pressure:IN:upstream_vessel", + "749": "pressure:IN:upstream_vessel", + "750": "pressure:IN:upstream_vessel", + "751": "pressure:IN:upstream_vessel", + "752": "pressure:IN:upstream_vessel", + "753": "pressure:IN:upstream_vessel", + "754": "pressure:IN:upstream_vessel", + "755": "pressure:IN:upstream_vessel", + "756": "pressure:IN:upstream_vessel", + "757": "pressure:IN:upstream_vessel", + "758": "pressure:IN:upstream_vessel", + "759": "pressure:IN:upstream_vessel", + "760": "pressure:IN:upstream_vessel", + "761": "pressure:IN:upstream_vessel", + "762": "pressure:IN:upstream_vessel", + "763": "pressure:IN:upstream_vessel", + "764": "pressure:IN:upstream_vessel", + "765": "pressure:IN:upstream_vessel", + "766": "pressure:IN:upstream_vessel", + "767": "pressure:IN:upstream_vessel", + "768": "pressure:IN:upstream_vessel", + "769": "pressure:IN:upstream_vessel", + "770": "pressure:IN:upstream_vessel", + "771": "pressure:IN:upstream_vessel", + "772": "pressure:IN:upstream_vessel", + "773": "pressure:IN:upstream_vessel", + "774": "pressure:IN:upstream_vessel", + "775": "pressure:IN:upstream_vessel", + "776": "pressure:IN:upstream_vessel", + "777": "pressure:IN:upstream_vessel", + "778": "pressure:IN:upstream_vessel", + "779": "pressure:IN:upstream_vessel", + "780": "pressure:IN:upstream_vessel", + "781": "pressure:IN:upstream_vessel", + "782": "pressure:IN:upstream_vessel", + "783": "pressure:IN:upstream_vessel", + "784": "pressure:IN:upstream_vessel", + "785": "pressure:IN:upstream_vessel", + "786": "pressure:IN:upstream_vessel", + "787": "pressure:IN:upstream_vessel", + "788": "pressure:IN:upstream_vessel", + "789": "pressure:IN:upstream_vessel", + "790": "pressure:IN:upstream_vessel", + "791": "pressure:IN:upstream_vessel", + "792": "pressure:IN:upstream_vessel", + "793": "pressure:IN:upstream_vessel", + "794": "pressure:IN:upstream_vessel", + "795": "pressure:IN:upstream_vessel", + "796": "pressure:IN:upstream_vessel", + "797": "pressure:IN:upstream_vessel", + "798": "pressure:IN:upstream_vessel", + "799": "pressure:IN:upstream_vessel", + "800": "pressure:IN:upstream_vessel", + "801": "pressure:IN:upstream_vessel", + "802": "pressure:IN:upstream_vessel", + "803": "pressure:IN:upstream_vessel", + "804": "pressure:IN:upstream_vessel", + "805": "pressure:IN:upstream_vessel", + "806": "pressure:IN:upstream_vessel", + "807": "pressure:IN:upstream_vessel", + "808": "pressure:IN:upstream_vessel", + "809": "pressure:IN:upstream_vessel", + "810": "pressure:IN:upstream_vessel", + "811": "pressure:IN:upstream_vessel", + "812": "pressure:IN:upstream_vessel", + "813": "pressure:IN:upstream_vessel", + "814": "pressure:IN:upstream_vessel", + "815": "pressure:IN:upstream_vessel", + "816": "pressure:IN:upstream_vessel", + "817": "pressure:IN:upstream_vessel", + "818": "pressure:IN:upstream_vessel", + "819": "pressure:IN:upstream_vessel", + "820": "pressure:IN:upstream_vessel", + "821": "pressure:IN:upstream_vessel", + "822": "pressure:IN:upstream_vessel", + "823": "pressure:IN:upstream_vessel", + "824": "pressure:IN:upstream_vessel", + "825": "pressure:IN:upstream_vessel", + "826": "pressure:IN:upstream_vessel", + "827": "pressure:IN:upstream_vessel", + "828": "pressure:IN:upstream_vessel", + "829": "pressure:IN:upstream_vessel", + "830": "pressure:IN:upstream_vessel", + "831": "pressure:IN:upstream_vessel", + "832": "pressure:IN:upstream_vessel", + "833": "pressure:IN:upstream_vessel", + "834": "pressure:IN:upstream_vessel", + "835": "pressure:IN:upstream_vessel", + "836": "pressure:IN:upstream_vessel", + "837": "pressure:IN:upstream_vessel", + "838": "pressure:IN:upstream_vessel", + "839": "pressure:IN:upstream_vessel", + "840": "pressure:IN:upstream_vessel", + "841": "pressure:IN:upstream_vessel", + "842": "pressure:IN:upstream_vessel", + "843": "pressure:IN:upstream_vessel", + "844": "pressure:IN:upstream_vessel", + "845": "pressure:IN:upstream_vessel", + "846": "pressure:IN:upstream_vessel", + "847": "pressure:IN:upstream_vessel", + "848": "pressure:IN:upstream_vessel", + "849": "pressure:IN:upstream_vessel", + "850": "pressure:IN:upstream_vessel", + "851": "pressure:IN:upstream_vessel", + "852": "pressure:IN:upstream_vessel", + "853": "pressure:IN:upstream_vessel", + "854": "pressure:IN:upstream_vessel", + "855": "pressure:IN:upstream_vessel", + "856": "pressure:IN:upstream_vessel", + "857": "pressure:IN:upstream_vessel", + "858": "pressure:IN:upstream_vessel", + "859": "pressure:IN:upstream_vessel", + "860": "pressure:IN:upstream_vessel", + "861": "pressure:IN:upstream_vessel", + "862": "pressure:IN:upstream_vessel", + "863": "pressure:IN:upstream_vessel", + "864": "pressure:IN:upstream_vessel", + "865": "pressure:IN:upstream_vessel", + "866": "pressure:IN:upstream_vessel", + "867": "pressure:IN:upstream_vessel", + "868": "pressure:IN:upstream_vessel", + "869": "pressure:IN:upstream_vessel", + "870": "pressure:IN:upstream_vessel", + "871": "pressure:IN:upstream_vessel", + "872": "pressure:IN:upstream_vessel", + "873": "pressure:IN:upstream_vessel", + "874": "pressure:IN:upstream_vessel", + "875": "pressure:IN:upstream_vessel", + "876": "pressure:IN:upstream_vessel", + "877": "pressure:IN:upstream_vessel", + "878": "pressure:IN:upstream_vessel", + "879": "pressure:IN:upstream_vessel", + "880": "pressure:IN:upstream_vessel", + "881": "pressure:IN:upstream_vessel", + "882": "pressure:IN:upstream_vessel", + "883": "pressure:IN:upstream_vessel", + "884": "pressure:IN:upstream_vessel", + "885": "pressure:IN:upstream_vessel", + "886": "pressure:IN:upstream_vessel", + "887": "pressure:IN:upstream_vessel", + "888": "pressure:IN:upstream_vessel", + "889": "pressure:IN:upstream_vessel", + "890": "pressure:IN:upstream_vessel", + "891": "pressure:IN:upstream_vessel", + "892": "pressure:IN:upstream_vessel", + "893": "pressure:IN:upstream_vessel", + "894": "pressure:IN:upstream_vessel", + "895": "pressure:IN:upstream_vessel", + "896": "pressure:IN:upstream_vessel", + "897": "pressure:IN:upstream_vessel", + "898": "pressure:IN:upstream_vessel", + "899": "pressure:IN:upstream_vessel", + "900": "pressure:IN:upstream_vessel", + "901": "pressure:IN:upstream_vessel", + "902": "pressure:IN:upstream_vessel", + "903": "pressure:IN:upstream_vessel", + "904": "pressure:IN:upstream_vessel", + "905": "pressure:IN:upstream_vessel", + "906": "pressure:IN:upstream_vessel", + "907": "pressure:IN:upstream_vessel", + "908": "pressure:IN:upstream_vessel", + "909": "pressure:IN:upstream_vessel", + "910": "pressure:IN:upstream_vessel", + "911": "pressure:IN:upstream_vessel", + "912": "pressure:IN:upstream_vessel", + "913": "pressure:IN:upstream_vessel", + "914": "pressure:IN:upstream_vessel", + "915": "pressure:IN:upstream_vessel", + "916": "pressure:IN:upstream_vessel", + "917": "pressure:IN:upstream_vessel", + "918": "pressure:IN:upstream_vessel", + "919": "pressure:IN:upstream_vessel", + "920": "pressure:IN:upstream_vessel", + "921": "pressure:IN:upstream_vessel", + "922": "pressure:IN:upstream_vessel", + "923": "pressure:IN:upstream_vessel", + "924": "pressure:IN:upstream_vessel", + "925": "pressure:IN:upstream_vessel", + "926": "pressure:IN:upstream_vessel", + "927": "pressure:IN:upstream_vessel", + "928": "pressure:IN:upstream_vessel", + "929": "pressure:IN:upstream_vessel", + "930": "pressure:IN:upstream_vessel", + "931": "pressure:IN:upstream_vessel", + "932": "pressure:IN:upstream_vessel", + "933": "pressure:IN:upstream_vessel", + "934": "pressure:IN:upstream_vessel", + "935": "pressure:IN:upstream_vessel", + "936": "pressure:IN:upstream_vessel", + "937": "pressure:IN:upstream_vessel", + "938": "pressure:IN:upstream_vessel", + "939": "pressure:IN:upstream_vessel", + "940": "pressure:IN:upstream_vessel", + "941": "pressure:IN:upstream_vessel", + "942": "pressure:IN:upstream_vessel", + "943": "pressure:IN:upstream_vessel", + "944": "pressure:IN:upstream_vessel", + "945": "pressure:IN:upstream_vessel", + "946": "pressure:IN:upstream_vessel", + "947": "pressure:IN:upstream_vessel", + "948": "pressure:IN:upstream_vessel", + "949": "pressure:IN:upstream_vessel", + "950": "pressure:IN:upstream_vessel", + "951": "pressure:IN:upstream_vessel", + "952": "pressure:IN:upstream_vessel", + "953": "pressure:IN:upstream_vessel", + "954": "pressure:IN:upstream_vessel", + "955": "pressure:IN:upstream_vessel", + "956": "pressure:IN:upstream_vessel", + "957": "pressure:IN:upstream_vessel", + "958": "pressure:IN:upstream_vessel", + "959": "pressure:IN:upstream_vessel", + "960": "pressure:IN:upstream_vessel", + "961": "pressure:IN:upstream_vessel", + "962": "pressure:IN:upstream_vessel", + "963": "pressure:IN:upstream_vessel", + "964": "pressure:IN:upstream_vessel", + "965": "pressure:IN:upstream_vessel", + "966": "pressure:IN:upstream_vessel", + "967": "pressure:IN:upstream_vessel", + "968": "pressure:IN:upstream_vessel", + "969": "pressure:IN:upstream_vessel", + "970": "pressure:IN:upstream_vessel", + "971": "pressure:IN:upstream_vessel", + "972": "pressure:IN:upstream_vessel", + "973": "pressure:IN:upstream_vessel", + "974": "pressure:IN:upstream_vessel", + "975": "pressure:IN:upstream_vessel", + "976": "pressure:IN:upstream_vessel", + "977": "pressure:IN:upstream_vessel", + "978": "pressure:IN:upstream_vessel", + "979": "pressure:IN:upstream_vessel", + "980": "pressure:IN:upstream_vessel", + "981": "pressure:IN:upstream_vessel", + "982": "pressure:IN:upstream_vessel", + "983": "pressure:IN:upstream_vessel", + "984": "pressure:IN:upstream_vessel", + "985": "pressure:IN:upstream_vessel", + "986": "pressure:IN:upstream_vessel", + "987": "pressure:IN:upstream_vessel", + "988": "pressure:IN:upstream_vessel", + "989": "pressure:IN:upstream_vessel", + "990": "pressure:IN:upstream_vessel", + "991": "pressure:IN:upstream_vessel", + "992": "pressure:IN:upstream_vessel", + "993": "pressure:IN:upstream_vessel", + "994": "pressure:IN:upstream_vessel", + "995": "pressure:IN:upstream_vessel", + "996": "pressure:IN:upstream_vessel", + "997": "pressure:IN:upstream_vessel", + "998": "pressure:IN:upstream_vessel", + "999": "pressure:IN:upstream_vessel", + "1000": "flow:downstream_vessel:OUT", + "1001": "flow:downstream_vessel:OUT", + "1002": "flow:downstream_vessel:OUT", + "1003": "flow:downstream_vessel:OUT", + "1004": "flow:downstream_vessel:OUT", + "1005": "flow:downstream_vessel:OUT", + "1006": "flow:downstream_vessel:OUT", + "1007": "flow:downstream_vessel:OUT", + "1008": "flow:downstream_vessel:OUT", + "1009": "flow:downstream_vessel:OUT", + "1010": "flow:downstream_vessel:OUT", + "1011": "flow:downstream_vessel:OUT", + "1012": "flow:downstream_vessel:OUT", + "1013": "flow:downstream_vessel:OUT", + "1014": "flow:downstream_vessel:OUT", + "1015": "flow:downstream_vessel:OUT", + "1016": "flow:downstream_vessel:OUT", + "1017": "flow:downstream_vessel:OUT", + "1018": "flow:downstream_vessel:OUT", + "1019": "flow:downstream_vessel:OUT", + "1020": "flow:downstream_vessel:OUT", + "1021": "flow:downstream_vessel:OUT", + "1022": "flow:downstream_vessel:OUT", + "1023": "flow:downstream_vessel:OUT", + "1024": "flow:downstream_vessel:OUT", + "1025": "flow:downstream_vessel:OUT", + "1026": "flow:downstream_vessel:OUT", + "1027": "flow:downstream_vessel:OUT", + "1028": "flow:downstream_vessel:OUT", + "1029": "flow:downstream_vessel:OUT", + "1030": "flow:downstream_vessel:OUT", + "1031": "flow:downstream_vessel:OUT", + "1032": "flow:downstream_vessel:OUT", + "1033": "flow:downstream_vessel:OUT", + "1034": "flow:downstream_vessel:OUT", + "1035": "flow:downstream_vessel:OUT", + "1036": "flow:downstream_vessel:OUT", + "1037": "flow:downstream_vessel:OUT", + "1038": "flow:downstream_vessel:OUT", + "1039": "flow:downstream_vessel:OUT", + "1040": "flow:downstream_vessel:OUT", + "1041": "flow:downstream_vessel:OUT", + "1042": "flow:downstream_vessel:OUT", + "1043": "flow:downstream_vessel:OUT", + "1044": "flow:downstream_vessel:OUT", + "1045": "flow:downstream_vessel:OUT", + "1046": "flow:downstream_vessel:OUT", + "1047": "flow:downstream_vessel:OUT", + "1048": "flow:downstream_vessel:OUT", + "1049": "flow:downstream_vessel:OUT", + "1050": "flow:downstream_vessel:OUT", + "1051": "flow:downstream_vessel:OUT", + "1052": "flow:downstream_vessel:OUT", + "1053": "flow:downstream_vessel:OUT", + "1054": "flow:downstream_vessel:OUT", + "1055": "flow:downstream_vessel:OUT", + "1056": "flow:downstream_vessel:OUT", + "1057": "flow:downstream_vessel:OUT", + "1058": "flow:downstream_vessel:OUT", + "1059": "flow:downstream_vessel:OUT", + "1060": "flow:downstream_vessel:OUT", + "1061": "flow:downstream_vessel:OUT", + "1062": "flow:downstream_vessel:OUT", + "1063": "flow:downstream_vessel:OUT", + "1064": "flow:downstream_vessel:OUT", + "1065": "flow:downstream_vessel:OUT", + "1066": "flow:downstream_vessel:OUT", + "1067": "flow:downstream_vessel:OUT", + "1068": "flow:downstream_vessel:OUT", + "1069": "flow:downstream_vessel:OUT", + "1070": "flow:downstream_vessel:OUT", + "1071": "flow:downstream_vessel:OUT", + "1072": "flow:downstream_vessel:OUT", + "1073": "flow:downstream_vessel:OUT", + "1074": "flow:downstream_vessel:OUT", + "1075": "flow:downstream_vessel:OUT", + "1076": "flow:downstream_vessel:OUT", + "1077": "flow:downstream_vessel:OUT", + "1078": "flow:downstream_vessel:OUT", + "1079": "flow:downstream_vessel:OUT", + "1080": "flow:downstream_vessel:OUT", + "1081": "flow:downstream_vessel:OUT", + "1082": "flow:downstream_vessel:OUT", + "1083": "flow:downstream_vessel:OUT", + "1084": "flow:downstream_vessel:OUT", + "1085": "flow:downstream_vessel:OUT", + "1086": "flow:downstream_vessel:OUT", + "1087": "flow:downstream_vessel:OUT", + "1088": "flow:downstream_vessel:OUT", + "1089": "flow:downstream_vessel:OUT", + "1090": "flow:downstream_vessel:OUT", + "1091": "flow:downstream_vessel:OUT", + "1092": "flow:downstream_vessel:OUT", + "1093": "flow:downstream_vessel:OUT", + "1094": "flow:downstream_vessel:OUT", + "1095": "flow:downstream_vessel:OUT", + "1096": "flow:downstream_vessel:OUT", + "1097": "flow:downstream_vessel:OUT", + "1098": "flow:downstream_vessel:OUT", + "1099": "flow:downstream_vessel:OUT", + "1100": "flow:downstream_vessel:OUT", + "1101": "flow:downstream_vessel:OUT", + "1102": "flow:downstream_vessel:OUT", + "1103": "flow:downstream_vessel:OUT", + "1104": "flow:downstream_vessel:OUT", + "1105": "flow:downstream_vessel:OUT", + "1106": "flow:downstream_vessel:OUT", + "1107": "flow:downstream_vessel:OUT", + "1108": "flow:downstream_vessel:OUT", + "1109": "flow:downstream_vessel:OUT", + "1110": "flow:downstream_vessel:OUT", + "1111": "flow:downstream_vessel:OUT", + "1112": "flow:downstream_vessel:OUT", + "1113": "flow:downstream_vessel:OUT", + "1114": "flow:downstream_vessel:OUT", + "1115": "flow:downstream_vessel:OUT", + "1116": "flow:downstream_vessel:OUT", + "1117": "flow:downstream_vessel:OUT", + "1118": "flow:downstream_vessel:OUT", + "1119": "flow:downstream_vessel:OUT", + "1120": "flow:downstream_vessel:OUT", + "1121": "flow:downstream_vessel:OUT", + "1122": "flow:downstream_vessel:OUT", + "1123": "flow:downstream_vessel:OUT", + "1124": "flow:downstream_vessel:OUT", + "1125": "flow:downstream_vessel:OUT", + "1126": "flow:downstream_vessel:OUT", + "1127": "flow:downstream_vessel:OUT", + "1128": "flow:downstream_vessel:OUT", + "1129": "flow:downstream_vessel:OUT", + "1130": "flow:downstream_vessel:OUT", + "1131": "flow:downstream_vessel:OUT", + "1132": "flow:downstream_vessel:OUT", + "1133": "flow:downstream_vessel:OUT", + "1134": "flow:downstream_vessel:OUT", + "1135": "flow:downstream_vessel:OUT", + "1136": "flow:downstream_vessel:OUT", + "1137": "flow:downstream_vessel:OUT", + "1138": "flow:downstream_vessel:OUT", + "1139": "flow:downstream_vessel:OUT", + "1140": "flow:downstream_vessel:OUT", + "1141": "flow:downstream_vessel:OUT", + "1142": "flow:downstream_vessel:OUT", + "1143": "flow:downstream_vessel:OUT", + "1144": "flow:downstream_vessel:OUT", + "1145": "flow:downstream_vessel:OUT", + "1146": "flow:downstream_vessel:OUT", + "1147": "flow:downstream_vessel:OUT", + "1148": "flow:downstream_vessel:OUT", + "1149": "flow:downstream_vessel:OUT", + "1150": "flow:downstream_vessel:OUT", + "1151": "flow:downstream_vessel:OUT", + "1152": "flow:downstream_vessel:OUT", + "1153": "flow:downstream_vessel:OUT", + "1154": "flow:downstream_vessel:OUT", + "1155": "flow:downstream_vessel:OUT", + "1156": "flow:downstream_vessel:OUT", + "1157": "flow:downstream_vessel:OUT", + "1158": "flow:downstream_vessel:OUT", + "1159": "flow:downstream_vessel:OUT", + "1160": "flow:downstream_vessel:OUT", + "1161": "flow:downstream_vessel:OUT", + "1162": "flow:downstream_vessel:OUT", + "1163": "flow:downstream_vessel:OUT", + "1164": "flow:downstream_vessel:OUT", + "1165": "flow:downstream_vessel:OUT", + "1166": "flow:downstream_vessel:OUT", + "1167": "flow:downstream_vessel:OUT", + "1168": "flow:downstream_vessel:OUT", + "1169": "flow:downstream_vessel:OUT", + "1170": "flow:downstream_vessel:OUT", + "1171": "flow:downstream_vessel:OUT", + "1172": "flow:downstream_vessel:OUT", + "1173": "flow:downstream_vessel:OUT", + "1174": "flow:downstream_vessel:OUT", + "1175": "flow:downstream_vessel:OUT", + "1176": "flow:downstream_vessel:OUT", + "1177": "flow:downstream_vessel:OUT", + "1178": "flow:downstream_vessel:OUT", + "1179": "flow:downstream_vessel:OUT", + "1180": "flow:downstream_vessel:OUT", + "1181": "flow:downstream_vessel:OUT", + "1182": "flow:downstream_vessel:OUT", + "1183": "flow:downstream_vessel:OUT", + "1184": "flow:downstream_vessel:OUT", + "1185": "flow:downstream_vessel:OUT", + "1186": "flow:downstream_vessel:OUT", + "1187": "flow:downstream_vessel:OUT", + "1188": "flow:downstream_vessel:OUT", + "1189": "flow:downstream_vessel:OUT", + "1190": "flow:downstream_vessel:OUT", + "1191": "flow:downstream_vessel:OUT", + "1192": "flow:downstream_vessel:OUT", + "1193": "flow:downstream_vessel:OUT", + "1194": "flow:downstream_vessel:OUT", + "1195": "flow:downstream_vessel:OUT", + "1196": "flow:downstream_vessel:OUT", + "1197": "flow:downstream_vessel:OUT", + "1198": "flow:downstream_vessel:OUT", + "1199": "flow:downstream_vessel:OUT", + "1200": "flow:downstream_vessel:OUT", + "1201": "flow:downstream_vessel:OUT", + "1202": "flow:downstream_vessel:OUT", + "1203": "flow:downstream_vessel:OUT", + "1204": "flow:downstream_vessel:OUT", + "1205": "flow:downstream_vessel:OUT", + "1206": "flow:downstream_vessel:OUT", + "1207": "flow:downstream_vessel:OUT", + "1208": "flow:downstream_vessel:OUT", + "1209": "flow:downstream_vessel:OUT", + "1210": "flow:downstream_vessel:OUT", + "1211": "flow:downstream_vessel:OUT", + "1212": "flow:downstream_vessel:OUT", + "1213": "flow:downstream_vessel:OUT", + "1214": "flow:downstream_vessel:OUT", + "1215": "flow:downstream_vessel:OUT", + "1216": "flow:downstream_vessel:OUT", + "1217": "flow:downstream_vessel:OUT", + "1218": "flow:downstream_vessel:OUT", + "1219": "flow:downstream_vessel:OUT", + "1220": "flow:downstream_vessel:OUT", + "1221": "flow:downstream_vessel:OUT", + "1222": "flow:downstream_vessel:OUT", + "1223": "flow:downstream_vessel:OUT", + "1224": "flow:downstream_vessel:OUT", + "1225": "flow:downstream_vessel:OUT", + "1226": "flow:downstream_vessel:OUT", + "1227": "flow:downstream_vessel:OUT", + "1228": "flow:downstream_vessel:OUT", + "1229": "flow:downstream_vessel:OUT", + "1230": "flow:downstream_vessel:OUT", + "1231": "flow:downstream_vessel:OUT", + "1232": "flow:downstream_vessel:OUT", + "1233": "flow:downstream_vessel:OUT", + "1234": "flow:downstream_vessel:OUT", + "1235": "flow:downstream_vessel:OUT", + "1236": "flow:downstream_vessel:OUT", + "1237": "flow:downstream_vessel:OUT", + "1238": "flow:downstream_vessel:OUT", + "1239": "flow:downstream_vessel:OUT", + "1240": "flow:downstream_vessel:OUT", + "1241": "flow:downstream_vessel:OUT", + "1242": "flow:downstream_vessel:OUT", + "1243": "flow:downstream_vessel:OUT", + "1244": "flow:downstream_vessel:OUT", + "1245": "flow:downstream_vessel:OUT", + "1246": "flow:downstream_vessel:OUT", + "1247": "flow:downstream_vessel:OUT", + "1248": "flow:downstream_vessel:OUT", + "1249": "flow:downstream_vessel:OUT", + "1250": "flow:downstream_vessel:OUT", + "1251": "flow:downstream_vessel:OUT", + "1252": "flow:downstream_vessel:OUT", + "1253": "flow:downstream_vessel:OUT", + "1254": "flow:downstream_vessel:OUT", + "1255": "flow:downstream_vessel:OUT", + "1256": "flow:downstream_vessel:OUT", + "1257": "flow:downstream_vessel:OUT", + "1258": "flow:downstream_vessel:OUT", + "1259": "flow:downstream_vessel:OUT", + "1260": "flow:downstream_vessel:OUT", + "1261": "flow:downstream_vessel:OUT", + "1262": "flow:downstream_vessel:OUT", + "1263": "flow:downstream_vessel:OUT", + "1264": "flow:downstream_vessel:OUT", + "1265": "flow:downstream_vessel:OUT", + "1266": "flow:downstream_vessel:OUT", + "1267": "flow:downstream_vessel:OUT", + "1268": "flow:downstream_vessel:OUT", + "1269": "flow:downstream_vessel:OUT", + "1270": "flow:downstream_vessel:OUT", + "1271": "flow:downstream_vessel:OUT", + "1272": "flow:downstream_vessel:OUT", + "1273": "flow:downstream_vessel:OUT", + "1274": "flow:downstream_vessel:OUT", + "1275": "flow:downstream_vessel:OUT", + "1276": "flow:downstream_vessel:OUT", + "1277": "flow:downstream_vessel:OUT", + "1278": "flow:downstream_vessel:OUT", + "1279": "flow:downstream_vessel:OUT", + "1280": "flow:downstream_vessel:OUT", + "1281": "flow:downstream_vessel:OUT", + "1282": "flow:downstream_vessel:OUT", + "1283": "flow:downstream_vessel:OUT", + "1284": "flow:downstream_vessel:OUT", + "1285": "flow:downstream_vessel:OUT", + "1286": "flow:downstream_vessel:OUT", + "1287": "flow:downstream_vessel:OUT", + "1288": "flow:downstream_vessel:OUT", + "1289": "flow:downstream_vessel:OUT", + "1290": "flow:downstream_vessel:OUT", + "1291": "flow:downstream_vessel:OUT", + "1292": "flow:downstream_vessel:OUT", + "1293": "flow:downstream_vessel:OUT", + "1294": "flow:downstream_vessel:OUT", + "1295": "flow:downstream_vessel:OUT", + "1296": "flow:downstream_vessel:OUT", + "1297": "flow:downstream_vessel:OUT", + "1298": "flow:downstream_vessel:OUT", + "1299": "flow:downstream_vessel:OUT", + "1300": "flow:downstream_vessel:OUT", + "1301": "flow:downstream_vessel:OUT", + "1302": "flow:downstream_vessel:OUT", + "1303": "flow:downstream_vessel:OUT", + "1304": "flow:downstream_vessel:OUT", + "1305": "flow:downstream_vessel:OUT", + "1306": "flow:downstream_vessel:OUT", + "1307": "flow:downstream_vessel:OUT", + "1308": "flow:downstream_vessel:OUT", + "1309": "flow:downstream_vessel:OUT", + "1310": "flow:downstream_vessel:OUT", + "1311": "flow:downstream_vessel:OUT", + "1312": "flow:downstream_vessel:OUT", + "1313": "flow:downstream_vessel:OUT", + "1314": "flow:downstream_vessel:OUT", + "1315": "flow:downstream_vessel:OUT", + "1316": "flow:downstream_vessel:OUT", + "1317": "flow:downstream_vessel:OUT", + "1318": "flow:downstream_vessel:OUT", + "1319": "flow:downstream_vessel:OUT", + "1320": "flow:downstream_vessel:OUT", + "1321": "flow:downstream_vessel:OUT", + "1322": "flow:downstream_vessel:OUT", + "1323": "flow:downstream_vessel:OUT", + "1324": "flow:downstream_vessel:OUT", + "1325": "flow:downstream_vessel:OUT", + "1326": "flow:downstream_vessel:OUT", + "1327": "flow:downstream_vessel:OUT", + "1328": "flow:downstream_vessel:OUT", + "1329": "flow:downstream_vessel:OUT", + "1330": "flow:downstream_vessel:OUT", + "1331": "flow:downstream_vessel:OUT", + "1332": "flow:downstream_vessel:OUT", + "1333": "flow:downstream_vessel:OUT", + "1334": "flow:downstream_vessel:OUT", + "1335": "flow:downstream_vessel:OUT", + "1336": "flow:downstream_vessel:OUT", + "1337": "flow:downstream_vessel:OUT", + "1338": "flow:downstream_vessel:OUT", + "1339": "flow:downstream_vessel:OUT", + "1340": "flow:downstream_vessel:OUT", + "1341": "flow:downstream_vessel:OUT", + "1342": "flow:downstream_vessel:OUT", + "1343": "flow:downstream_vessel:OUT", + "1344": "flow:downstream_vessel:OUT", + "1345": "flow:downstream_vessel:OUT", + "1346": "flow:downstream_vessel:OUT", + "1347": "flow:downstream_vessel:OUT", + "1348": "flow:downstream_vessel:OUT", + "1349": "flow:downstream_vessel:OUT", + "1350": "flow:downstream_vessel:OUT", + "1351": "flow:downstream_vessel:OUT", + "1352": "flow:downstream_vessel:OUT", + "1353": "flow:downstream_vessel:OUT", + "1354": "flow:downstream_vessel:OUT", + "1355": "flow:downstream_vessel:OUT", + "1356": "flow:downstream_vessel:OUT", + "1357": "flow:downstream_vessel:OUT", + "1358": "flow:downstream_vessel:OUT", + "1359": "flow:downstream_vessel:OUT", + "1360": "flow:downstream_vessel:OUT", + "1361": "flow:downstream_vessel:OUT", + "1362": "flow:downstream_vessel:OUT", + "1363": "flow:downstream_vessel:OUT", + "1364": "flow:downstream_vessel:OUT", + "1365": "flow:downstream_vessel:OUT", + "1366": "flow:downstream_vessel:OUT", + "1367": "flow:downstream_vessel:OUT", + "1368": "flow:downstream_vessel:OUT", + "1369": "flow:downstream_vessel:OUT", + "1370": "flow:downstream_vessel:OUT", + "1371": "flow:downstream_vessel:OUT", + "1372": "flow:downstream_vessel:OUT", + "1373": "flow:downstream_vessel:OUT", + "1374": "flow:downstream_vessel:OUT", + "1375": "flow:downstream_vessel:OUT", + "1376": "flow:downstream_vessel:OUT", + "1377": "flow:downstream_vessel:OUT", + "1378": "flow:downstream_vessel:OUT", + "1379": "flow:downstream_vessel:OUT", + "1380": "flow:downstream_vessel:OUT", + "1381": "flow:downstream_vessel:OUT", + "1382": "flow:downstream_vessel:OUT", + "1383": "flow:downstream_vessel:OUT", + "1384": "flow:downstream_vessel:OUT", + "1385": "flow:downstream_vessel:OUT", + "1386": "flow:downstream_vessel:OUT", + "1387": "flow:downstream_vessel:OUT", + "1388": "flow:downstream_vessel:OUT", + "1389": "flow:downstream_vessel:OUT", + "1390": "flow:downstream_vessel:OUT", + "1391": "flow:downstream_vessel:OUT", + "1392": "flow:downstream_vessel:OUT", + "1393": "flow:downstream_vessel:OUT", + "1394": "flow:downstream_vessel:OUT", + "1395": "flow:downstream_vessel:OUT", + "1396": "flow:downstream_vessel:OUT", + "1397": "flow:downstream_vessel:OUT", + "1398": "flow:downstream_vessel:OUT", + "1399": "flow:downstream_vessel:OUT", + "1400": "flow:downstream_vessel:OUT", + "1401": "flow:downstream_vessel:OUT", + "1402": "flow:downstream_vessel:OUT", + "1403": "flow:downstream_vessel:OUT", + "1404": "flow:downstream_vessel:OUT", + "1405": "flow:downstream_vessel:OUT", + "1406": "flow:downstream_vessel:OUT", + "1407": "flow:downstream_vessel:OUT", + "1408": "flow:downstream_vessel:OUT", + "1409": "flow:downstream_vessel:OUT", + "1410": "flow:downstream_vessel:OUT", + "1411": "flow:downstream_vessel:OUT", + "1412": "flow:downstream_vessel:OUT", + "1413": "flow:downstream_vessel:OUT", + "1414": "flow:downstream_vessel:OUT", + "1415": "flow:downstream_vessel:OUT", + "1416": "flow:downstream_vessel:OUT", + "1417": "flow:downstream_vessel:OUT", + "1418": "flow:downstream_vessel:OUT", + "1419": "flow:downstream_vessel:OUT", + "1420": "flow:downstream_vessel:OUT", + "1421": "flow:downstream_vessel:OUT", + "1422": "flow:downstream_vessel:OUT", + "1423": "flow:downstream_vessel:OUT", + "1424": "flow:downstream_vessel:OUT", + "1425": "flow:downstream_vessel:OUT", + "1426": "flow:downstream_vessel:OUT", + "1427": "flow:downstream_vessel:OUT", + "1428": "flow:downstream_vessel:OUT", + "1429": "flow:downstream_vessel:OUT", + "1430": "flow:downstream_vessel:OUT", + "1431": "flow:downstream_vessel:OUT", + "1432": "flow:downstream_vessel:OUT", + "1433": "flow:downstream_vessel:OUT", + "1434": "flow:downstream_vessel:OUT", + "1435": "flow:downstream_vessel:OUT", + "1436": "flow:downstream_vessel:OUT", + "1437": "flow:downstream_vessel:OUT", + "1438": "flow:downstream_vessel:OUT", + "1439": "flow:downstream_vessel:OUT", + "1440": "flow:downstream_vessel:OUT", + "1441": "flow:downstream_vessel:OUT", + "1442": "flow:downstream_vessel:OUT", + "1443": "flow:downstream_vessel:OUT", + "1444": "flow:downstream_vessel:OUT", + "1445": "flow:downstream_vessel:OUT", + "1446": "flow:downstream_vessel:OUT", + "1447": "flow:downstream_vessel:OUT", + "1448": "flow:downstream_vessel:OUT", + "1449": "flow:downstream_vessel:OUT", + "1450": "flow:downstream_vessel:OUT", + "1451": "flow:downstream_vessel:OUT", + "1452": "flow:downstream_vessel:OUT", + "1453": "flow:downstream_vessel:OUT", + "1454": "flow:downstream_vessel:OUT", + "1455": "flow:downstream_vessel:OUT", + "1456": "flow:downstream_vessel:OUT", + "1457": "flow:downstream_vessel:OUT", + "1458": "flow:downstream_vessel:OUT", + "1459": "flow:downstream_vessel:OUT", + "1460": "flow:downstream_vessel:OUT", + "1461": "flow:downstream_vessel:OUT", + "1462": "flow:downstream_vessel:OUT", + "1463": "flow:downstream_vessel:OUT", + "1464": "flow:downstream_vessel:OUT", + "1465": "flow:downstream_vessel:OUT", + "1466": "flow:downstream_vessel:OUT", + "1467": "flow:downstream_vessel:OUT", + "1468": "flow:downstream_vessel:OUT", + "1469": "flow:downstream_vessel:OUT", + "1470": "flow:downstream_vessel:OUT", + "1471": "flow:downstream_vessel:OUT", + "1472": "flow:downstream_vessel:OUT", + "1473": "flow:downstream_vessel:OUT", + "1474": "flow:downstream_vessel:OUT", + "1475": "flow:downstream_vessel:OUT", + "1476": "flow:downstream_vessel:OUT", + "1477": "flow:downstream_vessel:OUT", + "1478": "flow:downstream_vessel:OUT", + "1479": "flow:downstream_vessel:OUT", + "1480": "flow:downstream_vessel:OUT", + "1481": "flow:downstream_vessel:OUT", + "1482": "flow:downstream_vessel:OUT", + "1483": "flow:downstream_vessel:OUT", + "1484": "flow:downstream_vessel:OUT", + "1485": "flow:downstream_vessel:OUT", + "1486": "flow:downstream_vessel:OUT", + "1487": "flow:downstream_vessel:OUT", + "1488": "flow:downstream_vessel:OUT", + "1489": "flow:downstream_vessel:OUT", + "1490": "flow:downstream_vessel:OUT", + "1491": "flow:downstream_vessel:OUT", + "1492": "flow:downstream_vessel:OUT", + "1493": "flow:downstream_vessel:OUT", + "1494": "flow:downstream_vessel:OUT", + "1495": "flow:downstream_vessel:OUT", + "1496": "flow:downstream_vessel:OUT", + "1497": "flow:downstream_vessel:OUT", + "1498": "flow:downstream_vessel:OUT", + "1499": "flow:downstream_vessel:OUT", + "1500": "pressure:downstream_vessel:OUT", + "1501": "pressure:downstream_vessel:OUT", + "1502": "pressure:downstream_vessel:OUT", + "1503": "pressure:downstream_vessel:OUT", + "1504": "pressure:downstream_vessel:OUT", + "1505": "pressure:downstream_vessel:OUT", + "1506": "pressure:downstream_vessel:OUT", + "1507": "pressure:downstream_vessel:OUT", + "1508": "pressure:downstream_vessel:OUT", + "1509": "pressure:downstream_vessel:OUT", + "1510": "pressure:downstream_vessel:OUT", + "1511": "pressure:downstream_vessel:OUT", + "1512": "pressure:downstream_vessel:OUT", + "1513": "pressure:downstream_vessel:OUT", + "1514": "pressure:downstream_vessel:OUT", + "1515": "pressure:downstream_vessel:OUT", + "1516": "pressure:downstream_vessel:OUT", + "1517": "pressure:downstream_vessel:OUT", + "1518": "pressure:downstream_vessel:OUT", + "1519": "pressure:downstream_vessel:OUT", + "1520": "pressure:downstream_vessel:OUT", + "1521": "pressure:downstream_vessel:OUT", + "1522": "pressure:downstream_vessel:OUT", + "1523": "pressure:downstream_vessel:OUT", + "1524": "pressure:downstream_vessel:OUT", + "1525": "pressure:downstream_vessel:OUT", + "1526": "pressure:downstream_vessel:OUT", + "1527": "pressure:downstream_vessel:OUT", + "1528": "pressure:downstream_vessel:OUT", + "1529": "pressure:downstream_vessel:OUT", + "1530": "pressure:downstream_vessel:OUT", + "1531": "pressure:downstream_vessel:OUT", + "1532": "pressure:downstream_vessel:OUT", + "1533": "pressure:downstream_vessel:OUT", + "1534": "pressure:downstream_vessel:OUT", + "1535": "pressure:downstream_vessel:OUT", + "1536": "pressure:downstream_vessel:OUT", + "1537": "pressure:downstream_vessel:OUT", + "1538": "pressure:downstream_vessel:OUT", + "1539": "pressure:downstream_vessel:OUT", + "1540": "pressure:downstream_vessel:OUT", + "1541": "pressure:downstream_vessel:OUT", + "1542": "pressure:downstream_vessel:OUT", + "1543": "pressure:downstream_vessel:OUT", + "1544": "pressure:downstream_vessel:OUT", + "1545": "pressure:downstream_vessel:OUT", + "1546": "pressure:downstream_vessel:OUT", + "1547": "pressure:downstream_vessel:OUT", + "1548": "pressure:downstream_vessel:OUT", + "1549": "pressure:downstream_vessel:OUT", + "1550": "pressure:downstream_vessel:OUT", + "1551": "pressure:downstream_vessel:OUT", + "1552": "pressure:downstream_vessel:OUT", + "1553": "pressure:downstream_vessel:OUT", + "1554": "pressure:downstream_vessel:OUT", + "1555": "pressure:downstream_vessel:OUT", + "1556": "pressure:downstream_vessel:OUT", + "1557": "pressure:downstream_vessel:OUT", + "1558": "pressure:downstream_vessel:OUT", + "1559": "pressure:downstream_vessel:OUT", + "1560": "pressure:downstream_vessel:OUT", + "1561": "pressure:downstream_vessel:OUT", + "1562": "pressure:downstream_vessel:OUT", + "1563": "pressure:downstream_vessel:OUT", + "1564": "pressure:downstream_vessel:OUT", + "1565": "pressure:downstream_vessel:OUT", + "1566": "pressure:downstream_vessel:OUT", + "1567": "pressure:downstream_vessel:OUT", + "1568": "pressure:downstream_vessel:OUT", + "1569": "pressure:downstream_vessel:OUT", + "1570": "pressure:downstream_vessel:OUT", + "1571": "pressure:downstream_vessel:OUT", + "1572": "pressure:downstream_vessel:OUT", + "1573": "pressure:downstream_vessel:OUT", + "1574": "pressure:downstream_vessel:OUT", + "1575": "pressure:downstream_vessel:OUT", + "1576": "pressure:downstream_vessel:OUT", + "1577": "pressure:downstream_vessel:OUT", + "1578": "pressure:downstream_vessel:OUT", + "1579": "pressure:downstream_vessel:OUT", + "1580": "pressure:downstream_vessel:OUT", + "1581": "pressure:downstream_vessel:OUT", + "1582": "pressure:downstream_vessel:OUT", + "1583": "pressure:downstream_vessel:OUT", + "1584": "pressure:downstream_vessel:OUT", + "1585": "pressure:downstream_vessel:OUT", + "1586": "pressure:downstream_vessel:OUT", + "1587": "pressure:downstream_vessel:OUT", + "1588": "pressure:downstream_vessel:OUT", + "1589": "pressure:downstream_vessel:OUT", + "1590": "pressure:downstream_vessel:OUT", + "1591": "pressure:downstream_vessel:OUT", + "1592": "pressure:downstream_vessel:OUT", + "1593": "pressure:downstream_vessel:OUT", + "1594": "pressure:downstream_vessel:OUT", + "1595": "pressure:downstream_vessel:OUT", + "1596": "pressure:downstream_vessel:OUT", + "1597": "pressure:downstream_vessel:OUT", + "1598": "pressure:downstream_vessel:OUT", + "1599": "pressure:downstream_vessel:OUT", + "1600": "pressure:downstream_vessel:OUT", + "1601": "pressure:downstream_vessel:OUT", + "1602": "pressure:downstream_vessel:OUT", + "1603": "pressure:downstream_vessel:OUT", + "1604": "pressure:downstream_vessel:OUT", + "1605": "pressure:downstream_vessel:OUT", + "1606": "pressure:downstream_vessel:OUT", + "1607": "pressure:downstream_vessel:OUT", + "1608": "pressure:downstream_vessel:OUT", + "1609": "pressure:downstream_vessel:OUT", + "1610": "pressure:downstream_vessel:OUT", + "1611": "pressure:downstream_vessel:OUT", + "1612": "pressure:downstream_vessel:OUT", + "1613": "pressure:downstream_vessel:OUT", + "1614": "pressure:downstream_vessel:OUT", + "1615": "pressure:downstream_vessel:OUT", + "1616": "pressure:downstream_vessel:OUT", + "1617": "pressure:downstream_vessel:OUT", + "1618": "pressure:downstream_vessel:OUT", + "1619": "pressure:downstream_vessel:OUT", + "1620": "pressure:downstream_vessel:OUT", + "1621": "pressure:downstream_vessel:OUT", + "1622": "pressure:downstream_vessel:OUT", + "1623": "pressure:downstream_vessel:OUT", + "1624": "pressure:downstream_vessel:OUT", + "1625": "pressure:downstream_vessel:OUT", + "1626": "pressure:downstream_vessel:OUT", + "1627": "pressure:downstream_vessel:OUT", + "1628": "pressure:downstream_vessel:OUT", + "1629": "pressure:downstream_vessel:OUT", + "1630": "pressure:downstream_vessel:OUT", + "1631": "pressure:downstream_vessel:OUT", + "1632": "pressure:downstream_vessel:OUT", + "1633": "pressure:downstream_vessel:OUT", + "1634": "pressure:downstream_vessel:OUT", + "1635": "pressure:downstream_vessel:OUT", + "1636": "pressure:downstream_vessel:OUT", + "1637": "pressure:downstream_vessel:OUT", + "1638": "pressure:downstream_vessel:OUT", + "1639": "pressure:downstream_vessel:OUT", + "1640": "pressure:downstream_vessel:OUT", + "1641": "pressure:downstream_vessel:OUT", + "1642": "pressure:downstream_vessel:OUT", + "1643": "pressure:downstream_vessel:OUT", + "1644": "pressure:downstream_vessel:OUT", + "1645": "pressure:downstream_vessel:OUT", + "1646": "pressure:downstream_vessel:OUT", + "1647": "pressure:downstream_vessel:OUT", + "1648": "pressure:downstream_vessel:OUT", + "1649": "pressure:downstream_vessel:OUT", + "1650": "pressure:downstream_vessel:OUT", + "1651": "pressure:downstream_vessel:OUT", + "1652": "pressure:downstream_vessel:OUT", + "1653": "pressure:downstream_vessel:OUT", + "1654": "pressure:downstream_vessel:OUT", + "1655": "pressure:downstream_vessel:OUT", + "1656": "pressure:downstream_vessel:OUT", + "1657": "pressure:downstream_vessel:OUT", + "1658": "pressure:downstream_vessel:OUT", + "1659": "pressure:downstream_vessel:OUT", + "1660": "pressure:downstream_vessel:OUT", + "1661": "pressure:downstream_vessel:OUT", + "1662": "pressure:downstream_vessel:OUT", + "1663": "pressure:downstream_vessel:OUT", + "1664": "pressure:downstream_vessel:OUT", + "1665": "pressure:downstream_vessel:OUT", + "1666": "pressure:downstream_vessel:OUT", + "1667": "pressure:downstream_vessel:OUT", + "1668": "pressure:downstream_vessel:OUT", + "1669": "pressure:downstream_vessel:OUT", + "1670": "pressure:downstream_vessel:OUT", + "1671": "pressure:downstream_vessel:OUT", + "1672": "pressure:downstream_vessel:OUT", + "1673": "pressure:downstream_vessel:OUT", + "1674": "pressure:downstream_vessel:OUT", + "1675": "pressure:downstream_vessel:OUT", + "1676": "pressure:downstream_vessel:OUT", + "1677": "pressure:downstream_vessel:OUT", + "1678": "pressure:downstream_vessel:OUT", + "1679": "pressure:downstream_vessel:OUT", + "1680": "pressure:downstream_vessel:OUT", + "1681": "pressure:downstream_vessel:OUT", + "1682": "pressure:downstream_vessel:OUT", + "1683": "pressure:downstream_vessel:OUT", + "1684": "pressure:downstream_vessel:OUT", + "1685": "pressure:downstream_vessel:OUT", + "1686": "pressure:downstream_vessel:OUT", + "1687": "pressure:downstream_vessel:OUT", + "1688": "pressure:downstream_vessel:OUT", + "1689": "pressure:downstream_vessel:OUT", + "1690": "pressure:downstream_vessel:OUT", + "1691": "pressure:downstream_vessel:OUT", + "1692": "pressure:downstream_vessel:OUT", + "1693": "pressure:downstream_vessel:OUT", + "1694": "pressure:downstream_vessel:OUT", + "1695": "pressure:downstream_vessel:OUT", + "1696": "pressure:downstream_vessel:OUT", + "1697": "pressure:downstream_vessel:OUT", + "1698": "pressure:downstream_vessel:OUT", + "1699": "pressure:downstream_vessel:OUT", + "1700": "pressure:downstream_vessel:OUT", + "1701": "pressure:downstream_vessel:OUT", + "1702": "pressure:downstream_vessel:OUT", + "1703": "pressure:downstream_vessel:OUT", + "1704": "pressure:downstream_vessel:OUT", + "1705": "pressure:downstream_vessel:OUT", + "1706": "pressure:downstream_vessel:OUT", + "1707": "pressure:downstream_vessel:OUT", + "1708": "pressure:downstream_vessel:OUT", + "1709": "pressure:downstream_vessel:OUT", + "1710": "pressure:downstream_vessel:OUT", + "1711": "pressure:downstream_vessel:OUT", + "1712": "pressure:downstream_vessel:OUT", + "1713": "pressure:downstream_vessel:OUT", + "1714": "pressure:downstream_vessel:OUT", + "1715": "pressure:downstream_vessel:OUT", + "1716": "pressure:downstream_vessel:OUT", + "1717": "pressure:downstream_vessel:OUT", + "1718": "pressure:downstream_vessel:OUT", + "1719": "pressure:downstream_vessel:OUT", + "1720": "pressure:downstream_vessel:OUT", + "1721": "pressure:downstream_vessel:OUT", + "1722": "pressure:downstream_vessel:OUT", + "1723": "pressure:downstream_vessel:OUT", + "1724": "pressure:downstream_vessel:OUT", + "1725": "pressure:downstream_vessel:OUT", + "1726": "pressure:downstream_vessel:OUT", + "1727": "pressure:downstream_vessel:OUT", + "1728": "pressure:downstream_vessel:OUT", + "1729": "pressure:downstream_vessel:OUT", + "1730": "pressure:downstream_vessel:OUT", + "1731": "pressure:downstream_vessel:OUT", + "1732": "pressure:downstream_vessel:OUT", + "1733": "pressure:downstream_vessel:OUT", + "1734": "pressure:downstream_vessel:OUT", + "1735": "pressure:downstream_vessel:OUT", + "1736": "pressure:downstream_vessel:OUT", + "1737": "pressure:downstream_vessel:OUT", + "1738": "pressure:downstream_vessel:OUT", + "1739": "pressure:downstream_vessel:OUT", + "1740": "pressure:downstream_vessel:OUT", + "1741": "pressure:downstream_vessel:OUT", + "1742": "pressure:downstream_vessel:OUT", + "1743": "pressure:downstream_vessel:OUT", + "1744": "pressure:downstream_vessel:OUT", + "1745": "pressure:downstream_vessel:OUT", + "1746": "pressure:downstream_vessel:OUT", + "1747": "pressure:downstream_vessel:OUT", + "1748": "pressure:downstream_vessel:OUT", + "1749": "pressure:downstream_vessel:OUT", + "1750": "pressure:downstream_vessel:OUT", + "1751": "pressure:downstream_vessel:OUT", + "1752": "pressure:downstream_vessel:OUT", + "1753": "pressure:downstream_vessel:OUT", + "1754": "pressure:downstream_vessel:OUT", + "1755": "pressure:downstream_vessel:OUT", + "1756": "pressure:downstream_vessel:OUT", + "1757": "pressure:downstream_vessel:OUT", + "1758": "pressure:downstream_vessel:OUT", + "1759": "pressure:downstream_vessel:OUT", + "1760": "pressure:downstream_vessel:OUT", + "1761": "pressure:downstream_vessel:OUT", + "1762": "pressure:downstream_vessel:OUT", + "1763": "pressure:downstream_vessel:OUT", + "1764": "pressure:downstream_vessel:OUT", + "1765": "pressure:downstream_vessel:OUT", + "1766": "pressure:downstream_vessel:OUT", + "1767": "pressure:downstream_vessel:OUT", + "1768": "pressure:downstream_vessel:OUT", + "1769": "pressure:downstream_vessel:OUT", + "1770": "pressure:downstream_vessel:OUT", + "1771": "pressure:downstream_vessel:OUT", + "1772": "pressure:downstream_vessel:OUT", + "1773": "pressure:downstream_vessel:OUT", + "1774": "pressure:downstream_vessel:OUT", + "1775": "pressure:downstream_vessel:OUT", + "1776": "pressure:downstream_vessel:OUT", + "1777": "pressure:downstream_vessel:OUT", + "1778": "pressure:downstream_vessel:OUT", + "1779": "pressure:downstream_vessel:OUT", + "1780": "pressure:downstream_vessel:OUT", + "1781": "pressure:downstream_vessel:OUT", + "1782": "pressure:downstream_vessel:OUT", + "1783": "pressure:downstream_vessel:OUT", + "1784": "pressure:downstream_vessel:OUT", + "1785": "pressure:downstream_vessel:OUT", + "1786": "pressure:downstream_vessel:OUT", + "1787": "pressure:downstream_vessel:OUT", + "1788": "pressure:downstream_vessel:OUT", + "1789": "pressure:downstream_vessel:OUT", + "1790": "pressure:downstream_vessel:OUT", + "1791": "pressure:downstream_vessel:OUT", + "1792": "pressure:downstream_vessel:OUT", + "1793": "pressure:downstream_vessel:OUT", + "1794": "pressure:downstream_vessel:OUT", + "1795": "pressure:downstream_vessel:OUT", + "1796": "pressure:downstream_vessel:OUT", + "1797": "pressure:downstream_vessel:OUT", + "1798": "pressure:downstream_vessel:OUT", + "1799": "pressure:downstream_vessel:OUT", + "1800": "pressure:downstream_vessel:OUT", + "1801": "pressure:downstream_vessel:OUT", + "1802": "pressure:downstream_vessel:OUT", + "1803": "pressure:downstream_vessel:OUT", + "1804": "pressure:downstream_vessel:OUT", + "1805": "pressure:downstream_vessel:OUT", + "1806": "pressure:downstream_vessel:OUT", + "1807": "pressure:downstream_vessel:OUT", + "1808": "pressure:downstream_vessel:OUT", + "1809": "pressure:downstream_vessel:OUT", + "1810": "pressure:downstream_vessel:OUT", + "1811": "pressure:downstream_vessel:OUT", + "1812": "pressure:downstream_vessel:OUT", + "1813": "pressure:downstream_vessel:OUT", + "1814": "pressure:downstream_vessel:OUT", + "1815": "pressure:downstream_vessel:OUT", + "1816": "pressure:downstream_vessel:OUT", + "1817": "pressure:downstream_vessel:OUT", + "1818": "pressure:downstream_vessel:OUT", + "1819": "pressure:downstream_vessel:OUT", + "1820": "pressure:downstream_vessel:OUT", + "1821": "pressure:downstream_vessel:OUT", + "1822": "pressure:downstream_vessel:OUT", + "1823": "pressure:downstream_vessel:OUT", + "1824": "pressure:downstream_vessel:OUT", + "1825": "pressure:downstream_vessel:OUT", + "1826": "pressure:downstream_vessel:OUT", + "1827": "pressure:downstream_vessel:OUT", + "1828": "pressure:downstream_vessel:OUT", + "1829": "pressure:downstream_vessel:OUT", + "1830": "pressure:downstream_vessel:OUT", + "1831": "pressure:downstream_vessel:OUT", + "1832": "pressure:downstream_vessel:OUT", + "1833": "pressure:downstream_vessel:OUT", + "1834": "pressure:downstream_vessel:OUT", + "1835": "pressure:downstream_vessel:OUT", + "1836": "pressure:downstream_vessel:OUT", + "1837": "pressure:downstream_vessel:OUT", + "1838": "pressure:downstream_vessel:OUT", + "1839": "pressure:downstream_vessel:OUT", + "1840": "pressure:downstream_vessel:OUT", + "1841": "pressure:downstream_vessel:OUT", + "1842": "pressure:downstream_vessel:OUT", + "1843": "pressure:downstream_vessel:OUT", + "1844": "pressure:downstream_vessel:OUT", + "1845": "pressure:downstream_vessel:OUT", + "1846": "pressure:downstream_vessel:OUT", + "1847": "pressure:downstream_vessel:OUT", + "1848": "pressure:downstream_vessel:OUT", + "1849": "pressure:downstream_vessel:OUT", + "1850": "pressure:downstream_vessel:OUT", + "1851": "pressure:downstream_vessel:OUT", + "1852": "pressure:downstream_vessel:OUT", + "1853": "pressure:downstream_vessel:OUT", + "1854": "pressure:downstream_vessel:OUT", + "1855": "pressure:downstream_vessel:OUT", + "1856": "pressure:downstream_vessel:OUT", + "1857": "pressure:downstream_vessel:OUT", + "1858": "pressure:downstream_vessel:OUT", + "1859": "pressure:downstream_vessel:OUT", + "1860": "pressure:downstream_vessel:OUT", + "1861": "pressure:downstream_vessel:OUT", + "1862": "pressure:downstream_vessel:OUT", + "1863": "pressure:downstream_vessel:OUT", + "1864": "pressure:downstream_vessel:OUT", + "1865": "pressure:downstream_vessel:OUT", + "1866": "pressure:downstream_vessel:OUT", + "1867": "pressure:downstream_vessel:OUT", + "1868": "pressure:downstream_vessel:OUT", + "1869": "pressure:downstream_vessel:OUT", + "1870": "pressure:downstream_vessel:OUT", + "1871": "pressure:downstream_vessel:OUT", + "1872": "pressure:downstream_vessel:OUT", + "1873": "pressure:downstream_vessel:OUT", + "1874": "pressure:downstream_vessel:OUT", + "1875": "pressure:downstream_vessel:OUT", + "1876": "pressure:downstream_vessel:OUT", + "1877": "pressure:downstream_vessel:OUT", + "1878": "pressure:downstream_vessel:OUT", + "1879": "pressure:downstream_vessel:OUT", + "1880": "pressure:downstream_vessel:OUT", + "1881": "pressure:downstream_vessel:OUT", + "1882": "pressure:downstream_vessel:OUT", + "1883": "pressure:downstream_vessel:OUT", + "1884": "pressure:downstream_vessel:OUT", + "1885": "pressure:downstream_vessel:OUT", + "1886": "pressure:downstream_vessel:OUT", + "1887": "pressure:downstream_vessel:OUT", + "1888": "pressure:downstream_vessel:OUT", + "1889": "pressure:downstream_vessel:OUT", + "1890": "pressure:downstream_vessel:OUT", + "1891": "pressure:downstream_vessel:OUT", + "1892": "pressure:downstream_vessel:OUT", + "1893": "pressure:downstream_vessel:OUT", + "1894": "pressure:downstream_vessel:OUT", + "1895": "pressure:downstream_vessel:OUT", + "1896": "pressure:downstream_vessel:OUT", + "1897": "pressure:downstream_vessel:OUT", + "1898": "pressure:downstream_vessel:OUT", + "1899": "pressure:downstream_vessel:OUT", + "1900": "pressure:downstream_vessel:OUT", + "1901": "pressure:downstream_vessel:OUT", + "1902": "pressure:downstream_vessel:OUT", + "1903": "pressure:downstream_vessel:OUT", + "1904": "pressure:downstream_vessel:OUT", + "1905": "pressure:downstream_vessel:OUT", + "1906": "pressure:downstream_vessel:OUT", + "1907": "pressure:downstream_vessel:OUT", + "1908": "pressure:downstream_vessel:OUT", + "1909": "pressure:downstream_vessel:OUT", + "1910": "pressure:downstream_vessel:OUT", + "1911": "pressure:downstream_vessel:OUT", + "1912": "pressure:downstream_vessel:OUT", + "1913": "pressure:downstream_vessel:OUT", + "1914": "pressure:downstream_vessel:OUT", + "1915": "pressure:downstream_vessel:OUT", + "1916": "pressure:downstream_vessel:OUT", + "1917": "pressure:downstream_vessel:OUT", + "1918": "pressure:downstream_vessel:OUT", + "1919": "pressure:downstream_vessel:OUT", + "1920": "pressure:downstream_vessel:OUT", + "1921": "pressure:downstream_vessel:OUT", + "1922": "pressure:downstream_vessel:OUT", + "1923": "pressure:downstream_vessel:OUT", + "1924": "pressure:downstream_vessel:OUT", + "1925": "pressure:downstream_vessel:OUT", + "1926": "pressure:downstream_vessel:OUT", + "1927": "pressure:downstream_vessel:OUT", + "1928": "pressure:downstream_vessel:OUT", + "1929": "pressure:downstream_vessel:OUT", + "1930": "pressure:downstream_vessel:OUT", + "1931": "pressure:downstream_vessel:OUT", + "1932": "pressure:downstream_vessel:OUT", + "1933": "pressure:downstream_vessel:OUT", + "1934": "pressure:downstream_vessel:OUT", + "1935": "pressure:downstream_vessel:OUT", + "1936": "pressure:downstream_vessel:OUT", + "1937": "pressure:downstream_vessel:OUT", + "1938": "pressure:downstream_vessel:OUT", + "1939": "pressure:downstream_vessel:OUT", + "1940": "pressure:downstream_vessel:OUT", + "1941": "pressure:downstream_vessel:OUT", + "1942": "pressure:downstream_vessel:OUT", + "1943": "pressure:downstream_vessel:OUT", + "1944": "pressure:downstream_vessel:OUT", + "1945": "pressure:downstream_vessel:OUT", + "1946": "pressure:downstream_vessel:OUT", + "1947": "pressure:downstream_vessel:OUT", + "1948": "pressure:downstream_vessel:OUT", + "1949": "pressure:downstream_vessel:OUT", + "1950": "pressure:downstream_vessel:OUT", + "1951": "pressure:downstream_vessel:OUT", + "1952": "pressure:downstream_vessel:OUT", + "1953": "pressure:downstream_vessel:OUT", + "1954": "pressure:downstream_vessel:OUT", + "1955": "pressure:downstream_vessel:OUT", + "1956": "pressure:downstream_vessel:OUT", + "1957": "pressure:downstream_vessel:OUT", + "1958": "pressure:downstream_vessel:OUT", + "1959": "pressure:downstream_vessel:OUT", + "1960": "pressure:downstream_vessel:OUT", + "1961": "pressure:downstream_vessel:OUT", + "1962": "pressure:downstream_vessel:OUT", + "1963": "pressure:downstream_vessel:OUT", + "1964": "pressure:downstream_vessel:OUT", + "1965": "pressure:downstream_vessel:OUT", + "1966": "pressure:downstream_vessel:OUT", + "1967": "pressure:downstream_vessel:OUT", + "1968": "pressure:downstream_vessel:OUT", + "1969": "pressure:downstream_vessel:OUT", + "1970": "pressure:downstream_vessel:OUT", + "1971": "pressure:downstream_vessel:OUT", + "1972": "pressure:downstream_vessel:OUT", + "1973": "pressure:downstream_vessel:OUT", + "1974": "pressure:downstream_vessel:OUT", + "1975": "pressure:downstream_vessel:OUT", + "1976": "pressure:downstream_vessel:OUT", + "1977": "pressure:downstream_vessel:OUT", + "1978": "pressure:downstream_vessel:OUT", + "1979": "pressure:downstream_vessel:OUT", + "1980": "pressure:downstream_vessel:OUT", + "1981": "pressure:downstream_vessel:OUT", + "1982": "pressure:downstream_vessel:OUT", + "1983": "pressure:downstream_vessel:OUT", + "1984": "pressure:downstream_vessel:OUT", + "1985": "pressure:downstream_vessel:OUT", + "1986": "pressure:downstream_vessel:OUT", + "1987": "pressure:downstream_vessel:OUT", + "1988": "pressure:downstream_vessel:OUT", + "1989": "pressure:downstream_vessel:OUT", + "1990": "pressure:downstream_vessel:OUT", + "1991": "pressure:downstream_vessel:OUT", + "1992": "pressure:downstream_vessel:OUT", + "1993": "pressure:downstream_vessel:OUT", + "1994": "pressure:downstream_vessel:OUT", + "1995": "pressure:downstream_vessel:OUT", + "1996": "pressure:downstream_vessel:OUT", + "1997": "pressure:downstream_vessel:OUT", + "1998": "pressure:downstream_vessel:OUT", + "1999": "pressure:downstream_vessel:OUT", + "2000": "flow:upstream_vessel:inlet_valve", + "2001": "flow:upstream_vessel:inlet_valve", + "2002": "flow:upstream_vessel:inlet_valve", + "2003": "flow:upstream_vessel:inlet_valve", + "2004": "flow:upstream_vessel:inlet_valve", + "2005": "flow:upstream_vessel:inlet_valve", + "2006": "flow:upstream_vessel:inlet_valve", + "2007": "flow:upstream_vessel:inlet_valve", + "2008": "flow:upstream_vessel:inlet_valve", + "2009": "flow:upstream_vessel:inlet_valve", + "2010": "flow:upstream_vessel:inlet_valve", + "2011": "flow:upstream_vessel:inlet_valve", + "2012": "flow:upstream_vessel:inlet_valve", + "2013": "flow:upstream_vessel:inlet_valve", + "2014": "flow:upstream_vessel:inlet_valve", + "2015": "flow:upstream_vessel:inlet_valve", + "2016": "flow:upstream_vessel:inlet_valve", + "2017": "flow:upstream_vessel:inlet_valve", + "2018": "flow:upstream_vessel:inlet_valve", + "2019": "flow:upstream_vessel:inlet_valve", + "2020": "flow:upstream_vessel:inlet_valve", + "2021": "flow:upstream_vessel:inlet_valve", + "2022": "flow:upstream_vessel:inlet_valve", + "2023": "flow:upstream_vessel:inlet_valve", + "2024": "flow:upstream_vessel:inlet_valve", + "2025": "flow:upstream_vessel:inlet_valve", + "2026": "flow:upstream_vessel:inlet_valve", + "2027": "flow:upstream_vessel:inlet_valve", + "2028": "flow:upstream_vessel:inlet_valve", + "2029": "flow:upstream_vessel:inlet_valve", + "2030": "flow:upstream_vessel:inlet_valve", + "2031": "flow:upstream_vessel:inlet_valve", + "2032": "flow:upstream_vessel:inlet_valve", + "2033": "flow:upstream_vessel:inlet_valve", + "2034": "flow:upstream_vessel:inlet_valve", + "2035": "flow:upstream_vessel:inlet_valve", + "2036": "flow:upstream_vessel:inlet_valve", + "2037": "flow:upstream_vessel:inlet_valve", + "2038": "flow:upstream_vessel:inlet_valve", + "2039": "flow:upstream_vessel:inlet_valve", + "2040": "flow:upstream_vessel:inlet_valve", + "2041": "flow:upstream_vessel:inlet_valve", + "2042": "flow:upstream_vessel:inlet_valve", + "2043": "flow:upstream_vessel:inlet_valve", + "2044": "flow:upstream_vessel:inlet_valve", + "2045": "flow:upstream_vessel:inlet_valve", + "2046": "flow:upstream_vessel:inlet_valve", + "2047": "flow:upstream_vessel:inlet_valve", + "2048": "flow:upstream_vessel:inlet_valve", + "2049": "flow:upstream_vessel:inlet_valve", + "2050": "flow:upstream_vessel:inlet_valve", + "2051": "flow:upstream_vessel:inlet_valve", + "2052": "flow:upstream_vessel:inlet_valve", + "2053": "flow:upstream_vessel:inlet_valve", + "2054": "flow:upstream_vessel:inlet_valve", + "2055": "flow:upstream_vessel:inlet_valve", + "2056": "flow:upstream_vessel:inlet_valve", + "2057": "flow:upstream_vessel:inlet_valve", + "2058": "flow:upstream_vessel:inlet_valve", + "2059": "flow:upstream_vessel:inlet_valve", + "2060": "flow:upstream_vessel:inlet_valve", + "2061": "flow:upstream_vessel:inlet_valve", + "2062": "flow:upstream_vessel:inlet_valve", + "2063": "flow:upstream_vessel:inlet_valve", + "2064": "flow:upstream_vessel:inlet_valve", + "2065": "flow:upstream_vessel:inlet_valve", + "2066": "flow:upstream_vessel:inlet_valve", + "2067": "flow:upstream_vessel:inlet_valve", + "2068": "flow:upstream_vessel:inlet_valve", + "2069": "flow:upstream_vessel:inlet_valve", + "2070": "flow:upstream_vessel:inlet_valve", + "2071": "flow:upstream_vessel:inlet_valve", + "2072": "flow:upstream_vessel:inlet_valve", + "2073": "flow:upstream_vessel:inlet_valve", + "2074": "flow:upstream_vessel:inlet_valve", + "2075": "flow:upstream_vessel:inlet_valve", + "2076": "flow:upstream_vessel:inlet_valve", + "2077": "flow:upstream_vessel:inlet_valve", + "2078": "flow:upstream_vessel:inlet_valve", + "2079": "flow:upstream_vessel:inlet_valve", + "2080": "flow:upstream_vessel:inlet_valve", + "2081": "flow:upstream_vessel:inlet_valve", + "2082": "flow:upstream_vessel:inlet_valve", + "2083": "flow:upstream_vessel:inlet_valve", + "2084": "flow:upstream_vessel:inlet_valve", + "2085": "flow:upstream_vessel:inlet_valve", + "2086": "flow:upstream_vessel:inlet_valve", + "2087": "flow:upstream_vessel:inlet_valve", + "2088": "flow:upstream_vessel:inlet_valve", + "2089": "flow:upstream_vessel:inlet_valve", + "2090": "flow:upstream_vessel:inlet_valve", + "2091": "flow:upstream_vessel:inlet_valve", + "2092": "flow:upstream_vessel:inlet_valve", + "2093": "flow:upstream_vessel:inlet_valve", + "2094": "flow:upstream_vessel:inlet_valve", + "2095": "flow:upstream_vessel:inlet_valve", + "2096": "flow:upstream_vessel:inlet_valve", + "2097": "flow:upstream_vessel:inlet_valve", + "2098": "flow:upstream_vessel:inlet_valve", + "2099": "flow:upstream_vessel:inlet_valve", + "2100": "flow:upstream_vessel:inlet_valve", + "2101": "flow:upstream_vessel:inlet_valve", + "2102": "flow:upstream_vessel:inlet_valve", + "2103": "flow:upstream_vessel:inlet_valve", + "2104": "flow:upstream_vessel:inlet_valve", + "2105": "flow:upstream_vessel:inlet_valve", + "2106": "flow:upstream_vessel:inlet_valve", + "2107": "flow:upstream_vessel:inlet_valve", + "2108": "flow:upstream_vessel:inlet_valve", + "2109": "flow:upstream_vessel:inlet_valve", + "2110": "flow:upstream_vessel:inlet_valve", + "2111": "flow:upstream_vessel:inlet_valve", + "2112": "flow:upstream_vessel:inlet_valve", + "2113": "flow:upstream_vessel:inlet_valve", + "2114": "flow:upstream_vessel:inlet_valve", + "2115": "flow:upstream_vessel:inlet_valve", + "2116": "flow:upstream_vessel:inlet_valve", + "2117": "flow:upstream_vessel:inlet_valve", + "2118": "flow:upstream_vessel:inlet_valve", + "2119": "flow:upstream_vessel:inlet_valve", + "2120": "flow:upstream_vessel:inlet_valve", + "2121": "flow:upstream_vessel:inlet_valve", + "2122": "flow:upstream_vessel:inlet_valve", + "2123": "flow:upstream_vessel:inlet_valve", + "2124": "flow:upstream_vessel:inlet_valve", + "2125": "flow:upstream_vessel:inlet_valve", + "2126": "flow:upstream_vessel:inlet_valve", + "2127": "flow:upstream_vessel:inlet_valve", + "2128": "flow:upstream_vessel:inlet_valve", + "2129": "flow:upstream_vessel:inlet_valve", + "2130": "flow:upstream_vessel:inlet_valve", + "2131": "flow:upstream_vessel:inlet_valve", + "2132": "flow:upstream_vessel:inlet_valve", + "2133": "flow:upstream_vessel:inlet_valve", + "2134": "flow:upstream_vessel:inlet_valve", + "2135": "flow:upstream_vessel:inlet_valve", + "2136": "flow:upstream_vessel:inlet_valve", + "2137": "flow:upstream_vessel:inlet_valve", + "2138": "flow:upstream_vessel:inlet_valve", + "2139": "flow:upstream_vessel:inlet_valve", + "2140": "flow:upstream_vessel:inlet_valve", + "2141": "flow:upstream_vessel:inlet_valve", + "2142": "flow:upstream_vessel:inlet_valve", + "2143": "flow:upstream_vessel:inlet_valve", + "2144": "flow:upstream_vessel:inlet_valve", + "2145": "flow:upstream_vessel:inlet_valve", + "2146": "flow:upstream_vessel:inlet_valve", + "2147": "flow:upstream_vessel:inlet_valve", + "2148": "flow:upstream_vessel:inlet_valve", + "2149": "flow:upstream_vessel:inlet_valve", + "2150": "flow:upstream_vessel:inlet_valve", + "2151": "flow:upstream_vessel:inlet_valve", + "2152": "flow:upstream_vessel:inlet_valve", + "2153": "flow:upstream_vessel:inlet_valve", + "2154": "flow:upstream_vessel:inlet_valve", + "2155": "flow:upstream_vessel:inlet_valve", + "2156": "flow:upstream_vessel:inlet_valve", + "2157": "flow:upstream_vessel:inlet_valve", + "2158": "flow:upstream_vessel:inlet_valve", + "2159": "flow:upstream_vessel:inlet_valve", + "2160": "flow:upstream_vessel:inlet_valve", + "2161": "flow:upstream_vessel:inlet_valve", + "2162": "flow:upstream_vessel:inlet_valve", + "2163": "flow:upstream_vessel:inlet_valve", + "2164": "flow:upstream_vessel:inlet_valve", + "2165": "flow:upstream_vessel:inlet_valve", + "2166": "flow:upstream_vessel:inlet_valve", + "2167": "flow:upstream_vessel:inlet_valve", + "2168": "flow:upstream_vessel:inlet_valve", + "2169": "flow:upstream_vessel:inlet_valve", + "2170": "flow:upstream_vessel:inlet_valve", + "2171": "flow:upstream_vessel:inlet_valve", + "2172": "flow:upstream_vessel:inlet_valve", + "2173": "flow:upstream_vessel:inlet_valve", + "2174": "flow:upstream_vessel:inlet_valve", + "2175": "flow:upstream_vessel:inlet_valve", + "2176": "flow:upstream_vessel:inlet_valve", + "2177": "flow:upstream_vessel:inlet_valve", + "2178": "flow:upstream_vessel:inlet_valve", + "2179": "flow:upstream_vessel:inlet_valve", + "2180": "flow:upstream_vessel:inlet_valve", + "2181": "flow:upstream_vessel:inlet_valve", + "2182": "flow:upstream_vessel:inlet_valve", + "2183": "flow:upstream_vessel:inlet_valve", + "2184": "flow:upstream_vessel:inlet_valve", + "2185": "flow:upstream_vessel:inlet_valve", + "2186": "flow:upstream_vessel:inlet_valve", + "2187": "flow:upstream_vessel:inlet_valve", + "2188": "flow:upstream_vessel:inlet_valve", + "2189": "flow:upstream_vessel:inlet_valve", + "2190": "flow:upstream_vessel:inlet_valve", + "2191": "flow:upstream_vessel:inlet_valve", + "2192": "flow:upstream_vessel:inlet_valve", + "2193": "flow:upstream_vessel:inlet_valve", + "2194": "flow:upstream_vessel:inlet_valve", + "2195": "flow:upstream_vessel:inlet_valve", + "2196": "flow:upstream_vessel:inlet_valve", + "2197": "flow:upstream_vessel:inlet_valve", + "2198": "flow:upstream_vessel:inlet_valve", + "2199": "flow:upstream_vessel:inlet_valve", + "2200": "flow:upstream_vessel:inlet_valve", + "2201": "flow:upstream_vessel:inlet_valve", + "2202": "flow:upstream_vessel:inlet_valve", + "2203": "flow:upstream_vessel:inlet_valve", + "2204": "flow:upstream_vessel:inlet_valve", + "2205": "flow:upstream_vessel:inlet_valve", + "2206": "flow:upstream_vessel:inlet_valve", + "2207": "flow:upstream_vessel:inlet_valve", + "2208": "flow:upstream_vessel:inlet_valve", + "2209": "flow:upstream_vessel:inlet_valve", + "2210": "flow:upstream_vessel:inlet_valve", + "2211": "flow:upstream_vessel:inlet_valve", + "2212": "flow:upstream_vessel:inlet_valve", + "2213": "flow:upstream_vessel:inlet_valve", + "2214": "flow:upstream_vessel:inlet_valve", + "2215": "flow:upstream_vessel:inlet_valve", + "2216": "flow:upstream_vessel:inlet_valve", + "2217": "flow:upstream_vessel:inlet_valve", + "2218": "flow:upstream_vessel:inlet_valve", + "2219": "flow:upstream_vessel:inlet_valve", + "2220": "flow:upstream_vessel:inlet_valve", + "2221": "flow:upstream_vessel:inlet_valve", + "2222": "flow:upstream_vessel:inlet_valve", + "2223": "flow:upstream_vessel:inlet_valve", + "2224": "flow:upstream_vessel:inlet_valve", + "2225": "flow:upstream_vessel:inlet_valve", + "2226": "flow:upstream_vessel:inlet_valve", + "2227": "flow:upstream_vessel:inlet_valve", + "2228": "flow:upstream_vessel:inlet_valve", + "2229": "flow:upstream_vessel:inlet_valve", + "2230": "flow:upstream_vessel:inlet_valve", + "2231": "flow:upstream_vessel:inlet_valve", + "2232": "flow:upstream_vessel:inlet_valve", + "2233": "flow:upstream_vessel:inlet_valve", + "2234": "flow:upstream_vessel:inlet_valve", + "2235": "flow:upstream_vessel:inlet_valve", + "2236": "flow:upstream_vessel:inlet_valve", + "2237": "flow:upstream_vessel:inlet_valve", + "2238": "flow:upstream_vessel:inlet_valve", + "2239": "flow:upstream_vessel:inlet_valve", + "2240": "flow:upstream_vessel:inlet_valve", + "2241": "flow:upstream_vessel:inlet_valve", + "2242": "flow:upstream_vessel:inlet_valve", + "2243": "flow:upstream_vessel:inlet_valve", + "2244": "flow:upstream_vessel:inlet_valve", + "2245": "flow:upstream_vessel:inlet_valve", + "2246": "flow:upstream_vessel:inlet_valve", + "2247": "flow:upstream_vessel:inlet_valve", + "2248": "flow:upstream_vessel:inlet_valve", + "2249": "flow:upstream_vessel:inlet_valve", + "2250": "flow:upstream_vessel:inlet_valve", + "2251": "flow:upstream_vessel:inlet_valve", + "2252": "flow:upstream_vessel:inlet_valve", + "2253": "flow:upstream_vessel:inlet_valve", + "2254": "flow:upstream_vessel:inlet_valve", + "2255": "flow:upstream_vessel:inlet_valve", + "2256": "flow:upstream_vessel:inlet_valve", + "2257": "flow:upstream_vessel:inlet_valve", + "2258": "flow:upstream_vessel:inlet_valve", + "2259": "flow:upstream_vessel:inlet_valve", + "2260": "flow:upstream_vessel:inlet_valve", + "2261": "flow:upstream_vessel:inlet_valve", + "2262": "flow:upstream_vessel:inlet_valve", + "2263": "flow:upstream_vessel:inlet_valve", + "2264": "flow:upstream_vessel:inlet_valve", + "2265": "flow:upstream_vessel:inlet_valve", + "2266": "flow:upstream_vessel:inlet_valve", + "2267": "flow:upstream_vessel:inlet_valve", + "2268": "flow:upstream_vessel:inlet_valve", + "2269": "flow:upstream_vessel:inlet_valve", + "2270": "flow:upstream_vessel:inlet_valve", + "2271": "flow:upstream_vessel:inlet_valve", + "2272": "flow:upstream_vessel:inlet_valve", + "2273": "flow:upstream_vessel:inlet_valve", + "2274": "flow:upstream_vessel:inlet_valve", + "2275": "flow:upstream_vessel:inlet_valve", + "2276": "flow:upstream_vessel:inlet_valve", + "2277": "flow:upstream_vessel:inlet_valve", + "2278": "flow:upstream_vessel:inlet_valve", + "2279": "flow:upstream_vessel:inlet_valve", + "2280": "flow:upstream_vessel:inlet_valve", + "2281": "flow:upstream_vessel:inlet_valve", + "2282": "flow:upstream_vessel:inlet_valve", + "2283": "flow:upstream_vessel:inlet_valve", + "2284": "flow:upstream_vessel:inlet_valve", + "2285": "flow:upstream_vessel:inlet_valve", + "2286": "flow:upstream_vessel:inlet_valve", + "2287": "flow:upstream_vessel:inlet_valve", + "2288": "flow:upstream_vessel:inlet_valve", + "2289": "flow:upstream_vessel:inlet_valve", + "2290": "flow:upstream_vessel:inlet_valve", + "2291": "flow:upstream_vessel:inlet_valve", + "2292": "flow:upstream_vessel:inlet_valve", + "2293": "flow:upstream_vessel:inlet_valve", + "2294": "flow:upstream_vessel:inlet_valve", + "2295": "flow:upstream_vessel:inlet_valve", + "2296": "flow:upstream_vessel:inlet_valve", + "2297": "flow:upstream_vessel:inlet_valve", + "2298": "flow:upstream_vessel:inlet_valve", + "2299": "flow:upstream_vessel:inlet_valve", + "2300": "flow:upstream_vessel:inlet_valve", + "2301": "flow:upstream_vessel:inlet_valve", + "2302": "flow:upstream_vessel:inlet_valve", + "2303": "flow:upstream_vessel:inlet_valve", + "2304": "flow:upstream_vessel:inlet_valve", + "2305": "flow:upstream_vessel:inlet_valve", + "2306": "flow:upstream_vessel:inlet_valve", + "2307": "flow:upstream_vessel:inlet_valve", + "2308": "flow:upstream_vessel:inlet_valve", + "2309": "flow:upstream_vessel:inlet_valve", + "2310": "flow:upstream_vessel:inlet_valve", + "2311": "flow:upstream_vessel:inlet_valve", + "2312": "flow:upstream_vessel:inlet_valve", + "2313": "flow:upstream_vessel:inlet_valve", + "2314": "flow:upstream_vessel:inlet_valve", + "2315": "flow:upstream_vessel:inlet_valve", + "2316": "flow:upstream_vessel:inlet_valve", + "2317": "flow:upstream_vessel:inlet_valve", + "2318": "flow:upstream_vessel:inlet_valve", + "2319": "flow:upstream_vessel:inlet_valve", + "2320": "flow:upstream_vessel:inlet_valve", + "2321": "flow:upstream_vessel:inlet_valve", + "2322": "flow:upstream_vessel:inlet_valve", + "2323": "flow:upstream_vessel:inlet_valve", + "2324": "flow:upstream_vessel:inlet_valve", + "2325": "flow:upstream_vessel:inlet_valve", + "2326": "flow:upstream_vessel:inlet_valve", + "2327": "flow:upstream_vessel:inlet_valve", + "2328": "flow:upstream_vessel:inlet_valve", + "2329": "flow:upstream_vessel:inlet_valve", + "2330": "flow:upstream_vessel:inlet_valve", + "2331": "flow:upstream_vessel:inlet_valve", + "2332": "flow:upstream_vessel:inlet_valve", + "2333": "flow:upstream_vessel:inlet_valve", + "2334": "flow:upstream_vessel:inlet_valve", + "2335": "flow:upstream_vessel:inlet_valve", + "2336": "flow:upstream_vessel:inlet_valve", + "2337": "flow:upstream_vessel:inlet_valve", + "2338": "flow:upstream_vessel:inlet_valve", + "2339": "flow:upstream_vessel:inlet_valve", + "2340": "flow:upstream_vessel:inlet_valve", + "2341": "flow:upstream_vessel:inlet_valve", + "2342": "flow:upstream_vessel:inlet_valve", + "2343": "flow:upstream_vessel:inlet_valve", + "2344": "flow:upstream_vessel:inlet_valve", + "2345": "flow:upstream_vessel:inlet_valve", + "2346": "flow:upstream_vessel:inlet_valve", + "2347": "flow:upstream_vessel:inlet_valve", + "2348": "flow:upstream_vessel:inlet_valve", + "2349": "flow:upstream_vessel:inlet_valve", + "2350": "flow:upstream_vessel:inlet_valve", + "2351": "flow:upstream_vessel:inlet_valve", + "2352": "flow:upstream_vessel:inlet_valve", + "2353": "flow:upstream_vessel:inlet_valve", + "2354": "flow:upstream_vessel:inlet_valve", + "2355": "flow:upstream_vessel:inlet_valve", + "2356": "flow:upstream_vessel:inlet_valve", + "2357": "flow:upstream_vessel:inlet_valve", + "2358": "flow:upstream_vessel:inlet_valve", + "2359": "flow:upstream_vessel:inlet_valve", + "2360": "flow:upstream_vessel:inlet_valve", + "2361": "flow:upstream_vessel:inlet_valve", + "2362": "flow:upstream_vessel:inlet_valve", + "2363": "flow:upstream_vessel:inlet_valve", + "2364": "flow:upstream_vessel:inlet_valve", + "2365": "flow:upstream_vessel:inlet_valve", + "2366": "flow:upstream_vessel:inlet_valve", + "2367": "flow:upstream_vessel:inlet_valve", + "2368": "flow:upstream_vessel:inlet_valve", + "2369": "flow:upstream_vessel:inlet_valve", + "2370": "flow:upstream_vessel:inlet_valve", + "2371": "flow:upstream_vessel:inlet_valve", + "2372": "flow:upstream_vessel:inlet_valve", + "2373": "flow:upstream_vessel:inlet_valve", + "2374": "flow:upstream_vessel:inlet_valve", + "2375": "flow:upstream_vessel:inlet_valve", + "2376": "flow:upstream_vessel:inlet_valve", + "2377": "flow:upstream_vessel:inlet_valve", + "2378": "flow:upstream_vessel:inlet_valve", + "2379": "flow:upstream_vessel:inlet_valve", + "2380": "flow:upstream_vessel:inlet_valve", + "2381": "flow:upstream_vessel:inlet_valve", + "2382": "flow:upstream_vessel:inlet_valve", + "2383": "flow:upstream_vessel:inlet_valve", + "2384": "flow:upstream_vessel:inlet_valve", + "2385": "flow:upstream_vessel:inlet_valve", + "2386": "flow:upstream_vessel:inlet_valve", + "2387": "flow:upstream_vessel:inlet_valve", + "2388": "flow:upstream_vessel:inlet_valve", + "2389": "flow:upstream_vessel:inlet_valve", + "2390": "flow:upstream_vessel:inlet_valve", + "2391": "flow:upstream_vessel:inlet_valve", + "2392": "flow:upstream_vessel:inlet_valve", + "2393": "flow:upstream_vessel:inlet_valve", + "2394": "flow:upstream_vessel:inlet_valve", + "2395": "flow:upstream_vessel:inlet_valve", + "2396": "flow:upstream_vessel:inlet_valve", + "2397": "flow:upstream_vessel:inlet_valve", + "2398": "flow:upstream_vessel:inlet_valve", + "2399": "flow:upstream_vessel:inlet_valve", + "2400": "flow:upstream_vessel:inlet_valve", + "2401": "flow:upstream_vessel:inlet_valve", + "2402": "flow:upstream_vessel:inlet_valve", + "2403": "flow:upstream_vessel:inlet_valve", + "2404": "flow:upstream_vessel:inlet_valve", + "2405": "flow:upstream_vessel:inlet_valve", + "2406": "flow:upstream_vessel:inlet_valve", + "2407": "flow:upstream_vessel:inlet_valve", + "2408": "flow:upstream_vessel:inlet_valve", + "2409": "flow:upstream_vessel:inlet_valve", + "2410": "flow:upstream_vessel:inlet_valve", + "2411": "flow:upstream_vessel:inlet_valve", + "2412": "flow:upstream_vessel:inlet_valve", + "2413": "flow:upstream_vessel:inlet_valve", + "2414": "flow:upstream_vessel:inlet_valve", + "2415": "flow:upstream_vessel:inlet_valve", + "2416": "flow:upstream_vessel:inlet_valve", + "2417": "flow:upstream_vessel:inlet_valve", + "2418": "flow:upstream_vessel:inlet_valve", + "2419": "flow:upstream_vessel:inlet_valve", + "2420": "flow:upstream_vessel:inlet_valve", + "2421": "flow:upstream_vessel:inlet_valve", + "2422": "flow:upstream_vessel:inlet_valve", + "2423": "flow:upstream_vessel:inlet_valve", + "2424": "flow:upstream_vessel:inlet_valve", + "2425": "flow:upstream_vessel:inlet_valve", + "2426": "flow:upstream_vessel:inlet_valve", + "2427": "flow:upstream_vessel:inlet_valve", + "2428": "flow:upstream_vessel:inlet_valve", + "2429": "flow:upstream_vessel:inlet_valve", + "2430": "flow:upstream_vessel:inlet_valve", + "2431": "flow:upstream_vessel:inlet_valve", + "2432": "flow:upstream_vessel:inlet_valve", + "2433": "flow:upstream_vessel:inlet_valve", + "2434": "flow:upstream_vessel:inlet_valve", + "2435": "flow:upstream_vessel:inlet_valve", + "2436": "flow:upstream_vessel:inlet_valve", + "2437": "flow:upstream_vessel:inlet_valve", + "2438": "flow:upstream_vessel:inlet_valve", + "2439": "flow:upstream_vessel:inlet_valve", + "2440": "flow:upstream_vessel:inlet_valve", + "2441": "flow:upstream_vessel:inlet_valve", + "2442": "flow:upstream_vessel:inlet_valve", + "2443": "flow:upstream_vessel:inlet_valve", + "2444": "flow:upstream_vessel:inlet_valve", + "2445": "flow:upstream_vessel:inlet_valve", + "2446": "flow:upstream_vessel:inlet_valve", + "2447": "flow:upstream_vessel:inlet_valve", + "2448": "flow:upstream_vessel:inlet_valve", + "2449": "flow:upstream_vessel:inlet_valve", + "2450": "flow:upstream_vessel:inlet_valve", + "2451": "flow:upstream_vessel:inlet_valve", + "2452": "flow:upstream_vessel:inlet_valve", + "2453": "flow:upstream_vessel:inlet_valve", + "2454": "flow:upstream_vessel:inlet_valve", + "2455": "flow:upstream_vessel:inlet_valve", + "2456": "flow:upstream_vessel:inlet_valve", + "2457": "flow:upstream_vessel:inlet_valve", + "2458": "flow:upstream_vessel:inlet_valve", + "2459": "flow:upstream_vessel:inlet_valve", + "2460": "flow:upstream_vessel:inlet_valve", + "2461": "flow:upstream_vessel:inlet_valve", + "2462": "flow:upstream_vessel:inlet_valve", + "2463": "flow:upstream_vessel:inlet_valve", + "2464": "flow:upstream_vessel:inlet_valve", + "2465": "flow:upstream_vessel:inlet_valve", + "2466": "flow:upstream_vessel:inlet_valve", + "2467": "flow:upstream_vessel:inlet_valve", + "2468": "flow:upstream_vessel:inlet_valve", + "2469": "flow:upstream_vessel:inlet_valve", + "2470": "flow:upstream_vessel:inlet_valve", + "2471": "flow:upstream_vessel:inlet_valve", + "2472": "flow:upstream_vessel:inlet_valve", + "2473": "flow:upstream_vessel:inlet_valve", + "2474": "flow:upstream_vessel:inlet_valve", + "2475": "flow:upstream_vessel:inlet_valve", + "2476": "flow:upstream_vessel:inlet_valve", + "2477": "flow:upstream_vessel:inlet_valve", + "2478": "flow:upstream_vessel:inlet_valve", + "2479": "flow:upstream_vessel:inlet_valve", + "2480": "flow:upstream_vessel:inlet_valve", + "2481": "flow:upstream_vessel:inlet_valve", + "2482": "flow:upstream_vessel:inlet_valve", + "2483": "flow:upstream_vessel:inlet_valve", + "2484": "flow:upstream_vessel:inlet_valve", + "2485": "flow:upstream_vessel:inlet_valve", + "2486": "flow:upstream_vessel:inlet_valve", + "2487": "flow:upstream_vessel:inlet_valve", + "2488": "flow:upstream_vessel:inlet_valve", + "2489": "flow:upstream_vessel:inlet_valve", + "2490": "flow:upstream_vessel:inlet_valve", + "2491": "flow:upstream_vessel:inlet_valve", + "2492": "flow:upstream_vessel:inlet_valve", + "2493": "flow:upstream_vessel:inlet_valve", + "2494": "flow:upstream_vessel:inlet_valve", + "2495": "flow:upstream_vessel:inlet_valve", + "2496": "flow:upstream_vessel:inlet_valve", + "2497": "flow:upstream_vessel:inlet_valve", + "2498": "flow:upstream_vessel:inlet_valve", + "2499": "flow:upstream_vessel:inlet_valve", + "2500": "pressure:upstream_vessel:inlet_valve", + "2501": "pressure:upstream_vessel:inlet_valve", + "2502": "pressure:upstream_vessel:inlet_valve", + "2503": "pressure:upstream_vessel:inlet_valve", + "2504": "pressure:upstream_vessel:inlet_valve", + "2505": "pressure:upstream_vessel:inlet_valve", + "2506": "pressure:upstream_vessel:inlet_valve", + "2507": "pressure:upstream_vessel:inlet_valve", + "2508": "pressure:upstream_vessel:inlet_valve", + "2509": "pressure:upstream_vessel:inlet_valve", + "2510": "pressure:upstream_vessel:inlet_valve", + "2511": "pressure:upstream_vessel:inlet_valve", + "2512": "pressure:upstream_vessel:inlet_valve", + "2513": "pressure:upstream_vessel:inlet_valve", + "2514": "pressure:upstream_vessel:inlet_valve", + "2515": "pressure:upstream_vessel:inlet_valve", + "2516": "pressure:upstream_vessel:inlet_valve", + "2517": "pressure:upstream_vessel:inlet_valve", + "2518": "pressure:upstream_vessel:inlet_valve", + "2519": "pressure:upstream_vessel:inlet_valve", + "2520": "pressure:upstream_vessel:inlet_valve", + "2521": "pressure:upstream_vessel:inlet_valve", + "2522": "pressure:upstream_vessel:inlet_valve", + "2523": "pressure:upstream_vessel:inlet_valve", + "2524": "pressure:upstream_vessel:inlet_valve", + "2525": "pressure:upstream_vessel:inlet_valve", + "2526": "pressure:upstream_vessel:inlet_valve", + "2527": "pressure:upstream_vessel:inlet_valve", + "2528": "pressure:upstream_vessel:inlet_valve", + "2529": "pressure:upstream_vessel:inlet_valve", + "2530": "pressure:upstream_vessel:inlet_valve", + "2531": "pressure:upstream_vessel:inlet_valve", + "2532": "pressure:upstream_vessel:inlet_valve", + "2533": "pressure:upstream_vessel:inlet_valve", + "2534": "pressure:upstream_vessel:inlet_valve", + "2535": "pressure:upstream_vessel:inlet_valve", + "2536": "pressure:upstream_vessel:inlet_valve", + "2537": "pressure:upstream_vessel:inlet_valve", + "2538": "pressure:upstream_vessel:inlet_valve", + "2539": "pressure:upstream_vessel:inlet_valve", + "2540": "pressure:upstream_vessel:inlet_valve", + "2541": "pressure:upstream_vessel:inlet_valve", + "2542": "pressure:upstream_vessel:inlet_valve", + "2543": "pressure:upstream_vessel:inlet_valve", + "2544": "pressure:upstream_vessel:inlet_valve", + "2545": "pressure:upstream_vessel:inlet_valve", + "2546": "pressure:upstream_vessel:inlet_valve", + "2547": "pressure:upstream_vessel:inlet_valve", + "2548": "pressure:upstream_vessel:inlet_valve", + "2549": "pressure:upstream_vessel:inlet_valve", + "2550": "pressure:upstream_vessel:inlet_valve", + "2551": "pressure:upstream_vessel:inlet_valve", + "2552": "pressure:upstream_vessel:inlet_valve", + "2553": "pressure:upstream_vessel:inlet_valve", + "2554": "pressure:upstream_vessel:inlet_valve", + "2555": "pressure:upstream_vessel:inlet_valve", + "2556": "pressure:upstream_vessel:inlet_valve", + "2557": "pressure:upstream_vessel:inlet_valve", + "2558": "pressure:upstream_vessel:inlet_valve", + "2559": "pressure:upstream_vessel:inlet_valve", + "2560": "pressure:upstream_vessel:inlet_valve", + "2561": "pressure:upstream_vessel:inlet_valve", + "2562": "pressure:upstream_vessel:inlet_valve", + "2563": "pressure:upstream_vessel:inlet_valve", + "2564": "pressure:upstream_vessel:inlet_valve", + "2565": "pressure:upstream_vessel:inlet_valve", + "2566": "pressure:upstream_vessel:inlet_valve", + "2567": "pressure:upstream_vessel:inlet_valve", + "2568": "pressure:upstream_vessel:inlet_valve", + "2569": "pressure:upstream_vessel:inlet_valve", + "2570": "pressure:upstream_vessel:inlet_valve", + "2571": "pressure:upstream_vessel:inlet_valve", + "2572": "pressure:upstream_vessel:inlet_valve", + "2573": "pressure:upstream_vessel:inlet_valve", + "2574": "pressure:upstream_vessel:inlet_valve", + "2575": "pressure:upstream_vessel:inlet_valve", + "2576": "pressure:upstream_vessel:inlet_valve", + "2577": "pressure:upstream_vessel:inlet_valve", + "2578": "pressure:upstream_vessel:inlet_valve", + "2579": "pressure:upstream_vessel:inlet_valve", + "2580": "pressure:upstream_vessel:inlet_valve", + "2581": "pressure:upstream_vessel:inlet_valve", + "2582": "pressure:upstream_vessel:inlet_valve", + "2583": "pressure:upstream_vessel:inlet_valve", + "2584": "pressure:upstream_vessel:inlet_valve", + "2585": "pressure:upstream_vessel:inlet_valve", + "2586": "pressure:upstream_vessel:inlet_valve", + "2587": "pressure:upstream_vessel:inlet_valve", + "2588": "pressure:upstream_vessel:inlet_valve", + "2589": "pressure:upstream_vessel:inlet_valve", + "2590": "pressure:upstream_vessel:inlet_valve", + "2591": "pressure:upstream_vessel:inlet_valve", + "2592": "pressure:upstream_vessel:inlet_valve", + "2593": "pressure:upstream_vessel:inlet_valve", + "2594": "pressure:upstream_vessel:inlet_valve", + "2595": "pressure:upstream_vessel:inlet_valve", + "2596": "pressure:upstream_vessel:inlet_valve", + "2597": "pressure:upstream_vessel:inlet_valve", + "2598": "pressure:upstream_vessel:inlet_valve", + "2599": "pressure:upstream_vessel:inlet_valve", + "2600": "pressure:upstream_vessel:inlet_valve", + "2601": "pressure:upstream_vessel:inlet_valve", + "2602": "pressure:upstream_vessel:inlet_valve", + "2603": "pressure:upstream_vessel:inlet_valve", + "2604": "pressure:upstream_vessel:inlet_valve", + "2605": "pressure:upstream_vessel:inlet_valve", + "2606": "pressure:upstream_vessel:inlet_valve", + "2607": "pressure:upstream_vessel:inlet_valve", + "2608": "pressure:upstream_vessel:inlet_valve", + "2609": "pressure:upstream_vessel:inlet_valve", + "2610": "pressure:upstream_vessel:inlet_valve", + "2611": "pressure:upstream_vessel:inlet_valve", + "2612": "pressure:upstream_vessel:inlet_valve", + "2613": "pressure:upstream_vessel:inlet_valve", + "2614": "pressure:upstream_vessel:inlet_valve", + "2615": "pressure:upstream_vessel:inlet_valve", + "2616": "pressure:upstream_vessel:inlet_valve", + "2617": "pressure:upstream_vessel:inlet_valve", + "2618": "pressure:upstream_vessel:inlet_valve", + "2619": "pressure:upstream_vessel:inlet_valve", + "2620": "pressure:upstream_vessel:inlet_valve", + "2621": "pressure:upstream_vessel:inlet_valve", + "2622": "pressure:upstream_vessel:inlet_valve", + "2623": "pressure:upstream_vessel:inlet_valve", + "2624": "pressure:upstream_vessel:inlet_valve", + "2625": "pressure:upstream_vessel:inlet_valve", + "2626": "pressure:upstream_vessel:inlet_valve", + "2627": "pressure:upstream_vessel:inlet_valve", + "2628": "pressure:upstream_vessel:inlet_valve", + "2629": "pressure:upstream_vessel:inlet_valve", + "2630": "pressure:upstream_vessel:inlet_valve", + "2631": "pressure:upstream_vessel:inlet_valve", + "2632": "pressure:upstream_vessel:inlet_valve", + "2633": "pressure:upstream_vessel:inlet_valve", + "2634": "pressure:upstream_vessel:inlet_valve", + "2635": "pressure:upstream_vessel:inlet_valve", + "2636": "pressure:upstream_vessel:inlet_valve", + "2637": "pressure:upstream_vessel:inlet_valve", + "2638": "pressure:upstream_vessel:inlet_valve", + "2639": "pressure:upstream_vessel:inlet_valve", + "2640": "pressure:upstream_vessel:inlet_valve", + "2641": "pressure:upstream_vessel:inlet_valve", + "2642": "pressure:upstream_vessel:inlet_valve", + "2643": "pressure:upstream_vessel:inlet_valve", + "2644": "pressure:upstream_vessel:inlet_valve", + "2645": "pressure:upstream_vessel:inlet_valve", + "2646": "pressure:upstream_vessel:inlet_valve", + "2647": "pressure:upstream_vessel:inlet_valve", + "2648": "pressure:upstream_vessel:inlet_valve", + "2649": "pressure:upstream_vessel:inlet_valve", + "2650": "pressure:upstream_vessel:inlet_valve", + "2651": "pressure:upstream_vessel:inlet_valve", + "2652": "pressure:upstream_vessel:inlet_valve", + "2653": "pressure:upstream_vessel:inlet_valve", + "2654": "pressure:upstream_vessel:inlet_valve", + "2655": "pressure:upstream_vessel:inlet_valve", + "2656": "pressure:upstream_vessel:inlet_valve", + "2657": "pressure:upstream_vessel:inlet_valve", + "2658": "pressure:upstream_vessel:inlet_valve", + "2659": "pressure:upstream_vessel:inlet_valve", + "2660": "pressure:upstream_vessel:inlet_valve", + "2661": "pressure:upstream_vessel:inlet_valve", + "2662": "pressure:upstream_vessel:inlet_valve", + "2663": "pressure:upstream_vessel:inlet_valve", + "2664": "pressure:upstream_vessel:inlet_valve", + "2665": "pressure:upstream_vessel:inlet_valve", + "2666": "pressure:upstream_vessel:inlet_valve", + "2667": "pressure:upstream_vessel:inlet_valve", + "2668": "pressure:upstream_vessel:inlet_valve", + "2669": "pressure:upstream_vessel:inlet_valve", + "2670": "pressure:upstream_vessel:inlet_valve", + "2671": "pressure:upstream_vessel:inlet_valve", + "2672": "pressure:upstream_vessel:inlet_valve", + "2673": "pressure:upstream_vessel:inlet_valve", + "2674": "pressure:upstream_vessel:inlet_valve", + "2675": "pressure:upstream_vessel:inlet_valve", + "2676": "pressure:upstream_vessel:inlet_valve", + "2677": "pressure:upstream_vessel:inlet_valve", + "2678": "pressure:upstream_vessel:inlet_valve", + "2679": "pressure:upstream_vessel:inlet_valve", + "2680": "pressure:upstream_vessel:inlet_valve", + "2681": "pressure:upstream_vessel:inlet_valve", + "2682": "pressure:upstream_vessel:inlet_valve", + "2683": "pressure:upstream_vessel:inlet_valve", + "2684": "pressure:upstream_vessel:inlet_valve", + "2685": "pressure:upstream_vessel:inlet_valve", + "2686": "pressure:upstream_vessel:inlet_valve", + "2687": "pressure:upstream_vessel:inlet_valve", + "2688": "pressure:upstream_vessel:inlet_valve", + "2689": "pressure:upstream_vessel:inlet_valve", + "2690": "pressure:upstream_vessel:inlet_valve", + "2691": "pressure:upstream_vessel:inlet_valve", + "2692": "pressure:upstream_vessel:inlet_valve", + "2693": "pressure:upstream_vessel:inlet_valve", + "2694": "pressure:upstream_vessel:inlet_valve", + "2695": "pressure:upstream_vessel:inlet_valve", + "2696": "pressure:upstream_vessel:inlet_valve", + "2697": "pressure:upstream_vessel:inlet_valve", + "2698": "pressure:upstream_vessel:inlet_valve", + "2699": "pressure:upstream_vessel:inlet_valve", + "2700": "pressure:upstream_vessel:inlet_valve", + "2701": "pressure:upstream_vessel:inlet_valve", + "2702": "pressure:upstream_vessel:inlet_valve", + "2703": "pressure:upstream_vessel:inlet_valve", + "2704": "pressure:upstream_vessel:inlet_valve", + "2705": "pressure:upstream_vessel:inlet_valve", + "2706": "pressure:upstream_vessel:inlet_valve", + "2707": "pressure:upstream_vessel:inlet_valve", + "2708": "pressure:upstream_vessel:inlet_valve", + "2709": "pressure:upstream_vessel:inlet_valve", + "2710": "pressure:upstream_vessel:inlet_valve", + "2711": "pressure:upstream_vessel:inlet_valve", + "2712": "pressure:upstream_vessel:inlet_valve", + "2713": "pressure:upstream_vessel:inlet_valve", + "2714": "pressure:upstream_vessel:inlet_valve", + "2715": "pressure:upstream_vessel:inlet_valve", + "2716": "pressure:upstream_vessel:inlet_valve", + "2717": "pressure:upstream_vessel:inlet_valve", + "2718": "pressure:upstream_vessel:inlet_valve", + "2719": "pressure:upstream_vessel:inlet_valve", + "2720": "pressure:upstream_vessel:inlet_valve", + "2721": "pressure:upstream_vessel:inlet_valve", + "2722": "pressure:upstream_vessel:inlet_valve", + "2723": "pressure:upstream_vessel:inlet_valve", + "2724": "pressure:upstream_vessel:inlet_valve", + "2725": "pressure:upstream_vessel:inlet_valve", + "2726": "pressure:upstream_vessel:inlet_valve", + "2727": "pressure:upstream_vessel:inlet_valve", + "2728": "pressure:upstream_vessel:inlet_valve", + "2729": "pressure:upstream_vessel:inlet_valve", + "2730": "pressure:upstream_vessel:inlet_valve", + "2731": "pressure:upstream_vessel:inlet_valve", + "2732": "pressure:upstream_vessel:inlet_valve", + "2733": "pressure:upstream_vessel:inlet_valve", + "2734": "pressure:upstream_vessel:inlet_valve", + "2735": "pressure:upstream_vessel:inlet_valve", + "2736": "pressure:upstream_vessel:inlet_valve", + "2737": "pressure:upstream_vessel:inlet_valve", + "2738": "pressure:upstream_vessel:inlet_valve", + "2739": "pressure:upstream_vessel:inlet_valve", + "2740": "pressure:upstream_vessel:inlet_valve", + "2741": "pressure:upstream_vessel:inlet_valve", + "2742": "pressure:upstream_vessel:inlet_valve", + "2743": "pressure:upstream_vessel:inlet_valve", + "2744": "pressure:upstream_vessel:inlet_valve", + "2745": "pressure:upstream_vessel:inlet_valve", + "2746": "pressure:upstream_vessel:inlet_valve", + "2747": "pressure:upstream_vessel:inlet_valve", + "2748": "pressure:upstream_vessel:inlet_valve", + "2749": "pressure:upstream_vessel:inlet_valve", + "2750": "pressure:upstream_vessel:inlet_valve", + "2751": "pressure:upstream_vessel:inlet_valve", + "2752": "pressure:upstream_vessel:inlet_valve", + "2753": "pressure:upstream_vessel:inlet_valve", + "2754": "pressure:upstream_vessel:inlet_valve", + "2755": "pressure:upstream_vessel:inlet_valve", + "2756": "pressure:upstream_vessel:inlet_valve", + "2757": "pressure:upstream_vessel:inlet_valve", + "2758": "pressure:upstream_vessel:inlet_valve", + "2759": "pressure:upstream_vessel:inlet_valve", + "2760": "pressure:upstream_vessel:inlet_valve", + "2761": "pressure:upstream_vessel:inlet_valve", + "2762": "pressure:upstream_vessel:inlet_valve", + "2763": "pressure:upstream_vessel:inlet_valve", + "2764": "pressure:upstream_vessel:inlet_valve", + "2765": "pressure:upstream_vessel:inlet_valve", + "2766": "pressure:upstream_vessel:inlet_valve", + "2767": "pressure:upstream_vessel:inlet_valve", + "2768": "pressure:upstream_vessel:inlet_valve", + "2769": "pressure:upstream_vessel:inlet_valve", + "2770": "pressure:upstream_vessel:inlet_valve", + "2771": "pressure:upstream_vessel:inlet_valve", + "2772": "pressure:upstream_vessel:inlet_valve", + "2773": "pressure:upstream_vessel:inlet_valve", + "2774": "pressure:upstream_vessel:inlet_valve", + "2775": "pressure:upstream_vessel:inlet_valve", + "2776": "pressure:upstream_vessel:inlet_valve", + "2777": "pressure:upstream_vessel:inlet_valve", + "2778": "pressure:upstream_vessel:inlet_valve", + "2779": "pressure:upstream_vessel:inlet_valve", + "2780": "pressure:upstream_vessel:inlet_valve", + "2781": "pressure:upstream_vessel:inlet_valve", + "2782": "pressure:upstream_vessel:inlet_valve", + "2783": "pressure:upstream_vessel:inlet_valve", + "2784": "pressure:upstream_vessel:inlet_valve", + "2785": "pressure:upstream_vessel:inlet_valve", + "2786": "pressure:upstream_vessel:inlet_valve", + "2787": "pressure:upstream_vessel:inlet_valve", + "2788": "pressure:upstream_vessel:inlet_valve", + "2789": "pressure:upstream_vessel:inlet_valve", + "2790": "pressure:upstream_vessel:inlet_valve", + "2791": "pressure:upstream_vessel:inlet_valve", + "2792": "pressure:upstream_vessel:inlet_valve", + "2793": "pressure:upstream_vessel:inlet_valve", + "2794": "pressure:upstream_vessel:inlet_valve", + "2795": "pressure:upstream_vessel:inlet_valve", + "2796": "pressure:upstream_vessel:inlet_valve", + "2797": "pressure:upstream_vessel:inlet_valve", + "2798": "pressure:upstream_vessel:inlet_valve", + "2799": "pressure:upstream_vessel:inlet_valve", + "2800": "pressure:upstream_vessel:inlet_valve", + "2801": "pressure:upstream_vessel:inlet_valve", + "2802": "pressure:upstream_vessel:inlet_valve", + "2803": "pressure:upstream_vessel:inlet_valve", + "2804": "pressure:upstream_vessel:inlet_valve", + "2805": "pressure:upstream_vessel:inlet_valve", + "2806": "pressure:upstream_vessel:inlet_valve", + "2807": "pressure:upstream_vessel:inlet_valve", + "2808": "pressure:upstream_vessel:inlet_valve", + "2809": "pressure:upstream_vessel:inlet_valve", + "2810": "pressure:upstream_vessel:inlet_valve", + "2811": "pressure:upstream_vessel:inlet_valve", + "2812": "pressure:upstream_vessel:inlet_valve", + "2813": "pressure:upstream_vessel:inlet_valve", + "2814": "pressure:upstream_vessel:inlet_valve", + "2815": "pressure:upstream_vessel:inlet_valve", + "2816": "pressure:upstream_vessel:inlet_valve", + "2817": "pressure:upstream_vessel:inlet_valve", + "2818": "pressure:upstream_vessel:inlet_valve", + "2819": "pressure:upstream_vessel:inlet_valve", + "2820": "pressure:upstream_vessel:inlet_valve", + "2821": "pressure:upstream_vessel:inlet_valve", + "2822": "pressure:upstream_vessel:inlet_valve", + "2823": "pressure:upstream_vessel:inlet_valve", + "2824": "pressure:upstream_vessel:inlet_valve", + "2825": "pressure:upstream_vessel:inlet_valve", + "2826": "pressure:upstream_vessel:inlet_valve", + "2827": "pressure:upstream_vessel:inlet_valve", + "2828": "pressure:upstream_vessel:inlet_valve", + "2829": "pressure:upstream_vessel:inlet_valve", + "2830": "pressure:upstream_vessel:inlet_valve", + "2831": "pressure:upstream_vessel:inlet_valve", + "2832": "pressure:upstream_vessel:inlet_valve", + "2833": "pressure:upstream_vessel:inlet_valve", + "2834": "pressure:upstream_vessel:inlet_valve", + "2835": "pressure:upstream_vessel:inlet_valve", + "2836": "pressure:upstream_vessel:inlet_valve", + "2837": "pressure:upstream_vessel:inlet_valve", + "2838": "pressure:upstream_vessel:inlet_valve", + "2839": "pressure:upstream_vessel:inlet_valve", + "2840": "pressure:upstream_vessel:inlet_valve", + "2841": "pressure:upstream_vessel:inlet_valve", + "2842": "pressure:upstream_vessel:inlet_valve", + "2843": "pressure:upstream_vessel:inlet_valve", + "2844": "pressure:upstream_vessel:inlet_valve", + "2845": "pressure:upstream_vessel:inlet_valve", + "2846": "pressure:upstream_vessel:inlet_valve", + "2847": "pressure:upstream_vessel:inlet_valve", + "2848": "pressure:upstream_vessel:inlet_valve", + "2849": "pressure:upstream_vessel:inlet_valve", + "2850": "pressure:upstream_vessel:inlet_valve", + "2851": "pressure:upstream_vessel:inlet_valve", + "2852": "pressure:upstream_vessel:inlet_valve", + "2853": "pressure:upstream_vessel:inlet_valve", + "2854": "pressure:upstream_vessel:inlet_valve", + "2855": "pressure:upstream_vessel:inlet_valve", + "2856": "pressure:upstream_vessel:inlet_valve", + "2857": "pressure:upstream_vessel:inlet_valve", + "2858": "pressure:upstream_vessel:inlet_valve", + "2859": "pressure:upstream_vessel:inlet_valve", + "2860": "pressure:upstream_vessel:inlet_valve", + "2861": "pressure:upstream_vessel:inlet_valve", + "2862": "pressure:upstream_vessel:inlet_valve", + "2863": "pressure:upstream_vessel:inlet_valve", + "2864": "pressure:upstream_vessel:inlet_valve", + "2865": "pressure:upstream_vessel:inlet_valve", + "2866": "pressure:upstream_vessel:inlet_valve", + "2867": "pressure:upstream_vessel:inlet_valve", + "2868": "pressure:upstream_vessel:inlet_valve", + "2869": "pressure:upstream_vessel:inlet_valve", + "2870": "pressure:upstream_vessel:inlet_valve", + "2871": "pressure:upstream_vessel:inlet_valve", + "2872": "pressure:upstream_vessel:inlet_valve", + "2873": "pressure:upstream_vessel:inlet_valve", + "2874": "pressure:upstream_vessel:inlet_valve", + "2875": "pressure:upstream_vessel:inlet_valve", + "2876": "pressure:upstream_vessel:inlet_valve", + "2877": "pressure:upstream_vessel:inlet_valve", + "2878": "pressure:upstream_vessel:inlet_valve", + "2879": "pressure:upstream_vessel:inlet_valve", + "2880": "pressure:upstream_vessel:inlet_valve", + "2881": "pressure:upstream_vessel:inlet_valve", + "2882": "pressure:upstream_vessel:inlet_valve", + "2883": "pressure:upstream_vessel:inlet_valve", + "2884": "pressure:upstream_vessel:inlet_valve", + "2885": "pressure:upstream_vessel:inlet_valve", + "2886": "pressure:upstream_vessel:inlet_valve", + "2887": "pressure:upstream_vessel:inlet_valve", + "2888": "pressure:upstream_vessel:inlet_valve", + "2889": "pressure:upstream_vessel:inlet_valve", + "2890": "pressure:upstream_vessel:inlet_valve", + "2891": "pressure:upstream_vessel:inlet_valve", + "2892": "pressure:upstream_vessel:inlet_valve", + "2893": "pressure:upstream_vessel:inlet_valve", + "2894": "pressure:upstream_vessel:inlet_valve", + "2895": "pressure:upstream_vessel:inlet_valve", + "2896": "pressure:upstream_vessel:inlet_valve", + "2897": "pressure:upstream_vessel:inlet_valve", + "2898": "pressure:upstream_vessel:inlet_valve", + "2899": "pressure:upstream_vessel:inlet_valve", + "2900": "pressure:upstream_vessel:inlet_valve", + "2901": "pressure:upstream_vessel:inlet_valve", + "2902": "pressure:upstream_vessel:inlet_valve", + "2903": "pressure:upstream_vessel:inlet_valve", + "2904": "pressure:upstream_vessel:inlet_valve", + "2905": "pressure:upstream_vessel:inlet_valve", + "2906": "pressure:upstream_vessel:inlet_valve", + "2907": "pressure:upstream_vessel:inlet_valve", + "2908": "pressure:upstream_vessel:inlet_valve", + "2909": "pressure:upstream_vessel:inlet_valve", + "2910": "pressure:upstream_vessel:inlet_valve", + "2911": "pressure:upstream_vessel:inlet_valve", + "2912": "pressure:upstream_vessel:inlet_valve", + "2913": "pressure:upstream_vessel:inlet_valve", + "2914": "pressure:upstream_vessel:inlet_valve", + "2915": "pressure:upstream_vessel:inlet_valve", + "2916": "pressure:upstream_vessel:inlet_valve", + "2917": "pressure:upstream_vessel:inlet_valve", + "2918": "pressure:upstream_vessel:inlet_valve", + "2919": "pressure:upstream_vessel:inlet_valve", + "2920": "pressure:upstream_vessel:inlet_valve", + "2921": "pressure:upstream_vessel:inlet_valve", + "2922": "pressure:upstream_vessel:inlet_valve", + "2923": "pressure:upstream_vessel:inlet_valve", + "2924": "pressure:upstream_vessel:inlet_valve", + "2925": "pressure:upstream_vessel:inlet_valve", + "2926": "pressure:upstream_vessel:inlet_valve", + "2927": "pressure:upstream_vessel:inlet_valve", + "2928": "pressure:upstream_vessel:inlet_valve", + "2929": "pressure:upstream_vessel:inlet_valve", + "2930": "pressure:upstream_vessel:inlet_valve", + "2931": "pressure:upstream_vessel:inlet_valve", + "2932": "pressure:upstream_vessel:inlet_valve", + "2933": "pressure:upstream_vessel:inlet_valve", + "2934": "pressure:upstream_vessel:inlet_valve", + "2935": "pressure:upstream_vessel:inlet_valve", + "2936": "pressure:upstream_vessel:inlet_valve", + "2937": "pressure:upstream_vessel:inlet_valve", + "2938": "pressure:upstream_vessel:inlet_valve", + "2939": "pressure:upstream_vessel:inlet_valve", + "2940": "pressure:upstream_vessel:inlet_valve", + "2941": "pressure:upstream_vessel:inlet_valve", + "2942": "pressure:upstream_vessel:inlet_valve", + "2943": "pressure:upstream_vessel:inlet_valve", + "2944": "pressure:upstream_vessel:inlet_valve", + "2945": "pressure:upstream_vessel:inlet_valve", + "2946": "pressure:upstream_vessel:inlet_valve", + "2947": "pressure:upstream_vessel:inlet_valve", + "2948": "pressure:upstream_vessel:inlet_valve", + "2949": "pressure:upstream_vessel:inlet_valve", + "2950": "pressure:upstream_vessel:inlet_valve", + "2951": "pressure:upstream_vessel:inlet_valve", + "2952": "pressure:upstream_vessel:inlet_valve", + "2953": "pressure:upstream_vessel:inlet_valve", + "2954": "pressure:upstream_vessel:inlet_valve", + "2955": "pressure:upstream_vessel:inlet_valve", + "2956": "pressure:upstream_vessel:inlet_valve", + "2957": "pressure:upstream_vessel:inlet_valve", + "2958": "pressure:upstream_vessel:inlet_valve", + "2959": "pressure:upstream_vessel:inlet_valve", + "2960": "pressure:upstream_vessel:inlet_valve", + "2961": "pressure:upstream_vessel:inlet_valve", + "2962": "pressure:upstream_vessel:inlet_valve", + "2963": "pressure:upstream_vessel:inlet_valve", + "2964": "pressure:upstream_vessel:inlet_valve", + "2965": "pressure:upstream_vessel:inlet_valve", + "2966": "pressure:upstream_vessel:inlet_valve", + "2967": "pressure:upstream_vessel:inlet_valve", + "2968": "pressure:upstream_vessel:inlet_valve", + "2969": "pressure:upstream_vessel:inlet_valve", + "2970": "pressure:upstream_vessel:inlet_valve", + "2971": "pressure:upstream_vessel:inlet_valve", + "2972": "pressure:upstream_vessel:inlet_valve", + "2973": "pressure:upstream_vessel:inlet_valve", + "2974": "pressure:upstream_vessel:inlet_valve", + "2975": "pressure:upstream_vessel:inlet_valve", + "2976": "pressure:upstream_vessel:inlet_valve", + "2977": "pressure:upstream_vessel:inlet_valve", + "2978": "pressure:upstream_vessel:inlet_valve", + "2979": "pressure:upstream_vessel:inlet_valve", + "2980": "pressure:upstream_vessel:inlet_valve", + "2981": "pressure:upstream_vessel:inlet_valve", + "2982": "pressure:upstream_vessel:inlet_valve", + "2983": "pressure:upstream_vessel:inlet_valve", + "2984": "pressure:upstream_vessel:inlet_valve", + "2985": "pressure:upstream_vessel:inlet_valve", + "2986": "pressure:upstream_vessel:inlet_valve", + "2987": "pressure:upstream_vessel:inlet_valve", + "2988": "pressure:upstream_vessel:inlet_valve", + "2989": "pressure:upstream_vessel:inlet_valve", + "2990": "pressure:upstream_vessel:inlet_valve", + "2991": "pressure:upstream_vessel:inlet_valve", + "2992": "pressure:upstream_vessel:inlet_valve", + "2993": "pressure:upstream_vessel:inlet_valve", + "2994": "pressure:upstream_vessel:inlet_valve", + "2995": "pressure:upstream_vessel:inlet_valve", + "2996": "pressure:upstream_vessel:inlet_valve", + "2997": "pressure:upstream_vessel:inlet_valve", + "2998": "pressure:upstream_vessel:inlet_valve", + "2999": "pressure:upstream_vessel:inlet_valve", + "3000": "flow:inlet_valve:ventricle", + "3001": "flow:inlet_valve:ventricle", + "3002": "flow:inlet_valve:ventricle", + "3003": "flow:inlet_valve:ventricle", + "3004": "flow:inlet_valve:ventricle", + "3005": "flow:inlet_valve:ventricle", + "3006": "flow:inlet_valve:ventricle", + "3007": "flow:inlet_valve:ventricle", + "3008": "flow:inlet_valve:ventricle", + "3009": "flow:inlet_valve:ventricle", + "3010": "flow:inlet_valve:ventricle", + "3011": "flow:inlet_valve:ventricle", + "3012": "flow:inlet_valve:ventricle", + "3013": "flow:inlet_valve:ventricle", + "3014": "flow:inlet_valve:ventricle", + "3015": "flow:inlet_valve:ventricle", + "3016": "flow:inlet_valve:ventricle", + "3017": "flow:inlet_valve:ventricle", + "3018": "flow:inlet_valve:ventricle", + "3019": "flow:inlet_valve:ventricle", + "3020": "flow:inlet_valve:ventricle", + "3021": "flow:inlet_valve:ventricle", + "3022": "flow:inlet_valve:ventricle", + "3023": "flow:inlet_valve:ventricle", + "3024": "flow:inlet_valve:ventricle", + "3025": "flow:inlet_valve:ventricle", + "3026": "flow:inlet_valve:ventricle", + "3027": "flow:inlet_valve:ventricle", + "3028": "flow:inlet_valve:ventricle", + "3029": "flow:inlet_valve:ventricle", + "3030": "flow:inlet_valve:ventricle", + "3031": "flow:inlet_valve:ventricle", + "3032": "flow:inlet_valve:ventricle", + "3033": "flow:inlet_valve:ventricle", + "3034": "flow:inlet_valve:ventricle", + "3035": "flow:inlet_valve:ventricle", + "3036": "flow:inlet_valve:ventricle", + "3037": "flow:inlet_valve:ventricle", + "3038": "flow:inlet_valve:ventricle", + "3039": "flow:inlet_valve:ventricle", + "3040": "flow:inlet_valve:ventricle", + "3041": "flow:inlet_valve:ventricle", + "3042": "flow:inlet_valve:ventricle", + "3043": "flow:inlet_valve:ventricle", + "3044": "flow:inlet_valve:ventricle", + "3045": "flow:inlet_valve:ventricle", + "3046": "flow:inlet_valve:ventricle", + "3047": "flow:inlet_valve:ventricle", + "3048": "flow:inlet_valve:ventricle", + "3049": "flow:inlet_valve:ventricle", + "3050": "flow:inlet_valve:ventricle", + "3051": "flow:inlet_valve:ventricle", + "3052": "flow:inlet_valve:ventricle", + "3053": "flow:inlet_valve:ventricle", + "3054": "flow:inlet_valve:ventricle", + "3055": "flow:inlet_valve:ventricle", + "3056": "flow:inlet_valve:ventricle", + "3057": "flow:inlet_valve:ventricle", + "3058": "flow:inlet_valve:ventricle", + "3059": "flow:inlet_valve:ventricle", + "3060": "flow:inlet_valve:ventricle", + "3061": "flow:inlet_valve:ventricle", + "3062": "flow:inlet_valve:ventricle", + "3063": "flow:inlet_valve:ventricle", + "3064": "flow:inlet_valve:ventricle", + "3065": "flow:inlet_valve:ventricle", + "3066": "flow:inlet_valve:ventricle", + "3067": "flow:inlet_valve:ventricle", + "3068": "flow:inlet_valve:ventricle", + "3069": "flow:inlet_valve:ventricle", + "3070": "flow:inlet_valve:ventricle", + "3071": "flow:inlet_valve:ventricle", + "3072": "flow:inlet_valve:ventricle", + "3073": "flow:inlet_valve:ventricle", + "3074": "flow:inlet_valve:ventricle", + "3075": "flow:inlet_valve:ventricle", + "3076": "flow:inlet_valve:ventricle", + "3077": "flow:inlet_valve:ventricle", + "3078": "flow:inlet_valve:ventricle", + "3079": "flow:inlet_valve:ventricle", + "3080": "flow:inlet_valve:ventricle", + "3081": "flow:inlet_valve:ventricle", + "3082": "flow:inlet_valve:ventricle", + "3083": "flow:inlet_valve:ventricle", + "3084": "flow:inlet_valve:ventricle", + "3085": "flow:inlet_valve:ventricle", + "3086": "flow:inlet_valve:ventricle", + "3087": "flow:inlet_valve:ventricle", + "3088": "flow:inlet_valve:ventricle", + "3089": "flow:inlet_valve:ventricle", + "3090": "flow:inlet_valve:ventricle", + "3091": "flow:inlet_valve:ventricle", + "3092": "flow:inlet_valve:ventricle", + "3093": "flow:inlet_valve:ventricle", + "3094": "flow:inlet_valve:ventricle", + "3095": "flow:inlet_valve:ventricle", + "3096": "flow:inlet_valve:ventricle", + "3097": "flow:inlet_valve:ventricle", + "3098": "flow:inlet_valve:ventricle", + "3099": "flow:inlet_valve:ventricle", + "3100": "flow:inlet_valve:ventricle", + "3101": "flow:inlet_valve:ventricle", + "3102": "flow:inlet_valve:ventricle", + "3103": "flow:inlet_valve:ventricle", + "3104": "flow:inlet_valve:ventricle", + "3105": "flow:inlet_valve:ventricle", + "3106": "flow:inlet_valve:ventricle", + "3107": "flow:inlet_valve:ventricle", + "3108": "flow:inlet_valve:ventricle", + "3109": "flow:inlet_valve:ventricle", + "3110": "flow:inlet_valve:ventricle", + "3111": "flow:inlet_valve:ventricle", + "3112": "flow:inlet_valve:ventricle", + "3113": "flow:inlet_valve:ventricle", + "3114": "flow:inlet_valve:ventricle", + "3115": "flow:inlet_valve:ventricle", + "3116": "flow:inlet_valve:ventricle", + "3117": "flow:inlet_valve:ventricle", + "3118": "flow:inlet_valve:ventricle", + "3119": "flow:inlet_valve:ventricle", + "3120": "flow:inlet_valve:ventricle", + "3121": "flow:inlet_valve:ventricle", + "3122": "flow:inlet_valve:ventricle", + "3123": "flow:inlet_valve:ventricle", + "3124": "flow:inlet_valve:ventricle", + "3125": "flow:inlet_valve:ventricle", + "3126": "flow:inlet_valve:ventricle", + "3127": "flow:inlet_valve:ventricle", + "3128": "flow:inlet_valve:ventricle", + "3129": "flow:inlet_valve:ventricle", + "3130": "flow:inlet_valve:ventricle", + "3131": "flow:inlet_valve:ventricle", + "3132": "flow:inlet_valve:ventricle", + "3133": "flow:inlet_valve:ventricle", + "3134": "flow:inlet_valve:ventricle", + "3135": "flow:inlet_valve:ventricle", + "3136": "flow:inlet_valve:ventricle", + "3137": "flow:inlet_valve:ventricle", + "3138": "flow:inlet_valve:ventricle", + "3139": "flow:inlet_valve:ventricle", + "3140": "flow:inlet_valve:ventricle", + "3141": "flow:inlet_valve:ventricle", + "3142": "flow:inlet_valve:ventricle", + "3143": "flow:inlet_valve:ventricle", + "3144": "flow:inlet_valve:ventricle", + "3145": "flow:inlet_valve:ventricle", + "3146": "flow:inlet_valve:ventricle", + "3147": "flow:inlet_valve:ventricle", + "3148": "flow:inlet_valve:ventricle", + "3149": "flow:inlet_valve:ventricle", + "3150": "flow:inlet_valve:ventricle", + "3151": "flow:inlet_valve:ventricle", + "3152": "flow:inlet_valve:ventricle", + "3153": "flow:inlet_valve:ventricle", + "3154": "flow:inlet_valve:ventricle", + "3155": "flow:inlet_valve:ventricle", + "3156": "flow:inlet_valve:ventricle", + "3157": "flow:inlet_valve:ventricle", + "3158": "flow:inlet_valve:ventricle", + "3159": "flow:inlet_valve:ventricle", + "3160": "flow:inlet_valve:ventricle", + "3161": "flow:inlet_valve:ventricle", + "3162": "flow:inlet_valve:ventricle", + "3163": "flow:inlet_valve:ventricle", + "3164": "flow:inlet_valve:ventricle", + "3165": "flow:inlet_valve:ventricle", + "3166": "flow:inlet_valve:ventricle", + "3167": "flow:inlet_valve:ventricle", + "3168": "flow:inlet_valve:ventricle", + "3169": "flow:inlet_valve:ventricle", + "3170": "flow:inlet_valve:ventricle", + "3171": "flow:inlet_valve:ventricle", + "3172": "flow:inlet_valve:ventricle", + "3173": "flow:inlet_valve:ventricle", + "3174": "flow:inlet_valve:ventricle", + "3175": "flow:inlet_valve:ventricle", + "3176": "flow:inlet_valve:ventricle", + "3177": "flow:inlet_valve:ventricle", + "3178": "flow:inlet_valve:ventricle", + "3179": "flow:inlet_valve:ventricle", + "3180": "flow:inlet_valve:ventricle", + "3181": "flow:inlet_valve:ventricle", + "3182": "flow:inlet_valve:ventricle", + "3183": "flow:inlet_valve:ventricle", + "3184": "flow:inlet_valve:ventricle", + "3185": "flow:inlet_valve:ventricle", + "3186": "flow:inlet_valve:ventricle", + "3187": "flow:inlet_valve:ventricle", + "3188": "flow:inlet_valve:ventricle", + "3189": "flow:inlet_valve:ventricle", + "3190": "flow:inlet_valve:ventricle", + "3191": "flow:inlet_valve:ventricle", + "3192": "flow:inlet_valve:ventricle", + "3193": "flow:inlet_valve:ventricle", + "3194": "flow:inlet_valve:ventricle", + "3195": "flow:inlet_valve:ventricle", + "3196": "flow:inlet_valve:ventricle", + "3197": "flow:inlet_valve:ventricle", + "3198": "flow:inlet_valve:ventricle", + "3199": "flow:inlet_valve:ventricle", + "3200": "flow:inlet_valve:ventricle", + "3201": "flow:inlet_valve:ventricle", + "3202": "flow:inlet_valve:ventricle", + "3203": "flow:inlet_valve:ventricle", + "3204": "flow:inlet_valve:ventricle", + "3205": "flow:inlet_valve:ventricle", + "3206": "flow:inlet_valve:ventricle", + "3207": "flow:inlet_valve:ventricle", + "3208": "flow:inlet_valve:ventricle", + "3209": "flow:inlet_valve:ventricle", + "3210": "flow:inlet_valve:ventricle", + "3211": "flow:inlet_valve:ventricle", + "3212": "flow:inlet_valve:ventricle", + "3213": "flow:inlet_valve:ventricle", + "3214": "flow:inlet_valve:ventricle", + "3215": "flow:inlet_valve:ventricle", + "3216": "flow:inlet_valve:ventricle", + "3217": "flow:inlet_valve:ventricle", + "3218": "flow:inlet_valve:ventricle", + "3219": "flow:inlet_valve:ventricle", + "3220": "flow:inlet_valve:ventricle", + "3221": "flow:inlet_valve:ventricle", + "3222": "flow:inlet_valve:ventricle", + "3223": "flow:inlet_valve:ventricle", + "3224": "flow:inlet_valve:ventricle", + "3225": "flow:inlet_valve:ventricle", + "3226": "flow:inlet_valve:ventricle", + "3227": "flow:inlet_valve:ventricle", + "3228": "flow:inlet_valve:ventricle", + "3229": "flow:inlet_valve:ventricle", + "3230": "flow:inlet_valve:ventricle", + "3231": "flow:inlet_valve:ventricle", + "3232": "flow:inlet_valve:ventricle", + "3233": "flow:inlet_valve:ventricle", + "3234": "flow:inlet_valve:ventricle", + "3235": "flow:inlet_valve:ventricle", + "3236": "flow:inlet_valve:ventricle", + "3237": "flow:inlet_valve:ventricle", + "3238": "flow:inlet_valve:ventricle", + "3239": "flow:inlet_valve:ventricle", + "3240": "flow:inlet_valve:ventricle", + "3241": "flow:inlet_valve:ventricle", + "3242": "flow:inlet_valve:ventricle", + "3243": "flow:inlet_valve:ventricle", + "3244": "flow:inlet_valve:ventricle", + "3245": "flow:inlet_valve:ventricle", + "3246": "flow:inlet_valve:ventricle", + "3247": "flow:inlet_valve:ventricle", + "3248": "flow:inlet_valve:ventricle", + "3249": "flow:inlet_valve:ventricle", + "3250": "flow:inlet_valve:ventricle", + "3251": "flow:inlet_valve:ventricle", + "3252": "flow:inlet_valve:ventricle", + "3253": "flow:inlet_valve:ventricle", + "3254": "flow:inlet_valve:ventricle", + "3255": "flow:inlet_valve:ventricle", + "3256": "flow:inlet_valve:ventricle", + "3257": "flow:inlet_valve:ventricle", + "3258": "flow:inlet_valve:ventricle", + "3259": "flow:inlet_valve:ventricle", + "3260": "flow:inlet_valve:ventricle", + "3261": "flow:inlet_valve:ventricle", + "3262": "flow:inlet_valve:ventricle", + "3263": "flow:inlet_valve:ventricle", + "3264": "flow:inlet_valve:ventricle", + "3265": "flow:inlet_valve:ventricle", + "3266": "flow:inlet_valve:ventricle", + "3267": "flow:inlet_valve:ventricle", + "3268": "flow:inlet_valve:ventricle", + "3269": "flow:inlet_valve:ventricle", + "3270": "flow:inlet_valve:ventricle", + "3271": "flow:inlet_valve:ventricle", + "3272": "flow:inlet_valve:ventricle", + "3273": "flow:inlet_valve:ventricle", + "3274": "flow:inlet_valve:ventricle", + "3275": "flow:inlet_valve:ventricle", + "3276": "flow:inlet_valve:ventricle", + "3277": "flow:inlet_valve:ventricle", + "3278": "flow:inlet_valve:ventricle", + "3279": "flow:inlet_valve:ventricle", + "3280": "flow:inlet_valve:ventricle", + "3281": "flow:inlet_valve:ventricle", + "3282": "flow:inlet_valve:ventricle", + "3283": "flow:inlet_valve:ventricle", + "3284": "flow:inlet_valve:ventricle", + "3285": "flow:inlet_valve:ventricle", + "3286": "flow:inlet_valve:ventricle", + "3287": "flow:inlet_valve:ventricle", + "3288": "flow:inlet_valve:ventricle", + "3289": "flow:inlet_valve:ventricle", + "3290": "flow:inlet_valve:ventricle", + "3291": "flow:inlet_valve:ventricle", + "3292": "flow:inlet_valve:ventricle", + "3293": "flow:inlet_valve:ventricle", + "3294": "flow:inlet_valve:ventricle", + "3295": "flow:inlet_valve:ventricle", + "3296": "flow:inlet_valve:ventricle", + "3297": "flow:inlet_valve:ventricle", + "3298": "flow:inlet_valve:ventricle", + "3299": "flow:inlet_valve:ventricle", + "3300": "flow:inlet_valve:ventricle", + "3301": "flow:inlet_valve:ventricle", + "3302": "flow:inlet_valve:ventricle", + "3303": "flow:inlet_valve:ventricle", + "3304": "flow:inlet_valve:ventricle", + "3305": "flow:inlet_valve:ventricle", + "3306": "flow:inlet_valve:ventricle", + "3307": "flow:inlet_valve:ventricle", + "3308": "flow:inlet_valve:ventricle", + "3309": "flow:inlet_valve:ventricle", + "3310": "flow:inlet_valve:ventricle", + "3311": "flow:inlet_valve:ventricle", + "3312": "flow:inlet_valve:ventricle", + "3313": "flow:inlet_valve:ventricle", + "3314": "flow:inlet_valve:ventricle", + "3315": "flow:inlet_valve:ventricle", + "3316": "flow:inlet_valve:ventricle", + "3317": "flow:inlet_valve:ventricle", + "3318": "flow:inlet_valve:ventricle", + "3319": "flow:inlet_valve:ventricle", + "3320": "flow:inlet_valve:ventricle", + "3321": "flow:inlet_valve:ventricle", + "3322": "flow:inlet_valve:ventricle", + "3323": "flow:inlet_valve:ventricle", + "3324": "flow:inlet_valve:ventricle", + "3325": "flow:inlet_valve:ventricle", + "3326": "flow:inlet_valve:ventricle", + "3327": "flow:inlet_valve:ventricle", + "3328": "flow:inlet_valve:ventricle", + "3329": "flow:inlet_valve:ventricle", + "3330": "flow:inlet_valve:ventricle", + "3331": "flow:inlet_valve:ventricle", + "3332": "flow:inlet_valve:ventricle", + "3333": "flow:inlet_valve:ventricle", + "3334": "flow:inlet_valve:ventricle", + "3335": "flow:inlet_valve:ventricle", + "3336": "flow:inlet_valve:ventricle", + "3337": "flow:inlet_valve:ventricle", + "3338": "flow:inlet_valve:ventricle", + "3339": "flow:inlet_valve:ventricle", + "3340": "flow:inlet_valve:ventricle", + "3341": "flow:inlet_valve:ventricle", + "3342": "flow:inlet_valve:ventricle", + "3343": "flow:inlet_valve:ventricle", + "3344": "flow:inlet_valve:ventricle", + "3345": "flow:inlet_valve:ventricle", + "3346": "flow:inlet_valve:ventricle", + "3347": "flow:inlet_valve:ventricle", + "3348": "flow:inlet_valve:ventricle", + "3349": "flow:inlet_valve:ventricle", + "3350": "flow:inlet_valve:ventricle", + "3351": "flow:inlet_valve:ventricle", + "3352": "flow:inlet_valve:ventricle", + "3353": "flow:inlet_valve:ventricle", + "3354": "flow:inlet_valve:ventricle", + "3355": "flow:inlet_valve:ventricle", + "3356": "flow:inlet_valve:ventricle", + "3357": "flow:inlet_valve:ventricle", + "3358": "flow:inlet_valve:ventricle", + "3359": "flow:inlet_valve:ventricle", + "3360": "flow:inlet_valve:ventricle", + "3361": "flow:inlet_valve:ventricle", + "3362": "flow:inlet_valve:ventricle", + "3363": "flow:inlet_valve:ventricle", + "3364": "flow:inlet_valve:ventricle", + "3365": "flow:inlet_valve:ventricle", + "3366": "flow:inlet_valve:ventricle", + "3367": "flow:inlet_valve:ventricle", + "3368": "flow:inlet_valve:ventricle", + "3369": "flow:inlet_valve:ventricle", + "3370": "flow:inlet_valve:ventricle", + "3371": "flow:inlet_valve:ventricle", + "3372": "flow:inlet_valve:ventricle", + "3373": "flow:inlet_valve:ventricle", + "3374": "flow:inlet_valve:ventricle", + "3375": "flow:inlet_valve:ventricle", + "3376": "flow:inlet_valve:ventricle", + "3377": "flow:inlet_valve:ventricle", + "3378": "flow:inlet_valve:ventricle", + "3379": "flow:inlet_valve:ventricle", + "3380": "flow:inlet_valve:ventricle", + "3381": "flow:inlet_valve:ventricle", + "3382": "flow:inlet_valve:ventricle", + "3383": "flow:inlet_valve:ventricle", + "3384": "flow:inlet_valve:ventricle", + "3385": "flow:inlet_valve:ventricle", + "3386": "flow:inlet_valve:ventricle", + "3387": "flow:inlet_valve:ventricle", + "3388": "flow:inlet_valve:ventricle", + "3389": "flow:inlet_valve:ventricle", + "3390": "flow:inlet_valve:ventricle", + "3391": "flow:inlet_valve:ventricle", + "3392": "flow:inlet_valve:ventricle", + "3393": "flow:inlet_valve:ventricle", + "3394": "flow:inlet_valve:ventricle", + "3395": "flow:inlet_valve:ventricle", + "3396": "flow:inlet_valve:ventricle", + "3397": "flow:inlet_valve:ventricle", + "3398": "flow:inlet_valve:ventricle", + "3399": "flow:inlet_valve:ventricle", + "3400": "flow:inlet_valve:ventricle", + "3401": "flow:inlet_valve:ventricle", + "3402": "flow:inlet_valve:ventricle", + "3403": "flow:inlet_valve:ventricle", + "3404": "flow:inlet_valve:ventricle", + "3405": "flow:inlet_valve:ventricle", + "3406": "flow:inlet_valve:ventricle", + "3407": "flow:inlet_valve:ventricle", + "3408": "flow:inlet_valve:ventricle", + "3409": "flow:inlet_valve:ventricle", + "3410": "flow:inlet_valve:ventricle", + "3411": "flow:inlet_valve:ventricle", + "3412": "flow:inlet_valve:ventricle", + "3413": "flow:inlet_valve:ventricle", + "3414": "flow:inlet_valve:ventricle", + "3415": "flow:inlet_valve:ventricle", + "3416": "flow:inlet_valve:ventricle", + "3417": "flow:inlet_valve:ventricle", + "3418": "flow:inlet_valve:ventricle", + "3419": "flow:inlet_valve:ventricle", + "3420": "flow:inlet_valve:ventricle", + "3421": "flow:inlet_valve:ventricle", + "3422": "flow:inlet_valve:ventricle", + "3423": "flow:inlet_valve:ventricle", + "3424": "flow:inlet_valve:ventricle", + "3425": "flow:inlet_valve:ventricle", + "3426": "flow:inlet_valve:ventricle", + "3427": "flow:inlet_valve:ventricle", + "3428": "flow:inlet_valve:ventricle", + "3429": "flow:inlet_valve:ventricle", + "3430": "flow:inlet_valve:ventricle", + "3431": "flow:inlet_valve:ventricle", + "3432": "flow:inlet_valve:ventricle", + "3433": "flow:inlet_valve:ventricle", + "3434": "flow:inlet_valve:ventricle", + "3435": "flow:inlet_valve:ventricle", + "3436": "flow:inlet_valve:ventricle", + "3437": "flow:inlet_valve:ventricle", + "3438": "flow:inlet_valve:ventricle", + "3439": "flow:inlet_valve:ventricle", + "3440": "flow:inlet_valve:ventricle", + "3441": "flow:inlet_valve:ventricle", + "3442": "flow:inlet_valve:ventricle", + "3443": "flow:inlet_valve:ventricle", + "3444": "flow:inlet_valve:ventricle", + "3445": "flow:inlet_valve:ventricle", + "3446": "flow:inlet_valve:ventricle", + "3447": "flow:inlet_valve:ventricle", + "3448": "flow:inlet_valve:ventricle", + "3449": "flow:inlet_valve:ventricle", + "3450": "flow:inlet_valve:ventricle", + "3451": "flow:inlet_valve:ventricle", + "3452": "flow:inlet_valve:ventricle", + "3453": "flow:inlet_valve:ventricle", + "3454": "flow:inlet_valve:ventricle", + "3455": "flow:inlet_valve:ventricle", + "3456": "flow:inlet_valve:ventricle", + "3457": "flow:inlet_valve:ventricle", + "3458": "flow:inlet_valve:ventricle", + "3459": "flow:inlet_valve:ventricle", + "3460": "flow:inlet_valve:ventricle", + "3461": "flow:inlet_valve:ventricle", + "3462": "flow:inlet_valve:ventricle", + "3463": "flow:inlet_valve:ventricle", + "3464": "flow:inlet_valve:ventricle", + "3465": "flow:inlet_valve:ventricle", + "3466": "flow:inlet_valve:ventricle", + "3467": "flow:inlet_valve:ventricle", + "3468": "flow:inlet_valve:ventricle", + "3469": "flow:inlet_valve:ventricle", + "3470": "flow:inlet_valve:ventricle", + "3471": "flow:inlet_valve:ventricle", + "3472": "flow:inlet_valve:ventricle", + "3473": "flow:inlet_valve:ventricle", + "3474": "flow:inlet_valve:ventricle", + "3475": "flow:inlet_valve:ventricle", + "3476": "flow:inlet_valve:ventricle", + "3477": "flow:inlet_valve:ventricle", + "3478": "flow:inlet_valve:ventricle", + "3479": "flow:inlet_valve:ventricle", + "3480": "flow:inlet_valve:ventricle", + "3481": "flow:inlet_valve:ventricle", + "3482": "flow:inlet_valve:ventricle", + "3483": "flow:inlet_valve:ventricle", + "3484": "flow:inlet_valve:ventricle", + "3485": "flow:inlet_valve:ventricle", + "3486": "flow:inlet_valve:ventricle", + "3487": "flow:inlet_valve:ventricle", + "3488": "flow:inlet_valve:ventricle", + "3489": "flow:inlet_valve:ventricle", + "3490": "flow:inlet_valve:ventricle", + "3491": "flow:inlet_valve:ventricle", + "3492": "flow:inlet_valve:ventricle", + "3493": "flow:inlet_valve:ventricle", + "3494": "flow:inlet_valve:ventricle", + "3495": "flow:inlet_valve:ventricle", + "3496": "flow:inlet_valve:ventricle", + "3497": "flow:inlet_valve:ventricle", + "3498": "flow:inlet_valve:ventricle", + "3499": "flow:inlet_valve:ventricle", + "3500": "pressure:inlet_valve:ventricle", + "3501": "pressure:inlet_valve:ventricle", + "3502": "pressure:inlet_valve:ventricle", + "3503": "pressure:inlet_valve:ventricle", + "3504": "pressure:inlet_valve:ventricle", + "3505": "pressure:inlet_valve:ventricle", + "3506": "pressure:inlet_valve:ventricle", + "3507": "pressure:inlet_valve:ventricle", + "3508": "pressure:inlet_valve:ventricle", + "3509": "pressure:inlet_valve:ventricle", + "3510": "pressure:inlet_valve:ventricle", + "3511": "pressure:inlet_valve:ventricle", + "3512": "pressure:inlet_valve:ventricle", + "3513": "pressure:inlet_valve:ventricle", + "3514": "pressure:inlet_valve:ventricle", + "3515": "pressure:inlet_valve:ventricle", + "3516": "pressure:inlet_valve:ventricle", + "3517": "pressure:inlet_valve:ventricle", + "3518": "pressure:inlet_valve:ventricle", + "3519": "pressure:inlet_valve:ventricle", + "3520": "pressure:inlet_valve:ventricle", + "3521": "pressure:inlet_valve:ventricle", + "3522": "pressure:inlet_valve:ventricle", + "3523": "pressure:inlet_valve:ventricle", + "3524": "pressure:inlet_valve:ventricle", + "3525": "pressure:inlet_valve:ventricle", + "3526": "pressure:inlet_valve:ventricle", + "3527": "pressure:inlet_valve:ventricle", + "3528": "pressure:inlet_valve:ventricle", + "3529": "pressure:inlet_valve:ventricle", + "3530": "pressure:inlet_valve:ventricle", + "3531": "pressure:inlet_valve:ventricle", + "3532": "pressure:inlet_valve:ventricle", + "3533": "pressure:inlet_valve:ventricle", + "3534": "pressure:inlet_valve:ventricle", + "3535": "pressure:inlet_valve:ventricle", + "3536": "pressure:inlet_valve:ventricle", + "3537": "pressure:inlet_valve:ventricle", + "3538": "pressure:inlet_valve:ventricle", + "3539": "pressure:inlet_valve:ventricle", + "3540": "pressure:inlet_valve:ventricle", + "3541": "pressure:inlet_valve:ventricle", + "3542": "pressure:inlet_valve:ventricle", + "3543": "pressure:inlet_valve:ventricle", + "3544": "pressure:inlet_valve:ventricle", + "3545": "pressure:inlet_valve:ventricle", + "3546": "pressure:inlet_valve:ventricle", + "3547": "pressure:inlet_valve:ventricle", + "3548": "pressure:inlet_valve:ventricle", + "3549": "pressure:inlet_valve:ventricle", + "3550": "pressure:inlet_valve:ventricle", + "3551": "pressure:inlet_valve:ventricle", + "3552": "pressure:inlet_valve:ventricle", + "3553": "pressure:inlet_valve:ventricle", + "3554": "pressure:inlet_valve:ventricle", + "3555": "pressure:inlet_valve:ventricle", + "3556": "pressure:inlet_valve:ventricle", + "3557": "pressure:inlet_valve:ventricle", + "3558": "pressure:inlet_valve:ventricle", + "3559": "pressure:inlet_valve:ventricle", + "3560": "pressure:inlet_valve:ventricle", + "3561": "pressure:inlet_valve:ventricle", + "3562": "pressure:inlet_valve:ventricle", + "3563": "pressure:inlet_valve:ventricle", + "3564": "pressure:inlet_valve:ventricle", + "3565": "pressure:inlet_valve:ventricle", + "3566": "pressure:inlet_valve:ventricle", + "3567": "pressure:inlet_valve:ventricle", + "3568": "pressure:inlet_valve:ventricle", + "3569": "pressure:inlet_valve:ventricle", + "3570": "pressure:inlet_valve:ventricle", + "3571": "pressure:inlet_valve:ventricle", + "3572": "pressure:inlet_valve:ventricle", + "3573": "pressure:inlet_valve:ventricle", + "3574": "pressure:inlet_valve:ventricle", + "3575": "pressure:inlet_valve:ventricle", + "3576": "pressure:inlet_valve:ventricle", + "3577": "pressure:inlet_valve:ventricle", + "3578": "pressure:inlet_valve:ventricle", + "3579": "pressure:inlet_valve:ventricle", + "3580": "pressure:inlet_valve:ventricle", + "3581": "pressure:inlet_valve:ventricle", + "3582": "pressure:inlet_valve:ventricle", + "3583": "pressure:inlet_valve:ventricle", + "3584": "pressure:inlet_valve:ventricle", + "3585": "pressure:inlet_valve:ventricle", + "3586": "pressure:inlet_valve:ventricle", + "3587": "pressure:inlet_valve:ventricle", + "3588": "pressure:inlet_valve:ventricle", + "3589": "pressure:inlet_valve:ventricle", + "3590": "pressure:inlet_valve:ventricle", + "3591": "pressure:inlet_valve:ventricle", + "3592": "pressure:inlet_valve:ventricle", + "3593": "pressure:inlet_valve:ventricle", + "3594": "pressure:inlet_valve:ventricle", + "3595": "pressure:inlet_valve:ventricle", + "3596": "pressure:inlet_valve:ventricle", + "3597": "pressure:inlet_valve:ventricle", + "3598": "pressure:inlet_valve:ventricle", + "3599": "pressure:inlet_valve:ventricle", + "3600": "pressure:inlet_valve:ventricle", + "3601": "pressure:inlet_valve:ventricle", + "3602": "pressure:inlet_valve:ventricle", + "3603": "pressure:inlet_valve:ventricle", + "3604": "pressure:inlet_valve:ventricle", + "3605": "pressure:inlet_valve:ventricle", + "3606": "pressure:inlet_valve:ventricle", + "3607": "pressure:inlet_valve:ventricle", + "3608": "pressure:inlet_valve:ventricle", + "3609": "pressure:inlet_valve:ventricle", + "3610": "pressure:inlet_valve:ventricle", + "3611": "pressure:inlet_valve:ventricle", + "3612": "pressure:inlet_valve:ventricle", + "3613": "pressure:inlet_valve:ventricle", + "3614": "pressure:inlet_valve:ventricle", + "3615": "pressure:inlet_valve:ventricle", + "3616": "pressure:inlet_valve:ventricle", + "3617": "pressure:inlet_valve:ventricle", + "3618": "pressure:inlet_valve:ventricle", + "3619": "pressure:inlet_valve:ventricle", + "3620": "pressure:inlet_valve:ventricle", + "3621": "pressure:inlet_valve:ventricle", + "3622": "pressure:inlet_valve:ventricle", + "3623": "pressure:inlet_valve:ventricle", + "3624": "pressure:inlet_valve:ventricle", + "3625": "pressure:inlet_valve:ventricle", + "3626": "pressure:inlet_valve:ventricle", + "3627": "pressure:inlet_valve:ventricle", + "3628": "pressure:inlet_valve:ventricle", + "3629": "pressure:inlet_valve:ventricle", + "3630": "pressure:inlet_valve:ventricle", + "3631": "pressure:inlet_valve:ventricle", + "3632": "pressure:inlet_valve:ventricle", + "3633": "pressure:inlet_valve:ventricle", + "3634": "pressure:inlet_valve:ventricle", + "3635": "pressure:inlet_valve:ventricle", + "3636": "pressure:inlet_valve:ventricle", + "3637": "pressure:inlet_valve:ventricle", + "3638": "pressure:inlet_valve:ventricle", + "3639": "pressure:inlet_valve:ventricle", + "3640": "pressure:inlet_valve:ventricle", + "3641": "pressure:inlet_valve:ventricle", + "3642": "pressure:inlet_valve:ventricle", + "3643": "pressure:inlet_valve:ventricle", + "3644": "pressure:inlet_valve:ventricle", + "3645": "pressure:inlet_valve:ventricle", + "3646": "pressure:inlet_valve:ventricle", + "3647": "pressure:inlet_valve:ventricle", + "3648": "pressure:inlet_valve:ventricle", + "3649": "pressure:inlet_valve:ventricle", + "3650": "pressure:inlet_valve:ventricle", + "3651": "pressure:inlet_valve:ventricle", + "3652": "pressure:inlet_valve:ventricle", + "3653": "pressure:inlet_valve:ventricle", + "3654": "pressure:inlet_valve:ventricle", + "3655": "pressure:inlet_valve:ventricle", + "3656": "pressure:inlet_valve:ventricle", + "3657": "pressure:inlet_valve:ventricle", + "3658": "pressure:inlet_valve:ventricle", + "3659": "pressure:inlet_valve:ventricle", + "3660": "pressure:inlet_valve:ventricle", + "3661": "pressure:inlet_valve:ventricle", + "3662": "pressure:inlet_valve:ventricle", + "3663": "pressure:inlet_valve:ventricle", + "3664": "pressure:inlet_valve:ventricle", + "3665": "pressure:inlet_valve:ventricle", + "3666": "pressure:inlet_valve:ventricle", + "3667": "pressure:inlet_valve:ventricle", + "3668": "pressure:inlet_valve:ventricle", + "3669": "pressure:inlet_valve:ventricle", + "3670": "pressure:inlet_valve:ventricle", + "3671": "pressure:inlet_valve:ventricle", + "3672": "pressure:inlet_valve:ventricle", + "3673": "pressure:inlet_valve:ventricle", + "3674": "pressure:inlet_valve:ventricle", + "3675": "pressure:inlet_valve:ventricle", + "3676": "pressure:inlet_valve:ventricle", + "3677": "pressure:inlet_valve:ventricle", + "3678": "pressure:inlet_valve:ventricle", + "3679": "pressure:inlet_valve:ventricle", + "3680": "pressure:inlet_valve:ventricle", + "3681": "pressure:inlet_valve:ventricle", + "3682": "pressure:inlet_valve:ventricle", + "3683": "pressure:inlet_valve:ventricle", + "3684": "pressure:inlet_valve:ventricle", + "3685": "pressure:inlet_valve:ventricle", + "3686": "pressure:inlet_valve:ventricle", + "3687": "pressure:inlet_valve:ventricle", + "3688": "pressure:inlet_valve:ventricle", + "3689": "pressure:inlet_valve:ventricle", + "3690": "pressure:inlet_valve:ventricle", + "3691": "pressure:inlet_valve:ventricle", + "3692": "pressure:inlet_valve:ventricle", + "3693": "pressure:inlet_valve:ventricle", + "3694": "pressure:inlet_valve:ventricle", + "3695": "pressure:inlet_valve:ventricle", + "3696": "pressure:inlet_valve:ventricle", + "3697": "pressure:inlet_valve:ventricle", + "3698": "pressure:inlet_valve:ventricle", + "3699": "pressure:inlet_valve:ventricle", + "3700": "pressure:inlet_valve:ventricle", + "3701": "pressure:inlet_valve:ventricle", + "3702": "pressure:inlet_valve:ventricle", + "3703": "pressure:inlet_valve:ventricle", + "3704": "pressure:inlet_valve:ventricle", + "3705": "pressure:inlet_valve:ventricle", + "3706": "pressure:inlet_valve:ventricle", + "3707": "pressure:inlet_valve:ventricle", + "3708": "pressure:inlet_valve:ventricle", + "3709": "pressure:inlet_valve:ventricle", + "3710": "pressure:inlet_valve:ventricle", + "3711": "pressure:inlet_valve:ventricle", + "3712": "pressure:inlet_valve:ventricle", + "3713": "pressure:inlet_valve:ventricle", + "3714": "pressure:inlet_valve:ventricle", + "3715": "pressure:inlet_valve:ventricle", + "3716": "pressure:inlet_valve:ventricle", + "3717": "pressure:inlet_valve:ventricle", + "3718": "pressure:inlet_valve:ventricle", + "3719": "pressure:inlet_valve:ventricle", + "3720": "pressure:inlet_valve:ventricle", + "3721": "pressure:inlet_valve:ventricle", + "3722": "pressure:inlet_valve:ventricle", + "3723": "pressure:inlet_valve:ventricle", + "3724": "pressure:inlet_valve:ventricle", + "3725": "pressure:inlet_valve:ventricle", + "3726": "pressure:inlet_valve:ventricle", + "3727": "pressure:inlet_valve:ventricle", + "3728": "pressure:inlet_valve:ventricle", + "3729": "pressure:inlet_valve:ventricle", + "3730": "pressure:inlet_valve:ventricle", + "3731": "pressure:inlet_valve:ventricle", + "3732": "pressure:inlet_valve:ventricle", + "3733": "pressure:inlet_valve:ventricle", + "3734": "pressure:inlet_valve:ventricle", + "3735": "pressure:inlet_valve:ventricle", + "3736": "pressure:inlet_valve:ventricle", + "3737": "pressure:inlet_valve:ventricle", + "3738": "pressure:inlet_valve:ventricle", + "3739": "pressure:inlet_valve:ventricle", + "3740": "pressure:inlet_valve:ventricle", + "3741": "pressure:inlet_valve:ventricle", + "3742": "pressure:inlet_valve:ventricle", + "3743": "pressure:inlet_valve:ventricle", + "3744": "pressure:inlet_valve:ventricle", + "3745": "pressure:inlet_valve:ventricle", + "3746": "pressure:inlet_valve:ventricle", + "3747": "pressure:inlet_valve:ventricle", + "3748": "pressure:inlet_valve:ventricle", + "3749": "pressure:inlet_valve:ventricle", + "3750": "pressure:inlet_valve:ventricle", + "3751": "pressure:inlet_valve:ventricle", + "3752": "pressure:inlet_valve:ventricle", + "3753": "pressure:inlet_valve:ventricle", + "3754": "pressure:inlet_valve:ventricle", + "3755": "pressure:inlet_valve:ventricle", + "3756": "pressure:inlet_valve:ventricle", + "3757": "pressure:inlet_valve:ventricle", + "3758": "pressure:inlet_valve:ventricle", + "3759": "pressure:inlet_valve:ventricle", + "3760": "pressure:inlet_valve:ventricle", + "3761": "pressure:inlet_valve:ventricle", + "3762": "pressure:inlet_valve:ventricle", + "3763": "pressure:inlet_valve:ventricle", + "3764": "pressure:inlet_valve:ventricle", + "3765": "pressure:inlet_valve:ventricle", + "3766": "pressure:inlet_valve:ventricle", + "3767": "pressure:inlet_valve:ventricle", + "3768": "pressure:inlet_valve:ventricle", + "3769": "pressure:inlet_valve:ventricle", + "3770": "pressure:inlet_valve:ventricle", + "3771": "pressure:inlet_valve:ventricle", + "3772": "pressure:inlet_valve:ventricle", + "3773": "pressure:inlet_valve:ventricle", + "3774": "pressure:inlet_valve:ventricle", + "3775": "pressure:inlet_valve:ventricle", + "3776": "pressure:inlet_valve:ventricle", + "3777": "pressure:inlet_valve:ventricle", + "3778": "pressure:inlet_valve:ventricle", + "3779": "pressure:inlet_valve:ventricle", + "3780": "pressure:inlet_valve:ventricle", + "3781": "pressure:inlet_valve:ventricle", + "3782": "pressure:inlet_valve:ventricle", + "3783": "pressure:inlet_valve:ventricle", + "3784": "pressure:inlet_valve:ventricle", + "3785": "pressure:inlet_valve:ventricle", + "3786": "pressure:inlet_valve:ventricle", + "3787": "pressure:inlet_valve:ventricle", + "3788": "pressure:inlet_valve:ventricle", + "3789": "pressure:inlet_valve:ventricle", + "3790": "pressure:inlet_valve:ventricle", + "3791": "pressure:inlet_valve:ventricle", + "3792": "pressure:inlet_valve:ventricle", + "3793": "pressure:inlet_valve:ventricle", + "3794": "pressure:inlet_valve:ventricle", + "3795": "pressure:inlet_valve:ventricle", + "3796": "pressure:inlet_valve:ventricle", + "3797": "pressure:inlet_valve:ventricle", + "3798": "pressure:inlet_valve:ventricle", + "3799": "pressure:inlet_valve:ventricle", + "3800": "pressure:inlet_valve:ventricle", + "3801": "pressure:inlet_valve:ventricle", + "3802": "pressure:inlet_valve:ventricle", + "3803": "pressure:inlet_valve:ventricle", + "3804": "pressure:inlet_valve:ventricle", + "3805": "pressure:inlet_valve:ventricle", + "3806": "pressure:inlet_valve:ventricle", + "3807": "pressure:inlet_valve:ventricle", + "3808": "pressure:inlet_valve:ventricle", + "3809": "pressure:inlet_valve:ventricle", + "3810": "pressure:inlet_valve:ventricle", + "3811": "pressure:inlet_valve:ventricle", + "3812": "pressure:inlet_valve:ventricle", + "3813": "pressure:inlet_valve:ventricle", + "3814": "pressure:inlet_valve:ventricle", + "3815": "pressure:inlet_valve:ventricle", + "3816": "pressure:inlet_valve:ventricle", + "3817": "pressure:inlet_valve:ventricle", + "3818": "pressure:inlet_valve:ventricle", + "3819": "pressure:inlet_valve:ventricle", + "3820": "pressure:inlet_valve:ventricle", + "3821": "pressure:inlet_valve:ventricle", + "3822": "pressure:inlet_valve:ventricle", + "3823": "pressure:inlet_valve:ventricle", + "3824": "pressure:inlet_valve:ventricle", + "3825": "pressure:inlet_valve:ventricle", + "3826": "pressure:inlet_valve:ventricle", + "3827": "pressure:inlet_valve:ventricle", + "3828": "pressure:inlet_valve:ventricle", + "3829": "pressure:inlet_valve:ventricle", + "3830": "pressure:inlet_valve:ventricle", + "3831": "pressure:inlet_valve:ventricle", + "3832": "pressure:inlet_valve:ventricle", + "3833": "pressure:inlet_valve:ventricle", + "3834": "pressure:inlet_valve:ventricle", + "3835": "pressure:inlet_valve:ventricle", + "3836": "pressure:inlet_valve:ventricle", + "3837": "pressure:inlet_valve:ventricle", + "3838": "pressure:inlet_valve:ventricle", + "3839": "pressure:inlet_valve:ventricle", + "3840": "pressure:inlet_valve:ventricle", + "3841": "pressure:inlet_valve:ventricle", + "3842": "pressure:inlet_valve:ventricle", + "3843": "pressure:inlet_valve:ventricle", + "3844": "pressure:inlet_valve:ventricle", + "3845": "pressure:inlet_valve:ventricle", + "3846": "pressure:inlet_valve:ventricle", + "3847": "pressure:inlet_valve:ventricle", + "3848": "pressure:inlet_valve:ventricle", + "3849": "pressure:inlet_valve:ventricle", + "3850": "pressure:inlet_valve:ventricle", + "3851": "pressure:inlet_valve:ventricle", + "3852": "pressure:inlet_valve:ventricle", + "3853": "pressure:inlet_valve:ventricle", + "3854": "pressure:inlet_valve:ventricle", + "3855": "pressure:inlet_valve:ventricle", + "3856": "pressure:inlet_valve:ventricle", + "3857": "pressure:inlet_valve:ventricle", + "3858": "pressure:inlet_valve:ventricle", + "3859": "pressure:inlet_valve:ventricle", + "3860": "pressure:inlet_valve:ventricle", + "3861": "pressure:inlet_valve:ventricle", + "3862": "pressure:inlet_valve:ventricle", + "3863": "pressure:inlet_valve:ventricle", + "3864": "pressure:inlet_valve:ventricle", + "3865": "pressure:inlet_valve:ventricle", + "3866": "pressure:inlet_valve:ventricle", + "3867": "pressure:inlet_valve:ventricle", + "3868": "pressure:inlet_valve:ventricle", + "3869": "pressure:inlet_valve:ventricle", + "3870": "pressure:inlet_valve:ventricle", + "3871": "pressure:inlet_valve:ventricle", + "3872": "pressure:inlet_valve:ventricle", + "3873": "pressure:inlet_valve:ventricle", + "3874": "pressure:inlet_valve:ventricle", + "3875": "pressure:inlet_valve:ventricle", + "3876": "pressure:inlet_valve:ventricle", + "3877": "pressure:inlet_valve:ventricle", + "3878": "pressure:inlet_valve:ventricle", + "3879": "pressure:inlet_valve:ventricle", + "3880": "pressure:inlet_valve:ventricle", + "3881": "pressure:inlet_valve:ventricle", + "3882": "pressure:inlet_valve:ventricle", + "3883": "pressure:inlet_valve:ventricle", + "3884": "pressure:inlet_valve:ventricle", + "3885": "pressure:inlet_valve:ventricle", + "3886": "pressure:inlet_valve:ventricle", + "3887": "pressure:inlet_valve:ventricle", + "3888": "pressure:inlet_valve:ventricle", + "3889": "pressure:inlet_valve:ventricle", + "3890": "pressure:inlet_valve:ventricle", + "3891": "pressure:inlet_valve:ventricle", + "3892": "pressure:inlet_valve:ventricle", + "3893": "pressure:inlet_valve:ventricle", + "3894": "pressure:inlet_valve:ventricle", + "3895": "pressure:inlet_valve:ventricle", + "3896": "pressure:inlet_valve:ventricle", + "3897": "pressure:inlet_valve:ventricle", + "3898": "pressure:inlet_valve:ventricle", + "3899": "pressure:inlet_valve:ventricle", + "3900": "pressure:inlet_valve:ventricle", + "3901": "pressure:inlet_valve:ventricle", + "3902": "pressure:inlet_valve:ventricle", + "3903": "pressure:inlet_valve:ventricle", + "3904": "pressure:inlet_valve:ventricle", + "3905": "pressure:inlet_valve:ventricle", + "3906": "pressure:inlet_valve:ventricle", + "3907": "pressure:inlet_valve:ventricle", + "3908": "pressure:inlet_valve:ventricle", + "3909": "pressure:inlet_valve:ventricle", + "3910": "pressure:inlet_valve:ventricle", + "3911": "pressure:inlet_valve:ventricle", + "3912": "pressure:inlet_valve:ventricle", + "3913": "pressure:inlet_valve:ventricle", + "3914": "pressure:inlet_valve:ventricle", + "3915": "pressure:inlet_valve:ventricle", + "3916": "pressure:inlet_valve:ventricle", + "3917": "pressure:inlet_valve:ventricle", + "3918": "pressure:inlet_valve:ventricle", + "3919": "pressure:inlet_valve:ventricle", + "3920": "pressure:inlet_valve:ventricle", + "3921": "pressure:inlet_valve:ventricle", + "3922": "pressure:inlet_valve:ventricle", + "3923": "pressure:inlet_valve:ventricle", + "3924": "pressure:inlet_valve:ventricle", + "3925": "pressure:inlet_valve:ventricle", + "3926": "pressure:inlet_valve:ventricle", + "3927": "pressure:inlet_valve:ventricle", + "3928": "pressure:inlet_valve:ventricle", + "3929": "pressure:inlet_valve:ventricle", + "3930": "pressure:inlet_valve:ventricle", + "3931": "pressure:inlet_valve:ventricle", + "3932": "pressure:inlet_valve:ventricle", + "3933": "pressure:inlet_valve:ventricle", + "3934": "pressure:inlet_valve:ventricle", + "3935": "pressure:inlet_valve:ventricle", + "3936": "pressure:inlet_valve:ventricle", + "3937": "pressure:inlet_valve:ventricle", + "3938": "pressure:inlet_valve:ventricle", + "3939": "pressure:inlet_valve:ventricle", + "3940": "pressure:inlet_valve:ventricle", + "3941": "pressure:inlet_valve:ventricle", + "3942": "pressure:inlet_valve:ventricle", + "3943": "pressure:inlet_valve:ventricle", + "3944": "pressure:inlet_valve:ventricle", + "3945": "pressure:inlet_valve:ventricle", + "3946": "pressure:inlet_valve:ventricle", + "3947": "pressure:inlet_valve:ventricle", + "3948": "pressure:inlet_valve:ventricle", + "3949": "pressure:inlet_valve:ventricle", + "3950": "pressure:inlet_valve:ventricle", + "3951": "pressure:inlet_valve:ventricle", + "3952": "pressure:inlet_valve:ventricle", + "3953": "pressure:inlet_valve:ventricle", + "3954": "pressure:inlet_valve:ventricle", + "3955": "pressure:inlet_valve:ventricle", + "3956": "pressure:inlet_valve:ventricle", + "3957": "pressure:inlet_valve:ventricle", + "3958": "pressure:inlet_valve:ventricle", + "3959": "pressure:inlet_valve:ventricle", + "3960": "pressure:inlet_valve:ventricle", + "3961": "pressure:inlet_valve:ventricle", + "3962": "pressure:inlet_valve:ventricle", + "3963": "pressure:inlet_valve:ventricle", + "3964": "pressure:inlet_valve:ventricle", + "3965": "pressure:inlet_valve:ventricle", + "3966": "pressure:inlet_valve:ventricle", + "3967": "pressure:inlet_valve:ventricle", + "3968": "pressure:inlet_valve:ventricle", + "3969": "pressure:inlet_valve:ventricle", + "3970": "pressure:inlet_valve:ventricle", + "3971": "pressure:inlet_valve:ventricle", + "3972": "pressure:inlet_valve:ventricle", + "3973": "pressure:inlet_valve:ventricle", + "3974": "pressure:inlet_valve:ventricle", + "3975": "pressure:inlet_valve:ventricle", + "3976": "pressure:inlet_valve:ventricle", + "3977": "pressure:inlet_valve:ventricle", + "3978": "pressure:inlet_valve:ventricle", + "3979": "pressure:inlet_valve:ventricle", + "3980": "pressure:inlet_valve:ventricle", + "3981": "pressure:inlet_valve:ventricle", + "3982": "pressure:inlet_valve:ventricle", + "3983": "pressure:inlet_valve:ventricle", + "3984": "pressure:inlet_valve:ventricle", + "3985": "pressure:inlet_valve:ventricle", + "3986": "pressure:inlet_valve:ventricle", + "3987": "pressure:inlet_valve:ventricle", + "3988": "pressure:inlet_valve:ventricle", + "3989": "pressure:inlet_valve:ventricle", + "3990": "pressure:inlet_valve:ventricle", + "3991": "pressure:inlet_valve:ventricle", + "3992": "pressure:inlet_valve:ventricle", + "3993": "pressure:inlet_valve:ventricle", + "3994": "pressure:inlet_valve:ventricle", + "3995": "pressure:inlet_valve:ventricle", + "3996": "pressure:inlet_valve:ventricle", + "3997": "pressure:inlet_valve:ventricle", + "3998": "pressure:inlet_valve:ventricle", + "3999": "pressure:inlet_valve:ventricle", + "4000": "flow:ventricle:outlet_valve", + "4001": "flow:ventricle:outlet_valve", + "4002": "flow:ventricle:outlet_valve", + "4003": "flow:ventricle:outlet_valve", + "4004": "flow:ventricle:outlet_valve", + "4005": "flow:ventricle:outlet_valve", + "4006": "flow:ventricle:outlet_valve", + "4007": "flow:ventricle:outlet_valve", + "4008": "flow:ventricle:outlet_valve", + "4009": "flow:ventricle:outlet_valve", + "4010": "flow:ventricle:outlet_valve", + "4011": "flow:ventricle:outlet_valve", + "4012": "flow:ventricle:outlet_valve", + "4013": "flow:ventricle:outlet_valve", + "4014": "flow:ventricle:outlet_valve", + "4015": "flow:ventricle:outlet_valve", + "4016": "flow:ventricle:outlet_valve", + "4017": "flow:ventricle:outlet_valve", + "4018": "flow:ventricle:outlet_valve", + "4019": "flow:ventricle:outlet_valve", + "4020": "flow:ventricle:outlet_valve", + "4021": "flow:ventricle:outlet_valve", + "4022": "flow:ventricle:outlet_valve", + "4023": "flow:ventricle:outlet_valve", + "4024": "flow:ventricle:outlet_valve", + "4025": "flow:ventricle:outlet_valve", + "4026": "flow:ventricle:outlet_valve", + "4027": "flow:ventricle:outlet_valve", + "4028": "flow:ventricle:outlet_valve", + "4029": "flow:ventricle:outlet_valve", + "4030": "flow:ventricle:outlet_valve", + "4031": "flow:ventricle:outlet_valve", + "4032": "flow:ventricle:outlet_valve", + "4033": "flow:ventricle:outlet_valve", + "4034": "flow:ventricle:outlet_valve", + "4035": "flow:ventricle:outlet_valve", + "4036": "flow:ventricle:outlet_valve", + "4037": "flow:ventricle:outlet_valve", + "4038": "flow:ventricle:outlet_valve", + "4039": "flow:ventricle:outlet_valve", + "4040": "flow:ventricle:outlet_valve", + "4041": "flow:ventricle:outlet_valve", + "4042": "flow:ventricle:outlet_valve", + "4043": "flow:ventricle:outlet_valve", + "4044": "flow:ventricle:outlet_valve", + "4045": "flow:ventricle:outlet_valve", + "4046": "flow:ventricle:outlet_valve", + "4047": "flow:ventricle:outlet_valve", + "4048": "flow:ventricle:outlet_valve", + "4049": "flow:ventricle:outlet_valve", + "4050": "flow:ventricle:outlet_valve", + "4051": "flow:ventricle:outlet_valve", + "4052": "flow:ventricle:outlet_valve", + "4053": "flow:ventricle:outlet_valve", + "4054": "flow:ventricle:outlet_valve", + "4055": "flow:ventricle:outlet_valve", + "4056": "flow:ventricle:outlet_valve", + "4057": "flow:ventricle:outlet_valve", + "4058": "flow:ventricle:outlet_valve", + "4059": "flow:ventricle:outlet_valve", + "4060": "flow:ventricle:outlet_valve", + "4061": "flow:ventricle:outlet_valve", + "4062": "flow:ventricle:outlet_valve", + "4063": "flow:ventricle:outlet_valve", + "4064": "flow:ventricle:outlet_valve", + "4065": "flow:ventricle:outlet_valve", + "4066": "flow:ventricle:outlet_valve", + "4067": "flow:ventricle:outlet_valve", + "4068": "flow:ventricle:outlet_valve", + "4069": "flow:ventricle:outlet_valve", + "4070": "flow:ventricle:outlet_valve", + "4071": "flow:ventricle:outlet_valve", + "4072": "flow:ventricle:outlet_valve", + "4073": "flow:ventricle:outlet_valve", + "4074": "flow:ventricle:outlet_valve", + "4075": "flow:ventricle:outlet_valve", + "4076": "flow:ventricle:outlet_valve", + "4077": "flow:ventricle:outlet_valve", + "4078": "flow:ventricle:outlet_valve", + "4079": "flow:ventricle:outlet_valve", + "4080": "flow:ventricle:outlet_valve", + "4081": "flow:ventricle:outlet_valve", + "4082": "flow:ventricle:outlet_valve", + "4083": "flow:ventricle:outlet_valve", + "4084": "flow:ventricle:outlet_valve", + "4085": "flow:ventricle:outlet_valve", + "4086": "flow:ventricle:outlet_valve", + "4087": "flow:ventricle:outlet_valve", + "4088": "flow:ventricle:outlet_valve", + "4089": "flow:ventricle:outlet_valve", + "4090": "flow:ventricle:outlet_valve", + "4091": "flow:ventricle:outlet_valve", + "4092": "flow:ventricle:outlet_valve", + "4093": "flow:ventricle:outlet_valve", + "4094": "flow:ventricle:outlet_valve", + "4095": "flow:ventricle:outlet_valve", + "4096": "flow:ventricle:outlet_valve", + "4097": "flow:ventricle:outlet_valve", + "4098": "flow:ventricle:outlet_valve", + "4099": "flow:ventricle:outlet_valve", + "4100": "flow:ventricle:outlet_valve", + "4101": "flow:ventricle:outlet_valve", + "4102": "flow:ventricle:outlet_valve", + "4103": "flow:ventricle:outlet_valve", + "4104": "flow:ventricle:outlet_valve", + "4105": "flow:ventricle:outlet_valve", + "4106": "flow:ventricle:outlet_valve", + "4107": "flow:ventricle:outlet_valve", + "4108": "flow:ventricle:outlet_valve", + "4109": "flow:ventricle:outlet_valve", + "4110": "flow:ventricle:outlet_valve", + "4111": "flow:ventricle:outlet_valve", + "4112": "flow:ventricle:outlet_valve", + "4113": "flow:ventricle:outlet_valve", + "4114": "flow:ventricle:outlet_valve", + "4115": "flow:ventricle:outlet_valve", + "4116": "flow:ventricle:outlet_valve", + "4117": "flow:ventricle:outlet_valve", + "4118": "flow:ventricle:outlet_valve", + "4119": "flow:ventricle:outlet_valve", + "4120": "flow:ventricle:outlet_valve", + "4121": "flow:ventricle:outlet_valve", + "4122": "flow:ventricle:outlet_valve", + "4123": "flow:ventricle:outlet_valve", + "4124": "flow:ventricle:outlet_valve", + "4125": "flow:ventricle:outlet_valve", + "4126": "flow:ventricle:outlet_valve", + "4127": "flow:ventricle:outlet_valve", + "4128": "flow:ventricle:outlet_valve", + "4129": "flow:ventricle:outlet_valve", + "4130": "flow:ventricle:outlet_valve", + "4131": "flow:ventricle:outlet_valve", + "4132": "flow:ventricle:outlet_valve", + "4133": "flow:ventricle:outlet_valve", + "4134": "flow:ventricle:outlet_valve", + "4135": "flow:ventricle:outlet_valve", + "4136": "flow:ventricle:outlet_valve", + "4137": "flow:ventricle:outlet_valve", + "4138": "flow:ventricle:outlet_valve", + "4139": "flow:ventricle:outlet_valve", + "4140": "flow:ventricle:outlet_valve", + "4141": "flow:ventricle:outlet_valve", + "4142": "flow:ventricle:outlet_valve", + "4143": "flow:ventricle:outlet_valve", + "4144": "flow:ventricle:outlet_valve", + "4145": "flow:ventricle:outlet_valve", + "4146": "flow:ventricle:outlet_valve", + "4147": "flow:ventricle:outlet_valve", + "4148": "flow:ventricle:outlet_valve", + "4149": "flow:ventricle:outlet_valve", + "4150": "flow:ventricle:outlet_valve", + "4151": "flow:ventricle:outlet_valve", + "4152": "flow:ventricle:outlet_valve", + "4153": "flow:ventricle:outlet_valve", + "4154": "flow:ventricle:outlet_valve", + "4155": "flow:ventricle:outlet_valve", + "4156": "flow:ventricle:outlet_valve", + "4157": "flow:ventricle:outlet_valve", + "4158": "flow:ventricle:outlet_valve", + "4159": "flow:ventricle:outlet_valve", + "4160": "flow:ventricle:outlet_valve", + "4161": "flow:ventricle:outlet_valve", + "4162": "flow:ventricle:outlet_valve", + "4163": "flow:ventricle:outlet_valve", + "4164": "flow:ventricle:outlet_valve", + "4165": "flow:ventricle:outlet_valve", + "4166": "flow:ventricle:outlet_valve", + "4167": "flow:ventricle:outlet_valve", + "4168": "flow:ventricle:outlet_valve", + "4169": "flow:ventricle:outlet_valve", + "4170": "flow:ventricle:outlet_valve", + "4171": "flow:ventricle:outlet_valve", + "4172": "flow:ventricle:outlet_valve", + "4173": "flow:ventricle:outlet_valve", + "4174": "flow:ventricle:outlet_valve", + "4175": "flow:ventricle:outlet_valve", + "4176": "flow:ventricle:outlet_valve", + "4177": "flow:ventricle:outlet_valve", + "4178": "flow:ventricle:outlet_valve", + "4179": "flow:ventricle:outlet_valve", + "4180": "flow:ventricle:outlet_valve", + "4181": "flow:ventricle:outlet_valve", + "4182": "flow:ventricle:outlet_valve", + "4183": "flow:ventricle:outlet_valve", + "4184": "flow:ventricle:outlet_valve", + "4185": "flow:ventricle:outlet_valve", + "4186": "flow:ventricle:outlet_valve", + "4187": "flow:ventricle:outlet_valve", + "4188": "flow:ventricle:outlet_valve", + "4189": "flow:ventricle:outlet_valve", + "4190": "flow:ventricle:outlet_valve", + "4191": "flow:ventricle:outlet_valve", + "4192": "flow:ventricle:outlet_valve", + "4193": "flow:ventricle:outlet_valve", + "4194": "flow:ventricle:outlet_valve", + "4195": "flow:ventricle:outlet_valve", + "4196": "flow:ventricle:outlet_valve", + "4197": "flow:ventricle:outlet_valve", + "4198": "flow:ventricle:outlet_valve", + "4199": "flow:ventricle:outlet_valve", + "4200": "flow:ventricle:outlet_valve", + "4201": "flow:ventricle:outlet_valve", + "4202": "flow:ventricle:outlet_valve", + "4203": "flow:ventricle:outlet_valve", + "4204": "flow:ventricle:outlet_valve", + "4205": "flow:ventricle:outlet_valve", + "4206": "flow:ventricle:outlet_valve", + "4207": "flow:ventricle:outlet_valve", + "4208": "flow:ventricle:outlet_valve", + "4209": "flow:ventricle:outlet_valve", + "4210": "flow:ventricle:outlet_valve", + "4211": "flow:ventricle:outlet_valve", + "4212": "flow:ventricle:outlet_valve", + "4213": "flow:ventricle:outlet_valve", + "4214": "flow:ventricle:outlet_valve", + "4215": "flow:ventricle:outlet_valve", + "4216": "flow:ventricle:outlet_valve", + "4217": "flow:ventricle:outlet_valve", + "4218": "flow:ventricle:outlet_valve", + "4219": "flow:ventricle:outlet_valve", + "4220": "flow:ventricle:outlet_valve", + "4221": "flow:ventricle:outlet_valve", + "4222": "flow:ventricle:outlet_valve", + "4223": "flow:ventricle:outlet_valve", + "4224": "flow:ventricle:outlet_valve", + "4225": "flow:ventricle:outlet_valve", + "4226": "flow:ventricle:outlet_valve", + "4227": "flow:ventricle:outlet_valve", + "4228": "flow:ventricle:outlet_valve", + "4229": "flow:ventricle:outlet_valve", + "4230": "flow:ventricle:outlet_valve", + "4231": "flow:ventricle:outlet_valve", + "4232": "flow:ventricle:outlet_valve", + "4233": "flow:ventricle:outlet_valve", + "4234": "flow:ventricle:outlet_valve", + "4235": "flow:ventricle:outlet_valve", + "4236": "flow:ventricle:outlet_valve", + "4237": "flow:ventricle:outlet_valve", + "4238": "flow:ventricle:outlet_valve", + "4239": "flow:ventricle:outlet_valve", + "4240": "flow:ventricle:outlet_valve", + "4241": "flow:ventricle:outlet_valve", + "4242": "flow:ventricle:outlet_valve", + "4243": "flow:ventricle:outlet_valve", + "4244": "flow:ventricle:outlet_valve", + "4245": "flow:ventricle:outlet_valve", + "4246": "flow:ventricle:outlet_valve", + "4247": "flow:ventricle:outlet_valve", + "4248": "flow:ventricle:outlet_valve", + "4249": "flow:ventricle:outlet_valve", + "4250": "flow:ventricle:outlet_valve", + "4251": "flow:ventricle:outlet_valve", + "4252": "flow:ventricle:outlet_valve", + "4253": "flow:ventricle:outlet_valve", + "4254": "flow:ventricle:outlet_valve", + "4255": "flow:ventricle:outlet_valve", + "4256": "flow:ventricle:outlet_valve", + "4257": "flow:ventricle:outlet_valve", + "4258": "flow:ventricle:outlet_valve", + "4259": "flow:ventricle:outlet_valve", + "4260": "flow:ventricle:outlet_valve", + "4261": "flow:ventricle:outlet_valve", + "4262": "flow:ventricle:outlet_valve", + "4263": "flow:ventricle:outlet_valve", + "4264": "flow:ventricle:outlet_valve", + "4265": "flow:ventricle:outlet_valve", + "4266": "flow:ventricle:outlet_valve", + "4267": "flow:ventricle:outlet_valve", + "4268": "flow:ventricle:outlet_valve", + "4269": "flow:ventricle:outlet_valve", + "4270": "flow:ventricle:outlet_valve", + "4271": "flow:ventricle:outlet_valve", + "4272": "flow:ventricle:outlet_valve", + "4273": "flow:ventricle:outlet_valve", + "4274": "flow:ventricle:outlet_valve", + "4275": "flow:ventricle:outlet_valve", + "4276": "flow:ventricle:outlet_valve", + "4277": "flow:ventricle:outlet_valve", + "4278": "flow:ventricle:outlet_valve", + "4279": "flow:ventricle:outlet_valve", + "4280": "flow:ventricle:outlet_valve", + "4281": "flow:ventricle:outlet_valve", + "4282": "flow:ventricle:outlet_valve", + "4283": "flow:ventricle:outlet_valve", + "4284": "flow:ventricle:outlet_valve", + "4285": "flow:ventricle:outlet_valve", + "4286": "flow:ventricle:outlet_valve", + "4287": "flow:ventricle:outlet_valve", + "4288": "flow:ventricle:outlet_valve", + "4289": "flow:ventricle:outlet_valve", + "4290": "flow:ventricle:outlet_valve", + "4291": "flow:ventricle:outlet_valve", + "4292": "flow:ventricle:outlet_valve", + "4293": "flow:ventricle:outlet_valve", + "4294": "flow:ventricle:outlet_valve", + "4295": "flow:ventricle:outlet_valve", + "4296": "flow:ventricle:outlet_valve", + "4297": "flow:ventricle:outlet_valve", + "4298": "flow:ventricle:outlet_valve", + "4299": "flow:ventricle:outlet_valve", + "4300": "flow:ventricle:outlet_valve", + "4301": "flow:ventricle:outlet_valve", + "4302": "flow:ventricle:outlet_valve", + "4303": "flow:ventricle:outlet_valve", + "4304": "flow:ventricle:outlet_valve", + "4305": "flow:ventricle:outlet_valve", + "4306": "flow:ventricle:outlet_valve", + "4307": "flow:ventricle:outlet_valve", + "4308": "flow:ventricle:outlet_valve", + "4309": "flow:ventricle:outlet_valve", + "4310": "flow:ventricle:outlet_valve", + "4311": "flow:ventricle:outlet_valve", + "4312": "flow:ventricle:outlet_valve", + "4313": "flow:ventricle:outlet_valve", + "4314": "flow:ventricle:outlet_valve", + "4315": "flow:ventricle:outlet_valve", + "4316": "flow:ventricle:outlet_valve", + "4317": "flow:ventricle:outlet_valve", + "4318": "flow:ventricle:outlet_valve", + "4319": "flow:ventricle:outlet_valve", + "4320": "flow:ventricle:outlet_valve", + "4321": "flow:ventricle:outlet_valve", + "4322": "flow:ventricle:outlet_valve", + "4323": "flow:ventricle:outlet_valve", + "4324": "flow:ventricle:outlet_valve", + "4325": "flow:ventricle:outlet_valve", + "4326": "flow:ventricle:outlet_valve", + "4327": "flow:ventricle:outlet_valve", + "4328": "flow:ventricle:outlet_valve", + "4329": "flow:ventricle:outlet_valve", + "4330": "flow:ventricle:outlet_valve", + "4331": "flow:ventricle:outlet_valve", + "4332": "flow:ventricle:outlet_valve", + "4333": "flow:ventricle:outlet_valve", + "4334": "flow:ventricle:outlet_valve", + "4335": "flow:ventricle:outlet_valve", + "4336": "flow:ventricle:outlet_valve", + "4337": "flow:ventricle:outlet_valve", + "4338": "flow:ventricle:outlet_valve", + "4339": "flow:ventricle:outlet_valve", + "4340": "flow:ventricle:outlet_valve", + "4341": "flow:ventricle:outlet_valve", + "4342": "flow:ventricle:outlet_valve", + "4343": "flow:ventricle:outlet_valve", + "4344": "flow:ventricle:outlet_valve", + "4345": "flow:ventricle:outlet_valve", + "4346": "flow:ventricle:outlet_valve", + "4347": "flow:ventricle:outlet_valve", + "4348": "flow:ventricle:outlet_valve", + "4349": "flow:ventricle:outlet_valve", + "4350": "flow:ventricle:outlet_valve", + "4351": "flow:ventricle:outlet_valve", + "4352": "flow:ventricle:outlet_valve", + "4353": "flow:ventricle:outlet_valve", + "4354": "flow:ventricle:outlet_valve", + "4355": "flow:ventricle:outlet_valve", + "4356": "flow:ventricle:outlet_valve", + "4357": "flow:ventricle:outlet_valve", + "4358": "flow:ventricle:outlet_valve", + "4359": "flow:ventricle:outlet_valve", + "4360": "flow:ventricle:outlet_valve", + "4361": "flow:ventricle:outlet_valve", + "4362": "flow:ventricle:outlet_valve", + "4363": "flow:ventricle:outlet_valve", + "4364": "flow:ventricle:outlet_valve", + "4365": "flow:ventricle:outlet_valve", + "4366": "flow:ventricle:outlet_valve", + "4367": "flow:ventricle:outlet_valve", + "4368": "flow:ventricle:outlet_valve", + "4369": "flow:ventricle:outlet_valve", + "4370": "flow:ventricle:outlet_valve", + "4371": "flow:ventricle:outlet_valve", + "4372": "flow:ventricle:outlet_valve", + "4373": "flow:ventricle:outlet_valve", + "4374": "flow:ventricle:outlet_valve", + "4375": "flow:ventricle:outlet_valve", + "4376": "flow:ventricle:outlet_valve", + "4377": "flow:ventricle:outlet_valve", + "4378": "flow:ventricle:outlet_valve", + "4379": "flow:ventricle:outlet_valve", + "4380": "flow:ventricle:outlet_valve", + "4381": "flow:ventricle:outlet_valve", + "4382": "flow:ventricle:outlet_valve", + "4383": "flow:ventricle:outlet_valve", + "4384": "flow:ventricle:outlet_valve", + "4385": "flow:ventricle:outlet_valve", + "4386": "flow:ventricle:outlet_valve", + "4387": "flow:ventricle:outlet_valve", + "4388": "flow:ventricle:outlet_valve", + "4389": "flow:ventricle:outlet_valve", + "4390": "flow:ventricle:outlet_valve", + "4391": "flow:ventricle:outlet_valve", + "4392": "flow:ventricle:outlet_valve", + "4393": "flow:ventricle:outlet_valve", + "4394": "flow:ventricle:outlet_valve", + "4395": "flow:ventricle:outlet_valve", + "4396": "flow:ventricle:outlet_valve", + "4397": "flow:ventricle:outlet_valve", + "4398": "flow:ventricle:outlet_valve", + "4399": "flow:ventricle:outlet_valve", + "4400": "flow:ventricle:outlet_valve", + "4401": "flow:ventricle:outlet_valve", + "4402": "flow:ventricle:outlet_valve", + "4403": "flow:ventricle:outlet_valve", + "4404": "flow:ventricle:outlet_valve", + "4405": "flow:ventricle:outlet_valve", + "4406": "flow:ventricle:outlet_valve", + "4407": "flow:ventricle:outlet_valve", + "4408": "flow:ventricle:outlet_valve", + "4409": "flow:ventricle:outlet_valve", + "4410": "flow:ventricle:outlet_valve", + "4411": "flow:ventricle:outlet_valve", + "4412": "flow:ventricle:outlet_valve", + "4413": "flow:ventricle:outlet_valve", + "4414": "flow:ventricle:outlet_valve", + "4415": "flow:ventricle:outlet_valve", + "4416": "flow:ventricle:outlet_valve", + "4417": "flow:ventricle:outlet_valve", + "4418": "flow:ventricle:outlet_valve", + "4419": "flow:ventricle:outlet_valve", + "4420": "flow:ventricle:outlet_valve", + "4421": "flow:ventricle:outlet_valve", + "4422": "flow:ventricle:outlet_valve", + "4423": "flow:ventricle:outlet_valve", + "4424": "flow:ventricle:outlet_valve", + "4425": "flow:ventricle:outlet_valve", + "4426": "flow:ventricle:outlet_valve", + "4427": "flow:ventricle:outlet_valve", + "4428": "flow:ventricle:outlet_valve", + "4429": "flow:ventricle:outlet_valve", + "4430": "flow:ventricle:outlet_valve", + "4431": "flow:ventricle:outlet_valve", + "4432": "flow:ventricle:outlet_valve", + "4433": "flow:ventricle:outlet_valve", + "4434": "flow:ventricle:outlet_valve", + "4435": "flow:ventricle:outlet_valve", + "4436": "flow:ventricle:outlet_valve", + "4437": "flow:ventricle:outlet_valve", + "4438": "flow:ventricle:outlet_valve", + "4439": "flow:ventricle:outlet_valve", + "4440": "flow:ventricle:outlet_valve", + "4441": "flow:ventricle:outlet_valve", + "4442": "flow:ventricle:outlet_valve", + "4443": "flow:ventricle:outlet_valve", + "4444": "flow:ventricle:outlet_valve", + "4445": "flow:ventricle:outlet_valve", + "4446": "flow:ventricle:outlet_valve", + "4447": "flow:ventricle:outlet_valve", + "4448": "flow:ventricle:outlet_valve", + "4449": "flow:ventricle:outlet_valve", + "4450": "flow:ventricle:outlet_valve", + "4451": "flow:ventricle:outlet_valve", + "4452": "flow:ventricle:outlet_valve", + "4453": "flow:ventricle:outlet_valve", + "4454": "flow:ventricle:outlet_valve", + "4455": "flow:ventricle:outlet_valve", + "4456": "flow:ventricle:outlet_valve", + "4457": "flow:ventricle:outlet_valve", + "4458": "flow:ventricle:outlet_valve", + "4459": "flow:ventricle:outlet_valve", + "4460": "flow:ventricle:outlet_valve", + "4461": "flow:ventricle:outlet_valve", + "4462": "flow:ventricle:outlet_valve", + "4463": "flow:ventricle:outlet_valve", + "4464": "flow:ventricle:outlet_valve", + "4465": "flow:ventricle:outlet_valve", + "4466": "flow:ventricle:outlet_valve", + "4467": "flow:ventricle:outlet_valve", + "4468": "flow:ventricle:outlet_valve", + "4469": "flow:ventricle:outlet_valve", + "4470": "flow:ventricle:outlet_valve", + "4471": "flow:ventricle:outlet_valve", + "4472": "flow:ventricle:outlet_valve", + "4473": "flow:ventricle:outlet_valve", + "4474": "flow:ventricle:outlet_valve", + "4475": "flow:ventricle:outlet_valve", + "4476": "flow:ventricle:outlet_valve", + "4477": "flow:ventricle:outlet_valve", + "4478": "flow:ventricle:outlet_valve", + "4479": "flow:ventricle:outlet_valve", + "4480": "flow:ventricle:outlet_valve", + "4481": "flow:ventricle:outlet_valve", + "4482": "flow:ventricle:outlet_valve", + "4483": "flow:ventricle:outlet_valve", + "4484": "flow:ventricle:outlet_valve", + "4485": "flow:ventricle:outlet_valve", + "4486": "flow:ventricle:outlet_valve", + "4487": "flow:ventricle:outlet_valve", + "4488": "flow:ventricle:outlet_valve", + "4489": "flow:ventricle:outlet_valve", + "4490": "flow:ventricle:outlet_valve", + "4491": "flow:ventricle:outlet_valve", + "4492": "flow:ventricle:outlet_valve", + "4493": "flow:ventricle:outlet_valve", + "4494": "flow:ventricle:outlet_valve", + "4495": "flow:ventricle:outlet_valve", + "4496": "flow:ventricle:outlet_valve", + "4497": "flow:ventricle:outlet_valve", + "4498": "flow:ventricle:outlet_valve", + "4499": "flow:ventricle:outlet_valve", + "4500": "pressure:ventricle:outlet_valve", + "4501": "pressure:ventricle:outlet_valve", + "4502": "pressure:ventricle:outlet_valve", + "4503": "pressure:ventricle:outlet_valve", + "4504": "pressure:ventricle:outlet_valve", + "4505": "pressure:ventricle:outlet_valve", + "4506": "pressure:ventricle:outlet_valve", + "4507": "pressure:ventricle:outlet_valve", + "4508": "pressure:ventricle:outlet_valve", + "4509": "pressure:ventricle:outlet_valve", + "4510": "pressure:ventricle:outlet_valve", + "4511": "pressure:ventricle:outlet_valve", + "4512": "pressure:ventricle:outlet_valve", + "4513": "pressure:ventricle:outlet_valve", + "4514": "pressure:ventricle:outlet_valve", + "4515": "pressure:ventricle:outlet_valve", + "4516": "pressure:ventricle:outlet_valve", + "4517": "pressure:ventricle:outlet_valve", + "4518": "pressure:ventricle:outlet_valve", + "4519": "pressure:ventricle:outlet_valve", + "4520": "pressure:ventricle:outlet_valve", + "4521": "pressure:ventricle:outlet_valve", + "4522": "pressure:ventricle:outlet_valve", + "4523": "pressure:ventricle:outlet_valve", + "4524": "pressure:ventricle:outlet_valve", + "4525": "pressure:ventricle:outlet_valve", + "4526": "pressure:ventricle:outlet_valve", + "4527": "pressure:ventricle:outlet_valve", + "4528": "pressure:ventricle:outlet_valve", + "4529": "pressure:ventricle:outlet_valve", + "4530": "pressure:ventricle:outlet_valve", + "4531": "pressure:ventricle:outlet_valve", + "4532": "pressure:ventricle:outlet_valve", + "4533": "pressure:ventricle:outlet_valve", + "4534": "pressure:ventricle:outlet_valve", + "4535": "pressure:ventricle:outlet_valve", + "4536": "pressure:ventricle:outlet_valve", + "4537": "pressure:ventricle:outlet_valve", + "4538": "pressure:ventricle:outlet_valve", + "4539": "pressure:ventricle:outlet_valve", + "4540": "pressure:ventricle:outlet_valve", + "4541": "pressure:ventricle:outlet_valve", + "4542": "pressure:ventricle:outlet_valve", + "4543": "pressure:ventricle:outlet_valve", + "4544": "pressure:ventricle:outlet_valve", + "4545": "pressure:ventricle:outlet_valve", + "4546": "pressure:ventricle:outlet_valve", + "4547": "pressure:ventricle:outlet_valve", + "4548": "pressure:ventricle:outlet_valve", + "4549": "pressure:ventricle:outlet_valve", + "4550": "pressure:ventricle:outlet_valve", + "4551": "pressure:ventricle:outlet_valve", + "4552": "pressure:ventricle:outlet_valve", + "4553": "pressure:ventricle:outlet_valve", + "4554": "pressure:ventricle:outlet_valve", + "4555": "pressure:ventricle:outlet_valve", + "4556": "pressure:ventricle:outlet_valve", + "4557": "pressure:ventricle:outlet_valve", + "4558": "pressure:ventricle:outlet_valve", + "4559": "pressure:ventricle:outlet_valve", + "4560": "pressure:ventricle:outlet_valve", + "4561": "pressure:ventricle:outlet_valve", + "4562": "pressure:ventricle:outlet_valve", + "4563": "pressure:ventricle:outlet_valve", + "4564": "pressure:ventricle:outlet_valve", + "4565": "pressure:ventricle:outlet_valve", + "4566": "pressure:ventricle:outlet_valve", + "4567": "pressure:ventricle:outlet_valve", + "4568": "pressure:ventricle:outlet_valve", + "4569": "pressure:ventricle:outlet_valve", + "4570": "pressure:ventricle:outlet_valve", + "4571": "pressure:ventricle:outlet_valve", + "4572": "pressure:ventricle:outlet_valve", + "4573": "pressure:ventricle:outlet_valve", + "4574": "pressure:ventricle:outlet_valve", + "4575": "pressure:ventricle:outlet_valve", + "4576": "pressure:ventricle:outlet_valve", + "4577": "pressure:ventricle:outlet_valve", + "4578": "pressure:ventricle:outlet_valve", + "4579": "pressure:ventricle:outlet_valve", + "4580": "pressure:ventricle:outlet_valve", + "4581": "pressure:ventricle:outlet_valve", + "4582": "pressure:ventricle:outlet_valve", + "4583": "pressure:ventricle:outlet_valve", + "4584": "pressure:ventricle:outlet_valve", + "4585": "pressure:ventricle:outlet_valve", + "4586": "pressure:ventricle:outlet_valve", + "4587": "pressure:ventricle:outlet_valve", + "4588": "pressure:ventricle:outlet_valve", + "4589": "pressure:ventricle:outlet_valve", + "4590": "pressure:ventricle:outlet_valve", + "4591": "pressure:ventricle:outlet_valve", + "4592": "pressure:ventricle:outlet_valve", + "4593": "pressure:ventricle:outlet_valve", + "4594": "pressure:ventricle:outlet_valve", + "4595": "pressure:ventricle:outlet_valve", + "4596": "pressure:ventricle:outlet_valve", + "4597": "pressure:ventricle:outlet_valve", + "4598": "pressure:ventricle:outlet_valve", + "4599": "pressure:ventricle:outlet_valve", + "4600": "pressure:ventricle:outlet_valve", + "4601": "pressure:ventricle:outlet_valve", + "4602": "pressure:ventricle:outlet_valve", + "4603": "pressure:ventricle:outlet_valve", + "4604": "pressure:ventricle:outlet_valve", + "4605": "pressure:ventricle:outlet_valve", + "4606": "pressure:ventricle:outlet_valve", + "4607": "pressure:ventricle:outlet_valve", + "4608": "pressure:ventricle:outlet_valve", + "4609": "pressure:ventricle:outlet_valve", + "4610": "pressure:ventricle:outlet_valve", + "4611": "pressure:ventricle:outlet_valve", + "4612": "pressure:ventricle:outlet_valve", + "4613": "pressure:ventricle:outlet_valve", + "4614": "pressure:ventricle:outlet_valve", + "4615": "pressure:ventricle:outlet_valve", + "4616": "pressure:ventricle:outlet_valve", + "4617": "pressure:ventricle:outlet_valve", + "4618": "pressure:ventricle:outlet_valve", + "4619": "pressure:ventricle:outlet_valve", + "4620": "pressure:ventricle:outlet_valve", + "4621": "pressure:ventricle:outlet_valve", + "4622": "pressure:ventricle:outlet_valve", + "4623": "pressure:ventricle:outlet_valve", + "4624": "pressure:ventricle:outlet_valve", + "4625": "pressure:ventricle:outlet_valve", + "4626": "pressure:ventricle:outlet_valve", + "4627": "pressure:ventricle:outlet_valve", + "4628": "pressure:ventricle:outlet_valve", + "4629": "pressure:ventricle:outlet_valve", + "4630": "pressure:ventricle:outlet_valve", + "4631": "pressure:ventricle:outlet_valve", + "4632": "pressure:ventricle:outlet_valve", + "4633": "pressure:ventricle:outlet_valve", + "4634": "pressure:ventricle:outlet_valve", + "4635": "pressure:ventricle:outlet_valve", + "4636": "pressure:ventricle:outlet_valve", + "4637": "pressure:ventricle:outlet_valve", + "4638": "pressure:ventricle:outlet_valve", + "4639": "pressure:ventricle:outlet_valve", + "4640": "pressure:ventricle:outlet_valve", + "4641": "pressure:ventricle:outlet_valve", + "4642": "pressure:ventricle:outlet_valve", + "4643": "pressure:ventricle:outlet_valve", + "4644": "pressure:ventricle:outlet_valve", + "4645": "pressure:ventricle:outlet_valve", + "4646": "pressure:ventricle:outlet_valve", + "4647": "pressure:ventricle:outlet_valve", + "4648": "pressure:ventricle:outlet_valve", + "4649": "pressure:ventricle:outlet_valve", + "4650": "pressure:ventricle:outlet_valve", + "4651": "pressure:ventricle:outlet_valve", + "4652": "pressure:ventricle:outlet_valve", + "4653": "pressure:ventricle:outlet_valve", + "4654": "pressure:ventricle:outlet_valve", + "4655": "pressure:ventricle:outlet_valve", + "4656": "pressure:ventricle:outlet_valve", + "4657": "pressure:ventricle:outlet_valve", + "4658": "pressure:ventricle:outlet_valve", + "4659": "pressure:ventricle:outlet_valve", + "4660": "pressure:ventricle:outlet_valve", + "4661": "pressure:ventricle:outlet_valve", + "4662": "pressure:ventricle:outlet_valve", + "4663": "pressure:ventricle:outlet_valve", + "4664": "pressure:ventricle:outlet_valve", + "4665": "pressure:ventricle:outlet_valve", + "4666": "pressure:ventricle:outlet_valve", + "4667": "pressure:ventricle:outlet_valve", + "4668": "pressure:ventricle:outlet_valve", + "4669": "pressure:ventricle:outlet_valve", + "4670": "pressure:ventricle:outlet_valve", + "4671": "pressure:ventricle:outlet_valve", + "4672": "pressure:ventricle:outlet_valve", + "4673": "pressure:ventricle:outlet_valve", + "4674": "pressure:ventricle:outlet_valve", + "4675": "pressure:ventricle:outlet_valve", + "4676": "pressure:ventricle:outlet_valve", + "4677": "pressure:ventricle:outlet_valve", + "4678": "pressure:ventricle:outlet_valve", + "4679": "pressure:ventricle:outlet_valve", + "4680": "pressure:ventricle:outlet_valve", + "4681": "pressure:ventricle:outlet_valve", + "4682": "pressure:ventricle:outlet_valve", + "4683": "pressure:ventricle:outlet_valve", + "4684": "pressure:ventricle:outlet_valve", + "4685": "pressure:ventricle:outlet_valve", + "4686": "pressure:ventricle:outlet_valve", + "4687": "pressure:ventricle:outlet_valve", + "4688": "pressure:ventricle:outlet_valve", + "4689": "pressure:ventricle:outlet_valve", + "4690": "pressure:ventricle:outlet_valve", + "4691": "pressure:ventricle:outlet_valve", + "4692": "pressure:ventricle:outlet_valve", + "4693": "pressure:ventricle:outlet_valve", + "4694": "pressure:ventricle:outlet_valve", + "4695": "pressure:ventricle:outlet_valve", + "4696": "pressure:ventricle:outlet_valve", + "4697": "pressure:ventricle:outlet_valve", + "4698": "pressure:ventricle:outlet_valve", + "4699": "pressure:ventricle:outlet_valve", + "4700": "pressure:ventricle:outlet_valve", + "4701": "pressure:ventricle:outlet_valve", + "4702": "pressure:ventricle:outlet_valve", + "4703": "pressure:ventricle:outlet_valve", + "4704": "pressure:ventricle:outlet_valve", + "4705": "pressure:ventricle:outlet_valve", + "4706": "pressure:ventricle:outlet_valve", + "4707": "pressure:ventricle:outlet_valve", + "4708": "pressure:ventricle:outlet_valve", + "4709": "pressure:ventricle:outlet_valve", + "4710": "pressure:ventricle:outlet_valve", + "4711": "pressure:ventricle:outlet_valve", + "4712": "pressure:ventricle:outlet_valve", + "4713": "pressure:ventricle:outlet_valve", + "4714": "pressure:ventricle:outlet_valve", + "4715": "pressure:ventricle:outlet_valve", + "4716": "pressure:ventricle:outlet_valve", + "4717": "pressure:ventricle:outlet_valve", + "4718": "pressure:ventricle:outlet_valve", + "4719": "pressure:ventricle:outlet_valve", + "4720": "pressure:ventricle:outlet_valve", + "4721": "pressure:ventricle:outlet_valve", + "4722": "pressure:ventricle:outlet_valve", + "4723": "pressure:ventricle:outlet_valve", + "4724": "pressure:ventricle:outlet_valve", + "4725": "pressure:ventricle:outlet_valve", + "4726": "pressure:ventricle:outlet_valve", + "4727": "pressure:ventricle:outlet_valve", + "4728": "pressure:ventricle:outlet_valve", + "4729": "pressure:ventricle:outlet_valve", + "4730": "pressure:ventricle:outlet_valve", + "4731": "pressure:ventricle:outlet_valve", + "4732": "pressure:ventricle:outlet_valve", + "4733": "pressure:ventricle:outlet_valve", + "4734": "pressure:ventricle:outlet_valve", + "4735": "pressure:ventricle:outlet_valve", + "4736": "pressure:ventricle:outlet_valve", + "4737": "pressure:ventricle:outlet_valve", + "4738": "pressure:ventricle:outlet_valve", + "4739": "pressure:ventricle:outlet_valve", + "4740": "pressure:ventricle:outlet_valve", + "4741": "pressure:ventricle:outlet_valve", + "4742": "pressure:ventricle:outlet_valve", + "4743": "pressure:ventricle:outlet_valve", + "4744": "pressure:ventricle:outlet_valve", + "4745": "pressure:ventricle:outlet_valve", + "4746": "pressure:ventricle:outlet_valve", + "4747": "pressure:ventricle:outlet_valve", + "4748": "pressure:ventricle:outlet_valve", + "4749": "pressure:ventricle:outlet_valve", + "4750": "pressure:ventricle:outlet_valve", + "4751": "pressure:ventricle:outlet_valve", + "4752": "pressure:ventricle:outlet_valve", + "4753": "pressure:ventricle:outlet_valve", + "4754": "pressure:ventricle:outlet_valve", + "4755": "pressure:ventricle:outlet_valve", + "4756": "pressure:ventricle:outlet_valve", + "4757": "pressure:ventricle:outlet_valve", + "4758": "pressure:ventricle:outlet_valve", + "4759": "pressure:ventricle:outlet_valve", + "4760": "pressure:ventricle:outlet_valve", + "4761": "pressure:ventricle:outlet_valve", + "4762": "pressure:ventricle:outlet_valve", + "4763": "pressure:ventricle:outlet_valve", + "4764": "pressure:ventricle:outlet_valve", + "4765": "pressure:ventricle:outlet_valve", + "4766": "pressure:ventricle:outlet_valve", + "4767": "pressure:ventricle:outlet_valve", + "4768": "pressure:ventricle:outlet_valve", + "4769": "pressure:ventricle:outlet_valve", + "4770": "pressure:ventricle:outlet_valve", + "4771": "pressure:ventricle:outlet_valve", + "4772": "pressure:ventricle:outlet_valve", + "4773": "pressure:ventricle:outlet_valve", + "4774": "pressure:ventricle:outlet_valve", + "4775": "pressure:ventricle:outlet_valve", + "4776": "pressure:ventricle:outlet_valve", + "4777": "pressure:ventricle:outlet_valve", + "4778": "pressure:ventricle:outlet_valve", + "4779": "pressure:ventricle:outlet_valve", + "4780": "pressure:ventricle:outlet_valve", + "4781": "pressure:ventricle:outlet_valve", + "4782": "pressure:ventricle:outlet_valve", + "4783": "pressure:ventricle:outlet_valve", + "4784": "pressure:ventricle:outlet_valve", + "4785": "pressure:ventricle:outlet_valve", + "4786": "pressure:ventricle:outlet_valve", + "4787": "pressure:ventricle:outlet_valve", + "4788": "pressure:ventricle:outlet_valve", + "4789": "pressure:ventricle:outlet_valve", + "4790": "pressure:ventricle:outlet_valve", + "4791": "pressure:ventricle:outlet_valve", + "4792": "pressure:ventricle:outlet_valve", + "4793": "pressure:ventricle:outlet_valve", + "4794": "pressure:ventricle:outlet_valve", + "4795": "pressure:ventricle:outlet_valve", + "4796": "pressure:ventricle:outlet_valve", + "4797": "pressure:ventricle:outlet_valve", + "4798": "pressure:ventricle:outlet_valve", + "4799": "pressure:ventricle:outlet_valve", + "4800": "pressure:ventricle:outlet_valve", + "4801": "pressure:ventricle:outlet_valve", + "4802": "pressure:ventricle:outlet_valve", + "4803": "pressure:ventricle:outlet_valve", + "4804": "pressure:ventricle:outlet_valve", + "4805": "pressure:ventricle:outlet_valve", + "4806": "pressure:ventricle:outlet_valve", + "4807": "pressure:ventricle:outlet_valve", + "4808": "pressure:ventricle:outlet_valve", + "4809": "pressure:ventricle:outlet_valve", + "4810": "pressure:ventricle:outlet_valve", + "4811": "pressure:ventricle:outlet_valve", + "4812": "pressure:ventricle:outlet_valve", + "4813": "pressure:ventricle:outlet_valve", + "4814": "pressure:ventricle:outlet_valve", + "4815": "pressure:ventricle:outlet_valve", + "4816": "pressure:ventricle:outlet_valve", + "4817": "pressure:ventricle:outlet_valve", + "4818": "pressure:ventricle:outlet_valve", + "4819": "pressure:ventricle:outlet_valve", + "4820": "pressure:ventricle:outlet_valve", + "4821": "pressure:ventricle:outlet_valve", + "4822": "pressure:ventricle:outlet_valve", + "4823": "pressure:ventricle:outlet_valve", + "4824": "pressure:ventricle:outlet_valve", + "4825": "pressure:ventricle:outlet_valve", + "4826": "pressure:ventricle:outlet_valve", + "4827": "pressure:ventricle:outlet_valve", + "4828": "pressure:ventricle:outlet_valve", + "4829": "pressure:ventricle:outlet_valve", + "4830": "pressure:ventricle:outlet_valve", + "4831": "pressure:ventricle:outlet_valve", + "4832": "pressure:ventricle:outlet_valve", + "4833": "pressure:ventricle:outlet_valve", + "4834": "pressure:ventricle:outlet_valve", + "4835": "pressure:ventricle:outlet_valve", + "4836": "pressure:ventricle:outlet_valve", + "4837": "pressure:ventricle:outlet_valve", + "4838": "pressure:ventricle:outlet_valve", + "4839": "pressure:ventricle:outlet_valve", + "4840": "pressure:ventricle:outlet_valve", + "4841": "pressure:ventricle:outlet_valve", + "4842": "pressure:ventricle:outlet_valve", + "4843": "pressure:ventricle:outlet_valve", + "4844": "pressure:ventricle:outlet_valve", + "4845": "pressure:ventricle:outlet_valve", + "4846": "pressure:ventricle:outlet_valve", + "4847": "pressure:ventricle:outlet_valve", + "4848": "pressure:ventricle:outlet_valve", + "4849": "pressure:ventricle:outlet_valve", + "4850": "pressure:ventricle:outlet_valve", + "4851": "pressure:ventricle:outlet_valve", + "4852": "pressure:ventricle:outlet_valve", + "4853": "pressure:ventricle:outlet_valve", + "4854": "pressure:ventricle:outlet_valve", + "4855": "pressure:ventricle:outlet_valve", + "4856": "pressure:ventricle:outlet_valve", + "4857": "pressure:ventricle:outlet_valve", + "4858": "pressure:ventricle:outlet_valve", + "4859": "pressure:ventricle:outlet_valve", + "4860": "pressure:ventricle:outlet_valve", + "4861": "pressure:ventricle:outlet_valve", + "4862": "pressure:ventricle:outlet_valve", + "4863": "pressure:ventricle:outlet_valve", + "4864": "pressure:ventricle:outlet_valve", + "4865": "pressure:ventricle:outlet_valve", + "4866": "pressure:ventricle:outlet_valve", + "4867": "pressure:ventricle:outlet_valve", + "4868": "pressure:ventricle:outlet_valve", + "4869": "pressure:ventricle:outlet_valve", + "4870": "pressure:ventricle:outlet_valve", + "4871": "pressure:ventricle:outlet_valve", + "4872": "pressure:ventricle:outlet_valve", + "4873": "pressure:ventricle:outlet_valve", + "4874": "pressure:ventricle:outlet_valve", + "4875": "pressure:ventricle:outlet_valve", + "4876": "pressure:ventricle:outlet_valve", + "4877": "pressure:ventricle:outlet_valve", + "4878": "pressure:ventricle:outlet_valve", + "4879": "pressure:ventricle:outlet_valve", + "4880": "pressure:ventricle:outlet_valve", + "4881": "pressure:ventricle:outlet_valve", + "4882": "pressure:ventricle:outlet_valve", + "4883": "pressure:ventricle:outlet_valve", + "4884": "pressure:ventricle:outlet_valve", + "4885": "pressure:ventricle:outlet_valve", + "4886": "pressure:ventricle:outlet_valve", + "4887": "pressure:ventricle:outlet_valve", + "4888": "pressure:ventricle:outlet_valve", + "4889": "pressure:ventricle:outlet_valve", + "4890": "pressure:ventricle:outlet_valve", + "4891": "pressure:ventricle:outlet_valve", + "4892": "pressure:ventricle:outlet_valve", + "4893": "pressure:ventricle:outlet_valve", + "4894": "pressure:ventricle:outlet_valve", + "4895": "pressure:ventricle:outlet_valve", + "4896": "pressure:ventricle:outlet_valve", + "4897": "pressure:ventricle:outlet_valve", + "4898": "pressure:ventricle:outlet_valve", + "4899": "pressure:ventricle:outlet_valve", + "4900": "pressure:ventricle:outlet_valve", + "4901": "pressure:ventricle:outlet_valve", + "4902": "pressure:ventricle:outlet_valve", + "4903": "pressure:ventricle:outlet_valve", + "4904": "pressure:ventricle:outlet_valve", + "4905": "pressure:ventricle:outlet_valve", + "4906": "pressure:ventricle:outlet_valve", + "4907": "pressure:ventricle:outlet_valve", + "4908": "pressure:ventricle:outlet_valve", + "4909": "pressure:ventricle:outlet_valve", + "4910": "pressure:ventricle:outlet_valve", + "4911": "pressure:ventricle:outlet_valve", + "4912": "pressure:ventricle:outlet_valve", + "4913": "pressure:ventricle:outlet_valve", + "4914": "pressure:ventricle:outlet_valve", + "4915": "pressure:ventricle:outlet_valve", + "4916": "pressure:ventricle:outlet_valve", + "4917": "pressure:ventricle:outlet_valve", + "4918": "pressure:ventricle:outlet_valve", + "4919": "pressure:ventricle:outlet_valve", + "4920": "pressure:ventricle:outlet_valve", + "4921": "pressure:ventricle:outlet_valve", + "4922": "pressure:ventricle:outlet_valve", + "4923": "pressure:ventricle:outlet_valve", + "4924": "pressure:ventricle:outlet_valve", + "4925": "pressure:ventricle:outlet_valve", + "4926": "pressure:ventricle:outlet_valve", + "4927": "pressure:ventricle:outlet_valve", + "4928": "pressure:ventricle:outlet_valve", + "4929": "pressure:ventricle:outlet_valve", + "4930": "pressure:ventricle:outlet_valve", + "4931": "pressure:ventricle:outlet_valve", + "4932": "pressure:ventricle:outlet_valve", + "4933": "pressure:ventricle:outlet_valve", + "4934": "pressure:ventricle:outlet_valve", + "4935": "pressure:ventricle:outlet_valve", + "4936": "pressure:ventricle:outlet_valve", + "4937": "pressure:ventricle:outlet_valve", + "4938": "pressure:ventricle:outlet_valve", + "4939": "pressure:ventricle:outlet_valve", + "4940": "pressure:ventricle:outlet_valve", + "4941": "pressure:ventricle:outlet_valve", + "4942": "pressure:ventricle:outlet_valve", + "4943": "pressure:ventricle:outlet_valve", + "4944": "pressure:ventricle:outlet_valve", + "4945": "pressure:ventricle:outlet_valve", + "4946": "pressure:ventricle:outlet_valve", + "4947": "pressure:ventricle:outlet_valve", + "4948": "pressure:ventricle:outlet_valve", + "4949": "pressure:ventricle:outlet_valve", + "4950": "pressure:ventricle:outlet_valve", + "4951": "pressure:ventricle:outlet_valve", + "4952": "pressure:ventricle:outlet_valve", + "4953": "pressure:ventricle:outlet_valve", + "4954": "pressure:ventricle:outlet_valve", + "4955": "pressure:ventricle:outlet_valve", + "4956": "pressure:ventricle:outlet_valve", + "4957": "pressure:ventricle:outlet_valve", + "4958": "pressure:ventricle:outlet_valve", + "4959": "pressure:ventricle:outlet_valve", + "4960": "pressure:ventricle:outlet_valve", + "4961": "pressure:ventricle:outlet_valve", + "4962": "pressure:ventricle:outlet_valve", + "4963": "pressure:ventricle:outlet_valve", + "4964": "pressure:ventricle:outlet_valve", + "4965": "pressure:ventricle:outlet_valve", + "4966": "pressure:ventricle:outlet_valve", + "4967": "pressure:ventricle:outlet_valve", + "4968": "pressure:ventricle:outlet_valve", + "4969": "pressure:ventricle:outlet_valve", + "4970": "pressure:ventricle:outlet_valve", + "4971": "pressure:ventricle:outlet_valve", + "4972": "pressure:ventricle:outlet_valve", + "4973": "pressure:ventricle:outlet_valve", + "4974": "pressure:ventricle:outlet_valve", + "4975": "pressure:ventricle:outlet_valve", + "4976": "pressure:ventricle:outlet_valve", + "4977": "pressure:ventricle:outlet_valve", + "4978": "pressure:ventricle:outlet_valve", + "4979": "pressure:ventricle:outlet_valve", + "4980": "pressure:ventricle:outlet_valve", + "4981": "pressure:ventricle:outlet_valve", + "4982": "pressure:ventricle:outlet_valve", + "4983": "pressure:ventricle:outlet_valve", + "4984": "pressure:ventricle:outlet_valve", + "4985": "pressure:ventricle:outlet_valve", + "4986": "pressure:ventricle:outlet_valve", + "4987": "pressure:ventricle:outlet_valve", + "4988": "pressure:ventricle:outlet_valve", + "4989": "pressure:ventricle:outlet_valve", + "4990": "pressure:ventricle:outlet_valve", + "4991": "pressure:ventricle:outlet_valve", + "4992": "pressure:ventricle:outlet_valve", + "4993": "pressure:ventricle:outlet_valve", + "4994": "pressure:ventricle:outlet_valve", + "4995": "pressure:ventricle:outlet_valve", + "4996": "pressure:ventricle:outlet_valve", + "4997": "pressure:ventricle:outlet_valve", + "4998": "pressure:ventricle:outlet_valve", + "4999": "pressure:ventricle:outlet_valve", + "5000": "flow:outlet_valve:downstream_vessel", + "5001": "flow:outlet_valve:downstream_vessel", + "5002": "flow:outlet_valve:downstream_vessel", + "5003": "flow:outlet_valve:downstream_vessel", + "5004": "flow:outlet_valve:downstream_vessel", + "5005": "flow:outlet_valve:downstream_vessel", + "5006": "flow:outlet_valve:downstream_vessel", + "5007": "flow:outlet_valve:downstream_vessel", + "5008": "flow:outlet_valve:downstream_vessel", + "5009": "flow:outlet_valve:downstream_vessel", + "5010": "flow:outlet_valve:downstream_vessel", + "5011": "flow:outlet_valve:downstream_vessel", + "5012": "flow:outlet_valve:downstream_vessel", + "5013": "flow:outlet_valve:downstream_vessel", + "5014": "flow:outlet_valve:downstream_vessel", + "5015": "flow:outlet_valve:downstream_vessel", + "5016": "flow:outlet_valve:downstream_vessel", + "5017": "flow:outlet_valve:downstream_vessel", + "5018": "flow:outlet_valve:downstream_vessel", + "5019": "flow:outlet_valve:downstream_vessel", + "5020": "flow:outlet_valve:downstream_vessel", + "5021": "flow:outlet_valve:downstream_vessel", + "5022": "flow:outlet_valve:downstream_vessel", + "5023": "flow:outlet_valve:downstream_vessel", + "5024": "flow:outlet_valve:downstream_vessel", + "5025": "flow:outlet_valve:downstream_vessel", + "5026": "flow:outlet_valve:downstream_vessel", + "5027": "flow:outlet_valve:downstream_vessel", + "5028": "flow:outlet_valve:downstream_vessel", + "5029": "flow:outlet_valve:downstream_vessel", + "5030": "flow:outlet_valve:downstream_vessel", + "5031": "flow:outlet_valve:downstream_vessel", + "5032": "flow:outlet_valve:downstream_vessel", + "5033": "flow:outlet_valve:downstream_vessel", + "5034": "flow:outlet_valve:downstream_vessel", + "5035": "flow:outlet_valve:downstream_vessel", + "5036": "flow:outlet_valve:downstream_vessel", + "5037": "flow:outlet_valve:downstream_vessel", + "5038": "flow:outlet_valve:downstream_vessel", + "5039": "flow:outlet_valve:downstream_vessel", + "5040": "flow:outlet_valve:downstream_vessel", + "5041": "flow:outlet_valve:downstream_vessel", + "5042": "flow:outlet_valve:downstream_vessel", + "5043": "flow:outlet_valve:downstream_vessel", + "5044": "flow:outlet_valve:downstream_vessel", + "5045": "flow:outlet_valve:downstream_vessel", + "5046": "flow:outlet_valve:downstream_vessel", + "5047": "flow:outlet_valve:downstream_vessel", + "5048": "flow:outlet_valve:downstream_vessel", + "5049": "flow:outlet_valve:downstream_vessel", + "5050": "flow:outlet_valve:downstream_vessel", + "5051": "flow:outlet_valve:downstream_vessel", + "5052": "flow:outlet_valve:downstream_vessel", + "5053": "flow:outlet_valve:downstream_vessel", + "5054": "flow:outlet_valve:downstream_vessel", + "5055": "flow:outlet_valve:downstream_vessel", + "5056": "flow:outlet_valve:downstream_vessel", + "5057": "flow:outlet_valve:downstream_vessel", + "5058": "flow:outlet_valve:downstream_vessel", + "5059": "flow:outlet_valve:downstream_vessel", + "5060": "flow:outlet_valve:downstream_vessel", + "5061": "flow:outlet_valve:downstream_vessel", + "5062": "flow:outlet_valve:downstream_vessel", + "5063": "flow:outlet_valve:downstream_vessel", + "5064": "flow:outlet_valve:downstream_vessel", + "5065": "flow:outlet_valve:downstream_vessel", + "5066": "flow:outlet_valve:downstream_vessel", + "5067": "flow:outlet_valve:downstream_vessel", + "5068": "flow:outlet_valve:downstream_vessel", + "5069": "flow:outlet_valve:downstream_vessel", + "5070": "flow:outlet_valve:downstream_vessel", + "5071": "flow:outlet_valve:downstream_vessel", + "5072": "flow:outlet_valve:downstream_vessel", + "5073": "flow:outlet_valve:downstream_vessel", + "5074": "flow:outlet_valve:downstream_vessel", + "5075": "flow:outlet_valve:downstream_vessel", + "5076": "flow:outlet_valve:downstream_vessel", + "5077": "flow:outlet_valve:downstream_vessel", + "5078": "flow:outlet_valve:downstream_vessel", + "5079": "flow:outlet_valve:downstream_vessel", + "5080": "flow:outlet_valve:downstream_vessel", + "5081": "flow:outlet_valve:downstream_vessel", + "5082": "flow:outlet_valve:downstream_vessel", + "5083": "flow:outlet_valve:downstream_vessel", + "5084": "flow:outlet_valve:downstream_vessel", + "5085": "flow:outlet_valve:downstream_vessel", + "5086": "flow:outlet_valve:downstream_vessel", + "5087": "flow:outlet_valve:downstream_vessel", + "5088": "flow:outlet_valve:downstream_vessel", + "5089": "flow:outlet_valve:downstream_vessel", + "5090": "flow:outlet_valve:downstream_vessel", + "5091": "flow:outlet_valve:downstream_vessel", + "5092": "flow:outlet_valve:downstream_vessel", + "5093": "flow:outlet_valve:downstream_vessel", + "5094": "flow:outlet_valve:downstream_vessel", + "5095": "flow:outlet_valve:downstream_vessel", + "5096": "flow:outlet_valve:downstream_vessel", + "5097": "flow:outlet_valve:downstream_vessel", + "5098": "flow:outlet_valve:downstream_vessel", + "5099": "flow:outlet_valve:downstream_vessel", + "5100": "flow:outlet_valve:downstream_vessel", + "5101": "flow:outlet_valve:downstream_vessel", + "5102": "flow:outlet_valve:downstream_vessel", + "5103": "flow:outlet_valve:downstream_vessel", + "5104": "flow:outlet_valve:downstream_vessel", + "5105": "flow:outlet_valve:downstream_vessel", + "5106": "flow:outlet_valve:downstream_vessel", + "5107": "flow:outlet_valve:downstream_vessel", + "5108": "flow:outlet_valve:downstream_vessel", + "5109": "flow:outlet_valve:downstream_vessel", + "5110": "flow:outlet_valve:downstream_vessel", + "5111": "flow:outlet_valve:downstream_vessel", + "5112": "flow:outlet_valve:downstream_vessel", + "5113": "flow:outlet_valve:downstream_vessel", + "5114": "flow:outlet_valve:downstream_vessel", + "5115": "flow:outlet_valve:downstream_vessel", + "5116": "flow:outlet_valve:downstream_vessel", + "5117": "flow:outlet_valve:downstream_vessel", + "5118": "flow:outlet_valve:downstream_vessel", + "5119": "flow:outlet_valve:downstream_vessel", + "5120": "flow:outlet_valve:downstream_vessel", + "5121": "flow:outlet_valve:downstream_vessel", + "5122": "flow:outlet_valve:downstream_vessel", + "5123": "flow:outlet_valve:downstream_vessel", + "5124": "flow:outlet_valve:downstream_vessel", + "5125": "flow:outlet_valve:downstream_vessel", + "5126": "flow:outlet_valve:downstream_vessel", + "5127": "flow:outlet_valve:downstream_vessel", + "5128": "flow:outlet_valve:downstream_vessel", + "5129": "flow:outlet_valve:downstream_vessel", + "5130": "flow:outlet_valve:downstream_vessel", + "5131": "flow:outlet_valve:downstream_vessel", + "5132": "flow:outlet_valve:downstream_vessel", + "5133": "flow:outlet_valve:downstream_vessel", + "5134": "flow:outlet_valve:downstream_vessel", + "5135": "flow:outlet_valve:downstream_vessel", + "5136": "flow:outlet_valve:downstream_vessel", + "5137": "flow:outlet_valve:downstream_vessel", + "5138": "flow:outlet_valve:downstream_vessel", + "5139": "flow:outlet_valve:downstream_vessel", + "5140": "flow:outlet_valve:downstream_vessel", + "5141": "flow:outlet_valve:downstream_vessel", + "5142": "flow:outlet_valve:downstream_vessel", + "5143": "flow:outlet_valve:downstream_vessel", + "5144": "flow:outlet_valve:downstream_vessel", + "5145": "flow:outlet_valve:downstream_vessel", + "5146": "flow:outlet_valve:downstream_vessel", + "5147": "flow:outlet_valve:downstream_vessel", + "5148": "flow:outlet_valve:downstream_vessel", + "5149": "flow:outlet_valve:downstream_vessel", + "5150": "flow:outlet_valve:downstream_vessel", + "5151": "flow:outlet_valve:downstream_vessel", + "5152": "flow:outlet_valve:downstream_vessel", + "5153": "flow:outlet_valve:downstream_vessel", + "5154": "flow:outlet_valve:downstream_vessel", + "5155": "flow:outlet_valve:downstream_vessel", + "5156": "flow:outlet_valve:downstream_vessel", + "5157": "flow:outlet_valve:downstream_vessel", + "5158": "flow:outlet_valve:downstream_vessel", + "5159": "flow:outlet_valve:downstream_vessel", + "5160": "flow:outlet_valve:downstream_vessel", + "5161": "flow:outlet_valve:downstream_vessel", + "5162": "flow:outlet_valve:downstream_vessel", + "5163": "flow:outlet_valve:downstream_vessel", + "5164": "flow:outlet_valve:downstream_vessel", + "5165": "flow:outlet_valve:downstream_vessel", + "5166": "flow:outlet_valve:downstream_vessel", + "5167": "flow:outlet_valve:downstream_vessel", + "5168": "flow:outlet_valve:downstream_vessel", + "5169": "flow:outlet_valve:downstream_vessel", + "5170": "flow:outlet_valve:downstream_vessel", + "5171": "flow:outlet_valve:downstream_vessel", + "5172": "flow:outlet_valve:downstream_vessel", + "5173": "flow:outlet_valve:downstream_vessel", + "5174": "flow:outlet_valve:downstream_vessel", + "5175": "flow:outlet_valve:downstream_vessel", + "5176": "flow:outlet_valve:downstream_vessel", + "5177": "flow:outlet_valve:downstream_vessel", + "5178": "flow:outlet_valve:downstream_vessel", + "5179": "flow:outlet_valve:downstream_vessel", + "5180": "flow:outlet_valve:downstream_vessel", + "5181": "flow:outlet_valve:downstream_vessel", + "5182": "flow:outlet_valve:downstream_vessel", + "5183": "flow:outlet_valve:downstream_vessel", + "5184": "flow:outlet_valve:downstream_vessel", + "5185": "flow:outlet_valve:downstream_vessel", + "5186": "flow:outlet_valve:downstream_vessel", + "5187": "flow:outlet_valve:downstream_vessel", + "5188": "flow:outlet_valve:downstream_vessel", + "5189": "flow:outlet_valve:downstream_vessel", + "5190": "flow:outlet_valve:downstream_vessel", + "5191": "flow:outlet_valve:downstream_vessel", + "5192": "flow:outlet_valve:downstream_vessel", + "5193": "flow:outlet_valve:downstream_vessel", + "5194": "flow:outlet_valve:downstream_vessel", + "5195": "flow:outlet_valve:downstream_vessel", + "5196": "flow:outlet_valve:downstream_vessel", + "5197": "flow:outlet_valve:downstream_vessel", + "5198": "flow:outlet_valve:downstream_vessel", + "5199": "flow:outlet_valve:downstream_vessel", + "5200": "flow:outlet_valve:downstream_vessel", + "5201": "flow:outlet_valve:downstream_vessel", + "5202": "flow:outlet_valve:downstream_vessel", + "5203": "flow:outlet_valve:downstream_vessel", + "5204": "flow:outlet_valve:downstream_vessel", + "5205": "flow:outlet_valve:downstream_vessel", + "5206": "flow:outlet_valve:downstream_vessel", + "5207": "flow:outlet_valve:downstream_vessel", + "5208": "flow:outlet_valve:downstream_vessel", + "5209": "flow:outlet_valve:downstream_vessel", + "5210": "flow:outlet_valve:downstream_vessel", + "5211": "flow:outlet_valve:downstream_vessel", + "5212": "flow:outlet_valve:downstream_vessel", + "5213": "flow:outlet_valve:downstream_vessel", + "5214": "flow:outlet_valve:downstream_vessel", + "5215": "flow:outlet_valve:downstream_vessel", + "5216": "flow:outlet_valve:downstream_vessel", + "5217": "flow:outlet_valve:downstream_vessel", + "5218": "flow:outlet_valve:downstream_vessel", + "5219": "flow:outlet_valve:downstream_vessel", + "5220": "flow:outlet_valve:downstream_vessel", + "5221": "flow:outlet_valve:downstream_vessel", + "5222": "flow:outlet_valve:downstream_vessel", + "5223": "flow:outlet_valve:downstream_vessel", + "5224": "flow:outlet_valve:downstream_vessel", + "5225": "flow:outlet_valve:downstream_vessel", + "5226": "flow:outlet_valve:downstream_vessel", + "5227": "flow:outlet_valve:downstream_vessel", + "5228": "flow:outlet_valve:downstream_vessel", + "5229": "flow:outlet_valve:downstream_vessel", + "5230": "flow:outlet_valve:downstream_vessel", + "5231": "flow:outlet_valve:downstream_vessel", + "5232": "flow:outlet_valve:downstream_vessel", + "5233": "flow:outlet_valve:downstream_vessel", + "5234": "flow:outlet_valve:downstream_vessel", + "5235": "flow:outlet_valve:downstream_vessel", + "5236": "flow:outlet_valve:downstream_vessel", + "5237": "flow:outlet_valve:downstream_vessel", + "5238": "flow:outlet_valve:downstream_vessel", + "5239": "flow:outlet_valve:downstream_vessel", + "5240": "flow:outlet_valve:downstream_vessel", + "5241": "flow:outlet_valve:downstream_vessel", + "5242": "flow:outlet_valve:downstream_vessel", + "5243": "flow:outlet_valve:downstream_vessel", + "5244": "flow:outlet_valve:downstream_vessel", + "5245": "flow:outlet_valve:downstream_vessel", + "5246": "flow:outlet_valve:downstream_vessel", + "5247": "flow:outlet_valve:downstream_vessel", + "5248": "flow:outlet_valve:downstream_vessel", + "5249": "flow:outlet_valve:downstream_vessel", + "5250": "flow:outlet_valve:downstream_vessel", + "5251": "flow:outlet_valve:downstream_vessel", + "5252": "flow:outlet_valve:downstream_vessel", + "5253": "flow:outlet_valve:downstream_vessel", + "5254": "flow:outlet_valve:downstream_vessel", + "5255": "flow:outlet_valve:downstream_vessel", + "5256": "flow:outlet_valve:downstream_vessel", + "5257": "flow:outlet_valve:downstream_vessel", + "5258": "flow:outlet_valve:downstream_vessel", + "5259": "flow:outlet_valve:downstream_vessel", + "5260": "flow:outlet_valve:downstream_vessel", + "5261": "flow:outlet_valve:downstream_vessel", + "5262": "flow:outlet_valve:downstream_vessel", + "5263": "flow:outlet_valve:downstream_vessel", + "5264": "flow:outlet_valve:downstream_vessel", + "5265": "flow:outlet_valve:downstream_vessel", + "5266": "flow:outlet_valve:downstream_vessel", + "5267": "flow:outlet_valve:downstream_vessel", + "5268": "flow:outlet_valve:downstream_vessel", + "5269": "flow:outlet_valve:downstream_vessel", + "5270": "flow:outlet_valve:downstream_vessel", + "5271": "flow:outlet_valve:downstream_vessel", + "5272": "flow:outlet_valve:downstream_vessel", + "5273": "flow:outlet_valve:downstream_vessel", + "5274": "flow:outlet_valve:downstream_vessel", + "5275": "flow:outlet_valve:downstream_vessel", + "5276": "flow:outlet_valve:downstream_vessel", + "5277": "flow:outlet_valve:downstream_vessel", + "5278": "flow:outlet_valve:downstream_vessel", + "5279": "flow:outlet_valve:downstream_vessel", + "5280": "flow:outlet_valve:downstream_vessel", + "5281": "flow:outlet_valve:downstream_vessel", + "5282": "flow:outlet_valve:downstream_vessel", + "5283": "flow:outlet_valve:downstream_vessel", + "5284": "flow:outlet_valve:downstream_vessel", + "5285": "flow:outlet_valve:downstream_vessel", + "5286": "flow:outlet_valve:downstream_vessel", + "5287": "flow:outlet_valve:downstream_vessel", + "5288": "flow:outlet_valve:downstream_vessel", + "5289": "flow:outlet_valve:downstream_vessel", + "5290": "flow:outlet_valve:downstream_vessel", + "5291": "flow:outlet_valve:downstream_vessel", + "5292": "flow:outlet_valve:downstream_vessel", + "5293": "flow:outlet_valve:downstream_vessel", + "5294": "flow:outlet_valve:downstream_vessel", + "5295": "flow:outlet_valve:downstream_vessel", + "5296": "flow:outlet_valve:downstream_vessel", + "5297": "flow:outlet_valve:downstream_vessel", + "5298": "flow:outlet_valve:downstream_vessel", + "5299": "flow:outlet_valve:downstream_vessel", + "5300": "flow:outlet_valve:downstream_vessel", + "5301": "flow:outlet_valve:downstream_vessel", + "5302": "flow:outlet_valve:downstream_vessel", + "5303": "flow:outlet_valve:downstream_vessel", + "5304": "flow:outlet_valve:downstream_vessel", + "5305": "flow:outlet_valve:downstream_vessel", + "5306": "flow:outlet_valve:downstream_vessel", + "5307": "flow:outlet_valve:downstream_vessel", + "5308": "flow:outlet_valve:downstream_vessel", + "5309": "flow:outlet_valve:downstream_vessel", + "5310": "flow:outlet_valve:downstream_vessel", + "5311": "flow:outlet_valve:downstream_vessel", + "5312": "flow:outlet_valve:downstream_vessel", + "5313": "flow:outlet_valve:downstream_vessel", + "5314": "flow:outlet_valve:downstream_vessel", + "5315": "flow:outlet_valve:downstream_vessel", + "5316": "flow:outlet_valve:downstream_vessel", + "5317": "flow:outlet_valve:downstream_vessel", + "5318": "flow:outlet_valve:downstream_vessel", + "5319": "flow:outlet_valve:downstream_vessel", + "5320": "flow:outlet_valve:downstream_vessel", + "5321": "flow:outlet_valve:downstream_vessel", + "5322": "flow:outlet_valve:downstream_vessel", + "5323": "flow:outlet_valve:downstream_vessel", + "5324": "flow:outlet_valve:downstream_vessel", + "5325": "flow:outlet_valve:downstream_vessel", + "5326": "flow:outlet_valve:downstream_vessel", + "5327": "flow:outlet_valve:downstream_vessel", + "5328": "flow:outlet_valve:downstream_vessel", + "5329": "flow:outlet_valve:downstream_vessel", + "5330": "flow:outlet_valve:downstream_vessel", + "5331": "flow:outlet_valve:downstream_vessel", + "5332": "flow:outlet_valve:downstream_vessel", + "5333": "flow:outlet_valve:downstream_vessel", + "5334": "flow:outlet_valve:downstream_vessel", + "5335": "flow:outlet_valve:downstream_vessel", + "5336": "flow:outlet_valve:downstream_vessel", + "5337": "flow:outlet_valve:downstream_vessel", + "5338": "flow:outlet_valve:downstream_vessel", + "5339": "flow:outlet_valve:downstream_vessel", + "5340": "flow:outlet_valve:downstream_vessel", + "5341": "flow:outlet_valve:downstream_vessel", + "5342": "flow:outlet_valve:downstream_vessel", + "5343": "flow:outlet_valve:downstream_vessel", + "5344": "flow:outlet_valve:downstream_vessel", + "5345": "flow:outlet_valve:downstream_vessel", + "5346": "flow:outlet_valve:downstream_vessel", + "5347": "flow:outlet_valve:downstream_vessel", + "5348": "flow:outlet_valve:downstream_vessel", + "5349": "flow:outlet_valve:downstream_vessel", + "5350": "flow:outlet_valve:downstream_vessel", + "5351": "flow:outlet_valve:downstream_vessel", + "5352": "flow:outlet_valve:downstream_vessel", + "5353": "flow:outlet_valve:downstream_vessel", + "5354": "flow:outlet_valve:downstream_vessel", + "5355": "flow:outlet_valve:downstream_vessel", + "5356": "flow:outlet_valve:downstream_vessel", + "5357": "flow:outlet_valve:downstream_vessel", + "5358": "flow:outlet_valve:downstream_vessel", + "5359": "flow:outlet_valve:downstream_vessel", + "5360": "flow:outlet_valve:downstream_vessel", + "5361": "flow:outlet_valve:downstream_vessel", + "5362": "flow:outlet_valve:downstream_vessel", + "5363": "flow:outlet_valve:downstream_vessel", + "5364": "flow:outlet_valve:downstream_vessel", + "5365": "flow:outlet_valve:downstream_vessel", + "5366": "flow:outlet_valve:downstream_vessel", + "5367": "flow:outlet_valve:downstream_vessel", + "5368": "flow:outlet_valve:downstream_vessel", + "5369": "flow:outlet_valve:downstream_vessel", + "5370": "flow:outlet_valve:downstream_vessel", + "5371": "flow:outlet_valve:downstream_vessel", + "5372": "flow:outlet_valve:downstream_vessel", + "5373": "flow:outlet_valve:downstream_vessel", + "5374": "flow:outlet_valve:downstream_vessel", + "5375": "flow:outlet_valve:downstream_vessel", + "5376": "flow:outlet_valve:downstream_vessel", + "5377": "flow:outlet_valve:downstream_vessel", + "5378": "flow:outlet_valve:downstream_vessel", + "5379": "flow:outlet_valve:downstream_vessel", + "5380": "flow:outlet_valve:downstream_vessel", + "5381": "flow:outlet_valve:downstream_vessel", + "5382": "flow:outlet_valve:downstream_vessel", + "5383": "flow:outlet_valve:downstream_vessel", + "5384": "flow:outlet_valve:downstream_vessel", + "5385": "flow:outlet_valve:downstream_vessel", + "5386": "flow:outlet_valve:downstream_vessel", + "5387": "flow:outlet_valve:downstream_vessel", + "5388": "flow:outlet_valve:downstream_vessel", + "5389": "flow:outlet_valve:downstream_vessel", + "5390": "flow:outlet_valve:downstream_vessel", + "5391": "flow:outlet_valve:downstream_vessel", + "5392": "flow:outlet_valve:downstream_vessel", + "5393": "flow:outlet_valve:downstream_vessel", + "5394": "flow:outlet_valve:downstream_vessel", + "5395": "flow:outlet_valve:downstream_vessel", + "5396": "flow:outlet_valve:downstream_vessel", + "5397": "flow:outlet_valve:downstream_vessel", + "5398": "flow:outlet_valve:downstream_vessel", + "5399": "flow:outlet_valve:downstream_vessel", + "5400": "flow:outlet_valve:downstream_vessel", + "5401": "flow:outlet_valve:downstream_vessel", + "5402": "flow:outlet_valve:downstream_vessel", + "5403": "flow:outlet_valve:downstream_vessel", + "5404": "flow:outlet_valve:downstream_vessel", + "5405": "flow:outlet_valve:downstream_vessel", + "5406": "flow:outlet_valve:downstream_vessel", + "5407": "flow:outlet_valve:downstream_vessel", + "5408": "flow:outlet_valve:downstream_vessel", + "5409": "flow:outlet_valve:downstream_vessel", + "5410": "flow:outlet_valve:downstream_vessel", + "5411": "flow:outlet_valve:downstream_vessel", + "5412": "flow:outlet_valve:downstream_vessel", + "5413": "flow:outlet_valve:downstream_vessel", + "5414": "flow:outlet_valve:downstream_vessel", + "5415": "flow:outlet_valve:downstream_vessel", + "5416": "flow:outlet_valve:downstream_vessel", + "5417": "flow:outlet_valve:downstream_vessel", + "5418": "flow:outlet_valve:downstream_vessel", + "5419": "flow:outlet_valve:downstream_vessel", + "5420": "flow:outlet_valve:downstream_vessel", + "5421": "flow:outlet_valve:downstream_vessel", + "5422": "flow:outlet_valve:downstream_vessel", + "5423": "flow:outlet_valve:downstream_vessel", + "5424": "flow:outlet_valve:downstream_vessel", + "5425": "flow:outlet_valve:downstream_vessel", + "5426": "flow:outlet_valve:downstream_vessel", + "5427": "flow:outlet_valve:downstream_vessel", + "5428": "flow:outlet_valve:downstream_vessel", + "5429": "flow:outlet_valve:downstream_vessel", + "5430": "flow:outlet_valve:downstream_vessel", + "5431": "flow:outlet_valve:downstream_vessel", + "5432": "flow:outlet_valve:downstream_vessel", + "5433": "flow:outlet_valve:downstream_vessel", + "5434": "flow:outlet_valve:downstream_vessel", + "5435": "flow:outlet_valve:downstream_vessel", + "5436": "flow:outlet_valve:downstream_vessel", + "5437": "flow:outlet_valve:downstream_vessel", + "5438": "flow:outlet_valve:downstream_vessel", + "5439": "flow:outlet_valve:downstream_vessel", + "5440": "flow:outlet_valve:downstream_vessel", + "5441": "flow:outlet_valve:downstream_vessel", + "5442": "flow:outlet_valve:downstream_vessel", + "5443": "flow:outlet_valve:downstream_vessel", + "5444": "flow:outlet_valve:downstream_vessel", + "5445": "flow:outlet_valve:downstream_vessel", + "5446": "flow:outlet_valve:downstream_vessel", + "5447": "flow:outlet_valve:downstream_vessel", + "5448": "flow:outlet_valve:downstream_vessel", + "5449": "flow:outlet_valve:downstream_vessel", + "5450": "flow:outlet_valve:downstream_vessel", + "5451": "flow:outlet_valve:downstream_vessel", + "5452": "flow:outlet_valve:downstream_vessel", + "5453": "flow:outlet_valve:downstream_vessel", + "5454": "flow:outlet_valve:downstream_vessel", + "5455": "flow:outlet_valve:downstream_vessel", + "5456": "flow:outlet_valve:downstream_vessel", + "5457": "flow:outlet_valve:downstream_vessel", + "5458": "flow:outlet_valve:downstream_vessel", + "5459": "flow:outlet_valve:downstream_vessel", + "5460": "flow:outlet_valve:downstream_vessel", + "5461": "flow:outlet_valve:downstream_vessel", + "5462": "flow:outlet_valve:downstream_vessel", + "5463": "flow:outlet_valve:downstream_vessel", + "5464": "flow:outlet_valve:downstream_vessel", + "5465": "flow:outlet_valve:downstream_vessel", + "5466": "flow:outlet_valve:downstream_vessel", + "5467": "flow:outlet_valve:downstream_vessel", + "5468": "flow:outlet_valve:downstream_vessel", + "5469": "flow:outlet_valve:downstream_vessel", + "5470": "flow:outlet_valve:downstream_vessel", + "5471": "flow:outlet_valve:downstream_vessel", + "5472": "flow:outlet_valve:downstream_vessel", + "5473": "flow:outlet_valve:downstream_vessel", + "5474": "flow:outlet_valve:downstream_vessel", + "5475": "flow:outlet_valve:downstream_vessel", + "5476": "flow:outlet_valve:downstream_vessel", + "5477": "flow:outlet_valve:downstream_vessel", + "5478": "flow:outlet_valve:downstream_vessel", + "5479": "flow:outlet_valve:downstream_vessel", + "5480": "flow:outlet_valve:downstream_vessel", + "5481": "flow:outlet_valve:downstream_vessel", + "5482": "flow:outlet_valve:downstream_vessel", + "5483": "flow:outlet_valve:downstream_vessel", + "5484": "flow:outlet_valve:downstream_vessel", + "5485": "flow:outlet_valve:downstream_vessel", + "5486": "flow:outlet_valve:downstream_vessel", + "5487": "flow:outlet_valve:downstream_vessel", + "5488": "flow:outlet_valve:downstream_vessel", + "5489": "flow:outlet_valve:downstream_vessel", + "5490": "flow:outlet_valve:downstream_vessel", + "5491": "flow:outlet_valve:downstream_vessel", + "5492": "flow:outlet_valve:downstream_vessel", + "5493": "flow:outlet_valve:downstream_vessel", + "5494": "flow:outlet_valve:downstream_vessel", + "5495": "flow:outlet_valve:downstream_vessel", + "5496": "flow:outlet_valve:downstream_vessel", + "5497": "flow:outlet_valve:downstream_vessel", + "5498": "flow:outlet_valve:downstream_vessel", + "5499": "flow:outlet_valve:downstream_vessel", + "5500": "pressure:outlet_valve:downstream_vessel", + "5501": "pressure:outlet_valve:downstream_vessel", + "5502": "pressure:outlet_valve:downstream_vessel", + "5503": "pressure:outlet_valve:downstream_vessel", + "5504": "pressure:outlet_valve:downstream_vessel", + "5505": "pressure:outlet_valve:downstream_vessel", + "5506": "pressure:outlet_valve:downstream_vessel", + "5507": "pressure:outlet_valve:downstream_vessel", + "5508": "pressure:outlet_valve:downstream_vessel", + "5509": "pressure:outlet_valve:downstream_vessel", + "5510": "pressure:outlet_valve:downstream_vessel", + "5511": "pressure:outlet_valve:downstream_vessel", + "5512": "pressure:outlet_valve:downstream_vessel", + "5513": "pressure:outlet_valve:downstream_vessel", + "5514": "pressure:outlet_valve:downstream_vessel", + "5515": "pressure:outlet_valve:downstream_vessel", + "5516": "pressure:outlet_valve:downstream_vessel", + "5517": "pressure:outlet_valve:downstream_vessel", + "5518": "pressure:outlet_valve:downstream_vessel", + "5519": "pressure:outlet_valve:downstream_vessel", + "5520": "pressure:outlet_valve:downstream_vessel", + "5521": "pressure:outlet_valve:downstream_vessel", + "5522": "pressure:outlet_valve:downstream_vessel", + "5523": "pressure:outlet_valve:downstream_vessel", + "5524": "pressure:outlet_valve:downstream_vessel", + "5525": "pressure:outlet_valve:downstream_vessel", + "5526": "pressure:outlet_valve:downstream_vessel", + "5527": "pressure:outlet_valve:downstream_vessel", + "5528": "pressure:outlet_valve:downstream_vessel", + "5529": "pressure:outlet_valve:downstream_vessel", + "5530": "pressure:outlet_valve:downstream_vessel", + "5531": "pressure:outlet_valve:downstream_vessel", + "5532": "pressure:outlet_valve:downstream_vessel", + "5533": "pressure:outlet_valve:downstream_vessel", + "5534": "pressure:outlet_valve:downstream_vessel", + "5535": "pressure:outlet_valve:downstream_vessel", + "5536": "pressure:outlet_valve:downstream_vessel", + "5537": "pressure:outlet_valve:downstream_vessel", + "5538": "pressure:outlet_valve:downstream_vessel", + "5539": "pressure:outlet_valve:downstream_vessel", + "5540": "pressure:outlet_valve:downstream_vessel", + "5541": "pressure:outlet_valve:downstream_vessel", + "5542": "pressure:outlet_valve:downstream_vessel", + "5543": "pressure:outlet_valve:downstream_vessel", + "5544": "pressure:outlet_valve:downstream_vessel", + "5545": "pressure:outlet_valve:downstream_vessel", + "5546": "pressure:outlet_valve:downstream_vessel", + "5547": "pressure:outlet_valve:downstream_vessel", + "5548": "pressure:outlet_valve:downstream_vessel", + "5549": "pressure:outlet_valve:downstream_vessel", + "5550": "pressure:outlet_valve:downstream_vessel", + "5551": "pressure:outlet_valve:downstream_vessel", + "5552": "pressure:outlet_valve:downstream_vessel", + "5553": "pressure:outlet_valve:downstream_vessel", + "5554": "pressure:outlet_valve:downstream_vessel", + "5555": "pressure:outlet_valve:downstream_vessel", + "5556": "pressure:outlet_valve:downstream_vessel", + "5557": "pressure:outlet_valve:downstream_vessel", + "5558": "pressure:outlet_valve:downstream_vessel", + "5559": "pressure:outlet_valve:downstream_vessel", + "5560": "pressure:outlet_valve:downstream_vessel", + "5561": "pressure:outlet_valve:downstream_vessel", + "5562": "pressure:outlet_valve:downstream_vessel", + "5563": "pressure:outlet_valve:downstream_vessel", + "5564": "pressure:outlet_valve:downstream_vessel", + "5565": "pressure:outlet_valve:downstream_vessel", + "5566": "pressure:outlet_valve:downstream_vessel", + "5567": "pressure:outlet_valve:downstream_vessel", + "5568": "pressure:outlet_valve:downstream_vessel", + "5569": "pressure:outlet_valve:downstream_vessel", + "5570": "pressure:outlet_valve:downstream_vessel", + "5571": "pressure:outlet_valve:downstream_vessel", + "5572": "pressure:outlet_valve:downstream_vessel", + "5573": "pressure:outlet_valve:downstream_vessel", + "5574": "pressure:outlet_valve:downstream_vessel", + "5575": "pressure:outlet_valve:downstream_vessel", + "5576": "pressure:outlet_valve:downstream_vessel", + "5577": "pressure:outlet_valve:downstream_vessel", + "5578": "pressure:outlet_valve:downstream_vessel", + "5579": "pressure:outlet_valve:downstream_vessel", + "5580": "pressure:outlet_valve:downstream_vessel", + "5581": "pressure:outlet_valve:downstream_vessel", + "5582": "pressure:outlet_valve:downstream_vessel", + "5583": "pressure:outlet_valve:downstream_vessel", + "5584": "pressure:outlet_valve:downstream_vessel", + "5585": "pressure:outlet_valve:downstream_vessel", + "5586": "pressure:outlet_valve:downstream_vessel", + "5587": "pressure:outlet_valve:downstream_vessel", + "5588": "pressure:outlet_valve:downstream_vessel", + "5589": "pressure:outlet_valve:downstream_vessel", + "5590": "pressure:outlet_valve:downstream_vessel", + "5591": "pressure:outlet_valve:downstream_vessel", + "5592": "pressure:outlet_valve:downstream_vessel", + "5593": "pressure:outlet_valve:downstream_vessel", + "5594": "pressure:outlet_valve:downstream_vessel", + "5595": "pressure:outlet_valve:downstream_vessel", + "5596": "pressure:outlet_valve:downstream_vessel", + "5597": "pressure:outlet_valve:downstream_vessel", + "5598": "pressure:outlet_valve:downstream_vessel", + "5599": "pressure:outlet_valve:downstream_vessel", + "5600": "pressure:outlet_valve:downstream_vessel", + "5601": "pressure:outlet_valve:downstream_vessel", + "5602": "pressure:outlet_valve:downstream_vessel", + "5603": "pressure:outlet_valve:downstream_vessel", + "5604": "pressure:outlet_valve:downstream_vessel", + "5605": "pressure:outlet_valve:downstream_vessel", + "5606": "pressure:outlet_valve:downstream_vessel", + "5607": "pressure:outlet_valve:downstream_vessel", + "5608": "pressure:outlet_valve:downstream_vessel", + "5609": "pressure:outlet_valve:downstream_vessel", + "5610": "pressure:outlet_valve:downstream_vessel", + "5611": "pressure:outlet_valve:downstream_vessel", + "5612": "pressure:outlet_valve:downstream_vessel", + "5613": "pressure:outlet_valve:downstream_vessel", + "5614": "pressure:outlet_valve:downstream_vessel", + "5615": "pressure:outlet_valve:downstream_vessel", + "5616": "pressure:outlet_valve:downstream_vessel", + "5617": "pressure:outlet_valve:downstream_vessel", + "5618": "pressure:outlet_valve:downstream_vessel", + "5619": "pressure:outlet_valve:downstream_vessel", + "5620": "pressure:outlet_valve:downstream_vessel", + "5621": "pressure:outlet_valve:downstream_vessel", + "5622": "pressure:outlet_valve:downstream_vessel", + "5623": "pressure:outlet_valve:downstream_vessel", + "5624": "pressure:outlet_valve:downstream_vessel", + "5625": "pressure:outlet_valve:downstream_vessel", + "5626": "pressure:outlet_valve:downstream_vessel", + "5627": "pressure:outlet_valve:downstream_vessel", + "5628": "pressure:outlet_valve:downstream_vessel", + "5629": "pressure:outlet_valve:downstream_vessel", + "5630": "pressure:outlet_valve:downstream_vessel", + "5631": "pressure:outlet_valve:downstream_vessel", + "5632": "pressure:outlet_valve:downstream_vessel", + "5633": "pressure:outlet_valve:downstream_vessel", + "5634": "pressure:outlet_valve:downstream_vessel", + "5635": "pressure:outlet_valve:downstream_vessel", + "5636": "pressure:outlet_valve:downstream_vessel", + "5637": "pressure:outlet_valve:downstream_vessel", + "5638": "pressure:outlet_valve:downstream_vessel", + "5639": "pressure:outlet_valve:downstream_vessel", + "5640": "pressure:outlet_valve:downstream_vessel", + "5641": "pressure:outlet_valve:downstream_vessel", + "5642": "pressure:outlet_valve:downstream_vessel", + "5643": "pressure:outlet_valve:downstream_vessel", + "5644": "pressure:outlet_valve:downstream_vessel", + "5645": "pressure:outlet_valve:downstream_vessel", + "5646": "pressure:outlet_valve:downstream_vessel", + "5647": "pressure:outlet_valve:downstream_vessel", + "5648": "pressure:outlet_valve:downstream_vessel", + "5649": "pressure:outlet_valve:downstream_vessel", + "5650": "pressure:outlet_valve:downstream_vessel", + "5651": "pressure:outlet_valve:downstream_vessel", + "5652": "pressure:outlet_valve:downstream_vessel", + "5653": "pressure:outlet_valve:downstream_vessel", + "5654": "pressure:outlet_valve:downstream_vessel", + "5655": "pressure:outlet_valve:downstream_vessel", + "5656": "pressure:outlet_valve:downstream_vessel", + "5657": "pressure:outlet_valve:downstream_vessel", + "5658": "pressure:outlet_valve:downstream_vessel", + "5659": "pressure:outlet_valve:downstream_vessel", + "5660": "pressure:outlet_valve:downstream_vessel", + "5661": "pressure:outlet_valve:downstream_vessel", + "5662": "pressure:outlet_valve:downstream_vessel", + "5663": "pressure:outlet_valve:downstream_vessel", + "5664": "pressure:outlet_valve:downstream_vessel", + "5665": "pressure:outlet_valve:downstream_vessel", + "5666": "pressure:outlet_valve:downstream_vessel", + "5667": "pressure:outlet_valve:downstream_vessel", + "5668": "pressure:outlet_valve:downstream_vessel", + "5669": "pressure:outlet_valve:downstream_vessel", + "5670": "pressure:outlet_valve:downstream_vessel", + "5671": "pressure:outlet_valve:downstream_vessel", + "5672": "pressure:outlet_valve:downstream_vessel", + "5673": "pressure:outlet_valve:downstream_vessel", + "5674": "pressure:outlet_valve:downstream_vessel", + "5675": "pressure:outlet_valve:downstream_vessel", + "5676": "pressure:outlet_valve:downstream_vessel", + "5677": "pressure:outlet_valve:downstream_vessel", + "5678": "pressure:outlet_valve:downstream_vessel", + "5679": "pressure:outlet_valve:downstream_vessel", + "5680": "pressure:outlet_valve:downstream_vessel", + "5681": "pressure:outlet_valve:downstream_vessel", + "5682": "pressure:outlet_valve:downstream_vessel", + "5683": "pressure:outlet_valve:downstream_vessel", + "5684": "pressure:outlet_valve:downstream_vessel", + "5685": "pressure:outlet_valve:downstream_vessel", + "5686": "pressure:outlet_valve:downstream_vessel", + "5687": "pressure:outlet_valve:downstream_vessel", + "5688": "pressure:outlet_valve:downstream_vessel", + "5689": "pressure:outlet_valve:downstream_vessel", + "5690": "pressure:outlet_valve:downstream_vessel", + "5691": "pressure:outlet_valve:downstream_vessel", + "5692": "pressure:outlet_valve:downstream_vessel", + "5693": "pressure:outlet_valve:downstream_vessel", + "5694": "pressure:outlet_valve:downstream_vessel", + "5695": "pressure:outlet_valve:downstream_vessel", + "5696": "pressure:outlet_valve:downstream_vessel", + "5697": "pressure:outlet_valve:downstream_vessel", + "5698": "pressure:outlet_valve:downstream_vessel", + "5699": "pressure:outlet_valve:downstream_vessel", + "5700": "pressure:outlet_valve:downstream_vessel", + "5701": "pressure:outlet_valve:downstream_vessel", + "5702": "pressure:outlet_valve:downstream_vessel", + "5703": "pressure:outlet_valve:downstream_vessel", + "5704": "pressure:outlet_valve:downstream_vessel", + "5705": "pressure:outlet_valve:downstream_vessel", + "5706": "pressure:outlet_valve:downstream_vessel", + "5707": "pressure:outlet_valve:downstream_vessel", + "5708": "pressure:outlet_valve:downstream_vessel", + "5709": "pressure:outlet_valve:downstream_vessel", + "5710": "pressure:outlet_valve:downstream_vessel", + "5711": "pressure:outlet_valve:downstream_vessel", + "5712": "pressure:outlet_valve:downstream_vessel", + "5713": "pressure:outlet_valve:downstream_vessel", + "5714": "pressure:outlet_valve:downstream_vessel", + "5715": "pressure:outlet_valve:downstream_vessel", + "5716": "pressure:outlet_valve:downstream_vessel", + "5717": "pressure:outlet_valve:downstream_vessel", + "5718": "pressure:outlet_valve:downstream_vessel", + "5719": "pressure:outlet_valve:downstream_vessel", + "5720": "pressure:outlet_valve:downstream_vessel", + "5721": "pressure:outlet_valve:downstream_vessel", + "5722": "pressure:outlet_valve:downstream_vessel", + "5723": "pressure:outlet_valve:downstream_vessel", + "5724": "pressure:outlet_valve:downstream_vessel", + "5725": "pressure:outlet_valve:downstream_vessel", + "5726": "pressure:outlet_valve:downstream_vessel", + "5727": "pressure:outlet_valve:downstream_vessel", + "5728": "pressure:outlet_valve:downstream_vessel", + "5729": "pressure:outlet_valve:downstream_vessel", + "5730": "pressure:outlet_valve:downstream_vessel", + "5731": "pressure:outlet_valve:downstream_vessel", + "5732": "pressure:outlet_valve:downstream_vessel", + "5733": "pressure:outlet_valve:downstream_vessel", + "5734": "pressure:outlet_valve:downstream_vessel", + "5735": "pressure:outlet_valve:downstream_vessel", + "5736": "pressure:outlet_valve:downstream_vessel", + "5737": "pressure:outlet_valve:downstream_vessel", + "5738": "pressure:outlet_valve:downstream_vessel", + "5739": "pressure:outlet_valve:downstream_vessel", + "5740": "pressure:outlet_valve:downstream_vessel", + "5741": "pressure:outlet_valve:downstream_vessel", + "5742": "pressure:outlet_valve:downstream_vessel", + "5743": "pressure:outlet_valve:downstream_vessel", + "5744": "pressure:outlet_valve:downstream_vessel", + "5745": "pressure:outlet_valve:downstream_vessel", + "5746": "pressure:outlet_valve:downstream_vessel", + "5747": "pressure:outlet_valve:downstream_vessel", + "5748": "pressure:outlet_valve:downstream_vessel", + "5749": "pressure:outlet_valve:downstream_vessel", + "5750": "pressure:outlet_valve:downstream_vessel", + "5751": "pressure:outlet_valve:downstream_vessel", + "5752": "pressure:outlet_valve:downstream_vessel", + "5753": "pressure:outlet_valve:downstream_vessel", + "5754": "pressure:outlet_valve:downstream_vessel", + "5755": "pressure:outlet_valve:downstream_vessel", + "5756": "pressure:outlet_valve:downstream_vessel", + "5757": "pressure:outlet_valve:downstream_vessel", + "5758": "pressure:outlet_valve:downstream_vessel", + "5759": "pressure:outlet_valve:downstream_vessel", + "5760": "pressure:outlet_valve:downstream_vessel", + "5761": "pressure:outlet_valve:downstream_vessel", + "5762": "pressure:outlet_valve:downstream_vessel", + "5763": "pressure:outlet_valve:downstream_vessel", + "5764": "pressure:outlet_valve:downstream_vessel", + "5765": "pressure:outlet_valve:downstream_vessel", + "5766": "pressure:outlet_valve:downstream_vessel", + "5767": "pressure:outlet_valve:downstream_vessel", + "5768": "pressure:outlet_valve:downstream_vessel", + "5769": "pressure:outlet_valve:downstream_vessel", + "5770": "pressure:outlet_valve:downstream_vessel", + "5771": "pressure:outlet_valve:downstream_vessel", + "5772": "pressure:outlet_valve:downstream_vessel", + "5773": "pressure:outlet_valve:downstream_vessel", + "5774": "pressure:outlet_valve:downstream_vessel", + "5775": "pressure:outlet_valve:downstream_vessel", + "5776": "pressure:outlet_valve:downstream_vessel", + "5777": "pressure:outlet_valve:downstream_vessel", + "5778": "pressure:outlet_valve:downstream_vessel", + "5779": "pressure:outlet_valve:downstream_vessel", + "5780": "pressure:outlet_valve:downstream_vessel", + "5781": "pressure:outlet_valve:downstream_vessel", + "5782": "pressure:outlet_valve:downstream_vessel", + "5783": "pressure:outlet_valve:downstream_vessel", + "5784": "pressure:outlet_valve:downstream_vessel", + "5785": "pressure:outlet_valve:downstream_vessel", + "5786": "pressure:outlet_valve:downstream_vessel", + "5787": "pressure:outlet_valve:downstream_vessel", + "5788": "pressure:outlet_valve:downstream_vessel", + "5789": "pressure:outlet_valve:downstream_vessel", + "5790": "pressure:outlet_valve:downstream_vessel", + "5791": "pressure:outlet_valve:downstream_vessel", + "5792": "pressure:outlet_valve:downstream_vessel", + "5793": "pressure:outlet_valve:downstream_vessel", + "5794": "pressure:outlet_valve:downstream_vessel", + "5795": "pressure:outlet_valve:downstream_vessel", + "5796": "pressure:outlet_valve:downstream_vessel", + "5797": "pressure:outlet_valve:downstream_vessel", + "5798": "pressure:outlet_valve:downstream_vessel", + "5799": "pressure:outlet_valve:downstream_vessel", + "5800": "pressure:outlet_valve:downstream_vessel", + "5801": "pressure:outlet_valve:downstream_vessel", + "5802": "pressure:outlet_valve:downstream_vessel", + "5803": "pressure:outlet_valve:downstream_vessel", + "5804": "pressure:outlet_valve:downstream_vessel", + "5805": "pressure:outlet_valve:downstream_vessel", + "5806": "pressure:outlet_valve:downstream_vessel", + "5807": "pressure:outlet_valve:downstream_vessel", + "5808": "pressure:outlet_valve:downstream_vessel", + "5809": "pressure:outlet_valve:downstream_vessel", + "5810": "pressure:outlet_valve:downstream_vessel", + "5811": "pressure:outlet_valve:downstream_vessel", + "5812": "pressure:outlet_valve:downstream_vessel", + "5813": "pressure:outlet_valve:downstream_vessel", + "5814": "pressure:outlet_valve:downstream_vessel", + "5815": "pressure:outlet_valve:downstream_vessel", + "5816": "pressure:outlet_valve:downstream_vessel", + "5817": "pressure:outlet_valve:downstream_vessel", + "5818": "pressure:outlet_valve:downstream_vessel", + "5819": "pressure:outlet_valve:downstream_vessel", + "5820": "pressure:outlet_valve:downstream_vessel", + "5821": "pressure:outlet_valve:downstream_vessel", + "5822": "pressure:outlet_valve:downstream_vessel", + "5823": "pressure:outlet_valve:downstream_vessel", + "5824": "pressure:outlet_valve:downstream_vessel", + "5825": "pressure:outlet_valve:downstream_vessel", + "5826": "pressure:outlet_valve:downstream_vessel", + "5827": "pressure:outlet_valve:downstream_vessel", + "5828": "pressure:outlet_valve:downstream_vessel", + "5829": "pressure:outlet_valve:downstream_vessel", + "5830": "pressure:outlet_valve:downstream_vessel", + "5831": "pressure:outlet_valve:downstream_vessel", + "5832": "pressure:outlet_valve:downstream_vessel", + "5833": "pressure:outlet_valve:downstream_vessel", + "5834": "pressure:outlet_valve:downstream_vessel", + "5835": "pressure:outlet_valve:downstream_vessel", + "5836": "pressure:outlet_valve:downstream_vessel", + "5837": "pressure:outlet_valve:downstream_vessel", + "5838": "pressure:outlet_valve:downstream_vessel", + "5839": "pressure:outlet_valve:downstream_vessel", + "5840": "pressure:outlet_valve:downstream_vessel", + "5841": "pressure:outlet_valve:downstream_vessel", + "5842": "pressure:outlet_valve:downstream_vessel", + "5843": "pressure:outlet_valve:downstream_vessel", + "5844": "pressure:outlet_valve:downstream_vessel", + "5845": "pressure:outlet_valve:downstream_vessel", + "5846": "pressure:outlet_valve:downstream_vessel", + "5847": "pressure:outlet_valve:downstream_vessel", + "5848": "pressure:outlet_valve:downstream_vessel", + "5849": "pressure:outlet_valve:downstream_vessel", + "5850": "pressure:outlet_valve:downstream_vessel", + "5851": "pressure:outlet_valve:downstream_vessel", + "5852": "pressure:outlet_valve:downstream_vessel", + "5853": "pressure:outlet_valve:downstream_vessel", + "5854": "pressure:outlet_valve:downstream_vessel", + "5855": "pressure:outlet_valve:downstream_vessel", + "5856": "pressure:outlet_valve:downstream_vessel", + "5857": "pressure:outlet_valve:downstream_vessel", + "5858": "pressure:outlet_valve:downstream_vessel", + "5859": "pressure:outlet_valve:downstream_vessel", + "5860": "pressure:outlet_valve:downstream_vessel", + "5861": "pressure:outlet_valve:downstream_vessel", + "5862": "pressure:outlet_valve:downstream_vessel", + "5863": "pressure:outlet_valve:downstream_vessel", + "5864": "pressure:outlet_valve:downstream_vessel", + "5865": "pressure:outlet_valve:downstream_vessel", + "5866": "pressure:outlet_valve:downstream_vessel", + "5867": "pressure:outlet_valve:downstream_vessel", + "5868": "pressure:outlet_valve:downstream_vessel", + "5869": "pressure:outlet_valve:downstream_vessel", + "5870": "pressure:outlet_valve:downstream_vessel", + "5871": "pressure:outlet_valve:downstream_vessel", + "5872": "pressure:outlet_valve:downstream_vessel", + "5873": "pressure:outlet_valve:downstream_vessel", + "5874": "pressure:outlet_valve:downstream_vessel", + "5875": "pressure:outlet_valve:downstream_vessel", + "5876": "pressure:outlet_valve:downstream_vessel", + "5877": "pressure:outlet_valve:downstream_vessel", + "5878": "pressure:outlet_valve:downstream_vessel", + "5879": "pressure:outlet_valve:downstream_vessel", + "5880": "pressure:outlet_valve:downstream_vessel", + "5881": "pressure:outlet_valve:downstream_vessel", + "5882": "pressure:outlet_valve:downstream_vessel", + "5883": "pressure:outlet_valve:downstream_vessel", + "5884": "pressure:outlet_valve:downstream_vessel", + "5885": "pressure:outlet_valve:downstream_vessel", + "5886": "pressure:outlet_valve:downstream_vessel", + "5887": "pressure:outlet_valve:downstream_vessel", + "5888": "pressure:outlet_valve:downstream_vessel", + "5889": "pressure:outlet_valve:downstream_vessel", + "5890": "pressure:outlet_valve:downstream_vessel", + "5891": "pressure:outlet_valve:downstream_vessel", + "5892": "pressure:outlet_valve:downstream_vessel", + "5893": "pressure:outlet_valve:downstream_vessel", + "5894": "pressure:outlet_valve:downstream_vessel", + "5895": "pressure:outlet_valve:downstream_vessel", + "5896": "pressure:outlet_valve:downstream_vessel", + "5897": "pressure:outlet_valve:downstream_vessel", + "5898": "pressure:outlet_valve:downstream_vessel", + "5899": "pressure:outlet_valve:downstream_vessel", + "5900": "pressure:outlet_valve:downstream_vessel", + "5901": "pressure:outlet_valve:downstream_vessel", + "5902": "pressure:outlet_valve:downstream_vessel", + "5903": "pressure:outlet_valve:downstream_vessel", + "5904": "pressure:outlet_valve:downstream_vessel", + "5905": "pressure:outlet_valve:downstream_vessel", + "5906": "pressure:outlet_valve:downstream_vessel", + "5907": "pressure:outlet_valve:downstream_vessel", + "5908": "pressure:outlet_valve:downstream_vessel", + "5909": "pressure:outlet_valve:downstream_vessel", + "5910": "pressure:outlet_valve:downstream_vessel", + "5911": "pressure:outlet_valve:downstream_vessel", + "5912": "pressure:outlet_valve:downstream_vessel", + "5913": "pressure:outlet_valve:downstream_vessel", + "5914": "pressure:outlet_valve:downstream_vessel", + "5915": "pressure:outlet_valve:downstream_vessel", + "5916": "pressure:outlet_valve:downstream_vessel", + "5917": "pressure:outlet_valve:downstream_vessel", + "5918": "pressure:outlet_valve:downstream_vessel", + "5919": "pressure:outlet_valve:downstream_vessel", + "5920": "pressure:outlet_valve:downstream_vessel", + "5921": "pressure:outlet_valve:downstream_vessel", + "5922": "pressure:outlet_valve:downstream_vessel", + "5923": "pressure:outlet_valve:downstream_vessel", + "5924": "pressure:outlet_valve:downstream_vessel", + "5925": "pressure:outlet_valve:downstream_vessel", + "5926": "pressure:outlet_valve:downstream_vessel", + "5927": "pressure:outlet_valve:downstream_vessel", + "5928": "pressure:outlet_valve:downstream_vessel", + "5929": "pressure:outlet_valve:downstream_vessel", + "5930": "pressure:outlet_valve:downstream_vessel", + "5931": "pressure:outlet_valve:downstream_vessel", + "5932": "pressure:outlet_valve:downstream_vessel", + "5933": "pressure:outlet_valve:downstream_vessel", + "5934": "pressure:outlet_valve:downstream_vessel", + "5935": "pressure:outlet_valve:downstream_vessel", + "5936": "pressure:outlet_valve:downstream_vessel", + "5937": "pressure:outlet_valve:downstream_vessel", + "5938": "pressure:outlet_valve:downstream_vessel", + "5939": "pressure:outlet_valve:downstream_vessel", + "5940": "pressure:outlet_valve:downstream_vessel", + "5941": "pressure:outlet_valve:downstream_vessel", + "5942": "pressure:outlet_valve:downstream_vessel", + "5943": "pressure:outlet_valve:downstream_vessel", + "5944": "pressure:outlet_valve:downstream_vessel", + "5945": "pressure:outlet_valve:downstream_vessel", + "5946": "pressure:outlet_valve:downstream_vessel", + "5947": "pressure:outlet_valve:downstream_vessel", + "5948": "pressure:outlet_valve:downstream_vessel", + "5949": "pressure:outlet_valve:downstream_vessel", + "5950": "pressure:outlet_valve:downstream_vessel", + "5951": "pressure:outlet_valve:downstream_vessel", + "5952": "pressure:outlet_valve:downstream_vessel", + "5953": "pressure:outlet_valve:downstream_vessel", + "5954": "pressure:outlet_valve:downstream_vessel", + "5955": "pressure:outlet_valve:downstream_vessel", + "5956": "pressure:outlet_valve:downstream_vessel", + "5957": "pressure:outlet_valve:downstream_vessel", + "5958": "pressure:outlet_valve:downstream_vessel", + "5959": "pressure:outlet_valve:downstream_vessel", + "5960": "pressure:outlet_valve:downstream_vessel", + "5961": "pressure:outlet_valve:downstream_vessel", + "5962": "pressure:outlet_valve:downstream_vessel", + "5963": "pressure:outlet_valve:downstream_vessel", + "5964": "pressure:outlet_valve:downstream_vessel", + "5965": "pressure:outlet_valve:downstream_vessel", + "5966": "pressure:outlet_valve:downstream_vessel", + "5967": "pressure:outlet_valve:downstream_vessel", + "5968": "pressure:outlet_valve:downstream_vessel", + "5969": "pressure:outlet_valve:downstream_vessel", + "5970": "pressure:outlet_valve:downstream_vessel", + "5971": "pressure:outlet_valve:downstream_vessel", + "5972": "pressure:outlet_valve:downstream_vessel", + "5973": "pressure:outlet_valve:downstream_vessel", + "5974": "pressure:outlet_valve:downstream_vessel", + "5975": "pressure:outlet_valve:downstream_vessel", + "5976": "pressure:outlet_valve:downstream_vessel", + "5977": "pressure:outlet_valve:downstream_vessel", + "5978": "pressure:outlet_valve:downstream_vessel", + "5979": "pressure:outlet_valve:downstream_vessel", + "5980": "pressure:outlet_valve:downstream_vessel", + "5981": "pressure:outlet_valve:downstream_vessel", + "5982": "pressure:outlet_valve:downstream_vessel", + "5983": "pressure:outlet_valve:downstream_vessel", + "5984": "pressure:outlet_valve:downstream_vessel", + "5985": "pressure:outlet_valve:downstream_vessel", + "5986": "pressure:outlet_valve:downstream_vessel", + "5987": "pressure:outlet_valve:downstream_vessel", + "5988": "pressure:outlet_valve:downstream_vessel", + "5989": "pressure:outlet_valve:downstream_vessel", + "5990": "pressure:outlet_valve:downstream_vessel", + "5991": "pressure:outlet_valve:downstream_vessel", + "5992": "pressure:outlet_valve:downstream_vessel", + "5993": "pressure:outlet_valve:downstream_vessel", + "5994": "pressure:outlet_valve:downstream_vessel", + "5995": "pressure:outlet_valve:downstream_vessel", + "5996": "pressure:outlet_valve:downstream_vessel", + "5997": "pressure:outlet_valve:downstream_vessel", + "5998": "pressure:outlet_valve:downstream_vessel", + "5999": "pressure:outlet_valve:downstream_vessel", + "6000": "r:ventricle", + "6001": "r:ventricle", + "6002": "r:ventricle", + "6003": "r:ventricle", + "6004": "r:ventricle", + "6005": "r:ventricle", + "6006": "r:ventricle", + "6007": "r:ventricle", + "6008": "r:ventricle", + "6009": "r:ventricle", + "6010": "r:ventricle", + "6011": "r:ventricle", + "6012": "r:ventricle", + "6013": "r:ventricle", + "6014": "r:ventricle", + "6015": "r:ventricle", + "6016": "r:ventricle", + "6017": "r:ventricle", + "6018": "r:ventricle", + "6019": "r:ventricle", + "6020": "r:ventricle", + "6021": "r:ventricle", + "6022": "r:ventricle", + "6023": "r:ventricle", + "6024": "r:ventricle", + "6025": "r:ventricle", + "6026": "r:ventricle", + "6027": "r:ventricle", + "6028": "r:ventricle", + "6029": "r:ventricle", + "6030": "r:ventricle", + "6031": "r:ventricle", + "6032": "r:ventricle", + "6033": "r:ventricle", + "6034": "r:ventricle", + "6035": "r:ventricle", + "6036": "r:ventricle", + "6037": "r:ventricle", + "6038": "r:ventricle", + "6039": "r:ventricle", + "6040": "r:ventricle", + "6041": "r:ventricle", + "6042": "r:ventricle", + "6043": "r:ventricle", + "6044": "r:ventricle", + "6045": "r:ventricle", + "6046": "r:ventricle", + "6047": "r:ventricle", + "6048": "r:ventricle", + "6049": "r:ventricle", + "6050": "r:ventricle", + "6051": "r:ventricle", + "6052": "r:ventricle", + "6053": "r:ventricle", + "6054": "r:ventricle", + "6055": "r:ventricle", + "6056": "r:ventricle", + "6057": "r:ventricle", + "6058": "r:ventricle", + "6059": "r:ventricle", + "6060": "r:ventricle", + "6061": "r:ventricle", + "6062": "r:ventricle", + "6063": "r:ventricle", + "6064": "r:ventricle", + "6065": "r:ventricle", + "6066": "r:ventricle", + "6067": "r:ventricle", + "6068": "r:ventricle", + "6069": "r:ventricle", + "6070": "r:ventricle", + "6071": "r:ventricle", + "6072": "r:ventricle", + "6073": "r:ventricle", + "6074": "r:ventricle", + "6075": "r:ventricle", + "6076": "r:ventricle", + "6077": "r:ventricle", + "6078": "r:ventricle", + "6079": "r:ventricle", + "6080": "r:ventricle", + "6081": "r:ventricle", + "6082": "r:ventricle", + "6083": "r:ventricle", + "6084": "r:ventricle", + "6085": "r:ventricle", + "6086": "r:ventricle", + "6087": "r:ventricle", + "6088": "r:ventricle", + "6089": "r:ventricle", + "6090": "r:ventricle", + "6091": "r:ventricle", + "6092": "r:ventricle", + "6093": "r:ventricle", + "6094": "r:ventricle", + "6095": "r:ventricle", + "6096": "r:ventricle", + "6097": "r:ventricle", + "6098": "r:ventricle", + "6099": "r:ventricle", + "6100": "r:ventricle", + "6101": "r:ventricle", + "6102": "r:ventricle", + "6103": "r:ventricle", + "6104": "r:ventricle", + "6105": "r:ventricle", + "6106": "r:ventricle", + "6107": "r:ventricle", + "6108": "r:ventricle", + "6109": "r:ventricle", + "6110": "r:ventricle", + "6111": "r:ventricle", + "6112": "r:ventricle", + "6113": "r:ventricle", + "6114": "r:ventricle", + "6115": "r:ventricle", + "6116": "r:ventricle", + "6117": "r:ventricle", + "6118": "r:ventricle", + "6119": "r:ventricle", + "6120": "r:ventricle", + "6121": "r:ventricle", + "6122": "r:ventricle", + "6123": "r:ventricle", + "6124": "r:ventricle", + "6125": "r:ventricle", + "6126": "r:ventricle", + "6127": "r:ventricle", + "6128": "r:ventricle", + "6129": "r:ventricle", + "6130": "r:ventricle", + "6131": "r:ventricle", + "6132": "r:ventricle", + "6133": "r:ventricle", + "6134": "r:ventricle", + "6135": "r:ventricle", + "6136": "r:ventricle", + "6137": "r:ventricle", + "6138": "r:ventricle", + "6139": "r:ventricle", + "6140": "r:ventricle", + "6141": "r:ventricle", + "6142": "r:ventricle", + "6143": "r:ventricle", + "6144": "r:ventricle", + "6145": "r:ventricle", + "6146": "r:ventricle", + "6147": "r:ventricle", + "6148": "r:ventricle", + "6149": "r:ventricle", + "6150": "r:ventricle", + "6151": "r:ventricle", + "6152": "r:ventricle", + "6153": "r:ventricle", + "6154": "r:ventricle", + "6155": "r:ventricle", + "6156": "r:ventricle", + "6157": "r:ventricle", + "6158": "r:ventricle", + "6159": "r:ventricle", + "6160": "r:ventricle", + "6161": "r:ventricle", + "6162": "r:ventricle", + "6163": "r:ventricle", + "6164": "r:ventricle", + "6165": "r:ventricle", + "6166": "r:ventricle", + "6167": "r:ventricle", + "6168": "r:ventricle", + "6169": "r:ventricle", + "6170": "r:ventricle", + "6171": "r:ventricle", + "6172": "r:ventricle", + "6173": "r:ventricle", + "6174": "r:ventricle", + "6175": "r:ventricle", + "6176": "r:ventricle", + "6177": "r:ventricle", + "6178": "r:ventricle", + "6179": "r:ventricle", + "6180": "r:ventricle", + "6181": "r:ventricle", + "6182": "r:ventricle", + "6183": "r:ventricle", + "6184": "r:ventricle", + "6185": "r:ventricle", + "6186": "r:ventricle", + "6187": "r:ventricle", + "6188": "r:ventricle", + "6189": "r:ventricle", + "6190": "r:ventricle", + "6191": "r:ventricle", + "6192": "r:ventricle", + "6193": "r:ventricle", + "6194": "r:ventricle", + "6195": "r:ventricle", + "6196": "r:ventricle", + "6197": "r:ventricle", + "6198": "r:ventricle", + "6199": "r:ventricle", + "6200": "r:ventricle", + "6201": "r:ventricle", + "6202": "r:ventricle", + "6203": "r:ventricle", + "6204": "r:ventricle", + "6205": "r:ventricle", + "6206": "r:ventricle", + "6207": "r:ventricle", + "6208": "r:ventricle", + "6209": "r:ventricle", + "6210": "r:ventricle", + "6211": "r:ventricle", + "6212": "r:ventricle", + "6213": "r:ventricle", + "6214": "r:ventricle", + "6215": "r:ventricle", + "6216": "r:ventricle", + "6217": "r:ventricle", + "6218": "r:ventricle", + "6219": "r:ventricle", + "6220": "r:ventricle", + "6221": "r:ventricle", + "6222": "r:ventricle", + "6223": "r:ventricle", + "6224": "r:ventricle", + "6225": "r:ventricle", + "6226": "r:ventricle", + "6227": "r:ventricle", + "6228": "r:ventricle", + "6229": "r:ventricle", + "6230": "r:ventricle", + "6231": "r:ventricle", + "6232": "r:ventricle", + "6233": "r:ventricle", + "6234": "r:ventricle", + "6235": "r:ventricle", + "6236": "r:ventricle", + "6237": "r:ventricle", + "6238": "r:ventricle", + "6239": "r:ventricle", + "6240": "r:ventricle", + "6241": "r:ventricle", + "6242": "r:ventricle", + "6243": "r:ventricle", + "6244": "r:ventricle", + "6245": "r:ventricle", + "6246": "r:ventricle", + "6247": "r:ventricle", + "6248": "r:ventricle", + "6249": "r:ventricle", + "6250": "r:ventricle", + "6251": "r:ventricle", + "6252": "r:ventricle", + "6253": "r:ventricle", + "6254": "r:ventricle", + "6255": "r:ventricle", + "6256": "r:ventricle", + "6257": "r:ventricle", + "6258": "r:ventricle", + "6259": "r:ventricle", + "6260": "r:ventricle", + "6261": "r:ventricle", + "6262": "r:ventricle", + "6263": "r:ventricle", + "6264": "r:ventricle", + "6265": "r:ventricle", + "6266": "r:ventricle", + "6267": "r:ventricle", + "6268": "r:ventricle", + "6269": "r:ventricle", + "6270": "r:ventricle", + "6271": "r:ventricle", + "6272": "r:ventricle", + "6273": "r:ventricle", + "6274": "r:ventricle", + "6275": "r:ventricle", + "6276": "r:ventricle", + "6277": "r:ventricle", + "6278": "r:ventricle", + "6279": "r:ventricle", + "6280": "r:ventricle", + "6281": "r:ventricle", + "6282": "r:ventricle", + "6283": "r:ventricle", + "6284": "r:ventricle", + "6285": "r:ventricle", + "6286": "r:ventricle", + "6287": "r:ventricle", + "6288": "r:ventricle", + "6289": "r:ventricle", + "6290": "r:ventricle", + "6291": "r:ventricle", + "6292": "r:ventricle", + "6293": "r:ventricle", + "6294": "r:ventricle", + "6295": "r:ventricle", + "6296": "r:ventricle", + "6297": "r:ventricle", + "6298": "r:ventricle", + "6299": "r:ventricle", + "6300": "r:ventricle", + "6301": "r:ventricle", + "6302": "r:ventricle", + "6303": "r:ventricle", + "6304": "r:ventricle", + "6305": "r:ventricle", + "6306": "r:ventricle", + "6307": "r:ventricle", + "6308": "r:ventricle", + "6309": "r:ventricle", + "6310": "r:ventricle", + "6311": "r:ventricle", + "6312": "r:ventricle", + "6313": "r:ventricle", + "6314": "r:ventricle", + "6315": "r:ventricle", + "6316": "r:ventricle", + "6317": "r:ventricle", + "6318": "r:ventricle", + "6319": "r:ventricle", + "6320": "r:ventricle", + "6321": "r:ventricle", + "6322": "r:ventricle", + "6323": "r:ventricle", + "6324": "r:ventricle", + "6325": "r:ventricle", + "6326": "r:ventricle", + "6327": "r:ventricle", + "6328": "r:ventricle", + "6329": "r:ventricle", + "6330": "r:ventricle", + "6331": "r:ventricle", + "6332": "r:ventricle", + "6333": "r:ventricle", + "6334": "r:ventricle", + "6335": "r:ventricle", + "6336": "r:ventricle", + "6337": "r:ventricle", + "6338": "r:ventricle", + "6339": "r:ventricle", + "6340": "r:ventricle", + "6341": "r:ventricle", + "6342": "r:ventricle", + "6343": "r:ventricle", + "6344": "r:ventricle", + "6345": "r:ventricle", + "6346": "r:ventricle", + "6347": "r:ventricle", + "6348": "r:ventricle", + "6349": "r:ventricle", + "6350": "r:ventricle", + "6351": "r:ventricle", + "6352": "r:ventricle", + "6353": "r:ventricle", + "6354": "r:ventricle", + "6355": "r:ventricle", + "6356": "r:ventricle", + "6357": "r:ventricle", + "6358": "r:ventricle", + "6359": "r:ventricle", + "6360": "r:ventricle", + "6361": "r:ventricle", + "6362": "r:ventricle", + "6363": "r:ventricle", + "6364": "r:ventricle", + "6365": "r:ventricle", + "6366": "r:ventricle", + "6367": "r:ventricle", + "6368": "r:ventricle", + "6369": "r:ventricle", + "6370": "r:ventricle", + "6371": "r:ventricle", + "6372": "r:ventricle", + "6373": "r:ventricle", + "6374": "r:ventricle", + "6375": "r:ventricle", + "6376": "r:ventricle", + "6377": "r:ventricle", + "6378": "r:ventricle", + "6379": "r:ventricle", + "6380": "r:ventricle", + "6381": "r:ventricle", + "6382": "r:ventricle", + "6383": "r:ventricle", + "6384": "r:ventricle", + "6385": "r:ventricle", + "6386": "r:ventricle", + "6387": "r:ventricle", + "6388": "r:ventricle", + "6389": "r:ventricle", + "6390": "r:ventricle", + "6391": "r:ventricle", + "6392": "r:ventricle", + "6393": "r:ventricle", + "6394": "r:ventricle", + "6395": "r:ventricle", + "6396": "r:ventricle", + "6397": "r:ventricle", + "6398": "r:ventricle", + "6399": "r:ventricle", + "6400": "r:ventricle", + "6401": "r:ventricle", + "6402": "r:ventricle", + "6403": "r:ventricle", + "6404": "r:ventricle", + "6405": "r:ventricle", + "6406": "r:ventricle", + "6407": "r:ventricle", + "6408": "r:ventricle", + "6409": "r:ventricle", + "6410": "r:ventricle", + "6411": "r:ventricle", + "6412": "r:ventricle", + "6413": "r:ventricle", + "6414": "r:ventricle", + "6415": "r:ventricle", + "6416": "r:ventricle", + "6417": "r:ventricle", + "6418": "r:ventricle", + "6419": "r:ventricle", + "6420": "r:ventricle", + "6421": "r:ventricle", + "6422": "r:ventricle", + "6423": "r:ventricle", + "6424": "r:ventricle", + "6425": "r:ventricle", + "6426": "r:ventricle", + "6427": "r:ventricle", + "6428": "r:ventricle", + "6429": "r:ventricle", + "6430": "r:ventricle", + "6431": "r:ventricle", + "6432": "r:ventricle", + "6433": "r:ventricle", + "6434": "r:ventricle", + "6435": "r:ventricle", + "6436": "r:ventricle", + "6437": "r:ventricle", + "6438": "r:ventricle", + "6439": "r:ventricle", + "6440": "r:ventricle", + "6441": "r:ventricle", + "6442": "r:ventricle", + "6443": "r:ventricle", + "6444": "r:ventricle", + "6445": "r:ventricle", + "6446": "r:ventricle", + "6447": "r:ventricle", + "6448": "r:ventricle", + "6449": "r:ventricle", + "6450": "r:ventricle", + "6451": "r:ventricle", + "6452": "r:ventricle", + "6453": "r:ventricle", + "6454": "r:ventricle", + "6455": "r:ventricle", + "6456": "r:ventricle", + "6457": "r:ventricle", + "6458": "r:ventricle", + "6459": "r:ventricle", + "6460": "r:ventricle", + "6461": "r:ventricle", + "6462": "r:ventricle", + "6463": "r:ventricle", + "6464": "r:ventricle", + "6465": "r:ventricle", + "6466": "r:ventricle", + "6467": "r:ventricle", + "6468": "r:ventricle", + "6469": "r:ventricle", + "6470": "r:ventricle", + "6471": "r:ventricle", + "6472": "r:ventricle", + "6473": "r:ventricle", + "6474": "r:ventricle", + "6475": "r:ventricle", + "6476": "r:ventricle", + "6477": "r:ventricle", + "6478": "r:ventricle", + "6479": "r:ventricle", + "6480": "r:ventricle", + "6481": "r:ventricle", + "6482": "r:ventricle", + "6483": "r:ventricle", + "6484": "r:ventricle", + "6485": "r:ventricle", + "6486": "r:ventricle", + "6487": "r:ventricle", + "6488": "r:ventricle", + "6489": "r:ventricle", + "6490": "r:ventricle", + "6491": "r:ventricle", + "6492": "r:ventricle", + "6493": "r:ventricle", + "6494": "r:ventricle", + "6495": "r:ventricle", + "6496": "r:ventricle", + "6497": "r:ventricle", + "6498": "r:ventricle", + "6499": "r:ventricle", + "6500": "v:ventricle", + "6501": "v:ventricle", + "6502": "v:ventricle", + "6503": "v:ventricle", + "6504": "v:ventricle", + "6505": "v:ventricle", + "6506": "v:ventricle", + "6507": "v:ventricle", + "6508": "v:ventricle", + "6509": "v:ventricle", + "6510": "v:ventricle", + "6511": "v:ventricle", + "6512": "v:ventricle", + "6513": "v:ventricle", + "6514": "v:ventricle", + "6515": "v:ventricle", + "6516": "v:ventricle", + "6517": "v:ventricle", + "6518": "v:ventricle", + "6519": "v:ventricle", + "6520": "v:ventricle", + "6521": "v:ventricle", + "6522": "v:ventricle", + "6523": "v:ventricle", + "6524": "v:ventricle", + "6525": "v:ventricle", + "6526": "v:ventricle", + "6527": "v:ventricle", + "6528": "v:ventricle", + "6529": "v:ventricle", + "6530": "v:ventricle", + "6531": "v:ventricle", + "6532": "v:ventricle", + "6533": "v:ventricle", + "6534": "v:ventricle", + "6535": "v:ventricle", + "6536": "v:ventricle", + "6537": "v:ventricle", + "6538": "v:ventricle", + "6539": "v:ventricle", + "6540": "v:ventricle", + "6541": "v:ventricle", + "6542": "v:ventricle", + "6543": "v:ventricle", + "6544": "v:ventricle", + "6545": "v:ventricle", + "6546": "v:ventricle", + "6547": "v:ventricle", + "6548": "v:ventricle", + "6549": "v:ventricle", + "6550": "v:ventricle", + "6551": "v:ventricle", + "6552": "v:ventricle", + "6553": "v:ventricle", + "6554": "v:ventricle", + "6555": "v:ventricle", + "6556": "v:ventricle", + "6557": "v:ventricle", + "6558": "v:ventricle", + "6559": "v:ventricle", + "6560": "v:ventricle", + "6561": "v:ventricle", + "6562": "v:ventricle", + "6563": "v:ventricle", + "6564": "v:ventricle", + "6565": "v:ventricle", + "6566": "v:ventricle", + "6567": "v:ventricle", + "6568": "v:ventricle", + "6569": "v:ventricle", + "6570": "v:ventricle", + "6571": "v:ventricle", + "6572": "v:ventricle", + "6573": "v:ventricle", + "6574": "v:ventricle", + "6575": "v:ventricle", + "6576": "v:ventricle", + "6577": "v:ventricle", + "6578": "v:ventricle", + "6579": "v:ventricle", + "6580": "v:ventricle", + "6581": "v:ventricle", + "6582": "v:ventricle", + "6583": "v:ventricle", + "6584": "v:ventricle", + "6585": "v:ventricle", + "6586": "v:ventricle", + "6587": "v:ventricle", + "6588": "v:ventricle", + "6589": "v:ventricle", + "6590": "v:ventricle", + "6591": "v:ventricle", + "6592": "v:ventricle", + "6593": "v:ventricle", + "6594": "v:ventricle", + "6595": "v:ventricle", + "6596": "v:ventricle", + "6597": "v:ventricle", + "6598": "v:ventricle", + "6599": "v:ventricle", + "6600": "v:ventricle", + "6601": "v:ventricle", + "6602": "v:ventricle", + "6603": "v:ventricle", + "6604": "v:ventricle", + "6605": "v:ventricle", + "6606": "v:ventricle", + "6607": "v:ventricle", + "6608": "v:ventricle", + "6609": "v:ventricle", + "6610": "v:ventricle", + "6611": "v:ventricle", + "6612": "v:ventricle", + "6613": "v:ventricle", + "6614": "v:ventricle", + "6615": "v:ventricle", + "6616": "v:ventricle", + "6617": "v:ventricle", + "6618": "v:ventricle", + "6619": "v:ventricle", + "6620": "v:ventricle", + "6621": "v:ventricle", + "6622": "v:ventricle", + "6623": "v:ventricle", + "6624": "v:ventricle", + "6625": "v:ventricle", + "6626": "v:ventricle", + "6627": "v:ventricle", + "6628": "v:ventricle", + "6629": "v:ventricle", + "6630": "v:ventricle", + "6631": "v:ventricle", + "6632": "v:ventricle", + "6633": "v:ventricle", + "6634": "v:ventricle", + "6635": "v:ventricle", + "6636": "v:ventricle", + "6637": "v:ventricle", + "6638": "v:ventricle", + "6639": "v:ventricle", + "6640": "v:ventricle", + "6641": "v:ventricle", + "6642": "v:ventricle", + "6643": "v:ventricle", + "6644": "v:ventricle", + "6645": "v:ventricle", + "6646": "v:ventricle", + "6647": "v:ventricle", + "6648": "v:ventricle", + "6649": "v:ventricle", + "6650": "v:ventricle", + "6651": "v:ventricle", + "6652": "v:ventricle", + "6653": "v:ventricle", + "6654": "v:ventricle", + "6655": "v:ventricle", + "6656": "v:ventricle", + "6657": "v:ventricle", + "6658": "v:ventricle", + "6659": "v:ventricle", + "6660": "v:ventricle", + "6661": "v:ventricle", + "6662": "v:ventricle", + "6663": "v:ventricle", + "6664": "v:ventricle", + "6665": "v:ventricle", + "6666": "v:ventricle", + "6667": "v:ventricle", + "6668": "v:ventricle", + "6669": "v:ventricle", + "6670": "v:ventricle", + "6671": "v:ventricle", + "6672": "v:ventricle", + "6673": "v:ventricle", + "6674": "v:ventricle", + "6675": "v:ventricle", + "6676": "v:ventricle", + "6677": "v:ventricle", + "6678": "v:ventricle", + "6679": "v:ventricle", + "6680": "v:ventricle", + "6681": "v:ventricle", + "6682": "v:ventricle", + "6683": "v:ventricle", + "6684": "v:ventricle", + "6685": "v:ventricle", + "6686": "v:ventricle", + "6687": "v:ventricle", + "6688": "v:ventricle", + "6689": "v:ventricle", + "6690": "v:ventricle", + "6691": "v:ventricle", + "6692": "v:ventricle", + "6693": "v:ventricle", + "6694": "v:ventricle", + "6695": "v:ventricle", + "6696": "v:ventricle", + "6697": "v:ventricle", + "6698": "v:ventricle", + "6699": "v:ventricle", + "6700": "v:ventricle", + "6701": "v:ventricle", + "6702": "v:ventricle", + "6703": "v:ventricle", + "6704": "v:ventricle", + "6705": "v:ventricle", + "6706": "v:ventricle", + "6707": "v:ventricle", + "6708": "v:ventricle", + "6709": "v:ventricle", + "6710": "v:ventricle", + "6711": "v:ventricle", + "6712": "v:ventricle", + "6713": "v:ventricle", + "6714": "v:ventricle", + "6715": "v:ventricle", + "6716": "v:ventricle", + "6717": "v:ventricle", + "6718": "v:ventricle", + "6719": "v:ventricle", + "6720": "v:ventricle", + "6721": "v:ventricle", + "6722": "v:ventricle", + "6723": "v:ventricle", + "6724": "v:ventricle", + "6725": "v:ventricle", + "6726": "v:ventricle", + "6727": "v:ventricle", + "6728": "v:ventricle", + "6729": "v:ventricle", + "6730": "v:ventricle", + "6731": "v:ventricle", + "6732": "v:ventricle", + "6733": "v:ventricle", + "6734": "v:ventricle", + "6735": "v:ventricle", + "6736": "v:ventricle", + "6737": "v:ventricle", + "6738": "v:ventricle", + "6739": "v:ventricle", + "6740": "v:ventricle", + "6741": "v:ventricle", + "6742": "v:ventricle", + "6743": "v:ventricle", + "6744": "v:ventricle", + "6745": "v:ventricle", + "6746": "v:ventricle", + "6747": "v:ventricle", + "6748": "v:ventricle", + "6749": "v:ventricle", + "6750": "v:ventricle", + "6751": "v:ventricle", + "6752": "v:ventricle", + "6753": "v:ventricle", + "6754": "v:ventricle", + "6755": "v:ventricle", + "6756": "v:ventricle", + "6757": "v:ventricle", + "6758": "v:ventricle", + "6759": "v:ventricle", + "6760": "v:ventricle", + "6761": "v:ventricle", + "6762": "v:ventricle", + "6763": "v:ventricle", + "6764": "v:ventricle", + "6765": "v:ventricle", + "6766": "v:ventricle", + "6767": "v:ventricle", + "6768": "v:ventricle", + "6769": "v:ventricle", + "6770": "v:ventricle", + "6771": "v:ventricle", + "6772": "v:ventricle", + "6773": "v:ventricle", + "6774": "v:ventricle", + "6775": "v:ventricle", + "6776": "v:ventricle", + "6777": "v:ventricle", + "6778": "v:ventricle", + "6779": "v:ventricle", + "6780": "v:ventricle", + "6781": "v:ventricle", + "6782": "v:ventricle", + "6783": "v:ventricle", + "6784": "v:ventricle", + "6785": "v:ventricle", + "6786": "v:ventricle", + "6787": "v:ventricle", + "6788": "v:ventricle", + "6789": "v:ventricle", + "6790": "v:ventricle", + "6791": "v:ventricle", + "6792": "v:ventricle", + "6793": "v:ventricle", + "6794": "v:ventricle", + "6795": "v:ventricle", + "6796": "v:ventricle", + "6797": "v:ventricle", + "6798": "v:ventricle", + "6799": "v:ventricle", + "6800": "v:ventricle", + "6801": "v:ventricle", + "6802": "v:ventricle", + "6803": "v:ventricle", + "6804": "v:ventricle", + "6805": "v:ventricle", + "6806": "v:ventricle", + "6807": "v:ventricle", + "6808": "v:ventricle", + "6809": "v:ventricle", + "6810": "v:ventricle", + "6811": "v:ventricle", + "6812": "v:ventricle", + "6813": "v:ventricle", + "6814": "v:ventricle", + "6815": "v:ventricle", + "6816": "v:ventricle", + "6817": "v:ventricle", + "6818": "v:ventricle", + "6819": "v:ventricle", + "6820": "v:ventricle", + "6821": "v:ventricle", + "6822": "v:ventricle", + "6823": "v:ventricle", + "6824": "v:ventricle", + "6825": "v:ventricle", + "6826": "v:ventricle", + "6827": "v:ventricle", + "6828": "v:ventricle", + "6829": "v:ventricle", + "6830": "v:ventricle", + "6831": "v:ventricle", + "6832": "v:ventricle", + "6833": "v:ventricle", + "6834": "v:ventricle", + "6835": "v:ventricle", + "6836": "v:ventricle", + "6837": "v:ventricle", + "6838": "v:ventricle", + "6839": "v:ventricle", + "6840": "v:ventricle", + "6841": "v:ventricle", + "6842": "v:ventricle", + "6843": "v:ventricle", + "6844": "v:ventricle", + "6845": "v:ventricle", + "6846": "v:ventricle", + "6847": "v:ventricle", + "6848": "v:ventricle", + "6849": "v:ventricle", + "6850": "v:ventricle", + "6851": "v:ventricle", + "6852": "v:ventricle", + "6853": "v:ventricle", + "6854": "v:ventricle", + "6855": "v:ventricle", + "6856": "v:ventricle", + "6857": "v:ventricle", + "6858": "v:ventricle", + "6859": "v:ventricle", + "6860": "v:ventricle", + "6861": "v:ventricle", + "6862": "v:ventricle", + "6863": "v:ventricle", + "6864": "v:ventricle", + "6865": "v:ventricle", + "6866": "v:ventricle", + "6867": "v:ventricle", + "6868": "v:ventricle", + "6869": "v:ventricle", + "6870": "v:ventricle", + "6871": "v:ventricle", + "6872": "v:ventricle", + "6873": "v:ventricle", + "6874": "v:ventricle", + "6875": "v:ventricle", + "6876": "v:ventricle", + "6877": "v:ventricle", + "6878": "v:ventricle", + "6879": "v:ventricle", + "6880": "v:ventricle", + "6881": "v:ventricle", + "6882": "v:ventricle", + "6883": "v:ventricle", + "6884": "v:ventricle", + "6885": "v:ventricle", + "6886": "v:ventricle", + "6887": "v:ventricle", + "6888": "v:ventricle", + "6889": "v:ventricle", + "6890": "v:ventricle", + "6891": "v:ventricle", + "6892": "v:ventricle", + "6893": "v:ventricle", + "6894": "v:ventricle", + "6895": "v:ventricle", + "6896": "v:ventricle", + "6897": "v:ventricle", + "6898": "v:ventricle", + "6899": "v:ventricle", + "6900": "v:ventricle", + "6901": "v:ventricle", + "6902": "v:ventricle", + "6903": "v:ventricle", + "6904": "v:ventricle", + "6905": "v:ventricle", + "6906": "v:ventricle", + "6907": "v:ventricle", + "6908": "v:ventricle", + "6909": "v:ventricle", + "6910": "v:ventricle", + "6911": "v:ventricle", + "6912": "v:ventricle", + "6913": "v:ventricle", + "6914": "v:ventricle", + "6915": "v:ventricle", + "6916": "v:ventricle", + "6917": "v:ventricle", + "6918": "v:ventricle", + "6919": "v:ventricle", + "6920": "v:ventricle", + "6921": "v:ventricle", + "6922": "v:ventricle", + "6923": "v:ventricle", + "6924": "v:ventricle", + "6925": "v:ventricle", + "6926": "v:ventricle", + "6927": "v:ventricle", + "6928": "v:ventricle", + "6929": "v:ventricle", + "6930": "v:ventricle", + "6931": "v:ventricle", + "6932": "v:ventricle", + "6933": "v:ventricle", + "6934": "v:ventricle", + "6935": "v:ventricle", + "6936": "v:ventricle", + "6937": "v:ventricle", + "6938": "v:ventricle", + "6939": "v:ventricle", + "6940": "v:ventricle", + "6941": "v:ventricle", + "6942": "v:ventricle", + "6943": "v:ventricle", + "6944": "v:ventricle", + "6945": "v:ventricle", + "6946": "v:ventricle", + "6947": "v:ventricle", + "6948": "v:ventricle", + "6949": "v:ventricle", + "6950": "v:ventricle", + "6951": "v:ventricle", + "6952": "v:ventricle", + "6953": "v:ventricle", + "6954": "v:ventricle", + "6955": "v:ventricle", + "6956": "v:ventricle", + "6957": "v:ventricle", + "6958": "v:ventricle", + "6959": "v:ventricle", + "6960": "v:ventricle", + "6961": "v:ventricle", + "6962": "v:ventricle", + "6963": "v:ventricle", + "6964": "v:ventricle", + "6965": "v:ventricle", + "6966": "v:ventricle", + "6967": "v:ventricle", + "6968": "v:ventricle", + "6969": "v:ventricle", + "6970": "v:ventricle", + "6971": "v:ventricle", + "6972": "v:ventricle", + "6973": "v:ventricle", + "6974": "v:ventricle", + "6975": "v:ventricle", + "6976": "v:ventricle", + "6977": "v:ventricle", + "6978": "v:ventricle", + "6979": "v:ventricle", + "6980": "v:ventricle", + "6981": "v:ventricle", + "6982": "v:ventricle", + "6983": "v:ventricle", + "6984": "v:ventricle", + "6985": "v:ventricle", + "6986": "v:ventricle", + "6987": "v:ventricle", + "6988": "v:ventricle", + "6989": "v:ventricle", + "6990": "v:ventricle", + "6991": "v:ventricle", + "6992": "v:ventricle", + "6993": "v:ventricle", + "6994": "v:ventricle", + "6995": "v:ventricle", + "6996": "v:ventricle", + "6997": "v:ventricle", + "6998": "v:ventricle", + "6999": "v:ventricle", + "7000": "S:ventricle", + "7001": "S:ventricle", + "7002": "S:ventricle", + "7003": "S:ventricle", + "7004": "S:ventricle", + "7005": "S:ventricle", + "7006": "S:ventricle", + "7007": "S:ventricle", + "7008": "S:ventricle", + "7009": "S:ventricle", + "7010": "S:ventricle", + "7011": "S:ventricle", + "7012": "S:ventricle", + "7013": "S:ventricle", + "7014": "S:ventricle", + "7015": "S:ventricle", + "7016": "S:ventricle", + "7017": "S:ventricle", + "7018": "S:ventricle", + "7019": "S:ventricle", + "7020": "S:ventricle", + "7021": "S:ventricle", + "7022": "S:ventricle", + "7023": "S:ventricle", + "7024": "S:ventricle", + "7025": "S:ventricle", + "7026": "S:ventricle", + "7027": "S:ventricle", + "7028": "S:ventricle", + "7029": "S:ventricle", + "7030": "S:ventricle", + "7031": "S:ventricle", + "7032": "S:ventricle", + "7033": "S:ventricle", + "7034": "S:ventricle", + "7035": "S:ventricle", + "7036": "S:ventricle", + "7037": "S:ventricle", + "7038": "S:ventricle", + "7039": "S:ventricle", + "7040": "S:ventricle", + "7041": "S:ventricle", + "7042": "S:ventricle", + "7043": "S:ventricle", + "7044": "S:ventricle", + "7045": "S:ventricle", + "7046": "S:ventricle", + "7047": "S:ventricle", + "7048": "S:ventricle", + "7049": "S:ventricle", + "7050": "S:ventricle", + "7051": "S:ventricle", + "7052": "S:ventricle", + "7053": "S:ventricle", + "7054": "S:ventricle", + "7055": "S:ventricle", + "7056": "S:ventricle", + "7057": "S:ventricle", + "7058": "S:ventricle", + "7059": "S:ventricle", + "7060": "S:ventricle", + "7061": "S:ventricle", + "7062": "S:ventricle", + "7063": "S:ventricle", + "7064": "S:ventricle", + "7065": "S:ventricle", + "7066": "S:ventricle", + "7067": "S:ventricle", + "7068": "S:ventricle", + "7069": "S:ventricle", + "7070": "S:ventricle", + "7071": "S:ventricle", + "7072": "S:ventricle", + "7073": "S:ventricle", + "7074": "S:ventricle", + "7075": "S:ventricle", + "7076": "S:ventricle", + "7077": "S:ventricle", + "7078": "S:ventricle", + "7079": "S:ventricle", + "7080": "S:ventricle", + "7081": "S:ventricle", + "7082": "S:ventricle", + "7083": "S:ventricle", + "7084": "S:ventricle", + "7085": "S:ventricle", + "7086": "S:ventricle", + "7087": "S:ventricle", + "7088": "S:ventricle", + "7089": "S:ventricle", + "7090": "S:ventricle", + "7091": "S:ventricle", + "7092": "S:ventricle", + "7093": "S:ventricle", + "7094": "S:ventricle", + "7095": "S:ventricle", + "7096": "S:ventricle", + "7097": "S:ventricle", + "7098": "S:ventricle", + "7099": "S:ventricle", + "7100": "S:ventricle", + "7101": "S:ventricle", + "7102": "S:ventricle", + "7103": "S:ventricle", + "7104": "S:ventricle", + "7105": "S:ventricle", + "7106": "S:ventricle", + "7107": "S:ventricle", + "7108": "S:ventricle", + "7109": "S:ventricle", + "7110": "S:ventricle", + "7111": "S:ventricle", + "7112": "S:ventricle", + "7113": "S:ventricle", + "7114": "S:ventricle", + "7115": "S:ventricle", + "7116": "S:ventricle", + "7117": "S:ventricle", + "7118": "S:ventricle", + "7119": "S:ventricle", + "7120": "S:ventricle", + "7121": "S:ventricle", + "7122": "S:ventricle", + "7123": "S:ventricle", + "7124": "S:ventricle", + "7125": "S:ventricle", + "7126": "S:ventricle", + "7127": "S:ventricle", + "7128": "S:ventricle", + "7129": "S:ventricle", + "7130": "S:ventricle", + "7131": "S:ventricle", + "7132": "S:ventricle", + "7133": "S:ventricle", + "7134": "S:ventricle", + "7135": "S:ventricle", + "7136": "S:ventricle", + "7137": "S:ventricle", + "7138": "S:ventricle", + "7139": "S:ventricle", + "7140": "S:ventricle", + "7141": "S:ventricle", + "7142": "S:ventricle", + "7143": "S:ventricle", + "7144": "S:ventricle", + "7145": "S:ventricle", + "7146": "S:ventricle", + "7147": "S:ventricle", + "7148": "S:ventricle", + "7149": "S:ventricle", + "7150": "S:ventricle", + "7151": "S:ventricle", + "7152": "S:ventricle", + "7153": "S:ventricle", + "7154": "S:ventricle", + "7155": "S:ventricle", + "7156": "S:ventricle", + "7157": "S:ventricle", + "7158": "S:ventricle", + "7159": "S:ventricle", + "7160": "S:ventricle", + "7161": "S:ventricle", + "7162": "S:ventricle", + "7163": "S:ventricle", + "7164": "S:ventricle", + "7165": "S:ventricle", + "7166": "S:ventricle", + "7167": "S:ventricle", + "7168": "S:ventricle", + "7169": "S:ventricle", + "7170": "S:ventricle", + "7171": "S:ventricle", + "7172": "S:ventricle", + "7173": "S:ventricle", + "7174": "S:ventricle", + "7175": "S:ventricle", + "7176": "S:ventricle", + "7177": "S:ventricle", + "7178": "S:ventricle", + "7179": "S:ventricle", + "7180": "S:ventricle", + "7181": "S:ventricle", + "7182": "S:ventricle", + "7183": "S:ventricle", + "7184": "S:ventricle", + "7185": "S:ventricle", + "7186": "S:ventricle", + "7187": "S:ventricle", + "7188": "S:ventricle", + "7189": "S:ventricle", + "7190": "S:ventricle", + "7191": "S:ventricle", + "7192": "S:ventricle", + "7193": "S:ventricle", + "7194": "S:ventricle", + "7195": "S:ventricle", + "7196": "S:ventricle", + "7197": "S:ventricle", + "7198": "S:ventricle", + "7199": "S:ventricle", + "7200": "S:ventricle", + "7201": "S:ventricle", + "7202": "S:ventricle", + "7203": "S:ventricle", + "7204": "S:ventricle", + "7205": "S:ventricle", + "7206": "S:ventricle", + "7207": "S:ventricle", + "7208": "S:ventricle", + "7209": "S:ventricle", + "7210": "S:ventricle", + "7211": "S:ventricle", + "7212": "S:ventricle", + "7213": "S:ventricle", + "7214": "S:ventricle", + "7215": "S:ventricle", + "7216": "S:ventricle", + "7217": "S:ventricle", + "7218": "S:ventricle", + "7219": "S:ventricle", + "7220": "S:ventricle", + "7221": "S:ventricle", + "7222": "S:ventricle", + "7223": "S:ventricle", + "7224": "S:ventricle", + "7225": "S:ventricle", + "7226": "S:ventricle", + "7227": "S:ventricle", + "7228": "S:ventricle", + "7229": "S:ventricle", + "7230": "S:ventricle", + "7231": "S:ventricle", + "7232": "S:ventricle", + "7233": "S:ventricle", + "7234": "S:ventricle", + "7235": "S:ventricle", + "7236": "S:ventricle", + "7237": "S:ventricle", + "7238": "S:ventricle", + "7239": "S:ventricle", + "7240": "S:ventricle", + "7241": "S:ventricle", + "7242": "S:ventricle", + "7243": "S:ventricle", + "7244": "S:ventricle", + "7245": "S:ventricle", + "7246": "S:ventricle", + "7247": "S:ventricle", + "7248": "S:ventricle", + "7249": "S:ventricle", + "7250": "S:ventricle", + "7251": "S:ventricle", + "7252": "S:ventricle", + "7253": "S:ventricle", + "7254": "S:ventricle", + "7255": "S:ventricle", + "7256": "S:ventricle", + "7257": "S:ventricle", + "7258": "S:ventricle", + "7259": "S:ventricle", + "7260": "S:ventricle", + "7261": "S:ventricle", + "7262": "S:ventricle", + "7263": "S:ventricle", + "7264": "S:ventricle", + "7265": "S:ventricle", + "7266": "S:ventricle", + "7267": "S:ventricle", + "7268": "S:ventricle", + "7269": "S:ventricle", + "7270": "S:ventricle", + "7271": "S:ventricle", + "7272": "S:ventricle", + "7273": "S:ventricle", + "7274": "S:ventricle", + "7275": "S:ventricle", + "7276": "S:ventricle", + "7277": "S:ventricle", + "7278": "S:ventricle", + "7279": "S:ventricle", + "7280": "S:ventricle", + "7281": "S:ventricle", + "7282": "S:ventricle", + "7283": "S:ventricle", + "7284": "S:ventricle", + "7285": "S:ventricle", + "7286": "S:ventricle", + "7287": "S:ventricle", + "7288": "S:ventricle", + "7289": "S:ventricle", + "7290": "S:ventricle", + "7291": "S:ventricle", + "7292": "S:ventricle", + "7293": "S:ventricle", + "7294": "S:ventricle", + "7295": "S:ventricle", + "7296": "S:ventricle", + "7297": "S:ventricle", + "7298": "S:ventricle", + "7299": "S:ventricle", + "7300": "S:ventricle", + "7301": "S:ventricle", + "7302": "S:ventricle", + "7303": "S:ventricle", + "7304": "S:ventricle", + "7305": "S:ventricle", + "7306": "S:ventricle", + "7307": "S:ventricle", + "7308": "S:ventricle", + "7309": "S:ventricle", + "7310": "S:ventricle", + "7311": "S:ventricle", + "7312": "S:ventricle", + "7313": "S:ventricle", + "7314": "S:ventricle", + "7315": "S:ventricle", + "7316": "S:ventricle", + "7317": "S:ventricle", + "7318": "S:ventricle", + "7319": "S:ventricle", + "7320": "S:ventricle", + "7321": "S:ventricle", + "7322": "S:ventricle", + "7323": "S:ventricle", + "7324": "S:ventricle", + "7325": "S:ventricle", + "7326": "S:ventricle", + "7327": "S:ventricle", + "7328": "S:ventricle", + "7329": "S:ventricle", + "7330": "S:ventricle", + "7331": "S:ventricle", + "7332": "S:ventricle", + "7333": "S:ventricle", + "7334": "S:ventricle", + "7335": "S:ventricle", + "7336": "S:ventricle", + "7337": "S:ventricle", + "7338": "S:ventricle", + "7339": "S:ventricle", + "7340": "S:ventricle", + "7341": "S:ventricle", + "7342": "S:ventricle", + "7343": "S:ventricle", + "7344": "S:ventricle", + "7345": "S:ventricle", + "7346": "S:ventricle", + "7347": "S:ventricle", + "7348": "S:ventricle", + "7349": "S:ventricle", + "7350": "S:ventricle", + "7351": "S:ventricle", + "7352": "S:ventricle", + "7353": "S:ventricle", + "7354": "S:ventricle", + "7355": "S:ventricle", + "7356": "S:ventricle", + "7357": "S:ventricle", + "7358": "S:ventricle", + "7359": "S:ventricle", + "7360": "S:ventricle", + "7361": "S:ventricle", + "7362": "S:ventricle", + "7363": "S:ventricle", + "7364": "S:ventricle", + "7365": "S:ventricle", + "7366": "S:ventricle", + "7367": "S:ventricle", + "7368": "S:ventricle", + "7369": "S:ventricle", + "7370": "S:ventricle", + "7371": "S:ventricle", + "7372": "S:ventricle", + "7373": "S:ventricle", + "7374": "S:ventricle", + "7375": "S:ventricle", + "7376": "S:ventricle", + "7377": "S:ventricle", + "7378": "S:ventricle", + "7379": "S:ventricle", + "7380": "S:ventricle", + "7381": "S:ventricle", + "7382": "S:ventricle", + "7383": "S:ventricle", + "7384": "S:ventricle", + "7385": "S:ventricle", + "7386": "S:ventricle", + "7387": "S:ventricle", + "7388": "S:ventricle", + "7389": "S:ventricle", + "7390": "S:ventricle", + "7391": "S:ventricle", + "7392": "S:ventricle", + "7393": "S:ventricle", + "7394": "S:ventricle", + "7395": "S:ventricle", + "7396": "S:ventricle", + "7397": "S:ventricle", + "7398": "S:ventricle", + "7399": "S:ventricle", + "7400": "S:ventricle", + "7401": "S:ventricle", + "7402": "S:ventricle", + "7403": "S:ventricle", + "7404": "S:ventricle", + "7405": "S:ventricle", + "7406": "S:ventricle", + "7407": "S:ventricle", + "7408": "S:ventricle", + "7409": "S:ventricle", + "7410": "S:ventricle", + "7411": "S:ventricle", + "7412": "S:ventricle", + "7413": "S:ventricle", + "7414": "S:ventricle", + "7415": "S:ventricle", + "7416": "S:ventricle", + "7417": "S:ventricle", + "7418": "S:ventricle", + "7419": "S:ventricle", + "7420": "S:ventricle", + "7421": "S:ventricle", + "7422": "S:ventricle", + "7423": "S:ventricle", + "7424": "S:ventricle", + "7425": "S:ventricle", + "7426": "S:ventricle", + "7427": "S:ventricle", + "7428": "S:ventricle", + "7429": "S:ventricle", + "7430": "S:ventricle", + "7431": "S:ventricle", + "7432": "S:ventricle", + "7433": "S:ventricle", + "7434": "S:ventricle", + "7435": "S:ventricle", + "7436": "S:ventricle", + "7437": "S:ventricle", + "7438": "S:ventricle", + "7439": "S:ventricle", + "7440": "S:ventricle", + "7441": "S:ventricle", + "7442": "S:ventricle", + "7443": "S:ventricle", + "7444": "S:ventricle", + "7445": "S:ventricle", + "7446": "S:ventricle", + "7447": "S:ventricle", + "7448": "S:ventricle", + "7449": "S:ventricle", + "7450": "S:ventricle", + "7451": "S:ventricle", + "7452": "S:ventricle", + "7453": "S:ventricle", + "7454": "S:ventricle", + "7455": "S:ventricle", + "7456": "S:ventricle", + "7457": "S:ventricle", + "7458": "S:ventricle", + "7459": "S:ventricle", + "7460": "S:ventricle", + "7461": "S:ventricle", + "7462": "S:ventricle", + "7463": "S:ventricle", + "7464": "S:ventricle", + "7465": "S:ventricle", + "7466": "S:ventricle", + "7467": "S:ventricle", + "7468": "S:ventricle", + "7469": "S:ventricle", + "7470": "S:ventricle", + "7471": "S:ventricle", + "7472": "S:ventricle", + "7473": "S:ventricle", + "7474": "S:ventricle", + "7475": "S:ventricle", + "7476": "S:ventricle", + "7477": "S:ventricle", + "7478": "S:ventricle", + "7479": "S:ventricle", + "7480": "S:ventricle", + "7481": "S:ventricle", + "7482": "S:ventricle", + "7483": "S:ventricle", + "7484": "S:ventricle", + "7485": "S:ventricle", + "7486": "S:ventricle", + "7487": "S:ventricle", + "7488": "S:ventricle", + "7489": "S:ventricle", + "7490": "S:ventricle", + "7491": "S:ventricle", + "7492": "S:ventricle", + "7493": "S:ventricle", + "7494": "S:ventricle", + "7495": "S:ventricle", + "7496": "S:ventricle", + "7497": "S:ventricle", + "7498": "S:ventricle", + "7499": "S:ventricle", + "7500": "tau:ventricle", + "7501": "tau:ventricle", + "7502": "tau:ventricle", + "7503": "tau:ventricle", + "7504": "tau:ventricle", + "7505": "tau:ventricle", + "7506": "tau:ventricle", + "7507": "tau:ventricle", + "7508": "tau:ventricle", + "7509": "tau:ventricle", + "7510": "tau:ventricle", + "7511": "tau:ventricle", + "7512": "tau:ventricle", + "7513": "tau:ventricle", + "7514": "tau:ventricle", + "7515": "tau:ventricle", + "7516": "tau:ventricle", + "7517": "tau:ventricle", + "7518": "tau:ventricle", + "7519": "tau:ventricle", + "7520": "tau:ventricle", + "7521": "tau:ventricle", + "7522": "tau:ventricle", + "7523": "tau:ventricle", + "7524": "tau:ventricle", + "7525": "tau:ventricle", + "7526": "tau:ventricle", + "7527": "tau:ventricle", + "7528": "tau:ventricle", + "7529": "tau:ventricle", + "7530": "tau:ventricle", + "7531": "tau:ventricle", + "7532": "tau:ventricle", + "7533": "tau:ventricle", + "7534": "tau:ventricle", + "7535": "tau:ventricle", + "7536": "tau:ventricle", + "7537": "tau:ventricle", + "7538": "tau:ventricle", + "7539": "tau:ventricle", + "7540": "tau:ventricle", + "7541": "tau:ventricle", + "7542": "tau:ventricle", + "7543": "tau:ventricle", + "7544": "tau:ventricle", + "7545": "tau:ventricle", + "7546": "tau:ventricle", + "7547": "tau:ventricle", + "7548": "tau:ventricle", + "7549": "tau:ventricle", + "7550": "tau:ventricle", + "7551": "tau:ventricle", + "7552": "tau:ventricle", + "7553": "tau:ventricle", + "7554": "tau:ventricle", + "7555": "tau:ventricle", + "7556": "tau:ventricle", + "7557": "tau:ventricle", + "7558": "tau:ventricle", + "7559": "tau:ventricle", + "7560": "tau:ventricle", + "7561": "tau:ventricle", + "7562": "tau:ventricle", + "7563": "tau:ventricle", + "7564": "tau:ventricle", + "7565": "tau:ventricle", + "7566": "tau:ventricle", + "7567": "tau:ventricle", + "7568": "tau:ventricle", + "7569": "tau:ventricle", + "7570": "tau:ventricle", + "7571": "tau:ventricle", + "7572": "tau:ventricle", + "7573": "tau:ventricle", + "7574": "tau:ventricle", + "7575": "tau:ventricle", + "7576": "tau:ventricle", + "7577": "tau:ventricle", + "7578": "tau:ventricle", + "7579": "tau:ventricle", + "7580": "tau:ventricle", + "7581": "tau:ventricle", + "7582": "tau:ventricle", + "7583": "tau:ventricle", + "7584": "tau:ventricle", + "7585": "tau:ventricle", + "7586": "tau:ventricle", + "7587": "tau:ventricle", + "7588": "tau:ventricle", + "7589": "tau:ventricle", + "7590": "tau:ventricle", + "7591": "tau:ventricle", + "7592": "tau:ventricle", + "7593": "tau:ventricle", + "7594": "tau:ventricle", + "7595": "tau:ventricle", + "7596": "tau:ventricle", + "7597": "tau:ventricle", + "7598": "tau:ventricle", + "7599": "tau:ventricle", + "7600": "tau:ventricle", + "7601": "tau:ventricle", + "7602": "tau:ventricle", + "7603": "tau:ventricle", + "7604": "tau:ventricle", + "7605": "tau:ventricle", + "7606": "tau:ventricle", + "7607": "tau:ventricle", + "7608": "tau:ventricle", + "7609": "tau:ventricle", + "7610": "tau:ventricle", + "7611": "tau:ventricle", + "7612": "tau:ventricle", + "7613": "tau:ventricle", + "7614": "tau:ventricle", + "7615": "tau:ventricle", + "7616": "tau:ventricle", + "7617": "tau:ventricle", + "7618": "tau:ventricle", + "7619": "tau:ventricle", + "7620": "tau:ventricle", + "7621": "tau:ventricle", + "7622": "tau:ventricle", + "7623": "tau:ventricle", + "7624": "tau:ventricle", + "7625": "tau:ventricle", + "7626": "tau:ventricle", + "7627": "tau:ventricle", + "7628": "tau:ventricle", + "7629": "tau:ventricle", + "7630": "tau:ventricle", + "7631": "tau:ventricle", + "7632": "tau:ventricle", + "7633": "tau:ventricle", + "7634": "tau:ventricle", + "7635": "tau:ventricle", + "7636": "tau:ventricle", + "7637": "tau:ventricle", + "7638": "tau:ventricle", + "7639": "tau:ventricle", + "7640": "tau:ventricle", + "7641": "tau:ventricle", + "7642": "tau:ventricle", + "7643": "tau:ventricle", + "7644": "tau:ventricle", + "7645": "tau:ventricle", + "7646": "tau:ventricle", + "7647": "tau:ventricle", + "7648": "tau:ventricle", + "7649": "tau:ventricle", + "7650": "tau:ventricle", + "7651": "tau:ventricle", + "7652": "tau:ventricle", + "7653": "tau:ventricle", + "7654": "tau:ventricle", + "7655": "tau:ventricle", + "7656": "tau:ventricle", + "7657": "tau:ventricle", + "7658": "tau:ventricle", + "7659": "tau:ventricle", + "7660": "tau:ventricle", + "7661": "tau:ventricle", + "7662": "tau:ventricle", + "7663": "tau:ventricle", + "7664": "tau:ventricle", + "7665": "tau:ventricle", + "7666": "tau:ventricle", + "7667": "tau:ventricle", + "7668": "tau:ventricle", + "7669": "tau:ventricle", + "7670": "tau:ventricle", + "7671": "tau:ventricle", + "7672": "tau:ventricle", + "7673": "tau:ventricle", + "7674": "tau:ventricle", + "7675": "tau:ventricle", + "7676": "tau:ventricle", + "7677": "tau:ventricle", + "7678": "tau:ventricle", + "7679": "tau:ventricle", + "7680": "tau:ventricle", + "7681": "tau:ventricle", + "7682": "tau:ventricle", + "7683": "tau:ventricle", + "7684": "tau:ventricle", + "7685": "tau:ventricle", + "7686": "tau:ventricle", + "7687": "tau:ventricle", + "7688": "tau:ventricle", + "7689": "tau:ventricle", + "7690": "tau:ventricle", + "7691": "tau:ventricle", + "7692": "tau:ventricle", + "7693": "tau:ventricle", + "7694": "tau:ventricle", + "7695": "tau:ventricle", + "7696": "tau:ventricle", + "7697": "tau:ventricle", + "7698": "tau:ventricle", + "7699": "tau:ventricle", + "7700": "tau:ventricle", + "7701": "tau:ventricle", + "7702": "tau:ventricle", + "7703": "tau:ventricle", + "7704": "tau:ventricle", + "7705": "tau:ventricle", + "7706": "tau:ventricle", + "7707": "tau:ventricle", + "7708": "tau:ventricle", + "7709": "tau:ventricle", + "7710": "tau:ventricle", + "7711": "tau:ventricle", + "7712": "tau:ventricle", + "7713": "tau:ventricle", + "7714": "tau:ventricle", + "7715": "tau:ventricle", + "7716": "tau:ventricle", + "7717": "tau:ventricle", + "7718": "tau:ventricle", + "7719": "tau:ventricle", + "7720": "tau:ventricle", + "7721": "tau:ventricle", + "7722": "tau:ventricle", + "7723": "tau:ventricle", + "7724": "tau:ventricle", + "7725": "tau:ventricle", + "7726": "tau:ventricle", + "7727": "tau:ventricle", + "7728": "tau:ventricle", + "7729": "tau:ventricle", + "7730": "tau:ventricle", + "7731": "tau:ventricle", + "7732": "tau:ventricle", + "7733": "tau:ventricle", + "7734": "tau:ventricle", + "7735": "tau:ventricle", + "7736": "tau:ventricle", + "7737": "tau:ventricle", + "7738": "tau:ventricle", + "7739": "tau:ventricle", + "7740": "tau:ventricle", + "7741": "tau:ventricle", + "7742": "tau:ventricle", + "7743": "tau:ventricle", + "7744": "tau:ventricle", + "7745": "tau:ventricle", + "7746": "tau:ventricle", + "7747": "tau:ventricle", + "7748": "tau:ventricle", + "7749": "tau:ventricle", + "7750": "tau:ventricle", + "7751": "tau:ventricle", + "7752": "tau:ventricle", + "7753": "tau:ventricle", + "7754": "tau:ventricle", + "7755": "tau:ventricle", + "7756": "tau:ventricle", + "7757": "tau:ventricle", + "7758": "tau:ventricle", + "7759": "tau:ventricle", + "7760": "tau:ventricle", + "7761": "tau:ventricle", + "7762": "tau:ventricle", + "7763": "tau:ventricle", + "7764": "tau:ventricle", + "7765": "tau:ventricle", + "7766": "tau:ventricle", + "7767": "tau:ventricle", + "7768": "tau:ventricle", + "7769": "tau:ventricle", + "7770": "tau:ventricle", + "7771": "tau:ventricle", + "7772": "tau:ventricle", + "7773": "tau:ventricle", + "7774": "tau:ventricle", + "7775": "tau:ventricle", + "7776": "tau:ventricle", + "7777": "tau:ventricle", + "7778": "tau:ventricle", + "7779": "tau:ventricle", + "7780": "tau:ventricle", + "7781": "tau:ventricle", + "7782": "tau:ventricle", + "7783": "tau:ventricle", + "7784": "tau:ventricle", + "7785": "tau:ventricle", + "7786": "tau:ventricle", + "7787": "tau:ventricle", + "7788": "tau:ventricle", + "7789": "tau:ventricle", + "7790": "tau:ventricle", + "7791": "tau:ventricle", + "7792": "tau:ventricle", + "7793": "tau:ventricle", + "7794": "tau:ventricle", + "7795": "tau:ventricle", + "7796": "tau:ventricle", + "7797": "tau:ventricle", + "7798": "tau:ventricle", + "7799": "tau:ventricle", + "7800": "tau:ventricle", + "7801": "tau:ventricle", + "7802": "tau:ventricle", + "7803": "tau:ventricle", + "7804": "tau:ventricle", + "7805": "tau:ventricle", + "7806": "tau:ventricle", + "7807": "tau:ventricle", + "7808": "tau:ventricle", + "7809": "tau:ventricle", + "7810": "tau:ventricle", + "7811": "tau:ventricle", + "7812": "tau:ventricle", + "7813": "tau:ventricle", + "7814": "tau:ventricle", + "7815": "tau:ventricle", + "7816": "tau:ventricle", + "7817": "tau:ventricle", + "7818": "tau:ventricle", + "7819": "tau:ventricle", + "7820": "tau:ventricle", + "7821": "tau:ventricle", + "7822": "tau:ventricle", + "7823": "tau:ventricle", + "7824": "tau:ventricle", + "7825": "tau:ventricle", + "7826": "tau:ventricle", + "7827": "tau:ventricle", + "7828": "tau:ventricle", + "7829": "tau:ventricle", + "7830": "tau:ventricle", + "7831": "tau:ventricle", + "7832": "tau:ventricle", + "7833": "tau:ventricle", + "7834": "tau:ventricle", + "7835": "tau:ventricle", + "7836": "tau:ventricle", + "7837": "tau:ventricle", + "7838": "tau:ventricle", + "7839": "tau:ventricle", + "7840": "tau:ventricle", + "7841": "tau:ventricle", + "7842": "tau:ventricle", + "7843": "tau:ventricle", + "7844": "tau:ventricle", + "7845": "tau:ventricle", + "7846": "tau:ventricle", + "7847": "tau:ventricle", + "7848": "tau:ventricle", + "7849": "tau:ventricle", + "7850": "tau:ventricle", + "7851": "tau:ventricle", + "7852": "tau:ventricle", + "7853": "tau:ventricle", + "7854": "tau:ventricle", + "7855": "tau:ventricle", + "7856": "tau:ventricle", + "7857": "tau:ventricle", + "7858": "tau:ventricle", + "7859": "tau:ventricle", + "7860": "tau:ventricle", + "7861": "tau:ventricle", + "7862": "tau:ventricle", + "7863": "tau:ventricle", + "7864": "tau:ventricle", + "7865": "tau:ventricle", + "7866": "tau:ventricle", + "7867": "tau:ventricle", + "7868": "tau:ventricle", + "7869": "tau:ventricle", + "7870": "tau:ventricle", + "7871": "tau:ventricle", + "7872": "tau:ventricle", + "7873": "tau:ventricle", + "7874": "tau:ventricle", + "7875": "tau:ventricle", + "7876": "tau:ventricle", + "7877": "tau:ventricle", + "7878": "tau:ventricle", + "7879": "tau:ventricle", + "7880": "tau:ventricle", + "7881": "tau:ventricle", + "7882": "tau:ventricle", + "7883": "tau:ventricle", + "7884": "tau:ventricle", + "7885": "tau:ventricle", + "7886": "tau:ventricle", + "7887": "tau:ventricle", + "7888": "tau:ventricle", + "7889": "tau:ventricle", + "7890": "tau:ventricle", + "7891": "tau:ventricle", + "7892": "tau:ventricle", + "7893": "tau:ventricle", + "7894": "tau:ventricle", + "7895": "tau:ventricle", + "7896": "tau:ventricle", + "7897": "tau:ventricle", + "7898": "tau:ventricle", + "7899": "tau:ventricle", + "7900": "tau:ventricle", + "7901": "tau:ventricle", + "7902": "tau:ventricle", + "7903": "tau:ventricle", + "7904": "tau:ventricle", + "7905": "tau:ventricle", + "7906": "tau:ventricle", + "7907": "tau:ventricle", + "7908": "tau:ventricle", + "7909": "tau:ventricle", + "7910": "tau:ventricle", + "7911": "tau:ventricle", + "7912": "tau:ventricle", + "7913": "tau:ventricle", + "7914": "tau:ventricle", + "7915": "tau:ventricle", + "7916": "tau:ventricle", + "7917": "tau:ventricle", + "7918": "tau:ventricle", + "7919": "tau:ventricle", + "7920": "tau:ventricle", + "7921": "tau:ventricle", + "7922": "tau:ventricle", + "7923": "tau:ventricle", + "7924": "tau:ventricle", + "7925": "tau:ventricle", + "7926": "tau:ventricle", + "7927": "tau:ventricle", + "7928": "tau:ventricle", + "7929": "tau:ventricle", + "7930": "tau:ventricle", + "7931": "tau:ventricle", + "7932": "tau:ventricle", + "7933": "tau:ventricle", + "7934": "tau:ventricle", + "7935": "tau:ventricle", + "7936": "tau:ventricle", + "7937": "tau:ventricle", + "7938": "tau:ventricle", + "7939": "tau:ventricle", + "7940": "tau:ventricle", + "7941": "tau:ventricle", + "7942": "tau:ventricle", + "7943": "tau:ventricle", + "7944": "tau:ventricle", + "7945": "tau:ventricle", + "7946": "tau:ventricle", + "7947": "tau:ventricle", + "7948": "tau:ventricle", + "7949": "tau:ventricle", + "7950": "tau:ventricle", + "7951": "tau:ventricle", + "7952": "tau:ventricle", + "7953": "tau:ventricle", + "7954": "tau:ventricle", + "7955": "tau:ventricle", + "7956": "tau:ventricle", + "7957": "tau:ventricle", + "7958": "tau:ventricle", + "7959": "tau:ventricle", + "7960": "tau:ventricle", + "7961": "tau:ventricle", + "7962": "tau:ventricle", + "7963": "tau:ventricle", + "7964": "tau:ventricle", + "7965": "tau:ventricle", + "7966": "tau:ventricle", + "7967": "tau:ventricle", + "7968": "tau:ventricle", + "7969": "tau:ventricle", + "7970": "tau:ventricle", + "7971": "tau:ventricle", + "7972": "tau:ventricle", + "7973": "tau:ventricle", + "7974": "tau:ventricle", + "7975": "tau:ventricle", + "7976": "tau:ventricle", + "7977": "tau:ventricle", + "7978": "tau:ventricle", + "7979": "tau:ventricle", + "7980": "tau:ventricle", + "7981": "tau:ventricle", + "7982": "tau:ventricle", + "7983": "tau:ventricle", + "7984": "tau:ventricle", + "7985": "tau:ventricle", + "7986": "tau:ventricle", + "7987": "tau:ventricle", + "7988": "tau:ventricle", + "7989": "tau:ventricle", + "7990": "tau:ventricle", + "7991": "tau:ventricle", + "7992": "tau:ventricle", + "7993": "tau:ventricle", + "7994": "tau:ventricle", + "7995": "tau:ventricle", + "7996": "tau:ventricle", + "7997": "tau:ventricle", + "7998": "tau:ventricle", + "7999": "tau:ventricle", + "8000": "V:ventricle", + "8001": "V:ventricle", + "8002": "V:ventricle", + "8003": "V:ventricle", + "8004": "V:ventricle", + "8005": "V:ventricle", + "8006": "V:ventricle", + "8007": "V:ventricle", + "8008": "V:ventricle", + "8009": "V:ventricle", + "8010": "V:ventricle", + "8011": "V:ventricle", + "8012": "V:ventricle", + "8013": "V:ventricle", + "8014": "V:ventricle", + "8015": "V:ventricle", + "8016": "V:ventricle", + "8017": "V:ventricle", + "8018": "V:ventricle", + "8019": "V:ventricle", + "8020": "V:ventricle", + "8021": "V:ventricle", + "8022": "V:ventricle", + "8023": "V:ventricle", + "8024": "V:ventricle", + "8025": "V:ventricle", + "8026": "V:ventricle", + "8027": "V:ventricle", + "8028": "V:ventricle", + "8029": "V:ventricle", + "8030": "V:ventricle", + "8031": "V:ventricle", + "8032": "V:ventricle", + "8033": "V:ventricle", + "8034": "V:ventricle", + "8035": "V:ventricle", + "8036": "V:ventricle", + "8037": "V:ventricle", + "8038": "V:ventricle", + "8039": "V:ventricle", + "8040": "V:ventricle", + "8041": "V:ventricle", + "8042": "V:ventricle", + "8043": "V:ventricle", + "8044": "V:ventricle", + "8045": "V:ventricle", + "8046": "V:ventricle", + "8047": "V:ventricle", + "8048": "V:ventricle", + "8049": "V:ventricle", + "8050": "V:ventricle", + "8051": "V:ventricle", + "8052": "V:ventricle", + "8053": "V:ventricle", + "8054": "V:ventricle", + "8055": "V:ventricle", + "8056": "V:ventricle", + "8057": "V:ventricle", + "8058": "V:ventricle", + "8059": "V:ventricle", + "8060": "V:ventricle", + "8061": "V:ventricle", + "8062": "V:ventricle", + "8063": "V:ventricle", + "8064": "V:ventricle", + "8065": "V:ventricle", + "8066": "V:ventricle", + "8067": "V:ventricle", + "8068": "V:ventricle", + "8069": "V:ventricle", + "8070": "V:ventricle", + "8071": "V:ventricle", + "8072": "V:ventricle", + "8073": "V:ventricle", + "8074": "V:ventricle", + "8075": "V:ventricle", + "8076": "V:ventricle", + "8077": "V:ventricle", + "8078": "V:ventricle", + "8079": "V:ventricle", + "8080": "V:ventricle", + "8081": "V:ventricle", + "8082": "V:ventricle", + "8083": "V:ventricle", + "8084": "V:ventricle", + "8085": "V:ventricle", + "8086": "V:ventricle", + "8087": "V:ventricle", + "8088": "V:ventricle", + "8089": "V:ventricle", + "8090": "V:ventricle", + "8091": "V:ventricle", + "8092": "V:ventricle", + "8093": "V:ventricle", + "8094": "V:ventricle", + "8095": "V:ventricle", + "8096": "V:ventricle", + "8097": "V:ventricle", + "8098": "V:ventricle", + "8099": "V:ventricle", + "8100": "V:ventricle", + "8101": "V:ventricle", + "8102": "V:ventricle", + "8103": "V:ventricle", + "8104": "V:ventricle", + "8105": "V:ventricle", + "8106": "V:ventricle", + "8107": "V:ventricle", + "8108": "V:ventricle", + "8109": "V:ventricle", + "8110": "V:ventricle", + "8111": "V:ventricle", + "8112": "V:ventricle", + "8113": "V:ventricle", + "8114": "V:ventricle", + "8115": "V:ventricle", + "8116": "V:ventricle", + "8117": "V:ventricle", + "8118": "V:ventricle", + "8119": "V:ventricle", + "8120": "V:ventricle", + "8121": "V:ventricle", + "8122": "V:ventricle", + "8123": "V:ventricle", + "8124": "V:ventricle", + "8125": "V:ventricle", + "8126": "V:ventricle", + "8127": "V:ventricle", + "8128": "V:ventricle", + "8129": "V:ventricle", + "8130": "V:ventricle", + "8131": "V:ventricle", + "8132": "V:ventricle", + "8133": "V:ventricle", + "8134": "V:ventricle", + "8135": "V:ventricle", + "8136": "V:ventricle", + "8137": "V:ventricle", + "8138": "V:ventricle", + "8139": "V:ventricle", + "8140": "V:ventricle", + "8141": "V:ventricle", + "8142": "V:ventricle", + "8143": "V:ventricle", + "8144": "V:ventricle", + "8145": "V:ventricle", + "8146": "V:ventricle", + "8147": "V:ventricle", + "8148": "V:ventricle", + "8149": "V:ventricle", + "8150": "V:ventricle", + "8151": "V:ventricle", + "8152": "V:ventricle", + "8153": "V:ventricle", + "8154": "V:ventricle", + "8155": "V:ventricle", + "8156": "V:ventricle", + "8157": "V:ventricle", + "8158": "V:ventricle", + "8159": "V:ventricle", + "8160": "V:ventricle", + "8161": "V:ventricle", + "8162": "V:ventricle", + "8163": "V:ventricle", + "8164": "V:ventricle", + "8165": "V:ventricle", + "8166": "V:ventricle", + "8167": "V:ventricle", + "8168": "V:ventricle", + "8169": "V:ventricle", + "8170": "V:ventricle", + "8171": "V:ventricle", + "8172": "V:ventricle", + "8173": "V:ventricle", + "8174": "V:ventricle", + "8175": "V:ventricle", + "8176": "V:ventricle", + "8177": "V:ventricle", + "8178": "V:ventricle", + "8179": "V:ventricle", + "8180": "V:ventricle", + "8181": "V:ventricle", + "8182": "V:ventricle", + "8183": "V:ventricle", + "8184": "V:ventricle", + "8185": "V:ventricle", + "8186": "V:ventricle", + "8187": "V:ventricle", + "8188": "V:ventricle", + "8189": "V:ventricle", + "8190": "V:ventricle", + "8191": "V:ventricle", + "8192": "V:ventricle", + "8193": "V:ventricle", + "8194": "V:ventricle", + "8195": "V:ventricle", + "8196": "V:ventricle", + "8197": "V:ventricle", + "8198": "V:ventricle", + "8199": "V:ventricle", + "8200": "V:ventricle", + "8201": "V:ventricle", + "8202": "V:ventricle", + "8203": "V:ventricle", + "8204": "V:ventricle", + "8205": "V:ventricle", + "8206": "V:ventricle", + "8207": "V:ventricle", + "8208": "V:ventricle", + "8209": "V:ventricle", + "8210": "V:ventricle", + "8211": "V:ventricle", + "8212": "V:ventricle", + "8213": "V:ventricle", + "8214": "V:ventricle", + "8215": "V:ventricle", + "8216": "V:ventricle", + "8217": "V:ventricle", + "8218": "V:ventricle", + "8219": "V:ventricle", + "8220": "V:ventricle", + "8221": "V:ventricle", + "8222": "V:ventricle", + "8223": "V:ventricle", + "8224": "V:ventricle", + "8225": "V:ventricle", + "8226": "V:ventricle", + "8227": "V:ventricle", + "8228": "V:ventricle", + "8229": "V:ventricle", + "8230": "V:ventricle", + "8231": "V:ventricle", + "8232": "V:ventricle", + "8233": "V:ventricle", + "8234": "V:ventricle", + "8235": "V:ventricle", + "8236": "V:ventricle", + "8237": "V:ventricle", + "8238": "V:ventricle", + "8239": "V:ventricle", + "8240": "V:ventricle", + "8241": "V:ventricle", + "8242": "V:ventricle", + "8243": "V:ventricle", + "8244": "V:ventricle", + "8245": "V:ventricle", + "8246": "V:ventricle", + "8247": "V:ventricle", + "8248": "V:ventricle", + "8249": "V:ventricle", + "8250": "V:ventricle", + "8251": "V:ventricle", + "8252": "V:ventricle", + "8253": "V:ventricle", + "8254": "V:ventricle", + "8255": "V:ventricle", + "8256": "V:ventricle", + "8257": "V:ventricle", + "8258": "V:ventricle", + "8259": "V:ventricle", + "8260": "V:ventricle", + "8261": "V:ventricle", + "8262": "V:ventricle", + "8263": "V:ventricle", + "8264": "V:ventricle", + "8265": "V:ventricle", + "8266": "V:ventricle", + "8267": "V:ventricle", + "8268": "V:ventricle", + "8269": "V:ventricle", + "8270": "V:ventricle", + "8271": "V:ventricle", + "8272": "V:ventricle", + "8273": "V:ventricle", + "8274": "V:ventricle", + "8275": "V:ventricle", + "8276": "V:ventricle", + "8277": "V:ventricle", + "8278": "V:ventricle", + "8279": "V:ventricle", + "8280": "V:ventricle", + "8281": "V:ventricle", + "8282": "V:ventricle", + "8283": "V:ventricle", + "8284": "V:ventricle", + "8285": "V:ventricle", + "8286": "V:ventricle", + "8287": "V:ventricle", + "8288": "V:ventricle", + "8289": "V:ventricle", + "8290": "V:ventricle", + "8291": "V:ventricle", + "8292": "V:ventricle", + "8293": "V:ventricle", + "8294": "V:ventricle", + "8295": "V:ventricle", + "8296": "V:ventricle", + "8297": "V:ventricle", + "8298": "V:ventricle", + "8299": "V:ventricle", + "8300": "V:ventricle", + "8301": "V:ventricle", + "8302": "V:ventricle", + "8303": "V:ventricle", + "8304": "V:ventricle", + "8305": "V:ventricle", + "8306": "V:ventricle", + "8307": "V:ventricle", + "8308": "V:ventricle", + "8309": "V:ventricle", + "8310": "V:ventricle", + "8311": "V:ventricle", + "8312": "V:ventricle", + "8313": "V:ventricle", + "8314": "V:ventricle", + "8315": "V:ventricle", + "8316": "V:ventricle", + "8317": "V:ventricle", + "8318": "V:ventricle", + "8319": "V:ventricle", + "8320": "V:ventricle", + "8321": "V:ventricle", + "8322": "V:ventricle", + "8323": "V:ventricle", + "8324": "V:ventricle", + "8325": "V:ventricle", + "8326": "V:ventricle", + "8327": "V:ventricle", + "8328": "V:ventricle", + "8329": "V:ventricle", + "8330": "V:ventricle", + "8331": "V:ventricle", + "8332": "V:ventricle", + "8333": "V:ventricle", + "8334": "V:ventricle", + "8335": "V:ventricle", + "8336": "V:ventricle", + "8337": "V:ventricle", + "8338": "V:ventricle", + "8339": "V:ventricle", + "8340": "V:ventricle", + "8341": "V:ventricle", + "8342": "V:ventricle", + "8343": "V:ventricle", + "8344": "V:ventricle", + "8345": "V:ventricle", + "8346": "V:ventricle", + "8347": "V:ventricle", + "8348": "V:ventricle", + "8349": "V:ventricle", + "8350": "V:ventricle", + "8351": "V:ventricle", + "8352": "V:ventricle", + "8353": "V:ventricle", + "8354": "V:ventricle", + "8355": "V:ventricle", + "8356": "V:ventricle", + "8357": "V:ventricle", + "8358": "V:ventricle", + "8359": "V:ventricle", + "8360": "V:ventricle", + "8361": "V:ventricle", + "8362": "V:ventricle", + "8363": "V:ventricle", + "8364": "V:ventricle", + "8365": "V:ventricle", + "8366": "V:ventricle", + "8367": "V:ventricle", + "8368": "V:ventricle", + "8369": "V:ventricle", + "8370": "V:ventricle", + "8371": "V:ventricle", + "8372": "V:ventricle", + "8373": "V:ventricle", + "8374": "V:ventricle", + "8375": "V:ventricle", + "8376": "V:ventricle", + "8377": "V:ventricle", + "8378": "V:ventricle", + "8379": "V:ventricle", + "8380": "V:ventricle", + "8381": "V:ventricle", + "8382": "V:ventricle", + "8383": "V:ventricle", + "8384": "V:ventricle", + "8385": "V:ventricle", + "8386": "V:ventricle", + "8387": "V:ventricle", + "8388": "V:ventricle", + "8389": "V:ventricle", + "8390": "V:ventricle", + "8391": "V:ventricle", + "8392": "V:ventricle", + "8393": "V:ventricle", + "8394": "V:ventricle", + "8395": "V:ventricle", + "8396": "V:ventricle", + "8397": "V:ventricle", + "8398": "V:ventricle", + "8399": "V:ventricle", + "8400": "V:ventricle", + "8401": "V:ventricle", + "8402": "V:ventricle", + "8403": "V:ventricle", + "8404": "V:ventricle", + "8405": "V:ventricle", + "8406": "V:ventricle", + "8407": "V:ventricle", + "8408": "V:ventricle", + "8409": "V:ventricle", + "8410": "V:ventricle", + "8411": "V:ventricle", + "8412": "V:ventricle", + "8413": "V:ventricle", + "8414": "V:ventricle", + "8415": "V:ventricle", + "8416": "V:ventricle", + "8417": "V:ventricle", + "8418": "V:ventricle", + "8419": "V:ventricle", + "8420": "V:ventricle", + "8421": "V:ventricle", + "8422": "V:ventricle", + "8423": "V:ventricle", + "8424": "V:ventricle", + "8425": "V:ventricle", + "8426": "V:ventricle", + "8427": "V:ventricle", + "8428": "V:ventricle", + "8429": "V:ventricle", + "8430": "V:ventricle", + "8431": "V:ventricle", + "8432": "V:ventricle", + "8433": "V:ventricle", + "8434": "V:ventricle", + "8435": "V:ventricle", + "8436": "V:ventricle", + "8437": "V:ventricle", + "8438": "V:ventricle", + "8439": "V:ventricle", + "8440": "V:ventricle", + "8441": "V:ventricle", + "8442": "V:ventricle", + "8443": "V:ventricle", + "8444": "V:ventricle", + "8445": "V:ventricle", + "8446": "V:ventricle", + "8447": "V:ventricle", + "8448": "V:ventricle", + "8449": "V:ventricle", + "8450": "V:ventricle", + "8451": "V:ventricle", + "8452": "V:ventricle", + "8453": "V:ventricle", + "8454": "V:ventricle", + "8455": "V:ventricle", + "8456": "V:ventricle", + "8457": "V:ventricle", + "8458": "V:ventricle", + "8459": "V:ventricle", + "8460": "V:ventricle", + "8461": "V:ventricle", + "8462": "V:ventricle", + "8463": "V:ventricle", + "8464": "V:ventricle", + "8465": "V:ventricle", + "8466": "V:ventricle", + "8467": "V:ventricle", + "8468": "V:ventricle", + "8469": "V:ventricle", + "8470": "V:ventricle", + "8471": "V:ventricle", + "8472": "V:ventricle", + "8473": "V:ventricle", + "8474": "V:ventricle", + "8475": "V:ventricle", + "8476": "V:ventricle", + "8477": "V:ventricle", + "8478": "V:ventricle", + "8479": "V:ventricle", + "8480": "V:ventricle", + "8481": "V:ventricle", + "8482": "V:ventricle", + "8483": "V:ventricle", + "8484": "V:ventricle", + "8485": "V:ventricle", + "8486": "V:ventricle", + "8487": "V:ventricle", + "8488": "V:ventricle", + "8489": "V:ventricle", + "8490": "V:ventricle", + "8491": "V:ventricle", + "8492": "V:ventricle", + "8493": "V:ventricle", + "8494": "V:ventricle", + "8495": "V:ventricle", + "8496": "V:ventricle", + "8497": "V:ventricle", + "8498": "V:ventricle", + "8499": "V:ventricle" + }, + "time": { + "0": 0.0, + "1": 0.002004008, + "2": 0.004008016, + "3": 0.006012024, + "4": 0.0080160321, + "5": 0.0100200401, + "6": 0.0120240481, + "7": 0.0140280561, + "8": 0.0160320641, + "9": 0.0180360721, + "10": 0.0200400802, + "11": 0.0220440882, + "12": 0.0240480962, + "13": 0.0260521042, + "14": 0.0280561122, + "15": 0.0300601202, + "16": 0.0320641283, + "17": 0.0340681363, + "18": 0.0360721443, + "19": 0.0380761523, + "20": 0.0400801603, + "21": 0.0420841683, + "22": 0.0440881764, + "23": 0.0460921844, + "24": 0.0480961924, + "25": 0.0501002004, + "26": 0.0521042084, + "27": 0.0541082164, + "28": 0.0561122244, + "29": 0.0581162325, + "30": 0.0601202405, + "31": 0.0621242485, + "32": 0.0641282565, + "33": 0.0661322645, + "34": 0.0681362725, + "35": 0.0701402806, + "36": 0.0721442886, + "37": 0.0741482966, + "38": 0.0761523046, + "39": 0.0781563126, + "40": 0.0801603206, + "41": 0.0821643287, + "42": 0.0841683367, + "43": 0.0861723447, + "44": 0.0881763527, + "45": 0.0901803607, + "46": 0.0921843687, + "47": 0.0941883768, + "48": 0.0961923848, + "49": 0.0981963928, + "50": 0.1002004008, + "51": 0.1022044088, + "52": 0.1042084168, + "53": 0.1062124248, + "54": 0.1082164329, + "55": 0.1102204409, + "56": 0.1122244489, + "57": 0.1142284569, + "58": 0.1162324649, + "59": 0.1182364729, + "60": 0.120240481, + "61": 0.122244489, + "62": 0.124248497, + "63": 0.126252505, + "64": 0.128256513, + "65": 0.130260521, + "66": 0.1322645291, + "67": 0.1342685371, + "68": 0.1362725451, + "69": 0.1382765531, + "70": 0.1402805611, + "71": 0.1422845691, + "72": 0.1442885772, + "73": 0.1462925852, + "74": 0.1482965932, + "75": 0.1503006012, + "76": 0.1523046092, + "77": 0.1543086172, + "78": 0.1563126253, + "79": 0.1583166333, + "80": 0.1603206413, + "81": 0.1623246493, + "82": 0.1643286573, + "83": 0.1663326653, + "84": 0.1683366733, + "85": 0.1703406814, + "86": 0.1723446894, + "87": 0.1743486974, + "88": 0.1763527054, + "89": 0.1783567134, + "90": 0.1803607214, + "91": 0.1823647295, + "92": 0.1843687375, + "93": 0.1863727455, + "94": 0.1883767535, + "95": 0.1903807615, + "96": 0.1923847695, + "97": 0.1943887776, + "98": 0.1963927856, + "99": 0.1983967936, + "100": 0.2004008016, + "101": 0.2024048096, + "102": 0.2044088176, + "103": 0.2064128257, + "104": 0.2084168337, + "105": 0.2104208417, + "106": 0.2124248497, + "107": 0.2144288577, + "108": 0.2164328657, + "109": 0.2184368737, + "110": 0.2204408818, + "111": 0.2224448898, + "112": 0.2244488978, + "113": 0.2264529058, + "114": 0.2284569138, + "115": 0.2304609218, + "116": 0.2324649299, + "117": 0.2344689379, + "118": 0.2364729459, + "119": 0.2384769539, + "120": 0.2404809619, + "121": 0.2424849699, + "122": 0.244488978, + "123": 0.246492986, + "124": 0.248496994, + "125": 0.250501002, + "126": 0.25250501, + "127": 0.254509018, + "128": 0.2565130261, + "129": 0.2585170341, + "130": 0.2605210421, + "131": 0.2625250501, + "132": 0.2645290581, + "133": 0.2665330661, + "134": 0.2685370741, + "135": 0.2705410822, + "136": 0.2725450902, + "137": 0.2745490982, + "138": 0.2765531062, + "139": 0.2785571142, + "140": 0.2805611222, + "141": 0.2825651303, + "142": 0.2845691383, + "143": 0.2865731463, + "144": 0.2885771543, + "145": 0.2905811623, + "146": 0.2925851703, + "147": 0.2945891784, + "148": 0.2965931864, + "149": 0.2985971944, + "150": 0.3006012024, + "151": 0.3026052104, + "152": 0.3046092184, + "153": 0.3066132265, + "154": 0.3086172345, + "155": 0.3106212425, + "156": 0.3126252505, + "157": 0.3146292585, + "158": 0.3166332665, + "159": 0.3186372745, + "160": 0.3206412826, + "161": 0.3226452906, + "162": 0.3246492986, + "163": 0.3266533066, + "164": 0.3286573146, + "165": 0.3306613226, + "166": 0.3326653307, + "167": 0.3346693387, + "168": 0.3366733467, + "169": 0.3386773547, + "170": 0.3406813627, + "171": 0.3426853707, + "172": 0.3446893788, + "173": 0.3466933868, + "174": 0.3486973948, + "175": 0.3507014028, + "176": 0.3527054108, + "177": 0.3547094188, + "178": 0.3567134269, + "179": 0.3587174349, + "180": 0.3607214429, + "181": 0.3627254509, + "182": 0.3647294589, + "183": 0.3667334669, + "184": 0.3687374749, + "185": 0.370741483, + "186": 0.372745491, + "187": 0.374749499, + "188": 0.376753507, + "189": 0.378757515, + "190": 0.380761523, + "191": 0.3827655311, + "192": 0.3847695391, + "193": 0.3867735471, + "194": 0.3887775551, + "195": 0.3907815631, + "196": 0.3927855711, + "197": 0.3947895792, + "198": 0.3967935872, + "199": 0.3987975952, + "200": 0.4008016032, + "201": 0.4028056112, + "202": 0.4048096192, + "203": 0.4068136273, + "204": 0.4088176353, + "205": 0.4108216433, + "206": 0.4128256513, + "207": 0.4148296593, + "208": 0.4168336673, + "209": 0.4188376754, + "210": 0.4208416834, + "211": 0.4228456914, + "212": 0.4248496994, + "213": 0.4268537074, + "214": 0.4288577154, + "215": 0.4308617234, + "216": 0.4328657315, + "217": 0.4348697395, + "218": 0.4368737475, + "219": 0.4388777555, + "220": 0.4408817635, + "221": 0.4428857715, + "222": 0.4448897796, + "223": 0.4468937876, + "224": 0.4488977956, + "225": 0.4509018036, + "226": 0.4529058116, + "227": 0.4549098196, + "228": 0.4569138277, + "229": 0.4589178357, + "230": 0.4609218437, + "231": 0.4629258517, + "232": 0.4649298597, + "233": 0.4669338677, + "234": 0.4689378758, + "235": 0.4709418838, + "236": 0.4729458918, + "237": 0.4749498998, + "238": 0.4769539078, + "239": 0.4789579158, + "240": 0.4809619238, + "241": 0.4829659319, + "242": 0.4849699399, + "243": 0.4869739479, + "244": 0.4889779559, + "245": 0.4909819639, + "246": 0.4929859719, + "247": 0.49498998, + "248": 0.496993988, + "249": 0.498997996, + "250": 0.501002004, + "251": 0.503006012, + "252": 0.50501002, + "253": 0.5070140281, + "254": 0.5090180361, + "255": 0.5110220441, + "256": 0.5130260521, + "257": 0.5150300601, + "258": 0.5170340681, + "259": 0.5190380762, + "260": 0.5210420842, + "261": 0.5230460922, + "262": 0.5250501002, + "263": 0.5270541082, + "264": 0.5290581162, + "265": 0.5310621242, + "266": 0.5330661323, + "267": 0.5350701403, + "268": 0.5370741483, + "269": 0.5390781563, + "270": 0.5410821643, + "271": 0.5430861723, + "272": 0.5450901804, + "273": 0.5470941884, + "274": 0.5490981964, + "275": 0.5511022044, + "276": 0.5531062124, + "277": 0.5551102204, + "278": 0.5571142285, + "279": 0.5591182365, + "280": 0.5611222445, + "281": 0.5631262525, + "282": 0.5651302605, + "283": 0.5671342685, + "284": 0.5691382766, + "285": 0.5711422846, + "286": 0.5731462926, + "287": 0.5751503006, + "288": 0.5771543086, + "289": 0.5791583166, + "290": 0.5811623246, + "291": 0.5831663327, + "292": 0.5851703407, + "293": 0.5871743487, + "294": 0.5891783567, + "295": 0.5911823647, + "296": 0.5931863727, + "297": 0.5951903808, + "298": 0.5971943888, + "299": 0.5991983968, + "300": 0.6012024048, + "301": 0.6032064128, + "302": 0.6052104208, + "303": 0.6072144289, + "304": 0.6092184369, + "305": 0.6112224449, + "306": 0.6132264529, + "307": 0.6152304609, + "308": 0.6172344689, + "309": 0.619238477, + "310": 0.621242485, + "311": 0.623246493, + "312": 0.625250501, + "313": 0.627254509, + "314": 0.629258517, + "315": 0.6312625251, + "316": 0.6332665331, + "317": 0.6352705411, + "318": 0.6372745491, + "319": 0.6392785571, + "320": 0.6412825651, + "321": 0.6432865731, + "322": 0.6452905812, + "323": 0.6472945892, + "324": 0.6492985972, + "325": 0.6513026052, + "326": 0.6533066132, + "327": 0.6553106212, + "328": 0.6573146293, + "329": 0.6593186373, + "330": 0.6613226453, + "331": 0.6633266533, + "332": 0.6653306613, + "333": 0.6673346693, + "334": 0.6693386774, + "335": 0.6713426854, + "336": 0.6733466934, + "337": 0.6753507014, + "338": 0.6773547094, + "339": 0.6793587174, + "340": 0.6813627255, + "341": 0.6833667335, + "342": 0.6853707415, + "343": 0.6873747495, + "344": 0.6893787575, + "345": 0.6913827655, + "346": 0.6933867735, + "347": 0.6953907816, + "348": 0.6973947896, + "349": 0.6993987976, + "350": 0.7014028056, + "351": 0.7034068136, + "352": 0.7054108216, + "353": 0.7074148297, + "354": 0.7094188377, + "355": 0.7114228457, + "356": 0.7134268537, + "357": 0.7154308617, + "358": 0.7174348697, + "359": 0.7194388778, + "360": 0.7214428858, + "361": 0.7234468938, + "362": 0.7254509018, + "363": 0.7274549098, + "364": 0.7294589178, + "365": 0.7314629259, + "366": 0.7334669339, + "367": 0.7354709419, + "368": 0.7374749499, + "369": 0.7394789579, + "370": 0.7414829659, + "371": 0.7434869739, + "372": 0.745490982, + "373": 0.74749499, + "374": 0.749498998, + "375": 0.751503006, + "376": 0.753507014, + "377": 0.755511022, + "378": 0.7575150301, + "379": 0.7595190381, + "380": 0.7615230461, + "381": 0.7635270541, + "382": 0.7655310621, + "383": 0.7675350701, + "384": 0.7695390782, + "385": 0.7715430862, + "386": 0.7735470942, + "387": 0.7755511022, + "388": 0.7775551102, + "389": 0.7795591182, + "390": 0.7815631263, + "391": 0.7835671343, + "392": 0.7855711423, + "393": 0.7875751503, + "394": 0.7895791583, + "395": 0.7915831663, + "396": 0.7935871743, + "397": 0.7955911824, + "398": 0.7975951904, + "399": 0.7995991984, + "400": 0.8016032064, + "401": 0.8036072144, + "402": 0.8056112224, + "403": 0.8076152305, + "404": 0.8096192385, + "405": 0.8116232465, + "406": 0.8136272545, + "407": 0.8156312625, + "408": 0.8176352705, + "409": 0.8196392786, + "410": 0.8216432866, + "411": 0.8236472946, + "412": 0.8256513026, + "413": 0.8276553106, + "414": 0.8296593186, + "415": 0.8316633267, + "416": 0.8336673347, + "417": 0.8356713427, + "418": 0.8376753507, + "419": 0.8396793587, + "420": 0.8416833667, + "421": 0.8436873747, + "422": 0.8456913828, + "423": 0.8476953908, + "424": 0.8496993988, + "425": 0.8517034068, + "426": 0.8537074148, + "427": 0.8557114228, + "428": 0.8577154309, + "429": 0.8597194389, + "430": 0.8617234469, + "431": 0.8637274549, + "432": 0.8657314629, + "433": 0.8677354709, + "434": 0.869739479, + "435": 0.871743487, + "436": 0.873747495, + "437": 0.875751503, + "438": 0.877755511, + "439": 0.879759519, + "440": 0.8817635271, + "441": 0.8837675351, + "442": 0.8857715431, + "443": 0.8877755511, + "444": 0.8897795591, + "445": 0.8917835671, + "446": 0.8937875752, + "447": 0.8957915832, + "448": 0.8977955912, + "449": 0.8997995992, + "450": 0.9018036072, + "451": 0.9038076152, + "452": 0.9058116232, + "453": 0.9078156313, + "454": 0.9098196393, + "455": 0.9118236473, + "456": 0.9138276553, + "457": 0.9158316633, + "458": 0.9178356713, + "459": 0.9198396794, + "460": 0.9218436874, + "461": 0.9238476954, + "462": 0.9258517034, + "463": 0.9278557114, + "464": 0.9298597194, + "465": 0.9318637275, + "466": 0.9338677355, + "467": 0.9358717435, + "468": 0.9378757515, + "469": 0.9398797595, + "470": 0.9418837675, + "471": 0.9438877756, + "472": 0.9458917836, + "473": 0.9478957916, + "474": 0.9498997996, + "475": 0.9519038076, + "476": 0.9539078156, + "477": 0.9559118236, + "478": 0.9579158317, + "479": 0.9599198397, + "480": 0.9619238477, + "481": 0.9639278557, + "482": 0.9659318637, + "483": 0.9679358717, + "484": 0.9699398798, + "485": 0.9719438878, + "486": 0.9739478958, + "487": 0.9759519038, + "488": 0.9779559118, + "489": 0.9799599198, + "490": 0.9819639279, + "491": 0.9839679359, + "492": 0.9859719439, + "493": 0.9879759519, + "494": 0.9899799599, + "495": 0.9919839679, + "496": 0.993987976, + "497": 0.995991984, + "498": 0.997995992, + "499": 1.0, + "500": 0.0, + "501": 0.002004008, + "502": 0.004008016, + "503": 0.006012024, + "504": 0.0080160321, + "505": 0.0100200401, + "506": 0.0120240481, + "507": 0.0140280561, + "508": 0.0160320641, + "509": 0.0180360721, + "510": 0.0200400802, + "511": 0.0220440882, + "512": 0.0240480962, + "513": 0.0260521042, + "514": 0.0280561122, + "515": 0.0300601202, + "516": 0.0320641283, + "517": 0.0340681363, + "518": 0.0360721443, + "519": 0.0380761523, + "520": 0.0400801603, + "521": 0.0420841683, + "522": 0.0440881764, + "523": 0.0460921844, + "524": 0.0480961924, + "525": 0.0501002004, + "526": 0.0521042084, + "527": 0.0541082164, + "528": 0.0561122244, + "529": 0.0581162325, + "530": 0.0601202405, + "531": 0.0621242485, + "532": 0.0641282565, + "533": 0.0661322645, + "534": 0.0681362725, + "535": 0.0701402806, + "536": 0.0721442886, + "537": 0.0741482966, + "538": 0.0761523046, + "539": 0.0781563126, + "540": 0.0801603206, + "541": 0.0821643287, + "542": 0.0841683367, + "543": 0.0861723447, + "544": 0.0881763527, + "545": 0.0901803607, + "546": 0.0921843687, + "547": 0.0941883768, + "548": 0.0961923848, + "549": 0.0981963928, + "550": 0.1002004008, + "551": 0.1022044088, + "552": 0.1042084168, + "553": 0.1062124248, + "554": 0.1082164329, + "555": 0.1102204409, + "556": 0.1122244489, + "557": 0.1142284569, + "558": 0.1162324649, + "559": 0.1182364729, + "560": 0.120240481, + "561": 0.122244489, + "562": 0.124248497, + "563": 0.126252505, + "564": 0.128256513, + "565": 0.130260521, + "566": 0.1322645291, + "567": 0.1342685371, + "568": 0.1362725451, + "569": 0.1382765531, + "570": 0.1402805611, + "571": 0.1422845691, + "572": 0.1442885772, + "573": 0.1462925852, + "574": 0.1482965932, + "575": 0.1503006012, + "576": 0.1523046092, + "577": 0.1543086172, + "578": 0.1563126253, + "579": 0.1583166333, + "580": 0.1603206413, + "581": 0.1623246493, + "582": 0.1643286573, + "583": 0.1663326653, + "584": 0.1683366733, + "585": 0.1703406814, + "586": 0.1723446894, + "587": 0.1743486974, + "588": 0.1763527054, + "589": 0.1783567134, + "590": 0.1803607214, + "591": 0.1823647295, + "592": 0.1843687375, + "593": 0.1863727455, + "594": 0.1883767535, + "595": 0.1903807615, + "596": 0.1923847695, + "597": 0.1943887776, + "598": 0.1963927856, + "599": 0.1983967936, + "600": 0.2004008016, + "601": 0.2024048096, + "602": 0.2044088176, + "603": 0.2064128257, + "604": 0.2084168337, + "605": 0.2104208417, + "606": 0.2124248497, + "607": 0.2144288577, + "608": 0.2164328657, + "609": 0.2184368737, + "610": 0.2204408818, + "611": 0.2224448898, + "612": 0.2244488978, + "613": 0.2264529058, + "614": 0.2284569138, + "615": 0.2304609218, + "616": 0.2324649299, + "617": 0.2344689379, + "618": 0.2364729459, + "619": 0.2384769539, + "620": 0.2404809619, + "621": 0.2424849699, + "622": 0.244488978, + "623": 0.246492986, + "624": 0.248496994, + "625": 0.250501002, + "626": 0.25250501, + "627": 0.254509018, + "628": 0.2565130261, + "629": 0.2585170341, + "630": 0.2605210421, + "631": 0.2625250501, + "632": 0.2645290581, + "633": 0.2665330661, + "634": 0.2685370741, + "635": 0.2705410822, + "636": 0.2725450902, + "637": 0.2745490982, + "638": 0.2765531062, + "639": 0.2785571142, + "640": 0.2805611222, + "641": 0.2825651303, + "642": 0.2845691383, + "643": 0.2865731463, + "644": 0.2885771543, + "645": 0.2905811623, + "646": 0.2925851703, + "647": 0.2945891784, + "648": 0.2965931864, + "649": 0.2985971944, + "650": 0.3006012024, + "651": 0.3026052104, + "652": 0.3046092184, + "653": 0.3066132265, + "654": 0.3086172345, + "655": 0.3106212425, + "656": 0.3126252505, + "657": 0.3146292585, + "658": 0.3166332665, + "659": 0.3186372745, + "660": 0.3206412826, + "661": 0.3226452906, + "662": 0.3246492986, + "663": 0.3266533066, + "664": 0.3286573146, + "665": 0.3306613226, + "666": 0.3326653307, + "667": 0.3346693387, + "668": 0.3366733467, + "669": 0.3386773547, + "670": 0.3406813627, + "671": 0.3426853707, + "672": 0.3446893788, + "673": 0.3466933868, + "674": 0.3486973948, + "675": 0.3507014028, + "676": 0.3527054108, + "677": 0.3547094188, + "678": 0.3567134269, + "679": 0.3587174349, + "680": 0.3607214429, + "681": 0.3627254509, + "682": 0.3647294589, + "683": 0.3667334669, + "684": 0.3687374749, + "685": 0.370741483, + "686": 0.372745491, + "687": 0.374749499, + "688": 0.376753507, + "689": 0.378757515, + "690": 0.380761523, + "691": 0.3827655311, + "692": 0.3847695391, + "693": 0.3867735471, + "694": 0.3887775551, + "695": 0.3907815631, + "696": 0.3927855711, + "697": 0.3947895792, + "698": 0.3967935872, + "699": 0.3987975952, + "700": 0.4008016032, + "701": 0.4028056112, + "702": 0.4048096192, + "703": 0.4068136273, + "704": 0.4088176353, + "705": 0.4108216433, + "706": 0.4128256513, + "707": 0.4148296593, + "708": 0.4168336673, + "709": 0.4188376754, + "710": 0.4208416834, + "711": 0.4228456914, + "712": 0.4248496994, + "713": 0.4268537074, + "714": 0.4288577154, + "715": 0.4308617234, + "716": 0.4328657315, + "717": 0.4348697395, + "718": 0.4368737475, + "719": 0.4388777555, + "720": 0.4408817635, + "721": 0.4428857715, + "722": 0.4448897796, + "723": 0.4468937876, + "724": 0.4488977956, + "725": 0.4509018036, + "726": 0.4529058116, + "727": 0.4549098196, + "728": 0.4569138277, + "729": 0.4589178357, + "730": 0.4609218437, + "731": 0.4629258517, + "732": 0.4649298597, + "733": 0.4669338677, + "734": 0.4689378758, + "735": 0.4709418838, + "736": 0.4729458918, + "737": 0.4749498998, + "738": 0.4769539078, + "739": 0.4789579158, + "740": 0.4809619238, + "741": 0.4829659319, + "742": 0.4849699399, + "743": 0.4869739479, + "744": 0.4889779559, + "745": 0.4909819639, + "746": 0.4929859719, + "747": 0.49498998, + "748": 0.496993988, + "749": 0.498997996, + "750": 0.501002004, + "751": 0.503006012, + "752": 0.50501002, + "753": 0.5070140281, + "754": 0.5090180361, + "755": 0.5110220441, + "756": 0.5130260521, + "757": 0.5150300601, + "758": 0.5170340681, + "759": 0.5190380762, + "760": 0.5210420842, + "761": 0.5230460922, + "762": 0.5250501002, + "763": 0.5270541082, + "764": 0.5290581162, + "765": 0.5310621242, + "766": 0.5330661323, + "767": 0.5350701403, + "768": 0.5370741483, + "769": 0.5390781563, + "770": 0.5410821643, + "771": 0.5430861723, + "772": 0.5450901804, + "773": 0.5470941884, + "774": 0.5490981964, + "775": 0.5511022044, + "776": 0.5531062124, + "777": 0.5551102204, + "778": 0.5571142285, + "779": 0.5591182365, + "780": 0.5611222445, + "781": 0.5631262525, + "782": 0.5651302605, + "783": 0.5671342685, + "784": 0.5691382766, + "785": 0.5711422846, + "786": 0.5731462926, + "787": 0.5751503006, + "788": 0.5771543086, + "789": 0.5791583166, + "790": 0.5811623246, + "791": 0.5831663327, + "792": 0.5851703407, + "793": 0.5871743487, + "794": 0.5891783567, + "795": 0.5911823647, + "796": 0.5931863727, + "797": 0.5951903808, + "798": 0.5971943888, + "799": 0.5991983968, + "800": 0.6012024048, + "801": 0.6032064128, + "802": 0.6052104208, + "803": 0.6072144289, + "804": 0.6092184369, + "805": 0.6112224449, + "806": 0.6132264529, + "807": 0.6152304609, + "808": 0.6172344689, + "809": 0.619238477, + "810": 0.621242485, + "811": 0.623246493, + "812": 0.625250501, + "813": 0.627254509, + "814": 0.629258517, + "815": 0.6312625251, + "816": 0.6332665331, + "817": 0.6352705411, + "818": 0.6372745491, + "819": 0.6392785571, + "820": 0.6412825651, + "821": 0.6432865731, + "822": 0.6452905812, + "823": 0.6472945892, + "824": 0.6492985972, + "825": 0.6513026052, + "826": 0.6533066132, + "827": 0.6553106212, + "828": 0.6573146293, + "829": 0.6593186373, + "830": 0.6613226453, + "831": 0.6633266533, + "832": 0.6653306613, + "833": 0.6673346693, + "834": 0.6693386774, + "835": 0.6713426854, + "836": 0.6733466934, + "837": 0.6753507014, + "838": 0.6773547094, + "839": 0.6793587174, + "840": 0.6813627255, + "841": 0.6833667335, + "842": 0.6853707415, + "843": 0.6873747495, + "844": 0.6893787575, + "845": 0.6913827655, + "846": 0.6933867735, + "847": 0.6953907816, + "848": 0.6973947896, + "849": 0.6993987976, + "850": 0.7014028056, + "851": 0.7034068136, + "852": 0.7054108216, + "853": 0.7074148297, + "854": 0.7094188377, + "855": 0.7114228457, + "856": 0.7134268537, + "857": 0.7154308617, + "858": 0.7174348697, + "859": 0.7194388778, + "860": 0.7214428858, + "861": 0.7234468938, + "862": 0.7254509018, + "863": 0.7274549098, + "864": 0.7294589178, + "865": 0.7314629259, + "866": 0.7334669339, + "867": 0.7354709419, + "868": 0.7374749499, + "869": 0.7394789579, + "870": 0.7414829659, + "871": 0.7434869739, + "872": 0.745490982, + "873": 0.74749499, + "874": 0.749498998, + "875": 0.751503006, + "876": 0.753507014, + "877": 0.755511022, + "878": 0.7575150301, + "879": 0.7595190381, + "880": 0.7615230461, + "881": 0.7635270541, + "882": 0.7655310621, + "883": 0.7675350701, + "884": 0.7695390782, + "885": 0.7715430862, + "886": 0.7735470942, + "887": 0.7755511022, + "888": 0.7775551102, + "889": 0.7795591182, + "890": 0.7815631263, + "891": 0.7835671343, + "892": 0.7855711423, + "893": 0.7875751503, + "894": 0.7895791583, + "895": 0.7915831663, + "896": 0.7935871743, + "897": 0.7955911824, + "898": 0.7975951904, + "899": 0.7995991984, + "900": 0.8016032064, + "901": 0.8036072144, + "902": 0.8056112224, + "903": 0.8076152305, + "904": 0.8096192385, + "905": 0.8116232465, + "906": 0.8136272545, + "907": 0.8156312625, + "908": 0.8176352705, + "909": 0.8196392786, + "910": 0.8216432866, + "911": 0.8236472946, + "912": 0.8256513026, + "913": 0.8276553106, + "914": 0.8296593186, + "915": 0.8316633267, + "916": 0.8336673347, + "917": 0.8356713427, + "918": 0.8376753507, + "919": 0.8396793587, + "920": 0.8416833667, + "921": 0.8436873747, + "922": 0.8456913828, + "923": 0.8476953908, + "924": 0.8496993988, + "925": 0.8517034068, + "926": 0.8537074148, + "927": 0.8557114228, + "928": 0.8577154309, + "929": 0.8597194389, + "930": 0.8617234469, + "931": 0.8637274549, + "932": 0.8657314629, + "933": 0.8677354709, + "934": 0.869739479, + "935": 0.871743487, + "936": 0.873747495, + "937": 0.875751503, + "938": 0.877755511, + "939": 0.879759519, + "940": 0.8817635271, + "941": 0.8837675351, + "942": 0.8857715431, + "943": 0.8877755511, + "944": 0.8897795591, + "945": 0.8917835671, + "946": 0.8937875752, + "947": 0.8957915832, + "948": 0.8977955912, + "949": 0.8997995992, + "950": 0.9018036072, + "951": 0.9038076152, + "952": 0.9058116232, + "953": 0.9078156313, + "954": 0.9098196393, + "955": 0.9118236473, + "956": 0.9138276553, + "957": 0.9158316633, + "958": 0.9178356713, + "959": 0.9198396794, + "960": 0.9218436874, + "961": 0.9238476954, + "962": 0.9258517034, + "963": 0.9278557114, + "964": 0.9298597194, + "965": 0.9318637275, + "966": 0.9338677355, + "967": 0.9358717435, + "968": 0.9378757515, + "969": 0.9398797595, + "970": 0.9418837675, + "971": 0.9438877756, + "972": 0.9458917836, + "973": 0.9478957916, + "974": 0.9498997996, + "975": 0.9519038076, + "976": 0.9539078156, + "977": 0.9559118236, + "978": 0.9579158317, + "979": 0.9599198397, + "980": 0.9619238477, + "981": 0.9639278557, + "982": 0.9659318637, + "983": 0.9679358717, + "984": 0.9699398798, + "985": 0.9719438878, + "986": 0.9739478958, + "987": 0.9759519038, + "988": 0.9779559118, + "989": 0.9799599198, + "990": 0.9819639279, + "991": 0.9839679359, + "992": 0.9859719439, + "993": 0.9879759519, + "994": 0.9899799599, + "995": 0.9919839679, + "996": 0.993987976, + "997": 0.995991984, + "998": 0.997995992, + "999": 1.0, + "1000": 0.0, + "1001": 0.002004008, + "1002": 0.004008016, + "1003": 0.006012024, + "1004": 0.0080160321, + "1005": 0.0100200401, + "1006": 0.0120240481, + "1007": 0.0140280561, + "1008": 0.0160320641, + "1009": 0.0180360721, + "1010": 0.0200400802, + "1011": 0.0220440882, + "1012": 0.0240480962, + "1013": 0.0260521042, + "1014": 0.0280561122, + "1015": 0.0300601202, + "1016": 0.0320641283, + "1017": 0.0340681363, + "1018": 0.0360721443, + "1019": 0.0380761523, + "1020": 0.0400801603, + "1021": 0.0420841683, + "1022": 0.0440881764, + "1023": 0.0460921844, + "1024": 0.0480961924, + "1025": 0.0501002004, + "1026": 0.0521042084, + "1027": 0.0541082164, + "1028": 0.0561122244, + "1029": 0.0581162325, + "1030": 0.0601202405, + "1031": 0.0621242485, + "1032": 0.0641282565, + "1033": 0.0661322645, + "1034": 0.0681362725, + "1035": 0.0701402806, + "1036": 0.0721442886, + "1037": 0.0741482966, + "1038": 0.0761523046, + "1039": 0.0781563126, + "1040": 0.0801603206, + "1041": 0.0821643287, + "1042": 0.0841683367, + "1043": 0.0861723447, + "1044": 0.0881763527, + "1045": 0.0901803607, + "1046": 0.0921843687, + "1047": 0.0941883768, + "1048": 0.0961923848, + "1049": 0.0981963928, + "1050": 0.1002004008, + "1051": 0.1022044088, + "1052": 0.1042084168, + "1053": 0.1062124248, + "1054": 0.1082164329, + "1055": 0.1102204409, + "1056": 0.1122244489, + "1057": 0.1142284569, + "1058": 0.1162324649, + "1059": 0.1182364729, + "1060": 0.120240481, + "1061": 0.122244489, + "1062": 0.124248497, + "1063": 0.126252505, + "1064": 0.128256513, + "1065": 0.130260521, + "1066": 0.1322645291, + "1067": 0.1342685371, + "1068": 0.1362725451, + "1069": 0.1382765531, + "1070": 0.1402805611, + "1071": 0.1422845691, + "1072": 0.1442885772, + "1073": 0.1462925852, + "1074": 0.1482965932, + "1075": 0.1503006012, + "1076": 0.1523046092, + "1077": 0.1543086172, + "1078": 0.1563126253, + "1079": 0.1583166333, + "1080": 0.1603206413, + "1081": 0.1623246493, + "1082": 0.1643286573, + "1083": 0.1663326653, + "1084": 0.1683366733, + "1085": 0.1703406814, + "1086": 0.1723446894, + "1087": 0.1743486974, + "1088": 0.1763527054, + "1089": 0.1783567134, + "1090": 0.1803607214, + "1091": 0.1823647295, + "1092": 0.1843687375, + "1093": 0.1863727455, + "1094": 0.1883767535, + "1095": 0.1903807615, + "1096": 0.1923847695, + "1097": 0.1943887776, + "1098": 0.1963927856, + "1099": 0.1983967936, + "1100": 0.2004008016, + "1101": 0.2024048096, + "1102": 0.2044088176, + "1103": 0.2064128257, + "1104": 0.2084168337, + "1105": 0.2104208417, + "1106": 0.2124248497, + "1107": 0.2144288577, + "1108": 0.2164328657, + "1109": 0.2184368737, + "1110": 0.2204408818, + "1111": 0.2224448898, + "1112": 0.2244488978, + "1113": 0.2264529058, + "1114": 0.2284569138, + "1115": 0.2304609218, + "1116": 0.2324649299, + "1117": 0.2344689379, + "1118": 0.2364729459, + "1119": 0.2384769539, + "1120": 0.2404809619, + "1121": 0.2424849699, + "1122": 0.244488978, + "1123": 0.246492986, + "1124": 0.248496994, + "1125": 0.250501002, + "1126": 0.25250501, + "1127": 0.254509018, + "1128": 0.2565130261, + "1129": 0.2585170341, + "1130": 0.2605210421, + "1131": 0.2625250501, + "1132": 0.2645290581, + "1133": 0.2665330661, + "1134": 0.2685370741, + "1135": 0.2705410822, + "1136": 0.2725450902, + "1137": 0.2745490982, + "1138": 0.2765531062, + "1139": 0.2785571142, + "1140": 0.2805611222, + "1141": 0.2825651303, + "1142": 0.2845691383, + "1143": 0.2865731463, + "1144": 0.2885771543, + "1145": 0.2905811623, + "1146": 0.2925851703, + "1147": 0.2945891784, + "1148": 0.2965931864, + "1149": 0.2985971944, + "1150": 0.3006012024, + "1151": 0.3026052104, + "1152": 0.3046092184, + "1153": 0.3066132265, + "1154": 0.3086172345, + "1155": 0.3106212425, + "1156": 0.3126252505, + "1157": 0.3146292585, + "1158": 0.3166332665, + "1159": 0.3186372745, + "1160": 0.3206412826, + "1161": 0.3226452906, + "1162": 0.3246492986, + "1163": 0.3266533066, + "1164": 0.3286573146, + "1165": 0.3306613226, + "1166": 0.3326653307, + "1167": 0.3346693387, + "1168": 0.3366733467, + "1169": 0.3386773547, + "1170": 0.3406813627, + "1171": 0.3426853707, + "1172": 0.3446893788, + "1173": 0.3466933868, + "1174": 0.3486973948, + "1175": 0.3507014028, + "1176": 0.3527054108, + "1177": 0.3547094188, + "1178": 0.3567134269, + "1179": 0.3587174349, + "1180": 0.3607214429, + "1181": 0.3627254509, + "1182": 0.3647294589, + "1183": 0.3667334669, + "1184": 0.3687374749, + "1185": 0.370741483, + "1186": 0.372745491, + "1187": 0.374749499, + "1188": 0.376753507, + "1189": 0.378757515, + "1190": 0.380761523, + "1191": 0.3827655311, + "1192": 0.3847695391, + "1193": 0.3867735471, + "1194": 0.3887775551, + "1195": 0.3907815631, + "1196": 0.3927855711, + "1197": 0.3947895792, + "1198": 0.3967935872, + "1199": 0.3987975952, + "1200": 0.4008016032, + "1201": 0.4028056112, + "1202": 0.4048096192, + "1203": 0.4068136273, + "1204": 0.4088176353, + "1205": 0.4108216433, + "1206": 0.4128256513, + "1207": 0.4148296593, + "1208": 0.4168336673, + "1209": 0.4188376754, + "1210": 0.4208416834, + "1211": 0.4228456914, + "1212": 0.4248496994, + "1213": 0.4268537074, + "1214": 0.4288577154, + "1215": 0.4308617234, + "1216": 0.4328657315, + "1217": 0.4348697395, + "1218": 0.4368737475, + "1219": 0.4388777555, + "1220": 0.4408817635, + "1221": 0.4428857715, + "1222": 0.4448897796, + "1223": 0.4468937876, + "1224": 0.4488977956, + "1225": 0.4509018036, + "1226": 0.4529058116, + "1227": 0.4549098196, + "1228": 0.4569138277, + "1229": 0.4589178357, + "1230": 0.4609218437, + "1231": 0.4629258517, + "1232": 0.4649298597, + "1233": 0.4669338677, + "1234": 0.4689378758, + "1235": 0.4709418838, + "1236": 0.4729458918, + "1237": 0.4749498998, + "1238": 0.4769539078, + "1239": 0.4789579158, + "1240": 0.4809619238, + "1241": 0.4829659319, + "1242": 0.4849699399, + "1243": 0.4869739479, + "1244": 0.4889779559, + "1245": 0.4909819639, + "1246": 0.4929859719, + "1247": 0.49498998, + "1248": 0.496993988, + "1249": 0.498997996, + "1250": 0.501002004, + "1251": 0.503006012, + "1252": 0.50501002, + "1253": 0.5070140281, + "1254": 0.5090180361, + "1255": 0.5110220441, + "1256": 0.5130260521, + "1257": 0.5150300601, + "1258": 0.5170340681, + "1259": 0.5190380762, + "1260": 0.5210420842, + "1261": 0.5230460922, + "1262": 0.5250501002, + "1263": 0.5270541082, + "1264": 0.5290581162, + "1265": 0.5310621242, + "1266": 0.5330661323, + "1267": 0.5350701403, + "1268": 0.5370741483, + "1269": 0.5390781563, + "1270": 0.5410821643, + "1271": 0.5430861723, + "1272": 0.5450901804, + "1273": 0.5470941884, + "1274": 0.5490981964, + "1275": 0.5511022044, + "1276": 0.5531062124, + "1277": 0.5551102204, + "1278": 0.5571142285, + "1279": 0.5591182365, + "1280": 0.5611222445, + "1281": 0.5631262525, + "1282": 0.5651302605, + "1283": 0.5671342685, + "1284": 0.5691382766, + "1285": 0.5711422846, + "1286": 0.5731462926, + "1287": 0.5751503006, + "1288": 0.5771543086, + "1289": 0.5791583166, + "1290": 0.5811623246, + "1291": 0.5831663327, + "1292": 0.5851703407, + "1293": 0.5871743487, + "1294": 0.5891783567, + "1295": 0.5911823647, + "1296": 0.5931863727, + "1297": 0.5951903808, + "1298": 0.5971943888, + "1299": 0.5991983968, + "1300": 0.6012024048, + "1301": 0.6032064128, + "1302": 0.6052104208, + "1303": 0.6072144289, + "1304": 0.6092184369, + "1305": 0.6112224449, + "1306": 0.6132264529, + "1307": 0.6152304609, + "1308": 0.6172344689, + "1309": 0.619238477, + "1310": 0.621242485, + "1311": 0.623246493, + "1312": 0.625250501, + "1313": 0.627254509, + "1314": 0.629258517, + "1315": 0.6312625251, + "1316": 0.6332665331, + "1317": 0.6352705411, + "1318": 0.6372745491, + "1319": 0.6392785571, + "1320": 0.6412825651, + "1321": 0.6432865731, + "1322": 0.6452905812, + "1323": 0.6472945892, + "1324": 0.6492985972, + "1325": 0.6513026052, + "1326": 0.6533066132, + "1327": 0.6553106212, + "1328": 0.6573146293, + "1329": 0.6593186373, + "1330": 0.6613226453, + "1331": 0.6633266533, + "1332": 0.6653306613, + "1333": 0.6673346693, + "1334": 0.6693386774, + "1335": 0.6713426854, + "1336": 0.6733466934, + "1337": 0.6753507014, + "1338": 0.6773547094, + "1339": 0.6793587174, + "1340": 0.6813627255, + "1341": 0.6833667335, + "1342": 0.6853707415, + "1343": 0.6873747495, + "1344": 0.6893787575, + "1345": 0.6913827655, + "1346": 0.6933867735, + "1347": 0.6953907816, + "1348": 0.6973947896, + "1349": 0.6993987976, + "1350": 0.7014028056, + "1351": 0.7034068136, + "1352": 0.7054108216, + "1353": 0.7074148297, + "1354": 0.7094188377, + "1355": 0.7114228457, + "1356": 0.7134268537, + "1357": 0.7154308617, + "1358": 0.7174348697, + "1359": 0.7194388778, + "1360": 0.7214428858, + "1361": 0.7234468938, + "1362": 0.7254509018, + "1363": 0.7274549098, + "1364": 0.7294589178, + "1365": 0.7314629259, + "1366": 0.7334669339, + "1367": 0.7354709419, + "1368": 0.7374749499, + "1369": 0.7394789579, + "1370": 0.7414829659, + "1371": 0.7434869739, + "1372": 0.745490982, + "1373": 0.74749499, + "1374": 0.749498998, + "1375": 0.751503006, + "1376": 0.753507014, + "1377": 0.755511022, + "1378": 0.7575150301, + "1379": 0.7595190381, + "1380": 0.7615230461, + "1381": 0.7635270541, + "1382": 0.7655310621, + "1383": 0.7675350701, + "1384": 0.7695390782, + "1385": 0.7715430862, + "1386": 0.7735470942, + "1387": 0.7755511022, + "1388": 0.7775551102, + "1389": 0.7795591182, + "1390": 0.7815631263, + "1391": 0.7835671343, + "1392": 0.7855711423, + "1393": 0.7875751503, + "1394": 0.7895791583, + "1395": 0.7915831663, + "1396": 0.7935871743, + "1397": 0.7955911824, + "1398": 0.7975951904, + "1399": 0.7995991984, + "1400": 0.8016032064, + "1401": 0.8036072144, + "1402": 0.8056112224, + "1403": 0.8076152305, + "1404": 0.8096192385, + "1405": 0.8116232465, + "1406": 0.8136272545, + "1407": 0.8156312625, + "1408": 0.8176352705, + "1409": 0.8196392786, + "1410": 0.8216432866, + "1411": 0.8236472946, + "1412": 0.8256513026, + "1413": 0.8276553106, + "1414": 0.8296593186, + "1415": 0.8316633267, + "1416": 0.8336673347, + "1417": 0.8356713427, + "1418": 0.8376753507, + "1419": 0.8396793587, + "1420": 0.8416833667, + "1421": 0.8436873747, + "1422": 0.8456913828, + "1423": 0.8476953908, + "1424": 0.8496993988, + "1425": 0.8517034068, + "1426": 0.8537074148, + "1427": 0.8557114228, + "1428": 0.8577154309, + "1429": 0.8597194389, + "1430": 0.8617234469, + "1431": 0.8637274549, + "1432": 0.8657314629, + "1433": 0.8677354709, + "1434": 0.869739479, + "1435": 0.871743487, + "1436": 0.873747495, + "1437": 0.875751503, + "1438": 0.877755511, + "1439": 0.879759519, + "1440": 0.8817635271, + "1441": 0.8837675351, + "1442": 0.8857715431, + "1443": 0.8877755511, + "1444": 0.8897795591, + "1445": 0.8917835671, + "1446": 0.8937875752, + "1447": 0.8957915832, + "1448": 0.8977955912, + "1449": 0.8997995992, + "1450": 0.9018036072, + "1451": 0.9038076152, + "1452": 0.9058116232, + "1453": 0.9078156313, + "1454": 0.9098196393, + "1455": 0.9118236473, + "1456": 0.9138276553, + "1457": 0.9158316633, + "1458": 0.9178356713, + "1459": 0.9198396794, + "1460": 0.9218436874, + "1461": 0.9238476954, + "1462": 0.9258517034, + "1463": 0.9278557114, + "1464": 0.9298597194, + "1465": 0.9318637275, + "1466": 0.9338677355, + "1467": 0.9358717435, + "1468": 0.9378757515, + "1469": 0.9398797595, + "1470": 0.9418837675, + "1471": 0.9438877756, + "1472": 0.9458917836, + "1473": 0.9478957916, + "1474": 0.9498997996, + "1475": 0.9519038076, + "1476": 0.9539078156, + "1477": 0.9559118236, + "1478": 0.9579158317, + "1479": 0.9599198397, + "1480": 0.9619238477, + "1481": 0.9639278557, + "1482": 0.9659318637, + "1483": 0.9679358717, + "1484": 0.9699398798, + "1485": 0.9719438878, + "1486": 0.9739478958, + "1487": 0.9759519038, + "1488": 0.9779559118, + "1489": 0.9799599198, + "1490": 0.9819639279, + "1491": 0.9839679359, + "1492": 0.9859719439, + "1493": 0.9879759519, + "1494": 0.9899799599, + "1495": 0.9919839679, + "1496": 0.993987976, + "1497": 0.995991984, + "1498": 0.997995992, + "1499": 1.0, + "1500": 0.0, + "1501": 0.002004008, + "1502": 0.004008016, + "1503": 0.006012024, + "1504": 0.0080160321, + "1505": 0.0100200401, + "1506": 0.0120240481, + "1507": 0.0140280561, + "1508": 0.0160320641, + "1509": 0.0180360721, + "1510": 0.0200400802, + "1511": 0.0220440882, + "1512": 0.0240480962, + "1513": 0.0260521042, + "1514": 0.0280561122, + "1515": 0.0300601202, + "1516": 0.0320641283, + "1517": 0.0340681363, + "1518": 0.0360721443, + "1519": 0.0380761523, + "1520": 0.0400801603, + "1521": 0.0420841683, + "1522": 0.0440881764, + "1523": 0.0460921844, + "1524": 0.0480961924, + "1525": 0.0501002004, + "1526": 0.0521042084, + "1527": 0.0541082164, + "1528": 0.0561122244, + "1529": 0.0581162325, + "1530": 0.0601202405, + "1531": 0.0621242485, + "1532": 0.0641282565, + "1533": 0.0661322645, + "1534": 0.0681362725, + "1535": 0.0701402806, + "1536": 0.0721442886, + "1537": 0.0741482966, + "1538": 0.0761523046, + "1539": 0.0781563126, + "1540": 0.0801603206, + "1541": 0.0821643287, + "1542": 0.0841683367, + "1543": 0.0861723447, + "1544": 0.0881763527, + "1545": 0.0901803607, + "1546": 0.0921843687, + "1547": 0.0941883768, + "1548": 0.0961923848, + "1549": 0.0981963928, + "1550": 0.1002004008, + "1551": 0.1022044088, + "1552": 0.1042084168, + "1553": 0.1062124248, + "1554": 0.1082164329, + "1555": 0.1102204409, + "1556": 0.1122244489, + "1557": 0.1142284569, + "1558": 0.1162324649, + "1559": 0.1182364729, + "1560": 0.120240481, + "1561": 0.122244489, + "1562": 0.124248497, + "1563": 0.126252505, + "1564": 0.128256513, + "1565": 0.130260521, + "1566": 0.1322645291, + "1567": 0.1342685371, + "1568": 0.1362725451, + "1569": 0.1382765531, + "1570": 0.1402805611, + "1571": 0.1422845691, + "1572": 0.1442885772, + "1573": 0.1462925852, + "1574": 0.1482965932, + "1575": 0.1503006012, + "1576": 0.1523046092, + "1577": 0.1543086172, + "1578": 0.1563126253, + "1579": 0.1583166333, + "1580": 0.1603206413, + "1581": 0.1623246493, + "1582": 0.1643286573, + "1583": 0.1663326653, + "1584": 0.1683366733, + "1585": 0.1703406814, + "1586": 0.1723446894, + "1587": 0.1743486974, + "1588": 0.1763527054, + "1589": 0.1783567134, + "1590": 0.1803607214, + "1591": 0.1823647295, + "1592": 0.1843687375, + "1593": 0.1863727455, + "1594": 0.1883767535, + "1595": 0.1903807615, + "1596": 0.1923847695, + "1597": 0.1943887776, + "1598": 0.1963927856, + "1599": 0.1983967936, + "1600": 0.2004008016, + "1601": 0.2024048096, + "1602": 0.2044088176, + "1603": 0.2064128257, + "1604": 0.2084168337, + "1605": 0.2104208417, + "1606": 0.2124248497, + "1607": 0.2144288577, + "1608": 0.2164328657, + "1609": 0.2184368737, + "1610": 0.2204408818, + "1611": 0.2224448898, + "1612": 0.2244488978, + "1613": 0.2264529058, + "1614": 0.2284569138, + "1615": 0.2304609218, + "1616": 0.2324649299, + "1617": 0.2344689379, + "1618": 0.2364729459, + "1619": 0.2384769539, + "1620": 0.2404809619, + "1621": 0.2424849699, + "1622": 0.244488978, + "1623": 0.246492986, + "1624": 0.248496994, + "1625": 0.250501002, + "1626": 0.25250501, + "1627": 0.254509018, + "1628": 0.2565130261, + "1629": 0.2585170341, + "1630": 0.2605210421, + "1631": 0.2625250501, + "1632": 0.2645290581, + "1633": 0.2665330661, + "1634": 0.2685370741, + "1635": 0.2705410822, + "1636": 0.2725450902, + "1637": 0.2745490982, + "1638": 0.2765531062, + "1639": 0.2785571142, + "1640": 0.2805611222, + "1641": 0.2825651303, + "1642": 0.2845691383, + "1643": 0.2865731463, + "1644": 0.2885771543, + "1645": 0.2905811623, + "1646": 0.2925851703, + "1647": 0.2945891784, + "1648": 0.2965931864, + "1649": 0.2985971944, + "1650": 0.3006012024, + "1651": 0.3026052104, + "1652": 0.3046092184, + "1653": 0.3066132265, + "1654": 0.3086172345, + "1655": 0.3106212425, + "1656": 0.3126252505, + "1657": 0.3146292585, + "1658": 0.3166332665, + "1659": 0.3186372745, + "1660": 0.3206412826, + "1661": 0.3226452906, + "1662": 0.3246492986, + "1663": 0.3266533066, + "1664": 0.3286573146, + "1665": 0.3306613226, + "1666": 0.3326653307, + "1667": 0.3346693387, + "1668": 0.3366733467, + "1669": 0.3386773547, + "1670": 0.3406813627, + "1671": 0.3426853707, + "1672": 0.3446893788, + "1673": 0.3466933868, + "1674": 0.3486973948, + "1675": 0.3507014028, + "1676": 0.3527054108, + "1677": 0.3547094188, + "1678": 0.3567134269, + "1679": 0.3587174349, + "1680": 0.3607214429, + "1681": 0.3627254509, + "1682": 0.3647294589, + "1683": 0.3667334669, + "1684": 0.3687374749, + "1685": 0.370741483, + "1686": 0.372745491, + "1687": 0.374749499, + "1688": 0.376753507, + "1689": 0.378757515, + "1690": 0.380761523, + "1691": 0.3827655311, + "1692": 0.3847695391, + "1693": 0.3867735471, + "1694": 0.3887775551, + "1695": 0.3907815631, + "1696": 0.3927855711, + "1697": 0.3947895792, + "1698": 0.3967935872, + "1699": 0.3987975952, + "1700": 0.4008016032, + "1701": 0.4028056112, + "1702": 0.4048096192, + "1703": 0.4068136273, + "1704": 0.4088176353, + "1705": 0.4108216433, + "1706": 0.4128256513, + "1707": 0.4148296593, + "1708": 0.4168336673, + "1709": 0.4188376754, + "1710": 0.4208416834, + "1711": 0.4228456914, + "1712": 0.4248496994, + "1713": 0.4268537074, + "1714": 0.4288577154, + "1715": 0.4308617234, + "1716": 0.4328657315, + "1717": 0.4348697395, + "1718": 0.4368737475, + "1719": 0.4388777555, + "1720": 0.4408817635, + "1721": 0.4428857715, + "1722": 0.4448897796, + "1723": 0.4468937876, + "1724": 0.4488977956, + "1725": 0.4509018036, + "1726": 0.4529058116, + "1727": 0.4549098196, + "1728": 0.4569138277, + "1729": 0.4589178357, + "1730": 0.4609218437, + "1731": 0.4629258517, + "1732": 0.4649298597, + "1733": 0.4669338677, + "1734": 0.4689378758, + "1735": 0.4709418838, + "1736": 0.4729458918, + "1737": 0.4749498998, + "1738": 0.4769539078, + "1739": 0.4789579158, + "1740": 0.4809619238, + "1741": 0.4829659319, + "1742": 0.4849699399, + "1743": 0.4869739479, + "1744": 0.4889779559, + "1745": 0.4909819639, + "1746": 0.4929859719, + "1747": 0.49498998, + "1748": 0.496993988, + "1749": 0.498997996, + "1750": 0.501002004, + "1751": 0.503006012, + "1752": 0.50501002, + "1753": 0.5070140281, + "1754": 0.5090180361, + "1755": 0.5110220441, + "1756": 0.5130260521, + "1757": 0.5150300601, + "1758": 0.5170340681, + "1759": 0.5190380762, + "1760": 0.5210420842, + "1761": 0.5230460922, + "1762": 0.5250501002, + "1763": 0.5270541082, + "1764": 0.5290581162, + "1765": 0.5310621242, + "1766": 0.5330661323, + "1767": 0.5350701403, + "1768": 0.5370741483, + "1769": 0.5390781563, + "1770": 0.5410821643, + "1771": 0.5430861723, + "1772": 0.5450901804, + "1773": 0.5470941884, + "1774": 0.5490981964, + "1775": 0.5511022044, + "1776": 0.5531062124, + "1777": 0.5551102204, + "1778": 0.5571142285, + "1779": 0.5591182365, + "1780": 0.5611222445, + "1781": 0.5631262525, + "1782": 0.5651302605, + "1783": 0.5671342685, + "1784": 0.5691382766, + "1785": 0.5711422846, + "1786": 0.5731462926, + "1787": 0.5751503006, + "1788": 0.5771543086, + "1789": 0.5791583166, + "1790": 0.5811623246, + "1791": 0.5831663327, + "1792": 0.5851703407, + "1793": 0.5871743487, + "1794": 0.5891783567, + "1795": 0.5911823647, + "1796": 0.5931863727, + "1797": 0.5951903808, + "1798": 0.5971943888, + "1799": 0.5991983968, + "1800": 0.6012024048, + "1801": 0.6032064128, + "1802": 0.6052104208, + "1803": 0.6072144289, + "1804": 0.6092184369, + "1805": 0.6112224449, + "1806": 0.6132264529, + "1807": 0.6152304609, + "1808": 0.6172344689, + "1809": 0.619238477, + "1810": 0.621242485, + "1811": 0.623246493, + "1812": 0.625250501, + "1813": 0.627254509, + "1814": 0.629258517, + "1815": 0.6312625251, + "1816": 0.6332665331, + "1817": 0.6352705411, + "1818": 0.6372745491, + "1819": 0.6392785571, + "1820": 0.6412825651, + "1821": 0.6432865731, + "1822": 0.6452905812, + "1823": 0.6472945892, + "1824": 0.6492985972, + "1825": 0.6513026052, + "1826": 0.6533066132, + "1827": 0.6553106212, + "1828": 0.6573146293, + "1829": 0.6593186373, + "1830": 0.6613226453, + "1831": 0.6633266533, + "1832": 0.6653306613, + "1833": 0.6673346693, + "1834": 0.6693386774, + "1835": 0.6713426854, + "1836": 0.6733466934, + "1837": 0.6753507014, + "1838": 0.6773547094, + "1839": 0.6793587174, + "1840": 0.6813627255, + "1841": 0.6833667335, + "1842": 0.6853707415, + "1843": 0.6873747495, + "1844": 0.6893787575, + "1845": 0.6913827655, + "1846": 0.6933867735, + "1847": 0.6953907816, + "1848": 0.6973947896, + "1849": 0.6993987976, + "1850": 0.7014028056, + "1851": 0.7034068136, + "1852": 0.7054108216, + "1853": 0.7074148297, + "1854": 0.7094188377, + "1855": 0.7114228457, + "1856": 0.7134268537, + "1857": 0.7154308617, + "1858": 0.7174348697, + "1859": 0.7194388778, + "1860": 0.7214428858, + "1861": 0.7234468938, + "1862": 0.7254509018, + "1863": 0.7274549098, + "1864": 0.7294589178, + "1865": 0.7314629259, + "1866": 0.7334669339, + "1867": 0.7354709419, + "1868": 0.7374749499, + "1869": 0.7394789579, + "1870": 0.7414829659, + "1871": 0.7434869739, + "1872": 0.745490982, + "1873": 0.74749499, + "1874": 0.749498998, + "1875": 0.751503006, + "1876": 0.753507014, + "1877": 0.755511022, + "1878": 0.7575150301, + "1879": 0.7595190381, + "1880": 0.7615230461, + "1881": 0.7635270541, + "1882": 0.7655310621, + "1883": 0.7675350701, + "1884": 0.7695390782, + "1885": 0.7715430862, + "1886": 0.7735470942, + "1887": 0.7755511022, + "1888": 0.7775551102, + "1889": 0.7795591182, + "1890": 0.7815631263, + "1891": 0.7835671343, + "1892": 0.7855711423, + "1893": 0.7875751503, + "1894": 0.7895791583, + "1895": 0.7915831663, + "1896": 0.7935871743, + "1897": 0.7955911824, + "1898": 0.7975951904, + "1899": 0.7995991984, + "1900": 0.8016032064, + "1901": 0.8036072144, + "1902": 0.8056112224, + "1903": 0.8076152305, + "1904": 0.8096192385, + "1905": 0.8116232465, + "1906": 0.8136272545, + "1907": 0.8156312625, + "1908": 0.8176352705, + "1909": 0.8196392786, + "1910": 0.8216432866, + "1911": 0.8236472946, + "1912": 0.8256513026, + "1913": 0.8276553106, + "1914": 0.8296593186, + "1915": 0.8316633267, + "1916": 0.8336673347, + "1917": 0.8356713427, + "1918": 0.8376753507, + "1919": 0.8396793587, + "1920": 0.8416833667, + "1921": 0.8436873747, + "1922": 0.8456913828, + "1923": 0.8476953908, + "1924": 0.8496993988, + "1925": 0.8517034068, + "1926": 0.8537074148, + "1927": 0.8557114228, + "1928": 0.8577154309, + "1929": 0.8597194389, + "1930": 0.8617234469, + "1931": 0.8637274549, + "1932": 0.8657314629, + "1933": 0.8677354709, + "1934": 0.869739479, + "1935": 0.871743487, + "1936": 0.873747495, + "1937": 0.875751503, + "1938": 0.877755511, + "1939": 0.879759519, + "1940": 0.8817635271, + "1941": 0.8837675351, + "1942": 0.8857715431, + "1943": 0.8877755511, + "1944": 0.8897795591, + "1945": 0.8917835671, + "1946": 0.8937875752, + "1947": 0.8957915832, + "1948": 0.8977955912, + "1949": 0.8997995992, + "1950": 0.9018036072, + "1951": 0.9038076152, + "1952": 0.9058116232, + "1953": 0.9078156313, + "1954": 0.9098196393, + "1955": 0.9118236473, + "1956": 0.9138276553, + "1957": 0.9158316633, + "1958": 0.9178356713, + "1959": 0.9198396794, + "1960": 0.9218436874, + "1961": 0.9238476954, + "1962": 0.9258517034, + "1963": 0.9278557114, + "1964": 0.9298597194, + "1965": 0.9318637275, + "1966": 0.9338677355, + "1967": 0.9358717435, + "1968": 0.9378757515, + "1969": 0.9398797595, + "1970": 0.9418837675, + "1971": 0.9438877756, + "1972": 0.9458917836, + "1973": 0.9478957916, + "1974": 0.9498997996, + "1975": 0.9519038076, + "1976": 0.9539078156, + "1977": 0.9559118236, + "1978": 0.9579158317, + "1979": 0.9599198397, + "1980": 0.9619238477, + "1981": 0.9639278557, + "1982": 0.9659318637, + "1983": 0.9679358717, + "1984": 0.9699398798, + "1985": 0.9719438878, + "1986": 0.9739478958, + "1987": 0.9759519038, + "1988": 0.9779559118, + "1989": 0.9799599198, + "1990": 0.9819639279, + "1991": 0.9839679359, + "1992": 0.9859719439, + "1993": 0.9879759519, + "1994": 0.9899799599, + "1995": 0.9919839679, + "1996": 0.993987976, + "1997": 0.995991984, + "1998": 0.997995992, + "1999": 1.0, + "2000": 0.0, + "2001": 0.002004008, + "2002": 0.004008016, + "2003": 0.006012024, + "2004": 0.0080160321, + "2005": 0.0100200401, + "2006": 0.0120240481, + "2007": 0.0140280561, + "2008": 0.0160320641, + "2009": 0.0180360721, + "2010": 0.0200400802, + "2011": 0.0220440882, + "2012": 0.0240480962, + "2013": 0.0260521042, + "2014": 0.0280561122, + "2015": 0.0300601202, + "2016": 0.0320641283, + "2017": 0.0340681363, + "2018": 0.0360721443, + "2019": 0.0380761523, + "2020": 0.0400801603, + "2021": 0.0420841683, + "2022": 0.0440881764, + "2023": 0.0460921844, + "2024": 0.0480961924, + "2025": 0.0501002004, + "2026": 0.0521042084, + "2027": 0.0541082164, + "2028": 0.0561122244, + "2029": 0.0581162325, + "2030": 0.0601202405, + "2031": 0.0621242485, + "2032": 0.0641282565, + "2033": 0.0661322645, + "2034": 0.0681362725, + "2035": 0.0701402806, + "2036": 0.0721442886, + "2037": 0.0741482966, + "2038": 0.0761523046, + "2039": 0.0781563126, + "2040": 0.0801603206, + "2041": 0.0821643287, + "2042": 0.0841683367, + "2043": 0.0861723447, + "2044": 0.0881763527, + "2045": 0.0901803607, + "2046": 0.0921843687, + "2047": 0.0941883768, + "2048": 0.0961923848, + "2049": 0.0981963928, + "2050": 0.1002004008, + "2051": 0.1022044088, + "2052": 0.1042084168, + "2053": 0.1062124248, + "2054": 0.1082164329, + "2055": 0.1102204409, + "2056": 0.1122244489, + "2057": 0.1142284569, + "2058": 0.1162324649, + "2059": 0.1182364729, + "2060": 0.120240481, + "2061": 0.122244489, + "2062": 0.124248497, + "2063": 0.126252505, + "2064": 0.128256513, + "2065": 0.130260521, + "2066": 0.1322645291, + "2067": 0.1342685371, + "2068": 0.1362725451, + "2069": 0.1382765531, + "2070": 0.1402805611, + "2071": 0.1422845691, + "2072": 0.1442885772, + "2073": 0.1462925852, + "2074": 0.1482965932, + "2075": 0.1503006012, + "2076": 0.1523046092, + "2077": 0.1543086172, + "2078": 0.1563126253, + "2079": 0.1583166333, + "2080": 0.1603206413, + "2081": 0.1623246493, + "2082": 0.1643286573, + "2083": 0.1663326653, + "2084": 0.1683366733, + "2085": 0.1703406814, + "2086": 0.1723446894, + "2087": 0.1743486974, + "2088": 0.1763527054, + "2089": 0.1783567134, + "2090": 0.1803607214, + "2091": 0.1823647295, + "2092": 0.1843687375, + "2093": 0.1863727455, + "2094": 0.1883767535, + "2095": 0.1903807615, + "2096": 0.1923847695, + "2097": 0.1943887776, + "2098": 0.1963927856, + "2099": 0.1983967936, + "2100": 0.2004008016, + "2101": 0.2024048096, + "2102": 0.2044088176, + "2103": 0.2064128257, + "2104": 0.2084168337, + "2105": 0.2104208417, + "2106": 0.2124248497, + "2107": 0.2144288577, + "2108": 0.2164328657, + "2109": 0.2184368737, + "2110": 0.2204408818, + "2111": 0.2224448898, + "2112": 0.2244488978, + "2113": 0.2264529058, + "2114": 0.2284569138, + "2115": 0.2304609218, + "2116": 0.2324649299, + "2117": 0.2344689379, + "2118": 0.2364729459, + "2119": 0.2384769539, + "2120": 0.2404809619, + "2121": 0.2424849699, + "2122": 0.244488978, + "2123": 0.246492986, + "2124": 0.248496994, + "2125": 0.250501002, + "2126": 0.25250501, + "2127": 0.254509018, + "2128": 0.2565130261, + "2129": 0.2585170341, + "2130": 0.2605210421, + "2131": 0.2625250501, + "2132": 0.2645290581, + "2133": 0.2665330661, + "2134": 0.2685370741, + "2135": 0.2705410822, + "2136": 0.2725450902, + "2137": 0.2745490982, + "2138": 0.2765531062, + "2139": 0.2785571142, + "2140": 0.2805611222, + "2141": 0.2825651303, + "2142": 0.2845691383, + "2143": 0.2865731463, + "2144": 0.2885771543, + "2145": 0.2905811623, + "2146": 0.2925851703, + "2147": 0.2945891784, + "2148": 0.2965931864, + "2149": 0.2985971944, + "2150": 0.3006012024, + "2151": 0.3026052104, + "2152": 0.3046092184, + "2153": 0.3066132265, + "2154": 0.3086172345, + "2155": 0.3106212425, + "2156": 0.3126252505, + "2157": 0.3146292585, + "2158": 0.3166332665, + "2159": 0.3186372745, + "2160": 0.3206412826, + "2161": 0.3226452906, + "2162": 0.3246492986, + "2163": 0.3266533066, + "2164": 0.3286573146, + "2165": 0.3306613226, + "2166": 0.3326653307, + "2167": 0.3346693387, + "2168": 0.3366733467, + "2169": 0.3386773547, + "2170": 0.3406813627, + "2171": 0.3426853707, + "2172": 0.3446893788, + "2173": 0.3466933868, + "2174": 0.3486973948, + "2175": 0.3507014028, + "2176": 0.3527054108, + "2177": 0.3547094188, + "2178": 0.3567134269, + "2179": 0.3587174349, + "2180": 0.3607214429, + "2181": 0.3627254509, + "2182": 0.3647294589, + "2183": 0.3667334669, + "2184": 0.3687374749, + "2185": 0.370741483, + "2186": 0.372745491, + "2187": 0.374749499, + "2188": 0.376753507, + "2189": 0.378757515, + "2190": 0.380761523, + "2191": 0.3827655311, + "2192": 0.3847695391, + "2193": 0.3867735471, + "2194": 0.3887775551, + "2195": 0.3907815631, + "2196": 0.3927855711, + "2197": 0.3947895792, + "2198": 0.3967935872, + "2199": 0.3987975952, + "2200": 0.4008016032, + "2201": 0.4028056112, + "2202": 0.4048096192, + "2203": 0.4068136273, + "2204": 0.4088176353, + "2205": 0.4108216433, + "2206": 0.4128256513, + "2207": 0.4148296593, + "2208": 0.4168336673, + "2209": 0.4188376754, + "2210": 0.4208416834, + "2211": 0.4228456914, + "2212": 0.4248496994, + "2213": 0.4268537074, + "2214": 0.4288577154, + "2215": 0.4308617234, + "2216": 0.4328657315, + "2217": 0.4348697395, + "2218": 0.4368737475, + "2219": 0.4388777555, + "2220": 0.4408817635, + "2221": 0.4428857715, + "2222": 0.4448897796, + "2223": 0.4468937876, + "2224": 0.4488977956, + "2225": 0.4509018036, + "2226": 0.4529058116, + "2227": 0.4549098196, + "2228": 0.4569138277, + "2229": 0.4589178357, + "2230": 0.4609218437, + "2231": 0.4629258517, + "2232": 0.4649298597, + "2233": 0.4669338677, + "2234": 0.4689378758, + "2235": 0.4709418838, + "2236": 0.4729458918, + "2237": 0.4749498998, + "2238": 0.4769539078, + "2239": 0.4789579158, + "2240": 0.4809619238, + "2241": 0.4829659319, + "2242": 0.4849699399, + "2243": 0.4869739479, + "2244": 0.4889779559, + "2245": 0.4909819639, + "2246": 0.4929859719, + "2247": 0.49498998, + "2248": 0.496993988, + "2249": 0.498997996, + "2250": 0.501002004, + "2251": 0.503006012, + "2252": 0.50501002, + "2253": 0.5070140281, + "2254": 0.5090180361, + "2255": 0.5110220441, + "2256": 0.5130260521, + "2257": 0.5150300601, + "2258": 0.5170340681, + "2259": 0.5190380762, + "2260": 0.5210420842, + "2261": 0.5230460922, + "2262": 0.5250501002, + "2263": 0.5270541082, + "2264": 0.5290581162, + "2265": 0.5310621242, + "2266": 0.5330661323, + "2267": 0.5350701403, + "2268": 0.5370741483, + "2269": 0.5390781563, + "2270": 0.5410821643, + "2271": 0.5430861723, + "2272": 0.5450901804, + "2273": 0.5470941884, + "2274": 0.5490981964, + "2275": 0.5511022044, + "2276": 0.5531062124, + "2277": 0.5551102204, + "2278": 0.5571142285, + "2279": 0.5591182365, + "2280": 0.5611222445, + "2281": 0.5631262525, + "2282": 0.5651302605, + "2283": 0.5671342685, + "2284": 0.5691382766, + "2285": 0.5711422846, + "2286": 0.5731462926, + "2287": 0.5751503006, + "2288": 0.5771543086, + "2289": 0.5791583166, + "2290": 0.5811623246, + "2291": 0.5831663327, + "2292": 0.5851703407, + "2293": 0.5871743487, + "2294": 0.5891783567, + "2295": 0.5911823647, + "2296": 0.5931863727, + "2297": 0.5951903808, + "2298": 0.5971943888, + "2299": 0.5991983968, + "2300": 0.6012024048, + "2301": 0.6032064128, + "2302": 0.6052104208, + "2303": 0.6072144289, + "2304": 0.6092184369, + "2305": 0.6112224449, + "2306": 0.6132264529, + "2307": 0.6152304609, + "2308": 0.6172344689, + "2309": 0.619238477, + "2310": 0.621242485, + "2311": 0.623246493, + "2312": 0.625250501, + "2313": 0.627254509, + "2314": 0.629258517, + "2315": 0.6312625251, + "2316": 0.6332665331, + "2317": 0.6352705411, + "2318": 0.6372745491, + "2319": 0.6392785571, + "2320": 0.6412825651, + "2321": 0.6432865731, + "2322": 0.6452905812, + "2323": 0.6472945892, + "2324": 0.6492985972, + "2325": 0.6513026052, + "2326": 0.6533066132, + "2327": 0.6553106212, + "2328": 0.6573146293, + "2329": 0.6593186373, + "2330": 0.6613226453, + "2331": 0.6633266533, + "2332": 0.6653306613, + "2333": 0.6673346693, + "2334": 0.6693386774, + "2335": 0.6713426854, + "2336": 0.6733466934, + "2337": 0.6753507014, + "2338": 0.6773547094, + "2339": 0.6793587174, + "2340": 0.6813627255, + "2341": 0.6833667335, + "2342": 0.6853707415, + "2343": 0.6873747495, + "2344": 0.6893787575, + "2345": 0.6913827655, + "2346": 0.6933867735, + "2347": 0.6953907816, + "2348": 0.6973947896, + "2349": 0.6993987976, + "2350": 0.7014028056, + "2351": 0.7034068136, + "2352": 0.7054108216, + "2353": 0.7074148297, + "2354": 0.7094188377, + "2355": 0.7114228457, + "2356": 0.7134268537, + "2357": 0.7154308617, + "2358": 0.7174348697, + "2359": 0.7194388778, + "2360": 0.7214428858, + "2361": 0.7234468938, + "2362": 0.7254509018, + "2363": 0.7274549098, + "2364": 0.7294589178, + "2365": 0.7314629259, + "2366": 0.7334669339, + "2367": 0.7354709419, + "2368": 0.7374749499, + "2369": 0.7394789579, + "2370": 0.7414829659, + "2371": 0.7434869739, + "2372": 0.745490982, + "2373": 0.74749499, + "2374": 0.749498998, + "2375": 0.751503006, + "2376": 0.753507014, + "2377": 0.755511022, + "2378": 0.7575150301, + "2379": 0.7595190381, + "2380": 0.7615230461, + "2381": 0.7635270541, + "2382": 0.7655310621, + "2383": 0.7675350701, + "2384": 0.7695390782, + "2385": 0.7715430862, + "2386": 0.7735470942, + "2387": 0.7755511022, + "2388": 0.7775551102, + "2389": 0.7795591182, + "2390": 0.7815631263, + "2391": 0.7835671343, + "2392": 0.7855711423, + "2393": 0.7875751503, + "2394": 0.7895791583, + "2395": 0.7915831663, + "2396": 0.7935871743, + "2397": 0.7955911824, + "2398": 0.7975951904, + "2399": 0.7995991984, + "2400": 0.8016032064, + "2401": 0.8036072144, + "2402": 0.8056112224, + "2403": 0.8076152305, + "2404": 0.8096192385, + "2405": 0.8116232465, + "2406": 0.8136272545, + "2407": 0.8156312625, + "2408": 0.8176352705, + "2409": 0.8196392786, + "2410": 0.8216432866, + "2411": 0.8236472946, + "2412": 0.8256513026, + "2413": 0.8276553106, + "2414": 0.8296593186, + "2415": 0.8316633267, + "2416": 0.8336673347, + "2417": 0.8356713427, + "2418": 0.8376753507, + "2419": 0.8396793587, + "2420": 0.8416833667, + "2421": 0.8436873747, + "2422": 0.8456913828, + "2423": 0.8476953908, + "2424": 0.8496993988, + "2425": 0.8517034068, + "2426": 0.8537074148, + "2427": 0.8557114228, + "2428": 0.8577154309, + "2429": 0.8597194389, + "2430": 0.8617234469, + "2431": 0.8637274549, + "2432": 0.8657314629, + "2433": 0.8677354709, + "2434": 0.869739479, + "2435": 0.871743487, + "2436": 0.873747495, + "2437": 0.875751503, + "2438": 0.877755511, + "2439": 0.879759519, + "2440": 0.8817635271, + "2441": 0.8837675351, + "2442": 0.8857715431, + "2443": 0.8877755511, + "2444": 0.8897795591, + "2445": 0.8917835671, + "2446": 0.8937875752, + "2447": 0.8957915832, + "2448": 0.8977955912, + "2449": 0.8997995992, + "2450": 0.9018036072, + "2451": 0.9038076152, + "2452": 0.9058116232, + "2453": 0.9078156313, + "2454": 0.9098196393, + "2455": 0.9118236473, + "2456": 0.9138276553, + "2457": 0.9158316633, + "2458": 0.9178356713, + "2459": 0.9198396794, + "2460": 0.9218436874, + "2461": 0.9238476954, + "2462": 0.9258517034, + "2463": 0.9278557114, + "2464": 0.9298597194, + "2465": 0.9318637275, + "2466": 0.9338677355, + "2467": 0.9358717435, + "2468": 0.9378757515, + "2469": 0.9398797595, + "2470": 0.9418837675, + "2471": 0.9438877756, + "2472": 0.9458917836, + "2473": 0.9478957916, + "2474": 0.9498997996, + "2475": 0.9519038076, + "2476": 0.9539078156, + "2477": 0.9559118236, + "2478": 0.9579158317, + "2479": 0.9599198397, + "2480": 0.9619238477, + "2481": 0.9639278557, + "2482": 0.9659318637, + "2483": 0.9679358717, + "2484": 0.9699398798, + "2485": 0.9719438878, + "2486": 0.9739478958, + "2487": 0.9759519038, + "2488": 0.9779559118, + "2489": 0.9799599198, + "2490": 0.9819639279, + "2491": 0.9839679359, + "2492": 0.9859719439, + "2493": 0.9879759519, + "2494": 0.9899799599, + "2495": 0.9919839679, + "2496": 0.993987976, + "2497": 0.995991984, + "2498": 0.997995992, + "2499": 1.0, + "2500": 0.0, + "2501": 0.002004008, + "2502": 0.004008016, + "2503": 0.006012024, + "2504": 0.0080160321, + "2505": 0.0100200401, + "2506": 0.0120240481, + "2507": 0.0140280561, + "2508": 0.0160320641, + "2509": 0.0180360721, + "2510": 0.0200400802, + "2511": 0.0220440882, + "2512": 0.0240480962, + "2513": 0.0260521042, + "2514": 0.0280561122, + "2515": 0.0300601202, + "2516": 0.0320641283, + "2517": 0.0340681363, + "2518": 0.0360721443, + "2519": 0.0380761523, + "2520": 0.0400801603, + "2521": 0.0420841683, + "2522": 0.0440881764, + "2523": 0.0460921844, + "2524": 0.0480961924, + "2525": 0.0501002004, + "2526": 0.0521042084, + "2527": 0.0541082164, + "2528": 0.0561122244, + "2529": 0.0581162325, + "2530": 0.0601202405, + "2531": 0.0621242485, + "2532": 0.0641282565, + "2533": 0.0661322645, + "2534": 0.0681362725, + "2535": 0.0701402806, + "2536": 0.0721442886, + "2537": 0.0741482966, + "2538": 0.0761523046, + "2539": 0.0781563126, + "2540": 0.0801603206, + "2541": 0.0821643287, + "2542": 0.0841683367, + "2543": 0.0861723447, + "2544": 0.0881763527, + "2545": 0.0901803607, + "2546": 0.0921843687, + "2547": 0.0941883768, + "2548": 0.0961923848, + "2549": 0.0981963928, + "2550": 0.1002004008, + "2551": 0.1022044088, + "2552": 0.1042084168, + "2553": 0.1062124248, + "2554": 0.1082164329, + "2555": 0.1102204409, + "2556": 0.1122244489, + "2557": 0.1142284569, + "2558": 0.1162324649, + "2559": 0.1182364729, + "2560": 0.120240481, + "2561": 0.122244489, + "2562": 0.124248497, + "2563": 0.126252505, + "2564": 0.128256513, + "2565": 0.130260521, + "2566": 0.1322645291, + "2567": 0.1342685371, + "2568": 0.1362725451, + "2569": 0.1382765531, + "2570": 0.1402805611, + "2571": 0.1422845691, + "2572": 0.1442885772, + "2573": 0.1462925852, + "2574": 0.1482965932, + "2575": 0.1503006012, + "2576": 0.1523046092, + "2577": 0.1543086172, + "2578": 0.1563126253, + "2579": 0.1583166333, + "2580": 0.1603206413, + "2581": 0.1623246493, + "2582": 0.1643286573, + "2583": 0.1663326653, + "2584": 0.1683366733, + "2585": 0.1703406814, + "2586": 0.1723446894, + "2587": 0.1743486974, + "2588": 0.1763527054, + "2589": 0.1783567134, + "2590": 0.1803607214, + "2591": 0.1823647295, + "2592": 0.1843687375, + "2593": 0.1863727455, + "2594": 0.1883767535, + "2595": 0.1903807615, + "2596": 0.1923847695, + "2597": 0.1943887776, + "2598": 0.1963927856, + "2599": 0.1983967936, + "2600": 0.2004008016, + "2601": 0.2024048096, + "2602": 0.2044088176, + "2603": 0.2064128257, + "2604": 0.2084168337, + "2605": 0.2104208417, + "2606": 0.2124248497, + "2607": 0.2144288577, + "2608": 0.2164328657, + "2609": 0.2184368737, + "2610": 0.2204408818, + "2611": 0.2224448898, + "2612": 0.2244488978, + "2613": 0.2264529058, + "2614": 0.2284569138, + "2615": 0.2304609218, + "2616": 0.2324649299, + "2617": 0.2344689379, + "2618": 0.2364729459, + "2619": 0.2384769539, + "2620": 0.2404809619, + "2621": 0.2424849699, + "2622": 0.244488978, + "2623": 0.246492986, + "2624": 0.248496994, + "2625": 0.250501002, + "2626": 0.25250501, + "2627": 0.254509018, + "2628": 0.2565130261, + "2629": 0.2585170341, + "2630": 0.2605210421, + "2631": 0.2625250501, + "2632": 0.2645290581, + "2633": 0.2665330661, + "2634": 0.2685370741, + "2635": 0.2705410822, + "2636": 0.2725450902, + "2637": 0.2745490982, + "2638": 0.2765531062, + "2639": 0.2785571142, + "2640": 0.2805611222, + "2641": 0.2825651303, + "2642": 0.2845691383, + "2643": 0.2865731463, + "2644": 0.2885771543, + "2645": 0.2905811623, + "2646": 0.2925851703, + "2647": 0.2945891784, + "2648": 0.2965931864, + "2649": 0.2985971944, + "2650": 0.3006012024, + "2651": 0.3026052104, + "2652": 0.3046092184, + "2653": 0.3066132265, + "2654": 0.3086172345, + "2655": 0.3106212425, + "2656": 0.3126252505, + "2657": 0.3146292585, + "2658": 0.3166332665, + "2659": 0.3186372745, + "2660": 0.3206412826, + "2661": 0.3226452906, + "2662": 0.3246492986, + "2663": 0.3266533066, + "2664": 0.3286573146, + "2665": 0.3306613226, + "2666": 0.3326653307, + "2667": 0.3346693387, + "2668": 0.3366733467, + "2669": 0.3386773547, + "2670": 0.3406813627, + "2671": 0.3426853707, + "2672": 0.3446893788, + "2673": 0.3466933868, + "2674": 0.3486973948, + "2675": 0.3507014028, + "2676": 0.3527054108, + "2677": 0.3547094188, + "2678": 0.3567134269, + "2679": 0.3587174349, + "2680": 0.3607214429, + "2681": 0.3627254509, + "2682": 0.3647294589, + "2683": 0.3667334669, + "2684": 0.3687374749, + "2685": 0.370741483, + "2686": 0.372745491, + "2687": 0.374749499, + "2688": 0.376753507, + "2689": 0.378757515, + "2690": 0.380761523, + "2691": 0.3827655311, + "2692": 0.3847695391, + "2693": 0.3867735471, + "2694": 0.3887775551, + "2695": 0.3907815631, + "2696": 0.3927855711, + "2697": 0.3947895792, + "2698": 0.3967935872, + "2699": 0.3987975952, + "2700": 0.4008016032, + "2701": 0.4028056112, + "2702": 0.4048096192, + "2703": 0.4068136273, + "2704": 0.4088176353, + "2705": 0.4108216433, + "2706": 0.4128256513, + "2707": 0.4148296593, + "2708": 0.4168336673, + "2709": 0.4188376754, + "2710": 0.4208416834, + "2711": 0.4228456914, + "2712": 0.4248496994, + "2713": 0.4268537074, + "2714": 0.4288577154, + "2715": 0.4308617234, + "2716": 0.4328657315, + "2717": 0.4348697395, + "2718": 0.4368737475, + "2719": 0.4388777555, + "2720": 0.4408817635, + "2721": 0.4428857715, + "2722": 0.4448897796, + "2723": 0.4468937876, + "2724": 0.4488977956, + "2725": 0.4509018036, + "2726": 0.4529058116, + "2727": 0.4549098196, + "2728": 0.4569138277, + "2729": 0.4589178357, + "2730": 0.4609218437, + "2731": 0.4629258517, + "2732": 0.4649298597, + "2733": 0.4669338677, + "2734": 0.4689378758, + "2735": 0.4709418838, + "2736": 0.4729458918, + "2737": 0.4749498998, + "2738": 0.4769539078, + "2739": 0.4789579158, + "2740": 0.4809619238, + "2741": 0.4829659319, + "2742": 0.4849699399, + "2743": 0.4869739479, + "2744": 0.4889779559, + "2745": 0.4909819639, + "2746": 0.4929859719, + "2747": 0.49498998, + "2748": 0.496993988, + "2749": 0.498997996, + "2750": 0.501002004, + "2751": 0.503006012, + "2752": 0.50501002, + "2753": 0.5070140281, + "2754": 0.5090180361, + "2755": 0.5110220441, + "2756": 0.5130260521, + "2757": 0.5150300601, + "2758": 0.5170340681, + "2759": 0.5190380762, + "2760": 0.5210420842, + "2761": 0.5230460922, + "2762": 0.5250501002, + "2763": 0.5270541082, + "2764": 0.5290581162, + "2765": 0.5310621242, + "2766": 0.5330661323, + "2767": 0.5350701403, + "2768": 0.5370741483, + "2769": 0.5390781563, + "2770": 0.5410821643, + "2771": 0.5430861723, + "2772": 0.5450901804, + "2773": 0.5470941884, + "2774": 0.5490981964, + "2775": 0.5511022044, + "2776": 0.5531062124, + "2777": 0.5551102204, + "2778": 0.5571142285, + "2779": 0.5591182365, + "2780": 0.5611222445, + "2781": 0.5631262525, + "2782": 0.5651302605, + "2783": 0.5671342685, + "2784": 0.5691382766, + "2785": 0.5711422846, + "2786": 0.5731462926, + "2787": 0.5751503006, + "2788": 0.5771543086, + "2789": 0.5791583166, + "2790": 0.5811623246, + "2791": 0.5831663327, + "2792": 0.5851703407, + "2793": 0.5871743487, + "2794": 0.5891783567, + "2795": 0.5911823647, + "2796": 0.5931863727, + "2797": 0.5951903808, + "2798": 0.5971943888, + "2799": 0.5991983968, + "2800": 0.6012024048, + "2801": 0.6032064128, + "2802": 0.6052104208, + "2803": 0.6072144289, + "2804": 0.6092184369, + "2805": 0.6112224449, + "2806": 0.6132264529, + "2807": 0.6152304609, + "2808": 0.6172344689, + "2809": 0.619238477, + "2810": 0.621242485, + "2811": 0.623246493, + "2812": 0.625250501, + "2813": 0.627254509, + "2814": 0.629258517, + "2815": 0.6312625251, + "2816": 0.6332665331, + "2817": 0.6352705411, + "2818": 0.6372745491, + "2819": 0.6392785571, + "2820": 0.6412825651, + "2821": 0.6432865731, + "2822": 0.6452905812, + "2823": 0.6472945892, + "2824": 0.6492985972, + "2825": 0.6513026052, + "2826": 0.6533066132, + "2827": 0.6553106212, + "2828": 0.6573146293, + "2829": 0.6593186373, + "2830": 0.6613226453, + "2831": 0.6633266533, + "2832": 0.6653306613, + "2833": 0.6673346693, + "2834": 0.6693386774, + "2835": 0.6713426854, + "2836": 0.6733466934, + "2837": 0.6753507014, + "2838": 0.6773547094, + "2839": 0.6793587174, + "2840": 0.6813627255, + "2841": 0.6833667335, + "2842": 0.6853707415, + "2843": 0.6873747495, + "2844": 0.6893787575, + "2845": 0.6913827655, + "2846": 0.6933867735, + "2847": 0.6953907816, + "2848": 0.6973947896, + "2849": 0.6993987976, + "2850": 0.7014028056, + "2851": 0.7034068136, + "2852": 0.7054108216, + "2853": 0.7074148297, + "2854": 0.7094188377, + "2855": 0.7114228457, + "2856": 0.7134268537, + "2857": 0.7154308617, + "2858": 0.7174348697, + "2859": 0.7194388778, + "2860": 0.7214428858, + "2861": 0.7234468938, + "2862": 0.7254509018, + "2863": 0.7274549098, + "2864": 0.7294589178, + "2865": 0.7314629259, + "2866": 0.7334669339, + "2867": 0.7354709419, + "2868": 0.7374749499, + "2869": 0.7394789579, + "2870": 0.7414829659, + "2871": 0.7434869739, + "2872": 0.745490982, + "2873": 0.74749499, + "2874": 0.749498998, + "2875": 0.751503006, + "2876": 0.753507014, + "2877": 0.755511022, + "2878": 0.7575150301, + "2879": 0.7595190381, + "2880": 0.7615230461, + "2881": 0.7635270541, + "2882": 0.7655310621, + "2883": 0.7675350701, + "2884": 0.7695390782, + "2885": 0.7715430862, + "2886": 0.7735470942, + "2887": 0.7755511022, + "2888": 0.7775551102, + "2889": 0.7795591182, + "2890": 0.7815631263, + "2891": 0.7835671343, + "2892": 0.7855711423, + "2893": 0.7875751503, + "2894": 0.7895791583, + "2895": 0.7915831663, + "2896": 0.7935871743, + "2897": 0.7955911824, + "2898": 0.7975951904, + "2899": 0.7995991984, + "2900": 0.8016032064, + "2901": 0.8036072144, + "2902": 0.8056112224, + "2903": 0.8076152305, + "2904": 0.8096192385, + "2905": 0.8116232465, + "2906": 0.8136272545, + "2907": 0.8156312625, + "2908": 0.8176352705, + "2909": 0.8196392786, + "2910": 0.8216432866, + "2911": 0.8236472946, + "2912": 0.8256513026, + "2913": 0.8276553106, + "2914": 0.8296593186, + "2915": 0.8316633267, + "2916": 0.8336673347, + "2917": 0.8356713427, + "2918": 0.8376753507, + "2919": 0.8396793587, + "2920": 0.8416833667, + "2921": 0.8436873747, + "2922": 0.8456913828, + "2923": 0.8476953908, + "2924": 0.8496993988, + "2925": 0.8517034068, + "2926": 0.8537074148, + "2927": 0.8557114228, + "2928": 0.8577154309, + "2929": 0.8597194389, + "2930": 0.8617234469, + "2931": 0.8637274549, + "2932": 0.8657314629, + "2933": 0.8677354709, + "2934": 0.869739479, + "2935": 0.871743487, + "2936": 0.873747495, + "2937": 0.875751503, + "2938": 0.877755511, + "2939": 0.879759519, + "2940": 0.8817635271, + "2941": 0.8837675351, + "2942": 0.8857715431, + "2943": 0.8877755511, + "2944": 0.8897795591, + "2945": 0.8917835671, + "2946": 0.8937875752, + "2947": 0.8957915832, + "2948": 0.8977955912, + "2949": 0.8997995992, + "2950": 0.9018036072, + "2951": 0.9038076152, + "2952": 0.9058116232, + "2953": 0.9078156313, + "2954": 0.9098196393, + "2955": 0.9118236473, + "2956": 0.9138276553, + "2957": 0.9158316633, + "2958": 0.9178356713, + "2959": 0.9198396794, + "2960": 0.9218436874, + "2961": 0.9238476954, + "2962": 0.9258517034, + "2963": 0.9278557114, + "2964": 0.9298597194, + "2965": 0.9318637275, + "2966": 0.9338677355, + "2967": 0.9358717435, + "2968": 0.9378757515, + "2969": 0.9398797595, + "2970": 0.9418837675, + "2971": 0.9438877756, + "2972": 0.9458917836, + "2973": 0.9478957916, + "2974": 0.9498997996, + "2975": 0.9519038076, + "2976": 0.9539078156, + "2977": 0.9559118236, + "2978": 0.9579158317, + "2979": 0.9599198397, + "2980": 0.9619238477, + "2981": 0.9639278557, + "2982": 0.9659318637, + "2983": 0.9679358717, + "2984": 0.9699398798, + "2985": 0.9719438878, + "2986": 0.9739478958, + "2987": 0.9759519038, + "2988": 0.9779559118, + "2989": 0.9799599198, + "2990": 0.9819639279, + "2991": 0.9839679359, + "2992": 0.9859719439, + "2993": 0.9879759519, + "2994": 0.9899799599, + "2995": 0.9919839679, + "2996": 0.993987976, + "2997": 0.995991984, + "2998": 0.997995992, + "2999": 1.0, + "3000": 0.0, + "3001": 0.002004008, + "3002": 0.004008016, + "3003": 0.006012024, + "3004": 0.0080160321, + "3005": 0.0100200401, + "3006": 0.0120240481, + "3007": 0.0140280561, + "3008": 0.0160320641, + "3009": 0.0180360721, + "3010": 0.0200400802, + "3011": 0.0220440882, + "3012": 0.0240480962, + "3013": 0.0260521042, + "3014": 0.0280561122, + "3015": 0.0300601202, + "3016": 0.0320641283, + "3017": 0.0340681363, + "3018": 0.0360721443, + "3019": 0.0380761523, + "3020": 0.0400801603, + "3021": 0.0420841683, + "3022": 0.0440881764, + "3023": 0.0460921844, + "3024": 0.0480961924, + "3025": 0.0501002004, + "3026": 0.0521042084, + "3027": 0.0541082164, + "3028": 0.0561122244, + "3029": 0.0581162325, + "3030": 0.0601202405, + "3031": 0.0621242485, + "3032": 0.0641282565, + "3033": 0.0661322645, + "3034": 0.0681362725, + "3035": 0.0701402806, + "3036": 0.0721442886, + "3037": 0.0741482966, + "3038": 0.0761523046, + "3039": 0.0781563126, + "3040": 0.0801603206, + "3041": 0.0821643287, + "3042": 0.0841683367, + "3043": 0.0861723447, + "3044": 0.0881763527, + "3045": 0.0901803607, + "3046": 0.0921843687, + "3047": 0.0941883768, + "3048": 0.0961923848, + "3049": 0.0981963928, + "3050": 0.1002004008, + "3051": 0.1022044088, + "3052": 0.1042084168, + "3053": 0.1062124248, + "3054": 0.1082164329, + "3055": 0.1102204409, + "3056": 0.1122244489, + "3057": 0.1142284569, + "3058": 0.1162324649, + "3059": 0.1182364729, + "3060": 0.120240481, + "3061": 0.122244489, + "3062": 0.124248497, + "3063": 0.126252505, + "3064": 0.128256513, + "3065": 0.130260521, + "3066": 0.1322645291, + "3067": 0.1342685371, + "3068": 0.1362725451, + "3069": 0.1382765531, + "3070": 0.1402805611, + "3071": 0.1422845691, + "3072": 0.1442885772, + "3073": 0.1462925852, + "3074": 0.1482965932, + "3075": 0.1503006012, + "3076": 0.1523046092, + "3077": 0.1543086172, + "3078": 0.1563126253, + "3079": 0.1583166333, + "3080": 0.1603206413, + "3081": 0.1623246493, + "3082": 0.1643286573, + "3083": 0.1663326653, + "3084": 0.1683366733, + "3085": 0.1703406814, + "3086": 0.1723446894, + "3087": 0.1743486974, + "3088": 0.1763527054, + "3089": 0.1783567134, + "3090": 0.1803607214, + "3091": 0.1823647295, + "3092": 0.1843687375, + "3093": 0.1863727455, + "3094": 0.1883767535, + "3095": 0.1903807615, + "3096": 0.1923847695, + "3097": 0.1943887776, + "3098": 0.1963927856, + "3099": 0.1983967936, + "3100": 0.2004008016, + "3101": 0.2024048096, + "3102": 0.2044088176, + "3103": 0.2064128257, + "3104": 0.2084168337, + "3105": 0.2104208417, + "3106": 0.2124248497, + "3107": 0.2144288577, + "3108": 0.2164328657, + "3109": 0.2184368737, + "3110": 0.2204408818, + "3111": 0.2224448898, + "3112": 0.2244488978, + "3113": 0.2264529058, + "3114": 0.2284569138, + "3115": 0.2304609218, + "3116": 0.2324649299, + "3117": 0.2344689379, + "3118": 0.2364729459, + "3119": 0.2384769539, + "3120": 0.2404809619, + "3121": 0.2424849699, + "3122": 0.244488978, + "3123": 0.246492986, + "3124": 0.248496994, + "3125": 0.250501002, + "3126": 0.25250501, + "3127": 0.254509018, + "3128": 0.2565130261, + "3129": 0.2585170341, + "3130": 0.2605210421, + "3131": 0.2625250501, + "3132": 0.2645290581, + "3133": 0.2665330661, + "3134": 0.2685370741, + "3135": 0.2705410822, + "3136": 0.2725450902, + "3137": 0.2745490982, + "3138": 0.2765531062, + "3139": 0.2785571142, + "3140": 0.2805611222, + "3141": 0.2825651303, + "3142": 0.2845691383, + "3143": 0.2865731463, + "3144": 0.2885771543, + "3145": 0.2905811623, + "3146": 0.2925851703, + "3147": 0.2945891784, + "3148": 0.2965931864, + "3149": 0.2985971944, + "3150": 0.3006012024, + "3151": 0.3026052104, + "3152": 0.3046092184, + "3153": 0.3066132265, + "3154": 0.3086172345, + "3155": 0.3106212425, + "3156": 0.3126252505, + "3157": 0.3146292585, + "3158": 0.3166332665, + "3159": 0.3186372745, + "3160": 0.3206412826, + "3161": 0.3226452906, + "3162": 0.3246492986, + "3163": 0.3266533066, + "3164": 0.3286573146, + "3165": 0.3306613226, + "3166": 0.3326653307, + "3167": 0.3346693387, + "3168": 0.3366733467, + "3169": 0.3386773547, + "3170": 0.3406813627, + "3171": 0.3426853707, + "3172": 0.3446893788, + "3173": 0.3466933868, + "3174": 0.3486973948, + "3175": 0.3507014028, + "3176": 0.3527054108, + "3177": 0.3547094188, + "3178": 0.3567134269, + "3179": 0.3587174349, + "3180": 0.3607214429, + "3181": 0.3627254509, + "3182": 0.3647294589, + "3183": 0.3667334669, + "3184": 0.3687374749, + "3185": 0.370741483, + "3186": 0.372745491, + "3187": 0.374749499, + "3188": 0.376753507, + "3189": 0.378757515, + "3190": 0.380761523, + "3191": 0.3827655311, + "3192": 0.3847695391, + "3193": 0.3867735471, + "3194": 0.3887775551, + "3195": 0.3907815631, + "3196": 0.3927855711, + "3197": 0.3947895792, + "3198": 0.3967935872, + "3199": 0.3987975952, + "3200": 0.4008016032, + "3201": 0.4028056112, + "3202": 0.4048096192, + "3203": 0.4068136273, + "3204": 0.4088176353, + "3205": 0.4108216433, + "3206": 0.4128256513, + "3207": 0.4148296593, + "3208": 0.4168336673, + "3209": 0.4188376754, + "3210": 0.4208416834, + "3211": 0.4228456914, + "3212": 0.4248496994, + "3213": 0.4268537074, + "3214": 0.4288577154, + "3215": 0.4308617234, + "3216": 0.4328657315, + "3217": 0.4348697395, + "3218": 0.4368737475, + "3219": 0.4388777555, + "3220": 0.4408817635, + "3221": 0.4428857715, + "3222": 0.4448897796, + "3223": 0.4468937876, + "3224": 0.4488977956, + "3225": 0.4509018036, + "3226": 0.4529058116, + "3227": 0.4549098196, + "3228": 0.4569138277, + "3229": 0.4589178357, + "3230": 0.4609218437, + "3231": 0.4629258517, + "3232": 0.4649298597, + "3233": 0.4669338677, + "3234": 0.4689378758, + "3235": 0.4709418838, + "3236": 0.4729458918, + "3237": 0.4749498998, + "3238": 0.4769539078, + "3239": 0.4789579158, + "3240": 0.4809619238, + "3241": 0.4829659319, + "3242": 0.4849699399, + "3243": 0.4869739479, + "3244": 0.4889779559, + "3245": 0.4909819639, + "3246": 0.4929859719, + "3247": 0.49498998, + "3248": 0.496993988, + "3249": 0.498997996, + "3250": 0.501002004, + "3251": 0.503006012, + "3252": 0.50501002, + "3253": 0.5070140281, + "3254": 0.5090180361, + "3255": 0.5110220441, + "3256": 0.5130260521, + "3257": 0.5150300601, + "3258": 0.5170340681, + "3259": 0.5190380762, + "3260": 0.5210420842, + "3261": 0.5230460922, + "3262": 0.5250501002, + "3263": 0.5270541082, + "3264": 0.5290581162, + "3265": 0.5310621242, + "3266": 0.5330661323, + "3267": 0.5350701403, + "3268": 0.5370741483, + "3269": 0.5390781563, + "3270": 0.5410821643, + "3271": 0.5430861723, + "3272": 0.5450901804, + "3273": 0.5470941884, + "3274": 0.5490981964, + "3275": 0.5511022044, + "3276": 0.5531062124, + "3277": 0.5551102204, + "3278": 0.5571142285, + "3279": 0.5591182365, + "3280": 0.5611222445, + "3281": 0.5631262525, + "3282": 0.5651302605, + "3283": 0.5671342685, + "3284": 0.5691382766, + "3285": 0.5711422846, + "3286": 0.5731462926, + "3287": 0.5751503006, + "3288": 0.5771543086, + "3289": 0.5791583166, + "3290": 0.5811623246, + "3291": 0.5831663327, + "3292": 0.5851703407, + "3293": 0.5871743487, + "3294": 0.5891783567, + "3295": 0.5911823647, + "3296": 0.5931863727, + "3297": 0.5951903808, + "3298": 0.5971943888, + "3299": 0.5991983968, + "3300": 0.6012024048, + "3301": 0.6032064128, + "3302": 0.6052104208, + "3303": 0.6072144289, + "3304": 0.6092184369, + "3305": 0.6112224449, + "3306": 0.6132264529, + "3307": 0.6152304609, + "3308": 0.6172344689, + "3309": 0.619238477, + "3310": 0.621242485, + "3311": 0.623246493, + "3312": 0.625250501, + "3313": 0.627254509, + "3314": 0.629258517, + "3315": 0.6312625251, + "3316": 0.6332665331, + "3317": 0.6352705411, + "3318": 0.6372745491, + "3319": 0.6392785571, + "3320": 0.6412825651, + "3321": 0.6432865731, + "3322": 0.6452905812, + "3323": 0.6472945892, + "3324": 0.6492985972, + "3325": 0.6513026052, + "3326": 0.6533066132, + "3327": 0.6553106212, + "3328": 0.6573146293, + "3329": 0.6593186373, + "3330": 0.6613226453, + "3331": 0.6633266533, + "3332": 0.6653306613, + "3333": 0.6673346693, + "3334": 0.6693386774, + "3335": 0.6713426854, + "3336": 0.6733466934, + "3337": 0.6753507014, + "3338": 0.6773547094, + "3339": 0.6793587174, + "3340": 0.6813627255, + "3341": 0.6833667335, + "3342": 0.6853707415, + "3343": 0.6873747495, + "3344": 0.6893787575, + "3345": 0.6913827655, + "3346": 0.6933867735, + "3347": 0.6953907816, + "3348": 0.6973947896, + "3349": 0.6993987976, + "3350": 0.7014028056, + "3351": 0.7034068136, + "3352": 0.7054108216, + "3353": 0.7074148297, + "3354": 0.7094188377, + "3355": 0.7114228457, + "3356": 0.7134268537, + "3357": 0.7154308617, + "3358": 0.7174348697, + "3359": 0.7194388778, + "3360": 0.7214428858, + "3361": 0.7234468938, + "3362": 0.7254509018, + "3363": 0.7274549098, + "3364": 0.7294589178, + "3365": 0.7314629259, + "3366": 0.7334669339, + "3367": 0.7354709419, + "3368": 0.7374749499, + "3369": 0.7394789579, + "3370": 0.7414829659, + "3371": 0.7434869739, + "3372": 0.745490982, + "3373": 0.74749499, + "3374": 0.749498998, + "3375": 0.751503006, + "3376": 0.753507014, + "3377": 0.755511022, + "3378": 0.7575150301, + "3379": 0.7595190381, + "3380": 0.7615230461, + "3381": 0.7635270541, + "3382": 0.7655310621, + "3383": 0.7675350701, + "3384": 0.7695390782, + "3385": 0.7715430862, + "3386": 0.7735470942, + "3387": 0.7755511022, + "3388": 0.7775551102, + "3389": 0.7795591182, + "3390": 0.7815631263, + "3391": 0.7835671343, + "3392": 0.7855711423, + "3393": 0.7875751503, + "3394": 0.7895791583, + "3395": 0.7915831663, + "3396": 0.7935871743, + "3397": 0.7955911824, + "3398": 0.7975951904, + "3399": 0.7995991984, + "3400": 0.8016032064, + "3401": 0.8036072144, + "3402": 0.8056112224, + "3403": 0.8076152305, + "3404": 0.8096192385, + "3405": 0.8116232465, + "3406": 0.8136272545, + "3407": 0.8156312625, + "3408": 0.8176352705, + "3409": 0.8196392786, + "3410": 0.8216432866, + "3411": 0.8236472946, + "3412": 0.8256513026, + "3413": 0.8276553106, + "3414": 0.8296593186, + "3415": 0.8316633267, + "3416": 0.8336673347, + "3417": 0.8356713427, + "3418": 0.8376753507, + "3419": 0.8396793587, + "3420": 0.8416833667, + "3421": 0.8436873747, + "3422": 0.8456913828, + "3423": 0.8476953908, + "3424": 0.8496993988, + "3425": 0.8517034068, + "3426": 0.8537074148, + "3427": 0.8557114228, + "3428": 0.8577154309, + "3429": 0.8597194389, + "3430": 0.8617234469, + "3431": 0.8637274549, + "3432": 0.8657314629, + "3433": 0.8677354709, + "3434": 0.869739479, + "3435": 0.871743487, + "3436": 0.873747495, + "3437": 0.875751503, + "3438": 0.877755511, + "3439": 0.879759519, + "3440": 0.8817635271, + "3441": 0.8837675351, + "3442": 0.8857715431, + "3443": 0.8877755511, + "3444": 0.8897795591, + "3445": 0.8917835671, + "3446": 0.8937875752, + "3447": 0.8957915832, + "3448": 0.8977955912, + "3449": 0.8997995992, + "3450": 0.9018036072, + "3451": 0.9038076152, + "3452": 0.9058116232, + "3453": 0.9078156313, + "3454": 0.9098196393, + "3455": 0.9118236473, + "3456": 0.9138276553, + "3457": 0.9158316633, + "3458": 0.9178356713, + "3459": 0.9198396794, + "3460": 0.9218436874, + "3461": 0.9238476954, + "3462": 0.9258517034, + "3463": 0.9278557114, + "3464": 0.9298597194, + "3465": 0.9318637275, + "3466": 0.9338677355, + "3467": 0.9358717435, + "3468": 0.9378757515, + "3469": 0.9398797595, + "3470": 0.9418837675, + "3471": 0.9438877756, + "3472": 0.9458917836, + "3473": 0.9478957916, + "3474": 0.9498997996, + "3475": 0.9519038076, + "3476": 0.9539078156, + "3477": 0.9559118236, + "3478": 0.9579158317, + "3479": 0.9599198397, + "3480": 0.9619238477, + "3481": 0.9639278557, + "3482": 0.9659318637, + "3483": 0.9679358717, + "3484": 0.9699398798, + "3485": 0.9719438878, + "3486": 0.9739478958, + "3487": 0.9759519038, + "3488": 0.9779559118, + "3489": 0.9799599198, + "3490": 0.9819639279, + "3491": 0.9839679359, + "3492": 0.9859719439, + "3493": 0.9879759519, + "3494": 0.9899799599, + "3495": 0.9919839679, + "3496": 0.993987976, + "3497": 0.995991984, + "3498": 0.997995992, + "3499": 1.0, + "3500": 0.0, + "3501": 0.002004008, + "3502": 0.004008016, + "3503": 0.006012024, + "3504": 0.0080160321, + "3505": 0.0100200401, + "3506": 0.0120240481, + "3507": 0.0140280561, + "3508": 0.0160320641, + "3509": 0.0180360721, + "3510": 0.0200400802, + "3511": 0.0220440882, + "3512": 0.0240480962, + "3513": 0.0260521042, + "3514": 0.0280561122, + "3515": 0.0300601202, + "3516": 0.0320641283, + "3517": 0.0340681363, + "3518": 0.0360721443, + "3519": 0.0380761523, + "3520": 0.0400801603, + "3521": 0.0420841683, + "3522": 0.0440881764, + "3523": 0.0460921844, + "3524": 0.0480961924, + "3525": 0.0501002004, + "3526": 0.0521042084, + "3527": 0.0541082164, + "3528": 0.0561122244, + "3529": 0.0581162325, + "3530": 0.0601202405, + "3531": 0.0621242485, + "3532": 0.0641282565, + "3533": 0.0661322645, + "3534": 0.0681362725, + "3535": 0.0701402806, + "3536": 0.0721442886, + "3537": 0.0741482966, + "3538": 0.0761523046, + "3539": 0.0781563126, + "3540": 0.0801603206, + "3541": 0.0821643287, + "3542": 0.0841683367, + "3543": 0.0861723447, + "3544": 0.0881763527, + "3545": 0.0901803607, + "3546": 0.0921843687, + "3547": 0.0941883768, + "3548": 0.0961923848, + "3549": 0.0981963928, + "3550": 0.1002004008, + "3551": 0.1022044088, + "3552": 0.1042084168, + "3553": 0.1062124248, + "3554": 0.1082164329, + "3555": 0.1102204409, + "3556": 0.1122244489, + "3557": 0.1142284569, + "3558": 0.1162324649, + "3559": 0.1182364729, + "3560": 0.120240481, + "3561": 0.122244489, + "3562": 0.124248497, + "3563": 0.126252505, + "3564": 0.128256513, + "3565": 0.130260521, + "3566": 0.1322645291, + "3567": 0.1342685371, + "3568": 0.1362725451, + "3569": 0.1382765531, + "3570": 0.1402805611, + "3571": 0.1422845691, + "3572": 0.1442885772, + "3573": 0.1462925852, + "3574": 0.1482965932, + "3575": 0.1503006012, + "3576": 0.1523046092, + "3577": 0.1543086172, + "3578": 0.1563126253, + "3579": 0.1583166333, + "3580": 0.1603206413, + "3581": 0.1623246493, + "3582": 0.1643286573, + "3583": 0.1663326653, + "3584": 0.1683366733, + "3585": 0.1703406814, + "3586": 0.1723446894, + "3587": 0.1743486974, + "3588": 0.1763527054, + "3589": 0.1783567134, + "3590": 0.1803607214, + "3591": 0.1823647295, + "3592": 0.1843687375, + "3593": 0.1863727455, + "3594": 0.1883767535, + "3595": 0.1903807615, + "3596": 0.1923847695, + "3597": 0.1943887776, + "3598": 0.1963927856, + "3599": 0.1983967936, + "3600": 0.2004008016, + "3601": 0.2024048096, + "3602": 0.2044088176, + "3603": 0.2064128257, + "3604": 0.2084168337, + "3605": 0.2104208417, + "3606": 0.2124248497, + "3607": 0.2144288577, + "3608": 0.2164328657, + "3609": 0.2184368737, + "3610": 0.2204408818, + "3611": 0.2224448898, + "3612": 0.2244488978, + "3613": 0.2264529058, + "3614": 0.2284569138, + "3615": 0.2304609218, + "3616": 0.2324649299, + "3617": 0.2344689379, + "3618": 0.2364729459, + "3619": 0.2384769539, + "3620": 0.2404809619, + "3621": 0.2424849699, + "3622": 0.244488978, + "3623": 0.246492986, + "3624": 0.248496994, + "3625": 0.250501002, + "3626": 0.25250501, + "3627": 0.254509018, + "3628": 0.2565130261, + "3629": 0.2585170341, + "3630": 0.2605210421, + "3631": 0.2625250501, + "3632": 0.2645290581, + "3633": 0.2665330661, + "3634": 0.2685370741, + "3635": 0.2705410822, + "3636": 0.2725450902, + "3637": 0.2745490982, + "3638": 0.2765531062, + "3639": 0.2785571142, + "3640": 0.2805611222, + "3641": 0.2825651303, + "3642": 0.2845691383, + "3643": 0.2865731463, + "3644": 0.2885771543, + "3645": 0.2905811623, + "3646": 0.2925851703, + "3647": 0.2945891784, + "3648": 0.2965931864, + "3649": 0.2985971944, + "3650": 0.3006012024, + "3651": 0.3026052104, + "3652": 0.3046092184, + "3653": 0.3066132265, + "3654": 0.3086172345, + "3655": 0.3106212425, + "3656": 0.3126252505, + "3657": 0.3146292585, + "3658": 0.3166332665, + "3659": 0.3186372745, + "3660": 0.3206412826, + "3661": 0.3226452906, + "3662": 0.3246492986, + "3663": 0.3266533066, + "3664": 0.3286573146, + "3665": 0.3306613226, + "3666": 0.3326653307, + "3667": 0.3346693387, + "3668": 0.3366733467, + "3669": 0.3386773547, + "3670": 0.3406813627, + "3671": 0.3426853707, + "3672": 0.3446893788, + "3673": 0.3466933868, + "3674": 0.3486973948, + "3675": 0.3507014028, + "3676": 0.3527054108, + "3677": 0.3547094188, + "3678": 0.3567134269, + "3679": 0.3587174349, + "3680": 0.3607214429, + "3681": 0.3627254509, + "3682": 0.3647294589, + "3683": 0.3667334669, + "3684": 0.3687374749, + "3685": 0.370741483, + "3686": 0.372745491, + "3687": 0.374749499, + "3688": 0.376753507, + "3689": 0.378757515, + "3690": 0.380761523, + "3691": 0.3827655311, + "3692": 0.3847695391, + "3693": 0.3867735471, + "3694": 0.3887775551, + "3695": 0.3907815631, + "3696": 0.3927855711, + "3697": 0.3947895792, + "3698": 0.3967935872, + "3699": 0.3987975952, + "3700": 0.4008016032, + "3701": 0.4028056112, + "3702": 0.4048096192, + "3703": 0.4068136273, + "3704": 0.4088176353, + "3705": 0.4108216433, + "3706": 0.4128256513, + "3707": 0.4148296593, + "3708": 0.4168336673, + "3709": 0.4188376754, + "3710": 0.4208416834, + "3711": 0.4228456914, + "3712": 0.4248496994, + "3713": 0.4268537074, + "3714": 0.4288577154, + "3715": 0.4308617234, + "3716": 0.4328657315, + "3717": 0.4348697395, + "3718": 0.4368737475, + "3719": 0.4388777555, + "3720": 0.4408817635, + "3721": 0.4428857715, + "3722": 0.4448897796, + "3723": 0.4468937876, + "3724": 0.4488977956, + "3725": 0.4509018036, + "3726": 0.4529058116, + "3727": 0.4549098196, + "3728": 0.4569138277, + "3729": 0.4589178357, + "3730": 0.4609218437, + "3731": 0.4629258517, + "3732": 0.4649298597, + "3733": 0.4669338677, + "3734": 0.4689378758, + "3735": 0.4709418838, + "3736": 0.4729458918, + "3737": 0.4749498998, + "3738": 0.4769539078, + "3739": 0.4789579158, + "3740": 0.4809619238, + "3741": 0.4829659319, + "3742": 0.4849699399, + "3743": 0.4869739479, + "3744": 0.4889779559, + "3745": 0.4909819639, + "3746": 0.4929859719, + "3747": 0.49498998, + "3748": 0.496993988, + "3749": 0.498997996, + "3750": 0.501002004, + "3751": 0.503006012, + "3752": 0.50501002, + "3753": 0.5070140281, + "3754": 0.5090180361, + "3755": 0.5110220441, + "3756": 0.5130260521, + "3757": 0.5150300601, + "3758": 0.5170340681, + "3759": 0.5190380762, + "3760": 0.5210420842, + "3761": 0.5230460922, + "3762": 0.5250501002, + "3763": 0.5270541082, + "3764": 0.5290581162, + "3765": 0.5310621242, + "3766": 0.5330661323, + "3767": 0.5350701403, + "3768": 0.5370741483, + "3769": 0.5390781563, + "3770": 0.5410821643, + "3771": 0.5430861723, + "3772": 0.5450901804, + "3773": 0.5470941884, + "3774": 0.5490981964, + "3775": 0.5511022044, + "3776": 0.5531062124, + "3777": 0.5551102204, + "3778": 0.5571142285, + "3779": 0.5591182365, + "3780": 0.5611222445, + "3781": 0.5631262525, + "3782": 0.5651302605, + "3783": 0.5671342685, + "3784": 0.5691382766, + "3785": 0.5711422846, + "3786": 0.5731462926, + "3787": 0.5751503006, + "3788": 0.5771543086, + "3789": 0.5791583166, + "3790": 0.5811623246, + "3791": 0.5831663327, + "3792": 0.5851703407, + "3793": 0.5871743487, + "3794": 0.5891783567, + "3795": 0.5911823647, + "3796": 0.5931863727, + "3797": 0.5951903808, + "3798": 0.5971943888, + "3799": 0.5991983968, + "3800": 0.6012024048, + "3801": 0.6032064128, + "3802": 0.6052104208, + "3803": 0.6072144289, + "3804": 0.6092184369, + "3805": 0.6112224449, + "3806": 0.6132264529, + "3807": 0.6152304609, + "3808": 0.6172344689, + "3809": 0.619238477, + "3810": 0.621242485, + "3811": 0.623246493, + "3812": 0.625250501, + "3813": 0.627254509, + "3814": 0.629258517, + "3815": 0.6312625251, + "3816": 0.6332665331, + "3817": 0.6352705411, + "3818": 0.6372745491, + "3819": 0.6392785571, + "3820": 0.6412825651, + "3821": 0.6432865731, + "3822": 0.6452905812, + "3823": 0.6472945892, + "3824": 0.6492985972, + "3825": 0.6513026052, + "3826": 0.6533066132, + "3827": 0.6553106212, + "3828": 0.6573146293, + "3829": 0.6593186373, + "3830": 0.6613226453, + "3831": 0.6633266533, + "3832": 0.6653306613, + "3833": 0.6673346693, + "3834": 0.6693386774, + "3835": 0.6713426854, + "3836": 0.6733466934, + "3837": 0.6753507014, + "3838": 0.6773547094, + "3839": 0.6793587174, + "3840": 0.6813627255, + "3841": 0.6833667335, + "3842": 0.6853707415, + "3843": 0.6873747495, + "3844": 0.6893787575, + "3845": 0.6913827655, + "3846": 0.6933867735, + "3847": 0.6953907816, + "3848": 0.6973947896, + "3849": 0.6993987976, + "3850": 0.7014028056, + "3851": 0.7034068136, + "3852": 0.7054108216, + "3853": 0.7074148297, + "3854": 0.7094188377, + "3855": 0.7114228457, + "3856": 0.7134268537, + "3857": 0.7154308617, + "3858": 0.7174348697, + "3859": 0.7194388778, + "3860": 0.7214428858, + "3861": 0.7234468938, + "3862": 0.7254509018, + "3863": 0.7274549098, + "3864": 0.7294589178, + "3865": 0.7314629259, + "3866": 0.7334669339, + "3867": 0.7354709419, + "3868": 0.7374749499, + "3869": 0.7394789579, + "3870": 0.7414829659, + "3871": 0.7434869739, + "3872": 0.745490982, + "3873": 0.74749499, + "3874": 0.749498998, + "3875": 0.751503006, + "3876": 0.753507014, + "3877": 0.755511022, + "3878": 0.7575150301, + "3879": 0.7595190381, + "3880": 0.7615230461, + "3881": 0.7635270541, + "3882": 0.7655310621, + "3883": 0.7675350701, + "3884": 0.7695390782, + "3885": 0.7715430862, + "3886": 0.7735470942, + "3887": 0.7755511022, + "3888": 0.7775551102, + "3889": 0.7795591182, + "3890": 0.7815631263, + "3891": 0.7835671343, + "3892": 0.7855711423, + "3893": 0.7875751503, + "3894": 0.7895791583, + "3895": 0.7915831663, + "3896": 0.7935871743, + "3897": 0.7955911824, + "3898": 0.7975951904, + "3899": 0.7995991984, + "3900": 0.8016032064, + "3901": 0.8036072144, + "3902": 0.8056112224, + "3903": 0.8076152305, + "3904": 0.8096192385, + "3905": 0.8116232465, + "3906": 0.8136272545, + "3907": 0.8156312625, + "3908": 0.8176352705, + "3909": 0.8196392786, + "3910": 0.8216432866, + "3911": 0.8236472946, + "3912": 0.8256513026, + "3913": 0.8276553106, + "3914": 0.8296593186, + "3915": 0.8316633267, + "3916": 0.8336673347, + "3917": 0.8356713427, + "3918": 0.8376753507, + "3919": 0.8396793587, + "3920": 0.8416833667, + "3921": 0.8436873747, + "3922": 0.8456913828, + "3923": 0.8476953908, + "3924": 0.8496993988, + "3925": 0.8517034068, + "3926": 0.8537074148, + "3927": 0.8557114228, + "3928": 0.8577154309, + "3929": 0.8597194389, + "3930": 0.8617234469, + "3931": 0.8637274549, + "3932": 0.8657314629, + "3933": 0.8677354709, + "3934": 0.869739479, + "3935": 0.871743487, + "3936": 0.873747495, + "3937": 0.875751503, + "3938": 0.877755511, + "3939": 0.879759519, + "3940": 0.8817635271, + "3941": 0.8837675351, + "3942": 0.8857715431, + "3943": 0.8877755511, + "3944": 0.8897795591, + "3945": 0.8917835671, + "3946": 0.8937875752, + "3947": 0.8957915832, + "3948": 0.8977955912, + "3949": 0.8997995992, + "3950": 0.9018036072, + "3951": 0.9038076152, + "3952": 0.9058116232, + "3953": 0.9078156313, + "3954": 0.9098196393, + "3955": 0.9118236473, + "3956": 0.9138276553, + "3957": 0.9158316633, + "3958": 0.9178356713, + "3959": 0.9198396794, + "3960": 0.9218436874, + "3961": 0.9238476954, + "3962": 0.9258517034, + "3963": 0.9278557114, + "3964": 0.9298597194, + "3965": 0.9318637275, + "3966": 0.9338677355, + "3967": 0.9358717435, + "3968": 0.9378757515, + "3969": 0.9398797595, + "3970": 0.9418837675, + "3971": 0.9438877756, + "3972": 0.9458917836, + "3973": 0.9478957916, + "3974": 0.9498997996, + "3975": 0.9519038076, + "3976": 0.9539078156, + "3977": 0.9559118236, + "3978": 0.9579158317, + "3979": 0.9599198397, + "3980": 0.9619238477, + "3981": 0.9639278557, + "3982": 0.9659318637, + "3983": 0.9679358717, + "3984": 0.9699398798, + "3985": 0.9719438878, + "3986": 0.9739478958, + "3987": 0.9759519038, + "3988": 0.9779559118, + "3989": 0.9799599198, + "3990": 0.9819639279, + "3991": 0.9839679359, + "3992": 0.9859719439, + "3993": 0.9879759519, + "3994": 0.9899799599, + "3995": 0.9919839679, + "3996": 0.993987976, + "3997": 0.995991984, + "3998": 0.997995992, + "3999": 1.0, + "4000": 0.0, + "4001": 0.002004008, + "4002": 0.004008016, + "4003": 0.006012024, + "4004": 0.0080160321, + "4005": 0.0100200401, + "4006": 0.0120240481, + "4007": 0.0140280561, + "4008": 0.0160320641, + "4009": 0.0180360721, + "4010": 0.0200400802, + "4011": 0.0220440882, + "4012": 0.0240480962, + "4013": 0.0260521042, + "4014": 0.0280561122, + "4015": 0.0300601202, + "4016": 0.0320641283, + "4017": 0.0340681363, + "4018": 0.0360721443, + "4019": 0.0380761523, + "4020": 0.0400801603, + "4021": 0.0420841683, + "4022": 0.0440881764, + "4023": 0.0460921844, + "4024": 0.0480961924, + "4025": 0.0501002004, + "4026": 0.0521042084, + "4027": 0.0541082164, + "4028": 0.0561122244, + "4029": 0.0581162325, + "4030": 0.0601202405, + "4031": 0.0621242485, + "4032": 0.0641282565, + "4033": 0.0661322645, + "4034": 0.0681362725, + "4035": 0.0701402806, + "4036": 0.0721442886, + "4037": 0.0741482966, + "4038": 0.0761523046, + "4039": 0.0781563126, + "4040": 0.0801603206, + "4041": 0.0821643287, + "4042": 0.0841683367, + "4043": 0.0861723447, + "4044": 0.0881763527, + "4045": 0.0901803607, + "4046": 0.0921843687, + "4047": 0.0941883768, + "4048": 0.0961923848, + "4049": 0.0981963928, + "4050": 0.1002004008, + "4051": 0.1022044088, + "4052": 0.1042084168, + "4053": 0.1062124248, + "4054": 0.1082164329, + "4055": 0.1102204409, + "4056": 0.1122244489, + "4057": 0.1142284569, + "4058": 0.1162324649, + "4059": 0.1182364729, + "4060": 0.120240481, + "4061": 0.122244489, + "4062": 0.124248497, + "4063": 0.126252505, + "4064": 0.128256513, + "4065": 0.130260521, + "4066": 0.1322645291, + "4067": 0.1342685371, + "4068": 0.1362725451, + "4069": 0.1382765531, + "4070": 0.1402805611, + "4071": 0.1422845691, + "4072": 0.1442885772, + "4073": 0.1462925852, + "4074": 0.1482965932, + "4075": 0.1503006012, + "4076": 0.1523046092, + "4077": 0.1543086172, + "4078": 0.1563126253, + "4079": 0.1583166333, + "4080": 0.1603206413, + "4081": 0.1623246493, + "4082": 0.1643286573, + "4083": 0.1663326653, + "4084": 0.1683366733, + "4085": 0.1703406814, + "4086": 0.1723446894, + "4087": 0.1743486974, + "4088": 0.1763527054, + "4089": 0.1783567134, + "4090": 0.1803607214, + "4091": 0.1823647295, + "4092": 0.1843687375, + "4093": 0.1863727455, + "4094": 0.1883767535, + "4095": 0.1903807615, + "4096": 0.1923847695, + "4097": 0.1943887776, + "4098": 0.1963927856, + "4099": 0.1983967936, + "4100": 0.2004008016, + "4101": 0.2024048096, + "4102": 0.2044088176, + "4103": 0.2064128257, + "4104": 0.2084168337, + "4105": 0.2104208417, + "4106": 0.2124248497, + "4107": 0.2144288577, + "4108": 0.2164328657, + "4109": 0.2184368737, + "4110": 0.2204408818, + "4111": 0.2224448898, + "4112": 0.2244488978, + "4113": 0.2264529058, + "4114": 0.2284569138, + "4115": 0.2304609218, + "4116": 0.2324649299, + "4117": 0.2344689379, + "4118": 0.2364729459, + "4119": 0.2384769539, + "4120": 0.2404809619, + "4121": 0.2424849699, + "4122": 0.244488978, + "4123": 0.246492986, + "4124": 0.248496994, + "4125": 0.250501002, + "4126": 0.25250501, + "4127": 0.254509018, + "4128": 0.2565130261, + "4129": 0.2585170341, + "4130": 0.2605210421, + "4131": 0.2625250501, + "4132": 0.2645290581, + "4133": 0.2665330661, + "4134": 0.2685370741, + "4135": 0.2705410822, + "4136": 0.2725450902, + "4137": 0.2745490982, + "4138": 0.2765531062, + "4139": 0.2785571142, + "4140": 0.2805611222, + "4141": 0.2825651303, + "4142": 0.2845691383, + "4143": 0.2865731463, + "4144": 0.2885771543, + "4145": 0.2905811623, + "4146": 0.2925851703, + "4147": 0.2945891784, + "4148": 0.2965931864, + "4149": 0.2985971944, + "4150": 0.3006012024, + "4151": 0.3026052104, + "4152": 0.3046092184, + "4153": 0.3066132265, + "4154": 0.3086172345, + "4155": 0.3106212425, + "4156": 0.3126252505, + "4157": 0.3146292585, + "4158": 0.3166332665, + "4159": 0.3186372745, + "4160": 0.3206412826, + "4161": 0.3226452906, + "4162": 0.3246492986, + "4163": 0.3266533066, + "4164": 0.3286573146, + "4165": 0.3306613226, + "4166": 0.3326653307, + "4167": 0.3346693387, + "4168": 0.3366733467, + "4169": 0.3386773547, + "4170": 0.3406813627, + "4171": 0.3426853707, + "4172": 0.3446893788, + "4173": 0.3466933868, + "4174": 0.3486973948, + "4175": 0.3507014028, + "4176": 0.3527054108, + "4177": 0.3547094188, + "4178": 0.3567134269, + "4179": 0.3587174349, + "4180": 0.3607214429, + "4181": 0.3627254509, + "4182": 0.3647294589, + "4183": 0.3667334669, + "4184": 0.3687374749, + "4185": 0.370741483, + "4186": 0.372745491, + "4187": 0.374749499, + "4188": 0.376753507, + "4189": 0.378757515, + "4190": 0.380761523, + "4191": 0.3827655311, + "4192": 0.3847695391, + "4193": 0.3867735471, + "4194": 0.3887775551, + "4195": 0.3907815631, + "4196": 0.3927855711, + "4197": 0.3947895792, + "4198": 0.3967935872, + "4199": 0.3987975952, + "4200": 0.4008016032, + "4201": 0.4028056112, + "4202": 0.4048096192, + "4203": 0.4068136273, + "4204": 0.4088176353, + "4205": 0.4108216433, + "4206": 0.4128256513, + "4207": 0.4148296593, + "4208": 0.4168336673, + "4209": 0.4188376754, + "4210": 0.4208416834, + "4211": 0.4228456914, + "4212": 0.4248496994, + "4213": 0.4268537074, + "4214": 0.4288577154, + "4215": 0.4308617234, + "4216": 0.4328657315, + "4217": 0.4348697395, + "4218": 0.4368737475, + "4219": 0.4388777555, + "4220": 0.4408817635, + "4221": 0.4428857715, + "4222": 0.4448897796, + "4223": 0.4468937876, + "4224": 0.4488977956, + "4225": 0.4509018036, + "4226": 0.4529058116, + "4227": 0.4549098196, + "4228": 0.4569138277, + "4229": 0.4589178357, + "4230": 0.4609218437, + "4231": 0.4629258517, + "4232": 0.4649298597, + "4233": 0.4669338677, + "4234": 0.4689378758, + "4235": 0.4709418838, + "4236": 0.4729458918, + "4237": 0.4749498998, + "4238": 0.4769539078, + "4239": 0.4789579158, + "4240": 0.4809619238, + "4241": 0.4829659319, + "4242": 0.4849699399, + "4243": 0.4869739479, + "4244": 0.4889779559, + "4245": 0.4909819639, + "4246": 0.4929859719, + "4247": 0.49498998, + "4248": 0.496993988, + "4249": 0.498997996, + "4250": 0.501002004, + "4251": 0.503006012, + "4252": 0.50501002, + "4253": 0.5070140281, + "4254": 0.5090180361, + "4255": 0.5110220441, + "4256": 0.5130260521, + "4257": 0.5150300601, + "4258": 0.5170340681, + "4259": 0.5190380762, + "4260": 0.5210420842, + "4261": 0.5230460922, + "4262": 0.5250501002, + "4263": 0.5270541082, + "4264": 0.5290581162, + "4265": 0.5310621242, + "4266": 0.5330661323, + "4267": 0.5350701403, + "4268": 0.5370741483, + "4269": 0.5390781563, + "4270": 0.5410821643, + "4271": 0.5430861723, + "4272": 0.5450901804, + "4273": 0.5470941884, + "4274": 0.5490981964, + "4275": 0.5511022044, + "4276": 0.5531062124, + "4277": 0.5551102204, + "4278": 0.5571142285, + "4279": 0.5591182365, + "4280": 0.5611222445, + "4281": 0.5631262525, + "4282": 0.5651302605, + "4283": 0.5671342685, + "4284": 0.5691382766, + "4285": 0.5711422846, + "4286": 0.5731462926, + "4287": 0.5751503006, + "4288": 0.5771543086, + "4289": 0.5791583166, + "4290": 0.5811623246, + "4291": 0.5831663327, + "4292": 0.5851703407, + "4293": 0.5871743487, + "4294": 0.5891783567, + "4295": 0.5911823647, + "4296": 0.5931863727, + "4297": 0.5951903808, + "4298": 0.5971943888, + "4299": 0.5991983968, + "4300": 0.6012024048, + "4301": 0.6032064128, + "4302": 0.6052104208, + "4303": 0.6072144289, + "4304": 0.6092184369, + "4305": 0.6112224449, + "4306": 0.6132264529, + "4307": 0.6152304609, + "4308": 0.6172344689, + "4309": 0.619238477, + "4310": 0.621242485, + "4311": 0.623246493, + "4312": 0.625250501, + "4313": 0.627254509, + "4314": 0.629258517, + "4315": 0.6312625251, + "4316": 0.6332665331, + "4317": 0.6352705411, + "4318": 0.6372745491, + "4319": 0.6392785571, + "4320": 0.6412825651, + "4321": 0.6432865731, + "4322": 0.6452905812, + "4323": 0.6472945892, + "4324": 0.6492985972, + "4325": 0.6513026052, + "4326": 0.6533066132, + "4327": 0.6553106212, + "4328": 0.6573146293, + "4329": 0.6593186373, + "4330": 0.6613226453, + "4331": 0.6633266533, + "4332": 0.6653306613, + "4333": 0.6673346693, + "4334": 0.6693386774, + "4335": 0.6713426854, + "4336": 0.6733466934, + "4337": 0.6753507014, + "4338": 0.6773547094, + "4339": 0.6793587174, + "4340": 0.6813627255, + "4341": 0.6833667335, + "4342": 0.6853707415, + "4343": 0.6873747495, + "4344": 0.6893787575, + "4345": 0.6913827655, + "4346": 0.6933867735, + "4347": 0.6953907816, + "4348": 0.6973947896, + "4349": 0.6993987976, + "4350": 0.7014028056, + "4351": 0.7034068136, + "4352": 0.7054108216, + "4353": 0.7074148297, + "4354": 0.7094188377, + "4355": 0.7114228457, + "4356": 0.7134268537, + "4357": 0.7154308617, + "4358": 0.7174348697, + "4359": 0.7194388778, + "4360": 0.7214428858, + "4361": 0.7234468938, + "4362": 0.7254509018, + "4363": 0.7274549098, + "4364": 0.7294589178, + "4365": 0.7314629259, + "4366": 0.7334669339, + "4367": 0.7354709419, + "4368": 0.7374749499, + "4369": 0.7394789579, + "4370": 0.7414829659, + "4371": 0.7434869739, + "4372": 0.745490982, + "4373": 0.74749499, + "4374": 0.749498998, + "4375": 0.751503006, + "4376": 0.753507014, + "4377": 0.755511022, + "4378": 0.7575150301, + "4379": 0.7595190381, + "4380": 0.7615230461, + "4381": 0.7635270541, + "4382": 0.7655310621, + "4383": 0.7675350701, + "4384": 0.7695390782, + "4385": 0.7715430862, + "4386": 0.7735470942, + "4387": 0.7755511022, + "4388": 0.7775551102, + "4389": 0.7795591182, + "4390": 0.7815631263, + "4391": 0.7835671343, + "4392": 0.7855711423, + "4393": 0.7875751503, + "4394": 0.7895791583, + "4395": 0.7915831663, + "4396": 0.7935871743, + "4397": 0.7955911824, + "4398": 0.7975951904, + "4399": 0.7995991984, + "4400": 0.8016032064, + "4401": 0.8036072144, + "4402": 0.8056112224, + "4403": 0.8076152305, + "4404": 0.8096192385, + "4405": 0.8116232465, + "4406": 0.8136272545, + "4407": 0.8156312625, + "4408": 0.8176352705, + "4409": 0.8196392786, + "4410": 0.8216432866, + "4411": 0.8236472946, + "4412": 0.8256513026, + "4413": 0.8276553106, + "4414": 0.8296593186, + "4415": 0.8316633267, + "4416": 0.8336673347, + "4417": 0.8356713427, + "4418": 0.8376753507, + "4419": 0.8396793587, + "4420": 0.8416833667, + "4421": 0.8436873747, + "4422": 0.8456913828, + "4423": 0.8476953908, + "4424": 0.8496993988, + "4425": 0.8517034068, + "4426": 0.8537074148, + "4427": 0.8557114228, + "4428": 0.8577154309, + "4429": 0.8597194389, + "4430": 0.8617234469, + "4431": 0.8637274549, + "4432": 0.8657314629, + "4433": 0.8677354709, + "4434": 0.869739479, + "4435": 0.871743487, + "4436": 0.873747495, + "4437": 0.875751503, + "4438": 0.877755511, + "4439": 0.879759519, + "4440": 0.8817635271, + "4441": 0.8837675351, + "4442": 0.8857715431, + "4443": 0.8877755511, + "4444": 0.8897795591, + "4445": 0.8917835671, + "4446": 0.8937875752, + "4447": 0.8957915832, + "4448": 0.8977955912, + "4449": 0.8997995992, + "4450": 0.9018036072, + "4451": 0.9038076152, + "4452": 0.9058116232, + "4453": 0.9078156313, + "4454": 0.9098196393, + "4455": 0.9118236473, + "4456": 0.9138276553, + "4457": 0.9158316633, + "4458": 0.9178356713, + "4459": 0.9198396794, + "4460": 0.9218436874, + "4461": 0.9238476954, + "4462": 0.9258517034, + "4463": 0.9278557114, + "4464": 0.9298597194, + "4465": 0.9318637275, + "4466": 0.9338677355, + "4467": 0.9358717435, + "4468": 0.9378757515, + "4469": 0.9398797595, + "4470": 0.9418837675, + "4471": 0.9438877756, + "4472": 0.9458917836, + "4473": 0.9478957916, + "4474": 0.9498997996, + "4475": 0.9519038076, + "4476": 0.9539078156, + "4477": 0.9559118236, + "4478": 0.9579158317, + "4479": 0.9599198397, + "4480": 0.9619238477, + "4481": 0.9639278557, + "4482": 0.9659318637, + "4483": 0.9679358717, + "4484": 0.9699398798, + "4485": 0.9719438878, + "4486": 0.9739478958, + "4487": 0.9759519038, + "4488": 0.9779559118, + "4489": 0.9799599198, + "4490": 0.9819639279, + "4491": 0.9839679359, + "4492": 0.9859719439, + "4493": 0.9879759519, + "4494": 0.9899799599, + "4495": 0.9919839679, + "4496": 0.993987976, + "4497": 0.995991984, + "4498": 0.997995992, + "4499": 1.0, + "4500": 0.0, + "4501": 0.002004008, + "4502": 0.004008016, + "4503": 0.006012024, + "4504": 0.0080160321, + "4505": 0.0100200401, + "4506": 0.0120240481, + "4507": 0.0140280561, + "4508": 0.0160320641, + "4509": 0.0180360721, + "4510": 0.0200400802, + "4511": 0.0220440882, + "4512": 0.0240480962, + "4513": 0.0260521042, + "4514": 0.0280561122, + "4515": 0.0300601202, + "4516": 0.0320641283, + "4517": 0.0340681363, + "4518": 0.0360721443, + "4519": 0.0380761523, + "4520": 0.0400801603, + "4521": 0.0420841683, + "4522": 0.0440881764, + "4523": 0.0460921844, + "4524": 0.0480961924, + "4525": 0.0501002004, + "4526": 0.0521042084, + "4527": 0.0541082164, + "4528": 0.0561122244, + "4529": 0.0581162325, + "4530": 0.0601202405, + "4531": 0.0621242485, + "4532": 0.0641282565, + "4533": 0.0661322645, + "4534": 0.0681362725, + "4535": 0.0701402806, + "4536": 0.0721442886, + "4537": 0.0741482966, + "4538": 0.0761523046, + "4539": 0.0781563126, + "4540": 0.0801603206, + "4541": 0.0821643287, + "4542": 0.0841683367, + "4543": 0.0861723447, + "4544": 0.0881763527, + "4545": 0.0901803607, + "4546": 0.0921843687, + "4547": 0.0941883768, + "4548": 0.0961923848, + "4549": 0.0981963928, + "4550": 0.1002004008, + "4551": 0.1022044088, + "4552": 0.1042084168, + "4553": 0.1062124248, + "4554": 0.1082164329, + "4555": 0.1102204409, + "4556": 0.1122244489, + "4557": 0.1142284569, + "4558": 0.1162324649, + "4559": 0.1182364729, + "4560": 0.120240481, + "4561": 0.122244489, + "4562": 0.124248497, + "4563": 0.126252505, + "4564": 0.128256513, + "4565": 0.130260521, + "4566": 0.1322645291, + "4567": 0.1342685371, + "4568": 0.1362725451, + "4569": 0.1382765531, + "4570": 0.1402805611, + "4571": 0.1422845691, + "4572": 0.1442885772, + "4573": 0.1462925852, + "4574": 0.1482965932, + "4575": 0.1503006012, + "4576": 0.1523046092, + "4577": 0.1543086172, + "4578": 0.1563126253, + "4579": 0.1583166333, + "4580": 0.1603206413, + "4581": 0.1623246493, + "4582": 0.1643286573, + "4583": 0.1663326653, + "4584": 0.1683366733, + "4585": 0.1703406814, + "4586": 0.1723446894, + "4587": 0.1743486974, + "4588": 0.1763527054, + "4589": 0.1783567134, + "4590": 0.1803607214, + "4591": 0.1823647295, + "4592": 0.1843687375, + "4593": 0.1863727455, + "4594": 0.1883767535, + "4595": 0.1903807615, + "4596": 0.1923847695, + "4597": 0.1943887776, + "4598": 0.1963927856, + "4599": 0.1983967936, + "4600": 0.2004008016, + "4601": 0.2024048096, + "4602": 0.2044088176, + "4603": 0.2064128257, + "4604": 0.2084168337, + "4605": 0.2104208417, + "4606": 0.2124248497, + "4607": 0.2144288577, + "4608": 0.2164328657, + "4609": 0.2184368737, + "4610": 0.2204408818, + "4611": 0.2224448898, + "4612": 0.2244488978, + "4613": 0.2264529058, + "4614": 0.2284569138, + "4615": 0.2304609218, + "4616": 0.2324649299, + "4617": 0.2344689379, + "4618": 0.2364729459, + "4619": 0.2384769539, + "4620": 0.2404809619, + "4621": 0.2424849699, + "4622": 0.244488978, + "4623": 0.246492986, + "4624": 0.248496994, + "4625": 0.250501002, + "4626": 0.25250501, + "4627": 0.254509018, + "4628": 0.2565130261, + "4629": 0.2585170341, + "4630": 0.2605210421, + "4631": 0.2625250501, + "4632": 0.2645290581, + "4633": 0.2665330661, + "4634": 0.2685370741, + "4635": 0.2705410822, + "4636": 0.2725450902, + "4637": 0.2745490982, + "4638": 0.2765531062, + "4639": 0.2785571142, + "4640": 0.2805611222, + "4641": 0.2825651303, + "4642": 0.2845691383, + "4643": 0.2865731463, + "4644": 0.2885771543, + "4645": 0.2905811623, + "4646": 0.2925851703, + "4647": 0.2945891784, + "4648": 0.2965931864, + "4649": 0.2985971944, + "4650": 0.3006012024, + "4651": 0.3026052104, + "4652": 0.3046092184, + "4653": 0.3066132265, + "4654": 0.3086172345, + "4655": 0.3106212425, + "4656": 0.3126252505, + "4657": 0.3146292585, + "4658": 0.3166332665, + "4659": 0.3186372745, + "4660": 0.3206412826, + "4661": 0.3226452906, + "4662": 0.3246492986, + "4663": 0.3266533066, + "4664": 0.3286573146, + "4665": 0.3306613226, + "4666": 0.3326653307, + "4667": 0.3346693387, + "4668": 0.3366733467, + "4669": 0.3386773547, + "4670": 0.3406813627, + "4671": 0.3426853707, + "4672": 0.3446893788, + "4673": 0.3466933868, + "4674": 0.3486973948, + "4675": 0.3507014028, + "4676": 0.3527054108, + "4677": 0.3547094188, + "4678": 0.3567134269, + "4679": 0.3587174349, + "4680": 0.3607214429, + "4681": 0.3627254509, + "4682": 0.3647294589, + "4683": 0.3667334669, + "4684": 0.3687374749, + "4685": 0.370741483, + "4686": 0.372745491, + "4687": 0.374749499, + "4688": 0.376753507, + "4689": 0.378757515, + "4690": 0.380761523, + "4691": 0.3827655311, + "4692": 0.3847695391, + "4693": 0.3867735471, + "4694": 0.3887775551, + "4695": 0.3907815631, + "4696": 0.3927855711, + "4697": 0.3947895792, + "4698": 0.3967935872, + "4699": 0.3987975952, + "4700": 0.4008016032, + "4701": 0.4028056112, + "4702": 0.4048096192, + "4703": 0.4068136273, + "4704": 0.4088176353, + "4705": 0.4108216433, + "4706": 0.4128256513, + "4707": 0.4148296593, + "4708": 0.4168336673, + "4709": 0.4188376754, + "4710": 0.4208416834, + "4711": 0.4228456914, + "4712": 0.4248496994, + "4713": 0.4268537074, + "4714": 0.4288577154, + "4715": 0.4308617234, + "4716": 0.4328657315, + "4717": 0.4348697395, + "4718": 0.4368737475, + "4719": 0.4388777555, + "4720": 0.4408817635, + "4721": 0.4428857715, + "4722": 0.4448897796, + "4723": 0.4468937876, + "4724": 0.4488977956, + "4725": 0.4509018036, + "4726": 0.4529058116, + "4727": 0.4549098196, + "4728": 0.4569138277, + "4729": 0.4589178357, + "4730": 0.4609218437, + "4731": 0.4629258517, + "4732": 0.4649298597, + "4733": 0.4669338677, + "4734": 0.4689378758, + "4735": 0.4709418838, + "4736": 0.4729458918, + "4737": 0.4749498998, + "4738": 0.4769539078, + "4739": 0.4789579158, + "4740": 0.4809619238, + "4741": 0.4829659319, + "4742": 0.4849699399, + "4743": 0.4869739479, + "4744": 0.4889779559, + "4745": 0.4909819639, + "4746": 0.4929859719, + "4747": 0.49498998, + "4748": 0.496993988, + "4749": 0.498997996, + "4750": 0.501002004, + "4751": 0.503006012, + "4752": 0.50501002, + "4753": 0.5070140281, + "4754": 0.5090180361, + "4755": 0.5110220441, + "4756": 0.5130260521, + "4757": 0.5150300601, + "4758": 0.5170340681, + "4759": 0.5190380762, + "4760": 0.5210420842, + "4761": 0.5230460922, + "4762": 0.5250501002, + "4763": 0.5270541082, + "4764": 0.5290581162, + "4765": 0.5310621242, + "4766": 0.5330661323, + "4767": 0.5350701403, + "4768": 0.5370741483, + "4769": 0.5390781563, + "4770": 0.5410821643, + "4771": 0.5430861723, + "4772": 0.5450901804, + "4773": 0.5470941884, + "4774": 0.5490981964, + "4775": 0.5511022044, + "4776": 0.5531062124, + "4777": 0.5551102204, + "4778": 0.5571142285, + "4779": 0.5591182365, + "4780": 0.5611222445, + "4781": 0.5631262525, + "4782": 0.5651302605, + "4783": 0.5671342685, + "4784": 0.5691382766, + "4785": 0.5711422846, + "4786": 0.5731462926, + "4787": 0.5751503006, + "4788": 0.5771543086, + "4789": 0.5791583166, + "4790": 0.5811623246, + "4791": 0.5831663327, + "4792": 0.5851703407, + "4793": 0.5871743487, + "4794": 0.5891783567, + "4795": 0.5911823647, + "4796": 0.5931863727, + "4797": 0.5951903808, + "4798": 0.5971943888, + "4799": 0.5991983968, + "4800": 0.6012024048, + "4801": 0.6032064128, + "4802": 0.6052104208, + "4803": 0.6072144289, + "4804": 0.6092184369, + "4805": 0.6112224449, + "4806": 0.6132264529, + "4807": 0.6152304609, + "4808": 0.6172344689, + "4809": 0.619238477, + "4810": 0.621242485, + "4811": 0.623246493, + "4812": 0.625250501, + "4813": 0.627254509, + "4814": 0.629258517, + "4815": 0.6312625251, + "4816": 0.6332665331, + "4817": 0.6352705411, + "4818": 0.6372745491, + "4819": 0.6392785571, + "4820": 0.6412825651, + "4821": 0.6432865731, + "4822": 0.6452905812, + "4823": 0.6472945892, + "4824": 0.6492985972, + "4825": 0.6513026052, + "4826": 0.6533066132, + "4827": 0.6553106212, + "4828": 0.6573146293, + "4829": 0.6593186373, + "4830": 0.6613226453, + "4831": 0.6633266533, + "4832": 0.6653306613, + "4833": 0.6673346693, + "4834": 0.6693386774, + "4835": 0.6713426854, + "4836": 0.6733466934, + "4837": 0.6753507014, + "4838": 0.6773547094, + "4839": 0.6793587174, + "4840": 0.6813627255, + "4841": 0.6833667335, + "4842": 0.6853707415, + "4843": 0.6873747495, + "4844": 0.6893787575, + "4845": 0.6913827655, + "4846": 0.6933867735, + "4847": 0.6953907816, + "4848": 0.6973947896, + "4849": 0.6993987976, + "4850": 0.7014028056, + "4851": 0.7034068136, + "4852": 0.7054108216, + "4853": 0.7074148297, + "4854": 0.7094188377, + "4855": 0.7114228457, + "4856": 0.7134268537, + "4857": 0.7154308617, + "4858": 0.7174348697, + "4859": 0.7194388778, + "4860": 0.7214428858, + "4861": 0.7234468938, + "4862": 0.7254509018, + "4863": 0.7274549098, + "4864": 0.7294589178, + "4865": 0.7314629259, + "4866": 0.7334669339, + "4867": 0.7354709419, + "4868": 0.7374749499, + "4869": 0.7394789579, + "4870": 0.7414829659, + "4871": 0.7434869739, + "4872": 0.745490982, + "4873": 0.74749499, + "4874": 0.749498998, + "4875": 0.751503006, + "4876": 0.753507014, + "4877": 0.755511022, + "4878": 0.7575150301, + "4879": 0.7595190381, + "4880": 0.7615230461, + "4881": 0.7635270541, + "4882": 0.7655310621, + "4883": 0.7675350701, + "4884": 0.7695390782, + "4885": 0.7715430862, + "4886": 0.7735470942, + "4887": 0.7755511022, + "4888": 0.7775551102, + "4889": 0.7795591182, + "4890": 0.7815631263, + "4891": 0.7835671343, + "4892": 0.7855711423, + "4893": 0.7875751503, + "4894": 0.7895791583, + "4895": 0.7915831663, + "4896": 0.7935871743, + "4897": 0.7955911824, + "4898": 0.7975951904, + "4899": 0.7995991984, + "4900": 0.8016032064, + "4901": 0.8036072144, + "4902": 0.8056112224, + "4903": 0.8076152305, + "4904": 0.8096192385, + "4905": 0.8116232465, + "4906": 0.8136272545, + "4907": 0.8156312625, + "4908": 0.8176352705, + "4909": 0.8196392786, + "4910": 0.8216432866, + "4911": 0.8236472946, + "4912": 0.8256513026, + "4913": 0.8276553106, + "4914": 0.8296593186, + "4915": 0.8316633267, + "4916": 0.8336673347, + "4917": 0.8356713427, + "4918": 0.8376753507, + "4919": 0.8396793587, + "4920": 0.8416833667, + "4921": 0.8436873747, + "4922": 0.8456913828, + "4923": 0.8476953908, + "4924": 0.8496993988, + "4925": 0.8517034068, + "4926": 0.8537074148, + "4927": 0.8557114228, + "4928": 0.8577154309, + "4929": 0.8597194389, + "4930": 0.8617234469, + "4931": 0.8637274549, + "4932": 0.8657314629, + "4933": 0.8677354709, + "4934": 0.869739479, + "4935": 0.871743487, + "4936": 0.873747495, + "4937": 0.875751503, + "4938": 0.877755511, + "4939": 0.879759519, + "4940": 0.8817635271, + "4941": 0.8837675351, + "4942": 0.8857715431, + "4943": 0.8877755511, + "4944": 0.8897795591, + "4945": 0.8917835671, + "4946": 0.8937875752, + "4947": 0.8957915832, + "4948": 0.8977955912, + "4949": 0.8997995992, + "4950": 0.9018036072, + "4951": 0.9038076152, + "4952": 0.9058116232, + "4953": 0.9078156313, + "4954": 0.9098196393, + "4955": 0.9118236473, + "4956": 0.9138276553, + "4957": 0.9158316633, + "4958": 0.9178356713, + "4959": 0.9198396794, + "4960": 0.9218436874, + "4961": 0.9238476954, + "4962": 0.9258517034, + "4963": 0.9278557114, + "4964": 0.9298597194, + "4965": 0.9318637275, + "4966": 0.9338677355, + "4967": 0.9358717435, + "4968": 0.9378757515, + "4969": 0.9398797595, + "4970": 0.9418837675, + "4971": 0.9438877756, + "4972": 0.9458917836, + "4973": 0.9478957916, + "4974": 0.9498997996, + "4975": 0.9519038076, + "4976": 0.9539078156, + "4977": 0.9559118236, + "4978": 0.9579158317, + "4979": 0.9599198397, + "4980": 0.9619238477, + "4981": 0.9639278557, + "4982": 0.9659318637, + "4983": 0.9679358717, + "4984": 0.9699398798, + "4985": 0.9719438878, + "4986": 0.9739478958, + "4987": 0.9759519038, + "4988": 0.9779559118, + "4989": 0.9799599198, + "4990": 0.9819639279, + "4991": 0.9839679359, + "4992": 0.9859719439, + "4993": 0.9879759519, + "4994": 0.9899799599, + "4995": 0.9919839679, + "4996": 0.993987976, + "4997": 0.995991984, + "4998": 0.997995992, + "4999": 1.0, + "5000": 0.0, + "5001": 0.002004008, + "5002": 0.004008016, + "5003": 0.006012024, + "5004": 0.0080160321, + "5005": 0.0100200401, + "5006": 0.0120240481, + "5007": 0.0140280561, + "5008": 0.0160320641, + "5009": 0.0180360721, + "5010": 0.0200400802, + "5011": 0.0220440882, + "5012": 0.0240480962, + "5013": 0.0260521042, + "5014": 0.0280561122, + "5015": 0.0300601202, + "5016": 0.0320641283, + "5017": 0.0340681363, + "5018": 0.0360721443, + "5019": 0.0380761523, + "5020": 0.0400801603, + "5021": 0.0420841683, + "5022": 0.0440881764, + "5023": 0.0460921844, + "5024": 0.0480961924, + "5025": 0.0501002004, + "5026": 0.0521042084, + "5027": 0.0541082164, + "5028": 0.0561122244, + "5029": 0.0581162325, + "5030": 0.0601202405, + "5031": 0.0621242485, + "5032": 0.0641282565, + "5033": 0.0661322645, + "5034": 0.0681362725, + "5035": 0.0701402806, + "5036": 0.0721442886, + "5037": 0.0741482966, + "5038": 0.0761523046, + "5039": 0.0781563126, + "5040": 0.0801603206, + "5041": 0.0821643287, + "5042": 0.0841683367, + "5043": 0.0861723447, + "5044": 0.0881763527, + "5045": 0.0901803607, + "5046": 0.0921843687, + "5047": 0.0941883768, + "5048": 0.0961923848, + "5049": 0.0981963928, + "5050": 0.1002004008, + "5051": 0.1022044088, + "5052": 0.1042084168, + "5053": 0.1062124248, + "5054": 0.1082164329, + "5055": 0.1102204409, + "5056": 0.1122244489, + "5057": 0.1142284569, + "5058": 0.1162324649, + "5059": 0.1182364729, + "5060": 0.120240481, + "5061": 0.122244489, + "5062": 0.124248497, + "5063": 0.126252505, + "5064": 0.128256513, + "5065": 0.130260521, + "5066": 0.1322645291, + "5067": 0.1342685371, + "5068": 0.1362725451, + "5069": 0.1382765531, + "5070": 0.1402805611, + "5071": 0.1422845691, + "5072": 0.1442885772, + "5073": 0.1462925852, + "5074": 0.1482965932, + "5075": 0.1503006012, + "5076": 0.1523046092, + "5077": 0.1543086172, + "5078": 0.1563126253, + "5079": 0.1583166333, + "5080": 0.1603206413, + "5081": 0.1623246493, + "5082": 0.1643286573, + "5083": 0.1663326653, + "5084": 0.1683366733, + "5085": 0.1703406814, + "5086": 0.1723446894, + "5087": 0.1743486974, + "5088": 0.1763527054, + "5089": 0.1783567134, + "5090": 0.1803607214, + "5091": 0.1823647295, + "5092": 0.1843687375, + "5093": 0.1863727455, + "5094": 0.1883767535, + "5095": 0.1903807615, + "5096": 0.1923847695, + "5097": 0.1943887776, + "5098": 0.1963927856, + "5099": 0.1983967936, + "5100": 0.2004008016, + "5101": 0.2024048096, + "5102": 0.2044088176, + "5103": 0.2064128257, + "5104": 0.2084168337, + "5105": 0.2104208417, + "5106": 0.2124248497, + "5107": 0.2144288577, + "5108": 0.2164328657, + "5109": 0.2184368737, + "5110": 0.2204408818, + "5111": 0.2224448898, + "5112": 0.2244488978, + "5113": 0.2264529058, + "5114": 0.2284569138, + "5115": 0.2304609218, + "5116": 0.2324649299, + "5117": 0.2344689379, + "5118": 0.2364729459, + "5119": 0.2384769539, + "5120": 0.2404809619, + "5121": 0.2424849699, + "5122": 0.244488978, + "5123": 0.246492986, + "5124": 0.248496994, + "5125": 0.250501002, + "5126": 0.25250501, + "5127": 0.254509018, + "5128": 0.2565130261, + "5129": 0.2585170341, + "5130": 0.2605210421, + "5131": 0.2625250501, + "5132": 0.2645290581, + "5133": 0.2665330661, + "5134": 0.2685370741, + "5135": 0.2705410822, + "5136": 0.2725450902, + "5137": 0.2745490982, + "5138": 0.2765531062, + "5139": 0.2785571142, + "5140": 0.2805611222, + "5141": 0.2825651303, + "5142": 0.2845691383, + "5143": 0.2865731463, + "5144": 0.2885771543, + "5145": 0.2905811623, + "5146": 0.2925851703, + "5147": 0.2945891784, + "5148": 0.2965931864, + "5149": 0.2985971944, + "5150": 0.3006012024, + "5151": 0.3026052104, + "5152": 0.3046092184, + "5153": 0.3066132265, + "5154": 0.3086172345, + "5155": 0.3106212425, + "5156": 0.3126252505, + "5157": 0.3146292585, + "5158": 0.3166332665, + "5159": 0.3186372745, + "5160": 0.3206412826, + "5161": 0.3226452906, + "5162": 0.3246492986, + "5163": 0.3266533066, + "5164": 0.3286573146, + "5165": 0.3306613226, + "5166": 0.3326653307, + "5167": 0.3346693387, + "5168": 0.3366733467, + "5169": 0.3386773547, + "5170": 0.3406813627, + "5171": 0.3426853707, + "5172": 0.3446893788, + "5173": 0.3466933868, + "5174": 0.3486973948, + "5175": 0.3507014028, + "5176": 0.3527054108, + "5177": 0.3547094188, + "5178": 0.3567134269, + "5179": 0.3587174349, + "5180": 0.3607214429, + "5181": 0.3627254509, + "5182": 0.3647294589, + "5183": 0.3667334669, + "5184": 0.3687374749, + "5185": 0.370741483, + "5186": 0.372745491, + "5187": 0.374749499, + "5188": 0.376753507, + "5189": 0.378757515, + "5190": 0.380761523, + "5191": 0.3827655311, + "5192": 0.3847695391, + "5193": 0.3867735471, + "5194": 0.3887775551, + "5195": 0.3907815631, + "5196": 0.3927855711, + "5197": 0.3947895792, + "5198": 0.3967935872, + "5199": 0.3987975952, + "5200": 0.4008016032, + "5201": 0.4028056112, + "5202": 0.4048096192, + "5203": 0.4068136273, + "5204": 0.4088176353, + "5205": 0.4108216433, + "5206": 0.4128256513, + "5207": 0.4148296593, + "5208": 0.4168336673, + "5209": 0.4188376754, + "5210": 0.4208416834, + "5211": 0.4228456914, + "5212": 0.4248496994, + "5213": 0.4268537074, + "5214": 0.4288577154, + "5215": 0.4308617234, + "5216": 0.4328657315, + "5217": 0.4348697395, + "5218": 0.4368737475, + "5219": 0.4388777555, + "5220": 0.4408817635, + "5221": 0.4428857715, + "5222": 0.4448897796, + "5223": 0.4468937876, + "5224": 0.4488977956, + "5225": 0.4509018036, + "5226": 0.4529058116, + "5227": 0.4549098196, + "5228": 0.4569138277, + "5229": 0.4589178357, + "5230": 0.4609218437, + "5231": 0.4629258517, + "5232": 0.4649298597, + "5233": 0.4669338677, + "5234": 0.4689378758, + "5235": 0.4709418838, + "5236": 0.4729458918, + "5237": 0.4749498998, + "5238": 0.4769539078, + "5239": 0.4789579158, + "5240": 0.4809619238, + "5241": 0.4829659319, + "5242": 0.4849699399, + "5243": 0.4869739479, + "5244": 0.4889779559, + "5245": 0.4909819639, + "5246": 0.4929859719, + "5247": 0.49498998, + "5248": 0.496993988, + "5249": 0.498997996, + "5250": 0.501002004, + "5251": 0.503006012, + "5252": 0.50501002, + "5253": 0.5070140281, + "5254": 0.5090180361, + "5255": 0.5110220441, + "5256": 0.5130260521, + "5257": 0.5150300601, + "5258": 0.5170340681, + "5259": 0.5190380762, + "5260": 0.5210420842, + "5261": 0.5230460922, + "5262": 0.5250501002, + "5263": 0.5270541082, + "5264": 0.5290581162, + "5265": 0.5310621242, + "5266": 0.5330661323, + "5267": 0.5350701403, + "5268": 0.5370741483, + "5269": 0.5390781563, + "5270": 0.5410821643, + "5271": 0.5430861723, + "5272": 0.5450901804, + "5273": 0.5470941884, + "5274": 0.5490981964, + "5275": 0.5511022044, + "5276": 0.5531062124, + "5277": 0.5551102204, + "5278": 0.5571142285, + "5279": 0.5591182365, + "5280": 0.5611222445, + "5281": 0.5631262525, + "5282": 0.5651302605, + "5283": 0.5671342685, + "5284": 0.5691382766, + "5285": 0.5711422846, + "5286": 0.5731462926, + "5287": 0.5751503006, + "5288": 0.5771543086, + "5289": 0.5791583166, + "5290": 0.5811623246, + "5291": 0.5831663327, + "5292": 0.5851703407, + "5293": 0.5871743487, + "5294": 0.5891783567, + "5295": 0.5911823647, + "5296": 0.5931863727, + "5297": 0.5951903808, + "5298": 0.5971943888, + "5299": 0.5991983968, + "5300": 0.6012024048, + "5301": 0.6032064128, + "5302": 0.6052104208, + "5303": 0.6072144289, + "5304": 0.6092184369, + "5305": 0.6112224449, + "5306": 0.6132264529, + "5307": 0.6152304609, + "5308": 0.6172344689, + "5309": 0.619238477, + "5310": 0.621242485, + "5311": 0.623246493, + "5312": 0.625250501, + "5313": 0.627254509, + "5314": 0.629258517, + "5315": 0.6312625251, + "5316": 0.6332665331, + "5317": 0.6352705411, + "5318": 0.6372745491, + "5319": 0.6392785571, + "5320": 0.6412825651, + "5321": 0.6432865731, + "5322": 0.6452905812, + "5323": 0.6472945892, + "5324": 0.6492985972, + "5325": 0.6513026052, + "5326": 0.6533066132, + "5327": 0.6553106212, + "5328": 0.6573146293, + "5329": 0.6593186373, + "5330": 0.6613226453, + "5331": 0.6633266533, + "5332": 0.6653306613, + "5333": 0.6673346693, + "5334": 0.6693386774, + "5335": 0.6713426854, + "5336": 0.6733466934, + "5337": 0.6753507014, + "5338": 0.6773547094, + "5339": 0.6793587174, + "5340": 0.6813627255, + "5341": 0.6833667335, + "5342": 0.6853707415, + "5343": 0.6873747495, + "5344": 0.6893787575, + "5345": 0.6913827655, + "5346": 0.6933867735, + "5347": 0.6953907816, + "5348": 0.6973947896, + "5349": 0.6993987976, + "5350": 0.7014028056, + "5351": 0.7034068136, + "5352": 0.7054108216, + "5353": 0.7074148297, + "5354": 0.7094188377, + "5355": 0.7114228457, + "5356": 0.7134268537, + "5357": 0.7154308617, + "5358": 0.7174348697, + "5359": 0.7194388778, + "5360": 0.7214428858, + "5361": 0.7234468938, + "5362": 0.7254509018, + "5363": 0.7274549098, + "5364": 0.7294589178, + "5365": 0.7314629259, + "5366": 0.7334669339, + "5367": 0.7354709419, + "5368": 0.7374749499, + "5369": 0.7394789579, + "5370": 0.7414829659, + "5371": 0.7434869739, + "5372": 0.745490982, + "5373": 0.74749499, + "5374": 0.749498998, + "5375": 0.751503006, + "5376": 0.753507014, + "5377": 0.755511022, + "5378": 0.7575150301, + "5379": 0.7595190381, + "5380": 0.7615230461, + "5381": 0.7635270541, + "5382": 0.7655310621, + "5383": 0.7675350701, + "5384": 0.7695390782, + "5385": 0.7715430862, + "5386": 0.7735470942, + "5387": 0.7755511022, + "5388": 0.7775551102, + "5389": 0.7795591182, + "5390": 0.7815631263, + "5391": 0.7835671343, + "5392": 0.7855711423, + "5393": 0.7875751503, + "5394": 0.7895791583, + "5395": 0.7915831663, + "5396": 0.7935871743, + "5397": 0.7955911824, + "5398": 0.7975951904, + "5399": 0.7995991984, + "5400": 0.8016032064, + "5401": 0.8036072144, + "5402": 0.8056112224, + "5403": 0.8076152305, + "5404": 0.8096192385, + "5405": 0.8116232465, + "5406": 0.8136272545, + "5407": 0.8156312625, + "5408": 0.8176352705, + "5409": 0.8196392786, + "5410": 0.8216432866, + "5411": 0.8236472946, + "5412": 0.8256513026, + "5413": 0.8276553106, + "5414": 0.8296593186, + "5415": 0.8316633267, + "5416": 0.8336673347, + "5417": 0.8356713427, + "5418": 0.8376753507, + "5419": 0.8396793587, + "5420": 0.8416833667, + "5421": 0.8436873747, + "5422": 0.8456913828, + "5423": 0.8476953908, + "5424": 0.8496993988, + "5425": 0.8517034068, + "5426": 0.8537074148, + "5427": 0.8557114228, + "5428": 0.8577154309, + "5429": 0.8597194389, + "5430": 0.8617234469, + "5431": 0.8637274549, + "5432": 0.8657314629, + "5433": 0.8677354709, + "5434": 0.869739479, + "5435": 0.871743487, + "5436": 0.873747495, + "5437": 0.875751503, + "5438": 0.877755511, + "5439": 0.879759519, + "5440": 0.8817635271, + "5441": 0.8837675351, + "5442": 0.8857715431, + "5443": 0.8877755511, + "5444": 0.8897795591, + "5445": 0.8917835671, + "5446": 0.8937875752, + "5447": 0.8957915832, + "5448": 0.8977955912, + "5449": 0.8997995992, + "5450": 0.9018036072, + "5451": 0.9038076152, + "5452": 0.9058116232, + "5453": 0.9078156313, + "5454": 0.9098196393, + "5455": 0.9118236473, + "5456": 0.9138276553, + "5457": 0.9158316633, + "5458": 0.9178356713, + "5459": 0.9198396794, + "5460": 0.9218436874, + "5461": 0.9238476954, + "5462": 0.9258517034, + "5463": 0.9278557114, + "5464": 0.9298597194, + "5465": 0.9318637275, + "5466": 0.9338677355, + "5467": 0.9358717435, + "5468": 0.9378757515, + "5469": 0.9398797595, + "5470": 0.9418837675, + "5471": 0.9438877756, + "5472": 0.9458917836, + "5473": 0.9478957916, + "5474": 0.9498997996, + "5475": 0.9519038076, + "5476": 0.9539078156, + "5477": 0.9559118236, + "5478": 0.9579158317, + "5479": 0.9599198397, + "5480": 0.9619238477, + "5481": 0.9639278557, + "5482": 0.9659318637, + "5483": 0.9679358717, + "5484": 0.9699398798, + "5485": 0.9719438878, + "5486": 0.9739478958, + "5487": 0.9759519038, + "5488": 0.9779559118, + "5489": 0.9799599198, + "5490": 0.9819639279, + "5491": 0.9839679359, + "5492": 0.9859719439, + "5493": 0.9879759519, + "5494": 0.9899799599, + "5495": 0.9919839679, + "5496": 0.993987976, + "5497": 0.995991984, + "5498": 0.997995992, + "5499": 1.0, + "5500": 0.0, + "5501": 0.002004008, + "5502": 0.004008016, + "5503": 0.006012024, + "5504": 0.0080160321, + "5505": 0.0100200401, + "5506": 0.0120240481, + "5507": 0.0140280561, + "5508": 0.0160320641, + "5509": 0.0180360721, + "5510": 0.0200400802, + "5511": 0.0220440882, + "5512": 0.0240480962, + "5513": 0.0260521042, + "5514": 0.0280561122, + "5515": 0.0300601202, + "5516": 0.0320641283, + "5517": 0.0340681363, + "5518": 0.0360721443, + "5519": 0.0380761523, + "5520": 0.0400801603, + "5521": 0.0420841683, + "5522": 0.0440881764, + "5523": 0.0460921844, + "5524": 0.0480961924, + "5525": 0.0501002004, + "5526": 0.0521042084, + "5527": 0.0541082164, + "5528": 0.0561122244, + "5529": 0.0581162325, + "5530": 0.0601202405, + "5531": 0.0621242485, + "5532": 0.0641282565, + "5533": 0.0661322645, + "5534": 0.0681362725, + "5535": 0.0701402806, + "5536": 0.0721442886, + "5537": 0.0741482966, + "5538": 0.0761523046, + "5539": 0.0781563126, + "5540": 0.0801603206, + "5541": 0.0821643287, + "5542": 0.0841683367, + "5543": 0.0861723447, + "5544": 0.0881763527, + "5545": 0.0901803607, + "5546": 0.0921843687, + "5547": 0.0941883768, + "5548": 0.0961923848, + "5549": 0.0981963928, + "5550": 0.1002004008, + "5551": 0.1022044088, + "5552": 0.1042084168, + "5553": 0.1062124248, + "5554": 0.1082164329, + "5555": 0.1102204409, + "5556": 0.1122244489, + "5557": 0.1142284569, + "5558": 0.1162324649, + "5559": 0.1182364729, + "5560": 0.120240481, + "5561": 0.122244489, + "5562": 0.124248497, + "5563": 0.126252505, + "5564": 0.128256513, + "5565": 0.130260521, + "5566": 0.1322645291, + "5567": 0.1342685371, + "5568": 0.1362725451, + "5569": 0.1382765531, + "5570": 0.1402805611, + "5571": 0.1422845691, + "5572": 0.1442885772, + "5573": 0.1462925852, + "5574": 0.1482965932, + "5575": 0.1503006012, + "5576": 0.1523046092, + "5577": 0.1543086172, + "5578": 0.1563126253, + "5579": 0.1583166333, + "5580": 0.1603206413, + "5581": 0.1623246493, + "5582": 0.1643286573, + "5583": 0.1663326653, + "5584": 0.1683366733, + "5585": 0.1703406814, + "5586": 0.1723446894, + "5587": 0.1743486974, + "5588": 0.1763527054, + "5589": 0.1783567134, + "5590": 0.1803607214, + "5591": 0.1823647295, + "5592": 0.1843687375, + "5593": 0.1863727455, + "5594": 0.1883767535, + "5595": 0.1903807615, + "5596": 0.1923847695, + "5597": 0.1943887776, + "5598": 0.1963927856, + "5599": 0.1983967936, + "5600": 0.2004008016, + "5601": 0.2024048096, + "5602": 0.2044088176, + "5603": 0.2064128257, + "5604": 0.2084168337, + "5605": 0.2104208417, + "5606": 0.2124248497, + "5607": 0.2144288577, + "5608": 0.2164328657, + "5609": 0.2184368737, + "5610": 0.2204408818, + "5611": 0.2224448898, + "5612": 0.2244488978, + "5613": 0.2264529058, + "5614": 0.2284569138, + "5615": 0.2304609218, + "5616": 0.2324649299, + "5617": 0.2344689379, + "5618": 0.2364729459, + "5619": 0.2384769539, + "5620": 0.2404809619, + "5621": 0.2424849699, + "5622": 0.244488978, + "5623": 0.246492986, + "5624": 0.248496994, + "5625": 0.250501002, + "5626": 0.25250501, + "5627": 0.254509018, + "5628": 0.2565130261, + "5629": 0.2585170341, + "5630": 0.2605210421, + "5631": 0.2625250501, + "5632": 0.2645290581, + "5633": 0.2665330661, + "5634": 0.2685370741, + "5635": 0.2705410822, + "5636": 0.2725450902, + "5637": 0.2745490982, + "5638": 0.2765531062, + "5639": 0.2785571142, + "5640": 0.2805611222, + "5641": 0.2825651303, + "5642": 0.2845691383, + "5643": 0.2865731463, + "5644": 0.2885771543, + "5645": 0.2905811623, + "5646": 0.2925851703, + "5647": 0.2945891784, + "5648": 0.2965931864, + "5649": 0.2985971944, + "5650": 0.3006012024, + "5651": 0.3026052104, + "5652": 0.3046092184, + "5653": 0.3066132265, + "5654": 0.3086172345, + "5655": 0.3106212425, + "5656": 0.3126252505, + "5657": 0.3146292585, + "5658": 0.3166332665, + "5659": 0.3186372745, + "5660": 0.3206412826, + "5661": 0.3226452906, + "5662": 0.3246492986, + "5663": 0.3266533066, + "5664": 0.3286573146, + "5665": 0.3306613226, + "5666": 0.3326653307, + "5667": 0.3346693387, + "5668": 0.3366733467, + "5669": 0.3386773547, + "5670": 0.3406813627, + "5671": 0.3426853707, + "5672": 0.3446893788, + "5673": 0.3466933868, + "5674": 0.3486973948, + "5675": 0.3507014028, + "5676": 0.3527054108, + "5677": 0.3547094188, + "5678": 0.3567134269, + "5679": 0.3587174349, + "5680": 0.3607214429, + "5681": 0.3627254509, + "5682": 0.3647294589, + "5683": 0.3667334669, + "5684": 0.3687374749, + "5685": 0.370741483, + "5686": 0.372745491, + "5687": 0.374749499, + "5688": 0.376753507, + "5689": 0.378757515, + "5690": 0.380761523, + "5691": 0.3827655311, + "5692": 0.3847695391, + "5693": 0.3867735471, + "5694": 0.3887775551, + "5695": 0.3907815631, + "5696": 0.3927855711, + "5697": 0.3947895792, + "5698": 0.3967935872, + "5699": 0.3987975952, + "5700": 0.4008016032, + "5701": 0.4028056112, + "5702": 0.4048096192, + "5703": 0.4068136273, + "5704": 0.4088176353, + "5705": 0.4108216433, + "5706": 0.4128256513, + "5707": 0.4148296593, + "5708": 0.4168336673, + "5709": 0.4188376754, + "5710": 0.4208416834, + "5711": 0.4228456914, + "5712": 0.4248496994, + "5713": 0.4268537074, + "5714": 0.4288577154, + "5715": 0.4308617234, + "5716": 0.4328657315, + "5717": 0.4348697395, + "5718": 0.4368737475, + "5719": 0.4388777555, + "5720": 0.4408817635, + "5721": 0.4428857715, + "5722": 0.4448897796, + "5723": 0.4468937876, + "5724": 0.4488977956, + "5725": 0.4509018036, + "5726": 0.4529058116, + "5727": 0.4549098196, + "5728": 0.4569138277, + "5729": 0.4589178357, + "5730": 0.4609218437, + "5731": 0.4629258517, + "5732": 0.4649298597, + "5733": 0.4669338677, + "5734": 0.4689378758, + "5735": 0.4709418838, + "5736": 0.4729458918, + "5737": 0.4749498998, + "5738": 0.4769539078, + "5739": 0.4789579158, + "5740": 0.4809619238, + "5741": 0.4829659319, + "5742": 0.4849699399, + "5743": 0.4869739479, + "5744": 0.4889779559, + "5745": 0.4909819639, + "5746": 0.4929859719, + "5747": 0.49498998, + "5748": 0.496993988, + "5749": 0.498997996, + "5750": 0.501002004, + "5751": 0.503006012, + "5752": 0.50501002, + "5753": 0.5070140281, + "5754": 0.5090180361, + "5755": 0.5110220441, + "5756": 0.5130260521, + "5757": 0.5150300601, + "5758": 0.5170340681, + "5759": 0.5190380762, + "5760": 0.5210420842, + "5761": 0.5230460922, + "5762": 0.5250501002, + "5763": 0.5270541082, + "5764": 0.5290581162, + "5765": 0.5310621242, + "5766": 0.5330661323, + "5767": 0.5350701403, + "5768": 0.5370741483, + "5769": 0.5390781563, + "5770": 0.5410821643, + "5771": 0.5430861723, + "5772": 0.5450901804, + "5773": 0.5470941884, + "5774": 0.5490981964, + "5775": 0.5511022044, + "5776": 0.5531062124, + "5777": 0.5551102204, + "5778": 0.5571142285, + "5779": 0.5591182365, + "5780": 0.5611222445, + "5781": 0.5631262525, + "5782": 0.5651302605, + "5783": 0.5671342685, + "5784": 0.5691382766, + "5785": 0.5711422846, + "5786": 0.5731462926, + "5787": 0.5751503006, + "5788": 0.5771543086, + "5789": 0.5791583166, + "5790": 0.5811623246, + "5791": 0.5831663327, + "5792": 0.5851703407, + "5793": 0.5871743487, + "5794": 0.5891783567, + "5795": 0.5911823647, + "5796": 0.5931863727, + "5797": 0.5951903808, + "5798": 0.5971943888, + "5799": 0.5991983968, + "5800": 0.6012024048, + "5801": 0.6032064128, + "5802": 0.6052104208, + "5803": 0.6072144289, + "5804": 0.6092184369, + "5805": 0.6112224449, + "5806": 0.6132264529, + "5807": 0.6152304609, + "5808": 0.6172344689, + "5809": 0.619238477, + "5810": 0.621242485, + "5811": 0.623246493, + "5812": 0.625250501, + "5813": 0.627254509, + "5814": 0.629258517, + "5815": 0.6312625251, + "5816": 0.6332665331, + "5817": 0.6352705411, + "5818": 0.6372745491, + "5819": 0.6392785571, + "5820": 0.6412825651, + "5821": 0.6432865731, + "5822": 0.6452905812, + "5823": 0.6472945892, + "5824": 0.6492985972, + "5825": 0.6513026052, + "5826": 0.6533066132, + "5827": 0.6553106212, + "5828": 0.6573146293, + "5829": 0.6593186373, + "5830": 0.6613226453, + "5831": 0.6633266533, + "5832": 0.6653306613, + "5833": 0.6673346693, + "5834": 0.6693386774, + "5835": 0.6713426854, + "5836": 0.6733466934, + "5837": 0.6753507014, + "5838": 0.6773547094, + "5839": 0.6793587174, + "5840": 0.6813627255, + "5841": 0.6833667335, + "5842": 0.6853707415, + "5843": 0.6873747495, + "5844": 0.6893787575, + "5845": 0.6913827655, + "5846": 0.6933867735, + "5847": 0.6953907816, + "5848": 0.6973947896, + "5849": 0.6993987976, + "5850": 0.7014028056, + "5851": 0.7034068136, + "5852": 0.7054108216, + "5853": 0.7074148297, + "5854": 0.7094188377, + "5855": 0.7114228457, + "5856": 0.7134268537, + "5857": 0.7154308617, + "5858": 0.7174348697, + "5859": 0.7194388778, + "5860": 0.7214428858, + "5861": 0.7234468938, + "5862": 0.7254509018, + "5863": 0.7274549098, + "5864": 0.7294589178, + "5865": 0.7314629259, + "5866": 0.7334669339, + "5867": 0.7354709419, + "5868": 0.7374749499, + "5869": 0.7394789579, + "5870": 0.7414829659, + "5871": 0.7434869739, + "5872": 0.745490982, + "5873": 0.74749499, + "5874": 0.749498998, + "5875": 0.751503006, + "5876": 0.753507014, + "5877": 0.755511022, + "5878": 0.7575150301, + "5879": 0.7595190381, + "5880": 0.7615230461, + "5881": 0.7635270541, + "5882": 0.7655310621, + "5883": 0.7675350701, + "5884": 0.7695390782, + "5885": 0.7715430862, + "5886": 0.7735470942, + "5887": 0.7755511022, + "5888": 0.7775551102, + "5889": 0.7795591182, + "5890": 0.7815631263, + "5891": 0.7835671343, + "5892": 0.7855711423, + "5893": 0.7875751503, + "5894": 0.7895791583, + "5895": 0.7915831663, + "5896": 0.7935871743, + "5897": 0.7955911824, + "5898": 0.7975951904, + "5899": 0.7995991984, + "5900": 0.8016032064, + "5901": 0.8036072144, + "5902": 0.8056112224, + "5903": 0.8076152305, + "5904": 0.8096192385, + "5905": 0.8116232465, + "5906": 0.8136272545, + "5907": 0.8156312625, + "5908": 0.8176352705, + "5909": 0.8196392786, + "5910": 0.8216432866, + "5911": 0.8236472946, + "5912": 0.8256513026, + "5913": 0.8276553106, + "5914": 0.8296593186, + "5915": 0.8316633267, + "5916": 0.8336673347, + "5917": 0.8356713427, + "5918": 0.8376753507, + "5919": 0.8396793587, + "5920": 0.8416833667, + "5921": 0.8436873747, + "5922": 0.8456913828, + "5923": 0.8476953908, + "5924": 0.8496993988, + "5925": 0.8517034068, + "5926": 0.8537074148, + "5927": 0.8557114228, + "5928": 0.8577154309, + "5929": 0.8597194389, + "5930": 0.8617234469, + "5931": 0.8637274549, + "5932": 0.8657314629, + "5933": 0.8677354709, + "5934": 0.869739479, + "5935": 0.871743487, + "5936": 0.873747495, + "5937": 0.875751503, + "5938": 0.877755511, + "5939": 0.879759519, + "5940": 0.8817635271, + "5941": 0.8837675351, + "5942": 0.8857715431, + "5943": 0.8877755511, + "5944": 0.8897795591, + "5945": 0.8917835671, + "5946": 0.8937875752, + "5947": 0.8957915832, + "5948": 0.8977955912, + "5949": 0.8997995992, + "5950": 0.9018036072, + "5951": 0.9038076152, + "5952": 0.9058116232, + "5953": 0.9078156313, + "5954": 0.9098196393, + "5955": 0.9118236473, + "5956": 0.9138276553, + "5957": 0.9158316633, + "5958": 0.9178356713, + "5959": 0.9198396794, + "5960": 0.9218436874, + "5961": 0.9238476954, + "5962": 0.9258517034, + "5963": 0.9278557114, + "5964": 0.9298597194, + "5965": 0.9318637275, + "5966": 0.9338677355, + "5967": 0.9358717435, + "5968": 0.9378757515, + "5969": 0.9398797595, + "5970": 0.9418837675, + "5971": 0.9438877756, + "5972": 0.9458917836, + "5973": 0.9478957916, + "5974": 0.9498997996, + "5975": 0.9519038076, + "5976": 0.9539078156, + "5977": 0.9559118236, + "5978": 0.9579158317, + "5979": 0.9599198397, + "5980": 0.9619238477, + "5981": 0.9639278557, + "5982": 0.9659318637, + "5983": 0.9679358717, + "5984": 0.9699398798, + "5985": 0.9719438878, + "5986": 0.9739478958, + "5987": 0.9759519038, + "5988": 0.9779559118, + "5989": 0.9799599198, + "5990": 0.9819639279, + "5991": 0.9839679359, + "5992": 0.9859719439, + "5993": 0.9879759519, + "5994": 0.9899799599, + "5995": 0.9919839679, + "5996": 0.993987976, + "5997": 0.995991984, + "5998": 0.997995992, + "5999": 1.0, + "6000": 0.0, + "6001": 0.002004008, + "6002": 0.004008016, + "6003": 0.006012024, + "6004": 0.0080160321, + "6005": 0.0100200401, + "6006": 0.0120240481, + "6007": 0.0140280561, + "6008": 0.0160320641, + "6009": 0.0180360721, + "6010": 0.0200400802, + "6011": 0.0220440882, + "6012": 0.0240480962, + "6013": 0.0260521042, + "6014": 0.0280561122, + "6015": 0.0300601202, + "6016": 0.0320641283, + "6017": 0.0340681363, + "6018": 0.0360721443, + "6019": 0.0380761523, + "6020": 0.0400801603, + "6021": 0.0420841683, + "6022": 0.0440881764, + "6023": 0.0460921844, + "6024": 0.0480961924, + "6025": 0.0501002004, + "6026": 0.0521042084, + "6027": 0.0541082164, + "6028": 0.0561122244, + "6029": 0.0581162325, + "6030": 0.0601202405, + "6031": 0.0621242485, + "6032": 0.0641282565, + "6033": 0.0661322645, + "6034": 0.0681362725, + "6035": 0.0701402806, + "6036": 0.0721442886, + "6037": 0.0741482966, + "6038": 0.0761523046, + "6039": 0.0781563126, + "6040": 0.0801603206, + "6041": 0.0821643287, + "6042": 0.0841683367, + "6043": 0.0861723447, + "6044": 0.0881763527, + "6045": 0.0901803607, + "6046": 0.0921843687, + "6047": 0.0941883768, + "6048": 0.0961923848, + "6049": 0.0981963928, + "6050": 0.1002004008, + "6051": 0.1022044088, + "6052": 0.1042084168, + "6053": 0.1062124248, + "6054": 0.1082164329, + "6055": 0.1102204409, + "6056": 0.1122244489, + "6057": 0.1142284569, + "6058": 0.1162324649, + "6059": 0.1182364729, + "6060": 0.120240481, + "6061": 0.122244489, + "6062": 0.124248497, + "6063": 0.126252505, + "6064": 0.128256513, + "6065": 0.130260521, + "6066": 0.1322645291, + "6067": 0.1342685371, + "6068": 0.1362725451, + "6069": 0.1382765531, + "6070": 0.1402805611, + "6071": 0.1422845691, + "6072": 0.1442885772, + "6073": 0.1462925852, + "6074": 0.1482965932, + "6075": 0.1503006012, + "6076": 0.1523046092, + "6077": 0.1543086172, + "6078": 0.1563126253, + "6079": 0.1583166333, + "6080": 0.1603206413, + "6081": 0.1623246493, + "6082": 0.1643286573, + "6083": 0.1663326653, + "6084": 0.1683366733, + "6085": 0.1703406814, + "6086": 0.1723446894, + "6087": 0.1743486974, + "6088": 0.1763527054, + "6089": 0.1783567134, + "6090": 0.1803607214, + "6091": 0.1823647295, + "6092": 0.1843687375, + "6093": 0.1863727455, + "6094": 0.1883767535, + "6095": 0.1903807615, + "6096": 0.1923847695, + "6097": 0.1943887776, + "6098": 0.1963927856, + "6099": 0.1983967936, + "6100": 0.2004008016, + "6101": 0.2024048096, + "6102": 0.2044088176, + "6103": 0.2064128257, + "6104": 0.2084168337, + "6105": 0.2104208417, + "6106": 0.2124248497, + "6107": 0.2144288577, + "6108": 0.2164328657, + "6109": 0.2184368737, + "6110": 0.2204408818, + "6111": 0.2224448898, + "6112": 0.2244488978, + "6113": 0.2264529058, + "6114": 0.2284569138, + "6115": 0.2304609218, + "6116": 0.2324649299, + "6117": 0.2344689379, + "6118": 0.2364729459, + "6119": 0.2384769539, + "6120": 0.2404809619, + "6121": 0.2424849699, + "6122": 0.244488978, + "6123": 0.246492986, + "6124": 0.248496994, + "6125": 0.250501002, + "6126": 0.25250501, + "6127": 0.254509018, + "6128": 0.2565130261, + "6129": 0.2585170341, + "6130": 0.2605210421, + "6131": 0.2625250501, + "6132": 0.2645290581, + "6133": 0.2665330661, + "6134": 0.2685370741, + "6135": 0.2705410822, + "6136": 0.2725450902, + "6137": 0.2745490982, + "6138": 0.2765531062, + "6139": 0.2785571142, + "6140": 0.2805611222, + "6141": 0.2825651303, + "6142": 0.2845691383, + "6143": 0.2865731463, + "6144": 0.2885771543, + "6145": 0.2905811623, + "6146": 0.2925851703, + "6147": 0.2945891784, + "6148": 0.2965931864, + "6149": 0.2985971944, + "6150": 0.3006012024, + "6151": 0.3026052104, + "6152": 0.3046092184, + "6153": 0.3066132265, + "6154": 0.3086172345, + "6155": 0.3106212425, + "6156": 0.3126252505, + "6157": 0.3146292585, + "6158": 0.3166332665, + "6159": 0.3186372745, + "6160": 0.3206412826, + "6161": 0.3226452906, + "6162": 0.3246492986, + "6163": 0.3266533066, + "6164": 0.3286573146, + "6165": 0.3306613226, + "6166": 0.3326653307, + "6167": 0.3346693387, + "6168": 0.3366733467, + "6169": 0.3386773547, + "6170": 0.3406813627, + "6171": 0.3426853707, + "6172": 0.3446893788, + "6173": 0.3466933868, + "6174": 0.3486973948, + "6175": 0.3507014028, + "6176": 0.3527054108, + "6177": 0.3547094188, + "6178": 0.3567134269, + "6179": 0.3587174349, + "6180": 0.3607214429, + "6181": 0.3627254509, + "6182": 0.3647294589, + "6183": 0.3667334669, + "6184": 0.3687374749, + "6185": 0.370741483, + "6186": 0.372745491, + "6187": 0.374749499, + "6188": 0.376753507, + "6189": 0.378757515, + "6190": 0.380761523, + "6191": 0.3827655311, + "6192": 0.3847695391, + "6193": 0.3867735471, + "6194": 0.3887775551, + "6195": 0.3907815631, + "6196": 0.3927855711, + "6197": 0.3947895792, + "6198": 0.3967935872, + "6199": 0.3987975952, + "6200": 0.4008016032, + "6201": 0.4028056112, + "6202": 0.4048096192, + "6203": 0.4068136273, + "6204": 0.4088176353, + "6205": 0.4108216433, + "6206": 0.4128256513, + "6207": 0.4148296593, + "6208": 0.4168336673, + "6209": 0.4188376754, + "6210": 0.4208416834, + "6211": 0.4228456914, + "6212": 0.4248496994, + "6213": 0.4268537074, + "6214": 0.4288577154, + "6215": 0.4308617234, + "6216": 0.4328657315, + "6217": 0.4348697395, + "6218": 0.4368737475, + "6219": 0.4388777555, + "6220": 0.4408817635, + "6221": 0.4428857715, + "6222": 0.4448897796, + "6223": 0.4468937876, + "6224": 0.4488977956, + "6225": 0.4509018036, + "6226": 0.4529058116, + "6227": 0.4549098196, + "6228": 0.4569138277, + "6229": 0.4589178357, + "6230": 0.4609218437, + "6231": 0.4629258517, + "6232": 0.4649298597, + "6233": 0.4669338677, + "6234": 0.4689378758, + "6235": 0.4709418838, + "6236": 0.4729458918, + "6237": 0.4749498998, + "6238": 0.4769539078, + "6239": 0.4789579158, + "6240": 0.4809619238, + "6241": 0.4829659319, + "6242": 0.4849699399, + "6243": 0.4869739479, + "6244": 0.4889779559, + "6245": 0.4909819639, + "6246": 0.4929859719, + "6247": 0.49498998, + "6248": 0.496993988, + "6249": 0.498997996, + "6250": 0.501002004, + "6251": 0.503006012, + "6252": 0.50501002, + "6253": 0.5070140281, + "6254": 0.5090180361, + "6255": 0.5110220441, + "6256": 0.5130260521, + "6257": 0.5150300601, + "6258": 0.5170340681, + "6259": 0.5190380762, + "6260": 0.5210420842, + "6261": 0.5230460922, + "6262": 0.5250501002, + "6263": 0.5270541082, + "6264": 0.5290581162, + "6265": 0.5310621242, + "6266": 0.5330661323, + "6267": 0.5350701403, + "6268": 0.5370741483, + "6269": 0.5390781563, + "6270": 0.5410821643, + "6271": 0.5430861723, + "6272": 0.5450901804, + "6273": 0.5470941884, + "6274": 0.5490981964, + "6275": 0.5511022044, + "6276": 0.5531062124, + "6277": 0.5551102204, + "6278": 0.5571142285, + "6279": 0.5591182365, + "6280": 0.5611222445, + "6281": 0.5631262525, + "6282": 0.5651302605, + "6283": 0.5671342685, + "6284": 0.5691382766, + "6285": 0.5711422846, + "6286": 0.5731462926, + "6287": 0.5751503006, + "6288": 0.5771543086, + "6289": 0.5791583166, + "6290": 0.5811623246, + "6291": 0.5831663327, + "6292": 0.5851703407, + "6293": 0.5871743487, + "6294": 0.5891783567, + "6295": 0.5911823647, + "6296": 0.5931863727, + "6297": 0.5951903808, + "6298": 0.5971943888, + "6299": 0.5991983968, + "6300": 0.6012024048, + "6301": 0.6032064128, + "6302": 0.6052104208, + "6303": 0.6072144289, + "6304": 0.6092184369, + "6305": 0.6112224449, + "6306": 0.6132264529, + "6307": 0.6152304609, + "6308": 0.6172344689, + "6309": 0.619238477, + "6310": 0.621242485, + "6311": 0.623246493, + "6312": 0.625250501, + "6313": 0.627254509, + "6314": 0.629258517, + "6315": 0.6312625251, + "6316": 0.6332665331, + "6317": 0.6352705411, + "6318": 0.6372745491, + "6319": 0.6392785571, + "6320": 0.6412825651, + "6321": 0.6432865731, + "6322": 0.6452905812, + "6323": 0.6472945892, + "6324": 0.6492985972, + "6325": 0.6513026052, + "6326": 0.6533066132, + "6327": 0.6553106212, + "6328": 0.6573146293, + "6329": 0.6593186373, + "6330": 0.6613226453, + "6331": 0.6633266533, + "6332": 0.6653306613, + "6333": 0.6673346693, + "6334": 0.6693386774, + "6335": 0.6713426854, + "6336": 0.6733466934, + "6337": 0.6753507014, + "6338": 0.6773547094, + "6339": 0.6793587174, + "6340": 0.6813627255, + "6341": 0.6833667335, + "6342": 0.6853707415, + "6343": 0.6873747495, + "6344": 0.6893787575, + "6345": 0.6913827655, + "6346": 0.6933867735, + "6347": 0.6953907816, + "6348": 0.6973947896, + "6349": 0.6993987976, + "6350": 0.7014028056, + "6351": 0.7034068136, + "6352": 0.7054108216, + "6353": 0.7074148297, + "6354": 0.7094188377, + "6355": 0.7114228457, + "6356": 0.7134268537, + "6357": 0.7154308617, + "6358": 0.7174348697, + "6359": 0.7194388778, + "6360": 0.7214428858, + "6361": 0.7234468938, + "6362": 0.7254509018, + "6363": 0.7274549098, + "6364": 0.7294589178, + "6365": 0.7314629259, + "6366": 0.7334669339, + "6367": 0.7354709419, + "6368": 0.7374749499, + "6369": 0.7394789579, + "6370": 0.7414829659, + "6371": 0.7434869739, + "6372": 0.745490982, + "6373": 0.74749499, + "6374": 0.749498998, + "6375": 0.751503006, + "6376": 0.753507014, + "6377": 0.755511022, + "6378": 0.7575150301, + "6379": 0.7595190381, + "6380": 0.7615230461, + "6381": 0.7635270541, + "6382": 0.7655310621, + "6383": 0.7675350701, + "6384": 0.7695390782, + "6385": 0.7715430862, + "6386": 0.7735470942, + "6387": 0.7755511022, + "6388": 0.7775551102, + "6389": 0.7795591182, + "6390": 0.7815631263, + "6391": 0.7835671343, + "6392": 0.7855711423, + "6393": 0.7875751503, + "6394": 0.7895791583, + "6395": 0.7915831663, + "6396": 0.7935871743, + "6397": 0.7955911824, + "6398": 0.7975951904, + "6399": 0.7995991984, + "6400": 0.8016032064, + "6401": 0.8036072144, + "6402": 0.8056112224, + "6403": 0.8076152305, + "6404": 0.8096192385, + "6405": 0.8116232465, + "6406": 0.8136272545, + "6407": 0.8156312625, + "6408": 0.8176352705, + "6409": 0.8196392786, + "6410": 0.8216432866, + "6411": 0.8236472946, + "6412": 0.8256513026, + "6413": 0.8276553106, + "6414": 0.8296593186, + "6415": 0.8316633267, + "6416": 0.8336673347, + "6417": 0.8356713427, + "6418": 0.8376753507, + "6419": 0.8396793587, + "6420": 0.8416833667, + "6421": 0.8436873747, + "6422": 0.8456913828, + "6423": 0.8476953908, + "6424": 0.8496993988, + "6425": 0.8517034068, + "6426": 0.8537074148, + "6427": 0.8557114228, + "6428": 0.8577154309, + "6429": 0.8597194389, + "6430": 0.8617234469, + "6431": 0.8637274549, + "6432": 0.8657314629, + "6433": 0.8677354709, + "6434": 0.869739479, + "6435": 0.871743487, + "6436": 0.873747495, + "6437": 0.875751503, + "6438": 0.877755511, + "6439": 0.879759519, + "6440": 0.8817635271, + "6441": 0.8837675351, + "6442": 0.8857715431, + "6443": 0.8877755511, + "6444": 0.8897795591, + "6445": 0.8917835671, + "6446": 0.8937875752, + "6447": 0.8957915832, + "6448": 0.8977955912, + "6449": 0.8997995992, + "6450": 0.9018036072, + "6451": 0.9038076152, + "6452": 0.9058116232, + "6453": 0.9078156313, + "6454": 0.9098196393, + "6455": 0.9118236473, + "6456": 0.9138276553, + "6457": 0.9158316633, + "6458": 0.9178356713, + "6459": 0.9198396794, + "6460": 0.9218436874, + "6461": 0.9238476954, + "6462": 0.9258517034, + "6463": 0.9278557114, + "6464": 0.9298597194, + "6465": 0.9318637275, + "6466": 0.9338677355, + "6467": 0.9358717435, + "6468": 0.9378757515, + "6469": 0.9398797595, + "6470": 0.9418837675, + "6471": 0.9438877756, + "6472": 0.9458917836, + "6473": 0.9478957916, + "6474": 0.9498997996, + "6475": 0.9519038076, + "6476": 0.9539078156, + "6477": 0.9559118236, + "6478": 0.9579158317, + "6479": 0.9599198397, + "6480": 0.9619238477, + "6481": 0.9639278557, + "6482": 0.9659318637, + "6483": 0.9679358717, + "6484": 0.9699398798, + "6485": 0.9719438878, + "6486": 0.9739478958, + "6487": 0.9759519038, + "6488": 0.9779559118, + "6489": 0.9799599198, + "6490": 0.9819639279, + "6491": 0.9839679359, + "6492": 0.9859719439, + "6493": 0.9879759519, + "6494": 0.9899799599, + "6495": 0.9919839679, + "6496": 0.993987976, + "6497": 0.995991984, + "6498": 0.997995992, + "6499": 1.0, + "6500": 0.0, + "6501": 0.002004008, + "6502": 0.004008016, + "6503": 0.006012024, + "6504": 0.0080160321, + "6505": 0.0100200401, + "6506": 0.0120240481, + "6507": 0.0140280561, + "6508": 0.0160320641, + "6509": 0.0180360721, + "6510": 0.0200400802, + "6511": 0.0220440882, + "6512": 0.0240480962, + "6513": 0.0260521042, + "6514": 0.0280561122, + "6515": 0.0300601202, + "6516": 0.0320641283, + "6517": 0.0340681363, + "6518": 0.0360721443, + "6519": 0.0380761523, + "6520": 0.0400801603, + "6521": 0.0420841683, + "6522": 0.0440881764, + "6523": 0.0460921844, + "6524": 0.0480961924, + "6525": 0.0501002004, + "6526": 0.0521042084, + "6527": 0.0541082164, + "6528": 0.0561122244, + "6529": 0.0581162325, + "6530": 0.0601202405, + "6531": 0.0621242485, + "6532": 0.0641282565, + "6533": 0.0661322645, + "6534": 0.0681362725, + "6535": 0.0701402806, + "6536": 0.0721442886, + "6537": 0.0741482966, + "6538": 0.0761523046, + "6539": 0.0781563126, + "6540": 0.0801603206, + "6541": 0.0821643287, + "6542": 0.0841683367, + "6543": 0.0861723447, + "6544": 0.0881763527, + "6545": 0.0901803607, + "6546": 0.0921843687, + "6547": 0.0941883768, + "6548": 0.0961923848, + "6549": 0.0981963928, + "6550": 0.1002004008, + "6551": 0.1022044088, + "6552": 0.1042084168, + "6553": 0.1062124248, + "6554": 0.1082164329, + "6555": 0.1102204409, + "6556": 0.1122244489, + "6557": 0.1142284569, + "6558": 0.1162324649, + "6559": 0.1182364729, + "6560": 0.120240481, + "6561": 0.122244489, + "6562": 0.124248497, + "6563": 0.126252505, + "6564": 0.128256513, + "6565": 0.130260521, + "6566": 0.1322645291, + "6567": 0.1342685371, + "6568": 0.1362725451, + "6569": 0.1382765531, + "6570": 0.1402805611, + "6571": 0.1422845691, + "6572": 0.1442885772, + "6573": 0.1462925852, + "6574": 0.1482965932, + "6575": 0.1503006012, + "6576": 0.1523046092, + "6577": 0.1543086172, + "6578": 0.1563126253, + "6579": 0.1583166333, + "6580": 0.1603206413, + "6581": 0.1623246493, + "6582": 0.1643286573, + "6583": 0.1663326653, + "6584": 0.1683366733, + "6585": 0.1703406814, + "6586": 0.1723446894, + "6587": 0.1743486974, + "6588": 0.1763527054, + "6589": 0.1783567134, + "6590": 0.1803607214, + "6591": 0.1823647295, + "6592": 0.1843687375, + "6593": 0.1863727455, + "6594": 0.1883767535, + "6595": 0.1903807615, + "6596": 0.1923847695, + "6597": 0.1943887776, + "6598": 0.1963927856, + "6599": 0.1983967936, + "6600": 0.2004008016, + "6601": 0.2024048096, + "6602": 0.2044088176, + "6603": 0.2064128257, + "6604": 0.2084168337, + "6605": 0.2104208417, + "6606": 0.2124248497, + "6607": 0.2144288577, + "6608": 0.2164328657, + "6609": 0.2184368737, + "6610": 0.2204408818, + "6611": 0.2224448898, + "6612": 0.2244488978, + "6613": 0.2264529058, + "6614": 0.2284569138, + "6615": 0.2304609218, + "6616": 0.2324649299, + "6617": 0.2344689379, + "6618": 0.2364729459, + "6619": 0.2384769539, + "6620": 0.2404809619, + "6621": 0.2424849699, + "6622": 0.244488978, + "6623": 0.246492986, + "6624": 0.248496994, + "6625": 0.250501002, + "6626": 0.25250501, + "6627": 0.254509018, + "6628": 0.2565130261, + "6629": 0.2585170341, + "6630": 0.2605210421, + "6631": 0.2625250501, + "6632": 0.2645290581, + "6633": 0.2665330661, + "6634": 0.2685370741, + "6635": 0.2705410822, + "6636": 0.2725450902, + "6637": 0.2745490982, + "6638": 0.2765531062, + "6639": 0.2785571142, + "6640": 0.2805611222, + "6641": 0.2825651303, + "6642": 0.2845691383, + "6643": 0.2865731463, + "6644": 0.2885771543, + "6645": 0.2905811623, + "6646": 0.2925851703, + "6647": 0.2945891784, + "6648": 0.2965931864, + "6649": 0.2985971944, + "6650": 0.3006012024, + "6651": 0.3026052104, + "6652": 0.3046092184, + "6653": 0.3066132265, + "6654": 0.3086172345, + "6655": 0.3106212425, + "6656": 0.3126252505, + "6657": 0.3146292585, + "6658": 0.3166332665, + "6659": 0.3186372745, + "6660": 0.3206412826, + "6661": 0.3226452906, + "6662": 0.3246492986, + "6663": 0.3266533066, + "6664": 0.3286573146, + "6665": 0.3306613226, + "6666": 0.3326653307, + "6667": 0.3346693387, + "6668": 0.3366733467, + "6669": 0.3386773547, + "6670": 0.3406813627, + "6671": 0.3426853707, + "6672": 0.3446893788, + "6673": 0.3466933868, + "6674": 0.3486973948, + "6675": 0.3507014028, + "6676": 0.3527054108, + "6677": 0.3547094188, + "6678": 0.3567134269, + "6679": 0.3587174349, + "6680": 0.3607214429, + "6681": 0.3627254509, + "6682": 0.3647294589, + "6683": 0.3667334669, + "6684": 0.3687374749, + "6685": 0.370741483, + "6686": 0.372745491, + "6687": 0.374749499, + "6688": 0.376753507, + "6689": 0.378757515, + "6690": 0.380761523, + "6691": 0.3827655311, + "6692": 0.3847695391, + "6693": 0.3867735471, + "6694": 0.3887775551, + "6695": 0.3907815631, + "6696": 0.3927855711, + "6697": 0.3947895792, + "6698": 0.3967935872, + "6699": 0.3987975952, + "6700": 0.4008016032, + "6701": 0.4028056112, + "6702": 0.4048096192, + "6703": 0.4068136273, + "6704": 0.4088176353, + "6705": 0.4108216433, + "6706": 0.4128256513, + "6707": 0.4148296593, + "6708": 0.4168336673, + "6709": 0.4188376754, + "6710": 0.4208416834, + "6711": 0.4228456914, + "6712": 0.4248496994, + "6713": 0.4268537074, + "6714": 0.4288577154, + "6715": 0.4308617234, + "6716": 0.4328657315, + "6717": 0.4348697395, + "6718": 0.4368737475, + "6719": 0.4388777555, + "6720": 0.4408817635, + "6721": 0.4428857715, + "6722": 0.4448897796, + "6723": 0.4468937876, + "6724": 0.4488977956, + "6725": 0.4509018036, + "6726": 0.4529058116, + "6727": 0.4549098196, + "6728": 0.4569138277, + "6729": 0.4589178357, + "6730": 0.4609218437, + "6731": 0.4629258517, + "6732": 0.4649298597, + "6733": 0.4669338677, + "6734": 0.4689378758, + "6735": 0.4709418838, + "6736": 0.4729458918, + "6737": 0.4749498998, + "6738": 0.4769539078, + "6739": 0.4789579158, + "6740": 0.4809619238, + "6741": 0.4829659319, + "6742": 0.4849699399, + "6743": 0.4869739479, + "6744": 0.4889779559, + "6745": 0.4909819639, + "6746": 0.4929859719, + "6747": 0.49498998, + "6748": 0.496993988, + "6749": 0.498997996, + "6750": 0.501002004, + "6751": 0.503006012, + "6752": 0.50501002, + "6753": 0.5070140281, + "6754": 0.5090180361, + "6755": 0.5110220441, + "6756": 0.5130260521, + "6757": 0.5150300601, + "6758": 0.5170340681, + "6759": 0.5190380762, + "6760": 0.5210420842, + "6761": 0.5230460922, + "6762": 0.5250501002, + "6763": 0.5270541082, + "6764": 0.5290581162, + "6765": 0.5310621242, + "6766": 0.5330661323, + "6767": 0.5350701403, + "6768": 0.5370741483, + "6769": 0.5390781563, + "6770": 0.5410821643, + "6771": 0.5430861723, + "6772": 0.5450901804, + "6773": 0.5470941884, + "6774": 0.5490981964, + "6775": 0.5511022044, + "6776": 0.5531062124, + "6777": 0.5551102204, + "6778": 0.5571142285, + "6779": 0.5591182365, + "6780": 0.5611222445, + "6781": 0.5631262525, + "6782": 0.5651302605, + "6783": 0.5671342685, + "6784": 0.5691382766, + "6785": 0.5711422846, + "6786": 0.5731462926, + "6787": 0.5751503006, + "6788": 0.5771543086, + "6789": 0.5791583166, + "6790": 0.5811623246, + "6791": 0.5831663327, + "6792": 0.5851703407, + "6793": 0.5871743487, + "6794": 0.5891783567, + "6795": 0.5911823647, + "6796": 0.5931863727, + "6797": 0.5951903808, + "6798": 0.5971943888, + "6799": 0.5991983968, + "6800": 0.6012024048, + "6801": 0.6032064128, + "6802": 0.6052104208, + "6803": 0.6072144289, + "6804": 0.6092184369, + "6805": 0.6112224449, + "6806": 0.6132264529, + "6807": 0.6152304609, + "6808": 0.6172344689, + "6809": 0.619238477, + "6810": 0.621242485, + "6811": 0.623246493, + "6812": 0.625250501, + "6813": 0.627254509, + "6814": 0.629258517, + "6815": 0.6312625251, + "6816": 0.6332665331, + "6817": 0.6352705411, + "6818": 0.6372745491, + "6819": 0.6392785571, + "6820": 0.6412825651, + "6821": 0.6432865731, + "6822": 0.6452905812, + "6823": 0.6472945892, + "6824": 0.6492985972, + "6825": 0.6513026052, + "6826": 0.6533066132, + "6827": 0.6553106212, + "6828": 0.6573146293, + "6829": 0.6593186373, + "6830": 0.6613226453, + "6831": 0.6633266533, + "6832": 0.6653306613, + "6833": 0.6673346693, + "6834": 0.6693386774, + "6835": 0.6713426854, + "6836": 0.6733466934, + "6837": 0.6753507014, + "6838": 0.6773547094, + "6839": 0.6793587174, + "6840": 0.6813627255, + "6841": 0.6833667335, + "6842": 0.6853707415, + "6843": 0.6873747495, + "6844": 0.6893787575, + "6845": 0.6913827655, + "6846": 0.6933867735, + "6847": 0.6953907816, + "6848": 0.6973947896, + "6849": 0.6993987976, + "6850": 0.7014028056, + "6851": 0.7034068136, + "6852": 0.7054108216, + "6853": 0.7074148297, + "6854": 0.7094188377, + "6855": 0.7114228457, + "6856": 0.7134268537, + "6857": 0.7154308617, + "6858": 0.7174348697, + "6859": 0.7194388778, + "6860": 0.7214428858, + "6861": 0.7234468938, + "6862": 0.7254509018, + "6863": 0.7274549098, + "6864": 0.7294589178, + "6865": 0.7314629259, + "6866": 0.7334669339, + "6867": 0.7354709419, + "6868": 0.7374749499, + "6869": 0.7394789579, + "6870": 0.7414829659, + "6871": 0.7434869739, + "6872": 0.745490982, + "6873": 0.74749499, + "6874": 0.749498998, + "6875": 0.751503006, + "6876": 0.753507014, + "6877": 0.755511022, + "6878": 0.7575150301, + "6879": 0.7595190381, + "6880": 0.7615230461, + "6881": 0.7635270541, + "6882": 0.7655310621, + "6883": 0.7675350701, + "6884": 0.7695390782, + "6885": 0.7715430862, + "6886": 0.7735470942, + "6887": 0.7755511022, + "6888": 0.7775551102, + "6889": 0.7795591182, + "6890": 0.7815631263, + "6891": 0.7835671343, + "6892": 0.7855711423, + "6893": 0.7875751503, + "6894": 0.7895791583, + "6895": 0.7915831663, + "6896": 0.7935871743, + "6897": 0.7955911824, + "6898": 0.7975951904, + "6899": 0.7995991984, + "6900": 0.8016032064, + "6901": 0.8036072144, + "6902": 0.8056112224, + "6903": 0.8076152305, + "6904": 0.8096192385, + "6905": 0.8116232465, + "6906": 0.8136272545, + "6907": 0.8156312625, + "6908": 0.8176352705, + "6909": 0.8196392786, + "6910": 0.8216432866, + "6911": 0.8236472946, + "6912": 0.8256513026, + "6913": 0.8276553106, + "6914": 0.8296593186, + "6915": 0.8316633267, + "6916": 0.8336673347, + "6917": 0.8356713427, + "6918": 0.8376753507, + "6919": 0.8396793587, + "6920": 0.8416833667, + "6921": 0.8436873747, + "6922": 0.8456913828, + "6923": 0.8476953908, + "6924": 0.8496993988, + "6925": 0.8517034068, + "6926": 0.8537074148, + "6927": 0.8557114228, + "6928": 0.8577154309, + "6929": 0.8597194389, + "6930": 0.8617234469, + "6931": 0.8637274549, + "6932": 0.8657314629, + "6933": 0.8677354709, + "6934": 0.869739479, + "6935": 0.871743487, + "6936": 0.873747495, + "6937": 0.875751503, + "6938": 0.877755511, + "6939": 0.879759519, + "6940": 0.8817635271, + "6941": 0.8837675351, + "6942": 0.8857715431, + "6943": 0.8877755511, + "6944": 0.8897795591, + "6945": 0.8917835671, + "6946": 0.8937875752, + "6947": 0.8957915832, + "6948": 0.8977955912, + "6949": 0.8997995992, + "6950": 0.9018036072, + "6951": 0.9038076152, + "6952": 0.9058116232, + "6953": 0.9078156313, + "6954": 0.9098196393, + "6955": 0.9118236473, + "6956": 0.9138276553, + "6957": 0.9158316633, + "6958": 0.9178356713, + "6959": 0.9198396794, + "6960": 0.9218436874, + "6961": 0.9238476954, + "6962": 0.9258517034, + "6963": 0.9278557114, + "6964": 0.9298597194, + "6965": 0.9318637275, + "6966": 0.9338677355, + "6967": 0.9358717435, + "6968": 0.9378757515, + "6969": 0.9398797595, + "6970": 0.9418837675, + "6971": 0.9438877756, + "6972": 0.9458917836, + "6973": 0.9478957916, + "6974": 0.9498997996, + "6975": 0.9519038076, + "6976": 0.9539078156, + "6977": 0.9559118236, + "6978": 0.9579158317, + "6979": 0.9599198397, + "6980": 0.9619238477, + "6981": 0.9639278557, + "6982": 0.9659318637, + "6983": 0.9679358717, + "6984": 0.9699398798, + "6985": 0.9719438878, + "6986": 0.9739478958, + "6987": 0.9759519038, + "6988": 0.9779559118, + "6989": 0.9799599198, + "6990": 0.9819639279, + "6991": 0.9839679359, + "6992": 0.9859719439, + "6993": 0.9879759519, + "6994": 0.9899799599, + "6995": 0.9919839679, + "6996": 0.993987976, + "6997": 0.995991984, + "6998": 0.997995992, + "6999": 1.0, + "7000": 0.0, + "7001": 0.002004008, + "7002": 0.004008016, + "7003": 0.006012024, + "7004": 0.0080160321, + "7005": 0.0100200401, + "7006": 0.0120240481, + "7007": 0.0140280561, + "7008": 0.0160320641, + "7009": 0.0180360721, + "7010": 0.0200400802, + "7011": 0.0220440882, + "7012": 0.0240480962, + "7013": 0.0260521042, + "7014": 0.0280561122, + "7015": 0.0300601202, + "7016": 0.0320641283, + "7017": 0.0340681363, + "7018": 0.0360721443, + "7019": 0.0380761523, + "7020": 0.0400801603, + "7021": 0.0420841683, + "7022": 0.0440881764, + "7023": 0.0460921844, + "7024": 0.0480961924, + "7025": 0.0501002004, + "7026": 0.0521042084, + "7027": 0.0541082164, + "7028": 0.0561122244, + "7029": 0.0581162325, + "7030": 0.0601202405, + "7031": 0.0621242485, + "7032": 0.0641282565, + "7033": 0.0661322645, + "7034": 0.0681362725, + "7035": 0.0701402806, + "7036": 0.0721442886, + "7037": 0.0741482966, + "7038": 0.0761523046, + "7039": 0.0781563126, + "7040": 0.0801603206, + "7041": 0.0821643287, + "7042": 0.0841683367, + "7043": 0.0861723447, + "7044": 0.0881763527, + "7045": 0.0901803607, + "7046": 0.0921843687, + "7047": 0.0941883768, + "7048": 0.0961923848, + "7049": 0.0981963928, + "7050": 0.1002004008, + "7051": 0.1022044088, + "7052": 0.1042084168, + "7053": 0.1062124248, + "7054": 0.1082164329, + "7055": 0.1102204409, + "7056": 0.1122244489, + "7057": 0.1142284569, + "7058": 0.1162324649, + "7059": 0.1182364729, + "7060": 0.120240481, + "7061": 0.122244489, + "7062": 0.124248497, + "7063": 0.126252505, + "7064": 0.128256513, + "7065": 0.130260521, + "7066": 0.1322645291, + "7067": 0.1342685371, + "7068": 0.1362725451, + "7069": 0.1382765531, + "7070": 0.1402805611, + "7071": 0.1422845691, + "7072": 0.1442885772, + "7073": 0.1462925852, + "7074": 0.1482965932, + "7075": 0.1503006012, + "7076": 0.1523046092, + "7077": 0.1543086172, + "7078": 0.1563126253, + "7079": 0.1583166333, + "7080": 0.1603206413, + "7081": 0.1623246493, + "7082": 0.1643286573, + "7083": 0.1663326653, + "7084": 0.1683366733, + "7085": 0.1703406814, + "7086": 0.1723446894, + "7087": 0.1743486974, + "7088": 0.1763527054, + "7089": 0.1783567134, + "7090": 0.1803607214, + "7091": 0.1823647295, + "7092": 0.1843687375, + "7093": 0.1863727455, + "7094": 0.1883767535, + "7095": 0.1903807615, + "7096": 0.1923847695, + "7097": 0.1943887776, + "7098": 0.1963927856, + "7099": 0.1983967936, + "7100": 0.2004008016, + "7101": 0.2024048096, + "7102": 0.2044088176, + "7103": 0.2064128257, + "7104": 0.2084168337, + "7105": 0.2104208417, + "7106": 0.2124248497, + "7107": 0.2144288577, + "7108": 0.2164328657, + "7109": 0.2184368737, + "7110": 0.2204408818, + "7111": 0.2224448898, + "7112": 0.2244488978, + "7113": 0.2264529058, + "7114": 0.2284569138, + "7115": 0.2304609218, + "7116": 0.2324649299, + "7117": 0.2344689379, + "7118": 0.2364729459, + "7119": 0.2384769539, + "7120": 0.2404809619, + "7121": 0.2424849699, + "7122": 0.244488978, + "7123": 0.246492986, + "7124": 0.248496994, + "7125": 0.250501002, + "7126": 0.25250501, + "7127": 0.254509018, + "7128": 0.2565130261, + "7129": 0.2585170341, + "7130": 0.2605210421, + "7131": 0.2625250501, + "7132": 0.2645290581, + "7133": 0.2665330661, + "7134": 0.2685370741, + "7135": 0.2705410822, + "7136": 0.2725450902, + "7137": 0.2745490982, + "7138": 0.2765531062, + "7139": 0.2785571142, + "7140": 0.2805611222, + "7141": 0.2825651303, + "7142": 0.2845691383, + "7143": 0.2865731463, + "7144": 0.2885771543, + "7145": 0.2905811623, + "7146": 0.2925851703, + "7147": 0.2945891784, + "7148": 0.2965931864, + "7149": 0.2985971944, + "7150": 0.3006012024, + "7151": 0.3026052104, + "7152": 0.3046092184, + "7153": 0.3066132265, + "7154": 0.3086172345, + "7155": 0.3106212425, + "7156": 0.3126252505, + "7157": 0.3146292585, + "7158": 0.3166332665, + "7159": 0.3186372745, + "7160": 0.3206412826, + "7161": 0.3226452906, + "7162": 0.3246492986, + "7163": 0.3266533066, + "7164": 0.3286573146, + "7165": 0.3306613226, + "7166": 0.3326653307, + "7167": 0.3346693387, + "7168": 0.3366733467, + "7169": 0.3386773547, + "7170": 0.3406813627, + "7171": 0.3426853707, + "7172": 0.3446893788, + "7173": 0.3466933868, + "7174": 0.3486973948, + "7175": 0.3507014028, + "7176": 0.3527054108, + "7177": 0.3547094188, + "7178": 0.3567134269, + "7179": 0.3587174349, + "7180": 0.3607214429, + "7181": 0.3627254509, + "7182": 0.3647294589, + "7183": 0.3667334669, + "7184": 0.3687374749, + "7185": 0.370741483, + "7186": 0.372745491, + "7187": 0.374749499, + "7188": 0.376753507, + "7189": 0.378757515, + "7190": 0.380761523, + "7191": 0.3827655311, + "7192": 0.3847695391, + "7193": 0.3867735471, + "7194": 0.3887775551, + "7195": 0.3907815631, + "7196": 0.3927855711, + "7197": 0.3947895792, + "7198": 0.3967935872, + "7199": 0.3987975952, + "7200": 0.4008016032, + "7201": 0.4028056112, + "7202": 0.4048096192, + "7203": 0.4068136273, + "7204": 0.4088176353, + "7205": 0.4108216433, + "7206": 0.4128256513, + "7207": 0.4148296593, + "7208": 0.4168336673, + "7209": 0.4188376754, + "7210": 0.4208416834, + "7211": 0.4228456914, + "7212": 0.4248496994, + "7213": 0.4268537074, + "7214": 0.4288577154, + "7215": 0.4308617234, + "7216": 0.4328657315, + "7217": 0.4348697395, + "7218": 0.4368737475, + "7219": 0.4388777555, + "7220": 0.4408817635, + "7221": 0.4428857715, + "7222": 0.4448897796, + "7223": 0.4468937876, + "7224": 0.4488977956, + "7225": 0.4509018036, + "7226": 0.4529058116, + "7227": 0.4549098196, + "7228": 0.4569138277, + "7229": 0.4589178357, + "7230": 0.4609218437, + "7231": 0.4629258517, + "7232": 0.4649298597, + "7233": 0.4669338677, + "7234": 0.4689378758, + "7235": 0.4709418838, + "7236": 0.4729458918, + "7237": 0.4749498998, + "7238": 0.4769539078, + "7239": 0.4789579158, + "7240": 0.4809619238, + "7241": 0.4829659319, + "7242": 0.4849699399, + "7243": 0.4869739479, + "7244": 0.4889779559, + "7245": 0.4909819639, + "7246": 0.4929859719, + "7247": 0.49498998, + "7248": 0.496993988, + "7249": 0.498997996, + "7250": 0.501002004, + "7251": 0.503006012, + "7252": 0.50501002, + "7253": 0.5070140281, + "7254": 0.5090180361, + "7255": 0.5110220441, + "7256": 0.5130260521, + "7257": 0.5150300601, + "7258": 0.5170340681, + "7259": 0.5190380762, + "7260": 0.5210420842, + "7261": 0.5230460922, + "7262": 0.5250501002, + "7263": 0.5270541082, + "7264": 0.5290581162, + "7265": 0.5310621242, + "7266": 0.5330661323, + "7267": 0.5350701403, + "7268": 0.5370741483, + "7269": 0.5390781563, + "7270": 0.5410821643, + "7271": 0.5430861723, + "7272": 0.5450901804, + "7273": 0.5470941884, + "7274": 0.5490981964, + "7275": 0.5511022044, + "7276": 0.5531062124, + "7277": 0.5551102204, + "7278": 0.5571142285, + "7279": 0.5591182365, + "7280": 0.5611222445, + "7281": 0.5631262525, + "7282": 0.5651302605, + "7283": 0.5671342685, + "7284": 0.5691382766, + "7285": 0.5711422846, + "7286": 0.5731462926, + "7287": 0.5751503006, + "7288": 0.5771543086, + "7289": 0.5791583166, + "7290": 0.5811623246, + "7291": 0.5831663327, + "7292": 0.5851703407, + "7293": 0.5871743487, + "7294": 0.5891783567, + "7295": 0.5911823647, + "7296": 0.5931863727, + "7297": 0.5951903808, + "7298": 0.5971943888, + "7299": 0.5991983968, + "7300": 0.6012024048, + "7301": 0.6032064128, + "7302": 0.6052104208, + "7303": 0.6072144289, + "7304": 0.6092184369, + "7305": 0.6112224449, + "7306": 0.6132264529, + "7307": 0.6152304609, + "7308": 0.6172344689, + "7309": 0.619238477, + "7310": 0.621242485, + "7311": 0.623246493, + "7312": 0.625250501, + "7313": 0.627254509, + "7314": 0.629258517, + "7315": 0.6312625251, + "7316": 0.6332665331, + "7317": 0.6352705411, + "7318": 0.6372745491, + "7319": 0.6392785571, + "7320": 0.6412825651, + "7321": 0.6432865731, + "7322": 0.6452905812, + "7323": 0.6472945892, + "7324": 0.6492985972, + "7325": 0.6513026052, + "7326": 0.6533066132, + "7327": 0.6553106212, + "7328": 0.6573146293, + "7329": 0.6593186373, + "7330": 0.6613226453, + "7331": 0.6633266533, + "7332": 0.6653306613, + "7333": 0.6673346693, + "7334": 0.6693386774, + "7335": 0.6713426854, + "7336": 0.6733466934, + "7337": 0.6753507014, + "7338": 0.6773547094, + "7339": 0.6793587174, + "7340": 0.6813627255, + "7341": 0.6833667335, + "7342": 0.6853707415, + "7343": 0.6873747495, + "7344": 0.6893787575, + "7345": 0.6913827655, + "7346": 0.6933867735, + "7347": 0.6953907816, + "7348": 0.6973947896, + "7349": 0.6993987976, + "7350": 0.7014028056, + "7351": 0.7034068136, + "7352": 0.7054108216, + "7353": 0.7074148297, + "7354": 0.7094188377, + "7355": 0.7114228457, + "7356": 0.7134268537, + "7357": 0.7154308617, + "7358": 0.7174348697, + "7359": 0.7194388778, + "7360": 0.7214428858, + "7361": 0.7234468938, + "7362": 0.7254509018, + "7363": 0.7274549098, + "7364": 0.7294589178, + "7365": 0.7314629259, + "7366": 0.7334669339, + "7367": 0.7354709419, + "7368": 0.7374749499, + "7369": 0.7394789579, + "7370": 0.7414829659, + "7371": 0.7434869739, + "7372": 0.745490982, + "7373": 0.74749499, + "7374": 0.749498998, + "7375": 0.751503006, + "7376": 0.753507014, + "7377": 0.755511022, + "7378": 0.7575150301, + "7379": 0.7595190381, + "7380": 0.7615230461, + "7381": 0.7635270541, + "7382": 0.7655310621, + "7383": 0.7675350701, + "7384": 0.7695390782, + "7385": 0.7715430862, + "7386": 0.7735470942, + "7387": 0.7755511022, + "7388": 0.7775551102, + "7389": 0.7795591182, + "7390": 0.7815631263, + "7391": 0.7835671343, + "7392": 0.7855711423, + "7393": 0.7875751503, + "7394": 0.7895791583, + "7395": 0.7915831663, + "7396": 0.7935871743, + "7397": 0.7955911824, + "7398": 0.7975951904, + "7399": 0.7995991984, + "7400": 0.8016032064, + "7401": 0.8036072144, + "7402": 0.8056112224, + "7403": 0.8076152305, + "7404": 0.8096192385, + "7405": 0.8116232465, + "7406": 0.8136272545, + "7407": 0.8156312625, + "7408": 0.8176352705, + "7409": 0.8196392786, + "7410": 0.8216432866, + "7411": 0.8236472946, + "7412": 0.8256513026, + "7413": 0.8276553106, + "7414": 0.8296593186, + "7415": 0.8316633267, + "7416": 0.8336673347, + "7417": 0.8356713427, + "7418": 0.8376753507, + "7419": 0.8396793587, + "7420": 0.8416833667, + "7421": 0.8436873747, + "7422": 0.8456913828, + "7423": 0.8476953908, + "7424": 0.8496993988, + "7425": 0.8517034068, + "7426": 0.8537074148, + "7427": 0.8557114228, + "7428": 0.8577154309, + "7429": 0.8597194389, + "7430": 0.8617234469, + "7431": 0.8637274549, + "7432": 0.8657314629, + "7433": 0.8677354709, + "7434": 0.869739479, + "7435": 0.871743487, + "7436": 0.873747495, + "7437": 0.875751503, + "7438": 0.877755511, + "7439": 0.879759519, + "7440": 0.8817635271, + "7441": 0.8837675351, + "7442": 0.8857715431, + "7443": 0.8877755511, + "7444": 0.8897795591, + "7445": 0.8917835671, + "7446": 0.8937875752, + "7447": 0.8957915832, + "7448": 0.8977955912, + "7449": 0.8997995992, + "7450": 0.9018036072, + "7451": 0.9038076152, + "7452": 0.9058116232, + "7453": 0.9078156313, + "7454": 0.9098196393, + "7455": 0.9118236473, + "7456": 0.9138276553, + "7457": 0.9158316633, + "7458": 0.9178356713, + "7459": 0.9198396794, + "7460": 0.9218436874, + "7461": 0.9238476954, + "7462": 0.9258517034, + "7463": 0.9278557114, + "7464": 0.9298597194, + "7465": 0.9318637275, + "7466": 0.9338677355, + "7467": 0.9358717435, + "7468": 0.9378757515, + "7469": 0.9398797595, + "7470": 0.9418837675, + "7471": 0.9438877756, + "7472": 0.9458917836, + "7473": 0.9478957916, + "7474": 0.9498997996, + "7475": 0.9519038076, + "7476": 0.9539078156, + "7477": 0.9559118236, + "7478": 0.9579158317, + "7479": 0.9599198397, + "7480": 0.9619238477, + "7481": 0.9639278557, + "7482": 0.9659318637, + "7483": 0.9679358717, + "7484": 0.9699398798, + "7485": 0.9719438878, + "7486": 0.9739478958, + "7487": 0.9759519038, + "7488": 0.9779559118, + "7489": 0.9799599198, + "7490": 0.9819639279, + "7491": 0.9839679359, + "7492": 0.9859719439, + "7493": 0.9879759519, + "7494": 0.9899799599, + "7495": 0.9919839679, + "7496": 0.993987976, + "7497": 0.995991984, + "7498": 0.997995992, + "7499": 1.0, + "7500": 0.0, + "7501": 0.002004008, + "7502": 0.004008016, + "7503": 0.006012024, + "7504": 0.0080160321, + "7505": 0.0100200401, + "7506": 0.0120240481, + "7507": 0.0140280561, + "7508": 0.0160320641, + "7509": 0.0180360721, + "7510": 0.0200400802, + "7511": 0.0220440882, + "7512": 0.0240480962, + "7513": 0.0260521042, + "7514": 0.0280561122, + "7515": 0.0300601202, + "7516": 0.0320641283, + "7517": 0.0340681363, + "7518": 0.0360721443, + "7519": 0.0380761523, + "7520": 0.0400801603, + "7521": 0.0420841683, + "7522": 0.0440881764, + "7523": 0.0460921844, + "7524": 0.0480961924, + "7525": 0.0501002004, + "7526": 0.0521042084, + "7527": 0.0541082164, + "7528": 0.0561122244, + "7529": 0.0581162325, + "7530": 0.0601202405, + "7531": 0.0621242485, + "7532": 0.0641282565, + "7533": 0.0661322645, + "7534": 0.0681362725, + "7535": 0.0701402806, + "7536": 0.0721442886, + "7537": 0.0741482966, + "7538": 0.0761523046, + "7539": 0.0781563126, + "7540": 0.0801603206, + "7541": 0.0821643287, + "7542": 0.0841683367, + "7543": 0.0861723447, + "7544": 0.0881763527, + "7545": 0.0901803607, + "7546": 0.0921843687, + "7547": 0.0941883768, + "7548": 0.0961923848, + "7549": 0.0981963928, + "7550": 0.1002004008, + "7551": 0.1022044088, + "7552": 0.1042084168, + "7553": 0.1062124248, + "7554": 0.1082164329, + "7555": 0.1102204409, + "7556": 0.1122244489, + "7557": 0.1142284569, + "7558": 0.1162324649, + "7559": 0.1182364729, + "7560": 0.120240481, + "7561": 0.122244489, + "7562": 0.124248497, + "7563": 0.126252505, + "7564": 0.128256513, + "7565": 0.130260521, + "7566": 0.1322645291, + "7567": 0.1342685371, + "7568": 0.1362725451, + "7569": 0.1382765531, + "7570": 0.1402805611, + "7571": 0.1422845691, + "7572": 0.1442885772, + "7573": 0.1462925852, + "7574": 0.1482965932, + "7575": 0.1503006012, + "7576": 0.1523046092, + "7577": 0.1543086172, + "7578": 0.1563126253, + "7579": 0.1583166333, + "7580": 0.1603206413, + "7581": 0.1623246493, + "7582": 0.1643286573, + "7583": 0.1663326653, + "7584": 0.1683366733, + "7585": 0.1703406814, + "7586": 0.1723446894, + "7587": 0.1743486974, + "7588": 0.1763527054, + "7589": 0.1783567134, + "7590": 0.1803607214, + "7591": 0.1823647295, + "7592": 0.1843687375, + "7593": 0.1863727455, + "7594": 0.1883767535, + "7595": 0.1903807615, + "7596": 0.1923847695, + "7597": 0.1943887776, + "7598": 0.1963927856, + "7599": 0.1983967936, + "7600": 0.2004008016, + "7601": 0.2024048096, + "7602": 0.2044088176, + "7603": 0.2064128257, + "7604": 0.2084168337, + "7605": 0.2104208417, + "7606": 0.2124248497, + "7607": 0.2144288577, + "7608": 0.2164328657, + "7609": 0.2184368737, + "7610": 0.2204408818, + "7611": 0.2224448898, + "7612": 0.2244488978, + "7613": 0.2264529058, + "7614": 0.2284569138, + "7615": 0.2304609218, + "7616": 0.2324649299, + "7617": 0.2344689379, + "7618": 0.2364729459, + "7619": 0.2384769539, + "7620": 0.2404809619, + "7621": 0.2424849699, + "7622": 0.244488978, + "7623": 0.246492986, + "7624": 0.248496994, + "7625": 0.250501002, + "7626": 0.25250501, + "7627": 0.254509018, + "7628": 0.2565130261, + "7629": 0.2585170341, + "7630": 0.2605210421, + "7631": 0.2625250501, + "7632": 0.2645290581, + "7633": 0.2665330661, + "7634": 0.2685370741, + "7635": 0.2705410822, + "7636": 0.2725450902, + "7637": 0.2745490982, + "7638": 0.2765531062, + "7639": 0.2785571142, + "7640": 0.2805611222, + "7641": 0.2825651303, + "7642": 0.2845691383, + "7643": 0.2865731463, + "7644": 0.2885771543, + "7645": 0.2905811623, + "7646": 0.2925851703, + "7647": 0.2945891784, + "7648": 0.2965931864, + "7649": 0.2985971944, + "7650": 0.3006012024, + "7651": 0.3026052104, + "7652": 0.3046092184, + "7653": 0.3066132265, + "7654": 0.3086172345, + "7655": 0.3106212425, + "7656": 0.3126252505, + "7657": 0.3146292585, + "7658": 0.3166332665, + "7659": 0.3186372745, + "7660": 0.3206412826, + "7661": 0.3226452906, + "7662": 0.3246492986, + "7663": 0.3266533066, + "7664": 0.3286573146, + "7665": 0.3306613226, + "7666": 0.3326653307, + "7667": 0.3346693387, + "7668": 0.3366733467, + "7669": 0.3386773547, + "7670": 0.3406813627, + "7671": 0.3426853707, + "7672": 0.3446893788, + "7673": 0.3466933868, + "7674": 0.3486973948, + "7675": 0.3507014028, + "7676": 0.3527054108, + "7677": 0.3547094188, + "7678": 0.3567134269, + "7679": 0.3587174349, + "7680": 0.3607214429, + "7681": 0.3627254509, + "7682": 0.3647294589, + "7683": 0.3667334669, + "7684": 0.3687374749, + "7685": 0.370741483, + "7686": 0.372745491, + "7687": 0.374749499, + "7688": 0.376753507, + "7689": 0.378757515, + "7690": 0.380761523, + "7691": 0.3827655311, + "7692": 0.3847695391, + "7693": 0.3867735471, + "7694": 0.3887775551, + "7695": 0.3907815631, + "7696": 0.3927855711, + "7697": 0.3947895792, + "7698": 0.3967935872, + "7699": 0.3987975952, + "7700": 0.4008016032, + "7701": 0.4028056112, + "7702": 0.4048096192, + "7703": 0.4068136273, + "7704": 0.4088176353, + "7705": 0.4108216433, + "7706": 0.4128256513, + "7707": 0.4148296593, + "7708": 0.4168336673, + "7709": 0.4188376754, + "7710": 0.4208416834, + "7711": 0.4228456914, + "7712": 0.4248496994, + "7713": 0.4268537074, + "7714": 0.4288577154, + "7715": 0.4308617234, + "7716": 0.4328657315, + "7717": 0.4348697395, + "7718": 0.4368737475, + "7719": 0.4388777555, + "7720": 0.4408817635, + "7721": 0.4428857715, + "7722": 0.4448897796, + "7723": 0.4468937876, + "7724": 0.4488977956, + "7725": 0.4509018036, + "7726": 0.4529058116, + "7727": 0.4549098196, + "7728": 0.4569138277, + "7729": 0.4589178357, + "7730": 0.4609218437, + "7731": 0.4629258517, + "7732": 0.4649298597, + "7733": 0.4669338677, + "7734": 0.4689378758, + "7735": 0.4709418838, + "7736": 0.4729458918, + "7737": 0.4749498998, + "7738": 0.4769539078, + "7739": 0.4789579158, + "7740": 0.4809619238, + "7741": 0.4829659319, + "7742": 0.4849699399, + "7743": 0.4869739479, + "7744": 0.4889779559, + "7745": 0.4909819639, + "7746": 0.4929859719, + "7747": 0.49498998, + "7748": 0.496993988, + "7749": 0.498997996, + "7750": 0.501002004, + "7751": 0.503006012, + "7752": 0.50501002, + "7753": 0.5070140281, + "7754": 0.5090180361, + "7755": 0.5110220441, + "7756": 0.5130260521, + "7757": 0.5150300601, + "7758": 0.5170340681, + "7759": 0.5190380762, + "7760": 0.5210420842, + "7761": 0.5230460922, + "7762": 0.5250501002, + "7763": 0.5270541082, + "7764": 0.5290581162, + "7765": 0.5310621242, + "7766": 0.5330661323, + "7767": 0.5350701403, + "7768": 0.5370741483, + "7769": 0.5390781563, + "7770": 0.5410821643, + "7771": 0.5430861723, + "7772": 0.5450901804, + "7773": 0.5470941884, + "7774": 0.5490981964, + "7775": 0.5511022044, + "7776": 0.5531062124, + "7777": 0.5551102204, + "7778": 0.5571142285, + "7779": 0.5591182365, + "7780": 0.5611222445, + "7781": 0.5631262525, + "7782": 0.5651302605, + "7783": 0.5671342685, + "7784": 0.5691382766, + "7785": 0.5711422846, + "7786": 0.5731462926, + "7787": 0.5751503006, + "7788": 0.5771543086, + "7789": 0.5791583166, + "7790": 0.5811623246, + "7791": 0.5831663327, + "7792": 0.5851703407, + "7793": 0.5871743487, + "7794": 0.5891783567, + "7795": 0.5911823647, + "7796": 0.5931863727, + "7797": 0.5951903808, + "7798": 0.5971943888, + "7799": 0.5991983968, + "7800": 0.6012024048, + "7801": 0.6032064128, + "7802": 0.6052104208, + "7803": 0.6072144289, + "7804": 0.6092184369, + "7805": 0.6112224449, + "7806": 0.6132264529, + "7807": 0.6152304609, + "7808": 0.6172344689, + "7809": 0.619238477, + "7810": 0.621242485, + "7811": 0.623246493, + "7812": 0.625250501, + "7813": 0.627254509, + "7814": 0.629258517, + "7815": 0.6312625251, + "7816": 0.6332665331, + "7817": 0.6352705411, + "7818": 0.6372745491, + "7819": 0.6392785571, + "7820": 0.6412825651, + "7821": 0.6432865731, + "7822": 0.6452905812, + "7823": 0.6472945892, + "7824": 0.6492985972, + "7825": 0.6513026052, + "7826": 0.6533066132, + "7827": 0.6553106212, + "7828": 0.6573146293, + "7829": 0.6593186373, + "7830": 0.6613226453, + "7831": 0.6633266533, + "7832": 0.6653306613, + "7833": 0.6673346693, + "7834": 0.6693386774, + "7835": 0.6713426854, + "7836": 0.6733466934, + "7837": 0.6753507014, + "7838": 0.6773547094, + "7839": 0.6793587174, + "7840": 0.6813627255, + "7841": 0.6833667335, + "7842": 0.6853707415, + "7843": 0.6873747495, + "7844": 0.6893787575, + "7845": 0.6913827655, + "7846": 0.6933867735, + "7847": 0.6953907816, + "7848": 0.6973947896, + "7849": 0.6993987976, + "7850": 0.7014028056, + "7851": 0.7034068136, + "7852": 0.7054108216, + "7853": 0.7074148297, + "7854": 0.7094188377, + "7855": 0.7114228457, + "7856": 0.7134268537, + "7857": 0.7154308617, + "7858": 0.7174348697, + "7859": 0.7194388778, + "7860": 0.7214428858, + "7861": 0.7234468938, + "7862": 0.7254509018, + "7863": 0.7274549098, + "7864": 0.7294589178, + "7865": 0.7314629259, + "7866": 0.7334669339, + "7867": 0.7354709419, + "7868": 0.7374749499, + "7869": 0.7394789579, + "7870": 0.7414829659, + "7871": 0.7434869739, + "7872": 0.745490982, + "7873": 0.74749499, + "7874": 0.749498998, + "7875": 0.751503006, + "7876": 0.753507014, + "7877": 0.755511022, + "7878": 0.7575150301, + "7879": 0.7595190381, + "7880": 0.7615230461, + "7881": 0.7635270541, + "7882": 0.7655310621, + "7883": 0.7675350701, + "7884": 0.7695390782, + "7885": 0.7715430862, + "7886": 0.7735470942, + "7887": 0.7755511022, + "7888": 0.7775551102, + "7889": 0.7795591182, + "7890": 0.7815631263, + "7891": 0.7835671343, + "7892": 0.7855711423, + "7893": 0.7875751503, + "7894": 0.7895791583, + "7895": 0.7915831663, + "7896": 0.7935871743, + "7897": 0.7955911824, + "7898": 0.7975951904, + "7899": 0.7995991984, + "7900": 0.8016032064, + "7901": 0.8036072144, + "7902": 0.8056112224, + "7903": 0.8076152305, + "7904": 0.8096192385, + "7905": 0.8116232465, + "7906": 0.8136272545, + "7907": 0.8156312625, + "7908": 0.8176352705, + "7909": 0.8196392786, + "7910": 0.8216432866, + "7911": 0.8236472946, + "7912": 0.8256513026, + "7913": 0.8276553106, + "7914": 0.8296593186, + "7915": 0.8316633267, + "7916": 0.8336673347, + "7917": 0.8356713427, + "7918": 0.8376753507, + "7919": 0.8396793587, + "7920": 0.8416833667, + "7921": 0.8436873747, + "7922": 0.8456913828, + "7923": 0.8476953908, + "7924": 0.8496993988, + "7925": 0.8517034068, + "7926": 0.8537074148, + "7927": 0.8557114228, + "7928": 0.8577154309, + "7929": 0.8597194389, + "7930": 0.8617234469, + "7931": 0.8637274549, + "7932": 0.8657314629, + "7933": 0.8677354709, + "7934": 0.869739479, + "7935": 0.871743487, + "7936": 0.873747495, + "7937": 0.875751503, + "7938": 0.877755511, + "7939": 0.879759519, + "7940": 0.8817635271, + "7941": 0.8837675351, + "7942": 0.8857715431, + "7943": 0.8877755511, + "7944": 0.8897795591, + "7945": 0.8917835671, + "7946": 0.8937875752, + "7947": 0.8957915832, + "7948": 0.8977955912, + "7949": 0.8997995992, + "7950": 0.9018036072, + "7951": 0.9038076152, + "7952": 0.9058116232, + "7953": 0.9078156313, + "7954": 0.9098196393, + "7955": 0.9118236473, + "7956": 0.9138276553, + "7957": 0.9158316633, + "7958": 0.9178356713, + "7959": 0.9198396794, + "7960": 0.9218436874, + "7961": 0.9238476954, + "7962": 0.9258517034, + "7963": 0.9278557114, + "7964": 0.9298597194, + "7965": 0.9318637275, + "7966": 0.9338677355, + "7967": 0.9358717435, + "7968": 0.9378757515, + "7969": 0.9398797595, + "7970": 0.9418837675, + "7971": 0.9438877756, + "7972": 0.9458917836, + "7973": 0.9478957916, + "7974": 0.9498997996, + "7975": 0.9519038076, + "7976": 0.9539078156, + "7977": 0.9559118236, + "7978": 0.9579158317, + "7979": 0.9599198397, + "7980": 0.9619238477, + "7981": 0.9639278557, + "7982": 0.9659318637, + "7983": 0.9679358717, + "7984": 0.9699398798, + "7985": 0.9719438878, + "7986": 0.9739478958, + "7987": 0.9759519038, + "7988": 0.9779559118, + "7989": 0.9799599198, + "7990": 0.9819639279, + "7991": 0.9839679359, + "7992": 0.9859719439, + "7993": 0.9879759519, + "7994": 0.9899799599, + "7995": 0.9919839679, + "7996": 0.993987976, + "7997": 0.995991984, + "7998": 0.997995992, + "7999": 1.0, + "8000": 0.0, + "8001": 0.002004008, + "8002": 0.004008016, + "8003": 0.006012024, + "8004": 0.0080160321, + "8005": 0.0100200401, + "8006": 0.0120240481, + "8007": 0.0140280561, + "8008": 0.0160320641, + "8009": 0.0180360721, + "8010": 0.0200400802, + "8011": 0.0220440882, + "8012": 0.0240480962, + "8013": 0.0260521042, + "8014": 0.0280561122, + "8015": 0.0300601202, + "8016": 0.0320641283, + "8017": 0.0340681363, + "8018": 0.0360721443, + "8019": 0.0380761523, + "8020": 0.0400801603, + "8021": 0.0420841683, + "8022": 0.0440881764, + "8023": 0.0460921844, + "8024": 0.0480961924, + "8025": 0.0501002004, + "8026": 0.0521042084, + "8027": 0.0541082164, + "8028": 0.0561122244, + "8029": 0.0581162325, + "8030": 0.0601202405, + "8031": 0.0621242485, + "8032": 0.0641282565, + "8033": 0.0661322645, + "8034": 0.0681362725, + "8035": 0.0701402806, + "8036": 0.0721442886, + "8037": 0.0741482966, + "8038": 0.0761523046, + "8039": 0.0781563126, + "8040": 0.0801603206, + "8041": 0.0821643287, + "8042": 0.0841683367, + "8043": 0.0861723447, + "8044": 0.0881763527, + "8045": 0.0901803607, + "8046": 0.0921843687, + "8047": 0.0941883768, + "8048": 0.0961923848, + "8049": 0.0981963928, + "8050": 0.1002004008, + "8051": 0.1022044088, + "8052": 0.1042084168, + "8053": 0.1062124248, + "8054": 0.1082164329, + "8055": 0.1102204409, + "8056": 0.1122244489, + "8057": 0.1142284569, + "8058": 0.1162324649, + "8059": 0.1182364729, + "8060": 0.120240481, + "8061": 0.122244489, + "8062": 0.124248497, + "8063": 0.126252505, + "8064": 0.128256513, + "8065": 0.130260521, + "8066": 0.1322645291, + "8067": 0.1342685371, + "8068": 0.1362725451, + "8069": 0.1382765531, + "8070": 0.1402805611, + "8071": 0.1422845691, + "8072": 0.1442885772, + "8073": 0.1462925852, + "8074": 0.1482965932, + "8075": 0.1503006012, + "8076": 0.1523046092, + "8077": 0.1543086172, + "8078": 0.1563126253, + "8079": 0.1583166333, + "8080": 0.1603206413, + "8081": 0.1623246493, + "8082": 0.1643286573, + "8083": 0.1663326653, + "8084": 0.1683366733, + "8085": 0.1703406814, + "8086": 0.1723446894, + "8087": 0.1743486974, + "8088": 0.1763527054, + "8089": 0.1783567134, + "8090": 0.1803607214, + "8091": 0.1823647295, + "8092": 0.1843687375, + "8093": 0.1863727455, + "8094": 0.1883767535, + "8095": 0.1903807615, + "8096": 0.1923847695, + "8097": 0.1943887776, + "8098": 0.1963927856, + "8099": 0.1983967936, + "8100": 0.2004008016, + "8101": 0.2024048096, + "8102": 0.2044088176, + "8103": 0.2064128257, + "8104": 0.2084168337, + "8105": 0.2104208417, + "8106": 0.2124248497, + "8107": 0.2144288577, + "8108": 0.2164328657, + "8109": 0.2184368737, + "8110": 0.2204408818, + "8111": 0.2224448898, + "8112": 0.2244488978, + "8113": 0.2264529058, + "8114": 0.2284569138, + "8115": 0.2304609218, + "8116": 0.2324649299, + "8117": 0.2344689379, + "8118": 0.2364729459, + "8119": 0.2384769539, + "8120": 0.2404809619, + "8121": 0.2424849699, + "8122": 0.244488978, + "8123": 0.246492986, + "8124": 0.248496994, + "8125": 0.250501002, + "8126": 0.25250501, + "8127": 0.254509018, + "8128": 0.2565130261, + "8129": 0.2585170341, + "8130": 0.2605210421, + "8131": 0.2625250501, + "8132": 0.2645290581, + "8133": 0.2665330661, + "8134": 0.2685370741, + "8135": 0.2705410822, + "8136": 0.2725450902, + "8137": 0.2745490982, + "8138": 0.2765531062, + "8139": 0.2785571142, + "8140": 0.2805611222, + "8141": 0.2825651303, + "8142": 0.2845691383, + "8143": 0.2865731463, + "8144": 0.2885771543, + "8145": 0.2905811623, + "8146": 0.2925851703, + "8147": 0.2945891784, + "8148": 0.2965931864, + "8149": 0.2985971944, + "8150": 0.3006012024, + "8151": 0.3026052104, + "8152": 0.3046092184, + "8153": 0.3066132265, + "8154": 0.3086172345, + "8155": 0.3106212425, + "8156": 0.3126252505, + "8157": 0.3146292585, + "8158": 0.3166332665, + "8159": 0.3186372745, + "8160": 0.3206412826, + "8161": 0.3226452906, + "8162": 0.3246492986, + "8163": 0.3266533066, + "8164": 0.3286573146, + "8165": 0.3306613226, + "8166": 0.3326653307, + "8167": 0.3346693387, + "8168": 0.3366733467, + "8169": 0.3386773547, + "8170": 0.3406813627, + "8171": 0.3426853707, + "8172": 0.3446893788, + "8173": 0.3466933868, + "8174": 0.3486973948, + "8175": 0.3507014028, + "8176": 0.3527054108, + "8177": 0.3547094188, + "8178": 0.3567134269, + "8179": 0.3587174349, + "8180": 0.3607214429, + "8181": 0.3627254509, + "8182": 0.3647294589, + "8183": 0.3667334669, + "8184": 0.3687374749, + "8185": 0.370741483, + "8186": 0.372745491, + "8187": 0.374749499, + "8188": 0.376753507, + "8189": 0.378757515, + "8190": 0.380761523, + "8191": 0.3827655311, + "8192": 0.3847695391, + "8193": 0.3867735471, + "8194": 0.3887775551, + "8195": 0.3907815631, + "8196": 0.3927855711, + "8197": 0.3947895792, + "8198": 0.3967935872, + "8199": 0.3987975952, + "8200": 0.4008016032, + "8201": 0.4028056112, + "8202": 0.4048096192, + "8203": 0.4068136273, + "8204": 0.4088176353, + "8205": 0.4108216433, + "8206": 0.4128256513, + "8207": 0.4148296593, + "8208": 0.4168336673, + "8209": 0.4188376754, + "8210": 0.4208416834, + "8211": 0.4228456914, + "8212": 0.4248496994, + "8213": 0.4268537074, + "8214": 0.4288577154, + "8215": 0.4308617234, + "8216": 0.4328657315, + "8217": 0.4348697395, + "8218": 0.4368737475, + "8219": 0.4388777555, + "8220": 0.4408817635, + "8221": 0.4428857715, + "8222": 0.4448897796, + "8223": 0.4468937876, + "8224": 0.4488977956, + "8225": 0.4509018036, + "8226": 0.4529058116, + "8227": 0.4549098196, + "8228": 0.4569138277, + "8229": 0.4589178357, + "8230": 0.4609218437, + "8231": 0.4629258517, + "8232": 0.4649298597, + "8233": 0.4669338677, + "8234": 0.4689378758, + "8235": 0.4709418838, + "8236": 0.4729458918, + "8237": 0.4749498998, + "8238": 0.4769539078, + "8239": 0.4789579158, + "8240": 0.4809619238, + "8241": 0.4829659319, + "8242": 0.4849699399, + "8243": 0.4869739479, + "8244": 0.4889779559, + "8245": 0.4909819639, + "8246": 0.4929859719, + "8247": 0.49498998, + "8248": 0.496993988, + "8249": 0.498997996, + "8250": 0.501002004, + "8251": 0.503006012, + "8252": 0.50501002, + "8253": 0.5070140281, + "8254": 0.5090180361, + "8255": 0.5110220441, + "8256": 0.5130260521, + "8257": 0.5150300601, + "8258": 0.5170340681, + "8259": 0.5190380762, + "8260": 0.5210420842, + "8261": 0.5230460922, + "8262": 0.5250501002, + "8263": 0.5270541082, + "8264": 0.5290581162, + "8265": 0.5310621242, + "8266": 0.5330661323, + "8267": 0.5350701403, + "8268": 0.5370741483, + "8269": 0.5390781563, + "8270": 0.5410821643, + "8271": 0.5430861723, + "8272": 0.5450901804, + "8273": 0.5470941884, + "8274": 0.5490981964, + "8275": 0.5511022044, + "8276": 0.5531062124, + "8277": 0.5551102204, + "8278": 0.5571142285, + "8279": 0.5591182365, + "8280": 0.5611222445, + "8281": 0.5631262525, + "8282": 0.5651302605, + "8283": 0.5671342685, + "8284": 0.5691382766, + "8285": 0.5711422846, + "8286": 0.5731462926, + "8287": 0.5751503006, + "8288": 0.5771543086, + "8289": 0.5791583166, + "8290": 0.5811623246, + "8291": 0.5831663327, + "8292": 0.5851703407, + "8293": 0.5871743487, + "8294": 0.5891783567, + "8295": 0.5911823647, + "8296": 0.5931863727, + "8297": 0.5951903808, + "8298": 0.5971943888, + "8299": 0.5991983968, + "8300": 0.6012024048, + "8301": 0.6032064128, + "8302": 0.6052104208, + "8303": 0.6072144289, + "8304": 0.6092184369, + "8305": 0.6112224449, + "8306": 0.6132264529, + "8307": 0.6152304609, + "8308": 0.6172344689, + "8309": 0.619238477, + "8310": 0.621242485, + "8311": 0.623246493, + "8312": 0.625250501, + "8313": 0.627254509, + "8314": 0.629258517, + "8315": 0.6312625251, + "8316": 0.6332665331, + "8317": 0.6352705411, + "8318": 0.6372745491, + "8319": 0.6392785571, + "8320": 0.6412825651, + "8321": 0.6432865731, + "8322": 0.6452905812, + "8323": 0.6472945892, + "8324": 0.6492985972, + "8325": 0.6513026052, + "8326": 0.6533066132, + "8327": 0.6553106212, + "8328": 0.6573146293, + "8329": 0.6593186373, + "8330": 0.6613226453, + "8331": 0.6633266533, + "8332": 0.6653306613, + "8333": 0.6673346693, + "8334": 0.6693386774, + "8335": 0.6713426854, + "8336": 0.6733466934, + "8337": 0.6753507014, + "8338": 0.6773547094, + "8339": 0.6793587174, + "8340": 0.6813627255, + "8341": 0.6833667335, + "8342": 0.6853707415, + "8343": 0.6873747495, + "8344": 0.6893787575, + "8345": 0.6913827655, + "8346": 0.6933867735, + "8347": 0.6953907816, + "8348": 0.6973947896, + "8349": 0.6993987976, + "8350": 0.7014028056, + "8351": 0.7034068136, + "8352": 0.7054108216, + "8353": 0.7074148297, + "8354": 0.7094188377, + "8355": 0.7114228457, + "8356": 0.7134268537, + "8357": 0.7154308617, + "8358": 0.7174348697, + "8359": 0.7194388778, + "8360": 0.7214428858, + "8361": 0.7234468938, + "8362": 0.7254509018, + "8363": 0.7274549098, + "8364": 0.7294589178, + "8365": 0.7314629259, + "8366": 0.7334669339, + "8367": 0.7354709419, + "8368": 0.7374749499, + "8369": 0.7394789579, + "8370": 0.7414829659, + "8371": 0.7434869739, + "8372": 0.745490982, + "8373": 0.74749499, + "8374": 0.749498998, + "8375": 0.751503006, + "8376": 0.753507014, + "8377": 0.755511022, + "8378": 0.7575150301, + "8379": 0.7595190381, + "8380": 0.7615230461, + "8381": 0.7635270541, + "8382": 0.7655310621, + "8383": 0.7675350701, + "8384": 0.7695390782, + "8385": 0.7715430862, + "8386": 0.7735470942, + "8387": 0.7755511022, + "8388": 0.7775551102, + "8389": 0.7795591182, + "8390": 0.7815631263, + "8391": 0.7835671343, + "8392": 0.7855711423, + "8393": 0.7875751503, + "8394": 0.7895791583, + "8395": 0.7915831663, + "8396": 0.7935871743, + "8397": 0.7955911824, + "8398": 0.7975951904, + "8399": 0.7995991984, + "8400": 0.8016032064, + "8401": 0.8036072144, + "8402": 0.8056112224, + "8403": 0.8076152305, + "8404": 0.8096192385, + "8405": 0.8116232465, + "8406": 0.8136272545, + "8407": 0.8156312625, + "8408": 0.8176352705, + "8409": 0.8196392786, + "8410": 0.8216432866, + "8411": 0.8236472946, + "8412": 0.8256513026, + "8413": 0.8276553106, + "8414": 0.8296593186, + "8415": 0.8316633267, + "8416": 0.8336673347, + "8417": 0.8356713427, + "8418": 0.8376753507, + "8419": 0.8396793587, + "8420": 0.8416833667, + "8421": 0.8436873747, + "8422": 0.8456913828, + "8423": 0.8476953908, + "8424": 0.8496993988, + "8425": 0.8517034068, + "8426": 0.8537074148, + "8427": 0.8557114228, + "8428": 0.8577154309, + "8429": 0.8597194389, + "8430": 0.8617234469, + "8431": 0.8637274549, + "8432": 0.8657314629, + "8433": 0.8677354709, + "8434": 0.869739479, + "8435": 0.871743487, + "8436": 0.873747495, + "8437": 0.875751503, + "8438": 0.877755511, + "8439": 0.879759519, + "8440": 0.8817635271, + "8441": 0.8837675351, + "8442": 0.8857715431, + "8443": 0.8877755511, + "8444": 0.8897795591, + "8445": 0.8917835671, + "8446": 0.8937875752, + "8447": 0.8957915832, + "8448": 0.8977955912, + "8449": 0.8997995992, + "8450": 0.9018036072, + "8451": 0.9038076152, + "8452": 0.9058116232, + "8453": 0.9078156313, + "8454": 0.9098196393, + "8455": 0.9118236473, + "8456": 0.9138276553, + "8457": 0.9158316633, + "8458": 0.9178356713, + "8459": 0.9198396794, + "8460": 0.9218436874, + "8461": 0.9238476954, + "8462": 0.9258517034, + "8463": 0.9278557114, + "8464": 0.9298597194, + "8465": 0.9318637275, + "8466": 0.9338677355, + "8467": 0.9358717435, + "8468": 0.9378757515, + "8469": 0.9398797595, + "8470": 0.9418837675, + "8471": 0.9438877756, + "8472": 0.9458917836, + "8473": 0.9478957916, + "8474": 0.9498997996, + "8475": 0.9519038076, + "8476": 0.9539078156, + "8477": 0.9559118236, + "8478": 0.9579158317, + "8479": 0.9599198397, + "8480": 0.9619238477, + "8481": 0.9639278557, + "8482": 0.9659318637, + "8483": 0.9679358717, + "8484": 0.9699398798, + "8485": 0.9719438878, + "8486": 0.9739478958, + "8487": 0.9759519038, + "8488": 0.9779559118, + "8489": 0.9799599198, + "8490": 0.9819639279, + "8491": 0.9839679359, + "8492": 0.9859719439, + "8493": 0.9879759519, + "8494": 0.9899799599, + "8495": 0.9919839679, + "8496": 0.993987976, + "8497": 0.995991984, + "8498": 0.997995992, + "8499": 1.0 + }, + "y": { + "0": 0.0, + "1": 0.0015644445, + "2": -0.0006419336, + "3": 0.00031041, + "4": -0.0000925751, + "5": 0.0001030978, + "6": 0.0000030779, + "7": 0.0000534253, + "8": 0.0000280591, + "9": 0.0000405356, + "10": 0.0000341151, + "11": 0.0000371413, + "12": 0.000035445, + "13": 0.0000361114, + "14": 0.0000355976, + "15": 0.0000356751, + "16": 0.0000354582, + "17": 0.0000353897, + "18": 0.0000352481, + "19": 0.0000351443, + "20": 0.0000350227, + "21": 0.0000349111, + "22": 0.0000347957, + "23": 0.0000346833, + "24": 0.0000345705, + "25": 0.000034459, + "26": 0.0000343479, + "27": 0.0000342377, + "28": 0.0000341281, + "29": 0.0000340192, + "30": 0.0000339111, + "31": 0.0000338036, + "32": 0.0000336968, + "33": 0.0000335907, + "34": 0.0000334852, + "35": 0.0000333804, + "36": 0.0000332763, + "37": 0.0000331728, + "38": 0.0000330699, + "39": 0.0000329677, + "40": 0.0000328661, + "41": 0.0000327651, + "42": 0.0000326648, + "43": 0.0000325651, + "44": 0.0000324659, + "45": 0.0000323674, + "46": 0.0000322695, + "47": 0.0000321722, + "48": 0.0000320754, + "49": 0.0000319792, + "50": 0.0000318836, + "51": 0.0000317886, + "52": 0.0000316942, + "53": 0.0000316003, + "54": 0.0000315069, + "55": 0.0000314141, + "56": 0.0000313219, + "57": 0.0000312302, + "58": 0.000031139, + "59": 0.0000310483, + "60": 0.0000309582, + "61": 0.0000308686, + "62": 0.0000307795, + "63": 0.000030691, + "64": 0.0000306029, + "65": 0.0000305154, + "66": 0.0000304283, + "67": 0.0000303417, + "68": 0.0000302557, + "69": 0.0000301701, + "70": 0.000030085, + "71": 0.0000300004, + "72": 0.0000299162, + "73": 0.0000298325, + "74": 0.0000297493, + "75": 0.0000296666, + "76": 0.0000295843, + "77": 0.0000295024, + "78": 0.000029421, + "79": 0.0000293401, + "80": 0.0000292596, + "81": 0.0000291795, + "82": 0.0000290999, + "83": 0.0000290207, + "84": 0.000028942, + "85": 0.0000288636, + "86": 0.0000189392, + "87": 0.0000046778, + "88": -0.0000016606, + "89": -0.000003658, + "90": -0.0000058678, + "91": -0.0000083181, + "92": -0.0000106969, + "93": -0.0000129596, + "94": -0.0000151007, + "95": -0.0000171204, + "96": -0.0000190227, + "97": -0.000020811, + "98": -0.0000224917, + "99": -0.0000240743, + "100": -0.0000255636, + "101": -0.0000269635, + "102": -0.0000282789, + "103": -0.0000295145, + "104": -0.0000306751, + "105": -0.000031765, + "106": -0.0000327884, + "107": -0.0000337492, + "108": -0.000034651, + "109": -0.0000354974, + "110": -0.0000362915, + "111": -0.0000370362, + "112": -0.0000377344, + "113": -0.0000383886, + "114": -0.0000390014, + "115": -0.0000395749, + "116": -0.0000401113, + "117": -0.0000406126, + "118": -0.0000410806, + "119": -0.0000415171, + "120": -0.0000419236, + "121": -0.0000423018, + "122": -0.0000426529, + "123": -0.0000429784, + "124": -0.0000432794, + "125": -0.0000435571, + "126": -0.0000438126, + "127": -0.0000440469, + "128": -0.0000442609, + "129": -0.0000444555, + "130": -0.0000446315, + "131": -0.0000447896, + "132": -0.0000449306, + "133": -0.0000450551, + "134": -0.0000451638, + "135": -0.0000452571, + "136": -0.0000453358, + "137": -0.0000454001, + "138": -0.0000454507, + "139": -0.0000454879, + "140": -0.0000455121, + "141": -0.0000455237, + "142": -0.0000455231, + "143": -0.0000455105, + "144": -0.0000454863, + "145": -0.0000454508, + "146": -0.0000454042, + "147": -0.0000453468, + "148": -0.0000452787, + "149": -0.0000452003, + "150": -0.0000451118, + "151": -0.0000450133, + "152": -0.000044905, + "153": -0.0000447871, + "154": -0.0000446598, + "155": -0.0000445233, + "156": -0.0000443777, + "157": -0.0000442233, + "158": -0.0000440601, + "159": -0.0000438883, + "160": -0.0000437082, + "161": -0.0000435199, + "162": -0.0000433236, + "163": -0.0000431194, + "164": -0.0000429076, + "165": -0.0000426883, + "166": -0.0000424618, + "167": -0.0000422283, + "168": -0.0000419879, + "169": -0.000041741, + "170": -0.0000414877, + "171": -0.0000412284, + "172": -0.0000409632, + "173": -0.0000406924, + "174": -0.0000404164, + "175": -0.0000401353, + "176": -0.0000398496, + "177": -0.0000395595, + "178": -0.0000392654, + "179": -0.0000389675, + "180": -0.0000386661, + "181": -0.0000383618, + "182": -0.0000380547, + "183": -0.0000377453, + "184": -0.0000374339, + "185": -0.0000371208, + "186": -0.0000368065, + "187": -0.0000364912, + "188": -0.0000361754, + "189": -0.0000358595, + "190": -0.0000355437, + "191": -0.0000352284, + "192": -0.000034914, + "193": -0.0000346008, + "194": -0.0000342891, + "195": -0.0000339793, + "196": -0.0000336717, + "197": -0.0000333666, + "198": -0.0000330642, + "199": -0.0000327648, + "200": -0.0000324688, + "201": -0.0000321762, + "202": -0.0000318875, + "203": -0.0000316027, + "204": -0.0000313221, + "205": -0.0000310458, + "206": -0.0000307741, + "207": -0.0000305069, + "208": -0.0000302446, + "209": -0.0000299872, + "210": -0.0000297347, + "211": -0.0000294873, + "212": -0.0000292451, + "213": -0.000029008, + "214": -0.0000287761, + "215": -0.0000285495, + "216": -0.000028328, + "217": -0.0000281119, + "218": -0.0000279009, + "219": -0.0000276951, + "220": -0.0000274944, + "221": -0.0000272989, + "222": -0.0000271084, + "223": -0.0000269229, + "224": -0.0000267422, + "225": -0.0000265664, + "226": -0.0000263954, + "227": -0.000026229, + "228": -0.0000260671, + "229": -0.0000259097, + "230": -0.0000257567, + "231": -0.000025608, + "232": -0.0000254634, + "233": -0.0000253229, + "234": -0.0000251863, + "235": -0.0000250535, + "236": -0.0000249245, + "237": -0.0000247991, + "238": -0.0000246772, + "239": -0.0000245587, + "240": -0.0000244435, + "241": -0.0000243314, + "242": -0.0000241286, + "243": -0.0000232459, + "244": -0.0000212526, + "245": -0.0000184515, + "246": -0.0000153584, + "247": -0.00001221, + "248": -0.0000091438, + "249": -0.0000062449, + "250": -0.0000036401, + "251": -0.0000010677, + "252": 0.0000101107, + "253": 0.0001005506, + "254": 0.0004425623, + "255": 0.0010327815, + "256": 0.0015720224, + "257": 0.0018613094, + "258": 0.0019952214, + "259": 0.0020944739, + "260": 0.0021583882, + "261": 0.0021765111, + "262": 0.0021769866, + "263": 0.0021739686, + "264": 0.0021615261, + "265": 0.0021407156, + "266": 0.0021174048, + "267": 0.0020919831, + "268": 0.0020634478, + "269": 0.0020329723, + "270": 0.0020013881, + "271": 0.0019685407, + "272": 0.0019345815, + "273": 0.0018998757, + "274": 0.0018645399, + "275": 0.0018286458, + "276": 0.0017923458, + "277": 0.0017557581, + "278": 0.0017189634, + "279": 0.0016820529, + "280": 0.0016451149, + "281": 0.0016082229, + "282": 0.0015714464, + "283": 0.001534852, + "284": 0.0014984996, + "285": 0.001462444, + "286": 0.001426736, + "287": 0.0013914219, + "288": 0.0013565436, + "289": 0.001322139, + "290": 0.0012882423, + "291": 0.0012548838, + "292": 0.0012220903, + "293": 0.0011898852, + "294": 0.001158289, + "295": 0.0011273189, + "296": 0.0010969893, + "297": 0.001067312, + "298": 0.0010382962, + "299": 0.0010099489, + "300": 0.0009822747, + "301": 0.0009552763, + "302": 0.0009289545, + "303": 0.0009033084, + "304": 0.0008783353, + "305": 0.0008540313, + "306": 0.000830391, + "307": 0.0008074079, + "308": 0.0007850742, + "309": 0.0007633813, + "310": 0.0007423198, + "311": 0.0007218793, + "312": 0.0007020489, + "313": 0.0006828171, + "314": 0.0006641719, + "315": 0.0006461008, + "316": 0.000628591, + "317": 0.0006116294, + "318": 0.0005952029, + "319": 0.0005792979, + "320": 0.000563901, + "321": 0.0005489986, + "322": 0.000534577, + "323": 0.0005206228, + "324": 0.0005071225, + "325": 0.0004940627, + "326": 0.0004814303, + "327": 0.000469212, + "328": 0.0004573952, + "329": 0.000445967, + "330": 0.0004349152, + "331": 0.0004242273, + "332": 0.0004138916, + "333": 0.0004038964, + "334": 0.0003942301, + "335": 0.0003848817, + "336": 0.0003758404, + "337": 0.0003670956, + "338": 0.0003586369, + "339": 0.0003504545, + "340": 0.0003425387, + "341": 0.00033488, + "342": 0.0003274693, + "343": 0.0003202979, + "344": 0.0003133572, + "345": 0.0003066389, + "346": 0.000300135, + "347": 0.0002938379, + "348": 0.0002877401, + "349": 0.0002818343, + "350": 0.0002761138, + "351": 0.0002705716, + "352": 0.0002652015, + "353": 0.0002599971, + "354": 0.0002549525, + "355": 0.0002500619, + "356": 0.0002453197, + "357": 0.0002407206, + "358": 0.0002362595, + "359": 0.0002319313, + "360": 0.0002277312, + "361": 0.0002236548, + "362": 0.0002196975, + "363": 0.0002158551, + "364": 0.0002121235, + "365": 0.0002084988, + "366": 0.0002049772, + "367": 0.0002015551, + "368": 0.0001982289, + "369": 0.0001949954, + "370": 0.0001918512, + "371": 0.0001887932, + "372": 0.0001858186, + "373": 0.0001829243, + "374": 0.0001801077, + "375": 0.000177366, + "376": 0.0001746968, + "377": 0.0001720975, + "378": 0.0001695659, + "379": 0.0001670995, + "380": 0.0001646964, + "381": 0.0001623542, + "382": 0.0001600711, + "383": 0.0001578451, + "384": 0.0001556743, + "385": 0.0001535569, + "386": 0.0001514912, + "387": 0.0001494754, + "388": 0.0001475081, + "389": 0.0001455877, + "390": 0.0001437126, + "391": 0.0001418815, + "392": 0.0001400929, + "393": 0.0001383456, + "394": 0.0001366383, + "395": 0.0001349696, + "396": 0.0001333385, + "397": 0.0001317438, + "398": 0.0001301845, + "399": 0.0001286593, + "400": 0.0001271673, + "401": 0.0001257076, + "402": 0.0001242791, + "403": 0.000122881, + "404": 0.0001215124, + "405": 0.0001201724, + "406": 0.0001188601, + "407": 0.0001175748, + "408": 0.0001163158, + "409": 0.0001150823, + "410": 0.0001138735, + "411": 0.0001126887, + "412": 0.0001115274, + "413": 0.0001103889, + "414": 0.0001092724, + "415": 0.0001081775, + "416": 0.0001071036, + "417": 0.00010605, + "418": 0.0001050163, + "419": 0.0001040019, + "420": 0.0001030063, + "421": 0.0001020291, + "422": 0.0001010696, + "423": 0.0001001276, + "424": 0.0000992024, + "425": 0.0000982938, + "426": 0.0000974013, + "427": 0.0000965244, + "428": 0.0000956628, + "429": 0.0000948161, + "430": 0.0000939839, + "431": 0.0000931659, + "432": 0.0000923618, + "433": 0.0000915711, + "434": 0.0000907936, + "435": 0.000090029, + "436": 0.0000892769, + "437": 0.0000885371, + "438": 0.0000878092, + "439": 0.000087093, + "440": 0.0000863883, + "441": 0.0000856947, + "442": 0.000085012, + "443": 0.0000843399, + "444": 0.0000836783, + "445": 0.0000830268, + "446": 0.0000823853, + "447": 0.0000817535, + "448": 0.0000811312, + "449": 0.0000805182, + "450": 0.0000799144, + "451": 0.0000793194, + "452": 0.0000787332, + "453": 0.0000781554, + "454": 0.0000775861, + "455": 0.0000770249, + "456": 0.0000764717, + "457": 0.0000759263, + "458": 0.0000753886, + "459": 0.0000748584, + "460": 0.0000743356, + "461": 0.00007382, + "462": 0.0000733115, + "463": 0.0000728099, + "464": 0.000072315, + "465": 0.0000718269, + "466": 0.0000713452, + "467": 0.0000708699, + "468": 0.0000704009, + "469": 0.0000699381, + "470": 0.0000694813, + "471": 0.0000690303, + "472": 0.0000685852, + "473": 0.0000681458, + "474": 0.0000677119, + "475": 0.0000672836, + "476": 0.0000668606, + "477": 0.0000664429, + "478": 0.0000660303, + "479": 0.0000656229, + "480": 0.0000652204, + "481": 0.0000648228, + "482": 0.0000644301, + "483": 0.0000640421, + "484": 0.0000636587, + "485": 0.0000632799, + "486": 0.0000629055, + "487": 0.0000625356, + "488": 0.00006217, + "489": 0.0000618086, + "490": 0.0000614514, + "491": 0.0000610983, + "492": 0.0000607493, + "493": 0.0000604042, + "494": 0.0000600631, + "495": 0.0000597257, + "496": 0.0000593922, + "497": 0.0000590623, + "498": 0.0000587361, + "499": 0.0000584135, + "500": 0.0, + "501": 3225.0, + "502": 1612.5, + "503": 2418.75, + "504": 2015.625, + "505": 2217.1875, + "506": 2116.40625, + "507": 2166.796875, + "508": 2141.6015625, + "509": 2154.19921875, + "510": 2147.900390625, + "511": 2151.0498046875, + "512": 2149.4750976562, + "513": 2150.2624511719, + "514": 2149.8687744141, + "515": 2150.065612793, + "516": 2149.9671936035, + "517": 2150.0164031982, + "518": 2149.9917984009, + "519": 2150.0041007996, + "520": 2149.9979496002, + "521": 2150.0010251999, + "522": 2149.9994874001, + "523": 2150.0002563, + "524": 2149.99987185, + "525": 2150.000064075, + "526": 2149.9999679625, + "527": 2150.0000160187, + "528": 2149.9999919906, + "529": 2150.0000040047, + "530": 2149.9999979977, + "531": 2150.0000010012, + "532": 2149.9999994994, + "533": 2150.0000002503, + "534": 2149.9999998749, + "535": 2150.0000000626, + "536": 2149.9999999687, + "537": 2150.0000000156, + "538": 2149.9999999922, + "539": 2150.0000000039, + "540": 2149.999999998, + "541": 2150.000000001, + "542": 2149.9999999995, + "543": 2150.0000000002, + "544": 2149.9999999999, + "545": 2150.0000000001, + "546": 2150.0, + "547": 2150.0, + "548": 2150.0, + "549": 2150.0, + "550": 2150.0, + "551": 2150.0, + "552": 2150.0, + "553": 2150.0, + "554": 2150.0, + "555": 2150.0, + "556": 2150.0, + "557": 2150.0, + "558": 2150.0, + "559": 2150.0, + "560": 2150.0, + "561": 2150.0, + "562": 2150.0, + "563": 2150.0, + "564": 2150.0, + "565": 2150.0, + "566": 2150.0, + "567": 2150.0, + "568": 2150.0, + "569": 2150.0, + "570": 2150.0, + "571": 2150.0, + "572": 2150.0, + "573": 2150.0, + "574": 2150.0, + "575": 2150.0, + "576": 2150.0, + "577": 2150.0, + "578": 2150.0, + "579": 2150.0, + "580": 2150.0, + "581": 2150.0, + "582": 2150.0, + "583": 2150.0, + "584": 2150.0, + "585": 2150.0, + "586": 2150.0, + "587": 2150.0, + "588": 2150.0, + "589": 2150.0, + "590": 2150.0, + "591": 2150.0, + "592": 2150.0, + "593": 2150.0, + "594": 2150.0, + "595": 2150.0, + "596": 2150.0, + "597": 2150.0, + "598": 2150.0, + "599": 2150.0, + "600": 2150.0, + "601": 2150.0, + "602": 2150.0, + "603": 2150.0, + "604": 2150.0, + "605": 2150.0, + "606": 2150.0, + "607": 2150.0, + "608": 2150.0, + "609": 2150.0, + "610": 2150.0, + "611": 2150.0, + "612": 2150.0, + "613": 2150.0, + "614": 2150.0, + "615": 2150.0, + "616": 2150.0, + "617": 2150.0, + "618": 2150.0, + "619": 2150.0, + "620": 2150.0, + "621": 2150.0, + "622": 2150.0, + "623": 2150.0, + "624": 2150.0, + "625": 2150.0, + "626": 2150.0, + "627": 2150.0, + "628": 2150.0, + "629": 2150.0, + "630": 2150.0, + "631": 2150.0, + "632": 2150.0, + "633": 2150.0, + "634": 2150.0, + "635": 2150.0, + "636": 2150.0, + "637": 2150.0, + "638": 2150.0, + "639": 2150.0, + "640": 2150.0, + "641": 2150.0, + "642": 2150.0, + "643": 2150.0, + "644": 2150.0, + "645": 2150.0, + "646": 2150.0, + "647": 2150.0, + "648": 2150.0, + "649": 2150.0, + "650": 2150.0, + "651": 2150.0, + "652": 2150.0, + "653": 2150.0, + "654": 2150.0, + "655": 2150.0, + "656": 2150.0, + "657": 2150.0, + "658": 2150.0, + "659": 2150.0, + "660": 2150.0, + "661": 2150.0, + "662": 2150.0, + "663": 2150.0, + "664": 2150.0, + "665": 2150.0, + "666": 2150.0, + "667": 2150.0, + "668": 2150.0, + "669": 2150.0, + "670": 2150.0, + "671": 2150.0, + "672": 2150.0, + "673": 2150.0, + "674": 2150.0, + "675": 2150.0, + "676": 2150.0, + "677": 2150.0, + "678": 2150.0, + "679": 2150.0, + "680": 2150.0, + "681": 2150.0, + "682": 2150.0, + "683": 2150.0, + "684": 2150.0, + "685": 2150.0, + "686": 2150.0, + "687": 2150.0, + "688": 2150.0, + "689": 2150.0, + "690": 2150.0, + "691": 2150.0, + "692": 2150.0, + "693": 2150.0, + "694": 2150.0, + "695": 2150.0, + "696": 2150.0, + "697": 2150.0, + "698": 2150.0, + "699": 2150.0, + "700": 2150.0, + "701": 2150.0, + "702": 2150.0, + "703": 2150.0, + "704": 2150.0, + "705": 2150.0, + "706": 2150.0, + "707": 2150.0, + "708": 2150.0, + "709": 2150.0, + "710": 2150.0, + "711": 2150.0, + "712": 2150.0, + "713": 2150.0, + "714": 2150.0, + "715": 2150.0, + "716": 2150.0, + "717": 2150.0, + "718": 2150.0, + "719": 2150.0, + "720": 2150.0, + "721": 2150.0, + "722": 2150.0, + "723": 2150.0, + "724": 2150.0, + "725": 2150.0, + "726": 2150.0, + "727": 2150.0, + "728": 2150.0, + "729": 2150.0, + "730": 2150.0, + "731": 2150.0, + "732": 2150.0, + "733": 2150.0, + "734": 2150.0, + "735": 2150.0, + "736": 2150.0, + "737": 2150.0, + "738": 2150.0, + "739": 2150.0, + "740": 2150.0, + "741": 2150.0, + "742": 2150.0, + "743": 2150.0, + "744": 2150.0, + "745": 2150.0, + "746": 2150.0, + "747": 2150.0, + "748": 2150.0, + "749": 2150.0, + "750": 2150.0, + "751": 2150.0, + "752": 2150.0, + "753": 2150.0, + "754": 2150.0, + "755": 2150.0, + "756": 2150.0, + "757": 2150.0, + "758": 2150.0, + "759": 2150.0, + "760": 2150.0, + "761": 2150.0, + "762": 2150.0, + "763": 2150.0, + "764": 2150.0, + "765": 2150.0, + "766": 2150.0, + "767": 2150.0, + "768": 2150.0, + "769": 2150.0, + "770": 2150.0, + "771": 2150.0, + "772": 2150.0, + "773": 2150.0, + "774": 2150.0, + "775": 2150.0, + "776": 2150.0, + "777": 2150.0, + "778": 2150.0, + "779": 2150.0, + "780": 2150.0, + "781": 2150.0, + "782": 2150.0, + "783": 2150.0, + "784": 2150.0, + "785": 2150.0, + "786": 2150.0, + "787": 2150.0, + "788": 2150.0, + "789": 2150.0, + "790": 2150.0, + "791": 2150.0, + "792": 2150.0, + "793": 2150.0, + "794": 2150.0, + "795": 2150.0, + "796": 2150.0, + "797": 2150.0, + "798": 2150.0, + "799": 2150.0, + "800": 2150.0, + "801": 2150.0, + "802": 2150.0, + "803": 2150.0, + "804": 2150.0, + "805": 2150.0, + "806": 2150.0, + "807": 2150.0, + "808": 2150.0, + "809": 2150.0, + "810": 2150.0, + "811": 2150.0, + "812": 2150.0, + "813": 2150.0, + "814": 2150.0, + "815": 2150.0, + "816": 2150.0, + "817": 2150.0, + "818": 2150.0, + "819": 2150.0, + "820": 2150.0, + "821": 2150.0, + "822": 2150.0, + "823": 2150.0, + "824": 2150.0, + "825": 2150.0, + "826": 2150.0, + "827": 2150.0, + "828": 2150.0, + "829": 2150.0, + "830": 2150.0, + "831": 2150.0, + "832": 2150.0, + "833": 2150.0, + "834": 2150.0, + "835": 2150.0, + "836": 2150.0, + "837": 2150.0, + "838": 2150.0, + "839": 2150.0, + "840": 2150.0, + "841": 2150.0, + "842": 2150.0, + "843": 2150.0, + "844": 2150.0, + "845": 2150.0, + "846": 2150.0, + "847": 2150.0, + "848": 2150.0, + "849": 2150.0, + "850": 2150.0, + "851": 2150.0, + "852": 2150.0, + "853": 2150.0, + "854": 2150.0, + "855": 2150.0, + "856": 2150.0, + "857": 2150.0, + "858": 2150.0, + "859": 2150.0, + "860": 2150.0, + "861": 2150.0, + "862": 2150.0, + "863": 2150.0, + "864": 2150.0, + "865": 2150.0, + "866": 2150.0, + "867": 2150.0, + "868": 2150.0, + "869": 2150.0, + "870": 2150.0, + "871": 2150.0, + "872": 2150.0, + "873": 2150.0, + "874": 2150.0, + "875": 2150.0, + "876": 2150.0, + "877": 2150.0, + "878": 2150.0, + "879": 2150.0, + "880": 2150.0, + "881": 2150.0, + "882": 2150.0, + "883": 2150.0, + "884": 2150.0, + "885": 2150.0, + "886": 2150.0, + "887": 2150.0, + "888": 2150.0, + "889": 2150.0, + "890": 2150.0, + "891": 2150.0, + "892": 2150.0, + "893": 2150.0, + "894": 2150.0, + "895": 2150.0, + "896": 2150.0, + "897": 2150.0, + "898": 2150.0, + "899": 2150.0, + "900": 2150.0, + "901": 2150.0, + "902": 2150.0, + "903": 2150.0, + "904": 2150.0, + "905": 2150.0, + "906": 2150.0, + "907": 2150.0, + "908": 2150.0, + "909": 2150.0, + "910": 2150.0, + "911": 2150.0, + "912": 2150.0, + "913": 2150.0, + "914": 2150.0, + "915": 2150.0, + "916": 2150.0, + "917": 2150.0, + "918": 2150.0, + "919": 2150.0, + "920": 2150.0, + "921": 2150.0, + "922": 2150.0, + "923": 2150.0, + "924": 2150.0, + "925": 2150.0, + "926": 2150.0, + "927": 2150.0, + "928": 2150.0, + "929": 2150.0, + "930": 2150.0, + "931": 2150.0, + "932": 2150.0, + "933": 2150.0, + "934": 2150.0, + "935": 2150.0, + "936": 2150.0, + "937": 2150.0, + "938": 2150.0, + "939": 2150.0, + "940": 2150.0, + "941": 2150.0, + "942": 2150.0, + "943": 2150.0, + "944": 2150.0, + "945": 2150.0, + "946": 2150.0, + "947": 2150.0, + "948": 2150.0, + "949": 2150.0, + "950": 2150.0, + "951": 2150.0, + "952": 2150.0, + "953": 2150.0, + "954": 2150.0, + "955": 2150.0, + "956": 2150.0, + "957": 2150.0, + "958": 2150.0, + "959": 2150.0, + "960": 2150.0, + "961": 2150.0, + "962": 2150.0, + "963": 2150.0, + "964": 2150.0, + "965": 2150.0, + "966": 2150.0, + "967": 2150.0, + "968": 2150.0, + "969": 2150.0, + "970": 2150.0, + "971": 2150.0, + "972": 2150.0, + "973": 2150.0, + "974": 2150.0, + "975": 2150.0, + "976": 2150.0, + "977": 2150.0, + "978": 2150.0, + "979": 2150.0, + "980": 2150.0, + "981": 2150.0, + "982": 2150.0, + "983": 2150.0, + "984": 2150.0, + "985": 2150.0, + "986": 2150.0, + "987": 2150.0, + "988": 2150.0, + "989": 2150.0, + "990": 2150.0, + "991": 2150.0, + "992": 2150.0, + "993": 2150.0, + "994": 2150.0, + "995": 2150.0, + "996": 2150.0, + "997": 2150.0, + "998": 2150.0, + "999": 2150.0, + "1000": 0.0, + "1001": -0.0187139048, + "1002": 0.0243226856, + "1003": -0.0224553388, + "1004": 0.0177734933, + "1005": -0.0128658091, + "1006": 0.0087687747, + "1007": -0.005732227, + "1008": 0.0036232517, + "1009": -0.0022385368, + "1010": 0.0013501634, + "1011": -0.0008059792, + "1012": 0.0004694343, + "1013": -0.0002751653, + "1014": 0.000154693, + "1015": -0.0000910703, + "1016": 0.000048257, + "1017": -0.0000301426, + "1018": 0.0000136829, + "1019": -0.0000106704, + "1020": 0.0000027915, + "1021": -0.0000046135, + "1022": -0.0000005572, + "1023": -0.0000027695, + "1024": -0.0000015665, + "1025": -0.0000022177, + "1026": -0.0000018655, + "1027": -0.0000020546, + "1028": -0.0000019525, + "1029": -0.0000020067, + "1030": -0.0000019773, + "1031": -0.0000019925, + "1032": -0.0000019839, + "1033": -0.000001988, + "1034": -0.0000019853, + "1035": -0.0000019862, + "1036": -0.0000019852, + "1037": -0.0000019853, + "1038": -0.0000019848, + "1039": -0.0000019846, + "1040": -0.0000019842, + "1041": -0.0000019839, + "1042": -0.0000019836, + "1043": -0.0000019833, + "1044": -0.000001983, + "1045": -0.0000019826, + "1046": -0.0000019823, + "1047": -0.000001982, + "1048": -0.0000019817, + "1049": -0.0000019814, + "1050": -0.0000019811, + "1051": -0.0000019808, + "1052": -0.0000019805, + "1053": -0.0000019802, + "1054": -0.0000019799, + "1055": -0.0000019796, + "1056": -0.0000019793, + "1057": -0.000001979, + "1058": -0.0000019787, + "1059": -0.0000019784, + "1060": -0.0000019781, + "1061": -0.0000019778, + "1062": -0.0000019775, + "1063": -0.0000019772, + "1064": -0.000001977, + "1065": -0.0000019767, + "1066": -0.0000019764, + "1067": -0.0000019761, + "1068": -0.0000019758, + "1069": -0.0000019755, + "1070": -0.0000019752, + "1071": -0.0000019749, + "1072": -0.0000019747, + "1073": -0.0000019744, + "1074": -0.0000019741, + "1075": -0.0000019738, + "1076": -0.0000019735, + "1077": -0.0000019733, + "1078": -0.000001973, + "1079": -0.0000019727, + "1080": -0.0000019724, + "1081": -0.0000019721, + "1082": -0.0000019719, + "1083": -0.0000019716, + "1084": -0.0000019713, + "1085": -0.000001971, + "1086": -0.0000018867, + "1087": -0.0000016999, + "1088": -0.0000014581, + "1089": -0.0000011951, + "1090": -0.0000009313, + "1091": -0.0000006777, + "1092": -0.0000004439, + "1093": -0.000000242, + "1094": -0.0000000121, + "1095": 0.0000010123, + "1096": 0.0000074544, + "1097": 0.0000331126, + "1098": 0.0000858861, + "1099": 0.0001533054, + "1100": 0.0002265053, + "1101": 0.0003008609, + "1102": 0.000374097, + "1103": 0.0004450863, + "1104": 0.0005132386, + "1105": 0.0005782893, + "1106": 0.0006401274, + "1107": 0.0006987482, + "1108": 0.0007541997, + "1109": 0.0008065664, + "1110": 0.0008559509, + "1111": 0.0009024673, + "1112": 0.000946234, + "1113": 0.0009873708, + "1114": 0.0010259963, + "1115": 0.001062226, + "1116": 0.0010961718, + "1117": 0.0011279413, + "1118": 0.001157637, + "1119": 0.0011853566, + "1120": 0.001211193, + "1121": 0.0012352339, + "1122": 0.0012575622, + "1123": 0.0012782562, + "1124": 0.0012973894, + "1125": 0.0013150313, + "1126": 0.0013312468, + "1127": 0.0013460971, + "1128": 0.0013596395, + "1129": 0.0013719278, + "1130": 0.0013830122, + "1131": 0.0013929398, + "1132": 0.0014017547, + "1133": 0.001409498, + "1134": 0.0014162082, + "1135": 0.0014219213, + "1136": 0.0014266707, + "1137": 0.0014304878, + "1138": 0.0014334018, + "1139": 0.00143544, + "1140": 0.001436628, + "1141": 0.0014369894, + "1142": 0.0014365467, + "1143": 0.0014353206, + "1144": 0.0014333307, + "1145": 0.0014305953, + "1146": 0.0014271316, + "1147": 0.0014229561, + "1148": 0.0014180841, + "1149": 0.0014125303, + "1150": 0.0014063087, + "1151": 0.0013994329, + "1152": 0.0013919157, + "1153": 0.0013837698, + "1154": 0.0013750076, + "1155": 0.0013656411, + "1156": 0.0013556825, + "1157": 0.0013451437, + "1158": 0.0013340368, + "1159": 0.001322374, + "1160": 0.0013101677, + "1161": 0.0012974305, + "1162": 0.0012841755, + "1163": 0.0012704161, + "1164": 0.0012561661, + "1165": 0.0012414399, + "1166": 0.0012262524, + "1167": 0.0012106192, + "1168": 0.0011945563, + "1169": 0.0011780806, + "1170": 0.0011612097, + "1171": 0.0011439616, + "1172": 0.0011263553, + "1173": 0.0011084103, + "1174": 0.0010901471, + "1175": 0.0010715864, + "1176": 0.0010527501, + "1177": 0.0010336603, + "1178": 0.00101434, + "1179": 0.0009948125, + "1180": 0.0009751016, + "1181": 0.0009552318, + "1182": 0.0009352278, + "1183": 0.0009151143, + "1184": 0.0008949168, + "1185": 0.0008746604, + "1186": 0.0008543706, + "1187": 0.0008340725, + "1188": 0.0008137915, + "1189": 0.0007935523, + "1190": 0.0007733796, + "1191": 0.0007532976, + "1192": 0.0007333298, + "1193": 0.0007134994, + "1194": 0.0006938288, + "1195": 0.0006743394, + "1196": 0.0006550521, + "1197": 0.0006359866, + "1198": 0.0006171619, + "1199": 0.0005985956, + "1200": 0.0005803046, + "1201": 0.0005623044, + "1202": 0.0005446094, + "1203": 0.0005272329, + "1204": 0.0005101868, + "1205": 0.000493482, + "1206": 0.0004771281, + "1207": 0.0004611333, + "1208": 0.000445505, + "1209": 0.0004302489, + "1210": 0.00041537, + "1211": 0.0004008719, + "1212": 0.0003867572, + "1213": 0.0003730275, + "1214": 0.0003596832, + "1215": 0.0003467241, + "1216": 0.0003341487, + "1217": 0.0003219549, + "1218": 0.0003101397, + "1219": 0.0002986994, + "1220": 0.0002876296, + "1221": 0.0002769253, + "1222": 0.0002665809, + "1223": 0.0002565903, + "1224": 0.000246947, + "1225": 0.000237644, + "1226": 0.0002286739, + "1227": 0.0002200293, + "1228": 0.0002117021, + "1229": 0.0002036844, + "1230": 0.0001959678, + "1231": 0.0001885441, + "1232": 0.0001814047, + "1233": 0.0001745411, + "1234": 0.0001679449, + "1235": 0.0001616074, + "1236": 0.00015552, + "1237": 0.0001496743, + "1238": 0.0001440614, + "1239": 0.0001386724, + "1240": 0.0001334982, + "1241": 0.0001285294, + "1242": 0.0001158087, + "1243": 0.0000583052, + "1244": 0.0000008123, + "1245": 0.0000014237, + "1246": -0.0000009589, + "1247": -0.0000002139, + "1248": -0.000001048, + "1249": -0.0000010875, + "1250": -0.0000015018, + "1251": -0.0000017048, + "1252": -0.0000019876, + "1253": -0.0000021921, + "1254": -0.0000023753, + "1255": -0.0000025251, + "1256": -0.0000026347, + "1257": -0.0000026862, + "1258": -0.0000027128, + "1259": -0.0000027325, + "1260": -0.0000027439, + "1261": -0.0000027466, + "1262": -0.0000027467, + "1263": -0.000002746, + "1264": -0.0000027431, + "1265": -0.0000027388, + "1266": -0.0000027341, + "1267": -0.0000027288, + "1268": -0.0000027229, + "1269": -0.0000027167, + "1270": -0.0000027102, + "1271": -0.0000027034, + "1272": -0.0000026963, + "1273": -0.000002689, + "1274": -0.0000026816, + "1275": -0.0000026741, + "1276": -0.0000026664, + "1277": -0.0000026586, + "1278": -0.0000026507, + "1279": -0.0000026427, + "1280": -0.0000026347, + "1281": -0.0000026267, + "1282": -0.0000026186, + "1283": -0.0000026105, + "1284": -0.0000026024, + "1285": -0.0000025942, + "1286": -0.0000025862, + "1287": -0.0000025781, + "1288": -0.00000257, + "1289": -0.000002562, + "1290": -0.0000025541, + "1291": -0.0000025462, + "1292": -0.0000025384, + "1293": -0.0000025306, + "1294": -0.0000025229, + "1295": -0.0000025153, + "1296": -0.0000025077, + "1297": -0.0000025003, + "1298": -0.0000024929, + "1299": -0.0000024856, + "1300": -0.0000024784, + "1301": -0.0000024713, + "1302": -0.0000024643, + "1303": -0.0000024574, + "1304": -0.0000024506, + "1305": -0.000002444, + "1306": -0.0000024374, + "1307": -0.0000024309, + "1308": -0.0000024245, + "1309": -0.0000024182, + "1310": -0.000002412, + "1311": -0.0000024059, + "1312": -0.0000023999, + "1313": -0.000002394, + "1314": -0.0000023882, + "1315": -0.0000023825, + "1316": -0.000002377, + "1317": -0.0000023715, + "1318": -0.0000023661, + "1319": -0.0000023608, + "1320": -0.0000023556, + "1321": -0.0000023505, + "1322": -0.0000023454, + "1323": -0.0000023405, + "1324": -0.0000023357, + "1325": -0.0000023309, + "1326": -0.0000023263, + "1327": -0.0000023217, + "1328": -0.0000023172, + "1329": -0.0000023128, + "1330": -0.0000023084, + "1331": -0.0000023042, + "1332": -0.0000023, + "1333": -0.0000022959, + "1334": -0.0000022919, + "1335": -0.0000022879, + "1336": -0.0000022841, + "1337": -0.0000022803, + "1338": -0.0000022765, + "1339": -0.0000022728, + "1340": -0.0000022692, + "1341": -0.0000022657, + "1342": -0.0000022622, + "1343": -0.0000022588, + "1344": -0.0000022555, + "1345": -0.0000022522, + "1346": -0.0000022489, + "1347": -0.0000022458, + "1348": -0.0000022426, + "1349": -0.0000022396, + "1350": -0.0000022366, + "1351": -0.0000022336, + "1352": -0.0000022307, + "1353": -0.0000022278, + "1354": -0.000002225, + "1355": -0.0000022223, + "1356": -0.0000022195, + "1357": -0.0000022169, + "1358": -0.0000022142, + "1359": -0.0000022117, + "1360": -0.0000022091, + "1361": -0.0000022066, + "1362": -0.0000022042, + "1363": -0.0000022017, + "1364": -0.0000021994, + "1365": -0.000002197, + "1366": -0.0000021947, + "1367": -0.0000021925, + "1368": -0.0000021902, + "1369": -0.000002188, + "1370": -0.0000021859, + "1371": -0.0000021838, + "1372": -0.0000021817, + "1373": -0.0000021796, + "1374": -0.0000021776, + "1375": -0.0000021756, + "1376": -0.0000021736, + "1377": -0.0000021716, + "1378": -0.0000021697, + "1379": -0.0000021678, + "1380": -0.000002166, + "1381": -0.0000021642, + "1382": -0.0000021623, + "1383": -0.0000021606, + "1384": -0.0000021588, + "1385": -0.0000021571, + "1386": -0.0000021554, + "1387": -0.0000021537, + "1388": -0.000002152, + "1389": -0.0000021504, + "1390": -0.0000021488, + "1391": -0.0000021472, + "1392": -0.0000021456, + "1393": -0.0000021441, + "1394": -0.0000021425, + "1395": -0.000002141, + "1396": -0.0000021395, + "1397": -0.000002138, + "1398": -0.0000021366, + "1399": -0.0000021351, + "1400": -0.0000021337, + "1401": -0.0000021323, + "1402": -0.0000021309, + "1403": -0.0000021296, + "1404": -0.0000021282, + "1405": -0.0000021269, + "1406": -0.0000021256, + "1407": -0.0000021243, + "1408": -0.000002123, + "1409": -0.0000021217, + "1410": -0.0000021204, + "1411": -0.0000021192, + "1412": -0.0000021179, + "1413": -0.0000021167, + "1414": -0.0000021155, + "1415": -0.0000021143, + "1416": -0.0000021132, + "1417": -0.000002112, + "1418": -0.0000021108, + "1419": -0.0000021097, + "1420": -0.0000021086, + "1421": -0.0000021074, + "1422": -0.0000021063, + "1423": -0.0000021052, + "1424": -0.0000021042, + "1425": -0.0000021031, + "1426": -0.000002102, + "1427": -0.000002101, + "1428": -0.0000020999, + "1429": -0.0000020989, + "1430": -0.0000020979, + "1431": -0.0000020969, + "1432": -0.0000020959, + "1433": -0.0000020949, + "1434": -0.0000020939, + "1435": -0.0000020929, + "1436": -0.000002092, + "1437": -0.000002091, + "1438": -0.0000020901, + "1439": -0.0000020891, + "1440": -0.0000020882, + "1441": -0.0000020873, + "1442": -0.0000020864, + "1443": -0.0000020855, + "1444": -0.0000020846, + "1445": -0.0000020837, + "1446": -0.0000020828, + "1447": -0.0000020819, + "1448": -0.0000020811, + "1449": -0.0000020802, + "1450": -0.0000020794, + "1451": -0.0000020785, + "1452": -0.0000020777, + "1453": -0.0000020768, + "1454": -0.000002076, + "1455": -0.0000020752, + "1456": -0.0000020744, + "1457": -0.0000020736, + "1458": -0.0000020728, + "1459": -0.000002072, + "1460": -0.0000020712, + "1461": -0.0000020704, + "1462": -0.0000020697, + "1463": -0.0000020689, + "1464": -0.0000020681, + "1465": -0.0000020674, + "1466": -0.0000020666, + "1467": -0.0000020659, + "1468": -0.0000020652, + "1469": -0.0000020644, + "1470": -0.0000020637, + "1471": -0.000002063, + "1472": -0.0000020623, + "1473": -0.0000020615, + "1474": -0.0000020608, + "1475": -0.0000020601, + "1476": -0.0000020594, + "1477": -0.0000020588, + "1478": -0.0000020581, + "1479": -0.0000020574, + "1480": -0.0000020567, + "1481": -0.000002056, + "1482": -0.0000020554, + "1483": -0.0000020547, + "1484": -0.000002054, + "1485": -0.0000020534, + "1486": -0.0000020527, + "1487": -0.0000020521, + "1488": -0.0000020515, + "1489": -0.0000020508, + "1490": -0.0000020502, + "1491": -0.0000020496, + "1492": -0.0000020489, + "1493": -0.0000020483, + "1494": -0.0000020477, + "1495": -0.0000020471, + "1496": -0.0000020465, + "1497": -0.0000020459, + "1498": -0.0000020453, + "1499": -0.0000020447, + "1500": 0.0, + "1501": 19998.3, + "1502": 9999.15, + "1503": 14998.725, + "1504": 12498.9375, + "1505": 13748.83125, + "1506": 13123.884375, + "1507": 13436.3578125, + "1508": 13280.12109375, + "1509": 13358.239453125, + "1510": 13319.1802734375, + "1511": 13338.7098632813, + "1512": 13328.9450683594, + "1513": 13333.8274658203, + "1514": 13331.3862670898, + "1515": 13332.6068664551, + "1516": 13331.9965667725, + "1517": 13332.3017166138, + "1518": 13332.1491416931, + "1519": 13332.2254291534, + "1520": 13332.1872854233, + "1521": 13332.2063572884, + "1522": 13332.1968213558, + "1523": 13332.2015893221, + "1524": 13332.199205339, + "1525": 13332.2003973305, + "1526": 13332.1998013347, + "1527": 13332.2000993326, + "1528": 13332.1999503337, + "1529": 13332.2000248332, + "1530": 13332.1999875834, + "1531": 13332.2000062083, + "1532": 13332.1999968959, + "1533": 13332.2000015521, + "1534": 13332.199999224, + "1535": 13332.200000388, + "1536": 13332.199999806, + "1537": 13332.200000097, + "1538": 13332.1999999515, + "1539": 13332.2000000243, + "1540": 13332.1999999879, + "1541": 13332.2000000061, + "1542": 13332.199999997, + "1543": 13332.2000000015, + "1544": 13332.1999999992, + "1545": 13332.2000000004, + "1546": 13332.1999999998, + "1547": 13332.2000000001, + "1548": 13332.2, + "1549": 13332.2, + "1550": 13332.2, + "1551": 13332.2, + "1552": 13332.2, + "1553": 13332.2, + "1554": 13332.2, + "1555": 13332.2, + "1556": 13332.2, + "1557": 13332.2, + "1558": 13332.2, + "1559": 13332.2, + "1560": 13332.2, + "1561": 13332.2, + "1562": 13332.2, + "1563": 13332.2, + "1564": 13332.2, + "1565": 13332.2, + "1566": 13332.2, + "1567": 13332.2, + "1568": 13332.2, + "1569": 13332.2, + "1570": 13332.2, + "1571": 13332.2, + "1572": 13332.2, + "1573": 13332.2, + "1574": 13332.2, + "1575": 13332.2, + "1576": 13332.2, + "1577": 13332.2, + "1578": 13332.2, + "1579": 13332.2, + "1580": 13332.2, + "1581": 13332.2, + "1582": 13332.2, + "1583": 13332.2, + "1584": 13332.2, + "1585": 13332.2, + "1586": 13332.2, + "1587": 13332.2, + "1588": 13332.2, + "1589": 13332.2, + "1590": 13332.2, + "1591": 13332.2, + "1592": 13332.2, + "1593": 13332.2, + "1594": 13332.2, + "1595": 13332.2, + "1596": 13332.2, + "1597": 13332.2, + "1598": 13332.2, + "1599": 13332.2, + "1600": 13332.2, + "1601": 13332.2, + "1602": 13332.2, + "1603": 13332.2, + "1604": 13332.2, + "1605": 13332.2, + "1606": 13332.2, + "1607": 13332.2, + "1608": 13332.2, + "1609": 13332.2, + "1610": 13332.2, + "1611": 13332.2, + "1612": 13332.2, + "1613": 13332.2, + "1614": 13332.2, + "1615": 13332.2, + "1616": 13332.2, + "1617": 13332.2, + "1618": 13332.2, + "1619": 13332.2, + "1620": 13332.2, + "1621": 13332.2, + "1622": 13332.2, + "1623": 13332.2, + "1624": 13332.2, + "1625": 13332.2, + "1626": 13332.2, + "1627": 13332.2, + "1628": 13332.2, + "1629": 13332.2, + "1630": 13332.2, + "1631": 13332.2, + "1632": 13332.2, + "1633": 13332.2, + "1634": 13332.2, + "1635": 13332.2, + "1636": 13332.2, + "1637": 13332.2, + "1638": 13332.2, + "1639": 13332.2, + "1640": 13332.2, + "1641": 13332.2, + "1642": 13332.2, + "1643": 13332.2, + "1644": 13332.2, + "1645": 13332.2, + "1646": 13332.2, + "1647": 13332.2, + "1648": 13332.2, + "1649": 13332.2, + "1650": 13332.2, + "1651": 13332.2, + "1652": 13332.2, + "1653": 13332.2, + "1654": 13332.2, + "1655": 13332.2, + "1656": 13332.2, + "1657": 13332.2, + "1658": 13332.2, + "1659": 13332.2, + "1660": 13332.2, + "1661": 13332.2, + "1662": 13332.2, + "1663": 13332.2, + "1664": 13332.2, + "1665": 13332.2, + "1666": 13332.2, + "1667": 13332.2, + "1668": 13332.2, + "1669": 13332.2, + "1670": 13332.2, + "1671": 13332.2, + "1672": 13332.2, + "1673": 13332.2, + "1674": 13332.2, + "1675": 13332.2, + "1676": 13332.2, + "1677": 13332.2, + "1678": 13332.2, + "1679": 13332.2, + "1680": 13332.2, + "1681": 13332.2, + "1682": 13332.2, + "1683": 13332.2, + "1684": 13332.2, + "1685": 13332.2, + "1686": 13332.2, + "1687": 13332.2, + "1688": 13332.2, + "1689": 13332.2, + "1690": 13332.2, + "1691": 13332.2, + "1692": 13332.2, + "1693": 13332.2, + "1694": 13332.2, + "1695": 13332.2, + "1696": 13332.2, + "1697": 13332.2, + "1698": 13332.2, + "1699": 13332.2, + "1700": 13332.2, + "1701": 13332.2, + "1702": 13332.2, + "1703": 13332.2, + "1704": 13332.2, + "1705": 13332.2, + "1706": 13332.2, + "1707": 13332.2, + "1708": 13332.2, + "1709": 13332.2, + "1710": 13332.2, + "1711": 13332.2, + "1712": 13332.2, + "1713": 13332.2, + "1714": 13332.2, + "1715": 13332.2, + "1716": 13332.2, + "1717": 13332.2, + "1718": 13332.2, + "1719": 13332.2, + "1720": 13332.2, + "1721": 13332.2, + "1722": 13332.2, + "1723": 13332.2, + "1724": 13332.2, + "1725": 13332.2, + "1726": 13332.2, + "1727": 13332.2, + "1728": 13332.2, + "1729": 13332.2, + "1730": 13332.2, + "1731": 13332.2, + "1732": 13332.2, + "1733": 13332.2, + "1734": 13332.2, + "1735": 13332.2, + "1736": 13332.2, + "1737": 13332.2, + "1738": 13332.2, + "1739": 13332.2, + "1740": 13332.2, + "1741": 13332.2, + "1742": 13332.2, + "1743": 13332.2, + "1744": 13332.2, + "1745": 13332.2, + "1746": 13332.2, + "1747": 13332.2, + "1748": 13332.2, + "1749": 13332.2, + "1750": 13332.2, + "1751": 13332.2, + "1752": 13332.2, + "1753": 13332.2, + "1754": 13332.2, + "1755": 13332.2, + "1756": 13332.2, + "1757": 13332.2, + "1758": 13332.2, + "1759": 13332.2, + "1760": 13332.2, + "1761": 13332.2, + "1762": 13332.2, + "1763": 13332.2, + "1764": 13332.2, + "1765": 13332.2, + "1766": 13332.2, + "1767": 13332.2, + "1768": 13332.2, + "1769": 13332.2, + "1770": 13332.2, + "1771": 13332.2, + "1772": 13332.2, + "1773": 13332.2, + "1774": 13332.2, + "1775": 13332.2, + "1776": 13332.2, + "1777": 13332.2, + "1778": 13332.2, + "1779": 13332.2, + "1780": 13332.2, + "1781": 13332.2, + "1782": 13332.2, + "1783": 13332.2, + "1784": 13332.2, + "1785": 13332.2, + "1786": 13332.2, + "1787": 13332.2, + "1788": 13332.2, + "1789": 13332.2, + "1790": 13332.2, + "1791": 13332.2, + "1792": 13332.2, + "1793": 13332.2, + "1794": 13332.2, + "1795": 13332.2, + "1796": 13332.2, + "1797": 13332.2, + "1798": 13332.2, + "1799": 13332.2, + "1800": 13332.2, + "1801": 13332.2, + "1802": 13332.2, + "1803": 13332.2, + "1804": 13332.2, + "1805": 13332.2, + "1806": 13332.2, + "1807": 13332.2, + "1808": 13332.2, + "1809": 13332.2, + "1810": 13332.2, + "1811": 13332.2, + "1812": 13332.2, + "1813": 13332.2, + "1814": 13332.2, + "1815": 13332.2, + "1816": 13332.2, + "1817": 13332.2, + "1818": 13332.2, + "1819": 13332.2, + "1820": 13332.2, + "1821": 13332.2, + "1822": 13332.2, + "1823": 13332.2, + "1824": 13332.2, + "1825": 13332.2, + "1826": 13332.2, + "1827": 13332.2, + "1828": 13332.2, + "1829": 13332.2, + "1830": 13332.2, + "1831": 13332.2, + "1832": 13332.2, + "1833": 13332.2, + "1834": 13332.2, + "1835": 13332.2, + "1836": 13332.2, + "1837": 13332.2, + "1838": 13332.2, + "1839": 13332.2, + "1840": 13332.2, + "1841": 13332.2, + "1842": 13332.2, + "1843": 13332.2, + "1844": 13332.2, + "1845": 13332.2, + "1846": 13332.2, + "1847": 13332.2, + "1848": 13332.2, + "1849": 13332.2, + "1850": 13332.2, + "1851": 13332.2, + "1852": 13332.2, + "1853": 13332.2, + "1854": 13332.2, + "1855": 13332.2, + "1856": 13332.2, + "1857": 13332.2, + "1858": 13332.2, + "1859": 13332.2, + "1860": 13332.2, + "1861": 13332.2, + "1862": 13332.2, + "1863": 13332.2, + "1864": 13332.2, + "1865": 13332.2, + "1866": 13332.2, + "1867": 13332.2, + "1868": 13332.2, + "1869": 13332.2, + "1870": 13332.2, + "1871": 13332.2, + "1872": 13332.2, + "1873": 13332.2, + "1874": 13332.2, + "1875": 13332.2, + "1876": 13332.2, + "1877": 13332.2, + "1878": 13332.2, + "1879": 13332.2, + "1880": 13332.2, + "1881": 13332.2, + "1882": 13332.2, + "1883": 13332.2, + "1884": 13332.2, + "1885": 13332.2, + "1886": 13332.2, + "1887": 13332.2, + "1888": 13332.2, + "1889": 13332.2, + "1890": 13332.2, + "1891": 13332.2, + "1892": 13332.2, + "1893": 13332.2, + "1894": 13332.2, + "1895": 13332.2, + "1896": 13332.2, + "1897": 13332.2, + "1898": 13332.2, + "1899": 13332.2, + "1900": 13332.2, + "1901": 13332.2, + "1902": 13332.2, + "1903": 13332.2, + "1904": 13332.2, + "1905": 13332.2, + "1906": 13332.2, + "1907": 13332.2, + "1908": 13332.2, + "1909": 13332.2, + "1910": 13332.2, + "1911": 13332.2, + "1912": 13332.2, + "1913": 13332.2, + "1914": 13332.2, + "1915": 13332.2, + "1916": 13332.2, + "1917": 13332.2, + "1918": 13332.2, + "1919": 13332.2, + "1920": 13332.2, + "1921": 13332.2, + "1922": 13332.2, + "1923": 13332.2, + "1924": 13332.2, + "1925": 13332.2, + "1926": 13332.2, + "1927": 13332.2, + "1928": 13332.2, + "1929": 13332.2, + "1930": 13332.2, + "1931": 13332.2, + "1932": 13332.2, + "1933": 13332.2, + "1934": 13332.2, + "1935": 13332.2, + "1936": 13332.2, + "1937": 13332.2, + "1938": 13332.2, + "1939": 13332.2, + "1940": 13332.2, + "1941": 13332.2, + "1942": 13332.2, + "1943": 13332.2, + "1944": 13332.2, + "1945": 13332.2, + "1946": 13332.2, + "1947": 13332.2, + "1948": 13332.2, + "1949": 13332.2, + "1950": 13332.2, + "1951": 13332.2, + "1952": 13332.2, + "1953": 13332.2, + "1954": 13332.2, + "1955": 13332.2, + "1956": 13332.2, + "1957": 13332.2, + "1958": 13332.2, + "1959": 13332.2, + "1960": 13332.2, + "1961": 13332.2, + "1962": 13332.2, + "1963": 13332.2, + "1964": 13332.2, + "1965": 13332.2, + "1966": 13332.2, + "1967": 13332.2, + "1968": 13332.2, + "1969": 13332.2, + "1970": 13332.2, + "1971": 13332.2, + "1972": 13332.2, + "1973": 13332.2, + "1974": 13332.2, + "1975": 13332.2, + "1976": 13332.2, + "1977": 13332.2, + "1978": 13332.2, + "1979": 13332.2, + "1980": 13332.2, + "1981": 13332.2, + "1982": 13332.2, + "1983": 13332.2, + "1984": 13332.2, + "1985": 13332.2, + "1986": 13332.2, + "1987": 13332.2, + "1988": 13332.2, + "1989": 13332.2, + "1990": 13332.2, + "1991": 13332.2, + "1992": 13332.2, + "1993": 13332.2, + "1994": 13332.2, + "1995": 13332.2, + "1996": 13332.2, + "1997": 13332.2, + "1998": 13332.2, + "1999": 13332.2, + "2000": 0.0, + "2001": 0.0000107872, + "2002": 0.000045345, + "2003": 0.0000371051, + "2004": 0.0000363789, + "2005": 0.0000369858, + "2006": 0.0000365615, + "2007": 0.0000365716, + "2008": 0.000036374, + "2009": 0.0000362889, + "2010": 0.0000361465, + "2011": 0.0000360336, + "2012": 0.000035908, + "2013": 0.0000357894, + "2014": 0.0000356689, + "2015": 0.0000355503, + "2016": 0.0000354321, + "2017": 0.0000353147, + "2018": 0.0000351982, + "2019": 0.0000350824, + "2020": 0.0000349674, + "2021": 0.0000348531, + "2022": 0.0000347395, + "2023": 0.0000346268, + "2024": 0.0000345147, + "2025": 0.0000344033, + "2026": 0.0000342927, + "2027": 0.0000341828, + "2028": 0.0000340736, + "2029": 0.0000339651, + "2030": 0.0000338573, + "2031": 0.0000337501, + "2032": 0.0000336437, + "2033": 0.0000335379, + "2034": 0.0000334327, + "2035": 0.0000333283, + "2036": 0.0000332245, + "2037": 0.0000331213, + "2038": 0.0000330187, + "2039": 0.0000329168, + "2040": 0.0000328156, + "2041": 0.0000327149, + "2042": 0.0000326149, + "2043": 0.0000325154, + "2044": 0.0000324166, + "2045": 0.0000323184, + "2046": 0.0000322208, + "2047": 0.0000321237, + "2048": 0.0000320273, + "2049": 0.0000319314, + "2050": 0.0000318361, + "2051": 0.0000317413, + "2052": 0.0000316472, + "2053": 0.0000315535, + "2054": 0.0000314605, + "2055": 0.000031368, + "2056": 0.000031276, + "2057": 0.0000311845, + "2058": 0.0000310936, + "2059": 0.0000310032, + "2060": 0.0000309134, + "2061": 0.000030824, + "2062": 0.0000307352, + "2063": 0.0000306469, + "2064": 0.0000305591, + "2065": 0.0000304718, + "2066": 0.000030385, + "2067": 0.0000302987, + "2068": 0.0000302128, + "2069": 0.0000301275, + "2070": 0.0000300426, + "2071": 0.0000299582, + "2072": 0.0000298743, + "2073": 0.0000297909, + "2074": 0.0000297079, + "2075": 0.0000296254, + "2076": 0.0000295433, + "2077": 0.0000294617, + "2078": 0.0000293805, + "2079": 0.0000292998, + "2080": 0.0000292195, + "2081": 0.0000291397, + "2082": 0.0000290603, + "2083": 0.0000289813, + "2084": 0.0000289028, + "2085": 0.0000288247, + "2086": 0.0000096878, + "2087": -0.0000012615, + "2088": -0.0000020075, + "2089": -0.0000048812, + "2090": -0.0000069992, + "2091": -0.0000095871, + "2092": -0.0000118293, + "2093": -0.0000140722, + "2094": -0.0000161316, + "2095": -0.0000181017, + "2096": -0.0000199415, + "2097": -0.000021676, + "2098": -0.000023304, + "2099": -0.000024841, + "2100": -0.0000262834, + "2101": -0.0000276406, + "2102": -0.0000289146, + "2103": -0.0000301118, + "2104": -0.0000312359, + "2105": -0.0000322917, + "2106": -0.0000332829, + "2107": -0.0000342134, + "2108": -0.0000350868, + "2109": -0.0000359063, + "2110": -0.000036675, + "2111": -0.0000373958, + "2112": -0.0000380715, + "2113": -0.0000387044, + "2114": -0.000039297, + "2115": -0.0000398515, + "2116": -0.0000403699, + "2117": -0.0000408542, + "2118": -0.000041306, + "2119": -0.0000417272, + "2120": -0.0000421192, + "2121": -0.0000424836, + "2122": -0.0000428216, + "2123": -0.0000431345, + "2124": -0.0000434237, + "2125": -0.00004369, + "2126": -0.0000439347, + "2127": -0.0000441586, + "2128": -0.0000443627, + "2129": -0.0000445478, + "2130": -0.0000447147, + "2131": -0.0000448641, + "2132": -0.0000449967, + "2133": -0.0000451132, + "2134": -0.0000452141, + "2135": -0.0000453, + "2136": -0.0000453714, + "2137": -0.0000454287, + "2138": -0.0000454725, + "2139": -0.0000455031, + "2140": -0.000045521, + "2141": -0.0000455264, + "2142": -0.0000455197, + "2143": -0.0000455013, + "2144": -0.0000454714, + "2145": -0.0000454303, + "2146": -0.0000453782, + "2147": -0.0000453154, + "2148": -0.0000452422, + "2149": -0.0000451587, + "2150": -0.0000450651, + "2151": -0.0000449616, + "2152": -0.0000448485, + "2153": -0.0000447259, + "2154": -0.000044594, + "2155": -0.0000444529, + "2156": -0.0000443028, + "2157": -0.000044144, + "2158": -0.0000439765, + "2159": -0.0000438005, + "2160": -0.0000436163, + "2161": -0.0000434239, + "2162": -0.0000432236, + "2163": -0.0000430156, + "2164": -0.0000428, + "2165": -0.0000425771, + "2166": -0.000042347, + "2167": -0.00004211, + "2168": -0.0000418663, + "2169": -0.0000416162, + "2170": -0.0000413598, + "2171": -0.0000410975, + "2172": -0.0000408294, + "2173": -0.000040556, + "2174": -0.0000402774, + "2175": -0.0000399939, + "2176": -0.0000397059, + "2177": -0.0000394137, + "2178": -0.0000391176, + "2179": -0.0000388179, + "2180": -0.000038515, + "2181": -0.0000382092, + "2182": -0.0000379009, + "2183": -0.0000375903, + "2184": -0.000037278, + "2185": -0.0000369642, + "2186": -0.0000366494, + "2187": -0.0000363337, + "2188": -0.0000360178, + "2189": -0.0000357018, + "2190": -0.0000353862, + "2191": -0.0000350712, + "2192": -0.0000347573, + "2193": -0.0000344448, + "2194": -0.000034134, + "2195": -0.0000338252, + "2196": -0.0000335188, + "2197": -0.0000332149, + "2198": -0.000032914, + "2199": -0.0000326162, + "2200": -0.0000323219, + "2201": -0.0000320312, + "2202": -0.0000317444, + "2203": -0.0000314616, + "2204": -0.0000311831, + "2205": -0.0000309091, + "2206": -0.0000306396, + "2207": -0.0000303748, + "2208": -0.0000301149, + "2209": -0.00002986, + "2210": -0.00002961, + "2211": -0.0000293652, + "2212": -0.0000291255, + "2213": -0.000028891, + "2214": -0.0000286617, + "2215": -0.0000284377, + "2216": -0.0000282189, + "2217": -0.0000280053, + "2218": -0.0000277969, + "2219": -0.0000275937, + "2220": -0.0000273956, + "2221": -0.0000272026, + "2222": -0.0000270146, + "2223": -0.0000268315, + "2224": -0.0000266533, + "2225": -0.0000264799, + "2226": -0.0000263112, + "2227": -0.0000261471, + "2228": -0.0000259875, + "2229": -0.0000258323, + "2230": -0.0000256815, + "2231": -0.0000255348, + "2232": -0.0000253923, + "2233": -0.0000252537, + "2234": -0.0000251191, + "2235": -0.0000249882, + "2236": -0.000024861, + "2237": -0.0000247374, + "2238": -0.0000246172, + "2239": -0.0000245004, + "2240": -0.0000243868, + "2241": -0.0000242762, + "2242": -0.0000239873, + "2243": -0.0000225371, + "2244": -0.0000199665, + "2245": -0.000016921, + "2246": -0.0000137923, + "2247": -0.0000106343, + "2248": -0.0000076532, + "2249": -0.0000048434, + "2250": -0.0000024347, + "2251": 0.0000002708, + "2252": 0.000019411, + "2253": 0.0001776253, + "2254": 0.0007000809, + "2255": 0.001372217, + "2256": 0.0017831793, + "2257": 0.0019368632, + "2258": 0.0020463026, + "2259": 0.0021424257, + "2260": 0.0021760385, + "2261": 0.002175789, + "2262": 0.0021771323, + "2263": 0.0021712687, + "2264": 0.0021519834, + "2265": 0.0021291341, + "2266": 0.0021056676, + "2267": 0.0020784685, + "2268": 0.0020484413, + "2269": 0.0020175042, + "2270": 0.0019853543, + "2271": 0.0019517986, + "2272": 0.0019174123, + "2273": 0.0018824041, + "2274": 0.0018467484, + "2275": 0.0018106095, + "2276": 0.00177415, + "2277": 0.001737438, + "2278": 0.0017005599, + "2279": 0.0016636169, + "2280": 0.0016266848, + "2281": 0.0015898328, + "2282": 0.0015531316, + "2283": 0.001516644, + "2284": 0.0014804264, + "2285": 0.0014445322, + "2286": 0.0014090099, + "2287": 0.0013739033, + "2288": 0.0013392525, + "2289": 0.0013050934, + "2290": 0.0012714582, + "2291": 0.0012383753, + "2292": 0.0012058701, + "2293": 0.0011739642, + "2294": 0.0011426765, + "2295": 0.0011120228, + "2296": 0.0010820161, + "2297": 0.0010526669, + "2298": 0.0010239833, + "2299": 0.000995971, + "2300": 0.0009686336, + "2301": 0.0009419729, + "2302": 0.0009159888, + "2303": 0.0008906793, + "2304": 0.0008660414, + "2305": 0.0008420701, + "2306": 0.0008187595, + "2307": 0.0007961024, + "2308": 0.0007740908, + "2309": 0.0007527154, + "2310": 0.0007319665, + "2311": 0.0007118333, + "2312": 0.0006923045, + "2313": 0.0006733685, + "2314": 0.0006550129, + "2315": 0.0006372251, + "2316": 0.0006199922, + "2317": 0.000603301, + "2318": 0.000587138, + "2319": 0.00057149, + "2320": 0.0005563432, + "2321": 0.0005416841, + "2322": 0.0005274991, + "2323": 0.0005137748, + "2324": 0.0005004976, + "2325": 0.0004876543, + "2326": 0.0004752318, + "2327": 0.0004632171, + "2328": 0.0004515973, + "2329": 0.00044036, + "2330": 0.0004294928, + "2331": 0.0004189836, + "2332": 0.0004088207, + "2333": 0.0003989924, + "2334": 0.0003894875, + "2335": 0.000380295, + "2336": 0.0003714042, + "2337": 0.0003628047, + "2338": 0.0003544864, + "2339": 0.0003464393, + "2340": 0.0003386541, + "2341": 0.0003311214, + "2342": 0.0003238323, + "2343": 0.0003167781, + "2344": 0.0003099504, + "2345": 0.000303341, + "2346": 0.0002969422, + "2347": 0.0002907464, + "2348": 0.0002847462, + "2349": 0.0002789345, + "2350": 0.0002733046, + "2351": 0.0002678499, + "2352": 0.000262564, + "2353": 0.0002574408, + "2354": 0.0002524745, + "2355": 0.0002476593, + "2356": 0.0002429898, + "2357": 0.0002384608, + "2358": 0.0002340672, + "2359": 0.0002298041, + "2360": 0.0002256668, + "2361": 0.0002216509, + "2362": 0.000217752, + "2363": 0.0002139659, + "2364": 0.0002102886, + "2365": 0.0002067163, + "2366": 0.0002032452, + "2367": 0.0001998719, + "2368": 0.0001965927, + "2369": 0.0001934045, + "2370": 0.0001903042, + "2371": 0.0001872885, + "2372": 0.0001843547, + "2373": 0.0001814998, + "2374": 0.0001787212, + "2375": 0.0001760164, + "2376": 0.0001733826, + "2377": 0.0001708177, + "2378": 0.0001683192, + "2379": 0.0001658849, + "2380": 0.0001635127, + "2381": 0.0001612005, + "2382": 0.0001589464, + "2383": 0.0001567484, + "2384": 0.0001546046, + "2385": 0.0001525134, + "2386": 0.0001504731, + "2387": 0.0001484819, + "2388": 0.0001465384, + "2389": 0.0001446409, + "2390": 0.0001427881, + "2391": 0.0001409786, + "2392": 0.0001392109, + "2393": 0.0001374839, + "2394": 0.0001357961, + "2395": 0.0001341465, + "2396": 0.0001325339, + "2397": 0.0001309571, + "2398": 0.000129415, + "2399": 0.0001279067, + "2400": 0.000126431, + "2401": 0.0001249871, + "2402": 0.000123574, + "2403": 0.0001221908, + "2404": 0.0001208367, + "2405": 0.0001195107, + "2406": 0.0001182121, + "2407": 0.0001169401, + "2408": 0.000115694, + "2409": 0.000114473, + "2410": 0.0001132764, + "2411": 0.0001121035, + "2412": 0.0001109537, + "2413": 0.0001098263, + "2414": 0.0001087208, + "2415": 0.0001076365, + "2416": 0.0001065729, + "2417": 0.0001055293, + "2418": 0.0001045054, + "2419": 0.0001035005, + "2420": 0.0001025142, + "2421": 0.0001015459, + "2422": 0.0001005953, + "2423": 0.0000996618, + "2424": 0.000098745, + "2425": 0.0000978445, + "2426": 0.0000969598, + "2427": 0.0000960907, + "2428": 0.0000952366, + "2429": 0.0000943973, + "2430": 0.0000935723, + "2431": 0.0000927613, + "2432": 0.0000919639, + "2433": 0.0000911799, + "2434": 0.0000904089, + "2435": 0.0000896506, + "2436": 0.0000889047, + "2437": 0.0000881709, + "2438": 0.000087449, + "2439": 0.0000867386, + "2440": 0.0000860394, + "2441": 0.0000853513, + "2442": 0.000084674, + "2443": 0.0000840072, + "2444": 0.0000833507, + "2445": 0.0000827042, + "2446": 0.0000820676, + "2447": 0.0000814406, + "2448": 0.000080823, + "2449": 0.0000802147, + "2450": 0.0000796153, + "2451": 0.0000790247, + "2452": 0.0000784428, + "2453": 0.0000778693, + "2454": 0.000077304, + "2455": 0.0000767469, + "2456": 0.0000761976, + "2457": 0.0000756561, + "2458": 0.0000751222, + "2459": 0.0000745957, + "2460": 0.0000740766, + "2461": 0.0000735645, + "2462": 0.0000730595, + "2463": 0.0000725613, + "2464": 0.0000720698, + "2465": 0.0000715849, + "2466": 0.0000711065, + "2467": 0.0000706344, + "2468": 0.0000701685, + "2469": 0.0000697086, + "2470": 0.0000692548, + "2471": 0.0000688068, + "2472": 0.0000683645, + "2473": 0.0000679279, + "2474": 0.0000674968, + "2475": 0.0000670712, + "2476": 0.0000666508, + "2477": 0.0000662357, + "2478": 0.0000658257, + "2479": 0.0000654208, + "2480": 0.0000650208, + "2481": 0.0000646257, + "2482": 0.0000642353, + "2483": 0.0000638496, + "2484": 0.0000634685, + "2485": 0.000063092, + "2486": 0.0000627198, + "2487": 0.0000623521, + "2488": 0.0000619886, + "2489": 0.0000616293, + "2490": 0.0000612742, + "2491": 0.0000609232, + "2492": 0.0000605761, + "2493": 0.000060233, + "2494": 0.0000598938, + "2495": 0.0000595583, + "2496": 0.0000592266, + "2497": 0.0000588986, + "2498": 0.0000585742, + "2499": 0.0000582534, + "2500": 0.0, + "2501": 1660.5555298119, + "2502": 2254.4336215282, + "2503": 2108.3399854882, + "2504": 2108.2000541554, + "2505": 2114.0896661352, + "2506": 2113.3283919524, + "2507": 2113.3715941722, + "2508": 2113.5424194555, + "2509": 2113.663579051, + "2510": 2113.7853183212, + "2511": 2113.9084551092, + "2512": 2114.0300940851, + "2513": 2114.1510531356, + "2514": 2114.271149988, + "2515": 2114.3904685595, + "2516": 2114.508980355, + "2517": 2114.6267085738, + "2518": 2114.743655804, + "2519": 2114.8598312159, + "2520": 2114.9752423506, + "2521": 2115.0898965415, + "2522": 2115.203801489, + "2523": 2115.3169643706, + "2524": 2115.4293925673, + "2525": 2115.5410931784, + "2526": 2115.6520733191, + "2527": 2115.7623399532, + "2528": 2115.8718999865, + "2529": 2115.9807602197, + "2530": 2116.0889273748, + "2531": 2116.1964080841, + "2532": 2116.3032088975, + "2533": 2116.4093362807, + "2534": 2116.5147966186, + "2535": 2116.619596215, + "2536": 2116.7237412951, + "2537": 2116.8272380059, + "2538": 2116.9300924176, + "2539": 2117.0323105252, + "2540": 2117.133898249, + "2541": 2117.2348614364, + "2542": 2117.3352058625, + "2543": 2117.4349372317, + "2544": 2117.5340611782, + "2545": 2117.6325832677, + "2546": 2117.7305089978, + "2547": 2117.8278437996, + "2548": 2117.9245930385, + "2549": 2118.0207620148, + "2550": 2118.1163559655, + "2551": 2118.2113800644, + "2552": 2118.3058394236, + "2553": 2118.3997390942, + "2554": 2118.4930840672, + "2555": 2118.5858792746, + "2556": 2118.6781295899, + "2557": 2118.7698398292, + "2558": 2118.8610147521, + "2559": 2118.9516590624, + "2560": 2119.0417774089, + "2561": 2119.1313743862, + "2562": 2119.2204545357, + "2563": 2119.309022346, + "2564": 2119.397082254, + "2565": 2119.4846386455, + "2566": 2119.5716958559, + "2567": 2119.6582581708, + "2568": 2119.7443298272, + "2569": 2119.8299150136, + "2570": 2119.915017871, + "2571": 2119.9996424935, + "2572": 2120.0837929291, + "2573": 2120.1674731801, + "2574": 2120.2506872039, + "2575": 2120.3334389136, + "2576": 2120.4157321786, + "2577": 2120.4975708253, + "2578": 2120.5789586374, + "2579": 2120.6598993569, + "2580": 2120.7403966844, + "2581": 2120.8204542798, + "2582": 2120.9000757627, + "2583": 2120.9792647133, + "2584": 2121.0580246723, + "2585": 2121.1363591423, + "2586": 2131.0608083731, + "2587": 2145.3222114542, + "2588": 2151.6606186379, + "2589": 2153.6580112319, + "2590": 2155.8677884823, + "2591": 2158.3181397134, + "2592": 2160.6968941716, + "2593": 2162.959607534, + "2594": 2165.1006523519, + "2595": 2167.1204266166, + "2596": 2169.0227123276, + "2597": 2170.8109750219, + "2598": 2172.4916549398, + "2599": 2174.0743228188, + "2600": 2175.5635606354, + "2601": 2176.9635081966, + "2602": 2178.2789004446, + "2603": 2179.5145431184, + "2604": 2180.6750982266, + "2605": 2181.764985412, + "2606": 2182.7883755558, + "2607": 2183.7491766577, + "2608": 2184.6510485968, + "2609": 2185.497411627, + "2610": 2186.2914619769, + "2611": 2187.0361849179, + "2612": 2187.7343688439, + "2613": 2188.3886181073, + "2614": 2189.0013653688, + "2615": 2189.5748830549, + "2616": 2190.1112940716, + "2617": 2190.612581759, + "2618": 2191.0805991397, + "2619": 2191.5170775091, + "2620": 2191.9236344103, + "2621": 2192.3017810448, + "2622": 2192.6529291605, + "2623": 2192.9783974588, + "2624": 2193.2794175608, + "2625": 2193.5571395667, + "2626": 2193.8126372426, + "2627": 2194.0469128637, + "2628": 2194.260901744, + "2629": 2194.4554764754, + "2630": 2194.6314509017, + "2631": 2194.789583849, + "2632": 2194.9305826308, + "2633": 2195.055106349, + "2634": 2195.1637690045, + "2635": 2195.2571424359, + "2636": 2195.3357590984, + "2637": 2195.400114698, + "2638": 2195.4506706916, + "2639": 2195.4878566653, + "2640": 2195.5120726015, + "2641": 2195.5236910433, + "2642": 2195.5230591657, + "2643": 2195.5105007619, + "2644": 2195.4863181509, + "2645": 2195.4507940138, + "2646": 2195.4041931655, + "2647": 2195.3467642649, + "2648": 2195.2787414701, + "2649": 2195.2003460424, + "2650": 2195.1117879017, + "2651": 2195.0132671362, + "2652": 2194.9049754696, + "2653": 2194.7870976859, + "2654": 2194.6598130137, + "2655": 2194.5232964695, + "2656": 2194.3777201606, + "2657": 2194.2232545462, + "2658": 2194.0600696543, + "2659": 2193.8883362545, + "2660": 2193.7082269817, + "2661": 2193.5199174094, + "2662": 2193.3235870677, + "2663": 2193.1194204027, + "2664": 2192.9076076728, + "2665": 2192.688345777, + "2666": 2192.4618390098, + "2667": 2192.228299739, + "2668": 2191.9879489997, + "2669": 2191.7410169999, + "2670": 2191.4877435335, + "2671": 2191.2283782947, + "2672": 2190.9631810906, + "2673": 2190.692421948, + "2674": 2190.4163811105, + "2675": 2190.1353489249, + "2676": 2189.8496256144, + "2677": 2189.5595209383, + "2678": 2189.2653537389, + "2679": 2188.9674513783, + "2680": 2188.6661490658, + "2681": 2188.3617890825, + "2682": 2188.0547199074, + "2683": 2187.7452952524, + "2684": 2187.4338730133, + "2685": 2187.1208141471, + "2686": 2186.8064814856, + "2687": 2186.4912384958, + "2688": 2186.1754480005, + "2689": 2185.8594708708, + "2690": 2185.5436647034, + "2691": 2185.2283824985, + "2692": 2184.9139713481, + "2693": 2184.6007711518, + "2694": 2184.2891133709, + "2695": 2183.9793198336, + "2696": 2183.6717016041, + "2697": 2183.3665579248, + "2698": 2183.0641752424, + "2699": 2182.7648263264, + "2700": 2182.4687694855, + "2701": 2182.1762478899, + "2702": 2181.8874890015, + "2703": 2181.6027041158, + "2704": 2181.3220880169, + "2705": 2181.045818744, + "2706": 2180.7740574688, + "2707": 2180.5069484808, + "2708": 2180.2446192758, + "2709": 2179.987180743, + "2710": 2179.7347274434, + "2711": 2179.4873379748, + "2712": 2179.2450754132, + "2713": 2179.0079878248, + "2714": 2178.7761088394, + "2715": 2178.5494582764, + "2716": 2178.328042816, + "2717": 2178.1118567065, + "2718": 2177.9008824989, + "2719": 2177.6950918031, + "2720": 2177.4944460553, + "2721": 2177.2988972923, + "2722": 2177.1083889244, + "2723": 2176.9228565014, + "2724": 2176.7422284675, + "2725": 2176.5664268978, + "2726": 2176.3953682147, + "2727": 2176.2289638791, + "2728": 2176.0671210534, + "2729": 2175.909743233, + "2730": 2175.7567308441, + "2731": 2175.6079818016, + "2732": 2175.4633920228, + "2733": 2175.3228558822, + "2734": 2175.1862665841, + "2735": 2175.0535163992, + "2736": 2174.9244966635, + "2737": 2174.7990973402, + "2738": 2174.6772058124, + "2739": 2174.5587045579, + "2740": 2174.4434681309, + "2741": 2174.3313627838, + "2742": 2174.1286348338, + "2743": 2173.2458850138, + "2744": 2171.252571212, + "2745": 2168.4514878876, + "2746": 2165.3584198891, + "2747": 2162.2100393121, + "2748": 2159.1438407139, + "2749": 2156.2448960302, + "2750": 2153.6401016186, + "2751": 2151.0676641564, + "2752": 2139.8893187473, + "2753": 2049.4493897335, + "2754": 1707.4376587775, + "2755": 1117.2185237951, + "2756": 577.9775740319, + "2757": 288.6906015635, + "2758": 154.7786326764, + "2759": 55.5260787208, + "2760": -8.3882108141, + "2761": -26.5111088659, + "2762": -26.9866114184, + "2763": -23.9685938927, + "2764": -11.5261357216, + "2765": 9.2844372354, + "2766": 32.5952278963, + "2767": 58.0168937599, + "2768": 86.5522080053, + "2769": 117.0276754602, + "2770": 148.6118565236, + "2771": 181.4592627054, + "2772": 215.4185494933, + "2773": 250.1243470967, + "2774": 285.4601230327, + "2775": 321.3542292764, + "2776": 357.6542200869, + "2777": 394.241860112, + "2778": 431.0366144265, + "2779": 467.9470806321, + "2780": 504.8850873938, + "2781": 541.7771097444, + "2782": 578.5535785671, + "2783": 615.1479631498, + "2784": 651.5003923018, + "2785": 687.556034373, + "2786": 723.2640286162, + "2787": 758.5781194396, + "2788": 793.4564216562, + "2789": 827.8609728444, + "2790": 861.7576888341, + "2791": 895.1162246498, + "2792": 927.9097429168, + "2793": 960.1147565276, + "2794": 991.7109702536, + "2795": 1022.6810999142, + "2796": 1053.0107040862, + "2797": 1082.6880200341, + "2798": 1111.703797376, + "2799": 1140.0511360563, + "2800": 1167.7253284627, + "2801": 1194.7237045827, + "2802": 1221.0454815547, + "2803": 1246.6916179872, + "2804": 1271.6646730706, + "2805": 1295.9686708728, + "2806": 1319.6089700466, + "2807": 1342.5921390636, + "2808": 1364.9258371104, + "2809": 1386.6187007274, + "2810": 1407.6802362212, + "2811": 1428.1207178563, + "2812": 1447.9510917977, + "2813": 1467.1828857457, + "2814": 1485.8281241791, + "2815": 1503.8992491024, + "2816": 1521.4090461683, + "2817": 1538.3705760329, + "2818": 1554.7971107842, + "2819": 1570.7020752725, + "2820": 1586.0989931606, + "2821": 1601.0014375026, + "2822": 1615.4229856558, + "2823": 1629.377178323, + "2824": 1642.8774825211, + "2825": 1655.9372582698, + "2826": 1668.5697287953, + "2827": 1680.7879540426, + "2828": 1692.6048072955, + "2829": 1704.0329547043, + "2830": 1715.0848375271, + "2831": 1725.7726568943, + "2832": 1736.1083609137, + "2833": 1746.1036339366, + "2834": 1755.7698878164, + "2835": 1765.1182549941, + "2836": 1774.1595832553, + "2837": 1782.9044320104, + "2838": 1791.3630699561, + "2839": 1799.5454739855, + "2840": 1807.4613292227, + "2841": 1815.1200300609, + "2842": 1822.5306820984, + "2843": 1829.7021048656, + "2844": 1836.6428352499, + "2845": 1843.36113153, + "2846": 1849.8649779363, + "2847": 1856.1620896638, + "2848": 1862.2599182669, + "2849": 1868.1656573742, + "2850": 1873.8862486644, + "2851": 1879.4283880515, + "2852": 1884.7985320318, + "2853": 1890.0029041493, + "2854": 1895.0475015415, + "2855": 1899.938101531, + "2856": 1904.680268232, + "2857": 1909.2793591447, + "2858": 1913.7405317128, + "2859": 1918.0687498245, + "2860": 1922.2687902369, + "2861": 1926.3452489092, + "2862": 1930.3025472308, + "2863": 1934.1449381319, + "2864": 1937.8765120682, + "2865": 1941.5012028713, + "2866": 1945.0227934573, + "2867": 1948.4449213908, + "2868": 1951.7710842976, + "2869": 1955.0046451262, + "2870": 1958.1488372541, + "2871": 1961.2067694393, + "2872": 1964.1814306162, + "2873": 1967.0756945371, + "2874": 1969.8923242598, + "2875": 1972.6339764827, + "2876": 1975.3032057309, + "2877": 1977.9024683935, + "2878": 1980.4341266167, + "2879": 1982.9004520553, + "2880": 1985.3036294847, + "2881": 1987.6457602782, + "2882": 1989.9288657523, + "2883": 1992.1548903838, + "2884": 1994.3257049029, + "2885": 1996.4431092645, + "2886": 1998.5088355035, + "2887": 2000.5245504763, + "2888": 2002.4918584931, + "2889": 2004.4123038445, + "2890": 2006.2873732252, + "2891": 2008.1184980604, + "2892": 2009.9070567367, + "2893": 2011.6543767411, + "2894": 2013.3617367134, + "2895": 2015.0303684122, + "2896": 2016.661458601, + "2897": 2018.2561508554, + "2898": 2019.8155472951, + "2899": 2021.3407102438, + "2900": 2022.8326638204, + "2901": 2024.2923954627, + "2902": 2025.7208573884, + "2903": 2027.1189679941, + "2904": 2028.4876131966, + "2905": 2029.8276477168, + "2906": 2031.1398963112, + "2907": 2032.4251549506, + "2908": 2033.6841919502, + "2909": 2034.9177490519, + "2910": 2036.1265424615, + "2911": 2037.3112638428, + "2912": 2038.4725812695, + "2913": 2039.6111401378, + "2914": 2040.7275640412, + "2915": 2041.8224556081, + "2916": 2042.8963973054, + "2917": 2043.9499522081, + "2918": 2044.9836647373, + "2919": 2045.9980613678, + "2920": 2046.993651306, + "2921": 2047.9709271403, + "2922": 2048.9303654647, + "2923": 2049.8724274764, + "2924": 2050.7975595493, + "2925": 2051.7061937841, + "2926": 2052.5987485356, + "2927": 2053.4756289192, + "2928": 2054.3372272957, + "2929": 2055.183923738, + "2930": 2056.0160864776, + "2931": 2056.8340723342, + "2932": 2057.6382271271, + "2933": 2058.4288860708, + "2934": 2059.2063741548, + "2935": 2059.9710065076, + "2936": 2060.7230887473, + "2937": 2061.4629173175, + "2938": 2062.1907798102, + "2939": 2062.9069552761, + "2940": 2063.6117145228, + "2941": 2064.3053204012, + "2942": 2064.9880280806, + "2943": 2065.6600853135, + "2944": 2066.32173269, + "2945": 2066.9732038822, + "2946": 2067.6147258796, + "2947": 2068.2465192151, + "2948": 2068.8687981826, + "2949": 2069.4817710462, + "2950": 2070.0856402418, + "2951": 2070.6806025705, + "2952": 2071.2668493853, + "2953": 2071.8445667706, + "2954": 2072.4139357148, + "2955": 2072.9751322767, + "2956": 2073.5283277459, + "2957": 2074.0736887967, + "2958": 2074.6113776368, + "2959": 2075.1415521508, + "2960": 2075.6643660376, + "2961": 2076.1799689437, + "2962": 2076.6885065909, + "2963": 2077.1901209003, + "2964": 2077.6849501107, + "2965": 2078.173128894, + "2966": 2078.6547884651, + "2967": 2079.1300566896, + "2968": 2079.5990581859, + "2969": 2080.0619144248, + "2970": 2080.5187438257, + "2971": 2080.9696618485, + "2972": 2081.4147810833, + "2973": 2081.8542113362, + "2974": 2082.2880597131, + "2975": 2082.7164306992, + "2976": 2083.1394262371, + "2977": 2083.5571458018, + "2978": 2083.9696864726, + "2979": 2084.3771430034, + "2980": 2084.7796078902, + "2981": 2085.1771714363, + "2982": 2085.5699218155, + "2983": 2085.9579451329, + "2984": 2086.3413254843, + "2985": 2086.7201450128, + "2986": 2087.094483964, + "2987": 2087.4644207397, + "2988": 2087.8300319491, + "2989": 2088.191392459, + "2990": 2088.5485754419, + "2991": 2088.9016524227, + "2992": 2089.2506933245, + "2993": 2089.5957665116, + "2994": 2089.9369388326, + "2995": 2090.2742756608, + "2996": 2090.6078409347, + "2997": 2090.937697196, + "2998": 2091.2639056269, + "2999": 2091.5865260867, + "3000": 0.0, + "3001": 0.0000107872, + "3002": 0.000045345, + "3003": 0.0000371051, + "3004": 0.0000363789, + "3005": 0.0000369858, + "3006": 0.0000365615, + "3007": 0.0000365716, + "3008": 0.000036374, + "3009": 0.0000362889, + "3010": 0.0000361465, + "3011": 0.0000360336, + "3012": 0.000035908, + "3013": 0.0000357894, + "3014": 0.0000356689, + "3015": 0.0000355503, + "3016": 0.0000354321, + "3017": 0.0000353147, + "3018": 0.0000351982, + "3019": 0.0000350824, + "3020": 0.0000349674, + "3021": 0.0000348531, + "3022": 0.0000347395, + "3023": 0.0000346268, + "3024": 0.0000345147, + "3025": 0.0000344033, + "3026": 0.0000342927, + "3027": 0.0000341828, + "3028": 0.0000340736, + "3029": 0.0000339651, + "3030": 0.0000338573, + "3031": 0.0000337501, + "3032": 0.0000336437, + "3033": 0.0000335379, + "3034": 0.0000334327, + "3035": 0.0000333283, + "3036": 0.0000332245, + "3037": 0.0000331213, + "3038": 0.0000330187, + "3039": 0.0000329168, + "3040": 0.0000328156, + "3041": 0.0000327149, + "3042": 0.0000326149, + "3043": 0.0000325154, + "3044": 0.0000324166, + "3045": 0.0000323184, + "3046": 0.0000322208, + "3047": 0.0000321237, + "3048": 0.0000320273, + "3049": 0.0000319314, + "3050": 0.0000318361, + "3051": 0.0000317413, + "3052": 0.0000316472, + "3053": 0.0000315535, + "3054": 0.0000314605, + "3055": 0.000031368, + "3056": 0.000031276, + "3057": 0.0000311845, + "3058": 0.0000310936, + "3059": 0.0000310032, + "3060": 0.0000309134, + "3061": 0.000030824, + "3062": 0.0000307352, + "3063": 0.0000306469, + "3064": 0.0000305591, + "3065": 0.0000304718, + "3066": 0.000030385, + "3067": 0.0000302987, + "3068": 0.0000302128, + "3069": 0.0000301275, + "3070": 0.0000300426, + "3071": 0.0000299582, + "3072": 0.0000298743, + "3073": 0.0000297909, + "3074": 0.0000297079, + "3075": 0.0000296254, + "3076": 0.0000295433, + "3077": 0.0000294617, + "3078": 0.0000293805, + "3079": 0.0000292998, + "3080": 0.0000292195, + "3081": 0.0000291397, + "3082": 0.0000290603, + "3083": 0.0000289813, + "3084": 0.0000289028, + "3085": 0.0000288247, + "3086": 0.0000096878, + "3087": -0.0000012615, + "3088": -0.0000020075, + "3089": -0.0000048812, + "3090": -0.0000069992, + "3091": -0.0000095871, + "3092": -0.0000118293, + "3093": -0.0000140722, + "3094": -0.0000161316, + "3095": -0.0000181017, + "3096": -0.0000199415, + "3097": -0.000021676, + "3098": -0.000023304, + "3099": -0.000024841, + "3100": -0.0000262834, + "3101": -0.0000276406, + "3102": -0.0000289146, + "3103": -0.0000301118, + "3104": -0.0000312359, + "3105": -0.0000322917, + "3106": -0.0000332829, + "3107": -0.0000342134, + "3108": -0.0000350868, + "3109": -0.0000359063, + "3110": -0.000036675, + "3111": -0.0000373958, + "3112": -0.0000380715, + "3113": -0.0000387044, + "3114": -0.000039297, + "3115": -0.0000398515, + "3116": -0.0000403699, + "3117": -0.0000408542, + "3118": -0.000041306, + "3119": -0.0000417272, + "3120": -0.0000421192, + "3121": -0.0000424836, + "3122": -0.0000428216, + "3123": -0.0000431345, + "3124": -0.0000434237, + "3125": -0.00004369, + "3126": -0.0000439347, + "3127": -0.0000441586, + "3128": -0.0000443627, + "3129": -0.0000445478, + "3130": -0.0000447147, + "3131": -0.0000448641, + "3132": -0.0000449967, + "3133": -0.0000451132, + "3134": -0.0000452141, + "3135": -0.0000453, + "3136": -0.0000453714, + "3137": -0.0000454287, + "3138": -0.0000454725, + "3139": -0.0000455031, + "3140": -0.000045521, + "3141": -0.0000455264, + "3142": -0.0000455197, + "3143": -0.0000455013, + "3144": -0.0000454714, + "3145": -0.0000454303, + "3146": -0.0000453782, + "3147": -0.0000453154, + "3148": -0.0000452422, + "3149": -0.0000451587, + "3150": -0.0000450651, + "3151": -0.0000449616, + "3152": -0.0000448485, + "3153": -0.0000447259, + "3154": -0.000044594, + "3155": -0.0000444529, + "3156": -0.0000443028, + "3157": -0.000044144, + "3158": -0.0000439765, + "3159": -0.0000438005, + "3160": -0.0000436163, + "3161": -0.0000434239, + "3162": -0.0000432236, + "3163": -0.0000430156, + "3164": -0.0000428, + "3165": -0.0000425771, + "3166": -0.000042347, + "3167": -0.00004211, + "3168": -0.0000418663, + "3169": -0.0000416162, + "3170": -0.0000413598, + "3171": -0.0000410975, + "3172": -0.0000408294, + "3173": -0.000040556, + "3174": -0.0000402774, + "3175": -0.0000399939, + "3176": -0.0000397059, + "3177": -0.0000394137, + "3178": -0.0000391176, + "3179": -0.0000388179, + "3180": -0.000038515, + "3181": -0.0000382092, + "3182": -0.0000379009, + "3183": -0.0000375903, + "3184": -0.000037278, + "3185": -0.0000369642, + "3186": -0.0000366494, + "3187": -0.0000363337, + "3188": -0.0000360178, + "3189": -0.0000357018, + "3190": -0.0000353862, + "3191": -0.0000350712, + "3192": -0.0000347573, + "3193": -0.0000344448, + "3194": -0.000034134, + "3195": -0.0000338252, + "3196": -0.0000335188, + "3197": -0.0000332149, + "3198": -0.000032914, + "3199": -0.0000326162, + "3200": -0.0000323219, + "3201": -0.0000320312, + "3202": -0.0000317444, + "3203": -0.0000314616, + "3204": -0.0000311831, + "3205": -0.0000309091, + "3206": -0.0000306396, + "3207": -0.0000303748, + "3208": -0.0000301149, + "3209": -0.00002986, + "3210": -0.00002961, + "3211": -0.0000293652, + "3212": -0.0000291255, + "3213": -0.000028891, + "3214": -0.0000286617, + "3215": -0.0000284377, + "3216": -0.0000282189, + "3217": -0.0000280053, + "3218": -0.0000277969, + "3219": -0.0000275937, + "3220": -0.0000273956, + "3221": -0.0000272026, + "3222": -0.0000270146, + "3223": -0.0000268315, + "3224": -0.0000266533, + "3225": -0.0000264799, + "3226": -0.0000263112, + "3227": -0.0000261471, + "3228": -0.0000259875, + "3229": -0.0000258323, + "3230": -0.0000256815, + "3231": -0.0000255348, + "3232": -0.0000253923, + "3233": -0.0000252537, + "3234": -0.0000251191, + "3235": -0.0000249882, + "3236": -0.000024861, + "3237": -0.0000247374, + "3238": -0.0000246172, + "3239": -0.0000245004, + "3240": -0.0000243868, + "3241": -0.0000242762, + "3242": -0.0000239873, + "3243": -0.0000225371, + "3244": -0.0000199665, + "3245": -0.000016921, + "3246": -0.0000137923, + "3247": -0.0000106343, + "3248": -0.0000076532, + "3249": -0.0000048434, + "3250": -0.0000024347, + "3251": 0.0000002708, + "3252": 0.000019411, + "3253": 0.0001776253, + "3254": 0.0007000809, + "3255": 0.001372217, + "3256": 0.0017831793, + "3257": 0.0019368632, + "3258": 0.0020463026, + "3259": 0.0021424257, + "3260": 0.0021760385, + "3261": 0.002175789, + "3262": 0.0021771323, + "3263": 0.0021712687, + "3264": 0.0021519834, + "3265": 0.0021291341, + "3266": 0.0021056676, + "3267": 0.0020784685, + "3268": 0.0020484413, + "3269": 0.0020175042, + "3270": 0.0019853543, + "3271": 0.0019517986, + "3272": 0.0019174123, + "3273": 0.0018824041, + "3274": 0.0018467484, + "3275": 0.0018106095, + "3276": 0.00177415, + "3277": 0.001737438, + "3278": 0.0017005599, + "3279": 0.0016636169, + "3280": 0.0016266848, + "3281": 0.0015898328, + "3282": 0.0015531316, + "3283": 0.001516644, + "3284": 0.0014804264, + "3285": 0.0014445322, + "3286": 0.0014090099, + "3287": 0.0013739033, + "3288": 0.0013392525, + "3289": 0.0013050934, + "3290": 0.0012714582, + "3291": 0.0012383753, + "3292": 0.0012058701, + "3293": 0.0011739642, + "3294": 0.0011426765, + "3295": 0.0011120228, + "3296": 0.0010820161, + "3297": 0.0010526669, + "3298": 0.0010239833, + "3299": 0.000995971, + "3300": 0.0009686336, + "3301": 0.0009419729, + "3302": 0.0009159888, + "3303": 0.0008906793, + "3304": 0.0008660414, + "3305": 0.0008420701, + "3306": 0.0008187595, + "3307": 0.0007961024, + "3308": 0.0007740908, + "3309": 0.0007527154, + "3310": 0.0007319665, + "3311": 0.0007118333, + "3312": 0.0006923045, + "3313": 0.0006733685, + "3314": 0.0006550129, + "3315": 0.0006372251, + "3316": 0.0006199922, + "3317": 0.000603301, + "3318": 0.000587138, + "3319": 0.00057149, + "3320": 0.0005563432, + "3321": 0.0005416841, + "3322": 0.0005274991, + "3323": 0.0005137748, + "3324": 0.0005004976, + "3325": 0.0004876543, + "3326": 0.0004752318, + "3327": 0.0004632171, + "3328": 0.0004515973, + "3329": 0.00044036, + "3330": 0.0004294928, + "3331": 0.0004189836, + "3332": 0.0004088207, + "3333": 0.0003989924, + "3334": 0.0003894875, + "3335": 0.000380295, + "3336": 0.0003714042, + "3337": 0.0003628047, + "3338": 0.0003544864, + "3339": 0.0003464393, + "3340": 0.0003386541, + "3341": 0.0003311214, + "3342": 0.0003238323, + "3343": 0.0003167781, + "3344": 0.0003099504, + "3345": 0.000303341, + "3346": 0.0002969422, + "3347": 0.0002907464, + "3348": 0.0002847462, + "3349": 0.0002789345, + "3350": 0.0002733046, + "3351": 0.0002678499, + "3352": 0.000262564, + "3353": 0.0002574408, + "3354": 0.0002524745, + "3355": 0.0002476593, + "3356": 0.0002429898, + "3357": 0.0002384608, + "3358": 0.0002340672, + "3359": 0.0002298041, + "3360": 0.0002256668, + "3361": 0.0002216509, + "3362": 0.000217752, + "3363": 0.0002139659, + "3364": 0.0002102886, + "3365": 0.0002067163, + "3366": 0.0002032452, + "3367": 0.0001998719, + "3368": 0.0001965927, + "3369": 0.0001934045, + "3370": 0.0001903042, + "3371": 0.0001872885, + "3372": 0.0001843547, + "3373": 0.0001814998, + "3374": 0.0001787212, + "3375": 0.0001760164, + "3376": 0.0001733826, + "3377": 0.0001708177, + "3378": 0.0001683192, + "3379": 0.0001658849, + "3380": 0.0001635127, + "3381": 0.0001612005, + "3382": 0.0001589464, + "3383": 0.0001567484, + "3384": 0.0001546046, + "3385": 0.0001525134, + "3386": 0.0001504731, + "3387": 0.0001484819, + "3388": 0.0001465384, + "3389": 0.0001446409, + "3390": 0.0001427881, + "3391": 0.0001409786, + "3392": 0.0001392109, + "3393": 0.0001374839, + "3394": 0.0001357961, + "3395": 0.0001341465, + "3396": 0.0001325339, + "3397": 0.0001309571, + "3398": 0.000129415, + "3399": 0.0001279067, + "3400": 0.000126431, + "3401": 0.0001249871, + "3402": 0.000123574, + "3403": 0.0001221908, + "3404": 0.0001208367, + "3405": 0.0001195107, + "3406": 0.0001182121, + "3407": 0.0001169401, + "3408": 0.000115694, + "3409": 0.000114473, + "3410": 0.0001132764, + "3411": 0.0001121035, + "3412": 0.0001109537, + "3413": 0.0001098263, + "3414": 0.0001087208, + "3415": 0.0001076365, + "3416": 0.0001065729, + "3417": 0.0001055293, + "3418": 0.0001045054, + "3419": 0.0001035005, + "3420": 0.0001025142, + "3421": 0.0001015459, + "3422": 0.0001005953, + "3423": 0.0000996618, + "3424": 0.000098745, + "3425": 0.0000978445, + "3426": 0.0000969598, + "3427": 0.0000960907, + "3428": 0.0000952366, + "3429": 0.0000943973, + "3430": 0.0000935723, + "3431": 0.0000927613, + "3432": 0.0000919639, + "3433": 0.0000911799, + "3434": 0.0000904089, + "3435": 0.0000896506, + "3436": 0.0000889047, + "3437": 0.0000881709, + "3438": 0.000087449, + "3439": 0.0000867386, + "3440": 0.0000860394, + "3441": 0.0000853513, + "3442": 0.000084674, + "3443": 0.0000840072, + "3444": 0.0000833507, + "3445": 0.0000827042, + "3446": 0.0000820676, + "3447": 0.0000814406, + "3448": 0.000080823, + "3449": 0.0000802147, + "3450": 0.0000796153, + "3451": 0.0000790247, + "3452": 0.0000784428, + "3453": 0.0000778693, + "3454": 0.000077304, + "3455": 0.0000767469, + "3456": 0.0000761976, + "3457": 0.0000756561, + "3458": 0.0000751222, + "3459": 0.0000745957, + "3460": 0.0000740766, + "3461": 0.0000735645, + "3462": 0.0000730595, + "3463": 0.0000725613, + "3464": 0.0000720698, + "3465": 0.0000715849, + "3466": 0.0000711065, + "3467": 0.0000706344, + "3468": 0.0000701685, + "3469": 0.0000697086, + "3470": 0.0000692548, + "3471": 0.0000688068, + "3472": 0.0000683645, + "3473": 0.0000679279, + "3474": 0.0000674968, + "3475": 0.0000670712, + "3476": 0.0000666508, + "3477": 0.0000662357, + "3478": 0.0000658257, + "3479": 0.0000654208, + "3480": 0.0000650208, + "3481": 0.0000646257, + "3482": 0.0000642353, + "3483": 0.0000638496, + "3484": 0.0000634685, + "3485": 0.000063092, + "3486": 0.0000627198, + "3487": 0.0000623521, + "3488": 0.0000619886, + "3489": 0.0000616293, + "3490": 0.0000612742, + "3491": 0.0000609232, + "3492": 0.0000605761, + "3493": 0.000060233, + "3494": 0.0000598938, + "3495": 0.0000595583, + "3496": 0.0000592266, + "3497": 0.0000588986, + "3498": 0.0000585742, + "3499": 0.0000582534, + "3500": 0.0, + "3501": 4.4863334228, + "3502": 8.6708954831, + "3503": -3.1420301032, + "3504": 12.559072217, + "3505": 6.1901235016, + "3506": 13.705273333, + "3507": 13.211132976, + "3508": 17.0949982895, + "3509": 18.658517271, + "3510": 21.3869533346, + "3511": 23.5311809364, + "3512": 25.9389749734, + "3513": 28.2141703056, + "3514": 30.5346682931, + "3515": 32.8245897213, + "3516": 35.1142845557, + "3517": 37.3929774896, + "3518": 39.663826318, + "3519": 41.9265480126, + "3520": 44.1807630453, + "3521": 46.4270468803, + "3522": 48.6650558236, + "3523": 50.8951126567, + "3524": 53.1171112062, + "3525": 55.3312005967, + "3526": 57.5373839776, + "3527": 59.7357434972, + "3528": 61.9263185565, + "3529": 64.1091697937, + "3530": 66.2843463419, + "3531": 68.4519021971, + "3532": 70.6118882433, + "3533": 72.7643560607, + "3534": 74.909356168, + "3535": 77.0469388248, + "3536": 79.1771536913, + "3537": 81.3000499796, + "3538": 83.415676403, + "3539": 85.5240812028, + "3540": 87.6253121482, + "3541": 89.7194165433, + "3542": 91.8064412339, + "3543": 93.8864326121, + "3544": 95.9594366229, + "3545": 98.0254987699, + "3546": 100.0846641202, + "3547": 102.1369773106, + "3548": 104.1824825526, + "3549": 106.221223638, + "3550": 108.2532439438, + "3551": 110.2785864377, + "3552": 112.2972936831, + "3553": 114.3094078439, + "3554": 116.3149706897, + "3555": 118.3140236005, + "3556": 120.3066075713, + "3557": 122.2927632174, + "3558": 124.2725307784, + "3559": 126.2459501231, + "3560": 128.2130607538, + "3561": 130.173901811, + "3562": 132.1285120774, + "3563": 134.0769299827, + "3564": 136.0191936074, + "3565": 137.9553406869, + "3566": 139.8854086161, + "3567": 141.8094344531, + "3568": 143.7274549232, + "3569": 145.6395064228, + "3570": 147.5456250237, + "3571": 149.4458464762, + "3572": 151.3402062134, + "3573": 153.2287393548, + "3574": 155.1114807098, + "3575": 156.9884647815, + "3576": 158.8597257701, + "3577": 160.7252975764, + "3578": 162.5852138055, + "3579": 164.4395077696, + "3580": 166.2882124923, + "3581": 168.1313607108, + "3582": 169.9689848801, + "3583": 171.8011171757, + "3584": 173.6277894968, + "3585": 175.4490334697, + "3586": 738.4653086254, + "3587": 1985.2198728104, + "3588": 3599.2063598716, + "3589": 5355.7951122677, + "3590": 7119.8510806787, + "3591": 8828.7810323793, + "3592": 10459.8668018829, + "3593": 12003.8373216072, + "3594": 13461.9883063178, + "3595": 14835.9290661844, + "3596": 16129.236168748, + "3597": 17343.4244025262, + "3598": 18485.6201276032, + "3599": 19562.5939462694, + "3600": 20573.9871869768, + "3601": 21525.3143242595, + "3602": 22418.5066717218, + "3603": 23257.7921592382, + "3604": 24045.8418633484, + "3605": 24785.9586092918, + "3606": 25480.8161072798, + "3607": 26133.1480235532, + "3608": 26745.3913565313, + "3609": 27319.8843014039, + "3610": 27858.7808507674, + "3611": 28364.1075861496, + "3612": 28837.7503309577, + "3613": 29281.4737761509, + "3614": 29696.9248327471, + "3615": 30085.6426630553, + "3616": 30449.0649135019, + "3617": 30788.5348761235, + "3618": 31105.3075457594, + "3619": 31400.5554979694, + "3620": 31675.3742411472, + "3621": 31930.7872353875, + "3622": 32167.7505399131, + "3623": 32387.1571468645, + "3624": 32589.8410140454, + "3625": 32776.5808271745, + "3626": 32948.1035104625, + "3627": 33105.0875077089, + "3628": 33248.1658516213, + "3629": 33377.9290391623, + "3630": 33494.9277284091, + "3631": 33599.675271681, + "3632": 33692.6500982233, + "3633": 33774.2979588536, + "3634": 33845.0340439117, + "3635": 33905.2449850241, + "3636": 33955.2907503458, + "3637": 33995.506442215, + "3638": 34026.2040054454, + "3639": 34047.6738538445, + "3640": 34060.1864219388, + "3641": 34063.993648316, + "3642": 34059.3303964608, + "3643": 34046.4158184451, + "3644": 34025.45466634, + "3645": 33996.6385557454, + "3646": 33960.1471853653, + "3647": 33916.1495161086, + "3648": 33864.804912745, + "3649": 33806.2642507084, + "3650": 33740.6709901991, + "3651": 33668.1622193027, + "3652": 33588.8696674066, + "3653": 33502.9206897635, + "3654": 33410.4392236189, + "3655": 33311.5467158891, + "3656": 33206.3630219567, + "3657": 33095.0072747276, + "3658": 32977.5987226937, + "3659": 32854.2575353486, + "3660": 32725.1055739337, + "3661": 32590.2671251423, + "3662": 32449.8695950894, + "3663": 32304.0441605733, + "3664": 32152.926374413, + "3665": 31996.656721454, + "3666": 31835.3811217011, + "3667": 31669.2513769623, + "3668": 31498.425557385, + "3669": 31323.0683243383, + "3670": 31143.3511862434, + "3671": 30959.4526841931, + "3672": 30771.5585045189, + "3673": 30579.8615158747, + "3674": 30384.5617289009, + "3675": 30185.8661771097, + "3676": 29983.9887182915, + "3677": 29779.1497564687, + "3678": 29571.5758852134, + "3679": 29361.4994539859, + "3680": 29149.1580600266, + "3681": 28934.7939692301, + "3682": 28718.6534703295, + "3683": 28500.9861676024, + "3684": 28282.0442181607, + "3685": 28062.0815206788, + "3686": 27841.3528631372, + "3687": 27620.1130377911, + "3688": 27398.6159320896, + "3689": 27177.1136046772, + "3690": 26955.855355869, + "3691": 26735.086802114, + "3692": 26515.0489639343, + "3693": 26295.9773766479, + "3694": 26078.101232858, + "3695": 25861.6425652214, + "3696": 25646.8154774056, + "3697": 25433.8254304221, + "3698": 25222.868590693, + "3699": 25014.1312452966, + "3700": 24807.7892888495, + "3701": 24604.0077854627, + "3702": 24402.9406081493, + "3703": 24204.7301570146, + "3704": 24009.507156516, + "3705": 23817.3905310902, + "3706": 23628.4873574952, + "3707": 23442.8928913502, + "3708": 23260.6906645656, + "3709": 23081.9526496656, + "3710": 22906.7394864149, + "3711": 22735.1007656752, + "3712": 22567.0753650443, + "3713": 22402.6918305594, + "3714": 22241.9687985806, + "3715": 22084.9154519063, + "3716": 21931.5320041966, + "3717": 21781.8102068865, + "3718": 21635.7338729589, + "3719": 21493.2794121864, + "3720": 21354.416372758, + "3721": 21219.1079845412, + "3722": 21087.3116996121, + "3723": 20958.9797260759, + "3724": 20834.0595516111, + "3725": 20712.4944535705, + "3726": 20594.2239928612, + "3727": 20479.1844891635, + "3728": 20367.3094753002, + "3729": 20258.530128639, + "3730": 20152.7756771207, + "3731": 20049.9737764828, + "3732": 19950.0508527132, + "3733": 19852.9323981183, + "3734": 19758.5431973645, + "3735": 19666.8074351263, + "3736": 19577.6485886269, + "3737": 19490.9889239635, + "3738": 19406.7483123864, + "3739": 19324.8421542033, + "3740": 19245.1791926502, + "3741": 19167.6630687576, + "3742": 18965.2595805738, + "3743": 17949.233341298, + "3744": 16147.78642666, + "3745": 14013.1476405589, + "3746": 11819.8846396598, + "3747": 9605.237412861, + "3748": 7508.1938004528, + "3749": 5490.7338814074, + "3750": 3599.6964338407, + "3751": 1807.1352412835, + "3752": 138.0229339708, + "3753": -1336.7784369368, + "3754": -2504.7039275435, + "3755": -3531.6899894015, + "3756": -4249.8678283973, + "3757": -4600.2351189664, + "3758": -4774.4608638423, + "3759": -4907.8555904607, + "3760": -4983.0502087131, + "3761": -5001.1950097193, + "3762": -5002.075137417, + "3763": -4997.0829760229, + "3764": -4978.0142506029, + "3765": -4949.2897923129, + "3766": -4917.755037206, + "3767": -4882.6975506437, + "3768": -4843.3742375957, + "3769": -4801.6201217713, + "3770": -4758.1350569692, + "3771": -4712.6634221308, + "3772": -4665.5437361233, + "3773": -4617.2000566269, + "3774": -4567.7164550917, + "3775": -4517.2068240844, + "3776": -4465.8690540762, + "3777": -4413.8305433281, + "3778": -4361.1896190259, + "3779": -4308.0639407234, + "3780": -4254.559217044, + "3781": -4200.7651187262, + "3782": -4146.7700667198, + "3783": -4092.6578626386, + "3784": -4038.5044395446, + "3785": -3984.3810763339, + "3786": -3930.3547246931, + "3787": -3876.4871621825, + "3788": -3822.8356383142, + "3789": -3769.4532459725, + "3790": -3716.3888716732, + "3791": -3663.6874187243, + "3792": -3611.3900412918, + "3793": -3559.5342748795, + "3794": -3508.1542072577, + "3795": -3457.2806606285, + "3796": -3406.9413511039, + "3797": -3357.1610511287, + "3798": -3307.9617527754, + "3799": -3259.3628240495, + "3800": -3211.3811620893, + "3801": -3164.0313431112, + "3802": -3117.3257673637, + "3803": -3071.2747994811, + "3804": -3025.8869040953, + "3805": -2981.1687762842, + "3806": -2937.1254668198, + "3807": -2893.7605021411, + "3808": -2851.0759989606, + "3809": -2809.072773504, + "3810": -2767.7504454008, + "3811": -2727.1075362697, + "3812": -2687.1415630724, + "3813": -2647.8491263321, + "3814": -2609.2259933329, + "3815": -2571.2671764314, + "3816": -2533.9670066274, + "3817": -2497.3192025503, + "3818": -2461.3169350278, + "3819": -2425.9528874097, + "3820": -2391.2193118227, + "3821": -2357.1080815386, + "3822": -2323.6107396345, + "3823": -2290.718544129, + "3824": -2258.4225097725, + "3825": -2226.7134466695, + "3826": -2195.5819959076, + "3827": -2165.0186623635, + "3828": -2135.0138448504, + "3829": -2105.5578637689, + "3830": -2076.6409864143, + "3831": -2048.2534500905, + "3832": -2020.3854831726, + "3833": -1993.0273242545, + "3834": -1966.1692395115, + "3835": -1939.801538402, + "3836": -1913.9145878244, + "3837": -1888.498824842, + "3838": -1863.5447680788, + "3839": -1839.0430278853, + "3840": -1814.9843153691, + "3841": -1791.3594503744, + "3842": -1768.1593684946, + "3843": -1745.3751271941, + "3844": -1722.9979111092, + "3845": -1701.0190365973, + "3846": -1679.4299555949, + "3847": -1658.2222588425, + "3848": -1637.3876785312, + "3849": -1616.9180904195, + "3850": -1596.8055154682, + "3851": -1577.0421210352, + "3852": -1557.6202216711, + "3853": -1538.5322795505, + "3854": -1519.7709045761, + "3855": -1501.3288541839, + "3856": -1483.1990328802, + "3857": -1465.3744915369, + "3858": -1447.8484264701, + "3859": -1430.6141783232, + "3860": -1413.665230777, + "3861": -1396.9952091058, + "3862": -1380.5978785962, + "3863": -1364.4671428452, + "3864": -1348.5970419533, + "3865": -1332.9817506252, + "3866": -1317.6155761907, + "3867": -1302.4929565585, + "3868": -1287.6084581108, + "3869": -1272.9567735515, + "3870": -1258.532719714, + "3871": -1244.331235338, + "3872": -1230.3473788228, + "3873": -1216.5763259621, + "3874": -1203.0133676683, + "3875": -1189.6539076907, + "3876": -1176.4934603322, + "3877": -1163.5276481706, + "3878": -1150.7521997862, + "3879": -1138.1629475019, + "3880": -1125.7558251368, + "3881": -1113.5268657781, + "3882": -1101.4721995729, + "3883": -1089.588051542, + "3884": -1077.8707394195, + "3885": -1066.3166715175, + "3886": -1054.9223446198, + "3887": -1043.6843419051, + "3888": -1032.5993309006, + "3889": -1021.6640614675, + "3890": -1010.8753638192, + "3891": -1000.2301465737, + "3892": -989.725394839, + "3893": -979.358168334, + "3894": -969.1255995439, + "3895": -959.0248919114, + "3896": -949.0533180631, + "3897": -939.2082180716, + "3898": -929.4869977531, + "3899": -919.887127001, + "3900": -910.4061381547, + "3901": -901.0416244042, + "3902": -891.7912382291, + "3903": -882.6526898733, + "3904": -873.6237458538, + "3905": -864.7022275041, + "3906": -855.8860095512, + "3907": -847.1730187261, + "3908": -838.5612324079, + "3909": -830.0486772994, + "3910": -821.6334281362, + "3911": -813.313606426, + "3912": -805.0873792204, + "3913": -796.9529579162, + "3914": -788.9085970875, + "3915": -780.9525933468, + "3916": -773.0832842353, + "3917": -765.2990471421, + "3918": -757.59829825, + "3919": -749.9794915102, + "3920": -742.4411176424, + "3921": -734.9817031617, + "3922": -727.5998094314, + "3923": -720.2940317399, + "3924": -713.0629984031, + "3925": -705.9053698901, + "3926": -698.8198379726, + "3927": -691.8051248971, + "3928": -684.8599825793, + "3929": -677.9831918201, + "3930": -671.1735615437, + "3931": -664.4299280552, + "3932": -657.7511543195, + "3933": -651.1361292592, + "3934": -644.5837670719, + "3935": -638.0930065668, + "3936": -631.6628105186, + "3937": -625.2921650397, + "3938": -618.9800789699, + "3939": -612.7255832825, + "3940": -606.5277305073, + "3941": -600.3855941693, + "3942": -594.2982682425, + "3943": -588.2648666204, + "3944": -582.2845225989, + "3945": -576.356388376, + "3946": -570.4796345635, + "3947": -564.6534497133, + "3948": -558.8770398564, + "3949": -553.1496280554, + "3950": -547.4704539685, + "3951": -541.8387734263, + "3952": -536.2538580204, + "3953": -530.7149947031, + "3954": -525.2214853982, + "3955": -519.7726466232, + "3956": -514.3678091214, + "3957": -509.0063175044, + "3958": -503.6875299048, + "3959": -498.4108176381, + "3960": -493.1755648742, + "3961": -487.981168318, + "3962": -482.827036899, + "3963": -477.7125914689, + "3964": -472.6372645084, + "3965": -467.6004998413, + "3966": -462.601752357, + "3967": -457.6404877404, + "3968": -452.7161822092, + "3969": -447.8283222586, + "3970": -442.9764044128, + "3971": -438.1599349833, + "3972": -433.3784298341, + "3973": -428.6314141529, + "3974": -423.9184222285, + "3975": -419.2389972351, + "3976": -414.592691021, + "3977": -409.9790639043, + "3978": -405.3976844736, + "3979": -400.848129394, + "3980": -396.3299832183, + "3981": -391.8428382038, + "3982": -387.3862941332, + "3983": -382.9599581408, + "3984": -378.5634445433, + "3985": -374.1963746752, + "3986": -369.8583767279, + "3987": -365.5490855939, + "3988": -361.268142715, + "3989": -357.0151959336, + "3990": -352.7898993493, + "3991": -348.591913178, + "3992": -344.4209036156, + "3993": -340.2765427048, + "3994": -336.1585082052, + "3995": -332.0664834674, + "3996": -328.0001573097, + "3997": -323.9592238983, + "3998": -319.9433826307, + "3999": -315.9523380219, + "4000": 0.0, + "4001": -0.0000029953, + "4002": -0.0000014967, + "4003": -0.0000022475, + "4004": -0.0000018706, + "4005": -0.0000020588, + "4006": -0.0000019641, + "4007": -0.000002011, + "4008": -0.000001987, + "4009": -0.0000019984, + "4010": -0.0000019922, + "4011": -0.0000019948, + "4012": -0.000001993, + "4013": -0.0000019934, + "4014": -0.0000019926, + "4015": -0.0000019925, + "4016": -0.000001992, + "4017": -0.0000019917, + "4018": -0.0000019914, + "4019": -0.0000019911, + "4020": -0.0000019907, + "4021": -0.0000019904, + "4022": -0.00000199, + "4023": -0.0000019897, + "4024": -0.0000019894, + "4025": -0.000001989, + "4026": -0.0000019887, + "4027": -0.0000019884, + "4028": -0.0000019881, + "4029": -0.0000019877, + "4030": -0.0000019874, + "4031": -0.0000019871, + "4032": -0.0000019868, + "4033": -0.0000019864, + "4034": -0.0000019861, + "4035": -0.0000019858, + "4036": -0.0000019855, + "4037": -0.0000019852, + "4038": -0.0000019848, + "4039": -0.0000019845, + "4040": -0.0000019842, + "4041": -0.0000019839, + "4042": -0.0000019836, + "4043": -0.0000019833, + "4044": -0.000001983, + "4045": -0.0000019826, + "4046": -0.0000019823, + "4047": -0.000001982, + "4048": -0.0000019817, + "4049": -0.0000019814, + "4050": -0.0000019811, + "4051": -0.0000019808, + "4052": -0.0000019805, + "4053": -0.0000019802, + "4054": -0.0000019799, + "4055": -0.0000019796, + "4056": -0.0000019793, + "4057": -0.000001979, + "4058": -0.0000019787, + "4059": -0.0000019784, + "4060": -0.0000019781, + "4061": -0.0000019778, + "4062": -0.0000019775, + "4063": -0.0000019772, + "4064": -0.000001977, + "4065": -0.0000019767, + "4066": -0.0000019764, + "4067": -0.0000019761, + "4068": -0.0000019758, + "4069": -0.0000019755, + "4070": -0.0000019752, + "4071": -0.0000019749, + "4072": -0.0000019747, + "4073": -0.0000019744, + "4074": -0.0000019741, + "4075": -0.0000019738, + "4076": -0.0000019735, + "4077": -0.0000019733, + "4078": -0.000001973, + "4079": -0.0000019727, + "4080": -0.0000019724, + "4081": -0.0000019721, + "4082": -0.0000019719, + "4083": -0.0000019716, + "4084": -0.0000019713, + "4085": -0.000001971, + "4086": -0.0000018867, + "4087": -0.0000016999, + "4088": -0.0000014581, + "4089": -0.0000011951, + "4090": -0.0000009313, + "4091": -0.0000006777, + "4092": -0.0000004439, + "4093": -0.000000242, + "4094": -0.0000000121, + "4095": 0.0000010123, + "4096": 0.0000074544, + "4097": 0.0000331126, + "4098": 0.0000858861, + "4099": 0.0001533054, + "4100": 0.0002265053, + "4101": 0.0003008609, + "4102": 0.000374097, + "4103": 0.0004450863, + "4104": 0.0005132386, + "4105": 0.0005782893, + "4106": 0.0006401274, + "4107": 0.0006987482, + "4108": 0.0007541997, + "4109": 0.0008065664, + "4110": 0.0008559509, + "4111": 0.0009024673, + "4112": 0.000946234, + "4113": 0.0009873708, + "4114": 0.0010259963, + "4115": 0.001062226, + "4116": 0.0010961718, + "4117": 0.0011279413, + "4118": 0.001157637, + "4119": 0.0011853566, + "4120": 0.001211193, + "4121": 0.0012352339, + "4122": 0.0012575622, + "4123": 0.0012782562, + "4124": 0.0012973894, + "4125": 0.0013150313, + "4126": 0.0013312468, + "4127": 0.0013460971, + "4128": 0.0013596395, + "4129": 0.0013719278, + "4130": 0.0013830122, + "4131": 0.0013929398, + "4132": 0.0014017547, + "4133": 0.001409498, + "4134": 0.0014162082, + "4135": 0.0014219213, + "4136": 0.0014266707, + "4137": 0.0014304878, + "4138": 0.0014334018, + "4139": 0.00143544, + "4140": 0.001436628, + "4141": 0.0014369894, + "4142": 0.0014365467, + "4143": 0.0014353206, + "4144": 0.0014333307, + "4145": 0.0014305953, + "4146": 0.0014271316, + "4147": 0.0014229561, + "4148": 0.0014180841, + "4149": 0.0014125303, + "4150": 0.0014063087, + "4151": 0.0013994329, + "4152": 0.0013919157, + "4153": 0.0013837698, + "4154": 0.0013750076, + "4155": 0.0013656411, + "4156": 0.0013556825, + "4157": 0.0013451437, + "4158": 0.0013340368, + "4159": 0.001322374, + "4160": 0.0013101677, + "4161": 0.0012974305, + "4162": 0.0012841755, + "4163": 0.0012704161, + "4164": 0.0012561661, + "4165": 0.0012414399, + "4166": 0.0012262524, + "4167": 0.0012106192, + "4168": 0.0011945563, + "4169": 0.0011780806, + "4170": 0.0011612097, + "4171": 0.0011439616, + "4172": 0.0011263553, + "4173": 0.0011084103, + "4174": 0.0010901471, + "4175": 0.0010715864, + "4176": 0.0010527501, + "4177": 0.0010336603, + "4178": 0.00101434, + "4179": 0.0009948125, + "4180": 0.0009751016, + "4181": 0.0009552318, + "4182": 0.0009352278, + "4183": 0.0009151143, + "4184": 0.0008949168, + "4185": 0.0008746604, + "4186": 0.0008543706, + "4187": 0.0008340725, + "4188": 0.0008137915, + "4189": 0.0007935523, + "4190": 0.0007733796, + "4191": 0.0007532976, + "4192": 0.0007333298, + "4193": 0.0007134994, + "4194": 0.0006938288, + "4195": 0.0006743394, + "4196": 0.0006550521, + "4197": 0.0006359866, + "4198": 0.0006171619, + "4199": 0.0005985956, + "4200": 0.0005803046, + "4201": 0.0005623044, + "4202": 0.0005446094, + "4203": 0.0005272329, + "4204": 0.0005101868, + "4205": 0.000493482, + "4206": 0.0004771281, + "4207": 0.0004611333, + "4208": 0.000445505, + "4209": 0.0004302489, + "4210": 0.00041537, + "4211": 0.0004008719, + "4212": 0.0003867572, + "4213": 0.0003730275, + "4214": 0.0003596832, + "4215": 0.0003467241, + "4216": 0.0003341487, + "4217": 0.0003219549, + "4218": 0.0003101397, + "4219": 0.0002986994, + "4220": 0.0002876296, + "4221": 0.0002769253, + "4222": 0.0002665809, + "4223": 0.0002565903, + "4224": 0.000246947, + "4225": 0.000237644, + "4226": 0.0002286739, + "4227": 0.0002200293, + "4228": 0.0002117021, + "4229": 0.0002036844, + "4230": 0.0001959678, + "4231": 0.0001885441, + "4232": 0.0001814047, + "4233": 0.0001745411, + "4234": 0.0001679449, + "4235": 0.0001616074, + "4236": 0.00015552, + "4237": 0.0001496743, + "4238": 0.0001440614, + "4239": 0.0001386724, + "4240": 0.0001334982, + "4241": 0.0001285294, + "4242": 0.0001158087, + "4243": 0.0000583052, + "4244": 0.0000008123, + "4245": 0.0000014237, + "4246": -0.0000009589, + "4247": -0.0000002139, + "4248": -0.000001048, + "4249": -0.0000010875, + "4250": -0.0000015018, + "4251": -0.0000017048, + "4252": -0.0000019876, + "4253": -0.0000021921, + "4254": -0.0000023753, + "4255": -0.0000025251, + "4256": -0.0000026347, + "4257": -0.0000026862, + "4258": -0.0000027128, + "4259": -0.0000027325, + "4260": -0.0000027439, + "4261": -0.0000027466, + "4262": -0.0000027467, + "4263": -0.000002746, + "4264": -0.0000027431, + "4265": -0.0000027388, + "4266": -0.0000027341, + "4267": -0.0000027288, + "4268": -0.0000027229, + "4269": -0.0000027167, + "4270": -0.0000027102, + "4271": -0.0000027034, + "4272": -0.0000026963, + "4273": -0.000002689, + "4274": -0.0000026816, + "4275": -0.0000026741, + "4276": -0.0000026664, + "4277": -0.0000026586, + "4278": -0.0000026507, + "4279": -0.0000026427, + "4280": -0.0000026347, + "4281": -0.0000026267, + "4282": -0.0000026186, + "4283": -0.0000026105, + "4284": -0.0000026024, + "4285": -0.0000025942, + "4286": -0.0000025862, + "4287": -0.0000025781, + "4288": -0.00000257, + "4289": -0.000002562, + "4290": -0.0000025541, + "4291": -0.0000025462, + "4292": -0.0000025384, + "4293": -0.0000025306, + "4294": -0.0000025229, + "4295": -0.0000025153, + "4296": -0.0000025077, + "4297": -0.0000025003, + "4298": -0.0000024929, + "4299": -0.0000024856, + "4300": -0.0000024784, + "4301": -0.0000024713, + "4302": -0.0000024643, + "4303": -0.0000024574, + "4304": -0.0000024506, + "4305": -0.000002444, + "4306": -0.0000024374, + "4307": -0.0000024309, + "4308": -0.0000024245, + "4309": -0.0000024182, + "4310": -0.000002412, + "4311": -0.0000024059, + "4312": -0.0000023999, + "4313": -0.000002394, + "4314": -0.0000023882, + "4315": -0.0000023825, + "4316": -0.000002377, + "4317": -0.0000023715, + "4318": -0.0000023661, + "4319": -0.0000023608, + "4320": -0.0000023556, + "4321": -0.0000023505, + "4322": -0.0000023454, + "4323": -0.0000023405, + "4324": -0.0000023357, + "4325": -0.0000023309, + "4326": -0.0000023263, + "4327": -0.0000023217, + "4328": -0.0000023172, + "4329": -0.0000023128, + "4330": -0.0000023084, + "4331": -0.0000023042, + "4332": -0.0000023, + "4333": -0.0000022959, + "4334": -0.0000022919, + "4335": -0.0000022879, + "4336": -0.0000022841, + "4337": -0.0000022803, + "4338": -0.0000022765, + "4339": -0.0000022728, + "4340": -0.0000022692, + "4341": -0.0000022657, + "4342": -0.0000022622, + "4343": -0.0000022588, + "4344": -0.0000022555, + "4345": -0.0000022522, + "4346": -0.0000022489, + "4347": -0.0000022458, + "4348": -0.0000022426, + "4349": -0.0000022396, + "4350": -0.0000022366, + "4351": -0.0000022336, + "4352": -0.0000022307, + "4353": -0.0000022278, + "4354": -0.000002225, + "4355": -0.0000022223, + "4356": -0.0000022195, + "4357": -0.0000022169, + "4358": -0.0000022142, + "4359": -0.0000022117, + "4360": -0.0000022091, + "4361": -0.0000022066, + "4362": -0.0000022042, + "4363": -0.0000022017, + "4364": -0.0000021994, + "4365": -0.000002197, + "4366": -0.0000021947, + "4367": -0.0000021925, + "4368": -0.0000021902, + "4369": -0.000002188, + "4370": -0.0000021859, + "4371": -0.0000021838, + "4372": -0.0000021817, + "4373": -0.0000021796, + "4374": -0.0000021776, + "4375": -0.0000021756, + "4376": -0.0000021736, + "4377": -0.0000021716, + "4378": -0.0000021697, + "4379": -0.0000021678, + "4380": -0.000002166, + "4381": -0.0000021642, + "4382": -0.0000021623, + "4383": -0.0000021606, + "4384": -0.0000021588, + "4385": -0.0000021571, + "4386": -0.0000021554, + "4387": -0.0000021537, + "4388": -0.000002152, + "4389": -0.0000021504, + "4390": -0.0000021488, + "4391": -0.0000021472, + "4392": -0.0000021456, + "4393": -0.0000021441, + "4394": -0.0000021425, + "4395": -0.000002141, + "4396": -0.0000021395, + "4397": -0.000002138, + "4398": -0.0000021366, + "4399": -0.0000021351, + "4400": -0.0000021337, + "4401": -0.0000021323, + "4402": -0.0000021309, + "4403": -0.0000021296, + "4404": -0.0000021282, + "4405": -0.0000021269, + "4406": -0.0000021256, + "4407": -0.0000021243, + "4408": -0.000002123, + "4409": -0.0000021217, + "4410": -0.0000021204, + "4411": -0.0000021192, + "4412": -0.0000021179, + "4413": -0.0000021167, + "4414": -0.0000021155, + "4415": -0.0000021143, + "4416": -0.0000021132, + "4417": -0.000002112, + "4418": -0.0000021108, + "4419": -0.0000021097, + "4420": -0.0000021086, + "4421": -0.0000021074, + "4422": -0.0000021063, + "4423": -0.0000021052, + "4424": -0.0000021042, + "4425": -0.0000021031, + "4426": -0.000002102, + "4427": -0.000002101, + "4428": -0.0000020999, + "4429": -0.0000020989, + "4430": -0.0000020979, + "4431": -0.0000020969, + "4432": -0.0000020959, + "4433": -0.0000020949, + "4434": -0.0000020939, + "4435": -0.0000020929, + "4436": -0.000002092, + "4437": -0.000002091, + "4438": -0.0000020901, + "4439": -0.0000020891, + "4440": -0.0000020882, + "4441": -0.0000020873, + "4442": -0.0000020864, + "4443": -0.0000020855, + "4444": -0.0000020846, + "4445": -0.0000020837, + "4446": -0.0000020828, + "4447": -0.0000020819, + "4448": -0.0000020811, + "4449": -0.0000020802, + "4450": -0.0000020794, + "4451": -0.0000020785, + "4452": -0.0000020777, + "4453": -0.0000020768, + "4454": -0.000002076, + "4455": -0.0000020752, + "4456": -0.0000020744, + "4457": -0.0000020736, + "4458": -0.0000020728, + "4459": -0.000002072, + "4460": -0.0000020712, + "4461": -0.0000020704, + "4462": -0.0000020697, + "4463": -0.0000020689, + "4464": -0.0000020681, + "4465": -0.0000020674, + "4466": -0.0000020666, + "4467": -0.0000020659, + "4468": -0.0000020652, + "4469": -0.0000020644, + "4470": -0.0000020637, + "4471": -0.000002063, + "4472": -0.0000020623, + "4473": -0.0000020615, + "4474": -0.0000020608, + "4475": -0.0000020601, + "4476": -0.0000020594, + "4477": -0.0000020588, + "4478": -0.0000020581, + "4479": -0.0000020574, + "4480": -0.0000020567, + "4481": -0.000002056, + "4482": -0.0000020554, + "4483": -0.0000020547, + "4484": -0.000002054, + "4485": -0.0000020534, + "4486": -0.0000020527, + "4487": -0.0000020521, + "4488": -0.0000020515, + "4489": -0.0000020508, + "4490": -0.0000020502, + "4491": -0.0000020496, + "4492": -0.0000020489, + "4493": -0.0000020483, + "4494": -0.0000020477, + "4495": -0.0000020471, + "4496": -0.0000020465, + "4497": -0.0000020459, + "4498": -0.0000020453, + "4499": -0.0000020447, + "4500": 0.0, + "4501": 4.4863334228, + "4502": 8.6708954831, + "4503": -3.1420301032, + "4504": 12.559072217, + "4505": 6.1901235016, + "4506": 13.705273333, + "4507": 13.211132976, + "4508": 17.0949982895, + "4509": 18.658517271, + "4510": 21.3869533346, + "4511": 23.5311809364, + "4512": 25.9389749734, + "4513": 28.2141703056, + "4514": 30.5346682931, + "4515": 32.8245897213, + "4516": 35.1142845557, + "4517": 37.3929774896, + "4518": 39.663826318, + "4519": 41.9265480126, + "4520": 44.1807630453, + "4521": 46.4270468803, + "4522": 48.6650558236, + "4523": 50.8951126567, + "4524": 53.1171112062, + "4525": 55.3312005967, + "4526": 57.5373839776, + "4527": 59.7357434972, + "4528": 61.9263185565, + "4529": 64.1091697937, + "4530": 66.2843463419, + "4531": 68.4519021971, + "4532": 70.6118882433, + "4533": 72.7643560607, + "4534": 74.909356168, + "4535": 77.0469388248, + "4536": 79.1771536913, + "4537": 81.3000499796, + "4538": 83.415676403, + "4539": 85.5240812028, + "4540": 87.6253121482, + "4541": 89.7194165433, + "4542": 91.8064412339, + "4543": 93.8864326121, + "4544": 95.9594366229, + "4545": 98.0254987699, + "4546": 100.0846641202, + "4547": 102.1369773106, + "4548": 104.1824825526, + "4549": 106.221223638, + "4550": 108.2532439438, + "4551": 110.2785864377, + "4552": 112.2972936831, + "4553": 114.3094078439, + "4554": 116.3149706897, + "4555": 118.3140236005, + "4556": 120.3066075713, + "4557": 122.2927632174, + "4558": 124.2725307784, + "4559": 126.2459501231, + "4560": 128.2130607538, + "4561": 130.173901811, + "4562": 132.1285120774, + "4563": 134.0769299827, + "4564": 136.0191936074, + "4565": 137.9553406869, + "4566": 139.8854086161, + "4567": 141.8094344531, + "4568": 143.7274549232, + "4569": 145.6395064228, + "4570": 147.5456250237, + "4571": 149.4458464762, + "4572": 151.3402062134, + "4573": 153.2287393548, + "4574": 155.1114807098, + "4575": 156.9884647815, + "4576": 158.8597257701, + "4577": 160.7252975764, + "4578": 162.5852138055, + "4579": 164.4395077696, + "4580": 166.2882124923, + "4581": 168.1313607108, + "4582": 169.9689848801, + "4583": 171.8011171757, + "4584": 173.6277894968, + "4585": 175.4490334697, + "4586": 738.4653086254, + "4587": 1985.2198728104, + "4588": 3599.2063598716, + "4589": 5355.7951122677, + "4590": 7119.8510806787, + "4591": 8828.7810323793, + "4592": 10459.8668018829, + "4593": 12003.8373216072, + "4594": 13461.9883063178, + "4595": 14835.9290661844, + "4596": 16129.236168748, + "4597": 17343.4244025262, + "4598": 18485.6201276032, + "4599": 19562.5939462694, + "4600": 20573.9871869768, + "4601": 21525.3143242595, + "4602": 22418.5066717218, + "4603": 23257.7921592382, + "4604": 24045.8418633484, + "4605": 24785.9586092918, + "4606": 25480.8161072798, + "4607": 26133.1480235532, + "4608": 26745.3913565313, + "4609": 27319.8843014039, + "4610": 27858.7808507674, + "4611": 28364.1075861496, + "4612": 28837.7503309577, + "4613": 29281.4737761509, + "4614": 29696.9248327471, + "4615": 30085.6426630553, + "4616": 30449.0649135019, + "4617": 30788.5348761235, + "4618": 31105.3075457594, + "4619": 31400.5554979694, + "4620": 31675.3742411472, + "4621": 31930.7872353875, + "4622": 32167.7505399131, + "4623": 32387.1571468645, + "4624": 32589.8410140454, + "4625": 32776.5808271745, + "4626": 32948.1035104625, + "4627": 33105.0875077089, + "4628": 33248.1658516213, + "4629": 33377.9290391623, + "4630": 33494.9277284091, + "4631": 33599.675271681, + "4632": 33692.6500982233, + "4633": 33774.2979588536, + "4634": 33845.0340439117, + "4635": 33905.2449850241, + "4636": 33955.2907503458, + "4637": 33995.506442215, + "4638": 34026.2040054454, + "4639": 34047.6738538445, + "4640": 34060.1864219388, + "4641": 34063.993648316, + "4642": 34059.3303964608, + "4643": 34046.4158184451, + "4644": 34025.45466634, + "4645": 33996.6385557454, + "4646": 33960.1471853653, + "4647": 33916.1495161086, + "4648": 33864.804912745, + "4649": 33806.2642507084, + "4650": 33740.6709901991, + "4651": 33668.1622193027, + "4652": 33588.8696674066, + "4653": 33502.9206897635, + "4654": 33410.4392236189, + "4655": 33311.5467158891, + "4656": 33206.3630219567, + "4657": 33095.0072747276, + "4658": 32977.5987226937, + "4659": 32854.2575353486, + "4660": 32725.1055739337, + "4661": 32590.2671251423, + "4662": 32449.8695950894, + "4663": 32304.0441605733, + "4664": 32152.926374413, + "4665": 31996.656721454, + "4666": 31835.3811217011, + "4667": 31669.2513769623, + "4668": 31498.425557385, + "4669": 31323.0683243383, + "4670": 31143.3511862434, + "4671": 30959.4526841931, + "4672": 30771.5585045189, + "4673": 30579.8615158747, + "4674": 30384.5617289009, + "4675": 30185.8661771097, + "4676": 29983.9887182915, + "4677": 29779.1497564687, + "4678": 29571.5758852134, + "4679": 29361.4994539859, + "4680": 29149.1580600266, + "4681": 28934.7939692301, + "4682": 28718.6534703295, + "4683": 28500.9861676024, + "4684": 28282.0442181607, + "4685": 28062.0815206788, + "4686": 27841.3528631372, + "4687": 27620.1130377911, + "4688": 27398.6159320896, + "4689": 27177.1136046772, + "4690": 26955.855355869, + "4691": 26735.086802114, + "4692": 26515.0489639343, + "4693": 26295.9773766479, + "4694": 26078.101232858, + "4695": 25861.6425652214, + "4696": 25646.8154774056, + "4697": 25433.8254304221, + "4698": 25222.868590693, + "4699": 25014.1312452966, + "4700": 24807.7892888495, + "4701": 24604.0077854627, + "4702": 24402.9406081493, + "4703": 24204.7301570146, + "4704": 24009.507156516, + "4705": 23817.3905310902, + "4706": 23628.4873574952, + "4707": 23442.8928913502, + "4708": 23260.6906645656, + "4709": 23081.9526496656, + "4710": 22906.7394864149, + "4711": 22735.1007656752, + "4712": 22567.0753650443, + "4713": 22402.6918305594, + "4714": 22241.9687985806, + "4715": 22084.9154519063, + "4716": 21931.5320041966, + "4717": 21781.8102068865, + "4718": 21635.7338729589, + "4719": 21493.2794121864, + "4720": 21354.416372758, + "4721": 21219.1079845412, + "4722": 21087.3116996121, + "4723": 20958.9797260759, + "4724": 20834.0595516111, + "4725": 20712.4944535705, + "4726": 20594.2239928612, + "4727": 20479.1844891635, + "4728": 20367.3094753002, + "4729": 20258.530128639, + "4730": 20152.7756771207, + "4731": 20049.9737764828, + "4732": 19950.0508527132, + "4733": 19852.9323981183, + "4734": 19758.5431973645, + "4735": 19666.8074351263, + "4736": 19577.6485886269, + "4737": 19490.9889239635, + "4738": 19406.7483123864, + "4739": 19324.8421542033, + "4740": 19245.1791926502, + "4741": 19167.6630687576, + "4742": 18965.2595805738, + "4743": 17949.233341298, + "4744": 16147.78642666, + "4745": 14013.1476405589, + "4746": 11819.8846396598, + "4747": 9605.237412861, + "4748": 7508.1938004528, + "4749": 5490.7338814074, + "4750": 3599.6964338407, + "4751": 1807.1352412835, + "4752": 138.0229339708, + "4753": -1336.7784369368, + "4754": -2504.7039275435, + "4755": -3531.6899894015, + "4756": -4249.8678283973, + "4757": -4600.2351189664, + "4758": -4774.4608638423, + "4759": -4907.8555904607, + "4760": -4983.0502087131, + "4761": -5001.1950097193, + "4762": -5002.075137417, + "4763": -4997.0829760229, + "4764": -4978.0142506029, + "4765": -4949.2897923129, + "4766": -4917.755037206, + "4767": -4882.6975506437, + "4768": -4843.3742375957, + "4769": -4801.6201217713, + "4770": -4758.1350569692, + "4771": -4712.6634221308, + "4772": -4665.5437361233, + "4773": -4617.2000566269, + "4774": -4567.7164550917, + "4775": -4517.2068240844, + "4776": -4465.8690540762, + "4777": -4413.8305433281, + "4778": -4361.1896190259, + "4779": -4308.0639407234, + "4780": -4254.559217044, + "4781": -4200.7651187262, + "4782": -4146.7700667198, + "4783": -4092.6578626386, + "4784": -4038.5044395446, + "4785": -3984.3810763339, + "4786": -3930.3547246931, + "4787": -3876.4871621825, + "4788": -3822.8356383142, + "4789": -3769.4532459725, + "4790": -3716.3888716732, + "4791": -3663.6874187243, + "4792": -3611.3900412918, + "4793": -3559.5342748795, + "4794": -3508.1542072577, + "4795": -3457.2806606285, + "4796": -3406.9413511039, + "4797": -3357.1610511287, + "4798": -3307.9617527754, + "4799": -3259.3628240495, + "4800": -3211.3811620893, + "4801": -3164.0313431112, + "4802": -3117.3257673637, + "4803": -3071.2747994811, + "4804": -3025.8869040953, + "4805": -2981.1687762842, + "4806": -2937.1254668198, + "4807": -2893.7605021411, + "4808": -2851.0759989606, + "4809": -2809.072773504, + "4810": -2767.7504454008, + "4811": -2727.1075362697, + "4812": -2687.1415630724, + "4813": -2647.8491263321, + "4814": -2609.2259933329, + "4815": -2571.2671764314, + "4816": -2533.9670066274, + "4817": -2497.3192025503, + "4818": -2461.3169350278, + "4819": -2425.9528874097, + "4820": -2391.2193118227, + "4821": -2357.1080815386, + "4822": -2323.6107396345, + "4823": -2290.718544129, + "4824": -2258.4225097725, + "4825": -2226.7134466695, + "4826": -2195.5819959076, + "4827": -2165.0186623635, + "4828": -2135.0138448504, + "4829": -2105.5578637689, + "4830": -2076.6409864143, + "4831": -2048.2534500905, + "4832": -2020.3854831726, + "4833": -1993.0273242545, + "4834": -1966.1692395115, + "4835": -1939.801538402, + "4836": -1913.9145878244, + "4837": -1888.498824842, + "4838": -1863.5447680788, + "4839": -1839.0430278853, + "4840": -1814.9843153691, + "4841": -1791.3594503744, + "4842": -1768.1593684946, + "4843": -1745.3751271941, + "4844": -1722.9979111092, + "4845": -1701.0190365973, + "4846": -1679.4299555949, + "4847": -1658.2222588425, + "4848": -1637.3876785312, + "4849": -1616.9180904195, + "4850": -1596.8055154682, + "4851": -1577.0421210352, + "4852": -1557.6202216711, + "4853": -1538.5322795505, + "4854": -1519.7709045761, + "4855": -1501.3288541839, + "4856": -1483.1990328802, + "4857": -1465.3744915369, + "4858": -1447.8484264701, + "4859": -1430.6141783232, + "4860": -1413.665230777, + "4861": -1396.9952091058, + "4862": -1380.5978785962, + "4863": -1364.4671428452, + "4864": -1348.5970419533, + "4865": -1332.9817506252, + "4866": -1317.6155761907, + "4867": -1302.4929565585, + "4868": -1287.6084581108, + "4869": -1272.9567735515, + "4870": -1258.532719714, + "4871": -1244.331235338, + "4872": -1230.3473788228, + "4873": -1216.5763259621, + "4874": -1203.0133676683, + "4875": -1189.6539076907, + "4876": -1176.4934603322, + "4877": -1163.5276481706, + "4878": -1150.7521997862, + "4879": -1138.1629475019, + "4880": -1125.7558251368, + "4881": -1113.5268657781, + "4882": -1101.4721995729, + "4883": -1089.588051542, + "4884": -1077.8707394195, + "4885": -1066.3166715175, + "4886": -1054.9223446198, + "4887": -1043.6843419051, + "4888": -1032.5993309006, + "4889": -1021.6640614675, + "4890": -1010.8753638192, + "4891": -1000.2301465737, + "4892": -989.725394839, + "4893": -979.358168334, + "4894": -969.1255995439, + "4895": -959.0248919114, + "4896": -949.0533180631, + "4897": -939.2082180716, + "4898": -929.4869977531, + "4899": -919.887127001, + "4900": -910.4061381547, + "4901": -901.0416244042, + "4902": -891.7912382291, + "4903": -882.6526898733, + "4904": -873.6237458538, + "4905": -864.7022275041, + "4906": -855.8860095512, + "4907": -847.1730187261, + "4908": -838.5612324079, + "4909": -830.0486772994, + "4910": -821.6334281362, + "4911": -813.313606426, + "4912": -805.0873792204, + "4913": -796.9529579162, + "4914": -788.9085970875, + "4915": -780.9525933468, + "4916": -773.0832842353, + "4917": -765.2990471421, + "4918": -757.59829825, + "4919": -749.9794915102, + "4920": -742.4411176424, + "4921": -734.9817031617, + "4922": -727.5998094314, + "4923": -720.2940317399, + "4924": -713.0629984031, + "4925": -705.9053698901, + "4926": -698.8198379726, + "4927": -691.8051248971, + "4928": -684.8599825793, + "4929": -677.9831918201, + "4930": -671.1735615437, + "4931": -664.4299280552, + "4932": -657.7511543195, + "4933": -651.1361292592, + "4934": -644.5837670719, + "4935": -638.0930065668, + "4936": -631.6628105186, + "4937": -625.2921650397, + "4938": -618.9800789699, + "4939": -612.7255832825, + "4940": -606.5277305073, + "4941": -600.3855941693, + "4942": -594.2982682425, + "4943": -588.2648666204, + "4944": -582.2845225989, + "4945": -576.356388376, + "4946": -570.4796345635, + "4947": -564.6534497133, + "4948": -558.8770398564, + "4949": -553.1496280554, + "4950": -547.4704539685, + "4951": -541.8387734263, + "4952": -536.2538580204, + "4953": -530.7149947031, + "4954": -525.2214853982, + "4955": -519.7726466232, + "4956": -514.3678091214, + "4957": -509.0063175044, + "4958": -503.6875299048, + "4959": -498.4108176381, + "4960": -493.1755648742, + "4961": -487.981168318, + "4962": -482.827036899, + "4963": -477.7125914689, + "4964": -472.6372645084, + "4965": -467.6004998413, + "4966": -462.601752357, + "4967": -457.6404877404, + "4968": -452.7161822092, + "4969": -447.8283222586, + "4970": -442.9764044128, + "4971": -438.1599349833, + "4972": -433.3784298341, + "4973": -428.6314141529, + "4974": -423.9184222285, + "4975": -419.2389972351, + "4976": -414.592691021, + "4977": -409.9790639043, + "4978": -405.3976844736, + "4979": -400.848129394, + "4980": -396.3299832183, + "4981": -391.8428382038, + "4982": -387.3862941332, + "4983": -382.9599581408, + "4984": -378.5634445433, + "4985": -374.1963746752, + "4986": -369.8583767279, + "4987": -365.5490855939, + "4988": -361.268142715, + "4989": -357.0151959336, + "4990": -352.7898993493, + "4991": -348.591913178, + "4992": -344.4209036156, + "4993": -340.2765427048, + "4994": -336.1585082052, + "4995": -332.0664834674, + "4996": -328.0001573097, + "4997": -323.9592238983, + "4998": -319.9433826307, + "4999": -315.9523380219, + "5000": 0.0, + "5001": -0.0000029953, + "5002": -0.0000014967, + "5003": -0.0000022475, + "5004": -0.0000018706, + "5005": -0.0000020588, + "5006": -0.0000019641, + "5007": -0.000002011, + "5008": -0.000001987, + "5009": -0.0000019984, + "5010": -0.0000019922, + "5011": -0.0000019948, + "5012": -0.000001993, + "5013": -0.0000019934, + "5014": -0.0000019926, + "5015": -0.0000019925, + "5016": -0.000001992, + "5017": -0.0000019917, + "5018": -0.0000019914, + "5019": -0.0000019911, + "5020": -0.0000019907, + "5021": -0.0000019904, + "5022": -0.00000199, + "5023": -0.0000019897, + "5024": -0.0000019894, + "5025": -0.000001989, + "5026": -0.0000019887, + "5027": -0.0000019884, + "5028": -0.0000019881, + "5029": -0.0000019877, + "5030": -0.0000019874, + "5031": -0.0000019871, + "5032": -0.0000019868, + "5033": -0.0000019864, + "5034": -0.0000019861, + "5035": -0.0000019858, + "5036": -0.0000019855, + "5037": -0.0000019852, + "5038": -0.0000019848, + "5039": -0.0000019845, + "5040": -0.0000019842, + "5041": -0.0000019839, + "5042": -0.0000019836, + "5043": -0.0000019833, + "5044": -0.000001983, + "5045": -0.0000019826, + "5046": -0.0000019823, + "5047": -0.000001982, + "5048": -0.0000019817, + "5049": -0.0000019814, + "5050": -0.0000019811, + "5051": -0.0000019808, + "5052": -0.0000019805, + "5053": -0.0000019802, + "5054": -0.0000019799, + "5055": -0.0000019796, + "5056": -0.0000019793, + "5057": -0.000001979, + "5058": -0.0000019787, + "5059": -0.0000019784, + "5060": -0.0000019781, + "5061": -0.0000019778, + "5062": -0.0000019775, + "5063": -0.0000019772, + "5064": -0.000001977, + "5065": -0.0000019767, + "5066": -0.0000019764, + "5067": -0.0000019761, + "5068": -0.0000019758, + "5069": -0.0000019755, + "5070": -0.0000019752, + "5071": -0.0000019749, + "5072": -0.0000019747, + "5073": -0.0000019744, + "5074": -0.0000019741, + "5075": -0.0000019738, + "5076": -0.0000019735, + "5077": -0.0000019733, + "5078": -0.000001973, + "5079": -0.0000019727, + "5080": -0.0000019724, + "5081": -0.0000019721, + "5082": -0.0000019719, + "5083": -0.0000019716, + "5084": -0.0000019713, + "5085": -0.000001971, + "5086": -0.0000018867, + "5087": -0.0000016999, + "5088": -0.0000014581, + "5089": -0.0000011951, + "5090": -0.0000009313, + "5091": -0.0000006777, + "5092": -0.0000004439, + "5093": -0.000000242, + "5094": -0.0000000121, + "5095": 0.0000010123, + "5096": 0.0000074544, + "5097": 0.0000331126, + "5098": 0.0000858861, + "5099": 0.0001533054, + "5100": 0.0002265053, + "5101": 0.0003008609, + "5102": 0.000374097, + "5103": 0.0004450863, + "5104": 0.0005132386, + "5105": 0.0005782893, + "5106": 0.0006401274, + "5107": 0.0006987482, + "5108": 0.0007541997, + "5109": 0.0008065664, + "5110": 0.0008559509, + "5111": 0.0009024673, + "5112": 0.000946234, + "5113": 0.0009873708, + "5114": 0.0010259963, + "5115": 0.001062226, + "5116": 0.0010961718, + "5117": 0.0011279413, + "5118": 0.001157637, + "5119": 0.0011853566, + "5120": 0.001211193, + "5121": 0.0012352339, + "5122": 0.0012575622, + "5123": 0.0012782562, + "5124": 0.0012973894, + "5125": 0.0013150313, + "5126": 0.0013312468, + "5127": 0.0013460971, + "5128": 0.0013596395, + "5129": 0.0013719278, + "5130": 0.0013830122, + "5131": 0.0013929398, + "5132": 0.0014017547, + "5133": 0.001409498, + "5134": 0.0014162082, + "5135": 0.0014219213, + "5136": 0.0014266707, + "5137": 0.0014304878, + "5138": 0.0014334018, + "5139": 0.00143544, + "5140": 0.001436628, + "5141": 0.0014369894, + "5142": 0.0014365467, + "5143": 0.0014353206, + "5144": 0.0014333307, + "5145": 0.0014305953, + "5146": 0.0014271316, + "5147": 0.0014229561, + "5148": 0.0014180841, + "5149": 0.0014125303, + "5150": 0.0014063087, + "5151": 0.0013994329, + "5152": 0.0013919157, + "5153": 0.0013837698, + "5154": 0.0013750076, + "5155": 0.0013656411, + "5156": 0.0013556825, + "5157": 0.0013451437, + "5158": 0.0013340368, + "5159": 0.001322374, + "5160": 0.0013101677, + "5161": 0.0012974305, + "5162": 0.0012841755, + "5163": 0.0012704161, + "5164": 0.0012561661, + "5165": 0.0012414399, + "5166": 0.0012262524, + "5167": 0.0012106192, + "5168": 0.0011945563, + "5169": 0.0011780806, + "5170": 0.0011612097, + "5171": 0.0011439616, + "5172": 0.0011263553, + "5173": 0.0011084103, + "5174": 0.0010901471, + "5175": 0.0010715864, + "5176": 0.0010527501, + "5177": 0.0010336603, + "5178": 0.00101434, + "5179": 0.0009948125, + "5180": 0.0009751016, + "5181": 0.0009552318, + "5182": 0.0009352278, + "5183": 0.0009151143, + "5184": 0.0008949168, + "5185": 0.0008746604, + "5186": 0.0008543706, + "5187": 0.0008340725, + "5188": 0.0008137915, + "5189": 0.0007935523, + "5190": 0.0007733796, + "5191": 0.0007532976, + "5192": 0.0007333298, + "5193": 0.0007134994, + "5194": 0.0006938288, + "5195": 0.0006743394, + "5196": 0.0006550521, + "5197": 0.0006359866, + "5198": 0.0006171619, + "5199": 0.0005985956, + "5200": 0.0005803046, + "5201": 0.0005623044, + "5202": 0.0005446094, + "5203": 0.0005272329, + "5204": 0.0005101868, + "5205": 0.000493482, + "5206": 0.0004771281, + "5207": 0.0004611333, + "5208": 0.000445505, + "5209": 0.0004302489, + "5210": 0.00041537, + "5211": 0.0004008719, + "5212": 0.0003867572, + "5213": 0.0003730275, + "5214": 0.0003596832, + "5215": 0.0003467241, + "5216": 0.0003341487, + "5217": 0.0003219549, + "5218": 0.0003101397, + "5219": 0.0002986994, + "5220": 0.0002876296, + "5221": 0.0002769253, + "5222": 0.0002665809, + "5223": 0.0002565903, + "5224": 0.000246947, + "5225": 0.000237644, + "5226": 0.0002286739, + "5227": 0.0002200293, + "5228": 0.0002117021, + "5229": 0.0002036844, + "5230": 0.0001959678, + "5231": 0.0001885441, + "5232": 0.0001814047, + "5233": 0.0001745411, + "5234": 0.0001679449, + "5235": 0.0001616074, + "5236": 0.00015552, + "5237": 0.0001496743, + "5238": 0.0001440614, + "5239": 0.0001386724, + "5240": 0.0001334982, + "5241": 0.0001285294, + "5242": 0.0001158087, + "5243": 0.0000583052, + "5244": 0.0000008123, + "5245": 0.0000014237, + "5246": -0.0000009589, + "5247": -0.0000002139, + "5248": -0.000001048, + "5249": -0.0000010875, + "5250": -0.0000015018, + "5251": -0.0000017048, + "5252": -0.0000019876, + "5253": -0.0000021921, + "5254": -0.0000023753, + "5255": -0.0000025251, + "5256": -0.0000026347, + "5257": -0.0000026862, + "5258": -0.0000027128, + "5259": -0.0000027325, + "5260": -0.0000027439, + "5261": -0.0000027466, + "5262": -0.0000027467, + "5263": -0.000002746, + "5264": -0.0000027431, + "5265": -0.0000027388, + "5266": -0.0000027341, + "5267": -0.0000027288, + "5268": -0.0000027229, + "5269": -0.0000027167, + "5270": -0.0000027102, + "5271": -0.0000027034, + "5272": -0.0000026963, + "5273": -0.000002689, + "5274": -0.0000026816, + "5275": -0.0000026741, + "5276": -0.0000026664, + "5277": -0.0000026586, + "5278": -0.0000026507, + "5279": -0.0000026427, + "5280": -0.0000026347, + "5281": -0.0000026267, + "5282": -0.0000026186, + "5283": -0.0000026105, + "5284": -0.0000026024, + "5285": -0.0000025942, + "5286": -0.0000025862, + "5287": -0.0000025781, + "5288": -0.00000257, + "5289": -0.000002562, + "5290": -0.0000025541, + "5291": -0.0000025462, + "5292": -0.0000025384, + "5293": -0.0000025306, + "5294": -0.0000025229, + "5295": -0.0000025153, + "5296": -0.0000025077, + "5297": -0.0000025003, + "5298": -0.0000024929, + "5299": -0.0000024856, + "5300": -0.0000024784, + "5301": -0.0000024713, + "5302": -0.0000024643, + "5303": -0.0000024574, + "5304": -0.0000024506, + "5305": -0.000002444, + "5306": -0.0000024374, + "5307": -0.0000024309, + "5308": -0.0000024245, + "5309": -0.0000024182, + "5310": -0.000002412, + "5311": -0.0000024059, + "5312": -0.0000023999, + "5313": -0.000002394, + "5314": -0.0000023882, + "5315": -0.0000023825, + "5316": -0.000002377, + "5317": -0.0000023715, + "5318": -0.0000023661, + "5319": -0.0000023608, + "5320": -0.0000023556, + "5321": -0.0000023505, + "5322": -0.0000023454, + "5323": -0.0000023405, + "5324": -0.0000023357, + "5325": -0.0000023309, + "5326": -0.0000023263, + "5327": -0.0000023217, + "5328": -0.0000023172, + "5329": -0.0000023128, + "5330": -0.0000023084, + "5331": -0.0000023042, + "5332": -0.0000023, + "5333": -0.0000022959, + "5334": -0.0000022919, + "5335": -0.0000022879, + "5336": -0.0000022841, + "5337": -0.0000022803, + "5338": -0.0000022765, + "5339": -0.0000022728, + "5340": -0.0000022692, + "5341": -0.0000022657, + "5342": -0.0000022622, + "5343": -0.0000022588, + "5344": -0.0000022555, + "5345": -0.0000022522, + "5346": -0.0000022489, + "5347": -0.0000022458, + "5348": -0.0000022426, + "5349": -0.0000022396, + "5350": -0.0000022366, + "5351": -0.0000022336, + "5352": -0.0000022307, + "5353": -0.0000022278, + "5354": -0.000002225, + "5355": -0.0000022223, + "5356": -0.0000022195, + "5357": -0.0000022169, + "5358": -0.0000022142, + "5359": -0.0000022117, + "5360": -0.0000022091, + "5361": -0.0000022066, + "5362": -0.0000022042, + "5363": -0.0000022017, + "5364": -0.0000021994, + "5365": -0.000002197, + "5366": -0.0000021947, + "5367": -0.0000021925, + "5368": -0.0000021902, + "5369": -0.000002188, + "5370": -0.0000021859, + "5371": -0.0000021838, + "5372": -0.0000021817, + "5373": -0.0000021796, + "5374": -0.0000021776, + "5375": -0.0000021756, + "5376": -0.0000021736, + "5377": -0.0000021716, + "5378": -0.0000021697, + "5379": -0.0000021678, + "5380": -0.000002166, + "5381": -0.0000021642, + "5382": -0.0000021623, + "5383": -0.0000021606, + "5384": -0.0000021588, + "5385": -0.0000021571, + "5386": -0.0000021554, + "5387": -0.0000021537, + "5388": -0.000002152, + "5389": -0.0000021504, + "5390": -0.0000021488, + "5391": -0.0000021472, + "5392": -0.0000021456, + "5393": -0.0000021441, + "5394": -0.0000021425, + "5395": -0.000002141, + "5396": -0.0000021395, + "5397": -0.000002138, + "5398": -0.0000021366, + "5399": -0.0000021351, + "5400": -0.0000021337, + "5401": -0.0000021323, + "5402": -0.0000021309, + "5403": -0.0000021296, + "5404": -0.0000021282, + "5405": -0.0000021269, + "5406": -0.0000021256, + "5407": -0.0000021243, + "5408": -0.000002123, + "5409": -0.0000021217, + "5410": -0.0000021204, + "5411": -0.0000021192, + "5412": -0.0000021179, + "5413": -0.0000021167, + "5414": -0.0000021155, + "5415": -0.0000021143, + "5416": -0.0000021132, + "5417": -0.000002112, + "5418": -0.0000021108, + "5419": -0.0000021097, + "5420": -0.0000021086, + "5421": -0.0000021074, + "5422": -0.0000021063, + "5423": -0.0000021052, + "5424": -0.0000021042, + "5425": -0.0000021031, + "5426": -0.000002102, + "5427": -0.000002101, + "5428": -0.0000020999, + "5429": -0.0000020989, + "5430": -0.0000020979, + "5431": -0.0000020969, + "5432": -0.0000020959, + "5433": -0.0000020949, + "5434": -0.0000020939, + "5435": -0.0000020929, + "5436": -0.000002092, + "5437": -0.000002091, + "5438": -0.0000020901, + "5439": -0.0000020891, + "5440": -0.0000020882, + "5441": -0.0000020873, + "5442": -0.0000020864, + "5443": -0.0000020855, + "5444": -0.0000020846, + "5445": -0.0000020837, + "5446": -0.0000020828, + "5447": -0.0000020819, + "5448": -0.0000020811, + "5449": -0.0000020802, + "5450": -0.0000020794, + "5451": -0.0000020785, + "5452": -0.0000020777, + "5453": -0.0000020768, + "5454": -0.000002076, + "5455": -0.0000020752, + "5456": -0.0000020744, + "5457": -0.0000020736, + "5458": -0.0000020728, + "5459": -0.000002072, + "5460": -0.0000020712, + "5461": -0.0000020704, + "5462": -0.0000020697, + "5463": -0.0000020689, + "5464": -0.0000020681, + "5465": -0.0000020674, + "5466": -0.0000020666, + "5467": -0.0000020659, + "5468": -0.0000020652, + "5469": -0.0000020644, + "5470": -0.0000020637, + "5471": -0.000002063, + "5472": -0.0000020623, + "5473": -0.0000020615, + "5474": -0.0000020608, + "5475": -0.0000020601, + "5476": -0.0000020594, + "5477": -0.0000020588, + "5478": -0.0000020581, + "5479": -0.0000020574, + "5480": -0.0000020567, + "5481": -0.000002056, + "5482": -0.0000020554, + "5483": -0.0000020547, + "5484": -0.000002054, + "5485": -0.0000020534, + "5486": -0.0000020527, + "5487": -0.0000020521, + "5488": -0.0000020515, + "5489": -0.0000020508, + "5490": -0.0000020502, + "5491": -0.0000020496, + "5492": -0.0000020489, + "5493": -0.0000020483, + "5494": -0.0000020477, + "5495": -0.0000020471, + "5496": -0.0000020465, + "5497": -0.0000020459, + "5498": -0.0000020453, + "5499": -0.0000020447, + "5500": 0.0, + "5501": 19968.346714359, + "5502": 9984.1829867046, + "5503": 14976.2502878154, + "5504": 12480.23131083, + "5505": 13728.2430189446, + "5506": 13104.2436527696, + "5507": 13416.2482248818, + "5508": 13260.2513871902, + "5509": 13338.2550576317, + "5510": 13299.2584811137, + "5511": 13318.7620254538, + "5512": 13309.0154666116, + "5513": 13313.8939581389, + "5514": 13311.4598930258, + "5515": 13312.6820943598, + "5516": 13312.0761392271, + "5517": 13312.3842456757, + "5518": 13312.2353013411, + "5519": 13312.314864347, + "5520": 13312.2801548508, + "5521": 13312.3025633517, + "5522": 13312.2963945163, + "5523": 13312.3044962373, + "5524": 13312.3054446512, + "5525": 13312.3099518336, + "5526": 13312.3126618631, + "5527": 13312.3162528258, + "5528": 13312.3193857992, + "5529": 13312.322730365, + "5530": 13312.3259518513, + "5531": 13312.3292177117, + "5532": 13312.3324443362, + "5533": 13312.3356736452, + "5534": 13312.3388847927, + "5535": 13312.3420883149, + "5536": 13312.3452790557, + "5537": 13312.3484597042, + "5538": 13312.3516290256, + "5539": 13312.354787746, + "5540": 13312.3579356101, + "5541": 13312.3610728523, + "5542": 13312.3641994609, + "5543": 13312.3673155463, + "5544": 13312.370421157, + "5545": 13312.3735163713, + "5546": 13312.3766012517, + "5547": 13312.3796758675, + "5548": 13312.3827402837, + "5549": 13312.3857945665, + "5550": 13312.3888387807, + "5551": 13312.3918729908, + "5552": 13312.3948972604, + "5553": 13312.3979116527, + "5554": 13312.4009162303, + "5555": 13312.4039110552, + "5556": 13312.4068961889, + "5557": 13312.4098716921, + "5558": 13312.4128376252, + "5559": 13312.4157940478, + "5560": 13312.4187410192, + "5561": 13312.421678598, + "5562": 13312.4246068422, + "5563": 13312.4275258096, + "5564": 13312.430435557, + "5565": 13312.4333361411, + "5566": 13312.4362276179, + "5567": 13312.4391100429, + "5568": 13312.441983471, + "5569": 13312.4448479569, + "5570": 13312.4477035546, + "5571": 13312.4505503176, + "5572": 13312.453388299, + "5573": 13312.4562175515, + "5574": 13312.4590381271, + "5575": 13312.4618500776, + "5576": 13312.4646534542, + "5577": 13312.4674483077, + "5578": 13312.4702346884, + "5579": 13312.4730126463, + "5580": 13312.4757822308, + "5581": 13312.478543491, + "5582": 13312.4812964754, + "5583": 13312.4840412323, + "5584": 13312.4867778095, + "5585": 13312.4895062543, + "5586": 13313.3329723161, + "5587": 13315.2007476027, + "5588": 13317.618577733, + "5589": 13320.2493766487, + "5590": 13322.8873888833, + "5591": 13325.4225623863, + "5592": 13327.7605427887, + "5593": 13329.7797896419, + "5594": 13332.0788293132, + "5595": 13342.3233331935, + "5596": 13406.7438477148, + "5597": 13663.3261958787, + "5598": 14191.0612599623, + "5599": 14865.2536794736, + "5600": 15597.2527429996, + "5601": 16340.8093311289, + "5602": 17073.169958077, + "5603": 17783.0627108314, + "5604": 18464.5858323125, + "5605": 19115.0933512677, + "5606": 19733.4737528092, + "5607": 20319.6817485016, + "5608": 20874.1968192532, + "5609": 21397.8635045074, + "5610": 21891.7091351059, + "5611": 22356.8729577899, + "5612": 22794.5401267688, + "5613": 23205.908443104, + "5614": 23592.1627338005, + "5615": 23954.4597990253, + "5616": 24293.9183047804, + "5617": 24611.6126802623, + "5618": 24908.569628666, + "5619": 25185.7663960444, + "5620": 25444.1303233588, + "5621": 25684.5392277665, + "5622": 25907.8223884334, + "5623": 26114.7619191518, + "5624": 26306.0944067499, + "5625": 26482.512710721, + "5626": 26644.66785837, + "5627": 26793.1709841524, + "5628": 26928.5952786519, + "5629": 27051.4779220346, + "5630": 27162.3219848673, + "5631": 27261.5982846577, + "5632": 27349.7471906578, + "5633": 27427.1803725092, + "5634": 27494.2824905575, + "5635": 27551.4128272956, + "5636": 27598.9068605926, + "5637": 27637.0777802038, + "5638": 27666.2179496469, + "5639": 27686.6003159181, + "5640": 27698.4797697526, + "5641": 27702.0944592517, + "5642": 27697.6670597224, + "5643": 27685.40600252, + "5644": 27665.5066655799, + "5645": 27638.1525281559, + "5646": 27603.5162920999, + "5647": 27561.7609717684, + "5648": 27513.0409543986, + "5649": 27457.5030325005, + "5650": 27395.2874095165, + "5651": 27326.5286796722, + "5652": 27251.35678261, + "5653": 27169.8979330403, + "5654": 27082.2755252984, + "5655": 26988.6110123161, + "5656": 26889.0247581581, + "5657": 26783.636862906, + "5658": 26672.5679583017, + "5659": 26555.939972221, + "5660": 26433.8768597025, + "5661": 26306.5052979451, + "5662": 26173.9553423975, + "5663": 26036.3610408062, + "5664": 25893.8610018795, + "5665": 25746.5989150499, + "5666": 25594.7240177182, + "5667": 25438.3915062971, + "5668": 25277.7628874067, + "5669": 25113.0062656542, + "5670": 24944.2965646079, + "5671": 24771.815677829, + "5672": 24595.7525471619, + "5673": 24416.3031659133, + "5674": 24233.6705050576, + "5675": 24048.0643612035, + "5676": 23859.7011257215, + "5677": 23668.8034751806, + "5678": 23475.5999840319, + "5679": 23280.3246613346, + "5680": 23083.2164141964, + "5681": 22884.5184415013, + "5682": 22684.4775624017, + "5683": 22483.3434849302, + "5684": 22281.3680209375, + "5685": 22078.804254348, + "5686": 21875.9056704404, + "5687": 21672.9252544819, + "5688": 21470.1145685504, + "5689": 21267.7228157689, + "5690": 21065.995901421, + "5691": 20865.1755005247, + "5692": 20665.4981413909, + "5693": 20467.1943145006, + "5694": 20270.4876156866, + "5695": 20075.5939321127, + "5696": 19882.7206789311, + "5697": 19692.0660937422, + "5698": 19503.8185951512, + "5699": 19318.1562107683, + "5700": 19135.246079014, + "5701": 18955.2440280434, + "5702": 18778.2942340405, + "5703": 18604.5289600731, + "5704": 18434.0683756493, + "5705": 18267.0204561199, + "5706": 18103.4809601198, + "5707": 17943.533482373, + "5708": 17787.2495783961, + "5709": 17634.6889569481, + "5710": 17485.8997354849, + "5711": 17340.9187533976, + "5712": 17199.7719374438, + "5713": 17062.4747135178, + "5714": 16929.0324587465, + "5715": 16799.4409878395, + "5716": 16673.6870676525, + "5717": 16551.7489540392, + "5718": 16433.5969452564, + "5719": 16319.1939464366, + "5720": 16208.4960399513, + "5721": 16101.4530568326, + "5722": 15998.0091448017, + "5723": 15898.103328854, + "5724": 15801.6700607602, + "5725": 15708.6397542579, + "5726": 15618.9393031024, + "5727": 15532.4925795128, + "5728": 15449.2209108465, + "5729": 15369.0435325098, + "5730": 15291.8780150363, + "5731": 15217.640662708, + "5732": 15146.2468795444, + "5733": 15077.6114949503, + "5734": 15011.6490337747, + "5735": 14948.273900169, + "5736": 14887.4004151081, + "5737": 14828.9425974337, + "5738": 14772.8135227539, + "5739": 14718.924161596, + "5740": 14667.1822580029, + "5741": 14617.4937166271, + "5742": 14490.2873392403, + "5743": 13915.2521754713, + "5744": 13340.3234123997, + "5745": 13346.4374435707, + "5746": 13322.6109699507, + "5747": 13330.061424776, + "5748": 13321.7204703461, + "5749": 13321.3254195457, + "5750": 13317.1824129815, + "5751": 13315.1524269396, + "5752": 13312.3242076826, + "5753": 13310.2786170924, + "5754": 13308.4469931709, + "5755": 13306.9493991511, + "5756": 13305.8529964822, + "5757": 13305.3383421065, + "5758": 13305.0722095455, + "5759": 13304.874927369, + "5760": 13304.7609962036, + "5761": 13304.7344530083, + "5762": 13304.7328144516, + "5763": 13304.7404533517, + "5764": 13304.7689407268, + "5765": 13304.8120136241, + "5766": 13304.8592367014, + "5767": 13304.9117672801, + "5768": 13304.9706736093, + "5769": 13305.0332290908, + "5770": 13305.0983740041, + "5771": 13305.1664969272, + "5772": 13305.2370879031, + "5773": 13305.3095130458, + "5774": 13305.3836457024, + "5775": 13305.4593155989, + "5776": 13305.5362260943, + "5777": 13305.6141864177, + "5778": 13305.6930492185, + "5779": 13305.7726382498, + "5780": 13305.8527951354, + "5781": 13305.9333855428, + "5782": 13306.0142770033, + "5783": 13306.0953439728, + "5784": 13306.1764726932, + "5785": 13306.25755638, + "5786": 13306.3384947309, + "5787": 13306.4191951952, + "5788": 13306.499572006, + "5789": 13306.5795456232, + "5790": 13306.6590428086, + "5791": 13306.7379962914, + "5792": 13306.8163444175, + "5793": 13306.8940309537, + "5794": 13306.9710048323, + "5795": 13307.0472198777, + "5796": 13307.1226345676, + "5797": 13307.1972117897, + "5798": 13307.2709185972, + "5799": 13307.3437259743, + "5800": 13307.4156086068, + "5801": 13307.4865446579, + "5802": 13307.5565155503, + "5803": 13307.6255057564, + "5804": 13307.6935025952, + "5805": 13307.7604960367, + "5806": 13307.826478514, + "5807": 13307.8914447442, + "5808": 13307.9553915561, + "5809": 13308.0183177269, + "5810": 13308.0802238265, + "5811": 13308.1411120698, + "5812": 13308.2009861765, + "5813": 13308.2598512395, + "5814": 13308.3177136001, + "5815": 13308.3745807302, + "5816": 13308.4304611229, + "5817": 13308.4853641884, + "5818": 13308.5393001577, + "5819": 13308.592279992, + "5820": 13308.6443152987, + "5821": 13308.6954182526, + "5822": 13308.7456015233, + "5823": 13308.7948782075, + "5824": 13308.8432617661, + "5825": 13308.8907659668, + "5826": 13308.9374048304, + "5827": 13308.9831925819, + "5828": 13309.028143605, + "5829": 13309.0722724011, + "5830": 13309.115593551, + "5831": 13309.1581216804, + "5832": 13309.1998714285, + "5833": 13309.2408574191, + "5834": 13309.2810942348, + "5835": 13309.3205963932, + "5836": 13309.3593783259, + "5837": 13309.3974543594, + "5838": 13309.4348386981, + "5839": 13309.4715454089, + "5840": 13309.5075884076, + "5841": 13309.5429814474, + "5842": 13309.5777381078, + "5843": 13309.611871786, + "5844": 13309.6453956885, + "5845": 13309.6783228245, + "5846": 13309.7106660001, + "5847": 13309.7424378135, + "5848": 13309.7736506508, + "5849": 13309.8043166832, + "5850": 13309.8344478644, + "5851": 13309.8640559286, + "5852": 13309.8931523897, + "5853": 13309.9217485402, + "5854": 13309.9498554515, + "5855": 13309.9774839739, + "5856": 13310.0046447373, + "5857": 13310.0313481524, + "5858": 13310.057604412, + "5859": 13310.0834234926, + "5860": 13310.1088151566, + "5861": 13310.1337889541, + "5862": 13310.1583542254, + "5863": 13310.1825201039, + "5864": 13310.2062955181, + "5865": 13310.2296891952, + "5866": 13310.2527096634, + "5867": 13310.2753652555, + "5868": 13310.2976641117, + "5869": 13310.3196141831, + "5870": 13310.3412232346, + "5871": 13310.3624988488, + "5872": 13310.3834484287, + "5873": 13310.4040792017, + "5874": 13310.4243982225, + "5875": 13310.4444123769, + "5876": 13310.4641283851, + "5877": 13310.483552805, + "5878": 13310.5026920358, + "5879": 13310.5215523211, + "5880": 13310.5401397526, + "5881": 13310.5584602732, + "5882": 13310.5765196806, + "5883": 13310.59432363, + "5884": 13310.611877638, + "5885": 13310.6291870854, + "5886": 13310.6462572205, + "5887": 13310.663093162, + "5888": 13310.6796999026, + "5889": 13310.6960823112, + "5890": 13310.7122451367, + "5891": 13310.7281930102, + "5892": 13310.7439304486, + "5893": 13310.7594618567, + "5894": 13310.7747915305, + "5895": 13310.7899236595, + "5896": 13310.8048623296, + "5897": 13310.8196115259, + "5898": 13310.8341751346, + "5899": 13310.8485569463, + "5900": 13310.8627606578, + "5901": 13310.8767898748, + "5902": 13310.8906481143, + "5903": 13310.9043388064, + "5904": 13310.9178652974, + "5905": 13310.931230851, + "5906": 13310.9444386513, + "5907": 13310.9574918042, + "5908": 13310.97039334, + "5909": 13310.9831462148, + "5910": 13310.9957533129, + "5911": 13311.0082174486, + "5912": 13311.0205413679, + "5913": 13311.0327277503, + "5914": 13311.0447792106, + "5915": 13311.0566983008, + "5916": 13311.0684875115, + "5917": 13311.0801492735, + "5918": 13311.0916859596, + "5919": 13311.1030998859, + "5920": 13311.1143933136, + "5921": 13311.1255684501, + "5922": 13311.1366274507, + "5923": 13311.1475724198, + "5924": 13311.1584054124, + "5925": 13311.1691284353, + "5926": 13311.1797434483, + "5927": 13311.1902523658, + "5928": 13311.2006570574, + "5929": 13311.2109593497, + "5930": 13311.2211610271, + "5931": 13311.2312638329, + "5932": 13311.2412694706, + "5933": 13311.2511796047, + "5934": 13311.2609958619, + "5935": 13311.270719832, + "5936": 13311.2803530688, + "5937": 13311.2898970914, + "5938": 13311.2993533845, + "5939": 13311.3087233999, + "5940": 13311.3180085571, + "5941": 13311.327210244, + "5942": 13311.336329818, + "5943": 13311.3453686065, + "5944": 13311.354327908, + "5945": 13311.3632089926, + "5946": 13311.3720131029, + "5947": 13311.3807414545, + "5948": 13311.3893952368, + "5949": 13311.3979756138, + "5950": 13311.4064837246, + "5951": 13311.4149206841, + "5952": 13311.4232875835, + "5953": 13311.431585491, + "5954": 13311.4398154525, + "5955": 13311.4479784919, + "5956": 13311.4560756117, + "5957": 13311.464107794, + "5958": 13311.4720760003, + "5959": 13311.4799811723, + "5960": 13311.4878242328, + "5961": 13311.4956060856, + "5962": 13311.503327616, + "5963": 13311.5109896918, + "5964": 13311.5185931632, + "5965": 13311.5261388635, + "5966": 13311.5336276091, + "5967": 13311.5410602007, + "5968": 13311.5484374229, + "5969": 13311.555760045, + "5970": 13311.5630288213, + "5971": 13311.5702444914, + "5972": 13311.5774077806, + "5973": 13311.5845194002, + "5974": 13311.5915800479, + "5975": 13311.598590408, + "5976": 13311.6055511521, + "5977": 13311.6124629388, + "5978": 13311.6193264143, + "5979": 13311.626142213, + "5980": 13311.6329109571, + "5981": 13311.6396332576, + "5982": 13311.646309714, + "5983": 13311.6529409148, + "5984": 13311.659527438, + "5985": 13311.6660698507, + "5986": 13311.67256871, + "5987": 13311.6790245629, + "5988": 13311.6854379466, + "5989": 13311.6918093885, + "5990": 13311.6981394069, + "5991": 13311.7044285109, + "5992": 13311.7106772005, + "5993": 13311.7168859671, + "5994": 13311.7230552934, + "5995": 13311.7291856538, + "5996": 13311.7352775144, + "5997": 13311.7413313335, + "5998": 13311.7473475615, + "5999": 13311.7533266408, + "6000": 0.0, + "6001": 0.0000004689, + "6002": 0.0000024375, + "6003": 0.000005093, + "6004": 0.0000075997, + "6005": 0.0000100617, + "6006": 0.0000125323, + "6007": 0.000014992, + "6008": 0.0000174436, + "6009": 0.000019887, + "6010": 0.0000223222, + "6011": 0.0000247494, + "6012": 0.0000271686, + "6013": 0.0000295798, + "6014": 0.0000319831, + "6015": 0.0000343786, + "6016": 0.0000367662, + "6017": 0.0000391461, + "6018": 0.0000415183, + "6019": 0.0000438829, + "6020": 0.0000462399, + "6021": 0.0000485893, + "6022": 0.0000509312, + "6023": 0.0000532657, + "6024": 0.0000555928, + "6025": 0.0000579125, + "6026": 0.000060225, + "6027": 0.0000625302, + "6028": 0.0000648282, + "6029": 0.000067119, + "6030": 0.0000694028, + "6031": 0.0000716794, + "6032": 0.0000739491, + "6033": 0.0000762117, + "6034": 0.0000784675, + "6035": 0.0000807163, + "6036": 0.0000829583, + "6037": 0.0000851935, + "6038": 0.000087422, + "6039": 0.0000896437, + "6040": 0.0000918587, + "6041": 0.0000940672, + "6042": 0.000096269, + "6043": 0.0000984643, + "6044": 0.000100653, + "6045": 0.0001028353, + "6046": 0.0001050112, + "6047": 0.0001071807, + "6048": 0.0001093438, + "6049": 0.0001115006, + "6050": 0.0001136512, + "6051": 0.0001157955, + "6052": 0.0001179336, + "6053": 0.0001200655, + "6054": 0.0001221913, + "6055": 0.0001243111, + "6056": 0.0001264247, + "6057": 0.0001285324, + "6058": 0.0001306341, + "6059": 0.0001327298, + "6060": 0.0001348196, + "6061": 0.0001369035, + "6062": 0.0001389816, + "6063": 0.0001410539, + "6064": 0.0001431204, + "6065": 0.0001451812, + "6066": 0.0001472363, + "6067": 0.0001492856, + "6068": 0.0001513294, + "6069": 0.0001533675, + "6070": 0.0001554001, + "6071": 0.0001574271, + "6072": 0.0001594486, + "6073": 0.0001614646, + "6074": 0.0001634751, + "6075": 0.0001654802, + "6076": 0.00016748, + "6077": 0.0001694743, + "6078": 0.0001714634, + "6079": 0.0001734471, + "6080": 0.0001754256, + "6081": 0.0001773988, + "6082": 0.0001793668, + "6083": 0.0001813296, + "6084": 0.0001832873, + "6085": 0.0001852398, + "6086": 0.0001865408, + "6087": 0.0001869463, + "6088": 0.0001869591, + "6089": 0.0001868172, + "6090": 0.0001865116, + "6091": 0.0001860358, + "6092": 0.0001853944, + "6093": 0.0001845959, + "6094": 0.0001836481, + "6095": 0.0001825309, + "6096": 0.0001810474, + "6097": 0.0001784067, + "6098": 0.0001731637, + "6099": 0.0001640396, + "6100": 0.0001503729, + "6101": 0.000131936, + "6102": 0.0001087186, + "6103": 0.000080818, + "6104": 0.0000483843, + "6105": 0.0000115931, + "6106": -0.000029369, + "6107": -0.000074313, + "6108": -0.0001230521, + "6109": -0.000175404, + "6110": -0.0002311928, + "6111": -0.0002902496, + "6112": -0.0003524129, + "6113": -0.0004175285, + "6114": -0.0004854496, + "6115": -0.0005560366, + "6116": -0.0006291565, + "6117": -0.000704683, + "6118": -0.0007824958, + "6119": -0.0008624804, + "6120": -0.0009445278, + "6121": -0.0010285342, + "6122": -0.0011144004, + "6123": -0.0012020319, + "6124": -0.0012913381, + "6125": -0.0013822323, + "6126": -0.0014746316, + "6127": -0.0015684561, + "6128": -0.0016636293, + "6129": -0.0017600772, + "6130": -0.0018577285, + "6131": -0.0019565145, + "6132": -0.0020563685, + "6133": -0.0021572256, + "6134": -0.0022590231, + "6135": -0.0023616996, + "6136": -0.0024651955, + "6137": -0.0025694523, + "6138": -0.0026744126, + "6139": -0.0027800205, + "6140": -0.0028862204, + "6141": -0.0029929581, + "6142": -0.0031001798, + "6143": -0.0032078323, + "6144": -0.003315863, + "6145": -0.0034242198, + "6146": -0.0035328507, + "6147": -0.0036417042, + "6148": -0.0037507291, + "6149": -0.003859874, + "6150": -0.0039690879, + "6151": -0.0040783198, + "6152": -0.0041875189, + "6153": -0.0042966341, + "6154": -0.0044056145, + "6155": -0.0045144091, + "6156": -0.0046229671, + "6157": -0.0047312374, + "6158": -0.004839169, + "6159": -0.0049467111, + "6160": -0.0050538127, + "6161": -0.0051604229, + "6162": -0.0052664912, + "6163": -0.005371967, + "6164": -0.0054767999, + "6165": -0.0055809402, + "6166": -0.0056843381, + "6167": -0.0057869445, + "6168": -0.0058887107, + "6169": -0.0059895889, + "6170": -0.0060895316, + "6171": -0.0061884924, + "6172": -0.0062864258, + "6173": -0.0063832871, + "6174": -0.0064790331, + "6175": -0.0065736214, + "6176": -0.0066670112, + "6177": -0.0067591632, + "6178": -0.0068500396, + "6179": -0.0069396041, + "6180": -0.0070278224, + "6181": -0.0071146619, + "6182": -0.0072000922, + "6183": -0.0072840847, + "6184": -0.0073666131, + "6185": -0.0074476532, + "6186": -0.0075271832, + "6187": -0.0076051834, + "6188": -0.0076816369, + "6189": -0.0077565288, + "6190": -0.0078298469, + "6191": -0.0079015813, + "6192": -0.0079717247, + "6193": -0.0080402722, + "6194": -0.0081072214, + "6195": -0.0081725723, + "6196": -0.0082363272, + "6197": -0.0082984908, + "6198": -0.00835907, + "6199": -0.0084180742, + "6200": -0.0084755144, + "6201": -0.0085314041, + "6202": -0.0085857585, + "6203": -0.0086385948, + "6204": -0.0086899317, + "6205": -0.0087397899, + "6206": -0.0087881913, + "6207": -0.0088351593, + "6208": -0.0088807187, + "6209": -0.0089248952, + "6210": -0.0089677159, + "6211": -0.0090092085, + "6212": -0.0090494017, + "6213": -0.0090883249, + "6214": -0.0091260079, + "6215": -0.0091624812, + "6216": -0.0091977756, + "6217": -0.0092319221, + "6218": -0.0092649518, + "6219": -0.0092968961, + "6220": -0.0093277862, + "6221": -0.0093576533, + "6222": -0.0093865284, + "6223": -0.0094144422, + "6224": -0.0094414253, + "6225": -0.0094675076, + "6226": -0.0094927189, + "6227": -0.0095170884, + "6228": -0.0095406447, + "6229": -0.0095634161, + "6230": -0.00958543, + "6231": -0.0096067135, + "6232": -0.0096272929, + "6233": -0.0096471937, + "6234": -0.0096664411, + "6235": -0.0096850592, + "6236": -0.0097030718, + "6237": -0.0097205016, + "6238": -0.0097373709, + "6239": -0.0097537011, + "6240": -0.0097695127, + "6241": -0.0097848256, + "6242": -0.0097992308, + "6243": -0.0098099735, + "6244": -0.0098150161, + "6245": -0.0098171327, + "6246": -0.0098186254, + "6247": -0.0098197934, + "6248": -0.0098206258, + "6249": -0.0098211424, + "6250": -0.0098213732, + "6251": -0.0098213215, + "6252": -0.0098201127, + "6253": -0.0098097312, + "6254": -0.0097651298, + "6255": -0.0096628452, + "6256": -0.0095094868, + "6257": -0.0093297686, + "6258": -0.0091384162, + "6259": -0.0089391401, + "6260": -0.0087358437, + "6261": -0.0085328614, + "6262": -0.0083317119, + "6263": -0.0081327346, + "6264": -0.0079367732, + "6265": -0.0077444712, + "6266": -0.0075559516, + "6267": -0.0073713249, + "6268": -0.0071907694, + "6269": -0.0070143509, + "6270": -0.0068420716, + "6271": -0.0066739485, + "6272": -0.0065099833, + "6273": -0.0063501497, + "6274": -0.006194415, + "6275": -0.0060427425, + "6276": -0.0058950856, + "6277": -0.0057513912, + "6278": -0.0056116024, + "6279": -0.0054756582, + "6280": -0.0053434933, + "6281": -0.0052150399, + "6282": -0.0050902274, + "6283": -0.0049689832, + "6284": -0.0048512328, + "6285": -0.0047369005, + "6286": -0.0046259092, + "6287": -0.0045181813, + "6288": -0.0044136383, + "6289": -0.0043122016, + "6290": -0.0042137925, + "6291": -0.0041183321, + "6292": -0.0040257421, + "6293": -0.0039359445, + "6294": -0.0038488619, + "6295": -0.0037644175, + "6296": -0.0036825356, + "6297": -0.0036031413, + "6298": -0.0035261607, + "6299": -0.0034515213, + "6300": -0.0033791514, + "6301": -0.0033089811, + "6302": -0.0032409414, + "6303": -0.003174965, + "6304": -0.003110986, + "6305": -0.0030489398, + "6306": -0.0029887635, + "6307": -0.0029303958, + "6308": -0.0028737766, + "6309": -0.0028188477, + "6310": -0.0027655523, + "6311": -0.0027138353, + "6312": -0.002663643, + "6313": -0.0026149232, + "6314": -0.0025676256, + "6315": -0.0025217009, + "6316": -0.0024771018, + "6317": -0.0024337823, + "6318": -0.0023916977, + "6319": -0.0023508049, + "6320": -0.0023110623, + "6321": -0.0022724295, + "6322": -0.0022348676, + "6323": -0.002198339, + "6324": -0.0021628074, + "6325": -0.0021282376, + "6326": -0.0020945958, + "6327": -0.0020618495, + "6328": -0.0020299672, + "6329": -0.0019989186, + "6330": -0.0019686743, + "6331": -0.0019392064, + "6332": -0.0019104876, + "6333": -0.0018824918, + "6334": -0.001855194, + "6335": -0.0018285698, + "6336": -0.0018025961, + "6337": -0.0017772503, + "6338": -0.0017525109, + "6339": -0.0017283571, + "6340": -0.001704769, + "6341": -0.0016817274, + "6342": -0.0016592137, + "6343": -0.0016372101, + "6344": -0.0016156997, + "6345": -0.0015946658, + "6346": -0.0015740928, + "6347": -0.0015539653, + "6348": -0.0015342688, + "6349": -0.0015149892, + "6350": -0.0014961129, + "6351": -0.0014776268, + "6352": -0.0014595186, + "6353": -0.001441776, + "6354": -0.0014243876, + "6355": -0.0014073421, + "6356": -0.0013906288, + "6357": -0.0013742374, + "6358": -0.001358158, + "6359": -0.0013423809, + "6360": -0.0013268969, + "6361": -0.0013116972, + "6362": -0.0012967732, + "6363": -0.0012821167, + "6364": -0.0012677198, + "6365": -0.0012535748, + "6366": -0.0012396744, + "6367": -0.0012260115, + "6368": -0.0012125793, + "6369": -0.0011993711, + "6370": -0.0011863807, + "6371": -0.0011736019, + "6372": -0.0011610288, + "6373": -0.0011486557, + "6374": -0.0011364772, + "6375": -0.0011244879, + "6376": -0.0011126828, + "6377": -0.0011010568, + "6378": -0.0010896053, + "6379": -0.0010783236, + "6380": -0.0010672073, + "6381": -0.0010562521, + "6382": -0.0010454539, + "6383": -0.0010348086, + "6384": -0.0010243124, + "6385": -0.0010139615, + "6386": -0.0010037524, + "6387": -0.0009936814, + "6388": -0.0009837453, + "6389": -0.0009739408, + "6390": -0.0009642647, + "6391": -0.0009547138, + "6392": -0.0009452854, + "6393": -0.0009359764, + "6394": -0.0009267841, + "6395": -0.0009177059, + "6396": -0.000908739, + "6397": -0.000899881, + "6398": -0.0008911294, + "6399": -0.0008824819, + "6400": -0.0008739361, + "6401": -0.0008654897, + "6402": -0.0008571407, + "6403": -0.0008488869, + "6404": -0.0008407263, + "6405": -0.0008326569, + "6406": -0.0008246768, + "6407": -0.0008167841, + "6408": -0.000808977, + "6409": -0.0008012537, + "6410": -0.0007936126, + "6411": -0.0007860519, + "6412": -0.00077857, + "6413": -0.0007711655, + "6414": -0.0007638367, + "6415": -0.0007565821, + "6416": -0.0007494004, + "6417": -0.0007422901, + "6418": -0.0007352499, + "6419": -0.0007282784, + "6420": -0.0007213743, + "6421": -0.0007145364, + "6422": -0.0007077634, + "6423": -0.0007010542, + "6424": -0.0006944075, + "6425": -0.0006878223, + "6426": -0.0006812975, + "6427": -0.0006748319, + "6428": -0.0006684246, + "6429": -0.0006620745, + "6430": -0.0006557806, + "6431": -0.0006495419, + "6432": -0.0006433575, + "6433": -0.0006372264, + "6434": -0.0006311478, + "6435": -0.0006251208, + "6436": -0.0006191446, + "6437": -0.0006132182, + "6438": -0.0006073408, + "6439": -0.0006015118, + "6440": -0.0005957302, + "6441": -0.0005899953, + "6442": -0.0005843064, + "6443": -0.0005786628, + "6444": -0.0005730637, + "6445": -0.0005675085, + "6446": -0.0005619964, + "6447": -0.0005565268, + "6448": -0.0005510991, + "6449": -0.0005457126, + "6450": -0.0005403666, + "6451": -0.0005350607, + "6452": -0.0005297942, + "6453": -0.0005245665, + "6454": -0.000519377, + "6455": -0.0005142252, + "6456": -0.0005091106, + "6457": -0.0005040325, + "6458": -0.0004989906, + "6459": -0.0004939842, + "6460": -0.000489013, + "6461": -0.0004840763, + "6462": -0.0004791737, + "6463": -0.0004743047, + "6464": -0.0004694689, + "6465": -0.0004646659, + "6466": -0.0004598951, + "6467": -0.0004551561, + "6468": -0.0004504486, + "6469": -0.0004457721, + "6470": -0.0004411262, + "6471": -0.0004365104, + "6472": -0.0004319245, + "6473": -0.000427368, + "6474": -0.0004228405, + "6475": -0.0004183416, + "6476": -0.0004138711, + "6477": -0.0004094285, + "6478": -0.0004050135, + "6479": -0.0004006257, + "6480": -0.0003962649, + "6481": -0.0003919306, + "6482": -0.0003876225, + "6483": -0.0003833404, + "6484": -0.0003790839, + "6485": -0.0003748527, + "6486": -0.0003706465, + "6487": -0.0003664651, + "6488": -0.000362308, + "6489": -0.000358175, + "6490": -0.0003540659, + "6491": -0.0003499804, + "6492": -0.0003459181, + "6493": -0.0003418788, + "6494": -0.0003378624, + "6495": -0.0003338684, + "6496": -0.0003298966, + "6497": -0.0003259469, + "6498": -0.0003220189, + "6499": -0.0003181124, + "6500": 0.0, + "6501": 0.0004387061, + "6502": 0.0014908986, + "6503": 0.0012523554, + "6504": 0.0012171587, + "6505": 0.0012423264, + "6506": 0.0012256952, + "6507": 0.0012273851, + "6508": 0.0012202149, + "6509": 0.0012177551, + "6510": 0.0012129093, + "6511": 0.0012092832, + "6512": 0.0012051165, + "6513": 0.0012012392, + "6514": 0.0011972718, + "6515": 0.0011933809, + "6516": 0.0011894962, + "6517": 0.001185645, + "6518": 0.0011818172, + "6519": 0.0011780155, + "6520": 0.0011742391, + "6521": 0.0011704875, + "6522": 0.0011667609, + "6523": 0.0011630587, + "6524": 0.0011593808, + "6525": 0.001155727, + "6526": 0.001152097, + "6527": 0.0011484905, + "6528": 0.0011449075, + "6529": 0.0011413475, + "6530": 0.0011378104, + "6531": 0.001134296, + "6532": 0.0011308041, + "6533": 0.0011273345, + "6534": 0.0011238868, + "6535": 0.001120461, + "6536": 0.0011170568, + "6537": 0.001113674, + "6538": 0.0011103125, + "6539": 0.0011069719, + "6540": 0.0011036522, + "6541": 0.0011003531, + "6542": 0.0010970744, + "6543": 0.0010938159, + "6544": 0.0010905775, + "6545": 0.001087359, + "6546": 0.0010841601, + "6547": 0.0010809808, + "6548": 0.0010778208, + "6549": 0.0010746799, + "6550": 0.001071558, + "6551": 0.0010684549, + "6552": 0.0010653705, + "6553": 0.0010623045, + "6554": 0.0010592568, + "6555": 0.0010562272, + "6556": 0.0010532157, + "6557": 0.0010502219, + "6558": 0.0010472458, + "6559": 0.0010442872, + "6560": 0.0010413459, + "6561": 0.0010384218, + "6562": 0.0010355148, + "6563": 0.0010326247, + "6564": 0.0010297513, + "6565": 0.0010268945, + "6566": 0.0010240542, + "6567": 0.0010212301, + "6568": 0.0010184223, + "6569": 0.0010156305, + "6570": 0.0010128546, + "6571": 0.0010100944, + "6572": 0.0010073499, + "6573": 0.0010046209, + "6574": 0.0010019072, + "6575": 0.0009992087, + "6576": 0.0009965254, + "6577": 0.0009938571, + "6578": 0.0009912035, + "6579": 0.0009885648, + "6580": 0.0009859406, + "6581": 0.0009833309, + "6582": 0.0009807356, + "6583": 0.0009781545, + "6584": 0.0009755876, + "6585": 0.0009730346, + "6586": 0.0003656821, + "6587": 0.0000138562, + "6588": -0.0000173596, + "6589": -0.0001164592, + "6590": -0.0001917156, + "6591": -0.0002814931, + "6592": -0.000359733, + "6593": -0.0004369944, + "6594": -0.0005093503, + "6595": -0.0006040001, + "6596": -0.0008657511, + "6597": -0.0017315692, + "6598": -0.0034515756, + "6599": -0.0056333363, + "6600": -0.0079980067, + "6601": -0.0104011341, + "6602": -0.0127721336, + "6603": -0.0150766504, + "6604": -0.0172970098, + "6605": -0.0194256778, + "6606": -0.0214597668, + "6607": -0.0233996167, + "6608": -0.025247083, + "6609": -0.0270050622, + "6610": -0.0286769275, + "6611": -0.0302663225, + "6612": -0.0317769645, + "6613": -0.0332125515, + "6614": -0.034576691, + "6615": -0.0358728606, + "6616": -0.0371043836, + "6617": -0.0382744154, + "6618": -0.0393859381, + "6619": -0.0404417587, + "6620": -0.041444512, + "6621": -0.042396664, + "6622": -0.0433005181, + "6623": -0.0441582211, + "6624": -0.04497177, + "6625": -0.0457430188, + "6626": -0.0464736859, + "6627": -0.0471653603, + "6628": -0.047819509, + "6629": -0.0484374828, + "6630": -0.049020523, + "6631": -0.0495697672, + "6632": -0.0500862548, + "6633": -0.0505709328, + "6634": -0.0510246611, + "6635": -0.0514482169, + "6636": -0.0518423003, + "6637": -0.0522075381, + "6638": -0.0525444891, + "6639": -0.0528536475, + "6640": -0.053135448, + "6641": -0.0533902689, + "6642": -0.0536184368, + "6643": -0.0538202301, + "6644": -0.0539958828, + "6645": -0.0541455883, + "6646": -0.0542695035, + "6647": -0.0543677518, + "6648": -0.0544404273, + "6649": -0.0544875983, + "6650": -0.0545093111, + "6651": -0.0545055937, + "6652": -0.0544764594, + "6653": -0.0544219106, + "6654": -0.0543419427, + "6655": -0.0542365477, + "6656": -0.0541057181, + "6657": -0.0539494509, + "6658": -0.053767751, + "6659": -0.0535606354, + "6660": -0.0533281368, + "6661": -0.0530703075, + "6662": -0.0527872228, + "6663": -0.052478985, + "6664": -0.0521457268, + "6665": -0.0517876145, + "6666": -0.0514048514, + "6667": -0.0509976811, + "6668": -0.0505663898, + "6669": -0.0501113097, + "6670": -0.0496328206, + "6671": -0.0491313524, + "6672": -0.0486073866, + "6673": -0.048061458, + "6674": -0.0474941554, + "6675": -0.046906122, + "6676": -0.0462980562, + "6677": -0.0456707104, + "6678": -0.0450248911, + "6679": -0.044361457, + "6680": -0.0436813177, + "6681": -0.0429854312, + "6682": -0.0422748016, + "6683": -0.0415504754, + "6684": -0.0408135388, + "6685": -0.0400651129, + "6686": -0.0393063502, + "6687": -0.0385384291, + "6688": -0.0377625498, + "6689": -0.0369799285, + "6690": -0.0361917924, + "6691": -0.0353993741, + "6692": -0.0346039059, + "6693": -0.0338066145, + "6694": -0.0330087151, + "6695": -0.0322114062, + "6696": -0.0314158642, + "6697": -0.0306232383, + "6698": -0.0298346457, + "6699": -0.029051167, + "6700": -0.0282738419, + "6701": -0.0275036656, + "6702": -0.0267415854, + "6703": -0.0259884974, + "6704": -0.025245244, + "6705": -0.0245126121, + "6706": -0.0237913312, + "6707": -0.0230820723, + "6708": -0.0223854468, + "6709": -0.0217020068, + "6710": -0.0210322448, + "6711": -0.020376594, + "6712": -0.0197354296, + "6713": -0.0191090697, + "6714": -0.0184977767, + "6715": -0.0179017594, + "6716": -0.0173211744, + "6717": -0.0167561292, + "6718": -0.0162066836, + "6719": -0.015672853, + "6720": -0.0151546105, + "6721": -0.0146518899, + "6722": -0.0141645882, + "6723": -0.0136925689, + "6724": -0.0132356641, + "6725": -0.0127936777, + "6726": -0.012366388, + "6727": -0.0119535504, + "6728": -0.0115548998, + "6729": -0.0111701533, + "6730": -0.0107990126, + "6731": -0.010441166, + "6732": -0.0100962905, + "6733": -0.0097640543, + "6734": -0.0094441174, + "6735": -0.0091361339, + "6736": -0.0088397517, + "6737": -0.0085546119, + "6738": -0.008280346, + "6739": -0.00801657, + "6740": -0.0077628793, + "6741": -0.0075188552, + "6742": -0.0068837433, + "6743": -0.0039832873, + "6744": -0.001023983, + "6745": -0.0009041009, + "6746": -0.0006325426, + "6747": -0.0005136275, + "6748": -0.0003255946, + "6749": -0.0001851453, + "6750": -0.0000459889, + "6751": 0.0000973848, + "6752": 0.0010547871, + "6753": 0.0088602419, + "6754": 0.034548921, + "6755": 0.0672821126, + "6756": 0.0867065566, + "6757": 0.0933189981, + "6758": 0.0976681572, + "6759": 0.1012566357, + "6760": 0.1018250645, + "6761": 0.1008179119, + "6762": 0.0999094074, + "6763": 0.0986943327, + "6764": 0.0969083337, + "6765": 0.0950099727, + "6766": 0.093131059, + "6767": 0.0911345003, + "6768": 0.0890632556, + "6769": 0.0870011655, + "6770": 0.0849341345, + "6771": 0.0828534859, + "6772": 0.0807829495, + "6773": 0.0787300431, + "6774": 0.0766923856, + "6775": 0.0746754889, + "6776": 0.0726845887, + "6777": 0.0707209512, + "6778": 0.0687865701, + "6779": 0.0668839885, + "6780": 0.065014703, + "6781": 0.0631799263, + "6782": 0.0613809419, + "6783": 0.0596187315, + "6784": 0.0578940364, + "6785": 0.0562074989, + "6786": 0.0545596097, + "6787": 0.0529507039, + "6788": 0.0513810036, + "6789": 0.0498506195, + "6790": 0.0483595541, + "6791": 0.0469077161, + "6792": 0.0454949282, + "6793": 0.0441209333, + "6794": 0.0427854025, + "6795": 0.0414879421, + "6796": 0.0402280997, + "6797": 0.0390053702, + "6798": 0.0378192019, + "6799": 0.0366690015, + "6800": 0.0355541392, + "6801": 0.0344739532, + "6802": 0.0334277547, + "6803": 0.0324148316, + "6804": 0.0314344522, + "6805": 0.0304858694, + "6806": 0.0295683233, + "6807": 0.0286810449, + "6808": 0.0278232588, + "6809": 0.0269941857, + "6810": 0.0261930449, + "6811": 0.0254190569, + "6812": 0.0246714447, + "6813": 0.0239494365, + "6814": 0.0232522666, + "6815": 0.0225791778, + "6816": 0.0219294219, + "6817": 0.0213022614, + "6818": 0.0206969706, + "6819": 0.0201128364, + "6820": 0.0195491591, + "6821": 0.0190052533, + "6822": 0.0184804483, + "6823": 0.0179740888, + "6824": 0.017485535, + "6825": 0.0170141634, + "6826": 0.0165593666, + "6827": 0.0161205536, + "6828": 0.01569715, + "6829": 0.0152885981, + "6830": 0.0148943565, + "6831": 0.0145139005, + "6832": 0.0141467217, + "6833": 0.0137923279, + "6834": 0.013450243, + "6835": 0.0131200067, + "6836": 0.012801174, + "6837": 0.0124933156, + "6838": 0.0121960168, + "6839": 0.0119088777, + "6840": 0.0116315127, + "6841": 0.0113635502, + "6842": 0.0111046323, + "6843": 0.010854414, + "6844": 0.0106125636, + "6845": 0.0103787617, + "6846": 0.0101527011, + "6847": 0.0099340863, + "6848": 0.0097226331, + "6849": 0.0095180686, + "6850": 0.0093201304, + "6851": 0.0091285663, + "6852": 0.0089431341, + "6853": 0.0087636013, + "6854": 0.0085897444, + "6855": 0.0084213491, + "6856": 0.0082582093, + "6857": 0.0081001274, + "6858": 0.0079469138, + "6859": 0.0077983863, + "6860": 0.0076543702, + "6861": 0.0075146978, + "6862": 0.0073792081, + "6863": 0.0072477468, + "6864": 0.0071201656, + "6865": 0.0069963223, + "6866": 0.0068760805, + "6867": 0.0067593092, + "6868": 0.0066458828, + "6869": 0.0065356806, + "6870": 0.006428587, + "6871": 0.0063244909, + "6872": 0.0062232856, + "6873": 0.0061248689, + "6874": 0.0060291424, + "6875": 0.0059360119, + "6876": 0.0058453868, + "6877": 0.0057571802, + "6878": 0.0056713086, + "6879": 0.0055876918, + "6880": 0.0055062528, + "6881": 0.0054269175, + "6882": 0.0053496149, + "6883": 0.0052742767, + "6884": 0.0052008373, + "6885": 0.0051292336, + "6886": 0.0050594049, + "6887": 0.0049912929, + "6888": 0.0049248416, + "6889": 0.004859997, + "6890": 0.0047967075, + "6891": 0.0047349229, + "6892": 0.0046745955, + "6893": 0.0046156789, + "6894": 0.0045581288, + "6895": 0.0045019025, + "6896": 0.0044469586, + "6897": 0.0043932576, + "6898": 0.0043407614, + "6899": 0.004289433, + "6900": 0.0042392372, + "6901": 0.0041901397, + "6902": 0.0041421076, + "6903": 0.0040951093, + "6904": 0.0040491142, + "6905": 0.0040040928, + "6906": 0.0039600167, + "6907": 0.0039168585, + "6908": 0.0038745917, + "6909": 0.0038331907, + "6910": 0.0037926311, + "6911": 0.003752889, + "6912": 0.0037139414, + "6913": 0.0036757662, + "6914": 0.003638342, + "6915": 0.0036016482, + "6916": 0.0035656647, + "6917": 0.0035303722, + "6918": 0.0034957522, + "6919": 0.0034617866, + "6920": 0.0034284579, + "6921": 0.0033957493, + "6922": 0.0033636445, + "6923": 0.0033321278, + "6924": 0.0033011838, + "6925": 0.0032707979, + "6926": 0.0032409557, + "6927": 0.0032116434, + "6928": 0.0031828476, + "6929": 0.0031545554, + "6930": 0.0031267542, + "6931": 0.0030994318, + "6932": 0.0030725764, + "6933": 0.0030461767, + "6934": 0.0030202216, + "6935": 0.0029947002, + "6936": 0.0029696023, + "6937": 0.0029449178, + "6938": 0.0029206367, + "6939": 0.0028967498, + "6940": 0.0028732477, + "6941": 0.0028501215, + "6942": 0.0028273626, + "6943": 0.0028049625, + "6944": 0.0027829131, + "6945": 0.0027612064, + "6946": 0.0027398347, + "6947": 0.0027187905, + "6948": 0.0026980667, + "6949": 0.002677656, + "6950": 0.0026575516, + "6951": 0.0026377469, + "6952": 0.0026182353, + "6953": 0.0025990107, + "6954": 0.0025800667, + "6955": 0.0025613975, + "6956": 0.0025429973, + "6957": 0.0025248603, + "6958": 0.0025069812, + "6959": 0.0024893546, + "6960": 0.0024719753, + "6961": 0.0024548381, + "6962": 0.0024379382, + "6963": 0.0024212708, + "6964": 0.0024048312, + "6965": 0.0023886149, + "6966": 0.0023726173, + "6967": 0.0023568343, + "6968": 0.0023412615, + "6969": 0.0023258949, + "6970": 0.0023107304, + "6971": 0.0022957642, + "6972": 0.0022809925, + "6973": 0.0022664115, + "6974": 0.0022520176, + "6975": 0.0022378074, + "6976": 0.0022237773, + "6977": 0.0022099241, + "6978": 0.0021962443, + "6979": 0.0021827349, + "6980": 0.0021693927, + "6981": 0.0021562147, + "6982": 0.0021431979, + "6983": 0.0021303394, + "6984": 0.0021176363, + "6985": 0.0021050859, + "6986": 0.0020926855, + "6987": 0.0020804324, + "6988": 0.002068324, + "6989": 0.0020563579, + "6990": 0.0020445316, + "6991": 0.0020328426, + "6992": 0.0020212886, + "6993": 0.0020098674, + "6994": 0.0019985765, + "6995": 0.001987414, + "6996": 0.0019763775, + "6997": 0.001965465, + "6998": 0.0019546744, + "6999": 0.0019440037, + "7000": 0.0, + "7001": 1.9087155762, + "7002": 10.553515632, + "7003": 23.5366423342, + "7004": 35.6349679647, + "7005": 47.466454126, + "7006": 59.3685596064, + "7007": 71.1992863053, + "7008": 82.9939712841, + "7009": 94.741383242, + "7010": 106.4478453897, + "7011": 118.1104719683, + "7012": 129.7311351791, + "7013": 141.3094070726, + "7014": 152.8459194109, + "7015": 164.3408232942, + "7016": 175.7944736177, + "7017": 187.2071370268, + "7018": 198.5791096775, + "7019": 209.9106738117, + "7020": 221.2021114694, + "7021": 232.4537017812, + "7022": 243.6657203672, + "7023": 254.8384406601, + "7024": 265.9721328531, + "7025": 277.0670646829, + "7026": 288.1235010073, + "7027": 299.1417041064, + "7028": 310.1219335719, + "7029": 321.0644464192, + "7030": 331.9694970829, + "7031": 342.8373374694, + "7032": 353.6682169812, + "7033": 364.4623825537, + "7034": 375.2200786858, + "7035": 385.9415474717, + "7036": 396.6270286326, + "7037": 407.2767595465, + "7038": 417.8909752792, + "7039": 428.4699086134, + "7040": 439.0137900783, + "7041": 449.5228479777, + "7042": 459.9973084191, + "7043": 470.4373953412, + "7044": 480.8433305408, + "7045": 491.2153337009, + "7046": 501.5536224158, + "7047": 511.8584122189, + "7048": 522.129916607, + "7049": 532.3683470661, + "7050": 542.5739130971, + "7051": 552.746822239, + "7052": 562.8872800944, + "7053": 572.9954903525, + "7054": 583.0716548126, + "7055": 593.1159734078, + "7056": 603.128644227, + "7057": 613.1098635379, + "7058": 623.0598258088, + "7059": 632.9787237302, + "7060": 642.8667482366, + "7061": 652.7240885272, + "7062": 662.5509320871, + "7063": 672.3474647073, + "7064": 682.1138705053, + "7065": 691.8503319446, + "7066": 701.5570298548, + "7067": 711.2341434502, + "7068": 720.8818503493, + "7069": 730.5003265936, + "7070": 740.0897466656, + "7071": 749.6502835073, + "7072": 759.1821085386, + "7073": 768.6853916736, + "7074": 778.1603013398, + "7075": 787.6070044936, + "7076": 797.0256666387, + "7077": 806.4164518414, + "7078": 815.7795227484, + "7079": 825.1150406017, + "7080": 834.4231652557, + "7081": 843.7040551921, + "7082": 852.9578675363, + "7083": 862.1847580716, + "7084": 871.3848812557, + "7085": 880.5583902342, + "7086": 3734.3295050562, + "7087": 9956.9990536889, + "7088": 18067.2038848507, + "7089": 26881.6203945902, + "7090": 35732.9424856231, + "7091": 44311.5330884432, + "7092": 52494.1816362921, + "7093": 60243.388706897, + "7094": 67558.4796180861, + "7095": 74453.6419540876, + "7096": 80947.8461265105, + "7097": 87059.0299760001, + "7098": 92801.8098847159, + "7099": 98190.3326534987, + "7100": 103240.6978489703, + "7101": 107970.0436414381, + "7102": 112395.4991259498, + "7103": 116533.6826468479, + "7104": 120400.4878491019, + "7105": 124011.0071014209, + "7106": 127379.5141465988, + "7107": 130519.478076066, + "7108": 133443.5903828268, + "7109": 136163.7992859139, + "7110": 138691.3464296947, + "7111": 141036.8043777596, + "7112": 143210.1135099066, + "7113": 145220.6178243049, + "7114": 147077.0992688022, + "7115": 148787.8104680482, + "7116": 150360.5057842066, + "7117": 151802.470717234, + "7118": 153120.5496836211, + "7119": 154321.1722320018, + "7120": 155410.3777660352, + "7121": 156393.838849424, + "7122": 157276.8831702984, + "7123": 158064.5142413974, + "7124": 158761.4309108722, + "7125": 159372.0457558127, + "7126": 159900.5024275533, + "7127": 160350.6920144674, + "7128": 160726.2684845557, + "7129": 161030.6632667198, + "7130": 161267.099026273, + "7131": 161438.602687002, + "7132": 161548.0177489685, + "7133": 161598.0159482581, + "7134": 161591.108302019, + "7135": 161529.6555794098, + "7136": 161415.8782364685, + "7137": 161251.8658504229, + "7138": 161039.5860865803, + "7139": 160780.893228646, + "7140": 160477.5363011202, + "7141": 160131.1668102983, + "7142": 159743.3461283499, + "7143": 159315.5525429512, + "7144": 158849.1879930106, + "7145": 158345.5845091267, + "7146": 157806.0103755635, + "7147": 157231.676028704, + "7148": 156623.7397051519, + "7149": 155983.3128508917, + "7150": 155311.4653011763, + "7151": 154609.2302391109, + "7152": 153877.6089392212, + "7153": 153117.5753006544, + "7154": 152330.0801730609, + "7155": 151516.0554766489, + "7156": 150676.4181164169, + "7157": 149812.0736891351, + "7158": 148923.9199803145, + "7159": 148012.8502471536, + "7160": 147079.7562823274, + "7161": 146125.5312524938, + "7162": 145151.0723045424, + "7163": 144157.2829319545, + "7164": 143145.0750931558, + "7165": 142115.3710734906, + "7166": 141069.1050824077, + "7167": 140007.2245776662, + "7168": 138930.6913088512, + "7169": 137840.4820732382, + "7170": 136737.5891780844, + "7171": 135623.0206047414, + "7172": 134497.7998715906, + "7173": 133362.9655946704, + "7174": 132219.5707470094, + "7175": 131068.6816200349, + "7176": 129911.3764930176, + "7177": 128748.744019246, + "7178": 127581.8813405076, + "7179": 126411.8919443935, + "7180": 125239.8832819251, + "7181": 124066.9641659203, + "7182": 122894.2419733623, + "7183": 121722.8196776829, + "7184": 120553.7927393217, + "7185": 119388.2458850473, + "7186": 118227.2498083301, + "7187": 117071.8578244266, + "7188": 115923.1025147773, + "7189": 114781.9923957669, + "7190": 113649.5086468282, + "7191": 112526.6019322917, + "7192": 111414.189350266, + "7193": 110313.1515402158, + "7194": 109224.3299787937, + "7195": 108148.5244909218, + "7196": 107086.4910001675, + "7197": 106038.9395391464, + "7198": 105006.5325371231, + "7199": 103989.8833981896, + "7200": 102989.5553795053, + "7201": 102006.0607751267, + "7202": 101039.860407026, + "7203": 100091.3634210866, + "7204": 99160.9273822033, + "7205": 98248.8586592082, + "7206": 97355.4130872131, + "7207": 96480.7968921674, + "7208": 95625.1678600115, + "7209": 94788.6367307658, + "7210": 93971.2687962802, + "7211": 93173.0856791486, + "7212": 92394.0672694892, + "7213": 91634.1537958706, + "7214": 90893.2480066151, + "7215": 90171.2174380091, + "7216": 89467.8967465431, + "7217": 88783.090083188, + "7218": 88116.5734888167, + "7219": 87468.0972911793, + "7220": 86837.3884853026, + "7221": 86224.1530807437, + "7222": 85628.0784007742, + "7223": 85048.8353202494, + "7224": 84486.0804305895, + "7225": 83939.4581219218, + "7226": 83408.6025739483, + "7227": 82893.1396483966, + "7228": 82392.6886768274, + "7229": 81906.864137721, + "7230": 81435.2772154405, + "7231": 80977.5372293439, + "7232": 80533.2529108132, + "7233": 80102.0334828024, + "7234": 79683.4894473899, + "7235": 79277.2328861532, + "7236": 78882.8768818875, + "7237": 78500.0333292797, + "7238": 78128.3079946045, + "7239": 77767.2920125717, + "7240": 77416.5531526641, + "7241": 77075.642736, + "7242": 76211.2825702202, + "7243": 71993.8070985401, + "7244": 64835.211582939, + "7245": 56357.8123856488, + "7246": 47441.2261498513, + "7247": 38624.27117794, + "7248": 30137.965554164, + "7249": 22072.6420921383, + "7250": 14449.1887660047, + "7251": 7261.8814854911, + "7252": 499.6619128323, + "7253": -5782.818987689, + "7254": -11236.5909513443, + "7255": -15179.2646123829, + "7256": -17484.096418685, + "7257": -18802.0001658272, + "7258": -19670.97218492, + "7259": -20220.5663887966, + "7260": -20525.6444362775, + "7261": -20707.0316309119, + "7262": -20820.8121932338, + "7263": -20873.0522016821, + "7264": -20879.993031982, + "7265": -20859.7272359991, + "7266": -20816.9366593255, + "7267": -20753.5122734099, + "7268": -20673.8704415714, + "7269": -20580.754088853, + "7270": -20475.1395929113, + "7271": -20358.3074129065, + "7272": -20231.5589289759, + "7273": -20095.7186539859, + "7274": -19951.5096144404, + "7275": -19799.6889155597, + "7276": -19640.9156117727, + "7277": -19475.7779658605, + "7278": -19304.8516867356, + "7279": -19128.6831513154, + "7280": -18947.7837610553, + "7281": -18762.6436033458, + "7282": -18573.7320297301, + "7283": -18381.4951892708, + "7284": -18186.3584141156, + "7285": -17988.7272269495, + "7286": -17788.9869486781, + "7287": -17587.5031726644, + "7288": -17384.6222784174, + "7289": -17180.6716305401, + "7290": -16975.9599229183, + "7291": -16770.7776097661, + "7292": -16565.3973100258, + "7293": -16360.0742571864, + "7294": -16155.0467977282, + "7295": -15950.5369097054, + "7296": -15746.7507471021, + "7297": -15543.8792088647, + "7298": -15342.0985235309, + "7299": -15141.5708460414, + "7300": -14942.4448632597, + "7301": -14744.8564034263, + "7302": -14548.9290458999, + "7303": -14354.7747279436, + "7304": -14162.4943453948, + "7305": -13972.1783445196, + "7306": -13783.9073027162, + "7307": -13597.7524960167, + "7308": -13413.7764516667, + "7309": -13232.0334843513, + "7310": -13052.5702149082, + "7311": -12875.4260706108, + "7312": -12700.6337663384, + "7313": -12528.2197661502, + "7314": -12358.2047249671, + "7315": -12190.6039102258, + "7316": -12025.4276035195, + "7317": -11862.6814823609, + "7318": -11702.366982318, + "7319": -11544.4816398632, + "7320": -11389.0194163602, + "7321": -11235.9710036759, + "7322": -11085.324111963, + "7323": -10937.0637401975, + "7324": -10791.1724300945, + "7325": -10647.6305040451, + "7326": -10506.4162877381, + "7327": -10367.5063181372, + "7328": -10230.87553749, + "7329": -10096.4974740408, + "7330": -9964.344410118, + "7331": -9834.3875382499, + "7332": -9706.5971059548, + "7333": -9580.9425498343, + "7334": -9457.3926195763, + "7335": -9335.9154924604, + "7336": -9216.4788789319, + "7337": -9099.0501197913, + "7338": -8983.5962755208, + "7339": -8870.0842082488, + "7340": -8758.4806568274, + "7341": -8648.7523054751, + "7342": -8540.8658464148, + "7343": -8434.7880369139, + "7344": -8330.4857511093, + "7345": -8227.926026982, + "7346": -8127.0761088212, + "7347": -8027.9034855011, + "7348": -7930.3759248712, + "7349": -7834.4615045449, + "7350": -7740.128639351, + "7351": -7647.3461056986, + "7352": -7556.083063087, + "7353": -7466.3090729791, + "7354": -7377.9941152415, + "7355": -7291.1086023417, + "7356": -7205.6233914776, + "7357": -7121.5097948073, + "7358": -7038.739587929, + "7359": -6957.2850167585, + "7360": -6877.1188029321, + "7361": -6798.2141478647, + "7362": -6720.5447355718, + "7363": -6644.0847343669, + "7364": -6568.8087975317, + "7365": -6494.69206305, + "7366": -6421.7101524933, + "7367": -6349.8391691341, + "7368": -6279.0556953634, + "7369": -6209.3367894773, + "7370": -6140.6599818982, + "7371": -6073.0032708869, + "7372": -6006.3451178004, + "7373": -5940.6644419457, + "7374": -5875.940615073, + "7375": -5812.1534555553, + "7376": -5749.2832222884, + "7377": -5687.3106083518, + "7378": -5626.216734461, + "7379": -5565.9831422437, + "7380": -5506.5917873667, + "7381": -5448.0250325403, + "7382": -5390.2656404247, + "7383": -5333.2967664576, + "7384": -5277.1019516274, + "7385": -5221.6651152053, + "7386": -5166.9705474578, + "7387": -5113.0029023511, + "7388": -5059.7471902642, + "7389": -5007.1887707215, + "7390": -4955.313345157, + "7391": -4904.1069497211, + "7392": -4853.5559481386, + "7393": -4803.6470246268, + "7394": -4754.3671768807, + "7395": -4705.7037091337, + "7396": -4657.6442252976, + "7397": -4610.1766221891, + "7398": -4563.2890828466, + "7399": -4516.9700699417, + "7400": -4471.2083192896, + "7401": -4425.9928334597, + "7402": -4381.3128754913, + "7403": -4337.1579627155, + "7404": -4293.517860684, + "7405": -4250.3825772092, + "7406": -4207.7423565133, + "7407": -4165.5876734899, + "7408": -4123.909228077, + "7409": -4082.6979397426, + "7410": -4041.9449420823, + "7411": -4001.6415775294, + "7412": -3961.7793921764, + "7413": -3922.3501307077, + "7414": -3883.3457314436, + "7415": -3844.7583214928, + "7416": -3806.5802120144, + "7417": -3768.8038935875, + "7418": -3731.4220316871, + "7419": -3694.4274622647, + "7420": -3657.8131874338, + "7421": -3621.5723712565, + "7422": -3585.6983356319, + "7423": -3550.184556283, + "7424": -3515.0246588421, + "7425": -3480.2124150314, + "7426": -3445.7417389389, + "7427": -3411.6066833857, + "7428": -3377.8014363857, + "7429": -3344.3203176933, + "7430": -3311.1577754389, + "7431": -3278.3083828507, + "7432": -3245.7668350592, + "7433": -3213.5279459849, + "7434": -3181.586645306, + "7435": -3149.9379755045, + "7436": -3118.5770889899, + "7437": -3087.4992452967, + "7438": -3056.6998083575, + "7439": -3026.1742438453, + "7440": -2995.918116588, + "7441": -2965.9270880504, + "7442": -2936.1969138822, + "7443": -2906.7234415333, + "7444": -2877.5026079298, + "7445": -2848.5304372146, + "7446": -2819.8030385468, + "7447": -2791.3166039604, + "7448": -2763.0674062808, + "7449": -2735.0517970966, + "7450": -2707.2662047867, + "7451": -2679.7071325996, + "7452": -2652.3711567851, + "7453": -2625.254924776, + "7454": -2598.355153419, + "7455": -2571.6686272534, + "7456": -2545.1921968356, + "7457": -2518.9227771102, + "7458": -2492.8573458233, + "7459": -2466.9929419802, + "7460": -2441.326664344, + "7461": -2415.8556699745, + "7462": -2390.577172807, + "7463": -2365.4884422696, + "7464": -2340.586801937, + "7465": -2315.8696282211, + "7466": -2291.334349097, + "7467": -2266.9784428628, + "7468": -2242.7994369333, + "7469": -2218.7949066653, + "7470": -2194.9624742153, + "7471": -2171.2998074274, + "7472": -2147.8046187506, + "7473": -2124.4746641859, + "7474": -2101.3077422607, + "7475": -2078.3016930312, + "7476": -2055.4543971107, + "7477": -2032.7637747242, + "7478": -2010.2277847883, + "7479": -1987.8444240145, + "7480": -1965.6117260376, + "7481": -1943.5277605656, + "7482": -1921.5906325538, + "7483": -1899.7984813986, + "7484": -1878.1494801541, + "7485": -1856.6418347685, + "7486": -1835.2737833407, + "7487": -1814.0435953957, + "7488": -1792.9495711802, + "7489": -1771.9900409749, + "7490": -1751.1633644258, + "7491": -1730.4679298922, + "7492": -1709.902153812, + "7493": -1689.4644800825, + "7494": -1669.1533794586, + "7495": -1648.9673489642, + "7496": -1628.9049113213, + "7497": -1608.964614391, + "7498": -1589.145030631, + "7499": -1569.4447565651, + "7500": 0.0, + "7501": 0.0, + "7502": 0.0, + "7503": 0.0, + "7504": 0.0, + "7505": 0.0, + "7506": 0.0, + "7507": 0.0, + "7508": 0.0, + "7509": 0.0, + "7510": 0.0, + "7511": 0.0, + "7512": 0.0, + "7513": 0.0, + "7514": 0.0, + "7515": 0.0, + "7516": 0.0, + "7517": 0.0, + "7518": 0.0, + "7519": 0.0, + "7520": 0.0, + "7521": 0.0, + "7522": 0.0, + "7523": 0.0, + "7524": 0.0, + "7525": 0.0, + "7526": 0.0, + "7527": 0.0, + "7528": 0.0, + "7529": 0.0, + "7530": 0.0, + "7531": 0.0, + "7532": 0.0, + "7533": 0.0, + "7534": 0.0, + "7535": 0.0, + "7536": 0.0, + "7537": 0.0, + "7538": 0.0, + "7539": 0.0, + "7540": 0.0, + "7541": 0.0, + "7542": 0.0, + "7543": 0.0, + "7544": 0.0, + "7545": 0.0, + "7546": 0.0, + "7547": 0.0, + "7548": 0.0, + "7549": 0.0, + "7550": 0.0, + "7551": 0.0, + "7552": 0.0, + "7553": 0.0, + "7554": 0.0, + "7555": 0.0, + "7556": 0.0, + "7557": 0.0, + "7558": 0.0, + "7559": 0.0, + "7560": 0.0, + "7561": 0.0, + "7562": 0.0, + "7563": 0.0, + "7564": 0.0, + "7565": 0.0, + "7566": 0.0, + "7567": 0.0, + "7568": 0.0, + "7569": 0.0, + "7570": 0.0, + "7571": 0.0, + "7572": 0.0, + "7573": 0.0, + "7574": 0.0, + "7575": 0.0, + "7576": 0.0, + "7577": 0.0, + "7578": 0.0, + "7579": 0.0, + "7580": 0.0, + "7581": 0.0, + "7582": 0.0, + "7583": 0.0, + "7584": 0.0, + "7585": 0.0, + "7586": 2847.2163698538, + "7587": 9067.7245504363, + "7588": 17177.8460009269, + "7589": 25992.8561769267, + "7590": 34845.5581763994, + "7591": 43426.3169363167, + "7592": 51611.9201597822, + "7593": 59364.8204851476, + "7594": 66684.3103993091, + "7595": 73584.6510603008, + "7596": 80085.6331144655, + "7597": 86208.5900891312, + "7598": 91974.752015856, + "7599": 97404.5923928552, + "7600": 102517.5936239016, + "7601": 107332.1870722317, + "7602": 111865.7646397231, + "7603": 116134.7184150201, + "7604": 120154.4901515631, + "7605": 123939.6229878347, + "7606": 127503.8123158452, + "7607": 130859.954595846, + "7608": 134020.1937083823, + "7609": 136995.9647640676, + "7610": 139798.0354251235, + "7611": 142436.5448440664, + "7612": 144921.0403417968, + "7613": 147260.5119499327, + "7614": 149463.4249390501, + "7615": 151537.7504491277, + "7616": 153490.9943324363, + "7617": 155330.22431299, + "7618": 157062.0955607264, + "7619": 158692.8747729129, + "7620": 160228.4628498948, + "7621": 161674.4162472309, + "7622": 163035.9670814727, + "7623": 164318.0420623396, + "7624": 165525.2803197934, + "7625": 166662.0501905183, + "7626": 167732.4650245491, + "7627": 168740.3980692405, + "7628": 169689.4964844365, + "7629": 170583.194539552, + "7630": 171424.7260403211, + "7631": 172217.136030175, + "7632": 172963.2918085938, + "7633": 173665.8933062989, + "7634": 174327.4828548291, + "7635": 174950.4543858524, + "7636": 175537.0620934976, + "7637": 176089.4285910542, + "7638": 176609.5525915516, + "7639": 177099.3161400108, + "7640": 177560.4914235394, + "7641": 177994.7471839093, + "7642": 178403.6547558235, + "7643": 178788.6937527186, + "7644": 179151.257420679, + "7645": 179492.6576798342, + "7646": 179814.1298714826, + "7647": 180116.837228117, + "7648": 180401.875082529, + "7649": 180670.2748312208, + "7650": 180923.0076664662, + "7651": 181160.9880905258, + "7652": 181385.077224732, + "7653": 181596.0859254168, + "7654": 181794.7777179593, + "7655": 181981.8715595669, + "7656": 182158.0444407894, + "7657": 182323.9338351786, + "7658": 182480.1400059575, + "7659": 182627.2281780446, + "7660": 182765.730583296, + "7661": 182896.1483863606, + "7662": 183018.9534981226, + "7663": 183134.5902832892, + "7664": 183243.477168304, + "7665": 183346.0081554042, + "7666": 183442.5542482998, + "7667": 183533.4647946334, + "7668": 183619.068750079, + "7669": 183699.6758686527, + "7670": 183775.5778235442, + "7671": 183847.0492625225, + "7672": 183914.3488017363, + "7673": 183977.7199615048, + "7674": 184037.3920474854, + "7675": 184093.5809804049, + "7676": 184146.4900773597, + "7677": 184196.3107875088, + "7678": 184243.2233848241, + "7679": 184287.3976204038, + "7680": 184328.9933367085, + "7681": 184368.1610459444, + "7682": 184405.0424746846, + "7683": 184439.7710767002, + "7684": 184472.4725158569, + "7685": 184503.2651208238, + "7686": 184532.2603132403, + "7687": 184559.5630108905, + "7688": 184585.2720073431, + "7689": 184609.4803294314, + "7690": 184632.2755738672, + "7691": 184653.7402242047, + "7692": 184673.9519493043, + "7693": 184692.9838843733, + "7694": 184710.9048956023, + "7695": 184727.7798293549, + "7696": 184743.6697468107, + "7697": 184758.6321449128, + "7698": 184772.7211644175, + "7699": 184785.9877858008, + "7700": 184798.4800137283, + "7701": 184810.2430507581, + "7702": 184821.3194609042, + "7703": 184831.7493236526, + "7704": 184841.570378987, + "7705": 184850.818163949, + "7706": 184859.5261412276, + "7707": 184867.7258202423, + "7708": 184875.4468711581, + "7709": 184882.7172322465, + "7710": 184889.5632109782, + "7711": 184896.0095792154, + "7712": 184902.0796628481, + "7713": 184907.7954261976, + "7714": 184913.1775514926, + "7715": 184918.2455137077, + "7716": 184923.0176510313, + "7717": 184927.5112312205, + "7718": 184931.7425140813, + "7719": 184935.7268102982, + "7720": 184939.4785368241, + "7721": 184943.011269023, + "7722": 184946.3377897418, + "7723": 184949.4701354587, + "7724": 184952.4196396143, + "7725": 184955.1969731556, + "7726": 184957.8121821705, + "7727": 184960.2747221864, + "7728": 184962.5934880761, + "7729": 184964.7768372021, + "7730": 184966.8326006804, + "7731": 184968.768071902, + "7732": 184970.5899494236, + "7733": 184972.3041862737, + "7734": 184973.9156458825, + "7735": 184975.4273595623, + "7736": 184976.838975762, + "7737": 184978.143634814, + "7738": 184979.3220683628, + "7739": 184980.3330149489, + "7740": 184981.1031841524, + "7741": 184981.5327297836, + "7742": 184446.0198276745, + "7743": 180515.7227292636, + "7744": 173519.5109509305, + "7745": 165091.153320983, + "7746": 156212.3593413488, + "7747": 147423.3878905201, + "7748": 138958.7922568248, + "7749": 130907.3522600929, + "7750": 123291.405511489, + "7751": 116105.4018769122, + "7752": 109332.6735289873, + "7753": 102952.6664627529, + "7754": 96943.9660152349, + "7755": 91285.5362441885, + "7756": 85957.2007701165, + "7757": 80939.8053138318, + "7758": 76215.2479106782, + "7759": 71766.4554602671, + "7760": 67577.3397123037, + "7761": 63632.7465563039, + "7762": 59918.4043571616, + "7763": 56420.8736529913, + "7764": 53127.4990907178, + "7765": 50026.3638722093, + "7766": 47106.2467348254, + "7767": 44356.5813904277, + "7768": 41767.4183097591, + "7769": 39329.3887281332, + "7770": 37033.6707482006, + "7771": 34871.9574196714, + "7772": 32836.4266815684, + "7773": 30919.7130586968, + "7774": 29114.8810101104, + "7775": 27415.3998332153, + "7776": 25815.1200327383, + "7777": 24308.2510690658, + "7778": 22889.3404054427, + "7779": 21553.2537782182, + "7780": 20295.1566187471, + "7781": 19110.4965597228, + "7782": 17994.9869626442, + "7783": 16944.5914068092, + "7784": 15955.5090837099, + "7785": 15024.1610439805, + "7786": 14147.1772471315, + "7787": 13321.3843672119, + "7788": 12543.7943102734, + "7789": 11811.5934020887, + "7790": 11122.1322069992, + "7791": 10472.9159410528, + "7792": 9861.5954447416, + "7793": 9285.9586826754, + "7794": 8743.922739432, + "7795": 8233.5262826226, + "7796": 7752.9224659001, + "7797": 7300.3722462295, + "7798": 6874.2380912395, + "7799": 6472.9780538869, + "7800": 6095.1401929907, + "7801": 5739.3573194494, + "7802": 5404.3420491291, + "7803": 5088.8821445234, + "7804": 4791.8361283261, + "7805": 4512.1291530483, + "7806": 4248.7491117316, + "7807": 4000.7429756846, + "7808": 3767.2133459927, + "7809": 3547.3152063203, + "7810": 3340.2528652583, + "7811": 3145.2770771505, + "7812": 2961.6823309821, + "7813": 2788.8042975211, + "7814": 2626.0174254722, + "7815": 2472.7326779485, + "7816": 2328.3954010681, + "7817": 2192.4833169646, + "7818": 2064.5046339479, + "7819": 1943.9962669787, + "7820": 1830.5221620164, + "7821": 1723.6717181772, + "7822": 1623.0583019935, + "7823": 1528.3178483986, + "7824": 1439.1075433735, + "7825": 1355.1045834899, + "7826": 1276.0050078612, + "7827": 1201.5225982733, + "7828": 1131.3878435173, + "7829": 1065.3469641756, + "7830": 1003.1609943321, + "7831": 944.6049168856, + "7832": 889.4668493351, + "7833": 837.5472770929, + "7834": 788.6583315501, + "7835": 742.6231102825, + "7836": 699.2750369374, + "7837": 658.4572584844, + "7838": 620.0220776502, + "7839": 583.8304184822, + "7840": 549.7513231093, + "7841": 517.6614778759, + "7842": 487.4447671377, + "7843": 458.9918531023, + "7844": 432.1997801953, + "7845": 406.9716025205, + "7846": 383.2160330651, + "7847": 360.8471133826, + "7848": 339.783902555, + "7849": 319.9501843129, + "7850": 301.2741912495, + "7851": 283.6883451339, + "7852": 267.1290123826, + "7853": 251.5362738035, + "7854": 236.8537077821, + "7855": 223.0281861213, + "7856": 210.0096818004, + "7857": 197.751087954, + "7858": 186.2080474184, + "7859": 175.3387922266, + "7860": 165.1039924737, + "7861": 155.4666140024, + "7862": 146.3917843974, + "7863": 137.846666801, + "7864": 129.800341094, + "7865": 122.2236920131, + "7866": 115.0893037985, + "7867": 108.3713609912, + "7868": 102.0455550208, + "7869": 96.0889962465, + "7870": 90.4801311313, + "7871": 85.1986642523, + "7872": 80.2254848619, + "7873": 75.5425977368, + "7874": 71.1330580631, + "7875": 66.9809101223, + "7876": 63.0711295559, + "7877": 59.3895690011, + "7878": 55.9229068984, + "7879": 52.6585992889, + "7880": 49.584834424, + "7881": 46.6904900255, + "7882": 43.96509304, + "7883": 41.3987817425, + "7884": 38.9822700523, + "7885": 36.706813932, + "7886": 34.5641797471, + "7887": 32.5466144733, + "7888": 30.6468176426, + "7889": 28.8579149266, + "7890": 27.1734332622, + "7891": 25.5872774292, + "7892": 24.0937079949, + "7893": 22.6873205464, + "7894": 21.3630261345, + "7895": 20.1160328604, + "7896": 18.9418285355, + "7897": 17.836164355, + "7898": 16.7950395234, + "7899": 15.8146867778, + "7900": 14.8915587565, + "7901": 14.0223151627, + "7902": 13.2038106781, + "7903": 12.4330835814, + "7904": 11.7073450318, + "7905": 11.0239689773, + "7906": 10.3804826527, + "7907": 9.7745576321, + "7908": 9.2040014034, + "7909": 8.6667494348, + "7910": 8.1608577046, + "7911": 7.6844956665, + "7912": 7.2359396262, + "7913": 6.8135665041, + "7914": 6.4158479623, + "7915": 6.0413448743, + "7916": 5.6887021177, + "7917": 5.3566436708, + "7918": 5.0439679952, + "7919": 4.7495436882, + "7920": 4.4723053888, + "7921": 4.211249923, + "7922": 3.9654326733, + "7923": 3.7339641612, + "7924": 3.5160068285, + "7925": 3.3107720064, + "7926": 3.1175170622, + "7927": 2.9355427116, + "7928": 2.7641904886, + "7929": 2.6028403631, + "7930": 2.450908497, + "7931": 2.3078451317, + "7932": 2.173132599, + "7933": 2.0462834477, + "7934": 1.9268386799, + "7935": 1.8143660901, + "7936": 1.7084587015, + "7937": 1.6087332929, + "7938": 1.5148290125, + "7939": 1.4264060719, + "7940": 1.3431445168, + "7941": 1.264743069, + "7942": 1.1909180364, + "7943": 1.1214022865, + "7944": 1.0559442798, + "7945": 0.9943071594, + "7946": 0.9362678941, + "7947": 0.8816164716, + "7948": 0.8301551382, + "7949": 0.7816976834, + "7950": 0.7360687661, + "7951": 0.69310328, + "7952": 0.6526457567, + "7953": 0.6145498023, + "7954": 0.5786775684, + "7955": 0.544899253, + "7956": 0.5130926307, + "7957": 0.4831426107, + "7958": 0.4549408203, + "7959": 0.4283852125, + "7960": 0.4033796971, + "7961": 0.3798337928, + "7962": 0.3576622998, + "7963": 0.3367849915, + "7964": 0.3171263244, + "7965": 0.2986151644, + "7966": 0.2811845299, + "7967": 0.2647713488, + "7968": 0.2493162307, + "7969": 0.2347632521, + "7970": 0.2210597536, + "7971": 0.2081561497, + "7972": 0.1960057495, + "7973": 0.1845645871, + "7974": 0.1737912632, + "7975": 0.1636467952, + "7976": 0.1540944756, + "7977": 0.1450997398, + "7978": 0.1366300409, + "7979": 0.1286547316, + "7980": 0.1211449535, + "7981": 0.1140735329, + "7982": 0.1074148823, + "7983": 0.1011449075, + "7984": 0.0952409209, + "7985": 0.0896815593, + "7986": 0.0844467063, + "7987": 0.0795174198, + "7988": 0.0748758636, + "7989": 0.0705052422, + "7990": 0.0663897409, + "7991": 0.0625144678, + "7992": 0.0588654005, + "7993": 0.0554293349, + "7994": 0.0521938378, + "7995": 0.0491472018, + "7996": 0.0462784027, + "7997": 0.0435770599, + "7998": 0.0410333987, + "7999": 0.038638215, + "8000": 0.0, + "8001": 0.0000000147, + "8002": 0.0000000766, + "8003": 0.00000016, + "8004": 0.0000002388, + "8005": 0.0000003162, + "8006": 0.0000003938, + "8007": 0.0000004711, + "8008": 0.0000005482, + "8009": 0.000000625, + "8010": 0.0000007016, + "8011": 0.0000007779, + "8012": 0.000000854, + "8013": 0.0000009298, + "8014": 0.0000010054, + "8015": 0.0000010808, + "8016": 0.0000011559, + "8017": 0.0000012308, + "8018": 0.0000013054, + "8019": 0.0000013798, + "8020": 0.000001454, + "8021": 0.000001528, + "8022": 0.0000016017, + "8023": 0.0000016752, + "8024": 0.0000017484, + "8025": 0.0000018215, + "8026": 0.0000018943, + "8027": 0.0000019669, + "8028": 0.0000020393, + "8029": 0.0000021114, + "8030": 0.0000021834, + "8031": 0.0000022551, + "8032": 0.0000023266, + "8033": 0.0000023979, + "8034": 0.000002469, + "8035": 0.0000025399, + "8036": 0.0000026105, + "8037": 0.000002681, + "8038": 0.0000027512, + "8039": 0.0000028213, + "8040": 0.0000028911, + "8041": 0.0000029608, + "8042": 0.0000030302, + "8043": 0.0000030994, + "8044": 0.0000031685, + "8045": 0.0000032373, + "8046": 0.000003306, + "8047": 0.0000033744, + "8048": 0.0000034427, + "8049": 0.0000035107, + "8050": 0.0000035786, + "8051": 0.0000036463, + "8052": 0.0000037137, + "8053": 0.000003781, + "8054": 0.0000038481, + "8055": 0.0000039151, + "8056": 0.0000039818, + "8057": 0.0000040484, + "8058": 0.0000041147, + "8059": 0.0000041809, + "8060": 0.0000042469, + "8061": 0.0000043127, + "8062": 0.0000043784, + "8063": 0.0000044439, + "8064": 0.0000045091, + "8065": 0.0000045743, + "8066": 0.0000046392, + "8067": 0.000004704, + "8068": 0.0000047686, + "8069": 0.000004833, + "8070": 0.0000048972, + "8071": 0.0000049613, + "8072": 0.0000050252, + "8073": 0.000005089, + "8074": 0.0000051525, + "8075": 0.0000052159, + "8076": 0.0000052792, + "8077": 0.0000053423, + "8078": 0.0000054052, + "8079": 0.0000054679, + "8080": 0.0000055305, + "8081": 0.0000055929, + "8082": 0.0000056552, + "8083": 0.0000057173, + "8084": 0.0000057793, + "8085": 0.0000058411, + "8086": 0.0000058822, + "8087": 0.0000058951, + "8088": 0.0000058955, + "8089": 0.000005891, + "8090": 0.0000058813, + "8091": 0.0000058663, + "8092": 0.000005846, + "8093": 0.0000058207, + "8094": 0.0000057907, + "8095": 0.0000057553, + "8096": 0.0000057084, + "8097": 0.0000056248, + "8098": 0.000005459, + "8099": 0.0000051704, + "8100": 0.0000047383, + "8101": 0.0000041559, + "8102": 0.000003423, + "8103": 0.0000025431, + "8104": 0.0000015216, + "8105": 0.0000003644, + "8106": -0.000000922, + "8107": -0.000002331, + "8108": -0.0000038561, + "8109": -0.000005491, + "8110": -0.0000072294, + "8111": -0.0000090654, + "8112": -0.0000109932, + "8113": -0.0000130075, + "8114": -0.0000151029, + "8115": -0.0000172745, + "8116": -0.0000195175, + "8117": -0.0000218273, + "8118": -0.0000241997, + "8119": -0.0000266305, + "8120": -0.0000291157, + "8121": -0.0000316517, + "8122": -0.0000342349, + "8123": -0.0000368618, + "8124": -0.0000395293, + "8125": -0.0000422341, + "8126": -0.0000449734, + "8127": -0.0000477443, + "8128": -0.0000505441, + "8129": -0.0000533702, + "8130": -0.00005622, + "8131": -0.0000590912, + "8132": -0.0000619815, + "8133": -0.0000648886, + "8134": -0.0000678104, + "8135": -0.0000707449, + "8136": -0.00007369, + "8137": -0.0000766438, + "8138": -0.0000796045, + "8139": -0.0000825702, + "8140": -0.0000855392, + "8141": -0.0000885097, + "8142": -0.0000914802, + "8143": -0.000094449, + "8144": -0.0000974145, + "8145": -0.0001003752, + "8146": -0.0001033296, + "8147": -0.0001062762, + "8148": -0.0001092137, + "8149": -0.0001121405, + "8150": -0.0001150554, + "8151": -0.0001179569, + "8152": -0.0001208438, + "8153": -0.0001237147, + "8154": -0.0001265685, + "8155": -0.0001294039, + "8156": -0.0001322195, + "8157": -0.0001350144, + "8158": -0.0001377872, + "8159": -0.0001405368, + "8160": -0.0001432622, + "8161": -0.0001459622, + "8162": -0.0001486358, + "8163": -0.0001512819, + "8164": -0.0001538995, + "8165": -0.0001564876, + "8166": -0.0001590453, + "8167": -0.0001615717, + "8168": -0.0001640658, + "8169": -0.0001665268, + "8170": -0.0001689539, + "8171": -0.0001713463, + "8172": -0.0001737032, + "8173": -0.000176024, + "8174": -0.000178308, + "8175": -0.0001805544, + "8176": -0.0001827629, + "8177": -0.0001849327, + "8178": -0.0001870635, + "8179": -0.0001891548, + "8180": -0.0001912061, + "8181": -0.0001932172, + "8182": -0.0001951877, + "8183": -0.0001971174, + "8184": -0.000199006, + "8185": -0.0002008536, + "8186": -0.0002026598, + "8187": -0.0002044248, + "8188": -0.0002061484, + "8189": -0.0002078309, + "8190": -0.0002094722, + "8191": -0.0002110725, + "8192": -0.0002126321, + "8193": -0.0002141512, + "8194": -0.00021563, + "8195": -0.0002170691, + "8196": -0.0002184686, + "8197": -0.0002198291, + "8198": -0.000221151, + "8199": -0.0002224349, + "8200": -0.0002236813, + "8201": -0.0002248907, + "8202": -0.0002260637, + "8203": -0.0002272011, + "8204": -0.0002283033, + "8205": -0.0002293713, + "8206": -0.0002304055, + "8207": -0.0002314068, + "8208": -0.0002323759, + "8209": -0.0002333135, + "8210": -0.0002342204, + "8211": -0.0002350974, + "8212": -0.0002359453, + "8213": -0.0002367647, + "8214": -0.0002375566, + "8215": -0.0002383217, + "8216": -0.0002390607, + "8217": -0.0002397745, + "8218": -0.0002404638, + "8219": -0.0002411293, + "8220": -0.000241772, + "8221": -0.0002423924, + "8222": -0.0002429913, + "8223": -0.0002435695, + "8224": -0.0002441277, + "8225": -0.0002446665, + "8226": -0.0002451867, + "8227": -0.0002456888, + "8228": -0.0002461737, + "8229": -0.0002466419, + "8230": -0.000247094, + "8231": -0.0002475306, + "8232": -0.0002479523, + "8233": -0.0002483597, + "8234": -0.0002487534, + "8235": -0.0002491338, + "8236": -0.0002495015, + "8237": -0.0002498571, + "8238": -0.0002502009, + "8239": -0.0002505334, + "8240": -0.0002508551, + "8241": -0.0002511664, + "8242": -0.0002514591, + "8243": -0.0002516772, + "8244": -0.0002517795, + "8245": -0.0002518225, + "8246": -0.0002518528, + "8247": -0.0002518765, + "8248": -0.0002518934, + "8249": -0.0002519038, + "8250": -0.0002519085, + "8251": -0.0002519075, + "8252": -0.0002518829, + "8253": -0.0002516723, + "8254": -0.0002507657, + "8255": -0.0002486789, + "8256": -0.0002455305, + "8257": -0.0002418112, + "8258": -0.0002378149, + "8259": -0.0002336131, + "8260": -0.0002292845, + "8261": -0.0002249199, + "8262": -0.0002205524, + "8263": -0.0002161903, + "8264": -0.0002118537, + "8265": -0.0002075586, + "8266": -0.0002033098, + "8267": -0.0001991121, + "8268": -0.0001949716, + "8269": -0.0001908921, + "8270": -0.0001868758, + "8271": -0.0001829254, + "8272": -0.0001790431, + "8273": -0.0001752303, + "8274": -0.0001714883, + "8275": -0.0001678183, + "8276": -0.000164221, + "8277": -0.0001606971, + "8278": -0.0001572469, + "8279": -0.0001538707, + "8280": -0.0001505685, + "8281": -0.0001473403, + "8282": -0.0001441857, + "8283": -0.0001411045, + "8284": -0.0001380962, + "8285": -0.0001351602, + "8286": -0.0001322957, + "8287": -0.000129502, + "8288": -0.0001267782, + "8289": -0.0001241234, + "8290": -0.0001215366, + "8291": -0.0001190166, + "8292": -0.0001165623, + "8293": -0.0001141726, + "8294": -0.0001118462, + "8295": -0.0001095819, + "8296": -0.0001073784, + "8297": -0.0001052344, + "8298": -0.0001031485, + "8299": -0.0001011195, + "8300": -0.0000991459, + "8301": -0.0000972265, + "8302": -0.0000953598, + "8303": -0.0000935446, + "8304": -0.0000917794, + "8305": -0.0000900629, + "8306": -0.0000883938, + "8307": -0.0000867708, + "8308": -0.0000851926, + "8309": -0.0000836578, + "8310": -0.0000821653, + "8311": -0.0000807137, + "8312": -0.0000793019, + "8313": -0.0000779287, + "8314": -0.0000765928, + "8315": -0.0000752932, + "8316": -0.0000740286, + "8317": -0.0000727981, + "8318": -0.0000716005, + "8319": -0.0000704348, + "8320": -0.0000692999, + "8321": -0.000068195, + "8322": -0.0000671189, + "8323": -0.0000660708, + "8324": -0.0000650498, + "8325": -0.000064055, + "8326": -0.0000630855, + "8327": -0.0000621405, + "8328": -0.0000612191, + "8329": -0.0000603207, + "8330": -0.0000594445, + "8331": -0.0000585897, + "8332": -0.0000577556, + "8333": -0.0000569415, + "8334": -0.0000561468, + "8335": -0.0000553709, + "8336": -0.0000546131, + "8337": -0.0000538728, + "8338": -0.0000531495, + "8339": -0.0000524426, + "8340": -0.0000517516, + "8341": -0.0000510759, + "8342": -0.0000504151, + "8343": -0.0000497687, + "8344": -0.0000491361, + "8345": -0.0000485171, + "8346": -0.0000479111, + "8347": -0.0000473177, + "8348": -0.0000467366, + "8349": -0.0000461672, + "8350": -0.0000456094, + "8351": -0.0000450627, + "8352": -0.0000445267, + "8353": -0.0000440012, + "8354": -0.0000434858, + "8355": -0.0000429802, + "8356": -0.0000424841, + "8357": -0.0000419972, + "8358": -0.0000415193, + "8359": -0.0000410501, + "8360": -0.0000405892, + "8361": -0.0000401366, + "8362": -0.0000396919, + "8363": -0.0000392549, + "8364": -0.0000388254, + "8365": -0.0000384031, + "8366": -0.0000379879, + "8367": -0.0000375796, + "8368": -0.0000371779, + "8369": -0.0000367828, + "8370": -0.0000363939, + "8371": -0.0000360112, + "8372": -0.0000356344, + "8373": -0.0000352634, + "8374": -0.0000348981, + "8375": -0.0000345383, + "8376": -0.0000341838, + "8377": -0.0000338346, + "8378": -0.0000334904, + "8379": -0.0000331512, + "8380": -0.0000328168, + "8381": -0.0000324871, + "8382": -0.000032162, + "8383": -0.0000318413, + "8384": -0.000031525, + "8385": -0.0000312129, + "8386": -0.000030905, + "8387": -0.0000306011, + "8388": -0.0000303012, + "8389": -0.0000300051, + "8390": -0.0000297128, + "8391": -0.0000294242, + "8392": -0.0000291391, + "8393": -0.0000288576, + "8394": -0.0000285795, + "8395": -0.0000283047, + "8396": -0.0000280332, + "8397": -0.0000277649, + "8398": -0.0000274997, + "8399": -0.0000272376, + "8400": -0.0000269784, + "8401": -0.0000267222, + "8402": -0.0000264689, + "8403": -0.0000262184, + "8404": -0.0000259706, + "8405": -0.0000257255, + "8406": -0.000025483, + "8407": -0.0000252432, + "8408": -0.0000250058, + "8409": -0.0000247709, + "8410": -0.0000245385, + "8411": -0.0000243084, + "8412": -0.0000240806, + "8413": -0.0000238552, + "8414": -0.0000236319, + "8415": -0.0000234109, + "8416": -0.000023192, + "8417": -0.0000229753, + "8418": -0.0000227606, + "8419": -0.0000225479, + "8420": -0.0000223373, + "8421": -0.0000221286, + "8422": -0.0000219218, + "8423": -0.0000217169, + "8424": -0.0000215139, + "8425": -0.0000213127, + "8426": -0.0000211133, + "8427": -0.0000209156, + "8428": -0.0000207197, + "8429": -0.0000205255, + "8430": -0.0000203329, + "8431": -0.000020142, + "8432": -0.0000199527, + "8433": -0.000019765, + "8434": -0.0000195789, + "8435": -0.0000193943, + "8436": -0.0000192112, + "8437": -0.0000190295, + "8438": -0.0000188494, + "8439": -0.0000186706, + "8440": -0.0000184933, + "8441": -0.0000183174, + "8442": -0.0000181429, + "8443": -0.0000179697, + "8444": -0.0000177978, + "8445": -0.0000176272, + "8446": -0.000017458, + "8447": -0.0000172899, + "8448": -0.0000171232, + "8449": -0.0000169577, + "8450": -0.0000167933, + "8451": -0.0000166302, + "8452": -0.0000164683, + "8453": -0.0000163075, + "8454": -0.0000161478, + "8455": -0.0000159893, + "8456": -0.0000158319, + "8457": -0.0000156756, + "8458": -0.0000155203, + "8459": -0.0000153662, + "8460": -0.0000152131, + "8461": -0.000015061, + "8462": -0.0000149099, + "8463": -0.0000147598, + "8464": -0.0000146108, + "8465": -0.0000144627, + "8466": -0.0000143156, + "8467": -0.0000141694, + "8468": -0.0000140242, + "8469": -0.0000138799, + "8470": -0.0000137365, + "8471": -0.000013594, + "8472": -0.0000134524, + "8473": -0.0000133118, + "8474": -0.0000131719, + "8475": -0.000013033, + "8476": -0.0000128948, + "8477": -0.0000127576, + "8478": -0.0000126211, + "8479": -0.0000124855, + "8480": -0.0000123506, + "8481": -0.0000122166, + "8482": -0.0000120834, + "8483": -0.0000119509, + "8484": -0.0000118192, + "8485": -0.0000116883, + "8486": -0.0000115581, + "8487": -0.0000114287, + "8488": -0.0000113, + "8489": -0.000011172, + "8490": -0.0000110447, + "8491": -0.0000109182, + "8492": -0.0000107923, + "8493": -0.0000106672, + "8494": -0.0000105427, + "8495": -0.0000104189, + "8496": -0.0000102958, + "8497": -0.0000101733, + "8498": -0.0000100515, + "8499": -0.0000099304 + } +} diff --git a/tests/cases/results/result_closedLoopHeart_singleVessel.json b/tests/cases/results/result_closedLoopHeart_singleVessel.json index 83a015188..7d7f3224f 100644 --- a/tests/cases/results/result_closedLoopHeart_singleVessel.json +++ b/tests/cases/results/result_closedLoopHeart_singleVessel.json @@ -1 +1,614 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0"},"time":{"0":0.0,"1":0.0102717172,"2":0.0205434343,"3":0.0308151515,"4":0.0410868687,"5":0.0513585859,"6":0.061630303,"7":0.0719020202,"8":0.0821737374,"9":0.0924454545,"10":0.1027171717,"11":0.1129888889,"12":0.1232606061,"13":0.1335323232,"14":0.1438040404,"15":0.1540757576,"16":0.1643474747,"17":0.1746191919,"18":0.1848909091,"19":0.1951626263,"20":0.2054343434,"21":0.2157060606,"22":0.2259777778,"23":0.2362494949,"24":0.2465212121,"25":0.2567929293,"26":0.2670646465,"27":0.2773363636,"28":0.2876080808,"29":0.297879798,"30":0.3081515152,"31":0.3184232323,"32":0.3286949495,"33":0.3389666667,"34":0.3492383838,"35":0.359510101,"36":0.3697818182,"37":0.3800535354,"38":0.3903252525,"39":0.4005969697,"40":0.4108686869,"41":0.421140404,"42":0.4314121212,"43":0.4416838384,"44":0.4519555556,"45":0.4622272727,"46":0.4724989899,"47":0.4827707071,"48":0.4930424242,"49":0.5033141414,"50":0.5135858586,"51":0.5238575758,"52":0.5341292929,"53":0.5444010101,"54":0.5546727273,"55":0.5649444444,"56":0.5752161616,"57":0.5854878788,"58":0.595759596,"59":0.6060313131,"60":0.6163030303,"61":0.6265747475,"62":0.6368464646,"63":0.6471181818,"64":0.657389899,"65":0.6676616162,"66":0.6779333333,"67":0.6882050505,"68":0.6984767677,"69":0.7087484848,"70":0.719020202,"71":0.7292919192,"72":0.7395636364,"73":0.7498353535,"74":0.7601070707,"75":0.7703787879,"76":0.7806505051,"77":0.7909222222,"78":0.8011939394,"79":0.8114656566,"80":0.8217373737,"81":0.8320090909,"82":0.8422808081,"83":0.8525525253,"84":0.8628242424,"85":0.8730959596,"86":0.8833676768,"87":0.8936393939,"88":0.9039111111,"89":0.9141828283,"90":0.9244545455,"91":0.9347262626,"92":0.9449979798,"93":0.955269697,"94":0.9655414141,"95":0.9758131313,"96":0.9860848485,"97":0.9963565657,"98":1.0066282828,"99":1.0169},"flow_in":{"0":24.444014855,"1":24.3642616123,"2":24.3102688438,"3":24.2787518632,"4":24.2647935231,"5":24.2616516515,"6":27.051286828,"7":37.4231637798,"8":56.0752520737,"9":78.1854777517,"10":97.8096599152,"11":111.3533950026,"12":117.9880217794,"13":118.6843830356,"14":115.153525964,"15":109.1106151149,"16":102.3191294119,"17":96.1622530611,"18":91.1220177086,"19":87.1838210692,"20":84.2869692356,"21":82.3380702292,"22":81.1422037471,"23":80.405614484,"24":79.7956505368,"25":79.0279003329,"26":77.9264706556,"27":76.4113926226,"28":74.4109610763,"29":71.7403843624,"30":68.0175585339,"31":62.9386437433,"32":60.37112732,"33":60.6741902486,"34":62.1880236915,"35":63.4892419978,"36":63.7446630381,"37":62.6389183314,"38":60.2407032714,"39":56.9309965619,"40":53.158578842,"41":49.3969450592,"42":45.9896475336,"43":43.1626351195,"44":41.0578754604,"45":39.6649753361,"46":38.8727056742,"47":38.5457782591,"48":38.5401286863,"49":38.7131741885,"50":38.9417948745,"51":39.1329314011,"52":39.22693421,"53":39.1952173754,"54":39.0347865965,"55":38.7607267982,"56":38.3988238144,"57":37.9787536326,"58":37.5290966092,"59":37.0795426555,"60":36.6534364069,"61":36.2598715815,"62":35.8981360721,"63":35.5633694552,"64":35.2486705426,"65":34.946423633,"66":34.649547265,"67":34.3525339323,"68":34.0521274961,"69":33.7474641593,"70":33.43964479,"71":33.1294710599,"72":32.814045711,"73":32.4861001361,"74":32.1362621746,"75":31.7498476177,"76":31.3159136519,"77":30.835366498,"78":30.3171492161,"79":29.7739499657,"80":29.2211698614,"81":28.6754194196,"82":28.1531636729,"83":27.6690450415,"84":27.2348437308,"85":26.8581583197,"86":26.5417477309,"87":26.2828057619,"88":26.0733183025,"89":25.9009525893,"90":25.7577604165,"91":25.6317764097,"92":25.5053489215,"93":25.3655966312,"94":25.2081619369,"95":25.0369333655,"96":24.8619993253,"97":24.6956887427,"98":24.5535141306,"99":24.4438404667},"flow_out":{"0":24.444014855,"1":24.3642616123,"2":24.3102688438,"3":24.2787518632,"4":24.2647935231,"5":24.2616516515,"6":27.051286828,"7":37.4231637798,"8":56.0752520737,"9":78.1854777517,"10":97.8096599152,"11":111.3533950026,"12":117.9880217794,"13":118.6843830356,"14":115.153525964,"15":109.1106151149,"16":102.3191294119,"17":96.1622530611,"18":91.1220177086,"19":87.1838210692,"20":84.2869692356,"21":82.3380702292,"22":81.1422037471,"23":80.405614484,"24":79.7956505368,"25":79.0279003329,"26":77.9264706556,"27":76.4113926226,"28":74.4109610763,"29":71.7403843624,"30":68.0175585339,"31":62.9386437433,"32":60.37112732,"33":60.6741902486,"34":62.1880236915,"35":63.4892419978,"36":63.7446630381,"37":62.6389183314,"38":60.2407032714,"39":56.9309965619,"40":53.158578842,"41":49.3969450592,"42":45.9896475336,"43":43.1626351195,"44":41.0578754604,"45":39.6649753361,"46":38.8727056742,"47":38.5457782591,"48":38.5401286863,"49":38.7131741885,"50":38.9417948745,"51":39.1329314011,"52":39.22693421,"53":39.1952173754,"54":39.0347865965,"55":38.7607267982,"56":38.3988238144,"57":37.9787536326,"58":37.5290966092,"59":37.0795426555,"60":36.6534364069,"61":36.2598715815,"62":35.8981360721,"63":35.5633694552,"64":35.2486705426,"65":34.946423633,"66":34.649547265,"67":34.3525339323,"68":34.0521274961,"69":33.7474641593,"70":33.43964479,"71":33.1294710599,"72":32.814045711,"73":32.4861001361,"74":32.1362621746,"75":31.7498476177,"76":31.3159136519,"77":30.835366498,"78":30.3171492161,"79":29.7739499657,"80":29.2211698614,"81":28.6754194196,"82":28.1531636729,"83":27.6690450415,"84":27.2348437308,"85":26.8581583197,"86":26.5417477309,"87":26.2828057619,"88":26.0733183025,"89":25.9009525893,"90":25.7577604165,"91":25.6317764097,"92":25.5053489215,"93":25.3655966312,"94":25.2081619369,"95":25.0369333655,"96":24.8619993253,"97":24.6956887427,"98":24.5535141306,"99":24.4438404667},"pressure_in":{"0":55.7619197588,"1":55.3120583542,"2":54.8630617539,"3":54.4149402428,"4":53.9672512236,"5":53.519784038,"6":55.5560189659,"7":60.7921953071,"8":66.6071031236,"9":71.0158146981,"10":73.8793031422,"11":75.7584133388,"12":77.1846312846,"13":78.4791364454,"14":79.761484756,"15":81.0222937112,"16":82.5618936637,"17":84.2170552816,"18":85.7194860481,"19":87.1007426733,"20":88.4172312301,"21":89.6676471144,"22":90.8204193622,"23":91.8313539871,"24":92.6705424163,"25":93.3367650049,"26":93.846788388,"27":94.2032984707,"28":94.3601467527,"29":94.2016193646,"30":93.5549742102,"31":92.4649046937,"32":94.4460864572,"33":94.7289659537,"34":95.3807076618,"35":95.1281773532,"36":94.8403503954,"37":94.1499131447,"38":93.3868565431,"39":92.5360175704,"40":91.6583902828,"41":90.8231728345,"42":89.983205235,"43":89.1927970303,"44":88.4508449888,"45":87.7161274942,"46":86.9911809132,"47":86.2769839476,"48":85.5662441424,"49":84.8538365322,"50":84.1379080882,"51":83.4180033254,"52":82.695604018,"53":81.9725122036,"54":81.2512922521,"55":80.533954839,"56":79.8225619557,"57":79.1182613685,"58":78.4220518947,"59":77.7391847694,"60":77.0674722551,"61":76.4034867543,"62":75.7465345654,"63":75.0960556374,"64":74.4514872497,"65":73.812333346,"66":73.1782344095,"67":72.5490536106,"68":71.9248774435,"69":71.3059483406,"70":70.6925460431,"71":70.0849054909,"72":69.483230518,"73":68.8877613698,"74":68.2988518393,"75":67.7116888919,"76":67.1299512219,"77":66.5567759112,"78":65.9929693593,"79":65.4388480236,"80":64.8949455893,"81":64.3610611882,"82":63.8371504307,"83":63.3223950125,"84":62.8162446433,"85":62.3174392624,"86":61.8251592732,"87":61.3380561194,"88":60.8553917882,"89":60.3761340942,"90":59.9058684989,"91":59.4381455669,"92":58.9713500023,"93":58.5056359819,"94":58.0407442236,"95":57.5777577505,"96":57.117601385,"97":56.6605570848,"98":56.2104032492,"99":55.7615586764},"pressure_out":{"0":55.7162742678,"1":55.2562520527,"2":54.7979233662,"3":54.3418544089,"4":53.8885404973,"5":53.4383068185,"6":53.4286423095,"7":54.7232597952,"8":57.7385601004,"9":62.0529413432,"10":66.8655313509,"11":71.4923103544,"12":75.5322964118,"13":78.8350722109,"14":81.4133687514,"15":83.3591439342,"16":84.8491365067,"17":86.077023413,"18":87.1543038547,"19":88.1350130555,"20":89.0641580201,"21":89.9773473851,"22":90.8888697229,"23":91.7881492773,"24":92.6452886001,"25":93.4234211925,"26":94.0904969032,"27":94.6221375411,"28":94.9920760687,"29":95.1537733841,"30":95.0228841388,"31":94.5125311442,"32":94.1780833909,"33":94.180768246,"34":94.384424769,"35":94.6187814577,"36":94.7442582126,"37":94.6671424073,"38":94.3414405182,"39":93.774229653,"40":93.0003146067,"41":92.0781693681,"42":91.0660641212,"43":90.0181013935,"44":88.984001679,"45":87.9946535479,"46":87.0639415256,"47":86.1965949638,"48":85.3896835424,"49":84.6340552253,"50":83.9173763114,"51":83.2267306613,"52":82.5505109042,"53":81.8795363668,"54":81.2075598023,"55":80.5311946967,"56":79.8495152779,"57":79.1634049451,"58":78.474889093,"59":77.7873883827,"60":77.1045585587,"61":76.4287847955,"62":75.7612930623,"63":75.1026223902,"64":74.4527669061,"65":73.8112713339,"66":73.1773654094,"67":72.5501341229,"68":71.928706397,"69":71.3124196198,"70":70.7009160223,"71":70.0952202262,"72":69.4976563597,"73":68.9099122665,"74":68.3325964958,"75":67.7645518162,"76":67.2038749868,"77":66.6492189102,"78":66.0996473125,"79":65.5543590285,"80":65.0128117075,"81":64.4747628897,"82":63.9402847708,"83":63.4096868502,"84":62.8835156767,"85":62.3625264948,"86":61.8477100311,"87":61.3401675564,"88":60.8409078622,"89":60.3505238041,"90":59.8700429435,"91":59.3995373709,"92":58.9368540784,"93":58.4785140901,"94":58.021177895,"95":57.5626636538,"96":57.1021568535,"97":56.6398753743,"98":56.1773431518,"99":55.7159131448}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.0102717172, + "2": 0.0205434343, + "3": 0.0308151515, + "4": 0.0410868687, + "5": 0.0513585859, + "6": 0.061630303, + "7": 0.0719020202, + "8": 0.0821737374, + "9": 0.0924454545, + "10": 0.1027171717, + "11": 0.1129888889, + "12": 0.1232606061, + "13": 0.1335323232, + "14": 0.1438040404, + "15": 0.1540757576, + "16": 0.1643474747, + "17": 0.1746191919, + "18": 0.1848909091, + "19": 0.1951626263, + "20": 0.2054343434, + "21": 0.2157060606, + "22": 0.2259777778, + "23": 0.2362494949, + "24": 0.2465212121, + "25": 0.2567929293, + "26": 0.2670646465, + "27": 0.2773363636, + "28": 0.2876080808, + "29": 0.297879798, + "30": 0.3081515152, + "31": 0.3184232323, + "32": 0.3286949495, + "33": 0.3389666667, + "34": 0.3492383838, + "35": 0.359510101, + "36": 0.3697818182, + "37": 0.3800535354, + "38": 0.3903252525, + "39": 0.4005969697, + "40": 0.4108686869, + "41": 0.421140404, + "42": 0.4314121212, + "43": 0.4416838384, + "44": 0.4519555556, + "45": 0.4622272727, + "46": 0.4724989899, + "47": 0.4827707071, + "48": 0.4930424242, + "49": 0.5033141414, + "50": 0.5135858586, + "51": 0.5238575758, + "52": 0.5341292929, + "53": 0.5444010101, + "54": 0.5546727273, + "55": 0.5649444444, + "56": 0.5752161616, + "57": 0.5854878788, + "58": 0.595759596, + "59": 0.6060313131, + "60": 0.6163030303, + "61": 0.6265747475, + "62": 0.6368464646, + "63": 0.6471181818, + "64": 0.657389899, + "65": 0.6676616162, + "66": 0.6779333333, + "67": 0.6882050505, + "68": 0.6984767677, + "69": 0.7087484848, + "70": 0.719020202, + "71": 0.7292919192, + "72": 0.7395636364, + "73": 0.7498353535, + "74": 0.7601070707, + "75": 0.7703787879, + "76": 0.7806505051, + "77": 0.7909222222, + "78": 0.8011939394, + "79": 0.8114656566, + "80": 0.8217373737, + "81": 0.8320090909, + "82": 0.8422808081, + "83": 0.8525525253, + "84": 0.8628242424, + "85": 0.8730959596, + "86": 0.8833676768, + "87": 0.8936393939, + "88": 0.9039111111, + "89": 0.9141828283, + "90": 0.9244545455, + "91": 0.9347262626, + "92": 0.9449979798, + "93": 0.955269697, + "94": 0.9655414141, + "95": 0.9758131313, + "96": 0.9860848485, + "97": 0.9963565657, + "98": 1.0066282828, + "99": 1.0169 + }, + "flow_in": { + "0": 24.444014855, + "1": 24.3642616123, + "2": 24.3102688438, + "3": 24.2787518632, + "4": 24.2647935231, + "5": 24.2616516515, + "6": 27.051286828, + "7": 37.4231637798, + "8": 56.0752520737, + "9": 78.1854777517, + "10": 97.8096599152, + "11": 111.3533950026, + "12": 117.9880217794, + "13": 118.6843830356, + "14": 115.153525964, + "15": 109.1106151149, + "16": 102.3191294119, + "17": 96.1622530611, + "18": 91.1220177086, + "19": 87.1838210692, + "20": 84.2869692356, + "21": 82.3380702292, + "22": 81.1422037471, + "23": 80.405614484, + "24": 79.7956505368, + "25": 79.0279003329, + "26": 77.9264706556, + "27": 76.4113926226, + "28": 74.4109610763, + "29": 71.7403843624, + "30": 68.0175585339, + "31": 62.9386437433, + "32": 60.37112732, + "33": 60.6741902486, + "34": 62.1880236915, + "35": 63.4892419978, + "36": 63.7446630381, + "37": 62.6389183314, + "38": 60.2407032714, + "39": 56.9309965619, + "40": 53.158578842, + "41": 49.3969450592, + "42": 45.9896475336, + "43": 43.1626351195, + "44": 41.0578754604, + "45": 39.6649753361, + "46": 38.8727056742, + "47": 38.5457782591, + "48": 38.5401286863, + "49": 38.7131741885, + "50": 38.9417948745, + "51": 39.1329314011, + "52": 39.22693421, + "53": 39.1952173754, + "54": 39.0347865965, + "55": 38.7607267982, + "56": 38.3988238144, + "57": 37.9787536326, + "58": 37.5290966092, + "59": 37.0795426555, + "60": 36.6534364069, + "61": 36.2598715815, + "62": 35.8981360721, + "63": 35.5633694552, + "64": 35.2486705426, + "65": 34.946423633, + "66": 34.649547265, + "67": 34.3525339323, + "68": 34.0521274961, + "69": 33.7474641593, + "70": 33.43964479, + "71": 33.1294710599, + "72": 32.814045711, + "73": 32.4861001361, + "74": 32.1362621746, + "75": 31.7498476177, + "76": 31.3159136519, + "77": 30.835366498, + "78": 30.3171492161, + "79": 29.7739499657, + "80": 29.2211698614, + "81": 28.6754194196, + "82": 28.1531636729, + "83": 27.6690450415, + "84": 27.2348437308, + "85": 26.8581583197, + "86": 26.5417477309, + "87": 26.2828057619, + "88": 26.0733183025, + "89": 25.9009525893, + "90": 25.7577604165, + "91": 25.6317764097, + "92": 25.5053489215, + "93": 25.3655966312, + "94": 25.2081619369, + "95": 25.0369333655, + "96": 24.8619993253, + "97": 24.6956887427, + "98": 24.5535141306, + "99": 24.4438404667 + }, + "flow_out": { + "0": 24.444014855, + "1": 24.3642616123, + "2": 24.3102688438, + "3": 24.2787518632, + "4": 24.2647935231, + "5": 24.2616516515, + "6": 27.051286828, + "7": 37.4231637798, + "8": 56.0752520737, + "9": 78.1854777517, + "10": 97.8096599152, + "11": 111.3533950026, + "12": 117.9880217794, + "13": 118.6843830356, + "14": 115.153525964, + "15": 109.1106151149, + "16": 102.3191294119, + "17": 96.1622530611, + "18": 91.1220177086, + "19": 87.1838210692, + "20": 84.2869692356, + "21": 82.3380702292, + "22": 81.1422037471, + "23": 80.405614484, + "24": 79.7956505368, + "25": 79.0279003329, + "26": 77.9264706556, + "27": 76.4113926226, + "28": 74.4109610763, + "29": 71.7403843624, + "30": 68.0175585339, + "31": 62.9386437433, + "32": 60.37112732, + "33": 60.6741902486, + "34": 62.1880236915, + "35": 63.4892419978, + "36": 63.7446630381, + "37": 62.6389183314, + "38": 60.2407032714, + "39": 56.9309965619, + "40": 53.158578842, + "41": 49.3969450592, + "42": 45.9896475336, + "43": 43.1626351195, + "44": 41.0578754604, + "45": 39.6649753361, + "46": 38.8727056742, + "47": 38.5457782591, + "48": 38.5401286863, + "49": 38.7131741885, + "50": 38.9417948745, + "51": 39.1329314011, + "52": 39.22693421, + "53": 39.1952173754, + "54": 39.0347865965, + "55": 38.7607267982, + "56": 38.3988238144, + "57": 37.9787536326, + "58": 37.5290966092, + "59": 37.0795426555, + "60": 36.6534364069, + "61": 36.2598715815, + "62": 35.8981360721, + "63": 35.5633694552, + "64": 35.2486705426, + "65": 34.946423633, + "66": 34.649547265, + "67": 34.3525339323, + "68": 34.0521274961, + "69": 33.7474641593, + "70": 33.43964479, + "71": 33.1294710599, + "72": 32.814045711, + "73": 32.4861001361, + "74": 32.1362621746, + "75": 31.7498476177, + "76": 31.3159136519, + "77": 30.835366498, + "78": 30.3171492161, + "79": 29.7739499657, + "80": 29.2211698614, + "81": 28.6754194196, + "82": 28.1531636729, + "83": 27.6690450415, + "84": 27.2348437308, + "85": 26.8581583197, + "86": 26.5417477309, + "87": 26.2828057619, + "88": 26.0733183025, + "89": 25.9009525893, + "90": 25.7577604165, + "91": 25.6317764097, + "92": 25.5053489215, + "93": 25.3655966312, + "94": 25.2081619369, + "95": 25.0369333655, + "96": 24.8619993253, + "97": 24.6956887427, + "98": 24.5535141306, + "99": 24.4438404667 + }, + "pressure_in": { + "0": 55.7619197588, + "1": 55.3120583542, + "2": 54.8630617539, + "3": 54.4149402428, + "4": 53.9672512236, + "5": 53.519784038, + "6": 55.5560189659, + "7": 60.7921953071, + "8": 66.6071031236, + "9": 71.0158146981, + "10": 73.8793031422, + "11": 75.7584133388, + "12": 77.1846312846, + "13": 78.4791364454, + "14": 79.761484756, + "15": 81.0222937112, + "16": 82.5618936637, + "17": 84.2170552816, + "18": 85.7194860481, + "19": 87.1007426733, + "20": 88.4172312301, + "21": 89.6676471144, + "22": 90.8204193622, + "23": 91.8313539871, + "24": 92.6705424163, + "25": 93.3367650049, + "26": 93.846788388, + "27": 94.2032984707, + "28": 94.3601467527, + "29": 94.2016193646, + "30": 93.5549742102, + "31": 92.4649046937, + "32": 94.4460864572, + "33": 94.7289659537, + "34": 95.3807076618, + "35": 95.1281773532, + "36": 94.8403503954, + "37": 94.1499131447, + "38": 93.3868565431, + "39": 92.5360175704, + "40": 91.6583902828, + "41": 90.8231728345, + "42": 89.983205235, + "43": 89.1927970303, + "44": 88.4508449888, + "45": 87.7161274942, + "46": 86.9911809132, + "47": 86.2769839476, + "48": 85.5662441424, + "49": 84.8538365322, + "50": 84.1379080882, + "51": 83.4180033254, + "52": 82.695604018, + "53": 81.9725122036, + "54": 81.2512922521, + "55": 80.533954839, + "56": 79.8225619557, + "57": 79.1182613685, + "58": 78.4220518947, + "59": 77.7391847694, + "60": 77.0674722551, + "61": 76.4034867543, + "62": 75.7465345654, + "63": 75.0960556374, + "64": 74.4514872497, + "65": 73.812333346, + "66": 73.1782344095, + "67": 72.5490536106, + "68": 71.9248774435, + "69": 71.3059483406, + "70": 70.6925460431, + "71": 70.0849054909, + "72": 69.483230518, + "73": 68.8877613698, + "74": 68.2988518393, + "75": 67.7116888919, + "76": 67.1299512219, + "77": 66.5567759112, + "78": 65.9929693593, + "79": 65.4388480236, + "80": 64.8949455893, + "81": 64.3610611882, + "82": 63.8371504307, + "83": 63.3223950125, + "84": 62.8162446433, + "85": 62.3174392624, + "86": 61.8251592732, + "87": 61.3380561194, + "88": 60.8553917882, + "89": 60.3761340942, + "90": 59.9058684989, + "91": 59.4381455669, + "92": 58.9713500023, + "93": 58.5056359819, + "94": 58.0407442236, + "95": 57.5777577505, + "96": 57.117601385, + "97": 56.6605570848, + "98": 56.2104032492, + "99": 55.7615586764 + }, + "pressure_out": { + "0": 55.7162742678, + "1": 55.2562520527, + "2": 54.7979233662, + "3": 54.3418544089, + "4": 53.8885404973, + "5": 53.4383068185, + "6": 53.4286423095, + "7": 54.7232597952, + "8": 57.7385601004, + "9": 62.0529413432, + "10": 66.8655313509, + "11": 71.4923103544, + "12": 75.5322964118, + "13": 78.8350722109, + "14": 81.4133687514, + "15": 83.3591439342, + "16": 84.8491365067, + "17": 86.077023413, + "18": 87.1543038547, + "19": 88.1350130555, + "20": 89.0641580201, + "21": 89.9773473851, + "22": 90.8888697229, + "23": 91.7881492773, + "24": 92.6452886001, + "25": 93.4234211925, + "26": 94.0904969032, + "27": 94.6221375411, + "28": 94.9920760687, + "29": 95.1537733841, + "30": 95.0228841388, + "31": 94.5125311442, + "32": 94.1780833909, + "33": 94.180768246, + "34": 94.384424769, + "35": 94.6187814577, + "36": 94.7442582126, + "37": 94.6671424073, + "38": 94.3414405182, + "39": 93.774229653, + "40": 93.0003146067, + "41": 92.0781693681, + "42": 91.0660641212, + "43": 90.0181013935, + "44": 88.984001679, + "45": 87.9946535479, + "46": 87.0639415256, + "47": 86.1965949638, + "48": 85.3896835424, + "49": 84.6340552253, + "50": 83.9173763114, + "51": 83.2267306613, + "52": 82.5505109042, + "53": 81.8795363668, + "54": 81.2075598023, + "55": 80.5311946967, + "56": 79.8495152779, + "57": 79.1634049451, + "58": 78.474889093, + "59": 77.7873883827, + "60": 77.1045585587, + "61": 76.4287847955, + "62": 75.7612930623, + "63": 75.1026223902, + "64": 74.4527669061, + "65": 73.8112713339, + "66": 73.1773654094, + "67": 72.5501341229, + "68": 71.928706397, + "69": 71.3124196198, + "70": 70.7009160223, + "71": 70.0952202262, + "72": 69.4976563597, + "73": 68.9099122665, + "74": 68.3325964958, + "75": 67.7645518162, + "76": 67.2038749868, + "77": 66.6492189102, + "78": 66.0996473125, + "79": 65.5543590285, + "80": 65.0128117075, + "81": 64.4747628897, + "82": 63.9402847708, + "83": 63.4096868502, + "84": 62.8835156767, + "85": 62.3625264948, + "86": 61.8477100311, + "87": 61.3401675564, + "88": 60.8409078622, + "89": 60.3505238041, + "90": 59.8700429435, + "91": 59.3995373709, + "92": 58.9368540784, + "93": 58.4785140901, + "94": 58.021177895, + "95": 57.5626636538, + "96": 57.1021568535, + "97": 56.6398753743, + "98": 56.1773431518, + "99": 55.7159131448 + } +} diff --git a/tests/cases/results/result_closedLoopHeart_withCoronaries.json b/tests/cases/results/result_closedLoopHeart_withCoronaries.json index dc3e0d152..32ef8c785 100644 --- a/tests/cases/results/result_closedLoopHeart_withCoronaries.json +++ b/tests/cases/results/result_closedLoopHeart_withCoronaries.json @@ -1 +1,2414 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch1_seg0","101":"branch1_seg0","102":"branch1_seg0","103":"branch1_seg0","104":"branch1_seg0","105":"branch1_seg0","106":"branch1_seg0","107":"branch1_seg0","108":"branch1_seg0","109":"branch1_seg0","110":"branch1_seg0","111":"branch1_seg0","112":"branch1_seg0","113":"branch1_seg0","114":"branch1_seg0","115":"branch1_seg0","116":"branch1_seg0","117":"branch1_seg0","118":"branch1_seg0","119":"branch1_seg0","120":"branch1_seg0","121":"branch1_seg0","122":"branch1_seg0","123":"branch1_seg0","124":"branch1_seg0","125":"branch1_seg0","126":"branch1_seg0","127":"branch1_seg0","128":"branch1_seg0","129":"branch1_seg0","130":"branch1_seg0","131":"branch1_seg0","132":"branch1_seg0","133":"branch1_seg0","134":"branch1_seg0","135":"branch1_seg0","136":"branch1_seg0","137":"branch1_seg0","138":"branch1_seg0","139":"branch1_seg0","140":"branch1_seg0","141":"branch1_seg0","142":"branch1_seg0","143":"branch1_seg0","144":"branch1_seg0","145":"branch1_seg0","146":"branch1_seg0","147":"branch1_seg0","148":"branch1_seg0","149":"branch1_seg0","150":"branch1_seg0","151":"branch1_seg0","152":"branch1_seg0","153":"branch1_seg0","154":"branch1_seg0","155":"branch1_seg0","156":"branch1_seg0","157":"branch1_seg0","158":"branch1_seg0","159":"branch1_seg0","160":"branch1_seg0","161":"branch1_seg0","162":"branch1_seg0","163":"branch1_seg0","164":"branch1_seg0","165":"branch1_seg0","166":"branch1_seg0","167":"branch1_seg0","168":"branch1_seg0","169":"branch1_seg0","170":"branch1_seg0","171":"branch1_seg0","172":"branch1_seg0","173":"branch1_seg0","174":"branch1_seg0","175":"branch1_seg0","176":"branch1_seg0","177":"branch1_seg0","178":"branch1_seg0","179":"branch1_seg0","180":"branch1_seg0","181":"branch1_seg0","182":"branch1_seg0","183":"branch1_seg0","184":"branch1_seg0","185":"branch1_seg0","186":"branch1_seg0","187":"branch1_seg0","188":"branch1_seg0","189":"branch1_seg0","190":"branch1_seg0","191":"branch1_seg0","192":"branch1_seg0","193":"branch1_seg0","194":"branch1_seg0","195":"branch1_seg0","196":"branch1_seg0","197":"branch1_seg0","198":"branch1_seg0","199":"branch1_seg0","200":"branch2_seg0","201":"branch2_seg0","202":"branch2_seg0","203":"branch2_seg0","204":"branch2_seg0","205":"branch2_seg0","206":"branch2_seg0","207":"branch2_seg0","208":"branch2_seg0","209":"branch2_seg0","210":"branch2_seg0","211":"branch2_seg0","212":"branch2_seg0","213":"branch2_seg0","214":"branch2_seg0","215":"branch2_seg0","216":"branch2_seg0","217":"branch2_seg0","218":"branch2_seg0","219":"branch2_seg0","220":"branch2_seg0","221":"branch2_seg0","222":"branch2_seg0","223":"branch2_seg0","224":"branch2_seg0","225":"branch2_seg0","226":"branch2_seg0","227":"branch2_seg0","228":"branch2_seg0","229":"branch2_seg0","230":"branch2_seg0","231":"branch2_seg0","232":"branch2_seg0","233":"branch2_seg0","234":"branch2_seg0","235":"branch2_seg0","236":"branch2_seg0","237":"branch2_seg0","238":"branch2_seg0","239":"branch2_seg0","240":"branch2_seg0","241":"branch2_seg0","242":"branch2_seg0","243":"branch2_seg0","244":"branch2_seg0","245":"branch2_seg0","246":"branch2_seg0","247":"branch2_seg0","248":"branch2_seg0","249":"branch2_seg0","250":"branch2_seg0","251":"branch2_seg0","252":"branch2_seg0","253":"branch2_seg0","254":"branch2_seg0","255":"branch2_seg0","256":"branch2_seg0","257":"branch2_seg0","258":"branch2_seg0","259":"branch2_seg0","260":"branch2_seg0","261":"branch2_seg0","262":"branch2_seg0","263":"branch2_seg0","264":"branch2_seg0","265":"branch2_seg0","266":"branch2_seg0","267":"branch2_seg0","268":"branch2_seg0","269":"branch2_seg0","270":"branch2_seg0","271":"branch2_seg0","272":"branch2_seg0","273":"branch2_seg0","274":"branch2_seg0","275":"branch2_seg0","276":"branch2_seg0","277":"branch2_seg0","278":"branch2_seg0","279":"branch2_seg0","280":"branch2_seg0","281":"branch2_seg0","282":"branch2_seg0","283":"branch2_seg0","284":"branch2_seg0","285":"branch2_seg0","286":"branch2_seg0","287":"branch2_seg0","288":"branch2_seg0","289":"branch2_seg0","290":"branch2_seg0","291":"branch2_seg0","292":"branch2_seg0","293":"branch2_seg0","294":"branch2_seg0","295":"branch2_seg0","296":"branch2_seg0","297":"branch2_seg0","298":"branch2_seg0","299":"branch2_seg0","300":"branch3_seg0","301":"branch3_seg0","302":"branch3_seg0","303":"branch3_seg0","304":"branch3_seg0","305":"branch3_seg0","306":"branch3_seg0","307":"branch3_seg0","308":"branch3_seg0","309":"branch3_seg0","310":"branch3_seg0","311":"branch3_seg0","312":"branch3_seg0","313":"branch3_seg0","314":"branch3_seg0","315":"branch3_seg0","316":"branch3_seg0","317":"branch3_seg0","318":"branch3_seg0","319":"branch3_seg0","320":"branch3_seg0","321":"branch3_seg0","322":"branch3_seg0","323":"branch3_seg0","324":"branch3_seg0","325":"branch3_seg0","326":"branch3_seg0","327":"branch3_seg0","328":"branch3_seg0","329":"branch3_seg0","330":"branch3_seg0","331":"branch3_seg0","332":"branch3_seg0","333":"branch3_seg0","334":"branch3_seg0","335":"branch3_seg0","336":"branch3_seg0","337":"branch3_seg0","338":"branch3_seg0","339":"branch3_seg0","340":"branch3_seg0","341":"branch3_seg0","342":"branch3_seg0","343":"branch3_seg0","344":"branch3_seg0","345":"branch3_seg0","346":"branch3_seg0","347":"branch3_seg0","348":"branch3_seg0","349":"branch3_seg0","350":"branch3_seg0","351":"branch3_seg0","352":"branch3_seg0","353":"branch3_seg0","354":"branch3_seg0","355":"branch3_seg0","356":"branch3_seg0","357":"branch3_seg0","358":"branch3_seg0","359":"branch3_seg0","360":"branch3_seg0","361":"branch3_seg0","362":"branch3_seg0","363":"branch3_seg0","364":"branch3_seg0","365":"branch3_seg0","366":"branch3_seg0","367":"branch3_seg0","368":"branch3_seg0","369":"branch3_seg0","370":"branch3_seg0","371":"branch3_seg0","372":"branch3_seg0","373":"branch3_seg0","374":"branch3_seg0","375":"branch3_seg0","376":"branch3_seg0","377":"branch3_seg0","378":"branch3_seg0","379":"branch3_seg0","380":"branch3_seg0","381":"branch3_seg0","382":"branch3_seg0","383":"branch3_seg0","384":"branch3_seg0","385":"branch3_seg0","386":"branch3_seg0","387":"branch3_seg0","388":"branch3_seg0","389":"branch3_seg0","390":"branch3_seg0","391":"branch3_seg0","392":"branch3_seg0","393":"branch3_seg0","394":"branch3_seg0","395":"branch3_seg0","396":"branch3_seg0","397":"branch3_seg0","398":"branch3_seg0","399":"branch3_seg0"},"time":{"0":0.0,"1":0.0102717172,"2":0.0205434343,"3":0.0308151515,"4":0.0410868687,"5":0.0513585859,"6":0.061630303,"7":0.0719020202,"8":0.0821737374,"9":0.0924454545,"10":0.1027171717,"11":0.1129888889,"12":0.1232606061,"13":0.1335323232,"14":0.1438040404,"15":0.1540757576,"16":0.1643474747,"17":0.1746191919,"18":0.1848909091,"19":0.1951626263,"20":0.2054343434,"21":0.2157060606,"22":0.2259777778,"23":0.2362494949,"24":0.2465212121,"25":0.2567929293,"26":0.2670646465,"27":0.2773363636,"28":0.2876080808,"29":0.297879798,"30":0.3081515152,"31":0.3184232323,"32":0.3286949495,"33":0.3389666667,"34":0.3492383838,"35":0.359510101,"36":0.3697818182,"37":0.3800535354,"38":0.3903252525,"39":0.4005969697,"40":0.4108686869,"41":0.421140404,"42":0.4314121212,"43":0.4416838384,"44":0.4519555556,"45":0.4622272727,"46":0.4724989899,"47":0.4827707071,"48":0.4930424242,"49":0.5033141414,"50":0.5135858586,"51":0.5238575758,"52":0.5341292929,"53":0.5444010101,"54":0.5546727273,"55":0.5649444444,"56":0.5752161616,"57":0.5854878788,"58":0.595759596,"59":0.6060313131,"60":0.6163030303,"61":0.6265747475,"62":0.6368464646,"63":0.6471181818,"64":0.657389899,"65":0.6676616162,"66":0.6779333333,"67":0.6882050505,"68":0.6984767677,"69":0.7087484848,"70":0.719020202,"71":0.7292919192,"72":0.7395636364,"73":0.7498353535,"74":0.7601070707,"75":0.7703787879,"76":0.7806505051,"77":0.7909222222,"78":0.8011939394,"79":0.8114656566,"80":0.8217373737,"81":0.8320090909,"82":0.8422808081,"83":0.8525525253,"84":0.8628242424,"85":0.8730959596,"86":0.8833676768,"87":0.8936393939,"88":0.9039111111,"89":0.9141828283,"90":0.9244545455,"91":0.9347262626,"92":0.9449979798,"93":0.955269697,"94":0.9655414141,"95":0.9758131313,"96":0.9860848485,"97":0.9963565657,"98":1.0066282828,"99":1.0169,"100":0.0,"101":0.0102717172,"102":0.0205434343,"103":0.0308151515,"104":0.0410868687,"105":0.0513585859,"106":0.061630303,"107":0.0719020202,"108":0.0821737374,"109":0.0924454545,"110":0.1027171717,"111":0.1129888889,"112":0.1232606061,"113":0.1335323232,"114":0.1438040404,"115":0.1540757576,"116":0.1643474747,"117":0.1746191919,"118":0.1848909091,"119":0.1951626263,"120":0.2054343434,"121":0.2157060606,"122":0.2259777778,"123":0.2362494949,"124":0.2465212121,"125":0.2567929293,"126":0.2670646465,"127":0.2773363636,"128":0.2876080808,"129":0.297879798,"130":0.3081515152,"131":0.3184232323,"132":0.3286949495,"133":0.3389666667,"134":0.3492383838,"135":0.359510101,"136":0.3697818182,"137":0.3800535354,"138":0.3903252525,"139":0.4005969697,"140":0.4108686869,"141":0.421140404,"142":0.4314121212,"143":0.4416838384,"144":0.4519555556,"145":0.4622272727,"146":0.4724989899,"147":0.4827707071,"148":0.4930424242,"149":0.5033141414,"150":0.5135858586,"151":0.5238575758,"152":0.5341292929,"153":0.5444010101,"154":0.5546727273,"155":0.5649444444,"156":0.5752161616,"157":0.5854878788,"158":0.595759596,"159":0.6060313131,"160":0.6163030303,"161":0.6265747475,"162":0.6368464646,"163":0.6471181818,"164":0.657389899,"165":0.6676616162,"166":0.6779333333,"167":0.6882050505,"168":0.6984767677,"169":0.7087484848,"170":0.719020202,"171":0.7292919192,"172":0.7395636364,"173":0.7498353535,"174":0.7601070707,"175":0.7703787879,"176":0.7806505051,"177":0.7909222222,"178":0.8011939394,"179":0.8114656566,"180":0.8217373737,"181":0.8320090909,"182":0.8422808081,"183":0.8525525253,"184":0.8628242424,"185":0.8730959596,"186":0.8833676768,"187":0.8936393939,"188":0.9039111111,"189":0.9141828283,"190":0.9244545455,"191":0.9347262626,"192":0.9449979798,"193":0.955269697,"194":0.9655414141,"195":0.9758131313,"196":0.9860848485,"197":0.9963565657,"198":1.0066282828,"199":1.0169,"200":0.0,"201":0.0102717172,"202":0.0205434343,"203":0.0308151515,"204":0.0410868687,"205":0.0513585859,"206":0.061630303,"207":0.0719020202,"208":0.0821737374,"209":0.0924454545,"210":0.1027171717,"211":0.1129888889,"212":0.1232606061,"213":0.1335323232,"214":0.1438040404,"215":0.1540757576,"216":0.1643474747,"217":0.1746191919,"218":0.1848909091,"219":0.1951626263,"220":0.2054343434,"221":0.2157060606,"222":0.2259777778,"223":0.2362494949,"224":0.2465212121,"225":0.2567929293,"226":0.2670646465,"227":0.2773363636,"228":0.2876080808,"229":0.297879798,"230":0.3081515152,"231":0.3184232323,"232":0.3286949495,"233":0.3389666667,"234":0.3492383838,"235":0.359510101,"236":0.3697818182,"237":0.3800535354,"238":0.3903252525,"239":0.4005969697,"240":0.4108686869,"241":0.421140404,"242":0.4314121212,"243":0.4416838384,"244":0.4519555556,"245":0.4622272727,"246":0.4724989899,"247":0.4827707071,"248":0.4930424242,"249":0.5033141414,"250":0.5135858586,"251":0.5238575758,"252":0.5341292929,"253":0.5444010101,"254":0.5546727273,"255":0.5649444444,"256":0.5752161616,"257":0.5854878788,"258":0.595759596,"259":0.6060313131,"260":0.6163030303,"261":0.6265747475,"262":0.6368464646,"263":0.6471181818,"264":0.657389899,"265":0.6676616162,"266":0.6779333333,"267":0.6882050505,"268":0.6984767677,"269":0.7087484848,"270":0.719020202,"271":0.7292919192,"272":0.7395636364,"273":0.7498353535,"274":0.7601070707,"275":0.7703787879,"276":0.7806505051,"277":0.7909222222,"278":0.8011939394,"279":0.8114656566,"280":0.8217373737,"281":0.8320090909,"282":0.8422808081,"283":0.8525525253,"284":0.8628242424,"285":0.8730959596,"286":0.8833676768,"287":0.8936393939,"288":0.9039111111,"289":0.9141828283,"290":0.9244545455,"291":0.9347262626,"292":0.9449979798,"293":0.955269697,"294":0.9655414141,"295":0.9758131313,"296":0.9860848485,"297":0.9963565657,"298":1.0066282828,"299":1.0169,"300":0.0,"301":0.0102717172,"302":0.0205434343,"303":0.0308151515,"304":0.0410868687,"305":0.0513585859,"306":0.061630303,"307":0.0719020202,"308":0.0821737374,"309":0.0924454545,"310":0.1027171717,"311":0.1129888889,"312":0.1232606061,"313":0.1335323232,"314":0.1438040404,"315":0.1540757576,"316":0.1643474747,"317":0.1746191919,"318":0.1848909091,"319":0.1951626263,"320":0.2054343434,"321":0.2157060606,"322":0.2259777778,"323":0.2362494949,"324":0.2465212121,"325":0.2567929293,"326":0.2670646465,"327":0.2773363636,"328":0.2876080808,"329":0.297879798,"330":0.3081515152,"331":0.3184232323,"332":0.3286949495,"333":0.3389666667,"334":0.3492383838,"335":0.359510101,"336":0.3697818182,"337":0.3800535354,"338":0.3903252525,"339":0.4005969697,"340":0.4108686869,"341":0.421140404,"342":0.4314121212,"343":0.4416838384,"344":0.4519555556,"345":0.4622272727,"346":0.4724989899,"347":0.4827707071,"348":0.4930424242,"349":0.5033141414,"350":0.5135858586,"351":0.5238575758,"352":0.5341292929,"353":0.5444010101,"354":0.5546727273,"355":0.5649444444,"356":0.5752161616,"357":0.5854878788,"358":0.595759596,"359":0.6060313131,"360":0.6163030303,"361":0.6265747475,"362":0.6368464646,"363":0.6471181818,"364":0.657389899,"365":0.6676616162,"366":0.6779333333,"367":0.6882050505,"368":0.6984767677,"369":0.7087484848,"370":0.719020202,"371":0.7292919192,"372":0.7395636364,"373":0.7498353535,"374":0.7601070707,"375":0.7703787879,"376":0.7806505051,"377":0.7909222222,"378":0.8011939394,"379":0.8114656566,"380":0.8217373737,"381":0.8320090909,"382":0.8422808081,"383":0.8525525253,"384":0.8628242424,"385":0.8730959596,"386":0.8833676768,"387":0.8936393939,"388":0.9039111111,"389":0.9141828283,"390":0.9244545455,"391":0.9347262626,"392":0.9449979798,"393":0.955269697,"394":0.9655414141,"395":0.9758131313,"396":0.9860848485,"397":0.9963565657,"398":1.0066282828,"399":1.0169},"flow_in":{"0":17.1560888558,"1":17.1858380864,"2":17.3086183183,"3":17.5018204188,"4":18.07985721,"5":21.6824980776,"6":32.6326253248,"7":52.1244796537,"8":76.0150826477,"9":98.0303705857,"10":113.5737633349,"11":120.9759921478,"12":120.9323792826,"13":115.4225179058,"14":106.7367035771,"15":96.8435039406,"16":87.4563089512,"17":79.7694608841,"18":74.1039981755,"19":70.2658125845,"20":67.9545461784,"21":66.8338327877,"22":66.5162016205,"23":66.582778766,"24":66.6386859434,"25":66.3844692461,"26":65.6581583987,"27":64.4101999114,"28":62.613576375,"29":60.1481368476,"30":56.7223125528,"31":52.0325222506,"32":49.394212287,"33":49.1465419937,"34":49.8839617124,"35":50.4287469817,"36":50.1188350219,"37":48.7511464108,"38":46.4228953395,"39":43.4817008741,"40":40.2862482481,"41":37.2086578031,"42":34.5085926577,"43":32.3443508977,"44":30.7918766411,"45":29.8177471918,"46":29.3250837722,"47":29.1894902469,"48":29.277678569,"49":29.4675491989,"50":29.6613628442,"51":29.7912334306,"52":29.8189757827,"53":29.732031718,"54":29.5372103907,"55":29.2537259381,"56":28.906680509,"57":28.5280398506,"58":28.1450534749,"59":27.7712599636,"60":27.4125943922,"61":27.0719698118,"62":26.7496635925,"63":26.4438213161,"64":26.1510891954,"65":25.8672988051,"66":25.5883082005,"67":25.3108483359,"68":25.0331461454,"69":24.7551126255,"70":24.4780126151,"71":24.2022086542,"72":23.9237415297,"73":23.6339133576,"74":23.3220194357,"75":22.9739053469,"76":22.5796214998,"77":22.14004822,"78":21.663976326,"79":21.1643887507,"80":20.6570963055,"81":20.1589916629,"82":19.6865073048,"83":19.2539455022,"84":18.8725150646,"85":18.5491982694,"86":18.2861200157,"87":18.0798434005,"88":17.9216180676,"89":17.7983352482,"90":17.7011393703,"91":17.6166011685,"92":17.5260492636,"93":17.4177025994,"94":17.2913774604,"95":17.2006011813,"96":17.1492698308,"97":17.133559777,"98":17.1343236951,"99":17.1560708299,"100":3.8845718569,"101":3.8855692124,"102":3.9390500838,"103":3.9986732112,"104":4.2517270721,"105":6.1306983197,"106":11.1042980837,"107":17.9626476969,"108":23.5571205626,"109":25.9664748328,"110":25.4969229528,"111":23.4815416881,"112":21.1344897456,"113":19.156984918,"114":17.7695314416,"115":16.8882094014,"116":16.5070549281,"117":16.5400308579,"118":16.6722485317,"119":16.7034652232,"120":16.644779532,"121":16.5391890705,"122":16.3829742918,"123":16.144745553,"124":15.7999850101,"125":15.3554488442,"126":14.8458704268,"127":14.3019597559,"128":13.7101130536,"129":12.9876027766,"130":11.9925521105,"131":10.6569139097,"132":11.061681843,"133":12.0869935314,"134":12.4978587416,"135":12.2233034283,"136":11.531631526,"137":10.6709243094,"138":9.796730508,"139":9.041664748,"140":8.4282714612,"141":7.9794979625,"142":7.6659009413,"143":7.4572969005,"144":7.3346654188,"145":7.2588270877,"146":7.2019422249,"147":7.1496481232,"148":7.0916486635,"149":7.023013775,"150":6.9435625399,"151":6.8557992825,"152":6.7633627291,"153":6.669941765,"154":6.5785868337,"155":6.4913544124,"156":6.4092240604,"157":6.3359207586,"158":6.2710328791,"159":6.208917157,"160":6.1465166789,"161":6.0837724036,"162":6.0208831994,"163":5.9577939567,"164":5.8942921522,"165":5.830125684,"166":5.7652017643,"167":5.6997370594,"168":5.6342742066,"169":5.5695440353,"170":5.5062226508,"171":5.443793841,"172":5.3795194176,"173":5.3097576784,"174":5.2319424418,"175":5.1425225921,"176":5.0417082391,"177":4.9344172389,"178":4.8252995067,"179":4.7174266018,"180":4.613571845,"181":4.516202428,"182":4.4273787542,"183":4.3484627757,"184":4.2802329367,"185":4.2226027809,"186":4.1746307197,"187":4.1343076389,"188":4.0989006158,"189":4.0653557748,"190":4.0348665838,"191":4.0041050637,"192":3.9676935713,"193":3.9265419891,"194":3.8857646369,"195":3.87658971,"196":3.8786700495,"197":3.8832516521,"198":3.8813405283,"199":3.8845678178,"200":0.5133769874,"201":0.4838104887,"202":0.4221247676,"203":0.3207516801,"204":0.211387425,"205":0.2066665128,"206":0.3604401909,"207":0.5755069594,"208":0.7500428963,"209":0.8659533976,"210":0.9393672629,"211":0.9876634933,"212":1.0247573376,"213":1.0587437776,"214":1.0923528325,"215":1.1247122893,"216":1.1663002449,"217":1.2080385686,"218":1.238562041,"219":1.2627763269,"220":1.2837247153,"221":1.3017647827,"222":1.3174504882,"223":1.3301397724,"224":1.3389848913,"225":1.3438488143,"226":1.3454870606,"227":1.3450291913,"228":1.3429325118,"229":1.3381062628,"230":1.327733286,"231":1.3153955072,"232":1.4809318293,"233":1.5715647456,"234":1.6548198612,"235":1.709620815,"236":1.7359696331,"237":1.7366234452,"238":1.7123863766,"239":1.6730311933,"240":1.6214748928,"241":1.567629275,"242":1.5115468111,"243":1.4582740547,"244":1.4062867151,"245":1.3539662551,"246":1.3025157949,"247":1.2518221862,"248":1.2030574306,"249":1.157931136,"250":1.1175397041,"251":1.0820227099,"252":1.0505748626,"253":1.0221304623,"254":0.9961303617,"255":0.9728200787,"256":0.9528706409,"257":0.9366259325,"258":0.922884834,"259":0.9099835362,"260":0.8966160716,"261":0.882065086,"262":0.8667892376,"263":0.8522621986,"264":0.8401579687,"265":0.8314152945,"266":0.8255899706,"267":0.8208982899,"268":0.8150227671,"269":0.8062657529,"270":0.7943548279,"271":0.7803961583,"272":0.7661197311,"273":0.7529798898,"274":0.7414622577,"275":0.7307110512,"276":0.719426262,"277":0.7063275603,"278":0.6909465571,"279":0.674011014,"280":0.6569011244,"281":0.6408691213,"282":0.6264279856,"283":0.6130304577,"284":0.5995274585,"285":0.5851583334,"286":0.5704548543,"287":0.5570760791,"288":0.5467143387,"289":0.5397714751,"290":0.5347941308,"291":0.5278380853,"292":0.5164015077,"293":0.5019945124,"294":0.4892739084,"295":0.4855890019,"296":0.4903776873,"297":0.5034713801,"298":0.5148035639,"299":0.5133763547,"300":0.8992132894,"301":0.8589879432,"302":0.7814897341,"303":0.6639817738,"304":0.564826668,"305":0.6644938849,"306":1.0253453938,"307":1.448093485,"308":1.7501233645,"309":1.9204889927,"310":2.0051236463,"311":2.0405825263,"312":2.055791475,"313":2.0689332837,"314":2.0866838169,"315":2.1080704858,"316":2.1512401081,"317":2.2028442004,"318":2.2390597063,"319":2.2659365925,"320":2.2897617208,"321":2.3095826073,"322":2.3246988096,"323":2.3332569921,"324":2.3338547553,"325":2.3271214368,"326":2.3149484328,"327":2.298556547,"328":2.2759453498,"329":2.2424127373,"330":2.1913676025,"331":2.1246217016,"332":2.2800080059,"333":2.3035161238,"334":2.3034966593,"335":2.2984069084,"336":2.2703339266,"337":2.228602254,"338":2.1737015181,"339":2.1179628663,"340":2.0587332401,"341":2.0058597128,"342":1.9555308247,"343":1.909612678,"344":1.8674388054,"345":1.8261363408,"346":1.7871449081,"347":1.7503758476,"348":1.715943548,"349":1.6846684193,"350":1.6569548111,"351":1.6325361652,"352":1.6104131561,"353":1.5894472403,"354":1.5690733623,"355":1.5495323629,"356":1.5315008972,"357":1.5158097948,"358":1.5016687287,"359":1.4875163155,"360":1.472203369,"361":1.4551680391,"362":1.4370313857,"363":1.4194054751,"364":1.4039434698,"365":1.3913794546,"366":1.3809779705,"367":1.3707832036,"368":1.3585883719,"369":1.3430525773,"370":1.3243291912,"371":1.3037779463,"372":1.2830212583,"373":1.2631102132,"374":1.2440172393,"375":1.224236006,"376":1.2022627367,"377":1.1771208478,"378":1.1488351584,"379":1.1188616754,"380":1.0894926912,"381":1.0628035605,"382":1.0397478932,"383":1.0196260538,"384":1.0007105723,"385":0.9816830987,"386":0.9629326454,"387":0.9463121445,"388":0.9336117149,"389":0.9248248774,"390":0.9180489555,"391":0.9091154847,"392":0.895072518,"393":0.8771215751,"394":0.8613333084,"395":0.8586048985,"396":0.8673141082,"397":0.8864288291,"398":0.9020154103,"399":0.8992122145},"flow_out":{"0":17.1560888558,"1":17.1858380864,"2":17.3086183183,"3":17.5018204188,"4":18.07985721,"5":21.6824980776,"6":32.6326253248,"7":52.1244796537,"8":76.0150826477,"9":98.0303705857,"10":113.5737633349,"11":120.9759921478,"12":120.9323792826,"13":115.4225179058,"14":106.7367035771,"15":96.8435039406,"16":87.4563089512,"17":79.7694608841,"18":74.1039981755,"19":70.2658125845,"20":67.9545461784,"21":66.8338327877,"22":66.5162016205,"23":66.582778766,"24":66.6386859434,"25":66.3844692461,"26":65.6581583987,"27":64.4101999114,"28":62.613576375,"29":60.1481368476,"30":56.7223125528,"31":52.0325222506,"32":49.394212287,"33":49.1465419937,"34":49.8839617124,"35":50.4287469817,"36":50.1188350219,"37":48.7511464108,"38":46.4228953395,"39":43.4817008741,"40":40.2862482481,"41":37.2086578031,"42":34.5085926577,"43":32.3443508977,"44":30.7918766411,"45":29.8177471918,"46":29.3250837722,"47":29.1894902469,"48":29.277678569,"49":29.4675491989,"50":29.6613628442,"51":29.7912334306,"52":29.8189757827,"53":29.732031718,"54":29.5372103907,"55":29.2537259381,"56":28.906680509,"57":28.5280398506,"58":28.1450534749,"59":27.7712599636,"60":27.4125943922,"61":27.0719698118,"62":26.7496635925,"63":26.4438213161,"64":26.1510891954,"65":25.8672988051,"66":25.5883082005,"67":25.3108483359,"68":25.0331461454,"69":24.7551126255,"70":24.4780126151,"71":24.2022086542,"72":23.9237415297,"73":23.6339133576,"74":23.3220194357,"75":22.9739053469,"76":22.5796214998,"77":22.14004822,"78":21.663976326,"79":21.1643887507,"80":20.6570963055,"81":20.1589916629,"82":19.6865073048,"83":19.2539455022,"84":18.8725150646,"85":18.5491982694,"86":18.2861200157,"87":18.0798434005,"88":17.9216180676,"89":17.7983352482,"90":17.7011393703,"91":17.6166011685,"92":17.5260492636,"93":17.4177025994,"94":17.2913774604,"95":17.2006011813,"96":17.1492698308,"97":17.133559777,"98":17.1343236951,"99":17.1560708299,"100":3.8845718569,"101":3.8855692124,"102":3.9390500838,"103":3.9986732112,"104":4.2517270721,"105":6.1306983197,"106":11.1042980837,"107":17.9626476969,"108":23.5571205626,"109":25.9664748328,"110":25.4969229528,"111":23.4815416881,"112":21.1344897456,"113":19.156984918,"114":17.7695314416,"115":16.8882094014,"116":16.5070549281,"117":16.5400308579,"118":16.6722485317,"119":16.7034652232,"120":16.644779532,"121":16.5391890705,"122":16.3829742918,"123":16.144745553,"124":15.7999850101,"125":15.3554488442,"126":14.8458704268,"127":14.3019597559,"128":13.7101130536,"129":12.9876027766,"130":11.9925521105,"131":10.6569139097,"132":11.061681843,"133":12.0869935314,"134":12.4978587416,"135":12.2233034283,"136":11.531631526,"137":10.6709243094,"138":9.796730508,"139":9.041664748,"140":8.4282714612,"141":7.9794979625,"142":7.6659009413,"143":7.4572969005,"144":7.3346654188,"145":7.2588270877,"146":7.2019422249,"147":7.1496481232,"148":7.0916486635,"149":7.023013775,"150":6.9435625399,"151":6.8557992825,"152":6.7633627291,"153":6.669941765,"154":6.5785868337,"155":6.4913544124,"156":6.4092240604,"157":6.3359207586,"158":6.2710328791,"159":6.208917157,"160":6.1465166789,"161":6.0837724036,"162":6.0208831994,"163":5.9577939567,"164":5.8942921522,"165":5.830125684,"166":5.7652017643,"167":5.6997370594,"168":5.6342742066,"169":5.5695440353,"170":5.5062226508,"171":5.443793841,"172":5.3795194176,"173":5.3097576784,"174":5.2319424418,"175":5.1425225921,"176":5.0417082391,"177":4.9344172389,"178":4.8252995067,"179":4.7174266018,"180":4.613571845,"181":4.516202428,"182":4.4273787542,"183":4.3484627757,"184":4.2802329367,"185":4.2226027809,"186":4.1746307197,"187":4.1343076389,"188":4.0989006158,"189":4.0653557748,"190":4.0348665838,"191":4.0041050637,"192":3.9676935713,"193":3.9265419891,"194":3.8857646369,"195":3.87658971,"196":3.8786700495,"197":3.8832516521,"198":3.8813405283,"199":3.8845678178,"200":0.5133769874,"201":0.4838104887,"202":0.4221247676,"203":0.3207516801,"204":0.211387425,"205":0.2066665128,"206":0.3604401909,"207":0.5755069594,"208":0.7500428963,"209":0.8659533976,"210":0.9393672629,"211":0.9876634933,"212":1.0247573376,"213":1.0587437776,"214":1.0923528325,"215":1.1247122893,"216":1.1663002449,"217":1.2080385686,"218":1.238562041,"219":1.2627763269,"220":1.2837247153,"221":1.3017647827,"222":1.3174504882,"223":1.3301397724,"224":1.3389848913,"225":1.3438488143,"226":1.3454870606,"227":1.3450291913,"228":1.3429325118,"229":1.3381062628,"230":1.327733286,"231":1.3153955072,"232":1.4809318293,"233":1.5715647456,"234":1.6548198612,"235":1.709620815,"236":1.7359696331,"237":1.7366234452,"238":1.7123863766,"239":1.6730311933,"240":1.6214748928,"241":1.567629275,"242":1.5115468111,"243":1.4582740547,"244":1.4062867151,"245":1.3539662551,"246":1.3025157949,"247":1.2518221862,"248":1.2030574306,"249":1.157931136,"250":1.1175397041,"251":1.0820227099,"252":1.0505748626,"253":1.0221304623,"254":0.9961303617,"255":0.9728200787,"256":0.9528706409,"257":0.9366259325,"258":0.922884834,"259":0.9099835362,"260":0.8966160716,"261":0.882065086,"262":0.8667892376,"263":0.8522621986,"264":0.8401579687,"265":0.8314152945,"266":0.8255899706,"267":0.8208982899,"268":0.8150227671,"269":0.8062657529,"270":0.7943548279,"271":0.7803961583,"272":0.7661197311,"273":0.7529798898,"274":0.7414622577,"275":0.7307110512,"276":0.719426262,"277":0.7063275603,"278":0.6909465571,"279":0.674011014,"280":0.6569011244,"281":0.6408691213,"282":0.6264279856,"283":0.6130304577,"284":0.5995274585,"285":0.5851583334,"286":0.5704548543,"287":0.5570760791,"288":0.5467143387,"289":0.5397714751,"290":0.5347941308,"291":0.5278380853,"292":0.5164015077,"293":0.5019945124,"294":0.4892739084,"295":0.4855890019,"296":0.4903776873,"297":0.5034713801,"298":0.5148035639,"299":0.5133763547,"300":0.8992132894,"301":0.8589879432,"302":0.7814897341,"303":0.6639817738,"304":0.564826668,"305":0.6644938849,"306":1.0253453938,"307":1.448093485,"308":1.7501233645,"309":1.9204889927,"310":2.0051236463,"311":2.0405825263,"312":2.055791475,"313":2.0689332837,"314":2.0866838169,"315":2.1080704858,"316":2.1512401081,"317":2.2028442004,"318":2.2390597063,"319":2.2659365925,"320":2.2897617208,"321":2.3095826073,"322":2.3246988096,"323":2.3332569921,"324":2.3338547553,"325":2.3271214368,"326":2.3149484328,"327":2.298556547,"328":2.2759453498,"329":2.2424127373,"330":2.1913676025,"331":2.1246217016,"332":2.2800080059,"333":2.3035161238,"334":2.3034966593,"335":2.2984069084,"336":2.2703339266,"337":2.228602254,"338":2.1737015181,"339":2.1179628663,"340":2.0587332401,"341":2.0058597128,"342":1.9555308247,"343":1.909612678,"344":1.8674388054,"345":1.8261363408,"346":1.7871449081,"347":1.7503758476,"348":1.715943548,"349":1.6846684193,"350":1.6569548111,"351":1.6325361652,"352":1.6104131561,"353":1.5894472403,"354":1.5690733623,"355":1.5495323629,"356":1.5315008972,"357":1.5158097948,"358":1.5016687287,"359":1.4875163155,"360":1.472203369,"361":1.4551680391,"362":1.4370313857,"363":1.4194054751,"364":1.4039434698,"365":1.3913794546,"366":1.3809779705,"367":1.3707832036,"368":1.3585883719,"369":1.3430525773,"370":1.3243291912,"371":1.3037779463,"372":1.2830212583,"373":1.2631102132,"374":1.2440172393,"375":1.224236006,"376":1.2022627367,"377":1.1771208478,"378":1.1488351584,"379":1.1188616754,"380":1.0894926912,"381":1.0628035605,"382":1.0397478932,"383":1.0196260538,"384":1.0007105723,"385":0.9816830987,"386":0.9629326454,"387":0.9463121445,"388":0.9336117149,"389":0.9248248774,"390":0.9180489555,"391":0.9091154847,"392":0.895072518,"393":0.8771215751,"394":0.8613333084,"395":0.8586048985,"396":0.8673141082,"397":0.8864288291,"398":0.9020154103,"399":0.8992122145},"pressure_in":{"0":43.4038589144,"1":43.0107847426,"2":42.7092397291,"3":42.3470522557,"4":42.3319041441,"5":44.5061523851,"6":49.7357292074,"7":56.0992102627,"8":61.3873704061,"9":64.9566821495,"10":67.1536788124,"11":68.5409133968,"12":69.5838048675,"13":70.5569715094,"14":71.5544199697,"15":72.5552621019,"16":73.7873102283,"17":75.1266817427,"18":76.3575286566,"19":77.4872287556,"20":78.5478702484,"21":79.5342985426,"22":80.4195337896,"23":81.1673344706,"24":81.7552088329,"25":82.1863115386,"26":82.4790809457,"27":82.6385993907,"28":82.6269038399,"29":82.3456362251,"30":81.6481724393,"31":80.5061977238,"32":81.9648795955,"33":81.9696106721,"34":82.2717737054,"35":81.815478834,"36":81.3332685476,"37":80.54250693,"38":79.6997356424,"39":78.8139971108,"40":77.9001060359,"41":77.0425680455,"42":76.1844402017,"43":75.3791763834,"44":74.606971445,"45":73.8532128631,"46":73.1163929996,"47":72.3880282949,"48":71.6627717105,"49":70.9376492722,"50":70.211730065,"51":69.4855793007,"52":68.7606964276,"53":68.0390273797,"54":67.3225360671,"55":66.6129148654,"56":65.9114001534,"57":65.2242329278,"58":64.5478986837,"59":63.8793661318,"60":63.2190736432,"61":62.5668395509,"62":61.9224346975,"63":61.2855568124,"64":60.6557972799,"65":60.0327473851,"66":59.4160945771,"67":58.8057050072,"68":58.2016374842,"69":57.6040855404,"70":57.0132619767,"71":56.4293239297,"72":55.8524232469,"73":55.2828206209,"74":54.7209795089,"75":54.1635541149,"76":53.6136870234,"77":53.074177263,"78":52.5460038452,"79":52.0295852809,"80":51.5253485167,"81":51.03296783,"82":50.5520972688,"83":50.0816699298,"84":49.6208276647,"85":49.1681426819,"86":48.7225576922,"87":48.2825980374,"88":47.8472792998,"89":47.4154642268,"90":46.9923420715,"91":46.5709312307,"92":46.1497834995,"93":45.7298864398,"94":45.3125663492,"95":44.9382613628,"96":44.5433051389,"97":44.1695095689,"98":43.7752995547,"99":43.4038040038,"100":43.4038589144,"101":43.0107847426,"102":42.7092397291,"103":42.3470522557,"104":42.3319041441,"105":44.5061523851,"106":49.7357292074,"107":56.0992102627,"108":61.3873704061,"109":64.9566821495,"110":67.1536788124,"111":68.5409133968,"112":69.5838048675,"113":70.5569715094,"114":71.5544199697,"115":72.5552621019,"116":73.7873102283,"117":75.1266817427,"118":76.3575286566,"119":77.4872287556,"120":78.5478702484,"121":79.5342985426,"122":80.4195337896,"123":81.1673344706,"124":81.7552088329,"125":82.1863115386,"126":82.4790809457,"127":82.6385993907,"128":82.6269038399,"129":82.3456362251,"130":81.6481724393,"131":80.5061977238,"132":81.9648795955,"133":81.9696106721,"134":82.2717737054,"135":81.815478834,"136":81.3332685476,"137":80.54250693,"138":79.6997356424,"139":78.8139971108,"140":77.9001060359,"141":77.0425680455,"142":76.1844402017,"143":75.3791763834,"144":74.606971445,"145":73.8532128631,"146":73.1163929996,"147":72.3880282949,"148":71.6627717105,"149":70.9376492722,"150":70.211730065,"151":69.4855793007,"152":68.7606964276,"153":68.0390273797,"154":67.3225360671,"155":66.6129148654,"156":65.9114001534,"157":65.2242329278,"158":64.5478986837,"159":63.8793661318,"160":63.2190736432,"161":62.5668395509,"162":61.9224346975,"163":61.2855568124,"164":60.6557972799,"165":60.0327473851,"166":59.4160945771,"167":58.8057050072,"168":58.2016374842,"169":57.6040855404,"170":57.0132619767,"171":56.4293239297,"172":55.8524232469,"173":55.2828206209,"174":54.7209795089,"175":54.1635541149,"176":53.6136870234,"177":53.074177263,"178":52.5460038452,"179":52.0295852809,"180":51.5253485167,"181":51.03296783,"182":50.5520972688,"183":50.0816699298,"184":49.6208276647,"185":49.1681426819,"186":48.7225576922,"187":48.2825980374,"188":47.8472792998,"189":47.4154642268,"190":46.9923420715,"191":46.5709312307,"192":46.1497834995,"193":45.7298864398,"194":45.3125663492,"195":44.9382613628,"196":44.5433051389,"197":44.1695095689,"198":43.7752995547,"199":43.4038040038,"200":43.4038589144,"201":43.0107847426,"202":42.7092397291,"203":42.3470522557,"204":42.3319041441,"205":44.5061523851,"206":49.7357292074,"207":56.0992102627,"208":61.3873704061,"209":64.9566821495,"210":67.1536788124,"211":68.5409133968,"212":69.5838048675,"213":70.5569715094,"214":71.5544199697,"215":72.5552621019,"216":73.7873102283,"217":75.1266817427,"218":76.3575286566,"219":77.4872287556,"220":78.5478702484,"221":79.5342985426,"222":80.4195337896,"223":81.1673344706,"224":81.7552088329,"225":82.1863115386,"226":82.4790809457,"227":82.6385993907,"228":82.6269038399,"229":82.3456362251,"230":81.6481724393,"231":80.5061977238,"232":81.9648795955,"233":81.9696106721,"234":82.2717737054,"235":81.815478834,"236":81.3332685476,"237":80.54250693,"238":79.6997356424,"239":78.8139971108,"240":77.9001060359,"241":77.0425680455,"242":76.1844402017,"243":75.3791763834,"244":74.606971445,"245":73.8532128631,"246":73.1163929996,"247":72.3880282949,"248":71.6627717105,"249":70.9376492722,"250":70.211730065,"251":69.4855793007,"252":68.7606964276,"253":68.0390273797,"254":67.3225360671,"255":66.6129148654,"256":65.9114001534,"257":65.2242329278,"258":64.5478986837,"259":63.8793661318,"260":63.2190736432,"261":62.5668395509,"262":61.9224346975,"263":61.2855568124,"264":60.6557972799,"265":60.0327473851,"266":59.4160945771,"267":58.8057050072,"268":58.2016374842,"269":57.6040855404,"270":57.0132619767,"271":56.4293239297,"272":55.8524232469,"273":55.2828206209,"274":54.7209795089,"275":54.1635541149,"276":53.6136870234,"277":53.074177263,"278":52.5460038452,"279":52.0295852809,"280":51.5253485167,"281":51.03296783,"282":50.5520972688,"283":50.0816699298,"284":49.6208276647,"285":49.1681426819,"286":48.7225576922,"287":48.2825980374,"288":47.8472792998,"289":47.4154642268,"290":46.9923420715,"291":46.5709312307,"292":46.1497834995,"293":45.7298864398,"294":45.3125663492,"295":44.9382613628,"296":44.5433051389,"297":44.1695095689,"298":43.7752995547,"299":43.4038040038,"300":43.4038589144,"301":43.0107847426,"302":42.7092397291,"303":42.3470522557,"304":42.3319041441,"305":44.5061523851,"306":49.7357292074,"307":56.0992102627,"308":61.3873704061,"309":64.9566821495,"310":67.1536788124,"311":68.5409133968,"312":69.5838048675,"313":70.5569715094,"314":71.5544199697,"315":72.5552621019,"316":73.7873102283,"317":75.1266817427,"318":76.3575286566,"319":77.4872287556,"320":78.5478702484,"321":79.5342985426,"322":80.4195337896,"323":81.1673344706,"324":81.7552088329,"325":82.1863115386,"326":82.4790809457,"327":82.6385993907,"328":82.6269038399,"329":82.3456362251,"330":81.6481724393,"331":80.5061977238,"332":81.9648795955,"333":81.9696106721,"334":82.2717737054,"335":81.815478834,"336":81.3332685476,"337":80.54250693,"338":79.6997356424,"339":78.8139971108,"340":77.9001060359,"341":77.0425680455,"342":76.1844402017,"343":75.3791763834,"344":74.606971445,"345":73.8532128631,"346":73.1163929996,"347":72.3880282949,"348":71.6627717105,"349":70.9376492722,"350":70.211730065,"351":69.4855793007,"352":68.7606964276,"353":68.0390273797,"354":67.3225360671,"355":66.6129148654,"356":65.9114001534,"357":65.2242329278,"358":64.5478986837,"359":63.8793661318,"360":63.2190736432,"361":62.5668395509,"362":61.9224346975,"363":61.2855568124,"364":60.6557972799,"365":60.0327473851,"366":59.4160945771,"367":58.8057050072,"368":58.2016374842,"369":57.6040855404,"370":57.0132619767,"371":56.4293239297,"372":55.8524232469,"373":55.2828206209,"374":54.7209795089,"375":54.1635541149,"376":53.6136870234,"377":53.074177263,"378":52.5460038452,"379":52.0295852809,"380":51.5253485167,"381":51.03296783,"382":50.5520972688,"383":50.0816699298,"384":49.6208276647,"385":49.1681426819,"386":48.7225576922,"387":48.2825980374,"388":47.8472792998,"389":47.4154642268,"390":46.9923420715,"391":46.5709312307,"392":46.1497834995,"393":45.7298864398,"394":45.3125663492,"395":44.9382613628,"396":44.5433051389,"397":44.1695095689,"398":43.7752995547,"399":43.4038040038},"pressure_out":{"0":43.3308555123,"1":42.9441575769,"2":42.5717433562,"3":42.2137594621,"4":41.9227179054,"5":42.1284021599,"6":43.6305329149,"7":46.9131172407,"8":51.6701615811,"9":57.0863624691,"10":62.3447395927,"11":66.8953971798,"12":70.4938450827,"13":73.1321883316,"14":74.9416161217,"15":76.1053480531,"16":76.8532052589,"17":77.4066324658,"18":77.8997425782,"19":78.3979936405,"20":78.9397090315,"21":79.5424273871,"22":80.1994992102,"23":80.881577762,"24":81.5445101207,"25":82.1420282734,"26":82.6367506648,"27":83.0023315184,"28":83.2142252028,"29":83.2327474613,"30":82.9872412184,"31":82.3941245794,"32":81.9255589041,"33":81.7207442814,"34":81.6631486923,"35":81.6117625875,"36":81.4551825303,"37":81.1258613228,"38":80.5953329294,"39":79.8794108858,"40":79.0109951995,"41":78.0408284476,"42":77.0176910334,"43":75.9850650024,"44":74.9794475249,"45":74.0225873714,"46":73.1242430809,"47":72.2852432405,"48":71.4994026069,"49":70.7564530446,"50":70.0446977328,"51":69.352989342,"52":68.6720294365,"53":67.9950278454,"54":67.3178311626,"55":66.6386563881,"56":65.9575753247,"57":65.2768756431,"58":64.5994711852,"59":63.9272599878,"60":63.2614919459,"61":62.6031656557,"62":61.9529819706,"63":61.3113274819,"64":60.6782735265,"65":60.0535870114,"66":59.4367884776,"67":58.8272641797,"68":58.2244141875,"69":57.6277942541,"70":57.0372020372,"71":56.4538177984,"72":55.8801209851,"73":55.3178581422,"74":54.7676168282,"75":54.2284141475,"76":53.6985621064,"77":53.1767533768,"78":52.6620144739,"79":52.1535191535,"80":51.6506883335,"81":51.1532090566,"82":50.6610245474,"83":50.1742557298,"84":49.6932148027,"85":49.2184162891,"86":48.7506269176,"87":48.2907567614,"88":47.8396382319,"89":47.3976935341,"90":46.9657486623,"91":46.5435569284,"92":46.1285661393,"93":45.7170984606,"94":45.3061512252,"95":44.9012173282,"96":44.5024172316,"97":44.1091502794,"98":43.7185044429,"99":43.3308005716,"100":43.0744540308,"101":42.6900882298,"102":42.3404583882,"103":42.0027698907,"104":41.8080526625,"105":42.7803391094,"106":46.2222584783,"107":51.8488625294,"108":57.8165243245,"109":62.5513706104,"110":65.6617217044,"111":67.5260612346,"112":68.6975631091,"113":69.6074224224,"114":70.4882349364,"115":71.4032856013,"116":72.4521939932,"117":73.6739918445,"118":74.9315089595,"119":76.1079488312,"120":77.1938533764,"121":78.2030138772,"122":79.1253779074,"123":79.9316741717,"124":80.5919854803,"125":81.0938182836,"126":81.4455635915,"127":81.6595368234,"128":81.7233325799,"129":81.5746700365,"130":81.0959157035,"131":80.1954067924,"132":80.2543300342,"133":80.8108754439,"134":81.1354323956,"135":81.0670292925,"136":80.6616447169,"137":80.0136724526,"138":79.2019402604,"139":78.3195398209,"140":77.4078981484,"141":76.5128730518,"142":75.6471857542,"143":74.8168435286,"144":74.0288702008,"145":73.2720512681,"146":72.5355046263,"147":71.8122897258,"148":71.0956358263,"149":70.3807341386,"150":69.6653003282,"151":68.9490080888,"152":68.2328770539,"153":67.5186936819,"154":66.8085153313,"155":66.1042843744,"156":65.4075640767,"157":64.7219525435,"158":64.0487783372,"159":63.3856098135,"160":62.7307018996,"161":62.083757328,"162":61.4446441401,"163":60.8131264846,"164":60.1888728431,"165":59.5714717552,"166":58.9605185041,"167":58.3557216997,"168":57.7569805944,"169":57.1643948652,"170":56.5781947414,"171":55.9993796767,"172":55.4292804881,"173":54.8682797354,"174":54.3163556956,"175":53.771756456,"176":53.2339222238,"177":52.7046780994,"178":52.1856164798,"179":51.6772127459,"180":51.1795407156,"181":50.692375597,"182":50.2152599383,"183":49.7474368711,"184":49.2880645123,"185":48.8362407502,"186":48.3911869809,"187":47.9521564307,"188":47.518455755,"189":47.0893336685,"190":46.6667261034,"191":46.249689098,"192":45.8343741433,"193":45.4188769941,"194":45.0036999473,"195":44.6084058058,"196":44.222711709,"197":43.8411214336,"198":43.456431694,"199":43.0743994427,"200":41.1558257102,"201":40.9213062165,"202":40.9108693775,"203":41.0296565179,"204":41.4758197663,"205":43.5397888897,"206":47.9841388267,"207":53.4183969019,"208":57.9908771282,"209":61.0877996631,"210":62.9872186719,"211":64.1743530357,"212":65.0583267785,"213":65.882556069,"214":66.7324416743,"215":67.5928552414,"216":68.6282629335,"217":69.795163085,"218":70.8999287153,"219":71.9243089036,"220":72.8961278351,"221":73.8047665708,"222":74.6228973803,"223":75.3175706614,"224":75.8696335575,"225":76.282192118,"226":76.5696965312,"227":76.7323444485,"228":76.7310736794,"229":76.4736917413,"230":75.8271320145,"231":74.7375317996,"232":75.2266974173,"233":75.1301825513,"234":74.8611369298,"235":74.3365037776,"236":73.6643682612,"237":72.9448234738,"238":72.1940730436,"239":71.504592089,"240":70.8181628101,"241":70.1966938156,"242":69.5887155605,"243":69.0104432818,"244":68.470043606,"245":67.9444319869,"246":67.4332407654,"247":66.9269839416,"248":66.4136615922,"249":65.8835839741,"250":65.3312810722,"251":64.7577086652,"252":64.1683858772,"253":63.569820415,"254":62.9658075766,"255":62.3563750995,"256":61.7397518776,"257":61.1212070049,"258":60.5041825905,"259":59.8921949571,"260":59.2913941053,"261":58.7040589489,"262":58.1268707223,"263":57.5525911343,"264":56.9736401142,"265":56.3863733144,"266":55.7935913793,"267":55.2038226283,"268":54.6272824906,"269":54.0707322303,"270":53.5343536078,"271":53.0126175464,"272":52.4979814998,"273":51.9848290271,"274":51.4724065019,"275":50.9621850578,"276":50.4627047958,"277":49.9825297722,"278":49.5235150969,"279":49.0821686552,"280":48.652644717,"281":48.2295041499,"282":47.8108617255,"283":47.3988977399,"284":46.9978927199,"285":46.6090895523,"286":46.2278667245,"287":45.8449623191,"288":45.4524133486,"289":45.0487466874,"290":44.6468852845,"291":44.259380039,"292":43.8919299862,"293":43.5362909362,"294":43.1714903597,"295":42.803638278,"296":42.3841436194,"297":41.9450923166,"298":41.5098775916,"299":41.1557735877,"300":41.3811784186,"301":41.1163587437,"302":41.0100185638,"303":40.9490829964,"304":41.1032691675,"305":42.8208969827,"306":47.0677899405,"307":52.5442213916,"308":57.2711525527,"309":60.5300197,"310":62.5840824342,"311":63.9149137742,"312":64.9287674466,"313":65.8693224812,"314":66.8224720633,"315":67.7736304899,"316":68.8796602545,"317":70.1136394469,"318":71.2772310603,"319":72.3457514791,"320":73.3560444864,"321":74.3005841736,"322":75.1553938306,"323":75.8896420103,"324":76.482129781,"325":76.9332563068,"326":77.2567025736,"327":77.4561789565,"328":77.5015708124,"329":77.3060564257,"330":76.7394976656,"331":75.7566839247,"332":76.5521456486,"333":76.9333641316,"334":76.9522569696,"335":76.6967583162,"336":76.1923973819,"337":75.5592480351,"338":74.8204712284,"339":74.0697695832,"340":73.2907606819,"341":72.5417412999,"342":71.8029090297,"343":71.0919290923,"344":70.4168546806,"345":69.7548222138,"346":69.1039271185,"347":68.4576267116,"348":67.8080010667,"349":67.1510787179,"350":66.4851125666,"351":65.8119906998,"352":65.1359136255,"353":64.4611699794,"354":63.7903743839,"355":63.124098788,"356":62.4619653517,"357":61.8082352531,"358":61.1634806346,"359":60.5274244855,"360":59.9029498604,"361":59.2905750181,"362":58.6874950168,"363":58.089397343,"364":57.4924680047,"365":56.8956458942,"366":56.3014545901,"367":55.7148290273,"368":55.1405530147,"369":54.5808359016,"370":54.0343420907,"371":53.4975498842,"372":52.967159368,"373":52.4417011473,"374":51.9226343785,"375":51.4112432856,"376":50.9130127761,"377":50.4329776622,"378":49.9707815354,"379":49.5225903392,"380":49.0833936788,"381":48.6487385339,"382":48.2172183697,"383":47.7906822706,"384":47.3724285891,"385":46.9631457541,"386":46.5592486334,"387":46.1544668514,"388":45.7444739468,"389":45.3300714503,"390":44.9217372199,"391":44.5240648625,"392":44.1388345246,"393":43.7612047306,"394":43.3749500231,"395":42.9925421682,"396":42.5740907492,"397":42.1470852198,"398":41.7305766857,"399":41.3811258977}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch1_seg0", + "101": "branch1_seg0", + "102": "branch1_seg0", + "103": "branch1_seg0", + "104": "branch1_seg0", + "105": "branch1_seg0", + "106": "branch1_seg0", + "107": "branch1_seg0", + "108": "branch1_seg0", + "109": "branch1_seg0", + "110": "branch1_seg0", + "111": "branch1_seg0", + "112": "branch1_seg0", + "113": "branch1_seg0", + "114": "branch1_seg0", + "115": "branch1_seg0", + "116": "branch1_seg0", + "117": "branch1_seg0", + "118": "branch1_seg0", + "119": "branch1_seg0", + "120": "branch1_seg0", + "121": "branch1_seg0", + "122": "branch1_seg0", + "123": "branch1_seg0", + "124": "branch1_seg0", + "125": "branch1_seg0", + "126": "branch1_seg0", + "127": "branch1_seg0", + "128": "branch1_seg0", + "129": "branch1_seg0", + "130": "branch1_seg0", + "131": "branch1_seg0", + "132": "branch1_seg0", + "133": "branch1_seg0", + "134": "branch1_seg0", + "135": "branch1_seg0", + "136": "branch1_seg0", + "137": "branch1_seg0", + "138": "branch1_seg0", + "139": "branch1_seg0", + "140": "branch1_seg0", + "141": "branch1_seg0", + "142": "branch1_seg0", + "143": "branch1_seg0", + "144": "branch1_seg0", + "145": "branch1_seg0", + "146": "branch1_seg0", + "147": "branch1_seg0", + "148": "branch1_seg0", + "149": "branch1_seg0", + "150": "branch1_seg0", + "151": "branch1_seg0", + "152": "branch1_seg0", + "153": "branch1_seg0", + "154": "branch1_seg0", + "155": "branch1_seg0", + "156": "branch1_seg0", + "157": "branch1_seg0", + "158": "branch1_seg0", + "159": "branch1_seg0", + "160": "branch1_seg0", + "161": "branch1_seg0", + "162": "branch1_seg0", + "163": "branch1_seg0", + "164": "branch1_seg0", + "165": "branch1_seg0", + "166": "branch1_seg0", + "167": "branch1_seg0", + "168": "branch1_seg0", + "169": "branch1_seg0", + "170": "branch1_seg0", + "171": "branch1_seg0", + "172": "branch1_seg0", + "173": "branch1_seg0", + "174": "branch1_seg0", + "175": "branch1_seg0", + "176": "branch1_seg0", + "177": "branch1_seg0", + "178": "branch1_seg0", + "179": "branch1_seg0", + "180": "branch1_seg0", + "181": "branch1_seg0", + "182": "branch1_seg0", + "183": "branch1_seg0", + "184": "branch1_seg0", + "185": "branch1_seg0", + "186": "branch1_seg0", + "187": "branch1_seg0", + "188": "branch1_seg0", + "189": "branch1_seg0", + "190": "branch1_seg0", + "191": "branch1_seg0", + "192": "branch1_seg0", + "193": "branch1_seg0", + "194": "branch1_seg0", + "195": "branch1_seg0", + "196": "branch1_seg0", + "197": "branch1_seg0", + "198": "branch1_seg0", + "199": "branch1_seg0", + "200": "branch2_seg0", + "201": "branch2_seg0", + "202": "branch2_seg0", + "203": "branch2_seg0", + "204": "branch2_seg0", + "205": "branch2_seg0", + "206": "branch2_seg0", + "207": "branch2_seg0", + "208": "branch2_seg0", + "209": "branch2_seg0", + "210": "branch2_seg0", + "211": "branch2_seg0", + "212": "branch2_seg0", + "213": "branch2_seg0", + "214": "branch2_seg0", + "215": "branch2_seg0", + "216": "branch2_seg0", + "217": "branch2_seg0", + "218": "branch2_seg0", + "219": "branch2_seg0", + "220": "branch2_seg0", + "221": "branch2_seg0", + "222": "branch2_seg0", + "223": "branch2_seg0", + "224": "branch2_seg0", + "225": "branch2_seg0", + "226": "branch2_seg0", + "227": "branch2_seg0", + "228": "branch2_seg0", + "229": "branch2_seg0", + "230": "branch2_seg0", + "231": "branch2_seg0", + "232": "branch2_seg0", + "233": "branch2_seg0", + "234": "branch2_seg0", + "235": "branch2_seg0", + "236": "branch2_seg0", + "237": "branch2_seg0", + "238": "branch2_seg0", + "239": "branch2_seg0", + "240": "branch2_seg0", + "241": "branch2_seg0", + "242": "branch2_seg0", + "243": "branch2_seg0", + "244": "branch2_seg0", + "245": "branch2_seg0", + "246": "branch2_seg0", + "247": "branch2_seg0", + "248": "branch2_seg0", + "249": "branch2_seg0", + "250": "branch2_seg0", + "251": "branch2_seg0", + "252": "branch2_seg0", + "253": "branch2_seg0", + "254": "branch2_seg0", + "255": "branch2_seg0", + "256": "branch2_seg0", + "257": "branch2_seg0", + "258": "branch2_seg0", + "259": "branch2_seg0", + "260": "branch2_seg0", + "261": "branch2_seg0", + "262": "branch2_seg0", + "263": "branch2_seg0", + "264": "branch2_seg0", + "265": "branch2_seg0", + "266": "branch2_seg0", + "267": "branch2_seg0", + "268": "branch2_seg0", + "269": "branch2_seg0", + "270": "branch2_seg0", + "271": "branch2_seg0", + "272": "branch2_seg0", + "273": "branch2_seg0", + "274": "branch2_seg0", + "275": "branch2_seg0", + "276": "branch2_seg0", + "277": "branch2_seg0", + "278": "branch2_seg0", + "279": "branch2_seg0", + "280": "branch2_seg0", + "281": "branch2_seg0", + "282": "branch2_seg0", + "283": "branch2_seg0", + "284": "branch2_seg0", + "285": "branch2_seg0", + "286": "branch2_seg0", + "287": "branch2_seg0", + "288": "branch2_seg0", + "289": "branch2_seg0", + "290": "branch2_seg0", + "291": "branch2_seg0", + "292": "branch2_seg0", + "293": "branch2_seg0", + "294": "branch2_seg0", + "295": "branch2_seg0", + "296": "branch2_seg0", + "297": "branch2_seg0", + "298": "branch2_seg0", + "299": "branch2_seg0", + "300": "branch3_seg0", + "301": "branch3_seg0", + "302": "branch3_seg0", + "303": "branch3_seg0", + "304": "branch3_seg0", + "305": "branch3_seg0", + "306": "branch3_seg0", + "307": "branch3_seg0", + "308": "branch3_seg0", + "309": "branch3_seg0", + "310": "branch3_seg0", + "311": "branch3_seg0", + "312": "branch3_seg0", + "313": "branch3_seg0", + "314": "branch3_seg0", + "315": "branch3_seg0", + "316": "branch3_seg0", + "317": "branch3_seg0", + "318": "branch3_seg0", + "319": "branch3_seg0", + "320": "branch3_seg0", + "321": "branch3_seg0", + "322": "branch3_seg0", + "323": "branch3_seg0", + "324": "branch3_seg0", + "325": "branch3_seg0", + "326": "branch3_seg0", + "327": "branch3_seg0", + "328": "branch3_seg0", + "329": "branch3_seg0", + "330": "branch3_seg0", + "331": "branch3_seg0", + "332": "branch3_seg0", + "333": "branch3_seg0", + "334": "branch3_seg0", + "335": "branch3_seg0", + "336": "branch3_seg0", + "337": "branch3_seg0", + "338": "branch3_seg0", + "339": "branch3_seg0", + "340": "branch3_seg0", + "341": "branch3_seg0", + "342": "branch3_seg0", + "343": "branch3_seg0", + "344": "branch3_seg0", + "345": "branch3_seg0", + "346": "branch3_seg0", + "347": "branch3_seg0", + "348": "branch3_seg0", + "349": "branch3_seg0", + "350": "branch3_seg0", + "351": "branch3_seg0", + "352": "branch3_seg0", + "353": "branch3_seg0", + "354": "branch3_seg0", + "355": "branch3_seg0", + "356": "branch3_seg0", + "357": "branch3_seg0", + "358": "branch3_seg0", + "359": "branch3_seg0", + "360": "branch3_seg0", + "361": "branch3_seg0", + "362": "branch3_seg0", + "363": "branch3_seg0", + "364": "branch3_seg0", + "365": "branch3_seg0", + "366": "branch3_seg0", + "367": "branch3_seg0", + "368": "branch3_seg0", + "369": "branch3_seg0", + "370": "branch3_seg0", + "371": "branch3_seg0", + "372": "branch3_seg0", + "373": "branch3_seg0", + "374": "branch3_seg0", + "375": "branch3_seg0", + "376": "branch3_seg0", + "377": "branch3_seg0", + "378": "branch3_seg0", + "379": "branch3_seg0", + "380": "branch3_seg0", + "381": "branch3_seg0", + "382": "branch3_seg0", + "383": "branch3_seg0", + "384": "branch3_seg0", + "385": "branch3_seg0", + "386": "branch3_seg0", + "387": "branch3_seg0", + "388": "branch3_seg0", + "389": "branch3_seg0", + "390": "branch3_seg0", + "391": "branch3_seg0", + "392": "branch3_seg0", + "393": "branch3_seg0", + "394": "branch3_seg0", + "395": "branch3_seg0", + "396": "branch3_seg0", + "397": "branch3_seg0", + "398": "branch3_seg0", + "399": "branch3_seg0" + }, + "time": { + "0": 0.0, + "1": 0.0102717172, + "2": 0.0205434343, + "3": 0.0308151515, + "4": 0.0410868687, + "5": 0.0513585859, + "6": 0.061630303, + "7": 0.0719020202, + "8": 0.0821737374, + "9": 0.0924454545, + "10": 0.1027171717, + "11": 0.1129888889, + "12": 0.1232606061, + "13": 0.1335323232, + "14": 0.1438040404, + "15": 0.1540757576, + "16": 0.1643474747, + "17": 0.1746191919, + "18": 0.1848909091, + "19": 0.1951626263, + "20": 0.2054343434, + "21": 0.2157060606, + "22": 0.2259777778, + "23": 0.2362494949, + "24": 0.2465212121, + "25": 0.2567929293, + "26": 0.2670646465, + "27": 0.2773363636, + "28": 0.2876080808, + "29": 0.297879798, + "30": 0.3081515152, + "31": 0.3184232323, + "32": 0.3286949495, + "33": 0.3389666667, + "34": 0.3492383838, + "35": 0.359510101, + "36": 0.3697818182, + "37": 0.3800535354, + "38": 0.3903252525, + "39": 0.4005969697, + "40": 0.4108686869, + "41": 0.421140404, + "42": 0.4314121212, + "43": 0.4416838384, + "44": 0.4519555556, + "45": 0.4622272727, + "46": 0.4724989899, + "47": 0.4827707071, + "48": 0.4930424242, + "49": 0.5033141414, + "50": 0.5135858586, + "51": 0.5238575758, + "52": 0.5341292929, + "53": 0.5444010101, + "54": 0.5546727273, + "55": 0.5649444444, + "56": 0.5752161616, + "57": 0.5854878788, + "58": 0.595759596, + "59": 0.6060313131, + "60": 0.6163030303, + "61": 0.6265747475, + "62": 0.6368464646, + "63": 0.6471181818, + "64": 0.657389899, + "65": 0.6676616162, + "66": 0.6779333333, + "67": 0.6882050505, + "68": 0.6984767677, + "69": 0.7087484848, + "70": 0.719020202, + "71": 0.7292919192, + "72": 0.7395636364, + "73": 0.7498353535, + "74": 0.7601070707, + "75": 0.7703787879, + "76": 0.7806505051, + "77": 0.7909222222, + "78": 0.8011939394, + "79": 0.8114656566, + "80": 0.8217373737, + "81": 0.8320090909, + "82": 0.8422808081, + "83": 0.8525525253, + "84": 0.8628242424, + "85": 0.8730959596, + "86": 0.8833676768, + "87": 0.8936393939, + "88": 0.9039111111, + "89": 0.9141828283, + "90": 0.9244545455, + "91": 0.9347262626, + "92": 0.9449979798, + "93": 0.955269697, + "94": 0.9655414141, + "95": 0.9758131313, + "96": 0.9860848485, + "97": 0.9963565657, + "98": 1.0066282828, + "99": 1.0169, + "100": 0.0, + "101": 0.0102717172, + "102": 0.0205434343, + "103": 0.0308151515, + "104": 0.0410868687, + "105": 0.0513585859, + "106": 0.061630303, + "107": 0.0719020202, + "108": 0.0821737374, + "109": 0.0924454545, + "110": 0.1027171717, + "111": 0.1129888889, + "112": 0.1232606061, + "113": 0.1335323232, + "114": 0.1438040404, + "115": 0.1540757576, + "116": 0.1643474747, + "117": 0.1746191919, + "118": 0.1848909091, + "119": 0.1951626263, + "120": 0.2054343434, + "121": 0.2157060606, + "122": 0.2259777778, + "123": 0.2362494949, + "124": 0.2465212121, + "125": 0.2567929293, + "126": 0.2670646465, + "127": 0.2773363636, + "128": 0.2876080808, + "129": 0.297879798, + "130": 0.3081515152, + "131": 0.3184232323, + "132": 0.3286949495, + "133": 0.3389666667, + "134": 0.3492383838, + "135": 0.359510101, + "136": 0.3697818182, + "137": 0.3800535354, + "138": 0.3903252525, + "139": 0.4005969697, + "140": 0.4108686869, + "141": 0.421140404, + "142": 0.4314121212, + "143": 0.4416838384, + "144": 0.4519555556, + "145": 0.4622272727, + "146": 0.4724989899, + "147": 0.4827707071, + "148": 0.4930424242, + "149": 0.5033141414, + "150": 0.5135858586, + "151": 0.5238575758, + "152": 0.5341292929, + "153": 0.5444010101, + "154": 0.5546727273, + "155": 0.5649444444, + "156": 0.5752161616, + "157": 0.5854878788, + "158": 0.595759596, + "159": 0.6060313131, + "160": 0.6163030303, + "161": 0.6265747475, + "162": 0.6368464646, + "163": 0.6471181818, + "164": 0.657389899, + "165": 0.6676616162, + "166": 0.6779333333, + "167": 0.6882050505, + "168": 0.6984767677, + "169": 0.7087484848, + "170": 0.719020202, + "171": 0.7292919192, + "172": 0.7395636364, + "173": 0.7498353535, + "174": 0.7601070707, + "175": 0.7703787879, + "176": 0.7806505051, + "177": 0.7909222222, + "178": 0.8011939394, + "179": 0.8114656566, + "180": 0.8217373737, + "181": 0.8320090909, + "182": 0.8422808081, + "183": 0.8525525253, + "184": 0.8628242424, + "185": 0.8730959596, + "186": 0.8833676768, + "187": 0.8936393939, + "188": 0.9039111111, + "189": 0.9141828283, + "190": 0.9244545455, + "191": 0.9347262626, + "192": 0.9449979798, + "193": 0.955269697, + "194": 0.9655414141, + "195": 0.9758131313, + "196": 0.9860848485, + "197": 0.9963565657, + "198": 1.0066282828, + "199": 1.0169, + "200": 0.0, + "201": 0.0102717172, + "202": 0.0205434343, + "203": 0.0308151515, + "204": 0.0410868687, + "205": 0.0513585859, + "206": 0.061630303, + "207": 0.0719020202, + "208": 0.0821737374, + "209": 0.0924454545, + "210": 0.1027171717, + "211": 0.1129888889, + "212": 0.1232606061, + "213": 0.1335323232, + "214": 0.1438040404, + "215": 0.1540757576, + "216": 0.1643474747, + "217": 0.1746191919, + "218": 0.1848909091, + "219": 0.1951626263, + "220": 0.2054343434, + "221": 0.2157060606, + "222": 0.2259777778, + "223": 0.2362494949, + "224": 0.2465212121, + "225": 0.2567929293, + "226": 0.2670646465, + "227": 0.2773363636, + "228": 0.2876080808, + "229": 0.297879798, + "230": 0.3081515152, + "231": 0.3184232323, + "232": 0.3286949495, + "233": 0.3389666667, + "234": 0.3492383838, + "235": 0.359510101, + "236": 0.3697818182, + "237": 0.3800535354, + "238": 0.3903252525, + "239": 0.4005969697, + "240": 0.4108686869, + "241": 0.421140404, + "242": 0.4314121212, + "243": 0.4416838384, + "244": 0.4519555556, + "245": 0.4622272727, + "246": 0.4724989899, + "247": 0.4827707071, + "248": 0.4930424242, + "249": 0.5033141414, + "250": 0.5135858586, + "251": 0.5238575758, + "252": 0.5341292929, + "253": 0.5444010101, + "254": 0.5546727273, + "255": 0.5649444444, + "256": 0.5752161616, + "257": 0.5854878788, + "258": 0.595759596, + "259": 0.6060313131, + "260": 0.6163030303, + "261": 0.6265747475, + "262": 0.6368464646, + "263": 0.6471181818, + "264": 0.657389899, + "265": 0.6676616162, + "266": 0.6779333333, + "267": 0.6882050505, + "268": 0.6984767677, + "269": 0.7087484848, + "270": 0.719020202, + "271": 0.7292919192, + "272": 0.7395636364, + "273": 0.7498353535, + "274": 0.7601070707, + "275": 0.7703787879, + "276": 0.7806505051, + "277": 0.7909222222, + "278": 0.8011939394, + "279": 0.8114656566, + "280": 0.8217373737, + "281": 0.8320090909, + "282": 0.8422808081, + "283": 0.8525525253, + "284": 0.8628242424, + "285": 0.8730959596, + "286": 0.8833676768, + "287": 0.8936393939, + "288": 0.9039111111, + "289": 0.9141828283, + "290": 0.9244545455, + "291": 0.9347262626, + "292": 0.9449979798, + "293": 0.955269697, + "294": 0.9655414141, + "295": 0.9758131313, + "296": 0.9860848485, + "297": 0.9963565657, + "298": 1.0066282828, + "299": 1.0169, + "300": 0.0, + "301": 0.0102717172, + "302": 0.0205434343, + "303": 0.0308151515, + "304": 0.0410868687, + "305": 0.0513585859, + "306": 0.061630303, + "307": 0.0719020202, + "308": 0.0821737374, + "309": 0.0924454545, + "310": 0.1027171717, + "311": 0.1129888889, + "312": 0.1232606061, + "313": 0.1335323232, + "314": 0.1438040404, + "315": 0.1540757576, + "316": 0.1643474747, + "317": 0.1746191919, + "318": 0.1848909091, + "319": 0.1951626263, + "320": 0.2054343434, + "321": 0.2157060606, + "322": 0.2259777778, + "323": 0.2362494949, + "324": 0.2465212121, + "325": 0.2567929293, + "326": 0.2670646465, + "327": 0.2773363636, + "328": 0.2876080808, + "329": 0.297879798, + "330": 0.3081515152, + "331": 0.3184232323, + "332": 0.3286949495, + "333": 0.3389666667, + "334": 0.3492383838, + "335": 0.359510101, + "336": 0.3697818182, + "337": 0.3800535354, + "338": 0.3903252525, + "339": 0.4005969697, + "340": 0.4108686869, + "341": 0.421140404, + "342": 0.4314121212, + "343": 0.4416838384, + "344": 0.4519555556, + "345": 0.4622272727, + "346": 0.4724989899, + "347": 0.4827707071, + "348": 0.4930424242, + "349": 0.5033141414, + "350": 0.5135858586, + "351": 0.5238575758, + "352": 0.5341292929, + "353": 0.5444010101, + "354": 0.5546727273, + "355": 0.5649444444, + "356": 0.5752161616, + "357": 0.5854878788, + "358": 0.595759596, + "359": 0.6060313131, + "360": 0.6163030303, + "361": 0.6265747475, + "362": 0.6368464646, + "363": 0.6471181818, + "364": 0.657389899, + "365": 0.6676616162, + "366": 0.6779333333, + "367": 0.6882050505, + "368": 0.6984767677, + "369": 0.7087484848, + "370": 0.719020202, + "371": 0.7292919192, + "372": 0.7395636364, + "373": 0.7498353535, + "374": 0.7601070707, + "375": 0.7703787879, + "376": 0.7806505051, + "377": 0.7909222222, + "378": 0.8011939394, + "379": 0.8114656566, + "380": 0.8217373737, + "381": 0.8320090909, + "382": 0.8422808081, + "383": 0.8525525253, + "384": 0.8628242424, + "385": 0.8730959596, + "386": 0.8833676768, + "387": 0.8936393939, + "388": 0.9039111111, + "389": 0.9141828283, + "390": 0.9244545455, + "391": 0.9347262626, + "392": 0.9449979798, + "393": 0.955269697, + "394": 0.9655414141, + "395": 0.9758131313, + "396": 0.9860848485, + "397": 0.9963565657, + "398": 1.0066282828, + "399": 1.0169 + }, + "flow_in": { + "0": 17.1560888558, + "1": 17.1858380864, + "2": 17.3086183183, + "3": 17.5018204188, + "4": 18.07985721, + "5": 21.6824980776, + "6": 32.6326253248, + "7": 52.1244796537, + "8": 76.0150826477, + "9": 98.0303705857, + "10": 113.5737633349, + "11": 120.9759921478, + "12": 120.9323792826, + "13": 115.4225179058, + "14": 106.7367035771, + "15": 96.8435039406, + "16": 87.4563089512, + "17": 79.7694608841, + "18": 74.1039981755, + "19": 70.2658125845, + "20": 67.9545461784, + "21": 66.8338327877, + "22": 66.5162016205, + "23": 66.582778766, + "24": 66.6386859434, + "25": 66.3844692461, + "26": 65.6581583987, + "27": 64.4101999114, + "28": 62.613576375, + "29": 60.1481368476, + "30": 56.7223125528, + "31": 52.0325222506, + "32": 49.394212287, + "33": 49.1465419937, + "34": 49.8839617124, + "35": 50.4287469817, + "36": 50.1188350219, + "37": 48.7511464108, + "38": 46.4228953395, + "39": 43.4817008741, + "40": 40.2862482481, + "41": 37.2086578031, + "42": 34.5085926577, + "43": 32.3443508977, + "44": 30.7918766411, + "45": 29.8177471918, + "46": 29.3250837722, + "47": 29.1894902469, + "48": 29.277678569, + "49": 29.4675491989, + "50": 29.6613628442, + "51": 29.7912334306, + "52": 29.8189757827, + "53": 29.732031718, + "54": 29.5372103907, + "55": 29.2537259381, + "56": 28.906680509, + "57": 28.5280398506, + "58": 28.1450534749, + "59": 27.7712599636, + "60": 27.4125943922, + "61": 27.0719698118, + "62": 26.7496635925, + "63": 26.4438213161, + "64": 26.1510891954, + "65": 25.8672988051, + "66": 25.5883082005, + "67": 25.3108483359, + "68": 25.0331461454, + "69": 24.7551126255, + "70": 24.4780126151, + "71": 24.2022086542, + "72": 23.9237415297, + "73": 23.6339133576, + "74": 23.3220194357, + "75": 22.9739053469, + "76": 22.5796214998, + "77": 22.14004822, + "78": 21.663976326, + "79": 21.1643887507, + "80": 20.6570963055, + "81": 20.1589916629, + "82": 19.6865073048, + "83": 19.2539455022, + "84": 18.8725150646, + "85": 18.5491982694, + "86": 18.2861200157, + "87": 18.0798434005, + "88": 17.9216180676, + "89": 17.7983352482, + "90": 17.7011393703, + "91": 17.6166011685, + "92": 17.5260492636, + "93": 17.4177025994, + "94": 17.2913774604, + "95": 17.2006011813, + "96": 17.1492698308, + "97": 17.133559777, + "98": 17.1343236951, + "99": 17.1560708299, + "100": 3.8845718569, + "101": 3.8855692124, + "102": 3.9390500838, + "103": 3.9986732112, + "104": 4.2517270721, + "105": 6.1306983197, + "106": 11.1042980837, + "107": 17.9626476969, + "108": 23.5571205626, + "109": 25.9664748328, + "110": 25.4969229528, + "111": 23.4815416881, + "112": 21.1344897456, + "113": 19.156984918, + "114": 17.7695314416, + "115": 16.8882094014, + "116": 16.5070549281, + "117": 16.5400308579, + "118": 16.6722485317, + "119": 16.7034652232, + "120": 16.644779532, + "121": 16.5391890705, + "122": 16.3829742918, + "123": 16.144745553, + "124": 15.7999850101, + "125": 15.3554488442, + "126": 14.8458704268, + "127": 14.3019597559, + "128": 13.7101130536, + "129": 12.9876027766, + "130": 11.9925521105, + "131": 10.6569139097, + "132": 11.061681843, + "133": 12.0869935314, + "134": 12.4978587416, + "135": 12.2233034283, + "136": 11.531631526, + "137": 10.6709243094, + "138": 9.796730508, + "139": 9.041664748, + "140": 8.4282714612, + "141": 7.9794979625, + "142": 7.6659009413, + "143": 7.4572969005, + "144": 7.3346654188, + "145": 7.2588270877, + "146": 7.2019422249, + "147": 7.1496481232, + "148": 7.0916486635, + "149": 7.023013775, + "150": 6.9435625399, + "151": 6.8557992825, + "152": 6.7633627291, + "153": 6.669941765, + "154": 6.5785868337, + "155": 6.4913544124, + "156": 6.4092240604, + "157": 6.3359207586, + "158": 6.2710328791, + "159": 6.208917157, + "160": 6.1465166789, + "161": 6.0837724036, + "162": 6.0208831994, + "163": 5.9577939567, + "164": 5.8942921522, + "165": 5.830125684, + "166": 5.7652017643, + "167": 5.6997370594, + "168": 5.6342742066, + "169": 5.5695440353, + "170": 5.5062226508, + "171": 5.443793841, + "172": 5.3795194176, + "173": 5.3097576784, + "174": 5.2319424418, + "175": 5.1425225921, + "176": 5.0417082391, + "177": 4.9344172389, + "178": 4.8252995067, + "179": 4.7174266018, + "180": 4.613571845, + "181": 4.516202428, + "182": 4.4273787542, + "183": 4.3484627757, + "184": 4.2802329367, + "185": 4.2226027809, + "186": 4.1746307197, + "187": 4.1343076389, + "188": 4.0989006158, + "189": 4.0653557748, + "190": 4.0348665838, + "191": 4.0041050637, + "192": 3.9676935713, + "193": 3.9265419891, + "194": 3.8857646369, + "195": 3.87658971, + "196": 3.8786700495, + "197": 3.8832516521, + "198": 3.8813405283, + "199": 3.8845678178, + "200": 0.5133769874, + "201": 0.4838104887, + "202": 0.4221247676, + "203": 0.3207516801, + "204": 0.211387425, + "205": 0.2066665128, + "206": 0.3604401909, + "207": 0.5755069594, + "208": 0.7500428963, + "209": 0.8659533976, + "210": 0.9393672629, + "211": 0.9876634933, + "212": 1.0247573376, + "213": 1.0587437776, + "214": 1.0923528325, + "215": 1.1247122893, + "216": 1.1663002449, + "217": 1.2080385686, + "218": 1.238562041, + "219": 1.2627763269, + "220": 1.2837247153, + "221": 1.3017647827, + "222": 1.3174504882, + "223": 1.3301397724, + "224": 1.3389848913, + "225": 1.3438488143, + "226": 1.3454870606, + "227": 1.3450291913, + "228": 1.3429325118, + "229": 1.3381062628, + "230": 1.327733286, + "231": 1.3153955072, + "232": 1.4809318293, + "233": 1.5715647456, + "234": 1.6548198612, + "235": 1.709620815, + "236": 1.7359696331, + "237": 1.7366234452, + "238": 1.7123863766, + "239": 1.6730311933, + "240": 1.6214748928, + "241": 1.567629275, + "242": 1.5115468111, + "243": 1.4582740547, + "244": 1.4062867151, + "245": 1.3539662551, + "246": 1.3025157949, + "247": 1.2518221862, + "248": 1.2030574306, + "249": 1.157931136, + "250": 1.1175397041, + "251": 1.0820227099, + "252": 1.0505748626, + "253": 1.0221304623, + "254": 0.9961303617, + "255": 0.9728200787, + "256": 0.9528706409, + "257": 0.9366259325, + "258": 0.922884834, + "259": 0.9099835362, + "260": 0.8966160716, + "261": 0.882065086, + "262": 0.8667892376, + "263": 0.8522621986, + "264": 0.8401579687, + "265": 0.8314152945, + "266": 0.8255899706, + "267": 0.8208982899, + "268": 0.8150227671, + "269": 0.8062657529, + "270": 0.7943548279, + "271": 0.7803961583, + "272": 0.7661197311, + "273": 0.7529798898, + "274": 0.7414622577, + "275": 0.7307110512, + "276": 0.719426262, + "277": 0.7063275603, + "278": 0.6909465571, + "279": 0.674011014, + "280": 0.6569011244, + "281": 0.6408691213, + "282": 0.6264279856, + "283": 0.6130304577, + "284": 0.5995274585, + "285": 0.5851583334, + "286": 0.5704548543, + "287": 0.5570760791, + "288": 0.5467143387, + "289": 0.5397714751, + "290": 0.5347941308, + "291": 0.5278380853, + "292": 0.5164015077, + "293": 0.5019945124, + "294": 0.4892739084, + "295": 0.4855890019, + "296": 0.4903776873, + "297": 0.5034713801, + "298": 0.5148035639, + "299": 0.5133763547, + "300": 0.8992132894, + "301": 0.8589879432, + "302": 0.7814897341, + "303": 0.6639817738, + "304": 0.564826668, + "305": 0.6644938849, + "306": 1.0253453938, + "307": 1.448093485, + "308": 1.7501233645, + "309": 1.9204889927, + "310": 2.0051236463, + "311": 2.0405825263, + "312": 2.055791475, + "313": 2.0689332837, + "314": 2.0866838169, + "315": 2.1080704858, + "316": 2.1512401081, + "317": 2.2028442004, + "318": 2.2390597063, + "319": 2.2659365925, + "320": 2.2897617208, + "321": 2.3095826073, + "322": 2.3246988096, + "323": 2.3332569921, + "324": 2.3338547553, + "325": 2.3271214368, + "326": 2.3149484328, + "327": 2.298556547, + "328": 2.2759453498, + "329": 2.2424127373, + "330": 2.1913676025, + "331": 2.1246217016, + "332": 2.2800080059, + "333": 2.3035161238, + "334": 2.3034966593, + "335": 2.2984069084, + "336": 2.2703339266, + "337": 2.228602254, + "338": 2.1737015181, + "339": 2.1179628663, + "340": 2.0587332401, + "341": 2.0058597128, + "342": 1.9555308247, + "343": 1.909612678, + "344": 1.8674388054, + "345": 1.8261363408, + "346": 1.7871449081, + "347": 1.7503758476, + "348": 1.715943548, + "349": 1.6846684193, + "350": 1.6569548111, + "351": 1.6325361652, + "352": 1.6104131561, + "353": 1.5894472403, + "354": 1.5690733623, + "355": 1.5495323629, + "356": 1.5315008972, + "357": 1.5158097948, + "358": 1.5016687287, + "359": 1.4875163155, + "360": 1.472203369, + "361": 1.4551680391, + "362": 1.4370313857, + "363": 1.4194054751, + "364": 1.4039434698, + "365": 1.3913794546, + "366": 1.3809779705, + "367": 1.3707832036, + "368": 1.3585883719, + "369": 1.3430525773, + "370": 1.3243291912, + "371": 1.3037779463, + "372": 1.2830212583, + "373": 1.2631102132, + "374": 1.2440172393, + "375": 1.224236006, + "376": 1.2022627367, + "377": 1.1771208478, + "378": 1.1488351584, + "379": 1.1188616754, + "380": 1.0894926912, + "381": 1.0628035605, + "382": 1.0397478932, + "383": 1.0196260538, + "384": 1.0007105723, + "385": 0.9816830987, + "386": 0.9629326454, + "387": 0.9463121445, + "388": 0.9336117149, + "389": 0.9248248774, + "390": 0.9180489555, + "391": 0.9091154847, + "392": 0.895072518, + "393": 0.8771215751, + "394": 0.8613333084, + "395": 0.8586048985, + "396": 0.8673141082, + "397": 0.8864288291, + "398": 0.9020154103, + "399": 0.8992122145 + }, + "flow_out": { + "0": 17.1560888558, + "1": 17.1858380864, + "2": 17.3086183183, + "3": 17.5018204188, + "4": 18.07985721, + "5": 21.6824980776, + "6": 32.6326253248, + "7": 52.1244796537, + "8": 76.0150826477, + "9": 98.0303705857, + "10": 113.5737633349, + "11": 120.9759921478, + "12": 120.9323792826, + "13": 115.4225179058, + "14": 106.7367035771, + "15": 96.8435039406, + "16": 87.4563089512, + "17": 79.7694608841, + "18": 74.1039981755, + "19": 70.2658125845, + "20": 67.9545461784, + "21": 66.8338327877, + "22": 66.5162016205, + "23": 66.582778766, + "24": 66.6386859434, + "25": 66.3844692461, + "26": 65.6581583987, + "27": 64.4101999114, + "28": 62.613576375, + "29": 60.1481368476, + "30": 56.7223125528, + "31": 52.0325222506, + "32": 49.394212287, + "33": 49.1465419937, + "34": 49.8839617124, + "35": 50.4287469817, + "36": 50.1188350219, + "37": 48.7511464108, + "38": 46.4228953395, + "39": 43.4817008741, + "40": 40.2862482481, + "41": 37.2086578031, + "42": 34.5085926577, + "43": 32.3443508977, + "44": 30.7918766411, + "45": 29.8177471918, + "46": 29.3250837722, + "47": 29.1894902469, + "48": 29.277678569, + "49": 29.4675491989, + "50": 29.6613628442, + "51": 29.7912334306, + "52": 29.8189757827, + "53": 29.732031718, + "54": 29.5372103907, + "55": 29.2537259381, + "56": 28.906680509, + "57": 28.5280398506, + "58": 28.1450534749, + "59": 27.7712599636, + "60": 27.4125943922, + "61": 27.0719698118, + "62": 26.7496635925, + "63": 26.4438213161, + "64": 26.1510891954, + "65": 25.8672988051, + "66": 25.5883082005, + "67": 25.3108483359, + "68": 25.0331461454, + "69": 24.7551126255, + "70": 24.4780126151, + "71": 24.2022086542, + "72": 23.9237415297, + "73": 23.6339133576, + "74": 23.3220194357, + "75": 22.9739053469, + "76": 22.5796214998, + "77": 22.14004822, + "78": 21.663976326, + "79": 21.1643887507, + "80": 20.6570963055, + "81": 20.1589916629, + "82": 19.6865073048, + "83": 19.2539455022, + "84": 18.8725150646, + "85": 18.5491982694, + "86": 18.2861200157, + "87": 18.0798434005, + "88": 17.9216180676, + "89": 17.7983352482, + "90": 17.7011393703, + "91": 17.6166011685, + "92": 17.5260492636, + "93": 17.4177025994, + "94": 17.2913774604, + "95": 17.2006011813, + "96": 17.1492698308, + "97": 17.133559777, + "98": 17.1343236951, + "99": 17.1560708299, + "100": 3.8845718569, + "101": 3.8855692124, + "102": 3.9390500838, + "103": 3.9986732112, + "104": 4.2517270721, + "105": 6.1306983197, + "106": 11.1042980837, + "107": 17.9626476969, + "108": 23.5571205626, + "109": 25.9664748328, + "110": 25.4969229528, + "111": 23.4815416881, + "112": 21.1344897456, + "113": 19.156984918, + "114": 17.7695314416, + "115": 16.8882094014, + "116": 16.5070549281, + "117": 16.5400308579, + "118": 16.6722485317, + "119": 16.7034652232, + "120": 16.644779532, + "121": 16.5391890705, + "122": 16.3829742918, + "123": 16.144745553, + "124": 15.7999850101, + "125": 15.3554488442, + "126": 14.8458704268, + "127": 14.3019597559, + "128": 13.7101130536, + "129": 12.9876027766, + "130": 11.9925521105, + "131": 10.6569139097, + "132": 11.061681843, + "133": 12.0869935314, + "134": 12.4978587416, + "135": 12.2233034283, + "136": 11.531631526, + "137": 10.6709243094, + "138": 9.796730508, + "139": 9.041664748, + "140": 8.4282714612, + "141": 7.9794979625, + "142": 7.6659009413, + "143": 7.4572969005, + "144": 7.3346654188, + "145": 7.2588270877, + "146": 7.2019422249, + "147": 7.1496481232, + "148": 7.0916486635, + "149": 7.023013775, + "150": 6.9435625399, + "151": 6.8557992825, + "152": 6.7633627291, + "153": 6.669941765, + "154": 6.5785868337, + "155": 6.4913544124, + "156": 6.4092240604, + "157": 6.3359207586, + "158": 6.2710328791, + "159": 6.208917157, + "160": 6.1465166789, + "161": 6.0837724036, + "162": 6.0208831994, + "163": 5.9577939567, + "164": 5.8942921522, + "165": 5.830125684, + "166": 5.7652017643, + "167": 5.6997370594, + "168": 5.6342742066, + "169": 5.5695440353, + "170": 5.5062226508, + "171": 5.443793841, + "172": 5.3795194176, + "173": 5.3097576784, + "174": 5.2319424418, + "175": 5.1425225921, + "176": 5.0417082391, + "177": 4.9344172389, + "178": 4.8252995067, + "179": 4.7174266018, + "180": 4.613571845, + "181": 4.516202428, + "182": 4.4273787542, + "183": 4.3484627757, + "184": 4.2802329367, + "185": 4.2226027809, + "186": 4.1746307197, + "187": 4.1343076389, + "188": 4.0989006158, + "189": 4.0653557748, + "190": 4.0348665838, + "191": 4.0041050637, + "192": 3.9676935713, + "193": 3.9265419891, + "194": 3.8857646369, + "195": 3.87658971, + "196": 3.8786700495, + "197": 3.8832516521, + "198": 3.8813405283, + "199": 3.8845678178, + "200": 0.5133769874, + "201": 0.4838104887, + "202": 0.4221247676, + "203": 0.3207516801, + "204": 0.211387425, + "205": 0.2066665128, + "206": 0.3604401909, + "207": 0.5755069594, + "208": 0.7500428963, + "209": 0.8659533976, + "210": 0.9393672629, + "211": 0.9876634933, + "212": 1.0247573376, + "213": 1.0587437776, + "214": 1.0923528325, + "215": 1.1247122893, + "216": 1.1663002449, + "217": 1.2080385686, + "218": 1.238562041, + "219": 1.2627763269, + "220": 1.2837247153, + "221": 1.3017647827, + "222": 1.3174504882, + "223": 1.3301397724, + "224": 1.3389848913, + "225": 1.3438488143, + "226": 1.3454870606, + "227": 1.3450291913, + "228": 1.3429325118, + "229": 1.3381062628, + "230": 1.327733286, + "231": 1.3153955072, + "232": 1.4809318293, + "233": 1.5715647456, + "234": 1.6548198612, + "235": 1.709620815, + "236": 1.7359696331, + "237": 1.7366234452, + "238": 1.7123863766, + "239": 1.6730311933, + "240": 1.6214748928, + "241": 1.567629275, + "242": 1.5115468111, + "243": 1.4582740547, + "244": 1.4062867151, + "245": 1.3539662551, + "246": 1.3025157949, + "247": 1.2518221862, + "248": 1.2030574306, + "249": 1.157931136, + "250": 1.1175397041, + "251": 1.0820227099, + "252": 1.0505748626, + "253": 1.0221304623, + "254": 0.9961303617, + "255": 0.9728200787, + "256": 0.9528706409, + "257": 0.9366259325, + "258": 0.922884834, + "259": 0.9099835362, + "260": 0.8966160716, + "261": 0.882065086, + "262": 0.8667892376, + "263": 0.8522621986, + "264": 0.8401579687, + "265": 0.8314152945, + "266": 0.8255899706, + "267": 0.8208982899, + "268": 0.8150227671, + "269": 0.8062657529, + "270": 0.7943548279, + "271": 0.7803961583, + "272": 0.7661197311, + "273": 0.7529798898, + "274": 0.7414622577, + "275": 0.7307110512, + "276": 0.719426262, + "277": 0.7063275603, + "278": 0.6909465571, + "279": 0.674011014, + "280": 0.6569011244, + "281": 0.6408691213, + "282": 0.6264279856, + "283": 0.6130304577, + "284": 0.5995274585, + "285": 0.5851583334, + "286": 0.5704548543, + "287": 0.5570760791, + "288": 0.5467143387, + "289": 0.5397714751, + "290": 0.5347941308, + "291": 0.5278380853, + "292": 0.5164015077, + "293": 0.5019945124, + "294": 0.4892739084, + "295": 0.4855890019, + "296": 0.4903776873, + "297": 0.5034713801, + "298": 0.5148035639, + "299": 0.5133763547, + "300": 0.8992132894, + "301": 0.8589879432, + "302": 0.7814897341, + "303": 0.6639817738, + "304": 0.564826668, + "305": 0.6644938849, + "306": 1.0253453938, + "307": 1.448093485, + "308": 1.7501233645, + "309": 1.9204889927, + "310": 2.0051236463, + "311": 2.0405825263, + "312": 2.055791475, + "313": 2.0689332837, + "314": 2.0866838169, + "315": 2.1080704858, + "316": 2.1512401081, + "317": 2.2028442004, + "318": 2.2390597063, + "319": 2.2659365925, + "320": 2.2897617208, + "321": 2.3095826073, + "322": 2.3246988096, + "323": 2.3332569921, + "324": 2.3338547553, + "325": 2.3271214368, + "326": 2.3149484328, + "327": 2.298556547, + "328": 2.2759453498, + "329": 2.2424127373, + "330": 2.1913676025, + "331": 2.1246217016, + "332": 2.2800080059, + "333": 2.3035161238, + "334": 2.3034966593, + "335": 2.2984069084, + "336": 2.2703339266, + "337": 2.228602254, + "338": 2.1737015181, + "339": 2.1179628663, + "340": 2.0587332401, + "341": 2.0058597128, + "342": 1.9555308247, + "343": 1.909612678, + "344": 1.8674388054, + "345": 1.8261363408, + "346": 1.7871449081, + "347": 1.7503758476, + "348": 1.715943548, + "349": 1.6846684193, + "350": 1.6569548111, + "351": 1.6325361652, + "352": 1.6104131561, + "353": 1.5894472403, + "354": 1.5690733623, + "355": 1.5495323629, + "356": 1.5315008972, + "357": 1.5158097948, + "358": 1.5016687287, + "359": 1.4875163155, + "360": 1.472203369, + "361": 1.4551680391, + "362": 1.4370313857, + "363": 1.4194054751, + "364": 1.4039434698, + "365": 1.3913794546, + "366": 1.3809779705, + "367": 1.3707832036, + "368": 1.3585883719, + "369": 1.3430525773, + "370": 1.3243291912, + "371": 1.3037779463, + "372": 1.2830212583, + "373": 1.2631102132, + "374": 1.2440172393, + "375": 1.224236006, + "376": 1.2022627367, + "377": 1.1771208478, + "378": 1.1488351584, + "379": 1.1188616754, + "380": 1.0894926912, + "381": 1.0628035605, + "382": 1.0397478932, + "383": 1.0196260538, + "384": 1.0007105723, + "385": 0.9816830987, + "386": 0.9629326454, + "387": 0.9463121445, + "388": 0.9336117149, + "389": 0.9248248774, + "390": 0.9180489555, + "391": 0.9091154847, + "392": 0.895072518, + "393": 0.8771215751, + "394": 0.8613333084, + "395": 0.8586048985, + "396": 0.8673141082, + "397": 0.8864288291, + "398": 0.9020154103, + "399": 0.8992122145 + }, + "pressure_in": { + "0": 43.4038589144, + "1": 43.0107847426, + "2": 42.7092397291, + "3": 42.3470522557, + "4": 42.3319041441, + "5": 44.5061523851, + "6": 49.7357292074, + "7": 56.0992102627, + "8": 61.3873704061, + "9": 64.9566821495, + "10": 67.1536788124, + "11": 68.5409133968, + "12": 69.5838048675, + "13": 70.5569715094, + "14": 71.5544199697, + "15": 72.5552621019, + "16": 73.7873102283, + "17": 75.1266817427, + "18": 76.3575286566, + "19": 77.4872287556, + "20": 78.5478702484, + "21": 79.5342985426, + "22": 80.4195337896, + "23": 81.1673344706, + "24": 81.7552088329, + "25": 82.1863115386, + "26": 82.4790809457, + "27": 82.6385993907, + "28": 82.6269038399, + "29": 82.3456362251, + "30": 81.6481724393, + "31": 80.5061977238, + "32": 81.9648795955, + "33": 81.9696106721, + "34": 82.2717737054, + "35": 81.815478834, + "36": 81.3332685476, + "37": 80.54250693, + "38": 79.6997356424, + "39": 78.8139971108, + "40": 77.9001060359, + "41": 77.0425680455, + "42": 76.1844402017, + "43": 75.3791763834, + "44": 74.606971445, + "45": 73.8532128631, + "46": 73.1163929996, + "47": 72.3880282949, + "48": 71.6627717105, + "49": 70.9376492722, + "50": 70.211730065, + "51": 69.4855793007, + "52": 68.7606964276, + "53": 68.0390273797, + "54": 67.3225360671, + "55": 66.6129148654, + "56": 65.9114001534, + "57": 65.2242329278, + "58": 64.5478986837, + "59": 63.8793661318, + "60": 63.2190736432, + "61": 62.5668395509, + "62": 61.9224346975, + "63": 61.2855568124, + "64": 60.6557972799, + "65": 60.0327473851, + "66": 59.4160945771, + "67": 58.8057050072, + "68": 58.2016374842, + "69": 57.6040855404, + "70": 57.0132619767, + "71": 56.4293239297, + "72": 55.8524232469, + "73": 55.2828206209, + "74": 54.7209795089, + "75": 54.1635541149, + "76": 53.6136870234, + "77": 53.074177263, + "78": 52.5460038452, + "79": 52.0295852809, + "80": 51.5253485167, + "81": 51.03296783, + "82": 50.5520972688, + "83": 50.0816699298, + "84": 49.6208276647, + "85": 49.1681426819, + "86": 48.7225576922, + "87": 48.2825980374, + "88": 47.8472792998, + "89": 47.4154642268, + "90": 46.9923420715, + "91": 46.5709312307, + "92": 46.1497834995, + "93": 45.7298864398, + "94": 45.3125663492, + "95": 44.9382613628, + "96": 44.5433051389, + "97": 44.1695095689, + "98": 43.7752995547, + "99": 43.4038040038, + "100": 43.4038589144, + "101": 43.0107847426, + "102": 42.7092397291, + "103": 42.3470522557, + "104": 42.3319041441, + "105": 44.5061523851, + "106": 49.7357292074, + "107": 56.0992102627, + "108": 61.3873704061, + "109": 64.9566821495, + "110": 67.1536788124, + "111": 68.5409133968, + "112": 69.5838048675, + "113": 70.5569715094, + "114": 71.5544199697, + "115": 72.5552621019, + "116": 73.7873102283, + "117": 75.1266817427, + "118": 76.3575286566, + "119": 77.4872287556, + "120": 78.5478702484, + "121": 79.5342985426, + "122": 80.4195337896, + "123": 81.1673344706, + "124": 81.7552088329, + "125": 82.1863115386, + "126": 82.4790809457, + "127": 82.6385993907, + "128": 82.6269038399, + "129": 82.3456362251, + "130": 81.6481724393, + "131": 80.5061977238, + "132": 81.9648795955, + "133": 81.9696106721, + "134": 82.2717737054, + "135": 81.815478834, + "136": 81.3332685476, + "137": 80.54250693, + "138": 79.6997356424, + "139": 78.8139971108, + "140": 77.9001060359, + "141": 77.0425680455, + "142": 76.1844402017, + "143": 75.3791763834, + "144": 74.606971445, + "145": 73.8532128631, + "146": 73.1163929996, + "147": 72.3880282949, + "148": 71.6627717105, + "149": 70.9376492722, + "150": 70.211730065, + "151": 69.4855793007, + "152": 68.7606964276, + "153": 68.0390273797, + "154": 67.3225360671, + "155": 66.6129148654, + "156": 65.9114001534, + "157": 65.2242329278, + "158": 64.5478986837, + "159": 63.8793661318, + "160": 63.2190736432, + "161": 62.5668395509, + "162": 61.9224346975, + "163": 61.2855568124, + "164": 60.6557972799, + "165": 60.0327473851, + "166": 59.4160945771, + "167": 58.8057050072, + "168": 58.2016374842, + "169": 57.6040855404, + "170": 57.0132619767, + "171": 56.4293239297, + "172": 55.8524232469, + "173": 55.2828206209, + "174": 54.7209795089, + "175": 54.1635541149, + "176": 53.6136870234, + "177": 53.074177263, + "178": 52.5460038452, + "179": 52.0295852809, + "180": 51.5253485167, + "181": 51.03296783, + "182": 50.5520972688, + "183": 50.0816699298, + "184": 49.6208276647, + "185": 49.1681426819, + "186": 48.7225576922, + "187": 48.2825980374, + "188": 47.8472792998, + "189": 47.4154642268, + "190": 46.9923420715, + "191": 46.5709312307, + "192": 46.1497834995, + "193": 45.7298864398, + "194": 45.3125663492, + "195": 44.9382613628, + "196": 44.5433051389, + "197": 44.1695095689, + "198": 43.7752995547, + "199": 43.4038040038, + "200": 43.4038589144, + "201": 43.0107847426, + "202": 42.7092397291, + "203": 42.3470522557, + "204": 42.3319041441, + "205": 44.5061523851, + "206": 49.7357292074, + "207": 56.0992102627, + "208": 61.3873704061, + "209": 64.9566821495, + "210": 67.1536788124, + "211": 68.5409133968, + "212": 69.5838048675, + "213": 70.5569715094, + "214": 71.5544199697, + "215": 72.5552621019, + "216": 73.7873102283, + "217": 75.1266817427, + "218": 76.3575286566, + "219": 77.4872287556, + "220": 78.5478702484, + "221": 79.5342985426, + "222": 80.4195337896, + "223": 81.1673344706, + "224": 81.7552088329, + "225": 82.1863115386, + "226": 82.4790809457, + "227": 82.6385993907, + "228": 82.6269038399, + "229": 82.3456362251, + "230": 81.6481724393, + "231": 80.5061977238, + "232": 81.9648795955, + "233": 81.9696106721, + "234": 82.2717737054, + "235": 81.815478834, + "236": 81.3332685476, + "237": 80.54250693, + "238": 79.6997356424, + "239": 78.8139971108, + "240": 77.9001060359, + "241": 77.0425680455, + "242": 76.1844402017, + "243": 75.3791763834, + "244": 74.606971445, + "245": 73.8532128631, + "246": 73.1163929996, + "247": 72.3880282949, + "248": 71.6627717105, + "249": 70.9376492722, + "250": 70.211730065, + "251": 69.4855793007, + "252": 68.7606964276, + "253": 68.0390273797, + "254": 67.3225360671, + "255": 66.6129148654, + "256": 65.9114001534, + "257": 65.2242329278, + "258": 64.5478986837, + "259": 63.8793661318, + "260": 63.2190736432, + "261": 62.5668395509, + "262": 61.9224346975, + "263": 61.2855568124, + "264": 60.6557972799, + "265": 60.0327473851, + "266": 59.4160945771, + "267": 58.8057050072, + "268": 58.2016374842, + "269": 57.6040855404, + "270": 57.0132619767, + "271": 56.4293239297, + "272": 55.8524232469, + "273": 55.2828206209, + "274": 54.7209795089, + "275": 54.1635541149, + "276": 53.6136870234, + "277": 53.074177263, + "278": 52.5460038452, + "279": 52.0295852809, + "280": 51.5253485167, + "281": 51.03296783, + "282": 50.5520972688, + "283": 50.0816699298, + "284": 49.6208276647, + "285": 49.1681426819, + "286": 48.7225576922, + "287": 48.2825980374, + "288": 47.8472792998, + "289": 47.4154642268, + "290": 46.9923420715, + "291": 46.5709312307, + "292": 46.1497834995, + "293": 45.7298864398, + "294": 45.3125663492, + "295": 44.9382613628, + "296": 44.5433051389, + "297": 44.1695095689, + "298": 43.7752995547, + "299": 43.4038040038, + "300": 43.4038589144, + "301": 43.0107847426, + "302": 42.7092397291, + "303": 42.3470522557, + "304": 42.3319041441, + "305": 44.5061523851, + "306": 49.7357292074, + "307": 56.0992102627, + "308": 61.3873704061, + "309": 64.9566821495, + "310": 67.1536788124, + "311": 68.5409133968, + "312": 69.5838048675, + "313": 70.5569715094, + "314": 71.5544199697, + "315": 72.5552621019, + "316": 73.7873102283, + "317": 75.1266817427, + "318": 76.3575286566, + "319": 77.4872287556, + "320": 78.5478702484, + "321": 79.5342985426, + "322": 80.4195337896, + "323": 81.1673344706, + "324": 81.7552088329, + "325": 82.1863115386, + "326": 82.4790809457, + "327": 82.6385993907, + "328": 82.6269038399, + "329": 82.3456362251, + "330": 81.6481724393, + "331": 80.5061977238, + "332": 81.9648795955, + "333": 81.9696106721, + "334": 82.2717737054, + "335": 81.815478834, + "336": 81.3332685476, + "337": 80.54250693, + "338": 79.6997356424, + "339": 78.8139971108, + "340": 77.9001060359, + "341": 77.0425680455, + "342": 76.1844402017, + "343": 75.3791763834, + "344": 74.606971445, + "345": 73.8532128631, + "346": 73.1163929996, + "347": 72.3880282949, + "348": 71.6627717105, + "349": 70.9376492722, + "350": 70.211730065, + "351": 69.4855793007, + "352": 68.7606964276, + "353": 68.0390273797, + "354": 67.3225360671, + "355": 66.6129148654, + "356": 65.9114001534, + "357": 65.2242329278, + "358": 64.5478986837, + "359": 63.8793661318, + "360": 63.2190736432, + "361": 62.5668395509, + "362": 61.9224346975, + "363": 61.2855568124, + "364": 60.6557972799, + "365": 60.0327473851, + "366": 59.4160945771, + "367": 58.8057050072, + "368": 58.2016374842, + "369": 57.6040855404, + "370": 57.0132619767, + "371": 56.4293239297, + "372": 55.8524232469, + "373": 55.2828206209, + "374": 54.7209795089, + "375": 54.1635541149, + "376": 53.6136870234, + "377": 53.074177263, + "378": 52.5460038452, + "379": 52.0295852809, + "380": 51.5253485167, + "381": 51.03296783, + "382": 50.5520972688, + "383": 50.0816699298, + "384": 49.6208276647, + "385": 49.1681426819, + "386": 48.7225576922, + "387": 48.2825980374, + "388": 47.8472792998, + "389": 47.4154642268, + "390": 46.9923420715, + "391": 46.5709312307, + "392": 46.1497834995, + "393": 45.7298864398, + "394": 45.3125663492, + "395": 44.9382613628, + "396": 44.5433051389, + "397": 44.1695095689, + "398": 43.7752995547, + "399": 43.4038040038 + }, + "pressure_out": { + "0": 43.3308555123, + "1": 42.9441575769, + "2": 42.5717433562, + "3": 42.2137594621, + "4": 41.9227179054, + "5": 42.1284021599, + "6": 43.6305329149, + "7": 46.9131172407, + "8": 51.6701615811, + "9": 57.0863624691, + "10": 62.3447395927, + "11": 66.8953971798, + "12": 70.4938450827, + "13": 73.1321883316, + "14": 74.9416161217, + "15": 76.1053480531, + "16": 76.8532052589, + "17": 77.4066324658, + "18": 77.8997425782, + "19": 78.3979936405, + "20": 78.9397090315, + "21": 79.5424273871, + "22": 80.1994992102, + "23": 80.881577762, + "24": 81.5445101207, + "25": 82.1420282734, + "26": 82.6367506648, + "27": 83.0023315184, + "28": 83.2142252028, + "29": 83.2327474613, + "30": 82.9872412184, + "31": 82.3941245794, + "32": 81.9255589041, + "33": 81.7207442814, + "34": 81.6631486923, + "35": 81.6117625875, + "36": 81.4551825303, + "37": 81.1258613228, + "38": 80.5953329294, + "39": 79.8794108858, + "40": 79.0109951995, + "41": 78.0408284476, + "42": 77.0176910334, + "43": 75.9850650024, + "44": 74.9794475249, + "45": 74.0225873714, + "46": 73.1242430809, + "47": 72.2852432405, + "48": 71.4994026069, + "49": 70.7564530446, + "50": 70.0446977328, + "51": 69.352989342, + "52": 68.6720294365, + "53": 67.9950278454, + "54": 67.3178311626, + "55": 66.6386563881, + "56": 65.9575753247, + "57": 65.2768756431, + "58": 64.5994711852, + "59": 63.9272599878, + "60": 63.2614919459, + "61": 62.6031656557, + "62": 61.9529819706, + "63": 61.3113274819, + "64": 60.6782735265, + "65": 60.0535870114, + "66": 59.4367884776, + "67": 58.8272641797, + "68": 58.2244141875, + "69": 57.6277942541, + "70": 57.0372020372, + "71": 56.4538177984, + "72": 55.8801209851, + "73": 55.3178581422, + "74": 54.7676168282, + "75": 54.2284141475, + "76": 53.6985621064, + "77": 53.1767533768, + "78": 52.6620144739, + "79": 52.1535191535, + "80": 51.6506883335, + "81": 51.1532090566, + "82": 50.6610245474, + "83": 50.1742557298, + "84": 49.6932148027, + "85": 49.2184162891, + "86": 48.7506269176, + "87": 48.2907567614, + "88": 47.8396382319, + "89": 47.3976935341, + "90": 46.9657486623, + "91": 46.5435569284, + "92": 46.1285661393, + "93": 45.7170984606, + "94": 45.3061512252, + "95": 44.9012173282, + "96": 44.5024172316, + "97": 44.1091502794, + "98": 43.7185044429, + "99": 43.3308005716, + "100": 43.0744540308, + "101": 42.6900882298, + "102": 42.3404583882, + "103": 42.0027698907, + "104": 41.8080526625, + "105": 42.7803391094, + "106": 46.2222584783, + "107": 51.8488625294, + "108": 57.8165243245, + "109": 62.5513706104, + "110": 65.6617217044, + "111": 67.5260612346, + "112": 68.6975631091, + "113": 69.6074224224, + "114": 70.4882349364, + "115": 71.4032856013, + "116": 72.4521939932, + "117": 73.6739918445, + "118": 74.9315089595, + "119": 76.1079488312, + "120": 77.1938533764, + "121": 78.2030138772, + "122": 79.1253779074, + "123": 79.9316741717, + "124": 80.5919854803, + "125": 81.0938182836, + "126": 81.4455635915, + "127": 81.6595368234, + "128": 81.7233325799, + "129": 81.5746700365, + "130": 81.0959157035, + "131": 80.1954067924, + "132": 80.2543300342, + "133": 80.8108754439, + "134": 81.1354323956, + "135": 81.0670292925, + "136": 80.6616447169, + "137": 80.0136724526, + "138": 79.2019402604, + "139": 78.3195398209, + "140": 77.4078981484, + "141": 76.5128730518, + "142": 75.6471857542, + "143": 74.8168435286, + "144": 74.0288702008, + "145": 73.2720512681, + "146": 72.5355046263, + "147": 71.8122897258, + "148": 71.0956358263, + "149": 70.3807341386, + "150": 69.6653003282, + "151": 68.9490080888, + "152": 68.2328770539, + "153": 67.5186936819, + "154": 66.8085153313, + "155": 66.1042843744, + "156": 65.4075640767, + "157": 64.7219525435, + "158": 64.0487783372, + "159": 63.3856098135, + "160": 62.7307018996, + "161": 62.083757328, + "162": 61.4446441401, + "163": 60.8131264846, + "164": 60.1888728431, + "165": 59.5714717552, + "166": 58.9605185041, + "167": 58.3557216997, + "168": 57.7569805944, + "169": 57.1643948652, + "170": 56.5781947414, + "171": 55.9993796767, + "172": 55.4292804881, + "173": 54.8682797354, + "174": 54.3163556956, + "175": 53.771756456, + "176": 53.2339222238, + "177": 52.7046780994, + "178": 52.1856164798, + "179": 51.6772127459, + "180": 51.1795407156, + "181": 50.692375597, + "182": 50.2152599383, + "183": 49.7474368711, + "184": 49.2880645123, + "185": 48.8362407502, + "186": 48.3911869809, + "187": 47.9521564307, + "188": 47.518455755, + "189": 47.0893336685, + "190": 46.6667261034, + "191": 46.249689098, + "192": 45.8343741433, + "193": 45.4188769941, + "194": 45.0036999473, + "195": 44.6084058058, + "196": 44.222711709, + "197": 43.8411214336, + "198": 43.456431694, + "199": 43.0743994427, + "200": 41.1558257102, + "201": 40.9213062165, + "202": 40.9108693775, + "203": 41.0296565179, + "204": 41.4758197663, + "205": 43.5397888897, + "206": 47.9841388267, + "207": 53.4183969019, + "208": 57.9908771282, + "209": 61.0877996631, + "210": 62.9872186719, + "211": 64.1743530357, + "212": 65.0583267785, + "213": 65.882556069, + "214": 66.7324416743, + "215": 67.5928552414, + "216": 68.6282629335, + "217": 69.795163085, + "218": 70.8999287153, + "219": 71.9243089036, + "220": 72.8961278351, + "221": 73.8047665708, + "222": 74.6228973803, + "223": 75.3175706614, + "224": 75.8696335575, + "225": 76.282192118, + "226": 76.5696965312, + "227": 76.7323444485, + "228": 76.7310736794, + "229": 76.4736917413, + "230": 75.8271320145, + "231": 74.7375317996, + "232": 75.2266974173, + "233": 75.1301825513, + "234": 74.8611369298, + "235": 74.3365037776, + "236": 73.6643682612, + "237": 72.9448234738, + "238": 72.1940730436, + "239": 71.504592089, + "240": 70.8181628101, + "241": 70.1966938156, + "242": 69.5887155605, + "243": 69.0104432818, + "244": 68.470043606, + "245": 67.9444319869, + "246": 67.4332407654, + "247": 66.9269839416, + "248": 66.4136615922, + "249": 65.8835839741, + "250": 65.3312810722, + "251": 64.7577086652, + "252": 64.1683858772, + "253": 63.569820415, + "254": 62.9658075766, + "255": 62.3563750995, + "256": 61.7397518776, + "257": 61.1212070049, + "258": 60.5041825905, + "259": 59.8921949571, + "260": 59.2913941053, + "261": 58.7040589489, + "262": 58.1268707223, + "263": 57.5525911343, + "264": 56.9736401142, + "265": 56.3863733144, + "266": 55.7935913793, + "267": 55.2038226283, + "268": 54.6272824906, + "269": 54.0707322303, + "270": 53.5343536078, + "271": 53.0126175464, + "272": 52.4979814998, + "273": 51.9848290271, + "274": 51.4724065019, + "275": 50.9621850578, + "276": 50.4627047958, + "277": 49.9825297722, + "278": 49.5235150969, + "279": 49.0821686552, + "280": 48.652644717, + "281": 48.2295041499, + "282": 47.8108617255, + "283": 47.3988977399, + "284": 46.9978927199, + "285": 46.6090895523, + "286": 46.2278667245, + "287": 45.8449623191, + "288": 45.4524133486, + "289": 45.0487466874, + "290": 44.6468852845, + "291": 44.259380039, + "292": 43.8919299862, + "293": 43.5362909362, + "294": 43.1714903597, + "295": 42.803638278, + "296": 42.3841436194, + "297": 41.9450923166, + "298": 41.5098775916, + "299": 41.1557735877, + "300": 41.3811784186, + "301": 41.1163587437, + "302": 41.0100185638, + "303": 40.9490829964, + "304": 41.1032691675, + "305": 42.8208969827, + "306": 47.0677899405, + "307": 52.5442213916, + "308": 57.2711525527, + "309": 60.5300197, + "310": 62.5840824342, + "311": 63.9149137742, + "312": 64.9287674466, + "313": 65.8693224812, + "314": 66.8224720633, + "315": 67.7736304899, + "316": 68.8796602545, + "317": 70.1136394469, + "318": 71.2772310603, + "319": 72.3457514791, + "320": 73.3560444864, + "321": 74.3005841736, + "322": 75.1553938306, + "323": 75.8896420103, + "324": 76.482129781, + "325": 76.9332563068, + "326": 77.2567025736, + "327": 77.4561789565, + "328": 77.5015708124, + "329": 77.3060564257, + "330": 76.7394976656, + "331": 75.7566839247, + "332": 76.5521456486, + "333": 76.9333641316, + "334": 76.9522569696, + "335": 76.6967583162, + "336": 76.1923973819, + "337": 75.5592480351, + "338": 74.8204712284, + "339": 74.0697695832, + "340": 73.2907606819, + "341": 72.5417412999, + "342": 71.8029090297, + "343": 71.0919290923, + "344": 70.4168546806, + "345": 69.7548222138, + "346": 69.1039271185, + "347": 68.4576267116, + "348": 67.8080010667, + "349": 67.1510787179, + "350": 66.4851125666, + "351": 65.8119906998, + "352": 65.1359136255, + "353": 64.4611699794, + "354": 63.7903743839, + "355": 63.124098788, + "356": 62.4619653517, + "357": 61.8082352531, + "358": 61.1634806346, + "359": 60.5274244855, + "360": 59.9029498604, + "361": 59.2905750181, + "362": 58.6874950168, + "363": 58.089397343, + "364": 57.4924680047, + "365": 56.8956458942, + "366": 56.3014545901, + "367": 55.7148290273, + "368": 55.1405530147, + "369": 54.5808359016, + "370": 54.0343420907, + "371": 53.4975498842, + "372": 52.967159368, + "373": 52.4417011473, + "374": 51.9226343785, + "375": 51.4112432856, + "376": 50.9130127761, + "377": 50.4329776622, + "378": 49.9707815354, + "379": 49.5225903392, + "380": 49.0833936788, + "381": 48.6487385339, + "382": 48.2172183697, + "383": 47.7906822706, + "384": 47.3724285891, + "385": 46.9631457541, + "386": 46.5592486334, + "387": 46.1544668514, + "388": 45.7444739468, + "389": 45.3300714503, + "390": 44.9217372199, + "391": 44.5240648625, + "392": 44.1388345246, + "393": 43.7612047306, + "394": 43.3749500231, + "395": 42.9925421682, + "396": 42.5740907492, + "397": 42.1470852198, + "398": 41.7305766857, + "399": 41.3811258977 + } +} diff --git a/tests/cases/results/result_coupledBlock_closedLoopHeart_singleVessel.json b/tests/cases/results/result_coupledBlock_closedLoopHeart_singleVessel.json index 1eaaafaff..478e32b88 100644 --- a/tests/cases/results/result_coupledBlock_closedLoopHeart_singleVessel.json +++ b/tests/cases/results/result_coupledBlock_closedLoopHeart_singleVessel.json @@ -1 +1,6908 @@ -{"name":{"0":"flow:external_inlet:RCR_aorta","1":"flow:external_inlet:RCR_aorta","2":"flow:external_inlet:RCR_aorta","3":"flow:external_inlet:RCR_aorta","4":"flow:external_inlet:RCR_aorta","5":"flow:external_inlet:RCR_aorta","6":"flow:external_inlet:RCR_aorta","7":"flow:external_inlet:RCR_aorta","8":"flow:external_inlet:RCR_aorta","9":"flow:external_inlet:RCR_aorta","10":"flow:external_inlet:RCR_aorta","11":"flow:external_inlet:RCR_aorta","12":"flow:external_inlet:RCR_aorta","13":"flow:external_inlet:RCR_aorta","14":"flow:external_inlet:RCR_aorta","15":"flow:external_inlet:RCR_aorta","16":"flow:external_inlet:RCR_aorta","17":"flow:external_inlet:RCR_aorta","18":"flow:external_inlet:RCR_aorta","19":"flow:external_inlet:RCR_aorta","20":"flow:external_inlet:RCR_aorta","21":"flow:external_inlet:RCR_aorta","22":"flow:external_inlet:RCR_aorta","23":"flow:external_inlet:RCR_aorta","24":"flow:external_inlet:RCR_aorta","25":"flow:external_inlet:RCR_aorta","26":"flow:external_inlet:RCR_aorta","27":"flow:external_inlet:RCR_aorta","28":"flow:external_inlet:RCR_aorta","29":"flow:external_inlet:RCR_aorta","30":"flow:external_inlet:RCR_aorta","31":"flow:external_inlet:RCR_aorta","32":"flow:external_inlet:RCR_aorta","33":"flow:external_inlet:RCR_aorta","34":"flow:external_inlet:RCR_aorta","35":"flow:external_inlet:RCR_aorta","36":"flow:external_inlet:RCR_aorta","37":"flow:external_inlet:RCR_aorta","38":"flow:external_inlet:RCR_aorta","39":"flow:external_inlet:RCR_aorta","40":"flow:external_inlet:RCR_aorta","41":"flow:external_inlet:RCR_aorta","42":"flow:external_inlet:RCR_aorta","43":"flow:external_inlet:RCR_aorta","44":"flow:external_inlet:RCR_aorta","45":"flow:external_inlet:RCR_aorta","46":"flow:external_inlet:RCR_aorta","47":"flow:external_inlet:RCR_aorta","48":"flow:external_inlet:RCR_aorta","49":"flow:external_inlet:RCR_aorta","50":"flow:external_inlet:RCR_aorta","51":"flow:external_inlet:RCR_aorta","52":"flow:external_inlet:RCR_aorta","53":"flow:external_inlet:RCR_aorta","54":"flow:external_inlet:RCR_aorta","55":"flow:external_inlet:RCR_aorta","56":"flow:external_inlet:RCR_aorta","57":"flow:external_inlet:RCR_aorta","58":"flow:external_inlet:RCR_aorta","59":"flow:external_inlet:RCR_aorta","60":"flow:external_inlet:RCR_aorta","61":"flow:external_inlet:RCR_aorta","62":"flow:external_inlet:RCR_aorta","63":"flow:external_inlet:RCR_aorta","64":"flow:external_inlet:RCR_aorta","65":"flow:external_inlet:RCR_aorta","66":"flow:external_inlet:RCR_aorta","67":"flow:external_inlet:RCR_aorta","68":"flow:external_inlet:RCR_aorta","69":"flow:external_inlet:RCR_aorta","70":"flow:external_inlet:RCR_aorta","71":"flow:external_inlet:RCR_aorta","72":"flow:external_inlet:RCR_aorta","73":"flow:external_inlet:RCR_aorta","74":"flow:external_inlet:RCR_aorta","75":"flow:external_inlet:RCR_aorta","76":"flow:external_inlet:RCR_aorta","77":"flow:external_inlet:RCR_aorta","78":"flow:external_inlet:RCR_aorta","79":"flow:external_inlet:RCR_aorta","80":"flow:external_inlet:RCR_aorta","81":"flow:external_inlet:RCR_aorta","82":"flow:external_inlet:RCR_aorta","83":"flow:external_inlet:RCR_aorta","84":"flow:external_inlet:RCR_aorta","85":"flow:external_inlet:RCR_aorta","86":"flow:external_inlet:RCR_aorta","87":"flow:external_inlet:RCR_aorta","88":"flow:external_inlet:RCR_aorta","89":"flow:external_inlet:RCR_aorta","90":"flow:external_inlet:RCR_aorta","91":"flow:external_inlet:RCR_aorta","92":"flow:external_inlet:RCR_aorta","93":"flow:external_inlet:RCR_aorta","94":"flow:external_inlet:RCR_aorta","95":"flow:external_inlet:RCR_aorta","96":"flow:external_inlet:RCR_aorta","97":"flow:external_inlet:RCR_aorta","98":"flow:external_inlet:RCR_aorta","99":"flow:external_inlet:RCR_aorta","100":"pressure:external_inlet:RCR_aorta","101":"pressure:external_inlet:RCR_aorta","102":"pressure:external_inlet:RCR_aorta","103":"pressure:external_inlet:RCR_aorta","104":"pressure:external_inlet:RCR_aorta","105":"pressure:external_inlet:RCR_aorta","106":"pressure:external_inlet:RCR_aorta","107":"pressure:external_inlet:RCR_aorta","108":"pressure:external_inlet:RCR_aorta","109":"pressure:external_inlet:RCR_aorta","110":"pressure:external_inlet:RCR_aorta","111":"pressure:external_inlet:RCR_aorta","112":"pressure:external_inlet:RCR_aorta","113":"pressure:external_inlet:RCR_aorta","114":"pressure:external_inlet:RCR_aorta","115":"pressure:external_inlet:RCR_aorta","116":"pressure:external_inlet:RCR_aorta","117":"pressure:external_inlet:RCR_aorta","118":"pressure:external_inlet:RCR_aorta","119":"pressure:external_inlet:RCR_aorta","120":"pressure:external_inlet:RCR_aorta","121":"pressure:external_inlet:RCR_aorta","122":"pressure:external_inlet:RCR_aorta","123":"pressure:external_inlet:RCR_aorta","124":"pressure:external_inlet:RCR_aorta","125":"pressure:external_inlet:RCR_aorta","126":"pressure:external_inlet:RCR_aorta","127":"pressure:external_inlet:RCR_aorta","128":"pressure:external_inlet:RCR_aorta","129":"pressure:external_inlet:RCR_aorta","130":"pressure:external_inlet:RCR_aorta","131":"pressure:external_inlet:RCR_aorta","132":"pressure:external_inlet:RCR_aorta","133":"pressure:external_inlet:RCR_aorta","134":"pressure:external_inlet:RCR_aorta","135":"pressure:external_inlet:RCR_aorta","136":"pressure:external_inlet:RCR_aorta","137":"pressure:external_inlet:RCR_aorta","138":"pressure:external_inlet:RCR_aorta","139":"pressure:external_inlet:RCR_aorta","140":"pressure:external_inlet:RCR_aorta","141":"pressure:external_inlet:RCR_aorta","142":"pressure:external_inlet:RCR_aorta","143":"pressure:external_inlet:RCR_aorta","144":"pressure:external_inlet:RCR_aorta","145":"pressure:external_inlet:RCR_aorta","146":"pressure:external_inlet:RCR_aorta","147":"pressure:external_inlet:RCR_aorta","148":"pressure:external_inlet:RCR_aorta","149":"pressure:external_inlet:RCR_aorta","150":"pressure:external_inlet:RCR_aorta","151":"pressure:external_inlet:RCR_aorta","152":"pressure:external_inlet:RCR_aorta","153":"pressure:external_inlet:RCR_aorta","154":"pressure:external_inlet:RCR_aorta","155":"pressure:external_inlet:RCR_aorta","156":"pressure:external_inlet:RCR_aorta","157":"pressure:external_inlet:RCR_aorta","158":"pressure:external_inlet:RCR_aorta","159":"pressure:external_inlet:RCR_aorta","160":"pressure:external_inlet:RCR_aorta","161":"pressure:external_inlet:RCR_aorta","162":"pressure:external_inlet:RCR_aorta","163":"pressure:external_inlet:RCR_aorta","164":"pressure:external_inlet:RCR_aorta","165":"pressure:external_inlet:RCR_aorta","166":"pressure:external_inlet:RCR_aorta","167":"pressure:external_inlet:RCR_aorta","168":"pressure:external_inlet:RCR_aorta","169":"pressure:external_inlet:RCR_aorta","170":"pressure:external_inlet:RCR_aorta","171":"pressure:external_inlet:RCR_aorta","172":"pressure:external_inlet:RCR_aorta","173":"pressure:external_inlet:RCR_aorta","174":"pressure:external_inlet:RCR_aorta","175":"pressure:external_inlet:RCR_aorta","176":"pressure:external_inlet:RCR_aorta","177":"pressure:external_inlet:RCR_aorta","178":"pressure:external_inlet:RCR_aorta","179":"pressure:external_inlet:RCR_aorta","180":"pressure:external_inlet:RCR_aorta","181":"pressure:external_inlet:RCR_aorta","182":"pressure:external_inlet:RCR_aorta","183":"pressure:external_inlet:RCR_aorta","184":"pressure:external_inlet:RCR_aorta","185":"pressure:external_inlet:RCR_aorta","186":"pressure:external_inlet:RCR_aorta","187":"pressure:external_inlet:RCR_aorta","188":"pressure:external_inlet:RCR_aorta","189":"pressure:external_inlet:RCR_aorta","190":"pressure:external_inlet:RCR_aorta","191":"pressure:external_inlet:RCR_aorta","192":"pressure:external_inlet:RCR_aorta","193":"pressure:external_inlet:RCR_aorta","194":"pressure:external_inlet:RCR_aorta","195":"pressure:external_inlet:RCR_aorta","196":"pressure:external_inlet:RCR_aorta","197":"pressure:external_inlet:RCR_aorta","198":"pressure:external_inlet:RCR_aorta","199":"pressure:external_inlet:RCR_aorta","200":"flow:J_heart_inlet:CLH","201":"flow:J_heart_inlet:CLH","202":"flow:J_heart_inlet:CLH","203":"flow:J_heart_inlet:CLH","204":"flow:J_heart_inlet:CLH","205":"flow:J_heart_inlet:CLH","206":"flow:J_heart_inlet:CLH","207":"flow:J_heart_inlet:CLH","208":"flow:J_heart_inlet:CLH","209":"flow:J_heart_inlet:CLH","210":"flow:J_heart_inlet:CLH","211":"flow:J_heart_inlet:CLH","212":"flow:J_heart_inlet:CLH","213":"flow:J_heart_inlet:CLH","214":"flow:J_heart_inlet:CLH","215":"flow:J_heart_inlet:CLH","216":"flow:J_heart_inlet:CLH","217":"flow:J_heart_inlet:CLH","218":"flow:J_heart_inlet:CLH","219":"flow:J_heart_inlet:CLH","220":"flow:J_heart_inlet:CLH","221":"flow:J_heart_inlet:CLH","222":"flow:J_heart_inlet:CLH","223":"flow:J_heart_inlet:CLH","224":"flow:J_heart_inlet:CLH","225":"flow:J_heart_inlet:CLH","226":"flow:J_heart_inlet:CLH","227":"flow:J_heart_inlet:CLH","228":"flow:J_heart_inlet:CLH","229":"flow:J_heart_inlet:CLH","230":"flow:J_heart_inlet:CLH","231":"flow:J_heart_inlet:CLH","232":"flow:J_heart_inlet:CLH","233":"flow:J_heart_inlet:CLH","234":"flow:J_heart_inlet:CLH","235":"flow:J_heart_inlet:CLH","236":"flow:J_heart_inlet:CLH","237":"flow:J_heart_inlet:CLH","238":"flow:J_heart_inlet:CLH","239":"flow:J_heart_inlet:CLH","240":"flow:J_heart_inlet:CLH","241":"flow:J_heart_inlet:CLH","242":"flow:J_heart_inlet:CLH","243":"flow:J_heart_inlet:CLH","244":"flow:J_heart_inlet:CLH","245":"flow:J_heart_inlet:CLH","246":"flow:J_heart_inlet:CLH","247":"flow:J_heart_inlet:CLH","248":"flow:J_heart_inlet:CLH","249":"flow:J_heart_inlet:CLH","250":"flow:J_heart_inlet:CLH","251":"flow:J_heart_inlet:CLH","252":"flow:J_heart_inlet:CLH","253":"flow:J_heart_inlet:CLH","254":"flow:J_heart_inlet:CLH","255":"flow:J_heart_inlet:CLH","256":"flow:J_heart_inlet:CLH","257":"flow:J_heart_inlet:CLH","258":"flow:J_heart_inlet:CLH","259":"flow:J_heart_inlet:CLH","260":"flow:J_heart_inlet:CLH","261":"flow:J_heart_inlet:CLH","262":"flow:J_heart_inlet:CLH","263":"flow:J_heart_inlet:CLH","264":"flow:J_heart_inlet:CLH","265":"flow:J_heart_inlet:CLH","266":"flow:J_heart_inlet:CLH","267":"flow:J_heart_inlet:CLH","268":"flow:J_heart_inlet:CLH","269":"flow:J_heart_inlet:CLH","270":"flow:J_heart_inlet:CLH","271":"flow:J_heart_inlet:CLH","272":"flow:J_heart_inlet:CLH","273":"flow:J_heart_inlet:CLH","274":"flow:J_heart_inlet:CLH","275":"flow:J_heart_inlet:CLH","276":"flow:J_heart_inlet:CLH","277":"flow:J_heart_inlet:CLH","278":"flow:J_heart_inlet:CLH","279":"flow:J_heart_inlet:CLH","280":"flow:J_heart_inlet:CLH","281":"flow:J_heart_inlet:CLH","282":"flow:J_heart_inlet:CLH","283":"flow:J_heart_inlet:CLH","284":"flow:J_heart_inlet:CLH","285":"flow:J_heart_inlet:CLH","286":"flow:J_heart_inlet:CLH","287":"flow:J_heart_inlet:CLH","288":"flow:J_heart_inlet:CLH","289":"flow:J_heart_inlet:CLH","290":"flow:J_heart_inlet:CLH","291":"flow:J_heart_inlet:CLH","292":"flow:J_heart_inlet:CLH","293":"flow:J_heart_inlet:CLH","294":"flow:J_heart_inlet:CLH","295":"flow:J_heart_inlet:CLH","296":"flow:J_heart_inlet:CLH","297":"flow:J_heart_inlet:CLH","298":"flow:J_heart_inlet:CLH","299":"flow:J_heart_inlet:CLH","300":"pressure:J_heart_inlet:CLH","301":"pressure:J_heart_inlet:CLH","302":"pressure:J_heart_inlet:CLH","303":"pressure:J_heart_inlet:CLH","304":"pressure:J_heart_inlet:CLH","305":"pressure:J_heart_inlet:CLH","306":"pressure:J_heart_inlet:CLH","307":"pressure:J_heart_inlet:CLH","308":"pressure:J_heart_inlet:CLH","309":"pressure:J_heart_inlet:CLH","310":"pressure:J_heart_inlet:CLH","311":"pressure:J_heart_inlet:CLH","312":"pressure:J_heart_inlet:CLH","313":"pressure:J_heart_inlet:CLH","314":"pressure:J_heart_inlet:CLH","315":"pressure:J_heart_inlet:CLH","316":"pressure:J_heart_inlet:CLH","317":"pressure:J_heart_inlet:CLH","318":"pressure:J_heart_inlet:CLH","319":"pressure:J_heart_inlet:CLH","320":"pressure:J_heart_inlet:CLH","321":"pressure:J_heart_inlet:CLH","322":"pressure:J_heart_inlet:CLH","323":"pressure:J_heart_inlet:CLH","324":"pressure:J_heart_inlet:CLH","325":"pressure:J_heart_inlet:CLH","326":"pressure:J_heart_inlet:CLH","327":"pressure:J_heart_inlet:CLH","328":"pressure:J_heart_inlet:CLH","329":"pressure:J_heart_inlet:CLH","330":"pressure:J_heart_inlet:CLH","331":"pressure:J_heart_inlet:CLH","332":"pressure:J_heart_inlet:CLH","333":"pressure:J_heart_inlet:CLH","334":"pressure:J_heart_inlet:CLH","335":"pressure:J_heart_inlet:CLH","336":"pressure:J_heart_inlet:CLH","337":"pressure:J_heart_inlet:CLH","338":"pressure:J_heart_inlet:CLH","339":"pressure:J_heart_inlet:CLH","340":"pressure:J_heart_inlet:CLH","341":"pressure:J_heart_inlet:CLH","342":"pressure:J_heart_inlet:CLH","343":"pressure:J_heart_inlet:CLH","344":"pressure:J_heart_inlet:CLH","345":"pressure:J_heart_inlet:CLH","346":"pressure:J_heart_inlet:CLH","347":"pressure:J_heart_inlet:CLH","348":"pressure:J_heart_inlet:CLH","349":"pressure:J_heart_inlet:CLH","350":"pressure:J_heart_inlet:CLH","351":"pressure:J_heart_inlet:CLH","352":"pressure:J_heart_inlet:CLH","353":"pressure:J_heart_inlet:CLH","354":"pressure:J_heart_inlet:CLH","355":"pressure:J_heart_inlet:CLH","356":"pressure:J_heart_inlet:CLH","357":"pressure:J_heart_inlet:CLH","358":"pressure:J_heart_inlet:CLH","359":"pressure:J_heart_inlet:CLH","360":"pressure:J_heart_inlet:CLH","361":"pressure:J_heart_inlet:CLH","362":"pressure:J_heart_inlet:CLH","363":"pressure:J_heart_inlet:CLH","364":"pressure:J_heart_inlet:CLH","365":"pressure:J_heart_inlet:CLH","366":"pressure:J_heart_inlet:CLH","367":"pressure:J_heart_inlet:CLH","368":"pressure:J_heart_inlet:CLH","369":"pressure:J_heart_inlet:CLH","370":"pressure:J_heart_inlet:CLH","371":"pressure:J_heart_inlet:CLH","372":"pressure:J_heart_inlet:CLH","373":"pressure:J_heart_inlet:CLH","374":"pressure:J_heart_inlet:CLH","375":"pressure:J_heart_inlet:CLH","376":"pressure:J_heart_inlet:CLH","377":"pressure:J_heart_inlet:CLH","378":"pressure:J_heart_inlet:CLH","379":"pressure:J_heart_inlet:CLH","380":"pressure:J_heart_inlet:CLH","381":"pressure:J_heart_inlet:CLH","382":"pressure:J_heart_inlet:CLH","383":"pressure:J_heart_inlet:CLH","384":"pressure:J_heart_inlet:CLH","385":"pressure:J_heart_inlet:CLH","386":"pressure:J_heart_inlet:CLH","387":"pressure:J_heart_inlet:CLH","388":"pressure:J_heart_inlet:CLH","389":"pressure:J_heart_inlet:CLH","390":"pressure:J_heart_inlet:CLH","391":"pressure:J_heart_inlet:CLH","392":"pressure:J_heart_inlet:CLH","393":"pressure:J_heart_inlet:CLH","394":"pressure:J_heart_inlet:CLH","395":"pressure:J_heart_inlet:CLH","396":"pressure:J_heart_inlet:CLH","397":"pressure:J_heart_inlet:CLH","398":"pressure:J_heart_inlet:CLH","399":"pressure:J_heart_inlet:CLH","400":"flow:RCR_aorta:J_heart_inlet","401":"flow:RCR_aorta:J_heart_inlet","402":"flow:RCR_aorta:J_heart_inlet","403":"flow:RCR_aorta:J_heart_inlet","404":"flow:RCR_aorta:J_heart_inlet","405":"flow:RCR_aorta:J_heart_inlet","406":"flow:RCR_aorta:J_heart_inlet","407":"flow:RCR_aorta:J_heart_inlet","408":"flow:RCR_aorta:J_heart_inlet","409":"flow:RCR_aorta:J_heart_inlet","410":"flow:RCR_aorta:J_heart_inlet","411":"flow:RCR_aorta:J_heart_inlet","412":"flow:RCR_aorta:J_heart_inlet","413":"flow:RCR_aorta:J_heart_inlet","414":"flow:RCR_aorta:J_heart_inlet","415":"flow:RCR_aorta:J_heart_inlet","416":"flow:RCR_aorta:J_heart_inlet","417":"flow:RCR_aorta:J_heart_inlet","418":"flow:RCR_aorta:J_heart_inlet","419":"flow:RCR_aorta:J_heart_inlet","420":"flow:RCR_aorta:J_heart_inlet","421":"flow:RCR_aorta:J_heart_inlet","422":"flow:RCR_aorta:J_heart_inlet","423":"flow:RCR_aorta:J_heart_inlet","424":"flow:RCR_aorta:J_heart_inlet","425":"flow:RCR_aorta:J_heart_inlet","426":"flow:RCR_aorta:J_heart_inlet","427":"flow:RCR_aorta:J_heart_inlet","428":"flow:RCR_aorta:J_heart_inlet","429":"flow:RCR_aorta:J_heart_inlet","430":"flow:RCR_aorta:J_heart_inlet","431":"flow:RCR_aorta:J_heart_inlet","432":"flow:RCR_aorta:J_heart_inlet","433":"flow:RCR_aorta:J_heart_inlet","434":"flow:RCR_aorta:J_heart_inlet","435":"flow:RCR_aorta:J_heart_inlet","436":"flow:RCR_aorta:J_heart_inlet","437":"flow:RCR_aorta:J_heart_inlet","438":"flow:RCR_aorta:J_heart_inlet","439":"flow:RCR_aorta:J_heart_inlet","440":"flow:RCR_aorta:J_heart_inlet","441":"flow:RCR_aorta:J_heart_inlet","442":"flow:RCR_aorta:J_heart_inlet","443":"flow:RCR_aorta:J_heart_inlet","444":"flow:RCR_aorta:J_heart_inlet","445":"flow:RCR_aorta:J_heart_inlet","446":"flow:RCR_aorta:J_heart_inlet","447":"flow:RCR_aorta:J_heart_inlet","448":"flow:RCR_aorta:J_heart_inlet","449":"flow:RCR_aorta:J_heart_inlet","450":"flow:RCR_aorta:J_heart_inlet","451":"flow:RCR_aorta:J_heart_inlet","452":"flow:RCR_aorta:J_heart_inlet","453":"flow:RCR_aorta:J_heart_inlet","454":"flow:RCR_aorta:J_heart_inlet","455":"flow:RCR_aorta:J_heart_inlet","456":"flow:RCR_aorta:J_heart_inlet","457":"flow:RCR_aorta:J_heart_inlet","458":"flow:RCR_aorta:J_heart_inlet","459":"flow:RCR_aorta:J_heart_inlet","460":"flow:RCR_aorta:J_heart_inlet","461":"flow:RCR_aorta:J_heart_inlet","462":"flow:RCR_aorta:J_heart_inlet","463":"flow:RCR_aorta:J_heart_inlet","464":"flow:RCR_aorta:J_heart_inlet","465":"flow:RCR_aorta:J_heart_inlet","466":"flow:RCR_aorta:J_heart_inlet","467":"flow:RCR_aorta:J_heart_inlet","468":"flow:RCR_aorta:J_heart_inlet","469":"flow:RCR_aorta:J_heart_inlet","470":"flow:RCR_aorta:J_heart_inlet","471":"flow:RCR_aorta:J_heart_inlet","472":"flow:RCR_aorta:J_heart_inlet","473":"flow:RCR_aorta:J_heart_inlet","474":"flow:RCR_aorta:J_heart_inlet","475":"flow:RCR_aorta:J_heart_inlet","476":"flow:RCR_aorta:J_heart_inlet","477":"flow:RCR_aorta:J_heart_inlet","478":"flow:RCR_aorta:J_heart_inlet","479":"flow:RCR_aorta:J_heart_inlet","480":"flow:RCR_aorta:J_heart_inlet","481":"flow:RCR_aorta:J_heart_inlet","482":"flow:RCR_aorta:J_heart_inlet","483":"flow:RCR_aorta:J_heart_inlet","484":"flow:RCR_aorta:J_heart_inlet","485":"flow:RCR_aorta:J_heart_inlet","486":"flow:RCR_aorta:J_heart_inlet","487":"flow:RCR_aorta:J_heart_inlet","488":"flow:RCR_aorta:J_heart_inlet","489":"flow:RCR_aorta:J_heart_inlet","490":"flow:RCR_aorta:J_heart_inlet","491":"flow:RCR_aorta:J_heart_inlet","492":"flow:RCR_aorta:J_heart_inlet","493":"flow:RCR_aorta:J_heart_inlet","494":"flow:RCR_aorta:J_heart_inlet","495":"flow:RCR_aorta:J_heart_inlet","496":"flow:RCR_aorta:J_heart_inlet","497":"flow:RCR_aorta:J_heart_inlet","498":"flow:RCR_aorta:J_heart_inlet","499":"flow:RCR_aorta:J_heart_inlet","500":"pressure:RCR_aorta:J_heart_inlet","501":"pressure:RCR_aorta:J_heart_inlet","502":"pressure:RCR_aorta:J_heart_inlet","503":"pressure:RCR_aorta:J_heart_inlet","504":"pressure:RCR_aorta:J_heart_inlet","505":"pressure:RCR_aorta:J_heart_inlet","506":"pressure:RCR_aorta:J_heart_inlet","507":"pressure:RCR_aorta:J_heart_inlet","508":"pressure:RCR_aorta:J_heart_inlet","509":"pressure:RCR_aorta:J_heart_inlet","510":"pressure:RCR_aorta:J_heart_inlet","511":"pressure:RCR_aorta:J_heart_inlet","512":"pressure:RCR_aorta:J_heart_inlet","513":"pressure:RCR_aorta:J_heart_inlet","514":"pressure:RCR_aorta:J_heart_inlet","515":"pressure:RCR_aorta:J_heart_inlet","516":"pressure:RCR_aorta:J_heart_inlet","517":"pressure:RCR_aorta:J_heart_inlet","518":"pressure:RCR_aorta:J_heart_inlet","519":"pressure:RCR_aorta:J_heart_inlet","520":"pressure:RCR_aorta:J_heart_inlet","521":"pressure:RCR_aorta:J_heart_inlet","522":"pressure:RCR_aorta:J_heart_inlet","523":"pressure:RCR_aorta:J_heart_inlet","524":"pressure:RCR_aorta:J_heart_inlet","525":"pressure:RCR_aorta:J_heart_inlet","526":"pressure:RCR_aorta:J_heart_inlet","527":"pressure:RCR_aorta:J_heart_inlet","528":"pressure:RCR_aorta:J_heart_inlet","529":"pressure:RCR_aorta:J_heart_inlet","530":"pressure:RCR_aorta:J_heart_inlet","531":"pressure:RCR_aorta:J_heart_inlet","532":"pressure:RCR_aorta:J_heart_inlet","533":"pressure:RCR_aorta:J_heart_inlet","534":"pressure:RCR_aorta:J_heart_inlet","535":"pressure:RCR_aorta:J_heart_inlet","536":"pressure:RCR_aorta:J_heart_inlet","537":"pressure:RCR_aorta:J_heart_inlet","538":"pressure:RCR_aorta:J_heart_inlet","539":"pressure:RCR_aorta:J_heart_inlet","540":"pressure:RCR_aorta:J_heart_inlet","541":"pressure:RCR_aorta:J_heart_inlet","542":"pressure:RCR_aorta:J_heart_inlet","543":"pressure:RCR_aorta:J_heart_inlet","544":"pressure:RCR_aorta:J_heart_inlet","545":"pressure:RCR_aorta:J_heart_inlet","546":"pressure:RCR_aorta:J_heart_inlet","547":"pressure:RCR_aorta:J_heart_inlet","548":"pressure:RCR_aorta:J_heart_inlet","549":"pressure:RCR_aorta:J_heart_inlet","550":"pressure:RCR_aorta:J_heart_inlet","551":"pressure:RCR_aorta:J_heart_inlet","552":"pressure:RCR_aorta:J_heart_inlet","553":"pressure:RCR_aorta:J_heart_inlet","554":"pressure:RCR_aorta:J_heart_inlet","555":"pressure:RCR_aorta:J_heart_inlet","556":"pressure:RCR_aorta:J_heart_inlet","557":"pressure:RCR_aorta:J_heart_inlet","558":"pressure:RCR_aorta:J_heart_inlet","559":"pressure:RCR_aorta:J_heart_inlet","560":"pressure:RCR_aorta:J_heart_inlet","561":"pressure:RCR_aorta:J_heart_inlet","562":"pressure:RCR_aorta:J_heart_inlet","563":"pressure:RCR_aorta:J_heart_inlet","564":"pressure:RCR_aorta:J_heart_inlet","565":"pressure:RCR_aorta:J_heart_inlet","566":"pressure:RCR_aorta:J_heart_inlet","567":"pressure:RCR_aorta:J_heart_inlet","568":"pressure:RCR_aorta:J_heart_inlet","569":"pressure:RCR_aorta:J_heart_inlet","570":"pressure:RCR_aorta:J_heart_inlet","571":"pressure:RCR_aorta:J_heart_inlet","572":"pressure:RCR_aorta:J_heart_inlet","573":"pressure:RCR_aorta:J_heart_inlet","574":"pressure:RCR_aorta:J_heart_inlet","575":"pressure:RCR_aorta:J_heart_inlet","576":"pressure:RCR_aorta:J_heart_inlet","577":"pressure:RCR_aorta:J_heart_inlet","578":"pressure:RCR_aorta:J_heart_inlet","579":"pressure:RCR_aorta:J_heart_inlet","580":"pressure:RCR_aorta:J_heart_inlet","581":"pressure:RCR_aorta:J_heart_inlet","582":"pressure:RCR_aorta:J_heart_inlet","583":"pressure:RCR_aorta:J_heart_inlet","584":"pressure:RCR_aorta:J_heart_inlet","585":"pressure:RCR_aorta:J_heart_inlet","586":"pressure:RCR_aorta:J_heart_inlet","587":"pressure:RCR_aorta:J_heart_inlet","588":"pressure:RCR_aorta:J_heart_inlet","589":"pressure:RCR_aorta:J_heart_inlet","590":"pressure:RCR_aorta:J_heart_inlet","591":"pressure:RCR_aorta:J_heart_inlet","592":"pressure:RCR_aorta:J_heart_inlet","593":"pressure:RCR_aorta:J_heart_inlet","594":"pressure:RCR_aorta:J_heart_inlet","595":"pressure:RCR_aorta:J_heart_inlet","596":"pressure:RCR_aorta:J_heart_inlet","597":"pressure:RCR_aorta:J_heart_inlet","598":"pressure:RCR_aorta:J_heart_inlet","599":"pressure:RCR_aorta:J_heart_inlet","600":"flow:CLH:J_heart_outlet","601":"flow:CLH:J_heart_outlet","602":"flow:CLH:J_heart_outlet","603":"flow:CLH:J_heart_outlet","604":"flow:CLH:J_heart_outlet","605":"flow:CLH:J_heart_outlet","606":"flow:CLH:J_heart_outlet","607":"flow:CLH:J_heart_outlet","608":"flow:CLH:J_heart_outlet","609":"flow:CLH:J_heart_outlet","610":"flow:CLH:J_heart_outlet","611":"flow:CLH:J_heart_outlet","612":"flow:CLH:J_heart_outlet","613":"flow:CLH:J_heart_outlet","614":"flow:CLH:J_heart_outlet","615":"flow:CLH:J_heart_outlet","616":"flow:CLH:J_heart_outlet","617":"flow:CLH:J_heart_outlet","618":"flow:CLH:J_heart_outlet","619":"flow:CLH:J_heart_outlet","620":"flow:CLH:J_heart_outlet","621":"flow:CLH:J_heart_outlet","622":"flow:CLH:J_heart_outlet","623":"flow:CLH:J_heart_outlet","624":"flow:CLH:J_heart_outlet","625":"flow:CLH:J_heart_outlet","626":"flow:CLH:J_heart_outlet","627":"flow:CLH:J_heart_outlet","628":"flow:CLH:J_heart_outlet","629":"flow:CLH:J_heart_outlet","630":"flow:CLH:J_heart_outlet","631":"flow:CLH:J_heart_outlet","632":"flow:CLH:J_heart_outlet","633":"flow:CLH:J_heart_outlet","634":"flow:CLH:J_heart_outlet","635":"flow:CLH:J_heart_outlet","636":"flow:CLH:J_heart_outlet","637":"flow:CLH:J_heart_outlet","638":"flow:CLH:J_heart_outlet","639":"flow:CLH:J_heart_outlet","640":"flow:CLH:J_heart_outlet","641":"flow:CLH:J_heart_outlet","642":"flow:CLH:J_heart_outlet","643":"flow:CLH:J_heart_outlet","644":"flow:CLH:J_heart_outlet","645":"flow:CLH:J_heart_outlet","646":"flow:CLH:J_heart_outlet","647":"flow:CLH:J_heart_outlet","648":"flow:CLH:J_heart_outlet","649":"flow:CLH:J_heart_outlet","650":"flow:CLH:J_heart_outlet","651":"flow:CLH:J_heart_outlet","652":"flow:CLH:J_heart_outlet","653":"flow:CLH:J_heart_outlet","654":"flow:CLH:J_heart_outlet","655":"flow:CLH:J_heart_outlet","656":"flow:CLH:J_heart_outlet","657":"flow:CLH:J_heart_outlet","658":"flow:CLH:J_heart_outlet","659":"flow:CLH:J_heart_outlet","660":"flow:CLH:J_heart_outlet","661":"flow:CLH:J_heart_outlet","662":"flow:CLH:J_heart_outlet","663":"flow:CLH:J_heart_outlet","664":"flow:CLH:J_heart_outlet","665":"flow:CLH:J_heart_outlet","666":"flow:CLH:J_heart_outlet","667":"flow:CLH:J_heart_outlet","668":"flow:CLH:J_heart_outlet","669":"flow:CLH:J_heart_outlet","670":"flow:CLH:J_heart_outlet","671":"flow:CLH:J_heart_outlet","672":"flow:CLH:J_heart_outlet","673":"flow:CLH:J_heart_outlet","674":"flow:CLH:J_heart_outlet","675":"flow:CLH:J_heart_outlet","676":"flow:CLH:J_heart_outlet","677":"flow:CLH:J_heart_outlet","678":"flow:CLH:J_heart_outlet","679":"flow:CLH:J_heart_outlet","680":"flow:CLH:J_heart_outlet","681":"flow:CLH:J_heart_outlet","682":"flow:CLH:J_heart_outlet","683":"flow:CLH:J_heart_outlet","684":"flow:CLH:J_heart_outlet","685":"flow:CLH:J_heart_outlet","686":"flow:CLH:J_heart_outlet","687":"flow:CLH:J_heart_outlet","688":"flow:CLH:J_heart_outlet","689":"flow:CLH:J_heart_outlet","690":"flow:CLH:J_heart_outlet","691":"flow:CLH:J_heart_outlet","692":"flow:CLH:J_heart_outlet","693":"flow:CLH:J_heart_outlet","694":"flow:CLH:J_heart_outlet","695":"flow:CLH:J_heart_outlet","696":"flow:CLH:J_heart_outlet","697":"flow:CLH:J_heart_outlet","698":"flow:CLH:J_heart_outlet","699":"flow:CLH:J_heart_outlet","700":"pressure:CLH:J_heart_outlet","701":"pressure:CLH:J_heart_outlet","702":"pressure:CLH:J_heart_outlet","703":"pressure:CLH:J_heart_outlet","704":"pressure:CLH:J_heart_outlet","705":"pressure:CLH:J_heart_outlet","706":"pressure:CLH:J_heart_outlet","707":"pressure:CLH:J_heart_outlet","708":"pressure:CLH:J_heart_outlet","709":"pressure:CLH:J_heart_outlet","710":"pressure:CLH:J_heart_outlet","711":"pressure:CLH:J_heart_outlet","712":"pressure:CLH:J_heart_outlet","713":"pressure:CLH:J_heart_outlet","714":"pressure:CLH:J_heart_outlet","715":"pressure:CLH:J_heart_outlet","716":"pressure:CLH:J_heart_outlet","717":"pressure:CLH:J_heart_outlet","718":"pressure:CLH:J_heart_outlet","719":"pressure:CLH:J_heart_outlet","720":"pressure:CLH:J_heart_outlet","721":"pressure:CLH:J_heart_outlet","722":"pressure:CLH:J_heart_outlet","723":"pressure:CLH:J_heart_outlet","724":"pressure:CLH:J_heart_outlet","725":"pressure:CLH:J_heart_outlet","726":"pressure:CLH:J_heart_outlet","727":"pressure:CLH:J_heart_outlet","728":"pressure:CLH:J_heart_outlet","729":"pressure:CLH:J_heart_outlet","730":"pressure:CLH:J_heart_outlet","731":"pressure:CLH:J_heart_outlet","732":"pressure:CLH:J_heart_outlet","733":"pressure:CLH:J_heart_outlet","734":"pressure:CLH:J_heart_outlet","735":"pressure:CLH:J_heart_outlet","736":"pressure:CLH:J_heart_outlet","737":"pressure:CLH:J_heart_outlet","738":"pressure:CLH:J_heart_outlet","739":"pressure:CLH:J_heart_outlet","740":"pressure:CLH:J_heart_outlet","741":"pressure:CLH:J_heart_outlet","742":"pressure:CLH:J_heart_outlet","743":"pressure:CLH:J_heart_outlet","744":"pressure:CLH:J_heart_outlet","745":"pressure:CLH:J_heart_outlet","746":"pressure:CLH:J_heart_outlet","747":"pressure:CLH:J_heart_outlet","748":"pressure:CLH:J_heart_outlet","749":"pressure:CLH:J_heart_outlet","750":"pressure:CLH:J_heart_outlet","751":"pressure:CLH:J_heart_outlet","752":"pressure:CLH:J_heart_outlet","753":"pressure:CLH:J_heart_outlet","754":"pressure:CLH:J_heart_outlet","755":"pressure:CLH:J_heart_outlet","756":"pressure:CLH:J_heart_outlet","757":"pressure:CLH:J_heart_outlet","758":"pressure:CLH:J_heart_outlet","759":"pressure:CLH:J_heart_outlet","760":"pressure:CLH:J_heart_outlet","761":"pressure:CLH:J_heart_outlet","762":"pressure:CLH:J_heart_outlet","763":"pressure:CLH:J_heart_outlet","764":"pressure:CLH:J_heart_outlet","765":"pressure:CLH:J_heart_outlet","766":"pressure:CLH:J_heart_outlet","767":"pressure:CLH:J_heart_outlet","768":"pressure:CLH:J_heart_outlet","769":"pressure:CLH:J_heart_outlet","770":"pressure:CLH:J_heart_outlet","771":"pressure:CLH:J_heart_outlet","772":"pressure:CLH:J_heart_outlet","773":"pressure:CLH:J_heart_outlet","774":"pressure:CLH:J_heart_outlet","775":"pressure:CLH:J_heart_outlet","776":"pressure:CLH:J_heart_outlet","777":"pressure:CLH:J_heart_outlet","778":"pressure:CLH:J_heart_outlet","779":"pressure:CLH:J_heart_outlet","780":"pressure:CLH:J_heart_outlet","781":"pressure:CLH:J_heart_outlet","782":"pressure:CLH:J_heart_outlet","783":"pressure:CLH:J_heart_outlet","784":"pressure:CLH:J_heart_outlet","785":"pressure:CLH:J_heart_outlet","786":"pressure:CLH:J_heart_outlet","787":"pressure:CLH:J_heart_outlet","788":"pressure:CLH:J_heart_outlet","789":"pressure:CLH:J_heart_outlet","790":"pressure:CLH:J_heart_outlet","791":"pressure:CLH:J_heart_outlet","792":"pressure:CLH:J_heart_outlet","793":"pressure:CLH:J_heart_outlet","794":"pressure:CLH:J_heart_outlet","795":"pressure:CLH:J_heart_outlet","796":"pressure:CLH:J_heart_outlet","797":"pressure:CLH:J_heart_outlet","798":"pressure:CLH:J_heart_outlet","799":"pressure:CLH:J_heart_outlet","800":"flow:J_heart_outlet:external_outlet","801":"flow:J_heart_outlet:external_outlet","802":"flow:J_heart_outlet:external_outlet","803":"flow:J_heart_outlet:external_outlet","804":"flow:J_heart_outlet:external_outlet","805":"flow:J_heart_outlet:external_outlet","806":"flow:J_heart_outlet:external_outlet","807":"flow:J_heart_outlet:external_outlet","808":"flow:J_heart_outlet:external_outlet","809":"flow:J_heart_outlet:external_outlet","810":"flow:J_heart_outlet:external_outlet","811":"flow:J_heart_outlet:external_outlet","812":"flow:J_heart_outlet:external_outlet","813":"flow:J_heart_outlet:external_outlet","814":"flow:J_heart_outlet:external_outlet","815":"flow:J_heart_outlet:external_outlet","816":"flow:J_heart_outlet:external_outlet","817":"flow:J_heart_outlet:external_outlet","818":"flow:J_heart_outlet:external_outlet","819":"flow:J_heart_outlet:external_outlet","820":"flow:J_heart_outlet:external_outlet","821":"flow:J_heart_outlet:external_outlet","822":"flow:J_heart_outlet:external_outlet","823":"flow:J_heart_outlet:external_outlet","824":"flow:J_heart_outlet:external_outlet","825":"flow:J_heart_outlet:external_outlet","826":"flow:J_heart_outlet:external_outlet","827":"flow:J_heart_outlet:external_outlet","828":"flow:J_heart_outlet:external_outlet","829":"flow:J_heart_outlet:external_outlet","830":"flow:J_heart_outlet:external_outlet","831":"flow:J_heart_outlet:external_outlet","832":"flow:J_heart_outlet:external_outlet","833":"flow:J_heart_outlet:external_outlet","834":"flow:J_heart_outlet:external_outlet","835":"flow:J_heart_outlet:external_outlet","836":"flow:J_heart_outlet:external_outlet","837":"flow:J_heart_outlet:external_outlet","838":"flow:J_heart_outlet:external_outlet","839":"flow:J_heart_outlet:external_outlet","840":"flow:J_heart_outlet:external_outlet","841":"flow:J_heart_outlet:external_outlet","842":"flow:J_heart_outlet:external_outlet","843":"flow:J_heart_outlet:external_outlet","844":"flow:J_heart_outlet:external_outlet","845":"flow:J_heart_outlet:external_outlet","846":"flow:J_heart_outlet:external_outlet","847":"flow:J_heart_outlet:external_outlet","848":"flow:J_heart_outlet:external_outlet","849":"flow:J_heart_outlet:external_outlet","850":"flow:J_heart_outlet:external_outlet","851":"flow:J_heart_outlet:external_outlet","852":"flow:J_heart_outlet:external_outlet","853":"flow:J_heart_outlet:external_outlet","854":"flow:J_heart_outlet:external_outlet","855":"flow:J_heart_outlet:external_outlet","856":"flow:J_heart_outlet:external_outlet","857":"flow:J_heart_outlet:external_outlet","858":"flow:J_heart_outlet:external_outlet","859":"flow:J_heart_outlet:external_outlet","860":"flow:J_heart_outlet:external_outlet","861":"flow:J_heart_outlet:external_outlet","862":"flow:J_heart_outlet:external_outlet","863":"flow:J_heart_outlet:external_outlet","864":"flow:J_heart_outlet:external_outlet","865":"flow:J_heart_outlet:external_outlet","866":"flow:J_heart_outlet:external_outlet","867":"flow:J_heart_outlet:external_outlet","868":"flow:J_heart_outlet:external_outlet","869":"flow:J_heart_outlet:external_outlet","870":"flow:J_heart_outlet:external_outlet","871":"flow:J_heart_outlet:external_outlet","872":"flow:J_heart_outlet:external_outlet","873":"flow:J_heart_outlet:external_outlet","874":"flow:J_heart_outlet:external_outlet","875":"flow:J_heart_outlet:external_outlet","876":"flow:J_heart_outlet:external_outlet","877":"flow:J_heart_outlet:external_outlet","878":"flow:J_heart_outlet:external_outlet","879":"flow:J_heart_outlet:external_outlet","880":"flow:J_heart_outlet:external_outlet","881":"flow:J_heart_outlet:external_outlet","882":"flow:J_heart_outlet:external_outlet","883":"flow:J_heart_outlet:external_outlet","884":"flow:J_heart_outlet:external_outlet","885":"flow:J_heart_outlet:external_outlet","886":"flow:J_heart_outlet:external_outlet","887":"flow:J_heart_outlet:external_outlet","888":"flow:J_heart_outlet:external_outlet","889":"flow:J_heart_outlet:external_outlet","890":"flow:J_heart_outlet:external_outlet","891":"flow:J_heart_outlet:external_outlet","892":"flow:J_heart_outlet:external_outlet","893":"flow:J_heart_outlet:external_outlet","894":"flow:J_heart_outlet:external_outlet","895":"flow:J_heart_outlet:external_outlet","896":"flow:J_heart_outlet:external_outlet","897":"flow:J_heart_outlet:external_outlet","898":"flow:J_heart_outlet:external_outlet","899":"flow:J_heart_outlet:external_outlet","900":"pressure:J_heart_outlet:external_outlet","901":"pressure:J_heart_outlet:external_outlet","902":"pressure:J_heart_outlet:external_outlet","903":"pressure:J_heart_outlet:external_outlet","904":"pressure:J_heart_outlet:external_outlet","905":"pressure:J_heart_outlet:external_outlet","906":"pressure:J_heart_outlet:external_outlet","907":"pressure:J_heart_outlet:external_outlet","908":"pressure:J_heart_outlet:external_outlet","909":"pressure:J_heart_outlet:external_outlet","910":"pressure:J_heart_outlet:external_outlet","911":"pressure:J_heart_outlet:external_outlet","912":"pressure:J_heart_outlet:external_outlet","913":"pressure:J_heart_outlet:external_outlet","914":"pressure:J_heart_outlet:external_outlet","915":"pressure:J_heart_outlet:external_outlet","916":"pressure:J_heart_outlet:external_outlet","917":"pressure:J_heart_outlet:external_outlet","918":"pressure:J_heart_outlet:external_outlet","919":"pressure:J_heart_outlet:external_outlet","920":"pressure:J_heart_outlet:external_outlet","921":"pressure:J_heart_outlet:external_outlet","922":"pressure:J_heart_outlet:external_outlet","923":"pressure:J_heart_outlet:external_outlet","924":"pressure:J_heart_outlet:external_outlet","925":"pressure:J_heart_outlet:external_outlet","926":"pressure:J_heart_outlet:external_outlet","927":"pressure:J_heart_outlet:external_outlet","928":"pressure:J_heart_outlet:external_outlet","929":"pressure:J_heart_outlet:external_outlet","930":"pressure:J_heart_outlet:external_outlet","931":"pressure:J_heart_outlet:external_outlet","932":"pressure:J_heart_outlet:external_outlet","933":"pressure:J_heart_outlet:external_outlet","934":"pressure:J_heart_outlet:external_outlet","935":"pressure:J_heart_outlet:external_outlet","936":"pressure:J_heart_outlet:external_outlet","937":"pressure:J_heart_outlet:external_outlet","938":"pressure:J_heart_outlet:external_outlet","939":"pressure:J_heart_outlet:external_outlet","940":"pressure:J_heart_outlet:external_outlet","941":"pressure:J_heart_outlet:external_outlet","942":"pressure:J_heart_outlet:external_outlet","943":"pressure:J_heart_outlet:external_outlet","944":"pressure:J_heart_outlet:external_outlet","945":"pressure:J_heart_outlet:external_outlet","946":"pressure:J_heart_outlet:external_outlet","947":"pressure:J_heart_outlet:external_outlet","948":"pressure:J_heart_outlet:external_outlet","949":"pressure:J_heart_outlet:external_outlet","950":"pressure:J_heart_outlet:external_outlet","951":"pressure:J_heart_outlet:external_outlet","952":"pressure:J_heart_outlet:external_outlet","953":"pressure:J_heart_outlet:external_outlet","954":"pressure:J_heart_outlet:external_outlet","955":"pressure:J_heart_outlet:external_outlet","956":"pressure:J_heart_outlet:external_outlet","957":"pressure:J_heart_outlet:external_outlet","958":"pressure:J_heart_outlet:external_outlet","959":"pressure:J_heart_outlet:external_outlet","960":"pressure:J_heart_outlet:external_outlet","961":"pressure:J_heart_outlet:external_outlet","962":"pressure:J_heart_outlet:external_outlet","963":"pressure:J_heart_outlet:external_outlet","964":"pressure:J_heart_outlet:external_outlet","965":"pressure:J_heart_outlet:external_outlet","966":"pressure:J_heart_outlet:external_outlet","967":"pressure:J_heart_outlet:external_outlet","968":"pressure:J_heart_outlet:external_outlet","969":"pressure:J_heart_outlet:external_outlet","970":"pressure:J_heart_outlet:external_outlet","971":"pressure:J_heart_outlet:external_outlet","972":"pressure:J_heart_outlet:external_outlet","973":"pressure:J_heart_outlet:external_outlet","974":"pressure:J_heart_outlet:external_outlet","975":"pressure:J_heart_outlet:external_outlet","976":"pressure:J_heart_outlet:external_outlet","977":"pressure:J_heart_outlet:external_outlet","978":"pressure:J_heart_outlet:external_outlet","979":"pressure:J_heart_outlet:external_outlet","980":"pressure:J_heart_outlet:external_outlet","981":"pressure:J_heart_outlet:external_outlet","982":"pressure:J_heart_outlet:external_outlet","983":"pressure:J_heart_outlet:external_outlet","984":"pressure:J_heart_outlet:external_outlet","985":"pressure:J_heart_outlet:external_outlet","986":"pressure:J_heart_outlet:external_outlet","987":"pressure:J_heart_outlet:external_outlet","988":"pressure:J_heart_outlet:external_outlet","989":"pressure:J_heart_outlet:external_outlet","990":"pressure:J_heart_outlet:external_outlet","991":"pressure:J_heart_outlet:external_outlet","992":"pressure:J_heart_outlet:external_outlet","993":"pressure:J_heart_outlet:external_outlet","994":"pressure:J_heart_outlet:external_outlet","995":"pressure:J_heart_outlet:external_outlet","996":"pressure:J_heart_outlet:external_outlet","997":"pressure:J_heart_outlet:external_outlet","998":"pressure:J_heart_outlet:external_outlet","999":"pressure:J_heart_outlet:external_outlet","1000":"P_c:RCR_aorta","1001":"P_c:RCR_aorta","1002":"P_c:RCR_aorta","1003":"P_c:RCR_aorta","1004":"P_c:RCR_aorta","1005":"P_c:RCR_aorta","1006":"P_c:RCR_aorta","1007":"P_c:RCR_aorta","1008":"P_c:RCR_aorta","1009":"P_c:RCR_aorta","1010":"P_c:RCR_aorta","1011":"P_c:RCR_aorta","1012":"P_c:RCR_aorta","1013":"P_c:RCR_aorta","1014":"P_c:RCR_aorta","1015":"P_c:RCR_aorta","1016":"P_c:RCR_aorta","1017":"P_c:RCR_aorta","1018":"P_c:RCR_aorta","1019":"P_c:RCR_aorta","1020":"P_c:RCR_aorta","1021":"P_c:RCR_aorta","1022":"P_c:RCR_aorta","1023":"P_c:RCR_aorta","1024":"P_c:RCR_aorta","1025":"P_c:RCR_aorta","1026":"P_c:RCR_aorta","1027":"P_c:RCR_aorta","1028":"P_c:RCR_aorta","1029":"P_c:RCR_aorta","1030":"P_c:RCR_aorta","1031":"P_c:RCR_aorta","1032":"P_c:RCR_aorta","1033":"P_c:RCR_aorta","1034":"P_c:RCR_aorta","1035":"P_c:RCR_aorta","1036":"P_c:RCR_aorta","1037":"P_c:RCR_aorta","1038":"P_c:RCR_aorta","1039":"P_c:RCR_aorta","1040":"P_c:RCR_aorta","1041":"P_c:RCR_aorta","1042":"P_c:RCR_aorta","1043":"P_c:RCR_aorta","1044":"P_c:RCR_aorta","1045":"P_c:RCR_aorta","1046":"P_c:RCR_aorta","1047":"P_c:RCR_aorta","1048":"P_c:RCR_aorta","1049":"P_c:RCR_aorta","1050":"P_c:RCR_aorta","1051":"P_c:RCR_aorta","1052":"P_c:RCR_aorta","1053":"P_c:RCR_aorta","1054":"P_c:RCR_aorta","1055":"P_c:RCR_aorta","1056":"P_c:RCR_aorta","1057":"P_c:RCR_aorta","1058":"P_c:RCR_aorta","1059":"P_c:RCR_aorta","1060":"P_c:RCR_aorta","1061":"P_c:RCR_aorta","1062":"P_c:RCR_aorta","1063":"P_c:RCR_aorta","1064":"P_c:RCR_aorta","1065":"P_c:RCR_aorta","1066":"P_c:RCR_aorta","1067":"P_c:RCR_aorta","1068":"P_c:RCR_aorta","1069":"P_c:RCR_aorta","1070":"P_c:RCR_aorta","1071":"P_c:RCR_aorta","1072":"P_c:RCR_aorta","1073":"P_c:RCR_aorta","1074":"P_c:RCR_aorta","1075":"P_c:RCR_aorta","1076":"P_c:RCR_aorta","1077":"P_c:RCR_aorta","1078":"P_c:RCR_aorta","1079":"P_c:RCR_aorta","1080":"P_c:RCR_aorta","1081":"P_c:RCR_aorta","1082":"P_c:RCR_aorta","1083":"P_c:RCR_aorta","1084":"P_c:RCR_aorta","1085":"P_c:RCR_aorta","1086":"P_c:RCR_aorta","1087":"P_c:RCR_aorta","1088":"P_c:RCR_aorta","1089":"P_c:RCR_aorta","1090":"P_c:RCR_aorta","1091":"P_c:RCR_aorta","1092":"P_c:RCR_aorta","1093":"P_c:RCR_aorta","1094":"P_c:RCR_aorta","1095":"P_c:RCR_aorta","1096":"P_c:RCR_aorta","1097":"P_c:RCR_aorta","1098":"P_c:RCR_aorta","1099":"P_c:RCR_aorta","1100":"V_RA:CLH","1101":"V_RA:CLH","1102":"V_RA:CLH","1103":"V_RA:CLH","1104":"V_RA:CLH","1105":"V_RA:CLH","1106":"V_RA:CLH","1107":"V_RA:CLH","1108":"V_RA:CLH","1109":"V_RA:CLH","1110":"V_RA:CLH","1111":"V_RA:CLH","1112":"V_RA:CLH","1113":"V_RA:CLH","1114":"V_RA:CLH","1115":"V_RA:CLH","1116":"V_RA:CLH","1117":"V_RA:CLH","1118":"V_RA:CLH","1119":"V_RA:CLH","1120":"V_RA:CLH","1121":"V_RA:CLH","1122":"V_RA:CLH","1123":"V_RA:CLH","1124":"V_RA:CLH","1125":"V_RA:CLH","1126":"V_RA:CLH","1127":"V_RA:CLH","1128":"V_RA:CLH","1129":"V_RA:CLH","1130":"V_RA:CLH","1131":"V_RA:CLH","1132":"V_RA:CLH","1133":"V_RA:CLH","1134":"V_RA:CLH","1135":"V_RA:CLH","1136":"V_RA:CLH","1137":"V_RA:CLH","1138":"V_RA:CLH","1139":"V_RA:CLH","1140":"V_RA:CLH","1141":"V_RA:CLH","1142":"V_RA:CLH","1143":"V_RA:CLH","1144":"V_RA:CLH","1145":"V_RA:CLH","1146":"V_RA:CLH","1147":"V_RA:CLH","1148":"V_RA:CLH","1149":"V_RA:CLH","1150":"V_RA:CLH","1151":"V_RA:CLH","1152":"V_RA:CLH","1153":"V_RA:CLH","1154":"V_RA:CLH","1155":"V_RA:CLH","1156":"V_RA:CLH","1157":"V_RA:CLH","1158":"V_RA:CLH","1159":"V_RA:CLH","1160":"V_RA:CLH","1161":"V_RA:CLH","1162":"V_RA:CLH","1163":"V_RA:CLH","1164":"V_RA:CLH","1165":"V_RA:CLH","1166":"V_RA:CLH","1167":"V_RA:CLH","1168":"V_RA:CLH","1169":"V_RA:CLH","1170":"V_RA:CLH","1171":"V_RA:CLH","1172":"V_RA:CLH","1173":"V_RA:CLH","1174":"V_RA:CLH","1175":"V_RA:CLH","1176":"V_RA:CLH","1177":"V_RA:CLH","1178":"V_RA:CLH","1179":"V_RA:CLH","1180":"V_RA:CLH","1181":"V_RA:CLH","1182":"V_RA:CLH","1183":"V_RA:CLH","1184":"V_RA:CLH","1185":"V_RA:CLH","1186":"V_RA:CLH","1187":"V_RA:CLH","1188":"V_RA:CLH","1189":"V_RA:CLH","1190":"V_RA:CLH","1191":"V_RA:CLH","1192":"V_RA:CLH","1193":"V_RA:CLH","1194":"V_RA:CLH","1195":"V_RA:CLH","1196":"V_RA:CLH","1197":"V_RA:CLH","1198":"V_RA:CLH","1199":"V_RA:CLH","1200":"Q_RA:CLH","1201":"Q_RA:CLH","1202":"Q_RA:CLH","1203":"Q_RA:CLH","1204":"Q_RA:CLH","1205":"Q_RA:CLH","1206":"Q_RA:CLH","1207":"Q_RA:CLH","1208":"Q_RA:CLH","1209":"Q_RA:CLH","1210":"Q_RA:CLH","1211":"Q_RA:CLH","1212":"Q_RA:CLH","1213":"Q_RA:CLH","1214":"Q_RA:CLH","1215":"Q_RA:CLH","1216":"Q_RA:CLH","1217":"Q_RA:CLH","1218":"Q_RA:CLH","1219":"Q_RA:CLH","1220":"Q_RA:CLH","1221":"Q_RA:CLH","1222":"Q_RA:CLH","1223":"Q_RA:CLH","1224":"Q_RA:CLH","1225":"Q_RA:CLH","1226":"Q_RA:CLH","1227":"Q_RA:CLH","1228":"Q_RA:CLH","1229":"Q_RA:CLH","1230":"Q_RA:CLH","1231":"Q_RA:CLH","1232":"Q_RA:CLH","1233":"Q_RA:CLH","1234":"Q_RA:CLH","1235":"Q_RA:CLH","1236":"Q_RA:CLH","1237":"Q_RA:CLH","1238":"Q_RA:CLH","1239":"Q_RA:CLH","1240":"Q_RA:CLH","1241":"Q_RA:CLH","1242":"Q_RA:CLH","1243":"Q_RA:CLH","1244":"Q_RA:CLH","1245":"Q_RA:CLH","1246":"Q_RA:CLH","1247":"Q_RA:CLH","1248":"Q_RA:CLH","1249":"Q_RA:CLH","1250":"Q_RA:CLH","1251":"Q_RA:CLH","1252":"Q_RA:CLH","1253":"Q_RA:CLH","1254":"Q_RA:CLH","1255":"Q_RA:CLH","1256":"Q_RA:CLH","1257":"Q_RA:CLH","1258":"Q_RA:CLH","1259":"Q_RA:CLH","1260":"Q_RA:CLH","1261":"Q_RA:CLH","1262":"Q_RA:CLH","1263":"Q_RA:CLH","1264":"Q_RA:CLH","1265":"Q_RA:CLH","1266":"Q_RA:CLH","1267":"Q_RA:CLH","1268":"Q_RA:CLH","1269":"Q_RA:CLH","1270":"Q_RA:CLH","1271":"Q_RA:CLH","1272":"Q_RA:CLH","1273":"Q_RA:CLH","1274":"Q_RA:CLH","1275":"Q_RA:CLH","1276":"Q_RA:CLH","1277":"Q_RA:CLH","1278":"Q_RA:CLH","1279":"Q_RA:CLH","1280":"Q_RA:CLH","1281":"Q_RA:CLH","1282":"Q_RA:CLH","1283":"Q_RA:CLH","1284":"Q_RA:CLH","1285":"Q_RA:CLH","1286":"Q_RA:CLH","1287":"Q_RA:CLH","1288":"Q_RA:CLH","1289":"Q_RA:CLH","1290":"Q_RA:CLH","1291":"Q_RA:CLH","1292":"Q_RA:CLH","1293":"Q_RA:CLH","1294":"Q_RA:CLH","1295":"Q_RA:CLH","1296":"Q_RA:CLH","1297":"Q_RA:CLH","1298":"Q_RA:CLH","1299":"Q_RA:CLH","1300":"P_RV:CLH","1301":"P_RV:CLH","1302":"P_RV:CLH","1303":"P_RV:CLH","1304":"P_RV:CLH","1305":"P_RV:CLH","1306":"P_RV:CLH","1307":"P_RV:CLH","1308":"P_RV:CLH","1309":"P_RV:CLH","1310":"P_RV:CLH","1311":"P_RV:CLH","1312":"P_RV:CLH","1313":"P_RV:CLH","1314":"P_RV:CLH","1315":"P_RV:CLH","1316":"P_RV:CLH","1317":"P_RV:CLH","1318":"P_RV:CLH","1319":"P_RV:CLH","1320":"P_RV:CLH","1321":"P_RV:CLH","1322":"P_RV:CLH","1323":"P_RV:CLH","1324":"P_RV:CLH","1325":"P_RV:CLH","1326":"P_RV:CLH","1327":"P_RV:CLH","1328":"P_RV:CLH","1329":"P_RV:CLH","1330":"P_RV:CLH","1331":"P_RV:CLH","1332":"P_RV:CLH","1333":"P_RV:CLH","1334":"P_RV:CLH","1335":"P_RV:CLH","1336":"P_RV:CLH","1337":"P_RV:CLH","1338":"P_RV:CLH","1339":"P_RV:CLH","1340":"P_RV:CLH","1341":"P_RV:CLH","1342":"P_RV:CLH","1343":"P_RV:CLH","1344":"P_RV:CLH","1345":"P_RV:CLH","1346":"P_RV:CLH","1347":"P_RV:CLH","1348":"P_RV:CLH","1349":"P_RV:CLH","1350":"P_RV:CLH","1351":"P_RV:CLH","1352":"P_RV:CLH","1353":"P_RV:CLH","1354":"P_RV:CLH","1355":"P_RV:CLH","1356":"P_RV:CLH","1357":"P_RV:CLH","1358":"P_RV:CLH","1359":"P_RV:CLH","1360":"P_RV:CLH","1361":"P_RV:CLH","1362":"P_RV:CLH","1363":"P_RV:CLH","1364":"P_RV:CLH","1365":"P_RV:CLH","1366":"P_RV:CLH","1367":"P_RV:CLH","1368":"P_RV:CLH","1369":"P_RV:CLH","1370":"P_RV:CLH","1371":"P_RV:CLH","1372":"P_RV:CLH","1373":"P_RV:CLH","1374":"P_RV:CLH","1375":"P_RV:CLH","1376":"P_RV:CLH","1377":"P_RV:CLH","1378":"P_RV:CLH","1379":"P_RV:CLH","1380":"P_RV:CLH","1381":"P_RV:CLH","1382":"P_RV:CLH","1383":"P_RV:CLH","1384":"P_RV:CLH","1385":"P_RV:CLH","1386":"P_RV:CLH","1387":"P_RV:CLH","1388":"P_RV:CLH","1389":"P_RV:CLH","1390":"P_RV:CLH","1391":"P_RV:CLH","1392":"P_RV:CLH","1393":"P_RV:CLH","1394":"P_RV:CLH","1395":"P_RV:CLH","1396":"P_RV:CLH","1397":"P_RV:CLH","1398":"P_RV:CLH","1399":"P_RV:CLH","1400":"V_RV:CLH","1401":"V_RV:CLH","1402":"V_RV:CLH","1403":"V_RV:CLH","1404":"V_RV:CLH","1405":"V_RV:CLH","1406":"V_RV:CLH","1407":"V_RV:CLH","1408":"V_RV:CLH","1409":"V_RV:CLH","1410":"V_RV:CLH","1411":"V_RV:CLH","1412":"V_RV:CLH","1413":"V_RV:CLH","1414":"V_RV:CLH","1415":"V_RV:CLH","1416":"V_RV:CLH","1417":"V_RV:CLH","1418":"V_RV:CLH","1419":"V_RV:CLH","1420":"V_RV:CLH","1421":"V_RV:CLH","1422":"V_RV:CLH","1423":"V_RV:CLH","1424":"V_RV:CLH","1425":"V_RV:CLH","1426":"V_RV:CLH","1427":"V_RV:CLH","1428":"V_RV:CLH","1429":"V_RV:CLH","1430":"V_RV:CLH","1431":"V_RV:CLH","1432":"V_RV:CLH","1433":"V_RV:CLH","1434":"V_RV:CLH","1435":"V_RV:CLH","1436":"V_RV:CLH","1437":"V_RV:CLH","1438":"V_RV:CLH","1439":"V_RV:CLH","1440":"V_RV:CLH","1441":"V_RV:CLH","1442":"V_RV:CLH","1443":"V_RV:CLH","1444":"V_RV:CLH","1445":"V_RV:CLH","1446":"V_RV:CLH","1447":"V_RV:CLH","1448":"V_RV:CLH","1449":"V_RV:CLH","1450":"V_RV:CLH","1451":"V_RV:CLH","1452":"V_RV:CLH","1453":"V_RV:CLH","1454":"V_RV:CLH","1455":"V_RV:CLH","1456":"V_RV:CLH","1457":"V_RV:CLH","1458":"V_RV:CLH","1459":"V_RV:CLH","1460":"V_RV:CLH","1461":"V_RV:CLH","1462":"V_RV:CLH","1463":"V_RV:CLH","1464":"V_RV:CLH","1465":"V_RV:CLH","1466":"V_RV:CLH","1467":"V_RV:CLH","1468":"V_RV:CLH","1469":"V_RV:CLH","1470":"V_RV:CLH","1471":"V_RV:CLH","1472":"V_RV:CLH","1473":"V_RV:CLH","1474":"V_RV:CLH","1475":"V_RV:CLH","1476":"V_RV:CLH","1477":"V_RV:CLH","1478":"V_RV:CLH","1479":"V_RV:CLH","1480":"V_RV:CLH","1481":"V_RV:CLH","1482":"V_RV:CLH","1483":"V_RV:CLH","1484":"V_RV:CLH","1485":"V_RV:CLH","1486":"V_RV:CLH","1487":"V_RV:CLH","1488":"V_RV:CLH","1489":"V_RV:CLH","1490":"V_RV:CLH","1491":"V_RV:CLH","1492":"V_RV:CLH","1493":"V_RV:CLH","1494":"V_RV:CLH","1495":"V_RV:CLH","1496":"V_RV:CLH","1497":"V_RV:CLH","1498":"V_RV:CLH","1499":"V_RV:CLH","1500":"Q_RV:CLH","1501":"Q_RV:CLH","1502":"Q_RV:CLH","1503":"Q_RV:CLH","1504":"Q_RV:CLH","1505":"Q_RV:CLH","1506":"Q_RV:CLH","1507":"Q_RV:CLH","1508":"Q_RV:CLH","1509":"Q_RV:CLH","1510":"Q_RV:CLH","1511":"Q_RV:CLH","1512":"Q_RV:CLH","1513":"Q_RV:CLH","1514":"Q_RV:CLH","1515":"Q_RV:CLH","1516":"Q_RV:CLH","1517":"Q_RV:CLH","1518":"Q_RV:CLH","1519":"Q_RV:CLH","1520":"Q_RV:CLH","1521":"Q_RV:CLH","1522":"Q_RV:CLH","1523":"Q_RV:CLH","1524":"Q_RV:CLH","1525":"Q_RV:CLH","1526":"Q_RV:CLH","1527":"Q_RV:CLH","1528":"Q_RV:CLH","1529":"Q_RV:CLH","1530":"Q_RV:CLH","1531":"Q_RV:CLH","1532":"Q_RV:CLH","1533":"Q_RV:CLH","1534":"Q_RV:CLH","1535":"Q_RV:CLH","1536":"Q_RV:CLH","1537":"Q_RV:CLH","1538":"Q_RV:CLH","1539":"Q_RV:CLH","1540":"Q_RV:CLH","1541":"Q_RV:CLH","1542":"Q_RV:CLH","1543":"Q_RV:CLH","1544":"Q_RV:CLH","1545":"Q_RV:CLH","1546":"Q_RV:CLH","1547":"Q_RV:CLH","1548":"Q_RV:CLH","1549":"Q_RV:CLH","1550":"Q_RV:CLH","1551":"Q_RV:CLH","1552":"Q_RV:CLH","1553":"Q_RV:CLH","1554":"Q_RV:CLH","1555":"Q_RV:CLH","1556":"Q_RV:CLH","1557":"Q_RV:CLH","1558":"Q_RV:CLH","1559":"Q_RV:CLH","1560":"Q_RV:CLH","1561":"Q_RV:CLH","1562":"Q_RV:CLH","1563":"Q_RV:CLH","1564":"Q_RV:CLH","1565":"Q_RV:CLH","1566":"Q_RV:CLH","1567":"Q_RV:CLH","1568":"Q_RV:CLH","1569":"Q_RV:CLH","1570":"Q_RV:CLH","1571":"Q_RV:CLH","1572":"Q_RV:CLH","1573":"Q_RV:CLH","1574":"Q_RV:CLH","1575":"Q_RV:CLH","1576":"Q_RV:CLH","1577":"Q_RV:CLH","1578":"Q_RV:CLH","1579":"Q_RV:CLH","1580":"Q_RV:CLH","1581":"Q_RV:CLH","1582":"Q_RV:CLH","1583":"Q_RV:CLH","1584":"Q_RV:CLH","1585":"Q_RV:CLH","1586":"Q_RV:CLH","1587":"Q_RV:CLH","1588":"Q_RV:CLH","1589":"Q_RV:CLH","1590":"Q_RV:CLH","1591":"Q_RV:CLH","1592":"Q_RV:CLH","1593":"Q_RV:CLH","1594":"Q_RV:CLH","1595":"Q_RV:CLH","1596":"Q_RV:CLH","1597":"Q_RV:CLH","1598":"Q_RV:CLH","1599":"Q_RV:CLH","1600":"P_pul:CLH","1601":"P_pul:CLH","1602":"P_pul:CLH","1603":"P_pul:CLH","1604":"P_pul:CLH","1605":"P_pul:CLH","1606":"P_pul:CLH","1607":"P_pul:CLH","1608":"P_pul:CLH","1609":"P_pul:CLH","1610":"P_pul:CLH","1611":"P_pul:CLH","1612":"P_pul:CLH","1613":"P_pul:CLH","1614":"P_pul:CLH","1615":"P_pul:CLH","1616":"P_pul:CLH","1617":"P_pul:CLH","1618":"P_pul:CLH","1619":"P_pul:CLH","1620":"P_pul:CLH","1621":"P_pul:CLH","1622":"P_pul:CLH","1623":"P_pul:CLH","1624":"P_pul:CLH","1625":"P_pul:CLH","1626":"P_pul:CLH","1627":"P_pul:CLH","1628":"P_pul:CLH","1629":"P_pul:CLH","1630":"P_pul:CLH","1631":"P_pul:CLH","1632":"P_pul:CLH","1633":"P_pul:CLH","1634":"P_pul:CLH","1635":"P_pul:CLH","1636":"P_pul:CLH","1637":"P_pul:CLH","1638":"P_pul:CLH","1639":"P_pul:CLH","1640":"P_pul:CLH","1641":"P_pul:CLH","1642":"P_pul:CLH","1643":"P_pul:CLH","1644":"P_pul:CLH","1645":"P_pul:CLH","1646":"P_pul:CLH","1647":"P_pul:CLH","1648":"P_pul:CLH","1649":"P_pul:CLH","1650":"P_pul:CLH","1651":"P_pul:CLH","1652":"P_pul:CLH","1653":"P_pul:CLH","1654":"P_pul:CLH","1655":"P_pul:CLH","1656":"P_pul:CLH","1657":"P_pul:CLH","1658":"P_pul:CLH","1659":"P_pul:CLH","1660":"P_pul:CLH","1661":"P_pul:CLH","1662":"P_pul:CLH","1663":"P_pul:CLH","1664":"P_pul:CLH","1665":"P_pul:CLH","1666":"P_pul:CLH","1667":"P_pul:CLH","1668":"P_pul:CLH","1669":"P_pul:CLH","1670":"P_pul:CLH","1671":"P_pul:CLH","1672":"P_pul:CLH","1673":"P_pul:CLH","1674":"P_pul:CLH","1675":"P_pul:CLH","1676":"P_pul:CLH","1677":"P_pul:CLH","1678":"P_pul:CLH","1679":"P_pul:CLH","1680":"P_pul:CLH","1681":"P_pul:CLH","1682":"P_pul:CLH","1683":"P_pul:CLH","1684":"P_pul:CLH","1685":"P_pul:CLH","1686":"P_pul:CLH","1687":"P_pul:CLH","1688":"P_pul:CLH","1689":"P_pul:CLH","1690":"P_pul:CLH","1691":"P_pul:CLH","1692":"P_pul:CLH","1693":"P_pul:CLH","1694":"P_pul:CLH","1695":"P_pul:CLH","1696":"P_pul:CLH","1697":"P_pul:CLH","1698":"P_pul:CLH","1699":"P_pul:CLH","1700":"P_LA:CLH","1701":"P_LA:CLH","1702":"P_LA:CLH","1703":"P_LA:CLH","1704":"P_LA:CLH","1705":"P_LA:CLH","1706":"P_LA:CLH","1707":"P_LA:CLH","1708":"P_LA:CLH","1709":"P_LA:CLH","1710":"P_LA:CLH","1711":"P_LA:CLH","1712":"P_LA:CLH","1713":"P_LA:CLH","1714":"P_LA:CLH","1715":"P_LA:CLH","1716":"P_LA:CLH","1717":"P_LA:CLH","1718":"P_LA:CLH","1719":"P_LA:CLH","1720":"P_LA:CLH","1721":"P_LA:CLH","1722":"P_LA:CLH","1723":"P_LA:CLH","1724":"P_LA:CLH","1725":"P_LA:CLH","1726":"P_LA:CLH","1727":"P_LA:CLH","1728":"P_LA:CLH","1729":"P_LA:CLH","1730":"P_LA:CLH","1731":"P_LA:CLH","1732":"P_LA:CLH","1733":"P_LA:CLH","1734":"P_LA:CLH","1735":"P_LA:CLH","1736":"P_LA:CLH","1737":"P_LA:CLH","1738":"P_LA:CLH","1739":"P_LA:CLH","1740":"P_LA:CLH","1741":"P_LA:CLH","1742":"P_LA:CLH","1743":"P_LA:CLH","1744":"P_LA:CLH","1745":"P_LA:CLH","1746":"P_LA:CLH","1747":"P_LA:CLH","1748":"P_LA:CLH","1749":"P_LA:CLH","1750":"P_LA:CLH","1751":"P_LA:CLH","1752":"P_LA:CLH","1753":"P_LA:CLH","1754":"P_LA:CLH","1755":"P_LA:CLH","1756":"P_LA:CLH","1757":"P_LA:CLH","1758":"P_LA:CLH","1759":"P_LA:CLH","1760":"P_LA:CLH","1761":"P_LA:CLH","1762":"P_LA:CLH","1763":"P_LA:CLH","1764":"P_LA:CLH","1765":"P_LA:CLH","1766":"P_LA:CLH","1767":"P_LA:CLH","1768":"P_LA:CLH","1769":"P_LA:CLH","1770":"P_LA:CLH","1771":"P_LA:CLH","1772":"P_LA:CLH","1773":"P_LA:CLH","1774":"P_LA:CLH","1775":"P_LA:CLH","1776":"P_LA:CLH","1777":"P_LA:CLH","1778":"P_LA:CLH","1779":"P_LA:CLH","1780":"P_LA:CLH","1781":"P_LA:CLH","1782":"P_LA:CLH","1783":"P_LA:CLH","1784":"P_LA:CLH","1785":"P_LA:CLH","1786":"P_LA:CLH","1787":"P_LA:CLH","1788":"P_LA:CLH","1789":"P_LA:CLH","1790":"P_LA:CLH","1791":"P_LA:CLH","1792":"P_LA:CLH","1793":"P_LA:CLH","1794":"P_LA:CLH","1795":"P_LA:CLH","1796":"P_LA:CLH","1797":"P_LA:CLH","1798":"P_LA:CLH","1799":"P_LA:CLH","1800":"V_LA:CLH","1801":"V_LA:CLH","1802":"V_LA:CLH","1803":"V_LA:CLH","1804":"V_LA:CLH","1805":"V_LA:CLH","1806":"V_LA:CLH","1807":"V_LA:CLH","1808":"V_LA:CLH","1809":"V_LA:CLH","1810":"V_LA:CLH","1811":"V_LA:CLH","1812":"V_LA:CLH","1813":"V_LA:CLH","1814":"V_LA:CLH","1815":"V_LA:CLH","1816":"V_LA:CLH","1817":"V_LA:CLH","1818":"V_LA:CLH","1819":"V_LA:CLH","1820":"V_LA:CLH","1821":"V_LA:CLH","1822":"V_LA:CLH","1823":"V_LA:CLH","1824":"V_LA:CLH","1825":"V_LA:CLH","1826":"V_LA:CLH","1827":"V_LA:CLH","1828":"V_LA:CLH","1829":"V_LA:CLH","1830":"V_LA:CLH","1831":"V_LA:CLH","1832":"V_LA:CLH","1833":"V_LA:CLH","1834":"V_LA:CLH","1835":"V_LA:CLH","1836":"V_LA:CLH","1837":"V_LA:CLH","1838":"V_LA:CLH","1839":"V_LA:CLH","1840":"V_LA:CLH","1841":"V_LA:CLH","1842":"V_LA:CLH","1843":"V_LA:CLH","1844":"V_LA:CLH","1845":"V_LA:CLH","1846":"V_LA:CLH","1847":"V_LA:CLH","1848":"V_LA:CLH","1849":"V_LA:CLH","1850":"V_LA:CLH","1851":"V_LA:CLH","1852":"V_LA:CLH","1853":"V_LA:CLH","1854":"V_LA:CLH","1855":"V_LA:CLH","1856":"V_LA:CLH","1857":"V_LA:CLH","1858":"V_LA:CLH","1859":"V_LA:CLH","1860":"V_LA:CLH","1861":"V_LA:CLH","1862":"V_LA:CLH","1863":"V_LA:CLH","1864":"V_LA:CLH","1865":"V_LA:CLH","1866":"V_LA:CLH","1867":"V_LA:CLH","1868":"V_LA:CLH","1869":"V_LA:CLH","1870":"V_LA:CLH","1871":"V_LA:CLH","1872":"V_LA:CLH","1873":"V_LA:CLH","1874":"V_LA:CLH","1875":"V_LA:CLH","1876":"V_LA:CLH","1877":"V_LA:CLH","1878":"V_LA:CLH","1879":"V_LA:CLH","1880":"V_LA:CLH","1881":"V_LA:CLH","1882":"V_LA:CLH","1883":"V_LA:CLH","1884":"V_LA:CLH","1885":"V_LA:CLH","1886":"V_LA:CLH","1887":"V_LA:CLH","1888":"V_LA:CLH","1889":"V_LA:CLH","1890":"V_LA:CLH","1891":"V_LA:CLH","1892":"V_LA:CLH","1893":"V_LA:CLH","1894":"V_LA:CLH","1895":"V_LA:CLH","1896":"V_LA:CLH","1897":"V_LA:CLH","1898":"V_LA:CLH","1899":"V_LA:CLH","1900":"Q_LA:CLH","1901":"Q_LA:CLH","1902":"Q_LA:CLH","1903":"Q_LA:CLH","1904":"Q_LA:CLH","1905":"Q_LA:CLH","1906":"Q_LA:CLH","1907":"Q_LA:CLH","1908":"Q_LA:CLH","1909":"Q_LA:CLH","1910":"Q_LA:CLH","1911":"Q_LA:CLH","1912":"Q_LA:CLH","1913":"Q_LA:CLH","1914":"Q_LA:CLH","1915":"Q_LA:CLH","1916":"Q_LA:CLH","1917":"Q_LA:CLH","1918":"Q_LA:CLH","1919":"Q_LA:CLH","1920":"Q_LA:CLH","1921":"Q_LA:CLH","1922":"Q_LA:CLH","1923":"Q_LA:CLH","1924":"Q_LA:CLH","1925":"Q_LA:CLH","1926":"Q_LA:CLH","1927":"Q_LA:CLH","1928":"Q_LA:CLH","1929":"Q_LA:CLH","1930":"Q_LA:CLH","1931":"Q_LA:CLH","1932":"Q_LA:CLH","1933":"Q_LA:CLH","1934":"Q_LA:CLH","1935":"Q_LA:CLH","1936":"Q_LA:CLH","1937":"Q_LA:CLH","1938":"Q_LA:CLH","1939":"Q_LA:CLH","1940":"Q_LA:CLH","1941":"Q_LA:CLH","1942":"Q_LA:CLH","1943":"Q_LA:CLH","1944":"Q_LA:CLH","1945":"Q_LA:CLH","1946":"Q_LA:CLH","1947":"Q_LA:CLH","1948":"Q_LA:CLH","1949":"Q_LA:CLH","1950":"Q_LA:CLH","1951":"Q_LA:CLH","1952":"Q_LA:CLH","1953":"Q_LA:CLH","1954":"Q_LA:CLH","1955":"Q_LA:CLH","1956":"Q_LA:CLH","1957":"Q_LA:CLH","1958":"Q_LA:CLH","1959":"Q_LA:CLH","1960":"Q_LA:CLH","1961":"Q_LA:CLH","1962":"Q_LA:CLH","1963":"Q_LA:CLH","1964":"Q_LA:CLH","1965":"Q_LA:CLH","1966":"Q_LA:CLH","1967":"Q_LA:CLH","1968":"Q_LA:CLH","1969":"Q_LA:CLH","1970":"Q_LA:CLH","1971":"Q_LA:CLH","1972":"Q_LA:CLH","1973":"Q_LA:CLH","1974":"Q_LA:CLH","1975":"Q_LA:CLH","1976":"Q_LA:CLH","1977":"Q_LA:CLH","1978":"Q_LA:CLH","1979":"Q_LA:CLH","1980":"Q_LA:CLH","1981":"Q_LA:CLH","1982":"Q_LA:CLH","1983":"Q_LA:CLH","1984":"Q_LA:CLH","1985":"Q_LA:CLH","1986":"Q_LA:CLH","1987":"Q_LA:CLH","1988":"Q_LA:CLH","1989":"Q_LA:CLH","1990":"Q_LA:CLH","1991":"Q_LA:CLH","1992":"Q_LA:CLH","1993":"Q_LA:CLH","1994":"Q_LA:CLH","1995":"Q_LA:CLH","1996":"Q_LA:CLH","1997":"Q_LA:CLH","1998":"Q_LA:CLH","1999":"Q_LA:CLH","2000":"P_LV:CLH","2001":"P_LV:CLH","2002":"P_LV:CLH","2003":"P_LV:CLH","2004":"P_LV:CLH","2005":"P_LV:CLH","2006":"P_LV:CLH","2007":"P_LV:CLH","2008":"P_LV:CLH","2009":"P_LV:CLH","2010":"P_LV:CLH","2011":"P_LV:CLH","2012":"P_LV:CLH","2013":"P_LV:CLH","2014":"P_LV:CLH","2015":"P_LV:CLH","2016":"P_LV:CLH","2017":"P_LV:CLH","2018":"P_LV:CLH","2019":"P_LV:CLH","2020":"P_LV:CLH","2021":"P_LV:CLH","2022":"P_LV:CLH","2023":"P_LV:CLH","2024":"P_LV:CLH","2025":"P_LV:CLH","2026":"P_LV:CLH","2027":"P_LV:CLH","2028":"P_LV:CLH","2029":"P_LV:CLH","2030":"P_LV:CLH","2031":"P_LV:CLH","2032":"P_LV:CLH","2033":"P_LV:CLH","2034":"P_LV:CLH","2035":"P_LV:CLH","2036":"P_LV:CLH","2037":"P_LV:CLH","2038":"P_LV:CLH","2039":"P_LV:CLH","2040":"P_LV:CLH","2041":"P_LV:CLH","2042":"P_LV:CLH","2043":"P_LV:CLH","2044":"P_LV:CLH","2045":"P_LV:CLH","2046":"P_LV:CLH","2047":"P_LV:CLH","2048":"P_LV:CLH","2049":"P_LV:CLH","2050":"P_LV:CLH","2051":"P_LV:CLH","2052":"P_LV:CLH","2053":"P_LV:CLH","2054":"P_LV:CLH","2055":"P_LV:CLH","2056":"P_LV:CLH","2057":"P_LV:CLH","2058":"P_LV:CLH","2059":"P_LV:CLH","2060":"P_LV:CLH","2061":"P_LV:CLH","2062":"P_LV:CLH","2063":"P_LV:CLH","2064":"P_LV:CLH","2065":"P_LV:CLH","2066":"P_LV:CLH","2067":"P_LV:CLH","2068":"P_LV:CLH","2069":"P_LV:CLH","2070":"P_LV:CLH","2071":"P_LV:CLH","2072":"P_LV:CLH","2073":"P_LV:CLH","2074":"P_LV:CLH","2075":"P_LV:CLH","2076":"P_LV:CLH","2077":"P_LV:CLH","2078":"P_LV:CLH","2079":"P_LV:CLH","2080":"P_LV:CLH","2081":"P_LV:CLH","2082":"P_LV:CLH","2083":"P_LV:CLH","2084":"P_LV:CLH","2085":"P_LV:CLH","2086":"P_LV:CLH","2087":"P_LV:CLH","2088":"P_LV:CLH","2089":"P_LV:CLH","2090":"P_LV:CLH","2091":"P_LV:CLH","2092":"P_LV:CLH","2093":"P_LV:CLH","2094":"P_LV:CLH","2095":"P_LV:CLH","2096":"P_LV:CLH","2097":"P_LV:CLH","2098":"P_LV:CLH","2099":"P_LV:CLH","2100":"V_LV:CLH","2101":"V_LV:CLH","2102":"V_LV:CLH","2103":"V_LV:CLH","2104":"V_LV:CLH","2105":"V_LV:CLH","2106":"V_LV:CLH","2107":"V_LV:CLH","2108":"V_LV:CLH","2109":"V_LV:CLH","2110":"V_LV:CLH","2111":"V_LV:CLH","2112":"V_LV:CLH","2113":"V_LV:CLH","2114":"V_LV:CLH","2115":"V_LV:CLH","2116":"V_LV:CLH","2117":"V_LV:CLH","2118":"V_LV:CLH","2119":"V_LV:CLH","2120":"V_LV:CLH","2121":"V_LV:CLH","2122":"V_LV:CLH","2123":"V_LV:CLH","2124":"V_LV:CLH","2125":"V_LV:CLH","2126":"V_LV:CLH","2127":"V_LV:CLH","2128":"V_LV:CLH","2129":"V_LV:CLH","2130":"V_LV:CLH","2131":"V_LV:CLH","2132":"V_LV:CLH","2133":"V_LV:CLH","2134":"V_LV:CLH","2135":"V_LV:CLH","2136":"V_LV:CLH","2137":"V_LV:CLH","2138":"V_LV:CLH","2139":"V_LV:CLH","2140":"V_LV:CLH","2141":"V_LV:CLH","2142":"V_LV:CLH","2143":"V_LV:CLH","2144":"V_LV:CLH","2145":"V_LV:CLH","2146":"V_LV:CLH","2147":"V_LV:CLH","2148":"V_LV:CLH","2149":"V_LV:CLH","2150":"V_LV:CLH","2151":"V_LV:CLH","2152":"V_LV:CLH","2153":"V_LV:CLH","2154":"V_LV:CLH","2155":"V_LV:CLH","2156":"V_LV:CLH","2157":"V_LV:CLH","2158":"V_LV:CLH","2159":"V_LV:CLH","2160":"V_LV:CLH","2161":"V_LV:CLH","2162":"V_LV:CLH","2163":"V_LV:CLH","2164":"V_LV:CLH","2165":"V_LV:CLH","2166":"V_LV:CLH","2167":"V_LV:CLH","2168":"V_LV:CLH","2169":"V_LV:CLH","2170":"V_LV:CLH","2171":"V_LV:CLH","2172":"V_LV:CLH","2173":"V_LV:CLH","2174":"V_LV:CLH","2175":"V_LV:CLH","2176":"V_LV:CLH","2177":"V_LV:CLH","2178":"V_LV:CLH","2179":"V_LV:CLH","2180":"V_LV:CLH","2181":"V_LV:CLH","2182":"V_LV:CLH","2183":"V_LV:CLH","2184":"V_LV:CLH","2185":"V_LV:CLH","2186":"V_LV:CLH","2187":"V_LV:CLH","2188":"V_LV:CLH","2189":"V_LV:CLH","2190":"V_LV:CLH","2191":"V_LV:CLH","2192":"V_LV:CLH","2193":"V_LV:CLH","2194":"V_LV:CLH","2195":"V_LV:CLH","2196":"V_LV:CLH","2197":"V_LV:CLH","2198":"V_LV:CLH","2199":"V_LV:CLH","2200":"Q_LV:CLH","2201":"Q_LV:CLH","2202":"Q_LV:CLH","2203":"Q_LV:CLH","2204":"Q_LV:CLH","2205":"Q_LV:CLH","2206":"Q_LV:CLH","2207":"Q_LV:CLH","2208":"Q_LV:CLH","2209":"Q_LV:CLH","2210":"Q_LV:CLH","2211":"Q_LV:CLH","2212":"Q_LV:CLH","2213":"Q_LV:CLH","2214":"Q_LV:CLH","2215":"Q_LV:CLH","2216":"Q_LV:CLH","2217":"Q_LV:CLH","2218":"Q_LV:CLH","2219":"Q_LV:CLH","2220":"Q_LV:CLH","2221":"Q_LV:CLH","2222":"Q_LV:CLH","2223":"Q_LV:CLH","2224":"Q_LV:CLH","2225":"Q_LV:CLH","2226":"Q_LV:CLH","2227":"Q_LV:CLH","2228":"Q_LV:CLH","2229":"Q_LV:CLH","2230":"Q_LV:CLH","2231":"Q_LV:CLH","2232":"Q_LV:CLH","2233":"Q_LV:CLH","2234":"Q_LV:CLH","2235":"Q_LV:CLH","2236":"Q_LV:CLH","2237":"Q_LV:CLH","2238":"Q_LV:CLH","2239":"Q_LV:CLH","2240":"Q_LV:CLH","2241":"Q_LV:CLH","2242":"Q_LV:CLH","2243":"Q_LV:CLH","2244":"Q_LV:CLH","2245":"Q_LV:CLH","2246":"Q_LV:CLH","2247":"Q_LV:CLH","2248":"Q_LV:CLH","2249":"Q_LV:CLH","2250":"Q_LV:CLH","2251":"Q_LV:CLH","2252":"Q_LV:CLH","2253":"Q_LV:CLH","2254":"Q_LV:CLH","2255":"Q_LV:CLH","2256":"Q_LV:CLH","2257":"Q_LV:CLH","2258":"Q_LV:CLH","2259":"Q_LV:CLH","2260":"Q_LV:CLH","2261":"Q_LV:CLH","2262":"Q_LV:CLH","2263":"Q_LV:CLH","2264":"Q_LV:CLH","2265":"Q_LV:CLH","2266":"Q_LV:CLH","2267":"Q_LV:CLH","2268":"Q_LV:CLH","2269":"Q_LV:CLH","2270":"Q_LV:CLH","2271":"Q_LV:CLH","2272":"Q_LV:CLH","2273":"Q_LV:CLH","2274":"Q_LV:CLH","2275":"Q_LV:CLH","2276":"Q_LV:CLH","2277":"Q_LV:CLH","2278":"Q_LV:CLH","2279":"Q_LV:CLH","2280":"Q_LV:CLH","2281":"Q_LV:CLH","2282":"Q_LV:CLH","2283":"Q_LV:CLH","2284":"Q_LV:CLH","2285":"Q_LV:CLH","2286":"Q_LV:CLH","2287":"Q_LV:CLH","2288":"Q_LV:CLH","2289":"Q_LV:CLH","2290":"Q_LV:CLH","2291":"Q_LV:CLH","2292":"Q_LV:CLH","2293":"Q_LV:CLH","2294":"Q_LV:CLH","2295":"Q_LV:CLH","2296":"Q_LV:CLH","2297":"Q_LV:CLH","2298":"Q_LV:CLH","2299":"Q_LV:CLH"},"time":{"0":0.0,"1":0.01,"2":0.02,"3":0.03,"4":0.04,"5":0.05,"6":0.06,"7":0.07,"8":0.08,"9":0.09,"10":0.1,"11":0.11,"12":0.12,"13":0.13,"14":0.14,"15":0.15,"16":0.16,"17":0.17,"18":0.18,"19":0.19,"20":0.2,"21":0.21,"22":0.22,"23":0.23,"24":0.24,"25":0.25,"26":0.26,"27":0.27,"28":0.28,"29":0.29,"30":0.3,"31":0.31,"32":0.32,"33":0.33,"34":0.34,"35":0.35,"36":0.36,"37":0.37,"38":0.38,"39":0.39,"40":0.4,"41":0.41,"42":0.42,"43":0.43,"44":0.44,"45":0.45,"46":0.46,"47":0.47,"48":0.48,"49":0.49,"50":0.5,"51":0.51,"52":0.52,"53":0.53,"54":0.54,"55":0.55,"56":0.56,"57":0.57,"58":0.58,"59":0.59,"60":0.6,"61":0.61,"62":0.62,"63":0.63,"64":0.64,"65":0.65,"66":0.66,"67":0.67,"68":0.68,"69":0.69,"70":0.7,"71":0.71,"72":0.72,"73":0.73,"74":0.74,"75":0.75,"76":0.76,"77":0.77,"78":0.78,"79":0.79,"80":0.8,"81":0.81,"82":0.82,"83":0.83,"84":0.84,"85":0.85,"86":0.86,"87":0.87,"88":0.88,"89":0.89,"90":0.9,"91":0.91,"92":0.92,"93":0.93,"94":0.94,"95":0.95,"96":0.96,"97":0.97,"98":0.98,"99":0.99,"100":0.0,"101":0.01,"102":0.02,"103":0.03,"104":0.04,"105":0.05,"106":0.06,"107":0.07,"108":0.08,"109":0.09,"110":0.1,"111":0.11,"112":0.12,"113":0.13,"114":0.14,"115":0.15,"116":0.16,"117":0.17,"118":0.18,"119":0.19,"120":0.2,"121":0.21,"122":0.22,"123":0.23,"124":0.24,"125":0.25,"126":0.26,"127":0.27,"128":0.28,"129":0.29,"130":0.3,"131":0.31,"132":0.32,"133":0.33,"134":0.34,"135":0.35,"136":0.36,"137":0.37,"138":0.38,"139":0.39,"140":0.4,"141":0.41,"142":0.42,"143":0.43,"144":0.44,"145":0.45,"146":0.46,"147":0.47,"148":0.48,"149":0.49,"150":0.5,"151":0.51,"152":0.52,"153":0.53,"154":0.54,"155":0.55,"156":0.56,"157":0.57,"158":0.58,"159":0.59,"160":0.6,"161":0.61,"162":0.62,"163":0.63,"164":0.64,"165":0.65,"166":0.66,"167":0.67,"168":0.68,"169":0.69,"170":0.7,"171":0.71,"172":0.72,"173":0.73,"174":0.74,"175":0.75,"176":0.76,"177":0.77,"178":0.78,"179":0.79,"180":0.8,"181":0.81,"182":0.82,"183":0.83,"184":0.84,"185":0.85,"186":0.86,"187":0.87,"188":0.88,"189":0.89,"190":0.9,"191":0.91,"192":0.92,"193":0.93,"194":0.94,"195":0.95,"196":0.96,"197":0.97,"198":0.98,"199":0.99,"200":0.0,"201":0.01,"202":0.02,"203":0.03,"204":0.04,"205":0.05,"206":0.06,"207":0.07,"208":0.08,"209":0.09,"210":0.1,"211":0.11,"212":0.12,"213":0.13,"214":0.14,"215":0.15,"216":0.16,"217":0.17,"218":0.18,"219":0.19,"220":0.2,"221":0.21,"222":0.22,"223":0.23,"224":0.24,"225":0.25,"226":0.26,"227":0.27,"228":0.28,"229":0.29,"230":0.3,"231":0.31,"232":0.32,"233":0.33,"234":0.34,"235":0.35,"236":0.36,"237":0.37,"238":0.38,"239":0.39,"240":0.4,"241":0.41,"242":0.42,"243":0.43,"244":0.44,"245":0.45,"246":0.46,"247":0.47,"248":0.48,"249":0.49,"250":0.5,"251":0.51,"252":0.52,"253":0.53,"254":0.54,"255":0.55,"256":0.56,"257":0.57,"258":0.58,"259":0.59,"260":0.6,"261":0.61,"262":0.62,"263":0.63,"264":0.64,"265":0.65,"266":0.66,"267":0.67,"268":0.68,"269":0.69,"270":0.7,"271":0.71,"272":0.72,"273":0.73,"274":0.74,"275":0.75,"276":0.76,"277":0.77,"278":0.78,"279":0.79,"280":0.8,"281":0.81,"282":0.82,"283":0.83,"284":0.84,"285":0.85,"286":0.86,"287":0.87,"288":0.88,"289":0.89,"290":0.9,"291":0.91,"292":0.92,"293":0.93,"294":0.94,"295":0.95,"296":0.96,"297":0.97,"298":0.98,"299":0.99,"300":0.0,"301":0.01,"302":0.02,"303":0.03,"304":0.04,"305":0.05,"306":0.06,"307":0.07,"308":0.08,"309":0.09,"310":0.1,"311":0.11,"312":0.12,"313":0.13,"314":0.14,"315":0.15,"316":0.16,"317":0.17,"318":0.18,"319":0.19,"320":0.2,"321":0.21,"322":0.22,"323":0.23,"324":0.24,"325":0.25,"326":0.26,"327":0.27,"328":0.28,"329":0.29,"330":0.3,"331":0.31,"332":0.32,"333":0.33,"334":0.34,"335":0.35,"336":0.36,"337":0.37,"338":0.38,"339":0.39,"340":0.4,"341":0.41,"342":0.42,"343":0.43,"344":0.44,"345":0.45,"346":0.46,"347":0.47,"348":0.48,"349":0.49,"350":0.5,"351":0.51,"352":0.52,"353":0.53,"354":0.54,"355":0.55,"356":0.56,"357":0.57,"358":0.58,"359":0.59,"360":0.6,"361":0.61,"362":0.62,"363":0.63,"364":0.64,"365":0.65,"366":0.66,"367":0.67,"368":0.68,"369":0.69,"370":0.7,"371":0.71,"372":0.72,"373":0.73,"374":0.74,"375":0.75,"376":0.76,"377":0.77,"378":0.78,"379":0.79,"380":0.8,"381":0.81,"382":0.82,"383":0.83,"384":0.84,"385":0.85,"386":0.86,"387":0.87,"388":0.88,"389":0.89,"390":0.9,"391":0.91,"392":0.92,"393":0.93,"394":0.94,"395":0.95,"396":0.96,"397":0.97,"398":0.98,"399":0.99,"400":0.0,"401":0.01,"402":0.02,"403":0.03,"404":0.04,"405":0.05,"406":0.06,"407":0.07,"408":0.08,"409":0.09,"410":0.1,"411":0.11,"412":0.12,"413":0.13,"414":0.14,"415":0.15,"416":0.16,"417":0.17,"418":0.18,"419":0.19,"420":0.2,"421":0.21,"422":0.22,"423":0.23,"424":0.24,"425":0.25,"426":0.26,"427":0.27,"428":0.28,"429":0.29,"430":0.3,"431":0.31,"432":0.32,"433":0.33,"434":0.34,"435":0.35,"436":0.36,"437":0.37,"438":0.38,"439":0.39,"440":0.4,"441":0.41,"442":0.42,"443":0.43,"444":0.44,"445":0.45,"446":0.46,"447":0.47,"448":0.48,"449":0.49,"450":0.5,"451":0.51,"452":0.52,"453":0.53,"454":0.54,"455":0.55,"456":0.56,"457":0.57,"458":0.58,"459":0.59,"460":0.6,"461":0.61,"462":0.62,"463":0.63,"464":0.64,"465":0.65,"466":0.66,"467":0.67,"468":0.68,"469":0.69,"470":0.7,"471":0.71,"472":0.72,"473":0.73,"474":0.74,"475":0.75,"476":0.76,"477":0.77,"478":0.78,"479":0.79,"480":0.8,"481":0.81,"482":0.82,"483":0.83,"484":0.84,"485":0.85,"486":0.86,"487":0.87,"488":0.88,"489":0.89,"490":0.9,"491":0.91,"492":0.92,"493":0.93,"494":0.94,"495":0.95,"496":0.96,"497":0.97,"498":0.98,"499":0.99,"500":0.0,"501":0.01,"502":0.02,"503":0.03,"504":0.04,"505":0.05,"506":0.06,"507":0.07,"508":0.08,"509":0.09,"510":0.1,"511":0.11,"512":0.12,"513":0.13,"514":0.14,"515":0.15,"516":0.16,"517":0.17,"518":0.18,"519":0.19,"520":0.2,"521":0.21,"522":0.22,"523":0.23,"524":0.24,"525":0.25,"526":0.26,"527":0.27,"528":0.28,"529":0.29,"530":0.3,"531":0.31,"532":0.32,"533":0.33,"534":0.34,"535":0.35,"536":0.36,"537":0.37,"538":0.38,"539":0.39,"540":0.4,"541":0.41,"542":0.42,"543":0.43,"544":0.44,"545":0.45,"546":0.46,"547":0.47,"548":0.48,"549":0.49,"550":0.5,"551":0.51,"552":0.52,"553":0.53,"554":0.54,"555":0.55,"556":0.56,"557":0.57,"558":0.58,"559":0.59,"560":0.6,"561":0.61,"562":0.62,"563":0.63,"564":0.64,"565":0.65,"566":0.66,"567":0.67,"568":0.68,"569":0.69,"570":0.7,"571":0.71,"572":0.72,"573":0.73,"574":0.74,"575":0.75,"576":0.76,"577":0.77,"578":0.78,"579":0.79,"580":0.8,"581":0.81,"582":0.82,"583":0.83,"584":0.84,"585":0.85,"586":0.86,"587":0.87,"588":0.88,"589":0.89,"590":0.9,"591":0.91,"592":0.92,"593":0.93,"594":0.94,"595":0.95,"596":0.96,"597":0.97,"598":0.98,"599":0.99,"600":0.0,"601":0.01,"602":0.02,"603":0.03,"604":0.04,"605":0.05,"606":0.06,"607":0.07,"608":0.08,"609":0.09,"610":0.1,"611":0.11,"612":0.12,"613":0.13,"614":0.14,"615":0.15,"616":0.16,"617":0.17,"618":0.18,"619":0.19,"620":0.2,"621":0.21,"622":0.22,"623":0.23,"624":0.24,"625":0.25,"626":0.26,"627":0.27,"628":0.28,"629":0.29,"630":0.3,"631":0.31,"632":0.32,"633":0.33,"634":0.34,"635":0.35,"636":0.36,"637":0.37,"638":0.38,"639":0.39,"640":0.4,"641":0.41,"642":0.42,"643":0.43,"644":0.44,"645":0.45,"646":0.46,"647":0.47,"648":0.48,"649":0.49,"650":0.5,"651":0.51,"652":0.52,"653":0.53,"654":0.54,"655":0.55,"656":0.56,"657":0.57,"658":0.58,"659":0.59,"660":0.6,"661":0.61,"662":0.62,"663":0.63,"664":0.64,"665":0.65,"666":0.66,"667":0.67,"668":0.68,"669":0.69,"670":0.7,"671":0.71,"672":0.72,"673":0.73,"674":0.74,"675":0.75,"676":0.76,"677":0.77,"678":0.78,"679":0.79,"680":0.8,"681":0.81,"682":0.82,"683":0.83,"684":0.84,"685":0.85,"686":0.86,"687":0.87,"688":0.88,"689":0.89,"690":0.9,"691":0.91,"692":0.92,"693":0.93,"694":0.94,"695":0.95,"696":0.96,"697":0.97,"698":0.98,"699":0.99,"700":0.0,"701":0.01,"702":0.02,"703":0.03,"704":0.04,"705":0.05,"706":0.06,"707":0.07,"708":0.08,"709":0.09,"710":0.1,"711":0.11,"712":0.12,"713":0.13,"714":0.14,"715":0.15,"716":0.16,"717":0.17,"718":0.18,"719":0.19,"720":0.2,"721":0.21,"722":0.22,"723":0.23,"724":0.24,"725":0.25,"726":0.26,"727":0.27,"728":0.28,"729":0.29,"730":0.3,"731":0.31,"732":0.32,"733":0.33,"734":0.34,"735":0.35,"736":0.36,"737":0.37,"738":0.38,"739":0.39,"740":0.4,"741":0.41,"742":0.42,"743":0.43,"744":0.44,"745":0.45,"746":0.46,"747":0.47,"748":0.48,"749":0.49,"750":0.5,"751":0.51,"752":0.52,"753":0.53,"754":0.54,"755":0.55,"756":0.56,"757":0.57,"758":0.58,"759":0.59,"760":0.6,"761":0.61,"762":0.62,"763":0.63,"764":0.64,"765":0.65,"766":0.66,"767":0.67,"768":0.68,"769":0.69,"770":0.7,"771":0.71,"772":0.72,"773":0.73,"774":0.74,"775":0.75,"776":0.76,"777":0.77,"778":0.78,"779":0.79,"780":0.8,"781":0.81,"782":0.82,"783":0.83,"784":0.84,"785":0.85,"786":0.86,"787":0.87,"788":0.88,"789":0.89,"790":0.9,"791":0.91,"792":0.92,"793":0.93,"794":0.94,"795":0.95,"796":0.96,"797":0.97,"798":0.98,"799":0.99,"800":0.0,"801":0.01,"802":0.02,"803":0.03,"804":0.04,"805":0.05,"806":0.06,"807":0.07,"808":0.08,"809":0.09,"810":0.1,"811":0.11,"812":0.12,"813":0.13,"814":0.14,"815":0.15,"816":0.16,"817":0.17,"818":0.18,"819":0.19,"820":0.2,"821":0.21,"822":0.22,"823":0.23,"824":0.24,"825":0.25,"826":0.26,"827":0.27,"828":0.28,"829":0.29,"830":0.3,"831":0.31,"832":0.32,"833":0.33,"834":0.34,"835":0.35,"836":0.36,"837":0.37,"838":0.38,"839":0.39,"840":0.4,"841":0.41,"842":0.42,"843":0.43,"844":0.44,"845":0.45,"846":0.46,"847":0.47,"848":0.48,"849":0.49,"850":0.5,"851":0.51,"852":0.52,"853":0.53,"854":0.54,"855":0.55,"856":0.56,"857":0.57,"858":0.58,"859":0.59,"860":0.6,"861":0.61,"862":0.62,"863":0.63,"864":0.64,"865":0.65,"866":0.66,"867":0.67,"868":0.68,"869":0.69,"870":0.7,"871":0.71,"872":0.72,"873":0.73,"874":0.74,"875":0.75,"876":0.76,"877":0.77,"878":0.78,"879":0.79,"880":0.8,"881":0.81,"882":0.82,"883":0.83,"884":0.84,"885":0.85,"886":0.86,"887":0.87,"888":0.88,"889":0.89,"890":0.9,"891":0.91,"892":0.92,"893":0.93,"894":0.94,"895":0.95,"896":0.96,"897":0.97,"898":0.98,"899":0.99,"900":0.0,"901":0.01,"902":0.02,"903":0.03,"904":0.04,"905":0.05,"906":0.06,"907":0.07,"908":0.08,"909":0.09,"910":0.1,"911":0.11,"912":0.12,"913":0.13,"914":0.14,"915":0.15,"916":0.16,"917":0.17,"918":0.18,"919":0.19,"920":0.2,"921":0.21,"922":0.22,"923":0.23,"924":0.24,"925":0.25,"926":0.26,"927":0.27,"928":0.28,"929":0.29,"930":0.3,"931":0.31,"932":0.32,"933":0.33,"934":0.34,"935":0.35,"936":0.36,"937":0.37,"938":0.38,"939":0.39,"940":0.4,"941":0.41,"942":0.42,"943":0.43,"944":0.44,"945":0.45,"946":0.46,"947":0.47,"948":0.48,"949":0.49,"950":0.5,"951":0.51,"952":0.52,"953":0.53,"954":0.54,"955":0.55,"956":0.56,"957":0.57,"958":0.58,"959":0.59,"960":0.6,"961":0.61,"962":0.62,"963":0.63,"964":0.64,"965":0.65,"966":0.66,"967":0.67,"968":0.68,"969":0.69,"970":0.7,"971":0.71,"972":0.72,"973":0.73,"974":0.74,"975":0.75,"976":0.76,"977":0.77,"978":0.78,"979":0.79,"980":0.8,"981":0.81,"982":0.82,"983":0.83,"984":0.84,"985":0.85,"986":0.86,"987":0.87,"988":0.88,"989":0.89,"990":0.9,"991":0.91,"992":0.92,"993":0.93,"994":0.94,"995":0.95,"996":0.96,"997":0.97,"998":0.98,"999":0.99,"1000":0.0,"1001":0.01,"1002":0.02,"1003":0.03,"1004":0.04,"1005":0.05,"1006":0.06,"1007":0.07,"1008":0.08,"1009":0.09,"1010":0.1,"1011":0.11,"1012":0.12,"1013":0.13,"1014":0.14,"1015":0.15,"1016":0.16,"1017":0.17,"1018":0.18,"1019":0.19,"1020":0.2,"1021":0.21,"1022":0.22,"1023":0.23,"1024":0.24,"1025":0.25,"1026":0.26,"1027":0.27,"1028":0.28,"1029":0.29,"1030":0.3,"1031":0.31,"1032":0.32,"1033":0.33,"1034":0.34,"1035":0.35,"1036":0.36,"1037":0.37,"1038":0.38,"1039":0.39,"1040":0.4,"1041":0.41,"1042":0.42,"1043":0.43,"1044":0.44,"1045":0.45,"1046":0.46,"1047":0.47,"1048":0.48,"1049":0.49,"1050":0.5,"1051":0.51,"1052":0.52,"1053":0.53,"1054":0.54,"1055":0.55,"1056":0.56,"1057":0.57,"1058":0.58,"1059":0.59,"1060":0.6,"1061":0.61,"1062":0.62,"1063":0.63,"1064":0.64,"1065":0.65,"1066":0.66,"1067":0.67,"1068":0.68,"1069":0.69,"1070":0.7,"1071":0.71,"1072":0.72,"1073":0.73,"1074":0.74,"1075":0.75,"1076":0.76,"1077":0.77,"1078":0.78,"1079":0.79,"1080":0.8,"1081":0.81,"1082":0.82,"1083":0.83,"1084":0.84,"1085":0.85,"1086":0.86,"1087":0.87,"1088":0.88,"1089":0.89,"1090":0.9,"1091":0.91,"1092":0.92,"1093":0.93,"1094":0.94,"1095":0.95,"1096":0.96,"1097":0.97,"1098":0.98,"1099":0.99,"1100":0.0,"1101":0.01,"1102":0.02,"1103":0.03,"1104":0.04,"1105":0.05,"1106":0.06,"1107":0.07,"1108":0.08,"1109":0.09,"1110":0.1,"1111":0.11,"1112":0.12,"1113":0.13,"1114":0.14,"1115":0.15,"1116":0.16,"1117":0.17,"1118":0.18,"1119":0.19,"1120":0.2,"1121":0.21,"1122":0.22,"1123":0.23,"1124":0.24,"1125":0.25,"1126":0.26,"1127":0.27,"1128":0.28,"1129":0.29,"1130":0.3,"1131":0.31,"1132":0.32,"1133":0.33,"1134":0.34,"1135":0.35,"1136":0.36,"1137":0.37,"1138":0.38,"1139":0.39,"1140":0.4,"1141":0.41,"1142":0.42,"1143":0.43,"1144":0.44,"1145":0.45,"1146":0.46,"1147":0.47,"1148":0.48,"1149":0.49,"1150":0.5,"1151":0.51,"1152":0.52,"1153":0.53,"1154":0.54,"1155":0.55,"1156":0.56,"1157":0.57,"1158":0.58,"1159":0.59,"1160":0.6,"1161":0.61,"1162":0.62,"1163":0.63,"1164":0.64,"1165":0.65,"1166":0.66,"1167":0.67,"1168":0.68,"1169":0.69,"1170":0.7,"1171":0.71,"1172":0.72,"1173":0.73,"1174":0.74,"1175":0.75,"1176":0.76,"1177":0.77,"1178":0.78,"1179":0.79,"1180":0.8,"1181":0.81,"1182":0.82,"1183":0.83,"1184":0.84,"1185":0.85,"1186":0.86,"1187":0.87,"1188":0.88,"1189":0.89,"1190":0.9,"1191":0.91,"1192":0.92,"1193":0.93,"1194":0.94,"1195":0.95,"1196":0.96,"1197":0.97,"1198":0.98,"1199":0.99,"1200":0.0,"1201":0.01,"1202":0.02,"1203":0.03,"1204":0.04,"1205":0.05,"1206":0.06,"1207":0.07,"1208":0.08,"1209":0.09,"1210":0.1,"1211":0.11,"1212":0.12,"1213":0.13,"1214":0.14,"1215":0.15,"1216":0.16,"1217":0.17,"1218":0.18,"1219":0.19,"1220":0.2,"1221":0.21,"1222":0.22,"1223":0.23,"1224":0.24,"1225":0.25,"1226":0.26,"1227":0.27,"1228":0.28,"1229":0.29,"1230":0.3,"1231":0.31,"1232":0.32,"1233":0.33,"1234":0.34,"1235":0.35,"1236":0.36,"1237":0.37,"1238":0.38,"1239":0.39,"1240":0.4,"1241":0.41,"1242":0.42,"1243":0.43,"1244":0.44,"1245":0.45,"1246":0.46,"1247":0.47,"1248":0.48,"1249":0.49,"1250":0.5,"1251":0.51,"1252":0.52,"1253":0.53,"1254":0.54,"1255":0.55,"1256":0.56,"1257":0.57,"1258":0.58,"1259":0.59,"1260":0.6,"1261":0.61,"1262":0.62,"1263":0.63,"1264":0.64,"1265":0.65,"1266":0.66,"1267":0.67,"1268":0.68,"1269":0.69,"1270":0.7,"1271":0.71,"1272":0.72,"1273":0.73,"1274":0.74,"1275":0.75,"1276":0.76,"1277":0.77,"1278":0.78,"1279":0.79,"1280":0.8,"1281":0.81,"1282":0.82,"1283":0.83,"1284":0.84,"1285":0.85,"1286":0.86,"1287":0.87,"1288":0.88,"1289":0.89,"1290":0.9,"1291":0.91,"1292":0.92,"1293":0.93,"1294":0.94,"1295":0.95,"1296":0.96,"1297":0.97,"1298":0.98,"1299":0.99,"1300":0.0,"1301":0.01,"1302":0.02,"1303":0.03,"1304":0.04,"1305":0.05,"1306":0.06,"1307":0.07,"1308":0.08,"1309":0.09,"1310":0.1,"1311":0.11,"1312":0.12,"1313":0.13,"1314":0.14,"1315":0.15,"1316":0.16,"1317":0.17,"1318":0.18,"1319":0.19,"1320":0.2,"1321":0.21,"1322":0.22,"1323":0.23,"1324":0.24,"1325":0.25,"1326":0.26,"1327":0.27,"1328":0.28,"1329":0.29,"1330":0.3,"1331":0.31,"1332":0.32,"1333":0.33,"1334":0.34,"1335":0.35,"1336":0.36,"1337":0.37,"1338":0.38,"1339":0.39,"1340":0.4,"1341":0.41,"1342":0.42,"1343":0.43,"1344":0.44,"1345":0.45,"1346":0.46,"1347":0.47,"1348":0.48,"1349":0.49,"1350":0.5,"1351":0.51,"1352":0.52,"1353":0.53,"1354":0.54,"1355":0.55,"1356":0.56,"1357":0.57,"1358":0.58,"1359":0.59,"1360":0.6,"1361":0.61,"1362":0.62,"1363":0.63,"1364":0.64,"1365":0.65,"1366":0.66,"1367":0.67,"1368":0.68,"1369":0.69,"1370":0.7,"1371":0.71,"1372":0.72,"1373":0.73,"1374":0.74,"1375":0.75,"1376":0.76,"1377":0.77,"1378":0.78,"1379":0.79,"1380":0.8,"1381":0.81,"1382":0.82,"1383":0.83,"1384":0.84,"1385":0.85,"1386":0.86,"1387":0.87,"1388":0.88,"1389":0.89,"1390":0.9,"1391":0.91,"1392":0.92,"1393":0.93,"1394":0.94,"1395":0.95,"1396":0.96,"1397":0.97,"1398":0.98,"1399":0.99,"1400":0.0,"1401":0.01,"1402":0.02,"1403":0.03,"1404":0.04,"1405":0.05,"1406":0.06,"1407":0.07,"1408":0.08,"1409":0.09,"1410":0.1,"1411":0.11,"1412":0.12,"1413":0.13,"1414":0.14,"1415":0.15,"1416":0.16,"1417":0.17,"1418":0.18,"1419":0.19,"1420":0.2,"1421":0.21,"1422":0.22,"1423":0.23,"1424":0.24,"1425":0.25,"1426":0.26,"1427":0.27,"1428":0.28,"1429":0.29,"1430":0.3,"1431":0.31,"1432":0.32,"1433":0.33,"1434":0.34,"1435":0.35,"1436":0.36,"1437":0.37,"1438":0.38,"1439":0.39,"1440":0.4,"1441":0.41,"1442":0.42,"1443":0.43,"1444":0.44,"1445":0.45,"1446":0.46,"1447":0.47,"1448":0.48,"1449":0.49,"1450":0.5,"1451":0.51,"1452":0.52,"1453":0.53,"1454":0.54,"1455":0.55,"1456":0.56,"1457":0.57,"1458":0.58,"1459":0.59,"1460":0.6,"1461":0.61,"1462":0.62,"1463":0.63,"1464":0.64,"1465":0.65,"1466":0.66,"1467":0.67,"1468":0.68,"1469":0.69,"1470":0.7,"1471":0.71,"1472":0.72,"1473":0.73,"1474":0.74,"1475":0.75,"1476":0.76,"1477":0.77,"1478":0.78,"1479":0.79,"1480":0.8,"1481":0.81,"1482":0.82,"1483":0.83,"1484":0.84,"1485":0.85,"1486":0.86,"1487":0.87,"1488":0.88,"1489":0.89,"1490":0.9,"1491":0.91,"1492":0.92,"1493":0.93,"1494":0.94,"1495":0.95,"1496":0.96,"1497":0.97,"1498":0.98,"1499":0.99,"1500":0.0,"1501":0.01,"1502":0.02,"1503":0.03,"1504":0.04,"1505":0.05,"1506":0.06,"1507":0.07,"1508":0.08,"1509":0.09,"1510":0.1,"1511":0.11,"1512":0.12,"1513":0.13,"1514":0.14,"1515":0.15,"1516":0.16,"1517":0.17,"1518":0.18,"1519":0.19,"1520":0.2,"1521":0.21,"1522":0.22,"1523":0.23,"1524":0.24,"1525":0.25,"1526":0.26,"1527":0.27,"1528":0.28,"1529":0.29,"1530":0.3,"1531":0.31,"1532":0.32,"1533":0.33,"1534":0.34,"1535":0.35,"1536":0.36,"1537":0.37,"1538":0.38,"1539":0.39,"1540":0.4,"1541":0.41,"1542":0.42,"1543":0.43,"1544":0.44,"1545":0.45,"1546":0.46,"1547":0.47,"1548":0.48,"1549":0.49,"1550":0.5,"1551":0.51,"1552":0.52,"1553":0.53,"1554":0.54,"1555":0.55,"1556":0.56,"1557":0.57,"1558":0.58,"1559":0.59,"1560":0.6,"1561":0.61,"1562":0.62,"1563":0.63,"1564":0.64,"1565":0.65,"1566":0.66,"1567":0.67,"1568":0.68,"1569":0.69,"1570":0.7,"1571":0.71,"1572":0.72,"1573":0.73,"1574":0.74,"1575":0.75,"1576":0.76,"1577":0.77,"1578":0.78,"1579":0.79,"1580":0.8,"1581":0.81,"1582":0.82,"1583":0.83,"1584":0.84,"1585":0.85,"1586":0.86,"1587":0.87,"1588":0.88,"1589":0.89,"1590":0.9,"1591":0.91,"1592":0.92,"1593":0.93,"1594":0.94,"1595":0.95,"1596":0.96,"1597":0.97,"1598":0.98,"1599":0.99,"1600":0.0,"1601":0.01,"1602":0.02,"1603":0.03,"1604":0.04,"1605":0.05,"1606":0.06,"1607":0.07,"1608":0.08,"1609":0.09,"1610":0.1,"1611":0.11,"1612":0.12,"1613":0.13,"1614":0.14,"1615":0.15,"1616":0.16,"1617":0.17,"1618":0.18,"1619":0.19,"1620":0.2,"1621":0.21,"1622":0.22,"1623":0.23,"1624":0.24,"1625":0.25,"1626":0.26,"1627":0.27,"1628":0.28,"1629":0.29,"1630":0.3,"1631":0.31,"1632":0.32,"1633":0.33,"1634":0.34,"1635":0.35,"1636":0.36,"1637":0.37,"1638":0.38,"1639":0.39,"1640":0.4,"1641":0.41,"1642":0.42,"1643":0.43,"1644":0.44,"1645":0.45,"1646":0.46,"1647":0.47,"1648":0.48,"1649":0.49,"1650":0.5,"1651":0.51,"1652":0.52,"1653":0.53,"1654":0.54,"1655":0.55,"1656":0.56,"1657":0.57,"1658":0.58,"1659":0.59,"1660":0.6,"1661":0.61,"1662":0.62,"1663":0.63,"1664":0.64,"1665":0.65,"1666":0.66,"1667":0.67,"1668":0.68,"1669":0.69,"1670":0.7,"1671":0.71,"1672":0.72,"1673":0.73,"1674":0.74,"1675":0.75,"1676":0.76,"1677":0.77,"1678":0.78,"1679":0.79,"1680":0.8,"1681":0.81,"1682":0.82,"1683":0.83,"1684":0.84,"1685":0.85,"1686":0.86,"1687":0.87,"1688":0.88,"1689":0.89,"1690":0.9,"1691":0.91,"1692":0.92,"1693":0.93,"1694":0.94,"1695":0.95,"1696":0.96,"1697":0.97,"1698":0.98,"1699":0.99,"1700":0.0,"1701":0.01,"1702":0.02,"1703":0.03,"1704":0.04,"1705":0.05,"1706":0.06,"1707":0.07,"1708":0.08,"1709":0.09,"1710":0.1,"1711":0.11,"1712":0.12,"1713":0.13,"1714":0.14,"1715":0.15,"1716":0.16,"1717":0.17,"1718":0.18,"1719":0.19,"1720":0.2,"1721":0.21,"1722":0.22,"1723":0.23,"1724":0.24,"1725":0.25,"1726":0.26,"1727":0.27,"1728":0.28,"1729":0.29,"1730":0.3,"1731":0.31,"1732":0.32,"1733":0.33,"1734":0.34,"1735":0.35,"1736":0.36,"1737":0.37,"1738":0.38,"1739":0.39,"1740":0.4,"1741":0.41,"1742":0.42,"1743":0.43,"1744":0.44,"1745":0.45,"1746":0.46,"1747":0.47,"1748":0.48,"1749":0.49,"1750":0.5,"1751":0.51,"1752":0.52,"1753":0.53,"1754":0.54,"1755":0.55,"1756":0.56,"1757":0.57,"1758":0.58,"1759":0.59,"1760":0.6,"1761":0.61,"1762":0.62,"1763":0.63,"1764":0.64,"1765":0.65,"1766":0.66,"1767":0.67,"1768":0.68,"1769":0.69,"1770":0.7,"1771":0.71,"1772":0.72,"1773":0.73,"1774":0.74,"1775":0.75,"1776":0.76,"1777":0.77,"1778":0.78,"1779":0.79,"1780":0.8,"1781":0.81,"1782":0.82,"1783":0.83,"1784":0.84,"1785":0.85,"1786":0.86,"1787":0.87,"1788":0.88,"1789":0.89,"1790":0.9,"1791":0.91,"1792":0.92,"1793":0.93,"1794":0.94,"1795":0.95,"1796":0.96,"1797":0.97,"1798":0.98,"1799":0.99,"1800":0.0,"1801":0.01,"1802":0.02,"1803":0.03,"1804":0.04,"1805":0.05,"1806":0.06,"1807":0.07,"1808":0.08,"1809":0.09,"1810":0.1,"1811":0.11,"1812":0.12,"1813":0.13,"1814":0.14,"1815":0.15,"1816":0.16,"1817":0.17,"1818":0.18,"1819":0.19,"1820":0.2,"1821":0.21,"1822":0.22,"1823":0.23,"1824":0.24,"1825":0.25,"1826":0.26,"1827":0.27,"1828":0.28,"1829":0.29,"1830":0.3,"1831":0.31,"1832":0.32,"1833":0.33,"1834":0.34,"1835":0.35,"1836":0.36,"1837":0.37,"1838":0.38,"1839":0.39,"1840":0.4,"1841":0.41,"1842":0.42,"1843":0.43,"1844":0.44,"1845":0.45,"1846":0.46,"1847":0.47,"1848":0.48,"1849":0.49,"1850":0.5,"1851":0.51,"1852":0.52,"1853":0.53,"1854":0.54,"1855":0.55,"1856":0.56,"1857":0.57,"1858":0.58,"1859":0.59,"1860":0.6,"1861":0.61,"1862":0.62,"1863":0.63,"1864":0.64,"1865":0.65,"1866":0.66,"1867":0.67,"1868":0.68,"1869":0.69,"1870":0.7,"1871":0.71,"1872":0.72,"1873":0.73,"1874":0.74,"1875":0.75,"1876":0.76,"1877":0.77,"1878":0.78,"1879":0.79,"1880":0.8,"1881":0.81,"1882":0.82,"1883":0.83,"1884":0.84,"1885":0.85,"1886":0.86,"1887":0.87,"1888":0.88,"1889":0.89,"1890":0.9,"1891":0.91,"1892":0.92,"1893":0.93,"1894":0.94,"1895":0.95,"1896":0.96,"1897":0.97,"1898":0.98,"1899":0.99,"1900":0.0,"1901":0.01,"1902":0.02,"1903":0.03,"1904":0.04,"1905":0.05,"1906":0.06,"1907":0.07,"1908":0.08,"1909":0.09,"1910":0.1,"1911":0.11,"1912":0.12,"1913":0.13,"1914":0.14,"1915":0.15,"1916":0.16,"1917":0.17,"1918":0.18,"1919":0.19,"1920":0.2,"1921":0.21,"1922":0.22,"1923":0.23,"1924":0.24,"1925":0.25,"1926":0.26,"1927":0.27,"1928":0.28,"1929":0.29,"1930":0.3,"1931":0.31,"1932":0.32,"1933":0.33,"1934":0.34,"1935":0.35,"1936":0.36,"1937":0.37,"1938":0.38,"1939":0.39,"1940":0.4,"1941":0.41,"1942":0.42,"1943":0.43,"1944":0.44,"1945":0.45,"1946":0.46,"1947":0.47,"1948":0.48,"1949":0.49,"1950":0.5,"1951":0.51,"1952":0.52,"1953":0.53,"1954":0.54,"1955":0.55,"1956":0.56,"1957":0.57,"1958":0.58,"1959":0.59,"1960":0.6,"1961":0.61,"1962":0.62,"1963":0.63,"1964":0.64,"1965":0.65,"1966":0.66,"1967":0.67,"1968":0.68,"1969":0.69,"1970":0.7,"1971":0.71,"1972":0.72,"1973":0.73,"1974":0.74,"1975":0.75,"1976":0.76,"1977":0.77,"1978":0.78,"1979":0.79,"1980":0.8,"1981":0.81,"1982":0.82,"1983":0.83,"1984":0.84,"1985":0.85,"1986":0.86,"1987":0.87,"1988":0.88,"1989":0.89,"1990":0.9,"1991":0.91,"1992":0.92,"1993":0.93,"1994":0.94,"1995":0.95,"1996":0.96,"1997":0.97,"1998":0.98,"1999":0.99,"2000":0.0,"2001":0.01,"2002":0.02,"2003":0.03,"2004":0.04,"2005":0.05,"2006":0.06,"2007":0.07,"2008":0.08,"2009":0.09,"2010":0.1,"2011":0.11,"2012":0.12,"2013":0.13,"2014":0.14,"2015":0.15,"2016":0.16,"2017":0.17,"2018":0.18,"2019":0.19,"2020":0.2,"2021":0.21,"2022":0.22,"2023":0.23,"2024":0.24,"2025":0.25,"2026":0.26,"2027":0.27,"2028":0.28,"2029":0.29,"2030":0.3,"2031":0.31,"2032":0.32,"2033":0.33,"2034":0.34,"2035":0.35,"2036":0.36,"2037":0.37,"2038":0.38,"2039":0.39,"2040":0.4,"2041":0.41,"2042":0.42,"2043":0.43,"2044":0.44,"2045":0.45,"2046":0.46,"2047":0.47,"2048":0.48,"2049":0.49,"2050":0.5,"2051":0.51,"2052":0.52,"2053":0.53,"2054":0.54,"2055":0.55,"2056":0.56,"2057":0.57,"2058":0.58,"2059":0.59,"2060":0.6,"2061":0.61,"2062":0.62,"2063":0.63,"2064":0.64,"2065":0.65,"2066":0.66,"2067":0.67,"2068":0.68,"2069":0.69,"2070":0.7,"2071":0.71,"2072":0.72,"2073":0.73,"2074":0.74,"2075":0.75,"2076":0.76,"2077":0.77,"2078":0.78,"2079":0.79,"2080":0.8,"2081":0.81,"2082":0.82,"2083":0.83,"2084":0.84,"2085":0.85,"2086":0.86,"2087":0.87,"2088":0.88,"2089":0.89,"2090":0.9,"2091":0.91,"2092":0.92,"2093":0.93,"2094":0.94,"2095":0.95,"2096":0.96,"2097":0.97,"2098":0.98,"2099":0.99,"2100":0.0,"2101":0.01,"2102":0.02,"2103":0.03,"2104":0.04,"2105":0.05,"2106":0.06,"2107":0.07,"2108":0.08,"2109":0.09,"2110":0.1,"2111":0.11,"2112":0.12,"2113":0.13,"2114":0.14,"2115":0.15,"2116":0.16,"2117":0.17,"2118":0.18,"2119":0.19,"2120":0.2,"2121":0.21,"2122":0.22,"2123":0.23,"2124":0.24,"2125":0.25,"2126":0.26,"2127":0.27,"2128":0.28,"2129":0.29,"2130":0.3,"2131":0.31,"2132":0.32,"2133":0.33,"2134":0.34,"2135":0.35,"2136":0.36,"2137":0.37,"2138":0.38,"2139":0.39,"2140":0.4,"2141":0.41,"2142":0.42,"2143":0.43,"2144":0.44,"2145":0.45,"2146":0.46,"2147":0.47,"2148":0.48,"2149":0.49,"2150":0.5,"2151":0.51,"2152":0.52,"2153":0.53,"2154":0.54,"2155":0.55,"2156":0.56,"2157":0.57,"2158":0.58,"2159":0.59,"2160":0.6,"2161":0.61,"2162":0.62,"2163":0.63,"2164":0.64,"2165":0.65,"2166":0.66,"2167":0.67,"2168":0.68,"2169":0.69,"2170":0.7,"2171":0.71,"2172":0.72,"2173":0.73,"2174":0.74,"2175":0.75,"2176":0.76,"2177":0.77,"2178":0.78,"2179":0.79,"2180":0.8,"2181":0.81,"2182":0.82,"2183":0.83,"2184":0.84,"2185":0.85,"2186":0.86,"2187":0.87,"2188":0.88,"2189":0.89,"2190":0.9,"2191":0.91,"2192":0.92,"2193":0.93,"2194":0.94,"2195":0.95,"2196":0.96,"2197":0.97,"2198":0.98,"2199":0.99,"2200":0.0,"2201":0.01,"2202":0.02,"2203":0.03,"2204":0.04,"2205":0.05,"2206":0.06,"2207":0.07,"2208":0.08,"2209":0.09,"2210":0.1,"2211":0.11,"2212":0.12,"2213":0.13,"2214":0.14,"2215":0.15,"2216":0.16,"2217":0.17,"2218":0.18,"2219":0.19,"2220":0.2,"2221":0.21,"2222":0.22,"2223":0.23,"2224":0.24,"2225":0.25,"2226":0.26,"2227":0.27,"2228":0.28,"2229":0.29,"2230":0.3,"2231":0.31,"2232":0.32,"2233":0.33,"2234":0.34,"2235":0.35,"2236":0.36,"2237":0.37,"2238":0.38,"2239":0.39,"2240":0.4,"2241":0.41,"2242":0.42,"2243":0.43,"2244":0.44,"2245":0.45,"2246":0.46,"2247":0.47,"2248":0.48,"2249":0.49,"2250":0.5,"2251":0.51,"2252":0.52,"2253":0.53,"2254":0.54,"2255":0.55,"2256":0.56,"2257":0.57,"2258":0.58,"2259":0.59,"2260":0.6,"2261":0.61,"2262":0.62,"2263":0.63,"2264":0.64,"2265":0.65,"2266":0.66,"2267":0.67,"2268":0.68,"2269":0.69,"2270":0.7,"2271":0.71,"2272":0.72,"2273":0.73,"2274":0.74,"2275":0.75,"2276":0.76,"2277":0.77,"2278":0.78,"2279":0.79,"2280":0.8,"2281":0.81,"2282":0.82,"2283":0.83,"2284":0.84,"2285":0.85,"2286":0.86,"2287":0.87,"2288":0.88,"2289":0.89,"2290":0.9,"2291":0.91,"2292":0.92,"2293":0.93,"2294":0.94,"2295":0.95,"2296":0.96,"2297":0.97,"2298":0.98,"2299":0.99},"y":{"0":21.8640231806,"1":21.8159368964,"2":21.7678506122,"3":23.5839469408,"4":25.4730427043,"5":32.5207113693,"6":39.9803998353,"7":55.2112275512,"8":71.3910645463,"9":88.9826533931,"10":106.8035562326,"11":119.0197382706,"12":128.6862178169,"13":129.0865351187,"14":128.1207508393,"15":121.563489846,"16":113.9308373446,"17":105.032471564,"18":95.8375735905,"19":88.0433512906,"20":80.6604039517,"21":75.5061145151,"22":70.6734905615,"23":68.2372517487,"24":66.3477886162,"25":65.350481945,"26":64.6546608474,"27":63.8984525102,"28":63.1152041691,"29":61.2453955466,"30":58.8829843344,"31":55.685387737,"32":52.0724923408,"33":48.1174599661,"34":44.5521555575,"35":41.699303444,"36":39.2280054839,"37":37.6017880471,"38":36.4811809904,"39":35.9782982642,"40":35.8800516873,"41":36.0597662465,"42":36.4319145922,"43":36.8347325079,"44":37.2934580668,"45":37.5587723815,"46":37.7006723213,"47":37.6583627502,"48":37.4522094551,"49":37.1211139839,"50":36.6709385414,"51":36.1768056025,"52":35.6407291997,"53":35.1205431828,"54":34.6226238968,"55":34.1214348778,"56":33.7235519957,"57":33.3649858768,"58":33.0587218739,"59":32.7782049396,"60":32.5339855697,"61":32.2962902577,"62":32.0669435703,"63":31.8315605924,"64":31.5846435277,"65":31.3282255126,"66":31.027464563,"67":30.7466828544,"68":30.4538423518,"69":30.1595473052,"70":29.8622093743,"71":29.5627953307,"72":29.2583743658,"73":28.946564759,"74":28.614722408,"75":28.2700341397,"76":27.8892940086,"77":27.4548320733,"78":27.0170929646,"79":26.5733826063,"80":26.1065432432,"81":25.6420935086,"82":25.1901254316,"83":24.7486168732,"84":24.3583028212,"85":23.9835200024,"86":23.6844904822,"87":23.4017587485,"88":23.173873837,"89":22.9797397862,"90":22.8406306312,"91":22.7039850627,"92":22.5892079023,"93":22.4752671799,"94":22.3647420788,"95":22.2545915479,"96":22.1493949211,"97":22.0449025999,"98":21.9579521079,"99":21.8640231806,"100":50.0930464481,"101":49.6877940677,"102":49.2812383933,"103":49.1645772934,"104":49.1310146447,"105":49.9796947263,"106":51.1683580242,"107":53.8654897644,"108":57.299774658,"109":61.579965939,"110":66.5580142675,"111":71.3167236964,"112":76.0964251179,"113":79.7254265425,"114":83.0644326627,"115":85.3847957793,"116":87.179162323,"117":88.375506274,"118":89.0881797865,"119":89.581466457,"120":89.7687213085,"121":89.9638906694,"122":89.9666578443,"123":90.125355681,"124":90.2509568297,"125":90.4271542688,"126":90.5993151112,"127":90.7259952062,"128":90.8114051133,"129":90.6899289638,"130":90.4130068054,"131":89.9081561709,"132":89.2108617512,"133":88.3187473127,"134":87.3365756916,"135":86.3339486533,"136":85.2918679442,"137":84.3018556767,"138":83.3467799853,"139":82.4667760359,"140":81.6539812778,"141":80.9053319278,"142":80.2182045363,"143":79.5741581663,"144":78.9771456192,"145":78.3888277483,"146":77.8111088029,"147":77.2280326089,"148":76.6345075521,"149":76.0293381129,"150":75.4080884584,"151":74.7776689249,"152":74.136690666,"153":73.4927847042,"154":72.8478291352,"155":72.1990687138,"156":71.5633367455,"157":70.9349167507,"158":70.3176822496,"159":69.7095697827,"160":69.1132358473,"161":68.5253367786,"162":67.9463015002,"163":67.3740452443,"164":66.8073326312,"165":66.245853726,"166":65.6835852485,"167":65.1285850172,"168":64.5762941746,"169":64.0276599991,"170":63.4820821596,"171":62.9405565741,"172":62.4051284623,"173":61.8779635451,"174":61.3591285584,"175":60.8508113995,"176":60.350072512,"177":59.8531922492,"178":59.3655697836,"179":58.8855277005,"180":58.4084627981,"181":57.935228419,"182":57.464915806,"183":56.9950177737,"184":56.5296968417,"185":56.0631130452,"186":55.6036740366,"187":55.1441620431,"188":54.6912116077,"189":54.2440907364,"190":53.8082262953,"191":53.3783317024,"192":52.9576814517,"193":52.5427229936,"194":52.1321493285,"195":51.7237998196,"196":51.3167881799,"197":50.9092394432,"198":50.5026662853,"199":50.0930464481,"200":31.3592037268,"201":31.3383893823,"202":31.3217262025,"203":31.3320635607,"204":31.3864657459,"205":31.5635337415,"206":31.9256730352,"207":32.5996651131,"208":33.6854439526,"209":35.2120661289,"210":37.1829119057,"211":39.495406578,"212":42.0383373626,"213":44.6613494423,"214":47.1981311598,"215":49.5392106547,"216":51.5963380561,"217":53.3377878131,"218":54.7509113363,"219":55.8634137859,"220":56.7090777376,"221":57.3398508306,"222":57.7966617991,"223":58.1312075307,"224":58.387084607,"225":58.591868392,"226":58.7637126951,"227":58.9078683697,"228":59.0241508934,"229":59.0981899544,"230":59.1078644975,"231":59.0311081054,"232":58.8521715637,"233":58.5621130154,"234":58.1674267651,"235":57.6870897307,"236":57.1397029398,"237":56.5471297276,"238":55.9303599849,"239":55.3079726677,"240":54.6952715445,"241":54.1033388007,"242":53.5396050689,"243":53.0101897871,"244":52.5195974402,"245":52.0653436336,"246":51.6405659244,"247":51.236846107,"248":50.8452534271,"249":50.4581031034,"250":50.0692789137,"251":49.675036165,"252":49.2734399512,"253":48.8640527599,"254":48.4473948885,"255":48.0238044675,"256":47.5952364086,"257":47.1643116501,"258":46.733515729,"259":46.3049940068,"260":45.8804075674,"261":45.4603961668,"262":45.0447247513,"263":44.6327923685,"264":44.2241903287,"265":43.8192761794,"266":43.41862411,"267":43.0236521777,"268":42.6355331979,"269":42.2542021619,"270":41.878417467,"271":41.454648514,"272":40.9528917849,"273":40.3953134906,"274":39.7833544775,"275":39.1345427159,"276":38.4635692987,"277":37.7897384708,"278":37.1315184978,"279":36.50678097,"280":35.9293760173,"281":35.4094967744,"282":34.9534671466,"283":34.562919075,"284":34.2339060325,"285":33.9551525191,"286":33.7095926794,"287":33.4773630103,"288":33.2414122607,"289":32.9916545809,"290":32.7253581346,"291":32.4430871608,"292":32.1732323507,"293":31.9449497767,"294":31.7621353269,"295":31.6205815395,"296":31.5153302396,"297":31.440956356,"298":31.3911344545,"299":31.3592037268,"300":4.6219469039,"301":4.2513797018,"302":3.873878265,"303":3.499553484,"304":3.1387610726,"305":2.801761909,"306":2.4984266606,"307":2.2379903898,"308":2.0288139972,"309":1.878156295,"310":1.7920145714,"311":1.7750070133,"312":1.8084706685,"313":1.8257232351,"314":1.8532211753,"315":1.8776743867,"316":1.9055751062,"317":1.9334650747,"318":1.9628318541,"319":1.9926860881,"320":2.0232923188,"321":2.0543173857,"322":2.0857615442,"323":2.1174948673,"324":2.1494897912,"325":2.1816989553,"326":2.214106738,"327":2.2466939829,"328":2.2794477969,"329":2.3083868997,"330":2.3352745862,"331":2.3635206256,"332":2.3936425204,"333":2.4255782774,"334":2.4570968622,"335":2.4887627701,"336":2.5207381407,"337":2.5527029447,"338":2.5845952739,"339":2.6163076237,"340":2.6478054927,"341":2.6779867094,"342":2.7056224356,"343":2.7256726254,"344":2.7325940159,"345":2.7248652517,"346":2.7043087536,"347":2.6745434816,"348":2.6398599385,"349":2.6042678989,"350":2.5708415632,"351":2.5414926634,"352":2.5171868044,"353":2.4983896886,"354":2.4854182134,"355":2.4784843549,"356":2.4774717763,"357":2.4816933654,"358":2.4899090087,"359":2.5007076586,"360":2.5130771788,"361":2.526800406,"362":2.5423803299,"363":2.5604771899,"364":2.5811475482,"365":2.6033237077,"366":2.6248777992,"367":2.6433148398,"368":2.6567831949,"369":2.6648956951,"370":2.6689492952,"371":2.7424229981,"372":2.9284541567,"373":3.199460161,"374":3.5552495682,"375":3.9732699062,"376":4.4337667872,"377":4.9092054273,"378":5.3731658243,"379":5.8000896717,"380":6.1688882745,"381":6.4631647749,"382":6.6720783003,"383":6.7911792652,"384":6.8245186765,"385":6.7863359385,"386":6.7001088781,"387":6.5935403675,"388":6.4912228943,"389":6.4089358043,"390":6.3529575718,"391":6.3242876878,"392":6.2850861702,"393":6.1950726384,"394":6.0473094129,"395":5.8457511406,"396":5.5956228138,"397":5.3029785382,"398":4.9756524013,"399":4.6219469039,"400":31.3592037268,"401":31.3383893823,"402":31.3217262025,"403":31.3320635607,"404":31.3864657459,"405":31.5635337415,"406":31.9256730352,"407":32.5996651131,"408":33.6854439526,"409":35.2120661289,"410":37.1829119057,"411":39.495406578,"412":42.0383373626,"413":44.6613494423,"414":47.1981311598,"415":49.5392106547,"416":51.5963380561,"417":53.3377878131,"418":54.7509113363,"419":55.8634137859,"420":56.7090777376,"421":57.3398508306,"422":57.7966617991,"423":58.1312075307,"424":58.387084607,"425":58.591868392,"426":58.7637126951,"427":58.9078683697,"428":59.0241508934,"429":59.0981899544,"430":59.1078644975,"431":59.0311081054,"432":58.8521715637,"433":58.5621130154,"434":58.1674267651,"435":57.6870897307,"436":57.1397029398,"437":56.5471297276,"438":55.9303599849,"439":55.3079726677,"440":54.6952715445,"441":54.1033388007,"442":53.5396050689,"443":53.0101897871,"444":52.5195974402,"445":52.0653436336,"446":51.6405659244,"447":51.236846107,"448":50.8452534271,"449":50.4581031034,"450":50.0692789137,"451":49.675036165,"452":49.2734399512,"453":48.8640527599,"454":48.4473948885,"455":48.0238044675,"456":47.5952364086,"457":47.1643116501,"458":46.733515729,"459":46.3049940068,"460":45.8804075674,"461":45.4603961668,"462":45.0447247513,"463":44.6327923685,"464":44.2241903287,"465":43.8192761794,"466":43.41862411,"467":43.0236521777,"468":42.6355331979,"469":42.2542021619,"470":41.878417467,"471":41.454648514,"472":40.9528917849,"473":40.3953134906,"474":39.7833544775,"475":39.1345427159,"476":38.4635692987,"477":37.7897384708,"478":37.1315184978,"479":36.50678097,"480":35.9293760173,"481":35.4094967744,"482":34.9534671466,"483":34.562919075,"484":34.2339060325,"485":33.9551525191,"486":33.7095926794,"487":33.4773630103,"488":33.2414122607,"489":32.9916545809,"490":32.7253581346,"491":32.4430871608,"492":32.1732323507,"493":31.9449497767,"494":31.7621353269,"495":31.6205815395,"496":31.5153302396,"497":31.440956356,"498":31.3911344545,"499":31.3592037268,"500":4.6219469039,"501":4.2513797018,"502":3.873878265,"503":3.499553484,"504":3.1387610726,"505":2.801761909,"506":2.4984266606,"507":2.2379903898,"508":2.0288139972,"509":1.878156295,"510":1.7920145714,"511":1.7750070133,"512":1.8084706685,"513":1.8257232351,"514":1.8532211753,"515":1.8776743867,"516":1.9055751062,"517":1.9334650747,"518":1.9628318541,"519":1.9926860881,"520":2.0232923188,"521":2.0543173857,"522":2.0857615442,"523":2.1174948673,"524":2.1494897912,"525":2.1816989553,"526":2.214106738,"527":2.2466939829,"528":2.2794477969,"529":2.3083868997,"530":2.3352745862,"531":2.3635206256,"532":2.3936425204,"533":2.4255782774,"534":2.4570968622,"535":2.4887627701,"536":2.5207381407,"537":2.5527029447,"538":2.5845952739,"539":2.6163076237,"540":2.6478054927,"541":2.6779867094,"542":2.7056224356,"543":2.7256726254,"544":2.7325940159,"545":2.7248652517,"546":2.7043087536,"547":2.6745434816,"548":2.6398599385,"549":2.6042678989,"550":2.5708415632,"551":2.5414926634,"552":2.5171868044,"553":2.4983896886,"554":2.4854182134,"555":2.4784843549,"556":2.4774717763,"557":2.4816933654,"558":2.4899090087,"559":2.5007076586,"560":2.5130771788,"561":2.526800406,"562":2.5423803299,"563":2.5604771899,"564":2.5811475482,"565":2.6033237077,"566":2.6248777992,"567":2.6433148398,"568":2.6567831949,"569":2.6648956951,"570":2.6689492952,"571":2.7424229981,"572":2.9284541567,"573":3.199460161,"574":3.5552495682,"575":3.9732699062,"576":4.4337667872,"577":4.9092054273,"578":5.3731658243,"579":5.8000896717,"580":6.1688882745,"581":6.4631647749,"582":6.6720783003,"583":6.7911792652,"584":6.8245186765,"585":6.7863359385,"586":6.7001088781,"587":6.5935403675,"588":6.4912228943,"589":6.4089358043,"590":6.3529575718,"591":6.3242876878,"592":6.2850861702,"593":6.1950726384,"594":6.0473094129,"595":5.8457511406,"596":5.5956228138,"597":5.3029785382,"598":4.9756524013,"599":4.6219469039,"600":21.8640231806,"601":21.8159368964,"602":21.7678506122,"603":23.5839469408,"604":25.4730427043,"605":32.5207113693,"606":39.9803998353,"607":55.2112275512,"608":71.3910645463,"609":88.9826533931,"610":106.8035562326,"611":119.0197382706,"612":128.6862178169,"613":129.0865351187,"614":128.1207508393,"615":121.563489846,"616":113.9308373446,"617":105.032471564,"618":95.8375735905,"619":88.0433512906,"620":80.6604039517,"621":75.5061145151,"622":70.6734905615,"623":68.2372517487,"624":66.3477886162,"625":65.350481945,"626":64.6546608474,"627":63.8984525102,"628":63.1152041691,"629":61.2453955466,"630":58.8829843344,"631":55.685387737,"632":52.0724923408,"633":48.1174599661,"634":44.5521555575,"635":41.699303444,"636":39.2280054839,"637":37.6017880471,"638":36.4811809904,"639":35.9782982642,"640":35.8800516873,"641":36.0597662465,"642":36.4319145922,"643":36.8347325079,"644":37.2934580668,"645":37.5587723815,"646":37.7006723213,"647":37.6583627502,"648":37.4522094551,"649":37.1211139839,"650":36.6709385414,"651":36.1768056025,"652":35.6407291997,"653":35.1205431828,"654":34.6226238968,"655":34.1214348778,"656":33.7235519957,"657":33.3649858768,"658":33.0587218739,"659":32.7782049396,"660":32.5339855697,"661":32.2962902577,"662":32.0669435703,"663":31.8315605924,"664":31.5846435277,"665":31.3282255126,"666":31.027464563,"667":30.7466828544,"668":30.4538423518,"669":30.1595473052,"670":29.8622093743,"671":29.5627953307,"672":29.2583743658,"673":28.946564759,"674":28.614722408,"675":28.2700341397,"676":27.8892940086,"677":27.4548320733,"678":27.0170929646,"679":26.5733826063,"680":26.1065432432,"681":25.6420935086,"682":25.1901254316,"683":24.7486168732,"684":24.3583028212,"685":23.9835200024,"686":23.6844904822,"687":23.4017587485,"688":23.173873837,"689":22.9797397862,"690":22.8406306312,"691":22.7039850627,"692":22.5892079023,"693":22.4752671799,"694":22.3647420788,"695":22.2545915479,"696":22.1493949211,"697":22.0449025999,"698":21.9579521079,"699":21.8640231806,"700":82.329258581,"701":81.939227797,"702":81.5487327704,"703":81.1569122676,"704":80.7335396586,"705":80.2384514634,"706":79.61261265,"707":78.7676409688,"708":78.8648802451,"709":80.9298318669,"710":83.8758886132,"711":86.3404742924,"712":88.1521570848,"713":89.7080125988,"714":91.2250282032,"715":92.7175321471,"716":94.5073289831,"717":96.4442440312,"718":98.2657448332,"719":99.9977424629,"720":101.6962805056,"721":103.3523034725,"722":104.9295581911,"723":106.3673312189,"724":107.6197066208,"725":108.676384758,"726":109.5479962309,"727":110.2335192115,"728":110.6747508921,"729":110.7402952894,"730":110.2273782267,"731":109.2865632483,"732":111.8344377751,"733":112.5187244213,"734":113.7177458475,"735":113.9781458724,"736":114.2783469024,"737":114.1375891321,"738":113.9186713563,"739":113.5398699925,"740":113.0745177987,"741":112.5668839206,"742":111.9765668299,"743":111.3614700208,"744":110.7321088376,"745":110.0900606555,"746":109.436979344,"747":108.7794984056,"748":108.1222185554,"749":107.4682808071,"750":106.8202801981,"751":106.1797313206,"752":105.5476119267,"753":104.9243207863,"754":104.309788459,"755":103.7040126478,"756":103.1060387289,"757":102.5146162314,"758":101.9287444937,"759":101.347739871,"760":100.7711315302,"761":100.1987718654,"762":99.6306875908,"763":99.0669218403,"764":98.5074866829,"765":97.9522930444,"766":97.4015643671,"767":96.8553053936,"768":96.313568363,"769":95.7766588982,"770":95.2449228904,"771":94.7186573922,"772":94.1980962711,"773":93.683409559,"774":93.1748322701,"775":92.6726303015,"776":92.1708637855,"777":91.6738303488,"778":91.184747729,"779":90.7035574098,"780":90.2305576619,"781":89.7659017404,"782":89.3094719693,"783":88.8610664105,"784":88.4201050978,"785":87.9860398714,"786":87.5579835378,"787":87.1351946712,"788":86.7169587978,"789":86.3025311985,"790":85.8913116859,"791":85.4864407123,"792":85.0866769968,"793":84.689143785,"794":84.2930210596,"795":83.8980117259,"796":83.5040126612,"797":83.1111910847,"798":82.7196151224,"799":82.329258581,"800":21.8640231806,"801":21.8159368964,"802":21.7678506122,"803":23.5839469408,"804":25.4730427043,"805":32.5207113693,"806":39.9803998353,"807":55.2112275512,"808":71.3910645463,"809":88.9826533931,"810":106.8035562326,"811":119.0197382706,"812":128.6862178169,"813":129.0865351187,"814":128.1207508393,"815":121.563489846,"816":113.9308373446,"817":105.032471564,"818":95.8375735905,"819":88.0433512906,"820":80.6604039517,"821":75.5061145151,"822":70.6734905615,"823":68.2372517487,"824":66.3477886162,"825":65.350481945,"826":64.6546608474,"827":63.8984525102,"828":63.1152041691,"829":61.2453955466,"830":58.8829843344,"831":55.685387737,"832":52.0724923408,"833":48.1174599661,"834":44.5521555575,"835":41.699303444,"836":39.2280054839,"837":37.6017880471,"838":36.4811809904,"839":35.9782982642,"840":35.8800516873,"841":36.0597662465,"842":36.4319145922,"843":36.8347325079,"844":37.2934580668,"845":37.5587723815,"846":37.7006723213,"847":37.6583627502,"848":37.4522094551,"849":37.1211139839,"850":36.6709385414,"851":36.1768056025,"852":35.6407291997,"853":35.1205431828,"854":34.6226238968,"855":34.1214348778,"856":33.7235519957,"857":33.3649858768,"858":33.0587218739,"859":32.7782049396,"860":32.5339855697,"861":32.2962902577,"862":32.0669435703,"863":31.8315605924,"864":31.5846435277,"865":31.3282255126,"866":31.027464563,"867":30.7466828544,"868":30.4538423518,"869":30.1595473052,"870":29.8622093743,"871":29.5627953307,"872":29.2583743658,"873":28.946564759,"874":28.614722408,"875":28.2700341397,"876":27.8892940086,"877":27.4548320733,"878":27.0170929646,"879":26.5733826063,"880":26.1065432432,"881":25.6420935086,"882":25.1901254316,"883":24.7486168732,"884":24.3583028212,"885":23.9835200024,"886":23.6844904822,"887":23.4017587485,"888":23.173873837,"889":22.9797397862,"890":22.8406306312,"891":22.7039850627,"892":22.5892079023,"893":22.4752671799,"894":22.3647420788,"895":22.2545915479,"896":22.1493949211,"897":22.0449025999,"898":21.9579521079,"899":21.8640231806,"900":82.329258581,"901":81.939227797,"902":81.5487327704,"903":81.1569122676,"904":80.7335396586,"905":80.2384514634,"906":79.61261265,"907":78.7676409688,"908":78.8648802451,"909":80.9298318669,"910":83.8758886132,"911":86.3404742924,"912":88.1521570848,"913":89.7080125988,"914":91.2250282032,"915":92.7175321471,"916":94.5073289831,"917":96.4442440312,"918":98.2657448332,"919":99.9977424629,"920":101.6962805056,"921":103.3523034725,"922":104.9295581911,"923":106.3673312189,"924":107.6197066208,"925":108.676384758,"926":109.5479962309,"927":110.2335192115,"928":110.6747508921,"929":110.7402952894,"930":110.2273782267,"931":109.2865632483,"932":111.8344377751,"933":112.5187244213,"934":113.7177458475,"935":113.9781458724,"936":114.2783469024,"937":114.1375891321,"938":113.9186713563,"939":113.5398699925,"940":113.0745177987,"941":112.5668839206,"942":111.9765668299,"943":111.3614700208,"944":110.7321088376,"945":110.0900606555,"946":109.436979344,"947":108.7794984056,"948":108.1222185554,"949":107.4682808071,"950":106.8202801981,"951":106.1797313206,"952":105.5476119267,"953":104.9243207863,"954":104.309788459,"955":103.7040126478,"956":103.1060387289,"957":102.5146162314,"958":101.9287444937,"959":101.347739871,"960":100.7711315302,"961":100.1987718654,"962":99.6306875908,"963":99.0669218403,"964":98.5074866829,"965":97.9522930444,"966":97.4015643671,"967":96.8553053936,"968":96.313568363,"969":95.7766588982,"970":95.2449228904,"971":94.7186573922,"972":94.1980962711,"973":93.683409559,"974":93.1748322701,"975":92.6726303015,"976":92.1708637855,"977":91.6738303488,"978":91.184747729,"979":90.7035574098,"980":90.2305576619,"981":89.7659017404,"982":89.3094719693,"983":88.8610664105,"984":88.4201050978,"985":87.9860398714,"986":87.5579835378,"987":87.1351946712,"988":86.7169587978,"989":86.3025311985,"990":85.8913116859,"991":85.4864407123,"992":85.0866769968,"993":84.689143785,"994":84.2930210596,"995":83.8980117259,"996":83.5040126612,"997":83.1111910847,"998":82.7196151224,"999":82.329258581,"1000":47.1598430641,"1001":46.761041777,"1002":46.3609371958,"1003":46.0006347564,"1004":45.7136374108,"1005":45.6168261066,"1006":45.804722836,"1007":46.4585382557,"1008":47.7221909545,"1009":49.6423541881,"1010":52.2296104797,"1011":55.3494382538,"1012":58.832317481,"1013":62.4076136907,"1014":65.8761861626,"1015":69.0762492308,"1016":71.8945866129,"1017":74.2847052138,"1018":76.2309351321,"1019":77.7698682985,"1020":78.9475943885,"1021":79.8342457832,"1022":80.485341439,"1023":80.970876833,"1024":81.3499619635,"1025":81.6599546917,"1026":81.9254645387,"1027":82.1535949859,"1028":82.3440828407,"1029":82.4734538904,"1030":82.5134648282,"1031":82.4375929358,"1032":82.22499234,"1033":81.863471665,"1034":81.3596092219,"1035":80.739711172,"1036":80.0291714368,"1037":79.2573269992,"1038":78.4525881595,"1039":77.6400492553,"1040":76.8404349257,"1041":76.0676756784,"1042":75.3306221238,"1043":74.6325350649,"1044":73.9739814487,"1045":73.3500699069,"1046":72.7533141456,"1047":72.1759140606,"1048":71.6100458324,"1049":71.0492950415,"1050":70.4884394015,"1051":69.9243110714,"1052":69.3552510092,"1053":68.7811314436,"1054":68.2029750416,"1055":67.6214524434,"1056":67.0390990966,"1057":66.4587831192,"1058":65.8826359606,"1059":65.3121566967,"1060":64.7485864058,"1061":64.192575736,"1062":63.6443088333,"1063":63.1036307614,"1064":62.5700437064,"1065":62.0429649746,"1066":61.5210455687,"1067":61.0037140615,"1068":60.49070971,"1069":59.9815571624,"1070":59.4758691738,"1071":58.9745119635,"1072":58.4799239384,"1073":57.9945903433,"1074":57.5202742037,"1075":57.0581992568,"1076":56.6085391773,"1077":56.169944858,"1078":55.7410479903,"1079":55.3205325878,"1080":54.906097275,"1081":54.4951719011,"1082":54.0854937963,"1083":53.6748270586,"1084":53.2618693393,"1085":52.8455651379,"1086":52.4262429181,"1087":52.0046612575,"1088":51.582283091,"1089":51.1612065871,"1090":50.7440045596,"1091":50.332441874,"1092":49.9271897388,"1093":49.5275171826,"1094":49.1317711911,"1095":48.7381991048,"1096":48.3453002887,"1097":47.9517698883,"1098":47.5568617143,"1099":47.1598430641,"1100":37.7603678227,"1101":38.0725172239,"1102":38.3856828135,"1103":38.6989825576,"1104":39.0125187374,"1105":39.3271554677,"1106":39.6444222927,"1107":39.9668368944,"1108":40.2980307911,"1109":40.64227913,"1110":41.0040117106,"1111":41.3871472066,"1112":41.7945573447,"1113":42.2277730242,"1114":42.686758456,"1115":43.1701232316,"1116":43.6754613275,"1117":44.1997908386,"1118":44.7399045538,"1119":45.2926743691,"1120":45.8552610618,"1121":46.4252613083,"1122":47.0007257191,"1123":47.5801777834,"1124":48.162609163,"1125":48.7473659125,"1126":49.3340247159,"1127":49.9222776823,"1128":50.5118457571,"1129":51.0312945625,"1130":51.5128109605,"1131":52.0174666247,"1132":52.5542815978,"1133":53.1219036851,"1134":53.6805515687,"1135":54.2403216282,"1136":54.8040174428,"1137":55.3659952864,"1138":55.9251794881,"1139":56.4797112576,"1140":57.0290241565,"1141":57.553992687,"1142":58.0335096807,"1143":58.3806574356,"1144":58.5003361676,"1145":58.3666655818,"1146":58.0107177577,"1147":57.4941938669,"1148":56.890641338,"1149":56.2693972545,"1150":55.6842188892,"1151":55.1690374522,"1152":54.7413997398,"1153":54.4100724302,"1154":54.1811185556,"1155":54.0586265311,"1156":54.0407311513,"1157":54.1153200696,"1158":54.2603982547,"1159":54.4509296314,"1160":54.6689585018,"1161":54.9105797393,"1162":55.1845529753,"1163":55.502335115,"1164":55.8647101951,"1165":56.2527682276,"1166":56.6292262426,"1167":56.9506832214,"1168":57.1851861324,"1169":57.326308421,"1170":57.3967905112,"1171":57.4321837097,"1172":57.4502923257,"1173":57.4324555824,"1174":57.3248003891,"1175":57.0521857888,"1176":56.5390097469,"1177":55.7299895986,"1178":54.6032201274,"1179":53.1716554765,"1180":51.4746223059,"1181":49.5652848143,"1182":47.5017407016,"1183":45.3472536515,"1184":43.1783753371,"1185":41.0918417169,"1186":39.1995193297,"1187":37.6089626189,"1188":36.3993075599,"1189":35.6079002526,"1190":35.2376386945,"1191":35.2815422216,"1192":35.559790855,"1193":35.8789531128,"1194":36.1948766859,"1195":36.5093531935,"1196":36.8235424675,"1197":37.1360092927,"1198":37.4486440644,"1199":37.7603678227,"1200":0.3723922019,"1201":-0.0346642615,"1202":-0.0000000001,"1203":0.0009754774,"1204":0.0112112679,"1205":0.0195665687,"1206":0.0270467593,"1207":0.0340394172,"1208":0.0363230273,"1209":0.0362588016,"1210":0.0368278936,"1211":0.0325651592,"1212":0.0307177883,"1213":0.0288592812,"1214":0.0271697805,"1215":0.0254454453,"1216":0.0257715452,"1217":0.0248337131,"1218":0.0228287919,"1219":0.0211301577,"1220":0.0195090433,"1221":0.017943243,"1222":0.0163752997,"1223":0.0147934591,"1224":0.0132342265,"1225":0.0117550269,"1226":0.0103849092,"1227":0.0090881699,"1228":0.0077627633,"1229":13.3338193239,"1230":9.8626773263,"1231":7.0375859683,"1232":3.5795956314,"1233":0.2733666278,"1234":4.2420106805,"1235":0.2785106199,"1236":1.3452936103,"1237":0.1842451075,"1238":0.3206399871,"1239":0.0642994832,"1240":0.050264825,"1241":3.5284306415,"1242":8.1800086988,"1243":27.9414218877,"1244":53.4704613648,"1245":77.9569540636,"1246":97.2641035031,"1247":109.3366788494,"1248":113.8752813713,"1249":112.0196024611,"1250":105.7678691895,"1251":97.1267791986,"1252":87.3984243137,"1253":77.0364173896,"1254":66.0974097713,"1255":54.8837233152,"1256":44.2716484667,"1257":35.4585744435,"1258":29.2709057861,"1259":25.5289731833,"1260":22.9967410483,"1261":20.0580032115,"1262":15.7372561742,"1263":10.4327116556,"1264":5.8889804235,"1265":4.3545596732,"1266":7.3290890456,"1267":14.5890072802,"1268":24.0686293585,"1269":32.6754789547,"1270":37.5913888949,"1271":38.8570547769,"1272":39.8996322169,"1273":44.7632877712,"1274":56.5329217084,"1275":76.445289215,"1276":103.4089863631,"1277":134.4520141657,"1278":165.8404199491,"1279":194.3045378096,"1280":217.8317876966,"1281":235.6971694564,"1282":247.7048686155,"1283":253.0888255559,"1284":249.9780975085,"1285":236.1374749962,"1286":210.6466806937,"1287":175.1861671679,"1288":133.7545363236,"1289":90.8022643149,"1290":48.888283546,"1291":7.4804064243,"1292":-0.7228193039,"1293":0.804424535,"1294":-0.0775811526,"1295":0.4339501646,"1296":-0.0414671669,"1297":0.4247840954,"1298":-0.040019567,"1299":0.3723922019,"1300":8.4545833081,"1301":9.8863204042,"1302":12.6850036344,"1303":16.6817503512,"1304":21.2003572609,"1305":25.3052230545,"1306":28.2338358718,"1307":29.7216156399,"1308":30.0064493947,"1309":29.5811405206,"1310":28.9132538123,"1311":28.2881602889,"1312":27.7930371576,"1313":27.3836902601,"1314":26.9725687422,"1315":26.496240126,"1316":25.9428173701,"1317":25.341373541,"1318":24.7306004757,"1319":24.1295281832,"1320":23.5284944112,"1321":22.9035926055,"1322":22.2400977172,"1323":21.5451141611,"1324":20.8414987611,"1325":20.1501465479,"1326":19.4729186203,"1327":18.7857635122,"1328":18.0465341524,"1329":17.2131672084,"1330":16.2127526968,"1331":15.0340684198,"1332":13.7208237608,"1333":12.3264749053,"1334":10.5846398414,"1335":8.9443446989,"1336":7.3929207318,"1337":6.0599954183,"1338":4.9507008518,"1339":4.0606082274,"1340":3.3466660993,"1341":2.772685686,"1342":2.3103082407,"1343":1.9634293194,"1344":1.7357049271,"1345":1.6163758272,"1346":1.589571321,"1347":1.6347170584,"1348":1.7230571874,"1349":1.8222692237,"1350":1.9092122414,"1351":1.9799281052,"1352":2.0463718316,"1353":2.1219443474,"1354":2.2077470048,"1355":2.289481227,"1356":2.3465809222,"1357":2.3677461792,"1358":2.362254944,"1359":2.3573291215,"1360":2.3814062385,"1361":2.4445803739,"1362":2.5295818184,"1363":2.5988902379,"1364":2.6142381336,"1365":2.5586834775,"1366":2.4489229889,"1367":2.3293247339,"1368":2.2505542095,"1369":2.2458931957,"1370":2.3177277719,"1371":2.4394660652,"1372":2.5711741962,"1373":2.6816787956,"1374":2.7661731142,"1375":2.8485709189,"1376":2.9663583925,"1377":3.1482310144,"1378":3.3985855576,"1379":3.6953983677,"1380":4.0004343379,"1381":4.2789720725,"1382":4.5219996192,"1383":4.7557343387,"1384":5.023891046,"1385":5.3510918741,"1386":5.718549454,"1387":6.0755132111,"1388":6.3771165614,"1389":6.6210008354,"1390":6.8590720324,"1391":7.1676582172,"1392":7.6046106866,"1393":8.1295592696,"1394":8.5839397229,"1395":8.7881113386,"1396":8.6672327538,"1397":8.3339863977,"1398":8.1050311911,"1399":8.4545833081,"1400":60.3440281393,"1401":60.3102096714,"1402":59.9341441153,"1403":58.8446212992,"1404":56.8666319763,"1405":54.0501530316,"1406":50.64907758,"1407":47.0418880808,"1408":43.5957445201,"1409":40.551616094,"1410":37.9848690618,"1411":35.8405128369,"1412":34.0038209133,"1413":32.3637087614,"1414":30.8467053369,"1415":29.4212010245,"1416":28.0831091432,"1417":26.83664302,"1418":25.6811623392,"1419":24.6084833467,"1420":23.608030938,"1421":22.6734541937,"1422":21.8051127087,"1423":21.0070703556,"1424":20.2816824513,"1425":19.6262877177,"1426":19.0344945413,"1427":18.5012555718,"1428":18.0285646298,"1429":17.6278153547,"1430":17.2941929639,"1431":17.039998996,"1432":16.8870926158,"1433":16.8476034968,"1434":16.7107053905,"1435":16.6461937652,"1436":16.5866821375,"1437":16.5523948983,"1438":16.529396717,"1439":16.5158030692,"1440":16.5095352794,"1441":16.5237985623,"1442":16.5818293771,"1443":16.7674042691,"1444":17.1750382209,"1445":17.8313492148,"1446":18.7055768058,"1447":19.7362541549,"1448":20.8499938468,"1449":21.9775394628,"1450":23.0651461438,"1451":24.0788472477,"1452":25.0010318638,"1453":25.822856996,"1454":26.5381833646,"1455":27.1428505255,"1456":27.6386643842,"1457":28.0377009703,"1458":28.3619445207,"1459":28.6364431188,"1460":28.8791828705,"1461":29.0941102027,"1462":29.2725089554,"1463":29.4029622542,"1464":29.4847219703,"1465":29.536734435,"1466":29.5963234526,"1467":29.7069406503,"1468":29.9006014487,"1469":30.1837993138,"1470":30.5338538791,"1471":30.9149821345,"1472":31.3087577541,"1473":31.7331837564,"1474":32.2415686043,"1475":32.9086006051,"1476":33.8097069103,"1477":34.9999941408,"1478":36.501273489,"1479":38.3009858024,"1480":40.3601005299,"1481":42.6260862758,"1482":45.0413391726,"1483":47.5433580007,"1484":50.056106351,"1485":52.4835264299,"1486":54.7140404392,"1487":56.6404573,"1488":58.1837016409,"1489":59.306270599,"1490":60.0051124426,"1491":60.2869130659,"1492":60.3313507161,"1493":60.3324520528,"1494":60.3348612817,"1495":60.337122283,"1496":60.3384763359,"1497":60.3406694576,"1498":60.3420922716,"1499":60.3440281393,"1500":0.0100494704,"1501":6.5838436876,"1502":65.2698941778,"1503":151.4731067546,"1504":243.9517101051,"1505":320.4754366539,"1506":361.9056595561,"1507":361.9298196362,"1508":329.0924134693,"1509":280.510686712,"1510":232.7182618959,"1511":195.5523300526,"1512":171.1336885006,"1513":156.442922968,"1514":146.7797112063,"1515":138.3390750815,"1516":129.3726460242,"1517":119.9903954753,"1518":111.1156556783,"1519":103.3947494431,"1520":96.682971889,"1521":90.2611804694,"1522":83.4679287072,"1523":76.1981776329,"1524":68.9037820004,"1525":62.1639201763,"1526":56.1741058922,"1527":50.481876801,"1528":44.1200568653,"1529":49.4697274714,"1530":40.2809917346,"1531":27.7575031655,"1532":13.4573199237,"1533":-1.646137902,"1534":30.8413210261,"1535":-8.6113148513,"1536":17.1629076316,"1537":-4.7503691649,"1538":6.8987812257,"1539":-1.8689474326,"1540":2.0239488226,"1541":-0.4012650636,"1542":-0.0000219819,"1543":0.0321014214,"1544":0.0343650877,"1545":0.0257959155,"1546":0.0249501411,"1547":0.023084125,"1548":0.0220716228,"1549":0.0211694383,"1550":0.0203913624,"1551":0.0196577598,"1552":0.0190083041,"1553":0.0184783636,"1554":0.0180662326,"1555":0.0177201172,"1556":0.0173704963,"1557":0.016973626,"1558":0.0165384217,"1559":0.016120465,"1560":0.015784737,"1561":0.0155572258,"1562":0.0154001475,"1563":0.0152324331,"1564":0.0149781725,"1565":0.0146052402,"1566":0.0141358222,"1567":0.0136363752,"1568":0.013193966,"1569":0.0128774207,"1570":0.012698349,"1571":0.0128016153,"1572":0.0133197545,"1573":0.0142023607,"1574":0.0154511765,"1575":0.0170991538,"1576":-0.00458821,"1577":-0.000003299,"1578":0.0190334198,"1579":-0.0051056238,"1580":0.0235546075,"1581":-0.0063162259,"1582":0.0260289435,"1583":-0.0069772509,"1584":0.0275885065,"1585":-0.0073932308,"1586":0.0295464533,"1587":-0.0079182843,"1588":0.0000000002,"1589":0.0,"1590":0.0000003447,"1591":0.0250697022,"1592":0.0550054389,"1593":0.0175214578,"1594":0.0218351879,"1595":0.0169757707,"1596":0.0119806696,"1597":0.0135925608,"1598":0.0087903185,"1599":0.0100494704,"1600":9.0521028509,"1601":8.8610983229,"1602":8.939183647,"1603":9.5952297684,"1604":10.9426927404,"1605":12.8877996749,"1606":15.1640569895,"1607":17.4165751273,"1608":19.3286214121,"1609":20.7213092649,"1610":21.5781709491,"1611":22.0006007251,"1612":22.1338545573,"1613":22.1011042955,"1614":21.9799048124,"1615":21.8049616959,"1616":21.5825516493,"1617":21.3103241571,"1618":20.9914294331,"1619":20.6363023341,"1620":20.2567366978,"1621":19.8598110934,"1622":19.4461293578,"1623":19.0129993598,"1624":18.5594691751,"1625":18.0890991931,"1626":17.6084649341,"1627":17.1224582471,"1628":16.6294460922,"1629":16.1822832211,"1630":15.7532394529,"1631":15.2759189341,"1632":14.7237442019,"1633":14.090215809,"1634":13.6008883188,"1635":13.0866635287,"1636":12.6049928413,"1637":12.139902461,"1638":11.7024980905,"1639":11.2921034684,"1640":10.9079552087,"1641":10.5508665993,"1642":10.2163258477,"1643":9.9059817899,"1644":9.6171761269,"1645":9.347018396,"1646":9.0945832102,"1647":8.8589330923,"1648":8.638924387,"1649":8.433428078,"1650":8.241365515,"1651":8.0617269625,"1652":7.893575814,"1653":7.7360383499,"1654":7.5882933732,"1655":7.4495695633,"1656":7.3191512509,"1657":7.1963861364,"1658":7.0806869862,"1659":6.9715233298,"1660":6.8684058954,"1661":6.7708718559,"1662":6.6784792471,"1663":6.5908132533,"1664":6.5074992432,"1665":6.428213395,"1666":6.3526838534,"1667":6.2806807391,"1668":6.211998266,"1669":6.1464355971,"1670":6.0837844145,"1671":6.0286706044,"1672":5.9919375732,"1673":5.9842370952,"1674":6.0141252693,"1675":6.0882923574,"1676":6.211708927,"1677":6.3875070268,"1678":6.6154725808,"1679":6.8908121521,"1680":7.2047762595,"1681":7.544740658,"1682":7.8953748695,"1683":8.2394168511,"1684":8.5598597262,"1685":8.8418362069,"1686":9.0755235113,"1687":9.2575256084,"1688":9.3917006111,"1689":9.4879755218,"1690":9.5598982397,"1691":9.6153235317,"1692":9.6520500521,"1693":9.6640584858,"1694":9.6469025842,"1695":9.5976651714,"1696":9.5142754115,"1697":9.3955668014,"1698":9.2412511163,"1699":9.0521028509,"1700":6.8261463167,"1701":6.2713039051,"1702":5.7879906786,"1703":5.3864415335,"1704":5.136804662,"1705":4.9876556915,"1706":4.9246587173,"1707":4.9095375042,"1708":4.9124219383,"1709":4.9495036347,"1710":5.0417346812,"1711":5.2146682602,"1712":5.4529482579,"1713":5.6358048901,"1714":5.8238031105,"1715":5.9940397967,"1716":6.1315958154,"1717":6.2362793177,"1718":6.3317873056,"1719":6.4191390587,"1720":6.4989420431,"1721":6.5713804219,"1722":6.636801156,"1723":6.6951996448,"1724":6.7469234617,"1725":6.7925198801,"1726":6.8327234256,"1727":6.8682534662,"1728":6.8998612959,"1729":6.9373698998,"1730":6.9811818897,"1731":7.0211425642,"1732":7.0034006205,"1733":6.974594925,"1734":6.9689619709,"1735":6.9615199552,"1736":6.9591614578,"1737":6.9484682209,"1738":6.9415452508,"1739":6.9020411373,"1740":6.8734636714,"1741":6.7930989134,"1742":6.7424436661,"1743":6.6866035856,"1744":6.602386464,"1745":6.5280967417,"1746":6.4633681043,"1747":6.4026686778,"1748":6.3453113501,"1749":6.290425609,"1750":6.2376637754,"1751":6.1868428467,"1752":6.1377780522,"1753":6.0901993181,"1754":6.0438061089,"1755":5.9983810912,"1756":5.9538637017,"1757":5.9103272053,"1758":5.867872397,"1759":5.8265052396,"1760":5.7860786775,"1761":5.7463446547,"1762":5.7070893249,"1763":5.6682606135,"1764":5.6300030666,"1765":5.5925857913,"1766":5.5562735503,"1767":5.5212027539,"1768":5.4873084978,"1769":5.4543379691,"1770":5.4219582311,"1771":5.4926520534,"1772":5.7247055529,"1773":6.0781248852,"1774":6.557094672,"1775":7.13912472,"1776":7.8194762022,"1777":8.5713618637,"1778":9.3492246193,"1779":10.100245924,"1780":10.7728951109,"1781":11.3180270285,"1782":11.6938209245,"1783":11.8720512186,"1784":11.8471308918,"1785":11.6433845611,"1786":11.3159012081,"1787":10.9408225902,"1788":10.597679101,"1789":10.3509414361,"1790":10.2394108856,"1791":10.1294214507,"1792":9.9270962661,"1793":9.6441067792,"1794":9.2944536933,"1795":8.885664885,"1796":8.4253601447,"1797":7.9214832326,"1798":7.3840304485,"1799":6.8261463167,"1800":41.8596665671,"1801":41.8452378785,"1802":42.2070134214,"1803":43.0420313522,"1804":44.8322038976,"1805":47.3927792155,"1806":50.6199678495,"1807":54.1429834364,"1808":57.4825248173,"1809":60.4782698132,"1810":63.0409333335,"1811":65.1818707622,"1812":67.0142107905,"1813":68.6501017515,"1814":70.1626888706,"1815":71.5836800984,"1816":72.6884160182,"1817":73.5379209627,"1818":74.2997662028,"1819":74.9965800218,"1820":75.6277283296,"1821":76.1988830267,"1822":76.7119494646,"1823":77.1684073867,"1824":77.5711740835,"1825":77.9252106405,"1826":78.2365099689,"1827":78.5109909656,"1828":78.7546568591,"1829":79.0432501534,"1830":79.3794672858,"1831":79.6852814749,"1832":79.549498724,"1833":79.3289425975,"1834":79.2856468145,"1835":79.2286145288,"1836":79.2104866091,"1837":79.1284270113,"1838":79.0752384672,"1839":78.7715224925,"1840":78.5511309721,"1841":77.9301090212,"1842":77.5361662723,"1843":77.1014092191,"1844":76.4424780031,"1845":75.8579453428,"1846":75.3465633985,"1847":74.8650552571,"1848":74.4083575613,"1849":73.9697546218,"1850":73.5466612392,"1851":73.137760948,"1852":72.7417085162,"1853":72.3564405658,"1854":71.9796176644,"1855":71.6095463807,"1856":71.2457943838,"1857":70.889021265,"1858":70.5401201778,"1859":70.1992105447,"1860":69.8651451371,"1861":69.5359242336,"1862":69.2098095999,"1863":68.8863928223,"1864":68.5669050292,"1865":68.2536343701,"1866":67.9488554395,"1867":67.653782853,"1868":67.3679408358,"1869":67.0892563836,"1870":66.8149558919,"1871":66.5421168414,"1872":66.2676349246,"1873":65.9886864373,"1874":65.7029320163,"1875":65.4079777195,"1876":65.1570093017,"1877":64.901364168,"1878":64.4966069097,"1879":63.8179433173,"1880":62.780772287,"1881":61.3331057848,"1882":59.4572006043,"1883":57.1787573651,"1884":54.5833130677,"1885":51.825750144,"1886":49.1209500312,"1887":46.7091979505,"1888":44.8093577444,"1889":43.5798618821,"1890":43.1063017073,"1891":42.9304809517,"1892":42.7356999872,"1893":42.5431245731,"1894":42.3788144423,"1895":42.2422775758,"1896":42.1288229295,"1897":42.0296947086,"1898":41.9388455394,"1899":41.8596665671,"1900":7.1540206003,"1901":2.924544649,"1902":-0.1486380432,"1903":47.6740188526,"1904":-2.8650935962,"1905":46.0026697581,"1906":-3.0368159113,"1907":13.905490512,"1908":10.0752680245,"1909":-0.4010740798,"1910":0.544461655,"1911":0.428420604,"1912":0.4521391224,"1913":0.4631434522,"1914":0.4738822016,"1915":0.4819767934,"1916":43.3810455523,"1917":39.7364964314,"1918":38.1650369008,"1919":37.1870554144,"1920":36.6574946981,"1921":36.0790139197,"1922":35.0382063051,"1923":33.3475898434,"1924":31.2258726626,"1925":29.068870903,"1926":27.0436375338,"1927":24.7471957741,"1928":21.1569625864,"1929":15.6177783244,"1930":6.0107535795,"1931":0.5424256824,"1932":63.2311906541,"1933":1.8298876256,"1934":31.3106418661,"1935":2.367503362,"1936":11.6044548597,"1937":14.129350633,"1938":2.4587615553,"1939":56.792457948,"1940":-2.8146925203,"1941":114.4783227551,"1942":-16.3167063737,"1943":84.0190166641,"1944":59.9796134464,"1945":53.3936131416,"1946":49.4749101503,"1947":46.6907692315,"1948":44.6792697777,"1949":43.0612647496,"1950":41.5936159942,"1951":40.2212157337,"1952":39.0177360528,"1953":38.0590680267,"1954":37.3296367728,"1955":36.7152266611,"1956":36.073143881,"1957":35.3224832574,"1958":34.4950312581,"1959":33.7155971958,"1960":33.1180599529,"1961":32.7447850301,"1962":32.5028812408,"1963":32.2153889488,"1964":31.7250417461,"1965":30.9735433551,"1966":30.0213810311,"1967":29.021976492,"1968":28.1636427682,"1969":27.5827540274,"1970":27.2872186823,"1971":27.2894025411,"1972":27.6149125368,"1973":28.1893725987,"1974":28.9794049562,"1975":30.0290742451,"1976":20.8598127338,"1977":28.9796776152,"1978":51.3030794137,"1979":83.8937489138,"1980":123.2231414698,"1981":166.1507660835,"1982":209.0887650951,"1983":246.945567642,"1984":272.8967868005,"1985":279.7574815933,"1986":262.6060028518,"1987":221.1079259677,"1988":159.904742471,"1989":86.592757936,"1990":8.3296844077,"1991":20.772094391,"1992":20.3402689097,"1993":17.9576781227,"1994":15.0400902117,"1995":12.2759739598,"1996":10.3912974014,"1997":9.4106169352,"1998":8.7684642568,"1999":7.1540206003,"2000":16.1975346023,"2001":18.9661112174,"2002":24.5094014218,"2003":33.016999512,"2004":43.7895047488,"2005":55.7284441816,"2006":67.483299768,"2007":77.9821249584,"2008":86.0101846456,"2009":90.507256154,"2010":92.5547457094,"2011":93.9850849667,"2012":95.517152426,"2013":97.0738597224,"2014":98.454531398,"2015":99.5741921791,"2016":100.5198085818,"2017":101.4191631116,"2018":102.3757673009,"2019":103.4203362589,"2020":104.4949926965,"2021":105.4904437655,"2022":106.3105947322,"2023":106.9312573428,"2024":107.3970427035,"2025":107.7619700749,"2026":108.0099311938,"2027":107.9951816385,"2028":107.4436840484,"2029":106.0363597154,"2030":103.4947504224,"2031":99.1487938582,"2032":87.8574964571,"2033":77.9537797474,"2034":66.1792256744,"2035":55.6618891921,"2036":45.630015938,"2037":37.3823001073,"2038":30.4480659297,"2039":25.1891962442,"2040":20.8500234093,"2041":17.5763371628,"2042":14.6743964851,"2043":12.3157908862,"2044":10.5121850756,"2045":9.1802432351,"2046":8.306028325,"2047":7.8033265831,"2048":7.5260664897,"2049":7.3376322295,"2050":7.1606635133,"2051":6.9927685529,"2052":6.8759332373,"2053":6.8457355733,"2054":6.8957123102,"2055":6.9761185427,"2056":7.022997167,"2057":6.9999197828,"2058":6.9271111769,"2059":6.874546223,"2060":6.9174047916,"2061":7.0825744895,"2062":7.3230188397,"2063":7.5352778101,"2064":7.6091809512,"2065":7.4861187155,"2066":7.1974270478,"2067":6.8573438483,"2068":6.6079957289,"2069":6.5482204054,"2070":6.6897539406,"2071":6.9614177616,"2072":7.2518788006,"2073":7.4679780087,"2074":7.5815220484,"2075":7.6372144647,"2076":7.7040679925,"2077":7.8430632537,"2078":8.072741568,"2079":8.3581472402,"2080":8.6419318685,"2081":8.8859718639,"2082":9.1036864226,"2083":9.3642058842,"2084":9.7529581694,"2085":10.3067166738,"2086":10.9741941927,"2087":11.6398190616,"2088":12.196363105,"2089":12.6178930951,"2090":12.9857350575,"2091":13.5304626771,"2092":14.383877256,"2093":15.4209495255,"2094":16.3222485453,"2095":16.7439735497,"2096":16.5412284791,"2097":15.9279737215,"2098":15.5106541984,"2099":16.1975346023,"2100":71.9475674826,"2101":71.9959303979,"2102":72.0098892045,"2103":72.255177922,"2104":72.4336359439,"2105":72.6736746746,"2106":72.8340005891,"2107":72.9104149657,"2108":72.3304180492,"2109":70.4269061354,"2110":67.8119269411,"2111":65.3160231875,"2112":63.0737973431,"2113":60.9260613181,"2114":58.7998219493,"2115":56.7269625658,"2116":54.7864281063,"2117":53.0106722262,"2118":51.385899164,"2119":49.8776402263,"2120":48.4577478727,"2121":47.1176273426,"2122":45.863914982,"2123":44.7096651591,"2124":43.662090145,"2125":42.7163732902,"2126":41.8615499654,"2127":41.0959320411,"2128":40.4442747348,"2129":39.9696409551,"2130":39.7616110524,"2131":39.7473197492,"2132":38.1310841573,"2133":37.5286467511,"2134":36.6026346094,"2135":36.1671884969,"2136":35.6833580606,"2137":35.5001177101,"2138":35.3308766874,"2139":35.4983023592,"2140":35.6254115229,"2141":36.174106837,"2142":36.5349371292,"2143":36.9459158883,"2144":37.584997102,"2145":38.1531581078,"2146":38.6521988933,"2147":39.1233277054,"2148":39.5707511748,"2149":40.0008844491,"2150":40.4161002597,"2151":40.8176623166,"2152":41.2068310197,"2153":41.5855544689,"2154":41.9560432069,"2155":42.3199040911,"2156":42.677555883,"2157":43.0283878736,"2158":43.3715667847,"2159":43.7069844934,"2160":44.0357241302,"2161":44.3596711956,"2162":44.6804616758,"2163":44.9984768716,"2164":45.3125617056,"2165":45.6205802017,"2166":45.9204141096,"2167":46.2109317935,"2168":46.4925797116,"2169":46.7673070938,"2170":47.0377271963,"2171":47.3066223185,"2172":47.5770072339,"2173":47.8516762354,"2174":48.1329821366,"2175":48.4233317221,"2176":48.6729803554,"2177":48.928695154,"2178":49.3335399478,"2179":50.0122602744,"2180":51.0495436876,"2181":52.4972728065,"2182":54.3733019578,"2183":56.6518135511,"2184":59.2473887605,"2185":62.0050238678,"2186":64.7099644259,"2187":67.1217938687,"2188":69.0216368412,"2189":70.2511321293,"2190":70.7245629773,"2191":70.8982509024,"2192":71.0895684591,"2193":71.2785309078,"2194":71.4394373304,"2195":71.5730275224,"2196":71.684006595,"2197":71.7810375039,"2198":71.8700265608,"2199":71.9475674826,"2200":0.160690819,"2201":0.0874595577,"2202":0.0058939272,"2203":1.7136683747,"2204":0.3974178752,"2205":2.5308080857,"2206":0.5568565259,"2207":0.8398660731,"2208":128.1263570802,"2209":263.4726111813,"2210":268.8482998317,"2211":232.1998346934,"2212":215.6185020775,"2213":214.1379008156,"2214":212.2175166978,"2215":203.7147636835,"2216":228.7947880851,"2217":209.2388269286,"2218":193.5450654229,"2219":183.1589849184,"2220":174.6300845248,"2221":166.132004382,"2222":155.8176558726,"2223":143.490947984,"2224":130.5923356215,"2225":118.7725417229,"2226":108.2421064352,"2227":96.7320446425,"2228":79.7689135871,"2229":52.4405977899,"2230":11.3393198558,"2231":-3.5111047664,"2232":369.5326768915,"2233":-129.8923676352,"2234":282.6762048621,"2235":-99.6958944152,"2236":157.8738979209,"2237":-54.1230359073,"2238":72.7479922242,"2239":-21.4794511973,"2240":27.7734780725,"2241":-4.1888355856,"2242":6.4716552597,"2243":0.3077913279,"2244":2.7543173327,"2245":1.050981498,"2246":1.2476808275,"2247":0.952974727,"2248":0.914640643,"2249":0.8319734915,"2250":0.7811022497,"2251":0.7275737302,"2252":0.6867975395,"2253":0.6589439434,"2254":0.6437277631,"2255":0.6339232329,"2256":0.6214304243,"2257":0.6015821387,"2258":0.5766152579,"2259":0.5542089324,"2260":0.5422062406,"2261":0.5431746531,"2262":0.5522250574,"2263":0.5589555019,"2264":0.5526630305,"2265":0.5283811433,"2266":0.4900865806,"2267":0.448724222,"2268":0.4163208565,"2269":0.4002079104,"2270":0.4005492288,"2271":0.4131192657,"2272":0.4321244541,"2273":0.4513594021,"2274":0.4681711444,"2275":0.4852927658,"2276":-0.1658255241,"2277":0.0000094854,"2278":0.0000016754,"2279":0.0000026724,"2280":0.0000049251,"2281":0.0000014077,"2282":0.0000060802,"2283":0.0000009146,"2284":0.0000067567,"2285":0.0000003485,"2286":0.0000079492,"2287":-0.0000002752,"2288":0.000005994,"2289":-0.0000020252,"2290":0.0242711963,"2291":0.4055548417,"2292":0.3978226887,"2293":0.3868917112,"2294":0.3404421075,"2295":0.2861668287,"2296":0.2378082559,"2297":0.2065472129,"2298":0.1867990089,"2299":0.160690819}} \ No newline at end of file +{ + "name": { + "0": "flow:external_inlet:RCR_aorta", + "1": "flow:external_inlet:RCR_aorta", + "2": "flow:external_inlet:RCR_aorta", + "3": "flow:external_inlet:RCR_aorta", + "4": "flow:external_inlet:RCR_aorta", + "5": "flow:external_inlet:RCR_aorta", + "6": "flow:external_inlet:RCR_aorta", + "7": "flow:external_inlet:RCR_aorta", + "8": "flow:external_inlet:RCR_aorta", + "9": "flow:external_inlet:RCR_aorta", + "10": "flow:external_inlet:RCR_aorta", + "11": "flow:external_inlet:RCR_aorta", + "12": "flow:external_inlet:RCR_aorta", + "13": "flow:external_inlet:RCR_aorta", + "14": "flow:external_inlet:RCR_aorta", + "15": "flow:external_inlet:RCR_aorta", + "16": "flow:external_inlet:RCR_aorta", + "17": "flow:external_inlet:RCR_aorta", + "18": "flow:external_inlet:RCR_aorta", + "19": "flow:external_inlet:RCR_aorta", + "20": "flow:external_inlet:RCR_aorta", + "21": "flow:external_inlet:RCR_aorta", + "22": "flow:external_inlet:RCR_aorta", + "23": "flow:external_inlet:RCR_aorta", + "24": "flow:external_inlet:RCR_aorta", + "25": "flow:external_inlet:RCR_aorta", + "26": "flow:external_inlet:RCR_aorta", + "27": "flow:external_inlet:RCR_aorta", + "28": "flow:external_inlet:RCR_aorta", + "29": "flow:external_inlet:RCR_aorta", + "30": "flow:external_inlet:RCR_aorta", + "31": "flow:external_inlet:RCR_aorta", + "32": "flow:external_inlet:RCR_aorta", + "33": "flow:external_inlet:RCR_aorta", + "34": "flow:external_inlet:RCR_aorta", + "35": "flow:external_inlet:RCR_aorta", + "36": "flow:external_inlet:RCR_aorta", + "37": "flow:external_inlet:RCR_aorta", + "38": "flow:external_inlet:RCR_aorta", + "39": "flow:external_inlet:RCR_aorta", + "40": "flow:external_inlet:RCR_aorta", + "41": "flow:external_inlet:RCR_aorta", + "42": "flow:external_inlet:RCR_aorta", + "43": "flow:external_inlet:RCR_aorta", + "44": "flow:external_inlet:RCR_aorta", + "45": "flow:external_inlet:RCR_aorta", + "46": "flow:external_inlet:RCR_aorta", + "47": "flow:external_inlet:RCR_aorta", + "48": "flow:external_inlet:RCR_aorta", + "49": "flow:external_inlet:RCR_aorta", + "50": "flow:external_inlet:RCR_aorta", + "51": "flow:external_inlet:RCR_aorta", + "52": "flow:external_inlet:RCR_aorta", + "53": "flow:external_inlet:RCR_aorta", + "54": "flow:external_inlet:RCR_aorta", + "55": "flow:external_inlet:RCR_aorta", + "56": "flow:external_inlet:RCR_aorta", + "57": "flow:external_inlet:RCR_aorta", + "58": "flow:external_inlet:RCR_aorta", + "59": "flow:external_inlet:RCR_aorta", + "60": "flow:external_inlet:RCR_aorta", + "61": "flow:external_inlet:RCR_aorta", + "62": "flow:external_inlet:RCR_aorta", + "63": "flow:external_inlet:RCR_aorta", + "64": "flow:external_inlet:RCR_aorta", + "65": "flow:external_inlet:RCR_aorta", + "66": "flow:external_inlet:RCR_aorta", + "67": "flow:external_inlet:RCR_aorta", + "68": "flow:external_inlet:RCR_aorta", + "69": "flow:external_inlet:RCR_aorta", + "70": "flow:external_inlet:RCR_aorta", + "71": "flow:external_inlet:RCR_aorta", + "72": "flow:external_inlet:RCR_aorta", + "73": "flow:external_inlet:RCR_aorta", + "74": "flow:external_inlet:RCR_aorta", + "75": "flow:external_inlet:RCR_aorta", + "76": "flow:external_inlet:RCR_aorta", + "77": "flow:external_inlet:RCR_aorta", + "78": "flow:external_inlet:RCR_aorta", + "79": "flow:external_inlet:RCR_aorta", + "80": "flow:external_inlet:RCR_aorta", + "81": "flow:external_inlet:RCR_aorta", + "82": "flow:external_inlet:RCR_aorta", + "83": "flow:external_inlet:RCR_aorta", + "84": "flow:external_inlet:RCR_aorta", + "85": "flow:external_inlet:RCR_aorta", + "86": "flow:external_inlet:RCR_aorta", + "87": "flow:external_inlet:RCR_aorta", + "88": "flow:external_inlet:RCR_aorta", + "89": "flow:external_inlet:RCR_aorta", + "90": "flow:external_inlet:RCR_aorta", + "91": "flow:external_inlet:RCR_aorta", + "92": "flow:external_inlet:RCR_aorta", + "93": "flow:external_inlet:RCR_aorta", + "94": "flow:external_inlet:RCR_aorta", + "95": "flow:external_inlet:RCR_aorta", + "96": "flow:external_inlet:RCR_aorta", + "97": "flow:external_inlet:RCR_aorta", + "98": "flow:external_inlet:RCR_aorta", + "99": "flow:external_inlet:RCR_aorta", + "100": "pressure:external_inlet:RCR_aorta", + "101": "pressure:external_inlet:RCR_aorta", + "102": "pressure:external_inlet:RCR_aorta", + "103": "pressure:external_inlet:RCR_aorta", + "104": "pressure:external_inlet:RCR_aorta", + "105": "pressure:external_inlet:RCR_aorta", + "106": "pressure:external_inlet:RCR_aorta", + "107": "pressure:external_inlet:RCR_aorta", + "108": "pressure:external_inlet:RCR_aorta", + "109": "pressure:external_inlet:RCR_aorta", + "110": "pressure:external_inlet:RCR_aorta", + "111": "pressure:external_inlet:RCR_aorta", + "112": "pressure:external_inlet:RCR_aorta", + "113": "pressure:external_inlet:RCR_aorta", + "114": "pressure:external_inlet:RCR_aorta", + "115": "pressure:external_inlet:RCR_aorta", + "116": "pressure:external_inlet:RCR_aorta", + "117": "pressure:external_inlet:RCR_aorta", + "118": "pressure:external_inlet:RCR_aorta", + "119": "pressure:external_inlet:RCR_aorta", + "120": "pressure:external_inlet:RCR_aorta", + "121": "pressure:external_inlet:RCR_aorta", + "122": "pressure:external_inlet:RCR_aorta", + "123": "pressure:external_inlet:RCR_aorta", + "124": "pressure:external_inlet:RCR_aorta", + "125": "pressure:external_inlet:RCR_aorta", + "126": "pressure:external_inlet:RCR_aorta", + "127": "pressure:external_inlet:RCR_aorta", + "128": "pressure:external_inlet:RCR_aorta", + "129": "pressure:external_inlet:RCR_aorta", + "130": "pressure:external_inlet:RCR_aorta", + "131": "pressure:external_inlet:RCR_aorta", + "132": "pressure:external_inlet:RCR_aorta", + "133": "pressure:external_inlet:RCR_aorta", + "134": "pressure:external_inlet:RCR_aorta", + "135": "pressure:external_inlet:RCR_aorta", + "136": "pressure:external_inlet:RCR_aorta", + "137": "pressure:external_inlet:RCR_aorta", + "138": "pressure:external_inlet:RCR_aorta", + "139": "pressure:external_inlet:RCR_aorta", + "140": "pressure:external_inlet:RCR_aorta", + "141": "pressure:external_inlet:RCR_aorta", + "142": "pressure:external_inlet:RCR_aorta", + "143": "pressure:external_inlet:RCR_aorta", + "144": "pressure:external_inlet:RCR_aorta", + "145": "pressure:external_inlet:RCR_aorta", + "146": "pressure:external_inlet:RCR_aorta", + "147": "pressure:external_inlet:RCR_aorta", + "148": "pressure:external_inlet:RCR_aorta", + "149": "pressure:external_inlet:RCR_aorta", + "150": "pressure:external_inlet:RCR_aorta", + "151": "pressure:external_inlet:RCR_aorta", + "152": "pressure:external_inlet:RCR_aorta", + "153": "pressure:external_inlet:RCR_aorta", + "154": "pressure:external_inlet:RCR_aorta", + "155": "pressure:external_inlet:RCR_aorta", + "156": "pressure:external_inlet:RCR_aorta", + "157": "pressure:external_inlet:RCR_aorta", + "158": "pressure:external_inlet:RCR_aorta", + "159": "pressure:external_inlet:RCR_aorta", + "160": "pressure:external_inlet:RCR_aorta", + "161": "pressure:external_inlet:RCR_aorta", + "162": "pressure:external_inlet:RCR_aorta", + "163": "pressure:external_inlet:RCR_aorta", + "164": "pressure:external_inlet:RCR_aorta", + "165": "pressure:external_inlet:RCR_aorta", + "166": "pressure:external_inlet:RCR_aorta", + "167": "pressure:external_inlet:RCR_aorta", + "168": "pressure:external_inlet:RCR_aorta", + "169": "pressure:external_inlet:RCR_aorta", + "170": "pressure:external_inlet:RCR_aorta", + "171": "pressure:external_inlet:RCR_aorta", + "172": "pressure:external_inlet:RCR_aorta", + "173": "pressure:external_inlet:RCR_aorta", + "174": "pressure:external_inlet:RCR_aorta", + "175": "pressure:external_inlet:RCR_aorta", + "176": "pressure:external_inlet:RCR_aorta", + "177": "pressure:external_inlet:RCR_aorta", + "178": "pressure:external_inlet:RCR_aorta", + "179": "pressure:external_inlet:RCR_aorta", + "180": "pressure:external_inlet:RCR_aorta", + "181": "pressure:external_inlet:RCR_aorta", + "182": "pressure:external_inlet:RCR_aorta", + "183": "pressure:external_inlet:RCR_aorta", + "184": "pressure:external_inlet:RCR_aorta", + "185": "pressure:external_inlet:RCR_aorta", + "186": "pressure:external_inlet:RCR_aorta", + "187": "pressure:external_inlet:RCR_aorta", + "188": "pressure:external_inlet:RCR_aorta", + "189": "pressure:external_inlet:RCR_aorta", + "190": "pressure:external_inlet:RCR_aorta", + "191": "pressure:external_inlet:RCR_aorta", + "192": "pressure:external_inlet:RCR_aorta", + "193": "pressure:external_inlet:RCR_aorta", + "194": "pressure:external_inlet:RCR_aorta", + "195": "pressure:external_inlet:RCR_aorta", + "196": "pressure:external_inlet:RCR_aorta", + "197": "pressure:external_inlet:RCR_aorta", + "198": "pressure:external_inlet:RCR_aorta", + "199": "pressure:external_inlet:RCR_aorta", + "200": "flow:J_heart_inlet:CLH", + "201": "flow:J_heart_inlet:CLH", + "202": "flow:J_heart_inlet:CLH", + "203": "flow:J_heart_inlet:CLH", + "204": "flow:J_heart_inlet:CLH", + "205": "flow:J_heart_inlet:CLH", + "206": "flow:J_heart_inlet:CLH", + "207": "flow:J_heart_inlet:CLH", + "208": "flow:J_heart_inlet:CLH", + "209": "flow:J_heart_inlet:CLH", + "210": "flow:J_heart_inlet:CLH", + "211": "flow:J_heart_inlet:CLH", + "212": "flow:J_heart_inlet:CLH", + "213": "flow:J_heart_inlet:CLH", + "214": "flow:J_heart_inlet:CLH", + "215": "flow:J_heart_inlet:CLH", + "216": "flow:J_heart_inlet:CLH", + "217": "flow:J_heart_inlet:CLH", + "218": "flow:J_heart_inlet:CLH", + "219": "flow:J_heart_inlet:CLH", + "220": "flow:J_heart_inlet:CLH", + "221": "flow:J_heart_inlet:CLH", + "222": "flow:J_heart_inlet:CLH", + "223": "flow:J_heart_inlet:CLH", + "224": "flow:J_heart_inlet:CLH", + "225": "flow:J_heart_inlet:CLH", + "226": "flow:J_heart_inlet:CLH", + "227": "flow:J_heart_inlet:CLH", + "228": "flow:J_heart_inlet:CLH", + "229": "flow:J_heart_inlet:CLH", + "230": "flow:J_heart_inlet:CLH", + "231": "flow:J_heart_inlet:CLH", + "232": "flow:J_heart_inlet:CLH", + "233": "flow:J_heart_inlet:CLH", + "234": "flow:J_heart_inlet:CLH", + "235": "flow:J_heart_inlet:CLH", + "236": "flow:J_heart_inlet:CLH", + "237": "flow:J_heart_inlet:CLH", + "238": "flow:J_heart_inlet:CLH", + "239": "flow:J_heart_inlet:CLH", + "240": "flow:J_heart_inlet:CLH", + "241": "flow:J_heart_inlet:CLH", + "242": "flow:J_heart_inlet:CLH", + "243": "flow:J_heart_inlet:CLH", + "244": "flow:J_heart_inlet:CLH", + "245": "flow:J_heart_inlet:CLH", + "246": "flow:J_heart_inlet:CLH", + "247": "flow:J_heart_inlet:CLH", + "248": "flow:J_heart_inlet:CLH", + "249": "flow:J_heart_inlet:CLH", + "250": "flow:J_heart_inlet:CLH", + "251": "flow:J_heart_inlet:CLH", + "252": "flow:J_heart_inlet:CLH", + "253": "flow:J_heart_inlet:CLH", + "254": "flow:J_heart_inlet:CLH", + "255": "flow:J_heart_inlet:CLH", + "256": "flow:J_heart_inlet:CLH", + "257": "flow:J_heart_inlet:CLH", + "258": "flow:J_heart_inlet:CLH", + "259": "flow:J_heart_inlet:CLH", + "260": "flow:J_heart_inlet:CLH", + "261": "flow:J_heart_inlet:CLH", + "262": "flow:J_heart_inlet:CLH", + "263": "flow:J_heart_inlet:CLH", + "264": "flow:J_heart_inlet:CLH", + "265": "flow:J_heart_inlet:CLH", + "266": "flow:J_heart_inlet:CLH", + "267": "flow:J_heart_inlet:CLH", + "268": "flow:J_heart_inlet:CLH", + "269": "flow:J_heart_inlet:CLH", + "270": "flow:J_heart_inlet:CLH", + "271": "flow:J_heart_inlet:CLH", + "272": "flow:J_heart_inlet:CLH", + "273": "flow:J_heart_inlet:CLH", + "274": "flow:J_heart_inlet:CLH", + "275": "flow:J_heart_inlet:CLH", + "276": "flow:J_heart_inlet:CLH", + "277": "flow:J_heart_inlet:CLH", + "278": "flow:J_heart_inlet:CLH", + "279": "flow:J_heart_inlet:CLH", + "280": "flow:J_heart_inlet:CLH", + "281": "flow:J_heart_inlet:CLH", + "282": "flow:J_heart_inlet:CLH", + "283": "flow:J_heart_inlet:CLH", + "284": "flow:J_heart_inlet:CLH", + "285": "flow:J_heart_inlet:CLH", + "286": "flow:J_heart_inlet:CLH", + "287": "flow:J_heart_inlet:CLH", + "288": "flow:J_heart_inlet:CLH", + "289": "flow:J_heart_inlet:CLH", + "290": "flow:J_heart_inlet:CLH", + "291": "flow:J_heart_inlet:CLH", + "292": "flow:J_heart_inlet:CLH", + "293": "flow:J_heart_inlet:CLH", + "294": "flow:J_heart_inlet:CLH", + "295": "flow:J_heart_inlet:CLH", + "296": "flow:J_heart_inlet:CLH", + "297": "flow:J_heart_inlet:CLH", + "298": "flow:J_heart_inlet:CLH", + "299": "flow:J_heart_inlet:CLH", + "300": "pressure:J_heart_inlet:CLH", + "301": "pressure:J_heart_inlet:CLH", + "302": "pressure:J_heart_inlet:CLH", + "303": "pressure:J_heart_inlet:CLH", + "304": "pressure:J_heart_inlet:CLH", + "305": "pressure:J_heart_inlet:CLH", + "306": "pressure:J_heart_inlet:CLH", + "307": "pressure:J_heart_inlet:CLH", + "308": "pressure:J_heart_inlet:CLH", + "309": "pressure:J_heart_inlet:CLH", + "310": "pressure:J_heart_inlet:CLH", + "311": "pressure:J_heart_inlet:CLH", + "312": "pressure:J_heart_inlet:CLH", + "313": "pressure:J_heart_inlet:CLH", + "314": "pressure:J_heart_inlet:CLH", + "315": "pressure:J_heart_inlet:CLH", + "316": "pressure:J_heart_inlet:CLH", + "317": "pressure:J_heart_inlet:CLH", + "318": "pressure:J_heart_inlet:CLH", + "319": "pressure:J_heart_inlet:CLH", + "320": "pressure:J_heart_inlet:CLH", + "321": "pressure:J_heart_inlet:CLH", + "322": "pressure:J_heart_inlet:CLH", + "323": "pressure:J_heart_inlet:CLH", + "324": "pressure:J_heart_inlet:CLH", + "325": "pressure:J_heart_inlet:CLH", + "326": "pressure:J_heart_inlet:CLH", + "327": "pressure:J_heart_inlet:CLH", + "328": "pressure:J_heart_inlet:CLH", + "329": "pressure:J_heart_inlet:CLH", + "330": "pressure:J_heart_inlet:CLH", + "331": "pressure:J_heart_inlet:CLH", + "332": "pressure:J_heart_inlet:CLH", + "333": "pressure:J_heart_inlet:CLH", + "334": "pressure:J_heart_inlet:CLH", + "335": "pressure:J_heart_inlet:CLH", + "336": "pressure:J_heart_inlet:CLH", + "337": "pressure:J_heart_inlet:CLH", + "338": "pressure:J_heart_inlet:CLH", + "339": "pressure:J_heart_inlet:CLH", + "340": "pressure:J_heart_inlet:CLH", + "341": "pressure:J_heart_inlet:CLH", + "342": "pressure:J_heart_inlet:CLH", + "343": "pressure:J_heart_inlet:CLH", + "344": "pressure:J_heart_inlet:CLH", + "345": "pressure:J_heart_inlet:CLH", + "346": "pressure:J_heart_inlet:CLH", + "347": "pressure:J_heart_inlet:CLH", + "348": "pressure:J_heart_inlet:CLH", + "349": "pressure:J_heart_inlet:CLH", + "350": "pressure:J_heart_inlet:CLH", + "351": "pressure:J_heart_inlet:CLH", + "352": "pressure:J_heart_inlet:CLH", + "353": "pressure:J_heart_inlet:CLH", + "354": "pressure:J_heart_inlet:CLH", + "355": "pressure:J_heart_inlet:CLH", + "356": "pressure:J_heart_inlet:CLH", + "357": "pressure:J_heart_inlet:CLH", + "358": "pressure:J_heart_inlet:CLH", + "359": "pressure:J_heart_inlet:CLH", + "360": "pressure:J_heart_inlet:CLH", + "361": "pressure:J_heart_inlet:CLH", + "362": "pressure:J_heart_inlet:CLH", + "363": "pressure:J_heart_inlet:CLH", + "364": "pressure:J_heart_inlet:CLH", + "365": "pressure:J_heart_inlet:CLH", + "366": "pressure:J_heart_inlet:CLH", + "367": "pressure:J_heart_inlet:CLH", + "368": "pressure:J_heart_inlet:CLH", + "369": "pressure:J_heart_inlet:CLH", + "370": "pressure:J_heart_inlet:CLH", + "371": "pressure:J_heart_inlet:CLH", + "372": "pressure:J_heart_inlet:CLH", + "373": "pressure:J_heart_inlet:CLH", + "374": "pressure:J_heart_inlet:CLH", + "375": "pressure:J_heart_inlet:CLH", + "376": "pressure:J_heart_inlet:CLH", + "377": "pressure:J_heart_inlet:CLH", + "378": "pressure:J_heart_inlet:CLH", + "379": "pressure:J_heart_inlet:CLH", + "380": "pressure:J_heart_inlet:CLH", + "381": "pressure:J_heart_inlet:CLH", + "382": "pressure:J_heart_inlet:CLH", + "383": "pressure:J_heart_inlet:CLH", + "384": "pressure:J_heart_inlet:CLH", + "385": "pressure:J_heart_inlet:CLH", + "386": "pressure:J_heart_inlet:CLH", + "387": "pressure:J_heart_inlet:CLH", + "388": "pressure:J_heart_inlet:CLH", + "389": "pressure:J_heart_inlet:CLH", + "390": "pressure:J_heart_inlet:CLH", + "391": "pressure:J_heart_inlet:CLH", + "392": "pressure:J_heart_inlet:CLH", + "393": "pressure:J_heart_inlet:CLH", + "394": "pressure:J_heart_inlet:CLH", + "395": "pressure:J_heart_inlet:CLH", + "396": "pressure:J_heart_inlet:CLH", + "397": "pressure:J_heart_inlet:CLH", + "398": "pressure:J_heart_inlet:CLH", + "399": "pressure:J_heart_inlet:CLH", + "400": "flow:RCR_aorta:J_heart_inlet", + "401": "flow:RCR_aorta:J_heart_inlet", + "402": "flow:RCR_aorta:J_heart_inlet", + "403": "flow:RCR_aorta:J_heart_inlet", + "404": "flow:RCR_aorta:J_heart_inlet", + "405": "flow:RCR_aorta:J_heart_inlet", + "406": "flow:RCR_aorta:J_heart_inlet", + "407": "flow:RCR_aorta:J_heart_inlet", + "408": "flow:RCR_aorta:J_heart_inlet", + "409": "flow:RCR_aorta:J_heart_inlet", + "410": "flow:RCR_aorta:J_heart_inlet", + "411": "flow:RCR_aorta:J_heart_inlet", + "412": "flow:RCR_aorta:J_heart_inlet", + "413": "flow:RCR_aorta:J_heart_inlet", + "414": "flow:RCR_aorta:J_heart_inlet", + "415": "flow:RCR_aorta:J_heart_inlet", + "416": "flow:RCR_aorta:J_heart_inlet", + "417": "flow:RCR_aorta:J_heart_inlet", + "418": "flow:RCR_aorta:J_heart_inlet", + "419": "flow:RCR_aorta:J_heart_inlet", + "420": "flow:RCR_aorta:J_heart_inlet", + "421": "flow:RCR_aorta:J_heart_inlet", + "422": "flow:RCR_aorta:J_heart_inlet", + "423": "flow:RCR_aorta:J_heart_inlet", + "424": "flow:RCR_aorta:J_heart_inlet", + "425": "flow:RCR_aorta:J_heart_inlet", + "426": "flow:RCR_aorta:J_heart_inlet", + "427": "flow:RCR_aorta:J_heart_inlet", + "428": "flow:RCR_aorta:J_heart_inlet", + "429": "flow:RCR_aorta:J_heart_inlet", + "430": "flow:RCR_aorta:J_heart_inlet", + "431": "flow:RCR_aorta:J_heart_inlet", + "432": "flow:RCR_aorta:J_heart_inlet", + "433": "flow:RCR_aorta:J_heart_inlet", + "434": "flow:RCR_aorta:J_heart_inlet", + "435": "flow:RCR_aorta:J_heart_inlet", + "436": "flow:RCR_aorta:J_heart_inlet", + "437": "flow:RCR_aorta:J_heart_inlet", + "438": "flow:RCR_aorta:J_heart_inlet", + "439": "flow:RCR_aorta:J_heart_inlet", + "440": "flow:RCR_aorta:J_heart_inlet", + "441": "flow:RCR_aorta:J_heart_inlet", + "442": "flow:RCR_aorta:J_heart_inlet", + "443": "flow:RCR_aorta:J_heart_inlet", + "444": "flow:RCR_aorta:J_heart_inlet", + "445": "flow:RCR_aorta:J_heart_inlet", + "446": "flow:RCR_aorta:J_heart_inlet", + "447": "flow:RCR_aorta:J_heart_inlet", + "448": "flow:RCR_aorta:J_heart_inlet", + "449": "flow:RCR_aorta:J_heart_inlet", + "450": "flow:RCR_aorta:J_heart_inlet", + "451": "flow:RCR_aorta:J_heart_inlet", + "452": "flow:RCR_aorta:J_heart_inlet", + "453": "flow:RCR_aorta:J_heart_inlet", + "454": "flow:RCR_aorta:J_heart_inlet", + "455": "flow:RCR_aorta:J_heart_inlet", + "456": "flow:RCR_aorta:J_heart_inlet", + "457": "flow:RCR_aorta:J_heart_inlet", + "458": "flow:RCR_aorta:J_heart_inlet", + "459": "flow:RCR_aorta:J_heart_inlet", + "460": "flow:RCR_aorta:J_heart_inlet", + "461": "flow:RCR_aorta:J_heart_inlet", + "462": "flow:RCR_aorta:J_heart_inlet", + "463": "flow:RCR_aorta:J_heart_inlet", + "464": "flow:RCR_aorta:J_heart_inlet", + "465": "flow:RCR_aorta:J_heart_inlet", + "466": "flow:RCR_aorta:J_heart_inlet", + "467": "flow:RCR_aorta:J_heart_inlet", + "468": "flow:RCR_aorta:J_heart_inlet", + "469": "flow:RCR_aorta:J_heart_inlet", + "470": "flow:RCR_aorta:J_heart_inlet", + "471": "flow:RCR_aorta:J_heart_inlet", + "472": "flow:RCR_aorta:J_heart_inlet", + "473": "flow:RCR_aorta:J_heart_inlet", + "474": "flow:RCR_aorta:J_heart_inlet", + "475": "flow:RCR_aorta:J_heart_inlet", + "476": "flow:RCR_aorta:J_heart_inlet", + "477": "flow:RCR_aorta:J_heart_inlet", + "478": "flow:RCR_aorta:J_heart_inlet", + "479": "flow:RCR_aorta:J_heart_inlet", + "480": "flow:RCR_aorta:J_heart_inlet", + "481": "flow:RCR_aorta:J_heart_inlet", + "482": "flow:RCR_aorta:J_heart_inlet", + "483": "flow:RCR_aorta:J_heart_inlet", + "484": "flow:RCR_aorta:J_heart_inlet", + "485": "flow:RCR_aorta:J_heart_inlet", + "486": "flow:RCR_aorta:J_heart_inlet", + "487": "flow:RCR_aorta:J_heart_inlet", + "488": "flow:RCR_aorta:J_heart_inlet", + "489": "flow:RCR_aorta:J_heart_inlet", + "490": "flow:RCR_aorta:J_heart_inlet", + "491": "flow:RCR_aorta:J_heart_inlet", + "492": "flow:RCR_aorta:J_heart_inlet", + "493": "flow:RCR_aorta:J_heart_inlet", + "494": "flow:RCR_aorta:J_heart_inlet", + "495": "flow:RCR_aorta:J_heart_inlet", + "496": "flow:RCR_aorta:J_heart_inlet", + "497": "flow:RCR_aorta:J_heart_inlet", + "498": "flow:RCR_aorta:J_heart_inlet", + "499": "flow:RCR_aorta:J_heart_inlet", + "500": "pressure:RCR_aorta:J_heart_inlet", + "501": "pressure:RCR_aorta:J_heart_inlet", + "502": "pressure:RCR_aorta:J_heart_inlet", + "503": "pressure:RCR_aorta:J_heart_inlet", + "504": "pressure:RCR_aorta:J_heart_inlet", + "505": "pressure:RCR_aorta:J_heart_inlet", + "506": "pressure:RCR_aorta:J_heart_inlet", + "507": "pressure:RCR_aorta:J_heart_inlet", + "508": "pressure:RCR_aorta:J_heart_inlet", + "509": "pressure:RCR_aorta:J_heart_inlet", + "510": "pressure:RCR_aorta:J_heart_inlet", + "511": "pressure:RCR_aorta:J_heart_inlet", + "512": "pressure:RCR_aorta:J_heart_inlet", + "513": "pressure:RCR_aorta:J_heart_inlet", + "514": "pressure:RCR_aorta:J_heart_inlet", + "515": "pressure:RCR_aorta:J_heart_inlet", + "516": "pressure:RCR_aorta:J_heart_inlet", + "517": "pressure:RCR_aorta:J_heart_inlet", + "518": "pressure:RCR_aorta:J_heart_inlet", + "519": "pressure:RCR_aorta:J_heart_inlet", + "520": "pressure:RCR_aorta:J_heart_inlet", + "521": "pressure:RCR_aorta:J_heart_inlet", + "522": "pressure:RCR_aorta:J_heart_inlet", + "523": "pressure:RCR_aorta:J_heart_inlet", + "524": "pressure:RCR_aorta:J_heart_inlet", + "525": "pressure:RCR_aorta:J_heart_inlet", + "526": "pressure:RCR_aorta:J_heart_inlet", + "527": "pressure:RCR_aorta:J_heart_inlet", + "528": "pressure:RCR_aorta:J_heart_inlet", + "529": "pressure:RCR_aorta:J_heart_inlet", + "530": "pressure:RCR_aorta:J_heart_inlet", + "531": "pressure:RCR_aorta:J_heart_inlet", + "532": "pressure:RCR_aorta:J_heart_inlet", + "533": "pressure:RCR_aorta:J_heart_inlet", + "534": "pressure:RCR_aorta:J_heart_inlet", + "535": "pressure:RCR_aorta:J_heart_inlet", + "536": "pressure:RCR_aorta:J_heart_inlet", + "537": "pressure:RCR_aorta:J_heart_inlet", + "538": "pressure:RCR_aorta:J_heart_inlet", + "539": "pressure:RCR_aorta:J_heart_inlet", + "540": "pressure:RCR_aorta:J_heart_inlet", + "541": "pressure:RCR_aorta:J_heart_inlet", + "542": "pressure:RCR_aorta:J_heart_inlet", + "543": "pressure:RCR_aorta:J_heart_inlet", + "544": "pressure:RCR_aorta:J_heart_inlet", + "545": "pressure:RCR_aorta:J_heart_inlet", + "546": "pressure:RCR_aorta:J_heart_inlet", + "547": "pressure:RCR_aorta:J_heart_inlet", + "548": "pressure:RCR_aorta:J_heart_inlet", + "549": "pressure:RCR_aorta:J_heart_inlet", + "550": "pressure:RCR_aorta:J_heart_inlet", + "551": "pressure:RCR_aorta:J_heart_inlet", + "552": "pressure:RCR_aorta:J_heart_inlet", + "553": "pressure:RCR_aorta:J_heart_inlet", + "554": "pressure:RCR_aorta:J_heart_inlet", + "555": "pressure:RCR_aorta:J_heart_inlet", + "556": "pressure:RCR_aorta:J_heart_inlet", + "557": "pressure:RCR_aorta:J_heart_inlet", + "558": "pressure:RCR_aorta:J_heart_inlet", + "559": "pressure:RCR_aorta:J_heart_inlet", + "560": "pressure:RCR_aorta:J_heart_inlet", + "561": "pressure:RCR_aorta:J_heart_inlet", + "562": "pressure:RCR_aorta:J_heart_inlet", + "563": "pressure:RCR_aorta:J_heart_inlet", + "564": "pressure:RCR_aorta:J_heart_inlet", + "565": "pressure:RCR_aorta:J_heart_inlet", + "566": "pressure:RCR_aorta:J_heart_inlet", + "567": "pressure:RCR_aorta:J_heart_inlet", + "568": "pressure:RCR_aorta:J_heart_inlet", + "569": "pressure:RCR_aorta:J_heart_inlet", + "570": "pressure:RCR_aorta:J_heart_inlet", + "571": "pressure:RCR_aorta:J_heart_inlet", + "572": "pressure:RCR_aorta:J_heart_inlet", + "573": "pressure:RCR_aorta:J_heart_inlet", + "574": "pressure:RCR_aorta:J_heart_inlet", + "575": "pressure:RCR_aorta:J_heart_inlet", + "576": "pressure:RCR_aorta:J_heart_inlet", + "577": "pressure:RCR_aorta:J_heart_inlet", + "578": "pressure:RCR_aorta:J_heart_inlet", + "579": "pressure:RCR_aorta:J_heart_inlet", + "580": "pressure:RCR_aorta:J_heart_inlet", + "581": "pressure:RCR_aorta:J_heart_inlet", + "582": "pressure:RCR_aorta:J_heart_inlet", + "583": "pressure:RCR_aorta:J_heart_inlet", + "584": "pressure:RCR_aorta:J_heart_inlet", + "585": "pressure:RCR_aorta:J_heart_inlet", + "586": "pressure:RCR_aorta:J_heart_inlet", + "587": "pressure:RCR_aorta:J_heart_inlet", + "588": "pressure:RCR_aorta:J_heart_inlet", + "589": "pressure:RCR_aorta:J_heart_inlet", + "590": "pressure:RCR_aorta:J_heart_inlet", + "591": "pressure:RCR_aorta:J_heart_inlet", + "592": "pressure:RCR_aorta:J_heart_inlet", + "593": "pressure:RCR_aorta:J_heart_inlet", + "594": "pressure:RCR_aorta:J_heart_inlet", + "595": "pressure:RCR_aorta:J_heart_inlet", + "596": "pressure:RCR_aorta:J_heart_inlet", + "597": "pressure:RCR_aorta:J_heart_inlet", + "598": "pressure:RCR_aorta:J_heart_inlet", + "599": "pressure:RCR_aorta:J_heart_inlet", + "600": "flow:CLH:J_heart_outlet", + "601": "flow:CLH:J_heart_outlet", + "602": "flow:CLH:J_heart_outlet", + "603": "flow:CLH:J_heart_outlet", + "604": "flow:CLH:J_heart_outlet", + "605": "flow:CLH:J_heart_outlet", + "606": "flow:CLH:J_heart_outlet", + "607": "flow:CLH:J_heart_outlet", + "608": "flow:CLH:J_heart_outlet", + "609": "flow:CLH:J_heart_outlet", + "610": "flow:CLH:J_heart_outlet", + "611": "flow:CLH:J_heart_outlet", + "612": "flow:CLH:J_heart_outlet", + "613": "flow:CLH:J_heart_outlet", + "614": "flow:CLH:J_heart_outlet", + "615": "flow:CLH:J_heart_outlet", + "616": "flow:CLH:J_heart_outlet", + "617": "flow:CLH:J_heart_outlet", + "618": "flow:CLH:J_heart_outlet", + "619": "flow:CLH:J_heart_outlet", + "620": "flow:CLH:J_heart_outlet", + "621": "flow:CLH:J_heart_outlet", + "622": "flow:CLH:J_heart_outlet", + "623": "flow:CLH:J_heart_outlet", + "624": "flow:CLH:J_heart_outlet", + "625": "flow:CLH:J_heart_outlet", + "626": "flow:CLH:J_heart_outlet", + "627": "flow:CLH:J_heart_outlet", + "628": "flow:CLH:J_heart_outlet", + "629": "flow:CLH:J_heart_outlet", + "630": "flow:CLH:J_heart_outlet", + "631": "flow:CLH:J_heart_outlet", + "632": "flow:CLH:J_heart_outlet", + "633": "flow:CLH:J_heart_outlet", + "634": "flow:CLH:J_heart_outlet", + "635": "flow:CLH:J_heart_outlet", + "636": "flow:CLH:J_heart_outlet", + "637": "flow:CLH:J_heart_outlet", + "638": "flow:CLH:J_heart_outlet", + "639": "flow:CLH:J_heart_outlet", + "640": "flow:CLH:J_heart_outlet", + "641": "flow:CLH:J_heart_outlet", + "642": "flow:CLH:J_heart_outlet", + "643": "flow:CLH:J_heart_outlet", + "644": "flow:CLH:J_heart_outlet", + "645": "flow:CLH:J_heart_outlet", + "646": "flow:CLH:J_heart_outlet", + "647": "flow:CLH:J_heart_outlet", + "648": "flow:CLH:J_heart_outlet", + "649": "flow:CLH:J_heart_outlet", + "650": "flow:CLH:J_heart_outlet", + "651": "flow:CLH:J_heart_outlet", + "652": "flow:CLH:J_heart_outlet", + "653": "flow:CLH:J_heart_outlet", + "654": "flow:CLH:J_heart_outlet", + "655": "flow:CLH:J_heart_outlet", + "656": "flow:CLH:J_heart_outlet", + "657": "flow:CLH:J_heart_outlet", + "658": "flow:CLH:J_heart_outlet", + "659": "flow:CLH:J_heart_outlet", + "660": "flow:CLH:J_heart_outlet", + "661": "flow:CLH:J_heart_outlet", + "662": "flow:CLH:J_heart_outlet", + "663": "flow:CLH:J_heart_outlet", + "664": "flow:CLH:J_heart_outlet", + "665": "flow:CLH:J_heart_outlet", + "666": "flow:CLH:J_heart_outlet", + "667": "flow:CLH:J_heart_outlet", + "668": "flow:CLH:J_heart_outlet", + "669": "flow:CLH:J_heart_outlet", + "670": "flow:CLH:J_heart_outlet", + "671": "flow:CLH:J_heart_outlet", + "672": "flow:CLH:J_heart_outlet", + "673": "flow:CLH:J_heart_outlet", + "674": "flow:CLH:J_heart_outlet", + "675": "flow:CLH:J_heart_outlet", + "676": "flow:CLH:J_heart_outlet", + "677": "flow:CLH:J_heart_outlet", + "678": "flow:CLH:J_heart_outlet", + "679": "flow:CLH:J_heart_outlet", + "680": "flow:CLH:J_heart_outlet", + "681": "flow:CLH:J_heart_outlet", + "682": "flow:CLH:J_heart_outlet", + "683": "flow:CLH:J_heart_outlet", + "684": "flow:CLH:J_heart_outlet", + "685": "flow:CLH:J_heart_outlet", + "686": "flow:CLH:J_heart_outlet", + "687": "flow:CLH:J_heart_outlet", + "688": "flow:CLH:J_heart_outlet", + "689": "flow:CLH:J_heart_outlet", + "690": "flow:CLH:J_heart_outlet", + "691": "flow:CLH:J_heart_outlet", + "692": "flow:CLH:J_heart_outlet", + "693": "flow:CLH:J_heart_outlet", + "694": "flow:CLH:J_heart_outlet", + "695": "flow:CLH:J_heart_outlet", + "696": "flow:CLH:J_heart_outlet", + "697": "flow:CLH:J_heart_outlet", + "698": "flow:CLH:J_heart_outlet", + "699": "flow:CLH:J_heart_outlet", + "700": "pressure:CLH:J_heart_outlet", + "701": "pressure:CLH:J_heart_outlet", + "702": "pressure:CLH:J_heart_outlet", + "703": "pressure:CLH:J_heart_outlet", + "704": "pressure:CLH:J_heart_outlet", + "705": "pressure:CLH:J_heart_outlet", + "706": "pressure:CLH:J_heart_outlet", + "707": "pressure:CLH:J_heart_outlet", + "708": "pressure:CLH:J_heart_outlet", + "709": "pressure:CLH:J_heart_outlet", + "710": "pressure:CLH:J_heart_outlet", + "711": "pressure:CLH:J_heart_outlet", + "712": "pressure:CLH:J_heart_outlet", + "713": "pressure:CLH:J_heart_outlet", + "714": "pressure:CLH:J_heart_outlet", + "715": "pressure:CLH:J_heart_outlet", + "716": "pressure:CLH:J_heart_outlet", + "717": "pressure:CLH:J_heart_outlet", + "718": "pressure:CLH:J_heart_outlet", + "719": "pressure:CLH:J_heart_outlet", + "720": "pressure:CLH:J_heart_outlet", + "721": "pressure:CLH:J_heart_outlet", + "722": "pressure:CLH:J_heart_outlet", + "723": "pressure:CLH:J_heart_outlet", + "724": "pressure:CLH:J_heart_outlet", + "725": "pressure:CLH:J_heart_outlet", + "726": "pressure:CLH:J_heart_outlet", + "727": "pressure:CLH:J_heart_outlet", + "728": "pressure:CLH:J_heart_outlet", + "729": "pressure:CLH:J_heart_outlet", + "730": "pressure:CLH:J_heart_outlet", + "731": "pressure:CLH:J_heart_outlet", + "732": "pressure:CLH:J_heart_outlet", + "733": "pressure:CLH:J_heart_outlet", + "734": "pressure:CLH:J_heart_outlet", + "735": "pressure:CLH:J_heart_outlet", + "736": "pressure:CLH:J_heart_outlet", + "737": "pressure:CLH:J_heart_outlet", + "738": "pressure:CLH:J_heart_outlet", + "739": "pressure:CLH:J_heart_outlet", + "740": "pressure:CLH:J_heart_outlet", + "741": "pressure:CLH:J_heart_outlet", + "742": "pressure:CLH:J_heart_outlet", + "743": "pressure:CLH:J_heart_outlet", + "744": "pressure:CLH:J_heart_outlet", + "745": "pressure:CLH:J_heart_outlet", + "746": "pressure:CLH:J_heart_outlet", + "747": "pressure:CLH:J_heart_outlet", + "748": "pressure:CLH:J_heart_outlet", + "749": "pressure:CLH:J_heart_outlet", + "750": "pressure:CLH:J_heart_outlet", + "751": "pressure:CLH:J_heart_outlet", + "752": "pressure:CLH:J_heart_outlet", + "753": "pressure:CLH:J_heart_outlet", + "754": "pressure:CLH:J_heart_outlet", + "755": "pressure:CLH:J_heart_outlet", + "756": "pressure:CLH:J_heart_outlet", + "757": "pressure:CLH:J_heart_outlet", + "758": "pressure:CLH:J_heart_outlet", + "759": "pressure:CLH:J_heart_outlet", + "760": "pressure:CLH:J_heart_outlet", + "761": "pressure:CLH:J_heart_outlet", + "762": "pressure:CLH:J_heart_outlet", + "763": "pressure:CLH:J_heart_outlet", + "764": "pressure:CLH:J_heart_outlet", + "765": "pressure:CLH:J_heart_outlet", + "766": "pressure:CLH:J_heart_outlet", + "767": "pressure:CLH:J_heart_outlet", + "768": "pressure:CLH:J_heart_outlet", + "769": "pressure:CLH:J_heart_outlet", + "770": "pressure:CLH:J_heart_outlet", + "771": "pressure:CLH:J_heart_outlet", + "772": "pressure:CLH:J_heart_outlet", + "773": "pressure:CLH:J_heart_outlet", + "774": "pressure:CLH:J_heart_outlet", + "775": "pressure:CLH:J_heart_outlet", + "776": "pressure:CLH:J_heart_outlet", + "777": "pressure:CLH:J_heart_outlet", + "778": "pressure:CLH:J_heart_outlet", + "779": "pressure:CLH:J_heart_outlet", + "780": "pressure:CLH:J_heart_outlet", + "781": "pressure:CLH:J_heart_outlet", + "782": "pressure:CLH:J_heart_outlet", + "783": "pressure:CLH:J_heart_outlet", + "784": "pressure:CLH:J_heart_outlet", + "785": "pressure:CLH:J_heart_outlet", + "786": "pressure:CLH:J_heart_outlet", + "787": "pressure:CLH:J_heart_outlet", + "788": "pressure:CLH:J_heart_outlet", + "789": "pressure:CLH:J_heart_outlet", + "790": "pressure:CLH:J_heart_outlet", + "791": "pressure:CLH:J_heart_outlet", + "792": "pressure:CLH:J_heart_outlet", + "793": "pressure:CLH:J_heart_outlet", + "794": "pressure:CLH:J_heart_outlet", + "795": "pressure:CLH:J_heart_outlet", + "796": "pressure:CLH:J_heart_outlet", + "797": "pressure:CLH:J_heart_outlet", + "798": "pressure:CLH:J_heart_outlet", + "799": "pressure:CLH:J_heart_outlet", + "800": "flow:J_heart_outlet:external_outlet", + "801": "flow:J_heart_outlet:external_outlet", + "802": "flow:J_heart_outlet:external_outlet", + "803": "flow:J_heart_outlet:external_outlet", + "804": "flow:J_heart_outlet:external_outlet", + "805": "flow:J_heart_outlet:external_outlet", + "806": "flow:J_heart_outlet:external_outlet", + "807": "flow:J_heart_outlet:external_outlet", + "808": "flow:J_heart_outlet:external_outlet", + "809": "flow:J_heart_outlet:external_outlet", + "810": "flow:J_heart_outlet:external_outlet", + "811": "flow:J_heart_outlet:external_outlet", + "812": "flow:J_heart_outlet:external_outlet", + "813": "flow:J_heart_outlet:external_outlet", + "814": "flow:J_heart_outlet:external_outlet", + "815": "flow:J_heart_outlet:external_outlet", + "816": "flow:J_heart_outlet:external_outlet", + "817": "flow:J_heart_outlet:external_outlet", + "818": "flow:J_heart_outlet:external_outlet", + "819": "flow:J_heart_outlet:external_outlet", + "820": "flow:J_heart_outlet:external_outlet", + "821": "flow:J_heart_outlet:external_outlet", + "822": "flow:J_heart_outlet:external_outlet", + "823": "flow:J_heart_outlet:external_outlet", + "824": "flow:J_heart_outlet:external_outlet", + "825": "flow:J_heart_outlet:external_outlet", + "826": "flow:J_heart_outlet:external_outlet", + "827": "flow:J_heart_outlet:external_outlet", + "828": "flow:J_heart_outlet:external_outlet", + "829": "flow:J_heart_outlet:external_outlet", + "830": "flow:J_heart_outlet:external_outlet", + "831": "flow:J_heart_outlet:external_outlet", + "832": "flow:J_heart_outlet:external_outlet", + "833": "flow:J_heart_outlet:external_outlet", + "834": "flow:J_heart_outlet:external_outlet", + "835": "flow:J_heart_outlet:external_outlet", + "836": "flow:J_heart_outlet:external_outlet", + "837": "flow:J_heart_outlet:external_outlet", + "838": "flow:J_heart_outlet:external_outlet", + "839": "flow:J_heart_outlet:external_outlet", + "840": "flow:J_heart_outlet:external_outlet", + "841": "flow:J_heart_outlet:external_outlet", + "842": "flow:J_heart_outlet:external_outlet", + "843": "flow:J_heart_outlet:external_outlet", + "844": "flow:J_heart_outlet:external_outlet", + "845": "flow:J_heart_outlet:external_outlet", + "846": "flow:J_heart_outlet:external_outlet", + "847": "flow:J_heart_outlet:external_outlet", + "848": "flow:J_heart_outlet:external_outlet", + "849": "flow:J_heart_outlet:external_outlet", + "850": "flow:J_heart_outlet:external_outlet", + "851": "flow:J_heart_outlet:external_outlet", + "852": "flow:J_heart_outlet:external_outlet", + "853": "flow:J_heart_outlet:external_outlet", + "854": "flow:J_heart_outlet:external_outlet", + "855": "flow:J_heart_outlet:external_outlet", + "856": "flow:J_heart_outlet:external_outlet", + "857": "flow:J_heart_outlet:external_outlet", + "858": "flow:J_heart_outlet:external_outlet", + "859": "flow:J_heart_outlet:external_outlet", + "860": "flow:J_heart_outlet:external_outlet", + "861": "flow:J_heart_outlet:external_outlet", + "862": "flow:J_heart_outlet:external_outlet", + "863": "flow:J_heart_outlet:external_outlet", + "864": "flow:J_heart_outlet:external_outlet", + "865": "flow:J_heart_outlet:external_outlet", + "866": "flow:J_heart_outlet:external_outlet", + "867": "flow:J_heart_outlet:external_outlet", + "868": "flow:J_heart_outlet:external_outlet", + "869": "flow:J_heart_outlet:external_outlet", + "870": "flow:J_heart_outlet:external_outlet", + "871": "flow:J_heart_outlet:external_outlet", + "872": "flow:J_heart_outlet:external_outlet", + "873": "flow:J_heart_outlet:external_outlet", + "874": "flow:J_heart_outlet:external_outlet", + "875": "flow:J_heart_outlet:external_outlet", + "876": "flow:J_heart_outlet:external_outlet", + "877": "flow:J_heart_outlet:external_outlet", + "878": "flow:J_heart_outlet:external_outlet", + "879": "flow:J_heart_outlet:external_outlet", + "880": "flow:J_heart_outlet:external_outlet", + "881": "flow:J_heart_outlet:external_outlet", + "882": "flow:J_heart_outlet:external_outlet", + "883": "flow:J_heart_outlet:external_outlet", + "884": "flow:J_heart_outlet:external_outlet", + "885": "flow:J_heart_outlet:external_outlet", + "886": "flow:J_heart_outlet:external_outlet", + "887": "flow:J_heart_outlet:external_outlet", + "888": "flow:J_heart_outlet:external_outlet", + "889": "flow:J_heart_outlet:external_outlet", + "890": "flow:J_heart_outlet:external_outlet", + "891": "flow:J_heart_outlet:external_outlet", + "892": "flow:J_heart_outlet:external_outlet", + "893": "flow:J_heart_outlet:external_outlet", + "894": "flow:J_heart_outlet:external_outlet", + "895": "flow:J_heart_outlet:external_outlet", + "896": "flow:J_heart_outlet:external_outlet", + "897": "flow:J_heart_outlet:external_outlet", + "898": "flow:J_heart_outlet:external_outlet", + "899": "flow:J_heart_outlet:external_outlet", + "900": "pressure:J_heart_outlet:external_outlet", + "901": "pressure:J_heart_outlet:external_outlet", + "902": "pressure:J_heart_outlet:external_outlet", + "903": "pressure:J_heart_outlet:external_outlet", + "904": "pressure:J_heart_outlet:external_outlet", + "905": "pressure:J_heart_outlet:external_outlet", + "906": "pressure:J_heart_outlet:external_outlet", + "907": "pressure:J_heart_outlet:external_outlet", + "908": "pressure:J_heart_outlet:external_outlet", + "909": "pressure:J_heart_outlet:external_outlet", + "910": "pressure:J_heart_outlet:external_outlet", + "911": "pressure:J_heart_outlet:external_outlet", + "912": "pressure:J_heart_outlet:external_outlet", + "913": "pressure:J_heart_outlet:external_outlet", + "914": "pressure:J_heart_outlet:external_outlet", + "915": "pressure:J_heart_outlet:external_outlet", + "916": "pressure:J_heart_outlet:external_outlet", + "917": "pressure:J_heart_outlet:external_outlet", + "918": "pressure:J_heart_outlet:external_outlet", + "919": "pressure:J_heart_outlet:external_outlet", + "920": "pressure:J_heart_outlet:external_outlet", + "921": "pressure:J_heart_outlet:external_outlet", + "922": "pressure:J_heart_outlet:external_outlet", + "923": "pressure:J_heart_outlet:external_outlet", + "924": "pressure:J_heart_outlet:external_outlet", + "925": "pressure:J_heart_outlet:external_outlet", + "926": "pressure:J_heart_outlet:external_outlet", + "927": "pressure:J_heart_outlet:external_outlet", + "928": "pressure:J_heart_outlet:external_outlet", + "929": "pressure:J_heart_outlet:external_outlet", + "930": "pressure:J_heart_outlet:external_outlet", + "931": "pressure:J_heart_outlet:external_outlet", + "932": "pressure:J_heart_outlet:external_outlet", + "933": "pressure:J_heart_outlet:external_outlet", + "934": "pressure:J_heart_outlet:external_outlet", + "935": "pressure:J_heart_outlet:external_outlet", + "936": "pressure:J_heart_outlet:external_outlet", + "937": "pressure:J_heart_outlet:external_outlet", + "938": "pressure:J_heart_outlet:external_outlet", + "939": "pressure:J_heart_outlet:external_outlet", + "940": "pressure:J_heart_outlet:external_outlet", + "941": "pressure:J_heart_outlet:external_outlet", + "942": "pressure:J_heart_outlet:external_outlet", + "943": "pressure:J_heart_outlet:external_outlet", + "944": "pressure:J_heart_outlet:external_outlet", + "945": "pressure:J_heart_outlet:external_outlet", + "946": "pressure:J_heart_outlet:external_outlet", + "947": "pressure:J_heart_outlet:external_outlet", + "948": "pressure:J_heart_outlet:external_outlet", + "949": "pressure:J_heart_outlet:external_outlet", + "950": "pressure:J_heart_outlet:external_outlet", + "951": "pressure:J_heart_outlet:external_outlet", + "952": "pressure:J_heart_outlet:external_outlet", + "953": "pressure:J_heart_outlet:external_outlet", + "954": "pressure:J_heart_outlet:external_outlet", + "955": "pressure:J_heart_outlet:external_outlet", + "956": "pressure:J_heart_outlet:external_outlet", + "957": "pressure:J_heart_outlet:external_outlet", + "958": "pressure:J_heart_outlet:external_outlet", + "959": "pressure:J_heart_outlet:external_outlet", + "960": "pressure:J_heart_outlet:external_outlet", + "961": "pressure:J_heart_outlet:external_outlet", + "962": "pressure:J_heart_outlet:external_outlet", + "963": "pressure:J_heart_outlet:external_outlet", + "964": "pressure:J_heart_outlet:external_outlet", + "965": "pressure:J_heart_outlet:external_outlet", + "966": "pressure:J_heart_outlet:external_outlet", + "967": "pressure:J_heart_outlet:external_outlet", + "968": "pressure:J_heart_outlet:external_outlet", + "969": "pressure:J_heart_outlet:external_outlet", + "970": "pressure:J_heart_outlet:external_outlet", + "971": "pressure:J_heart_outlet:external_outlet", + "972": "pressure:J_heart_outlet:external_outlet", + "973": "pressure:J_heart_outlet:external_outlet", + "974": "pressure:J_heart_outlet:external_outlet", + "975": "pressure:J_heart_outlet:external_outlet", + "976": "pressure:J_heart_outlet:external_outlet", + "977": "pressure:J_heart_outlet:external_outlet", + "978": "pressure:J_heart_outlet:external_outlet", + "979": "pressure:J_heart_outlet:external_outlet", + "980": "pressure:J_heart_outlet:external_outlet", + "981": "pressure:J_heart_outlet:external_outlet", + "982": "pressure:J_heart_outlet:external_outlet", + "983": "pressure:J_heart_outlet:external_outlet", + "984": "pressure:J_heart_outlet:external_outlet", + "985": "pressure:J_heart_outlet:external_outlet", + "986": "pressure:J_heart_outlet:external_outlet", + "987": "pressure:J_heart_outlet:external_outlet", + "988": "pressure:J_heart_outlet:external_outlet", + "989": "pressure:J_heart_outlet:external_outlet", + "990": "pressure:J_heart_outlet:external_outlet", + "991": "pressure:J_heart_outlet:external_outlet", + "992": "pressure:J_heart_outlet:external_outlet", + "993": "pressure:J_heart_outlet:external_outlet", + "994": "pressure:J_heart_outlet:external_outlet", + "995": "pressure:J_heart_outlet:external_outlet", + "996": "pressure:J_heart_outlet:external_outlet", + "997": "pressure:J_heart_outlet:external_outlet", + "998": "pressure:J_heart_outlet:external_outlet", + "999": "pressure:J_heart_outlet:external_outlet", + "1000": "P_c:RCR_aorta", + "1001": "P_c:RCR_aorta", + "1002": "P_c:RCR_aorta", + "1003": "P_c:RCR_aorta", + "1004": "P_c:RCR_aorta", + "1005": "P_c:RCR_aorta", + "1006": "P_c:RCR_aorta", + "1007": "P_c:RCR_aorta", + "1008": "P_c:RCR_aorta", + "1009": "P_c:RCR_aorta", + "1010": "P_c:RCR_aorta", + "1011": "P_c:RCR_aorta", + "1012": "P_c:RCR_aorta", + "1013": "P_c:RCR_aorta", + "1014": "P_c:RCR_aorta", + "1015": "P_c:RCR_aorta", + "1016": "P_c:RCR_aorta", + "1017": "P_c:RCR_aorta", + "1018": "P_c:RCR_aorta", + "1019": "P_c:RCR_aorta", + "1020": "P_c:RCR_aorta", + "1021": "P_c:RCR_aorta", + "1022": "P_c:RCR_aorta", + "1023": "P_c:RCR_aorta", + "1024": "P_c:RCR_aorta", + "1025": "P_c:RCR_aorta", + "1026": "P_c:RCR_aorta", + "1027": "P_c:RCR_aorta", + "1028": "P_c:RCR_aorta", + "1029": "P_c:RCR_aorta", + "1030": "P_c:RCR_aorta", + "1031": "P_c:RCR_aorta", + "1032": "P_c:RCR_aorta", + "1033": "P_c:RCR_aorta", + "1034": "P_c:RCR_aorta", + "1035": "P_c:RCR_aorta", + "1036": "P_c:RCR_aorta", + "1037": "P_c:RCR_aorta", + "1038": "P_c:RCR_aorta", + "1039": "P_c:RCR_aorta", + "1040": "P_c:RCR_aorta", + "1041": "P_c:RCR_aorta", + "1042": "P_c:RCR_aorta", + "1043": "P_c:RCR_aorta", + "1044": "P_c:RCR_aorta", + "1045": "P_c:RCR_aorta", + "1046": "P_c:RCR_aorta", + "1047": "P_c:RCR_aorta", + "1048": "P_c:RCR_aorta", + "1049": "P_c:RCR_aorta", + "1050": "P_c:RCR_aorta", + "1051": "P_c:RCR_aorta", + "1052": "P_c:RCR_aorta", + "1053": "P_c:RCR_aorta", + "1054": "P_c:RCR_aorta", + "1055": "P_c:RCR_aorta", + "1056": "P_c:RCR_aorta", + "1057": "P_c:RCR_aorta", + "1058": "P_c:RCR_aorta", + "1059": "P_c:RCR_aorta", + "1060": "P_c:RCR_aorta", + "1061": "P_c:RCR_aorta", + "1062": "P_c:RCR_aorta", + "1063": "P_c:RCR_aorta", + "1064": "P_c:RCR_aorta", + "1065": "P_c:RCR_aorta", + "1066": "P_c:RCR_aorta", + "1067": "P_c:RCR_aorta", + "1068": "P_c:RCR_aorta", + "1069": "P_c:RCR_aorta", + "1070": "P_c:RCR_aorta", + "1071": "P_c:RCR_aorta", + "1072": "P_c:RCR_aorta", + "1073": "P_c:RCR_aorta", + "1074": "P_c:RCR_aorta", + "1075": "P_c:RCR_aorta", + "1076": "P_c:RCR_aorta", + "1077": "P_c:RCR_aorta", + "1078": "P_c:RCR_aorta", + "1079": "P_c:RCR_aorta", + "1080": "P_c:RCR_aorta", + "1081": "P_c:RCR_aorta", + "1082": "P_c:RCR_aorta", + "1083": "P_c:RCR_aorta", + "1084": "P_c:RCR_aorta", + "1085": "P_c:RCR_aorta", + "1086": "P_c:RCR_aorta", + "1087": "P_c:RCR_aorta", + "1088": "P_c:RCR_aorta", + "1089": "P_c:RCR_aorta", + "1090": "P_c:RCR_aorta", + "1091": "P_c:RCR_aorta", + "1092": "P_c:RCR_aorta", + "1093": "P_c:RCR_aorta", + "1094": "P_c:RCR_aorta", + "1095": "P_c:RCR_aorta", + "1096": "P_c:RCR_aorta", + "1097": "P_c:RCR_aorta", + "1098": "P_c:RCR_aorta", + "1099": "P_c:RCR_aorta", + "1100": "V_RA:CLH", + "1101": "V_RA:CLH", + "1102": "V_RA:CLH", + "1103": "V_RA:CLH", + "1104": "V_RA:CLH", + "1105": "V_RA:CLH", + "1106": "V_RA:CLH", + "1107": "V_RA:CLH", + "1108": "V_RA:CLH", + "1109": "V_RA:CLH", + "1110": "V_RA:CLH", + "1111": "V_RA:CLH", + "1112": "V_RA:CLH", + "1113": "V_RA:CLH", + "1114": "V_RA:CLH", + "1115": "V_RA:CLH", + "1116": "V_RA:CLH", + "1117": "V_RA:CLH", + "1118": "V_RA:CLH", + "1119": "V_RA:CLH", + "1120": "V_RA:CLH", + "1121": "V_RA:CLH", + "1122": "V_RA:CLH", + "1123": "V_RA:CLH", + "1124": "V_RA:CLH", + "1125": "V_RA:CLH", + "1126": "V_RA:CLH", + "1127": "V_RA:CLH", + "1128": "V_RA:CLH", + "1129": "V_RA:CLH", + "1130": "V_RA:CLH", + "1131": "V_RA:CLH", + "1132": "V_RA:CLH", + "1133": "V_RA:CLH", + "1134": "V_RA:CLH", + "1135": "V_RA:CLH", + "1136": "V_RA:CLH", + "1137": "V_RA:CLH", + "1138": "V_RA:CLH", + "1139": "V_RA:CLH", + "1140": "V_RA:CLH", + "1141": "V_RA:CLH", + "1142": "V_RA:CLH", + "1143": "V_RA:CLH", + "1144": "V_RA:CLH", + "1145": "V_RA:CLH", + "1146": "V_RA:CLH", + "1147": "V_RA:CLH", + "1148": "V_RA:CLH", + "1149": "V_RA:CLH", + "1150": "V_RA:CLH", + "1151": "V_RA:CLH", + "1152": "V_RA:CLH", + "1153": "V_RA:CLH", + "1154": "V_RA:CLH", + "1155": "V_RA:CLH", + "1156": "V_RA:CLH", + "1157": "V_RA:CLH", + "1158": "V_RA:CLH", + "1159": "V_RA:CLH", + "1160": "V_RA:CLH", + "1161": "V_RA:CLH", + "1162": "V_RA:CLH", + "1163": "V_RA:CLH", + "1164": "V_RA:CLH", + "1165": "V_RA:CLH", + "1166": "V_RA:CLH", + "1167": "V_RA:CLH", + "1168": "V_RA:CLH", + "1169": "V_RA:CLH", + "1170": "V_RA:CLH", + "1171": "V_RA:CLH", + "1172": "V_RA:CLH", + "1173": "V_RA:CLH", + "1174": "V_RA:CLH", + "1175": "V_RA:CLH", + "1176": "V_RA:CLH", + "1177": "V_RA:CLH", + "1178": "V_RA:CLH", + "1179": "V_RA:CLH", + "1180": "V_RA:CLH", + "1181": "V_RA:CLH", + "1182": "V_RA:CLH", + "1183": "V_RA:CLH", + "1184": "V_RA:CLH", + "1185": "V_RA:CLH", + "1186": "V_RA:CLH", + "1187": "V_RA:CLH", + "1188": "V_RA:CLH", + "1189": "V_RA:CLH", + "1190": "V_RA:CLH", + "1191": "V_RA:CLH", + "1192": "V_RA:CLH", + "1193": "V_RA:CLH", + "1194": "V_RA:CLH", + "1195": "V_RA:CLH", + "1196": "V_RA:CLH", + "1197": "V_RA:CLH", + "1198": "V_RA:CLH", + "1199": "V_RA:CLH", + "1200": "Q_RA:CLH", + "1201": "Q_RA:CLH", + "1202": "Q_RA:CLH", + "1203": "Q_RA:CLH", + "1204": "Q_RA:CLH", + "1205": "Q_RA:CLH", + "1206": "Q_RA:CLH", + "1207": "Q_RA:CLH", + "1208": "Q_RA:CLH", + "1209": "Q_RA:CLH", + "1210": "Q_RA:CLH", + "1211": "Q_RA:CLH", + "1212": "Q_RA:CLH", + "1213": "Q_RA:CLH", + "1214": "Q_RA:CLH", + "1215": "Q_RA:CLH", + "1216": "Q_RA:CLH", + "1217": "Q_RA:CLH", + "1218": "Q_RA:CLH", + "1219": "Q_RA:CLH", + "1220": "Q_RA:CLH", + "1221": "Q_RA:CLH", + "1222": "Q_RA:CLH", + "1223": "Q_RA:CLH", + "1224": "Q_RA:CLH", + "1225": "Q_RA:CLH", + "1226": "Q_RA:CLH", + "1227": "Q_RA:CLH", + "1228": "Q_RA:CLH", + "1229": "Q_RA:CLH", + "1230": "Q_RA:CLH", + "1231": "Q_RA:CLH", + "1232": "Q_RA:CLH", + "1233": "Q_RA:CLH", + "1234": "Q_RA:CLH", + "1235": "Q_RA:CLH", + "1236": "Q_RA:CLH", + "1237": "Q_RA:CLH", + "1238": "Q_RA:CLH", + "1239": "Q_RA:CLH", + "1240": "Q_RA:CLH", + "1241": "Q_RA:CLH", + "1242": "Q_RA:CLH", + "1243": "Q_RA:CLH", + "1244": "Q_RA:CLH", + "1245": "Q_RA:CLH", + "1246": "Q_RA:CLH", + "1247": "Q_RA:CLH", + "1248": "Q_RA:CLH", + "1249": "Q_RA:CLH", + "1250": "Q_RA:CLH", + "1251": "Q_RA:CLH", + "1252": "Q_RA:CLH", + "1253": "Q_RA:CLH", + "1254": "Q_RA:CLH", + "1255": "Q_RA:CLH", + "1256": "Q_RA:CLH", + "1257": "Q_RA:CLH", + "1258": "Q_RA:CLH", + "1259": "Q_RA:CLH", + "1260": "Q_RA:CLH", + "1261": "Q_RA:CLH", + "1262": "Q_RA:CLH", + "1263": "Q_RA:CLH", + "1264": "Q_RA:CLH", + "1265": "Q_RA:CLH", + "1266": "Q_RA:CLH", + "1267": "Q_RA:CLH", + "1268": "Q_RA:CLH", + "1269": "Q_RA:CLH", + "1270": "Q_RA:CLH", + "1271": "Q_RA:CLH", + "1272": "Q_RA:CLH", + "1273": "Q_RA:CLH", + "1274": "Q_RA:CLH", + "1275": "Q_RA:CLH", + "1276": "Q_RA:CLH", + "1277": "Q_RA:CLH", + "1278": "Q_RA:CLH", + "1279": "Q_RA:CLH", + "1280": "Q_RA:CLH", + "1281": "Q_RA:CLH", + "1282": "Q_RA:CLH", + "1283": "Q_RA:CLH", + "1284": "Q_RA:CLH", + "1285": "Q_RA:CLH", + "1286": "Q_RA:CLH", + "1287": "Q_RA:CLH", + "1288": "Q_RA:CLH", + "1289": "Q_RA:CLH", + "1290": "Q_RA:CLH", + "1291": "Q_RA:CLH", + "1292": "Q_RA:CLH", + "1293": "Q_RA:CLH", + "1294": "Q_RA:CLH", + "1295": "Q_RA:CLH", + "1296": "Q_RA:CLH", + "1297": "Q_RA:CLH", + "1298": "Q_RA:CLH", + "1299": "Q_RA:CLH", + "1300": "P_RV:CLH", + "1301": "P_RV:CLH", + "1302": "P_RV:CLH", + "1303": "P_RV:CLH", + "1304": "P_RV:CLH", + "1305": "P_RV:CLH", + "1306": "P_RV:CLH", + "1307": "P_RV:CLH", + "1308": "P_RV:CLH", + "1309": "P_RV:CLH", + "1310": "P_RV:CLH", + "1311": "P_RV:CLH", + "1312": "P_RV:CLH", + "1313": "P_RV:CLH", + "1314": "P_RV:CLH", + "1315": "P_RV:CLH", + "1316": "P_RV:CLH", + "1317": "P_RV:CLH", + "1318": "P_RV:CLH", + "1319": "P_RV:CLH", + "1320": "P_RV:CLH", + "1321": "P_RV:CLH", + "1322": "P_RV:CLH", + "1323": "P_RV:CLH", + "1324": "P_RV:CLH", + "1325": "P_RV:CLH", + "1326": "P_RV:CLH", + "1327": "P_RV:CLH", + "1328": "P_RV:CLH", + "1329": "P_RV:CLH", + "1330": "P_RV:CLH", + "1331": "P_RV:CLH", + "1332": "P_RV:CLH", + "1333": "P_RV:CLH", + "1334": "P_RV:CLH", + "1335": "P_RV:CLH", + "1336": "P_RV:CLH", + "1337": "P_RV:CLH", + "1338": "P_RV:CLH", + "1339": "P_RV:CLH", + "1340": "P_RV:CLH", + "1341": "P_RV:CLH", + "1342": "P_RV:CLH", + "1343": "P_RV:CLH", + "1344": "P_RV:CLH", + "1345": "P_RV:CLH", + "1346": "P_RV:CLH", + "1347": "P_RV:CLH", + "1348": "P_RV:CLH", + "1349": "P_RV:CLH", + "1350": "P_RV:CLH", + "1351": "P_RV:CLH", + "1352": "P_RV:CLH", + "1353": "P_RV:CLH", + "1354": "P_RV:CLH", + "1355": "P_RV:CLH", + "1356": "P_RV:CLH", + "1357": "P_RV:CLH", + "1358": "P_RV:CLH", + "1359": "P_RV:CLH", + "1360": "P_RV:CLH", + "1361": "P_RV:CLH", + "1362": "P_RV:CLH", + "1363": "P_RV:CLH", + "1364": "P_RV:CLH", + "1365": "P_RV:CLH", + "1366": "P_RV:CLH", + "1367": "P_RV:CLH", + "1368": "P_RV:CLH", + "1369": "P_RV:CLH", + "1370": "P_RV:CLH", + "1371": "P_RV:CLH", + "1372": "P_RV:CLH", + "1373": "P_RV:CLH", + "1374": "P_RV:CLH", + "1375": "P_RV:CLH", + "1376": "P_RV:CLH", + "1377": "P_RV:CLH", + "1378": "P_RV:CLH", + "1379": "P_RV:CLH", + "1380": "P_RV:CLH", + "1381": "P_RV:CLH", + "1382": "P_RV:CLH", + "1383": "P_RV:CLH", + "1384": "P_RV:CLH", + "1385": "P_RV:CLH", + "1386": "P_RV:CLH", + "1387": "P_RV:CLH", + "1388": "P_RV:CLH", + "1389": "P_RV:CLH", + "1390": "P_RV:CLH", + "1391": "P_RV:CLH", + "1392": "P_RV:CLH", + "1393": "P_RV:CLH", + "1394": "P_RV:CLH", + "1395": "P_RV:CLH", + "1396": "P_RV:CLH", + "1397": "P_RV:CLH", + "1398": "P_RV:CLH", + "1399": "P_RV:CLH", + "1400": "V_RV:CLH", + "1401": "V_RV:CLH", + "1402": "V_RV:CLH", + "1403": "V_RV:CLH", + "1404": "V_RV:CLH", + "1405": "V_RV:CLH", + "1406": "V_RV:CLH", + "1407": "V_RV:CLH", + "1408": "V_RV:CLH", + "1409": "V_RV:CLH", + "1410": "V_RV:CLH", + "1411": "V_RV:CLH", + "1412": "V_RV:CLH", + "1413": "V_RV:CLH", + "1414": "V_RV:CLH", + "1415": "V_RV:CLH", + "1416": "V_RV:CLH", + "1417": "V_RV:CLH", + "1418": "V_RV:CLH", + "1419": "V_RV:CLH", + "1420": "V_RV:CLH", + "1421": "V_RV:CLH", + "1422": "V_RV:CLH", + "1423": "V_RV:CLH", + "1424": "V_RV:CLH", + "1425": "V_RV:CLH", + "1426": "V_RV:CLH", + "1427": "V_RV:CLH", + "1428": "V_RV:CLH", + "1429": "V_RV:CLH", + "1430": "V_RV:CLH", + "1431": "V_RV:CLH", + "1432": "V_RV:CLH", + "1433": "V_RV:CLH", + "1434": "V_RV:CLH", + "1435": "V_RV:CLH", + "1436": "V_RV:CLH", + "1437": "V_RV:CLH", + "1438": "V_RV:CLH", + "1439": "V_RV:CLH", + "1440": "V_RV:CLH", + "1441": "V_RV:CLH", + "1442": "V_RV:CLH", + "1443": "V_RV:CLH", + "1444": "V_RV:CLH", + "1445": "V_RV:CLH", + "1446": "V_RV:CLH", + "1447": "V_RV:CLH", + "1448": "V_RV:CLH", + "1449": "V_RV:CLH", + "1450": "V_RV:CLH", + "1451": "V_RV:CLH", + "1452": "V_RV:CLH", + "1453": "V_RV:CLH", + "1454": "V_RV:CLH", + "1455": "V_RV:CLH", + "1456": "V_RV:CLH", + "1457": "V_RV:CLH", + "1458": "V_RV:CLH", + "1459": "V_RV:CLH", + "1460": "V_RV:CLH", + "1461": "V_RV:CLH", + "1462": "V_RV:CLH", + "1463": "V_RV:CLH", + "1464": "V_RV:CLH", + "1465": "V_RV:CLH", + "1466": "V_RV:CLH", + "1467": "V_RV:CLH", + "1468": "V_RV:CLH", + "1469": "V_RV:CLH", + "1470": "V_RV:CLH", + "1471": "V_RV:CLH", + "1472": "V_RV:CLH", + "1473": "V_RV:CLH", + "1474": "V_RV:CLH", + "1475": "V_RV:CLH", + "1476": "V_RV:CLH", + "1477": "V_RV:CLH", + "1478": "V_RV:CLH", + "1479": "V_RV:CLH", + "1480": "V_RV:CLH", + "1481": "V_RV:CLH", + "1482": "V_RV:CLH", + "1483": "V_RV:CLH", + "1484": "V_RV:CLH", + "1485": "V_RV:CLH", + "1486": "V_RV:CLH", + "1487": "V_RV:CLH", + "1488": "V_RV:CLH", + "1489": "V_RV:CLH", + "1490": "V_RV:CLH", + "1491": "V_RV:CLH", + "1492": "V_RV:CLH", + "1493": "V_RV:CLH", + "1494": "V_RV:CLH", + "1495": "V_RV:CLH", + "1496": "V_RV:CLH", + "1497": "V_RV:CLH", + "1498": "V_RV:CLH", + "1499": "V_RV:CLH", + "1500": "Q_RV:CLH", + "1501": "Q_RV:CLH", + "1502": "Q_RV:CLH", + "1503": "Q_RV:CLH", + "1504": "Q_RV:CLH", + "1505": "Q_RV:CLH", + "1506": "Q_RV:CLH", + "1507": "Q_RV:CLH", + "1508": "Q_RV:CLH", + "1509": "Q_RV:CLH", + "1510": "Q_RV:CLH", + "1511": "Q_RV:CLH", + "1512": "Q_RV:CLH", + "1513": "Q_RV:CLH", + "1514": "Q_RV:CLH", + "1515": "Q_RV:CLH", + "1516": "Q_RV:CLH", + "1517": "Q_RV:CLH", + "1518": "Q_RV:CLH", + "1519": "Q_RV:CLH", + "1520": "Q_RV:CLH", + "1521": "Q_RV:CLH", + "1522": "Q_RV:CLH", + "1523": "Q_RV:CLH", + "1524": "Q_RV:CLH", + "1525": "Q_RV:CLH", + "1526": "Q_RV:CLH", + "1527": "Q_RV:CLH", + "1528": "Q_RV:CLH", + "1529": "Q_RV:CLH", + "1530": "Q_RV:CLH", + "1531": "Q_RV:CLH", + "1532": "Q_RV:CLH", + "1533": "Q_RV:CLH", + "1534": "Q_RV:CLH", + "1535": "Q_RV:CLH", + "1536": "Q_RV:CLH", + "1537": "Q_RV:CLH", + "1538": "Q_RV:CLH", + "1539": "Q_RV:CLH", + "1540": "Q_RV:CLH", + "1541": "Q_RV:CLH", + "1542": "Q_RV:CLH", + "1543": "Q_RV:CLH", + "1544": "Q_RV:CLH", + "1545": "Q_RV:CLH", + "1546": "Q_RV:CLH", + "1547": "Q_RV:CLH", + "1548": "Q_RV:CLH", + "1549": "Q_RV:CLH", + "1550": "Q_RV:CLH", + "1551": "Q_RV:CLH", + "1552": "Q_RV:CLH", + "1553": "Q_RV:CLH", + "1554": "Q_RV:CLH", + "1555": "Q_RV:CLH", + "1556": "Q_RV:CLH", + "1557": "Q_RV:CLH", + "1558": "Q_RV:CLH", + "1559": "Q_RV:CLH", + "1560": "Q_RV:CLH", + "1561": "Q_RV:CLH", + "1562": "Q_RV:CLH", + "1563": "Q_RV:CLH", + "1564": "Q_RV:CLH", + "1565": "Q_RV:CLH", + "1566": "Q_RV:CLH", + "1567": "Q_RV:CLH", + "1568": "Q_RV:CLH", + "1569": "Q_RV:CLH", + "1570": "Q_RV:CLH", + "1571": "Q_RV:CLH", + "1572": "Q_RV:CLH", + "1573": "Q_RV:CLH", + "1574": "Q_RV:CLH", + "1575": "Q_RV:CLH", + "1576": "Q_RV:CLH", + "1577": "Q_RV:CLH", + "1578": "Q_RV:CLH", + "1579": "Q_RV:CLH", + "1580": "Q_RV:CLH", + "1581": "Q_RV:CLH", + "1582": "Q_RV:CLH", + "1583": "Q_RV:CLH", + "1584": "Q_RV:CLH", + "1585": "Q_RV:CLH", + "1586": "Q_RV:CLH", + "1587": "Q_RV:CLH", + "1588": "Q_RV:CLH", + "1589": "Q_RV:CLH", + "1590": "Q_RV:CLH", + "1591": "Q_RV:CLH", + "1592": "Q_RV:CLH", + "1593": "Q_RV:CLH", + "1594": "Q_RV:CLH", + "1595": "Q_RV:CLH", + "1596": "Q_RV:CLH", + "1597": "Q_RV:CLH", + "1598": "Q_RV:CLH", + "1599": "Q_RV:CLH", + "1600": "P_pul:CLH", + "1601": "P_pul:CLH", + "1602": "P_pul:CLH", + "1603": "P_pul:CLH", + "1604": "P_pul:CLH", + "1605": "P_pul:CLH", + "1606": "P_pul:CLH", + "1607": "P_pul:CLH", + "1608": "P_pul:CLH", + "1609": "P_pul:CLH", + "1610": "P_pul:CLH", + "1611": "P_pul:CLH", + "1612": "P_pul:CLH", + "1613": "P_pul:CLH", + "1614": "P_pul:CLH", + "1615": "P_pul:CLH", + "1616": "P_pul:CLH", + "1617": "P_pul:CLH", + "1618": "P_pul:CLH", + "1619": "P_pul:CLH", + "1620": "P_pul:CLH", + "1621": "P_pul:CLH", + "1622": "P_pul:CLH", + "1623": "P_pul:CLH", + "1624": "P_pul:CLH", + "1625": "P_pul:CLH", + "1626": "P_pul:CLH", + "1627": "P_pul:CLH", + "1628": "P_pul:CLH", + "1629": "P_pul:CLH", + "1630": "P_pul:CLH", + "1631": "P_pul:CLH", + "1632": "P_pul:CLH", + "1633": "P_pul:CLH", + "1634": "P_pul:CLH", + "1635": "P_pul:CLH", + "1636": "P_pul:CLH", + "1637": "P_pul:CLH", + "1638": "P_pul:CLH", + "1639": "P_pul:CLH", + "1640": "P_pul:CLH", + "1641": "P_pul:CLH", + "1642": "P_pul:CLH", + "1643": "P_pul:CLH", + "1644": "P_pul:CLH", + "1645": "P_pul:CLH", + "1646": "P_pul:CLH", + "1647": "P_pul:CLH", + "1648": "P_pul:CLH", + "1649": "P_pul:CLH", + "1650": "P_pul:CLH", + "1651": "P_pul:CLH", + "1652": "P_pul:CLH", + "1653": "P_pul:CLH", + "1654": "P_pul:CLH", + "1655": "P_pul:CLH", + "1656": "P_pul:CLH", + "1657": "P_pul:CLH", + "1658": "P_pul:CLH", + "1659": "P_pul:CLH", + "1660": "P_pul:CLH", + "1661": "P_pul:CLH", + "1662": "P_pul:CLH", + "1663": "P_pul:CLH", + "1664": "P_pul:CLH", + "1665": "P_pul:CLH", + "1666": "P_pul:CLH", + "1667": "P_pul:CLH", + "1668": "P_pul:CLH", + "1669": "P_pul:CLH", + "1670": "P_pul:CLH", + "1671": "P_pul:CLH", + "1672": "P_pul:CLH", + "1673": "P_pul:CLH", + "1674": "P_pul:CLH", + "1675": "P_pul:CLH", + "1676": "P_pul:CLH", + "1677": "P_pul:CLH", + "1678": "P_pul:CLH", + "1679": "P_pul:CLH", + "1680": "P_pul:CLH", + "1681": "P_pul:CLH", + "1682": "P_pul:CLH", + "1683": "P_pul:CLH", + "1684": "P_pul:CLH", + "1685": "P_pul:CLH", + "1686": "P_pul:CLH", + "1687": "P_pul:CLH", + "1688": "P_pul:CLH", + "1689": "P_pul:CLH", + "1690": "P_pul:CLH", + "1691": "P_pul:CLH", + "1692": "P_pul:CLH", + "1693": "P_pul:CLH", + "1694": "P_pul:CLH", + "1695": "P_pul:CLH", + "1696": "P_pul:CLH", + "1697": "P_pul:CLH", + "1698": "P_pul:CLH", + "1699": "P_pul:CLH", + "1700": "P_LA:CLH", + "1701": "P_LA:CLH", + "1702": "P_LA:CLH", + "1703": "P_LA:CLH", + "1704": "P_LA:CLH", + "1705": "P_LA:CLH", + "1706": "P_LA:CLH", + "1707": "P_LA:CLH", + "1708": "P_LA:CLH", + "1709": "P_LA:CLH", + "1710": "P_LA:CLH", + "1711": "P_LA:CLH", + "1712": "P_LA:CLH", + "1713": "P_LA:CLH", + "1714": "P_LA:CLH", + "1715": "P_LA:CLH", + "1716": "P_LA:CLH", + "1717": "P_LA:CLH", + "1718": "P_LA:CLH", + "1719": "P_LA:CLH", + "1720": "P_LA:CLH", + "1721": "P_LA:CLH", + "1722": "P_LA:CLH", + "1723": "P_LA:CLH", + "1724": "P_LA:CLH", + "1725": "P_LA:CLH", + "1726": "P_LA:CLH", + "1727": "P_LA:CLH", + "1728": "P_LA:CLH", + "1729": "P_LA:CLH", + "1730": "P_LA:CLH", + "1731": "P_LA:CLH", + "1732": "P_LA:CLH", + "1733": "P_LA:CLH", + "1734": "P_LA:CLH", + "1735": "P_LA:CLH", + "1736": "P_LA:CLH", + "1737": "P_LA:CLH", + "1738": "P_LA:CLH", + "1739": "P_LA:CLH", + "1740": "P_LA:CLH", + "1741": "P_LA:CLH", + "1742": "P_LA:CLH", + "1743": "P_LA:CLH", + "1744": "P_LA:CLH", + "1745": "P_LA:CLH", + "1746": "P_LA:CLH", + "1747": "P_LA:CLH", + "1748": "P_LA:CLH", + "1749": "P_LA:CLH", + "1750": "P_LA:CLH", + "1751": "P_LA:CLH", + "1752": "P_LA:CLH", + "1753": "P_LA:CLH", + "1754": "P_LA:CLH", + "1755": "P_LA:CLH", + "1756": "P_LA:CLH", + "1757": "P_LA:CLH", + "1758": "P_LA:CLH", + "1759": "P_LA:CLH", + "1760": "P_LA:CLH", + "1761": "P_LA:CLH", + "1762": "P_LA:CLH", + "1763": "P_LA:CLH", + "1764": "P_LA:CLH", + "1765": "P_LA:CLH", + "1766": "P_LA:CLH", + "1767": "P_LA:CLH", + "1768": "P_LA:CLH", + "1769": "P_LA:CLH", + "1770": "P_LA:CLH", + "1771": "P_LA:CLH", + "1772": "P_LA:CLH", + "1773": "P_LA:CLH", + "1774": "P_LA:CLH", + "1775": "P_LA:CLH", + "1776": "P_LA:CLH", + "1777": "P_LA:CLH", + "1778": "P_LA:CLH", + "1779": "P_LA:CLH", + "1780": "P_LA:CLH", + "1781": "P_LA:CLH", + "1782": "P_LA:CLH", + "1783": "P_LA:CLH", + "1784": "P_LA:CLH", + "1785": "P_LA:CLH", + "1786": "P_LA:CLH", + "1787": "P_LA:CLH", + "1788": "P_LA:CLH", + "1789": "P_LA:CLH", + "1790": "P_LA:CLH", + "1791": "P_LA:CLH", + "1792": "P_LA:CLH", + "1793": "P_LA:CLH", + "1794": "P_LA:CLH", + "1795": "P_LA:CLH", + "1796": "P_LA:CLH", + "1797": "P_LA:CLH", + "1798": "P_LA:CLH", + "1799": "P_LA:CLH", + "1800": "V_LA:CLH", + "1801": "V_LA:CLH", + "1802": "V_LA:CLH", + "1803": "V_LA:CLH", + "1804": "V_LA:CLH", + "1805": "V_LA:CLH", + "1806": "V_LA:CLH", + "1807": "V_LA:CLH", + "1808": "V_LA:CLH", + "1809": "V_LA:CLH", + "1810": "V_LA:CLH", + "1811": "V_LA:CLH", + "1812": "V_LA:CLH", + "1813": "V_LA:CLH", + "1814": "V_LA:CLH", + "1815": "V_LA:CLH", + "1816": "V_LA:CLH", + "1817": "V_LA:CLH", + "1818": "V_LA:CLH", + "1819": "V_LA:CLH", + "1820": "V_LA:CLH", + "1821": "V_LA:CLH", + "1822": "V_LA:CLH", + "1823": "V_LA:CLH", + "1824": "V_LA:CLH", + "1825": "V_LA:CLH", + "1826": "V_LA:CLH", + "1827": "V_LA:CLH", + "1828": "V_LA:CLH", + "1829": "V_LA:CLH", + "1830": "V_LA:CLH", + "1831": "V_LA:CLH", + "1832": "V_LA:CLH", + "1833": "V_LA:CLH", + "1834": "V_LA:CLH", + "1835": "V_LA:CLH", + "1836": "V_LA:CLH", + "1837": "V_LA:CLH", + "1838": "V_LA:CLH", + "1839": "V_LA:CLH", + "1840": "V_LA:CLH", + "1841": "V_LA:CLH", + "1842": "V_LA:CLH", + "1843": "V_LA:CLH", + "1844": "V_LA:CLH", + "1845": "V_LA:CLH", + "1846": "V_LA:CLH", + "1847": "V_LA:CLH", + "1848": "V_LA:CLH", + "1849": "V_LA:CLH", + "1850": "V_LA:CLH", + "1851": "V_LA:CLH", + "1852": "V_LA:CLH", + "1853": "V_LA:CLH", + "1854": "V_LA:CLH", + "1855": "V_LA:CLH", + "1856": "V_LA:CLH", + "1857": "V_LA:CLH", + "1858": "V_LA:CLH", + "1859": "V_LA:CLH", + "1860": "V_LA:CLH", + "1861": "V_LA:CLH", + "1862": "V_LA:CLH", + "1863": "V_LA:CLH", + "1864": "V_LA:CLH", + "1865": "V_LA:CLH", + "1866": "V_LA:CLH", + "1867": "V_LA:CLH", + "1868": "V_LA:CLH", + "1869": "V_LA:CLH", + "1870": "V_LA:CLH", + "1871": "V_LA:CLH", + "1872": "V_LA:CLH", + "1873": "V_LA:CLH", + "1874": "V_LA:CLH", + "1875": "V_LA:CLH", + "1876": "V_LA:CLH", + "1877": "V_LA:CLH", + "1878": "V_LA:CLH", + "1879": "V_LA:CLH", + "1880": "V_LA:CLH", + "1881": "V_LA:CLH", + "1882": "V_LA:CLH", + "1883": "V_LA:CLH", + "1884": "V_LA:CLH", + "1885": "V_LA:CLH", + "1886": "V_LA:CLH", + "1887": "V_LA:CLH", + "1888": "V_LA:CLH", + "1889": "V_LA:CLH", + "1890": "V_LA:CLH", + "1891": "V_LA:CLH", + "1892": "V_LA:CLH", + "1893": "V_LA:CLH", + "1894": "V_LA:CLH", + "1895": "V_LA:CLH", + "1896": "V_LA:CLH", + "1897": "V_LA:CLH", + "1898": "V_LA:CLH", + "1899": "V_LA:CLH", + "1900": "Q_LA:CLH", + "1901": "Q_LA:CLH", + "1902": "Q_LA:CLH", + "1903": "Q_LA:CLH", + "1904": "Q_LA:CLH", + "1905": "Q_LA:CLH", + "1906": "Q_LA:CLH", + "1907": "Q_LA:CLH", + "1908": "Q_LA:CLH", + "1909": "Q_LA:CLH", + "1910": "Q_LA:CLH", + "1911": "Q_LA:CLH", + "1912": "Q_LA:CLH", + "1913": "Q_LA:CLH", + "1914": "Q_LA:CLH", + "1915": "Q_LA:CLH", + "1916": "Q_LA:CLH", + "1917": "Q_LA:CLH", + "1918": "Q_LA:CLH", + "1919": "Q_LA:CLH", + "1920": "Q_LA:CLH", + "1921": "Q_LA:CLH", + "1922": "Q_LA:CLH", + "1923": "Q_LA:CLH", + "1924": "Q_LA:CLH", + "1925": "Q_LA:CLH", + "1926": "Q_LA:CLH", + "1927": "Q_LA:CLH", + "1928": "Q_LA:CLH", + "1929": "Q_LA:CLH", + "1930": "Q_LA:CLH", + "1931": "Q_LA:CLH", + "1932": "Q_LA:CLH", + "1933": "Q_LA:CLH", + "1934": "Q_LA:CLH", + "1935": "Q_LA:CLH", + "1936": "Q_LA:CLH", + "1937": "Q_LA:CLH", + "1938": "Q_LA:CLH", + "1939": "Q_LA:CLH", + "1940": "Q_LA:CLH", + "1941": "Q_LA:CLH", + "1942": "Q_LA:CLH", + "1943": "Q_LA:CLH", + "1944": "Q_LA:CLH", + "1945": "Q_LA:CLH", + "1946": "Q_LA:CLH", + "1947": "Q_LA:CLH", + "1948": "Q_LA:CLH", + "1949": "Q_LA:CLH", + "1950": "Q_LA:CLH", + "1951": "Q_LA:CLH", + "1952": "Q_LA:CLH", + "1953": "Q_LA:CLH", + "1954": "Q_LA:CLH", + "1955": "Q_LA:CLH", + "1956": "Q_LA:CLH", + "1957": "Q_LA:CLH", + "1958": "Q_LA:CLH", + "1959": "Q_LA:CLH", + "1960": "Q_LA:CLH", + "1961": "Q_LA:CLH", + "1962": "Q_LA:CLH", + "1963": "Q_LA:CLH", + "1964": "Q_LA:CLH", + "1965": "Q_LA:CLH", + "1966": "Q_LA:CLH", + "1967": "Q_LA:CLH", + "1968": "Q_LA:CLH", + "1969": "Q_LA:CLH", + "1970": "Q_LA:CLH", + "1971": "Q_LA:CLH", + "1972": "Q_LA:CLH", + "1973": "Q_LA:CLH", + "1974": "Q_LA:CLH", + "1975": "Q_LA:CLH", + "1976": "Q_LA:CLH", + "1977": "Q_LA:CLH", + "1978": "Q_LA:CLH", + "1979": "Q_LA:CLH", + "1980": "Q_LA:CLH", + "1981": "Q_LA:CLH", + "1982": "Q_LA:CLH", + "1983": "Q_LA:CLH", + "1984": "Q_LA:CLH", + "1985": "Q_LA:CLH", + "1986": "Q_LA:CLH", + "1987": "Q_LA:CLH", + "1988": "Q_LA:CLH", + "1989": "Q_LA:CLH", + "1990": "Q_LA:CLH", + "1991": "Q_LA:CLH", + "1992": "Q_LA:CLH", + "1993": "Q_LA:CLH", + "1994": "Q_LA:CLH", + "1995": "Q_LA:CLH", + "1996": "Q_LA:CLH", + "1997": "Q_LA:CLH", + "1998": "Q_LA:CLH", + "1999": "Q_LA:CLH", + "2000": "P_LV:CLH", + "2001": "P_LV:CLH", + "2002": "P_LV:CLH", + "2003": "P_LV:CLH", + "2004": "P_LV:CLH", + "2005": "P_LV:CLH", + "2006": "P_LV:CLH", + "2007": "P_LV:CLH", + "2008": "P_LV:CLH", + "2009": "P_LV:CLH", + "2010": "P_LV:CLH", + "2011": "P_LV:CLH", + "2012": "P_LV:CLH", + "2013": "P_LV:CLH", + "2014": "P_LV:CLH", + "2015": "P_LV:CLH", + "2016": "P_LV:CLH", + "2017": "P_LV:CLH", + "2018": "P_LV:CLH", + "2019": "P_LV:CLH", + "2020": "P_LV:CLH", + "2021": "P_LV:CLH", + "2022": "P_LV:CLH", + "2023": "P_LV:CLH", + "2024": "P_LV:CLH", + "2025": "P_LV:CLH", + "2026": "P_LV:CLH", + "2027": "P_LV:CLH", + "2028": "P_LV:CLH", + "2029": "P_LV:CLH", + "2030": "P_LV:CLH", + "2031": "P_LV:CLH", + "2032": "P_LV:CLH", + "2033": "P_LV:CLH", + "2034": "P_LV:CLH", + "2035": "P_LV:CLH", + "2036": "P_LV:CLH", + "2037": "P_LV:CLH", + "2038": "P_LV:CLH", + "2039": "P_LV:CLH", + "2040": "P_LV:CLH", + "2041": "P_LV:CLH", + "2042": "P_LV:CLH", + "2043": "P_LV:CLH", + "2044": "P_LV:CLH", + "2045": "P_LV:CLH", + "2046": "P_LV:CLH", + "2047": "P_LV:CLH", + "2048": "P_LV:CLH", + "2049": "P_LV:CLH", + "2050": "P_LV:CLH", + "2051": "P_LV:CLH", + "2052": "P_LV:CLH", + "2053": "P_LV:CLH", + "2054": "P_LV:CLH", + "2055": "P_LV:CLH", + "2056": "P_LV:CLH", + "2057": "P_LV:CLH", + "2058": "P_LV:CLH", + "2059": "P_LV:CLH", + "2060": "P_LV:CLH", + "2061": "P_LV:CLH", + "2062": "P_LV:CLH", + "2063": "P_LV:CLH", + "2064": "P_LV:CLH", + "2065": "P_LV:CLH", + "2066": "P_LV:CLH", + "2067": "P_LV:CLH", + "2068": "P_LV:CLH", + "2069": "P_LV:CLH", + "2070": "P_LV:CLH", + "2071": "P_LV:CLH", + "2072": "P_LV:CLH", + "2073": "P_LV:CLH", + "2074": "P_LV:CLH", + "2075": "P_LV:CLH", + "2076": "P_LV:CLH", + "2077": "P_LV:CLH", + "2078": "P_LV:CLH", + "2079": "P_LV:CLH", + "2080": "P_LV:CLH", + "2081": "P_LV:CLH", + "2082": "P_LV:CLH", + "2083": "P_LV:CLH", + "2084": "P_LV:CLH", + "2085": "P_LV:CLH", + "2086": "P_LV:CLH", + "2087": "P_LV:CLH", + "2088": "P_LV:CLH", + "2089": "P_LV:CLH", + "2090": "P_LV:CLH", + "2091": "P_LV:CLH", + "2092": "P_LV:CLH", + "2093": "P_LV:CLH", + "2094": "P_LV:CLH", + "2095": "P_LV:CLH", + "2096": "P_LV:CLH", + "2097": "P_LV:CLH", + "2098": "P_LV:CLH", + "2099": "P_LV:CLH", + "2100": "V_LV:CLH", + "2101": "V_LV:CLH", + "2102": "V_LV:CLH", + "2103": "V_LV:CLH", + "2104": "V_LV:CLH", + "2105": "V_LV:CLH", + "2106": "V_LV:CLH", + "2107": "V_LV:CLH", + "2108": "V_LV:CLH", + "2109": "V_LV:CLH", + "2110": "V_LV:CLH", + "2111": "V_LV:CLH", + "2112": "V_LV:CLH", + "2113": "V_LV:CLH", + "2114": "V_LV:CLH", + "2115": "V_LV:CLH", + "2116": "V_LV:CLH", + "2117": "V_LV:CLH", + "2118": "V_LV:CLH", + "2119": "V_LV:CLH", + "2120": "V_LV:CLH", + "2121": "V_LV:CLH", + "2122": "V_LV:CLH", + "2123": "V_LV:CLH", + "2124": "V_LV:CLH", + "2125": "V_LV:CLH", + "2126": "V_LV:CLH", + "2127": "V_LV:CLH", + "2128": "V_LV:CLH", + "2129": "V_LV:CLH", + "2130": "V_LV:CLH", + "2131": "V_LV:CLH", + "2132": "V_LV:CLH", + "2133": "V_LV:CLH", + "2134": "V_LV:CLH", + "2135": "V_LV:CLH", + "2136": "V_LV:CLH", + "2137": "V_LV:CLH", + "2138": "V_LV:CLH", + "2139": "V_LV:CLH", + "2140": "V_LV:CLH", + "2141": "V_LV:CLH", + "2142": "V_LV:CLH", + "2143": "V_LV:CLH", + "2144": "V_LV:CLH", + "2145": "V_LV:CLH", + "2146": "V_LV:CLH", + "2147": "V_LV:CLH", + "2148": "V_LV:CLH", + "2149": "V_LV:CLH", + "2150": "V_LV:CLH", + "2151": "V_LV:CLH", + "2152": "V_LV:CLH", + "2153": "V_LV:CLH", + "2154": "V_LV:CLH", + "2155": "V_LV:CLH", + "2156": "V_LV:CLH", + "2157": "V_LV:CLH", + "2158": "V_LV:CLH", + "2159": "V_LV:CLH", + "2160": "V_LV:CLH", + "2161": "V_LV:CLH", + "2162": "V_LV:CLH", + "2163": "V_LV:CLH", + "2164": "V_LV:CLH", + "2165": "V_LV:CLH", + "2166": "V_LV:CLH", + "2167": "V_LV:CLH", + "2168": "V_LV:CLH", + "2169": "V_LV:CLH", + "2170": "V_LV:CLH", + "2171": "V_LV:CLH", + "2172": "V_LV:CLH", + "2173": "V_LV:CLH", + "2174": "V_LV:CLH", + "2175": "V_LV:CLH", + "2176": "V_LV:CLH", + "2177": "V_LV:CLH", + "2178": "V_LV:CLH", + "2179": "V_LV:CLH", + "2180": "V_LV:CLH", + "2181": "V_LV:CLH", + "2182": "V_LV:CLH", + "2183": "V_LV:CLH", + "2184": "V_LV:CLH", + "2185": "V_LV:CLH", + "2186": "V_LV:CLH", + "2187": "V_LV:CLH", + "2188": "V_LV:CLH", + "2189": "V_LV:CLH", + "2190": "V_LV:CLH", + "2191": "V_LV:CLH", + "2192": "V_LV:CLH", + "2193": "V_LV:CLH", + "2194": "V_LV:CLH", + "2195": "V_LV:CLH", + "2196": "V_LV:CLH", + "2197": "V_LV:CLH", + "2198": "V_LV:CLH", + "2199": "V_LV:CLH", + "2200": "Q_LV:CLH", + "2201": "Q_LV:CLH", + "2202": "Q_LV:CLH", + "2203": "Q_LV:CLH", + "2204": "Q_LV:CLH", + "2205": "Q_LV:CLH", + "2206": "Q_LV:CLH", + "2207": "Q_LV:CLH", + "2208": "Q_LV:CLH", + "2209": "Q_LV:CLH", + "2210": "Q_LV:CLH", + "2211": "Q_LV:CLH", + "2212": "Q_LV:CLH", + "2213": "Q_LV:CLH", + "2214": "Q_LV:CLH", + "2215": "Q_LV:CLH", + "2216": "Q_LV:CLH", + "2217": "Q_LV:CLH", + "2218": "Q_LV:CLH", + "2219": "Q_LV:CLH", + "2220": "Q_LV:CLH", + "2221": "Q_LV:CLH", + "2222": "Q_LV:CLH", + "2223": "Q_LV:CLH", + "2224": "Q_LV:CLH", + "2225": "Q_LV:CLH", + "2226": "Q_LV:CLH", + "2227": "Q_LV:CLH", + "2228": "Q_LV:CLH", + "2229": "Q_LV:CLH", + "2230": "Q_LV:CLH", + "2231": "Q_LV:CLH", + "2232": "Q_LV:CLH", + "2233": "Q_LV:CLH", + "2234": "Q_LV:CLH", + "2235": "Q_LV:CLH", + "2236": "Q_LV:CLH", + "2237": "Q_LV:CLH", + "2238": "Q_LV:CLH", + "2239": "Q_LV:CLH", + "2240": "Q_LV:CLH", + "2241": "Q_LV:CLH", + "2242": "Q_LV:CLH", + "2243": "Q_LV:CLH", + "2244": "Q_LV:CLH", + "2245": "Q_LV:CLH", + "2246": "Q_LV:CLH", + "2247": "Q_LV:CLH", + "2248": "Q_LV:CLH", + "2249": "Q_LV:CLH", + "2250": "Q_LV:CLH", + "2251": "Q_LV:CLH", + "2252": "Q_LV:CLH", + "2253": "Q_LV:CLH", + "2254": "Q_LV:CLH", + "2255": "Q_LV:CLH", + "2256": "Q_LV:CLH", + "2257": "Q_LV:CLH", + "2258": "Q_LV:CLH", + "2259": "Q_LV:CLH", + "2260": "Q_LV:CLH", + "2261": "Q_LV:CLH", + "2262": "Q_LV:CLH", + "2263": "Q_LV:CLH", + "2264": "Q_LV:CLH", + "2265": "Q_LV:CLH", + "2266": "Q_LV:CLH", + "2267": "Q_LV:CLH", + "2268": "Q_LV:CLH", + "2269": "Q_LV:CLH", + "2270": "Q_LV:CLH", + "2271": "Q_LV:CLH", + "2272": "Q_LV:CLH", + "2273": "Q_LV:CLH", + "2274": "Q_LV:CLH", + "2275": "Q_LV:CLH", + "2276": "Q_LV:CLH", + "2277": "Q_LV:CLH", + "2278": "Q_LV:CLH", + "2279": "Q_LV:CLH", + "2280": "Q_LV:CLH", + "2281": "Q_LV:CLH", + "2282": "Q_LV:CLH", + "2283": "Q_LV:CLH", + "2284": "Q_LV:CLH", + "2285": "Q_LV:CLH", + "2286": "Q_LV:CLH", + "2287": "Q_LV:CLH", + "2288": "Q_LV:CLH", + "2289": "Q_LV:CLH", + "2290": "Q_LV:CLH", + "2291": "Q_LV:CLH", + "2292": "Q_LV:CLH", + "2293": "Q_LV:CLH", + "2294": "Q_LV:CLH", + "2295": "Q_LV:CLH", + "2296": "Q_LV:CLH", + "2297": "Q_LV:CLH", + "2298": "Q_LV:CLH", + "2299": "Q_LV:CLH" + }, + "time": { + "0": 0.0, + "1": 0.01, + "2": 0.02, + "3": 0.03, + "4": 0.04, + "5": 0.05, + "6": 0.06, + "7": 0.07, + "8": 0.08, + "9": 0.09, + "10": 0.1, + "11": 0.11, + "12": 0.12, + "13": 0.13, + "14": 0.14, + "15": 0.15, + "16": 0.16, + "17": 0.17, + "18": 0.18, + "19": 0.19, + "20": 0.2, + "21": 0.21, + "22": 0.22, + "23": 0.23, + "24": 0.24, + "25": 0.25, + "26": 0.26, + "27": 0.27, + "28": 0.28, + "29": 0.29, + "30": 0.3, + "31": 0.31, + "32": 0.32, + "33": 0.33, + "34": 0.34, + "35": 0.35, + "36": 0.36, + "37": 0.37, + "38": 0.38, + "39": 0.39, + "40": 0.4, + "41": 0.41, + "42": 0.42, + "43": 0.43, + "44": 0.44, + "45": 0.45, + "46": 0.46, + "47": 0.47, + "48": 0.48, + "49": 0.49, + "50": 0.5, + "51": 0.51, + "52": 0.52, + "53": 0.53, + "54": 0.54, + "55": 0.55, + "56": 0.56, + "57": 0.57, + "58": 0.58, + "59": 0.59, + "60": 0.6, + "61": 0.61, + "62": 0.62, + "63": 0.63, + "64": 0.64, + "65": 0.65, + "66": 0.66, + "67": 0.67, + "68": 0.68, + "69": 0.69, + "70": 0.7, + "71": 0.71, + "72": 0.72, + "73": 0.73, + "74": 0.74, + "75": 0.75, + "76": 0.76, + "77": 0.77, + "78": 0.78, + "79": 0.79, + "80": 0.8, + "81": 0.81, + "82": 0.82, + "83": 0.83, + "84": 0.84, + "85": 0.85, + "86": 0.86, + "87": 0.87, + "88": 0.88, + "89": 0.89, + "90": 0.9, + "91": 0.91, + "92": 0.92, + "93": 0.93, + "94": 0.94, + "95": 0.95, + "96": 0.96, + "97": 0.97, + "98": 0.98, + "99": 0.99, + "100": 0.0, + "101": 0.01, + "102": 0.02, + "103": 0.03, + "104": 0.04, + "105": 0.05, + "106": 0.06, + "107": 0.07, + "108": 0.08, + "109": 0.09, + "110": 0.1, + "111": 0.11, + "112": 0.12, + "113": 0.13, + "114": 0.14, + "115": 0.15, + "116": 0.16, + "117": 0.17, + "118": 0.18, + "119": 0.19, + "120": 0.2, + "121": 0.21, + "122": 0.22, + "123": 0.23, + "124": 0.24, + "125": 0.25, + "126": 0.26, + "127": 0.27, + "128": 0.28, + "129": 0.29, + "130": 0.3, + "131": 0.31, + "132": 0.32, + "133": 0.33, + "134": 0.34, + "135": 0.35, + "136": 0.36, + "137": 0.37, + "138": 0.38, + "139": 0.39, + "140": 0.4, + "141": 0.41, + "142": 0.42, + "143": 0.43, + "144": 0.44, + "145": 0.45, + "146": 0.46, + "147": 0.47, + "148": 0.48, + "149": 0.49, + "150": 0.5, + "151": 0.51, + "152": 0.52, + "153": 0.53, + "154": 0.54, + "155": 0.55, + "156": 0.56, + "157": 0.57, + "158": 0.58, + "159": 0.59, + "160": 0.6, + "161": 0.61, + "162": 0.62, + "163": 0.63, + "164": 0.64, + "165": 0.65, + "166": 0.66, + "167": 0.67, + "168": 0.68, + "169": 0.69, + "170": 0.7, + "171": 0.71, + "172": 0.72, + "173": 0.73, + "174": 0.74, + "175": 0.75, + "176": 0.76, + "177": 0.77, + "178": 0.78, + "179": 0.79, + "180": 0.8, + "181": 0.81, + "182": 0.82, + "183": 0.83, + "184": 0.84, + "185": 0.85, + "186": 0.86, + "187": 0.87, + "188": 0.88, + "189": 0.89, + "190": 0.9, + "191": 0.91, + "192": 0.92, + "193": 0.93, + "194": 0.94, + "195": 0.95, + "196": 0.96, + "197": 0.97, + "198": 0.98, + "199": 0.99, + "200": 0.0, + "201": 0.01, + "202": 0.02, + "203": 0.03, + "204": 0.04, + "205": 0.05, + "206": 0.06, + "207": 0.07, + "208": 0.08, + "209": 0.09, + "210": 0.1, + "211": 0.11, + "212": 0.12, + "213": 0.13, + "214": 0.14, + "215": 0.15, + "216": 0.16, + "217": 0.17, + "218": 0.18, + "219": 0.19, + "220": 0.2, + "221": 0.21, + "222": 0.22, + "223": 0.23, + "224": 0.24, + "225": 0.25, + "226": 0.26, + "227": 0.27, + "228": 0.28, + "229": 0.29, + "230": 0.3, + "231": 0.31, + "232": 0.32, + "233": 0.33, + "234": 0.34, + "235": 0.35, + "236": 0.36, + "237": 0.37, + "238": 0.38, + "239": 0.39, + "240": 0.4, + "241": 0.41, + "242": 0.42, + "243": 0.43, + "244": 0.44, + "245": 0.45, + "246": 0.46, + "247": 0.47, + "248": 0.48, + "249": 0.49, + "250": 0.5, + "251": 0.51, + "252": 0.52, + "253": 0.53, + "254": 0.54, + "255": 0.55, + "256": 0.56, + "257": 0.57, + "258": 0.58, + "259": 0.59, + "260": 0.6, + "261": 0.61, + "262": 0.62, + "263": 0.63, + "264": 0.64, + "265": 0.65, + "266": 0.66, + "267": 0.67, + "268": 0.68, + "269": 0.69, + "270": 0.7, + "271": 0.71, + "272": 0.72, + "273": 0.73, + "274": 0.74, + "275": 0.75, + "276": 0.76, + "277": 0.77, + "278": 0.78, + "279": 0.79, + "280": 0.8, + "281": 0.81, + "282": 0.82, + "283": 0.83, + "284": 0.84, + "285": 0.85, + "286": 0.86, + "287": 0.87, + "288": 0.88, + "289": 0.89, + "290": 0.9, + "291": 0.91, + "292": 0.92, + "293": 0.93, + "294": 0.94, + "295": 0.95, + "296": 0.96, + "297": 0.97, + "298": 0.98, + "299": 0.99, + "300": 0.0, + "301": 0.01, + "302": 0.02, + "303": 0.03, + "304": 0.04, + "305": 0.05, + "306": 0.06, + "307": 0.07, + "308": 0.08, + "309": 0.09, + "310": 0.1, + "311": 0.11, + "312": 0.12, + "313": 0.13, + "314": 0.14, + "315": 0.15, + "316": 0.16, + "317": 0.17, + "318": 0.18, + "319": 0.19, + "320": 0.2, + "321": 0.21, + "322": 0.22, + "323": 0.23, + "324": 0.24, + "325": 0.25, + "326": 0.26, + "327": 0.27, + "328": 0.28, + "329": 0.29, + "330": 0.3, + "331": 0.31, + "332": 0.32, + "333": 0.33, + "334": 0.34, + "335": 0.35, + "336": 0.36, + "337": 0.37, + "338": 0.38, + "339": 0.39, + "340": 0.4, + "341": 0.41, + "342": 0.42, + "343": 0.43, + "344": 0.44, + "345": 0.45, + "346": 0.46, + "347": 0.47, + "348": 0.48, + "349": 0.49, + "350": 0.5, + "351": 0.51, + "352": 0.52, + "353": 0.53, + "354": 0.54, + "355": 0.55, + "356": 0.56, + "357": 0.57, + "358": 0.58, + "359": 0.59, + "360": 0.6, + "361": 0.61, + "362": 0.62, + "363": 0.63, + "364": 0.64, + "365": 0.65, + "366": 0.66, + "367": 0.67, + "368": 0.68, + "369": 0.69, + "370": 0.7, + "371": 0.71, + "372": 0.72, + "373": 0.73, + "374": 0.74, + "375": 0.75, + "376": 0.76, + "377": 0.77, + "378": 0.78, + "379": 0.79, + "380": 0.8, + "381": 0.81, + "382": 0.82, + "383": 0.83, + "384": 0.84, + "385": 0.85, + "386": 0.86, + "387": 0.87, + "388": 0.88, + "389": 0.89, + "390": 0.9, + "391": 0.91, + "392": 0.92, + "393": 0.93, + "394": 0.94, + "395": 0.95, + "396": 0.96, + "397": 0.97, + "398": 0.98, + "399": 0.99, + "400": 0.0, + "401": 0.01, + "402": 0.02, + "403": 0.03, + "404": 0.04, + "405": 0.05, + "406": 0.06, + "407": 0.07, + "408": 0.08, + "409": 0.09, + "410": 0.1, + "411": 0.11, + "412": 0.12, + "413": 0.13, + "414": 0.14, + "415": 0.15, + "416": 0.16, + "417": 0.17, + "418": 0.18, + "419": 0.19, + "420": 0.2, + "421": 0.21, + "422": 0.22, + "423": 0.23, + "424": 0.24, + "425": 0.25, + "426": 0.26, + "427": 0.27, + "428": 0.28, + "429": 0.29, + "430": 0.3, + "431": 0.31, + "432": 0.32, + "433": 0.33, + "434": 0.34, + "435": 0.35, + "436": 0.36, + "437": 0.37, + "438": 0.38, + "439": 0.39, + "440": 0.4, + "441": 0.41, + "442": 0.42, + "443": 0.43, + "444": 0.44, + "445": 0.45, + "446": 0.46, + "447": 0.47, + "448": 0.48, + "449": 0.49, + "450": 0.5, + "451": 0.51, + "452": 0.52, + "453": 0.53, + "454": 0.54, + "455": 0.55, + "456": 0.56, + "457": 0.57, + "458": 0.58, + "459": 0.59, + "460": 0.6, + "461": 0.61, + "462": 0.62, + "463": 0.63, + "464": 0.64, + "465": 0.65, + "466": 0.66, + "467": 0.67, + "468": 0.68, + "469": 0.69, + "470": 0.7, + "471": 0.71, + "472": 0.72, + "473": 0.73, + "474": 0.74, + "475": 0.75, + "476": 0.76, + "477": 0.77, + "478": 0.78, + "479": 0.79, + "480": 0.8, + "481": 0.81, + "482": 0.82, + "483": 0.83, + "484": 0.84, + "485": 0.85, + "486": 0.86, + "487": 0.87, + "488": 0.88, + "489": 0.89, + "490": 0.9, + "491": 0.91, + "492": 0.92, + "493": 0.93, + "494": 0.94, + "495": 0.95, + "496": 0.96, + "497": 0.97, + "498": 0.98, + "499": 0.99, + "500": 0.0, + "501": 0.01, + "502": 0.02, + "503": 0.03, + "504": 0.04, + "505": 0.05, + "506": 0.06, + "507": 0.07, + "508": 0.08, + "509": 0.09, + "510": 0.1, + "511": 0.11, + "512": 0.12, + "513": 0.13, + "514": 0.14, + "515": 0.15, + "516": 0.16, + "517": 0.17, + "518": 0.18, + "519": 0.19, + "520": 0.2, + "521": 0.21, + "522": 0.22, + "523": 0.23, + "524": 0.24, + "525": 0.25, + "526": 0.26, + "527": 0.27, + "528": 0.28, + "529": 0.29, + "530": 0.3, + "531": 0.31, + "532": 0.32, + "533": 0.33, + "534": 0.34, + "535": 0.35, + "536": 0.36, + "537": 0.37, + "538": 0.38, + "539": 0.39, + "540": 0.4, + "541": 0.41, + "542": 0.42, + "543": 0.43, + "544": 0.44, + "545": 0.45, + "546": 0.46, + "547": 0.47, + "548": 0.48, + "549": 0.49, + "550": 0.5, + "551": 0.51, + "552": 0.52, + "553": 0.53, + "554": 0.54, + "555": 0.55, + "556": 0.56, + "557": 0.57, + "558": 0.58, + "559": 0.59, + "560": 0.6, + "561": 0.61, + "562": 0.62, + "563": 0.63, + "564": 0.64, + "565": 0.65, + "566": 0.66, + "567": 0.67, + "568": 0.68, + "569": 0.69, + "570": 0.7, + "571": 0.71, + "572": 0.72, + "573": 0.73, + "574": 0.74, + "575": 0.75, + "576": 0.76, + "577": 0.77, + "578": 0.78, + "579": 0.79, + "580": 0.8, + "581": 0.81, + "582": 0.82, + "583": 0.83, + "584": 0.84, + "585": 0.85, + "586": 0.86, + "587": 0.87, + "588": 0.88, + "589": 0.89, + "590": 0.9, + "591": 0.91, + "592": 0.92, + "593": 0.93, + "594": 0.94, + "595": 0.95, + "596": 0.96, + "597": 0.97, + "598": 0.98, + "599": 0.99, + "600": 0.0, + "601": 0.01, + "602": 0.02, + "603": 0.03, + "604": 0.04, + "605": 0.05, + "606": 0.06, + "607": 0.07, + "608": 0.08, + "609": 0.09, + "610": 0.1, + "611": 0.11, + "612": 0.12, + "613": 0.13, + "614": 0.14, + "615": 0.15, + "616": 0.16, + "617": 0.17, + "618": 0.18, + "619": 0.19, + "620": 0.2, + "621": 0.21, + "622": 0.22, + "623": 0.23, + "624": 0.24, + "625": 0.25, + "626": 0.26, + "627": 0.27, + "628": 0.28, + "629": 0.29, + "630": 0.3, + "631": 0.31, + "632": 0.32, + "633": 0.33, + "634": 0.34, + "635": 0.35, + "636": 0.36, + "637": 0.37, + "638": 0.38, + "639": 0.39, + "640": 0.4, + "641": 0.41, + "642": 0.42, + "643": 0.43, + "644": 0.44, + "645": 0.45, + "646": 0.46, + "647": 0.47, + "648": 0.48, + "649": 0.49, + "650": 0.5, + "651": 0.51, + "652": 0.52, + "653": 0.53, + "654": 0.54, + "655": 0.55, + "656": 0.56, + "657": 0.57, + "658": 0.58, + "659": 0.59, + "660": 0.6, + "661": 0.61, + "662": 0.62, + "663": 0.63, + "664": 0.64, + "665": 0.65, + "666": 0.66, + "667": 0.67, + "668": 0.68, + "669": 0.69, + "670": 0.7, + "671": 0.71, + "672": 0.72, + "673": 0.73, + "674": 0.74, + "675": 0.75, + "676": 0.76, + "677": 0.77, + "678": 0.78, + "679": 0.79, + "680": 0.8, + "681": 0.81, + "682": 0.82, + "683": 0.83, + "684": 0.84, + "685": 0.85, + "686": 0.86, + "687": 0.87, + "688": 0.88, + "689": 0.89, + "690": 0.9, + "691": 0.91, + "692": 0.92, + "693": 0.93, + "694": 0.94, + "695": 0.95, + "696": 0.96, + "697": 0.97, + "698": 0.98, + "699": 0.99, + "700": 0.0, + "701": 0.01, + "702": 0.02, + "703": 0.03, + "704": 0.04, + "705": 0.05, + "706": 0.06, + "707": 0.07, + "708": 0.08, + "709": 0.09, + "710": 0.1, + "711": 0.11, + "712": 0.12, + "713": 0.13, + "714": 0.14, + "715": 0.15, + "716": 0.16, + "717": 0.17, + "718": 0.18, + "719": 0.19, + "720": 0.2, + "721": 0.21, + "722": 0.22, + "723": 0.23, + "724": 0.24, + "725": 0.25, + "726": 0.26, + "727": 0.27, + "728": 0.28, + "729": 0.29, + "730": 0.3, + "731": 0.31, + "732": 0.32, + "733": 0.33, + "734": 0.34, + "735": 0.35, + "736": 0.36, + "737": 0.37, + "738": 0.38, + "739": 0.39, + "740": 0.4, + "741": 0.41, + "742": 0.42, + "743": 0.43, + "744": 0.44, + "745": 0.45, + "746": 0.46, + "747": 0.47, + "748": 0.48, + "749": 0.49, + "750": 0.5, + "751": 0.51, + "752": 0.52, + "753": 0.53, + "754": 0.54, + "755": 0.55, + "756": 0.56, + "757": 0.57, + "758": 0.58, + "759": 0.59, + "760": 0.6, + "761": 0.61, + "762": 0.62, + "763": 0.63, + "764": 0.64, + "765": 0.65, + "766": 0.66, + "767": 0.67, + "768": 0.68, + "769": 0.69, + "770": 0.7, + "771": 0.71, + "772": 0.72, + "773": 0.73, + "774": 0.74, + "775": 0.75, + "776": 0.76, + "777": 0.77, + "778": 0.78, + "779": 0.79, + "780": 0.8, + "781": 0.81, + "782": 0.82, + "783": 0.83, + "784": 0.84, + "785": 0.85, + "786": 0.86, + "787": 0.87, + "788": 0.88, + "789": 0.89, + "790": 0.9, + "791": 0.91, + "792": 0.92, + "793": 0.93, + "794": 0.94, + "795": 0.95, + "796": 0.96, + "797": 0.97, + "798": 0.98, + "799": 0.99, + "800": 0.0, + "801": 0.01, + "802": 0.02, + "803": 0.03, + "804": 0.04, + "805": 0.05, + "806": 0.06, + "807": 0.07, + "808": 0.08, + "809": 0.09, + "810": 0.1, + "811": 0.11, + "812": 0.12, + "813": 0.13, + "814": 0.14, + "815": 0.15, + "816": 0.16, + "817": 0.17, + "818": 0.18, + "819": 0.19, + "820": 0.2, + "821": 0.21, + "822": 0.22, + "823": 0.23, + "824": 0.24, + "825": 0.25, + "826": 0.26, + "827": 0.27, + "828": 0.28, + "829": 0.29, + "830": 0.3, + "831": 0.31, + "832": 0.32, + "833": 0.33, + "834": 0.34, + "835": 0.35, + "836": 0.36, + "837": 0.37, + "838": 0.38, + "839": 0.39, + "840": 0.4, + "841": 0.41, + "842": 0.42, + "843": 0.43, + "844": 0.44, + "845": 0.45, + "846": 0.46, + "847": 0.47, + "848": 0.48, + "849": 0.49, + "850": 0.5, + "851": 0.51, + "852": 0.52, + "853": 0.53, + "854": 0.54, + "855": 0.55, + "856": 0.56, + "857": 0.57, + "858": 0.58, + "859": 0.59, + "860": 0.6, + "861": 0.61, + "862": 0.62, + "863": 0.63, + "864": 0.64, + "865": 0.65, + "866": 0.66, + "867": 0.67, + "868": 0.68, + "869": 0.69, + "870": 0.7, + "871": 0.71, + "872": 0.72, + "873": 0.73, + "874": 0.74, + "875": 0.75, + "876": 0.76, + "877": 0.77, + "878": 0.78, + "879": 0.79, + "880": 0.8, + "881": 0.81, + "882": 0.82, + "883": 0.83, + "884": 0.84, + "885": 0.85, + "886": 0.86, + "887": 0.87, + "888": 0.88, + "889": 0.89, + "890": 0.9, + "891": 0.91, + "892": 0.92, + "893": 0.93, + "894": 0.94, + "895": 0.95, + "896": 0.96, + "897": 0.97, + "898": 0.98, + "899": 0.99, + "900": 0.0, + "901": 0.01, + "902": 0.02, + "903": 0.03, + "904": 0.04, + "905": 0.05, + "906": 0.06, + "907": 0.07, + "908": 0.08, + "909": 0.09, + "910": 0.1, + "911": 0.11, + "912": 0.12, + "913": 0.13, + "914": 0.14, + "915": 0.15, + "916": 0.16, + "917": 0.17, + "918": 0.18, + "919": 0.19, + "920": 0.2, + "921": 0.21, + "922": 0.22, + "923": 0.23, + "924": 0.24, + "925": 0.25, + "926": 0.26, + "927": 0.27, + "928": 0.28, + "929": 0.29, + "930": 0.3, + "931": 0.31, + "932": 0.32, + "933": 0.33, + "934": 0.34, + "935": 0.35, + "936": 0.36, + "937": 0.37, + "938": 0.38, + "939": 0.39, + "940": 0.4, + "941": 0.41, + "942": 0.42, + "943": 0.43, + "944": 0.44, + "945": 0.45, + "946": 0.46, + "947": 0.47, + "948": 0.48, + "949": 0.49, + "950": 0.5, + "951": 0.51, + "952": 0.52, + "953": 0.53, + "954": 0.54, + "955": 0.55, + "956": 0.56, + "957": 0.57, + "958": 0.58, + "959": 0.59, + "960": 0.6, + "961": 0.61, + "962": 0.62, + "963": 0.63, + "964": 0.64, + "965": 0.65, + "966": 0.66, + "967": 0.67, + "968": 0.68, + "969": 0.69, + "970": 0.7, + "971": 0.71, + "972": 0.72, + "973": 0.73, + "974": 0.74, + "975": 0.75, + "976": 0.76, + "977": 0.77, + "978": 0.78, + "979": 0.79, + "980": 0.8, + "981": 0.81, + "982": 0.82, + "983": 0.83, + "984": 0.84, + "985": 0.85, + "986": 0.86, + "987": 0.87, + "988": 0.88, + "989": 0.89, + "990": 0.9, + "991": 0.91, + "992": 0.92, + "993": 0.93, + "994": 0.94, + "995": 0.95, + "996": 0.96, + "997": 0.97, + "998": 0.98, + "999": 0.99, + "1000": 0.0, + "1001": 0.01, + "1002": 0.02, + "1003": 0.03, + "1004": 0.04, + "1005": 0.05, + "1006": 0.06, + "1007": 0.07, + "1008": 0.08, + "1009": 0.09, + "1010": 0.1, + "1011": 0.11, + "1012": 0.12, + "1013": 0.13, + "1014": 0.14, + "1015": 0.15, + "1016": 0.16, + "1017": 0.17, + "1018": 0.18, + "1019": 0.19, + "1020": 0.2, + "1021": 0.21, + "1022": 0.22, + "1023": 0.23, + "1024": 0.24, + "1025": 0.25, + "1026": 0.26, + "1027": 0.27, + "1028": 0.28, + "1029": 0.29, + "1030": 0.3, + "1031": 0.31, + "1032": 0.32, + "1033": 0.33, + "1034": 0.34, + "1035": 0.35, + "1036": 0.36, + "1037": 0.37, + "1038": 0.38, + "1039": 0.39, + "1040": 0.4, + "1041": 0.41, + "1042": 0.42, + "1043": 0.43, + "1044": 0.44, + "1045": 0.45, + "1046": 0.46, + "1047": 0.47, + "1048": 0.48, + "1049": 0.49, + "1050": 0.5, + "1051": 0.51, + "1052": 0.52, + "1053": 0.53, + "1054": 0.54, + "1055": 0.55, + "1056": 0.56, + "1057": 0.57, + "1058": 0.58, + "1059": 0.59, + "1060": 0.6, + "1061": 0.61, + "1062": 0.62, + "1063": 0.63, + "1064": 0.64, + "1065": 0.65, + "1066": 0.66, + "1067": 0.67, + "1068": 0.68, + "1069": 0.69, + "1070": 0.7, + "1071": 0.71, + "1072": 0.72, + "1073": 0.73, + "1074": 0.74, + "1075": 0.75, + "1076": 0.76, + "1077": 0.77, + "1078": 0.78, + "1079": 0.79, + "1080": 0.8, + "1081": 0.81, + "1082": 0.82, + "1083": 0.83, + "1084": 0.84, + "1085": 0.85, + "1086": 0.86, + "1087": 0.87, + "1088": 0.88, + "1089": 0.89, + "1090": 0.9, + "1091": 0.91, + "1092": 0.92, + "1093": 0.93, + "1094": 0.94, + "1095": 0.95, + "1096": 0.96, + "1097": 0.97, + "1098": 0.98, + "1099": 0.99, + "1100": 0.0, + "1101": 0.01, + "1102": 0.02, + "1103": 0.03, + "1104": 0.04, + "1105": 0.05, + "1106": 0.06, + "1107": 0.07, + "1108": 0.08, + "1109": 0.09, + "1110": 0.1, + "1111": 0.11, + "1112": 0.12, + "1113": 0.13, + "1114": 0.14, + "1115": 0.15, + "1116": 0.16, + "1117": 0.17, + "1118": 0.18, + "1119": 0.19, + "1120": 0.2, + "1121": 0.21, + "1122": 0.22, + "1123": 0.23, + "1124": 0.24, + "1125": 0.25, + "1126": 0.26, + "1127": 0.27, + "1128": 0.28, + "1129": 0.29, + "1130": 0.3, + "1131": 0.31, + "1132": 0.32, + "1133": 0.33, + "1134": 0.34, + "1135": 0.35, + "1136": 0.36, + "1137": 0.37, + "1138": 0.38, + "1139": 0.39, + "1140": 0.4, + "1141": 0.41, + "1142": 0.42, + "1143": 0.43, + "1144": 0.44, + "1145": 0.45, + "1146": 0.46, + "1147": 0.47, + "1148": 0.48, + "1149": 0.49, + "1150": 0.5, + "1151": 0.51, + "1152": 0.52, + "1153": 0.53, + "1154": 0.54, + "1155": 0.55, + "1156": 0.56, + "1157": 0.57, + "1158": 0.58, + "1159": 0.59, + "1160": 0.6, + "1161": 0.61, + "1162": 0.62, + "1163": 0.63, + "1164": 0.64, + "1165": 0.65, + "1166": 0.66, + "1167": 0.67, + "1168": 0.68, + "1169": 0.69, + "1170": 0.7, + "1171": 0.71, + "1172": 0.72, + "1173": 0.73, + "1174": 0.74, + "1175": 0.75, + "1176": 0.76, + "1177": 0.77, + "1178": 0.78, + "1179": 0.79, + "1180": 0.8, + "1181": 0.81, + "1182": 0.82, + "1183": 0.83, + "1184": 0.84, + "1185": 0.85, + "1186": 0.86, + "1187": 0.87, + "1188": 0.88, + "1189": 0.89, + "1190": 0.9, + "1191": 0.91, + "1192": 0.92, + "1193": 0.93, + "1194": 0.94, + "1195": 0.95, + "1196": 0.96, + "1197": 0.97, + "1198": 0.98, + "1199": 0.99, + "1200": 0.0, + "1201": 0.01, + "1202": 0.02, + "1203": 0.03, + "1204": 0.04, + "1205": 0.05, + "1206": 0.06, + "1207": 0.07, + "1208": 0.08, + "1209": 0.09, + "1210": 0.1, + "1211": 0.11, + "1212": 0.12, + "1213": 0.13, + "1214": 0.14, + "1215": 0.15, + "1216": 0.16, + "1217": 0.17, + "1218": 0.18, + "1219": 0.19, + "1220": 0.2, + "1221": 0.21, + "1222": 0.22, + "1223": 0.23, + "1224": 0.24, + "1225": 0.25, + "1226": 0.26, + "1227": 0.27, + "1228": 0.28, + "1229": 0.29, + "1230": 0.3, + "1231": 0.31, + "1232": 0.32, + "1233": 0.33, + "1234": 0.34, + "1235": 0.35, + "1236": 0.36, + "1237": 0.37, + "1238": 0.38, + "1239": 0.39, + "1240": 0.4, + "1241": 0.41, + "1242": 0.42, + "1243": 0.43, + "1244": 0.44, + "1245": 0.45, + "1246": 0.46, + "1247": 0.47, + "1248": 0.48, + "1249": 0.49, + "1250": 0.5, + "1251": 0.51, + "1252": 0.52, + "1253": 0.53, + "1254": 0.54, + "1255": 0.55, + "1256": 0.56, + "1257": 0.57, + "1258": 0.58, + "1259": 0.59, + "1260": 0.6, + "1261": 0.61, + "1262": 0.62, + "1263": 0.63, + "1264": 0.64, + "1265": 0.65, + "1266": 0.66, + "1267": 0.67, + "1268": 0.68, + "1269": 0.69, + "1270": 0.7, + "1271": 0.71, + "1272": 0.72, + "1273": 0.73, + "1274": 0.74, + "1275": 0.75, + "1276": 0.76, + "1277": 0.77, + "1278": 0.78, + "1279": 0.79, + "1280": 0.8, + "1281": 0.81, + "1282": 0.82, + "1283": 0.83, + "1284": 0.84, + "1285": 0.85, + "1286": 0.86, + "1287": 0.87, + "1288": 0.88, + "1289": 0.89, + "1290": 0.9, + "1291": 0.91, + "1292": 0.92, + "1293": 0.93, + "1294": 0.94, + "1295": 0.95, + "1296": 0.96, + "1297": 0.97, + "1298": 0.98, + "1299": 0.99, + "1300": 0.0, + "1301": 0.01, + "1302": 0.02, + "1303": 0.03, + "1304": 0.04, + "1305": 0.05, + "1306": 0.06, + "1307": 0.07, + "1308": 0.08, + "1309": 0.09, + "1310": 0.1, + "1311": 0.11, + "1312": 0.12, + "1313": 0.13, + "1314": 0.14, + "1315": 0.15, + "1316": 0.16, + "1317": 0.17, + "1318": 0.18, + "1319": 0.19, + "1320": 0.2, + "1321": 0.21, + "1322": 0.22, + "1323": 0.23, + "1324": 0.24, + "1325": 0.25, + "1326": 0.26, + "1327": 0.27, + "1328": 0.28, + "1329": 0.29, + "1330": 0.3, + "1331": 0.31, + "1332": 0.32, + "1333": 0.33, + "1334": 0.34, + "1335": 0.35, + "1336": 0.36, + "1337": 0.37, + "1338": 0.38, + "1339": 0.39, + "1340": 0.4, + "1341": 0.41, + "1342": 0.42, + "1343": 0.43, + "1344": 0.44, + "1345": 0.45, + "1346": 0.46, + "1347": 0.47, + "1348": 0.48, + "1349": 0.49, + "1350": 0.5, + "1351": 0.51, + "1352": 0.52, + "1353": 0.53, + "1354": 0.54, + "1355": 0.55, + "1356": 0.56, + "1357": 0.57, + "1358": 0.58, + "1359": 0.59, + "1360": 0.6, + "1361": 0.61, + "1362": 0.62, + "1363": 0.63, + "1364": 0.64, + "1365": 0.65, + "1366": 0.66, + "1367": 0.67, + "1368": 0.68, + "1369": 0.69, + "1370": 0.7, + "1371": 0.71, + "1372": 0.72, + "1373": 0.73, + "1374": 0.74, + "1375": 0.75, + "1376": 0.76, + "1377": 0.77, + "1378": 0.78, + "1379": 0.79, + "1380": 0.8, + "1381": 0.81, + "1382": 0.82, + "1383": 0.83, + "1384": 0.84, + "1385": 0.85, + "1386": 0.86, + "1387": 0.87, + "1388": 0.88, + "1389": 0.89, + "1390": 0.9, + "1391": 0.91, + "1392": 0.92, + "1393": 0.93, + "1394": 0.94, + "1395": 0.95, + "1396": 0.96, + "1397": 0.97, + "1398": 0.98, + "1399": 0.99, + "1400": 0.0, + "1401": 0.01, + "1402": 0.02, + "1403": 0.03, + "1404": 0.04, + "1405": 0.05, + "1406": 0.06, + "1407": 0.07, + "1408": 0.08, + "1409": 0.09, + "1410": 0.1, + "1411": 0.11, + "1412": 0.12, + "1413": 0.13, + "1414": 0.14, + "1415": 0.15, + "1416": 0.16, + "1417": 0.17, + "1418": 0.18, + "1419": 0.19, + "1420": 0.2, + "1421": 0.21, + "1422": 0.22, + "1423": 0.23, + "1424": 0.24, + "1425": 0.25, + "1426": 0.26, + "1427": 0.27, + "1428": 0.28, + "1429": 0.29, + "1430": 0.3, + "1431": 0.31, + "1432": 0.32, + "1433": 0.33, + "1434": 0.34, + "1435": 0.35, + "1436": 0.36, + "1437": 0.37, + "1438": 0.38, + "1439": 0.39, + "1440": 0.4, + "1441": 0.41, + "1442": 0.42, + "1443": 0.43, + "1444": 0.44, + "1445": 0.45, + "1446": 0.46, + "1447": 0.47, + "1448": 0.48, + "1449": 0.49, + "1450": 0.5, + "1451": 0.51, + "1452": 0.52, + "1453": 0.53, + "1454": 0.54, + "1455": 0.55, + "1456": 0.56, + "1457": 0.57, + "1458": 0.58, + "1459": 0.59, + "1460": 0.6, + "1461": 0.61, + "1462": 0.62, + "1463": 0.63, + "1464": 0.64, + "1465": 0.65, + "1466": 0.66, + "1467": 0.67, + "1468": 0.68, + "1469": 0.69, + "1470": 0.7, + "1471": 0.71, + "1472": 0.72, + "1473": 0.73, + "1474": 0.74, + "1475": 0.75, + "1476": 0.76, + "1477": 0.77, + "1478": 0.78, + "1479": 0.79, + "1480": 0.8, + "1481": 0.81, + "1482": 0.82, + "1483": 0.83, + "1484": 0.84, + "1485": 0.85, + "1486": 0.86, + "1487": 0.87, + "1488": 0.88, + "1489": 0.89, + "1490": 0.9, + "1491": 0.91, + "1492": 0.92, + "1493": 0.93, + "1494": 0.94, + "1495": 0.95, + "1496": 0.96, + "1497": 0.97, + "1498": 0.98, + "1499": 0.99, + "1500": 0.0, + "1501": 0.01, + "1502": 0.02, + "1503": 0.03, + "1504": 0.04, + "1505": 0.05, + "1506": 0.06, + "1507": 0.07, + "1508": 0.08, + "1509": 0.09, + "1510": 0.1, + "1511": 0.11, + "1512": 0.12, + "1513": 0.13, + "1514": 0.14, + "1515": 0.15, + "1516": 0.16, + "1517": 0.17, + "1518": 0.18, + "1519": 0.19, + "1520": 0.2, + "1521": 0.21, + "1522": 0.22, + "1523": 0.23, + "1524": 0.24, + "1525": 0.25, + "1526": 0.26, + "1527": 0.27, + "1528": 0.28, + "1529": 0.29, + "1530": 0.3, + "1531": 0.31, + "1532": 0.32, + "1533": 0.33, + "1534": 0.34, + "1535": 0.35, + "1536": 0.36, + "1537": 0.37, + "1538": 0.38, + "1539": 0.39, + "1540": 0.4, + "1541": 0.41, + "1542": 0.42, + "1543": 0.43, + "1544": 0.44, + "1545": 0.45, + "1546": 0.46, + "1547": 0.47, + "1548": 0.48, + "1549": 0.49, + "1550": 0.5, + "1551": 0.51, + "1552": 0.52, + "1553": 0.53, + "1554": 0.54, + "1555": 0.55, + "1556": 0.56, + "1557": 0.57, + "1558": 0.58, + "1559": 0.59, + "1560": 0.6, + "1561": 0.61, + "1562": 0.62, + "1563": 0.63, + "1564": 0.64, + "1565": 0.65, + "1566": 0.66, + "1567": 0.67, + "1568": 0.68, + "1569": 0.69, + "1570": 0.7, + "1571": 0.71, + "1572": 0.72, + "1573": 0.73, + "1574": 0.74, + "1575": 0.75, + "1576": 0.76, + "1577": 0.77, + "1578": 0.78, + "1579": 0.79, + "1580": 0.8, + "1581": 0.81, + "1582": 0.82, + "1583": 0.83, + "1584": 0.84, + "1585": 0.85, + "1586": 0.86, + "1587": 0.87, + "1588": 0.88, + "1589": 0.89, + "1590": 0.9, + "1591": 0.91, + "1592": 0.92, + "1593": 0.93, + "1594": 0.94, + "1595": 0.95, + "1596": 0.96, + "1597": 0.97, + "1598": 0.98, + "1599": 0.99, + "1600": 0.0, + "1601": 0.01, + "1602": 0.02, + "1603": 0.03, + "1604": 0.04, + "1605": 0.05, + "1606": 0.06, + "1607": 0.07, + "1608": 0.08, + "1609": 0.09, + "1610": 0.1, + "1611": 0.11, + "1612": 0.12, + "1613": 0.13, + "1614": 0.14, + "1615": 0.15, + "1616": 0.16, + "1617": 0.17, + "1618": 0.18, + "1619": 0.19, + "1620": 0.2, + "1621": 0.21, + "1622": 0.22, + "1623": 0.23, + "1624": 0.24, + "1625": 0.25, + "1626": 0.26, + "1627": 0.27, + "1628": 0.28, + "1629": 0.29, + "1630": 0.3, + "1631": 0.31, + "1632": 0.32, + "1633": 0.33, + "1634": 0.34, + "1635": 0.35, + "1636": 0.36, + "1637": 0.37, + "1638": 0.38, + "1639": 0.39, + "1640": 0.4, + "1641": 0.41, + "1642": 0.42, + "1643": 0.43, + "1644": 0.44, + "1645": 0.45, + "1646": 0.46, + "1647": 0.47, + "1648": 0.48, + "1649": 0.49, + "1650": 0.5, + "1651": 0.51, + "1652": 0.52, + "1653": 0.53, + "1654": 0.54, + "1655": 0.55, + "1656": 0.56, + "1657": 0.57, + "1658": 0.58, + "1659": 0.59, + "1660": 0.6, + "1661": 0.61, + "1662": 0.62, + "1663": 0.63, + "1664": 0.64, + "1665": 0.65, + "1666": 0.66, + "1667": 0.67, + "1668": 0.68, + "1669": 0.69, + "1670": 0.7, + "1671": 0.71, + "1672": 0.72, + "1673": 0.73, + "1674": 0.74, + "1675": 0.75, + "1676": 0.76, + "1677": 0.77, + "1678": 0.78, + "1679": 0.79, + "1680": 0.8, + "1681": 0.81, + "1682": 0.82, + "1683": 0.83, + "1684": 0.84, + "1685": 0.85, + "1686": 0.86, + "1687": 0.87, + "1688": 0.88, + "1689": 0.89, + "1690": 0.9, + "1691": 0.91, + "1692": 0.92, + "1693": 0.93, + "1694": 0.94, + "1695": 0.95, + "1696": 0.96, + "1697": 0.97, + "1698": 0.98, + "1699": 0.99, + "1700": 0.0, + "1701": 0.01, + "1702": 0.02, + "1703": 0.03, + "1704": 0.04, + "1705": 0.05, + "1706": 0.06, + "1707": 0.07, + "1708": 0.08, + "1709": 0.09, + "1710": 0.1, + "1711": 0.11, + "1712": 0.12, + "1713": 0.13, + "1714": 0.14, + "1715": 0.15, + "1716": 0.16, + "1717": 0.17, + "1718": 0.18, + "1719": 0.19, + "1720": 0.2, + "1721": 0.21, + "1722": 0.22, + "1723": 0.23, + "1724": 0.24, + "1725": 0.25, + "1726": 0.26, + "1727": 0.27, + "1728": 0.28, + "1729": 0.29, + "1730": 0.3, + "1731": 0.31, + "1732": 0.32, + "1733": 0.33, + "1734": 0.34, + "1735": 0.35, + "1736": 0.36, + "1737": 0.37, + "1738": 0.38, + "1739": 0.39, + "1740": 0.4, + "1741": 0.41, + "1742": 0.42, + "1743": 0.43, + "1744": 0.44, + "1745": 0.45, + "1746": 0.46, + "1747": 0.47, + "1748": 0.48, + "1749": 0.49, + "1750": 0.5, + "1751": 0.51, + "1752": 0.52, + "1753": 0.53, + "1754": 0.54, + "1755": 0.55, + "1756": 0.56, + "1757": 0.57, + "1758": 0.58, + "1759": 0.59, + "1760": 0.6, + "1761": 0.61, + "1762": 0.62, + "1763": 0.63, + "1764": 0.64, + "1765": 0.65, + "1766": 0.66, + "1767": 0.67, + "1768": 0.68, + "1769": 0.69, + "1770": 0.7, + "1771": 0.71, + "1772": 0.72, + "1773": 0.73, + "1774": 0.74, + "1775": 0.75, + "1776": 0.76, + "1777": 0.77, + "1778": 0.78, + "1779": 0.79, + "1780": 0.8, + "1781": 0.81, + "1782": 0.82, + "1783": 0.83, + "1784": 0.84, + "1785": 0.85, + "1786": 0.86, + "1787": 0.87, + "1788": 0.88, + "1789": 0.89, + "1790": 0.9, + "1791": 0.91, + "1792": 0.92, + "1793": 0.93, + "1794": 0.94, + "1795": 0.95, + "1796": 0.96, + "1797": 0.97, + "1798": 0.98, + "1799": 0.99, + "1800": 0.0, + "1801": 0.01, + "1802": 0.02, + "1803": 0.03, + "1804": 0.04, + "1805": 0.05, + "1806": 0.06, + "1807": 0.07, + "1808": 0.08, + "1809": 0.09, + "1810": 0.1, + "1811": 0.11, + "1812": 0.12, + "1813": 0.13, + "1814": 0.14, + "1815": 0.15, + "1816": 0.16, + "1817": 0.17, + "1818": 0.18, + "1819": 0.19, + "1820": 0.2, + "1821": 0.21, + "1822": 0.22, + "1823": 0.23, + "1824": 0.24, + "1825": 0.25, + "1826": 0.26, + "1827": 0.27, + "1828": 0.28, + "1829": 0.29, + "1830": 0.3, + "1831": 0.31, + "1832": 0.32, + "1833": 0.33, + "1834": 0.34, + "1835": 0.35, + "1836": 0.36, + "1837": 0.37, + "1838": 0.38, + "1839": 0.39, + "1840": 0.4, + "1841": 0.41, + "1842": 0.42, + "1843": 0.43, + "1844": 0.44, + "1845": 0.45, + "1846": 0.46, + "1847": 0.47, + "1848": 0.48, + "1849": 0.49, + "1850": 0.5, + "1851": 0.51, + "1852": 0.52, + "1853": 0.53, + "1854": 0.54, + "1855": 0.55, + "1856": 0.56, + "1857": 0.57, + "1858": 0.58, + "1859": 0.59, + "1860": 0.6, + "1861": 0.61, + "1862": 0.62, + "1863": 0.63, + "1864": 0.64, + "1865": 0.65, + "1866": 0.66, + "1867": 0.67, + "1868": 0.68, + "1869": 0.69, + "1870": 0.7, + "1871": 0.71, + "1872": 0.72, + "1873": 0.73, + "1874": 0.74, + "1875": 0.75, + "1876": 0.76, + "1877": 0.77, + "1878": 0.78, + "1879": 0.79, + "1880": 0.8, + "1881": 0.81, + "1882": 0.82, + "1883": 0.83, + "1884": 0.84, + "1885": 0.85, + "1886": 0.86, + "1887": 0.87, + "1888": 0.88, + "1889": 0.89, + "1890": 0.9, + "1891": 0.91, + "1892": 0.92, + "1893": 0.93, + "1894": 0.94, + "1895": 0.95, + "1896": 0.96, + "1897": 0.97, + "1898": 0.98, + "1899": 0.99, + "1900": 0.0, + "1901": 0.01, + "1902": 0.02, + "1903": 0.03, + "1904": 0.04, + "1905": 0.05, + "1906": 0.06, + "1907": 0.07, + "1908": 0.08, + "1909": 0.09, + "1910": 0.1, + "1911": 0.11, + "1912": 0.12, + "1913": 0.13, + "1914": 0.14, + "1915": 0.15, + "1916": 0.16, + "1917": 0.17, + "1918": 0.18, + "1919": 0.19, + "1920": 0.2, + "1921": 0.21, + "1922": 0.22, + "1923": 0.23, + "1924": 0.24, + "1925": 0.25, + "1926": 0.26, + "1927": 0.27, + "1928": 0.28, + "1929": 0.29, + "1930": 0.3, + "1931": 0.31, + "1932": 0.32, + "1933": 0.33, + "1934": 0.34, + "1935": 0.35, + "1936": 0.36, + "1937": 0.37, + "1938": 0.38, + "1939": 0.39, + "1940": 0.4, + "1941": 0.41, + "1942": 0.42, + "1943": 0.43, + "1944": 0.44, + "1945": 0.45, + "1946": 0.46, + "1947": 0.47, + "1948": 0.48, + "1949": 0.49, + "1950": 0.5, + "1951": 0.51, + "1952": 0.52, + "1953": 0.53, + "1954": 0.54, + "1955": 0.55, + "1956": 0.56, + "1957": 0.57, + "1958": 0.58, + "1959": 0.59, + "1960": 0.6, + "1961": 0.61, + "1962": 0.62, + "1963": 0.63, + "1964": 0.64, + "1965": 0.65, + "1966": 0.66, + "1967": 0.67, + "1968": 0.68, + "1969": 0.69, + "1970": 0.7, + "1971": 0.71, + "1972": 0.72, + "1973": 0.73, + "1974": 0.74, + "1975": 0.75, + "1976": 0.76, + "1977": 0.77, + "1978": 0.78, + "1979": 0.79, + "1980": 0.8, + "1981": 0.81, + "1982": 0.82, + "1983": 0.83, + "1984": 0.84, + "1985": 0.85, + "1986": 0.86, + "1987": 0.87, + "1988": 0.88, + "1989": 0.89, + "1990": 0.9, + "1991": 0.91, + "1992": 0.92, + "1993": 0.93, + "1994": 0.94, + "1995": 0.95, + "1996": 0.96, + "1997": 0.97, + "1998": 0.98, + "1999": 0.99, + "2000": 0.0, + "2001": 0.01, + "2002": 0.02, + "2003": 0.03, + "2004": 0.04, + "2005": 0.05, + "2006": 0.06, + "2007": 0.07, + "2008": 0.08, + "2009": 0.09, + "2010": 0.1, + "2011": 0.11, + "2012": 0.12, + "2013": 0.13, + "2014": 0.14, + "2015": 0.15, + "2016": 0.16, + "2017": 0.17, + "2018": 0.18, + "2019": 0.19, + "2020": 0.2, + "2021": 0.21, + "2022": 0.22, + "2023": 0.23, + "2024": 0.24, + "2025": 0.25, + "2026": 0.26, + "2027": 0.27, + "2028": 0.28, + "2029": 0.29, + "2030": 0.3, + "2031": 0.31, + "2032": 0.32, + "2033": 0.33, + "2034": 0.34, + "2035": 0.35, + "2036": 0.36, + "2037": 0.37, + "2038": 0.38, + "2039": 0.39, + "2040": 0.4, + "2041": 0.41, + "2042": 0.42, + "2043": 0.43, + "2044": 0.44, + "2045": 0.45, + "2046": 0.46, + "2047": 0.47, + "2048": 0.48, + "2049": 0.49, + "2050": 0.5, + "2051": 0.51, + "2052": 0.52, + "2053": 0.53, + "2054": 0.54, + "2055": 0.55, + "2056": 0.56, + "2057": 0.57, + "2058": 0.58, + "2059": 0.59, + "2060": 0.6, + "2061": 0.61, + "2062": 0.62, + "2063": 0.63, + "2064": 0.64, + "2065": 0.65, + "2066": 0.66, + "2067": 0.67, + "2068": 0.68, + "2069": 0.69, + "2070": 0.7, + "2071": 0.71, + "2072": 0.72, + "2073": 0.73, + "2074": 0.74, + "2075": 0.75, + "2076": 0.76, + "2077": 0.77, + "2078": 0.78, + "2079": 0.79, + "2080": 0.8, + "2081": 0.81, + "2082": 0.82, + "2083": 0.83, + "2084": 0.84, + "2085": 0.85, + "2086": 0.86, + "2087": 0.87, + "2088": 0.88, + "2089": 0.89, + "2090": 0.9, + "2091": 0.91, + "2092": 0.92, + "2093": 0.93, + "2094": 0.94, + "2095": 0.95, + "2096": 0.96, + "2097": 0.97, + "2098": 0.98, + "2099": 0.99, + "2100": 0.0, + "2101": 0.01, + "2102": 0.02, + "2103": 0.03, + "2104": 0.04, + "2105": 0.05, + "2106": 0.06, + "2107": 0.07, + "2108": 0.08, + "2109": 0.09, + "2110": 0.1, + "2111": 0.11, + "2112": 0.12, + "2113": 0.13, + "2114": 0.14, + "2115": 0.15, + "2116": 0.16, + "2117": 0.17, + "2118": 0.18, + "2119": 0.19, + "2120": 0.2, + "2121": 0.21, + "2122": 0.22, + "2123": 0.23, + "2124": 0.24, + "2125": 0.25, + "2126": 0.26, + "2127": 0.27, + "2128": 0.28, + "2129": 0.29, + "2130": 0.3, + "2131": 0.31, + "2132": 0.32, + "2133": 0.33, + "2134": 0.34, + "2135": 0.35, + "2136": 0.36, + "2137": 0.37, + "2138": 0.38, + "2139": 0.39, + "2140": 0.4, + "2141": 0.41, + "2142": 0.42, + "2143": 0.43, + "2144": 0.44, + "2145": 0.45, + "2146": 0.46, + "2147": 0.47, + "2148": 0.48, + "2149": 0.49, + "2150": 0.5, + "2151": 0.51, + "2152": 0.52, + "2153": 0.53, + "2154": 0.54, + "2155": 0.55, + "2156": 0.56, + "2157": 0.57, + "2158": 0.58, + "2159": 0.59, + "2160": 0.6, + "2161": 0.61, + "2162": 0.62, + "2163": 0.63, + "2164": 0.64, + "2165": 0.65, + "2166": 0.66, + "2167": 0.67, + "2168": 0.68, + "2169": 0.69, + "2170": 0.7, + "2171": 0.71, + "2172": 0.72, + "2173": 0.73, + "2174": 0.74, + "2175": 0.75, + "2176": 0.76, + "2177": 0.77, + "2178": 0.78, + "2179": 0.79, + "2180": 0.8, + "2181": 0.81, + "2182": 0.82, + "2183": 0.83, + "2184": 0.84, + "2185": 0.85, + "2186": 0.86, + "2187": 0.87, + "2188": 0.88, + "2189": 0.89, + "2190": 0.9, + "2191": 0.91, + "2192": 0.92, + "2193": 0.93, + "2194": 0.94, + "2195": 0.95, + "2196": 0.96, + "2197": 0.97, + "2198": 0.98, + "2199": 0.99, + "2200": 0.0, + "2201": 0.01, + "2202": 0.02, + "2203": 0.03, + "2204": 0.04, + "2205": 0.05, + "2206": 0.06, + "2207": 0.07, + "2208": 0.08, + "2209": 0.09, + "2210": 0.1, + "2211": 0.11, + "2212": 0.12, + "2213": 0.13, + "2214": 0.14, + "2215": 0.15, + "2216": 0.16, + "2217": 0.17, + "2218": 0.18, + "2219": 0.19, + "2220": 0.2, + "2221": 0.21, + "2222": 0.22, + "2223": 0.23, + "2224": 0.24, + "2225": 0.25, + "2226": 0.26, + "2227": 0.27, + "2228": 0.28, + "2229": 0.29, + "2230": 0.3, + "2231": 0.31, + "2232": 0.32, + "2233": 0.33, + "2234": 0.34, + "2235": 0.35, + "2236": 0.36, + "2237": 0.37, + "2238": 0.38, + "2239": 0.39, + "2240": 0.4, + "2241": 0.41, + "2242": 0.42, + "2243": 0.43, + "2244": 0.44, + "2245": 0.45, + "2246": 0.46, + "2247": 0.47, + "2248": 0.48, + "2249": 0.49, + "2250": 0.5, + "2251": 0.51, + "2252": 0.52, + "2253": 0.53, + "2254": 0.54, + "2255": 0.55, + "2256": 0.56, + "2257": 0.57, + "2258": 0.58, + "2259": 0.59, + "2260": 0.6, + "2261": 0.61, + "2262": 0.62, + "2263": 0.63, + "2264": 0.64, + "2265": 0.65, + "2266": 0.66, + "2267": 0.67, + "2268": 0.68, + "2269": 0.69, + "2270": 0.7, + "2271": 0.71, + "2272": 0.72, + "2273": 0.73, + "2274": 0.74, + "2275": 0.75, + "2276": 0.76, + "2277": 0.77, + "2278": 0.78, + "2279": 0.79, + "2280": 0.8, + "2281": 0.81, + "2282": 0.82, + "2283": 0.83, + "2284": 0.84, + "2285": 0.85, + "2286": 0.86, + "2287": 0.87, + "2288": 0.88, + "2289": 0.89, + "2290": 0.9, + "2291": 0.91, + "2292": 0.92, + "2293": 0.93, + "2294": 0.94, + "2295": 0.95, + "2296": 0.96, + "2297": 0.97, + "2298": 0.98, + "2299": 0.99 + }, + "y": { + "0": 21.8640231806, + "1": 21.8159368964, + "2": 21.7678506122, + "3": 23.5839469408, + "4": 25.4730427043, + "5": 32.5207113693, + "6": 39.9803998353, + "7": 55.2112275512, + "8": 71.3910645463, + "9": 88.9826533931, + "10": 106.8035562326, + "11": 119.0197382706, + "12": 128.6862178169, + "13": 129.0865351187, + "14": 128.1207508393, + "15": 121.563489846, + "16": 113.9308373446, + "17": 105.032471564, + "18": 95.8375735905, + "19": 88.0433512906, + "20": 80.6604039517, + "21": 75.5061145151, + "22": 70.6734905615, + "23": 68.2372517487, + "24": 66.3477886162, + "25": 65.350481945, + "26": 64.6546608474, + "27": 63.8984525102, + "28": 63.1152041691, + "29": 61.2453955466, + "30": 58.8829843344, + "31": 55.685387737, + "32": 52.0724923408, + "33": 48.1174599661, + "34": 44.5521555575, + "35": 41.699303444, + "36": 39.2280054839, + "37": 37.6017880471, + "38": 36.4811809904, + "39": 35.9782982642, + "40": 35.8800516873, + "41": 36.0597662465, + "42": 36.4319145922, + "43": 36.8347325079, + "44": 37.2934580668, + "45": 37.5587723815, + "46": 37.7006723213, + "47": 37.6583627502, + "48": 37.4522094551, + "49": 37.1211139839, + "50": 36.6709385414, + "51": 36.1768056025, + "52": 35.6407291997, + "53": 35.1205431828, + "54": 34.6226238968, + "55": 34.1214348778, + "56": 33.7235519957, + "57": 33.3649858768, + "58": 33.0587218739, + "59": 32.7782049396, + "60": 32.5339855697, + "61": 32.2962902577, + "62": 32.0669435703, + "63": 31.8315605924, + "64": 31.5846435277, + "65": 31.3282255126, + "66": 31.027464563, + "67": 30.7466828544, + "68": 30.4538423518, + "69": 30.1595473052, + "70": 29.8622093743, + "71": 29.5627953307, + "72": 29.2583743658, + "73": 28.946564759, + "74": 28.614722408, + "75": 28.2700341397, + "76": 27.8892940086, + "77": 27.4548320733, + "78": 27.0170929646, + "79": 26.5733826063, + "80": 26.1065432432, + "81": 25.6420935086, + "82": 25.1901254316, + "83": 24.7486168732, + "84": 24.3583028212, + "85": 23.9835200024, + "86": 23.6844904822, + "87": 23.4017587485, + "88": 23.173873837, + "89": 22.9797397862, + "90": 22.8406306312, + "91": 22.7039850627, + "92": 22.5892079023, + "93": 22.4752671799, + "94": 22.3647420788, + "95": 22.2545915479, + "96": 22.1493949211, + "97": 22.0449025999, + "98": 21.9579521079, + "99": 21.8640231806, + "100": 50.0930464481, + "101": 49.6877940677, + "102": 49.2812383933, + "103": 49.1645772934, + "104": 49.1310146447, + "105": 49.9796947263, + "106": 51.1683580242, + "107": 53.8654897644, + "108": 57.299774658, + "109": 61.579965939, + "110": 66.5580142675, + "111": 71.3167236964, + "112": 76.0964251179, + "113": 79.7254265425, + "114": 83.0644326627, + "115": 85.3847957793, + "116": 87.179162323, + "117": 88.375506274, + "118": 89.0881797865, + "119": 89.581466457, + "120": 89.7687213085, + "121": 89.9638906694, + "122": 89.9666578443, + "123": 90.125355681, + "124": 90.2509568297, + "125": 90.4271542688, + "126": 90.5993151112, + "127": 90.7259952062, + "128": 90.8114051133, + "129": 90.6899289638, + "130": 90.4130068054, + "131": 89.9081561709, + "132": 89.2108617512, + "133": 88.3187473127, + "134": 87.3365756916, + "135": 86.3339486533, + "136": 85.2918679442, + "137": 84.3018556767, + "138": 83.3467799853, + "139": 82.4667760359, + "140": 81.6539812778, + "141": 80.9053319278, + "142": 80.2182045363, + "143": 79.5741581663, + "144": 78.9771456192, + "145": 78.3888277483, + "146": 77.8111088029, + "147": 77.2280326089, + "148": 76.6345075521, + "149": 76.0293381129, + "150": 75.4080884584, + "151": 74.7776689249, + "152": 74.136690666, + "153": 73.4927847042, + "154": 72.8478291352, + "155": 72.1990687138, + "156": 71.5633367455, + "157": 70.9349167507, + "158": 70.3176822496, + "159": 69.7095697827, + "160": 69.1132358473, + "161": 68.5253367786, + "162": 67.9463015002, + "163": 67.3740452443, + "164": 66.8073326312, + "165": 66.245853726, + "166": 65.6835852485, + "167": 65.1285850172, + "168": 64.5762941746, + "169": 64.0276599991, + "170": 63.4820821596, + "171": 62.9405565741, + "172": 62.4051284623, + "173": 61.8779635451, + "174": 61.3591285584, + "175": 60.8508113995, + "176": 60.350072512, + "177": 59.8531922492, + "178": 59.3655697836, + "179": 58.8855277005, + "180": 58.4084627981, + "181": 57.935228419, + "182": 57.464915806, + "183": 56.9950177737, + "184": 56.5296968417, + "185": 56.0631130452, + "186": 55.6036740366, + "187": 55.1441620431, + "188": 54.6912116077, + "189": 54.2440907364, + "190": 53.8082262953, + "191": 53.3783317024, + "192": 52.9576814517, + "193": 52.5427229936, + "194": 52.1321493285, + "195": 51.7237998196, + "196": 51.3167881799, + "197": 50.9092394432, + "198": 50.5026662853, + "199": 50.0930464481, + "200": 31.3592037268, + "201": 31.3383893823, + "202": 31.3217262025, + "203": 31.3320635607, + "204": 31.3864657459, + "205": 31.5635337415, + "206": 31.9256730352, + "207": 32.5996651131, + "208": 33.6854439526, + "209": 35.2120661289, + "210": 37.1829119057, + "211": 39.495406578, + "212": 42.0383373626, + "213": 44.6613494423, + "214": 47.1981311598, + "215": 49.5392106547, + "216": 51.5963380561, + "217": 53.3377878131, + "218": 54.7509113363, + "219": 55.8634137859, + "220": 56.7090777376, + "221": 57.3398508306, + "222": 57.7966617991, + "223": 58.1312075307, + "224": 58.387084607, + "225": 58.591868392, + "226": 58.7637126951, + "227": 58.9078683697, + "228": 59.0241508934, + "229": 59.0981899544, + "230": 59.1078644975, + "231": 59.0311081054, + "232": 58.8521715637, + "233": 58.5621130154, + "234": 58.1674267651, + "235": 57.6870897307, + "236": 57.1397029398, + "237": 56.5471297276, + "238": 55.9303599849, + "239": 55.3079726677, + "240": 54.6952715445, + "241": 54.1033388007, + "242": 53.5396050689, + "243": 53.0101897871, + "244": 52.5195974402, + "245": 52.0653436336, + "246": 51.6405659244, + "247": 51.236846107, + "248": 50.8452534271, + "249": 50.4581031034, + "250": 50.0692789137, + "251": 49.675036165, + "252": 49.2734399512, + "253": 48.8640527599, + "254": 48.4473948885, + "255": 48.0238044675, + "256": 47.5952364086, + "257": 47.1643116501, + "258": 46.733515729, + "259": 46.3049940068, + "260": 45.8804075674, + "261": 45.4603961668, + "262": 45.0447247513, + "263": 44.6327923685, + "264": 44.2241903287, + "265": 43.8192761794, + "266": 43.41862411, + "267": 43.0236521777, + "268": 42.6355331979, + "269": 42.2542021619, + "270": 41.878417467, + "271": 41.454648514, + "272": 40.9528917849, + "273": 40.3953134906, + "274": 39.7833544775, + "275": 39.1345427159, + "276": 38.4635692987, + "277": 37.7897384708, + "278": 37.1315184978, + "279": 36.50678097, + "280": 35.9293760173, + "281": 35.4094967744, + "282": 34.9534671466, + "283": 34.562919075, + "284": 34.2339060325, + "285": 33.9551525191, + "286": 33.7095926794, + "287": 33.4773630103, + "288": 33.2414122607, + "289": 32.9916545809, + "290": 32.7253581346, + "291": 32.4430871608, + "292": 32.1732323507, + "293": 31.9449497767, + "294": 31.7621353269, + "295": 31.6205815395, + "296": 31.5153302396, + "297": 31.440956356, + "298": 31.3911344545, + "299": 31.3592037268, + "300": 4.6219469039, + "301": 4.2513797018, + "302": 3.873878265, + "303": 3.499553484, + "304": 3.1387610726, + "305": 2.801761909, + "306": 2.4984266606, + "307": 2.2379903898, + "308": 2.0288139972, + "309": 1.878156295, + "310": 1.7920145714, + "311": 1.7750070133, + "312": 1.8084706685, + "313": 1.8257232351, + "314": 1.8532211753, + "315": 1.8776743867, + "316": 1.9055751062, + "317": 1.9334650747, + "318": 1.9628318541, + "319": 1.9926860881, + "320": 2.0232923188, + "321": 2.0543173857, + "322": 2.0857615442, + "323": 2.1174948673, + "324": 2.1494897912, + "325": 2.1816989553, + "326": 2.214106738, + "327": 2.2466939829, + "328": 2.2794477969, + "329": 2.3083868997, + "330": 2.3352745862, + "331": 2.3635206256, + "332": 2.3936425204, + "333": 2.4255782774, + "334": 2.4570968622, + "335": 2.4887627701, + "336": 2.5207381407, + "337": 2.5527029447, + "338": 2.5845952739, + "339": 2.6163076237, + "340": 2.6478054927, + "341": 2.6779867094, + "342": 2.7056224356, + "343": 2.7256726254, + "344": 2.7325940159, + "345": 2.7248652517, + "346": 2.7043087536, + "347": 2.6745434816, + "348": 2.6398599385, + "349": 2.6042678989, + "350": 2.5708415632, + "351": 2.5414926634, + "352": 2.5171868044, + "353": 2.4983896886, + "354": 2.4854182134, + "355": 2.4784843549, + "356": 2.4774717763, + "357": 2.4816933654, + "358": 2.4899090087, + "359": 2.5007076586, + "360": 2.5130771788, + "361": 2.526800406, + "362": 2.5423803299, + "363": 2.5604771899, + "364": 2.5811475482, + "365": 2.6033237077, + "366": 2.6248777992, + "367": 2.6433148398, + "368": 2.6567831949, + "369": 2.6648956951, + "370": 2.6689492952, + "371": 2.7424229981, + "372": 2.9284541567, + "373": 3.199460161, + "374": 3.5552495682, + "375": 3.9732699062, + "376": 4.4337667872, + "377": 4.9092054273, + "378": 5.3731658243, + "379": 5.8000896717, + "380": 6.1688882745, + "381": 6.4631647749, + "382": 6.6720783003, + "383": 6.7911792652, + "384": 6.8245186765, + "385": 6.7863359385, + "386": 6.7001088781, + "387": 6.5935403675, + "388": 6.4912228943, + "389": 6.4089358043, + "390": 6.3529575718, + "391": 6.3242876878, + "392": 6.2850861702, + "393": 6.1950726384, + "394": 6.0473094129, + "395": 5.8457511406, + "396": 5.5956228138, + "397": 5.3029785382, + "398": 4.9756524013, + "399": 4.6219469039, + "400": 31.3592037268, + "401": 31.3383893823, + "402": 31.3217262025, + "403": 31.3320635607, + "404": 31.3864657459, + "405": 31.5635337415, + "406": 31.9256730352, + "407": 32.5996651131, + "408": 33.6854439526, + "409": 35.2120661289, + "410": 37.1829119057, + "411": 39.495406578, + "412": 42.0383373626, + "413": 44.6613494423, + "414": 47.1981311598, + "415": 49.5392106547, + "416": 51.5963380561, + "417": 53.3377878131, + "418": 54.7509113363, + "419": 55.8634137859, + "420": 56.7090777376, + "421": 57.3398508306, + "422": 57.7966617991, + "423": 58.1312075307, + "424": 58.387084607, + "425": 58.591868392, + "426": 58.7637126951, + "427": 58.9078683697, + "428": 59.0241508934, + "429": 59.0981899544, + "430": 59.1078644975, + "431": 59.0311081054, + "432": 58.8521715637, + "433": 58.5621130154, + "434": 58.1674267651, + "435": 57.6870897307, + "436": 57.1397029398, + "437": 56.5471297276, + "438": 55.9303599849, + "439": 55.3079726677, + "440": 54.6952715445, + "441": 54.1033388007, + "442": 53.5396050689, + "443": 53.0101897871, + "444": 52.5195974402, + "445": 52.0653436336, + "446": 51.6405659244, + "447": 51.236846107, + "448": 50.8452534271, + "449": 50.4581031034, + "450": 50.0692789137, + "451": 49.675036165, + "452": 49.2734399512, + "453": 48.8640527599, + "454": 48.4473948885, + "455": 48.0238044675, + "456": 47.5952364086, + "457": 47.1643116501, + "458": 46.733515729, + "459": 46.3049940068, + "460": 45.8804075674, + "461": 45.4603961668, + "462": 45.0447247513, + "463": 44.6327923685, + "464": 44.2241903287, + "465": 43.8192761794, + "466": 43.41862411, + "467": 43.0236521777, + "468": 42.6355331979, + "469": 42.2542021619, + "470": 41.878417467, + "471": 41.454648514, + "472": 40.9528917849, + "473": 40.3953134906, + "474": 39.7833544775, + "475": 39.1345427159, + "476": 38.4635692987, + "477": 37.7897384708, + "478": 37.1315184978, + "479": 36.50678097, + "480": 35.9293760173, + "481": 35.4094967744, + "482": 34.9534671466, + "483": 34.562919075, + "484": 34.2339060325, + "485": 33.9551525191, + "486": 33.7095926794, + "487": 33.4773630103, + "488": 33.2414122607, + "489": 32.9916545809, + "490": 32.7253581346, + "491": 32.4430871608, + "492": 32.1732323507, + "493": 31.9449497767, + "494": 31.7621353269, + "495": 31.6205815395, + "496": 31.5153302396, + "497": 31.440956356, + "498": 31.3911344545, + "499": 31.3592037268, + "500": 4.6219469039, + "501": 4.2513797018, + "502": 3.873878265, + "503": 3.499553484, + "504": 3.1387610726, + "505": 2.801761909, + "506": 2.4984266606, + "507": 2.2379903898, + "508": 2.0288139972, + "509": 1.878156295, + "510": 1.7920145714, + "511": 1.7750070133, + "512": 1.8084706685, + "513": 1.8257232351, + "514": 1.8532211753, + "515": 1.8776743867, + "516": 1.9055751062, + "517": 1.9334650747, + "518": 1.9628318541, + "519": 1.9926860881, + "520": 2.0232923188, + "521": 2.0543173857, + "522": 2.0857615442, + "523": 2.1174948673, + "524": 2.1494897912, + "525": 2.1816989553, + "526": 2.214106738, + "527": 2.2466939829, + "528": 2.2794477969, + "529": 2.3083868997, + "530": 2.3352745862, + "531": 2.3635206256, + "532": 2.3936425204, + "533": 2.4255782774, + "534": 2.4570968622, + "535": 2.4887627701, + "536": 2.5207381407, + "537": 2.5527029447, + "538": 2.5845952739, + "539": 2.6163076237, + "540": 2.6478054927, + "541": 2.6779867094, + "542": 2.7056224356, + "543": 2.7256726254, + "544": 2.7325940159, + "545": 2.7248652517, + "546": 2.7043087536, + "547": 2.6745434816, + "548": 2.6398599385, + "549": 2.6042678989, + "550": 2.5708415632, + "551": 2.5414926634, + "552": 2.5171868044, + "553": 2.4983896886, + "554": 2.4854182134, + "555": 2.4784843549, + "556": 2.4774717763, + "557": 2.4816933654, + "558": 2.4899090087, + "559": 2.5007076586, + "560": 2.5130771788, + "561": 2.526800406, + "562": 2.5423803299, + "563": 2.5604771899, + "564": 2.5811475482, + "565": 2.6033237077, + "566": 2.6248777992, + "567": 2.6433148398, + "568": 2.6567831949, + "569": 2.6648956951, + "570": 2.6689492952, + "571": 2.7424229981, + "572": 2.9284541567, + "573": 3.199460161, + "574": 3.5552495682, + "575": 3.9732699062, + "576": 4.4337667872, + "577": 4.9092054273, + "578": 5.3731658243, + "579": 5.8000896717, + "580": 6.1688882745, + "581": 6.4631647749, + "582": 6.6720783003, + "583": 6.7911792652, + "584": 6.8245186765, + "585": 6.7863359385, + "586": 6.7001088781, + "587": 6.5935403675, + "588": 6.4912228943, + "589": 6.4089358043, + "590": 6.3529575718, + "591": 6.3242876878, + "592": 6.2850861702, + "593": 6.1950726384, + "594": 6.0473094129, + "595": 5.8457511406, + "596": 5.5956228138, + "597": 5.3029785382, + "598": 4.9756524013, + "599": 4.6219469039, + "600": 21.8640231806, + "601": 21.8159368964, + "602": 21.7678506122, + "603": 23.5839469408, + "604": 25.4730427043, + "605": 32.5207113693, + "606": 39.9803998353, + "607": 55.2112275512, + "608": 71.3910645463, + "609": 88.9826533931, + "610": 106.8035562326, + "611": 119.0197382706, + "612": 128.6862178169, + "613": 129.0865351187, + "614": 128.1207508393, + "615": 121.563489846, + "616": 113.9308373446, + "617": 105.032471564, + "618": 95.8375735905, + "619": 88.0433512906, + "620": 80.6604039517, + "621": 75.5061145151, + "622": 70.6734905615, + "623": 68.2372517487, + "624": 66.3477886162, + "625": 65.350481945, + "626": 64.6546608474, + "627": 63.8984525102, + "628": 63.1152041691, + "629": 61.2453955466, + "630": 58.8829843344, + "631": 55.685387737, + "632": 52.0724923408, + "633": 48.1174599661, + "634": 44.5521555575, + "635": 41.699303444, + "636": 39.2280054839, + "637": 37.6017880471, + "638": 36.4811809904, + "639": 35.9782982642, + "640": 35.8800516873, + "641": 36.0597662465, + "642": 36.4319145922, + "643": 36.8347325079, + "644": 37.2934580668, + "645": 37.5587723815, + "646": 37.7006723213, + "647": 37.6583627502, + "648": 37.4522094551, + "649": 37.1211139839, + "650": 36.6709385414, + "651": 36.1768056025, + "652": 35.6407291997, + "653": 35.1205431828, + "654": 34.6226238968, + "655": 34.1214348778, + "656": 33.7235519957, + "657": 33.3649858768, + "658": 33.0587218739, + "659": 32.7782049396, + "660": 32.5339855697, + "661": 32.2962902577, + "662": 32.0669435703, + "663": 31.8315605924, + "664": 31.5846435277, + "665": 31.3282255126, + "666": 31.027464563, + "667": 30.7466828544, + "668": 30.4538423518, + "669": 30.1595473052, + "670": 29.8622093743, + "671": 29.5627953307, + "672": 29.2583743658, + "673": 28.946564759, + "674": 28.614722408, + "675": 28.2700341397, + "676": 27.8892940086, + "677": 27.4548320733, + "678": 27.0170929646, + "679": 26.5733826063, + "680": 26.1065432432, + "681": 25.6420935086, + "682": 25.1901254316, + "683": 24.7486168732, + "684": 24.3583028212, + "685": 23.9835200024, + "686": 23.6844904822, + "687": 23.4017587485, + "688": 23.173873837, + "689": 22.9797397862, + "690": 22.8406306312, + "691": 22.7039850627, + "692": 22.5892079023, + "693": 22.4752671799, + "694": 22.3647420788, + "695": 22.2545915479, + "696": 22.1493949211, + "697": 22.0449025999, + "698": 21.9579521079, + "699": 21.8640231806, + "700": 82.329258581, + "701": 81.939227797, + "702": 81.5487327704, + "703": 81.1569122676, + "704": 80.7335396586, + "705": 80.2384514634, + "706": 79.61261265, + "707": 78.7676409688, + "708": 78.8648802451, + "709": 80.9298318669, + "710": 83.8758886132, + "711": 86.3404742924, + "712": 88.1521570848, + "713": 89.7080125988, + "714": 91.2250282032, + "715": 92.7175321471, + "716": 94.5073289831, + "717": 96.4442440312, + "718": 98.2657448332, + "719": 99.9977424629, + "720": 101.6962805056, + "721": 103.3523034725, + "722": 104.9295581911, + "723": 106.3673312189, + "724": 107.6197066208, + "725": 108.676384758, + "726": 109.5479962309, + "727": 110.2335192115, + "728": 110.6747508921, + "729": 110.7402952894, + "730": 110.2273782267, + "731": 109.2865632483, + "732": 111.8344377751, + "733": 112.5187244213, + "734": 113.7177458475, + "735": 113.9781458724, + "736": 114.2783469024, + "737": 114.1375891321, + "738": 113.9186713563, + "739": 113.5398699925, + "740": 113.0745177987, + "741": 112.5668839206, + "742": 111.9765668299, + "743": 111.3614700208, + "744": 110.7321088376, + "745": 110.0900606555, + "746": 109.436979344, + "747": 108.7794984056, + "748": 108.1222185554, + "749": 107.4682808071, + "750": 106.8202801981, + "751": 106.1797313206, + "752": 105.5476119267, + "753": 104.9243207863, + "754": 104.309788459, + "755": 103.7040126478, + "756": 103.1060387289, + "757": 102.5146162314, + "758": 101.9287444937, + "759": 101.347739871, + "760": 100.7711315302, + "761": 100.1987718654, + "762": 99.6306875908, + "763": 99.0669218403, + "764": 98.5074866829, + "765": 97.9522930444, + "766": 97.4015643671, + "767": 96.8553053936, + "768": 96.313568363, + "769": 95.7766588982, + "770": 95.2449228904, + "771": 94.7186573922, + "772": 94.1980962711, + "773": 93.683409559, + "774": 93.1748322701, + "775": 92.6726303015, + "776": 92.1708637855, + "777": 91.6738303488, + "778": 91.184747729, + "779": 90.7035574098, + "780": 90.2305576619, + "781": 89.7659017404, + "782": 89.3094719693, + "783": 88.8610664105, + "784": 88.4201050978, + "785": 87.9860398714, + "786": 87.5579835378, + "787": 87.1351946712, + "788": 86.7169587978, + "789": 86.3025311985, + "790": 85.8913116859, + "791": 85.4864407123, + "792": 85.0866769968, + "793": 84.689143785, + "794": 84.2930210596, + "795": 83.8980117259, + "796": 83.5040126612, + "797": 83.1111910847, + "798": 82.7196151224, + "799": 82.329258581, + "800": 21.8640231806, + "801": 21.8159368964, + "802": 21.7678506122, + "803": 23.5839469408, + "804": 25.4730427043, + "805": 32.5207113693, + "806": 39.9803998353, + "807": 55.2112275512, + "808": 71.3910645463, + "809": 88.9826533931, + "810": 106.8035562326, + "811": 119.0197382706, + "812": 128.6862178169, + "813": 129.0865351187, + "814": 128.1207508393, + "815": 121.563489846, + "816": 113.9308373446, + "817": 105.032471564, + "818": 95.8375735905, + "819": 88.0433512906, + "820": 80.6604039517, + "821": 75.5061145151, + "822": 70.6734905615, + "823": 68.2372517487, + "824": 66.3477886162, + "825": 65.350481945, + "826": 64.6546608474, + "827": 63.8984525102, + "828": 63.1152041691, + "829": 61.2453955466, + "830": 58.8829843344, + "831": 55.685387737, + "832": 52.0724923408, + "833": 48.1174599661, + "834": 44.5521555575, + "835": 41.699303444, + "836": 39.2280054839, + "837": 37.6017880471, + "838": 36.4811809904, + "839": 35.9782982642, + "840": 35.8800516873, + "841": 36.0597662465, + "842": 36.4319145922, + "843": 36.8347325079, + "844": 37.2934580668, + "845": 37.5587723815, + "846": 37.7006723213, + "847": 37.6583627502, + "848": 37.4522094551, + "849": 37.1211139839, + "850": 36.6709385414, + "851": 36.1768056025, + "852": 35.6407291997, + "853": 35.1205431828, + "854": 34.6226238968, + "855": 34.1214348778, + "856": 33.7235519957, + "857": 33.3649858768, + "858": 33.0587218739, + "859": 32.7782049396, + "860": 32.5339855697, + "861": 32.2962902577, + "862": 32.0669435703, + "863": 31.8315605924, + "864": 31.5846435277, + "865": 31.3282255126, + "866": 31.027464563, + "867": 30.7466828544, + "868": 30.4538423518, + "869": 30.1595473052, + "870": 29.8622093743, + "871": 29.5627953307, + "872": 29.2583743658, + "873": 28.946564759, + "874": 28.614722408, + "875": 28.2700341397, + "876": 27.8892940086, + "877": 27.4548320733, + "878": 27.0170929646, + "879": 26.5733826063, + "880": 26.1065432432, + "881": 25.6420935086, + "882": 25.1901254316, + "883": 24.7486168732, + "884": 24.3583028212, + "885": 23.9835200024, + "886": 23.6844904822, + "887": 23.4017587485, + "888": 23.173873837, + "889": 22.9797397862, + "890": 22.8406306312, + "891": 22.7039850627, + "892": 22.5892079023, + "893": 22.4752671799, + "894": 22.3647420788, + "895": 22.2545915479, + "896": 22.1493949211, + "897": 22.0449025999, + "898": 21.9579521079, + "899": 21.8640231806, + "900": 82.329258581, + "901": 81.939227797, + "902": 81.5487327704, + "903": 81.1569122676, + "904": 80.7335396586, + "905": 80.2384514634, + "906": 79.61261265, + "907": 78.7676409688, + "908": 78.8648802451, + "909": 80.9298318669, + "910": 83.8758886132, + "911": 86.3404742924, + "912": 88.1521570848, + "913": 89.7080125988, + "914": 91.2250282032, + "915": 92.7175321471, + "916": 94.5073289831, + "917": 96.4442440312, + "918": 98.2657448332, + "919": 99.9977424629, + "920": 101.6962805056, + "921": 103.3523034725, + "922": 104.9295581911, + "923": 106.3673312189, + "924": 107.6197066208, + "925": 108.676384758, + "926": 109.5479962309, + "927": 110.2335192115, + "928": 110.6747508921, + "929": 110.7402952894, + "930": 110.2273782267, + "931": 109.2865632483, + "932": 111.8344377751, + "933": 112.5187244213, + "934": 113.7177458475, + "935": 113.9781458724, + "936": 114.2783469024, + "937": 114.1375891321, + "938": 113.9186713563, + "939": 113.5398699925, + "940": 113.0745177987, + "941": 112.5668839206, + "942": 111.9765668299, + "943": 111.3614700208, + "944": 110.7321088376, + "945": 110.0900606555, + "946": 109.436979344, + "947": 108.7794984056, + "948": 108.1222185554, + "949": 107.4682808071, + "950": 106.8202801981, + "951": 106.1797313206, + "952": 105.5476119267, + "953": 104.9243207863, + "954": 104.309788459, + "955": 103.7040126478, + "956": 103.1060387289, + "957": 102.5146162314, + "958": 101.9287444937, + "959": 101.347739871, + "960": 100.7711315302, + "961": 100.1987718654, + "962": 99.6306875908, + "963": 99.0669218403, + "964": 98.5074866829, + "965": 97.9522930444, + "966": 97.4015643671, + "967": 96.8553053936, + "968": 96.313568363, + "969": 95.7766588982, + "970": 95.2449228904, + "971": 94.7186573922, + "972": 94.1980962711, + "973": 93.683409559, + "974": 93.1748322701, + "975": 92.6726303015, + "976": 92.1708637855, + "977": 91.6738303488, + "978": 91.184747729, + "979": 90.7035574098, + "980": 90.2305576619, + "981": 89.7659017404, + "982": 89.3094719693, + "983": 88.8610664105, + "984": 88.4201050978, + "985": 87.9860398714, + "986": 87.5579835378, + "987": 87.1351946712, + "988": 86.7169587978, + "989": 86.3025311985, + "990": 85.8913116859, + "991": 85.4864407123, + "992": 85.0866769968, + "993": 84.689143785, + "994": 84.2930210596, + "995": 83.8980117259, + "996": 83.5040126612, + "997": 83.1111910847, + "998": 82.7196151224, + "999": 82.329258581, + "1000": 47.1598430641, + "1001": 46.761041777, + "1002": 46.3609371958, + "1003": 46.0006347564, + "1004": 45.7136374108, + "1005": 45.6168261066, + "1006": 45.804722836, + "1007": 46.4585382557, + "1008": 47.7221909545, + "1009": 49.6423541881, + "1010": 52.2296104797, + "1011": 55.3494382538, + "1012": 58.832317481, + "1013": 62.4076136907, + "1014": 65.8761861626, + "1015": 69.0762492308, + "1016": 71.8945866129, + "1017": 74.2847052138, + "1018": 76.2309351321, + "1019": 77.7698682985, + "1020": 78.9475943885, + "1021": 79.8342457832, + "1022": 80.485341439, + "1023": 80.970876833, + "1024": 81.3499619635, + "1025": 81.6599546917, + "1026": 81.9254645387, + "1027": 82.1535949859, + "1028": 82.3440828407, + "1029": 82.4734538904, + "1030": 82.5134648282, + "1031": 82.4375929358, + "1032": 82.22499234, + "1033": 81.863471665, + "1034": 81.3596092219, + "1035": 80.739711172, + "1036": 80.0291714368, + "1037": 79.2573269992, + "1038": 78.4525881595, + "1039": 77.6400492553, + "1040": 76.8404349257, + "1041": 76.0676756784, + "1042": 75.3306221238, + "1043": 74.6325350649, + "1044": 73.9739814487, + "1045": 73.3500699069, + "1046": 72.7533141456, + "1047": 72.1759140606, + "1048": 71.6100458324, + "1049": 71.0492950415, + "1050": 70.4884394015, + "1051": 69.9243110714, + "1052": 69.3552510092, + "1053": 68.7811314436, + "1054": 68.2029750416, + "1055": 67.6214524434, + "1056": 67.0390990966, + "1057": 66.4587831192, + "1058": 65.8826359606, + "1059": 65.3121566967, + "1060": 64.7485864058, + "1061": 64.192575736, + "1062": 63.6443088333, + "1063": 63.1036307614, + "1064": 62.5700437064, + "1065": 62.0429649746, + "1066": 61.5210455687, + "1067": 61.0037140615, + "1068": 60.49070971, + "1069": 59.9815571624, + "1070": 59.4758691738, + "1071": 58.9745119635, + "1072": 58.4799239384, + "1073": 57.9945903433, + "1074": 57.5202742037, + "1075": 57.0581992568, + "1076": 56.6085391773, + "1077": 56.169944858, + "1078": 55.7410479903, + "1079": 55.3205325878, + "1080": 54.906097275, + "1081": 54.4951719011, + "1082": 54.0854937963, + "1083": 53.6748270586, + "1084": 53.2618693393, + "1085": 52.8455651379, + "1086": 52.4262429181, + "1087": 52.0046612575, + "1088": 51.582283091, + "1089": 51.1612065871, + "1090": 50.7440045596, + "1091": 50.332441874, + "1092": 49.9271897388, + "1093": 49.5275171826, + "1094": 49.1317711911, + "1095": 48.7381991048, + "1096": 48.3453002887, + "1097": 47.9517698883, + "1098": 47.5568617143, + "1099": 47.1598430641, + "1100": 37.7603678227, + "1101": 38.0725172239, + "1102": 38.3856828135, + "1103": 38.6989825576, + "1104": 39.0125187374, + "1105": 39.3271554677, + "1106": 39.6444222927, + "1107": 39.9668368944, + "1108": 40.2980307911, + "1109": 40.64227913, + "1110": 41.0040117106, + "1111": 41.3871472066, + "1112": 41.7945573447, + "1113": 42.2277730242, + "1114": 42.686758456, + "1115": 43.1701232316, + "1116": 43.6754613275, + "1117": 44.1997908386, + "1118": 44.7399045538, + "1119": 45.2926743691, + "1120": 45.8552610618, + "1121": 46.4252613083, + "1122": 47.0007257191, + "1123": 47.5801777834, + "1124": 48.162609163, + "1125": 48.7473659125, + "1126": 49.3340247159, + "1127": 49.9222776823, + "1128": 50.5118457571, + "1129": 51.0312945625, + "1130": 51.5128109605, + "1131": 52.0174666247, + "1132": 52.5542815978, + "1133": 53.1219036851, + "1134": 53.6805515687, + "1135": 54.2403216282, + "1136": 54.8040174428, + "1137": 55.3659952864, + "1138": 55.9251794881, + "1139": 56.4797112576, + "1140": 57.0290241565, + "1141": 57.553992687, + "1142": 58.0335096807, + "1143": 58.3806574356, + "1144": 58.5003361676, + "1145": 58.3666655818, + "1146": 58.0107177577, + "1147": 57.4941938669, + "1148": 56.890641338, + "1149": 56.2693972545, + "1150": 55.6842188892, + "1151": 55.1690374522, + "1152": 54.7413997398, + "1153": 54.4100724302, + "1154": 54.1811185556, + "1155": 54.0586265311, + "1156": 54.0407311513, + "1157": 54.1153200696, + "1158": 54.2603982547, + "1159": 54.4509296314, + "1160": 54.6689585018, + "1161": 54.9105797393, + "1162": 55.1845529753, + "1163": 55.502335115, + "1164": 55.8647101951, + "1165": 56.2527682276, + "1166": 56.6292262426, + "1167": 56.9506832214, + "1168": 57.1851861324, + "1169": 57.326308421, + "1170": 57.3967905112, + "1171": 57.4321837097, + "1172": 57.4502923257, + "1173": 57.4324555824, + "1174": 57.3248003891, + "1175": 57.0521857888, + "1176": 56.5390097469, + "1177": 55.7299895986, + "1178": 54.6032201274, + "1179": 53.1716554765, + "1180": 51.4746223059, + "1181": 49.5652848143, + "1182": 47.5017407016, + "1183": 45.3472536515, + "1184": 43.1783753371, + "1185": 41.0918417169, + "1186": 39.1995193297, + "1187": 37.6089626189, + "1188": 36.3993075599, + "1189": 35.6079002526, + "1190": 35.2376386945, + "1191": 35.2815422216, + "1192": 35.559790855, + "1193": 35.8789531128, + "1194": 36.1948766859, + "1195": 36.5093531935, + "1196": 36.8235424675, + "1197": 37.1360092927, + "1198": 37.4486440644, + "1199": 37.7603678227, + "1200": 0.3723922019, + "1201": -0.0346642615, + "1202": -0.0000000001, + "1203": 0.0009754774, + "1204": 0.0112112679, + "1205": 0.0195665687, + "1206": 0.0270467593, + "1207": 0.0340394172, + "1208": 0.0363230273, + "1209": 0.0362588016, + "1210": 0.0368278936, + "1211": 0.0325651592, + "1212": 0.0307177883, + "1213": 0.0288592812, + "1214": 0.0271697805, + "1215": 0.0254454453, + "1216": 0.0257715452, + "1217": 0.0248337131, + "1218": 0.0228287919, + "1219": 0.0211301577, + "1220": 0.0195090433, + "1221": 0.017943243, + "1222": 0.0163752997, + "1223": 0.0147934591, + "1224": 0.0132342265, + "1225": 0.0117550269, + "1226": 0.0103849092, + "1227": 0.0090881699, + "1228": 0.0077627633, + "1229": 13.3338193239, + "1230": 9.8626773263, + "1231": 7.0375859683, + "1232": 3.5795956314, + "1233": 0.2733666278, + "1234": 4.2420106805, + "1235": 0.2785106199, + "1236": 1.3452936103, + "1237": 0.1842451075, + "1238": 0.3206399871, + "1239": 0.0642994832, + "1240": 0.050264825, + "1241": 3.5284306415, + "1242": 8.1800086988, + "1243": 27.9414218877, + "1244": 53.4704613648, + "1245": 77.9569540636, + "1246": 97.2641035031, + "1247": 109.3366788494, + "1248": 113.8752813713, + "1249": 112.0196024611, + "1250": 105.7678691895, + "1251": 97.1267791986, + "1252": 87.3984243137, + "1253": 77.0364173896, + "1254": 66.0974097713, + "1255": 54.8837233152, + "1256": 44.2716484667, + "1257": 35.4585744435, + "1258": 29.2709057861, + "1259": 25.5289731833, + "1260": 22.9967410483, + "1261": 20.0580032115, + "1262": 15.7372561742, + "1263": 10.4327116556, + "1264": 5.8889804235, + "1265": 4.3545596732, + "1266": 7.3290890456, + "1267": 14.5890072802, + "1268": 24.0686293585, + "1269": 32.6754789547, + "1270": 37.5913888949, + "1271": 38.8570547769, + "1272": 39.8996322169, + "1273": 44.7632877712, + "1274": 56.5329217084, + "1275": 76.445289215, + "1276": 103.4089863631, + "1277": 134.4520141657, + "1278": 165.8404199491, + "1279": 194.3045378096, + "1280": 217.8317876966, + "1281": 235.6971694564, + "1282": 247.7048686155, + "1283": 253.0888255559, + "1284": 249.9780975085, + "1285": 236.1374749962, + "1286": 210.6466806937, + "1287": 175.1861671679, + "1288": 133.7545363236, + "1289": 90.8022643149, + "1290": 48.888283546, + "1291": 7.4804064243, + "1292": -0.7228193039, + "1293": 0.804424535, + "1294": -0.0775811526, + "1295": 0.4339501646, + "1296": -0.0414671669, + "1297": 0.4247840954, + "1298": -0.040019567, + "1299": 0.3723922019, + "1300": 8.4545833081, + "1301": 9.8863204042, + "1302": 12.6850036344, + "1303": 16.6817503512, + "1304": 21.2003572609, + "1305": 25.3052230545, + "1306": 28.2338358718, + "1307": 29.7216156399, + "1308": 30.0064493947, + "1309": 29.5811405206, + "1310": 28.9132538123, + "1311": 28.2881602889, + "1312": 27.7930371576, + "1313": 27.3836902601, + "1314": 26.9725687422, + "1315": 26.496240126, + "1316": 25.9428173701, + "1317": 25.341373541, + "1318": 24.7306004757, + "1319": 24.1295281832, + "1320": 23.5284944112, + "1321": 22.9035926055, + "1322": 22.2400977172, + "1323": 21.5451141611, + "1324": 20.8414987611, + "1325": 20.1501465479, + "1326": 19.4729186203, + "1327": 18.7857635122, + "1328": 18.0465341524, + "1329": 17.2131672084, + "1330": 16.2127526968, + "1331": 15.0340684198, + "1332": 13.7208237608, + "1333": 12.3264749053, + "1334": 10.5846398414, + "1335": 8.9443446989, + "1336": 7.3929207318, + "1337": 6.0599954183, + "1338": 4.9507008518, + "1339": 4.0606082274, + "1340": 3.3466660993, + "1341": 2.772685686, + "1342": 2.3103082407, + "1343": 1.9634293194, + "1344": 1.7357049271, + "1345": 1.6163758272, + "1346": 1.589571321, + "1347": 1.6347170584, + "1348": 1.7230571874, + "1349": 1.8222692237, + "1350": 1.9092122414, + "1351": 1.9799281052, + "1352": 2.0463718316, + "1353": 2.1219443474, + "1354": 2.2077470048, + "1355": 2.289481227, + "1356": 2.3465809222, + "1357": 2.3677461792, + "1358": 2.362254944, + "1359": 2.3573291215, + "1360": 2.3814062385, + "1361": 2.4445803739, + "1362": 2.5295818184, + "1363": 2.5988902379, + "1364": 2.6142381336, + "1365": 2.5586834775, + "1366": 2.4489229889, + "1367": 2.3293247339, + "1368": 2.2505542095, + "1369": 2.2458931957, + "1370": 2.3177277719, + "1371": 2.4394660652, + "1372": 2.5711741962, + "1373": 2.6816787956, + "1374": 2.7661731142, + "1375": 2.8485709189, + "1376": 2.9663583925, + "1377": 3.1482310144, + "1378": 3.3985855576, + "1379": 3.6953983677, + "1380": 4.0004343379, + "1381": 4.2789720725, + "1382": 4.5219996192, + "1383": 4.7557343387, + "1384": 5.023891046, + "1385": 5.3510918741, + "1386": 5.718549454, + "1387": 6.0755132111, + "1388": 6.3771165614, + "1389": 6.6210008354, + "1390": 6.8590720324, + "1391": 7.1676582172, + "1392": 7.6046106866, + "1393": 8.1295592696, + "1394": 8.5839397229, + "1395": 8.7881113386, + "1396": 8.6672327538, + "1397": 8.3339863977, + "1398": 8.1050311911, + "1399": 8.4545833081, + "1400": 60.3440281393, + "1401": 60.3102096714, + "1402": 59.9341441153, + "1403": 58.8446212992, + "1404": 56.8666319763, + "1405": 54.0501530316, + "1406": 50.64907758, + "1407": 47.0418880808, + "1408": 43.5957445201, + "1409": 40.551616094, + "1410": 37.9848690618, + "1411": 35.8405128369, + "1412": 34.0038209133, + "1413": 32.3637087614, + "1414": 30.8467053369, + "1415": 29.4212010245, + "1416": 28.0831091432, + "1417": 26.83664302, + "1418": 25.6811623392, + "1419": 24.6084833467, + "1420": 23.608030938, + "1421": 22.6734541937, + "1422": 21.8051127087, + "1423": 21.0070703556, + "1424": 20.2816824513, + "1425": 19.6262877177, + "1426": 19.0344945413, + "1427": 18.5012555718, + "1428": 18.0285646298, + "1429": 17.6278153547, + "1430": 17.2941929639, + "1431": 17.039998996, + "1432": 16.8870926158, + "1433": 16.8476034968, + "1434": 16.7107053905, + "1435": 16.6461937652, + "1436": 16.5866821375, + "1437": 16.5523948983, + "1438": 16.529396717, + "1439": 16.5158030692, + "1440": 16.5095352794, + "1441": 16.5237985623, + "1442": 16.5818293771, + "1443": 16.7674042691, + "1444": 17.1750382209, + "1445": 17.8313492148, + "1446": 18.7055768058, + "1447": 19.7362541549, + "1448": 20.8499938468, + "1449": 21.9775394628, + "1450": 23.0651461438, + "1451": 24.0788472477, + "1452": 25.0010318638, + "1453": 25.822856996, + "1454": 26.5381833646, + "1455": 27.1428505255, + "1456": 27.6386643842, + "1457": 28.0377009703, + "1458": 28.3619445207, + "1459": 28.6364431188, + "1460": 28.8791828705, + "1461": 29.0941102027, + "1462": 29.2725089554, + "1463": 29.4029622542, + "1464": 29.4847219703, + "1465": 29.536734435, + "1466": 29.5963234526, + "1467": 29.7069406503, + "1468": 29.9006014487, + "1469": 30.1837993138, + "1470": 30.5338538791, + "1471": 30.9149821345, + "1472": 31.3087577541, + "1473": 31.7331837564, + "1474": 32.2415686043, + "1475": 32.9086006051, + "1476": 33.8097069103, + "1477": 34.9999941408, + "1478": 36.501273489, + "1479": 38.3009858024, + "1480": 40.3601005299, + "1481": 42.6260862758, + "1482": 45.0413391726, + "1483": 47.5433580007, + "1484": 50.056106351, + "1485": 52.4835264299, + "1486": 54.7140404392, + "1487": 56.6404573, + "1488": 58.1837016409, + "1489": 59.306270599, + "1490": 60.0051124426, + "1491": 60.2869130659, + "1492": 60.3313507161, + "1493": 60.3324520528, + "1494": 60.3348612817, + "1495": 60.337122283, + "1496": 60.3384763359, + "1497": 60.3406694576, + "1498": 60.3420922716, + "1499": 60.3440281393, + "1500": 0.0100494704, + "1501": 6.5838436876, + "1502": 65.2698941778, + "1503": 151.4731067546, + "1504": 243.9517101051, + "1505": 320.4754366539, + "1506": 361.9056595561, + "1507": 361.9298196362, + "1508": 329.0924134693, + "1509": 280.510686712, + "1510": 232.7182618959, + "1511": 195.5523300526, + "1512": 171.1336885006, + "1513": 156.442922968, + "1514": 146.7797112063, + "1515": 138.3390750815, + "1516": 129.3726460242, + "1517": 119.9903954753, + "1518": 111.1156556783, + "1519": 103.3947494431, + "1520": 96.682971889, + "1521": 90.2611804694, + "1522": 83.4679287072, + "1523": 76.1981776329, + "1524": 68.9037820004, + "1525": 62.1639201763, + "1526": 56.1741058922, + "1527": 50.481876801, + "1528": 44.1200568653, + "1529": 49.4697274714, + "1530": 40.2809917346, + "1531": 27.7575031655, + "1532": 13.4573199237, + "1533": -1.646137902, + "1534": 30.8413210261, + "1535": -8.6113148513, + "1536": 17.1629076316, + "1537": -4.7503691649, + "1538": 6.8987812257, + "1539": -1.8689474326, + "1540": 2.0239488226, + "1541": -0.4012650636, + "1542": -0.0000219819, + "1543": 0.0321014214, + "1544": 0.0343650877, + "1545": 0.0257959155, + "1546": 0.0249501411, + "1547": 0.023084125, + "1548": 0.0220716228, + "1549": 0.0211694383, + "1550": 0.0203913624, + "1551": 0.0196577598, + "1552": 0.0190083041, + "1553": 0.0184783636, + "1554": 0.0180662326, + "1555": 0.0177201172, + "1556": 0.0173704963, + "1557": 0.016973626, + "1558": 0.0165384217, + "1559": 0.016120465, + "1560": 0.015784737, + "1561": 0.0155572258, + "1562": 0.0154001475, + "1563": 0.0152324331, + "1564": 0.0149781725, + "1565": 0.0146052402, + "1566": 0.0141358222, + "1567": 0.0136363752, + "1568": 0.013193966, + "1569": 0.0128774207, + "1570": 0.012698349, + "1571": 0.0128016153, + "1572": 0.0133197545, + "1573": 0.0142023607, + "1574": 0.0154511765, + "1575": 0.0170991538, + "1576": -0.00458821, + "1577": -0.000003299, + "1578": 0.0190334198, + "1579": -0.0051056238, + "1580": 0.0235546075, + "1581": -0.0063162259, + "1582": 0.0260289435, + "1583": -0.0069772509, + "1584": 0.0275885065, + "1585": -0.0073932308, + "1586": 0.0295464533, + "1587": -0.0079182843, + "1588": 0.0000000002, + "1589": 0.0, + "1590": 0.0000003447, + "1591": 0.0250697022, + "1592": 0.0550054389, + "1593": 0.0175214578, + "1594": 0.0218351879, + "1595": 0.0169757707, + "1596": 0.0119806696, + "1597": 0.0135925608, + "1598": 0.0087903185, + "1599": 0.0100494704, + "1600": 9.0521028509, + "1601": 8.8610983229, + "1602": 8.939183647, + "1603": 9.5952297684, + "1604": 10.9426927404, + "1605": 12.8877996749, + "1606": 15.1640569895, + "1607": 17.4165751273, + "1608": 19.3286214121, + "1609": 20.7213092649, + "1610": 21.5781709491, + "1611": 22.0006007251, + "1612": 22.1338545573, + "1613": 22.1011042955, + "1614": 21.9799048124, + "1615": 21.8049616959, + "1616": 21.5825516493, + "1617": 21.3103241571, + "1618": 20.9914294331, + "1619": 20.6363023341, + "1620": 20.2567366978, + "1621": 19.8598110934, + "1622": 19.4461293578, + "1623": 19.0129993598, + "1624": 18.5594691751, + "1625": 18.0890991931, + "1626": 17.6084649341, + "1627": 17.1224582471, + "1628": 16.6294460922, + "1629": 16.1822832211, + "1630": 15.7532394529, + "1631": 15.2759189341, + "1632": 14.7237442019, + "1633": 14.090215809, + "1634": 13.6008883188, + "1635": 13.0866635287, + "1636": 12.6049928413, + "1637": 12.139902461, + "1638": 11.7024980905, + "1639": 11.2921034684, + "1640": 10.9079552087, + "1641": 10.5508665993, + "1642": 10.2163258477, + "1643": 9.9059817899, + "1644": 9.6171761269, + "1645": 9.347018396, + "1646": 9.0945832102, + "1647": 8.8589330923, + "1648": 8.638924387, + "1649": 8.433428078, + "1650": 8.241365515, + "1651": 8.0617269625, + "1652": 7.893575814, + "1653": 7.7360383499, + "1654": 7.5882933732, + "1655": 7.4495695633, + "1656": 7.3191512509, + "1657": 7.1963861364, + "1658": 7.0806869862, + "1659": 6.9715233298, + "1660": 6.8684058954, + "1661": 6.7708718559, + "1662": 6.6784792471, + "1663": 6.5908132533, + "1664": 6.5074992432, + "1665": 6.428213395, + "1666": 6.3526838534, + "1667": 6.2806807391, + "1668": 6.211998266, + "1669": 6.1464355971, + "1670": 6.0837844145, + "1671": 6.0286706044, + "1672": 5.9919375732, + "1673": 5.9842370952, + "1674": 6.0141252693, + "1675": 6.0882923574, + "1676": 6.211708927, + "1677": 6.3875070268, + "1678": 6.6154725808, + "1679": 6.8908121521, + "1680": 7.2047762595, + "1681": 7.544740658, + "1682": 7.8953748695, + "1683": 8.2394168511, + "1684": 8.5598597262, + "1685": 8.8418362069, + "1686": 9.0755235113, + "1687": 9.2575256084, + "1688": 9.3917006111, + "1689": 9.4879755218, + "1690": 9.5598982397, + "1691": 9.6153235317, + "1692": 9.6520500521, + "1693": 9.6640584858, + "1694": 9.6469025842, + "1695": 9.5976651714, + "1696": 9.5142754115, + "1697": 9.3955668014, + "1698": 9.2412511163, + "1699": 9.0521028509, + "1700": 6.8261463167, + "1701": 6.2713039051, + "1702": 5.7879906786, + "1703": 5.3864415335, + "1704": 5.136804662, + "1705": 4.9876556915, + "1706": 4.9246587173, + "1707": 4.9095375042, + "1708": 4.9124219383, + "1709": 4.9495036347, + "1710": 5.0417346812, + "1711": 5.2146682602, + "1712": 5.4529482579, + "1713": 5.6358048901, + "1714": 5.8238031105, + "1715": 5.9940397967, + "1716": 6.1315958154, + "1717": 6.2362793177, + "1718": 6.3317873056, + "1719": 6.4191390587, + "1720": 6.4989420431, + "1721": 6.5713804219, + "1722": 6.636801156, + "1723": 6.6951996448, + "1724": 6.7469234617, + "1725": 6.7925198801, + "1726": 6.8327234256, + "1727": 6.8682534662, + "1728": 6.8998612959, + "1729": 6.9373698998, + "1730": 6.9811818897, + "1731": 7.0211425642, + "1732": 7.0034006205, + "1733": 6.974594925, + "1734": 6.9689619709, + "1735": 6.9615199552, + "1736": 6.9591614578, + "1737": 6.9484682209, + "1738": 6.9415452508, + "1739": 6.9020411373, + "1740": 6.8734636714, + "1741": 6.7930989134, + "1742": 6.7424436661, + "1743": 6.6866035856, + "1744": 6.602386464, + "1745": 6.5280967417, + "1746": 6.4633681043, + "1747": 6.4026686778, + "1748": 6.3453113501, + "1749": 6.290425609, + "1750": 6.2376637754, + "1751": 6.1868428467, + "1752": 6.1377780522, + "1753": 6.0901993181, + "1754": 6.0438061089, + "1755": 5.9983810912, + "1756": 5.9538637017, + "1757": 5.9103272053, + "1758": 5.867872397, + "1759": 5.8265052396, + "1760": 5.7860786775, + "1761": 5.7463446547, + "1762": 5.7070893249, + "1763": 5.6682606135, + "1764": 5.6300030666, + "1765": 5.5925857913, + "1766": 5.5562735503, + "1767": 5.5212027539, + "1768": 5.4873084978, + "1769": 5.4543379691, + "1770": 5.4219582311, + "1771": 5.4926520534, + "1772": 5.7247055529, + "1773": 6.0781248852, + "1774": 6.557094672, + "1775": 7.13912472, + "1776": 7.8194762022, + "1777": 8.5713618637, + "1778": 9.3492246193, + "1779": 10.100245924, + "1780": 10.7728951109, + "1781": 11.3180270285, + "1782": 11.6938209245, + "1783": 11.8720512186, + "1784": 11.8471308918, + "1785": 11.6433845611, + "1786": 11.3159012081, + "1787": 10.9408225902, + "1788": 10.597679101, + "1789": 10.3509414361, + "1790": 10.2394108856, + "1791": 10.1294214507, + "1792": 9.9270962661, + "1793": 9.6441067792, + "1794": 9.2944536933, + "1795": 8.885664885, + "1796": 8.4253601447, + "1797": 7.9214832326, + "1798": 7.3840304485, + "1799": 6.8261463167, + "1800": 41.8596665671, + "1801": 41.8452378785, + "1802": 42.2070134214, + "1803": 43.0420313522, + "1804": 44.8322038976, + "1805": 47.3927792155, + "1806": 50.6199678495, + "1807": 54.1429834364, + "1808": 57.4825248173, + "1809": 60.4782698132, + "1810": 63.0409333335, + "1811": 65.1818707622, + "1812": 67.0142107905, + "1813": 68.6501017515, + "1814": 70.1626888706, + "1815": 71.5836800984, + "1816": 72.6884160182, + "1817": 73.5379209627, + "1818": 74.2997662028, + "1819": 74.9965800218, + "1820": 75.6277283296, + "1821": 76.1988830267, + "1822": 76.7119494646, + "1823": 77.1684073867, + "1824": 77.5711740835, + "1825": 77.9252106405, + "1826": 78.2365099689, + "1827": 78.5109909656, + "1828": 78.7546568591, + "1829": 79.0432501534, + "1830": 79.3794672858, + "1831": 79.6852814749, + "1832": 79.549498724, + "1833": 79.3289425975, + "1834": 79.2856468145, + "1835": 79.2286145288, + "1836": 79.2104866091, + "1837": 79.1284270113, + "1838": 79.0752384672, + "1839": 78.7715224925, + "1840": 78.5511309721, + "1841": 77.9301090212, + "1842": 77.5361662723, + "1843": 77.1014092191, + "1844": 76.4424780031, + "1845": 75.8579453428, + "1846": 75.3465633985, + "1847": 74.8650552571, + "1848": 74.4083575613, + "1849": 73.9697546218, + "1850": 73.5466612392, + "1851": 73.137760948, + "1852": 72.7417085162, + "1853": 72.3564405658, + "1854": 71.9796176644, + "1855": 71.6095463807, + "1856": 71.2457943838, + "1857": 70.889021265, + "1858": 70.5401201778, + "1859": 70.1992105447, + "1860": 69.8651451371, + "1861": 69.5359242336, + "1862": 69.2098095999, + "1863": 68.8863928223, + "1864": 68.5669050292, + "1865": 68.2536343701, + "1866": 67.9488554395, + "1867": 67.653782853, + "1868": 67.3679408358, + "1869": 67.0892563836, + "1870": 66.8149558919, + "1871": 66.5421168414, + "1872": 66.2676349246, + "1873": 65.9886864373, + "1874": 65.7029320163, + "1875": 65.4079777195, + "1876": 65.1570093017, + "1877": 64.901364168, + "1878": 64.4966069097, + "1879": 63.8179433173, + "1880": 62.780772287, + "1881": 61.3331057848, + "1882": 59.4572006043, + "1883": 57.1787573651, + "1884": 54.5833130677, + "1885": 51.825750144, + "1886": 49.1209500312, + "1887": 46.7091979505, + "1888": 44.8093577444, + "1889": 43.5798618821, + "1890": 43.1063017073, + "1891": 42.9304809517, + "1892": 42.7356999872, + "1893": 42.5431245731, + "1894": 42.3788144423, + "1895": 42.2422775758, + "1896": 42.1288229295, + "1897": 42.0296947086, + "1898": 41.9388455394, + "1899": 41.8596665671, + "1900": 7.1540206003, + "1901": 2.924544649, + "1902": -0.1486380432, + "1903": 47.6740188526, + "1904": -2.8650935962, + "1905": 46.0026697581, + "1906": -3.0368159113, + "1907": 13.905490512, + "1908": 10.0752680245, + "1909": -0.4010740798, + "1910": 0.544461655, + "1911": 0.428420604, + "1912": 0.4521391224, + "1913": 0.4631434522, + "1914": 0.4738822016, + "1915": 0.4819767934, + "1916": 43.3810455523, + "1917": 39.7364964314, + "1918": 38.1650369008, + "1919": 37.1870554144, + "1920": 36.6574946981, + "1921": 36.0790139197, + "1922": 35.0382063051, + "1923": 33.3475898434, + "1924": 31.2258726626, + "1925": 29.068870903, + "1926": 27.0436375338, + "1927": 24.7471957741, + "1928": 21.1569625864, + "1929": 15.6177783244, + "1930": 6.0107535795, + "1931": 0.5424256824, + "1932": 63.2311906541, + "1933": 1.8298876256, + "1934": 31.3106418661, + "1935": 2.367503362, + "1936": 11.6044548597, + "1937": 14.129350633, + "1938": 2.4587615553, + "1939": 56.792457948, + "1940": -2.8146925203, + "1941": 114.4783227551, + "1942": -16.3167063737, + "1943": 84.0190166641, + "1944": 59.9796134464, + "1945": 53.3936131416, + "1946": 49.4749101503, + "1947": 46.6907692315, + "1948": 44.6792697777, + "1949": 43.0612647496, + "1950": 41.5936159942, + "1951": 40.2212157337, + "1952": 39.0177360528, + "1953": 38.0590680267, + "1954": 37.3296367728, + "1955": 36.7152266611, + "1956": 36.073143881, + "1957": 35.3224832574, + "1958": 34.4950312581, + "1959": 33.7155971958, + "1960": 33.1180599529, + "1961": 32.7447850301, + "1962": 32.5028812408, + "1963": 32.2153889488, + "1964": 31.7250417461, + "1965": 30.9735433551, + "1966": 30.0213810311, + "1967": 29.021976492, + "1968": 28.1636427682, + "1969": 27.5827540274, + "1970": 27.2872186823, + "1971": 27.2894025411, + "1972": 27.6149125368, + "1973": 28.1893725987, + "1974": 28.9794049562, + "1975": 30.0290742451, + "1976": 20.8598127338, + "1977": 28.9796776152, + "1978": 51.3030794137, + "1979": 83.8937489138, + "1980": 123.2231414698, + "1981": 166.1507660835, + "1982": 209.0887650951, + "1983": 246.945567642, + "1984": 272.8967868005, + "1985": 279.7574815933, + "1986": 262.6060028518, + "1987": 221.1079259677, + "1988": 159.904742471, + "1989": 86.592757936, + "1990": 8.3296844077, + "1991": 20.772094391, + "1992": 20.3402689097, + "1993": 17.9576781227, + "1994": 15.0400902117, + "1995": 12.2759739598, + "1996": 10.3912974014, + "1997": 9.4106169352, + "1998": 8.7684642568, + "1999": 7.1540206003, + "2000": 16.1975346023, + "2001": 18.9661112174, + "2002": 24.5094014218, + "2003": 33.016999512, + "2004": 43.7895047488, + "2005": 55.7284441816, + "2006": 67.483299768, + "2007": 77.9821249584, + "2008": 86.0101846456, + "2009": 90.507256154, + "2010": 92.5547457094, + "2011": 93.9850849667, + "2012": 95.517152426, + "2013": 97.0738597224, + "2014": 98.454531398, + "2015": 99.5741921791, + "2016": 100.5198085818, + "2017": 101.4191631116, + "2018": 102.3757673009, + "2019": 103.4203362589, + "2020": 104.4949926965, + "2021": 105.4904437655, + "2022": 106.3105947322, + "2023": 106.9312573428, + "2024": 107.3970427035, + "2025": 107.7619700749, + "2026": 108.0099311938, + "2027": 107.9951816385, + "2028": 107.4436840484, + "2029": 106.0363597154, + "2030": 103.4947504224, + "2031": 99.1487938582, + "2032": 87.8574964571, + "2033": 77.9537797474, + "2034": 66.1792256744, + "2035": 55.6618891921, + "2036": 45.630015938, + "2037": 37.3823001073, + "2038": 30.4480659297, + "2039": 25.1891962442, + "2040": 20.8500234093, + "2041": 17.5763371628, + "2042": 14.6743964851, + "2043": 12.3157908862, + "2044": 10.5121850756, + "2045": 9.1802432351, + "2046": 8.306028325, + "2047": 7.8033265831, + "2048": 7.5260664897, + "2049": 7.3376322295, + "2050": 7.1606635133, + "2051": 6.9927685529, + "2052": 6.8759332373, + "2053": 6.8457355733, + "2054": 6.8957123102, + "2055": 6.9761185427, + "2056": 7.022997167, + "2057": 6.9999197828, + "2058": 6.9271111769, + "2059": 6.874546223, + "2060": 6.9174047916, + "2061": 7.0825744895, + "2062": 7.3230188397, + "2063": 7.5352778101, + "2064": 7.6091809512, + "2065": 7.4861187155, + "2066": 7.1974270478, + "2067": 6.8573438483, + "2068": 6.6079957289, + "2069": 6.5482204054, + "2070": 6.6897539406, + "2071": 6.9614177616, + "2072": 7.2518788006, + "2073": 7.4679780087, + "2074": 7.5815220484, + "2075": 7.6372144647, + "2076": 7.7040679925, + "2077": 7.8430632537, + "2078": 8.072741568, + "2079": 8.3581472402, + "2080": 8.6419318685, + "2081": 8.8859718639, + "2082": 9.1036864226, + "2083": 9.3642058842, + "2084": 9.7529581694, + "2085": 10.3067166738, + "2086": 10.9741941927, + "2087": 11.6398190616, + "2088": 12.196363105, + "2089": 12.6178930951, + "2090": 12.9857350575, + "2091": 13.5304626771, + "2092": 14.383877256, + "2093": 15.4209495255, + "2094": 16.3222485453, + "2095": 16.7439735497, + "2096": 16.5412284791, + "2097": 15.9279737215, + "2098": 15.5106541984, + "2099": 16.1975346023, + "2100": 71.9475674826, + "2101": 71.9959303979, + "2102": 72.0098892045, + "2103": 72.255177922, + "2104": 72.4336359439, + "2105": 72.6736746746, + "2106": 72.8340005891, + "2107": 72.9104149657, + "2108": 72.3304180492, + "2109": 70.4269061354, + "2110": 67.8119269411, + "2111": 65.3160231875, + "2112": 63.0737973431, + "2113": 60.9260613181, + "2114": 58.7998219493, + "2115": 56.7269625658, + "2116": 54.7864281063, + "2117": 53.0106722262, + "2118": 51.385899164, + "2119": 49.8776402263, + "2120": 48.4577478727, + "2121": 47.1176273426, + "2122": 45.863914982, + "2123": 44.7096651591, + "2124": 43.662090145, + "2125": 42.7163732902, + "2126": 41.8615499654, + "2127": 41.0959320411, + "2128": 40.4442747348, + "2129": 39.9696409551, + "2130": 39.7616110524, + "2131": 39.7473197492, + "2132": 38.1310841573, + "2133": 37.5286467511, + "2134": 36.6026346094, + "2135": 36.1671884969, + "2136": 35.6833580606, + "2137": 35.5001177101, + "2138": 35.3308766874, + "2139": 35.4983023592, + "2140": 35.6254115229, + "2141": 36.174106837, + "2142": 36.5349371292, + "2143": 36.9459158883, + "2144": 37.584997102, + "2145": 38.1531581078, + "2146": 38.6521988933, + "2147": 39.1233277054, + "2148": 39.5707511748, + "2149": 40.0008844491, + "2150": 40.4161002597, + "2151": 40.8176623166, + "2152": 41.2068310197, + "2153": 41.5855544689, + "2154": 41.9560432069, + "2155": 42.3199040911, + "2156": 42.677555883, + "2157": 43.0283878736, + "2158": 43.3715667847, + "2159": 43.7069844934, + "2160": 44.0357241302, + "2161": 44.3596711956, + "2162": 44.6804616758, + "2163": 44.9984768716, + "2164": 45.3125617056, + "2165": 45.6205802017, + "2166": 45.9204141096, + "2167": 46.2109317935, + "2168": 46.4925797116, + "2169": 46.7673070938, + "2170": 47.0377271963, + "2171": 47.3066223185, + "2172": 47.5770072339, + "2173": 47.8516762354, + "2174": 48.1329821366, + "2175": 48.4233317221, + "2176": 48.6729803554, + "2177": 48.928695154, + "2178": 49.3335399478, + "2179": 50.0122602744, + "2180": 51.0495436876, + "2181": 52.4972728065, + "2182": 54.3733019578, + "2183": 56.6518135511, + "2184": 59.2473887605, + "2185": 62.0050238678, + "2186": 64.7099644259, + "2187": 67.1217938687, + "2188": 69.0216368412, + "2189": 70.2511321293, + "2190": 70.7245629773, + "2191": 70.8982509024, + "2192": 71.0895684591, + "2193": 71.2785309078, + "2194": 71.4394373304, + "2195": 71.5730275224, + "2196": 71.684006595, + "2197": 71.7810375039, + "2198": 71.8700265608, + "2199": 71.9475674826, + "2200": 0.160690819, + "2201": 0.0874595577, + "2202": 0.0058939272, + "2203": 1.7136683747, + "2204": 0.3974178752, + "2205": 2.5308080857, + "2206": 0.5568565259, + "2207": 0.8398660731, + "2208": 128.1263570802, + "2209": 263.4726111813, + "2210": 268.8482998317, + "2211": 232.1998346934, + "2212": 215.6185020775, + "2213": 214.1379008156, + "2214": 212.2175166978, + "2215": 203.7147636835, + "2216": 228.7947880851, + "2217": 209.2388269286, + "2218": 193.5450654229, + "2219": 183.1589849184, + "2220": 174.6300845248, + "2221": 166.132004382, + "2222": 155.8176558726, + "2223": 143.490947984, + "2224": 130.5923356215, + "2225": 118.7725417229, + "2226": 108.2421064352, + "2227": 96.7320446425, + "2228": 79.7689135871, + "2229": 52.4405977899, + "2230": 11.3393198558, + "2231": -3.5111047664, + "2232": 369.5326768915, + "2233": -129.8923676352, + "2234": 282.6762048621, + "2235": -99.6958944152, + "2236": 157.8738979209, + "2237": -54.1230359073, + "2238": 72.7479922242, + "2239": -21.4794511973, + "2240": 27.7734780725, + "2241": -4.1888355856, + "2242": 6.4716552597, + "2243": 0.3077913279, + "2244": 2.7543173327, + "2245": 1.050981498, + "2246": 1.2476808275, + "2247": 0.952974727, + "2248": 0.914640643, + "2249": 0.8319734915, + "2250": 0.7811022497, + "2251": 0.7275737302, + "2252": 0.6867975395, + "2253": 0.6589439434, + "2254": 0.6437277631, + "2255": 0.6339232329, + "2256": 0.6214304243, + "2257": 0.6015821387, + "2258": 0.5766152579, + "2259": 0.5542089324, + "2260": 0.5422062406, + "2261": 0.5431746531, + "2262": 0.5522250574, + "2263": 0.5589555019, + "2264": 0.5526630305, + "2265": 0.5283811433, + "2266": 0.4900865806, + "2267": 0.448724222, + "2268": 0.4163208565, + "2269": 0.4002079104, + "2270": 0.4005492288, + "2271": 0.4131192657, + "2272": 0.4321244541, + "2273": 0.4513594021, + "2274": 0.4681711444, + "2275": 0.4852927658, + "2276": -0.1658255241, + "2277": 0.0000094854, + "2278": 0.0000016754, + "2279": 0.0000026724, + "2280": 0.0000049251, + "2281": 0.0000014077, + "2282": 0.0000060802, + "2283": 0.0000009146, + "2284": 0.0000067567, + "2285": 0.0000003485, + "2286": 0.0000079492, + "2287": -0.0000002752, + "2288": 0.000005994, + "2289": -0.0000020252, + "2290": 0.0242711963, + "2291": 0.4055548417, + "2292": 0.3978226887, + "2293": 0.3868917112, + "2294": 0.3404421075, + "2295": 0.2861668287, + "2296": 0.2378082559, + "2297": 0.2065472129, + "2298": 0.1867990089, + "2299": 0.160690819 + } +} diff --git a/tests/cases/results/result_coupledBlock_closedLoopHeart_withCoronaries.json b/tests/cases/results/result_coupledBlock_closedLoopHeart_withCoronaries.json index 9eaa7a1cd..771ad138b 100644 --- a/tests/cases/results/result_coupledBlock_closedLoopHeart_withCoronaries.json +++ b/tests/cases/results/result_coupledBlock_closedLoopHeart_withCoronaries.json @@ -1 +1,114008 @@ -{"name":{"0":"flow:inlet_aorta:RCR_aorta","1":"flow:inlet_aorta:RCR_aorta","2":"flow:inlet_aorta:RCR_aorta","3":"flow:inlet_aorta:RCR_aorta","4":"flow:inlet_aorta:RCR_aorta","5":"flow:inlet_aorta:RCR_aorta","6":"flow:inlet_aorta:RCR_aorta","7":"flow:inlet_aorta:RCR_aorta","8":"flow:inlet_aorta:RCR_aorta","9":"flow:inlet_aorta:RCR_aorta","10":"flow:inlet_aorta:RCR_aorta","11":"flow:inlet_aorta:RCR_aorta","12":"flow:inlet_aorta:RCR_aorta","13":"flow:inlet_aorta:RCR_aorta","14":"flow:inlet_aorta:RCR_aorta","15":"flow:inlet_aorta:RCR_aorta","16":"flow:inlet_aorta:RCR_aorta","17":"flow:inlet_aorta:RCR_aorta","18":"flow:inlet_aorta:RCR_aorta","19":"flow:inlet_aorta:RCR_aorta","20":"flow:inlet_aorta:RCR_aorta","21":"flow:inlet_aorta:RCR_aorta","22":"flow:inlet_aorta:RCR_aorta","23":"flow:inlet_aorta:RCR_aorta","24":"flow:inlet_aorta:RCR_aorta","25":"flow:inlet_aorta:RCR_aorta","26":"flow:inlet_aorta:RCR_aorta","27":"flow:inlet_aorta:RCR_aorta","28":"flow:inlet_aorta:RCR_aorta","29":"flow:inlet_aorta:RCR_aorta","30":"flow:inlet_aorta:RCR_aorta","31":"flow:inlet_aorta:RCR_aorta","32":"flow:inlet_aorta:RCR_aorta","33":"flow:inlet_aorta:RCR_aorta","34":"flow:inlet_aorta:RCR_aorta","35":"flow:inlet_aorta:RCR_aorta","36":"flow:inlet_aorta:RCR_aorta","37":"flow:inlet_aorta:RCR_aorta","38":"flow:inlet_aorta:RCR_aorta","39":"flow:inlet_aorta:RCR_aorta","40":"flow:inlet_aorta:RCR_aorta","41":"flow:inlet_aorta:RCR_aorta","42":"flow:inlet_aorta:RCR_aorta","43":"flow:inlet_aorta:RCR_aorta","44":"flow:inlet_aorta:RCR_aorta","45":"flow:inlet_aorta:RCR_aorta","46":"flow:inlet_aorta:RCR_aorta","47":"flow:inlet_aorta:RCR_aorta","48":"flow:inlet_aorta:RCR_aorta","49":"flow:inlet_aorta:RCR_aorta","50":"flow:inlet_aorta:RCR_aorta","51":"flow:inlet_aorta:RCR_aorta","52":"flow:inlet_aorta:RCR_aorta","53":"flow:inlet_aorta:RCR_aorta","54":"flow:inlet_aorta:RCR_aorta","55":"flow:inlet_aorta:RCR_aorta","56":"flow:inlet_aorta:RCR_aorta","57":"flow:inlet_aorta:RCR_aorta","58":"flow:inlet_aorta:RCR_aorta","59":"flow:inlet_aorta:RCR_aorta","60":"flow:inlet_aorta:RCR_aorta","61":"flow:inlet_aorta:RCR_aorta","62":"flow:inlet_aorta:RCR_aorta","63":"flow:inlet_aorta:RCR_aorta","64":"flow:inlet_aorta:RCR_aorta","65":"flow:inlet_aorta:RCR_aorta","66":"flow:inlet_aorta:RCR_aorta","67":"flow:inlet_aorta:RCR_aorta","68":"flow:inlet_aorta:RCR_aorta","69":"flow:inlet_aorta:RCR_aorta","70":"flow:inlet_aorta:RCR_aorta","71":"flow:inlet_aorta:RCR_aorta","72":"flow:inlet_aorta:RCR_aorta","73":"flow:inlet_aorta:RCR_aorta","74":"flow:inlet_aorta:RCR_aorta","75":"flow:inlet_aorta:RCR_aorta","76":"flow:inlet_aorta:RCR_aorta","77":"flow:inlet_aorta:RCR_aorta","78":"flow:inlet_aorta:RCR_aorta","79":"flow:inlet_aorta:RCR_aorta","80":"flow:inlet_aorta:RCR_aorta","81":"flow:inlet_aorta:RCR_aorta","82":"flow:inlet_aorta:RCR_aorta","83":"flow:inlet_aorta:RCR_aorta","84":"flow:inlet_aorta:RCR_aorta","85":"flow:inlet_aorta:RCR_aorta","86":"flow:inlet_aorta:RCR_aorta","87":"flow:inlet_aorta:RCR_aorta","88":"flow:inlet_aorta:RCR_aorta","89":"flow:inlet_aorta:RCR_aorta","90":"flow:inlet_aorta:RCR_aorta","91":"flow:inlet_aorta:RCR_aorta","92":"flow:inlet_aorta:RCR_aorta","93":"flow:inlet_aorta:RCR_aorta","94":"flow:inlet_aorta:RCR_aorta","95":"flow:inlet_aorta:RCR_aorta","96":"flow:inlet_aorta:RCR_aorta","97":"flow:inlet_aorta:RCR_aorta","98":"flow:inlet_aorta:RCR_aorta","99":"flow:inlet_aorta:RCR_aorta","100":"flow:inlet_aorta:RCR_aorta","101":"flow:inlet_aorta:RCR_aorta","102":"flow:inlet_aorta:RCR_aorta","103":"flow:inlet_aorta:RCR_aorta","104":"flow:inlet_aorta:RCR_aorta","105":"flow:inlet_aorta:RCR_aorta","106":"flow:inlet_aorta:RCR_aorta","107":"flow:inlet_aorta:RCR_aorta","108":"flow:inlet_aorta:RCR_aorta","109":"flow:inlet_aorta:RCR_aorta","110":"flow:inlet_aorta:RCR_aorta","111":"flow:inlet_aorta:RCR_aorta","112":"flow:inlet_aorta:RCR_aorta","113":"flow:inlet_aorta:RCR_aorta","114":"flow:inlet_aorta:RCR_aorta","115":"flow:inlet_aorta:RCR_aorta","116":"flow:inlet_aorta:RCR_aorta","117":"flow:inlet_aorta:RCR_aorta","118":"flow:inlet_aorta:RCR_aorta","119":"flow:inlet_aorta:RCR_aorta","120":"flow:inlet_aorta:RCR_aorta","121":"flow:inlet_aorta:RCR_aorta","122":"flow:inlet_aorta:RCR_aorta","123":"flow:inlet_aorta:RCR_aorta","124":"flow:inlet_aorta:RCR_aorta","125":"flow:inlet_aorta:RCR_aorta","126":"flow:inlet_aorta:RCR_aorta","127":"flow:inlet_aorta:RCR_aorta","128":"flow:inlet_aorta:RCR_aorta","129":"flow:inlet_aorta:RCR_aorta","130":"flow:inlet_aorta:RCR_aorta","131":"flow:inlet_aorta:RCR_aorta","132":"flow:inlet_aorta:RCR_aorta","133":"flow:inlet_aorta:RCR_aorta","134":"flow:inlet_aorta:RCR_aorta","135":"flow:inlet_aorta:RCR_aorta","136":"flow:inlet_aorta:RCR_aorta","137":"flow:inlet_aorta:RCR_aorta","138":"flow:inlet_aorta:RCR_aorta","139":"flow:inlet_aorta:RCR_aorta","140":"flow:inlet_aorta:RCR_aorta","141":"flow:inlet_aorta:RCR_aorta","142":"flow:inlet_aorta:RCR_aorta","143":"flow:inlet_aorta:RCR_aorta","144":"flow:inlet_aorta:RCR_aorta","145":"flow:inlet_aorta:RCR_aorta","146":"flow:inlet_aorta:RCR_aorta","147":"flow:inlet_aorta:RCR_aorta","148":"flow:inlet_aorta:RCR_aorta","149":"flow:inlet_aorta:RCR_aorta","150":"flow:inlet_aorta:RCR_aorta","151":"flow:inlet_aorta:RCR_aorta","152":"flow:inlet_aorta:RCR_aorta","153":"flow:inlet_aorta:RCR_aorta","154":"flow:inlet_aorta:RCR_aorta","155":"flow:inlet_aorta:RCR_aorta","156":"flow:inlet_aorta:RCR_aorta","157":"flow:inlet_aorta:RCR_aorta","158":"flow:inlet_aorta:RCR_aorta","159":"flow:inlet_aorta:RCR_aorta","160":"flow:inlet_aorta:RCR_aorta","161":"flow:inlet_aorta:RCR_aorta","162":"flow:inlet_aorta:RCR_aorta","163":"flow:inlet_aorta:RCR_aorta","164":"flow:inlet_aorta:RCR_aorta","165":"flow:inlet_aorta:RCR_aorta","166":"flow:inlet_aorta:RCR_aorta","167":"flow:inlet_aorta:RCR_aorta","168":"flow:inlet_aorta:RCR_aorta","169":"flow:inlet_aorta:RCR_aorta","170":"flow:inlet_aorta:RCR_aorta","171":"flow:inlet_aorta:RCR_aorta","172":"flow:inlet_aorta:RCR_aorta","173":"flow:inlet_aorta:RCR_aorta","174":"flow:inlet_aorta:RCR_aorta","175":"flow:inlet_aorta:RCR_aorta","176":"flow:inlet_aorta:RCR_aorta","177":"flow:inlet_aorta:RCR_aorta","178":"flow:inlet_aorta:RCR_aorta","179":"flow:inlet_aorta:RCR_aorta","180":"flow:inlet_aorta:RCR_aorta","181":"flow:inlet_aorta:RCR_aorta","182":"flow:inlet_aorta:RCR_aorta","183":"flow:inlet_aorta:RCR_aorta","184":"flow:inlet_aorta:RCR_aorta","185":"flow:inlet_aorta:RCR_aorta","186":"flow:inlet_aorta:RCR_aorta","187":"flow:inlet_aorta:RCR_aorta","188":"flow:inlet_aorta:RCR_aorta","189":"flow:inlet_aorta:RCR_aorta","190":"flow:inlet_aorta:RCR_aorta","191":"flow:inlet_aorta:RCR_aorta","192":"flow:inlet_aorta:RCR_aorta","193":"flow:inlet_aorta:RCR_aorta","194":"flow:inlet_aorta:RCR_aorta","195":"flow:inlet_aorta:RCR_aorta","196":"flow:inlet_aorta:RCR_aorta","197":"flow:inlet_aorta:RCR_aorta","198":"flow:inlet_aorta:RCR_aorta","199":"flow:inlet_aorta:RCR_aorta","200":"flow:inlet_aorta:RCR_aorta","201":"flow:inlet_aorta:RCR_aorta","202":"flow:inlet_aorta:RCR_aorta","203":"flow:inlet_aorta:RCR_aorta","204":"flow:inlet_aorta:RCR_aorta","205":"flow:inlet_aorta:RCR_aorta","206":"flow:inlet_aorta:RCR_aorta","207":"flow:inlet_aorta:RCR_aorta","208":"flow:inlet_aorta:RCR_aorta","209":"flow:inlet_aorta:RCR_aorta","210":"flow:inlet_aorta:RCR_aorta","211":"flow:inlet_aorta:RCR_aorta","212":"flow:inlet_aorta:RCR_aorta","213":"flow:inlet_aorta:RCR_aorta","214":"flow:inlet_aorta:RCR_aorta","215":"flow:inlet_aorta:RCR_aorta","216":"flow:inlet_aorta:RCR_aorta","217":"flow:inlet_aorta:RCR_aorta","218":"flow:inlet_aorta:RCR_aorta","219":"flow:inlet_aorta:RCR_aorta","220":"flow:inlet_aorta:RCR_aorta","221":"flow:inlet_aorta:RCR_aorta","222":"flow:inlet_aorta:RCR_aorta","223":"flow:inlet_aorta:RCR_aorta","224":"flow:inlet_aorta:RCR_aorta","225":"flow:inlet_aorta:RCR_aorta","226":"flow:inlet_aorta:RCR_aorta","227":"flow:inlet_aorta:RCR_aorta","228":"flow:inlet_aorta:RCR_aorta","229":"flow:inlet_aorta:RCR_aorta","230":"flow:inlet_aorta:RCR_aorta","231":"flow:inlet_aorta:RCR_aorta","232":"flow:inlet_aorta:RCR_aorta","233":"flow:inlet_aorta:RCR_aorta","234":"flow:inlet_aorta:RCR_aorta","235":"flow:inlet_aorta:RCR_aorta","236":"flow:inlet_aorta:RCR_aorta","237":"flow:inlet_aorta:RCR_aorta","238":"flow:inlet_aorta:RCR_aorta","239":"flow:inlet_aorta:RCR_aorta","240":"flow:inlet_aorta:RCR_aorta","241":"flow:inlet_aorta:RCR_aorta","242":"flow:inlet_aorta:RCR_aorta","243":"flow:inlet_aorta:RCR_aorta","244":"flow:inlet_aorta:RCR_aorta","245":"flow:inlet_aorta:RCR_aorta","246":"flow:inlet_aorta:RCR_aorta","247":"flow:inlet_aorta:RCR_aorta","248":"flow:inlet_aorta:RCR_aorta","249":"flow:inlet_aorta:RCR_aorta","250":"flow:inlet_aorta:RCR_aorta","251":"flow:inlet_aorta:RCR_aorta","252":"flow:inlet_aorta:RCR_aorta","253":"flow:inlet_aorta:RCR_aorta","254":"flow:inlet_aorta:RCR_aorta","255":"flow:inlet_aorta:RCR_aorta","256":"flow:inlet_aorta:RCR_aorta","257":"flow:inlet_aorta:RCR_aorta","258":"flow:inlet_aorta:RCR_aorta","259":"flow:inlet_aorta:RCR_aorta","260":"flow:inlet_aorta:RCR_aorta","261":"flow:inlet_aorta:RCR_aorta","262":"flow:inlet_aorta:RCR_aorta","263":"flow:inlet_aorta:RCR_aorta","264":"flow:inlet_aorta:RCR_aorta","265":"flow:inlet_aorta:RCR_aorta","266":"flow:inlet_aorta:RCR_aorta","267":"flow:inlet_aorta:RCR_aorta","268":"flow:inlet_aorta:RCR_aorta","269":"flow:inlet_aorta:RCR_aorta","270":"flow:inlet_aorta:RCR_aorta","271":"flow:inlet_aorta:RCR_aorta","272":"flow:inlet_aorta:RCR_aorta","273":"flow:inlet_aorta:RCR_aorta","274":"flow:inlet_aorta:RCR_aorta","275":"flow:inlet_aorta:RCR_aorta","276":"flow:inlet_aorta:RCR_aorta","277":"flow:inlet_aorta:RCR_aorta","278":"flow:inlet_aorta:RCR_aorta","279":"flow:inlet_aorta:RCR_aorta","280":"flow:inlet_aorta:RCR_aorta","281":"flow:inlet_aorta:RCR_aorta","282":"flow:inlet_aorta:RCR_aorta","283":"flow:inlet_aorta:RCR_aorta","284":"flow:inlet_aorta:RCR_aorta","285":"flow:inlet_aorta:RCR_aorta","286":"flow:inlet_aorta:RCR_aorta","287":"flow:inlet_aorta:RCR_aorta","288":"flow:inlet_aorta:RCR_aorta","289":"flow:inlet_aorta:RCR_aorta","290":"flow:inlet_aorta:RCR_aorta","291":"flow:inlet_aorta:RCR_aorta","292":"flow:inlet_aorta:RCR_aorta","293":"flow:inlet_aorta:RCR_aorta","294":"flow:inlet_aorta:RCR_aorta","295":"flow:inlet_aorta:RCR_aorta","296":"flow:inlet_aorta:RCR_aorta","297":"flow:inlet_aorta:RCR_aorta","298":"flow:inlet_aorta:RCR_aorta","299":"flow:inlet_aorta:RCR_aorta","300":"flow:inlet_aorta:RCR_aorta","301":"flow:inlet_aorta:RCR_aorta","302":"flow:inlet_aorta:RCR_aorta","303":"flow:inlet_aorta:RCR_aorta","304":"flow:inlet_aorta:RCR_aorta","305":"flow:inlet_aorta:RCR_aorta","306":"flow:inlet_aorta:RCR_aorta","307":"flow:inlet_aorta:RCR_aorta","308":"flow:inlet_aorta:RCR_aorta","309":"flow:inlet_aorta:RCR_aorta","310":"flow:inlet_aorta:RCR_aorta","311":"flow:inlet_aorta:RCR_aorta","312":"flow:inlet_aorta:RCR_aorta","313":"flow:inlet_aorta:RCR_aorta","314":"flow:inlet_aorta:RCR_aorta","315":"flow:inlet_aorta:RCR_aorta","316":"flow:inlet_aorta:RCR_aorta","317":"flow:inlet_aorta:RCR_aorta","318":"flow:inlet_aorta:RCR_aorta","319":"flow:inlet_aorta:RCR_aorta","320":"flow:inlet_aorta:RCR_aorta","321":"flow:inlet_aorta:RCR_aorta","322":"flow:inlet_aorta:RCR_aorta","323":"flow:inlet_aorta:RCR_aorta","324":"flow:inlet_aorta:RCR_aorta","325":"flow:inlet_aorta:RCR_aorta","326":"flow:inlet_aorta:RCR_aorta","327":"flow:inlet_aorta:RCR_aorta","328":"flow:inlet_aorta:RCR_aorta","329":"flow:inlet_aorta:RCR_aorta","330":"flow:inlet_aorta:RCR_aorta","331":"flow:inlet_aorta:RCR_aorta","332":"flow:inlet_aorta:RCR_aorta","333":"flow:inlet_aorta:RCR_aorta","334":"flow:inlet_aorta:RCR_aorta","335":"flow:inlet_aorta:RCR_aorta","336":"flow:inlet_aorta:RCR_aorta","337":"flow:inlet_aorta:RCR_aorta","338":"flow:inlet_aorta:RCR_aorta","339":"flow:inlet_aorta:RCR_aorta","340":"flow:inlet_aorta:RCR_aorta","341":"flow:inlet_aorta:RCR_aorta","342":"flow:inlet_aorta:RCR_aorta","343":"flow:inlet_aorta:RCR_aorta","344":"flow:inlet_aorta:RCR_aorta","345":"flow:inlet_aorta:RCR_aorta","346":"flow:inlet_aorta:RCR_aorta","347":"flow:inlet_aorta:RCR_aorta","348":"flow:inlet_aorta:RCR_aorta","349":"flow:inlet_aorta:RCR_aorta","350":"flow:inlet_aorta:RCR_aorta","351":"flow:inlet_aorta:RCR_aorta","352":"flow:inlet_aorta:RCR_aorta","353":"flow:inlet_aorta:RCR_aorta","354":"flow:inlet_aorta:RCR_aorta","355":"flow:inlet_aorta:RCR_aorta","356":"flow:inlet_aorta:RCR_aorta","357":"flow:inlet_aorta:RCR_aorta","358":"flow:inlet_aorta:RCR_aorta","359":"flow:inlet_aorta:RCR_aorta","360":"flow:inlet_aorta:RCR_aorta","361":"flow:inlet_aorta:RCR_aorta","362":"flow:inlet_aorta:RCR_aorta","363":"flow:inlet_aorta:RCR_aorta","364":"flow:inlet_aorta:RCR_aorta","365":"flow:inlet_aorta:RCR_aorta","366":"flow:inlet_aorta:RCR_aorta","367":"flow:inlet_aorta:RCR_aorta","368":"flow:inlet_aorta:RCR_aorta","369":"flow:inlet_aorta:RCR_aorta","370":"flow:inlet_aorta:RCR_aorta","371":"flow:inlet_aorta:RCR_aorta","372":"flow:inlet_aorta:RCR_aorta","373":"flow:inlet_aorta:RCR_aorta","374":"flow:inlet_aorta:RCR_aorta","375":"flow:inlet_aorta:RCR_aorta","376":"flow:inlet_aorta:RCR_aorta","377":"flow:inlet_aorta:RCR_aorta","378":"flow:inlet_aorta:RCR_aorta","379":"flow:inlet_aorta:RCR_aorta","380":"flow:inlet_aorta:RCR_aorta","381":"flow:inlet_aorta:RCR_aorta","382":"flow:inlet_aorta:RCR_aorta","383":"flow:inlet_aorta:RCR_aorta","384":"flow:inlet_aorta:RCR_aorta","385":"flow:inlet_aorta:RCR_aorta","386":"flow:inlet_aorta:RCR_aorta","387":"flow:inlet_aorta:RCR_aorta","388":"flow:inlet_aorta:RCR_aorta","389":"flow:inlet_aorta:RCR_aorta","390":"flow:inlet_aorta:RCR_aorta","391":"flow:inlet_aorta:RCR_aorta","392":"flow:inlet_aorta:RCR_aorta","393":"flow:inlet_aorta:RCR_aorta","394":"flow:inlet_aorta:RCR_aorta","395":"flow:inlet_aorta:RCR_aorta","396":"flow:inlet_aorta:RCR_aorta","397":"flow:inlet_aorta:RCR_aorta","398":"flow:inlet_aorta:RCR_aorta","399":"flow:inlet_aorta:RCR_aorta","400":"flow:inlet_aorta:RCR_aorta","401":"flow:inlet_aorta:RCR_aorta","402":"flow:inlet_aorta:RCR_aorta","403":"flow:inlet_aorta:RCR_aorta","404":"flow:inlet_aorta:RCR_aorta","405":"flow:inlet_aorta:RCR_aorta","406":"flow:inlet_aorta:RCR_aorta","407":"flow:inlet_aorta:RCR_aorta","408":"flow:inlet_aorta:RCR_aorta","409":"flow:inlet_aorta:RCR_aorta","410":"flow:inlet_aorta:RCR_aorta","411":"flow:inlet_aorta:RCR_aorta","412":"flow:inlet_aorta:RCR_aorta","413":"flow:inlet_aorta:RCR_aorta","414":"flow:inlet_aorta:RCR_aorta","415":"flow:inlet_aorta:RCR_aorta","416":"flow:inlet_aorta:RCR_aorta","417":"flow:inlet_aorta:RCR_aorta","418":"flow:inlet_aorta:RCR_aorta","419":"flow:inlet_aorta:RCR_aorta","420":"flow:inlet_aorta:RCR_aorta","421":"flow:inlet_aorta:RCR_aorta","422":"flow:inlet_aorta:RCR_aorta","423":"flow:inlet_aorta:RCR_aorta","424":"flow:inlet_aorta:RCR_aorta","425":"flow:inlet_aorta:RCR_aorta","426":"flow:inlet_aorta:RCR_aorta","427":"flow:inlet_aorta:RCR_aorta","428":"flow:inlet_aorta:RCR_aorta","429":"flow:inlet_aorta:RCR_aorta","430":"flow:inlet_aorta:RCR_aorta","431":"flow:inlet_aorta:RCR_aorta","432":"flow:inlet_aorta:RCR_aorta","433":"flow:inlet_aorta:RCR_aorta","434":"flow:inlet_aorta:RCR_aorta","435":"flow:inlet_aorta:RCR_aorta","436":"flow:inlet_aorta:RCR_aorta","437":"flow:inlet_aorta:RCR_aorta","438":"flow:inlet_aorta:RCR_aorta","439":"flow:inlet_aorta:RCR_aorta","440":"flow:inlet_aorta:RCR_aorta","441":"flow:inlet_aorta:RCR_aorta","442":"flow:inlet_aorta:RCR_aorta","443":"flow:inlet_aorta:RCR_aorta","444":"flow:inlet_aorta:RCR_aorta","445":"flow:inlet_aorta:RCR_aorta","446":"flow:inlet_aorta:RCR_aorta","447":"flow:inlet_aorta:RCR_aorta","448":"flow:inlet_aorta:RCR_aorta","449":"flow:inlet_aorta:RCR_aorta","450":"flow:inlet_aorta:RCR_aorta","451":"flow:inlet_aorta:RCR_aorta","452":"flow:inlet_aorta:RCR_aorta","453":"flow:inlet_aorta:RCR_aorta","454":"flow:inlet_aorta:RCR_aorta","455":"flow:inlet_aorta:RCR_aorta","456":"flow:inlet_aorta:RCR_aorta","457":"flow:inlet_aorta:RCR_aorta","458":"flow:inlet_aorta:RCR_aorta","459":"flow:inlet_aorta:RCR_aorta","460":"flow:inlet_aorta:RCR_aorta","461":"flow:inlet_aorta:RCR_aorta","462":"flow:inlet_aorta:RCR_aorta","463":"flow:inlet_aorta:RCR_aorta","464":"flow:inlet_aorta:RCR_aorta","465":"flow:inlet_aorta:RCR_aorta","466":"flow:inlet_aorta:RCR_aorta","467":"flow:inlet_aorta:RCR_aorta","468":"flow:inlet_aorta:RCR_aorta","469":"flow:inlet_aorta:RCR_aorta","470":"flow:inlet_aorta:RCR_aorta","471":"flow:inlet_aorta:RCR_aorta","472":"flow:inlet_aorta:RCR_aorta","473":"flow:inlet_aorta:RCR_aorta","474":"flow:inlet_aorta:RCR_aorta","475":"flow:inlet_aorta:RCR_aorta","476":"flow:inlet_aorta:RCR_aorta","477":"flow:inlet_aorta:RCR_aorta","478":"flow:inlet_aorta:RCR_aorta","479":"flow:inlet_aorta:RCR_aorta","480":"flow:inlet_aorta:RCR_aorta","481":"flow:inlet_aorta:RCR_aorta","482":"flow:inlet_aorta:RCR_aorta","483":"flow:inlet_aorta:RCR_aorta","484":"flow:inlet_aorta:RCR_aorta","485":"flow:inlet_aorta:RCR_aorta","486":"flow:inlet_aorta:RCR_aorta","487":"flow:inlet_aorta:RCR_aorta","488":"flow:inlet_aorta:RCR_aorta","489":"flow:inlet_aorta:RCR_aorta","490":"flow:inlet_aorta:RCR_aorta","491":"flow:inlet_aorta:RCR_aorta","492":"flow:inlet_aorta:RCR_aorta","493":"flow:inlet_aorta:RCR_aorta","494":"flow:inlet_aorta:RCR_aorta","495":"flow:inlet_aorta:RCR_aorta","496":"flow:inlet_aorta:RCR_aorta","497":"flow:inlet_aorta:RCR_aorta","498":"flow:inlet_aorta:RCR_aorta","499":"flow:inlet_aorta:RCR_aorta","500":"flow:inlet_aorta:RCR_aorta","501":"flow:inlet_aorta:RCR_aorta","502":"flow:inlet_aorta:RCR_aorta","503":"flow:inlet_aorta:RCR_aorta","504":"flow:inlet_aorta:RCR_aorta","505":"flow:inlet_aorta:RCR_aorta","506":"flow:inlet_aorta:RCR_aorta","507":"flow:inlet_aorta:RCR_aorta","508":"flow:inlet_aorta:RCR_aorta","509":"flow:inlet_aorta:RCR_aorta","510":"flow:inlet_aorta:RCR_aorta","511":"flow:inlet_aorta:RCR_aorta","512":"flow:inlet_aorta:RCR_aorta","513":"flow:inlet_aorta:RCR_aorta","514":"flow:inlet_aorta:RCR_aorta","515":"flow:inlet_aorta:RCR_aorta","516":"flow:inlet_aorta:RCR_aorta","517":"flow:inlet_aorta:RCR_aorta","518":"flow:inlet_aorta:RCR_aorta","519":"flow:inlet_aorta:RCR_aorta","520":"flow:inlet_aorta:RCR_aorta","521":"flow:inlet_aorta:RCR_aorta","522":"flow:inlet_aorta:RCR_aorta","523":"flow:inlet_aorta:RCR_aorta","524":"flow:inlet_aorta:RCR_aorta","525":"flow:inlet_aorta:RCR_aorta","526":"flow:inlet_aorta:RCR_aorta","527":"flow:inlet_aorta:RCR_aorta","528":"flow:inlet_aorta:RCR_aorta","529":"flow:inlet_aorta:RCR_aorta","530":"flow:inlet_aorta:RCR_aorta","531":"flow:inlet_aorta:RCR_aorta","532":"flow:inlet_aorta:RCR_aorta","533":"flow:inlet_aorta:RCR_aorta","534":"flow:inlet_aorta:RCR_aorta","535":"flow:inlet_aorta:RCR_aorta","536":"flow:inlet_aorta:RCR_aorta","537":"flow:inlet_aorta:RCR_aorta","538":"flow:inlet_aorta:RCR_aorta","539":"flow:inlet_aorta:RCR_aorta","540":"flow:inlet_aorta:RCR_aorta","541":"flow:inlet_aorta:RCR_aorta","542":"flow:inlet_aorta:RCR_aorta","543":"flow:inlet_aorta:RCR_aorta","544":"flow:inlet_aorta:RCR_aorta","545":"flow:inlet_aorta:RCR_aorta","546":"flow:inlet_aorta:RCR_aorta","547":"flow:inlet_aorta:RCR_aorta","548":"flow:inlet_aorta:RCR_aorta","549":"flow:inlet_aorta:RCR_aorta","550":"flow:inlet_aorta:RCR_aorta","551":"flow:inlet_aorta:RCR_aorta","552":"flow:inlet_aorta:RCR_aorta","553":"flow:inlet_aorta:RCR_aorta","554":"flow:inlet_aorta:RCR_aorta","555":"flow:inlet_aorta:RCR_aorta","556":"flow:inlet_aorta:RCR_aorta","557":"flow:inlet_aorta:RCR_aorta","558":"flow:inlet_aorta:RCR_aorta","559":"flow:inlet_aorta:RCR_aorta","560":"flow:inlet_aorta:RCR_aorta","561":"flow:inlet_aorta:RCR_aorta","562":"flow:inlet_aorta:RCR_aorta","563":"flow:inlet_aorta:RCR_aorta","564":"flow:inlet_aorta:RCR_aorta","565":"flow:inlet_aorta:RCR_aorta","566":"flow:inlet_aorta:RCR_aorta","567":"flow:inlet_aorta:RCR_aorta","568":"flow:inlet_aorta:RCR_aorta","569":"flow:inlet_aorta:RCR_aorta","570":"flow:inlet_aorta:RCR_aorta","571":"flow:inlet_aorta:RCR_aorta","572":"flow:inlet_aorta:RCR_aorta","573":"flow:inlet_aorta:RCR_aorta","574":"flow:inlet_aorta:RCR_aorta","575":"flow:inlet_aorta:RCR_aorta","576":"flow:inlet_aorta:RCR_aorta","577":"flow:inlet_aorta:RCR_aorta","578":"flow:inlet_aorta:RCR_aorta","579":"flow:inlet_aorta:RCR_aorta","580":"flow:inlet_aorta:RCR_aorta","581":"flow:inlet_aorta:RCR_aorta","582":"flow:inlet_aorta:RCR_aorta","583":"flow:inlet_aorta:RCR_aorta","584":"flow:inlet_aorta:RCR_aorta","585":"flow:inlet_aorta:RCR_aorta","586":"flow:inlet_aorta:RCR_aorta","587":"flow:inlet_aorta:RCR_aorta","588":"flow:inlet_aorta:RCR_aorta","589":"flow:inlet_aorta:RCR_aorta","590":"flow:inlet_aorta:RCR_aorta","591":"flow:inlet_aorta:RCR_aorta","592":"flow:inlet_aorta:RCR_aorta","593":"flow:inlet_aorta:RCR_aorta","594":"flow:inlet_aorta:RCR_aorta","595":"flow:inlet_aorta:RCR_aorta","596":"flow:inlet_aorta:RCR_aorta","597":"flow:inlet_aorta:RCR_aorta","598":"flow:inlet_aorta:RCR_aorta","599":"flow:inlet_aorta:RCR_aorta","600":"flow:inlet_aorta:RCR_aorta","601":"flow:inlet_aorta:RCR_aorta","602":"flow:inlet_aorta:RCR_aorta","603":"flow:inlet_aorta:RCR_aorta","604":"flow:inlet_aorta:RCR_aorta","605":"flow:inlet_aorta:RCR_aorta","606":"flow:inlet_aorta:RCR_aorta","607":"flow:inlet_aorta:RCR_aorta","608":"flow:inlet_aorta:RCR_aorta","609":"flow:inlet_aorta:RCR_aorta","610":"flow:inlet_aorta:RCR_aorta","611":"flow:inlet_aorta:RCR_aorta","612":"flow:inlet_aorta:RCR_aorta","613":"flow:inlet_aorta:RCR_aorta","614":"flow:inlet_aorta:RCR_aorta","615":"flow:inlet_aorta:RCR_aorta","616":"flow:inlet_aorta:RCR_aorta","617":"flow:inlet_aorta:RCR_aorta","618":"flow:inlet_aorta:RCR_aorta","619":"flow:inlet_aorta:RCR_aorta","620":"flow:inlet_aorta:RCR_aorta","621":"flow:inlet_aorta:RCR_aorta","622":"flow:inlet_aorta:RCR_aorta","623":"flow:inlet_aorta:RCR_aorta","624":"flow:inlet_aorta:RCR_aorta","625":"flow:inlet_aorta:RCR_aorta","626":"flow:inlet_aorta:RCR_aorta","627":"flow:inlet_aorta:RCR_aorta","628":"flow:inlet_aorta:RCR_aorta","629":"flow:inlet_aorta:RCR_aorta","630":"flow:inlet_aorta:RCR_aorta","631":"flow:inlet_aorta:RCR_aorta","632":"flow:inlet_aorta:RCR_aorta","633":"flow:inlet_aorta:RCR_aorta","634":"flow:inlet_aorta:RCR_aorta","635":"flow:inlet_aorta:RCR_aorta","636":"flow:inlet_aorta:RCR_aorta","637":"flow:inlet_aorta:RCR_aorta","638":"flow:inlet_aorta:RCR_aorta","639":"flow:inlet_aorta:RCR_aorta","640":"flow:inlet_aorta:RCR_aorta","641":"flow:inlet_aorta:RCR_aorta","642":"flow:inlet_aorta:RCR_aorta","643":"flow:inlet_aorta:RCR_aorta","644":"flow:inlet_aorta:RCR_aorta","645":"flow:inlet_aorta:RCR_aorta","646":"flow:inlet_aorta:RCR_aorta","647":"flow:inlet_aorta:RCR_aorta","648":"flow:inlet_aorta:RCR_aorta","649":"flow:inlet_aorta:RCR_aorta","650":"flow:inlet_aorta:RCR_aorta","651":"flow:inlet_aorta:RCR_aorta","652":"flow:inlet_aorta:RCR_aorta","653":"flow:inlet_aorta:RCR_aorta","654":"flow:inlet_aorta:RCR_aorta","655":"flow:inlet_aorta:RCR_aorta","656":"flow:inlet_aorta:RCR_aorta","657":"flow:inlet_aorta:RCR_aorta","658":"flow:inlet_aorta:RCR_aorta","659":"flow:inlet_aorta:RCR_aorta","660":"flow:inlet_aorta:RCR_aorta","661":"flow:inlet_aorta:RCR_aorta","662":"flow:inlet_aorta:RCR_aorta","663":"flow:inlet_aorta:RCR_aorta","664":"flow:inlet_aorta:RCR_aorta","665":"flow:inlet_aorta:RCR_aorta","666":"flow:inlet_aorta:RCR_aorta","667":"flow:inlet_aorta:RCR_aorta","668":"flow:inlet_aorta:RCR_aorta","669":"flow:inlet_aorta:RCR_aorta","670":"flow:inlet_aorta:RCR_aorta","671":"flow:inlet_aorta:RCR_aorta","672":"flow:inlet_aorta:RCR_aorta","673":"flow:inlet_aorta:RCR_aorta","674":"flow:inlet_aorta:RCR_aorta","675":"flow:inlet_aorta:RCR_aorta","676":"flow:inlet_aorta:RCR_aorta","677":"flow:inlet_aorta:RCR_aorta","678":"flow:inlet_aorta:RCR_aorta","679":"flow:inlet_aorta:RCR_aorta","680":"flow:inlet_aorta:RCR_aorta","681":"flow:inlet_aorta:RCR_aorta","682":"flow:inlet_aorta:RCR_aorta","683":"flow:inlet_aorta:RCR_aorta","684":"flow:inlet_aorta:RCR_aorta","685":"flow:inlet_aorta:RCR_aorta","686":"flow:inlet_aorta:RCR_aorta","687":"flow:inlet_aorta:RCR_aorta","688":"flow:inlet_aorta:RCR_aorta","689":"flow:inlet_aorta:RCR_aorta","690":"flow:inlet_aorta:RCR_aorta","691":"flow:inlet_aorta:RCR_aorta","692":"flow:inlet_aorta:RCR_aorta","693":"flow:inlet_aorta:RCR_aorta","694":"flow:inlet_aorta:RCR_aorta","695":"flow:inlet_aorta:RCR_aorta","696":"flow:inlet_aorta:RCR_aorta","697":"flow:inlet_aorta:RCR_aorta","698":"flow:inlet_aorta:RCR_aorta","699":"flow:inlet_aorta:RCR_aorta","700":"flow:inlet_aorta:RCR_aorta","701":"flow:inlet_aorta:RCR_aorta","702":"flow:inlet_aorta:RCR_aorta","703":"flow:inlet_aorta:RCR_aorta","704":"flow:inlet_aorta:RCR_aorta","705":"flow:inlet_aorta:RCR_aorta","706":"flow:inlet_aorta:RCR_aorta","707":"flow:inlet_aorta:RCR_aorta","708":"flow:inlet_aorta:RCR_aorta","709":"flow:inlet_aorta:RCR_aorta","710":"flow:inlet_aorta:RCR_aorta","711":"flow:inlet_aorta:RCR_aorta","712":"flow:inlet_aorta:RCR_aorta","713":"flow:inlet_aorta:RCR_aorta","714":"flow:inlet_aorta:RCR_aorta","715":"flow:inlet_aorta:RCR_aorta","716":"flow:inlet_aorta:RCR_aorta","717":"flow:inlet_aorta:RCR_aorta","718":"flow:inlet_aorta:RCR_aorta","719":"flow:inlet_aorta:RCR_aorta","720":"flow:inlet_aorta:RCR_aorta","721":"flow:inlet_aorta:RCR_aorta","722":"flow:inlet_aorta:RCR_aorta","723":"flow:inlet_aorta:RCR_aorta","724":"flow:inlet_aorta:RCR_aorta","725":"flow:inlet_aorta:RCR_aorta","726":"flow:inlet_aorta:RCR_aorta","727":"flow:inlet_aorta:RCR_aorta","728":"flow:inlet_aorta:RCR_aorta","729":"flow:inlet_aorta:RCR_aorta","730":"flow:inlet_aorta:RCR_aorta","731":"flow:inlet_aorta:RCR_aorta","732":"flow:inlet_aorta:RCR_aorta","733":"flow:inlet_aorta:RCR_aorta","734":"flow:inlet_aorta:RCR_aorta","735":"flow:inlet_aorta:RCR_aorta","736":"flow:inlet_aorta:RCR_aorta","737":"flow:inlet_aorta:RCR_aorta","738":"flow:inlet_aorta:RCR_aorta","739":"flow:inlet_aorta:RCR_aorta","740":"flow:inlet_aorta:RCR_aorta","741":"flow:inlet_aorta:RCR_aorta","742":"flow:inlet_aorta:RCR_aorta","743":"flow:inlet_aorta:RCR_aorta","744":"flow:inlet_aorta:RCR_aorta","745":"flow:inlet_aorta:RCR_aorta","746":"flow:inlet_aorta:RCR_aorta","747":"flow:inlet_aorta:RCR_aorta","748":"flow:inlet_aorta:RCR_aorta","749":"flow:inlet_aorta:RCR_aorta","750":"flow:inlet_aorta:RCR_aorta","751":"flow:inlet_aorta:RCR_aorta","752":"flow:inlet_aorta:RCR_aorta","753":"flow:inlet_aorta:RCR_aorta","754":"flow:inlet_aorta:RCR_aorta","755":"flow:inlet_aorta:RCR_aorta","756":"flow:inlet_aorta:RCR_aorta","757":"flow:inlet_aorta:RCR_aorta","758":"flow:inlet_aorta:RCR_aorta","759":"flow:inlet_aorta:RCR_aorta","760":"flow:inlet_aorta:RCR_aorta","761":"flow:inlet_aorta:RCR_aorta","762":"flow:inlet_aorta:RCR_aorta","763":"flow:inlet_aorta:RCR_aorta","764":"flow:inlet_aorta:RCR_aorta","765":"flow:inlet_aorta:RCR_aorta","766":"flow:inlet_aorta:RCR_aorta","767":"flow:inlet_aorta:RCR_aorta","768":"flow:inlet_aorta:RCR_aorta","769":"flow:inlet_aorta:RCR_aorta","770":"flow:inlet_aorta:RCR_aorta","771":"flow:inlet_aorta:RCR_aorta","772":"flow:inlet_aorta:RCR_aorta","773":"flow:inlet_aorta:RCR_aorta","774":"flow:inlet_aorta:RCR_aorta","775":"flow:inlet_aorta:RCR_aorta","776":"flow:inlet_aorta:RCR_aorta","777":"flow:inlet_aorta:RCR_aorta","778":"flow:inlet_aorta:RCR_aorta","779":"flow:inlet_aorta:RCR_aorta","780":"flow:inlet_aorta:RCR_aorta","781":"flow:inlet_aorta:RCR_aorta","782":"flow:inlet_aorta:RCR_aorta","783":"flow:inlet_aorta:RCR_aorta","784":"flow:inlet_aorta:RCR_aorta","785":"flow:inlet_aorta:RCR_aorta","786":"flow:inlet_aorta:RCR_aorta","787":"flow:inlet_aorta:RCR_aorta","788":"flow:inlet_aorta:RCR_aorta","789":"flow:inlet_aorta:RCR_aorta","790":"flow:inlet_aorta:RCR_aorta","791":"flow:inlet_aorta:RCR_aorta","792":"flow:inlet_aorta:RCR_aorta","793":"flow:inlet_aorta:RCR_aorta","794":"flow:inlet_aorta:RCR_aorta","795":"flow:inlet_aorta:RCR_aorta","796":"flow:inlet_aorta:RCR_aorta","797":"flow:inlet_aorta:RCR_aorta","798":"flow:inlet_aorta:RCR_aorta","799":"flow:inlet_aorta:RCR_aorta","800":"flow:inlet_aorta:RCR_aorta","801":"flow:inlet_aorta:RCR_aorta","802":"flow:inlet_aorta:RCR_aorta","803":"flow:inlet_aorta:RCR_aorta","804":"flow:inlet_aorta:RCR_aorta","805":"flow:inlet_aorta:RCR_aorta","806":"flow:inlet_aorta:RCR_aorta","807":"flow:inlet_aorta:RCR_aorta","808":"flow:inlet_aorta:RCR_aorta","809":"flow:inlet_aorta:RCR_aorta","810":"flow:inlet_aorta:RCR_aorta","811":"flow:inlet_aorta:RCR_aorta","812":"flow:inlet_aorta:RCR_aorta","813":"flow:inlet_aorta:RCR_aorta","814":"flow:inlet_aorta:RCR_aorta","815":"flow:inlet_aorta:RCR_aorta","816":"flow:inlet_aorta:RCR_aorta","817":"flow:inlet_aorta:RCR_aorta","818":"flow:inlet_aorta:RCR_aorta","819":"flow:inlet_aorta:RCR_aorta","820":"flow:inlet_aorta:RCR_aorta","821":"flow:inlet_aorta:RCR_aorta","822":"flow:inlet_aorta:RCR_aorta","823":"flow:inlet_aorta:RCR_aorta","824":"flow:inlet_aorta:RCR_aorta","825":"flow:inlet_aorta:RCR_aorta","826":"flow:inlet_aorta:RCR_aorta","827":"flow:inlet_aorta:RCR_aorta","828":"flow:inlet_aorta:RCR_aorta","829":"flow:inlet_aorta:RCR_aorta","830":"flow:inlet_aorta:RCR_aorta","831":"flow:inlet_aorta:RCR_aorta","832":"flow:inlet_aorta:RCR_aorta","833":"flow:inlet_aorta:RCR_aorta","834":"flow:inlet_aorta:RCR_aorta","835":"flow:inlet_aorta:RCR_aorta","836":"flow:inlet_aorta:RCR_aorta","837":"flow:inlet_aorta:RCR_aorta","838":"flow:inlet_aorta:RCR_aorta","839":"flow:inlet_aorta:RCR_aorta","840":"flow:inlet_aorta:RCR_aorta","841":"flow:inlet_aorta:RCR_aorta","842":"flow:inlet_aorta:RCR_aorta","843":"flow:inlet_aorta:RCR_aorta","844":"flow:inlet_aorta:RCR_aorta","845":"flow:inlet_aorta:RCR_aorta","846":"flow:inlet_aorta:RCR_aorta","847":"flow:inlet_aorta:RCR_aorta","848":"flow:inlet_aorta:RCR_aorta","849":"flow:inlet_aorta:RCR_aorta","850":"flow:inlet_aorta:RCR_aorta","851":"flow:inlet_aorta:RCR_aorta","852":"flow:inlet_aorta:RCR_aorta","853":"flow:inlet_aorta:RCR_aorta","854":"flow:inlet_aorta:RCR_aorta","855":"flow:inlet_aorta:RCR_aorta","856":"flow:inlet_aorta:RCR_aorta","857":"flow:inlet_aorta:RCR_aorta","858":"flow:inlet_aorta:RCR_aorta","859":"flow:inlet_aorta:RCR_aorta","860":"flow:inlet_aorta:RCR_aorta","861":"flow:inlet_aorta:RCR_aorta","862":"flow:inlet_aorta:RCR_aorta","863":"flow:inlet_aorta:RCR_aorta","864":"flow:inlet_aorta:RCR_aorta","865":"flow:inlet_aorta:RCR_aorta","866":"flow:inlet_aorta:RCR_aorta","867":"flow:inlet_aorta:RCR_aorta","868":"flow:inlet_aorta:RCR_aorta","869":"flow:inlet_aorta:RCR_aorta","870":"flow:inlet_aorta:RCR_aorta","871":"flow:inlet_aorta:RCR_aorta","872":"flow:inlet_aorta:RCR_aorta","873":"flow:inlet_aorta:RCR_aorta","874":"flow:inlet_aorta:RCR_aorta","875":"flow:inlet_aorta:RCR_aorta","876":"flow:inlet_aorta:RCR_aorta","877":"flow:inlet_aorta:RCR_aorta","878":"flow:inlet_aorta:RCR_aorta","879":"flow:inlet_aorta:RCR_aorta","880":"flow:inlet_aorta:RCR_aorta","881":"flow:inlet_aorta:RCR_aorta","882":"flow:inlet_aorta:RCR_aorta","883":"flow:inlet_aorta:RCR_aorta","884":"flow:inlet_aorta:RCR_aorta","885":"flow:inlet_aorta:RCR_aorta","886":"flow:inlet_aorta:RCR_aorta","887":"flow:inlet_aorta:RCR_aorta","888":"flow:inlet_aorta:RCR_aorta","889":"flow:inlet_aorta:RCR_aorta","890":"flow:inlet_aorta:RCR_aorta","891":"flow:inlet_aorta:RCR_aorta","892":"flow:inlet_aorta:RCR_aorta","893":"flow:inlet_aorta:RCR_aorta","894":"flow:inlet_aorta:RCR_aorta","895":"flow:inlet_aorta:RCR_aorta","896":"flow:inlet_aorta:RCR_aorta","897":"flow:inlet_aorta:RCR_aorta","898":"flow:inlet_aorta:RCR_aorta","899":"flow:inlet_aorta:RCR_aorta","900":"flow:inlet_aorta:RCR_aorta","901":"flow:inlet_aorta:RCR_aorta","902":"flow:inlet_aorta:RCR_aorta","903":"flow:inlet_aorta:RCR_aorta","904":"flow:inlet_aorta:RCR_aorta","905":"flow:inlet_aorta:RCR_aorta","906":"flow:inlet_aorta:RCR_aorta","907":"flow:inlet_aorta:RCR_aorta","908":"flow:inlet_aorta:RCR_aorta","909":"flow:inlet_aorta:RCR_aorta","910":"flow:inlet_aorta:RCR_aorta","911":"flow:inlet_aorta:RCR_aorta","912":"flow:inlet_aorta:RCR_aorta","913":"flow:inlet_aorta:RCR_aorta","914":"flow:inlet_aorta:RCR_aorta","915":"flow:inlet_aorta:RCR_aorta","916":"flow:inlet_aorta:RCR_aorta","917":"flow:inlet_aorta:RCR_aorta","918":"flow:inlet_aorta:RCR_aorta","919":"flow:inlet_aorta:RCR_aorta","920":"flow:inlet_aorta:RCR_aorta","921":"flow:inlet_aorta:RCR_aorta","922":"flow:inlet_aorta:RCR_aorta","923":"flow:inlet_aorta:RCR_aorta","924":"flow:inlet_aorta:RCR_aorta","925":"flow:inlet_aorta:RCR_aorta","926":"flow:inlet_aorta:RCR_aorta","927":"flow:inlet_aorta:RCR_aorta","928":"flow:inlet_aorta:RCR_aorta","929":"flow:inlet_aorta:RCR_aorta","930":"flow:inlet_aorta:RCR_aorta","931":"flow:inlet_aorta:RCR_aorta","932":"flow:inlet_aorta:RCR_aorta","933":"flow:inlet_aorta:RCR_aorta","934":"flow:inlet_aorta:RCR_aorta","935":"flow:inlet_aorta:RCR_aorta","936":"flow:inlet_aorta:RCR_aorta","937":"flow:inlet_aorta:RCR_aorta","938":"flow:inlet_aorta:RCR_aorta","939":"flow:inlet_aorta:RCR_aorta","940":"flow:inlet_aorta:RCR_aorta","941":"flow:inlet_aorta:RCR_aorta","942":"flow:inlet_aorta:RCR_aorta","943":"flow:inlet_aorta:RCR_aorta","944":"flow:inlet_aorta:RCR_aorta","945":"flow:inlet_aorta:RCR_aorta","946":"flow:inlet_aorta:RCR_aorta","947":"flow:inlet_aorta:RCR_aorta","948":"flow:inlet_aorta:RCR_aorta","949":"flow:inlet_aorta:RCR_aorta","950":"flow:inlet_aorta:RCR_aorta","951":"flow:inlet_aorta:RCR_aorta","952":"flow:inlet_aorta:RCR_aorta","953":"flow:inlet_aorta:RCR_aorta","954":"flow:inlet_aorta:RCR_aorta","955":"flow:inlet_aorta:RCR_aorta","956":"flow:inlet_aorta:RCR_aorta","957":"flow:inlet_aorta:RCR_aorta","958":"flow:inlet_aorta:RCR_aorta","959":"flow:inlet_aorta:RCR_aorta","960":"flow:inlet_aorta:RCR_aorta","961":"flow:inlet_aorta:RCR_aorta","962":"flow:inlet_aorta:RCR_aorta","963":"flow:inlet_aorta:RCR_aorta","964":"flow:inlet_aorta:RCR_aorta","965":"flow:inlet_aorta:RCR_aorta","966":"flow:inlet_aorta:RCR_aorta","967":"flow:inlet_aorta:RCR_aorta","968":"flow:inlet_aorta:RCR_aorta","969":"flow:inlet_aorta:RCR_aorta","970":"flow:inlet_aorta:RCR_aorta","971":"flow:inlet_aorta:RCR_aorta","972":"flow:inlet_aorta:RCR_aorta","973":"flow:inlet_aorta:RCR_aorta","974":"flow:inlet_aorta:RCR_aorta","975":"flow:inlet_aorta:RCR_aorta","976":"flow:inlet_aorta:RCR_aorta","977":"flow:inlet_aorta:RCR_aorta","978":"flow:inlet_aorta:RCR_aorta","979":"flow:inlet_aorta:RCR_aorta","980":"flow:inlet_aorta:RCR_aorta","981":"flow:inlet_aorta:RCR_aorta","982":"flow:inlet_aorta:RCR_aorta","983":"flow:inlet_aorta:RCR_aorta","984":"flow:inlet_aorta:RCR_aorta","985":"flow:inlet_aorta:RCR_aorta","986":"flow:inlet_aorta:RCR_aorta","987":"flow:inlet_aorta:RCR_aorta","988":"flow:inlet_aorta:RCR_aorta","989":"flow:inlet_aorta:RCR_aorta","990":"flow:inlet_aorta:RCR_aorta","991":"flow:inlet_aorta:RCR_aorta","992":"flow:inlet_aorta:RCR_aorta","993":"flow:inlet_aorta:RCR_aorta","994":"flow:inlet_aorta:RCR_aorta","995":"flow:inlet_aorta:RCR_aorta","996":"flow:inlet_aorta:RCR_aorta","997":"flow:inlet_aorta:RCR_aorta","998":"flow:inlet_aorta:RCR_aorta","999":"flow:inlet_aorta:RCR_aorta","1000":"pressure:inlet_aorta:RCR_aorta","1001":"pressure:inlet_aorta:RCR_aorta","1002":"pressure:inlet_aorta:RCR_aorta","1003":"pressure:inlet_aorta:RCR_aorta","1004":"pressure:inlet_aorta:RCR_aorta","1005":"pressure:inlet_aorta:RCR_aorta","1006":"pressure:inlet_aorta:RCR_aorta","1007":"pressure:inlet_aorta:RCR_aorta","1008":"pressure:inlet_aorta:RCR_aorta","1009":"pressure:inlet_aorta:RCR_aorta","1010":"pressure:inlet_aorta:RCR_aorta","1011":"pressure:inlet_aorta:RCR_aorta","1012":"pressure:inlet_aorta:RCR_aorta","1013":"pressure:inlet_aorta:RCR_aorta","1014":"pressure:inlet_aorta:RCR_aorta","1015":"pressure:inlet_aorta:RCR_aorta","1016":"pressure:inlet_aorta:RCR_aorta","1017":"pressure:inlet_aorta:RCR_aorta","1018":"pressure:inlet_aorta:RCR_aorta","1019":"pressure:inlet_aorta:RCR_aorta","1020":"pressure:inlet_aorta:RCR_aorta","1021":"pressure:inlet_aorta:RCR_aorta","1022":"pressure:inlet_aorta:RCR_aorta","1023":"pressure:inlet_aorta:RCR_aorta","1024":"pressure:inlet_aorta:RCR_aorta","1025":"pressure:inlet_aorta:RCR_aorta","1026":"pressure:inlet_aorta:RCR_aorta","1027":"pressure:inlet_aorta:RCR_aorta","1028":"pressure:inlet_aorta:RCR_aorta","1029":"pressure:inlet_aorta:RCR_aorta","1030":"pressure:inlet_aorta:RCR_aorta","1031":"pressure:inlet_aorta:RCR_aorta","1032":"pressure:inlet_aorta:RCR_aorta","1033":"pressure:inlet_aorta:RCR_aorta","1034":"pressure:inlet_aorta:RCR_aorta","1035":"pressure:inlet_aorta:RCR_aorta","1036":"pressure:inlet_aorta:RCR_aorta","1037":"pressure:inlet_aorta:RCR_aorta","1038":"pressure:inlet_aorta:RCR_aorta","1039":"pressure:inlet_aorta:RCR_aorta","1040":"pressure:inlet_aorta:RCR_aorta","1041":"pressure:inlet_aorta:RCR_aorta","1042":"pressure:inlet_aorta:RCR_aorta","1043":"pressure:inlet_aorta:RCR_aorta","1044":"pressure:inlet_aorta:RCR_aorta","1045":"pressure:inlet_aorta:RCR_aorta","1046":"pressure:inlet_aorta:RCR_aorta","1047":"pressure:inlet_aorta:RCR_aorta","1048":"pressure:inlet_aorta:RCR_aorta","1049":"pressure:inlet_aorta:RCR_aorta","1050":"pressure:inlet_aorta:RCR_aorta","1051":"pressure:inlet_aorta:RCR_aorta","1052":"pressure:inlet_aorta:RCR_aorta","1053":"pressure:inlet_aorta:RCR_aorta","1054":"pressure:inlet_aorta:RCR_aorta","1055":"pressure:inlet_aorta:RCR_aorta","1056":"pressure:inlet_aorta:RCR_aorta","1057":"pressure:inlet_aorta:RCR_aorta","1058":"pressure:inlet_aorta:RCR_aorta","1059":"pressure:inlet_aorta:RCR_aorta","1060":"pressure:inlet_aorta:RCR_aorta","1061":"pressure:inlet_aorta:RCR_aorta","1062":"pressure:inlet_aorta:RCR_aorta","1063":"pressure:inlet_aorta:RCR_aorta","1064":"pressure:inlet_aorta:RCR_aorta","1065":"pressure:inlet_aorta:RCR_aorta","1066":"pressure:inlet_aorta:RCR_aorta","1067":"pressure:inlet_aorta:RCR_aorta","1068":"pressure:inlet_aorta:RCR_aorta","1069":"pressure:inlet_aorta:RCR_aorta","1070":"pressure:inlet_aorta:RCR_aorta","1071":"pressure:inlet_aorta:RCR_aorta","1072":"pressure:inlet_aorta:RCR_aorta","1073":"pressure:inlet_aorta:RCR_aorta","1074":"pressure:inlet_aorta:RCR_aorta","1075":"pressure:inlet_aorta:RCR_aorta","1076":"pressure:inlet_aorta:RCR_aorta","1077":"pressure:inlet_aorta:RCR_aorta","1078":"pressure:inlet_aorta:RCR_aorta","1079":"pressure:inlet_aorta:RCR_aorta","1080":"pressure:inlet_aorta:RCR_aorta","1081":"pressure:inlet_aorta:RCR_aorta","1082":"pressure:inlet_aorta:RCR_aorta","1083":"pressure:inlet_aorta:RCR_aorta","1084":"pressure:inlet_aorta:RCR_aorta","1085":"pressure:inlet_aorta:RCR_aorta","1086":"pressure:inlet_aorta:RCR_aorta","1087":"pressure:inlet_aorta:RCR_aorta","1088":"pressure:inlet_aorta:RCR_aorta","1089":"pressure:inlet_aorta:RCR_aorta","1090":"pressure:inlet_aorta:RCR_aorta","1091":"pressure:inlet_aorta:RCR_aorta","1092":"pressure:inlet_aorta:RCR_aorta","1093":"pressure:inlet_aorta:RCR_aorta","1094":"pressure:inlet_aorta:RCR_aorta","1095":"pressure:inlet_aorta:RCR_aorta","1096":"pressure:inlet_aorta:RCR_aorta","1097":"pressure:inlet_aorta:RCR_aorta","1098":"pressure:inlet_aorta:RCR_aorta","1099":"pressure:inlet_aorta:RCR_aorta","1100":"pressure:inlet_aorta:RCR_aorta","1101":"pressure:inlet_aorta:RCR_aorta","1102":"pressure:inlet_aorta:RCR_aorta","1103":"pressure:inlet_aorta:RCR_aorta","1104":"pressure:inlet_aorta:RCR_aorta","1105":"pressure:inlet_aorta:RCR_aorta","1106":"pressure:inlet_aorta:RCR_aorta","1107":"pressure:inlet_aorta:RCR_aorta","1108":"pressure:inlet_aorta:RCR_aorta","1109":"pressure:inlet_aorta:RCR_aorta","1110":"pressure:inlet_aorta:RCR_aorta","1111":"pressure:inlet_aorta:RCR_aorta","1112":"pressure:inlet_aorta:RCR_aorta","1113":"pressure:inlet_aorta:RCR_aorta","1114":"pressure:inlet_aorta:RCR_aorta","1115":"pressure:inlet_aorta:RCR_aorta","1116":"pressure:inlet_aorta:RCR_aorta","1117":"pressure:inlet_aorta:RCR_aorta","1118":"pressure:inlet_aorta:RCR_aorta","1119":"pressure:inlet_aorta:RCR_aorta","1120":"pressure:inlet_aorta:RCR_aorta","1121":"pressure:inlet_aorta:RCR_aorta","1122":"pressure:inlet_aorta:RCR_aorta","1123":"pressure:inlet_aorta:RCR_aorta","1124":"pressure:inlet_aorta:RCR_aorta","1125":"pressure:inlet_aorta:RCR_aorta","1126":"pressure:inlet_aorta:RCR_aorta","1127":"pressure:inlet_aorta:RCR_aorta","1128":"pressure:inlet_aorta:RCR_aorta","1129":"pressure:inlet_aorta:RCR_aorta","1130":"pressure:inlet_aorta:RCR_aorta","1131":"pressure:inlet_aorta:RCR_aorta","1132":"pressure:inlet_aorta:RCR_aorta","1133":"pressure:inlet_aorta:RCR_aorta","1134":"pressure:inlet_aorta:RCR_aorta","1135":"pressure:inlet_aorta:RCR_aorta","1136":"pressure:inlet_aorta:RCR_aorta","1137":"pressure:inlet_aorta:RCR_aorta","1138":"pressure:inlet_aorta:RCR_aorta","1139":"pressure:inlet_aorta:RCR_aorta","1140":"pressure:inlet_aorta:RCR_aorta","1141":"pressure:inlet_aorta:RCR_aorta","1142":"pressure:inlet_aorta:RCR_aorta","1143":"pressure:inlet_aorta:RCR_aorta","1144":"pressure:inlet_aorta:RCR_aorta","1145":"pressure:inlet_aorta:RCR_aorta","1146":"pressure:inlet_aorta:RCR_aorta","1147":"pressure:inlet_aorta:RCR_aorta","1148":"pressure:inlet_aorta:RCR_aorta","1149":"pressure:inlet_aorta:RCR_aorta","1150":"pressure:inlet_aorta:RCR_aorta","1151":"pressure:inlet_aorta:RCR_aorta","1152":"pressure:inlet_aorta:RCR_aorta","1153":"pressure:inlet_aorta:RCR_aorta","1154":"pressure:inlet_aorta:RCR_aorta","1155":"pressure:inlet_aorta:RCR_aorta","1156":"pressure:inlet_aorta:RCR_aorta","1157":"pressure:inlet_aorta:RCR_aorta","1158":"pressure:inlet_aorta:RCR_aorta","1159":"pressure:inlet_aorta:RCR_aorta","1160":"pressure:inlet_aorta:RCR_aorta","1161":"pressure:inlet_aorta:RCR_aorta","1162":"pressure:inlet_aorta:RCR_aorta","1163":"pressure:inlet_aorta:RCR_aorta","1164":"pressure:inlet_aorta:RCR_aorta","1165":"pressure:inlet_aorta:RCR_aorta","1166":"pressure:inlet_aorta:RCR_aorta","1167":"pressure:inlet_aorta:RCR_aorta","1168":"pressure:inlet_aorta:RCR_aorta","1169":"pressure:inlet_aorta:RCR_aorta","1170":"pressure:inlet_aorta:RCR_aorta","1171":"pressure:inlet_aorta:RCR_aorta","1172":"pressure:inlet_aorta:RCR_aorta","1173":"pressure:inlet_aorta:RCR_aorta","1174":"pressure:inlet_aorta:RCR_aorta","1175":"pressure:inlet_aorta:RCR_aorta","1176":"pressure:inlet_aorta:RCR_aorta","1177":"pressure:inlet_aorta:RCR_aorta","1178":"pressure:inlet_aorta:RCR_aorta","1179":"pressure:inlet_aorta:RCR_aorta","1180":"pressure:inlet_aorta:RCR_aorta","1181":"pressure:inlet_aorta:RCR_aorta","1182":"pressure:inlet_aorta:RCR_aorta","1183":"pressure:inlet_aorta:RCR_aorta","1184":"pressure:inlet_aorta:RCR_aorta","1185":"pressure:inlet_aorta:RCR_aorta","1186":"pressure:inlet_aorta:RCR_aorta","1187":"pressure:inlet_aorta:RCR_aorta","1188":"pressure:inlet_aorta:RCR_aorta","1189":"pressure:inlet_aorta:RCR_aorta","1190":"pressure:inlet_aorta:RCR_aorta","1191":"pressure:inlet_aorta:RCR_aorta","1192":"pressure:inlet_aorta:RCR_aorta","1193":"pressure:inlet_aorta:RCR_aorta","1194":"pressure:inlet_aorta:RCR_aorta","1195":"pressure:inlet_aorta:RCR_aorta","1196":"pressure:inlet_aorta:RCR_aorta","1197":"pressure:inlet_aorta:RCR_aorta","1198":"pressure:inlet_aorta:RCR_aorta","1199":"pressure:inlet_aorta:RCR_aorta","1200":"pressure:inlet_aorta:RCR_aorta","1201":"pressure:inlet_aorta:RCR_aorta","1202":"pressure:inlet_aorta:RCR_aorta","1203":"pressure:inlet_aorta:RCR_aorta","1204":"pressure:inlet_aorta:RCR_aorta","1205":"pressure:inlet_aorta:RCR_aorta","1206":"pressure:inlet_aorta:RCR_aorta","1207":"pressure:inlet_aorta:RCR_aorta","1208":"pressure:inlet_aorta:RCR_aorta","1209":"pressure:inlet_aorta:RCR_aorta","1210":"pressure:inlet_aorta:RCR_aorta","1211":"pressure:inlet_aorta:RCR_aorta","1212":"pressure:inlet_aorta:RCR_aorta","1213":"pressure:inlet_aorta:RCR_aorta","1214":"pressure:inlet_aorta:RCR_aorta","1215":"pressure:inlet_aorta:RCR_aorta","1216":"pressure:inlet_aorta:RCR_aorta","1217":"pressure:inlet_aorta:RCR_aorta","1218":"pressure:inlet_aorta:RCR_aorta","1219":"pressure:inlet_aorta:RCR_aorta","1220":"pressure:inlet_aorta:RCR_aorta","1221":"pressure:inlet_aorta:RCR_aorta","1222":"pressure:inlet_aorta:RCR_aorta","1223":"pressure:inlet_aorta:RCR_aorta","1224":"pressure:inlet_aorta:RCR_aorta","1225":"pressure:inlet_aorta:RCR_aorta","1226":"pressure:inlet_aorta:RCR_aorta","1227":"pressure:inlet_aorta:RCR_aorta","1228":"pressure:inlet_aorta:RCR_aorta","1229":"pressure:inlet_aorta:RCR_aorta","1230":"pressure:inlet_aorta:RCR_aorta","1231":"pressure:inlet_aorta:RCR_aorta","1232":"pressure:inlet_aorta:RCR_aorta","1233":"pressure:inlet_aorta:RCR_aorta","1234":"pressure:inlet_aorta:RCR_aorta","1235":"pressure:inlet_aorta:RCR_aorta","1236":"pressure:inlet_aorta:RCR_aorta","1237":"pressure:inlet_aorta:RCR_aorta","1238":"pressure:inlet_aorta:RCR_aorta","1239":"pressure:inlet_aorta:RCR_aorta","1240":"pressure:inlet_aorta:RCR_aorta","1241":"pressure:inlet_aorta:RCR_aorta","1242":"pressure:inlet_aorta:RCR_aorta","1243":"pressure:inlet_aorta:RCR_aorta","1244":"pressure:inlet_aorta:RCR_aorta","1245":"pressure:inlet_aorta:RCR_aorta","1246":"pressure:inlet_aorta:RCR_aorta","1247":"pressure:inlet_aorta:RCR_aorta","1248":"pressure:inlet_aorta:RCR_aorta","1249":"pressure:inlet_aorta:RCR_aorta","1250":"pressure:inlet_aorta:RCR_aorta","1251":"pressure:inlet_aorta:RCR_aorta","1252":"pressure:inlet_aorta:RCR_aorta","1253":"pressure:inlet_aorta:RCR_aorta","1254":"pressure:inlet_aorta:RCR_aorta","1255":"pressure:inlet_aorta:RCR_aorta","1256":"pressure:inlet_aorta:RCR_aorta","1257":"pressure:inlet_aorta:RCR_aorta","1258":"pressure:inlet_aorta:RCR_aorta","1259":"pressure:inlet_aorta:RCR_aorta","1260":"pressure:inlet_aorta:RCR_aorta","1261":"pressure:inlet_aorta:RCR_aorta","1262":"pressure:inlet_aorta:RCR_aorta","1263":"pressure:inlet_aorta:RCR_aorta","1264":"pressure:inlet_aorta:RCR_aorta","1265":"pressure:inlet_aorta:RCR_aorta","1266":"pressure:inlet_aorta:RCR_aorta","1267":"pressure:inlet_aorta:RCR_aorta","1268":"pressure:inlet_aorta:RCR_aorta","1269":"pressure:inlet_aorta:RCR_aorta","1270":"pressure:inlet_aorta:RCR_aorta","1271":"pressure:inlet_aorta:RCR_aorta","1272":"pressure:inlet_aorta:RCR_aorta","1273":"pressure:inlet_aorta:RCR_aorta","1274":"pressure:inlet_aorta:RCR_aorta","1275":"pressure:inlet_aorta:RCR_aorta","1276":"pressure:inlet_aorta:RCR_aorta","1277":"pressure:inlet_aorta:RCR_aorta","1278":"pressure:inlet_aorta:RCR_aorta","1279":"pressure:inlet_aorta:RCR_aorta","1280":"pressure:inlet_aorta:RCR_aorta","1281":"pressure:inlet_aorta:RCR_aorta","1282":"pressure:inlet_aorta:RCR_aorta","1283":"pressure:inlet_aorta:RCR_aorta","1284":"pressure:inlet_aorta:RCR_aorta","1285":"pressure:inlet_aorta:RCR_aorta","1286":"pressure:inlet_aorta:RCR_aorta","1287":"pressure:inlet_aorta:RCR_aorta","1288":"pressure:inlet_aorta:RCR_aorta","1289":"pressure:inlet_aorta:RCR_aorta","1290":"pressure:inlet_aorta:RCR_aorta","1291":"pressure:inlet_aorta:RCR_aorta","1292":"pressure:inlet_aorta:RCR_aorta","1293":"pressure:inlet_aorta:RCR_aorta","1294":"pressure:inlet_aorta:RCR_aorta","1295":"pressure:inlet_aorta:RCR_aorta","1296":"pressure:inlet_aorta:RCR_aorta","1297":"pressure:inlet_aorta:RCR_aorta","1298":"pressure:inlet_aorta:RCR_aorta","1299":"pressure:inlet_aorta:RCR_aorta","1300":"pressure:inlet_aorta:RCR_aorta","1301":"pressure:inlet_aorta:RCR_aorta","1302":"pressure:inlet_aorta:RCR_aorta","1303":"pressure:inlet_aorta:RCR_aorta","1304":"pressure:inlet_aorta:RCR_aorta","1305":"pressure:inlet_aorta:RCR_aorta","1306":"pressure:inlet_aorta:RCR_aorta","1307":"pressure:inlet_aorta:RCR_aorta","1308":"pressure:inlet_aorta:RCR_aorta","1309":"pressure:inlet_aorta:RCR_aorta","1310":"pressure:inlet_aorta:RCR_aorta","1311":"pressure:inlet_aorta:RCR_aorta","1312":"pressure:inlet_aorta:RCR_aorta","1313":"pressure:inlet_aorta:RCR_aorta","1314":"pressure:inlet_aorta:RCR_aorta","1315":"pressure:inlet_aorta:RCR_aorta","1316":"pressure:inlet_aorta:RCR_aorta","1317":"pressure:inlet_aorta:RCR_aorta","1318":"pressure:inlet_aorta:RCR_aorta","1319":"pressure:inlet_aorta:RCR_aorta","1320":"pressure:inlet_aorta:RCR_aorta","1321":"pressure:inlet_aorta:RCR_aorta","1322":"pressure:inlet_aorta:RCR_aorta","1323":"pressure:inlet_aorta:RCR_aorta","1324":"pressure:inlet_aorta:RCR_aorta","1325":"pressure:inlet_aorta:RCR_aorta","1326":"pressure:inlet_aorta:RCR_aorta","1327":"pressure:inlet_aorta:RCR_aorta","1328":"pressure:inlet_aorta:RCR_aorta","1329":"pressure:inlet_aorta:RCR_aorta","1330":"pressure:inlet_aorta:RCR_aorta","1331":"pressure:inlet_aorta:RCR_aorta","1332":"pressure:inlet_aorta:RCR_aorta","1333":"pressure:inlet_aorta:RCR_aorta","1334":"pressure:inlet_aorta:RCR_aorta","1335":"pressure:inlet_aorta:RCR_aorta","1336":"pressure:inlet_aorta:RCR_aorta","1337":"pressure:inlet_aorta:RCR_aorta","1338":"pressure:inlet_aorta:RCR_aorta","1339":"pressure:inlet_aorta:RCR_aorta","1340":"pressure:inlet_aorta:RCR_aorta","1341":"pressure:inlet_aorta:RCR_aorta","1342":"pressure:inlet_aorta:RCR_aorta","1343":"pressure:inlet_aorta:RCR_aorta","1344":"pressure:inlet_aorta:RCR_aorta","1345":"pressure:inlet_aorta:RCR_aorta","1346":"pressure:inlet_aorta:RCR_aorta","1347":"pressure:inlet_aorta:RCR_aorta","1348":"pressure:inlet_aorta:RCR_aorta","1349":"pressure:inlet_aorta:RCR_aorta","1350":"pressure:inlet_aorta:RCR_aorta","1351":"pressure:inlet_aorta:RCR_aorta","1352":"pressure:inlet_aorta:RCR_aorta","1353":"pressure:inlet_aorta:RCR_aorta","1354":"pressure:inlet_aorta:RCR_aorta","1355":"pressure:inlet_aorta:RCR_aorta","1356":"pressure:inlet_aorta:RCR_aorta","1357":"pressure:inlet_aorta:RCR_aorta","1358":"pressure:inlet_aorta:RCR_aorta","1359":"pressure:inlet_aorta:RCR_aorta","1360":"pressure:inlet_aorta:RCR_aorta","1361":"pressure:inlet_aorta:RCR_aorta","1362":"pressure:inlet_aorta:RCR_aorta","1363":"pressure:inlet_aorta:RCR_aorta","1364":"pressure:inlet_aorta:RCR_aorta","1365":"pressure:inlet_aorta:RCR_aorta","1366":"pressure:inlet_aorta:RCR_aorta","1367":"pressure:inlet_aorta:RCR_aorta","1368":"pressure:inlet_aorta:RCR_aorta","1369":"pressure:inlet_aorta:RCR_aorta","1370":"pressure:inlet_aorta:RCR_aorta","1371":"pressure:inlet_aorta:RCR_aorta","1372":"pressure:inlet_aorta:RCR_aorta","1373":"pressure:inlet_aorta:RCR_aorta","1374":"pressure:inlet_aorta:RCR_aorta","1375":"pressure:inlet_aorta:RCR_aorta","1376":"pressure:inlet_aorta:RCR_aorta","1377":"pressure:inlet_aorta:RCR_aorta","1378":"pressure:inlet_aorta:RCR_aorta","1379":"pressure:inlet_aorta:RCR_aorta","1380":"pressure:inlet_aorta:RCR_aorta","1381":"pressure:inlet_aorta:RCR_aorta","1382":"pressure:inlet_aorta:RCR_aorta","1383":"pressure:inlet_aorta:RCR_aorta","1384":"pressure:inlet_aorta:RCR_aorta","1385":"pressure:inlet_aorta:RCR_aorta","1386":"pressure:inlet_aorta:RCR_aorta","1387":"pressure:inlet_aorta:RCR_aorta","1388":"pressure:inlet_aorta:RCR_aorta","1389":"pressure:inlet_aorta:RCR_aorta","1390":"pressure:inlet_aorta:RCR_aorta","1391":"pressure:inlet_aorta:RCR_aorta","1392":"pressure:inlet_aorta:RCR_aorta","1393":"pressure:inlet_aorta:RCR_aorta","1394":"pressure:inlet_aorta:RCR_aorta","1395":"pressure:inlet_aorta:RCR_aorta","1396":"pressure:inlet_aorta:RCR_aorta","1397":"pressure:inlet_aorta:RCR_aorta","1398":"pressure:inlet_aorta:RCR_aorta","1399":"pressure:inlet_aorta:RCR_aorta","1400":"pressure:inlet_aorta:RCR_aorta","1401":"pressure:inlet_aorta:RCR_aorta","1402":"pressure:inlet_aorta:RCR_aorta","1403":"pressure:inlet_aorta:RCR_aorta","1404":"pressure:inlet_aorta:RCR_aorta","1405":"pressure:inlet_aorta:RCR_aorta","1406":"pressure:inlet_aorta:RCR_aorta","1407":"pressure:inlet_aorta:RCR_aorta","1408":"pressure:inlet_aorta:RCR_aorta","1409":"pressure:inlet_aorta:RCR_aorta","1410":"pressure:inlet_aorta:RCR_aorta","1411":"pressure:inlet_aorta:RCR_aorta","1412":"pressure:inlet_aorta:RCR_aorta","1413":"pressure:inlet_aorta:RCR_aorta","1414":"pressure:inlet_aorta:RCR_aorta","1415":"pressure:inlet_aorta:RCR_aorta","1416":"pressure:inlet_aorta:RCR_aorta","1417":"pressure:inlet_aorta:RCR_aorta","1418":"pressure:inlet_aorta:RCR_aorta","1419":"pressure:inlet_aorta:RCR_aorta","1420":"pressure:inlet_aorta:RCR_aorta","1421":"pressure:inlet_aorta:RCR_aorta","1422":"pressure:inlet_aorta:RCR_aorta","1423":"pressure:inlet_aorta:RCR_aorta","1424":"pressure:inlet_aorta:RCR_aorta","1425":"pressure:inlet_aorta:RCR_aorta","1426":"pressure:inlet_aorta:RCR_aorta","1427":"pressure:inlet_aorta:RCR_aorta","1428":"pressure:inlet_aorta:RCR_aorta","1429":"pressure:inlet_aorta:RCR_aorta","1430":"pressure:inlet_aorta:RCR_aorta","1431":"pressure:inlet_aorta:RCR_aorta","1432":"pressure:inlet_aorta:RCR_aorta","1433":"pressure:inlet_aorta:RCR_aorta","1434":"pressure:inlet_aorta:RCR_aorta","1435":"pressure:inlet_aorta:RCR_aorta","1436":"pressure:inlet_aorta:RCR_aorta","1437":"pressure:inlet_aorta:RCR_aorta","1438":"pressure:inlet_aorta:RCR_aorta","1439":"pressure:inlet_aorta:RCR_aorta","1440":"pressure:inlet_aorta:RCR_aorta","1441":"pressure:inlet_aorta:RCR_aorta","1442":"pressure:inlet_aorta:RCR_aorta","1443":"pressure:inlet_aorta:RCR_aorta","1444":"pressure:inlet_aorta:RCR_aorta","1445":"pressure:inlet_aorta:RCR_aorta","1446":"pressure:inlet_aorta:RCR_aorta","1447":"pressure:inlet_aorta:RCR_aorta","1448":"pressure:inlet_aorta:RCR_aorta","1449":"pressure:inlet_aorta:RCR_aorta","1450":"pressure:inlet_aorta:RCR_aorta","1451":"pressure:inlet_aorta:RCR_aorta","1452":"pressure:inlet_aorta:RCR_aorta","1453":"pressure:inlet_aorta:RCR_aorta","1454":"pressure:inlet_aorta:RCR_aorta","1455":"pressure:inlet_aorta:RCR_aorta","1456":"pressure:inlet_aorta:RCR_aorta","1457":"pressure:inlet_aorta:RCR_aorta","1458":"pressure:inlet_aorta:RCR_aorta","1459":"pressure:inlet_aorta:RCR_aorta","1460":"pressure:inlet_aorta:RCR_aorta","1461":"pressure:inlet_aorta:RCR_aorta","1462":"pressure:inlet_aorta:RCR_aorta","1463":"pressure:inlet_aorta:RCR_aorta","1464":"pressure:inlet_aorta:RCR_aorta","1465":"pressure:inlet_aorta:RCR_aorta","1466":"pressure:inlet_aorta:RCR_aorta","1467":"pressure:inlet_aorta:RCR_aorta","1468":"pressure:inlet_aorta:RCR_aorta","1469":"pressure:inlet_aorta:RCR_aorta","1470":"pressure:inlet_aorta:RCR_aorta","1471":"pressure:inlet_aorta:RCR_aorta","1472":"pressure:inlet_aorta:RCR_aorta","1473":"pressure:inlet_aorta:RCR_aorta","1474":"pressure:inlet_aorta:RCR_aorta","1475":"pressure:inlet_aorta:RCR_aorta","1476":"pressure:inlet_aorta:RCR_aorta","1477":"pressure:inlet_aorta:RCR_aorta","1478":"pressure:inlet_aorta:RCR_aorta","1479":"pressure:inlet_aorta:RCR_aorta","1480":"pressure:inlet_aorta:RCR_aorta","1481":"pressure:inlet_aorta:RCR_aorta","1482":"pressure:inlet_aorta:RCR_aorta","1483":"pressure:inlet_aorta:RCR_aorta","1484":"pressure:inlet_aorta:RCR_aorta","1485":"pressure:inlet_aorta:RCR_aorta","1486":"pressure:inlet_aorta:RCR_aorta","1487":"pressure:inlet_aorta:RCR_aorta","1488":"pressure:inlet_aorta:RCR_aorta","1489":"pressure:inlet_aorta:RCR_aorta","1490":"pressure:inlet_aorta:RCR_aorta","1491":"pressure:inlet_aorta:RCR_aorta","1492":"pressure:inlet_aorta:RCR_aorta","1493":"pressure:inlet_aorta:RCR_aorta","1494":"pressure:inlet_aorta:RCR_aorta","1495":"pressure:inlet_aorta:RCR_aorta","1496":"pressure:inlet_aorta:RCR_aorta","1497":"pressure:inlet_aorta:RCR_aorta","1498":"pressure:inlet_aorta:RCR_aorta","1499":"pressure:inlet_aorta:RCR_aorta","1500":"pressure:inlet_aorta:RCR_aorta","1501":"pressure:inlet_aorta:RCR_aorta","1502":"pressure:inlet_aorta:RCR_aorta","1503":"pressure:inlet_aorta:RCR_aorta","1504":"pressure:inlet_aorta:RCR_aorta","1505":"pressure:inlet_aorta:RCR_aorta","1506":"pressure:inlet_aorta:RCR_aorta","1507":"pressure:inlet_aorta:RCR_aorta","1508":"pressure:inlet_aorta:RCR_aorta","1509":"pressure:inlet_aorta:RCR_aorta","1510":"pressure:inlet_aorta:RCR_aorta","1511":"pressure:inlet_aorta:RCR_aorta","1512":"pressure:inlet_aorta:RCR_aorta","1513":"pressure:inlet_aorta:RCR_aorta","1514":"pressure:inlet_aorta:RCR_aorta","1515":"pressure:inlet_aorta:RCR_aorta","1516":"pressure:inlet_aorta:RCR_aorta","1517":"pressure:inlet_aorta:RCR_aorta","1518":"pressure:inlet_aorta:RCR_aorta","1519":"pressure:inlet_aorta:RCR_aorta","1520":"pressure:inlet_aorta:RCR_aorta","1521":"pressure:inlet_aorta:RCR_aorta","1522":"pressure:inlet_aorta:RCR_aorta","1523":"pressure:inlet_aorta:RCR_aorta","1524":"pressure:inlet_aorta:RCR_aorta","1525":"pressure:inlet_aorta:RCR_aorta","1526":"pressure:inlet_aorta:RCR_aorta","1527":"pressure:inlet_aorta:RCR_aorta","1528":"pressure:inlet_aorta:RCR_aorta","1529":"pressure:inlet_aorta:RCR_aorta","1530":"pressure:inlet_aorta:RCR_aorta","1531":"pressure:inlet_aorta:RCR_aorta","1532":"pressure:inlet_aorta:RCR_aorta","1533":"pressure:inlet_aorta:RCR_aorta","1534":"pressure:inlet_aorta:RCR_aorta","1535":"pressure:inlet_aorta:RCR_aorta","1536":"pressure:inlet_aorta:RCR_aorta","1537":"pressure:inlet_aorta:RCR_aorta","1538":"pressure:inlet_aorta:RCR_aorta","1539":"pressure:inlet_aorta:RCR_aorta","1540":"pressure:inlet_aorta:RCR_aorta","1541":"pressure:inlet_aorta:RCR_aorta","1542":"pressure:inlet_aorta:RCR_aorta","1543":"pressure:inlet_aorta:RCR_aorta","1544":"pressure:inlet_aorta:RCR_aorta","1545":"pressure:inlet_aorta:RCR_aorta","1546":"pressure:inlet_aorta:RCR_aorta","1547":"pressure:inlet_aorta:RCR_aorta","1548":"pressure:inlet_aorta:RCR_aorta","1549":"pressure:inlet_aorta:RCR_aorta","1550":"pressure:inlet_aorta:RCR_aorta","1551":"pressure:inlet_aorta:RCR_aorta","1552":"pressure:inlet_aorta:RCR_aorta","1553":"pressure:inlet_aorta:RCR_aorta","1554":"pressure:inlet_aorta:RCR_aorta","1555":"pressure:inlet_aorta:RCR_aorta","1556":"pressure:inlet_aorta:RCR_aorta","1557":"pressure:inlet_aorta:RCR_aorta","1558":"pressure:inlet_aorta:RCR_aorta","1559":"pressure:inlet_aorta:RCR_aorta","1560":"pressure:inlet_aorta:RCR_aorta","1561":"pressure:inlet_aorta:RCR_aorta","1562":"pressure:inlet_aorta:RCR_aorta","1563":"pressure:inlet_aorta:RCR_aorta","1564":"pressure:inlet_aorta:RCR_aorta","1565":"pressure:inlet_aorta:RCR_aorta","1566":"pressure:inlet_aorta:RCR_aorta","1567":"pressure:inlet_aorta:RCR_aorta","1568":"pressure:inlet_aorta:RCR_aorta","1569":"pressure:inlet_aorta:RCR_aorta","1570":"pressure:inlet_aorta:RCR_aorta","1571":"pressure:inlet_aorta:RCR_aorta","1572":"pressure:inlet_aorta:RCR_aorta","1573":"pressure:inlet_aorta:RCR_aorta","1574":"pressure:inlet_aorta:RCR_aorta","1575":"pressure:inlet_aorta:RCR_aorta","1576":"pressure:inlet_aorta:RCR_aorta","1577":"pressure:inlet_aorta:RCR_aorta","1578":"pressure:inlet_aorta:RCR_aorta","1579":"pressure:inlet_aorta:RCR_aorta","1580":"pressure:inlet_aorta:RCR_aorta","1581":"pressure:inlet_aorta:RCR_aorta","1582":"pressure:inlet_aorta:RCR_aorta","1583":"pressure:inlet_aorta:RCR_aorta","1584":"pressure:inlet_aorta:RCR_aorta","1585":"pressure:inlet_aorta:RCR_aorta","1586":"pressure:inlet_aorta:RCR_aorta","1587":"pressure:inlet_aorta:RCR_aorta","1588":"pressure:inlet_aorta:RCR_aorta","1589":"pressure:inlet_aorta:RCR_aorta","1590":"pressure:inlet_aorta:RCR_aorta","1591":"pressure:inlet_aorta:RCR_aorta","1592":"pressure:inlet_aorta:RCR_aorta","1593":"pressure:inlet_aorta:RCR_aorta","1594":"pressure:inlet_aorta:RCR_aorta","1595":"pressure:inlet_aorta:RCR_aorta","1596":"pressure:inlet_aorta:RCR_aorta","1597":"pressure:inlet_aorta:RCR_aorta","1598":"pressure:inlet_aorta:RCR_aorta","1599":"pressure:inlet_aorta:RCR_aorta","1600":"pressure:inlet_aorta:RCR_aorta","1601":"pressure:inlet_aorta:RCR_aorta","1602":"pressure:inlet_aorta:RCR_aorta","1603":"pressure:inlet_aorta:RCR_aorta","1604":"pressure:inlet_aorta:RCR_aorta","1605":"pressure:inlet_aorta:RCR_aorta","1606":"pressure:inlet_aorta:RCR_aorta","1607":"pressure:inlet_aorta:RCR_aorta","1608":"pressure:inlet_aorta:RCR_aorta","1609":"pressure:inlet_aorta:RCR_aorta","1610":"pressure:inlet_aorta:RCR_aorta","1611":"pressure:inlet_aorta:RCR_aorta","1612":"pressure:inlet_aorta:RCR_aorta","1613":"pressure:inlet_aorta:RCR_aorta","1614":"pressure:inlet_aorta:RCR_aorta","1615":"pressure:inlet_aorta:RCR_aorta","1616":"pressure:inlet_aorta:RCR_aorta","1617":"pressure:inlet_aorta:RCR_aorta","1618":"pressure:inlet_aorta:RCR_aorta","1619":"pressure:inlet_aorta:RCR_aorta","1620":"pressure:inlet_aorta:RCR_aorta","1621":"pressure:inlet_aorta:RCR_aorta","1622":"pressure:inlet_aorta:RCR_aorta","1623":"pressure:inlet_aorta:RCR_aorta","1624":"pressure:inlet_aorta:RCR_aorta","1625":"pressure:inlet_aorta:RCR_aorta","1626":"pressure:inlet_aorta:RCR_aorta","1627":"pressure:inlet_aorta:RCR_aorta","1628":"pressure:inlet_aorta:RCR_aorta","1629":"pressure:inlet_aorta:RCR_aorta","1630":"pressure:inlet_aorta:RCR_aorta","1631":"pressure:inlet_aorta:RCR_aorta","1632":"pressure:inlet_aorta:RCR_aorta","1633":"pressure:inlet_aorta:RCR_aorta","1634":"pressure:inlet_aorta:RCR_aorta","1635":"pressure:inlet_aorta:RCR_aorta","1636":"pressure:inlet_aorta:RCR_aorta","1637":"pressure:inlet_aorta:RCR_aorta","1638":"pressure:inlet_aorta:RCR_aorta","1639":"pressure:inlet_aorta:RCR_aorta","1640":"pressure:inlet_aorta:RCR_aorta","1641":"pressure:inlet_aorta:RCR_aorta","1642":"pressure:inlet_aorta:RCR_aorta","1643":"pressure:inlet_aorta:RCR_aorta","1644":"pressure:inlet_aorta:RCR_aorta","1645":"pressure:inlet_aorta:RCR_aorta","1646":"pressure:inlet_aorta:RCR_aorta","1647":"pressure:inlet_aorta:RCR_aorta","1648":"pressure:inlet_aorta:RCR_aorta","1649":"pressure:inlet_aorta:RCR_aorta","1650":"pressure:inlet_aorta:RCR_aorta","1651":"pressure:inlet_aorta:RCR_aorta","1652":"pressure:inlet_aorta:RCR_aorta","1653":"pressure:inlet_aorta:RCR_aorta","1654":"pressure:inlet_aorta:RCR_aorta","1655":"pressure:inlet_aorta:RCR_aorta","1656":"pressure:inlet_aorta:RCR_aorta","1657":"pressure:inlet_aorta:RCR_aorta","1658":"pressure:inlet_aorta:RCR_aorta","1659":"pressure:inlet_aorta:RCR_aorta","1660":"pressure:inlet_aorta:RCR_aorta","1661":"pressure:inlet_aorta:RCR_aorta","1662":"pressure:inlet_aorta:RCR_aorta","1663":"pressure:inlet_aorta:RCR_aorta","1664":"pressure:inlet_aorta:RCR_aorta","1665":"pressure:inlet_aorta:RCR_aorta","1666":"pressure:inlet_aorta:RCR_aorta","1667":"pressure:inlet_aorta:RCR_aorta","1668":"pressure:inlet_aorta:RCR_aorta","1669":"pressure:inlet_aorta:RCR_aorta","1670":"pressure:inlet_aorta:RCR_aorta","1671":"pressure:inlet_aorta:RCR_aorta","1672":"pressure:inlet_aorta:RCR_aorta","1673":"pressure:inlet_aorta:RCR_aorta","1674":"pressure:inlet_aorta:RCR_aorta","1675":"pressure:inlet_aorta:RCR_aorta","1676":"pressure:inlet_aorta:RCR_aorta","1677":"pressure:inlet_aorta:RCR_aorta","1678":"pressure:inlet_aorta:RCR_aorta","1679":"pressure:inlet_aorta:RCR_aorta","1680":"pressure:inlet_aorta:RCR_aorta","1681":"pressure:inlet_aorta:RCR_aorta","1682":"pressure:inlet_aorta:RCR_aorta","1683":"pressure:inlet_aorta:RCR_aorta","1684":"pressure:inlet_aorta:RCR_aorta","1685":"pressure:inlet_aorta:RCR_aorta","1686":"pressure:inlet_aorta:RCR_aorta","1687":"pressure:inlet_aorta:RCR_aorta","1688":"pressure:inlet_aorta:RCR_aorta","1689":"pressure:inlet_aorta:RCR_aorta","1690":"pressure:inlet_aorta:RCR_aorta","1691":"pressure:inlet_aorta:RCR_aorta","1692":"pressure:inlet_aorta:RCR_aorta","1693":"pressure:inlet_aorta:RCR_aorta","1694":"pressure:inlet_aorta:RCR_aorta","1695":"pressure:inlet_aorta:RCR_aorta","1696":"pressure:inlet_aorta:RCR_aorta","1697":"pressure:inlet_aorta:RCR_aorta","1698":"pressure:inlet_aorta:RCR_aorta","1699":"pressure:inlet_aorta:RCR_aorta","1700":"pressure:inlet_aorta:RCR_aorta","1701":"pressure:inlet_aorta:RCR_aorta","1702":"pressure:inlet_aorta:RCR_aorta","1703":"pressure:inlet_aorta:RCR_aorta","1704":"pressure:inlet_aorta:RCR_aorta","1705":"pressure:inlet_aorta:RCR_aorta","1706":"pressure:inlet_aorta:RCR_aorta","1707":"pressure:inlet_aorta:RCR_aorta","1708":"pressure:inlet_aorta:RCR_aorta","1709":"pressure:inlet_aorta:RCR_aorta","1710":"pressure:inlet_aorta:RCR_aorta","1711":"pressure:inlet_aorta:RCR_aorta","1712":"pressure:inlet_aorta:RCR_aorta","1713":"pressure:inlet_aorta:RCR_aorta","1714":"pressure:inlet_aorta:RCR_aorta","1715":"pressure:inlet_aorta:RCR_aorta","1716":"pressure:inlet_aorta:RCR_aorta","1717":"pressure:inlet_aorta:RCR_aorta","1718":"pressure:inlet_aorta:RCR_aorta","1719":"pressure:inlet_aorta:RCR_aorta","1720":"pressure:inlet_aorta:RCR_aorta","1721":"pressure:inlet_aorta:RCR_aorta","1722":"pressure:inlet_aorta:RCR_aorta","1723":"pressure:inlet_aorta:RCR_aorta","1724":"pressure:inlet_aorta:RCR_aorta","1725":"pressure:inlet_aorta:RCR_aorta","1726":"pressure:inlet_aorta:RCR_aorta","1727":"pressure:inlet_aorta:RCR_aorta","1728":"pressure:inlet_aorta:RCR_aorta","1729":"pressure:inlet_aorta:RCR_aorta","1730":"pressure:inlet_aorta:RCR_aorta","1731":"pressure:inlet_aorta:RCR_aorta","1732":"pressure:inlet_aorta:RCR_aorta","1733":"pressure:inlet_aorta:RCR_aorta","1734":"pressure:inlet_aorta:RCR_aorta","1735":"pressure:inlet_aorta:RCR_aorta","1736":"pressure:inlet_aorta:RCR_aorta","1737":"pressure:inlet_aorta:RCR_aorta","1738":"pressure:inlet_aorta:RCR_aorta","1739":"pressure:inlet_aorta:RCR_aorta","1740":"pressure:inlet_aorta:RCR_aorta","1741":"pressure:inlet_aorta:RCR_aorta","1742":"pressure:inlet_aorta:RCR_aorta","1743":"pressure:inlet_aorta:RCR_aorta","1744":"pressure:inlet_aorta:RCR_aorta","1745":"pressure:inlet_aorta:RCR_aorta","1746":"pressure:inlet_aorta:RCR_aorta","1747":"pressure:inlet_aorta:RCR_aorta","1748":"pressure:inlet_aorta:RCR_aorta","1749":"pressure:inlet_aorta:RCR_aorta","1750":"pressure:inlet_aorta:RCR_aorta","1751":"pressure:inlet_aorta:RCR_aorta","1752":"pressure:inlet_aorta:RCR_aorta","1753":"pressure:inlet_aorta:RCR_aorta","1754":"pressure:inlet_aorta:RCR_aorta","1755":"pressure:inlet_aorta:RCR_aorta","1756":"pressure:inlet_aorta:RCR_aorta","1757":"pressure:inlet_aorta:RCR_aorta","1758":"pressure:inlet_aorta:RCR_aorta","1759":"pressure:inlet_aorta:RCR_aorta","1760":"pressure:inlet_aorta:RCR_aorta","1761":"pressure:inlet_aorta:RCR_aorta","1762":"pressure:inlet_aorta:RCR_aorta","1763":"pressure:inlet_aorta:RCR_aorta","1764":"pressure:inlet_aorta:RCR_aorta","1765":"pressure:inlet_aorta:RCR_aorta","1766":"pressure:inlet_aorta:RCR_aorta","1767":"pressure:inlet_aorta:RCR_aorta","1768":"pressure:inlet_aorta:RCR_aorta","1769":"pressure:inlet_aorta:RCR_aorta","1770":"pressure:inlet_aorta:RCR_aorta","1771":"pressure:inlet_aorta:RCR_aorta","1772":"pressure:inlet_aorta:RCR_aorta","1773":"pressure:inlet_aorta:RCR_aorta","1774":"pressure:inlet_aorta:RCR_aorta","1775":"pressure:inlet_aorta:RCR_aorta","1776":"pressure:inlet_aorta:RCR_aorta","1777":"pressure:inlet_aorta:RCR_aorta","1778":"pressure:inlet_aorta:RCR_aorta","1779":"pressure:inlet_aorta:RCR_aorta","1780":"pressure:inlet_aorta:RCR_aorta","1781":"pressure:inlet_aorta:RCR_aorta","1782":"pressure:inlet_aorta:RCR_aorta","1783":"pressure:inlet_aorta:RCR_aorta","1784":"pressure:inlet_aorta:RCR_aorta","1785":"pressure:inlet_aorta:RCR_aorta","1786":"pressure:inlet_aorta:RCR_aorta","1787":"pressure:inlet_aorta:RCR_aorta","1788":"pressure:inlet_aorta:RCR_aorta","1789":"pressure:inlet_aorta:RCR_aorta","1790":"pressure:inlet_aorta:RCR_aorta","1791":"pressure:inlet_aorta:RCR_aorta","1792":"pressure:inlet_aorta:RCR_aorta","1793":"pressure:inlet_aorta:RCR_aorta","1794":"pressure:inlet_aorta:RCR_aorta","1795":"pressure:inlet_aorta:RCR_aorta","1796":"pressure:inlet_aorta:RCR_aorta","1797":"pressure:inlet_aorta:RCR_aorta","1798":"pressure:inlet_aorta:RCR_aorta","1799":"pressure:inlet_aorta:RCR_aorta","1800":"pressure:inlet_aorta:RCR_aorta","1801":"pressure:inlet_aorta:RCR_aorta","1802":"pressure:inlet_aorta:RCR_aorta","1803":"pressure:inlet_aorta:RCR_aorta","1804":"pressure:inlet_aorta:RCR_aorta","1805":"pressure:inlet_aorta:RCR_aorta","1806":"pressure:inlet_aorta:RCR_aorta","1807":"pressure:inlet_aorta:RCR_aorta","1808":"pressure:inlet_aorta:RCR_aorta","1809":"pressure:inlet_aorta:RCR_aorta","1810":"pressure:inlet_aorta:RCR_aorta","1811":"pressure:inlet_aorta:RCR_aorta","1812":"pressure:inlet_aorta:RCR_aorta","1813":"pressure:inlet_aorta:RCR_aorta","1814":"pressure:inlet_aorta:RCR_aorta","1815":"pressure:inlet_aorta:RCR_aorta","1816":"pressure:inlet_aorta:RCR_aorta","1817":"pressure:inlet_aorta:RCR_aorta","1818":"pressure:inlet_aorta:RCR_aorta","1819":"pressure:inlet_aorta:RCR_aorta","1820":"pressure:inlet_aorta:RCR_aorta","1821":"pressure:inlet_aorta:RCR_aorta","1822":"pressure:inlet_aorta:RCR_aorta","1823":"pressure:inlet_aorta:RCR_aorta","1824":"pressure:inlet_aorta:RCR_aorta","1825":"pressure:inlet_aorta:RCR_aorta","1826":"pressure:inlet_aorta:RCR_aorta","1827":"pressure:inlet_aorta:RCR_aorta","1828":"pressure:inlet_aorta:RCR_aorta","1829":"pressure:inlet_aorta:RCR_aorta","1830":"pressure:inlet_aorta:RCR_aorta","1831":"pressure:inlet_aorta:RCR_aorta","1832":"pressure:inlet_aorta:RCR_aorta","1833":"pressure:inlet_aorta:RCR_aorta","1834":"pressure:inlet_aorta:RCR_aorta","1835":"pressure:inlet_aorta:RCR_aorta","1836":"pressure:inlet_aorta:RCR_aorta","1837":"pressure:inlet_aorta:RCR_aorta","1838":"pressure:inlet_aorta:RCR_aorta","1839":"pressure:inlet_aorta:RCR_aorta","1840":"pressure:inlet_aorta:RCR_aorta","1841":"pressure:inlet_aorta:RCR_aorta","1842":"pressure:inlet_aorta:RCR_aorta","1843":"pressure:inlet_aorta:RCR_aorta","1844":"pressure:inlet_aorta:RCR_aorta","1845":"pressure:inlet_aorta:RCR_aorta","1846":"pressure:inlet_aorta:RCR_aorta","1847":"pressure:inlet_aorta:RCR_aorta","1848":"pressure:inlet_aorta:RCR_aorta","1849":"pressure:inlet_aorta:RCR_aorta","1850":"pressure:inlet_aorta:RCR_aorta","1851":"pressure:inlet_aorta:RCR_aorta","1852":"pressure:inlet_aorta:RCR_aorta","1853":"pressure:inlet_aorta:RCR_aorta","1854":"pressure:inlet_aorta:RCR_aorta","1855":"pressure:inlet_aorta:RCR_aorta","1856":"pressure:inlet_aorta:RCR_aorta","1857":"pressure:inlet_aorta:RCR_aorta","1858":"pressure:inlet_aorta:RCR_aorta","1859":"pressure:inlet_aorta:RCR_aorta","1860":"pressure:inlet_aorta:RCR_aorta","1861":"pressure:inlet_aorta:RCR_aorta","1862":"pressure:inlet_aorta:RCR_aorta","1863":"pressure:inlet_aorta:RCR_aorta","1864":"pressure:inlet_aorta:RCR_aorta","1865":"pressure:inlet_aorta:RCR_aorta","1866":"pressure:inlet_aorta:RCR_aorta","1867":"pressure:inlet_aorta:RCR_aorta","1868":"pressure:inlet_aorta:RCR_aorta","1869":"pressure:inlet_aorta:RCR_aorta","1870":"pressure:inlet_aorta:RCR_aorta","1871":"pressure:inlet_aorta:RCR_aorta","1872":"pressure:inlet_aorta:RCR_aorta","1873":"pressure:inlet_aorta:RCR_aorta","1874":"pressure:inlet_aorta:RCR_aorta","1875":"pressure:inlet_aorta:RCR_aorta","1876":"pressure:inlet_aorta:RCR_aorta","1877":"pressure:inlet_aorta:RCR_aorta","1878":"pressure:inlet_aorta:RCR_aorta","1879":"pressure:inlet_aorta:RCR_aorta","1880":"pressure:inlet_aorta:RCR_aorta","1881":"pressure:inlet_aorta:RCR_aorta","1882":"pressure:inlet_aorta:RCR_aorta","1883":"pressure:inlet_aorta:RCR_aorta","1884":"pressure:inlet_aorta:RCR_aorta","1885":"pressure:inlet_aorta:RCR_aorta","1886":"pressure:inlet_aorta:RCR_aorta","1887":"pressure:inlet_aorta:RCR_aorta","1888":"pressure:inlet_aorta:RCR_aorta","1889":"pressure:inlet_aorta:RCR_aorta","1890":"pressure:inlet_aorta:RCR_aorta","1891":"pressure:inlet_aorta:RCR_aorta","1892":"pressure:inlet_aorta:RCR_aorta","1893":"pressure:inlet_aorta:RCR_aorta","1894":"pressure:inlet_aorta:RCR_aorta","1895":"pressure:inlet_aorta:RCR_aorta","1896":"pressure:inlet_aorta:RCR_aorta","1897":"pressure:inlet_aorta:RCR_aorta","1898":"pressure:inlet_aorta:RCR_aorta","1899":"pressure:inlet_aorta:RCR_aorta","1900":"pressure:inlet_aorta:RCR_aorta","1901":"pressure:inlet_aorta:RCR_aorta","1902":"pressure:inlet_aorta:RCR_aorta","1903":"pressure:inlet_aorta:RCR_aorta","1904":"pressure:inlet_aorta:RCR_aorta","1905":"pressure:inlet_aorta:RCR_aorta","1906":"pressure:inlet_aorta:RCR_aorta","1907":"pressure:inlet_aorta:RCR_aorta","1908":"pressure:inlet_aorta:RCR_aorta","1909":"pressure:inlet_aorta:RCR_aorta","1910":"pressure:inlet_aorta:RCR_aorta","1911":"pressure:inlet_aorta:RCR_aorta","1912":"pressure:inlet_aorta:RCR_aorta","1913":"pressure:inlet_aorta:RCR_aorta","1914":"pressure:inlet_aorta:RCR_aorta","1915":"pressure:inlet_aorta:RCR_aorta","1916":"pressure:inlet_aorta:RCR_aorta","1917":"pressure:inlet_aorta:RCR_aorta","1918":"pressure:inlet_aorta:RCR_aorta","1919":"pressure:inlet_aorta:RCR_aorta","1920":"pressure:inlet_aorta:RCR_aorta","1921":"pressure:inlet_aorta:RCR_aorta","1922":"pressure:inlet_aorta:RCR_aorta","1923":"pressure:inlet_aorta:RCR_aorta","1924":"pressure:inlet_aorta:RCR_aorta","1925":"pressure:inlet_aorta:RCR_aorta","1926":"pressure:inlet_aorta:RCR_aorta","1927":"pressure:inlet_aorta:RCR_aorta","1928":"pressure:inlet_aorta:RCR_aorta","1929":"pressure:inlet_aorta:RCR_aorta","1930":"pressure:inlet_aorta:RCR_aorta","1931":"pressure:inlet_aorta:RCR_aorta","1932":"pressure:inlet_aorta:RCR_aorta","1933":"pressure:inlet_aorta:RCR_aorta","1934":"pressure:inlet_aorta:RCR_aorta","1935":"pressure:inlet_aorta:RCR_aorta","1936":"pressure:inlet_aorta:RCR_aorta","1937":"pressure:inlet_aorta:RCR_aorta","1938":"pressure:inlet_aorta:RCR_aorta","1939":"pressure:inlet_aorta:RCR_aorta","1940":"pressure:inlet_aorta:RCR_aorta","1941":"pressure:inlet_aorta:RCR_aorta","1942":"pressure:inlet_aorta:RCR_aorta","1943":"pressure:inlet_aorta:RCR_aorta","1944":"pressure:inlet_aorta:RCR_aorta","1945":"pressure:inlet_aorta:RCR_aorta","1946":"pressure:inlet_aorta:RCR_aorta","1947":"pressure:inlet_aorta:RCR_aorta","1948":"pressure:inlet_aorta:RCR_aorta","1949":"pressure:inlet_aorta:RCR_aorta","1950":"pressure:inlet_aorta:RCR_aorta","1951":"pressure:inlet_aorta:RCR_aorta","1952":"pressure:inlet_aorta:RCR_aorta","1953":"pressure:inlet_aorta:RCR_aorta","1954":"pressure:inlet_aorta:RCR_aorta","1955":"pressure:inlet_aorta:RCR_aorta","1956":"pressure:inlet_aorta:RCR_aorta","1957":"pressure:inlet_aorta:RCR_aorta","1958":"pressure:inlet_aorta:RCR_aorta","1959":"pressure:inlet_aorta:RCR_aorta","1960":"pressure:inlet_aorta:RCR_aorta","1961":"pressure:inlet_aorta:RCR_aorta","1962":"pressure:inlet_aorta:RCR_aorta","1963":"pressure:inlet_aorta:RCR_aorta","1964":"pressure:inlet_aorta:RCR_aorta","1965":"pressure:inlet_aorta:RCR_aorta","1966":"pressure:inlet_aorta:RCR_aorta","1967":"pressure:inlet_aorta:RCR_aorta","1968":"pressure:inlet_aorta:RCR_aorta","1969":"pressure:inlet_aorta:RCR_aorta","1970":"pressure:inlet_aorta:RCR_aorta","1971":"pressure:inlet_aorta:RCR_aorta","1972":"pressure:inlet_aorta:RCR_aorta","1973":"pressure:inlet_aorta:RCR_aorta","1974":"pressure:inlet_aorta:RCR_aorta","1975":"pressure:inlet_aorta:RCR_aorta","1976":"pressure:inlet_aorta:RCR_aorta","1977":"pressure:inlet_aorta:RCR_aorta","1978":"pressure:inlet_aorta:RCR_aorta","1979":"pressure:inlet_aorta:RCR_aorta","1980":"pressure:inlet_aorta:RCR_aorta","1981":"pressure:inlet_aorta:RCR_aorta","1982":"pressure:inlet_aorta:RCR_aorta","1983":"pressure:inlet_aorta:RCR_aorta","1984":"pressure:inlet_aorta:RCR_aorta","1985":"pressure:inlet_aorta:RCR_aorta","1986":"pressure:inlet_aorta:RCR_aorta","1987":"pressure:inlet_aorta:RCR_aorta","1988":"pressure:inlet_aorta:RCR_aorta","1989":"pressure:inlet_aorta:RCR_aorta","1990":"pressure:inlet_aorta:RCR_aorta","1991":"pressure:inlet_aorta:RCR_aorta","1992":"pressure:inlet_aorta:RCR_aorta","1993":"pressure:inlet_aorta:RCR_aorta","1994":"pressure:inlet_aorta:RCR_aorta","1995":"pressure:inlet_aorta:RCR_aorta","1996":"pressure:inlet_aorta:RCR_aorta","1997":"pressure:inlet_aorta:RCR_aorta","1998":"pressure:inlet_aorta:RCR_aorta","1999":"pressure:inlet_aorta:RCR_aorta","2000":"flow:inlet_aorta_br:RCR_aorta_br","2001":"flow:inlet_aorta_br:RCR_aorta_br","2002":"flow:inlet_aorta_br:RCR_aorta_br","2003":"flow:inlet_aorta_br:RCR_aorta_br","2004":"flow:inlet_aorta_br:RCR_aorta_br","2005":"flow:inlet_aorta_br:RCR_aorta_br","2006":"flow:inlet_aorta_br:RCR_aorta_br","2007":"flow:inlet_aorta_br:RCR_aorta_br","2008":"flow:inlet_aorta_br:RCR_aorta_br","2009":"flow:inlet_aorta_br:RCR_aorta_br","2010":"flow:inlet_aorta_br:RCR_aorta_br","2011":"flow:inlet_aorta_br:RCR_aorta_br","2012":"flow:inlet_aorta_br:RCR_aorta_br","2013":"flow:inlet_aorta_br:RCR_aorta_br","2014":"flow:inlet_aorta_br:RCR_aorta_br","2015":"flow:inlet_aorta_br:RCR_aorta_br","2016":"flow:inlet_aorta_br:RCR_aorta_br","2017":"flow:inlet_aorta_br:RCR_aorta_br","2018":"flow:inlet_aorta_br:RCR_aorta_br","2019":"flow:inlet_aorta_br:RCR_aorta_br","2020":"flow:inlet_aorta_br:RCR_aorta_br","2021":"flow:inlet_aorta_br:RCR_aorta_br","2022":"flow:inlet_aorta_br:RCR_aorta_br","2023":"flow:inlet_aorta_br:RCR_aorta_br","2024":"flow:inlet_aorta_br:RCR_aorta_br","2025":"flow:inlet_aorta_br:RCR_aorta_br","2026":"flow:inlet_aorta_br:RCR_aorta_br","2027":"flow:inlet_aorta_br:RCR_aorta_br","2028":"flow:inlet_aorta_br:RCR_aorta_br","2029":"flow:inlet_aorta_br:RCR_aorta_br","2030":"flow:inlet_aorta_br:RCR_aorta_br","2031":"flow:inlet_aorta_br:RCR_aorta_br","2032":"flow:inlet_aorta_br:RCR_aorta_br","2033":"flow:inlet_aorta_br:RCR_aorta_br","2034":"flow:inlet_aorta_br:RCR_aorta_br","2035":"flow:inlet_aorta_br:RCR_aorta_br","2036":"flow:inlet_aorta_br:RCR_aorta_br","2037":"flow:inlet_aorta_br:RCR_aorta_br","2038":"flow:inlet_aorta_br:RCR_aorta_br","2039":"flow:inlet_aorta_br:RCR_aorta_br","2040":"flow:inlet_aorta_br:RCR_aorta_br","2041":"flow:inlet_aorta_br:RCR_aorta_br","2042":"flow:inlet_aorta_br:RCR_aorta_br","2043":"flow:inlet_aorta_br:RCR_aorta_br","2044":"flow:inlet_aorta_br:RCR_aorta_br","2045":"flow:inlet_aorta_br:RCR_aorta_br","2046":"flow:inlet_aorta_br:RCR_aorta_br","2047":"flow:inlet_aorta_br:RCR_aorta_br","2048":"flow:inlet_aorta_br:RCR_aorta_br","2049":"flow:inlet_aorta_br:RCR_aorta_br","2050":"flow:inlet_aorta_br:RCR_aorta_br","2051":"flow:inlet_aorta_br:RCR_aorta_br","2052":"flow:inlet_aorta_br:RCR_aorta_br","2053":"flow:inlet_aorta_br:RCR_aorta_br","2054":"flow:inlet_aorta_br:RCR_aorta_br","2055":"flow:inlet_aorta_br:RCR_aorta_br","2056":"flow:inlet_aorta_br:RCR_aorta_br","2057":"flow:inlet_aorta_br:RCR_aorta_br","2058":"flow:inlet_aorta_br:RCR_aorta_br","2059":"flow:inlet_aorta_br:RCR_aorta_br","2060":"flow:inlet_aorta_br:RCR_aorta_br","2061":"flow:inlet_aorta_br:RCR_aorta_br","2062":"flow:inlet_aorta_br:RCR_aorta_br","2063":"flow:inlet_aorta_br:RCR_aorta_br","2064":"flow:inlet_aorta_br:RCR_aorta_br","2065":"flow:inlet_aorta_br:RCR_aorta_br","2066":"flow:inlet_aorta_br:RCR_aorta_br","2067":"flow:inlet_aorta_br:RCR_aorta_br","2068":"flow:inlet_aorta_br:RCR_aorta_br","2069":"flow:inlet_aorta_br:RCR_aorta_br","2070":"flow:inlet_aorta_br:RCR_aorta_br","2071":"flow:inlet_aorta_br:RCR_aorta_br","2072":"flow:inlet_aorta_br:RCR_aorta_br","2073":"flow:inlet_aorta_br:RCR_aorta_br","2074":"flow:inlet_aorta_br:RCR_aorta_br","2075":"flow:inlet_aorta_br:RCR_aorta_br","2076":"flow:inlet_aorta_br:RCR_aorta_br","2077":"flow:inlet_aorta_br:RCR_aorta_br","2078":"flow:inlet_aorta_br:RCR_aorta_br","2079":"flow:inlet_aorta_br:RCR_aorta_br","2080":"flow:inlet_aorta_br:RCR_aorta_br","2081":"flow:inlet_aorta_br:RCR_aorta_br","2082":"flow:inlet_aorta_br:RCR_aorta_br","2083":"flow:inlet_aorta_br:RCR_aorta_br","2084":"flow:inlet_aorta_br:RCR_aorta_br","2085":"flow:inlet_aorta_br:RCR_aorta_br","2086":"flow:inlet_aorta_br:RCR_aorta_br","2087":"flow:inlet_aorta_br:RCR_aorta_br","2088":"flow:inlet_aorta_br:RCR_aorta_br","2089":"flow:inlet_aorta_br:RCR_aorta_br","2090":"flow:inlet_aorta_br:RCR_aorta_br","2091":"flow:inlet_aorta_br:RCR_aorta_br","2092":"flow:inlet_aorta_br:RCR_aorta_br","2093":"flow:inlet_aorta_br:RCR_aorta_br","2094":"flow:inlet_aorta_br:RCR_aorta_br","2095":"flow:inlet_aorta_br:RCR_aorta_br","2096":"flow:inlet_aorta_br:RCR_aorta_br","2097":"flow:inlet_aorta_br:RCR_aorta_br","2098":"flow:inlet_aorta_br:RCR_aorta_br","2099":"flow:inlet_aorta_br:RCR_aorta_br","2100":"flow:inlet_aorta_br:RCR_aorta_br","2101":"flow:inlet_aorta_br:RCR_aorta_br","2102":"flow:inlet_aorta_br:RCR_aorta_br","2103":"flow:inlet_aorta_br:RCR_aorta_br","2104":"flow:inlet_aorta_br:RCR_aorta_br","2105":"flow:inlet_aorta_br:RCR_aorta_br","2106":"flow:inlet_aorta_br:RCR_aorta_br","2107":"flow:inlet_aorta_br:RCR_aorta_br","2108":"flow:inlet_aorta_br:RCR_aorta_br","2109":"flow:inlet_aorta_br:RCR_aorta_br","2110":"flow:inlet_aorta_br:RCR_aorta_br","2111":"flow:inlet_aorta_br:RCR_aorta_br","2112":"flow:inlet_aorta_br:RCR_aorta_br","2113":"flow:inlet_aorta_br:RCR_aorta_br","2114":"flow:inlet_aorta_br:RCR_aorta_br","2115":"flow:inlet_aorta_br:RCR_aorta_br","2116":"flow:inlet_aorta_br:RCR_aorta_br","2117":"flow:inlet_aorta_br:RCR_aorta_br","2118":"flow:inlet_aorta_br:RCR_aorta_br","2119":"flow:inlet_aorta_br:RCR_aorta_br","2120":"flow:inlet_aorta_br:RCR_aorta_br","2121":"flow:inlet_aorta_br:RCR_aorta_br","2122":"flow:inlet_aorta_br:RCR_aorta_br","2123":"flow:inlet_aorta_br:RCR_aorta_br","2124":"flow:inlet_aorta_br:RCR_aorta_br","2125":"flow:inlet_aorta_br:RCR_aorta_br","2126":"flow:inlet_aorta_br:RCR_aorta_br","2127":"flow:inlet_aorta_br:RCR_aorta_br","2128":"flow:inlet_aorta_br:RCR_aorta_br","2129":"flow:inlet_aorta_br:RCR_aorta_br","2130":"flow:inlet_aorta_br:RCR_aorta_br","2131":"flow:inlet_aorta_br:RCR_aorta_br","2132":"flow:inlet_aorta_br:RCR_aorta_br","2133":"flow:inlet_aorta_br:RCR_aorta_br","2134":"flow:inlet_aorta_br:RCR_aorta_br","2135":"flow:inlet_aorta_br:RCR_aorta_br","2136":"flow:inlet_aorta_br:RCR_aorta_br","2137":"flow:inlet_aorta_br:RCR_aorta_br","2138":"flow:inlet_aorta_br:RCR_aorta_br","2139":"flow:inlet_aorta_br:RCR_aorta_br","2140":"flow:inlet_aorta_br:RCR_aorta_br","2141":"flow:inlet_aorta_br:RCR_aorta_br","2142":"flow:inlet_aorta_br:RCR_aorta_br","2143":"flow:inlet_aorta_br:RCR_aorta_br","2144":"flow:inlet_aorta_br:RCR_aorta_br","2145":"flow:inlet_aorta_br:RCR_aorta_br","2146":"flow:inlet_aorta_br:RCR_aorta_br","2147":"flow:inlet_aorta_br:RCR_aorta_br","2148":"flow:inlet_aorta_br:RCR_aorta_br","2149":"flow:inlet_aorta_br:RCR_aorta_br","2150":"flow:inlet_aorta_br:RCR_aorta_br","2151":"flow:inlet_aorta_br:RCR_aorta_br","2152":"flow:inlet_aorta_br:RCR_aorta_br","2153":"flow:inlet_aorta_br:RCR_aorta_br","2154":"flow:inlet_aorta_br:RCR_aorta_br","2155":"flow:inlet_aorta_br:RCR_aorta_br","2156":"flow:inlet_aorta_br:RCR_aorta_br","2157":"flow:inlet_aorta_br:RCR_aorta_br","2158":"flow:inlet_aorta_br:RCR_aorta_br","2159":"flow:inlet_aorta_br:RCR_aorta_br","2160":"flow:inlet_aorta_br:RCR_aorta_br","2161":"flow:inlet_aorta_br:RCR_aorta_br","2162":"flow:inlet_aorta_br:RCR_aorta_br","2163":"flow:inlet_aorta_br:RCR_aorta_br","2164":"flow:inlet_aorta_br:RCR_aorta_br","2165":"flow:inlet_aorta_br:RCR_aorta_br","2166":"flow:inlet_aorta_br:RCR_aorta_br","2167":"flow:inlet_aorta_br:RCR_aorta_br","2168":"flow:inlet_aorta_br:RCR_aorta_br","2169":"flow:inlet_aorta_br:RCR_aorta_br","2170":"flow:inlet_aorta_br:RCR_aorta_br","2171":"flow:inlet_aorta_br:RCR_aorta_br","2172":"flow:inlet_aorta_br:RCR_aorta_br","2173":"flow:inlet_aorta_br:RCR_aorta_br","2174":"flow:inlet_aorta_br:RCR_aorta_br","2175":"flow:inlet_aorta_br:RCR_aorta_br","2176":"flow:inlet_aorta_br:RCR_aorta_br","2177":"flow:inlet_aorta_br:RCR_aorta_br","2178":"flow:inlet_aorta_br:RCR_aorta_br","2179":"flow:inlet_aorta_br:RCR_aorta_br","2180":"flow:inlet_aorta_br:RCR_aorta_br","2181":"flow:inlet_aorta_br:RCR_aorta_br","2182":"flow:inlet_aorta_br:RCR_aorta_br","2183":"flow:inlet_aorta_br:RCR_aorta_br","2184":"flow:inlet_aorta_br:RCR_aorta_br","2185":"flow:inlet_aorta_br:RCR_aorta_br","2186":"flow:inlet_aorta_br:RCR_aorta_br","2187":"flow:inlet_aorta_br:RCR_aorta_br","2188":"flow:inlet_aorta_br:RCR_aorta_br","2189":"flow:inlet_aorta_br:RCR_aorta_br","2190":"flow:inlet_aorta_br:RCR_aorta_br","2191":"flow:inlet_aorta_br:RCR_aorta_br","2192":"flow:inlet_aorta_br:RCR_aorta_br","2193":"flow:inlet_aorta_br:RCR_aorta_br","2194":"flow:inlet_aorta_br:RCR_aorta_br","2195":"flow:inlet_aorta_br:RCR_aorta_br","2196":"flow:inlet_aorta_br:RCR_aorta_br","2197":"flow:inlet_aorta_br:RCR_aorta_br","2198":"flow:inlet_aorta_br:RCR_aorta_br","2199":"flow:inlet_aorta_br:RCR_aorta_br","2200":"flow:inlet_aorta_br:RCR_aorta_br","2201":"flow:inlet_aorta_br:RCR_aorta_br","2202":"flow:inlet_aorta_br:RCR_aorta_br","2203":"flow:inlet_aorta_br:RCR_aorta_br","2204":"flow:inlet_aorta_br:RCR_aorta_br","2205":"flow:inlet_aorta_br:RCR_aorta_br","2206":"flow:inlet_aorta_br:RCR_aorta_br","2207":"flow:inlet_aorta_br:RCR_aorta_br","2208":"flow:inlet_aorta_br:RCR_aorta_br","2209":"flow:inlet_aorta_br:RCR_aorta_br","2210":"flow:inlet_aorta_br:RCR_aorta_br","2211":"flow:inlet_aorta_br:RCR_aorta_br","2212":"flow:inlet_aorta_br:RCR_aorta_br","2213":"flow:inlet_aorta_br:RCR_aorta_br","2214":"flow:inlet_aorta_br:RCR_aorta_br","2215":"flow:inlet_aorta_br:RCR_aorta_br","2216":"flow:inlet_aorta_br:RCR_aorta_br","2217":"flow:inlet_aorta_br:RCR_aorta_br","2218":"flow:inlet_aorta_br:RCR_aorta_br","2219":"flow:inlet_aorta_br:RCR_aorta_br","2220":"flow:inlet_aorta_br:RCR_aorta_br","2221":"flow:inlet_aorta_br:RCR_aorta_br","2222":"flow:inlet_aorta_br:RCR_aorta_br","2223":"flow:inlet_aorta_br:RCR_aorta_br","2224":"flow:inlet_aorta_br:RCR_aorta_br","2225":"flow:inlet_aorta_br:RCR_aorta_br","2226":"flow:inlet_aorta_br:RCR_aorta_br","2227":"flow:inlet_aorta_br:RCR_aorta_br","2228":"flow:inlet_aorta_br:RCR_aorta_br","2229":"flow:inlet_aorta_br:RCR_aorta_br","2230":"flow:inlet_aorta_br:RCR_aorta_br","2231":"flow:inlet_aorta_br:RCR_aorta_br","2232":"flow:inlet_aorta_br:RCR_aorta_br","2233":"flow:inlet_aorta_br:RCR_aorta_br","2234":"flow:inlet_aorta_br:RCR_aorta_br","2235":"flow:inlet_aorta_br:RCR_aorta_br","2236":"flow:inlet_aorta_br:RCR_aorta_br","2237":"flow:inlet_aorta_br:RCR_aorta_br","2238":"flow:inlet_aorta_br:RCR_aorta_br","2239":"flow:inlet_aorta_br:RCR_aorta_br","2240":"flow:inlet_aorta_br:RCR_aorta_br","2241":"flow:inlet_aorta_br:RCR_aorta_br","2242":"flow:inlet_aorta_br:RCR_aorta_br","2243":"flow:inlet_aorta_br:RCR_aorta_br","2244":"flow:inlet_aorta_br:RCR_aorta_br","2245":"flow:inlet_aorta_br:RCR_aorta_br","2246":"flow:inlet_aorta_br:RCR_aorta_br","2247":"flow:inlet_aorta_br:RCR_aorta_br","2248":"flow:inlet_aorta_br:RCR_aorta_br","2249":"flow:inlet_aorta_br:RCR_aorta_br","2250":"flow:inlet_aorta_br:RCR_aorta_br","2251":"flow:inlet_aorta_br:RCR_aorta_br","2252":"flow:inlet_aorta_br:RCR_aorta_br","2253":"flow:inlet_aorta_br:RCR_aorta_br","2254":"flow:inlet_aorta_br:RCR_aorta_br","2255":"flow:inlet_aorta_br:RCR_aorta_br","2256":"flow:inlet_aorta_br:RCR_aorta_br","2257":"flow:inlet_aorta_br:RCR_aorta_br","2258":"flow:inlet_aorta_br:RCR_aorta_br","2259":"flow:inlet_aorta_br:RCR_aorta_br","2260":"flow:inlet_aorta_br:RCR_aorta_br","2261":"flow:inlet_aorta_br:RCR_aorta_br","2262":"flow:inlet_aorta_br:RCR_aorta_br","2263":"flow:inlet_aorta_br:RCR_aorta_br","2264":"flow:inlet_aorta_br:RCR_aorta_br","2265":"flow:inlet_aorta_br:RCR_aorta_br","2266":"flow:inlet_aorta_br:RCR_aorta_br","2267":"flow:inlet_aorta_br:RCR_aorta_br","2268":"flow:inlet_aorta_br:RCR_aorta_br","2269":"flow:inlet_aorta_br:RCR_aorta_br","2270":"flow:inlet_aorta_br:RCR_aorta_br","2271":"flow:inlet_aorta_br:RCR_aorta_br","2272":"flow:inlet_aorta_br:RCR_aorta_br","2273":"flow:inlet_aorta_br:RCR_aorta_br","2274":"flow:inlet_aorta_br:RCR_aorta_br","2275":"flow:inlet_aorta_br:RCR_aorta_br","2276":"flow:inlet_aorta_br:RCR_aorta_br","2277":"flow:inlet_aorta_br:RCR_aorta_br","2278":"flow:inlet_aorta_br:RCR_aorta_br","2279":"flow:inlet_aorta_br:RCR_aorta_br","2280":"flow:inlet_aorta_br:RCR_aorta_br","2281":"flow:inlet_aorta_br:RCR_aorta_br","2282":"flow:inlet_aorta_br:RCR_aorta_br","2283":"flow:inlet_aorta_br:RCR_aorta_br","2284":"flow:inlet_aorta_br:RCR_aorta_br","2285":"flow:inlet_aorta_br:RCR_aorta_br","2286":"flow:inlet_aorta_br:RCR_aorta_br","2287":"flow:inlet_aorta_br:RCR_aorta_br","2288":"flow:inlet_aorta_br:RCR_aorta_br","2289":"flow:inlet_aorta_br:RCR_aorta_br","2290":"flow:inlet_aorta_br:RCR_aorta_br","2291":"flow:inlet_aorta_br:RCR_aorta_br","2292":"flow:inlet_aorta_br:RCR_aorta_br","2293":"flow:inlet_aorta_br:RCR_aorta_br","2294":"flow:inlet_aorta_br:RCR_aorta_br","2295":"flow:inlet_aorta_br:RCR_aorta_br","2296":"flow:inlet_aorta_br:RCR_aorta_br","2297":"flow:inlet_aorta_br:RCR_aorta_br","2298":"flow:inlet_aorta_br:RCR_aorta_br","2299":"flow:inlet_aorta_br:RCR_aorta_br","2300":"flow:inlet_aorta_br:RCR_aorta_br","2301":"flow:inlet_aorta_br:RCR_aorta_br","2302":"flow:inlet_aorta_br:RCR_aorta_br","2303":"flow:inlet_aorta_br:RCR_aorta_br","2304":"flow:inlet_aorta_br:RCR_aorta_br","2305":"flow:inlet_aorta_br:RCR_aorta_br","2306":"flow:inlet_aorta_br:RCR_aorta_br","2307":"flow:inlet_aorta_br:RCR_aorta_br","2308":"flow:inlet_aorta_br:RCR_aorta_br","2309":"flow:inlet_aorta_br:RCR_aorta_br","2310":"flow:inlet_aorta_br:RCR_aorta_br","2311":"flow:inlet_aorta_br:RCR_aorta_br","2312":"flow:inlet_aorta_br:RCR_aorta_br","2313":"flow:inlet_aorta_br:RCR_aorta_br","2314":"flow:inlet_aorta_br:RCR_aorta_br","2315":"flow:inlet_aorta_br:RCR_aorta_br","2316":"flow:inlet_aorta_br:RCR_aorta_br","2317":"flow:inlet_aorta_br:RCR_aorta_br","2318":"flow:inlet_aorta_br:RCR_aorta_br","2319":"flow:inlet_aorta_br:RCR_aorta_br","2320":"flow:inlet_aorta_br:RCR_aorta_br","2321":"flow:inlet_aorta_br:RCR_aorta_br","2322":"flow:inlet_aorta_br:RCR_aorta_br","2323":"flow:inlet_aorta_br:RCR_aorta_br","2324":"flow:inlet_aorta_br:RCR_aorta_br","2325":"flow:inlet_aorta_br:RCR_aorta_br","2326":"flow:inlet_aorta_br:RCR_aorta_br","2327":"flow:inlet_aorta_br:RCR_aorta_br","2328":"flow:inlet_aorta_br:RCR_aorta_br","2329":"flow:inlet_aorta_br:RCR_aorta_br","2330":"flow:inlet_aorta_br:RCR_aorta_br","2331":"flow:inlet_aorta_br:RCR_aorta_br","2332":"flow:inlet_aorta_br:RCR_aorta_br","2333":"flow:inlet_aorta_br:RCR_aorta_br","2334":"flow:inlet_aorta_br:RCR_aorta_br","2335":"flow:inlet_aorta_br:RCR_aorta_br","2336":"flow:inlet_aorta_br:RCR_aorta_br","2337":"flow:inlet_aorta_br:RCR_aorta_br","2338":"flow:inlet_aorta_br:RCR_aorta_br","2339":"flow:inlet_aorta_br:RCR_aorta_br","2340":"flow:inlet_aorta_br:RCR_aorta_br","2341":"flow:inlet_aorta_br:RCR_aorta_br","2342":"flow:inlet_aorta_br:RCR_aorta_br","2343":"flow:inlet_aorta_br:RCR_aorta_br","2344":"flow:inlet_aorta_br:RCR_aorta_br","2345":"flow:inlet_aorta_br:RCR_aorta_br","2346":"flow:inlet_aorta_br:RCR_aorta_br","2347":"flow:inlet_aorta_br:RCR_aorta_br","2348":"flow:inlet_aorta_br:RCR_aorta_br","2349":"flow:inlet_aorta_br:RCR_aorta_br","2350":"flow:inlet_aorta_br:RCR_aorta_br","2351":"flow:inlet_aorta_br:RCR_aorta_br","2352":"flow:inlet_aorta_br:RCR_aorta_br","2353":"flow:inlet_aorta_br:RCR_aorta_br","2354":"flow:inlet_aorta_br:RCR_aorta_br","2355":"flow:inlet_aorta_br:RCR_aorta_br","2356":"flow:inlet_aorta_br:RCR_aorta_br","2357":"flow:inlet_aorta_br:RCR_aorta_br","2358":"flow:inlet_aorta_br:RCR_aorta_br","2359":"flow:inlet_aorta_br:RCR_aorta_br","2360":"flow:inlet_aorta_br:RCR_aorta_br","2361":"flow:inlet_aorta_br:RCR_aorta_br","2362":"flow:inlet_aorta_br:RCR_aorta_br","2363":"flow:inlet_aorta_br:RCR_aorta_br","2364":"flow:inlet_aorta_br:RCR_aorta_br","2365":"flow:inlet_aorta_br:RCR_aorta_br","2366":"flow:inlet_aorta_br:RCR_aorta_br","2367":"flow:inlet_aorta_br:RCR_aorta_br","2368":"flow:inlet_aorta_br:RCR_aorta_br","2369":"flow:inlet_aorta_br:RCR_aorta_br","2370":"flow:inlet_aorta_br:RCR_aorta_br","2371":"flow:inlet_aorta_br:RCR_aorta_br","2372":"flow:inlet_aorta_br:RCR_aorta_br","2373":"flow:inlet_aorta_br:RCR_aorta_br","2374":"flow:inlet_aorta_br:RCR_aorta_br","2375":"flow:inlet_aorta_br:RCR_aorta_br","2376":"flow:inlet_aorta_br:RCR_aorta_br","2377":"flow:inlet_aorta_br:RCR_aorta_br","2378":"flow:inlet_aorta_br:RCR_aorta_br","2379":"flow:inlet_aorta_br:RCR_aorta_br","2380":"flow:inlet_aorta_br:RCR_aorta_br","2381":"flow:inlet_aorta_br:RCR_aorta_br","2382":"flow:inlet_aorta_br:RCR_aorta_br","2383":"flow:inlet_aorta_br:RCR_aorta_br","2384":"flow:inlet_aorta_br:RCR_aorta_br","2385":"flow:inlet_aorta_br:RCR_aorta_br","2386":"flow:inlet_aorta_br:RCR_aorta_br","2387":"flow:inlet_aorta_br:RCR_aorta_br","2388":"flow:inlet_aorta_br:RCR_aorta_br","2389":"flow:inlet_aorta_br:RCR_aorta_br","2390":"flow:inlet_aorta_br:RCR_aorta_br","2391":"flow:inlet_aorta_br:RCR_aorta_br","2392":"flow:inlet_aorta_br:RCR_aorta_br","2393":"flow:inlet_aorta_br:RCR_aorta_br","2394":"flow:inlet_aorta_br:RCR_aorta_br","2395":"flow:inlet_aorta_br:RCR_aorta_br","2396":"flow:inlet_aorta_br:RCR_aorta_br","2397":"flow:inlet_aorta_br:RCR_aorta_br","2398":"flow:inlet_aorta_br:RCR_aorta_br","2399":"flow:inlet_aorta_br:RCR_aorta_br","2400":"flow:inlet_aorta_br:RCR_aorta_br","2401":"flow:inlet_aorta_br:RCR_aorta_br","2402":"flow:inlet_aorta_br:RCR_aorta_br","2403":"flow:inlet_aorta_br:RCR_aorta_br","2404":"flow:inlet_aorta_br:RCR_aorta_br","2405":"flow:inlet_aorta_br:RCR_aorta_br","2406":"flow:inlet_aorta_br:RCR_aorta_br","2407":"flow:inlet_aorta_br:RCR_aorta_br","2408":"flow:inlet_aorta_br:RCR_aorta_br","2409":"flow:inlet_aorta_br:RCR_aorta_br","2410":"flow:inlet_aorta_br:RCR_aorta_br","2411":"flow:inlet_aorta_br:RCR_aorta_br","2412":"flow:inlet_aorta_br:RCR_aorta_br","2413":"flow:inlet_aorta_br:RCR_aorta_br","2414":"flow:inlet_aorta_br:RCR_aorta_br","2415":"flow:inlet_aorta_br:RCR_aorta_br","2416":"flow:inlet_aorta_br:RCR_aorta_br","2417":"flow:inlet_aorta_br:RCR_aorta_br","2418":"flow:inlet_aorta_br:RCR_aorta_br","2419":"flow:inlet_aorta_br:RCR_aorta_br","2420":"flow:inlet_aorta_br:RCR_aorta_br","2421":"flow:inlet_aorta_br:RCR_aorta_br","2422":"flow:inlet_aorta_br:RCR_aorta_br","2423":"flow:inlet_aorta_br:RCR_aorta_br","2424":"flow:inlet_aorta_br:RCR_aorta_br","2425":"flow:inlet_aorta_br:RCR_aorta_br","2426":"flow:inlet_aorta_br:RCR_aorta_br","2427":"flow:inlet_aorta_br:RCR_aorta_br","2428":"flow:inlet_aorta_br:RCR_aorta_br","2429":"flow:inlet_aorta_br:RCR_aorta_br","2430":"flow:inlet_aorta_br:RCR_aorta_br","2431":"flow:inlet_aorta_br:RCR_aorta_br","2432":"flow:inlet_aorta_br:RCR_aorta_br","2433":"flow:inlet_aorta_br:RCR_aorta_br","2434":"flow:inlet_aorta_br:RCR_aorta_br","2435":"flow:inlet_aorta_br:RCR_aorta_br","2436":"flow:inlet_aorta_br:RCR_aorta_br","2437":"flow:inlet_aorta_br:RCR_aorta_br","2438":"flow:inlet_aorta_br:RCR_aorta_br","2439":"flow:inlet_aorta_br:RCR_aorta_br","2440":"flow:inlet_aorta_br:RCR_aorta_br","2441":"flow:inlet_aorta_br:RCR_aorta_br","2442":"flow:inlet_aorta_br:RCR_aorta_br","2443":"flow:inlet_aorta_br:RCR_aorta_br","2444":"flow:inlet_aorta_br:RCR_aorta_br","2445":"flow:inlet_aorta_br:RCR_aorta_br","2446":"flow:inlet_aorta_br:RCR_aorta_br","2447":"flow:inlet_aorta_br:RCR_aorta_br","2448":"flow:inlet_aorta_br:RCR_aorta_br","2449":"flow:inlet_aorta_br:RCR_aorta_br","2450":"flow:inlet_aorta_br:RCR_aorta_br","2451":"flow:inlet_aorta_br:RCR_aorta_br","2452":"flow:inlet_aorta_br:RCR_aorta_br","2453":"flow:inlet_aorta_br:RCR_aorta_br","2454":"flow:inlet_aorta_br:RCR_aorta_br","2455":"flow:inlet_aorta_br:RCR_aorta_br","2456":"flow:inlet_aorta_br:RCR_aorta_br","2457":"flow:inlet_aorta_br:RCR_aorta_br","2458":"flow:inlet_aorta_br:RCR_aorta_br","2459":"flow:inlet_aorta_br:RCR_aorta_br","2460":"flow:inlet_aorta_br:RCR_aorta_br","2461":"flow:inlet_aorta_br:RCR_aorta_br","2462":"flow:inlet_aorta_br:RCR_aorta_br","2463":"flow:inlet_aorta_br:RCR_aorta_br","2464":"flow:inlet_aorta_br:RCR_aorta_br","2465":"flow:inlet_aorta_br:RCR_aorta_br","2466":"flow:inlet_aorta_br:RCR_aorta_br","2467":"flow:inlet_aorta_br:RCR_aorta_br","2468":"flow:inlet_aorta_br:RCR_aorta_br","2469":"flow:inlet_aorta_br:RCR_aorta_br","2470":"flow:inlet_aorta_br:RCR_aorta_br","2471":"flow:inlet_aorta_br:RCR_aorta_br","2472":"flow:inlet_aorta_br:RCR_aorta_br","2473":"flow:inlet_aorta_br:RCR_aorta_br","2474":"flow:inlet_aorta_br:RCR_aorta_br","2475":"flow:inlet_aorta_br:RCR_aorta_br","2476":"flow:inlet_aorta_br:RCR_aorta_br","2477":"flow:inlet_aorta_br:RCR_aorta_br","2478":"flow:inlet_aorta_br:RCR_aorta_br","2479":"flow:inlet_aorta_br:RCR_aorta_br","2480":"flow:inlet_aorta_br:RCR_aorta_br","2481":"flow:inlet_aorta_br:RCR_aorta_br","2482":"flow:inlet_aorta_br:RCR_aorta_br","2483":"flow:inlet_aorta_br:RCR_aorta_br","2484":"flow:inlet_aorta_br:RCR_aorta_br","2485":"flow:inlet_aorta_br:RCR_aorta_br","2486":"flow:inlet_aorta_br:RCR_aorta_br","2487":"flow:inlet_aorta_br:RCR_aorta_br","2488":"flow:inlet_aorta_br:RCR_aorta_br","2489":"flow:inlet_aorta_br:RCR_aorta_br","2490":"flow:inlet_aorta_br:RCR_aorta_br","2491":"flow:inlet_aorta_br:RCR_aorta_br","2492":"flow:inlet_aorta_br:RCR_aorta_br","2493":"flow:inlet_aorta_br:RCR_aorta_br","2494":"flow:inlet_aorta_br:RCR_aorta_br","2495":"flow:inlet_aorta_br:RCR_aorta_br","2496":"flow:inlet_aorta_br:RCR_aorta_br","2497":"flow:inlet_aorta_br:RCR_aorta_br","2498":"flow:inlet_aorta_br:RCR_aorta_br","2499":"flow:inlet_aorta_br:RCR_aorta_br","2500":"flow:inlet_aorta_br:RCR_aorta_br","2501":"flow:inlet_aorta_br:RCR_aorta_br","2502":"flow:inlet_aorta_br:RCR_aorta_br","2503":"flow:inlet_aorta_br:RCR_aorta_br","2504":"flow:inlet_aorta_br:RCR_aorta_br","2505":"flow:inlet_aorta_br:RCR_aorta_br","2506":"flow:inlet_aorta_br:RCR_aorta_br","2507":"flow:inlet_aorta_br:RCR_aorta_br","2508":"flow:inlet_aorta_br:RCR_aorta_br","2509":"flow:inlet_aorta_br:RCR_aorta_br","2510":"flow:inlet_aorta_br:RCR_aorta_br","2511":"flow:inlet_aorta_br:RCR_aorta_br","2512":"flow:inlet_aorta_br:RCR_aorta_br","2513":"flow:inlet_aorta_br:RCR_aorta_br","2514":"flow:inlet_aorta_br:RCR_aorta_br","2515":"flow:inlet_aorta_br:RCR_aorta_br","2516":"flow:inlet_aorta_br:RCR_aorta_br","2517":"flow:inlet_aorta_br:RCR_aorta_br","2518":"flow:inlet_aorta_br:RCR_aorta_br","2519":"flow:inlet_aorta_br:RCR_aorta_br","2520":"flow:inlet_aorta_br:RCR_aorta_br","2521":"flow:inlet_aorta_br:RCR_aorta_br","2522":"flow:inlet_aorta_br:RCR_aorta_br","2523":"flow:inlet_aorta_br:RCR_aorta_br","2524":"flow:inlet_aorta_br:RCR_aorta_br","2525":"flow:inlet_aorta_br:RCR_aorta_br","2526":"flow:inlet_aorta_br:RCR_aorta_br","2527":"flow:inlet_aorta_br:RCR_aorta_br","2528":"flow:inlet_aorta_br:RCR_aorta_br","2529":"flow:inlet_aorta_br:RCR_aorta_br","2530":"flow:inlet_aorta_br:RCR_aorta_br","2531":"flow:inlet_aorta_br:RCR_aorta_br","2532":"flow:inlet_aorta_br:RCR_aorta_br","2533":"flow:inlet_aorta_br:RCR_aorta_br","2534":"flow:inlet_aorta_br:RCR_aorta_br","2535":"flow:inlet_aorta_br:RCR_aorta_br","2536":"flow:inlet_aorta_br:RCR_aorta_br","2537":"flow:inlet_aorta_br:RCR_aorta_br","2538":"flow:inlet_aorta_br:RCR_aorta_br","2539":"flow:inlet_aorta_br:RCR_aorta_br","2540":"flow:inlet_aorta_br:RCR_aorta_br","2541":"flow:inlet_aorta_br:RCR_aorta_br","2542":"flow:inlet_aorta_br:RCR_aorta_br","2543":"flow:inlet_aorta_br:RCR_aorta_br","2544":"flow:inlet_aorta_br:RCR_aorta_br","2545":"flow:inlet_aorta_br:RCR_aorta_br","2546":"flow:inlet_aorta_br:RCR_aorta_br","2547":"flow:inlet_aorta_br:RCR_aorta_br","2548":"flow:inlet_aorta_br:RCR_aorta_br","2549":"flow:inlet_aorta_br:RCR_aorta_br","2550":"flow:inlet_aorta_br:RCR_aorta_br","2551":"flow:inlet_aorta_br:RCR_aorta_br","2552":"flow:inlet_aorta_br:RCR_aorta_br","2553":"flow:inlet_aorta_br:RCR_aorta_br","2554":"flow:inlet_aorta_br:RCR_aorta_br","2555":"flow:inlet_aorta_br:RCR_aorta_br","2556":"flow:inlet_aorta_br:RCR_aorta_br","2557":"flow:inlet_aorta_br:RCR_aorta_br","2558":"flow:inlet_aorta_br:RCR_aorta_br","2559":"flow:inlet_aorta_br:RCR_aorta_br","2560":"flow:inlet_aorta_br:RCR_aorta_br","2561":"flow:inlet_aorta_br:RCR_aorta_br","2562":"flow:inlet_aorta_br:RCR_aorta_br","2563":"flow:inlet_aorta_br:RCR_aorta_br","2564":"flow:inlet_aorta_br:RCR_aorta_br","2565":"flow:inlet_aorta_br:RCR_aorta_br","2566":"flow:inlet_aorta_br:RCR_aorta_br","2567":"flow:inlet_aorta_br:RCR_aorta_br","2568":"flow:inlet_aorta_br:RCR_aorta_br","2569":"flow:inlet_aorta_br:RCR_aorta_br","2570":"flow:inlet_aorta_br:RCR_aorta_br","2571":"flow:inlet_aorta_br:RCR_aorta_br","2572":"flow:inlet_aorta_br:RCR_aorta_br","2573":"flow:inlet_aorta_br:RCR_aorta_br","2574":"flow:inlet_aorta_br:RCR_aorta_br","2575":"flow:inlet_aorta_br:RCR_aorta_br","2576":"flow:inlet_aorta_br:RCR_aorta_br","2577":"flow:inlet_aorta_br:RCR_aorta_br","2578":"flow:inlet_aorta_br:RCR_aorta_br","2579":"flow:inlet_aorta_br:RCR_aorta_br","2580":"flow:inlet_aorta_br:RCR_aorta_br","2581":"flow:inlet_aorta_br:RCR_aorta_br","2582":"flow:inlet_aorta_br:RCR_aorta_br","2583":"flow:inlet_aorta_br:RCR_aorta_br","2584":"flow:inlet_aorta_br:RCR_aorta_br","2585":"flow:inlet_aorta_br:RCR_aorta_br","2586":"flow:inlet_aorta_br:RCR_aorta_br","2587":"flow:inlet_aorta_br:RCR_aorta_br","2588":"flow:inlet_aorta_br:RCR_aorta_br","2589":"flow:inlet_aorta_br:RCR_aorta_br","2590":"flow:inlet_aorta_br:RCR_aorta_br","2591":"flow:inlet_aorta_br:RCR_aorta_br","2592":"flow:inlet_aorta_br:RCR_aorta_br","2593":"flow:inlet_aorta_br:RCR_aorta_br","2594":"flow:inlet_aorta_br:RCR_aorta_br","2595":"flow:inlet_aorta_br:RCR_aorta_br","2596":"flow:inlet_aorta_br:RCR_aorta_br","2597":"flow:inlet_aorta_br:RCR_aorta_br","2598":"flow:inlet_aorta_br:RCR_aorta_br","2599":"flow:inlet_aorta_br:RCR_aorta_br","2600":"flow:inlet_aorta_br:RCR_aorta_br","2601":"flow:inlet_aorta_br:RCR_aorta_br","2602":"flow:inlet_aorta_br:RCR_aorta_br","2603":"flow:inlet_aorta_br:RCR_aorta_br","2604":"flow:inlet_aorta_br:RCR_aorta_br","2605":"flow:inlet_aorta_br:RCR_aorta_br","2606":"flow:inlet_aorta_br:RCR_aorta_br","2607":"flow:inlet_aorta_br:RCR_aorta_br","2608":"flow:inlet_aorta_br:RCR_aorta_br","2609":"flow:inlet_aorta_br:RCR_aorta_br","2610":"flow:inlet_aorta_br:RCR_aorta_br","2611":"flow:inlet_aorta_br:RCR_aorta_br","2612":"flow:inlet_aorta_br:RCR_aorta_br","2613":"flow:inlet_aorta_br:RCR_aorta_br","2614":"flow:inlet_aorta_br:RCR_aorta_br","2615":"flow:inlet_aorta_br:RCR_aorta_br","2616":"flow:inlet_aorta_br:RCR_aorta_br","2617":"flow:inlet_aorta_br:RCR_aorta_br","2618":"flow:inlet_aorta_br:RCR_aorta_br","2619":"flow:inlet_aorta_br:RCR_aorta_br","2620":"flow:inlet_aorta_br:RCR_aorta_br","2621":"flow:inlet_aorta_br:RCR_aorta_br","2622":"flow:inlet_aorta_br:RCR_aorta_br","2623":"flow:inlet_aorta_br:RCR_aorta_br","2624":"flow:inlet_aorta_br:RCR_aorta_br","2625":"flow:inlet_aorta_br:RCR_aorta_br","2626":"flow:inlet_aorta_br:RCR_aorta_br","2627":"flow:inlet_aorta_br:RCR_aorta_br","2628":"flow:inlet_aorta_br:RCR_aorta_br","2629":"flow:inlet_aorta_br:RCR_aorta_br","2630":"flow:inlet_aorta_br:RCR_aorta_br","2631":"flow:inlet_aorta_br:RCR_aorta_br","2632":"flow:inlet_aorta_br:RCR_aorta_br","2633":"flow:inlet_aorta_br:RCR_aorta_br","2634":"flow:inlet_aorta_br:RCR_aorta_br","2635":"flow:inlet_aorta_br:RCR_aorta_br","2636":"flow:inlet_aorta_br:RCR_aorta_br","2637":"flow:inlet_aorta_br:RCR_aorta_br","2638":"flow:inlet_aorta_br:RCR_aorta_br","2639":"flow:inlet_aorta_br:RCR_aorta_br","2640":"flow:inlet_aorta_br:RCR_aorta_br","2641":"flow:inlet_aorta_br:RCR_aorta_br","2642":"flow:inlet_aorta_br:RCR_aorta_br","2643":"flow:inlet_aorta_br:RCR_aorta_br","2644":"flow:inlet_aorta_br:RCR_aorta_br","2645":"flow:inlet_aorta_br:RCR_aorta_br","2646":"flow:inlet_aorta_br:RCR_aorta_br","2647":"flow:inlet_aorta_br:RCR_aorta_br","2648":"flow:inlet_aorta_br:RCR_aorta_br","2649":"flow:inlet_aorta_br:RCR_aorta_br","2650":"flow:inlet_aorta_br:RCR_aorta_br","2651":"flow:inlet_aorta_br:RCR_aorta_br","2652":"flow:inlet_aorta_br:RCR_aorta_br","2653":"flow:inlet_aorta_br:RCR_aorta_br","2654":"flow:inlet_aorta_br:RCR_aorta_br","2655":"flow:inlet_aorta_br:RCR_aorta_br","2656":"flow:inlet_aorta_br:RCR_aorta_br","2657":"flow:inlet_aorta_br:RCR_aorta_br","2658":"flow:inlet_aorta_br:RCR_aorta_br","2659":"flow:inlet_aorta_br:RCR_aorta_br","2660":"flow:inlet_aorta_br:RCR_aorta_br","2661":"flow:inlet_aorta_br:RCR_aorta_br","2662":"flow:inlet_aorta_br:RCR_aorta_br","2663":"flow:inlet_aorta_br:RCR_aorta_br","2664":"flow:inlet_aorta_br:RCR_aorta_br","2665":"flow:inlet_aorta_br:RCR_aorta_br","2666":"flow:inlet_aorta_br:RCR_aorta_br","2667":"flow:inlet_aorta_br:RCR_aorta_br","2668":"flow:inlet_aorta_br:RCR_aorta_br","2669":"flow:inlet_aorta_br:RCR_aorta_br","2670":"flow:inlet_aorta_br:RCR_aorta_br","2671":"flow:inlet_aorta_br:RCR_aorta_br","2672":"flow:inlet_aorta_br:RCR_aorta_br","2673":"flow:inlet_aorta_br:RCR_aorta_br","2674":"flow:inlet_aorta_br:RCR_aorta_br","2675":"flow:inlet_aorta_br:RCR_aorta_br","2676":"flow:inlet_aorta_br:RCR_aorta_br","2677":"flow:inlet_aorta_br:RCR_aorta_br","2678":"flow:inlet_aorta_br:RCR_aorta_br","2679":"flow:inlet_aorta_br:RCR_aorta_br","2680":"flow:inlet_aorta_br:RCR_aorta_br","2681":"flow:inlet_aorta_br:RCR_aorta_br","2682":"flow:inlet_aorta_br:RCR_aorta_br","2683":"flow:inlet_aorta_br:RCR_aorta_br","2684":"flow:inlet_aorta_br:RCR_aorta_br","2685":"flow:inlet_aorta_br:RCR_aorta_br","2686":"flow:inlet_aorta_br:RCR_aorta_br","2687":"flow:inlet_aorta_br:RCR_aorta_br","2688":"flow:inlet_aorta_br:RCR_aorta_br","2689":"flow:inlet_aorta_br:RCR_aorta_br","2690":"flow:inlet_aorta_br:RCR_aorta_br","2691":"flow:inlet_aorta_br:RCR_aorta_br","2692":"flow:inlet_aorta_br:RCR_aorta_br","2693":"flow:inlet_aorta_br:RCR_aorta_br","2694":"flow:inlet_aorta_br:RCR_aorta_br","2695":"flow:inlet_aorta_br:RCR_aorta_br","2696":"flow:inlet_aorta_br:RCR_aorta_br","2697":"flow:inlet_aorta_br:RCR_aorta_br","2698":"flow:inlet_aorta_br:RCR_aorta_br","2699":"flow:inlet_aorta_br:RCR_aorta_br","2700":"flow:inlet_aorta_br:RCR_aorta_br","2701":"flow:inlet_aorta_br:RCR_aorta_br","2702":"flow:inlet_aorta_br:RCR_aorta_br","2703":"flow:inlet_aorta_br:RCR_aorta_br","2704":"flow:inlet_aorta_br:RCR_aorta_br","2705":"flow:inlet_aorta_br:RCR_aorta_br","2706":"flow:inlet_aorta_br:RCR_aorta_br","2707":"flow:inlet_aorta_br:RCR_aorta_br","2708":"flow:inlet_aorta_br:RCR_aorta_br","2709":"flow:inlet_aorta_br:RCR_aorta_br","2710":"flow:inlet_aorta_br:RCR_aorta_br","2711":"flow:inlet_aorta_br:RCR_aorta_br","2712":"flow:inlet_aorta_br:RCR_aorta_br","2713":"flow:inlet_aorta_br:RCR_aorta_br","2714":"flow:inlet_aorta_br:RCR_aorta_br","2715":"flow:inlet_aorta_br:RCR_aorta_br","2716":"flow:inlet_aorta_br:RCR_aorta_br","2717":"flow:inlet_aorta_br:RCR_aorta_br","2718":"flow:inlet_aorta_br:RCR_aorta_br","2719":"flow:inlet_aorta_br:RCR_aorta_br","2720":"flow:inlet_aorta_br:RCR_aorta_br","2721":"flow:inlet_aorta_br:RCR_aorta_br","2722":"flow:inlet_aorta_br:RCR_aorta_br","2723":"flow:inlet_aorta_br:RCR_aorta_br","2724":"flow:inlet_aorta_br:RCR_aorta_br","2725":"flow:inlet_aorta_br:RCR_aorta_br","2726":"flow:inlet_aorta_br:RCR_aorta_br","2727":"flow:inlet_aorta_br:RCR_aorta_br","2728":"flow:inlet_aorta_br:RCR_aorta_br","2729":"flow:inlet_aorta_br:RCR_aorta_br","2730":"flow:inlet_aorta_br:RCR_aorta_br","2731":"flow:inlet_aorta_br:RCR_aorta_br","2732":"flow:inlet_aorta_br:RCR_aorta_br","2733":"flow:inlet_aorta_br:RCR_aorta_br","2734":"flow:inlet_aorta_br:RCR_aorta_br","2735":"flow:inlet_aorta_br:RCR_aorta_br","2736":"flow:inlet_aorta_br:RCR_aorta_br","2737":"flow:inlet_aorta_br:RCR_aorta_br","2738":"flow:inlet_aorta_br:RCR_aorta_br","2739":"flow:inlet_aorta_br:RCR_aorta_br","2740":"flow:inlet_aorta_br:RCR_aorta_br","2741":"flow:inlet_aorta_br:RCR_aorta_br","2742":"flow:inlet_aorta_br:RCR_aorta_br","2743":"flow:inlet_aorta_br:RCR_aorta_br","2744":"flow:inlet_aorta_br:RCR_aorta_br","2745":"flow:inlet_aorta_br:RCR_aorta_br","2746":"flow:inlet_aorta_br:RCR_aorta_br","2747":"flow:inlet_aorta_br:RCR_aorta_br","2748":"flow:inlet_aorta_br:RCR_aorta_br","2749":"flow:inlet_aorta_br:RCR_aorta_br","2750":"flow:inlet_aorta_br:RCR_aorta_br","2751":"flow:inlet_aorta_br:RCR_aorta_br","2752":"flow:inlet_aorta_br:RCR_aorta_br","2753":"flow:inlet_aorta_br:RCR_aorta_br","2754":"flow:inlet_aorta_br:RCR_aorta_br","2755":"flow:inlet_aorta_br:RCR_aorta_br","2756":"flow:inlet_aorta_br:RCR_aorta_br","2757":"flow:inlet_aorta_br:RCR_aorta_br","2758":"flow:inlet_aorta_br:RCR_aorta_br","2759":"flow:inlet_aorta_br:RCR_aorta_br","2760":"flow:inlet_aorta_br:RCR_aorta_br","2761":"flow:inlet_aorta_br:RCR_aorta_br","2762":"flow:inlet_aorta_br:RCR_aorta_br","2763":"flow:inlet_aorta_br:RCR_aorta_br","2764":"flow:inlet_aorta_br:RCR_aorta_br","2765":"flow:inlet_aorta_br:RCR_aorta_br","2766":"flow:inlet_aorta_br:RCR_aorta_br","2767":"flow:inlet_aorta_br:RCR_aorta_br","2768":"flow:inlet_aorta_br:RCR_aorta_br","2769":"flow:inlet_aorta_br:RCR_aorta_br","2770":"flow:inlet_aorta_br:RCR_aorta_br","2771":"flow:inlet_aorta_br:RCR_aorta_br","2772":"flow:inlet_aorta_br:RCR_aorta_br","2773":"flow:inlet_aorta_br:RCR_aorta_br","2774":"flow:inlet_aorta_br:RCR_aorta_br","2775":"flow:inlet_aorta_br:RCR_aorta_br","2776":"flow:inlet_aorta_br:RCR_aorta_br","2777":"flow:inlet_aorta_br:RCR_aorta_br","2778":"flow:inlet_aorta_br:RCR_aorta_br","2779":"flow:inlet_aorta_br:RCR_aorta_br","2780":"flow:inlet_aorta_br:RCR_aorta_br","2781":"flow:inlet_aorta_br:RCR_aorta_br","2782":"flow:inlet_aorta_br:RCR_aorta_br","2783":"flow:inlet_aorta_br:RCR_aorta_br","2784":"flow:inlet_aorta_br:RCR_aorta_br","2785":"flow:inlet_aorta_br:RCR_aorta_br","2786":"flow:inlet_aorta_br:RCR_aorta_br","2787":"flow:inlet_aorta_br:RCR_aorta_br","2788":"flow:inlet_aorta_br:RCR_aorta_br","2789":"flow:inlet_aorta_br:RCR_aorta_br","2790":"flow:inlet_aorta_br:RCR_aorta_br","2791":"flow:inlet_aorta_br:RCR_aorta_br","2792":"flow:inlet_aorta_br:RCR_aorta_br","2793":"flow:inlet_aorta_br:RCR_aorta_br","2794":"flow:inlet_aorta_br:RCR_aorta_br","2795":"flow:inlet_aorta_br:RCR_aorta_br","2796":"flow:inlet_aorta_br:RCR_aorta_br","2797":"flow:inlet_aorta_br:RCR_aorta_br","2798":"flow:inlet_aorta_br:RCR_aorta_br","2799":"flow:inlet_aorta_br:RCR_aorta_br","2800":"flow:inlet_aorta_br:RCR_aorta_br","2801":"flow:inlet_aorta_br:RCR_aorta_br","2802":"flow:inlet_aorta_br:RCR_aorta_br","2803":"flow:inlet_aorta_br:RCR_aorta_br","2804":"flow:inlet_aorta_br:RCR_aorta_br","2805":"flow:inlet_aorta_br:RCR_aorta_br","2806":"flow:inlet_aorta_br:RCR_aorta_br","2807":"flow:inlet_aorta_br:RCR_aorta_br","2808":"flow:inlet_aorta_br:RCR_aorta_br","2809":"flow:inlet_aorta_br:RCR_aorta_br","2810":"flow:inlet_aorta_br:RCR_aorta_br","2811":"flow:inlet_aorta_br:RCR_aorta_br","2812":"flow:inlet_aorta_br:RCR_aorta_br","2813":"flow:inlet_aorta_br:RCR_aorta_br","2814":"flow:inlet_aorta_br:RCR_aorta_br","2815":"flow:inlet_aorta_br:RCR_aorta_br","2816":"flow:inlet_aorta_br:RCR_aorta_br","2817":"flow:inlet_aorta_br:RCR_aorta_br","2818":"flow:inlet_aorta_br:RCR_aorta_br","2819":"flow:inlet_aorta_br:RCR_aorta_br","2820":"flow:inlet_aorta_br:RCR_aorta_br","2821":"flow:inlet_aorta_br:RCR_aorta_br","2822":"flow:inlet_aorta_br:RCR_aorta_br","2823":"flow:inlet_aorta_br:RCR_aorta_br","2824":"flow:inlet_aorta_br:RCR_aorta_br","2825":"flow:inlet_aorta_br:RCR_aorta_br","2826":"flow:inlet_aorta_br:RCR_aorta_br","2827":"flow:inlet_aorta_br:RCR_aorta_br","2828":"flow:inlet_aorta_br:RCR_aorta_br","2829":"flow:inlet_aorta_br:RCR_aorta_br","2830":"flow:inlet_aorta_br:RCR_aorta_br","2831":"flow:inlet_aorta_br:RCR_aorta_br","2832":"flow:inlet_aorta_br:RCR_aorta_br","2833":"flow:inlet_aorta_br:RCR_aorta_br","2834":"flow:inlet_aorta_br:RCR_aorta_br","2835":"flow:inlet_aorta_br:RCR_aorta_br","2836":"flow:inlet_aorta_br:RCR_aorta_br","2837":"flow:inlet_aorta_br:RCR_aorta_br","2838":"flow:inlet_aorta_br:RCR_aorta_br","2839":"flow:inlet_aorta_br:RCR_aorta_br","2840":"flow:inlet_aorta_br:RCR_aorta_br","2841":"flow:inlet_aorta_br:RCR_aorta_br","2842":"flow:inlet_aorta_br:RCR_aorta_br","2843":"flow:inlet_aorta_br:RCR_aorta_br","2844":"flow:inlet_aorta_br:RCR_aorta_br","2845":"flow:inlet_aorta_br:RCR_aorta_br","2846":"flow:inlet_aorta_br:RCR_aorta_br","2847":"flow:inlet_aorta_br:RCR_aorta_br","2848":"flow:inlet_aorta_br:RCR_aorta_br","2849":"flow:inlet_aorta_br:RCR_aorta_br","2850":"flow:inlet_aorta_br:RCR_aorta_br","2851":"flow:inlet_aorta_br:RCR_aorta_br","2852":"flow:inlet_aorta_br:RCR_aorta_br","2853":"flow:inlet_aorta_br:RCR_aorta_br","2854":"flow:inlet_aorta_br:RCR_aorta_br","2855":"flow:inlet_aorta_br:RCR_aorta_br","2856":"flow:inlet_aorta_br:RCR_aorta_br","2857":"flow:inlet_aorta_br:RCR_aorta_br","2858":"flow:inlet_aorta_br:RCR_aorta_br","2859":"flow:inlet_aorta_br:RCR_aorta_br","2860":"flow:inlet_aorta_br:RCR_aorta_br","2861":"flow:inlet_aorta_br:RCR_aorta_br","2862":"flow:inlet_aorta_br:RCR_aorta_br","2863":"flow:inlet_aorta_br:RCR_aorta_br","2864":"flow:inlet_aorta_br:RCR_aorta_br","2865":"flow:inlet_aorta_br:RCR_aorta_br","2866":"flow:inlet_aorta_br:RCR_aorta_br","2867":"flow:inlet_aorta_br:RCR_aorta_br","2868":"flow:inlet_aorta_br:RCR_aorta_br","2869":"flow:inlet_aorta_br:RCR_aorta_br","2870":"flow:inlet_aorta_br:RCR_aorta_br","2871":"flow:inlet_aorta_br:RCR_aorta_br","2872":"flow:inlet_aorta_br:RCR_aorta_br","2873":"flow:inlet_aorta_br:RCR_aorta_br","2874":"flow:inlet_aorta_br:RCR_aorta_br","2875":"flow:inlet_aorta_br:RCR_aorta_br","2876":"flow:inlet_aorta_br:RCR_aorta_br","2877":"flow:inlet_aorta_br:RCR_aorta_br","2878":"flow:inlet_aorta_br:RCR_aorta_br","2879":"flow:inlet_aorta_br:RCR_aorta_br","2880":"flow:inlet_aorta_br:RCR_aorta_br","2881":"flow:inlet_aorta_br:RCR_aorta_br","2882":"flow:inlet_aorta_br:RCR_aorta_br","2883":"flow:inlet_aorta_br:RCR_aorta_br","2884":"flow:inlet_aorta_br:RCR_aorta_br","2885":"flow:inlet_aorta_br:RCR_aorta_br","2886":"flow:inlet_aorta_br:RCR_aorta_br","2887":"flow:inlet_aorta_br:RCR_aorta_br","2888":"flow:inlet_aorta_br:RCR_aorta_br","2889":"flow:inlet_aorta_br:RCR_aorta_br","2890":"flow:inlet_aorta_br:RCR_aorta_br","2891":"flow:inlet_aorta_br:RCR_aorta_br","2892":"flow:inlet_aorta_br:RCR_aorta_br","2893":"flow:inlet_aorta_br:RCR_aorta_br","2894":"flow:inlet_aorta_br:RCR_aorta_br","2895":"flow:inlet_aorta_br:RCR_aorta_br","2896":"flow:inlet_aorta_br:RCR_aorta_br","2897":"flow:inlet_aorta_br:RCR_aorta_br","2898":"flow:inlet_aorta_br:RCR_aorta_br","2899":"flow:inlet_aorta_br:RCR_aorta_br","2900":"flow:inlet_aorta_br:RCR_aorta_br","2901":"flow:inlet_aorta_br:RCR_aorta_br","2902":"flow:inlet_aorta_br:RCR_aorta_br","2903":"flow:inlet_aorta_br:RCR_aorta_br","2904":"flow:inlet_aorta_br:RCR_aorta_br","2905":"flow:inlet_aorta_br:RCR_aorta_br","2906":"flow:inlet_aorta_br:RCR_aorta_br","2907":"flow:inlet_aorta_br:RCR_aorta_br","2908":"flow:inlet_aorta_br:RCR_aorta_br","2909":"flow:inlet_aorta_br:RCR_aorta_br","2910":"flow:inlet_aorta_br:RCR_aorta_br","2911":"flow:inlet_aorta_br:RCR_aorta_br","2912":"flow:inlet_aorta_br:RCR_aorta_br","2913":"flow:inlet_aorta_br:RCR_aorta_br","2914":"flow:inlet_aorta_br:RCR_aorta_br","2915":"flow:inlet_aorta_br:RCR_aorta_br","2916":"flow:inlet_aorta_br:RCR_aorta_br","2917":"flow:inlet_aorta_br:RCR_aorta_br","2918":"flow:inlet_aorta_br:RCR_aorta_br","2919":"flow:inlet_aorta_br:RCR_aorta_br","2920":"flow:inlet_aorta_br:RCR_aorta_br","2921":"flow:inlet_aorta_br:RCR_aorta_br","2922":"flow:inlet_aorta_br:RCR_aorta_br","2923":"flow:inlet_aorta_br:RCR_aorta_br","2924":"flow:inlet_aorta_br:RCR_aorta_br","2925":"flow:inlet_aorta_br:RCR_aorta_br","2926":"flow:inlet_aorta_br:RCR_aorta_br","2927":"flow:inlet_aorta_br:RCR_aorta_br","2928":"flow:inlet_aorta_br:RCR_aorta_br","2929":"flow:inlet_aorta_br:RCR_aorta_br","2930":"flow:inlet_aorta_br:RCR_aorta_br","2931":"flow:inlet_aorta_br:RCR_aorta_br","2932":"flow:inlet_aorta_br:RCR_aorta_br","2933":"flow:inlet_aorta_br:RCR_aorta_br","2934":"flow:inlet_aorta_br:RCR_aorta_br","2935":"flow:inlet_aorta_br:RCR_aorta_br","2936":"flow:inlet_aorta_br:RCR_aorta_br","2937":"flow:inlet_aorta_br:RCR_aorta_br","2938":"flow:inlet_aorta_br:RCR_aorta_br","2939":"flow:inlet_aorta_br:RCR_aorta_br","2940":"flow:inlet_aorta_br:RCR_aorta_br","2941":"flow:inlet_aorta_br:RCR_aorta_br","2942":"flow:inlet_aorta_br:RCR_aorta_br","2943":"flow:inlet_aorta_br:RCR_aorta_br","2944":"flow:inlet_aorta_br:RCR_aorta_br","2945":"flow:inlet_aorta_br:RCR_aorta_br","2946":"flow:inlet_aorta_br:RCR_aorta_br","2947":"flow:inlet_aorta_br:RCR_aorta_br","2948":"flow:inlet_aorta_br:RCR_aorta_br","2949":"flow:inlet_aorta_br:RCR_aorta_br","2950":"flow:inlet_aorta_br:RCR_aorta_br","2951":"flow:inlet_aorta_br:RCR_aorta_br","2952":"flow:inlet_aorta_br:RCR_aorta_br","2953":"flow:inlet_aorta_br:RCR_aorta_br","2954":"flow:inlet_aorta_br:RCR_aorta_br","2955":"flow:inlet_aorta_br:RCR_aorta_br","2956":"flow:inlet_aorta_br:RCR_aorta_br","2957":"flow:inlet_aorta_br:RCR_aorta_br","2958":"flow:inlet_aorta_br:RCR_aorta_br","2959":"flow:inlet_aorta_br:RCR_aorta_br","2960":"flow:inlet_aorta_br:RCR_aorta_br","2961":"flow:inlet_aorta_br:RCR_aorta_br","2962":"flow:inlet_aorta_br:RCR_aorta_br","2963":"flow:inlet_aorta_br:RCR_aorta_br","2964":"flow:inlet_aorta_br:RCR_aorta_br","2965":"flow:inlet_aorta_br:RCR_aorta_br","2966":"flow:inlet_aorta_br:RCR_aorta_br","2967":"flow:inlet_aorta_br:RCR_aorta_br","2968":"flow:inlet_aorta_br:RCR_aorta_br","2969":"flow:inlet_aorta_br:RCR_aorta_br","2970":"flow:inlet_aorta_br:RCR_aorta_br","2971":"flow:inlet_aorta_br:RCR_aorta_br","2972":"flow:inlet_aorta_br:RCR_aorta_br","2973":"flow:inlet_aorta_br:RCR_aorta_br","2974":"flow:inlet_aorta_br:RCR_aorta_br","2975":"flow:inlet_aorta_br:RCR_aorta_br","2976":"flow:inlet_aorta_br:RCR_aorta_br","2977":"flow:inlet_aorta_br:RCR_aorta_br","2978":"flow:inlet_aorta_br:RCR_aorta_br","2979":"flow:inlet_aorta_br:RCR_aorta_br","2980":"flow:inlet_aorta_br:RCR_aorta_br","2981":"flow:inlet_aorta_br:RCR_aorta_br","2982":"flow:inlet_aorta_br:RCR_aorta_br","2983":"flow:inlet_aorta_br:RCR_aorta_br","2984":"flow:inlet_aorta_br:RCR_aorta_br","2985":"flow:inlet_aorta_br:RCR_aorta_br","2986":"flow:inlet_aorta_br:RCR_aorta_br","2987":"flow:inlet_aorta_br:RCR_aorta_br","2988":"flow:inlet_aorta_br:RCR_aorta_br","2989":"flow:inlet_aorta_br:RCR_aorta_br","2990":"flow:inlet_aorta_br:RCR_aorta_br","2991":"flow:inlet_aorta_br:RCR_aorta_br","2992":"flow:inlet_aorta_br:RCR_aorta_br","2993":"flow:inlet_aorta_br:RCR_aorta_br","2994":"flow:inlet_aorta_br:RCR_aorta_br","2995":"flow:inlet_aorta_br:RCR_aorta_br","2996":"flow:inlet_aorta_br:RCR_aorta_br","2997":"flow:inlet_aorta_br:RCR_aorta_br","2998":"flow:inlet_aorta_br:RCR_aorta_br","2999":"flow:inlet_aorta_br:RCR_aorta_br","3000":"pressure:inlet_aorta_br:RCR_aorta_br","3001":"pressure:inlet_aorta_br:RCR_aorta_br","3002":"pressure:inlet_aorta_br:RCR_aorta_br","3003":"pressure:inlet_aorta_br:RCR_aorta_br","3004":"pressure:inlet_aorta_br:RCR_aorta_br","3005":"pressure:inlet_aorta_br:RCR_aorta_br","3006":"pressure:inlet_aorta_br:RCR_aorta_br","3007":"pressure:inlet_aorta_br:RCR_aorta_br","3008":"pressure:inlet_aorta_br:RCR_aorta_br","3009":"pressure:inlet_aorta_br:RCR_aorta_br","3010":"pressure:inlet_aorta_br:RCR_aorta_br","3011":"pressure:inlet_aorta_br:RCR_aorta_br","3012":"pressure:inlet_aorta_br:RCR_aorta_br","3013":"pressure:inlet_aorta_br:RCR_aorta_br","3014":"pressure:inlet_aorta_br:RCR_aorta_br","3015":"pressure:inlet_aorta_br:RCR_aorta_br","3016":"pressure:inlet_aorta_br:RCR_aorta_br","3017":"pressure:inlet_aorta_br:RCR_aorta_br","3018":"pressure:inlet_aorta_br:RCR_aorta_br","3019":"pressure:inlet_aorta_br:RCR_aorta_br","3020":"pressure:inlet_aorta_br:RCR_aorta_br","3021":"pressure:inlet_aorta_br:RCR_aorta_br","3022":"pressure:inlet_aorta_br:RCR_aorta_br","3023":"pressure:inlet_aorta_br:RCR_aorta_br","3024":"pressure:inlet_aorta_br:RCR_aorta_br","3025":"pressure:inlet_aorta_br:RCR_aorta_br","3026":"pressure:inlet_aorta_br:RCR_aorta_br","3027":"pressure:inlet_aorta_br:RCR_aorta_br","3028":"pressure:inlet_aorta_br:RCR_aorta_br","3029":"pressure:inlet_aorta_br:RCR_aorta_br","3030":"pressure:inlet_aorta_br:RCR_aorta_br","3031":"pressure:inlet_aorta_br:RCR_aorta_br","3032":"pressure:inlet_aorta_br:RCR_aorta_br","3033":"pressure:inlet_aorta_br:RCR_aorta_br","3034":"pressure:inlet_aorta_br:RCR_aorta_br","3035":"pressure:inlet_aorta_br:RCR_aorta_br","3036":"pressure:inlet_aorta_br:RCR_aorta_br","3037":"pressure:inlet_aorta_br:RCR_aorta_br","3038":"pressure:inlet_aorta_br:RCR_aorta_br","3039":"pressure:inlet_aorta_br:RCR_aorta_br","3040":"pressure:inlet_aorta_br:RCR_aorta_br","3041":"pressure:inlet_aorta_br:RCR_aorta_br","3042":"pressure:inlet_aorta_br:RCR_aorta_br","3043":"pressure:inlet_aorta_br:RCR_aorta_br","3044":"pressure:inlet_aorta_br:RCR_aorta_br","3045":"pressure:inlet_aorta_br:RCR_aorta_br","3046":"pressure:inlet_aorta_br:RCR_aorta_br","3047":"pressure:inlet_aorta_br:RCR_aorta_br","3048":"pressure:inlet_aorta_br:RCR_aorta_br","3049":"pressure:inlet_aorta_br:RCR_aorta_br","3050":"pressure:inlet_aorta_br:RCR_aorta_br","3051":"pressure:inlet_aorta_br:RCR_aorta_br","3052":"pressure:inlet_aorta_br:RCR_aorta_br","3053":"pressure:inlet_aorta_br:RCR_aorta_br","3054":"pressure:inlet_aorta_br:RCR_aorta_br","3055":"pressure:inlet_aorta_br:RCR_aorta_br","3056":"pressure:inlet_aorta_br:RCR_aorta_br","3057":"pressure:inlet_aorta_br:RCR_aorta_br","3058":"pressure:inlet_aorta_br:RCR_aorta_br","3059":"pressure:inlet_aorta_br:RCR_aorta_br","3060":"pressure:inlet_aorta_br:RCR_aorta_br","3061":"pressure:inlet_aorta_br:RCR_aorta_br","3062":"pressure:inlet_aorta_br:RCR_aorta_br","3063":"pressure:inlet_aorta_br:RCR_aorta_br","3064":"pressure:inlet_aorta_br:RCR_aorta_br","3065":"pressure:inlet_aorta_br:RCR_aorta_br","3066":"pressure:inlet_aorta_br:RCR_aorta_br","3067":"pressure:inlet_aorta_br:RCR_aorta_br","3068":"pressure:inlet_aorta_br:RCR_aorta_br","3069":"pressure:inlet_aorta_br:RCR_aorta_br","3070":"pressure:inlet_aorta_br:RCR_aorta_br","3071":"pressure:inlet_aorta_br:RCR_aorta_br","3072":"pressure:inlet_aorta_br:RCR_aorta_br","3073":"pressure:inlet_aorta_br:RCR_aorta_br","3074":"pressure:inlet_aorta_br:RCR_aorta_br","3075":"pressure:inlet_aorta_br:RCR_aorta_br","3076":"pressure:inlet_aorta_br:RCR_aorta_br","3077":"pressure:inlet_aorta_br:RCR_aorta_br","3078":"pressure:inlet_aorta_br:RCR_aorta_br","3079":"pressure:inlet_aorta_br:RCR_aorta_br","3080":"pressure:inlet_aorta_br:RCR_aorta_br","3081":"pressure:inlet_aorta_br:RCR_aorta_br","3082":"pressure:inlet_aorta_br:RCR_aorta_br","3083":"pressure:inlet_aorta_br:RCR_aorta_br","3084":"pressure:inlet_aorta_br:RCR_aorta_br","3085":"pressure:inlet_aorta_br:RCR_aorta_br","3086":"pressure:inlet_aorta_br:RCR_aorta_br","3087":"pressure:inlet_aorta_br:RCR_aorta_br","3088":"pressure:inlet_aorta_br:RCR_aorta_br","3089":"pressure:inlet_aorta_br:RCR_aorta_br","3090":"pressure:inlet_aorta_br:RCR_aorta_br","3091":"pressure:inlet_aorta_br:RCR_aorta_br","3092":"pressure:inlet_aorta_br:RCR_aorta_br","3093":"pressure:inlet_aorta_br:RCR_aorta_br","3094":"pressure:inlet_aorta_br:RCR_aorta_br","3095":"pressure:inlet_aorta_br:RCR_aorta_br","3096":"pressure:inlet_aorta_br:RCR_aorta_br","3097":"pressure:inlet_aorta_br:RCR_aorta_br","3098":"pressure:inlet_aorta_br:RCR_aorta_br","3099":"pressure:inlet_aorta_br:RCR_aorta_br","3100":"pressure:inlet_aorta_br:RCR_aorta_br","3101":"pressure:inlet_aorta_br:RCR_aorta_br","3102":"pressure:inlet_aorta_br:RCR_aorta_br","3103":"pressure:inlet_aorta_br:RCR_aorta_br","3104":"pressure:inlet_aorta_br:RCR_aorta_br","3105":"pressure:inlet_aorta_br:RCR_aorta_br","3106":"pressure:inlet_aorta_br:RCR_aorta_br","3107":"pressure:inlet_aorta_br:RCR_aorta_br","3108":"pressure:inlet_aorta_br:RCR_aorta_br","3109":"pressure:inlet_aorta_br:RCR_aorta_br","3110":"pressure:inlet_aorta_br:RCR_aorta_br","3111":"pressure:inlet_aorta_br:RCR_aorta_br","3112":"pressure:inlet_aorta_br:RCR_aorta_br","3113":"pressure:inlet_aorta_br:RCR_aorta_br","3114":"pressure:inlet_aorta_br:RCR_aorta_br","3115":"pressure:inlet_aorta_br:RCR_aorta_br","3116":"pressure:inlet_aorta_br:RCR_aorta_br","3117":"pressure:inlet_aorta_br:RCR_aorta_br","3118":"pressure:inlet_aorta_br:RCR_aorta_br","3119":"pressure:inlet_aorta_br:RCR_aorta_br","3120":"pressure:inlet_aorta_br:RCR_aorta_br","3121":"pressure:inlet_aorta_br:RCR_aorta_br","3122":"pressure:inlet_aorta_br:RCR_aorta_br","3123":"pressure:inlet_aorta_br:RCR_aorta_br","3124":"pressure:inlet_aorta_br:RCR_aorta_br","3125":"pressure:inlet_aorta_br:RCR_aorta_br","3126":"pressure:inlet_aorta_br:RCR_aorta_br","3127":"pressure:inlet_aorta_br:RCR_aorta_br","3128":"pressure:inlet_aorta_br:RCR_aorta_br","3129":"pressure:inlet_aorta_br:RCR_aorta_br","3130":"pressure:inlet_aorta_br:RCR_aorta_br","3131":"pressure:inlet_aorta_br:RCR_aorta_br","3132":"pressure:inlet_aorta_br:RCR_aorta_br","3133":"pressure:inlet_aorta_br:RCR_aorta_br","3134":"pressure:inlet_aorta_br:RCR_aorta_br","3135":"pressure:inlet_aorta_br:RCR_aorta_br","3136":"pressure:inlet_aorta_br:RCR_aorta_br","3137":"pressure:inlet_aorta_br:RCR_aorta_br","3138":"pressure:inlet_aorta_br:RCR_aorta_br","3139":"pressure:inlet_aorta_br:RCR_aorta_br","3140":"pressure:inlet_aorta_br:RCR_aorta_br","3141":"pressure:inlet_aorta_br:RCR_aorta_br","3142":"pressure:inlet_aorta_br:RCR_aorta_br","3143":"pressure:inlet_aorta_br:RCR_aorta_br","3144":"pressure:inlet_aorta_br:RCR_aorta_br","3145":"pressure:inlet_aorta_br:RCR_aorta_br","3146":"pressure:inlet_aorta_br:RCR_aorta_br","3147":"pressure:inlet_aorta_br:RCR_aorta_br","3148":"pressure:inlet_aorta_br:RCR_aorta_br","3149":"pressure:inlet_aorta_br:RCR_aorta_br","3150":"pressure:inlet_aorta_br:RCR_aorta_br","3151":"pressure:inlet_aorta_br:RCR_aorta_br","3152":"pressure:inlet_aorta_br:RCR_aorta_br","3153":"pressure:inlet_aorta_br:RCR_aorta_br","3154":"pressure:inlet_aorta_br:RCR_aorta_br","3155":"pressure:inlet_aorta_br:RCR_aorta_br","3156":"pressure:inlet_aorta_br:RCR_aorta_br","3157":"pressure:inlet_aorta_br:RCR_aorta_br","3158":"pressure:inlet_aorta_br:RCR_aorta_br","3159":"pressure:inlet_aorta_br:RCR_aorta_br","3160":"pressure:inlet_aorta_br:RCR_aorta_br","3161":"pressure:inlet_aorta_br:RCR_aorta_br","3162":"pressure:inlet_aorta_br:RCR_aorta_br","3163":"pressure:inlet_aorta_br:RCR_aorta_br","3164":"pressure:inlet_aorta_br:RCR_aorta_br","3165":"pressure:inlet_aorta_br:RCR_aorta_br","3166":"pressure:inlet_aorta_br:RCR_aorta_br","3167":"pressure:inlet_aorta_br:RCR_aorta_br","3168":"pressure:inlet_aorta_br:RCR_aorta_br","3169":"pressure:inlet_aorta_br:RCR_aorta_br","3170":"pressure:inlet_aorta_br:RCR_aorta_br","3171":"pressure:inlet_aorta_br:RCR_aorta_br","3172":"pressure:inlet_aorta_br:RCR_aorta_br","3173":"pressure:inlet_aorta_br:RCR_aorta_br","3174":"pressure:inlet_aorta_br:RCR_aorta_br","3175":"pressure:inlet_aorta_br:RCR_aorta_br","3176":"pressure:inlet_aorta_br:RCR_aorta_br","3177":"pressure:inlet_aorta_br:RCR_aorta_br","3178":"pressure:inlet_aorta_br:RCR_aorta_br","3179":"pressure:inlet_aorta_br:RCR_aorta_br","3180":"pressure:inlet_aorta_br:RCR_aorta_br","3181":"pressure:inlet_aorta_br:RCR_aorta_br","3182":"pressure:inlet_aorta_br:RCR_aorta_br","3183":"pressure:inlet_aorta_br:RCR_aorta_br","3184":"pressure:inlet_aorta_br:RCR_aorta_br","3185":"pressure:inlet_aorta_br:RCR_aorta_br","3186":"pressure:inlet_aorta_br:RCR_aorta_br","3187":"pressure:inlet_aorta_br:RCR_aorta_br","3188":"pressure:inlet_aorta_br:RCR_aorta_br","3189":"pressure:inlet_aorta_br:RCR_aorta_br","3190":"pressure:inlet_aorta_br:RCR_aorta_br","3191":"pressure:inlet_aorta_br:RCR_aorta_br","3192":"pressure:inlet_aorta_br:RCR_aorta_br","3193":"pressure:inlet_aorta_br:RCR_aorta_br","3194":"pressure:inlet_aorta_br:RCR_aorta_br","3195":"pressure:inlet_aorta_br:RCR_aorta_br","3196":"pressure:inlet_aorta_br:RCR_aorta_br","3197":"pressure:inlet_aorta_br:RCR_aorta_br","3198":"pressure:inlet_aorta_br:RCR_aorta_br","3199":"pressure:inlet_aorta_br:RCR_aorta_br","3200":"pressure:inlet_aorta_br:RCR_aorta_br","3201":"pressure:inlet_aorta_br:RCR_aorta_br","3202":"pressure:inlet_aorta_br:RCR_aorta_br","3203":"pressure:inlet_aorta_br:RCR_aorta_br","3204":"pressure:inlet_aorta_br:RCR_aorta_br","3205":"pressure:inlet_aorta_br:RCR_aorta_br","3206":"pressure:inlet_aorta_br:RCR_aorta_br","3207":"pressure:inlet_aorta_br:RCR_aorta_br","3208":"pressure:inlet_aorta_br:RCR_aorta_br","3209":"pressure:inlet_aorta_br:RCR_aorta_br","3210":"pressure:inlet_aorta_br:RCR_aorta_br","3211":"pressure:inlet_aorta_br:RCR_aorta_br","3212":"pressure:inlet_aorta_br:RCR_aorta_br","3213":"pressure:inlet_aorta_br:RCR_aorta_br","3214":"pressure:inlet_aorta_br:RCR_aorta_br","3215":"pressure:inlet_aorta_br:RCR_aorta_br","3216":"pressure:inlet_aorta_br:RCR_aorta_br","3217":"pressure:inlet_aorta_br:RCR_aorta_br","3218":"pressure:inlet_aorta_br:RCR_aorta_br","3219":"pressure:inlet_aorta_br:RCR_aorta_br","3220":"pressure:inlet_aorta_br:RCR_aorta_br","3221":"pressure:inlet_aorta_br:RCR_aorta_br","3222":"pressure:inlet_aorta_br:RCR_aorta_br","3223":"pressure:inlet_aorta_br:RCR_aorta_br","3224":"pressure:inlet_aorta_br:RCR_aorta_br","3225":"pressure:inlet_aorta_br:RCR_aorta_br","3226":"pressure:inlet_aorta_br:RCR_aorta_br","3227":"pressure:inlet_aorta_br:RCR_aorta_br","3228":"pressure:inlet_aorta_br:RCR_aorta_br","3229":"pressure:inlet_aorta_br:RCR_aorta_br","3230":"pressure:inlet_aorta_br:RCR_aorta_br","3231":"pressure:inlet_aorta_br:RCR_aorta_br","3232":"pressure:inlet_aorta_br:RCR_aorta_br","3233":"pressure:inlet_aorta_br:RCR_aorta_br","3234":"pressure:inlet_aorta_br:RCR_aorta_br","3235":"pressure:inlet_aorta_br:RCR_aorta_br","3236":"pressure:inlet_aorta_br:RCR_aorta_br","3237":"pressure:inlet_aorta_br:RCR_aorta_br","3238":"pressure:inlet_aorta_br:RCR_aorta_br","3239":"pressure:inlet_aorta_br:RCR_aorta_br","3240":"pressure:inlet_aorta_br:RCR_aorta_br","3241":"pressure:inlet_aorta_br:RCR_aorta_br","3242":"pressure:inlet_aorta_br:RCR_aorta_br","3243":"pressure:inlet_aorta_br:RCR_aorta_br","3244":"pressure:inlet_aorta_br:RCR_aorta_br","3245":"pressure:inlet_aorta_br:RCR_aorta_br","3246":"pressure:inlet_aorta_br:RCR_aorta_br","3247":"pressure:inlet_aorta_br:RCR_aorta_br","3248":"pressure:inlet_aorta_br:RCR_aorta_br","3249":"pressure:inlet_aorta_br:RCR_aorta_br","3250":"pressure:inlet_aorta_br:RCR_aorta_br","3251":"pressure:inlet_aorta_br:RCR_aorta_br","3252":"pressure:inlet_aorta_br:RCR_aorta_br","3253":"pressure:inlet_aorta_br:RCR_aorta_br","3254":"pressure:inlet_aorta_br:RCR_aorta_br","3255":"pressure:inlet_aorta_br:RCR_aorta_br","3256":"pressure:inlet_aorta_br:RCR_aorta_br","3257":"pressure:inlet_aorta_br:RCR_aorta_br","3258":"pressure:inlet_aorta_br:RCR_aorta_br","3259":"pressure:inlet_aorta_br:RCR_aorta_br","3260":"pressure:inlet_aorta_br:RCR_aorta_br","3261":"pressure:inlet_aorta_br:RCR_aorta_br","3262":"pressure:inlet_aorta_br:RCR_aorta_br","3263":"pressure:inlet_aorta_br:RCR_aorta_br","3264":"pressure:inlet_aorta_br:RCR_aorta_br","3265":"pressure:inlet_aorta_br:RCR_aorta_br","3266":"pressure:inlet_aorta_br:RCR_aorta_br","3267":"pressure:inlet_aorta_br:RCR_aorta_br","3268":"pressure:inlet_aorta_br:RCR_aorta_br","3269":"pressure:inlet_aorta_br:RCR_aorta_br","3270":"pressure:inlet_aorta_br:RCR_aorta_br","3271":"pressure:inlet_aorta_br:RCR_aorta_br","3272":"pressure:inlet_aorta_br:RCR_aorta_br","3273":"pressure:inlet_aorta_br:RCR_aorta_br","3274":"pressure:inlet_aorta_br:RCR_aorta_br","3275":"pressure:inlet_aorta_br:RCR_aorta_br","3276":"pressure:inlet_aorta_br:RCR_aorta_br","3277":"pressure:inlet_aorta_br:RCR_aorta_br","3278":"pressure:inlet_aorta_br:RCR_aorta_br","3279":"pressure:inlet_aorta_br:RCR_aorta_br","3280":"pressure:inlet_aorta_br:RCR_aorta_br","3281":"pressure:inlet_aorta_br:RCR_aorta_br","3282":"pressure:inlet_aorta_br:RCR_aorta_br","3283":"pressure:inlet_aorta_br:RCR_aorta_br","3284":"pressure:inlet_aorta_br:RCR_aorta_br","3285":"pressure:inlet_aorta_br:RCR_aorta_br","3286":"pressure:inlet_aorta_br:RCR_aorta_br","3287":"pressure:inlet_aorta_br:RCR_aorta_br","3288":"pressure:inlet_aorta_br:RCR_aorta_br","3289":"pressure:inlet_aorta_br:RCR_aorta_br","3290":"pressure:inlet_aorta_br:RCR_aorta_br","3291":"pressure:inlet_aorta_br:RCR_aorta_br","3292":"pressure:inlet_aorta_br:RCR_aorta_br","3293":"pressure:inlet_aorta_br:RCR_aorta_br","3294":"pressure:inlet_aorta_br:RCR_aorta_br","3295":"pressure:inlet_aorta_br:RCR_aorta_br","3296":"pressure:inlet_aorta_br:RCR_aorta_br","3297":"pressure:inlet_aorta_br:RCR_aorta_br","3298":"pressure:inlet_aorta_br:RCR_aorta_br","3299":"pressure:inlet_aorta_br:RCR_aorta_br","3300":"pressure:inlet_aorta_br:RCR_aorta_br","3301":"pressure:inlet_aorta_br:RCR_aorta_br","3302":"pressure:inlet_aorta_br:RCR_aorta_br","3303":"pressure:inlet_aorta_br:RCR_aorta_br","3304":"pressure:inlet_aorta_br:RCR_aorta_br","3305":"pressure:inlet_aorta_br:RCR_aorta_br","3306":"pressure:inlet_aorta_br:RCR_aorta_br","3307":"pressure:inlet_aorta_br:RCR_aorta_br","3308":"pressure:inlet_aorta_br:RCR_aorta_br","3309":"pressure:inlet_aorta_br:RCR_aorta_br","3310":"pressure:inlet_aorta_br:RCR_aorta_br","3311":"pressure:inlet_aorta_br:RCR_aorta_br","3312":"pressure:inlet_aorta_br:RCR_aorta_br","3313":"pressure:inlet_aorta_br:RCR_aorta_br","3314":"pressure:inlet_aorta_br:RCR_aorta_br","3315":"pressure:inlet_aorta_br:RCR_aorta_br","3316":"pressure:inlet_aorta_br:RCR_aorta_br","3317":"pressure:inlet_aorta_br:RCR_aorta_br","3318":"pressure:inlet_aorta_br:RCR_aorta_br","3319":"pressure:inlet_aorta_br:RCR_aorta_br","3320":"pressure:inlet_aorta_br:RCR_aorta_br","3321":"pressure:inlet_aorta_br:RCR_aorta_br","3322":"pressure:inlet_aorta_br:RCR_aorta_br","3323":"pressure:inlet_aorta_br:RCR_aorta_br","3324":"pressure:inlet_aorta_br:RCR_aorta_br","3325":"pressure:inlet_aorta_br:RCR_aorta_br","3326":"pressure:inlet_aorta_br:RCR_aorta_br","3327":"pressure:inlet_aorta_br:RCR_aorta_br","3328":"pressure:inlet_aorta_br:RCR_aorta_br","3329":"pressure:inlet_aorta_br:RCR_aorta_br","3330":"pressure:inlet_aorta_br:RCR_aorta_br","3331":"pressure:inlet_aorta_br:RCR_aorta_br","3332":"pressure:inlet_aorta_br:RCR_aorta_br","3333":"pressure:inlet_aorta_br:RCR_aorta_br","3334":"pressure:inlet_aorta_br:RCR_aorta_br","3335":"pressure:inlet_aorta_br:RCR_aorta_br","3336":"pressure:inlet_aorta_br:RCR_aorta_br","3337":"pressure:inlet_aorta_br:RCR_aorta_br","3338":"pressure:inlet_aorta_br:RCR_aorta_br","3339":"pressure:inlet_aorta_br:RCR_aorta_br","3340":"pressure:inlet_aorta_br:RCR_aorta_br","3341":"pressure:inlet_aorta_br:RCR_aorta_br","3342":"pressure:inlet_aorta_br:RCR_aorta_br","3343":"pressure:inlet_aorta_br:RCR_aorta_br","3344":"pressure:inlet_aorta_br:RCR_aorta_br","3345":"pressure:inlet_aorta_br:RCR_aorta_br","3346":"pressure:inlet_aorta_br:RCR_aorta_br","3347":"pressure:inlet_aorta_br:RCR_aorta_br","3348":"pressure:inlet_aorta_br:RCR_aorta_br","3349":"pressure:inlet_aorta_br:RCR_aorta_br","3350":"pressure:inlet_aorta_br:RCR_aorta_br","3351":"pressure:inlet_aorta_br:RCR_aorta_br","3352":"pressure:inlet_aorta_br:RCR_aorta_br","3353":"pressure:inlet_aorta_br:RCR_aorta_br","3354":"pressure:inlet_aorta_br:RCR_aorta_br","3355":"pressure:inlet_aorta_br:RCR_aorta_br","3356":"pressure:inlet_aorta_br:RCR_aorta_br","3357":"pressure:inlet_aorta_br:RCR_aorta_br","3358":"pressure:inlet_aorta_br:RCR_aorta_br","3359":"pressure:inlet_aorta_br:RCR_aorta_br","3360":"pressure:inlet_aorta_br:RCR_aorta_br","3361":"pressure:inlet_aorta_br:RCR_aorta_br","3362":"pressure:inlet_aorta_br:RCR_aorta_br","3363":"pressure:inlet_aorta_br:RCR_aorta_br","3364":"pressure:inlet_aorta_br:RCR_aorta_br","3365":"pressure:inlet_aorta_br:RCR_aorta_br","3366":"pressure:inlet_aorta_br:RCR_aorta_br","3367":"pressure:inlet_aorta_br:RCR_aorta_br","3368":"pressure:inlet_aorta_br:RCR_aorta_br","3369":"pressure:inlet_aorta_br:RCR_aorta_br","3370":"pressure:inlet_aorta_br:RCR_aorta_br","3371":"pressure:inlet_aorta_br:RCR_aorta_br","3372":"pressure:inlet_aorta_br:RCR_aorta_br","3373":"pressure:inlet_aorta_br:RCR_aorta_br","3374":"pressure:inlet_aorta_br:RCR_aorta_br","3375":"pressure:inlet_aorta_br:RCR_aorta_br","3376":"pressure:inlet_aorta_br:RCR_aorta_br","3377":"pressure:inlet_aorta_br:RCR_aorta_br","3378":"pressure:inlet_aorta_br:RCR_aorta_br","3379":"pressure:inlet_aorta_br:RCR_aorta_br","3380":"pressure:inlet_aorta_br:RCR_aorta_br","3381":"pressure:inlet_aorta_br:RCR_aorta_br","3382":"pressure:inlet_aorta_br:RCR_aorta_br","3383":"pressure:inlet_aorta_br:RCR_aorta_br","3384":"pressure:inlet_aorta_br:RCR_aorta_br","3385":"pressure:inlet_aorta_br:RCR_aorta_br","3386":"pressure:inlet_aorta_br:RCR_aorta_br","3387":"pressure:inlet_aorta_br:RCR_aorta_br","3388":"pressure:inlet_aorta_br:RCR_aorta_br","3389":"pressure:inlet_aorta_br:RCR_aorta_br","3390":"pressure:inlet_aorta_br:RCR_aorta_br","3391":"pressure:inlet_aorta_br:RCR_aorta_br","3392":"pressure:inlet_aorta_br:RCR_aorta_br","3393":"pressure:inlet_aorta_br:RCR_aorta_br","3394":"pressure:inlet_aorta_br:RCR_aorta_br","3395":"pressure:inlet_aorta_br:RCR_aorta_br","3396":"pressure:inlet_aorta_br:RCR_aorta_br","3397":"pressure:inlet_aorta_br:RCR_aorta_br","3398":"pressure:inlet_aorta_br:RCR_aorta_br","3399":"pressure:inlet_aorta_br:RCR_aorta_br","3400":"pressure:inlet_aorta_br:RCR_aorta_br","3401":"pressure:inlet_aorta_br:RCR_aorta_br","3402":"pressure:inlet_aorta_br:RCR_aorta_br","3403":"pressure:inlet_aorta_br:RCR_aorta_br","3404":"pressure:inlet_aorta_br:RCR_aorta_br","3405":"pressure:inlet_aorta_br:RCR_aorta_br","3406":"pressure:inlet_aorta_br:RCR_aorta_br","3407":"pressure:inlet_aorta_br:RCR_aorta_br","3408":"pressure:inlet_aorta_br:RCR_aorta_br","3409":"pressure:inlet_aorta_br:RCR_aorta_br","3410":"pressure:inlet_aorta_br:RCR_aorta_br","3411":"pressure:inlet_aorta_br:RCR_aorta_br","3412":"pressure:inlet_aorta_br:RCR_aorta_br","3413":"pressure:inlet_aorta_br:RCR_aorta_br","3414":"pressure:inlet_aorta_br:RCR_aorta_br","3415":"pressure:inlet_aorta_br:RCR_aorta_br","3416":"pressure:inlet_aorta_br:RCR_aorta_br","3417":"pressure:inlet_aorta_br:RCR_aorta_br","3418":"pressure:inlet_aorta_br:RCR_aorta_br","3419":"pressure:inlet_aorta_br:RCR_aorta_br","3420":"pressure:inlet_aorta_br:RCR_aorta_br","3421":"pressure:inlet_aorta_br:RCR_aorta_br","3422":"pressure:inlet_aorta_br:RCR_aorta_br","3423":"pressure:inlet_aorta_br:RCR_aorta_br","3424":"pressure:inlet_aorta_br:RCR_aorta_br","3425":"pressure:inlet_aorta_br:RCR_aorta_br","3426":"pressure:inlet_aorta_br:RCR_aorta_br","3427":"pressure:inlet_aorta_br:RCR_aorta_br","3428":"pressure:inlet_aorta_br:RCR_aorta_br","3429":"pressure:inlet_aorta_br:RCR_aorta_br","3430":"pressure:inlet_aorta_br:RCR_aorta_br","3431":"pressure:inlet_aorta_br:RCR_aorta_br","3432":"pressure:inlet_aorta_br:RCR_aorta_br","3433":"pressure:inlet_aorta_br:RCR_aorta_br","3434":"pressure:inlet_aorta_br:RCR_aorta_br","3435":"pressure:inlet_aorta_br:RCR_aorta_br","3436":"pressure:inlet_aorta_br:RCR_aorta_br","3437":"pressure:inlet_aorta_br:RCR_aorta_br","3438":"pressure:inlet_aorta_br:RCR_aorta_br","3439":"pressure:inlet_aorta_br:RCR_aorta_br","3440":"pressure:inlet_aorta_br:RCR_aorta_br","3441":"pressure:inlet_aorta_br:RCR_aorta_br","3442":"pressure:inlet_aorta_br:RCR_aorta_br","3443":"pressure:inlet_aorta_br:RCR_aorta_br","3444":"pressure:inlet_aorta_br:RCR_aorta_br","3445":"pressure:inlet_aorta_br:RCR_aorta_br","3446":"pressure:inlet_aorta_br:RCR_aorta_br","3447":"pressure:inlet_aorta_br:RCR_aorta_br","3448":"pressure:inlet_aorta_br:RCR_aorta_br","3449":"pressure:inlet_aorta_br:RCR_aorta_br","3450":"pressure:inlet_aorta_br:RCR_aorta_br","3451":"pressure:inlet_aorta_br:RCR_aorta_br","3452":"pressure:inlet_aorta_br:RCR_aorta_br","3453":"pressure:inlet_aorta_br:RCR_aorta_br","3454":"pressure:inlet_aorta_br:RCR_aorta_br","3455":"pressure:inlet_aorta_br:RCR_aorta_br","3456":"pressure:inlet_aorta_br:RCR_aorta_br","3457":"pressure:inlet_aorta_br:RCR_aorta_br","3458":"pressure:inlet_aorta_br:RCR_aorta_br","3459":"pressure:inlet_aorta_br:RCR_aorta_br","3460":"pressure:inlet_aorta_br:RCR_aorta_br","3461":"pressure:inlet_aorta_br:RCR_aorta_br","3462":"pressure:inlet_aorta_br:RCR_aorta_br","3463":"pressure:inlet_aorta_br:RCR_aorta_br","3464":"pressure:inlet_aorta_br:RCR_aorta_br","3465":"pressure:inlet_aorta_br:RCR_aorta_br","3466":"pressure:inlet_aorta_br:RCR_aorta_br","3467":"pressure:inlet_aorta_br:RCR_aorta_br","3468":"pressure:inlet_aorta_br:RCR_aorta_br","3469":"pressure:inlet_aorta_br:RCR_aorta_br","3470":"pressure:inlet_aorta_br:RCR_aorta_br","3471":"pressure:inlet_aorta_br:RCR_aorta_br","3472":"pressure:inlet_aorta_br:RCR_aorta_br","3473":"pressure:inlet_aorta_br:RCR_aorta_br","3474":"pressure:inlet_aorta_br:RCR_aorta_br","3475":"pressure:inlet_aorta_br:RCR_aorta_br","3476":"pressure:inlet_aorta_br:RCR_aorta_br","3477":"pressure:inlet_aorta_br:RCR_aorta_br","3478":"pressure:inlet_aorta_br:RCR_aorta_br","3479":"pressure:inlet_aorta_br:RCR_aorta_br","3480":"pressure:inlet_aorta_br:RCR_aorta_br","3481":"pressure:inlet_aorta_br:RCR_aorta_br","3482":"pressure:inlet_aorta_br:RCR_aorta_br","3483":"pressure:inlet_aorta_br:RCR_aorta_br","3484":"pressure:inlet_aorta_br:RCR_aorta_br","3485":"pressure:inlet_aorta_br:RCR_aorta_br","3486":"pressure:inlet_aorta_br:RCR_aorta_br","3487":"pressure:inlet_aorta_br:RCR_aorta_br","3488":"pressure:inlet_aorta_br:RCR_aorta_br","3489":"pressure:inlet_aorta_br:RCR_aorta_br","3490":"pressure:inlet_aorta_br:RCR_aorta_br","3491":"pressure:inlet_aorta_br:RCR_aorta_br","3492":"pressure:inlet_aorta_br:RCR_aorta_br","3493":"pressure:inlet_aorta_br:RCR_aorta_br","3494":"pressure:inlet_aorta_br:RCR_aorta_br","3495":"pressure:inlet_aorta_br:RCR_aorta_br","3496":"pressure:inlet_aorta_br:RCR_aorta_br","3497":"pressure:inlet_aorta_br:RCR_aorta_br","3498":"pressure:inlet_aorta_br:RCR_aorta_br","3499":"pressure:inlet_aorta_br:RCR_aorta_br","3500":"pressure:inlet_aorta_br:RCR_aorta_br","3501":"pressure:inlet_aorta_br:RCR_aorta_br","3502":"pressure:inlet_aorta_br:RCR_aorta_br","3503":"pressure:inlet_aorta_br:RCR_aorta_br","3504":"pressure:inlet_aorta_br:RCR_aorta_br","3505":"pressure:inlet_aorta_br:RCR_aorta_br","3506":"pressure:inlet_aorta_br:RCR_aorta_br","3507":"pressure:inlet_aorta_br:RCR_aorta_br","3508":"pressure:inlet_aorta_br:RCR_aorta_br","3509":"pressure:inlet_aorta_br:RCR_aorta_br","3510":"pressure:inlet_aorta_br:RCR_aorta_br","3511":"pressure:inlet_aorta_br:RCR_aorta_br","3512":"pressure:inlet_aorta_br:RCR_aorta_br","3513":"pressure:inlet_aorta_br:RCR_aorta_br","3514":"pressure:inlet_aorta_br:RCR_aorta_br","3515":"pressure:inlet_aorta_br:RCR_aorta_br","3516":"pressure:inlet_aorta_br:RCR_aorta_br","3517":"pressure:inlet_aorta_br:RCR_aorta_br","3518":"pressure:inlet_aorta_br:RCR_aorta_br","3519":"pressure:inlet_aorta_br:RCR_aorta_br","3520":"pressure:inlet_aorta_br:RCR_aorta_br","3521":"pressure:inlet_aorta_br:RCR_aorta_br","3522":"pressure:inlet_aorta_br:RCR_aorta_br","3523":"pressure:inlet_aorta_br:RCR_aorta_br","3524":"pressure:inlet_aorta_br:RCR_aorta_br","3525":"pressure:inlet_aorta_br:RCR_aorta_br","3526":"pressure:inlet_aorta_br:RCR_aorta_br","3527":"pressure:inlet_aorta_br:RCR_aorta_br","3528":"pressure:inlet_aorta_br:RCR_aorta_br","3529":"pressure:inlet_aorta_br:RCR_aorta_br","3530":"pressure:inlet_aorta_br:RCR_aorta_br","3531":"pressure:inlet_aorta_br:RCR_aorta_br","3532":"pressure:inlet_aorta_br:RCR_aorta_br","3533":"pressure:inlet_aorta_br:RCR_aorta_br","3534":"pressure:inlet_aorta_br:RCR_aorta_br","3535":"pressure:inlet_aorta_br:RCR_aorta_br","3536":"pressure:inlet_aorta_br:RCR_aorta_br","3537":"pressure:inlet_aorta_br:RCR_aorta_br","3538":"pressure:inlet_aorta_br:RCR_aorta_br","3539":"pressure:inlet_aorta_br:RCR_aorta_br","3540":"pressure:inlet_aorta_br:RCR_aorta_br","3541":"pressure:inlet_aorta_br:RCR_aorta_br","3542":"pressure:inlet_aorta_br:RCR_aorta_br","3543":"pressure:inlet_aorta_br:RCR_aorta_br","3544":"pressure:inlet_aorta_br:RCR_aorta_br","3545":"pressure:inlet_aorta_br:RCR_aorta_br","3546":"pressure:inlet_aorta_br:RCR_aorta_br","3547":"pressure:inlet_aorta_br:RCR_aorta_br","3548":"pressure:inlet_aorta_br:RCR_aorta_br","3549":"pressure:inlet_aorta_br:RCR_aorta_br","3550":"pressure:inlet_aorta_br:RCR_aorta_br","3551":"pressure:inlet_aorta_br:RCR_aorta_br","3552":"pressure:inlet_aorta_br:RCR_aorta_br","3553":"pressure:inlet_aorta_br:RCR_aorta_br","3554":"pressure:inlet_aorta_br:RCR_aorta_br","3555":"pressure:inlet_aorta_br:RCR_aorta_br","3556":"pressure:inlet_aorta_br:RCR_aorta_br","3557":"pressure:inlet_aorta_br:RCR_aorta_br","3558":"pressure:inlet_aorta_br:RCR_aorta_br","3559":"pressure:inlet_aorta_br:RCR_aorta_br","3560":"pressure:inlet_aorta_br:RCR_aorta_br","3561":"pressure:inlet_aorta_br:RCR_aorta_br","3562":"pressure:inlet_aorta_br:RCR_aorta_br","3563":"pressure:inlet_aorta_br:RCR_aorta_br","3564":"pressure:inlet_aorta_br:RCR_aorta_br","3565":"pressure:inlet_aorta_br:RCR_aorta_br","3566":"pressure:inlet_aorta_br:RCR_aorta_br","3567":"pressure:inlet_aorta_br:RCR_aorta_br","3568":"pressure:inlet_aorta_br:RCR_aorta_br","3569":"pressure:inlet_aorta_br:RCR_aorta_br","3570":"pressure:inlet_aorta_br:RCR_aorta_br","3571":"pressure:inlet_aorta_br:RCR_aorta_br","3572":"pressure:inlet_aorta_br:RCR_aorta_br","3573":"pressure:inlet_aorta_br:RCR_aorta_br","3574":"pressure:inlet_aorta_br:RCR_aorta_br","3575":"pressure:inlet_aorta_br:RCR_aorta_br","3576":"pressure:inlet_aorta_br:RCR_aorta_br","3577":"pressure:inlet_aorta_br:RCR_aorta_br","3578":"pressure:inlet_aorta_br:RCR_aorta_br","3579":"pressure:inlet_aorta_br:RCR_aorta_br","3580":"pressure:inlet_aorta_br:RCR_aorta_br","3581":"pressure:inlet_aorta_br:RCR_aorta_br","3582":"pressure:inlet_aorta_br:RCR_aorta_br","3583":"pressure:inlet_aorta_br:RCR_aorta_br","3584":"pressure:inlet_aorta_br:RCR_aorta_br","3585":"pressure:inlet_aorta_br:RCR_aorta_br","3586":"pressure:inlet_aorta_br:RCR_aorta_br","3587":"pressure:inlet_aorta_br:RCR_aorta_br","3588":"pressure:inlet_aorta_br:RCR_aorta_br","3589":"pressure:inlet_aorta_br:RCR_aorta_br","3590":"pressure:inlet_aorta_br:RCR_aorta_br","3591":"pressure:inlet_aorta_br:RCR_aorta_br","3592":"pressure:inlet_aorta_br:RCR_aorta_br","3593":"pressure:inlet_aorta_br:RCR_aorta_br","3594":"pressure:inlet_aorta_br:RCR_aorta_br","3595":"pressure:inlet_aorta_br:RCR_aorta_br","3596":"pressure:inlet_aorta_br:RCR_aorta_br","3597":"pressure:inlet_aorta_br:RCR_aorta_br","3598":"pressure:inlet_aorta_br:RCR_aorta_br","3599":"pressure:inlet_aorta_br:RCR_aorta_br","3600":"pressure:inlet_aorta_br:RCR_aorta_br","3601":"pressure:inlet_aorta_br:RCR_aorta_br","3602":"pressure:inlet_aorta_br:RCR_aorta_br","3603":"pressure:inlet_aorta_br:RCR_aorta_br","3604":"pressure:inlet_aorta_br:RCR_aorta_br","3605":"pressure:inlet_aorta_br:RCR_aorta_br","3606":"pressure:inlet_aorta_br:RCR_aorta_br","3607":"pressure:inlet_aorta_br:RCR_aorta_br","3608":"pressure:inlet_aorta_br:RCR_aorta_br","3609":"pressure:inlet_aorta_br:RCR_aorta_br","3610":"pressure:inlet_aorta_br:RCR_aorta_br","3611":"pressure:inlet_aorta_br:RCR_aorta_br","3612":"pressure:inlet_aorta_br:RCR_aorta_br","3613":"pressure:inlet_aorta_br:RCR_aorta_br","3614":"pressure:inlet_aorta_br:RCR_aorta_br","3615":"pressure:inlet_aorta_br:RCR_aorta_br","3616":"pressure:inlet_aorta_br:RCR_aorta_br","3617":"pressure:inlet_aorta_br:RCR_aorta_br","3618":"pressure:inlet_aorta_br:RCR_aorta_br","3619":"pressure:inlet_aorta_br:RCR_aorta_br","3620":"pressure:inlet_aorta_br:RCR_aorta_br","3621":"pressure:inlet_aorta_br:RCR_aorta_br","3622":"pressure:inlet_aorta_br:RCR_aorta_br","3623":"pressure:inlet_aorta_br:RCR_aorta_br","3624":"pressure:inlet_aorta_br:RCR_aorta_br","3625":"pressure:inlet_aorta_br:RCR_aorta_br","3626":"pressure:inlet_aorta_br:RCR_aorta_br","3627":"pressure:inlet_aorta_br:RCR_aorta_br","3628":"pressure:inlet_aorta_br:RCR_aorta_br","3629":"pressure:inlet_aorta_br:RCR_aorta_br","3630":"pressure:inlet_aorta_br:RCR_aorta_br","3631":"pressure:inlet_aorta_br:RCR_aorta_br","3632":"pressure:inlet_aorta_br:RCR_aorta_br","3633":"pressure:inlet_aorta_br:RCR_aorta_br","3634":"pressure:inlet_aorta_br:RCR_aorta_br","3635":"pressure:inlet_aorta_br:RCR_aorta_br","3636":"pressure:inlet_aorta_br:RCR_aorta_br","3637":"pressure:inlet_aorta_br:RCR_aorta_br","3638":"pressure:inlet_aorta_br:RCR_aorta_br","3639":"pressure:inlet_aorta_br:RCR_aorta_br","3640":"pressure:inlet_aorta_br:RCR_aorta_br","3641":"pressure:inlet_aorta_br:RCR_aorta_br","3642":"pressure:inlet_aorta_br:RCR_aorta_br","3643":"pressure:inlet_aorta_br:RCR_aorta_br","3644":"pressure:inlet_aorta_br:RCR_aorta_br","3645":"pressure:inlet_aorta_br:RCR_aorta_br","3646":"pressure:inlet_aorta_br:RCR_aorta_br","3647":"pressure:inlet_aorta_br:RCR_aorta_br","3648":"pressure:inlet_aorta_br:RCR_aorta_br","3649":"pressure:inlet_aorta_br:RCR_aorta_br","3650":"pressure:inlet_aorta_br:RCR_aorta_br","3651":"pressure:inlet_aorta_br:RCR_aorta_br","3652":"pressure:inlet_aorta_br:RCR_aorta_br","3653":"pressure:inlet_aorta_br:RCR_aorta_br","3654":"pressure:inlet_aorta_br:RCR_aorta_br","3655":"pressure:inlet_aorta_br:RCR_aorta_br","3656":"pressure:inlet_aorta_br:RCR_aorta_br","3657":"pressure:inlet_aorta_br:RCR_aorta_br","3658":"pressure:inlet_aorta_br:RCR_aorta_br","3659":"pressure:inlet_aorta_br:RCR_aorta_br","3660":"pressure:inlet_aorta_br:RCR_aorta_br","3661":"pressure:inlet_aorta_br:RCR_aorta_br","3662":"pressure:inlet_aorta_br:RCR_aorta_br","3663":"pressure:inlet_aorta_br:RCR_aorta_br","3664":"pressure:inlet_aorta_br:RCR_aorta_br","3665":"pressure:inlet_aorta_br:RCR_aorta_br","3666":"pressure:inlet_aorta_br:RCR_aorta_br","3667":"pressure:inlet_aorta_br:RCR_aorta_br","3668":"pressure:inlet_aorta_br:RCR_aorta_br","3669":"pressure:inlet_aorta_br:RCR_aorta_br","3670":"pressure:inlet_aorta_br:RCR_aorta_br","3671":"pressure:inlet_aorta_br:RCR_aorta_br","3672":"pressure:inlet_aorta_br:RCR_aorta_br","3673":"pressure:inlet_aorta_br:RCR_aorta_br","3674":"pressure:inlet_aorta_br:RCR_aorta_br","3675":"pressure:inlet_aorta_br:RCR_aorta_br","3676":"pressure:inlet_aorta_br:RCR_aorta_br","3677":"pressure:inlet_aorta_br:RCR_aorta_br","3678":"pressure:inlet_aorta_br:RCR_aorta_br","3679":"pressure:inlet_aorta_br:RCR_aorta_br","3680":"pressure:inlet_aorta_br:RCR_aorta_br","3681":"pressure:inlet_aorta_br:RCR_aorta_br","3682":"pressure:inlet_aorta_br:RCR_aorta_br","3683":"pressure:inlet_aorta_br:RCR_aorta_br","3684":"pressure:inlet_aorta_br:RCR_aorta_br","3685":"pressure:inlet_aorta_br:RCR_aorta_br","3686":"pressure:inlet_aorta_br:RCR_aorta_br","3687":"pressure:inlet_aorta_br:RCR_aorta_br","3688":"pressure:inlet_aorta_br:RCR_aorta_br","3689":"pressure:inlet_aorta_br:RCR_aorta_br","3690":"pressure:inlet_aorta_br:RCR_aorta_br","3691":"pressure:inlet_aorta_br:RCR_aorta_br","3692":"pressure:inlet_aorta_br:RCR_aorta_br","3693":"pressure:inlet_aorta_br:RCR_aorta_br","3694":"pressure:inlet_aorta_br:RCR_aorta_br","3695":"pressure:inlet_aorta_br:RCR_aorta_br","3696":"pressure:inlet_aorta_br:RCR_aorta_br","3697":"pressure:inlet_aorta_br:RCR_aorta_br","3698":"pressure:inlet_aorta_br:RCR_aorta_br","3699":"pressure:inlet_aorta_br:RCR_aorta_br","3700":"pressure:inlet_aorta_br:RCR_aorta_br","3701":"pressure:inlet_aorta_br:RCR_aorta_br","3702":"pressure:inlet_aorta_br:RCR_aorta_br","3703":"pressure:inlet_aorta_br:RCR_aorta_br","3704":"pressure:inlet_aorta_br:RCR_aorta_br","3705":"pressure:inlet_aorta_br:RCR_aorta_br","3706":"pressure:inlet_aorta_br:RCR_aorta_br","3707":"pressure:inlet_aorta_br:RCR_aorta_br","3708":"pressure:inlet_aorta_br:RCR_aorta_br","3709":"pressure:inlet_aorta_br:RCR_aorta_br","3710":"pressure:inlet_aorta_br:RCR_aorta_br","3711":"pressure:inlet_aorta_br:RCR_aorta_br","3712":"pressure:inlet_aorta_br:RCR_aorta_br","3713":"pressure:inlet_aorta_br:RCR_aorta_br","3714":"pressure:inlet_aorta_br:RCR_aorta_br","3715":"pressure:inlet_aorta_br:RCR_aorta_br","3716":"pressure:inlet_aorta_br:RCR_aorta_br","3717":"pressure:inlet_aorta_br:RCR_aorta_br","3718":"pressure:inlet_aorta_br:RCR_aorta_br","3719":"pressure:inlet_aorta_br:RCR_aorta_br","3720":"pressure:inlet_aorta_br:RCR_aorta_br","3721":"pressure:inlet_aorta_br:RCR_aorta_br","3722":"pressure:inlet_aorta_br:RCR_aorta_br","3723":"pressure:inlet_aorta_br:RCR_aorta_br","3724":"pressure:inlet_aorta_br:RCR_aorta_br","3725":"pressure:inlet_aorta_br:RCR_aorta_br","3726":"pressure:inlet_aorta_br:RCR_aorta_br","3727":"pressure:inlet_aorta_br:RCR_aorta_br","3728":"pressure:inlet_aorta_br:RCR_aorta_br","3729":"pressure:inlet_aorta_br:RCR_aorta_br","3730":"pressure:inlet_aorta_br:RCR_aorta_br","3731":"pressure:inlet_aorta_br:RCR_aorta_br","3732":"pressure:inlet_aorta_br:RCR_aorta_br","3733":"pressure:inlet_aorta_br:RCR_aorta_br","3734":"pressure:inlet_aorta_br:RCR_aorta_br","3735":"pressure:inlet_aorta_br:RCR_aorta_br","3736":"pressure:inlet_aorta_br:RCR_aorta_br","3737":"pressure:inlet_aorta_br:RCR_aorta_br","3738":"pressure:inlet_aorta_br:RCR_aorta_br","3739":"pressure:inlet_aorta_br:RCR_aorta_br","3740":"pressure:inlet_aorta_br:RCR_aorta_br","3741":"pressure:inlet_aorta_br:RCR_aorta_br","3742":"pressure:inlet_aorta_br:RCR_aorta_br","3743":"pressure:inlet_aorta_br:RCR_aorta_br","3744":"pressure:inlet_aorta_br:RCR_aorta_br","3745":"pressure:inlet_aorta_br:RCR_aorta_br","3746":"pressure:inlet_aorta_br:RCR_aorta_br","3747":"pressure:inlet_aorta_br:RCR_aorta_br","3748":"pressure:inlet_aorta_br:RCR_aorta_br","3749":"pressure:inlet_aorta_br:RCR_aorta_br","3750":"pressure:inlet_aorta_br:RCR_aorta_br","3751":"pressure:inlet_aorta_br:RCR_aorta_br","3752":"pressure:inlet_aorta_br:RCR_aorta_br","3753":"pressure:inlet_aorta_br:RCR_aorta_br","3754":"pressure:inlet_aorta_br:RCR_aorta_br","3755":"pressure:inlet_aorta_br:RCR_aorta_br","3756":"pressure:inlet_aorta_br:RCR_aorta_br","3757":"pressure:inlet_aorta_br:RCR_aorta_br","3758":"pressure:inlet_aorta_br:RCR_aorta_br","3759":"pressure:inlet_aorta_br:RCR_aorta_br","3760":"pressure:inlet_aorta_br:RCR_aorta_br","3761":"pressure:inlet_aorta_br:RCR_aorta_br","3762":"pressure:inlet_aorta_br:RCR_aorta_br","3763":"pressure:inlet_aorta_br:RCR_aorta_br","3764":"pressure:inlet_aorta_br:RCR_aorta_br","3765":"pressure:inlet_aorta_br:RCR_aorta_br","3766":"pressure:inlet_aorta_br:RCR_aorta_br","3767":"pressure:inlet_aorta_br:RCR_aorta_br","3768":"pressure:inlet_aorta_br:RCR_aorta_br","3769":"pressure:inlet_aorta_br:RCR_aorta_br","3770":"pressure:inlet_aorta_br:RCR_aorta_br","3771":"pressure:inlet_aorta_br:RCR_aorta_br","3772":"pressure:inlet_aorta_br:RCR_aorta_br","3773":"pressure:inlet_aorta_br:RCR_aorta_br","3774":"pressure:inlet_aorta_br:RCR_aorta_br","3775":"pressure:inlet_aorta_br:RCR_aorta_br","3776":"pressure:inlet_aorta_br:RCR_aorta_br","3777":"pressure:inlet_aorta_br:RCR_aorta_br","3778":"pressure:inlet_aorta_br:RCR_aorta_br","3779":"pressure:inlet_aorta_br:RCR_aorta_br","3780":"pressure:inlet_aorta_br:RCR_aorta_br","3781":"pressure:inlet_aorta_br:RCR_aorta_br","3782":"pressure:inlet_aorta_br:RCR_aorta_br","3783":"pressure:inlet_aorta_br:RCR_aorta_br","3784":"pressure:inlet_aorta_br:RCR_aorta_br","3785":"pressure:inlet_aorta_br:RCR_aorta_br","3786":"pressure:inlet_aorta_br:RCR_aorta_br","3787":"pressure:inlet_aorta_br:RCR_aorta_br","3788":"pressure:inlet_aorta_br:RCR_aorta_br","3789":"pressure:inlet_aorta_br:RCR_aorta_br","3790":"pressure:inlet_aorta_br:RCR_aorta_br","3791":"pressure:inlet_aorta_br:RCR_aorta_br","3792":"pressure:inlet_aorta_br:RCR_aorta_br","3793":"pressure:inlet_aorta_br:RCR_aorta_br","3794":"pressure:inlet_aorta_br:RCR_aorta_br","3795":"pressure:inlet_aorta_br:RCR_aorta_br","3796":"pressure:inlet_aorta_br:RCR_aorta_br","3797":"pressure:inlet_aorta_br:RCR_aorta_br","3798":"pressure:inlet_aorta_br:RCR_aorta_br","3799":"pressure:inlet_aorta_br:RCR_aorta_br","3800":"pressure:inlet_aorta_br:RCR_aorta_br","3801":"pressure:inlet_aorta_br:RCR_aorta_br","3802":"pressure:inlet_aorta_br:RCR_aorta_br","3803":"pressure:inlet_aorta_br:RCR_aorta_br","3804":"pressure:inlet_aorta_br:RCR_aorta_br","3805":"pressure:inlet_aorta_br:RCR_aorta_br","3806":"pressure:inlet_aorta_br:RCR_aorta_br","3807":"pressure:inlet_aorta_br:RCR_aorta_br","3808":"pressure:inlet_aorta_br:RCR_aorta_br","3809":"pressure:inlet_aorta_br:RCR_aorta_br","3810":"pressure:inlet_aorta_br:RCR_aorta_br","3811":"pressure:inlet_aorta_br:RCR_aorta_br","3812":"pressure:inlet_aorta_br:RCR_aorta_br","3813":"pressure:inlet_aorta_br:RCR_aorta_br","3814":"pressure:inlet_aorta_br:RCR_aorta_br","3815":"pressure:inlet_aorta_br:RCR_aorta_br","3816":"pressure:inlet_aorta_br:RCR_aorta_br","3817":"pressure:inlet_aorta_br:RCR_aorta_br","3818":"pressure:inlet_aorta_br:RCR_aorta_br","3819":"pressure:inlet_aorta_br:RCR_aorta_br","3820":"pressure:inlet_aorta_br:RCR_aorta_br","3821":"pressure:inlet_aorta_br:RCR_aorta_br","3822":"pressure:inlet_aorta_br:RCR_aorta_br","3823":"pressure:inlet_aorta_br:RCR_aorta_br","3824":"pressure:inlet_aorta_br:RCR_aorta_br","3825":"pressure:inlet_aorta_br:RCR_aorta_br","3826":"pressure:inlet_aorta_br:RCR_aorta_br","3827":"pressure:inlet_aorta_br:RCR_aorta_br","3828":"pressure:inlet_aorta_br:RCR_aorta_br","3829":"pressure:inlet_aorta_br:RCR_aorta_br","3830":"pressure:inlet_aorta_br:RCR_aorta_br","3831":"pressure:inlet_aorta_br:RCR_aorta_br","3832":"pressure:inlet_aorta_br:RCR_aorta_br","3833":"pressure:inlet_aorta_br:RCR_aorta_br","3834":"pressure:inlet_aorta_br:RCR_aorta_br","3835":"pressure:inlet_aorta_br:RCR_aorta_br","3836":"pressure:inlet_aorta_br:RCR_aorta_br","3837":"pressure:inlet_aorta_br:RCR_aorta_br","3838":"pressure:inlet_aorta_br:RCR_aorta_br","3839":"pressure:inlet_aorta_br:RCR_aorta_br","3840":"pressure:inlet_aorta_br:RCR_aorta_br","3841":"pressure:inlet_aorta_br:RCR_aorta_br","3842":"pressure:inlet_aorta_br:RCR_aorta_br","3843":"pressure:inlet_aorta_br:RCR_aorta_br","3844":"pressure:inlet_aorta_br:RCR_aorta_br","3845":"pressure:inlet_aorta_br:RCR_aorta_br","3846":"pressure:inlet_aorta_br:RCR_aorta_br","3847":"pressure:inlet_aorta_br:RCR_aorta_br","3848":"pressure:inlet_aorta_br:RCR_aorta_br","3849":"pressure:inlet_aorta_br:RCR_aorta_br","3850":"pressure:inlet_aorta_br:RCR_aorta_br","3851":"pressure:inlet_aorta_br:RCR_aorta_br","3852":"pressure:inlet_aorta_br:RCR_aorta_br","3853":"pressure:inlet_aorta_br:RCR_aorta_br","3854":"pressure:inlet_aorta_br:RCR_aorta_br","3855":"pressure:inlet_aorta_br:RCR_aorta_br","3856":"pressure:inlet_aorta_br:RCR_aorta_br","3857":"pressure:inlet_aorta_br:RCR_aorta_br","3858":"pressure:inlet_aorta_br:RCR_aorta_br","3859":"pressure:inlet_aorta_br:RCR_aorta_br","3860":"pressure:inlet_aorta_br:RCR_aorta_br","3861":"pressure:inlet_aorta_br:RCR_aorta_br","3862":"pressure:inlet_aorta_br:RCR_aorta_br","3863":"pressure:inlet_aorta_br:RCR_aorta_br","3864":"pressure:inlet_aorta_br:RCR_aorta_br","3865":"pressure:inlet_aorta_br:RCR_aorta_br","3866":"pressure:inlet_aorta_br:RCR_aorta_br","3867":"pressure:inlet_aorta_br:RCR_aorta_br","3868":"pressure:inlet_aorta_br:RCR_aorta_br","3869":"pressure:inlet_aorta_br:RCR_aorta_br","3870":"pressure:inlet_aorta_br:RCR_aorta_br","3871":"pressure:inlet_aorta_br:RCR_aorta_br","3872":"pressure:inlet_aorta_br:RCR_aorta_br","3873":"pressure:inlet_aorta_br:RCR_aorta_br","3874":"pressure:inlet_aorta_br:RCR_aorta_br","3875":"pressure:inlet_aorta_br:RCR_aorta_br","3876":"pressure:inlet_aorta_br:RCR_aorta_br","3877":"pressure:inlet_aorta_br:RCR_aorta_br","3878":"pressure:inlet_aorta_br:RCR_aorta_br","3879":"pressure:inlet_aorta_br:RCR_aorta_br","3880":"pressure:inlet_aorta_br:RCR_aorta_br","3881":"pressure:inlet_aorta_br:RCR_aorta_br","3882":"pressure:inlet_aorta_br:RCR_aorta_br","3883":"pressure:inlet_aorta_br:RCR_aorta_br","3884":"pressure:inlet_aorta_br:RCR_aorta_br","3885":"pressure:inlet_aorta_br:RCR_aorta_br","3886":"pressure:inlet_aorta_br:RCR_aorta_br","3887":"pressure:inlet_aorta_br:RCR_aorta_br","3888":"pressure:inlet_aorta_br:RCR_aorta_br","3889":"pressure:inlet_aorta_br:RCR_aorta_br","3890":"pressure:inlet_aorta_br:RCR_aorta_br","3891":"pressure:inlet_aorta_br:RCR_aorta_br","3892":"pressure:inlet_aorta_br:RCR_aorta_br","3893":"pressure:inlet_aorta_br:RCR_aorta_br","3894":"pressure:inlet_aorta_br:RCR_aorta_br","3895":"pressure:inlet_aorta_br:RCR_aorta_br","3896":"pressure:inlet_aorta_br:RCR_aorta_br","3897":"pressure:inlet_aorta_br:RCR_aorta_br","3898":"pressure:inlet_aorta_br:RCR_aorta_br","3899":"pressure:inlet_aorta_br:RCR_aorta_br","3900":"pressure:inlet_aorta_br:RCR_aorta_br","3901":"pressure:inlet_aorta_br:RCR_aorta_br","3902":"pressure:inlet_aorta_br:RCR_aorta_br","3903":"pressure:inlet_aorta_br:RCR_aorta_br","3904":"pressure:inlet_aorta_br:RCR_aorta_br","3905":"pressure:inlet_aorta_br:RCR_aorta_br","3906":"pressure:inlet_aorta_br:RCR_aorta_br","3907":"pressure:inlet_aorta_br:RCR_aorta_br","3908":"pressure:inlet_aorta_br:RCR_aorta_br","3909":"pressure:inlet_aorta_br:RCR_aorta_br","3910":"pressure:inlet_aorta_br:RCR_aorta_br","3911":"pressure:inlet_aorta_br:RCR_aorta_br","3912":"pressure:inlet_aorta_br:RCR_aorta_br","3913":"pressure:inlet_aorta_br:RCR_aorta_br","3914":"pressure:inlet_aorta_br:RCR_aorta_br","3915":"pressure:inlet_aorta_br:RCR_aorta_br","3916":"pressure:inlet_aorta_br:RCR_aorta_br","3917":"pressure:inlet_aorta_br:RCR_aorta_br","3918":"pressure:inlet_aorta_br:RCR_aorta_br","3919":"pressure:inlet_aorta_br:RCR_aorta_br","3920":"pressure:inlet_aorta_br:RCR_aorta_br","3921":"pressure:inlet_aorta_br:RCR_aorta_br","3922":"pressure:inlet_aorta_br:RCR_aorta_br","3923":"pressure:inlet_aorta_br:RCR_aorta_br","3924":"pressure:inlet_aorta_br:RCR_aorta_br","3925":"pressure:inlet_aorta_br:RCR_aorta_br","3926":"pressure:inlet_aorta_br:RCR_aorta_br","3927":"pressure:inlet_aorta_br:RCR_aorta_br","3928":"pressure:inlet_aorta_br:RCR_aorta_br","3929":"pressure:inlet_aorta_br:RCR_aorta_br","3930":"pressure:inlet_aorta_br:RCR_aorta_br","3931":"pressure:inlet_aorta_br:RCR_aorta_br","3932":"pressure:inlet_aorta_br:RCR_aorta_br","3933":"pressure:inlet_aorta_br:RCR_aorta_br","3934":"pressure:inlet_aorta_br:RCR_aorta_br","3935":"pressure:inlet_aorta_br:RCR_aorta_br","3936":"pressure:inlet_aorta_br:RCR_aorta_br","3937":"pressure:inlet_aorta_br:RCR_aorta_br","3938":"pressure:inlet_aorta_br:RCR_aorta_br","3939":"pressure:inlet_aorta_br:RCR_aorta_br","3940":"pressure:inlet_aorta_br:RCR_aorta_br","3941":"pressure:inlet_aorta_br:RCR_aorta_br","3942":"pressure:inlet_aorta_br:RCR_aorta_br","3943":"pressure:inlet_aorta_br:RCR_aorta_br","3944":"pressure:inlet_aorta_br:RCR_aorta_br","3945":"pressure:inlet_aorta_br:RCR_aorta_br","3946":"pressure:inlet_aorta_br:RCR_aorta_br","3947":"pressure:inlet_aorta_br:RCR_aorta_br","3948":"pressure:inlet_aorta_br:RCR_aorta_br","3949":"pressure:inlet_aorta_br:RCR_aorta_br","3950":"pressure:inlet_aorta_br:RCR_aorta_br","3951":"pressure:inlet_aorta_br:RCR_aorta_br","3952":"pressure:inlet_aorta_br:RCR_aorta_br","3953":"pressure:inlet_aorta_br:RCR_aorta_br","3954":"pressure:inlet_aorta_br:RCR_aorta_br","3955":"pressure:inlet_aorta_br:RCR_aorta_br","3956":"pressure:inlet_aorta_br:RCR_aorta_br","3957":"pressure:inlet_aorta_br:RCR_aorta_br","3958":"pressure:inlet_aorta_br:RCR_aorta_br","3959":"pressure:inlet_aorta_br:RCR_aorta_br","3960":"pressure:inlet_aorta_br:RCR_aorta_br","3961":"pressure:inlet_aorta_br:RCR_aorta_br","3962":"pressure:inlet_aorta_br:RCR_aorta_br","3963":"pressure:inlet_aorta_br:RCR_aorta_br","3964":"pressure:inlet_aorta_br:RCR_aorta_br","3965":"pressure:inlet_aorta_br:RCR_aorta_br","3966":"pressure:inlet_aorta_br:RCR_aorta_br","3967":"pressure:inlet_aorta_br:RCR_aorta_br","3968":"pressure:inlet_aorta_br:RCR_aorta_br","3969":"pressure:inlet_aorta_br:RCR_aorta_br","3970":"pressure:inlet_aorta_br:RCR_aorta_br","3971":"pressure:inlet_aorta_br:RCR_aorta_br","3972":"pressure:inlet_aorta_br:RCR_aorta_br","3973":"pressure:inlet_aorta_br:RCR_aorta_br","3974":"pressure:inlet_aorta_br:RCR_aorta_br","3975":"pressure:inlet_aorta_br:RCR_aorta_br","3976":"pressure:inlet_aorta_br:RCR_aorta_br","3977":"pressure:inlet_aorta_br:RCR_aorta_br","3978":"pressure:inlet_aorta_br:RCR_aorta_br","3979":"pressure:inlet_aorta_br:RCR_aorta_br","3980":"pressure:inlet_aorta_br:RCR_aorta_br","3981":"pressure:inlet_aorta_br:RCR_aorta_br","3982":"pressure:inlet_aorta_br:RCR_aorta_br","3983":"pressure:inlet_aorta_br:RCR_aorta_br","3984":"pressure:inlet_aorta_br:RCR_aorta_br","3985":"pressure:inlet_aorta_br:RCR_aorta_br","3986":"pressure:inlet_aorta_br:RCR_aorta_br","3987":"pressure:inlet_aorta_br:RCR_aorta_br","3988":"pressure:inlet_aorta_br:RCR_aorta_br","3989":"pressure:inlet_aorta_br:RCR_aorta_br","3990":"pressure:inlet_aorta_br:RCR_aorta_br","3991":"pressure:inlet_aorta_br:RCR_aorta_br","3992":"pressure:inlet_aorta_br:RCR_aorta_br","3993":"pressure:inlet_aorta_br:RCR_aorta_br","3994":"pressure:inlet_aorta_br:RCR_aorta_br","3995":"pressure:inlet_aorta_br:RCR_aorta_br","3996":"pressure:inlet_aorta_br:RCR_aorta_br","3997":"pressure:inlet_aorta_br:RCR_aorta_br","3998":"pressure:inlet_aorta_br:RCR_aorta_br","3999":"pressure:inlet_aorta_br:RCR_aorta_br","4000":"flow:inlet_LCA:LCA","4001":"flow:inlet_LCA:LCA","4002":"flow:inlet_LCA:LCA","4003":"flow:inlet_LCA:LCA","4004":"flow:inlet_LCA:LCA","4005":"flow:inlet_LCA:LCA","4006":"flow:inlet_LCA:LCA","4007":"flow:inlet_LCA:LCA","4008":"flow:inlet_LCA:LCA","4009":"flow:inlet_LCA:LCA","4010":"flow:inlet_LCA:LCA","4011":"flow:inlet_LCA:LCA","4012":"flow:inlet_LCA:LCA","4013":"flow:inlet_LCA:LCA","4014":"flow:inlet_LCA:LCA","4015":"flow:inlet_LCA:LCA","4016":"flow:inlet_LCA:LCA","4017":"flow:inlet_LCA:LCA","4018":"flow:inlet_LCA:LCA","4019":"flow:inlet_LCA:LCA","4020":"flow:inlet_LCA:LCA","4021":"flow:inlet_LCA:LCA","4022":"flow:inlet_LCA:LCA","4023":"flow:inlet_LCA:LCA","4024":"flow:inlet_LCA:LCA","4025":"flow:inlet_LCA:LCA","4026":"flow:inlet_LCA:LCA","4027":"flow:inlet_LCA:LCA","4028":"flow:inlet_LCA:LCA","4029":"flow:inlet_LCA:LCA","4030":"flow:inlet_LCA:LCA","4031":"flow:inlet_LCA:LCA","4032":"flow:inlet_LCA:LCA","4033":"flow:inlet_LCA:LCA","4034":"flow:inlet_LCA:LCA","4035":"flow:inlet_LCA:LCA","4036":"flow:inlet_LCA:LCA","4037":"flow:inlet_LCA:LCA","4038":"flow:inlet_LCA:LCA","4039":"flow:inlet_LCA:LCA","4040":"flow:inlet_LCA:LCA","4041":"flow:inlet_LCA:LCA","4042":"flow:inlet_LCA:LCA","4043":"flow:inlet_LCA:LCA","4044":"flow:inlet_LCA:LCA","4045":"flow:inlet_LCA:LCA","4046":"flow:inlet_LCA:LCA","4047":"flow:inlet_LCA:LCA","4048":"flow:inlet_LCA:LCA","4049":"flow:inlet_LCA:LCA","4050":"flow:inlet_LCA:LCA","4051":"flow:inlet_LCA:LCA","4052":"flow:inlet_LCA:LCA","4053":"flow:inlet_LCA:LCA","4054":"flow:inlet_LCA:LCA","4055":"flow:inlet_LCA:LCA","4056":"flow:inlet_LCA:LCA","4057":"flow:inlet_LCA:LCA","4058":"flow:inlet_LCA:LCA","4059":"flow:inlet_LCA:LCA","4060":"flow:inlet_LCA:LCA","4061":"flow:inlet_LCA:LCA","4062":"flow:inlet_LCA:LCA","4063":"flow:inlet_LCA:LCA","4064":"flow:inlet_LCA:LCA","4065":"flow:inlet_LCA:LCA","4066":"flow:inlet_LCA:LCA","4067":"flow:inlet_LCA:LCA","4068":"flow:inlet_LCA:LCA","4069":"flow:inlet_LCA:LCA","4070":"flow:inlet_LCA:LCA","4071":"flow:inlet_LCA:LCA","4072":"flow:inlet_LCA:LCA","4073":"flow:inlet_LCA:LCA","4074":"flow:inlet_LCA:LCA","4075":"flow:inlet_LCA:LCA","4076":"flow:inlet_LCA:LCA","4077":"flow:inlet_LCA:LCA","4078":"flow:inlet_LCA:LCA","4079":"flow:inlet_LCA:LCA","4080":"flow:inlet_LCA:LCA","4081":"flow:inlet_LCA:LCA","4082":"flow:inlet_LCA:LCA","4083":"flow:inlet_LCA:LCA","4084":"flow:inlet_LCA:LCA","4085":"flow:inlet_LCA:LCA","4086":"flow:inlet_LCA:LCA","4087":"flow:inlet_LCA:LCA","4088":"flow:inlet_LCA:LCA","4089":"flow:inlet_LCA:LCA","4090":"flow:inlet_LCA:LCA","4091":"flow:inlet_LCA:LCA","4092":"flow:inlet_LCA:LCA","4093":"flow:inlet_LCA:LCA","4094":"flow:inlet_LCA:LCA","4095":"flow:inlet_LCA:LCA","4096":"flow:inlet_LCA:LCA","4097":"flow:inlet_LCA:LCA","4098":"flow:inlet_LCA:LCA","4099":"flow:inlet_LCA:LCA","4100":"flow:inlet_LCA:LCA","4101":"flow:inlet_LCA:LCA","4102":"flow:inlet_LCA:LCA","4103":"flow:inlet_LCA:LCA","4104":"flow:inlet_LCA:LCA","4105":"flow:inlet_LCA:LCA","4106":"flow:inlet_LCA:LCA","4107":"flow:inlet_LCA:LCA","4108":"flow:inlet_LCA:LCA","4109":"flow:inlet_LCA:LCA","4110":"flow:inlet_LCA:LCA","4111":"flow:inlet_LCA:LCA","4112":"flow:inlet_LCA:LCA","4113":"flow:inlet_LCA:LCA","4114":"flow:inlet_LCA:LCA","4115":"flow:inlet_LCA:LCA","4116":"flow:inlet_LCA:LCA","4117":"flow:inlet_LCA:LCA","4118":"flow:inlet_LCA:LCA","4119":"flow:inlet_LCA:LCA","4120":"flow:inlet_LCA:LCA","4121":"flow:inlet_LCA:LCA","4122":"flow:inlet_LCA:LCA","4123":"flow:inlet_LCA:LCA","4124":"flow:inlet_LCA:LCA","4125":"flow:inlet_LCA:LCA","4126":"flow:inlet_LCA:LCA","4127":"flow:inlet_LCA:LCA","4128":"flow:inlet_LCA:LCA","4129":"flow:inlet_LCA:LCA","4130":"flow:inlet_LCA:LCA","4131":"flow:inlet_LCA:LCA","4132":"flow:inlet_LCA:LCA","4133":"flow:inlet_LCA:LCA","4134":"flow:inlet_LCA:LCA","4135":"flow:inlet_LCA:LCA","4136":"flow:inlet_LCA:LCA","4137":"flow:inlet_LCA:LCA","4138":"flow:inlet_LCA:LCA","4139":"flow:inlet_LCA:LCA","4140":"flow:inlet_LCA:LCA","4141":"flow:inlet_LCA:LCA","4142":"flow:inlet_LCA:LCA","4143":"flow:inlet_LCA:LCA","4144":"flow:inlet_LCA:LCA","4145":"flow:inlet_LCA:LCA","4146":"flow:inlet_LCA:LCA","4147":"flow:inlet_LCA:LCA","4148":"flow:inlet_LCA:LCA","4149":"flow:inlet_LCA:LCA","4150":"flow:inlet_LCA:LCA","4151":"flow:inlet_LCA:LCA","4152":"flow:inlet_LCA:LCA","4153":"flow:inlet_LCA:LCA","4154":"flow:inlet_LCA:LCA","4155":"flow:inlet_LCA:LCA","4156":"flow:inlet_LCA:LCA","4157":"flow:inlet_LCA:LCA","4158":"flow:inlet_LCA:LCA","4159":"flow:inlet_LCA:LCA","4160":"flow:inlet_LCA:LCA","4161":"flow:inlet_LCA:LCA","4162":"flow:inlet_LCA:LCA","4163":"flow:inlet_LCA:LCA","4164":"flow:inlet_LCA:LCA","4165":"flow:inlet_LCA:LCA","4166":"flow:inlet_LCA:LCA","4167":"flow:inlet_LCA:LCA","4168":"flow:inlet_LCA:LCA","4169":"flow:inlet_LCA:LCA","4170":"flow:inlet_LCA:LCA","4171":"flow:inlet_LCA:LCA","4172":"flow:inlet_LCA:LCA","4173":"flow:inlet_LCA:LCA","4174":"flow:inlet_LCA:LCA","4175":"flow:inlet_LCA:LCA","4176":"flow:inlet_LCA:LCA","4177":"flow:inlet_LCA:LCA","4178":"flow:inlet_LCA:LCA","4179":"flow:inlet_LCA:LCA","4180":"flow:inlet_LCA:LCA","4181":"flow:inlet_LCA:LCA","4182":"flow:inlet_LCA:LCA","4183":"flow:inlet_LCA:LCA","4184":"flow:inlet_LCA:LCA","4185":"flow:inlet_LCA:LCA","4186":"flow:inlet_LCA:LCA","4187":"flow:inlet_LCA:LCA","4188":"flow:inlet_LCA:LCA","4189":"flow:inlet_LCA:LCA","4190":"flow:inlet_LCA:LCA","4191":"flow:inlet_LCA:LCA","4192":"flow:inlet_LCA:LCA","4193":"flow:inlet_LCA:LCA","4194":"flow:inlet_LCA:LCA","4195":"flow:inlet_LCA:LCA","4196":"flow:inlet_LCA:LCA","4197":"flow:inlet_LCA:LCA","4198":"flow:inlet_LCA:LCA","4199":"flow:inlet_LCA:LCA","4200":"flow:inlet_LCA:LCA","4201":"flow:inlet_LCA:LCA","4202":"flow:inlet_LCA:LCA","4203":"flow:inlet_LCA:LCA","4204":"flow:inlet_LCA:LCA","4205":"flow:inlet_LCA:LCA","4206":"flow:inlet_LCA:LCA","4207":"flow:inlet_LCA:LCA","4208":"flow:inlet_LCA:LCA","4209":"flow:inlet_LCA:LCA","4210":"flow:inlet_LCA:LCA","4211":"flow:inlet_LCA:LCA","4212":"flow:inlet_LCA:LCA","4213":"flow:inlet_LCA:LCA","4214":"flow:inlet_LCA:LCA","4215":"flow:inlet_LCA:LCA","4216":"flow:inlet_LCA:LCA","4217":"flow:inlet_LCA:LCA","4218":"flow:inlet_LCA:LCA","4219":"flow:inlet_LCA:LCA","4220":"flow:inlet_LCA:LCA","4221":"flow:inlet_LCA:LCA","4222":"flow:inlet_LCA:LCA","4223":"flow:inlet_LCA:LCA","4224":"flow:inlet_LCA:LCA","4225":"flow:inlet_LCA:LCA","4226":"flow:inlet_LCA:LCA","4227":"flow:inlet_LCA:LCA","4228":"flow:inlet_LCA:LCA","4229":"flow:inlet_LCA:LCA","4230":"flow:inlet_LCA:LCA","4231":"flow:inlet_LCA:LCA","4232":"flow:inlet_LCA:LCA","4233":"flow:inlet_LCA:LCA","4234":"flow:inlet_LCA:LCA","4235":"flow:inlet_LCA:LCA","4236":"flow:inlet_LCA:LCA","4237":"flow:inlet_LCA:LCA","4238":"flow:inlet_LCA:LCA","4239":"flow:inlet_LCA:LCA","4240":"flow:inlet_LCA:LCA","4241":"flow:inlet_LCA:LCA","4242":"flow:inlet_LCA:LCA","4243":"flow:inlet_LCA:LCA","4244":"flow:inlet_LCA:LCA","4245":"flow:inlet_LCA:LCA","4246":"flow:inlet_LCA:LCA","4247":"flow:inlet_LCA:LCA","4248":"flow:inlet_LCA:LCA","4249":"flow:inlet_LCA:LCA","4250":"flow:inlet_LCA:LCA","4251":"flow:inlet_LCA:LCA","4252":"flow:inlet_LCA:LCA","4253":"flow:inlet_LCA:LCA","4254":"flow:inlet_LCA:LCA","4255":"flow:inlet_LCA:LCA","4256":"flow:inlet_LCA:LCA","4257":"flow:inlet_LCA:LCA","4258":"flow:inlet_LCA:LCA","4259":"flow:inlet_LCA:LCA","4260":"flow:inlet_LCA:LCA","4261":"flow:inlet_LCA:LCA","4262":"flow:inlet_LCA:LCA","4263":"flow:inlet_LCA:LCA","4264":"flow:inlet_LCA:LCA","4265":"flow:inlet_LCA:LCA","4266":"flow:inlet_LCA:LCA","4267":"flow:inlet_LCA:LCA","4268":"flow:inlet_LCA:LCA","4269":"flow:inlet_LCA:LCA","4270":"flow:inlet_LCA:LCA","4271":"flow:inlet_LCA:LCA","4272":"flow:inlet_LCA:LCA","4273":"flow:inlet_LCA:LCA","4274":"flow:inlet_LCA:LCA","4275":"flow:inlet_LCA:LCA","4276":"flow:inlet_LCA:LCA","4277":"flow:inlet_LCA:LCA","4278":"flow:inlet_LCA:LCA","4279":"flow:inlet_LCA:LCA","4280":"flow:inlet_LCA:LCA","4281":"flow:inlet_LCA:LCA","4282":"flow:inlet_LCA:LCA","4283":"flow:inlet_LCA:LCA","4284":"flow:inlet_LCA:LCA","4285":"flow:inlet_LCA:LCA","4286":"flow:inlet_LCA:LCA","4287":"flow:inlet_LCA:LCA","4288":"flow:inlet_LCA:LCA","4289":"flow:inlet_LCA:LCA","4290":"flow:inlet_LCA:LCA","4291":"flow:inlet_LCA:LCA","4292":"flow:inlet_LCA:LCA","4293":"flow:inlet_LCA:LCA","4294":"flow:inlet_LCA:LCA","4295":"flow:inlet_LCA:LCA","4296":"flow:inlet_LCA:LCA","4297":"flow:inlet_LCA:LCA","4298":"flow:inlet_LCA:LCA","4299":"flow:inlet_LCA:LCA","4300":"flow:inlet_LCA:LCA","4301":"flow:inlet_LCA:LCA","4302":"flow:inlet_LCA:LCA","4303":"flow:inlet_LCA:LCA","4304":"flow:inlet_LCA:LCA","4305":"flow:inlet_LCA:LCA","4306":"flow:inlet_LCA:LCA","4307":"flow:inlet_LCA:LCA","4308":"flow:inlet_LCA:LCA","4309":"flow:inlet_LCA:LCA","4310":"flow:inlet_LCA:LCA","4311":"flow:inlet_LCA:LCA","4312":"flow:inlet_LCA:LCA","4313":"flow:inlet_LCA:LCA","4314":"flow:inlet_LCA:LCA","4315":"flow:inlet_LCA:LCA","4316":"flow:inlet_LCA:LCA","4317":"flow:inlet_LCA:LCA","4318":"flow:inlet_LCA:LCA","4319":"flow:inlet_LCA:LCA","4320":"flow:inlet_LCA:LCA","4321":"flow:inlet_LCA:LCA","4322":"flow:inlet_LCA:LCA","4323":"flow:inlet_LCA:LCA","4324":"flow:inlet_LCA:LCA","4325":"flow:inlet_LCA:LCA","4326":"flow:inlet_LCA:LCA","4327":"flow:inlet_LCA:LCA","4328":"flow:inlet_LCA:LCA","4329":"flow:inlet_LCA:LCA","4330":"flow:inlet_LCA:LCA","4331":"flow:inlet_LCA:LCA","4332":"flow:inlet_LCA:LCA","4333":"flow:inlet_LCA:LCA","4334":"flow:inlet_LCA:LCA","4335":"flow:inlet_LCA:LCA","4336":"flow:inlet_LCA:LCA","4337":"flow:inlet_LCA:LCA","4338":"flow:inlet_LCA:LCA","4339":"flow:inlet_LCA:LCA","4340":"flow:inlet_LCA:LCA","4341":"flow:inlet_LCA:LCA","4342":"flow:inlet_LCA:LCA","4343":"flow:inlet_LCA:LCA","4344":"flow:inlet_LCA:LCA","4345":"flow:inlet_LCA:LCA","4346":"flow:inlet_LCA:LCA","4347":"flow:inlet_LCA:LCA","4348":"flow:inlet_LCA:LCA","4349":"flow:inlet_LCA:LCA","4350":"flow:inlet_LCA:LCA","4351":"flow:inlet_LCA:LCA","4352":"flow:inlet_LCA:LCA","4353":"flow:inlet_LCA:LCA","4354":"flow:inlet_LCA:LCA","4355":"flow:inlet_LCA:LCA","4356":"flow:inlet_LCA:LCA","4357":"flow:inlet_LCA:LCA","4358":"flow:inlet_LCA:LCA","4359":"flow:inlet_LCA:LCA","4360":"flow:inlet_LCA:LCA","4361":"flow:inlet_LCA:LCA","4362":"flow:inlet_LCA:LCA","4363":"flow:inlet_LCA:LCA","4364":"flow:inlet_LCA:LCA","4365":"flow:inlet_LCA:LCA","4366":"flow:inlet_LCA:LCA","4367":"flow:inlet_LCA:LCA","4368":"flow:inlet_LCA:LCA","4369":"flow:inlet_LCA:LCA","4370":"flow:inlet_LCA:LCA","4371":"flow:inlet_LCA:LCA","4372":"flow:inlet_LCA:LCA","4373":"flow:inlet_LCA:LCA","4374":"flow:inlet_LCA:LCA","4375":"flow:inlet_LCA:LCA","4376":"flow:inlet_LCA:LCA","4377":"flow:inlet_LCA:LCA","4378":"flow:inlet_LCA:LCA","4379":"flow:inlet_LCA:LCA","4380":"flow:inlet_LCA:LCA","4381":"flow:inlet_LCA:LCA","4382":"flow:inlet_LCA:LCA","4383":"flow:inlet_LCA:LCA","4384":"flow:inlet_LCA:LCA","4385":"flow:inlet_LCA:LCA","4386":"flow:inlet_LCA:LCA","4387":"flow:inlet_LCA:LCA","4388":"flow:inlet_LCA:LCA","4389":"flow:inlet_LCA:LCA","4390":"flow:inlet_LCA:LCA","4391":"flow:inlet_LCA:LCA","4392":"flow:inlet_LCA:LCA","4393":"flow:inlet_LCA:LCA","4394":"flow:inlet_LCA:LCA","4395":"flow:inlet_LCA:LCA","4396":"flow:inlet_LCA:LCA","4397":"flow:inlet_LCA:LCA","4398":"flow:inlet_LCA:LCA","4399":"flow:inlet_LCA:LCA","4400":"flow:inlet_LCA:LCA","4401":"flow:inlet_LCA:LCA","4402":"flow:inlet_LCA:LCA","4403":"flow:inlet_LCA:LCA","4404":"flow:inlet_LCA:LCA","4405":"flow:inlet_LCA:LCA","4406":"flow:inlet_LCA:LCA","4407":"flow:inlet_LCA:LCA","4408":"flow:inlet_LCA:LCA","4409":"flow:inlet_LCA:LCA","4410":"flow:inlet_LCA:LCA","4411":"flow:inlet_LCA:LCA","4412":"flow:inlet_LCA:LCA","4413":"flow:inlet_LCA:LCA","4414":"flow:inlet_LCA:LCA","4415":"flow:inlet_LCA:LCA","4416":"flow:inlet_LCA:LCA","4417":"flow:inlet_LCA:LCA","4418":"flow:inlet_LCA:LCA","4419":"flow:inlet_LCA:LCA","4420":"flow:inlet_LCA:LCA","4421":"flow:inlet_LCA:LCA","4422":"flow:inlet_LCA:LCA","4423":"flow:inlet_LCA:LCA","4424":"flow:inlet_LCA:LCA","4425":"flow:inlet_LCA:LCA","4426":"flow:inlet_LCA:LCA","4427":"flow:inlet_LCA:LCA","4428":"flow:inlet_LCA:LCA","4429":"flow:inlet_LCA:LCA","4430":"flow:inlet_LCA:LCA","4431":"flow:inlet_LCA:LCA","4432":"flow:inlet_LCA:LCA","4433":"flow:inlet_LCA:LCA","4434":"flow:inlet_LCA:LCA","4435":"flow:inlet_LCA:LCA","4436":"flow:inlet_LCA:LCA","4437":"flow:inlet_LCA:LCA","4438":"flow:inlet_LCA:LCA","4439":"flow:inlet_LCA:LCA","4440":"flow:inlet_LCA:LCA","4441":"flow:inlet_LCA:LCA","4442":"flow:inlet_LCA:LCA","4443":"flow:inlet_LCA:LCA","4444":"flow:inlet_LCA:LCA","4445":"flow:inlet_LCA:LCA","4446":"flow:inlet_LCA:LCA","4447":"flow:inlet_LCA:LCA","4448":"flow:inlet_LCA:LCA","4449":"flow:inlet_LCA:LCA","4450":"flow:inlet_LCA:LCA","4451":"flow:inlet_LCA:LCA","4452":"flow:inlet_LCA:LCA","4453":"flow:inlet_LCA:LCA","4454":"flow:inlet_LCA:LCA","4455":"flow:inlet_LCA:LCA","4456":"flow:inlet_LCA:LCA","4457":"flow:inlet_LCA:LCA","4458":"flow:inlet_LCA:LCA","4459":"flow:inlet_LCA:LCA","4460":"flow:inlet_LCA:LCA","4461":"flow:inlet_LCA:LCA","4462":"flow:inlet_LCA:LCA","4463":"flow:inlet_LCA:LCA","4464":"flow:inlet_LCA:LCA","4465":"flow:inlet_LCA:LCA","4466":"flow:inlet_LCA:LCA","4467":"flow:inlet_LCA:LCA","4468":"flow:inlet_LCA:LCA","4469":"flow:inlet_LCA:LCA","4470":"flow:inlet_LCA:LCA","4471":"flow:inlet_LCA:LCA","4472":"flow:inlet_LCA:LCA","4473":"flow:inlet_LCA:LCA","4474":"flow:inlet_LCA:LCA","4475":"flow:inlet_LCA:LCA","4476":"flow:inlet_LCA:LCA","4477":"flow:inlet_LCA:LCA","4478":"flow:inlet_LCA:LCA","4479":"flow:inlet_LCA:LCA","4480":"flow:inlet_LCA:LCA","4481":"flow:inlet_LCA:LCA","4482":"flow:inlet_LCA:LCA","4483":"flow:inlet_LCA:LCA","4484":"flow:inlet_LCA:LCA","4485":"flow:inlet_LCA:LCA","4486":"flow:inlet_LCA:LCA","4487":"flow:inlet_LCA:LCA","4488":"flow:inlet_LCA:LCA","4489":"flow:inlet_LCA:LCA","4490":"flow:inlet_LCA:LCA","4491":"flow:inlet_LCA:LCA","4492":"flow:inlet_LCA:LCA","4493":"flow:inlet_LCA:LCA","4494":"flow:inlet_LCA:LCA","4495":"flow:inlet_LCA:LCA","4496":"flow:inlet_LCA:LCA","4497":"flow:inlet_LCA:LCA","4498":"flow:inlet_LCA:LCA","4499":"flow:inlet_LCA:LCA","4500":"flow:inlet_LCA:LCA","4501":"flow:inlet_LCA:LCA","4502":"flow:inlet_LCA:LCA","4503":"flow:inlet_LCA:LCA","4504":"flow:inlet_LCA:LCA","4505":"flow:inlet_LCA:LCA","4506":"flow:inlet_LCA:LCA","4507":"flow:inlet_LCA:LCA","4508":"flow:inlet_LCA:LCA","4509":"flow:inlet_LCA:LCA","4510":"flow:inlet_LCA:LCA","4511":"flow:inlet_LCA:LCA","4512":"flow:inlet_LCA:LCA","4513":"flow:inlet_LCA:LCA","4514":"flow:inlet_LCA:LCA","4515":"flow:inlet_LCA:LCA","4516":"flow:inlet_LCA:LCA","4517":"flow:inlet_LCA:LCA","4518":"flow:inlet_LCA:LCA","4519":"flow:inlet_LCA:LCA","4520":"flow:inlet_LCA:LCA","4521":"flow:inlet_LCA:LCA","4522":"flow:inlet_LCA:LCA","4523":"flow:inlet_LCA:LCA","4524":"flow:inlet_LCA:LCA","4525":"flow:inlet_LCA:LCA","4526":"flow:inlet_LCA:LCA","4527":"flow:inlet_LCA:LCA","4528":"flow:inlet_LCA:LCA","4529":"flow:inlet_LCA:LCA","4530":"flow:inlet_LCA:LCA","4531":"flow:inlet_LCA:LCA","4532":"flow:inlet_LCA:LCA","4533":"flow:inlet_LCA:LCA","4534":"flow:inlet_LCA:LCA","4535":"flow:inlet_LCA:LCA","4536":"flow:inlet_LCA:LCA","4537":"flow:inlet_LCA:LCA","4538":"flow:inlet_LCA:LCA","4539":"flow:inlet_LCA:LCA","4540":"flow:inlet_LCA:LCA","4541":"flow:inlet_LCA:LCA","4542":"flow:inlet_LCA:LCA","4543":"flow:inlet_LCA:LCA","4544":"flow:inlet_LCA:LCA","4545":"flow:inlet_LCA:LCA","4546":"flow:inlet_LCA:LCA","4547":"flow:inlet_LCA:LCA","4548":"flow:inlet_LCA:LCA","4549":"flow:inlet_LCA:LCA","4550":"flow:inlet_LCA:LCA","4551":"flow:inlet_LCA:LCA","4552":"flow:inlet_LCA:LCA","4553":"flow:inlet_LCA:LCA","4554":"flow:inlet_LCA:LCA","4555":"flow:inlet_LCA:LCA","4556":"flow:inlet_LCA:LCA","4557":"flow:inlet_LCA:LCA","4558":"flow:inlet_LCA:LCA","4559":"flow:inlet_LCA:LCA","4560":"flow:inlet_LCA:LCA","4561":"flow:inlet_LCA:LCA","4562":"flow:inlet_LCA:LCA","4563":"flow:inlet_LCA:LCA","4564":"flow:inlet_LCA:LCA","4565":"flow:inlet_LCA:LCA","4566":"flow:inlet_LCA:LCA","4567":"flow:inlet_LCA:LCA","4568":"flow:inlet_LCA:LCA","4569":"flow:inlet_LCA:LCA","4570":"flow:inlet_LCA:LCA","4571":"flow:inlet_LCA:LCA","4572":"flow:inlet_LCA:LCA","4573":"flow:inlet_LCA:LCA","4574":"flow:inlet_LCA:LCA","4575":"flow:inlet_LCA:LCA","4576":"flow:inlet_LCA:LCA","4577":"flow:inlet_LCA:LCA","4578":"flow:inlet_LCA:LCA","4579":"flow:inlet_LCA:LCA","4580":"flow:inlet_LCA:LCA","4581":"flow:inlet_LCA:LCA","4582":"flow:inlet_LCA:LCA","4583":"flow:inlet_LCA:LCA","4584":"flow:inlet_LCA:LCA","4585":"flow:inlet_LCA:LCA","4586":"flow:inlet_LCA:LCA","4587":"flow:inlet_LCA:LCA","4588":"flow:inlet_LCA:LCA","4589":"flow:inlet_LCA:LCA","4590":"flow:inlet_LCA:LCA","4591":"flow:inlet_LCA:LCA","4592":"flow:inlet_LCA:LCA","4593":"flow:inlet_LCA:LCA","4594":"flow:inlet_LCA:LCA","4595":"flow:inlet_LCA:LCA","4596":"flow:inlet_LCA:LCA","4597":"flow:inlet_LCA:LCA","4598":"flow:inlet_LCA:LCA","4599":"flow:inlet_LCA:LCA","4600":"flow:inlet_LCA:LCA","4601":"flow:inlet_LCA:LCA","4602":"flow:inlet_LCA:LCA","4603":"flow:inlet_LCA:LCA","4604":"flow:inlet_LCA:LCA","4605":"flow:inlet_LCA:LCA","4606":"flow:inlet_LCA:LCA","4607":"flow:inlet_LCA:LCA","4608":"flow:inlet_LCA:LCA","4609":"flow:inlet_LCA:LCA","4610":"flow:inlet_LCA:LCA","4611":"flow:inlet_LCA:LCA","4612":"flow:inlet_LCA:LCA","4613":"flow:inlet_LCA:LCA","4614":"flow:inlet_LCA:LCA","4615":"flow:inlet_LCA:LCA","4616":"flow:inlet_LCA:LCA","4617":"flow:inlet_LCA:LCA","4618":"flow:inlet_LCA:LCA","4619":"flow:inlet_LCA:LCA","4620":"flow:inlet_LCA:LCA","4621":"flow:inlet_LCA:LCA","4622":"flow:inlet_LCA:LCA","4623":"flow:inlet_LCA:LCA","4624":"flow:inlet_LCA:LCA","4625":"flow:inlet_LCA:LCA","4626":"flow:inlet_LCA:LCA","4627":"flow:inlet_LCA:LCA","4628":"flow:inlet_LCA:LCA","4629":"flow:inlet_LCA:LCA","4630":"flow:inlet_LCA:LCA","4631":"flow:inlet_LCA:LCA","4632":"flow:inlet_LCA:LCA","4633":"flow:inlet_LCA:LCA","4634":"flow:inlet_LCA:LCA","4635":"flow:inlet_LCA:LCA","4636":"flow:inlet_LCA:LCA","4637":"flow:inlet_LCA:LCA","4638":"flow:inlet_LCA:LCA","4639":"flow:inlet_LCA:LCA","4640":"flow:inlet_LCA:LCA","4641":"flow:inlet_LCA:LCA","4642":"flow:inlet_LCA:LCA","4643":"flow:inlet_LCA:LCA","4644":"flow:inlet_LCA:LCA","4645":"flow:inlet_LCA:LCA","4646":"flow:inlet_LCA:LCA","4647":"flow:inlet_LCA:LCA","4648":"flow:inlet_LCA:LCA","4649":"flow:inlet_LCA:LCA","4650":"flow:inlet_LCA:LCA","4651":"flow:inlet_LCA:LCA","4652":"flow:inlet_LCA:LCA","4653":"flow:inlet_LCA:LCA","4654":"flow:inlet_LCA:LCA","4655":"flow:inlet_LCA:LCA","4656":"flow:inlet_LCA:LCA","4657":"flow:inlet_LCA:LCA","4658":"flow:inlet_LCA:LCA","4659":"flow:inlet_LCA:LCA","4660":"flow:inlet_LCA:LCA","4661":"flow:inlet_LCA:LCA","4662":"flow:inlet_LCA:LCA","4663":"flow:inlet_LCA:LCA","4664":"flow:inlet_LCA:LCA","4665":"flow:inlet_LCA:LCA","4666":"flow:inlet_LCA:LCA","4667":"flow:inlet_LCA:LCA","4668":"flow:inlet_LCA:LCA","4669":"flow:inlet_LCA:LCA","4670":"flow:inlet_LCA:LCA","4671":"flow:inlet_LCA:LCA","4672":"flow:inlet_LCA:LCA","4673":"flow:inlet_LCA:LCA","4674":"flow:inlet_LCA:LCA","4675":"flow:inlet_LCA:LCA","4676":"flow:inlet_LCA:LCA","4677":"flow:inlet_LCA:LCA","4678":"flow:inlet_LCA:LCA","4679":"flow:inlet_LCA:LCA","4680":"flow:inlet_LCA:LCA","4681":"flow:inlet_LCA:LCA","4682":"flow:inlet_LCA:LCA","4683":"flow:inlet_LCA:LCA","4684":"flow:inlet_LCA:LCA","4685":"flow:inlet_LCA:LCA","4686":"flow:inlet_LCA:LCA","4687":"flow:inlet_LCA:LCA","4688":"flow:inlet_LCA:LCA","4689":"flow:inlet_LCA:LCA","4690":"flow:inlet_LCA:LCA","4691":"flow:inlet_LCA:LCA","4692":"flow:inlet_LCA:LCA","4693":"flow:inlet_LCA:LCA","4694":"flow:inlet_LCA:LCA","4695":"flow:inlet_LCA:LCA","4696":"flow:inlet_LCA:LCA","4697":"flow:inlet_LCA:LCA","4698":"flow:inlet_LCA:LCA","4699":"flow:inlet_LCA:LCA","4700":"flow:inlet_LCA:LCA","4701":"flow:inlet_LCA:LCA","4702":"flow:inlet_LCA:LCA","4703":"flow:inlet_LCA:LCA","4704":"flow:inlet_LCA:LCA","4705":"flow:inlet_LCA:LCA","4706":"flow:inlet_LCA:LCA","4707":"flow:inlet_LCA:LCA","4708":"flow:inlet_LCA:LCA","4709":"flow:inlet_LCA:LCA","4710":"flow:inlet_LCA:LCA","4711":"flow:inlet_LCA:LCA","4712":"flow:inlet_LCA:LCA","4713":"flow:inlet_LCA:LCA","4714":"flow:inlet_LCA:LCA","4715":"flow:inlet_LCA:LCA","4716":"flow:inlet_LCA:LCA","4717":"flow:inlet_LCA:LCA","4718":"flow:inlet_LCA:LCA","4719":"flow:inlet_LCA:LCA","4720":"flow:inlet_LCA:LCA","4721":"flow:inlet_LCA:LCA","4722":"flow:inlet_LCA:LCA","4723":"flow:inlet_LCA:LCA","4724":"flow:inlet_LCA:LCA","4725":"flow:inlet_LCA:LCA","4726":"flow:inlet_LCA:LCA","4727":"flow:inlet_LCA:LCA","4728":"flow:inlet_LCA:LCA","4729":"flow:inlet_LCA:LCA","4730":"flow:inlet_LCA:LCA","4731":"flow:inlet_LCA:LCA","4732":"flow:inlet_LCA:LCA","4733":"flow:inlet_LCA:LCA","4734":"flow:inlet_LCA:LCA","4735":"flow:inlet_LCA:LCA","4736":"flow:inlet_LCA:LCA","4737":"flow:inlet_LCA:LCA","4738":"flow:inlet_LCA:LCA","4739":"flow:inlet_LCA:LCA","4740":"flow:inlet_LCA:LCA","4741":"flow:inlet_LCA:LCA","4742":"flow:inlet_LCA:LCA","4743":"flow:inlet_LCA:LCA","4744":"flow:inlet_LCA:LCA","4745":"flow:inlet_LCA:LCA","4746":"flow:inlet_LCA:LCA","4747":"flow:inlet_LCA:LCA","4748":"flow:inlet_LCA:LCA","4749":"flow:inlet_LCA:LCA","4750":"flow:inlet_LCA:LCA","4751":"flow:inlet_LCA:LCA","4752":"flow:inlet_LCA:LCA","4753":"flow:inlet_LCA:LCA","4754":"flow:inlet_LCA:LCA","4755":"flow:inlet_LCA:LCA","4756":"flow:inlet_LCA:LCA","4757":"flow:inlet_LCA:LCA","4758":"flow:inlet_LCA:LCA","4759":"flow:inlet_LCA:LCA","4760":"flow:inlet_LCA:LCA","4761":"flow:inlet_LCA:LCA","4762":"flow:inlet_LCA:LCA","4763":"flow:inlet_LCA:LCA","4764":"flow:inlet_LCA:LCA","4765":"flow:inlet_LCA:LCA","4766":"flow:inlet_LCA:LCA","4767":"flow:inlet_LCA:LCA","4768":"flow:inlet_LCA:LCA","4769":"flow:inlet_LCA:LCA","4770":"flow:inlet_LCA:LCA","4771":"flow:inlet_LCA:LCA","4772":"flow:inlet_LCA:LCA","4773":"flow:inlet_LCA:LCA","4774":"flow:inlet_LCA:LCA","4775":"flow:inlet_LCA:LCA","4776":"flow:inlet_LCA:LCA","4777":"flow:inlet_LCA:LCA","4778":"flow:inlet_LCA:LCA","4779":"flow:inlet_LCA:LCA","4780":"flow:inlet_LCA:LCA","4781":"flow:inlet_LCA:LCA","4782":"flow:inlet_LCA:LCA","4783":"flow:inlet_LCA:LCA","4784":"flow:inlet_LCA:LCA","4785":"flow:inlet_LCA:LCA","4786":"flow:inlet_LCA:LCA","4787":"flow:inlet_LCA:LCA","4788":"flow:inlet_LCA:LCA","4789":"flow:inlet_LCA:LCA","4790":"flow:inlet_LCA:LCA","4791":"flow:inlet_LCA:LCA","4792":"flow:inlet_LCA:LCA","4793":"flow:inlet_LCA:LCA","4794":"flow:inlet_LCA:LCA","4795":"flow:inlet_LCA:LCA","4796":"flow:inlet_LCA:LCA","4797":"flow:inlet_LCA:LCA","4798":"flow:inlet_LCA:LCA","4799":"flow:inlet_LCA:LCA","4800":"flow:inlet_LCA:LCA","4801":"flow:inlet_LCA:LCA","4802":"flow:inlet_LCA:LCA","4803":"flow:inlet_LCA:LCA","4804":"flow:inlet_LCA:LCA","4805":"flow:inlet_LCA:LCA","4806":"flow:inlet_LCA:LCA","4807":"flow:inlet_LCA:LCA","4808":"flow:inlet_LCA:LCA","4809":"flow:inlet_LCA:LCA","4810":"flow:inlet_LCA:LCA","4811":"flow:inlet_LCA:LCA","4812":"flow:inlet_LCA:LCA","4813":"flow:inlet_LCA:LCA","4814":"flow:inlet_LCA:LCA","4815":"flow:inlet_LCA:LCA","4816":"flow:inlet_LCA:LCA","4817":"flow:inlet_LCA:LCA","4818":"flow:inlet_LCA:LCA","4819":"flow:inlet_LCA:LCA","4820":"flow:inlet_LCA:LCA","4821":"flow:inlet_LCA:LCA","4822":"flow:inlet_LCA:LCA","4823":"flow:inlet_LCA:LCA","4824":"flow:inlet_LCA:LCA","4825":"flow:inlet_LCA:LCA","4826":"flow:inlet_LCA:LCA","4827":"flow:inlet_LCA:LCA","4828":"flow:inlet_LCA:LCA","4829":"flow:inlet_LCA:LCA","4830":"flow:inlet_LCA:LCA","4831":"flow:inlet_LCA:LCA","4832":"flow:inlet_LCA:LCA","4833":"flow:inlet_LCA:LCA","4834":"flow:inlet_LCA:LCA","4835":"flow:inlet_LCA:LCA","4836":"flow:inlet_LCA:LCA","4837":"flow:inlet_LCA:LCA","4838":"flow:inlet_LCA:LCA","4839":"flow:inlet_LCA:LCA","4840":"flow:inlet_LCA:LCA","4841":"flow:inlet_LCA:LCA","4842":"flow:inlet_LCA:LCA","4843":"flow:inlet_LCA:LCA","4844":"flow:inlet_LCA:LCA","4845":"flow:inlet_LCA:LCA","4846":"flow:inlet_LCA:LCA","4847":"flow:inlet_LCA:LCA","4848":"flow:inlet_LCA:LCA","4849":"flow:inlet_LCA:LCA","4850":"flow:inlet_LCA:LCA","4851":"flow:inlet_LCA:LCA","4852":"flow:inlet_LCA:LCA","4853":"flow:inlet_LCA:LCA","4854":"flow:inlet_LCA:LCA","4855":"flow:inlet_LCA:LCA","4856":"flow:inlet_LCA:LCA","4857":"flow:inlet_LCA:LCA","4858":"flow:inlet_LCA:LCA","4859":"flow:inlet_LCA:LCA","4860":"flow:inlet_LCA:LCA","4861":"flow:inlet_LCA:LCA","4862":"flow:inlet_LCA:LCA","4863":"flow:inlet_LCA:LCA","4864":"flow:inlet_LCA:LCA","4865":"flow:inlet_LCA:LCA","4866":"flow:inlet_LCA:LCA","4867":"flow:inlet_LCA:LCA","4868":"flow:inlet_LCA:LCA","4869":"flow:inlet_LCA:LCA","4870":"flow:inlet_LCA:LCA","4871":"flow:inlet_LCA:LCA","4872":"flow:inlet_LCA:LCA","4873":"flow:inlet_LCA:LCA","4874":"flow:inlet_LCA:LCA","4875":"flow:inlet_LCA:LCA","4876":"flow:inlet_LCA:LCA","4877":"flow:inlet_LCA:LCA","4878":"flow:inlet_LCA:LCA","4879":"flow:inlet_LCA:LCA","4880":"flow:inlet_LCA:LCA","4881":"flow:inlet_LCA:LCA","4882":"flow:inlet_LCA:LCA","4883":"flow:inlet_LCA:LCA","4884":"flow:inlet_LCA:LCA","4885":"flow:inlet_LCA:LCA","4886":"flow:inlet_LCA:LCA","4887":"flow:inlet_LCA:LCA","4888":"flow:inlet_LCA:LCA","4889":"flow:inlet_LCA:LCA","4890":"flow:inlet_LCA:LCA","4891":"flow:inlet_LCA:LCA","4892":"flow:inlet_LCA:LCA","4893":"flow:inlet_LCA:LCA","4894":"flow:inlet_LCA:LCA","4895":"flow:inlet_LCA:LCA","4896":"flow:inlet_LCA:LCA","4897":"flow:inlet_LCA:LCA","4898":"flow:inlet_LCA:LCA","4899":"flow:inlet_LCA:LCA","4900":"flow:inlet_LCA:LCA","4901":"flow:inlet_LCA:LCA","4902":"flow:inlet_LCA:LCA","4903":"flow:inlet_LCA:LCA","4904":"flow:inlet_LCA:LCA","4905":"flow:inlet_LCA:LCA","4906":"flow:inlet_LCA:LCA","4907":"flow:inlet_LCA:LCA","4908":"flow:inlet_LCA:LCA","4909":"flow:inlet_LCA:LCA","4910":"flow:inlet_LCA:LCA","4911":"flow:inlet_LCA:LCA","4912":"flow:inlet_LCA:LCA","4913":"flow:inlet_LCA:LCA","4914":"flow:inlet_LCA:LCA","4915":"flow:inlet_LCA:LCA","4916":"flow:inlet_LCA:LCA","4917":"flow:inlet_LCA:LCA","4918":"flow:inlet_LCA:LCA","4919":"flow:inlet_LCA:LCA","4920":"flow:inlet_LCA:LCA","4921":"flow:inlet_LCA:LCA","4922":"flow:inlet_LCA:LCA","4923":"flow:inlet_LCA:LCA","4924":"flow:inlet_LCA:LCA","4925":"flow:inlet_LCA:LCA","4926":"flow:inlet_LCA:LCA","4927":"flow:inlet_LCA:LCA","4928":"flow:inlet_LCA:LCA","4929":"flow:inlet_LCA:LCA","4930":"flow:inlet_LCA:LCA","4931":"flow:inlet_LCA:LCA","4932":"flow:inlet_LCA:LCA","4933":"flow:inlet_LCA:LCA","4934":"flow:inlet_LCA:LCA","4935":"flow:inlet_LCA:LCA","4936":"flow:inlet_LCA:LCA","4937":"flow:inlet_LCA:LCA","4938":"flow:inlet_LCA:LCA","4939":"flow:inlet_LCA:LCA","4940":"flow:inlet_LCA:LCA","4941":"flow:inlet_LCA:LCA","4942":"flow:inlet_LCA:LCA","4943":"flow:inlet_LCA:LCA","4944":"flow:inlet_LCA:LCA","4945":"flow:inlet_LCA:LCA","4946":"flow:inlet_LCA:LCA","4947":"flow:inlet_LCA:LCA","4948":"flow:inlet_LCA:LCA","4949":"flow:inlet_LCA:LCA","4950":"flow:inlet_LCA:LCA","4951":"flow:inlet_LCA:LCA","4952":"flow:inlet_LCA:LCA","4953":"flow:inlet_LCA:LCA","4954":"flow:inlet_LCA:LCA","4955":"flow:inlet_LCA:LCA","4956":"flow:inlet_LCA:LCA","4957":"flow:inlet_LCA:LCA","4958":"flow:inlet_LCA:LCA","4959":"flow:inlet_LCA:LCA","4960":"flow:inlet_LCA:LCA","4961":"flow:inlet_LCA:LCA","4962":"flow:inlet_LCA:LCA","4963":"flow:inlet_LCA:LCA","4964":"flow:inlet_LCA:LCA","4965":"flow:inlet_LCA:LCA","4966":"flow:inlet_LCA:LCA","4967":"flow:inlet_LCA:LCA","4968":"flow:inlet_LCA:LCA","4969":"flow:inlet_LCA:LCA","4970":"flow:inlet_LCA:LCA","4971":"flow:inlet_LCA:LCA","4972":"flow:inlet_LCA:LCA","4973":"flow:inlet_LCA:LCA","4974":"flow:inlet_LCA:LCA","4975":"flow:inlet_LCA:LCA","4976":"flow:inlet_LCA:LCA","4977":"flow:inlet_LCA:LCA","4978":"flow:inlet_LCA:LCA","4979":"flow:inlet_LCA:LCA","4980":"flow:inlet_LCA:LCA","4981":"flow:inlet_LCA:LCA","4982":"flow:inlet_LCA:LCA","4983":"flow:inlet_LCA:LCA","4984":"flow:inlet_LCA:LCA","4985":"flow:inlet_LCA:LCA","4986":"flow:inlet_LCA:LCA","4987":"flow:inlet_LCA:LCA","4988":"flow:inlet_LCA:LCA","4989":"flow:inlet_LCA:LCA","4990":"flow:inlet_LCA:LCA","4991":"flow:inlet_LCA:LCA","4992":"flow:inlet_LCA:LCA","4993":"flow:inlet_LCA:LCA","4994":"flow:inlet_LCA:LCA","4995":"flow:inlet_LCA:LCA","4996":"flow:inlet_LCA:LCA","4997":"flow:inlet_LCA:LCA","4998":"flow:inlet_LCA:LCA","4999":"flow:inlet_LCA:LCA","5000":"pressure:inlet_LCA:LCA","5001":"pressure:inlet_LCA:LCA","5002":"pressure:inlet_LCA:LCA","5003":"pressure:inlet_LCA:LCA","5004":"pressure:inlet_LCA:LCA","5005":"pressure:inlet_LCA:LCA","5006":"pressure:inlet_LCA:LCA","5007":"pressure:inlet_LCA:LCA","5008":"pressure:inlet_LCA:LCA","5009":"pressure:inlet_LCA:LCA","5010":"pressure:inlet_LCA:LCA","5011":"pressure:inlet_LCA:LCA","5012":"pressure:inlet_LCA:LCA","5013":"pressure:inlet_LCA:LCA","5014":"pressure:inlet_LCA:LCA","5015":"pressure:inlet_LCA:LCA","5016":"pressure:inlet_LCA:LCA","5017":"pressure:inlet_LCA:LCA","5018":"pressure:inlet_LCA:LCA","5019":"pressure:inlet_LCA:LCA","5020":"pressure:inlet_LCA:LCA","5021":"pressure:inlet_LCA:LCA","5022":"pressure:inlet_LCA:LCA","5023":"pressure:inlet_LCA:LCA","5024":"pressure:inlet_LCA:LCA","5025":"pressure:inlet_LCA:LCA","5026":"pressure:inlet_LCA:LCA","5027":"pressure:inlet_LCA:LCA","5028":"pressure:inlet_LCA:LCA","5029":"pressure:inlet_LCA:LCA","5030":"pressure:inlet_LCA:LCA","5031":"pressure:inlet_LCA:LCA","5032":"pressure:inlet_LCA:LCA","5033":"pressure:inlet_LCA:LCA","5034":"pressure:inlet_LCA:LCA","5035":"pressure:inlet_LCA:LCA","5036":"pressure:inlet_LCA:LCA","5037":"pressure:inlet_LCA:LCA","5038":"pressure:inlet_LCA:LCA","5039":"pressure:inlet_LCA:LCA","5040":"pressure:inlet_LCA:LCA","5041":"pressure:inlet_LCA:LCA","5042":"pressure:inlet_LCA:LCA","5043":"pressure:inlet_LCA:LCA","5044":"pressure:inlet_LCA:LCA","5045":"pressure:inlet_LCA:LCA","5046":"pressure:inlet_LCA:LCA","5047":"pressure:inlet_LCA:LCA","5048":"pressure:inlet_LCA:LCA","5049":"pressure:inlet_LCA:LCA","5050":"pressure:inlet_LCA:LCA","5051":"pressure:inlet_LCA:LCA","5052":"pressure:inlet_LCA:LCA","5053":"pressure:inlet_LCA:LCA","5054":"pressure:inlet_LCA:LCA","5055":"pressure:inlet_LCA:LCA","5056":"pressure:inlet_LCA:LCA","5057":"pressure:inlet_LCA:LCA","5058":"pressure:inlet_LCA:LCA","5059":"pressure:inlet_LCA:LCA","5060":"pressure:inlet_LCA:LCA","5061":"pressure:inlet_LCA:LCA","5062":"pressure:inlet_LCA:LCA","5063":"pressure:inlet_LCA:LCA","5064":"pressure:inlet_LCA:LCA","5065":"pressure:inlet_LCA:LCA","5066":"pressure:inlet_LCA:LCA","5067":"pressure:inlet_LCA:LCA","5068":"pressure:inlet_LCA:LCA","5069":"pressure:inlet_LCA:LCA","5070":"pressure:inlet_LCA:LCA","5071":"pressure:inlet_LCA:LCA","5072":"pressure:inlet_LCA:LCA","5073":"pressure:inlet_LCA:LCA","5074":"pressure:inlet_LCA:LCA","5075":"pressure:inlet_LCA:LCA","5076":"pressure:inlet_LCA:LCA","5077":"pressure:inlet_LCA:LCA","5078":"pressure:inlet_LCA:LCA","5079":"pressure:inlet_LCA:LCA","5080":"pressure:inlet_LCA:LCA","5081":"pressure:inlet_LCA:LCA","5082":"pressure:inlet_LCA:LCA","5083":"pressure:inlet_LCA:LCA","5084":"pressure:inlet_LCA:LCA","5085":"pressure:inlet_LCA:LCA","5086":"pressure:inlet_LCA:LCA","5087":"pressure:inlet_LCA:LCA","5088":"pressure:inlet_LCA:LCA","5089":"pressure:inlet_LCA:LCA","5090":"pressure:inlet_LCA:LCA","5091":"pressure:inlet_LCA:LCA","5092":"pressure:inlet_LCA:LCA","5093":"pressure:inlet_LCA:LCA","5094":"pressure:inlet_LCA:LCA","5095":"pressure:inlet_LCA:LCA","5096":"pressure:inlet_LCA:LCA","5097":"pressure:inlet_LCA:LCA","5098":"pressure:inlet_LCA:LCA","5099":"pressure:inlet_LCA:LCA","5100":"pressure:inlet_LCA:LCA","5101":"pressure:inlet_LCA:LCA","5102":"pressure:inlet_LCA:LCA","5103":"pressure:inlet_LCA:LCA","5104":"pressure:inlet_LCA:LCA","5105":"pressure:inlet_LCA:LCA","5106":"pressure:inlet_LCA:LCA","5107":"pressure:inlet_LCA:LCA","5108":"pressure:inlet_LCA:LCA","5109":"pressure:inlet_LCA:LCA","5110":"pressure:inlet_LCA:LCA","5111":"pressure:inlet_LCA:LCA","5112":"pressure:inlet_LCA:LCA","5113":"pressure:inlet_LCA:LCA","5114":"pressure:inlet_LCA:LCA","5115":"pressure:inlet_LCA:LCA","5116":"pressure:inlet_LCA:LCA","5117":"pressure:inlet_LCA:LCA","5118":"pressure:inlet_LCA:LCA","5119":"pressure:inlet_LCA:LCA","5120":"pressure:inlet_LCA:LCA","5121":"pressure:inlet_LCA:LCA","5122":"pressure:inlet_LCA:LCA","5123":"pressure:inlet_LCA:LCA","5124":"pressure:inlet_LCA:LCA","5125":"pressure:inlet_LCA:LCA","5126":"pressure:inlet_LCA:LCA","5127":"pressure:inlet_LCA:LCA","5128":"pressure:inlet_LCA:LCA","5129":"pressure:inlet_LCA:LCA","5130":"pressure:inlet_LCA:LCA","5131":"pressure:inlet_LCA:LCA","5132":"pressure:inlet_LCA:LCA","5133":"pressure:inlet_LCA:LCA","5134":"pressure:inlet_LCA:LCA","5135":"pressure:inlet_LCA:LCA","5136":"pressure:inlet_LCA:LCA","5137":"pressure:inlet_LCA:LCA","5138":"pressure:inlet_LCA:LCA","5139":"pressure:inlet_LCA:LCA","5140":"pressure:inlet_LCA:LCA","5141":"pressure:inlet_LCA:LCA","5142":"pressure:inlet_LCA:LCA","5143":"pressure:inlet_LCA:LCA","5144":"pressure:inlet_LCA:LCA","5145":"pressure:inlet_LCA:LCA","5146":"pressure:inlet_LCA:LCA","5147":"pressure:inlet_LCA:LCA","5148":"pressure:inlet_LCA:LCA","5149":"pressure:inlet_LCA:LCA","5150":"pressure:inlet_LCA:LCA","5151":"pressure:inlet_LCA:LCA","5152":"pressure:inlet_LCA:LCA","5153":"pressure:inlet_LCA:LCA","5154":"pressure:inlet_LCA:LCA","5155":"pressure:inlet_LCA:LCA","5156":"pressure:inlet_LCA:LCA","5157":"pressure:inlet_LCA:LCA","5158":"pressure:inlet_LCA:LCA","5159":"pressure:inlet_LCA:LCA","5160":"pressure:inlet_LCA:LCA","5161":"pressure:inlet_LCA:LCA","5162":"pressure:inlet_LCA:LCA","5163":"pressure:inlet_LCA:LCA","5164":"pressure:inlet_LCA:LCA","5165":"pressure:inlet_LCA:LCA","5166":"pressure:inlet_LCA:LCA","5167":"pressure:inlet_LCA:LCA","5168":"pressure:inlet_LCA:LCA","5169":"pressure:inlet_LCA:LCA","5170":"pressure:inlet_LCA:LCA","5171":"pressure:inlet_LCA:LCA","5172":"pressure:inlet_LCA:LCA","5173":"pressure:inlet_LCA:LCA","5174":"pressure:inlet_LCA:LCA","5175":"pressure:inlet_LCA:LCA","5176":"pressure:inlet_LCA:LCA","5177":"pressure:inlet_LCA:LCA","5178":"pressure:inlet_LCA:LCA","5179":"pressure:inlet_LCA:LCA","5180":"pressure:inlet_LCA:LCA","5181":"pressure:inlet_LCA:LCA","5182":"pressure:inlet_LCA:LCA","5183":"pressure:inlet_LCA:LCA","5184":"pressure:inlet_LCA:LCA","5185":"pressure:inlet_LCA:LCA","5186":"pressure:inlet_LCA:LCA","5187":"pressure:inlet_LCA:LCA","5188":"pressure:inlet_LCA:LCA","5189":"pressure:inlet_LCA:LCA","5190":"pressure:inlet_LCA:LCA","5191":"pressure:inlet_LCA:LCA","5192":"pressure:inlet_LCA:LCA","5193":"pressure:inlet_LCA:LCA","5194":"pressure:inlet_LCA:LCA","5195":"pressure:inlet_LCA:LCA","5196":"pressure:inlet_LCA:LCA","5197":"pressure:inlet_LCA:LCA","5198":"pressure:inlet_LCA:LCA","5199":"pressure:inlet_LCA:LCA","5200":"pressure:inlet_LCA:LCA","5201":"pressure:inlet_LCA:LCA","5202":"pressure:inlet_LCA:LCA","5203":"pressure:inlet_LCA:LCA","5204":"pressure:inlet_LCA:LCA","5205":"pressure:inlet_LCA:LCA","5206":"pressure:inlet_LCA:LCA","5207":"pressure:inlet_LCA:LCA","5208":"pressure:inlet_LCA:LCA","5209":"pressure:inlet_LCA:LCA","5210":"pressure:inlet_LCA:LCA","5211":"pressure:inlet_LCA:LCA","5212":"pressure:inlet_LCA:LCA","5213":"pressure:inlet_LCA:LCA","5214":"pressure:inlet_LCA:LCA","5215":"pressure:inlet_LCA:LCA","5216":"pressure:inlet_LCA:LCA","5217":"pressure:inlet_LCA:LCA","5218":"pressure:inlet_LCA:LCA","5219":"pressure:inlet_LCA:LCA","5220":"pressure:inlet_LCA:LCA","5221":"pressure:inlet_LCA:LCA","5222":"pressure:inlet_LCA:LCA","5223":"pressure:inlet_LCA:LCA","5224":"pressure:inlet_LCA:LCA","5225":"pressure:inlet_LCA:LCA","5226":"pressure:inlet_LCA:LCA","5227":"pressure:inlet_LCA:LCA","5228":"pressure:inlet_LCA:LCA","5229":"pressure:inlet_LCA:LCA","5230":"pressure:inlet_LCA:LCA","5231":"pressure:inlet_LCA:LCA","5232":"pressure:inlet_LCA:LCA","5233":"pressure:inlet_LCA:LCA","5234":"pressure:inlet_LCA:LCA","5235":"pressure:inlet_LCA:LCA","5236":"pressure:inlet_LCA:LCA","5237":"pressure:inlet_LCA:LCA","5238":"pressure:inlet_LCA:LCA","5239":"pressure:inlet_LCA:LCA","5240":"pressure:inlet_LCA:LCA","5241":"pressure:inlet_LCA:LCA","5242":"pressure:inlet_LCA:LCA","5243":"pressure:inlet_LCA:LCA","5244":"pressure:inlet_LCA:LCA","5245":"pressure:inlet_LCA:LCA","5246":"pressure:inlet_LCA:LCA","5247":"pressure:inlet_LCA:LCA","5248":"pressure:inlet_LCA:LCA","5249":"pressure:inlet_LCA:LCA","5250":"pressure:inlet_LCA:LCA","5251":"pressure:inlet_LCA:LCA","5252":"pressure:inlet_LCA:LCA","5253":"pressure:inlet_LCA:LCA","5254":"pressure:inlet_LCA:LCA","5255":"pressure:inlet_LCA:LCA","5256":"pressure:inlet_LCA:LCA","5257":"pressure:inlet_LCA:LCA","5258":"pressure:inlet_LCA:LCA","5259":"pressure:inlet_LCA:LCA","5260":"pressure:inlet_LCA:LCA","5261":"pressure:inlet_LCA:LCA","5262":"pressure:inlet_LCA:LCA","5263":"pressure:inlet_LCA:LCA","5264":"pressure:inlet_LCA:LCA","5265":"pressure:inlet_LCA:LCA","5266":"pressure:inlet_LCA:LCA","5267":"pressure:inlet_LCA:LCA","5268":"pressure:inlet_LCA:LCA","5269":"pressure:inlet_LCA:LCA","5270":"pressure:inlet_LCA:LCA","5271":"pressure:inlet_LCA:LCA","5272":"pressure:inlet_LCA:LCA","5273":"pressure:inlet_LCA:LCA","5274":"pressure:inlet_LCA:LCA","5275":"pressure:inlet_LCA:LCA","5276":"pressure:inlet_LCA:LCA","5277":"pressure:inlet_LCA:LCA","5278":"pressure:inlet_LCA:LCA","5279":"pressure:inlet_LCA:LCA","5280":"pressure:inlet_LCA:LCA","5281":"pressure:inlet_LCA:LCA","5282":"pressure:inlet_LCA:LCA","5283":"pressure:inlet_LCA:LCA","5284":"pressure:inlet_LCA:LCA","5285":"pressure:inlet_LCA:LCA","5286":"pressure:inlet_LCA:LCA","5287":"pressure:inlet_LCA:LCA","5288":"pressure:inlet_LCA:LCA","5289":"pressure:inlet_LCA:LCA","5290":"pressure:inlet_LCA:LCA","5291":"pressure:inlet_LCA:LCA","5292":"pressure:inlet_LCA:LCA","5293":"pressure:inlet_LCA:LCA","5294":"pressure:inlet_LCA:LCA","5295":"pressure:inlet_LCA:LCA","5296":"pressure:inlet_LCA:LCA","5297":"pressure:inlet_LCA:LCA","5298":"pressure:inlet_LCA:LCA","5299":"pressure:inlet_LCA:LCA","5300":"pressure:inlet_LCA:LCA","5301":"pressure:inlet_LCA:LCA","5302":"pressure:inlet_LCA:LCA","5303":"pressure:inlet_LCA:LCA","5304":"pressure:inlet_LCA:LCA","5305":"pressure:inlet_LCA:LCA","5306":"pressure:inlet_LCA:LCA","5307":"pressure:inlet_LCA:LCA","5308":"pressure:inlet_LCA:LCA","5309":"pressure:inlet_LCA:LCA","5310":"pressure:inlet_LCA:LCA","5311":"pressure:inlet_LCA:LCA","5312":"pressure:inlet_LCA:LCA","5313":"pressure:inlet_LCA:LCA","5314":"pressure:inlet_LCA:LCA","5315":"pressure:inlet_LCA:LCA","5316":"pressure:inlet_LCA:LCA","5317":"pressure:inlet_LCA:LCA","5318":"pressure:inlet_LCA:LCA","5319":"pressure:inlet_LCA:LCA","5320":"pressure:inlet_LCA:LCA","5321":"pressure:inlet_LCA:LCA","5322":"pressure:inlet_LCA:LCA","5323":"pressure:inlet_LCA:LCA","5324":"pressure:inlet_LCA:LCA","5325":"pressure:inlet_LCA:LCA","5326":"pressure:inlet_LCA:LCA","5327":"pressure:inlet_LCA:LCA","5328":"pressure:inlet_LCA:LCA","5329":"pressure:inlet_LCA:LCA","5330":"pressure:inlet_LCA:LCA","5331":"pressure:inlet_LCA:LCA","5332":"pressure:inlet_LCA:LCA","5333":"pressure:inlet_LCA:LCA","5334":"pressure:inlet_LCA:LCA","5335":"pressure:inlet_LCA:LCA","5336":"pressure:inlet_LCA:LCA","5337":"pressure:inlet_LCA:LCA","5338":"pressure:inlet_LCA:LCA","5339":"pressure:inlet_LCA:LCA","5340":"pressure:inlet_LCA:LCA","5341":"pressure:inlet_LCA:LCA","5342":"pressure:inlet_LCA:LCA","5343":"pressure:inlet_LCA:LCA","5344":"pressure:inlet_LCA:LCA","5345":"pressure:inlet_LCA:LCA","5346":"pressure:inlet_LCA:LCA","5347":"pressure:inlet_LCA:LCA","5348":"pressure:inlet_LCA:LCA","5349":"pressure:inlet_LCA:LCA","5350":"pressure:inlet_LCA:LCA","5351":"pressure:inlet_LCA:LCA","5352":"pressure:inlet_LCA:LCA","5353":"pressure:inlet_LCA:LCA","5354":"pressure:inlet_LCA:LCA","5355":"pressure:inlet_LCA:LCA","5356":"pressure:inlet_LCA:LCA","5357":"pressure:inlet_LCA:LCA","5358":"pressure:inlet_LCA:LCA","5359":"pressure:inlet_LCA:LCA","5360":"pressure:inlet_LCA:LCA","5361":"pressure:inlet_LCA:LCA","5362":"pressure:inlet_LCA:LCA","5363":"pressure:inlet_LCA:LCA","5364":"pressure:inlet_LCA:LCA","5365":"pressure:inlet_LCA:LCA","5366":"pressure:inlet_LCA:LCA","5367":"pressure:inlet_LCA:LCA","5368":"pressure:inlet_LCA:LCA","5369":"pressure:inlet_LCA:LCA","5370":"pressure:inlet_LCA:LCA","5371":"pressure:inlet_LCA:LCA","5372":"pressure:inlet_LCA:LCA","5373":"pressure:inlet_LCA:LCA","5374":"pressure:inlet_LCA:LCA","5375":"pressure:inlet_LCA:LCA","5376":"pressure:inlet_LCA:LCA","5377":"pressure:inlet_LCA:LCA","5378":"pressure:inlet_LCA:LCA","5379":"pressure:inlet_LCA:LCA","5380":"pressure:inlet_LCA:LCA","5381":"pressure:inlet_LCA:LCA","5382":"pressure:inlet_LCA:LCA","5383":"pressure:inlet_LCA:LCA","5384":"pressure:inlet_LCA:LCA","5385":"pressure:inlet_LCA:LCA","5386":"pressure:inlet_LCA:LCA","5387":"pressure:inlet_LCA:LCA","5388":"pressure:inlet_LCA:LCA","5389":"pressure:inlet_LCA:LCA","5390":"pressure:inlet_LCA:LCA","5391":"pressure:inlet_LCA:LCA","5392":"pressure:inlet_LCA:LCA","5393":"pressure:inlet_LCA:LCA","5394":"pressure:inlet_LCA:LCA","5395":"pressure:inlet_LCA:LCA","5396":"pressure:inlet_LCA:LCA","5397":"pressure:inlet_LCA:LCA","5398":"pressure:inlet_LCA:LCA","5399":"pressure:inlet_LCA:LCA","5400":"pressure:inlet_LCA:LCA","5401":"pressure:inlet_LCA:LCA","5402":"pressure:inlet_LCA:LCA","5403":"pressure:inlet_LCA:LCA","5404":"pressure:inlet_LCA:LCA","5405":"pressure:inlet_LCA:LCA","5406":"pressure:inlet_LCA:LCA","5407":"pressure:inlet_LCA:LCA","5408":"pressure:inlet_LCA:LCA","5409":"pressure:inlet_LCA:LCA","5410":"pressure:inlet_LCA:LCA","5411":"pressure:inlet_LCA:LCA","5412":"pressure:inlet_LCA:LCA","5413":"pressure:inlet_LCA:LCA","5414":"pressure:inlet_LCA:LCA","5415":"pressure:inlet_LCA:LCA","5416":"pressure:inlet_LCA:LCA","5417":"pressure:inlet_LCA:LCA","5418":"pressure:inlet_LCA:LCA","5419":"pressure:inlet_LCA:LCA","5420":"pressure:inlet_LCA:LCA","5421":"pressure:inlet_LCA:LCA","5422":"pressure:inlet_LCA:LCA","5423":"pressure:inlet_LCA:LCA","5424":"pressure:inlet_LCA:LCA","5425":"pressure:inlet_LCA:LCA","5426":"pressure:inlet_LCA:LCA","5427":"pressure:inlet_LCA:LCA","5428":"pressure:inlet_LCA:LCA","5429":"pressure:inlet_LCA:LCA","5430":"pressure:inlet_LCA:LCA","5431":"pressure:inlet_LCA:LCA","5432":"pressure:inlet_LCA:LCA","5433":"pressure:inlet_LCA:LCA","5434":"pressure:inlet_LCA:LCA","5435":"pressure:inlet_LCA:LCA","5436":"pressure:inlet_LCA:LCA","5437":"pressure:inlet_LCA:LCA","5438":"pressure:inlet_LCA:LCA","5439":"pressure:inlet_LCA:LCA","5440":"pressure:inlet_LCA:LCA","5441":"pressure:inlet_LCA:LCA","5442":"pressure:inlet_LCA:LCA","5443":"pressure:inlet_LCA:LCA","5444":"pressure:inlet_LCA:LCA","5445":"pressure:inlet_LCA:LCA","5446":"pressure:inlet_LCA:LCA","5447":"pressure:inlet_LCA:LCA","5448":"pressure:inlet_LCA:LCA","5449":"pressure:inlet_LCA:LCA","5450":"pressure:inlet_LCA:LCA","5451":"pressure:inlet_LCA:LCA","5452":"pressure:inlet_LCA:LCA","5453":"pressure:inlet_LCA:LCA","5454":"pressure:inlet_LCA:LCA","5455":"pressure:inlet_LCA:LCA","5456":"pressure:inlet_LCA:LCA","5457":"pressure:inlet_LCA:LCA","5458":"pressure:inlet_LCA:LCA","5459":"pressure:inlet_LCA:LCA","5460":"pressure:inlet_LCA:LCA","5461":"pressure:inlet_LCA:LCA","5462":"pressure:inlet_LCA:LCA","5463":"pressure:inlet_LCA:LCA","5464":"pressure:inlet_LCA:LCA","5465":"pressure:inlet_LCA:LCA","5466":"pressure:inlet_LCA:LCA","5467":"pressure:inlet_LCA:LCA","5468":"pressure:inlet_LCA:LCA","5469":"pressure:inlet_LCA:LCA","5470":"pressure:inlet_LCA:LCA","5471":"pressure:inlet_LCA:LCA","5472":"pressure:inlet_LCA:LCA","5473":"pressure:inlet_LCA:LCA","5474":"pressure:inlet_LCA:LCA","5475":"pressure:inlet_LCA:LCA","5476":"pressure:inlet_LCA:LCA","5477":"pressure:inlet_LCA:LCA","5478":"pressure:inlet_LCA:LCA","5479":"pressure:inlet_LCA:LCA","5480":"pressure:inlet_LCA:LCA","5481":"pressure:inlet_LCA:LCA","5482":"pressure:inlet_LCA:LCA","5483":"pressure:inlet_LCA:LCA","5484":"pressure:inlet_LCA:LCA","5485":"pressure:inlet_LCA:LCA","5486":"pressure:inlet_LCA:LCA","5487":"pressure:inlet_LCA:LCA","5488":"pressure:inlet_LCA:LCA","5489":"pressure:inlet_LCA:LCA","5490":"pressure:inlet_LCA:LCA","5491":"pressure:inlet_LCA:LCA","5492":"pressure:inlet_LCA:LCA","5493":"pressure:inlet_LCA:LCA","5494":"pressure:inlet_LCA:LCA","5495":"pressure:inlet_LCA:LCA","5496":"pressure:inlet_LCA:LCA","5497":"pressure:inlet_LCA:LCA","5498":"pressure:inlet_LCA:LCA","5499":"pressure:inlet_LCA:LCA","5500":"pressure:inlet_LCA:LCA","5501":"pressure:inlet_LCA:LCA","5502":"pressure:inlet_LCA:LCA","5503":"pressure:inlet_LCA:LCA","5504":"pressure:inlet_LCA:LCA","5505":"pressure:inlet_LCA:LCA","5506":"pressure:inlet_LCA:LCA","5507":"pressure:inlet_LCA:LCA","5508":"pressure:inlet_LCA:LCA","5509":"pressure:inlet_LCA:LCA","5510":"pressure:inlet_LCA:LCA","5511":"pressure:inlet_LCA:LCA","5512":"pressure:inlet_LCA:LCA","5513":"pressure:inlet_LCA:LCA","5514":"pressure:inlet_LCA:LCA","5515":"pressure:inlet_LCA:LCA","5516":"pressure:inlet_LCA:LCA","5517":"pressure:inlet_LCA:LCA","5518":"pressure:inlet_LCA:LCA","5519":"pressure:inlet_LCA:LCA","5520":"pressure:inlet_LCA:LCA","5521":"pressure:inlet_LCA:LCA","5522":"pressure:inlet_LCA:LCA","5523":"pressure:inlet_LCA:LCA","5524":"pressure:inlet_LCA:LCA","5525":"pressure:inlet_LCA:LCA","5526":"pressure:inlet_LCA:LCA","5527":"pressure:inlet_LCA:LCA","5528":"pressure:inlet_LCA:LCA","5529":"pressure:inlet_LCA:LCA","5530":"pressure:inlet_LCA:LCA","5531":"pressure:inlet_LCA:LCA","5532":"pressure:inlet_LCA:LCA","5533":"pressure:inlet_LCA:LCA","5534":"pressure:inlet_LCA:LCA","5535":"pressure:inlet_LCA:LCA","5536":"pressure:inlet_LCA:LCA","5537":"pressure:inlet_LCA:LCA","5538":"pressure:inlet_LCA:LCA","5539":"pressure:inlet_LCA:LCA","5540":"pressure:inlet_LCA:LCA","5541":"pressure:inlet_LCA:LCA","5542":"pressure:inlet_LCA:LCA","5543":"pressure:inlet_LCA:LCA","5544":"pressure:inlet_LCA:LCA","5545":"pressure:inlet_LCA:LCA","5546":"pressure:inlet_LCA:LCA","5547":"pressure:inlet_LCA:LCA","5548":"pressure:inlet_LCA:LCA","5549":"pressure:inlet_LCA:LCA","5550":"pressure:inlet_LCA:LCA","5551":"pressure:inlet_LCA:LCA","5552":"pressure:inlet_LCA:LCA","5553":"pressure:inlet_LCA:LCA","5554":"pressure:inlet_LCA:LCA","5555":"pressure:inlet_LCA:LCA","5556":"pressure:inlet_LCA:LCA","5557":"pressure:inlet_LCA:LCA","5558":"pressure:inlet_LCA:LCA","5559":"pressure:inlet_LCA:LCA","5560":"pressure:inlet_LCA:LCA","5561":"pressure:inlet_LCA:LCA","5562":"pressure:inlet_LCA:LCA","5563":"pressure:inlet_LCA:LCA","5564":"pressure:inlet_LCA:LCA","5565":"pressure:inlet_LCA:LCA","5566":"pressure:inlet_LCA:LCA","5567":"pressure:inlet_LCA:LCA","5568":"pressure:inlet_LCA:LCA","5569":"pressure:inlet_LCA:LCA","5570":"pressure:inlet_LCA:LCA","5571":"pressure:inlet_LCA:LCA","5572":"pressure:inlet_LCA:LCA","5573":"pressure:inlet_LCA:LCA","5574":"pressure:inlet_LCA:LCA","5575":"pressure:inlet_LCA:LCA","5576":"pressure:inlet_LCA:LCA","5577":"pressure:inlet_LCA:LCA","5578":"pressure:inlet_LCA:LCA","5579":"pressure:inlet_LCA:LCA","5580":"pressure:inlet_LCA:LCA","5581":"pressure:inlet_LCA:LCA","5582":"pressure:inlet_LCA:LCA","5583":"pressure:inlet_LCA:LCA","5584":"pressure:inlet_LCA:LCA","5585":"pressure:inlet_LCA:LCA","5586":"pressure:inlet_LCA:LCA","5587":"pressure:inlet_LCA:LCA","5588":"pressure:inlet_LCA:LCA","5589":"pressure:inlet_LCA:LCA","5590":"pressure:inlet_LCA:LCA","5591":"pressure:inlet_LCA:LCA","5592":"pressure:inlet_LCA:LCA","5593":"pressure:inlet_LCA:LCA","5594":"pressure:inlet_LCA:LCA","5595":"pressure:inlet_LCA:LCA","5596":"pressure:inlet_LCA:LCA","5597":"pressure:inlet_LCA:LCA","5598":"pressure:inlet_LCA:LCA","5599":"pressure:inlet_LCA:LCA","5600":"pressure:inlet_LCA:LCA","5601":"pressure:inlet_LCA:LCA","5602":"pressure:inlet_LCA:LCA","5603":"pressure:inlet_LCA:LCA","5604":"pressure:inlet_LCA:LCA","5605":"pressure:inlet_LCA:LCA","5606":"pressure:inlet_LCA:LCA","5607":"pressure:inlet_LCA:LCA","5608":"pressure:inlet_LCA:LCA","5609":"pressure:inlet_LCA:LCA","5610":"pressure:inlet_LCA:LCA","5611":"pressure:inlet_LCA:LCA","5612":"pressure:inlet_LCA:LCA","5613":"pressure:inlet_LCA:LCA","5614":"pressure:inlet_LCA:LCA","5615":"pressure:inlet_LCA:LCA","5616":"pressure:inlet_LCA:LCA","5617":"pressure:inlet_LCA:LCA","5618":"pressure:inlet_LCA:LCA","5619":"pressure:inlet_LCA:LCA","5620":"pressure:inlet_LCA:LCA","5621":"pressure:inlet_LCA:LCA","5622":"pressure:inlet_LCA:LCA","5623":"pressure:inlet_LCA:LCA","5624":"pressure:inlet_LCA:LCA","5625":"pressure:inlet_LCA:LCA","5626":"pressure:inlet_LCA:LCA","5627":"pressure:inlet_LCA:LCA","5628":"pressure:inlet_LCA:LCA","5629":"pressure:inlet_LCA:LCA","5630":"pressure:inlet_LCA:LCA","5631":"pressure:inlet_LCA:LCA","5632":"pressure:inlet_LCA:LCA","5633":"pressure:inlet_LCA:LCA","5634":"pressure:inlet_LCA:LCA","5635":"pressure:inlet_LCA:LCA","5636":"pressure:inlet_LCA:LCA","5637":"pressure:inlet_LCA:LCA","5638":"pressure:inlet_LCA:LCA","5639":"pressure:inlet_LCA:LCA","5640":"pressure:inlet_LCA:LCA","5641":"pressure:inlet_LCA:LCA","5642":"pressure:inlet_LCA:LCA","5643":"pressure:inlet_LCA:LCA","5644":"pressure:inlet_LCA:LCA","5645":"pressure:inlet_LCA:LCA","5646":"pressure:inlet_LCA:LCA","5647":"pressure:inlet_LCA:LCA","5648":"pressure:inlet_LCA:LCA","5649":"pressure:inlet_LCA:LCA","5650":"pressure:inlet_LCA:LCA","5651":"pressure:inlet_LCA:LCA","5652":"pressure:inlet_LCA:LCA","5653":"pressure:inlet_LCA:LCA","5654":"pressure:inlet_LCA:LCA","5655":"pressure:inlet_LCA:LCA","5656":"pressure:inlet_LCA:LCA","5657":"pressure:inlet_LCA:LCA","5658":"pressure:inlet_LCA:LCA","5659":"pressure:inlet_LCA:LCA","5660":"pressure:inlet_LCA:LCA","5661":"pressure:inlet_LCA:LCA","5662":"pressure:inlet_LCA:LCA","5663":"pressure:inlet_LCA:LCA","5664":"pressure:inlet_LCA:LCA","5665":"pressure:inlet_LCA:LCA","5666":"pressure:inlet_LCA:LCA","5667":"pressure:inlet_LCA:LCA","5668":"pressure:inlet_LCA:LCA","5669":"pressure:inlet_LCA:LCA","5670":"pressure:inlet_LCA:LCA","5671":"pressure:inlet_LCA:LCA","5672":"pressure:inlet_LCA:LCA","5673":"pressure:inlet_LCA:LCA","5674":"pressure:inlet_LCA:LCA","5675":"pressure:inlet_LCA:LCA","5676":"pressure:inlet_LCA:LCA","5677":"pressure:inlet_LCA:LCA","5678":"pressure:inlet_LCA:LCA","5679":"pressure:inlet_LCA:LCA","5680":"pressure:inlet_LCA:LCA","5681":"pressure:inlet_LCA:LCA","5682":"pressure:inlet_LCA:LCA","5683":"pressure:inlet_LCA:LCA","5684":"pressure:inlet_LCA:LCA","5685":"pressure:inlet_LCA:LCA","5686":"pressure:inlet_LCA:LCA","5687":"pressure:inlet_LCA:LCA","5688":"pressure:inlet_LCA:LCA","5689":"pressure:inlet_LCA:LCA","5690":"pressure:inlet_LCA:LCA","5691":"pressure:inlet_LCA:LCA","5692":"pressure:inlet_LCA:LCA","5693":"pressure:inlet_LCA:LCA","5694":"pressure:inlet_LCA:LCA","5695":"pressure:inlet_LCA:LCA","5696":"pressure:inlet_LCA:LCA","5697":"pressure:inlet_LCA:LCA","5698":"pressure:inlet_LCA:LCA","5699":"pressure:inlet_LCA:LCA","5700":"pressure:inlet_LCA:LCA","5701":"pressure:inlet_LCA:LCA","5702":"pressure:inlet_LCA:LCA","5703":"pressure:inlet_LCA:LCA","5704":"pressure:inlet_LCA:LCA","5705":"pressure:inlet_LCA:LCA","5706":"pressure:inlet_LCA:LCA","5707":"pressure:inlet_LCA:LCA","5708":"pressure:inlet_LCA:LCA","5709":"pressure:inlet_LCA:LCA","5710":"pressure:inlet_LCA:LCA","5711":"pressure:inlet_LCA:LCA","5712":"pressure:inlet_LCA:LCA","5713":"pressure:inlet_LCA:LCA","5714":"pressure:inlet_LCA:LCA","5715":"pressure:inlet_LCA:LCA","5716":"pressure:inlet_LCA:LCA","5717":"pressure:inlet_LCA:LCA","5718":"pressure:inlet_LCA:LCA","5719":"pressure:inlet_LCA:LCA","5720":"pressure:inlet_LCA:LCA","5721":"pressure:inlet_LCA:LCA","5722":"pressure:inlet_LCA:LCA","5723":"pressure:inlet_LCA:LCA","5724":"pressure:inlet_LCA:LCA","5725":"pressure:inlet_LCA:LCA","5726":"pressure:inlet_LCA:LCA","5727":"pressure:inlet_LCA:LCA","5728":"pressure:inlet_LCA:LCA","5729":"pressure:inlet_LCA:LCA","5730":"pressure:inlet_LCA:LCA","5731":"pressure:inlet_LCA:LCA","5732":"pressure:inlet_LCA:LCA","5733":"pressure:inlet_LCA:LCA","5734":"pressure:inlet_LCA:LCA","5735":"pressure:inlet_LCA:LCA","5736":"pressure:inlet_LCA:LCA","5737":"pressure:inlet_LCA:LCA","5738":"pressure:inlet_LCA:LCA","5739":"pressure:inlet_LCA:LCA","5740":"pressure:inlet_LCA:LCA","5741":"pressure:inlet_LCA:LCA","5742":"pressure:inlet_LCA:LCA","5743":"pressure:inlet_LCA:LCA","5744":"pressure:inlet_LCA:LCA","5745":"pressure:inlet_LCA:LCA","5746":"pressure:inlet_LCA:LCA","5747":"pressure:inlet_LCA:LCA","5748":"pressure:inlet_LCA:LCA","5749":"pressure:inlet_LCA:LCA","5750":"pressure:inlet_LCA:LCA","5751":"pressure:inlet_LCA:LCA","5752":"pressure:inlet_LCA:LCA","5753":"pressure:inlet_LCA:LCA","5754":"pressure:inlet_LCA:LCA","5755":"pressure:inlet_LCA:LCA","5756":"pressure:inlet_LCA:LCA","5757":"pressure:inlet_LCA:LCA","5758":"pressure:inlet_LCA:LCA","5759":"pressure:inlet_LCA:LCA","5760":"pressure:inlet_LCA:LCA","5761":"pressure:inlet_LCA:LCA","5762":"pressure:inlet_LCA:LCA","5763":"pressure:inlet_LCA:LCA","5764":"pressure:inlet_LCA:LCA","5765":"pressure:inlet_LCA:LCA","5766":"pressure:inlet_LCA:LCA","5767":"pressure:inlet_LCA:LCA","5768":"pressure:inlet_LCA:LCA","5769":"pressure:inlet_LCA:LCA","5770":"pressure:inlet_LCA:LCA","5771":"pressure:inlet_LCA:LCA","5772":"pressure:inlet_LCA:LCA","5773":"pressure:inlet_LCA:LCA","5774":"pressure:inlet_LCA:LCA","5775":"pressure:inlet_LCA:LCA","5776":"pressure:inlet_LCA:LCA","5777":"pressure:inlet_LCA:LCA","5778":"pressure:inlet_LCA:LCA","5779":"pressure:inlet_LCA:LCA","5780":"pressure:inlet_LCA:LCA","5781":"pressure:inlet_LCA:LCA","5782":"pressure:inlet_LCA:LCA","5783":"pressure:inlet_LCA:LCA","5784":"pressure:inlet_LCA:LCA","5785":"pressure:inlet_LCA:LCA","5786":"pressure:inlet_LCA:LCA","5787":"pressure:inlet_LCA:LCA","5788":"pressure:inlet_LCA:LCA","5789":"pressure:inlet_LCA:LCA","5790":"pressure:inlet_LCA:LCA","5791":"pressure:inlet_LCA:LCA","5792":"pressure:inlet_LCA:LCA","5793":"pressure:inlet_LCA:LCA","5794":"pressure:inlet_LCA:LCA","5795":"pressure:inlet_LCA:LCA","5796":"pressure:inlet_LCA:LCA","5797":"pressure:inlet_LCA:LCA","5798":"pressure:inlet_LCA:LCA","5799":"pressure:inlet_LCA:LCA","5800":"pressure:inlet_LCA:LCA","5801":"pressure:inlet_LCA:LCA","5802":"pressure:inlet_LCA:LCA","5803":"pressure:inlet_LCA:LCA","5804":"pressure:inlet_LCA:LCA","5805":"pressure:inlet_LCA:LCA","5806":"pressure:inlet_LCA:LCA","5807":"pressure:inlet_LCA:LCA","5808":"pressure:inlet_LCA:LCA","5809":"pressure:inlet_LCA:LCA","5810":"pressure:inlet_LCA:LCA","5811":"pressure:inlet_LCA:LCA","5812":"pressure:inlet_LCA:LCA","5813":"pressure:inlet_LCA:LCA","5814":"pressure:inlet_LCA:LCA","5815":"pressure:inlet_LCA:LCA","5816":"pressure:inlet_LCA:LCA","5817":"pressure:inlet_LCA:LCA","5818":"pressure:inlet_LCA:LCA","5819":"pressure:inlet_LCA:LCA","5820":"pressure:inlet_LCA:LCA","5821":"pressure:inlet_LCA:LCA","5822":"pressure:inlet_LCA:LCA","5823":"pressure:inlet_LCA:LCA","5824":"pressure:inlet_LCA:LCA","5825":"pressure:inlet_LCA:LCA","5826":"pressure:inlet_LCA:LCA","5827":"pressure:inlet_LCA:LCA","5828":"pressure:inlet_LCA:LCA","5829":"pressure:inlet_LCA:LCA","5830":"pressure:inlet_LCA:LCA","5831":"pressure:inlet_LCA:LCA","5832":"pressure:inlet_LCA:LCA","5833":"pressure:inlet_LCA:LCA","5834":"pressure:inlet_LCA:LCA","5835":"pressure:inlet_LCA:LCA","5836":"pressure:inlet_LCA:LCA","5837":"pressure:inlet_LCA:LCA","5838":"pressure:inlet_LCA:LCA","5839":"pressure:inlet_LCA:LCA","5840":"pressure:inlet_LCA:LCA","5841":"pressure:inlet_LCA:LCA","5842":"pressure:inlet_LCA:LCA","5843":"pressure:inlet_LCA:LCA","5844":"pressure:inlet_LCA:LCA","5845":"pressure:inlet_LCA:LCA","5846":"pressure:inlet_LCA:LCA","5847":"pressure:inlet_LCA:LCA","5848":"pressure:inlet_LCA:LCA","5849":"pressure:inlet_LCA:LCA","5850":"pressure:inlet_LCA:LCA","5851":"pressure:inlet_LCA:LCA","5852":"pressure:inlet_LCA:LCA","5853":"pressure:inlet_LCA:LCA","5854":"pressure:inlet_LCA:LCA","5855":"pressure:inlet_LCA:LCA","5856":"pressure:inlet_LCA:LCA","5857":"pressure:inlet_LCA:LCA","5858":"pressure:inlet_LCA:LCA","5859":"pressure:inlet_LCA:LCA","5860":"pressure:inlet_LCA:LCA","5861":"pressure:inlet_LCA:LCA","5862":"pressure:inlet_LCA:LCA","5863":"pressure:inlet_LCA:LCA","5864":"pressure:inlet_LCA:LCA","5865":"pressure:inlet_LCA:LCA","5866":"pressure:inlet_LCA:LCA","5867":"pressure:inlet_LCA:LCA","5868":"pressure:inlet_LCA:LCA","5869":"pressure:inlet_LCA:LCA","5870":"pressure:inlet_LCA:LCA","5871":"pressure:inlet_LCA:LCA","5872":"pressure:inlet_LCA:LCA","5873":"pressure:inlet_LCA:LCA","5874":"pressure:inlet_LCA:LCA","5875":"pressure:inlet_LCA:LCA","5876":"pressure:inlet_LCA:LCA","5877":"pressure:inlet_LCA:LCA","5878":"pressure:inlet_LCA:LCA","5879":"pressure:inlet_LCA:LCA","5880":"pressure:inlet_LCA:LCA","5881":"pressure:inlet_LCA:LCA","5882":"pressure:inlet_LCA:LCA","5883":"pressure:inlet_LCA:LCA","5884":"pressure:inlet_LCA:LCA","5885":"pressure:inlet_LCA:LCA","5886":"pressure:inlet_LCA:LCA","5887":"pressure:inlet_LCA:LCA","5888":"pressure:inlet_LCA:LCA","5889":"pressure:inlet_LCA:LCA","5890":"pressure:inlet_LCA:LCA","5891":"pressure:inlet_LCA:LCA","5892":"pressure:inlet_LCA:LCA","5893":"pressure:inlet_LCA:LCA","5894":"pressure:inlet_LCA:LCA","5895":"pressure:inlet_LCA:LCA","5896":"pressure:inlet_LCA:LCA","5897":"pressure:inlet_LCA:LCA","5898":"pressure:inlet_LCA:LCA","5899":"pressure:inlet_LCA:LCA","5900":"pressure:inlet_LCA:LCA","5901":"pressure:inlet_LCA:LCA","5902":"pressure:inlet_LCA:LCA","5903":"pressure:inlet_LCA:LCA","5904":"pressure:inlet_LCA:LCA","5905":"pressure:inlet_LCA:LCA","5906":"pressure:inlet_LCA:LCA","5907":"pressure:inlet_LCA:LCA","5908":"pressure:inlet_LCA:LCA","5909":"pressure:inlet_LCA:LCA","5910":"pressure:inlet_LCA:LCA","5911":"pressure:inlet_LCA:LCA","5912":"pressure:inlet_LCA:LCA","5913":"pressure:inlet_LCA:LCA","5914":"pressure:inlet_LCA:LCA","5915":"pressure:inlet_LCA:LCA","5916":"pressure:inlet_LCA:LCA","5917":"pressure:inlet_LCA:LCA","5918":"pressure:inlet_LCA:LCA","5919":"pressure:inlet_LCA:LCA","5920":"pressure:inlet_LCA:LCA","5921":"pressure:inlet_LCA:LCA","5922":"pressure:inlet_LCA:LCA","5923":"pressure:inlet_LCA:LCA","5924":"pressure:inlet_LCA:LCA","5925":"pressure:inlet_LCA:LCA","5926":"pressure:inlet_LCA:LCA","5927":"pressure:inlet_LCA:LCA","5928":"pressure:inlet_LCA:LCA","5929":"pressure:inlet_LCA:LCA","5930":"pressure:inlet_LCA:LCA","5931":"pressure:inlet_LCA:LCA","5932":"pressure:inlet_LCA:LCA","5933":"pressure:inlet_LCA:LCA","5934":"pressure:inlet_LCA:LCA","5935":"pressure:inlet_LCA:LCA","5936":"pressure:inlet_LCA:LCA","5937":"pressure:inlet_LCA:LCA","5938":"pressure:inlet_LCA:LCA","5939":"pressure:inlet_LCA:LCA","5940":"pressure:inlet_LCA:LCA","5941":"pressure:inlet_LCA:LCA","5942":"pressure:inlet_LCA:LCA","5943":"pressure:inlet_LCA:LCA","5944":"pressure:inlet_LCA:LCA","5945":"pressure:inlet_LCA:LCA","5946":"pressure:inlet_LCA:LCA","5947":"pressure:inlet_LCA:LCA","5948":"pressure:inlet_LCA:LCA","5949":"pressure:inlet_LCA:LCA","5950":"pressure:inlet_LCA:LCA","5951":"pressure:inlet_LCA:LCA","5952":"pressure:inlet_LCA:LCA","5953":"pressure:inlet_LCA:LCA","5954":"pressure:inlet_LCA:LCA","5955":"pressure:inlet_LCA:LCA","5956":"pressure:inlet_LCA:LCA","5957":"pressure:inlet_LCA:LCA","5958":"pressure:inlet_LCA:LCA","5959":"pressure:inlet_LCA:LCA","5960":"pressure:inlet_LCA:LCA","5961":"pressure:inlet_LCA:LCA","5962":"pressure:inlet_LCA:LCA","5963":"pressure:inlet_LCA:LCA","5964":"pressure:inlet_LCA:LCA","5965":"pressure:inlet_LCA:LCA","5966":"pressure:inlet_LCA:LCA","5967":"pressure:inlet_LCA:LCA","5968":"pressure:inlet_LCA:LCA","5969":"pressure:inlet_LCA:LCA","5970":"pressure:inlet_LCA:LCA","5971":"pressure:inlet_LCA:LCA","5972":"pressure:inlet_LCA:LCA","5973":"pressure:inlet_LCA:LCA","5974":"pressure:inlet_LCA:LCA","5975":"pressure:inlet_LCA:LCA","5976":"pressure:inlet_LCA:LCA","5977":"pressure:inlet_LCA:LCA","5978":"pressure:inlet_LCA:LCA","5979":"pressure:inlet_LCA:LCA","5980":"pressure:inlet_LCA:LCA","5981":"pressure:inlet_LCA:LCA","5982":"pressure:inlet_LCA:LCA","5983":"pressure:inlet_LCA:LCA","5984":"pressure:inlet_LCA:LCA","5985":"pressure:inlet_LCA:LCA","5986":"pressure:inlet_LCA:LCA","5987":"pressure:inlet_LCA:LCA","5988":"pressure:inlet_LCA:LCA","5989":"pressure:inlet_LCA:LCA","5990":"pressure:inlet_LCA:LCA","5991":"pressure:inlet_LCA:LCA","5992":"pressure:inlet_LCA:LCA","5993":"pressure:inlet_LCA:LCA","5994":"pressure:inlet_LCA:LCA","5995":"pressure:inlet_LCA:LCA","5996":"pressure:inlet_LCA:LCA","5997":"pressure:inlet_LCA:LCA","5998":"pressure:inlet_LCA:LCA","5999":"pressure:inlet_LCA:LCA","6000":"flow:inlet_RCA:RCA","6001":"flow:inlet_RCA:RCA","6002":"flow:inlet_RCA:RCA","6003":"flow:inlet_RCA:RCA","6004":"flow:inlet_RCA:RCA","6005":"flow:inlet_RCA:RCA","6006":"flow:inlet_RCA:RCA","6007":"flow:inlet_RCA:RCA","6008":"flow:inlet_RCA:RCA","6009":"flow:inlet_RCA:RCA","6010":"flow:inlet_RCA:RCA","6011":"flow:inlet_RCA:RCA","6012":"flow:inlet_RCA:RCA","6013":"flow:inlet_RCA:RCA","6014":"flow:inlet_RCA:RCA","6015":"flow:inlet_RCA:RCA","6016":"flow:inlet_RCA:RCA","6017":"flow:inlet_RCA:RCA","6018":"flow:inlet_RCA:RCA","6019":"flow:inlet_RCA:RCA","6020":"flow:inlet_RCA:RCA","6021":"flow:inlet_RCA:RCA","6022":"flow:inlet_RCA:RCA","6023":"flow:inlet_RCA:RCA","6024":"flow:inlet_RCA:RCA","6025":"flow:inlet_RCA:RCA","6026":"flow:inlet_RCA:RCA","6027":"flow:inlet_RCA:RCA","6028":"flow:inlet_RCA:RCA","6029":"flow:inlet_RCA:RCA","6030":"flow:inlet_RCA:RCA","6031":"flow:inlet_RCA:RCA","6032":"flow:inlet_RCA:RCA","6033":"flow:inlet_RCA:RCA","6034":"flow:inlet_RCA:RCA","6035":"flow:inlet_RCA:RCA","6036":"flow:inlet_RCA:RCA","6037":"flow:inlet_RCA:RCA","6038":"flow:inlet_RCA:RCA","6039":"flow:inlet_RCA:RCA","6040":"flow:inlet_RCA:RCA","6041":"flow:inlet_RCA:RCA","6042":"flow:inlet_RCA:RCA","6043":"flow:inlet_RCA:RCA","6044":"flow:inlet_RCA:RCA","6045":"flow:inlet_RCA:RCA","6046":"flow:inlet_RCA:RCA","6047":"flow:inlet_RCA:RCA","6048":"flow:inlet_RCA:RCA","6049":"flow:inlet_RCA:RCA","6050":"flow:inlet_RCA:RCA","6051":"flow:inlet_RCA:RCA","6052":"flow:inlet_RCA:RCA","6053":"flow:inlet_RCA:RCA","6054":"flow:inlet_RCA:RCA","6055":"flow:inlet_RCA:RCA","6056":"flow:inlet_RCA:RCA","6057":"flow:inlet_RCA:RCA","6058":"flow:inlet_RCA:RCA","6059":"flow:inlet_RCA:RCA","6060":"flow:inlet_RCA:RCA","6061":"flow:inlet_RCA:RCA","6062":"flow:inlet_RCA:RCA","6063":"flow:inlet_RCA:RCA","6064":"flow:inlet_RCA:RCA","6065":"flow:inlet_RCA:RCA","6066":"flow:inlet_RCA:RCA","6067":"flow:inlet_RCA:RCA","6068":"flow:inlet_RCA:RCA","6069":"flow:inlet_RCA:RCA","6070":"flow:inlet_RCA:RCA","6071":"flow:inlet_RCA:RCA","6072":"flow:inlet_RCA:RCA","6073":"flow:inlet_RCA:RCA","6074":"flow:inlet_RCA:RCA","6075":"flow:inlet_RCA:RCA","6076":"flow:inlet_RCA:RCA","6077":"flow:inlet_RCA:RCA","6078":"flow:inlet_RCA:RCA","6079":"flow:inlet_RCA:RCA","6080":"flow:inlet_RCA:RCA","6081":"flow:inlet_RCA:RCA","6082":"flow:inlet_RCA:RCA","6083":"flow:inlet_RCA:RCA","6084":"flow:inlet_RCA:RCA","6085":"flow:inlet_RCA:RCA","6086":"flow:inlet_RCA:RCA","6087":"flow:inlet_RCA:RCA","6088":"flow:inlet_RCA:RCA","6089":"flow:inlet_RCA:RCA","6090":"flow:inlet_RCA:RCA","6091":"flow:inlet_RCA:RCA","6092":"flow:inlet_RCA:RCA","6093":"flow:inlet_RCA:RCA","6094":"flow:inlet_RCA:RCA","6095":"flow:inlet_RCA:RCA","6096":"flow:inlet_RCA:RCA","6097":"flow:inlet_RCA:RCA","6098":"flow:inlet_RCA:RCA","6099":"flow:inlet_RCA:RCA","6100":"flow:inlet_RCA:RCA","6101":"flow:inlet_RCA:RCA","6102":"flow:inlet_RCA:RCA","6103":"flow:inlet_RCA:RCA","6104":"flow:inlet_RCA:RCA","6105":"flow:inlet_RCA:RCA","6106":"flow:inlet_RCA:RCA","6107":"flow:inlet_RCA:RCA","6108":"flow:inlet_RCA:RCA","6109":"flow:inlet_RCA:RCA","6110":"flow:inlet_RCA:RCA","6111":"flow:inlet_RCA:RCA","6112":"flow:inlet_RCA:RCA","6113":"flow:inlet_RCA:RCA","6114":"flow:inlet_RCA:RCA","6115":"flow:inlet_RCA:RCA","6116":"flow:inlet_RCA:RCA","6117":"flow:inlet_RCA:RCA","6118":"flow:inlet_RCA:RCA","6119":"flow:inlet_RCA:RCA","6120":"flow:inlet_RCA:RCA","6121":"flow:inlet_RCA:RCA","6122":"flow:inlet_RCA:RCA","6123":"flow:inlet_RCA:RCA","6124":"flow:inlet_RCA:RCA","6125":"flow:inlet_RCA:RCA","6126":"flow:inlet_RCA:RCA","6127":"flow:inlet_RCA:RCA","6128":"flow:inlet_RCA:RCA","6129":"flow:inlet_RCA:RCA","6130":"flow:inlet_RCA:RCA","6131":"flow:inlet_RCA:RCA","6132":"flow:inlet_RCA:RCA","6133":"flow:inlet_RCA:RCA","6134":"flow:inlet_RCA:RCA","6135":"flow:inlet_RCA:RCA","6136":"flow:inlet_RCA:RCA","6137":"flow:inlet_RCA:RCA","6138":"flow:inlet_RCA:RCA","6139":"flow:inlet_RCA:RCA","6140":"flow:inlet_RCA:RCA","6141":"flow:inlet_RCA:RCA","6142":"flow:inlet_RCA:RCA","6143":"flow:inlet_RCA:RCA","6144":"flow:inlet_RCA:RCA","6145":"flow:inlet_RCA:RCA","6146":"flow:inlet_RCA:RCA","6147":"flow:inlet_RCA:RCA","6148":"flow:inlet_RCA:RCA","6149":"flow:inlet_RCA:RCA","6150":"flow:inlet_RCA:RCA","6151":"flow:inlet_RCA:RCA","6152":"flow:inlet_RCA:RCA","6153":"flow:inlet_RCA:RCA","6154":"flow:inlet_RCA:RCA","6155":"flow:inlet_RCA:RCA","6156":"flow:inlet_RCA:RCA","6157":"flow:inlet_RCA:RCA","6158":"flow:inlet_RCA:RCA","6159":"flow:inlet_RCA:RCA","6160":"flow:inlet_RCA:RCA","6161":"flow:inlet_RCA:RCA","6162":"flow:inlet_RCA:RCA","6163":"flow:inlet_RCA:RCA","6164":"flow:inlet_RCA:RCA","6165":"flow:inlet_RCA:RCA","6166":"flow:inlet_RCA:RCA","6167":"flow:inlet_RCA:RCA","6168":"flow:inlet_RCA:RCA","6169":"flow:inlet_RCA:RCA","6170":"flow:inlet_RCA:RCA","6171":"flow:inlet_RCA:RCA","6172":"flow:inlet_RCA:RCA","6173":"flow:inlet_RCA:RCA","6174":"flow:inlet_RCA:RCA","6175":"flow:inlet_RCA:RCA","6176":"flow:inlet_RCA:RCA","6177":"flow:inlet_RCA:RCA","6178":"flow:inlet_RCA:RCA","6179":"flow:inlet_RCA:RCA","6180":"flow:inlet_RCA:RCA","6181":"flow:inlet_RCA:RCA","6182":"flow:inlet_RCA:RCA","6183":"flow:inlet_RCA:RCA","6184":"flow:inlet_RCA:RCA","6185":"flow:inlet_RCA:RCA","6186":"flow:inlet_RCA:RCA","6187":"flow:inlet_RCA:RCA","6188":"flow:inlet_RCA:RCA","6189":"flow:inlet_RCA:RCA","6190":"flow:inlet_RCA:RCA","6191":"flow:inlet_RCA:RCA","6192":"flow:inlet_RCA:RCA","6193":"flow:inlet_RCA:RCA","6194":"flow:inlet_RCA:RCA","6195":"flow:inlet_RCA:RCA","6196":"flow:inlet_RCA:RCA","6197":"flow:inlet_RCA:RCA","6198":"flow:inlet_RCA:RCA","6199":"flow:inlet_RCA:RCA","6200":"flow:inlet_RCA:RCA","6201":"flow:inlet_RCA:RCA","6202":"flow:inlet_RCA:RCA","6203":"flow:inlet_RCA:RCA","6204":"flow:inlet_RCA:RCA","6205":"flow:inlet_RCA:RCA","6206":"flow:inlet_RCA:RCA","6207":"flow:inlet_RCA:RCA","6208":"flow:inlet_RCA:RCA","6209":"flow:inlet_RCA:RCA","6210":"flow:inlet_RCA:RCA","6211":"flow:inlet_RCA:RCA","6212":"flow:inlet_RCA:RCA","6213":"flow:inlet_RCA:RCA","6214":"flow:inlet_RCA:RCA","6215":"flow:inlet_RCA:RCA","6216":"flow:inlet_RCA:RCA","6217":"flow:inlet_RCA:RCA","6218":"flow:inlet_RCA:RCA","6219":"flow:inlet_RCA:RCA","6220":"flow:inlet_RCA:RCA","6221":"flow:inlet_RCA:RCA","6222":"flow:inlet_RCA:RCA","6223":"flow:inlet_RCA:RCA","6224":"flow:inlet_RCA:RCA","6225":"flow:inlet_RCA:RCA","6226":"flow:inlet_RCA:RCA","6227":"flow:inlet_RCA:RCA","6228":"flow:inlet_RCA:RCA","6229":"flow:inlet_RCA:RCA","6230":"flow:inlet_RCA:RCA","6231":"flow:inlet_RCA:RCA","6232":"flow:inlet_RCA:RCA","6233":"flow:inlet_RCA:RCA","6234":"flow:inlet_RCA:RCA","6235":"flow:inlet_RCA:RCA","6236":"flow:inlet_RCA:RCA","6237":"flow:inlet_RCA:RCA","6238":"flow:inlet_RCA:RCA","6239":"flow:inlet_RCA:RCA","6240":"flow:inlet_RCA:RCA","6241":"flow:inlet_RCA:RCA","6242":"flow:inlet_RCA:RCA","6243":"flow:inlet_RCA:RCA","6244":"flow:inlet_RCA:RCA","6245":"flow:inlet_RCA:RCA","6246":"flow:inlet_RCA:RCA","6247":"flow:inlet_RCA:RCA","6248":"flow:inlet_RCA:RCA","6249":"flow:inlet_RCA:RCA","6250":"flow:inlet_RCA:RCA","6251":"flow:inlet_RCA:RCA","6252":"flow:inlet_RCA:RCA","6253":"flow:inlet_RCA:RCA","6254":"flow:inlet_RCA:RCA","6255":"flow:inlet_RCA:RCA","6256":"flow:inlet_RCA:RCA","6257":"flow:inlet_RCA:RCA","6258":"flow:inlet_RCA:RCA","6259":"flow:inlet_RCA:RCA","6260":"flow:inlet_RCA:RCA","6261":"flow:inlet_RCA:RCA","6262":"flow:inlet_RCA:RCA","6263":"flow:inlet_RCA:RCA","6264":"flow:inlet_RCA:RCA","6265":"flow:inlet_RCA:RCA","6266":"flow:inlet_RCA:RCA","6267":"flow:inlet_RCA:RCA","6268":"flow:inlet_RCA:RCA","6269":"flow:inlet_RCA:RCA","6270":"flow:inlet_RCA:RCA","6271":"flow:inlet_RCA:RCA","6272":"flow:inlet_RCA:RCA","6273":"flow:inlet_RCA:RCA","6274":"flow:inlet_RCA:RCA","6275":"flow:inlet_RCA:RCA","6276":"flow:inlet_RCA:RCA","6277":"flow:inlet_RCA:RCA","6278":"flow:inlet_RCA:RCA","6279":"flow:inlet_RCA:RCA","6280":"flow:inlet_RCA:RCA","6281":"flow:inlet_RCA:RCA","6282":"flow:inlet_RCA:RCA","6283":"flow:inlet_RCA:RCA","6284":"flow:inlet_RCA:RCA","6285":"flow:inlet_RCA:RCA","6286":"flow:inlet_RCA:RCA","6287":"flow:inlet_RCA:RCA","6288":"flow:inlet_RCA:RCA","6289":"flow:inlet_RCA:RCA","6290":"flow:inlet_RCA:RCA","6291":"flow:inlet_RCA:RCA","6292":"flow:inlet_RCA:RCA","6293":"flow:inlet_RCA:RCA","6294":"flow:inlet_RCA:RCA","6295":"flow:inlet_RCA:RCA","6296":"flow:inlet_RCA:RCA","6297":"flow:inlet_RCA:RCA","6298":"flow:inlet_RCA:RCA","6299":"flow:inlet_RCA:RCA","6300":"flow:inlet_RCA:RCA","6301":"flow:inlet_RCA:RCA","6302":"flow:inlet_RCA:RCA","6303":"flow:inlet_RCA:RCA","6304":"flow:inlet_RCA:RCA","6305":"flow:inlet_RCA:RCA","6306":"flow:inlet_RCA:RCA","6307":"flow:inlet_RCA:RCA","6308":"flow:inlet_RCA:RCA","6309":"flow:inlet_RCA:RCA","6310":"flow:inlet_RCA:RCA","6311":"flow:inlet_RCA:RCA","6312":"flow:inlet_RCA:RCA","6313":"flow:inlet_RCA:RCA","6314":"flow:inlet_RCA:RCA","6315":"flow:inlet_RCA:RCA","6316":"flow:inlet_RCA:RCA","6317":"flow:inlet_RCA:RCA","6318":"flow:inlet_RCA:RCA","6319":"flow:inlet_RCA:RCA","6320":"flow:inlet_RCA:RCA","6321":"flow:inlet_RCA:RCA","6322":"flow:inlet_RCA:RCA","6323":"flow:inlet_RCA:RCA","6324":"flow:inlet_RCA:RCA","6325":"flow:inlet_RCA:RCA","6326":"flow:inlet_RCA:RCA","6327":"flow:inlet_RCA:RCA","6328":"flow:inlet_RCA:RCA","6329":"flow:inlet_RCA:RCA","6330":"flow:inlet_RCA:RCA","6331":"flow:inlet_RCA:RCA","6332":"flow:inlet_RCA:RCA","6333":"flow:inlet_RCA:RCA","6334":"flow:inlet_RCA:RCA","6335":"flow:inlet_RCA:RCA","6336":"flow:inlet_RCA:RCA","6337":"flow:inlet_RCA:RCA","6338":"flow:inlet_RCA:RCA","6339":"flow:inlet_RCA:RCA","6340":"flow:inlet_RCA:RCA","6341":"flow:inlet_RCA:RCA","6342":"flow:inlet_RCA:RCA","6343":"flow:inlet_RCA:RCA","6344":"flow:inlet_RCA:RCA","6345":"flow:inlet_RCA:RCA","6346":"flow:inlet_RCA:RCA","6347":"flow:inlet_RCA:RCA","6348":"flow:inlet_RCA:RCA","6349":"flow:inlet_RCA:RCA","6350":"flow:inlet_RCA:RCA","6351":"flow:inlet_RCA:RCA","6352":"flow:inlet_RCA:RCA","6353":"flow:inlet_RCA:RCA","6354":"flow:inlet_RCA:RCA","6355":"flow:inlet_RCA:RCA","6356":"flow:inlet_RCA:RCA","6357":"flow:inlet_RCA:RCA","6358":"flow:inlet_RCA:RCA","6359":"flow:inlet_RCA:RCA","6360":"flow:inlet_RCA:RCA","6361":"flow:inlet_RCA:RCA","6362":"flow:inlet_RCA:RCA","6363":"flow:inlet_RCA:RCA","6364":"flow:inlet_RCA:RCA","6365":"flow:inlet_RCA:RCA","6366":"flow:inlet_RCA:RCA","6367":"flow:inlet_RCA:RCA","6368":"flow:inlet_RCA:RCA","6369":"flow:inlet_RCA:RCA","6370":"flow:inlet_RCA:RCA","6371":"flow:inlet_RCA:RCA","6372":"flow:inlet_RCA:RCA","6373":"flow:inlet_RCA:RCA","6374":"flow:inlet_RCA:RCA","6375":"flow:inlet_RCA:RCA","6376":"flow:inlet_RCA:RCA","6377":"flow:inlet_RCA:RCA","6378":"flow:inlet_RCA:RCA","6379":"flow:inlet_RCA:RCA","6380":"flow:inlet_RCA:RCA","6381":"flow:inlet_RCA:RCA","6382":"flow:inlet_RCA:RCA","6383":"flow:inlet_RCA:RCA","6384":"flow:inlet_RCA:RCA","6385":"flow:inlet_RCA:RCA","6386":"flow:inlet_RCA:RCA","6387":"flow:inlet_RCA:RCA","6388":"flow:inlet_RCA:RCA","6389":"flow:inlet_RCA:RCA","6390":"flow:inlet_RCA:RCA","6391":"flow:inlet_RCA:RCA","6392":"flow:inlet_RCA:RCA","6393":"flow:inlet_RCA:RCA","6394":"flow:inlet_RCA:RCA","6395":"flow:inlet_RCA:RCA","6396":"flow:inlet_RCA:RCA","6397":"flow:inlet_RCA:RCA","6398":"flow:inlet_RCA:RCA","6399":"flow:inlet_RCA:RCA","6400":"flow:inlet_RCA:RCA","6401":"flow:inlet_RCA:RCA","6402":"flow:inlet_RCA:RCA","6403":"flow:inlet_RCA:RCA","6404":"flow:inlet_RCA:RCA","6405":"flow:inlet_RCA:RCA","6406":"flow:inlet_RCA:RCA","6407":"flow:inlet_RCA:RCA","6408":"flow:inlet_RCA:RCA","6409":"flow:inlet_RCA:RCA","6410":"flow:inlet_RCA:RCA","6411":"flow:inlet_RCA:RCA","6412":"flow:inlet_RCA:RCA","6413":"flow:inlet_RCA:RCA","6414":"flow:inlet_RCA:RCA","6415":"flow:inlet_RCA:RCA","6416":"flow:inlet_RCA:RCA","6417":"flow:inlet_RCA:RCA","6418":"flow:inlet_RCA:RCA","6419":"flow:inlet_RCA:RCA","6420":"flow:inlet_RCA:RCA","6421":"flow:inlet_RCA:RCA","6422":"flow:inlet_RCA:RCA","6423":"flow:inlet_RCA:RCA","6424":"flow:inlet_RCA:RCA","6425":"flow:inlet_RCA:RCA","6426":"flow:inlet_RCA:RCA","6427":"flow:inlet_RCA:RCA","6428":"flow:inlet_RCA:RCA","6429":"flow:inlet_RCA:RCA","6430":"flow:inlet_RCA:RCA","6431":"flow:inlet_RCA:RCA","6432":"flow:inlet_RCA:RCA","6433":"flow:inlet_RCA:RCA","6434":"flow:inlet_RCA:RCA","6435":"flow:inlet_RCA:RCA","6436":"flow:inlet_RCA:RCA","6437":"flow:inlet_RCA:RCA","6438":"flow:inlet_RCA:RCA","6439":"flow:inlet_RCA:RCA","6440":"flow:inlet_RCA:RCA","6441":"flow:inlet_RCA:RCA","6442":"flow:inlet_RCA:RCA","6443":"flow:inlet_RCA:RCA","6444":"flow:inlet_RCA:RCA","6445":"flow:inlet_RCA:RCA","6446":"flow:inlet_RCA:RCA","6447":"flow:inlet_RCA:RCA","6448":"flow:inlet_RCA:RCA","6449":"flow:inlet_RCA:RCA","6450":"flow:inlet_RCA:RCA","6451":"flow:inlet_RCA:RCA","6452":"flow:inlet_RCA:RCA","6453":"flow:inlet_RCA:RCA","6454":"flow:inlet_RCA:RCA","6455":"flow:inlet_RCA:RCA","6456":"flow:inlet_RCA:RCA","6457":"flow:inlet_RCA:RCA","6458":"flow:inlet_RCA:RCA","6459":"flow:inlet_RCA:RCA","6460":"flow:inlet_RCA:RCA","6461":"flow:inlet_RCA:RCA","6462":"flow:inlet_RCA:RCA","6463":"flow:inlet_RCA:RCA","6464":"flow:inlet_RCA:RCA","6465":"flow:inlet_RCA:RCA","6466":"flow:inlet_RCA:RCA","6467":"flow:inlet_RCA:RCA","6468":"flow:inlet_RCA:RCA","6469":"flow:inlet_RCA:RCA","6470":"flow:inlet_RCA:RCA","6471":"flow:inlet_RCA:RCA","6472":"flow:inlet_RCA:RCA","6473":"flow:inlet_RCA:RCA","6474":"flow:inlet_RCA:RCA","6475":"flow:inlet_RCA:RCA","6476":"flow:inlet_RCA:RCA","6477":"flow:inlet_RCA:RCA","6478":"flow:inlet_RCA:RCA","6479":"flow:inlet_RCA:RCA","6480":"flow:inlet_RCA:RCA","6481":"flow:inlet_RCA:RCA","6482":"flow:inlet_RCA:RCA","6483":"flow:inlet_RCA:RCA","6484":"flow:inlet_RCA:RCA","6485":"flow:inlet_RCA:RCA","6486":"flow:inlet_RCA:RCA","6487":"flow:inlet_RCA:RCA","6488":"flow:inlet_RCA:RCA","6489":"flow:inlet_RCA:RCA","6490":"flow:inlet_RCA:RCA","6491":"flow:inlet_RCA:RCA","6492":"flow:inlet_RCA:RCA","6493":"flow:inlet_RCA:RCA","6494":"flow:inlet_RCA:RCA","6495":"flow:inlet_RCA:RCA","6496":"flow:inlet_RCA:RCA","6497":"flow:inlet_RCA:RCA","6498":"flow:inlet_RCA:RCA","6499":"flow:inlet_RCA:RCA","6500":"flow:inlet_RCA:RCA","6501":"flow:inlet_RCA:RCA","6502":"flow:inlet_RCA:RCA","6503":"flow:inlet_RCA:RCA","6504":"flow:inlet_RCA:RCA","6505":"flow:inlet_RCA:RCA","6506":"flow:inlet_RCA:RCA","6507":"flow:inlet_RCA:RCA","6508":"flow:inlet_RCA:RCA","6509":"flow:inlet_RCA:RCA","6510":"flow:inlet_RCA:RCA","6511":"flow:inlet_RCA:RCA","6512":"flow:inlet_RCA:RCA","6513":"flow:inlet_RCA:RCA","6514":"flow:inlet_RCA:RCA","6515":"flow:inlet_RCA:RCA","6516":"flow:inlet_RCA:RCA","6517":"flow:inlet_RCA:RCA","6518":"flow:inlet_RCA:RCA","6519":"flow:inlet_RCA:RCA","6520":"flow:inlet_RCA:RCA","6521":"flow:inlet_RCA:RCA","6522":"flow:inlet_RCA:RCA","6523":"flow:inlet_RCA:RCA","6524":"flow:inlet_RCA:RCA","6525":"flow:inlet_RCA:RCA","6526":"flow:inlet_RCA:RCA","6527":"flow:inlet_RCA:RCA","6528":"flow:inlet_RCA:RCA","6529":"flow:inlet_RCA:RCA","6530":"flow:inlet_RCA:RCA","6531":"flow:inlet_RCA:RCA","6532":"flow:inlet_RCA:RCA","6533":"flow:inlet_RCA:RCA","6534":"flow:inlet_RCA:RCA","6535":"flow:inlet_RCA:RCA","6536":"flow:inlet_RCA:RCA","6537":"flow:inlet_RCA:RCA","6538":"flow:inlet_RCA:RCA","6539":"flow:inlet_RCA:RCA","6540":"flow:inlet_RCA:RCA","6541":"flow:inlet_RCA:RCA","6542":"flow:inlet_RCA:RCA","6543":"flow:inlet_RCA:RCA","6544":"flow:inlet_RCA:RCA","6545":"flow:inlet_RCA:RCA","6546":"flow:inlet_RCA:RCA","6547":"flow:inlet_RCA:RCA","6548":"flow:inlet_RCA:RCA","6549":"flow:inlet_RCA:RCA","6550":"flow:inlet_RCA:RCA","6551":"flow:inlet_RCA:RCA","6552":"flow:inlet_RCA:RCA","6553":"flow:inlet_RCA:RCA","6554":"flow:inlet_RCA:RCA","6555":"flow:inlet_RCA:RCA","6556":"flow:inlet_RCA:RCA","6557":"flow:inlet_RCA:RCA","6558":"flow:inlet_RCA:RCA","6559":"flow:inlet_RCA:RCA","6560":"flow:inlet_RCA:RCA","6561":"flow:inlet_RCA:RCA","6562":"flow:inlet_RCA:RCA","6563":"flow:inlet_RCA:RCA","6564":"flow:inlet_RCA:RCA","6565":"flow:inlet_RCA:RCA","6566":"flow:inlet_RCA:RCA","6567":"flow:inlet_RCA:RCA","6568":"flow:inlet_RCA:RCA","6569":"flow:inlet_RCA:RCA","6570":"flow:inlet_RCA:RCA","6571":"flow:inlet_RCA:RCA","6572":"flow:inlet_RCA:RCA","6573":"flow:inlet_RCA:RCA","6574":"flow:inlet_RCA:RCA","6575":"flow:inlet_RCA:RCA","6576":"flow:inlet_RCA:RCA","6577":"flow:inlet_RCA:RCA","6578":"flow:inlet_RCA:RCA","6579":"flow:inlet_RCA:RCA","6580":"flow:inlet_RCA:RCA","6581":"flow:inlet_RCA:RCA","6582":"flow:inlet_RCA:RCA","6583":"flow:inlet_RCA:RCA","6584":"flow:inlet_RCA:RCA","6585":"flow:inlet_RCA:RCA","6586":"flow:inlet_RCA:RCA","6587":"flow:inlet_RCA:RCA","6588":"flow:inlet_RCA:RCA","6589":"flow:inlet_RCA:RCA","6590":"flow:inlet_RCA:RCA","6591":"flow:inlet_RCA:RCA","6592":"flow:inlet_RCA:RCA","6593":"flow:inlet_RCA:RCA","6594":"flow:inlet_RCA:RCA","6595":"flow:inlet_RCA:RCA","6596":"flow:inlet_RCA:RCA","6597":"flow:inlet_RCA:RCA","6598":"flow:inlet_RCA:RCA","6599":"flow:inlet_RCA:RCA","6600":"flow:inlet_RCA:RCA","6601":"flow:inlet_RCA:RCA","6602":"flow:inlet_RCA:RCA","6603":"flow:inlet_RCA:RCA","6604":"flow:inlet_RCA:RCA","6605":"flow:inlet_RCA:RCA","6606":"flow:inlet_RCA:RCA","6607":"flow:inlet_RCA:RCA","6608":"flow:inlet_RCA:RCA","6609":"flow:inlet_RCA:RCA","6610":"flow:inlet_RCA:RCA","6611":"flow:inlet_RCA:RCA","6612":"flow:inlet_RCA:RCA","6613":"flow:inlet_RCA:RCA","6614":"flow:inlet_RCA:RCA","6615":"flow:inlet_RCA:RCA","6616":"flow:inlet_RCA:RCA","6617":"flow:inlet_RCA:RCA","6618":"flow:inlet_RCA:RCA","6619":"flow:inlet_RCA:RCA","6620":"flow:inlet_RCA:RCA","6621":"flow:inlet_RCA:RCA","6622":"flow:inlet_RCA:RCA","6623":"flow:inlet_RCA:RCA","6624":"flow:inlet_RCA:RCA","6625":"flow:inlet_RCA:RCA","6626":"flow:inlet_RCA:RCA","6627":"flow:inlet_RCA:RCA","6628":"flow:inlet_RCA:RCA","6629":"flow:inlet_RCA:RCA","6630":"flow:inlet_RCA:RCA","6631":"flow:inlet_RCA:RCA","6632":"flow:inlet_RCA:RCA","6633":"flow:inlet_RCA:RCA","6634":"flow:inlet_RCA:RCA","6635":"flow:inlet_RCA:RCA","6636":"flow:inlet_RCA:RCA","6637":"flow:inlet_RCA:RCA","6638":"flow:inlet_RCA:RCA","6639":"flow:inlet_RCA:RCA","6640":"flow:inlet_RCA:RCA","6641":"flow:inlet_RCA:RCA","6642":"flow:inlet_RCA:RCA","6643":"flow:inlet_RCA:RCA","6644":"flow:inlet_RCA:RCA","6645":"flow:inlet_RCA:RCA","6646":"flow:inlet_RCA:RCA","6647":"flow:inlet_RCA:RCA","6648":"flow:inlet_RCA:RCA","6649":"flow:inlet_RCA:RCA","6650":"flow:inlet_RCA:RCA","6651":"flow:inlet_RCA:RCA","6652":"flow:inlet_RCA:RCA","6653":"flow:inlet_RCA:RCA","6654":"flow:inlet_RCA:RCA","6655":"flow:inlet_RCA:RCA","6656":"flow:inlet_RCA:RCA","6657":"flow:inlet_RCA:RCA","6658":"flow:inlet_RCA:RCA","6659":"flow:inlet_RCA:RCA","6660":"flow:inlet_RCA:RCA","6661":"flow:inlet_RCA:RCA","6662":"flow:inlet_RCA:RCA","6663":"flow:inlet_RCA:RCA","6664":"flow:inlet_RCA:RCA","6665":"flow:inlet_RCA:RCA","6666":"flow:inlet_RCA:RCA","6667":"flow:inlet_RCA:RCA","6668":"flow:inlet_RCA:RCA","6669":"flow:inlet_RCA:RCA","6670":"flow:inlet_RCA:RCA","6671":"flow:inlet_RCA:RCA","6672":"flow:inlet_RCA:RCA","6673":"flow:inlet_RCA:RCA","6674":"flow:inlet_RCA:RCA","6675":"flow:inlet_RCA:RCA","6676":"flow:inlet_RCA:RCA","6677":"flow:inlet_RCA:RCA","6678":"flow:inlet_RCA:RCA","6679":"flow:inlet_RCA:RCA","6680":"flow:inlet_RCA:RCA","6681":"flow:inlet_RCA:RCA","6682":"flow:inlet_RCA:RCA","6683":"flow:inlet_RCA:RCA","6684":"flow:inlet_RCA:RCA","6685":"flow:inlet_RCA:RCA","6686":"flow:inlet_RCA:RCA","6687":"flow:inlet_RCA:RCA","6688":"flow:inlet_RCA:RCA","6689":"flow:inlet_RCA:RCA","6690":"flow:inlet_RCA:RCA","6691":"flow:inlet_RCA:RCA","6692":"flow:inlet_RCA:RCA","6693":"flow:inlet_RCA:RCA","6694":"flow:inlet_RCA:RCA","6695":"flow:inlet_RCA:RCA","6696":"flow:inlet_RCA:RCA","6697":"flow:inlet_RCA:RCA","6698":"flow:inlet_RCA:RCA","6699":"flow:inlet_RCA:RCA","6700":"flow:inlet_RCA:RCA","6701":"flow:inlet_RCA:RCA","6702":"flow:inlet_RCA:RCA","6703":"flow:inlet_RCA:RCA","6704":"flow:inlet_RCA:RCA","6705":"flow:inlet_RCA:RCA","6706":"flow:inlet_RCA:RCA","6707":"flow:inlet_RCA:RCA","6708":"flow:inlet_RCA:RCA","6709":"flow:inlet_RCA:RCA","6710":"flow:inlet_RCA:RCA","6711":"flow:inlet_RCA:RCA","6712":"flow:inlet_RCA:RCA","6713":"flow:inlet_RCA:RCA","6714":"flow:inlet_RCA:RCA","6715":"flow:inlet_RCA:RCA","6716":"flow:inlet_RCA:RCA","6717":"flow:inlet_RCA:RCA","6718":"flow:inlet_RCA:RCA","6719":"flow:inlet_RCA:RCA","6720":"flow:inlet_RCA:RCA","6721":"flow:inlet_RCA:RCA","6722":"flow:inlet_RCA:RCA","6723":"flow:inlet_RCA:RCA","6724":"flow:inlet_RCA:RCA","6725":"flow:inlet_RCA:RCA","6726":"flow:inlet_RCA:RCA","6727":"flow:inlet_RCA:RCA","6728":"flow:inlet_RCA:RCA","6729":"flow:inlet_RCA:RCA","6730":"flow:inlet_RCA:RCA","6731":"flow:inlet_RCA:RCA","6732":"flow:inlet_RCA:RCA","6733":"flow:inlet_RCA:RCA","6734":"flow:inlet_RCA:RCA","6735":"flow:inlet_RCA:RCA","6736":"flow:inlet_RCA:RCA","6737":"flow:inlet_RCA:RCA","6738":"flow:inlet_RCA:RCA","6739":"flow:inlet_RCA:RCA","6740":"flow:inlet_RCA:RCA","6741":"flow:inlet_RCA:RCA","6742":"flow:inlet_RCA:RCA","6743":"flow:inlet_RCA:RCA","6744":"flow:inlet_RCA:RCA","6745":"flow:inlet_RCA:RCA","6746":"flow:inlet_RCA:RCA","6747":"flow:inlet_RCA:RCA","6748":"flow:inlet_RCA:RCA","6749":"flow:inlet_RCA:RCA","6750":"flow:inlet_RCA:RCA","6751":"flow:inlet_RCA:RCA","6752":"flow:inlet_RCA:RCA","6753":"flow:inlet_RCA:RCA","6754":"flow:inlet_RCA:RCA","6755":"flow:inlet_RCA:RCA","6756":"flow:inlet_RCA:RCA","6757":"flow:inlet_RCA:RCA","6758":"flow:inlet_RCA:RCA","6759":"flow:inlet_RCA:RCA","6760":"flow:inlet_RCA:RCA","6761":"flow:inlet_RCA:RCA","6762":"flow:inlet_RCA:RCA","6763":"flow:inlet_RCA:RCA","6764":"flow:inlet_RCA:RCA","6765":"flow:inlet_RCA:RCA","6766":"flow:inlet_RCA:RCA","6767":"flow:inlet_RCA:RCA","6768":"flow:inlet_RCA:RCA","6769":"flow:inlet_RCA:RCA","6770":"flow:inlet_RCA:RCA","6771":"flow:inlet_RCA:RCA","6772":"flow:inlet_RCA:RCA","6773":"flow:inlet_RCA:RCA","6774":"flow:inlet_RCA:RCA","6775":"flow:inlet_RCA:RCA","6776":"flow:inlet_RCA:RCA","6777":"flow:inlet_RCA:RCA","6778":"flow:inlet_RCA:RCA","6779":"flow:inlet_RCA:RCA","6780":"flow:inlet_RCA:RCA","6781":"flow:inlet_RCA:RCA","6782":"flow:inlet_RCA:RCA","6783":"flow:inlet_RCA:RCA","6784":"flow:inlet_RCA:RCA","6785":"flow:inlet_RCA:RCA","6786":"flow:inlet_RCA:RCA","6787":"flow:inlet_RCA:RCA","6788":"flow:inlet_RCA:RCA","6789":"flow:inlet_RCA:RCA","6790":"flow:inlet_RCA:RCA","6791":"flow:inlet_RCA:RCA","6792":"flow:inlet_RCA:RCA","6793":"flow:inlet_RCA:RCA","6794":"flow:inlet_RCA:RCA","6795":"flow:inlet_RCA:RCA","6796":"flow:inlet_RCA:RCA","6797":"flow:inlet_RCA:RCA","6798":"flow:inlet_RCA:RCA","6799":"flow:inlet_RCA:RCA","6800":"flow:inlet_RCA:RCA","6801":"flow:inlet_RCA:RCA","6802":"flow:inlet_RCA:RCA","6803":"flow:inlet_RCA:RCA","6804":"flow:inlet_RCA:RCA","6805":"flow:inlet_RCA:RCA","6806":"flow:inlet_RCA:RCA","6807":"flow:inlet_RCA:RCA","6808":"flow:inlet_RCA:RCA","6809":"flow:inlet_RCA:RCA","6810":"flow:inlet_RCA:RCA","6811":"flow:inlet_RCA:RCA","6812":"flow:inlet_RCA:RCA","6813":"flow:inlet_RCA:RCA","6814":"flow:inlet_RCA:RCA","6815":"flow:inlet_RCA:RCA","6816":"flow:inlet_RCA:RCA","6817":"flow:inlet_RCA:RCA","6818":"flow:inlet_RCA:RCA","6819":"flow:inlet_RCA:RCA","6820":"flow:inlet_RCA:RCA","6821":"flow:inlet_RCA:RCA","6822":"flow:inlet_RCA:RCA","6823":"flow:inlet_RCA:RCA","6824":"flow:inlet_RCA:RCA","6825":"flow:inlet_RCA:RCA","6826":"flow:inlet_RCA:RCA","6827":"flow:inlet_RCA:RCA","6828":"flow:inlet_RCA:RCA","6829":"flow:inlet_RCA:RCA","6830":"flow:inlet_RCA:RCA","6831":"flow:inlet_RCA:RCA","6832":"flow:inlet_RCA:RCA","6833":"flow:inlet_RCA:RCA","6834":"flow:inlet_RCA:RCA","6835":"flow:inlet_RCA:RCA","6836":"flow:inlet_RCA:RCA","6837":"flow:inlet_RCA:RCA","6838":"flow:inlet_RCA:RCA","6839":"flow:inlet_RCA:RCA","6840":"flow:inlet_RCA:RCA","6841":"flow:inlet_RCA:RCA","6842":"flow:inlet_RCA:RCA","6843":"flow:inlet_RCA:RCA","6844":"flow:inlet_RCA:RCA","6845":"flow:inlet_RCA:RCA","6846":"flow:inlet_RCA:RCA","6847":"flow:inlet_RCA:RCA","6848":"flow:inlet_RCA:RCA","6849":"flow:inlet_RCA:RCA","6850":"flow:inlet_RCA:RCA","6851":"flow:inlet_RCA:RCA","6852":"flow:inlet_RCA:RCA","6853":"flow:inlet_RCA:RCA","6854":"flow:inlet_RCA:RCA","6855":"flow:inlet_RCA:RCA","6856":"flow:inlet_RCA:RCA","6857":"flow:inlet_RCA:RCA","6858":"flow:inlet_RCA:RCA","6859":"flow:inlet_RCA:RCA","6860":"flow:inlet_RCA:RCA","6861":"flow:inlet_RCA:RCA","6862":"flow:inlet_RCA:RCA","6863":"flow:inlet_RCA:RCA","6864":"flow:inlet_RCA:RCA","6865":"flow:inlet_RCA:RCA","6866":"flow:inlet_RCA:RCA","6867":"flow:inlet_RCA:RCA","6868":"flow:inlet_RCA:RCA","6869":"flow:inlet_RCA:RCA","6870":"flow:inlet_RCA:RCA","6871":"flow:inlet_RCA:RCA","6872":"flow:inlet_RCA:RCA","6873":"flow:inlet_RCA:RCA","6874":"flow:inlet_RCA:RCA","6875":"flow:inlet_RCA:RCA","6876":"flow:inlet_RCA:RCA","6877":"flow:inlet_RCA:RCA","6878":"flow:inlet_RCA:RCA","6879":"flow:inlet_RCA:RCA","6880":"flow:inlet_RCA:RCA","6881":"flow:inlet_RCA:RCA","6882":"flow:inlet_RCA:RCA","6883":"flow:inlet_RCA:RCA","6884":"flow:inlet_RCA:RCA","6885":"flow:inlet_RCA:RCA","6886":"flow:inlet_RCA:RCA","6887":"flow:inlet_RCA:RCA","6888":"flow:inlet_RCA:RCA","6889":"flow:inlet_RCA:RCA","6890":"flow:inlet_RCA:RCA","6891":"flow:inlet_RCA:RCA","6892":"flow:inlet_RCA:RCA","6893":"flow:inlet_RCA:RCA","6894":"flow:inlet_RCA:RCA","6895":"flow:inlet_RCA:RCA","6896":"flow:inlet_RCA:RCA","6897":"flow:inlet_RCA:RCA","6898":"flow:inlet_RCA:RCA","6899":"flow:inlet_RCA:RCA","6900":"flow:inlet_RCA:RCA","6901":"flow:inlet_RCA:RCA","6902":"flow:inlet_RCA:RCA","6903":"flow:inlet_RCA:RCA","6904":"flow:inlet_RCA:RCA","6905":"flow:inlet_RCA:RCA","6906":"flow:inlet_RCA:RCA","6907":"flow:inlet_RCA:RCA","6908":"flow:inlet_RCA:RCA","6909":"flow:inlet_RCA:RCA","6910":"flow:inlet_RCA:RCA","6911":"flow:inlet_RCA:RCA","6912":"flow:inlet_RCA:RCA","6913":"flow:inlet_RCA:RCA","6914":"flow:inlet_RCA:RCA","6915":"flow:inlet_RCA:RCA","6916":"flow:inlet_RCA:RCA","6917":"flow:inlet_RCA:RCA","6918":"flow:inlet_RCA:RCA","6919":"flow:inlet_RCA:RCA","6920":"flow:inlet_RCA:RCA","6921":"flow:inlet_RCA:RCA","6922":"flow:inlet_RCA:RCA","6923":"flow:inlet_RCA:RCA","6924":"flow:inlet_RCA:RCA","6925":"flow:inlet_RCA:RCA","6926":"flow:inlet_RCA:RCA","6927":"flow:inlet_RCA:RCA","6928":"flow:inlet_RCA:RCA","6929":"flow:inlet_RCA:RCA","6930":"flow:inlet_RCA:RCA","6931":"flow:inlet_RCA:RCA","6932":"flow:inlet_RCA:RCA","6933":"flow:inlet_RCA:RCA","6934":"flow:inlet_RCA:RCA","6935":"flow:inlet_RCA:RCA","6936":"flow:inlet_RCA:RCA","6937":"flow:inlet_RCA:RCA","6938":"flow:inlet_RCA:RCA","6939":"flow:inlet_RCA:RCA","6940":"flow:inlet_RCA:RCA","6941":"flow:inlet_RCA:RCA","6942":"flow:inlet_RCA:RCA","6943":"flow:inlet_RCA:RCA","6944":"flow:inlet_RCA:RCA","6945":"flow:inlet_RCA:RCA","6946":"flow:inlet_RCA:RCA","6947":"flow:inlet_RCA:RCA","6948":"flow:inlet_RCA:RCA","6949":"flow:inlet_RCA:RCA","6950":"flow:inlet_RCA:RCA","6951":"flow:inlet_RCA:RCA","6952":"flow:inlet_RCA:RCA","6953":"flow:inlet_RCA:RCA","6954":"flow:inlet_RCA:RCA","6955":"flow:inlet_RCA:RCA","6956":"flow:inlet_RCA:RCA","6957":"flow:inlet_RCA:RCA","6958":"flow:inlet_RCA:RCA","6959":"flow:inlet_RCA:RCA","6960":"flow:inlet_RCA:RCA","6961":"flow:inlet_RCA:RCA","6962":"flow:inlet_RCA:RCA","6963":"flow:inlet_RCA:RCA","6964":"flow:inlet_RCA:RCA","6965":"flow:inlet_RCA:RCA","6966":"flow:inlet_RCA:RCA","6967":"flow:inlet_RCA:RCA","6968":"flow:inlet_RCA:RCA","6969":"flow:inlet_RCA:RCA","6970":"flow:inlet_RCA:RCA","6971":"flow:inlet_RCA:RCA","6972":"flow:inlet_RCA:RCA","6973":"flow:inlet_RCA:RCA","6974":"flow:inlet_RCA:RCA","6975":"flow:inlet_RCA:RCA","6976":"flow:inlet_RCA:RCA","6977":"flow:inlet_RCA:RCA","6978":"flow:inlet_RCA:RCA","6979":"flow:inlet_RCA:RCA","6980":"flow:inlet_RCA:RCA","6981":"flow:inlet_RCA:RCA","6982":"flow:inlet_RCA:RCA","6983":"flow:inlet_RCA:RCA","6984":"flow:inlet_RCA:RCA","6985":"flow:inlet_RCA:RCA","6986":"flow:inlet_RCA:RCA","6987":"flow:inlet_RCA:RCA","6988":"flow:inlet_RCA:RCA","6989":"flow:inlet_RCA:RCA","6990":"flow:inlet_RCA:RCA","6991":"flow:inlet_RCA:RCA","6992":"flow:inlet_RCA:RCA","6993":"flow:inlet_RCA:RCA","6994":"flow:inlet_RCA:RCA","6995":"flow:inlet_RCA:RCA","6996":"flow:inlet_RCA:RCA","6997":"flow:inlet_RCA:RCA","6998":"flow:inlet_RCA:RCA","6999":"flow:inlet_RCA:RCA","7000":"pressure:inlet_RCA:RCA","7001":"pressure:inlet_RCA:RCA","7002":"pressure:inlet_RCA:RCA","7003":"pressure:inlet_RCA:RCA","7004":"pressure:inlet_RCA:RCA","7005":"pressure:inlet_RCA:RCA","7006":"pressure:inlet_RCA:RCA","7007":"pressure:inlet_RCA:RCA","7008":"pressure:inlet_RCA:RCA","7009":"pressure:inlet_RCA:RCA","7010":"pressure:inlet_RCA:RCA","7011":"pressure:inlet_RCA:RCA","7012":"pressure:inlet_RCA:RCA","7013":"pressure:inlet_RCA:RCA","7014":"pressure:inlet_RCA:RCA","7015":"pressure:inlet_RCA:RCA","7016":"pressure:inlet_RCA:RCA","7017":"pressure:inlet_RCA:RCA","7018":"pressure:inlet_RCA:RCA","7019":"pressure:inlet_RCA:RCA","7020":"pressure:inlet_RCA:RCA","7021":"pressure:inlet_RCA:RCA","7022":"pressure:inlet_RCA:RCA","7023":"pressure:inlet_RCA:RCA","7024":"pressure:inlet_RCA:RCA","7025":"pressure:inlet_RCA:RCA","7026":"pressure:inlet_RCA:RCA","7027":"pressure:inlet_RCA:RCA","7028":"pressure:inlet_RCA:RCA","7029":"pressure:inlet_RCA:RCA","7030":"pressure:inlet_RCA:RCA","7031":"pressure:inlet_RCA:RCA","7032":"pressure:inlet_RCA:RCA","7033":"pressure:inlet_RCA:RCA","7034":"pressure:inlet_RCA:RCA","7035":"pressure:inlet_RCA:RCA","7036":"pressure:inlet_RCA:RCA","7037":"pressure:inlet_RCA:RCA","7038":"pressure:inlet_RCA:RCA","7039":"pressure:inlet_RCA:RCA","7040":"pressure:inlet_RCA:RCA","7041":"pressure:inlet_RCA:RCA","7042":"pressure:inlet_RCA:RCA","7043":"pressure:inlet_RCA:RCA","7044":"pressure:inlet_RCA:RCA","7045":"pressure:inlet_RCA:RCA","7046":"pressure:inlet_RCA:RCA","7047":"pressure:inlet_RCA:RCA","7048":"pressure:inlet_RCA:RCA","7049":"pressure:inlet_RCA:RCA","7050":"pressure:inlet_RCA:RCA","7051":"pressure:inlet_RCA:RCA","7052":"pressure:inlet_RCA:RCA","7053":"pressure:inlet_RCA:RCA","7054":"pressure:inlet_RCA:RCA","7055":"pressure:inlet_RCA:RCA","7056":"pressure:inlet_RCA:RCA","7057":"pressure:inlet_RCA:RCA","7058":"pressure:inlet_RCA:RCA","7059":"pressure:inlet_RCA:RCA","7060":"pressure:inlet_RCA:RCA","7061":"pressure:inlet_RCA:RCA","7062":"pressure:inlet_RCA:RCA","7063":"pressure:inlet_RCA:RCA","7064":"pressure:inlet_RCA:RCA","7065":"pressure:inlet_RCA:RCA","7066":"pressure:inlet_RCA:RCA","7067":"pressure:inlet_RCA:RCA","7068":"pressure:inlet_RCA:RCA","7069":"pressure:inlet_RCA:RCA","7070":"pressure:inlet_RCA:RCA","7071":"pressure:inlet_RCA:RCA","7072":"pressure:inlet_RCA:RCA","7073":"pressure:inlet_RCA:RCA","7074":"pressure:inlet_RCA:RCA","7075":"pressure:inlet_RCA:RCA","7076":"pressure:inlet_RCA:RCA","7077":"pressure:inlet_RCA:RCA","7078":"pressure:inlet_RCA:RCA","7079":"pressure:inlet_RCA:RCA","7080":"pressure:inlet_RCA:RCA","7081":"pressure:inlet_RCA:RCA","7082":"pressure:inlet_RCA:RCA","7083":"pressure:inlet_RCA:RCA","7084":"pressure:inlet_RCA:RCA","7085":"pressure:inlet_RCA:RCA","7086":"pressure:inlet_RCA:RCA","7087":"pressure:inlet_RCA:RCA","7088":"pressure:inlet_RCA:RCA","7089":"pressure:inlet_RCA:RCA","7090":"pressure:inlet_RCA:RCA","7091":"pressure:inlet_RCA:RCA","7092":"pressure:inlet_RCA:RCA","7093":"pressure:inlet_RCA:RCA","7094":"pressure:inlet_RCA:RCA","7095":"pressure:inlet_RCA:RCA","7096":"pressure:inlet_RCA:RCA","7097":"pressure:inlet_RCA:RCA","7098":"pressure:inlet_RCA:RCA","7099":"pressure:inlet_RCA:RCA","7100":"pressure:inlet_RCA:RCA","7101":"pressure:inlet_RCA:RCA","7102":"pressure:inlet_RCA:RCA","7103":"pressure:inlet_RCA:RCA","7104":"pressure:inlet_RCA:RCA","7105":"pressure:inlet_RCA:RCA","7106":"pressure:inlet_RCA:RCA","7107":"pressure:inlet_RCA:RCA","7108":"pressure:inlet_RCA:RCA","7109":"pressure:inlet_RCA:RCA","7110":"pressure:inlet_RCA:RCA","7111":"pressure:inlet_RCA:RCA","7112":"pressure:inlet_RCA:RCA","7113":"pressure:inlet_RCA:RCA","7114":"pressure:inlet_RCA:RCA","7115":"pressure:inlet_RCA:RCA","7116":"pressure:inlet_RCA:RCA","7117":"pressure:inlet_RCA:RCA","7118":"pressure:inlet_RCA:RCA","7119":"pressure:inlet_RCA:RCA","7120":"pressure:inlet_RCA:RCA","7121":"pressure:inlet_RCA:RCA","7122":"pressure:inlet_RCA:RCA","7123":"pressure:inlet_RCA:RCA","7124":"pressure:inlet_RCA:RCA","7125":"pressure:inlet_RCA:RCA","7126":"pressure:inlet_RCA:RCA","7127":"pressure:inlet_RCA:RCA","7128":"pressure:inlet_RCA:RCA","7129":"pressure:inlet_RCA:RCA","7130":"pressure:inlet_RCA:RCA","7131":"pressure:inlet_RCA:RCA","7132":"pressure:inlet_RCA:RCA","7133":"pressure:inlet_RCA:RCA","7134":"pressure:inlet_RCA:RCA","7135":"pressure:inlet_RCA:RCA","7136":"pressure:inlet_RCA:RCA","7137":"pressure:inlet_RCA:RCA","7138":"pressure:inlet_RCA:RCA","7139":"pressure:inlet_RCA:RCA","7140":"pressure:inlet_RCA:RCA","7141":"pressure:inlet_RCA:RCA","7142":"pressure:inlet_RCA:RCA","7143":"pressure:inlet_RCA:RCA","7144":"pressure:inlet_RCA:RCA","7145":"pressure:inlet_RCA:RCA","7146":"pressure:inlet_RCA:RCA","7147":"pressure:inlet_RCA:RCA","7148":"pressure:inlet_RCA:RCA","7149":"pressure:inlet_RCA:RCA","7150":"pressure:inlet_RCA:RCA","7151":"pressure:inlet_RCA:RCA","7152":"pressure:inlet_RCA:RCA","7153":"pressure:inlet_RCA:RCA","7154":"pressure:inlet_RCA:RCA","7155":"pressure:inlet_RCA:RCA","7156":"pressure:inlet_RCA:RCA","7157":"pressure:inlet_RCA:RCA","7158":"pressure:inlet_RCA:RCA","7159":"pressure:inlet_RCA:RCA","7160":"pressure:inlet_RCA:RCA","7161":"pressure:inlet_RCA:RCA","7162":"pressure:inlet_RCA:RCA","7163":"pressure:inlet_RCA:RCA","7164":"pressure:inlet_RCA:RCA","7165":"pressure:inlet_RCA:RCA","7166":"pressure:inlet_RCA:RCA","7167":"pressure:inlet_RCA:RCA","7168":"pressure:inlet_RCA:RCA","7169":"pressure:inlet_RCA:RCA","7170":"pressure:inlet_RCA:RCA","7171":"pressure:inlet_RCA:RCA","7172":"pressure:inlet_RCA:RCA","7173":"pressure:inlet_RCA:RCA","7174":"pressure:inlet_RCA:RCA","7175":"pressure:inlet_RCA:RCA","7176":"pressure:inlet_RCA:RCA","7177":"pressure:inlet_RCA:RCA","7178":"pressure:inlet_RCA:RCA","7179":"pressure:inlet_RCA:RCA","7180":"pressure:inlet_RCA:RCA","7181":"pressure:inlet_RCA:RCA","7182":"pressure:inlet_RCA:RCA","7183":"pressure:inlet_RCA:RCA","7184":"pressure:inlet_RCA:RCA","7185":"pressure:inlet_RCA:RCA","7186":"pressure:inlet_RCA:RCA","7187":"pressure:inlet_RCA:RCA","7188":"pressure:inlet_RCA:RCA","7189":"pressure:inlet_RCA:RCA","7190":"pressure:inlet_RCA:RCA","7191":"pressure:inlet_RCA:RCA","7192":"pressure:inlet_RCA:RCA","7193":"pressure:inlet_RCA:RCA","7194":"pressure:inlet_RCA:RCA","7195":"pressure:inlet_RCA:RCA","7196":"pressure:inlet_RCA:RCA","7197":"pressure:inlet_RCA:RCA","7198":"pressure:inlet_RCA:RCA","7199":"pressure:inlet_RCA:RCA","7200":"pressure:inlet_RCA:RCA","7201":"pressure:inlet_RCA:RCA","7202":"pressure:inlet_RCA:RCA","7203":"pressure:inlet_RCA:RCA","7204":"pressure:inlet_RCA:RCA","7205":"pressure:inlet_RCA:RCA","7206":"pressure:inlet_RCA:RCA","7207":"pressure:inlet_RCA:RCA","7208":"pressure:inlet_RCA:RCA","7209":"pressure:inlet_RCA:RCA","7210":"pressure:inlet_RCA:RCA","7211":"pressure:inlet_RCA:RCA","7212":"pressure:inlet_RCA:RCA","7213":"pressure:inlet_RCA:RCA","7214":"pressure:inlet_RCA:RCA","7215":"pressure:inlet_RCA:RCA","7216":"pressure:inlet_RCA:RCA","7217":"pressure:inlet_RCA:RCA","7218":"pressure:inlet_RCA:RCA","7219":"pressure:inlet_RCA:RCA","7220":"pressure:inlet_RCA:RCA","7221":"pressure:inlet_RCA:RCA","7222":"pressure:inlet_RCA:RCA","7223":"pressure:inlet_RCA:RCA","7224":"pressure:inlet_RCA:RCA","7225":"pressure:inlet_RCA:RCA","7226":"pressure:inlet_RCA:RCA","7227":"pressure:inlet_RCA:RCA","7228":"pressure:inlet_RCA:RCA","7229":"pressure:inlet_RCA:RCA","7230":"pressure:inlet_RCA:RCA","7231":"pressure:inlet_RCA:RCA","7232":"pressure:inlet_RCA:RCA","7233":"pressure:inlet_RCA:RCA","7234":"pressure:inlet_RCA:RCA","7235":"pressure:inlet_RCA:RCA","7236":"pressure:inlet_RCA:RCA","7237":"pressure:inlet_RCA:RCA","7238":"pressure:inlet_RCA:RCA","7239":"pressure:inlet_RCA:RCA","7240":"pressure:inlet_RCA:RCA","7241":"pressure:inlet_RCA:RCA","7242":"pressure:inlet_RCA:RCA","7243":"pressure:inlet_RCA:RCA","7244":"pressure:inlet_RCA:RCA","7245":"pressure:inlet_RCA:RCA","7246":"pressure:inlet_RCA:RCA","7247":"pressure:inlet_RCA:RCA","7248":"pressure:inlet_RCA:RCA","7249":"pressure:inlet_RCA:RCA","7250":"pressure:inlet_RCA:RCA","7251":"pressure:inlet_RCA:RCA","7252":"pressure:inlet_RCA:RCA","7253":"pressure:inlet_RCA:RCA","7254":"pressure:inlet_RCA:RCA","7255":"pressure:inlet_RCA:RCA","7256":"pressure:inlet_RCA:RCA","7257":"pressure:inlet_RCA:RCA","7258":"pressure:inlet_RCA:RCA","7259":"pressure:inlet_RCA:RCA","7260":"pressure:inlet_RCA:RCA","7261":"pressure:inlet_RCA:RCA","7262":"pressure:inlet_RCA:RCA","7263":"pressure:inlet_RCA:RCA","7264":"pressure:inlet_RCA:RCA","7265":"pressure:inlet_RCA:RCA","7266":"pressure:inlet_RCA:RCA","7267":"pressure:inlet_RCA:RCA","7268":"pressure:inlet_RCA:RCA","7269":"pressure:inlet_RCA:RCA","7270":"pressure:inlet_RCA:RCA","7271":"pressure:inlet_RCA:RCA","7272":"pressure:inlet_RCA:RCA","7273":"pressure:inlet_RCA:RCA","7274":"pressure:inlet_RCA:RCA","7275":"pressure:inlet_RCA:RCA","7276":"pressure:inlet_RCA:RCA","7277":"pressure:inlet_RCA:RCA","7278":"pressure:inlet_RCA:RCA","7279":"pressure:inlet_RCA:RCA","7280":"pressure:inlet_RCA:RCA","7281":"pressure:inlet_RCA:RCA","7282":"pressure:inlet_RCA:RCA","7283":"pressure:inlet_RCA:RCA","7284":"pressure:inlet_RCA:RCA","7285":"pressure:inlet_RCA:RCA","7286":"pressure:inlet_RCA:RCA","7287":"pressure:inlet_RCA:RCA","7288":"pressure:inlet_RCA:RCA","7289":"pressure:inlet_RCA:RCA","7290":"pressure:inlet_RCA:RCA","7291":"pressure:inlet_RCA:RCA","7292":"pressure:inlet_RCA:RCA","7293":"pressure:inlet_RCA:RCA","7294":"pressure:inlet_RCA:RCA","7295":"pressure:inlet_RCA:RCA","7296":"pressure:inlet_RCA:RCA","7297":"pressure:inlet_RCA:RCA","7298":"pressure:inlet_RCA:RCA","7299":"pressure:inlet_RCA:RCA","7300":"pressure:inlet_RCA:RCA","7301":"pressure:inlet_RCA:RCA","7302":"pressure:inlet_RCA:RCA","7303":"pressure:inlet_RCA:RCA","7304":"pressure:inlet_RCA:RCA","7305":"pressure:inlet_RCA:RCA","7306":"pressure:inlet_RCA:RCA","7307":"pressure:inlet_RCA:RCA","7308":"pressure:inlet_RCA:RCA","7309":"pressure:inlet_RCA:RCA","7310":"pressure:inlet_RCA:RCA","7311":"pressure:inlet_RCA:RCA","7312":"pressure:inlet_RCA:RCA","7313":"pressure:inlet_RCA:RCA","7314":"pressure:inlet_RCA:RCA","7315":"pressure:inlet_RCA:RCA","7316":"pressure:inlet_RCA:RCA","7317":"pressure:inlet_RCA:RCA","7318":"pressure:inlet_RCA:RCA","7319":"pressure:inlet_RCA:RCA","7320":"pressure:inlet_RCA:RCA","7321":"pressure:inlet_RCA:RCA","7322":"pressure:inlet_RCA:RCA","7323":"pressure:inlet_RCA:RCA","7324":"pressure:inlet_RCA:RCA","7325":"pressure:inlet_RCA:RCA","7326":"pressure:inlet_RCA:RCA","7327":"pressure:inlet_RCA:RCA","7328":"pressure:inlet_RCA:RCA","7329":"pressure:inlet_RCA:RCA","7330":"pressure:inlet_RCA:RCA","7331":"pressure:inlet_RCA:RCA","7332":"pressure:inlet_RCA:RCA","7333":"pressure:inlet_RCA:RCA","7334":"pressure:inlet_RCA:RCA","7335":"pressure:inlet_RCA:RCA","7336":"pressure:inlet_RCA:RCA","7337":"pressure:inlet_RCA:RCA","7338":"pressure:inlet_RCA:RCA","7339":"pressure:inlet_RCA:RCA","7340":"pressure:inlet_RCA:RCA","7341":"pressure:inlet_RCA:RCA","7342":"pressure:inlet_RCA:RCA","7343":"pressure:inlet_RCA:RCA","7344":"pressure:inlet_RCA:RCA","7345":"pressure:inlet_RCA:RCA","7346":"pressure:inlet_RCA:RCA","7347":"pressure:inlet_RCA:RCA","7348":"pressure:inlet_RCA:RCA","7349":"pressure:inlet_RCA:RCA","7350":"pressure:inlet_RCA:RCA","7351":"pressure:inlet_RCA:RCA","7352":"pressure:inlet_RCA:RCA","7353":"pressure:inlet_RCA:RCA","7354":"pressure:inlet_RCA:RCA","7355":"pressure:inlet_RCA:RCA","7356":"pressure:inlet_RCA:RCA","7357":"pressure:inlet_RCA:RCA","7358":"pressure:inlet_RCA:RCA","7359":"pressure:inlet_RCA:RCA","7360":"pressure:inlet_RCA:RCA","7361":"pressure:inlet_RCA:RCA","7362":"pressure:inlet_RCA:RCA","7363":"pressure:inlet_RCA:RCA","7364":"pressure:inlet_RCA:RCA","7365":"pressure:inlet_RCA:RCA","7366":"pressure:inlet_RCA:RCA","7367":"pressure:inlet_RCA:RCA","7368":"pressure:inlet_RCA:RCA","7369":"pressure:inlet_RCA:RCA","7370":"pressure:inlet_RCA:RCA","7371":"pressure:inlet_RCA:RCA","7372":"pressure:inlet_RCA:RCA","7373":"pressure:inlet_RCA:RCA","7374":"pressure:inlet_RCA:RCA","7375":"pressure:inlet_RCA:RCA","7376":"pressure:inlet_RCA:RCA","7377":"pressure:inlet_RCA:RCA","7378":"pressure:inlet_RCA:RCA","7379":"pressure:inlet_RCA:RCA","7380":"pressure:inlet_RCA:RCA","7381":"pressure:inlet_RCA:RCA","7382":"pressure:inlet_RCA:RCA","7383":"pressure:inlet_RCA:RCA","7384":"pressure:inlet_RCA:RCA","7385":"pressure:inlet_RCA:RCA","7386":"pressure:inlet_RCA:RCA","7387":"pressure:inlet_RCA:RCA","7388":"pressure:inlet_RCA:RCA","7389":"pressure:inlet_RCA:RCA","7390":"pressure:inlet_RCA:RCA","7391":"pressure:inlet_RCA:RCA","7392":"pressure:inlet_RCA:RCA","7393":"pressure:inlet_RCA:RCA","7394":"pressure:inlet_RCA:RCA","7395":"pressure:inlet_RCA:RCA","7396":"pressure:inlet_RCA:RCA","7397":"pressure:inlet_RCA:RCA","7398":"pressure:inlet_RCA:RCA","7399":"pressure:inlet_RCA:RCA","7400":"pressure:inlet_RCA:RCA","7401":"pressure:inlet_RCA:RCA","7402":"pressure:inlet_RCA:RCA","7403":"pressure:inlet_RCA:RCA","7404":"pressure:inlet_RCA:RCA","7405":"pressure:inlet_RCA:RCA","7406":"pressure:inlet_RCA:RCA","7407":"pressure:inlet_RCA:RCA","7408":"pressure:inlet_RCA:RCA","7409":"pressure:inlet_RCA:RCA","7410":"pressure:inlet_RCA:RCA","7411":"pressure:inlet_RCA:RCA","7412":"pressure:inlet_RCA:RCA","7413":"pressure:inlet_RCA:RCA","7414":"pressure:inlet_RCA:RCA","7415":"pressure:inlet_RCA:RCA","7416":"pressure:inlet_RCA:RCA","7417":"pressure:inlet_RCA:RCA","7418":"pressure:inlet_RCA:RCA","7419":"pressure:inlet_RCA:RCA","7420":"pressure:inlet_RCA:RCA","7421":"pressure:inlet_RCA:RCA","7422":"pressure:inlet_RCA:RCA","7423":"pressure:inlet_RCA:RCA","7424":"pressure:inlet_RCA:RCA","7425":"pressure:inlet_RCA:RCA","7426":"pressure:inlet_RCA:RCA","7427":"pressure:inlet_RCA:RCA","7428":"pressure:inlet_RCA:RCA","7429":"pressure:inlet_RCA:RCA","7430":"pressure:inlet_RCA:RCA","7431":"pressure:inlet_RCA:RCA","7432":"pressure:inlet_RCA:RCA","7433":"pressure:inlet_RCA:RCA","7434":"pressure:inlet_RCA:RCA","7435":"pressure:inlet_RCA:RCA","7436":"pressure:inlet_RCA:RCA","7437":"pressure:inlet_RCA:RCA","7438":"pressure:inlet_RCA:RCA","7439":"pressure:inlet_RCA:RCA","7440":"pressure:inlet_RCA:RCA","7441":"pressure:inlet_RCA:RCA","7442":"pressure:inlet_RCA:RCA","7443":"pressure:inlet_RCA:RCA","7444":"pressure:inlet_RCA:RCA","7445":"pressure:inlet_RCA:RCA","7446":"pressure:inlet_RCA:RCA","7447":"pressure:inlet_RCA:RCA","7448":"pressure:inlet_RCA:RCA","7449":"pressure:inlet_RCA:RCA","7450":"pressure:inlet_RCA:RCA","7451":"pressure:inlet_RCA:RCA","7452":"pressure:inlet_RCA:RCA","7453":"pressure:inlet_RCA:RCA","7454":"pressure:inlet_RCA:RCA","7455":"pressure:inlet_RCA:RCA","7456":"pressure:inlet_RCA:RCA","7457":"pressure:inlet_RCA:RCA","7458":"pressure:inlet_RCA:RCA","7459":"pressure:inlet_RCA:RCA","7460":"pressure:inlet_RCA:RCA","7461":"pressure:inlet_RCA:RCA","7462":"pressure:inlet_RCA:RCA","7463":"pressure:inlet_RCA:RCA","7464":"pressure:inlet_RCA:RCA","7465":"pressure:inlet_RCA:RCA","7466":"pressure:inlet_RCA:RCA","7467":"pressure:inlet_RCA:RCA","7468":"pressure:inlet_RCA:RCA","7469":"pressure:inlet_RCA:RCA","7470":"pressure:inlet_RCA:RCA","7471":"pressure:inlet_RCA:RCA","7472":"pressure:inlet_RCA:RCA","7473":"pressure:inlet_RCA:RCA","7474":"pressure:inlet_RCA:RCA","7475":"pressure:inlet_RCA:RCA","7476":"pressure:inlet_RCA:RCA","7477":"pressure:inlet_RCA:RCA","7478":"pressure:inlet_RCA:RCA","7479":"pressure:inlet_RCA:RCA","7480":"pressure:inlet_RCA:RCA","7481":"pressure:inlet_RCA:RCA","7482":"pressure:inlet_RCA:RCA","7483":"pressure:inlet_RCA:RCA","7484":"pressure:inlet_RCA:RCA","7485":"pressure:inlet_RCA:RCA","7486":"pressure:inlet_RCA:RCA","7487":"pressure:inlet_RCA:RCA","7488":"pressure:inlet_RCA:RCA","7489":"pressure:inlet_RCA:RCA","7490":"pressure:inlet_RCA:RCA","7491":"pressure:inlet_RCA:RCA","7492":"pressure:inlet_RCA:RCA","7493":"pressure:inlet_RCA:RCA","7494":"pressure:inlet_RCA:RCA","7495":"pressure:inlet_RCA:RCA","7496":"pressure:inlet_RCA:RCA","7497":"pressure:inlet_RCA:RCA","7498":"pressure:inlet_RCA:RCA","7499":"pressure:inlet_RCA:RCA","7500":"pressure:inlet_RCA:RCA","7501":"pressure:inlet_RCA:RCA","7502":"pressure:inlet_RCA:RCA","7503":"pressure:inlet_RCA:RCA","7504":"pressure:inlet_RCA:RCA","7505":"pressure:inlet_RCA:RCA","7506":"pressure:inlet_RCA:RCA","7507":"pressure:inlet_RCA:RCA","7508":"pressure:inlet_RCA:RCA","7509":"pressure:inlet_RCA:RCA","7510":"pressure:inlet_RCA:RCA","7511":"pressure:inlet_RCA:RCA","7512":"pressure:inlet_RCA:RCA","7513":"pressure:inlet_RCA:RCA","7514":"pressure:inlet_RCA:RCA","7515":"pressure:inlet_RCA:RCA","7516":"pressure:inlet_RCA:RCA","7517":"pressure:inlet_RCA:RCA","7518":"pressure:inlet_RCA:RCA","7519":"pressure:inlet_RCA:RCA","7520":"pressure:inlet_RCA:RCA","7521":"pressure:inlet_RCA:RCA","7522":"pressure:inlet_RCA:RCA","7523":"pressure:inlet_RCA:RCA","7524":"pressure:inlet_RCA:RCA","7525":"pressure:inlet_RCA:RCA","7526":"pressure:inlet_RCA:RCA","7527":"pressure:inlet_RCA:RCA","7528":"pressure:inlet_RCA:RCA","7529":"pressure:inlet_RCA:RCA","7530":"pressure:inlet_RCA:RCA","7531":"pressure:inlet_RCA:RCA","7532":"pressure:inlet_RCA:RCA","7533":"pressure:inlet_RCA:RCA","7534":"pressure:inlet_RCA:RCA","7535":"pressure:inlet_RCA:RCA","7536":"pressure:inlet_RCA:RCA","7537":"pressure:inlet_RCA:RCA","7538":"pressure:inlet_RCA:RCA","7539":"pressure:inlet_RCA:RCA","7540":"pressure:inlet_RCA:RCA","7541":"pressure:inlet_RCA:RCA","7542":"pressure:inlet_RCA:RCA","7543":"pressure:inlet_RCA:RCA","7544":"pressure:inlet_RCA:RCA","7545":"pressure:inlet_RCA:RCA","7546":"pressure:inlet_RCA:RCA","7547":"pressure:inlet_RCA:RCA","7548":"pressure:inlet_RCA:RCA","7549":"pressure:inlet_RCA:RCA","7550":"pressure:inlet_RCA:RCA","7551":"pressure:inlet_RCA:RCA","7552":"pressure:inlet_RCA:RCA","7553":"pressure:inlet_RCA:RCA","7554":"pressure:inlet_RCA:RCA","7555":"pressure:inlet_RCA:RCA","7556":"pressure:inlet_RCA:RCA","7557":"pressure:inlet_RCA:RCA","7558":"pressure:inlet_RCA:RCA","7559":"pressure:inlet_RCA:RCA","7560":"pressure:inlet_RCA:RCA","7561":"pressure:inlet_RCA:RCA","7562":"pressure:inlet_RCA:RCA","7563":"pressure:inlet_RCA:RCA","7564":"pressure:inlet_RCA:RCA","7565":"pressure:inlet_RCA:RCA","7566":"pressure:inlet_RCA:RCA","7567":"pressure:inlet_RCA:RCA","7568":"pressure:inlet_RCA:RCA","7569":"pressure:inlet_RCA:RCA","7570":"pressure:inlet_RCA:RCA","7571":"pressure:inlet_RCA:RCA","7572":"pressure:inlet_RCA:RCA","7573":"pressure:inlet_RCA:RCA","7574":"pressure:inlet_RCA:RCA","7575":"pressure:inlet_RCA:RCA","7576":"pressure:inlet_RCA:RCA","7577":"pressure:inlet_RCA:RCA","7578":"pressure:inlet_RCA:RCA","7579":"pressure:inlet_RCA:RCA","7580":"pressure:inlet_RCA:RCA","7581":"pressure:inlet_RCA:RCA","7582":"pressure:inlet_RCA:RCA","7583":"pressure:inlet_RCA:RCA","7584":"pressure:inlet_RCA:RCA","7585":"pressure:inlet_RCA:RCA","7586":"pressure:inlet_RCA:RCA","7587":"pressure:inlet_RCA:RCA","7588":"pressure:inlet_RCA:RCA","7589":"pressure:inlet_RCA:RCA","7590":"pressure:inlet_RCA:RCA","7591":"pressure:inlet_RCA:RCA","7592":"pressure:inlet_RCA:RCA","7593":"pressure:inlet_RCA:RCA","7594":"pressure:inlet_RCA:RCA","7595":"pressure:inlet_RCA:RCA","7596":"pressure:inlet_RCA:RCA","7597":"pressure:inlet_RCA:RCA","7598":"pressure:inlet_RCA:RCA","7599":"pressure:inlet_RCA:RCA","7600":"pressure:inlet_RCA:RCA","7601":"pressure:inlet_RCA:RCA","7602":"pressure:inlet_RCA:RCA","7603":"pressure:inlet_RCA:RCA","7604":"pressure:inlet_RCA:RCA","7605":"pressure:inlet_RCA:RCA","7606":"pressure:inlet_RCA:RCA","7607":"pressure:inlet_RCA:RCA","7608":"pressure:inlet_RCA:RCA","7609":"pressure:inlet_RCA:RCA","7610":"pressure:inlet_RCA:RCA","7611":"pressure:inlet_RCA:RCA","7612":"pressure:inlet_RCA:RCA","7613":"pressure:inlet_RCA:RCA","7614":"pressure:inlet_RCA:RCA","7615":"pressure:inlet_RCA:RCA","7616":"pressure:inlet_RCA:RCA","7617":"pressure:inlet_RCA:RCA","7618":"pressure:inlet_RCA:RCA","7619":"pressure:inlet_RCA:RCA","7620":"pressure:inlet_RCA:RCA","7621":"pressure:inlet_RCA:RCA","7622":"pressure:inlet_RCA:RCA","7623":"pressure:inlet_RCA:RCA","7624":"pressure:inlet_RCA:RCA","7625":"pressure:inlet_RCA:RCA","7626":"pressure:inlet_RCA:RCA","7627":"pressure:inlet_RCA:RCA","7628":"pressure:inlet_RCA:RCA","7629":"pressure:inlet_RCA:RCA","7630":"pressure:inlet_RCA:RCA","7631":"pressure:inlet_RCA:RCA","7632":"pressure:inlet_RCA:RCA","7633":"pressure:inlet_RCA:RCA","7634":"pressure:inlet_RCA:RCA","7635":"pressure:inlet_RCA:RCA","7636":"pressure:inlet_RCA:RCA","7637":"pressure:inlet_RCA:RCA","7638":"pressure:inlet_RCA:RCA","7639":"pressure:inlet_RCA:RCA","7640":"pressure:inlet_RCA:RCA","7641":"pressure:inlet_RCA:RCA","7642":"pressure:inlet_RCA:RCA","7643":"pressure:inlet_RCA:RCA","7644":"pressure:inlet_RCA:RCA","7645":"pressure:inlet_RCA:RCA","7646":"pressure:inlet_RCA:RCA","7647":"pressure:inlet_RCA:RCA","7648":"pressure:inlet_RCA:RCA","7649":"pressure:inlet_RCA:RCA","7650":"pressure:inlet_RCA:RCA","7651":"pressure:inlet_RCA:RCA","7652":"pressure:inlet_RCA:RCA","7653":"pressure:inlet_RCA:RCA","7654":"pressure:inlet_RCA:RCA","7655":"pressure:inlet_RCA:RCA","7656":"pressure:inlet_RCA:RCA","7657":"pressure:inlet_RCA:RCA","7658":"pressure:inlet_RCA:RCA","7659":"pressure:inlet_RCA:RCA","7660":"pressure:inlet_RCA:RCA","7661":"pressure:inlet_RCA:RCA","7662":"pressure:inlet_RCA:RCA","7663":"pressure:inlet_RCA:RCA","7664":"pressure:inlet_RCA:RCA","7665":"pressure:inlet_RCA:RCA","7666":"pressure:inlet_RCA:RCA","7667":"pressure:inlet_RCA:RCA","7668":"pressure:inlet_RCA:RCA","7669":"pressure:inlet_RCA:RCA","7670":"pressure:inlet_RCA:RCA","7671":"pressure:inlet_RCA:RCA","7672":"pressure:inlet_RCA:RCA","7673":"pressure:inlet_RCA:RCA","7674":"pressure:inlet_RCA:RCA","7675":"pressure:inlet_RCA:RCA","7676":"pressure:inlet_RCA:RCA","7677":"pressure:inlet_RCA:RCA","7678":"pressure:inlet_RCA:RCA","7679":"pressure:inlet_RCA:RCA","7680":"pressure:inlet_RCA:RCA","7681":"pressure:inlet_RCA:RCA","7682":"pressure:inlet_RCA:RCA","7683":"pressure:inlet_RCA:RCA","7684":"pressure:inlet_RCA:RCA","7685":"pressure:inlet_RCA:RCA","7686":"pressure:inlet_RCA:RCA","7687":"pressure:inlet_RCA:RCA","7688":"pressure:inlet_RCA:RCA","7689":"pressure:inlet_RCA:RCA","7690":"pressure:inlet_RCA:RCA","7691":"pressure:inlet_RCA:RCA","7692":"pressure:inlet_RCA:RCA","7693":"pressure:inlet_RCA:RCA","7694":"pressure:inlet_RCA:RCA","7695":"pressure:inlet_RCA:RCA","7696":"pressure:inlet_RCA:RCA","7697":"pressure:inlet_RCA:RCA","7698":"pressure:inlet_RCA:RCA","7699":"pressure:inlet_RCA:RCA","7700":"pressure:inlet_RCA:RCA","7701":"pressure:inlet_RCA:RCA","7702":"pressure:inlet_RCA:RCA","7703":"pressure:inlet_RCA:RCA","7704":"pressure:inlet_RCA:RCA","7705":"pressure:inlet_RCA:RCA","7706":"pressure:inlet_RCA:RCA","7707":"pressure:inlet_RCA:RCA","7708":"pressure:inlet_RCA:RCA","7709":"pressure:inlet_RCA:RCA","7710":"pressure:inlet_RCA:RCA","7711":"pressure:inlet_RCA:RCA","7712":"pressure:inlet_RCA:RCA","7713":"pressure:inlet_RCA:RCA","7714":"pressure:inlet_RCA:RCA","7715":"pressure:inlet_RCA:RCA","7716":"pressure:inlet_RCA:RCA","7717":"pressure:inlet_RCA:RCA","7718":"pressure:inlet_RCA:RCA","7719":"pressure:inlet_RCA:RCA","7720":"pressure:inlet_RCA:RCA","7721":"pressure:inlet_RCA:RCA","7722":"pressure:inlet_RCA:RCA","7723":"pressure:inlet_RCA:RCA","7724":"pressure:inlet_RCA:RCA","7725":"pressure:inlet_RCA:RCA","7726":"pressure:inlet_RCA:RCA","7727":"pressure:inlet_RCA:RCA","7728":"pressure:inlet_RCA:RCA","7729":"pressure:inlet_RCA:RCA","7730":"pressure:inlet_RCA:RCA","7731":"pressure:inlet_RCA:RCA","7732":"pressure:inlet_RCA:RCA","7733":"pressure:inlet_RCA:RCA","7734":"pressure:inlet_RCA:RCA","7735":"pressure:inlet_RCA:RCA","7736":"pressure:inlet_RCA:RCA","7737":"pressure:inlet_RCA:RCA","7738":"pressure:inlet_RCA:RCA","7739":"pressure:inlet_RCA:RCA","7740":"pressure:inlet_RCA:RCA","7741":"pressure:inlet_RCA:RCA","7742":"pressure:inlet_RCA:RCA","7743":"pressure:inlet_RCA:RCA","7744":"pressure:inlet_RCA:RCA","7745":"pressure:inlet_RCA:RCA","7746":"pressure:inlet_RCA:RCA","7747":"pressure:inlet_RCA:RCA","7748":"pressure:inlet_RCA:RCA","7749":"pressure:inlet_RCA:RCA","7750":"pressure:inlet_RCA:RCA","7751":"pressure:inlet_RCA:RCA","7752":"pressure:inlet_RCA:RCA","7753":"pressure:inlet_RCA:RCA","7754":"pressure:inlet_RCA:RCA","7755":"pressure:inlet_RCA:RCA","7756":"pressure:inlet_RCA:RCA","7757":"pressure:inlet_RCA:RCA","7758":"pressure:inlet_RCA:RCA","7759":"pressure:inlet_RCA:RCA","7760":"pressure:inlet_RCA:RCA","7761":"pressure:inlet_RCA:RCA","7762":"pressure:inlet_RCA:RCA","7763":"pressure:inlet_RCA:RCA","7764":"pressure:inlet_RCA:RCA","7765":"pressure:inlet_RCA:RCA","7766":"pressure:inlet_RCA:RCA","7767":"pressure:inlet_RCA:RCA","7768":"pressure:inlet_RCA:RCA","7769":"pressure:inlet_RCA:RCA","7770":"pressure:inlet_RCA:RCA","7771":"pressure:inlet_RCA:RCA","7772":"pressure:inlet_RCA:RCA","7773":"pressure:inlet_RCA:RCA","7774":"pressure:inlet_RCA:RCA","7775":"pressure:inlet_RCA:RCA","7776":"pressure:inlet_RCA:RCA","7777":"pressure:inlet_RCA:RCA","7778":"pressure:inlet_RCA:RCA","7779":"pressure:inlet_RCA:RCA","7780":"pressure:inlet_RCA:RCA","7781":"pressure:inlet_RCA:RCA","7782":"pressure:inlet_RCA:RCA","7783":"pressure:inlet_RCA:RCA","7784":"pressure:inlet_RCA:RCA","7785":"pressure:inlet_RCA:RCA","7786":"pressure:inlet_RCA:RCA","7787":"pressure:inlet_RCA:RCA","7788":"pressure:inlet_RCA:RCA","7789":"pressure:inlet_RCA:RCA","7790":"pressure:inlet_RCA:RCA","7791":"pressure:inlet_RCA:RCA","7792":"pressure:inlet_RCA:RCA","7793":"pressure:inlet_RCA:RCA","7794":"pressure:inlet_RCA:RCA","7795":"pressure:inlet_RCA:RCA","7796":"pressure:inlet_RCA:RCA","7797":"pressure:inlet_RCA:RCA","7798":"pressure:inlet_RCA:RCA","7799":"pressure:inlet_RCA:RCA","7800":"pressure:inlet_RCA:RCA","7801":"pressure:inlet_RCA:RCA","7802":"pressure:inlet_RCA:RCA","7803":"pressure:inlet_RCA:RCA","7804":"pressure:inlet_RCA:RCA","7805":"pressure:inlet_RCA:RCA","7806":"pressure:inlet_RCA:RCA","7807":"pressure:inlet_RCA:RCA","7808":"pressure:inlet_RCA:RCA","7809":"pressure:inlet_RCA:RCA","7810":"pressure:inlet_RCA:RCA","7811":"pressure:inlet_RCA:RCA","7812":"pressure:inlet_RCA:RCA","7813":"pressure:inlet_RCA:RCA","7814":"pressure:inlet_RCA:RCA","7815":"pressure:inlet_RCA:RCA","7816":"pressure:inlet_RCA:RCA","7817":"pressure:inlet_RCA:RCA","7818":"pressure:inlet_RCA:RCA","7819":"pressure:inlet_RCA:RCA","7820":"pressure:inlet_RCA:RCA","7821":"pressure:inlet_RCA:RCA","7822":"pressure:inlet_RCA:RCA","7823":"pressure:inlet_RCA:RCA","7824":"pressure:inlet_RCA:RCA","7825":"pressure:inlet_RCA:RCA","7826":"pressure:inlet_RCA:RCA","7827":"pressure:inlet_RCA:RCA","7828":"pressure:inlet_RCA:RCA","7829":"pressure:inlet_RCA:RCA","7830":"pressure:inlet_RCA:RCA","7831":"pressure:inlet_RCA:RCA","7832":"pressure:inlet_RCA:RCA","7833":"pressure:inlet_RCA:RCA","7834":"pressure:inlet_RCA:RCA","7835":"pressure:inlet_RCA:RCA","7836":"pressure:inlet_RCA:RCA","7837":"pressure:inlet_RCA:RCA","7838":"pressure:inlet_RCA:RCA","7839":"pressure:inlet_RCA:RCA","7840":"pressure:inlet_RCA:RCA","7841":"pressure:inlet_RCA:RCA","7842":"pressure:inlet_RCA:RCA","7843":"pressure:inlet_RCA:RCA","7844":"pressure:inlet_RCA:RCA","7845":"pressure:inlet_RCA:RCA","7846":"pressure:inlet_RCA:RCA","7847":"pressure:inlet_RCA:RCA","7848":"pressure:inlet_RCA:RCA","7849":"pressure:inlet_RCA:RCA","7850":"pressure:inlet_RCA:RCA","7851":"pressure:inlet_RCA:RCA","7852":"pressure:inlet_RCA:RCA","7853":"pressure:inlet_RCA:RCA","7854":"pressure:inlet_RCA:RCA","7855":"pressure:inlet_RCA:RCA","7856":"pressure:inlet_RCA:RCA","7857":"pressure:inlet_RCA:RCA","7858":"pressure:inlet_RCA:RCA","7859":"pressure:inlet_RCA:RCA","7860":"pressure:inlet_RCA:RCA","7861":"pressure:inlet_RCA:RCA","7862":"pressure:inlet_RCA:RCA","7863":"pressure:inlet_RCA:RCA","7864":"pressure:inlet_RCA:RCA","7865":"pressure:inlet_RCA:RCA","7866":"pressure:inlet_RCA:RCA","7867":"pressure:inlet_RCA:RCA","7868":"pressure:inlet_RCA:RCA","7869":"pressure:inlet_RCA:RCA","7870":"pressure:inlet_RCA:RCA","7871":"pressure:inlet_RCA:RCA","7872":"pressure:inlet_RCA:RCA","7873":"pressure:inlet_RCA:RCA","7874":"pressure:inlet_RCA:RCA","7875":"pressure:inlet_RCA:RCA","7876":"pressure:inlet_RCA:RCA","7877":"pressure:inlet_RCA:RCA","7878":"pressure:inlet_RCA:RCA","7879":"pressure:inlet_RCA:RCA","7880":"pressure:inlet_RCA:RCA","7881":"pressure:inlet_RCA:RCA","7882":"pressure:inlet_RCA:RCA","7883":"pressure:inlet_RCA:RCA","7884":"pressure:inlet_RCA:RCA","7885":"pressure:inlet_RCA:RCA","7886":"pressure:inlet_RCA:RCA","7887":"pressure:inlet_RCA:RCA","7888":"pressure:inlet_RCA:RCA","7889":"pressure:inlet_RCA:RCA","7890":"pressure:inlet_RCA:RCA","7891":"pressure:inlet_RCA:RCA","7892":"pressure:inlet_RCA:RCA","7893":"pressure:inlet_RCA:RCA","7894":"pressure:inlet_RCA:RCA","7895":"pressure:inlet_RCA:RCA","7896":"pressure:inlet_RCA:RCA","7897":"pressure:inlet_RCA:RCA","7898":"pressure:inlet_RCA:RCA","7899":"pressure:inlet_RCA:RCA","7900":"pressure:inlet_RCA:RCA","7901":"pressure:inlet_RCA:RCA","7902":"pressure:inlet_RCA:RCA","7903":"pressure:inlet_RCA:RCA","7904":"pressure:inlet_RCA:RCA","7905":"pressure:inlet_RCA:RCA","7906":"pressure:inlet_RCA:RCA","7907":"pressure:inlet_RCA:RCA","7908":"pressure:inlet_RCA:RCA","7909":"pressure:inlet_RCA:RCA","7910":"pressure:inlet_RCA:RCA","7911":"pressure:inlet_RCA:RCA","7912":"pressure:inlet_RCA:RCA","7913":"pressure:inlet_RCA:RCA","7914":"pressure:inlet_RCA:RCA","7915":"pressure:inlet_RCA:RCA","7916":"pressure:inlet_RCA:RCA","7917":"pressure:inlet_RCA:RCA","7918":"pressure:inlet_RCA:RCA","7919":"pressure:inlet_RCA:RCA","7920":"pressure:inlet_RCA:RCA","7921":"pressure:inlet_RCA:RCA","7922":"pressure:inlet_RCA:RCA","7923":"pressure:inlet_RCA:RCA","7924":"pressure:inlet_RCA:RCA","7925":"pressure:inlet_RCA:RCA","7926":"pressure:inlet_RCA:RCA","7927":"pressure:inlet_RCA:RCA","7928":"pressure:inlet_RCA:RCA","7929":"pressure:inlet_RCA:RCA","7930":"pressure:inlet_RCA:RCA","7931":"pressure:inlet_RCA:RCA","7932":"pressure:inlet_RCA:RCA","7933":"pressure:inlet_RCA:RCA","7934":"pressure:inlet_RCA:RCA","7935":"pressure:inlet_RCA:RCA","7936":"pressure:inlet_RCA:RCA","7937":"pressure:inlet_RCA:RCA","7938":"pressure:inlet_RCA:RCA","7939":"pressure:inlet_RCA:RCA","7940":"pressure:inlet_RCA:RCA","7941":"pressure:inlet_RCA:RCA","7942":"pressure:inlet_RCA:RCA","7943":"pressure:inlet_RCA:RCA","7944":"pressure:inlet_RCA:RCA","7945":"pressure:inlet_RCA:RCA","7946":"pressure:inlet_RCA:RCA","7947":"pressure:inlet_RCA:RCA","7948":"pressure:inlet_RCA:RCA","7949":"pressure:inlet_RCA:RCA","7950":"pressure:inlet_RCA:RCA","7951":"pressure:inlet_RCA:RCA","7952":"pressure:inlet_RCA:RCA","7953":"pressure:inlet_RCA:RCA","7954":"pressure:inlet_RCA:RCA","7955":"pressure:inlet_RCA:RCA","7956":"pressure:inlet_RCA:RCA","7957":"pressure:inlet_RCA:RCA","7958":"pressure:inlet_RCA:RCA","7959":"pressure:inlet_RCA:RCA","7960":"pressure:inlet_RCA:RCA","7961":"pressure:inlet_RCA:RCA","7962":"pressure:inlet_RCA:RCA","7963":"pressure:inlet_RCA:RCA","7964":"pressure:inlet_RCA:RCA","7965":"pressure:inlet_RCA:RCA","7966":"pressure:inlet_RCA:RCA","7967":"pressure:inlet_RCA:RCA","7968":"pressure:inlet_RCA:RCA","7969":"pressure:inlet_RCA:RCA","7970":"pressure:inlet_RCA:RCA","7971":"pressure:inlet_RCA:RCA","7972":"pressure:inlet_RCA:RCA","7973":"pressure:inlet_RCA:RCA","7974":"pressure:inlet_RCA:RCA","7975":"pressure:inlet_RCA:RCA","7976":"pressure:inlet_RCA:RCA","7977":"pressure:inlet_RCA:RCA","7978":"pressure:inlet_RCA:RCA","7979":"pressure:inlet_RCA:RCA","7980":"pressure:inlet_RCA:RCA","7981":"pressure:inlet_RCA:RCA","7982":"pressure:inlet_RCA:RCA","7983":"pressure:inlet_RCA:RCA","7984":"pressure:inlet_RCA:RCA","7985":"pressure:inlet_RCA:RCA","7986":"pressure:inlet_RCA:RCA","7987":"pressure:inlet_RCA:RCA","7988":"pressure:inlet_RCA:RCA","7989":"pressure:inlet_RCA:RCA","7990":"pressure:inlet_RCA:RCA","7991":"pressure:inlet_RCA:RCA","7992":"pressure:inlet_RCA:RCA","7993":"pressure:inlet_RCA:RCA","7994":"pressure:inlet_RCA:RCA","7995":"pressure:inlet_RCA:RCA","7996":"pressure:inlet_RCA:RCA","7997":"pressure:inlet_RCA:RCA","7998":"pressure:inlet_RCA:RCA","7999":"pressure:inlet_RCA:RCA","8000":"flow:J_heart_inlet:CLH","8001":"flow:J_heart_inlet:CLH","8002":"flow:J_heart_inlet:CLH","8003":"flow:J_heart_inlet:CLH","8004":"flow:J_heart_inlet:CLH","8005":"flow:J_heart_inlet:CLH","8006":"flow:J_heart_inlet:CLH","8007":"flow:J_heart_inlet:CLH","8008":"flow:J_heart_inlet:CLH","8009":"flow:J_heart_inlet:CLH","8010":"flow:J_heart_inlet:CLH","8011":"flow:J_heart_inlet:CLH","8012":"flow:J_heart_inlet:CLH","8013":"flow:J_heart_inlet:CLH","8014":"flow:J_heart_inlet:CLH","8015":"flow:J_heart_inlet:CLH","8016":"flow:J_heart_inlet:CLH","8017":"flow:J_heart_inlet:CLH","8018":"flow:J_heart_inlet:CLH","8019":"flow:J_heart_inlet:CLH","8020":"flow:J_heart_inlet:CLH","8021":"flow:J_heart_inlet:CLH","8022":"flow:J_heart_inlet:CLH","8023":"flow:J_heart_inlet:CLH","8024":"flow:J_heart_inlet:CLH","8025":"flow:J_heart_inlet:CLH","8026":"flow:J_heart_inlet:CLH","8027":"flow:J_heart_inlet:CLH","8028":"flow:J_heart_inlet:CLH","8029":"flow:J_heart_inlet:CLH","8030":"flow:J_heart_inlet:CLH","8031":"flow:J_heart_inlet:CLH","8032":"flow:J_heart_inlet:CLH","8033":"flow:J_heart_inlet:CLH","8034":"flow:J_heart_inlet:CLH","8035":"flow:J_heart_inlet:CLH","8036":"flow:J_heart_inlet:CLH","8037":"flow:J_heart_inlet:CLH","8038":"flow:J_heart_inlet:CLH","8039":"flow:J_heart_inlet:CLH","8040":"flow:J_heart_inlet:CLH","8041":"flow:J_heart_inlet:CLH","8042":"flow:J_heart_inlet:CLH","8043":"flow:J_heart_inlet:CLH","8044":"flow:J_heart_inlet:CLH","8045":"flow:J_heart_inlet:CLH","8046":"flow:J_heart_inlet:CLH","8047":"flow:J_heart_inlet:CLH","8048":"flow:J_heart_inlet:CLH","8049":"flow:J_heart_inlet:CLH","8050":"flow:J_heart_inlet:CLH","8051":"flow:J_heart_inlet:CLH","8052":"flow:J_heart_inlet:CLH","8053":"flow:J_heart_inlet:CLH","8054":"flow:J_heart_inlet:CLH","8055":"flow:J_heart_inlet:CLH","8056":"flow:J_heart_inlet:CLH","8057":"flow:J_heart_inlet:CLH","8058":"flow:J_heart_inlet:CLH","8059":"flow:J_heart_inlet:CLH","8060":"flow:J_heart_inlet:CLH","8061":"flow:J_heart_inlet:CLH","8062":"flow:J_heart_inlet:CLH","8063":"flow:J_heart_inlet:CLH","8064":"flow:J_heart_inlet:CLH","8065":"flow:J_heart_inlet:CLH","8066":"flow:J_heart_inlet:CLH","8067":"flow:J_heart_inlet:CLH","8068":"flow:J_heart_inlet:CLH","8069":"flow:J_heart_inlet:CLH","8070":"flow:J_heart_inlet:CLH","8071":"flow:J_heart_inlet:CLH","8072":"flow:J_heart_inlet:CLH","8073":"flow:J_heart_inlet:CLH","8074":"flow:J_heart_inlet:CLH","8075":"flow:J_heart_inlet:CLH","8076":"flow:J_heart_inlet:CLH","8077":"flow:J_heart_inlet:CLH","8078":"flow:J_heart_inlet:CLH","8079":"flow:J_heart_inlet:CLH","8080":"flow:J_heart_inlet:CLH","8081":"flow:J_heart_inlet:CLH","8082":"flow:J_heart_inlet:CLH","8083":"flow:J_heart_inlet:CLH","8084":"flow:J_heart_inlet:CLH","8085":"flow:J_heart_inlet:CLH","8086":"flow:J_heart_inlet:CLH","8087":"flow:J_heart_inlet:CLH","8088":"flow:J_heart_inlet:CLH","8089":"flow:J_heart_inlet:CLH","8090":"flow:J_heart_inlet:CLH","8091":"flow:J_heart_inlet:CLH","8092":"flow:J_heart_inlet:CLH","8093":"flow:J_heart_inlet:CLH","8094":"flow:J_heart_inlet:CLH","8095":"flow:J_heart_inlet:CLH","8096":"flow:J_heart_inlet:CLH","8097":"flow:J_heart_inlet:CLH","8098":"flow:J_heart_inlet:CLH","8099":"flow:J_heart_inlet:CLH","8100":"flow:J_heart_inlet:CLH","8101":"flow:J_heart_inlet:CLH","8102":"flow:J_heart_inlet:CLH","8103":"flow:J_heart_inlet:CLH","8104":"flow:J_heart_inlet:CLH","8105":"flow:J_heart_inlet:CLH","8106":"flow:J_heart_inlet:CLH","8107":"flow:J_heart_inlet:CLH","8108":"flow:J_heart_inlet:CLH","8109":"flow:J_heart_inlet:CLH","8110":"flow:J_heart_inlet:CLH","8111":"flow:J_heart_inlet:CLH","8112":"flow:J_heart_inlet:CLH","8113":"flow:J_heart_inlet:CLH","8114":"flow:J_heart_inlet:CLH","8115":"flow:J_heart_inlet:CLH","8116":"flow:J_heart_inlet:CLH","8117":"flow:J_heart_inlet:CLH","8118":"flow:J_heart_inlet:CLH","8119":"flow:J_heart_inlet:CLH","8120":"flow:J_heart_inlet:CLH","8121":"flow:J_heart_inlet:CLH","8122":"flow:J_heart_inlet:CLH","8123":"flow:J_heart_inlet:CLH","8124":"flow:J_heart_inlet:CLH","8125":"flow:J_heart_inlet:CLH","8126":"flow:J_heart_inlet:CLH","8127":"flow:J_heart_inlet:CLH","8128":"flow:J_heart_inlet:CLH","8129":"flow:J_heart_inlet:CLH","8130":"flow:J_heart_inlet:CLH","8131":"flow:J_heart_inlet:CLH","8132":"flow:J_heart_inlet:CLH","8133":"flow:J_heart_inlet:CLH","8134":"flow:J_heart_inlet:CLH","8135":"flow:J_heart_inlet:CLH","8136":"flow:J_heart_inlet:CLH","8137":"flow:J_heart_inlet:CLH","8138":"flow:J_heart_inlet:CLH","8139":"flow:J_heart_inlet:CLH","8140":"flow:J_heart_inlet:CLH","8141":"flow:J_heart_inlet:CLH","8142":"flow:J_heart_inlet:CLH","8143":"flow:J_heart_inlet:CLH","8144":"flow:J_heart_inlet:CLH","8145":"flow:J_heart_inlet:CLH","8146":"flow:J_heart_inlet:CLH","8147":"flow:J_heart_inlet:CLH","8148":"flow:J_heart_inlet:CLH","8149":"flow:J_heart_inlet:CLH","8150":"flow:J_heart_inlet:CLH","8151":"flow:J_heart_inlet:CLH","8152":"flow:J_heart_inlet:CLH","8153":"flow:J_heart_inlet:CLH","8154":"flow:J_heart_inlet:CLH","8155":"flow:J_heart_inlet:CLH","8156":"flow:J_heart_inlet:CLH","8157":"flow:J_heart_inlet:CLH","8158":"flow:J_heart_inlet:CLH","8159":"flow:J_heart_inlet:CLH","8160":"flow:J_heart_inlet:CLH","8161":"flow:J_heart_inlet:CLH","8162":"flow:J_heart_inlet:CLH","8163":"flow:J_heart_inlet:CLH","8164":"flow:J_heart_inlet:CLH","8165":"flow:J_heart_inlet:CLH","8166":"flow:J_heart_inlet:CLH","8167":"flow:J_heart_inlet:CLH","8168":"flow:J_heart_inlet:CLH","8169":"flow:J_heart_inlet:CLH","8170":"flow:J_heart_inlet:CLH","8171":"flow:J_heart_inlet:CLH","8172":"flow:J_heart_inlet:CLH","8173":"flow:J_heart_inlet:CLH","8174":"flow:J_heart_inlet:CLH","8175":"flow:J_heart_inlet:CLH","8176":"flow:J_heart_inlet:CLH","8177":"flow:J_heart_inlet:CLH","8178":"flow:J_heart_inlet:CLH","8179":"flow:J_heart_inlet:CLH","8180":"flow:J_heart_inlet:CLH","8181":"flow:J_heart_inlet:CLH","8182":"flow:J_heart_inlet:CLH","8183":"flow:J_heart_inlet:CLH","8184":"flow:J_heart_inlet:CLH","8185":"flow:J_heart_inlet:CLH","8186":"flow:J_heart_inlet:CLH","8187":"flow:J_heart_inlet:CLH","8188":"flow:J_heart_inlet:CLH","8189":"flow:J_heart_inlet:CLH","8190":"flow:J_heart_inlet:CLH","8191":"flow:J_heart_inlet:CLH","8192":"flow:J_heart_inlet:CLH","8193":"flow:J_heart_inlet:CLH","8194":"flow:J_heart_inlet:CLH","8195":"flow:J_heart_inlet:CLH","8196":"flow:J_heart_inlet:CLH","8197":"flow:J_heart_inlet:CLH","8198":"flow:J_heart_inlet:CLH","8199":"flow:J_heart_inlet:CLH","8200":"flow:J_heart_inlet:CLH","8201":"flow:J_heart_inlet:CLH","8202":"flow:J_heart_inlet:CLH","8203":"flow:J_heart_inlet:CLH","8204":"flow:J_heart_inlet:CLH","8205":"flow:J_heart_inlet:CLH","8206":"flow:J_heart_inlet:CLH","8207":"flow:J_heart_inlet:CLH","8208":"flow:J_heart_inlet:CLH","8209":"flow:J_heart_inlet:CLH","8210":"flow:J_heart_inlet:CLH","8211":"flow:J_heart_inlet:CLH","8212":"flow:J_heart_inlet:CLH","8213":"flow:J_heart_inlet:CLH","8214":"flow:J_heart_inlet:CLH","8215":"flow:J_heart_inlet:CLH","8216":"flow:J_heart_inlet:CLH","8217":"flow:J_heart_inlet:CLH","8218":"flow:J_heart_inlet:CLH","8219":"flow:J_heart_inlet:CLH","8220":"flow:J_heart_inlet:CLH","8221":"flow:J_heart_inlet:CLH","8222":"flow:J_heart_inlet:CLH","8223":"flow:J_heart_inlet:CLH","8224":"flow:J_heart_inlet:CLH","8225":"flow:J_heart_inlet:CLH","8226":"flow:J_heart_inlet:CLH","8227":"flow:J_heart_inlet:CLH","8228":"flow:J_heart_inlet:CLH","8229":"flow:J_heart_inlet:CLH","8230":"flow:J_heart_inlet:CLH","8231":"flow:J_heart_inlet:CLH","8232":"flow:J_heart_inlet:CLH","8233":"flow:J_heart_inlet:CLH","8234":"flow:J_heart_inlet:CLH","8235":"flow:J_heart_inlet:CLH","8236":"flow:J_heart_inlet:CLH","8237":"flow:J_heart_inlet:CLH","8238":"flow:J_heart_inlet:CLH","8239":"flow:J_heart_inlet:CLH","8240":"flow:J_heart_inlet:CLH","8241":"flow:J_heart_inlet:CLH","8242":"flow:J_heart_inlet:CLH","8243":"flow:J_heart_inlet:CLH","8244":"flow:J_heart_inlet:CLH","8245":"flow:J_heart_inlet:CLH","8246":"flow:J_heart_inlet:CLH","8247":"flow:J_heart_inlet:CLH","8248":"flow:J_heart_inlet:CLH","8249":"flow:J_heart_inlet:CLH","8250":"flow:J_heart_inlet:CLH","8251":"flow:J_heart_inlet:CLH","8252":"flow:J_heart_inlet:CLH","8253":"flow:J_heart_inlet:CLH","8254":"flow:J_heart_inlet:CLH","8255":"flow:J_heart_inlet:CLH","8256":"flow:J_heart_inlet:CLH","8257":"flow:J_heart_inlet:CLH","8258":"flow:J_heart_inlet:CLH","8259":"flow:J_heart_inlet:CLH","8260":"flow:J_heart_inlet:CLH","8261":"flow:J_heart_inlet:CLH","8262":"flow:J_heart_inlet:CLH","8263":"flow:J_heart_inlet:CLH","8264":"flow:J_heart_inlet:CLH","8265":"flow:J_heart_inlet:CLH","8266":"flow:J_heart_inlet:CLH","8267":"flow:J_heart_inlet:CLH","8268":"flow:J_heart_inlet:CLH","8269":"flow:J_heart_inlet:CLH","8270":"flow:J_heart_inlet:CLH","8271":"flow:J_heart_inlet:CLH","8272":"flow:J_heart_inlet:CLH","8273":"flow:J_heart_inlet:CLH","8274":"flow:J_heart_inlet:CLH","8275":"flow:J_heart_inlet:CLH","8276":"flow:J_heart_inlet:CLH","8277":"flow:J_heart_inlet:CLH","8278":"flow:J_heart_inlet:CLH","8279":"flow:J_heart_inlet:CLH","8280":"flow:J_heart_inlet:CLH","8281":"flow:J_heart_inlet:CLH","8282":"flow:J_heart_inlet:CLH","8283":"flow:J_heart_inlet:CLH","8284":"flow:J_heart_inlet:CLH","8285":"flow:J_heart_inlet:CLH","8286":"flow:J_heart_inlet:CLH","8287":"flow:J_heart_inlet:CLH","8288":"flow:J_heart_inlet:CLH","8289":"flow:J_heart_inlet:CLH","8290":"flow:J_heart_inlet:CLH","8291":"flow:J_heart_inlet:CLH","8292":"flow:J_heart_inlet:CLH","8293":"flow:J_heart_inlet:CLH","8294":"flow:J_heart_inlet:CLH","8295":"flow:J_heart_inlet:CLH","8296":"flow:J_heart_inlet:CLH","8297":"flow:J_heart_inlet:CLH","8298":"flow:J_heart_inlet:CLH","8299":"flow:J_heart_inlet:CLH","8300":"flow:J_heart_inlet:CLH","8301":"flow:J_heart_inlet:CLH","8302":"flow:J_heart_inlet:CLH","8303":"flow:J_heart_inlet:CLH","8304":"flow:J_heart_inlet:CLH","8305":"flow:J_heart_inlet:CLH","8306":"flow:J_heart_inlet:CLH","8307":"flow:J_heart_inlet:CLH","8308":"flow:J_heart_inlet:CLH","8309":"flow:J_heart_inlet:CLH","8310":"flow:J_heart_inlet:CLH","8311":"flow:J_heart_inlet:CLH","8312":"flow:J_heart_inlet:CLH","8313":"flow:J_heart_inlet:CLH","8314":"flow:J_heart_inlet:CLH","8315":"flow:J_heart_inlet:CLH","8316":"flow:J_heart_inlet:CLH","8317":"flow:J_heart_inlet:CLH","8318":"flow:J_heart_inlet:CLH","8319":"flow:J_heart_inlet:CLH","8320":"flow:J_heart_inlet:CLH","8321":"flow:J_heart_inlet:CLH","8322":"flow:J_heart_inlet:CLH","8323":"flow:J_heart_inlet:CLH","8324":"flow:J_heart_inlet:CLH","8325":"flow:J_heart_inlet:CLH","8326":"flow:J_heart_inlet:CLH","8327":"flow:J_heart_inlet:CLH","8328":"flow:J_heart_inlet:CLH","8329":"flow:J_heart_inlet:CLH","8330":"flow:J_heart_inlet:CLH","8331":"flow:J_heart_inlet:CLH","8332":"flow:J_heart_inlet:CLH","8333":"flow:J_heart_inlet:CLH","8334":"flow:J_heart_inlet:CLH","8335":"flow:J_heart_inlet:CLH","8336":"flow:J_heart_inlet:CLH","8337":"flow:J_heart_inlet:CLH","8338":"flow:J_heart_inlet:CLH","8339":"flow:J_heart_inlet:CLH","8340":"flow:J_heart_inlet:CLH","8341":"flow:J_heart_inlet:CLH","8342":"flow:J_heart_inlet:CLH","8343":"flow:J_heart_inlet:CLH","8344":"flow:J_heart_inlet:CLH","8345":"flow:J_heart_inlet:CLH","8346":"flow:J_heart_inlet:CLH","8347":"flow:J_heart_inlet:CLH","8348":"flow:J_heart_inlet:CLH","8349":"flow:J_heart_inlet:CLH","8350":"flow:J_heart_inlet:CLH","8351":"flow:J_heart_inlet:CLH","8352":"flow:J_heart_inlet:CLH","8353":"flow:J_heart_inlet:CLH","8354":"flow:J_heart_inlet:CLH","8355":"flow:J_heart_inlet:CLH","8356":"flow:J_heart_inlet:CLH","8357":"flow:J_heart_inlet:CLH","8358":"flow:J_heart_inlet:CLH","8359":"flow:J_heart_inlet:CLH","8360":"flow:J_heart_inlet:CLH","8361":"flow:J_heart_inlet:CLH","8362":"flow:J_heart_inlet:CLH","8363":"flow:J_heart_inlet:CLH","8364":"flow:J_heart_inlet:CLH","8365":"flow:J_heart_inlet:CLH","8366":"flow:J_heart_inlet:CLH","8367":"flow:J_heart_inlet:CLH","8368":"flow:J_heart_inlet:CLH","8369":"flow:J_heart_inlet:CLH","8370":"flow:J_heart_inlet:CLH","8371":"flow:J_heart_inlet:CLH","8372":"flow:J_heart_inlet:CLH","8373":"flow:J_heart_inlet:CLH","8374":"flow:J_heart_inlet:CLH","8375":"flow:J_heart_inlet:CLH","8376":"flow:J_heart_inlet:CLH","8377":"flow:J_heart_inlet:CLH","8378":"flow:J_heart_inlet:CLH","8379":"flow:J_heart_inlet:CLH","8380":"flow:J_heart_inlet:CLH","8381":"flow:J_heart_inlet:CLH","8382":"flow:J_heart_inlet:CLH","8383":"flow:J_heart_inlet:CLH","8384":"flow:J_heart_inlet:CLH","8385":"flow:J_heart_inlet:CLH","8386":"flow:J_heart_inlet:CLH","8387":"flow:J_heart_inlet:CLH","8388":"flow:J_heart_inlet:CLH","8389":"flow:J_heart_inlet:CLH","8390":"flow:J_heart_inlet:CLH","8391":"flow:J_heart_inlet:CLH","8392":"flow:J_heart_inlet:CLH","8393":"flow:J_heart_inlet:CLH","8394":"flow:J_heart_inlet:CLH","8395":"flow:J_heart_inlet:CLH","8396":"flow:J_heart_inlet:CLH","8397":"flow:J_heart_inlet:CLH","8398":"flow:J_heart_inlet:CLH","8399":"flow:J_heart_inlet:CLH","8400":"flow:J_heart_inlet:CLH","8401":"flow:J_heart_inlet:CLH","8402":"flow:J_heart_inlet:CLH","8403":"flow:J_heart_inlet:CLH","8404":"flow:J_heart_inlet:CLH","8405":"flow:J_heart_inlet:CLH","8406":"flow:J_heart_inlet:CLH","8407":"flow:J_heart_inlet:CLH","8408":"flow:J_heart_inlet:CLH","8409":"flow:J_heart_inlet:CLH","8410":"flow:J_heart_inlet:CLH","8411":"flow:J_heart_inlet:CLH","8412":"flow:J_heart_inlet:CLH","8413":"flow:J_heart_inlet:CLH","8414":"flow:J_heart_inlet:CLH","8415":"flow:J_heart_inlet:CLH","8416":"flow:J_heart_inlet:CLH","8417":"flow:J_heart_inlet:CLH","8418":"flow:J_heart_inlet:CLH","8419":"flow:J_heart_inlet:CLH","8420":"flow:J_heart_inlet:CLH","8421":"flow:J_heart_inlet:CLH","8422":"flow:J_heart_inlet:CLH","8423":"flow:J_heart_inlet:CLH","8424":"flow:J_heart_inlet:CLH","8425":"flow:J_heart_inlet:CLH","8426":"flow:J_heart_inlet:CLH","8427":"flow:J_heart_inlet:CLH","8428":"flow:J_heart_inlet:CLH","8429":"flow:J_heart_inlet:CLH","8430":"flow:J_heart_inlet:CLH","8431":"flow:J_heart_inlet:CLH","8432":"flow:J_heart_inlet:CLH","8433":"flow:J_heart_inlet:CLH","8434":"flow:J_heart_inlet:CLH","8435":"flow:J_heart_inlet:CLH","8436":"flow:J_heart_inlet:CLH","8437":"flow:J_heart_inlet:CLH","8438":"flow:J_heart_inlet:CLH","8439":"flow:J_heart_inlet:CLH","8440":"flow:J_heart_inlet:CLH","8441":"flow:J_heart_inlet:CLH","8442":"flow:J_heart_inlet:CLH","8443":"flow:J_heart_inlet:CLH","8444":"flow:J_heart_inlet:CLH","8445":"flow:J_heart_inlet:CLH","8446":"flow:J_heart_inlet:CLH","8447":"flow:J_heart_inlet:CLH","8448":"flow:J_heart_inlet:CLH","8449":"flow:J_heart_inlet:CLH","8450":"flow:J_heart_inlet:CLH","8451":"flow:J_heart_inlet:CLH","8452":"flow:J_heart_inlet:CLH","8453":"flow:J_heart_inlet:CLH","8454":"flow:J_heart_inlet:CLH","8455":"flow:J_heart_inlet:CLH","8456":"flow:J_heart_inlet:CLH","8457":"flow:J_heart_inlet:CLH","8458":"flow:J_heart_inlet:CLH","8459":"flow:J_heart_inlet:CLH","8460":"flow:J_heart_inlet:CLH","8461":"flow:J_heart_inlet:CLH","8462":"flow:J_heart_inlet:CLH","8463":"flow:J_heart_inlet:CLH","8464":"flow:J_heart_inlet:CLH","8465":"flow:J_heart_inlet:CLH","8466":"flow:J_heart_inlet:CLH","8467":"flow:J_heart_inlet:CLH","8468":"flow:J_heart_inlet:CLH","8469":"flow:J_heart_inlet:CLH","8470":"flow:J_heart_inlet:CLH","8471":"flow:J_heart_inlet:CLH","8472":"flow:J_heart_inlet:CLH","8473":"flow:J_heart_inlet:CLH","8474":"flow:J_heart_inlet:CLH","8475":"flow:J_heart_inlet:CLH","8476":"flow:J_heart_inlet:CLH","8477":"flow:J_heart_inlet:CLH","8478":"flow:J_heart_inlet:CLH","8479":"flow:J_heart_inlet:CLH","8480":"flow:J_heart_inlet:CLH","8481":"flow:J_heart_inlet:CLH","8482":"flow:J_heart_inlet:CLH","8483":"flow:J_heart_inlet:CLH","8484":"flow:J_heart_inlet:CLH","8485":"flow:J_heart_inlet:CLH","8486":"flow:J_heart_inlet:CLH","8487":"flow:J_heart_inlet:CLH","8488":"flow:J_heart_inlet:CLH","8489":"flow:J_heart_inlet:CLH","8490":"flow:J_heart_inlet:CLH","8491":"flow:J_heart_inlet:CLH","8492":"flow:J_heart_inlet:CLH","8493":"flow:J_heart_inlet:CLH","8494":"flow:J_heart_inlet:CLH","8495":"flow:J_heart_inlet:CLH","8496":"flow:J_heart_inlet:CLH","8497":"flow:J_heart_inlet:CLH","8498":"flow:J_heart_inlet:CLH","8499":"flow:J_heart_inlet:CLH","8500":"flow:J_heart_inlet:CLH","8501":"flow:J_heart_inlet:CLH","8502":"flow:J_heart_inlet:CLH","8503":"flow:J_heart_inlet:CLH","8504":"flow:J_heart_inlet:CLH","8505":"flow:J_heart_inlet:CLH","8506":"flow:J_heart_inlet:CLH","8507":"flow:J_heart_inlet:CLH","8508":"flow:J_heart_inlet:CLH","8509":"flow:J_heart_inlet:CLH","8510":"flow:J_heart_inlet:CLH","8511":"flow:J_heart_inlet:CLH","8512":"flow:J_heart_inlet:CLH","8513":"flow:J_heart_inlet:CLH","8514":"flow:J_heart_inlet:CLH","8515":"flow:J_heart_inlet:CLH","8516":"flow:J_heart_inlet:CLH","8517":"flow:J_heart_inlet:CLH","8518":"flow:J_heart_inlet:CLH","8519":"flow:J_heart_inlet:CLH","8520":"flow:J_heart_inlet:CLH","8521":"flow:J_heart_inlet:CLH","8522":"flow:J_heart_inlet:CLH","8523":"flow:J_heart_inlet:CLH","8524":"flow:J_heart_inlet:CLH","8525":"flow:J_heart_inlet:CLH","8526":"flow:J_heart_inlet:CLH","8527":"flow:J_heart_inlet:CLH","8528":"flow:J_heart_inlet:CLH","8529":"flow:J_heart_inlet:CLH","8530":"flow:J_heart_inlet:CLH","8531":"flow:J_heart_inlet:CLH","8532":"flow:J_heart_inlet:CLH","8533":"flow:J_heart_inlet:CLH","8534":"flow:J_heart_inlet:CLH","8535":"flow:J_heart_inlet:CLH","8536":"flow:J_heart_inlet:CLH","8537":"flow:J_heart_inlet:CLH","8538":"flow:J_heart_inlet:CLH","8539":"flow:J_heart_inlet:CLH","8540":"flow:J_heart_inlet:CLH","8541":"flow:J_heart_inlet:CLH","8542":"flow:J_heart_inlet:CLH","8543":"flow:J_heart_inlet:CLH","8544":"flow:J_heart_inlet:CLH","8545":"flow:J_heart_inlet:CLH","8546":"flow:J_heart_inlet:CLH","8547":"flow:J_heart_inlet:CLH","8548":"flow:J_heart_inlet:CLH","8549":"flow:J_heart_inlet:CLH","8550":"flow:J_heart_inlet:CLH","8551":"flow:J_heart_inlet:CLH","8552":"flow:J_heart_inlet:CLH","8553":"flow:J_heart_inlet:CLH","8554":"flow:J_heart_inlet:CLH","8555":"flow:J_heart_inlet:CLH","8556":"flow:J_heart_inlet:CLH","8557":"flow:J_heart_inlet:CLH","8558":"flow:J_heart_inlet:CLH","8559":"flow:J_heart_inlet:CLH","8560":"flow:J_heart_inlet:CLH","8561":"flow:J_heart_inlet:CLH","8562":"flow:J_heart_inlet:CLH","8563":"flow:J_heart_inlet:CLH","8564":"flow:J_heart_inlet:CLH","8565":"flow:J_heart_inlet:CLH","8566":"flow:J_heart_inlet:CLH","8567":"flow:J_heart_inlet:CLH","8568":"flow:J_heart_inlet:CLH","8569":"flow:J_heart_inlet:CLH","8570":"flow:J_heart_inlet:CLH","8571":"flow:J_heart_inlet:CLH","8572":"flow:J_heart_inlet:CLH","8573":"flow:J_heart_inlet:CLH","8574":"flow:J_heart_inlet:CLH","8575":"flow:J_heart_inlet:CLH","8576":"flow:J_heart_inlet:CLH","8577":"flow:J_heart_inlet:CLH","8578":"flow:J_heart_inlet:CLH","8579":"flow:J_heart_inlet:CLH","8580":"flow:J_heart_inlet:CLH","8581":"flow:J_heart_inlet:CLH","8582":"flow:J_heart_inlet:CLH","8583":"flow:J_heart_inlet:CLH","8584":"flow:J_heart_inlet:CLH","8585":"flow:J_heart_inlet:CLH","8586":"flow:J_heart_inlet:CLH","8587":"flow:J_heart_inlet:CLH","8588":"flow:J_heart_inlet:CLH","8589":"flow:J_heart_inlet:CLH","8590":"flow:J_heart_inlet:CLH","8591":"flow:J_heart_inlet:CLH","8592":"flow:J_heart_inlet:CLH","8593":"flow:J_heart_inlet:CLH","8594":"flow:J_heart_inlet:CLH","8595":"flow:J_heart_inlet:CLH","8596":"flow:J_heart_inlet:CLH","8597":"flow:J_heart_inlet:CLH","8598":"flow:J_heart_inlet:CLH","8599":"flow:J_heart_inlet:CLH","8600":"flow:J_heart_inlet:CLH","8601":"flow:J_heart_inlet:CLH","8602":"flow:J_heart_inlet:CLH","8603":"flow:J_heart_inlet:CLH","8604":"flow:J_heart_inlet:CLH","8605":"flow:J_heart_inlet:CLH","8606":"flow:J_heart_inlet:CLH","8607":"flow:J_heart_inlet:CLH","8608":"flow:J_heart_inlet:CLH","8609":"flow:J_heart_inlet:CLH","8610":"flow:J_heart_inlet:CLH","8611":"flow:J_heart_inlet:CLH","8612":"flow:J_heart_inlet:CLH","8613":"flow:J_heart_inlet:CLH","8614":"flow:J_heart_inlet:CLH","8615":"flow:J_heart_inlet:CLH","8616":"flow:J_heart_inlet:CLH","8617":"flow:J_heart_inlet:CLH","8618":"flow:J_heart_inlet:CLH","8619":"flow:J_heart_inlet:CLH","8620":"flow:J_heart_inlet:CLH","8621":"flow:J_heart_inlet:CLH","8622":"flow:J_heart_inlet:CLH","8623":"flow:J_heart_inlet:CLH","8624":"flow:J_heart_inlet:CLH","8625":"flow:J_heart_inlet:CLH","8626":"flow:J_heart_inlet:CLH","8627":"flow:J_heart_inlet:CLH","8628":"flow:J_heart_inlet:CLH","8629":"flow:J_heart_inlet:CLH","8630":"flow:J_heart_inlet:CLH","8631":"flow:J_heart_inlet:CLH","8632":"flow:J_heart_inlet:CLH","8633":"flow:J_heart_inlet:CLH","8634":"flow:J_heart_inlet:CLH","8635":"flow:J_heart_inlet:CLH","8636":"flow:J_heart_inlet:CLH","8637":"flow:J_heart_inlet:CLH","8638":"flow:J_heart_inlet:CLH","8639":"flow:J_heart_inlet:CLH","8640":"flow:J_heart_inlet:CLH","8641":"flow:J_heart_inlet:CLH","8642":"flow:J_heart_inlet:CLH","8643":"flow:J_heart_inlet:CLH","8644":"flow:J_heart_inlet:CLH","8645":"flow:J_heart_inlet:CLH","8646":"flow:J_heart_inlet:CLH","8647":"flow:J_heart_inlet:CLH","8648":"flow:J_heart_inlet:CLH","8649":"flow:J_heart_inlet:CLH","8650":"flow:J_heart_inlet:CLH","8651":"flow:J_heart_inlet:CLH","8652":"flow:J_heart_inlet:CLH","8653":"flow:J_heart_inlet:CLH","8654":"flow:J_heart_inlet:CLH","8655":"flow:J_heart_inlet:CLH","8656":"flow:J_heart_inlet:CLH","8657":"flow:J_heart_inlet:CLH","8658":"flow:J_heart_inlet:CLH","8659":"flow:J_heart_inlet:CLH","8660":"flow:J_heart_inlet:CLH","8661":"flow:J_heart_inlet:CLH","8662":"flow:J_heart_inlet:CLH","8663":"flow:J_heart_inlet:CLH","8664":"flow:J_heart_inlet:CLH","8665":"flow:J_heart_inlet:CLH","8666":"flow:J_heart_inlet:CLH","8667":"flow:J_heart_inlet:CLH","8668":"flow:J_heart_inlet:CLH","8669":"flow:J_heart_inlet:CLH","8670":"flow:J_heart_inlet:CLH","8671":"flow:J_heart_inlet:CLH","8672":"flow:J_heart_inlet:CLH","8673":"flow:J_heart_inlet:CLH","8674":"flow:J_heart_inlet:CLH","8675":"flow:J_heart_inlet:CLH","8676":"flow:J_heart_inlet:CLH","8677":"flow:J_heart_inlet:CLH","8678":"flow:J_heart_inlet:CLH","8679":"flow:J_heart_inlet:CLH","8680":"flow:J_heart_inlet:CLH","8681":"flow:J_heart_inlet:CLH","8682":"flow:J_heart_inlet:CLH","8683":"flow:J_heart_inlet:CLH","8684":"flow:J_heart_inlet:CLH","8685":"flow:J_heart_inlet:CLH","8686":"flow:J_heart_inlet:CLH","8687":"flow:J_heart_inlet:CLH","8688":"flow:J_heart_inlet:CLH","8689":"flow:J_heart_inlet:CLH","8690":"flow:J_heart_inlet:CLH","8691":"flow:J_heart_inlet:CLH","8692":"flow:J_heart_inlet:CLH","8693":"flow:J_heart_inlet:CLH","8694":"flow:J_heart_inlet:CLH","8695":"flow:J_heart_inlet:CLH","8696":"flow:J_heart_inlet:CLH","8697":"flow:J_heart_inlet:CLH","8698":"flow:J_heart_inlet:CLH","8699":"flow:J_heart_inlet:CLH","8700":"flow:J_heart_inlet:CLH","8701":"flow:J_heart_inlet:CLH","8702":"flow:J_heart_inlet:CLH","8703":"flow:J_heart_inlet:CLH","8704":"flow:J_heart_inlet:CLH","8705":"flow:J_heart_inlet:CLH","8706":"flow:J_heart_inlet:CLH","8707":"flow:J_heart_inlet:CLH","8708":"flow:J_heart_inlet:CLH","8709":"flow:J_heart_inlet:CLH","8710":"flow:J_heart_inlet:CLH","8711":"flow:J_heart_inlet:CLH","8712":"flow:J_heart_inlet:CLH","8713":"flow:J_heart_inlet:CLH","8714":"flow:J_heart_inlet:CLH","8715":"flow:J_heart_inlet:CLH","8716":"flow:J_heart_inlet:CLH","8717":"flow:J_heart_inlet:CLH","8718":"flow:J_heart_inlet:CLH","8719":"flow:J_heart_inlet:CLH","8720":"flow:J_heart_inlet:CLH","8721":"flow:J_heart_inlet:CLH","8722":"flow:J_heart_inlet:CLH","8723":"flow:J_heart_inlet:CLH","8724":"flow:J_heart_inlet:CLH","8725":"flow:J_heart_inlet:CLH","8726":"flow:J_heart_inlet:CLH","8727":"flow:J_heart_inlet:CLH","8728":"flow:J_heart_inlet:CLH","8729":"flow:J_heart_inlet:CLH","8730":"flow:J_heart_inlet:CLH","8731":"flow:J_heart_inlet:CLH","8732":"flow:J_heart_inlet:CLH","8733":"flow:J_heart_inlet:CLH","8734":"flow:J_heart_inlet:CLH","8735":"flow:J_heart_inlet:CLH","8736":"flow:J_heart_inlet:CLH","8737":"flow:J_heart_inlet:CLH","8738":"flow:J_heart_inlet:CLH","8739":"flow:J_heart_inlet:CLH","8740":"flow:J_heart_inlet:CLH","8741":"flow:J_heart_inlet:CLH","8742":"flow:J_heart_inlet:CLH","8743":"flow:J_heart_inlet:CLH","8744":"flow:J_heart_inlet:CLH","8745":"flow:J_heart_inlet:CLH","8746":"flow:J_heart_inlet:CLH","8747":"flow:J_heart_inlet:CLH","8748":"flow:J_heart_inlet:CLH","8749":"flow:J_heart_inlet:CLH","8750":"flow:J_heart_inlet:CLH","8751":"flow:J_heart_inlet:CLH","8752":"flow:J_heart_inlet:CLH","8753":"flow:J_heart_inlet:CLH","8754":"flow:J_heart_inlet:CLH","8755":"flow:J_heart_inlet:CLH","8756":"flow:J_heart_inlet:CLH","8757":"flow:J_heart_inlet:CLH","8758":"flow:J_heart_inlet:CLH","8759":"flow:J_heart_inlet:CLH","8760":"flow:J_heart_inlet:CLH","8761":"flow:J_heart_inlet:CLH","8762":"flow:J_heart_inlet:CLH","8763":"flow:J_heart_inlet:CLH","8764":"flow:J_heart_inlet:CLH","8765":"flow:J_heart_inlet:CLH","8766":"flow:J_heart_inlet:CLH","8767":"flow:J_heart_inlet:CLH","8768":"flow:J_heart_inlet:CLH","8769":"flow:J_heart_inlet:CLH","8770":"flow:J_heart_inlet:CLH","8771":"flow:J_heart_inlet:CLH","8772":"flow:J_heart_inlet:CLH","8773":"flow:J_heart_inlet:CLH","8774":"flow:J_heart_inlet:CLH","8775":"flow:J_heart_inlet:CLH","8776":"flow:J_heart_inlet:CLH","8777":"flow:J_heart_inlet:CLH","8778":"flow:J_heart_inlet:CLH","8779":"flow:J_heart_inlet:CLH","8780":"flow:J_heart_inlet:CLH","8781":"flow:J_heart_inlet:CLH","8782":"flow:J_heart_inlet:CLH","8783":"flow:J_heart_inlet:CLH","8784":"flow:J_heart_inlet:CLH","8785":"flow:J_heart_inlet:CLH","8786":"flow:J_heart_inlet:CLH","8787":"flow:J_heart_inlet:CLH","8788":"flow:J_heart_inlet:CLH","8789":"flow:J_heart_inlet:CLH","8790":"flow:J_heart_inlet:CLH","8791":"flow:J_heart_inlet:CLH","8792":"flow:J_heart_inlet:CLH","8793":"flow:J_heart_inlet:CLH","8794":"flow:J_heart_inlet:CLH","8795":"flow:J_heart_inlet:CLH","8796":"flow:J_heart_inlet:CLH","8797":"flow:J_heart_inlet:CLH","8798":"flow:J_heart_inlet:CLH","8799":"flow:J_heart_inlet:CLH","8800":"flow:J_heart_inlet:CLH","8801":"flow:J_heart_inlet:CLH","8802":"flow:J_heart_inlet:CLH","8803":"flow:J_heart_inlet:CLH","8804":"flow:J_heart_inlet:CLH","8805":"flow:J_heart_inlet:CLH","8806":"flow:J_heart_inlet:CLH","8807":"flow:J_heart_inlet:CLH","8808":"flow:J_heart_inlet:CLH","8809":"flow:J_heart_inlet:CLH","8810":"flow:J_heart_inlet:CLH","8811":"flow:J_heart_inlet:CLH","8812":"flow:J_heart_inlet:CLH","8813":"flow:J_heart_inlet:CLH","8814":"flow:J_heart_inlet:CLH","8815":"flow:J_heart_inlet:CLH","8816":"flow:J_heart_inlet:CLH","8817":"flow:J_heart_inlet:CLH","8818":"flow:J_heart_inlet:CLH","8819":"flow:J_heart_inlet:CLH","8820":"flow:J_heart_inlet:CLH","8821":"flow:J_heart_inlet:CLH","8822":"flow:J_heart_inlet:CLH","8823":"flow:J_heart_inlet:CLH","8824":"flow:J_heart_inlet:CLH","8825":"flow:J_heart_inlet:CLH","8826":"flow:J_heart_inlet:CLH","8827":"flow:J_heart_inlet:CLH","8828":"flow:J_heart_inlet:CLH","8829":"flow:J_heart_inlet:CLH","8830":"flow:J_heart_inlet:CLH","8831":"flow:J_heart_inlet:CLH","8832":"flow:J_heart_inlet:CLH","8833":"flow:J_heart_inlet:CLH","8834":"flow:J_heart_inlet:CLH","8835":"flow:J_heart_inlet:CLH","8836":"flow:J_heart_inlet:CLH","8837":"flow:J_heart_inlet:CLH","8838":"flow:J_heart_inlet:CLH","8839":"flow:J_heart_inlet:CLH","8840":"flow:J_heart_inlet:CLH","8841":"flow:J_heart_inlet:CLH","8842":"flow:J_heart_inlet:CLH","8843":"flow:J_heart_inlet:CLH","8844":"flow:J_heart_inlet:CLH","8845":"flow:J_heart_inlet:CLH","8846":"flow:J_heart_inlet:CLH","8847":"flow:J_heart_inlet:CLH","8848":"flow:J_heart_inlet:CLH","8849":"flow:J_heart_inlet:CLH","8850":"flow:J_heart_inlet:CLH","8851":"flow:J_heart_inlet:CLH","8852":"flow:J_heart_inlet:CLH","8853":"flow:J_heart_inlet:CLH","8854":"flow:J_heart_inlet:CLH","8855":"flow:J_heart_inlet:CLH","8856":"flow:J_heart_inlet:CLH","8857":"flow:J_heart_inlet:CLH","8858":"flow:J_heart_inlet:CLH","8859":"flow:J_heart_inlet:CLH","8860":"flow:J_heart_inlet:CLH","8861":"flow:J_heart_inlet:CLH","8862":"flow:J_heart_inlet:CLH","8863":"flow:J_heart_inlet:CLH","8864":"flow:J_heart_inlet:CLH","8865":"flow:J_heart_inlet:CLH","8866":"flow:J_heart_inlet:CLH","8867":"flow:J_heart_inlet:CLH","8868":"flow:J_heart_inlet:CLH","8869":"flow:J_heart_inlet:CLH","8870":"flow:J_heart_inlet:CLH","8871":"flow:J_heart_inlet:CLH","8872":"flow:J_heart_inlet:CLH","8873":"flow:J_heart_inlet:CLH","8874":"flow:J_heart_inlet:CLH","8875":"flow:J_heart_inlet:CLH","8876":"flow:J_heart_inlet:CLH","8877":"flow:J_heart_inlet:CLH","8878":"flow:J_heart_inlet:CLH","8879":"flow:J_heart_inlet:CLH","8880":"flow:J_heart_inlet:CLH","8881":"flow:J_heart_inlet:CLH","8882":"flow:J_heart_inlet:CLH","8883":"flow:J_heart_inlet:CLH","8884":"flow:J_heart_inlet:CLH","8885":"flow:J_heart_inlet:CLH","8886":"flow:J_heart_inlet:CLH","8887":"flow:J_heart_inlet:CLH","8888":"flow:J_heart_inlet:CLH","8889":"flow:J_heart_inlet:CLH","8890":"flow:J_heart_inlet:CLH","8891":"flow:J_heart_inlet:CLH","8892":"flow:J_heart_inlet:CLH","8893":"flow:J_heart_inlet:CLH","8894":"flow:J_heart_inlet:CLH","8895":"flow:J_heart_inlet:CLH","8896":"flow:J_heart_inlet:CLH","8897":"flow:J_heart_inlet:CLH","8898":"flow:J_heart_inlet:CLH","8899":"flow:J_heart_inlet:CLH","8900":"flow:J_heart_inlet:CLH","8901":"flow:J_heart_inlet:CLH","8902":"flow:J_heart_inlet:CLH","8903":"flow:J_heart_inlet:CLH","8904":"flow:J_heart_inlet:CLH","8905":"flow:J_heart_inlet:CLH","8906":"flow:J_heart_inlet:CLH","8907":"flow:J_heart_inlet:CLH","8908":"flow:J_heart_inlet:CLH","8909":"flow:J_heart_inlet:CLH","8910":"flow:J_heart_inlet:CLH","8911":"flow:J_heart_inlet:CLH","8912":"flow:J_heart_inlet:CLH","8913":"flow:J_heart_inlet:CLH","8914":"flow:J_heart_inlet:CLH","8915":"flow:J_heart_inlet:CLH","8916":"flow:J_heart_inlet:CLH","8917":"flow:J_heart_inlet:CLH","8918":"flow:J_heart_inlet:CLH","8919":"flow:J_heart_inlet:CLH","8920":"flow:J_heart_inlet:CLH","8921":"flow:J_heart_inlet:CLH","8922":"flow:J_heart_inlet:CLH","8923":"flow:J_heart_inlet:CLH","8924":"flow:J_heart_inlet:CLH","8925":"flow:J_heart_inlet:CLH","8926":"flow:J_heart_inlet:CLH","8927":"flow:J_heart_inlet:CLH","8928":"flow:J_heart_inlet:CLH","8929":"flow:J_heart_inlet:CLH","8930":"flow:J_heart_inlet:CLH","8931":"flow:J_heart_inlet:CLH","8932":"flow:J_heart_inlet:CLH","8933":"flow:J_heart_inlet:CLH","8934":"flow:J_heart_inlet:CLH","8935":"flow:J_heart_inlet:CLH","8936":"flow:J_heart_inlet:CLH","8937":"flow:J_heart_inlet:CLH","8938":"flow:J_heart_inlet:CLH","8939":"flow:J_heart_inlet:CLH","8940":"flow:J_heart_inlet:CLH","8941":"flow:J_heart_inlet:CLH","8942":"flow:J_heart_inlet:CLH","8943":"flow:J_heart_inlet:CLH","8944":"flow:J_heart_inlet:CLH","8945":"flow:J_heart_inlet:CLH","8946":"flow:J_heart_inlet:CLH","8947":"flow:J_heart_inlet:CLH","8948":"flow:J_heart_inlet:CLH","8949":"flow:J_heart_inlet:CLH","8950":"flow:J_heart_inlet:CLH","8951":"flow:J_heart_inlet:CLH","8952":"flow:J_heart_inlet:CLH","8953":"flow:J_heart_inlet:CLH","8954":"flow:J_heart_inlet:CLH","8955":"flow:J_heart_inlet:CLH","8956":"flow:J_heart_inlet:CLH","8957":"flow:J_heart_inlet:CLH","8958":"flow:J_heart_inlet:CLH","8959":"flow:J_heart_inlet:CLH","8960":"flow:J_heart_inlet:CLH","8961":"flow:J_heart_inlet:CLH","8962":"flow:J_heart_inlet:CLH","8963":"flow:J_heart_inlet:CLH","8964":"flow:J_heart_inlet:CLH","8965":"flow:J_heart_inlet:CLH","8966":"flow:J_heart_inlet:CLH","8967":"flow:J_heart_inlet:CLH","8968":"flow:J_heart_inlet:CLH","8969":"flow:J_heart_inlet:CLH","8970":"flow:J_heart_inlet:CLH","8971":"flow:J_heart_inlet:CLH","8972":"flow:J_heart_inlet:CLH","8973":"flow:J_heart_inlet:CLH","8974":"flow:J_heart_inlet:CLH","8975":"flow:J_heart_inlet:CLH","8976":"flow:J_heart_inlet:CLH","8977":"flow:J_heart_inlet:CLH","8978":"flow:J_heart_inlet:CLH","8979":"flow:J_heart_inlet:CLH","8980":"flow:J_heart_inlet:CLH","8981":"flow:J_heart_inlet:CLH","8982":"flow:J_heart_inlet:CLH","8983":"flow:J_heart_inlet:CLH","8984":"flow:J_heart_inlet:CLH","8985":"flow:J_heart_inlet:CLH","8986":"flow:J_heart_inlet:CLH","8987":"flow:J_heart_inlet:CLH","8988":"flow:J_heart_inlet:CLH","8989":"flow:J_heart_inlet:CLH","8990":"flow:J_heart_inlet:CLH","8991":"flow:J_heart_inlet:CLH","8992":"flow:J_heart_inlet:CLH","8993":"flow:J_heart_inlet:CLH","8994":"flow:J_heart_inlet:CLH","8995":"flow:J_heart_inlet:CLH","8996":"flow:J_heart_inlet:CLH","8997":"flow:J_heart_inlet:CLH","8998":"flow:J_heart_inlet:CLH","8999":"flow:J_heart_inlet:CLH","9000":"pressure:J_heart_inlet:CLH","9001":"pressure:J_heart_inlet:CLH","9002":"pressure:J_heart_inlet:CLH","9003":"pressure:J_heart_inlet:CLH","9004":"pressure:J_heart_inlet:CLH","9005":"pressure:J_heart_inlet:CLH","9006":"pressure:J_heart_inlet:CLH","9007":"pressure:J_heart_inlet:CLH","9008":"pressure:J_heart_inlet:CLH","9009":"pressure:J_heart_inlet:CLH","9010":"pressure:J_heart_inlet:CLH","9011":"pressure:J_heart_inlet:CLH","9012":"pressure:J_heart_inlet:CLH","9013":"pressure:J_heart_inlet:CLH","9014":"pressure:J_heart_inlet:CLH","9015":"pressure:J_heart_inlet:CLH","9016":"pressure:J_heart_inlet:CLH","9017":"pressure:J_heart_inlet:CLH","9018":"pressure:J_heart_inlet:CLH","9019":"pressure:J_heart_inlet:CLH","9020":"pressure:J_heart_inlet:CLH","9021":"pressure:J_heart_inlet:CLH","9022":"pressure:J_heart_inlet:CLH","9023":"pressure:J_heart_inlet:CLH","9024":"pressure:J_heart_inlet:CLH","9025":"pressure:J_heart_inlet:CLH","9026":"pressure:J_heart_inlet:CLH","9027":"pressure:J_heart_inlet:CLH","9028":"pressure:J_heart_inlet:CLH","9029":"pressure:J_heart_inlet:CLH","9030":"pressure:J_heart_inlet:CLH","9031":"pressure:J_heart_inlet:CLH","9032":"pressure:J_heart_inlet:CLH","9033":"pressure:J_heart_inlet:CLH","9034":"pressure:J_heart_inlet:CLH","9035":"pressure:J_heart_inlet:CLH","9036":"pressure:J_heart_inlet:CLH","9037":"pressure:J_heart_inlet:CLH","9038":"pressure:J_heart_inlet:CLH","9039":"pressure:J_heart_inlet:CLH","9040":"pressure:J_heart_inlet:CLH","9041":"pressure:J_heart_inlet:CLH","9042":"pressure:J_heart_inlet:CLH","9043":"pressure:J_heart_inlet:CLH","9044":"pressure:J_heart_inlet:CLH","9045":"pressure:J_heart_inlet:CLH","9046":"pressure:J_heart_inlet:CLH","9047":"pressure:J_heart_inlet:CLH","9048":"pressure:J_heart_inlet:CLH","9049":"pressure:J_heart_inlet:CLH","9050":"pressure:J_heart_inlet:CLH","9051":"pressure:J_heart_inlet:CLH","9052":"pressure:J_heart_inlet:CLH","9053":"pressure:J_heart_inlet:CLH","9054":"pressure:J_heart_inlet:CLH","9055":"pressure:J_heart_inlet:CLH","9056":"pressure:J_heart_inlet:CLH","9057":"pressure:J_heart_inlet:CLH","9058":"pressure:J_heart_inlet:CLH","9059":"pressure:J_heart_inlet:CLH","9060":"pressure:J_heart_inlet:CLH","9061":"pressure:J_heart_inlet:CLH","9062":"pressure:J_heart_inlet:CLH","9063":"pressure:J_heart_inlet:CLH","9064":"pressure:J_heart_inlet:CLH","9065":"pressure:J_heart_inlet:CLH","9066":"pressure:J_heart_inlet:CLH","9067":"pressure:J_heart_inlet:CLH","9068":"pressure:J_heart_inlet:CLH","9069":"pressure:J_heart_inlet:CLH","9070":"pressure:J_heart_inlet:CLH","9071":"pressure:J_heart_inlet:CLH","9072":"pressure:J_heart_inlet:CLH","9073":"pressure:J_heart_inlet:CLH","9074":"pressure:J_heart_inlet:CLH","9075":"pressure:J_heart_inlet:CLH","9076":"pressure:J_heart_inlet:CLH","9077":"pressure:J_heart_inlet:CLH","9078":"pressure:J_heart_inlet:CLH","9079":"pressure:J_heart_inlet:CLH","9080":"pressure:J_heart_inlet:CLH","9081":"pressure:J_heart_inlet:CLH","9082":"pressure:J_heart_inlet:CLH","9083":"pressure:J_heart_inlet:CLH","9084":"pressure:J_heart_inlet:CLH","9085":"pressure:J_heart_inlet:CLH","9086":"pressure:J_heart_inlet:CLH","9087":"pressure:J_heart_inlet:CLH","9088":"pressure:J_heart_inlet:CLH","9089":"pressure:J_heart_inlet:CLH","9090":"pressure:J_heart_inlet:CLH","9091":"pressure:J_heart_inlet:CLH","9092":"pressure:J_heart_inlet:CLH","9093":"pressure:J_heart_inlet:CLH","9094":"pressure:J_heart_inlet:CLH","9095":"pressure:J_heart_inlet:CLH","9096":"pressure:J_heart_inlet:CLH","9097":"pressure:J_heart_inlet:CLH","9098":"pressure:J_heart_inlet:CLH","9099":"pressure:J_heart_inlet:CLH","9100":"pressure:J_heart_inlet:CLH","9101":"pressure:J_heart_inlet:CLH","9102":"pressure:J_heart_inlet:CLH","9103":"pressure:J_heart_inlet:CLH","9104":"pressure:J_heart_inlet:CLH","9105":"pressure:J_heart_inlet:CLH","9106":"pressure:J_heart_inlet:CLH","9107":"pressure:J_heart_inlet:CLH","9108":"pressure:J_heart_inlet:CLH","9109":"pressure:J_heart_inlet:CLH","9110":"pressure:J_heart_inlet:CLH","9111":"pressure:J_heart_inlet:CLH","9112":"pressure:J_heart_inlet:CLH","9113":"pressure:J_heart_inlet:CLH","9114":"pressure:J_heart_inlet:CLH","9115":"pressure:J_heart_inlet:CLH","9116":"pressure:J_heart_inlet:CLH","9117":"pressure:J_heart_inlet:CLH","9118":"pressure:J_heart_inlet:CLH","9119":"pressure:J_heart_inlet:CLH","9120":"pressure:J_heart_inlet:CLH","9121":"pressure:J_heart_inlet:CLH","9122":"pressure:J_heart_inlet:CLH","9123":"pressure:J_heart_inlet:CLH","9124":"pressure:J_heart_inlet:CLH","9125":"pressure:J_heart_inlet:CLH","9126":"pressure:J_heart_inlet:CLH","9127":"pressure:J_heart_inlet:CLH","9128":"pressure:J_heart_inlet:CLH","9129":"pressure:J_heart_inlet:CLH","9130":"pressure:J_heart_inlet:CLH","9131":"pressure:J_heart_inlet:CLH","9132":"pressure:J_heart_inlet:CLH","9133":"pressure:J_heart_inlet:CLH","9134":"pressure:J_heart_inlet:CLH","9135":"pressure:J_heart_inlet:CLH","9136":"pressure:J_heart_inlet:CLH","9137":"pressure:J_heart_inlet:CLH","9138":"pressure:J_heart_inlet:CLH","9139":"pressure:J_heart_inlet:CLH","9140":"pressure:J_heart_inlet:CLH","9141":"pressure:J_heart_inlet:CLH","9142":"pressure:J_heart_inlet:CLH","9143":"pressure:J_heart_inlet:CLH","9144":"pressure:J_heart_inlet:CLH","9145":"pressure:J_heart_inlet:CLH","9146":"pressure:J_heart_inlet:CLH","9147":"pressure:J_heart_inlet:CLH","9148":"pressure:J_heart_inlet:CLH","9149":"pressure:J_heart_inlet:CLH","9150":"pressure:J_heart_inlet:CLH","9151":"pressure:J_heart_inlet:CLH","9152":"pressure:J_heart_inlet:CLH","9153":"pressure:J_heart_inlet:CLH","9154":"pressure:J_heart_inlet:CLH","9155":"pressure:J_heart_inlet:CLH","9156":"pressure:J_heart_inlet:CLH","9157":"pressure:J_heart_inlet:CLH","9158":"pressure:J_heart_inlet:CLH","9159":"pressure:J_heart_inlet:CLH","9160":"pressure:J_heart_inlet:CLH","9161":"pressure:J_heart_inlet:CLH","9162":"pressure:J_heart_inlet:CLH","9163":"pressure:J_heart_inlet:CLH","9164":"pressure:J_heart_inlet:CLH","9165":"pressure:J_heart_inlet:CLH","9166":"pressure:J_heart_inlet:CLH","9167":"pressure:J_heart_inlet:CLH","9168":"pressure:J_heart_inlet:CLH","9169":"pressure:J_heart_inlet:CLH","9170":"pressure:J_heart_inlet:CLH","9171":"pressure:J_heart_inlet:CLH","9172":"pressure:J_heart_inlet:CLH","9173":"pressure:J_heart_inlet:CLH","9174":"pressure:J_heart_inlet:CLH","9175":"pressure:J_heart_inlet:CLH","9176":"pressure:J_heart_inlet:CLH","9177":"pressure:J_heart_inlet:CLH","9178":"pressure:J_heart_inlet:CLH","9179":"pressure:J_heart_inlet:CLH","9180":"pressure:J_heart_inlet:CLH","9181":"pressure:J_heart_inlet:CLH","9182":"pressure:J_heart_inlet:CLH","9183":"pressure:J_heart_inlet:CLH","9184":"pressure:J_heart_inlet:CLH","9185":"pressure:J_heart_inlet:CLH","9186":"pressure:J_heart_inlet:CLH","9187":"pressure:J_heart_inlet:CLH","9188":"pressure:J_heart_inlet:CLH","9189":"pressure:J_heart_inlet:CLH","9190":"pressure:J_heart_inlet:CLH","9191":"pressure:J_heart_inlet:CLH","9192":"pressure:J_heart_inlet:CLH","9193":"pressure:J_heart_inlet:CLH","9194":"pressure:J_heart_inlet:CLH","9195":"pressure:J_heart_inlet:CLH","9196":"pressure:J_heart_inlet:CLH","9197":"pressure:J_heart_inlet:CLH","9198":"pressure:J_heart_inlet:CLH","9199":"pressure:J_heart_inlet:CLH","9200":"pressure:J_heart_inlet:CLH","9201":"pressure:J_heart_inlet:CLH","9202":"pressure:J_heart_inlet:CLH","9203":"pressure:J_heart_inlet:CLH","9204":"pressure:J_heart_inlet:CLH","9205":"pressure:J_heart_inlet:CLH","9206":"pressure:J_heart_inlet:CLH","9207":"pressure:J_heart_inlet:CLH","9208":"pressure:J_heart_inlet:CLH","9209":"pressure:J_heart_inlet:CLH","9210":"pressure:J_heart_inlet:CLH","9211":"pressure:J_heart_inlet:CLH","9212":"pressure:J_heart_inlet:CLH","9213":"pressure:J_heart_inlet:CLH","9214":"pressure:J_heart_inlet:CLH","9215":"pressure:J_heart_inlet:CLH","9216":"pressure:J_heart_inlet:CLH","9217":"pressure:J_heart_inlet:CLH","9218":"pressure:J_heart_inlet:CLH","9219":"pressure:J_heart_inlet:CLH","9220":"pressure:J_heart_inlet:CLH","9221":"pressure:J_heart_inlet:CLH","9222":"pressure:J_heart_inlet:CLH","9223":"pressure:J_heart_inlet:CLH","9224":"pressure:J_heart_inlet:CLH","9225":"pressure:J_heart_inlet:CLH","9226":"pressure:J_heart_inlet:CLH","9227":"pressure:J_heart_inlet:CLH","9228":"pressure:J_heart_inlet:CLH","9229":"pressure:J_heart_inlet:CLH","9230":"pressure:J_heart_inlet:CLH","9231":"pressure:J_heart_inlet:CLH","9232":"pressure:J_heart_inlet:CLH","9233":"pressure:J_heart_inlet:CLH","9234":"pressure:J_heart_inlet:CLH","9235":"pressure:J_heart_inlet:CLH","9236":"pressure:J_heart_inlet:CLH","9237":"pressure:J_heart_inlet:CLH","9238":"pressure:J_heart_inlet:CLH","9239":"pressure:J_heart_inlet:CLH","9240":"pressure:J_heart_inlet:CLH","9241":"pressure:J_heart_inlet:CLH","9242":"pressure:J_heart_inlet:CLH","9243":"pressure:J_heart_inlet:CLH","9244":"pressure:J_heart_inlet:CLH","9245":"pressure:J_heart_inlet:CLH","9246":"pressure:J_heart_inlet:CLH","9247":"pressure:J_heart_inlet:CLH","9248":"pressure:J_heart_inlet:CLH","9249":"pressure:J_heart_inlet:CLH","9250":"pressure:J_heart_inlet:CLH","9251":"pressure:J_heart_inlet:CLH","9252":"pressure:J_heart_inlet:CLH","9253":"pressure:J_heart_inlet:CLH","9254":"pressure:J_heart_inlet:CLH","9255":"pressure:J_heart_inlet:CLH","9256":"pressure:J_heart_inlet:CLH","9257":"pressure:J_heart_inlet:CLH","9258":"pressure:J_heart_inlet:CLH","9259":"pressure:J_heart_inlet:CLH","9260":"pressure:J_heart_inlet:CLH","9261":"pressure:J_heart_inlet:CLH","9262":"pressure:J_heart_inlet:CLH","9263":"pressure:J_heart_inlet:CLH","9264":"pressure:J_heart_inlet:CLH","9265":"pressure:J_heart_inlet:CLH","9266":"pressure:J_heart_inlet:CLH","9267":"pressure:J_heart_inlet:CLH","9268":"pressure:J_heart_inlet:CLH","9269":"pressure:J_heart_inlet:CLH","9270":"pressure:J_heart_inlet:CLH","9271":"pressure:J_heart_inlet:CLH","9272":"pressure:J_heart_inlet:CLH","9273":"pressure:J_heart_inlet:CLH","9274":"pressure:J_heart_inlet:CLH","9275":"pressure:J_heart_inlet:CLH","9276":"pressure:J_heart_inlet:CLH","9277":"pressure:J_heart_inlet:CLH","9278":"pressure:J_heart_inlet:CLH","9279":"pressure:J_heart_inlet:CLH","9280":"pressure:J_heart_inlet:CLH","9281":"pressure:J_heart_inlet:CLH","9282":"pressure:J_heart_inlet:CLH","9283":"pressure:J_heart_inlet:CLH","9284":"pressure:J_heart_inlet:CLH","9285":"pressure:J_heart_inlet:CLH","9286":"pressure:J_heart_inlet:CLH","9287":"pressure:J_heart_inlet:CLH","9288":"pressure:J_heart_inlet:CLH","9289":"pressure:J_heart_inlet:CLH","9290":"pressure:J_heart_inlet:CLH","9291":"pressure:J_heart_inlet:CLH","9292":"pressure:J_heart_inlet:CLH","9293":"pressure:J_heart_inlet:CLH","9294":"pressure:J_heart_inlet:CLH","9295":"pressure:J_heart_inlet:CLH","9296":"pressure:J_heart_inlet:CLH","9297":"pressure:J_heart_inlet:CLH","9298":"pressure:J_heart_inlet:CLH","9299":"pressure:J_heart_inlet:CLH","9300":"pressure:J_heart_inlet:CLH","9301":"pressure:J_heart_inlet:CLH","9302":"pressure:J_heart_inlet:CLH","9303":"pressure:J_heart_inlet:CLH","9304":"pressure:J_heart_inlet:CLH","9305":"pressure:J_heart_inlet:CLH","9306":"pressure:J_heart_inlet:CLH","9307":"pressure:J_heart_inlet:CLH","9308":"pressure:J_heart_inlet:CLH","9309":"pressure:J_heart_inlet:CLH","9310":"pressure:J_heart_inlet:CLH","9311":"pressure:J_heart_inlet:CLH","9312":"pressure:J_heart_inlet:CLH","9313":"pressure:J_heart_inlet:CLH","9314":"pressure:J_heart_inlet:CLH","9315":"pressure:J_heart_inlet:CLH","9316":"pressure:J_heart_inlet:CLH","9317":"pressure:J_heart_inlet:CLH","9318":"pressure:J_heart_inlet:CLH","9319":"pressure:J_heart_inlet:CLH","9320":"pressure:J_heart_inlet:CLH","9321":"pressure:J_heart_inlet:CLH","9322":"pressure:J_heart_inlet:CLH","9323":"pressure:J_heart_inlet:CLH","9324":"pressure:J_heart_inlet:CLH","9325":"pressure:J_heart_inlet:CLH","9326":"pressure:J_heart_inlet:CLH","9327":"pressure:J_heart_inlet:CLH","9328":"pressure:J_heart_inlet:CLH","9329":"pressure:J_heart_inlet:CLH","9330":"pressure:J_heart_inlet:CLH","9331":"pressure:J_heart_inlet:CLH","9332":"pressure:J_heart_inlet:CLH","9333":"pressure:J_heart_inlet:CLH","9334":"pressure:J_heart_inlet:CLH","9335":"pressure:J_heart_inlet:CLH","9336":"pressure:J_heart_inlet:CLH","9337":"pressure:J_heart_inlet:CLH","9338":"pressure:J_heart_inlet:CLH","9339":"pressure:J_heart_inlet:CLH","9340":"pressure:J_heart_inlet:CLH","9341":"pressure:J_heart_inlet:CLH","9342":"pressure:J_heart_inlet:CLH","9343":"pressure:J_heart_inlet:CLH","9344":"pressure:J_heart_inlet:CLH","9345":"pressure:J_heart_inlet:CLH","9346":"pressure:J_heart_inlet:CLH","9347":"pressure:J_heart_inlet:CLH","9348":"pressure:J_heart_inlet:CLH","9349":"pressure:J_heart_inlet:CLH","9350":"pressure:J_heart_inlet:CLH","9351":"pressure:J_heart_inlet:CLH","9352":"pressure:J_heart_inlet:CLH","9353":"pressure:J_heart_inlet:CLH","9354":"pressure:J_heart_inlet:CLH","9355":"pressure:J_heart_inlet:CLH","9356":"pressure:J_heart_inlet:CLH","9357":"pressure:J_heart_inlet:CLH","9358":"pressure:J_heart_inlet:CLH","9359":"pressure:J_heart_inlet:CLH","9360":"pressure:J_heart_inlet:CLH","9361":"pressure:J_heart_inlet:CLH","9362":"pressure:J_heart_inlet:CLH","9363":"pressure:J_heart_inlet:CLH","9364":"pressure:J_heart_inlet:CLH","9365":"pressure:J_heart_inlet:CLH","9366":"pressure:J_heart_inlet:CLH","9367":"pressure:J_heart_inlet:CLH","9368":"pressure:J_heart_inlet:CLH","9369":"pressure:J_heart_inlet:CLH","9370":"pressure:J_heart_inlet:CLH","9371":"pressure:J_heart_inlet:CLH","9372":"pressure:J_heart_inlet:CLH","9373":"pressure:J_heart_inlet:CLH","9374":"pressure:J_heart_inlet:CLH","9375":"pressure:J_heart_inlet:CLH","9376":"pressure:J_heart_inlet:CLH","9377":"pressure:J_heart_inlet:CLH","9378":"pressure:J_heart_inlet:CLH","9379":"pressure:J_heart_inlet:CLH","9380":"pressure:J_heart_inlet:CLH","9381":"pressure:J_heart_inlet:CLH","9382":"pressure:J_heart_inlet:CLH","9383":"pressure:J_heart_inlet:CLH","9384":"pressure:J_heart_inlet:CLH","9385":"pressure:J_heart_inlet:CLH","9386":"pressure:J_heart_inlet:CLH","9387":"pressure:J_heart_inlet:CLH","9388":"pressure:J_heart_inlet:CLH","9389":"pressure:J_heart_inlet:CLH","9390":"pressure:J_heart_inlet:CLH","9391":"pressure:J_heart_inlet:CLH","9392":"pressure:J_heart_inlet:CLH","9393":"pressure:J_heart_inlet:CLH","9394":"pressure:J_heart_inlet:CLH","9395":"pressure:J_heart_inlet:CLH","9396":"pressure:J_heart_inlet:CLH","9397":"pressure:J_heart_inlet:CLH","9398":"pressure:J_heart_inlet:CLH","9399":"pressure:J_heart_inlet:CLH","9400":"pressure:J_heart_inlet:CLH","9401":"pressure:J_heart_inlet:CLH","9402":"pressure:J_heart_inlet:CLH","9403":"pressure:J_heart_inlet:CLH","9404":"pressure:J_heart_inlet:CLH","9405":"pressure:J_heart_inlet:CLH","9406":"pressure:J_heart_inlet:CLH","9407":"pressure:J_heart_inlet:CLH","9408":"pressure:J_heart_inlet:CLH","9409":"pressure:J_heart_inlet:CLH","9410":"pressure:J_heart_inlet:CLH","9411":"pressure:J_heart_inlet:CLH","9412":"pressure:J_heart_inlet:CLH","9413":"pressure:J_heart_inlet:CLH","9414":"pressure:J_heart_inlet:CLH","9415":"pressure:J_heart_inlet:CLH","9416":"pressure:J_heart_inlet:CLH","9417":"pressure:J_heart_inlet:CLH","9418":"pressure:J_heart_inlet:CLH","9419":"pressure:J_heart_inlet:CLH","9420":"pressure:J_heart_inlet:CLH","9421":"pressure:J_heart_inlet:CLH","9422":"pressure:J_heart_inlet:CLH","9423":"pressure:J_heart_inlet:CLH","9424":"pressure:J_heart_inlet:CLH","9425":"pressure:J_heart_inlet:CLH","9426":"pressure:J_heart_inlet:CLH","9427":"pressure:J_heart_inlet:CLH","9428":"pressure:J_heart_inlet:CLH","9429":"pressure:J_heart_inlet:CLH","9430":"pressure:J_heart_inlet:CLH","9431":"pressure:J_heart_inlet:CLH","9432":"pressure:J_heart_inlet:CLH","9433":"pressure:J_heart_inlet:CLH","9434":"pressure:J_heart_inlet:CLH","9435":"pressure:J_heart_inlet:CLH","9436":"pressure:J_heart_inlet:CLH","9437":"pressure:J_heart_inlet:CLH","9438":"pressure:J_heart_inlet:CLH","9439":"pressure:J_heart_inlet:CLH","9440":"pressure:J_heart_inlet:CLH","9441":"pressure:J_heart_inlet:CLH","9442":"pressure:J_heart_inlet:CLH","9443":"pressure:J_heart_inlet:CLH","9444":"pressure:J_heart_inlet:CLH","9445":"pressure:J_heart_inlet:CLH","9446":"pressure:J_heart_inlet:CLH","9447":"pressure:J_heart_inlet:CLH","9448":"pressure:J_heart_inlet:CLH","9449":"pressure:J_heart_inlet:CLH","9450":"pressure:J_heart_inlet:CLH","9451":"pressure:J_heart_inlet:CLH","9452":"pressure:J_heart_inlet:CLH","9453":"pressure:J_heart_inlet:CLH","9454":"pressure:J_heart_inlet:CLH","9455":"pressure:J_heart_inlet:CLH","9456":"pressure:J_heart_inlet:CLH","9457":"pressure:J_heart_inlet:CLH","9458":"pressure:J_heart_inlet:CLH","9459":"pressure:J_heart_inlet:CLH","9460":"pressure:J_heart_inlet:CLH","9461":"pressure:J_heart_inlet:CLH","9462":"pressure:J_heart_inlet:CLH","9463":"pressure:J_heart_inlet:CLH","9464":"pressure:J_heart_inlet:CLH","9465":"pressure:J_heart_inlet:CLH","9466":"pressure:J_heart_inlet:CLH","9467":"pressure:J_heart_inlet:CLH","9468":"pressure:J_heart_inlet:CLH","9469":"pressure:J_heart_inlet:CLH","9470":"pressure:J_heart_inlet:CLH","9471":"pressure:J_heart_inlet:CLH","9472":"pressure:J_heart_inlet:CLH","9473":"pressure:J_heart_inlet:CLH","9474":"pressure:J_heart_inlet:CLH","9475":"pressure:J_heart_inlet:CLH","9476":"pressure:J_heart_inlet:CLH","9477":"pressure:J_heart_inlet:CLH","9478":"pressure:J_heart_inlet:CLH","9479":"pressure:J_heart_inlet:CLH","9480":"pressure:J_heart_inlet:CLH","9481":"pressure:J_heart_inlet:CLH","9482":"pressure:J_heart_inlet:CLH","9483":"pressure:J_heart_inlet:CLH","9484":"pressure:J_heart_inlet:CLH","9485":"pressure:J_heart_inlet:CLH","9486":"pressure:J_heart_inlet:CLH","9487":"pressure:J_heart_inlet:CLH","9488":"pressure:J_heart_inlet:CLH","9489":"pressure:J_heart_inlet:CLH","9490":"pressure:J_heart_inlet:CLH","9491":"pressure:J_heart_inlet:CLH","9492":"pressure:J_heart_inlet:CLH","9493":"pressure:J_heart_inlet:CLH","9494":"pressure:J_heart_inlet:CLH","9495":"pressure:J_heart_inlet:CLH","9496":"pressure:J_heart_inlet:CLH","9497":"pressure:J_heart_inlet:CLH","9498":"pressure:J_heart_inlet:CLH","9499":"pressure:J_heart_inlet:CLH","9500":"pressure:J_heart_inlet:CLH","9501":"pressure:J_heart_inlet:CLH","9502":"pressure:J_heart_inlet:CLH","9503":"pressure:J_heart_inlet:CLH","9504":"pressure:J_heart_inlet:CLH","9505":"pressure:J_heart_inlet:CLH","9506":"pressure:J_heart_inlet:CLH","9507":"pressure:J_heart_inlet:CLH","9508":"pressure:J_heart_inlet:CLH","9509":"pressure:J_heart_inlet:CLH","9510":"pressure:J_heart_inlet:CLH","9511":"pressure:J_heart_inlet:CLH","9512":"pressure:J_heart_inlet:CLH","9513":"pressure:J_heart_inlet:CLH","9514":"pressure:J_heart_inlet:CLH","9515":"pressure:J_heart_inlet:CLH","9516":"pressure:J_heart_inlet:CLH","9517":"pressure:J_heart_inlet:CLH","9518":"pressure:J_heart_inlet:CLH","9519":"pressure:J_heart_inlet:CLH","9520":"pressure:J_heart_inlet:CLH","9521":"pressure:J_heart_inlet:CLH","9522":"pressure:J_heart_inlet:CLH","9523":"pressure:J_heart_inlet:CLH","9524":"pressure:J_heart_inlet:CLH","9525":"pressure:J_heart_inlet:CLH","9526":"pressure:J_heart_inlet:CLH","9527":"pressure:J_heart_inlet:CLH","9528":"pressure:J_heart_inlet:CLH","9529":"pressure:J_heart_inlet:CLH","9530":"pressure:J_heart_inlet:CLH","9531":"pressure:J_heart_inlet:CLH","9532":"pressure:J_heart_inlet:CLH","9533":"pressure:J_heart_inlet:CLH","9534":"pressure:J_heart_inlet:CLH","9535":"pressure:J_heart_inlet:CLH","9536":"pressure:J_heart_inlet:CLH","9537":"pressure:J_heart_inlet:CLH","9538":"pressure:J_heart_inlet:CLH","9539":"pressure:J_heart_inlet:CLH","9540":"pressure:J_heart_inlet:CLH","9541":"pressure:J_heart_inlet:CLH","9542":"pressure:J_heart_inlet:CLH","9543":"pressure:J_heart_inlet:CLH","9544":"pressure:J_heart_inlet:CLH","9545":"pressure:J_heart_inlet:CLH","9546":"pressure:J_heart_inlet:CLH","9547":"pressure:J_heart_inlet:CLH","9548":"pressure:J_heart_inlet:CLH","9549":"pressure:J_heart_inlet:CLH","9550":"pressure:J_heart_inlet:CLH","9551":"pressure:J_heart_inlet:CLH","9552":"pressure:J_heart_inlet:CLH","9553":"pressure:J_heart_inlet:CLH","9554":"pressure:J_heart_inlet:CLH","9555":"pressure:J_heart_inlet:CLH","9556":"pressure:J_heart_inlet:CLH","9557":"pressure:J_heart_inlet:CLH","9558":"pressure:J_heart_inlet:CLH","9559":"pressure:J_heart_inlet:CLH","9560":"pressure:J_heart_inlet:CLH","9561":"pressure:J_heart_inlet:CLH","9562":"pressure:J_heart_inlet:CLH","9563":"pressure:J_heart_inlet:CLH","9564":"pressure:J_heart_inlet:CLH","9565":"pressure:J_heart_inlet:CLH","9566":"pressure:J_heart_inlet:CLH","9567":"pressure:J_heart_inlet:CLH","9568":"pressure:J_heart_inlet:CLH","9569":"pressure:J_heart_inlet:CLH","9570":"pressure:J_heart_inlet:CLH","9571":"pressure:J_heart_inlet:CLH","9572":"pressure:J_heart_inlet:CLH","9573":"pressure:J_heart_inlet:CLH","9574":"pressure:J_heart_inlet:CLH","9575":"pressure:J_heart_inlet:CLH","9576":"pressure:J_heart_inlet:CLH","9577":"pressure:J_heart_inlet:CLH","9578":"pressure:J_heart_inlet:CLH","9579":"pressure:J_heart_inlet:CLH","9580":"pressure:J_heart_inlet:CLH","9581":"pressure:J_heart_inlet:CLH","9582":"pressure:J_heart_inlet:CLH","9583":"pressure:J_heart_inlet:CLH","9584":"pressure:J_heart_inlet:CLH","9585":"pressure:J_heart_inlet:CLH","9586":"pressure:J_heart_inlet:CLH","9587":"pressure:J_heart_inlet:CLH","9588":"pressure:J_heart_inlet:CLH","9589":"pressure:J_heart_inlet:CLH","9590":"pressure:J_heart_inlet:CLH","9591":"pressure:J_heart_inlet:CLH","9592":"pressure:J_heart_inlet:CLH","9593":"pressure:J_heart_inlet:CLH","9594":"pressure:J_heart_inlet:CLH","9595":"pressure:J_heart_inlet:CLH","9596":"pressure:J_heart_inlet:CLH","9597":"pressure:J_heart_inlet:CLH","9598":"pressure:J_heart_inlet:CLH","9599":"pressure:J_heart_inlet:CLH","9600":"pressure:J_heart_inlet:CLH","9601":"pressure:J_heart_inlet:CLH","9602":"pressure:J_heart_inlet:CLH","9603":"pressure:J_heart_inlet:CLH","9604":"pressure:J_heart_inlet:CLH","9605":"pressure:J_heart_inlet:CLH","9606":"pressure:J_heart_inlet:CLH","9607":"pressure:J_heart_inlet:CLH","9608":"pressure:J_heart_inlet:CLH","9609":"pressure:J_heart_inlet:CLH","9610":"pressure:J_heart_inlet:CLH","9611":"pressure:J_heart_inlet:CLH","9612":"pressure:J_heart_inlet:CLH","9613":"pressure:J_heart_inlet:CLH","9614":"pressure:J_heart_inlet:CLH","9615":"pressure:J_heart_inlet:CLH","9616":"pressure:J_heart_inlet:CLH","9617":"pressure:J_heart_inlet:CLH","9618":"pressure:J_heart_inlet:CLH","9619":"pressure:J_heart_inlet:CLH","9620":"pressure:J_heart_inlet:CLH","9621":"pressure:J_heart_inlet:CLH","9622":"pressure:J_heart_inlet:CLH","9623":"pressure:J_heart_inlet:CLH","9624":"pressure:J_heart_inlet:CLH","9625":"pressure:J_heart_inlet:CLH","9626":"pressure:J_heart_inlet:CLH","9627":"pressure:J_heart_inlet:CLH","9628":"pressure:J_heart_inlet:CLH","9629":"pressure:J_heart_inlet:CLH","9630":"pressure:J_heart_inlet:CLH","9631":"pressure:J_heart_inlet:CLH","9632":"pressure:J_heart_inlet:CLH","9633":"pressure:J_heart_inlet:CLH","9634":"pressure:J_heart_inlet:CLH","9635":"pressure:J_heart_inlet:CLH","9636":"pressure:J_heart_inlet:CLH","9637":"pressure:J_heart_inlet:CLH","9638":"pressure:J_heart_inlet:CLH","9639":"pressure:J_heart_inlet:CLH","9640":"pressure:J_heart_inlet:CLH","9641":"pressure:J_heart_inlet:CLH","9642":"pressure:J_heart_inlet:CLH","9643":"pressure:J_heart_inlet:CLH","9644":"pressure:J_heart_inlet:CLH","9645":"pressure:J_heart_inlet:CLH","9646":"pressure:J_heart_inlet:CLH","9647":"pressure:J_heart_inlet:CLH","9648":"pressure:J_heart_inlet:CLH","9649":"pressure:J_heart_inlet:CLH","9650":"pressure:J_heart_inlet:CLH","9651":"pressure:J_heart_inlet:CLH","9652":"pressure:J_heart_inlet:CLH","9653":"pressure:J_heart_inlet:CLH","9654":"pressure:J_heart_inlet:CLH","9655":"pressure:J_heart_inlet:CLH","9656":"pressure:J_heart_inlet:CLH","9657":"pressure:J_heart_inlet:CLH","9658":"pressure:J_heart_inlet:CLH","9659":"pressure:J_heart_inlet:CLH","9660":"pressure:J_heart_inlet:CLH","9661":"pressure:J_heart_inlet:CLH","9662":"pressure:J_heart_inlet:CLH","9663":"pressure:J_heart_inlet:CLH","9664":"pressure:J_heart_inlet:CLH","9665":"pressure:J_heart_inlet:CLH","9666":"pressure:J_heart_inlet:CLH","9667":"pressure:J_heart_inlet:CLH","9668":"pressure:J_heart_inlet:CLH","9669":"pressure:J_heart_inlet:CLH","9670":"pressure:J_heart_inlet:CLH","9671":"pressure:J_heart_inlet:CLH","9672":"pressure:J_heart_inlet:CLH","9673":"pressure:J_heart_inlet:CLH","9674":"pressure:J_heart_inlet:CLH","9675":"pressure:J_heart_inlet:CLH","9676":"pressure:J_heart_inlet:CLH","9677":"pressure:J_heart_inlet:CLH","9678":"pressure:J_heart_inlet:CLH","9679":"pressure:J_heart_inlet:CLH","9680":"pressure:J_heart_inlet:CLH","9681":"pressure:J_heart_inlet:CLH","9682":"pressure:J_heart_inlet:CLH","9683":"pressure:J_heart_inlet:CLH","9684":"pressure:J_heart_inlet:CLH","9685":"pressure:J_heart_inlet:CLH","9686":"pressure:J_heart_inlet:CLH","9687":"pressure:J_heart_inlet:CLH","9688":"pressure:J_heart_inlet:CLH","9689":"pressure:J_heart_inlet:CLH","9690":"pressure:J_heart_inlet:CLH","9691":"pressure:J_heart_inlet:CLH","9692":"pressure:J_heart_inlet:CLH","9693":"pressure:J_heart_inlet:CLH","9694":"pressure:J_heart_inlet:CLH","9695":"pressure:J_heart_inlet:CLH","9696":"pressure:J_heart_inlet:CLH","9697":"pressure:J_heart_inlet:CLH","9698":"pressure:J_heart_inlet:CLH","9699":"pressure:J_heart_inlet:CLH","9700":"pressure:J_heart_inlet:CLH","9701":"pressure:J_heart_inlet:CLH","9702":"pressure:J_heart_inlet:CLH","9703":"pressure:J_heart_inlet:CLH","9704":"pressure:J_heart_inlet:CLH","9705":"pressure:J_heart_inlet:CLH","9706":"pressure:J_heart_inlet:CLH","9707":"pressure:J_heart_inlet:CLH","9708":"pressure:J_heart_inlet:CLH","9709":"pressure:J_heart_inlet:CLH","9710":"pressure:J_heart_inlet:CLH","9711":"pressure:J_heart_inlet:CLH","9712":"pressure:J_heart_inlet:CLH","9713":"pressure:J_heart_inlet:CLH","9714":"pressure:J_heart_inlet:CLH","9715":"pressure:J_heart_inlet:CLH","9716":"pressure:J_heart_inlet:CLH","9717":"pressure:J_heart_inlet:CLH","9718":"pressure:J_heart_inlet:CLH","9719":"pressure:J_heart_inlet:CLH","9720":"pressure:J_heart_inlet:CLH","9721":"pressure:J_heart_inlet:CLH","9722":"pressure:J_heart_inlet:CLH","9723":"pressure:J_heart_inlet:CLH","9724":"pressure:J_heart_inlet:CLH","9725":"pressure:J_heart_inlet:CLH","9726":"pressure:J_heart_inlet:CLH","9727":"pressure:J_heart_inlet:CLH","9728":"pressure:J_heart_inlet:CLH","9729":"pressure:J_heart_inlet:CLH","9730":"pressure:J_heart_inlet:CLH","9731":"pressure:J_heart_inlet:CLH","9732":"pressure:J_heart_inlet:CLH","9733":"pressure:J_heart_inlet:CLH","9734":"pressure:J_heart_inlet:CLH","9735":"pressure:J_heart_inlet:CLH","9736":"pressure:J_heart_inlet:CLH","9737":"pressure:J_heart_inlet:CLH","9738":"pressure:J_heart_inlet:CLH","9739":"pressure:J_heart_inlet:CLH","9740":"pressure:J_heart_inlet:CLH","9741":"pressure:J_heart_inlet:CLH","9742":"pressure:J_heart_inlet:CLH","9743":"pressure:J_heart_inlet:CLH","9744":"pressure:J_heart_inlet:CLH","9745":"pressure:J_heart_inlet:CLH","9746":"pressure:J_heart_inlet:CLH","9747":"pressure:J_heart_inlet:CLH","9748":"pressure:J_heart_inlet:CLH","9749":"pressure:J_heart_inlet:CLH","9750":"pressure:J_heart_inlet:CLH","9751":"pressure:J_heart_inlet:CLH","9752":"pressure:J_heart_inlet:CLH","9753":"pressure:J_heart_inlet:CLH","9754":"pressure:J_heart_inlet:CLH","9755":"pressure:J_heart_inlet:CLH","9756":"pressure:J_heart_inlet:CLH","9757":"pressure:J_heart_inlet:CLH","9758":"pressure:J_heart_inlet:CLH","9759":"pressure:J_heart_inlet:CLH","9760":"pressure:J_heart_inlet:CLH","9761":"pressure:J_heart_inlet:CLH","9762":"pressure:J_heart_inlet:CLH","9763":"pressure:J_heart_inlet:CLH","9764":"pressure:J_heart_inlet:CLH","9765":"pressure:J_heart_inlet:CLH","9766":"pressure:J_heart_inlet:CLH","9767":"pressure:J_heart_inlet:CLH","9768":"pressure:J_heart_inlet:CLH","9769":"pressure:J_heart_inlet:CLH","9770":"pressure:J_heart_inlet:CLH","9771":"pressure:J_heart_inlet:CLH","9772":"pressure:J_heart_inlet:CLH","9773":"pressure:J_heart_inlet:CLH","9774":"pressure:J_heart_inlet:CLH","9775":"pressure:J_heart_inlet:CLH","9776":"pressure:J_heart_inlet:CLH","9777":"pressure:J_heart_inlet:CLH","9778":"pressure:J_heart_inlet:CLH","9779":"pressure:J_heart_inlet:CLH","9780":"pressure:J_heart_inlet:CLH","9781":"pressure:J_heart_inlet:CLH","9782":"pressure:J_heart_inlet:CLH","9783":"pressure:J_heart_inlet:CLH","9784":"pressure:J_heart_inlet:CLH","9785":"pressure:J_heart_inlet:CLH","9786":"pressure:J_heart_inlet:CLH","9787":"pressure:J_heart_inlet:CLH","9788":"pressure:J_heart_inlet:CLH","9789":"pressure:J_heart_inlet:CLH","9790":"pressure:J_heart_inlet:CLH","9791":"pressure:J_heart_inlet:CLH","9792":"pressure:J_heart_inlet:CLH","9793":"pressure:J_heart_inlet:CLH","9794":"pressure:J_heart_inlet:CLH","9795":"pressure:J_heart_inlet:CLH","9796":"pressure:J_heart_inlet:CLH","9797":"pressure:J_heart_inlet:CLH","9798":"pressure:J_heart_inlet:CLH","9799":"pressure:J_heart_inlet:CLH","9800":"pressure:J_heart_inlet:CLH","9801":"pressure:J_heart_inlet:CLH","9802":"pressure:J_heart_inlet:CLH","9803":"pressure:J_heart_inlet:CLH","9804":"pressure:J_heart_inlet:CLH","9805":"pressure:J_heart_inlet:CLH","9806":"pressure:J_heart_inlet:CLH","9807":"pressure:J_heart_inlet:CLH","9808":"pressure:J_heart_inlet:CLH","9809":"pressure:J_heart_inlet:CLH","9810":"pressure:J_heart_inlet:CLH","9811":"pressure:J_heart_inlet:CLH","9812":"pressure:J_heart_inlet:CLH","9813":"pressure:J_heart_inlet:CLH","9814":"pressure:J_heart_inlet:CLH","9815":"pressure:J_heart_inlet:CLH","9816":"pressure:J_heart_inlet:CLH","9817":"pressure:J_heart_inlet:CLH","9818":"pressure:J_heart_inlet:CLH","9819":"pressure:J_heart_inlet:CLH","9820":"pressure:J_heart_inlet:CLH","9821":"pressure:J_heart_inlet:CLH","9822":"pressure:J_heart_inlet:CLH","9823":"pressure:J_heart_inlet:CLH","9824":"pressure:J_heart_inlet:CLH","9825":"pressure:J_heart_inlet:CLH","9826":"pressure:J_heart_inlet:CLH","9827":"pressure:J_heart_inlet:CLH","9828":"pressure:J_heart_inlet:CLH","9829":"pressure:J_heart_inlet:CLH","9830":"pressure:J_heart_inlet:CLH","9831":"pressure:J_heart_inlet:CLH","9832":"pressure:J_heart_inlet:CLH","9833":"pressure:J_heart_inlet:CLH","9834":"pressure:J_heart_inlet:CLH","9835":"pressure:J_heart_inlet:CLH","9836":"pressure:J_heart_inlet:CLH","9837":"pressure:J_heart_inlet:CLH","9838":"pressure:J_heart_inlet:CLH","9839":"pressure:J_heart_inlet:CLH","9840":"pressure:J_heart_inlet:CLH","9841":"pressure:J_heart_inlet:CLH","9842":"pressure:J_heart_inlet:CLH","9843":"pressure:J_heart_inlet:CLH","9844":"pressure:J_heart_inlet:CLH","9845":"pressure:J_heart_inlet:CLH","9846":"pressure:J_heart_inlet:CLH","9847":"pressure:J_heart_inlet:CLH","9848":"pressure:J_heart_inlet:CLH","9849":"pressure:J_heart_inlet:CLH","9850":"pressure:J_heart_inlet:CLH","9851":"pressure:J_heart_inlet:CLH","9852":"pressure:J_heart_inlet:CLH","9853":"pressure:J_heart_inlet:CLH","9854":"pressure:J_heart_inlet:CLH","9855":"pressure:J_heart_inlet:CLH","9856":"pressure:J_heart_inlet:CLH","9857":"pressure:J_heart_inlet:CLH","9858":"pressure:J_heart_inlet:CLH","9859":"pressure:J_heart_inlet:CLH","9860":"pressure:J_heart_inlet:CLH","9861":"pressure:J_heart_inlet:CLH","9862":"pressure:J_heart_inlet:CLH","9863":"pressure:J_heart_inlet:CLH","9864":"pressure:J_heart_inlet:CLH","9865":"pressure:J_heart_inlet:CLH","9866":"pressure:J_heart_inlet:CLH","9867":"pressure:J_heart_inlet:CLH","9868":"pressure:J_heart_inlet:CLH","9869":"pressure:J_heart_inlet:CLH","9870":"pressure:J_heart_inlet:CLH","9871":"pressure:J_heart_inlet:CLH","9872":"pressure:J_heart_inlet:CLH","9873":"pressure:J_heart_inlet:CLH","9874":"pressure:J_heart_inlet:CLH","9875":"pressure:J_heart_inlet:CLH","9876":"pressure:J_heart_inlet:CLH","9877":"pressure:J_heart_inlet:CLH","9878":"pressure:J_heart_inlet:CLH","9879":"pressure:J_heart_inlet:CLH","9880":"pressure:J_heart_inlet:CLH","9881":"pressure:J_heart_inlet:CLH","9882":"pressure:J_heart_inlet:CLH","9883":"pressure:J_heart_inlet:CLH","9884":"pressure:J_heart_inlet:CLH","9885":"pressure:J_heart_inlet:CLH","9886":"pressure:J_heart_inlet:CLH","9887":"pressure:J_heart_inlet:CLH","9888":"pressure:J_heart_inlet:CLH","9889":"pressure:J_heart_inlet:CLH","9890":"pressure:J_heart_inlet:CLH","9891":"pressure:J_heart_inlet:CLH","9892":"pressure:J_heart_inlet:CLH","9893":"pressure:J_heart_inlet:CLH","9894":"pressure:J_heart_inlet:CLH","9895":"pressure:J_heart_inlet:CLH","9896":"pressure:J_heart_inlet:CLH","9897":"pressure:J_heart_inlet:CLH","9898":"pressure:J_heart_inlet:CLH","9899":"pressure:J_heart_inlet:CLH","9900":"pressure:J_heart_inlet:CLH","9901":"pressure:J_heart_inlet:CLH","9902":"pressure:J_heart_inlet:CLH","9903":"pressure:J_heart_inlet:CLH","9904":"pressure:J_heart_inlet:CLH","9905":"pressure:J_heart_inlet:CLH","9906":"pressure:J_heart_inlet:CLH","9907":"pressure:J_heart_inlet:CLH","9908":"pressure:J_heart_inlet:CLH","9909":"pressure:J_heart_inlet:CLH","9910":"pressure:J_heart_inlet:CLH","9911":"pressure:J_heart_inlet:CLH","9912":"pressure:J_heart_inlet:CLH","9913":"pressure:J_heart_inlet:CLH","9914":"pressure:J_heart_inlet:CLH","9915":"pressure:J_heart_inlet:CLH","9916":"pressure:J_heart_inlet:CLH","9917":"pressure:J_heart_inlet:CLH","9918":"pressure:J_heart_inlet:CLH","9919":"pressure:J_heart_inlet:CLH","9920":"pressure:J_heart_inlet:CLH","9921":"pressure:J_heart_inlet:CLH","9922":"pressure:J_heart_inlet:CLH","9923":"pressure:J_heart_inlet:CLH","9924":"pressure:J_heart_inlet:CLH","9925":"pressure:J_heart_inlet:CLH","9926":"pressure:J_heart_inlet:CLH","9927":"pressure:J_heart_inlet:CLH","9928":"pressure:J_heart_inlet:CLH","9929":"pressure:J_heart_inlet:CLH","9930":"pressure:J_heart_inlet:CLH","9931":"pressure:J_heart_inlet:CLH","9932":"pressure:J_heart_inlet:CLH","9933":"pressure:J_heart_inlet:CLH","9934":"pressure:J_heart_inlet:CLH","9935":"pressure:J_heart_inlet:CLH","9936":"pressure:J_heart_inlet:CLH","9937":"pressure:J_heart_inlet:CLH","9938":"pressure:J_heart_inlet:CLH","9939":"pressure:J_heart_inlet:CLH","9940":"pressure:J_heart_inlet:CLH","9941":"pressure:J_heart_inlet:CLH","9942":"pressure:J_heart_inlet:CLH","9943":"pressure:J_heart_inlet:CLH","9944":"pressure:J_heart_inlet:CLH","9945":"pressure:J_heart_inlet:CLH","9946":"pressure:J_heart_inlet:CLH","9947":"pressure:J_heart_inlet:CLH","9948":"pressure:J_heart_inlet:CLH","9949":"pressure:J_heart_inlet:CLH","9950":"pressure:J_heart_inlet:CLH","9951":"pressure:J_heart_inlet:CLH","9952":"pressure:J_heart_inlet:CLH","9953":"pressure:J_heart_inlet:CLH","9954":"pressure:J_heart_inlet:CLH","9955":"pressure:J_heart_inlet:CLH","9956":"pressure:J_heart_inlet:CLH","9957":"pressure:J_heart_inlet:CLH","9958":"pressure:J_heart_inlet:CLH","9959":"pressure:J_heart_inlet:CLH","9960":"pressure:J_heart_inlet:CLH","9961":"pressure:J_heart_inlet:CLH","9962":"pressure:J_heart_inlet:CLH","9963":"pressure:J_heart_inlet:CLH","9964":"pressure:J_heart_inlet:CLH","9965":"pressure:J_heart_inlet:CLH","9966":"pressure:J_heart_inlet:CLH","9967":"pressure:J_heart_inlet:CLH","9968":"pressure:J_heart_inlet:CLH","9969":"pressure:J_heart_inlet:CLH","9970":"pressure:J_heart_inlet:CLH","9971":"pressure:J_heart_inlet:CLH","9972":"pressure:J_heart_inlet:CLH","9973":"pressure:J_heart_inlet:CLH","9974":"pressure:J_heart_inlet:CLH","9975":"pressure:J_heart_inlet:CLH","9976":"pressure:J_heart_inlet:CLH","9977":"pressure:J_heart_inlet:CLH","9978":"pressure:J_heart_inlet:CLH","9979":"pressure:J_heart_inlet:CLH","9980":"pressure:J_heart_inlet:CLH","9981":"pressure:J_heart_inlet:CLH","9982":"pressure:J_heart_inlet:CLH","9983":"pressure:J_heart_inlet:CLH","9984":"pressure:J_heart_inlet:CLH","9985":"pressure:J_heart_inlet:CLH","9986":"pressure:J_heart_inlet:CLH","9987":"pressure:J_heart_inlet:CLH","9988":"pressure:J_heart_inlet:CLH","9989":"pressure:J_heart_inlet:CLH","9990":"pressure:J_heart_inlet:CLH","9991":"pressure:J_heart_inlet:CLH","9992":"pressure:J_heart_inlet:CLH","9993":"pressure:J_heart_inlet:CLH","9994":"pressure:J_heart_inlet:CLH","9995":"pressure:J_heart_inlet:CLH","9996":"pressure:J_heart_inlet:CLH","9997":"pressure:J_heart_inlet:CLH","9998":"pressure:J_heart_inlet:CLH","9999":"pressure:J_heart_inlet:CLH","10000":"flow:LCA:J_heart_inlet","10001":"flow:LCA:J_heart_inlet","10002":"flow:LCA:J_heart_inlet","10003":"flow:LCA:J_heart_inlet","10004":"flow:LCA:J_heart_inlet","10005":"flow:LCA:J_heart_inlet","10006":"flow:LCA:J_heart_inlet","10007":"flow:LCA:J_heart_inlet","10008":"flow:LCA:J_heart_inlet","10009":"flow:LCA:J_heart_inlet","10010":"flow:LCA:J_heart_inlet","10011":"flow:LCA:J_heart_inlet","10012":"flow:LCA:J_heart_inlet","10013":"flow:LCA:J_heart_inlet","10014":"flow:LCA:J_heart_inlet","10015":"flow:LCA:J_heart_inlet","10016":"flow:LCA:J_heart_inlet","10017":"flow:LCA:J_heart_inlet","10018":"flow:LCA:J_heart_inlet","10019":"flow:LCA:J_heart_inlet","10020":"flow:LCA:J_heart_inlet","10021":"flow:LCA:J_heart_inlet","10022":"flow:LCA:J_heart_inlet","10023":"flow:LCA:J_heart_inlet","10024":"flow:LCA:J_heart_inlet","10025":"flow:LCA:J_heart_inlet","10026":"flow:LCA:J_heart_inlet","10027":"flow:LCA:J_heart_inlet","10028":"flow:LCA:J_heart_inlet","10029":"flow:LCA:J_heart_inlet","10030":"flow:LCA:J_heart_inlet","10031":"flow:LCA:J_heart_inlet","10032":"flow:LCA:J_heart_inlet","10033":"flow:LCA:J_heart_inlet","10034":"flow:LCA:J_heart_inlet","10035":"flow:LCA:J_heart_inlet","10036":"flow:LCA:J_heart_inlet","10037":"flow:LCA:J_heart_inlet","10038":"flow:LCA:J_heart_inlet","10039":"flow:LCA:J_heart_inlet","10040":"flow:LCA:J_heart_inlet","10041":"flow:LCA:J_heart_inlet","10042":"flow:LCA:J_heart_inlet","10043":"flow:LCA:J_heart_inlet","10044":"flow:LCA:J_heart_inlet","10045":"flow:LCA:J_heart_inlet","10046":"flow:LCA:J_heart_inlet","10047":"flow:LCA:J_heart_inlet","10048":"flow:LCA:J_heart_inlet","10049":"flow:LCA:J_heart_inlet","10050":"flow:LCA:J_heart_inlet","10051":"flow:LCA:J_heart_inlet","10052":"flow:LCA:J_heart_inlet","10053":"flow:LCA:J_heart_inlet","10054":"flow:LCA:J_heart_inlet","10055":"flow:LCA:J_heart_inlet","10056":"flow:LCA:J_heart_inlet","10057":"flow:LCA:J_heart_inlet","10058":"flow:LCA:J_heart_inlet","10059":"flow:LCA:J_heart_inlet","10060":"flow:LCA:J_heart_inlet","10061":"flow:LCA:J_heart_inlet","10062":"flow:LCA:J_heart_inlet","10063":"flow:LCA:J_heart_inlet","10064":"flow:LCA:J_heart_inlet","10065":"flow:LCA:J_heart_inlet","10066":"flow:LCA:J_heart_inlet","10067":"flow:LCA:J_heart_inlet","10068":"flow:LCA:J_heart_inlet","10069":"flow:LCA:J_heart_inlet","10070":"flow:LCA:J_heart_inlet","10071":"flow:LCA:J_heart_inlet","10072":"flow:LCA:J_heart_inlet","10073":"flow:LCA:J_heart_inlet","10074":"flow:LCA:J_heart_inlet","10075":"flow:LCA:J_heart_inlet","10076":"flow:LCA:J_heart_inlet","10077":"flow:LCA:J_heart_inlet","10078":"flow:LCA:J_heart_inlet","10079":"flow:LCA:J_heart_inlet","10080":"flow:LCA:J_heart_inlet","10081":"flow:LCA:J_heart_inlet","10082":"flow:LCA:J_heart_inlet","10083":"flow:LCA:J_heart_inlet","10084":"flow:LCA:J_heart_inlet","10085":"flow:LCA:J_heart_inlet","10086":"flow:LCA:J_heart_inlet","10087":"flow:LCA:J_heart_inlet","10088":"flow:LCA:J_heart_inlet","10089":"flow:LCA:J_heart_inlet","10090":"flow:LCA:J_heart_inlet","10091":"flow:LCA:J_heart_inlet","10092":"flow:LCA:J_heart_inlet","10093":"flow:LCA:J_heart_inlet","10094":"flow:LCA:J_heart_inlet","10095":"flow:LCA:J_heart_inlet","10096":"flow:LCA:J_heart_inlet","10097":"flow:LCA:J_heart_inlet","10098":"flow:LCA:J_heart_inlet","10099":"flow:LCA:J_heart_inlet","10100":"flow:LCA:J_heart_inlet","10101":"flow:LCA:J_heart_inlet","10102":"flow:LCA:J_heart_inlet","10103":"flow:LCA:J_heart_inlet","10104":"flow:LCA:J_heart_inlet","10105":"flow:LCA:J_heart_inlet","10106":"flow:LCA:J_heart_inlet","10107":"flow:LCA:J_heart_inlet","10108":"flow:LCA:J_heart_inlet","10109":"flow:LCA:J_heart_inlet","10110":"flow:LCA:J_heart_inlet","10111":"flow:LCA:J_heart_inlet","10112":"flow:LCA:J_heart_inlet","10113":"flow:LCA:J_heart_inlet","10114":"flow:LCA:J_heart_inlet","10115":"flow:LCA:J_heart_inlet","10116":"flow:LCA:J_heart_inlet","10117":"flow:LCA:J_heart_inlet","10118":"flow:LCA:J_heart_inlet","10119":"flow:LCA:J_heart_inlet","10120":"flow:LCA:J_heart_inlet","10121":"flow:LCA:J_heart_inlet","10122":"flow:LCA:J_heart_inlet","10123":"flow:LCA:J_heart_inlet","10124":"flow:LCA:J_heart_inlet","10125":"flow:LCA:J_heart_inlet","10126":"flow:LCA:J_heart_inlet","10127":"flow:LCA:J_heart_inlet","10128":"flow:LCA:J_heart_inlet","10129":"flow:LCA:J_heart_inlet","10130":"flow:LCA:J_heart_inlet","10131":"flow:LCA:J_heart_inlet","10132":"flow:LCA:J_heart_inlet","10133":"flow:LCA:J_heart_inlet","10134":"flow:LCA:J_heart_inlet","10135":"flow:LCA:J_heart_inlet","10136":"flow:LCA:J_heart_inlet","10137":"flow:LCA:J_heart_inlet","10138":"flow:LCA:J_heart_inlet","10139":"flow:LCA:J_heart_inlet","10140":"flow:LCA:J_heart_inlet","10141":"flow:LCA:J_heart_inlet","10142":"flow:LCA:J_heart_inlet","10143":"flow:LCA:J_heart_inlet","10144":"flow:LCA:J_heart_inlet","10145":"flow:LCA:J_heart_inlet","10146":"flow:LCA:J_heart_inlet","10147":"flow:LCA:J_heart_inlet","10148":"flow:LCA:J_heart_inlet","10149":"flow:LCA:J_heart_inlet","10150":"flow:LCA:J_heart_inlet","10151":"flow:LCA:J_heart_inlet","10152":"flow:LCA:J_heart_inlet","10153":"flow:LCA:J_heart_inlet","10154":"flow:LCA:J_heart_inlet","10155":"flow:LCA:J_heart_inlet","10156":"flow:LCA:J_heart_inlet","10157":"flow:LCA:J_heart_inlet","10158":"flow:LCA:J_heart_inlet","10159":"flow:LCA:J_heart_inlet","10160":"flow:LCA:J_heart_inlet","10161":"flow:LCA:J_heart_inlet","10162":"flow:LCA:J_heart_inlet","10163":"flow:LCA:J_heart_inlet","10164":"flow:LCA:J_heart_inlet","10165":"flow:LCA:J_heart_inlet","10166":"flow:LCA:J_heart_inlet","10167":"flow:LCA:J_heart_inlet","10168":"flow:LCA:J_heart_inlet","10169":"flow:LCA:J_heart_inlet","10170":"flow:LCA:J_heart_inlet","10171":"flow:LCA:J_heart_inlet","10172":"flow:LCA:J_heart_inlet","10173":"flow:LCA:J_heart_inlet","10174":"flow:LCA:J_heart_inlet","10175":"flow:LCA:J_heart_inlet","10176":"flow:LCA:J_heart_inlet","10177":"flow:LCA:J_heart_inlet","10178":"flow:LCA:J_heart_inlet","10179":"flow:LCA:J_heart_inlet","10180":"flow:LCA:J_heart_inlet","10181":"flow:LCA:J_heart_inlet","10182":"flow:LCA:J_heart_inlet","10183":"flow:LCA:J_heart_inlet","10184":"flow:LCA:J_heart_inlet","10185":"flow:LCA:J_heart_inlet","10186":"flow:LCA:J_heart_inlet","10187":"flow:LCA:J_heart_inlet","10188":"flow:LCA:J_heart_inlet","10189":"flow:LCA:J_heart_inlet","10190":"flow:LCA:J_heart_inlet","10191":"flow:LCA:J_heart_inlet","10192":"flow:LCA:J_heart_inlet","10193":"flow:LCA:J_heart_inlet","10194":"flow:LCA:J_heart_inlet","10195":"flow:LCA:J_heart_inlet","10196":"flow:LCA:J_heart_inlet","10197":"flow:LCA:J_heart_inlet","10198":"flow:LCA:J_heart_inlet","10199":"flow:LCA:J_heart_inlet","10200":"flow:LCA:J_heart_inlet","10201":"flow:LCA:J_heart_inlet","10202":"flow:LCA:J_heart_inlet","10203":"flow:LCA:J_heart_inlet","10204":"flow:LCA:J_heart_inlet","10205":"flow:LCA:J_heart_inlet","10206":"flow:LCA:J_heart_inlet","10207":"flow:LCA:J_heart_inlet","10208":"flow:LCA:J_heart_inlet","10209":"flow:LCA:J_heart_inlet","10210":"flow:LCA:J_heart_inlet","10211":"flow:LCA:J_heart_inlet","10212":"flow:LCA:J_heart_inlet","10213":"flow:LCA:J_heart_inlet","10214":"flow:LCA:J_heart_inlet","10215":"flow:LCA:J_heart_inlet","10216":"flow:LCA:J_heart_inlet","10217":"flow:LCA:J_heart_inlet","10218":"flow:LCA:J_heart_inlet","10219":"flow:LCA:J_heart_inlet","10220":"flow:LCA:J_heart_inlet","10221":"flow:LCA:J_heart_inlet","10222":"flow:LCA:J_heart_inlet","10223":"flow:LCA:J_heart_inlet","10224":"flow:LCA:J_heart_inlet","10225":"flow:LCA:J_heart_inlet","10226":"flow:LCA:J_heart_inlet","10227":"flow:LCA:J_heart_inlet","10228":"flow:LCA:J_heart_inlet","10229":"flow:LCA:J_heart_inlet","10230":"flow:LCA:J_heart_inlet","10231":"flow:LCA:J_heart_inlet","10232":"flow:LCA:J_heart_inlet","10233":"flow:LCA:J_heart_inlet","10234":"flow:LCA:J_heart_inlet","10235":"flow:LCA:J_heart_inlet","10236":"flow:LCA:J_heart_inlet","10237":"flow:LCA:J_heart_inlet","10238":"flow:LCA:J_heart_inlet","10239":"flow:LCA:J_heart_inlet","10240":"flow:LCA:J_heart_inlet","10241":"flow:LCA:J_heart_inlet","10242":"flow:LCA:J_heart_inlet","10243":"flow:LCA:J_heart_inlet","10244":"flow:LCA:J_heart_inlet","10245":"flow:LCA:J_heart_inlet","10246":"flow:LCA:J_heart_inlet","10247":"flow:LCA:J_heart_inlet","10248":"flow:LCA:J_heart_inlet","10249":"flow:LCA:J_heart_inlet","10250":"flow:LCA:J_heart_inlet","10251":"flow:LCA:J_heart_inlet","10252":"flow:LCA:J_heart_inlet","10253":"flow:LCA:J_heart_inlet","10254":"flow:LCA:J_heart_inlet","10255":"flow:LCA:J_heart_inlet","10256":"flow:LCA:J_heart_inlet","10257":"flow:LCA:J_heart_inlet","10258":"flow:LCA:J_heart_inlet","10259":"flow:LCA:J_heart_inlet","10260":"flow:LCA:J_heart_inlet","10261":"flow:LCA:J_heart_inlet","10262":"flow:LCA:J_heart_inlet","10263":"flow:LCA:J_heart_inlet","10264":"flow:LCA:J_heart_inlet","10265":"flow:LCA:J_heart_inlet","10266":"flow:LCA:J_heart_inlet","10267":"flow:LCA:J_heart_inlet","10268":"flow:LCA:J_heart_inlet","10269":"flow:LCA:J_heart_inlet","10270":"flow:LCA:J_heart_inlet","10271":"flow:LCA:J_heart_inlet","10272":"flow:LCA:J_heart_inlet","10273":"flow:LCA:J_heart_inlet","10274":"flow:LCA:J_heart_inlet","10275":"flow:LCA:J_heart_inlet","10276":"flow:LCA:J_heart_inlet","10277":"flow:LCA:J_heart_inlet","10278":"flow:LCA:J_heart_inlet","10279":"flow:LCA:J_heart_inlet","10280":"flow:LCA:J_heart_inlet","10281":"flow:LCA:J_heart_inlet","10282":"flow:LCA:J_heart_inlet","10283":"flow:LCA:J_heart_inlet","10284":"flow:LCA:J_heart_inlet","10285":"flow:LCA:J_heart_inlet","10286":"flow:LCA:J_heart_inlet","10287":"flow:LCA:J_heart_inlet","10288":"flow:LCA:J_heart_inlet","10289":"flow:LCA:J_heart_inlet","10290":"flow:LCA:J_heart_inlet","10291":"flow:LCA:J_heart_inlet","10292":"flow:LCA:J_heart_inlet","10293":"flow:LCA:J_heart_inlet","10294":"flow:LCA:J_heart_inlet","10295":"flow:LCA:J_heart_inlet","10296":"flow:LCA:J_heart_inlet","10297":"flow:LCA:J_heart_inlet","10298":"flow:LCA:J_heart_inlet","10299":"flow:LCA:J_heart_inlet","10300":"flow:LCA:J_heart_inlet","10301":"flow:LCA:J_heart_inlet","10302":"flow:LCA:J_heart_inlet","10303":"flow:LCA:J_heart_inlet","10304":"flow:LCA:J_heart_inlet","10305":"flow:LCA:J_heart_inlet","10306":"flow:LCA:J_heart_inlet","10307":"flow:LCA:J_heart_inlet","10308":"flow:LCA:J_heart_inlet","10309":"flow:LCA:J_heart_inlet","10310":"flow:LCA:J_heart_inlet","10311":"flow:LCA:J_heart_inlet","10312":"flow:LCA:J_heart_inlet","10313":"flow:LCA:J_heart_inlet","10314":"flow:LCA:J_heart_inlet","10315":"flow:LCA:J_heart_inlet","10316":"flow:LCA:J_heart_inlet","10317":"flow:LCA:J_heart_inlet","10318":"flow:LCA:J_heart_inlet","10319":"flow:LCA:J_heart_inlet","10320":"flow:LCA:J_heart_inlet","10321":"flow:LCA:J_heart_inlet","10322":"flow:LCA:J_heart_inlet","10323":"flow:LCA:J_heart_inlet","10324":"flow:LCA:J_heart_inlet","10325":"flow:LCA:J_heart_inlet","10326":"flow:LCA:J_heart_inlet","10327":"flow:LCA:J_heart_inlet","10328":"flow:LCA:J_heart_inlet","10329":"flow:LCA:J_heart_inlet","10330":"flow:LCA:J_heart_inlet","10331":"flow:LCA:J_heart_inlet","10332":"flow:LCA:J_heart_inlet","10333":"flow:LCA:J_heart_inlet","10334":"flow:LCA:J_heart_inlet","10335":"flow:LCA:J_heart_inlet","10336":"flow:LCA:J_heart_inlet","10337":"flow:LCA:J_heart_inlet","10338":"flow:LCA:J_heart_inlet","10339":"flow:LCA:J_heart_inlet","10340":"flow:LCA:J_heart_inlet","10341":"flow:LCA:J_heart_inlet","10342":"flow:LCA:J_heart_inlet","10343":"flow:LCA:J_heart_inlet","10344":"flow:LCA:J_heart_inlet","10345":"flow:LCA:J_heart_inlet","10346":"flow:LCA:J_heart_inlet","10347":"flow:LCA:J_heart_inlet","10348":"flow:LCA:J_heart_inlet","10349":"flow:LCA:J_heart_inlet","10350":"flow:LCA:J_heart_inlet","10351":"flow:LCA:J_heart_inlet","10352":"flow:LCA:J_heart_inlet","10353":"flow:LCA:J_heart_inlet","10354":"flow:LCA:J_heart_inlet","10355":"flow:LCA:J_heart_inlet","10356":"flow:LCA:J_heart_inlet","10357":"flow:LCA:J_heart_inlet","10358":"flow:LCA:J_heart_inlet","10359":"flow:LCA:J_heart_inlet","10360":"flow:LCA:J_heart_inlet","10361":"flow:LCA:J_heart_inlet","10362":"flow:LCA:J_heart_inlet","10363":"flow:LCA:J_heart_inlet","10364":"flow:LCA:J_heart_inlet","10365":"flow:LCA:J_heart_inlet","10366":"flow:LCA:J_heart_inlet","10367":"flow:LCA:J_heart_inlet","10368":"flow:LCA:J_heart_inlet","10369":"flow:LCA:J_heart_inlet","10370":"flow:LCA:J_heart_inlet","10371":"flow:LCA:J_heart_inlet","10372":"flow:LCA:J_heart_inlet","10373":"flow:LCA:J_heart_inlet","10374":"flow:LCA:J_heart_inlet","10375":"flow:LCA:J_heart_inlet","10376":"flow:LCA:J_heart_inlet","10377":"flow:LCA:J_heart_inlet","10378":"flow:LCA:J_heart_inlet","10379":"flow:LCA:J_heart_inlet","10380":"flow:LCA:J_heart_inlet","10381":"flow:LCA:J_heart_inlet","10382":"flow:LCA:J_heart_inlet","10383":"flow:LCA:J_heart_inlet","10384":"flow:LCA:J_heart_inlet","10385":"flow:LCA:J_heart_inlet","10386":"flow:LCA:J_heart_inlet","10387":"flow:LCA:J_heart_inlet","10388":"flow:LCA:J_heart_inlet","10389":"flow:LCA:J_heart_inlet","10390":"flow:LCA:J_heart_inlet","10391":"flow:LCA:J_heart_inlet","10392":"flow:LCA:J_heart_inlet","10393":"flow:LCA:J_heart_inlet","10394":"flow:LCA:J_heart_inlet","10395":"flow:LCA:J_heart_inlet","10396":"flow:LCA:J_heart_inlet","10397":"flow:LCA:J_heart_inlet","10398":"flow:LCA:J_heart_inlet","10399":"flow:LCA:J_heart_inlet","10400":"flow:LCA:J_heart_inlet","10401":"flow:LCA:J_heart_inlet","10402":"flow:LCA:J_heart_inlet","10403":"flow:LCA:J_heart_inlet","10404":"flow:LCA:J_heart_inlet","10405":"flow:LCA:J_heart_inlet","10406":"flow:LCA:J_heart_inlet","10407":"flow:LCA:J_heart_inlet","10408":"flow:LCA:J_heart_inlet","10409":"flow:LCA:J_heart_inlet","10410":"flow:LCA:J_heart_inlet","10411":"flow:LCA:J_heart_inlet","10412":"flow:LCA:J_heart_inlet","10413":"flow:LCA:J_heart_inlet","10414":"flow:LCA:J_heart_inlet","10415":"flow:LCA:J_heart_inlet","10416":"flow:LCA:J_heart_inlet","10417":"flow:LCA:J_heart_inlet","10418":"flow:LCA:J_heart_inlet","10419":"flow:LCA:J_heart_inlet","10420":"flow:LCA:J_heart_inlet","10421":"flow:LCA:J_heart_inlet","10422":"flow:LCA:J_heart_inlet","10423":"flow:LCA:J_heart_inlet","10424":"flow:LCA:J_heart_inlet","10425":"flow:LCA:J_heart_inlet","10426":"flow:LCA:J_heart_inlet","10427":"flow:LCA:J_heart_inlet","10428":"flow:LCA:J_heart_inlet","10429":"flow:LCA:J_heart_inlet","10430":"flow:LCA:J_heart_inlet","10431":"flow:LCA:J_heart_inlet","10432":"flow:LCA:J_heart_inlet","10433":"flow:LCA:J_heart_inlet","10434":"flow:LCA:J_heart_inlet","10435":"flow:LCA:J_heart_inlet","10436":"flow:LCA:J_heart_inlet","10437":"flow:LCA:J_heart_inlet","10438":"flow:LCA:J_heart_inlet","10439":"flow:LCA:J_heart_inlet","10440":"flow:LCA:J_heart_inlet","10441":"flow:LCA:J_heart_inlet","10442":"flow:LCA:J_heart_inlet","10443":"flow:LCA:J_heart_inlet","10444":"flow:LCA:J_heart_inlet","10445":"flow:LCA:J_heart_inlet","10446":"flow:LCA:J_heart_inlet","10447":"flow:LCA:J_heart_inlet","10448":"flow:LCA:J_heart_inlet","10449":"flow:LCA:J_heart_inlet","10450":"flow:LCA:J_heart_inlet","10451":"flow:LCA:J_heart_inlet","10452":"flow:LCA:J_heart_inlet","10453":"flow:LCA:J_heart_inlet","10454":"flow:LCA:J_heart_inlet","10455":"flow:LCA:J_heart_inlet","10456":"flow:LCA:J_heart_inlet","10457":"flow:LCA:J_heart_inlet","10458":"flow:LCA:J_heart_inlet","10459":"flow:LCA:J_heart_inlet","10460":"flow:LCA:J_heart_inlet","10461":"flow:LCA:J_heart_inlet","10462":"flow:LCA:J_heart_inlet","10463":"flow:LCA:J_heart_inlet","10464":"flow:LCA:J_heart_inlet","10465":"flow:LCA:J_heart_inlet","10466":"flow:LCA:J_heart_inlet","10467":"flow:LCA:J_heart_inlet","10468":"flow:LCA:J_heart_inlet","10469":"flow:LCA:J_heart_inlet","10470":"flow:LCA:J_heart_inlet","10471":"flow:LCA:J_heart_inlet","10472":"flow:LCA:J_heart_inlet","10473":"flow:LCA:J_heart_inlet","10474":"flow:LCA:J_heart_inlet","10475":"flow:LCA:J_heart_inlet","10476":"flow:LCA:J_heart_inlet","10477":"flow:LCA:J_heart_inlet","10478":"flow:LCA:J_heart_inlet","10479":"flow:LCA:J_heart_inlet","10480":"flow:LCA:J_heart_inlet","10481":"flow:LCA:J_heart_inlet","10482":"flow:LCA:J_heart_inlet","10483":"flow:LCA:J_heart_inlet","10484":"flow:LCA:J_heart_inlet","10485":"flow:LCA:J_heart_inlet","10486":"flow:LCA:J_heart_inlet","10487":"flow:LCA:J_heart_inlet","10488":"flow:LCA:J_heart_inlet","10489":"flow:LCA:J_heart_inlet","10490":"flow:LCA:J_heart_inlet","10491":"flow:LCA:J_heart_inlet","10492":"flow:LCA:J_heart_inlet","10493":"flow:LCA:J_heart_inlet","10494":"flow:LCA:J_heart_inlet","10495":"flow:LCA:J_heart_inlet","10496":"flow:LCA:J_heart_inlet","10497":"flow:LCA:J_heart_inlet","10498":"flow:LCA:J_heart_inlet","10499":"flow:LCA:J_heart_inlet","10500":"flow:LCA:J_heart_inlet","10501":"flow:LCA:J_heart_inlet","10502":"flow:LCA:J_heart_inlet","10503":"flow:LCA:J_heart_inlet","10504":"flow:LCA:J_heart_inlet","10505":"flow:LCA:J_heart_inlet","10506":"flow:LCA:J_heart_inlet","10507":"flow:LCA:J_heart_inlet","10508":"flow:LCA:J_heart_inlet","10509":"flow:LCA:J_heart_inlet","10510":"flow:LCA:J_heart_inlet","10511":"flow:LCA:J_heart_inlet","10512":"flow:LCA:J_heart_inlet","10513":"flow:LCA:J_heart_inlet","10514":"flow:LCA:J_heart_inlet","10515":"flow:LCA:J_heart_inlet","10516":"flow:LCA:J_heart_inlet","10517":"flow:LCA:J_heart_inlet","10518":"flow:LCA:J_heart_inlet","10519":"flow:LCA:J_heart_inlet","10520":"flow:LCA:J_heart_inlet","10521":"flow:LCA:J_heart_inlet","10522":"flow:LCA:J_heart_inlet","10523":"flow:LCA:J_heart_inlet","10524":"flow:LCA:J_heart_inlet","10525":"flow:LCA:J_heart_inlet","10526":"flow:LCA:J_heart_inlet","10527":"flow:LCA:J_heart_inlet","10528":"flow:LCA:J_heart_inlet","10529":"flow:LCA:J_heart_inlet","10530":"flow:LCA:J_heart_inlet","10531":"flow:LCA:J_heart_inlet","10532":"flow:LCA:J_heart_inlet","10533":"flow:LCA:J_heart_inlet","10534":"flow:LCA:J_heart_inlet","10535":"flow:LCA:J_heart_inlet","10536":"flow:LCA:J_heart_inlet","10537":"flow:LCA:J_heart_inlet","10538":"flow:LCA:J_heart_inlet","10539":"flow:LCA:J_heart_inlet","10540":"flow:LCA:J_heart_inlet","10541":"flow:LCA:J_heart_inlet","10542":"flow:LCA:J_heart_inlet","10543":"flow:LCA:J_heart_inlet","10544":"flow:LCA:J_heart_inlet","10545":"flow:LCA:J_heart_inlet","10546":"flow:LCA:J_heart_inlet","10547":"flow:LCA:J_heart_inlet","10548":"flow:LCA:J_heart_inlet","10549":"flow:LCA:J_heart_inlet","10550":"flow:LCA:J_heart_inlet","10551":"flow:LCA:J_heart_inlet","10552":"flow:LCA:J_heart_inlet","10553":"flow:LCA:J_heart_inlet","10554":"flow:LCA:J_heart_inlet","10555":"flow:LCA:J_heart_inlet","10556":"flow:LCA:J_heart_inlet","10557":"flow:LCA:J_heart_inlet","10558":"flow:LCA:J_heart_inlet","10559":"flow:LCA:J_heart_inlet","10560":"flow:LCA:J_heart_inlet","10561":"flow:LCA:J_heart_inlet","10562":"flow:LCA:J_heart_inlet","10563":"flow:LCA:J_heart_inlet","10564":"flow:LCA:J_heart_inlet","10565":"flow:LCA:J_heart_inlet","10566":"flow:LCA:J_heart_inlet","10567":"flow:LCA:J_heart_inlet","10568":"flow:LCA:J_heart_inlet","10569":"flow:LCA:J_heart_inlet","10570":"flow:LCA:J_heart_inlet","10571":"flow:LCA:J_heart_inlet","10572":"flow:LCA:J_heart_inlet","10573":"flow:LCA:J_heart_inlet","10574":"flow:LCA:J_heart_inlet","10575":"flow:LCA:J_heart_inlet","10576":"flow:LCA:J_heart_inlet","10577":"flow:LCA:J_heart_inlet","10578":"flow:LCA:J_heart_inlet","10579":"flow:LCA:J_heart_inlet","10580":"flow:LCA:J_heart_inlet","10581":"flow:LCA:J_heart_inlet","10582":"flow:LCA:J_heart_inlet","10583":"flow:LCA:J_heart_inlet","10584":"flow:LCA:J_heart_inlet","10585":"flow:LCA:J_heart_inlet","10586":"flow:LCA:J_heart_inlet","10587":"flow:LCA:J_heart_inlet","10588":"flow:LCA:J_heart_inlet","10589":"flow:LCA:J_heart_inlet","10590":"flow:LCA:J_heart_inlet","10591":"flow:LCA:J_heart_inlet","10592":"flow:LCA:J_heart_inlet","10593":"flow:LCA:J_heart_inlet","10594":"flow:LCA:J_heart_inlet","10595":"flow:LCA:J_heart_inlet","10596":"flow:LCA:J_heart_inlet","10597":"flow:LCA:J_heart_inlet","10598":"flow:LCA:J_heart_inlet","10599":"flow:LCA:J_heart_inlet","10600":"flow:LCA:J_heart_inlet","10601":"flow:LCA:J_heart_inlet","10602":"flow:LCA:J_heart_inlet","10603":"flow:LCA:J_heart_inlet","10604":"flow:LCA:J_heart_inlet","10605":"flow:LCA:J_heart_inlet","10606":"flow:LCA:J_heart_inlet","10607":"flow:LCA:J_heart_inlet","10608":"flow:LCA:J_heart_inlet","10609":"flow:LCA:J_heart_inlet","10610":"flow:LCA:J_heart_inlet","10611":"flow:LCA:J_heart_inlet","10612":"flow:LCA:J_heart_inlet","10613":"flow:LCA:J_heart_inlet","10614":"flow:LCA:J_heart_inlet","10615":"flow:LCA:J_heart_inlet","10616":"flow:LCA:J_heart_inlet","10617":"flow:LCA:J_heart_inlet","10618":"flow:LCA:J_heart_inlet","10619":"flow:LCA:J_heart_inlet","10620":"flow:LCA:J_heart_inlet","10621":"flow:LCA:J_heart_inlet","10622":"flow:LCA:J_heart_inlet","10623":"flow:LCA:J_heart_inlet","10624":"flow:LCA:J_heart_inlet","10625":"flow:LCA:J_heart_inlet","10626":"flow:LCA:J_heart_inlet","10627":"flow:LCA:J_heart_inlet","10628":"flow:LCA:J_heart_inlet","10629":"flow:LCA:J_heart_inlet","10630":"flow:LCA:J_heart_inlet","10631":"flow:LCA:J_heart_inlet","10632":"flow:LCA:J_heart_inlet","10633":"flow:LCA:J_heart_inlet","10634":"flow:LCA:J_heart_inlet","10635":"flow:LCA:J_heart_inlet","10636":"flow:LCA:J_heart_inlet","10637":"flow:LCA:J_heart_inlet","10638":"flow:LCA:J_heart_inlet","10639":"flow:LCA:J_heart_inlet","10640":"flow:LCA:J_heart_inlet","10641":"flow:LCA:J_heart_inlet","10642":"flow:LCA:J_heart_inlet","10643":"flow:LCA:J_heart_inlet","10644":"flow:LCA:J_heart_inlet","10645":"flow:LCA:J_heart_inlet","10646":"flow:LCA:J_heart_inlet","10647":"flow:LCA:J_heart_inlet","10648":"flow:LCA:J_heart_inlet","10649":"flow:LCA:J_heart_inlet","10650":"flow:LCA:J_heart_inlet","10651":"flow:LCA:J_heart_inlet","10652":"flow:LCA:J_heart_inlet","10653":"flow:LCA:J_heart_inlet","10654":"flow:LCA:J_heart_inlet","10655":"flow:LCA:J_heart_inlet","10656":"flow:LCA:J_heart_inlet","10657":"flow:LCA:J_heart_inlet","10658":"flow:LCA:J_heart_inlet","10659":"flow:LCA:J_heart_inlet","10660":"flow:LCA:J_heart_inlet","10661":"flow:LCA:J_heart_inlet","10662":"flow:LCA:J_heart_inlet","10663":"flow:LCA:J_heart_inlet","10664":"flow:LCA:J_heart_inlet","10665":"flow:LCA:J_heart_inlet","10666":"flow:LCA:J_heart_inlet","10667":"flow:LCA:J_heart_inlet","10668":"flow:LCA:J_heart_inlet","10669":"flow:LCA:J_heart_inlet","10670":"flow:LCA:J_heart_inlet","10671":"flow:LCA:J_heart_inlet","10672":"flow:LCA:J_heart_inlet","10673":"flow:LCA:J_heart_inlet","10674":"flow:LCA:J_heart_inlet","10675":"flow:LCA:J_heart_inlet","10676":"flow:LCA:J_heart_inlet","10677":"flow:LCA:J_heart_inlet","10678":"flow:LCA:J_heart_inlet","10679":"flow:LCA:J_heart_inlet","10680":"flow:LCA:J_heart_inlet","10681":"flow:LCA:J_heart_inlet","10682":"flow:LCA:J_heart_inlet","10683":"flow:LCA:J_heart_inlet","10684":"flow:LCA:J_heart_inlet","10685":"flow:LCA:J_heart_inlet","10686":"flow:LCA:J_heart_inlet","10687":"flow:LCA:J_heart_inlet","10688":"flow:LCA:J_heart_inlet","10689":"flow:LCA:J_heart_inlet","10690":"flow:LCA:J_heart_inlet","10691":"flow:LCA:J_heart_inlet","10692":"flow:LCA:J_heart_inlet","10693":"flow:LCA:J_heart_inlet","10694":"flow:LCA:J_heart_inlet","10695":"flow:LCA:J_heart_inlet","10696":"flow:LCA:J_heart_inlet","10697":"flow:LCA:J_heart_inlet","10698":"flow:LCA:J_heart_inlet","10699":"flow:LCA:J_heart_inlet","10700":"flow:LCA:J_heart_inlet","10701":"flow:LCA:J_heart_inlet","10702":"flow:LCA:J_heart_inlet","10703":"flow:LCA:J_heart_inlet","10704":"flow:LCA:J_heart_inlet","10705":"flow:LCA:J_heart_inlet","10706":"flow:LCA:J_heart_inlet","10707":"flow:LCA:J_heart_inlet","10708":"flow:LCA:J_heart_inlet","10709":"flow:LCA:J_heart_inlet","10710":"flow:LCA:J_heart_inlet","10711":"flow:LCA:J_heart_inlet","10712":"flow:LCA:J_heart_inlet","10713":"flow:LCA:J_heart_inlet","10714":"flow:LCA:J_heart_inlet","10715":"flow:LCA:J_heart_inlet","10716":"flow:LCA:J_heart_inlet","10717":"flow:LCA:J_heart_inlet","10718":"flow:LCA:J_heart_inlet","10719":"flow:LCA:J_heart_inlet","10720":"flow:LCA:J_heart_inlet","10721":"flow:LCA:J_heart_inlet","10722":"flow:LCA:J_heart_inlet","10723":"flow:LCA:J_heart_inlet","10724":"flow:LCA:J_heart_inlet","10725":"flow:LCA:J_heart_inlet","10726":"flow:LCA:J_heart_inlet","10727":"flow:LCA:J_heart_inlet","10728":"flow:LCA:J_heart_inlet","10729":"flow:LCA:J_heart_inlet","10730":"flow:LCA:J_heart_inlet","10731":"flow:LCA:J_heart_inlet","10732":"flow:LCA:J_heart_inlet","10733":"flow:LCA:J_heart_inlet","10734":"flow:LCA:J_heart_inlet","10735":"flow:LCA:J_heart_inlet","10736":"flow:LCA:J_heart_inlet","10737":"flow:LCA:J_heart_inlet","10738":"flow:LCA:J_heart_inlet","10739":"flow:LCA:J_heart_inlet","10740":"flow:LCA:J_heart_inlet","10741":"flow:LCA:J_heart_inlet","10742":"flow:LCA:J_heart_inlet","10743":"flow:LCA:J_heart_inlet","10744":"flow:LCA:J_heart_inlet","10745":"flow:LCA:J_heart_inlet","10746":"flow:LCA:J_heart_inlet","10747":"flow:LCA:J_heart_inlet","10748":"flow:LCA:J_heart_inlet","10749":"flow:LCA:J_heart_inlet","10750":"flow:LCA:J_heart_inlet","10751":"flow:LCA:J_heart_inlet","10752":"flow:LCA:J_heart_inlet","10753":"flow:LCA:J_heart_inlet","10754":"flow:LCA:J_heart_inlet","10755":"flow:LCA:J_heart_inlet","10756":"flow:LCA:J_heart_inlet","10757":"flow:LCA:J_heart_inlet","10758":"flow:LCA:J_heart_inlet","10759":"flow:LCA:J_heart_inlet","10760":"flow:LCA:J_heart_inlet","10761":"flow:LCA:J_heart_inlet","10762":"flow:LCA:J_heart_inlet","10763":"flow:LCA:J_heart_inlet","10764":"flow:LCA:J_heart_inlet","10765":"flow:LCA:J_heart_inlet","10766":"flow:LCA:J_heart_inlet","10767":"flow:LCA:J_heart_inlet","10768":"flow:LCA:J_heart_inlet","10769":"flow:LCA:J_heart_inlet","10770":"flow:LCA:J_heart_inlet","10771":"flow:LCA:J_heart_inlet","10772":"flow:LCA:J_heart_inlet","10773":"flow:LCA:J_heart_inlet","10774":"flow:LCA:J_heart_inlet","10775":"flow:LCA:J_heart_inlet","10776":"flow:LCA:J_heart_inlet","10777":"flow:LCA:J_heart_inlet","10778":"flow:LCA:J_heart_inlet","10779":"flow:LCA:J_heart_inlet","10780":"flow:LCA:J_heart_inlet","10781":"flow:LCA:J_heart_inlet","10782":"flow:LCA:J_heart_inlet","10783":"flow:LCA:J_heart_inlet","10784":"flow:LCA:J_heart_inlet","10785":"flow:LCA:J_heart_inlet","10786":"flow:LCA:J_heart_inlet","10787":"flow:LCA:J_heart_inlet","10788":"flow:LCA:J_heart_inlet","10789":"flow:LCA:J_heart_inlet","10790":"flow:LCA:J_heart_inlet","10791":"flow:LCA:J_heart_inlet","10792":"flow:LCA:J_heart_inlet","10793":"flow:LCA:J_heart_inlet","10794":"flow:LCA:J_heart_inlet","10795":"flow:LCA:J_heart_inlet","10796":"flow:LCA:J_heart_inlet","10797":"flow:LCA:J_heart_inlet","10798":"flow:LCA:J_heart_inlet","10799":"flow:LCA:J_heart_inlet","10800":"flow:LCA:J_heart_inlet","10801":"flow:LCA:J_heart_inlet","10802":"flow:LCA:J_heart_inlet","10803":"flow:LCA:J_heart_inlet","10804":"flow:LCA:J_heart_inlet","10805":"flow:LCA:J_heart_inlet","10806":"flow:LCA:J_heart_inlet","10807":"flow:LCA:J_heart_inlet","10808":"flow:LCA:J_heart_inlet","10809":"flow:LCA:J_heart_inlet","10810":"flow:LCA:J_heart_inlet","10811":"flow:LCA:J_heart_inlet","10812":"flow:LCA:J_heart_inlet","10813":"flow:LCA:J_heart_inlet","10814":"flow:LCA:J_heart_inlet","10815":"flow:LCA:J_heart_inlet","10816":"flow:LCA:J_heart_inlet","10817":"flow:LCA:J_heart_inlet","10818":"flow:LCA:J_heart_inlet","10819":"flow:LCA:J_heart_inlet","10820":"flow:LCA:J_heart_inlet","10821":"flow:LCA:J_heart_inlet","10822":"flow:LCA:J_heart_inlet","10823":"flow:LCA:J_heart_inlet","10824":"flow:LCA:J_heart_inlet","10825":"flow:LCA:J_heart_inlet","10826":"flow:LCA:J_heart_inlet","10827":"flow:LCA:J_heart_inlet","10828":"flow:LCA:J_heart_inlet","10829":"flow:LCA:J_heart_inlet","10830":"flow:LCA:J_heart_inlet","10831":"flow:LCA:J_heart_inlet","10832":"flow:LCA:J_heart_inlet","10833":"flow:LCA:J_heart_inlet","10834":"flow:LCA:J_heart_inlet","10835":"flow:LCA:J_heart_inlet","10836":"flow:LCA:J_heart_inlet","10837":"flow:LCA:J_heart_inlet","10838":"flow:LCA:J_heart_inlet","10839":"flow:LCA:J_heart_inlet","10840":"flow:LCA:J_heart_inlet","10841":"flow:LCA:J_heart_inlet","10842":"flow:LCA:J_heart_inlet","10843":"flow:LCA:J_heart_inlet","10844":"flow:LCA:J_heart_inlet","10845":"flow:LCA:J_heart_inlet","10846":"flow:LCA:J_heart_inlet","10847":"flow:LCA:J_heart_inlet","10848":"flow:LCA:J_heart_inlet","10849":"flow:LCA:J_heart_inlet","10850":"flow:LCA:J_heart_inlet","10851":"flow:LCA:J_heart_inlet","10852":"flow:LCA:J_heart_inlet","10853":"flow:LCA:J_heart_inlet","10854":"flow:LCA:J_heart_inlet","10855":"flow:LCA:J_heart_inlet","10856":"flow:LCA:J_heart_inlet","10857":"flow:LCA:J_heart_inlet","10858":"flow:LCA:J_heart_inlet","10859":"flow:LCA:J_heart_inlet","10860":"flow:LCA:J_heart_inlet","10861":"flow:LCA:J_heart_inlet","10862":"flow:LCA:J_heart_inlet","10863":"flow:LCA:J_heart_inlet","10864":"flow:LCA:J_heart_inlet","10865":"flow:LCA:J_heart_inlet","10866":"flow:LCA:J_heart_inlet","10867":"flow:LCA:J_heart_inlet","10868":"flow:LCA:J_heart_inlet","10869":"flow:LCA:J_heart_inlet","10870":"flow:LCA:J_heart_inlet","10871":"flow:LCA:J_heart_inlet","10872":"flow:LCA:J_heart_inlet","10873":"flow:LCA:J_heart_inlet","10874":"flow:LCA:J_heart_inlet","10875":"flow:LCA:J_heart_inlet","10876":"flow:LCA:J_heart_inlet","10877":"flow:LCA:J_heart_inlet","10878":"flow:LCA:J_heart_inlet","10879":"flow:LCA:J_heart_inlet","10880":"flow:LCA:J_heart_inlet","10881":"flow:LCA:J_heart_inlet","10882":"flow:LCA:J_heart_inlet","10883":"flow:LCA:J_heart_inlet","10884":"flow:LCA:J_heart_inlet","10885":"flow:LCA:J_heart_inlet","10886":"flow:LCA:J_heart_inlet","10887":"flow:LCA:J_heart_inlet","10888":"flow:LCA:J_heart_inlet","10889":"flow:LCA:J_heart_inlet","10890":"flow:LCA:J_heart_inlet","10891":"flow:LCA:J_heart_inlet","10892":"flow:LCA:J_heart_inlet","10893":"flow:LCA:J_heart_inlet","10894":"flow:LCA:J_heart_inlet","10895":"flow:LCA:J_heart_inlet","10896":"flow:LCA:J_heart_inlet","10897":"flow:LCA:J_heart_inlet","10898":"flow:LCA:J_heart_inlet","10899":"flow:LCA:J_heart_inlet","10900":"flow:LCA:J_heart_inlet","10901":"flow:LCA:J_heart_inlet","10902":"flow:LCA:J_heart_inlet","10903":"flow:LCA:J_heart_inlet","10904":"flow:LCA:J_heart_inlet","10905":"flow:LCA:J_heart_inlet","10906":"flow:LCA:J_heart_inlet","10907":"flow:LCA:J_heart_inlet","10908":"flow:LCA:J_heart_inlet","10909":"flow:LCA:J_heart_inlet","10910":"flow:LCA:J_heart_inlet","10911":"flow:LCA:J_heart_inlet","10912":"flow:LCA:J_heart_inlet","10913":"flow:LCA:J_heart_inlet","10914":"flow:LCA:J_heart_inlet","10915":"flow:LCA:J_heart_inlet","10916":"flow:LCA:J_heart_inlet","10917":"flow:LCA:J_heart_inlet","10918":"flow:LCA:J_heart_inlet","10919":"flow:LCA:J_heart_inlet","10920":"flow:LCA:J_heart_inlet","10921":"flow:LCA:J_heart_inlet","10922":"flow:LCA:J_heart_inlet","10923":"flow:LCA:J_heart_inlet","10924":"flow:LCA:J_heart_inlet","10925":"flow:LCA:J_heart_inlet","10926":"flow:LCA:J_heart_inlet","10927":"flow:LCA:J_heart_inlet","10928":"flow:LCA:J_heart_inlet","10929":"flow:LCA:J_heart_inlet","10930":"flow:LCA:J_heart_inlet","10931":"flow:LCA:J_heart_inlet","10932":"flow:LCA:J_heart_inlet","10933":"flow:LCA:J_heart_inlet","10934":"flow:LCA:J_heart_inlet","10935":"flow:LCA:J_heart_inlet","10936":"flow:LCA:J_heart_inlet","10937":"flow:LCA:J_heart_inlet","10938":"flow:LCA:J_heart_inlet","10939":"flow:LCA:J_heart_inlet","10940":"flow:LCA:J_heart_inlet","10941":"flow:LCA:J_heart_inlet","10942":"flow:LCA:J_heart_inlet","10943":"flow:LCA:J_heart_inlet","10944":"flow:LCA:J_heart_inlet","10945":"flow:LCA:J_heart_inlet","10946":"flow:LCA:J_heart_inlet","10947":"flow:LCA:J_heart_inlet","10948":"flow:LCA:J_heart_inlet","10949":"flow:LCA:J_heart_inlet","10950":"flow:LCA:J_heart_inlet","10951":"flow:LCA:J_heart_inlet","10952":"flow:LCA:J_heart_inlet","10953":"flow:LCA:J_heart_inlet","10954":"flow:LCA:J_heart_inlet","10955":"flow:LCA:J_heart_inlet","10956":"flow:LCA:J_heart_inlet","10957":"flow:LCA:J_heart_inlet","10958":"flow:LCA:J_heart_inlet","10959":"flow:LCA:J_heart_inlet","10960":"flow:LCA:J_heart_inlet","10961":"flow:LCA:J_heart_inlet","10962":"flow:LCA:J_heart_inlet","10963":"flow:LCA:J_heart_inlet","10964":"flow:LCA:J_heart_inlet","10965":"flow:LCA:J_heart_inlet","10966":"flow:LCA:J_heart_inlet","10967":"flow:LCA:J_heart_inlet","10968":"flow:LCA:J_heart_inlet","10969":"flow:LCA:J_heart_inlet","10970":"flow:LCA:J_heart_inlet","10971":"flow:LCA:J_heart_inlet","10972":"flow:LCA:J_heart_inlet","10973":"flow:LCA:J_heart_inlet","10974":"flow:LCA:J_heart_inlet","10975":"flow:LCA:J_heart_inlet","10976":"flow:LCA:J_heart_inlet","10977":"flow:LCA:J_heart_inlet","10978":"flow:LCA:J_heart_inlet","10979":"flow:LCA:J_heart_inlet","10980":"flow:LCA:J_heart_inlet","10981":"flow:LCA:J_heart_inlet","10982":"flow:LCA:J_heart_inlet","10983":"flow:LCA:J_heart_inlet","10984":"flow:LCA:J_heart_inlet","10985":"flow:LCA:J_heart_inlet","10986":"flow:LCA:J_heart_inlet","10987":"flow:LCA:J_heart_inlet","10988":"flow:LCA:J_heart_inlet","10989":"flow:LCA:J_heart_inlet","10990":"flow:LCA:J_heart_inlet","10991":"flow:LCA:J_heart_inlet","10992":"flow:LCA:J_heart_inlet","10993":"flow:LCA:J_heart_inlet","10994":"flow:LCA:J_heart_inlet","10995":"flow:LCA:J_heart_inlet","10996":"flow:LCA:J_heart_inlet","10997":"flow:LCA:J_heart_inlet","10998":"flow:LCA:J_heart_inlet","10999":"flow:LCA:J_heart_inlet","11000":"pressure:LCA:J_heart_inlet","11001":"pressure:LCA:J_heart_inlet","11002":"pressure:LCA:J_heart_inlet","11003":"pressure:LCA:J_heart_inlet","11004":"pressure:LCA:J_heart_inlet","11005":"pressure:LCA:J_heart_inlet","11006":"pressure:LCA:J_heart_inlet","11007":"pressure:LCA:J_heart_inlet","11008":"pressure:LCA:J_heart_inlet","11009":"pressure:LCA:J_heart_inlet","11010":"pressure:LCA:J_heart_inlet","11011":"pressure:LCA:J_heart_inlet","11012":"pressure:LCA:J_heart_inlet","11013":"pressure:LCA:J_heart_inlet","11014":"pressure:LCA:J_heart_inlet","11015":"pressure:LCA:J_heart_inlet","11016":"pressure:LCA:J_heart_inlet","11017":"pressure:LCA:J_heart_inlet","11018":"pressure:LCA:J_heart_inlet","11019":"pressure:LCA:J_heart_inlet","11020":"pressure:LCA:J_heart_inlet","11021":"pressure:LCA:J_heart_inlet","11022":"pressure:LCA:J_heart_inlet","11023":"pressure:LCA:J_heart_inlet","11024":"pressure:LCA:J_heart_inlet","11025":"pressure:LCA:J_heart_inlet","11026":"pressure:LCA:J_heart_inlet","11027":"pressure:LCA:J_heart_inlet","11028":"pressure:LCA:J_heart_inlet","11029":"pressure:LCA:J_heart_inlet","11030":"pressure:LCA:J_heart_inlet","11031":"pressure:LCA:J_heart_inlet","11032":"pressure:LCA:J_heart_inlet","11033":"pressure:LCA:J_heart_inlet","11034":"pressure:LCA:J_heart_inlet","11035":"pressure:LCA:J_heart_inlet","11036":"pressure:LCA:J_heart_inlet","11037":"pressure:LCA:J_heart_inlet","11038":"pressure:LCA:J_heart_inlet","11039":"pressure:LCA:J_heart_inlet","11040":"pressure:LCA:J_heart_inlet","11041":"pressure:LCA:J_heart_inlet","11042":"pressure:LCA:J_heart_inlet","11043":"pressure:LCA:J_heart_inlet","11044":"pressure:LCA:J_heart_inlet","11045":"pressure:LCA:J_heart_inlet","11046":"pressure:LCA:J_heart_inlet","11047":"pressure:LCA:J_heart_inlet","11048":"pressure:LCA:J_heart_inlet","11049":"pressure:LCA:J_heart_inlet","11050":"pressure:LCA:J_heart_inlet","11051":"pressure:LCA:J_heart_inlet","11052":"pressure:LCA:J_heart_inlet","11053":"pressure:LCA:J_heart_inlet","11054":"pressure:LCA:J_heart_inlet","11055":"pressure:LCA:J_heart_inlet","11056":"pressure:LCA:J_heart_inlet","11057":"pressure:LCA:J_heart_inlet","11058":"pressure:LCA:J_heart_inlet","11059":"pressure:LCA:J_heart_inlet","11060":"pressure:LCA:J_heart_inlet","11061":"pressure:LCA:J_heart_inlet","11062":"pressure:LCA:J_heart_inlet","11063":"pressure:LCA:J_heart_inlet","11064":"pressure:LCA:J_heart_inlet","11065":"pressure:LCA:J_heart_inlet","11066":"pressure:LCA:J_heart_inlet","11067":"pressure:LCA:J_heart_inlet","11068":"pressure:LCA:J_heart_inlet","11069":"pressure:LCA:J_heart_inlet","11070":"pressure:LCA:J_heart_inlet","11071":"pressure:LCA:J_heart_inlet","11072":"pressure:LCA:J_heart_inlet","11073":"pressure:LCA:J_heart_inlet","11074":"pressure:LCA:J_heart_inlet","11075":"pressure:LCA:J_heart_inlet","11076":"pressure:LCA:J_heart_inlet","11077":"pressure:LCA:J_heart_inlet","11078":"pressure:LCA:J_heart_inlet","11079":"pressure:LCA:J_heart_inlet","11080":"pressure:LCA:J_heart_inlet","11081":"pressure:LCA:J_heart_inlet","11082":"pressure:LCA:J_heart_inlet","11083":"pressure:LCA:J_heart_inlet","11084":"pressure:LCA:J_heart_inlet","11085":"pressure:LCA:J_heart_inlet","11086":"pressure:LCA:J_heart_inlet","11087":"pressure:LCA:J_heart_inlet","11088":"pressure:LCA:J_heart_inlet","11089":"pressure:LCA:J_heart_inlet","11090":"pressure:LCA:J_heart_inlet","11091":"pressure:LCA:J_heart_inlet","11092":"pressure:LCA:J_heart_inlet","11093":"pressure:LCA:J_heart_inlet","11094":"pressure:LCA:J_heart_inlet","11095":"pressure:LCA:J_heart_inlet","11096":"pressure:LCA:J_heart_inlet","11097":"pressure:LCA:J_heart_inlet","11098":"pressure:LCA:J_heart_inlet","11099":"pressure:LCA:J_heart_inlet","11100":"pressure:LCA:J_heart_inlet","11101":"pressure:LCA:J_heart_inlet","11102":"pressure:LCA:J_heart_inlet","11103":"pressure:LCA:J_heart_inlet","11104":"pressure:LCA:J_heart_inlet","11105":"pressure:LCA:J_heart_inlet","11106":"pressure:LCA:J_heart_inlet","11107":"pressure:LCA:J_heart_inlet","11108":"pressure:LCA:J_heart_inlet","11109":"pressure:LCA:J_heart_inlet","11110":"pressure:LCA:J_heart_inlet","11111":"pressure:LCA:J_heart_inlet","11112":"pressure:LCA:J_heart_inlet","11113":"pressure:LCA:J_heart_inlet","11114":"pressure:LCA:J_heart_inlet","11115":"pressure:LCA:J_heart_inlet","11116":"pressure:LCA:J_heart_inlet","11117":"pressure:LCA:J_heart_inlet","11118":"pressure:LCA:J_heart_inlet","11119":"pressure:LCA:J_heart_inlet","11120":"pressure:LCA:J_heart_inlet","11121":"pressure:LCA:J_heart_inlet","11122":"pressure:LCA:J_heart_inlet","11123":"pressure:LCA:J_heart_inlet","11124":"pressure:LCA:J_heart_inlet","11125":"pressure:LCA:J_heart_inlet","11126":"pressure:LCA:J_heart_inlet","11127":"pressure:LCA:J_heart_inlet","11128":"pressure:LCA:J_heart_inlet","11129":"pressure:LCA:J_heart_inlet","11130":"pressure:LCA:J_heart_inlet","11131":"pressure:LCA:J_heart_inlet","11132":"pressure:LCA:J_heart_inlet","11133":"pressure:LCA:J_heart_inlet","11134":"pressure:LCA:J_heart_inlet","11135":"pressure:LCA:J_heart_inlet","11136":"pressure:LCA:J_heart_inlet","11137":"pressure:LCA:J_heart_inlet","11138":"pressure:LCA:J_heart_inlet","11139":"pressure:LCA:J_heart_inlet","11140":"pressure:LCA:J_heart_inlet","11141":"pressure:LCA:J_heart_inlet","11142":"pressure:LCA:J_heart_inlet","11143":"pressure:LCA:J_heart_inlet","11144":"pressure:LCA:J_heart_inlet","11145":"pressure:LCA:J_heart_inlet","11146":"pressure:LCA:J_heart_inlet","11147":"pressure:LCA:J_heart_inlet","11148":"pressure:LCA:J_heart_inlet","11149":"pressure:LCA:J_heart_inlet","11150":"pressure:LCA:J_heart_inlet","11151":"pressure:LCA:J_heart_inlet","11152":"pressure:LCA:J_heart_inlet","11153":"pressure:LCA:J_heart_inlet","11154":"pressure:LCA:J_heart_inlet","11155":"pressure:LCA:J_heart_inlet","11156":"pressure:LCA:J_heart_inlet","11157":"pressure:LCA:J_heart_inlet","11158":"pressure:LCA:J_heart_inlet","11159":"pressure:LCA:J_heart_inlet","11160":"pressure:LCA:J_heart_inlet","11161":"pressure:LCA:J_heart_inlet","11162":"pressure:LCA:J_heart_inlet","11163":"pressure:LCA:J_heart_inlet","11164":"pressure:LCA:J_heart_inlet","11165":"pressure:LCA:J_heart_inlet","11166":"pressure:LCA:J_heart_inlet","11167":"pressure:LCA:J_heart_inlet","11168":"pressure:LCA:J_heart_inlet","11169":"pressure:LCA:J_heart_inlet","11170":"pressure:LCA:J_heart_inlet","11171":"pressure:LCA:J_heart_inlet","11172":"pressure:LCA:J_heart_inlet","11173":"pressure:LCA:J_heart_inlet","11174":"pressure:LCA:J_heart_inlet","11175":"pressure:LCA:J_heart_inlet","11176":"pressure:LCA:J_heart_inlet","11177":"pressure:LCA:J_heart_inlet","11178":"pressure:LCA:J_heart_inlet","11179":"pressure:LCA:J_heart_inlet","11180":"pressure:LCA:J_heart_inlet","11181":"pressure:LCA:J_heart_inlet","11182":"pressure:LCA:J_heart_inlet","11183":"pressure:LCA:J_heart_inlet","11184":"pressure:LCA:J_heart_inlet","11185":"pressure:LCA:J_heart_inlet","11186":"pressure:LCA:J_heart_inlet","11187":"pressure:LCA:J_heart_inlet","11188":"pressure:LCA:J_heart_inlet","11189":"pressure:LCA:J_heart_inlet","11190":"pressure:LCA:J_heart_inlet","11191":"pressure:LCA:J_heart_inlet","11192":"pressure:LCA:J_heart_inlet","11193":"pressure:LCA:J_heart_inlet","11194":"pressure:LCA:J_heart_inlet","11195":"pressure:LCA:J_heart_inlet","11196":"pressure:LCA:J_heart_inlet","11197":"pressure:LCA:J_heart_inlet","11198":"pressure:LCA:J_heart_inlet","11199":"pressure:LCA:J_heart_inlet","11200":"pressure:LCA:J_heart_inlet","11201":"pressure:LCA:J_heart_inlet","11202":"pressure:LCA:J_heart_inlet","11203":"pressure:LCA:J_heart_inlet","11204":"pressure:LCA:J_heart_inlet","11205":"pressure:LCA:J_heart_inlet","11206":"pressure:LCA:J_heart_inlet","11207":"pressure:LCA:J_heart_inlet","11208":"pressure:LCA:J_heart_inlet","11209":"pressure:LCA:J_heart_inlet","11210":"pressure:LCA:J_heart_inlet","11211":"pressure:LCA:J_heart_inlet","11212":"pressure:LCA:J_heart_inlet","11213":"pressure:LCA:J_heart_inlet","11214":"pressure:LCA:J_heart_inlet","11215":"pressure:LCA:J_heart_inlet","11216":"pressure:LCA:J_heart_inlet","11217":"pressure:LCA:J_heart_inlet","11218":"pressure:LCA:J_heart_inlet","11219":"pressure:LCA:J_heart_inlet","11220":"pressure:LCA:J_heart_inlet","11221":"pressure:LCA:J_heart_inlet","11222":"pressure:LCA:J_heart_inlet","11223":"pressure:LCA:J_heart_inlet","11224":"pressure:LCA:J_heart_inlet","11225":"pressure:LCA:J_heart_inlet","11226":"pressure:LCA:J_heart_inlet","11227":"pressure:LCA:J_heart_inlet","11228":"pressure:LCA:J_heart_inlet","11229":"pressure:LCA:J_heart_inlet","11230":"pressure:LCA:J_heart_inlet","11231":"pressure:LCA:J_heart_inlet","11232":"pressure:LCA:J_heart_inlet","11233":"pressure:LCA:J_heart_inlet","11234":"pressure:LCA:J_heart_inlet","11235":"pressure:LCA:J_heart_inlet","11236":"pressure:LCA:J_heart_inlet","11237":"pressure:LCA:J_heart_inlet","11238":"pressure:LCA:J_heart_inlet","11239":"pressure:LCA:J_heart_inlet","11240":"pressure:LCA:J_heart_inlet","11241":"pressure:LCA:J_heart_inlet","11242":"pressure:LCA:J_heart_inlet","11243":"pressure:LCA:J_heart_inlet","11244":"pressure:LCA:J_heart_inlet","11245":"pressure:LCA:J_heart_inlet","11246":"pressure:LCA:J_heart_inlet","11247":"pressure:LCA:J_heart_inlet","11248":"pressure:LCA:J_heart_inlet","11249":"pressure:LCA:J_heart_inlet","11250":"pressure:LCA:J_heart_inlet","11251":"pressure:LCA:J_heart_inlet","11252":"pressure:LCA:J_heart_inlet","11253":"pressure:LCA:J_heart_inlet","11254":"pressure:LCA:J_heart_inlet","11255":"pressure:LCA:J_heart_inlet","11256":"pressure:LCA:J_heart_inlet","11257":"pressure:LCA:J_heart_inlet","11258":"pressure:LCA:J_heart_inlet","11259":"pressure:LCA:J_heart_inlet","11260":"pressure:LCA:J_heart_inlet","11261":"pressure:LCA:J_heart_inlet","11262":"pressure:LCA:J_heart_inlet","11263":"pressure:LCA:J_heart_inlet","11264":"pressure:LCA:J_heart_inlet","11265":"pressure:LCA:J_heart_inlet","11266":"pressure:LCA:J_heart_inlet","11267":"pressure:LCA:J_heart_inlet","11268":"pressure:LCA:J_heart_inlet","11269":"pressure:LCA:J_heart_inlet","11270":"pressure:LCA:J_heart_inlet","11271":"pressure:LCA:J_heart_inlet","11272":"pressure:LCA:J_heart_inlet","11273":"pressure:LCA:J_heart_inlet","11274":"pressure:LCA:J_heart_inlet","11275":"pressure:LCA:J_heart_inlet","11276":"pressure:LCA:J_heart_inlet","11277":"pressure:LCA:J_heart_inlet","11278":"pressure:LCA:J_heart_inlet","11279":"pressure:LCA:J_heart_inlet","11280":"pressure:LCA:J_heart_inlet","11281":"pressure:LCA:J_heart_inlet","11282":"pressure:LCA:J_heart_inlet","11283":"pressure:LCA:J_heart_inlet","11284":"pressure:LCA:J_heart_inlet","11285":"pressure:LCA:J_heart_inlet","11286":"pressure:LCA:J_heart_inlet","11287":"pressure:LCA:J_heart_inlet","11288":"pressure:LCA:J_heart_inlet","11289":"pressure:LCA:J_heart_inlet","11290":"pressure:LCA:J_heart_inlet","11291":"pressure:LCA:J_heart_inlet","11292":"pressure:LCA:J_heart_inlet","11293":"pressure:LCA:J_heart_inlet","11294":"pressure:LCA:J_heart_inlet","11295":"pressure:LCA:J_heart_inlet","11296":"pressure:LCA:J_heart_inlet","11297":"pressure:LCA:J_heart_inlet","11298":"pressure:LCA:J_heart_inlet","11299":"pressure:LCA:J_heart_inlet","11300":"pressure:LCA:J_heart_inlet","11301":"pressure:LCA:J_heart_inlet","11302":"pressure:LCA:J_heart_inlet","11303":"pressure:LCA:J_heart_inlet","11304":"pressure:LCA:J_heart_inlet","11305":"pressure:LCA:J_heart_inlet","11306":"pressure:LCA:J_heart_inlet","11307":"pressure:LCA:J_heart_inlet","11308":"pressure:LCA:J_heart_inlet","11309":"pressure:LCA:J_heart_inlet","11310":"pressure:LCA:J_heart_inlet","11311":"pressure:LCA:J_heart_inlet","11312":"pressure:LCA:J_heart_inlet","11313":"pressure:LCA:J_heart_inlet","11314":"pressure:LCA:J_heart_inlet","11315":"pressure:LCA:J_heart_inlet","11316":"pressure:LCA:J_heart_inlet","11317":"pressure:LCA:J_heart_inlet","11318":"pressure:LCA:J_heart_inlet","11319":"pressure:LCA:J_heart_inlet","11320":"pressure:LCA:J_heart_inlet","11321":"pressure:LCA:J_heart_inlet","11322":"pressure:LCA:J_heart_inlet","11323":"pressure:LCA:J_heart_inlet","11324":"pressure:LCA:J_heart_inlet","11325":"pressure:LCA:J_heart_inlet","11326":"pressure:LCA:J_heart_inlet","11327":"pressure:LCA:J_heart_inlet","11328":"pressure:LCA:J_heart_inlet","11329":"pressure:LCA:J_heart_inlet","11330":"pressure:LCA:J_heart_inlet","11331":"pressure:LCA:J_heart_inlet","11332":"pressure:LCA:J_heart_inlet","11333":"pressure:LCA:J_heart_inlet","11334":"pressure:LCA:J_heart_inlet","11335":"pressure:LCA:J_heart_inlet","11336":"pressure:LCA:J_heart_inlet","11337":"pressure:LCA:J_heart_inlet","11338":"pressure:LCA:J_heart_inlet","11339":"pressure:LCA:J_heart_inlet","11340":"pressure:LCA:J_heart_inlet","11341":"pressure:LCA:J_heart_inlet","11342":"pressure:LCA:J_heart_inlet","11343":"pressure:LCA:J_heart_inlet","11344":"pressure:LCA:J_heart_inlet","11345":"pressure:LCA:J_heart_inlet","11346":"pressure:LCA:J_heart_inlet","11347":"pressure:LCA:J_heart_inlet","11348":"pressure:LCA:J_heart_inlet","11349":"pressure:LCA:J_heart_inlet","11350":"pressure:LCA:J_heart_inlet","11351":"pressure:LCA:J_heart_inlet","11352":"pressure:LCA:J_heart_inlet","11353":"pressure:LCA:J_heart_inlet","11354":"pressure:LCA:J_heart_inlet","11355":"pressure:LCA:J_heart_inlet","11356":"pressure:LCA:J_heart_inlet","11357":"pressure:LCA:J_heart_inlet","11358":"pressure:LCA:J_heart_inlet","11359":"pressure:LCA:J_heart_inlet","11360":"pressure:LCA:J_heart_inlet","11361":"pressure:LCA:J_heart_inlet","11362":"pressure:LCA:J_heart_inlet","11363":"pressure:LCA:J_heart_inlet","11364":"pressure:LCA:J_heart_inlet","11365":"pressure:LCA:J_heart_inlet","11366":"pressure:LCA:J_heart_inlet","11367":"pressure:LCA:J_heart_inlet","11368":"pressure:LCA:J_heart_inlet","11369":"pressure:LCA:J_heart_inlet","11370":"pressure:LCA:J_heart_inlet","11371":"pressure:LCA:J_heart_inlet","11372":"pressure:LCA:J_heart_inlet","11373":"pressure:LCA:J_heart_inlet","11374":"pressure:LCA:J_heart_inlet","11375":"pressure:LCA:J_heart_inlet","11376":"pressure:LCA:J_heart_inlet","11377":"pressure:LCA:J_heart_inlet","11378":"pressure:LCA:J_heart_inlet","11379":"pressure:LCA:J_heart_inlet","11380":"pressure:LCA:J_heart_inlet","11381":"pressure:LCA:J_heart_inlet","11382":"pressure:LCA:J_heart_inlet","11383":"pressure:LCA:J_heart_inlet","11384":"pressure:LCA:J_heart_inlet","11385":"pressure:LCA:J_heart_inlet","11386":"pressure:LCA:J_heart_inlet","11387":"pressure:LCA:J_heart_inlet","11388":"pressure:LCA:J_heart_inlet","11389":"pressure:LCA:J_heart_inlet","11390":"pressure:LCA:J_heart_inlet","11391":"pressure:LCA:J_heart_inlet","11392":"pressure:LCA:J_heart_inlet","11393":"pressure:LCA:J_heart_inlet","11394":"pressure:LCA:J_heart_inlet","11395":"pressure:LCA:J_heart_inlet","11396":"pressure:LCA:J_heart_inlet","11397":"pressure:LCA:J_heart_inlet","11398":"pressure:LCA:J_heart_inlet","11399":"pressure:LCA:J_heart_inlet","11400":"pressure:LCA:J_heart_inlet","11401":"pressure:LCA:J_heart_inlet","11402":"pressure:LCA:J_heart_inlet","11403":"pressure:LCA:J_heart_inlet","11404":"pressure:LCA:J_heart_inlet","11405":"pressure:LCA:J_heart_inlet","11406":"pressure:LCA:J_heart_inlet","11407":"pressure:LCA:J_heart_inlet","11408":"pressure:LCA:J_heart_inlet","11409":"pressure:LCA:J_heart_inlet","11410":"pressure:LCA:J_heart_inlet","11411":"pressure:LCA:J_heart_inlet","11412":"pressure:LCA:J_heart_inlet","11413":"pressure:LCA:J_heart_inlet","11414":"pressure:LCA:J_heart_inlet","11415":"pressure:LCA:J_heart_inlet","11416":"pressure:LCA:J_heart_inlet","11417":"pressure:LCA:J_heart_inlet","11418":"pressure:LCA:J_heart_inlet","11419":"pressure:LCA:J_heart_inlet","11420":"pressure:LCA:J_heart_inlet","11421":"pressure:LCA:J_heart_inlet","11422":"pressure:LCA:J_heart_inlet","11423":"pressure:LCA:J_heart_inlet","11424":"pressure:LCA:J_heart_inlet","11425":"pressure:LCA:J_heart_inlet","11426":"pressure:LCA:J_heart_inlet","11427":"pressure:LCA:J_heart_inlet","11428":"pressure:LCA:J_heart_inlet","11429":"pressure:LCA:J_heart_inlet","11430":"pressure:LCA:J_heart_inlet","11431":"pressure:LCA:J_heart_inlet","11432":"pressure:LCA:J_heart_inlet","11433":"pressure:LCA:J_heart_inlet","11434":"pressure:LCA:J_heart_inlet","11435":"pressure:LCA:J_heart_inlet","11436":"pressure:LCA:J_heart_inlet","11437":"pressure:LCA:J_heart_inlet","11438":"pressure:LCA:J_heart_inlet","11439":"pressure:LCA:J_heart_inlet","11440":"pressure:LCA:J_heart_inlet","11441":"pressure:LCA:J_heart_inlet","11442":"pressure:LCA:J_heart_inlet","11443":"pressure:LCA:J_heart_inlet","11444":"pressure:LCA:J_heart_inlet","11445":"pressure:LCA:J_heart_inlet","11446":"pressure:LCA:J_heart_inlet","11447":"pressure:LCA:J_heart_inlet","11448":"pressure:LCA:J_heart_inlet","11449":"pressure:LCA:J_heart_inlet","11450":"pressure:LCA:J_heart_inlet","11451":"pressure:LCA:J_heart_inlet","11452":"pressure:LCA:J_heart_inlet","11453":"pressure:LCA:J_heart_inlet","11454":"pressure:LCA:J_heart_inlet","11455":"pressure:LCA:J_heart_inlet","11456":"pressure:LCA:J_heart_inlet","11457":"pressure:LCA:J_heart_inlet","11458":"pressure:LCA:J_heart_inlet","11459":"pressure:LCA:J_heart_inlet","11460":"pressure:LCA:J_heart_inlet","11461":"pressure:LCA:J_heart_inlet","11462":"pressure:LCA:J_heart_inlet","11463":"pressure:LCA:J_heart_inlet","11464":"pressure:LCA:J_heart_inlet","11465":"pressure:LCA:J_heart_inlet","11466":"pressure:LCA:J_heart_inlet","11467":"pressure:LCA:J_heart_inlet","11468":"pressure:LCA:J_heart_inlet","11469":"pressure:LCA:J_heart_inlet","11470":"pressure:LCA:J_heart_inlet","11471":"pressure:LCA:J_heart_inlet","11472":"pressure:LCA:J_heart_inlet","11473":"pressure:LCA:J_heart_inlet","11474":"pressure:LCA:J_heart_inlet","11475":"pressure:LCA:J_heart_inlet","11476":"pressure:LCA:J_heart_inlet","11477":"pressure:LCA:J_heart_inlet","11478":"pressure:LCA:J_heart_inlet","11479":"pressure:LCA:J_heart_inlet","11480":"pressure:LCA:J_heart_inlet","11481":"pressure:LCA:J_heart_inlet","11482":"pressure:LCA:J_heart_inlet","11483":"pressure:LCA:J_heart_inlet","11484":"pressure:LCA:J_heart_inlet","11485":"pressure:LCA:J_heart_inlet","11486":"pressure:LCA:J_heart_inlet","11487":"pressure:LCA:J_heart_inlet","11488":"pressure:LCA:J_heart_inlet","11489":"pressure:LCA:J_heart_inlet","11490":"pressure:LCA:J_heart_inlet","11491":"pressure:LCA:J_heart_inlet","11492":"pressure:LCA:J_heart_inlet","11493":"pressure:LCA:J_heart_inlet","11494":"pressure:LCA:J_heart_inlet","11495":"pressure:LCA:J_heart_inlet","11496":"pressure:LCA:J_heart_inlet","11497":"pressure:LCA:J_heart_inlet","11498":"pressure:LCA:J_heart_inlet","11499":"pressure:LCA:J_heart_inlet","11500":"pressure:LCA:J_heart_inlet","11501":"pressure:LCA:J_heart_inlet","11502":"pressure:LCA:J_heart_inlet","11503":"pressure:LCA:J_heart_inlet","11504":"pressure:LCA:J_heart_inlet","11505":"pressure:LCA:J_heart_inlet","11506":"pressure:LCA:J_heart_inlet","11507":"pressure:LCA:J_heart_inlet","11508":"pressure:LCA:J_heart_inlet","11509":"pressure:LCA:J_heart_inlet","11510":"pressure:LCA:J_heart_inlet","11511":"pressure:LCA:J_heart_inlet","11512":"pressure:LCA:J_heart_inlet","11513":"pressure:LCA:J_heart_inlet","11514":"pressure:LCA:J_heart_inlet","11515":"pressure:LCA:J_heart_inlet","11516":"pressure:LCA:J_heart_inlet","11517":"pressure:LCA:J_heart_inlet","11518":"pressure:LCA:J_heart_inlet","11519":"pressure:LCA:J_heart_inlet","11520":"pressure:LCA:J_heart_inlet","11521":"pressure:LCA:J_heart_inlet","11522":"pressure:LCA:J_heart_inlet","11523":"pressure:LCA:J_heart_inlet","11524":"pressure:LCA:J_heart_inlet","11525":"pressure:LCA:J_heart_inlet","11526":"pressure:LCA:J_heart_inlet","11527":"pressure:LCA:J_heart_inlet","11528":"pressure:LCA:J_heart_inlet","11529":"pressure:LCA:J_heart_inlet","11530":"pressure:LCA:J_heart_inlet","11531":"pressure:LCA:J_heart_inlet","11532":"pressure:LCA:J_heart_inlet","11533":"pressure:LCA:J_heart_inlet","11534":"pressure:LCA:J_heart_inlet","11535":"pressure:LCA:J_heart_inlet","11536":"pressure:LCA:J_heart_inlet","11537":"pressure:LCA:J_heart_inlet","11538":"pressure:LCA:J_heart_inlet","11539":"pressure:LCA:J_heart_inlet","11540":"pressure:LCA:J_heart_inlet","11541":"pressure:LCA:J_heart_inlet","11542":"pressure:LCA:J_heart_inlet","11543":"pressure:LCA:J_heart_inlet","11544":"pressure:LCA:J_heart_inlet","11545":"pressure:LCA:J_heart_inlet","11546":"pressure:LCA:J_heart_inlet","11547":"pressure:LCA:J_heart_inlet","11548":"pressure:LCA:J_heart_inlet","11549":"pressure:LCA:J_heart_inlet","11550":"pressure:LCA:J_heart_inlet","11551":"pressure:LCA:J_heart_inlet","11552":"pressure:LCA:J_heart_inlet","11553":"pressure:LCA:J_heart_inlet","11554":"pressure:LCA:J_heart_inlet","11555":"pressure:LCA:J_heart_inlet","11556":"pressure:LCA:J_heart_inlet","11557":"pressure:LCA:J_heart_inlet","11558":"pressure:LCA:J_heart_inlet","11559":"pressure:LCA:J_heart_inlet","11560":"pressure:LCA:J_heart_inlet","11561":"pressure:LCA:J_heart_inlet","11562":"pressure:LCA:J_heart_inlet","11563":"pressure:LCA:J_heart_inlet","11564":"pressure:LCA:J_heart_inlet","11565":"pressure:LCA:J_heart_inlet","11566":"pressure:LCA:J_heart_inlet","11567":"pressure:LCA:J_heart_inlet","11568":"pressure:LCA:J_heart_inlet","11569":"pressure:LCA:J_heart_inlet","11570":"pressure:LCA:J_heart_inlet","11571":"pressure:LCA:J_heart_inlet","11572":"pressure:LCA:J_heart_inlet","11573":"pressure:LCA:J_heart_inlet","11574":"pressure:LCA:J_heart_inlet","11575":"pressure:LCA:J_heart_inlet","11576":"pressure:LCA:J_heart_inlet","11577":"pressure:LCA:J_heart_inlet","11578":"pressure:LCA:J_heart_inlet","11579":"pressure:LCA:J_heart_inlet","11580":"pressure:LCA:J_heart_inlet","11581":"pressure:LCA:J_heart_inlet","11582":"pressure:LCA:J_heart_inlet","11583":"pressure:LCA:J_heart_inlet","11584":"pressure:LCA:J_heart_inlet","11585":"pressure:LCA:J_heart_inlet","11586":"pressure:LCA:J_heart_inlet","11587":"pressure:LCA:J_heart_inlet","11588":"pressure:LCA:J_heart_inlet","11589":"pressure:LCA:J_heart_inlet","11590":"pressure:LCA:J_heart_inlet","11591":"pressure:LCA:J_heart_inlet","11592":"pressure:LCA:J_heart_inlet","11593":"pressure:LCA:J_heart_inlet","11594":"pressure:LCA:J_heart_inlet","11595":"pressure:LCA:J_heart_inlet","11596":"pressure:LCA:J_heart_inlet","11597":"pressure:LCA:J_heart_inlet","11598":"pressure:LCA:J_heart_inlet","11599":"pressure:LCA:J_heart_inlet","11600":"pressure:LCA:J_heart_inlet","11601":"pressure:LCA:J_heart_inlet","11602":"pressure:LCA:J_heart_inlet","11603":"pressure:LCA:J_heart_inlet","11604":"pressure:LCA:J_heart_inlet","11605":"pressure:LCA:J_heart_inlet","11606":"pressure:LCA:J_heart_inlet","11607":"pressure:LCA:J_heart_inlet","11608":"pressure:LCA:J_heart_inlet","11609":"pressure:LCA:J_heart_inlet","11610":"pressure:LCA:J_heart_inlet","11611":"pressure:LCA:J_heart_inlet","11612":"pressure:LCA:J_heart_inlet","11613":"pressure:LCA:J_heart_inlet","11614":"pressure:LCA:J_heart_inlet","11615":"pressure:LCA:J_heart_inlet","11616":"pressure:LCA:J_heart_inlet","11617":"pressure:LCA:J_heart_inlet","11618":"pressure:LCA:J_heart_inlet","11619":"pressure:LCA:J_heart_inlet","11620":"pressure:LCA:J_heart_inlet","11621":"pressure:LCA:J_heart_inlet","11622":"pressure:LCA:J_heart_inlet","11623":"pressure:LCA:J_heart_inlet","11624":"pressure:LCA:J_heart_inlet","11625":"pressure:LCA:J_heart_inlet","11626":"pressure:LCA:J_heart_inlet","11627":"pressure:LCA:J_heart_inlet","11628":"pressure:LCA:J_heart_inlet","11629":"pressure:LCA:J_heart_inlet","11630":"pressure:LCA:J_heart_inlet","11631":"pressure:LCA:J_heart_inlet","11632":"pressure:LCA:J_heart_inlet","11633":"pressure:LCA:J_heart_inlet","11634":"pressure:LCA:J_heart_inlet","11635":"pressure:LCA:J_heart_inlet","11636":"pressure:LCA:J_heart_inlet","11637":"pressure:LCA:J_heart_inlet","11638":"pressure:LCA:J_heart_inlet","11639":"pressure:LCA:J_heart_inlet","11640":"pressure:LCA:J_heart_inlet","11641":"pressure:LCA:J_heart_inlet","11642":"pressure:LCA:J_heart_inlet","11643":"pressure:LCA:J_heart_inlet","11644":"pressure:LCA:J_heart_inlet","11645":"pressure:LCA:J_heart_inlet","11646":"pressure:LCA:J_heart_inlet","11647":"pressure:LCA:J_heart_inlet","11648":"pressure:LCA:J_heart_inlet","11649":"pressure:LCA:J_heart_inlet","11650":"pressure:LCA:J_heart_inlet","11651":"pressure:LCA:J_heart_inlet","11652":"pressure:LCA:J_heart_inlet","11653":"pressure:LCA:J_heart_inlet","11654":"pressure:LCA:J_heart_inlet","11655":"pressure:LCA:J_heart_inlet","11656":"pressure:LCA:J_heart_inlet","11657":"pressure:LCA:J_heart_inlet","11658":"pressure:LCA:J_heart_inlet","11659":"pressure:LCA:J_heart_inlet","11660":"pressure:LCA:J_heart_inlet","11661":"pressure:LCA:J_heart_inlet","11662":"pressure:LCA:J_heart_inlet","11663":"pressure:LCA:J_heart_inlet","11664":"pressure:LCA:J_heart_inlet","11665":"pressure:LCA:J_heart_inlet","11666":"pressure:LCA:J_heart_inlet","11667":"pressure:LCA:J_heart_inlet","11668":"pressure:LCA:J_heart_inlet","11669":"pressure:LCA:J_heart_inlet","11670":"pressure:LCA:J_heart_inlet","11671":"pressure:LCA:J_heart_inlet","11672":"pressure:LCA:J_heart_inlet","11673":"pressure:LCA:J_heart_inlet","11674":"pressure:LCA:J_heart_inlet","11675":"pressure:LCA:J_heart_inlet","11676":"pressure:LCA:J_heart_inlet","11677":"pressure:LCA:J_heart_inlet","11678":"pressure:LCA:J_heart_inlet","11679":"pressure:LCA:J_heart_inlet","11680":"pressure:LCA:J_heart_inlet","11681":"pressure:LCA:J_heart_inlet","11682":"pressure:LCA:J_heart_inlet","11683":"pressure:LCA:J_heart_inlet","11684":"pressure:LCA:J_heart_inlet","11685":"pressure:LCA:J_heart_inlet","11686":"pressure:LCA:J_heart_inlet","11687":"pressure:LCA:J_heart_inlet","11688":"pressure:LCA:J_heart_inlet","11689":"pressure:LCA:J_heart_inlet","11690":"pressure:LCA:J_heart_inlet","11691":"pressure:LCA:J_heart_inlet","11692":"pressure:LCA:J_heart_inlet","11693":"pressure:LCA:J_heart_inlet","11694":"pressure:LCA:J_heart_inlet","11695":"pressure:LCA:J_heart_inlet","11696":"pressure:LCA:J_heart_inlet","11697":"pressure:LCA:J_heart_inlet","11698":"pressure:LCA:J_heart_inlet","11699":"pressure:LCA:J_heart_inlet","11700":"pressure:LCA:J_heart_inlet","11701":"pressure:LCA:J_heart_inlet","11702":"pressure:LCA:J_heart_inlet","11703":"pressure:LCA:J_heart_inlet","11704":"pressure:LCA:J_heart_inlet","11705":"pressure:LCA:J_heart_inlet","11706":"pressure:LCA:J_heart_inlet","11707":"pressure:LCA:J_heart_inlet","11708":"pressure:LCA:J_heart_inlet","11709":"pressure:LCA:J_heart_inlet","11710":"pressure:LCA:J_heart_inlet","11711":"pressure:LCA:J_heart_inlet","11712":"pressure:LCA:J_heart_inlet","11713":"pressure:LCA:J_heart_inlet","11714":"pressure:LCA:J_heart_inlet","11715":"pressure:LCA:J_heart_inlet","11716":"pressure:LCA:J_heart_inlet","11717":"pressure:LCA:J_heart_inlet","11718":"pressure:LCA:J_heart_inlet","11719":"pressure:LCA:J_heart_inlet","11720":"pressure:LCA:J_heart_inlet","11721":"pressure:LCA:J_heart_inlet","11722":"pressure:LCA:J_heart_inlet","11723":"pressure:LCA:J_heart_inlet","11724":"pressure:LCA:J_heart_inlet","11725":"pressure:LCA:J_heart_inlet","11726":"pressure:LCA:J_heart_inlet","11727":"pressure:LCA:J_heart_inlet","11728":"pressure:LCA:J_heart_inlet","11729":"pressure:LCA:J_heart_inlet","11730":"pressure:LCA:J_heart_inlet","11731":"pressure:LCA:J_heart_inlet","11732":"pressure:LCA:J_heart_inlet","11733":"pressure:LCA:J_heart_inlet","11734":"pressure:LCA:J_heart_inlet","11735":"pressure:LCA:J_heart_inlet","11736":"pressure:LCA:J_heart_inlet","11737":"pressure:LCA:J_heart_inlet","11738":"pressure:LCA:J_heart_inlet","11739":"pressure:LCA:J_heart_inlet","11740":"pressure:LCA:J_heart_inlet","11741":"pressure:LCA:J_heart_inlet","11742":"pressure:LCA:J_heart_inlet","11743":"pressure:LCA:J_heart_inlet","11744":"pressure:LCA:J_heart_inlet","11745":"pressure:LCA:J_heart_inlet","11746":"pressure:LCA:J_heart_inlet","11747":"pressure:LCA:J_heart_inlet","11748":"pressure:LCA:J_heart_inlet","11749":"pressure:LCA:J_heart_inlet","11750":"pressure:LCA:J_heart_inlet","11751":"pressure:LCA:J_heart_inlet","11752":"pressure:LCA:J_heart_inlet","11753":"pressure:LCA:J_heart_inlet","11754":"pressure:LCA:J_heart_inlet","11755":"pressure:LCA:J_heart_inlet","11756":"pressure:LCA:J_heart_inlet","11757":"pressure:LCA:J_heart_inlet","11758":"pressure:LCA:J_heart_inlet","11759":"pressure:LCA:J_heart_inlet","11760":"pressure:LCA:J_heart_inlet","11761":"pressure:LCA:J_heart_inlet","11762":"pressure:LCA:J_heart_inlet","11763":"pressure:LCA:J_heart_inlet","11764":"pressure:LCA:J_heart_inlet","11765":"pressure:LCA:J_heart_inlet","11766":"pressure:LCA:J_heart_inlet","11767":"pressure:LCA:J_heart_inlet","11768":"pressure:LCA:J_heart_inlet","11769":"pressure:LCA:J_heart_inlet","11770":"pressure:LCA:J_heart_inlet","11771":"pressure:LCA:J_heart_inlet","11772":"pressure:LCA:J_heart_inlet","11773":"pressure:LCA:J_heart_inlet","11774":"pressure:LCA:J_heart_inlet","11775":"pressure:LCA:J_heart_inlet","11776":"pressure:LCA:J_heart_inlet","11777":"pressure:LCA:J_heart_inlet","11778":"pressure:LCA:J_heart_inlet","11779":"pressure:LCA:J_heart_inlet","11780":"pressure:LCA:J_heart_inlet","11781":"pressure:LCA:J_heart_inlet","11782":"pressure:LCA:J_heart_inlet","11783":"pressure:LCA:J_heart_inlet","11784":"pressure:LCA:J_heart_inlet","11785":"pressure:LCA:J_heart_inlet","11786":"pressure:LCA:J_heart_inlet","11787":"pressure:LCA:J_heart_inlet","11788":"pressure:LCA:J_heart_inlet","11789":"pressure:LCA:J_heart_inlet","11790":"pressure:LCA:J_heart_inlet","11791":"pressure:LCA:J_heart_inlet","11792":"pressure:LCA:J_heart_inlet","11793":"pressure:LCA:J_heart_inlet","11794":"pressure:LCA:J_heart_inlet","11795":"pressure:LCA:J_heart_inlet","11796":"pressure:LCA:J_heart_inlet","11797":"pressure:LCA:J_heart_inlet","11798":"pressure:LCA:J_heart_inlet","11799":"pressure:LCA:J_heart_inlet","11800":"pressure:LCA:J_heart_inlet","11801":"pressure:LCA:J_heart_inlet","11802":"pressure:LCA:J_heart_inlet","11803":"pressure:LCA:J_heart_inlet","11804":"pressure:LCA:J_heart_inlet","11805":"pressure:LCA:J_heart_inlet","11806":"pressure:LCA:J_heart_inlet","11807":"pressure:LCA:J_heart_inlet","11808":"pressure:LCA:J_heart_inlet","11809":"pressure:LCA:J_heart_inlet","11810":"pressure:LCA:J_heart_inlet","11811":"pressure:LCA:J_heart_inlet","11812":"pressure:LCA:J_heart_inlet","11813":"pressure:LCA:J_heart_inlet","11814":"pressure:LCA:J_heart_inlet","11815":"pressure:LCA:J_heart_inlet","11816":"pressure:LCA:J_heart_inlet","11817":"pressure:LCA:J_heart_inlet","11818":"pressure:LCA:J_heart_inlet","11819":"pressure:LCA:J_heart_inlet","11820":"pressure:LCA:J_heart_inlet","11821":"pressure:LCA:J_heart_inlet","11822":"pressure:LCA:J_heart_inlet","11823":"pressure:LCA:J_heart_inlet","11824":"pressure:LCA:J_heart_inlet","11825":"pressure:LCA:J_heart_inlet","11826":"pressure:LCA:J_heart_inlet","11827":"pressure:LCA:J_heart_inlet","11828":"pressure:LCA:J_heart_inlet","11829":"pressure:LCA:J_heart_inlet","11830":"pressure:LCA:J_heart_inlet","11831":"pressure:LCA:J_heart_inlet","11832":"pressure:LCA:J_heart_inlet","11833":"pressure:LCA:J_heart_inlet","11834":"pressure:LCA:J_heart_inlet","11835":"pressure:LCA:J_heart_inlet","11836":"pressure:LCA:J_heart_inlet","11837":"pressure:LCA:J_heart_inlet","11838":"pressure:LCA:J_heart_inlet","11839":"pressure:LCA:J_heart_inlet","11840":"pressure:LCA:J_heart_inlet","11841":"pressure:LCA:J_heart_inlet","11842":"pressure:LCA:J_heart_inlet","11843":"pressure:LCA:J_heart_inlet","11844":"pressure:LCA:J_heart_inlet","11845":"pressure:LCA:J_heart_inlet","11846":"pressure:LCA:J_heart_inlet","11847":"pressure:LCA:J_heart_inlet","11848":"pressure:LCA:J_heart_inlet","11849":"pressure:LCA:J_heart_inlet","11850":"pressure:LCA:J_heart_inlet","11851":"pressure:LCA:J_heart_inlet","11852":"pressure:LCA:J_heart_inlet","11853":"pressure:LCA:J_heart_inlet","11854":"pressure:LCA:J_heart_inlet","11855":"pressure:LCA:J_heart_inlet","11856":"pressure:LCA:J_heart_inlet","11857":"pressure:LCA:J_heart_inlet","11858":"pressure:LCA:J_heart_inlet","11859":"pressure:LCA:J_heart_inlet","11860":"pressure:LCA:J_heart_inlet","11861":"pressure:LCA:J_heart_inlet","11862":"pressure:LCA:J_heart_inlet","11863":"pressure:LCA:J_heart_inlet","11864":"pressure:LCA:J_heart_inlet","11865":"pressure:LCA:J_heart_inlet","11866":"pressure:LCA:J_heart_inlet","11867":"pressure:LCA:J_heart_inlet","11868":"pressure:LCA:J_heart_inlet","11869":"pressure:LCA:J_heart_inlet","11870":"pressure:LCA:J_heart_inlet","11871":"pressure:LCA:J_heart_inlet","11872":"pressure:LCA:J_heart_inlet","11873":"pressure:LCA:J_heart_inlet","11874":"pressure:LCA:J_heart_inlet","11875":"pressure:LCA:J_heart_inlet","11876":"pressure:LCA:J_heart_inlet","11877":"pressure:LCA:J_heart_inlet","11878":"pressure:LCA:J_heart_inlet","11879":"pressure:LCA:J_heart_inlet","11880":"pressure:LCA:J_heart_inlet","11881":"pressure:LCA:J_heart_inlet","11882":"pressure:LCA:J_heart_inlet","11883":"pressure:LCA:J_heart_inlet","11884":"pressure:LCA:J_heart_inlet","11885":"pressure:LCA:J_heart_inlet","11886":"pressure:LCA:J_heart_inlet","11887":"pressure:LCA:J_heart_inlet","11888":"pressure:LCA:J_heart_inlet","11889":"pressure:LCA:J_heart_inlet","11890":"pressure:LCA:J_heart_inlet","11891":"pressure:LCA:J_heart_inlet","11892":"pressure:LCA:J_heart_inlet","11893":"pressure:LCA:J_heart_inlet","11894":"pressure:LCA:J_heart_inlet","11895":"pressure:LCA:J_heart_inlet","11896":"pressure:LCA:J_heart_inlet","11897":"pressure:LCA:J_heart_inlet","11898":"pressure:LCA:J_heart_inlet","11899":"pressure:LCA:J_heart_inlet","11900":"pressure:LCA:J_heart_inlet","11901":"pressure:LCA:J_heart_inlet","11902":"pressure:LCA:J_heart_inlet","11903":"pressure:LCA:J_heart_inlet","11904":"pressure:LCA:J_heart_inlet","11905":"pressure:LCA:J_heart_inlet","11906":"pressure:LCA:J_heart_inlet","11907":"pressure:LCA:J_heart_inlet","11908":"pressure:LCA:J_heart_inlet","11909":"pressure:LCA:J_heart_inlet","11910":"pressure:LCA:J_heart_inlet","11911":"pressure:LCA:J_heart_inlet","11912":"pressure:LCA:J_heart_inlet","11913":"pressure:LCA:J_heart_inlet","11914":"pressure:LCA:J_heart_inlet","11915":"pressure:LCA:J_heart_inlet","11916":"pressure:LCA:J_heart_inlet","11917":"pressure:LCA:J_heart_inlet","11918":"pressure:LCA:J_heart_inlet","11919":"pressure:LCA:J_heart_inlet","11920":"pressure:LCA:J_heart_inlet","11921":"pressure:LCA:J_heart_inlet","11922":"pressure:LCA:J_heart_inlet","11923":"pressure:LCA:J_heart_inlet","11924":"pressure:LCA:J_heart_inlet","11925":"pressure:LCA:J_heart_inlet","11926":"pressure:LCA:J_heart_inlet","11927":"pressure:LCA:J_heart_inlet","11928":"pressure:LCA:J_heart_inlet","11929":"pressure:LCA:J_heart_inlet","11930":"pressure:LCA:J_heart_inlet","11931":"pressure:LCA:J_heart_inlet","11932":"pressure:LCA:J_heart_inlet","11933":"pressure:LCA:J_heart_inlet","11934":"pressure:LCA:J_heart_inlet","11935":"pressure:LCA:J_heart_inlet","11936":"pressure:LCA:J_heart_inlet","11937":"pressure:LCA:J_heart_inlet","11938":"pressure:LCA:J_heart_inlet","11939":"pressure:LCA:J_heart_inlet","11940":"pressure:LCA:J_heart_inlet","11941":"pressure:LCA:J_heart_inlet","11942":"pressure:LCA:J_heart_inlet","11943":"pressure:LCA:J_heart_inlet","11944":"pressure:LCA:J_heart_inlet","11945":"pressure:LCA:J_heart_inlet","11946":"pressure:LCA:J_heart_inlet","11947":"pressure:LCA:J_heart_inlet","11948":"pressure:LCA:J_heart_inlet","11949":"pressure:LCA:J_heart_inlet","11950":"pressure:LCA:J_heart_inlet","11951":"pressure:LCA:J_heart_inlet","11952":"pressure:LCA:J_heart_inlet","11953":"pressure:LCA:J_heart_inlet","11954":"pressure:LCA:J_heart_inlet","11955":"pressure:LCA:J_heart_inlet","11956":"pressure:LCA:J_heart_inlet","11957":"pressure:LCA:J_heart_inlet","11958":"pressure:LCA:J_heart_inlet","11959":"pressure:LCA:J_heart_inlet","11960":"pressure:LCA:J_heart_inlet","11961":"pressure:LCA:J_heart_inlet","11962":"pressure:LCA:J_heart_inlet","11963":"pressure:LCA:J_heart_inlet","11964":"pressure:LCA:J_heart_inlet","11965":"pressure:LCA:J_heart_inlet","11966":"pressure:LCA:J_heart_inlet","11967":"pressure:LCA:J_heart_inlet","11968":"pressure:LCA:J_heart_inlet","11969":"pressure:LCA:J_heart_inlet","11970":"pressure:LCA:J_heart_inlet","11971":"pressure:LCA:J_heart_inlet","11972":"pressure:LCA:J_heart_inlet","11973":"pressure:LCA:J_heart_inlet","11974":"pressure:LCA:J_heart_inlet","11975":"pressure:LCA:J_heart_inlet","11976":"pressure:LCA:J_heart_inlet","11977":"pressure:LCA:J_heart_inlet","11978":"pressure:LCA:J_heart_inlet","11979":"pressure:LCA:J_heart_inlet","11980":"pressure:LCA:J_heart_inlet","11981":"pressure:LCA:J_heart_inlet","11982":"pressure:LCA:J_heart_inlet","11983":"pressure:LCA:J_heart_inlet","11984":"pressure:LCA:J_heart_inlet","11985":"pressure:LCA:J_heart_inlet","11986":"pressure:LCA:J_heart_inlet","11987":"pressure:LCA:J_heart_inlet","11988":"pressure:LCA:J_heart_inlet","11989":"pressure:LCA:J_heart_inlet","11990":"pressure:LCA:J_heart_inlet","11991":"pressure:LCA:J_heart_inlet","11992":"pressure:LCA:J_heart_inlet","11993":"pressure:LCA:J_heart_inlet","11994":"pressure:LCA:J_heart_inlet","11995":"pressure:LCA:J_heart_inlet","11996":"pressure:LCA:J_heart_inlet","11997":"pressure:LCA:J_heart_inlet","11998":"pressure:LCA:J_heart_inlet","11999":"pressure:LCA:J_heart_inlet","12000":"flow:RCA:J_heart_inlet","12001":"flow:RCA:J_heart_inlet","12002":"flow:RCA:J_heart_inlet","12003":"flow:RCA:J_heart_inlet","12004":"flow:RCA:J_heart_inlet","12005":"flow:RCA:J_heart_inlet","12006":"flow:RCA:J_heart_inlet","12007":"flow:RCA:J_heart_inlet","12008":"flow:RCA:J_heart_inlet","12009":"flow:RCA:J_heart_inlet","12010":"flow:RCA:J_heart_inlet","12011":"flow:RCA:J_heart_inlet","12012":"flow:RCA:J_heart_inlet","12013":"flow:RCA:J_heart_inlet","12014":"flow:RCA:J_heart_inlet","12015":"flow:RCA:J_heart_inlet","12016":"flow:RCA:J_heart_inlet","12017":"flow:RCA:J_heart_inlet","12018":"flow:RCA:J_heart_inlet","12019":"flow:RCA:J_heart_inlet","12020":"flow:RCA:J_heart_inlet","12021":"flow:RCA:J_heart_inlet","12022":"flow:RCA:J_heart_inlet","12023":"flow:RCA:J_heart_inlet","12024":"flow:RCA:J_heart_inlet","12025":"flow:RCA:J_heart_inlet","12026":"flow:RCA:J_heart_inlet","12027":"flow:RCA:J_heart_inlet","12028":"flow:RCA:J_heart_inlet","12029":"flow:RCA:J_heart_inlet","12030":"flow:RCA:J_heart_inlet","12031":"flow:RCA:J_heart_inlet","12032":"flow:RCA:J_heart_inlet","12033":"flow:RCA:J_heart_inlet","12034":"flow:RCA:J_heart_inlet","12035":"flow:RCA:J_heart_inlet","12036":"flow:RCA:J_heart_inlet","12037":"flow:RCA:J_heart_inlet","12038":"flow:RCA:J_heart_inlet","12039":"flow:RCA:J_heart_inlet","12040":"flow:RCA:J_heart_inlet","12041":"flow:RCA:J_heart_inlet","12042":"flow:RCA:J_heart_inlet","12043":"flow:RCA:J_heart_inlet","12044":"flow:RCA:J_heart_inlet","12045":"flow:RCA:J_heart_inlet","12046":"flow:RCA:J_heart_inlet","12047":"flow:RCA:J_heart_inlet","12048":"flow:RCA:J_heart_inlet","12049":"flow:RCA:J_heart_inlet","12050":"flow:RCA:J_heart_inlet","12051":"flow:RCA:J_heart_inlet","12052":"flow:RCA:J_heart_inlet","12053":"flow:RCA:J_heart_inlet","12054":"flow:RCA:J_heart_inlet","12055":"flow:RCA:J_heart_inlet","12056":"flow:RCA:J_heart_inlet","12057":"flow:RCA:J_heart_inlet","12058":"flow:RCA:J_heart_inlet","12059":"flow:RCA:J_heart_inlet","12060":"flow:RCA:J_heart_inlet","12061":"flow:RCA:J_heart_inlet","12062":"flow:RCA:J_heart_inlet","12063":"flow:RCA:J_heart_inlet","12064":"flow:RCA:J_heart_inlet","12065":"flow:RCA:J_heart_inlet","12066":"flow:RCA:J_heart_inlet","12067":"flow:RCA:J_heart_inlet","12068":"flow:RCA:J_heart_inlet","12069":"flow:RCA:J_heart_inlet","12070":"flow:RCA:J_heart_inlet","12071":"flow:RCA:J_heart_inlet","12072":"flow:RCA:J_heart_inlet","12073":"flow:RCA:J_heart_inlet","12074":"flow:RCA:J_heart_inlet","12075":"flow:RCA:J_heart_inlet","12076":"flow:RCA:J_heart_inlet","12077":"flow:RCA:J_heart_inlet","12078":"flow:RCA:J_heart_inlet","12079":"flow:RCA:J_heart_inlet","12080":"flow:RCA:J_heart_inlet","12081":"flow:RCA:J_heart_inlet","12082":"flow:RCA:J_heart_inlet","12083":"flow:RCA:J_heart_inlet","12084":"flow:RCA:J_heart_inlet","12085":"flow:RCA:J_heart_inlet","12086":"flow:RCA:J_heart_inlet","12087":"flow:RCA:J_heart_inlet","12088":"flow:RCA:J_heart_inlet","12089":"flow:RCA:J_heart_inlet","12090":"flow:RCA:J_heart_inlet","12091":"flow:RCA:J_heart_inlet","12092":"flow:RCA:J_heart_inlet","12093":"flow:RCA:J_heart_inlet","12094":"flow:RCA:J_heart_inlet","12095":"flow:RCA:J_heart_inlet","12096":"flow:RCA:J_heart_inlet","12097":"flow:RCA:J_heart_inlet","12098":"flow:RCA:J_heart_inlet","12099":"flow:RCA:J_heart_inlet","12100":"flow:RCA:J_heart_inlet","12101":"flow:RCA:J_heart_inlet","12102":"flow:RCA:J_heart_inlet","12103":"flow:RCA:J_heart_inlet","12104":"flow:RCA:J_heart_inlet","12105":"flow:RCA:J_heart_inlet","12106":"flow:RCA:J_heart_inlet","12107":"flow:RCA:J_heart_inlet","12108":"flow:RCA:J_heart_inlet","12109":"flow:RCA:J_heart_inlet","12110":"flow:RCA:J_heart_inlet","12111":"flow:RCA:J_heart_inlet","12112":"flow:RCA:J_heart_inlet","12113":"flow:RCA:J_heart_inlet","12114":"flow:RCA:J_heart_inlet","12115":"flow:RCA:J_heart_inlet","12116":"flow:RCA:J_heart_inlet","12117":"flow:RCA:J_heart_inlet","12118":"flow:RCA:J_heart_inlet","12119":"flow:RCA:J_heart_inlet","12120":"flow:RCA:J_heart_inlet","12121":"flow:RCA:J_heart_inlet","12122":"flow:RCA:J_heart_inlet","12123":"flow:RCA:J_heart_inlet","12124":"flow:RCA:J_heart_inlet","12125":"flow:RCA:J_heart_inlet","12126":"flow:RCA:J_heart_inlet","12127":"flow:RCA:J_heart_inlet","12128":"flow:RCA:J_heart_inlet","12129":"flow:RCA:J_heart_inlet","12130":"flow:RCA:J_heart_inlet","12131":"flow:RCA:J_heart_inlet","12132":"flow:RCA:J_heart_inlet","12133":"flow:RCA:J_heart_inlet","12134":"flow:RCA:J_heart_inlet","12135":"flow:RCA:J_heart_inlet","12136":"flow:RCA:J_heart_inlet","12137":"flow:RCA:J_heart_inlet","12138":"flow:RCA:J_heart_inlet","12139":"flow:RCA:J_heart_inlet","12140":"flow:RCA:J_heart_inlet","12141":"flow:RCA:J_heart_inlet","12142":"flow:RCA:J_heart_inlet","12143":"flow:RCA:J_heart_inlet","12144":"flow:RCA:J_heart_inlet","12145":"flow:RCA:J_heart_inlet","12146":"flow:RCA:J_heart_inlet","12147":"flow:RCA:J_heart_inlet","12148":"flow:RCA:J_heart_inlet","12149":"flow:RCA:J_heart_inlet","12150":"flow:RCA:J_heart_inlet","12151":"flow:RCA:J_heart_inlet","12152":"flow:RCA:J_heart_inlet","12153":"flow:RCA:J_heart_inlet","12154":"flow:RCA:J_heart_inlet","12155":"flow:RCA:J_heart_inlet","12156":"flow:RCA:J_heart_inlet","12157":"flow:RCA:J_heart_inlet","12158":"flow:RCA:J_heart_inlet","12159":"flow:RCA:J_heart_inlet","12160":"flow:RCA:J_heart_inlet","12161":"flow:RCA:J_heart_inlet","12162":"flow:RCA:J_heart_inlet","12163":"flow:RCA:J_heart_inlet","12164":"flow:RCA:J_heart_inlet","12165":"flow:RCA:J_heart_inlet","12166":"flow:RCA:J_heart_inlet","12167":"flow:RCA:J_heart_inlet","12168":"flow:RCA:J_heart_inlet","12169":"flow:RCA:J_heart_inlet","12170":"flow:RCA:J_heart_inlet","12171":"flow:RCA:J_heart_inlet","12172":"flow:RCA:J_heart_inlet","12173":"flow:RCA:J_heart_inlet","12174":"flow:RCA:J_heart_inlet","12175":"flow:RCA:J_heart_inlet","12176":"flow:RCA:J_heart_inlet","12177":"flow:RCA:J_heart_inlet","12178":"flow:RCA:J_heart_inlet","12179":"flow:RCA:J_heart_inlet","12180":"flow:RCA:J_heart_inlet","12181":"flow:RCA:J_heart_inlet","12182":"flow:RCA:J_heart_inlet","12183":"flow:RCA:J_heart_inlet","12184":"flow:RCA:J_heart_inlet","12185":"flow:RCA:J_heart_inlet","12186":"flow:RCA:J_heart_inlet","12187":"flow:RCA:J_heart_inlet","12188":"flow:RCA:J_heart_inlet","12189":"flow:RCA:J_heart_inlet","12190":"flow:RCA:J_heart_inlet","12191":"flow:RCA:J_heart_inlet","12192":"flow:RCA:J_heart_inlet","12193":"flow:RCA:J_heart_inlet","12194":"flow:RCA:J_heart_inlet","12195":"flow:RCA:J_heart_inlet","12196":"flow:RCA:J_heart_inlet","12197":"flow:RCA:J_heart_inlet","12198":"flow:RCA:J_heart_inlet","12199":"flow:RCA:J_heart_inlet","12200":"flow:RCA:J_heart_inlet","12201":"flow:RCA:J_heart_inlet","12202":"flow:RCA:J_heart_inlet","12203":"flow:RCA:J_heart_inlet","12204":"flow:RCA:J_heart_inlet","12205":"flow:RCA:J_heart_inlet","12206":"flow:RCA:J_heart_inlet","12207":"flow:RCA:J_heart_inlet","12208":"flow:RCA:J_heart_inlet","12209":"flow:RCA:J_heart_inlet","12210":"flow:RCA:J_heart_inlet","12211":"flow:RCA:J_heart_inlet","12212":"flow:RCA:J_heart_inlet","12213":"flow:RCA:J_heart_inlet","12214":"flow:RCA:J_heart_inlet","12215":"flow:RCA:J_heart_inlet","12216":"flow:RCA:J_heart_inlet","12217":"flow:RCA:J_heart_inlet","12218":"flow:RCA:J_heart_inlet","12219":"flow:RCA:J_heart_inlet","12220":"flow:RCA:J_heart_inlet","12221":"flow:RCA:J_heart_inlet","12222":"flow:RCA:J_heart_inlet","12223":"flow:RCA:J_heart_inlet","12224":"flow:RCA:J_heart_inlet","12225":"flow:RCA:J_heart_inlet","12226":"flow:RCA:J_heart_inlet","12227":"flow:RCA:J_heart_inlet","12228":"flow:RCA:J_heart_inlet","12229":"flow:RCA:J_heart_inlet","12230":"flow:RCA:J_heart_inlet","12231":"flow:RCA:J_heart_inlet","12232":"flow:RCA:J_heart_inlet","12233":"flow:RCA:J_heart_inlet","12234":"flow:RCA:J_heart_inlet","12235":"flow:RCA:J_heart_inlet","12236":"flow:RCA:J_heart_inlet","12237":"flow:RCA:J_heart_inlet","12238":"flow:RCA:J_heart_inlet","12239":"flow:RCA:J_heart_inlet","12240":"flow:RCA:J_heart_inlet","12241":"flow:RCA:J_heart_inlet","12242":"flow:RCA:J_heart_inlet","12243":"flow:RCA:J_heart_inlet","12244":"flow:RCA:J_heart_inlet","12245":"flow:RCA:J_heart_inlet","12246":"flow:RCA:J_heart_inlet","12247":"flow:RCA:J_heart_inlet","12248":"flow:RCA:J_heart_inlet","12249":"flow:RCA:J_heart_inlet","12250":"flow:RCA:J_heart_inlet","12251":"flow:RCA:J_heart_inlet","12252":"flow:RCA:J_heart_inlet","12253":"flow:RCA:J_heart_inlet","12254":"flow:RCA:J_heart_inlet","12255":"flow:RCA:J_heart_inlet","12256":"flow:RCA:J_heart_inlet","12257":"flow:RCA:J_heart_inlet","12258":"flow:RCA:J_heart_inlet","12259":"flow:RCA:J_heart_inlet","12260":"flow:RCA:J_heart_inlet","12261":"flow:RCA:J_heart_inlet","12262":"flow:RCA:J_heart_inlet","12263":"flow:RCA:J_heart_inlet","12264":"flow:RCA:J_heart_inlet","12265":"flow:RCA:J_heart_inlet","12266":"flow:RCA:J_heart_inlet","12267":"flow:RCA:J_heart_inlet","12268":"flow:RCA:J_heart_inlet","12269":"flow:RCA:J_heart_inlet","12270":"flow:RCA:J_heart_inlet","12271":"flow:RCA:J_heart_inlet","12272":"flow:RCA:J_heart_inlet","12273":"flow:RCA:J_heart_inlet","12274":"flow:RCA:J_heart_inlet","12275":"flow:RCA:J_heart_inlet","12276":"flow:RCA:J_heart_inlet","12277":"flow:RCA:J_heart_inlet","12278":"flow:RCA:J_heart_inlet","12279":"flow:RCA:J_heart_inlet","12280":"flow:RCA:J_heart_inlet","12281":"flow:RCA:J_heart_inlet","12282":"flow:RCA:J_heart_inlet","12283":"flow:RCA:J_heart_inlet","12284":"flow:RCA:J_heart_inlet","12285":"flow:RCA:J_heart_inlet","12286":"flow:RCA:J_heart_inlet","12287":"flow:RCA:J_heart_inlet","12288":"flow:RCA:J_heart_inlet","12289":"flow:RCA:J_heart_inlet","12290":"flow:RCA:J_heart_inlet","12291":"flow:RCA:J_heart_inlet","12292":"flow:RCA:J_heart_inlet","12293":"flow:RCA:J_heart_inlet","12294":"flow:RCA:J_heart_inlet","12295":"flow:RCA:J_heart_inlet","12296":"flow:RCA:J_heart_inlet","12297":"flow:RCA:J_heart_inlet","12298":"flow:RCA:J_heart_inlet","12299":"flow:RCA:J_heart_inlet","12300":"flow:RCA:J_heart_inlet","12301":"flow:RCA:J_heart_inlet","12302":"flow:RCA:J_heart_inlet","12303":"flow:RCA:J_heart_inlet","12304":"flow:RCA:J_heart_inlet","12305":"flow:RCA:J_heart_inlet","12306":"flow:RCA:J_heart_inlet","12307":"flow:RCA:J_heart_inlet","12308":"flow:RCA:J_heart_inlet","12309":"flow:RCA:J_heart_inlet","12310":"flow:RCA:J_heart_inlet","12311":"flow:RCA:J_heart_inlet","12312":"flow:RCA:J_heart_inlet","12313":"flow:RCA:J_heart_inlet","12314":"flow:RCA:J_heart_inlet","12315":"flow:RCA:J_heart_inlet","12316":"flow:RCA:J_heart_inlet","12317":"flow:RCA:J_heart_inlet","12318":"flow:RCA:J_heart_inlet","12319":"flow:RCA:J_heart_inlet","12320":"flow:RCA:J_heart_inlet","12321":"flow:RCA:J_heart_inlet","12322":"flow:RCA:J_heart_inlet","12323":"flow:RCA:J_heart_inlet","12324":"flow:RCA:J_heart_inlet","12325":"flow:RCA:J_heart_inlet","12326":"flow:RCA:J_heart_inlet","12327":"flow:RCA:J_heart_inlet","12328":"flow:RCA:J_heart_inlet","12329":"flow:RCA:J_heart_inlet","12330":"flow:RCA:J_heart_inlet","12331":"flow:RCA:J_heart_inlet","12332":"flow:RCA:J_heart_inlet","12333":"flow:RCA:J_heart_inlet","12334":"flow:RCA:J_heart_inlet","12335":"flow:RCA:J_heart_inlet","12336":"flow:RCA:J_heart_inlet","12337":"flow:RCA:J_heart_inlet","12338":"flow:RCA:J_heart_inlet","12339":"flow:RCA:J_heart_inlet","12340":"flow:RCA:J_heart_inlet","12341":"flow:RCA:J_heart_inlet","12342":"flow:RCA:J_heart_inlet","12343":"flow:RCA:J_heart_inlet","12344":"flow:RCA:J_heart_inlet","12345":"flow:RCA:J_heart_inlet","12346":"flow:RCA:J_heart_inlet","12347":"flow:RCA:J_heart_inlet","12348":"flow:RCA:J_heart_inlet","12349":"flow:RCA:J_heart_inlet","12350":"flow:RCA:J_heart_inlet","12351":"flow:RCA:J_heart_inlet","12352":"flow:RCA:J_heart_inlet","12353":"flow:RCA:J_heart_inlet","12354":"flow:RCA:J_heart_inlet","12355":"flow:RCA:J_heart_inlet","12356":"flow:RCA:J_heart_inlet","12357":"flow:RCA:J_heart_inlet","12358":"flow:RCA:J_heart_inlet","12359":"flow:RCA:J_heart_inlet","12360":"flow:RCA:J_heart_inlet","12361":"flow:RCA:J_heart_inlet","12362":"flow:RCA:J_heart_inlet","12363":"flow:RCA:J_heart_inlet","12364":"flow:RCA:J_heart_inlet","12365":"flow:RCA:J_heart_inlet","12366":"flow:RCA:J_heart_inlet","12367":"flow:RCA:J_heart_inlet","12368":"flow:RCA:J_heart_inlet","12369":"flow:RCA:J_heart_inlet","12370":"flow:RCA:J_heart_inlet","12371":"flow:RCA:J_heart_inlet","12372":"flow:RCA:J_heart_inlet","12373":"flow:RCA:J_heart_inlet","12374":"flow:RCA:J_heart_inlet","12375":"flow:RCA:J_heart_inlet","12376":"flow:RCA:J_heart_inlet","12377":"flow:RCA:J_heart_inlet","12378":"flow:RCA:J_heart_inlet","12379":"flow:RCA:J_heart_inlet","12380":"flow:RCA:J_heart_inlet","12381":"flow:RCA:J_heart_inlet","12382":"flow:RCA:J_heart_inlet","12383":"flow:RCA:J_heart_inlet","12384":"flow:RCA:J_heart_inlet","12385":"flow:RCA:J_heart_inlet","12386":"flow:RCA:J_heart_inlet","12387":"flow:RCA:J_heart_inlet","12388":"flow:RCA:J_heart_inlet","12389":"flow:RCA:J_heart_inlet","12390":"flow:RCA:J_heart_inlet","12391":"flow:RCA:J_heart_inlet","12392":"flow:RCA:J_heart_inlet","12393":"flow:RCA:J_heart_inlet","12394":"flow:RCA:J_heart_inlet","12395":"flow:RCA:J_heart_inlet","12396":"flow:RCA:J_heart_inlet","12397":"flow:RCA:J_heart_inlet","12398":"flow:RCA:J_heart_inlet","12399":"flow:RCA:J_heart_inlet","12400":"flow:RCA:J_heart_inlet","12401":"flow:RCA:J_heart_inlet","12402":"flow:RCA:J_heart_inlet","12403":"flow:RCA:J_heart_inlet","12404":"flow:RCA:J_heart_inlet","12405":"flow:RCA:J_heart_inlet","12406":"flow:RCA:J_heart_inlet","12407":"flow:RCA:J_heart_inlet","12408":"flow:RCA:J_heart_inlet","12409":"flow:RCA:J_heart_inlet","12410":"flow:RCA:J_heart_inlet","12411":"flow:RCA:J_heart_inlet","12412":"flow:RCA:J_heart_inlet","12413":"flow:RCA:J_heart_inlet","12414":"flow:RCA:J_heart_inlet","12415":"flow:RCA:J_heart_inlet","12416":"flow:RCA:J_heart_inlet","12417":"flow:RCA:J_heart_inlet","12418":"flow:RCA:J_heart_inlet","12419":"flow:RCA:J_heart_inlet","12420":"flow:RCA:J_heart_inlet","12421":"flow:RCA:J_heart_inlet","12422":"flow:RCA:J_heart_inlet","12423":"flow:RCA:J_heart_inlet","12424":"flow:RCA:J_heart_inlet","12425":"flow:RCA:J_heart_inlet","12426":"flow:RCA:J_heart_inlet","12427":"flow:RCA:J_heart_inlet","12428":"flow:RCA:J_heart_inlet","12429":"flow:RCA:J_heart_inlet","12430":"flow:RCA:J_heart_inlet","12431":"flow:RCA:J_heart_inlet","12432":"flow:RCA:J_heart_inlet","12433":"flow:RCA:J_heart_inlet","12434":"flow:RCA:J_heart_inlet","12435":"flow:RCA:J_heart_inlet","12436":"flow:RCA:J_heart_inlet","12437":"flow:RCA:J_heart_inlet","12438":"flow:RCA:J_heart_inlet","12439":"flow:RCA:J_heart_inlet","12440":"flow:RCA:J_heart_inlet","12441":"flow:RCA:J_heart_inlet","12442":"flow:RCA:J_heart_inlet","12443":"flow:RCA:J_heart_inlet","12444":"flow:RCA:J_heart_inlet","12445":"flow:RCA:J_heart_inlet","12446":"flow:RCA:J_heart_inlet","12447":"flow:RCA:J_heart_inlet","12448":"flow:RCA:J_heart_inlet","12449":"flow:RCA:J_heart_inlet","12450":"flow:RCA:J_heart_inlet","12451":"flow:RCA:J_heart_inlet","12452":"flow:RCA:J_heart_inlet","12453":"flow:RCA:J_heart_inlet","12454":"flow:RCA:J_heart_inlet","12455":"flow:RCA:J_heart_inlet","12456":"flow:RCA:J_heart_inlet","12457":"flow:RCA:J_heart_inlet","12458":"flow:RCA:J_heart_inlet","12459":"flow:RCA:J_heart_inlet","12460":"flow:RCA:J_heart_inlet","12461":"flow:RCA:J_heart_inlet","12462":"flow:RCA:J_heart_inlet","12463":"flow:RCA:J_heart_inlet","12464":"flow:RCA:J_heart_inlet","12465":"flow:RCA:J_heart_inlet","12466":"flow:RCA:J_heart_inlet","12467":"flow:RCA:J_heart_inlet","12468":"flow:RCA:J_heart_inlet","12469":"flow:RCA:J_heart_inlet","12470":"flow:RCA:J_heart_inlet","12471":"flow:RCA:J_heart_inlet","12472":"flow:RCA:J_heart_inlet","12473":"flow:RCA:J_heart_inlet","12474":"flow:RCA:J_heart_inlet","12475":"flow:RCA:J_heart_inlet","12476":"flow:RCA:J_heart_inlet","12477":"flow:RCA:J_heart_inlet","12478":"flow:RCA:J_heart_inlet","12479":"flow:RCA:J_heart_inlet","12480":"flow:RCA:J_heart_inlet","12481":"flow:RCA:J_heart_inlet","12482":"flow:RCA:J_heart_inlet","12483":"flow:RCA:J_heart_inlet","12484":"flow:RCA:J_heart_inlet","12485":"flow:RCA:J_heart_inlet","12486":"flow:RCA:J_heart_inlet","12487":"flow:RCA:J_heart_inlet","12488":"flow:RCA:J_heart_inlet","12489":"flow:RCA:J_heart_inlet","12490":"flow:RCA:J_heart_inlet","12491":"flow:RCA:J_heart_inlet","12492":"flow:RCA:J_heart_inlet","12493":"flow:RCA:J_heart_inlet","12494":"flow:RCA:J_heart_inlet","12495":"flow:RCA:J_heart_inlet","12496":"flow:RCA:J_heart_inlet","12497":"flow:RCA:J_heart_inlet","12498":"flow:RCA:J_heart_inlet","12499":"flow:RCA:J_heart_inlet","12500":"flow:RCA:J_heart_inlet","12501":"flow:RCA:J_heart_inlet","12502":"flow:RCA:J_heart_inlet","12503":"flow:RCA:J_heart_inlet","12504":"flow:RCA:J_heart_inlet","12505":"flow:RCA:J_heart_inlet","12506":"flow:RCA:J_heart_inlet","12507":"flow:RCA:J_heart_inlet","12508":"flow:RCA:J_heart_inlet","12509":"flow:RCA:J_heart_inlet","12510":"flow:RCA:J_heart_inlet","12511":"flow:RCA:J_heart_inlet","12512":"flow:RCA:J_heart_inlet","12513":"flow:RCA:J_heart_inlet","12514":"flow:RCA:J_heart_inlet","12515":"flow:RCA:J_heart_inlet","12516":"flow:RCA:J_heart_inlet","12517":"flow:RCA:J_heart_inlet","12518":"flow:RCA:J_heart_inlet","12519":"flow:RCA:J_heart_inlet","12520":"flow:RCA:J_heart_inlet","12521":"flow:RCA:J_heart_inlet","12522":"flow:RCA:J_heart_inlet","12523":"flow:RCA:J_heart_inlet","12524":"flow:RCA:J_heart_inlet","12525":"flow:RCA:J_heart_inlet","12526":"flow:RCA:J_heart_inlet","12527":"flow:RCA:J_heart_inlet","12528":"flow:RCA:J_heart_inlet","12529":"flow:RCA:J_heart_inlet","12530":"flow:RCA:J_heart_inlet","12531":"flow:RCA:J_heart_inlet","12532":"flow:RCA:J_heart_inlet","12533":"flow:RCA:J_heart_inlet","12534":"flow:RCA:J_heart_inlet","12535":"flow:RCA:J_heart_inlet","12536":"flow:RCA:J_heart_inlet","12537":"flow:RCA:J_heart_inlet","12538":"flow:RCA:J_heart_inlet","12539":"flow:RCA:J_heart_inlet","12540":"flow:RCA:J_heart_inlet","12541":"flow:RCA:J_heart_inlet","12542":"flow:RCA:J_heart_inlet","12543":"flow:RCA:J_heart_inlet","12544":"flow:RCA:J_heart_inlet","12545":"flow:RCA:J_heart_inlet","12546":"flow:RCA:J_heart_inlet","12547":"flow:RCA:J_heart_inlet","12548":"flow:RCA:J_heart_inlet","12549":"flow:RCA:J_heart_inlet","12550":"flow:RCA:J_heart_inlet","12551":"flow:RCA:J_heart_inlet","12552":"flow:RCA:J_heart_inlet","12553":"flow:RCA:J_heart_inlet","12554":"flow:RCA:J_heart_inlet","12555":"flow:RCA:J_heart_inlet","12556":"flow:RCA:J_heart_inlet","12557":"flow:RCA:J_heart_inlet","12558":"flow:RCA:J_heart_inlet","12559":"flow:RCA:J_heart_inlet","12560":"flow:RCA:J_heart_inlet","12561":"flow:RCA:J_heart_inlet","12562":"flow:RCA:J_heart_inlet","12563":"flow:RCA:J_heart_inlet","12564":"flow:RCA:J_heart_inlet","12565":"flow:RCA:J_heart_inlet","12566":"flow:RCA:J_heart_inlet","12567":"flow:RCA:J_heart_inlet","12568":"flow:RCA:J_heart_inlet","12569":"flow:RCA:J_heart_inlet","12570":"flow:RCA:J_heart_inlet","12571":"flow:RCA:J_heart_inlet","12572":"flow:RCA:J_heart_inlet","12573":"flow:RCA:J_heart_inlet","12574":"flow:RCA:J_heart_inlet","12575":"flow:RCA:J_heart_inlet","12576":"flow:RCA:J_heart_inlet","12577":"flow:RCA:J_heart_inlet","12578":"flow:RCA:J_heart_inlet","12579":"flow:RCA:J_heart_inlet","12580":"flow:RCA:J_heart_inlet","12581":"flow:RCA:J_heart_inlet","12582":"flow:RCA:J_heart_inlet","12583":"flow:RCA:J_heart_inlet","12584":"flow:RCA:J_heart_inlet","12585":"flow:RCA:J_heart_inlet","12586":"flow:RCA:J_heart_inlet","12587":"flow:RCA:J_heart_inlet","12588":"flow:RCA:J_heart_inlet","12589":"flow:RCA:J_heart_inlet","12590":"flow:RCA:J_heart_inlet","12591":"flow:RCA:J_heart_inlet","12592":"flow:RCA:J_heart_inlet","12593":"flow:RCA:J_heart_inlet","12594":"flow:RCA:J_heart_inlet","12595":"flow:RCA:J_heart_inlet","12596":"flow:RCA:J_heart_inlet","12597":"flow:RCA:J_heart_inlet","12598":"flow:RCA:J_heart_inlet","12599":"flow:RCA:J_heart_inlet","12600":"flow:RCA:J_heart_inlet","12601":"flow:RCA:J_heart_inlet","12602":"flow:RCA:J_heart_inlet","12603":"flow:RCA:J_heart_inlet","12604":"flow:RCA:J_heart_inlet","12605":"flow:RCA:J_heart_inlet","12606":"flow:RCA:J_heart_inlet","12607":"flow:RCA:J_heart_inlet","12608":"flow:RCA:J_heart_inlet","12609":"flow:RCA:J_heart_inlet","12610":"flow:RCA:J_heart_inlet","12611":"flow:RCA:J_heart_inlet","12612":"flow:RCA:J_heart_inlet","12613":"flow:RCA:J_heart_inlet","12614":"flow:RCA:J_heart_inlet","12615":"flow:RCA:J_heart_inlet","12616":"flow:RCA:J_heart_inlet","12617":"flow:RCA:J_heart_inlet","12618":"flow:RCA:J_heart_inlet","12619":"flow:RCA:J_heart_inlet","12620":"flow:RCA:J_heart_inlet","12621":"flow:RCA:J_heart_inlet","12622":"flow:RCA:J_heart_inlet","12623":"flow:RCA:J_heart_inlet","12624":"flow:RCA:J_heart_inlet","12625":"flow:RCA:J_heart_inlet","12626":"flow:RCA:J_heart_inlet","12627":"flow:RCA:J_heart_inlet","12628":"flow:RCA:J_heart_inlet","12629":"flow:RCA:J_heart_inlet","12630":"flow:RCA:J_heart_inlet","12631":"flow:RCA:J_heart_inlet","12632":"flow:RCA:J_heart_inlet","12633":"flow:RCA:J_heart_inlet","12634":"flow:RCA:J_heart_inlet","12635":"flow:RCA:J_heart_inlet","12636":"flow:RCA:J_heart_inlet","12637":"flow:RCA:J_heart_inlet","12638":"flow:RCA:J_heart_inlet","12639":"flow:RCA:J_heart_inlet","12640":"flow:RCA:J_heart_inlet","12641":"flow:RCA:J_heart_inlet","12642":"flow:RCA:J_heart_inlet","12643":"flow:RCA:J_heart_inlet","12644":"flow:RCA:J_heart_inlet","12645":"flow:RCA:J_heart_inlet","12646":"flow:RCA:J_heart_inlet","12647":"flow:RCA:J_heart_inlet","12648":"flow:RCA:J_heart_inlet","12649":"flow:RCA:J_heart_inlet","12650":"flow:RCA:J_heart_inlet","12651":"flow:RCA:J_heart_inlet","12652":"flow:RCA:J_heart_inlet","12653":"flow:RCA:J_heart_inlet","12654":"flow:RCA:J_heart_inlet","12655":"flow:RCA:J_heart_inlet","12656":"flow:RCA:J_heart_inlet","12657":"flow:RCA:J_heart_inlet","12658":"flow:RCA:J_heart_inlet","12659":"flow:RCA:J_heart_inlet","12660":"flow:RCA:J_heart_inlet","12661":"flow:RCA:J_heart_inlet","12662":"flow:RCA:J_heart_inlet","12663":"flow:RCA:J_heart_inlet","12664":"flow:RCA:J_heart_inlet","12665":"flow:RCA:J_heart_inlet","12666":"flow:RCA:J_heart_inlet","12667":"flow:RCA:J_heart_inlet","12668":"flow:RCA:J_heart_inlet","12669":"flow:RCA:J_heart_inlet","12670":"flow:RCA:J_heart_inlet","12671":"flow:RCA:J_heart_inlet","12672":"flow:RCA:J_heart_inlet","12673":"flow:RCA:J_heart_inlet","12674":"flow:RCA:J_heart_inlet","12675":"flow:RCA:J_heart_inlet","12676":"flow:RCA:J_heart_inlet","12677":"flow:RCA:J_heart_inlet","12678":"flow:RCA:J_heart_inlet","12679":"flow:RCA:J_heart_inlet","12680":"flow:RCA:J_heart_inlet","12681":"flow:RCA:J_heart_inlet","12682":"flow:RCA:J_heart_inlet","12683":"flow:RCA:J_heart_inlet","12684":"flow:RCA:J_heart_inlet","12685":"flow:RCA:J_heart_inlet","12686":"flow:RCA:J_heart_inlet","12687":"flow:RCA:J_heart_inlet","12688":"flow:RCA:J_heart_inlet","12689":"flow:RCA:J_heart_inlet","12690":"flow:RCA:J_heart_inlet","12691":"flow:RCA:J_heart_inlet","12692":"flow:RCA:J_heart_inlet","12693":"flow:RCA:J_heart_inlet","12694":"flow:RCA:J_heart_inlet","12695":"flow:RCA:J_heart_inlet","12696":"flow:RCA:J_heart_inlet","12697":"flow:RCA:J_heart_inlet","12698":"flow:RCA:J_heart_inlet","12699":"flow:RCA:J_heart_inlet","12700":"flow:RCA:J_heart_inlet","12701":"flow:RCA:J_heart_inlet","12702":"flow:RCA:J_heart_inlet","12703":"flow:RCA:J_heart_inlet","12704":"flow:RCA:J_heart_inlet","12705":"flow:RCA:J_heart_inlet","12706":"flow:RCA:J_heart_inlet","12707":"flow:RCA:J_heart_inlet","12708":"flow:RCA:J_heart_inlet","12709":"flow:RCA:J_heart_inlet","12710":"flow:RCA:J_heart_inlet","12711":"flow:RCA:J_heart_inlet","12712":"flow:RCA:J_heart_inlet","12713":"flow:RCA:J_heart_inlet","12714":"flow:RCA:J_heart_inlet","12715":"flow:RCA:J_heart_inlet","12716":"flow:RCA:J_heart_inlet","12717":"flow:RCA:J_heart_inlet","12718":"flow:RCA:J_heart_inlet","12719":"flow:RCA:J_heart_inlet","12720":"flow:RCA:J_heart_inlet","12721":"flow:RCA:J_heart_inlet","12722":"flow:RCA:J_heart_inlet","12723":"flow:RCA:J_heart_inlet","12724":"flow:RCA:J_heart_inlet","12725":"flow:RCA:J_heart_inlet","12726":"flow:RCA:J_heart_inlet","12727":"flow:RCA:J_heart_inlet","12728":"flow:RCA:J_heart_inlet","12729":"flow:RCA:J_heart_inlet","12730":"flow:RCA:J_heart_inlet","12731":"flow:RCA:J_heart_inlet","12732":"flow:RCA:J_heart_inlet","12733":"flow:RCA:J_heart_inlet","12734":"flow:RCA:J_heart_inlet","12735":"flow:RCA:J_heart_inlet","12736":"flow:RCA:J_heart_inlet","12737":"flow:RCA:J_heart_inlet","12738":"flow:RCA:J_heart_inlet","12739":"flow:RCA:J_heart_inlet","12740":"flow:RCA:J_heart_inlet","12741":"flow:RCA:J_heart_inlet","12742":"flow:RCA:J_heart_inlet","12743":"flow:RCA:J_heart_inlet","12744":"flow:RCA:J_heart_inlet","12745":"flow:RCA:J_heart_inlet","12746":"flow:RCA:J_heart_inlet","12747":"flow:RCA:J_heart_inlet","12748":"flow:RCA:J_heart_inlet","12749":"flow:RCA:J_heart_inlet","12750":"flow:RCA:J_heart_inlet","12751":"flow:RCA:J_heart_inlet","12752":"flow:RCA:J_heart_inlet","12753":"flow:RCA:J_heart_inlet","12754":"flow:RCA:J_heart_inlet","12755":"flow:RCA:J_heart_inlet","12756":"flow:RCA:J_heart_inlet","12757":"flow:RCA:J_heart_inlet","12758":"flow:RCA:J_heart_inlet","12759":"flow:RCA:J_heart_inlet","12760":"flow:RCA:J_heart_inlet","12761":"flow:RCA:J_heart_inlet","12762":"flow:RCA:J_heart_inlet","12763":"flow:RCA:J_heart_inlet","12764":"flow:RCA:J_heart_inlet","12765":"flow:RCA:J_heart_inlet","12766":"flow:RCA:J_heart_inlet","12767":"flow:RCA:J_heart_inlet","12768":"flow:RCA:J_heart_inlet","12769":"flow:RCA:J_heart_inlet","12770":"flow:RCA:J_heart_inlet","12771":"flow:RCA:J_heart_inlet","12772":"flow:RCA:J_heart_inlet","12773":"flow:RCA:J_heart_inlet","12774":"flow:RCA:J_heart_inlet","12775":"flow:RCA:J_heart_inlet","12776":"flow:RCA:J_heart_inlet","12777":"flow:RCA:J_heart_inlet","12778":"flow:RCA:J_heart_inlet","12779":"flow:RCA:J_heart_inlet","12780":"flow:RCA:J_heart_inlet","12781":"flow:RCA:J_heart_inlet","12782":"flow:RCA:J_heart_inlet","12783":"flow:RCA:J_heart_inlet","12784":"flow:RCA:J_heart_inlet","12785":"flow:RCA:J_heart_inlet","12786":"flow:RCA:J_heart_inlet","12787":"flow:RCA:J_heart_inlet","12788":"flow:RCA:J_heart_inlet","12789":"flow:RCA:J_heart_inlet","12790":"flow:RCA:J_heart_inlet","12791":"flow:RCA:J_heart_inlet","12792":"flow:RCA:J_heart_inlet","12793":"flow:RCA:J_heart_inlet","12794":"flow:RCA:J_heart_inlet","12795":"flow:RCA:J_heart_inlet","12796":"flow:RCA:J_heart_inlet","12797":"flow:RCA:J_heart_inlet","12798":"flow:RCA:J_heart_inlet","12799":"flow:RCA:J_heart_inlet","12800":"flow:RCA:J_heart_inlet","12801":"flow:RCA:J_heart_inlet","12802":"flow:RCA:J_heart_inlet","12803":"flow:RCA:J_heart_inlet","12804":"flow:RCA:J_heart_inlet","12805":"flow:RCA:J_heart_inlet","12806":"flow:RCA:J_heart_inlet","12807":"flow:RCA:J_heart_inlet","12808":"flow:RCA:J_heart_inlet","12809":"flow:RCA:J_heart_inlet","12810":"flow:RCA:J_heart_inlet","12811":"flow:RCA:J_heart_inlet","12812":"flow:RCA:J_heart_inlet","12813":"flow:RCA:J_heart_inlet","12814":"flow:RCA:J_heart_inlet","12815":"flow:RCA:J_heart_inlet","12816":"flow:RCA:J_heart_inlet","12817":"flow:RCA:J_heart_inlet","12818":"flow:RCA:J_heart_inlet","12819":"flow:RCA:J_heart_inlet","12820":"flow:RCA:J_heart_inlet","12821":"flow:RCA:J_heart_inlet","12822":"flow:RCA:J_heart_inlet","12823":"flow:RCA:J_heart_inlet","12824":"flow:RCA:J_heart_inlet","12825":"flow:RCA:J_heart_inlet","12826":"flow:RCA:J_heart_inlet","12827":"flow:RCA:J_heart_inlet","12828":"flow:RCA:J_heart_inlet","12829":"flow:RCA:J_heart_inlet","12830":"flow:RCA:J_heart_inlet","12831":"flow:RCA:J_heart_inlet","12832":"flow:RCA:J_heart_inlet","12833":"flow:RCA:J_heart_inlet","12834":"flow:RCA:J_heart_inlet","12835":"flow:RCA:J_heart_inlet","12836":"flow:RCA:J_heart_inlet","12837":"flow:RCA:J_heart_inlet","12838":"flow:RCA:J_heart_inlet","12839":"flow:RCA:J_heart_inlet","12840":"flow:RCA:J_heart_inlet","12841":"flow:RCA:J_heart_inlet","12842":"flow:RCA:J_heart_inlet","12843":"flow:RCA:J_heart_inlet","12844":"flow:RCA:J_heart_inlet","12845":"flow:RCA:J_heart_inlet","12846":"flow:RCA:J_heart_inlet","12847":"flow:RCA:J_heart_inlet","12848":"flow:RCA:J_heart_inlet","12849":"flow:RCA:J_heart_inlet","12850":"flow:RCA:J_heart_inlet","12851":"flow:RCA:J_heart_inlet","12852":"flow:RCA:J_heart_inlet","12853":"flow:RCA:J_heart_inlet","12854":"flow:RCA:J_heart_inlet","12855":"flow:RCA:J_heart_inlet","12856":"flow:RCA:J_heart_inlet","12857":"flow:RCA:J_heart_inlet","12858":"flow:RCA:J_heart_inlet","12859":"flow:RCA:J_heart_inlet","12860":"flow:RCA:J_heart_inlet","12861":"flow:RCA:J_heart_inlet","12862":"flow:RCA:J_heart_inlet","12863":"flow:RCA:J_heart_inlet","12864":"flow:RCA:J_heart_inlet","12865":"flow:RCA:J_heart_inlet","12866":"flow:RCA:J_heart_inlet","12867":"flow:RCA:J_heart_inlet","12868":"flow:RCA:J_heart_inlet","12869":"flow:RCA:J_heart_inlet","12870":"flow:RCA:J_heart_inlet","12871":"flow:RCA:J_heart_inlet","12872":"flow:RCA:J_heart_inlet","12873":"flow:RCA:J_heart_inlet","12874":"flow:RCA:J_heart_inlet","12875":"flow:RCA:J_heart_inlet","12876":"flow:RCA:J_heart_inlet","12877":"flow:RCA:J_heart_inlet","12878":"flow:RCA:J_heart_inlet","12879":"flow:RCA:J_heart_inlet","12880":"flow:RCA:J_heart_inlet","12881":"flow:RCA:J_heart_inlet","12882":"flow:RCA:J_heart_inlet","12883":"flow:RCA:J_heart_inlet","12884":"flow:RCA:J_heart_inlet","12885":"flow:RCA:J_heart_inlet","12886":"flow:RCA:J_heart_inlet","12887":"flow:RCA:J_heart_inlet","12888":"flow:RCA:J_heart_inlet","12889":"flow:RCA:J_heart_inlet","12890":"flow:RCA:J_heart_inlet","12891":"flow:RCA:J_heart_inlet","12892":"flow:RCA:J_heart_inlet","12893":"flow:RCA:J_heart_inlet","12894":"flow:RCA:J_heart_inlet","12895":"flow:RCA:J_heart_inlet","12896":"flow:RCA:J_heart_inlet","12897":"flow:RCA:J_heart_inlet","12898":"flow:RCA:J_heart_inlet","12899":"flow:RCA:J_heart_inlet","12900":"flow:RCA:J_heart_inlet","12901":"flow:RCA:J_heart_inlet","12902":"flow:RCA:J_heart_inlet","12903":"flow:RCA:J_heart_inlet","12904":"flow:RCA:J_heart_inlet","12905":"flow:RCA:J_heart_inlet","12906":"flow:RCA:J_heart_inlet","12907":"flow:RCA:J_heart_inlet","12908":"flow:RCA:J_heart_inlet","12909":"flow:RCA:J_heart_inlet","12910":"flow:RCA:J_heart_inlet","12911":"flow:RCA:J_heart_inlet","12912":"flow:RCA:J_heart_inlet","12913":"flow:RCA:J_heart_inlet","12914":"flow:RCA:J_heart_inlet","12915":"flow:RCA:J_heart_inlet","12916":"flow:RCA:J_heart_inlet","12917":"flow:RCA:J_heart_inlet","12918":"flow:RCA:J_heart_inlet","12919":"flow:RCA:J_heart_inlet","12920":"flow:RCA:J_heart_inlet","12921":"flow:RCA:J_heart_inlet","12922":"flow:RCA:J_heart_inlet","12923":"flow:RCA:J_heart_inlet","12924":"flow:RCA:J_heart_inlet","12925":"flow:RCA:J_heart_inlet","12926":"flow:RCA:J_heart_inlet","12927":"flow:RCA:J_heart_inlet","12928":"flow:RCA:J_heart_inlet","12929":"flow:RCA:J_heart_inlet","12930":"flow:RCA:J_heart_inlet","12931":"flow:RCA:J_heart_inlet","12932":"flow:RCA:J_heart_inlet","12933":"flow:RCA:J_heart_inlet","12934":"flow:RCA:J_heart_inlet","12935":"flow:RCA:J_heart_inlet","12936":"flow:RCA:J_heart_inlet","12937":"flow:RCA:J_heart_inlet","12938":"flow:RCA:J_heart_inlet","12939":"flow:RCA:J_heart_inlet","12940":"flow:RCA:J_heart_inlet","12941":"flow:RCA:J_heart_inlet","12942":"flow:RCA:J_heart_inlet","12943":"flow:RCA:J_heart_inlet","12944":"flow:RCA:J_heart_inlet","12945":"flow:RCA:J_heart_inlet","12946":"flow:RCA:J_heart_inlet","12947":"flow:RCA:J_heart_inlet","12948":"flow:RCA:J_heart_inlet","12949":"flow:RCA:J_heart_inlet","12950":"flow:RCA:J_heart_inlet","12951":"flow:RCA:J_heart_inlet","12952":"flow:RCA:J_heart_inlet","12953":"flow:RCA:J_heart_inlet","12954":"flow:RCA:J_heart_inlet","12955":"flow:RCA:J_heart_inlet","12956":"flow:RCA:J_heart_inlet","12957":"flow:RCA:J_heart_inlet","12958":"flow:RCA:J_heart_inlet","12959":"flow:RCA:J_heart_inlet","12960":"flow:RCA:J_heart_inlet","12961":"flow:RCA:J_heart_inlet","12962":"flow:RCA:J_heart_inlet","12963":"flow:RCA:J_heart_inlet","12964":"flow:RCA:J_heart_inlet","12965":"flow:RCA:J_heart_inlet","12966":"flow:RCA:J_heart_inlet","12967":"flow:RCA:J_heart_inlet","12968":"flow:RCA:J_heart_inlet","12969":"flow:RCA:J_heart_inlet","12970":"flow:RCA:J_heart_inlet","12971":"flow:RCA:J_heart_inlet","12972":"flow:RCA:J_heart_inlet","12973":"flow:RCA:J_heart_inlet","12974":"flow:RCA:J_heart_inlet","12975":"flow:RCA:J_heart_inlet","12976":"flow:RCA:J_heart_inlet","12977":"flow:RCA:J_heart_inlet","12978":"flow:RCA:J_heart_inlet","12979":"flow:RCA:J_heart_inlet","12980":"flow:RCA:J_heart_inlet","12981":"flow:RCA:J_heart_inlet","12982":"flow:RCA:J_heart_inlet","12983":"flow:RCA:J_heart_inlet","12984":"flow:RCA:J_heart_inlet","12985":"flow:RCA:J_heart_inlet","12986":"flow:RCA:J_heart_inlet","12987":"flow:RCA:J_heart_inlet","12988":"flow:RCA:J_heart_inlet","12989":"flow:RCA:J_heart_inlet","12990":"flow:RCA:J_heart_inlet","12991":"flow:RCA:J_heart_inlet","12992":"flow:RCA:J_heart_inlet","12993":"flow:RCA:J_heart_inlet","12994":"flow:RCA:J_heart_inlet","12995":"flow:RCA:J_heart_inlet","12996":"flow:RCA:J_heart_inlet","12997":"flow:RCA:J_heart_inlet","12998":"flow:RCA:J_heart_inlet","12999":"flow:RCA:J_heart_inlet","13000":"pressure:RCA:J_heart_inlet","13001":"pressure:RCA:J_heart_inlet","13002":"pressure:RCA:J_heart_inlet","13003":"pressure:RCA:J_heart_inlet","13004":"pressure:RCA:J_heart_inlet","13005":"pressure:RCA:J_heart_inlet","13006":"pressure:RCA:J_heart_inlet","13007":"pressure:RCA:J_heart_inlet","13008":"pressure:RCA:J_heart_inlet","13009":"pressure:RCA:J_heart_inlet","13010":"pressure:RCA:J_heart_inlet","13011":"pressure:RCA:J_heart_inlet","13012":"pressure:RCA:J_heart_inlet","13013":"pressure:RCA:J_heart_inlet","13014":"pressure:RCA:J_heart_inlet","13015":"pressure:RCA:J_heart_inlet","13016":"pressure:RCA:J_heart_inlet","13017":"pressure:RCA:J_heart_inlet","13018":"pressure:RCA:J_heart_inlet","13019":"pressure:RCA:J_heart_inlet","13020":"pressure:RCA:J_heart_inlet","13021":"pressure:RCA:J_heart_inlet","13022":"pressure:RCA:J_heart_inlet","13023":"pressure:RCA:J_heart_inlet","13024":"pressure:RCA:J_heart_inlet","13025":"pressure:RCA:J_heart_inlet","13026":"pressure:RCA:J_heart_inlet","13027":"pressure:RCA:J_heart_inlet","13028":"pressure:RCA:J_heart_inlet","13029":"pressure:RCA:J_heart_inlet","13030":"pressure:RCA:J_heart_inlet","13031":"pressure:RCA:J_heart_inlet","13032":"pressure:RCA:J_heart_inlet","13033":"pressure:RCA:J_heart_inlet","13034":"pressure:RCA:J_heart_inlet","13035":"pressure:RCA:J_heart_inlet","13036":"pressure:RCA:J_heart_inlet","13037":"pressure:RCA:J_heart_inlet","13038":"pressure:RCA:J_heart_inlet","13039":"pressure:RCA:J_heart_inlet","13040":"pressure:RCA:J_heart_inlet","13041":"pressure:RCA:J_heart_inlet","13042":"pressure:RCA:J_heart_inlet","13043":"pressure:RCA:J_heart_inlet","13044":"pressure:RCA:J_heart_inlet","13045":"pressure:RCA:J_heart_inlet","13046":"pressure:RCA:J_heart_inlet","13047":"pressure:RCA:J_heart_inlet","13048":"pressure:RCA:J_heart_inlet","13049":"pressure:RCA:J_heart_inlet","13050":"pressure:RCA:J_heart_inlet","13051":"pressure:RCA:J_heart_inlet","13052":"pressure:RCA:J_heart_inlet","13053":"pressure:RCA:J_heart_inlet","13054":"pressure:RCA:J_heart_inlet","13055":"pressure:RCA:J_heart_inlet","13056":"pressure:RCA:J_heart_inlet","13057":"pressure:RCA:J_heart_inlet","13058":"pressure:RCA:J_heart_inlet","13059":"pressure:RCA:J_heart_inlet","13060":"pressure:RCA:J_heart_inlet","13061":"pressure:RCA:J_heart_inlet","13062":"pressure:RCA:J_heart_inlet","13063":"pressure:RCA:J_heart_inlet","13064":"pressure:RCA:J_heart_inlet","13065":"pressure:RCA:J_heart_inlet","13066":"pressure:RCA:J_heart_inlet","13067":"pressure:RCA:J_heart_inlet","13068":"pressure:RCA:J_heart_inlet","13069":"pressure:RCA:J_heart_inlet","13070":"pressure:RCA:J_heart_inlet","13071":"pressure:RCA:J_heart_inlet","13072":"pressure:RCA:J_heart_inlet","13073":"pressure:RCA:J_heart_inlet","13074":"pressure:RCA:J_heart_inlet","13075":"pressure:RCA:J_heart_inlet","13076":"pressure:RCA:J_heart_inlet","13077":"pressure:RCA:J_heart_inlet","13078":"pressure:RCA:J_heart_inlet","13079":"pressure:RCA:J_heart_inlet","13080":"pressure:RCA:J_heart_inlet","13081":"pressure:RCA:J_heart_inlet","13082":"pressure:RCA:J_heart_inlet","13083":"pressure:RCA:J_heart_inlet","13084":"pressure:RCA:J_heart_inlet","13085":"pressure:RCA:J_heart_inlet","13086":"pressure:RCA:J_heart_inlet","13087":"pressure:RCA:J_heart_inlet","13088":"pressure:RCA:J_heart_inlet","13089":"pressure:RCA:J_heart_inlet","13090":"pressure:RCA:J_heart_inlet","13091":"pressure:RCA:J_heart_inlet","13092":"pressure:RCA:J_heart_inlet","13093":"pressure:RCA:J_heart_inlet","13094":"pressure:RCA:J_heart_inlet","13095":"pressure:RCA:J_heart_inlet","13096":"pressure:RCA:J_heart_inlet","13097":"pressure:RCA:J_heart_inlet","13098":"pressure:RCA:J_heart_inlet","13099":"pressure:RCA:J_heart_inlet","13100":"pressure:RCA:J_heart_inlet","13101":"pressure:RCA:J_heart_inlet","13102":"pressure:RCA:J_heart_inlet","13103":"pressure:RCA:J_heart_inlet","13104":"pressure:RCA:J_heart_inlet","13105":"pressure:RCA:J_heart_inlet","13106":"pressure:RCA:J_heart_inlet","13107":"pressure:RCA:J_heart_inlet","13108":"pressure:RCA:J_heart_inlet","13109":"pressure:RCA:J_heart_inlet","13110":"pressure:RCA:J_heart_inlet","13111":"pressure:RCA:J_heart_inlet","13112":"pressure:RCA:J_heart_inlet","13113":"pressure:RCA:J_heart_inlet","13114":"pressure:RCA:J_heart_inlet","13115":"pressure:RCA:J_heart_inlet","13116":"pressure:RCA:J_heart_inlet","13117":"pressure:RCA:J_heart_inlet","13118":"pressure:RCA:J_heart_inlet","13119":"pressure:RCA:J_heart_inlet","13120":"pressure:RCA:J_heart_inlet","13121":"pressure:RCA:J_heart_inlet","13122":"pressure:RCA:J_heart_inlet","13123":"pressure:RCA:J_heart_inlet","13124":"pressure:RCA:J_heart_inlet","13125":"pressure:RCA:J_heart_inlet","13126":"pressure:RCA:J_heart_inlet","13127":"pressure:RCA:J_heart_inlet","13128":"pressure:RCA:J_heart_inlet","13129":"pressure:RCA:J_heart_inlet","13130":"pressure:RCA:J_heart_inlet","13131":"pressure:RCA:J_heart_inlet","13132":"pressure:RCA:J_heart_inlet","13133":"pressure:RCA:J_heart_inlet","13134":"pressure:RCA:J_heart_inlet","13135":"pressure:RCA:J_heart_inlet","13136":"pressure:RCA:J_heart_inlet","13137":"pressure:RCA:J_heart_inlet","13138":"pressure:RCA:J_heart_inlet","13139":"pressure:RCA:J_heart_inlet","13140":"pressure:RCA:J_heart_inlet","13141":"pressure:RCA:J_heart_inlet","13142":"pressure:RCA:J_heart_inlet","13143":"pressure:RCA:J_heart_inlet","13144":"pressure:RCA:J_heart_inlet","13145":"pressure:RCA:J_heart_inlet","13146":"pressure:RCA:J_heart_inlet","13147":"pressure:RCA:J_heart_inlet","13148":"pressure:RCA:J_heart_inlet","13149":"pressure:RCA:J_heart_inlet","13150":"pressure:RCA:J_heart_inlet","13151":"pressure:RCA:J_heart_inlet","13152":"pressure:RCA:J_heart_inlet","13153":"pressure:RCA:J_heart_inlet","13154":"pressure:RCA:J_heart_inlet","13155":"pressure:RCA:J_heart_inlet","13156":"pressure:RCA:J_heart_inlet","13157":"pressure:RCA:J_heart_inlet","13158":"pressure:RCA:J_heart_inlet","13159":"pressure:RCA:J_heart_inlet","13160":"pressure:RCA:J_heart_inlet","13161":"pressure:RCA:J_heart_inlet","13162":"pressure:RCA:J_heart_inlet","13163":"pressure:RCA:J_heart_inlet","13164":"pressure:RCA:J_heart_inlet","13165":"pressure:RCA:J_heart_inlet","13166":"pressure:RCA:J_heart_inlet","13167":"pressure:RCA:J_heart_inlet","13168":"pressure:RCA:J_heart_inlet","13169":"pressure:RCA:J_heart_inlet","13170":"pressure:RCA:J_heart_inlet","13171":"pressure:RCA:J_heart_inlet","13172":"pressure:RCA:J_heart_inlet","13173":"pressure:RCA:J_heart_inlet","13174":"pressure:RCA:J_heart_inlet","13175":"pressure:RCA:J_heart_inlet","13176":"pressure:RCA:J_heart_inlet","13177":"pressure:RCA:J_heart_inlet","13178":"pressure:RCA:J_heart_inlet","13179":"pressure:RCA:J_heart_inlet","13180":"pressure:RCA:J_heart_inlet","13181":"pressure:RCA:J_heart_inlet","13182":"pressure:RCA:J_heart_inlet","13183":"pressure:RCA:J_heart_inlet","13184":"pressure:RCA:J_heart_inlet","13185":"pressure:RCA:J_heart_inlet","13186":"pressure:RCA:J_heart_inlet","13187":"pressure:RCA:J_heart_inlet","13188":"pressure:RCA:J_heart_inlet","13189":"pressure:RCA:J_heart_inlet","13190":"pressure:RCA:J_heart_inlet","13191":"pressure:RCA:J_heart_inlet","13192":"pressure:RCA:J_heart_inlet","13193":"pressure:RCA:J_heart_inlet","13194":"pressure:RCA:J_heart_inlet","13195":"pressure:RCA:J_heart_inlet","13196":"pressure:RCA:J_heart_inlet","13197":"pressure:RCA:J_heart_inlet","13198":"pressure:RCA:J_heart_inlet","13199":"pressure:RCA:J_heart_inlet","13200":"pressure:RCA:J_heart_inlet","13201":"pressure:RCA:J_heart_inlet","13202":"pressure:RCA:J_heart_inlet","13203":"pressure:RCA:J_heart_inlet","13204":"pressure:RCA:J_heart_inlet","13205":"pressure:RCA:J_heart_inlet","13206":"pressure:RCA:J_heart_inlet","13207":"pressure:RCA:J_heart_inlet","13208":"pressure:RCA:J_heart_inlet","13209":"pressure:RCA:J_heart_inlet","13210":"pressure:RCA:J_heart_inlet","13211":"pressure:RCA:J_heart_inlet","13212":"pressure:RCA:J_heart_inlet","13213":"pressure:RCA:J_heart_inlet","13214":"pressure:RCA:J_heart_inlet","13215":"pressure:RCA:J_heart_inlet","13216":"pressure:RCA:J_heart_inlet","13217":"pressure:RCA:J_heart_inlet","13218":"pressure:RCA:J_heart_inlet","13219":"pressure:RCA:J_heart_inlet","13220":"pressure:RCA:J_heart_inlet","13221":"pressure:RCA:J_heart_inlet","13222":"pressure:RCA:J_heart_inlet","13223":"pressure:RCA:J_heart_inlet","13224":"pressure:RCA:J_heart_inlet","13225":"pressure:RCA:J_heart_inlet","13226":"pressure:RCA:J_heart_inlet","13227":"pressure:RCA:J_heart_inlet","13228":"pressure:RCA:J_heart_inlet","13229":"pressure:RCA:J_heart_inlet","13230":"pressure:RCA:J_heart_inlet","13231":"pressure:RCA:J_heart_inlet","13232":"pressure:RCA:J_heart_inlet","13233":"pressure:RCA:J_heart_inlet","13234":"pressure:RCA:J_heart_inlet","13235":"pressure:RCA:J_heart_inlet","13236":"pressure:RCA:J_heart_inlet","13237":"pressure:RCA:J_heart_inlet","13238":"pressure:RCA:J_heart_inlet","13239":"pressure:RCA:J_heart_inlet","13240":"pressure:RCA:J_heart_inlet","13241":"pressure:RCA:J_heart_inlet","13242":"pressure:RCA:J_heart_inlet","13243":"pressure:RCA:J_heart_inlet","13244":"pressure:RCA:J_heart_inlet","13245":"pressure:RCA:J_heart_inlet","13246":"pressure:RCA:J_heart_inlet","13247":"pressure:RCA:J_heart_inlet","13248":"pressure:RCA:J_heart_inlet","13249":"pressure:RCA:J_heart_inlet","13250":"pressure:RCA:J_heart_inlet","13251":"pressure:RCA:J_heart_inlet","13252":"pressure:RCA:J_heart_inlet","13253":"pressure:RCA:J_heart_inlet","13254":"pressure:RCA:J_heart_inlet","13255":"pressure:RCA:J_heart_inlet","13256":"pressure:RCA:J_heart_inlet","13257":"pressure:RCA:J_heart_inlet","13258":"pressure:RCA:J_heart_inlet","13259":"pressure:RCA:J_heart_inlet","13260":"pressure:RCA:J_heart_inlet","13261":"pressure:RCA:J_heart_inlet","13262":"pressure:RCA:J_heart_inlet","13263":"pressure:RCA:J_heart_inlet","13264":"pressure:RCA:J_heart_inlet","13265":"pressure:RCA:J_heart_inlet","13266":"pressure:RCA:J_heart_inlet","13267":"pressure:RCA:J_heart_inlet","13268":"pressure:RCA:J_heart_inlet","13269":"pressure:RCA:J_heart_inlet","13270":"pressure:RCA:J_heart_inlet","13271":"pressure:RCA:J_heart_inlet","13272":"pressure:RCA:J_heart_inlet","13273":"pressure:RCA:J_heart_inlet","13274":"pressure:RCA:J_heart_inlet","13275":"pressure:RCA:J_heart_inlet","13276":"pressure:RCA:J_heart_inlet","13277":"pressure:RCA:J_heart_inlet","13278":"pressure:RCA:J_heart_inlet","13279":"pressure:RCA:J_heart_inlet","13280":"pressure:RCA:J_heart_inlet","13281":"pressure:RCA:J_heart_inlet","13282":"pressure:RCA:J_heart_inlet","13283":"pressure:RCA:J_heart_inlet","13284":"pressure:RCA:J_heart_inlet","13285":"pressure:RCA:J_heart_inlet","13286":"pressure:RCA:J_heart_inlet","13287":"pressure:RCA:J_heart_inlet","13288":"pressure:RCA:J_heart_inlet","13289":"pressure:RCA:J_heart_inlet","13290":"pressure:RCA:J_heart_inlet","13291":"pressure:RCA:J_heart_inlet","13292":"pressure:RCA:J_heart_inlet","13293":"pressure:RCA:J_heart_inlet","13294":"pressure:RCA:J_heart_inlet","13295":"pressure:RCA:J_heart_inlet","13296":"pressure:RCA:J_heart_inlet","13297":"pressure:RCA:J_heart_inlet","13298":"pressure:RCA:J_heart_inlet","13299":"pressure:RCA:J_heart_inlet","13300":"pressure:RCA:J_heart_inlet","13301":"pressure:RCA:J_heart_inlet","13302":"pressure:RCA:J_heart_inlet","13303":"pressure:RCA:J_heart_inlet","13304":"pressure:RCA:J_heart_inlet","13305":"pressure:RCA:J_heart_inlet","13306":"pressure:RCA:J_heart_inlet","13307":"pressure:RCA:J_heart_inlet","13308":"pressure:RCA:J_heart_inlet","13309":"pressure:RCA:J_heart_inlet","13310":"pressure:RCA:J_heart_inlet","13311":"pressure:RCA:J_heart_inlet","13312":"pressure:RCA:J_heart_inlet","13313":"pressure:RCA:J_heart_inlet","13314":"pressure:RCA:J_heart_inlet","13315":"pressure:RCA:J_heart_inlet","13316":"pressure:RCA:J_heart_inlet","13317":"pressure:RCA:J_heart_inlet","13318":"pressure:RCA:J_heart_inlet","13319":"pressure:RCA:J_heart_inlet","13320":"pressure:RCA:J_heart_inlet","13321":"pressure:RCA:J_heart_inlet","13322":"pressure:RCA:J_heart_inlet","13323":"pressure:RCA:J_heart_inlet","13324":"pressure:RCA:J_heart_inlet","13325":"pressure:RCA:J_heart_inlet","13326":"pressure:RCA:J_heart_inlet","13327":"pressure:RCA:J_heart_inlet","13328":"pressure:RCA:J_heart_inlet","13329":"pressure:RCA:J_heart_inlet","13330":"pressure:RCA:J_heart_inlet","13331":"pressure:RCA:J_heart_inlet","13332":"pressure:RCA:J_heart_inlet","13333":"pressure:RCA:J_heart_inlet","13334":"pressure:RCA:J_heart_inlet","13335":"pressure:RCA:J_heart_inlet","13336":"pressure:RCA:J_heart_inlet","13337":"pressure:RCA:J_heart_inlet","13338":"pressure:RCA:J_heart_inlet","13339":"pressure:RCA:J_heart_inlet","13340":"pressure:RCA:J_heart_inlet","13341":"pressure:RCA:J_heart_inlet","13342":"pressure:RCA:J_heart_inlet","13343":"pressure:RCA:J_heart_inlet","13344":"pressure:RCA:J_heart_inlet","13345":"pressure:RCA:J_heart_inlet","13346":"pressure:RCA:J_heart_inlet","13347":"pressure:RCA:J_heart_inlet","13348":"pressure:RCA:J_heart_inlet","13349":"pressure:RCA:J_heart_inlet","13350":"pressure:RCA:J_heart_inlet","13351":"pressure:RCA:J_heart_inlet","13352":"pressure:RCA:J_heart_inlet","13353":"pressure:RCA:J_heart_inlet","13354":"pressure:RCA:J_heart_inlet","13355":"pressure:RCA:J_heart_inlet","13356":"pressure:RCA:J_heart_inlet","13357":"pressure:RCA:J_heart_inlet","13358":"pressure:RCA:J_heart_inlet","13359":"pressure:RCA:J_heart_inlet","13360":"pressure:RCA:J_heart_inlet","13361":"pressure:RCA:J_heart_inlet","13362":"pressure:RCA:J_heart_inlet","13363":"pressure:RCA:J_heart_inlet","13364":"pressure:RCA:J_heart_inlet","13365":"pressure:RCA:J_heart_inlet","13366":"pressure:RCA:J_heart_inlet","13367":"pressure:RCA:J_heart_inlet","13368":"pressure:RCA:J_heart_inlet","13369":"pressure:RCA:J_heart_inlet","13370":"pressure:RCA:J_heart_inlet","13371":"pressure:RCA:J_heart_inlet","13372":"pressure:RCA:J_heart_inlet","13373":"pressure:RCA:J_heart_inlet","13374":"pressure:RCA:J_heart_inlet","13375":"pressure:RCA:J_heart_inlet","13376":"pressure:RCA:J_heart_inlet","13377":"pressure:RCA:J_heart_inlet","13378":"pressure:RCA:J_heart_inlet","13379":"pressure:RCA:J_heart_inlet","13380":"pressure:RCA:J_heart_inlet","13381":"pressure:RCA:J_heart_inlet","13382":"pressure:RCA:J_heart_inlet","13383":"pressure:RCA:J_heart_inlet","13384":"pressure:RCA:J_heart_inlet","13385":"pressure:RCA:J_heart_inlet","13386":"pressure:RCA:J_heart_inlet","13387":"pressure:RCA:J_heart_inlet","13388":"pressure:RCA:J_heart_inlet","13389":"pressure:RCA:J_heart_inlet","13390":"pressure:RCA:J_heart_inlet","13391":"pressure:RCA:J_heart_inlet","13392":"pressure:RCA:J_heart_inlet","13393":"pressure:RCA:J_heart_inlet","13394":"pressure:RCA:J_heart_inlet","13395":"pressure:RCA:J_heart_inlet","13396":"pressure:RCA:J_heart_inlet","13397":"pressure:RCA:J_heart_inlet","13398":"pressure:RCA:J_heart_inlet","13399":"pressure:RCA:J_heart_inlet","13400":"pressure:RCA:J_heart_inlet","13401":"pressure:RCA:J_heart_inlet","13402":"pressure:RCA:J_heart_inlet","13403":"pressure:RCA:J_heart_inlet","13404":"pressure:RCA:J_heart_inlet","13405":"pressure:RCA:J_heart_inlet","13406":"pressure:RCA:J_heart_inlet","13407":"pressure:RCA:J_heart_inlet","13408":"pressure:RCA:J_heart_inlet","13409":"pressure:RCA:J_heart_inlet","13410":"pressure:RCA:J_heart_inlet","13411":"pressure:RCA:J_heart_inlet","13412":"pressure:RCA:J_heart_inlet","13413":"pressure:RCA:J_heart_inlet","13414":"pressure:RCA:J_heart_inlet","13415":"pressure:RCA:J_heart_inlet","13416":"pressure:RCA:J_heart_inlet","13417":"pressure:RCA:J_heart_inlet","13418":"pressure:RCA:J_heart_inlet","13419":"pressure:RCA:J_heart_inlet","13420":"pressure:RCA:J_heart_inlet","13421":"pressure:RCA:J_heart_inlet","13422":"pressure:RCA:J_heart_inlet","13423":"pressure:RCA:J_heart_inlet","13424":"pressure:RCA:J_heart_inlet","13425":"pressure:RCA:J_heart_inlet","13426":"pressure:RCA:J_heart_inlet","13427":"pressure:RCA:J_heart_inlet","13428":"pressure:RCA:J_heart_inlet","13429":"pressure:RCA:J_heart_inlet","13430":"pressure:RCA:J_heart_inlet","13431":"pressure:RCA:J_heart_inlet","13432":"pressure:RCA:J_heart_inlet","13433":"pressure:RCA:J_heart_inlet","13434":"pressure:RCA:J_heart_inlet","13435":"pressure:RCA:J_heart_inlet","13436":"pressure:RCA:J_heart_inlet","13437":"pressure:RCA:J_heart_inlet","13438":"pressure:RCA:J_heart_inlet","13439":"pressure:RCA:J_heart_inlet","13440":"pressure:RCA:J_heart_inlet","13441":"pressure:RCA:J_heart_inlet","13442":"pressure:RCA:J_heart_inlet","13443":"pressure:RCA:J_heart_inlet","13444":"pressure:RCA:J_heart_inlet","13445":"pressure:RCA:J_heart_inlet","13446":"pressure:RCA:J_heart_inlet","13447":"pressure:RCA:J_heart_inlet","13448":"pressure:RCA:J_heart_inlet","13449":"pressure:RCA:J_heart_inlet","13450":"pressure:RCA:J_heart_inlet","13451":"pressure:RCA:J_heart_inlet","13452":"pressure:RCA:J_heart_inlet","13453":"pressure:RCA:J_heart_inlet","13454":"pressure:RCA:J_heart_inlet","13455":"pressure:RCA:J_heart_inlet","13456":"pressure:RCA:J_heart_inlet","13457":"pressure:RCA:J_heart_inlet","13458":"pressure:RCA:J_heart_inlet","13459":"pressure:RCA:J_heart_inlet","13460":"pressure:RCA:J_heart_inlet","13461":"pressure:RCA:J_heart_inlet","13462":"pressure:RCA:J_heart_inlet","13463":"pressure:RCA:J_heart_inlet","13464":"pressure:RCA:J_heart_inlet","13465":"pressure:RCA:J_heart_inlet","13466":"pressure:RCA:J_heart_inlet","13467":"pressure:RCA:J_heart_inlet","13468":"pressure:RCA:J_heart_inlet","13469":"pressure:RCA:J_heart_inlet","13470":"pressure:RCA:J_heart_inlet","13471":"pressure:RCA:J_heart_inlet","13472":"pressure:RCA:J_heart_inlet","13473":"pressure:RCA:J_heart_inlet","13474":"pressure:RCA:J_heart_inlet","13475":"pressure:RCA:J_heart_inlet","13476":"pressure:RCA:J_heart_inlet","13477":"pressure:RCA:J_heart_inlet","13478":"pressure:RCA:J_heart_inlet","13479":"pressure:RCA:J_heart_inlet","13480":"pressure:RCA:J_heart_inlet","13481":"pressure:RCA:J_heart_inlet","13482":"pressure:RCA:J_heart_inlet","13483":"pressure:RCA:J_heart_inlet","13484":"pressure:RCA:J_heart_inlet","13485":"pressure:RCA:J_heart_inlet","13486":"pressure:RCA:J_heart_inlet","13487":"pressure:RCA:J_heart_inlet","13488":"pressure:RCA:J_heart_inlet","13489":"pressure:RCA:J_heart_inlet","13490":"pressure:RCA:J_heart_inlet","13491":"pressure:RCA:J_heart_inlet","13492":"pressure:RCA:J_heart_inlet","13493":"pressure:RCA:J_heart_inlet","13494":"pressure:RCA:J_heart_inlet","13495":"pressure:RCA:J_heart_inlet","13496":"pressure:RCA:J_heart_inlet","13497":"pressure:RCA:J_heart_inlet","13498":"pressure:RCA:J_heart_inlet","13499":"pressure:RCA:J_heart_inlet","13500":"pressure:RCA:J_heart_inlet","13501":"pressure:RCA:J_heart_inlet","13502":"pressure:RCA:J_heart_inlet","13503":"pressure:RCA:J_heart_inlet","13504":"pressure:RCA:J_heart_inlet","13505":"pressure:RCA:J_heart_inlet","13506":"pressure:RCA:J_heart_inlet","13507":"pressure:RCA:J_heart_inlet","13508":"pressure:RCA:J_heart_inlet","13509":"pressure:RCA:J_heart_inlet","13510":"pressure:RCA:J_heart_inlet","13511":"pressure:RCA:J_heart_inlet","13512":"pressure:RCA:J_heart_inlet","13513":"pressure:RCA:J_heart_inlet","13514":"pressure:RCA:J_heart_inlet","13515":"pressure:RCA:J_heart_inlet","13516":"pressure:RCA:J_heart_inlet","13517":"pressure:RCA:J_heart_inlet","13518":"pressure:RCA:J_heart_inlet","13519":"pressure:RCA:J_heart_inlet","13520":"pressure:RCA:J_heart_inlet","13521":"pressure:RCA:J_heart_inlet","13522":"pressure:RCA:J_heart_inlet","13523":"pressure:RCA:J_heart_inlet","13524":"pressure:RCA:J_heart_inlet","13525":"pressure:RCA:J_heart_inlet","13526":"pressure:RCA:J_heart_inlet","13527":"pressure:RCA:J_heart_inlet","13528":"pressure:RCA:J_heart_inlet","13529":"pressure:RCA:J_heart_inlet","13530":"pressure:RCA:J_heart_inlet","13531":"pressure:RCA:J_heart_inlet","13532":"pressure:RCA:J_heart_inlet","13533":"pressure:RCA:J_heart_inlet","13534":"pressure:RCA:J_heart_inlet","13535":"pressure:RCA:J_heart_inlet","13536":"pressure:RCA:J_heart_inlet","13537":"pressure:RCA:J_heart_inlet","13538":"pressure:RCA:J_heart_inlet","13539":"pressure:RCA:J_heart_inlet","13540":"pressure:RCA:J_heart_inlet","13541":"pressure:RCA:J_heart_inlet","13542":"pressure:RCA:J_heart_inlet","13543":"pressure:RCA:J_heart_inlet","13544":"pressure:RCA:J_heart_inlet","13545":"pressure:RCA:J_heart_inlet","13546":"pressure:RCA:J_heart_inlet","13547":"pressure:RCA:J_heart_inlet","13548":"pressure:RCA:J_heart_inlet","13549":"pressure:RCA:J_heart_inlet","13550":"pressure:RCA:J_heart_inlet","13551":"pressure:RCA:J_heart_inlet","13552":"pressure:RCA:J_heart_inlet","13553":"pressure:RCA:J_heart_inlet","13554":"pressure:RCA:J_heart_inlet","13555":"pressure:RCA:J_heart_inlet","13556":"pressure:RCA:J_heart_inlet","13557":"pressure:RCA:J_heart_inlet","13558":"pressure:RCA:J_heart_inlet","13559":"pressure:RCA:J_heart_inlet","13560":"pressure:RCA:J_heart_inlet","13561":"pressure:RCA:J_heart_inlet","13562":"pressure:RCA:J_heart_inlet","13563":"pressure:RCA:J_heart_inlet","13564":"pressure:RCA:J_heart_inlet","13565":"pressure:RCA:J_heart_inlet","13566":"pressure:RCA:J_heart_inlet","13567":"pressure:RCA:J_heart_inlet","13568":"pressure:RCA:J_heart_inlet","13569":"pressure:RCA:J_heart_inlet","13570":"pressure:RCA:J_heart_inlet","13571":"pressure:RCA:J_heart_inlet","13572":"pressure:RCA:J_heart_inlet","13573":"pressure:RCA:J_heart_inlet","13574":"pressure:RCA:J_heart_inlet","13575":"pressure:RCA:J_heart_inlet","13576":"pressure:RCA:J_heart_inlet","13577":"pressure:RCA:J_heart_inlet","13578":"pressure:RCA:J_heart_inlet","13579":"pressure:RCA:J_heart_inlet","13580":"pressure:RCA:J_heart_inlet","13581":"pressure:RCA:J_heart_inlet","13582":"pressure:RCA:J_heart_inlet","13583":"pressure:RCA:J_heart_inlet","13584":"pressure:RCA:J_heart_inlet","13585":"pressure:RCA:J_heart_inlet","13586":"pressure:RCA:J_heart_inlet","13587":"pressure:RCA:J_heart_inlet","13588":"pressure:RCA:J_heart_inlet","13589":"pressure:RCA:J_heart_inlet","13590":"pressure:RCA:J_heart_inlet","13591":"pressure:RCA:J_heart_inlet","13592":"pressure:RCA:J_heart_inlet","13593":"pressure:RCA:J_heart_inlet","13594":"pressure:RCA:J_heart_inlet","13595":"pressure:RCA:J_heart_inlet","13596":"pressure:RCA:J_heart_inlet","13597":"pressure:RCA:J_heart_inlet","13598":"pressure:RCA:J_heart_inlet","13599":"pressure:RCA:J_heart_inlet","13600":"pressure:RCA:J_heart_inlet","13601":"pressure:RCA:J_heart_inlet","13602":"pressure:RCA:J_heart_inlet","13603":"pressure:RCA:J_heart_inlet","13604":"pressure:RCA:J_heart_inlet","13605":"pressure:RCA:J_heart_inlet","13606":"pressure:RCA:J_heart_inlet","13607":"pressure:RCA:J_heart_inlet","13608":"pressure:RCA:J_heart_inlet","13609":"pressure:RCA:J_heart_inlet","13610":"pressure:RCA:J_heart_inlet","13611":"pressure:RCA:J_heart_inlet","13612":"pressure:RCA:J_heart_inlet","13613":"pressure:RCA:J_heart_inlet","13614":"pressure:RCA:J_heart_inlet","13615":"pressure:RCA:J_heart_inlet","13616":"pressure:RCA:J_heart_inlet","13617":"pressure:RCA:J_heart_inlet","13618":"pressure:RCA:J_heart_inlet","13619":"pressure:RCA:J_heart_inlet","13620":"pressure:RCA:J_heart_inlet","13621":"pressure:RCA:J_heart_inlet","13622":"pressure:RCA:J_heart_inlet","13623":"pressure:RCA:J_heart_inlet","13624":"pressure:RCA:J_heart_inlet","13625":"pressure:RCA:J_heart_inlet","13626":"pressure:RCA:J_heart_inlet","13627":"pressure:RCA:J_heart_inlet","13628":"pressure:RCA:J_heart_inlet","13629":"pressure:RCA:J_heart_inlet","13630":"pressure:RCA:J_heart_inlet","13631":"pressure:RCA:J_heart_inlet","13632":"pressure:RCA:J_heart_inlet","13633":"pressure:RCA:J_heart_inlet","13634":"pressure:RCA:J_heart_inlet","13635":"pressure:RCA:J_heart_inlet","13636":"pressure:RCA:J_heart_inlet","13637":"pressure:RCA:J_heart_inlet","13638":"pressure:RCA:J_heart_inlet","13639":"pressure:RCA:J_heart_inlet","13640":"pressure:RCA:J_heart_inlet","13641":"pressure:RCA:J_heart_inlet","13642":"pressure:RCA:J_heart_inlet","13643":"pressure:RCA:J_heart_inlet","13644":"pressure:RCA:J_heart_inlet","13645":"pressure:RCA:J_heart_inlet","13646":"pressure:RCA:J_heart_inlet","13647":"pressure:RCA:J_heart_inlet","13648":"pressure:RCA:J_heart_inlet","13649":"pressure:RCA:J_heart_inlet","13650":"pressure:RCA:J_heart_inlet","13651":"pressure:RCA:J_heart_inlet","13652":"pressure:RCA:J_heart_inlet","13653":"pressure:RCA:J_heart_inlet","13654":"pressure:RCA:J_heart_inlet","13655":"pressure:RCA:J_heart_inlet","13656":"pressure:RCA:J_heart_inlet","13657":"pressure:RCA:J_heart_inlet","13658":"pressure:RCA:J_heart_inlet","13659":"pressure:RCA:J_heart_inlet","13660":"pressure:RCA:J_heart_inlet","13661":"pressure:RCA:J_heart_inlet","13662":"pressure:RCA:J_heart_inlet","13663":"pressure:RCA:J_heart_inlet","13664":"pressure:RCA:J_heart_inlet","13665":"pressure:RCA:J_heart_inlet","13666":"pressure:RCA:J_heart_inlet","13667":"pressure:RCA:J_heart_inlet","13668":"pressure:RCA:J_heart_inlet","13669":"pressure:RCA:J_heart_inlet","13670":"pressure:RCA:J_heart_inlet","13671":"pressure:RCA:J_heart_inlet","13672":"pressure:RCA:J_heart_inlet","13673":"pressure:RCA:J_heart_inlet","13674":"pressure:RCA:J_heart_inlet","13675":"pressure:RCA:J_heart_inlet","13676":"pressure:RCA:J_heart_inlet","13677":"pressure:RCA:J_heart_inlet","13678":"pressure:RCA:J_heart_inlet","13679":"pressure:RCA:J_heart_inlet","13680":"pressure:RCA:J_heart_inlet","13681":"pressure:RCA:J_heart_inlet","13682":"pressure:RCA:J_heart_inlet","13683":"pressure:RCA:J_heart_inlet","13684":"pressure:RCA:J_heart_inlet","13685":"pressure:RCA:J_heart_inlet","13686":"pressure:RCA:J_heart_inlet","13687":"pressure:RCA:J_heart_inlet","13688":"pressure:RCA:J_heart_inlet","13689":"pressure:RCA:J_heart_inlet","13690":"pressure:RCA:J_heart_inlet","13691":"pressure:RCA:J_heart_inlet","13692":"pressure:RCA:J_heart_inlet","13693":"pressure:RCA:J_heart_inlet","13694":"pressure:RCA:J_heart_inlet","13695":"pressure:RCA:J_heart_inlet","13696":"pressure:RCA:J_heart_inlet","13697":"pressure:RCA:J_heart_inlet","13698":"pressure:RCA:J_heart_inlet","13699":"pressure:RCA:J_heart_inlet","13700":"pressure:RCA:J_heart_inlet","13701":"pressure:RCA:J_heart_inlet","13702":"pressure:RCA:J_heart_inlet","13703":"pressure:RCA:J_heart_inlet","13704":"pressure:RCA:J_heart_inlet","13705":"pressure:RCA:J_heart_inlet","13706":"pressure:RCA:J_heart_inlet","13707":"pressure:RCA:J_heart_inlet","13708":"pressure:RCA:J_heart_inlet","13709":"pressure:RCA:J_heart_inlet","13710":"pressure:RCA:J_heart_inlet","13711":"pressure:RCA:J_heart_inlet","13712":"pressure:RCA:J_heart_inlet","13713":"pressure:RCA:J_heart_inlet","13714":"pressure:RCA:J_heart_inlet","13715":"pressure:RCA:J_heart_inlet","13716":"pressure:RCA:J_heart_inlet","13717":"pressure:RCA:J_heart_inlet","13718":"pressure:RCA:J_heart_inlet","13719":"pressure:RCA:J_heart_inlet","13720":"pressure:RCA:J_heart_inlet","13721":"pressure:RCA:J_heart_inlet","13722":"pressure:RCA:J_heart_inlet","13723":"pressure:RCA:J_heart_inlet","13724":"pressure:RCA:J_heart_inlet","13725":"pressure:RCA:J_heart_inlet","13726":"pressure:RCA:J_heart_inlet","13727":"pressure:RCA:J_heart_inlet","13728":"pressure:RCA:J_heart_inlet","13729":"pressure:RCA:J_heart_inlet","13730":"pressure:RCA:J_heart_inlet","13731":"pressure:RCA:J_heart_inlet","13732":"pressure:RCA:J_heart_inlet","13733":"pressure:RCA:J_heart_inlet","13734":"pressure:RCA:J_heart_inlet","13735":"pressure:RCA:J_heart_inlet","13736":"pressure:RCA:J_heart_inlet","13737":"pressure:RCA:J_heart_inlet","13738":"pressure:RCA:J_heart_inlet","13739":"pressure:RCA:J_heart_inlet","13740":"pressure:RCA:J_heart_inlet","13741":"pressure:RCA:J_heart_inlet","13742":"pressure:RCA:J_heart_inlet","13743":"pressure:RCA:J_heart_inlet","13744":"pressure:RCA:J_heart_inlet","13745":"pressure:RCA:J_heart_inlet","13746":"pressure:RCA:J_heart_inlet","13747":"pressure:RCA:J_heart_inlet","13748":"pressure:RCA:J_heart_inlet","13749":"pressure:RCA:J_heart_inlet","13750":"pressure:RCA:J_heart_inlet","13751":"pressure:RCA:J_heart_inlet","13752":"pressure:RCA:J_heart_inlet","13753":"pressure:RCA:J_heart_inlet","13754":"pressure:RCA:J_heart_inlet","13755":"pressure:RCA:J_heart_inlet","13756":"pressure:RCA:J_heart_inlet","13757":"pressure:RCA:J_heart_inlet","13758":"pressure:RCA:J_heart_inlet","13759":"pressure:RCA:J_heart_inlet","13760":"pressure:RCA:J_heart_inlet","13761":"pressure:RCA:J_heart_inlet","13762":"pressure:RCA:J_heart_inlet","13763":"pressure:RCA:J_heart_inlet","13764":"pressure:RCA:J_heart_inlet","13765":"pressure:RCA:J_heart_inlet","13766":"pressure:RCA:J_heart_inlet","13767":"pressure:RCA:J_heart_inlet","13768":"pressure:RCA:J_heart_inlet","13769":"pressure:RCA:J_heart_inlet","13770":"pressure:RCA:J_heart_inlet","13771":"pressure:RCA:J_heart_inlet","13772":"pressure:RCA:J_heart_inlet","13773":"pressure:RCA:J_heart_inlet","13774":"pressure:RCA:J_heart_inlet","13775":"pressure:RCA:J_heart_inlet","13776":"pressure:RCA:J_heart_inlet","13777":"pressure:RCA:J_heart_inlet","13778":"pressure:RCA:J_heart_inlet","13779":"pressure:RCA:J_heart_inlet","13780":"pressure:RCA:J_heart_inlet","13781":"pressure:RCA:J_heart_inlet","13782":"pressure:RCA:J_heart_inlet","13783":"pressure:RCA:J_heart_inlet","13784":"pressure:RCA:J_heart_inlet","13785":"pressure:RCA:J_heart_inlet","13786":"pressure:RCA:J_heart_inlet","13787":"pressure:RCA:J_heart_inlet","13788":"pressure:RCA:J_heart_inlet","13789":"pressure:RCA:J_heart_inlet","13790":"pressure:RCA:J_heart_inlet","13791":"pressure:RCA:J_heart_inlet","13792":"pressure:RCA:J_heart_inlet","13793":"pressure:RCA:J_heart_inlet","13794":"pressure:RCA:J_heart_inlet","13795":"pressure:RCA:J_heart_inlet","13796":"pressure:RCA:J_heart_inlet","13797":"pressure:RCA:J_heart_inlet","13798":"pressure:RCA:J_heart_inlet","13799":"pressure:RCA:J_heart_inlet","13800":"pressure:RCA:J_heart_inlet","13801":"pressure:RCA:J_heart_inlet","13802":"pressure:RCA:J_heart_inlet","13803":"pressure:RCA:J_heart_inlet","13804":"pressure:RCA:J_heart_inlet","13805":"pressure:RCA:J_heart_inlet","13806":"pressure:RCA:J_heart_inlet","13807":"pressure:RCA:J_heart_inlet","13808":"pressure:RCA:J_heart_inlet","13809":"pressure:RCA:J_heart_inlet","13810":"pressure:RCA:J_heart_inlet","13811":"pressure:RCA:J_heart_inlet","13812":"pressure:RCA:J_heart_inlet","13813":"pressure:RCA:J_heart_inlet","13814":"pressure:RCA:J_heart_inlet","13815":"pressure:RCA:J_heart_inlet","13816":"pressure:RCA:J_heart_inlet","13817":"pressure:RCA:J_heart_inlet","13818":"pressure:RCA:J_heart_inlet","13819":"pressure:RCA:J_heart_inlet","13820":"pressure:RCA:J_heart_inlet","13821":"pressure:RCA:J_heart_inlet","13822":"pressure:RCA:J_heart_inlet","13823":"pressure:RCA:J_heart_inlet","13824":"pressure:RCA:J_heart_inlet","13825":"pressure:RCA:J_heart_inlet","13826":"pressure:RCA:J_heart_inlet","13827":"pressure:RCA:J_heart_inlet","13828":"pressure:RCA:J_heart_inlet","13829":"pressure:RCA:J_heart_inlet","13830":"pressure:RCA:J_heart_inlet","13831":"pressure:RCA:J_heart_inlet","13832":"pressure:RCA:J_heart_inlet","13833":"pressure:RCA:J_heart_inlet","13834":"pressure:RCA:J_heart_inlet","13835":"pressure:RCA:J_heart_inlet","13836":"pressure:RCA:J_heart_inlet","13837":"pressure:RCA:J_heart_inlet","13838":"pressure:RCA:J_heart_inlet","13839":"pressure:RCA:J_heart_inlet","13840":"pressure:RCA:J_heart_inlet","13841":"pressure:RCA:J_heart_inlet","13842":"pressure:RCA:J_heart_inlet","13843":"pressure:RCA:J_heart_inlet","13844":"pressure:RCA:J_heart_inlet","13845":"pressure:RCA:J_heart_inlet","13846":"pressure:RCA:J_heart_inlet","13847":"pressure:RCA:J_heart_inlet","13848":"pressure:RCA:J_heart_inlet","13849":"pressure:RCA:J_heart_inlet","13850":"pressure:RCA:J_heart_inlet","13851":"pressure:RCA:J_heart_inlet","13852":"pressure:RCA:J_heart_inlet","13853":"pressure:RCA:J_heart_inlet","13854":"pressure:RCA:J_heart_inlet","13855":"pressure:RCA:J_heart_inlet","13856":"pressure:RCA:J_heart_inlet","13857":"pressure:RCA:J_heart_inlet","13858":"pressure:RCA:J_heart_inlet","13859":"pressure:RCA:J_heart_inlet","13860":"pressure:RCA:J_heart_inlet","13861":"pressure:RCA:J_heart_inlet","13862":"pressure:RCA:J_heart_inlet","13863":"pressure:RCA:J_heart_inlet","13864":"pressure:RCA:J_heart_inlet","13865":"pressure:RCA:J_heart_inlet","13866":"pressure:RCA:J_heart_inlet","13867":"pressure:RCA:J_heart_inlet","13868":"pressure:RCA:J_heart_inlet","13869":"pressure:RCA:J_heart_inlet","13870":"pressure:RCA:J_heart_inlet","13871":"pressure:RCA:J_heart_inlet","13872":"pressure:RCA:J_heart_inlet","13873":"pressure:RCA:J_heart_inlet","13874":"pressure:RCA:J_heart_inlet","13875":"pressure:RCA:J_heart_inlet","13876":"pressure:RCA:J_heart_inlet","13877":"pressure:RCA:J_heart_inlet","13878":"pressure:RCA:J_heart_inlet","13879":"pressure:RCA:J_heart_inlet","13880":"pressure:RCA:J_heart_inlet","13881":"pressure:RCA:J_heart_inlet","13882":"pressure:RCA:J_heart_inlet","13883":"pressure:RCA:J_heart_inlet","13884":"pressure:RCA:J_heart_inlet","13885":"pressure:RCA:J_heart_inlet","13886":"pressure:RCA:J_heart_inlet","13887":"pressure:RCA:J_heart_inlet","13888":"pressure:RCA:J_heart_inlet","13889":"pressure:RCA:J_heart_inlet","13890":"pressure:RCA:J_heart_inlet","13891":"pressure:RCA:J_heart_inlet","13892":"pressure:RCA:J_heart_inlet","13893":"pressure:RCA:J_heart_inlet","13894":"pressure:RCA:J_heart_inlet","13895":"pressure:RCA:J_heart_inlet","13896":"pressure:RCA:J_heart_inlet","13897":"pressure:RCA:J_heart_inlet","13898":"pressure:RCA:J_heart_inlet","13899":"pressure:RCA:J_heart_inlet","13900":"pressure:RCA:J_heart_inlet","13901":"pressure:RCA:J_heart_inlet","13902":"pressure:RCA:J_heart_inlet","13903":"pressure:RCA:J_heart_inlet","13904":"pressure:RCA:J_heart_inlet","13905":"pressure:RCA:J_heart_inlet","13906":"pressure:RCA:J_heart_inlet","13907":"pressure:RCA:J_heart_inlet","13908":"pressure:RCA:J_heart_inlet","13909":"pressure:RCA:J_heart_inlet","13910":"pressure:RCA:J_heart_inlet","13911":"pressure:RCA:J_heart_inlet","13912":"pressure:RCA:J_heart_inlet","13913":"pressure:RCA:J_heart_inlet","13914":"pressure:RCA:J_heart_inlet","13915":"pressure:RCA:J_heart_inlet","13916":"pressure:RCA:J_heart_inlet","13917":"pressure:RCA:J_heart_inlet","13918":"pressure:RCA:J_heart_inlet","13919":"pressure:RCA:J_heart_inlet","13920":"pressure:RCA:J_heart_inlet","13921":"pressure:RCA:J_heart_inlet","13922":"pressure:RCA:J_heart_inlet","13923":"pressure:RCA:J_heart_inlet","13924":"pressure:RCA:J_heart_inlet","13925":"pressure:RCA:J_heart_inlet","13926":"pressure:RCA:J_heart_inlet","13927":"pressure:RCA:J_heart_inlet","13928":"pressure:RCA:J_heart_inlet","13929":"pressure:RCA:J_heart_inlet","13930":"pressure:RCA:J_heart_inlet","13931":"pressure:RCA:J_heart_inlet","13932":"pressure:RCA:J_heart_inlet","13933":"pressure:RCA:J_heart_inlet","13934":"pressure:RCA:J_heart_inlet","13935":"pressure:RCA:J_heart_inlet","13936":"pressure:RCA:J_heart_inlet","13937":"pressure:RCA:J_heart_inlet","13938":"pressure:RCA:J_heart_inlet","13939":"pressure:RCA:J_heart_inlet","13940":"pressure:RCA:J_heart_inlet","13941":"pressure:RCA:J_heart_inlet","13942":"pressure:RCA:J_heart_inlet","13943":"pressure:RCA:J_heart_inlet","13944":"pressure:RCA:J_heart_inlet","13945":"pressure:RCA:J_heart_inlet","13946":"pressure:RCA:J_heart_inlet","13947":"pressure:RCA:J_heart_inlet","13948":"pressure:RCA:J_heart_inlet","13949":"pressure:RCA:J_heart_inlet","13950":"pressure:RCA:J_heart_inlet","13951":"pressure:RCA:J_heart_inlet","13952":"pressure:RCA:J_heart_inlet","13953":"pressure:RCA:J_heart_inlet","13954":"pressure:RCA:J_heart_inlet","13955":"pressure:RCA:J_heart_inlet","13956":"pressure:RCA:J_heart_inlet","13957":"pressure:RCA:J_heart_inlet","13958":"pressure:RCA:J_heart_inlet","13959":"pressure:RCA:J_heart_inlet","13960":"pressure:RCA:J_heart_inlet","13961":"pressure:RCA:J_heart_inlet","13962":"pressure:RCA:J_heart_inlet","13963":"pressure:RCA:J_heart_inlet","13964":"pressure:RCA:J_heart_inlet","13965":"pressure:RCA:J_heart_inlet","13966":"pressure:RCA:J_heart_inlet","13967":"pressure:RCA:J_heart_inlet","13968":"pressure:RCA:J_heart_inlet","13969":"pressure:RCA:J_heart_inlet","13970":"pressure:RCA:J_heart_inlet","13971":"pressure:RCA:J_heart_inlet","13972":"pressure:RCA:J_heart_inlet","13973":"pressure:RCA:J_heart_inlet","13974":"pressure:RCA:J_heart_inlet","13975":"pressure:RCA:J_heart_inlet","13976":"pressure:RCA:J_heart_inlet","13977":"pressure:RCA:J_heart_inlet","13978":"pressure:RCA:J_heart_inlet","13979":"pressure:RCA:J_heart_inlet","13980":"pressure:RCA:J_heart_inlet","13981":"pressure:RCA:J_heart_inlet","13982":"pressure:RCA:J_heart_inlet","13983":"pressure:RCA:J_heart_inlet","13984":"pressure:RCA:J_heart_inlet","13985":"pressure:RCA:J_heart_inlet","13986":"pressure:RCA:J_heart_inlet","13987":"pressure:RCA:J_heart_inlet","13988":"pressure:RCA:J_heart_inlet","13989":"pressure:RCA:J_heart_inlet","13990":"pressure:RCA:J_heart_inlet","13991":"pressure:RCA:J_heart_inlet","13992":"pressure:RCA:J_heart_inlet","13993":"pressure:RCA:J_heart_inlet","13994":"pressure:RCA:J_heart_inlet","13995":"pressure:RCA:J_heart_inlet","13996":"pressure:RCA:J_heart_inlet","13997":"pressure:RCA:J_heart_inlet","13998":"pressure:RCA:J_heart_inlet","13999":"pressure:RCA:J_heart_inlet","14000":"flow:RCR_aorta:J_heart_inlet","14001":"flow:RCR_aorta:J_heart_inlet","14002":"flow:RCR_aorta:J_heart_inlet","14003":"flow:RCR_aorta:J_heart_inlet","14004":"flow:RCR_aorta:J_heart_inlet","14005":"flow:RCR_aorta:J_heart_inlet","14006":"flow:RCR_aorta:J_heart_inlet","14007":"flow:RCR_aorta:J_heart_inlet","14008":"flow:RCR_aorta:J_heart_inlet","14009":"flow:RCR_aorta:J_heart_inlet","14010":"flow:RCR_aorta:J_heart_inlet","14011":"flow:RCR_aorta:J_heart_inlet","14012":"flow:RCR_aorta:J_heart_inlet","14013":"flow:RCR_aorta:J_heart_inlet","14014":"flow:RCR_aorta:J_heart_inlet","14015":"flow:RCR_aorta:J_heart_inlet","14016":"flow:RCR_aorta:J_heart_inlet","14017":"flow:RCR_aorta:J_heart_inlet","14018":"flow:RCR_aorta:J_heart_inlet","14019":"flow:RCR_aorta:J_heart_inlet","14020":"flow:RCR_aorta:J_heart_inlet","14021":"flow:RCR_aorta:J_heart_inlet","14022":"flow:RCR_aorta:J_heart_inlet","14023":"flow:RCR_aorta:J_heart_inlet","14024":"flow:RCR_aorta:J_heart_inlet","14025":"flow:RCR_aorta:J_heart_inlet","14026":"flow:RCR_aorta:J_heart_inlet","14027":"flow:RCR_aorta:J_heart_inlet","14028":"flow:RCR_aorta:J_heart_inlet","14029":"flow:RCR_aorta:J_heart_inlet","14030":"flow:RCR_aorta:J_heart_inlet","14031":"flow:RCR_aorta:J_heart_inlet","14032":"flow:RCR_aorta:J_heart_inlet","14033":"flow:RCR_aorta:J_heart_inlet","14034":"flow:RCR_aorta:J_heart_inlet","14035":"flow:RCR_aorta:J_heart_inlet","14036":"flow:RCR_aorta:J_heart_inlet","14037":"flow:RCR_aorta:J_heart_inlet","14038":"flow:RCR_aorta:J_heart_inlet","14039":"flow:RCR_aorta:J_heart_inlet","14040":"flow:RCR_aorta:J_heart_inlet","14041":"flow:RCR_aorta:J_heart_inlet","14042":"flow:RCR_aorta:J_heart_inlet","14043":"flow:RCR_aorta:J_heart_inlet","14044":"flow:RCR_aorta:J_heart_inlet","14045":"flow:RCR_aorta:J_heart_inlet","14046":"flow:RCR_aorta:J_heart_inlet","14047":"flow:RCR_aorta:J_heart_inlet","14048":"flow:RCR_aorta:J_heart_inlet","14049":"flow:RCR_aorta:J_heart_inlet","14050":"flow:RCR_aorta:J_heart_inlet","14051":"flow:RCR_aorta:J_heart_inlet","14052":"flow:RCR_aorta:J_heart_inlet","14053":"flow:RCR_aorta:J_heart_inlet","14054":"flow:RCR_aorta:J_heart_inlet","14055":"flow:RCR_aorta:J_heart_inlet","14056":"flow:RCR_aorta:J_heart_inlet","14057":"flow:RCR_aorta:J_heart_inlet","14058":"flow:RCR_aorta:J_heart_inlet","14059":"flow:RCR_aorta:J_heart_inlet","14060":"flow:RCR_aorta:J_heart_inlet","14061":"flow:RCR_aorta:J_heart_inlet","14062":"flow:RCR_aorta:J_heart_inlet","14063":"flow:RCR_aorta:J_heart_inlet","14064":"flow:RCR_aorta:J_heart_inlet","14065":"flow:RCR_aorta:J_heart_inlet","14066":"flow:RCR_aorta:J_heart_inlet","14067":"flow:RCR_aorta:J_heart_inlet","14068":"flow:RCR_aorta:J_heart_inlet","14069":"flow:RCR_aorta:J_heart_inlet","14070":"flow:RCR_aorta:J_heart_inlet","14071":"flow:RCR_aorta:J_heart_inlet","14072":"flow:RCR_aorta:J_heart_inlet","14073":"flow:RCR_aorta:J_heart_inlet","14074":"flow:RCR_aorta:J_heart_inlet","14075":"flow:RCR_aorta:J_heart_inlet","14076":"flow:RCR_aorta:J_heart_inlet","14077":"flow:RCR_aorta:J_heart_inlet","14078":"flow:RCR_aorta:J_heart_inlet","14079":"flow:RCR_aorta:J_heart_inlet","14080":"flow:RCR_aorta:J_heart_inlet","14081":"flow:RCR_aorta:J_heart_inlet","14082":"flow:RCR_aorta:J_heart_inlet","14083":"flow:RCR_aorta:J_heart_inlet","14084":"flow:RCR_aorta:J_heart_inlet","14085":"flow:RCR_aorta:J_heart_inlet","14086":"flow:RCR_aorta:J_heart_inlet","14087":"flow:RCR_aorta:J_heart_inlet","14088":"flow:RCR_aorta:J_heart_inlet","14089":"flow:RCR_aorta:J_heart_inlet","14090":"flow:RCR_aorta:J_heart_inlet","14091":"flow:RCR_aorta:J_heart_inlet","14092":"flow:RCR_aorta:J_heart_inlet","14093":"flow:RCR_aorta:J_heart_inlet","14094":"flow:RCR_aorta:J_heart_inlet","14095":"flow:RCR_aorta:J_heart_inlet","14096":"flow:RCR_aorta:J_heart_inlet","14097":"flow:RCR_aorta:J_heart_inlet","14098":"flow:RCR_aorta:J_heart_inlet","14099":"flow:RCR_aorta:J_heart_inlet","14100":"flow:RCR_aorta:J_heart_inlet","14101":"flow:RCR_aorta:J_heart_inlet","14102":"flow:RCR_aorta:J_heart_inlet","14103":"flow:RCR_aorta:J_heart_inlet","14104":"flow:RCR_aorta:J_heart_inlet","14105":"flow:RCR_aorta:J_heart_inlet","14106":"flow:RCR_aorta:J_heart_inlet","14107":"flow:RCR_aorta:J_heart_inlet","14108":"flow:RCR_aorta:J_heart_inlet","14109":"flow:RCR_aorta:J_heart_inlet","14110":"flow:RCR_aorta:J_heart_inlet","14111":"flow:RCR_aorta:J_heart_inlet","14112":"flow:RCR_aorta:J_heart_inlet","14113":"flow:RCR_aorta:J_heart_inlet","14114":"flow:RCR_aorta:J_heart_inlet","14115":"flow:RCR_aorta:J_heart_inlet","14116":"flow:RCR_aorta:J_heart_inlet","14117":"flow:RCR_aorta:J_heart_inlet","14118":"flow:RCR_aorta:J_heart_inlet","14119":"flow:RCR_aorta:J_heart_inlet","14120":"flow:RCR_aorta:J_heart_inlet","14121":"flow:RCR_aorta:J_heart_inlet","14122":"flow:RCR_aorta:J_heart_inlet","14123":"flow:RCR_aorta:J_heart_inlet","14124":"flow:RCR_aorta:J_heart_inlet","14125":"flow:RCR_aorta:J_heart_inlet","14126":"flow:RCR_aorta:J_heart_inlet","14127":"flow:RCR_aorta:J_heart_inlet","14128":"flow:RCR_aorta:J_heart_inlet","14129":"flow:RCR_aorta:J_heart_inlet","14130":"flow:RCR_aorta:J_heart_inlet","14131":"flow:RCR_aorta:J_heart_inlet","14132":"flow:RCR_aorta:J_heart_inlet","14133":"flow:RCR_aorta:J_heart_inlet","14134":"flow:RCR_aorta:J_heart_inlet","14135":"flow:RCR_aorta:J_heart_inlet","14136":"flow:RCR_aorta:J_heart_inlet","14137":"flow:RCR_aorta:J_heart_inlet","14138":"flow:RCR_aorta:J_heart_inlet","14139":"flow:RCR_aorta:J_heart_inlet","14140":"flow:RCR_aorta:J_heart_inlet","14141":"flow:RCR_aorta:J_heart_inlet","14142":"flow:RCR_aorta:J_heart_inlet","14143":"flow:RCR_aorta:J_heart_inlet","14144":"flow:RCR_aorta:J_heart_inlet","14145":"flow:RCR_aorta:J_heart_inlet","14146":"flow:RCR_aorta:J_heart_inlet","14147":"flow:RCR_aorta:J_heart_inlet","14148":"flow:RCR_aorta:J_heart_inlet","14149":"flow:RCR_aorta:J_heart_inlet","14150":"flow:RCR_aorta:J_heart_inlet","14151":"flow:RCR_aorta:J_heart_inlet","14152":"flow:RCR_aorta:J_heart_inlet","14153":"flow:RCR_aorta:J_heart_inlet","14154":"flow:RCR_aorta:J_heart_inlet","14155":"flow:RCR_aorta:J_heart_inlet","14156":"flow:RCR_aorta:J_heart_inlet","14157":"flow:RCR_aorta:J_heart_inlet","14158":"flow:RCR_aorta:J_heart_inlet","14159":"flow:RCR_aorta:J_heart_inlet","14160":"flow:RCR_aorta:J_heart_inlet","14161":"flow:RCR_aorta:J_heart_inlet","14162":"flow:RCR_aorta:J_heart_inlet","14163":"flow:RCR_aorta:J_heart_inlet","14164":"flow:RCR_aorta:J_heart_inlet","14165":"flow:RCR_aorta:J_heart_inlet","14166":"flow:RCR_aorta:J_heart_inlet","14167":"flow:RCR_aorta:J_heart_inlet","14168":"flow:RCR_aorta:J_heart_inlet","14169":"flow:RCR_aorta:J_heart_inlet","14170":"flow:RCR_aorta:J_heart_inlet","14171":"flow:RCR_aorta:J_heart_inlet","14172":"flow:RCR_aorta:J_heart_inlet","14173":"flow:RCR_aorta:J_heart_inlet","14174":"flow:RCR_aorta:J_heart_inlet","14175":"flow:RCR_aorta:J_heart_inlet","14176":"flow:RCR_aorta:J_heart_inlet","14177":"flow:RCR_aorta:J_heart_inlet","14178":"flow:RCR_aorta:J_heart_inlet","14179":"flow:RCR_aorta:J_heart_inlet","14180":"flow:RCR_aorta:J_heart_inlet","14181":"flow:RCR_aorta:J_heart_inlet","14182":"flow:RCR_aorta:J_heart_inlet","14183":"flow:RCR_aorta:J_heart_inlet","14184":"flow:RCR_aorta:J_heart_inlet","14185":"flow:RCR_aorta:J_heart_inlet","14186":"flow:RCR_aorta:J_heart_inlet","14187":"flow:RCR_aorta:J_heart_inlet","14188":"flow:RCR_aorta:J_heart_inlet","14189":"flow:RCR_aorta:J_heart_inlet","14190":"flow:RCR_aorta:J_heart_inlet","14191":"flow:RCR_aorta:J_heart_inlet","14192":"flow:RCR_aorta:J_heart_inlet","14193":"flow:RCR_aorta:J_heart_inlet","14194":"flow:RCR_aorta:J_heart_inlet","14195":"flow:RCR_aorta:J_heart_inlet","14196":"flow:RCR_aorta:J_heart_inlet","14197":"flow:RCR_aorta:J_heart_inlet","14198":"flow:RCR_aorta:J_heart_inlet","14199":"flow:RCR_aorta:J_heart_inlet","14200":"flow:RCR_aorta:J_heart_inlet","14201":"flow:RCR_aorta:J_heart_inlet","14202":"flow:RCR_aorta:J_heart_inlet","14203":"flow:RCR_aorta:J_heart_inlet","14204":"flow:RCR_aorta:J_heart_inlet","14205":"flow:RCR_aorta:J_heart_inlet","14206":"flow:RCR_aorta:J_heart_inlet","14207":"flow:RCR_aorta:J_heart_inlet","14208":"flow:RCR_aorta:J_heart_inlet","14209":"flow:RCR_aorta:J_heart_inlet","14210":"flow:RCR_aorta:J_heart_inlet","14211":"flow:RCR_aorta:J_heart_inlet","14212":"flow:RCR_aorta:J_heart_inlet","14213":"flow:RCR_aorta:J_heart_inlet","14214":"flow:RCR_aorta:J_heart_inlet","14215":"flow:RCR_aorta:J_heart_inlet","14216":"flow:RCR_aorta:J_heart_inlet","14217":"flow:RCR_aorta:J_heart_inlet","14218":"flow:RCR_aorta:J_heart_inlet","14219":"flow:RCR_aorta:J_heart_inlet","14220":"flow:RCR_aorta:J_heart_inlet","14221":"flow:RCR_aorta:J_heart_inlet","14222":"flow:RCR_aorta:J_heart_inlet","14223":"flow:RCR_aorta:J_heart_inlet","14224":"flow:RCR_aorta:J_heart_inlet","14225":"flow:RCR_aorta:J_heart_inlet","14226":"flow:RCR_aorta:J_heart_inlet","14227":"flow:RCR_aorta:J_heart_inlet","14228":"flow:RCR_aorta:J_heart_inlet","14229":"flow:RCR_aorta:J_heart_inlet","14230":"flow:RCR_aorta:J_heart_inlet","14231":"flow:RCR_aorta:J_heart_inlet","14232":"flow:RCR_aorta:J_heart_inlet","14233":"flow:RCR_aorta:J_heart_inlet","14234":"flow:RCR_aorta:J_heart_inlet","14235":"flow:RCR_aorta:J_heart_inlet","14236":"flow:RCR_aorta:J_heart_inlet","14237":"flow:RCR_aorta:J_heart_inlet","14238":"flow:RCR_aorta:J_heart_inlet","14239":"flow:RCR_aorta:J_heart_inlet","14240":"flow:RCR_aorta:J_heart_inlet","14241":"flow:RCR_aorta:J_heart_inlet","14242":"flow:RCR_aorta:J_heart_inlet","14243":"flow:RCR_aorta:J_heart_inlet","14244":"flow:RCR_aorta:J_heart_inlet","14245":"flow:RCR_aorta:J_heart_inlet","14246":"flow:RCR_aorta:J_heart_inlet","14247":"flow:RCR_aorta:J_heart_inlet","14248":"flow:RCR_aorta:J_heart_inlet","14249":"flow:RCR_aorta:J_heart_inlet","14250":"flow:RCR_aorta:J_heart_inlet","14251":"flow:RCR_aorta:J_heart_inlet","14252":"flow:RCR_aorta:J_heart_inlet","14253":"flow:RCR_aorta:J_heart_inlet","14254":"flow:RCR_aorta:J_heart_inlet","14255":"flow:RCR_aorta:J_heart_inlet","14256":"flow:RCR_aorta:J_heart_inlet","14257":"flow:RCR_aorta:J_heart_inlet","14258":"flow:RCR_aorta:J_heart_inlet","14259":"flow:RCR_aorta:J_heart_inlet","14260":"flow:RCR_aorta:J_heart_inlet","14261":"flow:RCR_aorta:J_heart_inlet","14262":"flow:RCR_aorta:J_heart_inlet","14263":"flow:RCR_aorta:J_heart_inlet","14264":"flow:RCR_aorta:J_heart_inlet","14265":"flow:RCR_aorta:J_heart_inlet","14266":"flow:RCR_aorta:J_heart_inlet","14267":"flow:RCR_aorta:J_heart_inlet","14268":"flow:RCR_aorta:J_heart_inlet","14269":"flow:RCR_aorta:J_heart_inlet","14270":"flow:RCR_aorta:J_heart_inlet","14271":"flow:RCR_aorta:J_heart_inlet","14272":"flow:RCR_aorta:J_heart_inlet","14273":"flow:RCR_aorta:J_heart_inlet","14274":"flow:RCR_aorta:J_heart_inlet","14275":"flow:RCR_aorta:J_heart_inlet","14276":"flow:RCR_aorta:J_heart_inlet","14277":"flow:RCR_aorta:J_heart_inlet","14278":"flow:RCR_aorta:J_heart_inlet","14279":"flow:RCR_aorta:J_heart_inlet","14280":"flow:RCR_aorta:J_heart_inlet","14281":"flow:RCR_aorta:J_heart_inlet","14282":"flow:RCR_aorta:J_heart_inlet","14283":"flow:RCR_aorta:J_heart_inlet","14284":"flow:RCR_aorta:J_heart_inlet","14285":"flow:RCR_aorta:J_heart_inlet","14286":"flow:RCR_aorta:J_heart_inlet","14287":"flow:RCR_aorta:J_heart_inlet","14288":"flow:RCR_aorta:J_heart_inlet","14289":"flow:RCR_aorta:J_heart_inlet","14290":"flow:RCR_aorta:J_heart_inlet","14291":"flow:RCR_aorta:J_heart_inlet","14292":"flow:RCR_aorta:J_heart_inlet","14293":"flow:RCR_aorta:J_heart_inlet","14294":"flow:RCR_aorta:J_heart_inlet","14295":"flow:RCR_aorta:J_heart_inlet","14296":"flow:RCR_aorta:J_heart_inlet","14297":"flow:RCR_aorta:J_heart_inlet","14298":"flow:RCR_aorta:J_heart_inlet","14299":"flow:RCR_aorta:J_heart_inlet","14300":"flow:RCR_aorta:J_heart_inlet","14301":"flow:RCR_aorta:J_heart_inlet","14302":"flow:RCR_aorta:J_heart_inlet","14303":"flow:RCR_aorta:J_heart_inlet","14304":"flow:RCR_aorta:J_heart_inlet","14305":"flow:RCR_aorta:J_heart_inlet","14306":"flow:RCR_aorta:J_heart_inlet","14307":"flow:RCR_aorta:J_heart_inlet","14308":"flow:RCR_aorta:J_heart_inlet","14309":"flow:RCR_aorta:J_heart_inlet","14310":"flow:RCR_aorta:J_heart_inlet","14311":"flow:RCR_aorta:J_heart_inlet","14312":"flow:RCR_aorta:J_heart_inlet","14313":"flow:RCR_aorta:J_heart_inlet","14314":"flow:RCR_aorta:J_heart_inlet","14315":"flow:RCR_aorta:J_heart_inlet","14316":"flow:RCR_aorta:J_heart_inlet","14317":"flow:RCR_aorta:J_heart_inlet","14318":"flow:RCR_aorta:J_heart_inlet","14319":"flow:RCR_aorta:J_heart_inlet","14320":"flow:RCR_aorta:J_heart_inlet","14321":"flow:RCR_aorta:J_heart_inlet","14322":"flow:RCR_aorta:J_heart_inlet","14323":"flow:RCR_aorta:J_heart_inlet","14324":"flow:RCR_aorta:J_heart_inlet","14325":"flow:RCR_aorta:J_heart_inlet","14326":"flow:RCR_aorta:J_heart_inlet","14327":"flow:RCR_aorta:J_heart_inlet","14328":"flow:RCR_aorta:J_heart_inlet","14329":"flow:RCR_aorta:J_heart_inlet","14330":"flow:RCR_aorta:J_heart_inlet","14331":"flow:RCR_aorta:J_heart_inlet","14332":"flow:RCR_aorta:J_heart_inlet","14333":"flow:RCR_aorta:J_heart_inlet","14334":"flow:RCR_aorta:J_heart_inlet","14335":"flow:RCR_aorta:J_heart_inlet","14336":"flow:RCR_aorta:J_heart_inlet","14337":"flow:RCR_aorta:J_heart_inlet","14338":"flow:RCR_aorta:J_heart_inlet","14339":"flow:RCR_aorta:J_heart_inlet","14340":"flow:RCR_aorta:J_heart_inlet","14341":"flow:RCR_aorta:J_heart_inlet","14342":"flow:RCR_aorta:J_heart_inlet","14343":"flow:RCR_aorta:J_heart_inlet","14344":"flow:RCR_aorta:J_heart_inlet","14345":"flow:RCR_aorta:J_heart_inlet","14346":"flow:RCR_aorta:J_heart_inlet","14347":"flow:RCR_aorta:J_heart_inlet","14348":"flow:RCR_aorta:J_heart_inlet","14349":"flow:RCR_aorta:J_heart_inlet","14350":"flow:RCR_aorta:J_heart_inlet","14351":"flow:RCR_aorta:J_heart_inlet","14352":"flow:RCR_aorta:J_heart_inlet","14353":"flow:RCR_aorta:J_heart_inlet","14354":"flow:RCR_aorta:J_heart_inlet","14355":"flow:RCR_aorta:J_heart_inlet","14356":"flow:RCR_aorta:J_heart_inlet","14357":"flow:RCR_aorta:J_heart_inlet","14358":"flow:RCR_aorta:J_heart_inlet","14359":"flow:RCR_aorta:J_heart_inlet","14360":"flow:RCR_aorta:J_heart_inlet","14361":"flow:RCR_aorta:J_heart_inlet","14362":"flow:RCR_aorta:J_heart_inlet","14363":"flow:RCR_aorta:J_heart_inlet","14364":"flow:RCR_aorta:J_heart_inlet","14365":"flow:RCR_aorta:J_heart_inlet","14366":"flow:RCR_aorta:J_heart_inlet","14367":"flow:RCR_aorta:J_heart_inlet","14368":"flow:RCR_aorta:J_heart_inlet","14369":"flow:RCR_aorta:J_heart_inlet","14370":"flow:RCR_aorta:J_heart_inlet","14371":"flow:RCR_aorta:J_heart_inlet","14372":"flow:RCR_aorta:J_heart_inlet","14373":"flow:RCR_aorta:J_heart_inlet","14374":"flow:RCR_aorta:J_heart_inlet","14375":"flow:RCR_aorta:J_heart_inlet","14376":"flow:RCR_aorta:J_heart_inlet","14377":"flow:RCR_aorta:J_heart_inlet","14378":"flow:RCR_aorta:J_heart_inlet","14379":"flow:RCR_aorta:J_heart_inlet","14380":"flow:RCR_aorta:J_heart_inlet","14381":"flow:RCR_aorta:J_heart_inlet","14382":"flow:RCR_aorta:J_heart_inlet","14383":"flow:RCR_aorta:J_heart_inlet","14384":"flow:RCR_aorta:J_heart_inlet","14385":"flow:RCR_aorta:J_heart_inlet","14386":"flow:RCR_aorta:J_heart_inlet","14387":"flow:RCR_aorta:J_heart_inlet","14388":"flow:RCR_aorta:J_heart_inlet","14389":"flow:RCR_aorta:J_heart_inlet","14390":"flow:RCR_aorta:J_heart_inlet","14391":"flow:RCR_aorta:J_heart_inlet","14392":"flow:RCR_aorta:J_heart_inlet","14393":"flow:RCR_aorta:J_heart_inlet","14394":"flow:RCR_aorta:J_heart_inlet","14395":"flow:RCR_aorta:J_heart_inlet","14396":"flow:RCR_aorta:J_heart_inlet","14397":"flow:RCR_aorta:J_heart_inlet","14398":"flow:RCR_aorta:J_heart_inlet","14399":"flow:RCR_aorta:J_heart_inlet","14400":"flow:RCR_aorta:J_heart_inlet","14401":"flow:RCR_aorta:J_heart_inlet","14402":"flow:RCR_aorta:J_heart_inlet","14403":"flow:RCR_aorta:J_heart_inlet","14404":"flow:RCR_aorta:J_heart_inlet","14405":"flow:RCR_aorta:J_heart_inlet","14406":"flow:RCR_aorta:J_heart_inlet","14407":"flow:RCR_aorta:J_heart_inlet","14408":"flow:RCR_aorta:J_heart_inlet","14409":"flow:RCR_aorta:J_heart_inlet","14410":"flow:RCR_aorta:J_heart_inlet","14411":"flow:RCR_aorta:J_heart_inlet","14412":"flow:RCR_aorta:J_heart_inlet","14413":"flow:RCR_aorta:J_heart_inlet","14414":"flow:RCR_aorta:J_heart_inlet","14415":"flow:RCR_aorta:J_heart_inlet","14416":"flow:RCR_aorta:J_heart_inlet","14417":"flow:RCR_aorta:J_heart_inlet","14418":"flow:RCR_aorta:J_heart_inlet","14419":"flow:RCR_aorta:J_heart_inlet","14420":"flow:RCR_aorta:J_heart_inlet","14421":"flow:RCR_aorta:J_heart_inlet","14422":"flow:RCR_aorta:J_heart_inlet","14423":"flow:RCR_aorta:J_heart_inlet","14424":"flow:RCR_aorta:J_heart_inlet","14425":"flow:RCR_aorta:J_heart_inlet","14426":"flow:RCR_aorta:J_heart_inlet","14427":"flow:RCR_aorta:J_heart_inlet","14428":"flow:RCR_aorta:J_heart_inlet","14429":"flow:RCR_aorta:J_heart_inlet","14430":"flow:RCR_aorta:J_heart_inlet","14431":"flow:RCR_aorta:J_heart_inlet","14432":"flow:RCR_aorta:J_heart_inlet","14433":"flow:RCR_aorta:J_heart_inlet","14434":"flow:RCR_aorta:J_heart_inlet","14435":"flow:RCR_aorta:J_heart_inlet","14436":"flow:RCR_aorta:J_heart_inlet","14437":"flow:RCR_aorta:J_heart_inlet","14438":"flow:RCR_aorta:J_heart_inlet","14439":"flow:RCR_aorta:J_heart_inlet","14440":"flow:RCR_aorta:J_heart_inlet","14441":"flow:RCR_aorta:J_heart_inlet","14442":"flow:RCR_aorta:J_heart_inlet","14443":"flow:RCR_aorta:J_heart_inlet","14444":"flow:RCR_aorta:J_heart_inlet","14445":"flow:RCR_aorta:J_heart_inlet","14446":"flow:RCR_aorta:J_heart_inlet","14447":"flow:RCR_aorta:J_heart_inlet","14448":"flow:RCR_aorta:J_heart_inlet","14449":"flow:RCR_aorta:J_heart_inlet","14450":"flow:RCR_aorta:J_heart_inlet","14451":"flow:RCR_aorta:J_heart_inlet","14452":"flow:RCR_aorta:J_heart_inlet","14453":"flow:RCR_aorta:J_heart_inlet","14454":"flow:RCR_aorta:J_heart_inlet","14455":"flow:RCR_aorta:J_heart_inlet","14456":"flow:RCR_aorta:J_heart_inlet","14457":"flow:RCR_aorta:J_heart_inlet","14458":"flow:RCR_aorta:J_heart_inlet","14459":"flow:RCR_aorta:J_heart_inlet","14460":"flow:RCR_aorta:J_heart_inlet","14461":"flow:RCR_aorta:J_heart_inlet","14462":"flow:RCR_aorta:J_heart_inlet","14463":"flow:RCR_aorta:J_heart_inlet","14464":"flow:RCR_aorta:J_heart_inlet","14465":"flow:RCR_aorta:J_heart_inlet","14466":"flow:RCR_aorta:J_heart_inlet","14467":"flow:RCR_aorta:J_heart_inlet","14468":"flow:RCR_aorta:J_heart_inlet","14469":"flow:RCR_aorta:J_heart_inlet","14470":"flow:RCR_aorta:J_heart_inlet","14471":"flow:RCR_aorta:J_heart_inlet","14472":"flow:RCR_aorta:J_heart_inlet","14473":"flow:RCR_aorta:J_heart_inlet","14474":"flow:RCR_aorta:J_heart_inlet","14475":"flow:RCR_aorta:J_heart_inlet","14476":"flow:RCR_aorta:J_heart_inlet","14477":"flow:RCR_aorta:J_heart_inlet","14478":"flow:RCR_aorta:J_heart_inlet","14479":"flow:RCR_aorta:J_heart_inlet","14480":"flow:RCR_aorta:J_heart_inlet","14481":"flow:RCR_aorta:J_heart_inlet","14482":"flow:RCR_aorta:J_heart_inlet","14483":"flow:RCR_aorta:J_heart_inlet","14484":"flow:RCR_aorta:J_heart_inlet","14485":"flow:RCR_aorta:J_heart_inlet","14486":"flow:RCR_aorta:J_heart_inlet","14487":"flow:RCR_aorta:J_heart_inlet","14488":"flow:RCR_aorta:J_heart_inlet","14489":"flow:RCR_aorta:J_heart_inlet","14490":"flow:RCR_aorta:J_heart_inlet","14491":"flow:RCR_aorta:J_heart_inlet","14492":"flow:RCR_aorta:J_heart_inlet","14493":"flow:RCR_aorta:J_heart_inlet","14494":"flow:RCR_aorta:J_heart_inlet","14495":"flow:RCR_aorta:J_heart_inlet","14496":"flow:RCR_aorta:J_heart_inlet","14497":"flow:RCR_aorta:J_heart_inlet","14498":"flow:RCR_aorta:J_heart_inlet","14499":"flow:RCR_aorta:J_heart_inlet","14500":"flow:RCR_aorta:J_heart_inlet","14501":"flow:RCR_aorta:J_heart_inlet","14502":"flow:RCR_aorta:J_heart_inlet","14503":"flow:RCR_aorta:J_heart_inlet","14504":"flow:RCR_aorta:J_heart_inlet","14505":"flow:RCR_aorta:J_heart_inlet","14506":"flow:RCR_aorta:J_heart_inlet","14507":"flow:RCR_aorta:J_heart_inlet","14508":"flow:RCR_aorta:J_heart_inlet","14509":"flow:RCR_aorta:J_heart_inlet","14510":"flow:RCR_aorta:J_heart_inlet","14511":"flow:RCR_aorta:J_heart_inlet","14512":"flow:RCR_aorta:J_heart_inlet","14513":"flow:RCR_aorta:J_heart_inlet","14514":"flow:RCR_aorta:J_heart_inlet","14515":"flow:RCR_aorta:J_heart_inlet","14516":"flow:RCR_aorta:J_heart_inlet","14517":"flow:RCR_aorta:J_heart_inlet","14518":"flow:RCR_aorta:J_heart_inlet","14519":"flow:RCR_aorta:J_heart_inlet","14520":"flow:RCR_aorta:J_heart_inlet","14521":"flow:RCR_aorta:J_heart_inlet","14522":"flow:RCR_aorta:J_heart_inlet","14523":"flow:RCR_aorta:J_heart_inlet","14524":"flow:RCR_aorta:J_heart_inlet","14525":"flow:RCR_aorta:J_heart_inlet","14526":"flow:RCR_aorta:J_heart_inlet","14527":"flow:RCR_aorta:J_heart_inlet","14528":"flow:RCR_aorta:J_heart_inlet","14529":"flow:RCR_aorta:J_heart_inlet","14530":"flow:RCR_aorta:J_heart_inlet","14531":"flow:RCR_aorta:J_heart_inlet","14532":"flow:RCR_aorta:J_heart_inlet","14533":"flow:RCR_aorta:J_heart_inlet","14534":"flow:RCR_aorta:J_heart_inlet","14535":"flow:RCR_aorta:J_heart_inlet","14536":"flow:RCR_aorta:J_heart_inlet","14537":"flow:RCR_aorta:J_heart_inlet","14538":"flow:RCR_aorta:J_heart_inlet","14539":"flow:RCR_aorta:J_heart_inlet","14540":"flow:RCR_aorta:J_heart_inlet","14541":"flow:RCR_aorta:J_heart_inlet","14542":"flow:RCR_aorta:J_heart_inlet","14543":"flow:RCR_aorta:J_heart_inlet","14544":"flow:RCR_aorta:J_heart_inlet","14545":"flow:RCR_aorta:J_heart_inlet","14546":"flow:RCR_aorta:J_heart_inlet","14547":"flow:RCR_aorta:J_heart_inlet","14548":"flow:RCR_aorta:J_heart_inlet","14549":"flow:RCR_aorta:J_heart_inlet","14550":"flow:RCR_aorta:J_heart_inlet","14551":"flow:RCR_aorta:J_heart_inlet","14552":"flow:RCR_aorta:J_heart_inlet","14553":"flow:RCR_aorta:J_heart_inlet","14554":"flow:RCR_aorta:J_heart_inlet","14555":"flow:RCR_aorta:J_heart_inlet","14556":"flow:RCR_aorta:J_heart_inlet","14557":"flow:RCR_aorta:J_heart_inlet","14558":"flow:RCR_aorta:J_heart_inlet","14559":"flow:RCR_aorta:J_heart_inlet","14560":"flow:RCR_aorta:J_heart_inlet","14561":"flow:RCR_aorta:J_heart_inlet","14562":"flow:RCR_aorta:J_heart_inlet","14563":"flow:RCR_aorta:J_heart_inlet","14564":"flow:RCR_aorta:J_heart_inlet","14565":"flow:RCR_aorta:J_heart_inlet","14566":"flow:RCR_aorta:J_heart_inlet","14567":"flow:RCR_aorta:J_heart_inlet","14568":"flow:RCR_aorta:J_heart_inlet","14569":"flow:RCR_aorta:J_heart_inlet","14570":"flow:RCR_aorta:J_heart_inlet","14571":"flow:RCR_aorta:J_heart_inlet","14572":"flow:RCR_aorta:J_heart_inlet","14573":"flow:RCR_aorta:J_heart_inlet","14574":"flow:RCR_aorta:J_heart_inlet","14575":"flow:RCR_aorta:J_heart_inlet","14576":"flow:RCR_aorta:J_heart_inlet","14577":"flow:RCR_aorta:J_heart_inlet","14578":"flow:RCR_aorta:J_heart_inlet","14579":"flow:RCR_aorta:J_heart_inlet","14580":"flow:RCR_aorta:J_heart_inlet","14581":"flow:RCR_aorta:J_heart_inlet","14582":"flow:RCR_aorta:J_heart_inlet","14583":"flow:RCR_aorta:J_heart_inlet","14584":"flow:RCR_aorta:J_heart_inlet","14585":"flow:RCR_aorta:J_heart_inlet","14586":"flow:RCR_aorta:J_heart_inlet","14587":"flow:RCR_aorta:J_heart_inlet","14588":"flow:RCR_aorta:J_heart_inlet","14589":"flow:RCR_aorta:J_heart_inlet","14590":"flow:RCR_aorta:J_heart_inlet","14591":"flow:RCR_aorta:J_heart_inlet","14592":"flow:RCR_aorta:J_heart_inlet","14593":"flow:RCR_aorta:J_heart_inlet","14594":"flow:RCR_aorta:J_heart_inlet","14595":"flow:RCR_aorta:J_heart_inlet","14596":"flow:RCR_aorta:J_heart_inlet","14597":"flow:RCR_aorta:J_heart_inlet","14598":"flow:RCR_aorta:J_heart_inlet","14599":"flow:RCR_aorta:J_heart_inlet","14600":"flow:RCR_aorta:J_heart_inlet","14601":"flow:RCR_aorta:J_heart_inlet","14602":"flow:RCR_aorta:J_heart_inlet","14603":"flow:RCR_aorta:J_heart_inlet","14604":"flow:RCR_aorta:J_heart_inlet","14605":"flow:RCR_aorta:J_heart_inlet","14606":"flow:RCR_aorta:J_heart_inlet","14607":"flow:RCR_aorta:J_heart_inlet","14608":"flow:RCR_aorta:J_heart_inlet","14609":"flow:RCR_aorta:J_heart_inlet","14610":"flow:RCR_aorta:J_heart_inlet","14611":"flow:RCR_aorta:J_heart_inlet","14612":"flow:RCR_aorta:J_heart_inlet","14613":"flow:RCR_aorta:J_heart_inlet","14614":"flow:RCR_aorta:J_heart_inlet","14615":"flow:RCR_aorta:J_heart_inlet","14616":"flow:RCR_aorta:J_heart_inlet","14617":"flow:RCR_aorta:J_heart_inlet","14618":"flow:RCR_aorta:J_heart_inlet","14619":"flow:RCR_aorta:J_heart_inlet","14620":"flow:RCR_aorta:J_heart_inlet","14621":"flow:RCR_aorta:J_heart_inlet","14622":"flow:RCR_aorta:J_heart_inlet","14623":"flow:RCR_aorta:J_heart_inlet","14624":"flow:RCR_aorta:J_heart_inlet","14625":"flow:RCR_aorta:J_heart_inlet","14626":"flow:RCR_aorta:J_heart_inlet","14627":"flow:RCR_aorta:J_heart_inlet","14628":"flow:RCR_aorta:J_heart_inlet","14629":"flow:RCR_aorta:J_heart_inlet","14630":"flow:RCR_aorta:J_heart_inlet","14631":"flow:RCR_aorta:J_heart_inlet","14632":"flow:RCR_aorta:J_heart_inlet","14633":"flow:RCR_aorta:J_heart_inlet","14634":"flow:RCR_aorta:J_heart_inlet","14635":"flow:RCR_aorta:J_heart_inlet","14636":"flow:RCR_aorta:J_heart_inlet","14637":"flow:RCR_aorta:J_heart_inlet","14638":"flow:RCR_aorta:J_heart_inlet","14639":"flow:RCR_aorta:J_heart_inlet","14640":"flow:RCR_aorta:J_heart_inlet","14641":"flow:RCR_aorta:J_heart_inlet","14642":"flow:RCR_aorta:J_heart_inlet","14643":"flow:RCR_aorta:J_heart_inlet","14644":"flow:RCR_aorta:J_heart_inlet","14645":"flow:RCR_aorta:J_heart_inlet","14646":"flow:RCR_aorta:J_heart_inlet","14647":"flow:RCR_aorta:J_heart_inlet","14648":"flow:RCR_aorta:J_heart_inlet","14649":"flow:RCR_aorta:J_heart_inlet","14650":"flow:RCR_aorta:J_heart_inlet","14651":"flow:RCR_aorta:J_heart_inlet","14652":"flow:RCR_aorta:J_heart_inlet","14653":"flow:RCR_aorta:J_heart_inlet","14654":"flow:RCR_aorta:J_heart_inlet","14655":"flow:RCR_aorta:J_heart_inlet","14656":"flow:RCR_aorta:J_heart_inlet","14657":"flow:RCR_aorta:J_heart_inlet","14658":"flow:RCR_aorta:J_heart_inlet","14659":"flow:RCR_aorta:J_heart_inlet","14660":"flow:RCR_aorta:J_heart_inlet","14661":"flow:RCR_aorta:J_heart_inlet","14662":"flow:RCR_aorta:J_heart_inlet","14663":"flow:RCR_aorta:J_heart_inlet","14664":"flow:RCR_aorta:J_heart_inlet","14665":"flow:RCR_aorta:J_heart_inlet","14666":"flow:RCR_aorta:J_heart_inlet","14667":"flow:RCR_aorta:J_heart_inlet","14668":"flow:RCR_aorta:J_heart_inlet","14669":"flow:RCR_aorta:J_heart_inlet","14670":"flow:RCR_aorta:J_heart_inlet","14671":"flow:RCR_aorta:J_heart_inlet","14672":"flow:RCR_aorta:J_heart_inlet","14673":"flow:RCR_aorta:J_heart_inlet","14674":"flow:RCR_aorta:J_heart_inlet","14675":"flow:RCR_aorta:J_heart_inlet","14676":"flow:RCR_aorta:J_heart_inlet","14677":"flow:RCR_aorta:J_heart_inlet","14678":"flow:RCR_aorta:J_heart_inlet","14679":"flow:RCR_aorta:J_heart_inlet","14680":"flow:RCR_aorta:J_heart_inlet","14681":"flow:RCR_aorta:J_heart_inlet","14682":"flow:RCR_aorta:J_heart_inlet","14683":"flow:RCR_aorta:J_heart_inlet","14684":"flow:RCR_aorta:J_heart_inlet","14685":"flow:RCR_aorta:J_heart_inlet","14686":"flow:RCR_aorta:J_heart_inlet","14687":"flow:RCR_aorta:J_heart_inlet","14688":"flow:RCR_aorta:J_heart_inlet","14689":"flow:RCR_aorta:J_heart_inlet","14690":"flow:RCR_aorta:J_heart_inlet","14691":"flow:RCR_aorta:J_heart_inlet","14692":"flow:RCR_aorta:J_heart_inlet","14693":"flow:RCR_aorta:J_heart_inlet","14694":"flow:RCR_aorta:J_heart_inlet","14695":"flow:RCR_aorta:J_heart_inlet","14696":"flow:RCR_aorta:J_heart_inlet","14697":"flow:RCR_aorta:J_heart_inlet","14698":"flow:RCR_aorta:J_heart_inlet","14699":"flow:RCR_aorta:J_heart_inlet","14700":"flow:RCR_aorta:J_heart_inlet","14701":"flow:RCR_aorta:J_heart_inlet","14702":"flow:RCR_aorta:J_heart_inlet","14703":"flow:RCR_aorta:J_heart_inlet","14704":"flow:RCR_aorta:J_heart_inlet","14705":"flow:RCR_aorta:J_heart_inlet","14706":"flow:RCR_aorta:J_heart_inlet","14707":"flow:RCR_aorta:J_heart_inlet","14708":"flow:RCR_aorta:J_heart_inlet","14709":"flow:RCR_aorta:J_heart_inlet","14710":"flow:RCR_aorta:J_heart_inlet","14711":"flow:RCR_aorta:J_heart_inlet","14712":"flow:RCR_aorta:J_heart_inlet","14713":"flow:RCR_aorta:J_heart_inlet","14714":"flow:RCR_aorta:J_heart_inlet","14715":"flow:RCR_aorta:J_heart_inlet","14716":"flow:RCR_aorta:J_heart_inlet","14717":"flow:RCR_aorta:J_heart_inlet","14718":"flow:RCR_aorta:J_heart_inlet","14719":"flow:RCR_aorta:J_heart_inlet","14720":"flow:RCR_aorta:J_heart_inlet","14721":"flow:RCR_aorta:J_heart_inlet","14722":"flow:RCR_aorta:J_heart_inlet","14723":"flow:RCR_aorta:J_heart_inlet","14724":"flow:RCR_aorta:J_heart_inlet","14725":"flow:RCR_aorta:J_heart_inlet","14726":"flow:RCR_aorta:J_heart_inlet","14727":"flow:RCR_aorta:J_heart_inlet","14728":"flow:RCR_aorta:J_heart_inlet","14729":"flow:RCR_aorta:J_heart_inlet","14730":"flow:RCR_aorta:J_heart_inlet","14731":"flow:RCR_aorta:J_heart_inlet","14732":"flow:RCR_aorta:J_heart_inlet","14733":"flow:RCR_aorta:J_heart_inlet","14734":"flow:RCR_aorta:J_heart_inlet","14735":"flow:RCR_aorta:J_heart_inlet","14736":"flow:RCR_aorta:J_heart_inlet","14737":"flow:RCR_aorta:J_heart_inlet","14738":"flow:RCR_aorta:J_heart_inlet","14739":"flow:RCR_aorta:J_heart_inlet","14740":"flow:RCR_aorta:J_heart_inlet","14741":"flow:RCR_aorta:J_heart_inlet","14742":"flow:RCR_aorta:J_heart_inlet","14743":"flow:RCR_aorta:J_heart_inlet","14744":"flow:RCR_aorta:J_heart_inlet","14745":"flow:RCR_aorta:J_heart_inlet","14746":"flow:RCR_aorta:J_heart_inlet","14747":"flow:RCR_aorta:J_heart_inlet","14748":"flow:RCR_aorta:J_heart_inlet","14749":"flow:RCR_aorta:J_heart_inlet","14750":"flow:RCR_aorta:J_heart_inlet","14751":"flow:RCR_aorta:J_heart_inlet","14752":"flow:RCR_aorta:J_heart_inlet","14753":"flow:RCR_aorta:J_heart_inlet","14754":"flow:RCR_aorta:J_heart_inlet","14755":"flow:RCR_aorta:J_heart_inlet","14756":"flow:RCR_aorta:J_heart_inlet","14757":"flow:RCR_aorta:J_heart_inlet","14758":"flow:RCR_aorta:J_heart_inlet","14759":"flow:RCR_aorta:J_heart_inlet","14760":"flow:RCR_aorta:J_heart_inlet","14761":"flow:RCR_aorta:J_heart_inlet","14762":"flow:RCR_aorta:J_heart_inlet","14763":"flow:RCR_aorta:J_heart_inlet","14764":"flow:RCR_aorta:J_heart_inlet","14765":"flow:RCR_aorta:J_heart_inlet","14766":"flow:RCR_aorta:J_heart_inlet","14767":"flow:RCR_aorta:J_heart_inlet","14768":"flow:RCR_aorta:J_heart_inlet","14769":"flow:RCR_aorta:J_heart_inlet","14770":"flow:RCR_aorta:J_heart_inlet","14771":"flow:RCR_aorta:J_heart_inlet","14772":"flow:RCR_aorta:J_heart_inlet","14773":"flow:RCR_aorta:J_heart_inlet","14774":"flow:RCR_aorta:J_heart_inlet","14775":"flow:RCR_aorta:J_heart_inlet","14776":"flow:RCR_aorta:J_heart_inlet","14777":"flow:RCR_aorta:J_heart_inlet","14778":"flow:RCR_aorta:J_heart_inlet","14779":"flow:RCR_aorta:J_heart_inlet","14780":"flow:RCR_aorta:J_heart_inlet","14781":"flow:RCR_aorta:J_heart_inlet","14782":"flow:RCR_aorta:J_heart_inlet","14783":"flow:RCR_aorta:J_heart_inlet","14784":"flow:RCR_aorta:J_heart_inlet","14785":"flow:RCR_aorta:J_heart_inlet","14786":"flow:RCR_aorta:J_heart_inlet","14787":"flow:RCR_aorta:J_heart_inlet","14788":"flow:RCR_aorta:J_heart_inlet","14789":"flow:RCR_aorta:J_heart_inlet","14790":"flow:RCR_aorta:J_heart_inlet","14791":"flow:RCR_aorta:J_heart_inlet","14792":"flow:RCR_aorta:J_heart_inlet","14793":"flow:RCR_aorta:J_heart_inlet","14794":"flow:RCR_aorta:J_heart_inlet","14795":"flow:RCR_aorta:J_heart_inlet","14796":"flow:RCR_aorta:J_heart_inlet","14797":"flow:RCR_aorta:J_heart_inlet","14798":"flow:RCR_aorta:J_heart_inlet","14799":"flow:RCR_aorta:J_heart_inlet","14800":"flow:RCR_aorta:J_heart_inlet","14801":"flow:RCR_aorta:J_heart_inlet","14802":"flow:RCR_aorta:J_heart_inlet","14803":"flow:RCR_aorta:J_heart_inlet","14804":"flow:RCR_aorta:J_heart_inlet","14805":"flow:RCR_aorta:J_heart_inlet","14806":"flow:RCR_aorta:J_heart_inlet","14807":"flow:RCR_aorta:J_heart_inlet","14808":"flow:RCR_aorta:J_heart_inlet","14809":"flow:RCR_aorta:J_heart_inlet","14810":"flow:RCR_aorta:J_heart_inlet","14811":"flow:RCR_aorta:J_heart_inlet","14812":"flow:RCR_aorta:J_heart_inlet","14813":"flow:RCR_aorta:J_heart_inlet","14814":"flow:RCR_aorta:J_heart_inlet","14815":"flow:RCR_aorta:J_heart_inlet","14816":"flow:RCR_aorta:J_heart_inlet","14817":"flow:RCR_aorta:J_heart_inlet","14818":"flow:RCR_aorta:J_heart_inlet","14819":"flow:RCR_aorta:J_heart_inlet","14820":"flow:RCR_aorta:J_heart_inlet","14821":"flow:RCR_aorta:J_heart_inlet","14822":"flow:RCR_aorta:J_heart_inlet","14823":"flow:RCR_aorta:J_heart_inlet","14824":"flow:RCR_aorta:J_heart_inlet","14825":"flow:RCR_aorta:J_heart_inlet","14826":"flow:RCR_aorta:J_heart_inlet","14827":"flow:RCR_aorta:J_heart_inlet","14828":"flow:RCR_aorta:J_heart_inlet","14829":"flow:RCR_aorta:J_heart_inlet","14830":"flow:RCR_aorta:J_heart_inlet","14831":"flow:RCR_aorta:J_heart_inlet","14832":"flow:RCR_aorta:J_heart_inlet","14833":"flow:RCR_aorta:J_heart_inlet","14834":"flow:RCR_aorta:J_heart_inlet","14835":"flow:RCR_aorta:J_heart_inlet","14836":"flow:RCR_aorta:J_heart_inlet","14837":"flow:RCR_aorta:J_heart_inlet","14838":"flow:RCR_aorta:J_heart_inlet","14839":"flow:RCR_aorta:J_heart_inlet","14840":"flow:RCR_aorta:J_heart_inlet","14841":"flow:RCR_aorta:J_heart_inlet","14842":"flow:RCR_aorta:J_heart_inlet","14843":"flow:RCR_aorta:J_heart_inlet","14844":"flow:RCR_aorta:J_heart_inlet","14845":"flow:RCR_aorta:J_heart_inlet","14846":"flow:RCR_aorta:J_heart_inlet","14847":"flow:RCR_aorta:J_heart_inlet","14848":"flow:RCR_aorta:J_heart_inlet","14849":"flow:RCR_aorta:J_heart_inlet","14850":"flow:RCR_aorta:J_heart_inlet","14851":"flow:RCR_aorta:J_heart_inlet","14852":"flow:RCR_aorta:J_heart_inlet","14853":"flow:RCR_aorta:J_heart_inlet","14854":"flow:RCR_aorta:J_heart_inlet","14855":"flow:RCR_aorta:J_heart_inlet","14856":"flow:RCR_aorta:J_heart_inlet","14857":"flow:RCR_aorta:J_heart_inlet","14858":"flow:RCR_aorta:J_heart_inlet","14859":"flow:RCR_aorta:J_heart_inlet","14860":"flow:RCR_aorta:J_heart_inlet","14861":"flow:RCR_aorta:J_heart_inlet","14862":"flow:RCR_aorta:J_heart_inlet","14863":"flow:RCR_aorta:J_heart_inlet","14864":"flow:RCR_aorta:J_heart_inlet","14865":"flow:RCR_aorta:J_heart_inlet","14866":"flow:RCR_aorta:J_heart_inlet","14867":"flow:RCR_aorta:J_heart_inlet","14868":"flow:RCR_aorta:J_heart_inlet","14869":"flow:RCR_aorta:J_heart_inlet","14870":"flow:RCR_aorta:J_heart_inlet","14871":"flow:RCR_aorta:J_heart_inlet","14872":"flow:RCR_aorta:J_heart_inlet","14873":"flow:RCR_aorta:J_heart_inlet","14874":"flow:RCR_aorta:J_heart_inlet","14875":"flow:RCR_aorta:J_heart_inlet","14876":"flow:RCR_aorta:J_heart_inlet","14877":"flow:RCR_aorta:J_heart_inlet","14878":"flow:RCR_aorta:J_heart_inlet","14879":"flow:RCR_aorta:J_heart_inlet","14880":"flow:RCR_aorta:J_heart_inlet","14881":"flow:RCR_aorta:J_heart_inlet","14882":"flow:RCR_aorta:J_heart_inlet","14883":"flow:RCR_aorta:J_heart_inlet","14884":"flow:RCR_aorta:J_heart_inlet","14885":"flow:RCR_aorta:J_heart_inlet","14886":"flow:RCR_aorta:J_heart_inlet","14887":"flow:RCR_aorta:J_heart_inlet","14888":"flow:RCR_aorta:J_heart_inlet","14889":"flow:RCR_aorta:J_heart_inlet","14890":"flow:RCR_aorta:J_heart_inlet","14891":"flow:RCR_aorta:J_heart_inlet","14892":"flow:RCR_aorta:J_heart_inlet","14893":"flow:RCR_aorta:J_heart_inlet","14894":"flow:RCR_aorta:J_heart_inlet","14895":"flow:RCR_aorta:J_heart_inlet","14896":"flow:RCR_aorta:J_heart_inlet","14897":"flow:RCR_aorta:J_heart_inlet","14898":"flow:RCR_aorta:J_heart_inlet","14899":"flow:RCR_aorta:J_heart_inlet","14900":"flow:RCR_aorta:J_heart_inlet","14901":"flow:RCR_aorta:J_heart_inlet","14902":"flow:RCR_aorta:J_heart_inlet","14903":"flow:RCR_aorta:J_heart_inlet","14904":"flow:RCR_aorta:J_heart_inlet","14905":"flow:RCR_aorta:J_heart_inlet","14906":"flow:RCR_aorta:J_heart_inlet","14907":"flow:RCR_aorta:J_heart_inlet","14908":"flow:RCR_aorta:J_heart_inlet","14909":"flow:RCR_aorta:J_heart_inlet","14910":"flow:RCR_aorta:J_heart_inlet","14911":"flow:RCR_aorta:J_heart_inlet","14912":"flow:RCR_aorta:J_heart_inlet","14913":"flow:RCR_aorta:J_heart_inlet","14914":"flow:RCR_aorta:J_heart_inlet","14915":"flow:RCR_aorta:J_heart_inlet","14916":"flow:RCR_aorta:J_heart_inlet","14917":"flow:RCR_aorta:J_heart_inlet","14918":"flow:RCR_aorta:J_heart_inlet","14919":"flow:RCR_aorta:J_heart_inlet","14920":"flow:RCR_aorta:J_heart_inlet","14921":"flow:RCR_aorta:J_heart_inlet","14922":"flow:RCR_aorta:J_heart_inlet","14923":"flow:RCR_aorta:J_heart_inlet","14924":"flow:RCR_aorta:J_heart_inlet","14925":"flow:RCR_aorta:J_heart_inlet","14926":"flow:RCR_aorta:J_heart_inlet","14927":"flow:RCR_aorta:J_heart_inlet","14928":"flow:RCR_aorta:J_heart_inlet","14929":"flow:RCR_aorta:J_heart_inlet","14930":"flow:RCR_aorta:J_heart_inlet","14931":"flow:RCR_aorta:J_heart_inlet","14932":"flow:RCR_aorta:J_heart_inlet","14933":"flow:RCR_aorta:J_heart_inlet","14934":"flow:RCR_aorta:J_heart_inlet","14935":"flow:RCR_aorta:J_heart_inlet","14936":"flow:RCR_aorta:J_heart_inlet","14937":"flow:RCR_aorta:J_heart_inlet","14938":"flow:RCR_aorta:J_heart_inlet","14939":"flow:RCR_aorta:J_heart_inlet","14940":"flow:RCR_aorta:J_heart_inlet","14941":"flow:RCR_aorta:J_heart_inlet","14942":"flow:RCR_aorta:J_heart_inlet","14943":"flow:RCR_aorta:J_heart_inlet","14944":"flow:RCR_aorta:J_heart_inlet","14945":"flow:RCR_aorta:J_heart_inlet","14946":"flow:RCR_aorta:J_heart_inlet","14947":"flow:RCR_aorta:J_heart_inlet","14948":"flow:RCR_aorta:J_heart_inlet","14949":"flow:RCR_aorta:J_heart_inlet","14950":"flow:RCR_aorta:J_heart_inlet","14951":"flow:RCR_aorta:J_heart_inlet","14952":"flow:RCR_aorta:J_heart_inlet","14953":"flow:RCR_aorta:J_heart_inlet","14954":"flow:RCR_aorta:J_heart_inlet","14955":"flow:RCR_aorta:J_heart_inlet","14956":"flow:RCR_aorta:J_heart_inlet","14957":"flow:RCR_aorta:J_heart_inlet","14958":"flow:RCR_aorta:J_heart_inlet","14959":"flow:RCR_aorta:J_heart_inlet","14960":"flow:RCR_aorta:J_heart_inlet","14961":"flow:RCR_aorta:J_heart_inlet","14962":"flow:RCR_aorta:J_heart_inlet","14963":"flow:RCR_aorta:J_heart_inlet","14964":"flow:RCR_aorta:J_heart_inlet","14965":"flow:RCR_aorta:J_heart_inlet","14966":"flow:RCR_aorta:J_heart_inlet","14967":"flow:RCR_aorta:J_heart_inlet","14968":"flow:RCR_aorta:J_heart_inlet","14969":"flow:RCR_aorta:J_heart_inlet","14970":"flow:RCR_aorta:J_heart_inlet","14971":"flow:RCR_aorta:J_heart_inlet","14972":"flow:RCR_aorta:J_heart_inlet","14973":"flow:RCR_aorta:J_heart_inlet","14974":"flow:RCR_aorta:J_heart_inlet","14975":"flow:RCR_aorta:J_heart_inlet","14976":"flow:RCR_aorta:J_heart_inlet","14977":"flow:RCR_aorta:J_heart_inlet","14978":"flow:RCR_aorta:J_heart_inlet","14979":"flow:RCR_aorta:J_heart_inlet","14980":"flow:RCR_aorta:J_heart_inlet","14981":"flow:RCR_aorta:J_heart_inlet","14982":"flow:RCR_aorta:J_heart_inlet","14983":"flow:RCR_aorta:J_heart_inlet","14984":"flow:RCR_aorta:J_heart_inlet","14985":"flow:RCR_aorta:J_heart_inlet","14986":"flow:RCR_aorta:J_heart_inlet","14987":"flow:RCR_aorta:J_heart_inlet","14988":"flow:RCR_aorta:J_heart_inlet","14989":"flow:RCR_aorta:J_heart_inlet","14990":"flow:RCR_aorta:J_heart_inlet","14991":"flow:RCR_aorta:J_heart_inlet","14992":"flow:RCR_aorta:J_heart_inlet","14993":"flow:RCR_aorta:J_heart_inlet","14994":"flow:RCR_aorta:J_heart_inlet","14995":"flow:RCR_aorta:J_heart_inlet","14996":"flow:RCR_aorta:J_heart_inlet","14997":"flow:RCR_aorta:J_heart_inlet","14998":"flow:RCR_aorta:J_heart_inlet","14999":"flow:RCR_aorta:J_heart_inlet","15000":"pressure:RCR_aorta:J_heart_inlet","15001":"pressure:RCR_aorta:J_heart_inlet","15002":"pressure:RCR_aorta:J_heart_inlet","15003":"pressure:RCR_aorta:J_heart_inlet","15004":"pressure:RCR_aorta:J_heart_inlet","15005":"pressure:RCR_aorta:J_heart_inlet","15006":"pressure:RCR_aorta:J_heart_inlet","15007":"pressure:RCR_aorta:J_heart_inlet","15008":"pressure:RCR_aorta:J_heart_inlet","15009":"pressure:RCR_aorta:J_heart_inlet","15010":"pressure:RCR_aorta:J_heart_inlet","15011":"pressure:RCR_aorta:J_heart_inlet","15012":"pressure:RCR_aorta:J_heart_inlet","15013":"pressure:RCR_aorta:J_heart_inlet","15014":"pressure:RCR_aorta:J_heart_inlet","15015":"pressure:RCR_aorta:J_heart_inlet","15016":"pressure:RCR_aorta:J_heart_inlet","15017":"pressure:RCR_aorta:J_heart_inlet","15018":"pressure:RCR_aorta:J_heart_inlet","15019":"pressure:RCR_aorta:J_heart_inlet","15020":"pressure:RCR_aorta:J_heart_inlet","15021":"pressure:RCR_aorta:J_heart_inlet","15022":"pressure:RCR_aorta:J_heart_inlet","15023":"pressure:RCR_aorta:J_heart_inlet","15024":"pressure:RCR_aorta:J_heart_inlet","15025":"pressure:RCR_aorta:J_heart_inlet","15026":"pressure:RCR_aorta:J_heart_inlet","15027":"pressure:RCR_aorta:J_heart_inlet","15028":"pressure:RCR_aorta:J_heart_inlet","15029":"pressure:RCR_aorta:J_heart_inlet","15030":"pressure:RCR_aorta:J_heart_inlet","15031":"pressure:RCR_aorta:J_heart_inlet","15032":"pressure:RCR_aorta:J_heart_inlet","15033":"pressure:RCR_aorta:J_heart_inlet","15034":"pressure:RCR_aorta:J_heart_inlet","15035":"pressure:RCR_aorta:J_heart_inlet","15036":"pressure:RCR_aorta:J_heart_inlet","15037":"pressure:RCR_aorta:J_heart_inlet","15038":"pressure:RCR_aorta:J_heart_inlet","15039":"pressure:RCR_aorta:J_heart_inlet","15040":"pressure:RCR_aorta:J_heart_inlet","15041":"pressure:RCR_aorta:J_heart_inlet","15042":"pressure:RCR_aorta:J_heart_inlet","15043":"pressure:RCR_aorta:J_heart_inlet","15044":"pressure:RCR_aorta:J_heart_inlet","15045":"pressure:RCR_aorta:J_heart_inlet","15046":"pressure:RCR_aorta:J_heart_inlet","15047":"pressure:RCR_aorta:J_heart_inlet","15048":"pressure:RCR_aorta:J_heart_inlet","15049":"pressure:RCR_aorta:J_heart_inlet","15050":"pressure:RCR_aorta:J_heart_inlet","15051":"pressure:RCR_aorta:J_heart_inlet","15052":"pressure:RCR_aorta:J_heart_inlet","15053":"pressure:RCR_aorta:J_heart_inlet","15054":"pressure:RCR_aorta:J_heart_inlet","15055":"pressure:RCR_aorta:J_heart_inlet","15056":"pressure:RCR_aorta:J_heart_inlet","15057":"pressure:RCR_aorta:J_heart_inlet","15058":"pressure:RCR_aorta:J_heart_inlet","15059":"pressure:RCR_aorta:J_heart_inlet","15060":"pressure:RCR_aorta:J_heart_inlet","15061":"pressure:RCR_aorta:J_heart_inlet","15062":"pressure:RCR_aorta:J_heart_inlet","15063":"pressure:RCR_aorta:J_heart_inlet","15064":"pressure:RCR_aorta:J_heart_inlet","15065":"pressure:RCR_aorta:J_heart_inlet","15066":"pressure:RCR_aorta:J_heart_inlet","15067":"pressure:RCR_aorta:J_heart_inlet","15068":"pressure:RCR_aorta:J_heart_inlet","15069":"pressure:RCR_aorta:J_heart_inlet","15070":"pressure:RCR_aorta:J_heart_inlet","15071":"pressure:RCR_aorta:J_heart_inlet","15072":"pressure:RCR_aorta:J_heart_inlet","15073":"pressure:RCR_aorta:J_heart_inlet","15074":"pressure:RCR_aorta:J_heart_inlet","15075":"pressure:RCR_aorta:J_heart_inlet","15076":"pressure:RCR_aorta:J_heart_inlet","15077":"pressure:RCR_aorta:J_heart_inlet","15078":"pressure:RCR_aorta:J_heart_inlet","15079":"pressure:RCR_aorta:J_heart_inlet","15080":"pressure:RCR_aorta:J_heart_inlet","15081":"pressure:RCR_aorta:J_heart_inlet","15082":"pressure:RCR_aorta:J_heart_inlet","15083":"pressure:RCR_aorta:J_heart_inlet","15084":"pressure:RCR_aorta:J_heart_inlet","15085":"pressure:RCR_aorta:J_heart_inlet","15086":"pressure:RCR_aorta:J_heart_inlet","15087":"pressure:RCR_aorta:J_heart_inlet","15088":"pressure:RCR_aorta:J_heart_inlet","15089":"pressure:RCR_aorta:J_heart_inlet","15090":"pressure:RCR_aorta:J_heart_inlet","15091":"pressure:RCR_aorta:J_heart_inlet","15092":"pressure:RCR_aorta:J_heart_inlet","15093":"pressure:RCR_aorta:J_heart_inlet","15094":"pressure:RCR_aorta:J_heart_inlet","15095":"pressure:RCR_aorta:J_heart_inlet","15096":"pressure:RCR_aorta:J_heart_inlet","15097":"pressure:RCR_aorta:J_heart_inlet","15098":"pressure:RCR_aorta:J_heart_inlet","15099":"pressure:RCR_aorta:J_heart_inlet","15100":"pressure:RCR_aorta:J_heart_inlet","15101":"pressure:RCR_aorta:J_heart_inlet","15102":"pressure:RCR_aorta:J_heart_inlet","15103":"pressure:RCR_aorta:J_heart_inlet","15104":"pressure:RCR_aorta:J_heart_inlet","15105":"pressure:RCR_aorta:J_heart_inlet","15106":"pressure:RCR_aorta:J_heart_inlet","15107":"pressure:RCR_aorta:J_heart_inlet","15108":"pressure:RCR_aorta:J_heart_inlet","15109":"pressure:RCR_aorta:J_heart_inlet","15110":"pressure:RCR_aorta:J_heart_inlet","15111":"pressure:RCR_aorta:J_heart_inlet","15112":"pressure:RCR_aorta:J_heart_inlet","15113":"pressure:RCR_aorta:J_heart_inlet","15114":"pressure:RCR_aorta:J_heart_inlet","15115":"pressure:RCR_aorta:J_heart_inlet","15116":"pressure:RCR_aorta:J_heart_inlet","15117":"pressure:RCR_aorta:J_heart_inlet","15118":"pressure:RCR_aorta:J_heart_inlet","15119":"pressure:RCR_aorta:J_heart_inlet","15120":"pressure:RCR_aorta:J_heart_inlet","15121":"pressure:RCR_aorta:J_heart_inlet","15122":"pressure:RCR_aorta:J_heart_inlet","15123":"pressure:RCR_aorta:J_heart_inlet","15124":"pressure:RCR_aorta:J_heart_inlet","15125":"pressure:RCR_aorta:J_heart_inlet","15126":"pressure:RCR_aorta:J_heart_inlet","15127":"pressure:RCR_aorta:J_heart_inlet","15128":"pressure:RCR_aorta:J_heart_inlet","15129":"pressure:RCR_aorta:J_heart_inlet","15130":"pressure:RCR_aorta:J_heart_inlet","15131":"pressure:RCR_aorta:J_heart_inlet","15132":"pressure:RCR_aorta:J_heart_inlet","15133":"pressure:RCR_aorta:J_heart_inlet","15134":"pressure:RCR_aorta:J_heart_inlet","15135":"pressure:RCR_aorta:J_heart_inlet","15136":"pressure:RCR_aorta:J_heart_inlet","15137":"pressure:RCR_aorta:J_heart_inlet","15138":"pressure:RCR_aorta:J_heart_inlet","15139":"pressure:RCR_aorta:J_heart_inlet","15140":"pressure:RCR_aorta:J_heart_inlet","15141":"pressure:RCR_aorta:J_heart_inlet","15142":"pressure:RCR_aorta:J_heart_inlet","15143":"pressure:RCR_aorta:J_heart_inlet","15144":"pressure:RCR_aorta:J_heart_inlet","15145":"pressure:RCR_aorta:J_heart_inlet","15146":"pressure:RCR_aorta:J_heart_inlet","15147":"pressure:RCR_aorta:J_heart_inlet","15148":"pressure:RCR_aorta:J_heart_inlet","15149":"pressure:RCR_aorta:J_heart_inlet","15150":"pressure:RCR_aorta:J_heart_inlet","15151":"pressure:RCR_aorta:J_heart_inlet","15152":"pressure:RCR_aorta:J_heart_inlet","15153":"pressure:RCR_aorta:J_heart_inlet","15154":"pressure:RCR_aorta:J_heart_inlet","15155":"pressure:RCR_aorta:J_heart_inlet","15156":"pressure:RCR_aorta:J_heart_inlet","15157":"pressure:RCR_aorta:J_heart_inlet","15158":"pressure:RCR_aorta:J_heart_inlet","15159":"pressure:RCR_aorta:J_heart_inlet","15160":"pressure:RCR_aorta:J_heart_inlet","15161":"pressure:RCR_aorta:J_heart_inlet","15162":"pressure:RCR_aorta:J_heart_inlet","15163":"pressure:RCR_aorta:J_heart_inlet","15164":"pressure:RCR_aorta:J_heart_inlet","15165":"pressure:RCR_aorta:J_heart_inlet","15166":"pressure:RCR_aorta:J_heart_inlet","15167":"pressure:RCR_aorta:J_heart_inlet","15168":"pressure:RCR_aorta:J_heart_inlet","15169":"pressure:RCR_aorta:J_heart_inlet","15170":"pressure:RCR_aorta:J_heart_inlet","15171":"pressure:RCR_aorta:J_heart_inlet","15172":"pressure:RCR_aorta:J_heart_inlet","15173":"pressure:RCR_aorta:J_heart_inlet","15174":"pressure:RCR_aorta:J_heart_inlet","15175":"pressure:RCR_aorta:J_heart_inlet","15176":"pressure:RCR_aorta:J_heart_inlet","15177":"pressure:RCR_aorta:J_heart_inlet","15178":"pressure:RCR_aorta:J_heart_inlet","15179":"pressure:RCR_aorta:J_heart_inlet","15180":"pressure:RCR_aorta:J_heart_inlet","15181":"pressure:RCR_aorta:J_heart_inlet","15182":"pressure:RCR_aorta:J_heart_inlet","15183":"pressure:RCR_aorta:J_heart_inlet","15184":"pressure:RCR_aorta:J_heart_inlet","15185":"pressure:RCR_aorta:J_heart_inlet","15186":"pressure:RCR_aorta:J_heart_inlet","15187":"pressure:RCR_aorta:J_heart_inlet","15188":"pressure:RCR_aorta:J_heart_inlet","15189":"pressure:RCR_aorta:J_heart_inlet","15190":"pressure:RCR_aorta:J_heart_inlet","15191":"pressure:RCR_aorta:J_heart_inlet","15192":"pressure:RCR_aorta:J_heart_inlet","15193":"pressure:RCR_aorta:J_heart_inlet","15194":"pressure:RCR_aorta:J_heart_inlet","15195":"pressure:RCR_aorta:J_heart_inlet","15196":"pressure:RCR_aorta:J_heart_inlet","15197":"pressure:RCR_aorta:J_heart_inlet","15198":"pressure:RCR_aorta:J_heart_inlet","15199":"pressure:RCR_aorta:J_heart_inlet","15200":"pressure:RCR_aorta:J_heart_inlet","15201":"pressure:RCR_aorta:J_heart_inlet","15202":"pressure:RCR_aorta:J_heart_inlet","15203":"pressure:RCR_aorta:J_heart_inlet","15204":"pressure:RCR_aorta:J_heart_inlet","15205":"pressure:RCR_aorta:J_heart_inlet","15206":"pressure:RCR_aorta:J_heart_inlet","15207":"pressure:RCR_aorta:J_heart_inlet","15208":"pressure:RCR_aorta:J_heart_inlet","15209":"pressure:RCR_aorta:J_heart_inlet","15210":"pressure:RCR_aorta:J_heart_inlet","15211":"pressure:RCR_aorta:J_heart_inlet","15212":"pressure:RCR_aorta:J_heart_inlet","15213":"pressure:RCR_aorta:J_heart_inlet","15214":"pressure:RCR_aorta:J_heart_inlet","15215":"pressure:RCR_aorta:J_heart_inlet","15216":"pressure:RCR_aorta:J_heart_inlet","15217":"pressure:RCR_aorta:J_heart_inlet","15218":"pressure:RCR_aorta:J_heart_inlet","15219":"pressure:RCR_aorta:J_heart_inlet","15220":"pressure:RCR_aorta:J_heart_inlet","15221":"pressure:RCR_aorta:J_heart_inlet","15222":"pressure:RCR_aorta:J_heart_inlet","15223":"pressure:RCR_aorta:J_heart_inlet","15224":"pressure:RCR_aorta:J_heart_inlet","15225":"pressure:RCR_aorta:J_heart_inlet","15226":"pressure:RCR_aorta:J_heart_inlet","15227":"pressure:RCR_aorta:J_heart_inlet","15228":"pressure:RCR_aorta:J_heart_inlet","15229":"pressure:RCR_aorta:J_heart_inlet","15230":"pressure:RCR_aorta:J_heart_inlet","15231":"pressure:RCR_aorta:J_heart_inlet","15232":"pressure:RCR_aorta:J_heart_inlet","15233":"pressure:RCR_aorta:J_heart_inlet","15234":"pressure:RCR_aorta:J_heart_inlet","15235":"pressure:RCR_aorta:J_heart_inlet","15236":"pressure:RCR_aorta:J_heart_inlet","15237":"pressure:RCR_aorta:J_heart_inlet","15238":"pressure:RCR_aorta:J_heart_inlet","15239":"pressure:RCR_aorta:J_heart_inlet","15240":"pressure:RCR_aorta:J_heart_inlet","15241":"pressure:RCR_aorta:J_heart_inlet","15242":"pressure:RCR_aorta:J_heart_inlet","15243":"pressure:RCR_aorta:J_heart_inlet","15244":"pressure:RCR_aorta:J_heart_inlet","15245":"pressure:RCR_aorta:J_heart_inlet","15246":"pressure:RCR_aorta:J_heart_inlet","15247":"pressure:RCR_aorta:J_heart_inlet","15248":"pressure:RCR_aorta:J_heart_inlet","15249":"pressure:RCR_aorta:J_heart_inlet","15250":"pressure:RCR_aorta:J_heart_inlet","15251":"pressure:RCR_aorta:J_heart_inlet","15252":"pressure:RCR_aorta:J_heart_inlet","15253":"pressure:RCR_aorta:J_heart_inlet","15254":"pressure:RCR_aorta:J_heart_inlet","15255":"pressure:RCR_aorta:J_heart_inlet","15256":"pressure:RCR_aorta:J_heart_inlet","15257":"pressure:RCR_aorta:J_heart_inlet","15258":"pressure:RCR_aorta:J_heart_inlet","15259":"pressure:RCR_aorta:J_heart_inlet","15260":"pressure:RCR_aorta:J_heart_inlet","15261":"pressure:RCR_aorta:J_heart_inlet","15262":"pressure:RCR_aorta:J_heart_inlet","15263":"pressure:RCR_aorta:J_heart_inlet","15264":"pressure:RCR_aorta:J_heart_inlet","15265":"pressure:RCR_aorta:J_heart_inlet","15266":"pressure:RCR_aorta:J_heart_inlet","15267":"pressure:RCR_aorta:J_heart_inlet","15268":"pressure:RCR_aorta:J_heart_inlet","15269":"pressure:RCR_aorta:J_heart_inlet","15270":"pressure:RCR_aorta:J_heart_inlet","15271":"pressure:RCR_aorta:J_heart_inlet","15272":"pressure:RCR_aorta:J_heart_inlet","15273":"pressure:RCR_aorta:J_heart_inlet","15274":"pressure:RCR_aorta:J_heart_inlet","15275":"pressure:RCR_aorta:J_heart_inlet","15276":"pressure:RCR_aorta:J_heart_inlet","15277":"pressure:RCR_aorta:J_heart_inlet","15278":"pressure:RCR_aorta:J_heart_inlet","15279":"pressure:RCR_aorta:J_heart_inlet","15280":"pressure:RCR_aorta:J_heart_inlet","15281":"pressure:RCR_aorta:J_heart_inlet","15282":"pressure:RCR_aorta:J_heart_inlet","15283":"pressure:RCR_aorta:J_heart_inlet","15284":"pressure:RCR_aorta:J_heart_inlet","15285":"pressure:RCR_aorta:J_heart_inlet","15286":"pressure:RCR_aorta:J_heart_inlet","15287":"pressure:RCR_aorta:J_heart_inlet","15288":"pressure:RCR_aorta:J_heart_inlet","15289":"pressure:RCR_aorta:J_heart_inlet","15290":"pressure:RCR_aorta:J_heart_inlet","15291":"pressure:RCR_aorta:J_heart_inlet","15292":"pressure:RCR_aorta:J_heart_inlet","15293":"pressure:RCR_aorta:J_heart_inlet","15294":"pressure:RCR_aorta:J_heart_inlet","15295":"pressure:RCR_aorta:J_heart_inlet","15296":"pressure:RCR_aorta:J_heart_inlet","15297":"pressure:RCR_aorta:J_heart_inlet","15298":"pressure:RCR_aorta:J_heart_inlet","15299":"pressure:RCR_aorta:J_heart_inlet","15300":"pressure:RCR_aorta:J_heart_inlet","15301":"pressure:RCR_aorta:J_heart_inlet","15302":"pressure:RCR_aorta:J_heart_inlet","15303":"pressure:RCR_aorta:J_heart_inlet","15304":"pressure:RCR_aorta:J_heart_inlet","15305":"pressure:RCR_aorta:J_heart_inlet","15306":"pressure:RCR_aorta:J_heart_inlet","15307":"pressure:RCR_aorta:J_heart_inlet","15308":"pressure:RCR_aorta:J_heart_inlet","15309":"pressure:RCR_aorta:J_heart_inlet","15310":"pressure:RCR_aorta:J_heart_inlet","15311":"pressure:RCR_aorta:J_heart_inlet","15312":"pressure:RCR_aorta:J_heart_inlet","15313":"pressure:RCR_aorta:J_heart_inlet","15314":"pressure:RCR_aorta:J_heart_inlet","15315":"pressure:RCR_aorta:J_heart_inlet","15316":"pressure:RCR_aorta:J_heart_inlet","15317":"pressure:RCR_aorta:J_heart_inlet","15318":"pressure:RCR_aorta:J_heart_inlet","15319":"pressure:RCR_aorta:J_heart_inlet","15320":"pressure:RCR_aorta:J_heart_inlet","15321":"pressure:RCR_aorta:J_heart_inlet","15322":"pressure:RCR_aorta:J_heart_inlet","15323":"pressure:RCR_aorta:J_heart_inlet","15324":"pressure:RCR_aorta:J_heart_inlet","15325":"pressure:RCR_aorta:J_heart_inlet","15326":"pressure:RCR_aorta:J_heart_inlet","15327":"pressure:RCR_aorta:J_heart_inlet","15328":"pressure:RCR_aorta:J_heart_inlet","15329":"pressure:RCR_aorta:J_heart_inlet","15330":"pressure:RCR_aorta:J_heart_inlet","15331":"pressure:RCR_aorta:J_heart_inlet","15332":"pressure:RCR_aorta:J_heart_inlet","15333":"pressure:RCR_aorta:J_heart_inlet","15334":"pressure:RCR_aorta:J_heart_inlet","15335":"pressure:RCR_aorta:J_heart_inlet","15336":"pressure:RCR_aorta:J_heart_inlet","15337":"pressure:RCR_aorta:J_heart_inlet","15338":"pressure:RCR_aorta:J_heart_inlet","15339":"pressure:RCR_aorta:J_heart_inlet","15340":"pressure:RCR_aorta:J_heart_inlet","15341":"pressure:RCR_aorta:J_heart_inlet","15342":"pressure:RCR_aorta:J_heart_inlet","15343":"pressure:RCR_aorta:J_heart_inlet","15344":"pressure:RCR_aorta:J_heart_inlet","15345":"pressure:RCR_aorta:J_heart_inlet","15346":"pressure:RCR_aorta:J_heart_inlet","15347":"pressure:RCR_aorta:J_heart_inlet","15348":"pressure:RCR_aorta:J_heart_inlet","15349":"pressure:RCR_aorta:J_heart_inlet","15350":"pressure:RCR_aorta:J_heart_inlet","15351":"pressure:RCR_aorta:J_heart_inlet","15352":"pressure:RCR_aorta:J_heart_inlet","15353":"pressure:RCR_aorta:J_heart_inlet","15354":"pressure:RCR_aorta:J_heart_inlet","15355":"pressure:RCR_aorta:J_heart_inlet","15356":"pressure:RCR_aorta:J_heart_inlet","15357":"pressure:RCR_aorta:J_heart_inlet","15358":"pressure:RCR_aorta:J_heart_inlet","15359":"pressure:RCR_aorta:J_heart_inlet","15360":"pressure:RCR_aorta:J_heart_inlet","15361":"pressure:RCR_aorta:J_heart_inlet","15362":"pressure:RCR_aorta:J_heart_inlet","15363":"pressure:RCR_aorta:J_heart_inlet","15364":"pressure:RCR_aorta:J_heart_inlet","15365":"pressure:RCR_aorta:J_heart_inlet","15366":"pressure:RCR_aorta:J_heart_inlet","15367":"pressure:RCR_aorta:J_heart_inlet","15368":"pressure:RCR_aorta:J_heart_inlet","15369":"pressure:RCR_aorta:J_heart_inlet","15370":"pressure:RCR_aorta:J_heart_inlet","15371":"pressure:RCR_aorta:J_heart_inlet","15372":"pressure:RCR_aorta:J_heart_inlet","15373":"pressure:RCR_aorta:J_heart_inlet","15374":"pressure:RCR_aorta:J_heart_inlet","15375":"pressure:RCR_aorta:J_heart_inlet","15376":"pressure:RCR_aorta:J_heart_inlet","15377":"pressure:RCR_aorta:J_heart_inlet","15378":"pressure:RCR_aorta:J_heart_inlet","15379":"pressure:RCR_aorta:J_heart_inlet","15380":"pressure:RCR_aorta:J_heart_inlet","15381":"pressure:RCR_aorta:J_heart_inlet","15382":"pressure:RCR_aorta:J_heart_inlet","15383":"pressure:RCR_aorta:J_heart_inlet","15384":"pressure:RCR_aorta:J_heart_inlet","15385":"pressure:RCR_aorta:J_heart_inlet","15386":"pressure:RCR_aorta:J_heart_inlet","15387":"pressure:RCR_aorta:J_heart_inlet","15388":"pressure:RCR_aorta:J_heart_inlet","15389":"pressure:RCR_aorta:J_heart_inlet","15390":"pressure:RCR_aorta:J_heart_inlet","15391":"pressure:RCR_aorta:J_heart_inlet","15392":"pressure:RCR_aorta:J_heart_inlet","15393":"pressure:RCR_aorta:J_heart_inlet","15394":"pressure:RCR_aorta:J_heart_inlet","15395":"pressure:RCR_aorta:J_heart_inlet","15396":"pressure:RCR_aorta:J_heart_inlet","15397":"pressure:RCR_aorta:J_heart_inlet","15398":"pressure:RCR_aorta:J_heart_inlet","15399":"pressure:RCR_aorta:J_heart_inlet","15400":"pressure:RCR_aorta:J_heart_inlet","15401":"pressure:RCR_aorta:J_heart_inlet","15402":"pressure:RCR_aorta:J_heart_inlet","15403":"pressure:RCR_aorta:J_heart_inlet","15404":"pressure:RCR_aorta:J_heart_inlet","15405":"pressure:RCR_aorta:J_heart_inlet","15406":"pressure:RCR_aorta:J_heart_inlet","15407":"pressure:RCR_aorta:J_heart_inlet","15408":"pressure:RCR_aorta:J_heart_inlet","15409":"pressure:RCR_aorta:J_heart_inlet","15410":"pressure:RCR_aorta:J_heart_inlet","15411":"pressure:RCR_aorta:J_heart_inlet","15412":"pressure:RCR_aorta:J_heart_inlet","15413":"pressure:RCR_aorta:J_heart_inlet","15414":"pressure:RCR_aorta:J_heart_inlet","15415":"pressure:RCR_aorta:J_heart_inlet","15416":"pressure:RCR_aorta:J_heart_inlet","15417":"pressure:RCR_aorta:J_heart_inlet","15418":"pressure:RCR_aorta:J_heart_inlet","15419":"pressure:RCR_aorta:J_heart_inlet","15420":"pressure:RCR_aorta:J_heart_inlet","15421":"pressure:RCR_aorta:J_heart_inlet","15422":"pressure:RCR_aorta:J_heart_inlet","15423":"pressure:RCR_aorta:J_heart_inlet","15424":"pressure:RCR_aorta:J_heart_inlet","15425":"pressure:RCR_aorta:J_heart_inlet","15426":"pressure:RCR_aorta:J_heart_inlet","15427":"pressure:RCR_aorta:J_heart_inlet","15428":"pressure:RCR_aorta:J_heart_inlet","15429":"pressure:RCR_aorta:J_heart_inlet","15430":"pressure:RCR_aorta:J_heart_inlet","15431":"pressure:RCR_aorta:J_heart_inlet","15432":"pressure:RCR_aorta:J_heart_inlet","15433":"pressure:RCR_aorta:J_heart_inlet","15434":"pressure:RCR_aorta:J_heart_inlet","15435":"pressure:RCR_aorta:J_heart_inlet","15436":"pressure:RCR_aorta:J_heart_inlet","15437":"pressure:RCR_aorta:J_heart_inlet","15438":"pressure:RCR_aorta:J_heart_inlet","15439":"pressure:RCR_aorta:J_heart_inlet","15440":"pressure:RCR_aorta:J_heart_inlet","15441":"pressure:RCR_aorta:J_heart_inlet","15442":"pressure:RCR_aorta:J_heart_inlet","15443":"pressure:RCR_aorta:J_heart_inlet","15444":"pressure:RCR_aorta:J_heart_inlet","15445":"pressure:RCR_aorta:J_heart_inlet","15446":"pressure:RCR_aorta:J_heart_inlet","15447":"pressure:RCR_aorta:J_heart_inlet","15448":"pressure:RCR_aorta:J_heart_inlet","15449":"pressure:RCR_aorta:J_heart_inlet","15450":"pressure:RCR_aorta:J_heart_inlet","15451":"pressure:RCR_aorta:J_heart_inlet","15452":"pressure:RCR_aorta:J_heart_inlet","15453":"pressure:RCR_aorta:J_heart_inlet","15454":"pressure:RCR_aorta:J_heart_inlet","15455":"pressure:RCR_aorta:J_heart_inlet","15456":"pressure:RCR_aorta:J_heart_inlet","15457":"pressure:RCR_aorta:J_heart_inlet","15458":"pressure:RCR_aorta:J_heart_inlet","15459":"pressure:RCR_aorta:J_heart_inlet","15460":"pressure:RCR_aorta:J_heart_inlet","15461":"pressure:RCR_aorta:J_heart_inlet","15462":"pressure:RCR_aorta:J_heart_inlet","15463":"pressure:RCR_aorta:J_heart_inlet","15464":"pressure:RCR_aorta:J_heart_inlet","15465":"pressure:RCR_aorta:J_heart_inlet","15466":"pressure:RCR_aorta:J_heart_inlet","15467":"pressure:RCR_aorta:J_heart_inlet","15468":"pressure:RCR_aorta:J_heart_inlet","15469":"pressure:RCR_aorta:J_heart_inlet","15470":"pressure:RCR_aorta:J_heart_inlet","15471":"pressure:RCR_aorta:J_heart_inlet","15472":"pressure:RCR_aorta:J_heart_inlet","15473":"pressure:RCR_aorta:J_heart_inlet","15474":"pressure:RCR_aorta:J_heart_inlet","15475":"pressure:RCR_aorta:J_heart_inlet","15476":"pressure:RCR_aorta:J_heart_inlet","15477":"pressure:RCR_aorta:J_heart_inlet","15478":"pressure:RCR_aorta:J_heart_inlet","15479":"pressure:RCR_aorta:J_heart_inlet","15480":"pressure:RCR_aorta:J_heart_inlet","15481":"pressure:RCR_aorta:J_heart_inlet","15482":"pressure:RCR_aorta:J_heart_inlet","15483":"pressure:RCR_aorta:J_heart_inlet","15484":"pressure:RCR_aorta:J_heart_inlet","15485":"pressure:RCR_aorta:J_heart_inlet","15486":"pressure:RCR_aorta:J_heart_inlet","15487":"pressure:RCR_aorta:J_heart_inlet","15488":"pressure:RCR_aorta:J_heart_inlet","15489":"pressure:RCR_aorta:J_heart_inlet","15490":"pressure:RCR_aorta:J_heart_inlet","15491":"pressure:RCR_aorta:J_heart_inlet","15492":"pressure:RCR_aorta:J_heart_inlet","15493":"pressure:RCR_aorta:J_heart_inlet","15494":"pressure:RCR_aorta:J_heart_inlet","15495":"pressure:RCR_aorta:J_heart_inlet","15496":"pressure:RCR_aorta:J_heart_inlet","15497":"pressure:RCR_aorta:J_heart_inlet","15498":"pressure:RCR_aorta:J_heart_inlet","15499":"pressure:RCR_aorta:J_heart_inlet","15500":"pressure:RCR_aorta:J_heart_inlet","15501":"pressure:RCR_aorta:J_heart_inlet","15502":"pressure:RCR_aorta:J_heart_inlet","15503":"pressure:RCR_aorta:J_heart_inlet","15504":"pressure:RCR_aorta:J_heart_inlet","15505":"pressure:RCR_aorta:J_heart_inlet","15506":"pressure:RCR_aorta:J_heart_inlet","15507":"pressure:RCR_aorta:J_heart_inlet","15508":"pressure:RCR_aorta:J_heart_inlet","15509":"pressure:RCR_aorta:J_heart_inlet","15510":"pressure:RCR_aorta:J_heart_inlet","15511":"pressure:RCR_aorta:J_heart_inlet","15512":"pressure:RCR_aorta:J_heart_inlet","15513":"pressure:RCR_aorta:J_heart_inlet","15514":"pressure:RCR_aorta:J_heart_inlet","15515":"pressure:RCR_aorta:J_heart_inlet","15516":"pressure:RCR_aorta:J_heart_inlet","15517":"pressure:RCR_aorta:J_heart_inlet","15518":"pressure:RCR_aorta:J_heart_inlet","15519":"pressure:RCR_aorta:J_heart_inlet","15520":"pressure:RCR_aorta:J_heart_inlet","15521":"pressure:RCR_aorta:J_heart_inlet","15522":"pressure:RCR_aorta:J_heart_inlet","15523":"pressure:RCR_aorta:J_heart_inlet","15524":"pressure:RCR_aorta:J_heart_inlet","15525":"pressure:RCR_aorta:J_heart_inlet","15526":"pressure:RCR_aorta:J_heart_inlet","15527":"pressure:RCR_aorta:J_heart_inlet","15528":"pressure:RCR_aorta:J_heart_inlet","15529":"pressure:RCR_aorta:J_heart_inlet","15530":"pressure:RCR_aorta:J_heart_inlet","15531":"pressure:RCR_aorta:J_heart_inlet","15532":"pressure:RCR_aorta:J_heart_inlet","15533":"pressure:RCR_aorta:J_heart_inlet","15534":"pressure:RCR_aorta:J_heart_inlet","15535":"pressure:RCR_aorta:J_heart_inlet","15536":"pressure:RCR_aorta:J_heart_inlet","15537":"pressure:RCR_aorta:J_heart_inlet","15538":"pressure:RCR_aorta:J_heart_inlet","15539":"pressure:RCR_aorta:J_heart_inlet","15540":"pressure:RCR_aorta:J_heart_inlet","15541":"pressure:RCR_aorta:J_heart_inlet","15542":"pressure:RCR_aorta:J_heart_inlet","15543":"pressure:RCR_aorta:J_heart_inlet","15544":"pressure:RCR_aorta:J_heart_inlet","15545":"pressure:RCR_aorta:J_heart_inlet","15546":"pressure:RCR_aorta:J_heart_inlet","15547":"pressure:RCR_aorta:J_heart_inlet","15548":"pressure:RCR_aorta:J_heart_inlet","15549":"pressure:RCR_aorta:J_heart_inlet","15550":"pressure:RCR_aorta:J_heart_inlet","15551":"pressure:RCR_aorta:J_heart_inlet","15552":"pressure:RCR_aorta:J_heart_inlet","15553":"pressure:RCR_aorta:J_heart_inlet","15554":"pressure:RCR_aorta:J_heart_inlet","15555":"pressure:RCR_aorta:J_heart_inlet","15556":"pressure:RCR_aorta:J_heart_inlet","15557":"pressure:RCR_aorta:J_heart_inlet","15558":"pressure:RCR_aorta:J_heart_inlet","15559":"pressure:RCR_aorta:J_heart_inlet","15560":"pressure:RCR_aorta:J_heart_inlet","15561":"pressure:RCR_aorta:J_heart_inlet","15562":"pressure:RCR_aorta:J_heart_inlet","15563":"pressure:RCR_aorta:J_heart_inlet","15564":"pressure:RCR_aorta:J_heart_inlet","15565":"pressure:RCR_aorta:J_heart_inlet","15566":"pressure:RCR_aorta:J_heart_inlet","15567":"pressure:RCR_aorta:J_heart_inlet","15568":"pressure:RCR_aorta:J_heart_inlet","15569":"pressure:RCR_aorta:J_heart_inlet","15570":"pressure:RCR_aorta:J_heart_inlet","15571":"pressure:RCR_aorta:J_heart_inlet","15572":"pressure:RCR_aorta:J_heart_inlet","15573":"pressure:RCR_aorta:J_heart_inlet","15574":"pressure:RCR_aorta:J_heart_inlet","15575":"pressure:RCR_aorta:J_heart_inlet","15576":"pressure:RCR_aorta:J_heart_inlet","15577":"pressure:RCR_aorta:J_heart_inlet","15578":"pressure:RCR_aorta:J_heart_inlet","15579":"pressure:RCR_aorta:J_heart_inlet","15580":"pressure:RCR_aorta:J_heart_inlet","15581":"pressure:RCR_aorta:J_heart_inlet","15582":"pressure:RCR_aorta:J_heart_inlet","15583":"pressure:RCR_aorta:J_heart_inlet","15584":"pressure:RCR_aorta:J_heart_inlet","15585":"pressure:RCR_aorta:J_heart_inlet","15586":"pressure:RCR_aorta:J_heart_inlet","15587":"pressure:RCR_aorta:J_heart_inlet","15588":"pressure:RCR_aorta:J_heart_inlet","15589":"pressure:RCR_aorta:J_heart_inlet","15590":"pressure:RCR_aorta:J_heart_inlet","15591":"pressure:RCR_aorta:J_heart_inlet","15592":"pressure:RCR_aorta:J_heart_inlet","15593":"pressure:RCR_aorta:J_heart_inlet","15594":"pressure:RCR_aorta:J_heart_inlet","15595":"pressure:RCR_aorta:J_heart_inlet","15596":"pressure:RCR_aorta:J_heart_inlet","15597":"pressure:RCR_aorta:J_heart_inlet","15598":"pressure:RCR_aorta:J_heart_inlet","15599":"pressure:RCR_aorta:J_heart_inlet","15600":"pressure:RCR_aorta:J_heart_inlet","15601":"pressure:RCR_aorta:J_heart_inlet","15602":"pressure:RCR_aorta:J_heart_inlet","15603":"pressure:RCR_aorta:J_heart_inlet","15604":"pressure:RCR_aorta:J_heart_inlet","15605":"pressure:RCR_aorta:J_heart_inlet","15606":"pressure:RCR_aorta:J_heart_inlet","15607":"pressure:RCR_aorta:J_heart_inlet","15608":"pressure:RCR_aorta:J_heart_inlet","15609":"pressure:RCR_aorta:J_heart_inlet","15610":"pressure:RCR_aorta:J_heart_inlet","15611":"pressure:RCR_aorta:J_heart_inlet","15612":"pressure:RCR_aorta:J_heart_inlet","15613":"pressure:RCR_aorta:J_heart_inlet","15614":"pressure:RCR_aorta:J_heart_inlet","15615":"pressure:RCR_aorta:J_heart_inlet","15616":"pressure:RCR_aorta:J_heart_inlet","15617":"pressure:RCR_aorta:J_heart_inlet","15618":"pressure:RCR_aorta:J_heart_inlet","15619":"pressure:RCR_aorta:J_heart_inlet","15620":"pressure:RCR_aorta:J_heart_inlet","15621":"pressure:RCR_aorta:J_heart_inlet","15622":"pressure:RCR_aorta:J_heart_inlet","15623":"pressure:RCR_aorta:J_heart_inlet","15624":"pressure:RCR_aorta:J_heart_inlet","15625":"pressure:RCR_aorta:J_heart_inlet","15626":"pressure:RCR_aorta:J_heart_inlet","15627":"pressure:RCR_aorta:J_heart_inlet","15628":"pressure:RCR_aorta:J_heart_inlet","15629":"pressure:RCR_aorta:J_heart_inlet","15630":"pressure:RCR_aorta:J_heart_inlet","15631":"pressure:RCR_aorta:J_heart_inlet","15632":"pressure:RCR_aorta:J_heart_inlet","15633":"pressure:RCR_aorta:J_heart_inlet","15634":"pressure:RCR_aorta:J_heart_inlet","15635":"pressure:RCR_aorta:J_heart_inlet","15636":"pressure:RCR_aorta:J_heart_inlet","15637":"pressure:RCR_aorta:J_heart_inlet","15638":"pressure:RCR_aorta:J_heart_inlet","15639":"pressure:RCR_aorta:J_heart_inlet","15640":"pressure:RCR_aorta:J_heart_inlet","15641":"pressure:RCR_aorta:J_heart_inlet","15642":"pressure:RCR_aorta:J_heart_inlet","15643":"pressure:RCR_aorta:J_heart_inlet","15644":"pressure:RCR_aorta:J_heart_inlet","15645":"pressure:RCR_aorta:J_heart_inlet","15646":"pressure:RCR_aorta:J_heart_inlet","15647":"pressure:RCR_aorta:J_heart_inlet","15648":"pressure:RCR_aorta:J_heart_inlet","15649":"pressure:RCR_aorta:J_heart_inlet","15650":"pressure:RCR_aorta:J_heart_inlet","15651":"pressure:RCR_aorta:J_heart_inlet","15652":"pressure:RCR_aorta:J_heart_inlet","15653":"pressure:RCR_aorta:J_heart_inlet","15654":"pressure:RCR_aorta:J_heart_inlet","15655":"pressure:RCR_aorta:J_heart_inlet","15656":"pressure:RCR_aorta:J_heart_inlet","15657":"pressure:RCR_aorta:J_heart_inlet","15658":"pressure:RCR_aorta:J_heart_inlet","15659":"pressure:RCR_aorta:J_heart_inlet","15660":"pressure:RCR_aorta:J_heart_inlet","15661":"pressure:RCR_aorta:J_heart_inlet","15662":"pressure:RCR_aorta:J_heart_inlet","15663":"pressure:RCR_aorta:J_heart_inlet","15664":"pressure:RCR_aorta:J_heart_inlet","15665":"pressure:RCR_aorta:J_heart_inlet","15666":"pressure:RCR_aorta:J_heart_inlet","15667":"pressure:RCR_aorta:J_heart_inlet","15668":"pressure:RCR_aorta:J_heart_inlet","15669":"pressure:RCR_aorta:J_heart_inlet","15670":"pressure:RCR_aorta:J_heart_inlet","15671":"pressure:RCR_aorta:J_heart_inlet","15672":"pressure:RCR_aorta:J_heart_inlet","15673":"pressure:RCR_aorta:J_heart_inlet","15674":"pressure:RCR_aorta:J_heart_inlet","15675":"pressure:RCR_aorta:J_heart_inlet","15676":"pressure:RCR_aorta:J_heart_inlet","15677":"pressure:RCR_aorta:J_heart_inlet","15678":"pressure:RCR_aorta:J_heart_inlet","15679":"pressure:RCR_aorta:J_heart_inlet","15680":"pressure:RCR_aorta:J_heart_inlet","15681":"pressure:RCR_aorta:J_heart_inlet","15682":"pressure:RCR_aorta:J_heart_inlet","15683":"pressure:RCR_aorta:J_heart_inlet","15684":"pressure:RCR_aorta:J_heart_inlet","15685":"pressure:RCR_aorta:J_heart_inlet","15686":"pressure:RCR_aorta:J_heart_inlet","15687":"pressure:RCR_aorta:J_heart_inlet","15688":"pressure:RCR_aorta:J_heart_inlet","15689":"pressure:RCR_aorta:J_heart_inlet","15690":"pressure:RCR_aorta:J_heart_inlet","15691":"pressure:RCR_aorta:J_heart_inlet","15692":"pressure:RCR_aorta:J_heart_inlet","15693":"pressure:RCR_aorta:J_heart_inlet","15694":"pressure:RCR_aorta:J_heart_inlet","15695":"pressure:RCR_aorta:J_heart_inlet","15696":"pressure:RCR_aorta:J_heart_inlet","15697":"pressure:RCR_aorta:J_heart_inlet","15698":"pressure:RCR_aorta:J_heart_inlet","15699":"pressure:RCR_aorta:J_heart_inlet","15700":"pressure:RCR_aorta:J_heart_inlet","15701":"pressure:RCR_aorta:J_heart_inlet","15702":"pressure:RCR_aorta:J_heart_inlet","15703":"pressure:RCR_aorta:J_heart_inlet","15704":"pressure:RCR_aorta:J_heart_inlet","15705":"pressure:RCR_aorta:J_heart_inlet","15706":"pressure:RCR_aorta:J_heart_inlet","15707":"pressure:RCR_aorta:J_heart_inlet","15708":"pressure:RCR_aorta:J_heart_inlet","15709":"pressure:RCR_aorta:J_heart_inlet","15710":"pressure:RCR_aorta:J_heart_inlet","15711":"pressure:RCR_aorta:J_heart_inlet","15712":"pressure:RCR_aorta:J_heart_inlet","15713":"pressure:RCR_aorta:J_heart_inlet","15714":"pressure:RCR_aorta:J_heart_inlet","15715":"pressure:RCR_aorta:J_heart_inlet","15716":"pressure:RCR_aorta:J_heart_inlet","15717":"pressure:RCR_aorta:J_heart_inlet","15718":"pressure:RCR_aorta:J_heart_inlet","15719":"pressure:RCR_aorta:J_heart_inlet","15720":"pressure:RCR_aorta:J_heart_inlet","15721":"pressure:RCR_aorta:J_heart_inlet","15722":"pressure:RCR_aorta:J_heart_inlet","15723":"pressure:RCR_aorta:J_heart_inlet","15724":"pressure:RCR_aorta:J_heart_inlet","15725":"pressure:RCR_aorta:J_heart_inlet","15726":"pressure:RCR_aorta:J_heart_inlet","15727":"pressure:RCR_aorta:J_heart_inlet","15728":"pressure:RCR_aorta:J_heart_inlet","15729":"pressure:RCR_aorta:J_heart_inlet","15730":"pressure:RCR_aorta:J_heart_inlet","15731":"pressure:RCR_aorta:J_heart_inlet","15732":"pressure:RCR_aorta:J_heart_inlet","15733":"pressure:RCR_aorta:J_heart_inlet","15734":"pressure:RCR_aorta:J_heart_inlet","15735":"pressure:RCR_aorta:J_heart_inlet","15736":"pressure:RCR_aorta:J_heart_inlet","15737":"pressure:RCR_aorta:J_heart_inlet","15738":"pressure:RCR_aorta:J_heart_inlet","15739":"pressure:RCR_aorta:J_heart_inlet","15740":"pressure:RCR_aorta:J_heart_inlet","15741":"pressure:RCR_aorta:J_heart_inlet","15742":"pressure:RCR_aorta:J_heart_inlet","15743":"pressure:RCR_aorta:J_heart_inlet","15744":"pressure:RCR_aorta:J_heart_inlet","15745":"pressure:RCR_aorta:J_heart_inlet","15746":"pressure:RCR_aorta:J_heart_inlet","15747":"pressure:RCR_aorta:J_heart_inlet","15748":"pressure:RCR_aorta:J_heart_inlet","15749":"pressure:RCR_aorta:J_heart_inlet","15750":"pressure:RCR_aorta:J_heart_inlet","15751":"pressure:RCR_aorta:J_heart_inlet","15752":"pressure:RCR_aorta:J_heart_inlet","15753":"pressure:RCR_aorta:J_heart_inlet","15754":"pressure:RCR_aorta:J_heart_inlet","15755":"pressure:RCR_aorta:J_heart_inlet","15756":"pressure:RCR_aorta:J_heart_inlet","15757":"pressure:RCR_aorta:J_heart_inlet","15758":"pressure:RCR_aorta:J_heart_inlet","15759":"pressure:RCR_aorta:J_heart_inlet","15760":"pressure:RCR_aorta:J_heart_inlet","15761":"pressure:RCR_aorta:J_heart_inlet","15762":"pressure:RCR_aorta:J_heart_inlet","15763":"pressure:RCR_aorta:J_heart_inlet","15764":"pressure:RCR_aorta:J_heart_inlet","15765":"pressure:RCR_aorta:J_heart_inlet","15766":"pressure:RCR_aorta:J_heart_inlet","15767":"pressure:RCR_aorta:J_heart_inlet","15768":"pressure:RCR_aorta:J_heart_inlet","15769":"pressure:RCR_aorta:J_heart_inlet","15770":"pressure:RCR_aorta:J_heart_inlet","15771":"pressure:RCR_aorta:J_heart_inlet","15772":"pressure:RCR_aorta:J_heart_inlet","15773":"pressure:RCR_aorta:J_heart_inlet","15774":"pressure:RCR_aorta:J_heart_inlet","15775":"pressure:RCR_aorta:J_heart_inlet","15776":"pressure:RCR_aorta:J_heart_inlet","15777":"pressure:RCR_aorta:J_heart_inlet","15778":"pressure:RCR_aorta:J_heart_inlet","15779":"pressure:RCR_aorta:J_heart_inlet","15780":"pressure:RCR_aorta:J_heart_inlet","15781":"pressure:RCR_aorta:J_heart_inlet","15782":"pressure:RCR_aorta:J_heart_inlet","15783":"pressure:RCR_aorta:J_heart_inlet","15784":"pressure:RCR_aorta:J_heart_inlet","15785":"pressure:RCR_aorta:J_heart_inlet","15786":"pressure:RCR_aorta:J_heart_inlet","15787":"pressure:RCR_aorta:J_heart_inlet","15788":"pressure:RCR_aorta:J_heart_inlet","15789":"pressure:RCR_aorta:J_heart_inlet","15790":"pressure:RCR_aorta:J_heart_inlet","15791":"pressure:RCR_aorta:J_heart_inlet","15792":"pressure:RCR_aorta:J_heart_inlet","15793":"pressure:RCR_aorta:J_heart_inlet","15794":"pressure:RCR_aorta:J_heart_inlet","15795":"pressure:RCR_aorta:J_heart_inlet","15796":"pressure:RCR_aorta:J_heart_inlet","15797":"pressure:RCR_aorta:J_heart_inlet","15798":"pressure:RCR_aorta:J_heart_inlet","15799":"pressure:RCR_aorta:J_heart_inlet","15800":"pressure:RCR_aorta:J_heart_inlet","15801":"pressure:RCR_aorta:J_heart_inlet","15802":"pressure:RCR_aorta:J_heart_inlet","15803":"pressure:RCR_aorta:J_heart_inlet","15804":"pressure:RCR_aorta:J_heart_inlet","15805":"pressure:RCR_aorta:J_heart_inlet","15806":"pressure:RCR_aorta:J_heart_inlet","15807":"pressure:RCR_aorta:J_heart_inlet","15808":"pressure:RCR_aorta:J_heart_inlet","15809":"pressure:RCR_aorta:J_heart_inlet","15810":"pressure:RCR_aorta:J_heart_inlet","15811":"pressure:RCR_aorta:J_heart_inlet","15812":"pressure:RCR_aorta:J_heart_inlet","15813":"pressure:RCR_aorta:J_heart_inlet","15814":"pressure:RCR_aorta:J_heart_inlet","15815":"pressure:RCR_aorta:J_heart_inlet","15816":"pressure:RCR_aorta:J_heart_inlet","15817":"pressure:RCR_aorta:J_heart_inlet","15818":"pressure:RCR_aorta:J_heart_inlet","15819":"pressure:RCR_aorta:J_heart_inlet","15820":"pressure:RCR_aorta:J_heart_inlet","15821":"pressure:RCR_aorta:J_heart_inlet","15822":"pressure:RCR_aorta:J_heart_inlet","15823":"pressure:RCR_aorta:J_heart_inlet","15824":"pressure:RCR_aorta:J_heart_inlet","15825":"pressure:RCR_aorta:J_heart_inlet","15826":"pressure:RCR_aorta:J_heart_inlet","15827":"pressure:RCR_aorta:J_heart_inlet","15828":"pressure:RCR_aorta:J_heart_inlet","15829":"pressure:RCR_aorta:J_heart_inlet","15830":"pressure:RCR_aorta:J_heart_inlet","15831":"pressure:RCR_aorta:J_heart_inlet","15832":"pressure:RCR_aorta:J_heart_inlet","15833":"pressure:RCR_aorta:J_heart_inlet","15834":"pressure:RCR_aorta:J_heart_inlet","15835":"pressure:RCR_aorta:J_heart_inlet","15836":"pressure:RCR_aorta:J_heart_inlet","15837":"pressure:RCR_aorta:J_heart_inlet","15838":"pressure:RCR_aorta:J_heart_inlet","15839":"pressure:RCR_aorta:J_heart_inlet","15840":"pressure:RCR_aorta:J_heart_inlet","15841":"pressure:RCR_aorta:J_heart_inlet","15842":"pressure:RCR_aorta:J_heart_inlet","15843":"pressure:RCR_aorta:J_heart_inlet","15844":"pressure:RCR_aorta:J_heart_inlet","15845":"pressure:RCR_aorta:J_heart_inlet","15846":"pressure:RCR_aorta:J_heart_inlet","15847":"pressure:RCR_aorta:J_heart_inlet","15848":"pressure:RCR_aorta:J_heart_inlet","15849":"pressure:RCR_aorta:J_heart_inlet","15850":"pressure:RCR_aorta:J_heart_inlet","15851":"pressure:RCR_aorta:J_heart_inlet","15852":"pressure:RCR_aorta:J_heart_inlet","15853":"pressure:RCR_aorta:J_heart_inlet","15854":"pressure:RCR_aorta:J_heart_inlet","15855":"pressure:RCR_aorta:J_heart_inlet","15856":"pressure:RCR_aorta:J_heart_inlet","15857":"pressure:RCR_aorta:J_heart_inlet","15858":"pressure:RCR_aorta:J_heart_inlet","15859":"pressure:RCR_aorta:J_heart_inlet","15860":"pressure:RCR_aorta:J_heart_inlet","15861":"pressure:RCR_aorta:J_heart_inlet","15862":"pressure:RCR_aorta:J_heart_inlet","15863":"pressure:RCR_aorta:J_heart_inlet","15864":"pressure:RCR_aorta:J_heart_inlet","15865":"pressure:RCR_aorta:J_heart_inlet","15866":"pressure:RCR_aorta:J_heart_inlet","15867":"pressure:RCR_aorta:J_heart_inlet","15868":"pressure:RCR_aorta:J_heart_inlet","15869":"pressure:RCR_aorta:J_heart_inlet","15870":"pressure:RCR_aorta:J_heart_inlet","15871":"pressure:RCR_aorta:J_heart_inlet","15872":"pressure:RCR_aorta:J_heart_inlet","15873":"pressure:RCR_aorta:J_heart_inlet","15874":"pressure:RCR_aorta:J_heart_inlet","15875":"pressure:RCR_aorta:J_heart_inlet","15876":"pressure:RCR_aorta:J_heart_inlet","15877":"pressure:RCR_aorta:J_heart_inlet","15878":"pressure:RCR_aorta:J_heart_inlet","15879":"pressure:RCR_aorta:J_heart_inlet","15880":"pressure:RCR_aorta:J_heart_inlet","15881":"pressure:RCR_aorta:J_heart_inlet","15882":"pressure:RCR_aorta:J_heart_inlet","15883":"pressure:RCR_aorta:J_heart_inlet","15884":"pressure:RCR_aorta:J_heart_inlet","15885":"pressure:RCR_aorta:J_heart_inlet","15886":"pressure:RCR_aorta:J_heart_inlet","15887":"pressure:RCR_aorta:J_heart_inlet","15888":"pressure:RCR_aorta:J_heart_inlet","15889":"pressure:RCR_aorta:J_heart_inlet","15890":"pressure:RCR_aorta:J_heart_inlet","15891":"pressure:RCR_aorta:J_heart_inlet","15892":"pressure:RCR_aorta:J_heart_inlet","15893":"pressure:RCR_aorta:J_heart_inlet","15894":"pressure:RCR_aorta:J_heart_inlet","15895":"pressure:RCR_aorta:J_heart_inlet","15896":"pressure:RCR_aorta:J_heart_inlet","15897":"pressure:RCR_aorta:J_heart_inlet","15898":"pressure:RCR_aorta:J_heart_inlet","15899":"pressure:RCR_aorta:J_heart_inlet","15900":"pressure:RCR_aorta:J_heart_inlet","15901":"pressure:RCR_aorta:J_heart_inlet","15902":"pressure:RCR_aorta:J_heart_inlet","15903":"pressure:RCR_aorta:J_heart_inlet","15904":"pressure:RCR_aorta:J_heart_inlet","15905":"pressure:RCR_aorta:J_heart_inlet","15906":"pressure:RCR_aorta:J_heart_inlet","15907":"pressure:RCR_aorta:J_heart_inlet","15908":"pressure:RCR_aorta:J_heart_inlet","15909":"pressure:RCR_aorta:J_heart_inlet","15910":"pressure:RCR_aorta:J_heart_inlet","15911":"pressure:RCR_aorta:J_heart_inlet","15912":"pressure:RCR_aorta:J_heart_inlet","15913":"pressure:RCR_aorta:J_heart_inlet","15914":"pressure:RCR_aorta:J_heart_inlet","15915":"pressure:RCR_aorta:J_heart_inlet","15916":"pressure:RCR_aorta:J_heart_inlet","15917":"pressure:RCR_aorta:J_heart_inlet","15918":"pressure:RCR_aorta:J_heart_inlet","15919":"pressure:RCR_aorta:J_heart_inlet","15920":"pressure:RCR_aorta:J_heart_inlet","15921":"pressure:RCR_aorta:J_heart_inlet","15922":"pressure:RCR_aorta:J_heart_inlet","15923":"pressure:RCR_aorta:J_heart_inlet","15924":"pressure:RCR_aorta:J_heart_inlet","15925":"pressure:RCR_aorta:J_heart_inlet","15926":"pressure:RCR_aorta:J_heart_inlet","15927":"pressure:RCR_aorta:J_heart_inlet","15928":"pressure:RCR_aorta:J_heart_inlet","15929":"pressure:RCR_aorta:J_heart_inlet","15930":"pressure:RCR_aorta:J_heart_inlet","15931":"pressure:RCR_aorta:J_heart_inlet","15932":"pressure:RCR_aorta:J_heart_inlet","15933":"pressure:RCR_aorta:J_heart_inlet","15934":"pressure:RCR_aorta:J_heart_inlet","15935":"pressure:RCR_aorta:J_heart_inlet","15936":"pressure:RCR_aorta:J_heart_inlet","15937":"pressure:RCR_aorta:J_heart_inlet","15938":"pressure:RCR_aorta:J_heart_inlet","15939":"pressure:RCR_aorta:J_heart_inlet","15940":"pressure:RCR_aorta:J_heart_inlet","15941":"pressure:RCR_aorta:J_heart_inlet","15942":"pressure:RCR_aorta:J_heart_inlet","15943":"pressure:RCR_aorta:J_heart_inlet","15944":"pressure:RCR_aorta:J_heart_inlet","15945":"pressure:RCR_aorta:J_heart_inlet","15946":"pressure:RCR_aorta:J_heart_inlet","15947":"pressure:RCR_aorta:J_heart_inlet","15948":"pressure:RCR_aorta:J_heart_inlet","15949":"pressure:RCR_aorta:J_heart_inlet","15950":"pressure:RCR_aorta:J_heart_inlet","15951":"pressure:RCR_aorta:J_heart_inlet","15952":"pressure:RCR_aorta:J_heart_inlet","15953":"pressure:RCR_aorta:J_heart_inlet","15954":"pressure:RCR_aorta:J_heart_inlet","15955":"pressure:RCR_aorta:J_heart_inlet","15956":"pressure:RCR_aorta:J_heart_inlet","15957":"pressure:RCR_aorta:J_heart_inlet","15958":"pressure:RCR_aorta:J_heart_inlet","15959":"pressure:RCR_aorta:J_heart_inlet","15960":"pressure:RCR_aorta:J_heart_inlet","15961":"pressure:RCR_aorta:J_heart_inlet","15962":"pressure:RCR_aorta:J_heart_inlet","15963":"pressure:RCR_aorta:J_heart_inlet","15964":"pressure:RCR_aorta:J_heart_inlet","15965":"pressure:RCR_aorta:J_heart_inlet","15966":"pressure:RCR_aorta:J_heart_inlet","15967":"pressure:RCR_aorta:J_heart_inlet","15968":"pressure:RCR_aorta:J_heart_inlet","15969":"pressure:RCR_aorta:J_heart_inlet","15970":"pressure:RCR_aorta:J_heart_inlet","15971":"pressure:RCR_aorta:J_heart_inlet","15972":"pressure:RCR_aorta:J_heart_inlet","15973":"pressure:RCR_aorta:J_heart_inlet","15974":"pressure:RCR_aorta:J_heart_inlet","15975":"pressure:RCR_aorta:J_heart_inlet","15976":"pressure:RCR_aorta:J_heart_inlet","15977":"pressure:RCR_aorta:J_heart_inlet","15978":"pressure:RCR_aorta:J_heart_inlet","15979":"pressure:RCR_aorta:J_heart_inlet","15980":"pressure:RCR_aorta:J_heart_inlet","15981":"pressure:RCR_aorta:J_heart_inlet","15982":"pressure:RCR_aorta:J_heart_inlet","15983":"pressure:RCR_aorta:J_heart_inlet","15984":"pressure:RCR_aorta:J_heart_inlet","15985":"pressure:RCR_aorta:J_heart_inlet","15986":"pressure:RCR_aorta:J_heart_inlet","15987":"pressure:RCR_aorta:J_heart_inlet","15988":"pressure:RCR_aorta:J_heart_inlet","15989":"pressure:RCR_aorta:J_heart_inlet","15990":"pressure:RCR_aorta:J_heart_inlet","15991":"pressure:RCR_aorta:J_heart_inlet","15992":"pressure:RCR_aorta:J_heart_inlet","15993":"pressure:RCR_aorta:J_heart_inlet","15994":"pressure:RCR_aorta:J_heart_inlet","15995":"pressure:RCR_aorta:J_heart_inlet","15996":"pressure:RCR_aorta:J_heart_inlet","15997":"pressure:RCR_aorta:J_heart_inlet","15998":"pressure:RCR_aorta:J_heart_inlet","15999":"pressure:RCR_aorta:J_heart_inlet","16000":"flow:RCR_aorta_br:J_heart_inlet","16001":"flow:RCR_aorta_br:J_heart_inlet","16002":"flow:RCR_aorta_br:J_heart_inlet","16003":"flow:RCR_aorta_br:J_heart_inlet","16004":"flow:RCR_aorta_br:J_heart_inlet","16005":"flow:RCR_aorta_br:J_heart_inlet","16006":"flow:RCR_aorta_br:J_heart_inlet","16007":"flow:RCR_aorta_br:J_heart_inlet","16008":"flow:RCR_aorta_br:J_heart_inlet","16009":"flow:RCR_aorta_br:J_heart_inlet","16010":"flow:RCR_aorta_br:J_heart_inlet","16011":"flow:RCR_aorta_br:J_heart_inlet","16012":"flow:RCR_aorta_br:J_heart_inlet","16013":"flow:RCR_aorta_br:J_heart_inlet","16014":"flow:RCR_aorta_br:J_heart_inlet","16015":"flow:RCR_aorta_br:J_heart_inlet","16016":"flow:RCR_aorta_br:J_heart_inlet","16017":"flow:RCR_aorta_br:J_heart_inlet","16018":"flow:RCR_aorta_br:J_heart_inlet","16019":"flow:RCR_aorta_br:J_heart_inlet","16020":"flow:RCR_aorta_br:J_heart_inlet","16021":"flow:RCR_aorta_br:J_heart_inlet","16022":"flow:RCR_aorta_br:J_heart_inlet","16023":"flow:RCR_aorta_br:J_heart_inlet","16024":"flow:RCR_aorta_br:J_heart_inlet","16025":"flow:RCR_aorta_br:J_heart_inlet","16026":"flow:RCR_aorta_br:J_heart_inlet","16027":"flow:RCR_aorta_br:J_heart_inlet","16028":"flow:RCR_aorta_br:J_heart_inlet","16029":"flow:RCR_aorta_br:J_heart_inlet","16030":"flow:RCR_aorta_br:J_heart_inlet","16031":"flow:RCR_aorta_br:J_heart_inlet","16032":"flow:RCR_aorta_br:J_heart_inlet","16033":"flow:RCR_aorta_br:J_heart_inlet","16034":"flow:RCR_aorta_br:J_heart_inlet","16035":"flow:RCR_aorta_br:J_heart_inlet","16036":"flow:RCR_aorta_br:J_heart_inlet","16037":"flow:RCR_aorta_br:J_heart_inlet","16038":"flow:RCR_aorta_br:J_heart_inlet","16039":"flow:RCR_aorta_br:J_heart_inlet","16040":"flow:RCR_aorta_br:J_heart_inlet","16041":"flow:RCR_aorta_br:J_heart_inlet","16042":"flow:RCR_aorta_br:J_heart_inlet","16043":"flow:RCR_aorta_br:J_heart_inlet","16044":"flow:RCR_aorta_br:J_heart_inlet","16045":"flow:RCR_aorta_br:J_heart_inlet","16046":"flow:RCR_aorta_br:J_heart_inlet","16047":"flow:RCR_aorta_br:J_heart_inlet","16048":"flow:RCR_aorta_br:J_heart_inlet","16049":"flow:RCR_aorta_br:J_heart_inlet","16050":"flow:RCR_aorta_br:J_heart_inlet","16051":"flow:RCR_aorta_br:J_heart_inlet","16052":"flow:RCR_aorta_br:J_heart_inlet","16053":"flow:RCR_aorta_br:J_heart_inlet","16054":"flow:RCR_aorta_br:J_heart_inlet","16055":"flow:RCR_aorta_br:J_heart_inlet","16056":"flow:RCR_aorta_br:J_heart_inlet","16057":"flow:RCR_aorta_br:J_heart_inlet","16058":"flow:RCR_aorta_br:J_heart_inlet","16059":"flow:RCR_aorta_br:J_heart_inlet","16060":"flow:RCR_aorta_br:J_heart_inlet","16061":"flow:RCR_aorta_br:J_heart_inlet","16062":"flow:RCR_aorta_br:J_heart_inlet","16063":"flow:RCR_aorta_br:J_heart_inlet","16064":"flow:RCR_aorta_br:J_heart_inlet","16065":"flow:RCR_aorta_br:J_heart_inlet","16066":"flow:RCR_aorta_br:J_heart_inlet","16067":"flow:RCR_aorta_br:J_heart_inlet","16068":"flow:RCR_aorta_br:J_heart_inlet","16069":"flow:RCR_aorta_br:J_heart_inlet","16070":"flow:RCR_aorta_br:J_heart_inlet","16071":"flow:RCR_aorta_br:J_heart_inlet","16072":"flow:RCR_aorta_br:J_heart_inlet","16073":"flow:RCR_aorta_br:J_heart_inlet","16074":"flow:RCR_aorta_br:J_heart_inlet","16075":"flow:RCR_aorta_br:J_heart_inlet","16076":"flow:RCR_aorta_br:J_heart_inlet","16077":"flow:RCR_aorta_br:J_heart_inlet","16078":"flow:RCR_aorta_br:J_heart_inlet","16079":"flow:RCR_aorta_br:J_heart_inlet","16080":"flow:RCR_aorta_br:J_heart_inlet","16081":"flow:RCR_aorta_br:J_heart_inlet","16082":"flow:RCR_aorta_br:J_heart_inlet","16083":"flow:RCR_aorta_br:J_heart_inlet","16084":"flow:RCR_aorta_br:J_heart_inlet","16085":"flow:RCR_aorta_br:J_heart_inlet","16086":"flow:RCR_aorta_br:J_heart_inlet","16087":"flow:RCR_aorta_br:J_heart_inlet","16088":"flow:RCR_aorta_br:J_heart_inlet","16089":"flow:RCR_aorta_br:J_heart_inlet","16090":"flow:RCR_aorta_br:J_heart_inlet","16091":"flow:RCR_aorta_br:J_heart_inlet","16092":"flow:RCR_aorta_br:J_heart_inlet","16093":"flow:RCR_aorta_br:J_heart_inlet","16094":"flow:RCR_aorta_br:J_heart_inlet","16095":"flow:RCR_aorta_br:J_heart_inlet","16096":"flow:RCR_aorta_br:J_heart_inlet","16097":"flow:RCR_aorta_br:J_heart_inlet","16098":"flow:RCR_aorta_br:J_heart_inlet","16099":"flow:RCR_aorta_br:J_heart_inlet","16100":"flow:RCR_aorta_br:J_heart_inlet","16101":"flow:RCR_aorta_br:J_heart_inlet","16102":"flow:RCR_aorta_br:J_heart_inlet","16103":"flow:RCR_aorta_br:J_heart_inlet","16104":"flow:RCR_aorta_br:J_heart_inlet","16105":"flow:RCR_aorta_br:J_heart_inlet","16106":"flow:RCR_aorta_br:J_heart_inlet","16107":"flow:RCR_aorta_br:J_heart_inlet","16108":"flow:RCR_aorta_br:J_heart_inlet","16109":"flow:RCR_aorta_br:J_heart_inlet","16110":"flow:RCR_aorta_br:J_heart_inlet","16111":"flow:RCR_aorta_br:J_heart_inlet","16112":"flow:RCR_aorta_br:J_heart_inlet","16113":"flow:RCR_aorta_br:J_heart_inlet","16114":"flow:RCR_aorta_br:J_heart_inlet","16115":"flow:RCR_aorta_br:J_heart_inlet","16116":"flow:RCR_aorta_br:J_heart_inlet","16117":"flow:RCR_aorta_br:J_heart_inlet","16118":"flow:RCR_aorta_br:J_heart_inlet","16119":"flow:RCR_aorta_br:J_heart_inlet","16120":"flow:RCR_aorta_br:J_heart_inlet","16121":"flow:RCR_aorta_br:J_heart_inlet","16122":"flow:RCR_aorta_br:J_heart_inlet","16123":"flow:RCR_aorta_br:J_heart_inlet","16124":"flow:RCR_aorta_br:J_heart_inlet","16125":"flow:RCR_aorta_br:J_heart_inlet","16126":"flow:RCR_aorta_br:J_heart_inlet","16127":"flow:RCR_aorta_br:J_heart_inlet","16128":"flow:RCR_aorta_br:J_heart_inlet","16129":"flow:RCR_aorta_br:J_heart_inlet","16130":"flow:RCR_aorta_br:J_heart_inlet","16131":"flow:RCR_aorta_br:J_heart_inlet","16132":"flow:RCR_aorta_br:J_heart_inlet","16133":"flow:RCR_aorta_br:J_heart_inlet","16134":"flow:RCR_aorta_br:J_heart_inlet","16135":"flow:RCR_aorta_br:J_heart_inlet","16136":"flow:RCR_aorta_br:J_heart_inlet","16137":"flow:RCR_aorta_br:J_heart_inlet","16138":"flow:RCR_aorta_br:J_heart_inlet","16139":"flow:RCR_aorta_br:J_heart_inlet","16140":"flow:RCR_aorta_br:J_heart_inlet","16141":"flow:RCR_aorta_br:J_heart_inlet","16142":"flow:RCR_aorta_br:J_heart_inlet","16143":"flow:RCR_aorta_br:J_heart_inlet","16144":"flow:RCR_aorta_br:J_heart_inlet","16145":"flow:RCR_aorta_br:J_heart_inlet","16146":"flow:RCR_aorta_br:J_heart_inlet","16147":"flow:RCR_aorta_br:J_heart_inlet","16148":"flow:RCR_aorta_br:J_heart_inlet","16149":"flow:RCR_aorta_br:J_heart_inlet","16150":"flow:RCR_aorta_br:J_heart_inlet","16151":"flow:RCR_aorta_br:J_heart_inlet","16152":"flow:RCR_aorta_br:J_heart_inlet","16153":"flow:RCR_aorta_br:J_heart_inlet","16154":"flow:RCR_aorta_br:J_heart_inlet","16155":"flow:RCR_aorta_br:J_heart_inlet","16156":"flow:RCR_aorta_br:J_heart_inlet","16157":"flow:RCR_aorta_br:J_heart_inlet","16158":"flow:RCR_aorta_br:J_heart_inlet","16159":"flow:RCR_aorta_br:J_heart_inlet","16160":"flow:RCR_aorta_br:J_heart_inlet","16161":"flow:RCR_aorta_br:J_heart_inlet","16162":"flow:RCR_aorta_br:J_heart_inlet","16163":"flow:RCR_aorta_br:J_heart_inlet","16164":"flow:RCR_aorta_br:J_heart_inlet","16165":"flow:RCR_aorta_br:J_heart_inlet","16166":"flow:RCR_aorta_br:J_heart_inlet","16167":"flow:RCR_aorta_br:J_heart_inlet","16168":"flow:RCR_aorta_br:J_heart_inlet","16169":"flow:RCR_aorta_br:J_heart_inlet","16170":"flow:RCR_aorta_br:J_heart_inlet","16171":"flow:RCR_aorta_br:J_heart_inlet","16172":"flow:RCR_aorta_br:J_heart_inlet","16173":"flow:RCR_aorta_br:J_heart_inlet","16174":"flow:RCR_aorta_br:J_heart_inlet","16175":"flow:RCR_aorta_br:J_heart_inlet","16176":"flow:RCR_aorta_br:J_heart_inlet","16177":"flow:RCR_aorta_br:J_heart_inlet","16178":"flow:RCR_aorta_br:J_heart_inlet","16179":"flow:RCR_aorta_br:J_heart_inlet","16180":"flow:RCR_aorta_br:J_heart_inlet","16181":"flow:RCR_aorta_br:J_heart_inlet","16182":"flow:RCR_aorta_br:J_heart_inlet","16183":"flow:RCR_aorta_br:J_heart_inlet","16184":"flow:RCR_aorta_br:J_heart_inlet","16185":"flow:RCR_aorta_br:J_heart_inlet","16186":"flow:RCR_aorta_br:J_heart_inlet","16187":"flow:RCR_aorta_br:J_heart_inlet","16188":"flow:RCR_aorta_br:J_heart_inlet","16189":"flow:RCR_aorta_br:J_heart_inlet","16190":"flow:RCR_aorta_br:J_heart_inlet","16191":"flow:RCR_aorta_br:J_heart_inlet","16192":"flow:RCR_aorta_br:J_heart_inlet","16193":"flow:RCR_aorta_br:J_heart_inlet","16194":"flow:RCR_aorta_br:J_heart_inlet","16195":"flow:RCR_aorta_br:J_heart_inlet","16196":"flow:RCR_aorta_br:J_heart_inlet","16197":"flow:RCR_aorta_br:J_heart_inlet","16198":"flow:RCR_aorta_br:J_heart_inlet","16199":"flow:RCR_aorta_br:J_heart_inlet","16200":"flow:RCR_aorta_br:J_heart_inlet","16201":"flow:RCR_aorta_br:J_heart_inlet","16202":"flow:RCR_aorta_br:J_heart_inlet","16203":"flow:RCR_aorta_br:J_heart_inlet","16204":"flow:RCR_aorta_br:J_heart_inlet","16205":"flow:RCR_aorta_br:J_heart_inlet","16206":"flow:RCR_aorta_br:J_heart_inlet","16207":"flow:RCR_aorta_br:J_heart_inlet","16208":"flow:RCR_aorta_br:J_heart_inlet","16209":"flow:RCR_aorta_br:J_heart_inlet","16210":"flow:RCR_aorta_br:J_heart_inlet","16211":"flow:RCR_aorta_br:J_heart_inlet","16212":"flow:RCR_aorta_br:J_heart_inlet","16213":"flow:RCR_aorta_br:J_heart_inlet","16214":"flow:RCR_aorta_br:J_heart_inlet","16215":"flow:RCR_aorta_br:J_heart_inlet","16216":"flow:RCR_aorta_br:J_heart_inlet","16217":"flow:RCR_aorta_br:J_heart_inlet","16218":"flow:RCR_aorta_br:J_heart_inlet","16219":"flow:RCR_aorta_br:J_heart_inlet","16220":"flow:RCR_aorta_br:J_heart_inlet","16221":"flow:RCR_aorta_br:J_heart_inlet","16222":"flow:RCR_aorta_br:J_heart_inlet","16223":"flow:RCR_aorta_br:J_heart_inlet","16224":"flow:RCR_aorta_br:J_heart_inlet","16225":"flow:RCR_aorta_br:J_heart_inlet","16226":"flow:RCR_aorta_br:J_heart_inlet","16227":"flow:RCR_aorta_br:J_heart_inlet","16228":"flow:RCR_aorta_br:J_heart_inlet","16229":"flow:RCR_aorta_br:J_heart_inlet","16230":"flow:RCR_aorta_br:J_heart_inlet","16231":"flow:RCR_aorta_br:J_heart_inlet","16232":"flow:RCR_aorta_br:J_heart_inlet","16233":"flow:RCR_aorta_br:J_heart_inlet","16234":"flow:RCR_aorta_br:J_heart_inlet","16235":"flow:RCR_aorta_br:J_heart_inlet","16236":"flow:RCR_aorta_br:J_heart_inlet","16237":"flow:RCR_aorta_br:J_heart_inlet","16238":"flow:RCR_aorta_br:J_heart_inlet","16239":"flow:RCR_aorta_br:J_heart_inlet","16240":"flow:RCR_aorta_br:J_heart_inlet","16241":"flow:RCR_aorta_br:J_heart_inlet","16242":"flow:RCR_aorta_br:J_heart_inlet","16243":"flow:RCR_aorta_br:J_heart_inlet","16244":"flow:RCR_aorta_br:J_heart_inlet","16245":"flow:RCR_aorta_br:J_heart_inlet","16246":"flow:RCR_aorta_br:J_heart_inlet","16247":"flow:RCR_aorta_br:J_heart_inlet","16248":"flow:RCR_aorta_br:J_heart_inlet","16249":"flow:RCR_aorta_br:J_heart_inlet","16250":"flow:RCR_aorta_br:J_heart_inlet","16251":"flow:RCR_aorta_br:J_heart_inlet","16252":"flow:RCR_aorta_br:J_heart_inlet","16253":"flow:RCR_aorta_br:J_heart_inlet","16254":"flow:RCR_aorta_br:J_heart_inlet","16255":"flow:RCR_aorta_br:J_heart_inlet","16256":"flow:RCR_aorta_br:J_heart_inlet","16257":"flow:RCR_aorta_br:J_heart_inlet","16258":"flow:RCR_aorta_br:J_heart_inlet","16259":"flow:RCR_aorta_br:J_heart_inlet","16260":"flow:RCR_aorta_br:J_heart_inlet","16261":"flow:RCR_aorta_br:J_heart_inlet","16262":"flow:RCR_aorta_br:J_heart_inlet","16263":"flow:RCR_aorta_br:J_heart_inlet","16264":"flow:RCR_aorta_br:J_heart_inlet","16265":"flow:RCR_aorta_br:J_heart_inlet","16266":"flow:RCR_aorta_br:J_heart_inlet","16267":"flow:RCR_aorta_br:J_heart_inlet","16268":"flow:RCR_aorta_br:J_heart_inlet","16269":"flow:RCR_aorta_br:J_heart_inlet","16270":"flow:RCR_aorta_br:J_heart_inlet","16271":"flow:RCR_aorta_br:J_heart_inlet","16272":"flow:RCR_aorta_br:J_heart_inlet","16273":"flow:RCR_aorta_br:J_heart_inlet","16274":"flow:RCR_aorta_br:J_heart_inlet","16275":"flow:RCR_aorta_br:J_heart_inlet","16276":"flow:RCR_aorta_br:J_heart_inlet","16277":"flow:RCR_aorta_br:J_heart_inlet","16278":"flow:RCR_aorta_br:J_heart_inlet","16279":"flow:RCR_aorta_br:J_heart_inlet","16280":"flow:RCR_aorta_br:J_heart_inlet","16281":"flow:RCR_aorta_br:J_heart_inlet","16282":"flow:RCR_aorta_br:J_heart_inlet","16283":"flow:RCR_aorta_br:J_heart_inlet","16284":"flow:RCR_aorta_br:J_heart_inlet","16285":"flow:RCR_aorta_br:J_heart_inlet","16286":"flow:RCR_aorta_br:J_heart_inlet","16287":"flow:RCR_aorta_br:J_heart_inlet","16288":"flow:RCR_aorta_br:J_heart_inlet","16289":"flow:RCR_aorta_br:J_heart_inlet","16290":"flow:RCR_aorta_br:J_heart_inlet","16291":"flow:RCR_aorta_br:J_heart_inlet","16292":"flow:RCR_aorta_br:J_heart_inlet","16293":"flow:RCR_aorta_br:J_heart_inlet","16294":"flow:RCR_aorta_br:J_heart_inlet","16295":"flow:RCR_aorta_br:J_heart_inlet","16296":"flow:RCR_aorta_br:J_heart_inlet","16297":"flow:RCR_aorta_br:J_heart_inlet","16298":"flow:RCR_aorta_br:J_heart_inlet","16299":"flow:RCR_aorta_br:J_heart_inlet","16300":"flow:RCR_aorta_br:J_heart_inlet","16301":"flow:RCR_aorta_br:J_heart_inlet","16302":"flow:RCR_aorta_br:J_heart_inlet","16303":"flow:RCR_aorta_br:J_heart_inlet","16304":"flow:RCR_aorta_br:J_heart_inlet","16305":"flow:RCR_aorta_br:J_heart_inlet","16306":"flow:RCR_aorta_br:J_heart_inlet","16307":"flow:RCR_aorta_br:J_heart_inlet","16308":"flow:RCR_aorta_br:J_heart_inlet","16309":"flow:RCR_aorta_br:J_heart_inlet","16310":"flow:RCR_aorta_br:J_heart_inlet","16311":"flow:RCR_aorta_br:J_heart_inlet","16312":"flow:RCR_aorta_br:J_heart_inlet","16313":"flow:RCR_aorta_br:J_heart_inlet","16314":"flow:RCR_aorta_br:J_heart_inlet","16315":"flow:RCR_aorta_br:J_heart_inlet","16316":"flow:RCR_aorta_br:J_heart_inlet","16317":"flow:RCR_aorta_br:J_heart_inlet","16318":"flow:RCR_aorta_br:J_heart_inlet","16319":"flow:RCR_aorta_br:J_heart_inlet","16320":"flow:RCR_aorta_br:J_heart_inlet","16321":"flow:RCR_aorta_br:J_heart_inlet","16322":"flow:RCR_aorta_br:J_heart_inlet","16323":"flow:RCR_aorta_br:J_heart_inlet","16324":"flow:RCR_aorta_br:J_heart_inlet","16325":"flow:RCR_aorta_br:J_heart_inlet","16326":"flow:RCR_aorta_br:J_heart_inlet","16327":"flow:RCR_aorta_br:J_heart_inlet","16328":"flow:RCR_aorta_br:J_heart_inlet","16329":"flow:RCR_aorta_br:J_heart_inlet","16330":"flow:RCR_aorta_br:J_heart_inlet","16331":"flow:RCR_aorta_br:J_heart_inlet","16332":"flow:RCR_aorta_br:J_heart_inlet","16333":"flow:RCR_aorta_br:J_heart_inlet","16334":"flow:RCR_aorta_br:J_heart_inlet","16335":"flow:RCR_aorta_br:J_heart_inlet","16336":"flow:RCR_aorta_br:J_heart_inlet","16337":"flow:RCR_aorta_br:J_heart_inlet","16338":"flow:RCR_aorta_br:J_heart_inlet","16339":"flow:RCR_aorta_br:J_heart_inlet","16340":"flow:RCR_aorta_br:J_heart_inlet","16341":"flow:RCR_aorta_br:J_heart_inlet","16342":"flow:RCR_aorta_br:J_heart_inlet","16343":"flow:RCR_aorta_br:J_heart_inlet","16344":"flow:RCR_aorta_br:J_heart_inlet","16345":"flow:RCR_aorta_br:J_heart_inlet","16346":"flow:RCR_aorta_br:J_heart_inlet","16347":"flow:RCR_aorta_br:J_heart_inlet","16348":"flow:RCR_aorta_br:J_heart_inlet","16349":"flow:RCR_aorta_br:J_heart_inlet","16350":"flow:RCR_aorta_br:J_heart_inlet","16351":"flow:RCR_aorta_br:J_heart_inlet","16352":"flow:RCR_aorta_br:J_heart_inlet","16353":"flow:RCR_aorta_br:J_heart_inlet","16354":"flow:RCR_aorta_br:J_heart_inlet","16355":"flow:RCR_aorta_br:J_heart_inlet","16356":"flow:RCR_aorta_br:J_heart_inlet","16357":"flow:RCR_aorta_br:J_heart_inlet","16358":"flow:RCR_aorta_br:J_heart_inlet","16359":"flow:RCR_aorta_br:J_heart_inlet","16360":"flow:RCR_aorta_br:J_heart_inlet","16361":"flow:RCR_aorta_br:J_heart_inlet","16362":"flow:RCR_aorta_br:J_heart_inlet","16363":"flow:RCR_aorta_br:J_heart_inlet","16364":"flow:RCR_aorta_br:J_heart_inlet","16365":"flow:RCR_aorta_br:J_heart_inlet","16366":"flow:RCR_aorta_br:J_heart_inlet","16367":"flow:RCR_aorta_br:J_heart_inlet","16368":"flow:RCR_aorta_br:J_heart_inlet","16369":"flow:RCR_aorta_br:J_heart_inlet","16370":"flow:RCR_aorta_br:J_heart_inlet","16371":"flow:RCR_aorta_br:J_heart_inlet","16372":"flow:RCR_aorta_br:J_heart_inlet","16373":"flow:RCR_aorta_br:J_heart_inlet","16374":"flow:RCR_aorta_br:J_heart_inlet","16375":"flow:RCR_aorta_br:J_heart_inlet","16376":"flow:RCR_aorta_br:J_heart_inlet","16377":"flow:RCR_aorta_br:J_heart_inlet","16378":"flow:RCR_aorta_br:J_heart_inlet","16379":"flow:RCR_aorta_br:J_heart_inlet","16380":"flow:RCR_aorta_br:J_heart_inlet","16381":"flow:RCR_aorta_br:J_heart_inlet","16382":"flow:RCR_aorta_br:J_heart_inlet","16383":"flow:RCR_aorta_br:J_heart_inlet","16384":"flow:RCR_aorta_br:J_heart_inlet","16385":"flow:RCR_aorta_br:J_heart_inlet","16386":"flow:RCR_aorta_br:J_heart_inlet","16387":"flow:RCR_aorta_br:J_heart_inlet","16388":"flow:RCR_aorta_br:J_heart_inlet","16389":"flow:RCR_aorta_br:J_heart_inlet","16390":"flow:RCR_aorta_br:J_heart_inlet","16391":"flow:RCR_aorta_br:J_heart_inlet","16392":"flow:RCR_aorta_br:J_heart_inlet","16393":"flow:RCR_aorta_br:J_heart_inlet","16394":"flow:RCR_aorta_br:J_heart_inlet","16395":"flow:RCR_aorta_br:J_heart_inlet","16396":"flow:RCR_aorta_br:J_heart_inlet","16397":"flow:RCR_aorta_br:J_heart_inlet","16398":"flow:RCR_aorta_br:J_heart_inlet","16399":"flow:RCR_aorta_br:J_heart_inlet","16400":"flow:RCR_aorta_br:J_heart_inlet","16401":"flow:RCR_aorta_br:J_heart_inlet","16402":"flow:RCR_aorta_br:J_heart_inlet","16403":"flow:RCR_aorta_br:J_heart_inlet","16404":"flow:RCR_aorta_br:J_heart_inlet","16405":"flow:RCR_aorta_br:J_heart_inlet","16406":"flow:RCR_aorta_br:J_heart_inlet","16407":"flow:RCR_aorta_br:J_heart_inlet","16408":"flow:RCR_aorta_br:J_heart_inlet","16409":"flow:RCR_aorta_br:J_heart_inlet","16410":"flow:RCR_aorta_br:J_heart_inlet","16411":"flow:RCR_aorta_br:J_heart_inlet","16412":"flow:RCR_aorta_br:J_heart_inlet","16413":"flow:RCR_aorta_br:J_heart_inlet","16414":"flow:RCR_aorta_br:J_heart_inlet","16415":"flow:RCR_aorta_br:J_heart_inlet","16416":"flow:RCR_aorta_br:J_heart_inlet","16417":"flow:RCR_aorta_br:J_heart_inlet","16418":"flow:RCR_aorta_br:J_heart_inlet","16419":"flow:RCR_aorta_br:J_heart_inlet","16420":"flow:RCR_aorta_br:J_heart_inlet","16421":"flow:RCR_aorta_br:J_heart_inlet","16422":"flow:RCR_aorta_br:J_heart_inlet","16423":"flow:RCR_aorta_br:J_heart_inlet","16424":"flow:RCR_aorta_br:J_heart_inlet","16425":"flow:RCR_aorta_br:J_heart_inlet","16426":"flow:RCR_aorta_br:J_heart_inlet","16427":"flow:RCR_aorta_br:J_heart_inlet","16428":"flow:RCR_aorta_br:J_heart_inlet","16429":"flow:RCR_aorta_br:J_heart_inlet","16430":"flow:RCR_aorta_br:J_heart_inlet","16431":"flow:RCR_aorta_br:J_heart_inlet","16432":"flow:RCR_aorta_br:J_heart_inlet","16433":"flow:RCR_aorta_br:J_heart_inlet","16434":"flow:RCR_aorta_br:J_heart_inlet","16435":"flow:RCR_aorta_br:J_heart_inlet","16436":"flow:RCR_aorta_br:J_heart_inlet","16437":"flow:RCR_aorta_br:J_heart_inlet","16438":"flow:RCR_aorta_br:J_heart_inlet","16439":"flow:RCR_aorta_br:J_heart_inlet","16440":"flow:RCR_aorta_br:J_heart_inlet","16441":"flow:RCR_aorta_br:J_heart_inlet","16442":"flow:RCR_aorta_br:J_heart_inlet","16443":"flow:RCR_aorta_br:J_heart_inlet","16444":"flow:RCR_aorta_br:J_heart_inlet","16445":"flow:RCR_aorta_br:J_heart_inlet","16446":"flow:RCR_aorta_br:J_heart_inlet","16447":"flow:RCR_aorta_br:J_heart_inlet","16448":"flow:RCR_aorta_br:J_heart_inlet","16449":"flow:RCR_aorta_br:J_heart_inlet","16450":"flow:RCR_aorta_br:J_heart_inlet","16451":"flow:RCR_aorta_br:J_heart_inlet","16452":"flow:RCR_aorta_br:J_heart_inlet","16453":"flow:RCR_aorta_br:J_heart_inlet","16454":"flow:RCR_aorta_br:J_heart_inlet","16455":"flow:RCR_aorta_br:J_heart_inlet","16456":"flow:RCR_aorta_br:J_heart_inlet","16457":"flow:RCR_aorta_br:J_heart_inlet","16458":"flow:RCR_aorta_br:J_heart_inlet","16459":"flow:RCR_aorta_br:J_heart_inlet","16460":"flow:RCR_aorta_br:J_heart_inlet","16461":"flow:RCR_aorta_br:J_heart_inlet","16462":"flow:RCR_aorta_br:J_heart_inlet","16463":"flow:RCR_aorta_br:J_heart_inlet","16464":"flow:RCR_aorta_br:J_heart_inlet","16465":"flow:RCR_aorta_br:J_heart_inlet","16466":"flow:RCR_aorta_br:J_heart_inlet","16467":"flow:RCR_aorta_br:J_heart_inlet","16468":"flow:RCR_aorta_br:J_heart_inlet","16469":"flow:RCR_aorta_br:J_heart_inlet","16470":"flow:RCR_aorta_br:J_heart_inlet","16471":"flow:RCR_aorta_br:J_heart_inlet","16472":"flow:RCR_aorta_br:J_heart_inlet","16473":"flow:RCR_aorta_br:J_heart_inlet","16474":"flow:RCR_aorta_br:J_heart_inlet","16475":"flow:RCR_aorta_br:J_heart_inlet","16476":"flow:RCR_aorta_br:J_heart_inlet","16477":"flow:RCR_aorta_br:J_heart_inlet","16478":"flow:RCR_aorta_br:J_heart_inlet","16479":"flow:RCR_aorta_br:J_heart_inlet","16480":"flow:RCR_aorta_br:J_heart_inlet","16481":"flow:RCR_aorta_br:J_heart_inlet","16482":"flow:RCR_aorta_br:J_heart_inlet","16483":"flow:RCR_aorta_br:J_heart_inlet","16484":"flow:RCR_aorta_br:J_heart_inlet","16485":"flow:RCR_aorta_br:J_heart_inlet","16486":"flow:RCR_aorta_br:J_heart_inlet","16487":"flow:RCR_aorta_br:J_heart_inlet","16488":"flow:RCR_aorta_br:J_heart_inlet","16489":"flow:RCR_aorta_br:J_heart_inlet","16490":"flow:RCR_aorta_br:J_heart_inlet","16491":"flow:RCR_aorta_br:J_heart_inlet","16492":"flow:RCR_aorta_br:J_heart_inlet","16493":"flow:RCR_aorta_br:J_heart_inlet","16494":"flow:RCR_aorta_br:J_heart_inlet","16495":"flow:RCR_aorta_br:J_heart_inlet","16496":"flow:RCR_aorta_br:J_heart_inlet","16497":"flow:RCR_aorta_br:J_heart_inlet","16498":"flow:RCR_aorta_br:J_heart_inlet","16499":"flow:RCR_aorta_br:J_heart_inlet","16500":"flow:RCR_aorta_br:J_heart_inlet","16501":"flow:RCR_aorta_br:J_heart_inlet","16502":"flow:RCR_aorta_br:J_heart_inlet","16503":"flow:RCR_aorta_br:J_heart_inlet","16504":"flow:RCR_aorta_br:J_heart_inlet","16505":"flow:RCR_aorta_br:J_heart_inlet","16506":"flow:RCR_aorta_br:J_heart_inlet","16507":"flow:RCR_aorta_br:J_heart_inlet","16508":"flow:RCR_aorta_br:J_heart_inlet","16509":"flow:RCR_aorta_br:J_heart_inlet","16510":"flow:RCR_aorta_br:J_heart_inlet","16511":"flow:RCR_aorta_br:J_heart_inlet","16512":"flow:RCR_aorta_br:J_heart_inlet","16513":"flow:RCR_aorta_br:J_heart_inlet","16514":"flow:RCR_aorta_br:J_heart_inlet","16515":"flow:RCR_aorta_br:J_heart_inlet","16516":"flow:RCR_aorta_br:J_heart_inlet","16517":"flow:RCR_aorta_br:J_heart_inlet","16518":"flow:RCR_aorta_br:J_heart_inlet","16519":"flow:RCR_aorta_br:J_heart_inlet","16520":"flow:RCR_aorta_br:J_heart_inlet","16521":"flow:RCR_aorta_br:J_heart_inlet","16522":"flow:RCR_aorta_br:J_heart_inlet","16523":"flow:RCR_aorta_br:J_heart_inlet","16524":"flow:RCR_aorta_br:J_heart_inlet","16525":"flow:RCR_aorta_br:J_heart_inlet","16526":"flow:RCR_aorta_br:J_heart_inlet","16527":"flow:RCR_aorta_br:J_heart_inlet","16528":"flow:RCR_aorta_br:J_heart_inlet","16529":"flow:RCR_aorta_br:J_heart_inlet","16530":"flow:RCR_aorta_br:J_heart_inlet","16531":"flow:RCR_aorta_br:J_heart_inlet","16532":"flow:RCR_aorta_br:J_heart_inlet","16533":"flow:RCR_aorta_br:J_heart_inlet","16534":"flow:RCR_aorta_br:J_heart_inlet","16535":"flow:RCR_aorta_br:J_heart_inlet","16536":"flow:RCR_aorta_br:J_heart_inlet","16537":"flow:RCR_aorta_br:J_heart_inlet","16538":"flow:RCR_aorta_br:J_heart_inlet","16539":"flow:RCR_aorta_br:J_heart_inlet","16540":"flow:RCR_aorta_br:J_heart_inlet","16541":"flow:RCR_aorta_br:J_heart_inlet","16542":"flow:RCR_aorta_br:J_heart_inlet","16543":"flow:RCR_aorta_br:J_heart_inlet","16544":"flow:RCR_aorta_br:J_heart_inlet","16545":"flow:RCR_aorta_br:J_heart_inlet","16546":"flow:RCR_aorta_br:J_heart_inlet","16547":"flow:RCR_aorta_br:J_heart_inlet","16548":"flow:RCR_aorta_br:J_heart_inlet","16549":"flow:RCR_aorta_br:J_heart_inlet","16550":"flow:RCR_aorta_br:J_heart_inlet","16551":"flow:RCR_aorta_br:J_heart_inlet","16552":"flow:RCR_aorta_br:J_heart_inlet","16553":"flow:RCR_aorta_br:J_heart_inlet","16554":"flow:RCR_aorta_br:J_heart_inlet","16555":"flow:RCR_aorta_br:J_heart_inlet","16556":"flow:RCR_aorta_br:J_heart_inlet","16557":"flow:RCR_aorta_br:J_heart_inlet","16558":"flow:RCR_aorta_br:J_heart_inlet","16559":"flow:RCR_aorta_br:J_heart_inlet","16560":"flow:RCR_aorta_br:J_heart_inlet","16561":"flow:RCR_aorta_br:J_heart_inlet","16562":"flow:RCR_aorta_br:J_heart_inlet","16563":"flow:RCR_aorta_br:J_heart_inlet","16564":"flow:RCR_aorta_br:J_heart_inlet","16565":"flow:RCR_aorta_br:J_heart_inlet","16566":"flow:RCR_aorta_br:J_heart_inlet","16567":"flow:RCR_aorta_br:J_heart_inlet","16568":"flow:RCR_aorta_br:J_heart_inlet","16569":"flow:RCR_aorta_br:J_heart_inlet","16570":"flow:RCR_aorta_br:J_heart_inlet","16571":"flow:RCR_aorta_br:J_heart_inlet","16572":"flow:RCR_aorta_br:J_heart_inlet","16573":"flow:RCR_aorta_br:J_heart_inlet","16574":"flow:RCR_aorta_br:J_heart_inlet","16575":"flow:RCR_aorta_br:J_heart_inlet","16576":"flow:RCR_aorta_br:J_heart_inlet","16577":"flow:RCR_aorta_br:J_heart_inlet","16578":"flow:RCR_aorta_br:J_heart_inlet","16579":"flow:RCR_aorta_br:J_heart_inlet","16580":"flow:RCR_aorta_br:J_heart_inlet","16581":"flow:RCR_aorta_br:J_heart_inlet","16582":"flow:RCR_aorta_br:J_heart_inlet","16583":"flow:RCR_aorta_br:J_heart_inlet","16584":"flow:RCR_aorta_br:J_heart_inlet","16585":"flow:RCR_aorta_br:J_heart_inlet","16586":"flow:RCR_aorta_br:J_heart_inlet","16587":"flow:RCR_aorta_br:J_heart_inlet","16588":"flow:RCR_aorta_br:J_heart_inlet","16589":"flow:RCR_aorta_br:J_heart_inlet","16590":"flow:RCR_aorta_br:J_heart_inlet","16591":"flow:RCR_aorta_br:J_heart_inlet","16592":"flow:RCR_aorta_br:J_heart_inlet","16593":"flow:RCR_aorta_br:J_heart_inlet","16594":"flow:RCR_aorta_br:J_heart_inlet","16595":"flow:RCR_aorta_br:J_heart_inlet","16596":"flow:RCR_aorta_br:J_heart_inlet","16597":"flow:RCR_aorta_br:J_heart_inlet","16598":"flow:RCR_aorta_br:J_heart_inlet","16599":"flow:RCR_aorta_br:J_heart_inlet","16600":"flow:RCR_aorta_br:J_heart_inlet","16601":"flow:RCR_aorta_br:J_heart_inlet","16602":"flow:RCR_aorta_br:J_heart_inlet","16603":"flow:RCR_aorta_br:J_heart_inlet","16604":"flow:RCR_aorta_br:J_heart_inlet","16605":"flow:RCR_aorta_br:J_heart_inlet","16606":"flow:RCR_aorta_br:J_heart_inlet","16607":"flow:RCR_aorta_br:J_heart_inlet","16608":"flow:RCR_aorta_br:J_heart_inlet","16609":"flow:RCR_aorta_br:J_heart_inlet","16610":"flow:RCR_aorta_br:J_heart_inlet","16611":"flow:RCR_aorta_br:J_heart_inlet","16612":"flow:RCR_aorta_br:J_heart_inlet","16613":"flow:RCR_aorta_br:J_heart_inlet","16614":"flow:RCR_aorta_br:J_heart_inlet","16615":"flow:RCR_aorta_br:J_heart_inlet","16616":"flow:RCR_aorta_br:J_heart_inlet","16617":"flow:RCR_aorta_br:J_heart_inlet","16618":"flow:RCR_aorta_br:J_heart_inlet","16619":"flow:RCR_aorta_br:J_heart_inlet","16620":"flow:RCR_aorta_br:J_heart_inlet","16621":"flow:RCR_aorta_br:J_heart_inlet","16622":"flow:RCR_aorta_br:J_heart_inlet","16623":"flow:RCR_aorta_br:J_heart_inlet","16624":"flow:RCR_aorta_br:J_heart_inlet","16625":"flow:RCR_aorta_br:J_heart_inlet","16626":"flow:RCR_aorta_br:J_heart_inlet","16627":"flow:RCR_aorta_br:J_heart_inlet","16628":"flow:RCR_aorta_br:J_heart_inlet","16629":"flow:RCR_aorta_br:J_heart_inlet","16630":"flow:RCR_aorta_br:J_heart_inlet","16631":"flow:RCR_aorta_br:J_heart_inlet","16632":"flow:RCR_aorta_br:J_heart_inlet","16633":"flow:RCR_aorta_br:J_heart_inlet","16634":"flow:RCR_aorta_br:J_heart_inlet","16635":"flow:RCR_aorta_br:J_heart_inlet","16636":"flow:RCR_aorta_br:J_heart_inlet","16637":"flow:RCR_aorta_br:J_heart_inlet","16638":"flow:RCR_aorta_br:J_heart_inlet","16639":"flow:RCR_aorta_br:J_heart_inlet","16640":"flow:RCR_aorta_br:J_heart_inlet","16641":"flow:RCR_aorta_br:J_heart_inlet","16642":"flow:RCR_aorta_br:J_heart_inlet","16643":"flow:RCR_aorta_br:J_heart_inlet","16644":"flow:RCR_aorta_br:J_heart_inlet","16645":"flow:RCR_aorta_br:J_heart_inlet","16646":"flow:RCR_aorta_br:J_heart_inlet","16647":"flow:RCR_aorta_br:J_heart_inlet","16648":"flow:RCR_aorta_br:J_heart_inlet","16649":"flow:RCR_aorta_br:J_heart_inlet","16650":"flow:RCR_aorta_br:J_heart_inlet","16651":"flow:RCR_aorta_br:J_heart_inlet","16652":"flow:RCR_aorta_br:J_heart_inlet","16653":"flow:RCR_aorta_br:J_heart_inlet","16654":"flow:RCR_aorta_br:J_heart_inlet","16655":"flow:RCR_aorta_br:J_heart_inlet","16656":"flow:RCR_aorta_br:J_heart_inlet","16657":"flow:RCR_aorta_br:J_heart_inlet","16658":"flow:RCR_aorta_br:J_heart_inlet","16659":"flow:RCR_aorta_br:J_heart_inlet","16660":"flow:RCR_aorta_br:J_heart_inlet","16661":"flow:RCR_aorta_br:J_heart_inlet","16662":"flow:RCR_aorta_br:J_heart_inlet","16663":"flow:RCR_aorta_br:J_heart_inlet","16664":"flow:RCR_aorta_br:J_heart_inlet","16665":"flow:RCR_aorta_br:J_heart_inlet","16666":"flow:RCR_aorta_br:J_heart_inlet","16667":"flow:RCR_aorta_br:J_heart_inlet","16668":"flow:RCR_aorta_br:J_heart_inlet","16669":"flow:RCR_aorta_br:J_heart_inlet","16670":"flow:RCR_aorta_br:J_heart_inlet","16671":"flow:RCR_aorta_br:J_heart_inlet","16672":"flow:RCR_aorta_br:J_heart_inlet","16673":"flow:RCR_aorta_br:J_heart_inlet","16674":"flow:RCR_aorta_br:J_heart_inlet","16675":"flow:RCR_aorta_br:J_heart_inlet","16676":"flow:RCR_aorta_br:J_heart_inlet","16677":"flow:RCR_aorta_br:J_heart_inlet","16678":"flow:RCR_aorta_br:J_heart_inlet","16679":"flow:RCR_aorta_br:J_heart_inlet","16680":"flow:RCR_aorta_br:J_heart_inlet","16681":"flow:RCR_aorta_br:J_heart_inlet","16682":"flow:RCR_aorta_br:J_heart_inlet","16683":"flow:RCR_aorta_br:J_heart_inlet","16684":"flow:RCR_aorta_br:J_heart_inlet","16685":"flow:RCR_aorta_br:J_heart_inlet","16686":"flow:RCR_aorta_br:J_heart_inlet","16687":"flow:RCR_aorta_br:J_heart_inlet","16688":"flow:RCR_aorta_br:J_heart_inlet","16689":"flow:RCR_aorta_br:J_heart_inlet","16690":"flow:RCR_aorta_br:J_heart_inlet","16691":"flow:RCR_aorta_br:J_heart_inlet","16692":"flow:RCR_aorta_br:J_heart_inlet","16693":"flow:RCR_aorta_br:J_heart_inlet","16694":"flow:RCR_aorta_br:J_heart_inlet","16695":"flow:RCR_aorta_br:J_heart_inlet","16696":"flow:RCR_aorta_br:J_heart_inlet","16697":"flow:RCR_aorta_br:J_heart_inlet","16698":"flow:RCR_aorta_br:J_heart_inlet","16699":"flow:RCR_aorta_br:J_heart_inlet","16700":"flow:RCR_aorta_br:J_heart_inlet","16701":"flow:RCR_aorta_br:J_heart_inlet","16702":"flow:RCR_aorta_br:J_heart_inlet","16703":"flow:RCR_aorta_br:J_heart_inlet","16704":"flow:RCR_aorta_br:J_heart_inlet","16705":"flow:RCR_aorta_br:J_heart_inlet","16706":"flow:RCR_aorta_br:J_heart_inlet","16707":"flow:RCR_aorta_br:J_heart_inlet","16708":"flow:RCR_aorta_br:J_heart_inlet","16709":"flow:RCR_aorta_br:J_heart_inlet","16710":"flow:RCR_aorta_br:J_heart_inlet","16711":"flow:RCR_aorta_br:J_heart_inlet","16712":"flow:RCR_aorta_br:J_heart_inlet","16713":"flow:RCR_aorta_br:J_heart_inlet","16714":"flow:RCR_aorta_br:J_heart_inlet","16715":"flow:RCR_aorta_br:J_heart_inlet","16716":"flow:RCR_aorta_br:J_heart_inlet","16717":"flow:RCR_aorta_br:J_heart_inlet","16718":"flow:RCR_aorta_br:J_heart_inlet","16719":"flow:RCR_aorta_br:J_heart_inlet","16720":"flow:RCR_aorta_br:J_heart_inlet","16721":"flow:RCR_aorta_br:J_heart_inlet","16722":"flow:RCR_aorta_br:J_heart_inlet","16723":"flow:RCR_aorta_br:J_heart_inlet","16724":"flow:RCR_aorta_br:J_heart_inlet","16725":"flow:RCR_aorta_br:J_heart_inlet","16726":"flow:RCR_aorta_br:J_heart_inlet","16727":"flow:RCR_aorta_br:J_heart_inlet","16728":"flow:RCR_aorta_br:J_heart_inlet","16729":"flow:RCR_aorta_br:J_heart_inlet","16730":"flow:RCR_aorta_br:J_heart_inlet","16731":"flow:RCR_aorta_br:J_heart_inlet","16732":"flow:RCR_aorta_br:J_heart_inlet","16733":"flow:RCR_aorta_br:J_heart_inlet","16734":"flow:RCR_aorta_br:J_heart_inlet","16735":"flow:RCR_aorta_br:J_heart_inlet","16736":"flow:RCR_aorta_br:J_heart_inlet","16737":"flow:RCR_aorta_br:J_heart_inlet","16738":"flow:RCR_aorta_br:J_heart_inlet","16739":"flow:RCR_aorta_br:J_heart_inlet","16740":"flow:RCR_aorta_br:J_heart_inlet","16741":"flow:RCR_aorta_br:J_heart_inlet","16742":"flow:RCR_aorta_br:J_heart_inlet","16743":"flow:RCR_aorta_br:J_heart_inlet","16744":"flow:RCR_aorta_br:J_heart_inlet","16745":"flow:RCR_aorta_br:J_heart_inlet","16746":"flow:RCR_aorta_br:J_heart_inlet","16747":"flow:RCR_aorta_br:J_heart_inlet","16748":"flow:RCR_aorta_br:J_heart_inlet","16749":"flow:RCR_aorta_br:J_heart_inlet","16750":"flow:RCR_aorta_br:J_heart_inlet","16751":"flow:RCR_aorta_br:J_heart_inlet","16752":"flow:RCR_aorta_br:J_heart_inlet","16753":"flow:RCR_aorta_br:J_heart_inlet","16754":"flow:RCR_aorta_br:J_heart_inlet","16755":"flow:RCR_aorta_br:J_heart_inlet","16756":"flow:RCR_aorta_br:J_heart_inlet","16757":"flow:RCR_aorta_br:J_heart_inlet","16758":"flow:RCR_aorta_br:J_heart_inlet","16759":"flow:RCR_aorta_br:J_heart_inlet","16760":"flow:RCR_aorta_br:J_heart_inlet","16761":"flow:RCR_aorta_br:J_heart_inlet","16762":"flow:RCR_aorta_br:J_heart_inlet","16763":"flow:RCR_aorta_br:J_heart_inlet","16764":"flow:RCR_aorta_br:J_heart_inlet","16765":"flow:RCR_aorta_br:J_heart_inlet","16766":"flow:RCR_aorta_br:J_heart_inlet","16767":"flow:RCR_aorta_br:J_heart_inlet","16768":"flow:RCR_aorta_br:J_heart_inlet","16769":"flow:RCR_aorta_br:J_heart_inlet","16770":"flow:RCR_aorta_br:J_heart_inlet","16771":"flow:RCR_aorta_br:J_heart_inlet","16772":"flow:RCR_aorta_br:J_heart_inlet","16773":"flow:RCR_aorta_br:J_heart_inlet","16774":"flow:RCR_aorta_br:J_heart_inlet","16775":"flow:RCR_aorta_br:J_heart_inlet","16776":"flow:RCR_aorta_br:J_heart_inlet","16777":"flow:RCR_aorta_br:J_heart_inlet","16778":"flow:RCR_aorta_br:J_heart_inlet","16779":"flow:RCR_aorta_br:J_heart_inlet","16780":"flow:RCR_aorta_br:J_heart_inlet","16781":"flow:RCR_aorta_br:J_heart_inlet","16782":"flow:RCR_aorta_br:J_heart_inlet","16783":"flow:RCR_aorta_br:J_heart_inlet","16784":"flow:RCR_aorta_br:J_heart_inlet","16785":"flow:RCR_aorta_br:J_heart_inlet","16786":"flow:RCR_aorta_br:J_heart_inlet","16787":"flow:RCR_aorta_br:J_heart_inlet","16788":"flow:RCR_aorta_br:J_heart_inlet","16789":"flow:RCR_aorta_br:J_heart_inlet","16790":"flow:RCR_aorta_br:J_heart_inlet","16791":"flow:RCR_aorta_br:J_heart_inlet","16792":"flow:RCR_aorta_br:J_heart_inlet","16793":"flow:RCR_aorta_br:J_heart_inlet","16794":"flow:RCR_aorta_br:J_heart_inlet","16795":"flow:RCR_aorta_br:J_heart_inlet","16796":"flow:RCR_aorta_br:J_heart_inlet","16797":"flow:RCR_aorta_br:J_heart_inlet","16798":"flow:RCR_aorta_br:J_heart_inlet","16799":"flow:RCR_aorta_br:J_heart_inlet","16800":"flow:RCR_aorta_br:J_heart_inlet","16801":"flow:RCR_aorta_br:J_heart_inlet","16802":"flow:RCR_aorta_br:J_heart_inlet","16803":"flow:RCR_aorta_br:J_heart_inlet","16804":"flow:RCR_aorta_br:J_heart_inlet","16805":"flow:RCR_aorta_br:J_heart_inlet","16806":"flow:RCR_aorta_br:J_heart_inlet","16807":"flow:RCR_aorta_br:J_heart_inlet","16808":"flow:RCR_aorta_br:J_heart_inlet","16809":"flow:RCR_aorta_br:J_heart_inlet","16810":"flow:RCR_aorta_br:J_heart_inlet","16811":"flow:RCR_aorta_br:J_heart_inlet","16812":"flow:RCR_aorta_br:J_heart_inlet","16813":"flow:RCR_aorta_br:J_heart_inlet","16814":"flow:RCR_aorta_br:J_heart_inlet","16815":"flow:RCR_aorta_br:J_heart_inlet","16816":"flow:RCR_aorta_br:J_heart_inlet","16817":"flow:RCR_aorta_br:J_heart_inlet","16818":"flow:RCR_aorta_br:J_heart_inlet","16819":"flow:RCR_aorta_br:J_heart_inlet","16820":"flow:RCR_aorta_br:J_heart_inlet","16821":"flow:RCR_aorta_br:J_heart_inlet","16822":"flow:RCR_aorta_br:J_heart_inlet","16823":"flow:RCR_aorta_br:J_heart_inlet","16824":"flow:RCR_aorta_br:J_heart_inlet","16825":"flow:RCR_aorta_br:J_heart_inlet","16826":"flow:RCR_aorta_br:J_heart_inlet","16827":"flow:RCR_aorta_br:J_heart_inlet","16828":"flow:RCR_aorta_br:J_heart_inlet","16829":"flow:RCR_aorta_br:J_heart_inlet","16830":"flow:RCR_aorta_br:J_heart_inlet","16831":"flow:RCR_aorta_br:J_heart_inlet","16832":"flow:RCR_aorta_br:J_heart_inlet","16833":"flow:RCR_aorta_br:J_heart_inlet","16834":"flow:RCR_aorta_br:J_heart_inlet","16835":"flow:RCR_aorta_br:J_heart_inlet","16836":"flow:RCR_aorta_br:J_heart_inlet","16837":"flow:RCR_aorta_br:J_heart_inlet","16838":"flow:RCR_aorta_br:J_heart_inlet","16839":"flow:RCR_aorta_br:J_heart_inlet","16840":"flow:RCR_aorta_br:J_heart_inlet","16841":"flow:RCR_aorta_br:J_heart_inlet","16842":"flow:RCR_aorta_br:J_heart_inlet","16843":"flow:RCR_aorta_br:J_heart_inlet","16844":"flow:RCR_aorta_br:J_heart_inlet","16845":"flow:RCR_aorta_br:J_heart_inlet","16846":"flow:RCR_aorta_br:J_heart_inlet","16847":"flow:RCR_aorta_br:J_heart_inlet","16848":"flow:RCR_aorta_br:J_heart_inlet","16849":"flow:RCR_aorta_br:J_heart_inlet","16850":"flow:RCR_aorta_br:J_heart_inlet","16851":"flow:RCR_aorta_br:J_heart_inlet","16852":"flow:RCR_aorta_br:J_heart_inlet","16853":"flow:RCR_aorta_br:J_heart_inlet","16854":"flow:RCR_aorta_br:J_heart_inlet","16855":"flow:RCR_aorta_br:J_heart_inlet","16856":"flow:RCR_aorta_br:J_heart_inlet","16857":"flow:RCR_aorta_br:J_heart_inlet","16858":"flow:RCR_aorta_br:J_heart_inlet","16859":"flow:RCR_aorta_br:J_heart_inlet","16860":"flow:RCR_aorta_br:J_heart_inlet","16861":"flow:RCR_aorta_br:J_heart_inlet","16862":"flow:RCR_aorta_br:J_heart_inlet","16863":"flow:RCR_aorta_br:J_heart_inlet","16864":"flow:RCR_aorta_br:J_heart_inlet","16865":"flow:RCR_aorta_br:J_heart_inlet","16866":"flow:RCR_aorta_br:J_heart_inlet","16867":"flow:RCR_aorta_br:J_heart_inlet","16868":"flow:RCR_aorta_br:J_heart_inlet","16869":"flow:RCR_aorta_br:J_heart_inlet","16870":"flow:RCR_aorta_br:J_heart_inlet","16871":"flow:RCR_aorta_br:J_heart_inlet","16872":"flow:RCR_aorta_br:J_heart_inlet","16873":"flow:RCR_aorta_br:J_heart_inlet","16874":"flow:RCR_aorta_br:J_heart_inlet","16875":"flow:RCR_aorta_br:J_heart_inlet","16876":"flow:RCR_aorta_br:J_heart_inlet","16877":"flow:RCR_aorta_br:J_heart_inlet","16878":"flow:RCR_aorta_br:J_heart_inlet","16879":"flow:RCR_aorta_br:J_heart_inlet","16880":"flow:RCR_aorta_br:J_heart_inlet","16881":"flow:RCR_aorta_br:J_heart_inlet","16882":"flow:RCR_aorta_br:J_heart_inlet","16883":"flow:RCR_aorta_br:J_heart_inlet","16884":"flow:RCR_aorta_br:J_heart_inlet","16885":"flow:RCR_aorta_br:J_heart_inlet","16886":"flow:RCR_aorta_br:J_heart_inlet","16887":"flow:RCR_aorta_br:J_heart_inlet","16888":"flow:RCR_aorta_br:J_heart_inlet","16889":"flow:RCR_aorta_br:J_heart_inlet","16890":"flow:RCR_aorta_br:J_heart_inlet","16891":"flow:RCR_aorta_br:J_heart_inlet","16892":"flow:RCR_aorta_br:J_heart_inlet","16893":"flow:RCR_aorta_br:J_heart_inlet","16894":"flow:RCR_aorta_br:J_heart_inlet","16895":"flow:RCR_aorta_br:J_heart_inlet","16896":"flow:RCR_aorta_br:J_heart_inlet","16897":"flow:RCR_aorta_br:J_heart_inlet","16898":"flow:RCR_aorta_br:J_heart_inlet","16899":"flow:RCR_aorta_br:J_heart_inlet","16900":"flow:RCR_aorta_br:J_heart_inlet","16901":"flow:RCR_aorta_br:J_heart_inlet","16902":"flow:RCR_aorta_br:J_heart_inlet","16903":"flow:RCR_aorta_br:J_heart_inlet","16904":"flow:RCR_aorta_br:J_heart_inlet","16905":"flow:RCR_aorta_br:J_heart_inlet","16906":"flow:RCR_aorta_br:J_heart_inlet","16907":"flow:RCR_aorta_br:J_heart_inlet","16908":"flow:RCR_aorta_br:J_heart_inlet","16909":"flow:RCR_aorta_br:J_heart_inlet","16910":"flow:RCR_aorta_br:J_heart_inlet","16911":"flow:RCR_aorta_br:J_heart_inlet","16912":"flow:RCR_aorta_br:J_heart_inlet","16913":"flow:RCR_aorta_br:J_heart_inlet","16914":"flow:RCR_aorta_br:J_heart_inlet","16915":"flow:RCR_aorta_br:J_heart_inlet","16916":"flow:RCR_aorta_br:J_heart_inlet","16917":"flow:RCR_aorta_br:J_heart_inlet","16918":"flow:RCR_aorta_br:J_heart_inlet","16919":"flow:RCR_aorta_br:J_heart_inlet","16920":"flow:RCR_aorta_br:J_heart_inlet","16921":"flow:RCR_aorta_br:J_heart_inlet","16922":"flow:RCR_aorta_br:J_heart_inlet","16923":"flow:RCR_aorta_br:J_heart_inlet","16924":"flow:RCR_aorta_br:J_heart_inlet","16925":"flow:RCR_aorta_br:J_heart_inlet","16926":"flow:RCR_aorta_br:J_heart_inlet","16927":"flow:RCR_aorta_br:J_heart_inlet","16928":"flow:RCR_aorta_br:J_heart_inlet","16929":"flow:RCR_aorta_br:J_heart_inlet","16930":"flow:RCR_aorta_br:J_heart_inlet","16931":"flow:RCR_aorta_br:J_heart_inlet","16932":"flow:RCR_aorta_br:J_heart_inlet","16933":"flow:RCR_aorta_br:J_heart_inlet","16934":"flow:RCR_aorta_br:J_heart_inlet","16935":"flow:RCR_aorta_br:J_heart_inlet","16936":"flow:RCR_aorta_br:J_heart_inlet","16937":"flow:RCR_aorta_br:J_heart_inlet","16938":"flow:RCR_aorta_br:J_heart_inlet","16939":"flow:RCR_aorta_br:J_heart_inlet","16940":"flow:RCR_aorta_br:J_heart_inlet","16941":"flow:RCR_aorta_br:J_heart_inlet","16942":"flow:RCR_aorta_br:J_heart_inlet","16943":"flow:RCR_aorta_br:J_heart_inlet","16944":"flow:RCR_aorta_br:J_heart_inlet","16945":"flow:RCR_aorta_br:J_heart_inlet","16946":"flow:RCR_aorta_br:J_heart_inlet","16947":"flow:RCR_aorta_br:J_heart_inlet","16948":"flow:RCR_aorta_br:J_heart_inlet","16949":"flow:RCR_aorta_br:J_heart_inlet","16950":"flow:RCR_aorta_br:J_heart_inlet","16951":"flow:RCR_aorta_br:J_heart_inlet","16952":"flow:RCR_aorta_br:J_heart_inlet","16953":"flow:RCR_aorta_br:J_heart_inlet","16954":"flow:RCR_aorta_br:J_heart_inlet","16955":"flow:RCR_aorta_br:J_heart_inlet","16956":"flow:RCR_aorta_br:J_heart_inlet","16957":"flow:RCR_aorta_br:J_heart_inlet","16958":"flow:RCR_aorta_br:J_heart_inlet","16959":"flow:RCR_aorta_br:J_heart_inlet","16960":"flow:RCR_aorta_br:J_heart_inlet","16961":"flow:RCR_aorta_br:J_heart_inlet","16962":"flow:RCR_aorta_br:J_heart_inlet","16963":"flow:RCR_aorta_br:J_heart_inlet","16964":"flow:RCR_aorta_br:J_heart_inlet","16965":"flow:RCR_aorta_br:J_heart_inlet","16966":"flow:RCR_aorta_br:J_heart_inlet","16967":"flow:RCR_aorta_br:J_heart_inlet","16968":"flow:RCR_aorta_br:J_heart_inlet","16969":"flow:RCR_aorta_br:J_heart_inlet","16970":"flow:RCR_aorta_br:J_heart_inlet","16971":"flow:RCR_aorta_br:J_heart_inlet","16972":"flow:RCR_aorta_br:J_heart_inlet","16973":"flow:RCR_aorta_br:J_heart_inlet","16974":"flow:RCR_aorta_br:J_heart_inlet","16975":"flow:RCR_aorta_br:J_heart_inlet","16976":"flow:RCR_aorta_br:J_heart_inlet","16977":"flow:RCR_aorta_br:J_heart_inlet","16978":"flow:RCR_aorta_br:J_heart_inlet","16979":"flow:RCR_aorta_br:J_heart_inlet","16980":"flow:RCR_aorta_br:J_heart_inlet","16981":"flow:RCR_aorta_br:J_heart_inlet","16982":"flow:RCR_aorta_br:J_heart_inlet","16983":"flow:RCR_aorta_br:J_heart_inlet","16984":"flow:RCR_aorta_br:J_heart_inlet","16985":"flow:RCR_aorta_br:J_heart_inlet","16986":"flow:RCR_aorta_br:J_heart_inlet","16987":"flow:RCR_aorta_br:J_heart_inlet","16988":"flow:RCR_aorta_br:J_heart_inlet","16989":"flow:RCR_aorta_br:J_heart_inlet","16990":"flow:RCR_aorta_br:J_heart_inlet","16991":"flow:RCR_aorta_br:J_heart_inlet","16992":"flow:RCR_aorta_br:J_heart_inlet","16993":"flow:RCR_aorta_br:J_heart_inlet","16994":"flow:RCR_aorta_br:J_heart_inlet","16995":"flow:RCR_aorta_br:J_heart_inlet","16996":"flow:RCR_aorta_br:J_heart_inlet","16997":"flow:RCR_aorta_br:J_heart_inlet","16998":"flow:RCR_aorta_br:J_heart_inlet","16999":"flow:RCR_aorta_br:J_heart_inlet","17000":"pressure:RCR_aorta_br:J_heart_inlet","17001":"pressure:RCR_aorta_br:J_heart_inlet","17002":"pressure:RCR_aorta_br:J_heart_inlet","17003":"pressure:RCR_aorta_br:J_heart_inlet","17004":"pressure:RCR_aorta_br:J_heart_inlet","17005":"pressure:RCR_aorta_br:J_heart_inlet","17006":"pressure:RCR_aorta_br:J_heart_inlet","17007":"pressure:RCR_aorta_br:J_heart_inlet","17008":"pressure:RCR_aorta_br:J_heart_inlet","17009":"pressure:RCR_aorta_br:J_heart_inlet","17010":"pressure:RCR_aorta_br:J_heart_inlet","17011":"pressure:RCR_aorta_br:J_heart_inlet","17012":"pressure:RCR_aorta_br:J_heart_inlet","17013":"pressure:RCR_aorta_br:J_heart_inlet","17014":"pressure:RCR_aorta_br:J_heart_inlet","17015":"pressure:RCR_aorta_br:J_heart_inlet","17016":"pressure:RCR_aorta_br:J_heart_inlet","17017":"pressure:RCR_aorta_br:J_heart_inlet","17018":"pressure:RCR_aorta_br:J_heart_inlet","17019":"pressure:RCR_aorta_br:J_heart_inlet","17020":"pressure:RCR_aorta_br:J_heart_inlet","17021":"pressure:RCR_aorta_br:J_heart_inlet","17022":"pressure:RCR_aorta_br:J_heart_inlet","17023":"pressure:RCR_aorta_br:J_heart_inlet","17024":"pressure:RCR_aorta_br:J_heart_inlet","17025":"pressure:RCR_aorta_br:J_heart_inlet","17026":"pressure:RCR_aorta_br:J_heart_inlet","17027":"pressure:RCR_aorta_br:J_heart_inlet","17028":"pressure:RCR_aorta_br:J_heart_inlet","17029":"pressure:RCR_aorta_br:J_heart_inlet","17030":"pressure:RCR_aorta_br:J_heart_inlet","17031":"pressure:RCR_aorta_br:J_heart_inlet","17032":"pressure:RCR_aorta_br:J_heart_inlet","17033":"pressure:RCR_aorta_br:J_heart_inlet","17034":"pressure:RCR_aorta_br:J_heart_inlet","17035":"pressure:RCR_aorta_br:J_heart_inlet","17036":"pressure:RCR_aorta_br:J_heart_inlet","17037":"pressure:RCR_aorta_br:J_heart_inlet","17038":"pressure:RCR_aorta_br:J_heart_inlet","17039":"pressure:RCR_aorta_br:J_heart_inlet","17040":"pressure:RCR_aorta_br:J_heart_inlet","17041":"pressure:RCR_aorta_br:J_heart_inlet","17042":"pressure:RCR_aorta_br:J_heart_inlet","17043":"pressure:RCR_aorta_br:J_heart_inlet","17044":"pressure:RCR_aorta_br:J_heart_inlet","17045":"pressure:RCR_aorta_br:J_heart_inlet","17046":"pressure:RCR_aorta_br:J_heart_inlet","17047":"pressure:RCR_aorta_br:J_heart_inlet","17048":"pressure:RCR_aorta_br:J_heart_inlet","17049":"pressure:RCR_aorta_br:J_heart_inlet","17050":"pressure:RCR_aorta_br:J_heart_inlet","17051":"pressure:RCR_aorta_br:J_heart_inlet","17052":"pressure:RCR_aorta_br:J_heart_inlet","17053":"pressure:RCR_aorta_br:J_heart_inlet","17054":"pressure:RCR_aorta_br:J_heart_inlet","17055":"pressure:RCR_aorta_br:J_heart_inlet","17056":"pressure:RCR_aorta_br:J_heart_inlet","17057":"pressure:RCR_aorta_br:J_heart_inlet","17058":"pressure:RCR_aorta_br:J_heart_inlet","17059":"pressure:RCR_aorta_br:J_heart_inlet","17060":"pressure:RCR_aorta_br:J_heart_inlet","17061":"pressure:RCR_aorta_br:J_heart_inlet","17062":"pressure:RCR_aorta_br:J_heart_inlet","17063":"pressure:RCR_aorta_br:J_heart_inlet","17064":"pressure:RCR_aorta_br:J_heart_inlet","17065":"pressure:RCR_aorta_br:J_heart_inlet","17066":"pressure:RCR_aorta_br:J_heart_inlet","17067":"pressure:RCR_aorta_br:J_heart_inlet","17068":"pressure:RCR_aorta_br:J_heart_inlet","17069":"pressure:RCR_aorta_br:J_heart_inlet","17070":"pressure:RCR_aorta_br:J_heart_inlet","17071":"pressure:RCR_aorta_br:J_heart_inlet","17072":"pressure:RCR_aorta_br:J_heart_inlet","17073":"pressure:RCR_aorta_br:J_heart_inlet","17074":"pressure:RCR_aorta_br:J_heart_inlet","17075":"pressure:RCR_aorta_br:J_heart_inlet","17076":"pressure:RCR_aorta_br:J_heart_inlet","17077":"pressure:RCR_aorta_br:J_heart_inlet","17078":"pressure:RCR_aorta_br:J_heart_inlet","17079":"pressure:RCR_aorta_br:J_heart_inlet","17080":"pressure:RCR_aorta_br:J_heart_inlet","17081":"pressure:RCR_aorta_br:J_heart_inlet","17082":"pressure:RCR_aorta_br:J_heart_inlet","17083":"pressure:RCR_aorta_br:J_heart_inlet","17084":"pressure:RCR_aorta_br:J_heart_inlet","17085":"pressure:RCR_aorta_br:J_heart_inlet","17086":"pressure:RCR_aorta_br:J_heart_inlet","17087":"pressure:RCR_aorta_br:J_heart_inlet","17088":"pressure:RCR_aorta_br:J_heart_inlet","17089":"pressure:RCR_aorta_br:J_heart_inlet","17090":"pressure:RCR_aorta_br:J_heart_inlet","17091":"pressure:RCR_aorta_br:J_heart_inlet","17092":"pressure:RCR_aorta_br:J_heart_inlet","17093":"pressure:RCR_aorta_br:J_heart_inlet","17094":"pressure:RCR_aorta_br:J_heart_inlet","17095":"pressure:RCR_aorta_br:J_heart_inlet","17096":"pressure:RCR_aorta_br:J_heart_inlet","17097":"pressure:RCR_aorta_br:J_heart_inlet","17098":"pressure:RCR_aorta_br:J_heart_inlet","17099":"pressure:RCR_aorta_br:J_heart_inlet","17100":"pressure:RCR_aorta_br:J_heart_inlet","17101":"pressure:RCR_aorta_br:J_heart_inlet","17102":"pressure:RCR_aorta_br:J_heart_inlet","17103":"pressure:RCR_aorta_br:J_heart_inlet","17104":"pressure:RCR_aorta_br:J_heart_inlet","17105":"pressure:RCR_aorta_br:J_heart_inlet","17106":"pressure:RCR_aorta_br:J_heart_inlet","17107":"pressure:RCR_aorta_br:J_heart_inlet","17108":"pressure:RCR_aorta_br:J_heart_inlet","17109":"pressure:RCR_aorta_br:J_heart_inlet","17110":"pressure:RCR_aorta_br:J_heart_inlet","17111":"pressure:RCR_aorta_br:J_heart_inlet","17112":"pressure:RCR_aorta_br:J_heart_inlet","17113":"pressure:RCR_aorta_br:J_heart_inlet","17114":"pressure:RCR_aorta_br:J_heart_inlet","17115":"pressure:RCR_aorta_br:J_heart_inlet","17116":"pressure:RCR_aorta_br:J_heart_inlet","17117":"pressure:RCR_aorta_br:J_heart_inlet","17118":"pressure:RCR_aorta_br:J_heart_inlet","17119":"pressure:RCR_aorta_br:J_heart_inlet","17120":"pressure:RCR_aorta_br:J_heart_inlet","17121":"pressure:RCR_aorta_br:J_heart_inlet","17122":"pressure:RCR_aorta_br:J_heart_inlet","17123":"pressure:RCR_aorta_br:J_heart_inlet","17124":"pressure:RCR_aorta_br:J_heart_inlet","17125":"pressure:RCR_aorta_br:J_heart_inlet","17126":"pressure:RCR_aorta_br:J_heart_inlet","17127":"pressure:RCR_aorta_br:J_heart_inlet","17128":"pressure:RCR_aorta_br:J_heart_inlet","17129":"pressure:RCR_aorta_br:J_heart_inlet","17130":"pressure:RCR_aorta_br:J_heart_inlet","17131":"pressure:RCR_aorta_br:J_heart_inlet","17132":"pressure:RCR_aorta_br:J_heart_inlet","17133":"pressure:RCR_aorta_br:J_heart_inlet","17134":"pressure:RCR_aorta_br:J_heart_inlet","17135":"pressure:RCR_aorta_br:J_heart_inlet","17136":"pressure:RCR_aorta_br:J_heart_inlet","17137":"pressure:RCR_aorta_br:J_heart_inlet","17138":"pressure:RCR_aorta_br:J_heart_inlet","17139":"pressure:RCR_aorta_br:J_heart_inlet","17140":"pressure:RCR_aorta_br:J_heart_inlet","17141":"pressure:RCR_aorta_br:J_heart_inlet","17142":"pressure:RCR_aorta_br:J_heart_inlet","17143":"pressure:RCR_aorta_br:J_heart_inlet","17144":"pressure:RCR_aorta_br:J_heart_inlet","17145":"pressure:RCR_aorta_br:J_heart_inlet","17146":"pressure:RCR_aorta_br:J_heart_inlet","17147":"pressure:RCR_aorta_br:J_heart_inlet","17148":"pressure:RCR_aorta_br:J_heart_inlet","17149":"pressure:RCR_aorta_br:J_heart_inlet","17150":"pressure:RCR_aorta_br:J_heart_inlet","17151":"pressure:RCR_aorta_br:J_heart_inlet","17152":"pressure:RCR_aorta_br:J_heart_inlet","17153":"pressure:RCR_aorta_br:J_heart_inlet","17154":"pressure:RCR_aorta_br:J_heart_inlet","17155":"pressure:RCR_aorta_br:J_heart_inlet","17156":"pressure:RCR_aorta_br:J_heart_inlet","17157":"pressure:RCR_aorta_br:J_heart_inlet","17158":"pressure:RCR_aorta_br:J_heart_inlet","17159":"pressure:RCR_aorta_br:J_heart_inlet","17160":"pressure:RCR_aorta_br:J_heart_inlet","17161":"pressure:RCR_aorta_br:J_heart_inlet","17162":"pressure:RCR_aorta_br:J_heart_inlet","17163":"pressure:RCR_aorta_br:J_heart_inlet","17164":"pressure:RCR_aorta_br:J_heart_inlet","17165":"pressure:RCR_aorta_br:J_heart_inlet","17166":"pressure:RCR_aorta_br:J_heart_inlet","17167":"pressure:RCR_aorta_br:J_heart_inlet","17168":"pressure:RCR_aorta_br:J_heart_inlet","17169":"pressure:RCR_aorta_br:J_heart_inlet","17170":"pressure:RCR_aorta_br:J_heart_inlet","17171":"pressure:RCR_aorta_br:J_heart_inlet","17172":"pressure:RCR_aorta_br:J_heart_inlet","17173":"pressure:RCR_aorta_br:J_heart_inlet","17174":"pressure:RCR_aorta_br:J_heart_inlet","17175":"pressure:RCR_aorta_br:J_heart_inlet","17176":"pressure:RCR_aorta_br:J_heart_inlet","17177":"pressure:RCR_aorta_br:J_heart_inlet","17178":"pressure:RCR_aorta_br:J_heart_inlet","17179":"pressure:RCR_aorta_br:J_heart_inlet","17180":"pressure:RCR_aorta_br:J_heart_inlet","17181":"pressure:RCR_aorta_br:J_heart_inlet","17182":"pressure:RCR_aorta_br:J_heart_inlet","17183":"pressure:RCR_aorta_br:J_heart_inlet","17184":"pressure:RCR_aorta_br:J_heart_inlet","17185":"pressure:RCR_aorta_br:J_heart_inlet","17186":"pressure:RCR_aorta_br:J_heart_inlet","17187":"pressure:RCR_aorta_br:J_heart_inlet","17188":"pressure:RCR_aorta_br:J_heart_inlet","17189":"pressure:RCR_aorta_br:J_heart_inlet","17190":"pressure:RCR_aorta_br:J_heart_inlet","17191":"pressure:RCR_aorta_br:J_heart_inlet","17192":"pressure:RCR_aorta_br:J_heart_inlet","17193":"pressure:RCR_aorta_br:J_heart_inlet","17194":"pressure:RCR_aorta_br:J_heart_inlet","17195":"pressure:RCR_aorta_br:J_heart_inlet","17196":"pressure:RCR_aorta_br:J_heart_inlet","17197":"pressure:RCR_aorta_br:J_heart_inlet","17198":"pressure:RCR_aorta_br:J_heart_inlet","17199":"pressure:RCR_aorta_br:J_heart_inlet","17200":"pressure:RCR_aorta_br:J_heart_inlet","17201":"pressure:RCR_aorta_br:J_heart_inlet","17202":"pressure:RCR_aorta_br:J_heart_inlet","17203":"pressure:RCR_aorta_br:J_heart_inlet","17204":"pressure:RCR_aorta_br:J_heart_inlet","17205":"pressure:RCR_aorta_br:J_heart_inlet","17206":"pressure:RCR_aorta_br:J_heart_inlet","17207":"pressure:RCR_aorta_br:J_heart_inlet","17208":"pressure:RCR_aorta_br:J_heart_inlet","17209":"pressure:RCR_aorta_br:J_heart_inlet","17210":"pressure:RCR_aorta_br:J_heart_inlet","17211":"pressure:RCR_aorta_br:J_heart_inlet","17212":"pressure:RCR_aorta_br:J_heart_inlet","17213":"pressure:RCR_aorta_br:J_heart_inlet","17214":"pressure:RCR_aorta_br:J_heart_inlet","17215":"pressure:RCR_aorta_br:J_heart_inlet","17216":"pressure:RCR_aorta_br:J_heart_inlet","17217":"pressure:RCR_aorta_br:J_heart_inlet","17218":"pressure:RCR_aorta_br:J_heart_inlet","17219":"pressure:RCR_aorta_br:J_heart_inlet","17220":"pressure:RCR_aorta_br:J_heart_inlet","17221":"pressure:RCR_aorta_br:J_heart_inlet","17222":"pressure:RCR_aorta_br:J_heart_inlet","17223":"pressure:RCR_aorta_br:J_heart_inlet","17224":"pressure:RCR_aorta_br:J_heart_inlet","17225":"pressure:RCR_aorta_br:J_heart_inlet","17226":"pressure:RCR_aorta_br:J_heart_inlet","17227":"pressure:RCR_aorta_br:J_heart_inlet","17228":"pressure:RCR_aorta_br:J_heart_inlet","17229":"pressure:RCR_aorta_br:J_heart_inlet","17230":"pressure:RCR_aorta_br:J_heart_inlet","17231":"pressure:RCR_aorta_br:J_heart_inlet","17232":"pressure:RCR_aorta_br:J_heart_inlet","17233":"pressure:RCR_aorta_br:J_heart_inlet","17234":"pressure:RCR_aorta_br:J_heart_inlet","17235":"pressure:RCR_aorta_br:J_heart_inlet","17236":"pressure:RCR_aorta_br:J_heart_inlet","17237":"pressure:RCR_aorta_br:J_heart_inlet","17238":"pressure:RCR_aorta_br:J_heart_inlet","17239":"pressure:RCR_aorta_br:J_heart_inlet","17240":"pressure:RCR_aorta_br:J_heart_inlet","17241":"pressure:RCR_aorta_br:J_heart_inlet","17242":"pressure:RCR_aorta_br:J_heart_inlet","17243":"pressure:RCR_aorta_br:J_heart_inlet","17244":"pressure:RCR_aorta_br:J_heart_inlet","17245":"pressure:RCR_aorta_br:J_heart_inlet","17246":"pressure:RCR_aorta_br:J_heart_inlet","17247":"pressure:RCR_aorta_br:J_heart_inlet","17248":"pressure:RCR_aorta_br:J_heart_inlet","17249":"pressure:RCR_aorta_br:J_heart_inlet","17250":"pressure:RCR_aorta_br:J_heart_inlet","17251":"pressure:RCR_aorta_br:J_heart_inlet","17252":"pressure:RCR_aorta_br:J_heart_inlet","17253":"pressure:RCR_aorta_br:J_heart_inlet","17254":"pressure:RCR_aorta_br:J_heart_inlet","17255":"pressure:RCR_aorta_br:J_heart_inlet","17256":"pressure:RCR_aorta_br:J_heart_inlet","17257":"pressure:RCR_aorta_br:J_heart_inlet","17258":"pressure:RCR_aorta_br:J_heart_inlet","17259":"pressure:RCR_aorta_br:J_heart_inlet","17260":"pressure:RCR_aorta_br:J_heart_inlet","17261":"pressure:RCR_aorta_br:J_heart_inlet","17262":"pressure:RCR_aorta_br:J_heart_inlet","17263":"pressure:RCR_aorta_br:J_heart_inlet","17264":"pressure:RCR_aorta_br:J_heart_inlet","17265":"pressure:RCR_aorta_br:J_heart_inlet","17266":"pressure:RCR_aorta_br:J_heart_inlet","17267":"pressure:RCR_aorta_br:J_heart_inlet","17268":"pressure:RCR_aorta_br:J_heart_inlet","17269":"pressure:RCR_aorta_br:J_heart_inlet","17270":"pressure:RCR_aorta_br:J_heart_inlet","17271":"pressure:RCR_aorta_br:J_heart_inlet","17272":"pressure:RCR_aorta_br:J_heart_inlet","17273":"pressure:RCR_aorta_br:J_heart_inlet","17274":"pressure:RCR_aorta_br:J_heart_inlet","17275":"pressure:RCR_aorta_br:J_heart_inlet","17276":"pressure:RCR_aorta_br:J_heart_inlet","17277":"pressure:RCR_aorta_br:J_heart_inlet","17278":"pressure:RCR_aorta_br:J_heart_inlet","17279":"pressure:RCR_aorta_br:J_heart_inlet","17280":"pressure:RCR_aorta_br:J_heart_inlet","17281":"pressure:RCR_aorta_br:J_heart_inlet","17282":"pressure:RCR_aorta_br:J_heart_inlet","17283":"pressure:RCR_aorta_br:J_heart_inlet","17284":"pressure:RCR_aorta_br:J_heart_inlet","17285":"pressure:RCR_aorta_br:J_heart_inlet","17286":"pressure:RCR_aorta_br:J_heart_inlet","17287":"pressure:RCR_aorta_br:J_heart_inlet","17288":"pressure:RCR_aorta_br:J_heart_inlet","17289":"pressure:RCR_aorta_br:J_heart_inlet","17290":"pressure:RCR_aorta_br:J_heart_inlet","17291":"pressure:RCR_aorta_br:J_heart_inlet","17292":"pressure:RCR_aorta_br:J_heart_inlet","17293":"pressure:RCR_aorta_br:J_heart_inlet","17294":"pressure:RCR_aorta_br:J_heart_inlet","17295":"pressure:RCR_aorta_br:J_heart_inlet","17296":"pressure:RCR_aorta_br:J_heart_inlet","17297":"pressure:RCR_aorta_br:J_heart_inlet","17298":"pressure:RCR_aorta_br:J_heart_inlet","17299":"pressure:RCR_aorta_br:J_heart_inlet","17300":"pressure:RCR_aorta_br:J_heart_inlet","17301":"pressure:RCR_aorta_br:J_heart_inlet","17302":"pressure:RCR_aorta_br:J_heart_inlet","17303":"pressure:RCR_aorta_br:J_heart_inlet","17304":"pressure:RCR_aorta_br:J_heart_inlet","17305":"pressure:RCR_aorta_br:J_heart_inlet","17306":"pressure:RCR_aorta_br:J_heart_inlet","17307":"pressure:RCR_aorta_br:J_heart_inlet","17308":"pressure:RCR_aorta_br:J_heart_inlet","17309":"pressure:RCR_aorta_br:J_heart_inlet","17310":"pressure:RCR_aorta_br:J_heart_inlet","17311":"pressure:RCR_aorta_br:J_heart_inlet","17312":"pressure:RCR_aorta_br:J_heart_inlet","17313":"pressure:RCR_aorta_br:J_heart_inlet","17314":"pressure:RCR_aorta_br:J_heart_inlet","17315":"pressure:RCR_aorta_br:J_heart_inlet","17316":"pressure:RCR_aorta_br:J_heart_inlet","17317":"pressure:RCR_aorta_br:J_heart_inlet","17318":"pressure:RCR_aorta_br:J_heart_inlet","17319":"pressure:RCR_aorta_br:J_heart_inlet","17320":"pressure:RCR_aorta_br:J_heart_inlet","17321":"pressure:RCR_aorta_br:J_heart_inlet","17322":"pressure:RCR_aorta_br:J_heart_inlet","17323":"pressure:RCR_aorta_br:J_heart_inlet","17324":"pressure:RCR_aorta_br:J_heart_inlet","17325":"pressure:RCR_aorta_br:J_heart_inlet","17326":"pressure:RCR_aorta_br:J_heart_inlet","17327":"pressure:RCR_aorta_br:J_heart_inlet","17328":"pressure:RCR_aorta_br:J_heart_inlet","17329":"pressure:RCR_aorta_br:J_heart_inlet","17330":"pressure:RCR_aorta_br:J_heart_inlet","17331":"pressure:RCR_aorta_br:J_heart_inlet","17332":"pressure:RCR_aorta_br:J_heart_inlet","17333":"pressure:RCR_aorta_br:J_heart_inlet","17334":"pressure:RCR_aorta_br:J_heart_inlet","17335":"pressure:RCR_aorta_br:J_heart_inlet","17336":"pressure:RCR_aorta_br:J_heart_inlet","17337":"pressure:RCR_aorta_br:J_heart_inlet","17338":"pressure:RCR_aorta_br:J_heart_inlet","17339":"pressure:RCR_aorta_br:J_heart_inlet","17340":"pressure:RCR_aorta_br:J_heart_inlet","17341":"pressure:RCR_aorta_br:J_heart_inlet","17342":"pressure:RCR_aorta_br:J_heart_inlet","17343":"pressure:RCR_aorta_br:J_heart_inlet","17344":"pressure:RCR_aorta_br:J_heart_inlet","17345":"pressure:RCR_aorta_br:J_heart_inlet","17346":"pressure:RCR_aorta_br:J_heart_inlet","17347":"pressure:RCR_aorta_br:J_heart_inlet","17348":"pressure:RCR_aorta_br:J_heart_inlet","17349":"pressure:RCR_aorta_br:J_heart_inlet","17350":"pressure:RCR_aorta_br:J_heart_inlet","17351":"pressure:RCR_aorta_br:J_heart_inlet","17352":"pressure:RCR_aorta_br:J_heart_inlet","17353":"pressure:RCR_aorta_br:J_heart_inlet","17354":"pressure:RCR_aorta_br:J_heart_inlet","17355":"pressure:RCR_aorta_br:J_heart_inlet","17356":"pressure:RCR_aorta_br:J_heart_inlet","17357":"pressure:RCR_aorta_br:J_heart_inlet","17358":"pressure:RCR_aorta_br:J_heart_inlet","17359":"pressure:RCR_aorta_br:J_heart_inlet","17360":"pressure:RCR_aorta_br:J_heart_inlet","17361":"pressure:RCR_aorta_br:J_heart_inlet","17362":"pressure:RCR_aorta_br:J_heart_inlet","17363":"pressure:RCR_aorta_br:J_heart_inlet","17364":"pressure:RCR_aorta_br:J_heart_inlet","17365":"pressure:RCR_aorta_br:J_heart_inlet","17366":"pressure:RCR_aorta_br:J_heart_inlet","17367":"pressure:RCR_aorta_br:J_heart_inlet","17368":"pressure:RCR_aorta_br:J_heart_inlet","17369":"pressure:RCR_aorta_br:J_heart_inlet","17370":"pressure:RCR_aorta_br:J_heart_inlet","17371":"pressure:RCR_aorta_br:J_heart_inlet","17372":"pressure:RCR_aorta_br:J_heart_inlet","17373":"pressure:RCR_aorta_br:J_heart_inlet","17374":"pressure:RCR_aorta_br:J_heart_inlet","17375":"pressure:RCR_aorta_br:J_heart_inlet","17376":"pressure:RCR_aorta_br:J_heart_inlet","17377":"pressure:RCR_aorta_br:J_heart_inlet","17378":"pressure:RCR_aorta_br:J_heart_inlet","17379":"pressure:RCR_aorta_br:J_heart_inlet","17380":"pressure:RCR_aorta_br:J_heart_inlet","17381":"pressure:RCR_aorta_br:J_heart_inlet","17382":"pressure:RCR_aorta_br:J_heart_inlet","17383":"pressure:RCR_aorta_br:J_heart_inlet","17384":"pressure:RCR_aorta_br:J_heart_inlet","17385":"pressure:RCR_aorta_br:J_heart_inlet","17386":"pressure:RCR_aorta_br:J_heart_inlet","17387":"pressure:RCR_aorta_br:J_heart_inlet","17388":"pressure:RCR_aorta_br:J_heart_inlet","17389":"pressure:RCR_aorta_br:J_heart_inlet","17390":"pressure:RCR_aorta_br:J_heart_inlet","17391":"pressure:RCR_aorta_br:J_heart_inlet","17392":"pressure:RCR_aorta_br:J_heart_inlet","17393":"pressure:RCR_aorta_br:J_heart_inlet","17394":"pressure:RCR_aorta_br:J_heart_inlet","17395":"pressure:RCR_aorta_br:J_heart_inlet","17396":"pressure:RCR_aorta_br:J_heart_inlet","17397":"pressure:RCR_aorta_br:J_heart_inlet","17398":"pressure:RCR_aorta_br:J_heart_inlet","17399":"pressure:RCR_aorta_br:J_heart_inlet","17400":"pressure:RCR_aorta_br:J_heart_inlet","17401":"pressure:RCR_aorta_br:J_heart_inlet","17402":"pressure:RCR_aorta_br:J_heart_inlet","17403":"pressure:RCR_aorta_br:J_heart_inlet","17404":"pressure:RCR_aorta_br:J_heart_inlet","17405":"pressure:RCR_aorta_br:J_heart_inlet","17406":"pressure:RCR_aorta_br:J_heart_inlet","17407":"pressure:RCR_aorta_br:J_heart_inlet","17408":"pressure:RCR_aorta_br:J_heart_inlet","17409":"pressure:RCR_aorta_br:J_heart_inlet","17410":"pressure:RCR_aorta_br:J_heart_inlet","17411":"pressure:RCR_aorta_br:J_heart_inlet","17412":"pressure:RCR_aorta_br:J_heart_inlet","17413":"pressure:RCR_aorta_br:J_heart_inlet","17414":"pressure:RCR_aorta_br:J_heart_inlet","17415":"pressure:RCR_aorta_br:J_heart_inlet","17416":"pressure:RCR_aorta_br:J_heart_inlet","17417":"pressure:RCR_aorta_br:J_heart_inlet","17418":"pressure:RCR_aorta_br:J_heart_inlet","17419":"pressure:RCR_aorta_br:J_heart_inlet","17420":"pressure:RCR_aorta_br:J_heart_inlet","17421":"pressure:RCR_aorta_br:J_heart_inlet","17422":"pressure:RCR_aorta_br:J_heart_inlet","17423":"pressure:RCR_aorta_br:J_heart_inlet","17424":"pressure:RCR_aorta_br:J_heart_inlet","17425":"pressure:RCR_aorta_br:J_heart_inlet","17426":"pressure:RCR_aorta_br:J_heart_inlet","17427":"pressure:RCR_aorta_br:J_heart_inlet","17428":"pressure:RCR_aorta_br:J_heart_inlet","17429":"pressure:RCR_aorta_br:J_heart_inlet","17430":"pressure:RCR_aorta_br:J_heart_inlet","17431":"pressure:RCR_aorta_br:J_heart_inlet","17432":"pressure:RCR_aorta_br:J_heart_inlet","17433":"pressure:RCR_aorta_br:J_heart_inlet","17434":"pressure:RCR_aorta_br:J_heart_inlet","17435":"pressure:RCR_aorta_br:J_heart_inlet","17436":"pressure:RCR_aorta_br:J_heart_inlet","17437":"pressure:RCR_aorta_br:J_heart_inlet","17438":"pressure:RCR_aorta_br:J_heart_inlet","17439":"pressure:RCR_aorta_br:J_heart_inlet","17440":"pressure:RCR_aorta_br:J_heart_inlet","17441":"pressure:RCR_aorta_br:J_heart_inlet","17442":"pressure:RCR_aorta_br:J_heart_inlet","17443":"pressure:RCR_aorta_br:J_heart_inlet","17444":"pressure:RCR_aorta_br:J_heart_inlet","17445":"pressure:RCR_aorta_br:J_heart_inlet","17446":"pressure:RCR_aorta_br:J_heart_inlet","17447":"pressure:RCR_aorta_br:J_heart_inlet","17448":"pressure:RCR_aorta_br:J_heart_inlet","17449":"pressure:RCR_aorta_br:J_heart_inlet","17450":"pressure:RCR_aorta_br:J_heart_inlet","17451":"pressure:RCR_aorta_br:J_heart_inlet","17452":"pressure:RCR_aorta_br:J_heart_inlet","17453":"pressure:RCR_aorta_br:J_heart_inlet","17454":"pressure:RCR_aorta_br:J_heart_inlet","17455":"pressure:RCR_aorta_br:J_heart_inlet","17456":"pressure:RCR_aorta_br:J_heart_inlet","17457":"pressure:RCR_aorta_br:J_heart_inlet","17458":"pressure:RCR_aorta_br:J_heart_inlet","17459":"pressure:RCR_aorta_br:J_heart_inlet","17460":"pressure:RCR_aorta_br:J_heart_inlet","17461":"pressure:RCR_aorta_br:J_heart_inlet","17462":"pressure:RCR_aorta_br:J_heart_inlet","17463":"pressure:RCR_aorta_br:J_heart_inlet","17464":"pressure:RCR_aorta_br:J_heart_inlet","17465":"pressure:RCR_aorta_br:J_heart_inlet","17466":"pressure:RCR_aorta_br:J_heart_inlet","17467":"pressure:RCR_aorta_br:J_heart_inlet","17468":"pressure:RCR_aorta_br:J_heart_inlet","17469":"pressure:RCR_aorta_br:J_heart_inlet","17470":"pressure:RCR_aorta_br:J_heart_inlet","17471":"pressure:RCR_aorta_br:J_heart_inlet","17472":"pressure:RCR_aorta_br:J_heart_inlet","17473":"pressure:RCR_aorta_br:J_heart_inlet","17474":"pressure:RCR_aorta_br:J_heart_inlet","17475":"pressure:RCR_aorta_br:J_heart_inlet","17476":"pressure:RCR_aorta_br:J_heart_inlet","17477":"pressure:RCR_aorta_br:J_heart_inlet","17478":"pressure:RCR_aorta_br:J_heart_inlet","17479":"pressure:RCR_aorta_br:J_heart_inlet","17480":"pressure:RCR_aorta_br:J_heart_inlet","17481":"pressure:RCR_aorta_br:J_heart_inlet","17482":"pressure:RCR_aorta_br:J_heart_inlet","17483":"pressure:RCR_aorta_br:J_heart_inlet","17484":"pressure:RCR_aorta_br:J_heart_inlet","17485":"pressure:RCR_aorta_br:J_heart_inlet","17486":"pressure:RCR_aorta_br:J_heart_inlet","17487":"pressure:RCR_aorta_br:J_heart_inlet","17488":"pressure:RCR_aorta_br:J_heart_inlet","17489":"pressure:RCR_aorta_br:J_heart_inlet","17490":"pressure:RCR_aorta_br:J_heart_inlet","17491":"pressure:RCR_aorta_br:J_heart_inlet","17492":"pressure:RCR_aorta_br:J_heart_inlet","17493":"pressure:RCR_aorta_br:J_heart_inlet","17494":"pressure:RCR_aorta_br:J_heart_inlet","17495":"pressure:RCR_aorta_br:J_heart_inlet","17496":"pressure:RCR_aorta_br:J_heart_inlet","17497":"pressure:RCR_aorta_br:J_heart_inlet","17498":"pressure:RCR_aorta_br:J_heart_inlet","17499":"pressure:RCR_aorta_br:J_heart_inlet","17500":"pressure:RCR_aorta_br:J_heart_inlet","17501":"pressure:RCR_aorta_br:J_heart_inlet","17502":"pressure:RCR_aorta_br:J_heart_inlet","17503":"pressure:RCR_aorta_br:J_heart_inlet","17504":"pressure:RCR_aorta_br:J_heart_inlet","17505":"pressure:RCR_aorta_br:J_heart_inlet","17506":"pressure:RCR_aorta_br:J_heart_inlet","17507":"pressure:RCR_aorta_br:J_heart_inlet","17508":"pressure:RCR_aorta_br:J_heart_inlet","17509":"pressure:RCR_aorta_br:J_heart_inlet","17510":"pressure:RCR_aorta_br:J_heart_inlet","17511":"pressure:RCR_aorta_br:J_heart_inlet","17512":"pressure:RCR_aorta_br:J_heart_inlet","17513":"pressure:RCR_aorta_br:J_heart_inlet","17514":"pressure:RCR_aorta_br:J_heart_inlet","17515":"pressure:RCR_aorta_br:J_heart_inlet","17516":"pressure:RCR_aorta_br:J_heart_inlet","17517":"pressure:RCR_aorta_br:J_heart_inlet","17518":"pressure:RCR_aorta_br:J_heart_inlet","17519":"pressure:RCR_aorta_br:J_heart_inlet","17520":"pressure:RCR_aorta_br:J_heart_inlet","17521":"pressure:RCR_aorta_br:J_heart_inlet","17522":"pressure:RCR_aorta_br:J_heart_inlet","17523":"pressure:RCR_aorta_br:J_heart_inlet","17524":"pressure:RCR_aorta_br:J_heart_inlet","17525":"pressure:RCR_aorta_br:J_heart_inlet","17526":"pressure:RCR_aorta_br:J_heart_inlet","17527":"pressure:RCR_aorta_br:J_heart_inlet","17528":"pressure:RCR_aorta_br:J_heart_inlet","17529":"pressure:RCR_aorta_br:J_heart_inlet","17530":"pressure:RCR_aorta_br:J_heart_inlet","17531":"pressure:RCR_aorta_br:J_heart_inlet","17532":"pressure:RCR_aorta_br:J_heart_inlet","17533":"pressure:RCR_aorta_br:J_heart_inlet","17534":"pressure:RCR_aorta_br:J_heart_inlet","17535":"pressure:RCR_aorta_br:J_heart_inlet","17536":"pressure:RCR_aorta_br:J_heart_inlet","17537":"pressure:RCR_aorta_br:J_heart_inlet","17538":"pressure:RCR_aorta_br:J_heart_inlet","17539":"pressure:RCR_aorta_br:J_heart_inlet","17540":"pressure:RCR_aorta_br:J_heart_inlet","17541":"pressure:RCR_aorta_br:J_heart_inlet","17542":"pressure:RCR_aorta_br:J_heart_inlet","17543":"pressure:RCR_aorta_br:J_heart_inlet","17544":"pressure:RCR_aorta_br:J_heart_inlet","17545":"pressure:RCR_aorta_br:J_heart_inlet","17546":"pressure:RCR_aorta_br:J_heart_inlet","17547":"pressure:RCR_aorta_br:J_heart_inlet","17548":"pressure:RCR_aorta_br:J_heart_inlet","17549":"pressure:RCR_aorta_br:J_heart_inlet","17550":"pressure:RCR_aorta_br:J_heart_inlet","17551":"pressure:RCR_aorta_br:J_heart_inlet","17552":"pressure:RCR_aorta_br:J_heart_inlet","17553":"pressure:RCR_aorta_br:J_heart_inlet","17554":"pressure:RCR_aorta_br:J_heart_inlet","17555":"pressure:RCR_aorta_br:J_heart_inlet","17556":"pressure:RCR_aorta_br:J_heart_inlet","17557":"pressure:RCR_aorta_br:J_heart_inlet","17558":"pressure:RCR_aorta_br:J_heart_inlet","17559":"pressure:RCR_aorta_br:J_heart_inlet","17560":"pressure:RCR_aorta_br:J_heart_inlet","17561":"pressure:RCR_aorta_br:J_heart_inlet","17562":"pressure:RCR_aorta_br:J_heart_inlet","17563":"pressure:RCR_aorta_br:J_heart_inlet","17564":"pressure:RCR_aorta_br:J_heart_inlet","17565":"pressure:RCR_aorta_br:J_heart_inlet","17566":"pressure:RCR_aorta_br:J_heart_inlet","17567":"pressure:RCR_aorta_br:J_heart_inlet","17568":"pressure:RCR_aorta_br:J_heart_inlet","17569":"pressure:RCR_aorta_br:J_heart_inlet","17570":"pressure:RCR_aorta_br:J_heart_inlet","17571":"pressure:RCR_aorta_br:J_heart_inlet","17572":"pressure:RCR_aorta_br:J_heart_inlet","17573":"pressure:RCR_aorta_br:J_heart_inlet","17574":"pressure:RCR_aorta_br:J_heart_inlet","17575":"pressure:RCR_aorta_br:J_heart_inlet","17576":"pressure:RCR_aorta_br:J_heart_inlet","17577":"pressure:RCR_aorta_br:J_heart_inlet","17578":"pressure:RCR_aorta_br:J_heart_inlet","17579":"pressure:RCR_aorta_br:J_heart_inlet","17580":"pressure:RCR_aorta_br:J_heart_inlet","17581":"pressure:RCR_aorta_br:J_heart_inlet","17582":"pressure:RCR_aorta_br:J_heart_inlet","17583":"pressure:RCR_aorta_br:J_heart_inlet","17584":"pressure:RCR_aorta_br:J_heart_inlet","17585":"pressure:RCR_aorta_br:J_heart_inlet","17586":"pressure:RCR_aorta_br:J_heart_inlet","17587":"pressure:RCR_aorta_br:J_heart_inlet","17588":"pressure:RCR_aorta_br:J_heart_inlet","17589":"pressure:RCR_aorta_br:J_heart_inlet","17590":"pressure:RCR_aorta_br:J_heart_inlet","17591":"pressure:RCR_aorta_br:J_heart_inlet","17592":"pressure:RCR_aorta_br:J_heart_inlet","17593":"pressure:RCR_aorta_br:J_heart_inlet","17594":"pressure:RCR_aorta_br:J_heart_inlet","17595":"pressure:RCR_aorta_br:J_heart_inlet","17596":"pressure:RCR_aorta_br:J_heart_inlet","17597":"pressure:RCR_aorta_br:J_heart_inlet","17598":"pressure:RCR_aorta_br:J_heart_inlet","17599":"pressure:RCR_aorta_br:J_heart_inlet","17600":"pressure:RCR_aorta_br:J_heart_inlet","17601":"pressure:RCR_aorta_br:J_heart_inlet","17602":"pressure:RCR_aorta_br:J_heart_inlet","17603":"pressure:RCR_aorta_br:J_heart_inlet","17604":"pressure:RCR_aorta_br:J_heart_inlet","17605":"pressure:RCR_aorta_br:J_heart_inlet","17606":"pressure:RCR_aorta_br:J_heart_inlet","17607":"pressure:RCR_aorta_br:J_heart_inlet","17608":"pressure:RCR_aorta_br:J_heart_inlet","17609":"pressure:RCR_aorta_br:J_heart_inlet","17610":"pressure:RCR_aorta_br:J_heart_inlet","17611":"pressure:RCR_aorta_br:J_heart_inlet","17612":"pressure:RCR_aorta_br:J_heart_inlet","17613":"pressure:RCR_aorta_br:J_heart_inlet","17614":"pressure:RCR_aorta_br:J_heart_inlet","17615":"pressure:RCR_aorta_br:J_heart_inlet","17616":"pressure:RCR_aorta_br:J_heart_inlet","17617":"pressure:RCR_aorta_br:J_heart_inlet","17618":"pressure:RCR_aorta_br:J_heart_inlet","17619":"pressure:RCR_aorta_br:J_heart_inlet","17620":"pressure:RCR_aorta_br:J_heart_inlet","17621":"pressure:RCR_aorta_br:J_heart_inlet","17622":"pressure:RCR_aorta_br:J_heart_inlet","17623":"pressure:RCR_aorta_br:J_heart_inlet","17624":"pressure:RCR_aorta_br:J_heart_inlet","17625":"pressure:RCR_aorta_br:J_heart_inlet","17626":"pressure:RCR_aorta_br:J_heart_inlet","17627":"pressure:RCR_aorta_br:J_heart_inlet","17628":"pressure:RCR_aorta_br:J_heart_inlet","17629":"pressure:RCR_aorta_br:J_heart_inlet","17630":"pressure:RCR_aorta_br:J_heart_inlet","17631":"pressure:RCR_aorta_br:J_heart_inlet","17632":"pressure:RCR_aorta_br:J_heart_inlet","17633":"pressure:RCR_aorta_br:J_heart_inlet","17634":"pressure:RCR_aorta_br:J_heart_inlet","17635":"pressure:RCR_aorta_br:J_heart_inlet","17636":"pressure:RCR_aorta_br:J_heart_inlet","17637":"pressure:RCR_aorta_br:J_heart_inlet","17638":"pressure:RCR_aorta_br:J_heart_inlet","17639":"pressure:RCR_aorta_br:J_heart_inlet","17640":"pressure:RCR_aorta_br:J_heart_inlet","17641":"pressure:RCR_aorta_br:J_heart_inlet","17642":"pressure:RCR_aorta_br:J_heart_inlet","17643":"pressure:RCR_aorta_br:J_heart_inlet","17644":"pressure:RCR_aorta_br:J_heart_inlet","17645":"pressure:RCR_aorta_br:J_heart_inlet","17646":"pressure:RCR_aorta_br:J_heart_inlet","17647":"pressure:RCR_aorta_br:J_heart_inlet","17648":"pressure:RCR_aorta_br:J_heart_inlet","17649":"pressure:RCR_aorta_br:J_heart_inlet","17650":"pressure:RCR_aorta_br:J_heart_inlet","17651":"pressure:RCR_aorta_br:J_heart_inlet","17652":"pressure:RCR_aorta_br:J_heart_inlet","17653":"pressure:RCR_aorta_br:J_heart_inlet","17654":"pressure:RCR_aorta_br:J_heart_inlet","17655":"pressure:RCR_aorta_br:J_heart_inlet","17656":"pressure:RCR_aorta_br:J_heart_inlet","17657":"pressure:RCR_aorta_br:J_heart_inlet","17658":"pressure:RCR_aorta_br:J_heart_inlet","17659":"pressure:RCR_aorta_br:J_heart_inlet","17660":"pressure:RCR_aorta_br:J_heart_inlet","17661":"pressure:RCR_aorta_br:J_heart_inlet","17662":"pressure:RCR_aorta_br:J_heart_inlet","17663":"pressure:RCR_aorta_br:J_heart_inlet","17664":"pressure:RCR_aorta_br:J_heart_inlet","17665":"pressure:RCR_aorta_br:J_heart_inlet","17666":"pressure:RCR_aorta_br:J_heart_inlet","17667":"pressure:RCR_aorta_br:J_heart_inlet","17668":"pressure:RCR_aorta_br:J_heart_inlet","17669":"pressure:RCR_aorta_br:J_heart_inlet","17670":"pressure:RCR_aorta_br:J_heart_inlet","17671":"pressure:RCR_aorta_br:J_heart_inlet","17672":"pressure:RCR_aorta_br:J_heart_inlet","17673":"pressure:RCR_aorta_br:J_heart_inlet","17674":"pressure:RCR_aorta_br:J_heart_inlet","17675":"pressure:RCR_aorta_br:J_heart_inlet","17676":"pressure:RCR_aorta_br:J_heart_inlet","17677":"pressure:RCR_aorta_br:J_heart_inlet","17678":"pressure:RCR_aorta_br:J_heart_inlet","17679":"pressure:RCR_aorta_br:J_heart_inlet","17680":"pressure:RCR_aorta_br:J_heart_inlet","17681":"pressure:RCR_aorta_br:J_heart_inlet","17682":"pressure:RCR_aorta_br:J_heart_inlet","17683":"pressure:RCR_aorta_br:J_heart_inlet","17684":"pressure:RCR_aorta_br:J_heart_inlet","17685":"pressure:RCR_aorta_br:J_heart_inlet","17686":"pressure:RCR_aorta_br:J_heart_inlet","17687":"pressure:RCR_aorta_br:J_heart_inlet","17688":"pressure:RCR_aorta_br:J_heart_inlet","17689":"pressure:RCR_aorta_br:J_heart_inlet","17690":"pressure:RCR_aorta_br:J_heart_inlet","17691":"pressure:RCR_aorta_br:J_heart_inlet","17692":"pressure:RCR_aorta_br:J_heart_inlet","17693":"pressure:RCR_aorta_br:J_heart_inlet","17694":"pressure:RCR_aorta_br:J_heart_inlet","17695":"pressure:RCR_aorta_br:J_heart_inlet","17696":"pressure:RCR_aorta_br:J_heart_inlet","17697":"pressure:RCR_aorta_br:J_heart_inlet","17698":"pressure:RCR_aorta_br:J_heart_inlet","17699":"pressure:RCR_aorta_br:J_heart_inlet","17700":"pressure:RCR_aorta_br:J_heart_inlet","17701":"pressure:RCR_aorta_br:J_heart_inlet","17702":"pressure:RCR_aorta_br:J_heart_inlet","17703":"pressure:RCR_aorta_br:J_heart_inlet","17704":"pressure:RCR_aorta_br:J_heart_inlet","17705":"pressure:RCR_aorta_br:J_heart_inlet","17706":"pressure:RCR_aorta_br:J_heart_inlet","17707":"pressure:RCR_aorta_br:J_heart_inlet","17708":"pressure:RCR_aorta_br:J_heart_inlet","17709":"pressure:RCR_aorta_br:J_heart_inlet","17710":"pressure:RCR_aorta_br:J_heart_inlet","17711":"pressure:RCR_aorta_br:J_heart_inlet","17712":"pressure:RCR_aorta_br:J_heart_inlet","17713":"pressure:RCR_aorta_br:J_heart_inlet","17714":"pressure:RCR_aorta_br:J_heart_inlet","17715":"pressure:RCR_aorta_br:J_heart_inlet","17716":"pressure:RCR_aorta_br:J_heart_inlet","17717":"pressure:RCR_aorta_br:J_heart_inlet","17718":"pressure:RCR_aorta_br:J_heart_inlet","17719":"pressure:RCR_aorta_br:J_heart_inlet","17720":"pressure:RCR_aorta_br:J_heart_inlet","17721":"pressure:RCR_aorta_br:J_heart_inlet","17722":"pressure:RCR_aorta_br:J_heart_inlet","17723":"pressure:RCR_aorta_br:J_heart_inlet","17724":"pressure:RCR_aorta_br:J_heart_inlet","17725":"pressure:RCR_aorta_br:J_heart_inlet","17726":"pressure:RCR_aorta_br:J_heart_inlet","17727":"pressure:RCR_aorta_br:J_heart_inlet","17728":"pressure:RCR_aorta_br:J_heart_inlet","17729":"pressure:RCR_aorta_br:J_heart_inlet","17730":"pressure:RCR_aorta_br:J_heart_inlet","17731":"pressure:RCR_aorta_br:J_heart_inlet","17732":"pressure:RCR_aorta_br:J_heart_inlet","17733":"pressure:RCR_aorta_br:J_heart_inlet","17734":"pressure:RCR_aorta_br:J_heart_inlet","17735":"pressure:RCR_aorta_br:J_heart_inlet","17736":"pressure:RCR_aorta_br:J_heart_inlet","17737":"pressure:RCR_aorta_br:J_heart_inlet","17738":"pressure:RCR_aorta_br:J_heart_inlet","17739":"pressure:RCR_aorta_br:J_heart_inlet","17740":"pressure:RCR_aorta_br:J_heart_inlet","17741":"pressure:RCR_aorta_br:J_heart_inlet","17742":"pressure:RCR_aorta_br:J_heart_inlet","17743":"pressure:RCR_aorta_br:J_heart_inlet","17744":"pressure:RCR_aorta_br:J_heart_inlet","17745":"pressure:RCR_aorta_br:J_heart_inlet","17746":"pressure:RCR_aorta_br:J_heart_inlet","17747":"pressure:RCR_aorta_br:J_heart_inlet","17748":"pressure:RCR_aorta_br:J_heart_inlet","17749":"pressure:RCR_aorta_br:J_heart_inlet","17750":"pressure:RCR_aorta_br:J_heart_inlet","17751":"pressure:RCR_aorta_br:J_heart_inlet","17752":"pressure:RCR_aorta_br:J_heart_inlet","17753":"pressure:RCR_aorta_br:J_heart_inlet","17754":"pressure:RCR_aorta_br:J_heart_inlet","17755":"pressure:RCR_aorta_br:J_heart_inlet","17756":"pressure:RCR_aorta_br:J_heart_inlet","17757":"pressure:RCR_aorta_br:J_heart_inlet","17758":"pressure:RCR_aorta_br:J_heart_inlet","17759":"pressure:RCR_aorta_br:J_heart_inlet","17760":"pressure:RCR_aorta_br:J_heart_inlet","17761":"pressure:RCR_aorta_br:J_heart_inlet","17762":"pressure:RCR_aorta_br:J_heart_inlet","17763":"pressure:RCR_aorta_br:J_heart_inlet","17764":"pressure:RCR_aorta_br:J_heart_inlet","17765":"pressure:RCR_aorta_br:J_heart_inlet","17766":"pressure:RCR_aorta_br:J_heart_inlet","17767":"pressure:RCR_aorta_br:J_heart_inlet","17768":"pressure:RCR_aorta_br:J_heart_inlet","17769":"pressure:RCR_aorta_br:J_heart_inlet","17770":"pressure:RCR_aorta_br:J_heart_inlet","17771":"pressure:RCR_aorta_br:J_heart_inlet","17772":"pressure:RCR_aorta_br:J_heart_inlet","17773":"pressure:RCR_aorta_br:J_heart_inlet","17774":"pressure:RCR_aorta_br:J_heart_inlet","17775":"pressure:RCR_aorta_br:J_heart_inlet","17776":"pressure:RCR_aorta_br:J_heart_inlet","17777":"pressure:RCR_aorta_br:J_heart_inlet","17778":"pressure:RCR_aorta_br:J_heart_inlet","17779":"pressure:RCR_aorta_br:J_heart_inlet","17780":"pressure:RCR_aorta_br:J_heart_inlet","17781":"pressure:RCR_aorta_br:J_heart_inlet","17782":"pressure:RCR_aorta_br:J_heart_inlet","17783":"pressure:RCR_aorta_br:J_heart_inlet","17784":"pressure:RCR_aorta_br:J_heart_inlet","17785":"pressure:RCR_aorta_br:J_heart_inlet","17786":"pressure:RCR_aorta_br:J_heart_inlet","17787":"pressure:RCR_aorta_br:J_heart_inlet","17788":"pressure:RCR_aorta_br:J_heart_inlet","17789":"pressure:RCR_aorta_br:J_heart_inlet","17790":"pressure:RCR_aorta_br:J_heart_inlet","17791":"pressure:RCR_aorta_br:J_heart_inlet","17792":"pressure:RCR_aorta_br:J_heart_inlet","17793":"pressure:RCR_aorta_br:J_heart_inlet","17794":"pressure:RCR_aorta_br:J_heart_inlet","17795":"pressure:RCR_aorta_br:J_heart_inlet","17796":"pressure:RCR_aorta_br:J_heart_inlet","17797":"pressure:RCR_aorta_br:J_heart_inlet","17798":"pressure:RCR_aorta_br:J_heart_inlet","17799":"pressure:RCR_aorta_br:J_heart_inlet","17800":"pressure:RCR_aorta_br:J_heart_inlet","17801":"pressure:RCR_aorta_br:J_heart_inlet","17802":"pressure:RCR_aorta_br:J_heart_inlet","17803":"pressure:RCR_aorta_br:J_heart_inlet","17804":"pressure:RCR_aorta_br:J_heart_inlet","17805":"pressure:RCR_aorta_br:J_heart_inlet","17806":"pressure:RCR_aorta_br:J_heart_inlet","17807":"pressure:RCR_aorta_br:J_heart_inlet","17808":"pressure:RCR_aorta_br:J_heart_inlet","17809":"pressure:RCR_aorta_br:J_heart_inlet","17810":"pressure:RCR_aorta_br:J_heart_inlet","17811":"pressure:RCR_aorta_br:J_heart_inlet","17812":"pressure:RCR_aorta_br:J_heart_inlet","17813":"pressure:RCR_aorta_br:J_heart_inlet","17814":"pressure:RCR_aorta_br:J_heart_inlet","17815":"pressure:RCR_aorta_br:J_heart_inlet","17816":"pressure:RCR_aorta_br:J_heart_inlet","17817":"pressure:RCR_aorta_br:J_heart_inlet","17818":"pressure:RCR_aorta_br:J_heart_inlet","17819":"pressure:RCR_aorta_br:J_heart_inlet","17820":"pressure:RCR_aorta_br:J_heart_inlet","17821":"pressure:RCR_aorta_br:J_heart_inlet","17822":"pressure:RCR_aorta_br:J_heart_inlet","17823":"pressure:RCR_aorta_br:J_heart_inlet","17824":"pressure:RCR_aorta_br:J_heart_inlet","17825":"pressure:RCR_aorta_br:J_heart_inlet","17826":"pressure:RCR_aorta_br:J_heart_inlet","17827":"pressure:RCR_aorta_br:J_heart_inlet","17828":"pressure:RCR_aorta_br:J_heart_inlet","17829":"pressure:RCR_aorta_br:J_heart_inlet","17830":"pressure:RCR_aorta_br:J_heart_inlet","17831":"pressure:RCR_aorta_br:J_heart_inlet","17832":"pressure:RCR_aorta_br:J_heart_inlet","17833":"pressure:RCR_aorta_br:J_heart_inlet","17834":"pressure:RCR_aorta_br:J_heart_inlet","17835":"pressure:RCR_aorta_br:J_heart_inlet","17836":"pressure:RCR_aorta_br:J_heart_inlet","17837":"pressure:RCR_aorta_br:J_heart_inlet","17838":"pressure:RCR_aorta_br:J_heart_inlet","17839":"pressure:RCR_aorta_br:J_heart_inlet","17840":"pressure:RCR_aorta_br:J_heart_inlet","17841":"pressure:RCR_aorta_br:J_heart_inlet","17842":"pressure:RCR_aorta_br:J_heart_inlet","17843":"pressure:RCR_aorta_br:J_heart_inlet","17844":"pressure:RCR_aorta_br:J_heart_inlet","17845":"pressure:RCR_aorta_br:J_heart_inlet","17846":"pressure:RCR_aorta_br:J_heart_inlet","17847":"pressure:RCR_aorta_br:J_heart_inlet","17848":"pressure:RCR_aorta_br:J_heart_inlet","17849":"pressure:RCR_aorta_br:J_heart_inlet","17850":"pressure:RCR_aorta_br:J_heart_inlet","17851":"pressure:RCR_aorta_br:J_heart_inlet","17852":"pressure:RCR_aorta_br:J_heart_inlet","17853":"pressure:RCR_aorta_br:J_heart_inlet","17854":"pressure:RCR_aorta_br:J_heart_inlet","17855":"pressure:RCR_aorta_br:J_heart_inlet","17856":"pressure:RCR_aorta_br:J_heart_inlet","17857":"pressure:RCR_aorta_br:J_heart_inlet","17858":"pressure:RCR_aorta_br:J_heart_inlet","17859":"pressure:RCR_aorta_br:J_heart_inlet","17860":"pressure:RCR_aorta_br:J_heart_inlet","17861":"pressure:RCR_aorta_br:J_heart_inlet","17862":"pressure:RCR_aorta_br:J_heart_inlet","17863":"pressure:RCR_aorta_br:J_heart_inlet","17864":"pressure:RCR_aorta_br:J_heart_inlet","17865":"pressure:RCR_aorta_br:J_heart_inlet","17866":"pressure:RCR_aorta_br:J_heart_inlet","17867":"pressure:RCR_aorta_br:J_heart_inlet","17868":"pressure:RCR_aorta_br:J_heart_inlet","17869":"pressure:RCR_aorta_br:J_heart_inlet","17870":"pressure:RCR_aorta_br:J_heart_inlet","17871":"pressure:RCR_aorta_br:J_heart_inlet","17872":"pressure:RCR_aorta_br:J_heart_inlet","17873":"pressure:RCR_aorta_br:J_heart_inlet","17874":"pressure:RCR_aorta_br:J_heart_inlet","17875":"pressure:RCR_aorta_br:J_heart_inlet","17876":"pressure:RCR_aorta_br:J_heart_inlet","17877":"pressure:RCR_aorta_br:J_heart_inlet","17878":"pressure:RCR_aorta_br:J_heart_inlet","17879":"pressure:RCR_aorta_br:J_heart_inlet","17880":"pressure:RCR_aorta_br:J_heart_inlet","17881":"pressure:RCR_aorta_br:J_heart_inlet","17882":"pressure:RCR_aorta_br:J_heart_inlet","17883":"pressure:RCR_aorta_br:J_heart_inlet","17884":"pressure:RCR_aorta_br:J_heart_inlet","17885":"pressure:RCR_aorta_br:J_heart_inlet","17886":"pressure:RCR_aorta_br:J_heart_inlet","17887":"pressure:RCR_aorta_br:J_heart_inlet","17888":"pressure:RCR_aorta_br:J_heart_inlet","17889":"pressure:RCR_aorta_br:J_heart_inlet","17890":"pressure:RCR_aorta_br:J_heart_inlet","17891":"pressure:RCR_aorta_br:J_heart_inlet","17892":"pressure:RCR_aorta_br:J_heart_inlet","17893":"pressure:RCR_aorta_br:J_heart_inlet","17894":"pressure:RCR_aorta_br:J_heart_inlet","17895":"pressure:RCR_aorta_br:J_heart_inlet","17896":"pressure:RCR_aorta_br:J_heart_inlet","17897":"pressure:RCR_aorta_br:J_heart_inlet","17898":"pressure:RCR_aorta_br:J_heart_inlet","17899":"pressure:RCR_aorta_br:J_heart_inlet","17900":"pressure:RCR_aorta_br:J_heart_inlet","17901":"pressure:RCR_aorta_br:J_heart_inlet","17902":"pressure:RCR_aorta_br:J_heart_inlet","17903":"pressure:RCR_aorta_br:J_heart_inlet","17904":"pressure:RCR_aorta_br:J_heart_inlet","17905":"pressure:RCR_aorta_br:J_heart_inlet","17906":"pressure:RCR_aorta_br:J_heart_inlet","17907":"pressure:RCR_aorta_br:J_heart_inlet","17908":"pressure:RCR_aorta_br:J_heart_inlet","17909":"pressure:RCR_aorta_br:J_heart_inlet","17910":"pressure:RCR_aorta_br:J_heart_inlet","17911":"pressure:RCR_aorta_br:J_heart_inlet","17912":"pressure:RCR_aorta_br:J_heart_inlet","17913":"pressure:RCR_aorta_br:J_heart_inlet","17914":"pressure:RCR_aorta_br:J_heart_inlet","17915":"pressure:RCR_aorta_br:J_heart_inlet","17916":"pressure:RCR_aorta_br:J_heart_inlet","17917":"pressure:RCR_aorta_br:J_heart_inlet","17918":"pressure:RCR_aorta_br:J_heart_inlet","17919":"pressure:RCR_aorta_br:J_heart_inlet","17920":"pressure:RCR_aorta_br:J_heart_inlet","17921":"pressure:RCR_aorta_br:J_heart_inlet","17922":"pressure:RCR_aorta_br:J_heart_inlet","17923":"pressure:RCR_aorta_br:J_heart_inlet","17924":"pressure:RCR_aorta_br:J_heart_inlet","17925":"pressure:RCR_aorta_br:J_heart_inlet","17926":"pressure:RCR_aorta_br:J_heart_inlet","17927":"pressure:RCR_aorta_br:J_heart_inlet","17928":"pressure:RCR_aorta_br:J_heart_inlet","17929":"pressure:RCR_aorta_br:J_heart_inlet","17930":"pressure:RCR_aorta_br:J_heart_inlet","17931":"pressure:RCR_aorta_br:J_heart_inlet","17932":"pressure:RCR_aorta_br:J_heart_inlet","17933":"pressure:RCR_aorta_br:J_heart_inlet","17934":"pressure:RCR_aorta_br:J_heart_inlet","17935":"pressure:RCR_aorta_br:J_heart_inlet","17936":"pressure:RCR_aorta_br:J_heart_inlet","17937":"pressure:RCR_aorta_br:J_heart_inlet","17938":"pressure:RCR_aorta_br:J_heart_inlet","17939":"pressure:RCR_aorta_br:J_heart_inlet","17940":"pressure:RCR_aorta_br:J_heart_inlet","17941":"pressure:RCR_aorta_br:J_heart_inlet","17942":"pressure:RCR_aorta_br:J_heart_inlet","17943":"pressure:RCR_aorta_br:J_heart_inlet","17944":"pressure:RCR_aorta_br:J_heart_inlet","17945":"pressure:RCR_aorta_br:J_heart_inlet","17946":"pressure:RCR_aorta_br:J_heart_inlet","17947":"pressure:RCR_aorta_br:J_heart_inlet","17948":"pressure:RCR_aorta_br:J_heart_inlet","17949":"pressure:RCR_aorta_br:J_heart_inlet","17950":"pressure:RCR_aorta_br:J_heart_inlet","17951":"pressure:RCR_aorta_br:J_heart_inlet","17952":"pressure:RCR_aorta_br:J_heart_inlet","17953":"pressure:RCR_aorta_br:J_heart_inlet","17954":"pressure:RCR_aorta_br:J_heart_inlet","17955":"pressure:RCR_aorta_br:J_heart_inlet","17956":"pressure:RCR_aorta_br:J_heart_inlet","17957":"pressure:RCR_aorta_br:J_heart_inlet","17958":"pressure:RCR_aorta_br:J_heart_inlet","17959":"pressure:RCR_aorta_br:J_heart_inlet","17960":"pressure:RCR_aorta_br:J_heart_inlet","17961":"pressure:RCR_aorta_br:J_heart_inlet","17962":"pressure:RCR_aorta_br:J_heart_inlet","17963":"pressure:RCR_aorta_br:J_heart_inlet","17964":"pressure:RCR_aorta_br:J_heart_inlet","17965":"pressure:RCR_aorta_br:J_heart_inlet","17966":"pressure:RCR_aorta_br:J_heart_inlet","17967":"pressure:RCR_aorta_br:J_heart_inlet","17968":"pressure:RCR_aorta_br:J_heart_inlet","17969":"pressure:RCR_aorta_br:J_heart_inlet","17970":"pressure:RCR_aorta_br:J_heart_inlet","17971":"pressure:RCR_aorta_br:J_heart_inlet","17972":"pressure:RCR_aorta_br:J_heart_inlet","17973":"pressure:RCR_aorta_br:J_heart_inlet","17974":"pressure:RCR_aorta_br:J_heart_inlet","17975":"pressure:RCR_aorta_br:J_heart_inlet","17976":"pressure:RCR_aorta_br:J_heart_inlet","17977":"pressure:RCR_aorta_br:J_heart_inlet","17978":"pressure:RCR_aorta_br:J_heart_inlet","17979":"pressure:RCR_aorta_br:J_heart_inlet","17980":"pressure:RCR_aorta_br:J_heart_inlet","17981":"pressure:RCR_aorta_br:J_heart_inlet","17982":"pressure:RCR_aorta_br:J_heart_inlet","17983":"pressure:RCR_aorta_br:J_heart_inlet","17984":"pressure:RCR_aorta_br:J_heart_inlet","17985":"pressure:RCR_aorta_br:J_heart_inlet","17986":"pressure:RCR_aorta_br:J_heart_inlet","17987":"pressure:RCR_aorta_br:J_heart_inlet","17988":"pressure:RCR_aorta_br:J_heart_inlet","17989":"pressure:RCR_aorta_br:J_heart_inlet","17990":"pressure:RCR_aorta_br:J_heart_inlet","17991":"pressure:RCR_aorta_br:J_heart_inlet","17992":"pressure:RCR_aorta_br:J_heart_inlet","17993":"pressure:RCR_aorta_br:J_heart_inlet","17994":"pressure:RCR_aorta_br:J_heart_inlet","17995":"pressure:RCR_aorta_br:J_heart_inlet","17996":"pressure:RCR_aorta_br:J_heart_inlet","17997":"pressure:RCR_aorta_br:J_heart_inlet","17998":"pressure:RCR_aorta_br:J_heart_inlet","17999":"pressure:RCR_aorta_br:J_heart_inlet","18000":"flow:CLH:J_heart_outlet","18001":"flow:CLH:J_heart_outlet","18002":"flow:CLH:J_heart_outlet","18003":"flow:CLH:J_heart_outlet","18004":"flow:CLH:J_heart_outlet","18005":"flow:CLH:J_heart_outlet","18006":"flow:CLH:J_heart_outlet","18007":"flow:CLH:J_heart_outlet","18008":"flow:CLH:J_heart_outlet","18009":"flow:CLH:J_heart_outlet","18010":"flow:CLH:J_heart_outlet","18011":"flow:CLH:J_heart_outlet","18012":"flow:CLH:J_heart_outlet","18013":"flow:CLH:J_heart_outlet","18014":"flow:CLH:J_heart_outlet","18015":"flow:CLH:J_heart_outlet","18016":"flow:CLH:J_heart_outlet","18017":"flow:CLH:J_heart_outlet","18018":"flow:CLH:J_heart_outlet","18019":"flow:CLH:J_heart_outlet","18020":"flow:CLH:J_heart_outlet","18021":"flow:CLH:J_heart_outlet","18022":"flow:CLH:J_heart_outlet","18023":"flow:CLH:J_heart_outlet","18024":"flow:CLH:J_heart_outlet","18025":"flow:CLH:J_heart_outlet","18026":"flow:CLH:J_heart_outlet","18027":"flow:CLH:J_heart_outlet","18028":"flow:CLH:J_heart_outlet","18029":"flow:CLH:J_heart_outlet","18030":"flow:CLH:J_heart_outlet","18031":"flow:CLH:J_heart_outlet","18032":"flow:CLH:J_heart_outlet","18033":"flow:CLH:J_heart_outlet","18034":"flow:CLH:J_heart_outlet","18035":"flow:CLH:J_heart_outlet","18036":"flow:CLH:J_heart_outlet","18037":"flow:CLH:J_heart_outlet","18038":"flow:CLH:J_heart_outlet","18039":"flow:CLH:J_heart_outlet","18040":"flow:CLH:J_heart_outlet","18041":"flow:CLH:J_heart_outlet","18042":"flow:CLH:J_heart_outlet","18043":"flow:CLH:J_heart_outlet","18044":"flow:CLH:J_heart_outlet","18045":"flow:CLH:J_heart_outlet","18046":"flow:CLH:J_heart_outlet","18047":"flow:CLH:J_heart_outlet","18048":"flow:CLH:J_heart_outlet","18049":"flow:CLH:J_heart_outlet","18050":"flow:CLH:J_heart_outlet","18051":"flow:CLH:J_heart_outlet","18052":"flow:CLH:J_heart_outlet","18053":"flow:CLH:J_heart_outlet","18054":"flow:CLH:J_heart_outlet","18055":"flow:CLH:J_heart_outlet","18056":"flow:CLH:J_heart_outlet","18057":"flow:CLH:J_heart_outlet","18058":"flow:CLH:J_heart_outlet","18059":"flow:CLH:J_heart_outlet","18060":"flow:CLH:J_heart_outlet","18061":"flow:CLH:J_heart_outlet","18062":"flow:CLH:J_heart_outlet","18063":"flow:CLH:J_heart_outlet","18064":"flow:CLH:J_heart_outlet","18065":"flow:CLH:J_heart_outlet","18066":"flow:CLH:J_heart_outlet","18067":"flow:CLH:J_heart_outlet","18068":"flow:CLH:J_heart_outlet","18069":"flow:CLH:J_heart_outlet","18070":"flow:CLH:J_heart_outlet","18071":"flow:CLH:J_heart_outlet","18072":"flow:CLH:J_heart_outlet","18073":"flow:CLH:J_heart_outlet","18074":"flow:CLH:J_heart_outlet","18075":"flow:CLH:J_heart_outlet","18076":"flow:CLH:J_heart_outlet","18077":"flow:CLH:J_heart_outlet","18078":"flow:CLH:J_heart_outlet","18079":"flow:CLH:J_heart_outlet","18080":"flow:CLH:J_heart_outlet","18081":"flow:CLH:J_heart_outlet","18082":"flow:CLH:J_heart_outlet","18083":"flow:CLH:J_heart_outlet","18084":"flow:CLH:J_heart_outlet","18085":"flow:CLH:J_heart_outlet","18086":"flow:CLH:J_heart_outlet","18087":"flow:CLH:J_heart_outlet","18088":"flow:CLH:J_heart_outlet","18089":"flow:CLH:J_heart_outlet","18090":"flow:CLH:J_heart_outlet","18091":"flow:CLH:J_heart_outlet","18092":"flow:CLH:J_heart_outlet","18093":"flow:CLH:J_heart_outlet","18094":"flow:CLH:J_heart_outlet","18095":"flow:CLH:J_heart_outlet","18096":"flow:CLH:J_heart_outlet","18097":"flow:CLH:J_heart_outlet","18098":"flow:CLH:J_heart_outlet","18099":"flow:CLH:J_heart_outlet","18100":"flow:CLH:J_heart_outlet","18101":"flow:CLH:J_heart_outlet","18102":"flow:CLH:J_heart_outlet","18103":"flow:CLH:J_heart_outlet","18104":"flow:CLH:J_heart_outlet","18105":"flow:CLH:J_heart_outlet","18106":"flow:CLH:J_heart_outlet","18107":"flow:CLH:J_heart_outlet","18108":"flow:CLH:J_heart_outlet","18109":"flow:CLH:J_heart_outlet","18110":"flow:CLH:J_heart_outlet","18111":"flow:CLH:J_heart_outlet","18112":"flow:CLH:J_heart_outlet","18113":"flow:CLH:J_heart_outlet","18114":"flow:CLH:J_heart_outlet","18115":"flow:CLH:J_heart_outlet","18116":"flow:CLH:J_heart_outlet","18117":"flow:CLH:J_heart_outlet","18118":"flow:CLH:J_heart_outlet","18119":"flow:CLH:J_heart_outlet","18120":"flow:CLH:J_heart_outlet","18121":"flow:CLH:J_heart_outlet","18122":"flow:CLH:J_heart_outlet","18123":"flow:CLH:J_heart_outlet","18124":"flow:CLH:J_heart_outlet","18125":"flow:CLH:J_heart_outlet","18126":"flow:CLH:J_heart_outlet","18127":"flow:CLH:J_heart_outlet","18128":"flow:CLH:J_heart_outlet","18129":"flow:CLH:J_heart_outlet","18130":"flow:CLH:J_heart_outlet","18131":"flow:CLH:J_heart_outlet","18132":"flow:CLH:J_heart_outlet","18133":"flow:CLH:J_heart_outlet","18134":"flow:CLH:J_heart_outlet","18135":"flow:CLH:J_heart_outlet","18136":"flow:CLH:J_heart_outlet","18137":"flow:CLH:J_heart_outlet","18138":"flow:CLH:J_heart_outlet","18139":"flow:CLH:J_heart_outlet","18140":"flow:CLH:J_heart_outlet","18141":"flow:CLH:J_heart_outlet","18142":"flow:CLH:J_heart_outlet","18143":"flow:CLH:J_heart_outlet","18144":"flow:CLH:J_heart_outlet","18145":"flow:CLH:J_heart_outlet","18146":"flow:CLH:J_heart_outlet","18147":"flow:CLH:J_heart_outlet","18148":"flow:CLH:J_heart_outlet","18149":"flow:CLH:J_heart_outlet","18150":"flow:CLH:J_heart_outlet","18151":"flow:CLH:J_heart_outlet","18152":"flow:CLH:J_heart_outlet","18153":"flow:CLH:J_heart_outlet","18154":"flow:CLH:J_heart_outlet","18155":"flow:CLH:J_heart_outlet","18156":"flow:CLH:J_heart_outlet","18157":"flow:CLH:J_heart_outlet","18158":"flow:CLH:J_heart_outlet","18159":"flow:CLH:J_heart_outlet","18160":"flow:CLH:J_heart_outlet","18161":"flow:CLH:J_heart_outlet","18162":"flow:CLH:J_heart_outlet","18163":"flow:CLH:J_heart_outlet","18164":"flow:CLH:J_heart_outlet","18165":"flow:CLH:J_heart_outlet","18166":"flow:CLH:J_heart_outlet","18167":"flow:CLH:J_heart_outlet","18168":"flow:CLH:J_heart_outlet","18169":"flow:CLH:J_heart_outlet","18170":"flow:CLH:J_heart_outlet","18171":"flow:CLH:J_heart_outlet","18172":"flow:CLH:J_heart_outlet","18173":"flow:CLH:J_heart_outlet","18174":"flow:CLH:J_heart_outlet","18175":"flow:CLH:J_heart_outlet","18176":"flow:CLH:J_heart_outlet","18177":"flow:CLH:J_heart_outlet","18178":"flow:CLH:J_heart_outlet","18179":"flow:CLH:J_heart_outlet","18180":"flow:CLH:J_heart_outlet","18181":"flow:CLH:J_heart_outlet","18182":"flow:CLH:J_heart_outlet","18183":"flow:CLH:J_heart_outlet","18184":"flow:CLH:J_heart_outlet","18185":"flow:CLH:J_heart_outlet","18186":"flow:CLH:J_heart_outlet","18187":"flow:CLH:J_heart_outlet","18188":"flow:CLH:J_heart_outlet","18189":"flow:CLH:J_heart_outlet","18190":"flow:CLH:J_heart_outlet","18191":"flow:CLH:J_heart_outlet","18192":"flow:CLH:J_heart_outlet","18193":"flow:CLH:J_heart_outlet","18194":"flow:CLH:J_heart_outlet","18195":"flow:CLH:J_heart_outlet","18196":"flow:CLH:J_heart_outlet","18197":"flow:CLH:J_heart_outlet","18198":"flow:CLH:J_heart_outlet","18199":"flow:CLH:J_heart_outlet","18200":"flow:CLH:J_heart_outlet","18201":"flow:CLH:J_heart_outlet","18202":"flow:CLH:J_heart_outlet","18203":"flow:CLH:J_heart_outlet","18204":"flow:CLH:J_heart_outlet","18205":"flow:CLH:J_heart_outlet","18206":"flow:CLH:J_heart_outlet","18207":"flow:CLH:J_heart_outlet","18208":"flow:CLH:J_heart_outlet","18209":"flow:CLH:J_heart_outlet","18210":"flow:CLH:J_heart_outlet","18211":"flow:CLH:J_heart_outlet","18212":"flow:CLH:J_heart_outlet","18213":"flow:CLH:J_heart_outlet","18214":"flow:CLH:J_heart_outlet","18215":"flow:CLH:J_heart_outlet","18216":"flow:CLH:J_heart_outlet","18217":"flow:CLH:J_heart_outlet","18218":"flow:CLH:J_heart_outlet","18219":"flow:CLH:J_heart_outlet","18220":"flow:CLH:J_heart_outlet","18221":"flow:CLH:J_heart_outlet","18222":"flow:CLH:J_heart_outlet","18223":"flow:CLH:J_heart_outlet","18224":"flow:CLH:J_heart_outlet","18225":"flow:CLH:J_heart_outlet","18226":"flow:CLH:J_heart_outlet","18227":"flow:CLH:J_heart_outlet","18228":"flow:CLH:J_heart_outlet","18229":"flow:CLH:J_heart_outlet","18230":"flow:CLH:J_heart_outlet","18231":"flow:CLH:J_heart_outlet","18232":"flow:CLH:J_heart_outlet","18233":"flow:CLH:J_heart_outlet","18234":"flow:CLH:J_heart_outlet","18235":"flow:CLH:J_heart_outlet","18236":"flow:CLH:J_heart_outlet","18237":"flow:CLH:J_heart_outlet","18238":"flow:CLH:J_heart_outlet","18239":"flow:CLH:J_heart_outlet","18240":"flow:CLH:J_heart_outlet","18241":"flow:CLH:J_heart_outlet","18242":"flow:CLH:J_heart_outlet","18243":"flow:CLH:J_heart_outlet","18244":"flow:CLH:J_heart_outlet","18245":"flow:CLH:J_heart_outlet","18246":"flow:CLH:J_heart_outlet","18247":"flow:CLH:J_heart_outlet","18248":"flow:CLH:J_heart_outlet","18249":"flow:CLH:J_heart_outlet","18250":"flow:CLH:J_heart_outlet","18251":"flow:CLH:J_heart_outlet","18252":"flow:CLH:J_heart_outlet","18253":"flow:CLH:J_heart_outlet","18254":"flow:CLH:J_heart_outlet","18255":"flow:CLH:J_heart_outlet","18256":"flow:CLH:J_heart_outlet","18257":"flow:CLH:J_heart_outlet","18258":"flow:CLH:J_heart_outlet","18259":"flow:CLH:J_heart_outlet","18260":"flow:CLH:J_heart_outlet","18261":"flow:CLH:J_heart_outlet","18262":"flow:CLH:J_heart_outlet","18263":"flow:CLH:J_heart_outlet","18264":"flow:CLH:J_heart_outlet","18265":"flow:CLH:J_heart_outlet","18266":"flow:CLH:J_heart_outlet","18267":"flow:CLH:J_heart_outlet","18268":"flow:CLH:J_heart_outlet","18269":"flow:CLH:J_heart_outlet","18270":"flow:CLH:J_heart_outlet","18271":"flow:CLH:J_heart_outlet","18272":"flow:CLH:J_heart_outlet","18273":"flow:CLH:J_heart_outlet","18274":"flow:CLH:J_heart_outlet","18275":"flow:CLH:J_heart_outlet","18276":"flow:CLH:J_heart_outlet","18277":"flow:CLH:J_heart_outlet","18278":"flow:CLH:J_heart_outlet","18279":"flow:CLH:J_heart_outlet","18280":"flow:CLH:J_heart_outlet","18281":"flow:CLH:J_heart_outlet","18282":"flow:CLH:J_heart_outlet","18283":"flow:CLH:J_heart_outlet","18284":"flow:CLH:J_heart_outlet","18285":"flow:CLH:J_heart_outlet","18286":"flow:CLH:J_heart_outlet","18287":"flow:CLH:J_heart_outlet","18288":"flow:CLH:J_heart_outlet","18289":"flow:CLH:J_heart_outlet","18290":"flow:CLH:J_heart_outlet","18291":"flow:CLH:J_heart_outlet","18292":"flow:CLH:J_heart_outlet","18293":"flow:CLH:J_heart_outlet","18294":"flow:CLH:J_heart_outlet","18295":"flow:CLH:J_heart_outlet","18296":"flow:CLH:J_heart_outlet","18297":"flow:CLH:J_heart_outlet","18298":"flow:CLH:J_heart_outlet","18299":"flow:CLH:J_heart_outlet","18300":"flow:CLH:J_heart_outlet","18301":"flow:CLH:J_heart_outlet","18302":"flow:CLH:J_heart_outlet","18303":"flow:CLH:J_heart_outlet","18304":"flow:CLH:J_heart_outlet","18305":"flow:CLH:J_heart_outlet","18306":"flow:CLH:J_heart_outlet","18307":"flow:CLH:J_heart_outlet","18308":"flow:CLH:J_heart_outlet","18309":"flow:CLH:J_heart_outlet","18310":"flow:CLH:J_heart_outlet","18311":"flow:CLH:J_heart_outlet","18312":"flow:CLH:J_heart_outlet","18313":"flow:CLH:J_heart_outlet","18314":"flow:CLH:J_heart_outlet","18315":"flow:CLH:J_heart_outlet","18316":"flow:CLH:J_heart_outlet","18317":"flow:CLH:J_heart_outlet","18318":"flow:CLH:J_heart_outlet","18319":"flow:CLH:J_heart_outlet","18320":"flow:CLH:J_heart_outlet","18321":"flow:CLH:J_heart_outlet","18322":"flow:CLH:J_heart_outlet","18323":"flow:CLH:J_heart_outlet","18324":"flow:CLH:J_heart_outlet","18325":"flow:CLH:J_heart_outlet","18326":"flow:CLH:J_heart_outlet","18327":"flow:CLH:J_heart_outlet","18328":"flow:CLH:J_heart_outlet","18329":"flow:CLH:J_heart_outlet","18330":"flow:CLH:J_heart_outlet","18331":"flow:CLH:J_heart_outlet","18332":"flow:CLH:J_heart_outlet","18333":"flow:CLH:J_heart_outlet","18334":"flow:CLH:J_heart_outlet","18335":"flow:CLH:J_heart_outlet","18336":"flow:CLH:J_heart_outlet","18337":"flow:CLH:J_heart_outlet","18338":"flow:CLH:J_heart_outlet","18339":"flow:CLH:J_heart_outlet","18340":"flow:CLH:J_heart_outlet","18341":"flow:CLH:J_heart_outlet","18342":"flow:CLH:J_heart_outlet","18343":"flow:CLH:J_heart_outlet","18344":"flow:CLH:J_heart_outlet","18345":"flow:CLH:J_heart_outlet","18346":"flow:CLH:J_heart_outlet","18347":"flow:CLH:J_heart_outlet","18348":"flow:CLH:J_heart_outlet","18349":"flow:CLH:J_heart_outlet","18350":"flow:CLH:J_heart_outlet","18351":"flow:CLH:J_heart_outlet","18352":"flow:CLH:J_heart_outlet","18353":"flow:CLH:J_heart_outlet","18354":"flow:CLH:J_heart_outlet","18355":"flow:CLH:J_heart_outlet","18356":"flow:CLH:J_heart_outlet","18357":"flow:CLH:J_heart_outlet","18358":"flow:CLH:J_heart_outlet","18359":"flow:CLH:J_heart_outlet","18360":"flow:CLH:J_heart_outlet","18361":"flow:CLH:J_heart_outlet","18362":"flow:CLH:J_heart_outlet","18363":"flow:CLH:J_heart_outlet","18364":"flow:CLH:J_heart_outlet","18365":"flow:CLH:J_heart_outlet","18366":"flow:CLH:J_heart_outlet","18367":"flow:CLH:J_heart_outlet","18368":"flow:CLH:J_heart_outlet","18369":"flow:CLH:J_heart_outlet","18370":"flow:CLH:J_heart_outlet","18371":"flow:CLH:J_heart_outlet","18372":"flow:CLH:J_heart_outlet","18373":"flow:CLH:J_heart_outlet","18374":"flow:CLH:J_heart_outlet","18375":"flow:CLH:J_heart_outlet","18376":"flow:CLH:J_heart_outlet","18377":"flow:CLH:J_heart_outlet","18378":"flow:CLH:J_heart_outlet","18379":"flow:CLH:J_heart_outlet","18380":"flow:CLH:J_heart_outlet","18381":"flow:CLH:J_heart_outlet","18382":"flow:CLH:J_heart_outlet","18383":"flow:CLH:J_heart_outlet","18384":"flow:CLH:J_heart_outlet","18385":"flow:CLH:J_heart_outlet","18386":"flow:CLH:J_heart_outlet","18387":"flow:CLH:J_heart_outlet","18388":"flow:CLH:J_heart_outlet","18389":"flow:CLH:J_heart_outlet","18390":"flow:CLH:J_heart_outlet","18391":"flow:CLH:J_heart_outlet","18392":"flow:CLH:J_heart_outlet","18393":"flow:CLH:J_heart_outlet","18394":"flow:CLH:J_heart_outlet","18395":"flow:CLH:J_heart_outlet","18396":"flow:CLH:J_heart_outlet","18397":"flow:CLH:J_heart_outlet","18398":"flow:CLH:J_heart_outlet","18399":"flow:CLH:J_heart_outlet","18400":"flow:CLH:J_heart_outlet","18401":"flow:CLH:J_heart_outlet","18402":"flow:CLH:J_heart_outlet","18403":"flow:CLH:J_heart_outlet","18404":"flow:CLH:J_heart_outlet","18405":"flow:CLH:J_heart_outlet","18406":"flow:CLH:J_heart_outlet","18407":"flow:CLH:J_heart_outlet","18408":"flow:CLH:J_heart_outlet","18409":"flow:CLH:J_heart_outlet","18410":"flow:CLH:J_heart_outlet","18411":"flow:CLH:J_heart_outlet","18412":"flow:CLH:J_heart_outlet","18413":"flow:CLH:J_heart_outlet","18414":"flow:CLH:J_heart_outlet","18415":"flow:CLH:J_heart_outlet","18416":"flow:CLH:J_heart_outlet","18417":"flow:CLH:J_heart_outlet","18418":"flow:CLH:J_heart_outlet","18419":"flow:CLH:J_heart_outlet","18420":"flow:CLH:J_heart_outlet","18421":"flow:CLH:J_heart_outlet","18422":"flow:CLH:J_heart_outlet","18423":"flow:CLH:J_heart_outlet","18424":"flow:CLH:J_heart_outlet","18425":"flow:CLH:J_heart_outlet","18426":"flow:CLH:J_heart_outlet","18427":"flow:CLH:J_heart_outlet","18428":"flow:CLH:J_heart_outlet","18429":"flow:CLH:J_heart_outlet","18430":"flow:CLH:J_heart_outlet","18431":"flow:CLH:J_heart_outlet","18432":"flow:CLH:J_heart_outlet","18433":"flow:CLH:J_heart_outlet","18434":"flow:CLH:J_heart_outlet","18435":"flow:CLH:J_heart_outlet","18436":"flow:CLH:J_heart_outlet","18437":"flow:CLH:J_heart_outlet","18438":"flow:CLH:J_heart_outlet","18439":"flow:CLH:J_heart_outlet","18440":"flow:CLH:J_heart_outlet","18441":"flow:CLH:J_heart_outlet","18442":"flow:CLH:J_heart_outlet","18443":"flow:CLH:J_heart_outlet","18444":"flow:CLH:J_heart_outlet","18445":"flow:CLH:J_heart_outlet","18446":"flow:CLH:J_heart_outlet","18447":"flow:CLH:J_heart_outlet","18448":"flow:CLH:J_heart_outlet","18449":"flow:CLH:J_heart_outlet","18450":"flow:CLH:J_heart_outlet","18451":"flow:CLH:J_heart_outlet","18452":"flow:CLH:J_heart_outlet","18453":"flow:CLH:J_heart_outlet","18454":"flow:CLH:J_heart_outlet","18455":"flow:CLH:J_heart_outlet","18456":"flow:CLH:J_heart_outlet","18457":"flow:CLH:J_heart_outlet","18458":"flow:CLH:J_heart_outlet","18459":"flow:CLH:J_heart_outlet","18460":"flow:CLH:J_heart_outlet","18461":"flow:CLH:J_heart_outlet","18462":"flow:CLH:J_heart_outlet","18463":"flow:CLH:J_heart_outlet","18464":"flow:CLH:J_heart_outlet","18465":"flow:CLH:J_heart_outlet","18466":"flow:CLH:J_heart_outlet","18467":"flow:CLH:J_heart_outlet","18468":"flow:CLH:J_heart_outlet","18469":"flow:CLH:J_heart_outlet","18470":"flow:CLH:J_heart_outlet","18471":"flow:CLH:J_heart_outlet","18472":"flow:CLH:J_heart_outlet","18473":"flow:CLH:J_heart_outlet","18474":"flow:CLH:J_heart_outlet","18475":"flow:CLH:J_heart_outlet","18476":"flow:CLH:J_heart_outlet","18477":"flow:CLH:J_heart_outlet","18478":"flow:CLH:J_heart_outlet","18479":"flow:CLH:J_heart_outlet","18480":"flow:CLH:J_heart_outlet","18481":"flow:CLH:J_heart_outlet","18482":"flow:CLH:J_heart_outlet","18483":"flow:CLH:J_heart_outlet","18484":"flow:CLH:J_heart_outlet","18485":"flow:CLH:J_heart_outlet","18486":"flow:CLH:J_heart_outlet","18487":"flow:CLH:J_heart_outlet","18488":"flow:CLH:J_heart_outlet","18489":"flow:CLH:J_heart_outlet","18490":"flow:CLH:J_heart_outlet","18491":"flow:CLH:J_heart_outlet","18492":"flow:CLH:J_heart_outlet","18493":"flow:CLH:J_heart_outlet","18494":"flow:CLH:J_heart_outlet","18495":"flow:CLH:J_heart_outlet","18496":"flow:CLH:J_heart_outlet","18497":"flow:CLH:J_heart_outlet","18498":"flow:CLH:J_heart_outlet","18499":"flow:CLH:J_heart_outlet","18500":"flow:CLH:J_heart_outlet","18501":"flow:CLH:J_heart_outlet","18502":"flow:CLH:J_heart_outlet","18503":"flow:CLH:J_heart_outlet","18504":"flow:CLH:J_heart_outlet","18505":"flow:CLH:J_heart_outlet","18506":"flow:CLH:J_heart_outlet","18507":"flow:CLH:J_heart_outlet","18508":"flow:CLH:J_heart_outlet","18509":"flow:CLH:J_heart_outlet","18510":"flow:CLH:J_heart_outlet","18511":"flow:CLH:J_heart_outlet","18512":"flow:CLH:J_heart_outlet","18513":"flow:CLH:J_heart_outlet","18514":"flow:CLH:J_heart_outlet","18515":"flow:CLH:J_heart_outlet","18516":"flow:CLH:J_heart_outlet","18517":"flow:CLH:J_heart_outlet","18518":"flow:CLH:J_heart_outlet","18519":"flow:CLH:J_heart_outlet","18520":"flow:CLH:J_heart_outlet","18521":"flow:CLH:J_heart_outlet","18522":"flow:CLH:J_heart_outlet","18523":"flow:CLH:J_heart_outlet","18524":"flow:CLH:J_heart_outlet","18525":"flow:CLH:J_heart_outlet","18526":"flow:CLH:J_heart_outlet","18527":"flow:CLH:J_heart_outlet","18528":"flow:CLH:J_heart_outlet","18529":"flow:CLH:J_heart_outlet","18530":"flow:CLH:J_heart_outlet","18531":"flow:CLH:J_heart_outlet","18532":"flow:CLH:J_heart_outlet","18533":"flow:CLH:J_heart_outlet","18534":"flow:CLH:J_heart_outlet","18535":"flow:CLH:J_heart_outlet","18536":"flow:CLH:J_heart_outlet","18537":"flow:CLH:J_heart_outlet","18538":"flow:CLH:J_heart_outlet","18539":"flow:CLH:J_heart_outlet","18540":"flow:CLH:J_heart_outlet","18541":"flow:CLH:J_heart_outlet","18542":"flow:CLH:J_heart_outlet","18543":"flow:CLH:J_heart_outlet","18544":"flow:CLH:J_heart_outlet","18545":"flow:CLH:J_heart_outlet","18546":"flow:CLH:J_heart_outlet","18547":"flow:CLH:J_heart_outlet","18548":"flow:CLH:J_heart_outlet","18549":"flow:CLH:J_heart_outlet","18550":"flow:CLH:J_heart_outlet","18551":"flow:CLH:J_heart_outlet","18552":"flow:CLH:J_heart_outlet","18553":"flow:CLH:J_heart_outlet","18554":"flow:CLH:J_heart_outlet","18555":"flow:CLH:J_heart_outlet","18556":"flow:CLH:J_heart_outlet","18557":"flow:CLH:J_heart_outlet","18558":"flow:CLH:J_heart_outlet","18559":"flow:CLH:J_heart_outlet","18560":"flow:CLH:J_heart_outlet","18561":"flow:CLH:J_heart_outlet","18562":"flow:CLH:J_heart_outlet","18563":"flow:CLH:J_heart_outlet","18564":"flow:CLH:J_heart_outlet","18565":"flow:CLH:J_heart_outlet","18566":"flow:CLH:J_heart_outlet","18567":"flow:CLH:J_heart_outlet","18568":"flow:CLH:J_heart_outlet","18569":"flow:CLH:J_heart_outlet","18570":"flow:CLH:J_heart_outlet","18571":"flow:CLH:J_heart_outlet","18572":"flow:CLH:J_heart_outlet","18573":"flow:CLH:J_heart_outlet","18574":"flow:CLH:J_heart_outlet","18575":"flow:CLH:J_heart_outlet","18576":"flow:CLH:J_heart_outlet","18577":"flow:CLH:J_heart_outlet","18578":"flow:CLH:J_heart_outlet","18579":"flow:CLH:J_heart_outlet","18580":"flow:CLH:J_heart_outlet","18581":"flow:CLH:J_heart_outlet","18582":"flow:CLH:J_heart_outlet","18583":"flow:CLH:J_heart_outlet","18584":"flow:CLH:J_heart_outlet","18585":"flow:CLH:J_heart_outlet","18586":"flow:CLH:J_heart_outlet","18587":"flow:CLH:J_heart_outlet","18588":"flow:CLH:J_heart_outlet","18589":"flow:CLH:J_heart_outlet","18590":"flow:CLH:J_heart_outlet","18591":"flow:CLH:J_heart_outlet","18592":"flow:CLH:J_heart_outlet","18593":"flow:CLH:J_heart_outlet","18594":"flow:CLH:J_heart_outlet","18595":"flow:CLH:J_heart_outlet","18596":"flow:CLH:J_heart_outlet","18597":"flow:CLH:J_heart_outlet","18598":"flow:CLH:J_heart_outlet","18599":"flow:CLH:J_heart_outlet","18600":"flow:CLH:J_heart_outlet","18601":"flow:CLH:J_heart_outlet","18602":"flow:CLH:J_heart_outlet","18603":"flow:CLH:J_heart_outlet","18604":"flow:CLH:J_heart_outlet","18605":"flow:CLH:J_heart_outlet","18606":"flow:CLH:J_heart_outlet","18607":"flow:CLH:J_heart_outlet","18608":"flow:CLH:J_heart_outlet","18609":"flow:CLH:J_heart_outlet","18610":"flow:CLH:J_heart_outlet","18611":"flow:CLH:J_heart_outlet","18612":"flow:CLH:J_heart_outlet","18613":"flow:CLH:J_heart_outlet","18614":"flow:CLH:J_heart_outlet","18615":"flow:CLH:J_heart_outlet","18616":"flow:CLH:J_heart_outlet","18617":"flow:CLH:J_heart_outlet","18618":"flow:CLH:J_heart_outlet","18619":"flow:CLH:J_heart_outlet","18620":"flow:CLH:J_heart_outlet","18621":"flow:CLH:J_heart_outlet","18622":"flow:CLH:J_heart_outlet","18623":"flow:CLH:J_heart_outlet","18624":"flow:CLH:J_heart_outlet","18625":"flow:CLH:J_heart_outlet","18626":"flow:CLH:J_heart_outlet","18627":"flow:CLH:J_heart_outlet","18628":"flow:CLH:J_heart_outlet","18629":"flow:CLH:J_heart_outlet","18630":"flow:CLH:J_heart_outlet","18631":"flow:CLH:J_heart_outlet","18632":"flow:CLH:J_heart_outlet","18633":"flow:CLH:J_heart_outlet","18634":"flow:CLH:J_heart_outlet","18635":"flow:CLH:J_heart_outlet","18636":"flow:CLH:J_heart_outlet","18637":"flow:CLH:J_heart_outlet","18638":"flow:CLH:J_heart_outlet","18639":"flow:CLH:J_heart_outlet","18640":"flow:CLH:J_heart_outlet","18641":"flow:CLH:J_heart_outlet","18642":"flow:CLH:J_heart_outlet","18643":"flow:CLH:J_heart_outlet","18644":"flow:CLH:J_heart_outlet","18645":"flow:CLH:J_heart_outlet","18646":"flow:CLH:J_heart_outlet","18647":"flow:CLH:J_heart_outlet","18648":"flow:CLH:J_heart_outlet","18649":"flow:CLH:J_heart_outlet","18650":"flow:CLH:J_heart_outlet","18651":"flow:CLH:J_heart_outlet","18652":"flow:CLH:J_heart_outlet","18653":"flow:CLH:J_heart_outlet","18654":"flow:CLH:J_heart_outlet","18655":"flow:CLH:J_heart_outlet","18656":"flow:CLH:J_heart_outlet","18657":"flow:CLH:J_heart_outlet","18658":"flow:CLH:J_heart_outlet","18659":"flow:CLH:J_heart_outlet","18660":"flow:CLH:J_heart_outlet","18661":"flow:CLH:J_heart_outlet","18662":"flow:CLH:J_heart_outlet","18663":"flow:CLH:J_heart_outlet","18664":"flow:CLH:J_heart_outlet","18665":"flow:CLH:J_heart_outlet","18666":"flow:CLH:J_heart_outlet","18667":"flow:CLH:J_heart_outlet","18668":"flow:CLH:J_heart_outlet","18669":"flow:CLH:J_heart_outlet","18670":"flow:CLH:J_heart_outlet","18671":"flow:CLH:J_heart_outlet","18672":"flow:CLH:J_heart_outlet","18673":"flow:CLH:J_heart_outlet","18674":"flow:CLH:J_heart_outlet","18675":"flow:CLH:J_heart_outlet","18676":"flow:CLH:J_heart_outlet","18677":"flow:CLH:J_heart_outlet","18678":"flow:CLH:J_heart_outlet","18679":"flow:CLH:J_heart_outlet","18680":"flow:CLH:J_heart_outlet","18681":"flow:CLH:J_heart_outlet","18682":"flow:CLH:J_heart_outlet","18683":"flow:CLH:J_heart_outlet","18684":"flow:CLH:J_heart_outlet","18685":"flow:CLH:J_heart_outlet","18686":"flow:CLH:J_heart_outlet","18687":"flow:CLH:J_heart_outlet","18688":"flow:CLH:J_heart_outlet","18689":"flow:CLH:J_heart_outlet","18690":"flow:CLH:J_heart_outlet","18691":"flow:CLH:J_heart_outlet","18692":"flow:CLH:J_heart_outlet","18693":"flow:CLH:J_heart_outlet","18694":"flow:CLH:J_heart_outlet","18695":"flow:CLH:J_heart_outlet","18696":"flow:CLH:J_heart_outlet","18697":"flow:CLH:J_heart_outlet","18698":"flow:CLH:J_heart_outlet","18699":"flow:CLH:J_heart_outlet","18700":"flow:CLH:J_heart_outlet","18701":"flow:CLH:J_heart_outlet","18702":"flow:CLH:J_heart_outlet","18703":"flow:CLH:J_heart_outlet","18704":"flow:CLH:J_heart_outlet","18705":"flow:CLH:J_heart_outlet","18706":"flow:CLH:J_heart_outlet","18707":"flow:CLH:J_heart_outlet","18708":"flow:CLH:J_heart_outlet","18709":"flow:CLH:J_heart_outlet","18710":"flow:CLH:J_heart_outlet","18711":"flow:CLH:J_heart_outlet","18712":"flow:CLH:J_heart_outlet","18713":"flow:CLH:J_heart_outlet","18714":"flow:CLH:J_heart_outlet","18715":"flow:CLH:J_heart_outlet","18716":"flow:CLH:J_heart_outlet","18717":"flow:CLH:J_heart_outlet","18718":"flow:CLH:J_heart_outlet","18719":"flow:CLH:J_heart_outlet","18720":"flow:CLH:J_heart_outlet","18721":"flow:CLH:J_heart_outlet","18722":"flow:CLH:J_heart_outlet","18723":"flow:CLH:J_heart_outlet","18724":"flow:CLH:J_heart_outlet","18725":"flow:CLH:J_heart_outlet","18726":"flow:CLH:J_heart_outlet","18727":"flow:CLH:J_heart_outlet","18728":"flow:CLH:J_heart_outlet","18729":"flow:CLH:J_heart_outlet","18730":"flow:CLH:J_heart_outlet","18731":"flow:CLH:J_heart_outlet","18732":"flow:CLH:J_heart_outlet","18733":"flow:CLH:J_heart_outlet","18734":"flow:CLH:J_heart_outlet","18735":"flow:CLH:J_heart_outlet","18736":"flow:CLH:J_heart_outlet","18737":"flow:CLH:J_heart_outlet","18738":"flow:CLH:J_heart_outlet","18739":"flow:CLH:J_heart_outlet","18740":"flow:CLH:J_heart_outlet","18741":"flow:CLH:J_heart_outlet","18742":"flow:CLH:J_heart_outlet","18743":"flow:CLH:J_heart_outlet","18744":"flow:CLH:J_heart_outlet","18745":"flow:CLH:J_heart_outlet","18746":"flow:CLH:J_heart_outlet","18747":"flow:CLH:J_heart_outlet","18748":"flow:CLH:J_heart_outlet","18749":"flow:CLH:J_heart_outlet","18750":"flow:CLH:J_heart_outlet","18751":"flow:CLH:J_heart_outlet","18752":"flow:CLH:J_heart_outlet","18753":"flow:CLH:J_heart_outlet","18754":"flow:CLH:J_heart_outlet","18755":"flow:CLH:J_heart_outlet","18756":"flow:CLH:J_heart_outlet","18757":"flow:CLH:J_heart_outlet","18758":"flow:CLH:J_heart_outlet","18759":"flow:CLH:J_heart_outlet","18760":"flow:CLH:J_heart_outlet","18761":"flow:CLH:J_heart_outlet","18762":"flow:CLH:J_heart_outlet","18763":"flow:CLH:J_heart_outlet","18764":"flow:CLH:J_heart_outlet","18765":"flow:CLH:J_heart_outlet","18766":"flow:CLH:J_heart_outlet","18767":"flow:CLH:J_heart_outlet","18768":"flow:CLH:J_heart_outlet","18769":"flow:CLH:J_heart_outlet","18770":"flow:CLH:J_heart_outlet","18771":"flow:CLH:J_heart_outlet","18772":"flow:CLH:J_heart_outlet","18773":"flow:CLH:J_heart_outlet","18774":"flow:CLH:J_heart_outlet","18775":"flow:CLH:J_heart_outlet","18776":"flow:CLH:J_heart_outlet","18777":"flow:CLH:J_heart_outlet","18778":"flow:CLH:J_heart_outlet","18779":"flow:CLH:J_heart_outlet","18780":"flow:CLH:J_heart_outlet","18781":"flow:CLH:J_heart_outlet","18782":"flow:CLH:J_heart_outlet","18783":"flow:CLH:J_heart_outlet","18784":"flow:CLH:J_heart_outlet","18785":"flow:CLH:J_heart_outlet","18786":"flow:CLH:J_heart_outlet","18787":"flow:CLH:J_heart_outlet","18788":"flow:CLH:J_heart_outlet","18789":"flow:CLH:J_heart_outlet","18790":"flow:CLH:J_heart_outlet","18791":"flow:CLH:J_heart_outlet","18792":"flow:CLH:J_heart_outlet","18793":"flow:CLH:J_heart_outlet","18794":"flow:CLH:J_heart_outlet","18795":"flow:CLH:J_heart_outlet","18796":"flow:CLH:J_heart_outlet","18797":"flow:CLH:J_heart_outlet","18798":"flow:CLH:J_heart_outlet","18799":"flow:CLH:J_heart_outlet","18800":"flow:CLH:J_heart_outlet","18801":"flow:CLH:J_heart_outlet","18802":"flow:CLH:J_heart_outlet","18803":"flow:CLH:J_heart_outlet","18804":"flow:CLH:J_heart_outlet","18805":"flow:CLH:J_heart_outlet","18806":"flow:CLH:J_heart_outlet","18807":"flow:CLH:J_heart_outlet","18808":"flow:CLH:J_heart_outlet","18809":"flow:CLH:J_heart_outlet","18810":"flow:CLH:J_heart_outlet","18811":"flow:CLH:J_heart_outlet","18812":"flow:CLH:J_heart_outlet","18813":"flow:CLH:J_heart_outlet","18814":"flow:CLH:J_heart_outlet","18815":"flow:CLH:J_heart_outlet","18816":"flow:CLH:J_heart_outlet","18817":"flow:CLH:J_heart_outlet","18818":"flow:CLH:J_heart_outlet","18819":"flow:CLH:J_heart_outlet","18820":"flow:CLH:J_heart_outlet","18821":"flow:CLH:J_heart_outlet","18822":"flow:CLH:J_heart_outlet","18823":"flow:CLH:J_heart_outlet","18824":"flow:CLH:J_heart_outlet","18825":"flow:CLH:J_heart_outlet","18826":"flow:CLH:J_heart_outlet","18827":"flow:CLH:J_heart_outlet","18828":"flow:CLH:J_heart_outlet","18829":"flow:CLH:J_heart_outlet","18830":"flow:CLH:J_heart_outlet","18831":"flow:CLH:J_heart_outlet","18832":"flow:CLH:J_heart_outlet","18833":"flow:CLH:J_heart_outlet","18834":"flow:CLH:J_heart_outlet","18835":"flow:CLH:J_heart_outlet","18836":"flow:CLH:J_heart_outlet","18837":"flow:CLH:J_heart_outlet","18838":"flow:CLH:J_heart_outlet","18839":"flow:CLH:J_heart_outlet","18840":"flow:CLH:J_heart_outlet","18841":"flow:CLH:J_heart_outlet","18842":"flow:CLH:J_heart_outlet","18843":"flow:CLH:J_heart_outlet","18844":"flow:CLH:J_heart_outlet","18845":"flow:CLH:J_heart_outlet","18846":"flow:CLH:J_heart_outlet","18847":"flow:CLH:J_heart_outlet","18848":"flow:CLH:J_heart_outlet","18849":"flow:CLH:J_heart_outlet","18850":"flow:CLH:J_heart_outlet","18851":"flow:CLH:J_heart_outlet","18852":"flow:CLH:J_heart_outlet","18853":"flow:CLH:J_heart_outlet","18854":"flow:CLH:J_heart_outlet","18855":"flow:CLH:J_heart_outlet","18856":"flow:CLH:J_heart_outlet","18857":"flow:CLH:J_heart_outlet","18858":"flow:CLH:J_heart_outlet","18859":"flow:CLH:J_heart_outlet","18860":"flow:CLH:J_heart_outlet","18861":"flow:CLH:J_heart_outlet","18862":"flow:CLH:J_heart_outlet","18863":"flow:CLH:J_heart_outlet","18864":"flow:CLH:J_heart_outlet","18865":"flow:CLH:J_heart_outlet","18866":"flow:CLH:J_heart_outlet","18867":"flow:CLH:J_heart_outlet","18868":"flow:CLH:J_heart_outlet","18869":"flow:CLH:J_heart_outlet","18870":"flow:CLH:J_heart_outlet","18871":"flow:CLH:J_heart_outlet","18872":"flow:CLH:J_heart_outlet","18873":"flow:CLH:J_heart_outlet","18874":"flow:CLH:J_heart_outlet","18875":"flow:CLH:J_heart_outlet","18876":"flow:CLH:J_heart_outlet","18877":"flow:CLH:J_heart_outlet","18878":"flow:CLH:J_heart_outlet","18879":"flow:CLH:J_heart_outlet","18880":"flow:CLH:J_heart_outlet","18881":"flow:CLH:J_heart_outlet","18882":"flow:CLH:J_heart_outlet","18883":"flow:CLH:J_heart_outlet","18884":"flow:CLH:J_heart_outlet","18885":"flow:CLH:J_heart_outlet","18886":"flow:CLH:J_heart_outlet","18887":"flow:CLH:J_heart_outlet","18888":"flow:CLH:J_heart_outlet","18889":"flow:CLH:J_heart_outlet","18890":"flow:CLH:J_heart_outlet","18891":"flow:CLH:J_heart_outlet","18892":"flow:CLH:J_heart_outlet","18893":"flow:CLH:J_heart_outlet","18894":"flow:CLH:J_heart_outlet","18895":"flow:CLH:J_heart_outlet","18896":"flow:CLH:J_heart_outlet","18897":"flow:CLH:J_heart_outlet","18898":"flow:CLH:J_heart_outlet","18899":"flow:CLH:J_heart_outlet","18900":"flow:CLH:J_heart_outlet","18901":"flow:CLH:J_heart_outlet","18902":"flow:CLH:J_heart_outlet","18903":"flow:CLH:J_heart_outlet","18904":"flow:CLH:J_heart_outlet","18905":"flow:CLH:J_heart_outlet","18906":"flow:CLH:J_heart_outlet","18907":"flow:CLH:J_heart_outlet","18908":"flow:CLH:J_heart_outlet","18909":"flow:CLH:J_heart_outlet","18910":"flow:CLH:J_heart_outlet","18911":"flow:CLH:J_heart_outlet","18912":"flow:CLH:J_heart_outlet","18913":"flow:CLH:J_heart_outlet","18914":"flow:CLH:J_heart_outlet","18915":"flow:CLH:J_heart_outlet","18916":"flow:CLH:J_heart_outlet","18917":"flow:CLH:J_heart_outlet","18918":"flow:CLH:J_heart_outlet","18919":"flow:CLH:J_heart_outlet","18920":"flow:CLH:J_heart_outlet","18921":"flow:CLH:J_heart_outlet","18922":"flow:CLH:J_heart_outlet","18923":"flow:CLH:J_heart_outlet","18924":"flow:CLH:J_heart_outlet","18925":"flow:CLH:J_heart_outlet","18926":"flow:CLH:J_heart_outlet","18927":"flow:CLH:J_heart_outlet","18928":"flow:CLH:J_heart_outlet","18929":"flow:CLH:J_heart_outlet","18930":"flow:CLH:J_heart_outlet","18931":"flow:CLH:J_heart_outlet","18932":"flow:CLH:J_heart_outlet","18933":"flow:CLH:J_heart_outlet","18934":"flow:CLH:J_heart_outlet","18935":"flow:CLH:J_heart_outlet","18936":"flow:CLH:J_heart_outlet","18937":"flow:CLH:J_heart_outlet","18938":"flow:CLH:J_heart_outlet","18939":"flow:CLH:J_heart_outlet","18940":"flow:CLH:J_heart_outlet","18941":"flow:CLH:J_heart_outlet","18942":"flow:CLH:J_heart_outlet","18943":"flow:CLH:J_heart_outlet","18944":"flow:CLH:J_heart_outlet","18945":"flow:CLH:J_heart_outlet","18946":"flow:CLH:J_heart_outlet","18947":"flow:CLH:J_heart_outlet","18948":"flow:CLH:J_heart_outlet","18949":"flow:CLH:J_heart_outlet","18950":"flow:CLH:J_heart_outlet","18951":"flow:CLH:J_heart_outlet","18952":"flow:CLH:J_heart_outlet","18953":"flow:CLH:J_heart_outlet","18954":"flow:CLH:J_heart_outlet","18955":"flow:CLH:J_heart_outlet","18956":"flow:CLH:J_heart_outlet","18957":"flow:CLH:J_heart_outlet","18958":"flow:CLH:J_heart_outlet","18959":"flow:CLH:J_heart_outlet","18960":"flow:CLH:J_heart_outlet","18961":"flow:CLH:J_heart_outlet","18962":"flow:CLH:J_heart_outlet","18963":"flow:CLH:J_heart_outlet","18964":"flow:CLH:J_heart_outlet","18965":"flow:CLH:J_heart_outlet","18966":"flow:CLH:J_heart_outlet","18967":"flow:CLH:J_heart_outlet","18968":"flow:CLH:J_heart_outlet","18969":"flow:CLH:J_heart_outlet","18970":"flow:CLH:J_heart_outlet","18971":"flow:CLH:J_heart_outlet","18972":"flow:CLH:J_heart_outlet","18973":"flow:CLH:J_heart_outlet","18974":"flow:CLH:J_heart_outlet","18975":"flow:CLH:J_heart_outlet","18976":"flow:CLH:J_heart_outlet","18977":"flow:CLH:J_heart_outlet","18978":"flow:CLH:J_heart_outlet","18979":"flow:CLH:J_heart_outlet","18980":"flow:CLH:J_heart_outlet","18981":"flow:CLH:J_heart_outlet","18982":"flow:CLH:J_heart_outlet","18983":"flow:CLH:J_heart_outlet","18984":"flow:CLH:J_heart_outlet","18985":"flow:CLH:J_heart_outlet","18986":"flow:CLH:J_heart_outlet","18987":"flow:CLH:J_heart_outlet","18988":"flow:CLH:J_heart_outlet","18989":"flow:CLH:J_heart_outlet","18990":"flow:CLH:J_heart_outlet","18991":"flow:CLH:J_heart_outlet","18992":"flow:CLH:J_heart_outlet","18993":"flow:CLH:J_heart_outlet","18994":"flow:CLH:J_heart_outlet","18995":"flow:CLH:J_heart_outlet","18996":"flow:CLH:J_heart_outlet","18997":"flow:CLH:J_heart_outlet","18998":"flow:CLH:J_heart_outlet","18999":"flow:CLH:J_heart_outlet","19000":"pressure:CLH:J_heart_outlet","19001":"pressure:CLH:J_heart_outlet","19002":"pressure:CLH:J_heart_outlet","19003":"pressure:CLH:J_heart_outlet","19004":"pressure:CLH:J_heart_outlet","19005":"pressure:CLH:J_heart_outlet","19006":"pressure:CLH:J_heart_outlet","19007":"pressure:CLH:J_heart_outlet","19008":"pressure:CLH:J_heart_outlet","19009":"pressure:CLH:J_heart_outlet","19010":"pressure:CLH:J_heart_outlet","19011":"pressure:CLH:J_heart_outlet","19012":"pressure:CLH:J_heart_outlet","19013":"pressure:CLH:J_heart_outlet","19014":"pressure:CLH:J_heart_outlet","19015":"pressure:CLH:J_heart_outlet","19016":"pressure:CLH:J_heart_outlet","19017":"pressure:CLH:J_heart_outlet","19018":"pressure:CLH:J_heart_outlet","19019":"pressure:CLH:J_heart_outlet","19020":"pressure:CLH:J_heart_outlet","19021":"pressure:CLH:J_heart_outlet","19022":"pressure:CLH:J_heart_outlet","19023":"pressure:CLH:J_heart_outlet","19024":"pressure:CLH:J_heart_outlet","19025":"pressure:CLH:J_heart_outlet","19026":"pressure:CLH:J_heart_outlet","19027":"pressure:CLH:J_heart_outlet","19028":"pressure:CLH:J_heart_outlet","19029":"pressure:CLH:J_heart_outlet","19030":"pressure:CLH:J_heart_outlet","19031":"pressure:CLH:J_heart_outlet","19032":"pressure:CLH:J_heart_outlet","19033":"pressure:CLH:J_heart_outlet","19034":"pressure:CLH:J_heart_outlet","19035":"pressure:CLH:J_heart_outlet","19036":"pressure:CLH:J_heart_outlet","19037":"pressure:CLH:J_heart_outlet","19038":"pressure:CLH:J_heart_outlet","19039":"pressure:CLH:J_heart_outlet","19040":"pressure:CLH:J_heart_outlet","19041":"pressure:CLH:J_heart_outlet","19042":"pressure:CLH:J_heart_outlet","19043":"pressure:CLH:J_heart_outlet","19044":"pressure:CLH:J_heart_outlet","19045":"pressure:CLH:J_heart_outlet","19046":"pressure:CLH:J_heart_outlet","19047":"pressure:CLH:J_heart_outlet","19048":"pressure:CLH:J_heart_outlet","19049":"pressure:CLH:J_heart_outlet","19050":"pressure:CLH:J_heart_outlet","19051":"pressure:CLH:J_heart_outlet","19052":"pressure:CLH:J_heart_outlet","19053":"pressure:CLH:J_heart_outlet","19054":"pressure:CLH:J_heart_outlet","19055":"pressure:CLH:J_heart_outlet","19056":"pressure:CLH:J_heart_outlet","19057":"pressure:CLH:J_heart_outlet","19058":"pressure:CLH:J_heart_outlet","19059":"pressure:CLH:J_heart_outlet","19060":"pressure:CLH:J_heart_outlet","19061":"pressure:CLH:J_heart_outlet","19062":"pressure:CLH:J_heart_outlet","19063":"pressure:CLH:J_heart_outlet","19064":"pressure:CLH:J_heart_outlet","19065":"pressure:CLH:J_heart_outlet","19066":"pressure:CLH:J_heart_outlet","19067":"pressure:CLH:J_heart_outlet","19068":"pressure:CLH:J_heart_outlet","19069":"pressure:CLH:J_heart_outlet","19070":"pressure:CLH:J_heart_outlet","19071":"pressure:CLH:J_heart_outlet","19072":"pressure:CLH:J_heart_outlet","19073":"pressure:CLH:J_heart_outlet","19074":"pressure:CLH:J_heart_outlet","19075":"pressure:CLH:J_heart_outlet","19076":"pressure:CLH:J_heart_outlet","19077":"pressure:CLH:J_heart_outlet","19078":"pressure:CLH:J_heart_outlet","19079":"pressure:CLH:J_heart_outlet","19080":"pressure:CLH:J_heart_outlet","19081":"pressure:CLH:J_heart_outlet","19082":"pressure:CLH:J_heart_outlet","19083":"pressure:CLH:J_heart_outlet","19084":"pressure:CLH:J_heart_outlet","19085":"pressure:CLH:J_heart_outlet","19086":"pressure:CLH:J_heart_outlet","19087":"pressure:CLH:J_heart_outlet","19088":"pressure:CLH:J_heart_outlet","19089":"pressure:CLH:J_heart_outlet","19090":"pressure:CLH:J_heart_outlet","19091":"pressure:CLH:J_heart_outlet","19092":"pressure:CLH:J_heart_outlet","19093":"pressure:CLH:J_heart_outlet","19094":"pressure:CLH:J_heart_outlet","19095":"pressure:CLH:J_heart_outlet","19096":"pressure:CLH:J_heart_outlet","19097":"pressure:CLH:J_heart_outlet","19098":"pressure:CLH:J_heart_outlet","19099":"pressure:CLH:J_heart_outlet","19100":"pressure:CLH:J_heart_outlet","19101":"pressure:CLH:J_heart_outlet","19102":"pressure:CLH:J_heart_outlet","19103":"pressure:CLH:J_heart_outlet","19104":"pressure:CLH:J_heart_outlet","19105":"pressure:CLH:J_heart_outlet","19106":"pressure:CLH:J_heart_outlet","19107":"pressure:CLH:J_heart_outlet","19108":"pressure:CLH:J_heart_outlet","19109":"pressure:CLH:J_heart_outlet","19110":"pressure:CLH:J_heart_outlet","19111":"pressure:CLH:J_heart_outlet","19112":"pressure:CLH:J_heart_outlet","19113":"pressure:CLH:J_heart_outlet","19114":"pressure:CLH:J_heart_outlet","19115":"pressure:CLH:J_heart_outlet","19116":"pressure:CLH:J_heart_outlet","19117":"pressure:CLH:J_heart_outlet","19118":"pressure:CLH:J_heart_outlet","19119":"pressure:CLH:J_heart_outlet","19120":"pressure:CLH:J_heart_outlet","19121":"pressure:CLH:J_heart_outlet","19122":"pressure:CLH:J_heart_outlet","19123":"pressure:CLH:J_heart_outlet","19124":"pressure:CLH:J_heart_outlet","19125":"pressure:CLH:J_heart_outlet","19126":"pressure:CLH:J_heart_outlet","19127":"pressure:CLH:J_heart_outlet","19128":"pressure:CLH:J_heart_outlet","19129":"pressure:CLH:J_heart_outlet","19130":"pressure:CLH:J_heart_outlet","19131":"pressure:CLH:J_heart_outlet","19132":"pressure:CLH:J_heart_outlet","19133":"pressure:CLH:J_heart_outlet","19134":"pressure:CLH:J_heart_outlet","19135":"pressure:CLH:J_heart_outlet","19136":"pressure:CLH:J_heart_outlet","19137":"pressure:CLH:J_heart_outlet","19138":"pressure:CLH:J_heart_outlet","19139":"pressure:CLH:J_heart_outlet","19140":"pressure:CLH:J_heart_outlet","19141":"pressure:CLH:J_heart_outlet","19142":"pressure:CLH:J_heart_outlet","19143":"pressure:CLH:J_heart_outlet","19144":"pressure:CLH:J_heart_outlet","19145":"pressure:CLH:J_heart_outlet","19146":"pressure:CLH:J_heart_outlet","19147":"pressure:CLH:J_heart_outlet","19148":"pressure:CLH:J_heart_outlet","19149":"pressure:CLH:J_heart_outlet","19150":"pressure:CLH:J_heart_outlet","19151":"pressure:CLH:J_heart_outlet","19152":"pressure:CLH:J_heart_outlet","19153":"pressure:CLH:J_heart_outlet","19154":"pressure:CLH:J_heart_outlet","19155":"pressure:CLH:J_heart_outlet","19156":"pressure:CLH:J_heart_outlet","19157":"pressure:CLH:J_heart_outlet","19158":"pressure:CLH:J_heart_outlet","19159":"pressure:CLH:J_heart_outlet","19160":"pressure:CLH:J_heart_outlet","19161":"pressure:CLH:J_heart_outlet","19162":"pressure:CLH:J_heart_outlet","19163":"pressure:CLH:J_heart_outlet","19164":"pressure:CLH:J_heart_outlet","19165":"pressure:CLH:J_heart_outlet","19166":"pressure:CLH:J_heart_outlet","19167":"pressure:CLH:J_heart_outlet","19168":"pressure:CLH:J_heart_outlet","19169":"pressure:CLH:J_heart_outlet","19170":"pressure:CLH:J_heart_outlet","19171":"pressure:CLH:J_heart_outlet","19172":"pressure:CLH:J_heart_outlet","19173":"pressure:CLH:J_heart_outlet","19174":"pressure:CLH:J_heart_outlet","19175":"pressure:CLH:J_heart_outlet","19176":"pressure:CLH:J_heart_outlet","19177":"pressure:CLH:J_heart_outlet","19178":"pressure:CLH:J_heart_outlet","19179":"pressure:CLH:J_heart_outlet","19180":"pressure:CLH:J_heart_outlet","19181":"pressure:CLH:J_heart_outlet","19182":"pressure:CLH:J_heart_outlet","19183":"pressure:CLH:J_heart_outlet","19184":"pressure:CLH:J_heart_outlet","19185":"pressure:CLH:J_heart_outlet","19186":"pressure:CLH:J_heart_outlet","19187":"pressure:CLH:J_heart_outlet","19188":"pressure:CLH:J_heart_outlet","19189":"pressure:CLH:J_heart_outlet","19190":"pressure:CLH:J_heart_outlet","19191":"pressure:CLH:J_heart_outlet","19192":"pressure:CLH:J_heart_outlet","19193":"pressure:CLH:J_heart_outlet","19194":"pressure:CLH:J_heart_outlet","19195":"pressure:CLH:J_heart_outlet","19196":"pressure:CLH:J_heart_outlet","19197":"pressure:CLH:J_heart_outlet","19198":"pressure:CLH:J_heart_outlet","19199":"pressure:CLH:J_heart_outlet","19200":"pressure:CLH:J_heart_outlet","19201":"pressure:CLH:J_heart_outlet","19202":"pressure:CLH:J_heart_outlet","19203":"pressure:CLH:J_heart_outlet","19204":"pressure:CLH:J_heart_outlet","19205":"pressure:CLH:J_heart_outlet","19206":"pressure:CLH:J_heart_outlet","19207":"pressure:CLH:J_heart_outlet","19208":"pressure:CLH:J_heart_outlet","19209":"pressure:CLH:J_heart_outlet","19210":"pressure:CLH:J_heart_outlet","19211":"pressure:CLH:J_heart_outlet","19212":"pressure:CLH:J_heart_outlet","19213":"pressure:CLH:J_heart_outlet","19214":"pressure:CLH:J_heart_outlet","19215":"pressure:CLH:J_heart_outlet","19216":"pressure:CLH:J_heart_outlet","19217":"pressure:CLH:J_heart_outlet","19218":"pressure:CLH:J_heart_outlet","19219":"pressure:CLH:J_heart_outlet","19220":"pressure:CLH:J_heart_outlet","19221":"pressure:CLH:J_heart_outlet","19222":"pressure:CLH:J_heart_outlet","19223":"pressure:CLH:J_heart_outlet","19224":"pressure:CLH:J_heart_outlet","19225":"pressure:CLH:J_heart_outlet","19226":"pressure:CLH:J_heart_outlet","19227":"pressure:CLH:J_heart_outlet","19228":"pressure:CLH:J_heart_outlet","19229":"pressure:CLH:J_heart_outlet","19230":"pressure:CLH:J_heart_outlet","19231":"pressure:CLH:J_heart_outlet","19232":"pressure:CLH:J_heart_outlet","19233":"pressure:CLH:J_heart_outlet","19234":"pressure:CLH:J_heart_outlet","19235":"pressure:CLH:J_heart_outlet","19236":"pressure:CLH:J_heart_outlet","19237":"pressure:CLH:J_heart_outlet","19238":"pressure:CLH:J_heart_outlet","19239":"pressure:CLH:J_heart_outlet","19240":"pressure:CLH:J_heart_outlet","19241":"pressure:CLH:J_heart_outlet","19242":"pressure:CLH:J_heart_outlet","19243":"pressure:CLH:J_heart_outlet","19244":"pressure:CLH:J_heart_outlet","19245":"pressure:CLH:J_heart_outlet","19246":"pressure:CLH:J_heart_outlet","19247":"pressure:CLH:J_heart_outlet","19248":"pressure:CLH:J_heart_outlet","19249":"pressure:CLH:J_heart_outlet","19250":"pressure:CLH:J_heart_outlet","19251":"pressure:CLH:J_heart_outlet","19252":"pressure:CLH:J_heart_outlet","19253":"pressure:CLH:J_heart_outlet","19254":"pressure:CLH:J_heart_outlet","19255":"pressure:CLH:J_heart_outlet","19256":"pressure:CLH:J_heart_outlet","19257":"pressure:CLH:J_heart_outlet","19258":"pressure:CLH:J_heart_outlet","19259":"pressure:CLH:J_heart_outlet","19260":"pressure:CLH:J_heart_outlet","19261":"pressure:CLH:J_heart_outlet","19262":"pressure:CLH:J_heart_outlet","19263":"pressure:CLH:J_heart_outlet","19264":"pressure:CLH:J_heart_outlet","19265":"pressure:CLH:J_heart_outlet","19266":"pressure:CLH:J_heart_outlet","19267":"pressure:CLH:J_heart_outlet","19268":"pressure:CLH:J_heart_outlet","19269":"pressure:CLH:J_heart_outlet","19270":"pressure:CLH:J_heart_outlet","19271":"pressure:CLH:J_heart_outlet","19272":"pressure:CLH:J_heart_outlet","19273":"pressure:CLH:J_heart_outlet","19274":"pressure:CLH:J_heart_outlet","19275":"pressure:CLH:J_heart_outlet","19276":"pressure:CLH:J_heart_outlet","19277":"pressure:CLH:J_heart_outlet","19278":"pressure:CLH:J_heart_outlet","19279":"pressure:CLH:J_heart_outlet","19280":"pressure:CLH:J_heart_outlet","19281":"pressure:CLH:J_heart_outlet","19282":"pressure:CLH:J_heart_outlet","19283":"pressure:CLH:J_heart_outlet","19284":"pressure:CLH:J_heart_outlet","19285":"pressure:CLH:J_heart_outlet","19286":"pressure:CLH:J_heart_outlet","19287":"pressure:CLH:J_heart_outlet","19288":"pressure:CLH:J_heart_outlet","19289":"pressure:CLH:J_heart_outlet","19290":"pressure:CLH:J_heart_outlet","19291":"pressure:CLH:J_heart_outlet","19292":"pressure:CLH:J_heart_outlet","19293":"pressure:CLH:J_heart_outlet","19294":"pressure:CLH:J_heart_outlet","19295":"pressure:CLH:J_heart_outlet","19296":"pressure:CLH:J_heart_outlet","19297":"pressure:CLH:J_heart_outlet","19298":"pressure:CLH:J_heart_outlet","19299":"pressure:CLH:J_heart_outlet","19300":"pressure:CLH:J_heart_outlet","19301":"pressure:CLH:J_heart_outlet","19302":"pressure:CLH:J_heart_outlet","19303":"pressure:CLH:J_heart_outlet","19304":"pressure:CLH:J_heart_outlet","19305":"pressure:CLH:J_heart_outlet","19306":"pressure:CLH:J_heart_outlet","19307":"pressure:CLH:J_heart_outlet","19308":"pressure:CLH:J_heart_outlet","19309":"pressure:CLH:J_heart_outlet","19310":"pressure:CLH:J_heart_outlet","19311":"pressure:CLH:J_heart_outlet","19312":"pressure:CLH:J_heart_outlet","19313":"pressure:CLH:J_heart_outlet","19314":"pressure:CLH:J_heart_outlet","19315":"pressure:CLH:J_heart_outlet","19316":"pressure:CLH:J_heart_outlet","19317":"pressure:CLH:J_heart_outlet","19318":"pressure:CLH:J_heart_outlet","19319":"pressure:CLH:J_heart_outlet","19320":"pressure:CLH:J_heart_outlet","19321":"pressure:CLH:J_heart_outlet","19322":"pressure:CLH:J_heart_outlet","19323":"pressure:CLH:J_heart_outlet","19324":"pressure:CLH:J_heart_outlet","19325":"pressure:CLH:J_heart_outlet","19326":"pressure:CLH:J_heart_outlet","19327":"pressure:CLH:J_heart_outlet","19328":"pressure:CLH:J_heart_outlet","19329":"pressure:CLH:J_heart_outlet","19330":"pressure:CLH:J_heart_outlet","19331":"pressure:CLH:J_heart_outlet","19332":"pressure:CLH:J_heart_outlet","19333":"pressure:CLH:J_heart_outlet","19334":"pressure:CLH:J_heart_outlet","19335":"pressure:CLH:J_heart_outlet","19336":"pressure:CLH:J_heart_outlet","19337":"pressure:CLH:J_heart_outlet","19338":"pressure:CLH:J_heart_outlet","19339":"pressure:CLH:J_heart_outlet","19340":"pressure:CLH:J_heart_outlet","19341":"pressure:CLH:J_heart_outlet","19342":"pressure:CLH:J_heart_outlet","19343":"pressure:CLH:J_heart_outlet","19344":"pressure:CLH:J_heart_outlet","19345":"pressure:CLH:J_heart_outlet","19346":"pressure:CLH:J_heart_outlet","19347":"pressure:CLH:J_heart_outlet","19348":"pressure:CLH:J_heart_outlet","19349":"pressure:CLH:J_heart_outlet","19350":"pressure:CLH:J_heart_outlet","19351":"pressure:CLH:J_heart_outlet","19352":"pressure:CLH:J_heart_outlet","19353":"pressure:CLH:J_heart_outlet","19354":"pressure:CLH:J_heart_outlet","19355":"pressure:CLH:J_heart_outlet","19356":"pressure:CLH:J_heart_outlet","19357":"pressure:CLH:J_heart_outlet","19358":"pressure:CLH:J_heart_outlet","19359":"pressure:CLH:J_heart_outlet","19360":"pressure:CLH:J_heart_outlet","19361":"pressure:CLH:J_heart_outlet","19362":"pressure:CLH:J_heart_outlet","19363":"pressure:CLH:J_heart_outlet","19364":"pressure:CLH:J_heart_outlet","19365":"pressure:CLH:J_heart_outlet","19366":"pressure:CLH:J_heart_outlet","19367":"pressure:CLH:J_heart_outlet","19368":"pressure:CLH:J_heart_outlet","19369":"pressure:CLH:J_heart_outlet","19370":"pressure:CLH:J_heart_outlet","19371":"pressure:CLH:J_heart_outlet","19372":"pressure:CLH:J_heart_outlet","19373":"pressure:CLH:J_heart_outlet","19374":"pressure:CLH:J_heart_outlet","19375":"pressure:CLH:J_heart_outlet","19376":"pressure:CLH:J_heart_outlet","19377":"pressure:CLH:J_heart_outlet","19378":"pressure:CLH:J_heart_outlet","19379":"pressure:CLH:J_heart_outlet","19380":"pressure:CLH:J_heart_outlet","19381":"pressure:CLH:J_heart_outlet","19382":"pressure:CLH:J_heart_outlet","19383":"pressure:CLH:J_heart_outlet","19384":"pressure:CLH:J_heart_outlet","19385":"pressure:CLH:J_heart_outlet","19386":"pressure:CLH:J_heart_outlet","19387":"pressure:CLH:J_heart_outlet","19388":"pressure:CLH:J_heart_outlet","19389":"pressure:CLH:J_heart_outlet","19390":"pressure:CLH:J_heart_outlet","19391":"pressure:CLH:J_heart_outlet","19392":"pressure:CLH:J_heart_outlet","19393":"pressure:CLH:J_heart_outlet","19394":"pressure:CLH:J_heart_outlet","19395":"pressure:CLH:J_heart_outlet","19396":"pressure:CLH:J_heart_outlet","19397":"pressure:CLH:J_heart_outlet","19398":"pressure:CLH:J_heart_outlet","19399":"pressure:CLH:J_heart_outlet","19400":"pressure:CLH:J_heart_outlet","19401":"pressure:CLH:J_heart_outlet","19402":"pressure:CLH:J_heart_outlet","19403":"pressure:CLH:J_heart_outlet","19404":"pressure:CLH:J_heart_outlet","19405":"pressure:CLH:J_heart_outlet","19406":"pressure:CLH:J_heart_outlet","19407":"pressure:CLH:J_heart_outlet","19408":"pressure:CLH:J_heart_outlet","19409":"pressure:CLH:J_heart_outlet","19410":"pressure:CLH:J_heart_outlet","19411":"pressure:CLH:J_heart_outlet","19412":"pressure:CLH:J_heart_outlet","19413":"pressure:CLH:J_heart_outlet","19414":"pressure:CLH:J_heart_outlet","19415":"pressure:CLH:J_heart_outlet","19416":"pressure:CLH:J_heart_outlet","19417":"pressure:CLH:J_heart_outlet","19418":"pressure:CLH:J_heart_outlet","19419":"pressure:CLH:J_heart_outlet","19420":"pressure:CLH:J_heart_outlet","19421":"pressure:CLH:J_heart_outlet","19422":"pressure:CLH:J_heart_outlet","19423":"pressure:CLH:J_heart_outlet","19424":"pressure:CLH:J_heart_outlet","19425":"pressure:CLH:J_heart_outlet","19426":"pressure:CLH:J_heart_outlet","19427":"pressure:CLH:J_heart_outlet","19428":"pressure:CLH:J_heart_outlet","19429":"pressure:CLH:J_heart_outlet","19430":"pressure:CLH:J_heart_outlet","19431":"pressure:CLH:J_heart_outlet","19432":"pressure:CLH:J_heart_outlet","19433":"pressure:CLH:J_heart_outlet","19434":"pressure:CLH:J_heart_outlet","19435":"pressure:CLH:J_heart_outlet","19436":"pressure:CLH:J_heart_outlet","19437":"pressure:CLH:J_heart_outlet","19438":"pressure:CLH:J_heart_outlet","19439":"pressure:CLH:J_heart_outlet","19440":"pressure:CLH:J_heart_outlet","19441":"pressure:CLH:J_heart_outlet","19442":"pressure:CLH:J_heart_outlet","19443":"pressure:CLH:J_heart_outlet","19444":"pressure:CLH:J_heart_outlet","19445":"pressure:CLH:J_heart_outlet","19446":"pressure:CLH:J_heart_outlet","19447":"pressure:CLH:J_heart_outlet","19448":"pressure:CLH:J_heart_outlet","19449":"pressure:CLH:J_heart_outlet","19450":"pressure:CLH:J_heart_outlet","19451":"pressure:CLH:J_heart_outlet","19452":"pressure:CLH:J_heart_outlet","19453":"pressure:CLH:J_heart_outlet","19454":"pressure:CLH:J_heart_outlet","19455":"pressure:CLH:J_heart_outlet","19456":"pressure:CLH:J_heart_outlet","19457":"pressure:CLH:J_heart_outlet","19458":"pressure:CLH:J_heart_outlet","19459":"pressure:CLH:J_heart_outlet","19460":"pressure:CLH:J_heart_outlet","19461":"pressure:CLH:J_heart_outlet","19462":"pressure:CLH:J_heart_outlet","19463":"pressure:CLH:J_heart_outlet","19464":"pressure:CLH:J_heart_outlet","19465":"pressure:CLH:J_heart_outlet","19466":"pressure:CLH:J_heart_outlet","19467":"pressure:CLH:J_heart_outlet","19468":"pressure:CLH:J_heart_outlet","19469":"pressure:CLH:J_heart_outlet","19470":"pressure:CLH:J_heart_outlet","19471":"pressure:CLH:J_heart_outlet","19472":"pressure:CLH:J_heart_outlet","19473":"pressure:CLH:J_heart_outlet","19474":"pressure:CLH:J_heart_outlet","19475":"pressure:CLH:J_heart_outlet","19476":"pressure:CLH:J_heart_outlet","19477":"pressure:CLH:J_heart_outlet","19478":"pressure:CLH:J_heart_outlet","19479":"pressure:CLH:J_heart_outlet","19480":"pressure:CLH:J_heart_outlet","19481":"pressure:CLH:J_heart_outlet","19482":"pressure:CLH:J_heart_outlet","19483":"pressure:CLH:J_heart_outlet","19484":"pressure:CLH:J_heart_outlet","19485":"pressure:CLH:J_heart_outlet","19486":"pressure:CLH:J_heart_outlet","19487":"pressure:CLH:J_heart_outlet","19488":"pressure:CLH:J_heart_outlet","19489":"pressure:CLH:J_heart_outlet","19490":"pressure:CLH:J_heart_outlet","19491":"pressure:CLH:J_heart_outlet","19492":"pressure:CLH:J_heart_outlet","19493":"pressure:CLH:J_heart_outlet","19494":"pressure:CLH:J_heart_outlet","19495":"pressure:CLH:J_heart_outlet","19496":"pressure:CLH:J_heart_outlet","19497":"pressure:CLH:J_heart_outlet","19498":"pressure:CLH:J_heart_outlet","19499":"pressure:CLH:J_heart_outlet","19500":"pressure:CLH:J_heart_outlet","19501":"pressure:CLH:J_heart_outlet","19502":"pressure:CLH:J_heart_outlet","19503":"pressure:CLH:J_heart_outlet","19504":"pressure:CLH:J_heart_outlet","19505":"pressure:CLH:J_heart_outlet","19506":"pressure:CLH:J_heart_outlet","19507":"pressure:CLH:J_heart_outlet","19508":"pressure:CLH:J_heart_outlet","19509":"pressure:CLH:J_heart_outlet","19510":"pressure:CLH:J_heart_outlet","19511":"pressure:CLH:J_heart_outlet","19512":"pressure:CLH:J_heart_outlet","19513":"pressure:CLH:J_heart_outlet","19514":"pressure:CLH:J_heart_outlet","19515":"pressure:CLH:J_heart_outlet","19516":"pressure:CLH:J_heart_outlet","19517":"pressure:CLH:J_heart_outlet","19518":"pressure:CLH:J_heart_outlet","19519":"pressure:CLH:J_heart_outlet","19520":"pressure:CLH:J_heart_outlet","19521":"pressure:CLH:J_heart_outlet","19522":"pressure:CLH:J_heart_outlet","19523":"pressure:CLH:J_heart_outlet","19524":"pressure:CLH:J_heart_outlet","19525":"pressure:CLH:J_heart_outlet","19526":"pressure:CLH:J_heart_outlet","19527":"pressure:CLH:J_heart_outlet","19528":"pressure:CLH:J_heart_outlet","19529":"pressure:CLH:J_heart_outlet","19530":"pressure:CLH:J_heart_outlet","19531":"pressure:CLH:J_heart_outlet","19532":"pressure:CLH:J_heart_outlet","19533":"pressure:CLH:J_heart_outlet","19534":"pressure:CLH:J_heart_outlet","19535":"pressure:CLH:J_heart_outlet","19536":"pressure:CLH:J_heart_outlet","19537":"pressure:CLH:J_heart_outlet","19538":"pressure:CLH:J_heart_outlet","19539":"pressure:CLH:J_heart_outlet","19540":"pressure:CLH:J_heart_outlet","19541":"pressure:CLH:J_heart_outlet","19542":"pressure:CLH:J_heart_outlet","19543":"pressure:CLH:J_heart_outlet","19544":"pressure:CLH:J_heart_outlet","19545":"pressure:CLH:J_heart_outlet","19546":"pressure:CLH:J_heart_outlet","19547":"pressure:CLH:J_heart_outlet","19548":"pressure:CLH:J_heart_outlet","19549":"pressure:CLH:J_heart_outlet","19550":"pressure:CLH:J_heart_outlet","19551":"pressure:CLH:J_heart_outlet","19552":"pressure:CLH:J_heart_outlet","19553":"pressure:CLH:J_heart_outlet","19554":"pressure:CLH:J_heart_outlet","19555":"pressure:CLH:J_heart_outlet","19556":"pressure:CLH:J_heart_outlet","19557":"pressure:CLH:J_heart_outlet","19558":"pressure:CLH:J_heart_outlet","19559":"pressure:CLH:J_heart_outlet","19560":"pressure:CLH:J_heart_outlet","19561":"pressure:CLH:J_heart_outlet","19562":"pressure:CLH:J_heart_outlet","19563":"pressure:CLH:J_heart_outlet","19564":"pressure:CLH:J_heart_outlet","19565":"pressure:CLH:J_heart_outlet","19566":"pressure:CLH:J_heart_outlet","19567":"pressure:CLH:J_heart_outlet","19568":"pressure:CLH:J_heart_outlet","19569":"pressure:CLH:J_heart_outlet","19570":"pressure:CLH:J_heart_outlet","19571":"pressure:CLH:J_heart_outlet","19572":"pressure:CLH:J_heart_outlet","19573":"pressure:CLH:J_heart_outlet","19574":"pressure:CLH:J_heart_outlet","19575":"pressure:CLH:J_heart_outlet","19576":"pressure:CLH:J_heart_outlet","19577":"pressure:CLH:J_heart_outlet","19578":"pressure:CLH:J_heart_outlet","19579":"pressure:CLH:J_heart_outlet","19580":"pressure:CLH:J_heart_outlet","19581":"pressure:CLH:J_heart_outlet","19582":"pressure:CLH:J_heart_outlet","19583":"pressure:CLH:J_heart_outlet","19584":"pressure:CLH:J_heart_outlet","19585":"pressure:CLH:J_heart_outlet","19586":"pressure:CLH:J_heart_outlet","19587":"pressure:CLH:J_heart_outlet","19588":"pressure:CLH:J_heart_outlet","19589":"pressure:CLH:J_heart_outlet","19590":"pressure:CLH:J_heart_outlet","19591":"pressure:CLH:J_heart_outlet","19592":"pressure:CLH:J_heart_outlet","19593":"pressure:CLH:J_heart_outlet","19594":"pressure:CLH:J_heart_outlet","19595":"pressure:CLH:J_heart_outlet","19596":"pressure:CLH:J_heart_outlet","19597":"pressure:CLH:J_heart_outlet","19598":"pressure:CLH:J_heart_outlet","19599":"pressure:CLH:J_heart_outlet","19600":"pressure:CLH:J_heart_outlet","19601":"pressure:CLH:J_heart_outlet","19602":"pressure:CLH:J_heart_outlet","19603":"pressure:CLH:J_heart_outlet","19604":"pressure:CLH:J_heart_outlet","19605":"pressure:CLH:J_heart_outlet","19606":"pressure:CLH:J_heart_outlet","19607":"pressure:CLH:J_heart_outlet","19608":"pressure:CLH:J_heart_outlet","19609":"pressure:CLH:J_heart_outlet","19610":"pressure:CLH:J_heart_outlet","19611":"pressure:CLH:J_heart_outlet","19612":"pressure:CLH:J_heart_outlet","19613":"pressure:CLH:J_heart_outlet","19614":"pressure:CLH:J_heart_outlet","19615":"pressure:CLH:J_heart_outlet","19616":"pressure:CLH:J_heart_outlet","19617":"pressure:CLH:J_heart_outlet","19618":"pressure:CLH:J_heart_outlet","19619":"pressure:CLH:J_heart_outlet","19620":"pressure:CLH:J_heart_outlet","19621":"pressure:CLH:J_heart_outlet","19622":"pressure:CLH:J_heart_outlet","19623":"pressure:CLH:J_heart_outlet","19624":"pressure:CLH:J_heart_outlet","19625":"pressure:CLH:J_heart_outlet","19626":"pressure:CLH:J_heart_outlet","19627":"pressure:CLH:J_heart_outlet","19628":"pressure:CLH:J_heart_outlet","19629":"pressure:CLH:J_heart_outlet","19630":"pressure:CLH:J_heart_outlet","19631":"pressure:CLH:J_heart_outlet","19632":"pressure:CLH:J_heart_outlet","19633":"pressure:CLH:J_heart_outlet","19634":"pressure:CLH:J_heart_outlet","19635":"pressure:CLH:J_heart_outlet","19636":"pressure:CLH:J_heart_outlet","19637":"pressure:CLH:J_heart_outlet","19638":"pressure:CLH:J_heart_outlet","19639":"pressure:CLH:J_heart_outlet","19640":"pressure:CLH:J_heart_outlet","19641":"pressure:CLH:J_heart_outlet","19642":"pressure:CLH:J_heart_outlet","19643":"pressure:CLH:J_heart_outlet","19644":"pressure:CLH:J_heart_outlet","19645":"pressure:CLH:J_heart_outlet","19646":"pressure:CLH:J_heart_outlet","19647":"pressure:CLH:J_heart_outlet","19648":"pressure:CLH:J_heart_outlet","19649":"pressure:CLH:J_heart_outlet","19650":"pressure:CLH:J_heart_outlet","19651":"pressure:CLH:J_heart_outlet","19652":"pressure:CLH:J_heart_outlet","19653":"pressure:CLH:J_heart_outlet","19654":"pressure:CLH:J_heart_outlet","19655":"pressure:CLH:J_heart_outlet","19656":"pressure:CLH:J_heart_outlet","19657":"pressure:CLH:J_heart_outlet","19658":"pressure:CLH:J_heart_outlet","19659":"pressure:CLH:J_heart_outlet","19660":"pressure:CLH:J_heart_outlet","19661":"pressure:CLH:J_heart_outlet","19662":"pressure:CLH:J_heart_outlet","19663":"pressure:CLH:J_heart_outlet","19664":"pressure:CLH:J_heart_outlet","19665":"pressure:CLH:J_heart_outlet","19666":"pressure:CLH:J_heart_outlet","19667":"pressure:CLH:J_heart_outlet","19668":"pressure:CLH:J_heart_outlet","19669":"pressure:CLH:J_heart_outlet","19670":"pressure:CLH:J_heart_outlet","19671":"pressure:CLH:J_heart_outlet","19672":"pressure:CLH:J_heart_outlet","19673":"pressure:CLH:J_heart_outlet","19674":"pressure:CLH:J_heart_outlet","19675":"pressure:CLH:J_heart_outlet","19676":"pressure:CLH:J_heart_outlet","19677":"pressure:CLH:J_heart_outlet","19678":"pressure:CLH:J_heart_outlet","19679":"pressure:CLH:J_heart_outlet","19680":"pressure:CLH:J_heart_outlet","19681":"pressure:CLH:J_heart_outlet","19682":"pressure:CLH:J_heart_outlet","19683":"pressure:CLH:J_heart_outlet","19684":"pressure:CLH:J_heart_outlet","19685":"pressure:CLH:J_heart_outlet","19686":"pressure:CLH:J_heart_outlet","19687":"pressure:CLH:J_heart_outlet","19688":"pressure:CLH:J_heart_outlet","19689":"pressure:CLH:J_heart_outlet","19690":"pressure:CLH:J_heart_outlet","19691":"pressure:CLH:J_heart_outlet","19692":"pressure:CLH:J_heart_outlet","19693":"pressure:CLH:J_heart_outlet","19694":"pressure:CLH:J_heart_outlet","19695":"pressure:CLH:J_heart_outlet","19696":"pressure:CLH:J_heart_outlet","19697":"pressure:CLH:J_heart_outlet","19698":"pressure:CLH:J_heart_outlet","19699":"pressure:CLH:J_heart_outlet","19700":"pressure:CLH:J_heart_outlet","19701":"pressure:CLH:J_heart_outlet","19702":"pressure:CLH:J_heart_outlet","19703":"pressure:CLH:J_heart_outlet","19704":"pressure:CLH:J_heart_outlet","19705":"pressure:CLH:J_heart_outlet","19706":"pressure:CLH:J_heart_outlet","19707":"pressure:CLH:J_heart_outlet","19708":"pressure:CLH:J_heart_outlet","19709":"pressure:CLH:J_heart_outlet","19710":"pressure:CLH:J_heart_outlet","19711":"pressure:CLH:J_heart_outlet","19712":"pressure:CLH:J_heart_outlet","19713":"pressure:CLH:J_heart_outlet","19714":"pressure:CLH:J_heart_outlet","19715":"pressure:CLH:J_heart_outlet","19716":"pressure:CLH:J_heart_outlet","19717":"pressure:CLH:J_heart_outlet","19718":"pressure:CLH:J_heart_outlet","19719":"pressure:CLH:J_heart_outlet","19720":"pressure:CLH:J_heart_outlet","19721":"pressure:CLH:J_heart_outlet","19722":"pressure:CLH:J_heart_outlet","19723":"pressure:CLH:J_heart_outlet","19724":"pressure:CLH:J_heart_outlet","19725":"pressure:CLH:J_heart_outlet","19726":"pressure:CLH:J_heart_outlet","19727":"pressure:CLH:J_heart_outlet","19728":"pressure:CLH:J_heart_outlet","19729":"pressure:CLH:J_heart_outlet","19730":"pressure:CLH:J_heart_outlet","19731":"pressure:CLH:J_heart_outlet","19732":"pressure:CLH:J_heart_outlet","19733":"pressure:CLH:J_heart_outlet","19734":"pressure:CLH:J_heart_outlet","19735":"pressure:CLH:J_heart_outlet","19736":"pressure:CLH:J_heart_outlet","19737":"pressure:CLH:J_heart_outlet","19738":"pressure:CLH:J_heart_outlet","19739":"pressure:CLH:J_heart_outlet","19740":"pressure:CLH:J_heart_outlet","19741":"pressure:CLH:J_heart_outlet","19742":"pressure:CLH:J_heart_outlet","19743":"pressure:CLH:J_heart_outlet","19744":"pressure:CLH:J_heart_outlet","19745":"pressure:CLH:J_heart_outlet","19746":"pressure:CLH:J_heart_outlet","19747":"pressure:CLH:J_heart_outlet","19748":"pressure:CLH:J_heart_outlet","19749":"pressure:CLH:J_heart_outlet","19750":"pressure:CLH:J_heart_outlet","19751":"pressure:CLH:J_heart_outlet","19752":"pressure:CLH:J_heart_outlet","19753":"pressure:CLH:J_heart_outlet","19754":"pressure:CLH:J_heart_outlet","19755":"pressure:CLH:J_heart_outlet","19756":"pressure:CLH:J_heart_outlet","19757":"pressure:CLH:J_heart_outlet","19758":"pressure:CLH:J_heart_outlet","19759":"pressure:CLH:J_heart_outlet","19760":"pressure:CLH:J_heart_outlet","19761":"pressure:CLH:J_heart_outlet","19762":"pressure:CLH:J_heart_outlet","19763":"pressure:CLH:J_heart_outlet","19764":"pressure:CLH:J_heart_outlet","19765":"pressure:CLH:J_heart_outlet","19766":"pressure:CLH:J_heart_outlet","19767":"pressure:CLH:J_heart_outlet","19768":"pressure:CLH:J_heart_outlet","19769":"pressure:CLH:J_heart_outlet","19770":"pressure:CLH:J_heart_outlet","19771":"pressure:CLH:J_heart_outlet","19772":"pressure:CLH:J_heart_outlet","19773":"pressure:CLH:J_heart_outlet","19774":"pressure:CLH:J_heart_outlet","19775":"pressure:CLH:J_heart_outlet","19776":"pressure:CLH:J_heart_outlet","19777":"pressure:CLH:J_heart_outlet","19778":"pressure:CLH:J_heart_outlet","19779":"pressure:CLH:J_heart_outlet","19780":"pressure:CLH:J_heart_outlet","19781":"pressure:CLH:J_heart_outlet","19782":"pressure:CLH:J_heart_outlet","19783":"pressure:CLH:J_heart_outlet","19784":"pressure:CLH:J_heart_outlet","19785":"pressure:CLH:J_heart_outlet","19786":"pressure:CLH:J_heart_outlet","19787":"pressure:CLH:J_heart_outlet","19788":"pressure:CLH:J_heart_outlet","19789":"pressure:CLH:J_heart_outlet","19790":"pressure:CLH:J_heart_outlet","19791":"pressure:CLH:J_heart_outlet","19792":"pressure:CLH:J_heart_outlet","19793":"pressure:CLH:J_heart_outlet","19794":"pressure:CLH:J_heart_outlet","19795":"pressure:CLH:J_heart_outlet","19796":"pressure:CLH:J_heart_outlet","19797":"pressure:CLH:J_heart_outlet","19798":"pressure:CLH:J_heart_outlet","19799":"pressure:CLH:J_heart_outlet","19800":"pressure:CLH:J_heart_outlet","19801":"pressure:CLH:J_heart_outlet","19802":"pressure:CLH:J_heart_outlet","19803":"pressure:CLH:J_heart_outlet","19804":"pressure:CLH:J_heart_outlet","19805":"pressure:CLH:J_heart_outlet","19806":"pressure:CLH:J_heart_outlet","19807":"pressure:CLH:J_heart_outlet","19808":"pressure:CLH:J_heart_outlet","19809":"pressure:CLH:J_heart_outlet","19810":"pressure:CLH:J_heart_outlet","19811":"pressure:CLH:J_heart_outlet","19812":"pressure:CLH:J_heart_outlet","19813":"pressure:CLH:J_heart_outlet","19814":"pressure:CLH:J_heart_outlet","19815":"pressure:CLH:J_heart_outlet","19816":"pressure:CLH:J_heart_outlet","19817":"pressure:CLH:J_heart_outlet","19818":"pressure:CLH:J_heart_outlet","19819":"pressure:CLH:J_heart_outlet","19820":"pressure:CLH:J_heart_outlet","19821":"pressure:CLH:J_heart_outlet","19822":"pressure:CLH:J_heart_outlet","19823":"pressure:CLH:J_heart_outlet","19824":"pressure:CLH:J_heart_outlet","19825":"pressure:CLH:J_heart_outlet","19826":"pressure:CLH:J_heart_outlet","19827":"pressure:CLH:J_heart_outlet","19828":"pressure:CLH:J_heart_outlet","19829":"pressure:CLH:J_heart_outlet","19830":"pressure:CLH:J_heart_outlet","19831":"pressure:CLH:J_heart_outlet","19832":"pressure:CLH:J_heart_outlet","19833":"pressure:CLH:J_heart_outlet","19834":"pressure:CLH:J_heart_outlet","19835":"pressure:CLH:J_heart_outlet","19836":"pressure:CLH:J_heart_outlet","19837":"pressure:CLH:J_heart_outlet","19838":"pressure:CLH:J_heart_outlet","19839":"pressure:CLH:J_heart_outlet","19840":"pressure:CLH:J_heart_outlet","19841":"pressure:CLH:J_heart_outlet","19842":"pressure:CLH:J_heart_outlet","19843":"pressure:CLH:J_heart_outlet","19844":"pressure:CLH:J_heart_outlet","19845":"pressure:CLH:J_heart_outlet","19846":"pressure:CLH:J_heart_outlet","19847":"pressure:CLH:J_heart_outlet","19848":"pressure:CLH:J_heart_outlet","19849":"pressure:CLH:J_heart_outlet","19850":"pressure:CLH:J_heart_outlet","19851":"pressure:CLH:J_heart_outlet","19852":"pressure:CLH:J_heart_outlet","19853":"pressure:CLH:J_heart_outlet","19854":"pressure:CLH:J_heart_outlet","19855":"pressure:CLH:J_heart_outlet","19856":"pressure:CLH:J_heart_outlet","19857":"pressure:CLH:J_heart_outlet","19858":"pressure:CLH:J_heart_outlet","19859":"pressure:CLH:J_heart_outlet","19860":"pressure:CLH:J_heart_outlet","19861":"pressure:CLH:J_heart_outlet","19862":"pressure:CLH:J_heart_outlet","19863":"pressure:CLH:J_heart_outlet","19864":"pressure:CLH:J_heart_outlet","19865":"pressure:CLH:J_heart_outlet","19866":"pressure:CLH:J_heart_outlet","19867":"pressure:CLH:J_heart_outlet","19868":"pressure:CLH:J_heart_outlet","19869":"pressure:CLH:J_heart_outlet","19870":"pressure:CLH:J_heart_outlet","19871":"pressure:CLH:J_heart_outlet","19872":"pressure:CLH:J_heart_outlet","19873":"pressure:CLH:J_heart_outlet","19874":"pressure:CLH:J_heart_outlet","19875":"pressure:CLH:J_heart_outlet","19876":"pressure:CLH:J_heart_outlet","19877":"pressure:CLH:J_heart_outlet","19878":"pressure:CLH:J_heart_outlet","19879":"pressure:CLH:J_heart_outlet","19880":"pressure:CLH:J_heart_outlet","19881":"pressure:CLH:J_heart_outlet","19882":"pressure:CLH:J_heart_outlet","19883":"pressure:CLH:J_heart_outlet","19884":"pressure:CLH:J_heart_outlet","19885":"pressure:CLH:J_heart_outlet","19886":"pressure:CLH:J_heart_outlet","19887":"pressure:CLH:J_heart_outlet","19888":"pressure:CLH:J_heart_outlet","19889":"pressure:CLH:J_heart_outlet","19890":"pressure:CLH:J_heart_outlet","19891":"pressure:CLH:J_heart_outlet","19892":"pressure:CLH:J_heart_outlet","19893":"pressure:CLH:J_heart_outlet","19894":"pressure:CLH:J_heart_outlet","19895":"pressure:CLH:J_heart_outlet","19896":"pressure:CLH:J_heart_outlet","19897":"pressure:CLH:J_heart_outlet","19898":"pressure:CLH:J_heart_outlet","19899":"pressure:CLH:J_heart_outlet","19900":"pressure:CLH:J_heart_outlet","19901":"pressure:CLH:J_heart_outlet","19902":"pressure:CLH:J_heart_outlet","19903":"pressure:CLH:J_heart_outlet","19904":"pressure:CLH:J_heart_outlet","19905":"pressure:CLH:J_heart_outlet","19906":"pressure:CLH:J_heart_outlet","19907":"pressure:CLH:J_heart_outlet","19908":"pressure:CLH:J_heart_outlet","19909":"pressure:CLH:J_heart_outlet","19910":"pressure:CLH:J_heart_outlet","19911":"pressure:CLH:J_heart_outlet","19912":"pressure:CLH:J_heart_outlet","19913":"pressure:CLH:J_heart_outlet","19914":"pressure:CLH:J_heart_outlet","19915":"pressure:CLH:J_heart_outlet","19916":"pressure:CLH:J_heart_outlet","19917":"pressure:CLH:J_heart_outlet","19918":"pressure:CLH:J_heart_outlet","19919":"pressure:CLH:J_heart_outlet","19920":"pressure:CLH:J_heart_outlet","19921":"pressure:CLH:J_heart_outlet","19922":"pressure:CLH:J_heart_outlet","19923":"pressure:CLH:J_heart_outlet","19924":"pressure:CLH:J_heart_outlet","19925":"pressure:CLH:J_heart_outlet","19926":"pressure:CLH:J_heart_outlet","19927":"pressure:CLH:J_heart_outlet","19928":"pressure:CLH:J_heart_outlet","19929":"pressure:CLH:J_heart_outlet","19930":"pressure:CLH:J_heart_outlet","19931":"pressure:CLH:J_heart_outlet","19932":"pressure:CLH:J_heart_outlet","19933":"pressure:CLH:J_heart_outlet","19934":"pressure:CLH:J_heart_outlet","19935":"pressure:CLH:J_heart_outlet","19936":"pressure:CLH:J_heart_outlet","19937":"pressure:CLH:J_heart_outlet","19938":"pressure:CLH:J_heart_outlet","19939":"pressure:CLH:J_heart_outlet","19940":"pressure:CLH:J_heart_outlet","19941":"pressure:CLH:J_heart_outlet","19942":"pressure:CLH:J_heart_outlet","19943":"pressure:CLH:J_heart_outlet","19944":"pressure:CLH:J_heart_outlet","19945":"pressure:CLH:J_heart_outlet","19946":"pressure:CLH:J_heart_outlet","19947":"pressure:CLH:J_heart_outlet","19948":"pressure:CLH:J_heart_outlet","19949":"pressure:CLH:J_heart_outlet","19950":"pressure:CLH:J_heart_outlet","19951":"pressure:CLH:J_heart_outlet","19952":"pressure:CLH:J_heart_outlet","19953":"pressure:CLH:J_heart_outlet","19954":"pressure:CLH:J_heart_outlet","19955":"pressure:CLH:J_heart_outlet","19956":"pressure:CLH:J_heart_outlet","19957":"pressure:CLH:J_heart_outlet","19958":"pressure:CLH:J_heart_outlet","19959":"pressure:CLH:J_heart_outlet","19960":"pressure:CLH:J_heart_outlet","19961":"pressure:CLH:J_heart_outlet","19962":"pressure:CLH:J_heart_outlet","19963":"pressure:CLH:J_heart_outlet","19964":"pressure:CLH:J_heart_outlet","19965":"pressure:CLH:J_heart_outlet","19966":"pressure:CLH:J_heart_outlet","19967":"pressure:CLH:J_heart_outlet","19968":"pressure:CLH:J_heart_outlet","19969":"pressure:CLH:J_heart_outlet","19970":"pressure:CLH:J_heart_outlet","19971":"pressure:CLH:J_heart_outlet","19972":"pressure:CLH:J_heart_outlet","19973":"pressure:CLH:J_heart_outlet","19974":"pressure:CLH:J_heart_outlet","19975":"pressure:CLH:J_heart_outlet","19976":"pressure:CLH:J_heart_outlet","19977":"pressure:CLH:J_heart_outlet","19978":"pressure:CLH:J_heart_outlet","19979":"pressure:CLH:J_heart_outlet","19980":"pressure:CLH:J_heart_outlet","19981":"pressure:CLH:J_heart_outlet","19982":"pressure:CLH:J_heart_outlet","19983":"pressure:CLH:J_heart_outlet","19984":"pressure:CLH:J_heart_outlet","19985":"pressure:CLH:J_heart_outlet","19986":"pressure:CLH:J_heart_outlet","19987":"pressure:CLH:J_heart_outlet","19988":"pressure:CLH:J_heart_outlet","19989":"pressure:CLH:J_heart_outlet","19990":"pressure:CLH:J_heart_outlet","19991":"pressure:CLH:J_heart_outlet","19992":"pressure:CLH:J_heart_outlet","19993":"pressure:CLH:J_heart_outlet","19994":"pressure:CLH:J_heart_outlet","19995":"pressure:CLH:J_heart_outlet","19996":"pressure:CLH:J_heart_outlet","19997":"pressure:CLH:J_heart_outlet","19998":"pressure:CLH:J_heart_outlet","19999":"pressure:CLH:J_heart_outlet","20000":"flow:J_heart_outlet:external_outlet","20001":"flow:J_heart_outlet:external_outlet","20002":"flow:J_heart_outlet:external_outlet","20003":"flow:J_heart_outlet:external_outlet","20004":"flow:J_heart_outlet:external_outlet","20005":"flow:J_heart_outlet:external_outlet","20006":"flow:J_heart_outlet:external_outlet","20007":"flow:J_heart_outlet:external_outlet","20008":"flow:J_heart_outlet:external_outlet","20009":"flow:J_heart_outlet:external_outlet","20010":"flow:J_heart_outlet:external_outlet","20011":"flow:J_heart_outlet:external_outlet","20012":"flow:J_heart_outlet:external_outlet","20013":"flow:J_heart_outlet:external_outlet","20014":"flow:J_heart_outlet:external_outlet","20015":"flow:J_heart_outlet:external_outlet","20016":"flow:J_heart_outlet:external_outlet","20017":"flow:J_heart_outlet:external_outlet","20018":"flow:J_heart_outlet:external_outlet","20019":"flow:J_heart_outlet:external_outlet","20020":"flow:J_heart_outlet:external_outlet","20021":"flow:J_heart_outlet:external_outlet","20022":"flow:J_heart_outlet:external_outlet","20023":"flow:J_heart_outlet:external_outlet","20024":"flow:J_heart_outlet:external_outlet","20025":"flow:J_heart_outlet:external_outlet","20026":"flow:J_heart_outlet:external_outlet","20027":"flow:J_heart_outlet:external_outlet","20028":"flow:J_heart_outlet:external_outlet","20029":"flow:J_heart_outlet:external_outlet","20030":"flow:J_heart_outlet:external_outlet","20031":"flow:J_heart_outlet:external_outlet","20032":"flow:J_heart_outlet:external_outlet","20033":"flow:J_heart_outlet:external_outlet","20034":"flow:J_heart_outlet:external_outlet","20035":"flow:J_heart_outlet:external_outlet","20036":"flow:J_heart_outlet:external_outlet","20037":"flow:J_heart_outlet:external_outlet","20038":"flow:J_heart_outlet:external_outlet","20039":"flow:J_heart_outlet:external_outlet","20040":"flow:J_heart_outlet:external_outlet","20041":"flow:J_heart_outlet:external_outlet","20042":"flow:J_heart_outlet:external_outlet","20043":"flow:J_heart_outlet:external_outlet","20044":"flow:J_heart_outlet:external_outlet","20045":"flow:J_heart_outlet:external_outlet","20046":"flow:J_heart_outlet:external_outlet","20047":"flow:J_heart_outlet:external_outlet","20048":"flow:J_heart_outlet:external_outlet","20049":"flow:J_heart_outlet:external_outlet","20050":"flow:J_heart_outlet:external_outlet","20051":"flow:J_heart_outlet:external_outlet","20052":"flow:J_heart_outlet:external_outlet","20053":"flow:J_heart_outlet:external_outlet","20054":"flow:J_heart_outlet:external_outlet","20055":"flow:J_heart_outlet:external_outlet","20056":"flow:J_heart_outlet:external_outlet","20057":"flow:J_heart_outlet:external_outlet","20058":"flow:J_heart_outlet:external_outlet","20059":"flow:J_heart_outlet:external_outlet","20060":"flow:J_heart_outlet:external_outlet","20061":"flow:J_heart_outlet:external_outlet","20062":"flow:J_heart_outlet:external_outlet","20063":"flow:J_heart_outlet:external_outlet","20064":"flow:J_heart_outlet:external_outlet","20065":"flow:J_heart_outlet:external_outlet","20066":"flow:J_heart_outlet:external_outlet","20067":"flow:J_heart_outlet:external_outlet","20068":"flow:J_heart_outlet:external_outlet","20069":"flow:J_heart_outlet:external_outlet","20070":"flow:J_heart_outlet:external_outlet","20071":"flow:J_heart_outlet:external_outlet","20072":"flow:J_heart_outlet:external_outlet","20073":"flow:J_heart_outlet:external_outlet","20074":"flow:J_heart_outlet:external_outlet","20075":"flow:J_heart_outlet:external_outlet","20076":"flow:J_heart_outlet:external_outlet","20077":"flow:J_heart_outlet:external_outlet","20078":"flow:J_heart_outlet:external_outlet","20079":"flow:J_heart_outlet:external_outlet","20080":"flow:J_heart_outlet:external_outlet","20081":"flow:J_heart_outlet:external_outlet","20082":"flow:J_heart_outlet:external_outlet","20083":"flow:J_heart_outlet:external_outlet","20084":"flow:J_heart_outlet:external_outlet","20085":"flow:J_heart_outlet:external_outlet","20086":"flow:J_heart_outlet:external_outlet","20087":"flow:J_heart_outlet:external_outlet","20088":"flow:J_heart_outlet:external_outlet","20089":"flow:J_heart_outlet:external_outlet","20090":"flow:J_heart_outlet:external_outlet","20091":"flow:J_heart_outlet:external_outlet","20092":"flow:J_heart_outlet:external_outlet","20093":"flow:J_heart_outlet:external_outlet","20094":"flow:J_heart_outlet:external_outlet","20095":"flow:J_heart_outlet:external_outlet","20096":"flow:J_heart_outlet:external_outlet","20097":"flow:J_heart_outlet:external_outlet","20098":"flow:J_heart_outlet:external_outlet","20099":"flow:J_heart_outlet:external_outlet","20100":"flow:J_heart_outlet:external_outlet","20101":"flow:J_heart_outlet:external_outlet","20102":"flow:J_heart_outlet:external_outlet","20103":"flow:J_heart_outlet:external_outlet","20104":"flow:J_heart_outlet:external_outlet","20105":"flow:J_heart_outlet:external_outlet","20106":"flow:J_heart_outlet:external_outlet","20107":"flow:J_heart_outlet:external_outlet","20108":"flow:J_heart_outlet:external_outlet","20109":"flow:J_heart_outlet:external_outlet","20110":"flow:J_heart_outlet:external_outlet","20111":"flow:J_heart_outlet:external_outlet","20112":"flow:J_heart_outlet:external_outlet","20113":"flow:J_heart_outlet:external_outlet","20114":"flow:J_heart_outlet:external_outlet","20115":"flow:J_heart_outlet:external_outlet","20116":"flow:J_heart_outlet:external_outlet","20117":"flow:J_heart_outlet:external_outlet","20118":"flow:J_heart_outlet:external_outlet","20119":"flow:J_heart_outlet:external_outlet","20120":"flow:J_heart_outlet:external_outlet","20121":"flow:J_heart_outlet:external_outlet","20122":"flow:J_heart_outlet:external_outlet","20123":"flow:J_heart_outlet:external_outlet","20124":"flow:J_heart_outlet:external_outlet","20125":"flow:J_heart_outlet:external_outlet","20126":"flow:J_heart_outlet:external_outlet","20127":"flow:J_heart_outlet:external_outlet","20128":"flow:J_heart_outlet:external_outlet","20129":"flow:J_heart_outlet:external_outlet","20130":"flow:J_heart_outlet:external_outlet","20131":"flow:J_heart_outlet:external_outlet","20132":"flow:J_heart_outlet:external_outlet","20133":"flow:J_heart_outlet:external_outlet","20134":"flow:J_heart_outlet:external_outlet","20135":"flow:J_heart_outlet:external_outlet","20136":"flow:J_heart_outlet:external_outlet","20137":"flow:J_heart_outlet:external_outlet","20138":"flow:J_heart_outlet:external_outlet","20139":"flow:J_heart_outlet:external_outlet","20140":"flow:J_heart_outlet:external_outlet","20141":"flow:J_heart_outlet:external_outlet","20142":"flow:J_heart_outlet:external_outlet","20143":"flow:J_heart_outlet:external_outlet","20144":"flow:J_heart_outlet:external_outlet","20145":"flow:J_heart_outlet:external_outlet","20146":"flow:J_heart_outlet:external_outlet","20147":"flow:J_heart_outlet:external_outlet","20148":"flow:J_heart_outlet:external_outlet","20149":"flow:J_heart_outlet:external_outlet","20150":"flow:J_heart_outlet:external_outlet","20151":"flow:J_heart_outlet:external_outlet","20152":"flow:J_heart_outlet:external_outlet","20153":"flow:J_heart_outlet:external_outlet","20154":"flow:J_heart_outlet:external_outlet","20155":"flow:J_heart_outlet:external_outlet","20156":"flow:J_heart_outlet:external_outlet","20157":"flow:J_heart_outlet:external_outlet","20158":"flow:J_heart_outlet:external_outlet","20159":"flow:J_heart_outlet:external_outlet","20160":"flow:J_heart_outlet:external_outlet","20161":"flow:J_heart_outlet:external_outlet","20162":"flow:J_heart_outlet:external_outlet","20163":"flow:J_heart_outlet:external_outlet","20164":"flow:J_heart_outlet:external_outlet","20165":"flow:J_heart_outlet:external_outlet","20166":"flow:J_heart_outlet:external_outlet","20167":"flow:J_heart_outlet:external_outlet","20168":"flow:J_heart_outlet:external_outlet","20169":"flow:J_heart_outlet:external_outlet","20170":"flow:J_heart_outlet:external_outlet","20171":"flow:J_heart_outlet:external_outlet","20172":"flow:J_heart_outlet:external_outlet","20173":"flow:J_heart_outlet:external_outlet","20174":"flow:J_heart_outlet:external_outlet","20175":"flow:J_heart_outlet:external_outlet","20176":"flow:J_heart_outlet:external_outlet","20177":"flow:J_heart_outlet:external_outlet","20178":"flow:J_heart_outlet:external_outlet","20179":"flow:J_heart_outlet:external_outlet","20180":"flow:J_heart_outlet:external_outlet","20181":"flow:J_heart_outlet:external_outlet","20182":"flow:J_heart_outlet:external_outlet","20183":"flow:J_heart_outlet:external_outlet","20184":"flow:J_heart_outlet:external_outlet","20185":"flow:J_heart_outlet:external_outlet","20186":"flow:J_heart_outlet:external_outlet","20187":"flow:J_heart_outlet:external_outlet","20188":"flow:J_heart_outlet:external_outlet","20189":"flow:J_heart_outlet:external_outlet","20190":"flow:J_heart_outlet:external_outlet","20191":"flow:J_heart_outlet:external_outlet","20192":"flow:J_heart_outlet:external_outlet","20193":"flow:J_heart_outlet:external_outlet","20194":"flow:J_heart_outlet:external_outlet","20195":"flow:J_heart_outlet:external_outlet","20196":"flow:J_heart_outlet:external_outlet","20197":"flow:J_heart_outlet:external_outlet","20198":"flow:J_heart_outlet:external_outlet","20199":"flow:J_heart_outlet:external_outlet","20200":"flow:J_heart_outlet:external_outlet","20201":"flow:J_heart_outlet:external_outlet","20202":"flow:J_heart_outlet:external_outlet","20203":"flow:J_heart_outlet:external_outlet","20204":"flow:J_heart_outlet:external_outlet","20205":"flow:J_heart_outlet:external_outlet","20206":"flow:J_heart_outlet:external_outlet","20207":"flow:J_heart_outlet:external_outlet","20208":"flow:J_heart_outlet:external_outlet","20209":"flow:J_heart_outlet:external_outlet","20210":"flow:J_heart_outlet:external_outlet","20211":"flow:J_heart_outlet:external_outlet","20212":"flow:J_heart_outlet:external_outlet","20213":"flow:J_heart_outlet:external_outlet","20214":"flow:J_heart_outlet:external_outlet","20215":"flow:J_heart_outlet:external_outlet","20216":"flow:J_heart_outlet:external_outlet","20217":"flow:J_heart_outlet:external_outlet","20218":"flow:J_heart_outlet:external_outlet","20219":"flow:J_heart_outlet:external_outlet","20220":"flow:J_heart_outlet:external_outlet","20221":"flow:J_heart_outlet:external_outlet","20222":"flow:J_heart_outlet:external_outlet","20223":"flow:J_heart_outlet:external_outlet","20224":"flow:J_heart_outlet:external_outlet","20225":"flow:J_heart_outlet:external_outlet","20226":"flow:J_heart_outlet:external_outlet","20227":"flow:J_heart_outlet:external_outlet","20228":"flow:J_heart_outlet:external_outlet","20229":"flow:J_heart_outlet:external_outlet","20230":"flow:J_heart_outlet:external_outlet","20231":"flow:J_heart_outlet:external_outlet","20232":"flow:J_heart_outlet:external_outlet","20233":"flow:J_heart_outlet:external_outlet","20234":"flow:J_heart_outlet:external_outlet","20235":"flow:J_heart_outlet:external_outlet","20236":"flow:J_heart_outlet:external_outlet","20237":"flow:J_heart_outlet:external_outlet","20238":"flow:J_heart_outlet:external_outlet","20239":"flow:J_heart_outlet:external_outlet","20240":"flow:J_heart_outlet:external_outlet","20241":"flow:J_heart_outlet:external_outlet","20242":"flow:J_heart_outlet:external_outlet","20243":"flow:J_heart_outlet:external_outlet","20244":"flow:J_heart_outlet:external_outlet","20245":"flow:J_heart_outlet:external_outlet","20246":"flow:J_heart_outlet:external_outlet","20247":"flow:J_heart_outlet:external_outlet","20248":"flow:J_heart_outlet:external_outlet","20249":"flow:J_heart_outlet:external_outlet","20250":"flow:J_heart_outlet:external_outlet","20251":"flow:J_heart_outlet:external_outlet","20252":"flow:J_heart_outlet:external_outlet","20253":"flow:J_heart_outlet:external_outlet","20254":"flow:J_heart_outlet:external_outlet","20255":"flow:J_heart_outlet:external_outlet","20256":"flow:J_heart_outlet:external_outlet","20257":"flow:J_heart_outlet:external_outlet","20258":"flow:J_heart_outlet:external_outlet","20259":"flow:J_heart_outlet:external_outlet","20260":"flow:J_heart_outlet:external_outlet","20261":"flow:J_heart_outlet:external_outlet","20262":"flow:J_heart_outlet:external_outlet","20263":"flow:J_heart_outlet:external_outlet","20264":"flow:J_heart_outlet:external_outlet","20265":"flow:J_heart_outlet:external_outlet","20266":"flow:J_heart_outlet:external_outlet","20267":"flow:J_heart_outlet:external_outlet","20268":"flow:J_heart_outlet:external_outlet","20269":"flow:J_heart_outlet:external_outlet","20270":"flow:J_heart_outlet:external_outlet","20271":"flow:J_heart_outlet:external_outlet","20272":"flow:J_heart_outlet:external_outlet","20273":"flow:J_heart_outlet:external_outlet","20274":"flow:J_heart_outlet:external_outlet","20275":"flow:J_heart_outlet:external_outlet","20276":"flow:J_heart_outlet:external_outlet","20277":"flow:J_heart_outlet:external_outlet","20278":"flow:J_heart_outlet:external_outlet","20279":"flow:J_heart_outlet:external_outlet","20280":"flow:J_heart_outlet:external_outlet","20281":"flow:J_heart_outlet:external_outlet","20282":"flow:J_heart_outlet:external_outlet","20283":"flow:J_heart_outlet:external_outlet","20284":"flow:J_heart_outlet:external_outlet","20285":"flow:J_heart_outlet:external_outlet","20286":"flow:J_heart_outlet:external_outlet","20287":"flow:J_heart_outlet:external_outlet","20288":"flow:J_heart_outlet:external_outlet","20289":"flow:J_heart_outlet:external_outlet","20290":"flow:J_heart_outlet:external_outlet","20291":"flow:J_heart_outlet:external_outlet","20292":"flow:J_heart_outlet:external_outlet","20293":"flow:J_heart_outlet:external_outlet","20294":"flow:J_heart_outlet:external_outlet","20295":"flow:J_heart_outlet:external_outlet","20296":"flow:J_heart_outlet:external_outlet","20297":"flow:J_heart_outlet:external_outlet","20298":"flow:J_heart_outlet:external_outlet","20299":"flow:J_heart_outlet:external_outlet","20300":"flow:J_heart_outlet:external_outlet","20301":"flow:J_heart_outlet:external_outlet","20302":"flow:J_heart_outlet:external_outlet","20303":"flow:J_heart_outlet:external_outlet","20304":"flow:J_heart_outlet:external_outlet","20305":"flow:J_heart_outlet:external_outlet","20306":"flow:J_heart_outlet:external_outlet","20307":"flow:J_heart_outlet:external_outlet","20308":"flow:J_heart_outlet:external_outlet","20309":"flow:J_heart_outlet:external_outlet","20310":"flow:J_heart_outlet:external_outlet","20311":"flow:J_heart_outlet:external_outlet","20312":"flow:J_heart_outlet:external_outlet","20313":"flow:J_heart_outlet:external_outlet","20314":"flow:J_heart_outlet:external_outlet","20315":"flow:J_heart_outlet:external_outlet","20316":"flow:J_heart_outlet:external_outlet","20317":"flow:J_heart_outlet:external_outlet","20318":"flow:J_heart_outlet:external_outlet","20319":"flow:J_heart_outlet:external_outlet","20320":"flow:J_heart_outlet:external_outlet","20321":"flow:J_heart_outlet:external_outlet","20322":"flow:J_heart_outlet:external_outlet","20323":"flow:J_heart_outlet:external_outlet","20324":"flow:J_heart_outlet:external_outlet","20325":"flow:J_heart_outlet:external_outlet","20326":"flow:J_heart_outlet:external_outlet","20327":"flow:J_heart_outlet:external_outlet","20328":"flow:J_heart_outlet:external_outlet","20329":"flow:J_heart_outlet:external_outlet","20330":"flow:J_heart_outlet:external_outlet","20331":"flow:J_heart_outlet:external_outlet","20332":"flow:J_heart_outlet:external_outlet","20333":"flow:J_heart_outlet:external_outlet","20334":"flow:J_heart_outlet:external_outlet","20335":"flow:J_heart_outlet:external_outlet","20336":"flow:J_heart_outlet:external_outlet","20337":"flow:J_heart_outlet:external_outlet","20338":"flow:J_heart_outlet:external_outlet","20339":"flow:J_heart_outlet:external_outlet","20340":"flow:J_heart_outlet:external_outlet","20341":"flow:J_heart_outlet:external_outlet","20342":"flow:J_heart_outlet:external_outlet","20343":"flow:J_heart_outlet:external_outlet","20344":"flow:J_heart_outlet:external_outlet","20345":"flow:J_heart_outlet:external_outlet","20346":"flow:J_heart_outlet:external_outlet","20347":"flow:J_heart_outlet:external_outlet","20348":"flow:J_heart_outlet:external_outlet","20349":"flow:J_heart_outlet:external_outlet","20350":"flow:J_heart_outlet:external_outlet","20351":"flow:J_heart_outlet:external_outlet","20352":"flow:J_heart_outlet:external_outlet","20353":"flow:J_heart_outlet:external_outlet","20354":"flow:J_heart_outlet:external_outlet","20355":"flow:J_heart_outlet:external_outlet","20356":"flow:J_heart_outlet:external_outlet","20357":"flow:J_heart_outlet:external_outlet","20358":"flow:J_heart_outlet:external_outlet","20359":"flow:J_heart_outlet:external_outlet","20360":"flow:J_heart_outlet:external_outlet","20361":"flow:J_heart_outlet:external_outlet","20362":"flow:J_heart_outlet:external_outlet","20363":"flow:J_heart_outlet:external_outlet","20364":"flow:J_heart_outlet:external_outlet","20365":"flow:J_heart_outlet:external_outlet","20366":"flow:J_heart_outlet:external_outlet","20367":"flow:J_heart_outlet:external_outlet","20368":"flow:J_heart_outlet:external_outlet","20369":"flow:J_heart_outlet:external_outlet","20370":"flow:J_heart_outlet:external_outlet","20371":"flow:J_heart_outlet:external_outlet","20372":"flow:J_heart_outlet:external_outlet","20373":"flow:J_heart_outlet:external_outlet","20374":"flow:J_heart_outlet:external_outlet","20375":"flow:J_heart_outlet:external_outlet","20376":"flow:J_heart_outlet:external_outlet","20377":"flow:J_heart_outlet:external_outlet","20378":"flow:J_heart_outlet:external_outlet","20379":"flow:J_heart_outlet:external_outlet","20380":"flow:J_heart_outlet:external_outlet","20381":"flow:J_heart_outlet:external_outlet","20382":"flow:J_heart_outlet:external_outlet","20383":"flow:J_heart_outlet:external_outlet","20384":"flow:J_heart_outlet:external_outlet","20385":"flow:J_heart_outlet:external_outlet","20386":"flow:J_heart_outlet:external_outlet","20387":"flow:J_heart_outlet:external_outlet","20388":"flow:J_heart_outlet:external_outlet","20389":"flow:J_heart_outlet:external_outlet","20390":"flow:J_heart_outlet:external_outlet","20391":"flow:J_heart_outlet:external_outlet","20392":"flow:J_heart_outlet:external_outlet","20393":"flow:J_heart_outlet:external_outlet","20394":"flow:J_heart_outlet:external_outlet","20395":"flow:J_heart_outlet:external_outlet","20396":"flow:J_heart_outlet:external_outlet","20397":"flow:J_heart_outlet:external_outlet","20398":"flow:J_heart_outlet:external_outlet","20399":"flow:J_heart_outlet:external_outlet","20400":"flow:J_heart_outlet:external_outlet","20401":"flow:J_heart_outlet:external_outlet","20402":"flow:J_heart_outlet:external_outlet","20403":"flow:J_heart_outlet:external_outlet","20404":"flow:J_heart_outlet:external_outlet","20405":"flow:J_heart_outlet:external_outlet","20406":"flow:J_heart_outlet:external_outlet","20407":"flow:J_heart_outlet:external_outlet","20408":"flow:J_heart_outlet:external_outlet","20409":"flow:J_heart_outlet:external_outlet","20410":"flow:J_heart_outlet:external_outlet","20411":"flow:J_heart_outlet:external_outlet","20412":"flow:J_heart_outlet:external_outlet","20413":"flow:J_heart_outlet:external_outlet","20414":"flow:J_heart_outlet:external_outlet","20415":"flow:J_heart_outlet:external_outlet","20416":"flow:J_heart_outlet:external_outlet","20417":"flow:J_heart_outlet:external_outlet","20418":"flow:J_heart_outlet:external_outlet","20419":"flow:J_heart_outlet:external_outlet","20420":"flow:J_heart_outlet:external_outlet","20421":"flow:J_heart_outlet:external_outlet","20422":"flow:J_heart_outlet:external_outlet","20423":"flow:J_heart_outlet:external_outlet","20424":"flow:J_heart_outlet:external_outlet","20425":"flow:J_heart_outlet:external_outlet","20426":"flow:J_heart_outlet:external_outlet","20427":"flow:J_heart_outlet:external_outlet","20428":"flow:J_heart_outlet:external_outlet","20429":"flow:J_heart_outlet:external_outlet","20430":"flow:J_heart_outlet:external_outlet","20431":"flow:J_heart_outlet:external_outlet","20432":"flow:J_heart_outlet:external_outlet","20433":"flow:J_heart_outlet:external_outlet","20434":"flow:J_heart_outlet:external_outlet","20435":"flow:J_heart_outlet:external_outlet","20436":"flow:J_heart_outlet:external_outlet","20437":"flow:J_heart_outlet:external_outlet","20438":"flow:J_heart_outlet:external_outlet","20439":"flow:J_heart_outlet:external_outlet","20440":"flow:J_heart_outlet:external_outlet","20441":"flow:J_heart_outlet:external_outlet","20442":"flow:J_heart_outlet:external_outlet","20443":"flow:J_heart_outlet:external_outlet","20444":"flow:J_heart_outlet:external_outlet","20445":"flow:J_heart_outlet:external_outlet","20446":"flow:J_heart_outlet:external_outlet","20447":"flow:J_heart_outlet:external_outlet","20448":"flow:J_heart_outlet:external_outlet","20449":"flow:J_heart_outlet:external_outlet","20450":"flow:J_heart_outlet:external_outlet","20451":"flow:J_heart_outlet:external_outlet","20452":"flow:J_heart_outlet:external_outlet","20453":"flow:J_heart_outlet:external_outlet","20454":"flow:J_heart_outlet:external_outlet","20455":"flow:J_heart_outlet:external_outlet","20456":"flow:J_heart_outlet:external_outlet","20457":"flow:J_heart_outlet:external_outlet","20458":"flow:J_heart_outlet:external_outlet","20459":"flow:J_heart_outlet:external_outlet","20460":"flow:J_heart_outlet:external_outlet","20461":"flow:J_heart_outlet:external_outlet","20462":"flow:J_heart_outlet:external_outlet","20463":"flow:J_heart_outlet:external_outlet","20464":"flow:J_heart_outlet:external_outlet","20465":"flow:J_heart_outlet:external_outlet","20466":"flow:J_heart_outlet:external_outlet","20467":"flow:J_heart_outlet:external_outlet","20468":"flow:J_heart_outlet:external_outlet","20469":"flow:J_heart_outlet:external_outlet","20470":"flow:J_heart_outlet:external_outlet","20471":"flow:J_heart_outlet:external_outlet","20472":"flow:J_heart_outlet:external_outlet","20473":"flow:J_heart_outlet:external_outlet","20474":"flow:J_heart_outlet:external_outlet","20475":"flow:J_heart_outlet:external_outlet","20476":"flow:J_heart_outlet:external_outlet","20477":"flow:J_heart_outlet:external_outlet","20478":"flow:J_heart_outlet:external_outlet","20479":"flow:J_heart_outlet:external_outlet","20480":"flow:J_heart_outlet:external_outlet","20481":"flow:J_heart_outlet:external_outlet","20482":"flow:J_heart_outlet:external_outlet","20483":"flow:J_heart_outlet:external_outlet","20484":"flow:J_heart_outlet:external_outlet","20485":"flow:J_heart_outlet:external_outlet","20486":"flow:J_heart_outlet:external_outlet","20487":"flow:J_heart_outlet:external_outlet","20488":"flow:J_heart_outlet:external_outlet","20489":"flow:J_heart_outlet:external_outlet","20490":"flow:J_heart_outlet:external_outlet","20491":"flow:J_heart_outlet:external_outlet","20492":"flow:J_heart_outlet:external_outlet","20493":"flow:J_heart_outlet:external_outlet","20494":"flow:J_heart_outlet:external_outlet","20495":"flow:J_heart_outlet:external_outlet","20496":"flow:J_heart_outlet:external_outlet","20497":"flow:J_heart_outlet:external_outlet","20498":"flow:J_heart_outlet:external_outlet","20499":"flow:J_heart_outlet:external_outlet","20500":"flow:J_heart_outlet:external_outlet","20501":"flow:J_heart_outlet:external_outlet","20502":"flow:J_heart_outlet:external_outlet","20503":"flow:J_heart_outlet:external_outlet","20504":"flow:J_heart_outlet:external_outlet","20505":"flow:J_heart_outlet:external_outlet","20506":"flow:J_heart_outlet:external_outlet","20507":"flow:J_heart_outlet:external_outlet","20508":"flow:J_heart_outlet:external_outlet","20509":"flow:J_heart_outlet:external_outlet","20510":"flow:J_heart_outlet:external_outlet","20511":"flow:J_heart_outlet:external_outlet","20512":"flow:J_heart_outlet:external_outlet","20513":"flow:J_heart_outlet:external_outlet","20514":"flow:J_heart_outlet:external_outlet","20515":"flow:J_heart_outlet:external_outlet","20516":"flow:J_heart_outlet:external_outlet","20517":"flow:J_heart_outlet:external_outlet","20518":"flow:J_heart_outlet:external_outlet","20519":"flow:J_heart_outlet:external_outlet","20520":"flow:J_heart_outlet:external_outlet","20521":"flow:J_heart_outlet:external_outlet","20522":"flow:J_heart_outlet:external_outlet","20523":"flow:J_heart_outlet:external_outlet","20524":"flow:J_heart_outlet:external_outlet","20525":"flow:J_heart_outlet:external_outlet","20526":"flow:J_heart_outlet:external_outlet","20527":"flow:J_heart_outlet:external_outlet","20528":"flow:J_heart_outlet:external_outlet","20529":"flow:J_heart_outlet:external_outlet","20530":"flow:J_heart_outlet:external_outlet","20531":"flow:J_heart_outlet:external_outlet","20532":"flow:J_heart_outlet:external_outlet","20533":"flow:J_heart_outlet:external_outlet","20534":"flow:J_heart_outlet:external_outlet","20535":"flow:J_heart_outlet:external_outlet","20536":"flow:J_heart_outlet:external_outlet","20537":"flow:J_heart_outlet:external_outlet","20538":"flow:J_heart_outlet:external_outlet","20539":"flow:J_heart_outlet:external_outlet","20540":"flow:J_heart_outlet:external_outlet","20541":"flow:J_heart_outlet:external_outlet","20542":"flow:J_heart_outlet:external_outlet","20543":"flow:J_heart_outlet:external_outlet","20544":"flow:J_heart_outlet:external_outlet","20545":"flow:J_heart_outlet:external_outlet","20546":"flow:J_heart_outlet:external_outlet","20547":"flow:J_heart_outlet:external_outlet","20548":"flow:J_heart_outlet:external_outlet","20549":"flow:J_heart_outlet:external_outlet","20550":"flow:J_heart_outlet:external_outlet","20551":"flow:J_heart_outlet:external_outlet","20552":"flow:J_heart_outlet:external_outlet","20553":"flow:J_heart_outlet:external_outlet","20554":"flow:J_heart_outlet:external_outlet","20555":"flow:J_heart_outlet:external_outlet","20556":"flow:J_heart_outlet:external_outlet","20557":"flow:J_heart_outlet:external_outlet","20558":"flow:J_heart_outlet:external_outlet","20559":"flow:J_heart_outlet:external_outlet","20560":"flow:J_heart_outlet:external_outlet","20561":"flow:J_heart_outlet:external_outlet","20562":"flow:J_heart_outlet:external_outlet","20563":"flow:J_heart_outlet:external_outlet","20564":"flow:J_heart_outlet:external_outlet","20565":"flow:J_heart_outlet:external_outlet","20566":"flow:J_heart_outlet:external_outlet","20567":"flow:J_heart_outlet:external_outlet","20568":"flow:J_heart_outlet:external_outlet","20569":"flow:J_heart_outlet:external_outlet","20570":"flow:J_heart_outlet:external_outlet","20571":"flow:J_heart_outlet:external_outlet","20572":"flow:J_heart_outlet:external_outlet","20573":"flow:J_heart_outlet:external_outlet","20574":"flow:J_heart_outlet:external_outlet","20575":"flow:J_heart_outlet:external_outlet","20576":"flow:J_heart_outlet:external_outlet","20577":"flow:J_heart_outlet:external_outlet","20578":"flow:J_heart_outlet:external_outlet","20579":"flow:J_heart_outlet:external_outlet","20580":"flow:J_heart_outlet:external_outlet","20581":"flow:J_heart_outlet:external_outlet","20582":"flow:J_heart_outlet:external_outlet","20583":"flow:J_heart_outlet:external_outlet","20584":"flow:J_heart_outlet:external_outlet","20585":"flow:J_heart_outlet:external_outlet","20586":"flow:J_heart_outlet:external_outlet","20587":"flow:J_heart_outlet:external_outlet","20588":"flow:J_heart_outlet:external_outlet","20589":"flow:J_heart_outlet:external_outlet","20590":"flow:J_heart_outlet:external_outlet","20591":"flow:J_heart_outlet:external_outlet","20592":"flow:J_heart_outlet:external_outlet","20593":"flow:J_heart_outlet:external_outlet","20594":"flow:J_heart_outlet:external_outlet","20595":"flow:J_heart_outlet:external_outlet","20596":"flow:J_heart_outlet:external_outlet","20597":"flow:J_heart_outlet:external_outlet","20598":"flow:J_heart_outlet:external_outlet","20599":"flow:J_heart_outlet:external_outlet","20600":"flow:J_heart_outlet:external_outlet","20601":"flow:J_heart_outlet:external_outlet","20602":"flow:J_heart_outlet:external_outlet","20603":"flow:J_heart_outlet:external_outlet","20604":"flow:J_heart_outlet:external_outlet","20605":"flow:J_heart_outlet:external_outlet","20606":"flow:J_heart_outlet:external_outlet","20607":"flow:J_heart_outlet:external_outlet","20608":"flow:J_heart_outlet:external_outlet","20609":"flow:J_heart_outlet:external_outlet","20610":"flow:J_heart_outlet:external_outlet","20611":"flow:J_heart_outlet:external_outlet","20612":"flow:J_heart_outlet:external_outlet","20613":"flow:J_heart_outlet:external_outlet","20614":"flow:J_heart_outlet:external_outlet","20615":"flow:J_heart_outlet:external_outlet","20616":"flow:J_heart_outlet:external_outlet","20617":"flow:J_heart_outlet:external_outlet","20618":"flow:J_heart_outlet:external_outlet","20619":"flow:J_heart_outlet:external_outlet","20620":"flow:J_heart_outlet:external_outlet","20621":"flow:J_heart_outlet:external_outlet","20622":"flow:J_heart_outlet:external_outlet","20623":"flow:J_heart_outlet:external_outlet","20624":"flow:J_heart_outlet:external_outlet","20625":"flow:J_heart_outlet:external_outlet","20626":"flow:J_heart_outlet:external_outlet","20627":"flow:J_heart_outlet:external_outlet","20628":"flow:J_heart_outlet:external_outlet","20629":"flow:J_heart_outlet:external_outlet","20630":"flow:J_heart_outlet:external_outlet","20631":"flow:J_heart_outlet:external_outlet","20632":"flow:J_heart_outlet:external_outlet","20633":"flow:J_heart_outlet:external_outlet","20634":"flow:J_heart_outlet:external_outlet","20635":"flow:J_heart_outlet:external_outlet","20636":"flow:J_heart_outlet:external_outlet","20637":"flow:J_heart_outlet:external_outlet","20638":"flow:J_heart_outlet:external_outlet","20639":"flow:J_heart_outlet:external_outlet","20640":"flow:J_heart_outlet:external_outlet","20641":"flow:J_heart_outlet:external_outlet","20642":"flow:J_heart_outlet:external_outlet","20643":"flow:J_heart_outlet:external_outlet","20644":"flow:J_heart_outlet:external_outlet","20645":"flow:J_heart_outlet:external_outlet","20646":"flow:J_heart_outlet:external_outlet","20647":"flow:J_heart_outlet:external_outlet","20648":"flow:J_heart_outlet:external_outlet","20649":"flow:J_heart_outlet:external_outlet","20650":"flow:J_heart_outlet:external_outlet","20651":"flow:J_heart_outlet:external_outlet","20652":"flow:J_heart_outlet:external_outlet","20653":"flow:J_heart_outlet:external_outlet","20654":"flow:J_heart_outlet:external_outlet","20655":"flow:J_heart_outlet:external_outlet","20656":"flow:J_heart_outlet:external_outlet","20657":"flow:J_heart_outlet:external_outlet","20658":"flow:J_heart_outlet:external_outlet","20659":"flow:J_heart_outlet:external_outlet","20660":"flow:J_heart_outlet:external_outlet","20661":"flow:J_heart_outlet:external_outlet","20662":"flow:J_heart_outlet:external_outlet","20663":"flow:J_heart_outlet:external_outlet","20664":"flow:J_heart_outlet:external_outlet","20665":"flow:J_heart_outlet:external_outlet","20666":"flow:J_heart_outlet:external_outlet","20667":"flow:J_heart_outlet:external_outlet","20668":"flow:J_heart_outlet:external_outlet","20669":"flow:J_heart_outlet:external_outlet","20670":"flow:J_heart_outlet:external_outlet","20671":"flow:J_heart_outlet:external_outlet","20672":"flow:J_heart_outlet:external_outlet","20673":"flow:J_heart_outlet:external_outlet","20674":"flow:J_heart_outlet:external_outlet","20675":"flow:J_heart_outlet:external_outlet","20676":"flow:J_heart_outlet:external_outlet","20677":"flow:J_heart_outlet:external_outlet","20678":"flow:J_heart_outlet:external_outlet","20679":"flow:J_heart_outlet:external_outlet","20680":"flow:J_heart_outlet:external_outlet","20681":"flow:J_heart_outlet:external_outlet","20682":"flow:J_heart_outlet:external_outlet","20683":"flow:J_heart_outlet:external_outlet","20684":"flow:J_heart_outlet:external_outlet","20685":"flow:J_heart_outlet:external_outlet","20686":"flow:J_heart_outlet:external_outlet","20687":"flow:J_heart_outlet:external_outlet","20688":"flow:J_heart_outlet:external_outlet","20689":"flow:J_heart_outlet:external_outlet","20690":"flow:J_heart_outlet:external_outlet","20691":"flow:J_heart_outlet:external_outlet","20692":"flow:J_heart_outlet:external_outlet","20693":"flow:J_heart_outlet:external_outlet","20694":"flow:J_heart_outlet:external_outlet","20695":"flow:J_heart_outlet:external_outlet","20696":"flow:J_heart_outlet:external_outlet","20697":"flow:J_heart_outlet:external_outlet","20698":"flow:J_heart_outlet:external_outlet","20699":"flow:J_heart_outlet:external_outlet","20700":"flow:J_heart_outlet:external_outlet","20701":"flow:J_heart_outlet:external_outlet","20702":"flow:J_heart_outlet:external_outlet","20703":"flow:J_heart_outlet:external_outlet","20704":"flow:J_heart_outlet:external_outlet","20705":"flow:J_heart_outlet:external_outlet","20706":"flow:J_heart_outlet:external_outlet","20707":"flow:J_heart_outlet:external_outlet","20708":"flow:J_heart_outlet:external_outlet","20709":"flow:J_heart_outlet:external_outlet","20710":"flow:J_heart_outlet:external_outlet","20711":"flow:J_heart_outlet:external_outlet","20712":"flow:J_heart_outlet:external_outlet","20713":"flow:J_heart_outlet:external_outlet","20714":"flow:J_heart_outlet:external_outlet","20715":"flow:J_heart_outlet:external_outlet","20716":"flow:J_heart_outlet:external_outlet","20717":"flow:J_heart_outlet:external_outlet","20718":"flow:J_heart_outlet:external_outlet","20719":"flow:J_heart_outlet:external_outlet","20720":"flow:J_heart_outlet:external_outlet","20721":"flow:J_heart_outlet:external_outlet","20722":"flow:J_heart_outlet:external_outlet","20723":"flow:J_heart_outlet:external_outlet","20724":"flow:J_heart_outlet:external_outlet","20725":"flow:J_heart_outlet:external_outlet","20726":"flow:J_heart_outlet:external_outlet","20727":"flow:J_heart_outlet:external_outlet","20728":"flow:J_heart_outlet:external_outlet","20729":"flow:J_heart_outlet:external_outlet","20730":"flow:J_heart_outlet:external_outlet","20731":"flow:J_heart_outlet:external_outlet","20732":"flow:J_heart_outlet:external_outlet","20733":"flow:J_heart_outlet:external_outlet","20734":"flow:J_heart_outlet:external_outlet","20735":"flow:J_heart_outlet:external_outlet","20736":"flow:J_heart_outlet:external_outlet","20737":"flow:J_heart_outlet:external_outlet","20738":"flow:J_heart_outlet:external_outlet","20739":"flow:J_heart_outlet:external_outlet","20740":"flow:J_heart_outlet:external_outlet","20741":"flow:J_heart_outlet:external_outlet","20742":"flow:J_heart_outlet:external_outlet","20743":"flow:J_heart_outlet:external_outlet","20744":"flow:J_heart_outlet:external_outlet","20745":"flow:J_heart_outlet:external_outlet","20746":"flow:J_heart_outlet:external_outlet","20747":"flow:J_heart_outlet:external_outlet","20748":"flow:J_heart_outlet:external_outlet","20749":"flow:J_heart_outlet:external_outlet","20750":"flow:J_heart_outlet:external_outlet","20751":"flow:J_heart_outlet:external_outlet","20752":"flow:J_heart_outlet:external_outlet","20753":"flow:J_heart_outlet:external_outlet","20754":"flow:J_heart_outlet:external_outlet","20755":"flow:J_heart_outlet:external_outlet","20756":"flow:J_heart_outlet:external_outlet","20757":"flow:J_heart_outlet:external_outlet","20758":"flow:J_heart_outlet:external_outlet","20759":"flow:J_heart_outlet:external_outlet","20760":"flow:J_heart_outlet:external_outlet","20761":"flow:J_heart_outlet:external_outlet","20762":"flow:J_heart_outlet:external_outlet","20763":"flow:J_heart_outlet:external_outlet","20764":"flow:J_heart_outlet:external_outlet","20765":"flow:J_heart_outlet:external_outlet","20766":"flow:J_heart_outlet:external_outlet","20767":"flow:J_heart_outlet:external_outlet","20768":"flow:J_heart_outlet:external_outlet","20769":"flow:J_heart_outlet:external_outlet","20770":"flow:J_heart_outlet:external_outlet","20771":"flow:J_heart_outlet:external_outlet","20772":"flow:J_heart_outlet:external_outlet","20773":"flow:J_heart_outlet:external_outlet","20774":"flow:J_heart_outlet:external_outlet","20775":"flow:J_heart_outlet:external_outlet","20776":"flow:J_heart_outlet:external_outlet","20777":"flow:J_heart_outlet:external_outlet","20778":"flow:J_heart_outlet:external_outlet","20779":"flow:J_heart_outlet:external_outlet","20780":"flow:J_heart_outlet:external_outlet","20781":"flow:J_heart_outlet:external_outlet","20782":"flow:J_heart_outlet:external_outlet","20783":"flow:J_heart_outlet:external_outlet","20784":"flow:J_heart_outlet:external_outlet","20785":"flow:J_heart_outlet:external_outlet","20786":"flow:J_heart_outlet:external_outlet","20787":"flow:J_heart_outlet:external_outlet","20788":"flow:J_heart_outlet:external_outlet","20789":"flow:J_heart_outlet:external_outlet","20790":"flow:J_heart_outlet:external_outlet","20791":"flow:J_heart_outlet:external_outlet","20792":"flow:J_heart_outlet:external_outlet","20793":"flow:J_heart_outlet:external_outlet","20794":"flow:J_heart_outlet:external_outlet","20795":"flow:J_heart_outlet:external_outlet","20796":"flow:J_heart_outlet:external_outlet","20797":"flow:J_heart_outlet:external_outlet","20798":"flow:J_heart_outlet:external_outlet","20799":"flow:J_heart_outlet:external_outlet","20800":"flow:J_heart_outlet:external_outlet","20801":"flow:J_heart_outlet:external_outlet","20802":"flow:J_heart_outlet:external_outlet","20803":"flow:J_heart_outlet:external_outlet","20804":"flow:J_heart_outlet:external_outlet","20805":"flow:J_heart_outlet:external_outlet","20806":"flow:J_heart_outlet:external_outlet","20807":"flow:J_heart_outlet:external_outlet","20808":"flow:J_heart_outlet:external_outlet","20809":"flow:J_heart_outlet:external_outlet","20810":"flow:J_heart_outlet:external_outlet","20811":"flow:J_heart_outlet:external_outlet","20812":"flow:J_heart_outlet:external_outlet","20813":"flow:J_heart_outlet:external_outlet","20814":"flow:J_heart_outlet:external_outlet","20815":"flow:J_heart_outlet:external_outlet","20816":"flow:J_heart_outlet:external_outlet","20817":"flow:J_heart_outlet:external_outlet","20818":"flow:J_heart_outlet:external_outlet","20819":"flow:J_heart_outlet:external_outlet","20820":"flow:J_heart_outlet:external_outlet","20821":"flow:J_heart_outlet:external_outlet","20822":"flow:J_heart_outlet:external_outlet","20823":"flow:J_heart_outlet:external_outlet","20824":"flow:J_heart_outlet:external_outlet","20825":"flow:J_heart_outlet:external_outlet","20826":"flow:J_heart_outlet:external_outlet","20827":"flow:J_heart_outlet:external_outlet","20828":"flow:J_heart_outlet:external_outlet","20829":"flow:J_heart_outlet:external_outlet","20830":"flow:J_heart_outlet:external_outlet","20831":"flow:J_heart_outlet:external_outlet","20832":"flow:J_heart_outlet:external_outlet","20833":"flow:J_heart_outlet:external_outlet","20834":"flow:J_heart_outlet:external_outlet","20835":"flow:J_heart_outlet:external_outlet","20836":"flow:J_heart_outlet:external_outlet","20837":"flow:J_heart_outlet:external_outlet","20838":"flow:J_heart_outlet:external_outlet","20839":"flow:J_heart_outlet:external_outlet","20840":"flow:J_heart_outlet:external_outlet","20841":"flow:J_heart_outlet:external_outlet","20842":"flow:J_heart_outlet:external_outlet","20843":"flow:J_heart_outlet:external_outlet","20844":"flow:J_heart_outlet:external_outlet","20845":"flow:J_heart_outlet:external_outlet","20846":"flow:J_heart_outlet:external_outlet","20847":"flow:J_heart_outlet:external_outlet","20848":"flow:J_heart_outlet:external_outlet","20849":"flow:J_heart_outlet:external_outlet","20850":"flow:J_heart_outlet:external_outlet","20851":"flow:J_heart_outlet:external_outlet","20852":"flow:J_heart_outlet:external_outlet","20853":"flow:J_heart_outlet:external_outlet","20854":"flow:J_heart_outlet:external_outlet","20855":"flow:J_heart_outlet:external_outlet","20856":"flow:J_heart_outlet:external_outlet","20857":"flow:J_heart_outlet:external_outlet","20858":"flow:J_heart_outlet:external_outlet","20859":"flow:J_heart_outlet:external_outlet","20860":"flow:J_heart_outlet:external_outlet","20861":"flow:J_heart_outlet:external_outlet","20862":"flow:J_heart_outlet:external_outlet","20863":"flow:J_heart_outlet:external_outlet","20864":"flow:J_heart_outlet:external_outlet","20865":"flow:J_heart_outlet:external_outlet","20866":"flow:J_heart_outlet:external_outlet","20867":"flow:J_heart_outlet:external_outlet","20868":"flow:J_heart_outlet:external_outlet","20869":"flow:J_heart_outlet:external_outlet","20870":"flow:J_heart_outlet:external_outlet","20871":"flow:J_heart_outlet:external_outlet","20872":"flow:J_heart_outlet:external_outlet","20873":"flow:J_heart_outlet:external_outlet","20874":"flow:J_heart_outlet:external_outlet","20875":"flow:J_heart_outlet:external_outlet","20876":"flow:J_heart_outlet:external_outlet","20877":"flow:J_heart_outlet:external_outlet","20878":"flow:J_heart_outlet:external_outlet","20879":"flow:J_heart_outlet:external_outlet","20880":"flow:J_heart_outlet:external_outlet","20881":"flow:J_heart_outlet:external_outlet","20882":"flow:J_heart_outlet:external_outlet","20883":"flow:J_heart_outlet:external_outlet","20884":"flow:J_heart_outlet:external_outlet","20885":"flow:J_heart_outlet:external_outlet","20886":"flow:J_heart_outlet:external_outlet","20887":"flow:J_heart_outlet:external_outlet","20888":"flow:J_heart_outlet:external_outlet","20889":"flow:J_heart_outlet:external_outlet","20890":"flow:J_heart_outlet:external_outlet","20891":"flow:J_heart_outlet:external_outlet","20892":"flow:J_heart_outlet:external_outlet","20893":"flow:J_heart_outlet:external_outlet","20894":"flow:J_heart_outlet:external_outlet","20895":"flow:J_heart_outlet:external_outlet","20896":"flow:J_heart_outlet:external_outlet","20897":"flow:J_heart_outlet:external_outlet","20898":"flow:J_heart_outlet:external_outlet","20899":"flow:J_heart_outlet:external_outlet","20900":"flow:J_heart_outlet:external_outlet","20901":"flow:J_heart_outlet:external_outlet","20902":"flow:J_heart_outlet:external_outlet","20903":"flow:J_heart_outlet:external_outlet","20904":"flow:J_heart_outlet:external_outlet","20905":"flow:J_heart_outlet:external_outlet","20906":"flow:J_heart_outlet:external_outlet","20907":"flow:J_heart_outlet:external_outlet","20908":"flow:J_heart_outlet:external_outlet","20909":"flow:J_heart_outlet:external_outlet","20910":"flow:J_heart_outlet:external_outlet","20911":"flow:J_heart_outlet:external_outlet","20912":"flow:J_heart_outlet:external_outlet","20913":"flow:J_heart_outlet:external_outlet","20914":"flow:J_heart_outlet:external_outlet","20915":"flow:J_heart_outlet:external_outlet","20916":"flow:J_heart_outlet:external_outlet","20917":"flow:J_heart_outlet:external_outlet","20918":"flow:J_heart_outlet:external_outlet","20919":"flow:J_heart_outlet:external_outlet","20920":"flow:J_heart_outlet:external_outlet","20921":"flow:J_heart_outlet:external_outlet","20922":"flow:J_heart_outlet:external_outlet","20923":"flow:J_heart_outlet:external_outlet","20924":"flow:J_heart_outlet:external_outlet","20925":"flow:J_heart_outlet:external_outlet","20926":"flow:J_heart_outlet:external_outlet","20927":"flow:J_heart_outlet:external_outlet","20928":"flow:J_heart_outlet:external_outlet","20929":"flow:J_heart_outlet:external_outlet","20930":"flow:J_heart_outlet:external_outlet","20931":"flow:J_heart_outlet:external_outlet","20932":"flow:J_heart_outlet:external_outlet","20933":"flow:J_heart_outlet:external_outlet","20934":"flow:J_heart_outlet:external_outlet","20935":"flow:J_heart_outlet:external_outlet","20936":"flow:J_heart_outlet:external_outlet","20937":"flow:J_heart_outlet:external_outlet","20938":"flow:J_heart_outlet:external_outlet","20939":"flow:J_heart_outlet:external_outlet","20940":"flow:J_heart_outlet:external_outlet","20941":"flow:J_heart_outlet:external_outlet","20942":"flow:J_heart_outlet:external_outlet","20943":"flow:J_heart_outlet:external_outlet","20944":"flow:J_heart_outlet:external_outlet","20945":"flow:J_heart_outlet:external_outlet","20946":"flow:J_heart_outlet:external_outlet","20947":"flow:J_heart_outlet:external_outlet","20948":"flow:J_heart_outlet:external_outlet","20949":"flow:J_heart_outlet:external_outlet","20950":"flow:J_heart_outlet:external_outlet","20951":"flow:J_heart_outlet:external_outlet","20952":"flow:J_heart_outlet:external_outlet","20953":"flow:J_heart_outlet:external_outlet","20954":"flow:J_heart_outlet:external_outlet","20955":"flow:J_heart_outlet:external_outlet","20956":"flow:J_heart_outlet:external_outlet","20957":"flow:J_heart_outlet:external_outlet","20958":"flow:J_heart_outlet:external_outlet","20959":"flow:J_heart_outlet:external_outlet","20960":"flow:J_heart_outlet:external_outlet","20961":"flow:J_heart_outlet:external_outlet","20962":"flow:J_heart_outlet:external_outlet","20963":"flow:J_heart_outlet:external_outlet","20964":"flow:J_heart_outlet:external_outlet","20965":"flow:J_heart_outlet:external_outlet","20966":"flow:J_heart_outlet:external_outlet","20967":"flow:J_heart_outlet:external_outlet","20968":"flow:J_heart_outlet:external_outlet","20969":"flow:J_heart_outlet:external_outlet","20970":"flow:J_heart_outlet:external_outlet","20971":"flow:J_heart_outlet:external_outlet","20972":"flow:J_heart_outlet:external_outlet","20973":"flow:J_heart_outlet:external_outlet","20974":"flow:J_heart_outlet:external_outlet","20975":"flow:J_heart_outlet:external_outlet","20976":"flow:J_heart_outlet:external_outlet","20977":"flow:J_heart_outlet:external_outlet","20978":"flow:J_heart_outlet:external_outlet","20979":"flow:J_heart_outlet:external_outlet","20980":"flow:J_heart_outlet:external_outlet","20981":"flow:J_heart_outlet:external_outlet","20982":"flow:J_heart_outlet:external_outlet","20983":"flow:J_heart_outlet:external_outlet","20984":"flow:J_heart_outlet:external_outlet","20985":"flow:J_heart_outlet:external_outlet","20986":"flow:J_heart_outlet:external_outlet","20987":"flow:J_heart_outlet:external_outlet","20988":"flow:J_heart_outlet:external_outlet","20989":"flow:J_heart_outlet:external_outlet","20990":"flow:J_heart_outlet:external_outlet","20991":"flow:J_heart_outlet:external_outlet","20992":"flow:J_heart_outlet:external_outlet","20993":"flow:J_heart_outlet:external_outlet","20994":"flow:J_heart_outlet:external_outlet","20995":"flow:J_heart_outlet:external_outlet","20996":"flow:J_heart_outlet:external_outlet","20997":"flow:J_heart_outlet:external_outlet","20998":"flow:J_heart_outlet:external_outlet","20999":"flow:J_heart_outlet:external_outlet","21000":"pressure:J_heart_outlet:external_outlet","21001":"pressure:J_heart_outlet:external_outlet","21002":"pressure:J_heart_outlet:external_outlet","21003":"pressure:J_heart_outlet:external_outlet","21004":"pressure:J_heart_outlet:external_outlet","21005":"pressure:J_heart_outlet:external_outlet","21006":"pressure:J_heart_outlet:external_outlet","21007":"pressure:J_heart_outlet:external_outlet","21008":"pressure:J_heart_outlet:external_outlet","21009":"pressure:J_heart_outlet:external_outlet","21010":"pressure:J_heart_outlet:external_outlet","21011":"pressure:J_heart_outlet:external_outlet","21012":"pressure:J_heart_outlet:external_outlet","21013":"pressure:J_heart_outlet:external_outlet","21014":"pressure:J_heart_outlet:external_outlet","21015":"pressure:J_heart_outlet:external_outlet","21016":"pressure:J_heart_outlet:external_outlet","21017":"pressure:J_heart_outlet:external_outlet","21018":"pressure:J_heart_outlet:external_outlet","21019":"pressure:J_heart_outlet:external_outlet","21020":"pressure:J_heart_outlet:external_outlet","21021":"pressure:J_heart_outlet:external_outlet","21022":"pressure:J_heart_outlet:external_outlet","21023":"pressure:J_heart_outlet:external_outlet","21024":"pressure:J_heart_outlet:external_outlet","21025":"pressure:J_heart_outlet:external_outlet","21026":"pressure:J_heart_outlet:external_outlet","21027":"pressure:J_heart_outlet:external_outlet","21028":"pressure:J_heart_outlet:external_outlet","21029":"pressure:J_heart_outlet:external_outlet","21030":"pressure:J_heart_outlet:external_outlet","21031":"pressure:J_heart_outlet:external_outlet","21032":"pressure:J_heart_outlet:external_outlet","21033":"pressure:J_heart_outlet:external_outlet","21034":"pressure:J_heart_outlet:external_outlet","21035":"pressure:J_heart_outlet:external_outlet","21036":"pressure:J_heart_outlet:external_outlet","21037":"pressure:J_heart_outlet:external_outlet","21038":"pressure:J_heart_outlet:external_outlet","21039":"pressure:J_heart_outlet:external_outlet","21040":"pressure:J_heart_outlet:external_outlet","21041":"pressure:J_heart_outlet:external_outlet","21042":"pressure:J_heart_outlet:external_outlet","21043":"pressure:J_heart_outlet:external_outlet","21044":"pressure:J_heart_outlet:external_outlet","21045":"pressure:J_heart_outlet:external_outlet","21046":"pressure:J_heart_outlet:external_outlet","21047":"pressure:J_heart_outlet:external_outlet","21048":"pressure:J_heart_outlet:external_outlet","21049":"pressure:J_heart_outlet:external_outlet","21050":"pressure:J_heart_outlet:external_outlet","21051":"pressure:J_heart_outlet:external_outlet","21052":"pressure:J_heart_outlet:external_outlet","21053":"pressure:J_heart_outlet:external_outlet","21054":"pressure:J_heart_outlet:external_outlet","21055":"pressure:J_heart_outlet:external_outlet","21056":"pressure:J_heart_outlet:external_outlet","21057":"pressure:J_heart_outlet:external_outlet","21058":"pressure:J_heart_outlet:external_outlet","21059":"pressure:J_heart_outlet:external_outlet","21060":"pressure:J_heart_outlet:external_outlet","21061":"pressure:J_heart_outlet:external_outlet","21062":"pressure:J_heart_outlet:external_outlet","21063":"pressure:J_heart_outlet:external_outlet","21064":"pressure:J_heart_outlet:external_outlet","21065":"pressure:J_heart_outlet:external_outlet","21066":"pressure:J_heart_outlet:external_outlet","21067":"pressure:J_heart_outlet:external_outlet","21068":"pressure:J_heart_outlet:external_outlet","21069":"pressure:J_heart_outlet:external_outlet","21070":"pressure:J_heart_outlet:external_outlet","21071":"pressure:J_heart_outlet:external_outlet","21072":"pressure:J_heart_outlet:external_outlet","21073":"pressure:J_heart_outlet:external_outlet","21074":"pressure:J_heart_outlet:external_outlet","21075":"pressure:J_heart_outlet:external_outlet","21076":"pressure:J_heart_outlet:external_outlet","21077":"pressure:J_heart_outlet:external_outlet","21078":"pressure:J_heart_outlet:external_outlet","21079":"pressure:J_heart_outlet:external_outlet","21080":"pressure:J_heart_outlet:external_outlet","21081":"pressure:J_heart_outlet:external_outlet","21082":"pressure:J_heart_outlet:external_outlet","21083":"pressure:J_heart_outlet:external_outlet","21084":"pressure:J_heart_outlet:external_outlet","21085":"pressure:J_heart_outlet:external_outlet","21086":"pressure:J_heart_outlet:external_outlet","21087":"pressure:J_heart_outlet:external_outlet","21088":"pressure:J_heart_outlet:external_outlet","21089":"pressure:J_heart_outlet:external_outlet","21090":"pressure:J_heart_outlet:external_outlet","21091":"pressure:J_heart_outlet:external_outlet","21092":"pressure:J_heart_outlet:external_outlet","21093":"pressure:J_heart_outlet:external_outlet","21094":"pressure:J_heart_outlet:external_outlet","21095":"pressure:J_heart_outlet:external_outlet","21096":"pressure:J_heart_outlet:external_outlet","21097":"pressure:J_heart_outlet:external_outlet","21098":"pressure:J_heart_outlet:external_outlet","21099":"pressure:J_heart_outlet:external_outlet","21100":"pressure:J_heart_outlet:external_outlet","21101":"pressure:J_heart_outlet:external_outlet","21102":"pressure:J_heart_outlet:external_outlet","21103":"pressure:J_heart_outlet:external_outlet","21104":"pressure:J_heart_outlet:external_outlet","21105":"pressure:J_heart_outlet:external_outlet","21106":"pressure:J_heart_outlet:external_outlet","21107":"pressure:J_heart_outlet:external_outlet","21108":"pressure:J_heart_outlet:external_outlet","21109":"pressure:J_heart_outlet:external_outlet","21110":"pressure:J_heart_outlet:external_outlet","21111":"pressure:J_heart_outlet:external_outlet","21112":"pressure:J_heart_outlet:external_outlet","21113":"pressure:J_heart_outlet:external_outlet","21114":"pressure:J_heart_outlet:external_outlet","21115":"pressure:J_heart_outlet:external_outlet","21116":"pressure:J_heart_outlet:external_outlet","21117":"pressure:J_heart_outlet:external_outlet","21118":"pressure:J_heart_outlet:external_outlet","21119":"pressure:J_heart_outlet:external_outlet","21120":"pressure:J_heart_outlet:external_outlet","21121":"pressure:J_heart_outlet:external_outlet","21122":"pressure:J_heart_outlet:external_outlet","21123":"pressure:J_heart_outlet:external_outlet","21124":"pressure:J_heart_outlet:external_outlet","21125":"pressure:J_heart_outlet:external_outlet","21126":"pressure:J_heart_outlet:external_outlet","21127":"pressure:J_heart_outlet:external_outlet","21128":"pressure:J_heart_outlet:external_outlet","21129":"pressure:J_heart_outlet:external_outlet","21130":"pressure:J_heart_outlet:external_outlet","21131":"pressure:J_heart_outlet:external_outlet","21132":"pressure:J_heart_outlet:external_outlet","21133":"pressure:J_heart_outlet:external_outlet","21134":"pressure:J_heart_outlet:external_outlet","21135":"pressure:J_heart_outlet:external_outlet","21136":"pressure:J_heart_outlet:external_outlet","21137":"pressure:J_heart_outlet:external_outlet","21138":"pressure:J_heart_outlet:external_outlet","21139":"pressure:J_heart_outlet:external_outlet","21140":"pressure:J_heart_outlet:external_outlet","21141":"pressure:J_heart_outlet:external_outlet","21142":"pressure:J_heart_outlet:external_outlet","21143":"pressure:J_heart_outlet:external_outlet","21144":"pressure:J_heart_outlet:external_outlet","21145":"pressure:J_heart_outlet:external_outlet","21146":"pressure:J_heart_outlet:external_outlet","21147":"pressure:J_heart_outlet:external_outlet","21148":"pressure:J_heart_outlet:external_outlet","21149":"pressure:J_heart_outlet:external_outlet","21150":"pressure:J_heart_outlet:external_outlet","21151":"pressure:J_heart_outlet:external_outlet","21152":"pressure:J_heart_outlet:external_outlet","21153":"pressure:J_heart_outlet:external_outlet","21154":"pressure:J_heart_outlet:external_outlet","21155":"pressure:J_heart_outlet:external_outlet","21156":"pressure:J_heart_outlet:external_outlet","21157":"pressure:J_heart_outlet:external_outlet","21158":"pressure:J_heart_outlet:external_outlet","21159":"pressure:J_heart_outlet:external_outlet","21160":"pressure:J_heart_outlet:external_outlet","21161":"pressure:J_heart_outlet:external_outlet","21162":"pressure:J_heart_outlet:external_outlet","21163":"pressure:J_heart_outlet:external_outlet","21164":"pressure:J_heart_outlet:external_outlet","21165":"pressure:J_heart_outlet:external_outlet","21166":"pressure:J_heart_outlet:external_outlet","21167":"pressure:J_heart_outlet:external_outlet","21168":"pressure:J_heart_outlet:external_outlet","21169":"pressure:J_heart_outlet:external_outlet","21170":"pressure:J_heart_outlet:external_outlet","21171":"pressure:J_heart_outlet:external_outlet","21172":"pressure:J_heart_outlet:external_outlet","21173":"pressure:J_heart_outlet:external_outlet","21174":"pressure:J_heart_outlet:external_outlet","21175":"pressure:J_heart_outlet:external_outlet","21176":"pressure:J_heart_outlet:external_outlet","21177":"pressure:J_heart_outlet:external_outlet","21178":"pressure:J_heart_outlet:external_outlet","21179":"pressure:J_heart_outlet:external_outlet","21180":"pressure:J_heart_outlet:external_outlet","21181":"pressure:J_heart_outlet:external_outlet","21182":"pressure:J_heart_outlet:external_outlet","21183":"pressure:J_heart_outlet:external_outlet","21184":"pressure:J_heart_outlet:external_outlet","21185":"pressure:J_heart_outlet:external_outlet","21186":"pressure:J_heart_outlet:external_outlet","21187":"pressure:J_heart_outlet:external_outlet","21188":"pressure:J_heart_outlet:external_outlet","21189":"pressure:J_heart_outlet:external_outlet","21190":"pressure:J_heart_outlet:external_outlet","21191":"pressure:J_heart_outlet:external_outlet","21192":"pressure:J_heart_outlet:external_outlet","21193":"pressure:J_heart_outlet:external_outlet","21194":"pressure:J_heart_outlet:external_outlet","21195":"pressure:J_heart_outlet:external_outlet","21196":"pressure:J_heart_outlet:external_outlet","21197":"pressure:J_heart_outlet:external_outlet","21198":"pressure:J_heart_outlet:external_outlet","21199":"pressure:J_heart_outlet:external_outlet","21200":"pressure:J_heart_outlet:external_outlet","21201":"pressure:J_heart_outlet:external_outlet","21202":"pressure:J_heart_outlet:external_outlet","21203":"pressure:J_heart_outlet:external_outlet","21204":"pressure:J_heart_outlet:external_outlet","21205":"pressure:J_heart_outlet:external_outlet","21206":"pressure:J_heart_outlet:external_outlet","21207":"pressure:J_heart_outlet:external_outlet","21208":"pressure:J_heart_outlet:external_outlet","21209":"pressure:J_heart_outlet:external_outlet","21210":"pressure:J_heart_outlet:external_outlet","21211":"pressure:J_heart_outlet:external_outlet","21212":"pressure:J_heart_outlet:external_outlet","21213":"pressure:J_heart_outlet:external_outlet","21214":"pressure:J_heart_outlet:external_outlet","21215":"pressure:J_heart_outlet:external_outlet","21216":"pressure:J_heart_outlet:external_outlet","21217":"pressure:J_heart_outlet:external_outlet","21218":"pressure:J_heart_outlet:external_outlet","21219":"pressure:J_heart_outlet:external_outlet","21220":"pressure:J_heart_outlet:external_outlet","21221":"pressure:J_heart_outlet:external_outlet","21222":"pressure:J_heart_outlet:external_outlet","21223":"pressure:J_heart_outlet:external_outlet","21224":"pressure:J_heart_outlet:external_outlet","21225":"pressure:J_heart_outlet:external_outlet","21226":"pressure:J_heart_outlet:external_outlet","21227":"pressure:J_heart_outlet:external_outlet","21228":"pressure:J_heart_outlet:external_outlet","21229":"pressure:J_heart_outlet:external_outlet","21230":"pressure:J_heart_outlet:external_outlet","21231":"pressure:J_heart_outlet:external_outlet","21232":"pressure:J_heart_outlet:external_outlet","21233":"pressure:J_heart_outlet:external_outlet","21234":"pressure:J_heart_outlet:external_outlet","21235":"pressure:J_heart_outlet:external_outlet","21236":"pressure:J_heart_outlet:external_outlet","21237":"pressure:J_heart_outlet:external_outlet","21238":"pressure:J_heart_outlet:external_outlet","21239":"pressure:J_heart_outlet:external_outlet","21240":"pressure:J_heart_outlet:external_outlet","21241":"pressure:J_heart_outlet:external_outlet","21242":"pressure:J_heart_outlet:external_outlet","21243":"pressure:J_heart_outlet:external_outlet","21244":"pressure:J_heart_outlet:external_outlet","21245":"pressure:J_heart_outlet:external_outlet","21246":"pressure:J_heart_outlet:external_outlet","21247":"pressure:J_heart_outlet:external_outlet","21248":"pressure:J_heart_outlet:external_outlet","21249":"pressure:J_heart_outlet:external_outlet","21250":"pressure:J_heart_outlet:external_outlet","21251":"pressure:J_heart_outlet:external_outlet","21252":"pressure:J_heart_outlet:external_outlet","21253":"pressure:J_heart_outlet:external_outlet","21254":"pressure:J_heart_outlet:external_outlet","21255":"pressure:J_heart_outlet:external_outlet","21256":"pressure:J_heart_outlet:external_outlet","21257":"pressure:J_heart_outlet:external_outlet","21258":"pressure:J_heart_outlet:external_outlet","21259":"pressure:J_heart_outlet:external_outlet","21260":"pressure:J_heart_outlet:external_outlet","21261":"pressure:J_heart_outlet:external_outlet","21262":"pressure:J_heart_outlet:external_outlet","21263":"pressure:J_heart_outlet:external_outlet","21264":"pressure:J_heart_outlet:external_outlet","21265":"pressure:J_heart_outlet:external_outlet","21266":"pressure:J_heart_outlet:external_outlet","21267":"pressure:J_heart_outlet:external_outlet","21268":"pressure:J_heart_outlet:external_outlet","21269":"pressure:J_heart_outlet:external_outlet","21270":"pressure:J_heart_outlet:external_outlet","21271":"pressure:J_heart_outlet:external_outlet","21272":"pressure:J_heart_outlet:external_outlet","21273":"pressure:J_heart_outlet:external_outlet","21274":"pressure:J_heart_outlet:external_outlet","21275":"pressure:J_heart_outlet:external_outlet","21276":"pressure:J_heart_outlet:external_outlet","21277":"pressure:J_heart_outlet:external_outlet","21278":"pressure:J_heart_outlet:external_outlet","21279":"pressure:J_heart_outlet:external_outlet","21280":"pressure:J_heart_outlet:external_outlet","21281":"pressure:J_heart_outlet:external_outlet","21282":"pressure:J_heart_outlet:external_outlet","21283":"pressure:J_heart_outlet:external_outlet","21284":"pressure:J_heart_outlet:external_outlet","21285":"pressure:J_heart_outlet:external_outlet","21286":"pressure:J_heart_outlet:external_outlet","21287":"pressure:J_heart_outlet:external_outlet","21288":"pressure:J_heart_outlet:external_outlet","21289":"pressure:J_heart_outlet:external_outlet","21290":"pressure:J_heart_outlet:external_outlet","21291":"pressure:J_heart_outlet:external_outlet","21292":"pressure:J_heart_outlet:external_outlet","21293":"pressure:J_heart_outlet:external_outlet","21294":"pressure:J_heart_outlet:external_outlet","21295":"pressure:J_heart_outlet:external_outlet","21296":"pressure:J_heart_outlet:external_outlet","21297":"pressure:J_heart_outlet:external_outlet","21298":"pressure:J_heart_outlet:external_outlet","21299":"pressure:J_heart_outlet:external_outlet","21300":"pressure:J_heart_outlet:external_outlet","21301":"pressure:J_heart_outlet:external_outlet","21302":"pressure:J_heart_outlet:external_outlet","21303":"pressure:J_heart_outlet:external_outlet","21304":"pressure:J_heart_outlet:external_outlet","21305":"pressure:J_heart_outlet:external_outlet","21306":"pressure:J_heart_outlet:external_outlet","21307":"pressure:J_heart_outlet:external_outlet","21308":"pressure:J_heart_outlet:external_outlet","21309":"pressure:J_heart_outlet:external_outlet","21310":"pressure:J_heart_outlet:external_outlet","21311":"pressure:J_heart_outlet:external_outlet","21312":"pressure:J_heart_outlet:external_outlet","21313":"pressure:J_heart_outlet:external_outlet","21314":"pressure:J_heart_outlet:external_outlet","21315":"pressure:J_heart_outlet:external_outlet","21316":"pressure:J_heart_outlet:external_outlet","21317":"pressure:J_heart_outlet:external_outlet","21318":"pressure:J_heart_outlet:external_outlet","21319":"pressure:J_heart_outlet:external_outlet","21320":"pressure:J_heart_outlet:external_outlet","21321":"pressure:J_heart_outlet:external_outlet","21322":"pressure:J_heart_outlet:external_outlet","21323":"pressure:J_heart_outlet:external_outlet","21324":"pressure:J_heart_outlet:external_outlet","21325":"pressure:J_heart_outlet:external_outlet","21326":"pressure:J_heart_outlet:external_outlet","21327":"pressure:J_heart_outlet:external_outlet","21328":"pressure:J_heart_outlet:external_outlet","21329":"pressure:J_heart_outlet:external_outlet","21330":"pressure:J_heart_outlet:external_outlet","21331":"pressure:J_heart_outlet:external_outlet","21332":"pressure:J_heart_outlet:external_outlet","21333":"pressure:J_heart_outlet:external_outlet","21334":"pressure:J_heart_outlet:external_outlet","21335":"pressure:J_heart_outlet:external_outlet","21336":"pressure:J_heart_outlet:external_outlet","21337":"pressure:J_heart_outlet:external_outlet","21338":"pressure:J_heart_outlet:external_outlet","21339":"pressure:J_heart_outlet:external_outlet","21340":"pressure:J_heart_outlet:external_outlet","21341":"pressure:J_heart_outlet:external_outlet","21342":"pressure:J_heart_outlet:external_outlet","21343":"pressure:J_heart_outlet:external_outlet","21344":"pressure:J_heart_outlet:external_outlet","21345":"pressure:J_heart_outlet:external_outlet","21346":"pressure:J_heart_outlet:external_outlet","21347":"pressure:J_heart_outlet:external_outlet","21348":"pressure:J_heart_outlet:external_outlet","21349":"pressure:J_heart_outlet:external_outlet","21350":"pressure:J_heart_outlet:external_outlet","21351":"pressure:J_heart_outlet:external_outlet","21352":"pressure:J_heart_outlet:external_outlet","21353":"pressure:J_heart_outlet:external_outlet","21354":"pressure:J_heart_outlet:external_outlet","21355":"pressure:J_heart_outlet:external_outlet","21356":"pressure:J_heart_outlet:external_outlet","21357":"pressure:J_heart_outlet:external_outlet","21358":"pressure:J_heart_outlet:external_outlet","21359":"pressure:J_heart_outlet:external_outlet","21360":"pressure:J_heart_outlet:external_outlet","21361":"pressure:J_heart_outlet:external_outlet","21362":"pressure:J_heart_outlet:external_outlet","21363":"pressure:J_heart_outlet:external_outlet","21364":"pressure:J_heart_outlet:external_outlet","21365":"pressure:J_heart_outlet:external_outlet","21366":"pressure:J_heart_outlet:external_outlet","21367":"pressure:J_heart_outlet:external_outlet","21368":"pressure:J_heart_outlet:external_outlet","21369":"pressure:J_heart_outlet:external_outlet","21370":"pressure:J_heart_outlet:external_outlet","21371":"pressure:J_heart_outlet:external_outlet","21372":"pressure:J_heart_outlet:external_outlet","21373":"pressure:J_heart_outlet:external_outlet","21374":"pressure:J_heart_outlet:external_outlet","21375":"pressure:J_heart_outlet:external_outlet","21376":"pressure:J_heart_outlet:external_outlet","21377":"pressure:J_heart_outlet:external_outlet","21378":"pressure:J_heart_outlet:external_outlet","21379":"pressure:J_heart_outlet:external_outlet","21380":"pressure:J_heart_outlet:external_outlet","21381":"pressure:J_heart_outlet:external_outlet","21382":"pressure:J_heart_outlet:external_outlet","21383":"pressure:J_heart_outlet:external_outlet","21384":"pressure:J_heart_outlet:external_outlet","21385":"pressure:J_heart_outlet:external_outlet","21386":"pressure:J_heart_outlet:external_outlet","21387":"pressure:J_heart_outlet:external_outlet","21388":"pressure:J_heart_outlet:external_outlet","21389":"pressure:J_heart_outlet:external_outlet","21390":"pressure:J_heart_outlet:external_outlet","21391":"pressure:J_heart_outlet:external_outlet","21392":"pressure:J_heart_outlet:external_outlet","21393":"pressure:J_heart_outlet:external_outlet","21394":"pressure:J_heart_outlet:external_outlet","21395":"pressure:J_heart_outlet:external_outlet","21396":"pressure:J_heart_outlet:external_outlet","21397":"pressure:J_heart_outlet:external_outlet","21398":"pressure:J_heart_outlet:external_outlet","21399":"pressure:J_heart_outlet:external_outlet","21400":"pressure:J_heart_outlet:external_outlet","21401":"pressure:J_heart_outlet:external_outlet","21402":"pressure:J_heart_outlet:external_outlet","21403":"pressure:J_heart_outlet:external_outlet","21404":"pressure:J_heart_outlet:external_outlet","21405":"pressure:J_heart_outlet:external_outlet","21406":"pressure:J_heart_outlet:external_outlet","21407":"pressure:J_heart_outlet:external_outlet","21408":"pressure:J_heart_outlet:external_outlet","21409":"pressure:J_heart_outlet:external_outlet","21410":"pressure:J_heart_outlet:external_outlet","21411":"pressure:J_heart_outlet:external_outlet","21412":"pressure:J_heart_outlet:external_outlet","21413":"pressure:J_heart_outlet:external_outlet","21414":"pressure:J_heart_outlet:external_outlet","21415":"pressure:J_heart_outlet:external_outlet","21416":"pressure:J_heart_outlet:external_outlet","21417":"pressure:J_heart_outlet:external_outlet","21418":"pressure:J_heart_outlet:external_outlet","21419":"pressure:J_heart_outlet:external_outlet","21420":"pressure:J_heart_outlet:external_outlet","21421":"pressure:J_heart_outlet:external_outlet","21422":"pressure:J_heart_outlet:external_outlet","21423":"pressure:J_heart_outlet:external_outlet","21424":"pressure:J_heart_outlet:external_outlet","21425":"pressure:J_heart_outlet:external_outlet","21426":"pressure:J_heart_outlet:external_outlet","21427":"pressure:J_heart_outlet:external_outlet","21428":"pressure:J_heart_outlet:external_outlet","21429":"pressure:J_heart_outlet:external_outlet","21430":"pressure:J_heart_outlet:external_outlet","21431":"pressure:J_heart_outlet:external_outlet","21432":"pressure:J_heart_outlet:external_outlet","21433":"pressure:J_heart_outlet:external_outlet","21434":"pressure:J_heart_outlet:external_outlet","21435":"pressure:J_heart_outlet:external_outlet","21436":"pressure:J_heart_outlet:external_outlet","21437":"pressure:J_heart_outlet:external_outlet","21438":"pressure:J_heart_outlet:external_outlet","21439":"pressure:J_heart_outlet:external_outlet","21440":"pressure:J_heart_outlet:external_outlet","21441":"pressure:J_heart_outlet:external_outlet","21442":"pressure:J_heart_outlet:external_outlet","21443":"pressure:J_heart_outlet:external_outlet","21444":"pressure:J_heart_outlet:external_outlet","21445":"pressure:J_heart_outlet:external_outlet","21446":"pressure:J_heart_outlet:external_outlet","21447":"pressure:J_heart_outlet:external_outlet","21448":"pressure:J_heart_outlet:external_outlet","21449":"pressure:J_heart_outlet:external_outlet","21450":"pressure:J_heart_outlet:external_outlet","21451":"pressure:J_heart_outlet:external_outlet","21452":"pressure:J_heart_outlet:external_outlet","21453":"pressure:J_heart_outlet:external_outlet","21454":"pressure:J_heart_outlet:external_outlet","21455":"pressure:J_heart_outlet:external_outlet","21456":"pressure:J_heart_outlet:external_outlet","21457":"pressure:J_heart_outlet:external_outlet","21458":"pressure:J_heart_outlet:external_outlet","21459":"pressure:J_heart_outlet:external_outlet","21460":"pressure:J_heart_outlet:external_outlet","21461":"pressure:J_heart_outlet:external_outlet","21462":"pressure:J_heart_outlet:external_outlet","21463":"pressure:J_heart_outlet:external_outlet","21464":"pressure:J_heart_outlet:external_outlet","21465":"pressure:J_heart_outlet:external_outlet","21466":"pressure:J_heart_outlet:external_outlet","21467":"pressure:J_heart_outlet:external_outlet","21468":"pressure:J_heart_outlet:external_outlet","21469":"pressure:J_heart_outlet:external_outlet","21470":"pressure:J_heart_outlet:external_outlet","21471":"pressure:J_heart_outlet:external_outlet","21472":"pressure:J_heart_outlet:external_outlet","21473":"pressure:J_heart_outlet:external_outlet","21474":"pressure:J_heart_outlet:external_outlet","21475":"pressure:J_heart_outlet:external_outlet","21476":"pressure:J_heart_outlet:external_outlet","21477":"pressure:J_heart_outlet:external_outlet","21478":"pressure:J_heart_outlet:external_outlet","21479":"pressure:J_heart_outlet:external_outlet","21480":"pressure:J_heart_outlet:external_outlet","21481":"pressure:J_heart_outlet:external_outlet","21482":"pressure:J_heart_outlet:external_outlet","21483":"pressure:J_heart_outlet:external_outlet","21484":"pressure:J_heart_outlet:external_outlet","21485":"pressure:J_heart_outlet:external_outlet","21486":"pressure:J_heart_outlet:external_outlet","21487":"pressure:J_heart_outlet:external_outlet","21488":"pressure:J_heart_outlet:external_outlet","21489":"pressure:J_heart_outlet:external_outlet","21490":"pressure:J_heart_outlet:external_outlet","21491":"pressure:J_heart_outlet:external_outlet","21492":"pressure:J_heart_outlet:external_outlet","21493":"pressure:J_heart_outlet:external_outlet","21494":"pressure:J_heart_outlet:external_outlet","21495":"pressure:J_heart_outlet:external_outlet","21496":"pressure:J_heart_outlet:external_outlet","21497":"pressure:J_heart_outlet:external_outlet","21498":"pressure:J_heart_outlet:external_outlet","21499":"pressure:J_heart_outlet:external_outlet","21500":"pressure:J_heart_outlet:external_outlet","21501":"pressure:J_heart_outlet:external_outlet","21502":"pressure:J_heart_outlet:external_outlet","21503":"pressure:J_heart_outlet:external_outlet","21504":"pressure:J_heart_outlet:external_outlet","21505":"pressure:J_heart_outlet:external_outlet","21506":"pressure:J_heart_outlet:external_outlet","21507":"pressure:J_heart_outlet:external_outlet","21508":"pressure:J_heart_outlet:external_outlet","21509":"pressure:J_heart_outlet:external_outlet","21510":"pressure:J_heart_outlet:external_outlet","21511":"pressure:J_heart_outlet:external_outlet","21512":"pressure:J_heart_outlet:external_outlet","21513":"pressure:J_heart_outlet:external_outlet","21514":"pressure:J_heart_outlet:external_outlet","21515":"pressure:J_heart_outlet:external_outlet","21516":"pressure:J_heart_outlet:external_outlet","21517":"pressure:J_heart_outlet:external_outlet","21518":"pressure:J_heart_outlet:external_outlet","21519":"pressure:J_heart_outlet:external_outlet","21520":"pressure:J_heart_outlet:external_outlet","21521":"pressure:J_heart_outlet:external_outlet","21522":"pressure:J_heart_outlet:external_outlet","21523":"pressure:J_heart_outlet:external_outlet","21524":"pressure:J_heart_outlet:external_outlet","21525":"pressure:J_heart_outlet:external_outlet","21526":"pressure:J_heart_outlet:external_outlet","21527":"pressure:J_heart_outlet:external_outlet","21528":"pressure:J_heart_outlet:external_outlet","21529":"pressure:J_heart_outlet:external_outlet","21530":"pressure:J_heart_outlet:external_outlet","21531":"pressure:J_heart_outlet:external_outlet","21532":"pressure:J_heart_outlet:external_outlet","21533":"pressure:J_heart_outlet:external_outlet","21534":"pressure:J_heart_outlet:external_outlet","21535":"pressure:J_heart_outlet:external_outlet","21536":"pressure:J_heart_outlet:external_outlet","21537":"pressure:J_heart_outlet:external_outlet","21538":"pressure:J_heart_outlet:external_outlet","21539":"pressure:J_heart_outlet:external_outlet","21540":"pressure:J_heart_outlet:external_outlet","21541":"pressure:J_heart_outlet:external_outlet","21542":"pressure:J_heart_outlet:external_outlet","21543":"pressure:J_heart_outlet:external_outlet","21544":"pressure:J_heart_outlet:external_outlet","21545":"pressure:J_heart_outlet:external_outlet","21546":"pressure:J_heart_outlet:external_outlet","21547":"pressure:J_heart_outlet:external_outlet","21548":"pressure:J_heart_outlet:external_outlet","21549":"pressure:J_heart_outlet:external_outlet","21550":"pressure:J_heart_outlet:external_outlet","21551":"pressure:J_heart_outlet:external_outlet","21552":"pressure:J_heart_outlet:external_outlet","21553":"pressure:J_heart_outlet:external_outlet","21554":"pressure:J_heart_outlet:external_outlet","21555":"pressure:J_heart_outlet:external_outlet","21556":"pressure:J_heart_outlet:external_outlet","21557":"pressure:J_heart_outlet:external_outlet","21558":"pressure:J_heart_outlet:external_outlet","21559":"pressure:J_heart_outlet:external_outlet","21560":"pressure:J_heart_outlet:external_outlet","21561":"pressure:J_heart_outlet:external_outlet","21562":"pressure:J_heart_outlet:external_outlet","21563":"pressure:J_heart_outlet:external_outlet","21564":"pressure:J_heart_outlet:external_outlet","21565":"pressure:J_heart_outlet:external_outlet","21566":"pressure:J_heart_outlet:external_outlet","21567":"pressure:J_heart_outlet:external_outlet","21568":"pressure:J_heart_outlet:external_outlet","21569":"pressure:J_heart_outlet:external_outlet","21570":"pressure:J_heart_outlet:external_outlet","21571":"pressure:J_heart_outlet:external_outlet","21572":"pressure:J_heart_outlet:external_outlet","21573":"pressure:J_heart_outlet:external_outlet","21574":"pressure:J_heart_outlet:external_outlet","21575":"pressure:J_heart_outlet:external_outlet","21576":"pressure:J_heart_outlet:external_outlet","21577":"pressure:J_heart_outlet:external_outlet","21578":"pressure:J_heart_outlet:external_outlet","21579":"pressure:J_heart_outlet:external_outlet","21580":"pressure:J_heart_outlet:external_outlet","21581":"pressure:J_heart_outlet:external_outlet","21582":"pressure:J_heart_outlet:external_outlet","21583":"pressure:J_heart_outlet:external_outlet","21584":"pressure:J_heart_outlet:external_outlet","21585":"pressure:J_heart_outlet:external_outlet","21586":"pressure:J_heart_outlet:external_outlet","21587":"pressure:J_heart_outlet:external_outlet","21588":"pressure:J_heart_outlet:external_outlet","21589":"pressure:J_heart_outlet:external_outlet","21590":"pressure:J_heart_outlet:external_outlet","21591":"pressure:J_heart_outlet:external_outlet","21592":"pressure:J_heart_outlet:external_outlet","21593":"pressure:J_heart_outlet:external_outlet","21594":"pressure:J_heart_outlet:external_outlet","21595":"pressure:J_heart_outlet:external_outlet","21596":"pressure:J_heart_outlet:external_outlet","21597":"pressure:J_heart_outlet:external_outlet","21598":"pressure:J_heart_outlet:external_outlet","21599":"pressure:J_heart_outlet:external_outlet","21600":"pressure:J_heart_outlet:external_outlet","21601":"pressure:J_heart_outlet:external_outlet","21602":"pressure:J_heart_outlet:external_outlet","21603":"pressure:J_heart_outlet:external_outlet","21604":"pressure:J_heart_outlet:external_outlet","21605":"pressure:J_heart_outlet:external_outlet","21606":"pressure:J_heart_outlet:external_outlet","21607":"pressure:J_heart_outlet:external_outlet","21608":"pressure:J_heart_outlet:external_outlet","21609":"pressure:J_heart_outlet:external_outlet","21610":"pressure:J_heart_outlet:external_outlet","21611":"pressure:J_heart_outlet:external_outlet","21612":"pressure:J_heart_outlet:external_outlet","21613":"pressure:J_heart_outlet:external_outlet","21614":"pressure:J_heart_outlet:external_outlet","21615":"pressure:J_heart_outlet:external_outlet","21616":"pressure:J_heart_outlet:external_outlet","21617":"pressure:J_heart_outlet:external_outlet","21618":"pressure:J_heart_outlet:external_outlet","21619":"pressure:J_heart_outlet:external_outlet","21620":"pressure:J_heart_outlet:external_outlet","21621":"pressure:J_heart_outlet:external_outlet","21622":"pressure:J_heart_outlet:external_outlet","21623":"pressure:J_heart_outlet:external_outlet","21624":"pressure:J_heart_outlet:external_outlet","21625":"pressure:J_heart_outlet:external_outlet","21626":"pressure:J_heart_outlet:external_outlet","21627":"pressure:J_heart_outlet:external_outlet","21628":"pressure:J_heart_outlet:external_outlet","21629":"pressure:J_heart_outlet:external_outlet","21630":"pressure:J_heart_outlet:external_outlet","21631":"pressure:J_heart_outlet:external_outlet","21632":"pressure:J_heart_outlet:external_outlet","21633":"pressure:J_heart_outlet:external_outlet","21634":"pressure:J_heart_outlet:external_outlet","21635":"pressure:J_heart_outlet:external_outlet","21636":"pressure:J_heart_outlet:external_outlet","21637":"pressure:J_heart_outlet:external_outlet","21638":"pressure:J_heart_outlet:external_outlet","21639":"pressure:J_heart_outlet:external_outlet","21640":"pressure:J_heart_outlet:external_outlet","21641":"pressure:J_heart_outlet:external_outlet","21642":"pressure:J_heart_outlet:external_outlet","21643":"pressure:J_heart_outlet:external_outlet","21644":"pressure:J_heart_outlet:external_outlet","21645":"pressure:J_heart_outlet:external_outlet","21646":"pressure:J_heart_outlet:external_outlet","21647":"pressure:J_heart_outlet:external_outlet","21648":"pressure:J_heart_outlet:external_outlet","21649":"pressure:J_heart_outlet:external_outlet","21650":"pressure:J_heart_outlet:external_outlet","21651":"pressure:J_heart_outlet:external_outlet","21652":"pressure:J_heart_outlet:external_outlet","21653":"pressure:J_heart_outlet:external_outlet","21654":"pressure:J_heart_outlet:external_outlet","21655":"pressure:J_heart_outlet:external_outlet","21656":"pressure:J_heart_outlet:external_outlet","21657":"pressure:J_heart_outlet:external_outlet","21658":"pressure:J_heart_outlet:external_outlet","21659":"pressure:J_heart_outlet:external_outlet","21660":"pressure:J_heart_outlet:external_outlet","21661":"pressure:J_heart_outlet:external_outlet","21662":"pressure:J_heart_outlet:external_outlet","21663":"pressure:J_heart_outlet:external_outlet","21664":"pressure:J_heart_outlet:external_outlet","21665":"pressure:J_heart_outlet:external_outlet","21666":"pressure:J_heart_outlet:external_outlet","21667":"pressure:J_heart_outlet:external_outlet","21668":"pressure:J_heart_outlet:external_outlet","21669":"pressure:J_heart_outlet:external_outlet","21670":"pressure:J_heart_outlet:external_outlet","21671":"pressure:J_heart_outlet:external_outlet","21672":"pressure:J_heart_outlet:external_outlet","21673":"pressure:J_heart_outlet:external_outlet","21674":"pressure:J_heart_outlet:external_outlet","21675":"pressure:J_heart_outlet:external_outlet","21676":"pressure:J_heart_outlet:external_outlet","21677":"pressure:J_heart_outlet:external_outlet","21678":"pressure:J_heart_outlet:external_outlet","21679":"pressure:J_heart_outlet:external_outlet","21680":"pressure:J_heart_outlet:external_outlet","21681":"pressure:J_heart_outlet:external_outlet","21682":"pressure:J_heart_outlet:external_outlet","21683":"pressure:J_heart_outlet:external_outlet","21684":"pressure:J_heart_outlet:external_outlet","21685":"pressure:J_heart_outlet:external_outlet","21686":"pressure:J_heart_outlet:external_outlet","21687":"pressure:J_heart_outlet:external_outlet","21688":"pressure:J_heart_outlet:external_outlet","21689":"pressure:J_heart_outlet:external_outlet","21690":"pressure:J_heart_outlet:external_outlet","21691":"pressure:J_heart_outlet:external_outlet","21692":"pressure:J_heart_outlet:external_outlet","21693":"pressure:J_heart_outlet:external_outlet","21694":"pressure:J_heart_outlet:external_outlet","21695":"pressure:J_heart_outlet:external_outlet","21696":"pressure:J_heart_outlet:external_outlet","21697":"pressure:J_heart_outlet:external_outlet","21698":"pressure:J_heart_outlet:external_outlet","21699":"pressure:J_heart_outlet:external_outlet","21700":"pressure:J_heart_outlet:external_outlet","21701":"pressure:J_heart_outlet:external_outlet","21702":"pressure:J_heart_outlet:external_outlet","21703":"pressure:J_heart_outlet:external_outlet","21704":"pressure:J_heart_outlet:external_outlet","21705":"pressure:J_heart_outlet:external_outlet","21706":"pressure:J_heart_outlet:external_outlet","21707":"pressure:J_heart_outlet:external_outlet","21708":"pressure:J_heart_outlet:external_outlet","21709":"pressure:J_heart_outlet:external_outlet","21710":"pressure:J_heart_outlet:external_outlet","21711":"pressure:J_heart_outlet:external_outlet","21712":"pressure:J_heart_outlet:external_outlet","21713":"pressure:J_heart_outlet:external_outlet","21714":"pressure:J_heart_outlet:external_outlet","21715":"pressure:J_heart_outlet:external_outlet","21716":"pressure:J_heart_outlet:external_outlet","21717":"pressure:J_heart_outlet:external_outlet","21718":"pressure:J_heart_outlet:external_outlet","21719":"pressure:J_heart_outlet:external_outlet","21720":"pressure:J_heart_outlet:external_outlet","21721":"pressure:J_heart_outlet:external_outlet","21722":"pressure:J_heart_outlet:external_outlet","21723":"pressure:J_heart_outlet:external_outlet","21724":"pressure:J_heart_outlet:external_outlet","21725":"pressure:J_heart_outlet:external_outlet","21726":"pressure:J_heart_outlet:external_outlet","21727":"pressure:J_heart_outlet:external_outlet","21728":"pressure:J_heart_outlet:external_outlet","21729":"pressure:J_heart_outlet:external_outlet","21730":"pressure:J_heart_outlet:external_outlet","21731":"pressure:J_heart_outlet:external_outlet","21732":"pressure:J_heart_outlet:external_outlet","21733":"pressure:J_heart_outlet:external_outlet","21734":"pressure:J_heart_outlet:external_outlet","21735":"pressure:J_heart_outlet:external_outlet","21736":"pressure:J_heart_outlet:external_outlet","21737":"pressure:J_heart_outlet:external_outlet","21738":"pressure:J_heart_outlet:external_outlet","21739":"pressure:J_heart_outlet:external_outlet","21740":"pressure:J_heart_outlet:external_outlet","21741":"pressure:J_heart_outlet:external_outlet","21742":"pressure:J_heart_outlet:external_outlet","21743":"pressure:J_heart_outlet:external_outlet","21744":"pressure:J_heart_outlet:external_outlet","21745":"pressure:J_heart_outlet:external_outlet","21746":"pressure:J_heart_outlet:external_outlet","21747":"pressure:J_heart_outlet:external_outlet","21748":"pressure:J_heart_outlet:external_outlet","21749":"pressure:J_heart_outlet:external_outlet","21750":"pressure:J_heart_outlet:external_outlet","21751":"pressure:J_heart_outlet:external_outlet","21752":"pressure:J_heart_outlet:external_outlet","21753":"pressure:J_heart_outlet:external_outlet","21754":"pressure:J_heart_outlet:external_outlet","21755":"pressure:J_heart_outlet:external_outlet","21756":"pressure:J_heart_outlet:external_outlet","21757":"pressure:J_heart_outlet:external_outlet","21758":"pressure:J_heart_outlet:external_outlet","21759":"pressure:J_heart_outlet:external_outlet","21760":"pressure:J_heart_outlet:external_outlet","21761":"pressure:J_heart_outlet:external_outlet","21762":"pressure:J_heart_outlet:external_outlet","21763":"pressure:J_heart_outlet:external_outlet","21764":"pressure:J_heart_outlet:external_outlet","21765":"pressure:J_heart_outlet:external_outlet","21766":"pressure:J_heart_outlet:external_outlet","21767":"pressure:J_heart_outlet:external_outlet","21768":"pressure:J_heart_outlet:external_outlet","21769":"pressure:J_heart_outlet:external_outlet","21770":"pressure:J_heart_outlet:external_outlet","21771":"pressure:J_heart_outlet:external_outlet","21772":"pressure:J_heart_outlet:external_outlet","21773":"pressure:J_heart_outlet:external_outlet","21774":"pressure:J_heart_outlet:external_outlet","21775":"pressure:J_heart_outlet:external_outlet","21776":"pressure:J_heart_outlet:external_outlet","21777":"pressure:J_heart_outlet:external_outlet","21778":"pressure:J_heart_outlet:external_outlet","21779":"pressure:J_heart_outlet:external_outlet","21780":"pressure:J_heart_outlet:external_outlet","21781":"pressure:J_heart_outlet:external_outlet","21782":"pressure:J_heart_outlet:external_outlet","21783":"pressure:J_heart_outlet:external_outlet","21784":"pressure:J_heart_outlet:external_outlet","21785":"pressure:J_heart_outlet:external_outlet","21786":"pressure:J_heart_outlet:external_outlet","21787":"pressure:J_heart_outlet:external_outlet","21788":"pressure:J_heart_outlet:external_outlet","21789":"pressure:J_heart_outlet:external_outlet","21790":"pressure:J_heart_outlet:external_outlet","21791":"pressure:J_heart_outlet:external_outlet","21792":"pressure:J_heart_outlet:external_outlet","21793":"pressure:J_heart_outlet:external_outlet","21794":"pressure:J_heart_outlet:external_outlet","21795":"pressure:J_heart_outlet:external_outlet","21796":"pressure:J_heart_outlet:external_outlet","21797":"pressure:J_heart_outlet:external_outlet","21798":"pressure:J_heart_outlet:external_outlet","21799":"pressure:J_heart_outlet:external_outlet","21800":"pressure:J_heart_outlet:external_outlet","21801":"pressure:J_heart_outlet:external_outlet","21802":"pressure:J_heart_outlet:external_outlet","21803":"pressure:J_heart_outlet:external_outlet","21804":"pressure:J_heart_outlet:external_outlet","21805":"pressure:J_heart_outlet:external_outlet","21806":"pressure:J_heart_outlet:external_outlet","21807":"pressure:J_heart_outlet:external_outlet","21808":"pressure:J_heart_outlet:external_outlet","21809":"pressure:J_heart_outlet:external_outlet","21810":"pressure:J_heart_outlet:external_outlet","21811":"pressure:J_heart_outlet:external_outlet","21812":"pressure:J_heart_outlet:external_outlet","21813":"pressure:J_heart_outlet:external_outlet","21814":"pressure:J_heart_outlet:external_outlet","21815":"pressure:J_heart_outlet:external_outlet","21816":"pressure:J_heart_outlet:external_outlet","21817":"pressure:J_heart_outlet:external_outlet","21818":"pressure:J_heart_outlet:external_outlet","21819":"pressure:J_heart_outlet:external_outlet","21820":"pressure:J_heart_outlet:external_outlet","21821":"pressure:J_heart_outlet:external_outlet","21822":"pressure:J_heart_outlet:external_outlet","21823":"pressure:J_heart_outlet:external_outlet","21824":"pressure:J_heart_outlet:external_outlet","21825":"pressure:J_heart_outlet:external_outlet","21826":"pressure:J_heart_outlet:external_outlet","21827":"pressure:J_heart_outlet:external_outlet","21828":"pressure:J_heart_outlet:external_outlet","21829":"pressure:J_heart_outlet:external_outlet","21830":"pressure:J_heart_outlet:external_outlet","21831":"pressure:J_heart_outlet:external_outlet","21832":"pressure:J_heart_outlet:external_outlet","21833":"pressure:J_heart_outlet:external_outlet","21834":"pressure:J_heart_outlet:external_outlet","21835":"pressure:J_heart_outlet:external_outlet","21836":"pressure:J_heart_outlet:external_outlet","21837":"pressure:J_heart_outlet:external_outlet","21838":"pressure:J_heart_outlet:external_outlet","21839":"pressure:J_heart_outlet:external_outlet","21840":"pressure:J_heart_outlet:external_outlet","21841":"pressure:J_heart_outlet:external_outlet","21842":"pressure:J_heart_outlet:external_outlet","21843":"pressure:J_heart_outlet:external_outlet","21844":"pressure:J_heart_outlet:external_outlet","21845":"pressure:J_heart_outlet:external_outlet","21846":"pressure:J_heart_outlet:external_outlet","21847":"pressure:J_heart_outlet:external_outlet","21848":"pressure:J_heart_outlet:external_outlet","21849":"pressure:J_heart_outlet:external_outlet","21850":"pressure:J_heart_outlet:external_outlet","21851":"pressure:J_heart_outlet:external_outlet","21852":"pressure:J_heart_outlet:external_outlet","21853":"pressure:J_heart_outlet:external_outlet","21854":"pressure:J_heart_outlet:external_outlet","21855":"pressure:J_heart_outlet:external_outlet","21856":"pressure:J_heart_outlet:external_outlet","21857":"pressure:J_heart_outlet:external_outlet","21858":"pressure:J_heart_outlet:external_outlet","21859":"pressure:J_heart_outlet:external_outlet","21860":"pressure:J_heart_outlet:external_outlet","21861":"pressure:J_heart_outlet:external_outlet","21862":"pressure:J_heart_outlet:external_outlet","21863":"pressure:J_heart_outlet:external_outlet","21864":"pressure:J_heart_outlet:external_outlet","21865":"pressure:J_heart_outlet:external_outlet","21866":"pressure:J_heart_outlet:external_outlet","21867":"pressure:J_heart_outlet:external_outlet","21868":"pressure:J_heart_outlet:external_outlet","21869":"pressure:J_heart_outlet:external_outlet","21870":"pressure:J_heart_outlet:external_outlet","21871":"pressure:J_heart_outlet:external_outlet","21872":"pressure:J_heart_outlet:external_outlet","21873":"pressure:J_heart_outlet:external_outlet","21874":"pressure:J_heart_outlet:external_outlet","21875":"pressure:J_heart_outlet:external_outlet","21876":"pressure:J_heart_outlet:external_outlet","21877":"pressure:J_heart_outlet:external_outlet","21878":"pressure:J_heart_outlet:external_outlet","21879":"pressure:J_heart_outlet:external_outlet","21880":"pressure:J_heart_outlet:external_outlet","21881":"pressure:J_heart_outlet:external_outlet","21882":"pressure:J_heart_outlet:external_outlet","21883":"pressure:J_heart_outlet:external_outlet","21884":"pressure:J_heart_outlet:external_outlet","21885":"pressure:J_heart_outlet:external_outlet","21886":"pressure:J_heart_outlet:external_outlet","21887":"pressure:J_heart_outlet:external_outlet","21888":"pressure:J_heart_outlet:external_outlet","21889":"pressure:J_heart_outlet:external_outlet","21890":"pressure:J_heart_outlet:external_outlet","21891":"pressure:J_heart_outlet:external_outlet","21892":"pressure:J_heart_outlet:external_outlet","21893":"pressure:J_heart_outlet:external_outlet","21894":"pressure:J_heart_outlet:external_outlet","21895":"pressure:J_heart_outlet:external_outlet","21896":"pressure:J_heart_outlet:external_outlet","21897":"pressure:J_heart_outlet:external_outlet","21898":"pressure:J_heart_outlet:external_outlet","21899":"pressure:J_heart_outlet:external_outlet","21900":"pressure:J_heart_outlet:external_outlet","21901":"pressure:J_heart_outlet:external_outlet","21902":"pressure:J_heart_outlet:external_outlet","21903":"pressure:J_heart_outlet:external_outlet","21904":"pressure:J_heart_outlet:external_outlet","21905":"pressure:J_heart_outlet:external_outlet","21906":"pressure:J_heart_outlet:external_outlet","21907":"pressure:J_heart_outlet:external_outlet","21908":"pressure:J_heart_outlet:external_outlet","21909":"pressure:J_heart_outlet:external_outlet","21910":"pressure:J_heart_outlet:external_outlet","21911":"pressure:J_heart_outlet:external_outlet","21912":"pressure:J_heart_outlet:external_outlet","21913":"pressure:J_heart_outlet:external_outlet","21914":"pressure:J_heart_outlet:external_outlet","21915":"pressure:J_heart_outlet:external_outlet","21916":"pressure:J_heart_outlet:external_outlet","21917":"pressure:J_heart_outlet:external_outlet","21918":"pressure:J_heart_outlet:external_outlet","21919":"pressure:J_heart_outlet:external_outlet","21920":"pressure:J_heart_outlet:external_outlet","21921":"pressure:J_heart_outlet:external_outlet","21922":"pressure:J_heart_outlet:external_outlet","21923":"pressure:J_heart_outlet:external_outlet","21924":"pressure:J_heart_outlet:external_outlet","21925":"pressure:J_heart_outlet:external_outlet","21926":"pressure:J_heart_outlet:external_outlet","21927":"pressure:J_heart_outlet:external_outlet","21928":"pressure:J_heart_outlet:external_outlet","21929":"pressure:J_heart_outlet:external_outlet","21930":"pressure:J_heart_outlet:external_outlet","21931":"pressure:J_heart_outlet:external_outlet","21932":"pressure:J_heart_outlet:external_outlet","21933":"pressure:J_heart_outlet:external_outlet","21934":"pressure:J_heart_outlet:external_outlet","21935":"pressure:J_heart_outlet:external_outlet","21936":"pressure:J_heart_outlet:external_outlet","21937":"pressure:J_heart_outlet:external_outlet","21938":"pressure:J_heart_outlet:external_outlet","21939":"pressure:J_heart_outlet:external_outlet","21940":"pressure:J_heart_outlet:external_outlet","21941":"pressure:J_heart_outlet:external_outlet","21942":"pressure:J_heart_outlet:external_outlet","21943":"pressure:J_heart_outlet:external_outlet","21944":"pressure:J_heart_outlet:external_outlet","21945":"pressure:J_heart_outlet:external_outlet","21946":"pressure:J_heart_outlet:external_outlet","21947":"pressure:J_heart_outlet:external_outlet","21948":"pressure:J_heart_outlet:external_outlet","21949":"pressure:J_heart_outlet:external_outlet","21950":"pressure:J_heart_outlet:external_outlet","21951":"pressure:J_heart_outlet:external_outlet","21952":"pressure:J_heart_outlet:external_outlet","21953":"pressure:J_heart_outlet:external_outlet","21954":"pressure:J_heart_outlet:external_outlet","21955":"pressure:J_heart_outlet:external_outlet","21956":"pressure:J_heart_outlet:external_outlet","21957":"pressure:J_heart_outlet:external_outlet","21958":"pressure:J_heart_outlet:external_outlet","21959":"pressure:J_heart_outlet:external_outlet","21960":"pressure:J_heart_outlet:external_outlet","21961":"pressure:J_heart_outlet:external_outlet","21962":"pressure:J_heart_outlet:external_outlet","21963":"pressure:J_heart_outlet:external_outlet","21964":"pressure:J_heart_outlet:external_outlet","21965":"pressure:J_heart_outlet:external_outlet","21966":"pressure:J_heart_outlet:external_outlet","21967":"pressure:J_heart_outlet:external_outlet","21968":"pressure:J_heart_outlet:external_outlet","21969":"pressure:J_heart_outlet:external_outlet","21970":"pressure:J_heart_outlet:external_outlet","21971":"pressure:J_heart_outlet:external_outlet","21972":"pressure:J_heart_outlet:external_outlet","21973":"pressure:J_heart_outlet:external_outlet","21974":"pressure:J_heart_outlet:external_outlet","21975":"pressure:J_heart_outlet:external_outlet","21976":"pressure:J_heart_outlet:external_outlet","21977":"pressure:J_heart_outlet:external_outlet","21978":"pressure:J_heart_outlet:external_outlet","21979":"pressure:J_heart_outlet:external_outlet","21980":"pressure:J_heart_outlet:external_outlet","21981":"pressure:J_heart_outlet:external_outlet","21982":"pressure:J_heart_outlet:external_outlet","21983":"pressure:J_heart_outlet:external_outlet","21984":"pressure:J_heart_outlet:external_outlet","21985":"pressure:J_heart_outlet:external_outlet","21986":"pressure:J_heart_outlet:external_outlet","21987":"pressure:J_heart_outlet:external_outlet","21988":"pressure:J_heart_outlet:external_outlet","21989":"pressure:J_heart_outlet:external_outlet","21990":"pressure:J_heart_outlet:external_outlet","21991":"pressure:J_heart_outlet:external_outlet","21992":"pressure:J_heart_outlet:external_outlet","21993":"pressure:J_heart_outlet:external_outlet","21994":"pressure:J_heart_outlet:external_outlet","21995":"pressure:J_heart_outlet:external_outlet","21996":"pressure:J_heart_outlet:external_outlet","21997":"pressure:J_heart_outlet:external_outlet","21998":"pressure:J_heart_outlet:external_outlet","21999":"pressure:J_heart_outlet:external_outlet","22000":"volume_im:LCA","22001":"volume_im:LCA","22002":"volume_im:LCA","22003":"volume_im:LCA","22004":"volume_im:LCA","22005":"volume_im:LCA","22006":"volume_im:LCA","22007":"volume_im:LCA","22008":"volume_im:LCA","22009":"volume_im:LCA","22010":"volume_im:LCA","22011":"volume_im:LCA","22012":"volume_im:LCA","22013":"volume_im:LCA","22014":"volume_im:LCA","22015":"volume_im:LCA","22016":"volume_im:LCA","22017":"volume_im:LCA","22018":"volume_im:LCA","22019":"volume_im:LCA","22020":"volume_im:LCA","22021":"volume_im:LCA","22022":"volume_im:LCA","22023":"volume_im:LCA","22024":"volume_im:LCA","22025":"volume_im:LCA","22026":"volume_im:LCA","22027":"volume_im:LCA","22028":"volume_im:LCA","22029":"volume_im:LCA","22030":"volume_im:LCA","22031":"volume_im:LCA","22032":"volume_im:LCA","22033":"volume_im:LCA","22034":"volume_im:LCA","22035":"volume_im:LCA","22036":"volume_im:LCA","22037":"volume_im:LCA","22038":"volume_im:LCA","22039":"volume_im:LCA","22040":"volume_im:LCA","22041":"volume_im:LCA","22042":"volume_im:LCA","22043":"volume_im:LCA","22044":"volume_im:LCA","22045":"volume_im:LCA","22046":"volume_im:LCA","22047":"volume_im:LCA","22048":"volume_im:LCA","22049":"volume_im:LCA","22050":"volume_im:LCA","22051":"volume_im:LCA","22052":"volume_im:LCA","22053":"volume_im:LCA","22054":"volume_im:LCA","22055":"volume_im:LCA","22056":"volume_im:LCA","22057":"volume_im:LCA","22058":"volume_im:LCA","22059":"volume_im:LCA","22060":"volume_im:LCA","22061":"volume_im:LCA","22062":"volume_im:LCA","22063":"volume_im:LCA","22064":"volume_im:LCA","22065":"volume_im:LCA","22066":"volume_im:LCA","22067":"volume_im:LCA","22068":"volume_im:LCA","22069":"volume_im:LCA","22070":"volume_im:LCA","22071":"volume_im:LCA","22072":"volume_im:LCA","22073":"volume_im:LCA","22074":"volume_im:LCA","22075":"volume_im:LCA","22076":"volume_im:LCA","22077":"volume_im:LCA","22078":"volume_im:LCA","22079":"volume_im:LCA","22080":"volume_im:LCA","22081":"volume_im:LCA","22082":"volume_im:LCA","22083":"volume_im:LCA","22084":"volume_im:LCA","22085":"volume_im:LCA","22086":"volume_im:LCA","22087":"volume_im:LCA","22088":"volume_im:LCA","22089":"volume_im:LCA","22090":"volume_im:LCA","22091":"volume_im:LCA","22092":"volume_im:LCA","22093":"volume_im:LCA","22094":"volume_im:LCA","22095":"volume_im:LCA","22096":"volume_im:LCA","22097":"volume_im:LCA","22098":"volume_im:LCA","22099":"volume_im:LCA","22100":"volume_im:LCA","22101":"volume_im:LCA","22102":"volume_im:LCA","22103":"volume_im:LCA","22104":"volume_im:LCA","22105":"volume_im:LCA","22106":"volume_im:LCA","22107":"volume_im:LCA","22108":"volume_im:LCA","22109":"volume_im:LCA","22110":"volume_im:LCA","22111":"volume_im:LCA","22112":"volume_im:LCA","22113":"volume_im:LCA","22114":"volume_im:LCA","22115":"volume_im:LCA","22116":"volume_im:LCA","22117":"volume_im:LCA","22118":"volume_im:LCA","22119":"volume_im:LCA","22120":"volume_im:LCA","22121":"volume_im:LCA","22122":"volume_im:LCA","22123":"volume_im:LCA","22124":"volume_im:LCA","22125":"volume_im:LCA","22126":"volume_im:LCA","22127":"volume_im:LCA","22128":"volume_im:LCA","22129":"volume_im:LCA","22130":"volume_im:LCA","22131":"volume_im:LCA","22132":"volume_im:LCA","22133":"volume_im:LCA","22134":"volume_im:LCA","22135":"volume_im:LCA","22136":"volume_im:LCA","22137":"volume_im:LCA","22138":"volume_im:LCA","22139":"volume_im:LCA","22140":"volume_im:LCA","22141":"volume_im:LCA","22142":"volume_im:LCA","22143":"volume_im:LCA","22144":"volume_im:LCA","22145":"volume_im:LCA","22146":"volume_im:LCA","22147":"volume_im:LCA","22148":"volume_im:LCA","22149":"volume_im:LCA","22150":"volume_im:LCA","22151":"volume_im:LCA","22152":"volume_im:LCA","22153":"volume_im:LCA","22154":"volume_im:LCA","22155":"volume_im:LCA","22156":"volume_im:LCA","22157":"volume_im:LCA","22158":"volume_im:LCA","22159":"volume_im:LCA","22160":"volume_im:LCA","22161":"volume_im:LCA","22162":"volume_im:LCA","22163":"volume_im:LCA","22164":"volume_im:LCA","22165":"volume_im:LCA","22166":"volume_im:LCA","22167":"volume_im:LCA","22168":"volume_im:LCA","22169":"volume_im:LCA","22170":"volume_im:LCA","22171":"volume_im:LCA","22172":"volume_im:LCA","22173":"volume_im:LCA","22174":"volume_im:LCA","22175":"volume_im:LCA","22176":"volume_im:LCA","22177":"volume_im:LCA","22178":"volume_im:LCA","22179":"volume_im:LCA","22180":"volume_im:LCA","22181":"volume_im:LCA","22182":"volume_im:LCA","22183":"volume_im:LCA","22184":"volume_im:LCA","22185":"volume_im:LCA","22186":"volume_im:LCA","22187":"volume_im:LCA","22188":"volume_im:LCA","22189":"volume_im:LCA","22190":"volume_im:LCA","22191":"volume_im:LCA","22192":"volume_im:LCA","22193":"volume_im:LCA","22194":"volume_im:LCA","22195":"volume_im:LCA","22196":"volume_im:LCA","22197":"volume_im:LCA","22198":"volume_im:LCA","22199":"volume_im:LCA","22200":"volume_im:LCA","22201":"volume_im:LCA","22202":"volume_im:LCA","22203":"volume_im:LCA","22204":"volume_im:LCA","22205":"volume_im:LCA","22206":"volume_im:LCA","22207":"volume_im:LCA","22208":"volume_im:LCA","22209":"volume_im:LCA","22210":"volume_im:LCA","22211":"volume_im:LCA","22212":"volume_im:LCA","22213":"volume_im:LCA","22214":"volume_im:LCA","22215":"volume_im:LCA","22216":"volume_im:LCA","22217":"volume_im:LCA","22218":"volume_im:LCA","22219":"volume_im:LCA","22220":"volume_im:LCA","22221":"volume_im:LCA","22222":"volume_im:LCA","22223":"volume_im:LCA","22224":"volume_im:LCA","22225":"volume_im:LCA","22226":"volume_im:LCA","22227":"volume_im:LCA","22228":"volume_im:LCA","22229":"volume_im:LCA","22230":"volume_im:LCA","22231":"volume_im:LCA","22232":"volume_im:LCA","22233":"volume_im:LCA","22234":"volume_im:LCA","22235":"volume_im:LCA","22236":"volume_im:LCA","22237":"volume_im:LCA","22238":"volume_im:LCA","22239":"volume_im:LCA","22240":"volume_im:LCA","22241":"volume_im:LCA","22242":"volume_im:LCA","22243":"volume_im:LCA","22244":"volume_im:LCA","22245":"volume_im:LCA","22246":"volume_im:LCA","22247":"volume_im:LCA","22248":"volume_im:LCA","22249":"volume_im:LCA","22250":"volume_im:LCA","22251":"volume_im:LCA","22252":"volume_im:LCA","22253":"volume_im:LCA","22254":"volume_im:LCA","22255":"volume_im:LCA","22256":"volume_im:LCA","22257":"volume_im:LCA","22258":"volume_im:LCA","22259":"volume_im:LCA","22260":"volume_im:LCA","22261":"volume_im:LCA","22262":"volume_im:LCA","22263":"volume_im:LCA","22264":"volume_im:LCA","22265":"volume_im:LCA","22266":"volume_im:LCA","22267":"volume_im:LCA","22268":"volume_im:LCA","22269":"volume_im:LCA","22270":"volume_im:LCA","22271":"volume_im:LCA","22272":"volume_im:LCA","22273":"volume_im:LCA","22274":"volume_im:LCA","22275":"volume_im:LCA","22276":"volume_im:LCA","22277":"volume_im:LCA","22278":"volume_im:LCA","22279":"volume_im:LCA","22280":"volume_im:LCA","22281":"volume_im:LCA","22282":"volume_im:LCA","22283":"volume_im:LCA","22284":"volume_im:LCA","22285":"volume_im:LCA","22286":"volume_im:LCA","22287":"volume_im:LCA","22288":"volume_im:LCA","22289":"volume_im:LCA","22290":"volume_im:LCA","22291":"volume_im:LCA","22292":"volume_im:LCA","22293":"volume_im:LCA","22294":"volume_im:LCA","22295":"volume_im:LCA","22296":"volume_im:LCA","22297":"volume_im:LCA","22298":"volume_im:LCA","22299":"volume_im:LCA","22300":"volume_im:LCA","22301":"volume_im:LCA","22302":"volume_im:LCA","22303":"volume_im:LCA","22304":"volume_im:LCA","22305":"volume_im:LCA","22306":"volume_im:LCA","22307":"volume_im:LCA","22308":"volume_im:LCA","22309":"volume_im:LCA","22310":"volume_im:LCA","22311":"volume_im:LCA","22312":"volume_im:LCA","22313":"volume_im:LCA","22314":"volume_im:LCA","22315":"volume_im:LCA","22316":"volume_im:LCA","22317":"volume_im:LCA","22318":"volume_im:LCA","22319":"volume_im:LCA","22320":"volume_im:LCA","22321":"volume_im:LCA","22322":"volume_im:LCA","22323":"volume_im:LCA","22324":"volume_im:LCA","22325":"volume_im:LCA","22326":"volume_im:LCA","22327":"volume_im:LCA","22328":"volume_im:LCA","22329":"volume_im:LCA","22330":"volume_im:LCA","22331":"volume_im:LCA","22332":"volume_im:LCA","22333":"volume_im:LCA","22334":"volume_im:LCA","22335":"volume_im:LCA","22336":"volume_im:LCA","22337":"volume_im:LCA","22338":"volume_im:LCA","22339":"volume_im:LCA","22340":"volume_im:LCA","22341":"volume_im:LCA","22342":"volume_im:LCA","22343":"volume_im:LCA","22344":"volume_im:LCA","22345":"volume_im:LCA","22346":"volume_im:LCA","22347":"volume_im:LCA","22348":"volume_im:LCA","22349":"volume_im:LCA","22350":"volume_im:LCA","22351":"volume_im:LCA","22352":"volume_im:LCA","22353":"volume_im:LCA","22354":"volume_im:LCA","22355":"volume_im:LCA","22356":"volume_im:LCA","22357":"volume_im:LCA","22358":"volume_im:LCA","22359":"volume_im:LCA","22360":"volume_im:LCA","22361":"volume_im:LCA","22362":"volume_im:LCA","22363":"volume_im:LCA","22364":"volume_im:LCA","22365":"volume_im:LCA","22366":"volume_im:LCA","22367":"volume_im:LCA","22368":"volume_im:LCA","22369":"volume_im:LCA","22370":"volume_im:LCA","22371":"volume_im:LCA","22372":"volume_im:LCA","22373":"volume_im:LCA","22374":"volume_im:LCA","22375":"volume_im:LCA","22376":"volume_im:LCA","22377":"volume_im:LCA","22378":"volume_im:LCA","22379":"volume_im:LCA","22380":"volume_im:LCA","22381":"volume_im:LCA","22382":"volume_im:LCA","22383":"volume_im:LCA","22384":"volume_im:LCA","22385":"volume_im:LCA","22386":"volume_im:LCA","22387":"volume_im:LCA","22388":"volume_im:LCA","22389":"volume_im:LCA","22390":"volume_im:LCA","22391":"volume_im:LCA","22392":"volume_im:LCA","22393":"volume_im:LCA","22394":"volume_im:LCA","22395":"volume_im:LCA","22396":"volume_im:LCA","22397":"volume_im:LCA","22398":"volume_im:LCA","22399":"volume_im:LCA","22400":"volume_im:LCA","22401":"volume_im:LCA","22402":"volume_im:LCA","22403":"volume_im:LCA","22404":"volume_im:LCA","22405":"volume_im:LCA","22406":"volume_im:LCA","22407":"volume_im:LCA","22408":"volume_im:LCA","22409":"volume_im:LCA","22410":"volume_im:LCA","22411":"volume_im:LCA","22412":"volume_im:LCA","22413":"volume_im:LCA","22414":"volume_im:LCA","22415":"volume_im:LCA","22416":"volume_im:LCA","22417":"volume_im:LCA","22418":"volume_im:LCA","22419":"volume_im:LCA","22420":"volume_im:LCA","22421":"volume_im:LCA","22422":"volume_im:LCA","22423":"volume_im:LCA","22424":"volume_im:LCA","22425":"volume_im:LCA","22426":"volume_im:LCA","22427":"volume_im:LCA","22428":"volume_im:LCA","22429":"volume_im:LCA","22430":"volume_im:LCA","22431":"volume_im:LCA","22432":"volume_im:LCA","22433":"volume_im:LCA","22434":"volume_im:LCA","22435":"volume_im:LCA","22436":"volume_im:LCA","22437":"volume_im:LCA","22438":"volume_im:LCA","22439":"volume_im:LCA","22440":"volume_im:LCA","22441":"volume_im:LCA","22442":"volume_im:LCA","22443":"volume_im:LCA","22444":"volume_im:LCA","22445":"volume_im:LCA","22446":"volume_im:LCA","22447":"volume_im:LCA","22448":"volume_im:LCA","22449":"volume_im:LCA","22450":"volume_im:LCA","22451":"volume_im:LCA","22452":"volume_im:LCA","22453":"volume_im:LCA","22454":"volume_im:LCA","22455":"volume_im:LCA","22456":"volume_im:LCA","22457":"volume_im:LCA","22458":"volume_im:LCA","22459":"volume_im:LCA","22460":"volume_im:LCA","22461":"volume_im:LCA","22462":"volume_im:LCA","22463":"volume_im:LCA","22464":"volume_im:LCA","22465":"volume_im:LCA","22466":"volume_im:LCA","22467":"volume_im:LCA","22468":"volume_im:LCA","22469":"volume_im:LCA","22470":"volume_im:LCA","22471":"volume_im:LCA","22472":"volume_im:LCA","22473":"volume_im:LCA","22474":"volume_im:LCA","22475":"volume_im:LCA","22476":"volume_im:LCA","22477":"volume_im:LCA","22478":"volume_im:LCA","22479":"volume_im:LCA","22480":"volume_im:LCA","22481":"volume_im:LCA","22482":"volume_im:LCA","22483":"volume_im:LCA","22484":"volume_im:LCA","22485":"volume_im:LCA","22486":"volume_im:LCA","22487":"volume_im:LCA","22488":"volume_im:LCA","22489":"volume_im:LCA","22490":"volume_im:LCA","22491":"volume_im:LCA","22492":"volume_im:LCA","22493":"volume_im:LCA","22494":"volume_im:LCA","22495":"volume_im:LCA","22496":"volume_im:LCA","22497":"volume_im:LCA","22498":"volume_im:LCA","22499":"volume_im:LCA","22500":"volume_im:LCA","22501":"volume_im:LCA","22502":"volume_im:LCA","22503":"volume_im:LCA","22504":"volume_im:LCA","22505":"volume_im:LCA","22506":"volume_im:LCA","22507":"volume_im:LCA","22508":"volume_im:LCA","22509":"volume_im:LCA","22510":"volume_im:LCA","22511":"volume_im:LCA","22512":"volume_im:LCA","22513":"volume_im:LCA","22514":"volume_im:LCA","22515":"volume_im:LCA","22516":"volume_im:LCA","22517":"volume_im:LCA","22518":"volume_im:LCA","22519":"volume_im:LCA","22520":"volume_im:LCA","22521":"volume_im:LCA","22522":"volume_im:LCA","22523":"volume_im:LCA","22524":"volume_im:LCA","22525":"volume_im:LCA","22526":"volume_im:LCA","22527":"volume_im:LCA","22528":"volume_im:LCA","22529":"volume_im:LCA","22530":"volume_im:LCA","22531":"volume_im:LCA","22532":"volume_im:LCA","22533":"volume_im:LCA","22534":"volume_im:LCA","22535":"volume_im:LCA","22536":"volume_im:LCA","22537":"volume_im:LCA","22538":"volume_im:LCA","22539":"volume_im:LCA","22540":"volume_im:LCA","22541":"volume_im:LCA","22542":"volume_im:LCA","22543":"volume_im:LCA","22544":"volume_im:LCA","22545":"volume_im:LCA","22546":"volume_im:LCA","22547":"volume_im:LCA","22548":"volume_im:LCA","22549":"volume_im:LCA","22550":"volume_im:LCA","22551":"volume_im:LCA","22552":"volume_im:LCA","22553":"volume_im:LCA","22554":"volume_im:LCA","22555":"volume_im:LCA","22556":"volume_im:LCA","22557":"volume_im:LCA","22558":"volume_im:LCA","22559":"volume_im:LCA","22560":"volume_im:LCA","22561":"volume_im:LCA","22562":"volume_im:LCA","22563":"volume_im:LCA","22564":"volume_im:LCA","22565":"volume_im:LCA","22566":"volume_im:LCA","22567":"volume_im:LCA","22568":"volume_im:LCA","22569":"volume_im:LCA","22570":"volume_im:LCA","22571":"volume_im:LCA","22572":"volume_im:LCA","22573":"volume_im:LCA","22574":"volume_im:LCA","22575":"volume_im:LCA","22576":"volume_im:LCA","22577":"volume_im:LCA","22578":"volume_im:LCA","22579":"volume_im:LCA","22580":"volume_im:LCA","22581":"volume_im:LCA","22582":"volume_im:LCA","22583":"volume_im:LCA","22584":"volume_im:LCA","22585":"volume_im:LCA","22586":"volume_im:LCA","22587":"volume_im:LCA","22588":"volume_im:LCA","22589":"volume_im:LCA","22590":"volume_im:LCA","22591":"volume_im:LCA","22592":"volume_im:LCA","22593":"volume_im:LCA","22594":"volume_im:LCA","22595":"volume_im:LCA","22596":"volume_im:LCA","22597":"volume_im:LCA","22598":"volume_im:LCA","22599":"volume_im:LCA","22600":"volume_im:LCA","22601":"volume_im:LCA","22602":"volume_im:LCA","22603":"volume_im:LCA","22604":"volume_im:LCA","22605":"volume_im:LCA","22606":"volume_im:LCA","22607":"volume_im:LCA","22608":"volume_im:LCA","22609":"volume_im:LCA","22610":"volume_im:LCA","22611":"volume_im:LCA","22612":"volume_im:LCA","22613":"volume_im:LCA","22614":"volume_im:LCA","22615":"volume_im:LCA","22616":"volume_im:LCA","22617":"volume_im:LCA","22618":"volume_im:LCA","22619":"volume_im:LCA","22620":"volume_im:LCA","22621":"volume_im:LCA","22622":"volume_im:LCA","22623":"volume_im:LCA","22624":"volume_im:LCA","22625":"volume_im:LCA","22626":"volume_im:LCA","22627":"volume_im:LCA","22628":"volume_im:LCA","22629":"volume_im:LCA","22630":"volume_im:LCA","22631":"volume_im:LCA","22632":"volume_im:LCA","22633":"volume_im:LCA","22634":"volume_im:LCA","22635":"volume_im:LCA","22636":"volume_im:LCA","22637":"volume_im:LCA","22638":"volume_im:LCA","22639":"volume_im:LCA","22640":"volume_im:LCA","22641":"volume_im:LCA","22642":"volume_im:LCA","22643":"volume_im:LCA","22644":"volume_im:LCA","22645":"volume_im:LCA","22646":"volume_im:LCA","22647":"volume_im:LCA","22648":"volume_im:LCA","22649":"volume_im:LCA","22650":"volume_im:LCA","22651":"volume_im:LCA","22652":"volume_im:LCA","22653":"volume_im:LCA","22654":"volume_im:LCA","22655":"volume_im:LCA","22656":"volume_im:LCA","22657":"volume_im:LCA","22658":"volume_im:LCA","22659":"volume_im:LCA","22660":"volume_im:LCA","22661":"volume_im:LCA","22662":"volume_im:LCA","22663":"volume_im:LCA","22664":"volume_im:LCA","22665":"volume_im:LCA","22666":"volume_im:LCA","22667":"volume_im:LCA","22668":"volume_im:LCA","22669":"volume_im:LCA","22670":"volume_im:LCA","22671":"volume_im:LCA","22672":"volume_im:LCA","22673":"volume_im:LCA","22674":"volume_im:LCA","22675":"volume_im:LCA","22676":"volume_im:LCA","22677":"volume_im:LCA","22678":"volume_im:LCA","22679":"volume_im:LCA","22680":"volume_im:LCA","22681":"volume_im:LCA","22682":"volume_im:LCA","22683":"volume_im:LCA","22684":"volume_im:LCA","22685":"volume_im:LCA","22686":"volume_im:LCA","22687":"volume_im:LCA","22688":"volume_im:LCA","22689":"volume_im:LCA","22690":"volume_im:LCA","22691":"volume_im:LCA","22692":"volume_im:LCA","22693":"volume_im:LCA","22694":"volume_im:LCA","22695":"volume_im:LCA","22696":"volume_im:LCA","22697":"volume_im:LCA","22698":"volume_im:LCA","22699":"volume_im:LCA","22700":"volume_im:LCA","22701":"volume_im:LCA","22702":"volume_im:LCA","22703":"volume_im:LCA","22704":"volume_im:LCA","22705":"volume_im:LCA","22706":"volume_im:LCA","22707":"volume_im:LCA","22708":"volume_im:LCA","22709":"volume_im:LCA","22710":"volume_im:LCA","22711":"volume_im:LCA","22712":"volume_im:LCA","22713":"volume_im:LCA","22714":"volume_im:LCA","22715":"volume_im:LCA","22716":"volume_im:LCA","22717":"volume_im:LCA","22718":"volume_im:LCA","22719":"volume_im:LCA","22720":"volume_im:LCA","22721":"volume_im:LCA","22722":"volume_im:LCA","22723":"volume_im:LCA","22724":"volume_im:LCA","22725":"volume_im:LCA","22726":"volume_im:LCA","22727":"volume_im:LCA","22728":"volume_im:LCA","22729":"volume_im:LCA","22730":"volume_im:LCA","22731":"volume_im:LCA","22732":"volume_im:LCA","22733":"volume_im:LCA","22734":"volume_im:LCA","22735":"volume_im:LCA","22736":"volume_im:LCA","22737":"volume_im:LCA","22738":"volume_im:LCA","22739":"volume_im:LCA","22740":"volume_im:LCA","22741":"volume_im:LCA","22742":"volume_im:LCA","22743":"volume_im:LCA","22744":"volume_im:LCA","22745":"volume_im:LCA","22746":"volume_im:LCA","22747":"volume_im:LCA","22748":"volume_im:LCA","22749":"volume_im:LCA","22750":"volume_im:LCA","22751":"volume_im:LCA","22752":"volume_im:LCA","22753":"volume_im:LCA","22754":"volume_im:LCA","22755":"volume_im:LCA","22756":"volume_im:LCA","22757":"volume_im:LCA","22758":"volume_im:LCA","22759":"volume_im:LCA","22760":"volume_im:LCA","22761":"volume_im:LCA","22762":"volume_im:LCA","22763":"volume_im:LCA","22764":"volume_im:LCA","22765":"volume_im:LCA","22766":"volume_im:LCA","22767":"volume_im:LCA","22768":"volume_im:LCA","22769":"volume_im:LCA","22770":"volume_im:LCA","22771":"volume_im:LCA","22772":"volume_im:LCA","22773":"volume_im:LCA","22774":"volume_im:LCA","22775":"volume_im:LCA","22776":"volume_im:LCA","22777":"volume_im:LCA","22778":"volume_im:LCA","22779":"volume_im:LCA","22780":"volume_im:LCA","22781":"volume_im:LCA","22782":"volume_im:LCA","22783":"volume_im:LCA","22784":"volume_im:LCA","22785":"volume_im:LCA","22786":"volume_im:LCA","22787":"volume_im:LCA","22788":"volume_im:LCA","22789":"volume_im:LCA","22790":"volume_im:LCA","22791":"volume_im:LCA","22792":"volume_im:LCA","22793":"volume_im:LCA","22794":"volume_im:LCA","22795":"volume_im:LCA","22796":"volume_im:LCA","22797":"volume_im:LCA","22798":"volume_im:LCA","22799":"volume_im:LCA","22800":"volume_im:LCA","22801":"volume_im:LCA","22802":"volume_im:LCA","22803":"volume_im:LCA","22804":"volume_im:LCA","22805":"volume_im:LCA","22806":"volume_im:LCA","22807":"volume_im:LCA","22808":"volume_im:LCA","22809":"volume_im:LCA","22810":"volume_im:LCA","22811":"volume_im:LCA","22812":"volume_im:LCA","22813":"volume_im:LCA","22814":"volume_im:LCA","22815":"volume_im:LCA","22816":"volume_im:LCA","22817":"volume_im:LCA","22818":"volume_im:LCA","22819":"volume_im:LCA","22820":"volume_im:LCA","22821":"volume_im:LCA","22822":"volume_im:LCA","22823":"volume_im:LCA","22824":"volume_im:LCA","22825":"volume_im:LCA","22826":"volume_im:LCA","22827":"volume_im:LCA","22828":"volume_im:LCA","22829":"volume_im:LCA","22830":"volume_im:LCA","22831":"volume_im:LCA","22832":"volume_im:LCA","22833":"volume_im:LCA","22834":"volume_im:LCA","22835":"volume_im:LCA","22836":"volume_im:LCA","22837":"volume_im:LCA","22838":"volume_im:LCA","22839":"volume_im:LCA","22840":"volume_im:LCA","22841":"volume_im:LCA","22842":"volume_im:LCA","22843":"volume_im:LCA","22844":"volume_im:LCA","22845":"volume_im:LCA","22846":"volume_im:LCA","22847":"volume_im:LCA","22848":"volume_im:LCA","22849":"volume_im:LCA","22850":"volume_im:LCA","22851":"volume_im:LCA","22852":"volume_im:LCA","22853":"volume_im:LCA","22854":"volume_im:LCA","22855":"volume_im:LCA","22856":"volume_im:LCA","22857":"volume_im:LCA","22858":"volume_im:LCA","22859":"volume_im:LCA","22860":"volume_im:LCA","22861":"volume_im:LCA","22862":"volume_im:LCA","22863":"volume_im:LCA","22864":"volume_im:LCA","22865":"volume_im:LCA","22866":"volume_im:LCA","22867":"volume_im:LCA","22868":"volume_im:LCA","22869":"volume_im:LCA","22870":"volume_im:LCA","22871":"volume_im:LCA","22872":"volume_im:LCA","22873":"volume_im:LCA","22874":"volume_im:LCA","22875":"volume_im:LCA","22876":"volume_im:LCA","22877":"volume_im:LCA","22878":"volume_im:LCA","22879":"volume_im:LCA","22880":"volume_im:LCA","22881":"volume_im:LCA","22882":"volume_im:LCA","22883":"volume_im:LCA","22884":"volume_im:LCA","22885":"volume_im:LCA","22886":"volume_im:LCA","22887":"volume_im:LCA","22888":"volume_im:LCA","22889":"volume_im:LCA","22890":"volume_im:LCA","22891":"volume_im:LCA","22892":"volume_im:LCA","22893":"volume_im:LCA","22894":"volume_im:LCA","22895":"volume_im:LCA","22896":"volume_im:LCA","22897":"volume_im:LCA","22898":"volume_im:LCA","22899":"volume_im:LCA","22900":"volume_im:LCA","22901":"volume_im:LCA","22902":"volume_im:LCA","22903":"volume_im:LCA","22904":"volume_im:LCA","22905":"volume_im:LCA","22906":"volume_im:LCA","22907":"volume_im:LCA","22908":"volume_im:LCA","22909":"volume_im:LCA","22910":"volume_im:LCA","22911":"volume_im:LCA","22912":"volume_im:LCA","22913":"volume_im:LCA","22914":"volume_im:LCA","22915":"volume_im:LCA","22916":"volume_im:LCA","22917":"volume_im:LCA","22918":"volume_im:LCA","22919":"volume_im:LCA","22920":"volume_im:LCA","22921":"volume_im:LCA","22922":"volume_im:LCA","22923":"volume_im:LCA","22924":"volume_im:LCA","22925":"volume_im:LCA","22926":"volume_im:LCA","22927":"volume_im:LCA","22928":"volume_im:LCA","22929":"volume_im:LCA","22930":"volume_im:LCA","22931":"volume_im:LCA","22932":"volume_im:LCA","22933":"volume_im:LCA","22934":"volume_im:LCA","22935":"volume_im:LCA","22936":"volume_im:LCA","22937":"volume_im:LCA","22938":"volume_im:LCA","22939":"volume_im:LCA","22940":"volume_im:LCA","22941":"volume_im:LCA","22942":"volume_im:LCA","22943":"volume_im:LCA","22944":"volume_im:LCA","22945":"volume_im:LCA","22946":"volume_im:LCA","22947":"volume_im:LCA","22948":"volume_im:LCA","22949":"volume_im:LCA","22950":"volume_im:LCA","22951":"volume_im:LCA","22952":"volume_im:LCA","22953":"volume_im:LCA","22954":"volume_im:LCA","22955":"volume_im:LCA","22956":"volume_im:LCA","22957":"volume_im:LCA","22958":"volume_im:LCA","22959":"volume_im:LCA","22960":"volume_im:LCA","22961":"volume_im:LCA","22962":"volume_im:LCA","22963":"volume_im:LCA","22964":"volume_im:LCA","22965":"volume_im:LCA","22966":"volume_im:LCA","22967":"volume_im:LCA","22968":"volume_im:LCA","22969":"volume_im:LCA","22970":"volume_im:LCA","22971":"volume_im:LCA","22972":"volume_im:LCA","22973":"volume_im:LCA","22974":"volume_im:LCA","22975":"volume_im:LCA","22976":"volume_im:LCA","22977":"volume_im:LCA","22978":"volume_im:LCA","22979":"volume_im:LCA","22980":"volume_im:LCA","22981":"volume_im:LCA","22982":"volume_im:LCA","22983":"volume_im:LCA","22984":"volume_im:LCA","22985":"volume_im:LCA","22986":"volume_im:LCA","22987":"volume_im:LCA","22988":"volume_im:LCA","22989":"volume_im:LCA","22990":"volume_im:LCA","22991":"volume_im:LCA","22992":"volume_im:LCA","22993":"volume_im:LCA","22994":"volume_im:LCA","22995":"volume_im:LCA","22996":"volume_im:LCA","22997":"volume_im:LCA","22998":"volume_im:LCA","22999":"volume_im:LCA","23000":"volume_im:RCA","23001":"volume_im:RCA","23002":"volume_im:RCA","23003":"volume_im:RCA","23004":"volume_im:RCA","23005":"volume_im:RCA","23006":"volume_im:RCA","23007":"volume_im:RCA","23008":"volume_im:RCA","23009":"volume_im:RCA","23010":"volume_im:RCA","23011":"volume_im:RCA","23012":"volume_im:RCA","23013":"volume_im:RCA","23014":"volume_im:RCA","23015":"volume_im:RCA","23016":"volume_im:RCA","23017":"volume_im:RCA","23018":"volume_im:RCA","23019":"volume_im:RCA","23020":"volume_im:RCA","23021":"volume_im:RCA","23022":"volume_im:RCA","23023":"volume_im:RCA","23024":"volume_im:RCA","23025":"volume_im:RCA","23026":"volume_im:RCA","23027":"volume_im:RCA","23028":"volume_im:RCA","23029":"volume_im:RCA","23030":"volume_im:RCA","23031":"volume_im:RCA","23032":"volume_im:RCA","23033":"volume_im:RCA","23034":"volume_im:RCA","23035":"volume_im:RCA","23036":"volume_im:RCA","23037":"volume_im:RCA","23038":"volume_im:RCA","23039":"volume_im:RCA","23040":"volume_im:RCA","23041":"volume_im:RCA","23042":"volume_im:RCA","23043":"volume_im:RCA","23044":"volume_im:RCA","23045":"volume_im:RCA","23046":"volume_im:RCA","23047":"volume_im:RCA","23048":"volume_im:RCA","23049":"volume_im:RCA","23050":"volume_im:RCA","23051":"volume_im:RCA","23052":"volume_im:RCA","23053":"volume_im:RCA","23054":"volume_im:RCA","23055":"volume_im:RCA","23056":"volume_im:RCA","23057":"volume_im:RCA","23058":"volume_im:RCA","23059":"volume_im:RCA","23060":"volume_im:RCA","23061":"volume_im:RCA","23062":"volume_im:RCA","23063":"volume_im:RCA","23064":"volume_im:RCA","23065":"volume_im:RCA","23066":"volume_im:RCA","23067":"volume_im:RCA","23068":"volume_im:RCA","23069":"volume_im:RCA","23070":"volume_im:RCA","23071":"volume_im:RCA","23072":"volume_im:RCA","23073":"volume_im:RCA","23074":"volume_im:RCA","23075":"volume_im:RCA","23076":"volume_im:RCA","23077":"volume_im:RCA","23078":"volume_im:RCA","23079":"volume_im:RCA","23080":"volume_im:RCA","23081":"volume_im:RCA","23082":"volume_im:RCA","23083":"volume_im:RCA","23084":"volume_im:RCA","23085":"volume_im:RCA","23086":"volume_im:RCA","23087":"volume_im:RCA","23088":"volume_im:RCA","23089":"volume_im:RCA","23090":"volume_im:RCA","23091":"volume_im:RCA","23092":"volume_im:RCA","23093":"volume_im:RCA","23094":"volume_im:RCA","23095":"volume_im:RCA","23096":"volume_im:RCA","23097":"volume_im:RCA","23098":"volume_im:RCA","23099":"volume_im:RCA","23100":"volume_im:RCA","23101":"volume_im:RCA","23102":"volume_im:RCA","23103":"volume_im:RCA","23104":"volume_im:RCA","23105":"volume_im:RCA","23106":"volume_im:RCA","23107":"volume_im:RCA","23108":"volume_im:RCA","23109":"volume_im:RCA","23110":"volume_im:RCA","23111":"volume_im:RCA","23112":"volume_im:RCA","23113":"volume_im:RCA","23114":"volume_im:RCA","23115":"volume_im:RCA","23116":"volume_im:RCA","23117":"volume_im:RCA","23118":"volume_im:RCA","23119":"volume_im:RCA","23120":"volume_im:RCA","23121":"volume_im:RCA","23122":"volume_im:RCA","23123":"volume_im:RCA","23124":"volume_im:RCA","23125":"volume_im:RCA","23126":"volume_im:RCA","23127":"volume_im:RCA","23128":"volume_im:RCA","23129":"volume_im:RCA","23130":"volume_im:RCA","23131":"volume_im:RCA","23132":"volume_im:RCA","23133":"volume_im:RCA","23134":"volume_im:RCA","23135":"volume_im:RCA","23136":"volume_im:RCA","23137":"volume_im:RCA","23138":"volume_im:RCA","23139":"volume_im:RCA","23140":"volume_im:RCA","23141":"volume_im:RCA","23142":"volume_im:RCA","23143":"volume_im:RCA","23144":"volume_im:RCA","23145":"volume_im:RCA","23146":"volume_im:RCA","23147":"volume_im:RCA","23148":"volume_im:RCA","23149":"volume_im:RCA","23150":"volume_im:RCA","23151":"volume_im:RCA","23152":"volume_im:RCA","23153":"volume_im:RCA","23154":"volume_im:RCA","23155":"volume_im:RCA","23156":"volume_im:RCA","23157":"volume_im:RCA","23158":"volume_im:RCA","23159":"volume_im:RCA","23160":"volume_im:RCA","23161":"volume_im:RCA","23162":"volume_im:RCA","23163":"volume_im:RCA","23164":"volume_im:RCA","23165":"volume_im:RCA","23166":"volume_im:RCA","23167":"volume_im:RCA","23168":"volume_im:RCA","23169":"volume_im:RCA","23170":"volume_im:RCA","23171":"volume_im:RCA","23172":"volume_im:RCA","23173":"volume_im:RCA","23174":"volume_im:RCA","23175":"volume_im:RCA","23176":"volume_im:RCA","23177":"volume_im:RCA","23178":"volume_im:RCA","23179":"volume_im:RCA","23180":"volume_im:RCA","23181":"volume_im:RCA","23182":"volume_im:RCA","23183":"volume_im:RCA","23184":"volume_im:RCA","23185":"volume_im:RCA","23186":"volume_im:RCA","23187":"volume_im:RCA","23188":"volume_im:RCA","23189":"volume_im:RCA","23190":"volume_im:RCA","23191":"volume_im:RCA","23192":"volume_im:RCA","23193":"volume_im:RCA","23194":"volume_im:RCA","23195":"volume_im:RCA","23196":"volume_im:RCA","23197":"volume_im:RCA","23198":"volume_im:RCA","23199":"volume_im:RCA","23200":"volume_im:RCA","23201":"volume_im:RCA","23202":"volume_im:RCA","23203":"volume_im:RCA","23204":"volume_im:RCA","23205":"volume_im:RCA","23206":"volume_im:RCA","23207":"volume_im:RCA","23208":"volume_im:RCA","23209":"volume_im:RCA","23210":"volume_im:RCA","23211":"volume_im:RCA","23212":"volume_im:RCA","23213":"volume_im:RCA","23214":"volume_im:RCA","23215":"volume_im:RCA","23216":"volume_im:RCA","23217":"volume_im:RCA","23218":"volume_im:RCA","23219":"volume_im:RCA","23220":"volume_im:RCA","23221":"volume_im:RCA","23222":"volume_im:RCA","23223":"volume_im:RCA","23224":"volume_im:RCA","23225":"volume_im:RCA","23226":"volume_im:RCA","23227":"volume_im:RCA","23228":"volume_im:RCA","23229":"volume_im:RCA","23230":"volume_im:RCA","23231":"volume_im:RCA","23232":"volume_im:RCA","23233":"volume_im:RCA","23234":"volume_im:RCA","23235":"volume_im:RCA","23236":"volume_im:RCA","23237":"volume_im:RCA","23238":"volume_im:RCA","23239":"volume_im:RCA","23240":"volume_im:RCA","23241":"volume_im:RCA","23242":"volume_im:RCA","23243":"volume_im:RCA","23244":"volume_im:RCA","23245":"volume_im:RCA","23246":"volume_im:RCA","23247":"volume_im:RCA","23248":"volume_im:RCA","23249":"volume_im:RCA","23250":"volume_im:RCA","23251":"volume_im:RCA","23252":"volume_im:RCA","23253":"volume_im:RCA","23254":"volume_im:RCA","23255":"volume_im:RCA","23256":"volume_im:RCA","23257":"volume_im:RCA","23258":"volume_im:RCA","23259":"volume_im:RCA","23260":"volume_im:RCA","23261":"volume_im:RCA","23262":"volume_im:RCA","23263":"volume_im:RCA","23264":"volume_im:RCA","23265":"volume_im:RCA","23266":"volume_im:RCA","23267":"volume_im:RCA","23268":"volume_im:RCA","23269":"volume_im:RCA","23270":"volume_im:RCA","23271":"volume_im:RCA","23272":"volume_im:RCA","23273":"volume_im:RCA","23274":"volume_im:RCA","23275":"volume_im:RCA","23276":"volume_im:RCA","23277":"volume_im:RCA","23278":"volume_im:RCA","23279":"volume_im:RCA","23280":"volume_im:RCA","23281":"volume_im:RCA","23282":"volume_im:RCA","23283":"volume_im:RCA","23284":"volume_im:RCA","23285":"volume_im:RCA","23286":"volume_im:RCA","23287":"volume_im:RCA","23288":"volume_im:RCA","23289":"volume_im:RCA","23290":"volume_im:RCA","23291":"volume_im:RCA","23292":"volume_im:RCA","23293":"volume_im:RCA","23294":"volume_im:RCA","23295":"volume_im:RCA","23296":"volume_im:RCA","23297":"volume_im:RCA","23298":"volume_im:RCA","23299":"volume_im:RCA","23300":"volume_im:RCA","23301":"volume_im:RCA","23302":"volume_im:RCA","23303":"volume_im:RCA","23304":"volume_im:RCA","23305":"volume_im:RCA","23306":"volume_im:RCA","23307":"volume_im:RCA","23308":"volume_im:RCA","23309":"volume_im:RCA","23310":"volume_im:RCA","23311":"volume_im:RCA","23312":"volume_im:RCA","23313":"volume_im:RCA","23314":"volume_im:RCA","23315":"volume_im:RCA","23316":"volume_im:RCA","23317":"volume_im:RCA","23318":"volume_im:RCA","23319":"volume_im:RCA","23320":"volume_im:RCA","23321":"volume_im:RCA","23322":"volume_im:RCA","23323":"volume_im:RCA","23324":"volume_im:RCA","23325":"volume_im:RCA","23326":"volume_im:RCA","23327":"volume_im:RCA","23328":"volume_im:RCA","23329":"volume_im:RCA","23330":"volume_im:RCA","23331":"volume_im:RCA","23332":"volume_im:RCA","23333":"volume_im:RCA","23334":"volume_im:RCA","23335":"volume_im:RCA","23336":"volume_im:RCA","23337":"volume_im:RCA","23338":"volume_im:RCA","23339":"volume_im:RCA","23340":"volume_im:RCA","23341":"volume_im:RCA","23342":"volume_im:RCA","23343":"volume_im:RCA","23344":"volume_im:RCA","23345":"volume_im:RCA","23346":"volume_im:RCA","23347":"volume_im:RCA","23348":"volume_im:RCA","23349":"volume_im:RCA","23350":"volume_im:RCA","23351":"volume_im:RCA","23352":"volume_im:RCA","23353":"volume_im:RCA","23354":"volume_im:RCA","23355":"volume_im:RCA","23356":"volume_im:RCA","23357":"volume_im:RCA","23358":"volume_im:RCA","23359":"volume_im:RCA","23360":"volume_im:RCA","23361":"volume_im:RCA","23362":"volume_im:RCA","23363":"volume_im:RCA","23364":"volume_im:RCA","23365":"volume_im:RCA","23366":"volume_im:RCA","23367":"volume_im:RCA","23368":"volume_im:RCA","23369":"volume_im:RCA","23370":"volume_im:RCA","23371":"volume_im:RCA","23372":"volume_im:RCA","23373":"volume_im:RCA","23374":"volume_im:RCA","23375":"volume_im:RCA","23376":"volume_im:RCA","23377":"volume_im:RCA","23378":"volume_im:RCA","23379":"volume_im:RCA","23380":"volume_im:RCA","23381":"volume_im:RCA","23382":"volume_im:RCA","23383":"volume_im:RCA","23384":"volume_im:RCA","23385":"volume_im:RCA","23386":"volume_im:RCA","23387":"volume_im:RCA","23388":"volume_im:RCA","23389":"volume_im:RCA","23390":"volume_im:RCA","23391":"volume_im:RCA","23392":"volume_im:RCA","23393":"volume_im:RCA","23394":"volume_im:RCA","23395":"volume_im:RCA","23396":"volume_im:RCA","23397":"volume_im:RCA","23398":"volume_im:RCA","23399":"volume_im:RCA","23400":"volume_im:RCA","23401":"volume_im:RCA","23402":"volume_im:RCA","23403":"volume_im:RCA","23404":"volume_im:RCA","23405":"volume_im:RCA","23406":"volume_im:RCA","23407":"volume_im:RCA","23408":"volume_im:RCA","23409":"volume_im:RCA","23410":"volume_im:RCA","23411":"volume_im:RCA","23412":"volume_im:RCA","23413":"volume_im:RCA","23414":"volume_im:RCA","23415":"volume_im:RCA","23416":"volume_im:RCA","23417":"volume_im:RCA","23418":"volume_im:RCA","23419":"volume_im:RCA","23420":"volume_im:RCA","23421":"volume_im:RCA","23422":"volume_im:RCA","23423":"volume_im:RCA","23424":"volume_im:RCA","23425":"volume_im:RCA","23426":"volume_im:RCA","23427":"volume_im:RCA","23428":"volume_im:RCA","23429":"volume_im:RCA","23430":"volume_im:RCA","23431":"volume_im:RCA","23432":"volume_im:RCA","23433":"volume_im:RCA","23434":"volume_im:RCA","23435":"volume_im:RCA","23436":"volume_im:RCA","23437":"volume_im:RCA","23438":"volume_im:RCA","23439":"volume_im:RCA","23440":"volume_im:RCA","23441":"volume_im:RCA","23442":"volume_im:RCA","23443":"volume_im:RCA","23444":"volume_im:RCA","23445":"volume_im:RCA","23446":"volume_im:RCA","23447":"volume_im:RCA","23448":"volume_im:RCA","23449":"volume_im:RCA","23450":"volume_im:RCA","23451":"volume_im:RCA","23452":"volume_im:RCA","23453":"volume_im:RCA","23454":"volume_im:RCA","23455":"volume_im:RCA","23456":"volume_im:RCA","23457":"volume_im:RCA","23458":"volume_im:RCA","23459":"volume_im:RCA","23460":"volume_im:RCA","23461":"volume_im:RCA","23462":"volume_im:RCA","23463":"volume_im:RCA","23464":"volume_im:RCA","23465":"volume_im:RCA","23466":"volume_im:RCA","23467":"volume_im:RCA","23468":"volume_im:RCA","23469":"volume_im:RCA","23470":"volume_im:RCA","23471":"volume_im:RCA","23472":"volume_im:RCA","23473":"volume_im:RCA","23474":"volume_im:RCA","23475":"volume_im:RCA","23476":"volume_im:RCA","23477":"volume_im:RCA","23478":"volume_im:RCA","23479":"volume_im:RCA","23480":"volume_im:RCA","23481":"volume_im:RCA","23482":"volume_im:RCA","23483":"volume_im:RCA","23484":"volume_im:RCA","23485":"volume_im:RCA","23486":"volume_im:RCA","23487":"volume_im:RCA","23488":"volume_im:RCA","23489":"volume_im:RCA","23490":"volume_im:RCA","23491":"volume_im:RCA","23492":"volume_im:RCA","23493":"volume_im:RCA","23494":"volume_im:RCA","23495":"volume_im:RCA","23496":"volume_im:RCA","23497":"volume_im:RCA","23498":"volume_im:RCA","23499":"volume_im:RCA","23500":"volume_im:RCA","23501":"volume_im:RCA","23502":"volume_im:RCA","23503":"volume_im:RCA","23504":"volume_im:RCA","23505":"volume_im:RCA","23506":"volume_im:RCA","23507":"volume_im:RCA","23508":"volume_im:RCA","23509":"volume_im:RCA","23510":"volume_im:RCA","23511":"volume_im:RCA","23512":"volume_im:RCA","23513":"volume_im:RCA","23514":"volume_im:RCA","23515":"volume_im:RCA","23516":"volume_im:RCA","23517":"volume_im:RCA","23518":"volume_im:RCA","23519":"volume_im:RCA","23520":"volume_im:RCA","23521":"volume_im:RCA","23522":"volume_im:RCA","23523":"volume_im:RCA","23524":"volume_im:RCA","23525":"volume_im:RCA","23526":"volume_im:RCA","23527":"volume_im:RCA","23528":"volume_im:RCA","23529":"volume_im:RCA","23530":"volume_im:RCA","23531":"volume_im:RCA","23532":"volume_im:RCA","23533":"volume_im:RCA","23534":"volume_im:RCA","23535":"volume_im:RCA","23536":"volume_im:RCA","23537":"volume_im:RCA","23538":"volume_im:RCA","23539":"volume_im:RCA","23540":"volume_im:RCA","23541":"volume_im:RCA","23542":"volume_im:RCA","23543":"volume_im:RCA","23544":"volume_im:RCA","23545":"volume_im:RCA","23546":"volume_im:RCA","23547":"volume_im:RCA","23548":"volume_im:RCA","23549":"volume_im:RCA","23550":"volume_im:RCA","23551":"volume_im:RCA","23552":"volume_im:RCA","23553":"volume_im:RCA","23554":"volume_im:RCA","23555":"volume_im:RCA","23556":"volume_im:RCA","23557":"volume_im:RCA","23558":"volume_im:RCA","23559":"volume_im:RCA","23560":"volume_im:RCA","23561":"volume_im:RCA","23562":"volume_im:RCA","23563":"volume_im:RCA","23564":"volume_im:RCA","23565":"volume_im:RCA","23566":"volume_im:RCA","23567":"volume_im:RCA","23568":"volume_im:RCA","23569":"volume_im:RCA","23570":"volume_im:RCA","23571":"volume_im:RCA","23572":"volume_im:RCA","23573":"volume_im:RCA","23574":"volume_im:RCA","23575":"volume_im:RCA","23576":"volume_im:RCA","23577":"volume_im:RCA","23578":"volume_im:RCA","23579":"volume_im:RCA","23580":"volume_im:RCA","23581":"volume_im:RCA","23582":"volume_im:RCA","23583":"volume_im:RCA","23584":"volume_im:RCA","23585":"volume_im:RCA","23586":"volume_im:RCA","23587":"volume_im:RCA","23588":"volume_im:RCA","23589":"volume_im:RCA","23590":"volume_im:RCA","23591":"volume_im:RCA","23592":"volume_im:RCA","23593":"volume_im:RCA","23594":"volume_im:RCA","23595":"volume_im:RCA","23596":"volume_im:RCA","23597":"volume_im:RCA","23598":"volume_im:RCA","23599":"volume_im:RCA","23600":"volume_im:RCA","23601":"volume_im:RCA","23602":"volume_im:RCA","23603":"volume_im:RCA","23604":"volume_im:RCA","23605":"volume_im:RCA","23606":"volume_im:RCA","23607":"volume_im:RCA","23608":"volume_im:RCA","23609":"volume_im:RCA","23610":"volume_im:RCA","23611":"volume_im:RCA","23612":"volume_im:RCA","23613":"volume_im:RCA","23614":"volume_im:RCA","23615":"volume_im:RCA","23616":"volume_im:RCA","23617":"volume_im:RCA","23618":"volume_im:RCA","23619":"volume_im:RCA","23620":"volume_im:RCA","23621":"volume_im:RCA","23622":"volume_im:RCA","23623":"volume_im:RCA","23624":"volume_im:RCA","23625":"volume_im:RCA","23626":"volume_im:RCA","23627":"volume_im:RCA","23628":"volume_im:RCA","23629":"volume_im:RCA","23630":"volume_im:RCA","23631":"volume_im:RCA","23632":"volume_im:RCA","23633":"volume_im:RCA","23634":"volume_im:RCA","23635":"volume_im:RCA","23636":"volume_im:RCA","23637":"volume_im:RCA","23638":"volume_im:RCA","23639":"volume_im:RCA","23640":"volume_im:RCA","23641":"volume_im:RCA","23642":"volume_im:RCA","23643":"volume_im:RCA","23644":"volume_im:RCA","23645":"volume_im:RCA","23646":"volume_im:RCA","23647":"volume_im:RCA","23648":"volume_im:RCA","23649":"volume_im:RCA","23650":"volume_im:RCA","23651":"volume_im:RCA","23652":"volume_im:RCA","23653":"volume_im:RCA","23654":"volume_im:RCA","23655":"volume_im:RCA","23656":"volume_im:RCA","23657":"volume_im:RCA","23658":"volume_im:RCA","23659":"volume_im:RCA","23660":"volume_im:RCA","23661":"volume_im:RCA","23662":"volume_im:RCA","23663":"volume_im:RCA","23664":"volume_im:RCA","23665":"volume_im:RCA","23666":"volume_im:RCA","23667":"volume_im:RCA","23668":"volume_im:RCA","23669":"volume_im:RCA","23670":"volume_im:RCA","23671":"volume_im:RCA","23672":"volume_im:RCA","23673":"volume_im:RCA","23674":"volume_im:RCA","23675":"volume_im:RCA","23676":"volume_im:RCA","23677":"volume_im:RCA","23678":"volume_im:RCA","23679":"volume_im:RCA","23680":"volume_im:RCA","23681":"volume_im:RCA","23682":"volume_im:RCA","23683":"volume_im:RCA","23684":"volume_im:RCA","23685":"volume_im:RCA","23686":"volume_im:RCA","23687":"volume_im:RCA","23688":"volume_im:RCA","23689":"volume_im:RCA","23690":"volume_im:RCA","23691":"volume_im:RCA","23692":"volume_im:RCA","23693":"volume_im:RCA","23694":"volume_im:RCA","23695":"volume_im:RCA","23696":"volume_im:RCA","23697":"volume_im:RCA","23698":"volume_im:RCA","23699":"volume_im:RCA","23700":"volume_im:RCA","23701":"volume_im:RCA","23702":"volume_im:RCA","23703":"volume_im:RCA","23704":"volume_im:RCA","23705":"volume_im:RCA","23706":"volume_im:RCA","23707":"volume_im:RCA","23708":"volume_im:RCA","23709":"volume_im:RCA","23710":"volume_im:RCA","23711":"volume_im:RCA","23712":"volume_im:RCA","23713":"volume_im:RCA","23714":"volume_im:RCA","23715":"volume_im:RCA","23716":"volume_im:RCA","23717":"volume_im:RCA","23718":"volume_im:RCA","23719":"volume_im:RCA","23720":"volume_im:RCA","23721":"volume_im:RCA","23722":"volume_im:RCA","23723":"volume_im:RCA","23724":"volume_im:RCA","23725":"volume_im:RCA","23726":"volume_im:RCA","23727":"volume_im:RCA","23728":"volume_im:RCA","23729":"volume_im:RCA","23730":"volume_im:RCA","23731":"volume_im:RCA","23732":"volume_im:RCA","23733":"volume_im:RCA","23734":"volume_im:RCA","23735":"volume_im:RCA","23736":"volume_im:RCA","23737":"volume_im:RCA","23738":"volume_im:RCA","23739":"volume_im:RCA","23740":"volume_im:RCA","23741":"volume_im:RCA","23742":"volume_im:RCA","23743":"volume_im:RCA","23744":"volume_im:RCA","23745":"volume_im:RCA","23746":"volume_im:RCA","23747":"volume_im:RCA","23748":"volume_im:RCA","23749":"volume_im:RCA","23750":"volume_im:RCA","23751":"volume_im:RCA","23752":"volume_im:RCA","23753":"volume_im:RCA","23754":"volume_im:RCA","23755":"volume_im:RCA","23756":"volume_im:RCA","23757":"volume_im:RCA","23758":"volume_im:RCA","23759":"volume_im:RCA","23760":"volume_im:RCA","23761":"volume_im:RCA","23762":"volume_im:RCA","23763":"volume_im:RCA","23764":"volume_im:RCA","23765":"volume_im:RCA","23766":"volume_im:RCA","23767":"volume_im:RCA","23768":"volume_im:RCA","23769":"volume_im:RCA","23770":"volume_im:RCA","23771":"volume_im:RCA","23772":"volume_im:RCA","23773":"volume_im:RCA","23774":"volume_im:RCA","23775":"volume_im:RCA","23776":"volume_im:RCA","23777":"volume_im:RCA","23778":"volume_im:RCA","23779":"volume_im:RCA","23780":"volume_im:RCA","23781":"volume_im:RCA","23782":"volume_im:RCA","23783":"volume_im:RCA","23784":"volume_im:RCA","23785":"volume_im:RCA","23786":"volume_im:RCA","23787":"volume_im:RCA","23788":"volume_im:RCA","23789":"volume_im:RCA","23790":"volume_im:RCA","23791":"volume_im:RCA","23792":"volume_im:RCA","23793":"volume_im:RCA","23794":"volume_im:RCA","23795":"volume_im:RCA","23796":"volume_im:RCA","23797":"volume_im:RCA","23798":"volume_im:RCA","23799":"volume_im:RCA","23800":"volume_im:RCA","23801":"volume_im:RCA","23802":"volume_im:RCA","23803":"volume_im:RCA","23804":"volume_im:RCA","23805":"volume_im:RCA","23806":"volume_im:RCA","23807":"volume_im:RCA","23808":"volume_im:RCA","23809":"volume_im:RCA","23810":"volume_im:RCA","23811":"volume_im:RCA","23812":"volume_im:RCA","23813":"volume_im:RCA","23814":"volume_im:RCA","23815":"volume_im:RCA","23816":"volume_im:RCA","23817":"volume_im:RCA","23818":"volume_im:RCA","23819":"volume_im:RCA","23820":"volume_im:RCA","23821":"volume_im:RCA","23822":"volume_im:RCA","23823":"volume_im:RCA","23824":"volume_im:RCA","23825":"volume_im:RCA","23826":"volume_im:RCA","23827":"volume_im:RCA","23828":"volume_im:RCA","23829":"volume_im:RCA","23830":"volume_im:RCA","23831":"volume_im:RCA","23832":"volume_im:RCA","23833":"volume_im:RCA","23834":"volume_im:RCA","23835":"volume_im:RCA","23836":"volume_im:RCA","23837":"volume_im:RCA","23838":"volume_im:RCA","23839":"volume_im:RCA","23840":"volume_im:RCA","23841":"volume_im:RCA","23842":"volume_im:RCA","23843":"volume_im:RCA","23844":"volume_im:RCA","23845":"volume_im:RCA","23846":"volume_im:RCA","23847":"volume_im:RCA","23848":"volume_im:RCA","23849":"volume_im:RCA","23850":"volume_im:RCA","23851":"volume_im:RCA","23852":"volume_im:RCA","23853":"volume_im:RCA","23854":"volume_im:RCA","23855":"volume_im:RCA","23856":"volume_im:RCA","23857":"volume_im:RCA","23858":"volume_im:RCA","23859":"volume_im:RCA","23860":"volume_im:RCA","23861":"volume_im:RCA","23862":"volume_im:RCA","23863":"volume_im:RCA","23864":"volume_im:RCA","23865":"volume_im:RCA","23866":"volume_im:RCA","23867":"volume_im:RCA","23868":"volume_im:RCA","23869":"volume_im:RCA","23870":"volume_im:RCA","23871":"volume_im:RCA","23872":"volume_im:RCA","23873":"volume_im:RCA","23874":"volume_im:RCA","23875":"volume_im:RCA","23876":"volume_im:RCA","23877":"volume_im:RCA","23878":"volume_im:RCA","23879":"volume_im:RCA","23880":"volume_im:RCA","23881":"volume_im:RCA","23882":"volume_im:RCA","23883":"volume_im:RCA","23884":"volume_im:RCA","23885":"volume_im:RCA","23886":"volume_im:RCA","23887":"volume_im:RCA","23888":"volume_im:RCA","23889":"volume_im:RCA","23890":"volume_im:RCA","23891":"volume_im:RCA","23892":"volume_im:RCA","23893":"volume_im:RCA","23894":"volume_im:RCA","23895":"volume_im:RCA","23896":"volume_im:RCA","23897":"volume_im:RCA","23898":"volume_im:RCA","23899":"volume_im:RCA","23900":"volume_im:RCA","23901":"volume_im:RCA","23902":"volume_im:RCA","23903":"volume_im:RCA","23904":"volume_im:RCA","23905":"volume_im:RCA","23906":"volume_im:RCA","23907":"volume_im:RCA","23908":"volume_im:RCA","23909":"volume_im:RCA","23910":"volume_im:RCA","23911":"volume_im:RCA","23912":"volume_im:RCA","23913":"volume_im:RCA","23914":"volume_im:RCA","23915":"volume_im:RCA","23916":"volume_im:RCA","23917":"volume_im:RCA","23918":"volume_im:RCA","23919":"volume_im:RCA","23920":"volume_im:RCA","23921":"volume_im:RCA","23922":"volume_im:RCA","23923":"volume_im:RCA","23924":"volume_im:RCA","23925":"volume_im:RCA","23926":"volume_im:RCA","23927":"volume_im:RCA","23928":"volume_im:RCA","23929":"volume_im:RCA","23930":"volume_im:RCA","23931":"volume_im:RCA","23932":"volume_im:RCA","23933":"volume_im:RCA","23934":"volume_im:RCA","23935":"volume_im:RCA","23936":"volume_im:RCA","23937":"volume_im:RCA","23938":"volume_im:RCA","23939":"volume_im:RCA","23940":"volume_im:RCA","23941":"volume_im:RCA","23942":"volume_im:RCA","23943":"volume_im:RCA","23944":"volume_im:RCA","23945":"volume_im:RCA","23946":"volume_im:RCA","23947":"volume_im:RCA","23948":"volume_im:RCA","23949":"volume_im:RCA","23950":"volume_im:RCA","23951":"volume_im:RCA","23952":"volume_im:RCA","23953":"volume_im:RCA","23954":"volume_im:RCA","23955":"volume_im:RCA","23956":"volume_im:RCA","23957":"volume_im:RCA","23958":"volume_im:RCA","23959":"volume_im:RCA","23960":"volume_im:RCA","23961":"volume_im:RCA","23962":"volume_im:RCA","23963":"volume_im:RCA","23964":"volume_im:RCA","23965":"volume_im:RCA","23966":"volume_im:RCA","23967":"volume_im:RCA","23968":"volume_im:RCA","23969":"volume_im:RCA","23970":"volume_im:RCA","23971":"volume_im:RCA","23972":"volume_im:RCA","23973":"volume_im:RCA","23974":"volume_im:RCA","23975":"volume_im:RCA","23976":"volume_im:RCA","23977":"volume_im:RCA","23978":"volume_im:RCA","23979":"volume_im:RCA","23980":"volume_im:RCA","23981":"volume_im:RCA","23982":"volume_im:RCA","23983":"volume_im:RCA","23984":"volume_im:RCA","23985":"volume_im:RCA","23986":"volume_im:RCA","23987":"volume_im:RCA","23988":"volume_im:RCA","23989":"volume_im:RCA","23990":"volume_im:RCA","23991":"volume_im:RCA","23992":"volume_im:RCA","23993":"volume_im:RCA","23994":"volume_im:RCA","23995":"volume_im:RCA","23996":"volume_im:RCA","23997":"volume_im:RCA","23998":"volume_im:RCA","23999":"volume_im:RCA","24000":"P_c:RCR_aorta","24001":"P_c:RCR_aorta","24002":"P_c:RCR_aorta","24003":"P_c:RCR_aorta","24004":"P_c:RCR_aorta","24005":"P_c:RCR_aorta","24006":"P_c:RCR_aorta","24007":"P_c:RCR_aorta","24008":"P_c:RCR_aorta","24009":"P_c:RCR_aorta","24010":"P_c:RCR_aorta","24011":"P_c:RCR_aorta","24012":"P_c:RCR_aorta","24013":"P_c:RCR_aorta","24014":"P_c:RCR_aorta","24015":"P_c:RCR_aorta","24016":"P_c:RCR_aorta","24017":"P_c:RCR_aorta","24018":"P_c:RCR_aorta","24019":"P_c:RCR_aorta","24020":"P_c:RCR_aorta","24021":"P_c:RCR_aorta","24022":"P_c:RCR_aorta","24023":"P_c:RCR_aorta","24024":"P_c:RCR_aorta","24025":"P_c:RCR_aorta","24026":"P_c:RCR_aorta","24027":"P_c:RCR_aorta","24028":"P_c:RCR_aorta","24029":"P_c:RCR_aorta","24030":"P_c:RCR_aorta","24031":"P_c:RCR_aorta","24032":"P_c:RCR_aorta","24033":"P_c:RCR_aorta","24034":"P_c:RCR_aorta","24035":"P_c:RCR_aorta","24036":"P_c:RCR_aorta","24037":"P_c:RCR_aorta","24038":"P_c:RCR_aorta","24039":"P_c:RCR_aorta","24040":"P_c:RCR_aorta","24041":"P_c:RCR_aorta","24042":"P_c:RCR_aorta","24043":"P_c:RCR_aorta","24044":"P_c:RCR_aorta","24045":"P_c:RCR_aorta","24046":"P_c:RCR_aorta","24047":"P_c:RCR_aorta","24048":"P_c:RCR_aorta","24049":"P_c:RCR_aorta","24050":"P_c:RCR_aorta","24051":"P_c:RCR_aorta","24052":"P_c:RCR_aorta","24053":"P_c:RCR_aorta","24054":"P_c:RCR_aorta","24055":"P_c:RCR_aorta","24056":"P_c:RCR_aorta","24057":"P_c:RCR_aorta","24058":"P_c:RCR_aorta","24059":"P_c:RCR_aorta","24060":"P_c:RCR_aorta","24061":"P_c:RCR_aorta","24062":"P_c:RCR_aorta","24063":"P_c:RCR_aorta","24064":"P_c:RCR_aorta","24065":"P_c:RCR_aorta","24066":"P_c:RCR_aorta","24067":"P_c:RCR_aorta","24068":"P_c:RCR_aorta","24069":"P_c:RCR_aorta","24070":"P_c:RCR_aorta","24071":"P_c:RCR_aorta","24072":"P_c:RCR_aorta","24073":"P_c:RCR_aorta","24074":"P_c:RCR_aorta","24075":"P_c:RCR_aorta","24076":"P_c:RCR_aorta","24077":"P_c:RCR_aorta","24078":"P_c:RCR_aorta","24079":"P_c:RCR_aorta","24080":"P_c:RCR_aorta","24081":"P_c:RCR_aorta","24082":"P_c:RCR_aorta","24083":"P_c:RCR_aorta","24084":"P_c:RCR_aorta","24085":"P_c:RCR_aorta","24086":"P_c:RCR_aorta","24087":"P_c:RCR_aorta","24088":"P_c:RCR_aorta","24089":"P_c:RCR_aorta","24090":"P_c:RCR_aorta","24091":"P_c:RCR_aorta","24092":"P_c:RCR_aorta","24093":"P_c:RCR_aorta","24094":"P_c:RCR_aorta","24095":"P_c:RCR_aorta","24096":"P_c:RCR_aorta","24097":"P_c:RCR_aorta","24098":"P_c:RCR_aorta","24099":"P_c:RCR_aorta","24100":"P_c:RCR_aorta","24101":"P_c:RCR_aorta","24102":"P_c:RCR_aorta","24103":"P_c:RCR_aorta","24104":"P_c:RCR_aorta","24105":"P_c:RCR_aorta","24106":"P_c:RCR_aorta","24107":"P_c:RCR_aorta","24108":"P_c:RCR_aorta","24109":"P_c:RCR_aorta","24110":"P_c:RCR_aorta","24111":"P_c:RCR_aorta","24112":"P_c:RCR_aorta","24113":"P_c:RCR_aorta","24114":"P_c:RCR_aorta","24115":"P_c:RCR_aorta","24116":"P_c:RCR_aorta","24117":"P_c:RCR_aorta","24118":"P_c:RCR_aorta","24119":"P_c:RCR_aorta","24120":"P_c:RCR_aorta","24121":"P_c:RCR_aorta","24122":"P_c:RCR_aorta","24123":"P_c:RCR_aorta","24124":"P_c:RCR_aorta","24125":"P_c:RCR_aorta","24126":"P_c:RCR_aorta","24127":"P_c:RCR_aorta","24128":"P_c:RCR_aorta","24129":"P_c:RCR_aorta","24130":"P_c:RCR_aorta","24131":"P_c:RCR_aorta","24132":"P_c:RCR_aorta","24133":"P_c:RCR_aorta","24134":"P_c:RCR_aorta","24135":"P_c:RCR_aorta","24136":"P_c:RCR_aorta","24137":"P_c:RCR_aorta","24138":"P_c:RCR_aorta","24139":"P_c:RCR_aorta","24140":"P_c:RCR_aorta","24141":"P_c:RCR_aorta","24142":"P_c:RCR_aorta","24143":"P_c:RCR_aorta","24144":"P_c:RCR_aorta","24145":"P_c:RCR_aorta","24146":"P_c:RCR_aorta","24147":"P_c:RCR_aorta","24148":"P_c:RCR_aorta","24149":"P_c:RCR_aorta","24150":"P_c:RCR_aorta","24151":"P_c:RCR_aorta","24152":"P_c:RCR_aorta","24153":"P_c:RCR_aorta","24154":"P_c:RCR_aorta","24155":"P_c:RCR_aorta","24156":"P_c:RCR_aorta","24157":"P_c:RCR_aorta","24158":"P_c:RCR_aorta","24159":"P_c:RCR_aorta","24160":"P_c:RCR_aorta","24161":"P_c:RCR_aorta","24162":"P_c:RCR_aorta","24163":"P_c:RCR_aorta","24164":"P_c:RCR_aorta","24165":"P_c:RCR_aorta","24166":"P_c:RCR_aorta","24167":"P_c:RCR_aorta","24168":"P_c:RCR_aorta","24169":"P_c:RCR_aorta","24170":"P_c:RCR_aorta","24171":"P_c:RCR_aorta","24172":"P_c:RCR_aorta","24173":"P_c:RCR_aorta","24174":"P_c:RCR_aorta","24175":"P_c:RCR_aorta","24176":"P_c:RCR_aorta","24177":"P_c:RCR_aorta","24178":"P_c:RCR_aorta","24179":"P_c:RCR_aorta","24180":"P_c:RCR_aorta","24181":"P_c:RCR_aorta","24182":"P_c:RCR_aorta","24183":"P_c:RCR_aorta","24184":"P_c:RCR_aorta","24185":"P_c:RCR_aorta","24186":"P_c:RCR_aorta","24187":"P_c:RCR_aorta","24188":"P_c:RCR_aorta","24189":"P_c:RCR_aorta","24190":"P_c:RCR_aorta","24191":"P_c:RCR_aorta","24192":"P_c:RCR_aorta","24193":"P_c:RCR_aorta","24194":"P_c:RCR_aorta","24195":"P_c:RCR_aorta","24196":"P_c:RCR_aorta","24197":"P_c:RCR_aorta","24198":"P_c:RCR_aorta","24199":"P_c:RCR_aorta","24200":"P_c:RCR_aorta","24201":"P_c:RCR_aorta","24202":"P_c:RCR_aorta","24203":"P_c:RCR_aorta","24204":"P_c:RCR_aorta","24205":"P_c:RCR_aorta","24206":"P_c:RCR_aorta","24207":"P_c:RCR_aorta","24208":"P_c:RCR_aorta","24209":"P_c:RCR_aorta","24210":"P_c:RCR_aorta","24211":"P_c:RCR_aorta","24212":"P_c:RCR_aorta","24213":"P_c:RCR_aorta","24214":"P_c:RCR_aorta","24215":"P_c:RCR_aorta","24216":"P_c:RCR_aorta","24217":"P_c:RCR_aorta","24218":"P_c:RCR_aorta","24219":"P_c:RCR_aorta","24220":"P_c:RCR_aorta","24221":"P_c:RCR_aorta","24222":"P_c:RCR_aorta","24223":"P_c:RCR_aorta","24224":"P_c:RCR_aorta","24225":"P_c:RCR_aorta","24226":"P_c:RCR_aorta","24227":"P_c:RCR_aorta","24228":"P_c:RCR_aorta","24229":"P_c:RCR_aorta","24230":"P_c:RCR_aorta","24231":"P_c:RCR_aorta","24232":"P_c:RCR_aorta","24233":"P_c:RCR_aorta","24234":"P_c:RCR_aorta","24235":"P_c:RCR_aorta","24236":"P_c:RCR_aorta","24237":"P_c:RCR_aorta","24238":"P_c:RCR_aorta","24239":"P_c:RCR_aorta","24240":"P_c:RCR_aorta","24241":"P_c:RCR_aorta","24242":"P_c:RCR_aorta","24243":"P_c:RCR_aorta","24244":"P_c:RCR_aorta","24245":"P_c:RCR_aorta","24246":"P_c:RCR_aorta","24247":"P_c:RCR_aorta","24248":"P_c:RCR_aorta","24249":"P_c:RCR_aorta","24250":"P_c:RCR_aorta","24251":"P_c:RCR_aorta","24252":"P_c:RCR_aorta","24253":"P_c:RCR_aorta","24254":"P_c:RCR_aorta","24255":"P_c:RCR_aorta","24256":"P_c:RCR_aorta","24257":"P_c:RCR_aorta","24258":"P_c:RCR_aorta","24259":"P_c:RCR_aorta","24260":"P_c:RCR_aorta","24261":"P_c:RCR_aorta","24262":"P_c:RCR_aorta","24263":"P_c:RCR_aorta","24264":"P_c:RCR_aorta","24265":"P_c:RCR_aorta","24266":"P_c:RCR_aorta","24267":"P_c:RCR_aorta","24268":"P_c:RCR_aorta","24269":"P_c:RCR_aorta","24270":"P_c:RCR_aorta","24271":"P_c:RCR_aorta","24272":"P_c:RCR_aorta","24273":"P_c:RCR_aorta","24274":"P_c:RCR_aorta","24275":"P_c:RCR_aorta","24276":"P_c:RCR_aorta","24277":"P_c:RCR_aorta","24278":"P_c:RCR_aorta","24279":"P_c:RCR_aorta","24280":"P_c:RCR_aorta","24281":"P_c:RCR_aorta","24282":"P_c:RCR_aorta","24283":"P_c:RCR_aorta","24284":"P_c:RCR_aorta","24285":"P_c:RCR_aorta","24286":"P_c:RCR_aorta","24287":"P_c:RCR_aorta","24288":"P_c:RCR_aorta","24289":"P_c:RCR_aorta","24290":"P_c:RCR_aorta","24291":"P_c:RCR_aorta","24292":"P_c:RCR_aorta","24293":"P_c:RCR_aorta","24294":"P_c:RCR_aorta","24295":"P_c:RCR_aorta","24296":"P_c:RCR_aorta","24297":"P_c:RCR_aorta","24298":"P_c:RCR_aorta","24299":"P_c:RCR_aorta","24300":"P_c:RCR_aorta","24301":"P_c:RCR_aorta","24302":"P_c:RCR_aorta","24303":"P_c:RCR_aorta","24304":"P_c:RCR_aorta","24305":"P_c:RCR_aorta","24306":"P_c:RCR_aorta","24307":"P_c:RCR_aorta","24308":"P_c:RCR_aorta","24309":"P_c:RCR_aorta","24310":"P_c:RCR_aorta","24311":"P_c:RCR_aorta","24312":"P_c:RCR_aorta","24313":"P_c:RCR_aorta","24314":"P_c:RCR_aorta","24315":"P_c:RCR_aorta","24316":"P_c:RCR_aorta","24317":"P_c:RCR_aorta","24318":"P_c:RCR_aorta","24319":"P_c:RCR_aorta","24320":"P_c:RCR_aorta","24321":"P_c:RCR_aorta","24322":"P_c:RCR_aorta","24323":"P_c:RCR_aorta","24324":"P_c:RCR_aorta","24325":"P_c:RCR_aorta","24326":"P_c:RCR_aorta","24327":"P_c:RCR_aorta","24328":"P_c:RCR_aorta","24329":"P_c:RCR_aorta","24330":"P_c:RCR_aorta","24331":"P_c:RCR_aorta","24332":"P_c:RCR_aorta","24333":"P_c:RCR_aorta","24334":"P_c:RCR_aorta","24335":"P_c:RCR_aorta","24336":"P_c:RCR_aorta","24337":"P_c:RCR_aorta","24338":"P_c:RCR_aorta","24339":"P_c:RCR_aorta","24340":"P_c:RCR_aorta","24341":"P_c:RCR_aorta","24342":"P_c:RCR_aorta","24343":"P_c:RCR_aorta","24344":"P_c:RCR_aorta","24345":"P_c:RCR_aorta","24346":"P_c:RCR_aorta","24347":"P_c:RCR_aorta","24348":"P_c:RCR_aorta","24349":"P_c:RCR_aorta","24350":"P_c:RCR_aorta","24351":"P_c:RCR_aorta","24352":"P_c:RCR_aorta","24353":"P_c:RCR_aorta","24354":"P_c:RCR_aorta","24355":"P_c:RCR_aorta","24356":"P_c:RCR_aorta","24357":"P_c:RCR_aorta","24358":"P_c:RCR_aorta","24359":"P_c:RCR_aorta","24360":"P_c:RCR_aorta","24361":"P_c:RCR_aorta","24362":"P_c:RCR_aorta","24363":"P_c:RCR_aorta","24364":"P_c:RCR_aorta","24365":"P_c:RCR_aorta","24366":"P_c:RCR_aorta","24367":"P_c:RCR_aorta","24368":"P_c:RCR_aorta","24369":"P_c:RCR_aorta","24370":"P_c:RCR_aorta","24371":"P_c:RCR_aorta","24372":"P_c:RCR_aorta","24373":"P_c:RCR_aorta","24374":"P_c:RCR_aorta","24375":"P_c:RCR_aorta","24376":"P_c:RCR_aorta","24377":"P_c:RCR_aorta","24378":"P_c:RCR_aorta","24379":"P_c:RCR_aorta","24380":"P_c:RCR_aorta","24381":"P_c:RCR_aorta","24382":"P_c:RCR_aorta","24383":"P_c:RCR_aorta","24384":"P_c:RCR_aorta","24385":"P_c:RCR_aorta","24386":"P_c:RCR_aorta","24387":"P_c:RCR_aorta","24388":"P_c:RCR_aorta","24389":"P_c:RCR_aorta","24390":"P_c:RCR_aorta","24391":"P_c:RCR_aorta","24392":"P_c:RCR_aorta","24393":"P_c:RCR_aorta","24394":"P_c:RCR_aorta","24395":"P_c:RCR_aorta","24396":"P_c:RCR_aorta","24397":"P_c:RCR_aorta","24398":"P_c:RCR_aorta","24399":"P_c:RCR_aorta","24400":"P_c:RCR_aorta","24401":"P_c:RCR_aorta","24402":"P_c:RCR_aorta","24403":"P_c:RCR_aorta","24404":"P_c:RCR_aorta","24405":"P_c:RCR_aorta","24406":"P_c:RCR_aorta","24407":"P_c:RCR_aorta","24408":"P_c:RCR_aorta","24409":"P_c:RCR_aorta","24410":"P_c:RCR_aorta","24411":"P_c:RCR_aorta","24412":"P_c:RCR_aorta","24413":"P_c:RCR_aorta","24414":"P_c:RCR_aorta","24415":"P_c:RCR_aorta","24416":"P_c:RCR_aorta","24417":"P_c:RCR_aorta","24418":"P_c:RCR_aorta","24419":"P_c:RCR_aorta","24420":"P_c:RCR_aorta","24421":"P_c:RCR_aorta","24422":"P_c:RCR_aorta","24423":"P_c:RCR_aorta","24424":"P_c:RCR_aorta","24425":"P_c:RCR_aorta","24426":"P_c:RCR_aorta","24427":"P_c:RCR_aorta","24428":"P_c:RCR_aorta","24429":"P_c:RCR_aorta","24430":"P_c:RCR_aorta","24431":"P_c:RCR_aorta","24432":"P_c:RCR_aorta","24433":"P_c:RCR_aorta","24434":"P_c:RCR_aorta","24435":"P_c:RCR_aorta","24436":"P_c:RCR_aorta","24437":"P_c:RCR_aorta","24438":"P_c:RCR_aorta","24439":"P_c:RCR_aorta","24440":"P_c:RCR_aorta","24441":"P_c:RCR_aorta","24442":"P_c:RCR_aorta","24443":"P_c:RCR_aorta","24444":"P_c:RCR_aorta","24445":"P_c:RCR_aorta","24446":"P_c:RCR_aorta","24447":"P_c:RCR_aorta","24448":"P_c:RCR_aorta","24449":"P_c:RCR_aorta","24450":"P_c:RCR_aorta","24451":"P_c:RCR_aorta","24452":"P_c:RCR_aorta","24453":"P_c:RCR_aorta","24454":"P_c:RCR_aorta","24455":"P_c:RCR_aorta","24456":"P_c:RCR_aorta","24457":"P_c:RCR_aorta","24458":"P_c:RCR_aorta","24459":"P_c:RCR_aorta","24460":"P_c:RCR_aorta","24461":"P_c:RCR_aorta","24462":"P_c:RCR_aorta","24463":"P_c:RCR_aorta","24464":"P_c:RCR_aorta","24465":"P_c:RCR_aorta","24466":"P_c:RCR_aorta","24467":"P_c:RCR_aorta","24468":"P_c:RCR_aorta","24469":"P_c:RCR_aorta","24470":"P_c:RCR_aorta","24471":"P_c:RCR_aorta","24472":"P_c:RCR_aorta","24473":"P_c:RCR_aorta","24474":"P_c:RCR_aorta","24475":"P_c:RCR_aorta","24476":"P_c:RCR_aorta","24477":"P_c:RCR_aorta","24478":"P_c:RCR_aorta","24479":"P_c:RCR_aorta","24480":"P_c:RCR_aorta","24481":"P_c:RCR_aorta","24482":"P_c:RCR_aorta","24483":"P_c:RCR_aorta","24484":"P_c:RCR_aorta","24485":"P_c:RCR_aorta","24486":"P_c:RCR_aorta","24487":"P_c:RCR_aorta","24488":"P_c:RCR_aorta","24489":"P_c:RCR_aorta","24490":"P_c:RCR_aorta","24491":"P_c:RCR_aorta","24492":"P_c:RCR_aorta","24493":"P_c:RCR_aorta","24494":"P_c:RCR_aorta","24495":"P_c:RCR_aorta","24496":"P_c:RCR_aorta","24497":"P_c:RCR_aorta","24498":"P_c:RCR_aorta","24499":"P_c:RCR_aorta","24500":"P_c:RCR_aorta","24501":"P_c:RCR_aorta","24502":"P_c:RCR_aorta","24503":"P_c:RCR_aorta","24504":"P_c:RCR_aorta","24505":"P_c:RCR_aorta","24506":"P_c:RCR_aorta","24507":"P_c:RCR_aorta","24508":"P_c:RCR_aorta","24509":"P_c:RCR_aorta","24510":"P_c:RCR_aorta","24511":"P_c:RCR_aorta","24512":"P_c:RCR_aorta","24513":"P_c:RCR_aorta","24514":"P_c:RCR_aorta","24515":"P_c:RCR_aorta","24516":"P_c:RCR_aorta","24517":"P_c:RCR_aorta","24518":"P_c:RCR_aorta","24519":"P_c:RCR_aorta","24520":"P_c:RCR_aorta","24521":"P_c:RCR_aorta","24522":"P_c:RCR_aorta","24523":"P_c:RCR_aorta","24524":"P_c:RCR_aorta","24525":"P_c:RCR_aorta","24526":"P_c:RCR_aorta","24527":"P_c:RCR_aorta","24528":"P_c:RCR_aorta","24529":"P_c:RCR_aorta","24530":"P_c:RCR_aorta","24531":"P_c:RCR_aorta","24532":"P_c:RCR_aorta","24533":"P_c:RCR_aorta","24534":"P_c:RCR_aorta","24535":"P_c:RCR_aorta","24536":"P_c:RCR_aorta","24537":"P_c:RCR_aorta","24538":"P_c:RCR_aorta","24539":"P_c:RCR_aorta","24540":"P_c:RCR_aorta","24541":"P_c:RCR_aorta","24542":"P_c:RCR_aorta","24543":"P_c:RCR_aorta","24544":"P_c:RCR_aorta","24545":"P_c:RCR_aorta","24546":"P_c:RCR_aorta","24547":"P_c:RCR_aorta","24548":"P_c:RCR_aorta","24549":"P_c:RCR_aorta","24550":"P_c:RCR_aorta","24551":"P_c:RCR_aorta","24552":"P_c:RCR_aorta","24553":"P_c:RCR_aorta","24554":"P_c:RCR_aorta","24555":"P_c:RCR_aorta","24556":"P_c:RCR_aorta","24557":"P_c:RCR_aorta","24558":"P_c:RCR_aorta","24559":"P_c:RCR_aorta","24560":"P_c:RCR_aorta","24561":"P_c:RCR_aorta","24562":"P_c:RCR_aorta","24563":"P_c:RCR_aorta","24564":"P_c:RCR_aorta","24565":"P_c:RCR_aorta","24566":"P_c:RCR_aorta","24567":"P_c:RCR_aorta","24568":"P_c:RCR_aorta","24569":"P_c:RCR_aorta","24570":"P_c:RCR_aorta","24571":"P_c:RCR_aorta","24572":"P_c:RCR_aorta","24573":"P_c:RCR_aorta","24574":"P_c:RCR_aorta","24575":"P_c:RCR_aorta","24576":"P_c:RCR_aorta","24577":"P_c:RCR_aorta","24578":"P_c:RCR_aorta","24579":"P_c:RCR_aorta","24580":"P_c:RCR_aorta","24581":"P_c:RCR_aorta","24582":"P_c:RCR_aorta","24583":"P_c:RCR_aorta","24584":"P_c:RCR_aorta","24585":"P_c:RCR_aorta","24586":"P_c:RCR_aorta","24587":"P_c:RCR_aorta","24588":"P_c:RCR_aorta","24589":"P_c:RCR_aorta","24590":"P_c:RCR_aorta","24591":"P_c:RCR_aorta","24592":"P_c:RCR_aorta","24593":"P_c:RCR_aorta","24594":"P_c:RCR_aorta","24595":"P_c:RCR_aorta","24596":"P_c:RCR_aorta","24597":"P_c:RCR_aorta","24598":"P_c:RCR_aorta","24599":"P_c:RCR_aorta","24600":"P_c:RCR_aorta","24601":"P_c:RCR_aorta","24602":"P_c:RCR_aorta","24603":"P_c:RCR_aorta","24604":"P_c:RCR_aorta","24605":"P_c:RCR_aorta","24606":"P_c:RCR_aorta","24607":"P_c:RCR_aorta","24608":"P_c:RCR_aorta","24609":"P_c:RCR_aorta","24610":"P_c:RCR_aorta","24611":"P_c:RCR_aorta","24612":"P_c:RCR_aorta","24613":"P_c:RCR_aorta","24614":"P_c:RCR_aorta","24615":"P_c:RCR_aorta","24616":"P_c:RCR_aorta","24617":"P_c:RCR_aorta","24618":"P_c:RCR_aorta","24619":"P_c:RCR_aorta","24620":"P_c:RCR_aorta","24621":"P_c:RCR_aorta","24622":"P_c:RCR_aorta","24623":"P_c:RCR_aorta","24624":"P_c:RCR_aorta","24625":"P_c:RCR_aorta","24626":"P_c:RCR_aorta","24627":"P_c:RCR_aorta","24628":"P_c:RCR_aorta","24629":"P_c:RCR_aorta","24630":"P_c:RCR_aorta","24631":"P_c:RCR_aorta","24632":"P_c:RCR_aorta","24633":"P_c:RCR_aorta","24634":"P_c:RCR_aorta","24635":"P_c:RCR_aorta","24636":"P_c:RCR_aorta","24637":"P_c:RCR_aorta","24638":"P_c:RCR_aorta","24639":"P_c:RCR_aorta","24640":"P_c:RCR_aorta","24641":"P_c:RCR_aorta","24642":"P_c:RCR_aorta","24643":"P_c:RCR_aorta","24644":"P_c:RCR_aorta","24645":"P_c:RCR_aorta","24646":"P_c:RCR_aorta","24647":"P_c:RCR_aorta","24648":"P_c:RCR_aorta","24649":"P_c:RCR_aorta","24650":"P_c:RCR_aorta","24651":"P_c:RCR_aorta","24652":"P_c:RCR_aorta","24653":"P_c:RCR_aorta","24654":"P_c:RCR_aorta","24655":"P_c:RCR_aorta","24656":"P_c:RCR_aorta","24657":"P_c:RCR_aorta","24658":"P_c:RCR_aorta","24659":"P_c:RCR_aorta","24660":"P_c:RCR_aorta","24661":"P_c:RCR_aorta","24662":"P_c:RCR_aorta","24663":"P_c:RCR_aorta","24664":"P_c:RCR_aorta","24665":"P_c:RCR_aorta","24666":"P_c:RCR_aorta","24667":"P_c:RCR_aorta","24668":"P_c:RCR_aorta","24669":"P_c:RCR_aorta","24670":"P_c:RCR_aorta","24671":"P_c:RCR_aorta","24672":"P_c:RCR_aorta","24673":"P_c:RCR_aorta","24674":"P_c:RCR_aorta","24675":"P_c:RCR_aorta","24676":"P_c:RCR_aorta","24677":"P_c:RCR_aorta","24678":"P_c:RCR_aorta","24679":"P_c:RCR_aorta","24680":"P_c:RCR_aorta","24681":"P_c:RCR_aorta","24682":"P_c:RCR_aorta","24683":"P_c:RCR_aorta","24684":"P_c:RCR_aorta","24685":"P_c:RCR_aorta","24686":"P_c:RCR_aorta","24687":"P_c:RCR_aorta","24688":"P_c:RCR_aorta","24689":"P_c:RCR_aorta","24690":"P_c:RCR_aorta","24691":"P_c:RCR_aorta","24692":"P_c:RCR_aorta","24693":"P_c:RCR_aorta","24694":"P_c:RCR_aorta","24695":"P_c:RCR_aorta","24696":"P_c:RCR_aorta","24697":"P_c:RCR_aorta","24698":"P_c:RCR_aorta","24699":"P_c:RCR_aorta","24700":"P_c:RCR_aorta","24701":"P_c:RCR_aorta","24702":"P_c:RCR_aorta","24703":"P_c:RCR_aorta","24704":"P_c:RCR_aorta","24705":"P_c:RCR_aorta","24706":"P_c:RCR_aorta","24707":"P_c:RCR_aorta","24708":"P_c:RCR_aorta","24709":"P_c:RCR_aorta","24710":"P_c:RCR_aorta","24711":"P_c:RCR_aorta","24712":"P_c:RCR_aorta","24713":"P_c:RCR_aorta","24714":"P_c:RCR_aorta","24715":"P_c:RCR_aorta","24716":"P_c:RCR_aorta","24717":"P_c:RCR_aorta","24718":"P_c:RCR_aorta","24719":"P_c:RCR_aorta","24720":"P_c:RCR_aorta","24721":"P_c:RCR_aorta","24722":"P_c:RCR_aorta","24723":"P_c:RCR_aorta","24724":"P_c:RCR_aorta","24725":"P_c:RCR_aorta","24726":"P_c:RCR_aorta","24727":"P_c:RCR_aorta","24728":"P_c:RCR_aorta","24729":"P_c:RCR_aorta","24730":"P_c:RCR_aorta","24731":"P_c:RCR_aorta","24732":"P_c:RCR_aorta","24733":"P_c:RCR_aorta","24734":"P_c:RCR_aorta","24735":"P_c:RCR_aorta","24736":"P_c:RCR_aorta","24737":"P_c:RCR_aorta","24738":"P_c:RCR_aorta","24739":"P_c:RCR_aorta","24740":"P_c:RCR_aorta","24741":"P_c:RCR_aorta","24742":"P_c:RCR_aorta","24743":"P_c:RCR_aorta","24744":"P_c:RCR_aorta","24745":"P_c:RCR_aorta","24746":"P_c:RCR_aorta","24747":"P_c:RCR_aorta","24748":"P_c:RCR_aorta","24749":"P_c:RCR_aorta","24750":"P_c:RCR_aorta","24751":"P_c:RCR_aorta","24752":"P_c:RCR_aorta","24753":"P_c:RCR_aorta","24754":"P_c:RCR_aorta","24755":"P_c:RCR_aorta","24756":"P_c:RCR_aorta","24757":"P_c:RCR_aorta","24758":"P_c:RCR_aorta","24759":"P_c:RCR_aorta","24760":"P_c:RCR_aorta","24761":"P_c:RCR_aorta","24762":"P_c:RCR_aorta","24763":"P_c:RCR_aorta","24764":"P_c:RCR_aorta","24765":"P_c:RCR_aorta","24766":"P_c:RCR_aorta","24767":"P_c:RCR_aorta","24768":"P_c:RCR_aorta","24769":"P_c:RCR_aorta","24770":"P_c:RCR_aorta","24771":"P_c:RCR_aorta","24772":"P_c:RCR_aorta","24773":"P_c:RCR_aorta","24774":"P_c:RCR_aorta","24775":"P_c:RCR_aorta","24776":"P_c:RCR_aorta","24777":"P_c:RCR_aorta","24778":"P_c:RCR_aorta","24779":"P_c:RCR_aorta","24780":"P_c:RCR_aorta","24781":"P_c:RCR_aorta","24782":"P_c:RCR_aorta","24783":"P_c:RCR_aorta","24784":"P_c:RCR_aorta","24785":"P_c:RCR_aorta","24786":"P_c:RCR_aorta","24787":"P_c:RCR_aorta","24788":"P_c:RCR_aorta","24789":"P_c:RCR_aorta","24790":"P_c:RCR_aorta","24791":"P_c:RCR_aorta","24792":"P_c:RCR_aorta","24793":"P_c:RCR_aorta","24794":"P_c:RCR_aorta","24795":"P_c:RCR_aorta","24796":"P_c:RCR_aorta","24797":"P_c:RCR_aorta","24798":"P_c:RCR_aorta","24799":"P_c:RCR_aorta","24800":"P_c:RCR_aorta","24801":"P_c:RCR_aorta","24802":"P_c:RCR_aorta","24803":"P_c:RCR_aorta","24804":"P_c:RCR_aorta","24805":"P_c:RCR_aorta","24806":"P_c:RCR_aorta","24807":"P_c:RCR_aorta","24808":"P_c:RCR_aorta","24809":"P_c:RCR_aorta","24810":"P_c:RCR_aorta","24811":"P_c:RCR_aorta","24812":"P_c:RCR_aorta","24813":"P_c:RCR_aorta","24814":"P_c:RCR_aorta","24815":"P_c:RCR_aorta","24816":"P_c:RCR_aorta","24817":"P_c:RCR_aorta","24818":"P_c:RCR_aorta","24819":"P_c:RCR_aorta","24820":"P_c:RCR_aorta","24821":"P_c:RCR_aorta","24822":"P_c:RCR_aorta","24823":"P_c:RCR_aorta","24824":"P_c:RCR_aorta","24825":"P_c:RCR_aorta","24826":"P_c:RCR_aorta","24827":"P_c:RCR_aorta","24828":"P_c:RCR_aorta","24829":"P_c:RCR_aorta","24830":"P_c:RCR_aorta","24831":"P_c:RCR_aorta","24832":"P_c:RCR_aorta","24833":"P_c:RCR_aorta","24834":"P_c:RCR_aorta","24835":"P_c:RCR_aorta","24836":"P_c:RCR_aorta","24837":"P_c:RCR_aorta","24838":"P_c:RCR_aorta","24839":"P_c:RCR_aorta","24840":"P_c:RCR_aorta","24841":"P_c:RCR_aorta","24842":"P_c:RCR_aorta","24843":"P_c:RCR_aorta","24844":"P_c:RCR_aorta","24845":"P_c:RCR_aorta","24846":"P_c:RCR_aorta","24847":"P_c:RCR_aorta","24848":"P_c:RCR_aorta","24849":"P_c:RCR_aorta","24850":"P_c:RCR_aorta","24851":"P_c:RCR_aorta","24852":"P_c:RCR_aorta","24853":"P_c:RCR_aorta","24854":"P_c:RCR_aorta","24855":"P_c:RCR_aorta","24856":"P_c:RCR_aorta","24857":"P_c:RCR_aorta","24858":"P_c:RCR_aorta","24859":"P_c:RCR_aorta","24860":"P_c:RCR_aorta","24861":"P_c:RCR_aorta","24862":"P_c:RCR_aorta","24863":"P_c:RCR_aorta","24864":"P_c:RCR_aorta","24865":"P_c:RCR_aorta","24866":"P_c:RCR_aorta","24867":"P_c:RCR_aorta","24868":"P_c:RCR_aorta","24869":"P_c:RCR_aorta","24870":"P_c:RCR_aorta","24871":"P_c:RCR_aorta","24872":"P_c:RCR_aorta","24873":"P_c:RCR_aorta","24874":"P_c:RCR_aorta","24875":"P_c:RCR_aorta","24876":"P_c:RCR_aorta","24877":"P_c:RCR_aorta","24878":"P_c:RCR_aorta","24879":"P_c:RCR_aorta","24880":"P_c:RCR_aorta","24881":"P_c:RCR_aorta","24882":"P_c:RCR_aorta","24883":"P_c:RCR_aorta","24884":"P_c:RCR_aorta","24885":"P_c:RCR_aorta","24886":"P_c:RCR_aorta","24887":"P_c:RCR_aorta","24888":"P_c:RCR_aorta","24889":"P_c:RCR_aorta","24890":"P_c:RCR_aorta","24891":"P_c:RCR_aorta","24892":"P_c:RCR_aorta","24893":"P_c:RCR_aorta","24894":"P_c:RCR_aorta","24895":"P_c:RCR_aorta","24896":"P_c:RCR_aorta","24897":"P_c:RCR_aorta","24898":"P_c:RCR_aorta","24899":"P_c:RCR_aorta","24900":"P_c:RCR_aorta","24901":"P_c:RCR_aorta","24902":"P_c:RCR_aorta","24903":"P_c:RCR_aorta","24904":"P_c:RCR_aorta","24905":"P_c:RCR_aorta","24906":"P_c:RCR_aorta","24907":"P_c:RCR_aorta","24908":"P_c:RCR_aorta","24909":"P_c:RCR_aorta","24910":"P_c:RCR_aorta","24911":"P_c:RCR_aorta","24912":"P_c:RCR_aorta","24913":"P_c:RCR_aorta","24914":"P_c:RCR_aorta","24915":"P_c:RCR_aorta","24916":"P_c:RCR_aorta","24917":"P_c:RCR_aorta","24918":"P_c:RCR_aorta","24919":"P_c:RCR_aorta","24920":"P_c:RCR_aorta","24921":"P_c:RCR_aorta","24922":"P_c:RCR_aorta","24923":"P_c:RCR_aorta","24924":"P_c:RCR_aorta","24925":"P_c:RCR_aorta","24926":"P_c:RCR_aorta","24927":"P_c:RCR_aorta","24928":"P_c:RCR_aorta","24929":"P_c:RCR_aorta","24930":"P_c:RCR_aorta","24931":"P_c:RCR_aorta","24932":"P_c:RCR_aorta","24933":"P_c:RCR_aorta","24934":"P_c:RCR_aorta","24935":"P_c:RCR_aorta","24936":"P_c:RCR_aorta","24937":"P_c:RCR_aorta","24938":"P_c:RCR_aorta","24939":"P_c:RCR_aorta","24940":"P_c:RCR_aorta","24941":"P_c:RCR_aorta","24942":"P_c:RCR_aorta","24943":"P_c:RCR_aorta","24944":"P_c:RCR_aorta","24945":"P_c:RCR_aorta","24946":"P_c:RCR_aorta","24947":"P_c:RCR_aorta","24948":"P_c:RCR_aorta","24949":"P_c:RCR_aorta","24950":"P_c:RCR_aorta","24951":"P_c:RCR_aorta","24952":"P_c:RCR_aorta","24953":"P_c:RCR_aorta","24954":"P_c:RCR_aorta","24955":"P_c:RCR_aorta","24956":"P_c:RCR_aorta","24957":"P_c:RCR_aorta","24958":"P_c:RCR_aorta","24959":"P_c:RCR_aorta","24960":"P_c:RCR_aorta","24961":"P_c:RCR_aorta","24962":"P_c:RCR_aorta","24963":"P_c:RCR_aorta","24964":"P_c:RCR_aorta","24965":"P_c:RCR_aorta","24966":"P_c:RCR_aorta","24967":"P_c:RCR_aorta","24968":"P_c:RCR_aorta","24969":"P_c:RCR_aorta","24970":"P_c:RCR_aorta","24971":"P_c:RCR_aorta","24972":"P_c:RCR_aorta","24973":"P_c:RCR_aorta","24974":"P_c:RCR_aorta","24975":"P_c:RCR_aorta","24976":"P_c:RCR_aorta","24977":"P_c:RCR_aorta","24978":"P_c:RCR_aorta","24979":"P_c:RCR_aorta","24980":"P_c:RCR_aorta","24981":"P_c:RCR_aorta","24982":"P_c:RCR_aorta","24983":"P_c:RCR_aorta","24984":"P_c:RCR_aorta","24985":"P_c:RCR_aorta","24986":"P_c:RCR_aorta","24987":"P_c:RCR_aorta","24988":"P_c:RCR_aorta","24989":"P_c:RCR_aorta","24990":"P_c:RCR_aorta","24991":"P_c:RCR_aorta","24992":"P_c:RCR_aorta","24993":"P_c:RCR_aorta","24994":"P_c:RCR_aorta","24995":"P_c:RCR_aorta","24996":"P_c:RCR_aorta","24997":"P_c:RCR_aorta","24998":"P_c:RCR_aorta","24999":"P_c:RCR_aorta","25000":"P_c:RCR_aorta_br","25001":"P_c:RCR_aorta_br","25002":"P_c:RCR_aorta_br","25003":"P_c:RCR_aorta_br","25004":"P_c:RCR_aorta_br","25005":"P_c:RCR_aorta_br","25006":"P_c:RCR_aorta_br","25007":"P_c:RCR_aorta_br","25008":"P_c:RCR_aorta_br","25009":"P_c:RCR_aorta_br","25010":"P_c:RCR_aorta_br","25011":"P_c:RCR_aorta_br","25012":"P_c:RCR_aorta_br","25013":"P_c:RCR_aorta_br","25014":"P_c:RCR_aorta_br","25015":"P_c:RCR_aorta_br","25016":"P_c:RCR_aorta_br","25017":"P_c:RCR_aorta_br","25018":"P_c:RCR_aorta_br","25019":"P_c:RCR_aorta_br","25020":"P_c:RCR_aorta_br","25021":"P_c:RCR_aorta_br","25022":"P_c:RCR_aorta_br","25023":"P_c:RCR_aorta_br","25024":"P_c:RCR_aorta_br","25025":"P_c:RCR_aorta_br","25026":"P_c:RCR_aorta_br","25027":"P_c:RCR_aorta_br","25028":"P_c:RCR_aorta_br","25029":"P_c:RCR_aorta_br","25030":"P_c:RCR_aorta_br","25031":"P_c:RCR_aorta_br","25032":"P_c:RCR_aorta_br","25033":"P_c:RCR_aorta_br","25034":"P_c:RCR_aorta_br","25035":"P_c:RCR_aorta_br","25036":"P_c:RCR_aorta_br","25037":"P_c:RCR_aorta_br","25038":"P_c:RCR_aorta_br","25039":"P_c:RCR_aorta_br","25040":"P_c:RCR_aorta_br","25041":"P_c:RCR_aorta_br","25042":"P_c:RCR_aorta_br","25043":"P_c:RCR_aorta_br","25044":"P_c:RCR_aorta_br","25045":"P_c:RCR_aorta_br","25046":"P_c:RCR_aorta_br","25047":"P_c:RCR_aorta_br","25048":"P_c:RCR_aorta_br","25049":"P_c:RCR_aorta_br","25050":"P_c:RCR_aorta_br","25051":"P_c:RCR_aorta_br","25052":"P_c:RCR_aorta_br","25053":"P_c:RCR_aorta_br","25054":"P_c:RCR_aorta_br","25055":"P_c:RCR_aorta_br","25056":"P_c:RCR_aorta_br","25057":"P_c:RCR_aorta_br","25058":"P_c:RCR_aorta_br","25059":"P_c:RCR_aorta_br","25060":"P_c:RCR_aorta_br","25061":"P_c:RCR_aorta_br","25062":"P_c:RCR_aorta_br","25063":"P_c:RCR_aorta_br","25064":"P_c:RCR_aorta_br","25065":"P_c:RCR_aorta_br","25066":"P_c:RCR_aorta_br","25067":"P_c:RCR_aorta_br","25068":"P_c:RCR_aorta_br","25069":"P_c:RCR_aorta_br","25070":"P_c:RCR_aorta_br","25071":"P_c:RCR_aorta_br","25072":"P_c:RCR_aorta_br","25073":"P_c:RCR_aorta_br","25074":"P_c:RCR_aorta_br","25075":"P_c:RCR_aorta_br","25076":"P_c:RCR_aorta_br","25077":"P_c:RCR_aorta_br","25078":"P_c:RCR_aorta_br","25079":"P_c:RCR_aorta_br","25080":"P_c:RCR_aorta_br","25081":"P_c:RCR_aorta_br","25082":"P_c:RCR_aorta_br","25083":"P_c:RCR_aorta_br","25084":"P_c:RCR_aorta_br","25085":"P_c:RCR_aorta_br","25086":"P_c:RCR_aorta_br","25087":"P_c:RCR_aorta_br","25088":"P_c:RCR_aorta_br","25089":"P_c:RCR_aorta_br","25090":"P_c:RCR_aorta_br","25091":"P_c:RCR_aorta_br","25092":"P_c:RCR_aorta_br","25093":"P_c:RCR_aorta_br","25094":"P_c:RCR_aorta_br","25095":"P_c:RCR_aorta_br","25096":"P_c:RCR_aorta_br","25097":"P_c:RCR_aorta_br","25098":"P_c:RCR_aorta_br","25099":"P_c:RCR_aorta_br","25100":"P_c:RCR_aorta_br","25101":"P_c:RCR_aorta_br","25102":"P_c:RCR_aorta_br","25103":"P_c:RCR_aorta_br","25104":"P_c:RCR_aorta_br","25105":"P_c:RCR_aorta_br","25106":"P_c:RCR_aorta_br","25107":"P_c:RCR_aorta_br","25108":"P_c:RCR_aorta_br","25109":"P_c:RCR_aorta_br","25110":"P_c:RCR_aorta_br","25111":"P_c:RCR_aorta_br","25112":"P_c:RCR_aorta_br","25113":"P_c:RCR_aorta_br","25114":"P_c:RCR_aorta_br","25115":"P_c:RCR_aorta_br","25116":"P_c:RCR_aorta_br","25117":"P_c:RCR_aorta_br","25118":"P_c:RCR_aorta_br","25119":"P_c:RCR_aorta_br","25120":"P_c:RCR_aorta_br","25121":"P_c:RCR_aorta_br","25122":"P_c:RCR_aorta_br","25123":"P_c:RCR_aorta_br","25124":"P_c:RCR_aorta_br","25125":"P_c:RCR_aorta_br","25126":"P_c:RCR_aorta_br","25127":"P_c:RCR_aorta_br","25128":"P_c:RCR_aorta_br","25129":"P_c:RCR_aorta_br","25130":"P_c:RCR_aorta_br","25131":"P_c:RCR_aorta_br","25132":"P_c:RCR_aorta_br","25133":"P_c:RCR_aorta_br","25134":"P_c:RCR_aorta_br","25135":"P_c:RCR_aorta_br","25136":"P_c:RCR_aorta_br","25137":"P_c:RCR_aorta_br","25138":"P_c:RCR_aorta_br","25139":"P_c:RCR_aorta_br","25140":"P_c:RCR_aorta_br","25141":"P_c:RCR_aorta_br","25142":"P_c:RCR_aorta_br","25143":"P_c:RCR_aorta_br","25144":"P_c:RCR_aorta_br","25145":"P_c:RCR_aorta_br","25146":"P_c:RCR_aorta_br","25147":"P_c:RCR_aorta_br","25148":"P_c:RCR_aorta_br","25149":"P_c:RCR_aorta_br","25150":"P_c:RCR_aorta_br","25151":"P_c:RCR_aorta_br","25152":"P_c:RCR_aorta_br","25153":"P_c:RCR_aorta_br","25154":"P_c:RCR_aorta_br","25155":"P_c:RCR_aorta_br","25156":"P_c:RCR_aorta_br","25157":"P_c:RCR_aorta_br","25158":"P_c:RCR_aorta_br","25159":"P_c:RCR_aorta_br","25160":"P_c:RCR_aorta_br","25161":"P_c:RCR_aorta_br","25162":"P_c:RCR_aorta_br","25163":"P_c:RCR_aorta_br","25164":"P_c:RCR_aorta_br","25165":"P_c:RCR_aorta_br","25166":"P_c:RCR_aorta_br","25167":"P_c:RCR_aorta_br","25168":"P_c:RCR_aorta_br","25169":"P_c:RCR_aorta_br","25170":"P_c:RCR_aorta_br","25171":"P_c:RCR_aorta_br","25172":"P_c:RCR_aorta_br","25173":"P_c:RCR_aorta_br","25174":"P_c:RCR_aorta_br","25175":"P_c:RCR_aorta_br","25176":"P_c:RCR_aorta_br","25177":"P_c:RCR_aorta_br","25178":"P_c:RCR_aorta_br","25179":"P_c:RCR_aorta_br","25180":"P_c:RCR_aorta_br","25181":"P_c:RCR_aorta_br","25182":"P_c:RCR_aorta_br","25183":"P_c:RCR_aorta_br","25184":"P_c:RCR_aorta_br","25185":"P_c:RCR_aorta_br","25186":"P_c:RCR_aorta_br","25187":"P_c:RCR_aorta_br","25188":"P_c:RCR_aorta_br","25189":"P_c:RCR_aorta_br","25190":"P_c:RCR_aorta_br","25191":"P_c:RCR_aorta_br","25192":"P_c:RCR_aorta_br","25193":"P_c:RCR_aorta_br","25194":"P_c:RCR_aorta_br","25195":"P_c:RCR_aorta_br","25196":"P_c:RCR_aorta_br","25197":"P_c:RCR_aorta_br","25198":"P_c:RCR_aorta_br","25199":"P_c:RCR_aorta_br","25200":"P_c:RCR_aorta_br","25201":"P_c:RCR_aorta_br","25202":"P_c:RCR_aorta_br","25203":"P_c:RCR_aorta_br","25204":"P_c:RCR_aorta_br","25205":"P_c:RCR_aorta_br","25206":"P_c:RCR_aorta_br","25207":"P_c:RCR_aorta_br","25208":"P_c:RCR_aorta_br","25209":"P_c:RCR_aorta_br","25210":"P_c:RCR_aorta_br","25211":"P_c:RCR_aorta_br","25212":"P_c:RCR_aorta_br","25213":"P_c:RCR_aorta_br","25214":"P_c:RCR_aorta_br","25215":"P_c:RCR_aorta_br","25216":"P_c:RCR_aorta_br","25217":"P_c:RCR_aorta_br","25218":"P_c:RCR_aorta_br","25219":"P_c:RCR_aorta_br","25220":"P_c:RCR_aorta_br","25221":"P_c:RCR_aorta_br","25222":"P_c:RCR_aorta_br","25223":"P_c:RCR_aorta_br","25224":"P_c:RCR_aorta_br","25225":"P_c:RCR_aorta_br","25226":"P_c:RCR_aorta_br","25227":"P_c:RCR_aorta_br","25228":"P_c:RCR_aorta_br","25229":"P_c:RCR_aorta_br","25230":"P_c:RCR_aorta_br","25231":"P_c:RCR_aorta_br","25232":"P_c:RCR_aorta_br","25233":"P_c:RCR_aorta_br","25234":"P_c:RCR_aorta_br","25235":"P_c:RCR_aorta_br","25236":"P_c:RCR_aorta_br","25237":"P_c:RCR_aorta_br","25238":"P_c:RCR_aorta_br","25239":"P_c:RCR_aorta_br","25240":"P_c:RCR_aorta_br","25241":"P_c:RCR_aorta_br","25242":"P_c:RCR_aorta_br","25243":"P_c:RCR_aorta_br","25244":"P_c:RCR_aorta_br","25245":"P_c:RCR_aorta_br","25246":"P_c:RCR_aorta_br","25247":"P_c:RCR_aorta_br","25248":"P_c:RCR_aorta_br","25249":"P_c:RCR_aorta_br","25250":"P_c:RCR_aorta_br","25251":"P_c:RCR_aorta_br","25252":"P_c:RCR_aorta_br","25253":"P_c:RCR_aorta_br","25254":"P_c:RCR_aorta_br","25255":"P_c:RCR_aorta_br","25256":"P_c:RCR_aorta_br","25257":"P_c:RCR_aorta_br","25258":"P_c:RCR_aorta_br","25259":"P_c:RCR_aorta_br","25260":"P_c:RCR_aorta_br","25261":"P_c:RCR_aorta_br","25262":"P_c:RCR_aorta_br","25263":"P_c:RCR_aorta_br","25264":"P_c:RCR_aorta_br","25265":"P_c:RCR_aorta_br","25266":"P_c:RCR_aorta_br","25267":"P_c:RCR_aorta_br","25268":"P_c:RCR_aorta_br","25269":"P_c:RCR_aorta_br","25270":"P_c:RCR_aorta_br","25271":"P_c:RCR_aorta_br","25272":"P_c:RCR_aorta_br","25273":"P_c:RCR_aorta_br","25274":"P_c:RCR_aorta_br","25275":"P_c:RCR_aorta_br","25276":"P_c:RCR_aorta_br","25277":"P_c:RCR_aorta_br","25278":"P_c:RCR_aorta_br","25279":"P_c:RCR_aorta_br","25280":"P_c:RCR_aorta_br","25281":"P_c:RCR_aorta_br","25282":"P_c:RCR_aorta_br","25283":"P_c:RCR_aorta_br","25284":"P_c:RCR_aorta_br","25285":"P_c:RCR_aorta_br","25286":"P_c:RCR_aorta_br","25287":"P_c:RCR_aorta_br","25288":"P_c:RCR_aorta_br","25289":"P_c:RCR_aorta_br","25290":"P_c:RCR_aorta_br","25291":"P_c:RCR_aorta_br","25292":"P_c:RCR_aorta_br","25293":"P_c:RCR_aorta_br","25294":"P_c:RCR_aorta_br","25295":"P_c:RCR_aorta_br","25296":"P_c:RCR_aorta_br","25297":"P_c:RCR_aorta_br","25298":"P_c:RCR_aorta_br","25299":"P_c:RCR_aorta_br","25300":"P_c:RCR_aorta_br","25301":"P_c:RCR_aorta_br","25302":"P_c:RCR_aorta_br","25303":"P_c:RCR_aorta_br","25304":"P_c:RCR_aorta_br","25305":"P_c:RCR_aorta_br","25306":"P_c:RCR_aorta_br","25307":"P_c:RCR_aorta_br","25308":"P_c:RCR_aorta_br","25309":"P_c:RCR_aorta_br","25310":"P_c:RCR_aorta_br","25311":"P_c:RCR_aorta_br","25312":"P_c:RCR_aorta_br","25313":"P_c:RCR_aorta_br","25314":"P_c:RCR_aorta_br","25315":"P_c:RCR_aorta_br","25316":"P_c:RCR_aorta_br","25317":"P_c:RCR_aorta_br","25318":"P_c:RCR_aorta_br","25319":"P_c:RCR_aorta_br","25320":"P_c:RCR_aorta_br","25321":"P_c:RCR_aorta_br","25322":"P_c:RCR_aorta_br","25323":"P_c:RCR_aorta_br","25324":"P_c:RCR_aorta_br","25325":"P_c:RCR_aorta_br","25326":"P_c:RCR_aorta_br","25327":"P_c:RCR_aorta_br","25328":"P_c:RCR_aorta_br","25329":"P_c:RCR_aorta_br","25330":"P_c:RCR_aorta_br","25331":"P_c:RCR_aorta_br","25332":"P_c:RCR_aorta_br","25333":"P_c:RCR_aorta_br","25334":"P_c:RCR_aorta_br","25335":"P_c:RCR_aorta_br","25336":"P_c:RCR_aorta_br","25337":"P_c:RCR_aorta_br","25338":"P_c:RCR_aorta_br","25339":"P_c:RCR_aorta_br","25340":"P_c:RCR_aorta_br","25341":"P_c:RCR_aorta_br","25342":"P_c:RCR_aorta_br","25343":"P_c:RCR_aorta_br","25344":"P_c:RCR_aorta_br","25345":"P_c:RCR_aorta_br","25346":"P_c:RCR_aorta_br","25347":"P_c:RCR_aorta_br","25348":"P_c:RCR_aorta_br","25349":"P_c:RCR_aorta_br","25350":"P_c:RCR_aorta_br","25351":"P_c:RCR_aorta_br","25352":"P_c:RCR_aorta_br","25353":"P_c:RCR_aorta_br","25354":"P_c:RCR_aorta_br","25355":"P_c:RCR_aorta_br","25356":"P_c:RCR_aorta_br","25357":"P_c:RCR_aorta_br","25358":"P_c:RCR_aorta_br","25359":"P_c:RCR_aorta_br","25360":"P_c:RCR_aorta_br","25361":"P_c:RCR_aorta_br","25362":"P_c:RCR_aorta_br","25363":"P_c:RCR_aorta_br","25364":"P_c:RCR_aorta_br","25365":"P_c:RCR_aorta_br","25366":"P_c:RCR_aorta_br","25367":"P_c:RCR_aorta_br","25368":"P_c:RCR_aorta_br","25369":"P_c:RCR_aorta_br","25370":"P_c:RCR_aorta_br","25371":"P_c:RCR_aorta_br","25372":"P_c:RCR_aorta_br","25373":"P_c:RCR_aorta_br","25374":"P_c:RCR_aorta_br","25375":"P_c:RCR_aorta_br","25376":"P_c:RCR_aorta_br","25377":"P_c:RCR_aorta_br","25378":"P_c:RCR_aorta_br","25379":"P_c:RCR_aorta_br","25380":"P_c:RCR_aorta_br","25381":"P_c:RCR_aorta_br","25382":"P_c:RCR_aorta_br","25383":"P_c:RCR_aorta_br","25384":"P_c:RCR_aorta_br","25385":"P_c:RCR_aorta_br","25386":"P_c:RCR_aorta_br","25387":"P_c:RCR_aorta_br","25388":"P_c:RCR_aorta_br","25389":"P_c:RCR_aorta_br","25390":"P_c:RCR_aorta_br","25391":"P_c:RCR_aorta_br","25392":"P_c:RCR_aorta_br","25393":"P_c:RCR_aorta_br","25394":"P_c:RCR_aorta_br","25395":"P_c:RCR_aorta_br","25396":"P_c:RCR_aorta_br","25397":"P_c:RCR_aorta_br","25398":"P_c:RCR_aorta_br","25399":"P_c:RCR_aorta_br","25400":"P_c:RCR_aorta_br","25401":"P_c:RCR_aorta_br","25402":"P_c:RCR_aorta_br","25403":"P_c:RCR_aorta_br","25404":"P_c:RCR_aorta_br","25405":"P_c:RCR_aorta_br","25406":"P_c:RCR_aorta_br","25407":"P_c:RCR_aorta_br","25408":"P_c:RCR_aorta_br","25409":"P_c:RCR_aorta_br","25410":"P_c:RCR_aorta_br","25411":"P_c:RCR_aorta_br","25412":"P_c:RCR_aorta_br","25413":"P_c:RCR_aorta_br","25414":"P_c:RCR_aorta_br","25415":"P_c:RCR_aorta_br","25416":"P_c:RCR_aorta_br","25417":"P_c:RCR_aorta_br","25418":"P_c:RCR_aorta_br","25419":"P_c:RCR_aorta_br","25420":"P_c:RCR_aorta_br","25421":"P_c:RCR_aorta_br","25422":"P_c:RCR_aorta_br","25423":"P_c:RCR_aorta_br","25424":"P_c:RCR_aorta_br","25425":"P_c:RCR_aorta_br","25426":"P_c:RCR_aorta_br","25427":"P_c:RCR_aorta_br","25428":"P_c:RCR_aorta_br","25429":"P_c:RCR_aorta_br","25430":"P_c:RCR_aorta_br","25431":"P_c:RCR_aorta_br","25432":"P_c:RCR_aorta_br","25433":"P_c:RCR_aorta_br","25434":"P_c:RCR_aorta_br","25435":"P_c:RCR_aorta_br","25436":"P_c:RCR_aorta_br","25437":"P_c:RCR_aorta_br","25438":"P_c:RCR_aorta_br","25439":"P_c:RCR_aorta_br","25440":"P_c:RCR_aorta_br","25441":"P_c:RCR_aorta_br","25442":"P_c:RCR_aorta_br","25443":"P_c:RCR_aorta_br","25444":"P_c:RCR_aorta_br","25445":"P_c:RCR_aorta_br","25446":"P_c:RCR_aorta_br","25447":"P_c:RCR_aorta_br","25448":"P_c:RCR_aorta_br","25449":"P_c:RCR_aorta_br","25450":"P_c:RCR_aorta_br","25451":"P_c:RCR_aorta_br","25452":"P_c:RCR_aorta_br","25453":"P_c:RCR_aorta_br","25454":"P_c:RCR_aorta_br","25455":"P_c:RCR_aorta_br","25456":"P_c:RCR_aorta_br","25457":"P_c:RCR_aorta_br","25458":"P_c:RCR_aorta_br","25459":"P_c:RCR_aorta_br","25460":"P_c:RCR_aorta_br","25461":"P_c:RCR_aorta_br","25462":"P_c:RCR_aorta_br","25463":"P_c:RCR_aorta_br","25464":"P_c:RCR_aorta_br","25465":"P_c:RCR_aorta_br","25466":"P_c:RCR_aorta_br","25467":"P_c:RCR_aorta_br","25468":"P_c:RCR_aorta_br","25469":"P_c:RCR_aorta_br","25470":"P_c:RCR_aorta_br","25471":"P_c:RCR_aorta_br","25472":"P_c:RCR_aorta_br","25473":"P_c:RCR_aorta_br","25474":"P_c:RCR_aorta_br","25475":"P_c:RCR_aorta_br","25476":"P_c:RCR_aorta_br","25477":"P_c:RCR_aorta_br","25478":"P_c:RCR_aorta_br","25479":"P_c:RCR_aorta_br","25480":"P_c:RCR_aorta_br","25481":"P_c:RCR_aorta_br","25482":"P_c:RCR_aorta_br","25483":"P_c:RCR_aorta_br","25484":"P_c:RCR_aorta_br","25485":"P_c:RCR_aorta_br","25486":"P_c:RCR_aorta_br","25487":"P_c:RCR_aorta_br","25488":"P_c:RCR_aorta_br","25489":"P_c:RCR_aorta_br","25490":"P_c:RCR_aorta_br","25491":"P_c:RCR_aorta_br","25492":"P_c:RCR_aorta_br","25493":"P_c:RCR_aorta_br","25494":"P_c:RCR_aorta_br","25495":"P_c:RCR_aorta_br","25496":"P_c:RCR_aorta_br","25497":"P_c:RCR_aorta_br","25498":"P_c:RCR_aorta_br","25499":"P_c:RCR_aorta_br","25500":"P_c:RCR_aorta_br","25501":"P_c:RCR_aorta_br","25502":"P_c:RCR_aorta_br","25503":"P_c:RCR_aorta_br","25504":"P_c:RCR_aorta_br","25505":"P_c:RCR_aorta_br","25506":"P_c:RCR_aorta_br","25507":"P_c:RCR_aorta_br","25508":"P_c:RCR_aorta_br","25509":"P_c:RCR_aorta_br","25510":"P_c:RCR_aorta_br","25511":"P_c:RCR_aorta_br","25512":"P_c:RCR_aorta_br","25513":"P_c:RCR_aorta_br","25514":"P_c:RCR_aorta_br","25515":"P_c:RCR_aorta_br","25516":"P_c:RCR_aorta_br","25517":"P_c:RCR_aorta_br","25518":"P_c:RCR_aorta_br","25519":"P_c:RCR_aorta_br","25520":"P_c:RCR_aorta_br","25521":"P_c:RCR_aorta_br","25522":"P_c:RCR_aorta_br","25523":"P_c:RCR_aorta_br","25524":"P_c:RCR_aorta_br","25525":"P_c:RCR_aorta_br","25526":"P_c:RCR_aorta_br","25527":"P_c:RCR_aorta_br","25528":"P_c:RCR_aorta_br","25529":"P_c:RCR_aorta_br","25530":"P_c:RCR_aorta_br","25531":"P_c:RCR_aorta_br","25532":"P_c:RCR_aorta_br","25533":"P_c:RCR_aorta_br","25534":"P_c:RCR_aorta_br","25535":"P_c:RCR_aorta_br","25536":"P_c:RCR_aorta_br","25537":"P_c:RCR_aorta_br","25538":"P_c:RCR_aorta_br","25539":"P_c:RCR_aorta_br","25540":"P_c:RCR_aorta_br","25541":"P_c:RCR_aorta_br","25542":"P_c:RCR_aorta_br","25543":"P_c:RCR_aorta_br","25544":"P_c:RCR_aorta_br","25545":"P_c:RCR_aorta_br","25546":"P_c:RCR_aorta_br","25547":"P_c:RCR_aorta_br","25548":"P_c:RCR_aorta_br","25549":"P_c:RCR_aorta_br","25550":"P_c:RCR_aorta_br","25551":"P_c:RCR_aorta_br","25552":"P_c:RCR_aorta_br","25553":"P_c:RCR_aorta_br","25554":"P_c:RCR_aorta_br","25555":"P_c:RCR_aorta_br","25556":"P_c:RCR_aorta_br","25557":"P_c:RCR_aorta_br","25558":"P_c:RCR_aorta_br","25559":"P_c:RCR_aorta_br","25560":"P_c:RCR_aorta_br","25561":"P_c:RCR_aorta_br","25562":"P_c:RCR_aorta_br","25563":"P_c:RCR_aorta_br","25564":"P_c:RCR_aorta_br","25565":"P_c:RCR_aorta_br","25566":"P_c:RCR_aorta_br","25567":"P_c:RCR_aorta_br","25568":"P_c:RCR_aorta_br","25569":"P_c:RCR_aorta_br","25570":"P_c:RCR_aorta_br","25571":"P_c:RCR_aorta_br","25572":"P_c:RCR_aorta_br","25573":"P_c:RCR_aorta_br","25574":"P_c:RCR_aorta_br","25575":"P_c:RCR_aorta_br","25576":"P_c:RCR_aorta_br","25577":"P_c:RCR_aorta_br","25578":"P_c:RCR_aorta_br","25579":"P_c:RCR_aorta_br","25580":"P_c:RCR_aorta_br","25581":"P_c:RCR_aorta_br","25582":"P_c:RCR_aorta_br","25583":"P_c:RCR_aorta_br","25584":"P_c:RCR_aorta_br","25585":"P_c:RCR_aorta_br","25586":"P_c:RCR_aorta_br","25587":"P_c:RCR_aorta_br","25588":"P_c:RCR_aorta_br","25589":"P_c:RCR_aorta_br","25590":"P_c:RCR_aorta_br","25591":"P_c:RCR_aorta_br","25592":"P_c:RCR_aorta_br","25593":"P_c:RCR_aorta_br","25594":"P_c:RCR_aorta_br","25595":"P_c:RCR_aorta_br","25596":"P_c:RCR_aorta_br","25597":"P_c:RCR_aorta_br","25598":"P_c:RCR_aorta_br","25599":"P_c:RCR_aorta_br","25600":"P_c:RCR_aorta_br","25601":"P_c:RCR_aorta_br","25602":"P_c:RCR_aorta_br","25603":"P_c:RCR_aorta_br","25604":"P_c:RCR_aorta_br","25605":"P_c:RCR_aorta_br","25606":"P_c:RCR_aorta_br","25607":"P_c:RCR_aorta_br","25608":"P_c:RCR_aorta_br","25609":"P_c:RCR_aorta_br","25610":"P_c:RCR_aorta_br","25611":"P_c:RCR_aorta_br","25612":"P_c:RCR_aorta_br","25613":"P_c:RCR_aorta_br","25614":"P_c:RCR_aorta_br","25615":"P_c:RCR_aorta_br","25616":"P_c:RCR_aorta_br","25617":"P_c:RCR_aorta_br","25618":"P_c:RCR_aorta_br","25619":"P_c:RCR_aorta_br","25620":"P_c:RCR_aorta_br","25621":"P_c:RCR_aorta_br","25622":"P_c:RCR_aorta_br","25623":"P_c:RCR_aorta_br","25624":"P_c:RCR_aorta_br","25625":"P_c:RCR_aorta_br","25626":"P_c:RCR_aorta_br","25627":"P_c:RCR_aorta_br","25628":"P_c:RCR_aorta_br","25629":"P_c:RCR_aorta_br","25630":"P_c:RCR_aorta_br","25631":"P_c:RCR_aorta_br","25632":"P_c:RCR_aorta_br","25633":"P_c:RCR_aorta_br","25634":"P_c:RCR_aorta_br","25635":"P_c:RCR_aorta_br","25636":"P_c:RCR_aorta_br","25637":"P_c:RCR_aorta_br","25638":"P_c:RCR_aorta_br","25639":"P_c:RCR_aorta_br","25640":"P_c:RCR_aorta_br","25641":"P_c:RCR_aorta_br","25642":"P_c:RCR_aorta_br","25643":"P_c:RCR_aorta_br","25644":"P_c:RCR_aorta_br","25645":"P_c:RCR_aorta_br","25646":"P_c:RCR_aorta_br","25647":"P_c:RCR_aorta_br","25648":"P_c:RCR_aorta_br","25649":"P_c:RCR_aorta_br","25650":"P_c:RCR_aorta_br","25651":"P_c:RCR_aorta_br","25652":"P_c:RCR_aorta_br","25653":"P_c:RCR_aorta_br","25654":"P_c:RCR_aorta_br","25655":"P_c:RCR_aorta_br","25656":"P_c:RCR_aorta_br","25657":"P_c:RCR_aorta_br","25658":"P_c:RCR_aorta_br","25659":"P_c:RCR_aorta_br","25660":"P_c:RCR_aorta_br","25661":"P_c:RCR_aorta_br","25662":"P_c:RCR_aorta_br","25663":"P_c:RCR_aorta_br","25664":"P_c:RCR_aorta_br","25665":"P_c:RCR_aorta_br","25666":"P_c:RCR_aorta_br","25667":"P_c:RCR_aorta_br","25668":"P_c:RCR_aorta_br","25669":"P_c:RCR_aorta_br","25670":"P_c:RCR_aorta_br","25671":"P_c:RCR_aorta_br","25672":"P_c:RCR_aorta_br","25673":"P_c:RCR_aorta_br","25674":"P_c:RCR_aorta_br","25675":"P_c:RCR_aorta_br","25676":"P_c:RCR_aorta_br","25677":"P_c:RCR_aorta_br","25678":"P_c:RCR_aorta_br","25679":"P_c:RCR_aorta_br","25680":"P_c:RCR_aorta_br","25681":"P_c:RCR_aorta_br","25682":"P_c:RCR_aorta_br","25683":"P_c:RCR_aorta_br","25684":"P_c:RCR_aorta_br","25685":"P_c:RCR_aorta_br","25686":"P_c:RCR_aorta_br","25687":"P_c:RCR_aorta_br","25688":"P_c:RCR_aorta_br","25689":"P_c:RCR_aorta_br","25690":"P_c:RCR_aorta_br","25691":"P_c:RCR_aorta_br","25692":"P_c:RCR_aorta_br","25693":"P_c:RCR_aorta_br","25694":"P_c:RCR_aorta_br","25695":"P_c:RCR_aorta_br","25696":"P_c:RCR_aorta_br","25697":"P_c:RCR_aorta_br","25698":"P_c:RCR_aorta_br","25699":"P_c:RCR_aorta_br","25700":"P_c:RCR_aorta_br","25701":"P_c:RCR_aorta_br","25702":"P_c:RCR_aorta_br","25703":"P_c:RCR_aorta_br","25704":"P_c:RCR_aorta_br","25705":"P_c:RCR_aorta_br","25706":"P_c:RCR_aorta_br","25707":"P_c:RCR_aorta_br","25708":"P_c:RCR_aorta_br","25709":"P_c:RCR_aorta_br","25710":"P_c:RCR_aorta_br","25711":"P_c:RCR_aorta_br","25712":"P_c:RCR_aorta_br","25713":"P_c:RCR_aorta_br","25714":"P_c:RCR_aorta_br","25715":"P_c:RCR_aorta_br","25716":"P_c:RCR_aorta_br","25717":"P_c:RCR_aorta_br","25718":"P_c:RCR_aorta_br","25719":"P_c:RCR_aorta_br","25720":"P_c:RCR_aorta_br","25721":"P_c:RCR_aorta_br","25722":"P_c:RCR_aorta_br","25723":"P_c:RCR_aorta_br","25724":"P_c:RCR_aorta_br","25725":"P_c:RCR_aorta_br","25726":"P_c:RCR_aorta_br","25727":"P_c:RCR_aorta_br","25728":"P_c:RCR_aorta_br","25729":"P_c:RCR_aorta_br","25730":"P_c:RCR_aorta_br","25731":"P_c:RCR_aorta_br","25732":"P_c:RCR_aorta_br","25733":"P_c:RCR_aorta_br","25734":"P_c:RCR_aorta_br","25735":"P_c:RCR_aorta_br","25736":"P_c:RCR_aorta_br","25737":"P_c:RCR_aorta_br","25738":"P_c:RCR_aorta_br","25739":"P_c:RCR_aorta_br","25740":"P_c:RCR_aorta_br","25741":"P_c:RCR_aorta_br","25742":"P_c:RCR_aorta_br","25743":"P_c:RCR_aorta_br","25744":"P_c:RCR_aorta_br","25745":"P_c:RCR_aorta_br","25746":"P_c:RCR_aorta_br","25747":"P_c:RCR_aorta_br","25748":"P_c:RCR_aorta_br","25749":"P_c:RCR_aorta_br","25750":"P_c:RCR_aorta_br","25751":"P_c:RCR_aorta_br","25752":"P_c:RCR_aorta_br","25753":"P_c:RCR_aorta_br","25754":"P_c:RCR_aorta_br","25755":"P_c:RCR_aorta_br","25756":"P_c:RCR_aorta_br","25757":"P_c:RCR_aorta_br","25758":"P_c:RCR_aorta_br","25759":"P_c:RCR_aorta_br","25760":"P_c:RCR_aorta_br","25761":"P_c:RCR_aorta_br","25762":"P_c:RCR_aorta_br","25763":"P_c:RCR_aorta_br","25764":"P_c:RCR_aorta_br","25765":"P_c:RCR_aorta_br","25766":"P_c:RCR_aorta_br","25767":"P_c:RCR_aorta_br","25768":"P_c:RCR_aorta_br","25769":"P_c:RCR_aorta_br","25770":"P_c:RCR_aorta_br","25771":"P_c:RCR_aorta_br","25772":"P_c:RCR_aorta_br","25773":"P_c:RCR_aorta_br","25774":"P_c:RCR_aorta_br","25775":"P_c:RCR_aorta_br","25776":"P_c:RCR_aorta_br","25777":"P_c:RCR_aorta_br","25778":"P_c:RCR_aorta_br","25779":"P_c:RCR_aorta_br","25780":"P_c:RCR_aorta_br","25781":"P_c:RCR_aorta_br","25782":"P_c:RCR_aorta_br","25783":"P_c:RCR_aorta_br","25784":"P_c:RCR_aorta_br","25785":"P_c:RCR_aorta_br","25786":"P_c:RCR_aorta_br","25787":"P_c:RCR_aorta_br","25788":"P_c:RCR_aorta_br","25789":"P_c:RCR_aorta_br","25790":"P_c:RCR_aorta_br","25791":"P_c:RCR_aorta_br","25792":"P_c:RCR_aorta_br","25793":"P_c:RCR_aorta_br","25794":"P_c:RCR_aorta_br","25795":"P_c:RCR_aorta_br","25796":"P_c:RCR_aorta_br","25797":"P_c:RCR_aorta_br","25798":"P_c:RCR_aorta_br","25799":"P_c:RCR_aorta_br","25800":"P_c:RCR_aorta_br","25801":"P_c:RCR_aorta_br","25802":"P_c:RCR_aorta_br","25803":"P_c:RCR_aorta_br","25804":"P_c:RCR_aorta_br","25805":"P_c:RCR_aorta_br","25806":"P_c:RCR_aorta_br","25807":"P_c:RCR_aorta_br","25808":"P_c:RCR_aorta_br","25809":"P_c:RCR_aorta_br","25810":"P_c:RCR_aorta_br","25811":"P_c:RCR_aorta_br","25812":"P_c:RCR_aorta_br","25813":"P_c:RCR_aorta_br","25814":"P_c:RCR_aorta_br","25815":"P_c:RCR_aorta_br","25816":"P_c:RCR_aorta_br","25817":"P_c:RCR_aorta_br","25818":"P_c:RCR_aorta_br","25819":"P_c:RCR_aorta_br","25820":"P_c:RCR_aorta_br","25821":"P_c:RCR_aorta_br","25822":"P_c:RCR_aorta_br","25823":"P_c:RCR_aorta_br","25824":"P_c:RCR_aorta_br","25825":"P_c:RCR_aorta_br","25826":"P_c:RCR_aorta_br","25827":"P_c:RCR_aorta_br","25828":"P_c:RCR_aorta_br","25829":"P_c:RCR_aorta_br","25830":"P_c:RCR_aorta_br","25831":"P_c:RCR_aorta_br","25832":"P_c:RCR_aorta_br","25833":"P_c:RCR_aorta_br","25834":"P_c:RCR_aorta_br","25835":"P_c:RCR_aorta_br","25836":"P_c:RCR_aorta_br","25837":"P_c:RCR_aorta_br","25838":"P_c:RCR_aorta_br","25839":"P_c:RCR_aorta_br","25840":"P_c:RCR_aorta_br","25841":"P_c:RCR_aorta_br","25842":"P_c:RCR_aorta_br","25843":"P_c:RCR_aorta_br","25844":"P_c:RCR_aorta_br","25845":"P_c:RCR_aorta_br","25846":"P_c:RCR_aorta_br","25847":"P_c:RCR_aorta_br","25848":"P_c:RCR_aorta_br","25849":"P_c:RCR_aorta_br","25850":"P_c:RCR_aorta_br","25851":"P_c:RCR_aorta_br","25852":"P_c:RCR_aorta_br","25853":"P_c:RCR_aorta_br","25854":"P_c:RCR_aorta_br","25855":"P_c:RCR_aorta_br","25856":"P_c:RCR_aorta_br","25857":"P_c:RCR_aorta_br","25858":"P_c:RCR_aorta_br","25859":"P_c:RCR_aorta_br","25860":"P_c:RCR_aorta_br","25861":"P_c:RCR_aorta_br","25862":"P_c:RCR_aorta_br","25863":"P_c:RCR_aorta_br","25864":"P_c:RCR_aorta_br","25865":"P_c:RCR_aorta_br","25866":"P_c:RCR_aorta_br","25867":"P_c:RCR_aorta_br","25868":"P_c:RCR_aorta_br","25869":"P_c:RCR_aorta_br","25870":"P_c:RCR_aorta_br","25871":"P_c:RCR_aorta_br","25872":"P_c:RCR_aorta_br","25873":"P_c:RCR_aorta_br","25874":"P_c:RCR_aorta_br","25875":"P_c:RCR_aorta_br","25876":"P_c:RCR_aorta_br","25877":"P_c:RCR_aorta_br","25878":"P_c:RCR_aorta_br","25879":"P_c:RCR_aorta_br","25880":"P_c:RCR_aorta_br","25881":"P_c:RCR_aorta_br","25882":"P_c:RCR_aorta_br","25883":"P_c:RCR_aorta_br","25884":"P_c:RCR_aorta_br","25885":"P_c:RCR_aorta_br","25886":"P_c:RCR_aorta_br","25887":"P_c:RCR_aorta_br","25888":"P_c:RCR_aorta_br","25889":"P_c:RCR_aorta_br","25890":"P_c:RCR_aorta_br","25891":"P_c:RCR_aorta_br","25892":"P_c:RCR_aorta_br","25893":"P_c:RCR_aorta_br","25894":"P_c:RCR_aorta_br","25895":"P_c:RCR_aorta_br","25896":"P_c:RCR_aorta_br","25897":"P_c:RCR_aorta_br","25898":"P_c:RCR_aorta_br","25899":"P_c:RCR_aorta_br","25900":"P_c:RCR_aorta_br","25901":"P_c:RCR_aorta_br","25902":"P_c:RCR_aorta_br","25903":"P_c:RCR_aorta_br","25904":"P_c:RCR_aorta_br","25905":"P_c:RCR_aorta_br","25906":"P_c:RCR_aorta_br","25907":"P_c:RCR_aorta_br","25908":"P_c:RCR_aorta_br","25909":"P_c:RCR_aorta_br","25910":"P_c:RCR_aorta_br","25911":"P_c:RCR_aorta_br","25912":"P_c:RCR_aorta_br","25913":"P_c:RCR_aorta_br","25914":"P_c:RCR_aorta_br","25915":"P_c:RCR_aorta_br","25916":"P_c:RCR_aorta_br","25917":"P_c:RCR_aorta_br","25918":"P_c:RCR_aorta_br","25919":"P_c:RCR_aorta_br","25920":"P_c:RCR_aorta_br","25921":"P_c:RCR_aorta_br","25922":"P_c:RCR_aorta_br","25923":"P_c:RCR_aorta_br","25924":"P_c:RCR_aorta_br","25925":"P_c:RCR_aorta_br","25926":"P_c:RCR_aorta_br","25927":"P_c:RCR_aorta_br","25928":"P_c:RCR_aorta_br","25929":"P_c:RCR_aorta_br","25930":"P_c:RCR_aorta_br","25931":"P_c:RCR_aorta_br","25932":"P_c:RCR_aorta_br","25933":"P_c:RCR_aorta_br","25934":"P_c:RCR_aorta_br","25935":"P_c:RCR_aorta_br","25936":"P_c:RCR_aorta_br","25937":"P_c:RCR_aorta_br","25938":"P_c:RCR_aorta_br","25939":"P_c:RCR_aorta_br","25940":"P_c:RCR_aorta_br","25941":"P_c:RCR_aorta_br","25942":"P_c:RCR_aorta_br","25943":"P_c:RCR_aorta_br","25944":"P_c:RCR_aorta_br","25945":"P_c:RCR_aorta_br","25946":"P_c:RCR_aorta_br","25947":"P_c:RCR_aorta_br","25948":"P_c:RCR_aorta_br","25949":"P_c:RCR_aorta_br","25950":"P_c:RCR_aorta_br","25951":"P_c:RCR_aorta_br","25952":"P_c:RCR_aorta_br","25953":"P_c:RCR_aorta_br","25954":"P_c:RCR_aorta_br","25955":"P_c:RCR_aorta_br","25956":"P_c:RCR_aorta_br","25957":"P_c:RCR_aorta_br","25958":"P_c:RCR_aorta_br","25959":"P_c:RCR_aorta_br","25960":"P_c:RCR_aorta_br","25961":"P_c:RCR_aorta_br","25962":"P_c:RCR_aorta_br","25963":"P_c:RCR_aorta_br","25964":"P_c:RCR_aorta_br","25965":"P_c:RCR_aorta_br","25966":"P_c:RCR_aorta_br","25967":"P_c:RCR_aorta_br","25968":"P_c:RCR_aorta_br","25969":"P_c:RCR_aorta_br","25970":"P_c:RCR_aorta_br","25971":"P_c:RCR_aorta_br","25972":"P_c:RCR_aorta_br","25973":"P_c:RCR_aorta_br","25974":"P_c:RCR_aorta_br","25975":"P_c:RCR_aorta_br","25976":"P_c:RCR_aorta_br","25977":"P_c:RCR_aorta_br","25978":"P_c:RCR_aorta_br","25979":"P_c:RCR_aorta_br","25980":"P_c:RCR_aorta_br","25981":"P_c:RCR_aorta_br","25982":"P_c:RCR_aorta_br","25983":"P_c:RCR_aorta_br","25984":"P_c:RCR_aorta_br","25985":"P_c:RCR_aorta_br","25986":"P_c:RCR_aorta_br","25987":"P_c:RCR_aorta_br","25988":"P_c:RCR_aorta_br","25989":"P_c:RCR_aorta_br","25990":"P_c:RCR_aorta_br","25991":"P_c:RCR_aorta_br","25992":"P_c:RCR_aorta_br","25993":"P_c:RCR_aorta_br","25994":"P_c:RCR_aorta_br","25995":"P_c:RCR_aorta_br","25996":"P_c:RCR_aorta_br","25997":"P_c:RCR_aorta_br","25998":"P_c:RCR_aorta_br","25999":"P_c:RCR_aorta_br","26000":"V_RA:CLH","26001":"V_RA:CLH","26002":"V_RA:CLH","26003":"V_RA:CLH","26004":"V_RA:CLH","26005":"V_RA:CLH","26006":"V_RA:CLH","26007":"V_RA:CLH","26008":"V_RA:CLH","26009":"V_RA:CLH","26010":"V_RA:CLH","26011":"V_RA:CLH","26012":"V_RA:CLH","26013":"V_RA:CLH","26014":"V_RA:CLH","26015":"V_RA:CLH","26016":"V_RA:CLH","26017":"V_RA:CLH","26018":"V_RA:CLH","26019":"V_RA:CLH","26020":"V_RA:CLH","26021":"V_RA:CLH","26022":"V_RA:CLH","26023":"V_RA:CLH","26024":"V_RA:CLH","26025":"V_RA:CLH","26026":"V_RA:CLH","26027":"V_RA:CLH","26028":"V_RA:CLH","26029":"V_RA:CLH","26030":"V_RA:CLH","26031":"V_RA:CLH","26032":"V_RA:CLH","26033":"V_RA:CLH","26034":"V_RA:CLH","26035":"V_RA:CLH","26036":"V_RA:CLH","26037":"V_RA:CLH","26038":"V_RA:CLH","26039":"V_RA:CLH","26040":"V_RA:CLH","26041":"V_RA:CLH","26042":"V_RA:CLH","26043":"V_RA:CLH","26044":"V_RA:CLH","26045":"V_RA:CLH","26046":"V_RA:CLH","26047":"V_RA:CLH","26048":"V_RA:CLH","26049":"V_RA:CLH","26050":"V_RA:CLH","26051":"V_RA:CLH","26052":"V_RA:CLH","26053":"V_RA:CLH","26054":"V_RA:CLH","26055":"V_RA:CLH","26056":"V_RA:CLH","26057":"V_RA:CLH","26058":"V_RA:CLH","26059":"V_RA:CLH","26060":"V_RA:CLH","26061":"V_RA:CLH","26062":"V_RA:CLH","26063":"V_RA:CLH","26064":"V_RA:CLH","26065":"V_RA:CLH","26066":"V_RA:CLH","26067":"V_RA:CLH","26068":"V_RA:CLH","26069":"V_RA:CLH","26070":"V_RA:CLH","26071":"V_RA:CLH","26072":"V_RA:CLH","26073":"V_RA:CLH","26074":"V_RA:CLH","26075":"V_RA:CLH","26076":"V_RA:CLH","26077":"V_RA:CLH","26078":"V_RA:CLH","26079":"V_RA:CLH","26080":"V_RA:CLH","26081":"V_RA:CLH","26082":"V_RA:CLH","26083":"V_RA:CLH","26084":"V_RA:CLH","26085":"V_RA:CLH","26086":"V_RA:CLH","26087":"V_RA:CLH","26088":"V_RA:CLH","26089":"V_RA:CLH","26090":"V_RA:CLH","26091":"V_RA:CLH","26092":"V_RA:CLH","26093":"V_RA:CLH","26094":"V_RA:CLH","26095":"V_RA:CLH","26096":"V_RA:CLH","26097":"V_RA:CLH","26098":"V_RA:CLH","26099":"V_RA:CLH","26100":"V_RA:CLH","26101":"V_RA:CLH","26102":"V_RA:CLH","26103":"V_RA:CLH","26104":"V_RA:CLH","26105":"V_RA:CLH","26106":"V_RA:CLH","26107":"V_RA:CLH","26108":"V_RA:CLH","26109":"V_RA:CLH","26110":"V_RA:CLH","26111":"V_RA:CLH","26112":"V_RA:CLH","26113":"V_RA:CLH","26114":"V_RA:CLH","26115":"V_RA:CLH","26116":"V_RA:CLH","26117":"V_RA:CLH","26118":"V_RA:CLH","26119":"V_RA:CLH","26120":"V_RA:CLH","26121":"V_RA:CLH","26122":"V_RA:CLH","26123":"V_RA:CLH","26124":"V_RA:CLH","26125":"V_RA:CLH","26126":"V_RA:CLH","26127":"V_RA:CLH","26128":"V_RA:CLH","26129":"V_RA:CLH","26130":"V_RA:CLH","26131":"V_RA:CLH","26132":"V_RA:CLH","26133":"V_RA:CLH","26134":"V_RA:CLH","26135":"V_RA:CLH","26136":"V_RA:CLH","26137":"V_RA:CLH","26138":"V_RA:CLH","26139":"V_RA:CLH","26140":"V_RA:CLH","26141":"V_RA:CLH","26142":"V_RA:CLH","26143":"V_RA:CLH","26144":"V_RA:CLH","26145":"V_RA:CLH","26146":"V_RA:CLH","26147":"V_RA:CLH","26148":"V_RA:CLH","26149":"V_RA:CLH","26150":"V_RA:CLH","26151":"V_RA:CLH","26152":"V_RA:CLH","26153":"V_RA:CLH","26154":"V_RA:CLH","26155":"V_RA:CLH","26156":"V_RA:CLH","26157":"V_RA:CLH","26158":"V_RA:CLH","26159":"V_RA:CLH","26160":"V_RA:CLH","26161":"V_RA:CLH","26162":"V_RA:CLH","26163":"V_RA:CLH","26164":"V_RA:CLH","26165":"V_RA:CLH","26166":"V_RA:CLH","26167":"V_RA:CLH","26168":"V_RA:CLH","26169":"V_RA:CLH","26170":"V_RA:CLH","26171":"V_RA:CLH","26172":"V_RA:CLH","26173":"V_RA:CLH","26174":"V_RA:CLH","26175":"V_RA:CLH","26176":"V_RA:CLH","26177":"V_RA:CLH","26178":"V_RA:CLH","26179":"V_RA:CLH","26180":"V_RA:CLH","26181":"V_RA:CLH","26182":"V_RA:CLH","26183":"V_RA:CLH","26184":"V_RA:CLH","26185":"V_RA:CLH","26186":"V_RA:CLH","26187":"V_RA:CLH","26188":"V_RA:CLH","26189":"V_RA:CLH","26190":"V_RA:CLH","26191":"V_RA:CLH","26192":"V_RA:CLH","26193":"V_RA:CLH","26194":"V_RA:CLH","26195":"V_RA:CLH","26196":"V_RA:CLH","26197":"V_RA:CLH","26198":"V_RA:CLH","26199":"V_RA:CLH","26200":"V_RA:CLH","26201":"V_RA:CLH","26202":"V_RA:CLH","26203":"V_RA:CLH","26204":"V_RA:CLH","26205":"V_RA:CLH","26206":"V_RA:CLH","26207":"V_RA:CLH","26208":"V_RA:CLH","26209":"V_RA:CLH","26210":"V_RA:CLH","26211":"V_RA:CLH","26212":"V_RA:CLH","26213":"V_RA:CLH","26214":"V_RA:CLH","26215":"V_RA:CLH","26216":"V_RA:CLH","26217":"V_RA:CLH","26218":"V_RA:CLH","26219":"V_RA:CLH","26220":"V_RA:CLH","26221":"V_RA:CLH","26222":"V_RA:CLH","26223":"V_RA:CLH","26224":"V_RA:CLH","26225":"V_RA:CLH","26226":"V_RA:CLH","26227":"V_RA:CLH","26228":"V_RA:CLH","26229":"V_RA:CLH","26230":"V_RA:CLH","26231":"V_RA:CLH","26232":"V_RA:CLH","26233":"V_RA:CLH","26234":"V_RA:CLH","26235":"V_RA:CLH","26236":"V_RA:CLH","26237":"V_RA:CLH","26238":"V_RA:CLH","26239":"V_RA:CLH","26240":"V_RA:CLH","26241":"V_RA:CLH","26242":"V_RA:CLH","26243":"V_RA:CLH","26244":"V_RA:CLH","26245":"V_RA:CLH","26246":"V_RA:CLH","26247":"V_RA:CLH","26248":"V_RA:CLH","26249":"V_RA:CLH","26250":"V_RA:CLH","26251":"V_RA:CLH","26252":"V_RA:CLH","26253":"V_RA:CLH","26254":"V_RA:CLH","26255":"V_RA:CLH","26256":"V_RA:CLH","26257":"V_RA:CLH","26258":"V_RA:CLH","26259":"V_RA:CLH","26260":"V_RA:CLH","26261":"V_RA:CLH","26262":"V_RA:CLH","26263":"V_RA:CLH","26264":"V_RA:CLH","26265":"V_RA:CLH","26266":"V_RA:CLH","26267":"V_RA:CLH","26268":"V_RA:CLH","26269":"V_RA:CLH","26270":"V_RA:CLH","26271":"V_RA:CLH","26272":"V_RA:CLH","26273":"V_RA:CLH","26274":"V_RA:CLH","26275":"V_RA:CLH","26276":"V_RA:CLH","26277":"V_RA:CLH","26278":"V_RA:CLH","26279":"V_RA:CLH","26280":"V_RA:CLH","26281":"V_RA:CLH","26282":"V_RA:CLH","26283":"V_RA:CLH","26284":"V_RA:CLH","26285":"V_RA:CLH","26286":"V_RA:CLH","26287":"V_RA:CLH","26288":"V_RA:CLH","26289":"V_RA:CLH","26290":"V_RA:CLH","26291":"V_RA:CLH","26292":"V_RA:CLH","26293":"V_RA:CLH","26294":"V_RA:CLH","26295":"V_RA:CLH","26296":"V_RA:CLH","26297":"V_RA:CLH","26298":"V_RA:CLH","26299":"V_RA:CLH","26300":"V_RA:CLH","26301":"V_RA:CLH","26302":"V_RA:CLH","26303":"V_RA:CLH","26304":"V_RA:CLH","26305":"V_RA:CLH","26306":"V_RA:CLH","26307":"V_RA:CLH","26308":"V_RA:CLH","26309":"V_RA:CLH","26310":"V_RA:CLH","26311":"V_RA:CLH","26312":"V_RA:CLH","26313":"V_RA:CLH","26314":"V_RA:CLH","26315":"V_RA:CLH","26316":"V_RA:CLH","26317":"V_RA:CLH","26318":"V_RA:CLH","26319":"V_RA:CLH","26320":"V_RA:CLH","26321":"V_RA:CLH","26322":"V_RA:CLH","26323":"V_RA:CLH","26324":"V_RA:CLH","26325":"V_RA:CLH","26326":"V_RA:CLH","26327":"V_RA:CLH","26328":"V_RA:CLH","26329":"V_RA:CLH","26330":"V_RA:CLH","26331":"V_RA:CLH","26332":"V_RA:CLH","26333":"V_RA:CLH","26334":"V_RA:CLH","26335":"V_RA:CLH","26336":"V_RA:CLH","26337":"V_RA:CLH","26338":"V_RA:CLH","26339":"V_RA:CLH","26340":"V_RA:CLH","26341":"V_RA:CLH","26342":"V_RA:CLH","26343":"V_RA:CLH","26344":"V_RA:CLH","26345":"V_RA:CLH","26346":"V_RA:CLH","26347":"V_RA:CLH","26348":"V_RA:CLH","26349":"V_RA:CLH","26350":"V_RA:CLH","26351":"V_RA:CLH","26352":"V_RA:CLH","26353":"V_RA:CLH","26354":"V_RA:CLH","26355":"V_RA:CLH","26356":"V_RA:CLH","26357":"V_RA:CLH","26358":"V_RA:CLH","26359":"V_RA:CLH","26360":"V_RA:CLH","26361":"V_RA:CLH","26362":"V_RA:CLH","26363":"V_RA:CLH","26364":"V_RA:CLH","26365":"V_RA:CLH","26366":"V_RA:CLH","26367":"V_RA:CLH","26368":"V_RA:CLH","26369":"V_RA:CLH","26370":"V_RA:CLH","26371":"V_RA:CLH","26372":"V_RA:CLH","26373":"V_RA:CLH","26374":"V_RA:CLH","26375":"V_RA:CLH","26376":"V_RA:CLH","26377":"V_RA:CLH","26378":"V_RA:CLH","26379":"V_RA:CLH","26380":"V_RA:CLH","26381":"V_RA:CLH","26382":"V_RA:CLH","26383":"V_RA:CLH","26384":"V_RA:CLH","26385":"V_RA:CLH","26386":"V_RA:CLH","26387":"V_RA:CLH","26388":"V_RA:CLH","26389":"V_RA:CLH","26390":"V_RA:CLH","26391":"V_RA:CLH","26392":"V_RA:CLH","26393":"V_RA:CLH","26394":"V_RA:CLH","26395":"V_RA:CLH","26396":"V_RA:CLH","26397":"V_RA:CLH","26398":"V_RA:CLH","26399":"V_RA:CLH","26400":"V_RA:CLH","26401":"V_RA:CLH","26402":"V_RA:CLH","26403":"V_RA:CLH","26404":"V_RA:CLH","26405":"V_RA:CLH","26406":"V_RA:CLH","26407":"V_RA:CLH","26408":"V_RA:CLH","26409":"V_RA:CLH","26410":"V_RA:CLH","26411":"V_RA:CLH","26412":"V_RA:CLH","26413":"V_RA:CLH","26414":"V_RA:CLH","26415":"V_RA:CLH","26416":"V_RA:CLH","26417":"V_RA:CLH","26418":"V_RA:CLH","26419":"V_RA:CLH","26420":"V_RA:CLH","26421":"V_RA:CLH","26422":"V_RA:CLH","26423":"V_RA:CLH","26424":"V_RA:CLH","26425":"V_RA:CLH","26426":"V_RA:CLH","26427":"V_RA:CLH","26428":"V_RA:CLH","26429":"V_RA:CLH","26430":"V_RA:CLH","26431":"V_RA:CLH","26432":"V_RA:CLH","26433":"V_RA:CLH","26434":"V_RA:CLH","26435":"V_RA:CLH","26436":"V_RA:CLH","26437":"V_RA:CLH","26438":"V_RA:CLH","26439":"V_RA:CLH","26440":"V_RA:CLH","26441":"V_RA:CLH","26442":"V_RA:CLH","26443":"V_RA:CLH","26444":"V_RA:CLH","26445":"V_RA:CLH","26446":"V_RA:CLH","26447":"V_RA:CLH","26448":"V_RA:CLH","26449":"V_RA:CLH","26450":"V_RA:CLH","26451":"V_RA:CLH","26452":"V_RA:CLH","26453":"V_RA:CLH","26454":"V_RA:CLH","26455":"V_RA:CLH","26456":"V_RA:CLH","26457":"V_RA:CLH","26458":"V_RA:CLH","26459":"V_RA:CLH","26460":"V_RA:CLH","26461":"V_RA:CLH","26462":"V_RA:CLH","26463":"V_RA:CLH","26464":"V_RA:CLH","26465":"V_RA:CLH","26466":"V_RA:CLH","26467":"V_RA:CLH","26468":"V_RA:CLH","26469":"V_RA:CLH","26470":"V_RA:CLH","26471":"V_RA:CLH","26472":"V_RA:CLH","26473":"V_RA:CLH","26474":"V_RA:CLH","26475":"V_RA:CLH","26476":"V_RA:CLH","26477":"V_RA:CLH","26478":"V_RA:CLH","26479":"V_RA:CLH","26480":"V_RA:CLH","26481":"V_RA:CLH","26482":"V_RA:CLH","26483":"V_RA:CLH","26484":"V_RA:CLH","26485":"V_RA:CLH","26486":"V_RA:CLH","26487":"V_RA:CLH","26488":"V_RA:CLH","26489":"V_RA:CLH","26490":"V_RA:CLH","26491":"V_RA:CLH","26492":"V_RA:CLH","26493":"V_RA:CLH","26494":"V_RA:CLH","26495":"V_RA:CLH","26496":"V_RA:CLH","26497":"V_RA:CLH","26498":"V_RA:CLH","26499":"V_RA:CLH","26500":"V_RA:CLH","26501":"V_RA:CLH","26502":"V_RA:CLH","26503":"V_RA:CLH","26504":"V_RA:CLH","26505":"V_RA:CLH","26506":"V_RA:CLH","26507":"V_RA:CLH","26508":"V_RA:CLH","26509":"V_RA:CLH","26510":"V_RA:CLH","26511":"V_RA:CLH","26512":"V_RA:CLH","26513":"V_RA:CLH","26514":"V_RA:CLH","26515":"V_RA:CLH","26516":"V_RA:CLH","26517":"V_RA:CLH","26518":"V_RA:CLH","26519":"V_RA:CLH","26520":"V_RA:CLH","26521":"V_RA:CLH","26522":"V_RA:CLH","26523":"V_RA:CLH","26524":"V_RA:CLH","26525":"V_RA:CLH","26526":"V_RA:CLH","26527":"V_RA:CLH","26528":"V_RA:CLH","26529":"V_RA:CLH","26530":"V_RA:CLH","26531":"V_RA:CLH","26532":"V_RA:CLH","26533":"V_RA:CLH","26534":"V_RA:CLH","26535":"V_RA:CLH","26536":"V_RA:CLH","26537":"V_RA:CLH","26538":"V_RA:CLH","26539":"V_RA:CLH","26540":"V_RA:CLH","26541":"V_RA:CLH","26542":"V_RA:CLH","26543":"V_RA:CLH","26544":"V_RA:CLH","26545":"V_RA:CLH","26546":"V_RA:CLH","26547":"V_RA:CLH","26548":"V_RA:CLH","26549":"V_RA:CLH","26550":"V_RA:CLH","26551":"V_RA:CLH","26552":"V_RA:CLH","26553":"V_RA:CLH","26554":"V_RA:CLH","26555":"V_RA:CLH","26556":"V_RA:CLH","26557":"V_RA:CLH","26558":"V_RA:CLH","26559":"V_RA:CLH","26560":"V_RA:CLH","26561":"V_RA:CLH","26562":"V_RA:CLH","26563":"V_RA:CLH","26564":"V_RA:CLH","26565":"V_RA:CLH","26566":"V_RA:CLH","26567":"V_RA:CLH","26568":"V_RA:CLH","26569":"V_RA:CLH","26570":"V_RA:CLH","26571":"V_RA:CLH","26572":"V_RA:CLH","26573":"V_RA:CLH","26574":"V_RA:CLH","26575":"V_RA:CLH","26576":"V_RA:CLH","26577":"V_RA:CLH","26578":"V_RA:CLH","26579":"V_RA:CLH","26580":"V_RA:CLH","26581":"V_RA:CLH","26582":"V_RA:CLH","26583":"V_RA:CLH","26584":"V_RA:CLH","26585":"V_RA:CLH","26586":"V_RA:CLH","26587":"V_RA:CLH","26588":"V_RA:CLH","26589":"V_RA:CLH","26590":"V_RA:CLH","26591":"V_RA:CLH","26592":"V_RA:CLH","26593":"V_RA:CLH","26594":"V_RA:CLH","26595":"V_RA:CLH","26596":"V_RA:CLH","26597":"V_RA:CLH","26598":"V_RA:CLH","26599":"V_RA:CLH","26600":"V_RA:CLH","26601":"V_RA:CLH","26602":"V_RA:CLH","26603":"V_RA:CLH","26604":"V_RA:CLH","26605":"V_RA:CLH","26606":"V_RA:CLH","26607":"V_RA:CLH","26608":"V_RA:CLH","26609":"V_RA:CLH","26610":"V_RA:CLH","26611":"V_RA:CLH","26612":"V_RA:CLH","26613":"V_RA:CLH","26614":"V_RA:CLH","26615":"V_RA:CLH","26616":"V_RA:CLH","26617":"V_RA:CLH","26618":"V_RA:CLH","26619":"V_RA:CLH","26620":"V_RA:CLH","26621":"V_RA:CLH","26622":"V_RA:CLH","26623":"V_RA:CLH","26624":"V_RA:CLH","26625":"V_RA:CLH","26626":"V_RA:CLH","26627":"V_RA:CLH","26628":"V_RA:CLH","26629":"V_RA:CLH","26630":"V_RA:CLH","26631":"V_RA:CLH","26632":"V_RA:CLH","26633":"V_RA:CLH","26634":"V_RA:CLH","26635":"V_RA:CLH","26636":"V_RA:CLH","26637":"V_RA:CLH","26638":"V_RA:CLH","26639":"V_RA:CLH","26640":"V_RA:CLH","26641":"V_RA:CLH","26642":"V_RA:CLH","26643":"V_RA:CLH","26644":"V_RA:CLH","26645":"V_RA:CLH","26646":"V_RA:CLH","26647":"V_RA:CLH","26648":"V_RA:CLH","26649":"V_RA:CLH","26650":"V_RA:CLH","26651":"V_RA:CLH","26652":"V_RA:CLH","26653":"V_RA:CLH","26654":"V_RA:CLH","26655":"V_RA:CLH","26656":"V_RA:CLH","26657":"V_RA:CLH","26658":"V_RA:CLH","26659":"V_RA:CLH","26660":"V_RA:CLH","26661":"V_RA:CLH","26662":"V_RA:CLH","26663":"V_RA:CLH","26664":"V_RA:CLH","26665":"V_RA:CLH","26666":"V_RA:CLH","26667":"V_RA:CLH","26668":"V_RA:CLH","26669":"V_RA:CLH","26670":"V_RA:CLH","26671":"V_RA:CLH","26672":"V_RA:CLH","26673":"V_RA:CLH","26674":"V_RA:CLH","26675":"V_RA:CLH","26676":"V_RA:CLH","26677":"V_RA:CLH","26678":"V_RA:CLH","26679":"V_RA:CLH","26680":"V_RA:CLH","26681":"V_RA:CLH","26682":"V_RA:CLH","26683":"V_RA:CLH","26684":"V_RA:CLH","26685":"V_RA:CLH","26686":"V_RA:CLH","26687":"V_RA:CLH","26688":"V_RA:CLH","26689":"V_RA:CLH","26690":"V_RA:CLH","26691":"V_RA:CLH","26692":"V_RA:CLH","26693":"V_RA:CLH","26694":"V_RA:CLH","26695":"V_RA:CLH","26696":"V_RA:CLH","26697":"V_RA:CLH","26698":"V_RA:CLH","26699":"V_RA:CLH","26700":"V_RA:CLH","26701":"V_RA:CLH","26702":"V_RA:CLH","26703":"V_RA:CLH","26704":"V_RA:CLH","26705":"V_RA:CLH","26706":"V_RA:CLH","26707":"V_RA:CLH","26708":"V_RA:CLH","26709":"V_RA:CLH","26710":"V_RA:CLH","26711":"V_RA:CLH","26712":"V_RA:CLH","26713":"V_RA:CLH","26714":"V_RA:CLH","26715":"V_RA:CLH","26716":"V_RA:CLH","26717":"V_RA:CLH","26718":"V_RA:CLH","26719":"V_RA:CLH","26720":"V_RA:CLH","26721":"V_RA:CLH","26722":"V_RA:CLH","26723":"V_RA:CLH","26724":"V_RA:CLH","26725":"V_RA:CLH","26726":"V_RA:CLH","26727":"V_RA:CLH","26728":"V_RA:CLH","26729":"V_RA:CLH","26730":"V_RA:CLH","26731":"V_RA:CLH","26732":"V_RA:CLH","26733":"V_RA:CLH","26734":"V_RA:CLH","26735":"V_RA:CLH","26736":"V_RA:CLH","26737":"V_RA:CLH","26738":"V_RA:CLH","26739":"V_RA:CLH","26740":"V_RA:CLH","26741":"V_RA:CLH","26742":"V_RA:CLH","26743":"V_RA:CLH","26744":"V_RA:CLH","26745":"V_RA:CLH","26746":"V_RA:CLH","26747":"V_RA:CLH","26748":"V_RA:CLH","26749":"V_RA:CLH","26750":"V_RA:CLH","26751":"V_RA:CLH","26752":"V_RA:CLH","26753":"V_RA:CLH","26754":"V_RA:CLH","26755":"V_RA:CLH","26756":"V_RA:CLH","26757":"V_RA:CLH","26758":"V_RA:CLH","26759":"V_RA:CLH","26760":"V_RA:CLH","26761":"V_RA:CLH","26762":"V_RA:CLH","26763":"V_RA:CLH","26764":"V_RA:CLH","26765":"V_RA:CLH","26766":"V_RA:CLH","26767":"V_RA:CLH","26768":"V_RA:CLH","26769":"V_RA:CLH","26770":"V_RA:CLH","26771":"V_RA:CLH","26772":"V_RA:CLH","26773":"V_RA:CLH","26774":"V_RA:CLH","26775":"V_RA:CLH","26776":"V_RA:CLH","26777":"V_RA:CLH","26778":"V_RA:CLH","26779":"V_RA:CLH","26780":"V_RA:CLH","26781":"V_RA:CLH","26782":"V_RA:CLH","26783":"V_RA:CLH","26784":"V_RA:CLH","26785":"V_RA:CLH","26786":"V_RA:CLH","26787":"V_RA:CLH","26788":"V_RA:CLH","26789":"V_RA:CLH","26790":"V_RA:CLH","26791":"V_RA:CLH","26792":"V_RA:CLH","26793":"V_RA:CLH","26794":"V_RA:CLH","26795":"V_RA:CLH","26796":"V_RA:CLH","26797":"V_RA:CLH","26798":"V_RA:CLH","26799":"V_RA:CLH","26800":"V_RA:CLH","26801":"V_RA:CLH","26802":"V_RA:CLH","26803":"V_RA:CLH","26804":"V_RA:CLH","26805":"V_RA:CLH","26806":"V_RA:CLH","26807":"V_RA:CLH","26808":"V_RA:CLH","26809":"V_RA:CLH","26810":"V_RA:CLH","26811":"V_RA:CLH","26812":"V_RA:CLH","26813":"V_RA:CLH","26814":"V_RA:CLH","26815":"V_RA:CLH","26816":"V_RA:CLH","26817":"V_RA:CLH","26818":"V_RA:CLH","26819":"V_RA:CLH","26820":"V_RA:CLH","26821":"V_RA:CLH","26822":"V_RA:CLH","26823":"V_RA:CLH","26824":"V_RA:CLH","26825":"V_RA:CLH","26826":"V_RA:CLH","26827":"V_RA:CLH","26828":"V_RA:CLH","26829":"V_RA:CLH","26830":"V_RA:CLH","26831":"V_RA:CLH","26832":"V_RA:CLH","26833":"V_RA:CLH","26834":"V_RA:CLH","26835":"V_RA:CLH","26836":"V_RA:CLH","26837":"V_RA:CLH","26838":"V_RA:CLH","26839":"V_RA:CLH","26840":"V_RA:CLH","26841":"V_RA:CLH","26842":"V_RA:CLH","26843":"V_RA:CLH","26844":"V_RA:CLH","26845":"V_RA:CLH","26846":"V_RA:CLH","26847":"V_RA:CLH","26848":"V_RA:CLH","26849":"V_RA:CLH","26850":"V_RA:CLH","26851":"V_RA:CLH","26852":"V_RA:CLH","26853":"V_RA:CLH","26854":"V_RA:CLH","26855":"V_RA:CLH","26856":"V_RA:CLH","26857":"V_RA:CLH","26858":"V_RA:CLH","26859":"V_RA:CLH","26860":"V_RA:CLH","26861":"V_RA:CLH","26862":"V_RA:CLH","26863":"V_RA:CLH","26864":"V_RA:CLH","26865":"V_RA:CLH","26866":"V_RA:CLH","26867":"V_RA:CLH","26868":"V_RA:CLH","26869":"V_RA:CLH","26870":"V_RA:CLH","26871":"V_RA:CLH","26872":"V_RA:CLH","26873":"V_RA:CLH","26874":"V_RA:CLH","26875":"V_RA:CLH","26876":"V_RA:CLH","26877":"V_RA:CLH","26878":"V_RA:CLH","26879":"V_RA:CLH","26880":"V_RA:CLH","26881":"V_RA:CLH","26882":"V_RA:CLH","26883":"V_RA:CLH","26884":"V_RA:CLH","26885":"V_RA:CLH","26886":"V_RA:CLH","26887":"V_RA:CLH","26888":"V_RA:CLH","26889":"V_RA:CLH","26890":"V_RA:CLH","26891":"V_RA:CLH","26892":"V_RA:CLH","26893":"V_RA:CLH","26894":"V_RA:CLH","26895":"V_RA:CLH","26896":"V_RA:CLH","26897":"V_RA:CLH","26898":"V_RA:CLH","26899":"V_RA:CLH","26900":"V_RA:CLH","26901":"V_RA:CLH","26902":"V_RA:CLH","26903":"V_RA:CLH","26904":"V_RA:CLH","26905":"V_RA:CLH","26906":"V_RA:CLH","26907":"V_RA:CLH","26908":"V_RA:CLH","26909":"V_RA:CLH","26910":"V_RA:CLH","26911":"V_RA:CLH","26912":"V_RA:CLH","26913":"V_RA:CLH","26914":"V_RA:CLH","26915":"V_RA:CLH","26916":"V_RA:CLH","26917":"V_RA:CLH","26918":"V_RA:CLH","26919":"V_RA:CLH","26920":"V_RA:CLH","26921":"V_RA:CLH","26922":"V_RA:CLH","26923":"V_RA:CLH","26924":"V_RA:CLH","26925":"V_RA:CLH","26926":"V_RA:CLH","26927":"V_RA:CLH","26928":"V_RA:CLH","26929":"V_RA:CLH","26930":"V_RA:CLH","26931":"V_RA:CLH","26932":"V_RA:CLH","26933":"V_RA:CLH","26934":"V_RA:CLH","26935":"V_RA:CLH","26936":"V_RA:CLH","26937":"V_RA:CLH","26938":"V_RA:CLH","26939":"V_RA:CLH","26940":"V_RA:CLH","26941":"V_RA:CLH","26942":"V_RA:CLH","26943":"V_RA:CLH","26944":"V_RA:CLH","26945":"V_RA:CLH","26946":"V_RA:CLH","26947":"V_RA:CLH","26948":"V_RA:CLH","26949":"V_RA:CLH","26950":"V_RA:CLH","26951":"V_RA:CLH","26952":"V_RA:CLH","26953":"V_RA:CLH","26954":"V_RA:CLH","26955":"V_RA:CLH","26956":"V_RA:CLH","26957":"V_RA:CLH","26958":"V_RA:CLH","26959":"V_RA:CLH","26960":"V_RA:CLH","26961":"V_RA:CLH","26962":"V_RA:CLH","26963":"V_RA:CLH","26964":"V_RA:CLH","26965":"V_RA:CLH","26966":"V_RA:CLH","26967":"V_RA:CLH","26968":"V_RA:CLH","26969":"V_RA:CLH","26970":"V_RA:CLH","26971":"V_RA:CLH","26972":"V_RA:CLH","26973":"V_RA:CLH","26974":"V_RA:CLH","26975":"V_RA:CLH","26976":"V_RA:CLH","26977":"V_RA:CLH","26978":"V_RA:CLH","26979":"V_RA:CLH","26980":"V_RA:CLH","26981":"V_RA:CLH","26982":"V_RA:CLH","26983":"V_RA:CLH","26984":"V_RA:CLH","26985":"V_RA:CLH","26986":"V_RA:CLH","26987":"V_RA:CLH","26988":"V_RA:CLH","26989":"V_RA:CLH","26990":"V_RA:CLH","26991":"V_RA:CLH","26992":"V_RA:CLH","26993":"V_RA:CLH","26994":"V_RA:CLH","26995":"V_RA:CLH","26996":"V_RA:CLH","26997":"V_RA:CLH","26998":"V_RA:CLH","26999":"V_RA:CLH","27000":"Q_RA:CLH","27001":"Q_RA:CLH","27002":"Q_RA:CLH","27003":"Q_RA:CLH","27004":"Q_RA:CLH","27005":"Q_RA:CLH","27006":"Q_RA:CLH","27007":"Q_RA:CLH","27008":"Q_RA:CLH","27009":"Q_RA:CLH","27010":"Q_RA:CLH","27011":"Q_RA:CLH","27012":"Q_RA:CLH","27013":"Q_RA:CLH","27014":"Q_RA:CLH","27015":"Q_RA:CLH","27016":"Q_RA:CLH","27017":"Q_RA:CLH","27018":"Q_RA:CLH","27019":"Q_RA:CLH","27020":"Q_RA:CLH","27021":"Q_RA:CLH","27022":"Q_RA:CLH","27023":"Q_RA:CLH","27024":"Q_RA:CLH","27025":"Q_RA:CLH","27026":"Q_RA:CLH","27027":"Q_RA:CLH","27028":"Q_RA:CLH","27029":"Q_RA:CLH","27030":"Q_RA:CLH","27031":"Q_RA:CLH","27032":"Q_RA:CLH","27033":"Q_RA:CLH","27034":"Q_RA:CLH","27035":"Q_RA:CLH","27036":"Q_RA:CLH","27037":"Q_RA:CLH","27038":"Q_RA:CLH","27039":"Q_RA:CLH","27040":"Q_RA:CLH","27041":"Q_RA:CLH","27042":"Q_RA:CLH","27043":"Q_RA:CLH","27044":"Q_RA:CLH","27045":"Q_RA:CLH","27046":"Q_RA:CLH","27047":"Q_RA:CLH","27048":"Q_RA:CLH","27049":"Q_RA:CLH","27050":"Q_RA:CLH","27051":"Q_RA:CLH","27052":"Q_RA:CLH","27053":"Q_RA:CLH","27054":"Q_RA:CLH","27055":"Q_RA:CLH","27056":"Q_RA:CLH","27057":"Q_RA:CLH","27058":"Q_RA:CLH","27059":"Q_RA:CLH","27060":"Q_RA:CLH","27061":"Q_RA:CLH","27062":"Q_RA:CLH","27063":"Q_RA:CLH","27064":"Q_RA:CLH","27065":"Q_RA:CLH","27066":"Q_RA:CLH","27067":"Q_RA:CLH","27068":"Q_RA:CLH","27069":"Q_RA:CLH","27070":"Q_RA:CLH","27071":"Q_RA:CLH","27072":"Q_RA:CLH","27073":"Q_RA:CLH","27074":"Q_RA:CLH","27075":"Q_RA:CLH","27076":"Q_RA:CLH","27077":"Q_RA:CLH","27078":"Q_RA:CLH","27079":"Q_RA:CLH","27080":"Q_RA:CLH","27081":"Q_RA:CLH","27082":"Q_RA:CLH","27083":"Q_RA:CLH","27084":"Q_RA:CLH","27085":"Q_RA:CLH","27086":"Q_RA:CLH","27087":"Q_RA:CLH","27088":"Q_RA:CLH","27089":"Q_RA:CLH","27090":"Q_RA:CLH","27091":"Q_RA:CLH","27092":"Q_RA:CLH","27093":"Q_RA:CLH","27094":"Q_RA:CLH","27095":"Q_RA:CLH","27096":"Q_RA:CLH","27097":"Q_RA:CLH","27098":"Q_RA:CLH","27099":"Q_RA:CLH","27100":"Q_RA:CLH","27101":"Q_RA:CLH","27102":"Q_RA:CLH","27103":"Q_RA:CLH","27104":"Q_RA:CLH","27105":"Q_RA:CLH","27106":"Q_RA:CLH","27107":"Q_RA:CLH","27108":"Q_RA:CLH","27109":"Q_RA:CLH","27110":"Q_RA:CLH","27111":"Q_RA:CLH","27112":"Q_RA:CLH","27113":"Q_RA:CLH","27114":"Q_RA:CLH","27115":"Q_RA:CLH","27116":"Q_RA:CLH","27117":"Q_RA:CLH","27118":"Q_RA:CLH","27119":"Q_RA:CLH","27120":"Q_RA:CLH","27121":"Q_RA:CLH","27122":"Q_RA:CLH","27123":"Q_RA:CLH","27124":"Q_RA:CLH","27125":"Q_RA:CLH","27126":"Q_RA:CLH","27127":"Q_RA:CLH","27128":"Q_RA:CLH","27129":"Q_RA:CLH","27130":"Q_RA:CLH","27131":"Q_RA:CLH","27132":"Q_RA:CLH","27133":"Q_RA:CLH","27134":"Q_RA:CLH","27135":"Q_RA:CLH","27136":"Q_RA:CLH","27137":"Q_RA:CLH","27138":"Q_RA:CLH","27139":"Q_RA:CLH","27140":"Q_RA:CLH","27141":"Q_RA:CLH","27142":"Q_RA:CLH","27143":"Q_RA:CLH","27144":"Q_RA:CLH","27145":"Q_RA:CLH","27146":"Q_RA:CLH","27147":"Q_RA:CLH","27148":"Q_RA:CLH","27149":"Q_RA:CLH","27150":"Q_RA:CLH","27151":"Q_RA:CLH","27152":"Q_RA:CLH","27153":"Q_RA:CLH","27154":"Q_RA:CLH","27155":"Q_RA:CLH","27156":"Q_RA:CLH","27157":"Q_RA:CLH","27158":"Q_RA:CLH","27159":"Q_RA:CLH","27160":"Q_RA:CLH","27161":"Q_RA:CLH","27162":"Q_RA:CLH","27163":"Q_RA:CLH","27164":"Q_RA:CLH","27165":"Q_RA:CLH","27166":"Q_RA:CLH","27167":"Q_RA:CLH","27168":"Q_RA:CLH","27169":"Q_RA:CLH","27170":"Q_RA:CLH","27171":"Q_RA:CLH","27172":"Q_RA:CLH","27173":"Q_RA:CLH","27174":"Q_RA:CLH","27175":"Q_RA:CLH","27176":"Q_RA:CLH","27177":"Q_RA:CLH","27178":"Q_RA:CLH","27179":"Q_RA:CLH","27180":"Q_RA:CLH","27181":"Q_RA:CLH","27182":"Q_RA:CLH","27183":"Q_RA:CLH","27184":"Q_RA:CLH","27185":"Q_RA:CLH","27186":"Q_RA:CLH","27187":"Q_RA:CLH","27188":"Q_RA:CLH","27189":"Q_RA:CLH","27190":"Q_RA:CLH","27191":"Q_RA:CLH","27192":"Q_RA:CLH","27193":"Q_RA:CLH","27194":"Q_RA:CLH","27195":"Q_RA:CLH","27196":"Q_RA:CLH","27197":"Q_RA:CLH","27198":"Q_RA:CLH","27199":"Q_RA:CLH","27200":"Q_RA:CLH","27201":"Q_RA:CLH","27202":"Q_RA:CLH","27203":"Q_RA:CLH","27204":"Q_RA:CLH","27205":"Q_RA:CLH","27206":"Q_RA:CLH","27207":"Q_RA:CLH","27208":"Q_RA:CLH","27209":"Q_RA:CLH","27210":"Q_RA:CLH","27211":"Q_RA:CLH","27212":"Q_RA:CLH","27213":"Q_RA:CLH","27214":"Q_RA:CLH","27215":"Q_RA:CLH","27216":"Q_RA:CLH","27217":"Q_RA:CLH","27218":"Q_RA:CLH","27219":"Q_RA:CLH","27220":"Q_RA:CLH","27221":"Q_RA:CLH","27222":"Q_RA:CLH","27223":"Q_RA:CLH","27224":"Q_RA:CLH","27225":"Q_RA:CLH","27226":"Q_RA:CLH","27227":"Q_RA:CLH","27228":"Q_RA:CLH","27229":"Q_RA:CLH","27230":"Q_RA:CLH","27231":"Q_RA:CLH","27232":"Q_RA:CLH","27233":"Q_RA:CLH","27234":"Q_RA:CLH","27235":"Q_RA:CLH","27236":"Q_RA:CLH","27237":"Q_RA:CLH","27238":"Q_RA:CLH","27239":"Q_RA:CLH","27240":"Q_RA:CLH","27241":"Q_RA:CLH","27242":"Q_RA:CLH","27243":"Q_RA:CLH","27244":"Q_RA:CLH","27245":"Q_RA:CLH","27246":"Q_RA:CLH","27247":"Q_RA:CLH","27248":"Q_RA:CLH","27249":"Q_RA:CLH","27250":"Q_RA:CLH","27251":"Q_RA:CLH","27252":"Q_RA:CLH","27253":"Q_RA:CLH","27254":"Q_RA:CLH","27255":"Q_RA:CLH","27256":"Q_RA:CLH","27257":"Q_RA:CLH","27258":"Q_RA:CLH","27259":"Q_RA:CLH","27260":"Q_RA:CLH","27261":"Q_RA:CLH","27262":"Q_RA:CLH","27263":"Q_RA:CLH","27264":"Q_RA:CLH","27265":"Q_RA:CLH","27266":"Q_RA:CLH","27267":"Q_RA:CLH","27268":"Q_RA:CLH","27269":"Q_RA:CLH","27270":"Q_RA:CLH","27271":"Q_RA:CLH","27272":"Q_RA:CLH","27273":"Q_RA:CLH","27274":"Q_RA:CLH","27275":"Q_RA:CLH","27276":"Q_RA:CLH","27277":"Q_RA:CLH","27278":"Q_RA:CLH","27279":"Q_RA:CLH","27280":"Q_RA:CLH","27281":"Q_RA:CLH","27282":"Q_RA:CLH","27283":"Q_RA:CLH","27284":"Q_RA:CLH","27285":"Q_RA:CLH","27286":"Q_RA:CLH","27287":"Q_RA:CLH","27288":"Q_RA:CLH","27289":"Q_RA:CLH","27290":"Q_RA:CLH","27291":"Q_RA:CLH","27292":"Q_RA:CLH","27293":"Q_RA:CLH","27294":"Q_RA:CLH","27295":"Q_RA:CLH","27296":"Q_RA:CLH","27297":"Q_RA:CLH","27298":"Q_RA:CLH","27299":"Q_RA:CLH","27300":"Q_RA:CLH","27301":"Q_RA:CLH","27302":"Q_RA:CLH","27303":"Q_RA:CLH","27304":"Q_RA:CLH","27305":"Q_RA:CLH","27306":"Q_RA:CLH","27307":"Q_RA:CLH","27308":"Q_RA:CLH","27309":"Q_RA:CLH","27310":"Q_RA:CLH","27311":"Q_RA:CLH","27312":"Q_RA:CLH","27313":"Q_RA:CLH","27314":"Q_RA:CLH","27315":"Q_RA:CLH","27316":"Q_RA:CLH","27317":"Q_RA:CLH","27318":"Q_RA:CLH","27319":"Q_RA:CLH","27320":"Q_RA:CLH","27321":"Q_RA:CLH","27322":"Q_RA:CLH","27323":"Q_RA:CLH","27324":"Q_RA:CLH","27325":"Q_RA:CLH","27326":"Q_RA:CLH","27327":"Q_RA:CLH","27328":"Q_RA:CLH","27329":"Q_RA:CLH","27330":"Q_RA:CLH","27331":"Q_RA:CLH","27332":"Q_RA:CLH","27333":"Q_RA:CLH","27334":"Q_RA:CLH","27335":"Q_RA:CLH","27336":"Q_RA:CLH","27337":"Q_RA:CLH","27338":"Q_RA:CLH","27339":"Q_RA:CLH","27340":"Q_RA:CLH","27341":"Q_RA:CLH","27342":"Q_RA:CLH","27343":"Q_RA:CLH","27344":"Q_RA:CLH","27345":"Q_RA:CLH","27346":"Q_RA:CLH","27347":"Q_RA:CLH","27348":"Q_RA:CLH","27349":"Q_RA:CLH","27350":"Q_RA:CLH","27351":"Q_RA:CLH","27352":"Q_RA:CLH","27353":"Q_RA:CLH","27354":"Q_RA:CLH","27355":"Q_RA:CLH","27356":"Q_RA:CLH","27357":"Q_RA:CLH","27358":"Q_RA:CLH","27359":"Q_RA:CLH","27360":"Q_RA:CLH","27361":"Q_RA:CLH","27362":"Q_RA:CLH","27363":"Q_RA:CLH","27364":"Q_RA:CLH","27365":"Q_RA:CLH","27366":"Q_RA:CLH","27367":"Q_RA:CLH","27368":"Q_RA:CLH","27369":"Q_RA:CLH","27370":"Q_RA:CLH","27371":"Q_RA:CLH","27372":"Q_RA:CLH","27373":"Q_RA:CLH","27374":"Q_RA:CLH","27375":"Q_RA:CLH","27376":"Q_RA:CLH","27377":"Q_RA:CLH","27378":"Q_RA:CLH","27379":"Q_RA:CLH","27380":"Q_RA:CLH","27381":"Q_RA:CLH","27382":"Q_RA:CLH","27383":"Q_RA:CLH","27384":"Q_RA:CLH","27385":"Q_RA:CLH","27386":"Q_RA:CLH","27387":"Q_RA:CLH","27388":"Q_RA:CLH","27389":"Q_RA:CLH","27390":"Q_RA:CLH","27391":"Q_RA:CLH","27392":"Q_RA:CLH","27393":"Q_RA:CLH","27394":"Q_RA:CLH","27395":"Q_RA:CLH","27396":"Q_RA:CLH","27397":"Q_RA:CLH","27398":"Q_RA:CLH","27399":"Q_RA:CLH","27400":"Q_RA:CLH","27401":"Q_RA:CLH","27402":"Q_RA:CLH","27403":"Q_RA:CLH","27404":"Q_RA:CLH","27405":"Q_RA:CLH","27406":"Q_RA:CLH","27407":"Q_RA:CLH","27408":"Q_RA:CLH","27409":"Q_RA:CLH","27410":"Q_RA:CLH","27411":"Q_RA:CLH","27412":"Q_RA:CLH","27413":"Q_RA:CLH","27414":"Q_RA:CLH","27415":"Q_RA:CLH","27416":"Q_RA:CLH","27417":"Q_RA:CLH","27418":"Q_RA:CLH","27419":"Q_RA:CLH","27420":"Q_RA:CLH","27421":"Q_RA:CLH","27422":"Q_RA:CLH","27423":"Q_RA:CLH","27424":"Q_RA:CLH","27425":"Q_RA:CLH","27426":"Q_RA:CLH","27427":"Q_RA:CLH","27428":"Q_RA:CLH","27429":"Q_RA:CLH","27430":"Q_RA:CLH","27431":"Q_RA:CLH","27432":"Q_RA:CLH","27433":"Q_RA:CLH","27434":"Q_RA:CLH","27435":"Q_RA:CLH","27436":"Q_RA:CLH","27437":"Q_RA:CLH","27438":"Q_RA:CLH","27439":"Q_RA:CLH","27440":"Q_RA:CLH","27441":"Q_RA:CLH","27442":"Q_RA:CLH","27443":"Q_RA:CLH","27444":"Q_RA:CLH","27445":"Q_RA:CLH","27446":"Q_RA:CLH","27447":"Q_RA:CLH","27448":"Q_RA:CLH","27449":"Q_RA:CLH","27450":"Q_RA:CLH","27451":"Q_RA:CLH","27452":"Q_RA:CLH","27453":"Q_RA:CLH","27454":"Q_RA:CLH","27455":"Q_RA:CLH","27456":"Q_RA:CLH","27457":"Q_RA:CLH","27458":"Q_RA:CLH","27459":"Q_RA:CLH","27460":"Q_RA:CLH","27461":"Q_RA:CLH","27462":"Q_RA:CLH","27463":"Q_RA:CLH","27464":"Q_RA:CLH","27465":"Q_RA:CLH","27466":"Q_RA:CLH","27467":"Q_RA:CLH","27468":"Q_RA:CLH","27469":"Q_RA:CLH","27470":"Q_RA:CLH","27471":"Q_RA:CLH","27472":"Q_RA:CLH","27473":"Q_RA:CLH","27474":"Q_RA:CLH","27475":"Q_RA:CLH","27476":"Q_RA:CLH","27477":"Q_RA:CLH","27478":"Q_RA:CLH","27479":"Q_RA:CLH","27480":"Q_RA:CLH","27481":"Q_RA:CLH","27482":"Q_RA:CLH","27483":"Q_RA:CLH","27484":"Q_RA:CLH","27485":"Q_RA:CLH","27486":"Q_RA:CLH","27487":"Q_RA:CLH","27488":"Q_RA:CLH","27489":"Q_RA:CLH","27490":"Q_RA:CLH","27491":"Q_RA:CLH","27492":"Q_RA:CLH","27493":"Q_RA:CLH","27494":"Q_RA:CLH","27495":"Q_RA:CLH","27496":"Q_RA:CLH","27497":"Q_RA:CLH","27498":"Q_RA:CLH","27499":"Q_RA:CLH","27500":"Q_RA:CLH","27501":"Q_RA:CLH","27502":"Q_RA:CLH","27503":"Q_RA:CLH","27504":"Q_RA:CLH","27505":"Q_RA:CLH","27506":"Q_RA:CLH","27507":"Q_RA:CLH","27508":"Q_RA:CLH","27509":"Q_RA:CLH","27510":"Q_RA:CLH","27511":"Q_RA:CLH","27512":"Q_RA:CLH","27513":"Q_RA:CLH","27514":"Q_RA:CLH","27515":"Q_RA:CLH","27516":"Q_RA:CLH","27517":"Q_RA:CLH","27518":"Q_RA:CLH","27519":"Q_RA:CLH","27520":"Q_RA:CLH","27521":"Q_RA:CLH","27522":"Q_RA:CLH","27523":"Q_RA:CLH","27524":"Q_RA:CLH","27525":"Q_RA:CLH","27526":"Q_RA:CLH","27527":"Q_RA:CLH","27528":"Q_RA:CLH","27529":"Q_RA:CLH","27530":"Q_RA:CLH","27531":"Q_RA:CLH","27532":"Q_RA:CLH","27533":"Q_RA:CLH","27534":"Q_RA:CLH","27535":"Q_RA:CLH","27536":"Q_RA:CLH","27537":"Q_RA:CLH","27538":"Q_RA:CLH","27539":"Q_RA:CLH","27540":"Q_RA:CLH","27541":"Q_RA:CLH","27542":"Q_RA:CLH","27543":"Q_RA:CLH","27544":"Q_RA:CLH","27545":"Q_RA:CLH","27546":"Q_RA:CLH","27547":"Q_RA:CLH","27548":"Q_RA:CLH","27549":"Q_RA:CLH","27550":"Q_RA:CLH","27551":"Q_RA:CLH","27552":"Q_RA:CLH","27553":"Q_RA:CLH","27554":"Q_RA:CLH","27555":"Q_RA:CLH","27556":"Q_RA:CLH","27557":"Q_RA:CLH","27558":"Q_RA:CLH","27559":"Q_RA:CLH","27560":"Q_RA:CLH","27561":"Q_RA:CLH","27562":"Q_RA:CLH","27563":"Q_RA:CLH","27564":"Q_RA:CLH","27565":"Q_RA:CLH","27566":"Q_RA:CLH","27567":"Q_RA:CLH","27568":"Q_RA:CLH","27569":"Q_RA:CLH","27570":"Q_RA:CLH","27571":"Q_RA:CLH","27572":"Q_RA:CLH","27573":"Q_RA:CLH","27574":"Q_RA:CLH","27575":"Q_RA:CLH","27576":"Q_RA:CLH","27577":"Q_RA:CLH","27578":"Q_RA:CLH","27579":"Q_RA:CLH","27580":"Q_RA:CLH","27581":"Q_RA:CLH","27582":"Q_RA:CLH","27583":"Q_RA:CLH","27584":"Q_RA:CLH","27585":"Q_RA:CLH","27586":"Q_RA:CLH","27587":"Q_RA:CLH","27588":"Q_RA:CLH","27589":"Q_RA:CLH","27590":"Q_RA:CLH","27591":"Q_RA:CLH","27592":"Q_RA:CLH","27593":"Q_RA:CLH","27594":"Q_RA:CLH","27595":"Q_RA:CLH","27596":"Q_RA:CLH","27597":"Q_RA:CLH","27598":"Q_RA:CLH","27599":"Q_RA:CLH","27600":"Q_RA:CLH","27601":"Q_RA:CLH","27602":"Q_RA:CLH","27603":"Q_RA:CLH","27604":"Q_RA:CLH","27605":"Q_RA:CLH","27606":"Q_RA:CLH","27607":"Q_RA:CLH","27608":"Q_RA:CLH","27609":"Q_RA:CLH","27610":"Q_RA:CLH","27611":"Q_RA:CLH","27612":"Q_RA:CLH","27613":"Q_RA:CLH","27614":"Q_RA:CLH","27615":"Q_RA:CLH","27616":"Q_RA:CLH","27617":"Q_RA:CLH","27618":"Q_RA:CLH","27619":"Q_RA:CLH","27620":"Q_RA:CLH","27621":"Q_RA:CLH","27622":"Q_RA:CLH","27623":"Q_RA:CLH","27624":"Q_RA:CLH","27625":"Q_RA:CLH","27626":"Q_RA:CLH","27627":"Q_RA:CLH","27628":"Q_RA:CLH","27629":"Q_RA:CLH","27630":"Q_RA:CLH","27631":"Q_RA:CLH","27632":"Q_RA:CLH","27633":"Q_RA:CLH","27634":"Q_RA:CLH","27635":"Q_RA:CLH","27636":"Q_RA:CLH","27637":"Q_RA:CLH","27638":"Q_RA:CLH","27639":"Q_RA:CLH","27640":"Q_RA:CLH","27641":"Q_RA:CLH","27642":"Q_RA:CLH","27643":"Q_RA:CLH","27644":"Q_RA:CLH","27645":"Q_RA:CLH","27646":"Q_RA:CLH","27647":"Q_RA:CLH","27648":"Q_RA:CLH","27649":"Q_RA:CLH","27650":"Q_RA:CLH","27651":"Q_RA:CLH","27652":"Q_RA:CLH","27653":"Q_RA:CLH","27654":"Q_RA:CLH","27655":"Q_RA:CLH","27656":"Q_RA:CLH","27657":"Q_RA:CLH","27658":"Q_RA:CLH","27659":"Q_RA:CLH","27660":"Q_RA:CLH","27661":"Q_RA:CLH","27662":"Q_RA:CLH","27663":"Q_RA:CLH","27664":"Q_RA:CLH","27665":"Q_RA:CLH","27666":"Q_RA:CLH","27667":"Q_RA:CLH","27668":"Q_RA:CLH","27669":"Q_RA:CLH","27670":"Q_RA:CLH","27671":"Q_RA:CLH","27672":"Q_RA:CLH","27673":"Q_RA:CLH","27674":"Q_RA:CLH","27675":"Q_RA:CLH","27676":"Q_RA:CLH","27677":"Q_RA:CLH","27678":"Q_RA:CLH","27679":"Q_RA:CLH","27680":"Q_RA:CLH","27681":"Q_RA:CLH","27682":"Q_RA:CLH","27683":"Q_RA:CLH","27684":"Q_RA:CLH","27685":"Q_RA:CLH","27686":"Q_RA:CLH","27687":"Q_RA:CLH","27688":"Q_RA:CLH","27689":"Q_RA:CLH","27690":"Q_RA:CLH","27691":"Q_RA:CLH","27692":"Q_RA:CLH","27693":"Q_RA:CLH","27694":"Q_RA:CLH","27695":"Q_RA:CLH","27696":"Q_RA:CLH","27697":"Q_RA:CLH","27698":"Q_RA:CLH","27699":"Q_RA:CLH","27700":"Q_RA:CLH","27701":"Q_RA:CLH","27702":"Q_RA:CLH","27703":"Q_RA:CLH","27704":"Q_RA:CLH","27705":"Q_RA:CLH","27706":"Q_RA:CLH","27707":"Q_RA:CLH","27708":"Q_RA:CLH","27709":"Q_RA:CLH","27710":"Q_RA:CLH","27711":"Q_RA:CLH","27712":"Q_RA:CLH","27713":"Q_RA:CLH","27714":"Q_RA:CLH","27715":"Q_RA:CLH","27716":"Q_RA:CLH","27717":"Q_RA:CLH","27718":"Q_RA:CLH","27719":"Q_RA:CLH","27720":"Q_RA:CLH","27721":"Q_RA:CLH","27722":"Q_RA:CLH","27723":"Q_RA:CLH","27724":"Q_RA:CLH","27725":"Q_RA:CLH","27726":"Q_RA:CLH","27727":"Q_RA:CLH","27728":"Q_RA:CLH","27729":"Q_RA:CLH","27730":"Q_RA:CLH","27731":"Q_RA:CLH","27732":"Q_RA:CLH","27733":"Q_RA:CLH","27734":"Q_RA:CLH","27735":"Q_RA:CLH","27736":"Q_RA:CLH","27737":"Q_RA:CLH","27738":"Q_RA:CLH","27739":"Q_RA:CLH","27740":"Q_RA:CLH","27741":"Q_RA:CLH","27742":"Q_RA:CLH","27743":"Q_RA:CLH","27744":"Q_RA:CLH","27745":"Q_RA:CLH","27746":"Q_RA:CLH","27747":"Q_RA:CLH","27748":"Q_RA:CLH","27749":"Q_RA:CLH","27750":"Q_RA:CLH","27751":"Q_RA:CLH","27752":"Q_RA:CLH","27753":"Q_RA:CLH","27754":"Q_RA:CLH","27755":"Q_RA:CLH","27756":"Q_RA:CLH","27757":"Q_RA:CLH","27758":"Q_RA:CLH","27759":"Q_RA:CLH","27760":"Q_RA:CLH","27761":"Q_RA:CLH","27762":"Q_RA:CLH","27763":"Q_RA:CLH","27764":"Q_RA:CLH","27765":"Q_RA:CLH","27766":"Q_RA:CLH","27767":"Q_RA:CLH","27768":"Q_RA:CLH","27769":"Q_RA:CLH","27770":"Q_RA:CLH","27771":"Q_RA:CLH","27772":"Q_RA:CLH","27773":"Q_RA:CLH","27774":"Q_RA:CLH","27775":"Q_RA:CLH","27776":"Q_RA:CLH","27777":"Q_RA:CLH","27778":"Q_RA:CLH","27779":"Q_RA:CLH","27780":"Q_RA:CLH","27781":"Q_RA:CLH","27782":"Q_RA:CLH","27783":"Q_RA:CLH","27784":"Q_RA:CLH","27785":"Q_RA:CLH","27786":"Q_RA:CLH","27787":"Q_RA:CLH","27788":"Q_RA:CLH","27789":"Q_RA:CLH","27790":"Q_RA:CLH","27791":"Q_RA:CLH","27792":"Q_RA:CLH","27793":"Q_RA:CLH","27794":"Q_RA:CLH","27795":"Q_RA:CLH","27796":"Q_RA:CLH","27797":"Q_RA:CLH","27798":"Q_RA:CLH","27799":"Q_RA:CLH","27800":"Q_RA:CLH","27801":"Q_RA:CLH","27802":"Q_RA:CLH","27803":"Q_RA:CLH","27804":"Q_RA:CLH","27805":"Q_RA:CLH","27806":"Q_RA:CLH","27807":"Q_RA:CLH","27808":"Q_RA:CLH","27809":"Q_RA:CLH","27810":"Q_RA:CLH","27811":"Q_RA:CLH","27812":"Q_RA:CLH","27813":"Q_RA:CLH","27814":"Q_RA:CLH","27815":"Q_RA:CLH","27816":"Q_RA:CLH","27817":"Q_RA:CLH","27818":"Q_RA:CLH","27819":"Q_RA:CLH","27820":"Q_RA:CLH","27821":"Q_RA:CLH","27822":"Q_RA:CLH","27823":"Q_RA:CLH","27824":"Q_RA:CLH","27825":"Q_RA:CLH","27826":"Q_RA:CLH","27827":"Q_RA:CLH","27828":"Q_RA:CLH","27829":"Q_RA:CLH","27830":"Q_RA:CLH","27831":"Q_RA:CLH","27832":"Q_RA:CLH","27833":"Q_RA:CLH","27834":"Q_RA:CLH","27835":"Q_RA:CLH","27836":"Q_RA:CLH","27837":"Q_RA:CLH","27838":"Q_RA:CLH","27839":"Q_RA:CLH","27840":"Q_RA:CLH","27841":"Q_RA:CLH","27842":"Q_RA:CLH","27843":"Q_RA:CLH","27844":"Q_RA:CLH","27845":"Q_RA:CLH","27846":"Q_RA:CLH","27847":"Q_RA:CLH","27848":"Q_RA:CLH","27849":"Q_RA:CLH","27850":"Q_RA:CLH","27851":"Q_RA:CLH","27852":"Q_RA:CLH","27853":"Q_RA:CLH","27854":"Q_RA:CLH","27855":"Q_RA:CLH","27856":"Q_RA:CLH","27857":"Q_RA:CLH","27858":"Q_RA:CLH","27859":"Q_RA:CLH","27860":"Q_RA:CLH","27861":"Q_RA:CLH","27862":"Q_RA:CLH","27863":"Q_RA:CLH","27864":"Q_RA:CLH","27865":"Q_RA:CLH","27866":"Q_RA:CLH","27867":"Q_RA:CLH","27868":"Q_RA:CLH","27869":"Q_RA:CLH","27870":"Q_RA:CLH","27871":"Q_RA:CLH","27872":"Q_RA:CLH","27873":"Q_RA:CLH","27874":"Q_RA:CLH","27875":"Q_RA:CLH","27876":"Q_RA:CLH","27877":"Q_RA:CLH","27878":"Q_RA:CLH","27879":"Q_RA:CLH","27880":"Q_RA:CLH","27881":"Q_RA:CLH","27882":"Q_RA:CLH","27883":"Q_RA:CLH","27884":"Q_RA:CLH","27885":"Q_RA:CLH","27886":"Q_RA:CLH","27887":"Q_RA:CLH","27888":"Q_RA:CLH","27889":"Q_RA:CLH","27890":"Q_RA:CLH","27891":"Q_RA:CLH","27892":"Q_RA:CLH","27893":"Q_RA:CLH","27894":"Q_RA:CLH","27895":"Q_RA:CLH","27896":"Q_RA:CLH","27897":"Q_RA:CLH","27898":"Q_RA:CLH","27899":"Q_RA:CLH","27900":"Q_RA:CLH","27901":"Q_RA:CLH","27902":"Q_RA:CLH","27903":"Q_RA:CLH","27904":"Q_RA:CLH","27905":"Q_RA:CLH","27906":"Q_RA:CLH","27907":"Q_RA:CLH","27908":"Q_RA:CLH","27909":"Q_RA:CLH","27910":"Q_RA:CLH","27911":"Q_RA:CLH","27912":"Q_RA:CLH","27913":"Q_RA:CLH","27914":"Q_RA:CLH","27915":"Q_RA:CLH","27916":"Q_RA:CLH","27917":"Q_RA:CLH","27918":"Q_RA:CLH","27919":"Q_RA:CLH","27920":"Q_RA:CLH","27921":"Q_RA:CLH","27922":"Q_RA:CLH","27923":"Q_RA:CLH","27924":"Q_RA:CLH","27925":"Q_RA:CLH","27926":"Q_RA:CLH","27927":"Q_RA:CLH","27928":"Q_RA:CLH","27929":"Q_RA:CLH","27930":"Q_RA:CLH","27931":"Q_RA:CLH","27932":"Q_RA:CLH","27933":"Q_RA:CLH","27934":"Q_RA:CLH","27935":"Q_RA:CLH","27936":"Q_RA:CLH","27937":"Q_RA:CLH","27938":"Q_RA:CLH","27939":"Q_RA:CLH","27940":"Q_RA:CLH","27941":"Q_RA:CLH","27942":"Q_RA:CLH","27943":"Q_RA:CLH","27944":"Q_RA:CLH","27945":"Q_RA:CLH","27946":"Q_RA:CLH","27947":"Q_RA:CLH","27948":"Q_RA:CLH","27949":"Q_RA:CLH","27950":"Q_RA:CLH","27951":"Q_RA:CLH","27952":"Q_RA:CLH","27953":"Q_RA:CLH","27954":"Q_RA:CLH","27955":"Q_RA:CLH","27956":"Q_RA:CLH","27957":"Q_RA:CLH","27958":"Q_RA:CLH","27959":"Q_RA:CLH","27960":"Q_RA:CLH","27961":"Q_RA:CLH","27962":"Q_RA:CLH","27963":"Q_RA:CLH","27964":"Q_RA:CLH","27965":"Q_RA:CLH","27966":"Q_RA:CLH","27967":"Q_RA:CLH","27968":"Q_RA:CLH","27969":"Q_RA:CLH","27970":"Q_RA:CLH","27971":"Q_RA:CLH","27972":"Q_RA:CLH","27973":"Q_RA:CLH","27974":"Q_RA:CLH","27975":"Q_RA:CLH","27976":"Q_RA:CLH","27977":"Q_RA:CLH","27978":"Q_RA:CLH","27979":"Q_RA:CLH","27980":"Q_RA:CLH","27981":"Q_RA:CLH","27982":"Q_RA:CLH","27983":"Q_RA:CLH","27984":"Q_RA:CLH","27985":"Q_RA:CLH","27986":"Q_RA:CLH","27987":"Q_RA:CLH","27988":"Q_RA:CLH","27989":"Q_RA:CLH","27990":"Q_RA:CLH","27991":"Q_RA:CLH","27992":"Q_RA:CLH","27993":"Q_RA:CLH","27994":"Q_RA:CLH","27995":"Q_RA:CLH","27996":"Q_RA:CLH","27997":"Q_RA:CLH","27998":"Q_RA:CLH","27999":"Q_RA:CLH","28000":"P_RV:CLH","28001":"P_RV:CLH","28002":"P_RV:CLH","28003":"P_RV:CLH","28004":"P_RV:CLH","28005":"P_RV:CLH","28006":"P_RV:CLH","28007":"P_RV:CLH","28008":"P_RV:CLH","28009":"P_RV:CLH","28010":"P_RV:CLH","28011":"P_RV:CLH","28012":"P_RV:CLH","28013":"P_RV:CLH","28014":"P_RV:CLH","28015":"P_RV:CLH","28016":"P_RV:CLH","28017":"P_RV:CLH","28018":"P_RV:CLH","28019":"P_RV:CLH","28020":"P_RV:CLH","28021":"P_RV:CLH","28022":"P_RV:CLH","28023":"P_RV:CLH","28024":"P_RV:CLH","28025":"P_RV:CLH","28026":"P_RV:CLH","28027":"P_RV:CLH","28028":"P_RV:CLH","28029":"P_RV:CLH","28030":"P_RV:CLH","28031":"P_RV:CLH","28032":"P_RV:CLH","28033":"P_RV:CLH","28034":"P_RV:CLH","28035":"P_RV:CLH","28036":"P_RV:CLH","28037":"P_RV:CLH","28038":"P_RV:CLH","28039":"P_RV:CLH","28040":"P_RV:CLH","28041":"P_RV:CLH","28042":"P_RV:CLH","28043":"P_RV:CLH","28044":"P_RV:CLH","28045":"P_RV:CLH","28046":"P_RV:CLH","28047":"P_RV:CLH","28048":"P_RV:CLH","28049":"P_RV:CLH","28050":"P_RV:CLH","28051":"P_RV:CLH","28052":"P_RV:CLH","28053":"P_RV:CLH","28054":"P_RV:CLH","28055":"P_RV:CLH","28056":"P_RV:CLH","28057":"P_RV:CLH","28058":"P_RV:CLH","28059":"P_RV:CLH","28060":"P_RV:CLH","28061":"P_RV:CLH","28062":"P_RV:CLH","28063":"P_RV:CLH","28064":"P_RV:CLH","28065":"P_RV:CLH","28066":"P_RV:CLH","28067":"P_RV:CLH","28068":"P_RV:CLH","28069":"P_RV:CLH","28070":"P_RV:CLH","28071":"P_RV:CLH","28072":"P_RV:CLH","28073":"P_RV:CLH","28074":"P_RV:CLH","28075":"P_RV:CLH","28076":"P_RV:CLH","28077":"P_RV:CLH","28078":"P_RV:CLH","28079":"P_RV:CLH","28080":"P_RV:CLH","28081":"P_RV:CLH","28082":"P_RV:CLH","28083":"P_RV:CLH","28084":"P_RV:CLH","28085":"P_RV:CLH","28086":"P_RV:CLH","28087":"P_RV:CLH","28088":"P_RV:CLH","28089":"P_RV:CLH","28090":"P_RV:CLH","28091":"P_RV:CLH","28092":"P_RV:CLH","28093":"P_RV:CLH","28094":"P_RV:CLH","28095":"P_RV:CLH","28096":"P_RV:CLH","28097":"P_RV:CLH","28098":"P_RV:CLH","28099":"P_RV:CLH","28100":"P_RV:CLH","28101":"P_RV:CLH","28102":"P_RV:CLH","28103":"P_RV:CLH","28104":"P_RV:CLH","28105":"P_RV:CLH","28106":"P_RV:CLH","28107":"P_RV:CLH","28108":"P_RV:CLH","28109":"P_RV:CLH","28110":"P_RV:CLH","28111":"P_RV:CLH","28112":"P_RV:CLH","28113":"P_RV:CLH","28114":"P_RV:CLH","28115":"P_RV:CLH","28116":"P_RV:CLH","28117":"P_RV:CLH","28118":"P_RV:CLH","28119":"P_RV:CLH","28120":"P_RV:CLH","28121":"P_RV:CLH","28122":"P_RV:CLH","28123":"P_RV:CLH","28124":"P_RV:CLH","28125":"P_RV:CLH","28126":"P_RV:CLH","28127":"P_RV:CLH","28128":"P_RV:CLH","28129":"P_RV:CLH","28130":"P_RV:CLH","28131":"P_RV:CLH","28132":"P_RV:CLH","28133":"P_RV:CLH","28134":"P_RV:CLH","28135":"P_RV:CLH","28136":"P_RV:CLH","28137":"P_RV:CLH","28138":"P_RV:CLH","28139":"P_RV:CLH","28140":"P_RV:CLH","28141":"P_RV:CLH","28142":"P_RV:CLH","28143":"P_RV:CLH","28144":"P_RV:CLH","28145":"P_RV:CLH","28146":"P_RV:CLH","28147":"P_RV:CLH","28148":"P_RV:CLH","28149":"P_RV:CLH","28150":"P_RV:CLH","28151":"P_RV:CLH","28152":"P_RV:CLH","28153":"P_RV:CLH","28154":"P_RV:CLH","28155":"P_RV:CLH","28156":"P_RV:CLH","28157":"P_RV:CLH","28158":"P_RV:CLH","28159":"P_RV:CLH","28160":"P_RV:CLH","28161":"P_RV:CLH","28162":"P_RV:CLH","28163":"P_RV:CLH","28164":"P_RV:CLH","28165":"P_RV:CLH","28166":"P_RV:CLH","28167":"P_RV:CLH","28168":"P_RV:CLH","28169":"P_RV:CLH","28170":"P_RV:CLH","28171":"P_RV:CLH","28172":"P_RV:CLH","28173":"P_RV:CLH","28174":"P_RV:CLH","28175":"P_RV:CLH","28176":"P_RV:CLH","28177":"P_RV:CLH","28178":"P_RV:CLH","28179":"P_RV:CLH","28180":"P_RV:CLH","28181":"P_RV:CLH","28182":"P_RV:CLH","28183":"P_RV:CLH","28184":"P_RV:CLH","28185":"P_RV:CLH","28186":"P_RV:CLH","28187":"P_RV:CLH","28188":"P_RV:CLH","28189":"P_RV:CLH","28190":"P_RV:CLH","28191":"P_RV:CLH","28192":"P_RV:CLH","28193":"P_RV:CLH","28194":"P_RV:CLH","28195":"P_RV:CLH","28196":"P_RV:CLH","28197":"P_RV:CLH","28198":"P_RV:CLH","28199":"P_RV:CLH","28200":"P_RV:CLH","28201":"P_RV:CLH","28202":"P_RV:CLH","28203":"P_RV:CLH","28204":"P_RV:CLH","28205":"P_RV:CLH","28206":"P_RV:CLH","28207":"P_RV:CLH","28208":"P_RV:CLH","28209":"P_RV:CLH","28210":"P_RV:CLH","28211":"P_RV:CLH","28212":"P_RV:CLH","28213":"P_RV:CLH","28214":"P_RV:CLH","28215":"P_RV:CLH","28216":"P_RV:CLH","28217":"P_RV:CLH","28218":"P_RV:CLH","28219":"P_RV:CLH","28220":"P_RV:CLH","28221":"P_RV:CLH","28222":"P_RV:CLH","28223":"P_RV:CLH","28224":"P_RV:CLH","28225":"P_RV:CLH","28226":"P_RV:CLH","28227":"P_RV:CLH","28228":"P_RV:CLH","28229":"P_RV:CLH","28230":"P_RV:CLH","28231":"P_RV:CLH","28232":"P_RV:CLH","28233":"P_RV:CLH","28234":"P_RV:CLH","28235":"P_RV:CLH","28236":"P_RV:CLH","28237":"P_RV:CLH","28238":"P_RV:CLH","28239":"P_RV:CLH","28240":"P_RV:CLH","28241":"P_RV:CLH","28242":"P_RV:CLH","28243":"P_RV:CLH","28244":"P_RV:CLH","28245":"P_RV:CLH","28246":"P_RV:CLH","28247":"P_RV:CLH","28248":"P_RV:CLH","28249":"P_RV:CLH","28250":"P_RV:CLH","28251":"P_RV:CLH","28252":"P_RV:CLH","28253":"P_RV:CLH","28254":"P_RV:CLH","28255":"P_RV:CLH","28256":"P_RV:CLH","28257":"P_RV:CLH","28258":"P_RV:CLH","28259":"P_RV:CLH","28260":"P_RV:CLH","28261":"P_RV:CLH","28262":"P_RV:CLH","28263":"P_RV:CLH","28264":"P_RV:CLH","28265":"P_RV:CLH","28266":"P_RV:CLH","28267":"P_RV:CLH","28268":"P_RV:CLH","28269":"P_RV:CLH","28270":"P_RV:CLH","28271":"P_RV:CLH","28272":"P_RV:CLH","28273":"P_RV:CLH","28274":"P_RV:CLH","28275":"P_RV:CLH","28276":"P_RV:CLH","28277":"P_RV:CLH","28278":"P_RV:CLH","28279":"P_RV:CLH","28280":"P_RV:CLH","28281":"P_RV:CLH","28282":"P_RV:CLH","28283":"P_RV:CLH","28284":"P_RV:CLH","28285":"P_RV:CLH","28286":"P_RV:CLH","28287":"P_RV:CLH","28288":"P_RV:CLH","28289":"P_RV:CLH","28290":"P_RV:CLH","28291":"P_RV:CLH","28292":"P_RV:CLH","28293":"P_RV:CLH","28294":"P_RV:CLH","28295":"P_RV:CLH","28296":"P_RV:CLH","28297":"P_RV:CLH","28298":"P_RV:CLH","28299":"P_RV:CLH","28300":"P_RV:CLH","28301":"P_RV:CLH","28302":"P_RV:CLH","28303":"P_RV:CLH","28304":"P_RV:CLH","28305":"P_RV:CLH","28306":"P_RV:CLH","28307":"P_RV:CLH","28308":"P_RV:CLH","28309":"P_RV:CLH","28310":"P_RV:CLH","28311":"P_RV:CLH","28312":"P_RV:CLH","28313":"P_RV:CLH","28314":"P_RV:CLH","28315":"P_RV:CLH","28316":"P_RV:CLH","28317":"P_RV:CLH","28318":"P_RV:CLH","28319":"P_RV:CLH","28320":"P_RV:CLH","28321":"P_RV:CLH","28322":"P_RV:CLH","28323":"P_RV:CLH","28324":"P_RV:CLH","28325":"P_RV:CLH","28326":"P_RV:CLH","28327":"P_RV:CLH","28328":"P_RV:CLH","28329":"P_RV:CLH","28330":"P_RV:CLH","28331":"P_RV:CLH","28332":"P_RV:CLH","28333":"P_RV:CLH","28334":"P_RV:CLH","28335":"P_RV:CLH","28336":"P_RV:CLH","28337":"P_RV:CLH","28338":"P_RV:CLH","28339":"P_RV:CLH","28340":"P_RV:CLH","28341":"P_RV:CLH","28342":"P_RV:CLH","28343":"P_RV:CLH","28344":"P_RV:CLH","28345":"P_RV:CLH","28346":"P_RV:CLH","28347":"P_RV:CLH","28348":"P_RV:CLH","28349":"P_RV:CLH","28350":"P_RV:CLH","28351":"P_RV:CLH","28352":"P_RV:CLH","28353":"P_RV:CLH","28354":"P_RV:CLH","28355":"P_RV:CLH","28356":"P_RV:CLH","28357":"P_RV:CLH","28358":"P_RV:CLH","28359":"P_RV:CLH","28360":"P_RV:CLH","28361":"P_RV:CLH","28362":"P_RV:CLH","28363":"P_RV:CLH","28364":"P_RV:CLH","28365":"P_RV:CLH","28366":"P_RV:CLH","28367":"P_RV:CLH","28368":"P_RV:CLH","28369":"P_RV:CLH","28370":"P_RV:CLH","28371":"P_RV:CLH","28372":"P_RV:CLH","28373":"P_RV:CLH","28374":"P_RV:CLH","28375":"P_RV:CLH","28376":"P_RV:CLH","28377":"P_RV:CLH","28378":"P_RV:CLH","28379":"P_RV:CLH","28380":"P_RV:CLH","28381":"P_RV:CLH","28382":"P_RV:CLH","28383":"P_RV:CLH","28384":"P_RV:CLH","28385":"P_RV:CLH","28386":"P_RV:CLH","28387":"P_RV:CLH","28388":"P_RV:CLH","28389":"P_RV:CLH","28390":"P_RV:CLH","28391":"P_RV:CLH","28392":"P_RV:CLH","28393":"P_RV:CLH","28394":"P_RV:CLH","28395":"P_RV:CLH","28396":"P_RV:CLH","28397":"P_RV:CLH","28398":"P_RV:CLH","28399":"P_RV:CLH","28400":"P_RV:CLH","28401":"P_RV:CLH","28402":"P_RV:CLH","28403":"P_RV:CLH","28404":"P_RV:CLH","28405":"P_RV:CLH","28406":"P_RV:CLH","28407":"P_RV:CLH","28408":"P_RV:CLH","28409":"P_RV:CLH","28410":"P_RV:CLH","28411":"P_RV:CLH","28412":"P_RV:CLH","28413":"P_RV:CLH","28414":"P_RV:CLH","28415":"P_RV:CLH","28416":"P_RV:CLH","28417":"P_RV:CLH","28418":"P_RV:CLH","28419":"P_RV:CLH","28420":"P_RV:CLH","28421":"P_RV:CLH","28422":"P_RV:CLH","28423":"P_RV:CLH","28424":"P_RV:CLH","28425":"P_RV:CLH","28426":"P_RV:CLH","28427":"P_RV:CLH","28428":"P_RV:CLH","28429":"P_RV:CLH","28430":"P_RV:CLH","28431":"P_RV:CLH","28432":"P_RV:CLH","28433":"P_RV:CLH","28434":"P_RV:CLH","28435":"P_RV:CLH","28436":"P_RV:CLH","28437":"P_RV:CLH","28438":"P_RV:CLH","28439":"P_RV:CLH","28440":"P_RV:CLH","28441":"P_RV:CLH","28442":"P_RV:CLH","28443":"P_RV:CLH","28444":"P_RV:CLH","28445":"P_RV:CLH","28446":"P_RV:CLH","28447":"P_RV:CLH","28448":"P_RV:CLH","28449":"P_RV:CLH","28450":"P_RV:CLH","28451":"P_RV:CLH","28452":"P_RV:CLH","28453":"P_RV:CLH","28454":"P_RV:CLH","28455":"P_RV:CLH","28456":"P_RV:CLH","28457":"P_RV:CLH","28458":"P_RV:CLH","28459":"P_RV:CLH","28460":"P_RV:CLH","28461":"P_RV:CLH","28462":"P_RV:CLH","28463":"P_RV:CLH","28464":"P_RV:CLH","28465":"P_RV:CLH","28466":"P_RV:CLH","28467":"P_RV:CLH","28468":"P_RV:CLH","28469":"P_RV:CLH","28470":"P_RV:CLH","28471":"P_RV:CLH","28472":"P_RV:CLH","28473":"P_RV:CLH","28474":"P_RV:CLH","28475":"P_RV:CLH","28476":"P_RV:CLH","28477":"P_RV:CLH","28478":"P_RV:CLH","28479":"P_RV:CLH","28480":"P_RV:CLH","28481":"P_RV:CLH","28482":"P_RV:CLH","28483":"P_RV:CLH","28484":"P_RV:CLH","28485":"P_RV:CLH","28486":"P_RV:CLH","28487":"P_RV:CLH","28488":"P_RV:CLH","28489":"P_RV:CLH","28490":"P_RV:CLH","28491":"P_RV:CLH","28492":"P_RV:CLH","28493":"P_RV:CLH","28494":"P_RV:CLH","28495":"P_RV:CLH","28496":"P_RV:CLH","28497":"P_RV:CLH","28498":"P_RV:CLH","28499":"P_RV:CLH","28500":"P_RV:CLH","28501":"P_RV:CLH","28502":"P_RV:CLH","28503":"P_RV:CLH","28504":"P_RV:CLH","28505":"P_RV:CLH","28506":"P_RV:CLH","28507":"P_RV:CLH","28508":"P_RV:CLH","28509":"P_RV:CLH","28510":"P_RV:CLH","28511":"P_RV:CLH","28512":"P_RV:CLH","28513":"P_RV:CLH","28514":"P_RV:CLH","28515":"P_RV:CLH","28516":"P_RV:CLH","28517":"P_RV:CLH","28518":"P_RV:CLH","28519":"P_RV:CLH","28520":"P_RV:CLH","28521":"P_RV:CLH","28522":"P_RV:CLH","28523":"P_RV:CLH","28524":"P_RV:CLH","28525":"P_RV:CLH","28526":"P_RV:CLH","28527":"P_RV:CLH","28528":"P_RV:CLH","28529":"P_RV:CLH","28530":"P_RV:CLH","28531":"P_RV:CLH","28532":"P_RV:CLH","28533":"P_RV:CLH","28534":"P_RV:CLH","28535":"P_RV:CLH","28536":"P_RV:CLH","28537":"P_RV:CLH","28538":"P_RV:CLH","28539":"P_RV:CLH","28540":"P_RV:CLH","28541":"P_RV:CLH","28542":"P_RV:CLH","28543":"P_RV:CLH","28544":"P_RV:CLH","28545":"P_RV:CLH","28546":"P_RV:CLH","28547":"P_RV:CLH","28548":"P_RV:CLH","28549":"P_RV:CLH","28550":"P_RV:CLH","28551":"P_RV:CLH","28552":"P_RV:CLH","28553":"P_RV:CLH","28554":"P_RV:CLH","28555":"P_RV:CLH","28556":"P_RV:CLH","28557":"P_RV:CLH","28558":"P_RV:CLH","28559":"P_RV:CLH","28560":"P_RV:CLH","28561":"P_RV:CLH","28562":"P_RV:CLH","28563":"P_RV:CLH","28564":"P_RV:CLH","28565":"P_RV:CLH","28566":"P_RV:CLH","28567":"P_RV:CLH","28568":"P_RV:CLH","28569":"P_RV:CLH","28570":"P_RV:CLH","28571":"P_RV:CLH","28572":"P_RV:CLH","28573":"P_RV:CLH","28574":"P_RV:CLH","28575":"P_RV:CLH","28576":"P_RV:CLH","28577":"P_RV:CLH","28578":"P_RV:CLH","28579":"P_RV:CLH","28580":"P_RV:CLH","28581":"P_RV:CLH","28582":"P_RV:CLH","28583":"P_RV:CLH","28584":"P_RV:CLH","28585":"P_RV:CLH","28586":"P_RV:CLH","28587":"P_RV:CLH","28588":"P_RV:CLH","28589":"P_RV:CLH","28590":"P_RV:CLH","28591":"P_RV:CLH","28592":"P_RV:CLH","28593":"P_RV:CLH","28594":"P_RV:CLH","28595":"P_RV:CLH","28596":"P_RV:CLH","28597":"P_RV:CLH","28598":"P_RV:CLH","28599":"P_RV:CLH","28600":"P_RV:CLH","28601":"P_RV:CLH","28602":"P_RV:CLH","28603":"P_RV:CLH","28604":"P_RV:CLH","28605":"P_RV:CLH","28606":"P_RV:CLH","28607":"P_RV:CLH","28608":"P_RV:CLH","28609":"P_RV:CLH","28610":"P_RV:CLH","28611":"P_RV:CLH","28612":"P_RV:CLH","28613":"P_RV:CLH","28614":"P_RV:CLH","28615":"P_RV:CLH","28616":"P_RV:CLH","28617":"P_RV:CLH","28618":"P_RV:CLH","28619":"P_RV:CLH","28620":"P_RV:CLH","28621":"P_RV:CLH","28622":"P_RV:CLH","28623":"P_RV:CLH","28624":"P_RV:CLH","28625":"P_RV:CLH","28626":"P_RV:CLH","28627":"P_RV:CLH","28628":"P_RV:CLH","28629":"P_RV:CLH","28630":"P_RV:CLH","28631":"P_RV:CLH","28632":"P_RV:CLH","28633":"P_RV:CLH","28634":"P_RV:CLH","28635":"P_RV:CLH","28636":"P_RV:CLH","28637":"P_RV:CLH","28638":"P_RV:CLH","28639":"P_RV:CLH","28640":"P_RV:CLH","28641":"P_RV:CLH","28642":"P_RV:CLH","28643":"P_RV:CLH","28644":"P_RV:CLH","28645":"P_RV:CLH","28646":"P_RV:CLH","28647":"P_RV:CLH","28648":"P_RV:CLH","28649":"P_RV:CLH","28650":"P_RV:CLH","28651":"P_RV:CLH","28652":"P_RV:CLH","28653":"P_RV:CLH","28654":"P_RV:CLH","28655":"P_RV:CLH","28656":"P_RV:CLH","28657":"P_RV:CLH","28658":"P_RV:CLH","28659":"P_RV:CLH","28660":"P_RV:CLH","28661":"P_RV:CLH","28662":"P_RV:CLH","28663":"P_RV:CLH","28664":"P_RV:CLH","28665":"P_RV:CLH","28666":"P_RV:CLH","28667":"P_RV:CLH","28668":"P_RV:CLH","28669":"P_RV:CLH","28670":"P_RV:CLH","28671":"P_RV:CLH","28672":"P_RV:CLH","28673":"P_RV:CLH","28674":"P_RV:CLH","28675":"P_RV:CLH","28676":"P_RV:CLH","28677":"P_RV:CLH","28678":"P_RV:CLH","28679":"P_RV:CLH","28680":"P_RV:CLH","28681":"P_RV:CLH","28682":"P_RV:CLH","28683":"P_RV:CLH","28684":"P_RV:CLH","28685":"P_RV:CLH","28686":"P_RV:CLH","28687":"P_RV:CLH","28688":"P_RV:CLH","28689":"P_RV:CLH","28690":"P_RV:CLH","28691":"P_RV:CLH","28692":"P_RV:CLH","28693":"P_RV:CLH","28694":"P_RV:CLH","28695":"P_RV:CLH","28696":"P_RV:CLH","28697":"P_RV:CLH","28698":"P_RV:CLH","28699":"P_RV:CLH","28700":"P_RV:CLH","28701":"P_RV:CLH","28702":"P_RV:CLH","28703":"P_RV:CLH","28704":"P_RV:CLH","28705":"P_RV:CLH","28706":"P_RV:CLH","28707":"P_RV:CLH","28708":"P_RV:CLH","28709":"P_RV:CLH","28710":"P_RV:CLH","28711":"P_RV:CLH","28712":"P_RV:CLH","28713":"P_RV:CLH","28714":"P_RV:CLH","28715":"P_RV:CLH","28716":"P_RV:CLH","28717":"P_RV:CLH","28718":"P_RV:CLH","28719":"P_RV:CLH","28720":"P_RV:CLH","28721":"P_RV:CLH","28722":"P_RV:CLH","28723":"P_RV:CLH","28724":"P_RV:CLH","28725":"P_RV:CLH","28726":"P_RV:CLH","28727":"P_RV:CLH","28728":"P_RV:CLH","28729":"P_RV:CLH","28730":"P_RV:CLH","28731":"P_RV:CLH","28732":"P_RV:CLH","28733":"P_RV:CLH","28734":"P_RV:CLH","28735":"P_RV:CLH","28736":"P_RV:CLH","28737":"P_RV:CLH","28738":"P_RV:CLH","28739":"P_RV:CLH","28740":"P_RV:CLH","28741":"P_RV:CLH","28742":"P_RV:CLH","28743":"P_RV:CLH","28744":"P_RV:CLH","28745":"P_RV:CLH","28746":"P_RV:CLH","28747":"P_RV:CLH","28748":"P_RV:CLH","28749":"P_RV:CLH","28750":"P_RV:CLH","28751":"P_RV:CLH","28752":"P_RV:CLH","28753":"P_RV:CLH","28754":"P_RV:CLH","28755":"P_RV:CLH","28756":"P_RV:CLH","28757":"P_RV:CLH","28758":"P_RV:CLH","28759":"P_RV:CLH","28760":"P_RV:CLH","28761":"P_RV:CLH","28762":"P_RV:CLH","28763":"P_RV:CLH","28764":"P_RV:CLH","28765":"P_RV:CLH","28766":"P_RV:CLH","28767":"P_RV:CLH","28768":"P_RV:CLH","28769":"P_RV:CLH","28770":"P_RV:CLH","28771":"P_RV:CLH","28772":"P_RV:CLH","28773":"P_RV:CLH","28774":"P_RV:CLH","28775":"P_RV:CLH","28776":"P_RV:CLH","28777":"P_RV:CLH","28778":"P_RV:CLH","28779":"P_RV:CLH","28780":"P_RV:CLH","28781":"P_RV:CLH","28782":"P_RV:CLH","28783":"P_RV:CLH","28784":"P_RV:CLH","28785":"P_RV:CLH","28786":"P_RV:CLH","28787":"P_RV:CLH","28788":"P_RV:CLH","28789":"P_RV:CLH","28790":"P_RV:CLH","28791":"P_RV:CLH","28792":"P_RV:CLH","28793":"P_RV:CLH","28794":"P_RV:CLH","28795":"P_RV:CLH","28796":"P_RV:CLH","28797":"P_RV:CLH","28798":"P_RV:CLH","28799":"P_RV:CLH","28800":"P_RV:CLH","28801":"P_RV:CLH","28802":"P_RV:CLH","28803":"P_RV:CLH","28804":"P_RV:CLH","28805":"P_RV:CLH","28806":"P_RV:CLH","28807":"P_RV:CLH","28808":"P_RV:CLH","28809":"P_RV:CLH","28810":"P_RV:CLH","28811":"P_RV:CLH","28812":"P_RV:CLH","28813":"P_RV:CLH","28814":"P_RV:CLH","28815":"P_RV:CLH","28816":"P_RV:CLH","28817":"P_RV:CLH","28818":"P_RV:CLH","28819":"P_RV:CLH","28820":"P_RV:CLH","28821":"P_RV:CLH","28822":"P_RV:CLH","28823":"P_RV:CLH","28824":"P_RV:CLH","28825":"P_RV:CLH","28826":"P_RV:CLH","28827":"P_RV:CLH","28828":"P_RV:CLH","28829":"P_RV:CLH","28830":"P_RV:CLH","28831":"P_RV:CLH","28832":"P_RV:CLH","28833":"P_RV:CLH","28834":"P_RV:CLH","28835":"P_RV:CLH","28836":"P_RV:CLH","28837":"P_RV:CLH","28838":"P_RV:CLH","28839":"P_RV:CLH","28840":"P_RV:CLH","28841":"P_RV:CLH","28842":"P_RV:CLH","28843":"P_RV:CLH","28844":"P_RV:CLH","28845":"P_RV:CLH","28846":"P_RV:CLH","28847":"P_RV:CLH","28848":"P_RV:CLH","28849":"P_RV:CLH","28850":"P_RV:CLH","28851":"P_RV:CLH","28852":"P_RV:CLH","28853":"P_RV:CLH","28854":"P_RV:CLH","28855":"P_RV:CLH","28856":"P_RV:CLH","28857":"P_RV:CLH","28858":"P_RV:CLH","28859":"P_RV:CLH","28860":"P_RV:CLH","28861":"P_RV:CLH","28862":"P_RV:CLH","28863":"P_RV:CLH","28864":"P_RV:CLH","28865":"P_RV:CLH","28866":"P_RV:CLH","28867":"P_RV:CLH","28868":"P_RV:CLH","28869":"P_RV:CLH","28870":"P_RV:CLH","28871":"P_RV:CLH","28872":"P_RV:CLH","28873":"P_RV:CLH","28874":"P_RV:CLH","28875":"P_RV:CLH","28876":"P_RV:CLH","28877":"P_RV:CLH","28878":"P_RV:CLH","28879":"P_RV:CLH","28880":"P_RV:CLH","28881":"P_RV:CLH","28882":"P_RV:CLH","28883":"P_RV:CLH","28884":"P_RV:CLH","28885":"P_RV:CLH","28886":"P_RV:CLH","28887":"P_RV:CLH","28888":"P_RV:CLH","28889":"P_RV:CLH","28890":"P_RV:CLH","28891":"P_RV:CLH","28892":"P_RV:CLH","28893":"P_RV:CLH","28894":"P_RV:CLH","28895":"P_RV:CLH","28896":"P_RV:CLH","28897":"P_RV:CLH","28898":"P_RV:CLH","28899":"P_RV:CLH","28900":"P_RV:CLH","28901":"P_RV:CLH","28902":"P_RV:CLH","28903":"P_RV:CLH","28904":"P_RV:CLH","28905":"P_RV:CLH","28906":"P_RV:CLH","28907":"P_RV:CLH","28908":"P_RV:CLH","28909":"P_RV:CLH","28910":"P_RV:CLH","28911":"P_RV:CLH","28912":"P_RV:CLH","28913":"P_RV:CLH","28914":"P_RV:CLH","28915":"P_RV:CLH","28916":"P_RV:CLH","28917":"P_RV:CLH","28918":"P_RV:CLH","28919":"P_RV:CLH","28920":"P_RV:CLH","28921":"P_RV:CLH","28922":"P_RV:CLH","28923":"P_RV:CLH","28924":"P_RV:CLH","28925":"P_RV:CLH","28926":"P_RV:CLH","28927":"P_RV:CLH","28928":"P_RV:CLH","28929":"P_RV:CLH","28930":"P_RV:CLH","28931":"P_RV:CLH","28932":"P_RV:CLH","28933":"P_RV:CLH","28934":"P_RV:CLH","28935":"P_RV:CLH","28936":"P_RV:CLH","28937":"P_RV:CLH","28938":"P_RV:CLH","28939":"P_RV:CLH","28940":"P_RV:CLH","28941":"P_RV:CLH","28942":"P_RV:CLH","28943":"P_RV:CLH","28944":"P_RV:CLH","28945":"P_RV:CLH","28946":"P_RV:CLH","28947":"P_RV:CLH","28948":"P_RV:CLH","28949":"P_RV:CLH","28950":"P_RV:CLH","28951":"P_RV:CLH","28952":"P_RV:CLH","28953":"P_RV:CLH","28954":"P_RV:CLH","28955":"P_RV:CLH","28956":"P_RV:CLH","28957":"P_RV:CLH","28958":"P_RV:CLH","28959":"P_RV:CLH","28960":"P_RV:CLH","28961":"P_RV:CLH","28962":"P_RV:CLH","28963":"P_RV:CLH","28964":"P_RV:CLH","28965":"P_RV:CLH","28966":"P_RV:CLH","28967":"P_RV:CLH","28968":"P_RV:CLH","28969":"P_RV:CLH","28970":"P_RV:CLH","28971":"P_RV:CLH","28972":"P_RV:CLH","28973":"P_RV:CLH","28974":"P_RV:CLH","28975":"P_RV:CLH","28976":"P_RV:CLH","28977":"P_RV:CLH","28978":"P_RV:CLH","28979":"P_RV:CLH","28980":"P_RV:CLH","28981":"P_RV:CLH","28982":"P_RV:CLH","28983":"P_RV:CLH","28984":"P_RV:CLH","28985":"P_RV:CLH","28986":"P_RV:CLH","28987":"P_RV:CLH","28988":"P_RV:CLH","28989":"P_RV:CLH","28990":"P_RV:CLH","28991":"P_RV:CLH","28992":"P_RV:CLH","28993":"P_RV:CLH","28994":"P_RV:CLH","28995":"P_RV:CLH","28996":"P_RV:CLH","28997":"P_RV:CLH","28998":"P_RV:CLH","28999":"P_RV:CLH","29000":"V_RV:CLH","29001":"V_RV:CLH","29002":"V_RV:CLH","29003":"V_RV:CLH","29004":"V_RV:CLH","29005":"V_RV:CLH","29006":"V_RV:CLH","29007":"V_RV:CLH","29008":"V_RV:CLH","29009":"V_RV:CLH","29010":"V_RV:CLH","29011":"V_RV:CLH","29012":"V_RV:CLH","29013":"V_RV:CLH","29014":"V_RV:CLH","29015":"V_RV:CLH","29016":"V_RV:CLH","29017":"V_RV:CLH","29018":"V_RV:CLH","29019":"V_RV:CLH","29020":"V_RV:CLH","29021":"V_RV:CLH","29022":"V_RV:CLH","29023":"V_RV:CLH","29024":"V_RV:CLH","29025":"V_RV:CLH","29026":"V_RV:CLH","29027":"V_RV:CLH","29028":"V_RV:CLH","29029":"V_RV:CLH","29030":"V_RV:CLH","29031":"V_RV:CLH","29032":"V_RV:CLH","29033":"V_RV:CLH","29034":"V_RV:CLH","29035":"V_RV:CLH","29036":"V_RV:CLH","29037":"V_RV:CLH","29038":"V_RV:CLH","29039":"V_RV:CLH","29040":"V_RV:CLH","29041":"V_RV:CLH","29042":"V_RV:CLH","29043":"V_RV:CLH","29044":"V_RV:CLH","29045":"V_RV:CLH","29046":"V_RV:CLH","29047":"V_RV:CLH","29048":"V_RV:CLH","29049":"V_RV:CLH","29050":"V_RV:CLH","29051":"V_RV:CLH","29052":"V_RV:CLH","29053":"V_RV:CLH","29054":"V_RV:CLH","29055":"V_RV:CLH","29056":"V_RV:CLH","29057":"V_RV:CLH","29058":"V_RV:CLH","29059":"V_RV:CLH","29060":"V_RV:CLH","29061":"V_RV:CLH","29062":"V_RV:CLH","29063":"V_RV:CLH","29064":"V_RV:CLH","29065":"V_RV:CLH","29066":"V_RV:CLH","29067":"V_RV:CLH","29068":"V_RV:CLH","29069":"V_RV:CLH","29070":"V_RV:CLH","29071":"V_RV:CLH","29072":"V_RV:CLH","29073":"V_RV:CLH","29074":"V_RV:CLH","29075":"V_RV:CLH","29076":"V_RV:CLH","29077":"V_RV:CLH","29078":"V_RV:CLH","29079":"V_RV:CLH","29080":"V_RV:CLH","29081":"V_RV:CLH","29082":"V_RV:CLH","29083":"V_RV:CLH","29084":"V_RV:CLH","29085":"V_RV:CLH","29086":"V_RV:CLH","29087":"V_RV:CLH","29088":"V_RV:CLH","29089":"V_RV:CLH","29090":"V_RV:CLH","29091":"V_RV:CLH","29092":"V_RV:CLH","29093":"V_RV:CLH","29094":"V_RV:CLH","29095":"V_RV:CLH","29096":"V_RV:CLH","29097":"V_RV:CLH","29098":"V_RV:CLH","29099":"V_RV:CLH","29100":"V_RV:CLH","29101":"V_RV:CLH","29102":"V_RV:CLH","29103":"V_RV:CLH","29104":"V_RV:CLH","29105":"V_RV:CLH","29106":"V_RV:CLH","29107":"V_RV:CLH","29108":"V_RV:CLH","29109":"V_RV:CLH","29110":"V_RV:CLH","29111":"V_RV:CLH","29112":"V_RV:CLH","29113":"V_RV:CLH","29114":"V_RV:CLH","29115":"V_RV:CLH","29116":"V_RV:CLH","29117":"V_RV:CLH","29118":"V_RV:CLH","29119":"V_RV:CLH","29120":"V_RV:CLH","29121":"V_RV:CLH","29122":"V_RV:CLH","29123":"V_RV:CLH","29124":"V_RV:CLH","29125":"V_RV:CLH","29126":"V_RV:CLH","29127":"V_RV:CLH","29128":"V_RV:CLH","29129":"V_RV:CLH","29130":"V_RV:CLH","29131":"V_RV:CLH","29132":"V_RV:CLH","29133":"V_RV:CLH","29134":"V_RV:CLH","29135":"V_RV:CLH","29136":"V_RV:CLH","29137":"V_RV:CLH","29138":"V_RV:CLH","29139":"V_RV:CLH","29140":"V_RV:CLH","29141":"V_RV:CLH","29142":"V_RV:CLH","29143":"V_RV:CLH","29144":"V_RV:CLH","29145":"V_RV:CLH","29146":"V_RV:CLH","29147":"V_RV:CLH","29148":"V_RV:CLH","29149":"V_RV:CLH","29150":"V_RV:CLH","29151":"V_RV:CLH","29152":"V_RV:CLH","29153":"V_RV:CLH","29154":"V_RV:CLH","29155":"V_RV:CLH","29156":"V_RV:CLH","29157":"V_RV:CLH","29158":"V_RV:CLH","29159":"V_RV:CLH","29160":"V_RV:CLH","29161":"V_RV:CLH","29162":"V_RV:CLH","29163":"V_RV:CLH","29164":"V_RV:CLH","29165":"V_RV:CLH","29166":"V_RV:CLH","29167":"V_RV:CLH","29168":"V_RV:CLH","29169":"V_RV:CLH","29170":"V_RV:CLH","29171":"V_RV:CLH","29172":"V_RV:CLH","29173":"V_RV:CLH","29174":"V_RV:CLH","29175":"V_RV:CLH","29176":"V_RV:CLH","29177":"V_RV:CLH","29178":"V_RV:CLH","29179":"V_RV:CLH","29180":"V_RV:CLH","29181":"V_RV:CLH","29182":"V_RV:CLH","29183":"V_RV:CLH","29184":"V_RV:CLH","29185":"V_RV:CLH","29186":"V_RV:CLH","29187":"V_RV:CLH","29188":"V_RV:CLH","29189":"V_RV:CLH","29190":"V_RV:CLH","29191":"V_RV:CLH","29192":"V_RV:CLH","29193":"V_RV:CLH","29194":"V_RV:CLH","29195":"V_RV:CLH","29196":"V_RV:CLH","29197":"V_RV:CLH","29198":"V_RV:CLH","29199":"V_RV:CLH","29200":"V_RV:CLH","29201":"V_RV:CLH","29202":"V_RV:CLH","29203":"V_RV:CLH","29204":"V_RV:CLH","29205":"V_RV:CLH","29206":"V_RV:CLH","29207":"V_RV:CLH","29208":"V_RV:CLH","29209":"V_RV:CLH","29210":"V_RV:CLH","29211":"V_RV:CLH","29212":"V_RV:CLH","29213":"V_RV:CLH","29214":"V_RV:CLH","29215":"V_RV:CLH","29216":"V_RV:CLH","29217":"V_RV:CLH","29218":"V_RV:CLH","29219":"V_RV:CLH","29220":"V_RV:CLH","29221":"V_RV:CLH","29222":"V_RV:CLH","29223":"V_RV:CLH","29224":"V_RV:CLH","29225":"V_RV:CLH","29226":"V_RV:CLH","29227":"V_RV:CLH","29228":"V_RV:CLH","29229":"V_RV:CLH","29230":"V_RV:CLH","29231":"V_RV:CLH","29232":"V_RV:CLH","29233":"V_RV:CLH","29234":"V_RV:CLH","29235":"V_RV:CLH","29236":"V_RV:CLH","29237":"V_RV:CLH","29238":"V_RV:CLH","29239":"V_RV:CLH","29240":"V_RV:CLH","29241":"V_RV:CLH","29242":"V_RV:CLH","29243":"V_RV:CLH","29244":"V_RV:CLH","29245":"V_RV:CLH","29246":"V_RV:CLH","29247":"V_RV:CLH","29248":"V_RV:CLH","29249":"V_RV:CLH","29250":"V_RV:CLH","29251":"V_RV:CLH","29252":"V_RV:CLH","29253":"V_RV:CLH","29254":"V_RV:CLH","29255":"V_RV:CLH","29256":"V_RV:CLH","29257":"V_RV:CLH","29258":"V_RV:CLH","29259":"V_RV:CLH","29260":"V_RV:CLH","29261":"V_RV:CLH","29262":"V_RV:CLH","29263":"V_RV:CLH","29264":"V_RV:CLH","29265":"V_RV:CLH","29266":"V_RV:CLH","29267":"V_RV:CLH","29268":"V_RV:CLH","29269":"V_RV:CLH","29270":"V_RV:CLH","29271":"V_RV:CLH","29272":"V_RV:CLH","29273":"V_RV:CLH","29274":"V_RV:CLH","29275":"V_RV:CLH","29276":"V_RV:CLH","29277":"V_RV:CLH","29278":"V_RV:CLH","29279":"V_RV:CLH","29280":"V_RV:CLH","29281":"V_RV:CLH","29282":"V_RV:CLH","29283":"V_RV:CLH","29284":"V_RV:CLH","29285":"V_RV:CLH","29286":"V_RV:CLH","29287":"V_RV:CLH","29288":"V_RV:CLH","29289":"V_RV:CLH","29290":"V_RV:CLH","29291":"V_RV:CLH","29292":"V_RV:CLH","29293":"V_RV:CLH","29294":"V_RV:CLH","29295":"V_RV:CLH","29296":"V_RV:CLH","29297":"V_RV:CLH","29298":"V_RV:CLH","29299":"V_RV:CLH","29300":"V_RV:CLH","29301":"V_RV:CLH","29302":"V_RV:CLH","29303":"V_RV:CLH","29304":"V_RV:CLH","29305":"V_RV:CLH","29306":"V_RV:CLH","29307":"V_RV:CLH","29308":"V_RV:CLH","29309":"V_RV:CLH","29310":"V_RV:CLH","29311":"V_RV:CLH","29312":"V_RV:CLH","29313":"V_RV:CLH","29314":"V_RV:CLH","29315":"V_RV:CLH","29316":"V_RV:CLH","29317":"V_RV:CLH","29318":"V_RV:CLH","29319":"V_RV:CLH","29320":"V_RV:CLH","29321":"V_RV:CLH","29322":"V_RV:CLH","29323":"V_RV:CLH","29324":"V_RV:CLH","29325":"V_RV:CLH","29326":"V_RV:CLH","29327":"V_RV:CLH","29328":"V_RV:CLH","29329":"V_RV:CLH","29330":"V_RV:CLH","29331":"V_RV:CLH","29332":"V_RV:CLH","29333":"V_RV:CLH","29334":"V_RV:CLH","29335":"V_RV:CLH","29336":"V_RV:CLH","29337":"V_RV:CLH","29338":"V_RV:CLH","29339":"V_RV:CLH","29340":"V_RV:CLH","29341":"V_RV:CLH","29342":"V_RV:CLH","29343":"V_RV:CLH","29344":"V_RV:CLH","29345":"V_RV:CLH","29346":"V_RV:CLH","29347":"V_RV:CLH","29348":"V_RV:CLH","29349":"V_RV:CLH","29350":"V_RV:CLH","29351":"V_RV:CLH","29352":"V_RV:CLH","29353":"V_RV:CLH","29354":"V_RV:CLH","29355":"V_RV:CLH","29356":"V_RV:CLH","29357":"V_RV:CLH","29358":"V_RV:CLH","29359":"V_RV:CLH","29360":"V_RV:CLH","29361":"V_RV:CLH","29362":"V_RV:CLH","29363":"V_RV:CLH","29364":"V_RV:CLH","29365":"V_RV:CLH","29366":"V_RV:CLH","29367":"V_RV:CLH","29368":"V_RV:CLH","29369":"V_RV:CLH","29370":"V_RV:CLH","29371":"V_RV:CLH","29372":"V_RV:CLH","29373":"V_RV:CLH","29374":"V_RV:CLH","29375":"V_RV:CLH","29376":"V_RV:CLH","29377":"V_RV:CLH","29378":"V_RV:CLH","29379":"V_RV:CLH","29380":"V_RV:CLH","29381":"V_RV:CLH","29382":"V_RV:CLH","29383":"V_RV:CLH","29384":"V_RV:CLH","29385":"V_RV:CLH","29386":"V_RV:CLH","29387":"V_RV:CLH","29388":"V_RV:CLH","29389":"V_RV:CLH","29390":"V_RV:CLH","29391":"V_RV:CLH","29392":"V_RV:CLH","29393":"V_RV:CLH","29394":"V_RV:CLH","29395":"V_RV:CLH","29396":"V_RV:CLH","29397":"V_RV:CLH","29398":"V_RV:CLH","29399":"V_RV:CLH","29400":"V_RV:CLH","29401":"V_RV:CLH","29402":"V_RV:CLH","29403":"V_RV:CLH","29404":"V_RV:CLH","29405":"V_RV:CLH","29406":"V_RV:CLH","29407":"V_RV:CLH","29408":"V_RV:CLH","29409":"V_RV:CLH","29410":"V_RV:CLH","29411":"V_RV:CLH","29412":"V_RV:CLH","29413":"V_RV:CLH","29414":"V_RV:CLH","29415":"V_RV:CLH","29416":"V_RV:CLH","29417":"V_RV:CLH","29418":"V_RV:CLH","29419":"V_RV:CLH","29420":"V_RV:CLH","29421":"V_RV:CLH","29422":"V_RV:CLH","29423":"V_RV:CLH","29424":"V_RV:CLH","29425":"V_RV:CLH","29426":"V_RV:CLH","29427":"V_RV:CLH","29428":"V_RV:CLH","29429":"V_RV:CLH","29430":"V_RV:CLH","29431":"V_RV:CLH","29432":"V_RV:CLH","29433":"V_RV:CLH","29434":"V_RV:CLH","29435":"V_RV:CLH","29436":"V_RV:CLH","29437":"V_RV:CLH","29438":"V_RV:CLH","29439":"V_RV:CLH","29440":"V_RV:CLH","29441":"V_RV:CLH","29442":"V_RV:CLH","29443":"V_RV:CLH","29444":"V_RV:CLH","29445":"V_RV:CLH","29446":"V_RV:CLH","29447":"V_RV:CLH","29448":"V_RV:CLH","29449":"V_RV:CLH","29450":"V_RV:CLH","29451":"V_RV:CLH","29452":"V_RV:CLH","29453":"V_RV:CLH","29454":"V_RV:CLH","29455":"V_RV:CLH","29456":"V_RV:CLH","29457":"V_RV:CLH","29458":"V_RV:CLH","29459":"V_RV:CLH","29460":"V_RV:CLH","29461":"V_RV:CLH","29462":"V_RV:CLH","29463":"V_RV:CLH","29464":"V_RV:CLH","29465":"V_RV:CLH","29466":"V_RV:CLH","29467":"V_RV:CLH","29468":"V_RV:CLH","29469":"V_RV:CLH","29470":"V_RV:CLH","29471":"V_RV:CLH","29472":"V_RV:CLH","29473":"V_RV:CLH","29474":"V_RV:CLH","29475":"V_RV:CLH","29476":"V_RV:CLH","29477":"V_RV:CLH","29478":"V_RV:CLH","29479":"V_RV:CLH","29480":"V_RV:CLH","29481":"V_RV:CLH","29482":"V_RV:CLH","29483":"V_RV:CLH","29484":"V_RV:CLH","29485":"V_RV:CLH","29486":"V_RV:CLH","29487":"V_RV:CLH","29488":"V_RV:CLH","29489":"V_RV:CLH","29490":"V_RV:CLH","29491":"V_RV:CLH","29492":"V_RV:CLH","29493":"V_RV:CLH","29494":"V_RV:CLH","29495":"V_RV:CLH","29496":"V_RV:CLH","29497":"V_RV:CLH","29498":"V_RV:CLH","29499":"V_RV:CLH","29500":"V_RV:CLH","29501":"V_RV:CLH","29502":"V_RV:CLH","29503":"V_RV:CLH","29504":"V_RV:CLH","29505":"V_RV:CLH","29506":"V_RV:CLH","29507":"V_RV:CLH","29508":"V_RV:CLH","29509":"V_RV:CLH","29510":"V_RV:CLH","29511":"V_RV:CLH","29512":"V_RV:CLH","29513":"V_RV:CLH","29514":"V_RV:CLH","29515":"V_RV:CLH","29516":"V_RV:CLH","29517":"V_RV:CLH","29518":"V_RV:CLH","29519":"V_RV:CLH","29520":"V_RV:CLH","29521":"V_RV:CLH","29522":"V_RV:CLH","29523":"V_RV:CLH","29524":"V_RV:CLH","29525":"V_RV:CLH","29526":"V_RV:CLH","29527":"V_RV:CLH","29528":"V_RV:CLH","29529":"V_RV:CLH","29530":"V_RV:CLH","29531":"V_RV:CLH","29532":"V_RV:CLH","29533":"V_RV:CLH","29534":"V_RV:CLH","29535":"V_RV:CLH","29536":"V_RV:CLH","29537":"V_RV:CLH","29538":"V_RV:CLH","29539":"V_RV:CLH","29540":"V_RV:CLH","29541":"V_RV:CLH","29542":"V_RV:CLH","29543":"V_RV:CLH","29544":"V_RV:CLH","29545":"V_RV:CLH","29546":"V_RV:CLH","29547":"V_RV:CLH","29548":"V_RV:CLH","29549":"V_RV:CLH","29550":"V_RV:CLH","29551":"V_RV:CLH","29552":"V_RV:CLH","29553":"V_RV:CLH","29554":"V_RV:CLH","29555":"V_RV:CLH","29556":"V_RV:CLH","29557":"V_RV:CLH","29558":"V_RV:CLH","29559":"V_RV:CLH","29560":"V_RV:CLH","29561":"V_RV:CLH","29562":"V_RV:CLH","29563":"V_RV:CLH","29564":"V_RV:CLH","29565":"V_RV:CLH","29566":"V_RV:CLH","29567":"V_RV:CLH","29568":"V_RV:CLH","29569":"V_RV:CLH","29570":"V_RV:CLH","29571":"V_RV:CLH","29572":"V_RV:CLH","29573":"V_RV:CLH","29574":"V_RV:CLH","29575":"V_RV:CLH","29576":"V_RV:CLH","29577":"V_RV:CLH","29578":"V_RV:CLH","29579":"V_RV:CLH","29580":"V_RV:CLH","29581":"V_RV:CLH","29582":"V_RV:CLH","29583":"V_RV:CLH","29584":"V_RV:CLH","29585":"V_RV:CLH","29586":"V_RV:CLH","29587":"V_RV:CLH","29588":"V_RV:CLH","29589":"V_RV:CLH","29590":"V_RV:CLH","29591":"V_RV:CLH","29592":"V_RV:CLH","29593":"V_RV:CLH","29594":"V_RV:CLH","29595":"V_RV:CLH","29596":"V_RV:CLH","29597":"V_RV:CLH","29598":"V_RV:CLH","29599":"V_RV:CLH","29600":"V_RV:CLH","29601":"V_RV:CLH","29602":"V_RV:CLH","29603":"V_RV:CLH","29604":"V_RV:CLH","29605":"V_RV:CLH","29606":"V_RV:CLH","29607":"V_RV:CLH","29608":"V_RV:CLH","29609":"V_RV:CLH","29610":"V_RV:CLH","29611":"V_RV:CLH","29612":"V_RV:CLH","29613":"V_RV:CLH","29614":"V_RV:CLH","29615":"V_RV:CLH","29616":"V_RV:CLH","29617":"V_RV:CLH","29618":"V_RV:CLH","29619":"V_RV:CLH","29620":"V_RV:CLH","29621":"V_RV:CLH","29622":"V_RV:CLH","29623":"V_RV:CLH","29624":"V_RV:CLH","29625":"V_RV:CLH","29626":"V_RV:CLH","29627":"V_RV:CLH","29628":"V_RV:CLH","29629":"V_RV:CLH","29630":"V_RV:CLH","29631":"V_RV:CLH","29632":"V_RV:CLH","29633":"V_RV:CLH","29634":"V_RV:CLH","29635":"V_RV:CLH","29636":"V_RV:CLH","29637":"V_RV:CLH","29638":"V_RV:CLH","29639":"V_RV:CLH","29640":"V_RV:CLH","29641":"V_RV:CLH","29642":"V_RV:CLH","29643":"V_RV:CLH","29644":"V_RV:CLH","29645":"V_RV:CLH","29646":"V_RV:CLH","29647":"V_RV:CLH","29648":"V_RV:CLH","29649":"V_RV:CLH","29650":"V_RV:CLH","29651":"V_RV:CLH","29652":"V_RV:CLH","29653":"V_RV:CLH","29654":"V_RV:CLH","29655":"V_RV:CLH","29656":"V_RV:CLH","29657":"V_RV:CLH","29658":"V_RV:CLH","29659":"V_RV:CLH","29660":"V_RV:CLH","29661":"V_RV:CLH","29662":"V_RV:CLH","29663":"V_RV:CLH","29664":"V_RV:CLH","29665":"V_RV:CLH","29666":"V_RV:CLH","29667":"V_RV:CLH","29668":"V_RV:CLH","29669":"V_RV:CLH","29670":"V_RV:CLH","29671":"V_RV:CLH","29672":"V_RV:CLH","29673":"V_RV:CLH","29674":"V_RV:CLH","29675":"V_RV:CLH","29676":"V_RV:CLH","29677":"V_RV:CLH","29678":"V_RV:CLH","29679":"V_RV:CLH","29680":"V_RV:CLH","29681":"V_RV:CLH","29682":"V_RV:CLH","29683":"V_RV:CLH","29684":"V_RV:CLH","29685":"V_RV:CLH","29686":"V_RV:CLH","29687":"V_RV:CLH","29688":"V_RV:CLH","29689":"V_RV:CLH","29690":"V_RV:CLH","29691":"V_RV:CLH","29692":"V_RV:CLH","29693":"V_RV:CLH","29694":"V_RV:CLH","29695":"V_RV:CLH","29696":"V_RV:CLH","29697":"V_RV:CLH","29698":"V_RV:CLH","29699":"V_RV:CLH","29700":"V_RV:CLH","29701":"V_RV:CLH","29702":"V_RV:CLH","29703":"V_RV:CLH","29704":"V_RV:CLH","29705":"V_RV:CLH","29706":"V_RV:CLH","29707":"V_RV:CLH","29708":"V_RV:CLH","29709":"V_RV:CLH","29710":"V_RV:CLH","29711":"V_RV:CLH","29712":"V_RV:CLH","29713":"V_RV:CLH","29714":"V_RV:CLH","29715":"V_RV:CLH","29716":"V_RV:CLH","29717":"V_RV:CLH","29718":"V_RV:CLH","29719":"V_RV:CLH","29720":"V_RV:CLH","29721":"V_RV:CLH","29722":"V_RV:CLH","29723":"V_RV:CLH","29724":"V_RV:CLH","29725":"V_RV:CLH","29726":"V_RV:CLH","29727":"V_RV:CLH","29728":"V_RV:CLH","29729":"V_RV:CLH","29730":"V_RV:CLH","29731":"V_RV:CLH","29732":"V_RV:CLH","29733":"V_RV:CLH","29734":"V_RV:CLH","29735":"V_RV:CLH","29736":"V_RV:CLH","29737":"V_RV:CLH","29738":"V_RV:CLH","29739":"V_RV:CLH","29740":"V_RV:CLH","29741":"V_RV:CLH","29742":"V_RV:CLH","29743":"V_RV:CLH","29744":"V_RV:CLH","29745":"V_RV:CLH","29746":"V_RV:CLH","29747":"V_RV:CLH","29748":"V_RV:CLH","29749":"V_RV:CLH","29750":"V_RV:CLH","29751":"V_RV:CLH","29752":"V_RV:CLH","29753":"V_RV:CLH","29754":"V_RV:CLH","29755":"V_RV:CLH","29756":"V_RV:CLH","29757":"V_RV:CLH","29758":"V_RV:CLH","29759":"V_RV:CLH","29760":"V_RV:CLH","29761":"V_RV:CLH","29762":"V_RV:CLH","29763":"V_RV:CLH","29764":"V_RV:CLH","29765":"V_RV:CLH","29766":"V_RV:CLH","29767":"V_RV:CLH","29768":"V_RV:CLH","29769":"V_RV:CLH","29770":"V_RV:CLH","29771":"V_RV:CLH","29772":"V_RV:CLH","29773":"V_RV:CLH","29774":"V_RV:CLH","29775":"V_RV:CLH","29776":"V_RV:CLH","29777":"V_RV:CLH","29778":"V_RV:CLH","29779":"V_RV:CLH","29780":"V_RV:CLH","29781":"V_RV:CLH","29782":"V_RV:CLH","29783":"V_RV:CLH","29784":"V_RV:CLH","29785":"V_RV:CLH","29786":"V_RV:CLH","29787":"V_RV:CLH","29788":"V_RV:CLH","29789":"V_RV:CLH","29790":"V_RV:CLH","29791":"V_RV:CLH","29792":"V_RV:CLH","29793":"V_RV:CLH","29794":"V_RV:CLH","29795":"V_RV:CLH","29796":"V_RV:CLH","29797":"V_RV:CLH","29798":"V_RV:CLH","29799":"V_RV:CLH","29800":"V_RV:CLH","29801":"V_RV:CLH","29802":"V_RV:CLH","29803":"V_RV:CLH","29804":"V_RV:CLH","29805":"V_RV:CLH","29806":"V_RV:CLH","29807":"V_RV:CLH","29808":"V_RV:CLH","29809":"V_RV:CLH","29810":"V_RV:CLH","29811":"V_RV:CLH","29812":"V_RV:CLH","29813":"V_RV:CLH","29814":"V_RV:CLH","29815":"V_RV:CLH","29816":"V_RV:CLH","29817":"V_RV:CLH","29818":"V_RV:CLH","29819":"V_RV:CLH","29820":"V_RV:CLH","29821":"V_RV:CLH","29822":"V_RV:CLH","29823":"V_RV:CLH","29824":"V_RV:CLH","29825":"V_RV:CLH","29826":"V_RV:CLH","29827":"V_RV:CLH","29828":"V_RV:CLH","29829":"V_RV:CLH","29830":"V_RV:CLH","29831":"V_RV:CLH","29832":"V_RV:CLH","29833":"V_RV:CLH","29834":"V_RV:CLH","29835":"V_RV:CLH","29836":"V_RV:CLH","29837":"V_RV:CLH","29838":"V_RV:CLH","29839":"V_RV:CLH","29840":"V_RV:CLH","29841":"V_RV:CLH","29842":"V_RV:CLH","29843":"V_RV:CLH","29844":"V_RV:CLH","29845":"V_RV:CLH","29846":"V_RV:CLH","29847":"V_RV:CLH","29848":"V_RV:CLH","29849":"V_RV:CLH","29850":"V_RV:CLH","29851":"V_RV:CLH","29852":"V_RV:CLH","29853":"V_RV:CLH","29854":"V_RV:CLH","29855":"V_RV:CLH","29856":"V_RV:CLH","29857":"V_RV:CLH","29858":"V_RV:CLH","29859":"V_RV:CLH","29860":"V_RV:CLH","29861":"V_RV:CLH","29862":"V_RV:CLH","29863":"V_RV:CLH","29864":"V_RV:CLH","29865":"V_RV:CLH","29866":"V_RV:CLH","29867":"V_RV:CLH","29868":"V_RV:CLH","29869":"V_RV:CLH","29870":"V_RV:CLH","29871":"V_RV:CLH","29872":"V_RV:CLH","29873":"V_RV:CLH","29874":"V_RV:CLH","29875":"V_RV:CLH","29876":"V_RV:CLH","29877":"V_RV:CLH","29878":"V_RV:CLH","29879":"V_RV:CLH","29880":"V_RV:CLH","29881":"V_RV:CLH","29882":"V_RV:CLH","29883":"V_RV:CLH","29884":"V_RV:CLH","29885":"V_RV:CLH","29886":"V_RV:CLH","29887":"V_RV:CLH","29888":"V_RV:CLH","29889":"V_RV:CLH","29890":"V_RV:CLH","29891":"V_RV:CLH","29892":"V_RV:CLH","29893":"V_RV:CLH","29894":"V_RV:CLH","29895":"V_RV:CLH","29896":"V_RV:CLH","29897":"V_RV:CLH","29898":"V_RV:CLH","29899":"V_RV:CLH","29900":"V_RV:CLH","29901":"V_RV:CLH","29902":"V_RV:CLH","29903":"V_RV:CLH","29904":"V_RV:CLH","29905":"V_RV:CLH","29906":"V_RV:CLH","29907":"V_RV:CLH","29908":"V_RV:CLH","29909":"V_RV:CLH","29910":"V_RV:CLH","29911":"V_RV:CLH","29912":"V_RV:CLH","29913":"V_RV:CLH","29914":"V_RV:CLH","29915":"V_RV:CLH","29916":"V_RV:CLH","29917":"V_RV:CLH","29918":"V_RV:CLH","29919":"V_RV:CLH","29920":"V_RV:CLH","29921":"V_RV:CLH","29922":"V_RV:CLH","29923":"V_RV:CLH","29924":"V_RV:CLH","29925":"V_RV:CLH","29926":"V_RV:CLH","29927":"V_RV:CLH","29928":"V_RV:CLH","29929":"V_RV:CLH","29930":"V_RV:CLH","29931":"V_RV:CLH","29932":"V_RV:CLH","29933":"V_RV:CLH","29934":"V_RV:CLH","29935":"V_RV:CLH","29936":"V_RV:CLH","29937":"V_RV:CLH","29938":"V_RV:CLH","29939":"V_RV:CLH","29940":"V_RV:CLH","29941":"V_RV:CLH","29942":"V_RV:CLH","29943":"V_RV:CLH","29944":"V_RV:CLH","29945":"V_RV:CLH","29946":"V_RV:CLH","29947":"V_RV:CLH","29948":"V_RV:CLH","29949":"V_RV:CLH","29950":"V_RV:CLH","29951":"V_RV:CLH","29952":"V_RV:CLH","29953":"V_RV:CLH","29954":"V_RV:CLH","29955":"V_RV:CLH","29956":"V_RV:CLH","29957":"V_RV:CLH","29958":"V_RV:CLH","29959":"V_RV:CLH","29960":"V_RV:CLH","29961":"V_RV:CLH","29962":"V_RV:CLH","29963":"V_RV:CLH","29964":"V_RV:CLH","29965":"V_RV:CLH","29966":"V_RV:CLH","29967":"V_RV:CLH","29968":"V_RV:CLH","29969":"V_RV:CLH","29970":"V_RV:CLH","29971":"V_RV:CLH","29972":"V_RV:CLH","29973":"V_RV:CLH","29974":"V_RV:CLH","29975":"V_RV:CLH","29976":"V_RV:CLH","29977":"V_RV:CLH","29978":"V_RV:CLH","29979":"V_RV:CLH","29980":"V_RV:CLH","29981":"V_RV:CLH","29982":"V_RV:CLH","29983":"V_RV:CLH","29984":"V_RV:CLH","29985":"V_RV:CLH","29986":"V_RV:CLH","29987":"V_RV:CLH","29988":"V_RV:CLH","29989":"V_RV:CLH","29990":"V_RV:CLH","29991":"V_RV:CLH","29992":"V_RV:CLH","29993":"V_RV:CLH","29994":"V_RV:CLH","29995":"V_RV:CLH","29996":"V_RV:CLH","29997":"V_RV:CLH","29998":"V_RV:CLH","29999":"V_RV:CLH","30000":"Q_RV:CLH","30001":"Q_RV:CLH","30002":"Q_RV:CLH","30003":"Q_RV:CLH","30004":"Q_RV:CLH","30005":"Q_RV:CLH","30006":"Q_RV:CLH","30007":"Q_RV:CLH","30008":"Q_RV:CLH","30009":"Q_RV:CLH","30010":"Q_RV:CLH","30011":"Q_RV:CLH","30012":"Q_RV:CLH","30013":"Q_RV:CLH","30014":"Q_RV:CLH","30015":"Q_RV:CLH","30016":"Q_RV:CLH","30017":"Q_RV:CLH","30018":"Q_RV:CLH","30019":"Q_RV:CLH","30020":"Q_RV:CLH","30021":"Q_RV:CLH","30022":"Q_RV:CLH","30023":"Q_RV:CLH","30024":"Q_RV:CLH","30025":"Q_RV:CLH","30026":"Q_RV:CLH","30027":"Q_RV:CLH","30028":"Q_RV:CLH","30029":"Q_RV:CLH","30030":"Q_RV:CLH","30031":"Q_RV:CLH","30032":"Q_RV:CLH","30033":"Q_RV:CLH","30034":"Q_RV:CLH","30035":"Q_RV:CLH","30036":"Q_RV:CLH","30037":"Q_RV:CLH","30038":"Q_RV:CLH","30039":"Q_RV:CLH","30040":"Q_RV:CLH","30041":"Q_RV:CLH","30042":"Q_RV:CLH","30043":"Q_RV:CLH","30044":"Q_RV:CLH","30045":"Q_RV:CLH","30046":"Q_RV:CLH","30047":"Q_RV:CLH","30048":"Q_RV:CLH","30049":"Q_RV:CLH","30050":"Q_RV:CLH","30051":"Q_RV:CLH","30052":"Q_RV:CLH","30053":"Q_RV:CLH","30054":"Q_RV:CLH","30055":"Q_RV:CLH","30056":"Q_RV:CLH","30057":"Q_RV:CLH","30058":"Q_RV:CLH","30059":"Q_RV:CLH","30060":"Q_RV:CLH","30061":"Q_RV:CLH","30062":"Q_RV:CLH","30063":"Q_RV:CLH","30064":"Q_RV:CLH","30065":"Q_RV:CLH","30066":"Q_RV:CLH","30067":"Q_RV:CLH","30068":"Q_RV:CLH","30069":"Q_RV:CLH","30070":"Q_RV:CLH","30071":"Q_RV:CLH","30072":"Q_RV:CLH","30073":"Q_RV:CLH","30074":"Q_RV:CLH","30075":"Q_RV:CLH","30076":"Q_RV:CLH","30077":"Q_RV:CLH","30078":"Q_RV:CLH","30079":"Q_RV:CLH","30080":"Q_RV:CLH","30081":"Q_RV:CLH","30082":"Q_RV:CLH","30083":"Q_RV:CLH","30084":"Q_RV:CLH","30085":"Q_RV:CLH","30086":"Q_RV:CLH","30087":"Q_RV:CLH","30088":"Q_RV:CLH","30089":"Q_RV:CLH","30090":"Q_RV:CLH","30091":"Q_RV:CLH","30092":"Q_RV:CLH","30093":"Q_RV:CLH","30094":"Q_RV:CLH","30095":"Q_RV:CLH","30096":"Q_RV:CLH","30097":"Q_RV:CLH","30098":"Q_RV:CLH","30099":"Q_RV:CLH","30100":"Q_RV:CLH","30101":"Q_RV:CLH","30102":"Q_RV:CLH","30103":"Q_RV:CLH","30104":"Q_RV:CLH","30105":"Q_RV:CLH","30106":"Q_RV:CLH","30107":"Q_RV:CLH","30108":"Q_RV:CLH","30109":"Q_RV:CLH","30110":"Q_RV:CLH","30111":"Q_RV:CLH","30112":"Q_RV:CLH","30113":"Q_RV:CLH","30114":"Q_RV:CLH","30115":"Q_RV:CLH","30116":"Q_RV:CLH","30117":"Q_RV:CLH","30118":"Q_RV:CLH","30119":"Q_RV:CLH","30120":"Q_RV:CLH","30121":"Q_RV:CLH","30122":"Q_RV:CLH","30123":"Q_RV:CLH","30124":"Q_RV:CLH","30125":"Q_RV:CLH","30126":"Q_RV:CLH","30127":"Q_RV:CLH","30128":"Q_RV:CLH","30129":"Q_RV:CLH","30130":"Q_RV:CLH","30131":"Q_RV:CLH","30132":"Q_RV:CLH","30133":"Q_RV:CLH","30134":"Q_RV:CLH","30135":"Q_RV:CLH","30136":"Q_RV:CLH","30137":"Q_RV:CLH","30138":"Q_RV:CLH","30139":"Q_RV:CLH","30140":"Q_RV:CLH","30141":"Q_RV:CLH","30142":"Q_RV:CLH","30143":"Q_RV:CLH","30144":"Q_RV:CLH","30145":"Q_RV:CLH","30146":"Q_RV:CLH","30147":"Q_RV:CLH","30148":"Q_RV:CLH","30149":"Q_RV:CLH","30150":"Q_RV:CLH","30151":"Q_RV:CLH","30152":"Q_RV:CLH","30153":"Q_RV:CLH","30154":"Q_RV:CLH","30155":"Q_RV:CLH","30156":"Q_RV:CLH","30157":"Q_RV:CLH","30158":"Q_RV:CLH","30159":"Q_RV:CLH","30160":"Q_RV:CLH","30161":"Q_RV:CLH","30162":"Q_RV:CLH","30163":"Q_RV:CLH","30164":"Q_RV:CLH","30165":"Q_RV:CLH","30166":"Q_RV:CLH","30167":"Q_RV:CLH","30168":"Q_RV:CLH","30169":"Q_RV:CLH","30170":"Q_RV:CLH","30171":"Q_RV:CLH","30172":"Q_RV:CLH","30173":"Q_RV:CLH","30174":"Q_RV:CLH","30175":"Q_RV:CLH","30176":"Q_RV:CLH","30177":"Q_RV:CLH","30178":"Q_RV:CLH","30179":"Q_RV:CLH","30180":"Q_RV:CLH","30181":"Q_RV:CLH","30182":"Q_RV:CLH","30183":"Q_RV:CLH","30184":"Q_RV:CLH","30185":"Q_RV:CLH","30186":"Q_RV:CLH","30187":"Q_RV:CLH","30188":"Q_RV:CLH","30189":"Q_RV:CLH","30190":"Q_RV:CLH","30191":"Q_RV:CLH","30192":"Q_RV:CLH","30193":"Q_RV:CLH","30194":"Q_RV:CLH","30195":"Q_RV:CLH","30196":"Q_RV:CLH","30197":"Q_RV:CLH","30198":"Q_RV:CLH","30199":"Q_RV:CLH","30200":"Q_RV:CLH","30201":"Q_RV:CLH","30202":"Q_RV:CLH","30203":"Q_RV:CLH","30204":"Q_RV:CLH","30205":"Q_RV:CLH","30206":"Q_RV:CLH","30207":"Q_RV:CLH","30208":"Q_RV:CLH","30209":"Q_RV:CLH","30210":"Q_RV:CLH","30211":"Q_RV:CLH","30212":"Q_RV:CLH","30213":"Q_RV:CLH","30214":"Q_RV:CLH","30215":"Q_RV:CLH","30216":"Q_RV:CLH","30217":"Q_RV:CLH","30218":"Q_RV:CLH","30219":"Q_RV:CLH","30220":"Q_RV:CLH","30221":"Q_RV:CLH","30222":"Q_RV:CLH","30223":"Q_RV:CLH","30224":"Q_RV:CLH","30225":"Q_RV:CLH","30226":"Q_RV:CLH","30227":"Q_RV:CLH","30228":"Q_RV:CLH","30229":"Q_RV:CLH","30230":"Q_RV:CLH","30231":"Q_RV:CLH","30232":"Q_RV:CLH","30233":"Q_RV:CLH","30234":"Q_RV:CLH","30235":"Q_RV:CLH","30236":"Q_RV:CLH","30237":"Q_RV:CLH","30238":"Q_RV:CLH","30239":"Q_RV:CLH","30240":"Q_RV:CLH","30241":"Q_RV:CLH","30242":"Q_RV:CLH","30243":"Q_RV:CLH","30244":"Q_RV:CLH","30245":"Q_RV:CLH","30246":"Q_RV:CLH","30247":"Q_RV:CLH","30248":"Q_RV:CLH","30249":"Q_RV:CLH","30250":"Q_RV:CLH","30251":"Q_RV:CLH","30252":"Q_RV:CLH","30253":"Q_RV:CLH","30254":"Q_RV:CLH","30255":"Q_RV:CLH","30256":"Q_RV:CLH","30257":"Q_RV:CLH","30258":"Q_RV:CLH","30259":"Q_RV:CLH","30260":"Q_RV:CLH","30261":"Q_RV:CLH","30262":"Q_RV:CLH","30263":"Q_RV:CLH","30264":"Q_RV:CLH","30265":"Q_RV:CLH","30266":"Q_RV:CLH","30267":"Q_RV:CLH","30268":"Q_RV:CLH","30269":"Q_RV:CLH","30270":"Q_RV:CLH","30271":"Q_RV:CLH","30272":"Q_RV:CLH","30273":"Q_RV:CLH","30274":"Q_RV:CLH","30275":"Q_RV:CLH","30276":"Q_RV:CLH","30277":"Q_RV:CLH","30278":"Q_RV:CLH","30279":"Q_RV:CLH","30280":"Q_RV:CLH","30281":"Q_RV:CLH","30282":"Q_RV:CLH","30283":"Q_RV:CLH","30284":"Q_RV:CLH","30285":"Q_RV:CLH","30286":"Q_RV:CLH","30287":"Q_RV:CLH","30288":"Q_RV:CLH","30289":"Q_RV:CLH","30290":"Q_RV:CLH","30291":"Q_RV:CLH","30292":"Q_RV:CLH","30293":"Q_RV:CLH","30294":"Q_RV:CLH","30295":"Q_RV:CLH","30296":"Q_RV:CLH","30297":"Q_RV:CLH","30298":"Q_RV:CLH","30299":"Q_RV:CLH","30300":"Q_RV:CLH","30301":"Q_RV:CLH","30302":"Q_RV:CLH","30303":"Q_RV:CLH","30304":"Q_RV:CLH","30305":"Q_RV:CLH","30306":"Q_RV:CLH","30307":"Q_RV:CLH","30308":"Q_RV:CLH","30309":"Q_RV:CLH","30310":"Q_RV:CLH","30311":"Q_RV:CLH","30312":"Q_RV:CLH","30313":"Q_RV:CLH","30314":"Q_RV:CLH","30315":"Q_RV:CLH","30316":"Q_RV:CLH","30317":"Q_RV:CLH","30318":"Q_RV:CLH","30319":"Q_RV:CLH","30320":"Q_RV:CLH","30321":"Q_RV:CLH","30322":"Q_RV:CLH","30323":"Q_RV:CLH","30324":"Q_RV:CLH","30325":"Q_RV:CLH","30326":"Q_RV:CLH","30327":"Q_RV:CLH","30328":"Q_RV:CLH","30329":"Q_RV:CLH","30330":"Q_RV:CLH","30331":"Q_RV:CLH","30332":"Q_RV:CLH","30333":"Q_RV:CLH","30334":"Q_RV:CLH","30335":"Q_RV:CLH","30336":"Q_RV:CLH","30337":"Q_RV:CLH","30338":"Q_RV:CLH","30339":"Q_RV:CLH","30340":"Q_RV:CLH","30341":"Q_RV:CLH","30342":"Q_RV:CLH","30343":"Q_RV:CLH","30344":"Q_RV:CLH","30345":"Q_RV:CLH","30346":"Q_RV:CLH","30347":"Q_RV:CLH","30348":"Q_RV:CLH","30349":"Q_RV:CLH","30350":"Q_RV:CLH","30351":"Q_RV:CLH","30352":"Q_RV:CLH","30353":"Q_RV:CLH","30354":"Q_RV:CLH","30355":"Q_RV:CLH","30356":"Q_RV:CLH","30357":"Q_RV:CLH","30358":"Q_RV:CLH","30359":"Q_RV:CLH","30360":"Q_RV:CLH","30361":"Q_RV:CLH","30362":"Q_RV:CLH","30363":"Q_RV:CLH","30364":"Q_RV:CLH","30365":"Q_RV:CLH","30366":"Q_RV:CLH","30367":"Q_RV:CLH","30368":"Q_RV:CLH","30369":"Q_RV:CLH","30370":"Q_RV:CLH","30371":"Q_RV:CLH","30372":"Q_RV:CLH","30373":"Q_RV:CLH","30374":"Q_RV:CLH","30375":"Q_RV:CLH","30376":"Q_RV:CLH","30377":"Q_RV:CLH","30378":"Q_RV:CLH","30379":"Q_RV:CLH","30380":"Q_RV:CLH","30381":"Q_RV:CLH","30382":"Q_RV:CLH","30383":"Q_RV:CLH","30384":"Q_RV:CLH","30385":"Q_RV:CLH","30386":"Q_RV:CLH","30387":"Q_RV:CLH","30388":"Q_RV:CLH","30389":"Q_RV:CLH","30390":"Q_RV:CLH","30391":"Q_RV:CLH","30392":"Q_RV:CLH","30393":"Q_RV:CLH","30394":"Q_RV:CLH","30395":"Q_RV:CLH","30396":"Q_RV:CLH","30397":"Q_RV:CLH","30398":"Q_RV:CLH","30399":"Q_RV:CLH","30400":"Q_RV:CLH","30401":"Q_RV:CLH","30402":"Q_RV:CLH","30403":"Q_RV:CLH","30404":"Q_RV:CLH","30405":"Q_RV:CLH","30406":"Q_RV:CLH","30407":"Q_RV:CLH","30408":"Q_RV:CLH","30409":"Q_RV:CLH","30410":"Q_RV:CLH","30411":"Q_RV:CLH","30412":"Q_RV:CLH","30413":"Q_RV:CLH","30414":"Q_RV:CLH","30415":"Q_RV:CLH","30416":"Q_RV:CLH","30417":"Q_RV:CLH","30418":"Q_RV:CLH","30419":"Q_RV:CLH","30420":"Q_RV:CLH","30421":"Q_RV:CLH","30422":"Q_RV:CLH","30423":"Q_RV:CLH","30424":"Q_RV:CLH","30425":"Q_RV:CLH","30426":"Q_RV:CLH","30427":"Q_RV:CLH","30428":"Q_RV:CLH","30429":"Q_RV:CLH","30430":"Q_RV:CLH","30431":"Q_RV:CLH","30432":"Q_RV:CLH","30433":"Q_RV:CLH","30434":"Q_RV:CLH","30435":"Q_RV:CLH","30436":"Q_RV:CLH","30437":"Q_RV:CLH","30438":"Q_RV:CLH","30439":"Q_RV:CLH","30440":"Q_RV:CLH","30441":"Q_RV:CLH","30442":"Q_RV:CLH","30443":"Q_RV:CLH","30444":"Q_RV:CLH","30445":"Q_RV:CLH","30446":"Q_RV:CLH","30447":"Q_RV:CLH","30448":"Q_RV:CLH","30449":"Q_RV:CLH","30450":"Q_RV:CLH","30451":"Q_RV:CLH","30452":"Q_RV:CLH","30453":"Q_RV:CLH","30454":"Q_RV:CLH","30455":"Q_RV:CLH","30456":"Q_RV:CLH","30457":"Q_RV:CLH","30458":"Q_RV:CLH","30459":"Q_RV:CLH","30460":"Q_RV:CLH","30461":"Q_RV:CLH","30462":"Q_RV:CLH","30463":"Q_RV:CLH","30464":"Q_RV:CLH","30465":"Q_RV:CLH","30466":"Q_RV:CLH","30467":"Q_RV:CLH","30468":"Q_RV:CLH","30469":"Q_RV:CLH","30470":"Q_RV:CLH","30471":"Q_RV:CLH","30472":"Q_RV:CLH","30473":"Q_RV:CLH","30474":"Q_RV:CLH","30475":"Q_RV:CLH","30476":"Q_RV:CLH","30477":"Q_RV:CLH","30478":"Q_RV:CLH","30479":"Q_RV:CLH","30480":"Q_RV:CLH","30481":"Q_RV:CLH","30482":"Q_RV:CLH","30483":"Q_RV:CLH","30484":"Q_RV:CLH","30485":"Q_RV:CLH","30486":"Q_RV:CLH","30487":"Q_RV:CLH","30488":"Q_RV:CLH","30489":"Q_RV:CLH","30490":"Q_RV:CLH","30491":"Q_RV:CLH","30492":"Q_RV:CLH","30493":"Q_RV:CLH","30494":"Q_RV:CLH","30495":"Q_RV:CLH","30496":"Q_RV:CLH","30497":"Q_RV:CLH","30498":"Q_RV:CLH","30499":"Q_RV:CLH","30500":"Q_RV:CLH","30501":"Q_RV:CLH","30502":"Q_RV:CLH","30503":"Q_RV:CLH","30504":"Q_RV:CLH","30505":"Q_RV:CLH","30506":"Q_RV:CLH","30507":"Q_RV:CLH","30508":"Q_RV:CLH","30509":"Q_RV:CLH","30510":"Q_RV:CLH","30511":"Q_RV:CLH","30512":"Q_RV:CLH","30513":"Q_RV:CLH","30514":"Q_RV:CLH","30515":"Q_RV:CLH","30516":"Q_RV:CLH","30517":"Q_RV:CLH","30518":"Q_RV:CLH","30519":"Q_RV:CLH","30520":"Q_RV:CLH","30521":"Q_RV:CLH","30522":"Q_RV:CLH","30523":"Q_RV:CLH","30524":"Q_RV:CLH","30525":"Q_RV:CLH","30526":"Q_RV:CLH","30527":"Q_RV:CLH","30528":"Q_RV:CLH","30529":"Q_RV:CLH","30530":"Q_RV:CLH","30531":"Q_RV:CLH","30532":"Q_RV:CLH","30533":"Q_RV:CLH","30534":"Q_RV:CLH","30535":"Q_RV:CLH","30536":"Q_RV:CLH","30537":"Q_RV:CLH","30538":"Q_RV:CLH","30539":"Q_RV:CLH","30540":"Q_RV:CLH","30541":"Q_RV:CLH","30542":"Q_RV:CLH","30543":"Q_RV:CLH","30544":"Q_RV:CLH","30545":"Q_RV:CLH","30546":"Q_RV:CLH","30547":"Q_RV:CLH","30548":"Q_RV:CLH","30549":"Q_RV:CLH","30550":"Q_RV:CLH","30551":"Q_RV:CLH","30552":"Q_RV:CLH","30553":"Q_RV:CLH","30554":"Q_RV:CLH","30555":"Q_RV:CLH","30556":"Q_RV:CLH","30557":"Q_RV:CLH","30558":"Q_RV:CLH","30559":"Q_RV:CLH","30560":"Q_RV:CLH","30561":"Q_RV:CLH","30562":"Q_RV:CLH","30563":"Q_RV:CLH","30564":"Q_RV:CLH","30565":"Q_RV:CLH","30566":"Q_RV:CLH","30567":"Q_RV:CLH","30568":"Q_RV:CLH","30569":"Q_RV:CLH","30570":"Q_RV:CLH","30571":"Q_RV:CLH","30572":"Q_RV:CLH","30573":"Q_RV:CLH","30574":"Q_RV:CLH","30575":"Q_RV:CLH","30576":"Q_RV:CLH","30577":"Q_RV:CLH","30578":"Q_RV:CLH","30579":"Q_RV:CLH","30580":"Q_RV:CLH","30581":"Q_RV:CLH","30582":"Q_RV:CLH","30583":"Q_RV:CLH","30584":"Q_RV:CLH","30585":"Q_RV:CLH","30586":"Q_RV:CLH","30587":"Q_RV:CLH","30588":"Q_RV:CLH","30589":"Q_RV:CLH","30590":"Q_RV:CLH","30591":"Q_RV:CLH","30592":"Q_RV:CLH","30593":"Q_RV:CLH","30594":"Q_RV:CLH","30595":"Q_RV:CLH","30596":"Q_RV:CLH","30597":"Q_RV:CLH","30598":"Q_RV:CLH","30599":"Q_RV:CLH","30600":"Q_RV:CLH","30601":"Q_RV:CLH","30602":"Q_RV:CLH","30603":"Q_RV:CLH","30604":"Q_RV:CLH","30605":"Q_RV:CLH","30606":"Q_RV:CLH","30607":"Q_RV:CLH","30608":"Q_RV:CLH","30609":"Q_RV:CLH","30610":"Q_RV:CLH","30611":"Q_RV:CLH","30612":"Q_RV:CLH","30613":"Q_RV:CLH","30614":"Q_RV:CLH","30615":"Q_RV:CLH","30616":"Q_RV:CLH","30617":"Q_RV:CLH","30618":"Q_RV:CLH","30619":"Q_RV:CLH","30620":"Q_RV:CLH","30621":"Q_RV:CLH","30622":"Q_RV:CLH","30623":"Q_RV:CLH","30624":"Q_RV:CLH","30625":"Q_RV:CLH","30626":"Q_RV:CLH","30627":"Q_RV:CLH","30628":"Q_RV:CLH","30629":"Q_RV:CLH","30630":"Q_RV:CLH","30631":"Q_RV:CLH","30632":"Q_RV:CLH","30633":"Q_RV:CLH","30634":"Q_RV:CLH","30635":"Q_RV:CLH","30636":"Q_RV:CLH","30637":"Q_RV:CLH","30638":"Q_RV:CLH","30639":"Q_RV:CLH","30640":"Q_RV:CLH","30641":"Q_RV:CLH","30642":"Q_RV:CLH","30643":"Q_RV:CLH","30644":"Q_RV:CLH","30645":"Q_RV:CLH","30646":"Q_RV:CLH","30647":"Q_RV:CLH","30648":"Q_RV:CLH","30649":"Q_RV:CLH","30650":"Q_RV:CLH","30651":"Q_RV:CLH","30652":"Q_RV:CLH","30653":"Q_RV:CLH","30654":"Q_RV:CLH","30655":"Q_RV:CLH","30656":"Q_RV:CLH","30657":"Q_RV:CLH","30658":"Q_RV:CLH","30659":"Q_RV:CLH","30660":"Q_RV:CLH","30661":"Q_RV:CLH","30662":"Q_RV:CLH","30663":"Q_RV:CLH","30664":"Q_RV:CLH","30665":"Q_RV:CLH","30666":"Q_RV:CLH","30667":"Q_RV:CLH","30668":"Q_RV:CLH","30669":"Q_RV:CLH","30670":"Q_RV:CLH","30671":"Q_RV:CLH","30672":"Q_RV:CLH","30673":"Q_RV:CLH","30674":"Q_RV:CLH","30675":"Q_RV:CLH","30676":"Q_RV:CLH","30677":"Q_RV:CLH","30678":"Q_RV:CLH","30679":"Q_RV:CLH","30680":"Q_RV:CLH","30681":"Q_RV:CLH","30682":"Q_RV:CLH","30683":"Q_RV:CLH","30684":"Q_RV:CLH","30685":"Q_RV:CLH","30686":"Q_RV:CLH","30687":"Q_RV:CLH","30688":"Q_RV:CLH","30689":"Q_RV:CLH","30690":"Q_RV:CLH","30691":"Q_RV:CLH","30692":"Q_RV:CLH","30693":"Q_RV:CLH","30694":"Q_RV:CLH","30695":"Q_RV:CLH","30696":"Q_RV:CLH","30697":"Q_RV:CLH","30698":"Q_RV:CLH","30699":"Q_RV:CLH","30700":"Q_RV:CLH","30701":"Q_RV:CLH","30702":"Q_RV:CLH","30703":"Q_RV:CLH","30704":"Q_RV:CLH","30705":"Q_RV:CLH","30706":"Q_RV:CLH","30707":"Q_RV:CLH","30708":"Q_RV:CLH","30709":"Q_RV:CLH","30710":"Q_RV:CLH","30711":"Q_RV:CLH","30712":"Q_RV:CLH","30713":"Q_RV:CLH","30714":"Q_RV:CLH","30715":"Q_RV:CLH","30716":"Q_RV:CLH","30717":"Q_RV:CLH","30718":"Q_RV:CLH","30719":"Q_RV:CLH","30720":"Q_RV:CLH","30721":"Q_RV:CLH","30722":"Q_RV:CLH","30723":"Q_RV:CLH","30724":"Q_RV:CLH","30725":"Q_RV:CLH","30726":"Q_RV:CLH","30727":"Q_RV:CLH","30728":"Q_RV:CLH","30729":"Q_RV:CLH","30730":"Q_RV:CLH","30731":"Q_RV:CLH","30732":"Q_RV:CLH","30733":"Q_RV:CLH","30734":"Q_RV:CLH","30735":"Q_RV:CLH","30736":"Q_RV:CLH","30737":"Q_RV:CLH","30738":"Q_RV:CLH","30739":"Q_RV:CLH","30740":"Q_RV:CLH","30741":"Q_RV:CLH","30742":"Q_RV:CLH","30743":"Q_RV:CLH","30744":"Q_RV:CLH","30745":"Q_RV:CLH","30746":"Q_RV:CLH","30747":"Q_RV:CLH","30748":"Q_RV:CLH","30749":"Q_RV:CLH","30750":"Q_RV:CLH","30751":"Q_RV:CLH","30752":"Q_RV:CLH","30753":"Q_RV:CLH","30754":"Q_RV:CLH","30755":"Q_RV:CLH","30756":"Q_RV:CLH","30757":"Q_RV:CLH","30758":"Q_RV:CLH","30759":"Q_RV:CLH","30760":"Q_RV:CLH","30761":"Q_RV:CLH","30762":"Q_RV:CLH","30763":"Q_RV:CLH","30764":"Q_RV:CLH","30765":"Q_RV:CLH","30766":"Q_RV:CLH","30767":"Q_RV:CLH","30768":"Q_RV:CLH","30769":"Q_RV:CLH","30770":"Q_RV:CLH","30771":"Q_RV:CLH","30772":"Q_RV:CLH","30773":"Q_RV:CLH","30774":"Q_RV:CLH","30775":"Q_RV:CLH","30776":"Q_RV:CLH","30777":"Q_RV:CLH","30778":"Q_RV:CLH","30779":"Q_RV:CLH","30780":"Q_RV:CLH","30781":"Q_RV:CLH","30782":"Q_RV:CLH","30783":"Q_RV:CLH","30784":"Q_RV:CLH","30785":"Q_RV:CLH","30786":"Q_RV:CLH","30787":"Q_RV:CLH","30788":"Q_RV:CLH","30789":"Q_RV:CLH","30790":"Q_RV:CLH","30791":"Q_RV:CLH","30792":"Q_RV:CLH","30793":"Q_RV:CLH","30794":"Q_RV:CLH","30795":"Q_RV:CLH","30796":"Q_RV:CLH","30797":"Q_RV:CLH","30798":"Q_RV:CLH","30799":"Q_RV:CLH","30800":"Q_RV:CLH","30801":"Q_RV:CLH","30802":"Q_RV:CLH","30803":"Q_RV:CLH","30804":"Q_RV:CLH","30805":"Q_RV:CLH","30806":"Q_RV:CLH","30807":"Q_RV:CLH","30808":"Q_RV:CLH","30809":"Q_RV:CLH","30810":"Q_RV:CLH","30811":"Q_RV:CLH","30812":"Q_RV:CLH","30813":"Q_RV:CLH","30814":"Q_RV:CLH","30815":"Q_RV:CLH","30816":"Q_RV:CLH","30817":"Q_RV:CLH","30818":"Q_RV:CLH","30819":"Q_RV:CLH","30820":"Q_RV:CLH","30821":"Q_RV:CLH","30822":"Q_RV:CLH","30823":"Q_RV:CLH","30824":"Q_RV:CLH","30825":"Q_RV:CLH","30826":"Q_RV:CLH","30827":"Q_RV:CLH","30828":"Q_RV:CLH","30829":"Q_RV:CLH","30830":"Q_RV:CLH","30831":"Q_RV:CLH","30832":"Q_RV:CLH","30833":"Q_RV:CLH","30834":"Q_RV:CLH","30835":"Q_RV:CLH","30836":"Q_RV:CLH","30837":"Q_RV:CLH","30838":"Q_RV:CLH","30839":"Q_RV:CLH","30840":"Q_RV:CLH","30841":"Q_RV:CLH","30842":"Q_RV:CLH","30843":"Q_RV:CLH","30844":"Q_RV:CLH","30845":"Q_RV:CLH","30846":"Q_RV:CLH","30847":"Q_RV:CLH","30848":"Q_RV:CLH","30849":"Q_RV:CLH","30850":"Q_RV:CLH","30851":"Q_RV:CLH","30852":"Q_RV:CLH","30853":"Q_RV:CLH","30854":"Q_RV:CLH","30855":"Q_RV:CLH","30856":"Q_RV:CLH","30857":"Q_RV:CLH","30858":"Q_RV:CLH","30859":"Q_RV:CLH","30860":"Q_RV:CLH","30861":"Q_RV:CLH","30862":"Q_RV:CLH","30863":"Q_RV:CLH","30864":"Q_RV:CLH","30865":"Q_RV:CLH","30866":"Q_RV:CLH","30867":"Q_RV:CLH","30868":"Q_RV:CLH","30869":"Q_RV:CLH","30870":"Q_RV:CLH","30871":"Q_RV:CLH","30872":"Q_RV:CLH","30873":"Q_RV:CLH","30874":"Q_RV:CLH","30875":"Q_RV:CLH","30876":"Q_RV:CLH","30877":"Q_RV:CLH","30878":"Q_RV:CLH","30879":"Q_RV:CLH","30880":"Q_RV:CLH","30881":"Q_RV:CLH","30882":"Q_RV:CLH","30883":"Q_RV:CLH","30884":"Q_RV:CLH","30885":"Q_RV:CLH","30886":"Q_RV:CLH","30887":"Q_RV:CLH","30888":"Q_RV:CLH","30889":"Q_RV:CLH","30890":"Q_RV:CLH","30891":"Q_RV:CLH","30892":"Q_RV:CLH","30893":"Q_RV:CLH","30894":"Q_RV:CLH","30895":"Q_RV:CLH","30896":"Q_RV:CLH","30897":"Q_RV:CLH","30898":"Q_RV:CLH","30899":"Q_RV:CLH","30900":"Q_RV:CLH","30901":"Q_RV:CLH","30902":"Q_RV:CLH","30903":"Q_RV:CLH","30904":"Q_RV:CLH","30905":"Q_RV:CLH","30906":"Q_RV:CLH","30907":"Q_RV:CLH","30908":"Q_RV:CLH","30909":"Q_RV:CLH","30910":"Q_RV:CLH","30911":"Q_RV:CLH","30912":"Q_RV:CLH","30913":"Q_RV:CLH","30914":"Q_RV:CLH","30915":"Q_RV:CLH","30916":"Q_RV:CLH","30917":"Q_RV:CLH","30918":"Q_RV:CLH","30919":"Q_RV:CLH","30920":"Q_RV:CLH","30921":"Q_RV:CLH","30922":"Q_RV:CLH","30923":"Q_RV:CLH","30924":"Q_RV:CLH","30925":"Q_RV:CLH","30926":"Q_RV:CLH","30927":"Q_RV:CLH","30928":"Q_RV:CLH","30929":"Q_RV:CLH","30930":"Q_RV:CLH","30931":"Q_RV:CLH","30932":"Q_RV:CLH","30933":"Q_RV:CLH","30934":"Q_RV:CLH","30935":"Q_RV:CLH","30936":"Q_RV:CLH","30937":"Q_RV:CLH","30938":"Q_RV:CLH","30939":"Q_RV:CLH","30940":"Q_RV:CLH","30941":"Q_RV:CLH","30942":"Q_RV:CLH","30943":"Q_RV:CLH","30944":"Q_RV:CLH","30945":"Q_RV:CLH","30946":"Q_RV:CLH","30947":"Q_RV:CLH","30948":"Q_RV:CLH","30949":"Q_RV:CLH","30950":"Q_RV:CLH","30951":"Q_RV:CLH","30952":"Q_RV:CLH","30953":"Q_RV:CLH","30954":"Q_RV:CLH","30955":"Q_RV:CLH","30956":"Q_RV:CLH","30957":"Q_RV:CLH","30958":"Q_RV:CLH","30959":"Q_RV:CLH","30960":"Q_RV:CLH","30961":"Q_RV:CLH","30962":"Q_RV:CLH","30963":"Q_RV:CLH","30964":"Q_RV:CLH","30965":"Q_RV:CLH","30966":"Q_RV:CLH","30967":"Q_RV:CLH","30968":"Q_RV:CLH","30969":"Q_RV:CLH","30970":"Q_RV:CLH","30971":"Q_RV:CLH","30972":"Q_RV:CLH","30973":"Q_RV:CLH","30974":"Q_RV:CLH","30975":"Q_RV:CLH","30976":"Q_RV:CLH","30977":"Q_RV:CLH","30978":"Q_RV:CLH","30979":"Q_RV:CLH","30980":"Q_RV:CLH","30981":"Q_RV:CLH","30982":"Q_RV:CLH","30983":"Q_RV:CLH","30984":"Q_RV:CLH","30985":"Q_RV:CLH","30986":"Q_RV:CLH","30987":"Q_RV:CLH","30988":"Q_RV:CLH","30989":"Q_RV:CLH","30990":"Q_RV:CLH","30991":"Q_RV:CLH","30992":"Q_RV:CLH","30993":"Q_RV:CLH","30994":"Q_RV:CLH","30995":"Q_RV:CLH","30996":"Q_RV:CLH","30997":"Q_RV:CLH","30998":"Q_RV:CLH","30999":"Q_RV:CLH","31000":"P_pul:CLH","31001":"P_pul:CLH","31002":"P_pul:CLH","31003":"P_pul:CLH","31004":"P_pul:CLH","31005":"P_pul:CLH","31006":"P_pul:CLH","31007":"P_pul:CLH","31008":"P_pul:CLH","31009":"P_pul:CLH","31010":"P_pul:CLH","31011":"P_pul:CLH","31012":"P_pul:CLH","31013":"P_pul:CLH","31014":"P_pul:CLH","31015":"P_pul:CLH","31016":"P_pul:CLH","31017":"P_pul:CLH","31018":"P_pul:CLH","31019":"P_pul:CLH","31020":"P_pul:CLH","31021":"P_pul:CLH","31022":"P_pul:CLH","31023":"P_pul:CLH","31024":"P_pul:CLH","31025":"P_pul:CLH","31026":"P_pul:CLH","31027":"P_pul:CLH","31028":"P_pul:CLH","31029":"P_pul:CLH","31030":"P_pul:CLH","31031":"P_pul:CLH","31032":"P_pul:CLH","31033":"P_pul:CLH","31034":"P_pul:CLH","31035":"P_pul:CLH","31036":"P_pul:CLH","31037":"P_pul:CLH","31038":"P_pul:CLH","31039":"P_pul:CLH","31040":"P_pul:CLH","31041":"P_pul:CLH","31042":"P_pul:CLH","31043":"P_pul:CLH","31044":"P_pul:CLH","31045":"P_pul:CLH","31046":"P_pul:CLH","31047":"P_pul:CLH","31048":"P_pul:CLH","31049":"P_pul:CLH","31050":"P_pul:CLH","31051":"P_pul:CLH","31052":"P_pul:CLH","31053":"P_pul:CLH","31054":"P_pul:CLH","31055":"P_pul:CLH","31056":"P_pul:CLH","31057":"P_pul:CLH","31058":"P_pul:CLH","31059":"P_pul:CLH","31060":"P_pul:CLH","31061":"P_pul:CLH","31062":"P_pul:CLH","31063":"P_pul:CLH","31064":"P_pul:CLH","31065":"P_pul:CLH","31066":"P_pul:CLH","31067":"P_pul:CLH","31068":"P_pul:CLH","31069":"P_pul:CLH","31070":"P_pul:CLH","31071":"P_pul:CLH","31072":"P_pul:CLH","31073":"P_pul:CLH","31074":"P_pul:CLH","31075":"P_pul:CLH","31076":"P_pul:CLH","31077":"P_pul:CLH","31078":"P_pul:CLH","31079":"P_pul:CLH","31080":"P_pul:CLH","31081":"P_pul:CLH","31082":"P_pul:CLH","31083":"P_pul:CLH","31084":"P_pul:CLH","31085":"P_pul:CLH","31086":"P_pul:CLH","31087":"P_pul:CLH","31088":"P_pul:CLH","31089":"P_pul:CLH","31090":"P_pul:CLH","31091":"P_pul:CLH","31092":"P_pul:CLH","31093":"P_pul:CLH","31094":"P_pul:CLH","31095":"P_pul:CLH","31096":"P_pul:CLH","31097":"P_pul:CLH","31098":"P_pul:CLH","31099":"P_pul:CLH","31100":"P_pul:CLH","31101":"P_pul:CLH","31102":"P_pul:CLH","31103":"P_pul:CLH","31104":"P_pul:CLH","31105":"P_pul:CLH","31106":"P_pul:CLH","31107":"P_pul:CLH","31108":"P_pul:CLH","31109":"P_pul:CLH","31110":"P_pul:CLH","31111":"P_pul:CLH","31112":"P_pul:CLH","31113":"P_pul:CLH","31114":"P_pul:CLH","31115":"P_pul:CLH","31116":"P_pul:CLH","31117":"P_pul:CLH","31118":"P_pul:CLH","31119":"P_pul:CLH","31120":"P_pul:CLH","31121":"P_pul:CLH","31122":"P_pul:CLH","31123":"P_pul:CLH","31124":"P_pul:CLH","31125":"P_pul:CLH","31126":"P_pul:CLH","31127":"P_pul:CLH","31128":"P_pul:CLH","31129":"P_pul:CLH","31130":"P_pul:CLH","31131":"P_pul:CLH","31132":"P_pul:CLH","31133":"P_pul:CLH","31134":"P_pul:CLH","31135":"P_pul:CLH","31136":"P_pul:CLH","31137":"P_pul:CLH","31138":"P_pul:CLH","31139":"P_pul:CLH","31140":"P_pul:CLH","31141":"P_pul:CLH","31142":"P_pul:CLH","31143":"P_pul:CLH","31144":"P_pul:CLH","31145":"P_pul:CLH","31146":"P_pul:CLH","31147":"P_pul:CLH","31148":"P_pul:CLH","31149":"P_pul:CLH","31150":"P_pul:CLH","31151":"P_pul:CLH","31152":"P_pul:CLH","31153":"P_pul:CLH","31154":"P_pul:CLH","31155":"P_pul:CLH","31156":"P_pul:CLH","31157":"P_pul:CLH","31158":"P_pul:CLH","31159":"P_pul:CLH","31160":"P_pul:CLH","31161":"P_pul:CLH","31162":"P_pul:CLH","31163":"P_pul:CLH","31164":"P_pul:CLH","31165":"P_pul:CLH","31166":"P_pul:CLH","31167":"P_pul:CLH","31168":"P_pul:CLH","31169":"P_pul:CLH","31170":"P_pul:CLH","31171":"P_pul:CLH","31172":"P_pul:CLH","31173":"P_pul:CLH","31174":"P_pul:CLH","31175":"P_pul:CLH","31176":"P_pul:CLH","31177":"P_pul:CLH","31178":"P_pul:CLH","31179":"P_pul:CLH","31180":"P_pul:CLH","31181":"P_pul:CLH","31182":"P_pul:CLH","31183":"P_pul:CLH","31184":"P_pul:CLH","31185":"P_pul:CLH","31186":"P_pul:CLH","31187":"P_pul:CLH","31188":"P_pul:CLH","31189":"P_pul:CLH","31190":"P_pul:CLH","31191":"P_pul:CLH","31192":"P_pul:CLH","31193":"P_pul:CLH","31194":"P_pul:CLH","31195":"P_pul:CLH","31196":"P_pul:CLH","31197":"P_pul:CLH","31198":"P_pul:CLH","31199":"P_pul:CLH","31200":"P_pul:CLH","31201":"P_pul:CLH","31202":"P_pul:CLH","31203":"P_pul:CLH","31204":"P_pul:CLH","31205":"P_pul:CLH","31206":"P_pul:CLH","31207":"P_pul:CLH","31208":"P_pul:CLH","31209":"P_pul:CLH","31210":"P_pul:CLH","31211":"P_pul:CLH","31212":"P_pul:CLH","31213":"P_pul:CLH","31214":"P_pul:CLH","31215":"P_pul:CLH","31216":"P_pul:CLH","31217":"P_pul:CLH","31218":"P_pul:CLH","31219":"P_pul:CLH","31220":"P_pul:CLH","31221":"P_pul:CLH","31222":"P_pul:CLH","31223":"P_pul:CLH","31224":"P_pul:CLH","31225":"P_pul:CLH","31226":"P_pul:CLH","31227":"P_pul:CLH","31228":"P_pul:CLH","31229":"P_pul:CLH","31230":"P_pul:CLH","31231":"P_pul:CLH","31232":"P_pul:CLH","31233":"P_pul:CLH","31234":"P_pul:CLH","31235":"P_pul:CLH","31236":"P_pul:CLH","31237":"P_pul:CLH","31238":"P_pul:CLH","31239":"P_pul:CLH","31240":"P_pul:CLH","31241":"P_pul:CLH","31242":"P_pul:CLH","31243":"P_pul:CLH","31244":"P_pul:CLH","31245":"P_pul:CLH","31246":"P_pul:CLH","31247":"P_pul:CLH","31248":"P_pul:CLH","31249":"P_pul:CLH","31250":"P_pul:CLH","31251":"P_pul:CLH","31252":"P_pul:CLH","31253":"P_pul:CLH","31254":"P_pul:CLH","31255":"P_pul:CLH","31256":"P_pul:CLH","31257":"P_pul:CLH","31258":"P_pul:CLH","31259":"P_pul:CLH","31260":"P_pul:CLH","31261":"P_pul:CLH","31262":"P_pul:CLH","31263":"P_pul:CLH","31264":"P_pul:CLH","31265":"P_pul:CLH","31266":"P_pul:CLH","31267":"P_pul:CLH","31268":"P_pul:CLH","31269":"P_pul:CLH","31270":"P_pul:CLH","31271":"P_pul:CLH","31272":"P_pul:CLH","31273":"P_pul:CLH","31274":"P_pul:CLH","31275":"P_pul:CLH","31276":"P_pul:CLH","31277":"P_pul:CLH","31278":"P_pul:CLH","31279":"P_pul:CLH","31280":"P_pul:CLH","31281":"P_pul:CLH","31282":"P_pul:CLH","31283":"P_pul:CLH","31284":"P_pul:CLH","31285":"P_pul:CLH","31286":"P_pul:CLH","31287":"P_pul:CLH","31288":"P_pul:CLH","31289":"P_pul:CLH","31290":"P_pul:CLH","31291":"P_pul:CLH","31292":"P_pul:CLH","31293":"P_pul:CLH","31294":"P_pul:CLH","31295":"P_pul:CLH","31296":"P_pul:CLH","31297":"P_pul:CLH","31298":"P_pul:CLH","31299":"P_pul:CLH","31300":"P_pul:CLH","31301":"P_pul:CLH","31302":"P_pul:CLH","31303":"P_pul:CLH","31304":"P_pul:CLH","31305":"P_pul:CLH","31306":"P_pul:CLH","31307":"P_pul:CLH","31308":"P_pul:CLH","31309":"P_pul:CLH","31310":"P_pul:CLH","31311":"P_pul:CLH","31312":"P_pul:CLH","31313":"P_pul:CLH","31314":"P_pul:CLH","31315":"P_pul:CLH","31316":"P_pul:CLH","31317":"P_pul:CLH","31318":"P_pul:CLH","31319":"P_pul:CLH","31320":"P_pul:CLH","31321":"P_pul:CLH","31322":"P_pul:CLH","31323":"P_pul:CLH","31324":"P_pul:CLH","31325":"P_pul:CLH","31326":"P_pul:CLH","31327":"P_pul:CLH","31328":"P_pul:CLH","31329":"P_pul:CLH","31330":"P_pul:CLH","31331":"P_pul:CLH","31332":"P_pul:CLH","31333":"P_pul:CLH","31334":"P_pul:CLH","31335":"P_pul:CLH","31336":"P_pul:CLH","31337":"P_pul:CLH","31338":"P_pul:CLH","31339":"P_pul:CLH","31340":"P_pul:CLH","31341":"P_pul:CLH","31342":"P_pul:CLH","31343":"P_pul:CLH","31344":"P_pul:CLH","31345":"P_pul:CLH","31346":"P_pul:CLH","31347":"P_pul:CLH","31348":"P_pul:CLH","31349":"P_pul:CLH","31350":"P_pul:CLH","31351":"P_pul:CLH","31352":"P_pul:CLH","31353":"P_pul:CLH","31354":"P_pul:CLH","31355":"P_pul:CLH","31356":"P_pul:CLH","31357":"P_pul:CLH","31358":"P_pul:CLH","31359":"P_pul:CLH","31360":"P_pul:CLH","31361":"P_pul:CLH","31362":"P_pul:CLH","31363":"P_pul:CLH","31364":"P_pul:CLH","31365":"P_pul:CLH","31366":"P_pul:CLH","31367":"P_pul:CLH","31368":"P_pul:CLH","31369":"P_pul:CLH","31370":"P_pul:CLH","31371":"P_pul:CLH","31372":"P_pul:CLH","31373":"P_pul:CLH","31374":"P_pul:CLH","31375":"P_pul:CLH","31376":"P_pul:CLH","31377":"P_pul:CLH","31378":"P_pul:CLH","31379":"P_pul:CLH","31380":"P_pul:CLH","31381":"P_pul:CLH","31382":"P_pul:CLH","31383":"P_pul:CLH","31384":"P_pul:CLH","31385":"P_pul:CLH","31386":"P_pul:CLH","31387":"P_pul:CLH","31388":"P_pul:CLH","31389":"P_pul:CLH","31390":"P_pul:CLH","31391":"P_pul:CLH","31392":"P_pul:CLH","31393":"P_pul:CLH","31394":"P_pul:CLH","31395":"P_pul:CLH","31396":"P_pul:CLH","31397":"P_pul:CLH","31398":"P_pul:CLH","31399":"P_pul:CLH","31400":"P_pul:CLH","31401":"P_pul:CLH","31402":"P_pul:CLH","31403":"P_pul:CLH","31404":"P_pul:CLH","31405":"P_pul:CLH","31406":"P_pul:CLH","31407":"P_pul:CLH","31408":"P_pul:CLH","31409":"P_pul:CLH","31410":"P_pul:CLH","31411":"P_pul:CLH","31412":"P_pul:CLH","31413":"P_pul:CLH","31414":"P_pul:CLH","31415":"P_pul:CLH","31416":"P_pul:CLH","31417":"P_pul:CLH","31418":"P_pul:CLH","31419":"P_pul:CLH","31420":"P_pul:CLH","31421":"P_pul:CLH","31422":"P_pul:CLH","31423":"P_pul:CLH","31424":"P_pul:CLH","31425":"P_pul:CLH","31426":"P_pul:CLH","31427":"P_pul:CLH","31428":"P_pul:CLH","31429":"P_pul:CLH","31430":"P_pul:CLH","31431":"P_pul:CLH","31432":"P_pul:CLH","31433":"P_pul:CLH","31434":"P_pul:CLH","31435":"P_pul:CLH","31436":"P_pul:CLH","31437":"P_pul:CLH","31438":"P_pul:CLH","31439":"P_pul:CLH","31440":"P_pul:CLH","31441":"P_pul:CLH","31442":"P_pul:CLH","31443":"P_pul:CLH","31444":"P_pul:CLH","31445":"P_pul:CLH","31446":"P_pul:CLH","31447":"P_pul:CLH","31448":"P_pul:CLH","31449":"P_pul:CLH","31450":"P_pul:CLH","31451":"P_pul:CLH","31452":"P_pul:CLH","31453":"P_pul:CLH","31454":"P_pul:CLH","31455":"P_pul:CLH","31456":"P_pul:CLH","31457":"P_pul:CLH","31458":"P_pul:CLH","31459":"P_pul:CLH","31460":"P_pul:CLH","31461":"P_pul:CLH","31462":"P_pul:CLH","31463":"P_pul:CLH","31464":"P_pul:CLH","31465":"P_pul:CLH","31466":"P_pul:CLH","31467":"P_pul:CLH","31468":"P_pul:CLH","31469":"P_pul:CLH","31470":"P_pul:CLH","31471":"P_pul:CLH","31472":"P_pul:CLH","31473":"P_pul:CLH","31474":"P_pul:CLH","31475":"P_pul:CLH","31476":"P_pul:CLH","31477":"P_pul:CLH","31478":"P_pul:CLH","31479":"P_pul:CLH","31480":"P_pul:CLH","31481":"P_pul:CLH","31482":"P_pul:CLH","31483":"P_pul:CLH","31484":"P_pul:CLH","31485":"P_pul:CLH","31486":"P_pul:CLH","31487":"P_pul:CLH","31488":"P_pul:CLH","31489":"P_pul:CLH","31490":"P_pul:CLH","31491":"P_pul:CLH","31492":"P_pul:CLH","31493":"P_pul:CLH","31494":"P_pul:CLH","31495":"P_pul:CLH","31496":"P_pul:CLH","31497":"P_pul:CLH","31498":"P_pul:CLH","31499":"P_pul:CLH","31500":"P_pul:CLH","31501":"P_pul:CLH","31502":"P_pul:CLH","31503":"P_pul:CLH","31504":"P_pul:CLH","31505":"P_pul:CLH","31506":"P_pul:CLH","31507":"P_pul:CLH","31508":"P_pul:CLH","31509":"P_pul:CLH","31510":"P_pul:CLH","31511":"P_pul:CLH","31512":"P_pul:CLH","31513":"P_pul:CLH","31514":"P_pul:CLH","31515":"P_pul:CLH","31516":"P_pul:CLH","31517":"P_pul:CLH","31518":"P_pul:CLH","31519":"P_pul:CLH","31520":"P_pul:CLH","31521":"P_pul:CLH","31522":"P_pul:CLH","31523":"P_pul:CLH","31524":"P_pul:CLH","31525":"P_pul:CLH","31526":"P_pul:CLH","31527":"P_pul:CLH","31528":"P_pul:CLH","31529":"P_pul:CLH","31530":"P_pul:CLH","31531":"P_pul:CLH","31532":"P_pul:CLH","31533":"P_pul:CLH","31534":"P_pul:CLH","31535":"P_pul:CLH","31536":"P_pul:CLH","31537":"P_pul:CLH","31538":"P_pul:CLH","31539":"P_pul:CLH","31540":"P_pul:CLH","31541":"P_pul:CLH","31542":"P_pul:CLH","31543":"P_pul:CLH","31544":"P_pul:CLH","31545":"P_pul:CLH","31546":"P_pul:CLH","31547":"P_pul:CLH","31548":"P_pul:CLH","31549":"P_pul:CLH","31550":"P_pul:CLH","31551":"P_pul:CLH","31552":"P_pul:CLH","31553":"P_pul:CLH","31554":"P_pul:CLH","31555":"P_pul:CLH","31556":"P_pul:CLH","31557":"P_pul:CLH","31558":"P_pul:CLH","31559":"P_pul:CLH","31560":"P_pul:CLH","31561":"P_pul:CLH","31562":"P_pul:CLH","31563":"P_pul:CLH","31564":"P_pul:CLH","31565":"P_pul:CLH","31566":"P_pul:CLH","31567":"P_pul:CLH","31568":"P_pul:CLH","31569":"P_pul:CLH","31570":"P_pul:CLH","31571":"P_pul:CLH","31572":"P_pul:CLH","31573":"P_pul:CLH","31574":"P_pul:CLH","31575":"P_pul:CLH","31576":"P_pul:CLH","31577":"P_pul:CLH","31578":"P_pul:CLH","31579":"P_pul:CLH","31580":"P_pul:CLH","31581":"P_pul:CLH","31582":"P_pul:CLH","31583":"P_pul:CLH","31584":"P_pul:CLH","31585":"P_pul:CLH","31586":"P_pul:CLH","31587":"P_pul:CLH","31588":"P_pul:CLH","31589":"P_pul:CLH","31590":"P_pul:CLH","31591":"P_pul:CLH","31592":"P_pul:CLH","31593":"P_pul:CLH","31594":"P_pul:CLH","31595":"P_pul:CLH","31596":"P_pul:CLH","31597":"P_pul:CLH","31598":"P_pul:CLH","31599":"P_pul:CLH","31600":"P_pul:CLH","31601":"P_pul:CLH","31602":"P_pul:CLH","31603":"P_pul:CLH","31604":"P_pul:CLH","31605":"P_pul:CLH","31606":"P_pul:CLH","31607":"P_pul:CLH","31608":"P_pul:CLH","31609":"P_pul:CLH","31610":"P_pul:CLH","31611":"P_pul:CLH","31612":"P_pul:CLH","31613":"P_pul:CLH","31614":"P_pul:CLH","31615":"P_pul:CLH","31616":"P_pul:CLH","31617":"P_pul:CLH","31618":"P_pul:CLH","31619":"P_pul:CLH","31620":"P_pul:CLH","31621":"P_pul:CLH","31622":"P_pul:CLH","31623":"P_pul:CLH","31624":"P_pul:CLH","31625":"P_pul:CLH","31626":"P_pul:CLH","31627":"P_pul:CLH","31628":"P_pul:CLH","31629":"P_pul:CLH","31630":"P_pul:CLH","31631":"P_pul:CLH","31632":"P_pul:CLH","31633":"P_pul:CLH","31634":"P_pul:CLH","31635":"P_pul:CLH","31636":"P_pul:CLH","31637":"P_pul:CLH","31638":"P_pul:CLH","31639":"P_pul:CLH","31640":"P_pul:CLH","31641":"P_pul:CLH","31642":"P_pul:CLH","31643":"P_pul:CLH","31644":"P_pul:CLH","31645":"P_pul:CLH","31646":"P_pul:CLH","31647":"P_pul:CLH","31648":"P_pul:CLH","31649":"P_pul:CLH","31650":"P_pul:CLH","31651":"P_pul:CLH","31652":"P_pul:CLH","31653":"P_pul:CLH","31654":"P_pul:CLH","31655":"P_pul:CLH","31656":"P_pul:CLH","31657":"P_pul:CLH","31658":"P_pul:CLH","31659":"P_pul:CLH","31660":"P_pul:CLH","31661":"P_pul:CLH","31662":"P_pul:CLH","31663":"P_pul:CLH","31664":"P_pul:CLH","31665":"P_pul:CLH","31666":"P_pul:CLH","31667":"P_pul:CLH","31668":"P_pul:CLH","31669":"P_pul:CLH","31670":"P_pul:CLH","31671":"P_pul:CLH","31672":"P_pul:CLH","31673":"P_pul:CLH","31674":"P_pul:CLH","31675":"P_pul:CLH","31676":"P_pul:CLH","31677":"P_pul:CLH","31678":"P_pul:CLH","31679":"P_pul:CLH","31680":"P_pul:CLH","31681":"P_pul:CLH","31682":"P_pul:CLH","31683":"P_pul:CLH","31684":"P_pul:CLH","31685":"P_pul:CLH","31686":"P_pul:CLH","31687":"P_pul:CLH","31688":"P_pul:CLH","31689":"P_pul:CLH","31690":"P_pul:CLH","31691":"P_pul:CLH","31692":"P_pul:CLH","31693":"P_pul:CLH","31694":"P_pul:CLH","31695":"P_pul:CLH","31696":"P_pul:CLH","31697":"P_pul:CLH","31698":"P_pul:CLH","31699":"P_pul:CLH","31700":"P_pul:CLH","31701":"P_pul:CLH","31702":"P_pul:CLH","31703":"P_pul:CLH","31704":"P_pul:CLH","31705":"P_pul:CLH","31706":"P_pul:CLH","31707":"P_pul:CLH","31708":"P_pul:CLH","31709":"P_pul:CLH","31710":"P_pul:CLH","31711":"P_pul:CLH","31712":"P_pul:CLH","31713":"P_pul:CLH","31714":"P_pul:CLH","31715":"P_pul:CLH","31716":"P_pul:CLH","31717":"P_pul:CLH","31718":"P_pul:CLH","31719":"P_pul:CLH","31720":"P_pul:CLH","31721":"P_pul:CLH","31722":"P_pul:CLH","31723":"P_pul:CLH","31724":"P_pul:CLH","31725":"P_pul:CLH","31726":"P_pul:CLH","31727":"P_pul:CLH","31728":"P_pul:CLH","31729":"P_pul:CLH","31730":"P_pul:CLH","31731":"P_pul:CLH","31732":"P_pul:CLH","31733":"P_pul:CLH","31734":"P_pul:CLH","31735":"P_pul:CLH","31736":"P_pul:CLH","31737":"P_pul:CLH","31738":"P_pul:CLH","31739":"P_pul:CLH","31740":"P_pul:CLH","31741":"P_pul:CLH","31742":"P_pul:CLH","31743":"P_pul:CLH","31744":"P_pul:CLH","31745":"P_pul:CLH","31746":"P_pul:CLH","31747":"P_pul:CLH","31748":"P_pul:CLH","31749":"P_pul:CLH","31750":"P_pul:CLH","31751":"P_pul:CLH","31752":"P_pul:CLH","31753":"P_pul:CLH","31754":"P_pul:CLH","31755":"P_pul:CLH","31756":"P_pul:CLH","31757":"P_pul:CLH","31758":"P_pul:CLH","31759":"P_pul:CLH","31760":"P_pul:CLH","31761":"P_pul:CLH","31762":"P_pul:CLH","31763":"P_pul:CLH","31764":"P_pul:CLH","31765":"P_pul:CLH","31766":"P_pul:CLH","31767":"P_pul:CLH","31768":"P_pul:CLH","31769":"P_pul:CLH","31770":"P_pul:CLH","31771":"P_pul:CLH","31772":"P_pul:CLH","31773":"P_pul:CLH","31774":"P_pul:CLH","31775":"P_pul:CLH","31776":"P_pul:CLH","31777":"P_pul:CLH","31778":"P_pul:CLH","31779":"P_pul:CLH","31780":"P_pul:CLH","31781":"P_pul:CLH","31782":"P_pul:CLH","31783":"P_pul:CLH","31784":"P_pul:CLH","31785":"P_pul:CLH","31786":"P_pul:CLH","31787":"P_pul:CLH","31788":"P_pul:CLH","31789":"P_pul:CLH","31790":"P_pul:CLH","31791":"P_pul:CLH","31792":"P_pul:CLH","31793":"P_pul:CLH","31794":"P_pul:CLH","31795":"P_pul:CLH","31796":"P_pul:CLH","31797":"P_pul:CLH","31798":"P_pul:CLH","31799":"P_pul:CLH","31800":"P_pul:CLH","31801":"P_pul:CLH","31802":"P_pul:CLH","31803":"P_pul:CLH","31804":"P_pul:CLH","31805":"P_pul:CLH","31806":"P_pul:CLH","31807":"P_pul:CLH","31808":"P_pul:CLH","31809":"P_pul:CLH","31810":"P_pul:CLH","31811":"P_pul:CLH","31812":"P_pul:CLH","31813":"P_pul:CLH","31814":"P_pul:CLH","31815":"P_pul:CLH","31816":"P_pul:CLH","31817":"P_pul:CLH","31818":"P_pul:CLH","31819":"P_pul:CLH","31820":"P_pul:CLH","31821":"P_pul:CLH","31822":"P_pul:CLH","31823":"P_pul:CLH","31824":"P_pul:CLH","31825":"P_pul:CLH","31826":"P_pul:CLH","31827":"P_pul:CLH","31828":"P_pul:CLH","31829":"P_pul:CLH","31830":"P_pul:CLH","31831":"P_pul:CLH","31832":"P_pul:CLH","31833":"P_pul:CLH","31834":"P_pul:CLH","31835":"P_pul:CLH","31836":"P_pul:CLH","31837":"P_pul:CLH","31838":"P_pul:CLH","31839":"P_pul:CLH","31840":"P_pul:CLH","31841":"P_pul:CLH","31842":"P_pul:CLH","31843":"P_pul:CLH","31844":"P_pul:CLH","31845":"P_pul:CLH","31846":"P_pul:CLH","31847":"P_pul:CLH","31848":"P_pul:CLH","31849":"P_pul:CLH","31850":"P_pul:CLH","31851":"P_pul:CLH","31852":"P_pul:CLH","31853":"P_pul:CLH","31854":"P_pul:CLH","31855":"P_pul:CLH","31856":"P_pul:CLH","31857":"P_pul:CLH","31858":"P_pul:CLH","31859":"P_pul:CLH","31860":"P_pul:CLH","31861":"P_pul:CLH","31862":"P_pul:CLH","31863":"P_pul:CLH","31864":"P_pul:CLH","31865":"P_pul:CLH","31866":"P_pul:CLH","31867":"P_pul:CLH","31868":"P_pul:CLH","31869":"P_pul:CLH","31870":"P_pul:CLH","31871":"P_pul:CLH","31872":"P_pul:CLH","31873":"P_pul:CLH","31874":"P_pul:CLH","31875":"P_pul:CLH","31876":"P_pul:CLH","31877":"P_pul:CLH","31878":"P_pul:CLH","31879":"P_pul:CLH","31880":"P_pul:CLH","31881":"P_pul:CLH","31882":"P_pul:CLH","31883":"P_pul:CLH","31884":"P_pul:CLH","31885":"P_pul:CLH","31886":"P_pul:CLH","31887":"P_pul:CLH","31888":"P_pul:CLH","31889":"P_pul:CLH","31890":"P_pul:CLH","31891":"P_pul:CLH","31892":"P_pul:CLH","31893":"P_pul:CLH","31894":"P_pul:CLH","31895":"P_pul:CLH","31896":"P_pul:CLH","31897":"P_pul:CLH","31898":"P_pul:CLH","31899":"P_pul:CLH","31900":"P_pul:CLH","31901":"P_pul:CLH","31902":"P_pul:CLH","31903":"P_pul:CLH","31904":"P_pul:CLH","31905":"P_pul:CLH","31906":"P_pul:CLH","31907":"P_pul:CLH","31908":"P_pul:CLH","31909":"P_pul:CLH","31910":"P_pul:CLH","31911":"P_pul:CLH","31912":"P_pul:CLH","31913":"P_pul:CLH","31914":"P_pul:CLH","31915":"P_pul:CLH","31916":"P_pul:CLH","31917":"P_pul:CLH","31918":"P_pul:CLH","31919":"P_pul:CLH","31920":"P_pul:CLH","31921":"P_pul:CLH","31922":"P_pul:CLH","31923":"P_pul:CLH","31924":"P_pul:CLH","31925":"P_pul:CLH","31926":"P_pul:CLH","31927":"P_pul:CLH","31928":"P_pul:CLH","31929":"P_pul:CLH","31930":"P_pul:CLH","31931":"P_pul:CLH","31932":"P_pul:CLH","31933":"P_pul:CLH","31934":"P_pul:CLH","31935":"P_pul:CLH","31936":"P_pul:CLH","31937":"P_pul:CLH","31938":"P_pul:CLH","31939":"P_pul:CLH","31940":"P_pul:CLH","31941":"P_pul:CLH","31942":"P_pul:CLH","31943":"P_pul:CLH","31944":"P_pul:CLH","31945":"P_pul:CLH","31946":"P_pul:CLH","31947":"P_pul:CLH","31948":"P_pul:CLH","31949":"P_pul:CLH","31950":"P_pul:CLH","31951":"P_pul:CLH","31952":"P_pul:CLH","31953":"P_pul:CLH","31954":"P_pul:CLH","31955":"P_pul:CLH","31956":"P_pul:CLH","31957":"P_pul:CLH","31958":"P_pul:CLH","31959":"P_pul:CLH","31960":"P_pul:CLH","31961":"P_pul:CLH","31962":"P_pul:CLH","31963":"P_pul:CLH","31964":"P_pul:CLH","31965":"P_pul:CLH","31966":"P_pul:CLH","31967":"P_pul:CLH","31968":"P_pul:CLH","31969":"P_pul:CLH","31970":"P_pul:CLH","31971":"P_pul:CLH","31972":"P_pul:CLH","31973":"P_pul:CLH","31974":"P_pul:CLH","31975":"P_pul:CLH","31976":"P_pul:CLH","31977":"P_pul:CLH","31978":"P_pul:CLH","31979":"P_pul:CLH","31980":"P_pul:CLH","31981":"P_pul:CLH","31982":"P_pul:CLH","31983":"P_pul:CLH","31984":"P_pul:CLH","31985":"P_pul:CLH","31986":"P_pul:CLH","31987":"P_pul:CLH","31988":"P_pul:CLH","31989":"P_pul:CLH","31990":"P_pul:CLH","31991":"P_pul:CLH","31992":"P_pul:CLH","31993":"P_pul:CLH","31994":"P_pul:CLH","31995":"P_pul:CLH","31996":"P_pul:CLH","31997":"P_pul:CLH","31998":"P_pul:CLH","31999":"P_pul:CLH","32000":"P_LA:CLH","32001":"P_LA:CLH","32002":"P_LA:CLH","32003":"P_LA:CLH","32004":"P_LA:CLH","32005":"P_LA:CLH","32006":"P_LA:CLH","32007":"P_LA:CLH","32008":"P_LA:CLH","32009":"P_LA:CLH","32010":"P_LA:CLH","32011":"P_LA:CLH","32012":"P_LA:CLH","32013":"P_LA:CLH","32014":"P_LA:CLH","32015":"P_LA:CLH","32016":"P_LA:CLH","32017":"P_LA:CLH","32018":"P_LA:CLH","32019":"P_LA:CLH","32020":"P_LA:CLH","32021":"P_LA:CLH","32022":"P_LA:CLH","32023":"P_LA:CLH","32024":"P_LA:CLH","32025":"P_LA:CLH","32026":"P_LA:CLH","32027":"P_LA:CLH","32028":"P_LA:CLH","32029":"P_LA:CLH","32030":"P_LA:CLH","32031":"P_LA:CLH","32032":"P_LA:CLH","32033":"P_LA:CLH","32034":"P_LA:CLH","32035":"P_LA:CLH","32036":"P_LA:CLH","32037":"P_LA:CLH","32038":"P_LA:CLH","32039":"P_LA:CLH","32040":"P_LA:CLH","32041":"P_LA:CLH","32042":"P_LA:CLH","32043":"P_LA:CLH","32044":"P_LA:CLH","32045":"P_LA:CLH","32046":"P_LA:CLH","32047":"P_LA:CLH","32048":"P_LA:CLH","32049":"P_LA:CLH","32050":"P_LA:CLH","32051":"P_LA:CLH","32052":"P_LA:CLH","32053":"P_LA:CLH","32054":"P_LA:CLH","32055":"P_LA:CLH","32056":"P_LA:CLH","32057":"P_LA:CLH","32058":"P_LA:CLH","32059":"P_LA:CLH","32060":"P_LA:CLH","32061":"P_LA:CLH","32062":"P_LA:CLH","32063":"P_LA:CLH","32064":"P_LA:CLH","32065":"P_LA:CLH","32066":"P_LA:CLH","32067":"P_LA:CLH","32068":"P_LA:CLH","32069":"P_LA:CLH","32070":"P_LA:CLH","32071":"P_LA:CLH","32072":"P_LA:CLH","32073":"P_LA:CLH","32074":"P_LA:CLH","32075":"P_LA:CLH","32076":"P_LA:CLH","32077":"P_LA:CLH","32078":"P_LA:CLH","32079":"P_LA:CLH","32080":"P_LA:CLH","32081":"P_LA:CLH","32082":"P_LA:CLH","32083":"P_LA:CLH","32084":"P_LA:CLH","32085":"P_LA:CLH","32086":"P_LA:CLH","32087":"P_LA:CLH","32088":"P_LA:CLH","32089":"P_LA:CLH","32090":"P_LA:CLH","32091":"P_LA:CLH","32092":"P_LA:CLH","32093":"P_LA:CLH","32094":"P_LA:CLH","32095":"P_LA:CLH","32096":"P_LA:CLH","32097":"P_LA:CLH","32098":"P_LA:CLH","32099":"P_LA:CLH","32100":"P_LA:CLH","32101":"P_LA:CLH","32102":"P_LA:CLH","32103":"P_LA:CLH","32104":"P_LA:CLH","32105":"P_LA:CLH","32106":"P_LA:CLH","32107":"P_LA:CLH","32108":"P_LA:CLH","32109":"P_LA:CLH","32110":"P_LA:CLH","32111":"P_LA:CLH","32112":"P_LA:CLH","32113":"P_LA:CLH","32114":"P_LA:CLH","32115":"P_LA:CLH","32116":"P_LA:CLH","32117":"P_LA:CLH","32118":"P_LA:CLH","32119":"P_LA:CLH","32120":"P_LA:CLH","32121":"P_LA:CLH","32122":"P_LA:CLH","32123":"P_LA:CLH","32124":"P_LA:CLH","32125":"P_LA:CLH","32126":"P_LA:CLH","32127":"P_LA:CLH","32128":"P_LA:CLH","32129":"P_LA:CLH","32130":"P_LA:CLH","32131":"P_LA:CLH","32132":"P_LA:CLH","32133":"P_LA:CLH","32134":"P_LA:CLH","32135":"P_LA:CLH","32136":"P_LA:CLH","32137":"P_LA:CLH","32138":"P_LA:CLH","32139":"P_LA:CLH","32140":"P_LA:CLH","32141":"P_LA:CLH","32142":"P_LA:CLH","32143":"P_LA:CLH","32144":"P_LA:CLH","32145":"P_LA:CLH","32146":"P_LA:CLH","32147":"P_LA:CLH","32148":"P_LA:CLH","32149":"P_LA:CLH","32150":"P_LA:CLH","32151":"P_LA:CLH","32152":"P_LA:CLH","32153":"P_LA:CLH","32154":"P_LA:CLH","32155":"P_LA:CLH","32156":"P_LA:CLH","32157":"P_LA:CLH","32158":"P_LA:CLH","32159":"P_LA:CLH","32160":"P_LA:CLH","32161":"P_LA:CLH","32162":"P_LA:CLH","32163":"P_LA:CLH","32164":"P_LA:CLH","32165":"P_LA:CLH","32166":"P_LA:CLH","32167":"P_LA:CLH","32168":"P_LA:CLH","32169":"P_LA:CLH","32170":"P_LA:CLH","32171":"P_LA:CLH","32172":"P_LA:CLH","32173":"P_LA:CLH","32174":"P_LA:CLH","32175":"P_LA:CLH","32176":"P_LA:CLH","32177":"P_LA:CLH","32178":"P_LA:CLH","32179":"P_LA:CLH","32180":"P_LA:CLH","32181":"P_LA:CLH","32182":"P_LA:CLH","32183":"P_LA:CLH","32184":"P_LA:CLH","32185":"P_LA:CLH","32186":"P_LA:CLH","32187":"P_LA:CLH","32188":"P_LA:CLH","32189":"P_LA:CLH","32190":"P_LA:CLH","32191":"P_LA:CLH","32192":"P_LA:CLH","32193":"P_LA:CLH","32194":"P_LA:CLH","32195":"P_LA:CLH","32196":"P_LA:CLH","32197":"P_LA:CLH","32198":"P_LA:CLH","32199":"P_LA:CLH","32200":"P_LA:CLH","32201":"P_LA:CLH","32202":"P_LA:CLH","32203":"P_LA:CLH","32204":"P_LA:CLH","32205":"P_LA:CLH","32206":"P_LA:CLH","32207":"P_LA:CLH","32208":"P_LA:CLH","32209":"P_LA:CLH","32210":"P_LA:CLH","32211":"P_LA:CLH","32212":"P_LA:CLH","32213":"P_LA:CLH","32214":"P_LA:CLH","32215":"P_LA:CLH","32216":"P_LA:CLH","32217":"P_LA:CLH","32218":"P_LA:CLH","32219":"P_LA:CLH","32220":"P_LA:CLH","32221":"P_LA:CLH","32222":"P_LA:CLH","32223":"P_LA:CLH","32224":"P_LA:CLH","32225":"P_LA:CLH","32226":"P_LA:CLH","32227":"P_LA:CLH","32228":"P_LA:CLH","32229":"P_LA:CLH","32230":"P_LA:CLH","32231":"P_LA:CLH","32232":"P_LA:CLH","32233":"P_LA:CLH","32234":"P_LA:CLH","32235":"P_LA:CLH","32236":"P_LA:CLH","32237":"P_LA:CLH","32238":"P_LA:CLH","32239":"P_LA:CLH","32240":"P_LA:CLH","32241":"P_LA:CLH","32242":"P_LA:CLH","32243":"P_LA:CLH","32244":"P_LA:CLH","32245":"P_LA:CLH","32246":"P_LA:CLH","32247":"P_LA:CLH","32248":"P_LA:CLH","32249":"P_LA:CLH","32250":"P_LA:CLH","32251":"P_LA:CLH","32252":"P_LA:CLH","32253":"P_LA:CLH","32254":"P_LA:CLH","32255":"P_LA:CLH","32256":"P_LA:CLH","32257":"P_LA:CLH","32258":"P_LA:CLH","32259":"P_LA:CLH","32260":"P_LA:CLH","32261":"P_LA:CLH","32262":"P_LA:CLH","32263":"P_LA:CLH","32264":"P_LA:CLH","32265":"P_LA:CLH","32266":"P_LA:CLH","32267":"P_LA:CLH","32268":"P_LA:CLH","32269":"P_LA:CLH","32270":"P_LA:CLH","32271":"P_LA:CLH","32272":"P_LA:CLH","32273":"P_LA:CLH","32274":"P_LA:CLH","32275":"P_LA:CLH","32276":"P_LA:CLH","32277":"P_LA:CLH","32278":"P_LA:CLH","32279":"P_LA:CLH","32280":"P_LA:CLH","32281":"P_LA:CLH","32282":"P_LA:CLH","32283":"P_LA:CLH","32284":"P_LA:CLH","32285":"P_LA:CLH","32286":"P_LA:CLH","32287":"P_LA:CLH","32288":"P_LA:CLH","32289":"P_LA:CLH","32290":"P_LA:CLH","32291":"P_LA:CLH","32292":"P_LA:CLH","32293":"P_LA:CLH","32294":"P_LA:CLH","32295":"P_LA:CLH","32296":"P_LA:CLH","32297":"P_LA:CLH","32298":"P_LA:CLH","32299":"P_LA:CLH","32300":"P_LA:CLH","32301":"P_LA:CLH","32302":"P_LA:CLH","32303":"P_LA:CLH","32304":"P_LA:CLH","32305":"P_LA:CLH","32306":"P_LA:CLH","32307":"P_LA:CLH","32308":"P_LA:CLH","32309":"P_LA:CLH","32310":"P_LA:CLH","32311":"P_LA:CLH","32312":"P_LA:CLH","32313":"P_LA:CLH","32314":"P_LA:CLH","32315":"P_LA:CLH","32316":"P_LA:CLH","32317":"P_LA:CLH","32318":"P_LA:CLH","32319":"P_LA:CLH","32320":"P_LA:CLH","32321":"P_LA:CLH","32322":"P_LA:CLH","32323":"P_LA:CLH","32324":"P_LA:CLH","32325":"P_LA:CLH","32326":"P_LA:CLH","32327":"P_LA:CLH","32328":"P_LA:CLH","32329":"P_LA:CLH","32330":"P_LA:CLH","32331":"P_LA:CLH","32332":"P_LA:CLH","32333":"P_LA:CLH","32334":"P_LA:CLH","32335":"P_LA:CLH","32336":"P_LA:CLH","32337":"P_LA:CLH","32338":"P_LA:CLH","32339":"P_LA:CLH","32340":"P_LA:CLH","32341":"P_LA:CLH","32342":"P_LA:CLH","32343":"P_LA:CLH","32344":"P_LA:CLH","32345":"P_LA:CLH","32346":"P_LA:CLH","32347":"P_LA:CLH","32348":"P_LA:CLH","32349":"P_LA:CLH","32350":"P_LA:CLH","32351":"P_LA:CLH","32352":"P_LA:CLH","32353":"P_LA:CLH","32354":"P_LA:CLH","32355":"P_LA:CLH","32356":"P_LA:CLH","32357":"P_LA:CLH","32358":"P_LA:CLH","32359":"P_LA:CLH","32360":"P_LA:CLH","32361":"P_LA:CLH","32362":"P_LA:CLH","32363":"P_LA:CLH","32364":"P_LA:CLH","32365":"P_LA:CLH","32366":"P_LA:CLH","32367":"P_LA:CLH","32368":"P_LA:CLH","32369":"P_LA:CLH","32370":"P_LA:CLH","32371":"P_LA:CLH","32372":"P_LA:CLH","32373":"P_LA:CLH","32374":"P_LA:CLH","32375":"P_LA:CLH","32376":"P_LA:CLH","32377":"P_LA:CLH","32378":"P_LA:CLH","32379":"P_LA:CLH","32380":"P_LA:CLH","32381":"P_LA:CLH","32382":"P_LA:CLH","32383":"P_LA:CLH","32384":"P_LA:CLH","32385":"P_LA:CLH","32386":"P_LA:CLH","32387":"P_LA:CLH","32388":"P_LA:CLH","32389":"P_LA:CLH","32390":"P_LA:CLH","32391":"P_LA:CLH","32392":"P_LA:CLH","32393":"P_LA:CLH","32394":"P_LA:CLH","32395":"P_LA:CLH","32396":"P_LA:CLH","32397":"P_LA:CLH","32398":"P_LA:CLH","32399":"P_LA:CLH","32400":"P_LA:CLH","32401":"P_LA:CLH","32402":"P_LA:CLH","32403":"P_LA:CLH","32404":"P_LA:CLH","32405":"P_LA:CLH","32406":"P_LA:CLH","32407":"P_LA:CLH","32408":"P_LA:CLH","32409":"P_LA:CLH","32410":"P_LA:CLH","32411":"P_LA:CLH","32412":"P_LA:CLH","32413":"P_LA:CLH","32414":"P_LA:CLH","32415":"P_LA:CLH","32416":"P_LA:CLH","32417":"P_LA:CLH","32418":"P_LA:CLH","32419":"P_LA:CLH","32420":"P_LA:CLH","32421":"P_LA:CLH","32422":"P_LA:CLH","32423":"P_LA:CLH","32424":"P_LA:CLH","32425":"P_LA:CLH","32426":"P_LA:CLH","32427":"P_LA:CLH","32428":"P_LA:CLH","32429":"P_LA:CLH","32430":"P_LA:CLH","32431":"P_LA:CLH","32432":"P_LA:CLH","32433":"P_LA:CLH","32434":"P_LA:CLH","32435":"P_LA:CLH","32436":"P_LA:CLH","32437":"P_LA:CLH","32438":"P_LA:CLH","32439":"P_LA:CLH","32440":"P_LA:CLH","32441":"P_LA:CLH","32442":"P_LA:CLH","32443":"P_LA:CLH","32444":"P_LA:CLH","32445":"P_LA:CLH","32446":"P_LA:CLH","32447":"P_LA:CLH","32448":"P_LA:CLH","32449":"P_LA:CLH","32450":"P_LA:CLH","32451":"P_LA:CLH","32452":"P_LA:CLH","32453":"P_LA:CLH","32454":"P_LA:CLH","32455":"P_LA:CLH","32456":"P_LA:CLH","32457":"P_LA:CLH","32458":"P_LA:CLH","32459":"P_LA:CLH","32460":"P_LA:CLH","32461":"P_LA:CLH","32462":"P_LA:CLH","32463":"P_LA:CLH","32464":"P_LA:CLH","32465":"P_LA:CLH","32466":"P_LA:CLH","32467":"P_LA:CLH","32468":"P_LA:CLH","32469":"P_LA:CLH","32470":"P_LA:CLH","32471":"P_LA:CLH","32472":"P_LA:CLH","32473":"P_LA:CLH","32474":"P_LA:CLH","32475":"P_LA:CLH","32476":"P_LA:CLH","32477":"P_LA:CLH","32478":"P_LA:CLH","32479":"P_LA:CLH","32480":"P_LA:CLH","32481":"P_LA:CLH","32482":"P_LA:CLH","32483":"P_LA:CLH","32484":"P_LA:CLH","32485":"P_LA:CLH","32486":"P_LA:CLH","32487":"P_LA:CLH","32488":"P_LA:CLH","32489":"P_LA:CLH","32490":"P_LA:CLH","32491":"P_LA:CLH","32492":"P_LA:CLH","32493":"P_LA:CLH","32494":"P_LA:CLH","32495":"P_LA:CLH","32496":"P_LA:CLH","32497":"P_LA:CLH","32498":"P_LA:CLH","32499":"P_LA:CLH","32500":"P_LA:CLH","32501":"P_LA:CLH","32502":"P_LA:CLH","32503":"P_LA:CLH","32504":"P_LA:CLH","32505":"P_LA:CLH","32506":"P_LA:CLH","32507":"P_LA:CLH","32508":"P_LA:CLH","32509":"P_LA:CLH","32510":"P_LA:CLH","32511":"P_LA:CLH","32512":"P_LA:CLH","32513":"P_LA:CLH","32514":"P_LA:CLH","32515":"P_LA:CLH","32516":"P_LA:CLH","32517":"P_LA:CLH","32518":"P_LA:CLH","32519":"P_LA:CLH","32520":"P_LA:CLH","32521":"P_LA:CLH","32522":"P_LA:CLH","32523":"P_LA:CLH","32524":"P_LA:CLH","32525":"P_LA:CLH","32526":"P_LA:CLH","32527":"P_LA:CLH","32528":"P_LA:CLH","32529":"P_LA:CLH","32530":"P_LA:CLH","32531":"P_LA:CLH","32532":"P_LA:CLH","32533":"P_LA:CLH","32534":"P_LA:CLH","32535":"P_LA:CLH","32536":"P_LA:CLH","32537":"P_LA:CLH","32538":"P_LA:CLH","32539":"P_LA:CLH","32540":"P_LA:CLH","32541":"P_LA:CLH","32542":"P_LA:CLH","32543":"P_LA:CLH","32544":"P_LA:CLH","32545":"P_LA:CLH","32546":"P_LA:CLH","32547":"P_LA:CLH","32548":"P_LA:CLH","32549":"P_LA:CLH","32550":"P_LA:CLH","32551":"P_LA:CLH","32552":"P_LA:CLH","32553":"P_LA:CLH","32554":"P_LA:CLH","32555":"P_LA:CLH","32556":"P_LA:CLH","32557":"P_LA:CLH","32558":"P_LA:CLH","32559":"P_LA:CLH","32560":"P_LA:CLH","32561":"P_LA:CLH","32562":"P_LA:CLH","32563":"P_LA:CLH","32564":"P_LA:CLH","32565":"P_LA:CLH","32566":"P_LA:CLH","32567":"P_LA:CLH","32568":"P_LA:CLH","32569":"P_LA:CLH","32570":"P_LA:CLH","32571":"P_LA:CLH","32572":"P_LA:CLH","32573":"P_LA:CLH","32574":"P_LA:CLH","32575":"P_LA:CLH","32576":"P_LA:CLH","32577":"P_LA:CLH","32578":"P_LA:CLH","32579":"P_LA:CLH","32580":"P_LA:CLH","32581":"P_LA:CLH","32582":"P_LA:CLH","32583":"P_LA:CLH","32584":"P_LA:CLH","32585":"P_LA:CLH","32586":"P_LA:CLH","32587":"P_LA:CLH","32588":"P_LA:CLH","32589":"P_LA:CLH","32590":"P_LA:CLH","32591":"P_LA:CLH","32592":"P_LA:CLH","32593":"P_LA:CLH","32594":"P_LA:CLH","32595":"P_LA:CLH","32596":"P_LA:CLH","32597":"P_LA:CLH","32598":"P_LA:CLH","32599":"P_LA:CLH","32600":"P_LA:CLH","32601":"P_LA:CLH","32602":"P_LA:CLH","32603":"P_LA:CLH","32604":"P_LA:CLH","32605":"P_LA:CLH","32606":"P_LA:CLH","32607":"P_LA:CLH","32608":"P_LA:CLH","32609":"P_LA:CLH","32610":"P_LA:CLH","32611":"P_LA:CLH","32612":"P_LA:CLH","32613":"P_LA:CLH","32614":"P_LA:CLH","32615":"P_LA:CLH","32616":"P_LA:CLH","32617":"P_LA:CLH","32618":"P_LA:CLH","32619":"P_LA:CLH","32620":"P_LA:CLH","32621":"P_LA:CLH","32622":"P_LA:CLH","32623":"P_LA:CLH","32624":"P_LA:CLH","32625":"P_LA:CLH","32626":"P_LA:CLH","32627":"P_LA:CLH","32628":"P_LA:CLH","32629":"P_LA:CLH","32630":"P_LA:CLH","32631":"P_LA:CLH","32632":"P_LA:CLH","32633":"P_LA:CLH","32634":"P_LA:CLH","32635":"P_LA:CLH","32636":"P_LA:CLH","32637":"P_LA:CLH","32638":"P_LA:CLH","32639":"P_LA:CLH","32640":"P_LA:CLH","32641":"P_LA:CLH","32642":"P_LA:CLH","32643":"P_LA:CLH","32644":"P_LA:CLH","32645":"P_LA:CLH","32646":"P_LA:CLH","32647":"P_LA:CLH","32648":"P_LA:CLH","32649":"P_LA:CLH","32650":"P_LA:CLH","32651":"P_LA:CLH","32652":"P_LA:CLH","32653":"P_LA:CLH","32654":"P_LA:CLH","32655":"P_LA:CLH","32656":"P_LA:CLH","32657":"P_LA:CLH","32658":"P_LA:CLH","32659":"P_LA:CLH","32660":"P_LA:CLH","32661":"P_LA:CLH","32662":"P_LA:CLH","32663":"P_LA:CLH","32664":"P_LA:CLH","32665":"P_LA:CLH","32666":"P_LA:CLH","32667":"P_LA:CLH","32668":"P_LA:CLH","32669":"P_LA:CLH","32670":"P_LA:CLH","32671":"P_LA:CLH","32672":"P_LA:CLH","32673":"P_LA:CLH","32674":"P_LA:CLH","32675":"P_LA:CLH","32676":"P_LA:CLH","32677":"P_LA:CLH","32678":"P_LA:CLH","32679":"P_LA:CLH","32680":"P_LA:CLH","32681":"P_LA:CLH","32682":"P_LA:CLH","32683":"P_LA:CLH","32684":"P_LA:CLH","32685":"P_LA:CLH","32686":"P_LA:CLH","32687":"P_LA:CLH","32688":"P_LA:CLH","32689":"P_LA:CLH","32690":"P_LA:CLH","32691":"P_LA:CLH","32692":"P_LA:CLH","32693":"P_LA:CLH","32694":"P_LA:CLH","32695":"P_LA:CLH","32696":"P_LA:CLH","32697":"P_LA:CLH","32698":"P_LA:CLH","32699":"P_LA:CLH","32700":"P_LA:CLH","32701":"P_LA:CLH","32702":"P_LA:CLH","32703":"P_LA:CLH","32704":"P_LA:CLH","32705":"P_LA:CLH","32706":"P_LA:CLH","32707":"P_LA:CLH","32708":"P_LA:CLH","32709":"P_LA:CLH","32710":"P_LA:CLH","32711":"P_LA:CLH","32712":"P_LA:CLH","32713":"P_LA:CLH","32714":"P_LA:CLH","32715":"P_LA:CLH","32716":"P_LA:CLH","32717":"P_LA:CLH","32718":"P_LA:CLH","32719":"P_LA:CLH","32720":"P_LA:CLH","32721":"P_LA:CLH","32722":"P_LA:CLH","32723":"P_LA:CLH","32724":"P_LA:CLH","32725":"P_LA:CLH","32726":"P_LA:CLH","32727":"P_LA:CLH","32728":"P_LA:CLH","32729":"P_LA:CLH","32730":"P_LA:CLH","32731":"P_LA:CLH","32732":"P_LA:CLH","32733":"P_LA:CLH","32734":"P_LA:CLH","32735":"P_LA:CLH","32736":"P_LA:CLH","32737":"P_LA:CLH","32738":"P_LA:CLH","32739":"P_LA:CLH","32740":"P_LA:CLH","32741":"P_LA:CLH","32742":"P_LA:CLH","32743":"P_LA:CLH","32744":"P_LA:CLH","32745":"P_LA:CLH","32746":"P_LA:CLH","32747":"P_LA:CLH","32748":"P_LA:CLH","32749":"P_LA:CLH","32750":"P_LA:CLH","32751":"P_LA:CLH","32752":"P_LA:CLH","32753":"P_LA:CLH","32754":"P_LA:CLH","32755":"P_LA:CLH","32756":"P_LA:CLH","32757":"P_LA:CLH","32758":"P_LA:CLH","32759":"P_LA:CLH","32760":"P_LA:CLH","32761":"P_LA:CLH","32762":"P_LA:CLH","32763":"P_LA:CLH","32764":"P_LA:CLH","32765":"P_LA:CLH","32766":"P_LA:CLH","32767":"P_LA:CLH","32768":"P_LA:CLH","32769":"P_LA:CLH","32770":"P_LA:CLH","32771":"P_LA:CLH","32772":"P_LA:CLH","32773":"P_LA:CLH","32774":"P_LA:CLH","32775":"P_LA:CLH","32776":"P_LA:CLH","32777":"P_LA:CLH","32778":"P_LA:CLH","32779":"P_LA:CLH","32780":"P_LA:CLH","32781":"P_LA:CLH","32782":"P_LA:CLH","32783":"P_LA:CLH","32784":"P_LA:CLH","32785":"P_LA:CLH","32786":"P_LA:CLH","32787":"P_LA:CLH","32788":"P_LA:CLH","32789":"P_LA:CLH","32790":"P_LA:CLH","32791":"P_LA:CLH","32792":"P_LA:CLH","32793":"P_LA:CLH","32794":"P_LA:CLH","32795":"P_LA:CLH","32796":"P_LA:CLH","32797":"P_LA:CLH","32798":"P_LA:CLH","32799":"P_LA:CLH","32800":"P_LA:CLH","32801":"P_LA:CLH","32802":"P_LA:CLH","32803":"P_LA:CLH","32804":"P_LA:CLH","32805":"P_LA:CLH","32806":"P_LA:CLH","32807":"P_LA:CLH","32808":"P_LA:CLH","32809":"P_LA:CLH","32810":"P_LA:CLH","32811":"P_LA:CLH","32812":"P_LA:CLH","32813":"P_LA:CLH","32814":"P_LA:CLH","32815":"P_LA:CLH","32816":"P_LA:CLH","32817":"P_LA:CLH","32818":"P_LA:CLH","32819":"P_LA:CLH","32820":"P_LA:CLH","32821":"P_LA:CLH","32822":"P_LA:CLH","32823":"P_LA:CLH","32824":"P_LA:CLH","32825":"P_LA:CLH","32826":"P_LA:CLH","32827":"P_LA:CLH","32828":"P_LA:CLH","32829":"P_LA:CLH","32830":"P_LA:CLH","32831":"P_LA:CLH","32832":"P_LA:CLH","32833":"P_LA:CLH","32834":"P_LA:CLH","32835":"P_LA:CLH","32836":"P_LA:CLH","32837":"P_LA:CLH","32838":"P_LA:CLH","32839":"P_LA:CLH","32840":"P_LA:CLH","32841":"P_LA:CLH","32842":"P_LA:CLH","32843":"P_LA:CLH","32844":"P_LA:CLH","32845":"P_LA:CLH","32846":"P_LA:CLH","32847":"P_LA:CLH","32848":"P_LA:CLH","32849":"P_LA:CLH","32850":"P_LA:CLH","32851":"P_LA:CLH","32852":"P_LA:CLH","32853":"P_LA:CLH","32854":"P_LA:CLH","32855":"P_LA:CLH","32856":"P_LA:CLH","32857":"P_LA:CLH","32858":"P_LA:CLH","32859":"P_LA:CLH","32860":"P_LA:CLH","32861":"P_LA:CLH","32862":"P_LA:CLH","32863":"P_LA:CLH","32864":"P_LA:CLH","32865":"P_LA:CLH","32866":"P_LA:CLH","32867":"P_LA:CLH","32868":"P_LA:CLH","32869":"P_LA:CLH","32870":"P_LA:CLH","32871":"P_LA:CLH","32872":"P_LA:CLH","32873":"P_LA:CLH","32874":"P_LA:CLH","32875":"P_LA:CLH","32876":"P_LA:CLH","32877":"P_LA:CLH","32878":"P_LA:CLH","32879":"P_LA:CLH","32880":"P_LA:CLH","32881":"P_LA:CLH","32882":"P_LA:CLH","32883":"P_LA:CLH","32884":"P_LA:CLH","32885":"P_LA:CLH","32886":"P_LA:CLH","32887":"P_LA:CLH","32888":"P_LA:CLH","32889":"P_LA:CLH","32890":"P_LA:CLH","32891":"P_LA:CLH","32892":"P_LA:CLH","32893":"P_LA:CLH","32894":"P_LA:CLH","32895":"P_LA:CLH","32896":"P_LA:CLH","32897":"P_LA:CLH","32898":"P_LA:CLH","32899":"P_LA:CLH","32900":"P_LA:CLH","32901":"P_LA:CLH","32902":"P_LA:CLH","32903":"P_LA:CLH","32904":"P_LA:CLH","32905":"P_LA:CLH","32906":"P_LA:CLH","32907":"P_LA:CLH","32908":"P_LA:CLH","32909":"P_LA:CLH","32910":"P_LA:CLH","32911":"P_LA:CLH","32912":"P_LA:CLH","32913":"P_LA:CLH","32914":"P_LA:CLH","32915":"P_LA:CLH","32916":"P_LA:CLH","32917":"P_LA:CLH","32918":"P_LA:CLH","32919":"P_LA:CLH","32920":"P_LA:CLH","32921":"P_LA:CLH","32922":"P_LA:CLH","32923":"P_LA:CLH","32924":"P_LA:CLH","32925":"P_LA:CLH","32926":"P_LA:CLH","32927":"P_LA:CLH","32928":"P_LA:CLH","32929":"P_LA:CLH","32930":"P_LA:CLH","32931":"P_LA:CLH","32932":"P_LA:CLH","32933":"P_LA:CLH","32934":"P_LA:CLH","32935":"P_LA:CLH","32936":"P_LA:CLH","32937":"P_LA:CLH","32938":"P_LA:CLH","32939":"P_LA:CLH","32940":"P_LA:CLH","32941":"P_LA:CLH","32942":"P_LA:CLH","32943":"P_LA:CLH","32944":"P_LA:CLH","32945":"P_LA:CLH","32946":"P_LA:CLH","32947":"P_LA:CLH","32948":"P_LA:CLH","32949":"P_LA:CLH","32950":"P_LA:CLH","32951":"P_LA:CLH","32952":"P_LA:CLH","32953":"P_LA:CLH","32954":"P_LA:CLH","32955":"P_LA:CLH","32956":"P_LA:CLH","32957":"P_LA:CLH","32958":"P_LA:CLH","32959":"P_LA:CLH","32960":"P_LA:CLH","32961":"P_LA:CLH","32962":"P_LA:CLH","32963":"P_LA:CLH","32964":"P_LA:CLH","32965":"P_LA:CLH","32966":"P_LA:CLH","32967":"P_LA:CLH","32968":"P_LA:CLH","32969":"P_LA:CLH","32970":"P_LA:CLH","32971":"P_LA:CLH","32972":"P_LA:CLH","32973":"P_LA:CLH","32974":"P_LA:CLH","32975":"P_LA:CLH","32976":"P_LA:CLH","32977":"P_LA:CLH","32978":"P_LA:CLH","32979":"P_LA:CLH","32980":"P_LA:CLH","32981":"P_LA:CLH","32982":"P_LA:CLH","32983":"P_LA:CLH","32984":"P_LA:CLH","32985":"P_LA:CLH","32986":"P_LA:CLH","32987":"P_LA:CLH","32988":"P_LA:CLH","32989":"P_LA:CLH","32990":"P_LA:CLH","32991":"P_LA:CLH","32992":"P_LA:CLH","32993":"P_LA:CLH","32994":"P_LA:CLH","32995":"P_LA:CLH","32996":"P_LA:CLH","32997":"P_LA:CLH","32998":"P_LA:CLH","32999":"P_LA:CLH","33000":"V_LA:CLH","33001":"V_LA:CLH","33002":"V_LA:CLH","33003":"V_LA:CLH","33004":"V_LA:CLH","33005":"V_LA:CLH","33006":"V_LA:CLH","33007":"V_LA:CLH","33008":"V_LA:CLH","33009":"V_LA:CLH","33010":"V_LA:CLH","33011":"V_LA:CLH","33012":"V_LA:CLH","33013":"V_LA:CLH","33014":"V_LA:CLH","33015":"V_LA:CLH","33016":"V_LA:CLH","33017":"V_LA:CLH","33018":"V_LA:CLH","33019":"V_LA:CLH","33020":"V_LA:CLH","33021":"V_LA:CLH","33022":"V_LA:CLH","33023":"V_LA:CLH","33024":"V_LA:CLH","33025":"V_LA:CLH","33026":"V_LA:CLH","33027":"V_LA:CLH","33028":"V_LA:CLH","33029":"V_LA:CLH","33030":"V_LA:CLH","33031":"V_LA:CLH","33032":"V_LA:CLH","33033":"V_LA:CLH","33034":"V_LA:CLH","33035":"V_LA:CLH","33036":"V_LA:CLH","33037":"V_LA:CLH","33038":"V_LA:CLH","33039":"V_LA:CLH","33040":"V_LA:CLH","33041":"V_LA:CLH","33042":"V_LA:CLH","33043":"V_LA:CLH","33044":"V_LA:CLH","33045":"V_LA:CLH","33046":"V_LA:CLH","33047":"V_LA:CLH","33048":"V_LA:CLH","33049":"V_LA:CLH","33050":"V_LA:CLH","33051":"V_LA:CLH","33052":"V_LA:CLH","33053":"V_LA:CLH","33054":"V_LA:CLH","33055":"V_LA:CLH","33056":"V_LA:CLH","33057":"V_LA:CLH","33058":"V_LA:CLH","33059":"V_LA:CLH","33060":"V_LA:CLH","33061":"V_LA:CLH","33062":"V_LA:CLH","33063":"V_LA:CLH","33064":"V_LA:CLH","33065":"V_LA:CLH","33066":"V_LA:CLH","33067":"V_LA:CLH","33068":"V_LA:CLH","33069":"V_LA:CLH","33070":"V_LA:CLH","33071":"V_LA:CLH","33072":"V_LA:CLH","33073":"V_LA:CLH","33074":"V_LA:CLH","33075":"V_LA:CLH","33076":"V_LA:CLH","33077":"V_LA:CLH","33078":"V_LA:CLH","33079":"V_LA:CLH","33080":"V_LA:CLH","33081":"V_LA:CLH","33082":"V_LA:CLH","33083":"V_LA:CLH","33084":"V_LA:CLH","33085":"V_LA:CLH","33086":"V_LA:CLH","33087":"V_LA:CLH","33088":"V_LA:CLH","33089":"V_LA:CLH","33090":"V_LA:CLH","33091":"V_LA:CLH","33092":"V_LA:CLH","33093":"V_LA:CLH","33094":"V_LA:CLH","33095":"V_LA:CLH","33096":"V_LA:CLH","33097":"V_LA:CLH","33098":"V_LA:CLH","33099":"V_LA:CLH","33100":"V_LA:CLH","33101":"V_LA:CLH","33102":"V_LA:CLH","33103":"V_LA:CLH","33104":"V_LA:CLH","33105":"V_LA:CLH","33106":"V_LA:CLH","33107":"V_LA:CLH","33108":"V_LA:CLH","33109":"V_LA:CLH","33110":"V_LA:CLH","33111":"V_LA:CLH","33112":"V_LA:CLH","33113":"V_LA:CLH","33114":"V_LA:CLH","33115":"V_LA:CLH","33116":"V_LA:CLH","33117":"V_LA:CLH","33118":"V_LA:CLH","33119":"V_LA:CLH","33120":"V_LA:CLH","33121":"V_LA:CLH","33122":"V_LA:CLH","33123":"V_LA:CLH","33124":"V_LA:CLH","33125":"V_LA:CLH","33126":"V_LA:CLH","33127":"V_LA:CLH","33128":"V_LA:CLH","33129":"V_LA:CLH","33130":"V_LA:CLH","33131":"V_LA:CLH","33132":"V_LA:CLH","33133":"V_LA:CLH","33134":"V_LA:CLH","33135":"V_LA:CLH","33136":"V_LA:CLH","33137":"V_LA:CLH","33138":"V_LA:CLH","33139":"V_LA:CLH","33140":"V_LA:CLH","33141":"V_LA:CLH","33142":"V_LA:CLH","33143":"V_LA:CLH","33144":"V_LA:CLH","33145":"V_LA:CLH","33146":"V_LA:CLH","33147":"V_LA:CLH","33148":"V_LA:CLH","33149":"V_LA:CLH","33150":"V_LA:CLH","33151":"V_LA:CLH","33152":"V_LA:CLH","33153":"V_LA:CLH","33154":"V_LA:CLH","33155":"V_LA:CLH","33156":"V_LA:CLH","33157":"V_LA:CLH","33158":"V_LA:CLH","33159":"V_LA:CLH","33160":"V_LA:CLH","33161":"V_LA:CLH","33162":"V_LA:CLH","33163":"V_LA:CLH","33164":"V_LA:CLH","33165":"V_LA:CLH","33166":"V_LA:CLH","33167":"V_LA:CLH","33168":"V_LA:CLH","33169":"V_LA:CLH","33170":"V_LA:CLH","33171":"V_LA:CLH","33172":"V_LA:CLH","33173":"V_LA:CLH","33174":"V_LA:CLH","33175":"V_LA:CLH","33176":"V_LA:CLH","33177":"V_LA:CLH","33178":"V_LA:CLH","33179":"V_LA:CLH","33180":"V_LA:CLH","33181":"V_LA:CLH","33182":"V_LA:CLH","33183":"V_LA:CLH","33184":"V_LA:CLH","33185":"V_LA:CLH","33186":"V_LA:CLH","33187":"V_LA:CLH","33188":"V_LA:CLH","33189":"V_LA:CLH","33190":"V_LA:CLH","33191":"V_LA:CLH","33192":"V_LA:CLH","33193":"V_LA:CLH","33194":"V_LA:CLH","33195":"V_LA:CLH","33196":"V_LA:CLH","33197":"V_LA:CLH","33198":"V_LA:CLH","33199":"V_LA:CLH","33200":"V_LA:CLH","33201":"V_LA:CLH","33202":"V_LA:CLH","33203":"V_LA:CLH","33204":"V_LA:CLH","33205":"V_LA:CLH","33206":"V_LA:CLH","33207":"V_LA:CLH","33208":"V_LA:CLH","33209":"V_LA:CLH","33210":"V_LA:CLH","33211":"V_LA:CLH","33212":"V_LA:CLH","33213":"V_LA:CLH","33214":"V_LA:CLH","33215":"V_LA:CLH","33216":"V_LA:CLH","33217":"V_LA:CLH","33218":"V_LA:CLH","33219":"V_LA:CLH","33220":"V_LA:CLH","33221":"V_LA:CLH","33222":"V_LA:CLH","33223":"V_LA:CLH","33224":"V_LA:CLH","33225":"V_LA:CLH","33226":"V_LA:CLH","33227":"V_LA:CLH","33228":"V_LA:CLH","33229":"V_LA:CLH","33230":"V_LA:CLH","33231":"V_LA:CLH","33232":"V_LA:CLH","33233":"V_LA:CLH","33234":"V_LA:CLH","33235":"V_LA:CLH","33236":"V_LA:CLH","33237":"V_LA:CLH","33238":"V_LA:CLH","33239":"V_LA:CLH","33240":"V_LA:CLH","33241":"V_LA:CLH","33242":"V_LA:CLH","33243":"V_LA:CLH","33244":"V_LA:CLH","33245":"V_LA:CLH","33246":"V_LA:CLH","33247":"V_LA:CLH","33248":"V_LA:CLH","33249":"V_LA:CLH","33250":"V_LA:CLH","33251":"V_LA:CLH","33252":"V_LA:CLH","33253":"V_LA:CLH","33254":"V_LA:CLH","33255":"V_LA:CLH","33256":"V_LA:CLH","33257":"V_LA:CLH","33258":"V_LA:CLH","33259":"V_LA:CLH","33260":"V_LA:CLH","33261":"V_LA:CLH","33262":"V_LA:CLH","33263":"V_LA:CLH","33264":"V_LA:CLH","33265":"V_LA:CLH","33266":"V_LA:CLH","33267":"V_LA:CLH","33268":"V_LA:CLH","33269":"V_LA:CLH","33270":"V_LA:CLH","33271":"V_LA:CLH","33272":"V_LA:CLH","33273":"V_LA:CLH","33274":"V_LA:CLH","33275":"V_LA:CLH","33276":"V_LA:CLH","33277":"V_LA:CLH","33278":"V_LA:CLH","33279":"V_LA:CLH","33280":"V_LA:CLH","33281":"V_LA:CLH","33282":"V_LA:CLH","33283":"V_LA:CLH","33284":"V_LA:CLH","33285":"V_LA:CLH","33286":"V_LA:CLH","33287":"V_LA:CLH","33288":"V_LA:CLH","33289":"V_LA:CLH","33290":"V_LA:CLH","33291":"V_LA:CLH","33292":"V_LA:CLH","33293":"V_LA:CLH","33294":"V_LA:CLH","33295":"V_LA:CLH","33296":"V_LA:CLH","33297":"V_LA:CLH","33298":"V_LA:CLH","33299":"V_LA:CLH","33300":"V_LA:CLH","33301":"V_LA:CLH","33302":"V_LA:CLH","33303":"V_LA:CLH","33304":"V_LA:CLH","33305":"V_LA:CLH","33306":"V_LA:CLH","33307":"V_LA:CLH","33308":"V_LA:CLH","33309":"V_LA:CLH","33310":"V_LA:CLH","33311":"V_LA:CLH","33312":"V_LA:CLH","33313":"V_LA:CLH","33314":"V_LA:CLH","33315":"V_LA:CLH","33316":"V_LA:CLH","33317":"V_LA:CLH","33318":"V_LA:CLH","33319":"V_LA:CLH","33320":"V_LA:CLH","33321":"V_LA:CLH","33322":"V_LA:CLH","33323":"V_LA:CLH","33324":"V_LA:CLH","33325":"V_LA:CLH","33326":"V_LA:CLH","33327":"V_LA:CLH","33328":"V_LA:CLH","33329":"V_LA:CLH","33330":"V_LA:CLH","33331":"V_LA:CLH","33332":"V_LA:CLH","33333":"V_LA:CLH","33334":"V_LA:CLH","33335":"V_LA:CLH","33336":"V_LA:CLH","33337":"V_LA:CLH","33338":"V_LA:CLH","33339":"V_LA:CLH","33340":"V_LA:CLH","33341":"V_LA:CLH","33342":"V_LA:CLH","33343":"V_LA:CLH","33344":"V_LA:CLH","33345":"V_LA:CLH","33346":"V_LA:CLH","33347":"V_LA:CLH","33348":"V_LA:CLH","33349":"V_LA:CLH","33350":"V_LA:CLH","33351":"V_LA:CLH","33352":"V_LA:CLH","33353":"V_LA:CLH","33354":"V_LA:CLH","33355":"V_LA:CLH","33356":"V_LA:CLH","33357":"V_LA:CLH","33358":"V_LA:CLH","33359":"V_LA:CLH","33360":"V_LA:CLH","33361":"V_LA:CLH","33362":"V_LA:CLH","33363":"V_LA:CLH","33364":"V_LA:CLH","33365":"V_LA:CLH","33366":"V_LA:CLH","33367":"V_LA:CLH","33368":"V_LA:CLH","33369":"V_LA:CLH","33370":"V_LA:CLH","33371":"V_LA:CLH","33372":"V_LA:CLH","33373":"V_LA:CLH","33374":"V_LA:CLH","33375":"V_LA:CLH","33376":"V_LA:CLH","33377":"V_LA:CLH","33378":"V_LA:CLH","33379":"V_LA:CLH","33380":"V_LA:CLH","33381":"V_LA:CLH","33382":"V_LA:CLH","33383":"V_LA:CLH","33384":"V_LA:CLH","33385":"V_LA:CLH","33386":"V_LA:CLH","33387":"V_LA:CLH","33388":"V_LA:CLH","33389":"V_LA:CLH","33390":"V_LA:CLH","33391":"V_LA:CLH","33392":"V_LA:CLH","33393":"V_LA:CLH","33394":"V_LA:CLH","33395":"V_LA:CLH","33396":"V_LA:CLH","33397":"V_LA:CLH","33398":"V_LA:CLH","33399":"V_LA:CLH","33400":"V_LA:CLH","33401":"V_LA:CLH","33402":"V_LA:CLH","33403":"V_LA:CLH","33404":"V_LA:CLH","33405":"V_LA:CLH","33406":"V_LA:CLH","33407":"V_LA:CLH","33408":"V_LA:CLH","33409":"V_LA:CLH","33410":"V_LA:CLH","33411":"V_LA:CLH","33412":"V_LA:CLH","33413":"V_LA:CLH","33414":"V_LA:CLH","33415":"V_LA:CLH","33416":"V_LA:CLH","33417":"V_LA:CLH","33418":"V_LA:CLH","33419":"V_LA:CLH","33420":"V_LA:CLH","33421":"V_LA:CLH","33422":"V_LA:CLH","33423":"V_LA:CLH","33424":"V_LA:CLH","33425":"V_LA:CLH","33426":"V_LA:CLH","33427":"V_LA:CLH","33428":"V_LA:CLH","33429":"V_LA:CLH","33430":"V_LA:CLH","33431":"V_LA:CLH","33432":"V_LA:CLH","33433":"V_LA:CLH","33434":"V_LA:CLH","33435":"V_LA:CLH","33436":"V_LA:CLH","33437":"V_LA:CLH","33438":"V_LA:CLH","33439":"V_LA:CLH","33440":"V_LA:CLH","33441":"V_LA:CLH","33442":"V_LA:CLH","33443":"V_LA:CLH","33444":"V_LA:CLH","33445":"V_LA:CLH","33446":"V_LA:CLH","33447":"V_LA:CLH","33448":"V_LA:CLH","33449":"V_LA:CLH","33450":"V_LA:CLH","33451":"V_LA:CLH","33452":"V_LA:CLH","33453":"V_LA:CLH","33454":"V_LA:CLH","33455":"V_LA:CLH","33456":"V_LA:CLH","33457":"V_LA:CLH","33458":"V_LA:CLH","33459":"V_LA:CLH","33460":"V_LA:CLH","33461":"V_LA:CLH","33462":"V_LA:CLH","33463":"V_LA:CLH","33464":"V_LA:CLH","33465":"V_LA:CLH","33466":"V_LA:CLH","33467":"V_LA:CLH","33468":"V_LA:CLH","33469":"V_LA:CLH","33470":"V_LA:CLH","33471":"V_LA:CLH","33472":"V_LA:CLH","33473":"V_LA:CLH","33474":"V_LA:CLH","33475":"V_LA:CLH","33476":"V_LA:CLH","33477":"V_LA:CLH","33478":"V_LA:CLH","33479":"V_LA:CLH","33480":"V_LA:CLH","33481":"V_LA:CLH","33482":"V_LA:CLH","33483":"V_LA:CLH","33484":"V_LA:CLH","33485":"V_LA:CLH","33486":"V_LA:CLH","33487":"V_LA:CLH","33488":"V_LA:CLH","33489":"V_LA:CLH","33490":"V_LA:CLH","33491":"V_LA:CLH","33492":"V_LA:CLH","33493":"V_LA:CLH","33494":"V_LA:CLH","33495":"V_LA:CLH","33496":"V_LA:CLH","33497":"V_LA:CLH","33498":"V_LA:CLH","33499":"V_LA:CLH","33500":"V_LA:CLH","33501":"V_LA:CLH","33502":"V_LA:CLH","33503":"V_LA:CLH","33504":"V_LA:CLH","33505":"V_LA:CLH","33506":"V_LA:CLH","33507":"V_LA:CLH","33508":"V_LA:CLH","33509":"V_LA:CLH","33510":"V_LA:CLH","33511":"V_LA:CLH","33512":"V_LA:CLH","33513":"V_LA:CLH","33514":"V_LA:CLH","33515":"V_LA:CLH","33516":"V_LA:CLH","33517":"V_LA:CLH","33518":"V_LA:CLH","33519":"V_LA:CLH","33520":"V_LA:CLH","33521":"V_LA:CLH","33522":"V_LA:CLH","33523":"V_LA:CLH","33524":"V_LA:CLH","33525":"V_LA:CLH","33526":"V_LA:CLH","33527":"V_LA:CLH","33528":"V_LA:CLH","33529":"V_LA:CLH","33530":"V_LA:CLH","33531":"V_LA:CLH","33532":"V_LA:CLH","33533":"V_LA:CLH","33534":"V_LA:CLH","33535":"V_LA:CLH","33536":"V_LA:CLH","33537":"V_LA:CLH","33538":"V_LA:CLH","33539":"V_LA:CLH","33540":"V_LA:CLH","33541":"V_LA:CLH","33542":"V_LA:CLH","33543":"V_LA:CLH","33544":"V_LA:CLH","33545":"V_LA:CLH","33546":"V_LA:CLH","33547":"V_LA:CLH","33548":"V_LA:CLH","33549":"V_LA:CLH","33550":"V_LA:CLH","33551":"V_LA:CLH","33552":"V_LA:CLH","33553":"V_LA:CLH","33554":"V_LA:CLH","33555":"V_LA:CLH","33556":"V_LA:CLH","33557":"V_LA:CLH","33558":"V_LA:CLH","33559":"V_LA:CLH","33560":"V_LA:CLH","33561":"V_LA:CLH","33562":"V_LA:CLH","33563":"V_LA:CLH","33564":"V_LA:CLH","33565":"V_LA:CLH","33566":"V_LA:CLH","33567":"V_LA:CLH","33568":"V_LA:CLH","33569":"V_LA:CLH","33570":"V_LA:CLH","33571":"V_LA:CLH","33572":"V_LA:CLH","33573":"V_LA:CLH","33574":"V_LA:CLH","33575":"V_LA:CLH","33576":"V_LA:CLH","33577":"V_LA:CLH","33578":"V_LA:CLH","33579":"V_LA:CLH","33580":"V_LA:CLH","33581":"V_LA:CLH","33582":"V_LA:CLH","33583":"V_LA:CLH","33584":"V_LA:CLH","33585":"V_LA:CLH","33586":"V_LA:CLH","33587":"V_LA:CLH","33588":"V_LA:CLH","33589":"V_LA:CLH","33590":"V_LA:CLH","33591":"V_LA:CLH","33592":"V_LA:CLH","33593":"V_LA:CLH","33594":"V_LA:CLH","33595":"V_LA:CLH","33596":"V_LA:CLH","33597":"V_LA:CLH","33598":"V_LA:CLH","33599":"V_LA:CLH","33600":"V_LA:CLH","33601":"V_LA:CLH","33602":"V_LA:CLH","33603":"V_LA:CLH","33604":"V_LA:CLH","33605":"V_LA:CLH","33606":"V_LA:CLH","33607":"V_LA:CLH","33608":"V_LA:CLH","33609":"V_LA:CLH","33610":"V_LA:CLH","33611":"V_LA:CLH","33612":"V_LA:CLH","33613":"V_LA:CLH","33614":"V_LA:CLH","33615":"V_LA:CLH","33616":"V_LA:CLH","33617":"V_LA:CLH","33618":"V_LA:CLH","33619":"V_LA:CLH","33620":"V_LA:CLH","33621":"V_LA:CLH","33622":"V_LA:CLH","33623":"V_LA:CLH","33624":"V_LA:CLH","33625":"V_LA:CLH","33626":"V_LA:CLH","33627":"V_LA:CLH","33628":"V_LA:CLH","33629":"V_LA:CLH","33630":"V_LA:CLH","33631":"V_LA:CLH","33632":"V_LA:CLH","33633":"V_LA:CLH","33634":"V_LA:CLH","33635":"V_LA:CLH","33636":"V_LA:CLH","33637":"V_LA:CLH","33638":"V_LA:CLH","33639":"V_LA:CLH","33640":"V_LA:CLH","33641":"V_LA:CLH","33642":"V_LA:CLH","33643":"V_LA:CLH","33644":"V_LA:CLH","33645":"V_LA:CLH","33646":"V_LA:CLH","33647":"V_LA:CLH","33648":"V_LA:CLH","33649":"V_LA:CLH","33650":"V_LA:CLH","33651":"V_LA:CLH","33652":"V_LA:CLH","33653":"V_LA:CLH","33654":"V_LA:CLH","33655":"V_LA:CLH","33656":"V_LA:CLH","33657":"V_LA:CLH","33658":"V_LA:CLH","33659":"V_LA:CLH","33660":"V_LA:CLH","33661":"V_LA:CLH","33662":"V_LA:CLH","33663":"V_LA:CLH","33664":"V_LA:CLH","33665":"V_LA:CLH","33666":"V_LA:CLH","33667":"V_LA:CLH","33668":"V_LA:CLH","33669":"V_LA:CLH","33670":"V_LA:CLH","33671":"V_LA:CLH","33672":"V_LA:CLH","33673":"V_LA:CLH","33674":"V_LA:CLH","33675":"V_LA:CLH","33676":"V_LA:CLH","33677":"V_LA:CLH","33678":"V_LA:CLH","33679":"V_LA:CLH","33680":"V_LA:CLH","33681":"V_LA:CLH","33682":"V_LA:CLH","33683":"V_LA:CLH","33684":"V_LA:CLH","33685":"V_LA:CLH","33686":"V_LA:CLH","33687":"V_LA:CLH","33688":"V_LA:CLH","33689":"V_LA:CLH","33690":"V_LA:CLH","33691":"V_LA:CLH","33692":"V_LA:CLH","33693":"V_LA:CLH","33694":"V_LA:CLH","33695":"V_LA:CLH","33696":"V_LA:CLH","33697":"V_LA:CLH","33698":"V_LA:CLH","33699":"V_LA:CLH","33700":"V_LA:CLH","33701":"V_LA:CLH","33702":"V_LA:CLH","33703":"V_LA:CLH","33704":"V_LA:CLH","33705":"V_LA:CLH","33706":"V_LA:CLH","33707":"V_LA:CLH","33708":"V_LA:CLH","33709":"V_LA:CLH","33710":"V_LA:CLH","33711":"V_LA:CLH","33712":"V_LA:CLH","33713":"V_LA:CLH","33714":"V_LA:CLH","33715":"V_LA:CLH","33716":"V_LA:CLH","33717":"V_LA:CLH","33718":"V_LA:CLH","33719":"V_LA:CLH","33720":"V_LA:CLH","33721":"V_LA:CLH","33722":"V_LA:CLH","33723":"V_LA:CLH","33724":"V_LA:CLH","33725":"V_LA:CLH","33726":"V_LA:CLH","33727":"V_LA:CLH","33728":"V_LA:CLH","33729":"V_LA:CLH","33730":"V_LA:CLH","33731":"V_LA:CLH","33732":"V_LA:CLH","33733":"V_LA:CLH","33734":"V_LA:CLH","33735":"V_LA:CLH","33736":"V_LA:CLH","33737":"V_LA:CLH","33738":"V_LA:CLH","33739":"V_LA:CLH","33740":"V_LA:CLH","33741":"V_LA:CLH","33742":"V_LA:CLH","33743":"V_LA:CLH","33744":"V_LA:CLH","33745":"V_LA:CLH","33746":"V_LA:CLH","33747":"V_LA:CLH","33748":"V_LA:CLH","33749":"V_LA:CLH","33750":"V_LA:CLH","33751":"V_LA:CLH","33752":"V_LA:CLH","33753":"V_LA:CLH","33754":"V_LA:CLH","33755":"V_LA:CLH","33756":"V_LA:CLH","33757":"V_LA:CLH","33758":"V_LA:CLH","33759":"V_LA:CLH","33760":"V_LA:CLH","33761":"V_LA:CLH","33762":"V_LA:CLH","33763":"V_LA:CLH","33764":"V_LA:CLH","33765":"V_LA:CLH","33766":"V_LA:CLH","33767":"V_LA:CLH","33768":"V_LA:CLH","33769":"V_LA:CLH","33770":"V_LA:CLH","33771":"V_LA:CLH","33772":"V_LA:CLH","33773":"V_LA:CLH","33774":"V_LA:CLH","33775":"V_LA:CLH","33776":"V_LA:CLH","33777":"V_LA:CLH","33778":"V_LA:CLH","33779":"V_LA:CLH","33780":"V_LA:CLH","33781":"V_LA:CLH","33782":"V_LA:CLH","33783":"V_LA:CLH","33784":"V_LA:CLH","33785":"V_LA:CLH","33786":"V_LA:CLH","33787":"V_LA:CLH","33788":"V_LA:CLH","33789":"V_LA:CLH","33790":"V_LA:CLH","33791":"V_LA:CLH","33792":"V_LA:CLH","33793":"V_LA:CLH","33794":"V_LA:CLH","33795":"V_LA:CLH","33796":"V_LA:CLH","33797":"V_LA:CLH","33798":"V_LA:CLH","33799":"V_LA:CLH","33800":"V_LA:CLH","33801":"V_LA:CLH","33802":"V_LA:CLH","33803":"V_LA:CLH","33804":"V_LA:CLH","33805":"V_LA:CLH","33806":"V_LA:CLH","33807":"V_LA:CLH","33808":"V_LA:CLH","33809":"V_LA:CLH","33810":"V_LA:CLH","33811":"V_LA:CLH","33812":"V_LA:CLH","33813":"V_LA:CLH","33814":"V_LA:CLH","33815":"V_LA:CLH","33816":"V_LA:CLH","33817":"V_LA:CLH","33818":"V_LA:CLH","33819":"V_LA:CLH","33820":"V_LA:CLH","33821":"V_LA:CLH","33822":"V_LA:CLH","33823":"V_LA:CLH","33824":"V_LA:CLH","33825":"V_LA:CLH","33826":"V_LA:CLH","33827":"V_LA:CLH","33828":"V_LA:CLH","33829":"V_LA:CLH","33830":"V_LA:CLH","33831":"V_LA:CLH","33832":"V_LA:CLH","33833":"V_LA:CLH","33834":"V_LA:CLH","33835":"V_LA:CLH","33836":"V_LA:CLH","33837":"V_LA:CLH","33838":"V_LA:CLH","33839":"V_LA:CLH","33840":"V_LA:CLH","33841":"V_LA:CLH","33842":"V_LA:CLH","33843":"V_LA:CLH","33844":"V_LA:CLH","33845":"V_LA:CLH","33846":"V_LA:CLH","33847":"V_LA:CLH","33848":"V_LA:CLH","33849":"V_LA:CLH","33850":"V_LA:CLH","33851":"V_LA:CLH","33852":"V_LA:CLH","33853":"V_LA:CLH","33854":"V_LA:CLH","33855":"V_LA:CLH","33856":"V_LA:CLH","33857":"V_LA:CLH","33858":"V_LA:CLH","33859":"V_LA:CLH","33860":"V_LA:CLH","33861":"V_LA:CLH","33862":"V_LA:CLH","33863":"V_LA:CLH","33864":"V_LA:CLH","33865":"V_LA:CLH","33866":"V_LA:CLH","33867":"V_LA:CLH","33868":"V_LA:CLH","33869":"V_LA:CLH","33870":"V_LA:CLH","33871":"V_LA:CLH","33872":"V_LA:CLH","33873":"V_LA:CLH","33874":"V_LA:CLH","33875":"V_LA:CLH","33876":"V_LA:CLH","33877":"V_LA:CLH","33878":"V_LA:CLH","33879":"V_LA:CLH","33880":"V_LA:CLH","33881":"V_LA:CLH","33882":"V_LA:CLH","33883":"V_LA:CLH","33884":"V_LA:CLH","33885":"V_LA:CLH","33886":"V_LA:CLH","33887":"V_LA:CLH","33888":"V_LA:CLH","33889":"V_LA:CLH","33890":"V_LA:CLH","33891":"V_LA:CLH","33892":"V_LA:CLH","33893":"V_LA:CLH","33894":"V_LA:CLH","33895":"V_LA:CLH","33896":"V_LA:CLH","33897":"V_LA:CLH","33898":"V_LA:CLH","33899":"V_LA:CLH","33900":"V_LA:CLH","33901":"V_LA:CLH","33902":"V_LA:CLH","33903":"V_LA:CLH","33904":"V_LA:CLH","33905":"V_LA:CLH","33906":"V_LA:CLH","33907":"V_LA:CLH","33908":"V_LA:CLH","33909":"V_LA:CLH","33910":"V_LA:CLH","33911":"V_LA:CLH","33912":"V_LA:CLH","33913":"V_LA:CLH","33914":"V_LA:CLH","33915":"V_LA:CLH","33916":"V_LA:CLH","33917":"V_LA:CLH","33918":"V_LA:CLH","33919":"V_LA:CLH","33920":"V_LA:CLH","33921":"V_LA:CLH","33922":"V_LA:CLH","33923":"V_LA:CLH","33924":"V_LA:CLH","33925":"V_LA:CLH","33926":"V_LA:CLH","33927":"V_LA:CLH","33928":"V_LA:CLH","33929":"V_LA:CLH","33930":"V_LA:CLH","33931":"V_LA:CLH","33932":"V_LA:CLH","33933":"V_LA:CLH","33934":"V_LA:CLH","33935":"V_LA:CLH","33936":"V_LA:CLH","33937":"V_LA:CLH","33938":"V_LA:CLH","33939":"V_LA:CLH","33940":"V_LA:CLH","33941":"V_LA:CLH","33942":"V_LA:CLH","33943":"V_LA:CLH","33944":"V_LA:CLH","33945":"V_LA:CLH","33946":"V_LA:CLH","33947":"V_LA:CLH","33948":"V_LA:CLH","33949":"V_LA:CLH","33950":"V_LA:CLH","33951":"V_LA:CLH","33952":"V_LA:CLH","33953":"V_LA:CLH","33954":"V_LA:CLH","33955":"V_LA:CLH","33956":"V_LA:CLH","33957":"V_LA:CLH","33958":"V_LA:CLH","33959":"V_LA:CLH","33960":"V_LA:CLH","33961":"V_LA:CLH","33962":"V_LA:CLH","33963":"V_LA:CLH","33964":"V_LA:CLH","33965":"V_LA:CLH","33966":"V_LA:CLH","33967":"V_LA:CLH","33968":"V_LA:CLH","33969":"V_LA:CLH","33970":"V_LA:CLH","33971":"V_LA:CLH","33972":"V_LA:CLH","33973":"V_LA:CLH","33974":"V_LA:CLH","33975":"V_LA:CLH","33976":"V_LA:CLH","33977":"V_LA:CLH","33978":"V_LA:CLH","33979":"V_LA:CLH","33980":"V_LA:CLH","33981":"V_LA:CLH","33982":"V_LA:CLH","33983":"V_LA:CLH","33984":"V_LA:CLH","33985":"V_LA:CLH","33986":"V_LA:CLH","33987":"V_LA:CLH","33988":"V_LA:CLH","33989":"V_LA:CLH","33990":"V_LA:CLH","33991":"V_LA:CLH","33992":"V_LA:CLH","33993":"V_LA:CLH","33994":"V_LA:CLH","33995":"V_LA:CLH","33996":"V_LA:CLH","33997":"V_LA:CLH","33998":"V_LA:CLH","33999":"V_LA:CLH","34000":"Q_LA:CLH","34001":"Q_LA:CLH","34002":"Q_LA:CLH","34003":"Q_LA:CLH","34004":"Q_LA:CLH","34005":"Q_LA:CLH","34006":"Q_LA:CLH","34007":"Q_LA:CLH","34008":"Q_LA:CLH","34009":"Q_LA:CLH","34010":"Q_LA:CLH","34011":"Q_LA:CLH","34012":"Q_LA:CLH","34013":"Q_LA:CLH","34014":"Q_LA:CLH","34015":"Q_LA:CLH","34016":"Q_LA:CLH","34017":"Q_LA:CLH","34018":"Q_LA:CLH","34019":"Q_LA:CLH","34020":"Q_LA:CLH","34021":"Q_LA:CLH","34022":"Q_LA:CLH","34023":"Q_LA:CLH","34024":"Q_LA:CLH","34025":"Q_LA:CLH","34026":"Q_LA:CLH","34027":"Q_LA:CLH","34028":"Q_LA:CLH","34029":"Q_LA:CLH","34030":"Q_LA:CLH","34031":"Q_LA:CLH","34032":"Q_LA:CLH","34033":"Q_LA:CLH","34034":"Q_LA:CLH","34035":"Q_LA:CLH","34036":"Q_LA:CLH","34037":"Q_LA:CLH","34038":"Q_LA:CLH","34039":"Q_LA:CLH","34040":"Q_LA:CLH","34041":"Q_LA:CLH","34042":"Q_LA:CLH","34043":"Q_LA:CLH","34044":"Q_LA:CLH","34045":"Q_LA:CLH","34046":"Q_LA:CLH","34047":"Q_LA:CLH","34048":"Q_LA:CLH","34049":"Q_LA:CLH","34050":"Q_LA:CLH","34051":"Q_LA:CLH","34052":"Q_LA:CLH","34053":"Q_LA:CLH","34054":"Q_LA:CLH","34055":"Q_LA:CLH","34056":"Q_LA:CLH","34057":"Q_LA:CLH","34058":"Q_LA:CLH","34059":"Q_LA:CLH","34060":"Q_LA:CLH","34061":"Q_LA:CLH","34062":"Q_LA:CLH","34063":"Q_LA:CLH","34064":"Q_LA:CLH","34065":"Q_LA:CLH","34066":"Q_LA:CLH","34067":"Q_LA:CLH","34068":"Q_LA:CLH","34069":"Q_LA:CLH","34070":"Q_LA:CLH","34071":"Q_LA:CLH","34072":"Q_LA:CLH","34073":"Q_LA:CLH","34074":"Q_LA:CLH","34075":"Q_LA:CLH","34076":"Q_LA:CLH","34077":"Q_LA:CLH","34078":"Q_LA:CLH","34079":"Q_LA:CLH","34080":"Q_LA:CLH","34081":"Q_LA:CLH","34082":"Q_LA:CLH","34083":"Q_LA:CLH","34084":"Q_LA:CLH","34085":"Q_LA:CLH","34086":"Q_LA:CLH","34087":"Q_LA:CLH","34088":"Q_LA:CLH","34089":"Q_LA:CLH","34090":"Q_LA:CLH","34091":"Q_LA:CLH","34092":"Q_LA:CLH","34093":"Q_LA:CLH","34094":"Q_LA:CLH","34095":"Q_LA:CLH","34096":"Q_LA:CLH","34097":"Q_LA:CLH","34098":"Q_LA:CLH","34099":"Q_LA:CLH","34100":"Q_LA:CLH","34101":"Q_LA:CLH","34102":"Q_LA:CLH","34103":"Q_LA:CLH","34104":"Q_LA:CLH","34105":"Q_LA:CLH","34106":"Q_LA:CLH","34107":"Q_LA:CLH","34108":"Q_LA:CLH","34109":"Q_LA:CLH","34110":"Q_LA:CLH","34111":"Q_LA:CLH","34112":"Q_LA:CLH","34113":"Q_LA:CLH","34114":"Q_LA:CLH","34115":"Q_LA:CLH","34116":"Q_LA:CLH","34117":"Q_LA:CLH","34118":"Q_LA:CLH","34119":"Q_LA:CLH","34120":"Q_LA:CLH","34121":"Q_LA:CLH","34122":"Q_LA:CLH","34123":"Q_LA:CLH","34124":"Q_LA:CLH","34125":"Q_LA:CLH","34126":"Q_LA:CLH","34127":"Q_LA:CLH","34128":"Q_LA:CLH","34129":"Q_LA:CLH","34130":"Q_LA:CLH","34131":"Q_LA:CLH","34132":"Q_LA:CLH","34133":"Q_LA:CLH","34134":"Q_LA:CLH","34135":"Q_LA:CLH","34136":"Q_LA:CLH","34137":"Q_LA:CLH","34138":"Q_LA:CLH","34139":"Q_LA:CLH","34140":"Q_LA:CLH","34141":"Q_LA:CLH","34142":"Q_LA:CLH","34143":"Q_LA:CLH","34144":"Q_LA:CLH","34145":"Q_LA:CLH","34146":"Q_LA:CLH","34147":"Q_LA:CLH","34148":"Q_LA:CLH","34149":"Q_LA:CLH","34150":"Q_LA:CLH","34151":"Q_LA:CLH","34152":"Q_LA:CLH","34153":"Q_LA:CLH","34154":"Q_LA:CLH","34155":"Q_LA:CLH","34156":"Q_LA:CLH","34157":"Q_LA:CLH","34158":"Q_LA:CLH","34159":"Q_LA:CLH","34160":"Q_LA:CLH","34161":"Q_LA:CLH","34162":"Q_LA:CLH","34163":"Q_LA:CLH","34164":"Q_LA:CLH","34165":"Q_LA:CLH","34166":"Q_LA:CLH","34167":"Q_LA:CLH","34168":"Q_LA:CLH","34169":"Q_LA:CLH","34170":"Q_LA:CLH","34171":"Q_LA:CLH","34172":"Q_LA:CLH","34173":"Q_LA:CLH","34174":"Q_LA:CLH","34175":"Q_LA:CLH","34176":"Q_LA:CLH","34177":"Q_LA:CLH","34178":"Q_LA:CLH","34179":"Q_LA:CLH","34180":"Q_LA:CLH","34181":"Q_LA:CLH","34182":"Q_LA:CLH","34183":"Q_LA:CLH","34184":"Q_LA:CLH","34185":"Q_LA:CLH","34186":"Q_LA:CLH","34187":"Q_LA:CLH","34188":"Q_LA:CLH","34189":"Q_LA:CLH","34190":"Q_LA:CLH","34191":"Q_LA:CLH","34192":"Q_LA:CLH","34193":"Q_LA:CLH","34194":"Q_LA:CLH","34195":"Q_LA:CLH","34196":"Q_LA:CLH","34197":"Q_LA:CLH","34198":"Q_LA:CLH","34199":"Q_LA:CLH","34200":"Q_LA:CLH","34201":"Q_LA:CLH","34202":"Q_LA:CLH","34203":"Q_LA:CLH","34204":"Q_LA:CLH","34205":"Q_LA:CLH","34206":"Q_LA:CLH","34207":"Q_LA:CLH","34208":"Q_LA:CLH","34209":"Q_LA:CLH","34210":"Q_LA:CLH","34211":"Q_LA:CLH","34212":"Q_LA:CLH","34213":"Q_LA:CLH","34214":"Q_LA:CLH","34215":"Q_LA:CLH","34216":"Q_LA:CLH","34217":"Q_LA:CLH","34218":"Q_LA:CLH","34219":"Q_LA:CLH","34220":"Q_LA:CLH","34221":"Q_LA:CLH","34222":"Q_LA:CLH","34223":"Q_LA:CLH","34224":"Q_LA:CLH","34225":"Q_LA:CLH","34226":"Q_LA:CLH","34227":"Q_LA:CLH","34228":"Q_LA:CLH","34229":"Q_LA:CLH","34230":"Q_LA:CLH","34231":"Q_LA:CLH","34232":"Q_LA:CLH","34233":"Q_LA:CLH","34234":"Q_LA:CLH","34235":"Q_LA:CLH","34236":"Q_LA:CLH","34237":"Q_LA:CLH","34238":"Q_LA:CLH","34239":"Q_LA:CLH","34240":"Q_LA:CLH","34241":"Q_LA:CLH","34242":"Q_LA:CLH","34243":"Q_LA:CLH","34244":"Q_LA:CLH","34245":"Q_LA:CLH","34246":"Q_LA:CLH","34247":"Q_LA:CLH","34248":"Q_LA:CLH","34249":"Q_LA:CLH","34250":"Q_LA:CLH","34251":"Q_LA:CLH","34252":"Q_LA:CLH","34253":"Q_LA:CLH","34254":"Q_LA:CLH","34255":"Q_LA:CLH","34256":"Q_LA:CLH","34257":"Q_LA:CLH","34258":"Q_LA:CLH","34259":"Q_LA:CLH","34260":"Q_LA:CLH","34261":"Q_LA:CLH","34262":"Q_LA:CLH","34263":"Q_LA:CLH","34264":"Q_LA:CLH","34265":"Q_LA:CLH","34266":"Q_LA:CLH","34267":"Q_LA:CLH","34268":"Q_LA:CLH","34269":"Q_LA:CLH","34270":"Q_LA:CLH","34271":"Q_LA:CLH","34272":"Q_LA:CLH","34273":"Q_LA:CLH","34274":"Q_LA:CLH","34275":"Q_LA:CLH","34276":"Q_LA:CLH","34277":"Q_LA:CLH","34278":"Q_LA:CLH","34279":"Q_LA:CLH","34280":"Q_LA:CLH","34281":"Q_LA:CLH","34282":"Q_LA:CLH","34283":"Q_LA:CLH","34284":"Q_LA:CLH","34285":"Q_LA:CLH","34286":"Q_LA:CLH","34287":"Q_LA:CLH","34288":"Q_LA:CLH","34289":"Q_LA:CLH","34290":"Q_LA:CLH","34291":"Q_LA:CLH","34292":"Q_LA:CLH","34293":"Q_LA:CLH","34294":"Q_LA:CLH","34295":"Q_LA:CLH","34296":"Q_LA:CLH","34297":"Q_LA:CLH","34298":"Q_LA:CLH","34299":"Q_LA:CLH","34300":"Q_LA:CLH","34301":"Q_LA:CLH","34302":"Q_LA:CLH","34303":"Q_LA:CLH","34304":"Q_LA:CLH","34305":"Q_LA:CLH","34306":"Q_LA:CLH","34307":"Q_LA:CLH","34308":"Q_LA:CLH","34309":"Q_LA:CLH","34310":"Q_LA:CLH","34311":"Q_LA:CLH","34312":"Q_LA:CLH","34313":"Q_LA:CLH","34314":"Q_LA:CLH","34315":"Q_LA:CLH","34316":"Q_LA:CLH","34317":"Q_LA:CLH","34318":"Q_LA:CLH","34319":"Q_LA:CLH","34320":"Q_LA:CLH","34321":"Q_LA:CLH","34322":"Q_LA:CLH","34323":"Q_LA:CLH","34324":"Q_LA:CLH","34325":"Q_LA:CLH","34326":"Q_LA:CLH","34327":"Q_LA:CLH","34328":"Q_LA:CLH","34329":"Q_LA:CLH","34330":"Q_LA:CLH","34331":"Q_LA:CLH","34332":"Q_LA:CLH","34333":"Q_LA:CLH","34334":"Q_LA:CLH","34335":"Q_LA:CLH","34336":"Q_LA:CLH","34337":"Q_LA:CLH","34338":"Q_LA:CLH","34339":"Q_LA:CLH","34340":"Q_LA:CLH","34341":"Q_LA:CLH","34342":"Q_LA:CLH","34343":"Q_LA:CLH","34344":"Q_LA:CLH","34345":"Q_LA:CLH","34346":"Q_LA:CLH","34347":"Q_LA:CLH","34348":"Q_LA:CLH","34349":"Q_LA:CLH","34350":"Q_LA:CLH","34351":"Q_LA:CLH","34352":"Q_LA:CLH","34353":"Q_LA:CLH","34354":"Q_LA:CLH","34355":"Q_LA:CLH","34356":"Q_LA:CLH","34357":"Q_LA:CLH","34358":"Q_LA:CLH","34359":"Q_LA:CLH","34360":"Q_LA:CLH","34361":"Q_LA:CLH","34362":"Q_LA:CLH","34363":"Q_LA:CLH","34364":"Q_LA:CLH","34365":"Q_LA:CLH","34366":"Q_LA:CLH","34367":"Q_LA:CLH","34368":"Q_LA:CLH","34369":"Q_LA:CLH","34370":"Q_LA:CLH","34371":"Q_LA:CLH","34372":"Q_LA:CLH","34373":"Q_LA:CLH","34374":"Q_LA:CLH","34375":"Q_LA:CLH","34376":"Q_LA:CLH","34377":"Q_LA:CLH","34378":"Q_LA:CLH","34379":"Q_LA:CLH","34380":"Q_LA:CLH","34381":"Q_LA:CLH","34382":"Q_LA:CLH","34383":"Q_LA:CLH","34384":"Q_LA:CLH","34385":"Q_LA:CLH","34386":"Q_LA:CLH","34387":"Q_LA:CLH","34388":"Q_LA:CLH","34389":"Q_LA:CLH","34390":"Q_LA:CLH","34391":"Q_LA:CLH","34392":"Q_LA:CLH","34393":"Q_LA:CLH","34394":"Q_LA:CLH","34395":"Q_LA:CLH","34396":"Q_LA:CLH","34397":"Q_LA:CLH","34398":"Q_LA:CLH","34399":"Q_LA:CLH","34400":"Q_LA:CLH","34401":"Q_LA:CLH","34402":"Q_LA:CLH","34403":"Q_LA:CLH","34404":"Q_LA:CLH","34405":"Q_LA:CLH","34406":"Q_LA:CLH","34407":"Q_LA:CLH","34408":"Q_LA:CLH","34409":"Q_LA:CLH","34410":"Q_LA:CLH","34411":"Q_LA:CLH","34412":"Q_LA:CLH","34413":"Q_LA:CLH","34414":"Q_LA:CLH","34415":"Q_LA:CLH","34416":"Q_LA:CLH","34417":"Q_LA:CLH","34418":"Q_LA:CLH","34419":"Q_LA:CLH","34420":"Q_LA:CLH","34421":"Q_LA:CLH","34422":"Q_LA:CLH","34423":"Q_LA:CLH","34424":"Q_LA:CLH","34425":"Q_LA:CLH","34426":"Q_LA:CLH","34427":"Q_LA:CLH","34428":"Q_LA:CLH","34429":"Q_LA:CLH","34430":"Q_LA:CLH","34431":"Q_LA:CLH","34432":"Q_LA:CLH","34433":"Q_LA:CLH","34434":"Q_LA:CLH","34435":"Q_LA:CLH","34436":"Q_LA:CLH","34437":"Q_LA:CLH","34438":"Q_LA:CLH","34439":"Q_LA:CLH","34440":"Q_LA:CLH","34441":"Q_LA:CLH","34442":"Q_LA:CLH","34443":"Q_LA:CLH","34444":"Q_LA:CLH","34445":"Q_LA:CLH","34446":"Q_LA:CLH","34447":"Q_LA:CLH","34448":"Q_LA:CLH","34449":"Q_LA:CLH","34450":"Q_LA:CLH","34451":"Q_LA:CLH","34452":"Q_LA:CLH","34453":"Q_LA:CLH","34454":"Q_LA:CLH","34455":"Q_LA:CLH","34456":"Q_LA:CLH","34457":"Q_LA:CLH","34458":"Q_LA:CLH","34459":"Q_LA:CLH","34460":"Q_LA:CLH","34461":"Q_LA:CLH","34462":"Q_LA:CLH","34463":"Q_LA:CLH","34464":"Q_LA:CLH","34465":"Q_LA:CLH","34466":"Q_LA:CLH","34467":"Q_LA:CLH","34468":"Q_LA:CLH","34469":"Q_LA:CLH","34470":"Q_LA:CLH","34471":"Q_LA:CLH","34472":"Q_LA:CLH","34473":"Q_LA:CLH","34474":"Q_LA:CLH","34475":"Q_LA:CLH","34476":"Q_LA:CLH","34477":"Q_LA:CLH","34478":"Q_LA:CLH","34479":"Q_LA:CLH","34480":"Q_LA:CLH","34481":"Q_LA:CLH","34482":"Q_LA:CLH","34483":"Q_LA:CLH","34484":"Q_LA:CLH","34485":"Q_LA:CLH","34486":"Q_LA:CLH","34487":"Q_LA:CLH","34488":"Q_LA:CLH","34489":"Q_LA:CLH","34490":"Q_LA:CLH","34491":"Q_LA:CLH","34492":"Q_LA:CLH","34493":"Q_LA:CLH","34494":"Q_LA:CLH","34495":"Q_LA:CLH","34496":"Q_LA:CLH","34497":"Q_LA:CLH","34498":"Q_LA:CLH","34499":"Q_LA:CLH","34500":"Q_LA:CLH","34501":"Q_LA:CLH","34502":"Q_LA:CLH","34503":"Q_LA:CLH","34504":"Q_LA:CLH","34505":"Q_LA:CLH","34506":"Q_LA:CLH","34507":"Q_LA:CLH","34508":"Q_LA:CLH","34509":"Q_LA:CLH","34510":"Q_LA:CLH","34511":"Q_LA:CLH","34512":"Q_LA:CLH","34513":"Q_LA:CLH","34514":"Q_LA:CLH","34515":"Q_LA:CLH","34516":"Q_LA:CLH","34517":"Q_LA:CLH","34518":"Q_LA:CLH","34519":"Q_LA:CLH","34520":"Q_LA:CLH","34521":"Q_LA:CLH","34522":"Q_LA:CLH","34523":"Q_LA:CLH","34524":"Q_LA:CLH","34525":"Q_LA:CLH","34526":"Q_LA:CLH","34527":"Q_LA:CLH","34528":"Q_LA:CLH","34529":"Q_LA:CLH","34530":"Q_LA:CLH","34531":"Q_LA:CLH","34532":"Q_LA:CLH","34533":"Q_LA:CLH","34534":"Q_LA:CLH","34535":"Q_LA:CLH","34536":"Q_LA:CLH","34537":"Q_LA:CLH","34538":"Q_LA:CLH","34539":"Q_LA:CLH","34540":"Q_LA:CLH","34541":"Q_LA:CLH","34542":"Q_LA:CLH","34543":"Q_LA:CLH","34544":"Q_LA:CLH","34545":"Q_LA:CLH","34546":"Q_LA:CLH","34547":"Q_LA:CLH","34548":"Q_LA:CLH","34549":"Q_LA:CLH","34550":"Q_LA:CLH","34551":"Q_LA:CLH","34552":"Q_LA:CLH","34553":"Q_LA:CLH","34554":"Q_LA:CLH","34555":"Q_LA:CLH","34556":"Q_LA:CLH","34557":"Q_LA:CLH","34558":"Q_LA:CLH","34559":"Q_LA:CLH","34560":"Q_LA:CLH","34561":"Q_LA:CLH","34562":"Q_LA:CLH","34563":"Q_LA:CLH","34564":"Q_LA:CLH","34565":"Q_LA:CLH","34566":"Q_LA:CLH","34567":"Q_LA:CLH","34568":"Q_LA:CLH","34569":"Q_LA:CLH","34570":"Q_LA:CLH","34571":"Q_LA:CLH","34572":"Q_LA:CLH","34573":"Q_LA:CLH","34574":"Q_LA:CLH","34575":"Q_LA:CLH","34576":"Q_LA:CLH","34577":"Q_LA:CLH","34578":"Q_LA:CLH","34579":"Q_LA:CLH","34580":"Q_LA:CLH","34581":"Q_LA:CLH","34582":"Q_LA:CLH","34583":"Q_LA:CLH","34584":"Q_LA:CLH","34585":"Q_LA:CLH","34586":"Q_LA:CLH","34587":"Q_LA:CLH","34588":"Q_LA:CLH","34589":"Q_LA:CLH","34590":"Q_LA:CLH","34591":"Q_LA:CLH","34592":"Q_LA:CLH","34593":"Q_LA:CLH","34594":"Q_LA:CLH","34595":"Q_LA:CLH","34596":"Q_LA:CLH","34597":"Q_LA:CLH","34598":"Q_LA:CLH","34599":"Q_LA:CLH","34600":"Q_LA:CLH","34601":"Q_LA:CLH","34602":"Q_LA:CLH","34603":"Q_LA:CLH","34604":"Q_LA:CLH","34605":"Q_LA:CLH","34606":"Q_LA:CLH","34607":"Q_LA:CLH","34608":"Q_LA:CLH","34609":"Q_LA:CLH","34610":"Q_LA:CLH","34611":"Q_LA:CLH","34612":"Q_LA:CLH","34613":"Q_LA:CLH","34614":"Q_LA:CLH","34615":"Q_LA:CLH","34616":"Q_LA:CLH","34617":"Q_LA:CLH","34618":"Q_LA:CLH","34619":"Q_LA:CLH","34620":"Q_LA:CLH","34621":"Q_LA:CLH","34622":"Q_LA:CLH","34623":"Q_LA:CLH","34624":"Q_LA:CLH","34625":"Q_LA:CLH","34626":"Q_LA:CLH","34627":"Q_LA:CLH","34628":"Q_LA:CLH","34629":"Q_LA:CLH","34630":"Q_LA:CLH","34631":"Q_LA:CLH","34632":"Q_LA:CLH","34633":"Q_LA:CLH","34634":"Q_LA:CLH","34635":"Q_LA:CLH","34636":"Q_LA:CLH","34637":"Q_LA:CLH","34638":"Q_LA:CLH","34639":"Q_LA:CLH","34640":"Q_LA:CLH","34641":"Q_LA:CLH","34642":"Q_LA:CLH","34643":"Q_LA:CLH","34644":"Q_LA:CLH","34645":"Q_LA:CLH","34646":"Q_LA:CLH","34647":"Q_LA:CLH","34648":"Q_LA:CLH","34649":"Q_LA:CLH","34650":"Q_LA:CLH","34651":"Q_LA:CLH","34652":"Q_LA:CLH","34653":"Q_LA:CLH","34654":"Q_LA:CLH","34655":"Q_LA:CLH","34656":"Q_LA:CLH","34657":"Q_LA:CLH","34658":"Q_LA:CLH","34659":"Q_LA:CLH","34660":"Q_LA:CLH","34661":"Q_LA:CLH","34662":"Q_LA:CLH","34663":"Q_LA:CLH","34664":"Q_LA:CLH","34665":"Q_LA:CLH","34666":"Q_LA:CLH","34667":"Q_LA:CLH","34668":"Q_LA:CLH","34669":"Q_LA:CLH","34670":"Q_LA:CLH","34671":"Q_LA:CLH","34672":"Q_LA:CLH","34673":"Q_LA:CLH","34674":"Q_LA:CLH","34675":"Q_LA:CLH","34676":"Q_LA:CLH","34677":"Q_LA:CLH","34678":"Q_LA:CLH","34679":"Q_LA:CLH","34680":"Q_LA:CLH","34681":"Q_LA:CLH","34682":"Q_LA:CLH","34683":"Q_LA:CLH","34684":"Q_LA:CLH","34685":"Q_LA:CLH","34686":"Q_LA:CLH","34687":"Q_LA:CLH","34688":"Q_LA:CLH","34689":"Q_LA:CLH","34690":"Q_LA:CLH","34691":"Q_LA:CLH","34692":"Q_LA:CLH","34693":"Q_LA:CLH","34694":"Q_LA:CLH","34695":"Q_LA:CLH","34696":"Q_LA:CLH","34697":"Q_LA:CLH","34698":"Q_LA:CLH","34699":"Q_LA:CLH","34700":"Q_LA:CLH","34701":"Q_LA:CLH","34702":"Q_LA:CLH","34703":"Q_LA:CLH","34704":"Q_LA:CLH","34705":"Q_LA:CLH","34706":"Q_LA:CLH","34707":"Q_LA:CLH","34708":"Q_LA:CLH","34709":"Q_LA:CLH","34710":"Q_LA:CLH","34711":"Q_LA:CLH","34712":"Q_LA:CLH","34713":"Q_LA:CLH","34714":"Q_LA:CLH","34715":"Q_LA:CLH","34716":"Q_LA:CLH","34717":"Q_LA:CLH","34718":"Q_LA:CLH","34719":"Q_LA:CLH","34720":"Q_LA:CLH","34721":"Q_LA:CLH","34722":"Q_LA:CLH","34723":"Q_LA:CLH","34724":"Q_LA:CLH","34725":"Q_LA:CLH","34726":"Q_LA:CLH","34727":"Q_LA:CLH","34728":"Q_LA:CLH","34729":"Q_LA:CLH","34730":"Q_LA:CLH","34731":"Q_LA:CLH","34732":"Q_LA:CLH","34733":"Q_LA:CLH","34734":"Q_LA:CLH","34735":"Q_LA:CLH","34736":"Q_LA:CLH","34737":"Q_LA:CLH","34738":"Q_LA:CLH","34739":"Q_LA:CLH","34740":"Q_LA:CLH","34741":"Q_LA:CLH","34742":"Q_LA:CLH","34743":"Q_LA:CLH","34744":"Q_LA:CLH","34745":"Q_LA:CLH","34746":"Q_LA:CLH","34747":"Q_LA:CLH","34748":"Q_LA:CLH","34749":"Q_LA:CLH","34750":"Q_LA:CLH","34751":"Q_LA:CLH","34752":"Q_LA:CLH","34753":"Q_LA:CLH","34754":"Q_LA:CLH","34755":"Q_LA:CLH","34756":"Q_LA:CLH","34757":"Q_LA:CLH","34758":"Q_LA:CLH","34759":"Q_LA:CLH","34760":"Q_LA:CLH","34761":"Q_LA:CLH","34762":"Q_LA:CLH","34763":"Q_LA:CLH","34764":"Q_LA:CLH","34765":"Q_LA:CLH","34766":"Q_LA:CLH","34767":"Q_LA:CLH","34768":"Q_LA:CLH","34769":"Q_LA:CLH","34770":"Q_LA:CLH","34771":"Q_LA:CLH","34772":"Q_LA:CLH","34773":"Q_LA:CLH","34774":"Q_LA:CLH","34775":"Q_LA:CLH","34776":"Q_LA:CLH","34777":"Q_LA:CLH","34778":"Q_LA:CLH","34779":"Q_LA:CLH","34780":"Q_LA:CLH","34781":"Q_LA:CLH","34782":"Q_LA:CLH","34783":"Q_LA:CLH","34784":"Q_LA:CLH","34785":"Q_LA:CLH","34786":"Q_LA:CLH","34787":"Q_LA:CLH","34788":"Q_LA:CLH","34789":"Q_LA:CLH","34790":"Q_LA:CLH","34791":"Q_LA:CLH","34792":"Q_LA:CLH","34793":"Q_LA:CLH","34794":"Q_LA:CLH","34795":"Q_LA:CLH","34796":"Q_LA:CLH","34797":"Q_LA:CLH","34798":"Q_LA:CLH","34799":"Q_LA:CLH","34800":"Q_LA:CLH","34801":"Q_LA:CLH","34802":"Q_LA:CLH","34803":"Q_LA:CLH","34804":"Q_LA:CLH","34805":"Q_LA:CLH","34806":"Q_LA:CLH","34807":"Q_LA:CLH","34808":"Q_LA:CLH","34809":"Q_LA:CLH","34810":"Q_LA:CLH","34811":"Q_LA:CLH","34812":"Q_LA:CLH","34813":"Q_LA:CLH","34814":"Q_LA:CLH","34815":"Q_LA:CLH","34816":"Q_LA:CLH","34817":"Q_LA:CLH","34818":"Q_LA:CLH","34819":"Q_LA:CLH","34820":"Q_LA:CLH","34821":"Q_LA:CLH","34822":"Q_LA:CLH","34823":"Q_LA:CLH","34824":"Q_LA:CLH","34825":"Q_LA:CLH","34826":"Q_LA:CLH","34827":"Q_LA:CLH","34828":"Q_LA:CLH","34829":"Q_LA:CLH","34830":"Q_LA:CLH","34831":"Q_LA:CLH","34832":"Q_LA:CLH","34833":"Q_LA:CLH","34834":"Q_LA:CLH","34835":"Q_LA:CLH","34836":"Q_LA:CLH","34837":"Q_LA:CLH","34838":"Q_LA:CLH","34839":"Q_LA:CLH","34840":"Q_LA:CLH","34841":"Q_LA:CLH","34842":"Q_LA:CLH","34843":"Q_LA:CLH","34844":"Q_LA:CLH","34845":"Q_LA:CLH","34846":"Q_LA:CLH","34847":"Q_LA:CLH","34848":"Q_LA:CLH","34849":"Q_LA:CLH","34850":"Q_LA:CLH","34851":"Q_LA:CLH","34852":"Q_LA:CLH","34853":"Q_LA:CLH","34854":"Q_LA:CLH","34855":"Q_LA:CLH","34856":"Q_LA:CLH","34857":"Q_LA:CLH","34858":"Q_LA:CLH","34859":"Q_LA:CLH","34860":"Q_LA:CLH","34861":"Q_LA:CLH","34862":"Q_LA:CLH","34863":"Q_LA:CLH","34864":"Q_LA:CLH","34865":"Q_LA:CLH","34866":"Q_LA:CLH","34867":"Q_LA:CLH","34868":"Q_LA:CLH","34869":"Q_LA:CLH","34870":"Q_LA:CLH","34871":"Q_LA:CLH","34872":"Q_LA:CLH","34873":"Q_LA:CLH","34874":"Q_LA:CLH","34875":"Q_LA:CLH","34876":"Q_LA:CLH","34877":"Q_LA:CLH","34878":"Q_LA:CLH","34879":"Q_LA:CLH","34880":"Q_LA:CLH","34881":"Q_LA:CLH","34882":"Q_LA:CLH","34883":"Q_LA:CLH","34884":"Q_LA:CLH","34885":"Q_LA:CLH","34886":"Q_LA:CLH","34887":"Q_LA:CLH","34888":"Q_LA:CLH","34889":"Q_LA:CLH","34890":"Q_LA:CLH","34891":"Q_LA:CLH","34892":"Q_LA:CLH","34893":"Q_LA:CLH","34894":"Q_LA:CLH","34895":"Q_LA:CLH","34896":"Q_LA:CLH","34897":"Q_LA:CLH","34898":"Q_LA:CLH","34899":"Q_LA:CLH","34900":"Q_LA:CLH","34901":"Q_LA:CLH","34902":"Q_LA:CLH","34903":"Q_LA:CLH","34904":"Q_LA:CLH","34905":"Q_LA:CLH","34906":"Q_LA:CLH","34907":"Q_LA:CLH","34908":"Q_LA:CLH","34909":"Q_LA:CLH","34910":"Q_LA:CLH","34911":"Q_LA:CLH","34912":"Q_LA:CLH","34913":"Q_LA:CLH","34914":"Q_LA:CLH","34915":"Q_LA:CLH","34916":"Q_LA:CLH","34917":"Q_LA:CLH","34918":"Q_LA:CLH","34919":"Q_LA:CLH","34920":"Q_LA:CLH","34921":"Q_LA:CLH","34922":"Q_LA:CLH","34923":"Q_LA:CLH","34924":"Q_LA:CLH","34925":"Q_LA:CLH","34926":"Q_LA:CLH","34927":"Q_LA:CLH","34928":"Q_LA:CLH","34929":"Q_LA:CLH","34930":"Q_LA:CLH","34931":"Q_LA:CLH","34932":"Q_LA:CLH","34933":"Q_LA:CLH","34934":"Q_LA:CLH","34935":"Q_LA:CLH","34936":"Q_LA:CLH","34937":"Q_LA:CLH","34938":"Q_LA:CLH","34939":"Q_LA:CLH","34940":"Q_LA:CLH","34941":"Q_LA:CLH","34942":"Q_LA:CLH","34943":"Q_LA:CLH","34944":"Q_LA:CLH","34945":"Q_LA:CLH","34946":"Q_LA:CLH","34947":"Q_LA:CLH","34948":"Q_LA:CLH","34949":"Q_LA:CLH","34950":"Q_LA:CLH","34951":"Q_LA:CLH","34952":"Q_LA:CLH","34953":"Q_LA:CLH","34954":"Q_LA:CLH","34955":"Q_LA:CLH","34956":"Q_LA:CLH","34957":"Q_LA:CLH","34958":"Q_LA:CLH","34959":"Q_LA:CLH","34960":"Q_LA:CLH","34961":"Q_LA:CLH","34962":"Q_LA:CLH","34963":"Q_LA:CLH","34964":"Q_LA:CLH","34965":"Q_LA:CLH","34966":"Q_LA:CLH","34967":"Q_LA:CLH","34968":"Q_LA:CLH","34969":"Q_LA:CLH","34970":"Q_LA:CLH","34971":"Q_LA:CLH","34972":"Q_LA:CLH","34973":"Q_LA:CLH","34974":"Q_LA:CLH","34975":"Q_LA:CLH","34976":"Q_LA:CLH","34977":"Q_LA:CLH","34978":"Q_LA:CLH","34979":"Q_LA:CLH","34980":"Q_LA:CLH","34981":"Q_LA:CLH","34982":"Q_LA:CLH","34983":"Q_LA:CLH","34984":"Q_LA:CLH","34985":"Q_LA:CLH","34986":"Q_LA:CLH","34987":"Q_LA:CLH","34988":"Q_LA:CLH","34989":"Q_LA:CLH","34990":"Q_LA:CLH","34991":"Q_LA:CLH","34992":"Q_LA:CLH","34993":"Q_LA:CLH","34994":"Q_LA:CLH","34995":"Q_LA:CLH","34996":"Q_LA:CLH","34997":"Q_LA:CLH","34998":"Q_LA:CLH","34999":"Q_LA:CLH","35000":"P_LV:CLH","35001":"P_LV:CLH","35002":"P_LV:CLH","35003":"P_LV:CLH","35004":"P_LV:CLH","35005":"P_LV:CLH","35006":"P_LV:CLH","35007":"P_LV:CLH","35008":"P_LV:CLH","35009":"P_LV:CLH","35010":"P_LV:CLH","35011":"P_LV:CLH","35012":"P_LV:CLH","35013":"P_LV:CLH","35014":"P_LV:CLH","35015":"P_LV:CLH","35016":"P_LV:CLH","35017":"P_LV:CLH","35018":"P_LV:CLH","35019":"P_LV:CLH","35020":"P_LV:CLH","35021":"P_LV:CLH","35022":"P_LV:CLH","35023":"P_LV:CLH","35024":"P_LV:CLH","35025":"P_LV:CLH","35026":"P_LV:CLH","35027":"P_LV:CLH","35028":"P_LV:CLH","35029":"P_LV:CLH","35030":"P_LV:CLH","35031":"P_LV:CLH","35032":"P_LV:CLH","35033":"P_LV:CLH","35034":"P_LV:CLH","35035":"P_LV:CLH","35036":"P_LV:CLH","35037":"P_LV:CLH","35038":"P_LV:CLH","35039":"P_LV:CLH","35040":"P_LV:CLH","35041":"P_LV:CLH","35042":"P_LV:CLH","35043":"P_LV:CLH","35044":"P_LV:CLH","35045":"P_LV:CLH","35046":"P_LV:CLH","35047":"P_LV:CLH","35048":"P_LV:CLH","35049":"P_LV:CLH","35050":"P_LV:CLH","35051":"P_LV:CLH","35052":"P_LV:CLH","35053":"P_LV:CLH","35054":"P_LV:CLH","35055":"P_LV:CLH","35056":"P_LV:CLH","35057":"P_LV:CLH","35058":"P_LV:CLH","35059":"P_LV:CLH","35060":"P_LV:CLH","35061":"P_LV:CLH","35062":"P_LV:CLH","35063":"P_LV:CLH","35064":"P_LV:CLH","35065":"P_LV:CLH","35066":"P_LV:CLH","35067":"P_LV:CLH","35068":"P_LV:CLH","35069":"P_LV:CLH","35070":"P_LV:CLH","35071":"P_LV:CLH","35072":"P_LV:CLH","35073":"P_LV:CLH","35074":"P_LV:CLH","35075":"P_LV:CLH","35076":"P_LV:CLH","35077":"P_LV:CLH","35078":"P_LV:CLH","35079":"P_LV:CLH","35080":"P_LV:CLH","35081":"P_LV:CLH","35082":"P_LV:CLH","35083":"P_LV:CLH","35084":"P_LV:CLH","35085":"P_LV:CLH","35086":"P_LV:CLH","35087":"P_LV:CLH","35088":"P_LV:CLH","35089":"P_LV:CLH","35090":"P_LV:CLH","35091":"P_LV:CLH","35092":"P_LV:CLH","35093":"P_LV:CLH","35094":"P_LV:CLH","35095":"P_LV:CLH","35096":"P_LV:CLH","35097":"P_LV:CLH","35098":"P_LV:CLH","35099":"P_LV:CLH","35100":"P_LV:CLH","35101":"P_LV:CLH","35102":"P_LV:CLH","35103":"P_LV:CLH","35104":"P_LV:CLH","35105":"P_LV:CLH","35106":"P_LV:CLH","35107":"P_LV:CLH","35108":"P_LV:CLH","35109":"P_LV:CLH","35110":"P_LV:CLH","35111":"P_LV:CLH","35112":"P_LV:CLH","35113":"P_LV:CLH","35114":"P_LV:CLH","35115":"P_LV:CLH","35116":"P_LV:CLH","35117":"P_LV:CLH","35118":"P_LV:CLH","35119":"P_LV:CLH","35120":"P_LV:CLH","35121":"P_LV:CLH","35122":"P_LV:CLH","35123":"P_LV:CLH","35124":"P_LV:CLH","35125":"P_LV:CLH","35126":"P_LV:CLH","35127":"P_LV:CLH","35128":"P_LV:CLH","35129":"P_LV:CLH","35130":"P_LV:CLH","35131":"P_LV:CLH","35132":"P_LV:CLH","35133":"P_LV:CLH","35134":"P_LV:CLH","35135":"P_LV:CLH","35136":"P_LV:CLH","35137":"P_LV:CLH","35138":"P_LV:CLH","35139":"P_LV:CLH","35140":"P_LV:CLH","35141":"P_LV:CLH","35142":"P_LV:CLH","35143":"P_LV:CLH","35144":"P_LV:CLH","35145":"P_LV:CLH","35146":"P_LV:CLH","35147":"P_LV:CLH","35148":"P_LV:CLH","35149":"P_LV:CLH","35150":"P_LV:CLH","35151":"P_LV:CLH","35152":"P_LV:CLH","35153":"P_LV:CLH","35154":"P_LV:CLH","35155":"P_LV:CLH","35156":"P_LV:CLH","35157":"P_LV:CLH","35158":"P_LV:CLH","35159":"P_LV:CLH","35160":"P_LV:CLH","35161":"P_LV:CLH","35162":"P_LV:CLH","35163":"P_LV:CLH","35164":"P_LV:CLH","35165":"P_LV:CLH","35166":"P_LV:CLH","35167":"P_LV:CLH","35168":"P_LV:CLH","35169":"P_LV:CLH","35170":"P_LV:CLH","35171":"P_LV:CLH","35172":"P_LV:CLH","35173":"P_LV:CLH","35174":"P_LV:CLH","35175":"P_LV:CLH","35176":"P_LV:CLH","35177":"P_LV:CLH","35178":"P_LV:CLH","35179":"P_LV:CLH","35180":"P_LV:CLH","35181":"P_LV:CLH","35182":"P_LV:CLH","35183":"P_LV:CLH","35184":"P_LV:CLH","35185":"P_LV:CLH","35186":"P_LV:CLH","35187":"P_LV:CLH","35188":"P_LV:CLH","35189":"P_LV:CLH","35190":"P_LV:CLH","35191":"P_LV:CLH","35192":"P_LV:CLH","35193":"P_LV:CLH","35194":"P_LV:CLH","35195":"P_LV:CLH","35196":"P_LV:CLH","35197":"P_LV:CLH","35198":"P_LV:CLH","35199":"P_LV:CLH","35200":"P_LV:CLH","35201":"P_LV:CLH","35202":"P_LV:CLH","35203":"P_LV:CLH","35204":"P_LV:CLH","35205":"P_LV:CLH","35206":"P_LV:CLH","35207":"P_LV:CLH","35208":"P_LV:CLH","35209":"P_LV:CLH","35210":"P_LV:CLH","35211":"P_LV:CLH","35212":"P_LV:CLH","35213":"P_LV:CLH","35214":"P_LV:CLH","35215":"P_LV:CLH","35216":"P_LV:CLH","35217":"P_LV:CLH","35218":"P_LV:CLH","35219":"P_LV:CLH","35220":"P_LV:CLH","35221":"P_LV:CLH","35222":"P_LV:CLH","35223":"P_LV:CLH","35224":"P_LV:CLH","35225":"P_LV:CLH","35226":"P_LV:CLH","35227":"P_LV:CLH","35228":"P_LV:CLH","35229":"P_LV:CLH","35230":"P_LV:CLH","35231":"P_LV:CLH","35232":"P_LV:CLH","35233":"P_LV:CLH","35234":"P_LV:CLH","35235":"P_LV:CLH","35236":"P_LV:CLH","35237":"P_LV:CLH","35238":"P_LV:CLH","35239":"P_LV:CLH","35240":"P_LV:CLH","35241":"P_LV:CLH","35242":"P_LV:CLH","35243":"P_LV:CLH","35244":"P_LV:CLH","35245":"P_LV:CLH","35246":"P_LV:CLH","35247":"P_LV:CLH","35248":"P_LV:CLH","35249":"P_LV:CLH","35250":"P_LV:CLH","35251":"P_LV:CLH","35252":"P_LV:CLH","35253":"P_LV:CLH","35254":"P_LV:CLH","35255":"P_LV:CLH","35256":"P_LV:CLH","35257":"P_LV:CLH","35258":"P_LV:CLH","35259":"P_LV:CLH","35260":"P_LV:CLH","35261":"P_LV:CLH","35262":"P_LV:CLH","35263":"P_LV:CLH","35264":"P_LV:CLH","35265":"P_LV:CLH","35266":"P_LV:CLH","35267":"P_LV:CLH","35268":"P_LV:CLH","35269":"P_LV:CLH","35270":"P_LV:CLH","35271":"P_LV:CLH","35272":"P_LV:CLH","35273":"P_LV:CLH","35274":"P_LV:CLH","35275":"P_LV:CLH","35276":"P_LV:CLH","35277":"P_LV:CLH","35278":"P_LV:CLH","35279":"P_LV:CLH","35280":"P_LV:CLH","35281":"P_LV:CLH","35282":"P_LV:CLH","35283":"P_LV:CLH","35284":"P_LV:CLH","35285":"P_LV:CLH","35286":"P_LV:CLH","35287":"P_LV:CLH","35288":"P_LV:CLH","35289":"P_LV:CLH","35290":"P_LV:CLH","35291":"P_LV:CLH","35292":"P_LV:CLH","35293":"P_LV:CLH","35294":"P_LV:CLH","35295":"P_LV:CLH","35296":"P_LV:CLH","35297":"P_LV:CLH","35298":"P_LV:CLH","35299":"P_LV:CLH","35300":"P_LV:CLH","35301":"P_LV:CLH","35302":"P_LV:CLH","35303":"P_LV:CLH","35304":"P_LV:CLH","35305":"P_LV:CLH","35306":"P_LV:CLH","35307":"P_LV:CLH","35308":"P_LV:CLH","35309":"P_LV:CLH","35310":"P_LV:CLH","35311":"P_LV:CLH","35312":"P_LV:CLH","35313":"P_LV:CLH","35314":"P_LV:CLH","35315":"P_LV:CLH","35316":"P_LV:CLH","35317":"P_LV:CLH","35318":"P_LV:CLH","35319":"P_LV:CLH","35320":"P_LV:CLH","35321":"P_LV:CLH","35322":"P_LV:CLH","35323":"P_LV:CLH","35324":"P_LV:CLH","35325":"P_LV:CLH","35326":"P_LV:CLH","35327":"P_LV:CLH","35328":"P_LV:CLH","35329":"P_LV:CLH","35330":"P_LV:CLH","35331":"P_LV:CLH","35332":"P_LV:CLH","35333":"P_LV:CLH","35334":"P_LV:CLH","35335":"P_LV:CLH","35336":"P_LV:CLH","35337":"P_LV:CLH","35338":"P_LV:CLH","35339":"P_LV:CLH","35340":"P_LV:CLH","35341":"P_LV:CLH","35342":"P_LV:CLH","35343":"P_LV:CLH","35344":"P_LV:CLH","35345":"P_LV:CLH","35346":"P_LV:CLH","35347":"P_LV:CLH","35348":"P_LV:CLH","35349":"P_LV:CLH","35350":"P_LV:CLH","35351":"P_LV:CLH","35352":"P_LV:CLH","35353":"P_LV:CLH","35354":"P_LV:CLH","35355":"P_LV:CLH","35356":"P_LV:CLH","35357":"P_LV:CLH","35358":"P_LV:CLH","35359":"P_LV:CLH","35360":"P_LV:CLH","35361":"P_LV:CLH","35362":"P_LV:CLH","35363":"P_LV:CLH","35364":"P_LV:CLH","35365":"P_LV:CLH","35366":"P_LV:CLH","35367":"P_LV:CLH","35368":"P_LV:CLH","35369":"P_LV:CLH","35370":"P_LV:CLH","35371":"P_LV:CLH","35372":"P_LV:CLH","35373":"P_LV:CLH","35374":"P_LV:CLH","35375":"P_LV:CLH","35376":"P_LV:CLH","35377":"P_LV:CLH","35378":"P_LV:CLH","35379":"P_LV:CLH","35380":"P_LV:CLH","35381":"P_LV:CLH","35382":"P_LV:CLH","35383":"P_LV:CLH","35384":"P_LV:CLH","35385":"P_LV:CLH","35386":"P_LV:CLH","35387":"P_LV:CLH","35388":"P_LV:CLH","35389":"P_LV:CLH","35390":"P_LV:CLH","35391":"P_LV:CLH","35392":"P_LV:CLH","35393":"P_LV:CLH","35394":"P_LV:CLH","35395":"P_LV:CLH","35396":"P_LV:CLH","35397":"P_LV:CLH","35398":"P_LV:CLH","35399":"P_LV:CLH","35400":"P_LV:CLH","35401":"P_LV:CLH","35402":"P_LV:CLH","35403":"P_LV:CLH","35404":"P_LV:CLH","35405":"P_LV:CLH","35406":"P_LV:CLH","35407":"P_LV:CLH","35408":"P_LV:CLH","35409":"P_LV:CLH","35410":"P_LV:CLH","35411":"P_LV:CLH","35412":"P_LV:CLH","35413":"P_LV:CLH","35414":"P_LV:CLH","35415":"P_LV:CLH","35416":"P_LV:CLH","35417":"P_LV:CLH","35418":"P_LV:CLH","35419":"P_LV:CLH","35420":"P_LV:CLH","35421":"P_LV:CLH","35422":"P_LV:CLH","35423":"P_LV:CLH","35424":"P_LV:CLH","35425":"P_LV:CLH","35426":"P_LV:CLH","35427":"P_LV:CLH","35428":"P_LV:CLH","35429":"P_LV:CLH","35430":"P_LV:CLH","35431":"P_LV:CLH","35432":"P_LV:CLH","35433":"P_LV:CLH","35434":"P_LV:CLH","35435":"P_LV:CLH","35436":"P_LV:CLH","35437":"P_LV:CLH","35438":"P_LV:CLH","35439":"P_LV:CLH","35440":"P_LV:CLH","35441":"P_LV:CLH","35442":"P_LV:CLH","35443":"P_LV:CLH","35444":"P_LV:CLH","35445":"P_LV:CLH","35446":"P_LV:CLH","35447":"P_LV:CLH","35448":"P_LV:CLH","35449":"P_LV:CLH","35450":"P_LV:CLH","35451":"P_LV:CLH","35452":"P_LV:CLH","35453":"P_LV:CLH","35454":"P_LV:CLH","35455":"P_LV:CLH","35456":"P_LV:CLH","35457":"P_LV:CLH","35458":"P_LV:CLH","35459":"P_LV:CLH","35460":"P_LV:CLH","35461":"P_LV:CLH","35462":"P_LV:CLH","35463":"P_LV:CLH","35464":"P_LV:CLH","35465":"P_LV:CLH","35466":"P_LV:CLH","35467":"P_LV:CLH","35468":"P_LV:CLH","35469":"P_LV:CLH","35470":"P_LV:CLH","35471":"P_LV:CLH","35472":"P_LV:CLH","35473":"P_LV:CLH","35474":"P_LV:CLH","35475":"P_LV:CLH","35476":"P_LV:CLH","35477":"P_LV:CLH","35478":"P_LV:CLH","35479":"P_LV:CLH","35480":"P_LV:CLH","35481":"P_LV:CLH","35482":"P_LV:CLH","35483":"P_LV:CLH","35484":"P_LV:CLH","35485":"P_LV:CLH","35486":"P_LV:CLH","35487":"P_LV:CLH","35488":"P_LV:CLH","35489":"P_LV:CLH","35490":"P_LV:CLH","35491":"P_LV:CLH","35492":"P_LV:CLH","35493":"P_LV:CLH","35494":"P_LV:CLH","35495":"P_LV:CLH","35496":"P_LV:CLH","35497":"P_LV:CLH","35498":"P_LV:CLH","35499":"P_LV:CLH","35500":"P_LV:CLH","35501":"P_LV:CLH","35502":"P_LV:CLH","35503":"P_LV:CLH","35504":"P_LV:CLH","35505":"P_LV:CLH","35506":"P_LV:CLH","35507":"P_LV:CLH","35508":"P_LV:CLH","35509":"P_LV:CLH","35510":"P_LV:CLH","35511":"P_LV:CLH","35512":"P_LV:CLH","35513":"P_LV:CLH","35514":"P_LV:CLH","35515":"P_LV:CLH","35516":"P_LV:CLH","35517":"P_LV:CLH","35518":"P_LV:CLH","35519":"P_LV:CLH","35520":"P_LV:CLH","35521":"P_LV:CLH","35522":"P_LV:CLH","35523":"P_LV:CLH","35524":"P_LV:CLH","35525":"P_LV:CLH","35526":"P_LV:CLH","35527":"P_LV:CLH","35528":"P_LV:CLH","35529":"P_LV:CLH","35530":"P_LV:CLH","35531":"P_LV:CLH","35532":"P_LV:CLH","35533":"P_LV:CLH","35534":"P_LV:CLH","35535":"P_LV:CLH","35536":"P_LV:CLH","35537":"P_LV:CLH","35538":"P_LV:CLH","35539":"P_LV:CLH","35540":"P_LV:CLH","35541":"P_LV:CLH","35542":"P_LV:CLH","35543":"P_LV:CLH","35544":"P_LV:CLH","35545":"P_LV:CLH","35546":"P_LV:CLH","35547":"P_LV:CLH","35548":"P_LV:CLH","35549":"P_LV:CLH","35550":"P_LV:CLH","35551":"P_LV:CLH","35552":"P_LV:CLH","35553":"P_LV:CLH","35554":"P_LV:CLH","35555":"P_LV:CLH","35556":"P_LV:CLH","35557":"P_LV:CLH","35558":"P_LV:CLH","35559":"P_LV:CLH","35560":"P_LV:CLH","35561":"P_LV:CLH","35562":"P_LV:CLH","35563":"P_LV:CLH","35564":"P_LV:CLH","35565":"P_LV:CLH","35566":"P_LV:CLH","35567":"P_LV:CLH","35568":"P_LV:CLH","35569":"P_LV:CLH","35570":"P_LV:CLH","35571":"P_LV:CLH","35572":"P_LV:CLH","35573":"P_LV:CLH","35574":"P_LV:CLH","35575":"P_LV:CLH","35576":"P_LV:CLH","35577":"P_LV:CLH","35578":"P_LV:CLH","35579":"P_LV:CLH","35580":"P_LV:CLH","35581":"P_LV:CLH","35582":"P_LV:CLH","35583":"P_LV:CLH","35584":"P_LV:CLH","35585":"P_LV:CLH","35586":"P_LV:CLH","35587":"P_LV:CLH","35588":"P_LV:CLH","35589":"P_LV:CLH","35590":"P_LV:CLH","35591":"P_LV:CLH","35592":"P_LV:CLH","35593":"P_LV:CLH","35594":"P_LV:CLH","35595":"P_LV:CLH","35596":"P_LV:CLH","35597":"P_LV:CLH","35598":"P_LV:CLH","35599":"P_LV:CLH","35600":"P_LV:CLH","35601":"P_LV:CLH","35602":"P_LV:CLH","35603":"P_LV:CLH","35604":"P_LV:CLH","35605":"P_LV:CLH","35606":"P_LV:CLH","35607":"P_LV:CLH","35608":"P_LV:CLH","35609":"P_LV:CLH","35610":"P_LV:CLH","35611":"P_LV:CLH","35612":"P_LV:CLH","35613":"P_LV:CLH","35614":"P_LV:CLH","35615":"P_LV:CLH","35616":"P_LV:CLH","35617":"P_LV:CLH","35618":"P_LV:CLH","35619":"P_LV:CLH","35620":"P_LV:CLH","35621":"P_LV:CLH","35622":"P_LV:CLH","35623":"P_LV:CLH","35624":"P_LV:CLH","35625":"P_LV:CLH","35626":"P_LV:CLH","35627":"P_LV:CLH","35628":"P_LV:CLH","35629":"P_LV:CLH","35630":"P_LV:CLH","35631":"P_LV:CLH","35632":"P_LV:CLH","35633":"P_LV:CLH","35634":"P_LV:CLH","35635":"P_LV:CLH","35636":"P_LV:CLH","35637":"P_LV:CLH","35638":"P_LV:CLH","35639":"P_LV:CLH","35640":"P_LV:CLH","35641":"P_LV:CLH","35642":"P_LV:CLH","35643":"P_LV:CLH","35644":"P_LV:CLH","35645":"P_LV:CLH","35646":"P_LV:CLH","35647":"P_LV:CLH","35648":"P_LV:CLH","35649":"P_LV:CLH","35650":"P_LV:CLH","35651":"P_LV:CLH","35652":"P_LV:CLH","35653":"P_LV:CLH","35654":"P_LV:CLH","35655":"P_LV:CLH","35656":"P_LV:CLH","35657":"P_LV:CLH","35658":"P_LV:CLH","35659":"P_LV:CLH","35660":"P_LV:CLH","35661":"P_LV:CLH","35662":"P_LV:CLH","35663":"P_LV:CLH","35664":"P_LV:CLH","35665":"P_LV:CLH","35666":"P_LV:CLH","35667":"P_LV:CLH","35668":"P_LV:CLH","35669":"P_LV:CLH","35670":"P_LV:CLH","35671":"P_LV:CLH","35672":"P_LV:CLH","35673":"P_LV:CLH","35674":"P_LV:CLH","35675":"P_LV:CLH","35676":"P_LV:CLH","35677":"P_LV:CLH","35678":"P_LV:CLH","35679":"P_LV:CLH","35680":"P_LV:CLH","35681":"P_LV:CLH","35682":"P_LV:CLH","35683":"P_LV:CLH","35684":"P_LV:CLH","35685":"P_LV:CLH","35686":"P_LV:CLH","35687":"P_LV:CLH","35688":"P_LV:CLH","35689":"P_LV:CLH","35690":"P_LV:CLH","35691":"P_LV:CLH","35692":"P_LV:CLH","35693":"P_LV:CLH","35694":"P_LV:CLH","35695":"P_LV:CLH","35696":"P_LV:CLH","35697":"P_LV:CLH","35698":"P_LV:CLH","35699":"P_LV:CLH","35700":"P_LV:CLH","35701":"P_LV:CLH","35702":"P_LV:CLH","35703":"P_LV:CLH","35704":"P_LV:CLH","35705":"P_LV:CLH","35706":"P_LV:CLH","35707":"P_LV:CLH","35708":"P_LV:CLH","35709":"P_LV:CLH","35710":"P_LV:CLH","35711":"P_LV:CLH","35712":"P_LV:CLH","35713":"P_LV:CLH","35714":"P_LV:CLH","35715":"P_LV:CLH","35716":"P_LV:CLH","35717":"P_LV:CLH","35718":"P_LV:CLH","35719":"P_LV:CLH","35720":"P_LV:CLH","35721":"P_LV:CLH","35722":"P_LV:CLH","35723":"P_LV:CLH","35724":"P_LV:CLH","35725":"P_LV:CLH","35726":"P_LV:CLH","35727":"P_LV:CLH","35728":"P_LV:CLH","35729":"P_LV:CLH","35730":"P_LV:CLH","35731":"P_LV:CLH","35732":"P_LV:CLH","35733":"P_LV:CLH","35734":"P_LV:CLH","35735":"P_LV:CLH","35736":"P_LV:CLH","35737":"P_LV:CLH","35738":"P_LV:CLH","35739":"P_LV:CLH","35740":"P_LV:CLH","35741":"P_LV:CLH","35742":"P_LV:CLH","35743":"P_LV:CLH","35744":"P_LV:CLH","35745":"P_LV:CLH","35746":"P_LV:CLH","35747":"P_LV:CLH","35748":"P_LV:CLH","35749":"P_LV:CLH","35750":"P_LV:CLH","35751":"P_LV:CLH","35752":"P_LV:CLH","35753":"P_LV:CLH","35754":"P_LV:CLH","35755":"P_LV:CLH","35756":"P_LV:CLH","35757":"P_LV:CLH","35758":"P_LV:CLH","35759":"P_LV:CLH","35760":"P_LV:CLH","35761":"P_LV:CLH","35762":"P_LV:CLH","35763":"P_LV:CLH","35764":"P_LV:CLH","35765":"P_LV:CLH","35766":"P_LV:CLH","35767":"P_LV:CLH","35768":"P_LV:CLH","35769":"P_LV:CLH","35770":"P_LV:CLH","35771":"P_LV:CLH","35772":"P_LV:CLH","35773":"P_LV:CLH","35774":"P_LV:CLH","35775":"P_LV:CLH","35776":"P_LV:CLH","35777":"P_LV:CLH","35778":"P_LV:CLH","35779":"P_LV:CLH","35780":"P_LV:CLH","35781":"P_LV:CLH","35782":"P_LV:CLH","35783":"P_LV:CLH","35784":"P_LV:CLH","35785":"P_LV:CLH","35786":"P_LV:CLH","35787":"P_LV:CLH","35788":"P_LV:CLH","35789":"P_LV:CLH","35790":"P_LV:CLH","35791":"P_LV:CLH","35792":"P_LV:CLH","35793":"P_LV:CLH","35794":"P_LV:CLH","35795":"P_LV:CLH","35796":"P_LV:CLH","35797":"P_LV:CLH","35798":"P_LV:CLH","35799":"P_LV:CLH","35800":"P_LV:CLH","35801":"P_LV:CLH","35802":"P_LV:CLH","35803":"P_LV:CLH","35804":"P_LV:CLH","35805":"P_LV:CLH","35806":"P_LV:CLH","35807":"P_LV:CLH","35808":"P_LV:CLH","35809":"P_LV:CLH","35810":"P_LV:CLH","35811":"P_LV:CLH","35812":"P_LV:CLH","35813":"P_LV:CLH","35814":"P_LV:CLH","35815":"P_LV:CLH","35816":"P_LV:CLH","35817":"P_LV:CLH","35818":"P_LV:CLH","35819":"P_LV:CLH","35820":"P_LV:CLH","35821":"P_LV:CLH","35822":"P_LV:CLH","35823":"P_LV:CLH","35824":"P_LV:CLH","35825":"P_LV:CLH","35826":"P_LV:CLH","35827":"P_LV:CLH","35828":"P_LV:CLH","35829":"P_LV:CLH","35830":"P_LV:CLH","35831":"P_LV:CLH","35832":"P_LV:CLH","35833":"P_LV:CLH","35834":"P_LV:CLH","35835":"P_LV:CLH","35836":"P_LV:CLH","35837":"P_LV:CLH","35838":"P_LV:CLH","35839":"P_LV:CLH","35840":"P_LV:CLH","35841":"P_LV:CLH","35842":"P_LV:CLH","35843":"P_LV:CLH","35844":"P_LV:CLH","35845":"P_LV:CLH","35846":"P_LV:CLH","35847":"P_LV:CLH","35848":"P_LV:CLH","35849":"P_LV:CLH","35850":"P_LV:CLH","35851":"P_LV:CLH","35852":"P_LV:CLH","35853":"P_LV:CLH","35854":"P_LV:CLH","35855":"P_LV:CLH","35856":"P_LV:CLH","35857":"P_LV:CLH","35858":"P_LV:CLH","35859":"P_LV:CLH","35860":"P_LV:CLH","35861":"P_LV:CLH","35862":"P_LV:CLH","35863":"P_LV:CLH","35864":"P_LV:CLH","35865":"P_LV:CLH","35866":"P_LV:CLH","35867":"P_LV:CLH","35868":"P_LV:CLH","35869":"P_LV:CLH","35870":"P_LV:CLH","35871":"P_LV:CLH","35872":"P_LV:CLH","35873":"P_LV:CLH","35874":"P_LV:CLH","35875":"P_LV:CLH","35876":"P_LV:CLH","35877":"P_LV:CLH","35878":"P_LV:CLH","35879":"P_LV:CLH","35880":"P_LV:CLH","35881":"P_LV:CLH","35882":"P_LV:CLH","35883":"P_LV:CLH","35884":"P_LV:CLH","35885":"P_LV:CLH","35886":"P_LV:CLH","35887":"P_LV:CLH","35888":"P_LV:CLH","35889":"P_LV:CLH","35890":"P_LV:CLH","35891":"P_LV:CLH","35892":"P_LV:CLH","35893":"P_LV:CLH","35894":"P_LV:CLH","35895":"P_LV:CLH","35896":"P_LV:CLH","35897":"P_LV:CLH","35898":"P_LV:CLH","35899":"P_LV:CLH","35900":"P_LV:CLH","35901":"P_LV:CLH","35902":"P_LV:CLH","35903":"P_LV:CLH","35904":"P_LV:CLH","35905":"P_LV:CLH","35906":"P_LV:CLH","35907":"P_LV:CLH","35908":"P_LV:CLH","35909":"P_LV:CLH","35910":"P_LV:CLH","35911":"P_LV:CLH","35912":"P_LV:CLH","35913":"P_LV:CLH","35914":"P_LV:CLH","35915":"P_LV:CLH","35916":"P_LV:CLH","35917":"P_LV:CLH","35918":"P_LV:CLH","35919":"P_LV:CLH","35920":"P_LV:CLH","35921":"P_LV:CLH","35922":"P_LV:CLH","35923":"P_LV:CLH","35924":"P_LV:CLH","35925":"P_LV:CLH","35926":"P_LV:CLH","35927":"P_LV:CLH","35928":"P_LV:CLH","35929":"P_LV:CLH","35930":"P_LV:CLH","35931":"P_LV:CLH","35932":"P_LV:CLH","35933":"P_LV:CLH","35934":"P_LV:CLH","35935":"P_LV:CLH","35936":"P_LV:CLH","35937":"P_LV:CLH","35938":"P_LV:CLH","35939":"P_LV:CLH","35940":"P_LV:CLH","35941":"P_LV:CLH","35942":"P_LV:CLH","35943":"P_LV:CLH","35944":"P_LV:CLH","35945":"P_LV:CLH","35946":"P_LV:CLH","35947":"P_LV:CLH","35948":"P_LV:CLH","35949":"P_LV:CLH","35950":"P_LV:CLH","35951":"P_LV:CLH","35952":"P_LV:CLH","35953":"P_LV:CLH","35954":"P_LV:CLH","35955":"P_LV:CLH","35956":"P_LV:CLH","35957":"P_LV:CLH","35958":"P_LV:CLH","35959":"P_LV:CLH","35960":"P_LV:CLH","35961":"P_LV:CLH","35962":"P_LV:CLH","35963":"P_LV:CLH","35964":"P_LV:CLH","35965":"P_LV:CLH","35966":"P_LV:CLH","35967":"P_LV:CLH","35968":"P_LV:CLH","35969":"P_LV:CLH","35970":"P_LV:CLH","35971":"P_LV:CLH","35972":"P_LV:CLH","35973":"P_LV:CLH","35974":"P_LV:CLH","35975":"P_LV:CLH","35976":"P_LV:CLH","35977":"P_LV:CLH","35978":"P_LV:CLH","35979":"P_LV:CLH","35980":"P_LV:CLH","35981":"P_LV:CLH","35982":"P_LV:CLH","35983":"P_LV:CLH","35984":"P_LV:CLH","35985":"P_LV:CLH","35986":"P_LV:CLH","35987":"P_LV:CLH","35988":"P_LV:CLH","35989":"P_LV:CLH","35990":"P_LV:CLH","35991":"P_LV:CLH","35992":"P_LV:CLH","35993":"P_LV:CLH","35994":"P_LV:CLH","35995":"P_LV:CLH","35996":"P_LV:CLH","35997":"P_LV:CLH","35998":"P_LV:CLH","35999":"P_LV:CLH","36000":"V_LV:CLH","36001":"V_LV:CLH","36002":"V_LV:CLH","36003":"V_LV:CLH","36004":"V_LV:CLH","36005":"V_LV:CLH","36006":"V_LV:CLH","36007":"V_LV:CLH","36008":"V_LV:CLH","36009":"V_LV:CLH","36010":"V_LV:CLH","36011":"V_LV:CLH","36012":"V_LV:CLH","36013":"V_LV:CLH","36014":"V_LV:CLH","36015":"V_LV:CLH","36016":"V_LV:CLH","36017":"V_LV:CLH","36018":"V_LV:CLH","36019":"V_LV:CLH","36020":"V_LV:CLH","36021":"V_LV:CLH","36022":"V_LV:CLH","36023":"V_LV:CLH","36024":"V_LV:CLH","36025":"V_LV:CLH","36026":"V_LV:CLH","36027":"V_LV:CLH","36028":"V_LV:CLH","36029":"V_LV:CLH","36030":"V_LV:CLH","36031":"V_LV:CLH","36032":"V_LV:CLH","36033":"V_LV:CLH","36034":"V_LV:CLH","36035":"V_LV:CLH","36036":"V_LV:CLH","36037":"V_LV:CLH","36038":"V_LV:CLH","36039":"V_LV:CLH","36040":"V_LV:CLH","36041":"V_LV:CLH","36042":"V_LV:CLH","36043":"V_LV:CLH","36044":"V_LV:CLH","36045":"V_LV:CLH","36046":"V_LV:CLH","36047":"V_LV:CLH","36048":"V_LV:CLH","36049":"V_LV:CLH","36050":"V_LV:CLH","36051":"V_LV:CLH","36052":"V_LV:CLH","36053":"V_LV:CLH","36054":"V_LV:CLH","36055":"V_LV:CLH","36056":"V_LV:CLH","36057":"V_LV:CLH","36058":"V_LV:CLH","36059":"V_LV:CLH","36060":"V_LV:CLH","36061":"V_LV:CLH","36062":"V_LV:CLH","36063":"V_LV:CLH","36064":"V_LV:CLH","36065":"V_LV:CLH","36066":"V_LV:CLH","36067":"V_LV:CLH","36068":"V_LV:CLH","36069":"V_LV:CLH","36070":"V_LV:CLH","36071":"V_LV:CLH","36072":"V_LV:CLH","36073":"V_LV:CLH","36074":"V_LV:CLH","36075":"V_LV:CLH","36076":"V_LV:CLH","36077":"V_LV:CLH","36078":"V_LV:CLH","36079":"V_LV:CLH","36080":"V_LV:CLH","36081":"V_LV:CLH","36082":"V_LV:CLH","36083":"V_LV:CLH","36084":"V_LV:CLH","36085":"V_LV:CLH","36086":"V_LV:CLH","36087":"V_LV:CLH","36088":"V_LV:CLH","36089":"V_LV:CLH","36090":"V_LV:CLH","36091":"V_LV:CLH","36092":"V_LV:CLH","36093":"V_LV:CLH","36094":"V_LV:CLH","36095":"V_LV:CLH","36096":"V_LV:CLH","36097":"V_LV:CLH","36098":"V_LV:CLH","36099":"V_LV:CLH","36100":"V_LV:CLH","36101":"V_LV:CLH","36102":"V_LV:CLH","36103":"V_LV:CLH","36104":"V_LV:CLH","36105":"V_LV:CLH","36106":"V_LV:CLH","36107":"V_LV:CLH","36108":"V_LV:CLH","36109":"V_LV:CLH","36110":"V_LV:CLH","36111":"V_LV:CLH","36112":"V_LV:CLH","36113":"V_LV:CLH","36114":"V_LV:CLH","36115":"V_LV:CLH","36116":"V_LV:CLH","36117":"V_LV:CLH","36118":"V_LV:CLH","36119":"V_LV:CLH","36120":"V_LV:CLH","36121":"V_LV:CLH","36122":"V_LV:CLH","36123":"V_LV:CLH","36124":"V_LV:CLH","36125":"V_LV:CLH","36126":"V_LV:CLH","36127":"V_LV:CLH","36128":"V_LV:CLH","36129":"V_LV:CLH","36130":"V_LV:CLH","36131":"V_LV:CLH","36132":"V_LV:CLH","36133":"V_LV:CLH","36134":"V_LV:CLH","36135":"V_LV:CLH","36136":"V_LV:CLH","36137":"V_LV:CLH","36138":"V_LV:CLH","36139":"V_LV:CLH","36140":"V_LV:CLH","36141":"V_LV:CLH","36142":"V_LV:CLH","36143":"V_LV:CLH","36144":"V_LV:CLH","36145":"V_LV:CLH","36146":"V_LV:CLH","36147":"V_LV:CLH","36148":"V_LV:CLH","36149":"V_LV:CLH","36150":"V_LV:CLH","36151":"V_LV:CLH","36152":"V_LV:CLH","36153":"V_LV:CLH","36154":"V_LV:CLH","36155":"V_LV:CLH","36156":"V_LV:CLH","36157":"V_LV:CLH","36158":"V_LV:CLH","36159":"V_LV:CLH","36160":"V_LV:CLH","36161":"V_LV:CLH","36162":"V_LV:CLH","36163":"V_LV:CLH","36164":"V_LV:CLH","36165":"V_LV:CLH","36166":"V_LV:CLH","36167":"V_LV:CLH","36168":"V_LV:CLH","36169":"V_LV:CLH","36170":"V_LV:CLH","36171":"V_LV:CLH","36172":"V_LV:CLH","36173":"V_LV:CLH","36174":"V_LV:CLH","36175":"V_LV:CLH","36176":"V_LV:CLH","36177":"V_LV:CLH","36178":"V_LV:CLH","36179":"V_LV:CLH","36180":"V_LV:CLH","36181":"V_LV:CLH","36182":"V_LV:CLH","36183":"V_LV:CLH","36184":"V_LV:CLH","36185":"V_LV:CLH","36186":"V_LV:CLH","36187":"V_LV:CLH","36188":"V_LV:CLH","36189":"V_LV:CLH","36190":"V_LV:CLH","36191":"V_LV:CLH","36192":"V_LV:CLH","36193":"V_LV:CLH","36194":"V_LV:CLH","36195":"V_LV:CLH","36196":"V_LV:CLH","36197":"V_LV:CLH","36198":"V_LV:CLH","36199":"V_LV:CLH","36200":"V_LV:CLH","36201":"V_LV:CLH","36202":"V_LV:CLH","36203":"V_LV:CLH","36204":"V_LV:CLH","36205":"V_LV:CLH","36206":"V_LV:CLH","36207":"V_LV:CLH","36208":"V_LV:CLH","36209":"V_LV:CLH","36210":"V_LV:CLH","36211":"V_LV:CLH","36212":"V_LV:CLH","36213":"V_LV:CLH","36214":"V_LV:CLH","36215":"V_LV:CLH","36216":"V_LV:CLH","36217":"V_LV:CLH","36218":"V_LV:CLH","36219":"V_LV:CLH","36220":"V_LV:CLH","36221":"V_LV:CLH","36222":"V_LV:CLH","36223":"V_LV:CLH","36224":"V_LV:CLH","36225":"V_LV:CLH","36226":"V_LV:CLH","36227":"V_LV:CLH","36228":"V_LV:CLH","36229":"V_LV:CLH","36230":"V_LV:CLH","36231":"V_LV:CLH","36232":"V_LV:CLH","36233":"V_LV:CLH","36234":"V_LV:CLH","36235":"V_LV:CLH","36236":"V_LV:CLH","36237":"V_LV:CLH","36238":"V_LV:CLH","36239":"V_LV:CLH","36240":"V_LV:CLH","36241":"V_LV:CLH","36242":"V_LV:CLH","36243":"V_LV:CLH","36244":"V_LV:CLH","36245":"V_LV:CLH","36246":"V_LV:CLH","36247":"V_LV:CLH","36248":"V_LV:CLH","36249":"V_LV:CLH","36250":"V_LV:CLH","36251":"V_LV:CLH","36252":"V_LV:CLH","36253":"V_LV:CLH","36254":"V_LV:CLH","36255":"V_LV:CLH","36256":"V_LV:CLH","36257":"V_LV:CLH","36258":"V_LV:CLH","36259":"V_LV:CLH","36260":"V_LV:CLH","36261":"V_LV:CLH","36262":"V_LV:CLH","36263":"V_LV:CLH","36264":"V_LV:CLH","36265":"V_LV:CLH","36266":"V_LV:CLH","36267":"V_LV:CLH","36268":"V_LV:CLH","36269":"V_LV:CLH","36270":"V_LV:CLH","36271":"V_LV:CLH","36272":"V_LV:CLH","36273":"V_LV:CLH","36274":"V_LV:CLH","36275":"V_LV:CLH","36276":"V_LV:CLH","36277":"V_LV:CLH","36278":"V_LV:CLH","36279":"V_LV:CLH","36280":"V_LV:CLH","36281":"V_LV:CLH","36282":"V_LV:CLH","36283":"V_LV:CLH","36284":"V_LV:CLH","36285":"V_LV:CLH","36286":"V_LV:CLH","36287":"V_LV:CLH","36288":"V_LV:CLH","36289":"V_LV:CLH","36290":"V_LV:CLH","36291":"V_LV:CLH","36292":"V_LV:CLH","36293":"V_LV:CLH","36294":"V_LV:CLH","36295":"V_LV:CLH","36296":"V_LV:CLH","36297":"V_LV:CLH","36298":"V_LV:CLH","36299":"V_LV:CLH","36300":"V_LV:CLH","36301":"V_LV:CLH","36302":"V_LV:CLH","36303":"V_LV:CLH","36304":"V_LV:CLH","36305":"V_LV:CLH","36306":"V_LV:CLH","36307":"V_LV:CLH","36308":"V_LV:CLH","36309":"V_LV:CLH","36310":"V_LV:CLH","36311":"V_LV:CLH","36312":"V_LV:CLH","36313":"V_LV:CLH","36314":"V_LV:CLH","36315":"V_LV:CLH","36316":"V_LV:CLH","36317":"V_LV:CLH","36318":"V_LV:CLH","36319":"V_LV:CLH","36320":"V_LV:CLH","36321":"V_LV:CLH","36322":"V_LV:CLH","36323":"V_LV:CLH","36324":"V_LV:CLH","36325":"V_LV:CLH","36326":"V_LV:CLH","36327":"V_LV:CLH","36328":"V_LV:CLH","36329":"V_LV:CLH","36330":"V_LV:CLH","36331":"V_LV:CLH","36332":"V_LV:CLH","36333":"V_LV:CLH","36334":"V_LV:CLH","36335":"V_LV:CLH","36336":"V_LV:CLH","36337":"V_LV:CLH","36338":"V_LV:CLH","36339":"V_LV:CLH","36340":"V_LV:CLH","36341":"V_LV:CLH","36342":"V_LV:CLH","36343":"V_LV:CLH","36344":"V_LV:CLH","36345":"V_LV:CLH","36346":"V_LV:CLH","36347":"V_LV:CLH","36348":"V_LV:CLH","36349":"V_LV:CLH","36350":"V_LV:CLH","36351":"V_LV:CLH","36352":"V_LV:CLH","36353":"V_LV:CLH","36354":"V_LV:CLH","36355":"V_LV:CLH","36356":"V_LV:CLH","36357":"V_LV:CLH","36358":"V_LV:CLH","36359":"V_LV:CLH","36360":"V_LV:CLH","36361":"V_LV:CLH","36362":"V_LV:CLH","36363":"V_LV:CLH","36364":"V_LV:CLH","36365":"V_LV:CLH","36366":"V_LV:CLH","36367":"V_LV:CLH","36368":"V_LV:CLH","36369":"V_LV:CLH","36370":"V_LV:CLH","36371":"V_LV:CLH","36372":"V_LV:CLH","36373":"V_LV:CLH","36374":"V_LV:CLH","36375":"V_LV:CLH","36376":"V_LV:CLH","36377":"V_LV:CLH","36378":"V_LV:CLH","36379":"V_LV:CLH","36380":"V_LV:CLH","36381":"V_LV:CLH","36382":"V_LV:CLH","36383":"V_LV:CLH","36384":"V_LV:CLH","36385":"V_LV:CLH","36386":"V_LV:CLH","36387":"V_LV:CLH","36388":"V_LV:CLH","36389":"V_LV:CLH","36390":"V_LV:CLH","36391":"V_LV:CLH","36392":"V_LV:CLH","36393":"V_LV:CLH","36394":"V_LV:CLH","36395":"V_LV:CLH","36396":"V_LV:CLH","36397":"V_LV:CLH","36398":"V_LV:CLH","36399":"V_LV:CLH","36400":"V_LV:CLH","36401":"V_LV:CLH","36402":"V_LV:CLH","36403":"V_LV:CLH","36404":"V_LV:CLH","36405":"V_LV:CLH","36406":"V_LV:CLH","36407":"V_LV:CLH","36408":"V_LV:CLH","36409":"V_LV:CLH","36410":"V_LV:CLH","36411":"V_LV:CLH","36412":"V_LV:CLH","36413":"V_LV:CLH","36414":"V_LV:CLH","36415":"V_LV:CLH","36416":"V_LV:CLH","36417":"V_LV:CLH","36418":"V_LV:CLH","36419":"V_LV:CLH","36420":"V_LV:CLH","36421":"V_LV:CLH","36422":"V_LV:CLH","36423":"V_LV:CLH","36424":"V_LV:CLH","36425":"V_LV:CLH","36426":"V_LV:CLH","36427":"V_LV:CLH","36428":"V_LV:CLH","36429":"V_LV:CLH","36430":"V_LV:CLH","36431":"V_LV:CLH","36432":"V_LV:CLH","36433":"V_LV:CLH","36434":"V_LV:CLH","36435":"V_LV:CLH","36436":"V_LV:CLH","36437":"V_LV:CLH","36438":"V_LV:CLH","36439":"V_LV:CLH","36440":"V_LV:CLH","36441":"V_LV:CLH","36442":"V_LV:CLH","36443":"V_LV:CLH","36444":"V_LV:CLH","36445":"V_LV:CLH","36446":"V_LV:CLH","36447":"V_LV:CLH","36448":"V_LV:CLH","36449":"V_LV:CLH","36450":"V_LV:CLH","36451":"V_LV:CLH","36452":"V_LV:CLH","36453":"V_LV:CLH","36454":"V_LV:CLH","36455":"V_LV:CLH","36456":"V_LV:CLH","36457":"V_LV:CLH","36458":"V_LV:CLH","36459":"V_LV:CLH","36460":"V_LV:CLH","36461":"V_LV:CLH","36462":"V_LV:CLH","36463":"V_LV:CLH","36464":"V_LV:CLH","36465":"V_LV:CLH","36466":"V_LV:CLH","36467":"V_LV:CLH","36468":"V_LV:CLH","36469":"V_LV:CLH","36470":"V_LV:CLH","36471":"V_LV:CLH","36472":"V_LV:CLH","36473":"V_LV:CLH","36474":"V_LV:CLH","36475":"V_LV:CLH","36476":"V_LV:CLH","36477":"V_LV:CLH","36478":"V_LV:CLH","36479":"V_LV:CLH","36480":"V_LV:CLH","36481":"V_LV:CLH","36482":"V_LV:CLH","36483":"V_LV:CLH","36484":"V_LV:CLH","36485":"V_LV:CLH","36486":"V_LV:CLH","36487":"V_LV:CLH","36488":"V_LV:CLH","36489":"V_LV:CLH","36490":"V_LV:CLH","36491":"V_LV:CLH","36492":"V_LV:CLH","36493":"V_LV:CLH","36494":"V_LV:CLH","36495":"V_LV:CLH","36496":"V_LV:CLH","36497":"V_LV:CLH","36498":"V_LV:CLH","36499":"V_LV:CLH","36500":"V_LV:CLH","36501":"V_LV:CLH","36502":"V_LV:CLH","36503":"V_LV:CLH","36504":"V_LV:CLH","36505":"V_LV:CLH","36506":"V_LV:CLH","36507":"V_LV:CLH","36508":"V_LV:CLH","36509":"V_LV:CLH","36510":"V_LV:CLH","36511":"V_LV:CLH","36512":"V_LV:CLH","36513":"V_LV:CLH","36514":"V_LV:CLH","36515":"V_LV:CLH","36516":"V_LV:CLH","36517":"V_LV:CLH","36518":"V_LV:CLH","36519":"V_LV:CLH","36520":"V_LV:CLH","36521":"V_LV:CLH","36522":"V_LV:CLH","36523":"V_LV:CLH","36524":"V_LV:CLH","36525":"V_LV:CLH","36526":"V_LV:CLH","36527":"V_LV:CLH","36528":"V_LV:CLH","36529":"V_LV:CLH","36530":"V_LV:CLH","36531":"V_LV:CLH","36532":"V_LV:CLH","36533":"V_LV:CLH","36534":"V_LV:CLH","36535":"V_LV:CLH","36536":"V_LV:CLH","36537":"V_LV:CLH","36538":"V_LV:CLH","36539":"V_LV:CLH","36540":"V_LV:CLH","36541":"V_LV:CLH","36542":"V_LV:CLH","36543":"V_LV:CLH","36544":"V_LV:CLH","36545":"V_LV:CLH","36546":"V_LV:CLH","36547":"V_LV:CLH","36548":"V_LV:CLH","36549":"V_LV:CLH","36550":"V_LV:CLH","36551":"V_LV:CLH","36552":"V_LV:CLH","36553":"V_LV:CLH","36554":"V_LV:CLH","36555":"V_LV:CLH","36556":"V_LV:CLH","36557":"V_LV:CLH","36558":"V_LV:CLH","36559":"V_LV:CLH","36560":"V_LV:CLH","36561":"V_LV:CLH","36562":"V_LV:CLH","36563":"V_LV:CLH","36564":"V_LV:CLH","36565":"V_LV:CLH","36566":"V_LV:CLH","36567":"V_LV:CLH","36568":"V_LV:CLH","36569":"V_LV:CLH","36570":"V_LV:CLH","36571":"V_LV:CLH","36572":"V_LV:CLH","36573":"V_LV:CLH","36574":"V_LV:CLH","36575":"V_LV:CLH","36576":"V_LV:CLH","36577":"V_LV:CLH","36578":"V_LV:CLH","36579":"V_LV:CLH","36580":"V_LV:CLH","36581":"V_LV:CLH","36582":"V_LV:CLH","36583":"V_LV:CLH","36584":"V_LV:CLH","36585":"V_LV:CLH","36586":"V_LV:CLH","36587":"V_LV:CLH","36588":"V_LV:CLH","36589":"V_LV:CLH","36590":"V_LV:CLH","36591":"V_LV:CLH","36592":"V_LV:CLH","36593":"V_LV:CLH","36594":"V_LV:CLH","36595":"V_LV:CLH","36596":"V_LV:CLH","36597":"V_LV:CLH","36598":"V_LV:CLH","36599":"V_LV:CLH","36600":"V_LV:CLH","36601":"V_LV:CLH","36602":"V_LV:CLH","36603":"V_LV:CLH","36604":"V_LV:CLH","36605":"V_LV:CLH","36606":"V_LV:CLH","36607":"V_LV:CLH","36608":"V_LV:CLH","36609":"V_LV:CLH","36610":"V_LV:CLH","36611":"V_LV:CLH","36612":"V_LV:CLH","36613":"V_LV:CLH","36614":"V_LV:CLH","36615":"V_LV:CLH","36616":"V_LV:CLH","36617":"V_LV:CLH","36618":"V_LV:CLH","36619":"V_LV:CLH","36620":"V_LV:CLH","36621":"V_LV:CLH","36622":"V_LV:CLH","36623":"V_LV:CLH","36624":"V_LV:CLH","36625":"V_LV:CLH","36626":"V_LV:CLH","36627":"V_LV:CLH","36628":"V_LV:CLH","36629":"V_LV:CLH","36630":"V_LV:CLH","36631":"V_LV:CLH","36632":"V_LV:CLH","36633":"V_LV:CLH","36634":"V_LV:CLH","36635":"V_LV:CLH","36636":"V_LV:CLH","36637":"V_LV:CLH","36638":"V_LV:CLH","36639":"V_LV:CLH","36640":"V_LV:CLH","36641":"V_LV:CLH","36642":"V_LV:CLH","36643":"V_LV:CLH","36644":"V_LV:CLH","36645":"V_LV:CLH","36646":"V_LV:CLH","36647":"V_LV:CLH","36648":"V_LV:CLH","36649":"V_LV:CLH","36650":"V_LV:CLH","36651":"V_LV:CLH","36652":"V_LV:CLH","36653":"V_LV:CLH","36654":"V_LV:CLH","36655":"V_LV:CLH","36656":"V_LV:CLH","36657":"V_LV:CLH","36658":"V_LV:CLH","36659":"V_LV:CLH","36660":"V_LV:CLH","36661":"V_LV:CLH","36662":"V_LV:CLH","36663":"V_LV:CLH","36664":"V_LV:CLH","36665":"V_LV:CLH","36666":"V_LV:CLH","36667":"V_LV:CLH","36668":"V_LV:CLH","36669":"V_LV:CLH","36670":"V_LV:CLH","36671":"V_LV:CLH","36672":"V_LV:CLH","36673":"V_LV:CLH","36674":"V_LV:CLH","36675":"V_LV:CLH","36676":"V_LV:CLH","36677":"V_LV:CLH","36678":"V_LV:CLH","36679":"V_LV:CLH","36680":"V_LV:CLH","36681":"V_LV:CLH","36682":"V_LV:CLH","36683":"V_LV:CLH","36684":"V_LV:CLH","36685":"V_LV:CLH","36686":"V_LV:CLH","36687":"V_LV:CLH","36688":"V_LV:CLH","36689":"V_LV:CLH","36690":"V_LV:CLH","36691":"V_LV:CLH","36692":"V_LV:CLH","36693":"V_LV:CLH","36694":"V_LV:CLH","36695":"V_LV:CLH","36696":"V_LV:CLH","36697":"V_LV:CLH","36698":"V_LV:CLH","36699":"V_LV:CLH","36700":"V_LV:CLH","36701":"V_LV:CLH","36702":"V_LV:CLH","36703":"V_LV:CLH","36704":"V_LV:CLH","36705":"V_LV:CLH","36706":"V_LV:CLH","36707":"V_LV:CLH","36708":"V_LV:CLH","36709":"V_LV:CLH","36710":"V_LV:CLH","36711":"V_LV:CLH","36712":"V_LV:CLH","36713":"V_LV:CLH","36714":"V_LV:CLH","36715":"V_LV:CLH","36716":"V_LV:CLH","36717":"V_LV:CLH","36718":"V_LV:CLH","36719":"V_LV:CLH","36720":"V_LV:CLH","36721":"V_LV:CLH","36722":"V_LV:CLH","36723":"V_LV:CLH","36724":"V_LV:CLH","36725":"V_LV:CLH","36726":"V_LV:CLH","36727":"V_LV:CLH","36728":"V_LV:CLH","36729":"V_LV:CLH","36730":"V_LV:CLH","36731":"V_LV:CLH","36732":"V_LV:CLH","36733":"V_LV:CLH","36734":"V_LV:CLH","36735":"V_LV:CLH","36736":"V_LV:CLH","36737":"V_LV:CLH","36738":"V_LV:CLH","36739":"V_LV:CLH","36740":"V_LV:CLH","36741":"V_LV:CLH","36742":"V_LV:CLH","36743":"V_LV:CLH","36744":"V_LV:CLH","36745":"V_LV:CLH","36746":"V_LV:CLH","36747":"V_LV:CLH","36748":"V_LV:CLH","36749":"V_LV:CLH","36750":"V_LV:CLH","36751":"V_LV:CLH","36752":"V_LV:CLH","36753":"V_LV:CLH","36754":"V_LV:CLH","36755":"V_LV:CLH","36756":"V_LV:CLH","36757":"V_LV:CLH","36758":"V_LV:CLH","36759":"V_LV:CLH","36760":"V_LV:CLH","36761":"V_LV:CLH","36762":"V_LV:CLH","36763":"V_LV:CLH","36764":"V_LV:CLH","36765":"V_LV:CLH","36766":"V_LV:CLH","36767":"V_LV:CLH","36768":"V_LV:CLH","36769":"V_LV:CLH","36770":"V_LV:CLH","36771":"V_LV:CLH","36772":"V_LV:CLH","36773":"V_LV:CLH","36774":"V_LV:CLH","36775":"V_LV:CLH","36776":"V_LV:CLH","36777":"V_LV:CLH","36778":"V_LV:CLH","36779":"V_LV:CLH","36780":"V_LV:CLH","36781":"V_LV:CLH","36782":"V_LV:CLH","36783":"V_LV:CLH","36784":"V_LV:CLH","36785":"V_LV:CLH","36786":"V_LV:CLH","36787":"V_LV:CLH","36788":"V_LV:CLH","36789":"V_LV:CLH","36790":"V_LV:CLH","36791":"V_LV:CLH","36792":"V_LV:CLH","36793":"V_LV:CLH","36794":"V_LV:CLH","36795":"V_LV:CLH","36796":"V_LV:CLH","36797":"V_LV:CLH","36798":"V_LV:CLH","36799":"V_LV:CLH","36800":"V_LV:CLH","36801":"V_LV:CLH","36802":"V_LV:CLH","36803":"V_LV:CLH","36804":"V_LV:CLH","36805":"V_LV:CLH","36806":"V_LV:CLH","36807":"V_LV:CLH","36808":"V_LV:CLH","36809":"V_LV:CLH","36810":"V_LV:CLH","36811":"V_LV:CLH","36812":"V_LV:CLH","36813":"V_LV:CLH","36814":"V_LV:CLH","36815":"V_LV:CLH","36816":"V_LV:CLH","36817":"V_LV:CLH","36818":"V_LV:CLH","36819":"V_LV:CLH","36820":"V_LV:CLH","36821":"V_LV:CLH","36822":"V_LV:CLH","36823":"V_LV:CLH","36824":"V_LV:CLH","36825":"V_LV:CLH","36826":"V_LV:CLH","36827":"V_LV:CLH","36828":"V_LV:CLH","36829":"V_LV:CLH","36830":"V_LV:CLH","36831":"V_LV:CLH","36832":"V_LV:CLH","36833":"V_LV:CLH","36834":"V_LV:CLH","36835":"V_LV:CLH","36836":"V_LV:CLH","36837":"V_LV:CLH","36838":"V_LV:CLH","36839":"V_LV:CLH","36840":"V_LV:CLH","36841":"V_LV:CLH","36842":"V_LV:CLH","36843":"V_LV:CLH","36844":"V_LV:CLH","36845":"V_LV:CLH","36846":"V_LV:CLH","36847":"V_LV:CLH","36848":"V_LV:CLH","36849":"V_LV:CLH","36850":"V_LV:CLH","36851":"V_LV:CLH","36852":"V_LV:CLH","36853":"V_LV:CLH","36854":"V_LV:CLH","36855":"V_LV:CLH","36856":"V_LV:CLH","36857":"V_LV:CLH","36858":"V_LV:CLH","36859":"V_LV:CLH","36860":"V_LV:CLH","36861":"V_LV:CLH","36862":"V_LV:CLH","36863":"V_LV:CLH","36864":"V_LV:CLH","36865":"V_LV:CLH","36866":"V_LV:CLH","36867":"V_LV:CLH","36868":"V_LV:CLH","36869":"V_LV:CLH","36870":"V_LV:CLH","36871":"V_LV:CLH","36872":"V_LV:CLH","36873":"V_LV:CLH","36874":"V_LV:CLH","36875":"V_LV:CLH","36876":"V_LV:CLH","36877":"V_LV:CLH","36878":"V_LV:CLH","36879":"V_LV:CLH","36880":"V_LV:CLH","36881":"V_LV:CLH","36882":"V_LV:CLH","36883":"V_LV:CLH","36884":"V_LV:CLH","36885":"V_LV:CLH","36886":"V_LV:CLH","36887":"V_LV:CLH","36888":"V_LV:CLH","36889":"V_LV:CLH","36890":"V_LV:CLH","36891":"V_LV:CLH","36892":"V_LV:CLH","36893":"V_LV:CLH","36894":"V_LV:CLH","36895":"V_LV:CLH","36896":"V_LV:CLH","36897":"V_LV:CLH","36898":"V_LV:CLH","36899":"V_LV:CLH","36900":"V_LV:CLH","36901":"V_LV:CLH","36902":"V_LV:CLH","36903":"V_LV:CLH","36904":"V_LV:CLH","36905":"V_LV:CLH","36906":"V_LV:CLH","36907":"V_LV:CLH","36908":"V_LV:CLH","36909":"V_LV:CLH","36910":"V_LV:CLH","36911":"V_LV:CLH","36912":"V_LV:CLH","36913":"V_LV:CLH","36914":"V_LV:CLH","36915":"V_LV:CLH","36916":"V_LV:CLH","36917":"V_LV:CLH","36918":"V_LV:CLH","36919":"V_LV:CLH","36920":"V_LV:CLH","36921":"V_LV:CLH","36922":"V_LV:CLH","36923":"V_LV:CLH","36924":"V_LV:CLH","36925":"V_LV:CLH","36926":"V_LV:CLH","36927":"V_LV:CLH","36928":"V_LV:CLH","36929":"V_LV:CLH","36930":"V_LV:CLH","36931":"V_LV:CLH","36932":"V_LV:CLH","36933":"V_LV:CLH","36934":"V_LV:CLH","36935":"V_LV:CLH","36936":"V_LV:CLH","36937":"V_LV:CLH","36938":"V_LV:CLH","36939":"V_LV:CLH","36940":"V_LV:CLH","36941":"V_LV:CLH","36942":"V_LV:CLH","36943":"V_LV:CLH","36944":"V_LV:CLH","36945":"V_LV:CLH","36946":"V_LV:CLH","36947":"V_LV:CLH","36948":"V_LV:CLH","36949":"V_LV:CLH","36950":"V_LV:CLH","36951":"V_LV:CLH","36952":"V_LV:CLH","36953":"V_LV:CLH","36954":"V_LV:CLH","36955":"V_LV:CLH","36956":"V_LV:CLH","36957":"V_LV:CLH","36958":"V_LV:CLH","36959":"V_LV:CLH","36960":"V_LV:CLH","36961":"V_LV:CLH","36962":"V_LV:CLH","36963":"V_LV:CLH","36964":"V_LV:CLH","36965":"V_LV:CLH","36966":"V_LV:CLH","36967":"V_LV:CLH","36968":"V_LV:CLH","36969":"V_LV:CLH","36970":"V_LV:CLH","36971":"V_LV:CLH","36972":"V_LV:CLH","36973":"V_LV:CLH","36974":"V_LV:CLH","36975":"V_LV:CLH","36976":"V_LV:CLH","36977":"V_LV:CLH","36978":"V_LV:CLH","36979":"V_LV:CLH","36980":"V_LV:CLH","36981":"V_LV:CLH","36982":"V_LV:CLH","36983":"V_LV:CLH","36984":"V_LV:CLH","36985":"V_LV:CLH","36986":"V_LV:CLH","36987":"V_LV:CLH","36988":"V_LV:CLH","36989":"V_LV:CLH","36990":"V_LV:CLH","36991":"V_LV:CLH","36992":"V_LV:CLH","36993":"V_LV:CLH","36994":"V_LV:CLH","36995":"V_LV:CLH","36996":"V_LV:CLH","36997":"V_LV:CLH","36998":"V_LV:CLH","36999":"V_LV:CLH","37000":"Q_LV:CLH","37001":"Q_LV:CLH","37002":"Q_LV:CLH","37003":"Q_LV:CLH","37004":"Q_LV:CLH","37005":"Q_LV:CLH","37006":"Q_LV:CLH","37007":"Q_LV:CLH","37008":"Q_LV:CLH","37009":"Q_LV:CLH","37010":"Q_LV:CLH","37011":"Q_LV:CLH","37012":"Q_LV:CLH","37013":"Q_LV:CLH","37014":"Q_LV:CLH","37015":"Q_LV:CLH","37016":"Q_LV:CLH","37017":"Q_LV:CLH","37018":"Q_LV:CLH","37019":"Q_LV:CLH","37020":"Q_LV:CLH","37021":"Q_LV:CLH","37022":"Q_LV:CLH","37023":"Q_LV:CLH","37024":"Q_LV:CLH","37025":"Q_LV:CLH","37026":"Q_LV:CLH","37027":"Q_LV:CLH","37028":"Q_LV:CLH","37029":"Q_LV:CLH","37030":"Q_LV:CLH","37031":"Q_LV:CLH","37032":"Q_LV:CLH","37033":"Q_LV:CLH","37034":"Q_LV:CLH","37035":"Q_LV:CLH","37036":"Q_LV:CLH","37037":"Q_LV:CLH","37038":"Q_LV:CLH","37039":"Q_LV:CLH","37040":"Q_LV:CLH","37041":"Q_LV:CLH","37042":"Q_LV:CLH","37043":"Q_LV:CLH","37044":"Q_LV:CLH","37045":"Q_LV:CLH","37046":"Q_LV:CLH","37047":"Q_LV:CLH","37048":"Q_LV:CLH","37049":"Q_LV:CLH","37050":"Q_LV:CLH","37051":"Q_LV:CLH","37052":"Q_LV:CLH","37053":"Q_LV:CLH","37054":"Q_LV:CLH","37055":"Q_LV:CLH","37056":"Q_LV:CLH","37057":"Q_LV:CLH","37058":"Q_LV:CLH","37059":"Q_LV:CLH","37060":"Q_LV:CLH","37061":"Q_LV:CLH","37062":"Q_LV:CLH","37063":"Q_LV:CLH","37064":"Q_LV:CLH","37065":"Q_LV:CLH","37066":"Q_LV:CLH","37067":"Q_LV:CLH","37068":"Q_LV:CLH","37069":"Q_LV:CLH","37070":"Q_LV:CLH","37071":"Q_LV:CLH","37072":"Q_LV:CLH","37073":"Q_LV:CLH","37074":"Q_LV:CLH","37075":"Q_LV:CLH","37076":"Q_LV:CLH","37077":"Q_LV:CLH","37078":"Q_LV:CLH","37079":"Q_LV:CLH","37080":"Q_LV:CLH","37081":"Q_LV:CLH","37082":"Q_LV:CLH","37083":"Q_LV:CLH","37084":"Q_LV:CLH","37085":"Q_LV:CLH","37086":"Q_LV:CLH","37087":"Q_LV:CLH","37088":"Q_LV:CLH","37089":"Q_LV:CLH","37090":"Q_LV:CLH","37091":"Q_LV:CLH","37092":"Q_LV:CLH","37093":"Q_LV:CLH","37094":"Q_LV:CLH","37095":"Q_LV:CLH","37096":"Q_LV:CLH","37097":"Q_LV:CLH","37098":"Q_LV:CLH","37099":"Q_LV:CLH","37100":"Q_LV:CLH","37101":"Q_LV:CLH","37102":"Q_LV:CLH","37103":"Q_LV:CLH","37104":"Q_LV:CLH","37105":"Q_LV:CLH","37106":"Q_LV:CLH","37107":"Q_LV:CLH","37108":"Q_LV:CLH","37109":"Q_LV:CLH","37110":"Q_LV:CLH","37111":"Q_LV:CLH","37112":"Q_LV:CLH","37113":"Q_LV:CLH","37114":"Q_LV:CLH","37115":"Q_LV:CLH","37116":"Q_LV:CLH","37117":"Q_LV:CLH","37118":"Q_LV:CLH","37119":"Q_LV:CLH","37120":"Q_LV:CLH","37121":"Q_LV:CLH","37122":"Q_LV:CLH","37123":"Q_LV:CLH","37124":"Q_LV:CLH","37125":"Q_LV:CLH","37126":"Q_LV:CLH","37127":"Q_LV:CLH","37128":"Q_LV:CLH","37129":"Q_LV:CLH","37130":"Q_LV:CLH","37131":"Q_LV:CLH","37132":"Q_LV:CLH","37133":"Q_LV:CLH","37134":"Q_LV:CLH","37135":"Q_LV:CLH","37136":"Q_LV:CLH","37137":"Q_LV:CLH","37138":"Q_LV:CLH","37139":"Q_LV:CLH","37140":"Q_LV:CLH","37141":"Q_LV:CLH","37142":"Q_LV:CLH","37143":"Q_LV:CLH","37144":"Q_LV:CLH","37145":"Q_LV:CLH","37146":"Q_LV:CLH","37147":"Q_LV:CLH","37148":"Q_LV:CLH","37149":"Q_LV:CLH","37150":"Q_LV:CLH","37151":"Q_LV:CLH","37152":"Q_LV:CLH","37153":"Q_LV:CLH","37154":"Q_LV:CLH","37155":"Q_LV:CLH","37156":"Q_LV:CLH","37157":"Q_LV:CLH","37158":"Q_LV:CLH","37159":"Q_LV:CLH","37160":"Q_LV:CLH","37161":"Q_LV:CLH","37162":"Q_LV:CLH","37163":"Q_LV:CLH","37164":"Q_LV:CLH","37165":"Q_LV:CLH","37166":"Q_LV:CLH","37167":"Q_LV:CLH","37168":"Q_LV:CLH","37169":"Q_LV:CLH","37170":"Q_LV:CLH","37171":"Q_LV:CLH","37172":"Q_LV:CLH","37173":"Q_LV:CLH","37174":"Q_LV:CLH","37175":"Q_LV:CLH","37176":"Q_LV:CLH","37177":"Q_LV:CLH","37178":"Q_LV:CLH","37179":"Q_LV:CLH","37180":"Q_LV:CLH","37181":"Q_LV:CLH","37182":"Q_LV:CLH","37183":"Q_LV:CLH","37184":"Q_LV:CLH","37185":"Q_LV:CLH","37186":"Q_LV:CLH","37187":"Q_LV:CLH","37188":"Q_LV:CLH","37189":"Q_LV:CLH","37190":"Q_LV:CLH","37191":"Q_LV:CLH","37192":"Q_LV:CLH","37193":"Q_LV:CLH","37194":"Q_LV:CLH","37195":"Q_LV:CLH","37196":"Q_LV:CLH","37197":"Q_LV:CLH","37198":"Q_LV:CLH","37199":"Q_LV:CLH","37200":"Q_LV:CLH","37201":"Q_LV:CLH","37202":"Q_LV:CLH","37203":"Q_LV:CLH","37204":"Q_LV:CLH","37205":"Q_LV:CLH","37206":"Q_LV:CLH","37207":"Q_LV:CLH","37208":"Q_LV:CLH","37209":"Q_LV:CLH","37210":"Q_LV:CLH","37211":"Q_LV:CLH","37212":"Q_LV:CLH","37213":"Q_LV:CLH","37214":"Q_LV:CLH","37215":"Q_LV:CLH","37216":"Q_LV:CLH","37217":"Q_LV:CLH","37218":"Q_LV:CLH","37219":"Q_LV:CLH","37220":"Q_LV:CLH","37221":"Q_LV:CLH","37222":"Q_LV:CLH","37223":"Q_LV:CLH","37224":"Q_LV:CLH","37225":"Q_LV:CLH","37226":"Q_LV:CLH","37227":"Q_LV:CLH","37228":"Q_LV:CLH","37229":"Q_LV:CLH","37230":"Q_LV:CLH","37231":"Q_LV:CLH","37232":"Q_LV:CLH","37233":"Q_LV:CLH","37234":"Q_LV:CLH","37235":"Q_LV:CLH","37236":"Q_LV:CLH","37237":"Q_LV:CLH","37238":"Q_LV:CLH","37239":"Q_LV:CLH","37240":"Q_LV:CLH","37241":"Q_LV:CLH","37242":"Q_LV:CLH","37243":"Q_LV:CLH","37244":"Q_LV:CLH","37245":"Q_LV:CLH","37246":"Q_LV:CLH","37247":"Q_LV:CLH","37248":"Q_LV:CLH","37249":"Q_LV:CLH","37250":"Q_LV:CLH","37251":"Q_LV:CLH","37252":"Q_LV:CLH","37253":"Q_LV:CLH","37254":"Q_LV:CLH","37255":"Q_LV:CLH","37256":"Q_LV:CLH","37257":"Q_LV:CLH","37258":"Q_LV:CLH","37259":"Q_LV:CLH","37260":"Q_LV:CLH","37261":"Q_LV:CLH","37262":"Q_LV:CLH","37263":"Q_LV:CLH","37264":"Q_LV:CLH","37265":"Q_LV:CLH","37266":"Q_LV:CLH","37267":"Q_LV:CLH","37268":"Q_LV:CLH","37269":"Q_LV:CLH","37270":"Q_LV:CLH","37271":"Q_LV:CLH","37272":"Q_LV:CLH","37273":"Q_LV:CLH","37274":"Q_LV:CLH","37275":"Q_LV:CLH","37276":"Q_LV:CLH","37277":"Q_LV:CLH","37278":"Q_LV:CLH","37279":"Q_LV:CLH","37280":"Q_LV:CLH","37281":"Q_LV:CLH","37282":"Q_LV:CLH","37283":"Q_LV:CLH","37284":"Q_LV:CLH","37285":"Q_LV:CLH","37286":"Q_LV:CLH","37287":"Q_LV:CLH","37288":"Q_LV:CLH","37289":"Q_LV:CLH","37290":"Q_LV:CLH","37291":"Q_LV:CLH","37292":"Q_LV:CLH","37293":"Q_LV:CLH","37294":"Q_LV:CLH","37295":"Q_LV:CLH","37296":"Q_LV:CLH","37297":"Q_LV:CLH","37298":"Q_LV:CLH","37299":"Q_LV:CLH","37300":"Q_LV:CLH","37301":"Q_LV:CLH","37302":"Q_LV:CLH","37303":"Q_LV:CLH","37304":"Q_LV:CLH","37305":"Q_LV:CLH","37306":"Q_LV:CLH","37307":"Q_LV:CLH","37308":"Q_LV:CLH","37309":"Q_LV:CLH","37310":"Q_LV:CLH","37311":"Q_LV:CLH","37312":"Q_LV:CLH","37313":"Q_LV:CLH","37314":"Q_LV:CLH","37315":"Q_LV:CLH","37316":"Q_LV:CLH","37317":"Q_LV:CLH","37318":"Q_LV:CLH","37319":"Q_LV:CLH","37320":"Q_LV:CLH","37321":"Q_LV:CLH","37322":"Q_LV:CLH","37323":"Q_LV:CLH","37324":"Q_LV:CLH","37325":"Q_LV:CLH","37326":"Q_LV:CLH","37327":"Q_LV:CLH","37328":"Q_LV:CLH","37329":"Q_LV:CLH","37330":"Q_LV:CLH","37331":"Q_LV:CLH","37332":"Q_LV:CLH","37333":"Q_LV:CLH","37334":"Q_LV:CLH","37335":"Q_LV:CLH","37336":"Q_LV:CLH","37337":"Q_LV:CLH","37338":"Q_LV:CLH","37339":"Q_LV:CLH","37340":"Q_LV:CLH","37341":"Q_LV:CLH","37342":"Q_LV:CLH","37343":"Q_LV:CLH","37344":"Q_LV:CLH","37345":"Q_LV:CLH","37346":"Q_LV:CLH","37347":"Q_LV:CLH","37348":"Q_LV:CLH","37349":"Q_LV:CLH","37350":"Q_LV:CLH","37351":"Q_LV:CLH","37352":"Q_LV:CLH","37353":"Q_LV:CLH","37354":"Q_LV:CLH","37355":"Q_LV:CLH","37356":"Q_LV:CLH","37357":"Q_LV:CLH","37358":"Q_LV:CLH","37359":"Q_LV:CLH","37360":"Q_LV:CLH","37361":"Q_LV:CLH","37362":"Q_LV:CLH","37363":"Q_LV:CLH","37364":"Q_LV:CLH","37365":"Q_LV:CLH","37366":"Q_LV:CLH","37367":"Q_LV:CLH","37368":"Q_LV:CLH","37369":"Q_LV:CLH","37370":"Q_LV:CLH","37371":"Q_LV:CLH","37372":"Q_LV:CLH","37373":"Q_LV:CLH","37374":"Q_LV:CLH","37375":"Q_LV:CLH","37376":"Q_LV:CLH","37377":"Q_LV:CLH","37378":"Q_LV:CLH","37379":"Q_LV:CLH","37380":"Q_LV:CLH","37381":"Q_LV:CLH","37382":"Q_LV:CLH","37383":"Q_LV:CLH","37384":"Q_LV:CLH","37385":"Q_LV:CLH","37386":"Q_LV:CLH","37387":"Q_LV:CLH","37388":"Q_LV:CLH","37389":"Q_LV:CLH","37390":"Q_LV:CLH","37391":"Q_LV:CLH","37392":"Q_LV:CLH","37393":"Q_LV:CLH","37394":"Q_LV:CLH","37395":"Q_LV:CLH","37396":"Q_LV:CLH","37397":"Q_LV:CLH","37398":"Q_LV:CLH","37399":"Q_LV:CLH","37400":"Q_LV:CLH","37401":"Q_LV:CLH","37402":"Q_LV:CLH","37403":"Q_LV:CLH","37404":"Q_LV:CLH","37405":"Q_LV:CLH","37406":"Q_LV:CLH","37407":"Q_LV:CLH","37408":"Q_LV:CLH","37409":"Q_LV:CLH","37410":"Q_LV:CLH","37411":"Q_LV:CLH","37412":"Q_LV:CLH","37413":"Q_LV:CLH","37414":"Q_LV:CLH","37415":"Q_LV:CLH","37416":"Q_LV:CLH","37417":"Q_LV:CLH","37418":"Q_LV:CLH","37419":"Q_LV:CLH","37420":"Q_LV:CLH","37421":"Q_LV:CLH","37422":"Q_LV:CLH","37423":"Q_LV:CLH","37424":"Q_LV:CLH","37425":"Q_LV:CLH","37426":"Q_LV:CLH","37427":"Q_LV:CLH","37428":"Q_LV:CLH","37429":"Q_LV:CLH","37430":"Q_LV:CLH","37431":"Q_LV:CLH","37432":"Q_LV:CLH","37433":"Q_LV:CLH","37434":"Q_LV:CLH","37435":"Q_LV:CLH","37436":"Q_LV:CLH","37437":"Q_LV:CLH","37438":"Q_LV:CLH","37439":"Q_LV:CLH","37440":"Q_LV:CLH","37441":"Q_LV:CLH","37442":"Q_LV:CLH","37443":"Q_LV:CLH","37444":"Q_LV:CLH","37445":"Q_LV:CLH","37446":"Q_LV:CLH","37447":"Q_LV:CLH","37448":"Q_LV:CLH","37449":"Q_LV:CLH","37450":"Q_LV:CLH","37451":"Q_LV:CLH","37452":"Q_LV:CLH","37453":"Q_LV:CLH","37454":"Q_LV:CLH","37455":"Q_LV:CLH","37456":"Q_LV:CLH","37457":"Q_LV:CLH","37458":"Q_LV:CLH","37459":"Q_LV:CLH","37460":"Q_LV:CLH","37461":"Q_LV:CLH","37462":"Q_LV:CLH","37463":"Q_LV:CLH","37464":"Q_LV:CLH","37465":"Q_LV:CLH","37466":"Q_LV:CLH","37467":"Q_LV:CLH","37468":"Q_LV:CLH","37469":"Q_LV:CLH","37470":"Q_LV:CLH","37471":"Q_LV:CLH","37472":"Q_LV:CLH","37473":"Q_LV:CLH","37474":"Q_LV:CLH","37475":"Q_LV:CLH","37476":"Q_LV:CLH","37477":"Q_LV:CLH","37478":"Q_LV:CLH","37479":"Q_LV:CLH","37480":"Q_LV:CLH","37481":"Q_LV:CLH","37482":"Q_LV:CLH","37483":"Q_LV:CLH","37484":"Q_LV:CLH","37485":"Q_LV:CLH","37486":"Q_LV:CLH","37487":"Q_LV:CLH","37488":"Q_LV:CLH","37489":"Q_LV:CLH","37490":"Q_LV:CLH","37491":"Q_LV:CLH","37492":"Q_LV:CLH","37493":"Q_LV:CLH","37494":"Q_LV:CLH","37495":"Q_LV:CLH","37496":"Q_LV:CLH","37497":"Q_LV:CLH","37498":"Q_LV:CLH","37499":"Q_LV:CLH","37500":"Q_LV:CLH","37501":"Q_LV:CLH","37502":"Q_LV:CLH","37503":"Q_LV:CLH","37504":"Q_LV:CLH","37505":"Q_LV:CLH","37506":"Q_LV:CLH","37507":"Q_LV:CLH","37508":"Q_LV:CLH","37509":"Q_LV:CLH","37510":"Q_LV:CLH","37511":"Q_LV:CLH","37512":"Q_LV:CLH","37513":"Q_LV:CLH","37514":"Q_LV:CLH","37515":"Q_LV:CLH","37516":"Q_LV:CLH","37517":"Q_LV:CLH","37518":"Q_LV:CLH","37519":"Q_LV:CLH","37520":"Q_LV:CLH","37521":"Q_LV:CLH","37522":"Q_LV:CLH","37523":"Q_LV:CLH","37524":"Q_LV:CLH","37525":"Q_LV:CLH","37526":"Q_LV:CLH","37527":"Q_LV:CLH","37528":"Q_LV:CLH","37529":"Q_LV:CLH","37530":"Q_LV:CLH","37531":"Q_LV:CLH","37532":"Q_LV:CLH","37533":"Q_LV:CLH","37534":"Q_LV:CLH","37535":"Q_LV:CLH","37536":"Q_LV:CLH","37537":"Q_LV:CLH","37538":"Q_LV:CLH","37539":"Q_LV:CLH","37540":"Q_LV:CLH","37541":"Q_LV:CLH","37542":"Q_LV:CLH","37543":"Q_LV:CLH","37544":"Q_LV:CLH","37545":"Q_LV:CLH","37546":"Q_LV:CLH","37547":"Q_LV:CLH","37548":"Q_LV:CLH","37549":"Q_LV:CLH","37550":"Q_LV:CLH","37551":"Q_LV:CLH","37552":"Q_LV:CLH","37553":"Q_LV:CLH","37554":"Q_LV:CLH","37555":"Q_LV:CLH","37556":"Q_LV:CLH","37557":"Q_LV:CLH","37558":"Q_LV:CLH","37559":"Q_LV:CLH","37560":"Q_LV:CLH","37561":"Q_LV:CLH","37562":"Q_LV:CLH","37563":"Q_LV:CLH","37564":"Q_LV:CLH","37565":"Q_LV:CLH","37566":"Q_LV:CLH","37567":"Q_LV:CLH","37568":"Q_LV:CLH","37569":"Q_LV:CLH","37570":"Q_LV:CLH","37571":"Q_LV:CLH","37572":"Q_LV:CLH","37573":"Q_LV:CLH","37574":"Q_LV:CLH","37575":"Q_LV:CLH","37576":"Q_LV:CLH","37577":"Q_LV:CLH","37578":"Q_LV:CLH","37579":"Q_LV:CLH","37580":"Q_LV:CLH","37581":"Q_LV:CLH","37582":"Q_LV:CLH","37583":"Q_LV:CLH","37584":"Q_LV:CLH","37585":"Q_LV:CLH","37586":"Q_LV:CLH","37587":"Q_LV:CLH","37588":"Q_LV:CLH","37589":"Q_LV:CLH","37590":"Q_LV:CLH","37591":"Q_LV:CLH","37592":"Q_LV:CLH","37593":"Q_LV:CLH","37594":"Q_LV:CLH","37595":"Q_LV:CLH","37596":"Q_LV:CLH","37597":"Q_LV:CLH","37598":"Q_LV:CLH","37599":"Q_LV:CLH","37600":"Q_LV:CLH","37601":"Q_LV:CLH","37602":"Q_LV:CLH","37603":"Q_LV:CLH","37604":"Q_LV:CLH","37605":"Q_LV:CLH","37606":"Q_LV:CLH","37607":"Q_LV:CLH","37608":"Q_LV:CLH","37609":"Q_LV:CLH","37610":"Q_LV:CLH","37611":"Q_LV:CLH","37612":"Q_LV:CLH","37613":"Q_LV:CLH","37614":"Q_LV:CLH","37615":"Q_LV:CLH","37616":"Q_LV:CLH","37617":"Q_LV:CLH","37618":"Q_LV:CLH","37619":"Q_LV:CLH","37620":"Q_LV:CLH","37621":"Q_LV:CLH","37622":"Q_LV:CLH","37623":"Q_LV:CLH","37624":"Q_LV:CLH","37625":"Q_LV:CLH","37626":"Q_LV:CLH","37627":"Q_LV:CLH","37628":"Q_LV:CLH","37629":"Q_LV:CLH","37630":"Q_LV:CLH","37631":"Q_LV:CLH","37632":"Q_LV:CLH","37633":"Q_LV:CLH","37634":"Q_LV:CLH","37635":"Q_LV:CLH","37636":"Q_LV:CLH","37637":"Q_LV:CLH","37638":"Q_LV:CLH","37639":"Q_LV:CLH","37640":"Q_LV:CLH","37641":"Q_LV:CLH","37642":"Q_LV:CLH","37643":"Q_LV:CLH","37644":"Q_LV:CLH","37645":"Q_LV:CLH","37646":"Q_LV:CLH","37647":"Q_LV:CLH","37648":"Q_LV:CLH","37649":"Q_LV:CLH","37650":"Q_LV:CLH","37651":"Q_LV:CLH","37652":"Q_LV:CLH","37653":"Q_LV:CLH","37654":"Q_LV:CLH","37655":"Q_LV:CLH","37656":"Q_LV:CLH","37657":"Q_LV:CLH","37658":"Q_LV:CLH","37659":"Q_LV:CLH","37660":"Q_LV:CLH","37661":"Q_LV:CLH","37662":"Q_LV:CLH","37663":"Q_LV:CLH","37664":"Q_LV:CLH","37665":"Q_LV:CLH","37666":"Q_LV:CLH","37667":"Q_LV:CLH","37668":"Q_LV:CLH","37669":"Q_LV:CLH","37670":"Q_LV:CLH","37671":"Q_LV:CLH","37672":"Q_LV:CLH","37673":"Q_LV:CLH","37674":"Q_LV:CLH","37675":"Q_LV:CLH","37676":"Q_LV:CLH","37677":"Q_LV:CLH","37678":"Q_LV:CLH","37679":"Q_LV:CLH","37680":"Q_LV:CLH","37681":"Q_LV:CLH","37682":"Q_LV:CLH","37683":"Q_LV:CLH","37684":"Q_LV:CLH","37685":"Q_LV:CLH","37686":"Q_LV:CLH","37687":"Q_LV:CLH","37688":"Q_LV:CLH","37689":"Q_LV:CLH","37690":"Q_LV:CLH","37691":"Q_LV:CLH","37692":"Q_LV:CLH","37693":"Q_LV:CLH","37694":"Q_LV:CLH","37695":"Q_LV:CLH","37696":"Q_LV:CLH","37697":"Q_LV:CLH","37698":"Q_LV:CLH","37699":"Q_LV:CLH","37700":"Q_LV:CLH","37701":"Q_LV:CLH","37702":"Q_LV:CLH","37703":"Q_LV:CLH","37704":"Q_LV:CLH","37705":"Q_LV:CLH","37706":"Q_LV:CLH","37707":"Q_LV:CLH","37708":"Q_LV:CLH","37709":"Q_LV:CLH","37710":"Q_LV:CLH","37711":"Q_LV:CLH","37712":"Q_LV:CLH","37713":"Q_LV:CLH","37714":"Q_LV:CLH","37715":"Q_LV:CLH","37716":"Q_LV:CLH","37717":"Q_LV:CLH","37718":"Q_LV:CLH","37719":"Q_LV:CLH","37720":"Q_LV:CLH","37721":"Q_LV:CLH","37722":"Q_LV:CLH","37723":"Q_LV:CLH","37724":"Q_LV:CLH","37725":"Q_LV:CLH","37726":"Q_LV:CLH","37727":"Q_LV:CLH","37728":"Q_LV:CLH","37729":"Q_LV:CLH","37730":"Q_LV:CLH","37731":"Q_LV:CLH","37732":"Q_LV:CLH","37733":"Q_LV:CLH","37734":"Q_LV:CLH","37735":"Q_LV:CLH","37736":"Q_LV:CLH","37737":"Q_LV:CLH","37738":"Q_LV:CLH","37739":"Q_LV:CLH","37740":"Q_LV:CLH","37741":"Q_LV:CLH","37742":"Q_LV:CLH","37743":"Q_LV:CLH","37744":"Q_LV:CLH","37745":"Q_LV:CLH","37746":"Q_LV:CLH","37747":"Q_LV:CLH","37748":"Q_LV:CLH","37749":"Q_LV:CLH","37750":"Q_LV:CLH","37751":"Q_LV:CLH","37752":"Q_LV:CLH","37753":"Q_LV:CLH","37754":"Q_LV:CLH","37755":"Q_LV:CLH","37756":"Q_LV:CLH","37757":"Q_LV:CLH","37758":"Q_LV:CLH","37759":"Q_LV:CLH","37760":"Q_LV:CLH","37761":"Q_LV:CLH","37762":"Q_LV:CLH","37763":"Q_LV:CLH","37764":"Q_LV:CLH","37765":"Q_LV:CLH","37766":"Q_LV:CLH","37767":"Q_LV:CLH","37768":"Q_LV:CLH","37769":"Q_LV:CLH","37770":"Q_LV:CLH","37771":"Q_LV:CLH","37772":"Q_LV:CLH","37773":"Q_LV:CLH","37774":"Q_LV:CLH","37775":"Q_LV:CLH","37776":"Q_LV:CLH","37777":"Q_LV:CLH","37778":"Q_LV:CLH","37779":"Q_LV:CLH","37780":"Q_LV:CLH","37781":"Q_LV:CLH","37782":"Q_LV:CLH","37783":"Q_LV:CLH","37784":"Q_LV:CLH","37785":"Q_LV:CLH","37786":"Q_LV:CLH","37787":"Q_LV:CLH","37788":"Q_LV:CLH","37789":"Q_LV:CLH","37790":"Q_LV:CLH","37791":"Q_LV:CLH","37792":"Q_LV:CLH","37793":"Q_LV:CLH","37794":"Q_LV:CLH","37795":"Q_LV:CLH","37796":"Q_LV:CLH","37797":"Q_LV:CLH","37798":"Q_LV:CLH","37799":"Q_LV:CLH","37800":"Q_LV:CLH","37801":"Q_LV:CLH","37802":"Q_LV:CLH","37803":"Q_LV:CLH","37804":"Q_LV:CLH","37805":"Q_LV:CLH","37806":"Q_LV:CLH","37807":"Q_LV:CLH","37808":"Q_LV:CLH","37809":"Q_LV:CLH","37810":"Q_LV:CLH","37811":"Q_LV:CLH","37812":"Q_LV:CLH","37813":"Q_LV:CLH","37814":"Q_LV:CLH","37815":"Q_LV:CLH","37816":"Q_LV:CLH","37817":"Q_LV:CLH","37818":"Q_LV:CLH","37819":"Q_LV:CLH","37820":"Q_LV:CLH","37821":"Q_LV:CLH","37822":"Q_LV:CLH","37823":"Q_LV:CLH","37824":"Q_LV:CLH","37825":"Q_LV:CLH","37826":"Q_LV:CLH","37827":"Q_LV:CLH","37828":"Q_LV:CLH","37829":"Q_LV:CLH","37830":"Q_LV:CLH","37831":"Q_LV:CLH","37832":"Q_LV:CLH","37833":"Q_LV:CLH","37834":"Q_LV:CLH","37835":"Q_LV:CLH","37836":"Q_LV:CLH","37837":"Q_LV:CLH","37838":"Q_LV:CLH","37839":"Q_LV:CLH","37840":"Q_LV:CLH","37841":"Q_LV:CLH","37842":"Q_LV:CLH","37843":"Q_LV:CLH","37844":"Q_LV:CLH","37845":"Q_LV:CLH","37846":"Q_LV:CLH","37847":"Q_LV:CLH","37848":"Q_LV:CLH","37849":"Q_LV:CLH","37850":"Q_LV:CLH","37851":"Q_LV:CLH","37852":"Q_LV:CLH","37853":"Q_LV:CLH","37854":"Q_LV:CLH","37855":"Q_LV:CLH","37856":"Q_LV:CLH","37857":"Q_LV:CLH","37858":"Q_LV:CLH","37859":"Q_LV:CLH","37860":"Q_LV:CLH","37861":"Q_LV:CLH","37862":"Q_LV:CLH","37863":"Q_LV:CLH","37864":"Q_LV:CLH","37865":"Q_LV:CLH","37866":"Q_LV:CLH","37867":"Q_LV:CLH","37868":"Q_LV:CLH","37869":"Q_LV:CLH","37870":"Q_LV:CLH","37871":"Q_LV:CLH","37872":"Q_LV:CLH","37873":"Q_LV:CLH","37874":"Q_LV:CLH","37875":"Q_LV:CLH","37876":"Q_LV:CLH","37877":"Q_LV:CLH","37878":"Q_LV:CLH","37879":"Q_LV:CLH","37880":"Q_LV:CLH","37881":"Q_LV:CLH","37882":"Q_LV:CLH","37883":"Q_LV:CLH","37884":"Q_LV:CLH","37885":"Q_LV:CLH","37886":"Q_LV:CLH","37887":"Q_LV:CLH","37888":"Q_LV:CLH","37889":"Q_LV:CLH","37890":"Q_LV:CLH","37891":"Q_LV:CLH","37892":"Q_LV:CLH","37893":"Q_LV:CLH","37894":"Q_LV:CLH","37895":"Q_LV:CLH","37896":"Q_LV:CLH","37897":"Q_LV:CLH","37898":"Q_LV:CLH","37899":"Q_LV:CLH","37900":"Q_LV:CLH","37901":"Q_LV:CLH","37902":"Q_LV:CLH","37903":"Q_LV:CLH","37904":"Q_LV:CLH","37905":"Q_LV:CLH","37906":"Q_LV:CLH","37907":"Q_LV:CLH","37908":"Q_LV:CLH","37909":"Q_LV:CLH","37910":"Q_LV:CLH","37911":"Q_LV:CLH","37912":"Q_LV:CLH","37913":"Q_LV:CLH","37914":"Q_LV:CLH","37915":"Q_LV:CLH","37916":"Q_LV:CLH","37917":"Q_LV:CLH","37918":"Q_LV:CLH","37919":"Q_LV:CLH","37920":"Q_LV:CLH","37921":"Q_LV:CLH","37922":"Q_LV:CLH","37923":"Q_LV:CLH","37924":"Q_LV:CLH","37925":"Q_LV:CLH","37926":"Q_LV:CLH","37927":"Q_LV:CLH","37928":"Q_LV:CLH","37929":"Q_LV:CLH","37930":"Q_LV:CLH","37931":"Q_LV:CLH","37932":"Q_LV:CLH","37933":"Q_LV:CLH","37934":"Q_LV:CLH","37935":"Q_LV:CLH","37936":"Q_LV:CLH","37937":"Q_LV:CLH","37938":"Q_LV:CLH","37939":"Q_LV:CLH","37940":"Q_LV:CLH","37941":"Q_LV:CLH","37942":"Q_LV:CLH","37943":"Q_LV:CLH","37944":"Q_LV:CLH","37945":"Q_LV:CLH","37946":"Q_LV:CLH","37947":"Q_LV:CLH","37948":"Q_LV:CLH","37949":"Q_LV:CLH","37950":"Q_LV:CLH","37951":"Q_LV:CLH","37952":"Q_LV:CLH","37953":"Q_LV:CLH","37954":"Q_LV:CLH","37955":"Q_LV:CLH","37956":"Q_LV:CLH","37957":"Q_LV:CLH","37958":"Q_LV:CLH","37959":"Q_LV:CLH","37960":"Q_LV:CLH","37961":"Q_LV:CLH","37962":"Q_LV:CLH","37963":"Q_LV:CLH","37964":"Q_LV:CLH","37965":"Q_LV:CLH","37966":"Q_LV:CLH","37967":"Q_LV:CLH","37968":"Q_LV:CLH","37969":"Q_LV:CLH","37970":"Q_LV:CLH","37971":"Q_LV:CLH","37972":"Q_LV:CLH","37973":"Q_LV:CLH","37974":"Q_LV:CLH","37975":"Q_LV:CLH","37976":"Q_LV:CLH","37977":"Q_LV:CLH","37978":"Q_LV:CLH","37979":"Q_LV:CLH","37980":"Q_LV:CLH","37981":"Q_LV:CLH","37982":"Q_LV:CLH","37983":"Q_LV:CLH","37984":"Q_LV:CLH","37985":"Q_LV:CLH","37986":"Q_LV:CLH","37987":"Q_LV:CLH","37988":"Q_LV:CLH","37989":"Q_LV:CLH","37990":"Q_LV:CLH","37991":"Q_LV:CLH","37992":"Q_LV:CLH","37993":"Q_LV:CLH","37994":"Q_LV:CLH","37995":"Q_LV:CLH","37996":"Q_LV:CLH","37997":"Q_LV:CLH","37998":"Q_LV:CLH","37999":"Q_LV:CLH"},"time":{"0":0.0,"1":0.000990991,"2":0.001981982,"3":0.002972973,"4":0.003963964,"5":0.004954955,"6":0.0059459459,"7":0.0069369369,"8":0.0079279279,"9":0.0089189189,"10":0.0099099099,"11":0.0109009009,"12":0.0118918919,"13":0.0128828829,"14":0.0138738739,"15":0.0148648649,"16":0.0158558559,"17":0.0168468468,"18":0.0178378378,"19":0.0188288288,"20":0.0198198198,"21":0.0208108108,"22":0.0218018018,"23":0.0227927928,"24":0.0237837838,"25":0.0247747748,"26":0.0257657658,"27":0.0267567568,"28":0.0277477477,"29":0.0287387387,"30":0.0297297297,"31":0.0307207207,"32":0.0317117117,"33":0.0327027027,"34":0.0336936937,"35":0.0346846847,"36":0.0356756757,"37":0.0366666667,"38":0.0376576577,"39":0.0386486486,"40":0.0396396396,"41":0.0406306306,"42":0.0416216216,"43":0.0426126126,"44":0.0436036036,"45":0.0445945946,"46":0.0455855856,"47":0.0465765766,"48":0.0475675676,"49":0.0485585586,"50":0.0495495495,"51":0.0505405405,"52":0.0515315315,"53":0.0525225225,"54":0.0535135135,"55":0.0545045045,"56":0.0554954955,"57":0.0564864865,"58":0.0574774775,"59":0.0584684685,"60":0.0594594595,"61":0.0604504505,"62":0.0614414414,"63":0.0624324324,"64":0.0634234234,"65":0.0644144144,"66":0.0654054054,"67":0.0663963964,"68":0.0673873874,"69":0.0683783784,"70":0.0693693694,"71":0.0703603604,"72":0.0713513514,"73":0.0723423423,"74":0.0733333333,"75":0.0743243243,"76":0.0753153153,"77":0.0763063063,"78":0.0772972973,"79":0.0782882883,"80":0.0792792793,"81":0.0802702703,"82":0.0812612613,"83":0.0822522523,"84":0.0832432432,"85":0.0842342342,"86":0.0852252252,"87":0.0862162162,"88":0.0872072072,"89":0.0881981982,"90":0.0891891892,"91":0.0901801802,"92":0.0911711712,"93":0.0921621622,"94":0.0931531532,"95":0.0941441441,"96":0.0951351351,"97":0.0961261261,"98":0.0971171171,"99":0.0981081081,"100":0.0990990991,"101":0.1000900901,"102":0.1010810811,"103":0.1020720721,"104":0.1030630631,"105":0.1040540541,"106":0.105045045,"107":0.106036036,"108":0.107027027,"109":0.108018018,"110":0.109009009,"111":0.11,"112":0.110990991,"113":0.111981982,"114":0.112972973,"115":0.113963964,"116":0.114954955,"117":0.1159459459,"118":0.1169369369,"119":0.1179279279,"120":0.1189189189,"121":0.1199099099,"122":0.1209009009,"123":0.1218918919,"124":0.1228828829,"125":0.1238738739,"126":0.1248648649,"127":0.1258558559,"128":0.1268468468,"129":0.1278378378,"130":0.1288288288,"131":0.1298198198,"132":0.1308108108,"133":0.1318018018,"134":0.1327927928,"135":0.1337837838,"136":0.1347747748,"137":0.1357657658,"138":0.1367567568,"139":0.1377477477,"140":0.1387387387,"141":0.1397297297,"142":0.1407207207,"143":0.1417117117,"144":0.1427027027,"145":0.1436936937,"146":0.1446846847,"147":0.1456756757,"148":0.1466666667,"149":0.1476576577,"150":0.1486486486,"151":0.1496396396,"152":0.1506306306,"153":0.1516216216,"154":0.1526126126,"155":0.1536036036,"156":0.1545945946,"157":0.1555855856,"158":0.1565765766,"159":0.1575675676,"160":0.1585585586,"161":0.1595495495,"162":0.1605405405,"163":0.1615315315,"164":0.1625225225,"165":0.1635135135,"166":0.1645045045,"167":0.1654954955,"168":0.1664864865,"169":0.1674774775,"170":0.1684684685,"171":0.1694594595,"172":0.1704504505,"173":0.1714414414,"174":0.1724324324,"175":0.1734234234,"176":0.1744144144,"177":0.1754054054,"178":0.1763963964,"179":0.1773873874,"180":0.1783783784,"181":0.1793693694,"182":0.1803603604,"183":0.1813513514,"184":0.1823423423,"185":0.1833333333,"186":0.1843243243,"187":0.1853153153,"188":0.1863063063,"189":0.1872972973,"190":0.1882882883,"191":0.1892792793,"192":0.1902702703,"193":0.1912612613,"194":0.1922522523,"195":0.1932432432,"196":0.1942342342,"197":0.1952252252,"198":0.1962162162,"199":0.1972072072,"200":0.1981981982,"201":0.1991891892,"202":0.2001801802,"203":0.2011711712,"204":0.2021621622,"205":0.2031531532,"206":0.2041441441,"207":0.2051351351,"208":0.2061261261,"209":0.2071171171,"210":0.2081081081,"211":0.2090990991,"212":0.2100900901,"213":0.2110810811,"214":0.2120720721,"215":0.2130630631,"216":0.2140540541,"217":0.215045045,"218":0.216036036,"219":0.217027027,"220":0.218018018,"221":0.219009009,"222":0.22,"223":0.220990991,"224":0.221981982,"225":0.222972973,"226":0.223963964,"227":0.224954955,"228":0.2259459459,"229":0.2269369369,"230":0.2279279279,"231":0.2289189189,"232":0.2299099099,"233":0.2309009009,"234":0.2318918919,"235":0.2328828829,"236":0.2338738739,"237":0.2348648649,"238":0.2358558559,"239":0.2368468468,"240":0.2378378378,"241":0.2388288288,"242":0.2398198198,"243":0.2408108108,"244":0.2418018018,"245":0.2427927928,"246":0.2437837838,"247":0.2447747748,"248":0.2457657658,"249":0.2467567568,"250":0.2477477477,"251":0.2487387387,"252":0.2497297297,"253":0.2507207207,"254":0.2517117117,"255":0.2527027027,"256":0.2536936937,"257":0.2546846847,"258":0.2556756757,"259":0.2566666667,"260":0.2576576577,"261":0.2586486486,"262":0.2596396396,"263":0.2606306306,"264":0.2616216216,"265":0.2626126126,"266":0.2636036036,"267":0.2645945946,"268":0.2655855856,"269":0.2665765766,"270":0.2675675676,"271":0.2685585586,"272":0.2695495495,"273":0.2705405405,"274":0.2715315315,"275":0.2725225225,"276":0.2735135135,"277":0.2745045045,"278":0.2754954955,"279":0.2764864865,"280":0.2774774775,"281":0.2784684685,"282":0.2794594595,"283":0.2804504505,"284":0.2814414414,"285":0.2824324324,"286":0.2834234234,"287":0.2844144144,"288":0.2854054054,"289":0.2863963964,"290":0.2873873874,"291":0.2883783784,"292":0.2893693694,"293":0.2903603604,"294":0.2913513514,"295":0.2923423423,"296":0.2933333333,"297":0.2943243243,"298":0.2953153153,"299":0.2963063063,"300":0.2972972973,"301":0.2982882883,"302":0.2992792793,"303":0.3002702703,"304":0.3012612613,"305":0.3022522523,"306":0.3032432432,"307":0.3042342342,"308":0.3052252252,"309":0.3062162162,"310":0.3072072072,"311":0.3081981982,"312":0.3091891892,"313":0.3101801802,"314":0.3111711712,"315":0.3121621622,"316":0.3131531532,"317":0.3141441441,"318":0.3151351351,"319":0.3161261261,"320":0.3171171171,"321":0.3181081081,"322":0.3190990991,"323":0.3200900901,"324":0.3210810811,"325":0.3220720721,"326":0.3230630631,"327":0.3240540541,"328":0.325045045,"329":0.326036036,"330":0.327027027,"331":0.328018018,"332":0.329009009,"333":0.33,"334":0.330990991,"335":0.331981982,"336":0.332972973,"337":0.333963964,"338":0.334954955,"339":0.3359459459,"340":0.3369369369,"341":0.3379279279,"342":0.3389189189,"343":0.3399099099,"344":0.3409009009,"345":0.3418918919,"346":0.3428828829,"347":0.3438738739,"348":0.3448648649,"349":0.3458558559,"350":0.3468468468,"351":0.3478378378,"352":0.3488288288,"353":0.3498198198,"354":0.3508108108,"355":0.3518018018,"356":0.3527927928,"357":0.3537837838,"358":0.3547747748,"359":0.3557657658,"360":0.3567567568,"361":0.3577477477,"362":0.3587387387,"363":0.3597297297,"364":0.3607207207,"365":0.3617117117,"366":0.3627027027,"367":0.3636936937,"368":0.3646846847,"369":0.3656756757,"370":0.3666666667,"371":0.3676576577,"372":0.3686486486,"373":0.3696396396,"374":0.3706306306,"375":0.3716216216,"376":0.3726126126,"377":0.3736036036,"378":0.3745945946,"379":0.3755855856,"380":0.3765765766,"381":0.3775675676,"382":0.3785585586,"383":0.3795495495,"384":0.3805405405,"385":0.3815315315,"386":0.3825225225,"387":0.3835135135,"388":0.3845045045,"389":0.3854954955,"390":0.3864864865,"391":0.3874774775,"392":0.3884684685,"393":0.3894594595,"394":0.3904504505,"395":0.3914414414,"396":0.3924324324,"397":0.3934234234,"398":0.3944144144,"399":0.3954054054,"400":0.3963963964,"401":0.3973873874,"402":0.3983783784,"403":0.3993693694,"404":0.4003603604,"405":0.4013513514,"406":0.4023423423,"407":0.4033333333,"408":0.4043243243,"409":0.4053153153,"410":0.4063063063,"411":0.4072972973,"412":0.4082882883,"413":0.4092792793,"414":0.4102702703,"415":0.4112612613,"416":0.4122522523,"417":0.4132432432,"418":0.4142342342,"419":0.4152252252,"420":0.4162162162,"421":0.4172072072,"422":0.4181981982,"423":0.4191891892,"424":0.4201801802,"425":0.4211711712,"426":0.4221621622,"427":0.4231531532,"428":0.4241441441,"429":0.4251351351,"430":0.4261261261,"431":0.4271171171,"432":0.4281081081,"433":0.4290990991,"434":0.4300900901,"435":0.4310810811,"436":0.4320720721,"437":0.4330630631,"438":0.4340540541,"439":0.435045045,"440":0.436036036,"441":0.437027027,"442":0.438018018,"443":0.439009009,"444":0.44,"445":0.440990991,"446":0.441981982,"447":0.442972973,"448":0.443963964,"449":0.444954955,"450":0.4459459459,"451":0.4469369369,"452":0.4479279279,"453":0.4489189189,"454":0.4499099099,"455":0.4509009009,"456":0.4518918919,"457":0.4528828829,"458":0.4538738739,"459":0.4548648649,"460":0.4558558559,"461":0.4568468468,"462":0.4578378378,"463":0.4588288288,"464":0.4598198198,"465":0.4608108108,"466":0.4618018018,"467":0.4627927928,"468":0.4637837838,"469":0.4647747748,"470":0.4657657658,"471":0.4667567568,"472":0.4677477477,"473":0.4687387387,"474":0.4697297297,"475":0.4707207207,"476":0.4717117117,"477":0.4727027027,"478":0.4736936937,"479":0.4746846847,"480":0.4756756757,"481":0.4766666667,"482":0.4776576577,"483":0.4786486486,"484":0.4796396396,"485":0.4806306306,"486":0.4816216216,"487":0.4826126126,"488":0.4836036036,"489":0.4845945946,"490":0.4855855856,"491":0.4865765766,"492":0.4875675676,"493":0.4885585586,"494":0.4895495495,"495":0.4905405405,"496":0.4915315315,"497":0.4925225225,"498":0.4935135135,"499":0.4945045045,"500":0.4954954955,"501":0.4964864865,"502":0.4974774775,"503":0.4984684685,"504":0.4994594595,"505":0.5004504505,"506":0.5014414414,"507":0.5024324324,"508":0.5034234234,"509":0.5044144144,"510":0.5054054054,"511":0.5063963964,"512":0.5073873874,"513":0.5083783784,"514":0.5093693694,"515":0.5103603604,"516":0.5113513514,"517":0.5123423423,"518":0.5133333333,"519":0.5143243243,"520":0.5153153153,"521":0.5163063063,"522":0.5172972973,"523":0.5182882883,"524":0.5192792793,"525":0.5202702703,"526":0.5212612613,"527":0.5222522523,"528":0.5232432432,"529":0.5242342342,"530":0.5252252252,"531":0.5262162162,"532":0.5272072072,"533":0.5281981982,"534":0.5291891892,"535":0.5301801802,"536":0.5311711712,"537":0.5321621622,"538":0.5331531532,"539":0.5341441441,"540":0.5351351351,"541":0.5361261261,"542":0.5371171171,"543":0.5381081081,"544":0.5390990991,"545":0.5400900901,"546":0.5410810811,"547":0.5420720721,"548":0.5430630631,"549":0.5440540541,"550":0.545045045,"551":0.546036036,"552":0.547027027,"553":0.548018018,"554":0.549009009,"555":0.55,"556":0.550990991,"557":0.551981982,"558":0.552972973,"559":0.553963964,"560":0.554954955,"561":0.5559459459,"562":0.5569369369,"563":0.5579279279,"564":0.5589189189,"565":0.5599099099,"566":0.5609009009,"567":0.5618918919,"568":0.5628828829,"569":0.5638738739,"570":0.5648648649,"571":0.5658558559,"572":0.5668468468,"573":0.5678378378,"574":0.5688288288,"575":0.5698198198,"576":0.5708108108,"577":0.5718018018,"578":0.5727927928,"579":0.5737837838,"580":0.5747747748,"581":0.5757657658,"582":0.5767567568,"583":0.5777477477,"584":0.5787387387,"585":0.5797297297,"586":0.5807207207,"587":0.5817117117,"588":0.5827027027,"589":0.5836936937,"590":0.5846846847,"591":0.5856756757,"592":0.5866666667,"593":0.5876576577,"594":0.5886486486,"595":0.5896396396,"596":0.5906306306,"597":0.5916216216,"598":0.5926126126,"599":0.5936036036,"600":0.5945945946,"601":0.5955855856,"602":0.5965765766,"603":0.5975675676,"604":0.5985585586,"605":0.5995495495,"606":0.6005405405,"607":0.6015315315,"608":0.6025225225,"609":0.6035135135,"610":0.6045045045,"611":0.6054954955,"612":0.6064864865,"613":0.6074774775,"614":0.6084684685,"615":0.6094594595,"616":0.6104504505,"617":0.6114414414,"618":0.6124324324,"619":0.6134234234,"620":0.6144144144,"621":0.6154054054,"622":0.6163963964,"623":0.6173873874,"624":0.6183783784,"625":0.6193693694,"626":0.6203603604,"627":0.6213513514,"628":0.6223423423,"629":0.6233333333,"630":0.6243243243,"631":0.6253153153,"632":0.6263063063,"633":0.6272972973,"634":0.6282882883,"635":0.6292792793,"636":0.6302702703,"637":0.6312612613,"638":0.6322522523,"639":0.6332432432,"640":0.6342342342,"641":0.6352252252,"642":0.6362162162,"643":0.6372072072,"644":0.6381981982,"645":0.6391891892,"646":0.6401801802,"647":0.6411711712,"648":0.6421621622,"649":0.6431531532,"650":0.6441441441,"651":0.6451351351,"652":0.6461261261,"653":0.6471171171,"654":0.6481081081,"655":0.6490990991,"656":0.6500900901,"657":0.6510810811,"658":0.6520720721,"659":0.6530630631,"660":0.6540540541,"661":0.655045045,"662":0.656036036,"663":0.657027027,"664":0.658018018,"665":0.659009009,"666":0.66,"667":0.660990991,"668":0.661981982,"669":0.662972973,"670":0.663963964,"671":0.664954955,"672":0.6659459459,"673":0.6669369369,"674":0.6679279279,"675":0.6689189189,"676":0.6699099099,"677":0.6709009009,"678":0.6718918919,"679":0.6728828829,"680":0.6738738739,"681":0.6748648649,"682":0.6758558559,"683":0.6768468468,"684":0.6778378378,"685":0.6788288288,"686":0.6798198198,"687":0.6808108108,"688":0.6818018018,"689":0.6827927928,"690":0.6837837838,"691":0.6847747748,"692":0.6857657658,"693":0.6867567568,"694":0.6877477477,"695":0.6887387387,"696":0.6897297297,"697":0.6907207207,"698":0.6917117117,"699":0.6927027027,"700":0.6936936937,"701":0.6946846847,"702":0.6956756757,"703":0.6966666667,"704":0.6976576577,"705":0.6986486486,"706":0.6996396396,"707":0.7006306306,"708":0.7016216216,"709":0.7026126126,"710":0.7036036036,"711":0.7045945946,"712":0.7055855856,"713":0.7065765766,"714":0.7075675676,"715":0.7085585586,"716":0.7095495495,"717":0.7105405405,"718":0.7115315315,"719":0.7125225225,"720":0.7135135135,"721":0.7145045045,"722":0.7154954955,"723":0.7164864865,"724":0.7174774775,"725":0.7184684685,"726":0.7194594595,"727":0.7204504505,"728":0.7214414414,"729":0.7224324324,"730":0.7234234234,"731":0.7244144144,"732":0.7254054054,"733":0.7263963964,"734":0.7273873874,"735":0.7283783784,"736":0.7293693694,"737":0.7303603604,"738":0.7313513514,"739":0.7323423423,"740":0.7333333333,"741":0.7343243243,"742":0.7353153153,"743":0.7363063063,"744":0.7372972973,"745":0.7382882883,"746":0.7392792793,"747":0.7402702703,"748":0.7412612613,"749":0.7422522523,"750":0.7432432432,"751":0.7442342342,"752":0.7452252252,"753":0.7462162162,"754":0.7472072072,"755":0.7481981982,"756":0.7491891892,"757":0.7501801802,"758":0.7511711712,"759":0.7521621622,"760":0.7531531532,"761":0.7541441441,"762":0.7551351351,"763":0.7561261261,"764":0.7571171171,"765":0.7581081081,"766":0.7590990991,"767":0.7600900901,"768":0.7610810811,"769":0.7620720721,"770":0.7630630631,"771":0.7640540541,"772":0.765045045,"773":0.766036036,"774":0.767027027,"775":0.768018018,"776":0.769009009,"777":0.77,"778":0.770990991,"779":0.771981982,"780":0.772972973,"781":0.773963964,"782":0.774954955,"783":0.7759459459,"784":0.7769369369,"785":0.7779279279,"786":0.7789189189,"787":0.7799099099,"788":0.7809009009,"789":0.7818918919,"790":0.7828828829,"791":0.7838738739,"792":0.7848648649,"793":0.7858558559,"794":0.7868468468,"795":0.7878378378,"796":0.7888288288,"797":0.7898198198,"798":0.7908108108,"799":0.7918018018,"800":0.7927927928,"801":0.7937837838,"802":0.7947747748,"803":0.7957657658,"804":0.7967567568,"805":0.7977477477,"806":0.7987387387,"807":0.7997297297,"808":0.8007207207,"809":0.8017117117,"810":0.8027027027,"811":0.8036936937,"812":0.8046846847,"813":0.8056756757,"814":0.8066666667,"815":0.8076576577,"816":0.8086486486,"817":0.8096396396,"818":0.8106306306,"819":0.8116216216,"820":0.8126126126,"821":0.8136036036,"822":0.8145945946,"823":0.8155855856,"824":0.8165765766,"825":0.8175675676,"826":0.8185585586,"827":0.8195495495,"828":0.8205405405,"829":0.8215315315,"830":0.8225225225,"831":0.8235135135,"832":0.8245045045,"833":0.8254954955,"834":0.8264864865,"835":0.8274774775,"836":0.8284684685,"837":0.8294594595,"838":0.8304504505,"839":0.8314414414,"840":0.8324324324,"841":0.8334234234,"842":0.8344144144,"843":0.8354054054,"844":0.8363963964,"845":0.8373873874,"846":0.8383783784,"847":0.8393693694,"848":0.8403603604,"849":0.8413513514,"850":0.8423423423,"851":0.8433333333,"852":0.8443243243,"853":0.8453153153,"854":0.8463063063,"855":0.8472972973,"856":0.8482882883,"857":0.8492792793,"858":0.8502702703,"859":0.8512612613,"860":0.8522522523,"861":0.8532432432,"862":0.8542342342,"863":0.8552252252,"864":0.8562162162,"865":0.8572072072,"866":0.8581981982,"867":0.8591891892,"868":0.8601801802,"869":0.8611711712,"870":0.8621621622,"871":0.8631531532,"872":0.8641441441,"873":0.8651351351,"874":0.8661261261,"875":0.8671171171,"876":0.8681081081,"877":0.8690990991,"878":0.8700900901,"879":0.8710810811,"880":0.8720720721,"881":0.8730630631,"882":0.8740540541,"883":0.875045045,"884":0.876036036,"885":0.877027027,"886":0.878018018,"887":0.879009009,"888":0.88,"889":0.880990991,"890":0.881981982,"891":0.882972973,"892":0.883963964,"893":0.884954955,"894":0.8859459459,"895":0.8869369369,"896":0.8879279279,"897":0.8889189189,"898":0.8899099099,"899":0.8909009009,"900":0.8918918919,"901":0.8928828829,"902":0.8938738739,"903":0.8948648649,"904":0.8958558559,"905":0.8968468468,"906":0.8978378378,"907":0.8988288288,"908":0.8998198198,"909":0.9008108108,"910":0.9018018018,"911":0.9027927928,"912":0.9037837838,"913":0.9047747748,"914":0.9057657658,"915":0.9067567568,"916":0.9077477477,"917":0.9087387387,"918":0.9097297297,"919":0.9107207207,"920":0.9117117117,"921":0.9127027027,"922":0.9136936937,"923":0.9146846847,"924":0.9156756757,"925":0.9166666667,"926":0.9176576577,"927":0.9186486486,"928":0.9196396396,"929":0.9206306306,"930":0.9216216216,"931":0.9226126126,"932":0.9236036036,"933":0.9245945946,"934":0.9255855856,"935":0.9265765766,"936":0.9275675676,"937":0.9285585586,"938":0.9295495495,"939":0.9305405405,"940":0.9315315315,"941":0.9325225225,"942":0.9335135135,"943":0.9345045045,"944":0.9354954955,"945":0.9364864865,"946":0.9374774775,"947":0.9384684685,"948":0.9394594595,"949":0.9404504505,"950":0.9414414414,"951":0.9424324324,"952":0.9434234234,"953":0.9444144144,"954":0.9454054054,"955":0.9463963964,"956":0.9473873874,"957":0.9483783784,"958":0.9493693694,"959":0.9503603604,"960":0.9513513514,"961":0.9523423423,"962":0.9533333333,"963":0.9543243243,"964":0.9553153153,"965":0.9563063063,"966":0.9572972973,"967":0.9582882883,"968":0.9592792793,"969":0.9602702703,"970":0.9612612613,"971":0.9622522523,"972":0.9632432432,"973":0.9642342342,"974":0.9652252252,"975":0.9662162162,"976":0.9672072072,"977":0.9681981982,"978":0.9691891892,"979":0.9701801802,"980":0.9711711712,"981":0.9721621622,"982":0.9731531532,"983":0.9741441441,"984":0.9751351351,"985":0.9761261261,"986":0.9771171171,"987":0.9781081081,"988":0.9790990991,"989":0.9800900901,"990":0.9810810811,"991":0.9820720721,"992":0.9830630631,"993":0.9840540541,"994":0.985045045,"995":0.986036036,"996":0.987027027,"997":0.988018018,"998":0.989009009,"999":0.99,"1000":0.0,"1001":0.000990991,"1002":0.001981982,"1003":0.002972973,"1004":0.003963964,"1005":0.004954955,"1006":0.0059459459,"1007":0.0069369369,"1008":0.0079279279,"1009":0.0089189189,"1010":0.0099099099,"1011":0.0109009009,"1012":0.0118918919,"1013":0.0128828829,"1014":0.0138738739,"1015":0.0148648649,"1016":0.0158558559,"1017":0.0168468468,"1018":0.0178378378,"1019":0.0188288288,"1020":0.0198198198,"1021":0.0208108108,"1022":0.0218018018,"1023":0.0227927928,"1024":0.0237837838,"1025":0.0247747748,"1026":0.0257657658,"1027":0.0267567568,"1028":0.0277477477,"1029":0.0287387387,"1030":0.0297297297,"1031":0.0307207207,"1032":0.0317117117,"1033":0.0327027027,"1034":0.0336936937,"1035":0.0346846847,"1036":0.0356756757,"1037":0.0366666667,"1038":0.0376576577,"1039":0.0386486486,"1040":0.0396396396,"1041":0.0406306306,"1042":0.0416216216,"1043":0.0426126126,"1044":0.0436036036,"1045":0.0445945946,"1046":0.0455855856,"1047":0.0465765766,"1048":0.0475675676,"1049":0.0485585586,"1050":0.0495495495,"1051":0.0505405405,"1052":0.0515315315,"1053":0.0525225225,"1054":0.0535135135,"1055":0.0545045045,"1056":0.0554954955,"1057":0.0564864865,"1058":0.0574774775,"1059":0.0584684685,"1060":0.0594594595,"1061":0.0604504505,"1062":0.0614414414,"1063":0.0624324324,"1064":0.0634234234,"1065":0.0644144144,"1066":0.0654054054,"1067":0.0663963964,"1068":0.0673873874,"1069":0.0683783784,"1070":0.0693693694,"1071":0.0703603604,"1072":0.0713513514,"1073":0.0723423423,"1074":0.0733333333,"1075":0.0743243243,"1076":0.0753153153,"1077":0.0763063063,"1078":0.0772972973,"1079":0.0782882883,"1080":0.0792792793,"1081":0.0802702703,"1082":0.0812612613,"1083":0.0822522523,"1084":0.0832432432,"1085":0.0842342342,"1086":0.0852252252,"1087":0.0862162162,"1088":0.0872072072,"1089":0.0881981982,"1090":0.0891891892,"1091":0.0901801802,"1092":0.0911711712,"1093":0.0921621622,"1094":0.0931531532,"1095":0.0941441441,"1096":0.0951351351,"1097":0.0961261261,"1098":0.0971171171,"1099":0.0981081081,"1100":0.0990990991,"1101":0.1000900901,"1102":0.1010810811,"1103":0.1020720721,"1104":0.1030630631,"1105":0.1040540541,"1106":0.105045045,"1107":0.106036036,"1108":0.107027027,"1109":0.108018018,"1110":0.109009009,"1111":0.11,"1112":0.110990991,"1113":0.111981982,"1114":0.112972973,"1115":0.113963964,"1116":0.114954955,"1117":0.1159459459,"1118":0.1169369369,"1119":0.1179279279,"1120":0.1189189189,"1121":0.1199099099,"1122":0.1209009009,"1123":0.1218918919,"1124":0.1228828829,"1125":0.1238738739,"1126":0.1248648649,"1127":0.1258558559,"1128":0.1268468468,"1129":0.1278378378,"1130":0.1288288288,"1131":0.1298198198,"1132":0.1308108108,"1133":0.1318018018,"1134":0.1327927928,"1135":0.1337837838,"1136":0.1347747748,"1137":0.1357657658,"1138":0.1367567568,"1139":0.1377477477,"1140":0.1387387387,"1141":0.1397297297,"1142":0.1407207207,"1143":0.1417117117,"1144":0.1427027027,"1145":0.1436936937,"1146":0.1446846847,"1147":0.1456756757,"1148":0.1466666667,"1149":0.1476576577,"1150":0.1486486486,"1151":0.1496396396,"1152":0.1506306306,"1153":0.1516216216,"1154":0.1526126126,"1155":0.1536036036,"1156":0.1545945946,"1157":0.1555855856,"1158":0.1565765766,"1159":0.1575675676,"1160":0.1585585586,"1161":0.1595495495,"1162":0.1605405405,"1163":0.1615315315,"1164":0.1625225225,"1165":0.1635135135,"1166":0.1645045045,"1167":0.1654954955,"1168":0.1664864865,"1169":0.1674774775,"1170":0.1684684685,"1171":0.1694594595,"1172":0.1704504505,"1173":0.1714414414,"1174":0.1724324324,"1175":0.1734234234,"1176":0.1744144144,"1177":0.1754054054,"1178":0.1763963964,"1179":0.1773873874,"1180":0.1783783784,"1181":0.1793693694,"1182":0.1803603604,"1183":0.1813513514,"1184":0.1823423423,"1185":0.1833333333,"1186":0.1843243243,"1187":0.1853153153,"1188":0.1863063063,"1189":0.1872972973,"1190":0.1882882883,"1191":0.1892792793,"1192":0.1902702703,"1193":0.1912612613,"1194":0.1922522523,"1195":0.1932432432,"1196":0.1942342342,"1197":0.1952252252,"1198":0.1962162162,"1199":0.1972072072,"1200":0.1981981982,"1201":0.1991891892,"1202":0.2001801802,"1203":0.2011711712,"1204":0.2021621622,"1205":0.2031531532,"1206":0.2041441441,"1207":0.2051351351,"1208":0.2061261261,"1209":0.2071171171,"1210":0.2081081081,"1211":0.2090990991,"1212":0.2100900901,"1213":0.2110810811,"1214":0.2120720721,"1215":0.2130630631,"1216":0.2140540541,"1217":0.215045045,"1218":0.216036036,"1219":0.217027027,"1220":0.218018018,"1221":0.219009009,"1222":0.22,"1223":0.220990991,"1224":0.221981982,"1225":0.222972973,"1226":0.223963964,"1227":0.224954955,"1228":0.2259459459,"1229":0.2269369369,"1230":0.2279279279,"1231":0.2289189189,"1232":0.2299099099,"1233":0.2309009009,"1234":0.2318918919,"1235":0.2328828829,"1236":0.2338738739,"1237":0.2348648649,"1238":0.2358558559,"1239":0.2368468468,"1240":0.2378378378,"1241":0.2388288288,"1242":0.2398198198,"1243":0.2408108108,"1244":0.2418018018,"1245":0.2427927928,"1246":0.2437837838,"1247":0.2447747748,"1248":0.2457657658,"1249":0.2467567568,"1250":0.2477477477,"1251":0.2487387387,"1252":0.2497297297,"1253":0.2507207207,"1254":0.2517117117,"1255":0.2527027027,"1256":0.2536936937,"1257":0.2546846847,"1258":0.2556756757,"1259":0.2566666667,"1260":0.2576576577,"1261":0.2586486486,"1262":0.2596396396,"1263":0.2606306306,"1264":0.2616216216,"1265":0.2626126126,"1266":0.2636036036,"1267":0.2645945946,"1268":0.2655855856,"1269":0.2665765766,"1270":0.2675675676,"1271":0.2685585586,"1272":0.2695495495,"1273":0.2705405405,"1274":0.2715315315,"1275":0.2725225225,"1276":0.2735135135,"1277":0.2745045045,"1278":0.2754954955,"1279":0.2764864865,"1280":0.2774774775,"1281":0.2784684685,"1282":0.2794594595,"1283":0.2804504505,"1284":0.2814414414,"1285":0.2824324324,"1286":0.2834234234,"1287":0.2844144144,"1288":0.2854054054,"1289":0.2863963964,"1290":0.2873873874,"1291":0.2883783784,"1292":0.2893693694,"1293":0.2903603604,"1294":0.2913513514,"1295":0.2923423423,"1296":0.2933333333,"1297":0.2943243243,"1298":0.2953153153,"1299":0.2963063063,"1300":0.2972972973,"1301":0.2982882883,"1302":0.2992792793,"1303":0.3002702703,"1304":0.3012612613,"1305":0.3022522523,"1306":0.3032432432,"1307":0.3042342342,"1308":0.3052252252,"1309":0.3062162162,"1310":0.3072072072,"1311":0.3081981982,"1312":0.3091891892,"1313":0.3101801802,"1314":0.3111711712,"1315":0.3121621622,"1316":0.3131531532,"1317":0.3141441441,"1318":0.3151351351,"1319":0.3161261261,"1320":0.3171171171,"1321":0.3181081081,"1322":0.3190990991,"1323":0.3200900901,"1324":0.3210810811,"1325":0.3220720721,"1326":0.3230630631,"1327":0.3240540541,"1328":0.325045045,"1329":0.326036036,"1330":0.327027027,"1331":0.328018018,"1332":0.329009009,"1333":0.33,"1334":0.330990991,"1335":0.331981982,"1336":0.332972973,"1337":0.333963964,"1338":0.334954955,"1339":0.3359459459,"1340":0.3369369369,"1341":0.3379279279,"1342":0.3389189189,"1343":0.3399099099,"1344":0.3409009009,"1345":0.3418918919,"1346":0.3428828829,"1347":0.3438738739,"1348":0.3448648649,"1349":0.3458558559,"1350":0.3468468468,"1351":0.3478378378,"1352":0.3488288288,"1353":0.3498198198,"1354":0.3508108108,"1355":0.3518018018,"1356":0.3527927928,"1357":0.3537837838,"1358":0.3547747748,"1359":0.3557657658,"1360":0.3567567568,"1361":0.3577477477,"1362":0.3587387387,"1363":0.3597297297,"1364":0.3607207207,"1365":0.3617117117,"1366":0.3627027027,"1367":0.3636936937,"1368":0.3646846847,"1369":0.3656756757,"1370":0.3666666667,"1371":0.3676576577,"1372":0.3686486486,"1373":0.3696396396,"1374":0.3706306306,"1375":0.3716216216,"1376":0.3726126126,"1377":0.3736036036,"1378":0.3745945946,"1379":0.3755855856,"1380":0.3765765766,"1381":0.3775675676,"1382":0.3785585586,"1383":0.3795495495,"1384":0.3805405405,"1385":0.3815315315,"1386":0.3825225225,"1387":0.3835135135,"1388":0.3845045045,"1389":0.3854954955,"1390":0.3864864865,"1391":0.3874774775,"1392":0.3884684685,"1393":0.3894594595,"1394":0.3904504505,"1395":0.3914414414,"1396":0.3924324324,"1397":0.3934234234,"1398":0.3944144144,"1399":0.3954054054,"1400":0.3963963964,"1401":0.3973873874,"1402":0.3983783784,"1403":0.3993693694,"1404":0.4003603604,"1405":0.4013513514,"1406":0.4023423423,"1407":0.4033333333,"1408":0.4043243243,"1409":0.4053153153,"1410":0.4063063063,"1411":0.4072972973,"1412":0.4082882883,"1413":0.4092792793,"1414":0.4102702703,"1415":0.4112612613,"1416":0.4122522523,"1417":0.4132432432,"1418":0.4142342342,"1419":0.4152252252,"1420":0.4162162162,"1421":0.4172072072,"1422":0.4181981982,"1423":0.4191891892,"1424":0.4201801802,"1425":0.4211711712,"1426":0.4221621622,"1427":0.4231531532,"1428":0.4241441441,"1429":0.4251351351,"1430":0.4261261261,"1431":0.4271171171,"1432":0.4281081081,"1433":0.4290990991,"1434":0.4300900901,"1435":0.4310810811,"1436":0.4320720721,"1437":0.4330630631,"1438":0.4340540541,"1439":0.435045045,"1440":0.436036036,"1441":0.437027027,"1442":0.438018018,"1443":0.439009009,"1444":0.44,"1445":0.440990991,"1446":0.441981982,"1447":0.442972973,"1448":0.443963964,"1449":0.444954955,"1450":0.4459459459,"1451":0.4469369369,"1452":0.4479279279,"1453":0.4489189189,"1454":0.4499099099,"1455":0.4509009009,"1456":0.4518918919,"1457":0.4528828829,"1458":0.4538738739,"1459":0.4548648649,"1460":0.4558558559,"1461":0.4568468468,"1462":0.4578378378,"1463":0.4588288288,"1464":0.4598198198,"1465":0.4608108108,"1466":0.4618018018,"1467":0.4627927928,"1468":0.4637837838,"1469":0.4647747748,"1470":0.4657657658,"1471":0.4667567568,"1472":0.4677477477,"1473":0.4687387387,"1474":0.4697297297,"1475":0.4707207207,"1476":0.4717117117,"1477":0.4727027027,"1478":0.4736936937,"1479":0.4746846847,"1480":0.4756756757,"1481":0.4766666667,"1482":0.4776576577,"1483":0.4786486486,"1484":0.4796396396,"1485":0.4806306306,"1486":0.4816216216,"1487":0.4826126126,"1488":0.4836036036,"1489":0.4845945946,"1490":0.4855855856,"1491":0.4865765766,"1492":0.4875675676,"1493":0.4885585586,"1494":0.4895495495,"1495":0.4905405405,"1496":0.4915315315,"1497":0.4925225225,"1498":0.4935135135,"1499":0.4945045045,"1500":0.4954954955,"1501":0.4964864865,"1502":0.4974774775,"1503":0.4984684685,"1504":0.4994594595,"1505":0.5004504505,"1506":0.5014414414,"1507":0.5024324324,"1508":0.5034234234,"1509":0.5044144144,"1510":0.5054054054,"1511":0.5063963964,"1512":0.5073873874,"1513":0.5083783784,"1514":0.5093693694,"1515":0.5103603604,"1516":0.5113513514,"1517":0.5123423423,"1518":0.5133333333,"1519":0.5143243243,"1520":0.5153153153,"1521":0.5163063063,"1522":0.5172972973,"1523":0.5182882883,"1524":0.5192792793,"1525":0.5202702703,"1526":0.5212612613,"1527":0.5222522523,"1528":0.5232432432,"1529":0.5242342342,"1530":0.5252252252,"1531":0.5262162162,"1532":0.5272072072,"1533":0.5281981982,"1534":0.5291891892,"1535":0.5301801802,"1536":0.5311711712,"1537":0.5321621622,"1538":0.5331531532,"1539":0.5341441441,"1540":0.5351351351,"1541":0.5361261261,"1542":0.5371171171,"1543":0.5381081081,"1544":0.5390990991,"1545":0.5400900901,"1546":0.5410810811,"1547":0.5420720721,"1548":0.5430630631,"1549":0.5440540541,"1550":0.545045045,"1551":0.546036036,"1552":0.547027027,"1553":0.548018018,"1554":0.549009009,"1555":0.55,"1556":0.550990991,"1557":0.551981982,"1558":0.552972973,"1559":0.553963964,"1560":0.554954955,"1561":0.5559459459,"1562":0.5569369369,"1563":0.5579279279,"1564":0.5589189189,"1565":0.5599099099,"1566":0.5609009009,"1567":0.5618918919,"1568":0.5628828829,"1569":0.5638738739,"1570":0.5648648649,"1571":0.5658558559,"1572":0.5668468468,"1573":0.5678378378,"1574":0.5688288288,"1575":0.5698198198,"1576":0.5708108108,"1577":0.5718018018,"1578":0.5727927928,"1579":0.5737837838,"1580":0.5747747748,"1581":0.5757657658,"1582":0.5767567568,"1583":0.5777477477,"1584":0.5787387387,"1585":0.5797297297,"1586":0.5807207207,"1587":0.5817117117,"1588":0.5827027027,"1589":0.5836936937,"1590":0.5846846847,"1591":0.5856756757,"1592":0.5866666667,"1593":0.5876576577,"1594":0.5886486486,"1595":0.5896396396,"1596":0.5906306306,"1597":0.5916216216,"1598":0.5926126126,"1599":0.5936036036,"1600":0.5945945946,"1601":0.5955855856,"1602":0.5965765766,"1603":0.5975675676,"1604":0.5985585586,"1605":0.5995495495,"1606":0.6005405405,"1607":0.6015315315,"1608":0.6025225225,"1609":0.6035135135,"1610":0.6045045045,"1611":0.6054954955,"1612":0.6064864865,"1613":0.6074774775,"1614":0.6084684685,"1615":0.6094594595,"1616":0.6104504505,"1617":0.6114414414,"1618":0.6124324324,"1619":0.6134234234,"1620":0.6144144144,"1621":0.6154054054,"1622":0.6163963964,"1623":0.6173873874,"1624":0.6183783784,"1625":0.6193693694,"1626":0.6203603604,"1627":0.6213513514,"1628":0.6223423423,"1629":0.6233333333,"1630":0.6243243243,"1631":0.6253153153,"1632":0.6263063063,"1633":0.6272972973,"1634":0.6282882883,"1635":0.6292792793,"1636":0.6302702703,"1637":0.6312612613,"1638":0.6322522523,"1639":0.6332432432,"1640":0.6342342342,"1641":0.6352252252,"1642":0.6362162162,"1643":0.6372072072,"1644":0.6381981982,"1645":0.6391891892,"1646":0.6401801802,"1647":0.6411711712,"1648":0.6421621622,"1649":0.6431531532,"1650":0.6441441441,"1651":0.6451351351,"1652":0.6461261261,"1653":0.6471171171,"1654":0.6481081081,"1655":0.6490990991,"1656":0.6500900901,"1657":0.6510810811,"1658":0.6520720721,"1659":0.6530630631,"1660":0.6540540541,"1661":0.655045045,"1662":0.656036036,"1663":0.657027027,"1664":0.658018018,"1665":0.659009009,"1666":0.66,"1667":0.660990991,"1668":0.661981982,"1669":0.662972973,"1670":0.663963964,"1671":0.664954955,"1672":0.6659459459,"1673":0.6669369369,"1674":0.6679279279,"1675":0.6689189189,"1676":0.6699099099,"1677":0.6709009009,"1678":0.6718918919,"1679":0.6728828829,"1680":0.6738738739,"1681":0.6748648649,"1682":0.6758558559,"1683":0.6768468468,"1684":0.6778378378,"1685":0.6788288288,"1686":0.6798198198,"1687":0.6808108108,"1688":0.6818018018,"1689":0.6827927928,"1690":0.6837837838,"1691":0.6847747748,"1692":0.6857657658,"1693":0.6867567568,"1694":0.6877477477,"1695":0.6887387387,"1696":0.6897297297,"1697":0.6907207207,"1698":0.6917117117,"1699":0.6927027027,"1700":0.6936936937,"1701":0.6946846847,"1702":0.6956756757,"1703":0.6966666667,"1704":0.6976576577,"1705":0.6986486486,"1706":0.6996396396,"1707":0.7006306306,"1708":0.7016216216,"1709":0.7026126126,"1710":0.7036036036,"1711":0.7045945946,"1712":0.7055855856,"1713":0.7065765766,"1714":0.7075675676,"1715":0.7085585586,"1716":0.7095495495,"1717":0.7105405405,"1718":0.7115315315,"1719":0.7125225225,"1720":0.7135135135,"1721":0.7145045045,"1722":0.7154954955,"1723":0.7164864865,"1724":0.7174774775,"1725":0.7184684685,"1726":0.7194594595,"1727":0.7204504505,"1728":0.7214414414,"1729":0.7224324324,"1730":0.7234234234,"1731":0.7244144144,"1732":0.7254054054,"1733":0.7263963964,"1734":0.7273873874,"1735":0.7283783784,"1736":0.7293693694,"1737":0.7303603604,"1738":0.7313513514,"1739":0.7323423423,"1740":0.7333333333,"1741":0.7343243243,"1742":0.7353153153,"1743":0.7363063063,"1744":0.7372972973,"1745":0.7382882883,"1746":0.7392792793,"1747":0.7402702703,"1748":0.7412612613,"1749":0.7422522523,"1750":0.7432432432,"1751":0.7442342342,"1752":0.7452252252,"1753":0.7462162162,"1754":0.7472072072,"1755":0.7481981982,"1756":0.7491891892,"1757":0.7501801802,"1758":0.7511711712,"1759":0.7521621622,"1760":0.7531531532,"1761":0.7541441441,"1762":0.7551351351,"1763":0.7561261261,"1764":0.7571171171,"1765":0.7581081081,"1766":0.7590990991,"1767":0.7600900901,"1768":0.7610810811,"1769":0.7620720721,"1770":0.7630630631,"1771":0.7640540541,"1772":0.765045045,"1773":0.766036036,"1774":0.767027027,"1775":0.768018018,"1776":0.769009009,"1777":0.77,"1778":0.770990991,"1779":0.771981982,"1780":0.772972973,"1781":0.773963964,"1782":0.774954955,"1783":0.7759459459,"1784":0.7769369369,"1785":0.7779279279,"1786":0.7789189189,"1787":0.7799099099,"1788":0.7809009009,"1789":0.7818918919,"1790":0.7828828829,"1791":0.7838738739,"1792":0.7848648649,"1793":0.7858558559,"1794":0.7868468468,"1795":0.7878378378,"1796":0.7888288288,"1797":0.7898198198,"1798":0.7908108108,"1799":0.7918018018,"1800":0.7927927928,"1801":0.7937837838,"1802":0.7947747748,"1803":0.7957657658,"1804":0.7967567568,"1805":0.7977477477,"1806":0.7987387387,"1807":0.7997297297,"1808":0.8007207207,"1809":0.8017117117,"1810":0.8027027027,"1811":0.8036936937,"1812":0.8046846847,"1813":0.8056756757,"1814":0.8066666667,"1815":0.8076576577,"1816":0.8086486486,"1817":0.8096396396,"1818":0.8106306306,"1819":0.8116216216,"1820":0.8126126126,"1821":0.8136036036,"1822":0.8145945946,"1823":0.8155855856,"1824":0.8165765766,"1825":0.8175675676,"1826":0.8185585586,"1827":0.8195495495,"1828":0.8205405405,"1829":0.8215315315,"1830":0.8225225225,"1831":0.8235135135,"1832":0.8245045045,"1833":0.8254954955,"1834":0.8264864865,"1835":0.8274774775,"1836":0.8284684685,"1837":0.8294594595,"1838":0.8304504505,"1839":0.8314414414,"1840":0.8324324324,"1841":0.8334234234,"1842":0.8344144144,"1843":0.8354054054,"1844":0.8363963964,"1845":0.8373873874,"1846":0.8383783784,"1847":0.8393693694,"1848":0.8403603604,"1849":0.8413513514,"1850":0.8423423423,"1851":0.8433333333,"1852":0.8443243243,"1853":0.8453153153,"1854":0.8463063063,"1855":0.8472972973,"1856":0.8482882883,"1857":0.8492792793,"1858":0.8502702703,"1859":0.8512612613,"1860":0.8522522523,"1861":0.8532432432,"1862":0.8542342342,"1863":0.8552252252,"1864":0.8562162162,"1865":0.8572072072,"1866":0.8581981982,"1867":0.8591891892,"1868":0.8601801802,"1869":0.8611711712,"1870":0.8621621622,"1871":0.8631531532,"1872":0.8641441441,"1873":0.8651351351,"1874":0.8661261261,"1875":0.8671171171,"1876":0.8681081081,"1877":0.8690990991,"1878":0.8700900901,"1879":0.8710810811,"1880":0.8720720721,"1881":0.8730630631,"1882":0.8740540541,"1883":0.875045045,"1884":0.876036036,"1885":0.877027027,"1886":0.878018018,"1887":0.879009009,"1888":0.88,"1889":0.880990991,"1890":0.881981982,"1891":0.882972973,"1892":0.883963964,"1893":0.884954955,"1894":0.8859459459,"1895":0.8869369369,"1896":0.8879279279,"1897":0.8889189189,"1898":0.8899099099,"1899":0.8909009009,"1900":0.8918918919,"1901":0.8928828829,"1902":0.8938738739,"1903":0.8948648649,"1904":0.8958558559,"1905":0.8968468468,"1906":0.8978378378,"1907":0.8988288288,"1908":0.8998198198,"1909":0.9008108108,"1910":0.9018018018,"1911":0.9027927928,"1912":0.9037837838,"1913":0.9047747748,"1914":0.9057657658,"1915":0.9067567568,"1916":0.9077477477,"1917":0.9087387387,"1918":0.9097297297,"1919":0.9107207207,"1920":0.9117117117,"1921":0.9127027027,"1922":0.9136936937,"1923":0.9146846847,"1924":0.9156756757,"1925":0.9166666667,"1926":0.9176576577,"1927":0.9186486486,"1928":0.9196396396,"1929":0.9206306306,"1930":0.9216216216,"1931":0.9226126126,"1932":0.9236036036,"1933":0.9245945946,"1934":0.9255855856,"1935":0.9265765766,"1936":0.9275675676,"1937":0.9285585586,"1938":0.9295495495,"1939":0.9305405405,"1940":0.9315315315,"1941":0.9325225225,"1942":0.9335135135,"1943":0.9345045045,"1944":0.9354954955,"1945":0.9364864865,"1946":0.9374774775,"1947":0.9384684685,"1948":0.9394594595,"1949":0.9404504505,"1950":0.9414414414,"1951":0.9424324324,"1952":0.9434234234,"1953":0.9444144144,"1954":0.9454054054,"1955":0.9463963964,"1956":0.9473873874,"1957":0.9483783784,"1958":0.9493693694,"1959":0.9503603604,"1960":0.9513513514,"1961":0.9523423423,"1962":0.9533333333,"1963":0.9543243243,"1964":0.9553153153,"1965":0.9563063063,"1966":0.9572972973,"1967":0.9582882883,"1968":0.9592792793,"1969":0.9602702703,"1970":0.9612612613,"1971":0.9622522523,"1972":0.9632432432,"1973":0.9642342342,"1974":0.9652252252,"1975":0.9662162162,"1976":0.9672072072,"1977":0.9681981982,"1978":0.9691891892,"1979":0.9701801802,"1980":0.9711711712,"1981":0.9721621622,"1982":0.9731531532,"1983":0.9741441441,"1984":0.9751351351,"1985":0.9761261261,"1986":0.9771171171,"1987":0.9781081081,"1988":0.9790990991,"1989":0.9800900901,"1990":0.9810810811,"1991":0.9820720721,"1992":0.9830630631,"1993":0.9840540541,"1994":0.985045045,"1995":0.986036036,"1996":0.987027027,"1997":0.988018018,"1998":0.989009009,"1999":0.99,"2000":0.0,"2001":0.000990991,"2002":0.001981982,"2003":0.002972973,"2004":0.003963964,"2005":0.004954955,"2006":0.0059459459,"2007":0.0069369369,"2008":0.0079279279,"2009":0.0089189189,"2010":0.0099099099,"2011":0.0109009009,"2012":0.0118918919,"2013":0.0128828829,"2014":0.0138738739,"2015":0.0148648649,"2016":0.0158558559,"2017":0.0168468468,"2018":0.0178378378,"2019":0.0188288288,"2020":0.0198198198,"2021":0.0208108108,"2022":0.0218018018,"2023":0.0227927928,"2024":0.0237837838,"2025":0.0247747748,"2026":0.0257657658,"2027":0.0267567568,"2028":0.0277477477,"2029":0.0287387387,"2030":0.0297297297,"2031":0.0307207207,"2032":0.0317117117,"2033":0.0327027027,"2034":0.0336936937,"2035":0.0346846847,"2036":0.0356756757,"2037":0.0366666667,"2038":0.0376576577,"2039":0.0386486486,"2040":0.0396396396,"2041":0.0406306306,"2042":0.0416216216,"2043":0.0426126126,"2044":0.0436036036,"2045":0.0445945946,"2046":0.0455855856,"2047":0.0465765766,"2048":0.0475675676,"2049":0.0485585586,"2050":0.0495495495,"2051":0.0505405405,"2052":0.0515315315,"2053":0.0525225225,"2054":0.0535135135,"2055":0.0545045045,"2056":0.0554954955,"2057":0.0564864865,"2058":0.0574774775,"2059":0.0584684685,"2060":0.0594594595,"2061":0.0604504505,"2062":0.0614414414,"2063":0.0624324324,"2064":0.0634234234,"2065":0.0644144144,"2066":0.0654054054,"2067":0.0663963964,"2068":0.0673873874,"2069":0.0683783784,"2070":0.0693693694,"2071":0.0703603604,"2072":0.0713513514,"2073":0.0723423423,"2074":0.0733333333,"2075":0.0743243243,"2076":0.0753153153,"2077":0.0763063063,"2078":0.0772972973,"2079":0.0782882883,"2080":0.0792792793,"2081":0.0802702703,"2082":0.0812612613,"2083":0.0822522523,"2084":0.0832432432,"2085":0.0842342342,"2086":0.0852252252,"2087":0.0862162162,"2088":0.0872072072,"2089":0.0881981982,"2090":0.0891891892,"2091":0.0901801802,"2092":0.0911711712,"2093":0.0921621622,"2094":0.0931531532,"2095":0.0941441441,"2096":0.0951351351,"2097":0.0961261261,"2098":0.0971171171,"2099":0.0981081081,"2100":0.0990990991,"2101":0.1000900901,"2102":0.1010810811,"2103":0.1020720721,"2104":0.1030630631,"2105":0.1040540541,"2106":0.105045045,"2107":0.106036036,"2108":0.107027027,"2109":0.108018018,"2110":0.109009009,"2111":0.11,"2112":0.110990991,"2113":0.111981982,"2114":0.112972973,"2115":0.113963964,"2116":0.114954955,"2117":0.1159459459,"2118":0.1169369369,"2119":0.1179279279,"2120":0.1189189189,"2121":0.1199099099,"2122":0.1209009009,"2123":0.1218918919,"2124":0.1228828829,"2125":0.1238738739,"2126":0.1248648649,"2127":0.1258558559,"2128":0.1268468468,"2129":0.1278378378,"2130":0.1288288288,"2131":0.1298198198,"2132":0.1308108108,"2133":0.1318018018,"2134":0.1327927928,"2135":0.1337837838,"2136":0.1347747748,"2137":0.1357657658,"2138":0.1367567568,"2139":0.1377477477,"2140":0.1387387387,"2141":0.1397297297,"2142":0.1407207207,"2143":0.1417117117,"2144":0.1427027027,"2145":0.1436936937,"2146":0.1446846847,"2147":0.1456756757,"2148":0.1466666667,"2149":0.1476576577,"2150":0.1486486486,"2151":0.1496396396,"2152":0.1506306306,"2153":0.1516216216,"2154":0.1526126126,"2155":0.1536036036,"2156":0.1545945946,"2157":0.1555855856,"2158":0.1565765766,"2159":0.1575675676,"2160":0.1585585586,"2161":0.1595495495,"2162":0.1605405405,"2163":0.1615315315,"2164":0.1625225225,"2165":0.1635135135,"2166":0.1645045045,"2167":0.1654954955,"2168":0.1664864865,"2169":0.1674774775,"2170":0.1684684685,"2171":0.1694594595,"2172":0.1704504505,"2173":0.1714414414,"2174":0.1724324324,"2175":0.1734234234,"2176":0.1744144144,"2177":0.1754054054,"2178":0.1763963964,"2179":0.1773873874,"2180":0.1783783784,"2181":0.1793693694,"2182":0.1803603604,"2183":0.1813513514,"2184":0.1823423423,"2185":0.1833333333,"2186":0.1843243243,"2187":0.1853153153,"2188":0.1863063063,"2189":0.1872972973,"2190":0.1882882883,"2191":0.1892792793,"2192":0.1902702703,"2193":0.1912612613,"2194":0.1922522523,"2195":0.1932432432,"2196":0.1942342342,"2197":0.1952252252,"2198":0.1962162162,"2199":0.1972072072,"2200":0.1981981982,"2201":0.1991891892,"2202":0.2001801802,"2203":0.2011711712,"2204":0.2021621622,"2205":0.2031531532,"2206":0.2041441441,"2207":0.2051351351,"2208":0.2061261261,"2209":0.2071171171,"2210":0.2081081081,"2211":0.2090990991,"2212":0.2100900901,"2213":0.2110810811,"2214":0.2120720721,"2215":0.2130630631,"2216":0.2140540541,"2217":0.215045045,"2218":0.216036036,"2219":0.217027027,"2220":0.218018018,"2221":0.219009009,"2222":0.22,"2223":0.220990991,"2224":0.221981982,"2225":0.222972973,"2226":0.223963964,"2227":0.224954955,"2228":0.2259459459,"2229":0.2269369369,"2230":0.2279279279,"2231":0.2289189189,"2232":0.2299099099,"2233":0.2309009009,"2234":0.2318918919,"2235":0.2328828829,"2236":0.2338738739,"2237":0.2348648649,"2238":0.2358558559,"2239":0.2368468468,"2240":0.2378378378,"2241":0.2388288288,"2242":0.2398198198,"2243":0.2408108108,"2244":0.2418018018,"2245":0.2427927928,"2246":0.2437837838,"2247":0.2447747748,"2248":0.2457657658,"2249":0.2467567568,"2250":0.2477477477,"2251":0.2487387387,"2252":0.2497297297,"2253":0.2507207207,"2254":0.2517117117,"2255":0.2527027027,"2256":0.2536936937,"2257":0.2546846847,"2258":0.2556756757,"2259":0.2566666667,"2260":0.2576576577,"2261":0.2586486486,"2262":0.2596396396,"2263":0.2606306306,"2264":0.2616216216,"2265":0.2626126126,"2266":0.2636036036,"2267":0.2645945946,"2268":0.2655855856,"2269":0.2665765766,"2270":0.2675675676,"2271":0.2685585586,"2272":0.2695495495,"2273":0.2705405405,"2274":0.2715315315,"2275":0.2725225225,"2276":0.2735135135,"2277":0.2745045045,"2278":0.2754954955,"2279":0.2764864865,"2280":0.2774774775,"2281":0.2784684685,"2282":0.2794594595,"2283":0.2804504505,"2284":0.2814414414,"2285":0.2824324324,"2286":0.2834234234,"2287":0.2844144144,"2288":0.2854054054,"2289":0.2863963964,"2290":0.2873873874,"2291":0.2883783784,"2292":0.2893693694,"2293":0.2903603604,"2294":0.2913513514,"2295":0.2923423423,"2296":0.2933333333,"2297":0.2943243243,"2298":0.2953153153,"2299":0.2963063063,"2300":0.2972972973,"2301":0.2982882883,"2302":0.2992792793,"2303":0.3002702703,"2304":0.3012612613,"2305":0.3022522523,"2306":0.3032432432,"2307":0.3042342342,"2308":0.3052252252,"2309":0.3062162162,"2310":0.3072072072,"2311":0.3081981982,"2312":0.3091891892,"2313":0.3101801802,"2314":0.3111711712,"2315":0.3121621622,"2316":0.3131531532,"2317":0.3141441441,"2318":0.3151351351,"2319":0.3161261261,"2320":0.3171171171,"2321":0.3181081081,"2322":0.3190990991,"2323":0.3200900901,"2324":0.3210810811,"2325":0.3220720721,"2326":0.3230630631,"2327":0.3240540541,"2328":0.325045045,"2329":0.326036036,"2330":0.327027027,"2331":0.328018018,"2332":0.329009009,"2333":0.33,"2334":0.330990991,"2335":0.331981982,"2336":0.332972973,"2337":0.333963964,"2338":0.334954955,"2339":0.3359459459,"2340":0.3369369369,"2341":0.3379279279,"2342":0.3389189189,"2343":0.3399099099,"2344":0.3409009009,"2345":0.3418918919,"2346":0.3428828829,"2347":0.3438738739,"2348":0.3448648649,"2349":0.3458558559,"2350":0.3468468468,"2351":0.3478378378,"2352":0.3488288288,"2353":0.3498198198,"2354":0.3508108108,"2355":0.3518018018,"2356":0.3527927928,"2357":0.3537837838,"2358":0.3547747748,"2359":0.3557657658,"2360":0.3567567568,"2361":0.3577477477,"2362":0.3587387387,"2363":0.3597297297,"2364":0.3607207207,"2365":0.3617117117,"2366":0.3627027027,"2367":0.3636936937,"2368":0.3646846847,"2369":0.3656756757,"2370":0.3666666667,"2371":0.3676576577,"2372":0.3686486486,"2373":0.3696396396,"2374":0.3706306306,"2375":0.3716216216,"2376":0.3726126126,"2377":0.3736036036,"2378":0.3745945946,"2379":0.3755855856,"2380":0.3765765766,"2381":0.3775675676,"2382":0.3785585586,"2383":0.3795495495,"2384":0.3805405405,"2385":0.3815315315,"2386":0.3825225225,"2387":0.3835135135,"2388":0.3845045045,"2389":0.3854954955,"2390":0.3864864865,"2391":0.3874774775,"2392":0.3884684685,"2393":0.3894594595,"2394":0.3904504505,"2395":0.3914414414,"2396":0.3924324324,"2397":0.3934234234,"2398":0.3944144144,"2399":0.3954054054,"2400":0.3963963964,"2401":0.3973873874,"2402":0.3983783784,"2403":0.3993693694,"2404":0.4003603604,"2405":0.4013513514,"2406":0.4023423423,"2407":0.4033333333,"2408":0.4043243243,"2409":0.4053153153,"2410":0.4063063063,"2411":0.4072972973,"2412":0.4082882883,"2413":0.4092792793,"2414":0.4102702703,"2415":0.4112612613,"2416":0.4122522523,"2417":0.4132432432,"2418":0.4142342342,"2419":0.4152252252,"2420":0.4162162162,"2421":0.4172072072,"2422":0.4181981982,"2423":0.4191891892,"2424":0.4201801802,"2425":0.4211711712,"2426":0.4221621622,"2427":0.4231531532,"2428":0.4241441441,"2429":0.4251351351,"2430":0.4261261261,"2431":0.4271171171,"2432":0.4281081081,"2433":0.4290990991,"2434":0.4300900901,"2435":0.4310810811,"2436":0.4320720721,"2437":0.4330630631,"2438":0.4340540541,"2439":0.435045045,"2440":0.436036036,"2441":0.437027027,"2442":0.438018018,"2443":0.439009009,"2444":0.44,"2445":0.440990991,"2446":0.441981982,"2447":0.442972973,"2448":0.443963964,"2449":0.444954955,"2450":0.4459459459,"2451":0.4469369369,"2452":0.4479279279,"2453":0.4489189189,"2454":0.4499099099,"2455":0.4509009009,"2456":0.4518918919,"2457":0.4528828829,"2458":0.4538738739,"2459":0.4548648649,"2460":0.4558558559,"2461":0.4568468468,"2462":0.4578378378,"2463":0.4588288288,"2464":0.4598198198,"2465":0.4608108108,"2466":0.4618018018,"2467":0.4627927928,"2468":0.4637837838,"2469":0.4647747748,"2470":0.4657657658,"2471":0.4667567568,"2472":0.4677477477,"2473":0.4687387387,"2474":0.4697297297,"2475":0.4707207207,"2476":0.4717117117,"2477":0.4727027027,"2478":0.4736936937,"2479":0.4746846847,"2480":0.4756756757,"2481":0.4766666667,"2482":0.4776576577,"2483":0.4786486486,"2484":0.4796396396,"2485":0.4806306306,"2486":0.4816216216,"2487":0.4826126126,"2488":0.4836036036,"2489":0.4845945946,"2490":0.4855855856,"2491":0.4865765766,"2492":0.4875675676,"2493":0.4885585586,"2494":0.4895495495,"2495":0.4905405405,"2496":0.4915315315,"2497":0.4925225225,"2498":0.4935135135,"2499":0.4945045045,"2500":0.4954954955,"2501":0.4964864865,"2502":0.4974774775,"2503":0.4984684685,"2504":0.4994594595,"2505":0.5004504505,"2506":0.5014414414,"2507":0.5024324324,"2508":0.5034234234,"2509":0.5044144144,"2510":0.5054054054,"2511":0.5063963964,"2512":0.5073873874,"2513":0.5083783784,"2514":0.5093693694,"2515":0.5103603604,"2516":0.5113513514,"2517":0.5123423423,"2518":0.5133333333,"2519":0.5143243243,"2520":0.5153153153,"2521":0.5163063063,"2522":0.5172972973,"2523":0.5182882883,"2524":0.5192792793,"2525":0.5202702703,"2526":0.5212612613,"2527":0.5222522523,"2528":0.5232432432,"2529":0.5242342342,"2530":0.5252252252,"2531":0.5262162162,"2532":0.5272072072,"2533":0.5281981982,"2534":0.5291891892,"2535":0.5301801802,"2536":0.5311711712,"2537":0.5321621622,"2538":0.5331531532,"2539":0.5341441441,"2540":0.5351351351,"2541":0.5361261261,"2542":0.5371171171,"2543":0.5381081081,"2544":0.5390990991,"2545":0.5400900901,"2546":0.5410810811,"2547":0.5420720721,"2548":0.5430630631,"2549":0.5440540541,"2550":0.545045045,"2551":0.546036036,"2552":0.547027027,"2553":0.548018018,"2554":0.549009009,"2555":0.55,"2556":0.550990991,"2557":0.551981982,"2558":0.552972973,"2559":0.553963964,"2560":0.554954955,"2561":0.5559459459,"2562":0.5569369369,"2563":0.5579279279,"2564":0.5589189189,"2565":0.5599099099,"2566":0.5609009009,"2567":0.5618918919,"2568":0.5628828829,"2569":0.5638738739,"2570":0.5648648649,"2571":0.5658558559,"2572":0.5668468468,"2573":0.5678378378,"2574":0.5688288288,"2575":0.5698198198,"2576":0.5708108108,"2577":0.5718018018,"2578":0.5727927928,"2579":0.5737837838,"2580":0.5747747748,"2581":0.5757657658,"2582":0.5767567568,"2583":0.5777477477,"2584":0.5787387387,"2585":0.5797297297,"2586":0.5807207207,"2587":0.5817117117,"2588":0.5827027027,"2589":0.5836936937,"2590":0.5846846847,"2591":0.5856756757,"2592":0.5866666667,"2593":0.5876576577,"2594":0.5886486486,"2595":0.5896396396,"2596":0.5906306306,"2597":0.5916216216,"2598":0.5926126126,"2599":0.5936036036,"2600":0.5945945946,"2601":0.5955855856,"2602":0.5965765766,"2603":0.5975675676,"2604":0.5985585586,"2605":0.5995495495,"2606":0.6005405405,"2607":0.6015315315,"2608":0.6025225225,"2609":0.6035135135,"2610":0.6045045045,"2611":0.6054954955,"2612":0.6064864865,"2613":0.6074774775,"2614":0.6084684685,"2615":0.6094594595,"2616":0.6104504505,"2617":0.6114414414,"2618":0.6124324324,"2619":0.6134234234,"2620":0.6144144144,"2621":0.6154054054,"2622":0.6163963964,"2623":0.6173873874,"2624":0.6183783784,"2625":0.6193693694,"2626":0.6203603604,"2627":0.6213513514,"2628":0.6223423423,"2629":0.6233333333,"2630":0.6243243243,"2631":0.6253153153,"2632":0.6263063063,"2633":0.6272972973,"2634":0.6282882883,"2635":0.6292792793,"2636":0.6302702703,"2637":0.6312612613,"2638":0.6322522523,"2639":0.6332432432,"2640":0.6342342342,"2641":0.6352252252,"2642":0.6362162162,"2643":0.6372072072,"2644":0.6381981982,"2645":0.6391891892,"2646":0.6401801802,"2647":0.6411711712,"2648":0.6421621622,"2649":0.6431531532,"2650":0.6441441441,"2651":0.6451351351,"2652":0.6461261261,"2653":0.6471171171,"2654":0.6481081081,"2655":0.6490990991,"2656":0.6500900901,"2657":0.6510810811,"2658":0.6520720721,"2659":0.6530630631,"2660":0.6540540541,"2661":0.655045045,"2662":0.656036036,"2663":0.657027027,"2664":0.658018018,"2665":0.659009009,"2666":0.66,"2667":0.660990991,"2668":0.661981982,"2669":0.662972973,"2670":0.663963964,"2671":0.664954955,"2672":0.6659459459,"2673":0.6669369369,"2674":0.6679279279,"2675":0.6689189189,"2676":0.6699099099,"2677":0.6709009009,"2678":0.6718918919,"2679":0.6728828829,"2680":0.6738738739,"2681":0.6748648649,"2682":0.6758558559,"2683":0.6768468468,"2684":0.6778378378,"2685":0.6788288288,"2686":0.6798198198,"2687":0.6808108108,"2688":0.6818018018,"2689":0.6827927928,"2690":0.6837837838,"2691":0.6847747748,"2692":0.6857657658,"2693":0.6867567568,"2694":0.6877477477,"2695":0.6887387387,"2696":0.6897297297,"2697":0.6907207207,"2698":0.6917117117,"2699":0.6927027027,"2700":0.6936936937,"2701":0.6946846847,"2702":0.6956756757,"2703":0.6966666667,"2704":0.6976576577,"2705":0.6986486486,"2706":0.6996396396,"2707":0.7006306306,"2708":0.7016216216,"2709":0.7026126126,"2710":0.7036036036,"2711":0.7045945946,"2712":0.7055855856,"2713":0.7065765766,"2714":0.7075675676,"2715":0.7085585586,"2716":0.7095495495,"2717":0.7105405405,"2718":0.7115315315,"2719":0.7125225225,"2720":0.7135135135,"2721":0.7145045045,"2722":0.7154954955,"2723":0.7164864865,"2724":0.7174774775,"2725":0.7184684685,"2726":0.7194594595,"2727":0.7204504505,"2728":0.7214414414,"2729":0.7224324324,"2730":0.7234234234,"2731":0.7244144144,"2732":0.7254054054,"2733":0.7263963964,"2734":0.7273873874,"2735":0.7283783784,"2736":0.7293693694,"2737":0.7303603604,"2738":0.7313513514,"2739":0.7323423423,"2740":0.7333333333,"2741":0.7343243243,"2742":0.7353153153,"2743":0.7363063063,"2744":0.7372972973,"2745":0.7382882883,"2746":0.7392792793,"2747":0.7402702703,"2748":0.7412612613,"2749":0.7422522523,"2750":0.7432432432,"2751":0.7442342342,"2752":0.7452252252,"2753":0.7462162162,"2754":0.7472072072,"2755":0.7481981982,"2756":0.7491891892,"2757":0.7501801802,"2758":0.7511711712,"2759":0.7521621622,"2760":0.7531531532,"2761":0.7541441441,"2762":0.7551351351,"2763":0.7561261261,"2764":0.7571171171,"2765":0.7581081081,"2766":0.7590990991,"2767":0.7600900901,"2768":0.7610810811,"2769":0.7620720721,"2770":0.7630630631,"2771":0.7640540541,"2772":0.765045045,"2773":0.766036036,"2774":0.767027027,"2775":0.768018018,"2776":0.769009009,"2777":0.77,"2778":0.770990991,"2779":0.771981982,"2780":0.772972973,"2781":0.773963964,"2782":0.774954955,"2783":0.7759459459,"2784":0.7769369369,"2785":0.7779279279,"2786":0.7789189189,"2787":0.7799099099,"2788":0.7809009009,"2789":0.7818918919,"2790":0.7828828829,"2791":0.7838738739,"2792":0.7848648649,"2793":0.7858558559,"2794":0.7868468468,"2795":0.7878378378,"2796":0.7888288288,"2797":0.7898198198,"2798":0.7908108108,"2799":0.7918018018,"2800":0.7927927928,"2801":0.7937837838,"2802":0.7947747748,"2803":0.7957657658,"2804":0.7967567568,"2805":0.7977477477,"2806":0.7987387387,"2807":0.7997297297,"2808":0.8007207207,"2809":0.8017117117,"2810":0.8027027027,"2811":0.8036936937,"2812":0.8046846847,"2813":0.8056756757,"2814":0.8066666667,"2815":0.8076576577,"2816":0.8086486486,"2817":0.8096396396,"2818":0.8106306306,"2819":0.8116216216,"2820":0.8126126126,"2821":0.8136036036,"2822":0.8145945946,"2823":0.8155855856,"2824":0.8165765766,"2825":0.8175675676,"2826":0.8185585586,"2827":0.8195495495,"2828":0.8205405405,"2829":0.8215315315,"2830":0.8225225225,"2831":0.8235135135,"2832":0.8245045045,"2833":0.8254954955,"2834":0.8264864865,"2835":0.8274774775,"2836":0.8284684685,"2837":0.8294594595,"2838":0.8304504505,"2839":0.8314414414,"2840":0.8324324324,"2841":0.8334234234,"2842":0.8344144144,"2843":0.8354054054,"2844":0.8363963964,"2845":0.8373873874,"2846":0.8383783784,"2847":0.8393693694,"2848":0.8403603604,"2849":0.8413513514,"2850":0.8423423423,"2851":0.8433333333,"2852":0.8443243243,"2853":0.8453153153,"2854":0.8463063063,"2855":0.8472972973,"2856":0.8482882883,"2857":0.8492792793,"2858":0.8502702703,"2859":0.8512612613,"2860":0.8522522523,"2861":0.8532432432,"2862":0.8542342342,"2863":0.8552252252,"2864":0.8562162162,"2865":0.8572072072,"2866":0.8581981982,"2867":0.8591891892,"2868":0.8601801802,"2869":0.8611711712,"2870":0.8621621622,"2871":0.8631531532,"2872":0.8641441441,"2873":0.8651351351,"2874":0.8661261261,"2875":0.8671171171,"2876":0.8681081081,"2877":0.8690990991,"2878":0.8700900901,"2879":0.8710810811,"2880":0.8720720721,"2881":0.8730630631,"2882":0.8740540541,"2883":0.875045045,"2884":0.876036036,"2885":0.877027027,"2886":0.878018018,"2887":0.879009009,"2888":0.88,"2889":0.880990991,"2890":0.881981982,"2891":0.882972973,"2892":0.883963964,"2893":0.884954955,"2894":0.8859459459,"2895":0.8869369369,"2896":0.8879279279,"2897":0.8889189189,"2898":0.8899099099,"2899":0.8909009009,"2900":0.8918918919,"2901":0.8928828829,"2902":0.8938738739,"2903":0.8948648649,"2904":0.8958558559,"2905":0.8968468468,"2906":0.8978378378,"2907":0.8988288288,"2908":0.8998198198,"2909":0.9008108108,"2910":0.9018018018,"2911":0.9027927928,"2912":0.9037837838,"2913":0.9047747748,"2914":0.9057657658,"2915":0.9067567568,"2916":0.9077477477,"2917":0.9087387387,"2918":0.9097297297,"2919":0.9107207207,"2920":0.9117117117,"2921":0.9127027027,"2922":0.9136936937,"2923":0.9146846847,"2924":0.9156756757,"2925":0.9166666667,"2926":0.9176576577,"2927":0.9186486486,"2928":0.9196396396,"2929":0.9206306306,"2930":0.9216216216,"2931":0.9226126126,"2932":0.9236036036,"2933":0.9245945946,"2934":0.9255855856,"2935":0.9265765766,"2936":0.9275675676,"2937":0.9285585586,"2938":0.9295495495,"2939":0.9305405405,"2940":0.9315315315,"2941":0.9325225225,"2942":0.9335135135,"2943":0.9345045045,"2944":0.9354954955,"2945":0.9364864865,"2946":0.9374774775,"2947":0.9384684685,"2948":0.9394594595,"2949":0.9404504505,"2950":0.9414414414,"2951":0.9424324324,"2952":0.9434234234,"2953":0.9444144144,"2954":0.9454054054,"2955":0.9463963964,"2956":0.9473873874,"2957":0.9483783784,"2958":0.9493693694,"2959":0.9503603604,"2960":0.9513513514,"2961":0.9523423423,"2962":0.9533333333,"2963":0.9543243243,"2964":0.9553153153,"2965":0.9563063063,"2966":0.9572972973,"2967":0.9582882883,"2968":0.9592792793,"2969":0.9602702703,"2970":0.9612612613,"2971":0.9622522523,"2972":0.9632432432,"2973":0.9642342342,"2974":0.9652252252,"2975":0.9662162162,"2976":0.9672072072,"2977":0.9681981982,"2978":0.9691891892,"2979":0.9701801802,"2980":0.9711711712,"2981":0.9721621622,"2982":0.9731531532,"2983":0.9741441441,"2984":0.9751351351,"2985":0.9761261261,"2986":0.9771171171,"2987":0.9781081081,"2988":0.9790990991,"2989":0.9800900901,"2990":0.9810810811,"2991":0.9820720721,"2992":0.9830630631,"2993":0.9840540541,"2994":0.985045045,"2995":0.986036036,"2996":0.987027027,"2997":0.988018018,"2998":0.989009009,"2999":0.99,"3000":0.0,"3001":0.000990991,"3002":0.001981982,"3003":0.002972973,"3004":0.003963964,"3005":0.004954955,"3006":0.0059459459,"3007":0.0069369369,"3008":0.0079279279,"3009":0.0089189189,"3010":0.0099099099,"3011":0.0109009009,"3012":0.0118918919,"3013":0.0128828829,"3014":0.0138738739,"3015":0.0148648649,"3016":0.0158558559,"3017":0.0168468468,"3018":0.0178378378,"3019":0.0188288288,"3020":0.0198198198,"3021":0.0208108108,"3022":0.0218018018,"3023":0.0227927928,"3024":0.0237837838,"3025":0.0247747748,"3026":0.0257657658,"3027":0.0267567568,"3028":0.0277477477,"3029":0.0287387387,"3030":0.0297297297,"3031":0.0307207207,"3032":0.0317117117,"3033":0.0327027027,"3034":0.0336936937,"3035":0.0346846847,"3036":0.0356756757,"3037":0.0366666667,"3038":0.0376576577,"3039":0.0386486486,"3040":0.0396396396,"3041":0.0406306306,"3042":0.0416216216,"3043":0.0426126126,"3044":0.0436036036,"3045":0.0445945946,"3046":0.0455855856,"3047":0.0465765766,"3048":0.0475675676,"3049":0.0485585586,"3050":0.0495495495,"3051":0.0505405405,"3052":0.0515315315,"3053":0.0525225225,"3054":0.0535135135,"3055":0.0545045045,"3056":0.0554954955,"3057":0.0564864865,"3058":0.0574774775,"3059":0.0584684685,"3060":0.0594594595,"3061":0.0604504505,"3062":0.0614414414,"3063":0.0624324324,"3064":0.0634234234,"3065":0.0644144144,"3066":0.0654054054,"3067":0.0663963964,"3068":0.0673873874,"3069":0.0683783784,"3070":0.0693693694,"3071":0.0703603604,"3072":0.0713513514,"3073":0.0723423423,"3074":0.0733333333,"3075":0.0743243243,"3076":0.0753153153,"3077":0.0763063063,"3078":0.0772972973,"3079":0.0782882883,"3080":0.0792792793,"3081":0.0802702703,"3082":0.0812612613,"3083":0.0822522523,"3084":0.0832432432,"3085":0.0842342342,"3086":0.0852252252,"3087":0.0862162162,"3088":0.0872072072,"3089":0.0881981982,"3090":0.0891891892,"3091":0.0901801802,"3092":0.0911711712,"3093":0.0921621622,"3094":0.0931531532,"3095":0.0941441441,"3096":0.0951351351,"3097":0.0961261261,"3098":0.0971171171,"3099":0.0981081081,"3100":0.0990990991,"3101":0.1000900901,"3102":0.1010810811,"3103":0.1020720721,"3104":0.1030630631,"3105":0.1040540541,"3106":0.105045045,"3107":0.106036036,"3108":0.107027027,"3109":0.108018018,"3110":0.109009009,"3111":0.11,"3112":0.110990991,"3113":0.111981982,"3114":0.112972973,"3115":0.113963964,"3116":0.114954955,"3117":0.1159459459,"3118":0.1169369369,"3119":0.1179279279,"3120":0.1189189189,"3121":0.1199099099,"3122":0.1209009009,"3123":0.1218918919,"3124":0.1228828829,"3125":0.1238738739,"3126":0.1248648649,"3127":0.1258558559,"3128":0.1268468468,"3129":0.1278378378,"3130":0.1288288288,"3131":0.1298198198,"3132":0.1308108108,"3133":0.1318018018,"3134":0.1327927928,"3135":0.1337837838,"3136":0.1347747748,"3137":0.1357657658,"3138":0.1367567568,"3139":0.1377477477,"3140":0.1387387387,"3141":0.1397297297,"3142":0.1407207207,"3143":0.1417117117,"3144":0.1427027027,"3145":0.1436936937,"3146":0.1446846847,"3147":0.1456756757,"3148":0.1466666667,"3149":0.1476576577,"3150":0.1486486486,"3151":0.1496396396,"3152":0.1506306306,"3153":0.1516216216,"3154":0.1526126126,"3155":0.1536036036,"3156":0.1545945946,"3157":0.1555855856,"3158":0.1565765766,"3159":0.1575675676,"3160":0.1585585586,"3161":0.1595495495,"3162":0.1605405405,"3163":0.1615315315,"3164":0.1625225225,"3165":0.1635135135,"3166":0.1645045045,"3167":0.1654954955,"3168":0.1664864865,"3169":0.1674774775,"3170":0.1684684685,"3171":0.1694594595,"3172":0.1704504505,"3173":0.1714414414,"3174":0.1724324324,"3175":0.1734234234,"3176":0.1744144144,"3177":0.1754054054,"3178":0.1763963964,"3179":0.1773873874,"3180":0.1783783784,"3181":0.1793693694,"3182":0.1803603604,"3183":0.1813513514,"3184":0.1823423423,"3185":0.1833333333,"3186":0.1843243243,"3187":0.1853153153,"3188":0.1863063063,"3189":0.1872972973,"3190":0.1882882883,"3191":0.1892792793,"3192":0.1902702703,"3193":0.1912612613,"3194":0.1922522523,"3195":0.1932432432,"3196":0.1942342342,"3197":0.1952252252,"3198":0.1962162162,"3199":0.1972072072,"3200":0.1981981982,"3201":0.1991891892,"3202":0.2001801802,"3203":0.2011711712,"3204":0.2021621622,"3205":0.2031531532,"3206":0.2041441441,"3207":0.2051351351,"3208":0.2061261261,"3209":0.2071171171,"3210":0.2081081081,"3211":0.2090990991,"3212":0.2100900901,"3213":0.2110810811,"3214":0.2120720721,"3215":0.2130630631,"3216":0.2140540541,"3217":0.215045045,"3218":0.216036036,"3219":0.217027027,"3220":0.218018018,"3221":0.219009009,"3222":0.22,"3223":0.220990991,"3224":0.221981982,"3225":0.222972973,"3226":0.223963964,"3227":0.224954955,"3228":0.2259459459,"3229":0.2269369369,"3230":0.2279279279,"3231":0.2289189189,"3232":0.2299099099,"3233":0.2309009009,"3234":0.2318918919,"3235":0.2328828829,"3236":0.2338738739,"3237":0.2348648649,"3238":0.2358558559,"3239":0.2368468468,"3240":0.2378378378,"3241":0.2388288288,"3242":0.2398198198,"3243":0.2408108108,"3244":0.2418018018,"3245":0.2427927928,"3246":0.2437837838,"3247":0.2447747748,"3248":0.2457657658,"3249":0.2467567568,"3250":0.2477477477,"3251":0.2487387387,"3252":0.2497297297,"3253":0.2507207207,"3254":0.2517117117,"3255":0.2527027027,"3256":0.2536936937,"3257":0.2546846847,"3258":0.2556756757,"3259":0.2566666667,"3260":0.2576576577,"3261":0.2586486486,"3262":0.2596396396,"3263":0.2606306306,"3264":0.2616216216,"3265":0.2626126126,"3266":0.2636036036,"3267":0.2645945946,"3268":0.2655855856,"3269":0.2665765766,"3270":0.2675675676,"3271":0.2685585586,"3272":0.2695495495,"3273":0.2705405405,"3274":0.2715315315,"3275":0.2725225225,"3276":0.2735135135,"3277":0.2745045045,"3278":0.2754954955,"3279":0.2764864865,"3280":0.2774774775,"3281":0.2784684685,"3282":0.2794594595,"3283":0.2804504505,"3284":0.2814414414,"3285":0.2824324324,"3286":0.2834234234,"3287":0.2844144144,"3288":0.2854054054,"3289":0.2863963964,"3290":0.2873873874,"3291":0.2883783784,"3292":0.2893693694,"3293":0.2903603604,"3294":0.2913513514,"3295":0.2923423423,"3296":0.2933333333,"3297":0.2943243243,"3298":0.2953153153,"3299":0.2963063063,"3300":0.2972972973,"3301":0.2982882883,"3302":0.2992792793,"3303":0.3002702703,"3304":0.3012612613,"3305":0.3022522523,"3306":0.3032432432,"3307":0.3042342342,"3308":0.3052252252,"3309":0.3062162162,"3310":0.3072072072,"3311":0.3081981982,"3312":0.3091891892,"3313":0.3101801802,"3314":0.3111711712,"3315":0.3121621622,"3316":0.3131531532,"3317":0.3141441441,"3318":0.3151351351,"3319":0.3161261261,"3320":0.3171171171,"3321":0.3181081081,"3322":0.3190990991,"3323":0.3200900901,"3324":0.3210810811,"3325":0.3220720721,"3326":0.3230630631,"3327":0.3240540541,"3328":0.325045045,"3329":0.326036036,"3330":0.327027027,"3331":0.328018018,"3332":0.329009009,"3333":0.33,"3334":0.330990991,"3335":0.331981982,"3336":0.332972973,"3337":0.333963964,"3338":0.334954955,"3339":0.3359459459,"3340":0.3369369369,"3341":0.3379279279,"3342":0.3389189189,"3343":0.3399099099,"3344":0.3409009009,"3345":0.3418918919,"3346":0.3428828829,"3347":0.3438738739,"3348":0.3448648649,"3349":0.3458558559,"3350":0.3468468468,"3351":0.3478378378,"3352":0.3488288288,"3353":0.3498198198,"3354":0.3508108108,"3355":0.3518018018,"3356":0.3527927928,"3357":0.3537837838,"3358":0.3547747748,"3359":0.3557657658,"3360":0.3567567568,"3361":0.3577477477,"3362":0.3587387387,"3363":0.3597297297,"3364":0.3607207207,"3365":0.3617117117,"3366":0.3627027027,"3367":0.3636936937,"3368":0.3646846847,"3369":0.3656756757,"3370":0.3666666667,"3371":0.3676576577,"3372":0.3686486486,"3373":0.3696396396,"3374":0.3706306306,"3375":0.3716216216,"3376":0.3726126126,"3377":0.3736036036,"3378":0.3745945946,"3379":0.3755855856,"3380":0.3765765766,"3381":0.3775675676,"3382":0.3785585586,"3383":0.3795495495,"3384":0.3805405405,"3385":0.3815315315,"3386":0.3825225225,"3387":0.3835135135,"3388":0.3845045045,"3389":0.3854954955,"3390":0.3864864865,"3391":0.3874774775,"3392":0.3884684685,"3393":0.3894594595,"3394":0.3904504505,"3395":0.3914414414,"3396":0.3924324324,"3397":0.3934234234,"3398":0.3944144144,"3399":0.3954054054,"3400":0.3963963964,"3401":0.3973873874,"3402":0.3983783784,"3403":0.3993693694,"3404":0.4003603604,"3405":0.4013513514,"3406":0.4023423423,"3407":0.4033333333,"3408":0.4043243243,"3409":0.4053153153,"3410":0.4063063063,"3411":0.4072972973,"3412":0.4082882883,"3413":0.4092792793,"3414":0.4102702703,"3415":0.4112612613,"3416":0.4122522523,"3417":0.4132432432,"3418":0.4142342342,"3419":0.4152252252,"3420":0.4162162162,"3421":0.4172072072,"3422":0.4181981982,"3423":0.4191891892,"3424":0.4201801802,"3425":0.4211711712,"3426":0.4221621622,"3427":0.4231531532,"3428":0.4241441441,"3429":0.4251351351,"3430":0.4261261261,"3431":0.4271171171,"3432":0.4281081081,"3433":0.4290990991,"3434":0.4300900901,"3435":0.4310810811,"3436":0.4320720721,"3437":0.4330630631,"3438":0.4340540541,"3439":0.435045045,"3440":0.436036036,"3441":0.437027027,"3442":0.438018018,"3443":0.439009009,"3444":0.44,"3445":0.440990991,"3446":0.441981982,"3447":0.442972973,"3448":0.443963964,"3449":0.444954955,"3450":0.4459459459,"3451":0.4469369369,"3452":0.4479279279,"3453":0.4489189189,"3454":0.4499099099,"3455":0.4509009009,"3456":0.4518918919,"3457":0.4528828829,"3458":0.4538738739,"3459":0.4548648649,"3460":0.4558558559,"3461":0.4568468468,"3462":0.4578378378,"3463":0.4588288288,"3464":0.4598198198,"3465":0.4608108108,"3466":0.4618018018,"3467":0.4627927928,"3468":0.4637837838,"3469":0.4647747748,"3470":0.4657657658,"3471":0.4667567568,"3472":0.4677477477,"3473":0.4687387387,"3474":0.4697297297,"3475":0.4707207207,"3476":0.4717117117,"3477":0.4727027027,"3478":0.4736936937,"3479":0.4746846847,"3480":0.4756756757,"3481":0.4766666667,"3482":0.4776576577,"3483":0.4786486486,"3484":0.4796396396,"3485":0.4806306306,"3486":0.4816216216,"3487":0.4826126126,"3488":0.4836036036,"3489":0.4845945946,"3490":0.4855855856,"3491":0.4865765766,"3492":0.4875675676,"3493":0.4885585586,"3494":0.4895495495,"3495":0.4905405405,"3496":0.4915315315,"3497":0.4925225225,"3498":0.4935135135,"3499":0.4945045045,"3500":0.4954954955,"3501":0.4964864865,"3502":0.4974774775,"3503":0.4984684685,"3504":0.4994594595,"3505":0.5004504505,"3506":0.5014414414,"3507":0.5024324324,"3508":0.5034234234,"3509":0.5044144144,"3510":0.5054054054,"3511":0.5063963964,"3512":0.5073873874,"3513":0.5083783784,"3514":0.5093693694,"3515":0.5103603604,"3516":0.5113513514,"3517":0.5123423423,"3518":0.5133333333,"3519":0.5143243243,"3520":0.5153153153,"3521":0.5163063063,"3522":0.5172972973,"3523":0.5182882883,"3524":0.5192792793,"3525":0.5202702703,"3526":0.5212612613,"3527":0.5222522523,"3528":0.5232432432,"3529":0.5242342342,"3530":0.5252252252,"3531":0.5262162162,"3532":0.5272072072,"3533":0.5281981982,"3534":0.5291891892,"3535":0.5301801802,"3536":0.5311711712,"3537":0.5321621622,"3538":0.5331531532,"3539":0.5341441441,"3540":0.5351351351,"3541":0.5361261261,"3542":0.5371171171,"3543":0.5381081081,"3544":0.5390990991,"3545":0.5400900901,"3546":0.5410810811,"3547":0.5420720721,"3548":0.5430630631,"3549":0.5440540541,"3550":0.545045045,"3551":0.546036036,"3552":0.547027027,"3553":0.548018018,"3554":0.549009009,"3555":0.55,"3556":0.550990991,"3557":0.551981982,"3558":0.552972973,"3559":0.553963964,"3560":0.554954955,"3561":0.5559459459,"3562":0.5569369369,"3563":0.5579279279,"3564":0.5589189189,"3565":0.5599099099,"3566":0.5609009009,"3567":0.5618918919,"3568":0.5628828829,"3569":0.5638738739,"3570":0.5648648649,"3571":0.5658558559,"3572":0.5668468468,"3573":0.5678378378,"3574":0.5688288288,"3575":0.5698198198,"3576":0.5708108108,"3577":0.5718018018,"3578":0.5727927928,"3579":0.5737837838,"3580":0.5747747748,"3581":0.5757657658,"3582":0.5767567568,"3583":0.5777477477,"3584":0.5787387387,"3585":0.5797297297,"3586":0.5807207207,"3587":0.5817117117,"3588":0.5827027027,"3589":0.5836936937,"3590":0.5846846847,"3591":0.5856756757,"3592":0.5866666667,"3593":0.5876576577,"3594":0.5886486486,"3595":0.5896396396,"3596":0.5906306306,"3597":0.5916216216,"3598":0.5926126126,"3599":0.5936036036,"3600":0.5945945946,"3601":0.5955855856,"3602":0.5965765766,"3603":0.5975675676,"3604":0.5985585586,"3605":0.5995495495,"3606":0.6005405405,"3607":0.6015315315,"3608":0.6025225225,"3609":0.6035135135,"3610":0.6045045045,"3611":0.6054954955,"3612":0.6064864865,"3613":0.6074774775,"3614":0.6084684685,"3615":0.6094594595,"3616":0.6104504505,"3617":0.6114414414,"3618":0.6124324324,"3619":0.6134234234,"3620":0.6144144144,"3621":0.6154054054,"3622":0.6163963964,"3623":0.6173873874,"3624":0.6183783784,"3625":0.6193693694,"3626":0.6203603604,"3627":0.6213513514,"3628":0.6223423423,"3629":0.6233333333,"3630":0.6243243243,"3631":0.6253153153,"3632":0.6263063063,"3633":0.6272972973,"3634":0.6282882883,"3635":0.6292792793,"3636":0.6302702703,"3637":0.6312612613,"3638":0.6322522523,"3639":0.6332432432,"3640":0.6342342342,"3641":0.6352252252,"3642":0.6362162162,"3643":0.6372072072,"3644":0.6381981982,"3645":0.6391891892,"3646":0.6401801802,"3647":0.6411711712,"3648":0.6421621622,"3649":0.6431531532,"3650":0.6441441441,"3651":0.6451351351,"3652":0.6461261261,"3653":0.6471171171,"3654":0.6481081081,"3655":0.6490990991,"3656":0.6500900901,"3657":0.6510810811,"3658":0.6520720721,"3659":0.6530630631,"3660":0.6540540541,"3661":0.655045045,"3662":0.656036036,"3663":0.657027027,"3664":0.658018018,"3665":0.659009009,"3666":0.66,"3667":0.660990991,"3668":0.661981982,"3669":0.662972973,"3670":0.663963964,"3671":0.664954955,"3672":0.6659459459,"3673":0.6669369369,"3674":0.6679279279,"3675":0.6689189189,"3676":0.6699099099,"3677":0.6709009009,"3678":0.6718918919,"3679":0.6728828829,"3680":0.6738738739,"3681":0.6748648649,"3682":0.6758558559,"3683":0.6768468468,"3684":0.6778378378,"3685":0.6788288288,"3686":0.6798198198,"3687":0.6808108108,"3688":0.6818018018,"3689":0.6827927928,"3690":0.6837837838,"3691":0.6847747748,"3692":0.6857657658,"3693":0.6867567568,"3694":0.6877477477,"3695":0.6887387387,"3696":0.6897297297,"3697":0.6907207207,"3698":0.6917117117,"3699":0.6927027027,"3700":0.6936936937,"3701":0.6946846847,"3702":0.6956756757,"3703":0.6966666667,"3704":0.6976576577,"3705":0.6986486486,"3706":0.6996396396,"3707":0.7006306306,"3708":0.7016216216,"3709":0.7026126126,"3710":0.7036036036,"3711":0.7045945946,"3712":0.7055855856,"3713":0.7065765766,"3714":0.7075675676,"3715":0.7085585586,"3716":0.7095495495,"3717":0.7105405405,"3718":0.7115315315,"3719":0.7125225225,"3720":0.7135135135,"3721":0.7145045045,"3722":0.7154954955,"3723":0.7164864865,"3724":0.7174774775,"3725":0.7184684685,"3726":0.7194594595,"3727":0.7204504505,"3728":0.7214414414,"3729":0.7224324324,"3730":0.7234234234,"3731":0.7244144144,"3732":0.7254054054,"3733":0.7263963964,"3734":0.7273873874,"3735":0.7283783784,"3736":0.7293693694,"3737":0.7303603604,"3738":0.7313513514,"3739":0.7323423423,"3740":0.7333333333,"3741":0.7343243243,"3742":0.7353153153,"3743":0.7363063063,"3744":0.7372972973,"3745":0.7382882883,"3746":0.7392792793,"3747":0.7402702703,"3748":0.7412612613,"3749":0.7422522523,"3750":0.7432432432,"3751":0.7442342342,"3752":0.7452252252,"3753":0.7462162162,"3754":0.7472072072,"3755":0.7481981982,"3756":0.7491891892,"3757":0.7501801802,"3758":0.7511711712,"3759":0.7521621622,"3760":0.7531531532,"3761":0.7541441441,"3762":0.7551351351,"3763":0.7561261261,"3764":0.7571171171,"3765":0.7581081081,"3766":0.7590990991,"3767":0.7600900901,"3768":0.7610810811,"3769":0.7620720721,"3770":0.7630630631,"3771":0.7640540541,"3772":0.765045045,"3773":0.766036036,"3774":0.767027027,"3775":0.768018018,"3776":0.769009009,"3777":0.77,"3778":0.770990991,"3779":0.771981982,"3780":0.772972973,"3781":0.773963964,"3782":0.774954955,"3783":0.7759459459,"3784":0.7769369369,"3785":0.7779279279,"3786":0.7789189189,"3787":0.7799099099,"3788":0.7809009009,"3789":0.7818918919,"3790":0.7828828829,"3791":0.7838738739,"3792":0.7848648649,"3793":0.7858558559,"3794":0.7868468468,"3795":0.7878378378,"3796":0.7888288288,"3797":0.7898198198,"3798":0.7908108108,"3799":0.7918018018,"3800":0.7927927928,"3801":0.7937837838,"3802":0.7947747748,"3803":0.7957657658,"3804":0.7967567568,"3805":0.7977477477,"3806":0.7987387387,"3807":0.7997297297,"3808":0.8007207207,"3809":0.8017117117,"3810":0.8027027027,"3811":0.8036936937,"3812":0.8046846847,"3813":0.8056756757,"3814":0.8066666667,"3815":0.8076576577,"3816":0.8086486486,"3817":0.8096396396,"3818":0.8106306306,"3819":0.8116216216,"3820":0.8126126126,"3821":0.8136036036,"3822":0.8145945946,"3823":0.8155855856,"3824":0.8165765766,"3825":0.8175675676,"3826":0.8185585586,"3827":0.8195495495,"3828":0.8205405405,"3829":0.8215315315,"3830":0.8225225225,"3831":0.8235135135,"3832":0.8245045045,"3833":0.8254954955,"3834":0.8264864865,"3835":0.8274774775,"3836":0.8284684685,"3837":0.8294594595,"3838":0.8304504505,"3839":0.8314414414,"3840":0.8324324324,"3841":0.8334234234,"3842":0.8344144144,"3843":0.8354054054,"3844":0.8363963964,"3845":0.8373873874,"3846":0.8383783784,"3847":0.8393693694,"3848":0.8403603604,"3849":0.8413513514,"3850":0.8423423423,"3851":0.8433333333,"3852":0.8443243243,"3853":0.8453153153,"3854":0.8463063063,"3855":0.8472972973,"3856":0.8482882883,"3857":0.8492792793,"3858":0.8502702703,"3859":0.8512612613,"3860":0.8522522523,"3861":0.8532432432,"3862":0.8542342342,"3863":0.8552252252,"3864":0.8562162162,"3865":0.8572072072,"3866":0.8581981982,"3867":0.8591891892,"3868":0.8601801802,"3869":0.8611711712,"3870":0.8621621622,"3871":0.8631531532,"3872":0.8641441441,"3873":0.8651351351,"3874":0.8661261261,"3875":0.8671171171,"3876":0.8681081081,"3877":0.8690990991,"3878":0.8700900901,"3879":0.8710810811,"3880":0.8720720721,"3881":0.8730630631,"3882":0.8740540541,"3883":0.875045045,"3884":0.876036036,"3885":0.877027027,"3886":0.878018018,"3887":0.879009009,"3888":0.88,"3889":0.880990991,"3890":0.881981982,"3891":0.882972973,"3892":0.883963964,"3893":0.884954955,"3894":0.8859459459,"3895":0.8869369369,"3896":0.8879279279,"3897":0.8889189189,"3898":0.8899099099,"3899":0.8909009009,"3900":0.8918918919,"3901":0.8928828829,"3902":0.8938738739,"3903":0.8948648649,"3904":0.8958558559,"3905":0.8968468468,"3906":0.8978378378,"3907":0.8988288288,"3908":0.8998198198,"3909":0.9008108108,"3910":0.9018018018,"3911":0.9027927928,"3912":0.9037837838,"3913":0.9047747748,"3914":0.9057657658,"3915":0.9067567568,"3916":0.9077477477,"3917":0.9087387387,"3918":0.9097297297,"3919":0.9107207207,"3920":0.9117117117,"3921":0.9127027027,"3922":0.9136936937,"3923":0.9146846847,"3924":0.9156756757,"3925":0.9166666667,"3926":0.9176576577,"3927":0.9186486486,"3928":0.9196396396,"3929":0.9206306306,"3930":0.9216216216,"3931":0.9226126126,"3932":0.9236036036,"3933":0.9245945946,"3934":0.9255855856,"3935":0.9265765766,"3936":0.9275675676,"3937":0.9285585586,"3938":0.9295495495,"3939":0.9305405405,"3940":0.9315315315,"3941":0.9325225225,"3942":0.9335135135,"3943":0.9345045045,"3944":0.9354954955,"3945":0.9364864865,"3946":0.9374774775,"3947":0.9384684685,"3948":0.9394594595,"3949":0.9404504505,"3950":0.9414414414,"3951":0.9424324324,"3952":0.9434234234,"3953":0.9444144144,"3954":0.9454054054,"3955":0.9463963964,"3956":0.9473873874,"3957":0.9483783784,"3958":0.9493693694,"3959":0.9503603604,"3960":0.9513513514,"3961":0.9523423423,"3962":0.9533333333,"3963":0.9543243243,"3964":0.9553153153,"3965":0.9563063063,"3966":0.9572972973,"3967":0.9582882883,"3968":0.9592792793,"3969":0.9602702703,"3970":0.9612612613,"3971":0.9622522523,"3972":0.9632432432,"3973":0.9642342342,"3974":0.9652252252,"3975":0.9662162162,"3976":0.9672072072,"3977":0.9681981982,"3978":0.9691891892,"3979":0.9701801802,"3980":0.9711711712,"3981":0.9721621622,"3982":0.9731531532,"3983":0.9741441441,"3984":0.9751351351,"3985":0.9761261261,"3986":0.9771171171,"3987":0.9781081081,"3988":0.9790990991,"3989":0.9800900901,"3990":0.9810810811,"3991":0.9820720721,"3992":0.9830630631,"3993":0.9840540541,"3994":0.985045045,"3995":0.986036036,"3996":0.987027027,"3997":0.988018018,"3998":0.989009009,"3999":0.99,"4000":0.0,"4001":0.000990991,"4002":0.001981982,"4003":0.002972973,"4004":0.003963964,"4005":0.004954955,"4006":0.0059459459,"4007":0.0069369369,"4008":0.0079279279,"4009":0.0089189189,"4010":0.0099099099,"4011":0.0109009009,"4012":0.0118918919,"4013":0.0128828829,"4014":0.0138738739,"4015":0.0148648649,"4016":0.0158558559,"4017":0.0168468468,"4018":0.0178378378,"4019":0.0188288288,"4020":0.0198198198,"4021":0.0208108108,"4022":0.0218018018,"4023":0.0227927928,"4024":0.0237837838,"4025":0.0247747748,"4026":0.0257657658,"4027":0.0267567568,"4028":0.0277477477,"4029":0.0287387387,"4030":0.0297297297,"4031":0.0307207207,"4032":0.0317117117,"4033":0.0327027027,"4034":0.0336936937,"4035":0.0346846847,"4036":0.0356756757,"4037":0.0366666667,"4038":0.0376576577,"4039":0.0386486486,"4040":0.0396396396,"4041":0.0406306306,"4042":0.0416216216,"4043":0.0426126126,"4044":0.0436036036,"4045":0.0445945946,"4046":0.0455855856,"4047":0.0465765766,"4048":0.0475675676,"4049":0.0485585586,"4050":0.0495495495,"4051":0.0505405405,"4052":0.0515315315,"4053":0.0525225225,"4054":0.0535135135,"4055":0.0545045045,"4056":0.0554954955,"4057":0.0564864865,"4058":0.0574774775,"4059":0.0584684685,"4060":0.0594594595,"4061":0.0604504505,"4062":0.0614414414,"4063":0.0624324324,"4064":0.0634234234,"4065":0.0644144144,"4066":0.0654054054,"4067":0.0663963964,"4068":0.0673873874,"4069":0.0683783784,"4070":0.0693693694,"4071":0.0703603604,"4072":0.0713513514,"4073":0.0723423423,"4074":0.0733333333,"4075":0.0743243243,"4076":0.0753153153,"4077":0.0763063063,"4078":0.0772972973,"4079":0.0782882883,"4080":0.0792792793,"4081":0.0802702703,"4082":0.0812612613,"4083":0.0822522523,"4084":0.0832432432,"4085":0.0842342342,"4086":0.0852252252,"4087":0.0862162162,"4088":0.0872072072,"4089":0.0881981982,"4090":0.0891891892,"4091":0.0901801802,"4092":0.0911711712,"4093":0.0921621622,"4094":0.0931531532,"4095":0.0941441441,"4096":0.0951351351,"4097":0.0961261261,"4098":0.0971171171,"4099":0.0981081081,"4100":0.0990990991,"4101":0.1000900901,"4102":0.1010810811,"4103":0.1020720721,"4104":0.1030630631,"4105":0.1040540541,"4106":0.105045045,"4107":0.106036036,"4108":0.107027027,"4109":0.108018018,"4110":0.109009009,"4111":0.11,"4112":0.110990991,"4113":0.111981982,"4114":0.112972973,"4115":0.113963964,"4116":0.114954955,"4117":0.1159459459,"4118":0.1169369369,"4119":0.1179279279,"4120":0.1189189189,"4121":0.1199099099,"4122":0.1209009009,"4123":0.1218918919,"4124":0.1228828829,"4125":0.1238738739,"4126":0.1248648649,"4127":0.1258558559,"4128":0.1268468468,"4129":0.1278378378,"4130":0.1288288288,"4131":0.1298198198,"4132":0.1308108108,"4133":0.1318018018,"4134":0.1327927928,"4135":0.1337837838,"4136":0.1347747748,"4137":0.1357657658,"4138":0.1367567568,"4139":0.1377477477,"4140":0.1387387387,"4141":0.1397297297,"4142":0.1407207207,"4143":0.1417117117,"4144":0.1427027027,"4145":0.1436936937,"4146":0.1446846847,"4147":0.1456756757,"4148":0.1466666667,"4149":0.1476576577,"4150":0.1486486486,"4151":0.1496396396,"4152":0.1506306306,"4153":0.1516216216,"4154":0.1526126126,"4155":0.1536036036,"4156":0.1545945946,"4157":0.1555855856,"4158":0.1565765766,"4159":0.1575675676,"4160":0.1585585586,"4161":0.1595495495,"4162":0.1605405405,"4163":0.1615315315,"4164":0.1625225225,"4165":0.1635135135,"4166":0.1645045045,"4167":0.1654954955,"4168":0.1664864865,"4169":0.1674774775,"4170":0.1684684685,"4171":0.1694594595,"4172":0.1704504505,"4173":0.1714414414,"4174":0.1724324324,"4175":0.1734234234,"4176":0.1744144144,"4177":0.1754054054,"4178":0.1763963964,"4179":0.1773873874,"4180":0.1783783784,"4181":0.1793693694,"4182":0.1803603604,"4183":0.1813513514,"4184":0.1823423423,"4185":0.1833333333,"4186":0.1843243243,"4187":0.1853153153,"4188":0.1863063063,"4189":0.1872972973,"4190":0.1882882883,"4191":0.1892792793,"4192":0.1902702703,"4193":0.1912612613,"4194":0.1922522523,"4195":0.1932432432,"4196":0.1942342342,"4197":0.1952252252,"4198":0.1962162162,"4199":0.1972072072,"4200":0.1981981982,"4201":0.1991891892,"4202":0.2001801802,"4203":0.2011711712,"4204":0.2021621622,"4205":0.2031531532,"4206":0.2041441441,"4207":0.2051351351,"4208":0.2061261261,"4209":0.2071171171,"4210":0.2081081081,"4211":0.2090990991,"4212":0.2100900901,"4213":0.2110810811,"4214":0.2120720721,"4215":0.2130630631,"4216":0.2140540541,"4217":0.215045045,"4218":0.216036036,"4219":0.217027027,"4220":0.218018018,"4221":0.219009009,"4222":0.22,"4223":0.220990991,"4224":0.221981982,"4225":0.222972973,"4226":0.223963964,"4227":0.224954955,"4228":0.2259459459,"4229":0.2269369369,"4230":0.2279279279,"4231":0.2289189189,"4232":0.2299099099,"4233":0.2309009009,"4234":0.2318918919,"4235":0.2328828829,"4236":0.2338738739,"4237":0.2348648649,"4238":0.2358558559,"4239":0.2368468468,"4240":0.2378378378,"4241":0.2388288288,"4242":0.2398198198,"4243":0.2408108108,"4244":0.2418018018,"4245":0.2427927928,"4246":0.2437837838,"4247":0.2447747748,"4248":0.2457657658,"4249":0.2467567568,"4250":0.2477477477,"4251":0.2487387387,"4252":0.2497297297,"4253":0.2507207207,"4254":0.2517117117,"4255":0.2527027027,"4256":0.2536936937,"4257":0.2546846847,"4258":0.2556756757,"4259":0.2566666667,"4260":0.2576576577,"4261":0.2586486486,"4262":0.2596396396,"4263":0.2606306306,"4264":0.2616216216,"4265":0.2626126126,"4266":0.2636036036,"4267":0.2645945946,"4268":0.2655855856,"4269":0.2665765766,"4270":0.2675675676,"4271":0.2685585586,"4272":0.2695495495,"4273":0.2705405405,"4274":0.2715315315,"4275":0.2725225225,"4276":0.2735135135,"4277":0.2745045045,"4278":0.2754954955,"4279":0.2764864865,"4280":0.2774774775,"4281":0.2784684685,"4282":0.2794594595,"4283":0.2804504505,"4284":0.2814414414,"4285":0.2824324324,"4286":0.2834234234,"4287":0.2844144144,"4288":0.2854054054,"4289":0.2863963964,"4290":0.2873873874,"4291":0.2883783784,"4292":0.2893693694,"4293":0.2903603604,"4294":0.2913513514,"4295":0.2923423423,"4296":0.2933333333,"4297":0.2943243243,"4298":0.2953153153,"4299":0.2963063063,"4300":0.2972972973,"4301":0.2982882883,"4302":0.2992792793,"4303":0.3002702703,"4304":0.3012612613,"4305":0.3022522523,"4306":0.3032432432,"4307":0.3042342342,"4308":0.3052252252,"4309":0.3062162162,"4310":0.3072072072,"4311":0.3081981982,"4312":0.3091891892,"4313":0.3101801802,"4314":0.3111711712,"4315":0.3121621622,"4316":0.3131531532,"4317":0.3141441441,"4318":0.3151351351,"4319":0.3161261261,"4320":0.3171171171,"4321":0.3181081081,"4322":0.3190990991,"4323":0.3200900901,"4324":0.3210810811,"4325":0.3220720721,"4326":0.3230630631,"4327":0.3240540541,"4328":0.325045045,"4329":0.326036036,"4330":0.327027027,"4331":0.328018018,"4332":0.329009009,"4333":0.33,"4334":0.330990991,"4335":0.331981982,"4336":0.332972973,"4337":0.333963964,"4338":0.334954955,"4339":0.3359459459,"4340":0.3369369369,"4341":0.3379279279,"4342":0.3389189189,"4343":0.3399099099,"4344":0.3409009009,"4345":0.3418918919,"4346":0.3428828829,"4347":0.3438738739,"4348":0.3448648649,"4349":0.3458558559,"4350":0.3468468468,"4351":0.3478378378,"4352":0.3488288288,"4353":0.3498198198,"4354":0.3508108108,"4355":0.3518018018,"4356":0.3527927928,"4357":0.3537837838,"4358":0.3547747748,"4359":0.3557657658,"4360":0.3567567568,"4361":0.3577477477,"4362":0.3587387387,"4363":0.3597297297,"4364":0.3607207207,"4365":0.3617117117,"4366":0.3627027027,"4367":0.3636936937,"4368":0.3646846847,"4369":0.3656756757,"4370":0.3666666667,"4371":0.3676576577,"4372":0.3686486486,"4373":0.3696396396,"4374":0.3706306306,"4375":0.3716216216,"4376":0.3726126126,"4377":0.3736036036,"4378":0.3745945946,"4379":0.3755855856,"4380":0.3765765766,"4381":0.3775675676,"4382":0.3785585586,"4383":0.3795495495,"4384":0.3805405405,"4385":0.3815315315,"4386":0.3825225225,"4387":0.3835135135,"4388":0.3845045045,"4389":0.3854954955,"4390":0.3864864865,"4391":0.3874774775,"4392":0.3884684685,"4393":0.3894594595,"4394":0.3904504505,"4395":0.3914414414,"4396":0.3924324324,"4397":0.3934234234,"4398":0.3944144144,"4399":0.3954054054,"4400":0.3963963964,"4401":0.3973873874,"4402":0.3983783784,"4403":0.3993693694,"4404":0.4003603604,"4405":0.4013513514,"4406":0.4023423423,"4407":0.4033333333,"4408":0.4043243243,"4409":0.4053153153,"4410":0.4063063063,"4411":0.4072972973,"4412":0.4082882883,"4413":0.4092792793,"4414":0.4102702703,"4415":0.4112612613,"4416":0.4122522523,"4417":0.4132432432,"4418":0.4142342342,"4419":0.4152252252,"4420":0.4162162162,"4421":0.4172072072,"4422":0.4181981982,"4423":0.4191891892,"4424":0.4201801802,"4425":0.4211711712,"4426":0.4221621622,"4427":0.4231531532,"4428":0.4241441441,"4429":0.4251351351,"4430":0.4261261261,"4431":0.4271171171,"4432":0.4281081081,"4433":0.4290990991,"4434":0.4300900901,"4435":0.4310810811,"4436":0.4320720721,"4437":0.4330630631,"4438":0.4340540541,"4439":0.435045045,"4440":0.436036036,"4441":0.437027027,"4442":0.438018018,"4443":0.439009009,"4444":0.44,"4445":0.440990991,"4446":0.441981982,"4447":0.442972973,"4448":0.443963964,"4449":0.444954955,"4450":0.4459459459,"4451":0.4469369369,"4452":0.4479279279,"4453":0.4489189189,"4454":0.4499099099,"4455":0.4509009009,"4456":0.4518918919,"4457":0.4528828829,"4458":0.4538738739,"4459":0.4548648649,"4460":0.4558558559,"4461":0.4568468468,"4462":0.4578378378,"4463":0.4588288288,"4464":0.4598198198,"4465":0.4608108108,"4466":0.4618018018,"4467":0.4627927928,"4468":0.4637837838,"4469":0.4647747748,"4470":0.4657657658,"4471":0.4667567568,"4472":0.4677477477,"4473":0.4687387387,"4474":0.4697297297,"4475":0.4707207207,"4476":0.4717117117,"4477":0.4727027027,"4478":0.4736936937,"4479":0.4746846847,"4480":0.4756756757,"4481":0.4766666667,"4482":0.4776576577,"4483":0.4786486486,"4484":0.4796396396,"4485":0.4806306306,"4486":0.4816216216,"4487":0.4826126126,"4488":0.4836036036,"4489":0.4845945946,"4490":0.4855855856,"4491":0.4865765766,"4492":0.4875675676,"4493":0.4885585586,"4494":0.4895495495,"4495":0.4905405405,"4496":0.4915315315,"4497":0.4925225225,"4498":0.4935135135,"4499":0.4945045045,"4500":0.4954954955,"4501":0.4964864865,"4502":0.4974774775,"4503":0.4984684685,"4504":0.4994594595,"4505":0.5004504505,"4506":0.5014414414,"4507":0.5024324324,"4508":0.5034234234,"4509":0.5044144144,"4510":0.5054054054,"4511":0.5063963964,"4512":0.5073873874,"4513":0.5083783784,"4514":0.5093693694,"4515":0.5103603604,"4516":0.5113513514,"4517":0.5123423423,"4518":0.5133333333,"4519":0.5143243243,"4520":0.5153153153,"4521":0.5163063063,"4522":0.5172972973,"4523":0.5182882883,"4524":0.5192792793,"4525":0.5202702703,"4526":0.5212612613,"4527":0.5222522523,"4528":0.5232432432,"4529":0.5242342342,"4530":0.5252252252,"4531":0.5262162162,"4532":0.5272072072,"4533":0.5281981982,"4534":0.5291891892,"4535":0.5301801802,"4536":0.5311711712,"4537":0.5321621622,"4538":0.5331531532,"4539":0.5341441441,"4540":0.5351351351,"4541":0.5361261261,"4542":0.5371171171,"4543":0.5381081081,"4544":0.5390990991,"4545":0.5400900901,"4546":0.5410810811,"4547":0.5420720721,"4548":0.5430630631,"4549":0.5440540541,"4550":0.545045045,"4551":0.546036036,"4552":0.547027027,"4553":0.548018018,"4554":0.549009009,"4555":0.55,"4556":0.550990991,"4557":0.551981982,"4558":0.552972973,"4559":0.553963964,"4560":0.554954955,"4561":0.5559459459,"4562":0.5569369369,"4563":0.5579279279,"4564":0.5589189189,"4565":0.5599099099,"4566":0.5609009009,"4567":0.5618918919,"4568":0.5628828829,"4569":0.5638738739,"4570":0.5648648649,"4571":0.5658558559,"4572":0.5668468468,"4573":0.5678378378,"4574":0.5688288288,"4575":0.5698198198,"4576":0.5708108108,"4577":0.5718018018,"4578":0.5727927928,"4579":0.5737837838,"4580":0.5747747748,"4581":0.5757657658,"4582":0.5767567568,"4583":0.5777477477,"4584":0.5787387387,"4585":0.5797297297,"4586":0.5807207207,"4587":0.5817117117,"4588":0.5827027027,"4589":0.5836936937,"4590":0.5846846847,"4591":0.5856756757,"4592":0.5866666667,"4593":0.5876576577,"4594":0.5886486486,"4595":0.5896396396,"4596":0.5906306306,"4597":0.5916216216,"4598":0.5926126126,"4599":0.5936036036,"4600":0.5945945946,"4601":0.5955855856,"4602":0.5965765766,"4603":0.5975675676,"4604":0.5985585586,"4605":0.5995495495,"4606":0.6005405405,"4607":0.6015315315,"4608":0.6025225225,"4609":0.6035135135,"4610":0.6045045045,"4611":0.6054954955,"4612":0.6064864865,"4613":0.6074774775,"4614":0.6084684685,"4615":0.6094594595,"4616":0.6104504505,"4617":0.6114414414,"4618":0.6124324324,"4619":0.6134234234,"4620":0.6144144144,"4621":0.6154054054,"4622":0.6163963964,"4623":0.6173873874,"4624":0.6183783784,"4625":0.6193693694,"4626":0.6203603604,"4627":0.6213513514,"4628":0.6223423423,"4629":0.6233333333,"4630":0.6243243243,"4631":0.6253153153,"4632":0.6263063063,"4633":0.6272972973,"4634":0.6282882883,"4635":0.6292792793,"4636":0.6302702703,"4637":0.6312612613,"4638":0.6322522523,"4639":0.6332432432,"4640":0.6342342342,"4641":0.6352252252,"4642":0.6362162162,"4643":0.6372072072,"4644":0.6381981982,"4645":0.6391891892,"4646":0.6401801802,"4647":0.6411711712,"4648":0.6421621622,"4649":0.6431531532,"4650":0.6441441441,"4651":0.6451351351,"4652":0.6461261261,"4653":0.6471171171,"4654":0.6481081081,"4655":0.6490990991,"4656":0.6500900901,"4657":0.6510810811,"4658":0.6520720721,"4659":0.6530630631,"4660":0.6540540541,"4661":0.655045045,"4662":0.656036036,"4663":0.657027027,"4664":0.658018018,"4665":0.659009009,"4666":0.66,"4667":0.660990991,"4668":0.661981982,"4669":0.662972973,"4670":0.663963964,"4671":0.664954955,"4672":0.6659459459,"4673":0.6669369369,"4674":0.6679279279,"4675":0.6689189189,"4676":0.6699099099,"4677":0.6709009009,"4678":0.6718918919,"4679":0.6728828829,"4680":0.6738738739,"4681":0.6748648649,"4682":0.6758558559,"4683":0.6768468468,"4684":0.6778378378,"4685":0.6788288288,"4686":0.6798198198,"4687":0.6808108108,"4688":0.6818018018,"4689":0.6827927928,"4690":0.6837837838,"4691":0.6847747748,"4692":0.6857657658,"4693":0.6867567568,"4694":0.6877477477,"4695":0.6887387387,"4696":0.6897297297,"4697":0.6907207207,"4698":0.6917117117,"4699":0.6927027027,"4700":0.6936936937,"4701":0.6946846847,"4702":0.6956756757,"4703":0.6966666667,"4704":0.6976576577,"4705":0.6986486486,"4706":0.6996396396,"4707":0.7006306306,"4708":0.7016216216,"4709":0.7026126126,"4710":0.7036036036,"4711":0.7045945946,"4712":0.7055855856,"4713":0.7065765766,"4714":0.7075675676,"4715":0.7085585586,"4716":0.7095495495,"4717":0.7105405405,"4718":0.7115315315,"4719":0.7125225225,"4720":0.7135135135,"4721":0.7145045045,"4722":0.7154954955,"4723":0.7164864865,"4724":0.7174774775,"4725":0.7184684685,"4726":0.7194594595,"4727":0.7204504505,"4728":0.7214414414,"4729":0.7224324324,"4730":0.7234234234,"4731":0.7244144144,"4732":0.7254054054,"4733":0.7263963964,"4734":0.7273873874,"4735":0.7283783784,"4736":0.7293693694,"4737":0.7303603604,"4738":0.7313513514,"4739":0.7323423423,"4740":0.7333333333,"4741":0.7343243243,"4742":0.7353153153,"4743":0.7363063063,"4744":0.7372972973,"4745":0.7382882883,"4746":0.7392792793,"4747":0.7402702703,"4748":0.7412612613,"4749":0.7422522523,"4750":0.7432432432,"4751":0.7442342342,"4752":0.7452252252,"4753":0.7462162162,"4754":0.7472072072,"4755":0.7481981982,"4756":0.7491891892,"4757":0.7501801802,"4758":0.7511711712,"4759":0.7521621622,"4760":0.7531531532,"4761":0.7541441441,"4762":0.7551351351,"4763":0.7561261261,"4764":0.7571171171,"4765":0.7581081081,"4766":0.7590990991,"4767":0.7600900901,"4768":0.7610810811,"4769":0.7620720721,"4770":0.7630630631,"4771":0.7640540541,"4772":0.765045045,"4773":0.766036036,"4774":0.767027027,"4775":0.768018018,"4776":0.769009009,"4777":0.77,"4778":0.770990991,"4779":0.771981982,"4780":0.772972973,"4781":0.773963964,"4782":0.774954955,"4783":0.7759459459,"4784":0.7769369369,"4785":0.7779279279,"4786":0.7789189189,"4787":0.7799099099,"4788":0.7809009009,"4789":0.7818918919,"4790":0.7828828829,"4791":0.7838738739,"4792":0.7848648649,"4793":0.7858558559,"4794":0.7868468468,"4795":0.7878378378,"4796":0.7888288288,"4797":0.7898198198,"4798":0.7908108108,"4799":0.7918018018,"4800":0.7927927928,"4801":0.7937837838,"4802":0.7947747748,"4803":0.7957657658,"4804":0.7967567568,"4805":0.7977477477,"4806":0.7987387387,"4807":0.7997297297,"4808":0.8007207207,"4809":0.8017117117,"4810":0.8027027027,"4811":0.8036936937,"4812":0.8046846847,"4813":0.8056756757,"4814":0.8066666667,"4815":0.8076576577,"4816":0.8086486486,"4817":0.8096396396,"4818":0.8106306306,"4819":0.8116216216,"4820":0.8126126126,"4821":0.8136036036,"4822":0.8145945946,"4823":0.8155855856,"4824":0.8165765766,"4825":0.8175675676,"4826":0.8185585586,"4827":0.8195495495,"4828":0.8205405405,"4829":0.8215315315,"4830":0.8225225225,"4831":0.8235135135,"4832":0.8245045045,"4833":0.8254954955,"4834":0.8264864865,"4835":0.8274774775,"4836":0.8284684685,"4837":0.8294594595,"4838":0.8304504505,"4839":0.8314414414,"4840":0.8324324324,"4841":0.8334234234,"4842":0.8344144144,"4843":0.8354054054,"4844":0.8363963964,"4845":0.8373873874,"4846":0.8383783784,"4847":0.8393693694,"4848":0.8403603604,"4849":0.8413513514,"4850":0.8423423423,"4851":0.8433333333,"4852":0.8443243243,"4853":0.8453153153,"4854":0.8463063063,"4855":0.8472972973,"4856":0.8482882883,"4857":0.8492792793,"4858":0.8502702703,"4859":0.8512612613,"4860":0.8522522523,"4861":0.8532432432,"4862":0.8542342342,"4863":0.8552252252,"4864":0.8562162162,"4865":0.8572072072,"4866":0.8581981982,"4867":0.8591891892,"4868":0.8601801802,"4869":0.8611711712,"4870":0.8621621622,"4871":0.8631531532,"4872":0.8641441441,"4873":0.8651351351,"4874":0.8661261261,"4875":0.8671171171,"4876":0.8681081081,"4877":0.8690990991,"4878":0.8700900901,"4879":0.8710810811,"4880":0.8720720721,"4881":0.8730630631,"4882":0.8740540541,"4883":0.875045045,"4884":0.876036036,"4885":0.877027027,"4886":0.878018018,"4887":0.879009009,"4888":0.88,"4889":0.880990991,"4890":0.881981982,"4891":0.882972973,"4892":0.883963964,"4893":0.884954955,"4894":0.8859459459,"4895":0.8869369369,"4896":0.8879279279,"4897":0.8889189189,"4898":0.8899099099,"4899":0.8909009009,"4900":0.8918918919,"4901":0.8928828829,"4902":0.8938738739,"4903":0.8948648649,"4904":0.8958558559,"4905":0.8968468468,"4906":0.8978378378,"4907":0.8988288288,"4908":0.8998198198,"4909":0.9008108108,"4910":0.9018018018,"4911":0.9027927928,"4912":0.9037837838,"4913":0.9047747748,"4914":0.9057657658,"4915":0.9067567568,"4916":0.9077477477,"4917":0.9087387387,"4918":0.9097297297,"4919":0.9107207207,"4920":0.9117117117,"4921":0.9127027027,"4922":0.9136936937,"4923":0.9146846847,"4924":0.9156756757,"4925":0.9166666667,"4926":0.9176576577,"4927":0.9186486486,"4928":0.9196396396,"4929":0.9206306306,"4930":0.9216216216,"4931":0.9226126126,"4932":0.9236036036,"4933":0.9245945946,"4934":0.9255855856,"4935":0.9265765766,"4936":0.9275675676,"4937":0.9285585586,"4938":0.9295495495,"4939":0.9305405405,"4940":0.9315315315,"4941":0.9325225225,"4942":0.9335135135,"4943":0.9345045045,"4944":0.9354954955,"4945":0.9364864865,"4946":0.9374774775,"4947":0.9384684685,"4948":0.9394594595,"4949":0.9404504505,"4950":0.9414414414,"4951":0.9424324324,"4952":0.9434234234,"4953":0.9444144144,"4954":0.9454054054,"4955":0.9463963964,"4956":0.9473873874,"4957":0.9483783784,"4958":0.9493693694,"4959":0.9503603604,"4960":0.9513513514,"4961":0.9523423423,"4962":0.9533333333,"4963":0.9543243243,"4964":0.9553153153,"4965":0.9563063063,"4966":0.9572972973,"4967":0.9582882883,"4968":0.9592792793,"4969":0.9602702703,"4970":0.9612612613,"4971":0.9622522523,"4972":0.9632432432,"4973":0.9642342342,"4974":0.9652252252,"4975":0.9662162162,"4976":0.9672072072,"4977":0.9681981982,"4978":0.9691891892,"4979":0.9701801802,"4980":0.9711711712,"4981":0.9721621622,"4982":0.9731531532,"4983":0.9741441441,"4984":0.9751351351,"4985":0.9761261261,"4986":0.9771171171,"4987":0.9781081081,"4988":0.9790990991,"4989":0.9800900901,"4990":0.9810810811,"4991":0.9820720721,"4992":0.9830630631,"4993":0.9840540541,"4994":0.985045045,"4995":0.986036036,"4996":0.987027027,"4997":0.988018018,"4998":0.989009009,"4999":0.99,"5000":0.0,"5001":0.000990991,"5002":0.001981982,"5003":0.002972973,"5004":0.003963964,"5005":0.004954955,"5006":0.0059459459,"5007":0.0069369369,"5008":0.0079279279,"5009":0.0089189189,"5010":0.0099099099,"5011":0.0109009009,"5012":0.0118918919,"5013":0.0128828829,"5014":0.0138738739,"5015":0.0148648649,"5016":0.0158558559,"5017":0.0168468468,"5018":0.0178378378,"5019":0.0188288288,"5020":0.0198198198,"5021":0.0208108108,"5022":0.0218018018,"5023":0.0227927928,"5024":0.0237837838,"5025":0.0247747748,"5026":0.0257657658,"5027":0.0267567568,"5028":0.0277477477,"5029":0.0287387387,"5030":0.0297297297,"5031":0.0307207207,"5032":0.0317117117,"5033":0.0327027027,"5034":0.0336936937,"5035":0.0346846847,"5036":0.0356756757,"5037":0.0366666667,"5038":0.0376576577,"5039":0.0386486486,"5040":0.0396396396,"5041":0.0406306306,"5042":0.0416216216,"5043":0.0426126126,"5044":0.0436036036,"5045":0.0445945946,"5046":0.0455855856,"5047":0.0465765766,"5048":0.0475675676,"5049":0.0485585586,"5050":0.0495495495,"5051":0.0505405405,"5052":0.0515315315,"5053":0.0525225225,"5054":0.0535135135,"5055":0.0545045045,"5056":0.0554954955,"5057":0.0564864865,"5058":0.0574774775,"5059":0.0584684685,"5060":0.0594594595,"5061":0.0604504505,"5062":0.0614414414,"5063":0.0624324324,"5064":0.0634234234,"5065":0.0644144144,"5066":0.0654054054,"5067":0.0663963964,"5068":0.0673873874,"5069":0.0683783784,"5070":0.0693693694,"5071":0.0703603604,"5072":0.0713513514,"5073":0.0723423423,"5074":0.0733333333,"5075":0.0743243243,"5076":0.0753153153,"5077":0.0763063063,"5078":0.0772972973,"5079":0.0782882883,"5080":0.0792792793,"5081":0.0802702703,"5082":0.0812612613,"5083":0.0822522523,"5084":0.0832432432,"5085":0.0842342342,"5086":0.0852252252,"5087":0.0862162162,"5088":0.0872072072,"5089":0.0881981982,"5090":0.0891891892,"5091":0.0901801802,"5092":0.0911711712,"5093":0.0921621622,"5094":0.0931531532,"5095":0.0941441441,"5096":0.0951351351,"5097":0.0961261261,"5098":0.0971171171,"5099":0.0981081081,"5100":0.0990990991,"5101":0.1000900901,"5102":0.1010810811,"5103":0.1020720721,"5104":0.1030630631,"5105":0.1040540541,"5106":0.105045045,"5107":0.106036036,"5108":0.107027027,"5109":0.108018018,"5110":0.109009009,"5111":0.11,"5112":0.110990991,"5113":0.111981982,"5114":0.112972973,"5115":0.113963964,"5116":0.114954955,"5117":0.1159459459,"5118":0.1169369369,"5119":0.1179279279,"5120":0.1189189189,"5121":0.1199099099,"5122":0.1209009009,"5123":0.1218918919,"5124":0.1228828829,"5125":0.1238738739,"5126":0.1248648649,"5127":0.1258558559,"5128":0.1268468468,"5129":0.1278378378,"5130":0.1288288288,"5131":0.1298198198,"5132":0.1308108108,"5133":0.1318018018,"5134":0.1327927928,"5135":0.1337837838,"5136":0.1347747748,"5137":0.1357657658,"5138":0.1367567568,"5139":0.1377477477,"5140":0.1387387387,"5141":0.1397297297,"5142":0.1407207207,"5143":0.1417117117,"5144":0.1427027027,"5145":0.1436936937,"5146":0.1446846847,"5147":0.1456756757,"5148":0.1466666667,"5149":0.1476576577,"5150":0.1486486486,"5151":0.1496396396,"5152":0.1506306306,"5153":0.1516216216,"5154":0.1526126126,"5155":0.1536036036,"5156":0.1545945946,"5157":0.1555855856,"5158":0.1565765766,"5159":0.1575675676,"5160":0.1585585586,"5161":0.1595495495,"5162":0.1605405405,"5163":0.1615315315,"5164":0.1625225225,"5165":0.1635135135,"5166":0.1645045045,"5167":0.1654954955,"5168":0.1664864865,"5169":0.1674774775,"5170":0.1684684685,"5171":0.1694594595,"5172":0.1704504505,"5173":0.1714414414,"5174":0.1724324324,"5175":0.1734234234,"5176":0.1744144144,"5177":0.1754054054,"5178":0.1763963964,"5179":0.1773873874,"5180":0.1783783784,"5181":0.1793693694,"5182":0.1803603604,"5183":0.1813513514,"5184":0.1823423423,"5185":0.1833333333,"5186":0.1843243243,"5187":0.1853153153,"5188":0.1863063063,"5189":0.1872972973,"5190":0.1882882883,"5191":0.1892792793,"5192":0.1902702703,"5193":0.1912612613,"5194":0.1922522523,"5195":0.1932432432,"5196":0.1942342342,"5197":0.1952252252,"5198":0.1962162162,"5199":0.1972072072,"5200":0.1981981982,"5201":0.1991891892,"5202":0.2001801802,"5203":0.2011711712,"5204":0.2021621622,"5205":0.2031531532,"5206":0.2041441441,"5207":0.2051351351,"5208":0.2061261261,"5209":0.2071171171,"5210":0.2081081081,"5211":0.2090990991,"5212":0.2100900901,"5213":0.2110810811,"5214":0.2120720721,"5215":0.2130630631,"5216":0.2140540541,"5217":0.215045045,"5218":0.216036036,"5219":0.217027027,"5220":0.218018018,"5221":0.219009009,"5222":0.22,"5223":0.220990991,"5224":0.221981982,"5225":0.222972973,"5226":0.223963964,"5227":0.224954955,"5228":0.2259459459,"5229":0.2269369369,"5230":0.2279279279,"5231":0.2289189189,"5232":0.2299099099,"5233":0.2309009009,"5234":0.2318918919,"5235":0.2328828829,"5236":0.2338738739,"5237":0.2348648649,"5238":0.2358558559,"5239":0.2368468468,"5240":0.2378378378,"5241":0.2388288288,"5242":0.2398198198,"5243":0.2408108108,"5244":0.2418018018,"5245":0.2427927928,"5246":0.2437837838,"5247":0.2447747748,"5248":0.2457657658,"5249":0.2467567568,"5250":0.2477477477,"5251":0.2487387387,"5252":0.2497297297,"5253":0.2507207207,"5254":0.2517117117,"5255":0.2527027027,"5256":0.2536936937,"5257":0.2546846847,"5258":0.2556756757,"5259":0.2566666667,"5260":0.2576576577,"5261":0.2586486486,"5262":0.2596396396,"5263":0.2606306306,"5264":0.2616216216,"5265":0.2626126126,"5266":0.2636036036,"5267":0.2645945946,"5268":0.2655855856,"5269":0.2665765766,"5270":0.2675675676,"5271":0.2685585586,"5272":0.2695495495,"5273":0.2705405405,"5274":0.2715315315,"5275":0.2725225225,"5276":0.2735135135,"5277":0.2745045045,"5278":0.2754954955,"5279":0.2764864865,"5280":0.2774774775,"5281":0.2784684685,"5282":0.2794594595,"5283":0.2804504505,"5284":0.2814414414,"5285":0.2824324324,"5286":0.2834234234,"5287":0.2844144144,"5288":0.2854054054,"5289":0.2863963964,"5290":0.2873873874,"5291":0.2883783784,"5292":0.2893693694,"5293":0.2903603604,"5294":0.2913513514,"5295":0.2923423423,"5296":0.2933333333,"5297":0.2943243243,"5298":0.2953153153,"5299":0.2963063063,"5300":0.2972972973,"5301":0.2982882883,"5302":0.2992792793,"5303":0.3002702703,"5304":0.3012612613,"5305":0.3022522523,"5306":0.3032432432,"5307":0.3042342342,"5308":0.3052252252,"5309":0.3062162162,"5310":0.3072072072,"5311":0.3081981982,"5312":0.3091891892,"5313":0.3101801802,"5314":0.3111711712,"5315":0.3121621622,"5316":0.3131531532,"5317":0.3141441441,"5318":0.3151351351,"5319":0.3161261261,"5320":0.3171171171,"5321":0.3181081081,"5322":0.3190990991,"5323":0.3200900901,"5324":0.3210810811,"5325":0.3220720721,"5326":0.3230630631,"5327":0.3240540541,"5328":0.325045045,"5329":0.326036036,"5330":0.327027027,"5331":0.328018018,"5332":0.329009009,"5333":0.33,"5334":0.330990991,"5335":0.331981982,"5336":0.332972973,"5337":0.333963964,"5338":0.334954955,"5339":0.3359459459,"5340":0.3369369369,"5341":0.3379279279,"5342":0.3389189189,"5343":0.3399099099,"5344":0.3409009009,"5345":0.3418918919,"5346":0.3428828829,"5347":0.3438738739,"5348":0.3448648649,"5349":0.3458558559,"5350":0.3468468468,"5351":0.3478378378,"5352":0.3488288288,"5353":0.3498198198,"5354":0.3508108108,"5355":0.3518018018,"5356":0.3527927928,"5357":0.3537837838,"5358":0.3547747748,"5359":0.3557657658,"5360":0.3567567568,"5361":0.3577477477,"5362":0.3587387387,"5363":0.3597297297,"5364":0.3607207207,"5365":0.3617117117,"5366":0.3627027027,"5367":0.3636936937,"5368":0.3646846847,"5369":0.3656756757,"5370":0.3666666667,"5371":0.3676576577,"5372":0.3686486486,"5373":0.3696396396,"5374":0.3706306306,"5375":0.3716216216,"5376":0.3726126126,"5377":0.3736036036,"5378":0.3745945946,"5379":0.3755855856,"5380":0.3765765766,"5381":0.3775675676,"5382":0.3785585586,"5383":0.3795495495,"5384":0.3805405405,"5385":0.3815315315,"5386":0.3825225225,"5387":0.3835135135,"5388":0.3845045045,"5389":0.3854954955,"5390":0.3864864865,"5391":0.3874774775,"5392":0.3884684685,"5393":0.3894594595,"5394":0.3904504505,"5395":0.3914414414,"5396":0.3924324324,"5397":0.3934234234,"5398":0.3944144144,"5399":0.3954054054,"5400":0.3963963964,"5401":0.3973873874,"5402":0.3983783784,"5403":0.3993693694,"5404":0.4003603604,"5405":0.4013513514,"5406":0.4023423423,"5407":0.4033333333,"5408":0.4043243243,"5409":0.4053153153,"5410":0.4063063063,"5411":0.4072972973,"5412":0.4082882883,"5413":0.4092792793,"5414":0.4102702703,"5415":0.4112612613,"5416":0.4122522523,"5417":0.4132432432,"5418":0.4142342342,"5419":0.4152252252,"5420":0.4162162162,"5421":0.4172072072,"5422":0.4181981982,"5423":0.4191891892,"5424":0.4201801802,"5425":0.4211711712,"5426":0.4221621622,"5427":0.4231531532,"5428":0.4241441441,"5429":0.4251351351,"5430":0.4261261261,"5431":0.4271171171,"5432":0.4281081081,"5433":0.4290990991,"5434":0.4300900901,"5435":0.4310810811,"5436":0.4320720721,"5437":0.4330630631,"5438":0.4340540541,"5439":0.435045045,"5440":0.436036036,"5441":0.437027027,"5442":0.438018018,"5443":0.439009009,"5444":0.44,"5445":0.440990991,"5446":0.441981982,"5447":0.442972973,"5448":0.443963964,"5449":0.444954955,"5450":0.4459459459,"5451":0.4469369369,"5452":0.4479279279,"5453":0.4489189189,"5454":0.4499099099,"5455":0.4509009009,"5456":0.4518918919,"5457":0.4528828829,"5458":0.4538738739,"5459":0.4548648649,"5460":0.4558558559,"5461":0.4568468468,"5462":0.4578378378,"5463":0.4588288288,"5464":0.4598198198,"5465":0.4608108108,"5466":0.4618018018,"5467":0.4627927928,"5468":0.4637837838,"5469":0.4647747748,"5470":0.4657657658,"5471":0.4667567568,"5472":0.4677477477,"5473":0.4687387387,"5474":0.4697297297,"5475":0.4707207207,"5476":0.4717117117,"5477":0.4727027027,"5478":0.4736936937,"5479":0.4746846847,"5480":0.4756756757,"5481":0.4766666667,"5482":0.4776576577,"5483":0.4786486486,"5484":0.4796396396,"5485":0.4806306306,"5486":0.4816216216,"5487":0.4826126126,"5488":0.4836036036,"5489":0.4845945946,"5490":0.4855855856,"5491":0.4865765766,"5492":0.4875675676,"5493":0.4885585586,"5494":0.4895495495,"5495":0.4905405405,"5496":0.4915315315,"5497":0.4925225225,"5498":0.4935135135,"5499":0.4945045045,"5500":0.4954954955,"5501":0.4964864865,"5502":0.4974774775,"5503":0.4984684685,"5504":0.4994594595,"5505":0.5004504505,"5506":0.5014414414,"5507":0.5024324324,"5508":0.5034234234,"5509":0.5044144144,"5510":0.5054054054,"5511":0.5063963964,"5512":0.5073873874,"5513":0.5083783784,"5514":0.5093693694,"5515":0.5103603604,"5516":0.5113513514,"5517":0.5123423423,"5518":0.5133333333,"5519":0.5143243243,"5520":0.5153153153,"5521":0.5163063063,"5522":0.5172972973,"5523":0.5182882883,"5524":0.5192792793,"5525":0.5202702703,"5526":0.5212612613,"5527":0.5222522523,"5528":0.5232432432,"5529":0.5242342342,"5530":0.5252252252,"5531":0.5262162162,"5532":0.5272072072,"5533":0.5281981982,"5534":0.5291891892,"5535":0.5301801802,"5536":0.5311711712,"5537":0.5321621622,"5538":0.5331531532,"5539":0.5341441441,"5540":0.5351351351,"5541":0.5361261261,"5542":0.5371171171,"5543":0.5381081081,"5544":0.5390990991,"5545":0.5400900901,"5546":0.5410810811,"5547":0.5420720721,"5548":0.5430630631,"5549":0.5440540541,"5550":0.545045045,"5551":0.546036036,"5552":0.547027027,"5553":0.548018018,"5554":0.549009009,"5555":0.55,"5556":0.550990991,"5557":0.551981982,"5558":0.552972973,"5559":0.553963964,"5560":0.554954955,"5561":0.5559459459,"5562":0.5569369369,"5563":0.5579279279,"5564":0.5589189189,"5565":0.5599099099,"5566":0.5609009009,"5567":0.5618918919,"5568":0.5628828829,"5569":0.5638738739,"5570":0.5648648649,"5571":0.5658558559,"5572":0.5668468468,"5573":0.5678378378,"5574":0.5688288288,"5575":0.5698198198,"5576":0.5708108108,"5577":0.5718018018,"5578":0.5727927928,"5579":0.5737837838,"5580":0.5747747748,"5581":0.5757657658,"5582":0.5767567568,"5583":0.5777477477,"5584":0.5787387387,"5585":0.5797297297,"5586":0.5807207207,"5587":0.5817117117,"5588":0.5827027027,"5589":0.5836936937,"5590":0.5846846847,"5591":0.5856756757,"5592":0.5866666667,"5593":0.5876576577,"5594":0.5886486486,"5595":0.5896396396,"5596":0.5906306306,"5597":0.5916216216,"5598":0.5926126126,"5599":0.5936036036,"5600":0.5945945946,"5601":0.5955855856,"5602":0.5965765766,"5603":0.5975675676,"5604":0.5985585586,"5605":0.5995495495,"5606":0.6005405405,"5607":0.6015315315,"5608":0.6025225225,"5609":0.6035135135,"5610":0.6045045045,"5611":0.6054954955,"5612":0.6064864865,"5613":0.6074774775,"5614":0.6084684685,"5615":0.6094594595,"5616":0.6104504505,"5617":0.6114414414,"5618":0.6124324324,"5619":0.6134234234,"5620":0.6144144144,"5621":0.6154054054,"5622":0.6163963964,"5623":0.6173873874,"5624":0.6183783784,"5625":0.6193693694,"5626":0.6203603604,"5627":0.6213513514,"5628":0.6223423423,"5629":0.6233333333,"5630":0.6243243243,"5631":0.6253153153,"5632":0.6263063063,"5633":0.6272972973,"5634":0.6282882883,"5635":0.6292792793,"5636":0.6302702703,"5637":0.6312612613,"5638":0.6322522523,"5639":0.6332432432,"5640":0.6342342342,"5641":0.6352252252,"5642":0.6362162162,"5643":0.6372072072,"5644":0.6381981982,"5645":0.6391891892,"5646":0.6401801802,"5647":0.6411711712,"5648":0.6421621622,"5649":0.6431531532,"5650":0.6441441441,"5651":0.6451351351,"5652":0.6461261261,"5653":0.6471171171,"5654":0.6481081081,"5655":0.6490990991,"5656":0.6500900901,"5657":0.6510810811,"5658":0.6520720721,"5659":0.6530630631,"5660":0.6540540541,"5661":0.655045045,"5662":0.656036036,"5663":0.657027027,"5664":0.658018018,"5665":0.659009009,"5666":0.66,"5667":0.660990991,"5668":0.661981982,"5669":0.662972973,"5670":0.663963964,"5671":0.664954955,"5672":0.6659459459,"5673":0.6669369369,"5674":0.6679279279,"5675":0.6689189189,"5676":0.6699099099,"5677":0.6709009009,"5678":0.6718918919,"5679":0.6728828829,"5680":0.6738738739,"5681":0.6748648649,"5682":0.6758558559,"5683":0.6768468468,"5684":0.6778378378,"5685":0.6788288288,"5686":0.6798198198,"5687":0.6808108108,"5688":0.6818018018,"5689":0.6827927928,"5690":0.6837837838,"5691":0.6847747748,"5692":0.6857657658,"5693":0.6867567568,"5694":0.6877477477,"5695":0.6887387387,"5696":0.6897297297,"5697":0.6907207207,"5698":0.6917117117,"5699":0.6927027027,"5700":0.6936936937,"5701":0.6946846847,"5702":0.6956756757,"5703":0.6966666667,"5704":0.6976576577,"5705":0.6986486486,"5706":0.6996396396,"5707":0.7006306306,"5708":0.7016216216,"5709":0.7026126126,"5710":0.7036036036,"5711":0.7045945946,"5712":0.7055855856,"5713":0.7065765766,"5714":0.7075675676,"5715":0.7085585586,"5716":0.7095495495,"5717":0.7105405405,"5718":0.7115315315,"5719":0.7125225225,"5720":0.7135135135,"5721":0.7145045045,"5722":0.7154954955,"5723":0.7164864865,"5724":0.7174774775,"5725":0.7184684685,"5726":0.7194594595,"5727":0.7204504505,"5728":0.7214414414,"5729":0.7224324324,"5730":0.7234234234,"5731":0.7244144144,"5732":0.7254054054,"5733":0.7263963964,"5734":0.7273873874,"5735":0.7283783784,"5736":0.7293693694,"5737":0.7303603604,"5738":0.7313513514,"5739":0.7323423423,"5740":0.7333333333,"5741":0.7343243243,"5742":0.7353153153,"5743":0.7363063063,"5744":0.7372972973,"5745":0.7382882883,"5746":0.7392792793,"5747":0.7402702703,"5748":0.7412612613,"5749":0.7422522523,"5750":0.7432432432,"5751":0.7442342342,"5752":0.7452252252,"5753":0.7462162162,"5754":0.7472072072,"5755":0.7481981982,"5756":0.7491891892,"5757":0.7501801802,"5758":0.7511711712,"5759":0.7521621622,"5760":0.7531531532,"5761":0.7541441441,"5762":0.7551351351,"5763":0.7561261261,"5764":0.7571171171,"5765":0.7581081081,"5766":0.7590990991,"5767":0.7600900901,"5768":0.7610810811,"5769":0.7620720721,"5770":0.7630630631,"5771":0.7640540541,"5772":0.765045045,"5773":0.766036036,"5774":0.767027027,"5775":0.768018018,"5776":0.769009009,"5777":0.77,"5778":0.770990991,"5779":0.771981982,"5780":0.772972973,"5781":0.773963964,"5782":0.774954955,"5783":0.7759459459,"5784":0.7769369369,"5785":0.7779279279,"5786":0.7789189189,"5787":0.7799099099,"5788":0.7809009009,"5789":0.7818918919,"5790":0.7828828829,"5791":0.7838738739,"5792":0.7848648649,"5793":0.7858558559,"5794":0.7868468468,"5795":0.7878378378,"5796":0.7888288288,"5797":0.7898198198,"5798":0.7908108108,"5799":0.7918018018,"5800":0.7927927928,"5801":0.7937837838,"5802":0.7947747748,"5803":0.7957657658,"5804":0.7967567568,"5805":0.7977477477,"5806":0.7987387387,"5807":0.7997297297,"5808":0.8007207207,"5809":0.8017117117,"5810":0.8027027027,"5811":0.8036936937,"5812":0.8046846847,"5813":0.8056756757,"5814":0.8066666667,"5815":0.8076576577,"5816":0.8086486486,"5817":0.8096396396,"5818":0.8106306306,"5819":0.8116216216,"5820":0.8126126126,"5821":0.8136036036,"5822":0.8145945946,"5823":0.8155855856,"5824":0.8165765766,"5825":0.8175675676,"5826":0.8185585586,"5827":0.8195495495,"5828":0.8205405405,"5829":0.8215315315,"5830":0.8225225225,"5831":0.8235135135,"5832":0.8245045045,"5833":0.8254954955,"5834":0.8264864865,"5835":0.8274774775,"5836":0.8284684685,"5837":0.8294594595,"5838":0.8304504505,"5839":0.8314414414,"5840":0.8324324324,"5841":0.8334234234,"5842":0.8344144144,"5843":0.8354054054,"5844":0.8363963964,"5845":0.8373873874,"5846":0.8383783784,"5847":0.8393693694,"5848":0.8403603604,"5849":0.8413513514,"5850":0.8423423423,"5851":0.8433333333,"5852":0.8443243243,"5853":0.8453153153,"5854":0.8463063063,"5855":0.8472972973,"5856":0.8482882883,"5857":0.8492792793,"5858":0.8502702703,"5859":0.8512612613,"5860":0.8522522523,"5861":0.8532432432,"5862":0.8542342342,"5863":0.8552252252,"5864":0.8562162162,"5865":0.8572072072,"5866":0.8581981982,"5867":0.8591891892,"5868":0.8601801802,"5869":0.8611711712,"5870":0.8621621622,"5871":0.8631531532,"5872":0.8641441441,"5873":0.8651351351,"5874":0.8661261261,"5875":0.8671171171,"5876":0.8681081081,"5877":0.8690990991,"5878":0.8700900901,"5879":0.8710810811,"5880":0.8720720721,"5881":0.8730630631,"5882":0.8740540541,"5883":0.875045045,"5884":0.876036036,"5885":0.877027027,"5886":0.878018018,"5887":0.879009009,"5888":0.88,"5889":0.880990991,"5890":0.881981982,"5891":0.882972973,"5892":0.883963964,"5893":0.884954955,"5894":0.8859459459,"5895":0.8869369369,"5896":0.8879279279,"5897":0.8889189189,"5898":0.8899099099,"5899":0.8909009009,"5900":0.8918918919,"5901":0.8928828829,"5902":0.8938738739,"5903":0.8948648649,"5904":0.8958558559,"5905":0.8968468468,"5906":0.8978378378,"5907":0.8988288288,"5908":0.8998198198,"5909":0.9008108108,"5910":0.9018018018,"5911":0.9027927928,"5912":0.9037837838,"5913":0.9047747748,"5914":0.9057657658,"5915":0.9067567568,"5916":0.9077477477,"5917":0.9087387387,"5918":0.9097297297,"5919":0.9107207207,"5920":0.9117117117,"5921":0.9127027027,"5922":0.9136936937,"5923":0.9146846847,"5924":0.9156756757,"5925":0.9166666667,"5926":0.9176576577,"5927":0.9186486486,"5928":0.9196396396,"5929":0.9206306306,"5930":0.9216216216,"5931":0.9226126126,"5932":0.9236036036,"5933":0.9245945946,"5934":0.9255855856,"5935":0.9265765766,"5936":0.9275675676,"5937":0.9285585586,"5938":0.9295495495,"5939":0.9305405405,"5940":0.9315315315,"5941":0.9325225225,"5942":0.9335135135,"5943":0.9345045045,"5944":0.9354954955,"5945":0.9364864865,"5946":0.9374774775,"5947":0.9384684685,"5948":0.9394594595,"5949":0.9404504505,"5950":0.9414414414,"5951":0.9424324324,"5952":0.9434234234,"5953":0.9444144144,"5954":0.9454054054,"5955":0.9463963964,"5956":0.9473873874,"5957":0.9483783784,"5958":0.9493693694,"5959":0.9503603604,"5960":0.9513513514,"5961":0.9523423423,"5962":0.9533333333,"5963":0.9543243243,"5964":0.9553153153,"5965":0.9563063063,"5966":0.9572972973,"5967":0.9582882883,"5968":0.9592792793,"5969":0.9602702703,"5970":0.9612612613,"5971":0.9622522523,"5972":0.9632432432,"5973":0.9642342342,"5974":0.9652252252,"5975":0.9662162162,"5976":0.9672072072,"5977":0.9681981982,"5978":0.9691891892,"5979":0.9701801802,"5980":0.9711711712,"5981":0.9721621622,"5982":0.9731531532,"5983":0.9741441441,"5984":0.9751351351,"5985":0.9761261261,"5986":0.9771171171,"5987":0.9781081081,"5988":0.9790990991,"5989":0.9800900901,"5990":0.9810810811,"5991":0.9820720721,"5992":0.9830630631,"5993":0.9840540541,"5994":0.985045045,"5995":0.986036036,"5996":0.987027027,"5997":0.988018018,"5998":0.989009009,"5999":0.99,"6000":0.0,"6001":0.000990991,"6002":0.001981982,"6003":0.002972973,"6004":0.003963964,"6005":0.004954955,"6006":0.0059459459,"6007":0.0069369369,"6008":0.0079279279,"6009":0.0089189189,"6010":0.0099099099,"6011":0.0109009009,"6012":0.0118918919,"6013":0.0128828829,"6014":0.0138738739,"6015":0.0148648649,"6016":0.0158558559,"6017":0.0168468468,"6018":0.0178378378,"6019":0.0188288288,"6020":0.0198198198,"6021":0.0208108108,"6022":0.0218018018,"6023":0.0227927928,"6024":0.0237837838,"6025":0.0247747748,"6026":0.0257657658,"6027":0.0267567568,"6028":0.0277477477,"6029":0.0287387387,"6030":0.0297297297,"6031":0.0307207207,"6032":0.0317117117,"6033":0.0327027027,"6034":0.0336936937,"6035":0.0346846847,"6036":0.0356756757,"6037":0.0366666667,"6038":0.0376576577,"6039":0.0386486486,"6040":0.0396396396,"6041":0.0406306306,"6042":0.0416216216,"6043":0.0426126126,"6044":0.0436036036,"6045":0.0445945946,"6046":0.0455855856,"6047":0.0465765766,"6048":0.0475675676,"6049":0.0485585586,"6050":0.0495495495,"6051":0.0505405405,"6052":0.0515315315,"6053":0.0525225225,"6054":0.0535135135,"6055":0.0545045045,"6056":0.0554954955,"6057":0.0564864865,"6058":0.0574774775,"6059":0.0584684685,"6060":0.0594594595,"6061":0.0604504505,"6062":0.0614414414,"6063":0.0624324324,"6064":0.0634234234,"6065":0.0644144144,"6066":0.0654054054,"6067":0.0663963964,"6068":0.0673873874,"6069":0.0683783784,"6070":0.0693693694,"6071":0.0703603604,"6072":0.0713513514,"6073":0.0723423423,"6074":0.0733333333,"6075":0.0743243243,"6076":0.0753153153,"6077":0.0763063063,"6078":0.0772972973,"6079":0.0782882883,"6080":0.0792792793,"6081":0.0802702703,"6082":0.0812612613,"6083":0.0822522523,"6084":0.0832432432,"6085":0.0842342342,"6086":0.0852252252,"6087":0.0862162162,"6088":0.0872072072,"6089":0.0881981982,"6090":0.0891891892,"6091":0.0901801802,"6092":0.0911711712,"6093":0.0921621622,"6094":0.0931531532,"6095":0.0941441441,"6096":0.0951351351,"6097":0.0961261261,"6098":0.0971171171,"6099":0.0981081081,"6100":0.0990990991,"6101":0.1000900901,"6102":0.1010810811,"6103":0.1020720721,"6104":0.1030630631,"6105":0.1040540541,"6106":0.105045045,"6107":0.106036036,"6108":0.107027027,"6109":0.108018018,"6110":0.109009009,"6111":0.11,"6112":0.110990991,"6113":0.111981982,"6114":0.112972973,"6115":0.113963964,"6116":0.114954955,"6117":0.1159459459,"6118":0.1169369369,"6119":0.1179279279,"6120":0.1189189189,"6121":0.1199099099,"6122":0.1209009009,"6123":0.1218918919,"6124":0.1228828829,"6125":0.1238738739,"6126":0.1248648649,"6127":0.1258558559,"6128":0.1268468468,"6129":0.1278378378,"6130":0.1288288288,"6131":0.1298198198,"6132":0.1308108108,"6133":0.1318018018,"6134":0.1327927928,"6135":0.1337837838,"6136":0.1347747748,"6137":0.1357657658,"6138":0.1367567568,"6139":0.1377477477,"6140":0.1387387387,"6141":0.1397297297,"6142":0.1407207207,"6143":0.1417117117,"6144":0.1427027027,"6145":0.1436936937,"6146":0.1446846847,"6147":0.1456756757,"6148":0.1466666667,"6149":0.1476576577,"6150":0.1486486486,"6151":0.1496396396,"6152":0.1506306306,"6153":0.1516216216,"6154":0.1526126126,"6155":0.1536036036,"6156":0.1545945946,"6157":0.1555855856,"6158":0.1565765766,"6159":0.1575675676,"6160":0.1585585586,"6161":0.1595495495,"6162":0.1605405405,"6163":0.1615315315,"6164":0.1625225225,"6165":0.1635135135,"6166":0.1645045045,"6167":0.1654954955,"6168":0.1664864865,"6169":0.1674774775,"6170":0.1684684685,"6171":0.1694594595,"6172":0.1704504505,"6173":0.1714414414,"6174":0.1724324324,"6175":0.1734234234,"6176":0.1744144144,"6177":0.1754054054,"6178":0.1763963964,"6179":0.1773873874,"6180":0.1783783784,"6181":0.1793693694,"6182":0.1803603604,"6183":0.1813513514,"6184":0.1823423423,"6185":0.1833333333,"6186":0.1843243243,"6187":0.1853153153,"6188":0.1863063063,"6189":0.1872972973,"6190":0.1882882883,"6191":0.1892792793,"6192":0.1902702703,"6193":0.1912612613,"6194":0.1922522523,"6195":0.1932432432,"6196":0.1942342342,"6197":0.1952252252,"6198":0.1962162162,"6199":0.1972072072,"6200":0.1981981982,"6201":0.1991891892,"6202":0.2001801802,"6203":0.2011711712,"6204":0.2021621622,"6205":0.2031531532,"6206":0.2041441441,"6207":0.2051351351,"6208":0.2061261261,"6209":0.2071171171,"6210":0.2081081081,"6211":0.2090990991,"6212":0.2100900901,"6213":0.2110810811,"6214":0.2120720721,"6215":0.2130630631,"6216":0.2140540541,"6217":0.215045045,"6218":0.216036036,"6219":0.217027027,"6220":0.218018018,"6221":0.219009009,"6222":0.22,"6223":0.220990991,"6224":0.221981982,"6225":0.222972973,"6226":0.223963964,"6227":0.224954955,"6228":0.2259459459,"6229":0.2269369369,"6230":0.2279279279,"6231":0.2289189189,"6232":0.2299099099,"6233":0.2309009009,"6234":0.2318918919,"6235":0.2328828829,"6236":0.2338738739,"6237":0.2348648649,"6238":0.2358558559,"6239":0.2368468468,"6240":0.2378378378,"6241":0.2388288288,"6242":0.2398198198,"6243":0.2408108108,"6244":0.2418018018,"6245":0.2427927928,"6246":0.2437837838,"6247":0.2447747748,"6248":0.2457657658,"6249":0.2467567568,"6250":0.2477477477,"6251":0.2487387387,"6252":0.2497297297,"6253":0.2507207207,"6254":0.2517117117,"6255":0.2527027027,"6256":0.2536936937,"6257":0.2546846847,"6258":0.2556756757,"6259":0.2566666667,"6260":0.2576576577,"6261":0.2586486486,"6262":0.2596396396,"6263":0.2606306306,"6264":0.2616216216,"6265":0.2626126126,"6266":0.2636036036,"6267":0.2645945946,"6268":0.2655855856,"6269":0.2665765766,"6270":0.2675675676,"6271":0.2685585586,"6272":0.2695495495,"6273":0.2705405405,"6274":0.2715315315,"6275":0.2725225225,"6276":0.2735135135,"6277":0.2745045045,"6278":0.2754954955,"6279":0.2764864865,"6280":0.2774774775,"6281":0.2784684685,"6282":0.2794594595,"6283":0.2804504505,"6284":0.2814414414,"6285":0.2824324324,"6286":0.2834234234,"6287":0.2844144144,"6288":0.2854054054,"6289":0.2863963964,"6290":0.2873873874,"6291":0.2883783784,"6292":0.2893693694,"6293":0.2903603604,"6294":0.2913513514,"6295":0.2923423423,"6296":0.2933333333,"6297":0.2943243243,"6298":0.2953153153,"6299":0.2963063063,"6300":0.2972972973,"6301":0.2982882883,"6302":0.2992792793,"6303":0.3002702703,"6304":0.3012612613,"6305":0.3022522523,"6306":0.3032432432,"6307":0.3042342342,"6308":0.3052252252,"6309":0.3062162162,"6310":0.3072072072,"6311":0.3081981982,"6312":0.3091891892,"6313":0.3101801802,"6314":0.3111711712,"6315":0.3121621622,"6316":0.3131531532,"6317":0.3141441441,"6318":0.3151351351,"6319":0.3161261261,"6320":0.3171171171,"6321":0.3181081081,"6322":0.3190990991,"6323":0.3200900901,"6324":0.3210810811,"6325":0.3220720721,"6326":0.3230630631,"6327":0.3240540541,"6328":0.325045045,"6329":0.326036036,"6330":0.327027027,"6331":0.328018018,"6332":0.329009009,"6333":0.33,"6334":0.330990991,"6335":0.331981982,"6336":0.332972973,"6337":0.333963964,"6338":0.334954955,"6339":0.3359459459,"6340":0.3369369369,"6341":0.3379279279,"6342":0.3389189189,"6343":0.3399099099,"6344":0.3409009009,"6345":0.3418918919,"6346":0.3428828829,"6347":0.3438738739,"6348":0.3448648649,"6349":0.3458558559,"6350":0.3468468468,"6351":0.3478378378,"6352":0.3488288288,"6353":0.3498198198,"6354":0.3508108108,"6355":0.3518018018,"6356":0.3527927928,"6357":0.3537837838,"6358":0.3547747748,"6359":0.3557657658,"6360":0.3567567568,"6361":0.3577477477,"6362":0.3587387387,"6363":0.3597297297,"6364":0.3607207207,"6365":0.3617117117,"6366":0.3627027027,"6367":0.3636936937,"6368":0.3646846847,"6369":0.3656756757,"6370":0.3666666667,"6371":0.3676576577,"6372":0.3686486486,"6373":0.3696396396,"6374":0.3706306306,"6375":0.3716216216,"6376":0.3726126126,"6377":0.3736036036,"6378":0.3745945946,"6379":0.3755855856,"6380":0.3765765766,"6381":0.3775675676,"6382":0.3785585586,"6383":0.3795495495,"6384":0.3805405405,"6385":0.3815315315,"6386":0.3825225225,"6387":0.3835135135,"6388":0.3845045045,"6389":0.3854954955,"6390":0.3864864865,"6391":0.3874774775,"6392":0.3884684685,"6393":0.3894594595,"6394":0.3904504505,"6395":0.3914414414,"6396":0.3924324324,"6397":0.3934234234,"6398":0.3944144144,"6399":0.3954054054,"6400":0.3963963964,"6401":0.3973873874,"6402":0.3983783784,"6403":0.3993693694,"6404":0.4003603604,"6405":0.4013513514,"6406":0.4023423423,"6407":0.4033333333,"6408":0.4043243243,"6409":0.4053153153,"6410":0.4063063063,"6411":0.4072972973,"6412":0.4082882883,"6413":0.4092792793,"6414":0.4102702703,"6415":0.4112612613,"6416":0.4122522523,"6417":0.4132432432,"6418":0.4142342342,"6419":0.4152252252,"6420":0.4162162162,"6421":0.4172072072,"6422":0.4181981982,"6423":0.4191891892,"6424":0.4201801802,"6425":0.4211711712,"6426":0.4221621622,"6427":0.4231531532,"6428":0.4241441441,"6429":0.4251351351,"6430":0.4261261261,"6431":0.4271171171,"6432":0.4281081081,"6433":0.4290990991,"6434":0.4300900901,"6435":0.4310810811,"6436":0.4320720721,"6437":0.4330630631,"6438":0.4340540541,"6439":0.435045045,"6440":0.436036036,"6441":0.437027027,"6442":0.438018018,"6443":0.439009009,"6444":0.44,"6445":0.440990991,"6446":0.441981982,"6447":0.442972973,"6448":0.443963964,"6449":0.444954955,"6450":0.4459459459,"6451":0.4469369369,"6452":0.4479279279,"6453":0.4489189189,"6454":0.4499099099,"6455":0.4509009009,"6456":0.4518918919,"6457":0.4528828829,"6458":0.4538738739,"6459":0.4548648649,"6460":0.4558558559,"6461":0.4568468468,"6462":0.4578378378,"6463":0.4588288288,"6464":0.4598198198,"6465":0.4608108108,"6466":0.4618018018,"6467":0.4627927928,"6468":0.4637837838,"6469":0.4647747748,"6470":0.4657657658,"6471":0.4667567568,"6472":0.4677477477,"6473":0.4687387387,"6474":0.4697297297,"6475":0.4707207207,"6476":0.4717117117,"6477":0.4727027027,"6478":0.4736936937,"6479":0.4746846847,"6480":0.4756756757,"6481":0.4766666667,"6482":0.4776576577,"6483":0.4786486486,"6484":0.4796396396,"6485":0.4806306306,"6486":0.4816216216,"6487":0.4826126126,"6488":0.4836036036,"6489":0.4845945946,"6490":0.4855855856,"6491":0.4865765766,"6492":0.4875675676,"6493":0.4885585586,"6494":0.4895495495,"6495":0.4905405405,"6496":0.4915315315,"6497":0.4925225225,"6498":0.4935135135,"6499":0.4945045045,"6500":0.4954954955,"6501":0.4964864865,"6502":0.4974774775,"6503":0.4984684685,"6504":0.4994594595,"6505":0.5004504505,"6506":0.5014414414,"6507":0.5024324324,"6508":0.5034234234,"6509":0.5044144144,"6510":0.5054054054,"6511":0.5063963964,"6512":0.5073873874,"6513":0.5083783784,"6514":0.5093693694,"6515":0.5103603604,"6516":0.5113513514,"6517":0.5123423423,"6518":0.5133333333,"6519":0.5143243243,"6520":0.5153153153,"6521":0.5163063063,"6522":0.5172972973,"6523":0.5182882883,"6524":0.5192792793,"6525":0.5202702703,"6526":0.5212612613,"6527":0.5222522523,"6528":0.5232432432,"6529":0.5242342342,"6530":0.5252252252,"6531":0.5262162162,"6532":0.5272072072,"6533":0.5281981982,"6534":0.5291891892,"6535":0.5301801802,"6536":0.5311711712,"6537":0.5321621622,"6538":0.5331531532,"6539":0.5341441441,"6540":0.5351351351,"6541":0.5361261261,"6542":0.5371171171,"6543":0.5381081081,"6544":0.5390990991,"6545":0.5400900901,"6546":0.5410810811,"6547":0.5420720721,"6548":0.5430630631,"6549":0.5440540541,"6550":0.545045045,"6551":0.546036036,"6552":0.547027027,"6553":0.548018018,"6554":0.549009009,"6555":0.55,"6556":0.550990991,"6557":0.551981982,"6558":0.552972973,"6559":0.553963964,"6560":0.554954955,"6561":0.5559459459,"6562":0.5569369369,"6563":0.5579279279,"6564":0.5589189189,"6565":0.5599099099,"6566":0.5609009009,"6567":0.5618918919,"6568":0.5628828829,"6569":0.5638738739,"6570":0.5648648649,"6571":0.5658558559,"6572":0.5668468468,"6573":0.5678378378,"6574":0.5688288288,"6575":0.5698198198,"6576":0.5708108108,"6577":0.5718018018,"6578":0.5727927928,"6579":0.5737837838,"6580":0.5747747748,"6581":0.5757657658,"6582":0.5767567568,"6583":0.5777477477,"6584":0.5787387387,"6585":0.5797297297,"6586":0.5807207207,"6587":0.5817117117,"6588":0.5827027027,"6589":0.5836936937,"6590":0.5846846847,"6591":0.5856756757,"6592":0.5866666667,"6593":0.5876576577,"6594":0.5886486486,"6595":0.5896396396,"6596":0.5906306306,"6597":0.5916216216,"6598":0.5926126126,"6599":0.5936036036,"6600":0.5945945946,"6601":0.5955855856,"6602":0.5965765766,"6603":0.5975675676,"6604":0.5985585586,"6605":0.5995495495,"6606":0.6005405405,"6607":0.6015315315,"6608":0.6025225225,"6609":0.6035135135,"6610":0.6045045045,"6611":0.6054954955,"6612":0.6064864865,"6613":0.6074774775,"6614":0.6084684685,"6615":0.6094594595,"6616":0.6104504505,"6617":0.6114414414,"6618":0.6124324324,"6619":0.6134234234,"6620":0.6144144144,"6621":0.6154054054,"6622":0.6163963964,"6623":0.6173873874,"6624":0.6183783784,"6625":0.6193693694,"6626":0.6203603604,"6627":0.6213513514,"6628":0.6223423423,"6629":0.6233333333,"6630":0.6243243243,"6631":0.6253153153,"6632":0.6263063063,"6633":0.6272972973,"6634":0.6282882883,"6635":0.6292792793,"6636":0.6302702703,"6637":0.6312612613,"6638":0.6322522523,"6639":0.6332432432,"6640":0.6342342342,"6641":0.6352252252,"6642":0.6362162162,"6643":0.6372072072,"6644":0.6381981982,"6645":0.6391891892,"6646":0.6401801802,"6647":0.6411711712,"6648":0.6421621622,"6649":0.6431531532,"6650":0.6441441441,"6651":0.6451351351,"6652":0.6461261261,"6653":0.6471171171,"6654":0.6481081081,"6655":0.6490990991,"6656":0.6500900901,"6657":0.6510810811,"6658":0.6520720721,"6659":0.6530630631,"6660":0.6540540541,"6661":0.655045045,"6662":0.656036036,"6663":0.657027027,"6664":0.658018018,"6665":0.659009009,"6666":0.66,"6667":0.660990991,"6668":0.661981982,"6669":0.662972973,"6670":0.663963964,"6671":0.664954955,"6672":0.6659459459,"6673":0.6669369369,"6674":0.6679279279,"6675":0.6689189189,"6676":0.6699099099,"6677":0.6709009009,"6678":0.6718918919,"6679":0.6728828829,"6680":0.6738738739,"6681":0.6748648649,"6682":0.6758558559,"6683":0.6768468468,"6684":0.6778378378,"6685":0.6788288288,"6686":0.6798198198,"6687":0.6808108108,"6688":0.6818018018,"6689":0.6827927928,"6690":0.6837837838,"6691":0.6847747748,"6692":0.6857657658,"6693":0.6867567568,"6694":0.6877477477,"6695":0.6887387387,"6696":0.6897297297,"6697":0.6907207207,"6698":0.6917117117,"6699":0.6927027027,"6700":0.6936936937,"6701":0.6946846847,"6702":0.6956756757,"6703":0.6966666667,"6704":0.6976576577,"6705":0.6986486486,"6706":0.6996396396,"6707":0.7006306306,"6708":0.7016216216,"6709":0.7026126126,"6710":0.7036036036,"6711":0.7045945946,"6712":0.7055855856,"6713":0.7065765766,"6714":0.7075675676,"6715":0.7085585586,"6716":0.7095495495,"6717":0.7105405405,"6718":0.7115315315,"6719":0.7125225225,"6720":0.7135135135,"6721":0.7145045045,"6722":0.7154954955,"6723":0.7164864865,"6724":0.7174774775,"6725":0.7184684685,"6726":0.7194594595,"6727":0.7204504505,"6728":0.7214414414,"6729":0.7224324324,"6730":0.7234234234,"6731":0.7244144144,"6732":0.7254054054,"6733":0.7263963964,"6734":0.7273873874,"6735":0.7283783784,"6736":0.7293693694,"6737":0.7303603604,"6738":0.7313513514,"6739":0.7323423423,"6740":0.7333333333,"6741":0.7343243243,"6742":0.7353153153,"6743":0.7363063063,"6744":0.7372972973,"6745":0.7382882883,"6746":0.7392792793,"6747":0.7402702703,"6748":0.7412612613,"6749":0.7422522523,"6750":0.7432432432,"6751":0.7442342342,"6752":0.7452252252,"6753":0.7462162162,"6754":0.7472072072,"6755":0.7481981982,"6756":0.7491891892,"6757":0.7501801802,"6758":0.7511711712,"6759":0.7521621622,"6760":0.7531531532,"6761":0.7541441441,"6762":0.7551351351,"6763":0.7561261261,"6764":0.7571171171,"6765":0.7581081081,"6766":0.7590990991,"6767":0.7600900901,"6768":0.7610810811,"6769":0.7620720721,"6770":0.7630630631,"6771":0.7640540541,"6772":0.765045045,"6773":0.766036036,"6774":0.767027027,"6775":0.768018018,"6776":0.769009009,"6777":0.77,"6778":0.770990991,"6779":0.771981982,"6780":0.772972973,"6781":0.773963964,"6782":0.774954955,"6783":0.7759459459,"6784":0.7769369369,"6785":0.7779279279,"6786":0.7789189189,"6787":0.7799099099,"6788":0.7809009009,"6789":0.7818918919,"6790":0.7828828829,"6791":0.7838738739,"6792":0.7848648649,"6793":0.7858558559,"6794":0.7868468468,"6795":0.7878378378,"6796":0.7888288288,"6797":0.7898198198,"6798":0.7908108108,"6799":0.7918018018,"6800":0.7927927928,"6801":0.7937837838,"6802":0.7947747748,"6803":0.7957657658,"6804":0.7967567568,"6805":0.7977477477,"6806":0.7987387387,"6807":0.7997297297,"6808":0.8007207207,"6809":0.8017117117,"6810":0.8027027027,"6811":0.8036936937,"6812":0.8046846847,"6813":0.8056756757,"6814":0.8066666667,"6815":0.8076576577,"6816":0.8086486486,"6817":0.8096396396,"6818":0.8106306306,"6819":0.8116216216,"6820":0.8126126126,"6821":0.8136036036,"6822":0.8145945946,"6823":0.8155855856,"6824":0.8165765766,"6825":0.8175675676,"6826":0.8185585586,"6827":0.8195495495,"6828":0.8205405405,"6829":0.8215315315,"6830":0.8225225225,"6831":0.8235135135,"6832":0.8245045045,"6833":0.8254954955,"6834":0.8264864865,"6835":0.8274774775,"6836":0.8284684685,"6837":0.8294594595,"6838":0.8304504505,"6839":0.8314414414,"6840":0.8324324324,"6841":0.8334234234,"6842":0.8344144144,"6843":0.8354054054,"6844":0.8363963964,"6845":0.8373873874,"6846":0.8383783784,"6847":0.8393693694,"6848":0.8403603604,"6849":0.8413513514,"6850":0.8423423423,"6851":0.8433333333,"6852":0.8443243243,"6853":0.8453153153,"6854":0.8463063063,"6855":0.8472972973,"6856":0.8482882883,"6857":0.8492792793,"6858":0.8502702703,"6859":0.8512612613,"6860":0.8522522523,"6861":0.8532432432,"6862":0.8542342342,"6863":0.8552252252,"6864":0.8562162162,"6865":0.8572072072,"6866":0.8581981982,"6867":0.8591891892,"6868":0.8601801802,"6869":0.8611711712,"6870":0.8621621622,"6871":0.8631531532,"6872":0.8641441441,"6873":0.8651351351,"6874":0.8661261261,"6875":0.8671171171,"6876":0.8681081081,"6877":0.8690990991,"6878":0.8700900901,"6879":0.8710810811,"6880":0.8720720721,"6881":0.8730630631,"6882":0.8740540541,"6883":0.875045045,"6884":0.876036036,"6885":0.877027027,"6886":0.878018018,"6887":0.879009009,"6888":0.88,"6889":0.880990991,"6890":0.881981982,"6891":0.882972973,"6892":0.883963964,"6893":0.884954955,"6894":0.8859459459,"6895":0.8869369369,"6896":0.8879279279,"6897":0.8889189189,"6898":0.8899099099,"6899":0.8909009009,"6900":0.8918918919,"6901":0.8928828829,"6902":0.8938738739,"6903":0.8948648649,"6904":0.8958558559,"6905":0.8968468468,"6906":0.8978378378,"6907":0.8988288288,"6908":0.8998198198,"6909":0.9008108108,"6910":0.9018018018,"6911":0.9027927928,"6912":0.9037837838,"6913":0.9047747748,"6914":0.9057657658,"6915":0.9067567568,"6916":0.9077477477,"6917":0.9087387387,"6918":0.9097297297,"6919":0.9107207207,"6920":0.9117117117,"6921":0.9127027027,"6922":0.9136936937,"6923":0.9146846847,"6924":0.9156756757,"6925":0.9166666667,"6926":0.9176576577,"6927":0.9186486486,"6928":0.9196396396,"6929":0.9206306306,"6930":0.9216216216,"6931":0.9226126126,"6932":0.9236036036,"6933":0.9245945946,"6934":0.9255855856,"6935":0.9265765766,"6936":0.9275675676,"6937":0.9285585586,"6938":0.9295495495,"6939":0.9305405405,"6940":0.9315315315,"6941":0.9325225225,"6942":0.9335135135,"6943":0.9345045045,"6944":0.9354954955,"6945":0.9364864865,"6946":0.9374774775,"6947":0.9384684685,"6948":0.9394594595,"6949":0.9404504505,"6950":0.9414414414,"6951":0.9424324324,"6952":0.9434234234,"6953":0.9444144144,"6954":0.9454054054,"6955":0.9463963964,"6956":0.9473873874,"6957":0.9483783784,"6958":0.9493693694,"6959":0.9503603604,"6960":0.9513513514,"6961":0.9523423423,"6962":0.9533333333,"6963":0.9543243243,"6964":0.9553153153,"6965":0.9563063063,"6966":0.9572972973,"6967":0.9582882883,"6968":0.9592792793,"6969":0.9602702703,"6970":0.9612612613,"6971":0.9622522523,"6972":0.9632432432,"6973":0.9642342342,"6974":0.9652252252,"6975":0.9662162162,"6976":0.9672072072,"6977":0.9681981982,"6978":0.9691891892,"6979":0.9701801802,"6980":0.9711711712,"6981":0.9721621622,"6982":0.9731531532,"6983":0.9741441441,"6984":0.9751351351,"6985":0.9761261261,"6986":0.9771171171,"6987":0.9781081081,"6988":0.9790990991,"6989":0.9800900901,"6990":0.9810810811,"6991":0.9820720721,"6992":0.9830630631,"6993":0.9840540541,"6994":0.985045045,"6995":0.986036036,"6996":0.987027027,"6997":0.988018018,"6998":0.989009009,"6999":0.99,"7000":0.0,"7001":0.000990991,"7002":0.001981982,"7003":0.002972973,"7004":0.003963964,"7005":0.004954955,"7006":0.0059459459,"7007":0.0069369369,"7008":0.0079279279,"7009":0.0089189189,"7010":0.0099099099,"7011":0.0109009009,"7012":0.0118918919,"7013":0.0128828829,"7014":0.0138738739,"7015":0.0148648649,"7016":0.0158558559,"7017":0.0168468468,"7018":0.0178378378,"7019":0.0188288288,"7020":0.0198198198,"7021":0.0208108108,"7022":0.0218018018,"7023":0.0227927928,"7024":0.0237837838,"7025":0.0247747748,"7026":0.0257657658,"7027":0.0267567568,"7028":0.0277477477,"7029":0.0287387387,"7030":0.0297297297,"7031":0.0307207207,"7032":0.0317117117,"7033":0.0327027027,"7034":0.0336936937,"7035":0.0346846847,"7036":0.0356756757,"7037":0.0366666667,"7038":0.0376576577,"7039":0.0386486486,"7040":0.0396396396,"7041":0.0406306306,"7042":0.0416216216,"7043":0.0426126126,"7044":0.0436036036,"7045":0.0445945946,"7046":0.0455855856,"7047":0.0465765766,"7048":0.0475675676,"7049":0.0485585586,"7050":0.0495495495,"7051":0.0505405405,"7052":0.0515315315,"7053":0.0525225225,"7054":0.0535135135,"7055":0.0545045045,"7056":0.0554954955,"7057":0.0564864865,"7058":0.0574774775,"7059":0.0584684685,"7060":0.0594594595,"7061":0.0604504505,"7062":0.0614414414,"7063":0.0624324324,"7064":0.0634234234,"7065":0.0644144144,"7066":0.0654054054,"7067":0.0663963964,"7068":0.0673873874,"7069":0.0683783784,"7070":0.0693693694,"7071":0.0703603604,"7072":0.0713513514,"7073":0.0723423423,"7074":0.0733333333,"7075":0.0743243243,"7076":0.0753153153,"7077":0.0763063063,"7078":0.0772972973,"7079":0.0782882883,"7080":0.0792792793,"7081":0.0802702703,"7082":0.0812612613,"7083":0.0822522523,"7084":0.0832432432,"7085":0.0842342342,"7086":0.0852252252,"7087":0.0862162162,"7088":0.0872072072,"7089":0.0881981982,"7090":0.0891891892,"7091":0.0901801802,"7092":0.0911711712,"7093":0.0921621622,"7094":0.0931531532,"7095":0.0941441441,"7096":0.0951351351,"7097":0.0961261261,"7098":0.0971171171,"7099":0.0981081081,"7100":0.0990990991,"7101":0.1000900901,"7102":0.1010810811,"7103":0.1020720721,"7104":0.1030630631,"7105":0.1040540541,"7106":0.105045045,"7107":0.106036036,"7108":0.107027027,"7109":0.108018018,"7110":0.109009009,"7111":0.11,"7112":0.110990991,"7113":0.111981982,"7114":0.112972973,"7115":0.113963964,"7116":0.114954955,"7117":0.1159459459,"7118":0.1169369369,"7119":0.1179279279,"7120":0.1189189189,"7121":0.1199099099,"7122":0.1209009009,"7123":0.1218918919,"7124":0.1228828829,"7125":0.1238738739,"7126":0.1248648649,"7127":0.1258558559,"7128":0.1268468468,"7129":0.1278378378,"7130":0.1288288288,"7131":0.1298198198,"7132":0.1308108108,"7133":0.1318018018,"7134":0.1327927928,"7135":0.1337837838,"7136":0.1347747748,"7137":0.1357657658,"7138":0.1367567568,"7139":0.1377477477,"7140":0.1387387387,"7141":0.1397297297,"7142":0.1407207207,"7143":0.1417117117,"7144":0.1427027027,"7145":0.1436936937,"7146":0.1446846847,"7147":0.1456756757,"7148":0.1466666667,"7149":0.1476576577,"7150":0.1486486486,"7151":0.1496396396,"7152":0.1506306306,"7153":0.1516216216,"7154":0.1526126126,"7155":0.1536036036,"7156":0.1545945946,"7157":0.1555855856,"7158":0.1565765766,"7159":0.1575675676,"7160":0.1585585586,"7161":0.1595495495,"7162":0.1605405405,"7163":0.1615315315,"7164":0.1625225225,"7165":0.1635135135,"7166":0.1645045045,"7167":0.1654954955,"7168":0.1664864865,"7169":0.1674774775,"7170":0.1684684685,"7171":0.1694594595,"7172":0.1704504505,"7173":0.1714414414,"7174":0.1724324324,"7175":0.1734234234,"7176":0.1744144144,"7177":0.1754054054,"7178":0.1763963964,"7179":0.1773873874,"7180":0.1783783784,"7181":0.1793693694,"7182":0.1803603604,"7183":0.1813513514,"7184":0.1823423423,"7185":0.1833333333,"7186":0.1843243243,"7187":0.1853153153,"7188":0.1863063063,"7189":0.1872972973,"7190":0.1882882883,"7191":0.1892792793,"7192":0.1902702703,"7193":0.1912612613,"7194":0.1922522523,"7195":0.1932432432,"7196":0.1942342342,"7197":0.1952252252,"7198":0.1962162162,"7199":0.1972072072,"7200":0.1981981982,"7201":0.1991891892,"7202":0.2001801802,"7203":0.2011711712,"7204":0.2021621622,"7205":0.2031531532,"7206":0.2041441441,"7207":0.2051351351,"7208":0.2061261261,"7209":0.2071171171,"7210":0.2081081081,"7211":0.2090990991,"7212":0.2100900901,"7213":0.2110810811,"7214":0.2120720721,"7215":0.2130630631,"7216":0.2140540541,"7217":0.215045045,"7218":0.216036036,"7219":0.217027027,"7220":0.218018018,"7221":0.219009009,"7222":0.22,"7223":0.220990991,"7224":0.221981982,"7225":0.222972973,"7226":0.223963964,"7227":0.224954955,"7228":0.2259459459,"7229":0.2269369369,"7230":0.2279279279,"7231":0.2289189189,"7232":0.2299099099,"7233":0.2309009009,"7234":0.2318918919,"7235":0.2328828829,"7236":0.2338738739,"7237":0.2348648649,"7238":0.2358558559,"7239":0.2368468468,"7240":0.2378378378,"7241":0.2388288288,"7242":0.2398198198,"7243":0.2408108108,"7244":0.2418018018,"7245":0.2427927928,"7246":0.2437837838,"7247":0.2447747748,"7248":0.2457657658,"7249":0.2467567568,"7250":0.2477477477,"7251":0.2487387387,"7252":0.2497297297,"7253":0.2507207207,"7254":0.2517117117,"7255":0.2527027027,"7256":0.2536936937,"7257":0.2546846847,"7258":0.2556756757,"7259":0.2566666667,"7260":0.2576576577,"7261":0.2586486486,"7262":0.2596396396,"7263":0.2606306306,"7264":0.2616216216,"7265":0.2626126126,"7266":0.2636036036,"7267":0.2645945946,"7268":0.2655855856,"7269":0.2665765766,"7270":0.2675675676,"7271":0.2685585586,"7272":0.2695495495,"7273":0.2705405405,"7274":0.2715315315,"7275":0.2725225225,"7276":0.2735135135,"7277":0.2745045045,"7278":0.2754954955,"7279":0.2764864865,"7280":0.2774774775,"7281":0.2784684685,"7282":0.2794594595,"7283":0.2804504505,"7284":0.2814414414,"7285":0.2824324324,"7286":0.2834234234,"7287":0.2844144144,"7288":0.2854054054,"7289":0.2863963964,"7290":0.2873873874,"7291":0.2883783784,"7292":0.2893693694,"7293":0.2903603604,"7294":0.2913513514,"7295":0.2923423423,"7296":0.2933333333,"7297":0.2943243243,"7298":0.2953153153,"7299":0.2963063063,"7300":0.2972972973,"7301":0.2982882883,"7302":0.2992792793,"7303":0.3002702703,"7304":0.3012612613,"7305":0.3022522523,"7306":0.3032432432,"7307":0.3042342342,"7308":0.3052252252,"7309":0.3062162162,"7310":0.3072072072,"7311":0.3081981982,"7312":0.3091891892,"7313":0.3101801802,"7314":0.3111711712,"7315":0.3121621622,"7316":0.3131531532,"7317":0.3141441441,"7318":0.3151351351,"7319":0.3161261261,"7320":0.3171171171,"7321":0.3181081081,"7322":0.3190990991,"7323":0.3200900901,"7324":0.3210810811,"7325":0.3220720721,"7326":0.3230630631,"7327":0.3240540541,"7328":0.325045045,"7329":0.326036036,"7330":0.327027027,"7331":0.328018018,"7332":0.329009009,"7333":0.33,"7334":0.330990991,"7335":0.331981982,"7336":0.332972973,"7337":0.333963964,"7338":0.334954955,"7339":0.3359459459,"7340":0.3369369369,"7341":0.3379279279,"7342":0.3389189189,"7343":0.3399099099,"7344":0.3409009009,"7345":0.3418918919,"7346":0.3428828829,"7347":0.3438738739,"7348":0.3448648649,"7349":0.3458558559,"7350":0.3468468468,"7351":0.3478378378,"7352":0.3488288288,"7353":0.3498198198,"7354":0.3508108108,"7355":0.3518018018,"7356":0.3527927928,"7357":0.3537837838,"7358":0.3547747748,"7359":0.3557657658,"7360":0.3567567568,"7361":0.3577477477,"7362":0.3587387387,"7363":0.3597297297,"7364":0.3607207207,"7365":0.3617117117,"7366":0.3627027027,"7367":0.3636936937,"7368":0.3646846847,"7369":0.3656756757,"7370":0.3666666667,"7371":0.3676576577,"7372":0.3686486486,"7373":0.3696396396,"7374":0.3706306306,"7375":0.3716216216,"7376":0.3726126126,"7377":0.3736036036,"7378":0.3745945946,"7379":0.3755855856,"7380":0.3765765766,"7381":0.3775675676,"7382":0.3785585586,"7383":0.3795495495,"7384":0.3805405405,"7385":0.3815315315,"7386":0.3825225225,"7387":0.3835135135,"7388":0.3845045045,"7389":0.3854954955,"7390":0.3864864865,"7391":0.3874774775,"7392":0.3884684685,"7393":0.3894594595,"7394":0.3904504505,"7395":0.3914414414,"7396":0.3924324324,"7397":0.3934234234,"7398":0.3944144144,"7399":0.3954054054,"7400":0.3963963964,"7401":0.3973873874,"7402":0.3983783784,"7403":0.3993693694,"7404":0.4003603604,"7405":0.4013513514,"7406":0.4023423423,"7407":0.4033333333,"7408":0.4043243243,"7409":0.4053153153,"7410":0.4063063063,"7411":0.4072972973,"7412":0.4082882883,"7413":0.4092792793,"7414":0.4102702703,"7415":0.4112612613,"7416":0.4122522523,"7417":0.4132432432,"7418":0.4142342342,"7419":0.4152252252,"7420":0.4162162162,"7421":0.4172072072,"7422":0.4181981982,"7423":0.4191891892,"7424":0.4201801802,"7425":0.4211711712,"7426":0.4221621622,"7427":0.4231531532,"7428":0.4241441441,"7429":0.4251351351,"7430":0.4261261261,"7431":0.4271171171,"7432":0.4281081081,"7433":0.4290990991,"7434":0.4300900901,"7435":0.4310810811,"7436":0.4320720721,"7437":0.4330630631,"7438":0.4340540541,"7439":0.435045045,"7440":0.436036036,"7441":0.437027027,"7442":0.438018018,"7443":0.439009009,"7444":0.44,"7445":0.440990991,"7446":0.441981982,"7447":0.442972973,"7448":0.443963964,"7449":0.444954955,"7450":0.4459459459,"7451":0.4469369369,"7452":0.4479279279,"7453":0.4489189189,"7454":0.4499099099,"7455":0.4509009009,"7456":0.4518918919,"7457":0.4528828829,"7458":0.4538738739,"7459":0.4548648649,"7460":0.4558558559,"7461":0.4568468468,"7462":0.4578378378,"7463":0.4588288288,"7464":0.4598198198,"7465":0.4608108108,"7466":0.4618018018,"7467":0.4627927928,"7468":0.4637837838,"7469":0.4647747748,"7470":0.4657657658,"7471":0.4667567568,"7472":0.4677477477,"7473":0.4687387387,"7474":0.4697297297,"7475":0.4707207207,"7476":0.4717117117,"7477":0.4727027027,"7478":0.4736936937,"7479":0.4746846847,"7480":0.4756756757,"7481":0.4766666667,"7482":0.4776576577,"7483":0.4786486486,"7484":0.4796396396,"7485":0.4806306306,"7486":0.4816216216,"7487":0.4826126126,"7488":0.4836036036,"7489":0.4845945946,"7490":0.4855855856,"7491":0.4865765766,"7492":0.4875675676,"7493":0.4885585586,"7494":0.4895495495,"7495":0.4905405405,"7496":0.4915315315,"7497":0.4925225225,"7498":0.4935135135,"7499":0.4945045045,"7500":0.4954954955,"7501":0.4964864865,"7502":0.4974774775,"7503":0.4984684685,"7504":0.4994594595,"7505":0.5004504505,"7506":0.5014414414,"7507":0.5024324324,"7508":0.5034234234,"7509":0.5044144144,"7510":0.5054054054,"7511":0.5063963964,"7512":0.5073873874,"7513":0.5083783784,"7514":0.5093693694,"7515":0.5103603604,"7516":0.5113513514,"7517":0.5123423423,"7518":0.5133333333,"7519":0.5143243243,"7520":0.5153153153,"7521":0.5163063063,"7522":0.5172972973,"7523":0.5182882883,"7524":0.5192792793,"7525":0.5202702703,"7526":0.5212612613,"7527":0.5222522523,"7528":0.5232432432,"7529":0.5242342342,"7530":0.5252252252,"7531":0.5262162162,"7532":0.5272072072,"7533":0.5281981982,"7534":0.5291891892,"7535":0.5301801802,"7536":0.5311711712,"7537":0.5321621622,"7538":0.5331531532,"7539":0.5341441441,"7540":0.5351351351,"7541":0.5361261261,"7542":0.5371171171,"7543":0.5381081081,"7544":0.5390990991,"7545":0.5400900901,"7546":0.5410810811,"7547":0.5420720721,"7548":0.5430630631,"7549":0.5440540541,"7550":0.545045045,"7551":0.546036036,"7552":0.547027027,"7553":0.548018018,"7554":0.549009009,"7555":0.55,"7556":0.550990991,"7557":0.551981982,"7558":0.552972973,"7559":0.553963964,"7560":0.554954955,"7561":0.5559459459,"7562":0.5569369369,"7563":0.5579279279,"7564":0.5589189189,"7565":0.5599099099,"7566":0.5609009009,"7567":0.5618918919,"7568":0.5628828829,"7569":0.5638738739,"7570":0.5648648649,"7571":0.5658558559,"7572":0.5668468468,"7573":0.5678378378,"7574":0.5688288288,"7575":0.5698198198,"7576":0.5708108108,"7577":0.5718018018,"7578":0.5727927928,"7579":0.5737837838,"7580":0.5747747748,"7581":0.5757657658,"7582":0.5767567568,"7583":0.5777477477,"7584":0.5787387387,"7585":0.5797297297,"7586":0.5807207207,"7587":0.5817117117,"7588":0.5827027027,"7589":0.5836936937,"7590":0.5846846847,"7591":0.5856756757,"7592":0.5866666667,"7593":0.5876576577,"7594":0.5886486486,"7595":0.5896396396,"7596":0.5906306306,"7597":0.5916216216,"7598":0.5926126126,"7599":0.5936036036,"7600":0.5945945946,"7601":0.5955855856,"7602":0.5965765766,"7603":0.5975675676,"7604":0.5985585586,"7605":0.5995495495,"7606":0.6005405405,"7607":0.6015315315,"7608":0.6025225225,"7609":0.6035135135,"7610":0.6045045045,"7611":0.6054954955,"7612":0.6064864865,"7613":0.6074774775,"7614":0.6084684685,"7615":0.6094594595,"7616":0.6104504505,"7617":0.6114414414,"7618":0.6124324324,"7619":0.6134234234,"7620":0.6144144144,"7621":0.6154054054,"7622":0.6163963964,"7623":0.6173873874,"7624":0.6183783784,"7625":0.6193693694,"7626":0.6203603604,"7627":0.6213513514,"7628":0.6223423423,"7629":0.6233333333,"7630":0.6243243243,"7631":0.6253153153,"7632":0.6263063063,"7633":0.6272972973,"7634":0.6282882883,"7635":0.6292792793,"7636":0.6302702703,"7637":0.6312612613,"7638":0.6322522523,"7639":0.6332432432,"7640":0.6342342342,"7641":0.6352252252,"7642":0.6362162162,"7643":0.6372072072,"7644":0.6381981982,"7645":0.6391891892,"7646":0.6401801802,"7647":0.6411711712,"7648":0.6421621622,"7649":0.6431531532,"7650":0.6441441441,"7651":0.6451351351,"7652":0.6461261261,"7653":0.6471171171,"7654":0.6481081081,"7655":0.6490990991,"7656":0.6500900901,"7657":0.6510810811,"7658":0.6520720721,"7659":0.6530630631,"7660":0.6540540541,"7661":0.655045045,"7662":0.656036036,"7663":0.657027027,"7664":0.658018018,"7665":0.659009009,"7666":0.66,"7667":0.660990991,"7668":0.661981982,"7669":0.662972973,"7670":0.663963964,"7671":0.664954955,"7672":0.6659459459,"7673":0.6669369369,"7674":0.6679279279,"7675":0.6689189189,"7676":0.6699099099,"7677":0.6709009009,"7678":0.6718918919,"7679":0.6728828829,"7680":0.6738738739,"7681":0.6748648649,"7682":0.6758558559,"7683":0.6768468468,"7684":0.6778378378,"7685":0.6788288288,"7686":0.6798198198,"7687":0.6808108108,"7688":0.6818018018,"7689":0.6827927928,"7690":0.6837837838,"7691":0.6847747748,"7692":0.6857657658,"7693":0.6867567568,"7694":0.6877477477,"7695":0.6887387387,"7696":0.6897297297,"7697":0.6907207207,"7698":0.6917117117,"7699":0.6927027027,"7700":0.6936936937,"7701":0.6946846847,"7702":0.6956756757,"7703":0.6966666667,"7704":0.6976576577,"7705":0.6986486486,"7706":0.6996396396,"7707":0.7006306306,"7708":0.7016216216,"7709":0.7026126126,"7710":0.7036036036,"7711":0.7045945946,"7712":0.7055855856,"7713":0.7065765766,"7714":0.7075675676,"7715":0.7085585586,"7716":0.7095495495,"7717":0.7105405405,"7718":0.7115315315,"7719":0.7125225225,"7720":0.7135135135,"7721":0.7145045045,"7722":0.7154954955,"7723":0.7164864865,"7724":0.7174774775,"7725":0.7184684685,"7726":0.7194594595,"7727":0.7204504505,"7728":0.7214414414,"7729":0.7224324324,"7730":0.7234234234,"7731":0.7244144144,"7732":0.7254054054,"7733":0.7263963964,"7734":0.7273873874,"7735":0.7283783784,"7736":0.7293693694,"7737":0.7303603604,"7738":0.7313513514,"7739":0.7323423423,"7740":0.7333333333,"7741":0.7343243243,"7742":0.7353153153,"7743":0.7363063063,"7744":0.7372972973,"7745":0.7382882883,"7746":0.7392792793,"7747":0.7402702703,"7748":0.7412612613,"7749":0.7422522523,"7750":0.7432432432,"7751":0.7442342342,"7752":0.7452252252,"7753":0.7462162162,"7754":0.7472072072,"7755":0.7481981982,"7756":0.7491891892,"7757":0.7501801802,"7758":0.7511711712,"7759":0.7521621622,"7760":0.7531531532,"7761":0.7541441441,"7762":0.7551351351,"7763":0.7561261261,"7764":0.7571171171,"7765":0.7581081081,"7766":0.7590990991,"7767":0.7600900901,"7768":0.7610810811,"7769":0.7620720721,"7770":0.7630630631,"7771":0.7640540541,"7772":0.765045045,"7773":0.766036036,"7774":0.767027027,"7775":0.768018018,"7776":0.769009009,"7777":0.77,"7778":0.770990991,"7779":0.771981982,"7780":0.772972973,"7781":0.773963964,"7782":0.774954955,"7783":0.7759459459,"7784":0.7769369369,"7785":0.7779279279,"7786":0.7789189189,"7787":0.7799099099,"7788":0.7809009009,"7789":0.7818918919,"7790":0.7828828829,"7791":0.7838738739,"7792":0.7848648649,"7793":0.7858558559,"7794":0.7868468468,"7795":0.7878378378,"7796":0.7888288288,"7797":0.7898198198,"7798":0.7908108108,"7799":0.7918018018,"7800":0.7927927928,"7801":0.7937837838,"7802":0.7947747748,"7803":0.7957657658,"7804":0.7967567568,"7805":0.7977477477,"7806":0.7987387387,"7807":0.7997297297,"7808":0.8007207207,"7809":0.8017117117,"7810":0.8027027027,"7811":0.8036936937,"7812":0.8046846847,"7813":0.8056756757,"7814":0.8066666667,"7815":0.8076576577,"7816":0.8086486486,"7817":0.8096396396,"7818":0.8106306306,"7819":0.8116216216,"7820":0.8126126126,"7821":0.8136036036,"7822":0.8145945946,"7823":0.8155855856,"7824":0.8165765766,"7825":0.8175675676,"7826":0.8185585586,"7827":0.8195495495,"7828":0.8205405405,"7829":0.8215315315,"7830":0.8225225225,"7831":0.8235135135,"7832":0.8245045045,"7833":0.8254954955,"7834":0.8264864865,"7835":0.8274774775,"7836":0.8284684685,"7837":0.8294594595,"7838":0.8304504505,"7839":0.8314414414,"7840":0.8324324324,"7841":0.8334234234,"7842":0.8344144144,"7843":0.8354054054,"7844":0.8363963964,"7845":0.8373873874,"7846":0.8383783784,"7847":0.8393693694,"7848":0.8403603604,"7849":0.8413513514,"7850":0.8423423423,"7851":0.8433333333,"7852":0.8443243243,"7853":0.8453153153,"7854":0.8463063063,"7855":0.8472972973,"7856":0.8482882883,"7857":0.8492792793,"7858":0.8502702703,"7859":0.8512612613,"7860":0.8522522523,"7861":0.8532432432,"7862":0.8542342342,"7863":0.8552252252,"7864":0.8562162162,"7865":0.8572072072,"7866":0.8581981982,"7867":0.8591891892,"7868":0.8601801802,"7869":0.8611711712,"7870":0.8621621622,"7871":0.8631531532,"7872":0.8641441441,"7873":0.8651351351,"7874":0.8661261261,"7875":0.8671171171,"7876":0.8681081081,"7877":0.8690990991,"7878":0.8700900901,"7879":0.8710810811,"7880":0.8720720721,"7881":0.8730630631,"7882":0.8740540541,"7883":0.875045045,"7884":0.876036036,"7885":0.877027027,"7886":0.878018018,"7887":0.879009009,"7888":0.88,"7889":0.880990991,"7890":0.881981982,"7891":0.882972973,"7892":0.883963964,"7893":0.884954955,"7894":0.8859459459,"7895":0.8869369369,"7896":0.8879279279,"7897":0.8889189189,"7898":0.8899099099,"7899":0.8909009009,"7900":0.8918918919,"7901":0.8928828829,"7902":0.8938738739,"7903":0.8948648649,"7904":0.8958558559,"7905":0.8968468468,"7906":0.8978378378,"7907":0.8988288288,"7908":0.8998198198,"7909":0.9008108108,"7910":0.9018018018,"7911":0.9027927928,"7912":0.9037837838,"7913":0.9047747748,"7914":0.9057657658,"7915":0.9067567568,"7916":0.9077477477,"7917":0.9087387387,"7918":0.9097297297,"7919":0.9107207207,"7920":0.9117117117,"7921":0.9127027027,"7922":0.9136936937,"7923":0.9146846847,"7924":0.9156756757,"7925":0.9166666667,"7926":0.9176576577,"7927":0.9186486486,"7928":0.9196396396,"7929":0.9206306306,"7930":0.9216216216,"7931":0.9226126126,"7932":0.9236036036,"7933":0.9245945946,"7934":0.9255855856,"7935":0.9265765766,"7936":0.9275675676,"7937":0.9285585586,"7938":0.9295495495,"7939":0.9305405405,"7940":0.9315315315,"7941":0.9325225225,"7942":0.9335135135,"7943":0.9345045045,"7944":0.9354954955,"7945":0.9364864865,"7946":0.9374774775,"7947":0.9384684685,"7948":0.9394594595,"7949":0.9404504505,"7950":0.9414414414,"7951":0.9424324324,"7952":0.9434234234,"7953":0.9444144144,"7954":0.9454054054,"7955":0.9463963964,"7956":0.9473873874,"7957":0.9483783784,"7958":0.9493693694,"7959":0.9503603604,"7960":0.9513513514,"7961":0.9523423423,"7962":0.9533333333,"7963":0.9543243243,"7964":0.9553153153,"7965":0.9563063063,"7966":0.9572972973,"7967":0.9582882883,"7968":0.9592792793,"7969":0.9602702703,"7970":0.9612612613,"7971":0.9622522523,"7972":0.9632432432,"7973":0.9642342342,"7974":0.9652252252,"7975":0.9662162162,"7976":0.9672072072,"7977":0.9681981982,"7978":0.9691891892,"7979":0.9701801802,"7980":0.9711711712,"7981":0.9721621622,"7982":0.9731531532,"7983":0.9741441441,"7984":0.9751351351,"7985":0.9761261261,"7986":0.9771171171,"7987":0.9781081081,"7988":0.9790990991,"7989":0.9800900901,"7990":0.9810810811,"7991":0.9820720721,"7992":0.9830630631,"7993":0.9840540541,"7994":0.985045045,"7995":0.986036036,"7996":0.987027027,"7997":0.988018018,"7998":0.989009009,"7999":0.99,"8000":0.0,"8001":0.000990991,"8002":0.001981982,"8003":0.002972973,"8004":0.003963964,"8005":0.004954955,"8006":0.0059459459,"8007":0.0069369369,"8008":0.0079279279,"8009":0.0089189189,"8010":0.0099099099,"8011":0.0109009009,"8012":0.0118918919,"8013":0.0128828829,"8014":0.0138738739,"8015":0.0148648649,"8016":0.0158558559,"8017":0.0168468468,"8018":0.0178378378,"8019":0.0188288288,"8020":0.0198198198,"8021":0.0208108108,"8022":0.0218018018,"8023":0.0227927928,"8024":0.0237837838,"8025":0.0247747748,"8026":0.0257657658,"8027":0.0267567568,"8028":0.0277477477,"8029":0.0287387387,"8030":0.0297297297,"8031":0.0307207207,"8032":0.0317117117,"8033":0.0327027027,"8034":0.0336936937,"8035":0.0346846847,"8036":0.0356756757,"8037":0.0366666667,"8038":0.0376576577,"8039":0.0386486486,"8040":0.0396396396,"8041":0.0406306306,"8042":0.0416216216,"8043":0.0426126126,"8044":0.0436036036,"8045":0.0445945946,"8046":0.0455855856,"8047":0.0465765766,"8048":0.0475675676,"8049":0.0485585586,"8050":0.0495495495,"8051":0.0505405405,"8052":0.0515315315,"8053":0.0525225225,"8054":0.0535135135,"8055":0.0545045045,"8056":0.0554954955,"8057":0.0564864865,"8058":0.0574774775,"8059":0.0584684685,"8060":0.0594594595,"8061":0.0604504505,"8062":0.0614414414,"8063":0.0624324324,"8064":0.0634234234,"8065":0.0644144144,"8066":0.0654054054,"8067":0.0663963964,"8068":0.0673873874,"8069":0.0683783784,"8070":0.0693693694,"8071":0.0703603604,"8072":0.0713513514,"8073":0.0723423423,"8074":0.0733333333,"8075":0.0743243243,"8076":0.0753153153,"8077":0.0763063063,"8078":0.0772972973,"8079":0.0782882883,"8080":0.0792792793,"8081":0.0802702703,"8082":0.0812612613,"8083":0.0822522523,"8084":0.0832432432,"8085":0.0842342342,"8086":0.0852252252,"8087":0.0862162162,"8088":0.0872072072,"8089":0.0881981982,"8090":0.0891891892,"8091":0.0901801802,"8092":0.0911711712,"8093":0.0921621622,"8094":0.0931531532,"8095":0.0941441441,"8096":0.0951351351,"8097":0.0961261261,"8098":0.0971171171,"8099":0.0981081081,"8100":0.0990990991,"8101":0.1000900901,"8102":0.1010810811,"8103":0.1020720721,"8104":0.1030630631,"8105":0.1040540541,"8106":0.105045045,"8107":0.106036036,"8108":0.107027027,"8109":0.108018018,"8110":0.109009009,"8111":0.11,"8112":0.110990991,"8113":0.111981982,"8114":0.112972973,"8115":0.113963964,"8116":0.114954955,"8117":0.1159459459,"8118":0.1169369369,"8119":0.1179279279,"8120":0.1189189189,"8121":0.1199099099,"8122":0.1209009009,"8123":0.1218918919,"8124":0.1228828829,"8125":0.1238738739,"8126":0.1248648649,"8127":0.1258558559,"8128":0.1268468468,"8129":0.1278378378,"8130":0.1288288288,"8131":0.1298198198,"8132":0.1308108108,"8133":0.1318018018,"8134":0.1327927928,"8135":0.1337837838,"8136":0.1347747748,"8137":0.1357657658,"8138":0.1367567568,"8139":0.1377477477,"8140":0.1387387387,"8141":0.1397297297,"8142":0.1407207207,"8143":0.1417117117,"8144":0.1427027027,"8145":0.1436936937,"8146":0.1446846847,"8147":0.1456756757,"8148":0.1466666667,"8149":0.1476576577,"8150":0.1486486486,"8151":0.1496396396,"8152":0.1506306306,"8153":0.1516216216,"8154":0.1526126126,"8155":0.1536036036,"8156":0.1545945946,"8157":0.1555855856,"8158":0.1565765766,"8159":0.1575675676,"8160":0.1585585586,"8161":0.1595495495,"8162":0.1605405405,"8163":0.1615315315,"8164":0.1625225225,"8165":0.1635135135,"8166":0.1645045045,"8167":0.1654954955,"8168":0.1664864865,"8169":0.1674774775,"8170":0.1684684685,"8171":0.1694594595,"8172":0.1704504505,"8173":0.1714414414,"8174":0.1724324324,"8175":0.1734234234,"8176":0.1744144144,"8177":0.1754054054,"8178":0.1763963964,"8179":0.1773873874,"8180":0.1783783784,"8181":0.1793693694,"8182":0.1803603604,"8183":0.1813513514,"8184":0.1823423423,"8185":0.1833333333,"8186":0.1843243243,"8187":0.1853153153,"8188":0.1863063063,"8189":0.1872972973,"8190":0.1882882883,"8191":0.1892792793,"8192":0.1902702703,"8193":0.1912612613,"8194":0.1922522523,"8195":0.1932432432,"8196":0.1942342342,"8197":0.1952252252,"8198":0.1962162162,"8199":0.1972072072,"8200":0.1981981982,"8201":0.1991891892,"8202":0.2001801802,"8203":0.2011711712,"8204":0.2021621622,"8205":0.2031531532,"8206":0.2041441441,"8207":0.2051351351,"8208":0.2061261261,"8209":0.2071171171,"8210":0.2081081081,"8211":0.2090990991,"8212":0.2100900901,"8213":0.2110810811,"8214":0.2120720721,"8215":0.2130630631,"8216":0.2140540541,"8217":0.215045045,"8218":0.216036036,"8219":0.217027027,"8220":0.218018018,"8221":0.219009009,"8222":0.22,"8223":0.220990991,"8224":0.221981982,"8225":0.222972973,"8226":0.223963964,"8227":0.224954955,"8228":0.2259459459,"8229":0.2269369369,"8230":0.2279279279,"8231":0.2289189189,"8232":0.2299099099,"8233":0.2309009009,"8234":0.2318918919,"8235":0.2328828829,"8236":0.2338738739,"8237":0.2348648649,"8238":0.2358558559,"8239":0.2368468468,"8240":0.2378378378,"8241":0.2388288288,"8242":0.2398198198,"8243":0.2408108108,"8244":0.2418018018,"8245":0.2427927928,"8246":0.2437837838,"8247":0.2447747748,"8248":0.2457657658,"8249":0.2467567568,"8250":0.2477477477,"8251":0.2487387387,"8252":0.2497297297,"8253":0.2507207207,"8254":0.2517117117,"8255":0.2527027027,"8256":0.2536936937,"8257":0.2546846847,"8258":0.2556756757,"8259":0.2566666667,"8260":0.2576576577,"8261":0.2586486486,"8262":0.2596396396,"8263":0.2606306306,"8264":0.2616216216,"8265":0.2626126126,"8266":0.2636036036,"8267":0.2645945946,"8268":0.2655855856,"8269":0.2665765766,"8270":0.2675675676,"8271":0.2685585586,"8272":0.2695495495,"8273":0.2705405405,"8274":0.2715315315,"8275":0.2725225225,"8276":0.2735135135,"8277":0.2745045045,"8278":0.2754954955,"8279":0.2764864865,"8280":0.2774774775,"8281":0.2784684685,"8282":0.2794594595,"8283":0.2804504505,"8284":0.2814414414,"8285":0.2824324324,"8286":0.2834234234,"8287":0.2844144144,"8288":0.2854054054,"8289":0.2863963964,"8290":0.2873873874,"8291":0.2883783784,"8292":0.2893693694,"8293":0.2903603604,"8294":0.2913513514,"8295":0.2923423423,"8296":0.2933333333,"8297":0.2943243243,"8298":0.2953153153,"8299":0.2963063063,"8300":0.2972972973,"8301":0.2982882883,"8302":0.2992792793,"8303":0.3002702703,"8304":0.3012612613,"8305":0.3022522523,"8306":0.3032432432,"8307":0.3042342342,"8308":0.3052252252,"8309":0.3062162162,"8310":0.3072072072,"8311":0.3081981982,"8312":0.3091891892,"8313":0.3101801802,"8314":0.3111711712,"8315":0.3121621622,"8316":0.3131531532,"8317":0.3141441441,"8318":0.3151351351,"8319":0.3161261261,"8320":0.3171171171,"8321":0.3181081081,"8322":0.3190990991,"8323":0.3200900901,"8324":0.3210810811,"8325":0.3220720721,"8326":0.3230630631,"8327":0.3240540541,"8328":0.325045045,"8329":0.326036036,"8330":0.327027027,"8331":0.328018018,"8332":0.329009009,"8333":0.33,"8334":0.330990991,"8335":0.331981982,"8336":0.332972973,"8337":0.333963964,"8338":0.334954955,"8339":0.3359459459,"8340":0.3369369369,"8341":0.3379279279,"8342":0.3389189189,"8343":0.3399099099,"8344":0.3409009009,"8345":0.3418918919,"8346":0.3428828829,"8347":0.3438738739,"8348":0.3448648649,"8349":0.3458558559,"8350":0.3468468468,"8351":0.3478378378,"8352":0.3488288288,"8353":0.3498198198,"8354":0.3508108108,"8355":0.3518018018,"8356":0.3527927928,"8357":0.3537837838,"8358":0.3547747748,"8359":0.3557657658,"8360":0.3567567568,"8361":0.3577477477,"8362":0.3587387387,"8363":0.3597297297,"8364":0.3607207207,"8365":0.3617117117,"8366":0.3627027027,"8367":0.3636936937,"8368":0.3646846847,"8369":0.3656756757,"8370":0.3666666667,"8371":0.3676576577,"8372":0.3686486486,"8373":0.3696396396,"8374":0.3706306306,"8375":0.3716216216,"8376":0.3726126126,"8377":0.3736036036,"8378":0.3745945946,"8379":0.3755855856,"8380":0.3765765766,"8381":0.3775675676,"8382":0.3785585586,"8383":0.3795495495,"8384":0.3805405405,"8385":0.3815315315,"8386":0.3825225225,"8387":0.3835135135,"8388":0.3845045045,"8389":0.3854954955,"8390":0.3864864865,"8391":0.3874774775,"8392":0.3884684685,"8393":0.3894594595,"8394":0.3904504505,"8395":0.3914414414,"8396":0.3924324324,"8397":0.3934234234,"8398":0.3944144144,"8399":0.3954054054,"8400":0.3963963964,"8401":0.3973873874,"8402":0.3983783784,"8403":0.3993693694,"8404":0.4003603604,"8405":0.4013513514,"8406":0.4023423423,"8407":0.4033333333,"8408":0.4043243243,"8409":0.4053153153,"8410":0.4063063063,"8411":0.4072972973,"8412":0.4082882883,"8413":0.4092792793,"8414":0.4102702703,"8415":0.4112612613,"8416":0.4122522523,"8417":0.4132432432,"8418":0.4142342342,"8419":0.4152252252,"8420":0.4162162162,"8421":0.4172072072,"8422":0.4181981982,"8423":0.4191891892,"8424":0.4201801802,"8425":0.4211711712,"8426":0.4221621622,"8427":0.4231531532,"8428":0.4241441441,"8429":0.4251351351,"8430":0.4261261261,"8431":0.4271171171,"8432":0.4281081081,"8433":0.4290990991,"8434":0.4300900901,"8435":0.4310810811,"8436":0.4320720721,"8437":0.4330630631,"8438":0.4340540541,"8439":0.435045045,"8440":0.436036036,"8441":0.437027027,"8442":0.438018018,"8443":0.439009009,"8444":0.44,"8445":0.440990991,"8446":0.441981982,"8447":0.442972973,"8448":0.443963964,"8449":0.444954955,"8450":0.4459459459,"8451":0.4469369369,"8452":0.4479279279,"8453":0.4489189189,"8454":0.4499099099,"8455":0.4509009009,"8456":0.4518918919,"8457":0.4528828829,"8458":0.4538738739,"8459":0.4548648649,"8460":0.4558558559,"8461":0.4568468468,"8462":0.4578378378,"8463":0.4588288288,"8464":0.4598198198,"8465":0.4608108108,"8466":0.4618018018,"8467":0.4627927928,"8468":0.4637837838,"8469":0.4647747748,"8470":0.4657657658,"8471":0.4667567568,"8472":0.4677477477,"8473":0.4687387387,"8474":0.4697297297,"8475":0.4707207207,"8476":0.4717117117,"8477":0.4727027027,"8478":0.4736936937,"8479":0.4746846847,"8480":0.4756756757,"8481":0.4766666667,"8482":0.4776576577,"8483":0.4786486486,"8484":0.4796396396,"8485":0.4806306306,"8486":0.4816216216,"8487":0.4826126126,"8488":0.4836036036,"8489":0.4845945946,"8490":0.4855855856,"8491":0.4865765766,"8492":0.4875675676,"8493":0.4885585586,"8494":0.4895495495,"8495":0.4905405405,"8496":0.4915315315,"8497":0.4925225225,"8498":0.4935135135,"8499":0.4945045045,"8500":0.4954954955,"8501":0.4964864865,"8502":0.4974774775,"8503":0.4984684685,"8504":0.4994594595,"8505":0.5004504505,"8506":0.5014414414,"8507":0.5024324324,"8508":0.5034234234,"8509":0.5044144144,"8510":0.5054054054,"8511":0.5063963964,"8512":0.5073873874,"8513":0.5083783784,"8514":0.5093693694,"8515":0.5103603604,"8516":0.5113513514,"8517":0.5123423423,"8518":0.5133333333,"8519":0.5143243243,"8520":0.5153153153,"8521":0.5163063063,"8522":0.5172972973,"8523":0.5182882883,"8524":0.5192792793,"8525":0.5202702703,"8526":0.5212612613,"8527":0.5222522523,"8528":0.5232432432,"8529":0.5242342342,"8530":0.5252252252,"8531":0.5262162162,"8532":0.5272072072,"8533":0.5281981982,"8534":0.5291891892,"8535":0.5301801802,"8536":0.5311711712,"8537":0.5321621622,"8538":0.5331531532,"8539":0.5341441441,"8540":0.5351351351,"8541":0.5361261261,"8542":0.5371171171,"8543":0.5381081081,"8544":0.5390990991,"8545":0.5400900901,"8546":0.5410810811,"8547":0.5420720721,"8548":0.5430630631,"8549":0.5440540541,"8550":0.545045045,"8551":0.546036036,"8552":0.547027027,"8553":0.548018018,"8554":0.549009009,"8555":0.55,"8556":0.550990991,"8557":0.551981982,"8558":0.552972973,"8559":0.553963964,"8560":0.554954955,"8561":0.5559459459,"8562":0.5569369369,"8563":0.5579279279,"8564":0.5589189189,"8565":0.5599099099,"8566":0.5609009009,"8567":0.5618918919,"8568":0.5628828829,"8569":0.5638738739,"8570":0.5648648649,"8571":0.5658558559,"8572":0.5668468468,"8573":0.5678378378,"8574":0.5688288288,"8575":0.5698198198,"8576":0.5708108108,"8577":0.5718018018,"8578":0.5727927928,"8579":0.5737837838,"8580":0.5747747748,"8581":0.5757657658,"8582":0.5767567568,"8583":0.5777477477,"8584":0.5787387387,"8585":0.5797297297,"8586":0.5807207207,"8587":0.5817117117,"8588":0.5827027027,"8589":0.5836936937,"8590":0.5846846847,"8591":0.5856756757,"8592":0.5866666667,"8593":0.5876576577,"8594":0.5886486486,"8595":0.5896396396,"8596":0.5906306306,"8597":0.5916216216,"8598":0.5926126126,"8599":0.5936036036,"8600":0.5945945946,"8601":0.5955855856,"8602":0.5965765766,"8603":0.5975675676,"8604":0.5985585586,"8605":0.5995495495,"8606":0.6005405405,"8607":0.6015315315,"8608":0.6025225225,"8609":0.6035135135,"8610":0.6045045045,"8611":0.6054954955,"8612":0.6064864865,"8613":0.6074774775,"8614":0.6084684685,"8615":0.6094594595,"8616":0.6104504505,"8617":0.6114414414,"8618":0.6124324324,"8619":0.6134234234,"8620":0.6144144144,"8621":0.6154054054,"8622":0.6163963964,"8623":0.6173873874,"8624":0.6183783784,"8625":0.6193693694,"8626":0.6203603604,"8627":0.6213513514,"8628":0.6223423423,"8629":0.6233333333,"8630":0.6243243243,"8631":0.6253153153,"8632":0.6263063063,"8633":0.6272972973,"8634":0.6282882883,"8635":0.6292792793,"8636":0.6302702703,"8637":0.6312612613,"8638":0.6322522523,"8639":0.6332432432,"8640":0.6342342342,"8641":0.6352252252,"8642":0.6362162162,"8643":0.6372072072,"8644":0.6381981982,"8645":0.6391891892,"8646":0.6401801802,"8647":0.6411711712,"8648":0.6421621622,"8649":0.6431531532,"8650":0.6441441441,"8651":0.6451351351,"8652":0.6461261261,"8653":0.6471171171,"8654":0.6481081081,"8655":0.6490990991,"8656":0.6500900901,"8657":0.6510810811,"8658":0.6520720721,"8659":0.6530630631,"8660":0.6540540541,"8661":0.655045045,"8662":0.656036036,"8663":0.657027027,"8664":0.658018018,"8665":0.659009009,"8666":0.66,"8667":0.660990991,"8668":0.661981982,"8669":0.662972973,"8670":0.663963964,"8671":0.664954955,"8672":0.6659459459,"8673":0.6669369369,"8674":0.6679279279,"8675":0.6689189189,"8676":0.6699099099,"8677":0.6709009009,"8678":0.6718918919,"8679":0.6728828829,"8680":0.6738738739,"8681":0.6748648649,"8682":0.6758558559,"8683":0.6768468468,"8684":0.6778378378,"8685":0.6788288288,"8686":0.6798198198,"8687":0.6808108108,"8688":0.6818018018,"8689":0.6827927928,"8690":0.6837837838,"8691":0.6847747748,"8692":0.6857657658,"8693":0.6867567568,"8694":0.6877477477,"8695":0.6887387387,"8696":0.6897297297,"8697":0.6907207207,"8698":0.6917117117,"8699":0.6927027027,"8700":0.6936936937,"8701":0.6946846847,"8702":0.6956756757,"8703":0.6966666667,"8704":0.6976576577,"8705":0.6986486486,"8706":0.6996396396,"8707":0.7006306306,"8708":0.7016216216,"8709":0.7026126126,"8710":0.7036036036,"8711":0.7045945946,"8712":0.7055855856,"8713":0.7065765766,"8714":0.7075675676,"8715":0.7085585586,"8716":0.7095495495,"8717":0.7105405405,"8718":0.7115315315,"8719":0.7125225225,"8720":0.7135135135,"8721":0.7145045045,"8722":0.7154954955,"8723":0.7164864865,"8724":0.7174774775,"8725":0.7184684685,"8726":0.7194594595,"8727":0.7204504505,"8728":0.7214414414,"8729":0.7224324324,"8730":0.7234234234,"8731":0.7244144144,"8732":0.7254054054,"8733":0.7263963964,"8734":0.7273873874,"8735":0.7283783784,"8736":0.7293693694,"8737":0.7303603604,"8738":0.7313513514,"8739":0.7323423423,"8740":0.7333333333,"8741":0.7343243243,"8742":0.7353153153,"8743":0.7363063063,"8744":0.7372972973,"8745":0.7382882883,"8746":0.7392792793,"8747":0.7402702703,"8748":0.7412612613,"8749":0.7422522523,"8750":0.7432432432,"8751":0.7442342342,"8752":0.7452252252,"8753":0.7462162162,"8754":0.7472072072,"8755":0.7481981982,"8756":0.7491891892,"8757":0.7501801802,"8758":0.7511711712,"8759":0.7521621622,"8760":0.7531531532,"8761":0.7541441441,"8762":0.7551351351,"8763":0.7561261261,"8764":0.7571171171,"8765":0.7581081081,"8766":0.7590990991,"8767":0.7600900901,"8768":0.7610810811,"8769":0.7620720721,"8770":0.7630630631,"8771":0.7640540541,"8772":0.765045045,"8773":0.766036036,"8774":0.767027027,"8775":0.768018018,"8776":0.769009009,"8777":0.77,"8778":0.770990991,"8779":0.771981982,"8780":0.772972973,"8781":0.773963964,"8782":0.774954955,"8783":0.7759459459,"8784":0.7769369369,"8785":0.7779279279,"8786":0.7789189189,"8787":0.7799099099,"8788":0.7809009009,"8789":0.7818918919,"8790":0.7828828829,"8791":0.7838738739,"8792":0.7848648649,"8793":0.7858558559,"8794":0.7868468468,"8795":0.7878378378,"8796":0.7888288288,"8797":0.7898198198,"8798":0.7908108108,"8799":0.7918018018,"8800":0.7927927928,"8801":0.7937837838,"8802":0.7947747748,"8803":0.7957657658,"8804":0.7967567568,"8805":0.7977477477,"8806":0.7987387387,"8807":0.7997297297,"8808":0.8007207207,"8809":0.8017117117,"8810":0.8027027027,"8811":0.8036936937,"8812":0.8046846847,"8813":0.8056756757,"8814":0.8066666667,"8815":0.8076576577,"8816":0.8086486486,"8817":0.8096396396,"8818":0.8106306306,"8819":0.8116216216,"8820":0.8126126126,"8821":0.8136036036,"8822":0.8145945946,"8823":0.8155855856,"8824":0.8165765766,"8825":0.8175675676,"8826":0.8185585586,"8827":0.8195495495,"8828":0.8205405405,"8829":0.8215315315,"8830":0.8225225225,"8831":0.8235135135,"8832":0.8245045045,"8833":0.8254954955,"8834":0.8264864865,"8835":0.8274774775,"8836":0.8284684685,"8837":0.8294594595,"8838":0.8304504505,"8839":0.8314414414,"8840":0.8324324324,"8841":0.8334234234,"8842":0.8344144144,"8843":0.8354054054,"8844":0.8363963964,"8845":0.8373873874,"8846":0.8383783784,"8847":0.8393693694,"8848":0.8403603604,"8849":0.8413513514,"8850":0.8423423423,"8851":0.8433333333,"8852":0.8443243243,"8853":0.8453153153,"8854":0.8463063063,"8855":0.8472972973,"8856":0.8482882883,"8857":0.8492792793,"8858":0.8502702703,"8859":0.8512612613,"8860":0.8522522523,"8861":0.8532432432,"8862":0.8542342342,"8863":0.8552252252,"8864":0.8562162162,"8865":0.8572072072,"8866":0.8581981982,"8867":0.8591891892,"8868":0.8601801802,"8869":0.8611711712,"8870":0.8621621622,"8871":0.8631531532,"8872":0.8641441441,"8873":0.8651351351,"8874":0.8661261261,"8875":0.8671171171,"8876":0.8681081081,"8877":0.8690990991,"8878":0.8700900901,"8879":0.8710810811,"8880":0.8720720721,"8881":0.8730630631,"8882":0.8740540541,"8883":0.875045045,"8884":0.876036036,"8885":0.877027027,"8886":0.878018018,"8887":0.879009009,"8888":0.88,"8889":0.880990991,"8890":0.881981982,"8891":0.882972973,"8892":0.883963964,"8893":0.884954955,"8894":0.8859459459,"8895":0.8869369369,"8896":0.8879279279,"8897":0.8889189189,"8898":0.8899099099,"8899":0.8909009009,"8900":0.8918918919,"8901":0.8928828829,"8902":0.8938738739,"8903":0.8948648649,"8904":0.8958558559,"8905":0.8968468468,"8906":0.8978378378,"8907":0.8988288288,"8908":0.8998198198,"8909":0.9008108108,"8910":0.9018018018,"8911":0.9027927928,"8912":0.9037837838,"8913":0.9047747748,"8914":0.9057657658,"8915":0.9067567568,"8916":0.9077477477,"8917":0.9087387387,"8918":0.9097297297,"8919":0.9107207207,"8920":0.9117117117,"8921":0.9127027027,"8922":0.9136936937,"8923":0.9146846847,"8924":0.9156756757,"8925":0.9166666667,"8926":0.9176576577,"8927":0.9186486486,"8928":0.9196396396,"8929":0.9206306306,"8930":0.9216216216,"8931":0.9226126126,"8932":0.9236036036,"8933":0.9245945946,"8934":0.9255855856,"8935":0.9265765766,"8936":0.9275675676,"8937":0.9285585586,"8938":0.9295495495,"8939":0.9305405405,"8940":0.9315315315,"8941":0.9325225225,"8942":0.9335135135,"8943":0.9345045045,"8944":0.9354954955,"8945":0.9364864865,"8946":0.9374774775,"8947":0.9384684685,"8948":0.9394594595,"8949":0.9404504505,"8950":0.9414414414,"8951":0.9424324324,"8952":0.9434234234,"8953":0.9444144144,"8954":0.9454054054,"8955":0.9463963964,"8956":0.9473873874,"8957":0.9483783784,"8958":0.9493693694,"8959":0.9503603604,"8960":0.9513513514,"8961":0.9523423423,"8962":0.9533333333,"8963":0.9543243243,"8964":0.9553153153,"8965":0.9563063063,"8966":0.9572972973,"8967":0.9582882883,"8968":0.9592792793,"8969":0.9602702703,"8970":0.9612612613,"8971":0.9622522523,"8972":0.9632432432,"8973":0.9642342342,"8974":0.9652252252,"8975":0.9662162162,"8976":0.9672072072,"8977":0.9681981982,"8978":0.9691891892,"8979":0.9701801802,"8980":0.9711711712,"8981":0.9721621622,"8982":0.9731531532,"8983":0.9741441441,"8984":0.9751351351,"8985":0.9761261261,"8986":0.9771171171,"8987":0.9781081081,"8988":0.9790990991,"8989":0.9800900901,"8990":0.9810810811,"8991":0.9820720721,"8992":0.9830630631,"8993":0.9840540541,"8994":0.985045045,"8995":0.986036036,"8996":0.987027027,"8997":0.988018018,"8998":0.989009009,"8999":0.99,"9000":0.0,"9001":0.000990991,"9002":0.001981982,"9003":0.002972973,"9004":0.003963964,"9005":0.004954955,"9006":0.0059459459,"9007":0.0069369369,"9008":0.0079279279,"9009":0.0089189189,"9010":0.0099099099,"9011":0.0109009009,"9012":0.0118918919,"9013":0.0128828829,"9014":0.0138738739,"9015":0.0148648649,"9016":0.0158558559,"9017":0.0168468468,"9018":0.0178378378,"9019":0.0188288288,"9020":0.0198198198,"9021":0.0208108108,"9022":0.0218018018,"9023":0.0227927928,"9024":0.0237837838,"9025":0.0247747748,"9026":0.0257657658,"9027":0.0267567568,"9028":0.0277477477,"9029":0.0287387387,"9030":0.0297297297,"9031":0.0307207207,"9032":0.0317117117,"9033":0.0327027027,"9034":0.0336936937,"9035":0.0346846847,"9036":0.0356756757,"9037":0.0366666667,"9038":0.0376576577,"9039":0.0386486486,"9040":0.0396396396,"9041":0.0406306306,"9042":0.0416216216,"9043":0.0426126126,"9044":0.0436036036,"9045":0.0445945946,"9046":0.0455855856,"9047":0.0465765766,"9048":0.0475675676,"9049":0.0485585586,"9050":0.0495495495,"9051":0.0505405405,"9052":0.0515315315,"9053":0.0525225225,"9054":0.0535135135,"9055":0.0545045045,"9056":0.0554954955,"9057":0.0564864865,"9058":0.0574774775,"9059":0.0584684685,"9060":0.0594594595,"9061":0.0604504505,"9062":0.0614414414,"9063":0.0624324324,"9064":0.0634234234,"9065":0.0644144144,"9066":0.0654054054,"9067":0.0663963964,"9068":0.0673873874,"9069":0.0683783784,"9070":0.0693693694,"9071":0.0703603604,"9072":0.0713513514,"9073":0.0723423423,"9074":0.0733333333,"9075":0.0743243243,"9076":0.0753153153,"9077":0.0763063063,"9078":0.0772972973,"9079":0.0782882883,"9080":0.0792792793,"9081":0.0802702703,"9082":0.0812612613,"9083":0.0822522523,"9084":0.0832432432,"9085":0.0842342342,"9086":0.0852252252,"9087":0.0862162162,"9088":0.0872072072,"9089":0.0881981982,"9090":0.0891891892,"9091":0.0901801802,"9092":0.0911711712,"9093":0.0921621622,"9094":0.0931531532,"9095":0.0941441441,"9096":0.0951351351,"9097":0.0961261261,"9098":0.0971171171,"9099":0.0981081081,"9100":0.0990990991,"9101":0.1000900901,"9102":0.1010810811,"9103":0.1020720721,"9104":0.1030630631,"9105":0.1040540541,"9106":0.105045045,"9107":0.106036036,"9108":0.107027027,"9109":0.108018018,"9110":0.109009009,"9111":0.11,"9112":0.110990991,"9113":0.111981982,"9114":0.112972973,"9115":0.113963964,"9116":0.114954955,"9117":0.1159459459,"9118":0.1169369369,"9119":0.1179279279,"9120":0.1189189189,"9121":0.1199099099,"9122":0.1209009009,"9123":0.1218918919,"9124":0.1228828829,"9125":0.1238738739,"9126":0.1248648649,"9127":0.1258558559,"9128":0.1268468468,"9129":0.1278378378,"9130":0.1288288288,"9131":0.1298198198,"9132":0.1308108108,"9133":0.1318018018,"9134":0.1327927928,"9135":0.1337837838,"9136":0.1347747748,"9137":0.1357657658,"9138":0.1367567568,"9139":0.1377477477,"9140":0.1387387387,"9141":0.1397297297,"9142":0.1407207207,"9143":0.1417117117,"9144":0.1427027027,"9145":0.1436936937,"9146":0.1446846847,"9147":0.1456756757,"9148":0.1466666667,"9149":0.1476576577,"9150":0.1486486486,"9151":0.1496396396,"9152":0.1506306306,"9153":0.1516216216,"9154":0.1526126126,"9155":0.1536036036,"9156":0.1545945946,"9157":0.1555855856,"9158":0.1565765766,"9159":0.1575675676,"9160":0.1585585586,"9161":0.1595495495,"9162":0.1605405405,"9163":0.1615315315,"9164":0.1625225225,"9165":0.1635135135,"9166":0.1645045045,"9167":0.1654954955,"9168":0.1664864865,"9169":0.1674774775,"9170":0.1684684685,"9171":0.1694594595,"9172":0.1704504505,"9173":0.1714414414,"9174":0.1724324324,"9175":0.1734234234,"9176":0.1744144144,"9177":0.1754054054,"9178":0.1763963964,"9179":0.1773873874,"9180":0.1783783784,"9181":0.1793693694,"9182":0.1803603604,"9183":0.1813513514,"9184":0.1823423423,"9185":0.1833333333,"9186":0.1843243243,"9187":0.1853153153,"9188":0.1863063063,"9189":0.1872972973,"9190":0.1882882883,"9191":0.1892792793,"9192":0.1902702703,"9193":0.1912612613,"9194":0.1922522523,"9195":0.1932432432,"9196":0.1942342342,"9197":0.1952252252,"9198":0.1962162162,"9199":0.1972072072,"9200":0.1981981982,"9201":0.1991891892,"9202":0.2001801802,"9203":0.2011711712,"9204":0.2021621622,"9205":0.2031531532,"9206":0.2041441441,"9207":0.2051351351,"9208":0.2061261261,"9209":0.2071171171,"9210":0.2081081081,"9211":0.2090990991,"9212":0.2100900901,"9213":0.2110810811,"9214":0.2120720721,"9215":0.2130630631,"9216":0.2140540541,"9217":0.215045045,"9218":0.216036036,"9219":0.217027027,"9220":0.218018018,"9221":0.219009009,"9222":0.22,"9223":0.220990991,"9224":0.221981982,"9225":0.222972973,"9226":0.223963964,"9227":0.224954955,"9228":0.2259459459,"9229":0.2269369369,"9230":0.2279279279,"9231":0.2289189189,"9232":0.2299099099,"9233":0.2309009009,"9234":0.2318918919,"9235":0.2328828829,"9236":0.2338738739,"9237":0.2348648649,"9238":0.2358558559,"9239":0.2368468468,"9240":0.2378378378,"9241":0.2388288288,"9242":0.2398198198,"9243":0.2408108108,"9244":0.2418018018,"9245":0.2427927928,"9246":0.2437837838,"9247":0.2447747748,"9248":0.2457657658,"9249":0.2467567568,"9250":0.2477477477,"9251":0.2487387387,"9252":0.2497297297,"9253":0.2507207207,"9254":0.2517117117,"9255":0.2527027027,"9256":0.2536936937,"9257":0.2546846847,"9258":0.2556756757,"9259":0.2566666667,"9260":0.2576576577,"9261":0.2586486486,"9262":0.2596396396,"9263":0.2606306306,"9264":0.2616216216,"9265":0.2626126126,"9266":0.2636036036,"9267":0.2645945946,"9268":0.2655855856,"9269":0.2665765766,"9270":0.2675675676,"9271":0.2685585586,"9272":0.2695495495,"9273":0.2705405405,"9274":0.2715315315,"9275":0.2725225225,"9276":0.2735135135,"9277":0.2745045045,"9278":0.2754954955,"9279":0.2764864865,"9280":0.2774774775,"9281":0.2784684685,"9282":0.2794594595,"9283":0.2804504505,"9284":0.2814414414,"9285":0.2824324324,"9286":0.2834234234,"9287":0.2844144144,"9288":0.2854054054,"9289":0.2863963964,"9290":0.2873873874,"9291":0.2883783784,"9292":0.2893693694,"9293":0.2903603604,"9294":0.2913513514,"9295":0.2923423423,"9296":0.2933333333,"9297":0.2943243243,"9298":0.2953153153,"9299":0.2963063063,"9300":0.2972972973,"9301":0.2982882883,"9302":0.2992792793,"9303":0.3002702703,"9304":0.3012612613,"9305":0.3022522523,"9306":0.3032432432,"9307":0.3042342342,"9308":0.3052252252,"9309":0.3062162162,"9310":0.3072072072,"9311":0.3081981982,"9312":0.3091891892,"9313":0.3101801802,"9314":0.3111711712,"9315":0.3121621622,"9316":0.3131531532,"9317":0.3141441441,"9318":0.3151351351,"9319":0.3161261261,"9320":0.3171171171,"9321":0.3181081081,"9322":0.3190990991,"9323":0.3200900901,"9324":0.3210810811,"9325":0.3220720721,"9326":0.3230630631,"9327":0.3240540541,"9328":0.325045045,"9329":0.326036036,"9330":0.327027027,"9331":0.328018018,"9332":0.329009009,"9333":0.33,"9334":0.330990991,"9335":0.331981982,"9336":0.332972973,"9337":0.333963964,"9338":0.334954955,"9339":0.3359459459,"9340":0.3369369369,"9341":0.3379279279,"9342":0.3389189189,"9343":0.3399099099,"9344":0.3409009009,"9345":0.3418918919,"9346":0.3428828829,"9347":0.3438738739,"9348":0.3448648649,"9349":0.3458558559,"9350":0.3468468468,"9351":0.3478378378,"9352":0.3488288288,"9353":0.3498198198,"9354":0.3508108108,"9355":0.3518018018,"9356":0.3527927928,"9357":0.3537837838,"9358":0.3547747748,"9359":0.3557657658,"9360":0.3567567568,"9361":0.3577477477,"9362":0.3587387387,"9363":0.3597297297,"9364":0.3607207207,"9365":0.3617117117,"9366":0.3627027027,"9367":0.3636936937,"9368":0.3646846847,"9369":0.3656756757,"9370":0.3666666667,"9371":0.3676576577,"9372":0.3686486486,"9373":0.3696396396,"9374":0.3706306306,"9375":0.3716216216,"9376":0.3726126126,"9377":0.3736036036,"9378":0.3745945946,"9379":0.3755855856,"9380":0.3765765766,"9381":0.3775675676,"9382":0.3785585586,"9383":0.3795495495,"9384":0.3805405405,"9385":0.3815315315,"9386":0.3825225225,"9387":0.3835135135,"9388":0.3845045045,"9389":0.3854954955,"9390":0.3864864865,"9391":0.3874774775,"9392":0.3884684685,"9393":0.3894594595,"9394":0.3904504505,"9395":0.3914414414,"9396":0.3924324324,"9397":0.3934234234,"9398":0.3944144144,"9399":0.3954054054,"9400":0.3963963964,"9401":0.3973873874,"9402":0.3983783784,"9403":0.3993693694,"9404":0.4003603604,"9405":0.4013513514,"9406":0.4023423423,"9407":0.4033333333,"9408":0.4043243243,"9409":0.4053153153,"9410":0.4063063063,"9411":0.4072972973,"9412":0.4082882883,"9413":0.4092792793,"9414":0.4102702703,"9415":0.4112612613,"9416":0.4122522523,"9417":0.4132432432,"9418":0.4142342342,"9419":0.4152252252,"9420":0.4162162162,"9421":0.4172072072,"9422":0.4181981982,"9423":0.4191891892,"9424":0.4201801802,"9425":0.4211711712,"9426":0.4221621622,"9427":0.4231531532,"9428":0.4241441441,"9429":0.4251351351,"9430":0.4261261261,"9431":0.4271171171,"9432":0.4281081081,"9433":0.4290990991,"9434":0.4300900901,"9435":0.4310810811,"9436":0.4320720721,"9437":0.4330630631,"9438":0.4340540541,"9439":0.435045045,"9440":0.436036036,"9441":0.437027027,"9442":0.438018018,"9443":0.439009009,"9444":0.44,"9445":0.440990991,"9446":0.441981982,"9447":0.442972973,"9448":0.443963964,"9449":0.444954955,"9450":0.4459459459,"9451":0.4469369369,"9452":0.4479279279,"9453":0.4489189189,"9454":0.4499099099,"9455":0.4509009009,"9456":0.4518918919,"9457":0.4528828829,"9458":0.4538738739,"9459":0.4548648649,"9460":0.4558558559,"9461":0.4568468468,"9462":0.4578378378,"9463":0.4588288288,"9464":0.4598198198,"9465":0.4608108108,"9466":0.4618018018,"9467":0.4627927928,"9468":0.4637837838,"9469":0.4647747748,"9470":0.4657657658,"9471":0.4667567568,"9472":0.4677477477,"9473":0.4687387387,"9474":0.4697297297,"9475":0.4707207207,"9476":0.4717117117,"9477":0.4727027027,"9478":0.4736936937,"9479":0.4746846847,"9480":0.4756756757,"9481":0.4766666667,"9482":0.4776576577,"9483":0.4786486486,"9484":0.4796396396,"9485":0.4806306306,"9486":0.4816216216,"9487":0.4826126126,"9488":0.4836036036,"9489":0.4845945946,"9490":0.4855855856,"9491":0.4865765766,"9492":0.4875675676,"9493":0.4885585586,"9494":0.4895495495,"9495":0.4905405405,"9496":0.4915315315,"9497":0.4925225225,"9498":0.4935135135,"9499":0.4945045045,"9500":0.4954954955,"9501":0.4964864865,"9502":0.4974774775,"9503":0.4984684685,"9504":0.4994594595,"9505":0.5004504505,"9506":0.5014414414,"9507":0.5024324324,"9508":0.5034234234,"9509":0.5044144144,"9510":0.5054054054,"9511":0.5063963964,"9512":0.5073873874,"9513":0.5083783784,"9514":0.5093693694,"9515":0.5103603604,"9516":0.5113513514,"9517":0.5123423423,"9518":0.5133333333,"9519":0.5143243243,"9520":0.5153153153,"9521":0.5163063063,"9522":0.5172972973,"9523":0.5182882883,"9524":0.5192792793,"9525":0.5202702703,"9526":0.5212612613,"9527":0.5222522523,"9528":0.5232432432,"9529":0.5242342342,"9530":0.5252252252,"9531":0.5262162162,"9532":0.5272072072,"9533":0.5281981982,"9534":0.5291891892,"9535":0.5301801802,"9536":0.5311711712,"9537":0.5321621622,"9538":0.5331531532,"9539":0.5341441441,"9540":0.5351351351,"9541":0.5361261261,"9542":0.5371171171,"9543":0.5381081081,"9544":0.5390990991,"9545":0.5400900901,"9546":0.5410810811,"9547":0.5420720721,"9548":0.5430630631,"9549":0.5440540541,"9550":0.545045045,"9551":0.546036036,"9552":0.547027027,"9553":0.548018018,"9554":0.549009009,"9555":0.55,"9556":0.550990991,"9557":0.551981982,"9558":0.552972973,"9559":0.553963964,"9560":0.554954955,"9561":0.5559459459,"9562":0.5569369369,"9563":0.5579279279,"9564":0.5589189189,"9565":0.5599099099,"9566":0.5609009009,"9567":0.5618918919,"9568":0.5628828829,"9569":0.5638738739,"9570":0.5648648649,"9571":0.5658558559,"9572":0.5668468468,"9573":0.5678378378,"9574":0.5688288288,"9575":0.5698198198,"9576":0.5708108108,"9577":0.5718018018,"9578":0.5727927928,"9579":0.5737837838,"9580":0.5747747748,"9581":0.5757657658,"9582":0.5767567568,"9583":0.5777477477,"9584":0.5787387387,"9585":0.5797297297,"9586":0.5807207207,"9587":0.5817117117,"9588":0.5827027027,"9589":0.5836936937,"9590":0.5846846847,"9591":0.5856756757,"9592":0.5866666667,"9593":0.5876576577,"9594":0.5886486486,"9595":0.5896396396,"9596":0.5906306306,"9597":0.5916216216,"9598":0.5926126126,"9599":0.5936036036,"9600":0.5945945946,"9601":0.5955855856,"9602":0.5965765766,"9603":0.5975675676,"9604":0.5985585586,"9605":0.5995495495,"9606":0.6005405405,"9607":0.6015315315,"9608":0.6025225225,"9609":0.6035135135,"9610":0.6045045045,"9611":0.6054954955,"9612":0.6064864865,"9613":0.6074774775,"9614":0.6084684685,"9615":0.6094594595,"9616":0.6104504505,"9617":0.6114414414,"9618":0.6124324324,"9619":0.6134234234,"9620":0.6144144144,"9621":0.6154054054,"9622":0.6163963964,"9623":0.6173873874,"9624":0.6183783784,"9625":0.6193693694,"9626":0.6203603604,"9627":0.6213513514,"9628":0.6223423423,"9629":0.6233333333,"9630":0.6243243243,"9631":0.6253153153,"9632":0.6263063063,"9633":0.6272972973,"9634":0.6282882883,"9635":0.6292792793,"9636":0.6302702703,"9637":0.6312612613,"9638":0.6322522523,"9639":0.6332432432,"9640":0.6342342342,"9641":0.6352252252,"9642":0.6362162162,"9643":0.6372072072,"9644":0.6381981982,"9645":0.6391891892,"9646":0.6401801802,"9647":0.6411711712,"9648":0.6421621622,"9649":0.6431531532,"9650":0.6441441441,"9651":0.6451351351,"9652":0.6461261261,"9653":0.6471171171,"9654":0.6481081081,"9655":0.6490990991,"9656":0.6500900901,"9657":0.6510810811,"9658":0.6520720721,"9659":0.6530630631,"9660":0.6540540541,"9661":0.655045045,"9662":0.656036036,"9663":0.657027027,"9664":0.658018018,"9665":0.659009009,"9666":0.66,"9667":0.660990991,"9668":0.661981982,"9669":0.662972973,"9670":0.663963964,"9671":0.664954955,"9672":0.6659459459,"9673":0.6669369369,"9674":0.6679279279,"9675":0.6689189189,"9676":0.6699099099,"9677":0.6709009009,"9678":0.6718918919,"9679":0.6728828829,"9680":0.6738738739,"9681":0.6748648649,"9682":0.6758558559,"9683":0.6768468468,"9684":0.6778378378,"9685":0.6788288288,"9686":0.6798198198,"9687":0.6808108108,"9688":0.6818018018,"9689":0.6827927928,"9690":0.6837837838,"9691":0.6847747748,"9692":0.6857657658,"9693":0.6867567568,"9694":0.6877477477,"9695":0.6887387387,"9696":0.6897297297,"9697":0.6907207207,"9698":0.6917117117,"9699":0.6927027027,"9700":0.6936936937,"9701":0.6946846847,"9702":0.6956756757,"9703":0.6966666667,"9704":0.6976576577,"9705":0.6986486486,"9706":0.6996396396,"9707":0.7006306306,"9708":0.7016216216,"9709":0.7026126126,"9710":0.7036036036,"9711":0.7045945946,"9712":0.7055855856,"9713":0.7065765766,"9714":0.7075675676,"9715":0.7085585586,"9716":0.7095495495,"9717":0.7105405405,"9718":0.7115315315,"9719":0.7125225225,"9720":0.7135135135,"9721":0.7145045045,"9722":0.7154954955,"9723":0.7164864865,"9724":0.7174774775,"9725":0.7184684685,"9726":0.7194594595,"9727":0.7204504505,"9728":0.7214414414,"9729":0.7224324324,"9730":0.7234234234,"9731":0.7244144144,"9732":0.7254054054,"9733":0.7263963964,"9734":0.7273873874,"9735":0.7283783784,"9736":0.7293693694,"9737":0.7303603604,"9738":0.7313513514,"9739":0.7323423423,"9740":0.7333333333,"9741":0.7343243243,"9742":0.7353153153,"9743":0.7363063063,"9744":0.7372972973,"9745":0.7382882883,"9746":0.7392792793,"9747":0.7402702703,"9748":0.7412612613,"9749":0.7422522523,"9750":0.7432432432,"9751":0.7442342342,"9752":0.7452252252,"9753":0.7462162162,"9754":0.7472072072,"9755":0.7481981982,"9756":0.7491891892,"9757":0.7501801802,"9758":0.7511711712,"9759":0.7521621622,"9760":0.7531531532,"9761":0.7541441441,"9762":0.7551351351,"9763":0.7561261261,"9764":0.7571171171,"9765":0.7581081081,"9766":0.7590990991,"9767":0.7600900901,"9768":0.7610810811,"9769":0.7620720721,"9770":0.7630630631,"9771":0.7640540541,"9772":0.765045045,"9773":0.766036036,"9774":0.767027027,"9775":0.768018018,"9776":0.769009009,"9777":0.77,"9778":0.770990991,"9779":0.771981982,"9780":0.772972973,"9781":0.773963964,"9782":0.774954955,"9783":0.7759459459,"9784":0.7769369369,"9785":0.7779279279,"9786":0.7789189189,"9787":0.7799099099,"9788":0.7809009009,"9789":0.7818918919,"9790":0.7828828829,"9791":0.7838738739,"9792":0.7848648649,"9793":0.7858558559,"9794":0.7868468468,"9795":0.7878378378,"9796":0.7888288288,"9797":0.7898198198,"9798":0.7908108108,"9799":0.7918018018,"9800":0.7927927928,"9801":0.7937837838,"9802":0.7947747748,"9803":0.7957657658,"9804":0.7967567568,"9805":0.7977477477,"9806":0.7987387387,"9807":0.7997297297,"9808":0.8007207207,"9809":0.8017117117,"9810":0.8027027027,"9811":0.8036936937,"9812":0.8046846847,"9813":0.8056756757,"9814":0.8066666667,"9815":0.8076576577,"9816":0.8086486486,"9817":0.8096396396,"9818":0.8106306306,"9819":0.8116216216,"9820":0.8126126126,"9821":0.8136036036,"9822":0.8145945946,"9823":0.8155855856,"9824":0.8165765766,"9825":0.8175675676,"9826":0.8185585586,"9827":0.8195495495,"9828":0.8205405405,"9829":0.8215315315,"9830":0.8225225225,"9831":0.8235135135,"9832":0.8245045045,"9833":0.8254954955,"9834":0.8264864865,"9835":0.8274774775,"9836":0.8284684685,"9837":0.8294594595,"9838":0.8304504505,"9839":0.8314414414,"9840":0.8324324324,"9841":0.8334234234,"9842":0.8344144144,"9843":0.8354054054,"9844":0.8363963964,"9845":0.8373873874,"9846":0.8383783784,"9847":0.8393693694,"9848":0.8403603604,"9849":0.8413513514,"9850":0.8423423423,"9851":0.8433333333,"9852":0.8443243243,"9853":0.8453153153,"9854":0.8463063063,"9855":0.8472972973,"9856":0.8482882883,"9857":0.8492792793,"9858":0.8502702703,"9859":0.8512612613,"9860":0.8522522523,"9861":0.8532432432,"9862":0.8542342342,"9863":0.8552252252,"9864":0.8562162162,"9865":0.8572072072,"9866":0.8581981982,"9867":0.8591891892,"9868":0.8601801802,"9869":0.8611711712,"9870":0.8621621622,"9871":0.8631531532,"9872":0.8641441441,"9873":0.8651351351,"9874":0.8661261261,"9875":0.8671171171,"9876":0.8681081081,"9877":0.8690990991,"9878":0.8700900901,"9879":0.8710810811,"9880":0.8720720721,"9881":0.8730630631,"9882":0.8740540541,"9883":0.875045045,"9884":0.876036036,"9885":0.877027027,"9886":0.878018018,"9887":0.879009009,"9888":0.88,"9889":0.880990991,"9890":0.881981982,"9891":0.882972973,"9892":0.883963964,"9893":0.884954955,"9894":0.8859459459,"9895":0.8869369369,"9896":0.8879279279,"9897":0.8889189189,"9898":0.8899099099,"9899":0.8909009009,"9900":0.8918918919,"9901":0.8928828829,"9902":0.8938738739,"9903":0.8948648649,"9904":0.8958558559,"9905":0.8968468468,"9906":0.8978378378,"9907":0.8988288288,"9908":0.8998198198,"9909":0.9008108108,"9910":0.9018018018,"9911":0.9027927928,"9912":0.9037837838,"9913":0.9047747748,"9914":0.9057657658,"9915":0.9067567568,"9916":0.9077477477,"9917":0.9087387387,"9918":0.9097297297,"9919":0.9107207207,"9920":0.9117117117,"9921":0.9127027027,"9922":0.9136936937,"9923":0.9146846847,"9924":0.9156756757,"9925":0.9166666667,"9926":0.9176576577,"9927":0.9186486486,"9928":0.9196396396,"9929":0.9206306306,"9930":0.9216216216,"9931":0.9226126126,"9932":0.9236036036,"9933":0.9245945946,"9934":0.9255855856,"9935":0.9265765766,"9936":0.9275675676,"9937":0.9285585586,"9938":0.9295495495,"9939":0.9305405405,"9940":0.9315315315,"9941":0.9325225225,"9942":0.9335135135,"9943":0.9345045045,"9944":0.9354954955,"9945":0.9364864865,"9946":0.9374774775,"9947":0.9384684685,"9948":0.9394594595,"9949":0.9404504505,"9950":0.9414414414,"9951":0.9424324324,"9952":0.9434234234,"9953":0.9444144144,"9954":0.9454054054,"9955":0.9463963964,"9956":0.9473873874,"9957":0.9483783784,"9958":0.9493693694,"9959":0.9503603604,"9960":0.9513513514,"9961":0.9523423423,"9962":0.9533333333,"9963":0.9543243243,"9964":0.9553153153,"9965":0.9563063063,"9966":0.9572972973,"9967":0.9582882883,"9968":0.9592792793,"9969":0.9602702703,"9970":0.9612612613,"9971":0.9622522523,"9972":0.9632432432,"9973":0.9642342342,"9974":0.9652252252,"9975":0.9662162162,"9976":0.9672072072,"9977":0.9681981982,"9978":0.9691891892,"9979":0.9701801802,"9980":0.9711711712,"9981":0.9721621622,"9982":0.9731531532,"9983":0.9741441441,"9984":0.9751351351,"9985":0.9761261261,"9986":0.9771171171,"9987":0.9781081081,"9988":0.9790990991,"9989":0.9800900901,"9990":0.9810810811,"9991":0.9820720721,"9992":0.9830630631,"9993":0.9840540541,"9994":0.985045045,"9995":0.986036036,"9996":0.987027027,"9997":0.988018018,"9998":0.989009009,"9999":0.99,"10000":0.0,"10001":0.000990991,"10002":0.001981982,"10003":0.002972973,"10004":0.003963964,"10005":0.004954955,"10006":0.0059459459,"10007":0.0069369369,"10008":0.0079279279,"10009":0.0089189189,"10010":0.0099099099,"10011":0.0109009009,"10012":0.0118918919,"10013":0.0128828829,"10014":0.0138738739,"10015":0.0148648649,"10016":0.0158558559,"10017":0.0168468468,"10018":0.0178378378,"10019":0.0188288288,"10020":0.0198198198,"10021":0.0208108108,"10022":0.0218018018,"10023":0.0227927928,"10024":0.0237837838,"10025":0.0247747748,"10026":0.0257657658,"10027":0.0267567568,"10028":0.0277477477,"10029":0.0287387387,"10030":0.0297297297,"10031":0.0307207207,"10032":0.0317117117,"10033":0.0327027027,"10034":0.0336936937,"10035":0.0346846847,"10036":0.0356756757,"10037":0.0366666667,"10038":0.0376576577,"10039":0.0386486486,"10040":0.0396396396,"10041":0.0406306306,"10042":0.0416216216,"10043":0.0426126126,"10044":0.0436036036,"10045":0.0445945946,"10046":0.0455855856,"10047":0.0465765766,"10048":0.0475675676,"10049":0.0485585586,"10050":0.0495495495,"10051":0.0505405405,"10052":0.0515315315,"10053":0.0525225225,"10054":0.0535135135,"10055":0.0545045045,"10056":0.0554954955,"10057":0.0564864865,"10058":0.0574774775,"10059":0.0584684685,"10060":0.0594594595,"10061":0.0604504505,"10062":0.0614414414,"10063":0.0624324324,"10064":0.0634234234,"10065":0.0644144144,"10066":0.0654054054,"10067":0.0663963964,"10068":0.0673873874,"10069":0.0683783784,"10070":0.0693693694,"10071":0.0703603604,"10072":0.0713513514,"10073":0.0723423423,"10074":0.0733333333,"10075":0.0743243243,"10076":0.0753153153,"10077":0.0763063063,"10078":0.0772972973,"10079":0.0782882883,"10080":0.0792792793,"10081":0.0802702703,"10082":0.0812612613,"10083":0.0822522523,"10084":0.0832432432,"10085":0.0842342342,"10086":0.0852252252,"10087":0.0862162162,"10088":0.0872072072,"10089":0.0881981982,"10090":0.0891891892,"10091":0.0901801802,"10092":0.0911711712,"10093":0.0921621622,"10094":0.0931531532,"10095":0.0941441441,"10096":0.0951351351,"10097":0.0961261261,"10098":0.0971171171,"10099":0.0981081081,"10100":0.0990990991,"10101":0.1000900901,"10102":0.1010810811,"10103":0.1020720721,"10104":0.1030630631,"10105":0.1040540541,"10106":0.105045045,"10107":0.106036036,"10108":0.107027027,"10109":0.108018018,"10110":0.109009009,"10111":0.11,"10112":0.110990991,"10113":0.111981982,"10114":0.112972973,"10115":0.113963964,"10116":0.114954955,"10117":0.1159459459,"10118":0.1169369369,"10119":0.1179279279,"10120":0.1189189189,"10121":0.1199099099,"10122":0.1209009009,"10123":0.1218918919,"10124":0.1228828829,"10125":0.1238738739,"10126":0.1248648649,"10127":0.1258558559,"10128":0.1268468468,"10129":0.1278378378,"10130":0.1288288288,"10131":0.1298198198,"10132":0.1308108108,"10133":0.1318018018,"10134":0.1327927928,"10135":0.1337837838,"10136":0.1347747748,"10137":0.1357657658,"10138":0.1367567568,"10139":0.1377477477,"10140":0.1387387387,"10141":0.1397297297,"10142":0.1407207207,"10143":0.1417117117,"10144":0.1427027027,"10145":0.1436936937,"10146":0.1446846847,"10147":0.1456756757,"10148":0.1466666667,"10149":0.1476576577,"10150":0.1486486486,"10151":0.1496396396,"10152":0.1506306306,"10153":0.1516216216,"10154":0.1526126126,"10155":0.1536036036,"10156":0.1545945946,"10157":0.1555855856,"10158":0.1565765766,"10159":0.1575675676,"10160":0.1585585586,"10161":0.1595495495,"10162":0.1605405405,"10163":0.1615315315,"10164":0.1625225225,"10165":0.1635135135,"10166":0.1645045045,"10167":0.1654954955,"10168":0.1664864865,"10169":0.1674774775,"10170":0.1684684685,"10171":0.1694594595,"10172":0.1704504505,"10173":0.1714414414,"10174":0.1724324324,"10175":0.1734234234,"10176":0.1744144144,"10177":0.1754054054,"10178":0.1763963964,"10179":0.1773873874,"10180":0.1783783784,"10181":0.1793693694,"10182":0.1803603604,"10183":0.1813513514,"10184":0.1823423423,"10185":0.1833333333,"10186":0.1843243243,"10187":0.1853153153,"10188":0.1863063063,"10189":0.1872972973,"10190":0.1882882883,"10191":0.1892792793,"10192":0.1902702703,"10193":0.1912612613,"10194":0.1922522523,"10195":0.1932432432,"10196":0.1942342342,"10197":0.1952252252,"10198":0.1962162162,"10199":0.1972072072,"10200":0.1981981982,"10201":0.1991891892,"10202":0.2001801802,"10203":0.2011711712,"10204":0.2021621622,"10205":0.2031531532,"10206":0.2041441441,"10207":0.2051351351,"10208":0.2061261261,"10209":0.2071171171,"10210":0.2081081081,"10211":0.2090990991,"10212":0.2100900901,"10213":0.2110810811,"10214":0.2120720721,"10215":0.2130630631,"10216":0.2140540541,"10217":0.215045045,"10218":0.216036036,"10219":0.217027027,"10220":0.218018018,"10221":0.219009009,"10222":0.22,"10223":0.220990991,"10224":0.221981982,"10225":0.222972973,"10226":0.223963964,"10227":0.224954955,"10228":0.2259459459,"10229":0.2269369369,"10230":0.2279279279,"10231":0.2289189189,"10232":0.2299099099,"10233":0.2309009009,"10234":0.2318918919,"10235":0.2328828829,"10236":0.2338738739,"10237":0.2348648649,"10238":0.2358558559,"10239":0.2368468468,"10240":0.2378378378,"10241":0.2388288288,"10242":0.2398198198,"10243":0.2408108108,"10244":0.2418018018,"10245":0.2427927928,"10246":0.2437837838,"10247":0.2447747748,"10248":0.2457657658,"10249":0.2467567568,"10250":0.2477477477,"10251":0.2487387387,"10252":0.2497297297,"10253":0.2507207207,"10254":0.2517117117,"10255":0.2527027027,"10256":0.2536936937,"10257":0.2546846847,"10258":0.2556756757,"10259":0.2566666667,"10260":0.2576576577,"10261":0.2586486486,"10262":0.2596396396,"10263":0.2606306306,"10264":0.2616216216,"10265":0.2626126126,"10266":0.2636036036,"10267":0.2645945946,"10268":0.2655855856,"10269":0.2665765766,"10270":0.2675675676,"10271":0.2685585586,"10272":0.2695495495,"10273":0.2705405405,"10274":0.2715315315,"10275":0.2725225225,"10276":0.2735135135,"10277":0.2745045045,"10278":0.2754954955,"10279":0.2764864865,"10280":0.2774774775,"10281":0.2784684685,"10282":0.2794594595,"10283":0.2804504505,"10284":0.2814414414,"10285":0.2824324324,"10286":0.2834234234,"10287":0.2844144144,"10288":0.2854054054,"10289":0.2863963964,"10290":0.2873873874,"10291":0.2883783784,"10292":0.2893693694,"10293":0.2903603604,"10294":0.2913513514,"10295":0.2923423423,"10296":0.2933333333,"10297":0.2943243243,"10298":0.2953153153,"10299":0.2963063063,"10300":0.2972972973,"10301":0.2982882883,"10302":0.2992792793,"10303":0.3002702703,"10304":0.3012612613,"10305":0.3022522523,"10306":0.3032432432,"10307":0.3042342342,"10308":0.3052252252,"10309":0.3062162162,"10310":0.3072072072,"10311":0.3081981982,"10312":0.3091891892,"10313":0.3101801802,"10314":0.3111711712,"10315":0.3121621622,"10316":0.3131531532,"10317":0.3141441441,"10318":0.3151351351,"10319":0.3161261261,"10320":0.3171171171,"10321":0.3181081081,"10322":0.3190990991,"10323":0.3200900901,"10324":0.3210810811,"10325":0.3220720721,"10326":0.3230630631,"10327":0.3240540541,"10328":0.325045045,"10329":0.326036036,"10330":0.327027027,"10331":0.328018018,"10332":0.329009009,"10333":0.33,"10334":0.330990991,"10335":0.331981982,"10336":0.332972973,"10337":0.333963964,"10338":0.334954955,"10339":0.3359459459,"10340":0.3369369369,"10341":0.3379279279,"10342":0.3389189189,"10343":0.3399099099,"10344":0.3409009009,"10345":0.3418918919,"10346":0.3428828829,"10347":0.3438738739,"10348":0.3448648649,"10349":0.3458558559,"10350":0.3468468468,"10351":0.3478378378,"10352":0.3488288288,"10353":0.3498198198,"10354":0.3508108108,"10355":0.3518018018,"10356":0.3527927928,"10357":0.3537837838,"10358":0.3547747748,"10359":0.3557657658,"10360":0.3567567568,"10361":0.3577477477,"10362":0.3587387387,"10363":0.3597297297,"10364":0.3607207207,"10365":0.3617117117,"10366":0.3627027027,"10367":0.3636936937,"10368":0.3646846847,"10369":0.3656756757,"10370":0.3666666667,"10371":0.3676576577,"10372":0.3686486486,"10373":0.3696396396,"10374":0.3706306306,"10375":0.3716216216,"10376":0.3726126126,"10377":0.3736036036,"10378":0.3745945946,"10379":0.3755855856,"10380":0.3765765766,"10381":0.3775675676,"10382":0.3785585586,"10383":0.3795495495,"10384":0.3805405405,"10385":0.3815315315,"10386":0.3825225225,"10387":0.3835135135,"10388":0.3845045045,"10389":0.3854954955,"10390":0.3864864865,"10391":0.3874774775,"10392":0.3884684685,"10393":0.3894594595,"10394":0.3904504505,"10395":0.3914414414,"10396":0.3924324324,"10397":0.3934234234,"10398":0.3944144144,"10399":0.3954054054,"10400":0.3963963964,"10401":0.3973873874,"10402":0.3983783784,"10403":0.3993693694,"10404":0.4003603604,"10405":0.4013513514,"10406":0.4023423423,"10407":0.4033333333,"10408":0.4043243243,"10409":0.4053153153,"10410":0.4063063063,"10411":0.4072972973,"10412":0.4082882883,"10413":0.4092792793,"10414":0.4102702703,"10415":0.4112612613,"10416":0.4122522523,"10417":0.4132432432,"10418":0.4142342342,"10419":0.4152252252,"10420":0.4162162162,"10421":0.4172072072,"10422":0.4181981982,"10423":0.4191891892,"10424":0.4201801802,"10425":0.4211711712,"10426":0.4221621622,"10427":0.4231531532,"10428":0.4241441441,"10429":0.4251351351,"10430":0.4261261261,"10431":0.4271171171,"10432":0.4281081081,"10433":0.4290990991,"10434":0.4300900901,"10435":0.4310810811,"10436":0.4320720721,"10437":0.4330630631,"10438":0.4340540541,"10439":0.435045045,"10440":0.436036036,"10441":0.437027027,"10442":0.438018018,"10443":0.439009009,"10444":0.44,"10445":0.440990991,"10446":0.441981982,"10447":0.442972973,"10448":0.443963964,"10449":0.444954955,"10450":0.4459459459,"10451":0.4469369369,"10452":0.4479279279,"10453":0.4489189189,"10454":0.4499099099,"10455":0.4509009009,"10456":0.4518918919,"10457":0.4528828829,"10458":0.4538738739,"10459":0.4548648649,"10460":0.4558558559,"10461":0.4568468468,"10462":0.4578378378,"10463":0.4588288288,"10464":0.4598198198,"10465":0.4608108108,"10466":0.4618018018,"10467":0.4627927928,"10468":0.4637837838,"10469":0.4647747748,"10470":0.4657657658,"10471":0.4667567568,"10472":0.4677477477,"10473":0.4687387387,"10474":0.4697297297,"10475":0.4707207207,"10476":0.4717117117,"10477":0.4727027027,"10478":0.4736936937,"10479":0.4746846847,"10480":0.4756756757,"10481":0.4766666667,"10482":0.4776576577,"10483":0.4786486486,"10484":0.4796396396,"10485":0.4806306306,"10486":0.4816216216,"10487":0.4826126126,"10488":0.4836036036,"10489":0.4845945946,"10490":0.4855855856,"10491":0.4865765766,"10492":0.4875675676,"10493":0.4885585586,"10494":0.4895495495,"10495":0.4905405405,"10496":0.4915315315,"10497":0.4925225225,"10498":0.4935135135,"10499":0.4945045045,"10500":0.4954954955,"10501":0.4964864865,"10502":0.4974774775,"10503":0.4984684685,"10504":0.4994594595,"10505":0.5004504505,"10506":0.5014414414,"10507":0.5024324324,"10508":0.5034234234,"10509":0.5044144144,"10510":0.5054054054,"10511":0.5063963964,"10512":0.5073873874,"10513":0.5083783784,"10514":0.5093693694,"10515":0.5103603604,"10516":0.5113513514,"10517":0.5123423423,"10518":0.5133333333,"10519":0.5143243243,"10520":0.5153153153,"10521":0.5163063063,"10522":0.5172972973,"10523":0.5182882883,"10524":0.5192792793,"10525":0.5202702703,"10526":0.5212612613,"10527":0.5222522523,"10528":0.5232432432,"10529":0.5242342342,"10530":0.5252252252,"10531":0.5262162162,"10532":0.5272072072,"10533":0.5281981982,"10534":0.5291891892,"10535":0.5301801802,"10536":0.5311711712,"10537":0.5321621622,"10538":0.5331531532,"10539":0.5341441441,"10540":0.5351351351,"10541":0.5361261261,"10542":0.5371171171,"10543":0.5381081081,"10544":0.5390990991,"10545":0.5400900901,"10546":0.5410810811,"10547":0.5420720721,"10548":0.5430630631,"10549":0.5440540541,"10550":0.545045045,"10551":0.546036036,"10552":0.547027027,"10553":0.548018018,"10554":0.549009009,"10555":0.55,"10556":0.550990991,"10557":0.551981982,"10558":0.552972973,"10559":0.553963964,"10560":0.554954955,"10561":0.5559459459,"10562":0.5569369369,"10563":0.5579279279,"10564":0.5589189189,"10565":0.5599099099,"10566":0.5609009009,"10567":0.5618918919,"10568":0.5628828829,"10569":0.5638738739,"10570":0.5648648649,"10571":0.5658558559,"10572":0.5668468468,"10573":0.5678378378,"10574":0.5688288288,"10575":0.5698198198,"10576":0.5708108108,"10577":0.5718018018,"10578":0.5727927928,"10579":0.5737837838,"10580":0.5747747748,"10581":0.5757657658,"10582":0.5767567568,"10583":0.5777477477,"10584":0.5787387387,"10585":0.5797297297,"10586":0.5807207207,"10587":0.5817117117,"10588":0.5827027027,"10589":0.5836936937,"10590":0.5846846847,"10591":0.5856756757,"10592":0.5866666667,"10593":0.5876576577,"10594":0.5886486486,"10595":0.5896396396,"10596":0.5906306306,"10597":0.5916216216,"10598":0.5926126126,"10599":0.5936036036,"10600":0.5945945946,"10601":0.5955855856,"10602":0.5965765766,"10603":0.5975675676,"10604":0.5985585586,"10605":0.5995495495,"10606":0.6005405405,"10607":0.6015315315,"10608":0.6025225225,"10609":0.6035135135,"10610":0.6045045045,"10611":0.6054954955,"10612":0.6064864865,"10613":0.6074774775,"10614":0.6084684685,"10615":0.6094594595,"10616":0.6104504505,"10617":0.6114414414,"10618":0.6124324324,"10619":0.6134234234,"10620":0.6144144144,"10621":0.6154054054,"10622":0.6163963964,"10623":0.6173873874,"10624":0.6183783784,"10625":0.6193693694,"10626":0.6203603604,"10627":0.6213513514,"10628":0.6223423423,"10629":0.6233333333,"10630":0.6243243243,"10631":0.6253153153,"10632":0.6263063063,"10633":0.6272972973,"10634":0.6282882883,"10635":0.6292792793,"10636":0.6302702703,"10637":0.6312612613,"10638":0.6322522523,"10639":0.6332432432,"10640":0.6342342342,"10641":0.6352252252,"10642":0.6362162162,"10643":0.6372072072,"10644":0.6381981982,"10645":0.6391891892,"10646":0.6401801802,"10647":0.6411711712,"10648":0.6421621622,"10649":0.6431531532,"10650":0.6441441441,"10651":0.6451351351,"10652":0.6461261261,"10653":0.6471171171,"10654":0.6481081081,"10655":0.6490990991,"10656":0.6500900901,"10657":0.6510810811,"10658":0.6520720721,"10659":0.6530630631,"10660":0.6540540541,"10661":0.655045045,"10662":0.656036036,"10663":0.657027027,"10664":0.658018018,"10665":0.659009009,"10666":0.66,"10667":0.660990991,"10668":0.661981982,"10669":0.662972973,"10670":0.663963964,"10671":0.664954955,"10672":0.6659459459,"10673":0.6669369369,"10674":0.6679279279,"10675":0.6689189189,"10676":0.6699099099,"10677":0.6709009009,"10678":0.6718918919,"10679":0.6728828829,"10680":0.6738738739,"10681":0.6748648649,"10682":0.6758558559,"10683":0.6768468468,"10684":0.6778378378,"10685":0.6788288288,"10686":0.6798198198,"10687":0.6808108108,"10688":0.6818018018,"10689":0.6827927928,"10690":0.6837837838,"10691":0.6847747748,"10692":0.6857657658,"10693":0.6867567568,"10694":0.6877477477,"10695":0.6887387387,"10696":0.6897297297,"10697":0.6907207207,"10698":0.6917117117,"10699":0.6927027027,"10700":0.6936936937,"10701":0.6946846847,"10702":0.6956756757,"10703":0.6966666667,"10704":0.6976576577,"10705":0.6986486486,"10706":0.6996396396,"10707":0.7006306306,"10708":0.7016216216,"10709":0.7026126126,"10710":0.7036036036,"10711":0.7045945946,"10712":0.7055855856,"10713":0.7065765766,"10714":0.7075675676,"10715":0.7085585586,"10716":0.7095495495,"10717":0.7105405405,"10718":0.7115315315,"10719":0.7125225225,"10720":0.7135135135,"10721":0.7145045045,"10722":0.7154954955,"10723":0.7164864865,"10724":0.7174774775,"10725":0.7184684685,"10726":0.7194594595,"10727":0.7204504505,"10728":0.7214414414,"10729":0.7224324324,"10730":0.7234234234,"10731":0.7244144144,"10732":0.7254054054,"10733":0.7263963964,"10734":0.7273873874,"10735":0.7283783784,"10736":0.7293693694,"10737":0.7303603604,"10738":0.7313513514,"10739":0.7323423423,"10740":0.7333333333,"10741":0.7343243243,"10742":0.7353153153,"10743":0.7363063063,"10744":0.7372972973,"10745":0.7382882883,"10746":0.7392792793,"10747":0.7402702703,"10748":0.7412612613,"10749":0.7422522523,"10750":0.7432432432,"10751":0.7442342342,"10752":0.7452252252,"10753":0.7462162162,"10754":0.7472072072,"10755":0.7481981982,"10756":0.7491891892,"10757":0.7501801802,"10758":0.7511711712,"10759":0.7521621622,"10760":0.7531531532,"10761":0.7541441441,"10762":0.7551351351,"10763":0.7561261261,"10764":0.7571171171,"10765":0.7581081081,"10766":0.7590990991,"10767":0.7600900901,"10768":0.7610810811,"10769":0.7620720721,"10770":0.7630630631,"10771":0.7640540541,"10772":0.765045045,"10773":0.766036036,"10774":0.767027027,"10775":0.768018018,"10776":0.769009009,"10777":0.77,"10778":0.770990991,"10779":0.771981982,"10780":0.772972973,"10781":0.773963964,"10782":0.774954955,"10783":0.7759459459,"10784":0.7769369369,"10785":0.7779279279,"10786":0.7789189189,"10787":0.7799099099,"10788":0.7809009009,"10789":0.7818918919,"10790":0.7828828829,"10791":0.7838738739,"10792":0.7848648649,"10793":0.7858558559,"10794":0.7868468468,"10795":0.7878378378,"10796":0.7888288288,"10797":0.7898198198,"10798":0.7908108108,"10799":0.7918018018,"10800":0.7927927928,"10801":0.7937837838,"10802":0.7947747748,"10803":0.7957657658,"10804":0.7967567568,"10805":0.7977477477,"10806":0.7987387387,"10807":0.7997297297,"10808":0.8007207207,"10809":0.8017117117,"10810":0.8027027027,"10811":0.8036936937,"10812":0.8046846847,"10813":0.8056756757,"10814":0.8066666667,"10815":0.8076576577,"10816":0.8086486486,"10817":0.8096396396,"10818":0.8106306306,"10819":0.8116216216,"10820":0.8126126126,"10821":0.8136036036,"10822":0.8145945946,"10823":0.8155855856,"10824":0.8165765766,"10825":0.8175675676,"10826":0.8185585586,"10827":0.8195495495,"10828":0.8205405405,"10829":0.8215315315,"10830":0.8225225225,"10831":0.8235135135,"10832":0.8245045045,"10833":0.8254954955,"10834":0.8264864865,"10835":0.8274774775,"10836":0.8284684685,"10837":0.8294594595,"10838":0.8304504505,"10839":0.8314414414,"10840":0.8324324324,"10841":0.8334234234,"10842":0.8344144144,"10843":0.8354054054,"10844":0.8363963964,"10845":0.8373873874,"10846":0.8383783784,"10847":0.8393693694,"10848":0.8403603604,"10849":0.8413513514,"10850":0.8423423423,"10851":0.8433333333,"10852":0.8443243243,"10853":0.8453153153,"10854":0.8463063063,"10855":0.8472972973,"10856":0.8482882883,"10857":0.8492792793,"10858":0.8502702703,"10859":0.8512612613,"10860":0.8522522523,"10861":0.8532432432,"10862":0.8542342342,"10863":0.8552252252,"10864":0.8562162162,"10865":0.8572072072,"10866":0.8581981982,"10867":0.8591891892,"10868":0.8601801802,"10869":0.8611711712,"10870":0.8621621622,"10871":0.8631531532,"10872":0.8641441441,"10873":0.8651351351,"10874":0.8661261261,"10875":0.8671171171,"10876":0.8681081081,"10877":0.8690990991,"10878":0.8700900901,"10879":0.8710810811,"10880":0.8720720721,"10881":0.8730630631,"10882":0.8740540541,"10883":0.875045045,"10884":0.876036036,"10885":0.877027027,"10886":0.878018018,"10887":0.879009009,"10888":0.88,"10889":0.880990991,"10890":0.881981982,"10891":0.882972973,"10892":0.883963964,"10893":0.884954955,"10894":0.8859459459,"10895":0.8869369369,"10896":0.8879279279,"10897":0.8889189189,"10898":0.8899099099,"10899":0.8909009009,"10900":0.8918918919,"10901":0.8928828829,"10902":0.8938738739,"10903":0.8948648649,"10904":0.8958558559,"10905":0.8968468468,"10906":0.8978378378,"10907":0.8988288288,"10908":0.8998198198,"10909":0.9008108108,"10910":0.9018018018,"10911":0.9027927928,"10912":0.9037837838,"10913":0.9047747748,"10914":0.9057657658,"10915":0.9067567568,"10916":0.9077477477,"10917":0.9087387387,"10918":0.9097297297,"10919":0.9107207207,"10920":0.9117117117,"10921":0.9127027027,"10922":0.9136936937,"10923":0.9146846847,"10924":0.9156756757,"10925":0.9166666667,"10926":0.9176576577,"10927":0.9186486486,"10928":0.9196396396,"10929":0.9206306306,"10930":0.9216216216,"10931":0.9226126126,"10932":0.9236036036,"10933":0.9245945946,"10934":0.9255855856,"10935":0.9265765766,"10936":0.9275675676,"10937":0.9285585586,"10938":0.9295495495,"10939":0.9305405405,"10940":0.9315315315,"10941":0.9325225225,"10942":0.9335135135,"10943":0.9345045045,"10944":0.9354954955,"10945":0.9364864865,"10946":0.9374774775,"10947":0.9384684685,"10948":0.9394594595,"10949":0.9404504505,"10950":0.9414414414,"10951":0.9424324324,"10952":0.9434234234,"10953":0.9444144144,"10954":0.9454054054,"10955":0.9463963964,"10956":0.9473873874,"10957":0.9483783784,"10958":0.9493693694,"10959":0.9503603604,"10960":0.9513513514,"10961":0.9523423423,"10962":0.9533333333,"10963":0.9543243243,"10964":0.9553153153,"10965":0.9563063063,"10966":0.9572972973,"10967":0.9582882883,"10968":0.9592792793,"10969":0.9602702703,"10970":0.9612612613,"10971":0.9622522523,"10972":0.9632432432,"10973":0.9642342342,"10974":0.9652252252,"10975":0.9662162162,"10976":0.9672072072,"10977":0.9681981982,"10978":0.9691891892,"10979":0.9701801802,"10980":0.9711711712,"10981":0.9721621622,"10982":0.9731531532,"10983":0.9741441441,"10984":0.9751351351,"10985":0.9761261261,"10986":0.9771171171,"10987":0.9781081081,"10988":0.9790990991,"10989":0.9800900901,"10990":0.9810810811,"10991":0.9820720721,"10992":0.9830630631,"10993":0.9840540541,"10994":0.985045045,"10995":0.986036036,"10996":0.987027027,"10997":0.988018018,"10998":0.989009009,"10999":0.99,"11000":0.0,"11001":0.000990991,"11002":0.001981982,"11003":0.002972973,"11004":0.003963964,"11005":0.004954955,"11006":0.0059459459,"11007":0.0069369369,"11008":0.0079279279,"11009":0.0089189189,"11010":0.0099099099,"11011":0.0109009009,"11012":0.0118918919,"11013":0.0128828829,"11014":0.0138738739,"11015":0.0148648649,"11016":0.0158558559,"11017":0.0168468468,"11018":0.0178378378,"11019":0.0188288288,"11020":0.0198198198,"11021":0.0208108108,"11022":0.0218018018,"11023":0.0227927928,"11024":0.0237837838,"11025":0.0247747748,"11026":0.0257657658,"11027":0.0267567568,"11028":0.0277477477,"11029":0.0287387387,"11030":0.0297297297,"11031":0.0307207207,"11032":0.0317117117,"11033":0.0327027027,"11034":0.0336936937,"11035":0.0346846847,"11036":0.0356756757,"11037":0.0366666667,"11038":0.0376576577,"11039":0.0386486486,"11040":0.0396396396,"11041":0.0406306306,"11042":0.0416216216,"11043":0.0426126126,"11044":0.0436036036,"11045":0.0445945946,"11046":0.0455855856,"11047":0.0465765766,"11048":0.0475675676,"11049":0.0485585586,"11050":0.0495495495,"11051":0.0505405405,"11052":0.0515315315,"11053":0.0525225225,"11054":0.0535135135,"11055":0.0545045045,"11056":0.0554954955,"11057":0.0564864865,"11058":0.0574774775,"11059":0.0584684685,"11060":0.0594594595,"11061":0.0604504505,"11062":0.0614414414,"11063":0.0624324324,"11064":0.0634234234,"11065":0.0644144144,"11066":0.0654054054,"11067":0.0663963964,"11068":0.0673873874,"11069":0.0683783784,"11070":0.0693693694,"11071":0.0703603604,"11072":0.0713513514,"11073":0.0723423423,"11074":0.0733333333,"11075":0.0743243243,"11076":0.0753153153,"11077":0.0763063063,"11078":0.0772972973,"11079":0.0782882883,"11080":0.0792792793,"11081":0.0802702703,"11082":0.0812612613,"11083":0.0822522523,"11084":0.0832432432,"11085":0.0842342342,"11086":0.0852252252,"11087":0.0862162162,"11088":0.0872072072,"11089":0.0881981982,"11090":0.0891891892,"11091":0.0901801802,"11092":0.0911711712,"11093":0.0921621622,"11094":0.0931531532,"11095":0.0941441441,"11096":0.0951351351,"11097":0.0961261261,"11098":0.0971171171,"11099":0.0981081081,"11100":0.0990990991,"11101":0.1000900901,"11102":0.1010810811,"11103":0.1020720721,"11104":0.1030630631,"11105":0.1040540541,"11106":0.105045045,"11107":0.106036036,"11108":0.107027027,"11109":0.108018018,"11110":0.109009009,"11111":0.11,"11112":0.110990991,"11113":0.111981982,"11114":0.112972973,"11115":0.113963964,"11116":0.114954955,"11117":0.1159459459,"11118":0.1169369369,"11119":0.1179279279,"11120":0.1189189189,"11121":0.1199099099,"11122":0.1209009009,"11123":0.1218918919,"11124":0.1228828829,"11125":0.1238738739,"11126":0.1248648649,"11127":0.1258558559,"11128":0.1268468468,"11129":0.1278378378,"11130":0.1288288288,"11131":0.1298198198,"11132":0.1308108108,"11133":0.1318018018,"11134":0.1327927928,"11135":0.1337837838,"11136":0.1347747748,"11137":0.1357657658,"11138":0.1367567568,"11139":0.1377477477,"11140":0.1387387387,"11141":0.1397297297,"11142":0.1407207207,"11143":0.1417117117,"11144":0.1427027027,"11145":0.1436936937,"11146":0.1446846847,"11147":0.1456756757,"11148":0.1466666667,"11149":0.1476576577,"11150":0.1486486486,"11151":0.1496396396,"11152":0.1506306306,"11153":0.1516216216,"11154":0.1526126126,"11155":0.1536036036,"11156":0.1545945946,"11157":0.1555855856,"11158":0.1565765766,"11159":0.1575675676,"11160":0.1585585586,"11161":0.1595495495,"11162":0.1605405405,"11163":0.1615315315,"11164":0.1625225225,"11165":0.1635135135,"11166":0.1645045045,"11167":0.1654954955,"11168":0.1664864865,"11169":0.1674774775,"11170":0.1684684685,"11171":0.1694594595,"11172":0.1704504505,"11173":0.1714414414,"11174":0.1724324324,"11175":0.1734234234,"11176":0.1744144144,"11177":0.1754054054,"11178":0.1763963964,"11179":0.1773873874,"11180":0.1783783784,"11181":0.1793693694,"11182":0.1803603604,"11183":0.1813513514,"11184":0.1823423423,"11185":0.1833333333,"11186":0.1843243243,"11187":0.1853153153,"11188":0.1863063063,"11189":0.1872972973,"11190":0.1882882883,"11191":0.1892792793,"11192":0.1902702703,"11193":0.1912612613,"11194":0.1922522523,"11195":0.1932432432,"11196":0.1942342342,"11197":0.1952252252,"11198":0.1962162162,"11199":0.1972072072,"11200":0.1981981982,"11201":0.1991891892,"11202":0.2001801802,"11203":0.2011711712,"11204":0.2021621622,"11205":0.2031531532,"11206":0.2041441441,"11207":0.2051351351,"11208":0.2061261261,"11209":0.2071171171,"11210":0.2081081081,"11211":0.2090990991,"11212":0.2100900901,"11213":0.2110810811,"11214":0.2120720721,"11215":0.2130630631,"11216":0.2140540541,"11217":0.215045045,"11218":0.216036036,"11219":0.217027027,"11220":0.218018018,"11221":0.219009009,"11222":0.22,"11223":0.220990991,"11224":0.221981982,"11225":0.222972973,"11226":0.223963964,"11227":0.224954955,"11228":0.2259459459,"11229":0.2269369369,"11230":0.2279279279,"11231":0.2289189189,"11232":0.2299099099,"11233":0.2309009009,"11234":0.2318918919,"11235":0.2328828829,"11236":0.2338738739,"11237":0.2348648649,"11238":0.2358558559,"11239":0.2368468468,"11240":0.2378378378,"11241":0.2388288288,"11242":0.2398198198,"11243":0.2408108108,"11244":0.2418018018,"11245":0.2427927928,"11246":0.2437837838,"11247":0.2447747748,"11248":0.2457657658,"11249":0.2467567568,"11250":0.2477477477,"11251":0.2487387387,"11252":0.2497297297,"11253":0.2507207207,"11254":0.2517117117,"11255":0.2527027027,"11256":0.2536936937,"11257":0.2546846847,"11258":0.2556756757,"11259":0.2566666667,"11260":0.2576576577,"11261":0.2586486486,"11262":0.2596396396,"11263":0.2606306306,"11264":0.2616216216,"11265":0.2626126126,"11266":0.2636036036,"11267":0.2645945946,"11268":0.2655855856,"11269":0.2665765766,"11270":0.2675675676,"11271":0.2685585586,"11272":0.2695495495,"11273":0.2705405405,"11274":0.2715315315,"11275":0.2725225225,"11276":0.2735135135,"11277":0.2745045045,"11278":0.2754954955,"11279":0.2764864865,"11280":0.2774774775,"11281":0.2784684685,"11282":0.2794594595,"11283":0.2804504505,"11284":0.2814414414,"11285":0.2824324324,"11286":0.2834234234,"11287":0.2844144144,"11288":0.2854054054,"11289":0.2863963964,"11290":0.2873873874,"11291":0.2883783784,"11292":0.2893693694,"11293":0.2903603604,"11294":0.2913513514,"11295":0.2923423423,"11296":0.2933333333,"11297":0.2943243243,"11298":0.2953153153,"11299":0.2963063063,"11300":0.2972972973,"11301":0.2982882883,"11302":0.2992792793,"11303":0.3002702703,"11304":0.3012612613,"11305":0.3022522523,"11306":0.3032432432,"11307":0.3042342342,"11308":0.3052252252,"11309":0.3062162162,"11310":0.3072072072,"11311":0.3081981982,"11312":0.3091891892,"11313":0.3101801802,"11314":0.3111711712,"11315":0.3121621622,"11316":0.3131531532,"11317":0.3141441441,"11318":0.3151351351,"11319":0.3161261261,"11320":0.3171171171,"11321":0.3181081081,"11322":0.3190990991,"11323":0.3200900901,"11324":0.3210810811,"11325":0.3220720721,"11326":0.3230630631,"11327":0.3240540541,"11328":0.325045045,"11329":0.326036036,"11330":0.327027027,"11331":0.328018018,"11332":0.329009009,"11333":0.33,"11334":0.330990991,"11335":0.331981982,"11336":0.332972973,"11337":0.333963964,"11338":0.334954955,"11339":0.3359459459,"11340":0.3369369369,"11341":0.3379279279,"11342":0.3389189189,"11343":0.3399099099,"11344":0.3409009009,"11345":0.3418918919,"11346":0.3428828829,"11347":0.3438738739,"11348":0.3448648649,"11349":0.3458558559,"11350":0.3468468468,"11351":0.3478378378,"11352":0.3488288288,"11353":0.3498198198,"11354":0.3508108108,"11355":0.3518018018,"11356":0.3527927928,"11357":0.3537837838,"11358":0.3547747748,"11359":0.3557657658,"11360":0.3567567568,"11361":0.3577477477,"11362":0.3587387387,"11363":0.3597297297,"11364":0.3607207207,"11365":0.3617117117,"11366":0.3627027027,"11367":0.3636936937,"11368":0.3646846847,"11369":0.3656756757,"11370":0.3666666667,"11371":0.3676576577,"11372":0.3686486486,"11373":0.3696396396,"11374":0.3706306306,"11375":0.3716216216,"11376":0.3726126126,"11377":0.3736036036,"11378":0.3745945946,"11379":0.3755855856,"11380":0.3765765766,"11381":0.3775675676,"11382":0.3785585586,"11383":0.3795495495,"11384":0.3805405405,"11385":0.3815315315,"11386":0.3825225225,"11387":0.3835135135,"11388":0.3845045045,"11389":0.3854954955,"11390":0.3864864865,"11391":0.3874774775,"11392":0.3884684685,"11393":0.3894594595,"11394":0.3904504505,"11395":0.3914414414,"11396":0.3924324324,"11397":0.3934234234,"11398":0.3944144144,"11399":0.3954054054,"11400":0.3963963964,"11401":0.3973873874,"11402":0.3983783784,"11403":0.3993693694,"11404":0.4003603604,"11405":0.4013513514,"11406":0.4023423423,"11407":0.4033333333,"11408":0.4043243243,"11409":0.4053153153,"11410":0.4063063063,"11411":0.4072972973,"11412":0.4082882883,"11413":0.4092792793,"11414":0.4102702703,"11415":0.4112612613,"11416":0.4122522523,"11417":0.4132432432,"11418":0.4142342342,"11419":0.4152252252,"11420":0.4162162162,"11421":0.4172072072,"11422":0.4181981982,"11423":0.4191891892,"11424":0.4201801802,"11425":0.4211711712,"11426":0.4221621622,"11427":0.4231531532,"11428":0.4241441441,"11429":0.4251351351,"11430":0.4261261261,"11431":0.4271171171,"11432":0.4281081081,"11433":0.4290990991,"11434":0.4300900901,"11435":0.4310810811,"11436":0.4320720721,"11437":0.4330630631,"11438":0.4340540541,"11439":0.435045045,"11440":0.436036036,"11441":0.437027027,"11442":0.438018018,"11443":0.439009009,"11444":0.44,"11445":0.440990991,"11446":0.441981982,"11447":0.442972973,"11448":0.443963964,"11449":0.444954955,"11450":0.4459459459,"11451":0.4469369369,"11452":0.4479279279,"11453":0.4489189189,"11454":0.4499099099,"11455":0.4509009009,"11456":0.4518918919,"11457":0.4528828829,"11458":0.4538738739,"11459":0.4548648649,"11460":0.4558558559,"11461":0.4568468468,"11462":0.4578378378,"11463":0.4588288288,"11464":0.4598198198,"11465":0.4608108108,"11466":0.4618018018,"11467":0.4627927928,"11468":0.4637837838,"11469":0.4647747748,"11470":0.4657657658,"11471":0.4667567568,"11472":0.4677477477,"11473":0.4687387387,"11474":0.4697297297,"11475":0.4707207207,"11476":0.4717117117,"11477":0.4727027027,"11478":0.4736936937,"11479":0.4746846847,"11480":0.4756756757,"11481":0.4766666667,"11482":0.4776576577,"11483":0.4786486486,"11484":0.4796396396,"11485":0.4806306306,"11486":0.4816216216,"11487":0.4826126126,"11488":0.4836036036,"11489":0.4845945946,"11490":0.4855855856,"11491":0.4865765766,"11492":0.4875675676,"11493":0.4885585586,"11494":0.4895495495,"11495":0.4905405405,"11496":0.4915315315,"11497":0.4925225225,"11498":0.4935135135,"11499":0.4945045045,"11500":0.4954954955,"11501":0.4964864865,"11502":0.4974774775,"11503":0.4984684685,"11504":0.4994594595,"11505":0.5004504505,"11506":0.5014414414,"11507":0.5024324324,"11508":0.5034234234,"11509":0.5044144144,"11510":0.5054054054,"11511":0.5063963964,"11512":0.5073873874,"11513":0.5083783784,"11514":0.5093693694,"11515":0.5103603604,"11516":0.5113513514,"11517":0.5123423423,"11518":0.5133333333,"11519":0.5143243243,"11520":0.5153153153,"11521":0.5163063063,"11522":0.5172972973,"11523":0.5182882883,"11524":0.5192792793,"11525":0.5202702703,"11526":0.5212612613,"11527":0.5222522523,"11528":0.5232432432,"11529":0.5242342342,"11530":0.5252252252,"11531":0.5262162162,"11532":0.5272072072,"11533":0.5281981982,"11534":0.5291891892,"11535":0.5301801802,"11536":0.5311711712,"11537":0.5321621622,"11538":0.5331531532,"11539":0.5341441441,"11540":0.5351351351,"11541":0.5361261261,"11542":0.5371171171,"11543":0.5381081081,"11544":0.5390990991,"11545":0.5400900901,"11546":0.5410810811,"11547":0.5420720721,"11548":0.5430630631,"11549":0.5440540541,"11550":0.545045045,"11551":0.546036036,"11552":0.547027027,"11553":0.548018018,"11554":0.549009009,"11555":0.55,"11556":0.550990991,"11557":0.551981982,"11558":0.552972973,"11559":0.553963964,"11560":0.554954955,"11561":0.5559459459,"11562":0.5569369369,"11563":0.5579279279,"11564":0.5589189189,"11565":0.5599099099,"11566":0.5609009009,"11567":0.5618918919,"11568":0.5628828829,"11569":0.5638738739,"11570":0.5648648649,"11571":0.5658558559,"11572":0.5668468468,"11573":0.5678378378,"11574":0.5688288288,"11575":0.5698198198,"11576":0.5708108108,"11577":0.5718018018,"11578":0.5727927928,"11579":0.5737837838,"11580":0.5747747748,"11581":0.5757657658,"11582":0.5767567568,"11583":0.5777477477,"11584":0.5787387387,"11585":0.5797297297,"11586":0.5807207207,"11587":0.5817117117,"11588":0.5827027027,"11589":0.5836936937,"11590":0.5846846847,"11591":0.5856756757,"11592":0.5866666667,"11593":0.5876576577,"11594":0.5886486486,"11595":0.5896396396,"11596":0.5906306306,"11597":0.5916216216,"11598":0.5926126126,"11599":0.5936036036,"11600":0.5945945946,"11601":0.5955855856,"11602":0.5965765766,"11603":0.5975675676,"11604":0.5985585586,"11605":0.5995495495,"11606":0.6005405405,"11607":0.6015315315,"11608":0.6025225225,"11609":0.6035135135,"11610":0.6045045045,"11611":0.6054954955,"11612":0.6064864865,"11613":0.6074774775,"11614":0.6084684685,"11615":0.6094594595,"11616":0.6104504505,"11617":0.6114414414,"11618":0.6124324324,"11619":0.6134234234,"11620":0.6144144144,"11621":0.6154054054,"11622":0.6163963964,"11623":0.6173873874,"11624":0.6183783784,"11625":0.6193693694,"11626":0.6203603604,"11627":0.6213513514,"11628":0.6223423423,"11629":0.6233333333,"11630":0.6243243243,"11631":0.6253153153,"11632":0.6263063063,"11633":0.6272972973,"11634":0.6282882883,"11635":0.6292792793,"11636":0.6302702703,"11637":0.6312612613,"11638":0.6322522523,"11639":0.6332432432,"11640":0.6342342342,"11641":0.6352252252,"11642":0.6362162162,"11643":0.6372072072,"11644":0.6381981982,"11645":0.6391891892,"11646":0.6401801802,"11647":0.6411711712,"11648":0.6421621622,"11649":0.6431531532,"11650":0.6441441441,"11651":0.6451351351,"11652":0.6461261261,"11653":0.6471171171,"11654":0.6481081081,"11655":0.6490990991,"11656":0.6500900901,"11657":0.6510810811,"11658":0.6520720721,"11659":0.6530630631,"11660":0.6540540541,"11661":0.655045045,"11662":0.656036036,"11663":0.657027027,"11664":0.658018018,"11665":0.659009009,"11666":0.66,"11667":0.660990991,"11668":0.661981982,"11669":0.662972973,"11670":0.663963964,"11671":0.664954955,"11672":0.6659459459,"11673":0.6669369369,"11674":0.6679279279,"11675":0.6689189189,"11676":0.6699099099,"11677":0.6709009009,"11678":0.6718918919,"11679":0.6728828829,"11680":0.6738738739,"11681":0.6748648649,"11682":0.6758558559,"11683":0.6768468468,"11684":0.6778378378,"11685":0.6788288288,"11686":0.6798198198,"11687":0.6808108108,"11688":0.6818018018,"11689":0.6827927928,"11690":0.6837837838,"11691":0.6847747748,"11692":0.6857657658,"11693":0.6867567568,"11694":0.6877477477,"11695":0.6887387387,"11696":0.6897297297,"11697":0.6907207207,"11698":0.6917117117,"11699":0.6927027027,"11700":0.6936936937,"11701":0.6946846847,"11702":0.6956756757,"11703":0.6966666667,"11704":0.6976576577,"11705":0.6986486486,"11706":0.6996396396,"11707":0.7006306306,"11708":0.7016216216,"11709":0.7026126126,"11710":0.7036036036,"11711":0.7045945946,"11712":0.7055855856,"11713":0.7065765766,"11714":0.7075675676,"11715":0.7085585586,"11716":0.7095495495,"11717":0.7105405405,"11718":0.7115315315,"11719":0.7125225225,"11720":0.7135135135,"11721":0.7145045045,"11722":0.7154954955,"11723":0.7164864865,"11724":0.7174774775,"11725":0.7184684685,"11726":0.7194594595,"11727":0.7204504505,"11728":0.7214414414,"11729":0.7224324324,"11730":0.7234234234,"11731":0.7244144144,"11732":0.7254054054,"11733":0.7263963964,"11734":0.7273873874,"11735":0.7283783784,"11736":0.7293693694,"11737":0.7303603604,"11738":0.7313513514,"11739":0.7323423423,"11740":0.7333333333,"11741":0.7343243243,"11742":0.7353153153,"11743":0.7363063063,"11744":0.7372972973,"11745":0.7382882883,"11746":0.7392792793,"11747":0.7402702703,"11748":0.7412612613,"11749":0.7422522523,"11750":0.7432432432,"11751":0.7442342342,"11752":0.7452252252,"11753":0.7462162162,"11754":0.7472072072,"11755":0.7481981982,"11756":0.7491891892,"11757":0.7501801802,"11758":0.7511711712,"11759":0.7521621622,"11760":0.7531531532,"11761":0.7541441441,"11762":0.7551351351,"11763":0.7561261261,"11764":0.7571171171,"11765":0.7581081081,"11766":0.7590990991,"11767":0.7600900901,"11768":0.7610810811,"11769":0.7620720721,"11770":0.7630630631,"11771":0.7640540541,"11772":0.765045045,"11773":0.766036036,"11774":0.767027027,"11775":0.768018018,"11776":0.769009009,"11777":0.77,"11778":0.770990991,"11779":0.771981982,"11780":0.772972973,"11781":0.773963964,"11782":0.774954955,"11783":0.7759459459,"11784":0.7769369369,"11785":0.7779279279,"11786":0.7789189189,"11787":0.7799099099,"11788":0.7809009009,"11789":0.7818918919,"11790":0.7828828829,"11791":0.7838738739,"11792":0.7848648649,"11793":0.7858558559,"11794":0.7868468468,"11795":0.7878378378,"11796":0.7888288288,"11797":0.7898198198,"11798":0.7908108108,"11799":0.7918018018,"11800":0.7927927928,"11801":0.7937837838,"11802":0.7947747748,"11803":0.7957657658,"11804":0.7967567568,"11805":0.7977477477,"11806":0.7987387387,"11807":0.7997297297,"11808":0.8007207207,"11809":0.8017117117,"11810":0.8027027027,"11811":0.8036936937,"11812":0.8046846847,"11813":0.8056756757,"11814":0.8066666667,"11815":0.8076576577,"11816":0.8086486486,"11817":0.8096396396,"11818":0.8106306306,"11819":0.8116216216,"11820":0.8126126126,"11821":0.8136036036,"11822":0.8145945946,"11823":0.8155855856,"11824":0.8165765766,"11825":0.8175675676,"11826":0.8185585586,"11827":0.8195495495,"11828":0.8205405405,"11829":0.8215315315,"11830":0.8225225225,"11831":0.8235135135,"11832":0.8245045045,"11833":0.8254954955,"11834":0.8264864865,"11835":0.8274774775,"11836":0.8284684685,"11837":0.8294594595,"11838":0.8304504505,"11839":0.8314414414,"11840":0.8324324324,"11841":0.8334234234,"11842":0.8344144144,"11843":0.8354054054,"11844":0.8363963964,"11845":0.8373873874,"11846":0.8383783784,"11847":0.8393693694,"11848":0.8403603604,"11849":0.8413513514,"11850":0.8423423423,"11851":0.8433333333,"11852":0.8443243243,"11853":0.8453153153,"11854":0.8463063063,"11855":0.8472972973,"11856":0.8482882883,"11857":0.8492792793,"11858":0.8502702703,"11859":0.8512612613,"11860":0.8522522523,"11861":0.8532432432,"11862":0.8542342342,"11863":0.8552252252,"11864":0.8562162162,"11865":0.8572072072,"11866":0.8581981982,"11867":0.8591891892,"11868":0.8601801802,"11869":0.8611711712,"11870":0.8621621622,"11871":0.8631531532,"11872":0.8641441441,"11873":0.8651351351,"11874":0.8661261261,"11875":0.8671171171,"11876":0.8681081081,"11877":0.8690990991,"11878":0.8700900901,"11879":0.8710810811,"11880":0.8720720721,"11881":0.8730630631,"11882":0.8740540541,"11883":0.875045045,"11884":0.876036036,"11885":0.877027027,"11886":0.878018018,"11887":0.879009009,"11888":0.88,"11889":0.880990991,"11890":0.881981982,"11891":0.882972973,"11892":0.883963964,"11893":0.884954955,"11894":0.8859459459,"11895":0.8869369369,"11896":0.8879279279,"11897":0.8889189189,"11898":0.8899099099,"11899":0.8909009009,"11900":0.8918918919,"11901":0.8928828829,"11902":0.8938738739,"11903":0.8948648649,"11904":0.8958558559,"11905":0.8968468468,"11906":0.8978378378,"11907":0.8988288288,"11908":0.8998198198,"11909":0.9008108108,"11910":0.9018018018,"11911":0.9027927928,"11912":0.9037837838,"11913":0.9047747748,"11914":0.9057657658,"11915":0.9067567568,"11916":0.9077477477,"11917":0.9087387387,"11918":0.9097297297,"11919":0.9107207207,"11920":0.9117117117,"11921":0.9127027027,"11922":0.9136936937,"11923":0.9146846847,"11924":0.9156756757,"11925":0.9166666667,"11926":0.9176576577,"11927":0.9186486486,"11928":0.9196396396,"11929":0.9206306306,"11930":0.9216216216,"11931":0.9226126126,"11932":0.9236036036,"11933":0.9245945946,"11934":0.9255855856,"11935":0.9265765766,"11936":0.9275675676,"11937":0.9285585586,"11938":0.9295495495,"11939":0.9305405405,"11940":0.9315315315,"11941":0.9325225225,"11942":0.9335135135,"11943":0.9345045045,"11944":0.9354954955,"11945":0.9364864865,"11946":0.9374774775,"11947":0.9384684685,"11948":0.9394594595,"11949":0.9404504505,"11950":0.9414414414,"11951":0.9424324324,"11952":0.9434234234,"11953":0.9444144144,"11954":0.9454054054,"11955":0.9463963964,"11956":0.9473873874,"11957":0.9483783784,"11958":0.9493693694,"11959":0.9503603604,"11960":0.9513513514,"11961":0.9523423423,"11962":0.9533333333,"11963":0.9543243243,"11964":0.9553153153,"11965":0.9563063063,"11966":0.9572972973,"11967":0.9582882883,"11968":0.9592792793,"11969":0.9602702703,"11970":0.9612612613,"11971":0.9622522523,"11972":0.9632432432,"11973":0.9642342342,"11974":0.9652252252,"11975":0.9662162162,"11976":0.9672072072,"11977":0.9681981982,"11978":0.9691891892,"11979":0.9701801802,"11980":0.9711711712,"11981":0.9721621622,"11982":0.9731531532,"11983":0.9741441441,"11984":0.9751351351,"11985":0.9761261261,"11986":0.9771171171,"11987":0.9781081081,"11988":0.9790990991,"11989":0.9800900901,"11990":0.9810810811,"11991":0.9820720721,"11992":0.9830630631,"11993":0.9840540541,"11994":0.985045045,"11995":0.986036036,"11996":0.987027027,"11997":0.988018018,"11998":0.989009009,"11999":0.99,"12000":0.0,"12001":0.000990991,"12002":0.001981982,"12003":0.002972973,"12004":0.003963964,"12005":0.004954955,"12006":0.0059459459,"12007":0.0069369369,"12008":0.0079279279,"12009":0.0089189189,"12010":0.0099099099,"12011":0.0109009009,"12012":0.0118918919,"12013":0.0128828829,"12014":0.0138738739,"12015":0.0148648649,"12016":0.0158558559,"12017":0.0168468468,"12018":0.0178378378,"12019":0.0188288288,"12020":0.0198198198,"12021":0.0208108108,"12022":0.0218018018,"12023":0.0227927928,"12024":0.0237837838,"12025":0.0247747748,"12026":0.0257657658,"12027":0.0267567568,"12028":0.0277477477,"12029":0.0287387387,"12030":0.0297297297,"12031":0.0307207207,"12032":0.0317117117,"12033":0.0327027027,"12034":0.0336936937,"12035":0.0346846847,"12036":0.0356756757,"12037":0.0366666667,"12038":0.0376576577,"12039":0.0386486486,"12040":0.0396396396,"12041":0.0406306306,"12042":0.0416216216,"12043":0.0426126126,"12044":0.0436036036,"12045":0.0445945946,"12046":0.0455855856,"12047":0.0465765766,"12048":0.0475675676,"12049":0.0485585586,"12050":0.0495495495,"12051":0.0505405405,"12052":0.0515315315,"12053":0.0525225225,"12054":0.0535135135,"12055":0.0545045045,"12056":0.0554954955,"12057":0.0564864865,"12058":0.0574774775,"12059":0.0584684685,"12060":0.0594594595,"12061":0.0604504505,"12062":0.0614414414,"12063":0.0624324324,"12064":0.0634234234,"12065":0.0644144144,"12066":0.0654054054,"12067":0.0663963964,"12068":0.0673873874,"12069":0.0683783784,"12070":0.0693693694,"12071":0.0703603604,"12072":0.0713513514,"12073":0.0723423423,"12074":0.0733333333,"12075":0.0743243243,"12076":0.0753153153,"12077":0.0763063063,"12078":0.0772972973,"12079":0.0782882883,"12080":0.0792792793,"12081":0.0802702703,"12082":0.0812612613,"12083":0.0822522523,"12084":0.0832432432,"12085":0.0842342342,"12086":0.0852252252,"12087":0.0862162162,"12088":0.0872072072,"12089":0.0881981982,"12090":0.0891891892,"12091":0.0901801802,"12092":0.0911711712,"12093":0.0921621622,"12094":0.0931531532,"12095":0.0941441441,"12096":0.0951351351,"12097":0.0961261261,"12098":0.0971171171,"12099":0.0981081081,"12100":0.0990990991,"12101":0.1000900901,"12102":0.1010810811,"12103":0.1020720721,"12104":0.1030630631,"12105":0.1040540541,"12106":0.105045045,"12107":0.106036036,"12108":0.107027027,"12109":0.108018018,"12110":0.109009009,"12111":0.11,"12112":0.110990991,"12113":0.111981982,"12114":0.112972973,"12115":0.113963964,"12116":0.114954955,"12117":0.1159459459,"12118":0.1169369369,"12119":0.1179279279,"12120":0.1189189189,"12121":0.1199099099,"12122":0.1209009009,"12123":0.1218918919,"12124":0.1228828829,"12125":0.1238738739,"12126":0.1248648649,"12127":0.1258558559,"12128":0.1268468468,"12129":0.1278378378,"12130":0.1288288288,"12131":0.1298198198,"12132":0.1308108108,"12133":0.1318018018,"12134":0.1327927928,"12135":0.1337837838,"12136":0.1347747748,"12137":0.1357657658,"12138":0.1367567568,"12139":0.1377477477,"12140":0.1387387387,"12141":0.1397297297,"12142":0.1407207207,"12143":0.1417117117,"12144":0.1427027027,"12145":0.1436936937,"12146":0.1446846847,"12147":0.1456756757,"12148":0.1466666667,"12149":0.1476576577,"12150":0.1486486486,"12151":0.1496396396,"12152":0.1506306306,"12153":0.1516216216,"12154":0.1526126126,"12155":0.1536036036,"12156":0.1545945946,"12157":0.1555855856,"12158":0.1565765766,"12159":0.1575675676,"12160":0.1585585586,"12161":0.1595495495,"12162":0.1605405405,"12163":0.1615315315,"12164":0.1625225225,"12165":0.1635135135,"12166":0.1645045045,"12167":0.1654954955,"12168":0.1664864865,"12169":0.1674774775,"12170":0.1684684685,"12171":0.1694594595,"12172":0.1704504505,"12173":0.1714414414,"12174":0.1724324324,"12175":0.1734234234,"12176":0.1744144144,"12177":0.1754054054,"12178":0.1763963964,"12179":0.1773873874,"12180":0.1783783784,"12181":0.1793693694,"12182":0.1803603604,"12183":0.1813513514,"12184":0.1823423423,"12185":0.1833333333,"12186":0.1843243243,"12187":0.1853153153,"12188":0.1863063063,"12189":0.1872972973,"12190":0.1882882883,"12191":0.1892792793,"12192":0.1902702703,"12193":0.1912612613,"12194":0.1922522523,"12195":0.1932432432,"12196":0.1942342342,"12197":0.1952252252,"12198":0.1962162162,"12199":0.1972072072,"12200":0.1981981982,"12201":0.1991891892,"12202":0.2001801802,"12203":0.2011711712,"12204":0.2021621622,"12205":0.2031531532,"12206":0.2041441441,"12207":0.2051351351,"12208":0.2061261261,"12209":0.2071171171,"12210":0.2081081081,"12211":0.2090990991,"12212":0.2100900901,"12213":0.2110810811,"12214":0.2120720721,"12215":0.2130630631,"12216":0.2140540541,"12217":0.215045045,"12218":0.216036036,"12219":0.217027027,"12220":0.218018018,"12221":0.219009009,"12222":0.22,"12223":0.220990991,"12224":0.221981982,"12225":0.222972973,"12226":0.223963964,"12227":0.224954955,"12228":0.2259459459,"12229":0.2269369369,"12230":0.2279279279,"12231":0.2289189189,"12232":0.2299099099,"12233":0.2309009009,"12234":0.2318918919,"12235":0.2328828829,"12236":0.2338738739,"12237":0.2348648649,"12238":0.2358558559,"12239":0.2368468468,"12240":0.2378378378,"12241":0.2388288288,"12242":0.2398198198,"12243":0.2408108108,"12244":0.2418018018,"12245":0.2427927928,"12246":0.2437837838,"12247":0.2447747748,"12248":0.2457657658,"12249":0.2467567568,"12250":0.2477477477,"12251":0.2487387387,"12252":0.2497297297,"12253":0.2507207207,"12254":0.2517117117,"12255":0.2527027027,"12256":0.2536936937,"12257":0.2546846847,"12258":0.2556756757,"12259":0.2566666667,"12260":0.2576576577,"12261":0.2586486486,"12262":0.2596396396,"12263":0.2606306306,"12264":0.2616216216,"12265":0.2626126126,"12266":0.2636036036,"12267":0.2645945946,"12268":0.2655855856,"12269":0.2665765766,"12270":0.2675675676,"12271":0.2685585586,"12272":0.2695495495,"12273":0.2705405405,"12274":0.2715315315,"12275":0.2725225225,"12276":0.2735135135,"12277":0.2745045045,"12278":0.2754954955,"12279":0.2764864865,"12280":0.2774774775,"12281":0.2784684685,"12282":0.2794594595,"12283":0.2804504505,"12284":0.2814414414,"12285":0.2824324324,"12286":0.2834234234,"12287":0.2844144144,"12288":0.2854054054,"12289":0.2863963964,"12290":0.2873873874,"12291":0.2883783784,"12292":0.2893693694,"12293":0.2903603604,"12294":0.2913513514,"12295":0.2923423423,"12296":0.2933333333,"12297":0.2943243243,"12298":0.2953153153,"12299":0.2963063063,"12300":0.2972972973,"12301":0.2982882883,"12302":0.2992792793,"12303":0.3002702703,"12304":0.3012612613,"12305":0.3022522523,"12306":0.3032432432,"12307":0.3042342342,"12308":0.3052252252,"12309":0.3062162162,"12310":0.3072072072,"12311":0.3081981982,"12312":0.3091891892,"12313":0.3101801802,"12314":0.3111711712,"12315":0.3121621622,"12316":0.3131531532,"12317":0.3141441441,"12318":0.3151351351,"12319":0.3161261261,"12320":0.3171171171,"12321":0.3181081081,"12322":0.3190990991,"12323":0.3200900901,"12324":0.3210810811,"12325":0.3220720721,"12326":0.3230630631,"12327":0.3240540541,"12328":0.325045045,"12329":0.326036036,"12330":0.327027027,"12331":0.328018018,"12332":0.329009009,"12333":0.33,"12334":0.330990991,"12335":0.331981982,"12336":0.332972973,"12337":0.333963964,"12338":0.334954955,"12339":0.3359459459,"12340":0.3369369369,"12341":0.3379279279,"12342":0.3389189189,"12343":0.3399099099,"12344":0.3409009009,"12345":0.3418918919,"12346":0.3428828829,"12347":0.3438738739,"12348":0.3448648649,"12349":0.3458558559,"12350":0.3468468468,"12351":0.3478378378,"12352":0.3488288288,"12353":0.3498198198,"12354":0.3508108108,"12355":0.3518018018,"12356":0.3527927928,"12357":0.3537837838,"12358":0.3547747748,"12359":0.3557657658,"12360":0.3567567568,"12361":0.3577477477,"12362":0.3587387387,"12363":0.3597297297,"12364":0.3607207207,"12365":0.3617117117,"12366":0.3627027027,"12367":0.3636936937,"12368":0.3646846847,"12369":0.3656756757,"12370":0.3666666667,"12371":0.3676576577,"12372":0.3686486486,"12373":0.3696396396,"12374":0.3706306306,"12375":0.3716216216,"12376":0.3726126126,"12377":0.3736036036,"12378":0.3745945946,"12379":0.3755855856,"12380":0.3765765766,"12381":0.3775675676,"12382":0.3785585586,"12383":0.3795495495,"12384":0.3805405405,"12385":0.3815315315,"12386":0.3825225225,"12387":0.3835135135,"12388":0.3845045045,"12389":0.3854954955,"12390":0.3864864865,"12391":0.3874774775,"12392":0.3884684685,"12393":0.3894594595,"12394":0.3904504505,"12395":0.3914414414,"12396":0.3924324324,"12397":0.3934234234,"12398":0.3944144144,"12399":0.3954054054,"12400":0.3963963964,"12401":0.3973873874,"12402":0.3983783784,"12403":0.3993693694,"12404":0.4003603604,"12405":0.4013513514,"12406":0.4023423423,"12407":0.4033333333,"12408":0.4043243243,"12409":0.4053153153,"12410":0.4063063063,"12411":0.4072972973,"12412":0.4082882883,"12413":0.4092792793,"12414":0.4102702703,"12415":0.4112612613,"12416":0.4122522523,"12417":0.4132432432,"12418":0.4142342342,"12419":0.4152252252,"12420":0.4162162162,"12421":0.4172072072,"12422":0.4181981982,"12423":0.4191891892,"12424":0.4201801802,"12425":0.4211711712,"12426":0.4221621622,"12427":0.4231531532,"12428":0.4241441441,"12429":0.4251351351,"12430":0.4261261261,"12431":0.4271171171,"12432":0.4281081081,"12433":0.4290990991,"12434":0.4300900901,"12435":0.4310810811,"12436":0.4320720721,"12437":0.4330630631,"12438":0.4340540541,"12439":0.435045045,"12440":0.436036036,"12441":0.437027027,"12442":0.438018018,"12443":0.439009009,"12444":0.44,"12445":0.440990991,"12446":0.441981982,"12447":0.442972973,"12448":0.443963964,"12449":0.444954955,"12450":0.4459459459,"12451":0.4469369369,"12452":0.4479279279,"12453":0.4489189189,"12454":0.4499099099,"12455":0.4509009009,"12456":0.4518918919,"12457":0.4528828829,"12458":0.4538738739,"12459":0.4548648649,"12460":0.4558558559,"12461":0.4568468468,"12462":0.4578378378,"12463":0.4588288288,"12464":0.4598198198,"12465":0.4608108108,"12466":0.4618018018,"12467":0.4627927928,"12468":0.4637837838,"12469":0.4647747748,"12470":0.4657657658,"12471":0.4667567568,"12472":0.4677477477,"12473":0.4687387387,"12474":0.4697297297,"12475":0.4707207207,"12476":0.4717117117,"12477":0.4727027027,"12478":0.4736936937,"12479":0.4746846847,"12480":0.4756756757,"12481":0.4766666667,"12482":0.4776576577,"12483":0.4786486486,"12484":0.4796396396,"12485":0.4806306306,"12486":0.4816216216,"12487":0.4826126126,"12488":0.4836036036,"12489":0.4845945946,"12490":0.4855855856,"12491":0.4865765766,"12492":0.4875675676,"12493":0.4885585586,"12494":0.4895495495,"12495":0.4905405405,"12496":0.4915315315,"12497":0.4925225225,"12498":0.4935135135,"12499":0.4945045045,"12500":0.4954954955,"12501":0.4964864865,"12502":0.4974774775,"12503":0.4984684685,"12504":0.4994594595,"12505":0.5004504505,"12506":0.5014414414,"12507":0.5024324324,"12508":0.5034234234,"12509":0.5044144144,"12510":0.5054054054,"12511":0.5063963964,"12512":0.5073873874,"12513":0.5083783784,"12514":0.5093693694,"12515":0.5103603604,"12516":0.5113513514,"12517":0.5123423423,"12518":0.5133333333,"12519":0.5143243243,"12520":0.5153153153,"12521":0.5163063063,"12522":0.5172972973,"12523":0.5182882883,"12524":0.5192792793,"12525":0.5202702703,"12526":0.5212612613,"12527":0.5222522523,"12528":0.5232432432,"12529":0.5242342342,"12530":0.5252252252,"12531":0.5262162162,"12532":0.5272072072,"12533":0.5281981982,"12534":0.5291891892,"12535":0.5301801802,"12536":0.5311711712,"12537":0.5321621622,"12538":0.5331531532,"12539":0.5341441441,"12540":0.5351351351,"12541":0.5361261261,"12542":0.5371171171,"12543":0.5381081081,"12544":0.5390990991,"12545":0.5400900901,"12546":0.5410810811,"12547":0.5420720721,"12548":0.5430630631,"12549":0.5440540541,"12550":0.545045045,"12551":0.546036036,"12552":0.547027027,"12553":0.548018018,"12554":0.549009009,"12555":0.55,"12556":0.550990991,"12557":0.551981982,"12558":0.552972973,"12559":0.553963964,"12560":0.554954955,"12561":0.5559459459,"12562":0.5569369369,"12563":0.5579279279,"12564":0.5589189189,"12565":0.5599099099,"12566":0.5609009009,"12567":0.5618918919,"12568":0.5628828829,"12569":0.5638738739,"12570":0.5648648649,"12571":0.5658558559,"12572":0.5668468468,"12573":0.5678378378,"12574":0.5688288288,"12575":0.5698198198,"12576":0.5708108108,"12577":0.5718018018,"12578":0.5727927928,"12579":0.5737837838,"12580":0.5747747748,"12581":0.5757657658,"12582":0.5767567568,"12583":0.5777477477,"12584":0.5787387387,"12585":0.5797297297,"12586":0.5807207207,"12587":0.5817117117,"12588":0.5827027027,"12589":0.5836936937,"12590":0.5846846847,"12591":0.5856756757,"12592":0.5866666667,"12593":0.5876576577,"12594":0.5886486486,"12595":0.5896396396,"12596":0.5906306306,"12597":0.5916216216,"12598":0.5926126126,"12599":0.5936036036,"12600":0.5945945946,"12601":0.5955855856,"12602":0.5965765766,"12603":0.5975675676,"12604":0.5985585586,"12605":0.5995495495,"12606":0.6005405405,"12607":0.6015315315,"12608":0.6025225225,"12609":0.6035135135,"12610":0.6045045045,"12611":0.6054954955,"12612":0.6064864865,"12613":0.6074774775,"12614":0.6084684685,"12615":0.6094594595,"12616":0.6104504505,"12617":0.6114414414,"12618":0.6124324324,"12619":0.6134234234,"12620":0.6144144144,"12621":0.6154054054,"12622":0.6163963964,"12623":0.6173873874,"12624":0.6183783784,"12625":0.6193693694,"12626":0.6203603604,"12627":0.6213513514,"12628":0.6223423423,"12629":0.6233333333,"12630":0.6243243243,"12631":0.6253153153,"12632":0.6263063063,"12633":0.6272972973,"12634":0.6282882883,"12635":0.6292792793,"12636":0.6302702703,"12637":0.6312612613,"12638":0.6322522523,"12639":0.6332432432,"12640":0.6342342342,"12641":0.6352252252,"12642":0.6362162162,"12643":0.6372072072,"12644":0.6381981982,"12645":0.6391891892,"12646":0.6401801802,"12647":0.6411711712,"12648":0.6421621622,"12649":0.6431531532,"12650":0.6441441441,"12651":0.6451351351,"12652":0.6461261261,"12653":0.6471171171,"12654":0.6481081081,"12655":0.6490990991,"12656":0.6500900901,"12657":0.6510810811,"12658":0.6520720721,"12659":0.6530630631,"12660":0.6540540541,"12661":0.655045045,"12662":0.656036036,"12663":0.657027027,"12664":0.658018018,"12665":0.659009009,"12666":0.66,"12667":0.660990991,"12668":0.661981982,"12669":0.662972973,"12670":0.663963964,"12671":0.664954955,"12672":0.6659459459,"12673":0.6669369369,"12674":0.6679279279,"12675":0.6689189189,"12676":0.6699099099,"12677":0.6709009009,"12678":0.6718918919,"12679":0.6728828829,"12680":0.6738738739,"12681":0.6748648649,"12682":0.6758558559,"12683":0.6768468468,"12684":0.6778378378,"12685":0.6788288288,"12686":0.6798198198,"12687":0.6808108108,"12688":0.6818018018,"12689":0.6827927928,"12690":0.6837837838,"12691":0.6847747748,"12692":0.6857657658,"12693":0.6867567568,"12694":0.6877477477,"12695":0.6887387387,"12696":0.6897297297,"12697":0.6907207207,"12698":0.6917117117,"12699":0.6927027027,"12700":0.6936936937,"12701":0.6946846847,"12702":0.6956756757,"12703":0.6966666667,"12704":0.6976576577,"12705":0.6986486486,"12706":0.6996396396,"12707":0.7006306306,"12708":0.7016216216,"12709":0.7026126126,"12710":0.7036036036,"12711":0.7045945946,"12712":0.7055855856,"12713":0.7065765766,"12714":0.7075675676,"12715":0.7085585586,"12716":0.7095495495,"12717":0.7105405405,"12718":0.7115315315,"12719":0.7125225225,"12720":0.7135135135,"12721":0.7145045045,"12722":0.7154954955,"12723":0.7164864865,"12724":0.7174774775,"12725":0.7184684685,"12726":0.7194594595,"12727":0.7204504505,"12728":0.7214414414,"12729":0.7224324324,"12730":0.7234234234,"12731":0.7244144144,"12732":0.7254054054,"12733":0.7263963964,"12734":0.7273873874,"12735":0.7283783784,"12736":0.7293693694,"12737":0.7303603604,"12738":0.7313513514,"12739":0.7323423423,"12740":0.7333333333,"12741":0.7343243243,"12742":0.7353153153,"12743":0.7363063063,"12744":0.7372972973,"12745":0.7382882883,"12746":0.7392792793,"12747":0.7402702703,"12748":0.7412612613,"12749":0.7422522523,"12750":0.7432432432,"12751":0.7442342342,"12752":0.7452252252,"12753":0.7462162162,"12754":0.7472072072,"12755":0.7481981982,"12756":0.7491891892,"12757":0.7501801802,"12758":0.7511711712,"12759":0.7521621622,"12760":0.7531531532,"12761":0.7541441441,"12762":0.7551351351,"12763":0.7561261261,"12764":0.7571171171,"12765":0.7581081081,"12766":0.7590990991,"12767":0.7600900901,"12768":0.7610810811,"12769":0.7620720721,"12770":0.7630630631,"12771":0.7640540541,"12772":0.765045045,"12773":0.766036036,"12774":0.767027027,"12775":0.768018018,"12776":0.769009009,"12777":0.77,"12778":0.770990991,"12779":0.771981982,"12780":0.772972973,"12781":0.773963964,"12782":0.774954955,"12783":0.7759459459,"12784":0.7769369369,"12785":0.7779279279,"12786":0.7789189189,"12787":0.7799099099,"12788":0.7809009009,"12789":0.7818918919,"12790":0.7828828829,"12791":0.7838738739,"12792":0.7848648649,"12793":0.7858558559,"12794":0.7868468468,"12795":0.7878378378,"12796":0.7888288288,"12797":0.7898198198,"12798":0.7908108108,"12799":0.7918018018,"12800":0.7927927928,"12801":0.7937837838,"12802":0.7947747748,"12803":0.7957657658,"12804":0.7967567568,"12805":0.7977477477,"12806":0.7987387387,"12807":0.7997297297,"12808":0.8007207207,"12809":0.8017117117,"12810":0.8027027027,"12811":0.8036936937,"12812":0.8046846847,"12813":0.8056756757,"12814":0.8066666667,"12815":0.8076576577,"12816":0.8086486486,"12817":0.8096396396,"12818":0.8106306306,"12819":0.8116216216,"12820":0.8126126126,"12821":0.8136036036,"12822":0.8145945946,"12823":0.8155855856,"12824":0.8165765766,"12825":0.8175675676,"12826":0.8185585586,"12827":0.8195495495,"12828":0.8205405405,"12829":0.8215315315,"12830":0.8225225225,"12831":0.8235135135,"12832":0.8245045045,"12833":0.8254954955,"12834":0.8264864865,"12835":0.8274774775,"12836":0.8284684685,"12837":0.8294594595,"12838":0.8304504505,"12839":0.8314414414,"12840":0.8324324324,"12841":0.8334234234,"12842":0.8344144144,"12843":0.8354054054,"12844":0.8363963964,"12845":0.8373873874,"12846":0.8383783784,"12847":0.8393693694,"12848":0.8403603604,"12849":0.8413513514,"12850":0.8423423423,"12851":0.8433333333,"12852":0.8443243243,"12853":0.8453153153,"12854":0.8463063063,"12855":0.8472972973,"12856":0.8482882883,"12857":0.8492792793,"12858":0.8502702703,"12859":0.8512612613,"12860":0.8522522523,"12861":0.8532432432,"12862":0.8542342342,"12863":0.8552252252,"12864":0.8562162162,"12865":0.8572072072,"12866":0.8581981982,"12867":0.8591891892,"12868":0.8601801802,"12869":0.8611711712,"12870":0.8621621622,"12871":0.8631531532,"12872":0.8641441441,"12873":0.8651351351,"12874":0.8661261261,"12875":0.8671171171,"12876":0.8681081081,"12877":0.8690990991,"12878":0.8700900901,"12879":0.8710810811,"12880":0.8720720721,"12881":0.8730630631,"12882":0.8740540541,"12883":0.875045045,"12884":0.876036036,"12885":0.877027027,"12886":0.878018018,"12887":0.879009009,"12888":0.88,"12889":0.880990991,"12890":0.881981982,"12891":0.882972973,"12892":0.883963964,"12893":0.884954955,"12894":0.8859459459,"12895":0.8869369369,"12896":0.8879279279,"12897":0.8889189189,"12898":0.8899099099,"12899":0.8909009009,"12900":0.8918918919,"12901":0.8928828829,"12902":0.8938738739,"12903":0.8948648649,"12904":0.8958558559,"12905":0.8968468468,"12906":0.8978378378,"12907":0.8988288288,"12908":0.8998198198,"12909":0.9008108108,"12910":0.9018018018,"12911":0.9027927928,"12912":0.9037837838,"12913":0.9047747748,"12914":0.9057657658,"12915":0.9067567568,"12916":0.9077477477,"12917":0.9087387387,"12918":0.9097297297,"12919":0.9107207207,"12920":0.9117117117,"12921":0.9127027027,"12922":0.9136936937,"12923":0.9146846847,"12924":0.9156756757,"12925":0.9166666667,"12926":0.9176576577,"12927":0.9186486486,"12928":0.9196396396,"12929":0.9206306306,"12930":0.9216216216,"12931":0.9226126126,"12932":0.9236036036,"12933":0.9245945946,"12934":0.9255855856,"12935":0.9265765766,"12936":0.9275675676,"12937":0.9285585586,"12938":0.9295495495,"12939":0.9305405405,"12940":0.9315315315,"12941":0.9325225225,"12942":0.9335135135,"12943":0.9345045045,"12944":0.9354954955,"12945":0.9364864865,"12946":0.9374774775,"12947":0.9384684685,"12948":0.9394594595,"12949":0.9404504505,"12950":0.9414414414,"12951":0.9424324324,"12952":0.9434234234,"12953":0.9444144144,"12954":0.9454054054,"12955":0.9463963964,"12956":0.9473873874,"12957":0.9483783784,"12958":0.9493693694,"12959":0.9503603604,"12960":0.9513513514,"12961":0.9523423423,"12962":0.9533333333,"12963":0.9543243243,"12964":0.9553153153,"12965":0.9563063063,"12966":0.9572972973,"12967":0.9582882883,"12968":0.9592792793,"12969":0.9602702703,"12970":0.9612612613,"12971":0.9622522523,"12972":0.9632432432,"12973":0.9642342342,"12974":0.9652252252,"12975":0.9662162162,"12976":0.9672072072,"12977":0.9681981982,"12978":0.9691891892,"12979":0.9701801802,"12980":0.9711711712,"12981":0.9721621622,"12982":0.9731531532,"12983":0.9741441441,"12984":0.9751351351,"12985":0.9761261261,"12986":0.9771171171,"12987":0.9781081081,"12988":0.9790990991,"12989":0.9800900901,"12990":0.9810810811,"12991":0.9820720721,"12992":0.9830630631,"12993":0.9840540541,"12994":0.985045045,"12995":0.986036036,"12996":0.987027027,"12997":0.988018018,"12998":0.989009009,"12999":0.99,"13000":0.0,"13001":0.000990991,"13002":0.001981982,"13003":0.002972973,"13004":0.003963964,"13005":0.004954955,"13006":0.0059459459,"13007":0.0069369369,"13008":0.0079279279,"13009":0.0089189189,"13010":0.0099099099,"13011":0.0109009009,"13012":0.0118918919,"13013":0.0128828829,"13014":0.0138738739,"13015":0.0148648649,"13016":0.0158558559,"13017":0.0168468468,"13018":0.0178378378,"13019":0.0188288288,"13020":0.0198198198,"13021":0.0208108108,"13022":0.0218018018,"13023":0.0227927928,"13024":0.0237837838,"13025":0.0247747748,"13026":0.0257657658,"13027":0.0267567568,"13028":0.0277477477,"13029":0.0287387387,"13030":0.0297297297,"13031":0.0307207207,"13032":0.0317117117,"13033":0.0327027027,"13034":0.0336936937,"13035":0.0346846847,"13036":0.0356756757,"13037":0.0366666667,"13038":0.0376576577,"13039":0.0386486486,"13040":0.0396396396,"13041":0.0406306306,"13042":0.0416216216,"13043":0.0426126126,"13044":0.0436036036,"13045":0.0445945946,"13046":0.0455855856,"13047":0.0465765766,"13048":0.0475675676,"13049":0.0485585586,"13050":0.0495495495,"13051":0.0505405405,"13052":0.0515315315,"13053":0.0525225225,"13054":0.0535135135,"13055":0.0545045045,"13056":0.0554954955,"13057":0.0564864865,"13058":0.0574774775,"13059":0.0584684685,"13060":0.0594594595,"13061":0.0604504505,"13062":0.0614414414,"13063":0.0624324324,"13064":0.0634234234,"13065":0.0644144144,"13066":0.0654054054,"13067":0.0663963964,"13068":0.0673873874,"13069":0.0683783784,"13070":0.0693693694,"13071":0.0703603604,"13072":0.0713513514,"13073":0.0723423423,"13074":0.0733333333,"13075":0.0743243243,"13076":0.0753153153,"13077":0.0763063063,"13078":0.0772972973,"13079":0.0782882883,"13080":0.0792792793,"13081":0.0802702703,"13082":0.0812612613,"13083":0.0822522523,"13084":0.0832432432,"13085":0.0842342342,"13086":0.0852252252,"13087":0.0862162162,"13088":0.0872072072,"13089":0.0881981982,"13090":0.0891891892,"13091":0.0901801802,"13092":0.0911711712,"13093":0.0921621622,"13094":0.0931531532,"13095":0.0941441441,"13096":0.0951351351,"13097":0.0961261261,"13098":0.0971171171,"13099":0.0981081081,"13100":0.0990990991,"13101":0.1000900901,"13102":0.1010810811,"13103":0.1020720721,"13104":0.1030630631,"13105":0.1040540541,"13106":0.105045045,"13107":0.106036036,"13108":0.107027027,"13109":0.108018018,"13110":0.109009009,"13111":0.11,"13112":0.110990991,"13113":0.111981982,"13114":0.112972973,"13115":0.113963964,"13116":0.114954955,"13117":0.1159459459,"13118":0.1169369369,"13119":0.1179279279,"13120":0.1189189189,"13121":0.1199099099,"13122":0.1209009009,"13123":0.1218918919,"13124":0.1228828829,"13125":0.1238738739,"13126":0.1248648649,"13127":0.1258558559,"13128":0.1268468468,"13129":0.1278378378,"13130":0.1288288288,"13131":0.1298198198,"13132":0.1308108108,"13133":0.1318018018,"13134":0.1327927928,"13135":0.1337837838,"13136":0.1347747748,"13137":0.1357657658,"13138":0.1367567568,"13139":0.1377477477,"13140":0.1387387387,"13141":0.1397297297,"13142":0.1407207207,"13143":0.1417117117,"13144":0.1427027027,"13145":0.1436936937,"13146":0.1446846847,"13147":0.1456756757,"13148":0.1466666667,"13149":0.1476576577,"13150":0.1486486486,"13151":0.1496396396,"13152":0.1506306306,"13153":0.1516216216,"13154":0.1526126126,"13155":0.1536036036,"13156":0.1545945946,"13157":0.1555855856,"13158":0.1565765766,"13159":0.1575675676,"13160":0.1585585586,"13161":0.1595495495,"13162":0.1605405405,"13163":0.1615315315,"13164":0.1625225225,"13165":0.1635135135,"13166":0.1645045045,"13167":0.1654954955,"13168":0.1664864865,"13169":0.1674774775,"13170":0.1684684685,"13171":0.1694594595,"13172":0.1704504505,"13173":0.1714414414,"13174":0.1724324324,"13175":0.1734234234,"13176":0.1744144144,"13177":0.1754054054,"13178":0.1763963964,"13179":0.1773873874,"13180":0.1783783784,"13181":0.1793693694,"13182":0.1803603604,"13183":0.1813513514,"13184":0.1823423423,"13185":0.1833333333,"13186":0.1843243243,"13187":0.1853153153,"13188":0.1863063063,"13189":0.1872972973,"13190":0.1882882883,"13191":0.1892792793,"13192":0.1902702703,"13193":0.1912612613,"13194":0.1922522523,"13195":0.1932432432,"13196":0.1942342342,"13197":0.1952252252,"13198":0.1962162162,"13199":0.1972072072,"13200":0.1981981982,"13201":0.1991891892,"13202":0.2001801802,"13203":0.2011711712,"13204":0.2021621622,"13205":0.2031531532,"13206":0.2041441441,"13207":0.2051351351,"13208":0.2061261261,"13209":0.2071171171,"13210":0.2081081081,"13211":0.2090990991,"13212":0.2100900901,"13213":0.2110810811,"13214":0.2120720721,"13215":0.2130630631,"13216":0.2140540541,"13217":0.215045045,"13218":0.216036036,"13219":0.217027027,"13220":0.218018018,"13221":0.219009009,"13222":0.22,"13223":0.220990991,"13224":0.221981982,"13225":0.222972973,"13226":0.223963964,"13227":0.224954955,"13228":0.2259459459,"13229":0.2269369369,"13230":0.2279279279,"13231":0.2289189189,"13232":0.2299099099,"13233":0.2309009009,"13234":0.2318918919,"13235":0.2328828829,"13236":0.2338738739,"13237":0.2348648649,"13238":0.2358558559,"13239":0.2368468468,"13240":0.2378378378,"13241":0.2388288288,"13242":0.2398198198,"13243":0.2408108108,"13244":0.2418018018,"13245":0.2427927928,"13246":0.2437837838,"13247":0.2447747748,"13248":0.2457657658,"13249":0.2467567568,"13250":0.2477477477,"13251":0.2487387387,"13252":0.2497297297,"13253":0.2507207207,"13254":0.2517117117,"13255":0.2527027027,"13256":0.2536936937,"13257":0.2546846847,"13258":0.2556756757,"13259":0.2566666667,"13260":0.2576576577,"13261":0.2586486486,"13262":0.2596396396,"13263":0.2606306306,"13264":0.2616216216,"13265":0.2626126126,"13266":0.2636036036,"13267":0.2645945946,"13268":0.2655855856,"13269":0.2665765766,"13270":0.2675675676,"13271":0.2685585586,"13272":0.2695495495,"13273":0.2705405405,"13274":0.2715315315,"13275":0.2725225225,"13276":0.2735135135,"13277":0.2745045045,"13278":0.2754954955,"13279":0.2764864865,"13280":0.2774774775,"13281":0.2784684685,"13282":0.2794594595,"13283":0.2804504505,"13284":0.2814414414,"13285":0.2824324324,"13286":0.2834234234,"13287":0.2844144144,"13288":0.2854054054,"13289":0.2863963964,"13290":0.2873873874,"13291":0.2883783784,"13292":0.2893693694,"13293":0.2903603604,"13294":0.2913513514,"13295":0.2923423423,"13296":0.2933333333,"13297":0.2943243243,"13298":0.2953153153,"13299":0.2963063063,"13300":0.2972972973,"13301":0.2982882883,"13302":0.2992792793,"13303":0.3002702703,"13304":0.3012612613,"13305":0.3022522523,"13306":0.3032432432,"13307":0.3042342342,"13308":0.3052252252,"13309":0.3062162162,"13310":0.3072072072,"13311":0.3081981982,"13312":0.3091891892,"13313":0.3101801802,"13314":0.3111711712,"13315":0.3121621622,"13316":0.3131531532,"13317":0.3141441441,"13318":0.3151351351,"13319":0.3161261261,"13320":0.3171171171,"13321":0.3181081081,"13322":0.3190990991,"13323":0.3200900901,"13324":0.3210810811,"13325":0.3220720721,"13326":0.3230630631,"13327":0.3240540541,"13328":0.325045045,"13329":0.326036036,"13330":0.327027027,"13331":0.328018018,"13332":0.329009009,"13333":0.33,"13334":0.330990991,"13335":0.331981982,"13336":0.332972973,"13337":0.333963964,"13338":0.334954955,"13339":0.3359459459,"13340":0.3369369369,"13341":0.3379279279,"13342":0.3389189189,"13343":0.3399099099,"13344":0.3409009009,"13345":0.3418918919,"13346":0.3428828829,"13347":0.3438738739,"13348":0.3448648649,"13349":0.3458558559,"13350":0.3468468468,"13351":0.3478378378,"13352":0.3488288288,"13353":0.3498198198,"13354":0.3508108108,"13355":0.3518018018,"13356":0.3527927928,"13357":0.3537837838,"13358":0.3547747748,"13359":0.3557657658,"13360":0.3567567568,"13361":0.3577477477,"13362":0.3587387387,"13363":0.3597297297,"13364":0.3607207207,"13365":0.3617117117,"13366":0.3627027027,"13367":0.3636936937,"13368":0.3646846847,"13369":0.3656756757,"13370":0.3666666667,"13371":0.3676576577,"13372":0.3686486486,"13373":0.3696396396,"13374":0.3706306306,"13375":0.3716216216,"13376":0.3726126126,"13377":0.3736036036,"13378":0.3745945946,"13379":0.3755855856,"13380":0.3765765766,"13381":0.3775675676,"13382":0.3785585586,"13383":0.3795495495,"13384":0.3805405405,"13385":0.3815315315,"13386":0.3825225225,"13387":0.3835135135,"13388":0.3845045045,"13389":0.3854954955,"13390":0.3864864865,"13391":0.3874774775,"13392":0.3884684685,"13393":0.3894594595,"13394":0.3904504505,"13395":0.3914414414,"13396":0.3924324324,"13397":0.3934234234,"13398":0.3944144144,"13399":0.3954054054,"13400":0.3963963964,"13401":0.3973873874,"13402":0.3983783784,"13403":0.3993693694,"13404":0.4003603604,"13405":0.4013513514,"13406":0.4023423423,"13407":0.4033333333,"13408":0.4043243243,"13409":0.4053153153,"13410":0.4063063063,"13411":0.4072972973,"13412":0.4082882883,"13413":0.4092792793,"13414":0.4102702703,"13415":0.4112612613,"13416":0.4122522523,"13417":0.4132432432,"13418":0.4142342342,"13419":0.4152252252,"13420":0.4162162162,"13421":0.4172072072,"13422":0.4181981982,"13423":0.4191891892,"13424":0.4201801802,"13425":0.4211711712,"13426":0.4221621622,"13427":0.4231531532,"13428":0.4241441441,"13429":0.4251351351,"13430":0.4261261261,"13431":0.4271171171,"13432":0.4281081081,"13433":0.4290990991,"13434":0.4300900901,"13435":0.4310810811,"13436":0.4320720721,"13437":0.4330630631,"13438":0.4340540541,"13439":0.435045045,"13440":0.436036036,"13441":0.437027027,"13442":0.438018018,"13443":0.439009009,"13444":0.44,"13445":0.440990991,"13446":0.441981982,"13447":0.442972973,"13448":0.443963964,"13449":0.444954955,"13450":0.4459459459,"13451":0.4469369369,"13452":0.4479279279,"13453":0.4489189189,"13454":0.4499099099,"13455":0.4509009009,"13456":0.4518918919,"13457":0.4528828829,"13458":0.4538738739,"13459":0.4548648649,"13460":0.4558558559,"13461":0.4568468468,"13462":0.4578378378,"13463":0.4588288288,"13464":0.4598198198,"13465":0.4608108108,"13466":0.4618018018,"13467":0.4627927928,"13468":0.4637837838,"13469":0.4647747748,"13470":0.4657657658,"13471":0.4667567568,"13472":0.4677477477,"13473":0.4687387387,"13474":0.4697297297,"13475":0.4707207207,"13476":0.4717117117,"13477":0.4727027027,"13478":0.4736936937,"13479":0.4746846847,"13480":0.4756756757,"13481":0.4766666667,"13482":0.4776576577,"13483":0.4786486486,"13484":0.4796396396,"13485":0.4806306306,"13486":0.4816216216,"13487":0.4826126126,"13488":0.4836036036,"13489":0.4845945946,"13490":0.4855855856,"13491":0.4865765766,"13492":0.4875675676,"13493":0.4885585586,"13494":0.4895495495,"13495":0.4905405405,"13496":0.4915315315,"13497":0.4925225225,"13498":0.4935135135,"13499":0.4945045045,"13500":0.4954954955,"13501":0.4964864865,"13502":0.4974774775,"13503":0.4984684685,"13504":0.4994594595,"13505":0.5004504505,"13506":0.5014414414,"13507":0.5024324324,"13508":0.5034234234,"13509":0.5044144144,"13510":0.5054054054,"13511":0.5063963964,"13512":0.5073873874,"13513":0.5083783784,"13514":0.5093693694,"13515":0.5103603604,"13516":0.5113513514,"13517":0.5123423423,"13518":0.5133333333,"13519":0.5143243243,"13520":0.5153153153,"13521":0.5163063063,"13522":0.5172972973,"13523":0.5182882883,"13524":0.5192792793,"13525":0.5202702703,"13526":0.5212612613,"13527":0.5222522523,"13528":0.5232432432,"13529":0.5242342342,"13530":0.5252252252,"13531":0.5262162162,"13532":0.5272072072,"13533":0.5281981982,"13534":0.5291891892,"13535":0.5301801802,"13536":0.5311711712,"13537":0.5321621622,"13538":0.5331531532,"13539":0.5341441441,"13540":0.5351351351,"13541":0.5361261261,"13542":0.5371171171,"13543":0.5381081081,"13544":0.5390990991,"13545":0.5400900901,"13546":0.5410810811,"13547":0.5420720721,"13548":0.5430630631,"13549":0.5440540541,"13550":0.545045045,"13551":0.546036036,"13552":0.547027027,"13553":0.548018018,"13554":0.549009009,"13555":0.55,"13556":0.550990991,"13557":0.551981982,"13558":0.552972973,"13559":0.553963964,"13560":0.554954955,"13561":0.5559459459,"13562":0.5569369369,"13563":0.5579279279,"13564":0.5589189189,"13565":0.5599099099,"13566":0.5609009009,"13567":0.5618918919,"13568":0.5628828829,"13569":0.5638738739,"13570":0.5648648649,"13571":0.5658558559,"13572":0.5668468468,"13573":0.5678378378,"13574":0.5688288288,"13575":0.5698198198,"13576":0.5708108108,"13577":0.5718018018,"13578":0.5727927928,"13579":0.5737837838,"13580":0.5747747748,"13581":0.5757657658,"13582":0.5767567568,"13583":0.5777477477,"13584":0.5787387387,"13585":0.5797297297,"13586":0.5807207207,"13587":0.5817117117,"13588":0.5827027027,"13589":0.5836936937,"13590":0.5846846847,"13591":0.5856756757,"13592":0.5866666667,"13593":0.5876576577,"13594":0.5886486486,"13595":0.5896396396,"13596":0.5906306306,"13597":0.5916216216,"13598":0.5926126126,"13599":0.5936036036,"13600":0.5945945946,"13601":0.5955855856,"13602":0.5965765766,"13603":0.5975675676,"13604":0.5985585586,"13605":0.5995495495,"13606":0.6005405405,"13607":0.6015315315,"13608":0.6025225225,"13609":0.6035135135,"13610":0.6045045045,"13611":0.6054954955,"13612":0.6064864865,"13613":0.6074774775,"13614":0.6084684685,"13615":0.6094594595,"13616":0.6104504505,"13617":0.6114414414,"13618":0.6124324324,"13619":0.6134234234,"13620":0.6144144144,"13621":0.6154054054,"13622":0.6163963964,"13623":0.6173873874,"13624":0.6183783784,"13625":0.6193693694,"13626":0.6203603604,"13627":0.6213513514,"13628":0.6223423423,"13629":0.6233333333,"13630":0.6243243243,"13631":0.6253153153,"13632":0.6263063063,"13633":0.6272972973,"13634":0.6282882883,"13635":0.6292792793,"13636":0.6302702703,"13637":0.6312612613,"13638":0.6322522523,"13639":0.6332432432,"13640":0.6342342342,"13641":0.6352252252,"13642":0.6362162162,"13643":0.6372072072,"13644":0.6381981982,"13645":0.6391891892,"13646":0.6401801802,"13647":0.6411711712,"13648":0.6421621622,"13649":0.6431531532,"13650":0.6441441441,"13651":0.6451351351,"13652":0.6461261261,"13653":0.6471171171,"13654":0.6481081081,"13655":0.6490990991,"13656":0.6500900901,"13657":0.6510810811,"13658":0.6520720721,"13659":0.6530630631,"13660":0.6540540541,"13661":0.655045045,"13662":0.656036036,"13663":0.657027027,"13664":0.658018018,"13665":0.659009009,"13666":0.66,"13667":0.660990991,"13668":0.661981982,"13669":0.662972973,"13670":0.663963964,"13671":0.664954955,"13672":0.6659459459,"13673":0.6669369369,"13674":0.6679279279,"13675":0.6689189189,"13676":0.6699099099,"13677":0.6709009009,"13678":0.6718918919,"13679":0.6728828829,"13680":0.6738738739,"13681":0.6748648649,"13682":0.6758558559,"13683":0.6768468468,"13684":0.6778378378,"13685":0.6788288288,"13686":0.6798198198,"13687":0.6808108108,"13688":0.6818018018,"13689":0.6827927928,"13690":0.6837837838,"13691":0.6847747748,"13692":0.6857657658,"13693":0.6867567568,"13694":0.6877477477,"13695":0.6887387387,"13696":0.6897297297,"13697":0.6907207207,"13698":0.6917117117,"13699":0.6927027027,"13700":0.6936936937,"13701":0.6946846847,"13702":0.6956756757,"13703":0.6966666667,"13704":0.6976576577,"13705":0.6986486486,"13706":0.6996396396,"13707":0.7006306306,"13708":0.7016216216,"13709":0.7026126126,"13710":0.7036036036,"13711":0.7045945946,"13712":0.7055855856,"13713":0.7065765766,"13714":0.7075675676,"13715":0.7085585586,"13716":0.7095495495,"13717":0.7105405405,"13718":0.7115315315,"13719":0.7125225225,"13720":0.7135135135,"13721":0.7145045045,"13722":0.7154954955,"13723":0.7164864865,"13724":0.7174774775,"13725":0.7184684685,"13726":0.7194594595,"13727":0.7204504505,"13728":0.7214414414,"13729":0.7224324324,"13730":0.7234234234,"13731":0.7244144144,"13732":0.7254054054,"13733":0.7263963964,"13734":0.7273873874,"13735":0.7283783784,"13736":0.7293693694,"13737":0.7303603604,"13738":0.7313513514,"13739":0.7323423423,"13740":0.7333333333,"13741":0.7343243243,"13742":0.7353153153,"13743":0.7363063063,"13744":0.7372972973,"13745":0.7382882883,"13746":0.7392792793,"13747":0.7402702703,"13748":0.7412612613,"13749":0.7422522523,"13750":0.7432432432,"13751":0.7442342342,"13752":0.7452252252,"13753":0.7462162162,"13754":0.7472072072,"13755":0.7481981982,"13756":0.7491891892,"13757":0.7501801802,"13758":0.7511711712,"13759":0.7521621622,"13760":0.7531531532,"13761":0.7541441441,"13762":0.7551351351,"13763":0.7561261261,"13764":0.7571171171,"13765":0.7581081081,"13766":0.7590990991,"13767":0.7600900901,"13768":0.7610810811,"13769":0.7620720721,"13770":0.7630630631,"13771":0.7640540541,"13772":0.765045045,"13773":0.766036036,"13774":0.767027027,"13775":0.768018018,"13776":0.769009009,"13777":0.77,"13778":0.770990991,"13779":0.771981982,"13780":0.772972973,"13781":0.773963964,"13782":0.774954955,"13783":0.7759459459,"13784":0.7769369369,"13785":0.7779279279,"13786":0.7789189189,"13787":0.7799099099,"13788":0.7809009009,"13789":0.7818918919,"13790":0.7828828829,"13791":0.7838738739,"13792":0.7848648649,"13793":0.7858558559,"13794":0.7868468468,"13795":0.7878378378,"13796":0.7888288288,"13797":0.7898198198,"13798":0.7908108108,"13799":0.7918018018,"13800":0.7927927928,"13801":0.7937837838,"13802":0.7947747748,"13803":0.7957657658,"13804":0.7967567568,"13805":0.7977477477,"13806":0.7987387387,"13807":0.7997297297,"13808":0.8007207207,"13809":0.8017117117,"13810":0.8027027027,"13811":0.8036936937,"13812":0.8046846847,"13813":0.8056756757,"13814":0.8066666667,"13815":0.8076576577,"13816":0.8086486486,"13817":0.8096396396,"13818":0.8106306306,"13819":0.8116216216,"13820":0.8126126126,"13821":0.8136036036,"13822":0.8145945946,"13823":0.8155855856,"13824":0.8165765766,"13825":0.8175675676,"13826":0.8185585586,"13827":0.8195495495,"13828":0.8205405405,"13829":0.8215315315,"13830":0.8225225225,"13831":0.8235135135,"13832":0.8245045045,"13833":0.8254954955,"13834":0.8264864865,"13835":0.8274774775,"13836":0.8284684685,"13837":0.8294594595,"13838":0.8304504505,"13839":0.8314414414,"13840":0.8324324324,"13841":0.8334234234,"13842":0.8344144144,"13843":0.8354054054,"13844":0.8363963964,"13845":0.8373873874,"13846":0.8383783784,"13847":0.8393693694,"13848":0.8403603604,"13849":0.8413513514,"13850":0.8423423423,"13851":0.8433333333,"13852":0.8443243243,"13853":0.8453153153,"13854":0.8463063063,"13855":0.8472972973,"13856":0.8482882883,"13857":0.8492792793,"13858":0.8502702703,"13859":0.8512612613,"13860":0.8522522523,"13861":0.8532432432,"13862":0.8542342342,"13863":0.8552252252,"13864":0.8562162162,"13865":0.8572072072,"13866":0.8581981982,"13867":0.8591891892,"13868":0.8601801802,"13869":0.8611711712,"13870":0.8621621622,"13871":0.8631531532,"13872":0.8641441441,"13873":0.8651351351,"13874":0.8661261261,"13875":0.8671171171,"13876":0.8681081081,"13877":0.8690990991,"13878":0.8700900901,"13879":0.8710810811,"13880":0.8720720721,"13881":0.8730630631,"13882":0.8740540541,"13883":0.875045045,"13884":0.876036036,"13885":0.877027027,"13886":0.878018018,"13887":0.879009009,"13888":0.88,"13889":0.880990991,"13890":0.881981982,"13891":0.882972973,"13892":0.883963964,"13893":0.884954955,"13894":0.8859459459,"13895":0.8869369369,"13896":0.8879279279,"13897":0.8889189189,"13898":0.8899099099,"13899":0.8909009009,"13900":0.8918918919,"13901":0.8928828829,"13902":0.8938738739,"13903":0.8948648649,"13904":0.8958558559,"13905":0.8968468468,"13906":0.8978378378,"13907":0.8988288288,"13908":0.8998198198,"13909":0.9008108108,"13910":0.9018018018,"13911":0.9027927928,"13912":0.9037837838,"13913":0.9047747748,"13914":0.9057657658,"13915":0.9067567568,"13916":0.9077477477,"13917":0.9087387387,"13918":0.9097297297,"13919":0.9107207207,"13920":0.9117117117,"13921":0.9127027027,"13922":0.9136936937,"13923":0.9146846847,"13924":0.9156756757,"13925":0.9166666667,"13926":0.9176576577,"13927":0.9186486486,"13928":0.9196396396,"13929":0.9206306306,"13930":0.9216216216,"13931":0.9226126126,"13932":0.9236036036,"13933":0.9245945946,"13934":0.9255855856,"13935":0.9265765766,"13936":0.9275675676,"13937":0.9285585586,"13938":0.9295495495,"13939":0.9305405405,"13940":0.9315315315,"13941":0.9325225225,"13942":0.9335135135,"13943":0.9345045045,"13944":0.9354954955,"13945":0.9364864865,"13946":0.9374774775,"13947":0.9384684685,"13948":0.9394594595,"13949":0.9404504505,"13950":0.9414414414,"13951":0.9424324324,"13952":0.9434234234,"13953":0.9444144144,"13954":0.9454054054,"13955":0.9463963964,"13956":0.9473873874,"13957":0.9483783784,"13958":0.9493693694,"13959":0.9503603604,"13960":0.9513513514,"13961":0.9523423423,"13962":0.9533333333,"13963":0.9543243243,"13964":0.9553153153,"13965":0.9563063063,"13966":0.9572972973,"13967":0.9582882883,"13968":0.9592792793,"13969":0.9602702703,"13970":0.9612612613,"13971":0.9622522523,"13972":0.9632432432,"13973":0.9642342342,"13974":0.9652252252,"13975":0.9662162162,"13976":0.9672072072,"13977":0.9681981982,"13978":0.9691891892,"13979":0.9701801802,"13980":0.9711711712,"13981":0.9721621622,"13982":0.9731531532,"13983":0.9741441441,"13984":0.9751351351,"13985":0.9761261261,"13986":0.9771171171,"13987":0.9781081081,"13988":0.9790990991,"13989":0.9800900901,"13990":0.9810810811,"13991":0.9820720721,"13992":0.9830630631,"13993":0.9840540541,"13994":0.985045045,"13995":0.986036036,"13996":0.987027027,"13997":0.988018018,"13998":0.989009009,"13999":0.99,"14000":0.0,"14001":0.000990991,"14002":0.001981982,"14003":0.002972973,"14004":0.003963964,"14005":0.004954955,"14006":0.0059459459,"14007":0.0069369369,"14008":0.0079279279,"14009":0.0089189189,"14010":0.0099099099,"14011":0.0109009009,"14012":0.0118918919,"14013":0.0128828829,"14014":0.0138738739,"14015":0.0148648649,"14016":0.0158558559,"14017":0.0168468468,"14018":0.0178378378,"14019":0.0188288288,"14020":0.0198198198,"14021":0.0208108108,"14022":0.0218018018,"14023":0.0227927928,"14024":0.0237837838,"14025":0.0247747748,"14026":0.0257657658,"14027":0.0267567568,"14028":0.0277477477,"14029":0.0287387387,"14030":0.0297297297,"14031":0.0307207207,"14032":0.0317117117,"14033":0.0327027027,"14034":0.0336936937,"14035":0.0346846847,"14036":0.0356756757,"14037":0.0366666667,"14038":0.0376576577,"14039":0.0386486486,"14040":0.0396396396,"14041":0.0406306306,"14042":0.0416216216,"14043":0.0426126126,"14044":0.0436036036,"14045":0.0445945946,"14046":0.0455855856,"14047":0.0465765766,"14048":0.0475675676,"14049":0.0485585586,"14050":0.0495495495,"14051":0.0505405405,"14052":0.0515315315,"14053":0.0525225225,"14054":0.0535135135,"14055":0.0545045045,"14056":0.0554954955,"14057":0.0564864865,"14058":0.0574774775,"14059":0.0584684685,"14060":0.0594594595,"14061":0.0604504505,"14062":0.0614414414,"14063":0.0624324324,"14064":0.0634234234,"14065":0.0644144144,"14066":0.0654054054,"14067":0.0663963964,"14068":0.0673873874,"14069":0.0683783784,"14070":0.0693693694,"14071":0.0703603604,"14072":0.0713513514,"14073":0.0723423423,"14074":0.0733333333,"14075":0.0743243243,"14076":0.0753153153,"14077":0.0763063063,"14078":0.0772972973,"14079":0.0782882883,"14080":0.0792792793,"14081":0.0802702703,"14082":0.0812612613,"14083":0.0822522523,"14084":0.0832432432,"14085":0.0842342342,"14086":0.0852252252,"14087":0.0862162162,"14088":0.0872072072,"14089":0.0881981982,"14090":0.0891891892,"14091":0.0901801802,"14092":0.0911711712,"14093":0.0921621622,"14094":0.0931531532,"14095":0.0941441441,"14096":0.0951351351,"14097":0.0961261261,"14098":0.0971171171,"14099":0.0981081081,"14100":0.0990990991,"14101":0.1000900901,"14102":0.1010810811,"14103":0.1020720721,"14104":0.1030630631,"14105":0.1040540541,"14106":0.105045045,"14107":0.106036036,"14108":0.107027027,"14109":0.108018018,"14110":0.109009009,"14111":0.11,"14112":0.110990991,"14113":0.111981982,"14114":0.112972973,"14115":0.113963964,"14116":0.114954955,"14117":0.1159459459,"14118":0.1169369369,"14119":0.1179279279,"14120":0.1189189189,"14121":0.1199099099,"14122":0.1209009009,"14123":0.1218918919,"14124":0.1228828829,"14125":0.1238738739,"14126":0.1248648649,"14127":0.1258558559,"14128":0.1268468468,"14129":0.1278378378,"14130":0.1288288288,"14131":0.1298198198,"14132":0.1308108108,"14133":0.1318018018,"14134":0.1327927928,"14135":0.1337837838,"14136":0.1347747748,"14137":0.1357657658,"14138":0.1367567568,"14139":0.1377477477,"14140":0.1387387387,"14141":0.1397297297,"14142":0.1407207207,"14143":0.1417117117,"14144":0.1427027027,"14145":0.1436936937,"14146":0.1446846847,"14147":0.1456756757,"14148":0.1466666667,"14149":0.1476576577,"14150":0.1486486486,"14151":0.1496396396,"14152":0.1506306306,"14153":0.1516216216,"14154":0.1526126126,"14155":0.1536036036,"14156":0.1545945946,"14157":0.1555855856,"14158":0.1565765766,"14159":0.1575675676,"14160":0.1585585586,"14161":0.1595495495,"14162":0.1605405405,"14163":0.1615315315,"14164":0.1625225225,"14165":0.1635135135,"14166":0.1645045045,"14167":0.1654954955,"14168":0.1664864865,"14169":0.1674774775,"14170":0.1684684685,"14171":0.1694594595,"14172":0.1704504505,"14173":0.1714414414,"14174":0.1724324324,"14175":0.1734234234,"14176":0.1744144144,"14177":0.1754054054,"14178":0.1763963964,"14179":0.1773873874,"14180":0.1783783784,"14181":0.1793693694,"14182":0.1803603604,"14183":0.1813513514,"14184":0.1823423423,"14185":0.1833333333,"14186":0.1843243243,"14187":0.1853153153,"14188":0.1863063063,"14189":0.1872972973,"14190":0.1882882883,"14191":0.1892792793,"14192":0.1902702703,"14193":0.1912612613,"14194":0.1922522523,"14195":0.1932432432,"14196":0.1942342342,"14197":0.1952252252,"14198":0.1962162162,"14199":0.1972072072,"14200":0.1981981982,"14201":0.1991891892,"14202":0.2001801802,"14203":0.2011711712,"14204":0.2021621622,"14205":0.2031531532,"14206":0.2041441441,"14207":0.2051351351,"14208":0.2061261261,"14209":0.2071171171,"14210":0.2081081081,"14211":0.2090990991,"14212":0.2100900901,"14213":0.2110810811,"14214":0.2120720721,"14215":0.2130630631,"14216":0.2140540541,"14217":0.215045045,"14218":0.216036036,"14219":0.217027027,"14220":0.218018018,"14221":0.219009009,"14222":0.22,"14223":0.220990991,"14224":0.221981982,"14225":0.222972973,"14226":0.223963964,"14227":0.224954955,"14228":0.2259459459,"14229":0.2269369369,"14230":0.2279279279,"14231":0.2289189189,"14232":0.2299099099,"14233":0.2309009009,"14234":0.2318918919,"14235":0.2328828829,"14236":0.2338738739,"14237":0.2348648649,"14238":0.2358558559,"14239":0.2368468468,"14240":0.2378378378,"14241":0.2388288288,"14242":0.2398198198,"14243":0.2408108108,"14244":0.2418018018,"14245":0.2427927928,"14246":0.2437837838,"14247":0.2447747748,"14248":0.2457657658,"14249":0.2467567568,"14250":0.2477477477,"14251":0.2487387387,"14252":0.2497297297,"14253":0.2507207207,"14254":0.2517117117,"14255":0.2527027027,"14256":0.2536936937,"14257":0.2546846847,"14258":0.2556756757,"14259":0.2566666667,"14260":0.2576576577,"14261":0.2586486486,"14262":0.2596396396,"14263":0.2606306306,"14264":0.2616216216,"14265":0.2626126126,"14266":0.2636036036,"14267":0.2645945946,"14268":0.2655855856,"14269":0.2665765766,"14270":0.2675675676,"14271":0.2685585586,"14272":0.2695495495,"14273":0.2705405405,"14274":0.2715315315,"14275":0.2725225225,"14276":0.2735135135,"14277":0.2745045045,"14278":0.2754954955,"14279":0.2764864865,"14280":0.2774774775,"14281":0.2784684685,"14282":0.2794594595,"14283":0.2804504505,"14284":0.2814414414,"14285":0.2824324324,"14286":0.2834234234,"14287":0.2844144144,"14288":0.2854054054,"14289":0.2863963964,"14290":0.2873873874,"14291":0.2883783784,"14292":0.2893693694,"14293":0.2903603604,"14294":0.2913513514,"14295":0.2923423423,"14296":0.2933333333,"14297":0.2943243243,"14298":0.2953153153,"14299":0.2963063063,"14300":0.2972972973,"14301":0.2982882883,"14302":0.2992792793,"14303":0.3002702703,"14304":0.3012612613,"14305":0.3022522523,"14306":0.3032432432,"14307":0.3042342342,"14308":0.3052252252,"14309":0.3062162162,"14310":0.3072072072,"14311":0.3081981982,"14312":0.3091891892,"14313":0.3101801802,"14314":0.3111711712,"14315":0.3121621622,"14316":0.3131531532,"14317":0.3141441441,"14318":0.3151351351,"14319":0.3161261261,"14320":0.3171171171,"14321":0.3181081081,"14322":0.3190990991,"14323":0.3200900901,"14324":0.3210810811,"14325":0.3220720721,"14326":0.3230630631,"14327":0.3240540541,"14328":0.325045045,"14329":0.326036036,"14330":0.327027027,"14331":0.328018018,"14332":0.329009009,"14333":0.33,"14334":0.330990991,"14335":0.331981982,"14336":0.332972973,"14337":0.333963964,"14338":0.334954955,"14339":0.3359459459,"14340":0.3369369369,"14341":0.3379279279,"14342":0.3389189189,"14343":0.3399099099,"14344":0.3409009009,"14345":0.3418918919,"14346":0.3428828829,"14347":0.3438738739,"14348":0.3448648649,"14349":0.3458558559,"14350":0.3468468468,"14351":0.3478378378,"14352":0.3488288288,"14353":0.3498198198,"14354":0.3508108108,"14355":0.3518018018,"14356":0.3527927928,"14357":0.3537837838,"14358":0.3547747748,"14359":0.3557657658,"14360":0.3567567568,"14361":0.3577477477,"14362":0.3587387387,"14363":0.3597297297,"14364":0.3607207207,"14365":0.3617117117,"14366":0.3627027027,"14367":0.3636936937,"14368":0.3646846847,"14369":0.3656756757,"14370":0.3666666667,"14371":0.3676576577,"14372":0.3686486486,"14373":0.3696396396,"14374":0.3706306306,"14375":0.3716216216,"14376":0.3726126126,"14377":0.3736036036,"14378":0.3745945946,"14379":0.3755855856,"14380":0.3765765766,"14381":0.3775675676,"14382":0.3785585586,"14383":0.3795495495,"14384":0.3805405405,"14385":0.3815315315,"14386":0.3825225225,"14387":0.3835135135,"14388":0.3845045045,"14389":0.3854954955,"14390":0.3864864865,"14391":0.3874774775,"14392":0.3884684685,"14393":0.3894594595,"14394":0.3904504505,"14395":0.3914414414,"14396":0.3924324324,"14397":0.3934234234,"14398":0.3944144144,"14399":0.3954054054,"14400":0.3963963964,"14401":0.3973873874,"14402":0.3983783784,"14403":0.3993693694,"14404":0.4003603604,"14405":0.4013513514,"14406":0.4023423423,"14407":0.4033333333,"14408":0.4043243243,"14409":0.4053153153,"14410":0.4063063063,"14411":0.4072972973,"14412":0.4082882883,"14413":0.4092792793,"14414":0.4102702703,"14415":0.4112612613,"14416":0.4122522523,"14417":0.4132432432,"14418":0.4142342342,"14419":0.4152252252,"14420":0.4162162162,"14421":0.4172072072,"14422":0.4181981982,"14423":0.4191891892,"14424":0.4201801802,"14425":0.4211711712,"14426":0.4221621622,"14427":0.4231531532,"14428":0.4241441441,"14429":0.4251351351,"14430":0.4261261261,"14431":0.4271171171,"14432":0.4281081081,"14433":0.4290990991,"14434":0.4300900901,"14435":0.4310810811,"14436":0.4320720721,"14437":0.4330630631,"14438":0.4340540541,"14439":0.435045045,"14440":0.436036036,"14441":0.437027027,"14442":0.438018018,"14443":0.439009009,"14444":0.44,"14445":0.440990991,"14446":0.441981982,"14447":0.442972973,"14448":0.443963964,"14449":0.444954955,"14450":0.4459459459,"14451":0.4469369369,"14452":0.4479279279,"14453":0.4489189189,"14454":0.4499099099,"14455":0.4509009009,"14456":0.4518918919,"14457":0.4528828829,"14458":0.4538738739,"14459":0.4548648649,"14460":0.4558558559,"14461":0.4568468468,"14462":0.4578378378,"14463":0.4588288288,"14464":0.4598198198,"14465":0.4608108108,"14466":0.4618018018,"14467":0.4627927928,"14468":0.4637837838,"14469":0.4647747748,"14470":0.4657657658,"14471":0.4667567568,"14472":0.4677477477,"14473":0.4687387387,"14474":0.4697297297,"14475":0.4707207207,"14476":0.4717117117,"14477":0.4727027027,"14478":0.4736936937,"14479":0.4746846847,"14480":0.4756756757,"14481":0.4766666667,"14482":0.4776576577,"14483":0.4786486486,"14484":0.4796396396,"14485":0.4806306306,"14486":0.4816216216,"14487":0.4826126126,"14488":0.4836036036,"14489":0.4845945946,"14490":0.4855855856,"14491":0.4865765766,"14492":0.4875675676,"14493":0.4885585586,"14494":0.4895495495,"14495":0.4905405405,"14496":0.4915315315,"14497":0.4925225225,"14498":0.4935135135,"14499":0.4945045045,"14500":0.4954954955,"14501":0.4964864865,"14502":0.4974774775,"14503":0.4984684685,"14504":0.4994594595,"14505":0.5004504505,"14506":0.5014414414,"14507":0.5024324324,"14508":0.5034234234,"14509":0.5044144144,"14510":0.5054054054,"14511":0.5063963964,"14512":0.5073873874,"14513":0.5083783784,"14514":0.5093693694,"14515":0.5103603604,"14516":0.5113513514,"14517":0.5123423423,"14518":0.5133333333,"14519":0.5143243243,"14520":0.5153153153,"14521":0.5163063063,"14522":0.5172972973,"14523":0.5182882883,"14524":0.5192792793,"14525":0.5202702703,"14526":0.5212612613,"14527":0.5222522523,"14528":0.5232432432,"14529":0.5242342342,"14530":0.5252252252,"14531":0.5262162162,"14532":0.5272072072,"14533":0.5281981982,"14534":0.5291891892,"14535":0.5301801802,"14536":0.5311711712,"14537":0.5321621622,"14538":0.5331531532,"14539":0.5341441441,"14540":0.5351351351,"14541":0.5361261261,"14542":0.5371171171,"14543":0.5381081081,"14544":0.5390990991,"14545":0.5400900901,"14546":0.5410810811,"14547":0.5420720721,"14548":0.5430630631,"14549":0.5440540541,"14550":0.545045045,"14551":0.546036036,"14552":0.547027027,"14553":0.548018018,"14554":0.549009009,"14555":0.55,"14556":0.550990991,"14557":0.551981982,"14558":0.552972973,"14559":0.553963964,"14560":0.554954955,"14561":0.5559459459,"14562":0.5569369369,"14563":0.5579279279,"14564":0.5589189189,"14565":0.5599099099,"14566":0.5609009009,"14567":0.5618918919,"14568":0.5628828829,"14569":0.5638738739,"14570":0.5648648649,"14571":0.5658558559,"14572":0.5668468468,"14573":0.5678378378,"14574":0.5688288288,"14575":0.5698198198,"14576":0.5708108108,"14577":0.5718018018,"14578":0.5727927928,"14579":0.5737837838,"14580":0.5747747748,"14581":0.5757657658,"14582":0.5767567568,"14583":0.5777477477,"14584":0.5787387387,"14585":0.5797297297,"14586":0.5807207207,"14587":0.5817117117,"14588":0.5827027027,"14589":0.5836936937,"14590":0.5846846847,"14591":0.5856756757,"14592":0.5866666667,"14593":0.5876576577,"14594":0.5886486486,"14595":0.5896396396,"14596":0.5906306306,"14597":0.5916216216,"14598":0.5926126126,"14599":0.5936036036,"14600":0.5945945946,"14601":0.5955855856,"14602":0.5965765766,"14603":0.5975675676,"14604":0.5985585586,"14605":0.5995495495,"14606":0.6005405405,"14607":0.6015315315,"14608":0.6025225225,"14609":0.6035135135,"14610":0.6045045045,"14611":0.6054954955,"14612":0.6064864865,"14613":0.6074774775,"14614":0.6084684685,"14615":0.6094594595,"14616":0.6104504505,"14617":0.6114414414,"14618":0.6124324324,"14619":0.6134234234,"14620":0.6144144144,"14621":0.6154054054,"14622":0.6163963964,"14623":0.6173873874,"14624":0.6183783784,"14625":0.6193693694,"14626":0.6203603604,"14627":0.6213513514,"14628":0.6223423423,"14629":0.6233333333,"14630":0.6243243243,"14631":0.6253153153,"14632":0.6263063063,"14633":0.6272972973,"14634":0.6282882883,"14635":0.6292792793,"14636":0.6302702703,"14637":0.6312612613,"14638":0.6322522523,"14639":0.6332432432,"14640":0.6342342342,"14641":0.6352252252,"14642":0.6362162162,"14643":0.6372072072,"14644":0.6381981982,"14645":0.6391891892,"14646":0.6401801802,"14647":0.6411711712,"14648":0.6421621622,"14649":0.6431531532,"14650":0.6441441441,"14651":0.6451351351,"14652":0.6461261261,"14653":0.6471171171,"14654":0.6481081081,"14655":0.6490990991,"14656":0.6500900901,"14657":0.6510810811,"14658":0.6520720721,"14659":0.6530630631,"14660":0.6540540541,"14661":0.655045045,"14662":0.656036036,"14663":0.657027027,"14664":0.658018018,"14665":0.659009009,"14666":0.66,"14667":0.660990991,"14668":0.661981982,"14669":0.662972973,"14670":0.663963964,"14671":0.664954955,"14672":0.6659459459,"14673":0.6669369369,"14674":0.6679279279,"14675":0.6689189189,"14676":0.6699099099,"14677":0.6709009009,"14678":0.6718918919,"14679":0.6728828829,"14680":0.6738738739,"14681":0.6748648649,"14682":0.6758558559,"14683":0.6768468468,"14684":0.6778378378,"14685":0.6788288288,"14686":0.6798198198,"14687":0.6808108108,"14688":0.6818018018,"14689":0.6827927928,"14690":0.6837837838,"14691":0.6847747748,"14692":0.6857657658,"14693":0.6867567568,"14694":0.6877477477,"14695":0.6887387387,"14696":0.6897297297,"14697":0.6907207207,"14698":0.6917117117,"14699":0.6927027027,"14700":0.6936936937,"14701":0.6946846847,"14702":0.6956756757,"14703":0.6966666667,"14704":0.6976576577,"14705":0.6986486486,"14706":0.6996396396,"14707":0.7006306306,"14708":0.7016216216,"14709":0.7026126126,"14710":0.7036036036,"14711":0.7045945946,"14712":0.7055855856,"14713":0.7065765766,"14714":0.7075675676,"14715":0.7085585586,"14716":0.7095495495,"14717":0.7105405405,"14718":0.7115315315,"14719":0.7125225225,"14720":0.7135135135,"14721":0.7145045045,"14722":0.7154954955,"14723":0.7164864865,"14724":0.7174774775,"14725":0.7184684685,"14726":0.7194594595,"14727":0.7204504505,"14728":0.7214414414,"14729":0.7224324324,"14730":0.7234234234,"14731":0.7244144144,"14732":0.7254054054,"14733":0.7263963964,"14734":0.7273873874,"14735":0.7283783784,"14736":0.7293693694,"14737":0.7303603604,"14738":0.7313513514,"14739":0.7323423423,"14740":0.7333333333,"14741":0.7343243243,"14742":0.7353153153,"14743":0.7363063063,"14744":0.7372972973,"14745":0.7382882883,"14746":0.7392792793,"14747":0.7402702703,"14748":0.7412612613,"14749":0.7422522523,"14750":0.7432432432,"14751":0.7442342342,"14752":0.7452252252,"14753":0.7462162162,"14754":0.7472072072,"14755":0.7481981982,"14756":0.7491891892,"14757":0.7501801802,"14758":0.7511711712,"14759":0.7521621622,"14760":0.7531531532,"14761":0.7541441441,"14762":0.7551351351,"14763":0.7561261261,"14764":0.7571171171,"14765":0.7581081081,"14766":0.7590990991,"14767":0.7600900901,"14768":0.7610810811,"14769":0.7620720721,"14770":0.7630630631,"14771":0.7640540541,"14772":0.765045045,"14773":0.766036036,"14774":0.767027027,"14775":0.768018018,"14776":0.769009009,"14777":0.77,"14778":0.770990991,"14779":0.771981982,"14780":0.772972973,"14781":0.773963964,"14782":0.774954955,"14783":0.7759459459,"14784":0.7769369369,"14785":0.7779279279,"14786":0.7789189189,"14787":0.7799099099,"14788":0.7809009009,"14789":0.7818918919,"14790":0.7828828829,"14791":0.7838738739,"14792":0.7848648649,"14793":0.7858558559,"14794":0.7868468468,"14795":0.7878378378,"14796":0.7888288288,"14797":0.7898198198,"14798":0.7908108108,"14799":0.7918018018,"14800":0.7927927928,"14801":0.7937837838,"14802":0.7947747748,"14803":0.7957657658,"14804":0.7967567568,"14805":0.7977477477,"14806":0.7987387387,"14807":0.7997297297,"14808":0.8007207207,"14809":0.8017117117,"14810":0.8027027027,"14811":0.8036936937,"14812":0.8046846847,"14813":0.8056756757,"14814":0.8066666667,"14815":0.8076576577,"14816":0.8086486486,"14817":0.8096396396,"14818":0.8106306306,"14819":0.8116216216,"14820":0.8126126126,"14821":0.8136036036,"14822":0.8145945946,"14823":0.8155855856,"14824":0.8165765766,"14825":0.8175675676,"14826":0.8185585586,"14827":0.8195495495,"14828":0.8205405405,"14829":0.8215315315,"14830":0.8225225225,"14831":0.8235135135,"14832":0.8245045045,"14833":0.8254954955,"14834":0.8264864865,"14835":0.8274774775,"14836":0.8284684685,"14837":0.8294594595,"14838":0.8304504505,"14839":0.8314414414,"14840":0.8324324324,"14841":0.8334234234,"14842":0.8344144144,"14843":0.8354054054,"14844":0.8363963964,"14845":0.8373873874,"14846":0.8383783784,"14847":0.8393693694,"14848":0.8403603604,"14849":0.8413513514,"14850":0.8423423423,"14851":0.8433333333,"14852":0.8443243243,"14853":0.8453153153,"14854":0.8463063063,"14855":0.8472972973,"14856":0.8482882883,"14857":0.8492792793,"14858":0.8502702703,"14859":0.8512612613,"14860":0.8522522523,"14861":0.8532432432,"14862":0.8542342342,"14863":0.8552252252,"14864":0.8562162162,"14865":0.8572072072,"14866":0.8581981982,"14867":0.8591891892,"14868":0.8601801802,"14869":0.8611711712,"14870":0.8621621622,"14871":0.8631531532,"14872":0.8641441441,"14873":0.8651351351,"14874":0.8661261261,"14875":0.8671171171,"14876":0.8681081081,"14877":0.8690990991,"14878":0.8700900901,"14879":0.8710810811,"14880":0.8720720721,"14881":0.8730630631,"14882":0.8740540541,"14883":0.875045045,"14884":0.876036036,"14885":0.877027027,"14886":0.878018018,"14887":0.879009009,"14888":0.88,"14889":0.880990991,"14890":0.881981982,"14891":0.882972973,"14892":0.883963964,"14893":0.884954955,"14894":0.8859459459,"14895":0.8869369369,"14896":0.8879279279,"14897":0.8889189189,"14898":0.8899099099,"14899":0.8909009009,"14900":0.8918918919,"14901":0.8928828829,"14902":0.8938738739,"14903":0.8948648649,"14904":0.8958558559,"14905":0.8968468468,"14906":0.8978378378,"14907":0.8988288288,"14908":0.8998198198,"14909":0.9008108108,"14910":0.9018018018,"14911":0.9027927928,"14912":0.9037837838,"14913":0.9047747748,"14914":0.9057657658,"14915":0.9067567568,"14916":0.9077477477,"14917":0.9087387387,"14918":0.9097297297,"14919":0.9107207207,"14920":0.9117117117,"14921":0.9127027027,"14922":0.9136936937,"14923":0.9146846847,"14924":0.9156756757,"14925":0.9166666667,"14926":0.9176576577,"14927":0.9186486486,"14928":0.9196396396,"14929":0.9206306306,"14930":0.9216216216,"14931":0.9226126126,"14932":0.9236036036,"14933":0.9245945946,"14934":0.9255855856,"14935":0.9265765766,"14936":0.9275675676,"14937":0.9285585586,"14938":0.9295495495,"14939":0.9305405405,"14940":0.9315315315,"14941":0.9325225225,"14942":0.9335135135,"14943":0.9345045045,"14944":0.9354954955,"14945":0.9364864865,"14946":0.9374774775,"14947":0.9384684685,"14948":0.9394594595,"14949":0.9404504505,"14950":0.9414414414,"14951":0.9424324324,"14952":0.9434234234,"14953":0.9444144144,"14954":0.9454054054,"14955":0.9463963964,"14956":0.9473873874,"14957":0.9483783784,"14958":0.9493693694,"14959":0.9503603604,"14960":0.9513513514,"14961":0.9523423423,"14962":0.9533333333,"14963":0.9543243243,"14964":0.9553153153,"14965":0.9563063063,"14966":0.9572972973,"14967":0.9582882883,"14968":0.9592792793,"14969":0.9602702703,"14970":0.9612612613,"14971":0.9622522523,"14972":0.9632432432,"14973":0.9642342342,"14974":0.9652252252,"14975":0.9662162162,"14976":0.9672072072,"14977":0.9681981982,"14978":0.9691891892,"14979":0.9701801802,"14980":0.9711711712,"14981":0.9721621622,"14982":0.9731531532,"14983":0.9741441441,"14984":0.9751351351,"14985":0.9761261261,"14986":0.9771171171,"14987":0.9781081081,"14988":0.9790990991,"14989":0.9800900901,"14990":0.9810810811,"14991":0.9820720721,"14992":0.9830630631,"14993":0.9840540541,"14994":0.985045045,"14995":0.986036036,"14996":0.987027027,"14997":0.988018018,"14998":0.989009009,"14999":0.99,"15000":0.0,"15001":0.000990991,"15002":0.001981982,"15003":0.002972973,"15004":0.003963964,"15005":0.004954955,"15006":0.0059459459,"15007":0.0069369369,"15008":0.0079279279,"15009":0.0089189189,"15010":0.0099099099,"15011":0.0109009009,"15012":0.0118918919,"15013":0.0128828829,"15014":0.0138738739,"15015":0.0148648649,"15016":0.0158558559,"15017":0.0168468468,"15018":0.0178378378,"15019":0.0188288288,"15020":0.0198198198,"15021":0.0208108108,"15022":0.0218018018,"15023":0.0227927928,"15024":0.0237837838,"15025":0.0247747748,"15026":0.0257657658,"15027":0.0267567568,"15028":0.0277477477,"15029":0.0287387387,"15030":0.0297297297,"15031":0.0307207207,"15032":0.0317117117,"15033":0.0327027027,"15034":0.0336936937,"15035":0.0346846847,"15036":0.0356756757,"15037":0.0366666667,"15038":0.0376576577,"15039":0.0386486486,"15040":0.0396396396,"15041":0.0406306306,"15042":0.0416216216,"15043":0.0426126126,"15044":0.0436036036,"15045":0.0445945946,"15046":0.0455855856,"15047":0.0465765766,"15048":0.0475675676,"15049":0.0485585586,"15050":0.0495495495,"15051":0.0505405405,"15052":0.0515315315,"15053":0.0525225225,"15054":0.0535135135,"15055":0.0545045045,"15056":0.0554954955,"15057":0.0564864865,"15058":0.0574774775,"15059":0.0584684685,"15060":0.0594594595,"15061":0.0604504505,"15062":0.0614414414,"15063":0.0624324324,"15064":0.0634234234,"15065":0.0644144144,"15066":0.0654054054,"15067":0.0663963964,"15068":0.0673873874,"15069":0.0683783784,"15070":0.0693693694,"15071":0.0703603604,"15072":0.0713513514,"15073":0.0723423423,"15074":0.0733333333,"15075":0.0743243243,"15076":0.0753153153,"15077":0.0763063063,"15078":0.0772972973,"15079":0.0782882883,"15080":0.0792792793,"15081":0.0802702703,"15082":0.0812612613,"15083":0.0822522523,"15084":0.0832432432,"15085":0.0842342342,"15086":0.0852252252,"15087":0.0862162162,"15088":0.0872072072,"15089":0.0881981982,"15090":0.0891891892,"15091":0.0901801802,"15092":0.0911711712,"15093":0.0921621622,"15094":0.0931531532,"15095":0.0941441441,"15096":0.0951351351,"15097":0.0961261261,"15098":0.0971171171,"15099":0.0981081081,"15100":0.0990990991,"15101":0.1000900901,"15102":0.1010810811,"15103":0.1020720721,"15104":0.1030630631,"15105":0.1040540541,"15106":0.105045045,"15107":0.106036036,"15108":0.107027027,"15109":0.108018018,"15110":0.109009009,"15111":0.11,"15112":0.110990991,"15113":0.111981982,"15114":0.112972973,"15115":0.113963964,"15116":0.114954955,"15117":0.1159459459,"15118":0.1169369369,"15119":0.1179279279,"15120":0.1189189189,"15121":0.1199099099,"15122":0.1209009009,"15123":0.1218918919,"15124":0.1228828829,"15125":0.1238738739,"15126":0.1248648649,"15127":0.1258558559,"15128":0.1268468468,"15129":0.1278378378,"15130":0.1288288288,"15131":0.1298198198,"15132":0.1308108108,"15133":0.1318018018,"15134":0.1327927928,"15135":0.1337837838,"15136":0.1347747748,"15137":0.1357657658,"15138":0.1367567568,"15139":0.1377477477,"15140":0.1387387387,"15141":0.1397297297,"15142":0.1407207207,"15143":0.1417117117,"15144":0.1427027027,"15145":0.1436936937,"15146":0.1446846847,"15147":0.1456756757,"15148":0.1466666667,"15149":0.1476576577,"15150":0.1486486486,"15151":0.1496396396,"15152":0.1506306306,"15153":0.1516216216,"15154":0.1526126126,"15155":0.1536036036,"15156":0.1545945946,"15157":0.1555855856,"15158":0.1565765766,"15159":0.1575675676,"15160":0.1585585586,"15161":0.1595495495,"15162":0.1605405405,"15163":0.1615315315,"15164":0.1625225225,"15165":0.1635135135,"15166":0.1645045045,"15167":0.1654954955,"15168":0.1664864865,"15169":0.1674774775,"15170":0.1684684685,"15171":0.1694594595,"15172":0.1704504505,"15173":0.1714414414,"15174":0.1724324324,"15175":0.1734234234,"15176":0.1744144144,"15177":0.1754054054,"15178":0.1763963964,"15179":0.1773873874,"15180":0.1783783784,"15181":0.1793693694,"15182":0.1803603604,"15183":0.1813513514,"15184":0.1823423423,"15185":0.1833333333,"15186":0.1843243243,"15187":0.1853153153,"15188":0.1863063063,"15189":0.1872972973,"15190":0.1882882883,"15191":0.1892792793,"15192":0.1902702703,"15193":0.1912612613,"15194":0.1922522523,"15195":0.1932432432,"15196":0.1942342342,"15197":0.1952252252,"15198":0.1962162162,"15199":0.1972072072,"15200":0.1981981982,"15201":0.1991891892,"15202":0.2001801802,"15203":0.2011711712,"15204":0.2021621622,"15205":0.2031531532,"15206":0.2041441441,"15207":0.2051351351,"15208":0.2061261261,"15209":0.2071171171,"15210":0.2081081081,"15211":0.2090990991,"15212":0.2100900901,"15213":0.2110810811,"15214":0.2120720721,"15215":0.2130630631,"15216":0.2140540541,"15217":0.215045045,"15218":0.216036036,"15219":0.217027027,"15220":0.218018018,"15221":0.219009009,"15222":0.22,"15223":0.220990991,"15224":0.221981982,"15225":0.222972973,"15226":0.223963964,"15227":0.224954955,"15228":0.2259459459,"15229":0.2269369369,"15230":0.2279279279,"15231":0.2289189189,"15232":0.2299099099,"15233":0.2309009009,"15234":0.2318918919,"15235":0.2328828829,"15236":0.2338738739,"15237":0.2348648649,"15238":0.2358558559,"15239":0.2368468468,"15240":0.2378378378,"15241":0.2388288288,"15242":0.2398198198,"15243":0.2408108108,"15244":0.2418018018,"15245":0.2427927928,"15246":0.2437837838,"15247":0.2447747748,"15248":0.2457657658,"15249":0.2467567568,"15250":0.2477477477,"15251":0.2487387387,"15252":0.2497297297,"15253":0.2507207207,"15254":0.2517117117,"15255":0.2527027027,"15256":0.2536936937,"15257":0.2546846847,"15258":0.2556756757,"15259":0.2566666667,"15260":0.2576576577,"15261":0.2586486486,"15262":0.2596396396,"15263":0.2606306306,"15264":0.2616216216,"15265":0.2626126126,"15266":0.2636036036,"15267":0.2645945946,"15268":0.2655855856,"15269":0.2665765766,"15270":0.2675675676,"15271":0.2685585586,"15272":0.2695495495,"15273":0.2705405405,"15274":0.2715315315,"15275":0.2725225225,"15276":0.2735135135,"15277":0.2745045045,"15278":0.2754954955,"15279":0.2764864865,"15280":0.2774774775,"15281":0.2784684685,"15282":0.2794594595,"15283":0.2804504505,"15284":0.2814414414,"15285":0.2824324324,"15286":0.2834234234,"15287":0.2844144144,"15288":0.2854054054,"15289":0.2863963964,"15290":0.2873873874,"15291":0.2883783784,"15292":0.2893693694,"15293":0.2903603604,"15294":0.2913513514,"15295":0.2923423423,"15296":0.2933333333,"15297":0.2943243243,"15298":0.2953153153,"15299":0.2963063063,"15300":0.2972972973,"15301":0.2982882883,"15302":0.2992792793,"15303":0.3002702703,"15304":0.3012612613,"15305":0.3022522523,"15306":0.3032432432,"15307":0.3042342342,"15308":0.3052252252,"15309":0.3062162162,"15310":0.3072072072,"15311":0.3081981982,"15312":0.3091891892,"15313":0.3101801802,"15314":0.3111711712,"15315":0.3121621622,"15316":0.3131531532,"15317":0.3141441441,"15318":0.3151351351,"15319":0.3161261261,"15320":0.3171171171,"15321":0.3181081081,"15322":0.3190990991,"15323":0.3200900901,"15324":0.3210810811,"15325":0.3220720721,"15326":0.3230630631,"15327":0.3240540541,"15328":0.325045045,"15329":0.326036036,"15330":0.327027027,"15331":0.328018018,"15332":0.329009009,"15333":0.33,"15334":0.330990991,"15335":0.331981982,"15336":0.332972973,"15337":0.333963964,"15338":0.334954955,"15339":0.3359459459,"15340":0.3369369369,"15341":0.3379279279,"15342":0.3389189189,"15343":0.3399099099,"15344":0.3409009009,"15345":0.3418918919,"15346":0.3428828829,"15347":0.3438738739,"15348":0.3448648649,"15349":0.3458558559,"15350":0.3468468468,"15351":0.3478378378,"15352":0.3488288288,"15353":0.3498198198,"15354":0.3508108108,"15355":0.3518018018,"15356":0.3527927928,"15357":0.3537837838,"15358":0.3547747748,"15359":0.3557657658,"15360":0.3567567568,"15361":0.3577477477,"15362":0.3587387387,"15363":0.3597297297,"15364":0.3607207207,"15365":0.3617117117,"15366":0.3627027027,"15367":0.3636936937,"15368":0.3646846847,"15369":0.3656756757,"15370":0.3666666667,"15371":0.3676576577,"15372":0.3686486486,"15373":0.3696396396,"15374":0.3706306306,"15375":0.3716216216,"15376":0.3726126126,"15377":0.3736036036,"15378":0.3745945946,"15379":0.3755855856,"15380":0.3765765766,"15381":0.3775675676,"15382":0.3785585586,"15383":0.3795495495,"15384":0.3805405405,"15385":0.3815315315,"15386":0.3825225225,"15387":0.3835135135,"15388":0.3845045045,"15389":0.3854954955,"15390":0.3864864865,"15391":0.3874774775,"15392":0.3884684685,"15393":0.3894594595,"15394":0.3904504505,"15395":0.3914414414,"15396":0.3924324324,"15397":0.3934234234,"15398":0.3944144144,"15399":0.3954054054,"15400":0.3963963964,"15401":0.3973873874,"15402":0.3983783784,"15403":0.3993693694,"15404":0.4003603604,"15405":0.4013513514,"15406":0.4023423423,"15407":0.4033333333,"15408":0.4043243243,"15409":0.4053153153,"15410":0.4063063063,"15411":0.4072972973,"15412":0.4082882883,"15413":0.4092792793,"15414":0.4102702703,"15415":0.4112612613,"15416":0.4122522523,"15417":0.4132432432,"15418":0.4142342342,"15419":0.4152252252,"15420":0.4162162162,"15421":0.4172072072,"15422":0.4181981982,"15423":0.4191891892,"15424":0.4201801802,"15425":0.4211711712,"15426":0.4221621622,"15427":0.4231531532,"15428":0.4241441441,"15429":0.4251351351,"15430":0.4261261261,"15431":0.4271171171,"15432":0.4281081081,"15433":0.4290990991,"15434":0.4300900901,"15435":0.4310810811,"15436":0.4320720721,"15437":0.4330630631,"15438":0.4340540541,"15439":0.435045045,"15440":0.436036036,"15441":0.437027027,"15442":0.438018018,"15443":0.439009009,"15444":0.44,"15445":0.440990991,"15446":0.441981982,"15447":0.442972973,"15448":0.443963964,"15449":0.444954955,"15450":0.4459459459,"15451":0.4469369369,"15452":0.4479279279,"15453":0.4489189189,"15454":0.4499099099,"15455":0.4509009009,"15456":0.4518918919,"15457":0.4528828829,"15458":0.4538738739,"15459":0.4548648649,"15460":0.4558558559,"15461":0.4568468468,"15462":0.4578378378,"15463":0.4588288288,"15464":0.4598198198,"15465":0.4608108108,"15466":0.4618018018,"15467":0.4627927928,"15468":0.4637837838,"15469":0.4647747748,"15470":0.4657657658,"15471":0.4667567568,"15472":0.4677477477,"15473":0.4687387387,"15474":0.4697297297,"15475":0.4707207207,"15476":0.4717117117,"15477":0.4727027027,"15478":0.4736936937,"15479":0.4746846847,"15480":0.4756756757,"15481":0.4766666667,"15482":0.4776576577,"15483":0.4786486486,"15484":0.4796396396,"15485":0.4806306306,"15486":0.4816216216,"15487":0.4826126126,"15488":0.4836036036,"15489":0.4845945946,"15490":0.4855855856,"15491":0.4865765766,"15492":0.4875675676,"15493":0.4885585586,"15494":0.4895495495,"15495":0.4905405405,"15496":0.4915315315,"15497":0.4925225225,"15498":0.4935135135,"15499":0.4945045045,"15500":0.4954954955,"15501":0.4964864865,"15502":0.4974774775,"15503":0.4984684685,"15504":0.4994594595,"15505":0.5004504505,"15506":0.5014414414,"15507":0.5024324324,"15508":0.5034234234,"15509":0.5044144144,"15510":0.5054054054,"15511":0.5063963964,"15512":0.5073873874,"15513":0.5083783784,"15514":0.5093693694,"15515":0.5103603604,"15516":0.5113513514,"15517":0.5123423423,"15518":0.5133333333,"15519":0.5143243243,"15520":0.5153153153,"15521":0.5163063063,"15522":0.5172972973,"15523":0.5182882883,"15524":0.5192792793,"15525":0.5202702703,"15526":0.5212612613,"15527":0.5222522523,"15528":0.5232432432,"15529":0.5242342342,"15530":0.5252252252,"15531":0.5262162162,"15532":0.5272072072,"15533":0.5281981982,"15534":0.5291891892,"15535":0.5301801802,"15536":0.5311711712,"15537":0.5321621622,"15538":0.5331531532,"15539":0.5341441441,"15540":0.5351351351,"15541":0.5361261261,"15542":0.5371171171,"15543":0.5381081081,"15544":0.5390990991,"15545":0.5400900901,"15546":0.5410810811,"15547":0.5420720721,"15548":0.5430630631,"15549":0.5440540541,"15550":0.545045045,"15551":0.546036036,"15552":0.547027027,"15553":0.548018018,"15554":0.549009009,"15555":0.55,"15556":0.550990991,"15557":0.551981982,"15558":0.552972973,"15559":0.553963964,"15560":0.554954955,"15561":0.5559459459,"15562":0.5569369369,"15563":0.5579279279,"15564":0.5589189189,"15565":0.5599099099,"15566":0.5609009009,"15567":0.5618918919,"15568":0.5628828829,"15569":0.5638738739,"15570":0.5648648649,"15571":0.5658558559,"15572":0.5668468468,"15573":0.5678378378,"15574":0.5688288288,"15575":0.5698198198,"15576":0.5708108108,"15577":0.5718018018,"15578":0.5727927928,"15579":0.5737837838,"15580":0.5747747748,"15581":0.5757657658,"15582":0.5767567568,"15583":0.5777477477,"15584":0.5787387387,"15585":0.5797297297,"15586":0.5807207207,"15587":0.5817117117,"15588":0.5827027027,"15589":0.5836936937,"15590":0.5846846847,"15591":0.5856756757,"15592":0.5866666667,"15593":0.5876576577,"15594":0.5886486486,"15595":0.5896396396,"15596":0.5906306306,"15597":0.5916216216,"15598":0.5926126126,"15599":0.5936036036,"15600":0.5945945946,"15601":0.5955855856,"15602":0.5965765766,"15603":0.5975675676,"15604":0.5985585586,"15605":0.5995495495,"15606":0.6005405405,"15607":0.6015315315,"15608":0.6025225225,"15609":0.6035135135,"15610":0.6045045045,"15611":0.6054954955,"15612":0.6064864865,"15613":0.6074774775,"15614":0.6084684685,"15615":0.6094594595,"15616":0.6104504505,"15617":0.6114414414,"15618":0.6124324324,"15619":0.6134234234,"15620":0.6144144144,"15621":0.6154054054,"15622":0.6163963964,"15623":0.6173873874,"15624":0.6183783784,"15625":0.6193693694,"15626":0.6203603604,"15627":0.6213513514,"15628":0.6223423423,"15629":0.6233333333,"15630":0.6243243243,"15631":0.6253153153,"15632":0.6263063063,"15633":0.6272972973,"15634":0.6282882883,"15635":0.6292792793,"15636":0.6302702703,"15637":0.6312612613,"15638":0.6322522523,"15639":0.6332432432,"15640":0.6342342342,"15641":0.6352252252,"15642":0.6362162162,"15643":0.6372072072,"15644":0.6381981982,"15645":0.6391891892,"15646":0.6401801802,"15647":0.6411711712,"15648":0.6421621622,"15649":0.6431531532,"15650":0.6441441441,"15651":0.6451351351,"15652":0.6461261261,"15653":0.6471171171,"15654":0.6481081081,"15655":0.6490990991,"15656":0.6500900901,"15657":0.6510810811,"15658":0.6520720721,"15659":0.6530630631,"15660":0.6540540541,"15661":0.655045045,"15662":0.656036036,"15663":0.657027027,"15664":0.658018018,"15665":0.659009009,"15666":0.66,"15667":0.660990991,"15668":0.661981982,"15669":0.662972973,"15670":0.663963964,"15671":0.664954955,"15672":0.6659459459,"15673":0.6669369369,"15674":0.6679279279,"15675":0.6689189189,"15676":0.6699099099,"15677":0.6709009009,"15678":0.6718918919,"15679":0.6728828829,"15680":0.6738738739,"15681":0.6748648649,"15682":0.6758558559,"15683":0.6768468468,"15684":0.6778378378,"15685":0.6788288288,"15686":0.6798198198,"15687":0.6808108108,"15688":0.6818018018,"15689":0.6827927928,"15690":0.6837837838,"15691":0.6847747748,"15692":0.6857657658,"15693":0.6867567568,"15694":0.6877477477,"15695":0.6887387387,"15696":0.6897297297,"15697":0.6907207207,"15698":0.6917117117,"15699":0.6927027027,"15700":0.6936936937,"15701":0.6946846847,"15702":0.6956756757,"15703":0.6966666667,"15704":0.6976576577,"15705":0.6986486486,"15706":0.6996396396,"15707":0.7006306306,"15708":0.7016216216,"15709":0.7026126126,"15710":0.7036036036,"15711":0.7045945946,"15712":0.7055855856,"15713":0.7065765766,"15714":0.7075675676,"15715":0.7085585586,"15716":0.7095495495,"15717":0.7105405405,"15718":0.7115315315,"15719":0.7125225225,"15720":0.7135135135,"15721":0.7145045045,"15722":0.7154954955,"15723":0.7164864865,"15724":0.7174774775,"15725":0.7184684685,"15726":0.7194594595,"15727":0.7204504505,"15728":0.7214414414,"15729":0.7224324324,"15730":0.7234234234,"15731":0.7244144144,"15732":0.7254054054,"15733":0.7263963964,"15734":0.7273873874,"15735":0.7283783784,"15736":0.7293693694,"15737":0.7303603604,"15738":0.7313513514,"15739":0.7323423423,"15740":0.7333333333,"15741":0.7343243243,"15742":0.7353153153,"15743":0.7363063063,"15744":0.7372972973,"15745":0.7382882883,"15746":0.7392792793,"15747":0.7402702703,"15748":0.7412612613,"15749":0.7422522523,"15750":0.7432432432,"15751":0.7442342342,"15752":0.7452252252,"15753":0.7462162162,"15754":0.7472072072,"15755":0.7481981982,"15756":0.7491891892,"15757":0.7501801802,"15758":0.7511711712,"15759":0.7521621622,"15760":0.7531531532,"15761":0.7541441441,"15762":0.7551351351,"15763":0.7561261261,"15764":0.7571171171,"15765":0.7581081081,"15766":0.7590990991,"15767":0.7600900901,"15768":0.7610810811,"15769":0.7620720721,"15770":0.7630630631,"15771":0.7640540541,"15772":0.765045045,"15773":0.766036036,"15774":0.767027027,"15775":0.768018018,"15776":0.769009009,"15777":0.77,"15778":0.770990991,"15779":0.771981982,"15780":0.772972973,"15781":0.773963964,"15782":0.774954955,"15783":0.7759459459,"15784":0.7769369369,"15785":0.7779279279,"15786":0.7789189189,"15787":0.7799099099,"15788":0.7809009009,"15789":0.7818918919,"15790":0.7828828829,"15791":0.7838738739,"15792":0.7848648649,"15793":0.7858558559,"15794":0.7868468468,"15795":0.7878378378,"15796":0.7888288288,"15797":0.7898198198,"15798":0.7908108108,"15799":0.7918018018,"15800":0.7927927928,"15801":0.7937837838,"15802":0.7947747748,"15803":0.7957657658,"15804":0.7967567568,"15805":0.7977477477,"15806":0.7987387387,"15807":0.7997297297,"15808":0.8007207207,"15809":0.8017117117,"15810":0.8027027027,"15811":0.8036936937,"15812":0.8046846847,"15813":0.8056756757,"15814":0.8066666667,"15815":0.8076576577,"15816":0.8086486486,"15817":0.8096396396,"15818":0.8106306306,"15819":0.8116216216,"15820":0.8126126126,"15821":0.8136036036,"15822":0.8145945946,"15823":0.8155855856,"15824":0.8165765766,"15825":0.8175675676,"15826":0.8185585586,"15827":0.8195495495,"15828":0.8205405405,"15829":0.8215315315,"15830":0.8225225225,"15831":0.8235135135,"15832":0.8245045045,"15833":0.8254954955,"15834":0.8264864865,"15835":0.8274774775,"15836":0.8284684685,"15837":0.8294594595,"15838":0.8304504505,"15839":0.8314414414,"15840":0.8324324324,"15841":0.8334234234,"15842":0.8344144144,"15843":0.8354054054,"15844":0.8363963964,"15845":0.8373873874,"15846":0.8383783784,"15847":0.8393693694,"15848":0.8403603604,"15849":0.8413513514,"15850":0.8423423423,"15851":0.8433333333,"15852":0.8443243243,"15853":0.8453153153,"15854":0.8463063063,"15855":0.8472972973,"15856":0.8482882883,"15857":0.8492792793,"15858":0.8502702703,"15859":0.8512612613,"15860":0.8522522523,"15861":0.8532432432,"15862":0.8542342342,"15863":0.8552252252,"15864":0.8562162162,"15865":0.8572072072,"15866":0.8581981982,"15867":0.8591891892,"15868":0.8601801802,"15869":0.8611711712,"15870":0.8621621622,"15871":0.8631531532,"15872":0.8641441441,"15873":0.8651351351,"15874":0.8661261261,"15875":0.8671171171,"15876":0.8681081081,"15877":0.8690990991,"15878":0.8700900901,"15879":0.8710810811,"15880":0.8720720721,"15881":0.8730630631,"15882":0.8740540541,"15883":0.875045045,"15884":0.876036036,"15885":0.877027027,"15886":0.878018018,"15887":0.879009009,"15888":0.88,"15889":0.880990991,"15890":0.881981982,"15891":0.882972973,"15892":0.883963964,"15893":0.884954955,"15894":0.8859459459,"15895":0.8869369369,"15896":0.8879279279,"15897":0.8889189189,"15898":0.8899099099,"15899":0.8909009009,"15900":0.8918918919,"15901":0.8928828829,"15902":0.8938738739,"15903":0.8948648649,"15904":0.8958558559,"15905":0.8968468468,"15906":0.8978378378,"15907":0.8988288288,"15908":0.8998198198,"15909":0.9008108108,"15910":0.9018018018,"15911":0.9027927928,"15912":0.9037837838,"15913":0.9047747748,"15914":0.9057657658,"15915":0.9067567568,"15916":0.9077477477,"15917":0.9087387387,"15918":0.9097297297,"15919":0.9107207207,"15920":0.9117117117,"15921":0.9127027027,"15922":0.9136936937,"15923":0.9146846847,"15924":0.9156756757,"15925":0.9166666667,"15926":0.9176576577,"15927":0.9186486486,"15928":0.9196396396,"15929":0.9206306306,"15930":0.9216216216,"15931":0.9226126126,"15932":0.9236036036,"15933":0.9245945946,"15934":0.9255855856,"15935":0.9265765766,"15936":0.9275675676,"15937":0.9285585586,"15938":0.9295495495,"15939":0.9305405405,"15940":0.9315315315,"15941":0.9325225225,"15942":0.9335135135,"15943":0.9345045045,"15944":0.9354954955,"15945":0.9364864865,"15946":0.9374774775,"15947":0.9384684685,"15948":0.9394594595,"15949":0.9404504505,"15950":0.9414414414,"15951":0.9424324324,"15952":0.9434234234,"15953":0.9444144144,"15954":0.9454054054,"15955":0.9463963964,"15956":0.9473873874,"15957":0.9483783784,"15958":0.9493693694,"15959":0.9503603604,"15960":0.9513513514,"15961":0.9523423423,"15962":0.9533333333,"15963":0.9543243243,"15964":0.9553153153,"15965":0.9563063063,"15966":0.9572972973,"15967":0.9582882883,"15968":0.9592792793,"15969":0.9602702703,"15970":0.9612612613,"15971":0.9622522523,"15972":0.9632432432,"15973":0.9642342342,"15974":0.9652252252,"15975":0.9662162162,"15976":0.9672072072,"15977":0.9681981982,"15978":0.9691891892,"15979":0.9701801802,"15980":0.9711711712,"15981":0.9721621622,"15982":0.9731531532,"15983":0.9741441441,"15984":0.9751351351,"15985":0.9761261261,"15986":0.9771171171,"15987":0.9781081081,"15988":0.9790990991,"15989":0.9800900901,"15990":0.9810810811,"15991":0.9820720721,"15992":0.9830630631,"15993":0.9840540541,"15994":0.985045045,"15995":0.986036036,"15996":0.987027027,"15997":0.988018018,"15998":0.989009009,"15999":0.99,"16000":0.0,"16001":0.000990991,"16002":0.001981982,"16003":0.002972973,"16004":0.003963964,"16005":0.004954955,"16006":0.0059459459,"16007":0.0069369369,"16008":0.0079279279,"16009":0.0089189189,"16010":0.0099099099,"16011":0.0109009009,"16012":0.0118918919,"16013":0.0128828829,"16014":0.0138738739,"16015":0.0148648649,"16016":0.0158558559,"16017":0.0168468468,"16018":0.0178378378,"16019":0.0188288288,"16020":0.0198198198,"16021":0.0208108108,"16022":0.0218018018,"16023":0.0227927928,"16024":0.0237837838,"16025":0.0247747748,"16026":0.0257657658,"16027":0.0267567568,"16028":0.0277477477,"16029":0.0287387387,"16030":0.0297297297,"16031":0.0307207207,"16032":0.0317117117,"16033":0.0327027027,"16034":0.0336936937,"16035":0.0346846847,"16036":0.0356756757,"16037":0.0366666667,"16038":0.0376576577,"16039":0.0386486486,"16040":0.0396396396,"16041":0.0406306306,"16042":0.0416216216,"16043":0.0426126126,"16044":0.0436036036,"16045":0.0445945946,"16046":0.0455855856,"16047":0.0465765766,"16048":0.0475675676,"16049":0.0485585586,"16050":0.0495495495,"16051":0.0505405405,"16052":0.0515315315,"16053":0.0525225225,"16054":0.0535135135,"16055":0.0545045045,"16056":0.0554954955,"16057":0.0564864865,"16058":0.0574774775,"16059":0.0584684685,"16060":0.0594594595,"16061":0.0604504505,"16062":0.0614414414,"16063":0.0624324324,"16064":0.0634234234,"16065":0.0644144144,"16066":0.0654054054,"16067":0.0663963964,"16068":0.0673873874,"16069":0.0683783784,"16070":0.0693693694,"16071":0.0703603604,"16072":0.0713513514,"16073":0.0723423423,"16074":0.0733333333,"16075":0.0743243243,"16076":0.0753153153,"16077":0.0763063063,"16078":0.0772972973,"16079":0.0782882883,"16080":0.0792792793,"16081":0.0802702703,"16082":0.0812612613,"16083":0.0822522523,"16084":0.0832432432,"16085":0.0842342342,"16086":0.0852252252,"16087":0.0862162162,"16088":0.0872072072,"16089":0.0881981982,"16090":0.0891891892,"16091":0.0901801802,"16092":0.0911711712,"16093":0.0921621622,"16094":0.0931531532,"16095":0.0941441441,"16096":0.0951351351,"16097":0.0961261261,"16098":0.0971171171,"16099":0.0981081081,"16100":0.0990990991,"16101":0.1000900901,"16102":0.1010810811,"16103":0.1020720721,"16104":0.1030630631,"16105":0.1040540541,"16106":0.105045045,"16107":0.106036036,"16108":0.107027027,"16109":0.108018018,"16110":0.109009009,"16111":0.11,"16112":0.110990991,"16113":0.111981982,"16114":0.112972973,"16115":0.113963964,"16116":0.114954955,"16117":0.1159459459,"16118":0.1169369369,"16119":0.1179279279,"16120":0.1189189189,"16121":0.1199099099,"16122":0.1209009009,"16123":0.1218918919,"16124":0.1228828829,"16125":0.1238738739,"16126":0.1248648649,"16127":0.1258558559,"16128":0.1268468468,"16129":0.1278378378,"16130":0.1288288288,"16131":0.1298198198,"16132":0.1308108108,"16133":0.1318018018,"16134":0.1327927928,"16135":0.1337837838,"16136":0.1347747748,"16137":0.1357657658,"16138":0.1367567568,"16139":0.1377477477,"16140":0.1387387387,"16141":0.1397297297,"16142":0.1407207207,"16143":0.1417117117,"16144":0.1427027027,"16145":0.1436936937,"16146":0.1446846847,"16147":0.1456756757,"16148":0.1466666667,"16149":0.1476576577,"16150":0.1486486486,"16151":0.1496396396,"16152":0.1506306306,"16153":0.1516216216,"16154":0.1526126126,"16155":0.1536036036,"16156":0.1545945946,"16157":0.1555855856,"16158":0.1565765766,"16159":0.1575675676,"16160":0.1585585586,"16161":0.1595495495,"16162":0.1605405405,"16163":0.1615315315,"16164":0.1625225225,"16165":0.1635135135,"16166":0.1645045045,"16167":0.1654954955,"16168":0.1664864865,"16169":0.1674774775,"16170":0.1684684685,"16171":0.1694594595,"16172":0.1704504505,"16173":0.1714414414,"16174":0.1724324324,"16175":0.1734234234,"16176":0.1744144144,"16177":0.1754054054,"16178":0.1763963964,"16179":0.1773873874,"16180":0.1783783784,"16181":0.1793693694,"16182":0.1803603604,"16183":0.1813513514,"16184":0.1823423423,"16185":0.1833333333,"16186":0.1843243243,"16187":0.1853153153,"16188":0.1863063063,"16189":0.1872972973,"16190":0.1882882883,"16191":0.1892792793,"16192":0.1902702703,"16193":0.1912612613,"16194":0.1922522523,"16195":0.1932432432,"16196":0.1942342342,"16197":0.1952252252,"16198":0.1962162162,"16199":0.1972072072,"16200":0.1981981982,"16201":0.1991891892,"16202":0.2001801802,"16203":0.2011711712,"16204":0.2021621622,"16205":0.2031531532,"16206":0.2041441441,"16207":0.2051351351,"16208":0.2061261261,"16209":0.2071171171,"16210":0.2081081081,"16211":0.2090990991,"16212":0.2100900901,"16213":0.2110810811,"16214":0.2120720721,"16215":0.2130630631,"16216":0.2140540541,"16217":0.215045045,"16218":0.216036036,"16219":0.217027027,"16220":0.218018018,"16221":0.219009009,"16222":0.22,"16223":0.220990991,"16224":0.221981982,"16225":0.222972973,"16226":0.223963964,"16227":0.224954955,"16228":0.2259459459,"16229":0.2269369369,"16230":0.2279279279,"16231":0.2289189189,"16232":0.2299099099,"16233":0.2309009009,"16234":0.2318918919,"16235":0.2328828829,"16236":0.2338738739,"16237":0.2348648649,"16238":0.2358558559,"16239":0.2368468468,"16240":0.2378378378,"16241":0.2388288288,"16242":0.2398198198,"16243":0.2408108108,"16244":0.2418018018,"16245":0.2427927928,"16246":0.2437837838,"16247":0.2447747748,"16248":0.2457657658,"16249":0.2467567568,"16250":0.2477477477,"16251":0.2487387387,"16252":0.2497297297,"16253":0.2507207207,"16254":0.2517117117,"16255":0.2527027027,"16256":0.2536936937,"16257":0.2546846847,"16258":0.2556756757,"16259":0.2566666667,"16260":0.2576576577,"16261":0.2586486486,"16262":0.2596396396,"16263":0.2606306306,"16264":0.2616216216,"16265":0.2626126126,"16266":0.2636036036,"16267":0.2645945946,"16268":0.2655855856,"16269":0.2665765766,"16270":0.2675675676,"16271":0.2685585586,"16272":0.2695495495,"16273":0.2705405405,"16274":0.2715315315,"16275":0.2725225225,"16276":0.2735135135,"16277":0.2745045045,"16278":0.2754954955,"16279":0.2764864865,"16280":0.2774774775,"16281":0.2784684685,"16282":0.2794594595,"16283":0.2804504505,"16284":0.2814414414,"16285":0.2824324324,"16286":0.2834234234,"16287":0.2844144144,"16288":0.2854054054,"16289":0.2863963964,"16290":0.2873873874,"16291":0.2883783784,"16292":0.2893693694,"16293":0.2903603604,"16294":0.2913513514,"16295":0.2923423423,"16296":0.2933333333,"16297":0.2943243243,"16298":0.2953153153,"16299":0.2963063063,"16300":0.2972972973,"16301":0.2982882883,"16302":0.2992792793,"16303":0.3002702703,"16304":0.3012612613,"16305":0.3022522523,"16306":0.3032432432,"16307":0.3042342342,"16308":0.3052252252,"16309":0.3062162162,"16310":0.3072072072,"16311":0.3081981982,"16312":0.3091891892,"16313":0.3101801802,"16314":0.3111711712,"16315":0.3121621622,"16316":0.3131531532,"16317":0.3141441441,"16318":0.3151351351,"16319":0.3161261261,"16320":0.3171171171,"16321":0.3181081081,"16322":0.3190990991,"16323":0.3200900901,"16324":0.3210810811,"16325":0.3220720721,"16326":0.3230630631,"16327":0.3240540541,"16328":0.325045045,"16329":0.326036036,"16330":0.327027027,"16331":0.328018018,"16332":0.329009009,"16333":0.33,"16334":0.330990991,"16335":0.331981982,"16336":0.332972973,"16337":0.333963964,"16338":0.334954955,"16339":0.3359459459,"16340":0.3369369369,"16341":0.3379279279,"16342":0.3389189189,"16343":0.3399099099,"16344":0.3409009009,"16345":0.3418918919,"16346":0.3428828829,"16347":0.3438738739,"16348":0.3448648649,"16349":0.3458558559,"16350":0.3468468468,"16351":0.3478378378,"16352":0.3488288288,"16353":0.3498198198,"16354":0.3508108108,"16355":0.3518018018,"16356":0.3527927928,"16357":0.3537837838,"16358":0.3547747748,"16359":0.3557657658,"16360":0.3567567568,"16361":0.3577477477,"16362":0.3587387387,"16363":0.3597297297,"16364":0.3607207207,"16365":0.3617117117,"16366":0.3627027027,"16367":0.3636936937,"16368":0.3646846847,"16369":0.3656756757,"16370":0.3666666667,"16371":0.3676576577,"16372":0.3686486486,"16373":0.3696396396,"16374":0.3706306306,"16375":0.3716216216,"16376":0.3726126126,"16377":0.3736036036,"16378":0.3745945946,"16379":0.3755855856,"16380":0.3765765766,"16381":0.3775675676,"16382":0.3785585586,"16383":0.3795495495,"16384":0.3805405405,"16385":0.3815315315,"16386":0.3825225225,"16387":0.3835135135,"16388":0.3845045045,"16389":0.3854954955,"16390":0.3864864865,"16391":0.3874774775,"16392":0.3884684685,"16393":0.3894594595,"16394":0.3904504505,"16395":0.3914414414,"16396":0.3924324324,"16397":0.3934234234,"16398":0.3944144144,"16399":0.3954054054,"16400":0.3963963964,"16401":0.3973873874,"16402":0.3983783784,"16403":0.3993693694,"16404":0.4003603604,"16405":0.4013513514,"16406":0.4023423423,"16407":0.4033333333,"16408":0.4043243243,"16409":0.4053153153,"16410":0.4063063063,"16411":0.4072972973,"16412":0.4082882883,"16413":0.4092792793,"16414":0.4102702703,"16415":0.4112612613,"16416":0.4122522523,"16417":0.4132432432,"16418":0.4142342342,"16419":0.4152252252,"16420":0.4162162162,"16421":0.4172072072,"16422":0.4181981982,"16423":0.4191891892,"16424":0.4201801802,"16425":0.4211711712,"16426":0.4221621622,"16427":0.4231531532,"16428":0.4241441441,"16429":0.4251351351,"16430":0.4261261261,"16431":0.4271171171,"16432":0.4281081081,"16433":0.4290990991,"16434":0.4300900901,"16435":0.4310810811,"16436":0.4320720721,"16437":0.4330630631,"16438":0.4340540541,"16439":0.435045045,"16440":0.436036036,"16441":0.437027027,"16442":0.438018018,"16443":0.439009009,"16444":0.44,"16445":0.440990991,"16446":0.441981982,"16447":0.442972973,"16448":0.443963964,"16449":0.444954955,"16450":0.4459459459,"16451":0.4469369369,"16452":0.4479279279,"16453":0.4489189189,"16454":0.4499099099,"16455":0.4509009009,"16456":0.4518918919,"16457":0.4528828829,"16458":0.4538738739,"16459":0.4548648649,"16460":0.4558558559,"16461":0.4568468468,"16462":0.4578378378,"16463":0.4588288288,"16464":0.4598198198,"16465":0.4608108108,"16466":0.4618018018,"16467":0.4627927928,"16468":0.4637837838,"16469":0.4647747748,"16470":0.4657657658,"16471":0.4667567568,"16472":0.4677477477,"16473":0.4687387387,"16474":0.4697297297,"16475":0.4707207207,"16476":0.4717117117,"16477":0.4727027027,"16478":0.4736936937,"16479":0.4746846847,"16480":0.4756756757,"16481":0.4766666667,"16482":0.4776576577,"16483":0.4786486486,"16484":0.4796396396,"16485":0.4806306306,"16486":0.4816216216,"16487":0.4826126126,"16488":0.4836036036,"16489":0.4845945946,"16490":0.4855855856,"16491":0.4865765766,"16492":0.4875675676,"16493":0.4885585586,"16494":0.4895495495,"16495":0.4905405405,"16496":0.4915315315,"16497":0.4925225225,"16498":0.4935135135,"16499":0.4945045045,"16500":0.4954954955,"16501":0.4964864865,"16502":0.4974774775,"16503":0.4984684685,"16504":0.4994594595,"16505":0.5004504505,"16506":0.5014414414,"16507":0.5024324324,"16508":0.5034234234,"16509":0.5044144144,"16510":0.5054054054,"16511":0.5063963964,"16512":0.5073873874,"16513":0.5083783784,"16514":0.5093693694,"16515":0.5103603604,"16516":0.5113513514,"16517":0.5123423423,"16518":0.5133333333,"16519":0.5143243243,"16520":0.5153153153,"16521":0.5163063063,"16522":0.5172972973,"16523":0.5182882883,"16524":0.5192792793,"16525":0.5202702703,"16526":0.5212612613,"16527":0.5222522523,"16528":0.5232432432,"16529":0.5242342342,"16530":0.5252252252,"16531":0.5262162162,"16532":0.5272072072,"16533":0.5281981982,"16534":0.5291891892,"16535":0.5301801802,"16536":0.5311711712,"16537":0.5321621622,"16538":0.5331531532,"16539":0.5341441441,"16540":0.5351351351,"16541":0.5361261261,"16542":0.5371171171,"16543":0.5381081081,"16544":0.5390990991,"16545":0.5400900901,"16546":0.5410810811,"16547":0.5420720721,"16548":0.5430630631,"16549":0.5440540541,"16550":0.545045045,"16551":0.546036036,"16552":0.547027027,"16553":0.548018018,"16554":0.549009009,"16555":0.55,"16556":0.550990991,"16557":0.551981982,"16558":0.552972973,"16559":0.553963964,"16560":0.554954955,"16561":0.5559459459,"16562":0.5569369369,"16563":0.5579279279,"16564":0.5589189189,"16565":0.5599099099,"16566":0.5609009009,"16567":0.5618918919,"16568":0.5628828829,"16569":0.5638738739,"16570":0.5648648649,"16571":0.5658558559,"16572":0.5668468468,"16573":0.5678378378,"16574":0.5688288288,"16575":0.5698198198,"16576":0.5708108108,"16577":0.5718018018,"16578":0.5727927928,"16579":0.5737837838,"16580":0.5747747748,"16581":0.5757657658,"16582":0.5767567568,"16583":0.5777477477,"16584":0.5787387387,"16585":0.5797297297,"16586":0.5807207207,"16587":0.5817117117,"16588":0.5827027027,"16589":0.5836936937,"16590":0.5846846847,"16591":0.5856756757,"16592":0.5866666667,"16593":0.5876576577,"16594":0.5886486486,"16595":0.5896396396,"16596":0.5906306306,"16597":0.5916216216,"16598":0.5926126126,"16599":0.5936036036,"16600":0.5945945946,"16601":0.5955855856,"16602":0.5965765766,"16603":0.5975675676,"16604":0.5985585586,"16605":0.5995495495,"16606":0.6005405405,"16607":0.6015315315,"16608":0.6025225225,"16609":0.6035135135,"16610":0.6045045045,"16611":0.6054954955,"16612":0.6064864865,"16613":0.6074774775,"16614":0.6084684685,"16615":0.6094594595,"16616":0.6104504505,"16617":0.6114414414,"16618":0.6124324324,"16619":0.6134234234,"16620":0.6144144144,"16621":0.6154054054,"16622":0.6163963964,"16623":0.6173873874,"16624":0.6183783784,"16625":0.6193693694,"16626":0.6203603604,"16627":0.6213513514,"16628":0.6223423423,"16629":0.6233333333,"16630":0.6243243243,"16631":0.6253153153,"16632":0.6263063063,"16633":0.6272972973,"16634":0.6282882883,"16635":0.6292792793,"16636":0.6302702703,"16637":0.6312612613,"16638":0.6322522523,"16639":0.6332432432,"16640":0.6342342342,"16641":0.6352252252,"16642":0.6362162162,"16643":0.6372072072,"16644":0.6381981982,"16645":0.6391891892,"16646":0.6401801802,"16647":0.6411711712,"16648":0.6421621622,"16649":0.6431531532,"16650":0.6441441441,"16651":0.6451351351,"16652":0.6461261261,"16653":0.6471171171,"16654":0.6481081081,"16655":0.6490990991,"16656":0.6500900901,"16657":0.6510810811,"16658":0.6520720721,"16659":0.6530630631,"16660":0.6540540541,"16661":0.655045045,"16662":0.656036036,"16663":0.657027027,"16664":0.658018018,"16665":0.659009009,"16666":0.66,"16667":0.660990991,"16668":0.661981982,"16669":0.662972973,"16670":0.663963964,"16671":0.664954955,"16672":0.6659459459,"16673":0.6669369369,"16674":0.6679279279,"16675":0.6689189189,"16676":0.6699099099,"16677":0.6709009009,"16678":0.6718918919,"16679":0.6728828829,"16680":0.6738738739,"16681":0.6748648649,"16682":0.6758558559,"16683":0.6768468468,"16684":0.6778378378,"16685":0.6788288288,"16686":0.6798198198,"16687":0.6808108108,"16688":0.6818018018,"16689":0.6827927928,"16690":0.6837837838,"16691":0.6847747748,"16692":0.6857657658,"16693":0.6867567568,"16694":0.6877477477,"16695":0.6887387387,"16696":0.6897297297,"16697":0.6907207207,"16698":0.6917117117,"16699":0.6927027027,"16700":0.6936936937,"16701":0.6946846847,"16702":0.6956756757,"16703":0.6966666667,"16704":0.6976576577,"16705":0.6986486486,"16706":0.6996396396,"16707":0.7006306306,"16708":0.7016216216,"16709":0.7026126126,"16710":0.7036036036,"16711":0.7045945946,"16712":0.7055855856,"16713":0.7065765766,"16714":0.7075675676,"16715":0.7085585586,"16716":0.7095495495,"16717":0.7105405405,"16718":0.7115315315,"16719":0.7125225225,"16720":0.7135135135,"16721":0.7145045045,"16722":0.7154954955,"16723":0.7164864865,"16724":0.7174774775,"16725":0.7184684685,"16726":0.7194594595,"16727":0.7204504505,"16728":0.7214414414,"16729":0.7224324324,"16730":0.7234234234,"16731":0.7244144144,"16732":0.7254054054,"16733":0.7263963964,"16734":0.7273873874,"16735":0.7283783784,"16736":0.7293693694,"16737":0.7303603604,"16738":0.7313513514,"16739":0.7323423423,"16740":0.7333333333,"16741":0.7343243243,"16742":0.7353153153,"16743":0.7363063063,"16744":0.7372972973,"16745":0.7382882883,"16746":0.7392792793,"16747":0.7402702703,"16748":0.7412612613,"16749":0.7422522523,"16750":0.7432432432,"16751":0.7442342342,"16752":0.7452252252,"16753":0.7462162162,"16754":0.7472072072,"16755":0.7481981982,"16756":0.7491891892,"16757":0.7501801802,"16758":0.7511711712,"16759":0.7521621622,"16760":0.7531531532,"16761":0.7541441441,"16762":0.7551351351,"16763":0.7561261261,"16764":0.7571171171,"16765":0.7581081081,"16766":0.7590990991,"16767":0.7600900901,"16768":0.7610810811,"16769":0.7620720721,"16770":0.7630630631,"16771":0.7640540541,"16772":0.765045045,"16773":0.766036036,"16774":0.767027027,"16775":0.768018018,"16776":0.769009009,"16777":0.77,"16778":0.770990991,"16779":0.771981982,"16780":0.772972973,"16781":0.773963964,"16782":0.774954955,"16783":0.7759459459,"16784":0.7769369369,"16785":0.7779279279,"16786":0.7789189189,"16787":0.7799099099,"16788":0.7809009009,"16789":0.7818918919,"16790":0.7828828829,"16791":0.7838738739,"16792":0.7848648649,"16793":0.7858558559,"16794":0.7868468468,"16795":0.7878378378,"16796":0.7888288288,"16797":0.7898198198,"16798":0.7908108108,"16799":0.7918018018,"16800":0.7927927928,"16801":0.7937837838,"16802":0.7947747748,"16803":0.7957657658,"16804":0.7967567568,"16805":0.7977477477,"16806":0.7987387387,"16807":0.7997297297,"16808":0.8007207207,"16809":0.8017117117,"16810":0.8027027027,"16811":0.8036936937,"16812":0.8046846847,"16813":0.8056756757,"16814":0.8066666667,"16815":0.8076576577,"16816":0.8086486486,"16817":0.8096396396,"16818":0.8106306306,"16819":0.8116216216,"16820":0.8126126126,"16821":0.8136036036,"16822":0.8145945946,"16823":0.8155855856,"16824":0.8165765766,"16825":0.8175675676,"16826":0.8185585586,"16827":0.8195495495,"16828":0.8205405405,"16829":0.8215315315,"16830":0.8225225225,"16831":0.8235135135,"16832":0.8245045045,"16833":0.8254954955,"16834":0.8264864865,"16835":0.8274774775,"16836":0.8284684685,"16837":0.8294594595,"16838":0.8304504505,"16839":0.8314414414,"16840":0.8324324324,"16841":0.8334234234,"16842":0.8344144144,"16843":0.8354054054,"16844":0.8363963964,"16845":0.8373873874,"16846":0.8383783784,"16847":0.8393693694,"16848":0.8403603604,"16849":0.8413513514,"16850":0.8423423423,"16851":0.8433333333,"16852":0.8443243243,"16853":0.8453153153,"16854":0.8463063063,"16855":0.8472972973,"16856":0.8482882883,"16857":0.8492792793,"16858":0.8502702703,"16859":0.8512612613,"16860":0.8522522523,"16861":0.8532432432,"16862":0.8542342342,"16863":0.8552252252,"16864":0.8562162162,"16865":0.8572072072,"16866":0.8581981982,"16867":0.8591891892,"16868":0.8601801802,"16869":0.8611711712,"16870":0.8621621622,"16871":0.8631531532,"16872":0.8641441441,"16873":0.8651351351,"16874":0.8661261261,"16875":0.8671171171,"16876":0.8681081081,"16877":0.8690990991,"16878":0.8700900901,"16879":0.8710810811,"16880":0.8720720721,"16881":0.8730630631,"16882":0.8740540541,"16883":0.875045045,"16884":0.876036036,"16885":0.877027027,"16886":0.878018018,"16887":0.879009009,"16888":0.88,"16889":0.880990991,"16890":0.881981982,"16891":0.882972973,"16892":0.883963964,"16893":0.884954955,"16894":0.8859459459,"16895":0.8869369369,"16896":0.8879279279,"16897":0.8889189189,"16898":0.8899099099,"16899":0.8909009009,"16900":0.8918918919,"16901":0.8928828829,"16902":0.8938738739,"16903":0.8948648649,"16904":0.8958558559,"16905":0.8968468468,"16906":0.8978378378,"16907":0.8988288288,"16908":0.8998198198,"16909":0.9008108108,"16910":0.9018018018,"16911":0.9027927928,"16912":0.9037837838,"16913":0.9047747748,"16914":0.9057657658,"16915":0.9067567568,"16916":0.9077477477,"16917":0.9087387387,"16918":0.9097297297,"16919":0.9107207207,"16920":0.9117117117,"16921":0.9127027027,"16922":0.9136936937,"16923":0.9146846847,"16924":0.9156756757,"16925":0.9166666667,"16926":0.9176576577,"16927":0.9186486486,"16928":0.9196396396,"16929":0.9206306306,"16930":0.9216216216,"16931":0.9226126126,"16932":0.9236036036,"16933":0.9245945946,"16934":0.9255855856,"16935":0.9265765766,"16936":0.9275675676,"16937":0.9285585586,"16938":0.9295495495,"16939":0.9305405405,"16940":0.9315315315,"16941":0.9325225225,"16942":0.9335135135,"16943":0.9345045045,"16944":0.9354954955,"16945":0.9364864865,"16946":0.9374774775,"16947":0.9384684685,"16948":0.9394594595,"16949":0.9404504505,"16950":0.9414414414,"16951":0.9424324324,"16952":0.9434234234,"16953":0.9444144144,"16954":0.9454054054,"16955":0.9463963964,"16956":0.9473873874,"16957":0.9483783784,"16958":0.9493693694,"16959":0.9503603604,"16960":0.9513513514,"16961":0.9523423423,"16962":0.9533333333,"16963":0.9543243243,"16964":0.9553153153,"16965":0.9563063063,"16966":0.9572972973,"16967":0.9582882883,"16968":0.9592792793,"16969":0.9602702703,"16970":0.9612612613,"16971":0.9622522523,"16972":0.9632432432,"16973":0.9642342342,"16974":0.9652252252,"16975":0.9662162162,"16976":0.9672072072,"16977":0.9681981982,"16978":0.9691891892,"16979":0.9701801802,"16980":0.9711711712,"16981":0.9721621622,"16982":0.9731531532,"16983":0.9741441441,"16984":0.9751351351,"16985":0.9761261261,"16986":0.9771171171,"16987":0.9781081081,"16988":0.9790990991,"16989":0.9800900901,"16990":0.9810810811,"16991":0.9820720721,"16992":0.9830630631,"16993":0.9840540541,"16994":0.985045045,"16995":0.986036036,"16996":0.987027027,"16997":0.988018018,"16998":0.989009009,"16999":0.99,"17000":0.0,"17001":0.000990991,"17002":0.001981982,"17003":0.002972973,"17004":0.003963964,"17005":0.004954955,"17006":0.0059459459,"17007":0.0069369369,"17008":0.0079279279,"17009":0.0089189189,"17010":0.0099099099,"17011":0.0109009009,"17012":0.0118918919,"17013":0.0128828829,"17014":0.0138738739,"17015":0.0148648649,"17016":0.0158558559,"17017":0.0168468468,"17018":0.0178378378,"17019":0.0188288288,"17020":0.0198198198,"17021":0.0208108108,"17022":0.0218018018,"17023":0.0227927928,"17024":0.0237837838,"17025":0.0247747748,"17026":0.0257657658,"17027":0.0267567568,"17028":0.0277477477,"17029":0.0287387387,"17030":0.0297297297,"17031":0.0307207207,"17032":0.0317117117,"17033":0.0327027027,"17034":0.0336936937,"17035":0.0346846847,"17036":0.0356756757,"17037":0.0366666667,"17038":0.0376576577,"17039":0.0386486486,"17040":0.0396396396,"17041":0.0406306306,"17042":0.0416216216,"17043":0.0426126126,"17044":0.0436036036,"17045":0.0445945946,"17046":0.0455855856,"17047":0.0465765766,"17048":0.0475675676,"17049":0.0485585586,"17050":0.0495495495,"17051":0.0505405405,"17052":0.0515315315,"17053":0.0525225225,"17054":0.0535135135,"17055":0.0545045045,"17056":0.0554954955,"17057":0.0564864865,"17058":0.0574774775,"17059":0.0584684685,"17060":0.0594594595,"17061":0.0604504505,"17062":0.0614414414,"17063":0.0624324324,"17064":0.0634234234,"17065":0.0644144144,"17066":0.0654054054,"17067":0.0663963964,"17068":0.0673873874,"17069":0.0683783784,"17070":0.0693693694,"17071":0.0703603604,"17072":0.0713513514,"17073":0.0723423423,"17074":0.0733333333,"17075":0.0743243243,"17076":0.0753153153,"17077":0.0763063063,"17078":0.0772972973,"17079":0.0782882883,"17080":0.0792792793,"17081":0.0802702703,"17082":0.0812612613,"17083":0.0822522523,"17084":0.0832432432,"17085":0.0842342342,"17086":0.0852252252,"17087":0.0862162162,"17088":0.0872072072,"17089":0.0881981982,"17090":0.0891891892,"17091":0.0901801802,"17092":0.0911711712,"17093":0.0921621622,"17094":0.0931531532,"17095":0.0941441441,"17096":0.0951351351,"17097":0.0961261261,"17098":0.0971171171,"17099":0.0981081081,"17100":0.0990990991,"17101":0.1000900901,"17102":0.1010810811,"17103":0.1020720721,"17104":0.1030630631,"17105":0.1040540541,"17106":0.105045045,"17107":0.106036036,"17108":0.107027027,"17109":0.108018018,"17110":0.109009009,"17111":0.11,"17112":0.110990991,"17113":0.111981982,"17114":0.112972973,"17115":0.113963964,"17116":0.114954955,"17117":0.1159459459,"17118":0.1169369369,"17119":0.1179279279,"17120":0.1189189189,"17121":0.1199099099,"17122":0.1209009009,"17123":0.1218918919,"17124":0.1228828829,"17125":0.1238738739,"17126":0.1248648649,"17127":0.1258558559,"17128":0.1268468468,"17129":0.1278378378,"17130":0.1288288288,"17131":0.1298198198,"17132":0.1308108108,"17133":0.1318018018,"17134":0.1327927928,"17135":0.1337837838,"17136":0.1347747748,"17137":0.1357657658,"17138":0.1367567568,"17139":0.1377477477,"17140":0.1387387387,"17141":0.1397297297,"17142":0.1407207207,"17143":0.1417117117,"17144":0.1427027027,"17145":0.1436936937,"17146":0.1446846847,"17147":0.1456756757,"17148":0.1466666667,"17149":0.1476576577,"17150":0.1486486486,"17151":0.1496396396,"17152":0.1506306306,"17153":0.1516216216,"17154":0.1526126126,"17155":0.1536036036,"17156":0.1545945946,"17157":0.1555855856,"17158":0.1565765766,"17159":0.1575675676,"17160":0.1585585586,"17161":0.1595495495,"17162":0.1605405405,"17163":0.1615315315,"17164":0.1625225225,"17165":0.1635135135,"17166":0.1645045045,"17167":0.1654954955,"17168":0.1664864865,"17169":0.1674774775,"17170":0.1684684685,"17171":0.1694594595,"17172":0.1704504505,"17173":0.1714414414,"17174":0.1724324324,"17175":0.1734234234,"17176":0.1744144144,"17177":0.1754054054,"17178":0.1763963964,"17179":0.1773873874,"17180":0.1783783784,"17181":0.1793693694,"17182":0.1803603604,"17183":0.1813513514,"17184":0.1823423423,"17185":0.1833333333,"17186":0.1843243243,"17187":0.1853153153,"17188":0.1863063063,"17189":0.1872972973,"17190":0.1882882883,"17191":0.1892792793,"17192":0.1902702703,"17193":0.1912612613,"17194":0.1922522523,"17195":0.1932432432,"17196":0.1942342342,"17197":0.1952252252,"17198":0.1962162162,"17199":0.1972072072,"17200":0.1981981982,"17201":0.1991891892,"17202":0.2001801802,"17203":0.2011711712,"17204":0.2021621622,"17205":0.2031531532,"17206":0.2041441441,"17207":0.2051351351,"17208":0.2061261261,"17209":0.2071171171,"17210":0.2081081081,"17211":0.2090990991,"17212":0.2100900901,"17213":0.2110810811,"17214":0.2120720721,"17215":0.2130630631,"17216":0.2140540541,"17217":0.215045045,"17218":0.216036036,"17219":0.217027027,"17220":0.218018018,"17221":0.219009009,"17222":0.22,"17223":0.220990991,"17224":0.221981982,"17225":0.222972973,"17226":0.223963964,"17227":0.224954955,"17228":0.2259459459,"17229":0.2269369369,"17230":0.2279279279,"17231":0.2289189189,"17232":0.2299099099,"17233":0.2309009009,"17234":0.2318918919,"17235":0.2328828829,"17236":0.2338738739,"17237":0.2348648649,"17238":0.2358558559,"17239":0.2368468468,"17240":0.2378378378,"17241":0.2388288288,"17242":0.2398198198,"17243":0.2408108108,"17244":0.2418018018,"17245":0.2427927928,"17246":0.2437837838,"17247":0.2447747748,"17248":0.2457657658,"17249":0.2467567568,"17250":0.2477477477,"17251":0.2487387387,"17252":0.2497297297,"17253":0.2507207207,"17254":0.2517117117,"17255":0.2527027027,"17256":0.2536936937,"17257":0.2546846847,"17258":0.2556756757,"17259":0.2566666667,"17260":0.2576576577,"17261":0.2586486486,"17262":0.2596396396,"17263":0.2606306306,"17264":0.2616216216,"17265":0.2626126126,"17266":0.2636036036,"17267":0.2645945946,"17268":0.2655855856,"17269":0.2665765766,"17270":0.2675675676,"17271":0.2685585586,"17272":0.2695495495,"17273":0.2705405405,"17274":0.2715315315,"17275":0.2725225225,"17276":0.2735135135,"17277":0.2745045045,"17278":0.2754954955,"17279":0.2764864865,"17280":0.2774774775,"17281":0.2784684685,"17282":0.2794594595,"17283":0.2804504505,"17284":0.2814414414,"17285":0.2824324324,"17286":0.2834234234,"17287":0.2844144144,"17288":0.2854054054,"17289":0.2863963964,"17290":0.2873873874,"17291":0.2883783784,"17292":0.2893693694,"17293":0.2903603604,"17294":0.2913513514,"17295":0.2923423423,"17296":0.2933333333,"17297":0.2943243243,"17298":0.2953153153,"17299":0.2963063063,"17300":0.2972972973,"17301":0.2982882883,"17302":0.2992792793,"17303":0.3002702703,"17304":0.3012612613,"17305":0.3022522523,"17306":0.3032432432,"17307":0.3042342342,"17308":0.3052252252,"17309":0.3062162162,"17310":0.3072072072,"17311":0.3081981982,"17312":0.3091891892,"17313":0.3101801802,"17314":0.3111711712,"17315":0.3121621622,"17316":0.3131531532,"17317":0.3141441441,"17318":0.3151351351,"17319":0.3161261261,"17320":0.3171171171,"17321":0.3181081081,"17322":0.3190990991,"17323":0.3200900901,"17324":0.3210810811,"17325":0.3220720721,"17326":0.3230630631,"17327":0.3240540541,"17328":0.325045045,"17329":0.326036036,"17330":0.327027027,"17331":0.328018018,"17332":0.329009009,"17333":0.33,"17334":0.330990991,"17335":0.331981982,"17336":0.332972973,"17337":0.333963964,"17338":0.334954955,"17339":0.3359459459,"17340":0.3369369369,"17341":0.3379279279,"17342":0.3389189189,"17343":0.3399099099,"17344":0.3409009009,"17345":0.3418918919,"17346":0.3428828829,"17347":0.3438738739,"17348":0.3448648649,"17349":0.3458558559,"17350":0.3468468468,"17351":0.3478378378,"17352":0.3488288288,"17353":0.3498198198,"17354":0.3508108108,"17355":0.3518018018,"17356":0.3527927928,"17357":0.3537837838,"17358":0.3547747748,"17359":0.3557657658,"17360":0.3567567568,"17361":0.3577477477,"17362":0.3587387387,"17363":0.3597297297,"17364":0.3607207207,"17365":0.3617117117,"17366":0.3627027027,"17367":0.3636936937,"17368":0.3646846847,"17369":0.3656756757,"17370":0.3666666667,"17371":0.3676576577,"17372":0.3686486486,"17373":0.3696396396,"17374":0.3706306306,"17375":0.3716216216,"17376":0.3726126126,"17377":0.3736036036,"17378":0.3745945946,"17379":0.3755855856,"17380":0.3765765766,"17381":0.3775675676,"17382":0.3785585586,"17383":0.3795495495,"17384":0.3805405405,"17385":0.3815315315,"17386":0.3825225225,"17387":0.3835135135,"17388":0.3845045045,"17389":0.3854954955,"17390":0.3864864865,"17391":0.3874774775,"17392":0.3884684685,"17393":0.3894594595,"17394":0.3904504505,"17395":0.3914414414,"17396":0.3924324324,"17397":0.3934234234,"17398":0.3944144144,"17399":0.3954054054,"17400":0.3963963964,"17401":0.3973873874,"17402":0.3983783784,"17403":0.3993693694,"17404":0.4003603604,"17405":0.4013513514,"17406":0.4023423423,"17407":0.4033333333,"17408":0.4043243243,"17409":0.4053153153,"17410":0.4063063063,"17411":0.4072972973,"17412":0.4082882883,"17413":0.4092792793,"17414":0.4102702703,"17415":0.4112612613,"17416":0.4122522523,"17417":0.4132432432,"17418":0.4142342342,"17419":0.4152252252,"17420":0.4162162162,"17421":0.4172072072,"17422":0.4181981982,"17423":0.4191891892,"17424":0.4201801802,"17425":0.4211711712,"17426":0.4221621622,"17427":0.4231531532,"17428":0.4241441441,"17429":0.4251351351,"17430":0.4261261261,"17431":0.4271171171,"17432":0.4281081081,"17433":0.4290990991,"17434":0.4300900901,"17435":0.4310810811,"17436":0.4320720721,"17437":0.4330630631,"17438":0.4340540541,"17439":0.435045045,"17440":0.436036036,"17441":0.437027027,"17442":0.438018018,"17443":0.439009009,"17444":0.44,"17445":0.440990991,"17446":0.441981982,"17447":0.442972973,"17448":0.443963964,"17449":0.444954955,"17450":0.4459459459,"17451":0.4469369369,"17452":0.4479279279,"17453":0.4489189189,"17454":0.4499099099,"17455":0.4509009009,"17456":0.4518918919,"17457":0.4528828829,"17458":0.4538738739,"17459":0.4548648649,"17460":0.4558558559,"17461":0.4568468468,"17462":0.4578378378,"17463":0.4588288288,"17464":0.4598198198,"17465":0.4608108108,"17466":0.4618018018,"17467":0.4627927928,"17468":0.4637837838,"17469":0.4647747748,"17470":0.4657657658,"17471":0.4667567568,"17472":0.4677477477,"17473":0.4687387387,"17474":0.4697297297,"17475":0.4707207207,"17476":0.4717117117,"17477":0.4727027027,"17478":0.4736936937,"17479":0.4746846847,"17480":0.4756756757,"17481":0.4766666667,"17482":0.4776576577,"17483":0.4786486486,"17484":0.4796396396,"17485":0.4806306306,"17486":0.4816216216,"17487":0.4826126126,"17488":0.4836036036,"17489":0.4845945946,"17490":0.4855855856,"17491":0.4865765766,"17492":0.4875675676,"17493":0.4885585586,"17494":0.4895495495,"17495":0.4905405405,"17496":0.4915315315,"17497":0.4925225225,"17498":0.4935135135,"17499":0.4945045045,"17500":0.4954954955,"17501":0.4964864865,"17502":0.4974774775,"17503":0.4984684685,"17504":0.4994594595,"17505":0.5004504505,"17506":0.5014414414,"17507":0.5024324324,"17508":0.5034234234,"17509":0.5044144144,"17510":0.5054054054,"17511":0.5063963964,"17512":0.5073873874,"17513":0.5083783784,"17514":0.5093693694,"17515":0.5103603604,"17516":0.5113513514,"17517":0.5123423423,"17518":0.5133333333,"17519":0.5143243243,"17520":0.5153153153,"17521":0.5163063063,"17522":0.5172972973,"17523":0.5182882883,"17524":0.5192792793,"17525":0.5202702703,"17526":0.5212612613,"17527":0.5222522523,"17528":0.5232432432,"17529":0.5242342342,"17530":0.5252252252,"17531":0.5262162162,"17532":0.5272072072,"17533":0.5281981982,"17534":0.5291891892,"17535":0.5301801802,"17536":0.5311711712,"17537":0.5321621622,"17538":0.5331531532,"17539":0.5341441441,"17540":0.5351351351,"17541":0.5361261261,"17542":0.5371171171,"17543":0.5381081081,"17544":0.5390990991,"17545":0.5400900901,"17546":0.5410810811,"17547":0.5420720721,"17548":0.5430630631,"17549":0.5440540541,"17550":0.545045045,"17551":0.546036036,"17552":0.547027027,"17553":0.548018018,"17554":0.549009009,"17555":0.55,"17556":0.550990991,"17557":0.551981982,"17558":0.552972973,"17559":0.553963964,"17560":0.554954955,"17561":0.5559459459,"17562":0.5569369369,"17563":0.5579279279,"17564":0.5589189189,"17565":0.5599099099,"17566":0.5609009009,"17567":0.5618918919,"17568":0.5628828829,"17569":0.5638738739,"17570":0.5648648649,"17571":0.5658558559,"17572":0.5668468468,"17573":0.5678378378,"17574":0.5688288288,"17575":0.5698198198,"17576":0.5708108108,"17577":0.5718018018,"17578":0.5727927928,"17579":0.5737837838,"17580":0.5747747748,"17581":0.5757657658,"17582":0.5767567568,"17583":0.5777477477,"17584":0.5787387387,"17585":0.5797297297,"17586":0.5807207207,"17587":0.5817117117,"17588":0.5827027027,"17589":0.5836936937,"17590":0.5846846847,"17591":0.5856756757,"17592":0.5866666667,"17593":0.5876576577,"17594":0.5886486486,"17595":0.5896396396,"17596":0.5906306306,"17597":0.5916216216,"17598":0.5926126126,"17599":0.5936036036,"17600":0.5945945946,"17601":0.5955855856,"17602":0.5965765766,"17603":0.5975675676,"17604":0.5985585586,"17605":0.5995495495,"17606":0.6005405405,"17607":0.6015315315,"17608":0.6025225225,"17609":0.6035135135,"17610":0.6045045045,"17611":0.6054954955,"17612":0.6064864865,"17613":0.6074774775,"17614":0.6084684685,"17615":0.6094594595,"17616":0.6104504505,"17617":0.6114414414,"17618":0.6124324324,"17619":0.6134234234,"17620":0.6144144144,"17621":0.6154054054,"17622":0.6163963964,"17623":0.6173873874,"17624":0.6183783784,"17625":0.6193693694,"17626":0.6203603604,"17627":0.6213513514,"17628":0.6223423423,"17629":0.6233333333,"17630":0.6243243243,"17631":0.6253153153,"17632":0.6263063063,"17633":0.6272972973,"17634":0.6282882883,"17635":0.6292792793,"17636":0.6302702703,"17637":0.6312612613,"17638":0.6322522523,"17639":0.6332432432,"17640":0.6342342342,"17641":0.6352252252,"17642":0.6362162162,"17643":0.6372072072,"17644":0.6381981982,"17645":0.6391891892,"17646":0.6401801802,"17647":0.6411711712,"17648":0.6421621622,"17649":0.6431531532,"17650":0.6441441441,"17651":0.6451351351,"17652":0.6461261261,"17653":0.6471171171,"17654":0.6481081081,"17655":0.6490990991,"17656":0.6500900901,"17657":0.6510810811,"17658":0.6520720721,"17659":0.6530630631,"17660":0.6540540541,"17661":0.655045045,"17662":0.656036036,"17663":0.657027027,"17664":0.658018018,"17665":0.659009009,"17666":0.66,"17667":0.660990991,"17668":0.661981982,"17669":0.662972973,"17670":0.663963964,"17671":0.664954955,"17672":0.6659459459,"17673":0.6669369369,"17674":0.6679279279,"17675":0.6689189189,"17676":0.6699099099,"17677":0.6709009009,"17678":0.6718918919,"17679":0.6728828829,"17680":0.6738738739,"17681":0.6748648649,"17682":0.6758558559,"17683":0.6768468468,"17684":0.6778378378,"17685":0.6788288288,"17686":0.6798198198,"17687":0.6808108108,"17688":0.6818018018,"17689":0.6827927928,"17690":0.6837837838,"17691":0.6847747748,"17692":0.6857657658,"17693":0.6867567568,"17694":0.6877477477,"17695":0.6887387387,"17696":0.6897297297,"17697":0.6907207207,"17698":0.6917117117,"17699":0.6927027027,"17700":0.6936936937,"17701":0.6946846847,"17702":0.6956756757,"17703":0.6966666667,"17704":0.6976576577,"17705":0.6986486486,"17706":0.6996396396,"17707":0.7006306306,"17708":0.7016216216,"17709":0.7026126126,"17710":0.7036036036,"17711":0.7045945946,"17712":0.7055855856,"17713":0.7065765766,"17714":0.7075675676,"17715":0.7085585586,"17716":0.7095495495,"17717":0.7105405405,"17718":0.7115315315,"17719":0.7125225225,"17720":0.7135135135,"17721":0.7145045045,"17722":0.7154954955,"17723":0.7164864865,"17724":0.7174774775,"17725":0.7184684685,"17726":0.7194594595,"17727":0.7204504505,"17728":0.7214414414,"17729":0.7224324324,"17730":0.7234234234,"17731":0.7244144144,"17732":0.7254054054,"17733":0.7263963964,"17734":0.7273873874,"17735":0.7283783784,"17736":0.7293693694,"17737":0.7303603604,"17738":0.7313513514,"17739":0.7323423423,"17740":0.7333333333,"17741":0.7343243243,"17742":0.7353153153,"17743":0.7363063063,"17744":0.7372972973,"17745":0.7382882883,"17746":0.7392792793,"17747":0.7402702703,"17748":0.7412612613,"17749":0.7422522523,"17750":0.7432432432,"17751":0.7442342342,"17752":0.7452252252,"17753":0.7462162162,"17754":0.7472072072,"17755":0.7481981982,"17756":0.7491891892,"17757":0.7501801802,"17758":0.7511711712,"17759":0.7521621622,"17760":0.7531531532,"17761":0.7541441441,"17762":0.7551351351,"17763":0.7561261261,"17764":0.7571171171,"17765":0.7581081081,"17766":0.7590990991,"17767":0.7600900901,"17768":0.7610810811,"17769":0.7620720721,"17770":0.7630630631,"17771":0.7640540541,"17772":0.765045045,"17773":0.766036036,"17774":0.767027027,"17775":0.768018018,"17776":0.769009009,"17777":0.77,"17778":0.770990991,"17779":0.771981982,"17780":0.772972973,"17781":0.773963964,"17782":0.774954955,"17783":0.7759459459,"17784":0.7769369369,"17785":0.7779279279,"17786":0.7789189189,"17787":0.7799099099,"17788":0.7809009009,"17789":0.7818918919,"17790":0.7828828829,"17791":0.7838738739,"17792":0.7848648649,"17793":0.7858558559,"17794":0.7868468468,"17795":0.7878378378,"17796":0.7888288288,"17797":0.7898198198,"17798":0.7908108108,"17799":0.7918018018,"17800":0.7927927928,"17801":0.7937837838,"17802":0.7947747748,"17803":0.7957657658,"17804":0.7967567568,"17805":0.7977477477,"17806":0.7987387387,"17807":0.7997297297,"17808":0.8007207207,"17809":0.8017117117,"17810":0.8027027027,"17811":0.8036936937,"17812":0.8046846847,"17813":0.8056756757,"17814":0.8066666667,"17815":0.8076576577,"17816":0.8086486486,"17817":0.8096396396,"17818":0.8106306306,"17819":0.8116216216,"17820":0.8126126126,"17821":0.8136036036,"17822":0.8145945946,"17823":0.8155855856,"17824":0.8165765766,"17825":0.8175675676,"17826":0.8185585586,"17827":0.8195495495,"17828":0.8205405405,"17829":0.8215315315,"17830":0.8225225225,"17831":0.8235135135,"17832":0.8245045045,"17833":0.8254954955,"17834":0.8264864865,"17835":0.8274774775,"17836":0.8284684685,"17837":0.8294594595,"17838":0.8304504505,"17839":0.8314414414,"17840":0.8324324324,"17841":0.8334234234,"17842":0.8344144144,"17843":0.8354054054,"17844":0.8363963964,"17845":0.8373873874,"17846":0.8383783784,"17847":0.8393693694,"17848":0.8403603604,"17849":0.8413513514,"17850":0.8423423423,"17851":0.8433333333,"17852":0.8443243243,"17853":0.8453153153,"17854":0.8463063063,"17855":0.8472972973,"17856":0.8482882883,"17857":0.8492792793,"17858":0.8502702703,"17859":0.8512612613,"17860":0.8522522523,"17861":0.8532432432,"17862":0.8542342342,"17863":0.8552252252,"17864":0.8562162162,"17865":0.8572072072,"17866":0.8581981982,"17867":0.8591891892,"17868":0.8601801802,"17869":0.8611711712,"17870":0.8621621622,"17871":0.8631531532,"17872":0.8641441441,"17873":0.8651351351,"17874":0.8661261261,"17875":0.8671171171,"17876":0.8681081081,"17877":0.8690990991,"17878":0.8700900901,"17879":0.8710810811,"17880":0.8720720721,"17881":0.8730630631,"17882":0.8740540541,"17883":0.875045045,"17884":0.876036036,"17885":0.877027027,"17886":0.878018018,"17887":0.879009009,"17888":0.88,"17889":0.880990991,"17890":0.881981982,"17891":0.882972973,"17892":0.883963964,"17893":0.884954955,"17894":0.8859459459,"17895":0.8869369369,"17896":0.8879279279,"17897":0.8889189189,"17898":0.8899099099,"17899":0.8909009009,"17900":0.8918918919,"17901":0.8928828829,"17902":0.8938738739,"17903":0.8948648649,"17904":0.8958558559,"17905":0.8968468468,"17906":0.8978378378,"17907":0.8988288288,"17908":0.8998198198,"17909":0.9008108108,"17910":0.9018018018,"17911":0.9027927928,"17912":0.9037837838,"17913":0.9047747748,"17914":0.9057657658,"17915":0.9067567568,"17916":0.9077477477,"17917":0.9087387387,"17918":0.9097297297,"17919":0.9107207207,"17920":0.9117117117,"17921":0.9127027027,"17922":0.9136936937,"17923":0.9146846847,"17924":0.9156756757,"17925":0.9166666667,"17926":0.9176576577,"17927":0.9186486486,"17928":0.9196396396,"17929":0.9206306306,"17930":0.9216216216,"17931":0.9226126126,"17932":0.9236036036,"17933":0.9245945946,"17934":0.9255855856,"17935":0.9265765766,"17936":0.9275675676,"17937":0.9285585586,"17938":0.9295495495,"17939":0.9305405405,"17940":0.9315315315,"17941":0.9325225225,"17942":0.9335135135,"17943":0.9345045045,"17944":0.9354954955,"17945":0.9364864865,"17946":0.9374774775,"17947":0.9384684685,"17948":0.9394594595,"17949":0.9404504505,"17950":0.9414414414,"17951":0.9424324324,"17952":0.9434234234,"17953":0.9444144144,"17954":0.9454054054,"17955":0.9463963964,"17956":0.9473873874,"17957":0.9483783784,"17958":0.9493693694,"17959":0.9503603604,"17960":0.9513513514,"17961":0.9523423423,"17962":0.9533333333,"17963":0.9543243243,"17964":0.9553153153,"17965":0.9563063063,"17966":0.9572972973,"17967":0.9582882883,"17968":0.9592792793,"17969":0.9602702703,"17970":0.9612612613,"17971":0.9622522523,"17972":0.9632432432,"17973":0.9642342342,"17974":0.9652252252,"17975":0.9662162162,"17976":0.9672072072,"17977":0.9681981982,"17978":0.9691891892,"17979":0.9701801802,"17980":0.9711711712,"17981":0.9721621622,"17982":0.9731531532,"17983":0.9741441441,"17984":0.9751351351,"17985":0.9761261261,"17986":0.9771171171,"17987":0.9781081081,"17988":0.9790990991,"17989":0.9800900901,"17990":0.9810810811,"17991":0.9820720721,"17992":0.9830630631,"17993":0.9840540541,"17994":0.985045045,"17995":0.986036036,"17996":0.987027027,"17997":0.988018018,"17998":0.989009009,"17999":0.99,"18000":0.0,"18001":0.000990991,"18002":0.001981982,"18003":0.002972973,"18004":0.003963964,"18005":0.004954955,"18006":0.0059459459,"18007":0.0069369369,"18008":0.0079279279,"18009":0.0089189189,"18010":0.0099099099,"18011":0.0109009009,"18012":0.0118918919,"18013":0.0128828829,"18014":0.0138738739,"18015":0.0148648649,"18016":0.0158558559,"18017":0.0168468468,"18018":0.0178378378,"18019":0.0188288288,"18020":0.0198198198,"18021":0.0208108108,"18022":0.0218018018,"18023":0.0227927928,"18024":0.0237837838,"18025":0.0247747748,"18026":0.0257657658,"18027":0.0267567568,"18028":0.0277477477,"18029":0.0287387387,"18030":0.0297297297,"18031":0.0307207207,"18032":0.0317117117,"18033":0.0327027027,"18034":0.0336936937,"18035":0.0346846847,"18036":0.0356756757,"18037":0.0366666667,"18038":0.0376576577,"18039":0.0386486486,"18040":0.0396396396,"18041":0.0406306306,"18042":0.0416216216,"18043":0.0426126126,"18044":0.0436036036,"18045":0.0445945946,"18046":0.0455855856,"18047":0.0465765766,"18048":0.0475675676,"18049":0.0485585586,"18050":0.0495495495,"18051":0.0505405405,"18052":0.0515315315,"18053":0.0525225225,"18054":0.0535135135,"18055":0.0545045045,"18056":0.0554954955,"18057":0.0564864865,"18058":0.0574774775,"18059":0.0584684685,"18060":0.0594594595,"18061":0.0604504505,"18062":0.0614414414,"18063":0.0624324324,"18064":0.0634234234,"18065":0.0644144144,"18066":0.0654054054,"18067":0.0663963964,"18068":0.0673873874,"18069":0.0683783784,"18070":0.0693693694,"18071":0.0703603604,"18072":0.0713513514,"18073":0.0723423423,"18074":0.0733333333,"18075":0.0743243243,"18076":0.0753153153,"18077":0.0763063063,"18078":0.0772972973,"18079":0.0782882883,"18080":0.0792792793,"18081":0.0802702703,"18082":0.0812612613,"18083":0.0822522523,"18084":0.0832432432,"18085":0.0842342342,"18086":0.0852252252,"18087":0.0862162162,"18088":0.0872072072,"18089":0.0881981982,"18090":0.0891891892,"18091":0.0901801802,"18092":0.0911711712,"18093":0.0921621622,"18094":0.0931531532,"18095":0.0941441441,"18096":0.0951351351,"18097":0.0961261261,"18098":0.0971171171,"18099":0.0981081081,"18100":0.0990990991,"18101":0.1000900901,"18102":0.1010810811,"18103":0.1020720721,"18104":0.1030630631,"18105":0.1040540541,"18106":0.105045045,"18107":0.106036036,"18108":0.107027027,"18109":0.108018018,"18110":0.109009009,"18111":0.11,"18112":0.110990991,"18113":0.111981982,"18114":0.112972973,"18115":0.113963964,"18116":0.114954955,"18117":0.1159459459,"18118":0.1169369369,"18119":0.1179279279,"18120":0.1189189189,"18121":0.1199099099,"18122":0.1209009009,"18123":0.1218918919,"18124":0.1228828829,"18125":0.1238738739,"18126":0.1248648649,"18127":0.1258558559,"18128":0.1268468468,"18129":0.1278378378,"18130":0.1288288288,"18131":0.1298198198,"18132":0.1308108108,"18133":0.1318018018,"18134":0.1327927928,"18135":0.1337837838,"18136":0.1347747748,"18137":0.1357657658,"18138":0.1367567568,"18139":0.1377477477,"18140":0.1387387387,"18141":0.1397297297,"18142":0.1407207207,"18143":0.1417117117,"18144":0.1427027027,"18145":0.1436936937,"18146":0.1446846847,"18147":0.1456756757,"18148":0.1466666667,"18149":0.1476576577,"18150":0.1486486486,"18151":0.1496396396,"18152":0.1506306306,"18153":0.1516216216,"18154":0.1526126126,"18155":0.1536036036,"18156":0.1545945946,"18157":0.1555855856,"18158":0.1565765766,"18159":0.1575675676,"18160":0.1585585586,"18161":0.1595495495,"18162":0.1605405405,"18163":0.1615315315,"18164":0.1625225225,"18165":0.1635135135,"18166":0.1645045045,"18167":0.1654954955,"18168":0.1664864865,"18169":0.1674774775,"18170":0.1684684685,"18171":0.1694594595,"18172":0.1704504505,"18173":0.1714414414,"18174":0.1724324324,"18175":0.1734234234,"18176":0.1744144144,"18177":0.1754054054,"18178":0.1763963964,"18179":0.1773873874,"18180":0.1783783784,"18181":0.1793693694,"18182":0.1803603604,"18183":0.1813513514,"18184":0.1823423423,"18185":0.1833333333,"18186":0.1843243243,"18187":0.1853153153,"18188":0.1863063063,"18189":0.1872972973,"18190":0.1882882883,"18191":0.1892792793,"18192":0.1902702703,"18193":0.1912612613,"18194":0.1922522523,"18195":0.1932432432,"18196":0.1942342342,"18197":0.1952252252,"18198":0.1962162162,"18199":0.1972072072,"18200":0.1981981982,"18201":0.1991891892,"18202":0.2001801802,"18203":0.2011711712,"18204":0.2021621622,"18205":0.2031531532,"18206":0.2041441441,"18207":0.2051351351,"18208":0.2061261261,"18209":0.2071171171,"18210":0.2081081081,"18211":0.2090990991,"18212":0.2100900901,"18213":0.2110810811,"18214":0.2120720721,"18215":0.2130630631,"18216":0.2140540541,"18217":0.215045045,"18218":0.216036036,"18219":0.217027027,"18220":0.218018018,"18221":0.219009009,"18222":0.22,"18223":0.220990991,"18224":0.221981982,"18225":0.222972973,"18226":0.223963964,"18227":0.224954955,"18228":0.2259459459,"18229":0.2269369369,"18230":0.2279279279,"18231":0.2289189189,"18232":0.2299099099,"18233":0.2309009009,"18234":0.2318918919,"18235":0.2328828829,"18236":0.2338738739,"18237":0.2348648649,"18238":0.2358558559,"18239":0.2368468468,"18240":0.2378378378,"18241":0.2388288288,"18242":0.2398198198,"18243":0.2408108108,"18244":0.2418018018,"18245":0.2427927928,"18246":0.2437837838,"18247":0.2447747748,"18248":0.2457657658,"18249":0.2467567568,"18250":0.2477477477,"18251":0.2487387387,"18252":0.2497297297,"18253":0.2507207207,"18254":0.2517117117,"18255":0.2527027027,"18256":0.2536936937,"18257":0.2546846847,"18258":0.2556756757,"18259":0.2566666667,"18260":0.2576576577,"18261":0.2586486486,"18262":0.2596396396,"18263":0.2606306306,"18264":0.2616216216,"18265":0.2626126126,"18266":0.2636036036,"18267":0.2645945946,"18268":0.2655855856,"18269":0.2665765766,"18270":0.2675675676,"18271":0.2685585586,"18272":0.2695495495,"18273":0.2705405405,"18274":0.2715315315,"18275":0.2725225225,"18276":0.2735135135,"18277":0.2745045045,"18278":0.2754954955,"18279":0.2764864865,"18280":0.2774774775,"18281":0.2784684685,"18282":0.2794594595,"18283":0.2804504505,"18284":0.2814414414,"18285":0.2824324324,"18286":0.2834234234,"18287":0.2844144144,"18288":0.2854054054,"18289":0.2863963964,"18290":0.2873873874,"18291":0.2883783784,"18292":0.2893693694,"18293":0.2903603604,"18294":0.2913513514,"18295":0.2923423423,"18296":0.2933333333,"18297":0.2943243243,"18298":0.2953153153,"18299":0.2963063063,"18300":0.2972972973,"18301":0.2982882883,"18302":0.2992792793,"18303":0.3002702703,"18304":0.3012612613,"18305":0.3022522523,"18306":0.3032432432,"18307":0.3042342342,"18308":0.3052252252,"18309":0.3062162162,"18310":0.3072072072,"18311":0.3081981982,"18312":0.3091891892,"18313":0.3101801802,"18314":0.3111711712,"18315":0.3121621622,"18316":0.3131531532,"18317":0.3141441441,"18318":0.3151351351,"18319":0.3161261261,"18320":0.3171171171,"18321":0.3181081081,"18322":0.3190990991,"18323":0.3200900901,"18324":0.3210810811,"18325":0.3220720721,"18326":0.3230630631,"18327":0.3240540541,"18328":0.325045045,"18329":0.326036036,"18330":0.327027027,"18331":0.328018018,"18332":0.329009009,"18333":0.33,"18334":0.330990991,"18335":0.331981982,"18336":0.332972973,"18337":0.333963964,"18338":0.334954955,"18339":0.3359459459,"18340":0.3369369369,"18341":0.3379279279,"18342":0.3389189189,"18343":0.3399099099,"18344":0.3409009009,"18345":0.3418918919,"18346":0.3428828829,"18347":0.3438738739,"18348":0.3448648649,"18349":0.3458558559,"18350":0.3468468468,"18351":0.3478378378,"18352":0.3488288288,"18353":0.3498198198,"18354":0.3508108108,"18355":0.3518018018,"18356":0.3527927928,"18357":0.3537837838,"18358":0.3547747748,"18359":0.3557657658,"18360":0.3567567568,"18361":0.3577477477,"18362":0.3587387387,"18363":0.3597297297,"18364":0.3607207207,"18365":0.3617117117,"18366":0.3627027027,"18367":0.3636936937,"18368":0.3646846847,"18369":0.3656756757,"18370":0.3666666667,"18371":0.3676576577,"18372":0.3686486486,"18373":0.3696396396,"18374":0.3706306306,"18375":0.3716216216,"18376":0.3726126126,"18377":0.3736036036,"18378":0.3745945946,"18379":0.3755855856,"18380":0.3765765766,"18381":0.3775675676,"18382":0.3785585586,"18383":0.3795495495,"18384":0.3805405405,"18385":0.3815315315,"18386":0.3825225225,"18387":0.3835135135,"18388":0.3845045045,"18389":0.3854954955,"18390":0.3864864865,"18391":0.3874774775,"18392":0.3884684685,"18393":0.3894594595,"18394":0.3904504505,"18395":0.3914414414,"18396":0.3924324324,"18397":0.3934234234,"18398":0.3944144144,"18399":0.3954054054,"18400":0.3963963964,"18401":0.3973873874,"18402":0.3983783784,"18403":0.3993693694,"18404":0.4003603604,"18405":0.4013513514,"18406":0.4023423423,"18407":0.4033333333,"18408":0.4043243243,"18409":0.4053153153,"18410":0.4063063063,"18411":0.4072972973,"18412":0.4082882883,"18413":0.4092792793,"18414":0.4102702703,"18415":0.4112612613,"18416":0.4122522523,"18417":0.4132432432,"18418":0.4142342342,"18419":0.4152252252,"18420":0.4162162162,"18421":0.4172072072,"18422":0.4181981982,"18423":0.4191891892,"18424":0.4201801802,"18425":0.4211711712,"18426":0.4221621622,"18427":0.4231531532,"18428":0.4241441441,"18429":0.4251351351,"18430":0.4261261261,"18431":0.4271171171,"18432":0.4281081081,"18433":0.4290990991,"18434":0.4300900901,"18435":0.4310810811,"18436":0.4320720721,"18437":0.4330630631,"18438":0.4340540541,"18439":0.435045045,"18440":0.436036036,"18441":0.437027027,"18442":0.438018018,"18443":0.439009009,"18444":0.44,"18445":0.440990991,"18446":0.441981982,"18447":0.442972973,"18448":0.443963964,"18449":0.444954955,"18450":0.4459459459,"18451":0.4469369369,"18452":0.4479279279,"18453":0.4489189189,"18454":0.4499099099,"18455":0.4509009009,"18456":0.4518918919,"18457":0.4528828829,"18458":0.4538738739,"18459":0.4548648649,"18460":0.4558558559,"18461":0.4568468468,"18462":0.4578378378,"18463":0.4588288288,"18464":0.4598198198,"18465":0.4608108108,"18466":0.4618018018,"18467":0.4627927928,"18468":0.4637837838,"18469":0.4647747748,"18470":0.4657657658,"18471":0.4667567568,"18472":0.4677477477,"18473":0.4687387387,"18474":0.4697297297,"18475":0.4707207207,"18476":0.4717117117,"18477":0.4727027027,"18478":0.4736936937,"18479":0.4746846847,"18480":0.4756756757,"18481":0.4766666667,"18482":0.4776576577,"18483":0.4786486486,"18484":0.4796396396,"18485":0.4806306306,"18486":0.4816216216,"18487":0.4826126126,"18488":0.4836036036,"18489":0.4845945946,"18490":0.4855855856,"18491":0.4865765766,"18492":0.4875675676,"18493":0.4885585586,"18494":0.4895495495,"18495":0.4905405405,"18496":0.4915315315,"18497":0.4925225225,"18498":0.4935135135,"18499":0.4945045045,"18500":0.4954954955,"18501":0.4964864865,"18502":0.4974774775,"18503":0.4984684685,"18504":0.4994594595,"18505":0.5004504505,"18506":0.5014414414,"18507":0.5024324324,"18508":0.5034234234,"18509":0.5044144144,"18510":0.5054054054,"18511":0.5063963964,"18512":0.5073873874,"18513":0.5083783784,"18514":0.5093693694,"18515":0.5103603604,"18516":0.5113513514,"18517":0.5123423423,"18518":0.5133333333,"18519":0.5143243243,"18520":0.5153153153,"18521":0.5163063063,"18522":0.5172972973,"18523":0.5182882883,"18524":0.5192792793,"18525":0.5202702703,"18526":0.5212612613,"18527":0.5222522523,"18528":0.5232432432,"18529":0.5242342342,"18530":0.5252252252,"18531":0.5262162162,"18532":0.5272072072,"18533":0.5281981982,"18534":0.5291891892,"18535":0.5301801802,"18536":0.5311711712,"18537":0.5321621622,"18538":0.5331531532,"18539":0.5341441441,"18540":0.5351351351,"18541":0.5361261261,"18542":0.5371171171,"18543":0.5381081081,"18544":0.5390990991,"18545":0.5400900901,"18546":0.5410810811,"18547":0.5420720721,"18548":0.5430630631,"18549":0.5440540541,"18550":0.545045045,"18551":0.546036036,"18552":0.547027027,"18553":0.548018018,"18554":0.549009009,"18555":0.55,"18556":0.550990991,"18557":0.551981982,"18558":0.552972973,"18559":0.553963964,"18560":0.554954955,"18561":0.5559459459,"18562":0.5569369369,"18563":0.5579279279,"18564":0.5589189189,"18565":0.5599099099,"18566":0.5609009009,"18567":0.5618918919,"18568":0.5628828829,"18569":0.5638738739,"18570":0.5648648649,"18571":0.5658558559,"18572":0.5668468468,"18573":0.5678378378,"18574":0.5688288288,"18575":0.5698198198,"18576":0.5708108108,"18577":0.5718018018,"18578":0.5727927928,"18579":0.5737837838,"18580":0.5747747748,"18581":0.5757657658,"18582":0.5767567568,"18583":0.5777477477,"18584":0.5787387387,"18585":0.5797297297,"18586":0.5807207207,"18587":0.5817117117,"18588":0.5827027027,"18589":0.5836936937,"18590":0.5846846847,"18591":0.5856756757,"18592":0.5866666667,"18593":0.5876576577,"18594":0.5886486486,"18595":0.5896396396,"18596":0.5906306306,"18597":0.5916216216,"18598":0.5926126126,"18599":0.5936036036,"18600":0.5945945946,"18601":0.5955855856,"18602":0.5965765766,"18603":0.5975675676,"18604":0.5985585586,"18605":0.5995495495,"18606":0.6005405405,"18607":0.6015315315,"18608":0.6025225225,"18609":0.6035135135,"18610":0.6045045045,"18611":0.6054954955,"18612":0.6064864865,"18613":0.6074774775,"18614":0.6084684685,"18615":0.6094594595,"18616":0.6104504505,"18617":0.6114414414,"18618":0.6124324324,"18619":0.6134234234,"18620":0.6144144144,"18621":0.6154054054,"18622":0.6163963964,"18623":0.6173873874,"18624":0.6183783784,"18625":0.6193693694,"18626":0.6203603604,"18627":0.6213513514,"18628":0.6223423423,"18629":0.6233333333,"18630":0.6243243243,"18631":0.6253153153,"18632":0.6263063063,"18633":0.6272972973,"18634":0.6282882883,"18635":0.6292792793,"18636":0.6302702703,"18637":0.6312612613,"18638":0.6322522523,"18639":0.6332432432,"18640":0.6342342342,"18641":0.6352252252,"18642":0.6362162162,"18643":0.6372072072,"18644":0.6381981982,"18645":0.6391891892,"18646":0.6401801802,"18647":0.6411711712,"18648":0.6421621622,"18649":0.6431531532,"18650":0.6441441441,"18651":0.6451351351,"18652":0.6461261261,"18653":0.6471171171,"18654":0.6481081081,"18655":0.6490990991,"18656":0.6500900901,"18657":0.6510810811,"18658":0.6520720721,"18659":0.6530630631,"18660":0.6540540541,"18661":0.655045045,"18662":0.656036036,"18663":0.657027027,"18664":0.658018018,"18665":0.659009009,"18666":0.66,"18667":0.660990991,"18668":0.661981982,"18669":0.662972973,"18670":0.663963964,"18671":0.664954955,"18672":0.6659459459,"18673":0.6669369369,"18674":0.6679279279,"18675":0.6689189189,"18676":0.6699099099,"18677":0.6709009009,"18678":0.6718918919,"18679":0.6728828829,"18680":0.6738738739,"18681":0.6748648649,"18682":0.6758558559,"18683":0.6768468468,"18684":0.6778378378,"18685":0.6788288288,"18686":0.6798198198,"18687":0.6808108108,"18688":0.6818018018,"18689":0.6827927928,"18690":0.6837837838,"18691":0.6847747748,"18692":0.6857657658,"18693":0.6867567568,"18694":0.6877477477,"18695":0.6887387387,"18696":0.6897297297,"18697":0.6907207207,"18698":0.6917117117,"18699":0.6927027027,"18700":0.6936936937,"18701":0.6946846847,"18702":0.6956756757,"18703":0.6966666667,"18704":0.6976576577,"18705":0.6986486486,"18706":0.6996396396,"18707":0.7006306306,"18708":0.7016216216,"18709":0.7026126126,"18710":0.7036036036,"18711":0.7045945946,"18712":0.7055855856,"18713":0.7065765766,"18714":0.7075675676,"18715":0.7085585586,"18716":0.7095495495,"18717":0.7105405405,"18718":0.7115315315,"18719":0.7125225225,"18720":0.7135135135,"18721":0.7145045045,"18722":0.7154954955,"18723":0.7164864865,"18724":0.7174774775,"18725":0.7184684685,"18726":0.7194594595,"18727":0.7204504505,"18728":0.7214414414,"18729":0.7224324324,"18730":0.7234234234,"18731":0.7244144144,"18732":0.7254054054,"18733":0.7263963964,"18734":0.7273873874,"18735":0.7283783784,"18736":0.7293693694,"18737":0.7303603604,"18738":0.7313513514,"18739":0.7323423423,"18740":0.7333333333,"18741":0.7343243243,"18742":0.7353153153,"18743":0.7363063063,"18744":0.7372972973,"18745":0.7382882883,"18746":0.7392792793,"18747":0.7402702703,"18748":0.7412612613,"18749":0.7422522523,"18750":0.7432432432,"18751":0.7442342342,"18752":0.7452252252,"18753":0.7462162162,"18754":0.7472072072,"18755":0.7481981982,"18756":0.7491891892,"18757":0.7501801802,"18758":0.7511711712,"18759":0.7521621622,"18760":0.7531531532,"18761":0.7541441441,"18762":0.7551351351,"18763":0.7561261261,"18764":0.7571171171,"18765":0.7581081081,"18766":0.7590990991,"18767":0.7600900901,"18768":0.7610810811,"18769":0.7620720721,"18770":0.7630630631,"18771":0.7640540541,"18772":0.765045045,"18773":0.766036036,"18774":0.767027027,"18775":0.768018018,"18776":0.769009009,"18777":0.77,"18778":0.770990991,"18779":0.771981982,"18780":0.772972973,"18781":0.773963964,"18782":0.774954955,"18783":0.7759459459,"18784":0.7769369369,"18785":0.7779279279,"18786":0.7789189189,"18787":0.7799099099,"18788":0.7809009009,"18789":0.7818918919,"18790":0.7828828829,"18791":0.7838738739,"18792":0.7848648649,"18793":0.7858558559,"18794":0.7868468468,"18795":0.7878378378,"18796":0.7888288288,"18797":0.7898198198,"18798":0.7908108108,"18799":0.7918018018,"18800":0.7927927928,"18801":0.7937837838,"18802":0.7947747748,"18803":0.7957657658,"18804":0.7967567568,"18805":0.7977477477,"18806":0.7987387387,"18807":0.7997297297,"18808":0.8007207207,"18809":0.8017117117,"18810":0.8027027027,"18811":0.8036936937,"18812":0.8046846847,"18813":0.8056756757,"18814":0.8066666667,"18815":0.8076576577,"18816":0.8086486486,"18817":0.8096396396,"18818":0.8106306306,"18819":0.8116216216,"18820":0.8126126126,"18821":0.8136036036,"18822":0.8145945946,"18823":0.8155855856,"18824":0.8165765766,"18825":0.8175675676,"18826":0.8185585586,"18827":0.8195495495,"18828":0.8205405405,"18829":0.8215315315,"18830":0.8225225225,"18831":0.8235135135,"18832":0.8245045045,"18833":0.8254954955,"18834":0.8264864865,"18835":0.8274774775,"18836":0.8284684685,"18837":0.8294594595,"18838":0.8304504505,"18839":0.8314414414,"18840":0.8324324324,"18841":0.8334234234,"18842":0.8344144144,"18843":0.8354054054,"18844":0.8363963964,"18845":0.8373873874,"18846":0.8383783784,"18847":0.8393693694,"18848":0.8403603604,"18849":0.8413513514,"18850":0.8423423423,"18851":0.8433333333,"18852":0.8443243243,"18853":0.8453153153,"18854":0.8463063063,"18855":0.8472972973,"18856":0.8482882883,"18857":0.8492792793,"18858":0.8502702703,"18859":0.8512612613,"18860":0.8522522523,"18861":0.8532432432,"18862":0.8542342342,"18863":0.8552252252,"18864":0.8562162162,"18865":0.8572072072,"18866":0.8581981982,"18867":0.8591891892,"18868":0.8601801802,"18869":0.8611711712,"18870":0.8621621622,"18871":0.8631531532,"18872":0.8641441441,"18873":0.8651351351,"18874":0.8661261261,"18875":0.8671171171,"18876":0.8681081081,"18877":0.8690990991,"18878":0.8700900901,"18879":0.8710810811,"18880":0.8720720721,"18881":0.8730630631,"18882":0.8740540541,"18883":0.875045045,"18884":0.876036036,"18885":0.877027027,"18886":0.878018018,"18887":0.879009009,"18888":0.88,"18889":0.880990991,"18890":0.881981982,"18891":0.882972973,"18892":0.883963964,"18893":0.884954955,"18894":0.8859459459,"18895":0.8869369369,"18896":0.8879279279,"18897":0.8889189189,"18898":0.8899099099,"18899":0.8909009009,"18900":0.8918918919,"18901":0.8928828829,"18902":0.8938738739,"18903":0.8948648649,"18904":0.8958558559,"18905":0.8968468468,"18906":0.8978378378,"18907":0.8988288288,"18908":0.8998198198,"18909":0.9008108108,"18910":0.9018018018,"18911":0.9027927928,"18912":0.9037837838,"18913":0.9047747748,"18914":0.9057657658,"18915":0.9067567568,"18916":0.9077477477,"18917":0.9087387387,"18918":0.9097297297,"18919":0.9107207207,"18920":0.9117117117,"18921":0.9127027027,"18922":0.9136936937,"18923":0.9146846847,"18924":0.9156756757,"18925":0.9166666667,"18926":0.9176576577,"18927":0.9186486486,"18928":0.9196396396,"18929":0.9206306306,"18930":0.9216216216,"18931":0.9226126126,"18932":0.9236036036,"18933":0.9245945946,"18934":0.9255855856,"18935":0.9265765766,"18936":0.9275675676,"18937":0.9285585586,"18938":0.9295495495,"18939":0.9305405405,"18940":0.9315315315,"18941":0.9325225225,"18942":0.9335135135,"18943":0.9345045045,"18944":0.9354954955,"18945":0.9364864865,"18946":0.9374774775,"18947":0.9384684685,"18948":0.9394594595,"18949":0.9404504505,"18950":0.9414414414,"18951":0.9424324324,"18952":0.9434234234,"18953":0.9444144144,"18954":0.9454054054,"18955":0.9463963964,"18956":0.9473873874,"18957":0.9483783784,"18958":0.9493693694,"18959":0.9503603604,"18960":0.9513513514,"18961":0.9523423423,"18962":0.9533333333,"18963":0.9543243243,"18964":0.9553153153,"18965":0.9563063063,"18966":0.9572972973,"18967":0.9582882883,"18968":0.9592792793,"18969":0.9602702703,"18970":0.9612612613,"18971":0.9622522523,"18972":0.9632432432,"18973":0.9642342342,"18974":0.9652252252,"18975":0.9662162162,"18976":0.9672072072,"18977":0.9681981982,"18978":0.9691891892,"18979":0.9701801802,"18980":0.9711711712,"18981":0.9721621622,"18982":0.9731531532,"18983":0.9741441441,"18984":0.9751351351,"18985":0.9761261261,"18986":0.9771171171,"18987":0.9781081081,"18988":0.9790990991,"18989":0.9800900901,"18990":0.9810810811,"18991":0.9820720721,"18992":0.9830630631,"18993":0.9840540541,"18994":0.985045045,"18995":0.986036036,"18996":0.987027027,"18997":0.988018018,"18998":0.989009009,"18999":0.99,"19000":0.0,"19001":0.000990991,"19002":0.001981982,"19003":0.002972973,"19004":0.003963964,"19005":0.004954955,"19006":0.0059459459,"19007":0.0069369369,"19008":0.0079279279,"19009":0.0089189189,"19010":0.0099099099,"19011":0.0109009009,"19012":0.0118918919,"19013":0.0128828829,"19014":0.0138738739,"19015":0.0148648649,"19016":0.0158558559,"19017":0.0168468468,"19018":0.0178378378,"19019":0.0188288288,"19020":0.0198198198,"19021":0.0208108108,"19022":0.0218018018,"19023":0.0227927928,"19024":0.0237837838,"19025":0.0247747748,"19026":0.0257657658,"19027":0.0267567568,"19028":0.0277477477,"19029":0.0287387387,"19030":0.0297297297,"19031":0.0307207207,"19032":0.0317117117,"19033":0.0327027027,"19034":0.0336936937,"19035":0.0346846847,"19036":0.0356756757,"19037":0.0366666667,"19038":0.0376576577,"19039":0.0386486486,"19040":0.0396396396,"19041":0.0406306306,"19042":0.0416216216,"19043":0.0426126126,"19044":0.0436036036,"19045":0.0445945946,"19046":0.0455855856,"19047":0.0465765766,"19048":0.0475675676,"19049":0.0485585586,"19050":0.0495495495,"19051":0.0505405405,"19052":0.0515315315,"19053":0.0525225225,"19054":0.0535135135,"19055":0.0545045045,"19056":0.0554954955,"19057":0.0564864865,"19058":0.0574774775,"19059":0.0584684685,"19060":0.0594594595,"19061":0.0604504505,"19062":0.0614414414,"19063":0.0624324324,"19064":0.0634234234,"19065":0.0644144144,"19066":0.0654054054,"19067":0.0663963964,"19068":0.0673873874,"19069":0.0683783784,"19070":0.0693693694,"19071":0.0703603604,"19072":0.0713513514,"19073":0.0723423423,"19074":0.0733333333,"19075":0.0743243243,"19076":0.0753153153,"19077":0.0763063063,"19078":0.0772972973,"19079":0.0782882883,"19080":0.0792792793,"19081":0.0802702703,"19082":0.0812612613,"19083":0.0822522523,"19084":0.0832432432,"19085":0.0842342342,"19086":0.0852252252,"19087":0.0862162162,"19088":0.0872072072,"19089":0.0881981982,"19090":0.0891891892,"19091":0.0901801802,"19092":0.0911711712,"19093":0.0921621622,"19094":0.0931531532,"19095":0.0941441441,"19096":0.0951351351,"19097":0.0961261261,"19098":0.0971171171,"19099":0.0981081081,"19100":0.0990990991,"19101":0.1000900901,"19102":0.1010810811,"19103":0.1020720721,"19104":0.1030630631,"19105":0.1040540541,"19106":0.105045045,"19107":0.106036036,"19108":0.107027027,"19109":0.108018018,"19110":0.109009009,"19111":0.11,"19112":0.110990991,"19113":0.111981982,"19114":0.112972973,"19115":0.113963964,"19116":0.114954955,"19117":0.1159459459,"19118":0.1169369369,"19119":0.1179279279,"19120":0.1189189189,"19121":0.1199099099,"19122":0.1209009009,"19123":0.1218918919,"19124":0.1228828829,"19125":0.1238738739,"19126":0.1248648649,"19127":0.1258558559,"19128":0.1268468468,"19129":0.1278378378,"19130":0.1288288288,"19131":0.1298198198,"19132":0.1308108108,"19133":0.1318018018,"19134":0.1327927928,"19135":0.1337837838,"19136":0.1347747748,"19137":0.1357657658,"19138":0.1367567568,"19139":0.1377477477,"19140":0.1387387387,"19141":0.1397297297,"19142":0.1407207207,"19143":0.1417117117,"19144":0.1427027027,"19145":0.1436936937,"19146":0.1446846847,"19147":0.1456756757,"19148":0.1466666667,"19149":0.1476576577,"19150":0.1486486486,"19151":0.1496396396,"19152":0.1506306306,"19153":0.1516216216,"19154":0.1526126126,"19155":0.1536036036,"19156":0.1545945946,"19157":0.1555855856,"19158":0.1565765766,"19159":0.1575675676,"19160":0.1585585586,"19161":0.1595495495,"19162":0.1605405405,"19163":0.1615315315,"19164":0.1625225225,"19165":0.1635135135,"19166":0.1645045045,"19167":0.1654954955,"19168":0.1664864865,"19169":0.1674774775,"19170":0.1684684685,"19171":0.1694594595,"19172":0.1704504505,"19173":0.1714414414,"19174":0.1724324324,"19175":0.1734234234,"19176":0.1744144144,"19177":0.1754054054,"19178":0.1763963964,"19179":0.1773873874,"19180":0.1783783784,"19181":0.1793693694,"19182":0.1803603604,"19183":0.1813513514,"19184":0.1823423423,"19185":0.1833333333,"19186":0.1843243243,"19187":0.1853153153,"19188":0.1863063063,"19189":0.1872972973,"19190":0.1882882883,"19191":0.1892792793,"19192":0.1902702703,"19193":0.1912612613,"19194":0.1922522523,"19195":0.1932432432,"19196":0.1942342342,"19197":0.1952252252,"19198":0.1962162162,"19199":0.1972072072,"19200":0.1981981982,"19201":0.1991891892,"19202":0.2001801802,"19203":0.2011711712,"19204":0.2021621622,"19205":0.2031531532,"19206":0.2041441441,"19207":0.2051351351,"19208":0.2061261261,"19209":0.2071171171,"19210":0.2081081081,"19211":0.2090990991,"19212":0.2100900901,"19213":0.2110810811,"19214":0.2120720721,"19215":0.2130630631,"19216":0.2140540541,"19217":0.215045045,"19218":0.216036036,"19219":0.217027027,"19220":0.218018018,"19221":0.219009009,"19222":0.22,"19223":0.220990991,"19224":0.221981982,"19225":0.222972973,"19226":0.223963964,"19227":0.224954955,"19228":0.2259459459,"19229":0.2269369369,"19230":0.2279279279,"19231":0.2289189189,"19232":0.2299099099,"19233":0.2309009009,"19234":0.2318918919,"19235":0.2328828829,"19236":0.2338738739,"19237":0.2348648649,"19238":0.2358558559,"19239":0.2368468468,"19240":0.2378378378,"19241":0.2388288288,"19242":0.2398198198,"19243":0.2408108108,"19244":0.2418018018,"19245":0.2427927928,"19246":0.2437837838,"19247":0.2447747748,"19248":0.2457657658,"19249":0.2467567568,"19250":0.2477477477,"19251":0.2487387387,"19252":0.2497297297,"19253":0.2507207207,"19254":0.2517117117,"19255":0.2527027027,"19256":0.2536936937,"19257":0.2546846847,"19258":0.2556756757,"19259":0.2566666667,"19260":0.2576576577,"19261":0.2586486486,"19262":0.2596396396,"19263":0.2606306306,"19264":0.2616216216,"19265":0.2626126126,"19266":0.2636036036,"19267":0.2645945946,"19268":0.2655855856,"19269":0.2665765766,"19270":0.2675675676,"19271":0.2685585586,"19272":0.2695495495,"19273":0.2705405405,"19274":0.2715315315,"19275":0.2725225225,"19276":0.2735135135,"19277":0.2745045045,"19278":0.2754954955,"19279":0.2764864865,"19280":0.2774774775,"19281":0.2784684685,"19282":0.2794594595,"19283":0.2804504505,"19284":0.2814414414,"19285":0.2824324324,"19286":0.2834234234,"19287":0.2844144144,"19288":0.2854054054,"19289":0.2863963964,"19290":0.2873873874,"19291":0.2883783784,"19292":0.2893693694,"19293":0.2903603604,"19294":0.2913513514,"19295":0.2923423423,"19296":0.2933333333,"19297":0.2943243243,"19298":0.2953153153,"19299":0.2963063063,"19300":0.2972972973,"19301":0.2982882883,"19302":0.2992792793,"19303":0.3002702703,"19304":0.3012612613,"19305":0.3022522523,"19306":0.3032432432,"19307":0.3042342342,"19308":0.3052252252,"19309":0.3062162162,"19310":0.3072072072,"19311":0.3081981982,"19312":0.3091891892,"19313":0.3101801802,"19314":0.3111711712,"19315":0.3121621622,"19316":0.3131531532,"19317":0.3141441441,"19318":0.3151351351,"19319":0.3161261261,"19320":0.3171171171,"19321":0.3181081081,"19322":0.3190990991,"19323":0.3200900901,"19324":0.3210810811,"19325":0.3220720721,"19326":0.3230630631,"19327":0.3240540541,"19328":0.325045045,"19329":0.326036036,"19330":0.327027027,"19331":0.328018018,"19332":0.329009009,"19333":0.33,"19334":0.330990991,"19335":0.331981982,"19336":0.332972973,"19337":0.333963964,"19338":0.334954955,"19339":0.3359459459,"19340":0.3369369369,"19341":0.3379279279,"19342":0.3389189189,"19343":0.3399099099,"19344":0.3409009009,"19345":0.3418918919,"19346":0.3428828829,"19347":0.3438738739,"19348":0.3448648649,"19349":0.3458558559,"19350":0.3468468468,"19351":0.3478378378,"19352":0.3488288288,"19353":0.3498198198,"19354":0.3508108108,"19355":0.3518018018,"19356":0.3527927928,"19357":0.3537837838,"19358":0.3547747748,"19359":0.3557657658,"19360":0.3567567568,"19361":0.3577477477,"19362":0.3587387387,"19363":0.3597297297,"19364":0.3607207207,"19365":0.3617117117,"19366":0.3627027027,"19367":0.3636936937,"19368":0.3646846847,"19369":0.3656756757,"19370":0.3666666667,"19371":0.3676576577,"19372":0.3686486486,"19373":0.3696396396,"19374":0.3706306306,"19375":0.3716216216,"19376":0.3726126126,"19377":0.3736036036,"19378":0.3745945946,"19379":0.3755855856,"19380":0.3765765766,"19381":0.3775675676,"19382":0.3785585586,"19383":0.3795495495,"19384":0.3805405405,"19385":0.3815315315,"19386":0.3825225225,"19387":0.3835135135,"19388":0.3845045045,"19389":0.3854954955,"19390":0.3864864865,"19391":0.3874774775,"19392":0.3884684685,"19393":0.3894594595,"19394":0.3904504505,"19395":0.3914414414,"19396":0.3924324324,"19397":0.3934234234,"19398":0.3944144144,"19399":0.3954054054,"19400":0.3963963964,"19401":0.3973873874,"19402":0.3983783784,"19403":0.3993693694,"19404":0.4003603604,"19405":0.4013513514,"19406":0.4023423423,"19407":0.4033333333,"19408":0.4043243243,"19409":0.4053153153,"19410":0.4063063063,"19411":0.4072972973,"19412":0.4082882883,"19413":0.4092792793,"19414":0.4102702703,"19415":0.4112612613,"19416":0.4122522523,"19417":0.4132432432,"19418":0.4142342342,"19419":0.4152252252,"19420":0.4162162162,"19421":0.4172072072,"19422":0.4181981982,"19423":0.4191891892,"19424":0.4201801802,"19425":0.4211711712,"19426":0.4221621622,"19427":0.4231531532,"19428":0.4241441441,"19429":0.4251351351,"19430":0.4261261261,"19431":0.4271171171,"19432":0.4281081081,"19433":0.4290990991,"19434":0.4300900901,"19435":0.4310810811,"19436":0.4320720721,"19437":0.4330630631,"19438":0.4340540541,"19439":0.435045045,"19440":0.436036036,"19441":0.437027027,"19442":0.438018018,"19443":0.439009009,"19444":0.44,"19445":0.440990991,"19446":0.441981982,"19447":0.442972973,"19448":0.443963964,"19449":0.444954955,"19450":0.4459459459,"19451":0.4469369369,"19452":0.4479279279,"19453":0.4489189189,"19454":0.4499099099,"19455":0.4509009009,"19456":0.4518918919,"19457":0.4528828829,"19458":0.4538738739,"19459":0.4548648649,"19460":0.4558558559,"19461":0.4568468468,"19462":0.4578378378,"19463":0.4588288288,"19464":0.4598198198,"19465":0.4608108108,"19466":0.4618018018,"19467":0.4627927928,"19468":0.4637837838,"19469":0.4647747748,"19470":0.4657657658,"19471":0.4667567568,"19472":0.4677477477,"19473":0.4687387387,"19474":0.4697297297,"19475":0.4707207207,"19476":0.4717117117,"19477":0.4727027027,"19478":0.4736936937,"19479":0.4746846847,"19480":0.4756756757,"19481":0.4766666667,"19482":0.4776576577,"19483":0.4786486486,"19484":0.4796396396,"19485":0.4806306306,"19486":0.4816216216,"19487":0.4826126126,"19488":0.4836036036,"19489":0.4845945946,"19490":0.4855855856,"19491":0.4865765766,"19492":0.4875675676,"19493":0.4885585586,"19494":0.4895495495,"19495":0.4905405405,"19496":0.4915315315,"19497":0.4925225225,"19498":0.4935135135,"19499":0.4945045045,"19500":0.4954954955,"19501":0.4964864865,"19502":0.4974774775,"19503":0.4984684685,"19504":0.4994594595,"19505":0.5004504505,"19506":0.5014414414,"19507":0.5024324324,"19508":0.5034234234,"19509":0.5044144144,"19510":0.5054054054,"19511":0.5063963964,"19512":0.5073873874,"19513":0.5083783784,"19514":0.5093693694,"19515":0.5103603604,"19516":0.5113513514,"19517":0.5123423423,"19518":0.5133333333,"19519":0.5143243243,"19520":0.5153153153,"19521":0.5163063063,"19522":0.5172972973,"19523":0.5182882883,"19524":0.5192792793,"19525":0.5202702703,"19526":0.5212612613,"19527":0.5222522523,"19528":0.5232432432,"19529":0.5242342342,"19530":0.5252252252,"19531":0.5262162162,"19532":0.5272072072,"19533":0.5281981982,"19534":0.5291891892,"19535":0.5301801802,"19536":0.5311711712,"19537":0.5321621622,"19538":0.5331531532,"19539":0.5341441441,"19540":0.5351351351,"19541":0.5361261261,"19542":0.5371171171,"19543":0.5381081081,"19544":0.5390990991,"19545":0.5400900901,"19546":0.5410810811,"19547":0.5420720721,"19548":0.5430630631,"19549":0.5440540541,"19550":0.545045045,"19551":0.546036036,"19552":0.547027027,"19553":0.548018018,"19554":0.549009009,"19555":0.55,"19556":0.550990991,"19557":0.551981982,"19558":0.552972973,"19559":0.553963964,"19560":0.554954955,"19561":0.5559459459,"19562":0.5569369369,"19563":0.5579279279,"19564":0.5589189189,"19565":0.5599099099,"19566":0.5609009009,"19567":0.5618918919,"19568":0.5628828829,"19569":0.5638738739,"19570":0.5648648649,"19571":0.5658558559,"19572":0.5668468468,"19573":0.5678378378,"19574":0.5688288288,"19575":0.5698198198,"19576":0.5708108108,"19577":0.5718018018,"19578":0.5727927928,"19579":0.5737837838,"19580":0.5747747748,"19581":0.5757657658,"19582":0.5767567568,"19583":0.5777477477,"19584":0.5787387387,"19585":0.5797297297,"19586":0.5807207207,"19587":0.5817117117,"19588":0.5827027027,"19589":0.5836936937,"19590":0.5846846847,"19591":0.5856756757,"19592":0.5866666667,"19593":0.5876576577,"19594":0.5886486486,"19595":0.5896396396,"19596":0.5906306306,"19597":0.5916216216,"19598":0.5926126126,"19599":0.5936036036,"19600":0.5945945946,"19601":0.5955855856,"19602":0.5965765766,"19603":0.5975675676,"19604":0.5985585586,"19605":0.5995495495,"19606":0.6005405405,"19607":0.6015315315,"19608":0.6025225225,"19609":0.6035135135,"19610":0.6045045045,"19611":0.6054954955,"19612":0.6064864865,"19613":0.6074774775,"19614":0.6084684685,"19615":0.6094594595,"19616":0.6104504505,"19617":0.6114414414,"19618":0.6124324324,"19619":0.6134234234,"19620":0.6144144144,"19621":0.6154054054,"19622":0.6163963964,"19623":0.6173873874,"19624":0.6183783784,"19625":0.6193693694,"19626":0.6203603604,"19627":0.6213513514,"19628":0.6223423423,"19629":0.6233333333,"19630":0.6243243243,"19631":0.6253153153,"19632":0.6263063063,"19633":0.6272972973,"19634":0.6282882883,"19635":0.6292792793,"19636":0.6302702703,"19637":0.6312612613,"19638":0.6322522523,"19639":0.6332432432,"19640":0.6342342342,"19641":0.6352252252,"19642":0.6362162162,"19643":0.6372072072,"19644":0.6381981982,"19645":0.6391891892,"19646":0.6401801802,"19647":0.6411711712,"19648":0.6421621622,"19649":0.6431531532,"19650":0.6441441441,"19651":0.6451351351,"19652":0.6461261261,"19653":0.6471171171,"19654":0.6481081081,"19655":0.6490990991,"19656":0.6500900901,"19657":0.6510810811,"19658":0.6520720721,"19659":0.6530630631,"19660":0.6540540541,"19661":0.655045045,"19662":0.656036036,"19663":0.657027027,"19664":0.658018018,"19665":0.659009009,"19666":0.66,"19667":0.660990991,"19668":0.661981982,"19669":0.662972973,"19670":0.663963964,"19671":0.664954955,"19672":0.6659459459,"19673":0.6669369369,"19674":0.6679279279,"19675":0.6689189189,"19676":0.6699099099,"19677":0.6709009009,"19678":0.6718918919,"19679":0.6728828829,"19680":0.6738738739,"19681":0.6748648649,"19682":0.6758558559,"19683":0.6768468468,"19684":0.6778378378,"19685":0.6788288288,"19686":0.6798198198,"19687":0.6808108108,"19688":0.6818018018,"19689":0.6827927928,"19690":0.6837837838,"19691":0.6847747748,"19692":0.6857657658,"19693":0.6867567568,"19694":0.6877477477,"19695":0.6887387387,"19696":0.6897297297,"19697":0.6907207207,"19698":0.6917117117,"19699":0.6927027027,"19700":0.6936936937,"19701":0.6946846847,"19702":0.6956756757,"19703":0.6966666667,"19704":0.6976576577,"19705":0.6986486486,"19706":0.6996396396,"19707":0.7006306306,"19708":0.7016216216,"19709":0.7026126126,"19710":0.7036036036,"19711":0.7045945946,"19712":0.7055855856,"19713":0.7065765766,"19714":0.7075675676,"19715":0.7085585586,"19716":0.7095495495,"19717":0.7105405405,"19718":0.7115315315,"19719":0.7125225225,"19720":0.7135135135,"19721":0.7145045045,"19722":0.7154954955,"19723":0.7164864865,"19724":0.7174774775,"19725":0.7184684685,"19726":0.7194594595,"19727":0.7204504505,"19728":0.7214414414,"19729":0.7224324324,"19730":0.7234234234,"19731":0.7244144144,"19732":0.7254054054,"19733":0.7263963964,"19734":0.7273873874,"19735":0.7283783784,"19736":0.7293693694,"19737":0.7303603604,"19738":0.7313513514,"19739":0.7323423423,"19740":0.7333333333,"19741":0.7343243243,"19742":0.7353153153,"19743":0.7363063063,"19744":0.7372972973,"19745":0.7382882883,"19746":0.7392792793,"19747":0.7402702703,"19748":0.7412612613,"19749":0.7422522523,"19750":0.7432432432,"19751":0.7442342342,"19752":0.7452252252,"19753":0.7462162162,"19754":0.7472072072,"19755":0.7481981982,"19756":0.7491891892,"19757":0.7501801802,"19758":0.7511711712,"19759":0.7521621622,"19760":0.7531531532,"19761":0.7541441441,"19762":0.7551351351,"19763":0.7561261261,"19764":0.7571171171,"19765":0.7581081081,"19766":0.7590990991,"19767":0.7600900901,"19768":0.7610810811,"19769":0.7620720721,"19770":0.7630630631,"19771":0.7640540541,"19772":0.765045045,"19773":0.766036036,"19774":0.767027027,"19775":0.768018018,"19776":0.769009009,"19777":0.77,"19778":0.770990991,"19779":0.771981982,"19780":0.772972973,"19781":0.773963964,"19782":0.774954955,"19783":0.7759459459,"19784":0.7769369369,"19785":0.7779279279,"19786":0.7789189189,"19787":0.7799099099,"19788":0.7809009009,"19789":0.7818918919,"19790":0.7828828829,"19791":0.7838738739,"19792":0.7848648649,"19793":0.7858558559,"19794":0.7868468468,"19795":0.7878378378,"19796":0.7888288288,"19797":0.7898198198,"19798":0.7908108108,"19799":0.7918018018,"19800":0.7927927928,"19801":0.7937837838,"19802":0.7947747748,"19803":0.7957657658,"19804":0.7967567568,"19805":0.7977477477,"19806":0.7987387387,"19807":0.7997297297,"19808":0.8007207207,"19809":0.8017117117,"19810":0.8027027027,"19811":0.8036936937,"19812":0.8046846847,"19813":0.8056756757,"19814":0.8066666667,"19815":0.8076576577,"19816":0.8086486486,"19817":0.8096396396,"19818":0.8106306306,"19819":0.8116216216,"19820":0.8126126126,"19821":0.8136036036,"19822":0.8145945946,"19823":0.8155855856,"19824":0.8165765766,"19825":0.8175675676,"19826":0.8185585586,"19827":0.8195495495,"19828":0.8205405405,"19829":0.8215315315,"19830":0.8225225225,"19831":0.8235135135,"19832":0.8245045045,"19833":0.8254954955,"19834":0.8264864865,"19835":0.8274774775,"19836":0.8284684685,"19837":0.8294594595,"19838":0.8304504505,"19839":0.8314414414,"19840":0.8324324324,"19841":0.8334234234,"19842":0.8344144144,"19843":0.8354054054,"19844":0.8363963964,"19845":0.8373873874,"19846":0.8383783784,"19847":0.8393693694,"19848":0.8403603604,"19849":0.8413513514,"19850":0.8423423423,"19851":0.8433333333,"19852":0.8443243243,"19853":0.8453153153,"19854":0.8463063063,"19855":0.8472972973,"19856":0.8482882883,"19857":0.8492792793,"19858":0.8502702703,"19859":0.8512612613,"19860":0.8522522523,"19861":0.8532432432,"19862":0.8542342342,"19863":0.8552252252,"19864":0.8562162162,"19865":0.8572072072,"19866":0.8581981982,"19867":0.8591891892,"19868":0.8601801802,"19869":0.8611711712,"19870":0.8621621622,"19871":0.8631531532,"19872":0.8641441441,"19873":0.8651351351,"19874":0.8661261261,"19875":0.8671171171,"19876":0.8681081081,"19877":0.8690990991,"19878":0.8700900901,"19879":0.8710810811,"19880":0.8720720721,"19881":0.8730630631,"19882":0.8740540541,"19883":0.875045045,"19884":0.876036036,"19885":0.877027027,"19886":0.878018018,"19887":0.879009009,"19888":0.88,"19889":0.880990991,"19890":0.881981982,"19891":0.882972973,"19892":0.883963964,"19893":0.884954955,"19894":0.8859459459,"19895":0.8869369369,"19896":0.8879279279,"19897":0.8889189189,"19898":0.8899099099,"19899":0.8909009009,"19900":0.8918918919,"19901":0.8928828829,"19902":0.8938738739,"19903":0.8948648649,"19904":0.8958558559,"19905":0.8968468468,"19906":0.8978378378,"19907":0.8988288288,"19908":0.8998198198,"19909":0.9008108108,"19910":0.9018018018,"19911":0.9027927928,"19912":0.9037837838,"19913":0.9047747748,"19914":0.9057657658,"19915":0.9067567568,"19916":0.9077477477,"19917":0.9087387387,"19918":0.9097297297,"19919":0.9107207207,"19920":0.9117117117,"19921":0.9127027027,"19922":0.9136936937,"19923":0.9146846847,"19924":0.9156756757,"19925":0.9166666667,"19926":0.9176576577,"19927":0.9186486486,"19928":0.9196396396,"19929":0.9206306306,"19930":0.9216216216,"19931":0.9226126126,"19932":0.9236036036,"19933":0.9245945946,"19934":0.9255855856,"19935":0.9265765766,"19936":0.9275675676,"19937":0.9285585586,"19938":0.9295495495,"19939":0.9305405405,"19940":0.9315315315,"19941":0.9325225225,"19942":0.9335135135,"19943":0.9345045045,"19944":0.9354954955,"19945":0.9364864865,"19946":0.9374774775,"19947":0.9384684685,"19948":0.9394594595,"19949":0.9404504505,"19950":0.9414414414,"19951":0.9424324324,"19952":0.9434234234,"19953":0.9444144144,"19954":0.9454054054,"19955":0.9463963964,"19956":0.9473873874,"19957":0.9483783784,"19958":0.9493693694,"19959":0.9503603604,"19960":0.9513513514,"19961":0.9523423423,"19962":0.9533333333,"19963":0.9543243243,"19964":0.9553153153,"19965":0.9563063063,"19966":0.9572972973,"19967":0.9582882883,"19968":0.9592792793,"19969":0.9602702703,"19970":0.9612612613,"19971":0.9622522523,"19972":0.9632432432,"19973":0.9642342342,"19974":0.9652252252,"19975":0.9662162162,"19976":0.9672072072,"19977":0.9681981982,"19978":0.9691891892,"19979":0.9701801802,"19980":0.9711711712,"19981":0.9721621622,"19982":0.9731531532,"19983":0.9741441441,"19984":0.9751351351,"19985":0.9761261261,"19986":0.9771171171,"19987":0.9781081081,"19988":0.9790990991,"19989":0.9800900901,"19990":0.9810810811,"19991":0.9820720721,"19992":0.9830630631,"19993":0.9840540541,"19994":0.985045045,"19995":0.986036036,"19996":0.987027027,"19997":0.988018018,"19998":0.989009009,"19999":0.99,"20000":0.0,"20001":0.000990991,"20002":0.001981982,"20003":0.002972973,"20004":0.003963964,"20005":0.004954955,"20006":0.0059459459,"20007":0.0069369369,"20008":0.0079279279,"20009":0.0089189189,"20010":0.0099099099,"20011":0.0109009009,"20012":0.0118918919,"20013":0.0128828829,"20014":0.0138738739,"20015":0.0148648649,"20016":0.0158558559,"20017":0.0168468468,"20018":0.0178378378,"20019":0.0188288288,"20020":0.0198198198,"20021":0.0208108108,"20022":0.0218018018,"20023":0.0227927928,"20024":0.0237837838,"20025":0.0247747748,"20026":0.0257657658,"20027":0.0267567568,"20028":0.0277477477,"20029":0.0287387387,"20030":0.0297297297,"20031":0.0307207207,"20032":0.0317117117,"20033":0.0327027027,"20034":0.0336936937,"20035":0.0346846847,"20036":0.0356756757,"20037":0.0366666667,"20038":0.0376576577,"20039":0.0386486486,"20040":0.0396396396,"20041":0.0406306306,"20042":0.0416216216,"20043":0.0426126126,"20044":0.0436036036,"20045":0.0445945946,"20046":0.0455855856,"20047":0.0465765766,"20048":0.0475675676,"20049":0.0485585586,"20050":0.0495495495,"20051":0.0505405405,"20052":0.0515315315,"20053":0.0525225225,"20054":0.0535135135,"20055":0.0545045045,"20056":0.0554954955,"20057":0.0564864865,"20058":0.0574774775,"20059":0.0584684685,"20060":0.0594594595,"20061":0.0604504505,"20062":0.0614414414,"20063":0.0624324324,"20064":0.0634234234,"20065":0.0644144144,"20066":0.0654054054,"20067":0.0663963964,"20068":0.0673873874,"20069":0.0683783784,"20070":0.0693693694,"20071":0.0703603604,"20072":0.0713513514,"20073":0.0723423423,"20074":0.0733333333,"20075":0.0743243243,"20076":0.0753153153,"20077":0.0763063063,"20078":0.0772972973,"20079":0.0782882883,"20080":0.0792792793,"20081":0.0802702703,"20082":0.0812612613,"20083":0.0822522523,"20084":0.0832432432,"20085":0.0842342342,"20086":0.0852252252,"20087":0.0862162162,"20088":0.0872072072,"20089":0.0881981982,"20090":0.0891891892,"20091":0.0901801802,"20092":0.0911711712,"20093":0.0921621622,"20094":0.0931531532,"20095":0.0941441441,"20096":0.0951351351,"20097":0.0961261261,"20098":0.0971171171,"20099":0.0981081081,"20100":0.0990990991,"20101":0.1000900901,"20102":0.1010810811,"20103":0.1020720721,"20104":0.1030630631,"20105":0.1040540541,"20106":0.105045045,"20107":0.106036036,"20108":0.107027027,"20109":0.108018018,"20110":0.109009009,"20111":0.11,"20112":0.110990991,"20113":0.111981982,"20114":0.112972973,"20115":0.113963964,"20116":0.114954955,"20117":0.1159459459,"20118":0.1169369369,"20119":0.1179279279,"20120":0.1189189189,"20121":0.1199099099,"20122":0.1209009009,"20123":0.1218918919,"20124":0.1228828829,"20125":0.1238738739,"20126":0.1248648649,"20127":0.1258558559,"20128":0.1268468468,"20129":0.1278378378,"20130":0.1288288288,"20131":0.1298198198,"20132":0.1308108108,"20133":0.1318018018,"20134":0.1327927928,"20135":0.1337837838,"20136":0.1347747748,"20137":0.1357657658,"20138":0.1367567568,"20139":0.1377477477,"20140":0.1387387387,"20141":0.1397297297,"20142":0.1407207207,"20143":0.1417117117,"20144":0.1427027027,"20145":0.1436936937,"20146":0.1446846847,"20147":0.1456756757,"20148":0.1466666667,"20149":0.1476576577,"20150":0.1486486486,"20151":0.1496396396,"20152":0.1506306306,"20153":0.1516216216,"20154":0.1526126126,"20155":0.1536036036,"20156":0.1545945946,"20157":0.1555855856,"20158":0.1565765766,"20159":0.1575675676,"20160":0.1585585586,"20161":0.1595495495,"20162":0.1605405405,"20163":0.1615315315,"20164":0.1625225225,"20165":0.1635135135,"20166":0.1645045045,"20167":0.1654954955,"20168":0.1664864865,"20169":0.1674774775,"20170":0.1684684685,"20171":0.1694594595,"20172":0.1704504505,"20173":0.1714414414,"20174":0.1724324324,"20175":0.1734234234,"20176":0.1744144144,"20177":0.1754054054,"20178":0.1763963964,"20179":0.1773873874,"20180":0.1783783784,"20181":0.1793693694,"20182":0.1803603604,"20183":0.1813513514,"20184":0.1823423423,"20185":0.1833333333,"20186":0.1843243243,"20187":0.1853153153,"20188":0.1863063063,"20189":0.1872972973,"20190":0.1882882883,"20191":0.1892792793,"20192":0.1902702703,"20193":0.1912612613,"20194":0.1922522523,"20195":0.1932432432,"20196":0.1942342342,"20197":0.1952252252,"20198":0.1962162162,"20199":0.1972072072,"20200":0.1981981982,"20201":0.1991891892,"20202":0.2001801802,"20203":0.2011711712,"20204":0.2021621622,"20205":0.2031531532,"20206":0.2041441441,"20207":0.2051351351,"20208":0.2061261261,"20209":0.2071171171,"20210":0.2081081081,"20211":0.2090990991,"20212":0.2100900901,"20213":0.2110810811,"20214":0.2120720721,"20215":0.2130630631,"20216":0.2140540541,"20217":0.215045045,"20218":0.216036036,"20219":0.217027027,"20220":0.218018018,"20221":0.219009009,"20222":0.22,"20223":0.220990991,"20224":0.221981982,"20225":0.222972973,"20226":0.223963964,"20227":0.224954955,"20228":0.2259459459,"20229":0.2269369369,"20230":0.2279279279,"20231":0.2289189189,"20232":0.2299099099,"20233":0.2309009009,"20234":0.2318918919,"20235":0.2328828829,"20236":0.2338738739,"20237":0.2348648649,"20238":0.2358558559,"20239":0.2368468468,"20240":0.2378378378,"20241":0.2388288288,"20242":0.2398198198,"20243":0.2408108108,"20244":0.2418018018,"20245":0.2427927928,"20246":0.2437837838,"20247":0.2447747748,"20248":0.2457657658,"20249":0.2467567568,"20250":0.2477477477,"20251":0.2487387387,"20252":0.2497297297,"20253":0.2507207207,"20254":0.2517117117,"20255":0.2527027027,"20256":0.2536936937,"20257":0.2546846847,"20258":0.2556756757,"20259":0.2566666667,"20260":0.2576576577,"20261":0.2586486486,"20262":0.2596396396,"20263":0.2606306306,"20264":0.2616216216,"20265":0.2626126126,"20266":0.2636036036,"20267":0.2645945946,"20268":0.2655855856,"20269":0.2665765766,"20270":0.2675675676,"20271":0.2685585586,"20272":0.2695495495,"20273":0.2705405405,"20274":0.2715315315,"20275":0.2725225225,"20276":0.2735135135,"20277":0.2745045045,"20278":0.2754954955,"20279":0.2764864865,"20280":0.2774774775,"20281":0.2784684685,"20282":0.2794594595,"20283":0.2804504505,"20284":0.2814414414,"20285":0.2824324324,"20286":0.2834234234,"20287":0.2844144144,"20288":0.2854054054,"20289":0.2863963964,"20290":0.2873873874,"20291":0.2883783784,"20292":0.2893693694,"20293":0.2903603604,"20294":0.2913513514,"20295":0.2923423423,"20296":0.2933333333,"20297":0.2943243243,"20298":0.2953153153,"20299":0.2963063063,"20300":0.2972972973,"20301":0.2982882883,"20302":0.2992792793,"20303":0.3002702703,"20304":0.3012612613,"20305":0.3022522523,"20306":0.3032432432,"20307":0.3042342342,"20308":0.3052252252,"20309":0.3062162162,"20310":0.3072072072,"20311":0.3081981982,"20312":0.3091891892,"20313":0.3101801802,"20314":0.3111711712,"20315":0.3121621622,"20316":0.3131531532,"20317":0.3141441441,"20318":0.3151351351,"20319":0.3161261261,"20320":0.3171171171,"20321":0.3181081081,"20322":0.3190990991,"20323":0.3200900901,"20324":0.3210810811,"20325":0.3220720721,"20326":0.3230630631,"20327":0.3240540541,"20328":0.325045045,"20329":0.326036036,"20330":0.327027027,"20331":0.328018018,"20332":0.329009009,"20333":0.33,"20334":0.330990991,"20335":0.331981982,"20336":0.332972973,"20337":0.333963964,"20338":0.334954955,"20339":0.3359459459,"20340":0.3369369369,"20341":0.3379279279,"20342":0.3389189189,"20343":0.3399099099,"20344":0.3409009009,"20345":0.3418918919,"20346":0.3428828829,"20347":0.3438738739,"20348":0.3448648649,"20349":0.3458558559,"20350":0.3468468468,"20351":0.3478378378,"20352":0.3488288288,"20353":0.3498198198,"20354":0.3508108108,"20355":0.3518018018,"20356":0.3527927928,"20357":0.3537837838,"20358":0.3547747748,"20359":0.3557657658,"20360":0.3567567568,"20361":0.3577477477,"20362":0.3587387387,"20363":0.3597297297,"20364":0.3607207207,"20365":0.3617117117,"20366":0.3627027027,"20367":0.3636936937,"20368":0.3646846847,"20369":0.3656756757,"20370":0.3666666667,"20371":0.3676576577,"20372":0.3686486486,"20373":0.3696396396,"20374":0.3706306306,"20375":0.3716216216,"20376":0.3726126126,"20377":0.3736036036,"20378":0.3745945946,"20379":0.3755855856,"20380":0.3765765766,"20381":0.3775675676,"20382":0.3785585586,"20383":0.3795495495,"20384":0.3805405405,"20385":0.3815315315,"20386":0.3825225225,"20387":0.3835135135,"20388":0.3845045045,"20389":0.3854954955,"20390":0.3864864865,"20391":0.3874774775,"20392":0.3884684685,"20393":0.3894594595,"20394":0.3904504505,"20395":0.3914414414,"20396":0.3924324324,"20397":0.3934234234,"20398":0.3944144144,"20399":0.3954054054,"20400":0.3963963964,"20401":0.3973873874,"20402":0.3983783784,"20403":0.3993693694,"20404":0.4003603604,"20405":0.4013513514,"20406":0.4023423423,"20407":0.4033333333,"20408":0.4043243243,"20409":0.4053153153,"20410":0.4063063063,"20411":0.4072972973,"20412":0.4082882883,"20413":0.4092792793,"20414":0.4102702703,"20415":0.4112612613,"20416":0.4122522523,"20417":0.4132432432,"20418":0.4142342342,"20419":0.4152252252,"20420":0.4162162162,"20421":0.4172072072,"20422":0.4181981982,"20423":0.4191891892,"20424":0.4201801802,"20425":0.4211711712,"20426":0.4221621622,"20427":0.4231531532,"20428":0.4241441441,"20429":0.4251351351,"20430":0.4261261261,"20431":0.4271171171,"20432":0.4281081081,"20433":0.4290990991,"20434":0.4300900901,"20435":0.4310810811,"20436":0.4320720721,"20437":0.4330630631,"20438":0.4340540541,"20439":0.435045045,"20440":0.436036036,"20441":0.437027027,"20442":0.438018018,"20443":0.439009009,"20444":0.44,"20445":0.440990991,"20446":0.441981982,"20447":0.442972973,"20448":0.443963964,"20449":0.444954955,"20450":0.4459459459,"20451":0.4469369369,"20452":0.4479279279,"20453":0.4489189189,"20454":0.4499099099,"20455":0.4509009009,"20456":0.4518918919,"20457":0.4528828829,"20458":0.4538738739,"20459":0.4548648649,"20460":0.4558558559,"20461":0.4568468468,"20462":0.4578378378,"20463":0.4588288288,"20464":0.4598198198,"20465":0.4608108108,"20466":0.4618018018,"20467":0.4627927928,"20468":0.4637837838,"20469":0.4647747748,"20470":0.4657657658,"20471":0.4667567568,"20472":0.4677477477,"20473":0.4687387387,"20474":0.4697297297,"20475":0.4707207207,"20476":0.4717117117,"20477":0.4727027027,"20478":0.4736936937,"20479":0.4746846847,"20480":0.4756756757,"20481":0.4766666667,"20482":0.4776576577,"20483":0.4786486486,"20484":0.4796396396,"20485":0.4806306306,"20486":0.4816216216,"20487":0.4826126126,"20488":0.4836036036,"20489":0.4845945946,"20490":0.4855855856,"20491":0.4865765766,"20492":0.4875675676,"20493":0.4885585586,"20494":0.4895495495,"20495":0.4905405405,"20496":0.4915315315,"20497":0.4925225225,"20498":0.4935135135,"20499":0.4945045045,"20500":0.4954954955,"20501":0.4964864865,"20502":0.4974774775,"20503":0.4984684685,"20504":0.4994594595,"20505":0.5004504505,"20506":0.5014414414,"20507":0.5024324324,"20508":0.5034234234,"20509":0.5044144144,"20510":0.5054054054,"20511":0.5063963964,"20512":0.5073873874,"20513":0.5083783784,"20514":0.5093693694,"20515":0.5103603604,"20516":0.5113513514,"20517":0.5123423423,"20518":0.5133333333,"20519":0.5143243243,"20520":0.5153153153,"20521":0.5163063063,"20522":0.5172972973,"20523":0.5182882883,"20524":0.5192792793,"20525":0.5202702703,"20526":0.5212612613,"20527":0.5222522523,"20528":0.5232432432,"20529":0.5242342342,"20530":0.5252252252,"20531":0.5262162162,"20532":0.5272072072,"20533":0.5281981982,"20534":0.5291891892,"20535":0.5301801802,"20536":0.5311711712,"20537":0.5321621622,"20538":0.5331531532,"20539":0.5341441441,"20540":0.5351351351,"20541":0.5361261261,"20542":0.5371171171,"20543":0.5381081081,"20544":0.5390990991,"20545":0.5400900901,"20546":0.5410810811,"20547":0.5420720721,"20548":0.5430630631,"20549":0.5440540541,"20550":0.545045045,"20551":0.546036036,"20552":0.547027027,"20553":0.548018018,"20554":0.549009009,"20555":0.55,"20556":0.550990991,"20557":0.551981982,"20558":0.552972973,"20559":0.553963964,"20560":0.554954955,"20561":0.5559459459,"20562":0.5569369369,"20563":0.5579279279,"20564":0.5589189189,"20565":0.5599099099,"20566":0.5609009009,"20567":0.5618918919,"20568":0.5628828829,"20569":0.5638738739,"20570":0.5648648649,"20571":0.5658558559,"20572":0.5668468468,"20573":0.5678378378,"20574":0.5688288288,"20575":0.5698198198,"20576":0.5708108108,"20577":0.5718018018,"20578":0.5727927928,"20579":0.5737837838,"20580":0.5747747748,"20581":0.5757657658,"20582":0.5767567568,"20583":0.5777477477,"20584":0.5787387387,"20585":0.5797297297,"20586":0.5807207207,"20587":0.5817117117,"20588":0.5827027027,"20589":0.5836936937,"20590":0.5846846847,"20591":0.5856756757,"20592":0.5866666667,"20593":0.5876576577,"20594":0.5886486486,"20595":0.5896396396,"20596":0.5906306306,"20597":0.5916216216,"20598":0.5926126126,"20599":0.5936036036,"20600":0.5945945946,"20601":0.5955855856,"20602":0.5965765766,"20603":0.5975675676,"20604":0.5985585586,"20605":0.5995495495,"20606":0.6005405405,"20607":0.6015315315,"20608":0.6025225225,"20609":0.6035135135,"20610":0.6045045045,"20611":0.6054954955,"20612":0.6064864865,"20613":0.6074774775,"20614":0.6084684685,"20615":0.6094594595,"20616":0.6104504505,"20617":0.6114414414,"20618":0.6124324324,"20619":0.6134234234,"20620":0.6144144144,"20621":0.6154054054,"20622":0.6163963964,"20623":0.6173873874,"20624":0.6183783784,"20625":0.6193693694,"20626":0.6203603604,"20627":0.6213513514,"20628":0.6223423423,"20629":0.6233333333,"20630":0.6243243243,"20631":0.6253153153,"20632":0.6263063063,"20633":0.6272972973,"20634":0.6282882883,"20635":0.6292792793,"20636":0.6302702703,"20637":0.6312612613,"20638":0.6322522523,"20639":0.6332432432,"20640":0.6342342342,"20641":0.6352252252,"20642":0.6362162162,"20643":0.6372072072,"20644":0.6381981982,"20645":0.6391891892,"20646":0.6401801802,"20647":0.6411711712,"20648":0.6421621622,"20649":0.6431531532,"20650":0.6441441441,"20651":0.6451351351,"20652":0.6461261261,"20653":0.6471171171,"20654":0.6481081081,"20655":0.6490990991,"20656":0.6500900901,"20657":0.6510810811,"20658":0.6520720721,"20659":0.6530630631,"20660":0.6540540541,"20661":0.655045045,"20662":0.656036036,"20663":0.657027027,"20664":0.658018018,"20665":0.659009009,"20666":0.66,"20667":0.660990991,"20668":0.661981982,"20669":0.662972973,"20670":0.663963964,"20671":0.664954955,"20672":0.6659459459,"20673":0.6669369369,"20674":0.6679279279,"20675":0.6689189189,"20676":0.6699099099,"20677":0.6709009009,"20678":0.6718918919,"20679":0.6728828829,"20680":0.6738738739,"20681":0.6748648649,"20682":0.6758558559,"20683":0.6768468468,"20684":0.6778378378,"20685":0.6788288288,"20686":0.6798198198,"20687":0.6808108108,"20688":0.6818018018,"20689":0.6827927928,"20690":0.6837837838,"20691":0.6847747748,"20692":0.6857657658,"20693":0.6867567568,"20694":0.6877477477,"20695":0.6887387387,"20696":0.6897297297,"20697":0.6907207207,"20698":0.6917117117,"20699":0.6927027027,"20700":0.6936936937,"20701":0.6946846847,"20702":0.6956756757,"20703":0.6966666667,"20704":0.6976576577,"20705":0.6986486486,"20706":0.6996396396,"20707":0.7006306306,"20708":0.7016216216,"20709":0.7026126126,"20710":0.7036036036,"20711":0.7045945946,"20712":0.7055855856,"20713":0.7065765766,"20714":0.7075675676,"20715":0.7085585586,"20716":0.7095495495,"20717":0.7105405405,"20718":0.7115315315,"20719":0.7125225225,"20720":0.7135135135,"20721":0.7145045045,"20722":0.7154954955,"20723":0.7164864865,"20724":0.7174774775,"20725":0.7184684685,"20726":0.7194594595,"20727":0.7204504505,"20728":0.7214414414,"20729":0.7224324324,"20730":0.7234234234,"20731":0.7244144144,"20732":0.7254054054,"20733":0.7263963964,"20734":0.7273873874,"20735":0.7283783784,"20736":0.7293693694,"20737":0.7303603604,"20738":0.7313513514,"20739":0.7323423423,"20740":0.7333333333,"20741":0.7343243243,"20742":0.7353153153,"20743":0.7363063063,"20744":0.7372972973,"20745":0.7382882883,"20746":0.7392792793,"20747":0.7402702703,"20748":0.7412612613,"20749":0.7422522523,"20750":0.7432432432,"20751":0.7442342342,"20752":0.7452252252,"20753":0.7462162162,"20754":0.7472072072,"20755":0.7481981982,"20756":0.7491891892,"20757":0.7501801802,"20758":0.7511711712,"20759":0.7521621622,"20760":0.7531531532,"20761":0.7541441441,"20762":0.7551351351,"20763":0.7561261261,"20764":0.7571171171,"20765":0.7581081081,"20766":0.7590990991,"20767":0.7600900901,"20768":0.7610810811,"20769":0.7620720721,"20770":0.7630630631,"20771":0.7640540541,"20772":0.765045045,"20773":0.766036036,"20774":0.767027027,"20775":0.768018018,"20776":0.769009009,"20777":0.77,"20778":0.770990991,"20779":0.771981982,"20780":0.772972973,"20781":0.773963964,"20782":0.774954955,"20783":0.7759459459,"20784":0.7769369369,"20785":0.7779279279,"20786":0.7789189189,"20787":0.7799099099,"20788":0.7809009009,"20789":0.7818918919,"20790":0.7828828829,"20791":0.7838738739,"20792":0.7848648649,"20793":0.7858558559,"20794":0.7868468468,"20795":0.7878378378,"20796":0.7888288288,"20797":0.7898198198,"20798":0.7908108108,"20799":0.7918018018,"20800":0.7927927928,"20801":0.7937837838,"20802":0.7947747748,"20803":0.7957657658,"20804":0.7967567568,"20805":0.7977477477,"20806":0.7987387387,"20807":0.7997297297,"20808":0.8007207207,"20809":0.8017117117,"20810":0.8027027027,"20811":0.8036936937,"20812":0.8046846847,"20813":0.8056756757,"20814":0.8066666667,"20815":0.8076576577,"20816":0.8086486486,"20817":0.8096396396,"20818":0.8106306306,"20819":0.8116216216,"20820":0.8126126126,"20821":0.8136036036,"20822":0.8145945946,"20823":0.8155855856,"20824":0.8165765766,"20825":0.8175675676,"20826":0.8185585586,"20827":0.8195495495,"20828":0.8205405405,"20829":0.8215315315,"20830":0.8225225225,"20831":0.8235135135,"20832":0.8245045045,"20833":0.8254954955,"20834":0.8264864865,"20835":0.8274774775,"20836":0.8284684685,"20837":0.8294594595,"20838":0.8304504505,"20839":0.8314414414,"20840":0.8324324324,"20841":0.8334234234,"20842":0.8344144144,"20843":0.8354054054,"20844":0.8363963964,"20845":0.8373873874,"20846":0.8383783784,"20847":0.8393693694,"20848":0.8403603604,"20849":0.8413513514,"20850":0.8423423423,"20851":0.8433333333,"20852":0.8443243243,"20853":0.8453153153,"20854":0.8463063063,"20855":0.8472972973,"20856":0.8482882883,"20857":0.8492792793,"20858":0.8502702703,"20859":0.8512612613,"20860":0.8522522523,"20861":0.8532432432,"20862":0.8542342342,"20863":0.8552252252,"20864":0.8562162162,"20865":0.8572072072,"20866":0.8581981982,"20867":0.8591891892,"20868":0.8601801802,"20869":0.8611711712,"20870":0.8621621622,"20871":0.8631531532,"20872":0.8641441441,"20873":0.8651351351,"20874":0.8661261261,"20875":0.8671171171,"20876":0.8681081081,"20877":0.8690990991,"20878":0.8700900901,"20879":0.8710810811,"20880":0.8720720721,"20881":0.8730630631,"20882":0.8740540541,"20883":0.875045045,"20884":0.876036036,"20885":0.877027027,"20886":0.878018018,"20887":0.879009009,"20888":0.88,"20889":0.880990991,"20890":0.881981982,"20891":0.882972973,"20892":0.883963964,"20893":0.884954955,"20894":0.8859459459,"20895":0.8869369369,"20896":0.8879279279,"20897":0.8889189189,"20898":0.8899099099,"20899":0.8909009009,"20900":0.8918918919,"20901":0.8928828829,"20902":0.8938738739,"20903":0.8948648649,"20904":0.8958558559,"20905":0.8968468468,"20906":0.8978378378,"20907":0.8988288288,"20908":0.8998198198,"20909":0.9008108108,"20910":0.9018018018,"20911":0.9027927928,"20912":0.9037837838,"20913":0.9047747748,"20914":0.9057657658,"20915":0.9067567568,"20916":0.9077477477,"20917":0.9087387387,"20918":0.9097297297,"20919":0.9107207207,"20920":0.9117117117,"20921":0.9127027027,"20922":0.9136936937,"20923":0.9146846847,"20924":0.9156756757,"20925":0.9166666667,"20926":0.9176576577,"20927":0.9186486486,"20928":0.9196396396,"20929":0.9206306306,"20930":0.9216216216,"20931":0.9226126126,"20932":0.9236036036,"20933":0.9245945946,"20934":0.9255855856,"20935":0.9265765766,"20936":0.9275675676,"20937":0.9285585586,"20938":0.9295495495,"20939":0.9305405405,"20940":0.9315315315,"20941":0.9325225225,"20942":0.9335135135,"20943":0.9345045045,"20944":0.9354954955,"20945":0.9364864865,"20946":0.9374774775,"20947":0.9384684685,"20948":0.9394594595,"20949":0.9404504505,"20950":0.9414414414,"20951":0.9424324324,"20952":0.9434234234,"20953":0.9444144144,"20954":0.9454054054,"20955":0.9463963964,"20956":0.9473873874,"20957":0.9483783784,"20958":0.9493693694,"20959":0.9503603604,"20960":0.9513513514,"20961":0.9523423423,"20962":0.9533333333,"20963":0.9543243243,"20964":0.9553153153,"20965":0.9563063063,"20966":0.9572972973,"20967":0.9582882883,"20968":0.9592792793,"20969":0.9602702703,"20970":0.9612612613,"20971":0.9622522523,"20972":0.9632432432,"20973":0.9642342342,"20974":0.9652252252,"20975":0.9662162162,"20976":0.9672072072,"20977":0.9681981982,"20978":0.9691891892,"20979":0.9701801802,"20980":0.9711711712,"20981":0.9721621622,"20982":0.9731531532,"20983":0.9741441441,"20984":0.9751351351,"20985":0.9761261261,"20986":0.9771171171,"20987":0.9781081081,"20988":0.9790990991,"20989":0.9800900901,"20990":0.9810810811,"20991":0.9820720721,"20992":0.9830630631,"20993":0.9840540541,"20994":0.985045045,"20995":0.986036036,"20996":0.987027027,"20997":0.988018018,"20998":0.989009009,"20999":0.99,"21000":0.0,"21001":0.000990991,"21002":0.001981982,"21003":0.002972973,"21004":0.003963964,"21005":0.004954955,"21006":0.0059459459,"21007":0.0069369369,"21008":0.0079279279,"21009":0.0089189189,"21010":0.0099099099,"21011":0.0109009009,"21012":0.0118918919,"21013":0.0128828829,"21014":0.0138738739,"21015":0.0148648649,"21016":0.0158558559,"21017":0.0168468468,"21018":0.0178378378,"21019":0.0188288288,"21020":0.0198198198,"21021":0.0208108108,"21022":0.0218018018,"21023":0.0227927928,"21024":0.0237837838,"21025":0.0247747748,"21026":0.0257657658,"21027":0.0267567568,"21028":0.0277477477,"21029":0.0287387387,"21030":0.0297297297,"21031":0.0307207207,"21032":0.0317117117,"21033":0.0327027027,"21034":0.0336936937,"21035":0.0346846847,"21036":0.0356756757,"21037":0.0366666667,"21038":0.0376576577,"21039":0.0386486486,"21040":0.0396396396,"21041":0.0406306306,"21042":0.0416216216,"21043":0.0426126126,"21044":0.0436036036,"21045":0.0445945946,"21046":0.0455855856,"21047":0.0465765766,"21048":0.0475675676,"21049":0.0485585586,"21050":0.0495495495,"21051":0.0505405405,"21052":0.0515315315,"21053":0.0525225225,"21054":0.0535135135,"21055":0.0545045045,"21056":0.0554954955,"21057":0.0564864865,"21058":0.0574774775,"21059":0.0584684685,"21060":0.0594594595,"21061":0.0604504505,"21062":0.0614414414,"21063":0.0624324324,"21064":0.0634234234,"21065":0.0644144144,"21066":0.0654054054,"21067":0.0663963964,"21068":0.0673873874,"21069":0.0683783784,"21070":0.0693693694,"21071":0.0703603604,"21072":0.0713513514,"21073":0.0723423423,"21074":0.0733333333,"21075":0.0743243243,"21076":0.0753153153,"21077":0.0763063063,"21078":0.0772972973,"21079":0.0782882883,"21080":0.0792792793,"21081":0.0802702703,"21082":0.0812612613,"21083":0.0822522523,"21084":0.0832432432,"21085":0.0842342342,"21086":0.0852252252,"21087":0.0862162162,"21088":0.0872072072,"21089":0.0881981982,"21090":0.0891891892,"21091":0.0901801802,"21092":0.0911711712,"21093":0.0921621622,"21094":0.0931531532,"21095":0.0941441441,"21096":0.0951351351,"21097":0.0961261261,"21098":0.0971171171,"21099":0.0981081081,"21100":0.0990990991,"21101":0.1000900901,"21102":0.1010810811,"21103":0.1020720721,"21104":0.1030630631,"21105":0.1040540541,"21106":0.105045045,"21107":0.106036036,"21108":0.107027027,"21109":0.108018018,"21110":0.109009009,"21111":0.11,"21112":0.110990991,"21113":0.111981982,"21114":0.112972973,"21115":0.113963964,"21116":0.114954955,"21117":0.1159459459,"21118":0.1169369369,"21119":0.1179279279,"21120":0.1189189189,"21121":0.1199099099,"21122":0.1209009009,"21123":0.1218918919,"21124":0.1228828829,"21125":0.1238738739,"21126":0.1248648649,"21127":0.1258558559,"21128":0.1268468468,"21129":0.1278378378,"21130":0.1288288288,"21131":0.1298198198,"21132":0.1308108108,"21133":0.1318018018,"21134":0.1327927928,"21135":0.1337837838,"21136":0.1347747748,"21137":0.1357657658,"21138":0.1367567568,"21139":0.1377477477,"21140":0.1387387387,"21141":0.1397297297,"21142":0.1407207207,"21143":0.1417117117,"21144":0.1427027027,"21145":0.1436936937,"21146":0.1446846847,"21147":0.1456756757,"21148":0.1466666667,"21149":0.1476576577,"21150":0.1486486486,"21151":0.1496396396,"21152":0.1506306306,"21153":0.1516216216,"21154":0.1526126126,"21155":0.1536036036,"21156":0.1545945946,"21157":0.1555855856,"21158":0.1565765766,"21159":0.1575675676,"21160":0.1585585586,"21161":0.1595495495,"21162":0.1605405405,"21163":0.1615315315,"21164":0.1625225225,"21165":0.1635135135,"21166":0.1645045045,"21167":0.1654954955,"21168":0.1664864865,"21169":0.1674774775,"21170":0.1684684685,"21171":0.1694594595,"21172":0.1704504505,"21173":0.1714414414,"21174":0.1724324324,"21175":0.1734234234,"21176":0.1744144144,"21177":0.1754054054,"21178":0.1763963964,"21179":0.1773873874,"21180":0.1783783784,"21181":0.1793693694,"21182":0.1803603604,"21183":0.1813513514,"21184":0.1823423423,"21185":0.1833333333,"21186":0.1843243243,"21187":0.1853153153,"21188":0.1863063063,"21189":0.1872972973,"21190":0.1882882883,"21191":0.1892792793,"21192":0.1902702703,"21193":0.1912612613,"21194":0.1922522523,"21195":0.1932432432,"21196":0.1942342342,"21197":0.1952252252,"21198":0.1962162162,"21199":0.1972072072,"21200":0.1981981982,"21201":0.1991891892,"21202":0.2001801802,"21203":0.2011711712,"21204":0.2021621622,"21205":0.2031531532,"21206":0.2041441441,"21207":0.2051351351,"21208":0.2061261261,"21209":0.2071171171,"21210":0.2081081081,"21211":0.2090990991,"21212":0.2100900901,"21213":0.2110810811,"21214":0.2120720721,"21215":0.2130630631,"21216":0.2140540541,"21217":0.215045045,"21218":0.216036036,"21219":0.217027027,"21220":0.218018018,"21221":0.219009009,"21222":0.22,"21223":0.220990991,"21224":0.221981982,"21225":0.222972973,"21226":0.223963964,"21227":0.224954955,"21228":0.2259459459,"21229":0.2269369369,"21230":0.2279279279,"21231":0.2289189189,"21232":0.2299099099,"21233":0.2309009009,"21234":0.2318918919,"21235":0.2328828829,"21236":0.2338738739,"21237":0.2348648649,"21238":0.2358558559,"21239":0.2368468468,"21240":0.2378378378,"21241":0.2388288288,"21242":0.2398198198,"21243":0.2408108108,"21244":0.2418018018,"21245":0.2427927928,"21246":0.2437837838,"21247":0.2447747748,"21248":0.2457657658,"21249":0.2467567568,"21250":0.2477477477,"21251":0.2487387387,"21252":0.2497297297,"21253":0.2507207207,"21254":0.2517117117,"21255":0.2527027027,"21256":0.2536936937,"21257":0.2546846847,"21258":0.2556756757,"21259":0.2566666667,"21260":0.2576576577,"21261":0.2586486486,"21262":0.2596396396,"21263":0.2606306306,"21264":0.2616216216,"21265":0.2626126126,"21266":0.2636036036,"21267":0.2645945946,"21268":0.2655855856,"21269":0.2665765766,"21270":0.2675675676,"21271":0.2685585586,"21272":0.2695495495,"21273":0.2705405405,"21274":0.2715315315,"21275":0.2725225225,"21276":0.2735135135,"21277":0.2745045045,"21278":0.2754954955,"21279":0.2764864865,"21280":0.2774774775,"21281":0.2784684685,"21282":0.2794594595,"21283":0.2804504505,"21284":0.2814414414,"21285":0.2824324324,"21286":0.2834234234,"21287":0.2844144144,"21288":0.2854054054,"21289":0.2863963964,"21290":0.2873873874,"21291":0.2883783784,"21292":0.2893693694,"21293":0.2903603604,"21294":0.2913513514,"21295":0.2923423423,"21296":0.2933333333,"21297":0.2943243243,"21298":0.2953153153,"21299":0.2963063063,"21300":0.2972972973,"21301":0.2982882883,"21302":0.2992792793,"21303":0.3002702703,"21304":0.3012612613,"21305":0.3022522523,"21306":0.3032432432,"21307":0.3042342342,"21308":0.3052252252,"21309":0.3062162162,"21310":0.3072072072,"21311":0.3081981982,"21312":0.3091891892,"21313":0.3101801802,"21314":0.3111711712,"21315":0.3121621622,"21316":0.3131531532,"21317":0.3141441441,"21318":0.3151351351,"21319":0.3161261261,"21320":0.3171171171,"21321":0.3181081081,"21322":0.3190990991,"21323":0.3200900901,"21324":0.3210810811,"21325":0.3220720721,"21326":0.3230630631,"21327":0.3240540541,"21328":0.325045045,"21329":0.326036036,"21330":0.327027027,"21331":0.328018018,"21332":0.329009009,"21333":0.33,"21334":0.330990991,"21335":0.331981982,"21336":0.332972973,"21337":0.333963964,"21338":0.334954955,"21339":0.3359459459,"21340":0.3369369369,"21341":0.3379279279,"21342":0.3389189189,"21343":0.3399099099,"21344":0.3409009009,"21345":0.3418918919,"21346":0.3428828829,"21347":0.3438738739,"21348":0.3448648649,"21349":0.3458558559,"21350":0.3468468468,"21351":0.3478378378,"21352":0.3488288288,"21353":0.3498198198,"21354":0.3508108108,"21355":0.3518018018,"21356":0.3527927928,"21357":0.3537837838,"21358":0.3547747748,"21359":0.3557657658,"21360":0.3567567568,"21361":0.3577477477,"21362":0.3587387387,"21363":0.3597297297,"21364":0.3607207207,"21365":0.3617117117,"21366":0.3627027027,"21367":0.3636936937,"21368":0.3646846847,"21369":0.3656756757,"21370":0.3666666667,"21371":0.3676576577,"21372":0.3686486486,"21373":0.3696396396,"21374":0.3706306306,"21375":0.3716216216,"21376":0.3726126126,"21377":0.3736036036,"21378":0.3745945946,"21379":0.3755855856,"21380":0.3765765766,"21381":0.3775675676,"21382":0.3785585586,"21383":0.3795495495,"21384":0.3805405405,"21385":0.3815315315,"21386":0.3825225225,"21387":0.3835135135,"21388":0.3845045045,"21389":0.3854954955,"21390":0.3864864865,"21391":0.3874774775,"21392":0.3884684685,"21393":0.3894594595,"21394":0.3904504505,"21395":0.3914414414,"21396":0.3924324324,"21397":0.3934234234,"21398":0.3944144144,"21399":0.3954054054,"21400":0.3963963964,"21401":0.3973873874,"21402":0.3983783784,"21403":0.3993693694,"21404":0.4003603604,"21405":0.4013513514,"21406":0.4023423423,"21407":0.4033333333,"21408":0.4043243243,"21409":0.4053153153,"21410":0.4063063063,"21411":0.4072972973,"21412":0.4082882883,"21413":0.4092792793,"21414":0.4102702703,"21415":0.4112612613,"21416":0.4122522523,"21417":0.4132432432,"21418":0.4142342342,"21419":0.4152252252,"21420":0.4162162162,"21421":0.4172072072,"21422":0.4181981982,"21423":0.4191891892,"21424":0.4201801802,"21425":0.4211711712,"21426":0.4221621622,"21427":0.4231531532,"21428":0.4241441441,"21429":0.4251351351,"21430":0.4261261261,"21431":0.4271171171,"21432":0.4281081081,"21433":0.4290990991,"21434":0.4300900901,"21435":0.4310810811,"21436":0.4320720721,"21437":0.4330630631,"21438":0.4340540541,"21439":0.435045045,"21440":0.436036036,"21441":0.437027027,"21442":0.438018018,"21443":0.439009009,"21444":0.44,"21445":0.440990991,"21446":0.441981982,"21447":0.442972973,"21448":0.443963964,"21449":0.444954955,"21450":0.4459459459,"21451":0.4469369369,"21452":0.4479279279,"21453":0.4489189189,"21454":0.4499099099,"21455":0.4509009009,"21456":0.4518918919,"21457":0.4528828829,"21458":0.4538738739,"21459":0.4548648649,"21460":0.4558558559,"21461":0.4568468468,"21462":0.4578378378,"21463":0.4588288288,"21464":0.4598198198,"21465":0.4608108108,"21466":0.4618018018,"21467":0.4627927928,"21468":0.4637837838,"21469":0.4647747748,"21470":0.4657657658,"21471":0.4667567568,"21472":0.4677477477,"21473":0.4687387387,"21474":0.4697297297,"21475":0.4707207207,"21476":0.4717117117,"21477":0.4727027027,"21478":0.4736936937,"21479":0.4746846847,"21480":0.4756756757,"21481":0.4766666667,"21482":0.4776576577,"21483":0.4786486486,"21484":0.4796396396,"21485":0.4806306306,"21486":0.4816216216,"21487":0.4826126126,"21488":0.4836036036,"21489":0.4845945946,"21490":0.4855855856,"21491":0.4865765766,"21492":0.4875675676,"21493":0.4885585586,"21494":0.4895495495,"21495":0.4905405405,"21496":0.4915315315,"21497":0.4925225225,"21498":0.4935135135,"21499":0.4945045045,"21500":0.4954954955,"21501":0.4964864865,"21502":0.4974774775,"21503":0.4984684685,"21504":0.4994594595,"21505":0.5004504505,"21506":0.5014414414,"21507":0.5024324324,"21508":0.5034234234,"21509":0.5044144144,"21510":0.5054054054,"21511":0.5063963964,"21512":0.5073873874,"21513":0.5083783784,"21514":0.5093693694,"21515":0.5103603604,"21516":0.5113513514,"21517":0.5123423423,"21518":0.5133333333,"21519":0.5143243243,"21520":0.5153153153,"21521":0.5163063063,"21522":0.5172972973,"21523":0.5182882883,"21524":0.5192792793,"21525":0.5202702703,"21526":0.5212612613,"21527":0.5222522523,"21528":0.5232432432,"21529":0.5242342342,"21530":0.5252252252,"21531":0.5262162162,"21532":0.5272072072,"21533":0.5281981982,"21534":0.5291891892,"21535":0.5301801802,"21536":0.5311711712,"21537":0.5321621622,"21538":0.5331531532,"21539":0.5341441441,"21540":0.5351351351,"21541":0.5361261261,"21542":0.5371171171,"21543":0.5381081081,"21544":0.5390990991,"21545":0.5400900901,"21546":0.5410810811,"21547":0.5420720721,"21548":0.5430630631,"21549":0.5440540541,"21550":0.545045045,"21551":0.546036036,"21552":0.547027027,"21553":0.548018018,"21554":0.549009009,"21555":0.55,"21556":0.550990991,"21557":0.551981982,"21558":0.552972973,"21559":0.553963964,"21560":0.554954955,"21561":0.5559459459,"21562":0.5569369369,"21563":0.5579279279,"21564":0.5589189189,"21565":0.5599099099,"21566":0.5609009009,"21567":0.5618918919,"21568":0.5628828829,"21569":0.5638738739,"21570":0.5648648649,"21571":0.5658558559,"21572":0.5668468468,"21573":0.5678378378,"21574":0.5688288288,"21575":0.5698198198,"21576":0.5708108108,"21577":0.5718018018,"21578":0.5727927928,"21579":0.5737837838,"21580":0.5747747748,"21581":0.5757657658,"21582":0.5767567568,"21583":0.5777477477,"21584":0.5787387387,"21585":0.5797297297,"21586":0.5807207207,"21587":0.5817117117,"21588":0.5827027027,"21589":0.5836936937,"21590":0.5846846847,"21591":0.5856756757,"21592":0.5866666667,"21593":0.5876576577,"21594":0.5886486486,"21595":0.5896396396,"21596":0.5906306306,"21597":0.5916216216,"21598":0.5926126126,"21599":0.5936036036,"21600":0.5945945946,"21601":0.5955855856,"21602":0.5965765766,"21603":0.5975675676,"21604":0.5985585586,"21605":0.5995495495,"21606":0.6005405405,"21607":0.6015315315,"21608":0.6025225225,"21609":0.6035135135,"21610":0.6045045045,"21611":0.6054954955,"21612":0.6064864865,"21613":0.6074774775,"21614":0.6084684685,"21615":0.6094594595,"21616":0.6104504505,"21617":0.6114414414,"21618":0.6124324324,"21619":0.6134234234,"21620":0.6144144144,"21621":0.6154054054,"21622":0.6163963964,"21623":0.6173873874,"21624":0.6183783784,"21625":0.6193693694,"21626":0.6203603604,"21627":0.6213513514,"21628":0.6223423423,"21629":0.6233333333,"21630":0.6243243243,"21631":0.6253153153,"21632":0.6263063063,"21633":0.6272972973,"21634":0.6282882883,"21635":0.6292792793,"21636":0.6302702703,"21637":0.6312612613,"21638":0.6322522523,"21639":0.6332432432,"21640":0.6342342342,"21641":0.6352252252,"21642":0.6362162162,"21643":0.6372072072,"21644":0.6381981982,"21645":0.6391891892,"21646":0.6401801802,"21647":0.6411711712,"21648":0.6421621622,"21649":0.6431531532,"21650":0.6441441441,"21651":0.6451351351,"21652":0.6461261261,"21653":0.6471171171,"21654":0.6481081081,"21655":0.6490990991,"21656":0.6500900901,"21657":0.6510810811,"21658":0.6520720721,"21659":0.6530630631,"21660":0.6540540541,"21661":0.655045045,"21662":0.656036036,"21663":0.657027027,"21664":0.658018018,"21665":0.659009009,"21666":0.66,"21667":0.660990991,"21668":0.661981982,"21669":0.662972973,"21670":0.663963964,"21671":0.664954955,"21672":0.6659459459,"21673":0.6669369369,"21674":0.6679279279,"21675":0.6689189189,"21676":0.6699099099,"21677":0.6709009009,"21678":0.6718918919,"21679":0.6728828829,"21680":0.6738738739,"21681":0.6748648649,"21682":0.6758558559,"21683":0.6768468468,"21684":0.6778378378,"21685":0.6788288288,"21686":0.6798198198,"21687":0.6808108108,"21688":0.6818018018,"21689":0.6827927928,"21690":0.6837837838,"21691":0.6847747748,"21692":0.6857657658,"21693":0.6867567568,"21694":0.6877477477,"21695":0.6887387387,"21696":0.6897297297,"21697":0.6907207207,"21698":0.6917117117,"21699":0.6927027027,"21700":0.6936936937,"21701":0.6946846847,"21702":0.6956756757,"21703":0.6966666667,"21704":0.6976576577,"21705":0.6986486486,"21706":0.6996396396,"21707":0.7006306306,"21708":0.7016216216,"21709":0.7026126126,"21710":0.7036036036,"21711":0.7045945946,"21712":0.7055855856,"21713":0.7065765766,"21714":0.7075675676,"21715":0.7085585586,"21716":0.7095495495,"21717":0.7105405405,"21718":0.7115315315,"21719":0.7125225225,"21720":0.7135135135,"21721":0.7145045045,"21722":0.7154954955,"21723":0.7164864865,"21724":0.7174774775,"21725":0.7184684685,"21726":0.7194594595,"21727":0.7204504505,"21728":0.7214414414,"21729":0.7224324324,"21730":0.7234234234,"21731":0.7244144144,"21732":0.7254054054,"21733":0.7263963964,"21734":0.7273873874,"21735":0.7283783784,"21736":0.7293693694,"21737":0.7303603604,"21738":0.7313513514,"21739":0.7323423423,"21740":0.7333333333,"21741":0.7343243243,"21742":0.7353153153,"21743":0.7363063063,"21744":0.7372972973,"21745":0.7382882883,"21746":0.7392792793,"21747":0.7402702703,"21748":0.7412612613,"21749":0.7422522523,"21750":0.7432432432,"21751":0.7442342342,"21752":0.7452252252,"21753":0.7462162162,"21754":0.7472072072,"21755":0.7481981982,"21756":0.7491891892,"21757":0.7501801802,"21758":0.7511711712,"21759":0.7521621622,"21760":0.7531531532,"21761":0.7541441441,"21762":0.7551351351,"21763":0.7561261261,"21764":0.7571171171,"21765":0.7581081081,"21766":0.7590990991,"21767":0.7600900901,"21768":0.7610810811,"21769":0.7620720721,"21770":0.7630630631,"21771":0.7640540541,"21772":0.765045045,"21773":0.766036036,"21774":0.767027027,"21775":0.768018018,"21776":0.769009009,"21777":0.77,"21778":0.770990991,"21779":0.771981982,"21780":0.772972973,"21781":0.773963964,"21782":0.774954955,"21783":0.7759459459,"21784":0.7769369369,"21785":0.7779279279,"21786":0.7789189189,"21787":0.7799099099,"21788":0.7809009009,"21789":0.7818918919,"21790":0.7828828829,"21791":0.7838738739,"21792":0.7848648649,"21793":0.7858558559,"21794":0.7868468468,"21795":0.7878378378,"21796":0.7888288288,"21797":0.7898198198,"21798":0.7908108108,"21799":0.7918018018,"21800":0.7927927928,"21801":0.7937837838,"21802":0.7947747748,"21803":0.7957657658,"21804":0.7967567568,"21805":0.7977477477,"21806":0.7987387387,"21807":0.7997297297,"21808":0.8007207207,"21809":0.8017117117,"21810":0.8027027027,"21811":0.8036936937,"21812":0.8046846847,"21813":0.8056756757,"21814":0.8066666667,"21815":0.8076576577,"21816":0.8086486486,"21817":0.8096396396,"21818":0.8106306306,"21819":0.8116216216,"21820":0.8126126126,"21821":0.8136036036,"21822":0.8145945946,"21823":0.8155855856,"21824":0.8165765766,"21825":0.8175675676,"21826":0.8185585586,"21827":0.8195495495,"21828":0.8205405405,"21829":0.8215315315,"21830":0.8225225225,"21831":0.8235135135,"21832":0.8245045045,"21833":0.8254954955,"21834":0.8264864865,"21835":0.8274774775,"21836":0.8284684685,"21837":0.8294594595,"21838":0.8304504505,"21839":0.8314414414,"21840":0.8324324324,"21841":0.8334234234,"21842":0.8344144144,"21843":0.8354054054,"21844":0.8363963964,"21845":0.8373873874,"21846":0.8383783784,"21847":0.8393693694,"21848":0.8403603604,"21849":0.8413513514,"21850":0.8423423423,"21851":0.8433333333,"21852":0.8443243243,"21853":0.8453153153,"21854":0.8463063063,"21855":0.8472972973,"21856":0.8482882883,"21857":0.8492792793,"21858":0.8502702703,"21859":0.8512612613,"21860":0.8522522523,"21861":0.8532432432,"21862":0.8542342342,"21863":0.8552252252,"21864":0.8562162162,"21865":0.8572072072,"21866":0.8581981982,"21867":0.8591891892,"21868":0.8601801802,"21869":0.8611711712,"21870":0.8621621622,"21871":0.8631531532,"21872":0.8641441441,"21873":0.8651351351,"21874":0.8661261261,"21875":0.8671171171,"21876":0.8681081081,"21877":0.8690990991,"21878":0.8700900901,"21879":0.8710810811,"21880":0.8720720721,"21881":0.8730630631,"21882":0.8740540541,"21883":0.875045045,"21884":0.876036036,"21885":0.877027027,"21886":0.878018018,"21887":0.879009009,"21888":0.88,"21889":0.880990991,"21890":0.881981982,"21891":0.882972973,"21892":0.883963964,"21893":0.884954955,"21894":0.8859459459,"21895":0.8869369369,"21896":0.8879279279,"21897":0.8889189189,"21898":0.8899099099,"21899":0.8909009009,"21900":0.8918918919,"21901":0.8928828829,"21902":0.8938738739,"21903":0.8948648649,"21904":0.8958558559,"21905":0.8968468468,"21906":0.8978378378,"21907":0.8988288288,"21908":0.8998198198,"21909":0.9008108108,"21910":0.9018018018,"21911":0.9027927928,"21912":0.9037837838,"21913":0.9047747748,"21914":0.9057657658,"21915":0.9067567568,"21916":0.9077477477,"21917":0.9087387387,"21918":0.9097297297,"21919":0.9107207207,"21920":0.9117117117,"21921":0.9127027027,"21922":0.9136936937,"21923":0.9146846847,"21924":0.9156756757,"21925":0.9166666667,"21926":0.9176576577,"21927":0.9186486486,"21928":0.9196396396,"21929":0.9206306306,"21930":0.9216216216,"21931":0.9226126126,"21932":0.9236036036,"21933":0.9245945946,"21934":0.9255855856,"21935":0.9265765766,"21936":0.9275675676,"21937":0.9285585586,"21938":0.9295495495,"21939":0.9305405405,"21940":0.9315315315,"21941":0.9325225225,"21942":0.9335135135,"21943":0.9345045045,"21944":0.9354954955,"21945":0.9364864865,"21946":0.9374774775,"21947":0.9384684685,"21948":0.9394594595,"21949":0.9404504505,"21950":0.9414414414,"21951":0.9424324324,"21952":0.9434234234,"21953":0.9444144144,"21954":0.9454054054,"21955":0.9463963964,"21956":0.9473873874,"21957":0.9483783784,"21958":0.9493693694,"21959":0.9503603604,"21960":0.9513513514,"21961":0.9523423423,"21962":0.9533333333,"21963":0.9543243243,"21964":0.9553153153,"21965":0.9563063063,"21966":0.9572972973,"21967":0.9582882883,"21968":0.9592792793,"21969":0.9602702703,"21970":0.9612612613,"21971":0.9622522523,"21972":0.9632432432,"21973":0.9642342342,"21974":0.9652252252,"21975":0.9662162162,"21976":0.9672072072,"21977":0.9681981982,"21978":0.9691891892,"21979":0.9701801802,"21980":0.9711711712,"21981":0.9721621622,"21982":0.9731531532,"21983":0.9741441441,"21984":0.9751351351,"21985":0.9761261261,"21986":0.9771171171,"21987":0.9781081081,"21988":0.9790990991,"21989":0.9800900901,"21990":0.9810810811,"21991":0.9820720721,"21992":0.9830630631,"21993":0.9840540541,"21994":0.985045045,"21995":0.986036036,"21996":0.987027027,"21997":0.988018018,"21998":0.989009009,"21999":0.99,"22000":0.0,"22001":0.000990991,"22002":0.001981982,"22003":0.002972973,"22004":0.003963964,"22005":0.004954955,"22006":0.0059459459,"22007":0.0069369369,"22008":0.0079279279,"22009":0.0089189189,"22010":0.0099099099,"22011":0.0109009009,"22012":0.0118918919,"22013":0.0128828829,"22014":0.0138738739,"22015":0.0148648649,"22016":0.0158558559,"22017":0.0168468468,"22018":0.0178378378,"22019":0.0188288288,"22020":0.0198198198,"22021":0.0208108108,"22022":0.0218018018,"22023":0.0227927928,"22024":0.0237837838,"22025":0.0247747748,"22026":0.0257657658,"22027":0.0267567568,"22028":0.0277477477,"22029":0.0287387387,"22030":0.0297297297,"22031":0.0307207207,"22032":0.0317117117,"22033":0.0327027027,"22034":0.0336936937,"22035":0.0346846847,"22036":0.0356756757,"22037":0.0366666667,"22038":0.0376576577,"22039":0.0386486486,"22040":0.0396396396,"22041":0.0406306306,"22042":0.0416216216,"22043":0.0426126126,"22044":0.0436036036,"22045":0.0445945946,"22046":0.0455855856,"22047":0.0465765766,"22048":0.0475675676,"22049":0.0485585586,"22050":0.0495495495,"22051":0.0505405405,"22052":0.0515315315,"22053":0.0525225225,"22054":0.0535135135,"22055":0.0545045045,"22056":0.0554954955,"22057":0.0564864865,"22058":0.0574774775,"22059":0.0584684685,"22060":0.0594594595,"22061":0.0604504505,"22062":0.0614414414,"22063":0.0624324324,"22064":0.0634234234,"22065":0.0644144144,"22066":0.0654054054,"22067":0.0663963964,"22068":0.0673873874,"22069":0.0683783784,"22070":0.0693693694,"22071":0.0703603604,"22072":0.0713513514,"22073":0.0723423423,"22074":0.0733333333,"22075":0.0743243243,"22076":0.0753153153,"22077":0.0763063063,"22078":0.0772972973,"22079":0.0782882883,"22080":0.0792792793,"22081":0.0802702703,"22082":0.0812612613,"22083":0.0822522523,"22084":0.0832432432,"22085":0.0842342342,"22086":0.0852252252,"22087":0.0862162162,"22088":0.0872072072,"22089":0.0881981982,"22090":0.0891891892,"22091":0.0901801802,"22092":0.0911711712,"22093":0.0921621622,"22094":0.0931531532,"22095":0.0941441441,"22096":0.0951351351,"22097":0.0961261261,"22098":0.0971171171,"22099":0.0981081081,"22100":0.0990990991,"22101":0.1000900901,"22102":0.1010810811,"22103":0.1020720721,"22104":0.1030630631,"22105":0.1040540541,"22106":0.105045045,"22107":0.106036036,"22108":0.107027027,"22109":0.108018018,"22110":0.109009009,"22111":0.11,"22112":0.110990991,"22113":0.111981982,"22114":0.112972973,"22115":0.113963964,"22116":0.114954955,"22117":0.1159459459,"22118":0.1169369369,"22119":0.1179279279,"22120":0.1189189189,"22121":0.1199099099,"22122":0.1209009009,"22123":0.1218918919,"22124":0.1228828829,"22125":0.1238738739,"22126":0.1248648649,"22127":0.1258558559,"22128":0.1268468468,"22129":0.1278378378,"22130":0.1288288288,"22131":0.1298198198,"22132":0.1308108108,"22133":0.1318018018,"22134":0.1327927928,"22135":0.1337837838,"22136":0.1347747748,"22137":0.1357657658,"22138":0.1367567568,"22139":0.1377477477,"22140":0.1387387387,"22141":0.1397297297,"22142":0.1407207207,"22143":0.1417117117,"22144":0.1427027027,"22145":0.1436936937,"22146":0.1446846847,"22147":0.1456756757,"22148":0.1466666667,"22149":0.1476576577,"22150":0.1486486486,"22151":0.1496396396,"22152":0.1506306306,"22153":0.1516216216,"22154":0.1526126126,"22155":0.1536036036,"22156":0.1545945946,"22157":0.1555855856,"22158":0.1565765766,"22159":0.1575675676,"22160":0.1585585586,"22161":0.1595495495,"22162":0.1605405405,"22163":0.1615315315,"22164":0.1625225225,"22165":0.1635135135,"22166":0.1645045045,"22167":0.1654954955,"22168":0.1664864865,"22169":0.1674774775,"22170":0.1684684685,"22171":0.1694594595,"22172":0.1704504505,"22173":0.1714414414,"22174":0.1724324324,"22175":0.1734234234,"22176":0.1744144144,"22177":0.1754054054,"22178":0.1763963964,"22179":0.1773873874,"22180":0.1783783784,"22181":0.1793693694,"22182":0.1803603604,"22183":0.1813513514,"22184":0.1823423423,"22185":0.1833333333,"22186":0.1843243243,"22187":0.1853153153,"22188":0.1863063063,"22189":0.1872972973,"22190":0.1882882883,"22191":0.1892792793,"22192":0.1902702703,"22193":0.1912612613,"22194":0.1922522523,"22195":0.1932432432,"22196":0.1942342342,"22197":0.1952252252,"22198":0.1962162162,"22199":0.1972072072,"22200":0.1981981982,"22201":0.1991891892,"22202":0.2001801802,"22203":0.2011711712,"22204":0.2021621622,"22205":0.2031531532,"22206":0.2041441441,"22207":0.2051351351,"22208":0.2061261261,"22209":0.2071171171,"22210":0.2081081081,"22211":0.2090990991,"22212":0.2100900901,"22213":0.2110810811,"22214":0.2120720721,"22215":0.2130630631,"22216":0.2140540541,"22217":0.215045045,"22218":0.216036036,"22219":0.217027027,"22220":0.218018018,"22221":0.219009009,"22222":0.22,"22223":0.220990991,"22224":0.221981982,"22225":0.222972973,"22226":0.223963964,"22227":0.224954955,"22228":0.2259459459,"22229":0.2269369369,"22230":0.2279279279,"22231":0.2289189189,"22232":0.2299099099,"22233":0.2309009009,"22234":0.2318918919,"22235":0.2328828829,"22236":0.2338738739,"22237":0.2348648649,"22238":0.2358558559,"22239":0.2368468468,"22240":0.2378378378,"22241":0.2388288288,"22242":0.2398198198,"22243":0.2408108108,"22244":0.2418018018,"22245":0.2427927928,"22246":0.2437837838,"22247":0.2447747748,"22248":0.2457657658,"22249":0.2467567568,"22250":0.2477477477,"22251":0.2487387387,"22252":0.2497297297,"22253":0.2507207207,"22254":0.2517117117,"22255":0.2527027027,"22256":0.2536936937,"22257":0.2546846847,"22258":0.2556756757,"22259":0.2566666667,"22260":0.2576576577,"22261":0.2586486486,"22262":0.2596396396,"22263":0.2606306306,"22264":0.2616216216,"22265":0.2626126126,"22266":0.2636036036,"22267":0.2645945946,"22268":0.2655855856,"22269":0.2665765766,"22270":0.2675675676,"22271":0.2685585586,"22272":0.2695495495,"22273":0.2705405405,"22274":0.2715315315,"22275":0.2725225225,"22276":0.2735135135,"22277":0.2745045045,"22278":0.2754954955,"22279":0.2764864865,"22280":0.2774774775,"22281":0.2784684685,"22282":0.2794594595,"22283":0.2804504505,"22284":0.2814414414,"22285":0.2824324324,"22286":0.2834234234,"22287":0.2844144144,"22288":0.2854054054,"22289":0.2863963964,"22290":0.2873873874,"22291":0.2883783784,"22292":0.2893693694,"22293":0.2903603604,"22294":0.2913513514,"22295":0.2923423423,"22296":0.2933333333,"22297":0.2943243243,"22298":0.2953153153,"22299":0.2963063063,"22300":0.2972972973,"22301":0.2982882883,"22302":0.2992792793,"22303":0.3002702703,"22304":0.3012612613,"22305":0.3022522523,"22306":0.3032432432,"22307":0.3042342342,"22308":0.3052252252,"22309":0.3062162162,"22310":0.3072072072,"22311":0.3081981982,"22312":0.3091891892,"22313":0.3101801802,"22314":0.3111711712,"22315":0.3121621622,"22316":0.3131531532,"22317":0.3141441441,"22318":0.3151351351,"22319":0.3161261261,"22320":0.3171171171,"22321":0.3181081081,"22322":0.3190990991,"22323":0.3200900901,"22324":0.3210810811,"22325":0.3220720721,"22326":0.3230630631,"22327":0.3240540541,"22328":0.325045045,"22329":0.326036036,"22330":0.327027027,"22331":0.328018018,"22332":0.329009009,"22333":0.33,"22334":0.330990991,"22335":0.331981982,"22336":0.332972973,"22337":0.333963964,"22338":0.334954955,"22339":0.3359459459,"22340":0.3369369369,"22341":0.3379279279,"22342":0.3389189189,"22343":0.3399099099,"22344":0.3409009009,"22345":0.3418918919,"22346":0.3428828829,"22347":0.3438738739,"22348":0.3448648649,"22349":0.3458558559,"22350":0.3468468468,"22351":0.3478378378,"22352":0.3488288288,"22353":0.3498198198,"22354":0.3508108108,"22355":0.3518018018,"22356":0.3527927928,"22357":0.3537837838,"22358":0.3547747748,"22359":0.3557657658,"22360":0.3567567568,"22361":0.3577477477,"22362":0.3587387387,"22363":0.3597297297,"22364":0.3607207207,"22365":0.3617117117,"22366":0.3627027027,"22367":0.3636936937,"22368":0.3646846847,"22369":0.3656756757,"22370":0.3666666667,"22371":0.3676576577,"22372":0.3686486486,"22373":0.3696396396,"22374":0.3706306306,"22375":0.3716216216,"22376":0.3726126126,"22377":0.3736036036,"22378":0.3745945946,"22379":0.3755855856,"22380":0.3765765766,"22381":0.3775675676,"22382":0.3785585586,"22383":0.3795495495,"22384":0.3805405405,"22385":0.3815315315,"22386":0.3825225225,"22387":0.3835135135,"22388":0.3845045045,"22389":0.3854954955,"22390":0.3864864865,"22391":0.3874774775,"22392":0.3884684685,"22393":0.3894594595,"22394":0.3904504505,"22395":0.3914414414,"22396":0.3924324324,"22397":0.3934234234,"22398":0.3944144144,"22399":0.3954054054,"22400":0.3963963964,"22401":0.3973873874,"22402":0.3983783784,"22403":0.3993693694,"22404":0.4003603604,"22405":0.4013513514,"22406":0.4023423423,"22407":0.4033333333,"22408":0.4043243243,"22409":0.4053153153,"22410":0.4063063063,"22411":0.4072972973,"22412":0.4082882883,"22413":0.4092792793,"22414":0.4102702703,"22415":0.4112612613,"22416":0.4122522523,"22417":0.4132432432,"22418":0.4142342342,"22419":0.4152252252,"22420":0.4162162162,"22421":0.4172072072,"22422":0.4181981982,"22423":0.4191891892,"22424":0.4201801802,"22425":0.4211711712,"22426":0.4221621622,"22427":0.4231531532,"22428":0.4241441441,"22429":0.4251351351,"22430":0.4261261261,"22431":0.4271171171,"22432":0.4281081081,"22433":0.4290990991,"22434":0.4300900901,"22435":0.4310810811,"22436":0.4320720721,"22437":0.4330630631,"22438":0.4340540541,"22439":0.435045045,"22440":0.436036036,"22441":0.437027027,"22442":0.438018018,"22443":0.439009009,"22444":0.44,"22445":0.440990991,"22446":0.441981982,"22447":0.442972973,"22448":0.443963964,"22449":0.444954955,"22450":0.4459459459,"22451":0.4469369369,"22452":0.4479279279,"22453":0.4489189189,"22454":0.4499099099,"22455":0.4509009009,"22456":0.4518918919,"22457":0.4528828829,"22458":0.4538738739,"22459":0.4548648649,"22460":0.4558558559,"22461":0.4568468468,"22462":0.4578378378,"22463":0.4588288288,"22464":0.4598198198,"22465":0.4608108108,"22466":0.4618018018,"22467":0.4627927928,"22468":0.4637837838,"22469":0.4647747748,"22470":0.4657657658,"22471":0.4667567568,"22472":0.4677477477,"22473":0.4687387387,"22474":0.4697297297,"22475":0.4707207207,"22476":0.4717117117,"22477":0.4727027027,"22478":0.4736936937,"22479":0.4746846847,"22480":0.4756756757,"22481":0.4766666667,"22482":0.4776576577,"22483":0.4786486486,"22484":0.4796396396,"22485":0.4806306306,"22486":0.4816216216,"22487":0.4826126126,"22488":0.4836036036,"22489":0.4845945946,"22490":0.4855855856,"22491":0.4865765766,"22492":0.4875675676,"22493":0.4885585586,"22494":0.4895495495,"22495":0.4905405405,"22496":0.4915315315,"22497":0.4925225225,"22498":0.4935135135,"22499":0.4945045045,"22500":0.4954954955,"22501":0.4964864865,"22502":0.4974774775,"22503":0.4984684685,"22504":0.4994594595,"22505":0.5004504505,"22506":0.5014414414,"22507":0.5024324324,"22508":0.5034234234,"22509":0.5044144144,"22510":0.5054054054,"22511":0.5063963964,"22512":0.5073873874,"22513":0.5083783784,"22514":0.5093693694,"22515":0.5103603604,"22516":0.5113513514,"22517":0.5123423423,"22518":0.5133333333,"22519":0.5143243243,"22520":0.5153153153,"22521":0.5163063063,"22522":0.5172972973,"22523":0.5182882883,"22524":0.5192792793,"22525":0.5202702703,"22526":0.5212612613,"22527":0.5222522523,"22528":0.5232432432,"22529":0.5242342342,"22530":0.5252252252,"22531":0.5262162162,"22532":0.5272072072,"22533":0.5281981982,"22534":0.5291891892,"22535":0.5301801802,"22536":0.5311711712,"22537":0.5321621622,"22538":0.5331531532,"22539":0.5341441441,"22540":0.5351351351,"22541":0.5361261261,"22542":0.5371171171,"22543":0.5381081081,"22544":0.5390990991,"22545":0.5400900901,"22546":0.5410810811,"22547":0.5420720721,"22548":0.5430630631,"22549":0.5440540541,"22550":0.545045045,"22551":0.546036036,"22552":0.547027027,"22553":0.548018018,"22554":0.549009009,"22555":0.55,"22556":0.550990991,"22557":0.551981982,"22558":0.552972973,"22559":0.553963964,"22560":0.554954955,"22561":0.5559459459,"22562":0.5569369369,"22563":0.5579279279,"22564":0.5589189189,"22565":0.5599099099,"22566":0.5609009009,"22567":0.5618918919,"22568":0.5628828829,"22569":0.5638738739,"22570":0.5648648649,"22571":0.5658558559,"22572":0.5668468468,"22573":0.5678378378,"22574":0.5688288288,"22575":0.5698198198,"22576":0.5708108108,"22577":0.5718018018,"22578":0.5727927928,"22579":0.5737837838,"22580":0.5747747748,"22581":0.5757657658,"22582":0.5767567568,"22583":0.5777477477,"22584":0.5787387387,"22585":0.5797297297,"22586":0.5807207207,"22587":0.5817117117,"22588":0.5827027027,"22589":0.5836936937,"22590":0.5846846847,"22591":0.5856756757,"22592":0.5866666667,"22593":0.5876576577,"22594":0.5886486486,"22595":0.5896396396,"22596":0.5906306306,"22597":0.5916216216,"22598":0.5926126126,"22599":0.5936036036,"22600":0.5945945946,"22601":0.5955855856,"22602":0.5965765766,"22603":0.5975675676,"22604":0.5985585586,"22605":0.5995495495,"22606":0.6005405405,"22607":0.6015315315,"22608":0.6025225225,"22609":0.6035135135,"22610":0.6045045045,"22611":0.6054954955,"22612":0.6064864865,"22613":0.6074774775,"22614":0.6084684685,"22615":0.6094594595,"22616":0.6104504505,"22617":0.6114414414,"22618":0.6124324324,"22619":0.6134234234,"22620":0.6144144144,"22621":0.6154054054,"22622":0.6163963964,"22623":0.6173873874,"22624":0.6183783784,"22625":0.6193693694,"22626":0.6203603604,"22627":0.6213513514,"22628":0.6223423423,"22629":0.6233333333,"22630":0.6243243243,"22631":0.6253153153,"22632":0.6263063063,"22633":0.6272972973,"22634":0.6282882883,"22635":0.6292792793,"22636":0.6302702703,"22637":0.6312612613,"22638":0.6322522523,"22639":0.6332432432,"22640":0.6342342342,"22641":0.6352252252,"22642":0.6362162162,"22643":0.6372072072,"22644":0.6381981982,"22645":0.6391891892,"22646":0.6401801802,"22647":0.6411711712,"22648":0.6421621622,"22649":0.6431531532,"22650":0.6441441441,"22651":0.6451351351,"22652":0.6461261261,"22653":0.6471171171,"22654":0.6481081081,"22655":0.6490990991,"22656":0.6500900901,"22657":0.6510810811,"22658":0.6520720721,"22659":0.6530630631,"22660":0.6540540541,"22661":0.655045045,"22662":0.656036036,"22663":0.657027027,"22664":0.658018018,"22665":0.659009009,"22666":0.66,"22667":0.660990991,"22668":0.661981982,"22669":0.662972973,"22670":0.663963964,"22671":0.664954955,"22672":0.6659459459,"22673":0.6669369369,"22674":0.6679279279,"22675":0.6689189189,"22676":0.6699099099,"22677":0.6709009009,"22678":0.6718918919,"22679":0.6728828829,"22680":0.6738738739,"22681":0.6748648649,"22682":0.6758558559,"22683":0.6768468468,"22684":0.6778378378,"22685":0.6788288288,"22686":0.6798198198,"22687":0.6808108108,"22688":0.6818018018,"22689":0.6827927928,"22690":0.6837837838,"22691":0.6847747748,"22692":0.6857657658,"22693":0.6867567568,"22694":0.6877477477,"22695":0.6887387387,"22696":0.6897297297,"22697":0.6907207207,"22698":0.6917117117,"22699":0.6927027027,"22700":0.6936936937,"22701":0.6946846847,"22702":0.6956756757,"22703":0.6966666667,"22704":0.6976576577,"22705":0.6986486486,"22706":0.6996396396,"22707":0.7006306306,"22708":0.7016216216,"22709":0.7026126126,"22710":0.7036036036,"22711":0.7045945946,"22712":0.7055855856,"22713":0.7065765766,"22714":0.7075675676,"22715":0.7085585586,"22716":0.7095495495,"22717":0.7105405405,"22718":0.7115315315,"22719":0.7125225225,"22720":0.7135135135,"22721":0.7145045045,"22722":0.7154954955,"22723":0.7164864865,"22724":0.7174774775,"22725":0.7184684685,"22726":0.7194594595,"22727":0.7204504505,"22728":0.7214414414,"22729":0.7224324324,"22730":0.7234234234,"22731":0.7244144144,"22732":0.7254054054,"22733":0.7263963964,"22734":0.7273873874,"22735":0.7283783784,"22736":0.7293693694,"22737":0.7303603604,"22738":0.7313513514,"22739":0.7323423423,"22740":0.7333333333,"22741":0.7343243243,"22742":0.7353153153,"22743":0.7363063063,"22744":0.7372972973,"22745":0.7382882883,"22746":0.7392792793,"22747":0.7402702703,"22748":0.7412612613,"22749":0.7422522523,"22750":0.7432432432,"22751":0.7442342342,"22752":0.7452252252,"22753":0.7462162162,"22754":0.7472072072,"22755":0.7481981982,"22756":0.7491891892,"22757":0.7501801802,"22758":0.7511711712,"22759":0.7521621622,"22760":0.7531531532,"22761":0.7541441441,"22762":0.7551351351,"22763":0.7561261261,"22764":0.7571171171,"22765":0.7581081081,"22766":0.7590990991,"22767":0.7600900901,"22768":0.7610810811,"22769":0.7620720721,"22770":0.7630630631,"22771":0.7640540541,"22772":0.765045045,"22773":0.766036036,"22774":0.767027027,"22775":0.768018018,"22776":0.769009009,"22777":0.77,"22778":0.770990991,"22779":0.771981982,"22780":0.772972973,"22781":0.773963964,"22782":0.774954955,"22783":0.7759459459,"22784":0.7769369369,"22785":0.7779279279,"22786":0.7789189189,"22787":0.7799099099,"22788":0.7809009009,"22789":0.7818918919,"22790":0.7828828829,"22791":0.7838738739,"22792":0.7848648649,"22793":0.7858558559,"22794":0.7868468468,"22795":0.7878378378,"22796":0.7888288288,"22797":0.7898198198,"22798":0.7908108108,"22799":0.7918018018,"22800":0.7927927928,"22801":0.7937837838,"22802":0.7947747748,"22803":0.7957657658,"22804":0.7967567568,"22805":0.7977477477,"22806":0.7987387387,"22807":0.7997297297,"22808":0.8007207207,"22809":0.8017117117,"22810":0.8027027027,"22811":0.8036936937,"22812":0.8046846847,"22813":0.8056756757,"22814":0.8066666667,"22815":0.8076576577,"22816":0.8086486486,"22817":0.8096396396,"22818":0.8106306306,"22819":0.8116216216,"22820":0.8126126126,"22821":0.8136036036,"22822":0.8145945946,"22823":0.8155855856,"22824":0.8165765766,"22825":0.8175675676,"22826":0.8185585586,"22827":0.8195495495,"22828":0.8205405405,"22829":0.8215315315,"22830":0.8225225225,"22831":0.8235135135,"22832":0.8245045045,"22833":0.8254954955,"22834":0.8264864865,"22835":0.8274774775,"22836":0.8284684685,"22837":0.8294594595,"22838":0.8304504505,"22839":0.8314414414,"22840":0.8324324324,"22841":0.8334234234,"22842":0.8344144144,"22843":0.8354054054,"22844":0.8363963964,"22845":0.8373873874,"22846":0.8383783784,"22847":0.8393693694,"22848":0.8403603604,"22849":0.8413513514,"22850":0.8423423423,"22851":0.8433333333,"22852":0.8443243243,"22853":0.8453153153,"22854":0.8463063063,"22855":0.8472972973,"22856":0.8482882883,"22857":0.8492792793,"22858":0.8502702703,"22859":0.8512612613,"22860":0.8522522523,"22861":0.8532432432,"22862":0.8542342342,"22863":0.8552252252,"22864":0.8562162162,"22865":0.8572072072,"22866":0.8581981982,"22867":0.8591891892,"22868":0.8601801802,"22869":0.8611711712,"22870":0.8621621622,"22871":0.8631531532,"22872":0.8641441441,"22873":0.8651351351,"22874":0.8661261261,"22875":0.8671171171,"22876":0.8681081081,"22877":0.8690990991,"22878":0.8700900901,"22879":0.8710810811,"22880":0.8720720721,"22881":0.8730630631,"22882":0.8740540541,"22883":0.875045045,"22884":0.876036036,"22885":0.877027027,"22886":0.878018018,"22887":0.879009009,"22888":0.88,"22889":0.880990991,"22890":0.881981982,"22891":0.882972973,"22892":0.883963964,"22893":0.884954955,"22894":0.8859459459,"22895":0.8869369369,"22896":0.8879279279,"22897":0.8889189189,"22898":0.8899099099,"22899":0.8909009009,"22900":0.8918918919,"22901":0.8928828829,"22902":0.8938738739,"22903":0.8948648649,"22904":0.8958558559,"22905":0.8968468468,"22906":0.8978378378,"22907":0.8988288288,"22908":0.8998198198,"22909":0.9008108108,"22910":0.9018018018,"22911":0.9027927928,"22912":0.9037837838,"22913":0.9047747748,"22914":0.9057657658,"22915":0.9067567568,"22916":0.9077477477,"22917":0.9087387387,"22918":0.9097297297,"22919":0.9107207207,"22920":0.9117117117,"22921":0.9127027027,"22922":0.9136936937,"22923":0.9146846847,"22924":0.9156756757,"22925":0.9166666667,"22926":0.9176576577,"22927":0.9186486486,"22928":0.9196396396,"22929":0.9206306306,"22930":0.9216216216,"22931":0.9226126126,"22932":0.9236036036,"22933":0.9245945946,"22934":0.9255855856,"22935":0.9265765766,"22936":0.9275675676,"22937":0.9285585586,"22938":0.9295495495,"22939":0.9305405405,"22940":0.9315315315,"22941":0.9325225225,"22942":0.9335135135,"22943":0.9345045045,"22944":0.9354954955,"22945":0.9364864865,"22946":0.9374774775,"22947":0.9384684685,"22948":0.9394594595,"22949":0.9404504505,"22950":0.9414414414,"22951":0.9424324324,"22952":0.9434234234,"22953":0.9444144144,"22954":0.9454054054,"22955":0.9463963964,"22956":0.9473873874,"22957":0.9483783784,"22958":0.9493693694,"22959":0.9503603604,"22960":0.9513513514,"22961":0.9523423423,"22962":0.9533333333,"22963":0.9543243243,"22964":0.9553153153,"22965":0.9563063063,"22966":0.9572972973,"22967":0.9582882883,"22968":0.9592792793,"22969":0.9602702703,"22970":0.9612612613,"22971":0.9622522523,"22972":0.9632432432,"22973":0.9642342342,"22974":0.9652252252,"22975":0.9662162162,"22976":0.9672072072,"22977":0.9681981982,"22978":0.9691891892,"22979":0.9701801802,"22980":0.9711711712,"22981":0.9721621622,"22982":0.9731531532,"22983":0.9741441441,"22984":0.9751351351,"22985":0.9761261261,"22986":0.9771171171,"22987":0.9781081081,"22988":0.9790990991,"22989":0.9800900901,"22990":0.9810810811,"22991":0.9820720721,"22992":0.9830630631,"22993":0.9840540541,"22994":0.985045045,"22995":0.986036036,"22996":0.987027027,"22997":0.988018018,"22998":0.989009009,"22999":0.99,"23000":0.0,"23001":0.000990991,"23002":0.001981982,"23003":0.002972973,"23004":0.003963964,"23005":0.004954955,"23006":0.0059459459,"23007":0.0069369369,"23008":0.0079279279,"23009":0.0089189189,"23010":0.0099099099,"23011":0.0109009009,"23012":0.0118918919,"23013":0.0128828829,"23014":0.0138738739,"23015":0.0148648649,"23016":0.0158558559,"23017":0.0168468468,"23018":0.0178378378,"23019":0.0188288288,"23020":0.0198198198,"23021":0.0208108108,"23022":0.0218018018,"23023":0.0227927928,"23024":0.0237837838,"23025":0.0247747748,"23026":0.0257657658,"23027":0.0267567568,"23028":0.0277477477,"23029":0.0287387387,"23030":0.0297297297,"23031":0.0307207207,"23032":0.0317117117,"23033":0.0327027027,"23034":0.0336936937,"23035":0.0346846847,"23036":0.0356756757,"23037":0.0366666667,"23038":0.0376576577,"23039":0.0386486486,"23040":0.0396396396,"23041":0.0406306306,"23042":0.0416216216,"23043":0.0426126126,"23044":0.0436036036,"23045":0.0445945946,"23046":0.0455855856,"23047":0.0465765766,"23048":0.0475675676,"23049":0.0485585586,"23050":0.0495495495,"23051":0.0505405405,"23052":0.0515315315,"23053":0.0525225225,"23054":0.0535135135,"23055":0.0545045045,"23056":0.0554954955,"23057":0.0564864865,"23058":0.0574774775,"23059":0.0584684685,"23060":0.0594594595,"23061":0.0604504505,"23062":0.0614414414,"23063":0.0624324324,"23064":0.0634234234,"23065":0.0644144144,"23066":0.0654054054,"23067":0.0663963964,"23068":0.0673873874,"23069":0.0683783784,"23070":0.0693693694,"23071":0.0703603604,"23072":0.0713513514,"23073":0.0723423423,"23074":0.0733333333,"23075":0.0743243243,"23076":0.0753153153,"23077":0.0763063063,"23078":0.0772972973,"23079":0.0782882883,"23080":0.0792792793,"23081":0.0802702703,"23082":0.0812612613,"23083":0.0822522523,"23084":0.0832432432,"23085":0.0842342342,"23086":0.0852252252,"23087":0.0862162162,"23088":0.0872072072,"23089":0.0881981982,"23090":0.0891891892,"23091":0.0901801802,"23092":0.0911711712,"23093":0.0921621622,"23094":0.0931531532,"23095":0.0941441441,"23096":0.0951351351,"23097":0.0961261261,"23098":0.0971171171,"23099":0.0981081081,"23100":0.0990990991,"23101":0.1000900901,"23102":0.1010810811,"23103":0.1020720721,"23104":0.1030630631,"23105":0.1040540541,"23106":0.105045045,"23107":0.106036036,"23108":0.107027027,"23109":0.108018018,"23110":0.109009009,"23111":0.11,"23112":0.110990991,"23113":0.111981982,"23114":0.112972973,"23115":0.113963964,"23116":0.114954955,"23117":0.1159459459,"23118":0.1169369369,"23119":0.1179279279,"23120":0.1189189189,"23121":0.1199099099,"23122":0.1209009009,"23123":0.1218918919,"23124":0.1228828829,"23125":0.1238738739,"23126":0.1248648649,"23127":0.1258558559,"23128":0.1268468468,"23129":0.1278378378,"23130":0.1288288288,"23131":0.1298198198,"23132":0.1308108108,"23133":0.1318018018,"23134":0.1327927928,"23135":0.1337837838,"23136":0.1347747748,"23137":0.1357657658,"23138":0.1367567568,"23139":0.1377477477,"23140":0.1387387387,"23141":0.1397297297,"23142":0.1407207207,"23143":0.1417117117,"23144":0.1427027027,"23145":0.1436936937,"23146":0.1446846847,"23147":0.1456756757,"23148":0.1466666667,"23149":0.1476576577,"23150":0.1486486486,"23151":0.1496396396,"23152":0.1506306306,"23153":0.1516216216,"23154":0.1526126126,"23155":0.1536036036,"23156":0.1545945946,"23157":0.1555855856,"23158":0.1565765766,"23159":0.1575675676,"23160":0.1585585586,"23161":0.1595495495,"23162":0.1605405405,"23163":0.1615315315,"23164":0.1625225225,"23165":0.1635135135,"23166":0.1645045045,"23167":0.1654954955,"23168":0.1664864865,"23169":0.1674774775,"23170":0.1684684685,"23171":0.1694594595,"23172":0.1704504505,"23173":0.1714414414,"23174":0.1724324324,"23175":0.1734234234,"23176":0.1744144144,"23177":0.1754054054,"23178":0.1763963964,"23179":0.1773873874,"23180":0.1783783784,"23181":0.1793693694,"23182":0.1803603604,"23183":0.1813513514,"23184":0.1823423423,"23185":0.1833333333,"23186":0.1843243243,"23187":0.1853153153,"23188":0.1863063063,"23189":0.1872972973,"23190":0.1882882883,"23191":0.1892792793,"23192":0.1902702703,"23193":0.1912612613,"23194":0.1922522523,"23195":0.1932432432,"23196":0.1942342342,"23197":0.1952252252,"23198":0.1962162162,"23199":0.1972072072,"23200":0.1981981982,"23201":0.1991891892,"23202":0.2001801802,"23203":0.2011711712,"23204":0.2021621622,"23205":0.2031531532,"23206":0.2041441441,"23207":0.2051351351,"23208":0.2061261261,"23209":0.2071171171,"23210":0.2081081081,"23211":0.2090990991,"23212":0.2100900901,"23213":0.2110810811,"23214":0.2120720721,"23215":0.2130630631,"23216":0.2140540541,"23217":0.215045045,"23218":0.216036036,"23219":0.217027027,"23220":0.218018018,"23221":0.219009009,"23222":0.22,"23223":0.220990991,"23224":0.221981982,"23225":0.222972973,"23226":0.223963964,"23227":0.224954955,"23228":0.2259459459,"23229":0.2269369369,"23230":0.2279279279,"23231":0.2289189189,"23232":0.2299099099,"23233":0.2309009009,"23234":0.2318918919,"23235":0.2328828829,"23236":0.2338738739,"23237":0.2348648649,"23238":0.2358558559,"23239":0.2368468468,"23240":0.2378378378,"23241":0.2388288288,"23242":0.2398198198,"23243":0.2408108108,"23244":0.2418018018,"23245":0.2427927928,"23246":0.2437837838,"23247":0.2447747748,"23248":0.2457657658,"23249":0.2467567568,"23250":0.2477477477,"23251":0.2487387387,"23252":0.2497297297,"23253":0.2507207207,"23254":0.2517117117,"23255":0.2527027027,"23256":0.2536936937,"23257":0.2546846847,"23258":0.2556756757,"23259":0.2566666667,"23260":0.2576576577,"23261":0.2586486486,"23262":0.2596396396,"23263":0.2606306306,"23264":0.2616216216,"23265":0.2626126126,"23266":0.2636036036,"23267":0.2645945946,"23268":0.2655855856,"23269":0.2665765766,"23270":0.2675675676,"23271":0.2685585586,"23272":0.2695495495,"23273":0.2705405405,"23274":0.2715315315,"23275":0.2725225225,"23276":0.2735135135,"23277":0.2745045045,"23278":0.2754954955,"23279":0.2764864865,"23280":0.2774774775,"23281":0.2784684685,"23282":0.2794594595,"23283":0.2804504505,"23284":0.2814414414,"23285":0.2824324324,"23286":0.2834234234,"23287":0.2844144144,"23288":0.2854054054,"23289":0.2863963964,"23290":0.2873873874,"23291":0.2883783784,"23292":0.2893693694,"23293":0.2903603604,"23294":0.2913513514,"23295":0.2923423423,"23296":0.2933333333,"23297":0.2943243243,"23298":0.2953153153,"23299":0.2963063063,"23300":0.2972972973,"23301":0.2982882883,"23302":0.2992792793,"23303":0.3002702703,"23304":0.3012612613,"23305":0.3022522523,"23306":0.3032432432,"23307":0.3042342342,"23308":0.3052252252,"23309":0.3062162162,"23310":0.3072072072,"23311":0.3081981982,"23312":0.3091891892,"23313":0.3101801802,"23314":0.3111711712,"23315":0.3121621622,"23316":0.3131531532,"23317":0.3141441441,"23318":0.3151351351,"23319":0.3161261261,"23320":0.3171171171,"23321":0.3181081081,"23322":0.3190990991,"23323":0.3200900901,"23324":0.3210810811,"23325":0.3220720721,"23326":0.3230630631,"23327":0.3240540541,"23328":0.325045045,"23329":0.326036036,"23330":0.327027027,"23331":0.328018018,"23332":0.329009009,"23333":0.33,"23334":0.330990991,"23335":0.331981982,"23336":0.332972973,"23337":0.333963964,"23338":0.334954955,"23339":0.3359459459,"23340":0.3369369369,"23341":0.3379279279,"23342":0.3389189189,"23343":0.3399099099,"23344":0.3409009009,"23345":0.3418918919,"23346":0.3428828829,"23347":0.3438738739,"23348":0.3448648649,"23349":0.3458558559,"23350":0.3468468468,"23351":0.3478378378,"23352":0.3488288288,"23353":0.3498198198,"23354":0.3508108108,"23355":0.3518018018,"23356":0.3527927928,"23357":0.3537837838,"23358":0.3547747748,"23359":0.3557657658,"23360":0.3567567568,"23361":0.3577477477,"23362":0.3587387387,"23363":0.3597297297,"23364":0.3607207207,"23365":0.3617117117,"23366":0.3627027027,"23367":0.3636936937,"23368":0.3646846847,"23369":0.3656756757,"23370":0.3666666667,"23371":0.3676576577,"23372":0.3686486486,"23373":0.3696396396,"23374":0.3706306306,"23375":0.3716216216,"23376":0.3726126126,"23377":0.3736036036,"23378":0.3745945946,"23379":0.3755855856,"23380":0.3765765766,"23381":0.3775675676,"23382":0.3785585586,"23383":0.3795495495,"23384":0.3805405405,"23385":0.3815315315,"23386":0.3825225225,"23387":0.3835135135,"23388":0.3845045045,"23389":0.3854954955,"23390":0.3864864865,"23391":0.3874774775,"23392":0.3884684685,"23393":0.3894594595,"23394":0.3904504505,"23395":0.3914414414,"23396":0.3924324324,"23397":0.3934234234,"23398":0.3944144144,"23399":0.3954054054,"23400":0.3963963964,"23401":0.3973873874,"23402":0.3983783784,"23403":0.3993693694,"23404":0.4003603604,"23405":0.4013513514,"23406":0.4023423423,"23407":0.4033333333,"23408":0.4043243243,"23409":0.4053153153,"23410":0.4063063063,"23411":0.4072972973,"23412":0.4082882883,"23413":0.4092792793,"23414":0.4102702703,"23415":0.4112612613,"23416":0.4122522523,"23417":0.4132432432,"23418":0.4142342342,"23419":0.4152252252,"23420":0.4162162162,"23421":0.4172072072,"23422":0.4181981982,"23423":0.4191891892,"23424":0.4201801802,"23425":0.4211711712,"23426":0.4221621622,"23427":0.4231531532,"23428":0.4241441441,"23429":0.4251351351,"23430":0.4261261261,"23431":0.4271171171,"23432":0.4281081081,"23433":0.4290990991,"23434":0.4300900901,"23435":0.4310810811,"23436":0.4320720721,"23437":0.4330630631,"23438":0.4340540541,"23439":0.435045045,"23440":0.436036036,"23441":0.437027027,"23442":0.438018018,"23443":0.439009009,"23444":0.44,"23445":0.440990991,"23446":0.441981982,"23447":0.442972973,"23448":0.443963964,"23449":0.444954955,"23450":0.4459459459,"23451":0.4469369369,"23452":0.4479279279,"23453":0.4489189189,"23454":0.4499099099,"23455":0.4509009009,"23456":0.4518918919,"23457":0.4528828829,"23458":0.4538738739,"23459":0.4548648649,"23460":0.4558558559,"23461":0.4568468468,"23462":0.4578378378,"23463":0.4588288288,"23464":0.4598198198,"23465":0.4608108108,"23466":0.4618018018,"23467":0.4627927928,"23468":0.4637837838,"23469":0.4647747748,"23470":0.4657657658,"23471":0.4667567568,"23472":0.4677477477,"23473":0.4687387387,"23474":0.4697297297,"23475":0.4707207207,"23476":0.4717117117,"23477":0.4727027027,"23478":0.4736936937,"23479":0.4746846847,"23480":0.4756756757,"23481":0.4766666667,"23482":0.4776576577,"23483":0.4786486486,"23484":0.4796396396,"23485":0.4806306306,"23486":0.4816216216,"23487":0.4826126126,"23488":0.4836036036,"23489":0.4845945946,"23490":0.4855855856,"23491":0.4865765766,"23492":0.4875675676,"23493":0.4885585586,"23494":0.4895495495,"23495":0.4905405405,"23496":0.4915315315,"23497":0.4925225225,"23498":0.4935135135,"23499":0.4945045045,"23500":0.4954954955,"23501":0.4964864865,"23502":0.4974774775,"23503":0.4984684685,"23504":0.4994594595,"23505":0.5004504505,"23506":0.5014414414,"23507":0.5024324324,"23508":0.5034234234,"23509":0.5044144144,"23510":0.5054054054,"23511":0.5063963964,"23512":0.5073873874,"23513":0.5083783784,"23514":0.5093693694,"23515":0.5103603604,"23516":0.5113513514,"23517":0.5123423423,"23518":0.5133333333,"23519":0.5143243243,"23520":0.5153153153,"23521":0.5163063063,"23522":0.5172972973,"23523":0.5182882883,"23524":0.5192792793,"23525":0.5202702703,"23526":0.5212612613,"23527":0.5222522523,"23528":0.5232432432,"23529":0.5242342342,"23530":0.5252252252,"23531":0.5262162162,"23532":0.5272072072,"23533":0.5281981982,"23534":0.5291891892,"23535":0.5301801802,"23536":0.5311711712,"23537":0.5321621622,"23538":0.5331531532,"23539":0.5341441441,"23540":0.5351351351,"23541":0.5361261261,"23542":0.5371171171,"23543":0.5381081081,"23544":0.5390990991,"23545":0.5400900901,"23546":0.5410810811,"23547":0.5420720721,"23548":0.5430630631,"23549":0.5440540541,"23550":0.545045045,"23551":0.546036036,"23552":0.547027027,"23553":0.548018018,"23554":0.549009009,"23555":0.55,"23556":0.550990991,"23557":0.551981982,"23558":0.552972973,"23559":0.553963964,"23560":0.554954955,"23561":0.5559459459,"23562":0.5569369369,"23563":0.5579279279,"23564":0.5589189189,"23565":0.5599099099,"23566":0.5609009009,"23567":0.5618918919,"23568":0.5628828829,"23569":0.5638738739,"23570":0.5648648649,"23571":0.5658558559,"23572":0.5668468468,"23573":0.5678378378,"23574":0.5688288288,"23575":0.5698198198,"23576":0.5708108108,"23577":0.5718018018,"23578":0.5727927928,"23579":0.5737837838,"23580":0.5747747748,"23581":0.5757657658,"23582":0.5767567568,"23583":0.5777477477,"23584":0.5787387387,"23585":0.5797297297,"23586":0.5807207207,"23587":0.5817117117,"23588":0.5827027027,"23589":0.5836936937,"23590":0.5846846847,"23591":0.5856756757,"23592":0.5866666667,"23593":0.5876576577,"23594":0.5886486486,"23595":0.5896396396,"23596":0.5906306306,"23597":0.5916216216,"23598":0.5926126126,"23599":0.5936036036,"23600":0.5945945946,"23601":0.5955855856,"23602":0.5965765766,"23603":0.5975675676,"23604":0.5985585586,"23605":0.5995495495,"23606":0.6005405405,"23607":0.6015315315,"23608":0.6025225225,"23609":0.6035135135,"23610":0.6045045045,"23611":0.6054954955,"23612":0.6064864865,"23613":0.6074774775,"23614":0.6084684685,"23615":0.6094594595,"23616":0.6104504505,"23617":0.6114414414,"23618":0.6124324324,"23619":0.6134234234,"23620":0.6144144144,"23621":0.6154054054,"23622":0.6163963964,"23623":0.6173873874,"23624":0.6183783784,"23625":0.6193693694,"23626":0.6203603604,"23627":0.6213513514,"23628":0.6223423423,"23629":0.6233333333,"23630":0.6243243243,"23631":0.6253153153,"23632":0.6263063063,"23633":0.6272972973,"23634":0.6282882883,"23635":0.6292792793,"23636":0.6302702703,"23637":0.6312612613,"23638":0.6322522523,"23639":0.6332432432,"23640":0.6342342342,"23641":0.6352252252,"23642":0.6362162162,"23643":0.6372072072,"23644":0.6381981982,"23645":0.6391891892,"23646":0.6401801802,"23647":0.6411711712,"23648":0.6421621622,"23649":0.6431531532,"23650":0.6441441441,"23651":0.6451351351,"23652":0.6461261261,"23653":0.6471171171,"23654":0.6481081081,"23655":0.6490990991,"23656":0.6500900901,"23657":0.6510810811,"23658":0.6520720721,"23659":0.6530630631,"23660":0.6540540541,"23661":0.655045045,"23662":0.656036036,"23663":0.657027027,"23664":0.658018018,"23665":0.659009009,"23666":0.66,"23667":0.660990991,"23668":0.661981982,"23669":0.662972973,"23670":0.663963964,"23671":0.664954955,"23672":0.6659459459,"23673":0.6669369369,"23674":0.6679279279,"23675":0.6689189189,"23676":0.6699099099,"23677":0.6709009009,"23678":0.6718918919,"23679":0.6728828829,"23680":0.6738738739,"23681":0.6748648649,"23682":0.6758558559,"23683":0.6768468468,"23684":0.6778378378,"23685":0.6788288288,"23686":0.6798198198,"23687":0.6808108108,"23688":0.6818018018,"23689":0.6827927928,"23690":0.6837837838,"23691":0.6847747748,"23692":0.6857657658,"23693":0.6867567568,"23694":0.6877477477,"23695":0.6887387387,"23696":0.6897297297,"23697":0.6907207207,"23698":0.6917117117,"23699":0.6927027027,"23700":0.6936936937,"23701":0.6946846847,"23702":0.6956756757,"23703":0.6966666667,"23704":0.6976576577,"23705":0.6986486486,"23706":0.6996396396,"23707":0.7006306306,"23708":0.7016216216,"23709":0.7026126126,"23710":0.7036036036,"23711":0.7045945946,"23712":0.7055855856,"23713":0.7065765766,"23714":0.7075675676,"23715":0.7085585586,"23716":0.7095495495,"23717":0.7105405405,"23718":0.7115315315,"23719":0.7125225225,"23720":0.7135135135,"23721":0.7145045045,"23722":0.7154954955,"23723":0.7164864865,"23724":0.7174774775,"23725":0.7184684685,"23726":0.7194594595,"23727":0.7204504505,"23728":0.7214414414,"23729":0.7224324324,"23730":0.7234234234,"23731":0.7244144144,"23732":0.7254054054,"23733":0.7263963964,"23734":0.7273873874,"23735":0.7283783784,"23736":0.7293693694,"23737":0.7303603604,"23738":0.7313513514,"23739":0.7323423423,"23740":0.7333333333,"23741":0.7343243243,"23742":0.7353153153,"23743":0.7363063063,"23744":0.7372972973,"23745":0.7382882883,"23746":0.7392792793,"23747":0.7402702703,"23748":0.7412612613,"23749":0.7422522523,"23750":0.7432432432,"23751":0.7442342342,"23752":0.7452252252,"23753":0.7462162162,"23754":0.7472072072,"23755":0.7481981982,"23756":0.7491891892,"23757":0.7501801802,"23758":0.7511711712,"23759":0.7521621622,"23760":0.7531531532,"23761":0.7541441441,"23762":0.7551351351,"23763":0.7561261261,"23764":0.7571171171,"23765":0.7581081081,"23766":0.7590990991,"23767":0.7600900901,"23768":0.7610810811,"23769":0.7620720721,"23770":0.7630630631,"23771":0.7640540541,"23772":0.765045045,"23773":0.766036036,"23774":0.767027027,"23775":0.768018018,"23776":0.769009009,"23777":0.77,"23778":0.770990991,"23779":0.771981982,"23780":0.772972973,"23781":0.773963964,"23782":0.774954955,"23783":0.7759459459,"23784":0.7769369369,"23785":0.7779279279,"23786":0.7789189189,"23787":0.7799099099,"23788":0.7809009009,"23789":0.7818918919,"23790":0.7828828829,"23791":0.7838738739,"23792":0.7848648649,"23793":0.7858558559,"23794":0.7868468468,"23795":0.7878378378,"23796":0.7888288288,"23797":0.7898198198,"23798":0.7908108108,"23799":0.7918018018,"23800":0.7927927928,"23801":0.7937837838,"23802":0.7947747748,"23803":0.7957657658,"23804":0.7967567568,"23805":0.7977477477,"23806":0.7987387387,"23807":0.7997297297,"23808":0.8007207207,"23809":0.8017117117,"23810":0.8027027027,"23811":0.8036936937,"23812":0.8046846847,"23813":0.8056756757,"23814":0.8066666667,"23815":0.8076576577,"23816":0.8086486486,"23817":0.8096396396,"23818":0.8106306306,"23819":0.8116216216,"23820":0.8126126126,"23821":0.8136036036,"23822":0.8145945946,"23823":0.8155855856,"23824":0.8165765766,"23825":0.8175675676,"23826":0.8185585586,"23827":0.8195495495,"23828":0.8205405405,"23829":0.8215315315,"23830":0.8225225225,"23831":0.8235135135,"23832":0.8245045045,"23833":0.8254954955,"23834":0.8264864865,"23835":0.8274774775,"23836":0.8284684685,"23837":0.8294594595,"23838":0.8304504505,"23839":0.8314414414,"23840":0.8324324324,"23841":0.8334234234,"23842":0.8344144144,"23843":0.8354054054,"23844":0.8363963964,"23845":0.8373873874,"23846":0.8383783784,"23847":0.8393693694,"23848":0.8403603604,"23849":0.8413513514,"23850":0.8423423423,"23851":0.8433333333,"23852":0.8443243243,"23853":0.8453153153,"23854":0.8463063063,"23855":0.8472972973,"23856":0.8482882883,"23857":0.8492792793,"23858":0.8502702703,"23859":0.8512612613,"23860":0.8522522523,"23861":0.8532432432,"23862":0.8542342342,"23863":0.8552252252,"23864":0.8562162162,"23865":0.8572072072,"23866":0.8581981982,"23867":0.8591891892,"23868":0.8601801802,"23869":0.8611711712,"23870":0.8621621622,"23871":0.8631531532,"23872":0.8641441441,"23873":0.8651351351,"23874":0.8661261261,"23875":0.8671171171,"23876":0.8681081081,"23877":0.8690990991,"23878":0.8700900901,"23879":0.8710810811,"23880":0.8720720721,"23881":0.8730630631,"23882":0.8740540541,"23883":0.875045045,"23884":0.876036036,"23885":0.877027027,"23886":0.878018018,"23887":0.879009009,"23888":0.88,"23889":0.880990991,"23890":0.881981982,"23891":0.882972973,"23892":0.883963964,"23893":0.884954955,"23894":0.8859459459,"23895":0.8869369369,"23896":0.8879279279,"23897":0.8889189189,"23898":0.8899099099,"23899":0.8909009009,"23900":0.8918918919,"23901":0.8928828829,"23902":0.8938738739,"23903":0.8948648649,"23904":0.8958558559,"23905":0.8968468468,"23906":0.8978378378,"23907":0.8988288288,"23908":0.8998198198,"23909":0.9008108108,"23910":0.9018018018,"23911":0.9027927928,"23912":0.9037837838,"23913":0.9047747748,"23914":0.9057657658,"23915":0.9067567568,"23916":0.9077477477,"23917":0.9087387387,"23918":0.9097297297,"23919":0.9107207207,"23920":0.9117117117,"23921":0.9127027027,"23922":0.9136936937,"23923":0.9146846847,"23924":0.9156756757,"23925":0.9166666667,"23926":0.9176576577,"23927":0.9186486486,"23928":0.9196396396,"23929":0.9206306306,"23930":0.9216216216,"23931":0.9226126126,"23932":0.9236036036,"23933":0.9245945946,"23934":0.9255855856,"23935":0.9265765766,"23936":0.9275675676,"23937":0.9285585586,"23938":0.9295495495,"23939":0.9305405405,"23940":0.9315315315,"23941":0.9325225225,"23942":0.9335135135,"23943":0.9345045045,"23944":0.9354954955,"23945":0.9364864865,"23946":0.9374774775,"23947":0.9384684685,"23948":0.9394594595,"23949":0.9404504505,"23950":0.9414414414,"23951":0.9424324324,"23952":0.9434234234,"23953":0.9444144144,"23954":0.9454054054,"23955":0.9463963964,"23956":0.9473873874,"23957":0.9483783784,"23958":0.9493693694,"23959":0.9503603604,"23960":0.9513513514,"23961":0.9523423423,"23962":0.9533333333,"23963":0.9543243243,"23964":0.9553153153,"23965":0.9563063063,"23966":0.9572972973,"23967":0.9582882883,"23968":0.9592792793,"23969":0.9602702703,"23970":0.9612612613,"23971":0.9622522523,"23972":0.9632432432,"23973":0.9642342342,"23974":0.9652252252,"23975":0.9662162162,"23976":0.9672072072,"23977":0.9681981982,"23978":0.9691891892,"23979":0.9701801802,"23980":0.9711711712,"23981":0.9721621622,"23982":0.9731531532,"23983":0.9741441441,"23984":0.9751351351,"23985":0.9761261261,"23986":0.9771171171,"23987":0.9781081081,"23988":0.9790990991,"23989":0.9800900901,"23990":0.9810810811,"23991":0.9820720721,"23992":0.9830630631,"23993":0.9840540541,"23994":0.985045045,"23995":0.986036036,"23996":0.987027027,"23997":0.988018018,"23998":0.989009009,"23999":0.99,"24000":0.0,"24001":0.000990991,"24002":0.001981982,"24003":0.002972973,"24004":0.003963964,"24005":0.004954955,"24006":0.0059459459,"24007":0.0069369369,"24008":0.0079279279,"24009":0.0089189189,"24010":0.0099099099,"24011":0.0109009009,"24012":0.0118918919,"24013":0.0128828829,"24014":0.0138738739,"24015":0.0148648649,"24016":0.0158558559,"24017":0.0168468468,"24018":0.0178378378,"24019":0.0188288288,"24020":0.0198198198,"24021":0.0208108108,"24022":0.0218018018,"24023":0.0227927928,"24024":0.0237837838,"24025":0.0247747748,"24026":0.0257657658,"24027":0.0267567568,"24028":0.0277477477,"24029":0.0287387387,"24030":0.0297297297,"24031":0.0307207207,"24032":0.0317117117,"24033":0.0327027027,"24034":0.0336936937,"24035":0.0346846847,"24036":0.0356756757,"24037":0.0366666667,"24038":0.0376576577,"24039":0.0386486486,"24040":0.0396396396,"24041":0.0406306306,"24042":0.0416216216,"24043":0.0426126126,"24044":0.0436036036,"24045":0.0445945946,"24046":0.0455855856,"24047":0.0465765766,"24048":0.0475675676,"24049":0.0485585586,"24050":0.0495495495,"24051":0.0505405405,"24052":0.0515315315,"24053":0.0525225225,"24054":0.0535135135,"24055":0.0545045045,"24056":0.0554954955,"24057":0.0564864865,"24058":0.0574774775,"24059":0.0584684685,"24060":0.0594594595,"24061":0.0604504505,"24062":0.0614414414,"24063":0.0624324324,"24064":0.0634234234,"24065":0.0644144144,"24066":0.0654054054,"24067":0.0663963964,"24068":0.0673873874,"24069":0.0683783784,"24070":0.0693693694,"24071":0.0703603604,"24072":0.0713513514,"24073":0.0723423423,"24074":0.0733333333,"24075":0.0743243243,"24076":0.0753153153,"24077":0.0763063063,"24078":0.0772972973,"24079":0.0782882883,"24080":0.0792792793,"24081":0.0802702703,"24082":0.0812612613,"24083":0.0822522523,"24084":0.0832432432,"24085":0.0842342342,"24086":0.0852252252,"24087":0.0862162162,"24088":0.0872072072,"24089":0.0881981982,"24090":0.0891891892,"24091":0.0901801802,"24092":0.0911711712,"24093":0.0921621622,"24094":0.0931531532,"24095":0.0941441441,"24096":0.0951351351,"24097":0.0961261261,"24098":0.0971171171,"24099":0.0981081081,"24100":0.0990990991,"24101":0.1000900901,"24102":0.1010810811,"24103":0.1020720721,"24104":0.1030630631,"24105":0.1040540541,"24106":0.105045045,"24107":0.106036036,"24108":0.107027027,"24109":0.108018018,"24110":0.109009009,"24111":0.11,"24112":0.110990991,"24113":0.111981982,"24114":0.112972973,"24115":0.113963964,"24116":0.114954955,"24117":0.1159459459,"24118":0.1169369369,"24119":0.1179279279,"24120":0.1189189189,"24121":0.1199099099,"24122":0.1209009009,"24123":0.1218918919,"24124":0.1228828829,"24125":0.1238738739,"24126":0.1248648649,"24127":0.1258558559,"24128":0.1268468468,"24129":0.1278378378,"24130":0.1288288288,"24131":0.1298198198,"24132":0.1308108108,"24133":0.1318018018,"24134":0.1327927928,"24135":0.1337837838,"24136":0.1347747748,"24137":0.1357657658,"24138":0.1367567568,"24139":0.1377477477,"24140":0.1387387387,"24141":0.1397297297,"24142":0.1407207207,"24143":0.1417117117,"24144":0.1427027027,"24145":0.1436936937,"24146":0.1446846847,"24147":0.1456756757,"24148":0.1466666667,"24149":0.1476576577,"24150":0.1486486486,"24151":0.1496396396,"24152":0.1506306306,"24153":0.1516216216,"24154":0.1526126126,"24155":0.1536036036,"24156":0.1545945946,"24157":0.1555855856,"24158":0.1565765766,"24159":0.1575675676,"24160":0.1585585586,"24161":0.1595495495,"24162":0.1605405405,"24163":0.1615315315,"24164":0.1625225225,"24165":0.1635135135,"24166":0.1645045045,"24167":0.1654954955,"24168":0.1664864865,"24169":0.1674774775,"24170":0.1684684685,"24171":0.1694594595,"24172":0.1704504505,"24173":0.1714414414,"24174":0.1724324324,"24175":0.1734234234,"24176":0.1744144144,"24177":0.1754054054,"24178":0.1763963964,"24179":0.1773873874,"24180":0.1783783784,"24181":0.1793693694,"24182":0.1803603604,"24183":0.1813513514,"24184":0.1823423423,"24185":0.1833333333,"24186":0.1843243243,"24187":0.1853153153,"24188":0.1863063063,"24189":0.1872972973,"24190":0.1882882883,"24191":0.1892792793,"24192":0.1902702703,"24193":0.1912612613,"24194":0.1922522523,"24195":0.1932432432,"24196":0.1942342342,"24197":0.1952252252,"24198":0.1962162162,"24199":0.1972072072,"24200":0.1981981982,"24201":0.1991891892,"24202":0.2001801802,"24203":0.2011711712,"24204":0.2021621622,"24205":0.2031531532,"24206":0.2041441441,"24207":0.2051351351,"24208":0.2061261261,"24209":0.2071171171,"24210":0.2081081081,"24211":0.2090990991,"24212":0.2100900901,"24213":0.2110810811,"24214":0.2120720721,"24215":0.2130630631,"24216":0.2140540541,"24217":0.215045045,"24218":0.216036036,"24219":0.217027027,"24220":0.218018018,"24221":0.219009009,"24222":0.22,"24223":0.220990991,"24224":0.221981982,"24225":0.222972973,"24226":0.223963964,"24227":0.224954955,"24228":0.2259459459,"24229":0.2269369369,"24230":0.2279279279,"24231":0.2289189189,"24232":0.2299099099,"24233":0.2309009009,"24234":0.2318918919,"24235":0.2328828829,"24236":0.2338738739,"24237":0.2348648649,"24238":0.2358558559,"24239":0.2368468468,"24240":0.2378378378,"24241":0.2388288288,"24242":0.2398198198,"24243":0.2408108108,"24244":0.2418018018,"24245":0.2427927928,"24246":0.2437837838,"24247":0.2447747748,"24248":0.2457657658,"24249":0.2467567568,"24250":0.2477477477,"24251":0.2487387387,"24252":0.2497297297,"24253":0.2507207207,"24254":0.2517117117,"24255":0.2527027027,"24256":0.2536936937,"24257":0.2546846847,"24258":0.2556756757,"24259":0.2566666667,"24260":0.2576576577,"24261":0.2586486486,"24262":0.2596396396,"24263":0.2606306306,"24264":0.2616216216,"24265":0.2626126126,"24266":0.2636036036,"24267":0.2645945946,"24268":0.2655855856,"24269":0.2665765766,"24270":0.2675675676,"24271":0.2685585586,"24272":0.2695495495,"24273":0.2705405405,"24274":0.2715315315,"24275":0.2725225225,"24276":0.2735135135,"24277":0.2745045045,"24278":0.2754954955,"24279":0.2764864865,"24280":0.2774774775,"24281":0.2784684685,"24282":0.2794594595,"24283":0.2804504505,"24284":0.2814414414,"24285":0.2824324324,"24286":0.2834234234,"24287":0.2844144144,"24288":0.2854054054,"24289":0.2863963964,"24290":0.2873873874,"24291":0.2883783784,"24292":0.2893693694,"24293":0.2903603604,"24294":0.2913513514,"24295":0.2923423423,"24296":0.2933333333,"24297":0.2943243243,"24298":0.2953153153,"24299":0.2963063063,"24300":0.2972972973,"24301":0.2982882883,"24302":0.2992792793,"24303":0.3002702703,"24304":0.3012612613,"24305":0.3022522523,"24306":0.3032432432,"24307":0.3042342342,"24308":0.3052252252,"24309":0.3062162162,"24310":0.3072072072,"24311":0.3081981982,"24312":0.3091891892,"24313":0.3101801802,"24314":0.3111711712,"24315":0.3121621622,"24316":0.3131531532,"24317":0.3141441441,"24318":0.3151351351,"24319":0.3161261261,"24320":0.3171171171,"24321":0.3181081081,"24322":0.3190990991,"24323":0.3200900901,"24324":0.3210810811,"24325":0.3220720721,"24326":0.3230630631,"24327":0.3240540541,"24328":0.325045045,"24329":0.326036036,"24330":0.327027027,"24331":0.328018018,"24332":0.329009009,"24333":0.33,"24334":0.330990991,"24335":0.331981982,"24336":0.332972973,"24337":0.333963964,"24338":0.334954955,"24339":0.3359459459,"24340":0.3369369369,"24341":0.3379279279,"24342":0.3389189189,"24343":0.3399099099,"24344":0.3409009009,"24345":0.3418918919,"24346":0.3428828829,"24347":0.3438738739,"24348":0.3448648649,"24349":0.3458558559,"24350":0.3468468468,"24351":0.3478378378,"24352":0.3488288288,"24353":0.3498198198,"24354":0.3508108108,"24355":0.3518018018,"24356":0.3527927928,"24357":0.3537837838,"24358":0.3547747748,"24359":0.3557657658,"24360":0.3567567568,"24361":0.3577477477,"24362":0.3587387387,"24363":0.3597297297,"24364":0.3607207207,"24365":0.3617117117,"24366":0.3627027027,"24367":0.3636936937,"24368":0.3646846847,"24369":0.3656756757,"24370":0.3666666667,"24371":0.3676576577,"24372":0.3686486486,"24373":0.3696396396,"24374":0.3706306306,"24375":0.3716216216,"24376":0.3726126126,"24377":0.3736036036,"24378":0.3745945946,"24379":0.3755855856,"24380":0.3765765766,"24381":0.3775675676,"24382":0.3785585586,"24383":0.3795495495,"24384":0.3805405405,"24385":0.3815315315,"24386":0.3825225225,"24387":0.3835135135,"24388":0.3845045045,"24389":0.3854954955,"24390":0.3864864865,"24391":0.3874774775,"24392":0.3884684685,"24393":0.3894594595,"24394":0.3904504505,"24395":0.3914414414,"24396":0.3924324324,"24397":0.3934234234,"24398":0.3944144144,"24399":0.3954054054,"24400":0.3963963964,"24401":0.3973873874,"24402":0.3983783784,"24403":0.3993693694,"24404":0.4003603604,"24405":0.4013513514,"24406":0.4023423423,"24407":0.4033333333,"24408":0.4043243243,"24409":0.4053153153,"24410":0.4063063063,"24411":0.4072972973,"24412":0.4082882883,"24413":0.4092792793,"24414":0.4102702703,"24415":0.4112612613,"24416":0.4122522523,"24417":0.4132432432,"24418":0.4142342342,"24419":0.4152252252,"24420":0.4162162162,"24421":0.4172072072,"24422":0.4181981982,"24423":0.4191891892,"24424":0.4201801802,"24425":0.4211711712,"24426":0.4221621622,"24427":0.4231531532,"24428":0.4241441441,"24429":0.4251351351,"24430":0.4261261261,"24431":0.4271171171,"24432":0.4281081081,"24433":0.4290990991,"24434":0.4300900901,"24435":0.4310810811,"24436":0.4320720721,"24437":0.4330630631,"24438":0.4340540541,"24439":0.435045045,"24440":0.436036036,"24441":0.437027027,"24442":0.438018018,"24443":0.439009009,"24444":0.44,"24445":0.440990991,"24446":0.441981982,"24447":0.442972973,"24448":0.443963964,"24449":0.444954955,"24450":0.4459459459,"24451":0.4469369369,"24452":0.4479279279,"24453":0.4489189189,"24454":0.4499099099,"24455":0.4509009009,"24456":0.4518918919,"24457":0.4528828829,"24458":0.4538738739,"24459":0.4548648649,"24460":0.4558558559,"24461":0.4568468468,"24462":0.4578378378,"24463":0.4588288288,"24464":0.4598198198,"24465":0.4608108108,"24466":0.4618018018,"24467":0.4627927928,"24468":0.4637837838,"24469":0.4647747748,"24470":0.4657657658,"24471":0.4667567568,"24472":0.4677477477,"24473":0.4687387387,"24474":0.4697297297,"24475":0.4707207207,"24476":0.4717117117,"24477":0.4727027027,"24478":0.4736936937,"24479":0.4746846847,"24480":0.4756756757,"24481":0.4766666667,"24482":0.4776576577,"24483":0.4786486486,"24484":0.4796396396,"24485":0.4806306306,"24486":0.4816216216,"24487":0.4826126126,"24488":0.4836036036,"24489":0.4845945946,"24490":0.4855855856,"24491":0.4865765766,"24492":0.4875675676,"24493":0.4885585586,"24494":0.4895495495,"24495":0.4905405405,"24496":0.4915315315,"24497":0.4925225225,"24498":0.4935135135,"24499":0.4945045045,"24500":0.4954954955,"24501":0.4964864865,"24502":0.4974774775,"24503":0.4984684685,"24504":0.4994594595,"24505":0.5004504505,"24506":0.5014414414,"24507":0.5024324324,"24508":0.5034234234,"24509":0.5044144144,"24510":0.5054054054,"24511":0.5063963964,"24512":0.5073873874,"24513":0.5083783784,"24514":0.5093693694,"24515":0.5103603604,"24516":0.5113513514,"24517":0.5123423423,"24518":0.5133333333,"24519":0.5143243243,"24520":0.5153153153,"24521":0.5163063063,"24522":0.5172972973,"24523":0.5182882883,"24524":0.5192792793,"24525":0.5202702703,"24526":0.5212612613,"24527":0.5222522523,"24528":0.5232432432,"24529":0.5242342342,"24530":0.5252252252,"24531":0.5262162162,"24532":0.5272072072,"24533":0.5281981982,"24534":0.5291891892,"24535":0.5301801802,"24536":0.5311711712,"24537":0.5321621622,"24538":0.5331531532,"24539":0.5341441441,"24540":0.5351351351,"24541":0.5361261261,"24542":0.5371171171,"24543":0.5381081081,"24544":0.5390990991,"24545":0.5400900901,"24546":0.5410810811,"24547":0.5420720721,"24548":0.5430630631,"24549":0.5440540541,"24550":0.545045045,"24551":0.546036036,"24552":0.547027027,"24553":0.548018018,"24554":0.549009009,"24555":0.55,"24556":0.550990991,"24557":0.551981982,"24558":0.552972973,"24559":0.553963964,"24560":0.554954955,"24561":0.5559459459,"24562":0.5569369369,"24563":0.5579279279,"24564":0.5589189189,"24565":0.5599099099,"24566":0.5609009009,"24567":0.5618918919,"24568":0.5628828829,"24569":0.5638738739,"24570":0.5648648649,"24571":0.5658558559,"24572":0.5668468468,"24573":0.5678378378,"24574":0.5688288288,"24575":0.5698198198,"24576":0.5708108108,"24577":0.5718018018,"24578":0.5727927928,"24579":0.5737837838,"24580":0.5747747748,"24581":0.5757657658,"24582":0.5767567568,"24583":0.5777477477,"24584":0.5787387387,"24585":0.5797297297,"24586":0.5807207207,"24587":0.5817117117,"24588":0.5827027027,"24589":0.5836936937,"24590":0.5846846847,"24591":0.5856756757,"24592":0.5866666667,"24593":0.5876576577,"24594":0.5886486486,"24595":0.5896396396,"24596":0.5906306306,"24597":0.5916216216,"24598":0.5926126126,"24599":0.5936036036,"24600":0.5945945946,"24601":0.5955855856,"24602":0.5965765766,"24603":0.5975675676,"24604":0.5985585586,"24605":0.5995495495,"24606":0.6005405405,"24607":0.6015315315,"24608":0.6025225225,"24609":0.6035135135,"24610":0.6045045045,"24611":0.6054954955,"24612":0.6064864865,"24613":0.6074774775,"24614":0.6084684685,"24615":0.6094594595,"24616":0.6104504505,"24617":0.6114414414,"24618":0.6124324324,"24619":0.6134234234,"24620":0.6144144144,"24621":0.6154054054,"24622":0.6163963964,"24623":0.6173873874,"24624":0.6183783784,"24625":0.6193693694,"24626":0.6203603604,"24627":0.6213513514,"24628":0.6223423423,"24629":0.6233333333,"24630":0.6243243243,"24631":0.6253153153,"24632":0.6263063063,"24633":0.6272972973,"24634":0.6282882883,"24635":0.6292792793,"24636":0.6302702703,"24637":0.6312612613,"24638":0.6322522523,"24639":0.6332432432,"24640":0.6342342342,"24641":0.6352252252,"24642":0.6362162162,"24643":0.6372072072,"24644":0.6381981982,"24645":0.6391891892,"24646":0.6401801802,"24647":0.6411711712,"24648":0.6421621622,"24649":0.6431531532,"24650":0.6441441441,"24651":0.6451351351,"24652":0.6461261261,"24653":0.6471171171,"24654":0.6481081081,"24655":0.6490990991,"24656":0.6500900901,"24657":0.6510810811,"24658":0.6520720721,"24659":0.6530630631,"24660":0.6540540541,"24661":0.655045045,"24662":0.656036036,"24663":0.657027027,"24664":0.658018018,"24665":0.659009009,"24666":0.66,"24667":0.660990991,"24668":0.661981982,"24669":0.662972973,"24670":0.663963964,"24671":0.664954955,"24672":0.6659459459,"24673":0.6669369369,"24674":0.6679279279,"24675":0.6689189189,"24676":0.6699099099,"24677":0.6709009009,"24678":0.6718918919,"24679":0.6728828829,"24680":0.6738738739,"24681":0.6748648649,"24682":0.6758558559,"24683":0.6768468468,"24684":0.6778378378,"24685":0.6788288288,"24686":0.6798198198,"24687":0.6808108108,"24688":0.6818018018,"24689":0.6827927928,"24690":0.6837837838,"24691":0.6847747748,"24692":0.6857657658,"24693":0.6867567568,"24694":0.6877477477,"24695":0.6887387387,"24696":0.6897297297,"24697":0.6907207207,"24698":0.6917117117,"24699":0.6927027027,"24700":0.6936936937,"24701":0.6946846847,"24702":0.6956756757,"24703":0.6966666667,"24704":0.6976576577,"24705":0.6986486486,"24706":0.6996396396,"24707":0.7006306306,"24708":0.7016216216,"24709":0.7026126126,"24710":0.7036036036,"24711":0.7045945946,"24712":0.7055855856,"24713":0.7065765766,"24714":0.7075675676,"24715":0.7085585586,"24716":0.7095495495,"24717":0.7105405405,"24718":0.7115315315,"24719":0.7125225225,"24720":0.7135135135,"24721":0.7145045045,"24722":0.7154954955,"24723":0.7164864865,"24724":0.7174774775,"24725":0.7184684685,"24726":0.7194594595,"24727":0.7204504505,"24728":0.7214414414,"24729":0.7224324324,"24730":0.7234234234,"24731":0.7244144144,"24732":0.7254054054,"24733":0.7263963964,"24734":0.7273873874,"24735":0.7283783784,"24736":0.7293693694,"24737":0.7303603604,"24738":0.7313513514,"24739":0.7323423423,"24740":0.7333333333,"24741":0.7343243243,"24742":0.7353153153,"24743":0.7363063063,"24744":0.7372972973,"24745":0.7382882883,"24746":0.7392792793,"24747":0.7402702703,"24748":0.7412612613,"24749":0.7422522523,"24750":0.7432432432,"24751":0.7442342342,"24752":0.7452252252,"24753":0.7462162162,"24754":0.7472072072,"24755":0.7481981982,"24756":0.7491891892,"24757":0.7501801802,"24758":0.7511711712,"24759":0.7521621622,"24760":0.7531531532,"24761":0.7541441441,"24762":0.7551351351,"24763":0.7561261261,"24764":0.7571171171,"24765":0.7581081081,"24766":0.7590990991,"24767":0.7600900901,"24768":0.7610810811,"24769":0.7620720721,"24770":0.7630630631,"24771":0.7640540541,"24772":0.765045045,"24773":0.766036036,"24774":0.767027027,"24775":0.768018018,"24776":0.769009009,"24777":0.77,"24778":0.770990991,"24779":0.771981982,"24780":0.772972973,"24781":0.773963964,"24782":0.774954955,"24783":0.7759459459,"24784":0.7769369369,"24785":0.7779279279,"24786":0.7789189189,"24787":0.7799099099,"24788":0.7809009009,"24789":0.7818918919,"24790":0.7828828829,"24791":0.7838738739,"24792":0.7848648649,"24793":0.7858558559,"24794":0.7868468468,"24795":0.7878378378,"24796":0.7888288288,"24797":0.7898198198,"24798":0.7908108108,"24799":0.7918018018,"24800":0.7927927928,"24801":0.7937837838,"24802":0.7947747748,"24803":0.7957657658,"24804":0.7967567568,"24805":0.7977477477,"24806":0.7987387387,"24807":0.7997297297,"24808":0.8007207207,"24809":0.8017117117,"24810":0.8027027027,"24811":0.8036936937,"24812":0.8046846847,"24813":0.8056756757,"24814":0.8066666667,"24815":0.8076576577,"24816":0.8086486486,"24817":0.8096396396,"24818":0.8106306306,"24819":0.8116216216,"24820":0.8126126126,"24821":0.8136036036,"24822":0.8145945946,"24823":0.8155855856,"24824":0.8165765766,"24825":0.8175675676,"24826":0.8185585586,"24827":0.8195495495,"24828":0.8205405405,"24829":0.8215315315,"24830":0.8225225225,"24831":0.8235135135,"24832":0.8245045045,"24833":0.8254954955,"24834":0.8264864865,"24835":0.8274774775,"24836":0.8284684685,"24837":0.8294594595,"24838":0.8304504505,"24839":0.8314414414,"24840":0.8324324324,"24841":0.8334234234,"24842":0.8344144144,"24843":0.8354054054,"24844":0.8363963964,"24845":0.8373873874,"24846":0.8383783784,"24847":0.8393693694,"24848":0.8403603604,"24849":0.8413513514,"24850":0.8423423423,"24851":0.8433333333,"24852":0.8443243243,"24853":0.8453153153,"24854":0.8463063063,"24855":0.8472972973,"24856":0.8482882883,"24857":0.8492792793,"24858":0.8502702703,"24859":0.8512612613,"24860":0.8522522523,"24861":0.8532432432,"24862":0.8542342342,"24863":0.8552252252,"24864":0.8562162162,"24865":0.8572072072,"24866":0.8581981982,"24867":0.8591891892,"24868":0.8601801802,"24869":0.8611711712,"24870":0.8621621622,"24871":0.8631531532,"24872":0.8641441441,"24873":0.8651351351,"24874":0.8661261261,"24875":0.8671171171,"24876":0.8681081081,"24877":0.8690990991,"24878":0.8700900901,"24879":0.8710810811,"24880":0.8720720721,"24881":0.8730630631,"24882":0.8740540541,"24883":0.875045045,"24884":0.876036036,"24885":0.877027027,"24886":0.878018018,"24887":0.879009009,"24888":0.88,"24889":0.880990991,"24890":0.881981982,"24891":0.882972973,"24892":0.883963964,"24893":0.884954955,"24894":0.8859459459,"24895":0.8869369369,"24896":0.8879279279,"24897":0.8889189189,"24898":0.8899099099,"24899":0.8909009009,"24900":0.8918918919,"24901":0.8928828829,"24902":0.8938738739,"24903":0.8948648649,"24904":0.8958558559,"24905":0.8968468468,"24906":0.8978378378,"24907":0.8988288288,"24908":0.8998198198,"24909":0.9008108108,"24910":0.9018018018,"24911":0.9027927928,"24912":0.9037837838,"24913":0.9047747748,"24914":0.9057657658,"24915":0.9067567568,"24916":0.9077477477,"24917":0.9087387387,"24918":0.9097297297,"24919":0.9107207207,"24920":0.9117117117,"24921":0.9127027027,"24922":0.9136936937,"24923":0.9146846847,"24924":0.9156756757,"24925":0.9166666667,"24926":0.9176576577,"24927":0.9186486486,"24928":0.9196396396,"24929":0.9206306306,"24930":0.9216216216,"24931":0.9226126126,"24932":0.9236036036,"24933":0.9245945946,"24934":0.9255855856,"24935":0.9265765766,"24936":0.9275675676,"24937":0.9285585586,"24938":0.9295495495,"24939":0.9305405405,"24940":0.9315315315,"24941":0.9325225225,"24942":0.9335135135,"24943":0.9345045045,"24944":0.9354954955,"24945":0.9364864865,"24946":0.9374774775,"24947":0.9384684685,"24948":0.9394594595,"24949":0.9404504505,"24950":0.9414414414,"24951":0.9424324324,"24952":0.9434234234,"24953":0.9444144144,"24954":0.9454054054,"24955":0.9463963964,"24956":0.9473873874,"24957":0.9483783784,"24958":0.9493693694,"24959":0.9503603604,"24960":0.9513513514,"24961":0.9523423423,"24962":0.9533333333,"24963":0.9543243243,"24964":0.9553153153,"24965":0.9563063063,"24966":0.9572972973,"24967":0.9582882883,"24968":0.9592792793,"24969":0.9602702703,"24970":0.9612612613,"24971":0.9622522523,"24972":0.9632432432,"24973":0.9642342342,"24974":0.9652252252,"24975":0.9662162162,"24976":0.9672072072,"24977":0.9681981982,"24978":0.9691891892,"24979":0.9701801802,"24980":0.9711711712,"24981":0.9721621622,"24982":0.9731531532,"24983":0.9741441441,"24984":0.9751351351,"24985":0.9761261261,"24986":0.9771171171,"24987":0.9781081081,"24988":0.9790990991,"24989":0.9800900901,"24990":0.9810810811,"24991":0.9820720721,"24992":0.9830630631,"24993":0.9840540541,"24994":0.985045045,"24995":0.986036036,"24996":0.987027027,"24997":0.988018018,"24998":0.989009009,"24999":0.99,"25000":0.0,"25001":0.000990991,"25002":0.001981982,"25003":0.002972973,"25004":0.003963964,"25005":0.004954955,"25006":0.0059459459,"25007":0.0069369369,"25008":0.0079279279,"25009":0.0089189189,"25010":0.0099099099,"25011":0.0109009009,"25012":0.0118918919,"25013":0.0128828829,"25014":0.0138738739,"25015":0.0148648649,"25016":0.0158558559,"25017":0.0168468468,"25018":0.0178378378,"25019":0.0188288288,"25020":0.0198198198,"25021":0.0208108108,"25022":0.0218018018,"25023":0.0227927928,"25024":0.0237837838,"25025":0.0247747748,"25026":0.0257657658,"25027":0.0267567568,"25028":0.0277477477,"25029":0.0287387387,"25030":0.0297297297,"25031":0.0307207207,"25032":0.0317117117,"25033":0.0327027027,"25034":0.0336936937,"25035":0.0346846847,"25036":0.0356756757,"25037":0.0366666667,"25038":0.0376576577,"25039":0.0386486486,"25040":0.0396396396,"25041":0.0406306306,"25042":0.0416216216,"25043":0.0426126126,"25044":0.0436036036,"25045":0.0445945946,"25046":0.0455855856,"25047":0.0465765766,"25048":0.0475675676,"25049":0.0485585586,"25050":0.0495495495,"25051":0.0505405405,"25052":0.0515315315,"25053":0.0525225225,"25054":0.0535135135,"25055":0.0545045045,"25056":0.0554954955,"25057":0.0564864865,"25058":0.0574774775,"25059":0.0584684685,"25060":0.0594594595,"25061":0.0604504505,"25062":0.0614414414,"25063":0.0624324324,"25064":0.0634234234,"25065":0.0644144144,"25066":0.0654054054,"25067":0.0663963964,"25068":0.0673873874,"25069":0.0683783784,"25070":0.0693693694,"25071":0.0703603604,"25072":0.0713513514,"25073":0.0723423423,"25074":0.0733333333,"25075":0.0743243243,"25076":0.0753153153,"25077":0.0763063063,"25078":0.0772972973,"25079":0.0782882883,"25080":0.0792792793,"25081":0.0802702703,"25082":0.0812612613,"25083":0.0822522523,"25084":0.0832432432,"25085":0.0842342342,"25086":0.0852252252,"25087":0.0862162162,"25088":0.0872072072,"25089":0.0881981982,"25090":0.0891891892,"25091":0.0901801802,"25092":0.0911711712,"25093":0.0921621622,"25094":0.0931531532,"25095":0.0941441441,"25096":0.0951351351,"25097":0.0961261261,"25098":0.0971171171,"25099":0.0981081081,"25100":0.0990990991,"25101":0.1000900901,"25102":0.1010810811,"25103":0.1020720721,"25104":0.1030630631,"25105":0.1040540541,"25106":0.105045045,"25107":0.106036036,"25108":0.107027027,"25109":0.108018018,"25110":0.109009009,"25111":0.11,"25112":0.110990991,"25113":0.111981982,"25114":0.112972973,"25115":0.113963964,"25116":0.114954955,"25117":0.1159459459,"25118":0.1169369369,"25119":0.1179279279,"25120":0.1189189189,"25121":0.1199099099,"25122":0.1209009009,"25123":0.1218918919,"25124":0.1228828829,"25125":0.1238738739,"25126":0.1248648649,"25127":0.1258558559,"25128":0.1268468468,"25129":0.1278378378,"25130":0.1288288288,"25131":0.1298198198,"25132":0.1308108108,"25133":0.1318018018,"25134":0.1327927928,"25135":0.1337837838,"25136":0.1347747748,"25137":0.1357657658,"25138":0.1367567568,"25139":0.1377477477,"25140":0.1387387387,"25141":0.1397297297,"25142":0.1407207207,"25143":0.1417117117,"25144":0.1427027027,"25145":0.1436936937,"25146":0.1446846847,"25147":0.1456756757,"25148":0.1466666667,"25149":0.1476576577,"25150":0.1486486486,"25151":0.1496396396,"25152":0.1506306306,"25153":0.1516216216,"25154":0.1526126126,"25155":0.1536036036,"25156":0.1545945946,"25157":0.1555855856,"25158":0.1565765766,"25159":0.1575675676,"25160":0.1585585586,"25161":0.1595495495,"25162":0.1605405405,"25163":0.1615315315,"25164":0.1625225225,"25165":0.1635135135,"25166":0.1645045045,"25167":0.1654954955,"25168":0.1664864865,"25169":0.1674774775,"25170":0.1684684685,"25171":0.1694594595,"25172":0.1704504505,"25173":0.1714414414,"25174":0.1724324324,"25175":0.1734234234,"25176":0.1744144144,"25177":0.1754054054,"25178":0.1763963964,"25179":0.1773873874,"25180":0.1783783784,"25181":0.1793693694,"25182":0.1803603604,"25183":0.1813513514,"25184":0.1823423423,"25185":0.1833333333,"25186":0.1843243243,"25187":0.1853153153,"25188":0.1863063063,"25189":0.1872972973,"25190":0.1882882883,"25191":0.1892792793,"25192":0.1902702703,"25193":0.1912612613,"25194":0.1922522523,"25195":0.1932432432,"25196":0.1942342342,"25197":0.1952252252,"25198":0.1962162162,"25199":0.1972072072,"25200":0.1981981982,"25201":0.1991891892,"25202":0.2001801802,"25203":0.2011711712,"25204":0.2021621622,"25205":0.2031531532,"25206":0.2041441441,"25207":0.2051351351,"25208":0.2061261261,"25209":0.2071171171,"25210":0.2081081081,"25211":0.2090990991,"25212":0.2100900901,"25213":0.2110810811,"25214":0.2120720721,"25215":0.2130630631,"25216":0.2140540541,"25217":0.215045045,"25218":0.216036036,"25219":0.217027027,"25220":0.218018018,"25221":0.219009009,"25222":0.22,"25223":0.220990991,"25224":0.221981982,"25225":0.222972973,"25226":0.223963964,"25227":0.224954955,"25228":0.2259459459,"25229":0.2269369369,"25230":0.2279279279,"25231":0.2289189189,"25232":0.2299099099,"25233":0.2309009009,"25234":0.2318918919,"25235":0.2328828829,"25236":0.2338738739,"25237":0.2348648649,"25238":0.2358558559,"25239":0.2368468468,"25240":0.2378378378,"25241":0.2388288288,"25242":0.2398198198,"25243":0.2408108108,"25244":0.2418018018,"25245":0.2427927928,"25246":0.2437837838,"25247":0.2447747748,"25248":0.2457657658,"25249":0.2467567568,"25250":0.2477477477,"25251":0.2487387387,"25252":0.2497297297,"25253":0.2507207207,"25254":0.2517117117,"25255":0.2527027027,"25256":0.2536936937,"25257":0.2546846847,"25258":0.2556756757,"25259":0.2566666667,"25260":0.2576576577,"25261":0.2586486486,"25262":0.2596396396,"25263":0.2606306306,"25264":0.2616216216,"25265":0.2626126126,"25266":0.2636036036,"25267":0.2645945946,"25268":0.2655855856,"25269":0.2665765766,"25270":0.2675675676,"25271":0.2685585586,"25272":0.2695495495,"25273":0.2705405405,"25274":0.2715315315,"25275":0.2725225225,"25276":0.2735135135,"25277":0.2745045045,"25278":0.2754954955,"25279":0.2764864865,"25280":0.2774774775,"25281":0.2784684685,"25282":0.2794594595,"25283":0.2804504505,"25284":0.2814414414,"25285":0.2824324324,"25286":0.2834234234,"25287":0.2844144144,"25288":0.2854054054,"25289":0.2863963964,"25290":0.2873873874,"25291":0.2883783784,"25292":0.2893693694,"25293":0.2903603604,"25294":0.2913513514,"25295":0.2923423423,"25296":0.2933333333,"25297":0.2943243243,"25298":0.2953153153,"25299":0.2963063063,"25300":0.2972972973,"25301":0.2982882883,"25302":0.2992792793,"25303":0.3002702703,"25304":0.3012612613,"25305":0.3022522523,"25306":0.3032432432,"25307":0.3042342342,"25308":0.3052252252,"25309":0.3062162162,"25310":0.3072072072,"25311":0.3081981982,"25312":0.3091891892,"25313":0.3101801802,"25314":0.3111711712,"25315":0.3121621622,"25316":0.3131531532,"25317":0.3141441441,"25318":0.3151351351,"25319":0.3161261261,"25320":0.3171171171,"25321":0.3181081081,"25322":0.3190990991,"25323":0.3200900901,"25324":0.3210810811,"25325":0.3220720721,"25326":0.3230630631,"25327":0.3240540541,"25328":0.325045045,"25329":0.326036036,"25330":0.327027027,"25331":0.328018018,"25332":0.329009009,"25333":0.33,"25334":0.330990991,"25335":0.331981982,"25336":0.332972973,"25337":0.333963964,"25338":0.334954955,"25339":0.3359459459,"25340":0.3369369369,"25341":0.3379279279,"25342":0.3389189189,"25343":0.3399099099,"25344":0.3409009009,"25345":0.3418918919,"25346":0.3428828829,"25347":0.3438738739,"25348":0.3448648649,"25349":0.3458558559,"25350":0.3468468468,"25351":0.3478378378,"25352":0.3488288288,"25353":0.3498198198,"25354":0.3508108108,"25355":0.3518018018,"25356":0.3527927928,"25357":0.3537837838,"25358":0.3547747748,"25359":0.3557657658,"25360":0.3567567568,"25361":0.3577477477,"25362":0.3587387387,"25363":0.3597297297,"25364":0.3607207207,"25365":0.3617117117,"25366":0.3627027027,"25367":0.3636936937,"25368":0.3646846847,"25369":0.3656756757,"25370":0.3666666667,"25371":0.3676576577,"25372":0.3686486486,"25373":0.3696396396,"25374":0.3706306306,"25375":0.3716216216,"25376":0.3726126126,"25377":0.3736036036,"25378":0.3745945946,"25379":0.3755855856,"25380":0.3765765766,"25381":0.3775675676,"25382":0.3785585586,"25383":0.3795495495,"25384":0.3805405405,"25385":0.3815315315,"25386":0.3825225225,"25387":0.3835135135,"25388":0.3845045045,"25389":0.3854954955,"25390":0.3864864865,"25391":0.3874774775,"25392":0.3884684685,"25393":0.3894594595,"25394":0.3904504505,"25395":0.3914414414,"25396":0.3924324324,"25397":0.3934234234,"25398":0.3944144144,"25399":0.3954054054,"25400":0.3963963964,"25401":0.3973873874,"25402":0.3983783784,"25403":0.3993693694,"25404":0.4003603604,"25405":0.4013513514,"25406":0.4023423423,"25407":0.4033333333,"25408":0.4043243243,"25409":0.4053153153,"25410":0.4063063063,"25411":0.4072972973,"25412":0.4082882883,"25413":0.4092792793,"25414":0.4102702703,"25415":0.4112612613,"25416":0.4122522523,"25417":0.4132432432,"25418":0.4142342342,"25419":0.4152252252,"25420":0.4162162162,"25421":0.4172072072,"25422":0.4181981982,"25423":0.4191891892,"25424":0.4201801802,"25425":0.4211711712,"25426":0.4221621622,"25427":0.4231531532,"25428":0.4241441441,"25429":0.4251351351,"25430":0.4261261261,"25431":0.4271171171,"25432":0.4281081081,"25433":0.4290990991,"25434":0.4300900901,"25435":0.4310810811,"25436":0.4320720721,"25437":0.4330630631,"25438":0.4340540541,"25439":0.435045045,"25440":0.436036036,"25441":0.437027027,"25442":0.438018018,"25443":0.439009009,"25444":0.44,"25445":0.440990991,"25446":0.441981982,"25447":0.442972973,"25448":0.443963964,"25449":0.444954955,"25450":0.4459459459,"25451":0.4469369369,"25452":0.4479279279,"25453":0.4489189189,"25454":0.4499099099,"25455":0.4509009009,"25456":0.4518918919,"25457":0.4528828829,"25458":0.4538738739,"25459":0.4548648649,"25460":0.4558558559,"25461":0.4568468468,"25462":0.4578378378,"25463":0.4588288288,"25464":0.4598198198,"25465":0.4608108108,"25466":0.4618018018,"25467":0.4627927928,"25468":0.4637837838,"25469":0.4647747748,"25470":0.4657657658,"25471":0.4667567568,"25472":0.4677477477,"25473":0.4687387387,"25474":0.4697297297,"25475":0.4707207207,"25476":0.4717117117,"25477":0.4727027027,"25478":0.4736936937,"25479":0.4746846847,"25480":0.4756756757,"25481":0.4766666667,"25482":0.4776576577,"25483":0.4786486486,"25484":0.4796396396,"25485":0.4806306306,"25486":0.4816216216,"25487":0.4826126126,"25488":0.4836036036,"25489":0.4845945946,"25490":0.4855855856,"25491":0.4865765766,"25492":0.4875675676,"25493":0.4885585586,"25494":0.4895495495,"25495":0.4905405405,"25496":0.4915315315,"25497":0.4925225225,"25498":0.4935135135,"25499":0.4945045045,"25500":0.4954954955,"25501":0.4964864865,"25502":0.4974774775,"25503":0.4984684685,"25504":0.4994594595,"25505":0.5004504505,"25506":0.5014414414,"25507":0.5024324324,"25508":0.5034234234,"25509":0.5044144144,"25510":0.5054054054,"25511":0.5063963964,"25512":0.5073873874,"25513":0.5083783784,"25514":0.5093693694,"25515":0.5103603604,"25516":0.5113513514,"25517":0.5123423423,"25518":0.5133333333,"25519":0.5143243243,"25520":0.5153153153,"25521":0.5163063063,"25522":0.5172972973,"25523":0.5182882883,"25524":0.5192792793,"25525":0.5202702703,"25526":0.5212612613,"25527":0.5222522523,"25528":0.5232432432,"25529":0.5242342342,"25530":0.5252252252,"25531":0.5262162162,"25532":0.5272072072,"25533":0.5281981982,"25534":0.5291891892,"25535":0.5301801802,"25536":0.5311711712,"25537":0.5321621622,"25538":0.5331531532,"25539":0.5341441441,"25540":0.5351351351,"25541":0.5361261261,"25542":0.5371171171,"25543":0.5381081081,"25544":0.5390990991,"25545":0.5400900901,"25546":0.5410810811,"25547":0.5420720721,"25548":0.5430630631,"25549":0.5440540541,"25550":0.545045045,"25551":0.546036036,"25552":0.547027027,"25553":0.548018018,"25554":0.549009009,"25555":0.55,"25556":0.550990991,"25557":0.551981982,"25558":0.552972973,"25559":0.553963964,"25560":0.554954955,"25561":0.5559459459,"25562":0.5569369369,"25563":0.5579279279,"25564":0.5589189189,"25565":0.5599099099,"25566":0.5609009009,"25567":0.5618918919,"25568":0.5628828829,"25569":0.5638738739,"25570":0.5648648649,"25571":0.5658558559,"25572":0.5668468468,"25573":0.5678378378,"25574":0.5688288288,"25575":0.5698198198,"25576":0.5708108108,"25577":0.5718018018,"25578":0.5727927928,"25579":0.5737837838,"25580":0.5747747748,"25581":0.5757657658,"25582":0.5767567568,"25583":0.5777477477,"25584":0.5787387387,"25585":0.5797297297,"25586":0.5807207207,"25587":0.5817117117,"25588":0.5827027027,"25589":0.5836936937,"25590":0.5846846847,"25591":0.5856756757,"25592":0.5866666667,"25593":0.5876576577,"25594":0.5886486486,"25595":0.5896396396,"25596":0.5906306306,"25597":0.5916216216,"25598":0.5926126126,"25599":0.5936036036,"25600":0.5945945946,"25601":0.5955855856,"25602":0.5965765766,"25603":0.5975675676,"25604":0.5985585586,"25605":0.5995495495,"25606":0.6005405405,"25607":0.6015315315,"25608":0.6025225225,"25609":0.6035135135,"25610":0.6045045045,"25611":0.6054954955,"25612":0.6064864865,"25613":0.6074774775,"25614":0.6084684685,"25615":0.6094594595,"25616":0.6104504505,"25617":0.6114414414,"25618":0.6124324324,"25619":0.6134234234,"25620":0.6144144144,"25621":0.6154054054,"25622":0.6163963964,"25623":0.6173873874,"25624":0.6183783784,"25625":0.6193693694,"25626":0.6203603604,"25627":0.6213513514,"25628":0.6223423423,"25629":0.6233333333,"25630":0.6243243243,"25631":0.6253153153,"25632":0.6263063063,"25633":0.6272972973,"25634":0.6282882883,"25635":0.6292792793,"25636":0.6302702703,"25637":0.6312612613,"25638":0.6322522523,"25639":0.6332432432,"25640":0.6342342342,"25641":0.6352252252,"25642":0.6362162162,"25643":0.6372072072,"25644":0.6381981982,"25645":0.6391891892,"25646":0.6401801802,"25647":0.6411711712,"25648":0.6421621622,"25649":0.6431531532,"25650":0.6441441441,"25651":0.6451351351,"25652":0.6461261261,"25653":0.6471171171,"25654":0.6481081081,"25655":0.6490990991,"25656":0.6500900901,"25657":0.6510810811,"25658":0.6520720721,"25659":0.6530630631,"25660":0.6540540541,"25661":0.655045045,"25662":0.656036036,"25663":0.657027027,"25664":0.658018018,"25665":0.659009009,"25666":0.66,"25667":0.660990991,"25668":0.661981982,"25669":0.662972973,"25670":0.663963964,"25671":0.664954955,"25672":0.6659459459,"25673":0.6669369369,"25674":0.6679279279,"25675":0.6689189189,"25676":0.6699099099,"25677":0.6709009009,"25678":0.6718918919,"25679":0.6728828829,"25680":0.6738738739,"25681":0.6748648649,"25682":0.6758558559,"25683":0.6768468468,"25684":0.6778378378,"25685":0.6788288288,"25686":0.6798198198,"25687":0.6808108108,"25688":0.6818018018,"25689":0.6827927928,"25690":0.6837837838,"25691":0.6847747748,"25692":0.6857657658,"25693":0.6867567568,"25694":0.6877477477,"25695":0.6887387387,"25696":0.6897297297,"25697":0.6907207207,"25698":0.6917117117,"25699":0.6927027027,"25700":0.6936936937,"25701":0.6946846847,"25702":0.6956756757,"25703":0.6966666667,"25704":0.6976576577,"25705":0.6986486486,"25706":0.6996396396,"25707":0.7006306306,"25708":0.7016216216,"25709":0.7026126126,"25710":0.7036036036,"25711":0.7045945946,"25712":0.7055855856,"25713":0.7065765766,"25714":0.7075675676,"25715":0.7085585586,"25716":0.7095495495,"25717":0.7105405405,"25718":0.7115315315,"25719":0.7125225225,"25720":0.7135135135,"25721":0.7145045045,"25722":0.7154954955,"25723":0.7164864865,"25724":0.7174774775,"25725":0.7184684685,"25726":0.7194594595,"25727":0.7204504505,"25728":0.7214414414,"25729":0.7224324324,"25730":0.7234234234,"25731":0.7244144144,"25732":0.7254054054,"25733":0.7263963964,"25734":0.7273873874,"25735":0.7283783784,"25736":0.7293693694,"25737":0.7303603604,"25738":0.7313513514,"25739":0.7323423423,"25740":0.7333333333,"25741":0.7343243243,"25742":0.7353153153,"25743":0.7363063063,"25744":0.7372972973,"25745":0.7382882883,"25746":0.7392792793,"25747":0.7402702703,"25748":0.7412612613,"25749":0.7422522523,"25750":0.7432432432,"25751":0.7442342342,"25752":0.7452252252,"25753":0.7462162162,"25754":0.7472072072,"25755":0.7481981982,"25756":0.7491891892,"25757":0.7501801802,"25758":0.7511711712,"25759":0.7521621622,"25760":0.7531531532,"25761":0.7541441441,"25762":0.7551351351,"25763":0.7561261261,"25764":0.7571171171,"25765":0.7581081081,"25766":0.7590990991,"25767":0.7600900901,"25768":0.7610810811,"25769":0.7620720721,"25770":0.7630630631,"25771":0.7640540541,"25772":0.765045045,"25773":0.766036036,"25774":0.767027027,"25775":0.768018018,"25776":0.769009009,"25777":0.77,"25778":0.770990991,"25779":0.771981982,"25780":0.772972973,"25781":0.773963964,"25782":0.774954955,"25783":0.7759459459,"25784":0.7769369369,"25785":0.7779279279,"25786":0.7789189189,"25787":0.7799099099,"25788":0.7809009009,"25789":0.7818918919,"25790":0.7828828829,"25791":0.7838738739,"25792":0.7848648649,"25793":0.7858558559,"25794":0.7868468468,"25795":0.7878378378,"25796":0.7888288288,"25797":0.7898198198,"25798":0.7908108108,"25799":0.7918018018,"25800":0.7927927928,"25801":0.7937837838,"25802":0.7947747748,"25803":0.7957657658,"25804":0.7967567568,"25805":0.7977477477,"25806":0.7987387387,"25807":0.7997297297,"25808":0.8007207207,"25809":0.8017117117,"25810":0.8027027027,"25811":0.8036936937,"25812":0.8046846847,"25813":0.8056756757,"25814":0.8066666667,"25815":0.8076576577,"25816":0.8086486486,"25817":0.8096396396,"25818":0.8106306306,"25819":0.8116216216,"25820":0.8126126126,"25821":0.8136036036,"25822":0.8145945946,"25823":0.8155855856,"25824":0.8165765766,"25825":0.8175675676,"25826":0.8185585586,"25827":0.8195495495,"25828":0.8205405405,"25829":0.8215315315,"25830":0.8225225225,"25831":0.8235135135,"25832":0.8245045045,"25833":0.8254954955,"25834":0.8264864865,"25835":0.8274774775,"25836":0.8284684685,"25837":0.8294594595,"25838":0.8304504505,"25839":0.8314414414,"25840":0.8324324324,"25841":0.8334234234,"25842":0.8344144144,"25843":0.8354054054,"25844":0.8363963964,"25845":0.8373873874,"25846":0.8383783784,"25847":0.8393693694,"25848":0.8403603604,"25849":0.8413513514,"25850":0.8423423423,"25851":0.8433333333,"25852":0.8443243243,"25853":0.8453153153,"25854":0.8463063063,"25855":0.8472972973,"25856":0.8482882883,"25857":0.8492792793,"25858":0.8502702703,"25859":0.8512612613,"25860":0.8522522523,"25861":0.8532432432,"25862":0.8542342342,"25863":0.8552252252,"25864":0.8562162162,"25865":0.8572072072,"25866":0.8581981982,"25867":0.8591891892,"25868":0.8601801802,"25869":0.8611711712,"25870":0.8621621622,"25871":0.8631531532,"25872":0.8641441441,"25873":0.8651351351,"25874":0.8661261261,"25875":0.8671171171,"25876":0.8681081081,"25877":0.8690990991,"25878":0.8700900901,"25879":0.8710810811,"25880":0.8720720721,"25881":0.8730630631,"25882":0.8740540541,"25883":0.875045045,"25884":0.876036036,"25885":0.877027027,"25886":0.878018018,"25887":0.879009009,"25888":0.88,"25889":0.880990991,"25890":0.881981982,"25891":0.882972973,"25892":0.883963964,"25893":0.884954955,"25894":0.8859459459,"25895":0.8869369369,"25896":0.8879279279,"25897":0.8889189189,"25898":0.8899099099,"25899":0.8909009009,"25900":0.8918918919,"25901":0.8928828829,"25902":0.8938738739,"25903":0.8948648649,"25904":0.8958558559,"25905":0.8968468468,"25906":0.8978378378,"25907":0.8988288288,"25908":0.8998198198,"25909":0.9008108108,"25910":0.9018018018,"25911":0.9027927928,"25912":0.9037837838,"25913":0.9047747748,"25914":0.9057657658,"25915":0.9067567568,"25916":0.9077477477,"25917":0.9087387387,"25918":0.9097297297,"25919":0.9107207207,"25920":0.9117117117,"25921":0.9127027027,"25922":0.9136936937,"25923":0.9146846847,"25924":0.9156756757,"25925":0.9166666667,"25926":0.9176576577,"25927":0.9186486486,"25928":0.9196396396,"25929":0.9206306306,"25930":0.9216216216,"25931":0.9226126126,"25932":0.9236036036,"25933":0.9245945946,"25934":0.9255855856,"25935":0.9265765766,"25936":0.9275675676,"25937":0.9285585586,"25938":0.9295495495,"25939":0.9305405405,"25940":0.9315315315,"25941":0.9325225225,"25942":0.9335135135,"25943":0.9345045045,"25944":0.9354954955,"25945":0.9364864865,"25946":0.9374774775,"25947":0.9384684685,"25948":0.9394594595,"25949":0.9404504505,"25950":0.9414414414,"25951":0.9424324324,"25952":0.9434234234,"25953":0.9444144144,"25954":0.9454054054,"25955":0.9463963964,"25956":0.9473873874,"25957":0.9483783784,"25958":0.9493693694,"25959":0.9503603604,"25960":0.9513513514,"25961":0.9523423423,"25962":0.9533333333,"25963":0.9543243243,"25964":0.9553153153,"25965":0.9563063063,"25966":0.9572972973,"25967":0.9582882883,"25968":0.9592792793,"25969":0.9602702703,"25970":0.9612612613,"25971":0.9622522523,"25972":0.9632432432,"25973":0.9642342342,"25974":0.9652252252,"25975":0.9662162162,"25976":0.9672072072,"25977":0.9681981982,"25978":0.9691891892,"25979":0.9701801802,"25980":0.9711711712,"25981":0.9721621622,"25982":0.9731531532,"25983":0.9741441441,"25984":0.9751351351,"25985":0.9761261261,"25986":0.9771171171,"25987":0.9781081081,"25988":0.9790990991,"25989":0.9800900901,"25990":0.9810810811,"25991":0.9820720721,"25992":0.9830630631,"25993":0.9840540541,"25994":0.985045045,"25995":0.986036036,"25996":0.987027027,"25997":0.988018018,"25998":0.989009009,"25999":0.99,"26000":0.0,"26001":0.000990991,"26002":0.001981982,"26003":0.002972973,"26004":0.003963964,"26005":0.004954955,"26006":0.0059459459,"26007":0.0069369369,"26008":0.0079279279,"26009":0.0089189189,"26010":0.0099099099,"26011":0.0109009009,"26012":0.0118918919,"26013":0.0128828829,"26014":0.0138738739,"26015":0.0148648649,"26016":0.0158558559,"26017":0.0168468468,"26018":0.0178378378,"26019":0.0188288288,"26020":0.0198198198,"26021":0.0208108108,"26022":0.0218018018,"26023":0.0227927928,"26024":0.0237837838,"26025":0.0247747748,"26026":0.0257657658,"26027":0.0267567568,"26028":0.0277477477,"26029":0.0287387387,"26030":0.0297297297,"26031":0.0307207207,"26032":0.0317117117,"26033":0.0327027027,"26034":0.0336936937,"26035":0.0346846847,"26036":0.0356756757,"26037":0.0366666667,"26038":0.0376576577,"26039":0.0386486486,"26040":0.0396396396,"26041":0.0406306306,"26042":0.0416216216,"26043":0.0426126126,"26044":0.0436036036,"26045":0.0445945946,"26046":0.0455855856,"26047":0.0465765766,"26048":0.0475675676,"26049":0.0485585586,"26050":0.0495495495,"26051":0.0505405405,"26052":0.0515315315,"26053":0.0525225225,"26054":0.0535135135,"26055":0.0545045045,"26056":0.0554954955,"26057":0.0564864865,"26058":0.0574774775,"26059":0.0584684685,"26060":0.0594594595,"26061":0.0604504505,"26062":0.0614414414,"26063":0.0624324324,"26064":0.0634234234,"26065":0.0644144144,"26066":0.0654054054,"26067":0.0663963964,"26068":0.0673873874,"26069":0.0683783784,"26070":0.0693693694,"26071":0.0703603604,"26072":0.0713513514,"26073":0.0723423423,"26074":0.0733333333,"26075":0.0743243243,"26076":0.0753153153,"26077":0.0763063063,"26078":0.0772972973,"26079":0.0782882883,"26080":0.0792792793,"26081":0.0802702703,"26082":0.0812612613,"26083":0.0822522523,"26084":0.0832432432,"26085":0.0842342342,"26086":0.0852252252,"26087":0.0862162162,"26088":0.0872072072,"26089":0.0881981982,"26090":0.0891891892,"26091":0.0901801802,"26092":0.0911711712,"26093":0.0921621622,"26094":0.0931531532,"26095":0.0941441441,"26096":0.0951351351,"26097":0.0961261261,"26098":0.0971171171,"26099":0.0981081081,"26100":0.0990990991,"26101":0.1000900901,"26102":0.1010810811,"26103":0.1020720721,"26104":0.1030630631,"26105":0.1040540541,"26106":0.105045045,"26107":0.106036036,"26108":0.107027027,"26109":0.108018018,"26110":0.109009009,"26111":0.11,"26112":0.110990991,"26113":0.111981982,"26114":0.112972973,"26115":0.113963964,"26116":0.114954955,"26117":0.1159459459,"26118":0.1169369369,"26119":0.1179279279,"26120":0.1189189189,"26121":0.1199099099,"26122":0.1209009009,"26123":0.1218918919,"26124":0.1228828829,"26125":0.1238738739,"26126":0.1248648649,"26127":0.1258558559,"26128":0.1268468468,"26129":0.1278378378,"26130":0.1288288288,"26131":0.1298198198,"26132":0.1308108108,"26133":0.1318018018,"26134":0.1327927928,"26135":0.1337837838,"26136":0.1347747748,"26137":0.1357657658,"26138":0.1367567568,"26139":0.1377477477,"26140":0.1387387387,"26141":0.1397297297,"26142":0.1407207207,"26143":0.1417117117,"26144":0.1427027027,"26145":0.1436936937,"26146":0.1446846847,"26147":0.1456756757,"26148":0.1466666667,"26149":0.1476576577,"26150":0.1486486486,"26151":0.1496396396,"26152":0.1506306306,"26153":0.1516216216,"26154":0.1526126126,"26155":0.1536036036,"26156":0.1545945946,"26157":0.1555855856,"26158":0.1565765766,"26159":0.1575675676,"26160":0.1585585586,"26161":0.1595495495,"26162":0.1605405405,"26163":0.1615315315,"26164":0.1625225225,"26165":0.1635135135,"26166":0.1645045045,"26167":0.1654954955,"26168":0.1664864865,"26169":0.1674774775,"26170":0.1684684685,"26171":0.1694594595,"26172":0.1704504505,"26173":0.1714414414,"26174":0.1724324324,"26175":0.1734234234,"26176":0.1744144144,"26177":0.1754054054,"26178":0.1763963964,"26179":0.1773873874,"26180":0.1783783784,"26181":0.1793693694,"26182":0.1803603604,"26183":0.1813513514,"26184":0.1823423423,"26185":0.1833333333,"26186":0.1843243243,"26187":0.1853153153,"26188":0.1863063063,"26189":0.1872972973,"26190":0.1882882883,"26191":0.1892792793,"26192":0.1902702703,"26193":0.1912612613,"26194":0.1922522523,"26195":0.1932432432,"26196":0.1942342342,"26197":0.1952252252,"26198":0.1962162162,"26199":0.1972072072,"26200":0.1981981982,"26201":0.1991891892,"26202":0.2001801802,"26203":0.2011711712,"26204":0.2021621622,"26205":0.2031531532,"26206":0.2041441441,"26207":0.2051351351,"26208":0.2061261261,"26209":0.2071171171,"26210":0.2081081081,"26211":0.2090990991,"26212":0.2100900901,"26213":0.2110810811,"26214":0.2120720721,"26215":0.2130630631,"26216":0.2140540541,"26217":0.215045045,"26218":0.216036036,"26219":0.217027027,"26220":0.218018018,"26221":0.219009009,"26222":0.22,"26223":0.220990991,"26224":0.221981982,"26225":0.222972973,"26226":0.223963964,"26227":0.224954955,"26228":0.2259459459,"26229":0.2269369369,"26230":0.2279279279,"26231":0.2289189189,"26232":0.2299099099,"26233":0.2309009009,"26234":0.2318918919,"26235":0.2328828829,"26236":0.2338738739,"26237":0.2348648649,"26238":0.2358558559,"26239":0.2368468468,"26240":0.2378378378,"26241":0.2388288288,"26242":0.2398198198,"26243":0.2408108108,"26244":0.2418018018,"26245":0.2427927928,"26246":0.2437837838,"26247":0.2447747748,"26248":0.2457657658,"26249":0.2467567568,"26250":0.2477477477,"26251":0.2487387387,"26252":0.2497297297,"26253":0.2507207207,"26254":0.2517117117,"26255":0.2527027027,"26256":0.2536936937,"26257":0.2546846847,"26258":0.2556756757,"26259":0.2566666667,"26260":0.2576576577,"26261":0.2586486486,"26262":0.2596396396,"26263":0.2606306306,"26264":0.2616216216,"26265":0.2626126126,"26266":0.2636036036,"26267":0.2645945946,"26268":0.2655855856,"26269":0.2665765766,"26270":0.2675675676,"26271":0.2685585586,"26272":0.2695495495,"26273":0.2705405405,"26274":0.2715315315,"26275":0.2725225225,"26276":0.2735135135,"26277":0.2745045045,"26278":0.2754954955,"26279":0.2764864865,"26280":0.2774774775,"26281":0.2784684685,"26282":0.2794594595,"26283":0.2804504505,"26284":0.2814414414,"26285":0.2824324324,"26286":0.2834234234,"26287":0.2844144144,"26288":0.2854054054,"26289":0.2863963964,"26290":0.2873873874,"26291":0.2883783784,"26292":0.2893693694,"26293":0.2903603604,"26294":0.2913513514,"26295":0.2923423423,"26296":0.2933333333,"26297":0.2943243243,"26298":0.2953153153,"26299":0.2963063063,"26300":0.2972972973,"26301":0.2982882883,"26302":0.2992792793,"26303":0.3002702703,"26304":0.3012612613,"26305":0.3022522523,"26306":0.3032432432,"26307":0.3042342342,"26308":0.3052252252,"26309":0.3062162162,"26310":0.3072072072,"26311":0.3081981982,"26312":0.3091891892,"26313":0.3101801802,"26314":0.3111711712,"26315":0.3121621622,"26316":0.3131531532,"26317":0.3141441441,"26318":0.3151351351,"26319":0.3161261261,"26320":0.3171171171,"26321":0.3181081081,"26322":0.3190990991,"26323":0.3200900901,"26324":0.3210810811,"26325":0.3220720721,"26326":0.3230630631,"26327":0.3240540541,"26328":0.325045045,"26329":0.326036036,"26330":0.327027027,"26331":0.328018018,"26332":0.329009009,"26333":0.33,"26334":0.330990991,"26335":0.331981982,"26336":0.332972973,"26337":0.333963964,"26338":0.334954955,"26339":0.3359459459,"26340":0.3369369369,"26341":0.3379279279,"26342":0.3389189189,"26343":0.3399099099,"26344":0.3409009009,"26345":0.3418918919,"26346":0.3428828829,"26347":0.3438738739,"26348":0.3448648649,"26349":0.3458558559,"26350":0.3468468468,"26351":0.3478378378,"26352":0.3488288288,"26353":0.3498198198,"26354":0.3508108108,"26355":0.3518018018,"26356":0.3527927928,"26357":0.3537837838,"26358":0.3547747748,"26359":0.3557657658,"26360":0.3567567568,"26361":0.3577477477,"26362":0.3587387387,"26363":0.3597297297,"26364":0.3607207207,"26365":0.3617117117,"26366":0.3627027027,"26367":0.3636936937,"26368":0.3646846847,"26369":0.3656756757,"26370":0.3666666667,"26371":0.3676576577,"26372":0.3686486486,"26373":0.3696396396,"26374":0.3706306306,"26375":0.3716216216,"26376":0.3726126126,"26377":0.3736036036,"26378":0.3745945946,"26379":0.3755855856,"26380":0.3765765766,"26381":0.3775675676,"26382":0.3785585586,"26383":0.3795495495,"26384":0.3805405405,"26385":0.3815315315,"26386":0.3825225225,"26387":0.3835135135,"26388":0.3845045045,"26389":0.3854954955,"26390":0.3864864865,"26391":0.3874774775,"26392":0.3884684685,"26393":0.3894594595,"26394":0.3904504505,"26395":0.3914414414,"26396":0.3924324324,"26397":0.3934234234,"26398":0.3944144144,"26399":0.3954054054,"26400":0.3963963964,"26401":0.3973873874,"26402":0.3983783784,"26403":0.3993693694,"26404":0.4003603604,"26405":0.4013513514,"26406":0.4023423423,"26407":0.4033333333,"26408":0.4043243243,"26409":0.4053153153,"26410":0.4063063063,"26411":0.4072972973,"26412":0.4082882883,"26413":0.4092792793,"26414":0.4102702703,"26415":0.4112612613,"26416":0.4122522523,"26417":0.4132432432,"26418":0.4142342342,"26419":0.4152252252,"26420":0.4162162162,"26421":0.4172072072,"26422":0.4181981982,"26423":0.4191891892,"26424":0.4201801802,"26425":0.4211711712,"26426":0.4221621622,"26427":0.4231531532,"26428":0.4241441441,"26429":0.4251351351,"26430":0.4261261261,"26431":0.4271171171,"26432":0.4281081081,"26433":0.4290990991,"26434":0.4300900901,"26435":0.4310810811,"26436":0.4320720721,"26437":0.4330630631,"26438":0.4340540541,"26439":0.435045045,"26440":0.436036036,"26441":0.437027027,"26442":0.438018018,"26443":0.439009009,"26444":0.44,"26445":0.440990991,"26446":0.441981982,"26447":0.442972973,"26448":0.443963964,"26449":0.444954955,"26450":0.4459459459,"26451":0.4469369369,"26452":0.4479279279,"26453":0.4489189189,"26454":0.4499099099,"26455":0.4509009009,"26456":0.4518918919,"26457":0.4528828829,"26458":0.4538738739,"26459":0.4548648649,"26460":0.4558558559,"26461":0.4568468468,"26462":0.4578378378,"26463":0.4588288288,"26464":0.4598198198,"26465":0.4608108108,"26466":0.4618018018,"26467":0.4627927928,"26468":0.4637837838,"26469":0.4647747748,"26470":0.4657657658,"26471":0.4667567568,"26472":0.4677477477,"26473":0.4687387387,"26474":0.4697297297,"26475":0.4707207207,"26476":0.4717117117,"26477":0.4727027027,"26478":0.4736936937,"26479":0.4746846847,"26480":0.4756756757,"26481":0.4766666667,"26482":0.4776576577,"26483":0.4786486486,"26484":0.4796396396,"26485":0.4806306306,"26486":0.4816216216,"26487":0.4826126126,"26488":0.4836036036,"26489":0.4845945946,"26490":0.4855855856,"26491":0.4865765766,"26492":0.4875675676,"26493":0.4885585586,"26494":0.4895495495,"26495":0.4905405405,"26496":0.4915315315,"26497":0.4925225225,"26498":0.4935135135,"26499":0.4945045045,"26500":0.4954954955,"26501":0.4964864865,"26502":0.4974774775,"26503":0.4984684685,"26504":0.4994594595,"26505":0.5004504505,"26506":0.5014414414,"26507":0.5024324324,"26508":0.5034234234,"26509":0.5044144144,"26510":0.5054054054,"26511":0.5063963964,"26512":0.5073873874,"26513":0.5083783784,"26514":0.5093693694,"26515":0.5103603604,"26516":0.5113513514,"26517":0.5123423423,"26518":0.5133333333,"26519":0.5143243243,"26520":0.5153153153,"26521":0.5163063063,"26522":0.5172972973,"26523":0.5182882883,"26524":0.5192792793,"26525":0.5202702703,"26526":0.5212612613,"26527":0.5222522523,"26528":0.5232432432,"26529":0.5242342342,"26530":0.5252252252,"26531":0.5262162162,"26532":0.5272072072,"26533":0.5281981982,"26534":0.5291891892,"26535":0.5301801802,"26536":0.5311711712,"26537":0.5321621622,"26538":0.5331531532,"26539":0.5341441441,"26540":0.5351351351,"26541":0.5361261261,"26542":0.5371171171,"26543":0.5381081081,"26544":0.5390990991,"26545":0.5400900901,"26546":0.5410810811,"26547":0.5420720721,"26548":0.5430630631,"26549":0.5440540541,"26550":0.545045045,"26551":0.546036036,"26552":0.547027027,"26553":0.548018018,"26554":0.549009009,"26555":0.55,"26556":0.550990991,"26557":0.551981982,"26558":0.552972973,"26559":0.553963964,"26560":0.554954955,"26561":0.5559459459,"26562":0.5569369369,"26563":0.5579279279,"26564":0.5589189189,"26565":0.5599099099,"26566":0.5609009009,"26567":0.5618918919,"26568":0.5628828829,"26569":0.5638738739,"26570":0.5648648649,"26571":0.5658558559,"26572":0.5668468468,"26573":0.5678378378,"26574":0.5688288288,"26575":0.5698198198,"26576":0.5708108108,"26577":0.5718018018,"26578":0.5727927928,"26579":0.5737837838,"26580":0.5747747748,"26581":0.5757657658,"26582":0.5767567568,"26583":0.5777477477,"26584":0.5787387387,"26585":0.5797297297,"26586":0.5807207207,"26587":0.5817117117,"26588":0.5827027027,"26589":0.5836936937,"26590":0.5846846847,"26591":0.5856756757,"26592":0.5866666667,"26593":0.5876576577,"26594":0.5886486486,"26595":0.5896396396,"26596":0.5906306306,"26597":0.5916216216,"26598":0.5926126126,"26599":0.5936036036,"26600":0.5945945946,"26601":0.5955855856,"26602":0.5965765766,"26603":0.5975675676,"26604":0.5985585586,"26605":0.5995495495,"26606":0.6005405405,"26607":0.6015315315,"26608":0.6025225225,"26609":0.6035135135,"26610":0.6045045045,"26611":0.6054954955,"26612":0.6064864865,"26613":0.6074774775,"26614":0.6084684685,"26615":0.6094594595,"26616":0.6104504505,"26617":0.6114414414,"26618":0.6124324324,"26619":0.6134234234,"26620":0.6144144144,"26621":0.6154054054,"26622":0.6163963964,"26623":0.6173873874,"26624":0.6183783784,"26625":0.6193693694,"26626":0.6203603604,"26627":0.6213513514,"26628":0.6223423423,"26629":0.6233333333,"26630":0.6243243243,"26631":0.6253153153,"26632":0.6263063063,"26633":0.6272972973,"26634":0.6282882883,"26635":0.6292792793,"26636":0.6302702703,"26637":0.6312612613,"26638":0.6322522523,"26639":0.6332432432,"26640":0.6342342342,"26641":0.6352252252,"26642":0.6362162162,"26643":0.6372072072,"26644":0.6381981982,"26645":0.6391891892,"26646":0.6401801802,"26647":0.6411711712,"26648":0.6421621622,"26649":0.6431531532,"26650":0.6441441441,"26651":0.6451351351,"26652":0.6461261261,"26653":0.6471171171,"26654":0.6481081081,"26655":0.6490990991,"26656":0.6500900901,"26657":0.6510810811,"26658":0.6520720721,"26659":0.6530630631,"26660":0.6540540541,"26661":0.655045045,"26662":0.656036036,"26663":0.657027027,"26664":0.658018018,"26665":0.659009009,"26666":0.66,"26667":0.660990991,"26668":0.661981982,"26669":0.662972973,"26670":0.663963964,"26671":0.664954955,"26672":0.6659459459,"26673":0.6669369369,"26674":0.6679279279,"26675":0.6689189189,"26676":0.6699099099,"26677":0.6709009009,"26678":0.6718918919,"26679":0.6728828829,"26680":0.6738738739,"26681":0.6748648649,"26682":0.6758558559,"26683":0.6768468468,"26684":0.6778378378,"26685":0.6788288288,"26686":0.6798198198,"26687":0.6808108108,"26688":0.6818018018,"26689":0.6827927928,"26690":0.6837837838,"26691":0.6847747748,"26692":0.6857657658,"26693":0.6867567568,"26694":0.6877477477,"26695":0.6887387387,"26696":0.6897297297,"26697":0.6907207207,"26698":0.6917117117,"26699":0.6927027027,"26700":0.6936936937,"26701":0.6946846847,"26702":0.6956756757,"26703":0.6966666667,"26704":0.6976576577,"26705":0.6986486486,"26706":0.6996396396,"26707":0.7006306306,"26708":0.7016216216,"26709":0.7026126126,"26710":0.7036036036,"26711":0.7045945946,"26712":0.7055855856,"26713":0.7065765766,"26714":0.7075675676,"26715":0.7085585586,"26716":0.7095495495,"26717":0.7105405405,"26718":0.7115315315,"26719":0.7125225225,"26720":0.7135135135,"26721":0.7145045045,"26722":0.7154954955,"26723":0.7164864865,"26724":0.7174774775,"26725":0.7184684685,"26726":0.7194594595,"26727":0.7204504505,"26728":0.7214414414,"26729":0.7224324324,"26730":0.7234234234,"26731":0.7244144144,"26732":0.7254054054,"26733":0.7263963964,"26734":0.7273873874,"26735":0.7283783784,"26736":0.7293693694,"26737":0.7303603604,"26738":0.7313513514,"26739":0.7323423423,"26740":0.7333333333,"26741":0.7343243243,"26742":0.7353153153,"26743":0.7363063063,"26744":0.7372972973,"26745":0.7382882883,"26746":0.7392792793,"26747":0.7402702703,"26748":0.7412612613,"26749":0.7422522523,"26750":0.7432432432,"26751":0.7442342342,"26752":0.7452252252,"26753":0.7462162162,"26754":0.7472072072,"26755":0.7481981982,"26756":0.7491891892,"26757":0.7501801802,"26758":0.7511711712,"26759":0.7521621622,"26760":0.7531531532,"26761":0.7541441441,"26762":0.7551351351,"26763":0.7561261261,"26764":0.7571171171,"26765":0.7581081081,"26766":0.7590990991,"26767":0.7600900901,"26768":0.7610810811,"26769":0.7620720721,"26770":0.7630630631,"26771":0.7640540541,"26772":0.765045045,"26773":0.766036036,"26774":0.767027027,"26775":0.768018018,"26776":0.769009009,"26777":0.77,"26778":0.770990991,"26779":0.771981982,"26780":0.772972973,"26781":0.773963964,"26782":0.774954955,"26783":0.7759459459,"26784":0.7769369369,"26785":0.7779279279,"26786":0.7789189189,"26787":0.7799099099,"26788":0.7809009009,"26789":0.7818918919,"26790":0.7828828829,"26791":0.7838738739,"26792":0.7848648649,"26793":0.7858558559,"26794":0.7868468468,"26795":0.7878378378,"26796":0.7888288288,"26797":0.7898198198,"26798":0.7908108108,"26799":0.7918018018,"26800":0.7927927928,"26801":0.7937837838,"26802":0.7947747748,"26803":0.7957657658,"26804":0.7967567568,"26805":0.7977477477,"26806":0.7987387387,"26807":0.7997297297,"26808":0.8007207207,"26809":0.8017117117,"26810":0.8027027027,"26811":0.8036936937,"26812":0.8046846847,"26813":0.8056756757,"26814":0.8066666667,"26815":0.8076576577,"26816":0.8086486486,"26817":0.8096396396,"26818":0.8106306306,"26819":0.8116216216,"26820":0.8126126126,"26821":0.8136036036,"26822":0.8145945946,"26823":0.8155855856,"26824":0.8165765766,"26825":0.8175675676,"26826":0.8185585586,"26827":0.8195495495,"26828":0.8205405405,"26829":0.8215315315,"26830":0.8225225225,"26831":0.8235135135,"26832":0.8245045045,"26833":0.8254954955,"26834":0.8264864865,"26835":0.8274774775,"26836":0.8284684685,"26837":0.8294594595,"26838":0.8304504505,"26839":0.8314414414,"26840":0.8324324324,"26841":0.8334234234,"26842":0.8344144144,"26843":0.8354054054,"26844":0.8363963964,"26845":0.8373873874,"26846":0.8383783784,"26847":0.8393693694,"26848":0.8403603604,"26849":0.8413513514,"26850":0.8423423423,"26851":0.8433333333,"26852":0.8443243243,"26853":0.8453153153,"26854":0.8463063063,"26855":0.8472972973,"26856":0.8482882883,"26857":0.8492792793,"26858":0.8502702703,"26859":0.8512612613,"26860":0.8522522523,"26861":0.8532432432,"26862":0.8542342342,"26863":0.8552252252,"26864":0.8562162162,"26865":0.8572072072,"26866":0.8581981982,"26867":0.8591891892,"26868":0.8601801802,"26869":0.8611711712,"26870":0.8621621622,"26871":0.8631531532,"26872":0.8641441441,"26873":0.8651351351,"26874":0.8661261261,"26875":0.8671171171,"26876":0.8681081081,"26877":0.8690990991,"26878":0.8700900901,"26879":0.8710810811,"26880":0.8720720721,"26881":0.8730630631,"26882":0.8740540541,"26883":0.875045045,"26884":0.876036036,"26885":0.877027027,"26886":0.878018018,"26887":0.879009009,"26888":0.88,"26889":0.880990991,"26890":0.881981982,"26891":0.882972973,"26892":0.883963964,"26893":0.884954955,"26894":0.8859459459,"26895":0.8869369369,"26896":0.8879279279,"26897":0.8889189189,"26898":0.8899099099,"26899":0.8909009009,"26900":0.8918918919,"26901":0.8928828829,"26902":0.8938738739,"26903":0.8948648649,"26904":0.8958558559,"26905":0.8968468468,"26906":0.8978378378,"26907":0.8988288288,"26908":0.8998198198,"26909":0.9008108108,"26910":0.9018018018,"26911":0.9027927928,"26912":0.9037837838,"26913":0.9047747748,"26914":0.9057657658,"26915":0.9067567568,"26916":0.9077477477,"26917":0.9087387387,"26918":0.9097297297,"26919":0.9107207207,"26920":0.9117117117,"26921":0.9127027027,"26922":0.9136936937,"26923":0.9146846847,"26924":0.9156756757,"26925":0.9166666667,"26926":0.9176576577,"26927":0.9186486486,"26928":0.9196396396,"26929":0.9206306306,"26930":0.9216216216,"26931":0.9226126126,"26932":0.9236036036,"26933":0.9245945946,"26934":0.9255855856,"26935":0.9265765766,"26936":0.9275675676,"26937":0.9285585586,"26938":0.9295495495,"26939":0.9305405405,"26940":0.9315315315,"26941":0.9325225225,"26942":0.9335135135,"26943":0.9345045045,"26944":0.9354954955,"26945":0.9364864865,"26946":0.9374774775,"26947":0.9384684685,"26948":0.9394594595,"26949":0.9404504505,"26950":0.9414414414,"26951":0.9424324324,"26952":0.9434234234,"26953":0.9444144144,"26954":0.9454054054,"26955":0.9463963964,"26956":0.9473873874,"26957":0.9483783784,"26958":0.9493693694,"26959":0.9503603604,"26960":0.9513513514,"26961":0.9523423423,"26962":0.9533333333,"26963":0.9543243243,"26964":0.9553153153,"26965":0.9563063063,"26966":0.9572972973,"26967":0.9582882883,"26968":0.9592792793,"26969":0.9602702703,"26970":0.9612612613,"26971":0.9622522523,"26972":0.9632432432,"26973":0.9642342342,"26974":0.9652252252,"26975":0.9662162162,"26976":0.9672072072,"26977":0.9681981982,"26978":0.9691891892,"26979":0.9701801802,"26980":0.9711711712,"26981":0.9721621622,"26982":0.9731531532,"26983":0.9741441441,"26984":0.9751351351,"26985":0.9761261261,"26986":0.9771171171,"26987":0.9781081081,"26988":0.9790990991,"26989":0.9800900901,"26990":0.9810810811,"26991":0.9820720721,"26992":0.9830630631,"26993":0.9840540541,"26994":0.985045045,"26995":0.986036036,"26996":0.987027027,"26997":0.988018018,"26998":0.989009009,"26999":0.99,"27000":0.0,"27001":0.000990991,"27002":0.001981982,"27003":0.002972973,"27004":0.003963964,"27005":0.004954955,"27006":0.0059459459,"27007":0.0069369369,"27008":0.0079279279,"27009":0.0089189189,"27010":0.0099099099,"27011":0.0109009009,"27012":0.0118918919,"27013":0.0128828829,"27014":0.0138738739,"27015":0.0148648649,"27016":0.0158558559,"27017":0.0168468468,"27018":0.0178378378,"27019":0.0188288288,"27020":0.0198198198,"27021":0.0208108108,"27022":0.0218018018,"27023":0.0227927928,"27024":0.0237837838,"27025":0.0247747748,"27026":0.0257657658,"27027":0.0267567568,"27028":0.0277477477,"27029":0.0287387387,"27030":0.0297297297,"27031":0.0307207207,"27032":0.0317117117,"27033":0.0327027027,"27034":0.0336936937,"27035":0.0346846847,"27036":0.0356756757,"27037":0.0366666667,"27038":0.0376576577,"27039":0.0386486486,"27040":0.0396396396,"27041":0.0406306306,"27042":0.0416216216,"27043":0.0426126126,"27044":0.0436036036,"27045":0.0445945946,"27046":0.0455855856,"27047":0.0465765766,"27048":0.0475675676,"27049":0.0485585586,"27050":0.0495495495,"27051":0.0505405405,"27052":0.0515315315,"27053":0.0525225225,"27054":0.0535135135,"27055":0.0545045045,"27056":0.0554954955,"27057":0.0564864865,"27058":0.0574774775,"27059":0.0584684685,"27060":0.0594594595,"27061":0.0604504505,"27062":0.0614414414,"27063":0.0624324324,"27064":0.0634234234,"27065":0.0644144144,"27066":0.0654054054,"27067":0.0663963964,"27068":0.0673873874,"27069":0.0683783784,"27070":0.0693693694,"27071":0.0703603604,"27072":0.0713513514,"27073":0.0723423423,"27074":0.0733333333,"27075":0.0743243243,"27076":0.0753153153,"27077":0.0763063063,"27078":0.0772972973,"27079":0.0782882883,"27080":0.0792792793,"27081":0.0802702703,"27082":0.0812612613,"27083":0.0822522523,"27084":0.0832432432,"27085":0.0842342342,"27086":0.0852252252,"27087":0.0862162162,"27088":0.0872072072,"27089":0.0881981982,"27090":0.0891891892,"27091":0.0901801802,"27092":0.0911711712,"27093":0.0921621622,"27094":0.0931531532,"27095":0.0941441441,"27096":0.0951351351,"27097":0.0961261261,"27098":0.0971171171,"27099":0.0981081081,"27100":0.0990990991,"27101":0.1000900901,"27102":0.1010810811,"27103":0.1020720721,"27104":0.1030630631,"27105":0.1040540541,"27106":0.105045045,"27107":0.106036036,"27108":0.107027027,"27109":0.108018018,"27110":0.109009009,"27111":0.11,"27112":0.110990991,"27113":0.111981982,"27114":0.112972973,"27115":0.113963964,"27116":0.114954955,"27117":0.1159459459,"27118":0.1169369369,"27119":0.1179279279,"27120":0.1189189189,"27121":0.1199099099,"27122":0.1209009009,"27123":0.1218918919,"27124":0.1228828829,"27125":0.1238738739,"27126":0.1248648649,"27127":0.1258558559,"27128":0.1268468468,"27129":0.1278378378,"27130":0.1288288288,"27131":0.1298198198,"27132":0.1308108108,"27133":0.1318018018,"27134":0.1327927928,"27135":0.1337837838,"27136":0.1347747748,"27137":0.1357657658,"27138":0.1367567568,"27139":0.1377477477,"27140":0.1387387387,"27141":0.1397297297,"27142":0.1407207207,"27143":0.1417117117,"27144":0.1427027027,"27145":0.1436936937,"27146":0.1446846847,"27147":0.1456756757,"27148":0.1466666667,"27149":0.1476576577,"27150":0.1486486486,"27151":0.1496396396,"27152":0.1506306306,"27153":0.1516216216,"27154":0.1526126126,"27155":0.1536036036,"27156":0.1545945946,"27157":0.1555855856,"27158":0.1565765766,"27159":0.1575675676,"27160":0.1585585586,"27161":0.1595495495,"27162":0.1605405405,"27163":0.1615315315,"27164":0.1625225225,"27165":0.1635135135,"27166":0.1645045045,"27167":0.1654954955,"27168":0.1664864865,"27169":0.1674774775,"27170":0.1684684685,"27171":0.1694594595,"27172":0.1704504505,"27173":0.1714414414,"27174":0.1724324324,"27175":0.1734234234,"27176":0.1744144144,"27177":0.1754054054,"27178":0.1763963964,"27179":0.1773873874,"27180":0.1783783784,"27181":0.1793693694,"27182":0.1803603604,"27183":0.1813513514,"27184":0.1823423423,"27185":0.1833333333,"27186":0.1843243243,"27187":0.1853153153,"27188":0.1863063063,"27189":0.1872972973,"27190":0.1882882883,"27191":0.1892792793,"27192":0.1902702703,"27193":0.1912612613,"27194":0.1922522523,"27195":0.1932432432,"27196":0.1942342342,"27197":0.1952252252,"27198":0.1962162162,"27199":0.1972072072,"27200":0.1981981982,"27201":0.1991891892,"27202":0.2001801802,"27203":0.2011711712,"27204":0.2021621622,"27205":0.2031531532,"27206":0.2041441441,"27207":0.2051351351,"27208":0.2061261261,"27209":0.2071171171,"27210":0.2081081081,"27211":0.2090990991,"27212":0.2100900901,"27213":0.2110810811,"27214":0.2120720721,"27215":0.2130630631,"27216":0.2140540541,"27217":0.215045045,"27218":0.216036036,"27219":0.217027027,"27220":0.218018018,"27221":0.219009009,"27222":0.22,"27223":0.220990991,"27224":0.221981982,"27225":0.222972973,"27226":0.223963964,"27227":0.224954955,"27228":0.2259459459,"27229":0.2269369369,"27230":0.2279279279,"27231":0.2289189189,"27232":0.2299099099,"27233":0.2309009009,"27234":0.2318918919,"27235":0.2328828829,"27236":0.2338738739,"27237":0.2348648649,"27238":0.2358558559,"27239":0.2368468468,"27240":0.2378378378,"27241":0.2388288288,"27242":0.2398198198,"27243":0.2408108108,"27244":0.2418018018,"27245":0.2427927928,"27246":0.2437837838,"27247":0.2447747748,"27248":0.2457657658,"27249":0.2467567568,"27250":0.2477477477,"27251":0.2487387387,"27252":0.2497297297,"27253":0.2507207207,"27254":0.2517117117,"27255":0.2527027027,"27256":0.2536936937,"27257":0.2546846847,"27258":0.2556756757,"27259":0.2566666667,"27260":0.2576576577,"27261":0.2586486486,"27262":0.2596396396,"27263":0.2606306306,"27264":0.2616216216,"27265":0.2626126126,"27266":0.2636036036,"27267":0.2645945946,"27268":0.2655855856,"27269":0.2665765766,"27270":0.2675675676,"27271":0.2685585586,"27272":0.2695495495,"27273":0.2705405405,"27274":0.2715315315,"27275":0.2725225225,"27276":0.2735135135,"27277":0.2745045045,"27278":0.2754954955,"27279":0.2764864865,"27280":0.2774774775,"27281":0.2784684685,"27282":0.2794594595,"27283":0.2804504505,"27284":0.2814414414,"27285":0.2824324324,"27286":0.2834234234,"27287":0.2844144144,"27288":0.2854054054,"27289":0.2863963964,"27290":0.2873873874,"27291":0.2883783784,"27292":0.2893693694,"27293":0.2903603604,"27294":0.2913513514,"27295":0.2923423423,"27296":0.2933333333,"27297":0.2943243243,"27298":0.2953153153,"27299":0.2963063063,"27300":0.2972972973,"27301":0.2982882883,"27302":0.2992792793,"27303":0.3002702703,"27304":0.3012612613,"27305":0.3022522523,"27306":0.3032432432,"27307":0.3042342342,"27308":0.3052252252,"27309":0.3062162162,"27310":0.3072072072,"27311":0.3081981982,"27312":0.3091891892,"27313":0.3101801802,"27314":0.3111711712,"27315":0.3121621622,"27316":0.3131531532,"27317":0.3141441441,"27318":0.3151351351,"27319":0.3161261261,"27320":0.3171171171,"27321":0.3181081081,"27322":0.3190990991,"27323":0.3200900901,"27324":0.3210810811,"27325":0.3220720721,"27326":0.3230630631,"27327":0.3240540541,"27328":0.325045045,"27329":0.326036036,"27330":0.327027027,"27331":0.328018018,"27332":0.329009009,"27333":0.33,"27334":0.330990991,"27335":0.331981982,"27336":0.332972973,"27337":0.333963964,"27338":0.334954955,"27339":0.3359459459,"27340":0.3369369369,"27341":0.3379279279,"27342":0.3389189189,"27343":0.3399099099,"27344":0.3409009009,"27345":0.3418918919,"27346":0.3428828829,"27347":0.3438738739,"27348":0.3448648649,"27349":0.3458558559,"27350":0.3468468468,"27351":0.3478378378,"27352":0.3488288288,"27353":0.3498198198,"27354":0.3508108108,"27355":0.3518018018,"27356":0.3527927928,"27357":0.3537837838,"27358":0.3547747748,"27359":0.3557657658,"27360":0.3567567568,"27361":0.3577477477,"27362":0.3587387387,"27363":0.3597297297,"27364":0.3607207207,"27365":0.3617117117,"27366":0.3627027027,"27367":0.3636936937,"27368":0.3646846847,"27369":0.3656756757,"27370":0.3666666667,"27371":0.3676576577,"27372":0.3686486486,"27373":0.3696396396,"27374":0.3706306306,"27375":0.3716216216,"27376":0.3726126126,"27377":0.3736036036,"27378":0.3745945946,"27379":0.3755855856,"27380":0.3765765766,"27381":0.3775675676,"27382":0.3785585586,"27383":0.3795495495,"27384":0.3805405405,"27385":0.3815315315,"27386":0.3825225225,"27387":0.3835135135,"27388":0.3845045045,"27389":0.3854954955,"27390":0.3864864865,"27391":0.3874774775,"27392":0.3884684685,"27393":0.3894594595,"27394":0.3904504505,"27395":0.3914414414,"27396":0.3924324324,"27397":0.3934234234,"27398":0.3944144144,"27399":0.3954054054,"27400":0.3963963964,"27401":0.3973873874,"27402":0.3983783784,"27403":0.3993693694,"27404":0.4003603604,"27405":0.4013513514,"27406":0.4023423423,"27407":0.4033333333,"27408":0.4043243243,"27409":0.4053153153,"27410":0.4063063063,"27411":0.4072972973,"27412":0.4082882883,"27413":0.4092792793,"27414":0.4102702703,"27415":0.4112612613,"27416":0.4122522523,"27417":0.4132432432,"27418":0.4142342342,"27419":0.4152252252,"27420":0.4162162162,"27421":0.4172072072,"27422":0.4181981982,"27423":0.4191891892,"27424":0.4201801802,"27425":0.4211711712,"27426":0.4221621622,"27427":0.4231531532,"27428":0.4241441441,"27429":0.4251351351,"27430":0.4261261261,"27431":0.4271171171,"27432":0.4281081081,"27433":0.4290990991,"27434":0.4300900901,"27435":0.4310810811,"27436":0.4320720721,"27437":0.4330630631,"27438":0.4340540541,"27439":0.435045045,"27440":0.436036036,"27441":0.437027027,"27442":0.438018018,"27443":0.439009009,"27444":0.44,"27445":0.440990991,"27446":0.441981982,"27447":0.442972973,"27448":0.443963964,"27449":0.444954955,"27450":0.4459459459,"27451":0.4469369369,"27452":0.4479279279,"27453":0.4489189189,"27454":0.4499099099,"27455":0.4509009009,"27456":0.4518918919,"27457":0.4528828829,"27458":0.4538738739,"27459":0.4548648649,"27460":0.4558558559,"27461":0.4568468468,"27462":0.4578378378,"27463":0.4588288288,"27464":0.4598198198,"27465":0.4608108108,"27466":0.4618018018,"27467":0.4627927928,"27468":0.4637837838,"27469":0.4647747748,"27470":0.4657657658,"27471":0.4667567568,"27472":0.4677477477,"27473":0.4687387387,"27474":0.4697297297,"27475":0.4707207207,"27476":0.4717117117,"27477":0.4727027027,"27478":0.4736936937,"27479":0.4746846847,"27480":0.4756756757,"27481":0.4766666667,"27482":0.4776576577,"27483":0.4786486486,"27484":0.4796396396,"27485":0.4806306306,"27486":0.4816216216,"27487":0.4826126126,"27488":0.4836036036,"27489":0.4845945946,"27490":0.4855855856,"27491":0.4865765766,"27492":0.4875675676,"27493":0.4885585586,"27494":0.4895495495,"27495":0.4905405405,"27496":0.4915315315,"27497":0.4925225225,"27498":0.4935135135,"27499":0.4945045045,"27500":0.4954954955,"27501":0.4964864865,"27502":0.4974774775,"27503":0.4984684685,"27504":0.4994594595,"27505":0.5004504505,"27506":0.5014414414,"27507":0.5024324324,"27508":0.5034234234,"27509":0.5044144144,"27510":0.5054054054,"27511":0.5063963964,"27512":0.5073873874,"27513":0.5083783784,"27514":0.5093693694,"27515":0.5103603604,"27516":0.5113513514,"27517":0.5123423423,"27518":0.5133333333,"27519":0.5143243243,"27520":0.5153153153,"27521":0.5163063063,"27522":0.5172972973,"27523":0.5182882883,"27524":0.5192792793,"27525":0.5202702703,"27526":0.5212612613,"27527":0.5222522523,"27528":0.5232432432,"27529":0.5242342342,"27530":0.5252252252,"27531":0.5262162162,"27532":0.5272072072,"27533":0.5281981982,"27534":0.5291891892,"27535":0.5301801802,"27536":0.5311711712,"27537":0.5321621622,"27538":0.5331531532,"27539":0.5341441441,"27540":0.5351351351,"27541":0.5361261261,"27542":0.5371171171,"27543":0.5381081081,"27544":0.5390990991,"27545":0.5400900901,"27546":0.5410810811,"27547":0.5420720721,"27548":0.5430630631,"27549":0.5440540541,"27550":0.545045045,"27551":0.546036036,"27552":0.547027027,"27553":0.548018018,"27554":0.549009009,"27555":0.55,"27556":0.550990991,"27557":0.551981982,"27558":0.552972973,"27559":0.553963964,"27560":0.554954955,"27561":0.5559459459,"27562":0.5569369369,"27563":0.5579279279,"27564":0.5589189189,"27565":0.5599099099,"27566":0.5609009009,"27567":0.5618918919,"27568":0.5628828829,"27569":0.5638738739,"27570":0.5648648649,"27571":0.5658558559,"27572":0.5668468468,"27573":0.5678378378,"27574":0.5688288288,"27575":0.5698198198,"27576":0.5708108108,"27577":0.5718018018,"27578":0.5727927928,"27579":0.5737837838,"27580":0.5747747748,"27581":0.5757657658,"27582":0.5767567568,"27583":0.5777477477,"27584":0.5787387387,"27585":0.5797297297,"27586":0.5807207207,"27587":0.5817117117,"27588":0.5827027027,"27589":0.5836936937,"27590":0.5846846847,"27591":0.5856756757,"27592":0.5866666667,"27593":0.5876576577,"27594":0.5886486486,"27595":0.5896396396,"27596":0.5906306306,"27597":0.5916216216,"27598":0.5926126126,"27599":0.5936036036,"27600":0.5945945946,"27601":0.5955855856,"27602":0.5965765766,"27603":0.5975675676,"27604":0.5985585586,"27605":0.5995495495,"27606":0.6005405405,"27607":0.6015315315,"27608":0.6025225225,"27609":0.6035135135,"27610":0.6045045045,"27611":0.6054954955,"27612":0.6064864865,"27613":0.6074774775,"27614":0.6084684685,"27615":0.6094594595,"27616":0.6104504505,"27617":0.6114414414,"27618":0.6124324324,"27619":0.6134234234,"27620":0.6144144144,"27621":0.6154054054,"27622":0.6163963964,"27623":0.6173873874,"27624":0.6183783784,"27625":0.6193693694,"27626":0.6203603604,"27627":0.6213513514,"27628":0.6223423423,"27629":0.6233333333,"27630":0.6243243243,"27631":0.6253153153,"27632":0.6263063063,"27633":0.6272972973,"27634":0.6282882883,"27635":0.6292792793,"27636":0.6302702703,"27637":0.6312612613,"27638":0.6322522523,"27639":0.6332432432,"27640":0.6342342342,"27641":0.6352252252,"27642":0.6362162162,"27643":0.6372072072,"27644":0.6381981982,"27645":0.6391891892,"27646":0.6401801802,"27647":0.6411711712,"27648":0.6421621622,"27649":0.6431531532,"27650":0.6441441441,"27651":0.6451351351,"27652":0.6461261261,"27653":0.6471171171,"27654":0.6481081081,"27655":0.6490990991,"27656":0.6500900901,"27657":0.6510810811,"27658":0.6520720721,"27659":0.6530630631,"27660":0.6540540541,"27661":0.655045045,"27662":0.656036036,"27663":0.657027027,"27664":0.658018018,"27665":0.659009009,"27666":0.66,"27667":0.660990991,"27668":0.661981982,"27669":0.662972973,"27670":0.663963964,"27671":0.664954955,"27672":0.6659459459,"27673":0.6669369369,"27674":0.6679279279,"27675":0.6689189189,"27676":0.6699099099,"27677":0.6709009009,"27678":0.6718918919,"27679":0.6728828829,"27680":0.6738738739,"27681":0.6748648649,"27682":0.6758558559,"27683":0.6768468468,"27684":0.6778378378,"27685":0.6788288288,"27686":0.6798198198,"27687":0.6808108108,"27688":0.6818018018,"27689":0.6827927928,"27690":0.6837837838,"27691":0.6847747748,"27692":0.6857657658,"27693":0.6867567568,"27694":0.6877477477,"27695":0.6887387387,"27696":0.6897297297,"27697":0.6907207207,"27698":0.6917117117,"27699":0.6927027027,"27700":0.6936936937,"27701":0.6946846847,"27702":0.6956756757,"27703":0.6966666667,"27704":0.6976576577,"27705":0.6986486486,"27706":0.6996396396,"27707":0.7006306306,"27708":0.7016216216,"27709":0.7026126126,"27710":0.7036036036,"27711":0.7045945946,"27712":0.7055855856,"27713":0.7065765766,"27714":0.7075675676,"27715":0.7085585586,"27716":0.7095495495,"27717":0.7105405405,"27718":0.7115315315,"27719":0.7125225225,"27720":0.7135135135,"27721":0.7145045045,"27722":0.7154954955,"27723":0.7164864865,"27724":0.7174774775,"27725":0.7184684685,"27726":0.7194594595,"27727":0.7204504505,"27728":0.7214414414,"27729":0.7224324324,"27730":0.7234234234,"27731":0.7244144144,"27732":0.7254054054,"27733":0.7263963964,"27734":0.7273873874,"27735":0.7283783784,"27736":0.7293693694,"27737":0.7303603604,"27738":0.7313513514,"27739":0.7323423423,"27740":0.7333333333,"27741":0.7343243243,"27742":0.7353153153,"27743":0.7363063063,"27744":0.7372972973,"27745":0.7382882883,"27746":0.7392792793,"27747":0.7402702703,"27748":0.7412612613,"27749":0.7422522523,"27750":0.7432432432,"27751":0.7442342342,"27752":0.7452252252,"27753":0.7462162162,"27754":0.7472072072,"27755":0.7481981982,"27756":0.7491891892,"27757":0.7501801802,"27758":0.7511711712,"27759":0.7521621622,"27760":0.7531531532,"27761":0.7541441441,"27762":0.7551351351,"27763":0.7561261261,"27764":0.7571171171,"27765":0.7581081081,"27766":0.7590990991,"27767":0.7600900901,"27768":0.7610810811,"27769":0.7620720721,"27770":0.7630630631,"27771":0.7640540541,"27772":0.765045045,"27773":0.766036036,"27774":0.767027027,"27775":0.768018018,"27776":0.769009009,"27777":0.77,"27778":0.770990991,"27779":0.771981982,"27780":0.772972973,"27781":0.773963964,"27782":0.774954955,"27783":0.7759459459,"27784":0.7769369369,"27785":0.7779279279,"27786":0.7789189189,"27787":0.7799099099,"27788":0.7809009009,"27789":0.7818918919,"27790":0.7828828829,"27791":0.7838738739,"27792":0.7848648649,"27793":0.7858558559,"27794":0.7868468468,"27795":0.7878378378,"27796":0.7888288288,"27797":0.7898198198,"27798":0.7908108108,"27799":0.7918018018,"27800":0.7927927928,"27801":0.7937837838,"27802":0.7947747748,"27803":0.7957657658,"27804":0.7967567568,"27805":0.7977477477,"27806":0.7987387387,"27807":0.7997297297,"27808":0.8007207207,"27809":0.8017117117,"27810":0.8027027027,"27811":0.8036936937,"27812":0.8046846847,"27813":0.8056756757,"27814":0.8066666667,"27815":0.8076576577,"27816":0.8086486486,"27817":0.8096396396,"27818":0.8106306306,"27819":0.8116216216,"27820":0.8126126126,"27821":0.8136036036,"27822":0.8145945946,"27823":0.8155855856,"27824":0.8165765766,"27825":0.8175675676,"27826":0.8185585586,"27827":0.8195495495,"27828":0.8205405405,"27829":0.8215315315,"27830":0.8225225225,"27831":0.8235135135,"27832":0.8245045045,"27833":0.8254954955,"27834":0.8264864865,"27835":0.8274774775,"27836":0.8284684685,"27837":0.8294594595,"27838":0.8304504505,"27839":0.8314414414,"27840":0.8324324324,"27841":0.8334234234,"27842":0.8344144144,"27843":0.8354054054,"27844":0.8363963964,"27845":0.8373873874,"27846":0.8383783784,"27847":0.8393693694,"27848":0.8403603604,"27849":0.8413513514,"27850":0.8423423423,"27851":0.8433333333,"27852":0.8443243243,"27853":0.8453153153,"27854":0.8463063063,"27855":0.8472972973,"27856":0.8482882883,"27857":0.8492792793,"27858":0.8502702703,"27859":0.8512612613,"27860":0.8522522523,"27861":0.8532432432,"27862":0.8542342342,"27863":0.8552252252,"27864":0.8562162162,"27865":0.8572072072,"27866":0.8581981982,"27867":0.8591891892,"27868":0.8601801802,"27869":0.8611711712,"27870":0.8621621622,"27871":0.8631531532,"27872":0.8641441441,"27873":0.8651351351,"27874":0.8661261261,"27875":0.8671171171,"27876":0.8681081081,"27877":0.8690990991,"27878":0.8700900901,"27879":0.8710810811,"27880":0.8720720721,"27881":0.8730630631,"27882":0.8740540541,"27883":0.875045045,"27884":0.876036036,"27885":0.877027027,"27886":0.878018018,"27887":0.879009009,"27888":0.88,"27889":0.880990991,"27890":0.881981982,"27891":0.882972973,"27892":0.883963964,"27893":0.884954955,"27894":0.8859459459,"27895":0.8869369369,"27896":0.8879279279,"27897":0.8889189189,"27898":0.8899099099,"27899":0.8909009009,"27900":0.8918918919,"27901":0.8928828829,"27902":0.8938738739,"27903":0.8948648649,"27904":0.8958558559,"27905":0.8968468468,"27906":0.8978378378,"27907":0.8988288288,"27908":0.8998198198,"27909":0.9008108108,"27910":0.9018018018,"27911":0.9027927928,"27912":0.9037837838,"27913":0.9047747748,"27914":0.9057657658,"27915":0.9067567568,"27916":0.9077477477,"27917":0.9087387387,"27918":0.9097297297,"27919":0.9107207207,"27920":0.9117117117,"27921":0.9127027027,"27922":0.9136936937,"27923":0.9146846847,"27924":0.9156756757,"27925":0.9166666667,"27926":0.9176576577,"27927":0.9186486486,"27928":0.9196396396,"27929":0.9206306306,"27930":0.9216216216,"27931":0.9226126126,"27932":0.9236036036,"27933":0.9245945946,"27934":0.9255855856,"27935":0.9265765766,"27936":0.9275675676,"27937":0.9285585586,"27938":0.9295495495,"27939":0.9305405405,"27940":0.9315315315,"27941":0.9325225225,"27942":0.9335135135,"27943":0.9345045045,"27944":0.9354954955,"27945":0.9364864865,"27946":0.9374774775,"27947":0.9384684685,"27948":0.9394594595,"27949":0.9404504505,"27950":0.9414414414,"27951":0.9424324324,"27952":0.9434234234,"27953":0.9444144144,"27954":0.9454054054,"27955":0.9463963964,"27956":0.9473873874,"27957":0.9483783784,"27958":0.9493693694,"27959":0.9503603604,"27960":0.9513513514,"27961":0.9523423423,"27962":0.9533333333,"27963":0.9543243243,"27964":0.9553153153,"27965":0.9563063063,"27966":0.9572972973,"27967":0.9582882883,"27968":0.9592792793,"27969":0.9602702703,"27970":0.9612612613,"27971":0.9622522523,"27972":0.9632432432,"27973":0.9642342342,"27974":0.9652252252,"27975":0.9662162162,"27976":0.9672072072,"27977":0.9681981982,"27978":0.9691891892,"27979":0.9701801802,"27980":0.9711711712,"27981":0.9721621622,"27982":0.9731531532,"27983":0.9741441441,"27984":0.9751351351,"27985":0.9761261261,"27986":0.9771171171,"27987":0.9781081081,"27988":0.9790990991,"27989":0.9800900901,"27990":0.9810810811,"27991":0.9820720721,"27992":0.9830630631,"27993":0.9840540541,"27994":0.985045045,"27995":0.986036036,"27996":0.987027027,"27997":0.988018018,"27998":0.989009009,"27999":0.99,"28000":0.0,"28001":0.000990991,"28002":0.001981982,"28003":0.002972973,"28004":0.003963964,"28005":0.004954955,"28006":0.0059459459,"28007":0.0069369369,"28008":0.0079279279,"28009":0.0089189189,"28010":0.0099099099,"28011":0.0109009009,"28012":0.0118918919,"28013":0.0128828829,"28014":0.0138738739,"28015":0.0148648649,"28016":0.0158558559,"28017":0.0168468468,"28018":0.0178378378,"28019":0.0188288288,"28020":0.0198198198,"28021":0.0208108108,"28022":0.0218018018,"28023":0.0227927928,"28024":0.0237837838,"28025":0.0247747748,"28026":0.0257657658,"28027":0.0267567568,"28028":0.0277477477,"28029":0.0287387387,"28030":0.0297297297,"28031":0.0307207207,"28032":0.0317117117,"28033":0.0327027027,"28034":0.0336936937,"28035":0.0346846847,"28036":0.0356756757,"28037":0.0366666667,"28038":0.0376576577,"28039":0.0386486486,"28040":0.0396396396,"28041":0.0406306306,"28042":0.0416216216,"28043":0.0426126126,"28044":0.0436036036,"28045":0.0445945946,"28046":0.0455855856,"28047":0.0465765766,"28048":0.0475675676,"28049":0.0485585586,"28050":0.0495495495,"28051":0.0505405405,"28052":0.0515315315,"28053":0.0525225225,"28054":0.0535135135,"28055":0.0545045045,"28056":0.0554954955,"28057":0.0564864865,"28058":0.0574774775,"28059":0.0584684685,"28060":0.0594594595,"28061":0.0604504505,"28062":0.0614414414,"28063":0.0624324324,"28064":0.0634234234,"28065":0.0644144144,"28066":0.0654054054,"28067":0.0663963964,"28068":0.0673873874,"28069":0.0683783784,"28070":0.0693693694,"28071":0.0703603604,"28072":0.0713513514,"28073":0.0723423423,"28074":0.0733333333,"28075":0.0743243243,"28076":0.0753153153,"28077":0.0763063063,"28078":0.0772972973,"28079":0.0782882883,"28080":0.0792792793,"28081":0.0802702703,"28082":0.0812612613,"28083":0.0822522523,"28084":0.0832432432,"28085":0.0842342342,"28086":0.0852252252,"28087":0.0862162162,"28088":0.0872072072,"28089":0.0881981982,"28090":0.0891891892,"28091":0.0901801802,"28092":0.0911711712,"28093":0.0921621622,"28094":0.0931531532,"28095":0.0941441441,"28096":0.0951351351,"28097":0.0961261261,"28098":0.0971171171,"28099":0.0981081081,"28100":0.0990990991,"28101":0.1000900901,"28102":0.1010810811,"28103":0.1020720721,"28104":0.1030630631,"28105":0.1040540541,"28106":0.105045045,"28107":0.106036036,"28108":0.107027027,"28109":0.108018018,"28110":0.109009009,"28111":0.11,"28112":0.110990991,"28113":0.111981982,"28114":0.112972973,"28115":0.113963964,"28116":0.114954955,"28117":0.1159459459,"28118":0.1169369369,"28119":0.1179279279,"28120":0.1189189189,"28121":0.1199099099,"28122":0.1209009009,"28123":0.1218918919,"28124":0.1228828829,"28125":0.1238738739,"28126":0.1248648649,"28127":0.1258558559,"28128":0.1268468468,"28129":0.1278378378,"28130":0.1288288288,"28131":0.1298198198,"28132":0.1308108108,"28133":0.1318018018,"28134":0.1327927928,"28135":0.1337837838,"28136":0.1347747748,"28137":0.1357657658,"28138":0.1367567568,"28139":0.1377477477,"28140":0.1387387387,"28141":0.1397297297,"28142":0.1407207207,"28143":0.1417117117,"28144":0.1427027027,"28145":0.1436936937,"28146":0.1446846847,"28147":0.1456756757,"28148":0.1466666667,"28149":0.1476576577,"28150":0.1486486486,"28151":0.1496396396,"28152":0.1506306306,"28153":0.1516216216,"28154":0.1526126126,"28155":0.1536036036,"28156":0.1545945946,"28157":0.1555855856,"28158":0.1565765766,"28159":0.1575675676,"28160":0.1585585586,"28161":0.1595495495,"28162":0.1605405405,"28163":0.1615315315,"28164":0.1625225225,"28165":0.1635135135,"28166":0.1645045045,"28167":0.1654954955,"28168":0.1664864865,"28169":0.1674774775,"28170":0.1684684685,"28171":0.1694594595,"28172":0.1704504505,"28173":0.1714414414,"28174":0.1724324324,"28175":0.1734234234,"28176":0.1744144144,"28177":0.1754054054,"28178":0.1763963964,"28179":0.1773873874,"28180":0.1783783784,"28181":0.1793693694,"28182":0.1803603604,"28183":0.1813513514,"28184":0.1823423423,"28185":0.1833333333,"28186":0.1843243243,"28187":0.1853153153,"28188":0.1863063063,"28189":0.1872972973,"28190":0.1882882883,"28191":0.1892792793,"28192":0.1902702703,"28193":0.1912612613,"28194":0.1922522523,"28195":0.1932432432,"28196":0.1942342342,"28197":0.1952252252,"28198":0.1962162162,"28199":0.1972072072,"28200":0.1981981982,"28201":0.1991891892,"28202":0.2001801802,"28203":0.2011711712,"28204":0.2021621622,"28205":0.2031531532,"28206":0.2041441441,"28207":0.2051351351,"28208":0.2061261261,"28209":0.2071171171,"28210":0.2081081081,"28211":0.2090990991,"28212":0.2100900901,"28213":0.2110810811,"28214":0.2120720721,"28215":0.2130630631,"28216":0.2140540541,"28217":0.215045045,"28218":0.216036036,"28219":0.217027027,"28220":0.218018018,"28221":0.219009009,"28222":0.22,"28223":0.220990991,"28224":0.221981982,"28225":0.222972973,"28226":0.223963964,"28227":0.224954955,"28228":0.2259459459,"28229":0.2269369369,"28230":0.2279279279,"28231":0.2289189189,"28232":0.2299099099,"28233":0.2309009009,"28234":0.2318918919,"28235":0.2328828829,"28236":0.2338738739,"28237":0.2348648649,"28238":0.2358558559,"28239":0.2368468468,"28240":0.2378378378,"28241":0.2388288288,"28242":0.2398198198,"28243":0.2408108108,"28244":0.2418018018,"28245":0.2427927928,"28246":0.2437837838,"28247":0.2447747748,"28248":0.2457657658,"28249":0.2467567568,"28250":0.2477477477,"28251":0.2487387387,"28252":0.2497297297,"28253":0.2507207207,"28254":0.2517117117,"28255":0.2527027027,"28256":0.2536936937,"28257":0.2546846847,"28258":0.2556756757,"28259":0.2566666667,"28260":0.2576576577,"28261":0.2586486486,"28262":0.2596396396,"28263":0.2606306306,"28264":0.2616216216,"28265":0.2626126126,"28266":0.2636036036,"28267":0.2645945946,"28268":0.2655855856,"28269":0.2665765766,"28270":0.2675675676,"28271":0.2685585586,"28272":0.2695495495,"28273":0.2705405405,"28274":0.2715315315,"28275":0.2725225225,"28276":0.2735135135,"28277":0.2745045045,"28278":0.2754954955,"28279":0.2764864865,"28280":0.2774774775,"28281":0.2784684685,"28282":0.2794594595,"28283":0.2804504505,"28284":0.2814414414,"28285":0.2824324324,"28286":0.2834234234,"28287":0.2844144144,"28288":0.2854054054,"28289":0.2863963964,"28290":0.2873873874,"28291":0.2883783784,"28292":0.2893693694,"28293":0.2903603604,"28294":0.2913513514,"28295":0.2923423423,"28296":0.2933333333,"28297":0.2943243243,"28298":0.2953153153,"28299":0.2963063063,"28300":0.2972972973,"28301":0.2982882883,"28302":0.2992792793,"28303":0.3002702703,"28304":0.3012612613,"28305":0.3022522523,"28306":0.3032432432,"28307":0.3042342342,"28308":0.3052252252,"28309":0.3062162162,"28310":0.3072072072,"28311":0.3081981982,"28312":0.3091891892,"28313":0.3101801802,"28314":0.3111711712,"28315":0.3121621622,"28316":0.3131531532,"28317":0.3141441441,"28318":0.3151351351,"28319":0.3161261261,"28320":0.3171171171,"28321":0.3181081081,"28322":0.3190990991,"28323":0.3200900901,"28324":0.3210810811,"28325":0.3220720721,"28326":0.3230630631,"28327":0.3240540541,"28328":0.325045045,"28329":0.326036036,"28330":0.327027027,"28331":0.328018018,"28332":0.329009009,"28333":0.33,"28334":0.330990991,"28335":0.331981982,"28336":0.332972973,"28337":0.333963964,"28338":0.334954955,"28339":0.3359459459,"28340":0.3369369369,"28341":0.3379279279,"28342":0.3389189189,"28343":0.3399099099,"28344":0.3409009009,"28345":0.3418918919,"28346":0.3428828829,"28347":0.3438738739,"28348":0.3448648649,"28349":0.3458558559,"28350":0.3468468468,"28351":0.3478378378,"28352":0.3488288288,"28353":0.3498198198,"28354":0.3508108108,"28355":0.3518018018,"28356":0.3527927928,"28357":0.3537837838,"28358":0.3547747748,"28359":0.3557657658,"28360":0.3567567568,"28361":0.3577477477,"28362":0.3587387387,"28363":0.3597297297,"28364":0.3607207207,"28365":0.3617117117,"28366":0.3627027027,"28367":0.3636936937,"28368":0.3646846847,"28369":0.3656756757,"28370":0.3666666667,"28371":0.3676576577,"28372":0.3686486486,"28373":0.3696396396,"28374":0.3706306306,"28375":0.3716216216,"28376":0.3726126126,"28377":0.3736036036,"28378":0.3745945946,"28379":0.3755855856,"28380":0.3765765766,"28381":0.3775675676,"28382":0.3785585586,"28383":0.3795495495,"28384":0.3805405405,"28385":0.3815315315,"28386":0.3825225225,"28387":0.3835135135,"28388":0.3845045045,"28389":0.3854954955,"28390":0.3864864865,"28391":0.3874774775,"28392":0.3884684685,"28393":0.3894594595,"28394":0.3904504505,"28395":0.3914414414,"28396":0.3924324324,"28397":0.3934234234,"28398":0.3944144144,"28399":0.3954054054,"28400":0.3963963964,"28401":0.3973873874,"28402":0.3983783784,"28403":0.3993693694,"28404":0.4003603604,"28405":0.4013513514,"28406":0.4023423423,"28407":0.4033333333,"28408":0.4043243243,"28409":0.4053153153,"28410":0.4063063063,"28411":0.4072972973,"28412":0.4082882883,"28413":0.4092792793,"28414":0.4102702703,"28415":0.4112612613,"28416":0.4122522523,"28417":0.4132432432,"28418":0.4142342342,"28419":0.4152252252,"28420":0.4162162162,"28421":0.4172072072,"28422":0.4181981982,"28423":0.4191891892,"28424":0.4201801802,"28425":0.4211711712,"28426":0.4221621622,"28427":0.4231531532,"28428":0.4241441441,"28429":0.4251351351,"28430":0.4261261261,"28431":0.4271171171,"28432":0.4281081081,"28433":0.4290990991,"28434":0.4300900901,"28435":0.4310810811,"28436":0.4320720721,"28437":0.4330630631,"28438":0.4340540541,"28439":0.435045045,"28440":0.436036036,"28441":0.437027027,"28442":0.438018018,"28443":0.439009009,"28444":0.44,"28445":0.440990991,"28446":0.441981982,"28447":0.442972973,"28448":0.443963964,"28449":0.444954955,"28450":0.4459459459,"28451":0.4469369369,"28452":0.4479279279,"28453":0.4489189189,"28454":0.4499099099,"28455":0.4509009009,"28456":0.4518918919,"28457":0.4528828829,"28458":0.4538738739,"28459":0.4548648649,"28460":0.4558558559,"28461":0.4568468468,"28462":0.4578378378,"28463":0.4588288288,"28464":0.4598198198,"28465":0.4608108108,"28466":0.4618018018,"28467":0.4627927928,"28468":0.4637837838,"28469":0.4647747748,"28470":0.4657657658,"28471":0.4667567568,"28472":0.4677477477,"28473":0.4687387387,"28474":0.4697297297,"28475":0.4707207207,"28476":0.4717117117,"28477":0.4727027027,"28478":0.4736936937,"28479":0.4746846847,"28480":0.4756756757,"28481":0.4766666667,"28482":0.4776576577,"28483":0.4786486486,"28484":0.4796396396,"28485":0.4806306306,"28486":0.4816216216,"28487":0.4826126126,"28488":0.4836036036,"28489":0.4845945946,"28490":0.4855855856,"28491":0.4865765766,"28492":0.4875675676,"28493":0.4885585586,"28494":0.4895495495,"28495":0.4905405405,"28496":0.4915315315,"28497":0.4925225225,"28498":0.4935135135,"28499":0.4945045045,"28500":0.4954954955,"28501":0.4964864865,"28502":0.4974774775,"28503":0.4984684685,"28504":0.4994594595,"28505":0.5004504505,"28506":0.5014414414,"28507":0.5024324324,"28508":0.5034234234,"28509":0.5044144144,"28510":0.5054054054,"28511":0.5063963964,"28512":0.5073873874,"28513":0.5083783784,"28514":0.5093693694,"28515":0.5103603604,"28516":0.5113513514,"28517":0.5123423423,"28518":0.5133333333,"28519":0.5143243243,"28520":0.5153153153,"28521":0.5163063063,"28522":0.5172972973,"28523":0.5182882883,"28524":0.5192792793,"28525":0.5202702703,"28526":0.5212612613,"28527":0.5222522523,"28528":0.5232432432,"28529":0.5242342342,"28530":0.5252252252,"28531":0.5262162162,"28532":0.5272072072,"28533":0.5281981982,"28534":0.5291891892,"28535":0.5301801802,"28536":0.5311711712,"28537":0.5321621622,"28538":0.5331531532,"28539":0.5341441441,"28540":0.5351351351,"28541":0.5361261261,"28542":0.5371171171,"28543":0.5381081081,"28544":0.5390990991,"28545":0.5400900901,"28546":0.5410810811,"28547":0.5420720721,"28548":0.5430630631,"28549":0.5440540541,"28550":0.545045045,"28551":0.546036036,"28552":0.547027027,"28553":0.548018018,"28554":0.549009009,"28555":0.55,"28556":0.550990991,"28557":0.551981982,"28558":0.552972973,"28559":0.553963964,"28560":0.554954955,"28561":0.5559459459,"28562":0.5569369369,"28563":0.5579279279,"28564":0.5589189189,"28565":0.5599099099,"28566":0.5609009009,"28567":0.5618918919,"28568":0.5628828829,"28569":0.5638738739,"28570":0.5648648649,"28571":0.5658558559,"28572":0.5668468468,"28573":0.5678378378,"28574":0.5688288288,"28575":0.5698198198,"28576":0.5708108108,"28577":0.5718018018,"28578":0.5727927928,"28579":0.5737837838,"28580":0.5747747748,"28581":0.5757657658,"28582":0.5767567568,"28583":0.5777477477,"28584":0.5787387387,"28585":0.5797297297,"28586":0.5807207207,"28587":0.5817117117,"28588":0.5827027027,"28589":0.5836936937,"28590":0.5846846847,"28591":0.5856756757,"28592":0.5866666667,"28593":0.5876576577,"28594":0.5886486486,"28595":0.5896396396,"28596":0.5906306306,"28597":0.5916216216,"28598":0.5926126126,"28599":0.5936036036,"28600":0.5945945946,"28601":0.5955855856,"28602":0.5965765766,"28603":0.5975675676,"28604":0.5985585586,"28605":0.5995495495,"28606":0.6005405405,"28607":0.6015315315,"28608":0.6025225225,"28609":0.6035135135,"28610":0.6045045045,"28611":0.6054954955,"28612":0.6064864865,"28613":0.6074774775,"28614":0.6084684685,"28615":0.6094594595,"28616":0.6104504505,"28617":0.6114414414,"28618":0.6124324324,"28619":0.6134234234,"28620":0.6144144144,"28621":0.6154054054,"28622":0.6163963964,"28623":0.6173873874,"28624":0.6183783784,"28625":0.6193693694,"28626":0.6203603604,"28627":0.6213513514,"28628":0.6223423423,"28629":0.6233333333,"28630":0.6243243243,"28631":0.6253153153,"28632":0.6263063063,"28633":0.6272972973,"28634":0.6282882883,"28635":0.6292792793,"28636":0.6302702703,"28637":0.6312612613,"28638":0.6322522523,"28639":0.6332432432,"28640":0.6342342342,"28641":0.6352252252,"28642":0.6362162162,"28643":0.6372072072,"28644":0.6381981982,"28645":0.6391891892,"28646":0.6401801802,"28647":0.6411711712,"28648":0.6421621622,"28649":0.6431531532,"28650":0.6441441441,"28651":0.6451351351,"28652":0.6461261261,"28653":0.6471171171,"28654":0.6481081081,"28655":0.6490990991,"28656":0.6500900901,"28657":0.6510810811,"28658":0.6520720721,"28659":0.6530630631,"28660":0.6540540541,"28661":0.655045045,"28662":0.656036036,"28663":0.657027027,"28664":0.658018018,"28665":0.659009009,"28666":0.66,"28667":0.660990991,"28668":0.661981982,"28669":0.662972973,"28670":0.663963964,"28671":0.664954955,"28672":0.6659459459,"28673":0.6669369369,"28674":0.6679279279,"28675":0.6689189189,"28676":0.6699099099,"28677":0.6709009009,"28678":0.6718918919,"28679":0.6728828829,"28680":0.6738738739,"28681":0.6748648649,"28682":0.6758558559,"28683":0.6768468468,"28684":0.6778378378,"28685":0.6788288288,"28686":0.6798198198,"28687":0.6808108108,"28688":0.6818018018,"28689":0.6827927928,"28690":0.6837837838,"28691":0.6847747748,"28692":0.6857657658,"28693":0.6867567568,"28694":0.6877477477,"28695":0.6887387387,"28696":0.6897297297,"28697":0.6907207207,"28698":0.6917117117,"28699":0.6927027027,"28700":0.6936936937,"28701":0.6946846847,"28702":0.6956756757,"28703":0.6966666667,"28704":0.6976576577,"28705":0.6986486486,"28706":0.6996396396,"28707":0.7006306306,"28708":0.7016216216,"28709":0.7026126126,"28710":0.7036036036,"28711":0.7045945946,"28712":0.7055855856,"28713":0.7065765766,"28714":0.7075675676,"28715":0.7085585586,"28716":0.7095495495,"28717":0.7105405405,"28718":0.7115315315,"28719":0.7125225225,"28720":0.7135135135,"28721":0.7145045045,"28722":0.7154954955,"28723":0.7164864865,"28724":0.7174774775,"28725":0.7184684685,"28726":0.7194594595,"28727":0.7204504505,"28728":0.7214414414,"28729":0.7224324324,"28730":0.7234234234,"28731":0.7244144144,"28732":0.7254054054,"28733":0.7263963964,"28734":0.7273873874,"28735":0.7283783784,"28736":0.7293693694,"28737":0.7303603604,"28738":0.7313513514,"28739":0.7323423423,"28740":0.7333333333,"28741":0.7343243243,"28742":0.7353153153,"28743":0.7363063063,"28744":0.7372972973,"28745":0.7382882883,"28746":0.7392792793,"28747":0.7402702703,"28748":0.7412612613,"28749":0.7422522523,"28750":0.7432432432,"28751":0.7442342342,"28752":0.7452252252,"28753":0.7462162162,"28754":0.7472072072,"28755":0.7481981982,"28756":0.7491891892,"28757":0.7501801802,"28758":0.7511711712,"28759":0.7521621622,"28760":0.7531531532,"28761":0.7541441441,"28762":0.7551351351,"28763":0.7561261261,"28764":0.7571171171,"28765":0.7581081081,"28766":0.7590990991,"28767":0.7600900901,"28768":0.7610810811,"28769":0.7620720721,"28770":0.7630630631,"28771":0.7640540541,"28772":0.765045045,"28773":0.766036036,"28774":0.767027027,"28775":0.768018018,"28776":0.769009009,"28777":0.77,"28778":0.770990991,"28779":0.771981982,"28780":0.772972973,"28781":0.773963964,"28782":0.774954955,"28783":0.7759459459,"28784":0.7769369369,"28785":0.7779279279,"28786":0.7789189189,"28787":0.7799099099,"28788":0.7809009009,"28789":0.7818918919,"28790":0.7828828829,"28791":0.7838738739,"28792":0.7848648649,"28793":0.7858558559,"28794":0.7868468468,"28795":0.7878378378,"28796":0.7888288288,"28797":0.7898198198,"28798":0.7908108108,"28799":0.7918018018,"28800":0.7927927928,"28801":0.7937837838,"28802":0.7947747748,"28803":0.7957657658,"28804":0.7967567568,"28805":0.7977477477,"28806":0.7987387387,"28807":0.7997297297,"28808":0.8007207207,"28809":0.8017117117,"28810":0.8027027027,"28811":0.8036936937,"28812":0.8046846847,"28813":0.8056756757,"28814":0.8066666667,"28815":0.8076576577,"28816":0.8086486486,"28817":0.8096396396,"28818":0.8106306306,"28819":0.8116216216,"28820":0.8126126126,"28821":0.8136036036,"28822":0.8145945946,"28823":0.8155855856,"28824":0.8165765766,"28825":0.8175675676,"28826":0.8185585586,"28827":0.8195495495,"28828":0.8205405405,"28829":0.8215315315,"28830":0.8225225225,"28831":0.8235135135,"28832":0.8245045045,"28833":0.8254954955,"28834":0.8264864865,"28835":0.8274774775,"28836":0.8284684685,"28837":0.8294594595,"28838":0.8304504505,"28839":0.8314414414,"28840":0.8324324324,"28841":0.8334234234,"28842":0.8344144144,"28843":0.8354054054,"28844":0.8363963964,"28845":0.8373873874,"28846":0.8383783784,"28847":0.8393693694,"28848":0.8403603604,"28849":0.8413513514,"28850":0.8423423423,"28851":0.8433333333,"28852":0.8443243243,"28853":0.8453153153,"28854":0.8463063063,"28855":0.8472972973,"28856":0.8482882883,"28857":0.8492792793,"28858":0.8502702703,"28859":0.8512612613,"28860":0.8522522523,"28861":0.8532432432,"28862":0.8542342342,"28863":0.8552252252,"28864":0.8562162162,"28865":0.8572072072,"28866":0.8581981982,"28867":0.8591891892,"28868":0.8601801802,"28869":0.8611711712,"28870":0.8621621622,"28871":0.8631531532,"28872":0.8641441441,"28873":0.8651351351,"28874":0.8661261261,"28875":0.8671171171,"28876":0.8681081081,"28877":0.8690990991,"28878":0.8700900901,"28879":0.8710810811,"28880":0.8720720721,"28881":0.8730630631,"28882":0.8740540541,"28883":0.875045045,"28884":0.876036036,"28885":0.877027027,"28886":0.878018018,"28887":0.879009009,"28888":0.88,"28889":0.880990991,"28890":0.881981982,"28891":0.882972973,"28892":0.883963964,"28893":0.884954955,"28894":0.8859459459,"28895":0.8869369369,"28896":0.8879279279,"28897":0.8889189189,"28898":0.8899099099,"28899":0.8909009009,"28900":0.8918918919,"28901":0.8928828829,"28902":0.8938738739,"28903":0.8948648649,"28904":0.8958558559,"28905":0.8968468468,"28906":0.8978378378,"28907":0.8988288288,"28908":0.8998198198,"28909":0.9008108108,"28910":0.9018018018,"28911":0.9027927928,"28912":0.9037837838,"28913":0.9047747748,"28914":0.9057657658,"28915":0.9067567568,"28916":0.9077477477,"28917":0.9087387387,"28918":0.9097297297,"28919":0.9107207207,"28920":0.9117117117,"28921":0.9127027027,"28922":0.9136936937,"28923":0.9146846847,"28924":0.9156756757,"28925":0.9166666667,"28926":0.9176576577,"28927":0.9186486486,"28928":0.9196396396,"28929":0.9206306306,"28930":0.9216216216,"28931":0.9226126126,"28932":0.9236036036,"28933":0.9245945946,"28934":0.9255855856,"28935":0.9265765766,"28936":0.9275675676,"28937":0.9285585586,"28938":0.9295495495,"28939":0.9305405405,"28940":0.9315315315,"28941":0.9325225225,"28942":0.9335135135,"28943":0.9345045045,"28944":0.9354954955,"28945":0.9364864865,"28946":0.9374774775,"28947":0.9384684685,"28948":0.9394594595,"28949":0.9404504505,"28950":0.9414414414,"28951":0.9424324324,"28952":0.9434234234,"28953":0.9444144144,"28954":0.9454054054,"28955":0.9463963964,"28956":0.9473873874,"28957":0.9483783784,"28958":0.9493693694,"28959":0.9503603604,"28960":0.9513513514,"28961":0.9523423423,"28962":0.9533333333,"28963":0.9543243243,"28964":0.9553153153,"28965":0.9563063063,"28966":0.9572972973,"28967":0.9582882883,"28968":0.9592792793,"28969":0.9602702703,"28970":0.9612612613,"28971":0.9622522523,"28972":0.9632432432,"28973":0.9642342342,"28974":0.9652252252,"28975":0.9662162162,"28976":0.9672072072,"28977":0.9681981982,"28978":0.9691891892,"28979":0.9701801802,"28980":0.9711711712,"28981":0.9721621622,"28982":0.9731531532,"28983":0.9741441441,"28984":0.9751351351,"28985":0.9761261261,"28986":0.9771171171,"28987":0.9781081081,"28988":0.9790990991,"28989":0.9800900901,"28990":0.9810810811,"28991":0.9820720721,"28992":0.9830630631,"28993":0.9840540541,"28994":0.985045045,"28995":0.986036036,"28996":0.987027027,"28997":0.988018018,"28998":0.989009009,"28999":0.99,"29000":0.0,"29001":0.000990991,"29002":0.001981982,"29003":0.002972973,"29004":0.003963964,"29005":0.004954955,"29006":0.0059459459,"29007":0.0069369369,"29008":0.0079279279,"29009":0.0089189189,"29010":0.0099099099,"29011":0.0109009009,"29012":0.0118918919,"29013":0.0128828829,"29014":0.0138738739,"29015":0.0148648649,"29016":0.0158558559,"29017":0.0168468468,"29018":0.0178378378,"29019":0.0188288288,"29020":0.0198198198,"29021":0.0208108108,"29022":0.0218018018,"29023":0.0227927928,"29024":0.0237837838,"29025":0.0247747748,"29026":0.0257657658,"29027":0.0267567568,"29028":0.0277477477,"29029":0.0287387387,"29030":0.0297297297,"29031":0.0307207207,"29032":0.0317117117,"29033":0.0327027027,"29034":0.0336936937,"29035":0.0346846847,"29036":0.0356756757,"29037":0.0366666667,"29038":0.0376576577,"29039":0.0386486486,"29040":0.0396396396,"29041":0.0406306306,"29042":0.0416216216,"29043":0.0426126126,"29044":0.0436036036,"29045":0.0445945946,"29046":0.0455855856,"29047":0.0465765766,"29048":0.0475675676,"29049":0.0485585586,"29050":0.0495495495,"29051":0.0505405405,"29052":0.0515315315,"29053":0.0525225225,"29054":0.0535135135,"29055":0.0545045045,"29056":0.0554954955,"29057":0.0564864865,"29058":0.0574774775,"29059":0.0584684685,"29060":0.0594594595,"29061":0.0604504505,"29062":0.0614414414,"29063":0.0624324324,"29064":0.0634234234,"29065":0.0644144144,"29066":0.0654054054,"29067":0.0663963964,"29068":0.0673873874,"29069":0.0683783784,"29070":0.0693693694,"29071":0.0703603604,"29072":0.0713513514,"29073":0.0723423423,"29074":0.0733333333,"29075":0.0743243243,"29076":0.0753153153,"29077":0.0763063063,"29078":0.0772972973,"29079":0.0782882883,"29080":0.0792792793,"29081":0.0802702703,"29082":0.0812612613,"29083":0.0822522523,"29084":0.0832432432,"29085":0.0842342342,"29086":0.0852252252,"29087":0.0862162162,"29088":0.0872072072,"29089":0.0881981982,"29090":0.0891891892,"29091":0.0901801802,"29092":0.0911711712,"29093":0.0921621622,"29094":0.0931531532,"29095":0.0941441441,"29096":0.0951351351,"29097":0.0961261261,"29098":0.0971171171,"29099":0.0981081081,"29100":0.0990990991,"29101":0.1000900901,"29102":0.1010810811,"29103":0.1020720721,"29104":0.1030630631,"29105":0.1040540541,"29106":0.105045045,"29107":0.106036036,"29108":0.107027027,"29109":0.108018018,"29110":0.109009009,"29111":0.11,"29112":0.110990991,"29113":0.111981982,"29114":0.112972973,"29115":0.113963964,"29116":0.114954955,"29117":0.1159459459,"29118":0.1169369369,"29119":0.1179279279,"29120":0.1189189189,"29121":0.1199099099,"29122":0.1209009009,"29123":0.1218918919,"29124":0.1228828829,"29125":0.1238738739,"29126":0.1248648649,"29127":0.1258558559,"29128":0.1268468468,"29129":0.1278378378,"29130":0.1288288288,"29131":0.1298198198,"29132":0.1308108108,"29133":0.1318018018,"29134":0.1327927928,"29135":0.1337837838,"29136":0.1347747748,"29137":0.1357657658,"29138":0.1367567568,"29139":0.1377477477,"29140":0.1387387387,"29141":0.1397297297,"29142":0.1407207207,"29143":0.1417117117,"29144":0.1427027027,"29145":0.1436936937,"29146":0.1446846847,"29147":0.1456756757,"29148":0.1466666667,"29149":0.1476576577,"29150":0.1486486486,"29151":0.1496396396,"29152":0.1506306306,"29153":0.1516216216,"29154":0.1526126126,"29155":0.1536036036,"29156":0.1545945946,"29157":0.1555855856,"29158":0.1565765766,"29159":0.1575675676,"29160":0.1585585586,"29161":0.1595495495,"29162":0.1605405405,"29163":0.1615315315,"29164":0.1625225225,"29165":0.1635135135,"29166":0.1645045045,"29167":0.1654954955,"29168":0.1664864865,"29169":0.1674774775,"29170":0.1684684685,"29171":0.1694594595,"29172":0.1704504505,"29173":0.1714414414,"29174":0.1724324324,"29175":0.1734234234,"29176":0.1744144144,"29177":0.1754054054,"29178":0.1763963964,"29179":0.1773873874,"29180":0.1783783784,"29181":0.1793693694,"29182":0.1803603604,"29183":0.1813513514,"29184":0.1823423423,"29185":0.1833333333,"29186":0.1843243243,"29187":0.1853153153,"29188":0.1863063063,"29189":0.1872972973,"29190":0.1882882883,"29191":0.1892792793,"29192":0.1902702703,"29193":0.1912612613,"29194":0.1922522523,"29195":0.1932432432,"29196":0.1942342342,"29197":0.1952252252,"29198":0.1962162162,"29199":0.1972072072,"29200":0.1981981982,"29201":0.1991891892,"29202":0.2001801802,"29203":0.2011711712,"29204":0.2021621622,"29205":0.2031531532,"29206":0.2041441441,"29207":0.2051351351,"29208":0.2061261261,"29209":0.2071171171,"29210":0.2081081081,"29211":0.2090990991,"29212":0.2100900901,"29213":0.2110810811,"29214":0.2120720721,"29215":0.2130630631,"29216":0.2140540541,"29217":0.215045045,"29218":0.216036036,"29219":0.217027027,"29220":0.218018018,"29221":0.219009009,"29222":0.22,"29223":0.220990991,"29224":0.221981982,"29225":0.222972973,"29226":0.223963964,"29227":0.224954955,"29228":0.2259459459,"29229":0.2269369369,"29230":0.2279279279,"29231":0.2289189189,"29232":0.2299099099,"29233":0.2309009009,"29234":0.2318918919,"29235":0.2328828829,"29236":0.2338738739,"29237":0.2348648649,"29238":0.2358558559,"29239":0.2368468468,"29240":0.2378378378,"29241":0.2388288288,"29242":0.2398198198,"29243":0.2408108108,"29244":0.2418018018,"29245":0.2427927928,"29246":0.2437837838,"29247":0.2447747748,"29248":0.2457657658,"29249":0.2467567568,"29250":0.2477477477,"29251":0.2487387387,"29252":0.2497297297,"29253":0.2507207207,"29254":0.2517117117,"29255":0.2527027027,"29256":0.2536936937,"29257":0.2546846847,"29258":0.2556756757,"29259":0.2566666667,"29260":0.2576576577,"29261":0.2586486486,"29262":0.2596396396,"29263":0.2606306306,"29264":0.2616216216,"29265":0.2626126126,"29266":0.2636036036,"29267":0.2645945946,"29268":0.2655855856,"29269":0.2665765766,"29270":0.2675675676,"29271":0.2685585586,"29272":0.2695495495,"29273":0.2705405405,"29274":0.2715315315,"29275":0.2725225225,"29276":0.2735135135,"29277":0.2745045045,"29278":0.2754954955,"29279":0.2764864865,"29280":0.2774774775,"29281":0.2784684685,"29282":0.2794594595,"29283":0.2804504505,"29284":0.2814414414,"29285":0.2824324324,"29286":0.2834234234,"29287":0.2844144144,"29288":0.2854054054,"29289":0.2863963964,"29290":0.2873873874,"29291":0.2883783784,"29292":0.2893693694,"29293":0.2903603604,"29294":0.2913513514,"29295":0.2923423423,"29296":0.2933333333,"29297":0.2943243243,"29298":0.2953153153,"29299":0.2963063063,"29300":0.2972972973,"29301":0.2982882883,"29302":0.2992792793,"29303":0.3002702703,"29304":0.3012612613,"29305":0.3022522523,"29306":0.3032432432,"29307":0.3042342342,"29308":0.3052252252,"29309":0.3062162162,"29310":0.3072072072,"29311":0.3081981982,"29312":0.3091891892,"29313":0.3101801802,"29314":0.3111711712,"29315":0.3121621622,"29316":0.3131531532,"29317":0.3141441441,"29318":0.3151351351,"29319":0.3161261261,"29320":0.3171171171,"29321":0.3181081081,"29322":0.3190990991,"29323":0.3200900901,"29324":0.3210810811,"29325":0.3220720721,"29326":0.3230630631,"29327":0.3240540541,"29328":0.325045045,"29329":0.326036036,"29330":0.327027027,"29331":0.328018018,"29332":0.329009009,"29333":0.33,"29334":0.330990991,"29335":0.331981982,"29336":0.332972973,"29337":0.333963964,"29338":0.334954955,"29339":0.3359459459,"29340":0.3369369369,"29341":0.3379279279,"29342":0.3389189189,"29343":0.3399099099,"29344":0.3409009009,"29345":0.3418918919,"29346":0.3428828829,"29347":0.3438738739,"29348":0.3448648649,"29349":0.3458558559,"29350":0.3468468468,"29351":0.3478378378,"29352":0.3488288288,"29353":0.3498198198,"29354":0.3508108108,"29355":0.3518018018,"29356":0.3527927928,"29357":0.3537837838,"29358":0.3547747748,"29359":0.3557657658,"29360":0.3567567568,"29361":0.3577477477,"29362":0.3587387387,"29363":0.3597297297,"29364":0.3607207207,"29365":0.3617117117,"29366":0.3627027027,"29367":0.3636936937,"29368":0.3646846847,"29369":0.3656756757,"29370":0.3666666667,"29371":0.3676576577,"29372":0.3686486486,"29373":0.3696396396,"29374":0.3706306306,"29375":0.3716216216,"29376":0.3726126126,"29377":0.3736036036,"29378":0.3745945946,"29379":0.3755855856,"29380":0.3765765766,"29381":0.3775675676,"29382":0.3785585586,"29383":0.3795495495,"29384":0.3805405405,"29385":0.3815315315,"29386":0.3825225225,"29387":0.3835135135,"29388":0.3845045045,"29389":0.3854954955,"29390":0.3864864865,"29391":0.3874774775,"29392":0.3884684685,"29393":0.3894594595,"29394":0.3904504505,"29395":0.3914414414,"29396":0.3924324324,"29397":0.3934234234,"29398":0.3944144144,"29399":0.3954054054,"29400":0.3963963964,"29401":0.3973873874,"29402":0.3983783784,"29403":0.3993693694,"29404":0.4003603604,"29405":0.4013513514,"29406":0.4023423423,"29407":0.4033333333,"29408":0.4043243243,"29409":0.4053153153,"29410":0.4063063063,"29411":0.4072972973,"29412":0.4082882883,"29413":0.4092792793,"29414":0.4102702703,"29415":0.4112612613,"29416":0.4122522523,"29417":0.4132432432,"29418":0.4142342342,"29419":0.4152252252,"29420":0.4162162162,"29421":0.4172072072,"29422":0.4181981982,"29423":0.4191891892,"29424":0.4201801802,"29425":0.4211711712,"29426":0.4221621622,"29427":0.4231531532,"29428":0.4241441441,"29429":0.4251351351,"29430":0.4261261261,"29431":0.4271171171,"29432":0.4281081081,"29433":0.4290990991,"29434":0.4300900901,"29435":0.4310810811,"29436":0.4320720721,"29437":0.4330630631,"29438":0.4340540541,"29439":0.435045045,"29440":0.436036036,"29441":0.437027027,"29442":0.438018018,"29443":0.439009009,"29444":0.44,"29445":0.440990991,"29446":0.441981982,"29447":0.442972973,"29448":0.443963964,"29449":0.444954955,"29450":0.4459459459,"29451":0.4469369369,"29452":0.4479279279,"29453":0.4489189189,"29454":0.4499099099,"29455":0.4509009009,"29456":0.4518918919,"29457":0.4528828829,"29458":0.4538738739,"29459":0.4548648649,"29460":0.4558558559,"29461":0.4568468468,"29462":0.4578378378,"29463":0.4588288288,"29464":0.4598198198,"29465":0.4608108108,"29466":0.4618018018,"29467":0.4627927928,"29468":0.4637837838,"29469":0.4647747748,"29470":0.4657657658,"29471":0.4667567568,"29472":0.4677477477,"29473":0.4687387387,"29474":0.4697297297,"29475":0.4707207207,"29476":0.4717117117,"29477":0.4727027027,"29478":0.4736936937,"29479":0.4746846847,"29480":0.4756756757,"29481":0.4766666667,"29482":0.4776576577,"29483":0.4786486486,"29484":0.4796396396,"29485":0.4806306306,"29486":0.4816216216,"29487":0.4826126126,"29488":0.4836036036,"29489":0.4845945946,"29490":0.4855855856,"29491":0.4865765766,"29492":0.4875675676,"29493":0.4885585586,"29494":0.4895495495,"29495":0.4905405405,"29496":0.4915315315,"29497":0.4925225225,"29498":0.4935135135,"29499":0.4945045045,"29500":0.4954954955,"29501":0.4964864865,"29502":0.4974774775,"29503":0.4984684685,"29504":0.4994594595,"29505":0.5004504505,"29506":0.5014414414,"29507":0.5024324324,"29508":0.5034234234,"29509":0.5044144144,"29510":0.5054054054,"29511":0.5063963964,"29512":0.5073873874,"29513":0.5083783784,"29514":0.5093693694,"29515":0.5103603604,"29516":0.5113513514,"29517":0.5123423423,"29518":0.5133333333,"29519":0.5143243243,"29520":0.5153153153,"29521":0.5163063063,"29522":0.5172972973,"29523":0.5182882883,"29524":0.5192792793,"29525":0.5202702703,"29526":0.5212612613,"29527":0.5222522523,"29528":0.5232432432,"29529":0.5242342342,"29530":0.5252252252,"29531":0.5262162162,"29532":0.5272072072,"29533":0.5281981982,"29534":0.5291891892,"29535":0.5301801802,"29536":0.5311711712,"29537":0.5321621622,"29538":0.5331531532,"29539":0.5341441441,"29540":0.5351351351,"29541":0.5361261261,"29542":0.5371171171,"29543":0.5381081081,"29544":0.5390990991,"29545":0.5400900901,"29546":0.5410810811,"29547":0.5420720721,"29548":0.5430630631,"29549":0.5440540541,"29550":0.545045045,"29551":0.546036036,"29552":0.547027027,"29553":0.548018018,"29554":0.549009009,"29555":0.55,"29556":0.550990991,"29557":0.551981982,"29558":0.552972973,"29559":0.553963964,"29560":0.554954955,"29561":0.5559459459,"29562":0.5569369369,"29563":0.5579279279,"29564":0.5589189189,"29565":0.5599099099,"29566":0.5609009009,"29567":0.5618918919,"29568":0.5628828829,"29569":0.5638738739,"29570":0.5648648649,"29571":0.5658558559,"29572":0.5668468468,"29573":0.5678378378,"29574":0.5688288288,"29575":0.5698198198,"29576":0.5708108108,"29577":0.5718018018,"29578":0.5727927928,"29579":0.5737837838,"29580":0.5747747748,"29581":0.5757657658,"29582":0.5767567568,"29583":0.5777477477,"29584":0.5787387387,"29585":0.5797297297,"29586":0.5807207207,"29587":0.5817117117,"29588":0.5827027027,"29589":0.5836936937,"29590":0.5846846847,"29591":0.5856756757,"29592":0.5866666667,"29593":0.5876576577,"29594":0.5886486486,"29595":0.5896396396,"29596":0.5906306306,"29597":0.5916216216,"29598":0.5926126126,"29599":0.5936036036,"29600":0.5945945946,"29601":0.5955855856,"29602":0.5965765766,"29603":0.5975675676,"29604":0.5985585586,"29605":0.5995495495,"29606":0.6005405405,"29607":0.6015315315,"29608":0.6025225225,"29609":0.6035135135,"29610":0.6045045045,"29611":0.6054954955,"29612":0.6064864865,"29613":0.6074774775,"29614":0.6084684685,"29615":0.6094594595,"29616":0.6104504505,"29617":0.6114414414,"29618":0.6124324324,"29619":0.6134234234,"29620":0.6144144144,"29621":0.6154054054,"29622":0.6163963964,"29623":0.6173873874,"29624":0.6183783784,"29625":0.6193693694,"29626":0.6203603604,"29627":0.6213513514,"29628":0.6223423423,"29629":0.6233333333,"29630":0.6243243243,"29631":0.6253153153,"29632":0.6263063063,"29633":0.6272972973,"29634":0.6282882883,"29635":0.6292792793,"29636":0.6302702703,"29637":0.6312612613,"29638":0.6322522523,"29639":0.6332432432,"29640":0.6342342342,"29641":0.6352252252,"29642":0.6362162162,"29643":0.6372072072,"29644":0.6381981982,"29645":0.6391891892,"29646":0.6401801802,"29647":0.6411711712,"29648":0.6421621622,"29649":0.6431531532,"29650":0.6441441441,"29651":0.6451351351,"29652":0.6461261261,"29653":0.6471171171,"29654":0.6481081081,"29655":0.6490990991,"29656":0.6500900901,"29657":0.6510810811,"29658":0.6520720721,"29659":0.6530630631,"29660":0.6540540541,"29661":0.655045045,"29662":0.656036036,"29663":0.657027027,"29664":0.658018018,"29665":0.659009009,"29666":0.66,"29667":0.660990991,"29668":0.661981982,"29669":0.662972973,"29670":0.663963964,"29671":0.664954955,"29672":0.6659459459,"29673":0.6669369369,"29674":0.6679279279,"29675":0.6689189189,"29676":0.6699099099,"29677":0.6709009009,"29678":0.6718918919,"29679":0.6728828829,"29680":0.6738738739,"29681":0.6748648649,"29682":0.6758558559,"29683":0.6768468468,"29684":0.6778378378,"29685":0.6788288288,"29686":0.6798198198,"29687":0.6808108108,"29688":0.6818018018,"29689":0.6827927928,"29690":0.6837837838,"29691":0.6847747748,"29692":0.6857657658,"29693":0.6867567568,"29694":0.6877477477,"29695":0.6887387387,"29696":0.6897297297,"29697":0.6907207207,"29698":0.6917117117,"29699":0.6927027027,"29700":0.6936936937,"29701":0.6946846847,"29702":0.6956756757,"29703":0.6966666667,"29704":0.6976576577,"29705":0.6986486486,"29706":0.6996396396,"29707":0.7006306306,"29708":0.7016216216,"29709":0.7026126126,"29710":0.7036036036,"29711":0.7045945946,"29712":0.7055855856,"29713":0.7065765766,"29714":0.7075675676,"29715":0.7085585586,"29716":0.7095495495,"29717":0.7105405405,"29718":0.7115315315,"29719":0.7125225225,"29720":0.7135135135,"29721":0.7145045045,"29722":0.7154954955,"29723":0.7164864865,"29724":0.7174774775,"29725":0.7184684685,"29726":0.7194594595,"29727":0.7204504505,"29728":0.7214414414,"29729":0.7224324324,"29730":0.7234234234,"29731":0.7244144144,"29732":0.7254054054,"29733":0.7263963964,"29734":0.7273873874,"29735":0.7283783784,"29736":0.7293693694,"29737":0.7303603604,"29738":0.7313513514,"29739":0.7323423423,"29740":0.7333333333,"29741":0.7343243243,"29742":0.7353153153,"29743":0.7363063063,"29744":0.7372972973,"29745":0.7382882883,"29746":0.7392792793,"29747":0.7402702703,"29748":0.7412612613,"29749":0.7422522523,"29750":0.7432432432,"29751":0.7442342342,"29752":0.7452252252,"29753":0.7462162162,"29754":0.7472072072,"29755":0.7481981982,"29756":0.7491891892,"29757":0.7501801802,"29758":0.7511711712,"29759":0.7521621622,"29760":0.7531531532,"29761":0.7541441441,"29762":0.7551351351,"29763":0.7561261261,"29764":0.7571171171,"29765":0.7581081081,"29766":0.7590990991,"29767":0.7600900901,"29768":0.7610810811,"29769":0.7620720721,"29770":0.7630630631,"29771":0.7640540541,"29772":0.765045045,"29773":0.766036036,"29774":0.767027027,"29775":0.768018018,"29776":0.769009009,"29777":0.77,"29778":0.770990991,"29779":0.771981982,"29780":0.772972973,"29781":0.773963964,"29782":0.774954955,"29783":0.7759459459,"29784":0.7769369369,"29785":0.7779279279,"29786":0.7789189189,"29787":0.7799099099,"29788":0.7809009009,"29789":0.7818918919,"29790":0.7828828829,"29791":0.7838738739,"29792":0.7848648649,"29793":0.7858558559,"29794":0.7868468468,"29795":0.7878378378,"29796":0.7888288288,"29797":0.7898198198,"29798":0.7908108108,"29799":0.7918018018,"29800":0.7927927928,"29801":0.7937837838,"29802":0.7947747748,"29803":0.7957657658,"29804":0.7967567568,"29805":0.7977477477,"29806":0.7987387387,"29807":0.7997297297,"29808":0.8007207207,"29809":0.8017117117,"29810":0.8027027027,"29811":0.8036936937,"29812":0.8046846847,"29813":0.8056756757,"29814":0.8066666667,"29815":0.8076576577,"29816":0.8086486486,"29817":0.8096396396,"29818":0.8106306306,"29819":0.8116216216,"29820":0.8126126126,"29821":0.8136036036,"29822":0.8145945946,"29823":0.8155855856,"29824":0.8165765766,"29825":0.8175675676,"29826":0.8185585586,"29827":0.8195495495,"29828":0.8205405405,"29829":0.8215315315,"29830":0.8225225225,"29831":0.8235135135,"29832":0.8245045045,"29833":0.8254954955,"29834":0.8264864865,"29835":0.8274774775,"29836":0.8284684685,"29837":0.8294594595,"29838":0.8304504505,"29839":0.8314414414,"29840":0.8324324324,"29841":0.8334234234,"29842":0.8344144144,"29843":0.8354054054,"29844":0.8363963964,"29845":0.8373873874,"29846":0.8383783784,"29847":0.8393693694,"29848":0.8403603604,"29849":0.8413513514,"29850":0.8423423423,"29851":0.8433333333,"29852":0.8443243243,"29853":0.8453153153,"29854":0.8463063063,"29855":0.8472972973,"29856":0.8482882883,"29857":0.8492792793,"29858":0.8502702703,"29859":0.8512612613,"29860":0.8522522523,"29861":0.8532432432,"29862":0.8542342342,"29863":0.8552252252,"29864":0.8562162162,"29865":0.8572072072,"29866":0.8581981982,"29867":0.8591891892,"29868":0.8601801802,"29869":0.8611711712,"29870":0.8621621622,"29871":0.8631531532,"29872":0.8641441441,"29873":0.8651351351,"29874":0.8661261261,"29875":0.8671171171,"29876":0.8681081081,"29877":0.8690990991,"29878":0.8700900901,"29879":0.8710810811,"29880":0.8720720721,"29881":0.8730630631,"29882":0.8740540541,"29883":0.875045045,"29884":0.876036036,"29885":0.877027027,"29886":0.878018018,"29887":0.879009009,"29888":0.88,"29889":0.880990991,"29890":0.881981982,"29891":0.882972973,"29892":0.883963964,"29893":0.884954955,"29894":0.8859459459,"29895":0.8869369369,"29896":0.8879279279,"29897":0.8889189189,"29898":0.8899099099,"29899":0.8909009009,"29900":0.8918918919,"29901":0.8928828829,"29902":0.8938738739,"29903":0.8948648649,"29904":0.8958558559,"29905":0.8968468468,"29906":0.8978378378,"29907":0.8988288288,"29908":0.8998198198,"29909":0.9008108108,"29910":0.9018018018,"29911":0.9027927928,"29912":0.9037837838,"29913":0.9047747748,"29914":0.9057657658,"29915":0.9067567568,"29916":0.9077477477,"29917":0.9087387387,"29918":0.9097297297,"29919":0.9107207207,"29920":0.9117117117,"29921":0.9127027027,"29922":0.9136936937,"29923":0.9146846847,"29924":0.9156756757,"29925":0.9166666667,"29926":0.9176576577,"29927":0.9186486486,"29928":0.9196396396,"29929":0.9206306306,"29930":0.9216216216,"29931":0.9226126126,"29932":0.9236036036,"29933":0.9245945946,"29934":0.9255855856,"29935":0.9265765766,"29936":0.9275675676,"29937":0.9285585586,"29938":0.9295495495,"29939":0.9305405405,"29940":0.9315315315,"29941":0.9325225225,"29942":0.9335135135,"29943":0.9345045045,"29944":0.9354954955,"29945":0.9364864865,"29946":0.9374774775,"29947":0.9384684685,"29948":0.9394594595,"29949":0.9404504505,"29950":0.9414414414,"29951":0.9424324324,"29952":0.9434234234,"29953":0.9444144144,"29954":0.9454054054,"29955":0.9463963964,"29956":0.9473873874,"29957":0.9483783784,"29958":0.9493693694,"29959":0.9503603604,"29960":0.9513513514,"29961":0.9523423423,"29962":0.9533333333,"29963":0.9543243243,"29964":0.9553153153,"29965":0.9563063063,"29966":0.9572972973,"29967":0.9582882883,"29968":0.9592792793,"29969":0.9602702703,"29970":0.9612612613,"29971":0.9622522523,"29972":0.9632432432,"29973":0.9642342342,"29974":0.9652252252,"29975":0.9662162162,"29976":0.9672072072,"29977":0.9681981982,"29978":0.9691891892,"29979":0.9701801802,"29980":0.9711711712,"29981":0.9721621622,"29982":0.9731531532,"29983":0.9741441441,"29984":0.9751351351,"29985":0.9761261261,"29986":0.9771171171,"29987":0.9781081081,"29988":0.9790990991,"29989":0.9800900901,"29990":0.9810810811,"29991":0.9820720721,"29992":0.9830630631,"29993":0.9840540541,"29994":0.985045045,"29995":0.986036036,"29996":0.987027027,"29997":0.988018018,"29998":0.989009009,"29999":0.99,"30000":0.0,"30001":0.000990991,"30002":0.001981982,"30003":0.002972973,"30004":0.003963964,"30005":0.004954955,"30006":0.0059459459,"30007":0.0069369369,"30008":0.0079279279,"30009":0.0089189189,"30010":0.0099099099,"30011":0.0109009009,"30012":0.0118918919,"30013":0.0128828829,"30014":0.0138738739,"30015":0.0148648649,"30016":0.0158558559,"30017":0.0168468468,"30018":0.0178378378,"30019":0.0188288288,"30020":0.0198198198,"30021":0.0208108108,"30022":0.0218018018,"30023":0.0227927928,"30024":0.0237837838,"30025":0.0247747748,"30026":0.0257657658,"30027":0.0267567568,"30028":0.0277477477,"30029":0.0287387387,"30030":0.0297297297,"30031":0.0307207207,"30032":0.0317117117,"30033":0.0327027027,"30034":0.0336936937,"30035":0.0346846847,"30036":0.0356756757,"30037":0.0366666667,"30038":0.0376576577,"30039":0.0386486486,"30040":0.0396396396,"30041":0.0406306306,"30042":0.0416216216,"30043":0.0426126126,"30044":0.0436036036,"30045":0.0445945946,"30046":0.0455855856,"30047":0.0465765766,"30048":0.0475675676,"30049":0.0485585586,"30050":0.0495495495,"30051":0.0505405405,"30052":0.0515315315,"30053":0.0525225225,"30054":0.0535135135,"30055":0.0545045045,"30056":0.0554954955,"30057":0.0564864865,"30058":0.0574774775,"30059":0.0584684685,"30060":0.0594594595,"30061":0.0604504505,"30062":0.0614414414,"30063":0.0624324324,"30064":0.0634234234,"30065":0.0644144144,"30066":0.0654054054,"30067":0.0663963964,"30068":0.0673873874,"30069":0.0683783784,"30070":0.0693693694,"30071":0.0703603604,"30072":0.0713513514,"30073":0.0723423423,"30074":0.0733333333,"30075":0.0743243243,"30076":0.0753153153,"30077":0.0763063063,"30078":0.0772972973,"30079":0.0782882883,"30080":0.0792792793,"30081":0.0802702703,"30082":0.0812612613,"30083":0.0822522523,"30084":0.0832432432,"30085":0.0842342342,"30086":0.0852252252,"30087":0.0862162162,"30088":0.0872072072,"30089":0.0881981982,"30090":0.0891891892,"30091":0.0901801802,"30092":0.0911711712,"30093":0.0921621622,"30094":0.0931531532,"30095":0.0941441441,"30096":0.0951351351,"30097":0.0961261261,"30098":0.0971171171,"30099":0.0981081081,"30100":0.0990990991,"30101":0.1000900901,"30102":0.1010810811,"30103":0.1020720721,"30104":0.1030630631,"30105":0.1040540541,"30106":0.105045045,"30107":0.106036036,"30108":0.107027027,"30109":0.108018018,"30110":0.109009009,"30111":0.11,"30112":0.110990991,"30113":0.111981982,"30114":0.112972973,"30115":0.113963964,"30116":0.114954955,"30117":0.1159459459,"30118":0.1169369369,"30119":0.1179279279,"30120":0.1189189189,"30121":0.1199099099,"30122":0.1209009009,"30123":0.1218918919,"30124":0.1228828829,"30125":0.1238738739,"30126":0.1248648649,"30127":0.1258558559,"30128":0.1268468468,"30129":0.1278378378,"30130":0.1288288288,"30131":0.1298198198,"30132":0.1308108108,"30133":0.1318018018,"30134":0.1327927928,"30135":0.1337837838,"30136":0.1347747748,"30137":0.1357657658,"30138":0.1367567568,"30139":0.1377477477,"30140":0.1387387387,"30141":0.1397297297,"30142":0.1407207207,"30143":0.1417117117,"30144":0.1427027027,"30145":0.1436936937,"30146":0.1446846847,"30147":0.1456756757,"30148":0.1466666667,"30149":0.1476576577,"30150":0.1486486486,"30151":0.1496396396,"30152":0.1506306306,"30153":0.1516216216,"30154":0.1526126126,"30155":0.1536036036,"30156":0.1545945946,"30157":0.1555855856,"30158":0.1565765766,"30159":0.1575675676,"30160":0.1585585586,"30161":0.1595495495,"30162":0.1605405405,"30163":0.1615315315,"30164":0.1625225225,"30165":0.1635135135,"30166":0.1645045045,"30167":0.1654954955,"30168":0.1664864865,"30169":0.1674774775,"30170":0.1684684685,"30171":0.1694594595,"30172":0.1704504505,"30173":0.1714414414,"30174":0.1724324324,"30175":0.1734234234,"30176":0.1744144144,"30177":0.1754054054,"30178":0.1763963964,"30179":0.1773873874,"30180":0.1783783784,"30181":0.1793693694,"30182":0.1803603604,"30183":0.1813513514,"30184":0.1823423423,"30185":0.1833333333,"30186":0.1843243243,"30187":0.1853153153,"30188":0.1863063063,"30189":0.1872972973,"30190":0.1882882883,"30191":0.1892792793,"30192":0.1902702703,"30193":0.1912612613,"30194":0.1922522523,"30195":0.1932432432,"30196":0.1942342342,"30197":0.1952252252,"30198":0.1962162162,"30199":0.1972072072,"30200":0.1981981982,"30201":0.1991891892,"30202":0.2001801802,"30203":0.2011711712,"30204":0.2021621622,"30205":0.2031531532,"30206":0.2041441441,"30207":0.2051351351,"30208":0.2061261261,"30209":0.2071171171,"30210":0.2081081081,"30211":0.2090990991,"30212":0.2100900901,"30213":0.2110810811,"30214":0.2120720721,"30215":0.2130630631,"30216":0.2140540541,"30217":0.215045045,"30218":0.216036036,"30219":0.217027027,"30220":0.218018018,"30221":0.219009009,"30222":0.22,"30223":0.220990991,"30224":0.221981982,"30225":0.222972973,"30226":0.223963964,"30227":0.224954955,"30228":0.2259459459,"30229":0.2269369369,"30230":0.2279279279,"30231":0.2289189189,"30232":0.2299099099,"30233":0.2309009009,"30234":0.2318918919,"30235":0.2328828829,"30236":0.2338738739,"30237":0.2348648649,"30238":0.2358558559,"30239":0.2368468468,"30240":0.2378378378,"30241":0.2388288288,"30242":0.2398198198,"30243":0.2408108108,"30244":0.2418018018,"30245":0.2427927928,"30246":0.2437837838,"30247":0.2447747748,"30248":0.2457657658,"30249":0.2467567568,"30250":0.2477477477,"30251":0.2487387387,"30252":0.2497297297,"30253":0.2507207207,"30254":0.2517117117,"30255":0.2527027027,"30256":0.2536936937,"30257":0.2546846847,"30258":0.2556756757,"30259":0.2566666667,"30260":0.2576576577,"30261":0.2586486486,"30262":0.2596396396,"30263":0.2606306306,"30264":0.2616216216,"30265":0.2626126126,"30266":0.2636036036,"30267":0.2645945946,"30268":0.2655855856,"30269":0.2665765766,"30270":0.2675675676,"30271":0.2685585586,"30272":0.2695495495,"30273":0.2705405405,"30274":0.2715315315,"30275":0.2725225225,"30276":0.2735135135,"30277":0.2745045045,"30278":0.2754954955,"30279":0.2764864865,"30280":0.2774774775,"30281":0.2784684685,"30282":0.2794594595,"30283":0.2804504505,"30284":0.2814414414,"30285":0.2824324324,"30286":0.2834234234,"30287":0.2844144144,"30288":0.2854054054,"30289":0.2863963964,"30290":0.2873873874,"30291":0.2883783784,"30292":0.2893693694,"30293":0.2903603604,"30294":0.2913513514,"30295":0.2923423423,"30296":0.2933333333,"30297":0.2943243243,"30298":0.2953153153,"30299":0.2963063063,"30300":0.2972972973,"30301":0.2982882883,"30302":0.2992792793,"30303":0.3002702703,"30304":0.3012612613,"30305":0.3022522523,"30306":0.3032432432,"30307":0.3042342342,"30308":0.3052252252,"30309":0.3062162162,"30310":0.3072072072,"30311":0.3081981982,"30312":0.3091891892,"30313":0.3101801802,"30314":0.3111711712,"30315":0.3121621622,"30316":0.3131531532,"30317":0.3141441441,"30318":0.3151351351,"30319":0.3161261261,"30320":0.3171171171,"30321":0.3181081081,"30322":0.3190990991,"30323":0.3200900901,"30324":0.3210810811,"30325":0.3220720721,"30326":0.3230630631,"30327":0.3240540541,"30328":0.325045045,"30329":0.326036036,"30330":0.327027027,"30331":0.328018018,"30332":0.329009009,"30333":0.33,"30334":0.330990991,"30335":0.331981982,"30336":0.332972973,"30337":0.333963964,"30338":0.334954955,"30339":0.3359459459,"30340":0.3369369369,"30341":0.3379279279,"30342":0.3389189189,"30343":0.3399099099,"30344":0.3409009009,"30345":0.3418918919,"30346":0.3428828829,"30347":0.3438738739,"30348":0.3448648649,"30349":0.3458558559,"30350":0.3468468468,"30351":0.3478378378,"30352":0.3488288288,"30353":0.3498198198,"30354":0.3508108108,"30355":0.3518018018,"30356":0.3527927928,"30357":0.3537837838,"30358":0.3547747748,"30359":0.3557657658,"30360":0.3567567568,"30361":0.3577477477,"30362":0.3587387387,"30363":0.3597297297,"30364":0.3607207207,"30365":0.3617117117,"30366":0.3627027027,"30367":0.3636936937,"30368":0.3646846847,"30369":0.3656756757,"30370":0.3666666667,"30371":0.3676576577,"30372":0.3686486486,"30373":0.3696396396,"30374":0.3706306306,"30375":0.3716216216,"30376":0.3726126126,"30377":0.3736036036,"30378":0.3745945946,"30379":0.3755855856,"30380":0.3765765766,"30381":0.3775675676,"30382":0.3785585586,"30383":0.3795495495,"30384":0.3805405405,"30385":0.3815315315,"30386":0.3825225225,"30387":0.3835135135,"30388":0.3845045045,"30389":0.3854954955,"30390":0.3864864865,"30391":0.3874774775,"30392":0.3884684685,"30393":0.3894594595,"30394":0.3904504505,"30395":0.3914414414,"30396":0.3924324324,"30397":0.3934234234,"30398":0.3944144144,"30399":0.3954054054,"30400":0.3963963964,"30401":0.3973873874,"30402":0.3983783784,"30403":0.3993693694,"30404":0.4003603604,"30405":0.4013513514,"30406":0.4023423423,"30407":0.4033333333,"30408":0.4043243243,"30409":0.4053153153,"30410":0.4063063063,"30411":0.4072972973,"30412":0.4082882883,"30413":0.4092792793,"30414":0.4102702703,"30415":0.4112612613,"30416":0.4122522523,"30417":0.4132432432,"30418":0.4142342342,"30419":0.4152252252,"30420":0.4162162162,"30421":0.4172072072,"30422":0.4181981982,"30423":0.4191891892,"30424":0.4201801802,"30425":0.4211711712,"30426":0.4221621622,"30427":0.4231531532,"30428":0.4241441441,"30429":0.4251351351,"30430":0.4261261261,"30431":0.4271171171,"30432":0.4281081081,"30433":0.4290990991,"30434":0.4300900901,"30435":0.4310810811,"30436":0.4320720721,"30437":0.4330630631,"30438":0.4340540541,"30439":0.435045045,"30440":0.436036036,"30441":0.437027027,"30442":0.438018018,"30443":0.439009009,"30444":0.44,"30445":0.440990991,"30446":0.441981982,"30447":0.442972973,"30448":0.443963964,"30449":0.444954955,"30450":0.4459459459,"30451":0.4469369369,"30452":0.4479279279,"30453":0.4489189189,"30454":0.4499099099,"30455":0.4509009009,"30456":0.4518918919,"30457":0.4528828829,"30458":0.4538738739,"30459":0.4548648649,"30460":0.4558558559,"30461":0.4568468468,"30462":0.4578378378,"30463":0.4588288288,"30464":0.4598198198,"30465":0.4608108108,"30466":0.4618018018,"30467":0.4627927928,"30468":0.4637837838,"30469":0.4647747748,"30470":0.4657657658,"30471":0.4667567568,"30472":0.4677477477,"30473":0.4687387387,"30474":0.4697297297,"30475":0.4707207207,"30476":0.4717117117,"30477":0.4727027027,"30478":0.4736936937,"30479":0.4746846847,"30480":0.4756756757,"30481":0.4766666667,"30482":0.4776576577,"30483":0.4786486486,"30484":0.4796396396,"30485":0.4806306306,"30486":0.4816216216,"30487":0.4826126126,"30488":0.4836036036,"30489":0.4845945946,"30490":0.4855855856,"30491":0.4865765766,"30492":0.4875675676,"30493":0.4885585586,"30494":0.4895495495,"30495":0.4905405405,"30496":0.4915315315,"30497":0.4925225225,"30498":0.4935135135,"30499":0.4945045045,"30500":0.4954954955,"30501":0.4964864865,"30502":0.4974774775,"30503":0.4984684685,"30504":0.4994594595,"30505":0.5004504505,"30506":0.5014414414,"30507":0.5024324324,"30508":0.5034234234,"30509":0.5044144144,"30510":0.5054054054,"30511":0.5063963964,"30512":0.5073873874,"30513":0.5083783784,"30514":0.5093693694,"30515":0.5103603604,"30516":0.5113513514,"30517":0.5123423423,"30518":0.5133333333,"30519":0.5143243243,"30520":0.5153153153,"30521":0.5163063063,"30522":0.5172972973,"30523":0.5182882883,"30524":0.5192792793,"30525":0.5202702703,"30526":0.5212612613,"30527":0.5222522523,"30528":0.5232432432,"30529":0.5242342342,"30530":0.5252252252,"30531":0.5262162162,"30532":0.5272072072,"30533":0.5281981982,"30534":0.5291891892,"30535":0.5301801802,"30536":0.5311711712,"30537":0.5321621622,"30538":0.5331531532,"30539":0.5341441441,"30540":0.5351351351,"30541":0.5361261261,"30542":0.5371171171,"30543":0.5381081081,"30544":0.5390990991,"30545":0.5400900901,"30546":0.5410810811,"30547":0.5420720721,"30548":0.5430630631,"30549":0.5440540541,"30550":0.545045045,"30551":0.546036036,"30552":0.547027027,"30553":0.548018018,"30554":0.549009009,"30555":0.55,"30556":0.550990991,"30557":0.551981982,"30558":0.552972973,"30559":0.553963964,"30560":0.554954955,"30561":0.5559459459,"30562":0.5569369369,"30563":0.5579279279,"30564":0.5589189189,"30565":0.5599099099,"30566":0.5609009009,"30567":0.5618918919,"30568":0.5628828829,"30569":0.5638738739,"30570":0.5648648649,"30571":0.5658558559,"30572":0.5668468468,"30573":0.5678378378,"30574":0.5688288288,"30575":0.5698198198,"30576":0.5708108108,"30577":0.5718018018,"30578":0.5727927928,"30579":0.5737837838,"30580":0.5747747748,"30581":0.5757657658,"30582":0.5767567568,"30583":0.5777477477,"30584":0.5787387387,"30585":0.5797297297,"30586":0.5807207207,"30587":0.5817117117,"30588":0.5827027027,"30589":0.5836936937,"30590":0.5846846847,"30591":0.5856756757,"30592":0.5866666667,"30593":0.5876576577,"30594":0.5886486486,"30595":0.5896396396,"30596":0.5906306306,"30597":0.5916216216,"30598":0.5926126126,"30599":0.5936036036,"30600":0.5945945946,"30601":0.5955855856,"30602":0.5965765766,"30603":0.5975675676,"30604":0.5985585586,"30605":0.5995495495,"30606":0.6005405405,"30607":0.6015315315,"30608":0.6025225225,"30609":0.6035135135,"30610":0.6045045045,"30611":0.6054954955,"30612":0.6064864865,"30613":0.6074774775,"30614":0.6084684685,"30615":0.6094594595,"30616":0.6104504505,"30617":0.6114414414,"30618":0.6124324324,"30619":0.6134234234,"30620":0.6144144144,"30621":0.6154054054,"30622":0.6163963964,"30623":0.6173873874,"30624":0.6183783784,"30625":0.6193693694,"30626":0.6203603604,"30627":0.6213513514,"30628":0.6223423423,"30629":0.6233333333,"30630":0.6243243243,"30631":0.6253153153,"30632":0.6263063063,"30633":0.6272972973,"30634":0.6282882883,"30635":0.6292792793,"30636":0.6302702703,"30637":0.6312612613,"30638":0.6322522523,"30639":0.6332432432,"30640":0.6342342342,"30641":0.6352252252,"30642":0.6362162162,"30643":0.6372072072,"30644":0.6381981982,"30645":0.6391891892,"30646":0.6401801802,"30647":0.6411711712,"30648":0.6421621622,"30649":0.6431531532,"30650":0.6441441441,"30651":0.6451351351,"30652":0.6461261261,"30653":0.6471171171,"30654":0.6481081081,"30655":0.6490990991,"30656":0.6500900901,"30657":0.6510810811,"30658":0.6520720721,"30659":0.6530630631,"30660":0.6540540541,"30661":0.655045045,"30662":0.656036036,"30663":0.657027027,"30664":0.658018018,"30665":0.659009009,"30666":0.66,"30667":0.660990991,"30668":0.661981982,"30669":0.662972973,"30670":0.663963964,"30671":0.664954955,"30672":0.6659459459,"30673":0.6669369369,"30674":0.6679279279,"30675":0.6689189189,"30676":0.6699099099,"30677":0.6709009009,"30678":0.6718918919,"30679":0.6728828829,"30680":0.6738738739,"30681":0.6748648649,"30682":0.6758558559,"30683":0.6768468468,"30684":0.6778378378,"30685":0.6788288288,"30686":0.6798198198,"30687":0.6808108108,"30688":0.6818018018,"30689":0.6827927928,"30690":0.6837837838,"30691":0.6847747748,"30692":0.6857657658,"30693":0.6867567568,"30694":0.6877477477,"30695":0.6887387387,"30696":0.6897297297,"30697":0.6907207207,"30698":0.6917117117,"30699":0.6927027027,"30700":0.6936936937,"30701":0.6946846847,"30702":0.6956756757,"30703":0.6966666667,"30704":0.6976576577,"30705":0.6986486486,"30706":0.6996396396,"30707":0.7006306306,"30708":0.7016216216,"30709":0.7026126126,"30710":0.7036036036,"30711":0.7045945946,"30712":0.7055855856,"30713":0.7065765766,"30714":0.7075675676,"30715":0.7085585586,"30716":0.7095495495,"30717":0.7105405405,"30718":0.7115315315,"30719":0.7125225225,"30720":0.7135135135,"30721":0.7145045045,"30722":0.7154954955,"30723":0.7164864865,"30724":0.7174774775,"30725":0.7184684685,"30726":0.7194594595,"30727":0.7204504505,"30728":0.7214414414,"30729":0.7224324324,"30730":0.7234234234,"30731":0.7244144144,"30732":0.7254054054,"30733":0.7263963964,"30734":0.7273873874,"30735":0.7283783784,"30736":0.7293693694,"30737":0.7303603604,"30738":0.7313513514,"30739":0.7323423423,"30740":0.7333333333,"30741":0.7343243243,"30742":0.7353153153,"30743":0.7363063063,"30744":0.7372972973,"30745":0.7382882883,"30746":0.7392792793,"30747":0.7402702703,"30748":0.7412612613,"30749":0.7422522523,"30750":0.7432432432,"30751":0.7442342342,"30752":0.7452252252,"30753":0.7462162162,"30754":0.7472072072,"30755":0.7481981982,"30756":0.7491891892,"30757":0.7501801802,"30758":0.7511711712,"30759":0.7521621622,"30760":0.7531531532,"30761":0.7541441441,"30762":0.7551351351,"30763":0.7561261261,"30764":0.7571171171,"30765":0.7581081081,"30766":0.7590990991,"30767":0.7600900901,"30768":0.7610810811,"30769":0.7620720721,"30770":0.7630630631,"30771":0.7640540541,"30772":0.765045045,"30773":0.766036036,"30774":0.767027027,"30775":0.768018018,"30776":0.769009009,"30777":0.77,"30778":0.770990991,"30779":0.771981982,"30780":0.772972973,"30781":0.773963964,"30782":0.774954955,"30783":0.7759459459,"30784":0.7769369369,"30785":0.7779279279,"30786":0.7789189189,"30787":0.7799099099,"30788":0.7809009009,"30789":0.7818918919,"30790":0.7828828829,"30791":0.7838738739,"30792":0.7848648649,"30793":0.7858558559,"30794":0.7868468468,"30795":0.7878378378,"30796":0.7888288288,"30797":0.7898198198,"30798":0.7908108108,"30799":0.7918018018,"30800":0.7927927928,"30801":0.7937837838,"30802":0.7947747748,"30803":0.7957657658,"30804":0.7967567568,"30805":0.7977477477,"30806":0.7987387387,"30807":0.7997297297,"30808":0.8007207207,"30809":0.8017117117,"30810":0.8027027027,"30811":0.8036936937,"30812":0.8046846847,"30813":0.8056756757,"30814":0.8066666667,"30815":0.8076576577,"30816":0.8086486486,"30817":0.8096396396,"30818":0.8106306306,"30819":0.8116216216,"30820":0.8126126126,"30821":0.8136036036,"30822":0.8145945946,"30823":0.8155855856,"30824":0.8165765766,"30825":0.8175675676,"30826":0.8185585586,"30827":0.8195495495,"30828":0.8205405405,"30829":0.8215315315,"30830":0.8225225225,"30831":0.8235135135,"30832":0.8245045045,"30833":0.8254954955,"30834":0.8264864865,"30835":0.8274774775,"30836":0.8284684685,"30837":0.8294594595,"30838":0.8304504505,"30839":0.8314414414,"30840":0.8324324324,"30841":0.8334234234,"30842":0.8344144144,"30843":0.8354054054,"30844":0.8363963964,"30845":0.8373873874,"30846":0.8383783784,"30847":0.8393693694,"30848":0.8403603604,"30849":0.8413513514,"30850":0.8423423423,"30851":0.8433333333,"30852":0.8443243243,"30853":0.8453153153,"30854":0.8463063063,"30855":0.8472972973,"30856":0.8482882883,"30857":0.8492792793,"30858":0.8502702703,"30859":0.8512612613,"30860":0.8522522523,"30861":0.8532432432,"30862":0.8542342342,"30863":0.8552252252,"30864":0.8562162162,"30865":0.8572072072,"30866":0.8581981982,"30867":0.8591891892,"30868":0.8601801802,"30869":0.8611711712,"30870":0.8621621622,"30871":0.8631531532,"30872":0.8641441441,"30873":0.8651351351,"30874":0.8661261261,"30875":0.8671171171,"30876":0.8681081081,"30877":0.8690990991,"30878":0.8700900901,"30879":0.8710810811,"30880":0.8720720721,"30881":0.8730630631,"30882":0.8740540541,"30883":0.875045045,"30884":0.876036036,"30885":0.877027027,"30886":0.878018018,"30887":0.879009009,"30888":0.88,"30889":0.880990991,"30890":0.881981982,"30891":0.882972973,"30892":0.883963964,"30893":0.884954955,"30894":0.8859459459,"30895":0.8869369369,"30896":0.8879279279,"30897":0.8889189189,"30898":0.8899099099,"30899":0.8909009009,"30900":0.8918918919,"30901":0.8928828829,"30902":0.8938738739,"30903":0.8948648649,"30904":0.8958558559,"30905":0.8968468468,"30906":0.8978378378,"30907":0.8988288288,"30908":0.8998198198,"30909":0.9008108108,"30910":0.9018018018,"30911":0.9027927928,"30912":0.9037837838,"30913":0.9047747748,"30914":0.9057657658,"30915":0.9067567568,"30916":0.9077477477,"30917":0.9087387387,"30918":0.9097297297,"30919":0.9107207207,"30920":0.9117117117,"30921":0.9127027027,"30922":0.9136936937,"30923":0.9146846847,"30924":0.9156756757,"30925":0.9166666667,"30926":0.9176576577,"30927":0.9186486486,"30928":0.9196396396,"30929":0.9206306306,"30930":0.9216216216,"30931":0.9226126126,"30932":0.9236036036,"30933":0.9245945946,"30934":0.9255855856,"30935":0.9265765766,"30936":0.9275675676,"30937":0.9285585586,"30938":0.9295495495,"30939":0.9305405405,"30940":0.9315315315,"30941":0.9325225225,"30942":0.9335135135,"30943":0.9345045045,"30944":0.9354954955,"30945":0.9364864865,"30946":0.9374774775,"30947":0.9384684685,"30948":0.9394594595,"30949":0.9404504505,"30950":0.9414414414,"30951":0.9424324324,"30952":0.9434234234,"30953":0.9444144144,"30954":0.9454054054,"30955":0.9463963964,"30956":0.9473873874,"30957":0.9483783784,"30958":0.9493693694,"30959":0.9503603604,"30960":0.9513513514,"30961":0.9523423423,"30962":0.9533333333,"30963":0.9543243243,"30964":0.9553153153,"30965":0.9563063063,"30966":0.9572972973,"30967":0.9582882883,"30968":0.9592792793,"30969":0.9602702703,"30970":0.9612612613,"30971":0.9622522523,"30972":0.9632432432,"30973":0.9642342342,"30974":0.9652252252,"30975":0.9662162162,"30976":0.9672072072,"30977":0.9681981982,"30978":0.9691891892,"30979":0.9701801802,"30980":0.9711711712,"30981":0.9721621622,"30982":0.9731531532,"30983":0.9741441441,"30984":0.9751351351,"30985":0.9761261261,"30986":0.9771171171,"30987":0.9781081081,"30988":0.9790990991,"30989":0.9800900901,"30990":0.9810810811,"30991":0.9820720721,"30992":0.9830630631,"30993":0.9840540541,"30994":0.985045045,"30995":0.986036036,"30996":0.987027027,"30997":0.988018018,"30998":0.989009009,"30999":0.99,"31000":0.0,"31001":0.000990991,"31002":0.001981982,"31003":0.002972973,"31004":0.003963964,"31005":0.004954955,"31006":0.0059459459,"31007":0.0069369369,"31008":0.0079279279,"31009":0.0089189189,"31010":0.0099099099,"31011":0.0109009009,"31012":0.0118918919,"31013":0.0128828829,"31014":0.0138738739,"31015":0.0148648649,"31016":0.0158558559,"31017":0.0168468468,"31018":0.0178378378,"31019":0.0188288288,"31020":0.0198198198,"31021":0.0208108108,"31022":0.0218018018,"31023":0.0227927928,"31024":0.0237837838,"31025":0.0247747748,"31026":0.0257657658,"31027":0.0267567568,"31028":0.0277477477,"31029":0.0287387387,"31030":0.0297297297,"31031":0.0307207207,"31032":0.0317117117,"31033":0.0327027027,"31034":0.0336936937,"31035":0.0346846847,"31036":0.0356756757,"31037":0.0366666667,"31038":0.0376576577,"31039":0.0386486486,"31040":0.0396396396,"31041":0.0406306306,"31042":0.0416216216,"31043":0.0426126126,"31044":0.0436036036,"31045":0.0445945946,"31046":0.0455855856,"31047":0.0465765766,"31048":0.0475675676,"31049":0.0485585586,"31050":0.0495495495,"31051":0.0505405405,"31052":0.0515315315,"31053":0.0525225225,"31054":0.0535135135,"31055":0.0545045045,"31056":0.0554954955,"31057":0.0564864865,"31058":0.0574774775,"31059":0.0584684685,"31060":0.0594594595,"31061":0.0604504505,"31062":0.0614414414,"31063":0.0624324324,"31064":0.0634234234,"31065":0.0644144144,"31066":0.0654054054,"31067":0.0663963964,"31068":0.0673873874,"31069":0.0683783784,"31070":0.0693693694,"31071":0.0703603604,"31072":0.0713513514,"31073":0.0723423423,"31074":0.0733333333,"31075":0.0743243243,"31076":0.0753153153,"31077":0.0763063063,"31078":0.0772972973,"31079":0.0782882883,"31080":0.0792792793,"31081":0.0802702703,"31082":0.0812612613,"31083":0.0822522523,"31084":0.0832432432,"31085":0.0842342342,"31086":0.0852252252,"31087":0.0862162162,"31088":0.0872072072,"31089":0.0881981982,"31090":0.0891891892,"31091":0.0901801802,"31092":0.0911711712,"31093":0.0921621622,"31094":0.0931531532,"31095":0.0941441441,"31096":0.0951351351,"31097":0.0961261261,"31098":0.0971171171,"31099":0.0981081081,"31100":0.0990990991,"31101":0.1000900901,"31102":0.1010810811,"31103":0.1020720721,"31104":0.1030630631,"31105":0.1040540541,"31106":0.105045045,"31107":0.106036036,"31108":0.107027027,"31109":0.108018018,"31110":0.109009009,"31111":0.11,"31112":0.110990991,"31113":0.111981982,"31114":0.112972973,"31115":0.113963964,"31116":0.114954955,"31117":0.1159459459,"31118":0.1169369369,"31119":0.1179279279,"31120":0.1189189189,"31121":0.1199099099,"31122":0.1209009009,"31123":0.1218918919,"31124":0.1228828829,"31125":0.1238738739,"31126":0.1248648649,"31127":0.1258558559,"31128":0.1268468468,"31129":0.1278378378,"31130":0.1288288288,"31131":0.1298198198,"31132":0.1308108108,"31133":0.1318018018,"31134":0.1327927928,"31135":0.1337837838,"31136":0.1347747748,"31137":0.1357657658,"31138":0.1367567568,"31139":0.1377477477,"31140":0.1387387387,"31141":0.1397297297,"31142":0.1407207207,"31143":0.1417117117,"31144":0.1427027027,"31145":0.1436936937,"31146":0.1446846847,"31147":0.1456756757,"31148":0.1466666667,"31149":0.1476576577,"31150":0.1486486486,"31151":0.1496396396,"31152":0.1506306306,"31153":0.1516216216,"31154":0.1526126126,"31155":0.1536036036,"31156":0.1545945946,"31157":0.1555855856,"31158":0.1565765766,"31159":0.1575675676,"31160":0.1585585586,"31161":0.1595495495,"31162":0.1605405405,"31163":0.1615315315,"31164":0.1625225225,"31165":0.1635135135,"31166":0.1645045045,"31167":0.1654954955,"31168":0.1664864865,"31169":0.1674774775,"31170":0.1684684685,"31171":0.1694594595,"31172":0.1704504505,"31173":0.1714414414,"31174":0.1724324324,"31175":0.1734234234,"31176":0.1744144144,"31177":0.1754054054,"31178":0.1763963964,"31179":0.1773873874,"31180":0.1783783784,"31181":0.1793693694,"31182":0.1803603604,"31183":0.1813513514,"31184":0.1823423423,"31185":0.1833333333,"31186":0.1843243243,"31187":0.1853153153,"31188":0.1863063063,"31189":0.1872972973,"31190":0.1882882883,"31191":0.1892792793,"31192":0.1902702703,"31193":0.1912612613,"31194":0.1922522523,"31195":0.1932432432,"31196":0.1942342342,"31197":0.1952252252,"31198":0.1962162162,"31199":0.1972072072,"31200":0.1981981982,"31201":0.1991891892,"31202":0.2001801802,"31203":0.2011711712,"31204":0.2021621622,"31205":0.2031531532,"31206":0.2041441441,"31207":0.2051351351,"31208":0.2061261261,"31209":0.2071171171,"31210":0.2081081081,"31211":0.2090990991,"31212":0.2100900901,"31213":0.2110810811,"31214":0.2120720721,"31215":0.2130630631,"31216":0.2140540541,"31217":0.215045045,"31218":0.216036036,"31219":0.217027027,"31220":0.218018018,"31221":0.219009009,"31222":0.22,"31223":0.220990991,"31224":0.221981982,"31225":0.222972973,"31226":0.223963964,"31227":0.224954955,"31228":0.2259459459,"31229":0.2269369369,"31230":0.2279279279,"31231":0.2289189189,"31232":0.2299099099,"31233":0.2309009009,"31234":0.2318918919,"31235":0.2328828829,"31236":0.2338738739,"31237":0.2348648649,"31238":0.2358558559,"31239":0.2368468468,"31240":0.2378378378,"31241":0.2388288288,"31242":0.2398198198,"31243":0.2408108108,"31244":0.2418018018,"31245":0.2427927928,"31246":0.2437837838,"31247":0.2447747748,"31248":0.2457657658,"31249":0.2467567568,"31250":0.2477477477,"31251":0.2487387387,"31252":0.2497297297,"31253":0.2507207207,"31254":0.2517117117,"31255":0.2527027027,"31256":0.2536936937,"31257":0.2546846847,"31258":0.2556756757,"31259":0.2566666667,"31260":0.2576576577,"31261":0.2586486486,"31262":0.2596396396,"31263":0.2606306306,"31264":0.2616216216,"31265":0.2626126126,"31266":0.2636036036,"31267":0.2645945946,"31268":0.2655855856,"31269":0.2665765766,"31270":0.2675675676,"31271":0.2685585586,"31272":0.2695495495,"31273":0.2705405405,"31274":0.2715315315,"31275":0.2725225225,"31276":0.2735135135,"31277":0.2745045045,"31278":0.2754954955,"31279":0.2764864865,"31280":0.2774774775,"31281":0.2784684685,"31282":0.2794594595,"31283":0.2804504505,"31284":0.2814414414,"31285":0.2824324324,"31286":0.2834234234,"31287":0.2844144144,"31288":0.2854054054,"31289":0.2863963964,"31290":0.2873873874,"31291":0.2883783784,"31292":0.2893693694,"31293":0.2903603604,"31294":0.2913513514,"31295":0.2923423423,"31296":0.2933333333,"31297":0.2943243243,"31298":0.2953153153,"31299":0.2963063063,"31300":0.2972972973,"31301":0.2982882883,"31302":0.2992792793,"31303":0.3002702703,"31304":0.3012612613,"31305":0.3022522523,"31306":0.3032432432,"31307":0.3042342342,"31308":0.3052252252,"31309":0.3062162162,"31310":0.3072072072,"31311":0.3081981982,"31312":0.3091891892,"31313":0.3101801802,"31314":0.3111711712,"31315":0.3121621622,"31316":0.3131531532,"31317":0.3141441441,"31318":0.3151351351,"31319":0.3161261261,"31320":0.3171171171,"31321":0.3181081081,"31322":0.3190990991,"31323":0.3200900901,"31324":0.3210810811,"31325":0.3220720721,"31326":0.3230630631,"31327":0.3240540541,"31328":0.325045045,"31329":0.326036036,"31330":0.327027027,"31331":0.328018018,"31332":0.329009009,"31333":0.33,"31334":0.330990991,"31335":0.331981982,"31336":0.332972973,"31337":0.333963964,"31338":0.334954955,"31339":0.3359459459,"31340":0.3369369369,"31341":0.3379279279,"31342":0.3389189189,"31343":0.3399099099,"31344":0.3409009009,"31345":0.3418918919,"31346":0.3428828829,"31347":0.3438738739,"31348":0.3448648649,"31349":0.3458558559,"31350":0.3468468468,"31351":0.3478378378,"31352":0.3488288288,"31353":0.3498198198,"31354":0.3508108108,"31355":0.3518018018,"31356":0.3527927928,"31357":0.3537837838,"31358":0.3547747748,"31359":0.3557657658,"31360":0.3567567568,"31361":0.3577477477,"31362":0.3587387387,"31363":0.3597297297,"31364":0.3607207207,"31365":0.3617117117,"31366":0.3627027027,"31367":0.3636936937,"31368":0.3646846847,"31369":0.3656756757,"31370":0.3666666667,"31371":0.3676576577,"31372":0.3686486486,"31373":0.3696396396,"31374":0.3706306306,"31375":0.3716216216,"31376":0.3726126126,"31377":0.3736036036,"31378":0.3745945946,"31379":0.3755855856,"31380":0.3765765766,"31381":0.3775675676,"31382":0.3785585586,"31383":0.3795495495,"31384":0.3805405405,"31385":0.3815315315,"31386":0.3825225225,"31387":0.3835135135,"31388":0.3845045045,"31389":0.3854954955,"31390":0.3864864865,"31391":0.3874774775,"31392":0.3884684685,"31393":0.3894594595,"31394":0.3904504505,"31395":0.3914414414,"31396":0.3924324324,"31397":0.3934234234,"31398":0.3944144144,"31399":0.3954054054,"31400":0.3963963964,"31401":0.3973873874,"31402":0.3983783784,"31403":0.3993693694,"31404":0.4003603604,"31405":0.4013513514,"31406":0.4023423423,"31407":0.4033333333,"31408":0.4043243243,"31409":0.4053153153,"31410":0.4063063063,"31411":0.4072972973,"31412":0.4082882883,"31413":0.4092792793,"31414":0.4102702703,"31415":0.4112612613,"31416":0.4122522523,"31417":0.4132432432,"31418":0.4142342342,"31419":0.4152252252,"31420":0.4162162162,"31421":0.4172072072,"31422":0.4181981982,"31423":0.4191891892,"31424":0.4201801802,"31425":0.4211711712,"31426":0.4221621622,"31427":0.4231531532,"31428":0.4241441441,"31429":0.4251351351,"31430":0.4261261261,"31431":0.4271171171,"31432":0.4281081081,"31433":0.4290990991,"31434":0.4300900901,"31435":0.4310810811,"31436":0.4320720721,"31437":0.4330630631,"31438":0.4340540541,"31439":0.435045045,"31440":0.436036036,"31441":0.437027027,"31442":0.438018018,"31443":0.439009009,"31444":0.44,"31445":0.440990991,"31446":0.441981982,"31447":0.442972973,"31448":0.443963964,"31449":0.444954955,"31450":0.4459459459,"31451":0.4469369369,"31452":0.4479279279,"31453":0.4489189189,"31454":0.4499099099,"31455":0.4509009009,"31456":0.4518918919,"31457":0.4528828829,"31458":0.4538738739,"31459":0.4548648649,"31460":0.4558558559,"31461":0.4568468468,"31462":0.4578378378,"31463":0.4588288288,"31464":0.4598198198,"31465":0.4608108108,"31466":0.4618018018,"31467":0.4627927928,"31468":0.4637837838,"31469":0.4647747748,"31470":0.4657657658,"31471":0.4667567568,"31472":0.4677477477,"31473":0.4687387387,"31474":0.4697297297,"31475":0.4707207207,"31476":0.4717117117,"31477":0.4727027027,"31478":0.4736936937,"31479":0.4746846847,"31480":0.4756756757,"31481":0.4766666667,"31482":0.4776576577,"31483":0.4786486486,"31484":0.4796396396,"31485":0.4806306306,"31486":0.4816216216,"31487":0.4826126126,"31488":0.4836036036,"31489":0.4845945946,"31490":0.4855855856,"31491":0.4865765766,"31492":0.4875675676,"31493":0.4885585586,"31494":0.4895495495,"31495":0.4905405405,"31496":0.4915315315,"31497":0.4925225225,"31498":0.4935135135,"31499":0.4945045045,"31500":0.4954954955,"31501":0.4964864865,"31502":0.4974774775,"31503":0.4984684685,"31504":0.4994594595,"31505":0.5004504505,"31506":0.5014414414,"31507":0.5024324324,"31508":0.5034234234,"31509":0.5044144144,"31510":0.5054054054,"31511":0.5063963964,"31512":0.5073873874,"31513":0.5083783784,"31514":0.5093693694,"31515":0.5103603604,"31516":0.5113513514,"31517":0.5123423423,"31518":0.5133333333,"31519":0.5143243243,"31520":0.5153153153,"31521":0.5163063063,"31522":0.5172972973,"31523":0.5182882883,"31524":0.5192792793,"31525":0.5202702703,"31526":0.5212612613,"31527":0.5222522523,"31528":0.5232432432,"31529":0.5242342342,"31530":0.5252252252,"31531":0.5262162162,"31532":0.5272072072,"31533":0.5281981982,"31534":0.5291891892,"31535":0.5301801802,"31536":0.5311711712,"31537":0.5321621622,"31538":0.5331531532,"31539":0.5341441441,"31540":0.5351351351,"31541":0.5361261261,"31542":0.5371171171,"31543":0.5381081081,"31544":0.5390990991,"31545":0.5400900901,"31546":0.5410810811,"31547":0.5420720721,"31548":0.5430630631,"31549":0.5440540541,"31550":0.545045045,"31551":0.546036036,"31552":0.547027027,"31553":0.548018018,"31554":0.549009009,"31555":0.55,"31556":0.550990991,"31557":0.551981982,"31558":0.552972973,"31559":0.553963964,"31560":0.554954955,"31561":0.5559459459,"31562":0.5569369369,"31563":0.5579279279,"31564":0.5589189189,"31565":0.5599099099,"31566":0.5609009009,"31567":0.5618918919,"31568":0.5628828829,"31569":0.5638738739,"31570":0.5648648649,"31571":0.5658558559,"31572":0.5668468468,"31573":0.5678378378,"31574":0.5688288288,"31575":0.5698198198,"31576":0.5708108108,"31577":0.5718018018,"31578":0.5727927928,"31579":0.5737837838,"31580":0.5747747748,"31581":0.5757657658,"31582":0.5767567568,"31583":0.5777477477,"31584":0.5787387387,"31585":0.5797297297,"31586":0.5807207207,"31587":0.5817117117,"31588":0.5827027027,"31589":0.5836936937,"31590":0.5846846847,"31591":0.5856756757,"31592":0.5866666667,"31593":0.5876576577,"31594":0.5886486486,"31595":0.5896396396,"31596":0.5906306306,"31597":0.5916216216,"31598":0.5926126126,"31599":0.5936036036,"31600":0.5945945946,"31601":0.5955855856,"31602":0.5965765766,"31603":0.5975675676,"31604":0.5985585586,"31605":0.5995495495,"31606":0.6005405405,"31607":0.6015315315,"31608":0.6025225225,"31609":0.6035135135,"31610":0.6045045045,"31611":0.6054954955,"31612":0.6064864865,"31613":0.6074774775,"31614":0.6084684685,"31615":0.6094594595,"31616":0.6104504505,"31617":0.6114414414,"31618":0.6124324324,"31619":0.6134234234,"31620":0.6144144144,"31621":0.6154054054,"31622":0.6163963964,"31623":0.6173873874,"31624":0.6183783784,"31625":0.6193693694,"31626":0.6203603604,"31627":0.6213513514,"31628":0.6223423423,"31629":0.6233333333,"31630":0.6243243243,"31631":0.6253153153,"31632":0.6263063063,"31633":0.6272972973,"31634":0.6282882883,"31635":0.6292792793,"31636":0.6302702703,"31637":0.6312612613,"31638":0.6322522523,"31639":0.6332432432,"31640":0.6342342342,"31641":0.6352252252,"31642":0.6362162162,"31643":0.6372072072,"31644":0.6381981982,"31645":0.6391891892,"31646":0.6401801802,"31647":0.6411711712,"31648":0.6421621622,"31649":0.6431531532,"31650":0.6441441441,"31651":0.6451351351,"31652":0.6461261261,"31653":0.6471171171,"31654":0.6481081081,"31655":0.6490990991,"31656":0.6500900901,"31657":0.6510810811,"31658":0.6520720721,"31659":0.6530630631,"31660":0.6540540541,"31661":0.655045045,"31662":0.656036036,"31663":0.657027027,"31664":0.658018018,"31665":0.659009009,"31666":0.66,"31667":0.660990991,"31668":0.661981982,"31669":0.662972973,"31670":0.663963964,"31671":0.664954955,"31672":0.6659459459,"31673":0.6669369369,"31674":0.6679279279,"31675":0.6689189189,"31676":0.6699099099,"31677":0.6709009009,"31678":0.6718918919,"31679":0.6728828829,"31680":0.6738738739,"31681":0.6748648649,"31682":0.6758558559,"31683":0.6768468468,"31684":0.6778378378,"31685":0.6788288288,"31686":0.6798198198,"31687":0.6808108108,"31688":0.6818018018,"31689":0.6827927928,"31690":0.6837837838,"31691":0.6847747748,"31692":0.6857657658,"31693":0.6867567568,"31694":0.6877477477,"31695":0.6887387387,"31696":0.6897297297,"31697":0.6907207207,"31698":0.6917117117,"31699":0.6927027027,"31700":0.6936936937,"31701":0.6946846847,"31702":0.6956756757,"31703":0.6966666667,"31704":0.6976576577,"31705":0.6986486486,"31706":0.6996396396,"31707":0.7006306306,"31708":0.7016216216,"31709":0.7026126126,"31710":0.7036036036,"31711":0.7045945946,"31712":0.7055855856,"31713":0.7065765766,"31714":0.7075675676,"31715":0.7085585586,"31716":0.7095495495,"31717":0.7105405405,"31718":0.7115315315,"31719":0.7125225225,"31720":0.7135135135,"31721":0.7145045045,"31722":0.7154954955,"31723":0.7164864865,"31724":0.7174774775,"31725":0.7184684685,"31726":0.7194594595,"31727":0.7204504505,"31728":0.7214414414,"31729":0.7224324324,"31730":0.7234234234,"31731":0.7244144144,"31732":0.7254054054,"31733":0.7263963964,"31734":0.7273873874,"31735":0.7283783784,"31736":0.7293693694,"31737":0.7303603604,"31738":0.7313513514,"31739":0.7323423423,"31740":0.7333333333,"31741":0.7343243243,"31742":0.7353153153,"31743":0.7363063063,"31744":0.7372972973,"31745":0.7382882883,"31746":0.7392792793,"31747":0.7402702703,"31748":0.7412612613,"31749":0.7422522523,"31750":0.7432432432,"31751":0.7442342342,"31752":0.7452252252,"31753":0.7462162162,"31754":0.7472072072,"31755":0.7481981982,"31756":0.7491891892,"31757":0.7501801802,"31758":0.7511711712,"31759":0.7521621622,"31760":0.7531531532,"31761":0.7541441441,"31762":0.7551351351,"31763":0.7561261261,"31764":0.7571171171,"31765":0.7581081081,"31766":0.7590990991,"31767":0.7600900901,"31768":0.7610810811,"31769":0.7620720721,"31770":0.7630630631,"31771":0.7640540541,"31772":0.765045045,"31773":0.766036036,"31774":0.767027027,"31775":0.768018018,"31776":0.769009009,"31777":0.77,"31778":0.770990991,"31779":0.771981982,"31780":0.772972973,"31781":0.773963964,"31782":0.774954955,"31783":0.7759459459,"31784":0.7769369369,"31785":0.7779279279,"31786":0.7789189189,"31787":0.7799099099,"31788":0.7809009009,"31789":0.7818918919,"31790":0.7828828829,"31791":0.7838738739,"31792":0.7848648649,"31793":0.7858558559,"31794":0.7868468468,"31795":0.7878378378,"31796":0.7888288288,"31797":0.7898198198,"31798":0.7908108108,"31799":0.7918018018,"31800":0.7927927928,"31801":0.7937837838,"31802":0.7947747748,"31803":0.7957657658,"31804":0.7967567568,"31805":0.7977477477,"31806":0.7987387387,"31807":0.7997297297,"31808":0.8007207207,"31809":0.8017117117,"31810":0.8027027027,"31811":0.8036936937,"31812":0.8046846847,"31813":0.8056756757,"31814":0.8066666667,"31815":0.8076576577,"31816":0.8086486486,"31817":0.8096396396,"31818":0.8106306306,"31819":0.8116216216,"31820":0.8126126126,"31821":0.8136036036,"31822":0.8145945946,"31823":0.8155855856,"31824":0.8165765766,"31825":0.8175675676,"31826":0.8185585586,"31827":0.8195495495,"31828":0.8205405405,"31829":0.8215315315,"31830":0.8225225225,"31831":0.8235135135,"31832":0.8245045045,"31833":0.8254954955,"31834":0.8264864865,"31835":0.8274774775,"31836":0.8284684685,"31837":0.8294594595,"31838":0.8304504505,"31839":0.8314414414,"31840":0.8324324324,"31841":0.8334234234,"31842":0.8344144144,"31843":0.8354054054,"31844":0.8363963964,"31845":0.8373873874,"31846":0.8383783784,"31847":0.8393693694,"31848":0.8403603604,"31849":0.8413513514,"31850":0.8423423423,"31851":0.8433333333,"31852":0.8443243243,"31853":0.8453153153,"31854":0.8463063063,"31855":0.8472972973,"31856":0.8482882883,"31857":0.8492792793,"31858":0.8502702703,"31859":0.8512612613,"31860":0.8522522523,"31861":0.8532432432,"31862":0.8542342342,"31863":0.8552252252,"31864":0.8562162162,"31865":0.8572072072,"31866":0.8581981982,"31867":0.8591891892,"31868":0.8601801802,"31869":0.8611711712,"31870":0.8621621622,"31871":0.8631531532,"31872":0.8641441441,"31873":0.8651351351,"31874":0.8661261261,"31875":0.8671171171,"31876":0.8681081081,"31877":0.8690990991,"31878":0.8700900901,"31879":0.8710810811,"31880":0.8720720721,"31881":0.8730630631,"31882":0.8740540541,"31883":0.875045045,"31884":0.876036036,"31885":0.877027027,"31886":0.878018018,"31887":0.879009009,"31888":0.88,"31889":0.880990991,"31890":0.881981982,"31891":0.882972973,"31892":0.883963964,"31893":0.884954955,"31894":0.8859459459,"31895":0.8869369369,"31896":0.8879279279,"31897":0.8889189189,"31898":0.8899099099,"31899":0.8909009009,"31900":0.8918918919,"31901":0.8928828829,"31902":0.8938738739,"31903":0.8948648649,"31904":0.8958558559,"31905":0.8968468468,"31906":0.8978378378,"31907":0.8988288288,"31908":0.8998198198,"31909":0.9008108108,"31910":0.9018018018,"31911":0.9027927928,"31912":0.9037837838,"31913":0.9047747748,"31914":0.9057657658,"31915":0.9067567568,"31916":0.9077477477,"31917":0.9087387387,"31918":0.9097297297,"31919":0.9107207207,"31920":0.9117117117,"31921":0.9127027027,"31922":0.9136936937,"31923":0.9146846847,"31924":0.9156756757,"31925":0.9166666667,"31926":0.9176576577,"31927":0.9186486486,"31928":0.9196396396,"31929":0.9206306306,"31930":0.9216216216,"31931":0.9226126126,"31932":0.9236036036,"31933":0.9245945946,"31934":0.9255855856,"31935":0.9265765766,"31936":0.9275675676,"31937":0.9285585586,"31938":0.9295495495,"31939":0.9305405405,"31940":0.9315315315,"31941":0.9325225225,"31942":0.9335135135,"31943":0.9345045045,"31944":0.9354954955,"31945":0.9364864865,"31946":0.9374774775,"31947":0.9384684685,"31948":0.9394594595,"31949":0.9404504505,"31950":0.9414414414,"31951":0.9424324324,"31952":0.9434234234,"31953":0.9444144144,"31954":0.9454054054,"31955":0.9463963964,"31956":0.9473873874,"31957":0.9483783784,"31958":0.9493693694,"31959":0.9503603604,"31960":0.9513513514,"31961":0.9523423423,"31962":0.9533333333,"31963":0.9543243243,"31964":0.9553153153,"31965":0.9563063063,"31966":0.9572972973,"31967":0.9582882883,"31968":0.9592792793,"31969":0.9602702703,"31970":0.9612612613,"31971":0.9622522523,"31972":0.9632432432,"31973":0.9642342342,"31974":0.9652252252,"31975":0.9662162162,"31976":0.9672072072,"31977":0.9681981982,"31978":0.9691891892,"31979":0.9701801802,"31980":0.9711711712,"31981":0.9721621622,"31982":0.9731531532,"31983":0.9741441441,"31984":0.9751351351,"31985":0.9761261261,"31986":0.9771171171,"31987":0.9781081081,"31988":0.9790990991,"31989":0.9800900901,"31990":0.9810810811,"31991":0.9820720721,"31992":0.9830630631,"31993":0.9840540541,"31994":0.985045045,"31995":0.986036036,"31996":0.987027027,"31997":0.988018018,"31998":0.989009009,"31999":0.99,"32000":0.0,"32001":0.000990991,"32002":0.001981982,"32003":0.002972973,"32004":0.003963964,"32005":0.004954955,"32006":0.0059459459,"32007":0.0069369369,"32008":0.0079279279,"32009":0.0089189189,"32010":0.0099099099,"32011":0.0109009009,"32012":0.0118918919,"32013":0.0128828829,"32014":0.0138738739,"32015":0.0148648649,"32016":0.0158558559,"32017":0.0168468468,"32018":0.0178378378,"32019":0.0188288288,"32020":0.0198198198,"32021":0.0208108108,"32022":0.0218018018,"32023":0.0227927928,"32024":0.0237837838,"32025":0.0247747748,"32026":0.0257657658,"32027":0.0267567568,"32028":0.0277477477,"32029":0.0287387387,"32030":0.0297297297,"32031":0.0307207207,"32032":0.0317117117,"32033":0.0327027027,"32034":0.0336936937,"32035":0.0346846847,"32036":0.0356756757,"32037":0.0366666667,"32038":0.0376576577,"32039":0.0386486486,"32040":0.0396396396,"32041":0.0406306306,"32042":0.0416216216,"32043":0.0426126126,"32044":0.0436036036,"32045":0.0445945946,"32046":0.0455855856,"32047":0.0465765766,"32048":0.0475675676,"32049":0.0485585586,"32050":0.0495495495,"32051":0.0505405405,"32052":0.0515315315,"32053":0.0525225225,"32054":0.0535135135,"32055":0.0545045045,"32056":0.0554954955,"32057":0.0564864865,"32058":0.0574774775,"32059":0.0584684685,"32060":0.0594594595,"32061":0.0604504505,"32062":0.0614414414,"32063":0.0624324324,"32064":0.0634234234,"32065":0.0644144144,"32066":0.0654054054,"32067":0.0663963964,"32068":0.0673873874,"32069":0.0683783784,"32070":0.0693693694,"32071":0.0703603604,"32072":0.0713513514,"32073":0.0723423423,"32074":0.0733333333,"32075":0.0743243243,"32076":0.0753153153,"32077":0.0763063063,"32078":0.0772972973,"32079":0.0782882883,"32080":0.0792792793,"32081":0.0802702703,"32082":0.0812612613,"32083":0.0822522523,"32084":0.0832432432,"32085":0.0842342342,"32086":0.0852252252,"32087":0.0862162162,"32088":0.0872072072,"32089":0.0881981982,"32090":0.0891891892,"32091":0.0901801802,"32092":0.0911711712,"32093":0.0921621622,"32094":0.0931531532,"32095":0.0941441441,"32096":0.0951351351,"32097":0.0961261261,"32098":0.0971171171,"32099":0.0981081081,"32100":0.0990990991,"32101":0.1000900901,"32102":0.1010810811,"32103":0.1020720721,"32104":0.1030630631,"32105":0.1040540541,"32106":0.105045045,"32107":0.106036036,"32108":0.107027027,"32109":0.108018018,"32110":0.109009009,"32111":0.11,"32112":0.110990991,"32113":0.111981982,"32114":0.112972973,"32115":0.113963964,"32116":0.114954955,"32117":0.1159459459,"32118":0.1169369369,"32119":0.1179279279,"32120":0.1189189189,"32121":0.1199099099,"32122":0.1209009009,"32123":0.1218918919,"32124":0.1228828829,"32125":0.1238738739,"32126":0.1248648649,"32127":0.1258558559,"32128":0.1268468468,"32129":0.1278378378,"32130":0.1288288288,"32131":0.1298198198,"32132":0.1308108108,"32133":0.1318018018,"32134":0.1327927928,"32135":0.1337837838,"32136":0.1347747748,"32137":0.1357657658,"32138":0.1367567568,"32139":0.1377477477,"32140":0.1387387387,"32141":0.1397297297,"32142":0.1407207207,"32143":0.1417117117,"32144":0.1427027027,"32145":0.1436936937,"32146":0.1446846847,"32147":0.1456756757,"32148":0.1466666667,"32149":0.1476576577,"32150":0.1486486486,"32151":0.1496396396,"32152":0.1506306306,"32153":0.1516216216,"32154":0.1526126126,"32155":0.1536036036,"32156":0.1545945946,"32157":0.1555855856,"32158":0.1565765766,"32159":0.1575675676,"32160":0.1585585586,"32161":0.1595495495,"32162":0.1605405405,"32163":0.1615315315,"32164":0.1625225225,"32165":0.1635135135,"32166":0.1645045045,"32167":0.1654954955,"32168":0.1664864865,"32169":0.1674774775,"32170":0.1684684685,"32171":0.1694594595,"32172":0.1704504505,"32173":0.1714414414,"32174":0.1724324324,"32175":0.1734234234,"32176":0.1744144144,"32177":0.1754054054,"32178":0.1763963964,"32179":0.1773873874,"32180":0.1783783784,"32181":0.1793693694,"32182":0.1803603604,"32183":0.1813513514,"32184":0.1823423423,"32185":0.1833333333,"32186":0.1843243243,"32187":0.1853153153,"32188":0.1863063063,"32189":0.1872972973,"32190":0.1882882883,"32191":0.1892792793,"32192":0.1902702703,"32193":0.1912612613,"32194":0.1922522523,"32195":0.1932432432,"32196":0.1942342342,"32197":0.1952252252,"32198":0.1962162162,"32199":0.1972072072,"32200":0.1981981982,"32201":0.1991891892,"32202":0.2001801802,"32203":0.2011711712,"32204":0.2021621622,"32205":0.2031531532,"32206":0.2041441441,"32207":0.2051351351,"32208":0.2061261261,"32209":0.2071171171,"32210":0.2081081081,"32211":0.2090990991,"32212":0.2100900901,"32213":0.2110810811,"32214":0.2120720721,"32215":0.2130630631,"32216":0.2140540541,"32217":0.215045045,"32218":0.216036036,"32219":0.217027027,"32220":0.218018018,"32221":0.219009009,"32222":0.22,"32223":0.220990991,"32224":0.221981982,"32225":0.222972973,"32226":0.223963964,"32227":0.224954955,"32228":0.2259459459,"32229":0.2269369369,"32230":0.2279279279,"32231":0.2289189189,"32232":0.2299099099,"32233":0.2309009009,"32234":0.2318918919,"32235":0.2328828829,"32236":0.2338738739,"32237":0.2348648649,"32238":0.2358558559,"32239":0.2368468468,"32240":0.2378378378,"32241":0.2388288288,"32242":0.2398198198,"32243":0.2408108108,"32244":0.2418018018,"32245":0.2427927928,"32246":0.2437837838,"32247":0.2447747748,"32248":0.2457657658,"32249":0.2467567568,"32250":0.2477477477,"32251":0.2487387387,"32252":0.2497297297,"32253":0.2507207207,"32254":0.2517117117,"32255":0.2527027027,"32256":0.2536936937,"32257":0.2546846847,"32258":0.2556756757,"32259":0.2566666667,"32260":0.2576576577,"32261":0.2586486486,"32262":0.2596396396,"32263":0.2606306306,"32264":0.2616216216,"32265":0.2626126126,"32266":0.2636036036,"32267":0.2645945946,"32268":0.2655855856,"32269":0.2665765766,"32270":0.2675675676,"32271":0.2685585586,"32272":0.2695495495,"32273":0.2705405405,"32274":0.2715315315,"32275":0.2725225225,"32276":0.2735135135,"32277":0.2745045045,"32278":0.2754954955,"32279":0.2764864865,"32280":0.2774774775,"32281":0.2784684685,"32282":0.2794594595,"32283":0.2804504505,"32284":0.2814414414,"32285":0.2824324324,"32286":0.2834234234,"32287":0.2844144144,"32288":0.2854054054,"32289":0.2863963964,"32290":0.2873873874,"32291":0.2883783784,"32292":0.2893693694,"32293":0.2903603604,"32294":0.2913513514,"32295":0.2923423423,"32296":0.2933333333,"32297":0.2943243243,"32298":0.2953153153,"32299":0.2963063063,"32300":0.2972972973,"32301":0.2982882883,"32302":0.2992792793,"32303":0.3002702703,"32304":0.3012612613,"32305":0.3022522523,"32306":0.3032432432,"32307":0.3042342342,"32308":0.3052252252,"32309":0.3062162162,"32310":0.3072072072,"32311":0.3081981982,"32312":0.3091891892,"32313":0.3101801802,"32314":0.3111711712,"32315":0.3121621622,"32316":0.3131531532,"32317":0.3141441441,"32318":0.3151351351,"32319":0.3161261261,"32320":0.3171171171,"32321":0.3181081081,"32322":0.3190990991,"32323":0.3200900901,"32324":0.3210810811,"32325":0.3220720721,"32326":0.3230630631,"32327":0.3240540541,"32328":0.325045045,"32329":0.326036036,"32330":0.327027027,"32331":0.328018018,"32332":0.329009009,"32333":0.33,"32334":0.330990991,"32335":0.331981982,"32336":0.332972973,"32337":0.333963964,"32338":0.334954955,"32339":0.3359459459,"32340":0.3369369369,"32341":0.3379279279,"32342":0.3389189189,"32343":0.3399099099,"32344":0.3409009009,"32345":0.3418918919,"32346":0.3428828829,"32347":0.3438738739,"32348":0.3448648649,"32349":0.3458558559,"32350":0.3468468468,"32351":0.3478378378,"32352":0.3488288288,"32353":0.3498198198,"32354":0.3508108108,"32355":0.3518018018,"32356":0.3527927928,"32357":0.3537837838,"32358":0.3547747748,"32359":0.3557657658,"32360":0.3567567568,"32361":0.3577477477,"32362":0.3587387387,"32363":0.3597297297,"32364":0.3607207207,"32365":0.3617117117,"32366":0.3627027027,"32367":0.3636936937,"32368":0.3646846847,"32369":0.3656756757,"32370":0.3666666667,"32371":0.3676576577,"32372":0.3686486486,"32373":0.3696396396,"32374":0.3706306306,"32375":0.3716216216,"32376":0.3726126126,"32377":0.3736036036,"32378":0.3745945946,"32379":0.3755855856,"32380":0.3765765766,"32381":0.3775675676,"32382":0.3785585586,"32383":0.3795495495,"32384":0.3805405405,"32385":0.3815315315,"32386":0.3825225225,"32387":0.3835135135,"32388":0.3845045045,"32389":0.3854954955,"32390":0.3864864865,"32391":0.3874774775,"32392":0.3884684685,"32393":0.3894594595,"32394":0.3904504505,"32395":0.3914414414,"32396":0.3924324324,"32397":0.3934234234,"32398":0.3944144144,"32399":0.3954054054,"32400":0.3963963964,"32401":0.3973873874,"32402":0.3983783784,"32403":0.3993693694,"32404":0.4003603604,"32405":0.4013513514,"32406":0.4023423423,"32407":0.4033333333,"32408":0.4043243243,"32409":0.4053153153,"32410":0.4063063063,"32411":0.4072972973,"32412":0.4082882883,"32413":0.4092792793,"32414":0.4102702703,"32415":0.4112612613,"32416":0.4122522523,"32417":0.4132432432,"32418":0.4142342342,"32419":0.4152252252,"32420":0.4162162162,"32421":0.4172072072,"32422":0.4181981982,"32423":0.4191891892,"32424":0.4201801802,"32425":0.4211711712,"32426":0.4221621622,"32427":0.4231531532,"32428":0.4241441441,"32429":0.4251351351,"32430":0.4261261261,"32431":0.4271171171,"32432":0.4281081081,"32433":0.4290990991,"32434":0.4300900901,"32435":0.4310810811,"32436":0.4320720721,"32437":0.4330630631,"32438":0.4340540541,"32439":0.435045045,"32440":0.436036036,"32441":0.437027027,"32442":0.438018018,"32443":0.439009009,"32444":0.44,"32445":0.440990991,"32446":0.441981982,"32447":0.442972973,"32448":0.443963964,"32449":0.444954955,"32450":0.4459459459,"32451":0.4469369369,"32452":0.4479279279,"32453":0.4489189189,"32454":0.4499099099,"32455":0.4509009009,"32456":0.4518918919,"32457":0.4528828829,"32458":0.4538738739,"32459":0.4548648649,"32460":0.4558558559,"32461":0.4568468468,"32462":0.4578378378,"32463":0.4588288288,"32464":0.4598198198,"32465":0.4608108108,"32466":0.4618018018,"32467":0.4627927928,"32468":0.4637837838,"32469":0.4647747748,"32470":0.4657657658,"32471":0.4667567568,"32472":0.4677477477,"32473":0.4687387387,"32474":0.4697297297,"32475":0.4707207207,"32476":0.4717117117,"32477":0.4727027027,"32478":0.4736936937,"32479":0.4746846847,"32480":0.4756756757,"32481":0.4766666667,"32482":0.4776576577,"32483":0.4786486486,"32484":0.4796396396,"32485":0.4806306306,"32486":0.4816216216,"32487":0.4826126126,"32488":0.4836036036,"32489":0.4845945946,"32490":0.4855855856,"32491":0.4865765766,"32492":0.4875675676,"32493":0.4885585586,"32494":0.4895495495,"32495":0.4905405405,"32496":0.4915315315,"32497":0.4925225225,"32498":0.4935135135,"32499":0.4945045045,"32500":0.4954954955,"32501":0.4964864865,"32502":0.4974774775,"32503":0.4984684685,"32504":0.4994594595,"32505":0.5004504505,"32506":0.5014414414,"32507":0.5024324324,"32508":0.5034234234,"32509":0.5044144144,"32510":0.5054054054,"32511":0.5063963964,"32512":0.5073873874,"32513":0.5083783784,"32514":0.5093693694,"32515":0.5103603604,"32516":0.5113513514,"32517":0.5123423423,"32518":0.5133333333,"32519":0.5143243243,"32520":0.5153153153,"32521":0.5163063063,"32522":0.5172972973,"32523":0.5182882883,"32524":0.5192792793,"32525":0.5202702703,"32526":0.5212612613,"32527":0.5222522523,"32528":0.5232432432,"32529":0.5242342342,"32530":0.5252252252,"32531":0.5262162162,"32532":0.5272072072,"32533":0.5281981982,"32534":0.5291891892,"32535":0.5301801802,"32536":0.5311711712,"32537":0.5321621622,"32538":0.5331531532,"32539":0.5341441441,"32540":0.5351351351,"32541":0.5361261261,"32542":0.5371171171,"32543":0.5381081081,"32544":0.5390990991,"32545":0.5400900901,"32546":0.5410810811,"32547":0.5420720721,"32548":0.5430630631,"32549":0.5440540541,"32550":0.545045045,"32551":0.546036036,"32552":0.547027027,"32553":0.548018018,"32554":0.549009009,"32555":0.55,"32556":0.550990991,"32557":0.551981982,"32558":0.552972973,"32559":0.553963964,"32560":0.554954955,"32561":0.5559459459,"32562":0.5569369369,"32563":0.5579279279,"32564":0.5589189189,"32565":0.5599099099,"32566":0.5609009009,"32567":0.5618918919,"32568":0.5628828829,"32569":0.5638738739,"32570":0.5648648649,"32571":0.5658558559,"32572":0.5668468468,"32573":0.5678378378,"32574":0.5688288288,"32575":0.5698198198,"32576":0.5708108108,"32577":0.5718018018,"32578":0.5727927928,"32579":0.5737837838,"32580":0.5747747748,"32581":0.5757657658,"32582":0.5767567568,"32583":0.5777477477,"32584":0.5787387387,"32585":0.5797297297,"32586":0.5807207207,"32587":0.5817117117,"32588":0.5827027027,"32589":0.5836936937,"32590":0.5846846847,"32591":0.5856756757,"32592":0.5866666667,"32593":0.5876576577,"32594":0.5886486486,"32595":0.5896396396,"32596":0.5906306306,"32597":0.5916216216,"32598":0.5926126126,"32599":0.5936036036,"32600":0.5945945946,"32601":0.5955855856,"32602":0.5965765766,"32603":0.5975675676,"32604":0.5985585586,"32605":0.5995495495,"32606":0.6005405405,"32607":0.6015315315,"32608":0.6025225225,"32609":0.6035135135,"32610":0.6045045045,"32611":0.6054954955,"32612":0.6064864865,"32613":0.6074774775,"32614":0.6084684685,"32615":0.6094594595,"32616":0.6104504505,"32617":0.6114414414,"32618":0.6124324324,"32619":0.6134234234,"32620":0.6144144144,"32621":0.6154054054,"32622":0.6163963964,"32623":0.6173873874,"32624":0.6183783784,"32625":0.6193693694,"32626":0.6203603604,"32627":0.6213513514,"32628":0.6223423423,"32629":0.6233333333,"32630":0.6243243243,"32631":0.6253153153,"32632":0.6263063063,"32633":0.6272972973,"32634":0.6282882883,"32635":0.6292792793,"32636":0.6302702703,"32637":0.6312612613,"32638":0.6322522523,"32639":0.6332432432,"32640":0.6342342342,"32641":0.6352252252,"32642":0.6362162162,"32643":0.6372072072,"32644":0.6381981982,"32645":0.6391891892,"32646":0.6401801802,"32647":0.6411711712,"32648":0.6421621622,"32649":0.6431531532,"32650":0.6441441441,"32651":0.6451351351,"32652":0.6461261261,"32653":0.6471171171,"32654":0.6481081081,"32655":0.6490990991,"32656":0.6500900901,"32657":0.6510810811,"32658":0.6520720721,"32659":0.6530630631,"32660":0.6540540541,"32661":0.655045045,"32662":0.656036036,"32663":0.657027027,"32664":0.658018018,"32665":0.659009009,"32666":0.66,"32667":0.660990991,"32668":0.661981982,"32669":0.662972973,"32670":0.663963964,"32671":0.664954955,"32672":0.6659459459,"32673":0.6669369369,"32674":0.6679279279,"32675":0.6689189189,"32676":0.6699099099,"32677":0.6709009009,"32678":0.6718918919,"32679":0.6728828829,"32680":0.6738738739,"32681":0.6748648649,"32682":0.6758558559,"32683":0.6768468468,"32684":0.6778378378,"32685":0.6788288288,"32686":0.6798198198,"32687":0.6808108108,"32688":0.6818018018,"32689":0.6827927928,"32690":0.6837837838,"32691":0.6847747748,"32692":0.6857657658,"32693":0.6867567568,"32694":0.6877477477,"32695":0.6887387387,"32696":0.6897297297,"32697":0.6907207207,"32698":0.6917117117,"32699":0.6927027027,"32700":0.6936936937,"32701":0.6946846847,"32702":0.6956756757,"32703":0.6966666667,"32704":0.6976576577,"32705":0.6986486486,"32706":0.6996396396,"32707":0.7006306306,"32708":0.7016216216,"32709":0.7026126126,"32710":0.7036036036,"32711":0.7045945946,"32712":0.7055855856,"32713":0.7065765766,"32714":0.7075675676,"32715":0.7085585586,"32716":0.7095495495,"32717":0.7105405405,"32718":0.7115315315,"32719":0.7125225225,"32720":0.7135135135,"32721":0.7145045045,"32722":0.7154954955,"32723":0.7164864865,"32724":0.7174774775,"32725":0.7184684685,"32726":0.7194594595,"32727":0.7204504505,"32728":0.7214414414,"32729":0.7224324324,"32730":0.7234234234,"32731":0.7244144144,"32732":0.7254054054,"32733":0.7263963964,"32734":0.7273873874,"32735":0.7283783784,"32736":0.7293693694,"32737":0.7303603604,"32738":0.7313513514,"32739":0.7323423423,"32740":0.7333333333,"32741":0.7343243243,"32742":0.7353153153,"32743":0.7363063063,"32744":0.7372972973,"32745":0.7382882883,"32746":0.7392792793,"32747":0.7402702703,"32748":0.7412612613,"32749":0.7422522523,"32750":0.7432432432,"32751":0.7442342342,"32752":0.7452252252,"32753":0.7462162162,"32754":0.7472072072,"32755":0.7481981982,"32756":0.7491891892,"32757":0.7501801802,"32758":0.7511711712,"32759":0.7521621622,"32760":0.7531531532,"32761":0.7541441441,"32762":0.7551351351,"32763":0.7561261261,"32764":0.7571171171,"32765":0.7581081081,"32766":0.7590990991,"32767":0.7600900901,"32768":0.7610810811,"32769":0.7620720721,"32770":0.7630630631,"32771":0.7640540541,"32772":0.765045045,"32773":0.766036036,"32774":0.767027027,"32775":0.768018018,"32776":0.769009009,"32777":0.77,"32778":0.770990991,"32779":0.771981982,"32780":0.772972973,"32781":0.773963964,"32782":0.774954955,"32783":0.7759459459,"32784":0.7769369369,"32785":0.7779279279,"32786":0.7789189189,"32787":0.7799099099,"32788":0.7809009009,"32789":0.7818918919,"32790":0.7828828829,"32791":0.7838738739,"32792":0.7848648649,"32793":0.7858558559,"32794":0.7868468468,"32795":0.7878378378,"32796":0.7888288288,"32797":0.7898198198,"32798":0.7908108108,"32799":0.7918018018,"32800":0.7927927928,"32801":0.7937837838,"32802":0.7947747748,"32803":0.7957657658,"32804":0.7967567568,"32805":0.7977477477,"32806":0.7987387387,"32807":0.7997297297,"32808":0.8007207207,"32809":0.8017117117,"32810":0.8027027027,"32811":0.8036936937,"32812":0.8046846847,"32813":0.8056756757,"32814":0.8066666667,"32815":0.8076576577,"32816":0.8086486486,"32817":0.8096396396,"32818":0.8106306306,"32819":0.8116216216,"32820":0.8126126126,"32821":0.8136036036,"32822":0.8145945946,"32823":0.8155855856,"32824":0.8165765766,"32825":0.8175675676,"32826":0.8185585586,"32827":0.8195495495,"32828":0.8205405405,"32829":0.8215315315,"32830":0.8225225225,"32831":0.8235135135,"32832":0.8245045045,"32833":0.8254954955,"32834":0.8264864865,"32835":0.8274774775,"32836":0.8284684685,"32837":0.8294594595,"32838":0.8304504505,"32839":0.8314414414,"32840":0.8324324324,"32841":0.8334234234,"32842":0.8344144144,"32843":0.8354054054,"32844":0.8363963964,"32845":0.8373873874,"32846":0.8383783784,"32847":0.8393693694,"32848":0.8403603604,"32849":0.8413513514,"32850":0.8423423423,"32851":0.8433333333,"32852":0.8443243243,"32853":0.8453153153,"32854":0.8463063063,"32855":0.8472972973,"32856":0.8482882883,"32857":0.8492792793,"32858":0.8502702703,"32859":0.8512612613,"32860":0.8522522523,"32861":0.8532432432,"32862":0.8542342342,"32863":0.8552252252,"32864":0.8562162162,"32865":0.8572072072,"32866":0.8581981982,"32867":0.8591891892,"32868":0.8601801802,"32869":0.8611711712,"32870":0.8621621622,"32871":0.8631531532,"32872":0.8641441441,"32873":0.8651351351,"32874":0.8661261261,"32875":0.8671171171,"32876":0.8681081081,"32877":0.8690990991,"32878":0.8700900901,"32879":0.8710810811,"32880":0.8720720721,"32881":0.8730630631,"32882":0.8740540541,"32883":0.875045045,"32884":0.876036036,"32885":0.877027027,"32886":0.878018018,"32887":0.879009009,"32888":0.88,"32889":0.880990991,"32890":0.881981982,"32891":0.882972973,"32892":0.883963964,"32893":0.884954955,"32894":0.8859459459,"32895":0.8869369369,"32896":0.8879279279,"32897":0.8889189189,"32898":0.8899099099,"32899":0.8909009009,"32900":0.8918918919,"32901":0.8928828829,"32902":0.8938738739,"32903":0.8948648649,"32904":0.8958558559,"32905":0.8968468468,"32906":0.8978378378,"32907":0.8988288288,"32908":0.8998198198,"32909":0.9008108108,"32910":0.9018018018,"32911":0.9027927928,"32912":0.9037837838,"32913":0.9047747748,"32914":0.9057657658,"32915":0.9067567568,"32916":0.9077477477,"32917":0.9087387387,"32918":0.9097297297,"32919":0.9107207207,"32920":0.9117117117,"32921":0.9127027027,"32922":0.9136936937,"32923":0.9146846847,"32924":0.9156756757,"32925":0.9166666667,"32926":0.9176576577,"32927":0.9186486486,"32928":0.9196396396,"32929":0.9206306306,"32930":0.9216216216,"32931":0.9226126126,"32932":0.9236036036,"32933":0.9245945946,"32934":0.9255855856,"32935":0.9265765766,"32936":0.9275675676,"32937":0.9285585586,"32938":0.9295495495,"32939":0.9305405405,"32940":0.9315315315,"32941":0.9325225225,"32942":0.9335135135,"32943":0.9345045045,"32944":0.9354954955,"32945":0.9364864865,"32946":0.9374774775,"32947":0.9384684685,"32948":0.9394594595,"32949":0.9404504505,"32950":0.9414414414,"32951":0.9424324324,"32952":0.9434234234,"32953":0.9444144144,"32954":0.9454054054,"32955":0.9463963964,"32956":0.9473873874,"32957":0.9483783784,"32958":0.9493693694,"32959":0.9503603604,"32960":0.9513513514,"32961":0.9523423423,"32962":0.9533333333,"32963":0.9543243243,"32964":0.9553153153,"32965":0.9563063063,"32966":0.9572972973,"32967":0.9582882883,"32968":0.9592792793,"32969":0.9602702703,"32970":0.9612612613,"32971":0.9622522523,"32972":0.9632432432,"32973":0.9642342342,"32974":0.9652252252,"32975":0.9662162162,"32976":0.9672072072,"32977":0.9681981982,"32978":0.9691891892,"32979":0.9701801802,"32980":0.9711711712,"32981":0.9721621622,"32982":0.9731531532,"32983":0.9741441441,"32984":0.9751351351,"32985":0.9761261261,"32986":0.9771171171,"32987":0.9781081081,"32988":0.9790990991,"32989":0.9800900901,"32990":0.9810810811,"32991":0.9820720721,"32992":0.9830630631,"32993":0.9840540541,"32994":0.985045045,"32995":0.986036036,"32996":0.987027027,"32997":0.988018018,"32998":0.989009009,"32999":0.99,"33000":0.0,"33001":0.000990991,"33002":0.001981982,"33003":0.002972973,"33004":0.003963964,"33005":0.004954955,"33006":0.0059459459,"33007":0.0069369369,"33008":0.0079279279,"33009":0.0089189189,"33010":0.0099099099,"33011":0.0109009009,"33012":0.0118918919,"33013":0.0128828829,"33014":0.0138738739,"33015":0.0148648649,"33016":0.0158558559,"33017":0.0168468468,"33018":0.0178378378,"33019":0.0188288288,"33020":0.0198198198,"33021":0.0208108108,"33022":0.0218018018,"33023":0.0227927928,"33024":0.0237837838,"33025":0.0247747748,"33026":0.0257657658,"33027":0.0267567568,"33028":0.0277477477,"33029":0.0287387387,"33030":0.0297297297,"33031":0.0307207207,"33032":0.0317117117,"33033":0.0327027027,"33034":0.0336936937,"33035":0.0346846847,"33036":0.0356756757,"33037":0.0366666667,"33038":0.0376576577,"33039":0.0386486486,"33040":0.0396396396,"33041":0.0406306306,"33042":0.0416216216,"33043":0.0426126126,"33044":0.0436036036,"33045":0.0445945946,"33046":0.0455855856,"33047":0.0465765766,"33048":0.0475675676,"33049":0.0485585586,"33050":0.0495495495,"33051":0.0505405405,"33052":0.0515315315,"33053":0.0525225225,"33054":0.0535135135,"33055":0.0545045045,"33056":0.0554954955,"33057":0.0564864865,"33058":0.0574774775,"33059":0.0584684685,"33060":0.0594594595,"33061":0.0604504505,"33062":0.0614414414,"33063":0.0624324324,"33064":0.0634234234,"33065":0.0644144144,"33066":0.0654054054,"33067":0.0663963964,"33068":0.0673873874,"33069":0.0683783784,"33070":0.0693693694,"33071":0.0703603604,"33072":0.0713513514,"33073":0.0723423423,"33074":0.0733333333,"33075":0.0743243243,"33076":0.0753153153,"33077":0.0763063063,"33078":0.0772972973,"33079":0.0782882883,"33080":0.0792792793,"33081":0.0802702703,"33082":0.0812612613,"33083":0.0822522523,"33084":0.0832432432,"33085":0.0842342342,"33086":0.0852252252,"33087":0.0862162162,"33088":0.0872072072,"33089":0.0881981982,"33090":0.0891891892,"33091":0.0901801802,"33092":0.0911711712,"33093":0.0921621622,"33094":0.0931531532,"33095":0.0941441441,"33096":0.0951351351,"33097":0.0961261261,"33098":0.0971171171,"33099":0.0981081081,"33100":0.0990990991,"33101":0.1000900901,"33102":0.1010810811,"33103":0.1020720721,"33104":0.1030630631,"33105":0.1040540541,"33106":0.105045045,"33107":0.106036036,"33108":0.107027027,"33109":0.108018018,"33110":0.109009009,"33111":0.11,"33112":0.110990991,"33113":0.111981982,"33114":0.112972973,"33115":0.113963964,"33116":0.114954955,"33117":0.1159459459,"33118":0.1169369369,"33119":0.1179279279,"33120":0.1189189189,"33121":0.1199099099,"33122":0.1209009009,"33123":0.1218918919,"33124":0.1228828829,"33125":0.1238738739,"33126":0.1248648649,"33127":0.1258558559,"33128":0.1268468468,"33129":0.1278378378,"33130":0.1288288288,"33131":0.1298198198,"33132":0.1308108108,"33133":0.1318018018,"33134":0.1327927928,"33135":0.1337837838,"33136":0.1347747748,"33137":0.1357657658,"33138":0.1367567568,"33139":0.1377477477,"33140":0.1387387387,"33141":0.1397297297,"33142":0.1407207207,"33143":0.1417117117,"33144":0.1427027027,"33145":0.1436936937,"33146":0.1446846847,"33147":0.1456756757,"33148":0.1466666667,"33149":0.1476576577,"33150":0.1486486486,"33151":0.1496396396,"33152":0.1506306306,"33153":0.1516216216,"33154":0.1526126126,"33155":0.1536036036,"33156":0.1545945946,"33157":0.1555855856,"33158":0.1565765766,"33159":0.1575675676,"33160":0.1585585586,"33161":0.1595495495,"33162":0.1605405405,"33163":0.1615315315,"33164":0.1625225225,"33165":0.1635135135,"33166":0.1645045045,"33167":0.1654954955,"33168":0.1664864865,"33169":0.1674774775,"33170":0.1684684685,"33171":0.1694594595,"33172":0.1704504505,"33173":0.1714414414,"33174":0.1724324324,"33175":0.1734234234,"33176":0.1744144144,"33177":0.1754054054,"33178":0.1763963964,"33179":0.1773873874,"33180":0.1783783784,"33181":0.1793693694,"33182":0.1803603604,"33183":0.1813513514,"33184":0.1823423423,"33185":0.1833333333,"33186":0.1843243243,"33187":0.1853153153,"33188":0.1863063063,"33189":0.1872972973,"33190":0.1882882883,"33191":0.1892792793,"33192":0.1902702703,"33193":0.1912612613,"33194":0.1922522523,"33195":0.1932432432,"33196":0.1942342342,"33197":0.1952252252,"33198":0.1962162162,"33199":0.1972072072,"33200":0.1981981982,"33201":0.1991891892,"33202":0.2001801802,"33203":0.2011711712,"33204":0.2021621622,"33205":0.2031531532,"33206":0.2041441441,"33207":0.2051351351,"33208":0.2061261261,"33209":0.2071171171,"33210":0.2081081081,"33211":0.2090990991,"33212":0.2100900901,"33213":0.2110810811,"33214":0.2120720721,"33215":0.2130630631,"33216":0.2140540541,"33217":0.215045045,"33218":0.216036036,"33219":0.217027027,"33220":0.218018018,"33221":0.219009009,"33222":0.22,"33223":0.220990991,"33224":0.221981982,"33225":0.222972973,"33226":0.223963964,"33227":0.224954955,"33228":0.2259459459,"33229":0.2269369369,"33230":0.2279279279,"33231":0.2289189189,"33232":0.2299099099,"33233":0.2309009009,"33234":0.2318918919,"33235":0.2328828829,"33236":0.2338738739,"33237":0.2348648649,"33238":0.2358558559,"33239":0.2368468468,"33240":0.2378378378,"33241":0.2388288288,"33242":0.2398198198,"33243":0.2408108108,"33244":0.2418018018,"33245":0.2427927928,"33246":0.2437837838,"33247":0.2447747748,"33248":0.2457657658,"33249":0.2467567568,"33250":0.2477477477,"33251":0.2487387387,"33252":0.2497297297,"33253":0.2507207207,"33254":0.2517117117,"33255":0.2527027027,"33256":0.2536936937,"33257":0.2546846847,"33258":0.2556756757,"33259":0.2566666667,"33260":0.2576576577,"33261":0.2586486486,"33262":0.2596396396,"33263":0.2606306306,"33264":0.2616216216,"33265":0.2626126126,"33266":0.2636036036,"33267":0.2645945946,"33268":0.2655855856,"33269":0.2665765766,"33270":0.2675675676,"33271":0.2685585586,"33272":0.2695495495,"33273":0.2705405405,"33274":0.2715315315,"33275":0.2725225225,"33276":0.2735135135,"33277":0.2745045045,"33278":0.2754954955,"33279":0.2764864865,"33280":0.2774774775,"33281":0.2784684685,"33282":0.2794594595,"33283":0.2804504505,"33284":0.2814414414,"33285":0.2824324324,"33286":0.2834234234,"33287":0.2844144144,"33288":0.2854054054,"33289":0.2863963964,"33290":0.2873873874,"33291":0.2883783784,"33292":0.2893693694,"33293":0.2903603604,"33294":0.2913513514,"33295":0.2923423423,"33296":0.2933333333,"33297":0.2943243243,"33298":0.2953153153,"33299":0.2963063063,"33300":0.2972972973,"33301":0.2982882883,"33302":0.2992792793,"33303":0.3002702703,"33304":0.3012612613,"33305":0.3022522523,"33306":0.3032432432,"33307":0.3042342342,"33308":0.3052252252,"33309":0.3062162162,"33310":0.3072072072,"33311":0.3081981982,"33312":0.3091891892,"33313":0.3101801802,"33314":0.3111711712,"33315":0.3121621622,"33316":0.3131531532,"33317":0.3141441441,"33318":0.3151351351,"33319":0.3161261261,"33320":0.3171171171,"33321":0.3181081081,"33322":0.3190990991,"33323":0.3200900901,"33324":0.3210810811,"33325":0.3220720721,"33326":0.3230630631,"33327":0.3240540541,"33328":0.325045045,"33329":0.326036036,"33330":0.327027027,"33331":0.328018018,"33332":0.329009009,"33333":0.33,"33334":0.330990991,"33335":0.331981982,"33336":0.332972973,"33337":0.333963964,"33338":0.334954955,"33339":0.3359459459,"33340":0.3369369369,"33341":0.3379279279,"33342":0.3389189189,"33343":0.3399099099,"33344":0.3409009009,"33345":0.3418918919,"33346":0.3428828829,"33347":0.3438738739,"33348":0.3448648649,"33349":0.3458558559,"33350":0.3468468468,"33351":0.3478378378,"33352":0.3488288288,"33353":0.3498198198,"33354":0.3508108108,"33355":0.3518018018,"33356":0.3527927928,"33357":0.3537837838,"33358":0.3547747748,"33359":0.3557657658,"33360":0.3567567568,"33361":0.3577477477,"33362":0.3587387387,"33363":0.3597297297,"33364":0.3607207207,"33365":0.3617117117,"33366":0.3627027027,"33367":0.3636936937,"33368":0.3646846847,"33369":0.3656756757,"33370":0.3666666667,"33371":0.3676576577,"33372":0.3686486486,"33373":0.3696396396,"33374":0.3706306306,"33375":0.3716216216,"33376":0.3726126126,"33377":0.3736036036,"33378":0.3745945946,"33379":0.3755855856,"33380":0.3765765766,"33381":0.3775675676,"33382":0.3785585586,"33383":0.3795495495,"33384":0.3805405405,"33385":0.3815315315,"33386":0.3825225225,"33387":0.3835135135,"33388":0.3845045045,"33389":0.3854954955,"33390":0.3864864865,"33391":0.3874774775,"33392":0.3884684685,"33393":0.3894594595,"33394":0.3904504505,"33395":0.3914414414,"33396":0.3924324324,"33397":0.3934234234,"33398":0.3944144144,"33399":0.3954054054,"33400":0.3963963964,"33401":0.3973873874,"33402":0.3983783784,"33403":0.3993693694,"33404":0.4003603604,"33405":0.4013513514,"33406":0.4023423423,"33407":0.4033333333,"33408":0.4043243243,"33409":0.4053153153,"33410":0.4063063063,"33411":0.4072972973,"33412":0.4082882883,"33413":0.4092792793,"33414":0.4102702703,"33415":0.4112612613,"33416":0.4122522523,"33417":0.4132432432,"33418":0.4142342342,"33419":0.4152252252,"33420":0.4162162162,"33421":0.4172072072,"33422":0.4181981982,"33423":0.4191891892,"33424":0.4201801802,"33425":0.4211711712,"33426":0.4221621622,"33427":0.4231531532,"33428":0.4241441441,"33429":0.4251351351,"33430":0.4261261261,"33431":0.4271171171,"33432":0.4281081081,"33433":0.4290990991,"33434":0.4300900901,"33435":0.4310810811,"33436":0.4320720721,"33437":0.4330630631,"33438":0.4340540541,"33439":0.435045045,"33440":0.436036036,"33441":0.437027027,"33442":0.438018018,"33443":0.439009009,"33444":0.44,"33445":0.440990991,"33446":0.441981982,"33447":0.442972973,"33448":0.443963964,"33449":0.444954955,"33450":0.4459459459,"33451":0.4469369369,"33452":0.4479279279,"33453":0.4489189189,"33454":0.4499099099,"33455":0.4509009009,"33456":0.4518918919,"33457":0.4528828829,"33458":0.4538738739,"33459":0.4548648649,"33460":0.4558558559,"33461":0.4568468468,"33462":0.4578378378,"33463":0.4588288288,"33464":0.4598198198,"33465":0.4608108108,"33466":0.4618018018,"33467":0.4627927928,"33468":0.4637837838,"33469":0.4647747748,"33470":0.4657657658,"33471":0.4667567568,"33472":0.4677477477,"33473":0.4687387387,"33474":0.4697297297,"33475":0.4707207207,"33476":0.4717117117,"33477":0.4727027027,"33478":0.4736936937,"33479":0.4746846847,"33480":0.4756756757,"33481":0.4766666667,"33482":0.4776576577,"33483":0.4786486486,"33484":0.4796396396,"33485":0.4806306306,"33486":0.4816216216,"33487":0.4826126126,"33488":0.4836036036,"33489":0.4845945946,"33490":0.4855855856,"33491":0.4865765766,"33492":0.4875675676,"33493":0.4885585586,"33494":0.4895495495,"33495":0.4905405405,"33496":0.4915315315,"33497":0.4925225225,"33498":0.4935135135,"33499":0.4945045045,"33500":0.4954954955,"33501":0.4964864865,"33502":0.4974774775,"33503":0.4984684685,"33504":0.4994594595,"33505":0.5004504505,"33506":0.5014414414,"33507":0.5024324324,"33508":0.5034234234,"33509":0.5044144144,"33510":0.5054054054,"33511":0.5063963964,"33512":0.5073873874,"33513":0.5083783784,"33514":0.5093693694,"33515":0.5103603604,"33516":0.5113513514,"33517":0.5123423423,"33518":0.5133333333,"33519":0.5143243243,"33520":0.5153153153,"33521":0.5163063063,"33522":0.5172972973,"33523":0.5182882883,"33524":0.5192792793,"33525":0.5202702703,"33526":0.5212612613,"33527":0.5222522523,"33528":0.5232432432,"33529":0.5242342342,"33530":0.5252252252,"33531":0.5262162162,"33532":0.5272072072,"33533":0.5281981982,"33534":0.5291891892,"33535":0.5301801802,"33536":0.5311711712,"33537":0.5321621622,"33538":0.5331531532,"33539":0.5341441441,"33540":0.5351351351,"33541":0.5361261261,"33542":0.5371171171,"33543":0.5381081081,"33544":0.5390990991,"33545":0.5400900901,"33546":0.5410810811,"33547":0.5420720721,"33548":0.5430630631,"33549":0.5440540541,"33550":0.545045045,"33551":0.546036036,"33552":0.547027027,"33553":0.548018018,"33554":0.549009009,"33555":0.55,"33556":0.550990991,"33557":0.551981982,"33558":0.552972973,"33559":0.553963964,"33560":0.554954955,"33561":0.5559459459,"33562":0.5569369369,"33563":0.5579279279,"33564":0.5589189189,"33565":0.5599099099,"33566":0.5609009009,"33567":0.5618918919,"33568":0.5628828829,"33569":0.5638738739,"33570":0.5648648649,"33571":0.5658558559,"33572":0.5668468468,"33573":0.5678378378,"33574":0.5688288288,"33575":0.5698198198,"33576":0.5708108108,"33577":0.5718018018,"33578":0.5727927928,"33579":0.5737837838,"33580":0.5747747748,"33581":0.5757657658,"33582":0.5767567568,"33583":0.5777477477,"33584":0.5787387387,"33585":0.5797297297,"33586":0.5807207207,"33587":0.5817117117,"33588":0.5827027027,"33589":0.5836936937,"33590":0.5846846847,"33591":0.5856756757,"33592":0.5866666667,"33593":0.5876576577,"33594":0.5886486486,"33595":0.5896396396,"33596":0.5906306306,"33597":0.5916216216,"33598":0.5926126126,"33599":0.5936036036,"33600":0.5945945946,"33601":0.5955855856,"33602":0.5965765766,"33603":0.5975675676,"33604":0.5985585586,"33605":0.5995495495,"33606":0.6005405405,"33607":0.6015315315,"33608":0.6025225225,"33609":0.6035135135,"33610":0.6045045045,"33611":0.6054954955,"33612":0.6064864865,"33613":0.6074774775,"33614":0.6084684685,"33615":0.6094594595,"33616":0.6104504505,"33617":0.6114414414,"33618":0.6124324324,"33619":0.6134234234,"33620":0.6144144144,"33621":0.6154054054,"33622":0.6163963964,"33623":0.6173873874,"33624":0.6183783784,"33625":0.6193693694,"33626":0.6203603604,"33627":0.6213513514,"33628":0.6223423423,"33629":0.6233333333,"33630":0.6243243243,"33631":0.6253153153,"33632":0.6263063063,"33633":0.6272972973,"33634":0.6282882883,"33635":0.6292792793,"33636":0.6302702703,"33637":0.6312612613,"33638":0.6322522523,"33639":0.6332432432,"33640":0.6342342342,"33641":0.6352252252,"33642":0.6362162162,"33643":0.6372072072,"33644":0.6381981982,"33645":0.6391891892,"33646":0.6401801802,"33647":0.6411711712,"33648":0.6421621622,"33649":0.6431531532,"33650":0.6441441441,"33651":0.6451351351,"33652":0.6461261261,"33653":0.6471171171,"33654":0.6481081081,"33655":0.6490990991,"33656":0.6500900901,"33657":0.6510810811,"33658":0.6520720721,"33659":0.6530630631,"33660":0.6540540541,"33661":0.655045045,"33662":0.656036036,"33663":0.657027027,"33664":0.658018018,"33665":0.659009009,"33666":0.66,"33667":0.660990991,"33668":0.661981982,"33669":0.662972973,"33670":0.663963964,"33671":0.664954955,"33672":0.6659459459,"33673":0.6669369369,"33674":0.6679279279,"33675":0.6689189189,"33676":0.6699099099,"33677":0.6709009009,"33678":0.6718918919,"33679":0.6728828829,"33680":0.6738738739,"33681":0.6748648649,"33682":0.6758558559,"33683":0.6768468468,"33684":0.6778378378,"33685":0.6788288288,"33686":0.6798198198,"33687":0.6808108108,"33688":0.6818018018,"33689":0.6827927928,"33690":0.6837837838,"33691":0.6847747748,"33692":0.6857657658,"33693":0.6867567568,"33694":0.6877477477,"33695":0.6887387387,"33696":0.6897297297,"33697":0.6907207207,"33698":0.6917117117,"33699":0.6927027027,"33700":0.6936936937,"33701":0.6946846847,"33702":0.6956756757,"33703":0.6966666667,"33704":0.6976576577,"33705":0.6986486486,"33706":0.6996396396,"33707":0.7006306306,"33708":0.7016216216,"33709":0.7026126126,"33710":0.7036036036,"33711":0.7045945946,"33712":0.7055855856,"33713":0.7065765766,"33714":0.7075675676,"33715":0.7085585586,"33716":0.7095495495,"33717":0.7105405405,"33718":0.7115315315,"33719":0.7125225225,"33720":0.7135135135,"33721":0.7145045045,"33722":0.7154954955,"33723":0.7164864865,"33724":0.7174774775,"33725":0.7184684685,"33726":0.7194594595,"33727":0.7204504505,"33728":0.7214414414,"33729":0.7224324324,"33730":0.7234234234,"33731":0.7244144144,"33732":0.7254054054,"33733":0.7263963964,"33734":0.7273873874,"33735":0.7283783784,"33736":0.7293693694,"33737":0.7303603604,"33738":0.7313513514,"33739":0.7323423423,"33740":0.7333333333,"33741":0.7343243243,"33742":0.7353153153,"33743":0.7363063063,"33744":0.7372972973,"33745":0.7382882883,"33746":0.7392792793,"33747":0.7402702703,"33748":0.7412612613,"33749":0.7422522523,"33750":0.7432432432,"33751":0.7442342342,"33752":0.7452252252,"33753":0.7462162162,"33754":0.7472072072,"33755":0.7481981982,"33756":0.7491891892,"33757":0.7501801802,"33758":0.7511711712,"33759":0.7521621622,"33760":0.7531531532,"33761":0.7541441441,"33762":0.7551351351,"33763":0.7561261261,"33764":0.7571171171,"33765":0.7581081081,"33766":0.7590990991,"33767":0.7600900901,"33768":0.7610810811,"33769":0.7620720721,"33770":0.7630630631,"33771":0.7640540541,"33772":0.765045045,"33773":0.766036036,"33774":0.767027027,"33775":0.768018018,"33776":0.769009009,"33777":0.77,"33778":0.770990991,"33779":0.771981982,"33780":0.772972973,"33781":0.773963964,"33782":0.774954955,"33783":0.7759459459,"33784":0.7769369369,"33785":0.7779279279,"33786":0.7789189189,"33787":0.7799099099,"33788":0.7809009009,"33789":0.7818918919,"33790":0.7828828829,"33791":0.7838738739,"33792":0.7848648649,"33793":0.7858558559,"33794":0.7868468468,"33795":0.7878378378,"33796":0.7888288288,"33797":0.7898198198,"33798":0.7908108108,"33799":0.7918018018,"33800":0.7927927928,"33801":0.7937837838,"33802":0.7947747748,"33803":0.7957657658,"33804":0.7967567568,"33805":0.7977477477,"33806":0.7987387387,"33807":0.7997297297,"33808":0.8007207207,"33809":0.8017117117,"33810":0.8027027027,"33811":0.8036936937,"33812":0.8046846847,"33813":0.8056756757,"33814":0.8066666667,"33815":0.8076576577,"33816":0.8086486486,"33817":0.8096396396,"33818":0.8106306306,"33819":0.8116216216,"33820":0.8126126126,"33821":0.8136036036,"33822":0.8145945946,"33823":0.8155855856,"33824":0.8165765766,"33825":0.8175675676,"33826":0.8185585586,"33827":0.8195495495,"33828":0.8205405405,"33829":0.8215315315,"33830":0.8225225225,"33831":0.8235135135,"33832":0.8245045045,"33833":0.8254954955,"33834":0.8264864865,"33835":0.8274774775,"33836":0.8284684685,"33837":0.8294594595,"33838":0.8304504505,"33839":0.8314414414,"33840":0.8324324324,"33841":0.8334234234,"33842":0.8344144144,"33843":0.8354054054,"33844":0.8363963964,"33845":0.8373873874,"33846":0.8383783784,"33847":0.8393693694,"33848":0.8403603604,"33849":0.8413513514,"33850":0.8423423423,"33851":0.8433333333,"33852":0.8443243243,"33853":0.8453153153,"33854":0.8463063063,"33855":0.8472972973,"33856":0.8482882883,"33857":0.8492792793,"33858":0.8502702703,"33859":0.8512612613,"33860":0.8522522523,"33861":0.8532432432,"33862":0.8542342342,"33863":0.8552252252,"33864":0.8562162162,"33865":0.8572072072,"33866":0.8581981982,"33867":0.8591891892,"33868":0.8601801802,"33869":0.8611711712,"33870":0.8621621622,"33871":0.8631531532,"33872":0.8641441441,"33873":0.8651351351,"33874":0.8661261261,"33875":0.8671171171,"33876":0.8681081081,"33877":0.8690990991,"33878":0.8700900901,"33879":0.8710810811,"33880":0.8720720721,"33881":0.8730630631,"33882":0.8740540541,"33883":0.875045045,"33884":0.876036036,"33885":0.877027027,"33886":0.878018018,"33887":0.879009009,"33888":0.88,"33889":0.880990991,"33890":0.881981982,"33891":0.882972973,"33892":0.883963964,"33893":0.884954955,"33894":0.8859459459,"33895":0.8869369369,"33896":0.8879279279,"33897":0.8889189189,"33898":0.8899099099,"33899":0.8909009009,"33900":0.8918918919,"33901":0.8928828829,"33902":0.8938738739,"33903":0.8948648649,"33904":0.8958558559,"33905":0.8968468468,"33906":0.8978378378,"33907":0.8988288288,"33908":0.8998198198,"33909":0.9008108108,"33910":0.9018018018,"33911":0.9027927928,"33912":0.9037837838,"33913":0.9047747748,"33914":0.9057657658,"33915":0.9067567568,"33916":0.9077477477,"33917":0.9087387387,"33918":0.9097297297,"33919":0.9107207207,"33920":0.9117117117,"33921":0.9127027027,"33922":0.9136936937,"33923":0.9146846847,"33924":0.9156756757,"33925":0.9166666667,"33926":0.9176576577,"33927":0.9186486486,"33928":0.9196396396,"33929":0.9206306306,"33930":0.9216216216,"33931":0.9226126126,"33932":0.9236036036,"33933":0.9245945946,"33934":0.9255855856,"33935":0.9265765766,"33936":0.9275675676,"33937":0.9285585586,"33938":0.9295495495,"33939":0.9305405405,"33940":0.9315315315,"33941":0.9325225225,"33942":0.9335135135,"33943":0.9345045045,"33944":0.9354954955,"33945":0.9364864865,"33946":0.9374774775,"33947":0.9384684685,"33948":0.9394594595,"33949":0.9404504505,"33950":0.9414414414,"33951":0.9424324324,"33952":0.9434234234,"33953":0.9444144144,"33954":0.9454054054,"33955":0.9463963964,"33956":0.9473873874,"33957":0.9483783784,"33958":0.9493693694,"33959":0.9503603604,"33960":0.9513513514,"33961":0.9523423423,"33962":0.9533333333,"33963":0.9543243243,"33964":0.9553153153,"33965":0.9563063063,"33966":0.9572972973,"33967":0.9582882883,"33968":0.9592792793,"33969":0.9602702703,"33970":0.9612612613,"33971":0.9622522523,"33972":0.9632432432,"33973":0.9642342342,"33974":0.9652252252,"33975":0.9662162162,"33976":0.9672072072,"33977":0.9681981982,"33978":0.9691891892,"33979":0.9701801802,"33980":0.9711711712,"33981":0.9721621622,"33982":0.9731531532,"33983":0.9741441441,"33984":0.9751351351,"33985":0.9761261261,"33986":0.9771171171,"33987":0.9781081081,"33988":0.9790990991,"33989":0.9800900901,"33990":0.9810810811,"33991":0.9820720721,"33992":0.9830630631,"33993":0.9840540541,"33994":0.985045045,"33995":0.986036036,"33996":0.987027027,"33997":0.988018018,"33998":0.989009009,"33999":0.99,"34000":0.0,"34001":0.000990991,"34002":0.001981982,"34003":0.002972973,"34004":0.003963964,"34005":0.004954955,"34006":0.0059459459,"34007":0.0069369369,"34008":0.0079279279,"34009":0.0089189189,"34010":0.0099099099,"34011":0.0109009009,"34012":0.0118918919,"34013":0.0128828829,"34014":0.0138738739,"34015":0.0148648649,"34016":0.0158558559,"34017":0.0168468468,"34018":0.0178378378,"34019":0.0188288288,"34020":0.0198198198,"34021":0.0208108108,"34022":0.0218018018,"34023":0.0227927928,"34024":0.0237837838,"34025":0.0247747748,"34026":0.0257657658,"34027":0.0267567568,"34028":0.0277477477,"34029":0.0287387387,"34030":0.0297297297,"34031":0.0307207207,"34032":0.0317117117,"34033":0.0327027027,"34034":0.0336936937,"34035":0.0346846847,"34036":0.0356756757,"34037":0.0366666667,"34038":0.0376576577,"34039":0.0386486486,"34040":0.0396396396,"34041":0.0406306306,"34042":0.0416216216,"34043":0.0426126126,"34044":0.0436036036,"34045":0.0445945946,"34046":0.0455855856,"34047":0.0465765766,"34048":0.0475675676,"34049":0.0485585586,"34050":0.0495495495,"34051":0.0505405405,"34052":0.0515315315,"34053":0.0525225225,"34054":0.0535135135,"34055":0.0545045045,"34056":0.0554954955,"34057":0.0564864865,"34058":0.0574774775,"34059":0.0584684685,"34060":0.0594594595,"34061":0.0604504505,"34062":0.0614414414,"34063":0.0624324324,"34064":0.0634234234,"34065":0.0644144144,"34066":0.0654054054,"34067":0.0663963964,"34068":0.0673873874,"34069":0.0683783784,"34070":0.0693693694,"34071":0.0703603604,"34072":0.0713513514,"34073":0.0723423423,"34074":0.0733333333,"34075":0.0743243243,"34076":0.0753153153,"34077":0.0763063063,"34078":0.0772972973,"34079":0.0782882883,"34080":0.0792792793,"34081":0.0802702703,"34082":0.0812612613,"34083":0.0822522523,"34084":0.0832432432,"34085":0.0842342342,"34086":0.0852252252,"34087":0.0862162162,"34088":0.0872072072,"34089":0.0881981982,"34090":0.0891891892,"34091":0.0901801802,"34092":0.0911711712,"34093":0.0921621622,"34094":0.0931531532,"34095":0.0941441441,"34096":0.0951351351,"34097":0.0961261261,"34098":0.0971171171,"34099":0.0981081081,"34100":0.0990990991,"34101":0.1000900901,"34102":0.1010810811,"34103":0.1020720721,"34104":0.1030630631,"34105":0.1040540541,"34106":0.105045045,"34107":0.106036036,"34108":0.107027027,"34109":0.108018018,"34110":0.109009009,"34111":0.11,"34112":0.110990991,"34113":0.111981982,"34114":0.112972973,"34115":0.113963964,"34116":0.114954955,"34117":0.1159459459,"34118":0.1169369369,"34119":0.1179279279,"34120":0.1189189189,"34121":0.1199099099,"34122":0.1209009009,"34123":0.1218918919,"34124":0.1228828829,"34125":0.1238738739,"34126":0.1248648649,"34127":0.1258558559,"34128":0.1268468468,"34129":0.1278378378,"34130":0.1288288288,"34131":0.1298198198,"34132":0.1308108108,"34133":0.1318018018,"34134":0.1327927928,"34135":0.1337837838,"34136":0.1347747748,"34137":0.1357657658,"34138":0.1367567568,"34139":0.1377477477,"34140":0.1387387387,"34141":0.1397297297,"34142":0.1407207207,"34143":0.1417117117,"34144":0.1427027027,"34145":0.1436936937,"34146":0.1446846847,"34147":0.1456756757,"34148":0.1466666667,"34149":0.1476576577,"34150":0.1486486486,"34151":0.1496396396,"34152":0.1506306306,"34153":0.1516216216,"34154":0.1526126126,"34155":0.1536036036,"34156":0.1545945946,"34157":0.1555855856,"34158":0.1565765766,"34159":0.1575675676,"34160":0.1585585586,"34161":0.1595495495,"34162":0.1605405405,"34163":0.1615315315,"34164":0.1625225225,"34165":0.1635135135,"34166":0.1645045045,"34167":0.1654954955,"34168":0.1664864865,"34169":0.1674774775,"34170":0.1684684685,"34171":0.1694594595,"34172":0.1704504505,"34173":0.1714414414,"34174":0.1724324324,"34175":0.1734234234,"34176":0.1744144144,"34177":0.1754054054,"34178":0.1763963964,"34179":0.1773873874,"34180":0.1783783784,"34181":0.1793693694,"34182":0.1803603604,"34183":0.1813513514,"34184":0.1823423423,"34185":0.1833333333,"34186":0.1843243243,"34187":0.1853153153,"34188":0.1863063063,"34189":0.1872972973,"34190":0.1882882883,"34191":0.1892792793,"34192":0.1902702703,"34193":0.1912612613,"34194":0.1922522523,"34195":0.1932432432,"34196":0.1942342342,"34197":0.1952252252,"34198":0.1962162162,"34199":0.1972072072,"34200":0.1981981982,"34201":0.1991891892,"34202":0.2001801802,"34203":0.2011711712,"34204":0.2021621622,"34205":0.2031531532,"34206":0.2041441441,"34207":0.2051351351,"34208":0.2061261261,"34209":0.2071171171,"34210":0.2081081081,"34211":0.2090990991,"34212":0.2100900901,"34213":0.2110810811,"34214":0.2120720721,"34215":0.2130630631,"34216":0.2140540541,"34217":0.215045045,"34218":0.216036036,"34219":0.217027027,"34220":0.218018018,"34221":0.219009009,"34222":0.22,"34223":0.220990991,"34224":0.221981982,"34225":0.222972973,"34226":0.223963964,"34227":0.224954955,"34228":0.2259459459,"34229":0.2269369369,"34230":0.2279279279,"34231":0.2289189189,"34232":0.2299099099,"34233":0.2309009009,"34234":0.2318918919,"34235":0.2328828829,"34236":0.2338738739,"34237":0.2348648649,"34238":0.2358558559,"34239":0.2368468468,"34240":0.2378378378,"34241":0.2388288288,"34242":0.2398198198,"34243":0.2408108108,"34244":0.2418018018,"34245":0.2427927928,"34246":0.2437837838,"34247":0.2447747748,"34248":0.2457657658,"34249":0.2467567568,"34250":0.2477477477,"34251":0.2487387387,"34252":0.2497297297,"34253":0.2507207207,"34254":0.2517117117,"34255":0.2527027027,"34256":0.2536936937,"34257":0.2546846847,"34258":0.2556756757,"34259":0.2566666667,"34260":0.2576576577,"34261":0.2586486486,"34262":0.2596396396,"34263":0.2606306306,"34264":0.2616216216,"34265":0.2626126126,"34266":0.2636036036,"34267":0.2645945946,"34268":0.2655855856,"34269":0.2665765766,"34270":0.2675675676,"34271":0.2685585586,"34272":0.2695495495,"34273":0.2705405405,"34274":0.2715315315,"34275":0.2725225225,"34276":0.2735135135,"34277":0.2745045045,"34278":0.2754954955,"34279":0.2764864865,"34280":0.2774774775,"34281":0.2784684685,"34282":0.2794594595,"34283":0.2804504505,"34284":0.2814414414,"34285":0.2824324324,"34286":0.2834234234,"34287":0.2844144144,"34288":0.2854054054,"34289":0.2863963964,"34290":0.2873873874,"34291":0.2883783784,"34292":0.2893693694,"34293":0.2903603604,"34294":0.2913513514,"34295":0.2923423423,"34296":0.2933333333,"34297":0.2943243243,"34298":0.2953153153,"34299":0.2963063063,"34300":0.2972972973,"34301":0.2982882883,"34302":0.2992792793,"34303":0.3002702703,"34304":0.3012612613,"34305":0.3022522523,"34306":0.3032432432,"34307":0.3042342342,"34308":0.3052252252,"34309":0.3062162162,"34310":0.3072072072,"34311":0.3081981982,"34312":0.3091891892,"34313":0.3101801802,"34314":0.3111711712,"34315":0.3121621622,"34316":0.3131531532,"34317":0.3141441441,"34318":0.3151351351,"34319":0.3161261261,"34320":0.3171171171,"34321":0.3181081081,"34322":0.3190990991,"34323":0.3200900901,"34324":0.3210810811,"34325":0.3220720721,"34326":0.3230630631,"34327":0.3240540541,"34328":0.325045045,"34329":0.326036036,"34330":0.327027027,"34331":0.328018018,"34332":0.329009009,"34333":0.33,"34334":0.330990991,"34335":0.331981982,"34336":0.332972973,"34337":0.333963964,"34338":0.334954955,"34339":0.3359459459,"34340":0.3369369369,"34341":0.3379279279,"34342":0.3389189189,"34343":0.3399099099,"34344":0.3409009009,"34345":0.3418918919,"34346":0.3428828829,"34347":0.3438738739,"34348":0.3448648649,"34349":0.3458558559,"34350":0.3468468468,"34351":0.3478378378,"34352":0.3488288288,"34353":0.3498198198,"34354":0.3508108108,"34355":0.3518018018,"34356":0.3527927928,"34357":0.3537837838,"34358":0.3547747748,"34359":0.3557657658,"34360":0.3567567568,"34361":0.3577477477,"34362":0.3587387387,"34363":0.3597297297,"34364":0.3607207207,"34365":0.3617117117,"34366":0.3627027027,"34367":0.3636936937,"34368":0.3646846847,"34369":0.3656756757,"34370":0.3666666667,"34371":0.3676576577,"34372":0.3686486486,"34373":0.3696396396,"34374":0.3706306306,"34375":0.3716216216,"34376":0.3726126126,"34377":0.3736036036,"34378":0.3745945946,"34379":0.3755855856,"34380":0.3765765766,"34381":0.3775675676,"34382":0.3785585586,"34383":0.3795495495,"34384":0.3805405405,"34385":0.3815315315,"34386":0.3825225225,"34387":0.3835135135,"34388":0.3845045045,"34389":0.3854954955,"34390":0.3864864865,"34391":0.3874774775,"34392":0.3884684685,"34393":0.3894594595,"34394":0.3904504505,"34395":0.3914414414,"34396":0.3924324324,"34397":0.3934234234,"34398":0.3944144144,"34399":0.3954054054,"34400":0.3963963964,"34401":0.3973873874,"34402":0.3983783784,"34403":0.3993693694,"34404":0.4003603604,"34405":0.4013513514,"34406":0.4023423423,"34407":0.4033333333,"34408":0.4043243243,"34409":0.4053153153,"34410":0.4063063063,"34411":0.4072972973,"34412":0.4082882883,"34413":0.4092792793,"34414":0.4102702703,"34415":0.4112612613,"34416":0.4122522523,"34417":0.4132432432,"34418":0.4142342342,"34419":0.4152252252,"34420":0.4162162162,"34421":0.4172072072,"34422":0.4181981982,"34423":0.4191891892,"34424":0.4201801802,"34425":0.4211711712,"34426":0.4221621622,"34427":0.4231531532,"34428":0.4241441441,"34429":0.4251351351,"34430":0.4261261261,"34431":0.4271171171,"34432":0.4281081081,"34433":0.4290990991,"34434":0.4300900901,"34435":0.4310810811,"34436":0.4320720721,"34437":0.4330630631,"34438":0.4340540541,"34439":0.435045045,"34440":0.436036036,"34441":0.437027027,"34442":0.438018018,"34443":0.439009009,"34444":0.44,"34445":0.440990991,"34446":0.441981982,"34447":0.442972973,"34448":0.443963964,"34449":0.444954955,"34450":0.4459459459,"34451":0.4469369369,"34452":0.4479279279,"34453":0.4489189189,"34454":0.4499099099,"34455":0.4509009009,"34456":0.4518918919,"34457":0.4528828829,"34458":0.4538738739,"34459":0.4548648649,"34460":0.4558558559,"34461":0.4568468468,"34462":0.4578378378,"34463":0.4588288288,"34464":0.4598198198,"34465":0.4608108108,"34466":0.4618018018,"34467":0.4627927928,"34468":0.4637837838,"34469":0.4647747748,"34470":0.4657657658,"34471":0.4667567568,"34472":0.4677477477,"34473":0.4687387387,"34474":0.4697297297,"34475":0.4707207207,"34476":0.4717117117,"34477":0.4727027027,"34478":0.4736936937,"34479":0.4746846847,"34480":0.4756756757,"34481":0.4766666667,"34482":0.4776576577,"34483":0.4786486486,"34484":0.4796396396,"34485":0.4806306306,"34486":0.4816216216,"34487":0.4826126126,"34488":0.4836036036,"34489":0.4845945946,"34490":0.4855855856,"34491":0.4865765766,"34492":0.4875675676,"34493":0.4885585586,"34494":0.4895495495,"34495":0.4905405405,"34496":0.4915315315,"34497":0.4925225225,"34498":0.4935135135,"34499":0.4945045045,"34500":0.4954954955,"34501":0.4964864865,"34502":0.4974774775,"34503":0.4984684685,"34504":0.4994594595,"34505":0.5004504505,"34506":0.5014414414,"34507":0.5024324324,"34508":0.5034234234,"34509":0.5044144144,"34510":0.5054054054,"34511":0.5063963964,"34512":0.5073873874,"34513":0.5083783784,"34514":0.5093693694,"34515":0.5103603604,"34516":0.5113513514,"34517":0.5123423423,"34518":0.5133333333,"34519":0.5143243243,"34520":0.5153153153,"34521":0.5163063063,"34522":0.5172972973,"34523":0.5182882883,"34524":0.5192792793,"34525":0.5202702703,"34526":0.5212612613,"34527":0.5222522523,"34528":0.5232432432,"34529":0.5242342342,"34530":0.5252252252,"34531":0.5262162162,"34532":0.5272072072,"34533":0.5281981982,"34534":0.5291891892,"34535":0.5301801802,"34536":0.5311711712,"34537":0.5321621622,"34538":0.5331531532,"34539":0.5341441441,"34540":0.5351351351,"34541":0.5361261261,"34542":0.5371171171,"34543":0.5381081081,"34544":0.5390990991,"34545":0.5400900901,"34546":0.5410810811,"34547":0.5420720721,"34548":0.5430630631,"34549":0.5440540541,"34550":0.545045045,"34551":0.546036036,"34552":0.547027027,"34553":0.548018018,"34554":0.549009009,"34555":0.55,"34556":0.550990991,"34557":0.551981982,"34558":0.552972973,"34559":0.553963964,"34560":0.554954955,"34561":0.5559459459,"34562":0.5569369369,"34563":0.5579279279,"34564":0.5589189189,"34565":0.5599099099,"34566":0.5609009009,"34567":0.5618918919,"34568":0.5628828829,"34569":0.5638738739,"34570":0.5648648649,"34571":0.5658558559,"34572":0.5668468468,"34573":0.5678378378,"34574":0.5688288288,"34575":0.5698198198,"34576":0.5708108108,"34577":0.5718018018,"34578":0.5727927928,"34579":0.5737837838,"34580":0.5747747748,"34581":0.5757657658,"34582":0.5767567568,"34583":0.5777477477,"34584":0.5787387387,"34585":0.5797297297,"34586":0.5807207207,"34587":0.5817117117,"34588":0.5827027027,"34589":0.5836936937,"34590":0.5846846847,"34591":0.5856756757,"34592":0.5866666667,"34593":0.5876576577,"34594":0.5886486486,"34595":0.5896396396,"34596":0.5906306306,"34597":0.5916216216,"34598":0.5926126126,"34599":0.5936036036,"34600":0.5945945946,"34601":0.5955855856,"34602":0.5965765766,"34603":0.5975675676,"34604":0.5985585586,"34605":0.5995495495,"34606":0.6005405405,"34607":0.6015315315,"34608":0.6025225225,"34609":0.6035135135,"34610":0.6045045045,"34611":0.6054954955,"34612":0.6064864865,"34613":0.6074774775,"34614":0.6084684685,"34615":0.6094594595,"34616":0.6104504505,"34617":0.6114414414,"34618":0.6124324324,"34619":0.6134234234,"34620":0.6144144144,"34621":0.6154054054,"34622":0.6163963964,"34623":0.6173873874,"34624":0.6183783784,"34625":0.6193693694,"34626":0.6203603604,"34627":0.6213513514,"34628":0.6223423423,"34629":0.6233333333,"34630":0.6243243243,"34631":0.6253153153,"34632":0.6263063063,"34633":0.6272972973,"34634":0.6282882883,"34635":0.6292792793,"34636":0.6302702703,"34637":0.6312612613,"34638":0.6322522523,"34639":0.6332432432,"34640":0.6342342342,"34641":0.6352252252,"34642":0.6362162162,"34643":0.6372072072,"34644":0.6381981982,"34645":0.6391891892,"34646":0.6401801802,"34647":0.6411711712,"34648":0.6421621622,"34649":0.6431531532,"34650":0.6441441441,"34651":0.6451351351,"34652":0.6461261261,"34653":0.6471171171,"34654":0.6481081081,"34655":0.6490990991,"34656":0.6500900901,"34657":0.6510810811,"34658":0.6520720721,"34659":0.6530630631,"34660":0.6540540541,"34661":0.655045045,"34662":0.656036036,"34663":0.657027027,"34664":0.658018018,"34665":0.659009009,"34666":0.66,"34667":0.660990991,"34668":0.661981982,"34669":0.662972973,"34670":0.663963964,"34671":0.664954955,"34672":0.6659459459,"34673":0.6669369369,"34674":0.6679279279,"34675":0.6689189189,"34676":0.6699099099,"34677":0.6709009009,"34678":0.6718918919,"34679":0.6728828829,"34680":0.6738738739,"34681":0.6748648649,"34682":0.6758558559,"34683":0.6768468468,"34684":0.6778378378,"34685":0.6788288288,"34686":0.6798198198,"34687":0.6808108108,"34688":0.6818018018,"34689":0.6827927928,"34690":0.6837837838,"34691":0.6847747748,"34692":0.6857657658,"34693":0.6867567568,"34694":0.6877477477,"34695":0.6887387387,"34696":0.6897297297,"34697":0.6907207207,"34698":0.6917117117,"34699":0.6927027027,"34700":0.6936936937,"34701":0.6946846847,"34702":0.6956756757,"34703":0.6966666667,"34704":0.6976576577,"34705":0.6986486486,"34706":0.6996396396,"34707":0.7006306306,"34708":0.7016216216,"34709":0.7026126126,"34710":0.7036036036,"34711":0.7045945946,"34712":0.7055855856,"34713":0.7065765766,"34714":0.7075675676,"34715":0.7085585586,"34716":0.7095495495,"34717":0.7105405405,"34718":0.7115315315,"34719":0.7125225225,"34720":0.7135135135,"34721":0.7145045045,"34722":0.7154954955,"34723":0.7164864865,"34724":0.7174774775,"34725":0.7184684685,"34726":0.7194594595,"34727":0.7204504505,"34728":0.7214414414,"34729":0.7224324324,"34730":0.7234234234,"34731":0.7244144144,"34732":0.7254054054,"34733":0.7263963964,"34734":0.7273873874,"34735":0.7283783784,"34736":0.7293693694,"34737":0.7303603604,"34738":0.7313513514,"34739":0.7323423423,"34740":0.7333333333,"34741":0.7343243243,"34742":0.7353153153,"34743":0.7363063063,"34744":0.7372972973,"34745":0.7382882883,"34746":0.7392792793,"34747":0.7402702703,"34748":0.7412612613,"34749":0.7422522523,"34750":0.7432432432,"34751":0.7442342342,"34752":0.7452252252,"34753":0.7462162162,"34754":0.7472072072,"34755":0.7481981982,"34756":0.7491891892,"34757":0.7501801802,"34758":0.7511711712,"34759":0.7521621622,"34760":0.7531531532,"34761":0.7541441441,"34762":0.7551351351,"34763":0.7561261261,"34764":0.7571171171,"34765":0.7581081081,"34766":0.7590990991,"34767":0.7600900901,"34768":0.7610810811,"34769":0.7620720721,"34770":0.7630630631,"34771":0.7640540541,"34772":0.765045045,"34773":0.766036036,"34774":0.767027027,"34775":0.768018018,"34776":0.769009009,"34777":0.77,"34778":0.770990991,"34779":0.771981982,"34780":0.772972973,"34781":0.773963964,"34782":0.774954955,"34783":0.7759459459,"34784":0.7769369369,"34785":0.7779279279,"34786":0.7789189189,"34787":0.7799099099,"34788":0.7809009009,"34789":0.7818918919,"34790":0.7828828829,"34791":0.7838738739,"34792":0.7848648649,"34793":0.7858558559,"34794":0.7868468468,"34795":0.7878378378,"34796":0.7888288288,"34797":0.7898198198,"34798":0.7908108108,"34799":0.7918018018,"34800":0.7927927928,"34801":0.7937837838,"34802":0.7947747748,"34803":0.7957657658,"34804":0.7967567568,"34805":0.7977477477,"34806":0.7987387387,"34807":0.7997297297,"34808":0.8007207207,"34809":0.8017117117,"34810":0.8027027027,"34811":0.8036936937,"34812":0.8046846847,"34813":0.8056756757,"34814":0.8066666667,"34815":0.8076576577,"34816":0.8086486486,"34817":0.8096396396,"34818":0.8106306306,"34819":0.8116216216,"34820":0.8126126126,"34821":0.8136036036,"34822":0.8145945946,"34823":0.8155855856,"34824":0.8165765766,"34825":0.8175675676,"34826":0.8185585586,"34827":0.8195495495,"34828":0.8205405405,"34829":0.8215315315,"34830":0.8225225225,"34831":0.8235135135,"34832":0.8245045045,"34833":0.8254954955,"34834":0.8264864865,"34835":0.8274774775,"34836":0.8284684685,"34837":0.8294594595,"34838":0.8304504505,"34839":0.8314414414,"34840":0.8324324324,"34841":0.8334234234,"34842":0.8344144144,"34843":0.8354054054,"34844":0.8363963964,"34845":0.8373873874,"34846":0.8383783784,"34847":0.8393693694,"34848":0.8403603604,"34849":0.8413513514,"34850":0.8423423423,"34851":0.8433333333,"34852":0.8443243243,"34853":0.8453153153,"34854":0.8463063063,"34855":0.8472972973,"34856":0.8482882883,"34857":0.8492792793,"34858":0.8502702703,"34859":0.8512612613,"34860":0.8522522523,"34861":0.8532432432,"34862":0.8542342342,"34863":0.8552252252,"34864":0.8562162162,"34865":0.8572072072,"34866":0.8581981982,"34867":0.8591891892,"34868":0.8601801802,"34869":0.8611711712,"34870":0.8621621622,"34871":0.8631531532,"34872":0.8641441441,"34873":0.8651351351,"34874":0.8661261261,"34875":0.8671171171,"34876":0.8681081081,"34877":0.8690990991,"34878":0.8700900901,"34879":0.8710810811,"34880":0.8720720721,"34881":0.8730630631,"34882":0.8740540541,"34883":0.875045045,"34884":0.876036036,"34885":0.877027027,"34886":0.878018018,"34887":0.879009009,"34888":0.88,"34889":0.880990991,"34890":0.881981982,"34891":0.882972973,"34892":0.883963964,"34893":0.884954955,"34894":0.8859459459,"34895":0.8869369369,"34896":0.8879279279,"34897":0.8889189189,"34898":0.8899099099,"34899":0.8909009009,"34900":0.8918918919,"34901":0.8928828829,"34902":0.8938738739,"34903":0.8948648649,"34904":0.8958558559,"34905":0.8968468468,"34906":0.8978378378,"34907":0.8988288288,"34908":0.8998198198,"34909":0.9008108108,"34910":0.9018018018,"34911":0.9027927928,"34912":0.9037837838,"34913":0.9047747748,"34914":0.9057657658,"34915":0.9067567568,"34916":0.9077477477,"34917":0.9087387387,"34918":0.9097297297,"34919":0.9107207207,"34920":0.9117117117,"34921":0.9127027027,"34922":0.9136936937,"34923":0.9146846847,"34924":0.9156756757,"34925":0.9166666667,"34926":0.9176576577,"34927":0.9186486486,"34928":0.9196396396,"34929":0.9206306306,"34930":0.9216216216,"34931":0.9226126126,"34932":0.9236036036,"34933":0.9245945946,"34934":0.9255855856,"34935":0.9265765766,"34936":0.9275675676,"34937":0.9285585586,"34938":0.9295495495,"34939":0.9305405405,"34940":0.9315315315,"34941":0.9325225225,"34942":0.9335135135,"34943":0.9345045045,"34944":0.9354954955,"34945":0.9364864865,"34946":0.9374774775,"34947":0.9384684685,"34948":0.9394594595,"34949":0.9404504505,"34950":0.9414414414,"34951":0.9424324324,"34952":0.9434234234,"34953":0.9444144144,"34954":0.9454054054,"34955":0.9463963964,"34956":0.9473873874,"34957":0.9483783784,"34958":0.9493693694,"34959":0.9503603604,"34960":0.9513513514,"34961":0.9523423423,"34962":0.9533333333,"34963":0.9543243243,"34964":0.9553153153,"34965":0.9563063063,"34966":0.9572972973,"34967":0.9582882883,"34968":0.9592792793,"34969":0.9602702703,"34970":0.9612612613,"34971":0.9622522523,"34972":0.9632432432,"34973":0.9642342342,"34974":0.9652252252,"34975":0.9662162162,"34976":0.9672072072,"34977":0.9681981982,"34978":0.9691891892,"34979":0.9701801802,"34980":0.9711711712,"34981":0.9721621622,"34982":0.9731531532,"34983":0.9741441441,"34984":0.9751351351,"34985":0.9761261261,"34986":0.9771171171,"34987":0.9781081081,"34988":0.9790990991,"34989":0.9800900901,"34990":0.9810810811,"34991":0.9820720721,"34992":0.9830630631,"34993":0.9840540541,"34994":0.985045045,"34995":0.986036036,"34996":0.987027027,"34997":0.988018018,"34998":0.989009009,"34999":0.99,"35000":0.0,"35001":0.000990991,"35002":0.001981982,"35003":0.002972973,"35004":0.003963964,"35005":0.004954955,"35006":0.0059459459,"35007":0.0069369369,"35008":0.0079279279,"35009":0.0089189189,"35010":0.0099099099,"35011":0.0109009009,"35012":0.0118918919,"35013":0.0128828829,"35014":0.0138738739,"35015":0.0148648649,"35016":0.0158558559,"35017":0.0168468468,"35018":0.0178378378,"35019":0.0188288288,"35020":0.0198198198,"35021":0.0208108108,"35022":0.0218018018,"35023":0.0227927928,"35024":0.0237837838,"35025":0.0247747748,"35026":0.0257657658,"35027":0.0267567568,"35028":0.0277477477,"35029":0.0287387387,"35030":0.0297297297,"35031":0.0307207207,"35032":0.0317117117,"35033":0.0327027027,"35034":0.0336936937,"35035":0.0346846847,"35036":0.0356756757,"35037":0.0366666667,"35038":0.0376576577,"35039":0.0386486486,"35040":0.0396396396,"35041":0.0406306306,"35042":0.0416216216,"35043":0.0426126126,"35044":0.0436036036,"35045":0.0445945946,"35046":0.0455855856,"35047":0.0465765766,"35048":0.0475675676,"35049":0.0485585586,"35050":0.0495495495,"35051":0.0505405405,"35052":0.0515315315,"35053":0.0525225225,"35054":0.0535135135,"35055":0.0545045045,"35056":0.0554954955,"35057":0.0564864865,"35058":0.0574774775,"35059":0.0584684685,"35060":0.0594594595,"35061":0.0604504505,"35062":0.0614414414,"35063":0.0624324324,"35064":0.0634234234,"35065":0.0644144144,"35066":0.0654054054,"35067":0.0663963964,"35068":0.0673873874,"35069":0.0683783784,"35070":0.0693693694,"35071":0.0703603604,"35072":0.0713513514,"35073":0.0723423423,"35074":0.0733333333,"35075":0.0743243243,"35076":0.0753153153,"35077":0.0763063063,"35078":0.0772972973,"35079":0.0782882883,"35080":0.0792792793,"35081":0.0802702703,"35082":0.0812612613,"35083":0.0822522523,"35084":0.0832432432,"35085":0.0842342342,"35086":0.0852252252,"35087":0.0862162162,"35088":0.0872072072,"35089":0.0881981982,"35090":0.0891891892,"35091":0.0901801802,"35092":0.0911711712,"35093":0.0921621622,"35094":0.0931531532,"35095":0.0941441441,"35096":0.0951351351,"35097":0.0961261261,"35098":0.0971171171,"35099":0.0981081081,"35100":0.0990990991,"35101":0.1000900901,"35102":0.1010810811,"35103":0.1020720721,"35104":0.1030630631,"35105":0.1040540541,"35106":0.105045045,"35107":0.106036036,"35108":0.107027027,"35109":0.108018018,"35110":0.109009009,"35111":0.11,"35112":0.110990991,"35113":0.111981982,"35114":0.112972973,"35115":0.113963964,"35116":0.114954955,"35117":0.1159459459,"35118":0.1169369369,"35119":0.1179279279,"35120":0.1189189189,"35121":0.1199099099,"35122":0.1209009009,"35123":0.1218918919,"35124":0.1228828829,"35125":0.1238738739,"35126":0.1248648649,"35127":0.1258558559,"35128":0.1268468468,"35129":0.1278378378,"35130":0.1288288288,"35131":0.1298198198,"35132":0.1308108108,"35133":0.1318018018,"35134":0.1327927928,"35135":0.1337837838,"35136":0.1347747748,"35137":0.1357657658,"35138":0.1367567568,"35139":0.1377477477,"35140":0.1387387387,"35141":0.1397297297,"35142":0.1407207207,"35143":0.1417117117,"35144":0.1427027027,"35145":0.1436936937,"35146":0.1446846847,"35147":0.1456756757,"35148":0.1466666667,"35149":0.1476576577,"35150":0.1486486486,"35151":0.1496396396,"35152":0.1506306306,"35153":0.1516216216,"35154":0.1526126126,"35155":0.1536036036,"35156":0.1545945946,"35157":0.1555855856,"35158":0.1565765766,"35159":0.1575675676,"35160":0.1585585586,"35161":0.1595495495,"35162":0.1605405405,"35163":0.1615315315,"35164":0.1625225225,"35165":0.1635135135,"35166":0.1645045045,"35167":0.1654954955,"35168":0.1664864865,"35169":0.1674774775,"35170":0.1684684685,"35171":0.1694594595,"35172":0.1704504505,"35173":0.1714414414,"35174":0.1724324324,"35175":0.1734234234,"35176":0.1744144144,"35177":0.1754054054,"35178":0.1763963964,"35179":0.1773873874,"35180":0.1783783784,"35181":0.1793693694,"35182":0.1803603604,"35183":0.1813513514,"35184":0.1823423423,"35185":0.1833333333,"35186":0.1843243243,"35187":0.1853153153,"35188":0.1863063063,"35189":0.1872972973,"35190":0.1882882883,"35191":0.1892792793,"35192":0.1902702703,"35193":0.1912612613,"35194":0.1922522523,"35195":0.1932432432,"35196":0.1942342342,"35197":0.1952252252,"35198":0.1962162162,"35199":0.1972072072,"35200":0.1981981982,"35201":0.1991891892,"35202":0.2001801802,"35203":0.2011711712,"35204":0.2021621622,"35205":0.2031531532,"35206":0.2041441441,"35207":0.2051351351,"35208":0.2061261261,"35209":0.2071171171,"35210":0.2081081081,"35211":0.2090990991,"35212":0.2100900901,"35213":0.2110810811,"35214":0.2120720721,"35215":0.2130630631,"35216":0.2140540541,"35217":0.215045045,"35218":0.216036036,"35219":0.217027027,"35220":0.218018018,"35221":0.219009009,"35222":0.22,"35223":0.220990991,"35224":0.221981982,"35225":0.222972973,"35226":0.223963964,"35227":0.224954955,"35228":0.2259459459,"35229":0.2269369369,"35230":0.2279279279,"35231":0.2289189189,"35232":0.2299099099,"35233":0.2309009009,"35234":0.2318918919,"35235":0.2328828829,"35236":0.2338738739,"35237":0.2348648649,"35238":0.2358558559,"35239":0.2368468468,"35240":0.2378378378,"35241":0.2388288288,"35242":0.2398198198,"35243":0.2408108108,"35244":0.2418018018,"35245":0.2427927928,"35246":0.2437837838,"35247":0.2447747748,"35248":0.2457657658,"35249":0.2467567568,"35250":0.2477477477,"35251":0.2487387387,"35252":0.2497297297,"35253":0.2507207207,"35254":0.2517117117,"35255":0.2527027027,"35256":0.2536936937,"35257":0.2546846847,"35258":0.2556756757,"35259":0.2566666667,"35260":0.2576576577,"35261":0.2586486486,"35262":0.2596396396,"35263":0.2606306306,"35264":0.2616216216,"35265":0.2626126126,"35266":0.2636036036,"35267":0.2645945946,"35268":0.2655855856,"35269":0.2665765766,"35270":0.2675675676,"35271":0.2685585586,"35272":0.2695495495,"35273":0.2705405405,"35274":0.2715315315,"35275":0.2725225225,"35276":0.2735135135,"35277":0.2745045045,"35278":0.2754954955,"35279":0.2764864865,"35280":0.2774774775,"35281":0.2784684685,"35282":0.2794594595,"35283":0.2804504505,"35284":0.2814414414,"35285":0.2824324324,"35286":0.2834234234,"35287":0.2844144144,"35288":0.2854054054,"35289":0.2863963964,"35290":0.2873873874,"35291":0.2883783784,"35292":0.2893693694,"35293":0.2903603604,"35294":0.2913513514,"35295":0.2923423423,"35296":0.2933333333,"35297":0.2943243243,"35298":0.2953153153,"35299":0.2963063063,"35300":0.2972972973,"35301":0.2982882883,"35302":0.2992792793,"35303":0.3002702703,"35304":0.3012612613,"35305":0.3022522523,"35306":0.3032432432,"35307":0.3042342342,"35308":0.3052252252,"35309":0.3062162162,"35310":0.3072072072,"35311":0.3081981982,"35312":0.3091891892,"35313":0.3101801802,"35314":0.3111711712,"35315":0.3121621622,"35316":0.3131531532,"35317":0.3141441441,"35318":0.3151351351,"35319":0.3161261261,"35320":0.3171171171,"35321":0.3181081081,"35322":0.3190990991,"35323":0.3200900901,"35324":0.3210810811,"35325":0.3220720721,"35326":0.3230630631,"35327":0.3240540541,"35328":0.325045045,"35329":0.326036036,"35330":0.327027027,"35331":0.328018018,"35332":0.329009009,"35333":0.33,"35334":0.330990991,"35335":0.331981982,"35336":0.332972973,"35337":0.333963964,"35338":0.334954955,"35339":0.3359459459,"35340":0.3369369369,"35341":0.3379279279,"35342":0.3389189189,"35343":0.3399099099,"35344":0.3409009009,"35345":0.3418918919,"35346":0.3428828829,"35347":0.3438738739,"35348":0.3448648649,"35349":0.3458558559,"35350":0.3468468468,"35351":0.3478378378,"35352":0.3488288288,"35353":0.3498198198,"35354":0.3508108108,"35355":0.3518018018,"35356":0.3527927928,"35357":0.3537837838,"35358":0.3547747748,"35359":0.3557657658,"35360":0.3567567568,"35361":0.3577477477,"35362":0.3587387387,"35363":0.3597297297,"35364":0.3607207207,"35365":0.3617117117,"35366":0.3627027027,"35367":0.3636936937,"35368":0.3646846847,"35369":0.3656756757,"35370":0.3666666667,"35371":0.3676576577,"35372":0.3686486486,"35373":0.3696396396,"35374":0.3706306306,"35375":0.3716216216,"35376":0.3726126126,"35377":0.3736036036,"35378":0.3745945946,"35379":0.3755855856,"35380":0.3765765766,"35381":0.3775675676,"35382":0.3785585586,"35383":0.3795495495,"35384":0.3805405405,"35385":0.3815315315,"35386":0.3825225225,"35387":0.3835135135,"35388":0.3845045045,"35389":0.3854954955,"35390":0.3864864865,"35391":0.3874774775,"35392":0.3884684685,"35393":0.3894594595,"35394":0.3904504505,"35395":0.3914414414,"35396":0.3924324324,"35397":0.3934234234,"35398":0.3944144144,"35399":0.3954054054,"35400":0.3963963964,"35401":0.3973873874,"35402":0.3983783784,"35403":0.3993693694,"35404":0.4003603604,"35405":0.4013513514,"35406":0.4023423423,"35407":0.4033333333,"35408":0.4043243243,"35409":0.4053153153,"35410":0.4063063063,"35411":0.4072972973,"35412":0.4082882883,"35413":0.4092792793,"35414":0.4102702703,"35415":0.4112612613,"35416":0.4122522523,"35417":0.4132432432,"35418":0.4142342342,"35419":0.4152252252,"35420":0.4162162162,"35421":0.4172072072,"35422":0.4181981982,"35423":0.4191891892,"35424":0.4201801802,"35425":0.4211711712,"35426":0.4221621622,"35427":0.4231531532,"35428":0.4241441441,"35429":0.4251351351,"35430":0.4261261261,"35431":0.4271171171,"35432":0.4281081081,"35433":0.4290990991,"35434":0.4300900901,"35435":0.4310810811,"35436":0.4320720721,"35437":0.4330630631,"35438":0.4340540541,"35439":0.435045045,"35440":0.436036036,"35441":0.437027027,"35442":0.438018018,"35443":0.439009009,"35444":0.44,"35445":0.440990991,"35446":0.441981982,"35447":0.442972973,"35448":0.443963964,"35449":0.444954955,"35450":0.4459459459,"35451":0.4469369369,"35452":0.4479279279,"35453":0.4489189189,"35454":0.4499099099,"35455":0.4509009009,"35456":0.4518918919,"35457":0.4528828829,"35458":0.4538738739,"35459":0.4548648649,"35460":0.4558558559,"35461":0.4568468468,"35462":0.4578378378,"35463":0.4588288288,"35464":0.4598198198,"35465":0.4608108108,"35466":0.4618018018,"35467":0.4627927928,"35468":0.4637837838,"35469":0.4647747748,"35470":0.4657657658,"35471":0.4667567568,"35472":0.4677477477,"35473":0.4687387387,"35474":0.4697297297,"35475":0.4707207207,"35476":0.4717117117,"35477":0.4727027027,"35478":0.4736936937,"35479":0.4746846847,"35480":0.4756756757,"35481":0.4766666667,"35482":0.4776576577,"35483":0.4786486486,"35484":0.4796396396,"35485":0.4806306306,"35486":0.4816216216,"35487":0.4826126126,"35488":0.4836036036,"35489":0.4845945946,"35490":0.4855855856,"35491":0.4865765766,"35492":0.4875675676,"35493":0.4885585586,"35494":0.4895495495,"35495":0.4905405405,"35496":0.4915315315,"35497":0.4925225225,"35498":0.4935135135,"35499":0.4945045045,"35500":0.4954954955,"35501":0.4964864865,"35502":0.4974774775,"35503":0.4984684685,"35504":0.4994594595,"35505":0.5004504505,"35506":0.5014414414,"35507":0.5024324324,"35508":0.5034234234,"35509":0.5044144144,"35510":0.5054054054,"35511":0.5063963964,"35512":0.5073873874,"35513":0.5083783784,"35514":0.5093693694,"35515":0.5103603604,"35516":0.5113513514,"35517":0.5123423423,"35518":0.5133333333,"35519":0.5143243243,"35520":0.5153153153,"35521":0.5163063063,"35522":0.5172972973,"35523":0.5182882883,"35524":0.5192792793,"35525":0.5202702703,"35526":0.5212612613,"35527":0.5222522523,"35528":0.5232432432,"35529":0.5242342342,"35530":0.5252252252,"35531":0.5262162162,"35532":0.5272072072,"35533":0.5281981982,"35534":0.5291891892,"35535":0.5301801802,"35536":0.5311711712,"35537":0.5321621622,"35538":0.5331531532,"35539":0.5341441441,"35540":0.5351351351,"35541":0.5361261261,"35542":0.5371171171,"35543":0.5381081081,"35544":0.5390990991,"35545":0.5400900901,"35546":0.5410810811,"35547":0.5420720721,"35548":0.5430630631,"35549":0.5440540541,"35550":0.545045045,"35551":0.546036036,"35552":0.547027027,"35553":0.548018018,"35554":0.549009009,"35555":0.55,"35556":0.550990991,"35557":0.551981982,"35558":0.552972973,"35559":0.553963964,"35560":0.554954955,"35561":0.5559459459,"35562":0.5569369369,"35563":0.5579279279,"35564":0.5589189189,"35565":0.5599099099,"35566":0.5609009009,"35567":0.5618918919,"35568":0.5628828829,"35569":0.5638738739,"35570":0.5648648649,"35571":0.5658558559,"35572":0.5668468468,"35573":0.5678378378,"35574":0.5688288288,"35575":0.5698198198,"35576":0.5708108108,"35577":0.5718018018,"35578":0.5727927928,"35579":0.5737837838,"35580":0.5747747748,"35581":0.5757657658,"35582":0.5767567568,"35583":0.5777477477,"35584":0.5787387387,"35585":0.5797297297,"35586":0.5807207207,"35587":0.5817117117,"35588":0.5827027027,"35589":0.5836936937,"35590":0.5846846847,"35591":0.5856756757,"35592":0.5866666667,"35593":0.5876576577,"35594":0.5886486486,"35595":0.5896396396,"35596":0.5906306306,"35597":0.5916216216,"35598":0.5926126126,"35599":0.5936036036,"35600":0.5945945946,"35601":0.5955855856,"35602":0.5965765766,"35603":0.5975675676,"35604":0.5985585586,"35605":0.5995495495,"35606":0.6005405405,"35607":0.6015315315,"35608":0.6025225225,"35609":0.6035135135,"35610":0.6045045045,"35611":0.6054954955,"35612":0.6064864865,"35613":0.6074774775,"35614":0.6084684685,"35615":0.6094594595,"35616":0.6104504505,"35617":0.6114414414,"35618":0.6124324324,"35619":0.6134234234,"35620":0.6144144144,"35621":0.6154054054,"35622":0.6163963964,"35623":0.6173873874,"35624":0.6183783784,"35625":0.6193693694,"35626":0.6203603604,"35627":0.6213513514,"35628":0.6223423423,"35629":0.6233333333,"35630":0.6243243243,"35631":0.6253153153,"35632":0.6263063063,"35633":0.6272972973,"35634":0.6282882883,"35635":0.6292792793,"35636":0.6302702703,"35637":0.6312612613,"35638":0.6322522523,"35639":0.6332432432,"35640":0.6342342342,"35641":0.6352252252,"35642":0.6362162162,"35643":0.6372072072,"35644":0.6381981982,"35645":0.6391891892,"35646":0.6401801802,"35647":0.6411711712,"35648":0.6421621622,"35649":0.6431531532,"35650":0.6441441441,"35651":0.6451351351,"35652":0.6461261261,"35653":0.6471171171,"35654":0.6481081081,"35655":0.6490990991,"35656":0.6500900901,"35657":0.6510810811,"35658":0.6520720721,"35659":0.6530630631,"35660":0.6540540541,"35661":0.655045045,"35662":0.656036036,"35663":0.657027027,"35664":0.658018018,"35665":0.659009009,"35666":0.66,"35667":0.660990991,"35668":0.661981982,"35669":0.662972973,"35670":0.663963964,"35671":0.664954955,"35672":0.6659459459,"35673":0.6669369369,"35674":0.6679279279,"35675":0.6689189189,"35676":0.6699099099,"35677":0.6709009009,"35678":0.6718918919,"35679":0.6728828829,"35680":0.6738738739,"35681":0.6748648649,"35682":0.6758558559,"35683":0.6768468468,"35684":0.6778378378,"35685":0.6788288288,"35686":0.6798198198,"35687":0.6808108108,"35688":0.6818018018,"35689":0.6827927928,"35690":0.6837837838,"35691":0.6847747748,"35692":0.6857657658,"35693":0.6867567568,"35694":0.6877477477,"35695":0.6887387387,"35696":0.6897297297,"35697":0.6907207207,"35698":0.6917117117,"35699":0.6927027027,"35700":0.6936936937,"35701":0.6946846847,"35702":0.6956756757,"35703":0.6966666667,"35704":0.6976576577,"35705":0.6986486486,"35706":0.6996396396,"35707":0.7006306306,"35708":0.7016216216,"35709":0.7026126126,"35710":0.7036036036,"35711":0.7045945946,"35712":0.7055855856,"35713":0.7065765766,"35714":0.7075675676,"35715":0.7085585586,"35716":0.7095495495,"35717":0.7105405405,"35718":0.7115315315,"35719":0.7125225225,"35720":0.7135135135,"35721":0.7145045045,"35722":0.7154954955,"35723":0.7164864865,"35724":0.7174774775,"35725":0.7184684685,"35726":0.7194594595,"35727":0.7204504505,"35728":0.7214414414,"35729":0.7224324324,"35730":0.7234234234,"35731":0.7244144144,"35732":0.7254054054,"35733":0.7263963964,"35734":0.7273873874,"35735":0.7283783784,"35736":0.7293693694,"35737":0.7303603604,"35738":0.7313513514,"35739":0.7323423423,"35740":0.7333333333,"35741":0.7343243243,"35742":0.7353153153,"35743":0.7363063063,"35744":0.7372972973,"35745":0.7382882883,"35746":0.7392792793,"35747":0.7402702703,"35748":0.7412612613,"35749":0.7422522523,"35750":0.7432432432,"35751":0.7442342342,"35752":0.7452252252,"35753":0.7462162162,"35754":0.7472072072,"35755":0.7481981982,"35756":0.7491891892,"35757":0.7501801802,"35758":0.7511711712,"35759":0.7521621622,"35760":0.7531531532,"35761":0.7541441441,"35762":0.7551351351,"35763":0.7561261261,"35764":0.7571171171,"35765":0.7581081081,"35766":0.7590990991,"35767":0.7600900901,"35768":0.7610810811,"35769":0.7620720721,"35770":0.7630630631,"35771":0.7640540541,"35772":0.765045045,"35773":0.766036036,"35774":0.767027027,"35775":0.768018018,"35776":0.769009009,"35777":0.77,"35778":0.770990991,"35779":0.771981982,"35780":0.772972973,"35781":0.773963964,"35782":0.774954955,"35783":0.7759459459,"35784":0.7769369369,"35785":0.7779279279,"35786":0.7789189189,"35787":0.7799099099,"35788":0.7809009009,"35789":0.7818918919,"35790":0.7828828829,"35791":0.7838738739,"35792":0.7848648649,"35793":0.7858558559,"35794":0.7868468468,"35795":0.7878378378,"35796":0.7888288288,"35797":0.7898198198,"35798":0.7908108108,"35799":0.7918018018,"35800":0.7927927928,"35801":0.7937837838,"35802":0.7947747748,"35803":0.7957657658,"35804":0.7967567568,"35805":0.7977477477,"35806":0.7987387387,"35807":0.7997297297,"35808":0.8007207207,"35809":0.8017117117,"35810":0.8027027027,"35811":0.8036936937,"35812":0.8046846847,"35813":0.8056756757,"35814":0.8066666667,"35815":0.8076576577,"35816":0.8086486486,"35817":0.8096396396,"35818":0.8106306306,"35819":0.8116216216,"35820":0.8126126126,"35821":0.8136036036,"35822":0.8145945946,"35823":0.8155855856,"35824":0.8165765766,"35825":0.8175675676,"35826":0.8185585586,"35827":0.8195495495,"35828":0.8205405405,"35829":0.8215315315,"35830":0.8225225225,"35831":0.8235135135,"35832":0.8245045045,"35833":0.8254954955,"35834":0.8264864865,"35835":0.8274774775,"35836":0.8284684685,"35837":0.8294594595,"35838":0.8304504505,"35839":0.8314414414,"35840":0.8324324324,"35841":0.8334234234,"35842":0.8344144144,"35843":0.8354054054,"35844":0.8363963964,"35845":0.8373873874,"35846":0.8383783784,"35847":0.8393693694,"35848":0.8403603604,"35849":0.8413513514,"35850":0.8423423423,"35851":0.8433333333,"35852":0.8443243243,"35853":0.8453153153,"35854":0.8463063063,"35855":0.8472972973,"35856":0.8482882883,"35857":0.8492792793,"35858":0.8502702703,"35859":0.8512612613,"35860":0.8522522523,"35861":0.8532432432,"35862":0.8542342342,"35863":0.8552252252,"35864":0.8562162162,"35865":0.8572072072,"35866":0.8581981982,"35867":0.8591891892,"35868":0.8601801802,"35869":0.8611711712,"35870":0.8621621622,"35871":0.8631531532,"35872":0.8641441441,"35873":0.8651351351,"35874":0.8661261261,"35875":0.8671171171,"35876":0.8681081081,"35877":0.8690990991,"35878":0.8700900901,"35879":0.8710810811,"35880":0.8720720721,"35881":0.8730630631,"35882":0.8740540541,"35883":0.875045045,"35884":0.876036036,"35885":0.877027027,"35886":0.878018018,"35887":0.879009009,"35888":0.88,"35889":0.880990991,"35890":0.881981982,"35891":0.882972973,"35892":0.883963964,"35893":0.884954955,"35894":0.8859459459,"35895":0.8869369369,"35896":0.8879279279,"35897":0.8889189189,"35898":0.8899099099,"35899":0.8909009009,"35900":0.8918918919,"35901":0.8928828829,"35902":0.8938738739,"35903":0.8948648649,"35904":0.8958558559,"35905":0.8968468468,"35906":0.8978378378,"35907":0.8988288288,"35908":0.8998198198,"35909":0.9008108108,"35910":0.9018018018,"35911":0.9027927928,"35912":0.9037837838,"35913":0.9047747748,"35914":0.9057657658,"35915":0.9067567568,"35916":0.9077477477,"35917":0.9087387387,"35918":0.9097297297,"35919":0.9107207207,"35920":0.9117117117,"35921":0.9127027027,"35922":0.9136936937,"35923":0.9146846847,"35924":0.9156756757,"35925":0.9166666667,"35926":0.9176576577,"35927":0.9186486486,"35928":0.9196396396,"35929":0.9206306306,"35930":0.9216216216,"35931":0.9226126126,"35932":0.9236036036,"35933":0.9245945946,"35934":0.9255855856,"35935":0.9265765766,"35936":0.9275675676,"35937":0.9285585586,"35938":0.9295495495,"35939":0.9305405405,"35940":0.9315315315,"35941":0.9325225225,"35942":0.9335135135,"35943":0.9345045045,"35944":0.9354954955,"35945":0.9364864865,"35946":0.9374774775,"35947":0.9384684685,"35948":0.9394594595,"35949":0.9404504505,"35950":0.9414414414,"35951":0.9424324324,"35952":0.9434234234,"35953":0.9444144144,"35954":0.9454054054,"35955":0.9463963964,"35956":0.9473873874,"35957":0.9483783784,"35958":0.9493693694,"35959":0.9503603604,"35960":0.9513513514,"35961":0.9523423423,"35962":0.9533333333,"35963":0.9543243243,"35964":0.9553153153,"35965":0.9563063063,"35966":0.9572972973,"35967":0.9582882883,"35968":0.9592792793,"35969":0.9602702703,"35970":0.9612612613,"35971":0.9622522523,"35972":0.9632432432,"35973":0.9642342342,"35974":0.9652252252,"35975":0.9662162162,"35976":0.9672072072,"35977":0.9681981982,"35978":0.9691891892,"35979":0.9701801802,"35980":0.9711711712,"35981":0.9721621622,"35982":0.9731531532,"35983":0.9741441441,"35984":0.9751351351,"35985":0.9761261261,"35986":0.9771171171,"35987":0.9781081081,"35988":0.9790990991,"35989":0.9800900901,"35990":0.9810810811,"35991":0.9820720721,"35992":0.9830630631,"35993":0.9840540541,"35994":0.985045045,"35995":0.986036036,"35996":0.987027027,"35997":0.988018018,"35998":0.989009009,"35999":0.99,"36000":0.0,"36001":0.000990991,"36002":0.001981982,"36003":0.002972973,"36004":0.003963964,"36005":0.004954955,"36006":0.0059459459,"36007":0.0069369369,"36008":0.0079279279,"36009":0.0089189189,"36010":0.0099099099,"36011":0.0109009009,"36012":0.0118918919,"36013":0.0128828829,"36014":0.0138738739,"36015":0.0148648649,"36016":0.0158558559,"36017":0.0168468468,"36018":0.0178378378,"36019":0.0188288288,"36020":0.0198198198,"36021":0.0208108108,"36022":0.0218018018,"36023":0.0227927928,"36024":0.0237837838,"36025":0.0247747748,"36026":0.0257657658,"36027":0.0267567568,"36028":0.0277477477,"36029":0.0287387387,"36030":0.0297297297,"36031":0.0307207207,"36032":0.0317117117,"36033":0.0327027027,"36034":0.0336936937,"36035":0.0346846847,"36036":0.0356756757,"36037":0.0366666667,"36038":0.0376576577,"36039":0.0386486486,"36040":0.0396396396,"36041":0.0406306306,"36042":0.0416216216,"36043":0.0426126126,"36044":0.0436036036,"36045":0.0445945946,"36046":0.0455855856,"36047":0.0465765766,"36048":0.0475675676,"36049":0.0485585586,"36050":0.0495495495,"36051":0.0505405405,"36052":0.0515315315,"36053":0.0525225225,"36054":0.0535135135,"36055":0.0545045045,"36056":0.0554954955,"36057":0.0564864865,"36058":0.0574774775,"36059":0.0584684685,"36060":0.0594594595,"36061":0.0604504505,"36062":0.0614414414,"36063":0.0624324324,"36064":0.0634234234,"36065":0.0644144144,"36066":0.0654054054,"36067":0.0663963964,"36068":0.0673873874,"36069":0.0683783784,"36070":0.0693693694,"36071":0.0703603604,"36072":0.0713513514,"36073":0.0723423423,"36074":0.0733333333,"36075":0.0743243243,"36076":0.0753153153,"36077":0.0763063063,"36078":0.0772972973,"36079":0.0782882883,"36080":0.0792792793,"36081":0.0802702703,"36082":0.0812612613,"36083":0.0822522523,"36084":0.0832432432,"36085":0.0842342342,"36086":0.0852252252,"36087":0.0862162162,"36088":0.0872072072,"36089":0.0881981982,"36090":0.0891891892,"36091":0.0901801802,"36092":0.0911711712,"36093":0.0921621622,"36094":0.0931531532,"36095":0.0941441441,"36096":0.0951351351,"36097":0.0961261261,"36098":0.0971171171,"36099":0.0981081081,"36100":0.0990990991,"36101":0.1000900901,"36102":0.1010810811,"36103":0.1020720721,"36104":0.1030630631,"36105":0.1040540541,"36106":0.105045045,"36107":0.106036036,"36108":0.107027027,"36109":0.108018018,"36110":0.109009009,"36111":0.11,"36112":0.110990991,"36113":0.111981982,"36114":0.112972973,"36115":0.113963964,"36116":0.114954955,"36117":0.1159459459,"36118":0.1169369369,"36119":0.1179279279,"36120":0.1189189189,"36121":0.1199099099,"36122":0.1209009009,"36123":0.1218918919,"36124":0.1228828829,"36125":0.1238738739,"36126":0.1248648649,"36127":0.1258558559,"36128":0.1268468468,"36129":0.1278378378,"36130":0.1288288288,"36131":0.1298198198,"36132":0.1308108108,"36133":0.1318018018,"36134":0.1327927928,"36135":0.1337837838,"36136":0.1347747748,"36137":0.1357657658,"36138":0.1367567568,"36139":0.1377477477,"36140":0.1387387387,"36141":0.1397297297,"36142":0.1407207207,"36143":0.1417117117,"36144":0.1427027027,"36145":0.1436936937,"36146":0.1446846847,"36147":0.1456756757,"36148":0.1466666667,"36149":0.1476576577,"36150":0.1486486486,"36151":0.1496396396,"36152":0.1506306306,"36153":0.1516216216,"36154":0.1526126126,"36155":0.1536036036,"36156":0.1545945946,"36157":0.1555855856,"36158":0.1565765766,"36159":0.1575675676,"36160":0.1585585586,"36161":0.1595495495,"36162":0.1605405405,"36163":0.1615315315,"36164":0.1625225225,"36165":0.1635135135,"36166":0.1645045045,"36167":0.1654954955,"36168":0.1664864865,"36169":0.1674774775,"36170":0.1684684685,"36171":0.1694594595,"36172":0.1704504505,"36173":0.1714414414,"36174":0.1724324324,"36175":0.1734234234,"36176":0.1744144144,"36177":0.1754054054,"36178":0.1763963964,"36179":0.1773873874,"36180":0.1783783784,"36181":0.1793693694,"36182":0.1803603604,"36183":0.1813513514,"36184":0.1823423423,"36185":0.1833333333,"36186":0.1843243243,"36187":0.1853153153,"36188":0.1863063063,"36189":0.1872972973,"36190":0.1882882883,"36191":0.1892792793,"36192":0.1902702703,"36193":0.1912612613,"36194":0.1922522523,"36195":0.1932432432,"36196":0.1942342342,"36197":0.1952252252,"36198":0.1962162162,"36199":0.1972072072,"36200":0.1981981982,"36201":0.1991891892,"36202":0.2001801802,"36203":0.2011711712,"36204":0.2021621622,"36205":0.2031531532,"36206":0.2041441441,"36207":0.2051351351,"36208":0.2061261261,"36209":0.2071171171,"36210":0.2081081081,"36211":0.2090990991,"36212":0.2100900901,"36213":0.2110810811,"36214":0.2120720721,"36215":0.2130630631,"36216":0.2140540541,"36217":0.215045045,"36218":0.216036036,"36219":0.217027027,"36220":0.218018018,"36221":0.219009009,"36222":0.22,"36223":0.220990991,"36224":0.221981982,"36225":0.222972973,"36226":0.223963964,"36227":0.224954955,"36228":0.2259459459,"36229":0.2269369369,"36230":0.2279279279,"36231":0.2289189189,"36232":0.2299099099,"36233":0.2309009009,"36234":0.2318918919,"36235":0.2328828829,"36236":0.2338738739,"36237":0.2348648649,"36238":0.2358558559,"36239":0.2368468468,"36240":0.2378378378,"36241":0.2388288288,"36242":0.2398198198,"36243":0.2408108108,"36244":0.2418018018,"36245":0.2427927928,"36246":0.2437837838,"36247":0.2447747748,"36248":0.2457657658,"36249":0.2467567568,"36250":0.2477477477,"36251":0.2487387387,"36252":0.2497297297,"36253":0.2507207207,"36254":0.2517117117,"36255":0.2527027027,"36256":0.2536936937,"36257":0.2546846847,"36258":0.2556756757,"36259":0.2566666667,"36260":0.2576576577,"36261":0.2586486486,"36262":0.2596396396,"36263":0.2606306306,"36264":0.2616216216,"36265":0.2626126126,"36266":0.2636036036,"36267":0.2645945946,"36268":0.2655855856,"36269":0.2665765766,"36270":0.2675675676,"36271":0.2685585586,"36272":0.2695495495,"36273":0.2705405405,"36274":0.2715315315,"36275":0.2725225225,"36276":0.2735135135,"36277":0.2745045045,"36278":0.2754954955,"36279":0.2764864865,"36280":0.2774774775,"36281":0.2784684685,"36282":0.2794594595,"36283":0.2804504505,"36284":0.2814414414,"36285":0.2824324324,"36286":0.2834234234,"36287":0.2844144144,"36288":0.2854054054,"36289":0.2863963964,"36290":0.2873873874,"36291":0.2883783784,"36292":0.2893693694,"36293":0.2903603604,"36294":0.2913513514,"36295":0.2923423423,"36296":0.2933333333,"36297":0.2943243243,"36298":0.2953153153,"36299":0.2963063063,"36300":0.2972972973,"36301":0.2982882883,"36302":0.2992792793,"36303":0.3002702703,"36304":0.3012612613,"36305":0.3022522523,"36306":0.3032432432,"36307":0.3042342342,"36308":0.3052252252,"36309":0.3062162162,"36310":0.3072072072,"36311":0.3081981982,"36312":0.3091891892,"36313":0.3101801802,"36314":0.3111711712,"36315":0.3121621622,"36316":0.3131531532,"36317":0.3141441441,"36318":0.3151351351,"36319":0.3161261261,"36320":0.3171171171,"36321":0.3181081081,"36322":0.3190990991,"36323":0.3200900901,"36324":0.3210810811,"36325":0.3220720721,"36326":0.3230630631,"36327":0.3240540541,"36328":0.325045045,"36329":0.326036036,"36330":0.327027027,"36331":0.328018018,"36332":0.329009009,"36333":0.33,"36334":0.330990991,"36335":0.331981982,"36336":0.332972973,"36337":0.333963964,"36338":0.334954955,"36339":0.3359459459,"36340":0.3369369369,"36341":0.3379279279,"36342":0.3389189189,"36343":0.3399099099,"36344":0.3409009009,"36345":0.3418918919,"36346":0.3428828829,"36347":0.3438738739,"36348":0.3448648649,"36349":0.3458558559,"36350":0.3468468468,"36351":0.3478378378,"36352":0.3488288288,"36353":0.3498198198,"36354":0.3508108108,"36355":0.3518018018,"36356":0.3527927928,"36357":0.3537837838,"36358":0.3547747748,"36359":0.3557657658,"36360":0.3567567568,"36361":0.3577477477,"36362":0.3587387387,"36363":0.3597297297,"36364":0.3607207207,"36365":0.3617117117,"36366":0.3627027027,"36367":0.3636936937,"36368":0.3646846847,"36369":0.3656756757,"36370":0.3666666667,"36371":0.3676576577,"36372":0.3686486486,"36373":0.3696396396,"36374":0.3706306306,"36375":0.3716216216,"36376":0.3726126126,"36377":0.3736036036,"36378":0.3745945946,"36379":0.3755855856,"36380":0.3765765766,"36381":0.3775675676,"36382":0.3785585586,"36383":0.3795495495,"36384":0.3805405405,"36385":0.3815315315,"36386":0.3825225225,"36387":0.3835135135,"36388":0.3845045045,"36389":0.3854954955,"36390":0.3864864865,"36391":0.3874774775,"36392":0.3884684685,"36393":0.3894594595,"36394":0.3904504505,"36395":0.3914414414,"36396":0.3924324324,"36397":0.3934234234,"36398":0.3944144144,"36399":0.3954054054,"36400":0.3963963964,"36401":0.3973873874,"36402":0.3983783784,"36403":0.3993693694,"36404":0.4003603604,"36405":0.4013513514,"36406":0.4023423423,"36407":0.4033333333,"36408":0.4043243243,"36409":0.4053153153,"36410":0.4063063063,"36411":0.4072972973,"36412":0.4082882883,"36413":0.4092792793,"36414":0.4102702703,"36415":0.4112612613,"36416":0.4122522523,"36417":0.4132432432,"36418":0.4142342342,"36419":0.4152252252,"36420":0.4162162162,"36421":0.4172072072,"36422":0.4181981982,"36423":0.4191891892,"36424":0.4201801802,"36425":0.4211711712,"36426":0.4221621622,"36427":0.4231531532,"36428":0.4241441441,"36429":0.4251351351,"36430":0.4261261261,"36431":0.4271171171,"36432":0.4281081081,"36433":0.4290990991,"36434":0.4300900901,"36435":0.4310810811,"36436":0.4320720721,"36437":0.4330630631,"36438":0.4340540541,"36439":0.435045045,"36440":0.436036036,"36441":0.437027027,"36442":0.438018018,"36443":0.439009009,"36444":0.44,"36445":0.440990991,"36446":0.441981982,"36447":0.442972973,"36448":0.443963964,"36449":0.444954955,"36450":0.4459459459,"36451":0.4469369369,"36452":0.4479279279,"36453":0.4489189189,"36454":0.4499099099,"36455":0.4509009009,"36456":0.4518918919,"36457":0.4528828829,"36458":0.4538738739,"36459":0.4548648649,"36460":0.4558558559,"36461":0.4568468468,"36462":0.4578378378,"36463":0.4588288288,"36464":0.4598198198,"36465":0.4608108108,"36466":0.4618018018,"36467":0.4627927928,"36468":0.4637837838,"36469":0.4647747748,"36470":0.4657657658,"36471":0.4667567568,"36472":0.4677477477,"36473":0.4687387387,"36474":0.4697297297,"36475":0.4707207207,"36476":0.4717117117,"36477":0.4727027027,"36478":0.4736936937,"36479":0.4746846847,"36480":0.4756756757,"36481":0.4766666667,"36482":0.4776576577,"36483":0.4786486486,"36484":0.4796396396,"36485":0.4806306306,"36486":0.4816216216,"36487":0.4826126126,"36488":0.4836036036,"36489":0.4845945946,"36490":0.4855855856,"36491":0.4865765766,"36492":0.4875675676,"36493":0.4885585586,"36494":0.4895495495,"36495":0.4905405405,"36496":0.4915315315,"36497":0.4925225225,"36498":0.4935135135,"36499":0.4945045045,"36500":0.4954954955,"36501":0.4964864865,"36502":0.4974774775,"36503":0.4984684685,"36504":0.4994594595,"36505":0.5004504505,"36506":0.5014414414,"36507":0.5024324324,"36508":0.5034234234,"36509":0.5044144144,"36510":0.5054054054,"36511":0.5063963964,"36512":0.5073873874,"36513":0.5083783784,"36514":0.5093693694,"36515":0.5103603604,"36516":0.5113513514,"36517":0.5123423423,"36518":0.5133333333,"36519":0.5143243243,"36520":0.5153153153,"36521":0.5163063063,"36522":0.5172972973,"36523":0.5182882883,"36524":0.5192792793,"36525":0.5202702703,"36526":0.5212612613,"36527":0.5222522523,"36528":0.5232432432,"36529":0.5242342342,"36530":0.5252252252,"36531":0.5262162162,"36532":0.5272072072,"36533":0.5281981982,"36534":0.5291891892,"36535":0.5301801802,"36536":0.5311711712,"36537":0.5321621622,"36538":0.5331531532,"36539":0.5341441441,"36540":0.5351351351,"36541":0.5361261261,"36542":0.5371171171,"36543":0.5381081081,"36544":0.5390990991,"36545":0.5400900901,"36546":0.5410810811,"36547":0.5420720721,"36548":0.5430630631,"36549":0.5440540541,"36550":0.545045045,"36551":0.546036036,"36552":0.547027027,"36553":0.548018018,"36554":0.549009009,"36555":0.55,"36556":0.550990991,"36557":0.551981982,"36558":0.552972973,"36559":0.553963964,"36560":0.554954955,"36561":0.5559459459,"36562":0.5569369369,"36563":0.5579279279,"36564":0.5589189189,"36565":0.5599099099,"36566":0.5609009009,"36567":0.5618918919,"36568":0.5628828829,"36569":0.5638738739,"36570":0.5648648649,"36571":0.5658558559,"36572":0.5668468468,"36573":0.5678378378,"36574":0.5688288288,"36575":0.5698198198,"36576":0.5708108108,"36577":0.5718018018,"36578":0.5727927928,"36579":0.5737837838,"36580":0.5747747748,"36581":0.5757657658,"36582":0.5767567568,"36583":0.5777477477,"36584":0.5787387387,"36585":0.5797297297,"36586":0.5807207207,"36587":0.5817117117,"36588":0.5827027027,"36589":0.5836936937,"36590":0.5846846847,"36591":0.5856756757,"36592":0.5866666667,"36593":0.5876576577,"36594":0.5886486486,"36595":0.5896396396,"36596":0.5906306306,"36597":0.5916216216,"36598":0.5926126126,"36599":0.5936036036,"36600":0.5945945946,"36601":0.5955855856,"36602":0.5965765766,"36603":0.5975675676,"36604":0.5985585586,"36605":0.5995495495,"36606":0.6005405405,"36607":0.6015315315,"36608":0.6025225225,"36609":0.6035135135,"36610":0.6045045045,"36611":0.6054954955,"36612":0.6064864865,"36613":0.6074774775,"36614":0.6084684685,"36615":0.6094594595,"36616":0.6104504505,"36617":0.6114414414,"36618":0.6124324324,"36619":0.6134234234,"36620":0.6144144144,"36621":0.6154054054,"36622":0.6163963964,"36623":0.6173873874,"36624":0.6183783784,"36625":0.6193693694,"36626":0.6203603604,"36627":0.6213513514,"36628":0.6223423423,"36629":0.6233333333,"36630":0.6243243243,"36631":0.6253153153,"36632":0.6263063063,"36633":0.6272972973,"36634":0.6282882883,"36635":0.6292792793,"36636":0.6302702703,"36637":0.6312612613,"36638":0.6322522523,"36639":0.6332432432,"36640":0.6342342342,"36641":0.6352252252,"36642":0.6362162162,"36643":0.6372072072,"36644":0.6381981982,"36645":0.6391891892,"36646":0.6401801802,"36647":0.6411711712,"36648":0.6421621622,"36649":0.6431531532,"36650":0.6441441441,"36651":0.6451351351,"36652":0.6461261261,"36653":0.6471171171,"36654":0.6481081081,"36655":0.6490990991,"36656":0.6500900901,"36657":0.6510810811,"36658":0.6520720721,"36659":0.6530630631,"36660":0.6540540541,"36661":0.655045045,"36662":0.656036036,"36663":0.657027027,"36664":0.658018018,"36665":0.659009009,"36666":0.66,"36667":0.660990991,"36668":0.661981982,"36669":0.662972973,"36670":0.663963964,"36671":0.664954955,"36672":0.6659459459,"36673":0.6669369369,"36674":0.6679279279,"36675":0.6689189189,"36676":0.6699099099,"36677":0.6709009009,"36678":0.6718918919,"36679":0.6728828829,"36680":0.6738738739,"36681":0.6748648649,"36682":0.6758558559,"36683":0.6768468468,"36684":0.6778378378,"36685":0.6788288288,"36686":0.6798198198,"36687":0.6808108108,"36688":0.6818018018,"36689":0.6827927928,"36690":0.6837837838,"36691":0.6847747748,"36692":0.6857657658,"36693":0.6867567568,"36694":0.6877477477,"36695":0.6887387387,"36696":0.6897297297,"36697":0.6907207207,"36698":0.6917117117,"36699":0.6927027027,"36700":0.6936936937,"36701":0.6946846847,"36702":0.6956756757,"36703":0.6966666667,"36704":0.6976576577,"36705":0.6986486486,"36706":0.6996396396,"36707":0.7006306306,"36708":0.7016216216,"36709":0.7026126126,"36710":0.7036036036,"36711":0.7045945946,"36712":0.7055855856,"36713":0.7065765766,"36714":0.7075675676,"36715":0.7085585586,"36716":0.7095495495,"36717":0.7105405405,"36718":0.7115315315,"36719":0.7125225225,"36720":0.7135135135,"36721":0.7145045045,"36722":0.7154954955,"36723":0.7164864865,"36724":0.7174774775,"36725":0.7184684685,"36726":0.7194594595,"36727":0.7204504505,"36728":0.7214414414,"36729":0.7224324324,"36730":0.7234234234,"36731":0.7244144144,"36732":0.7254054054,"36733":0.7263963964,"36734":0.7273873874,"36735":0.7283783784,"36736":0.7293693694,"36737":0.7303603604,"36738":0.7313513514,"36739":0.7323423423,"36740":0.7333333333,"36741":0.7343243243,"36742":0.7353153153,"36743":0.7363063063,"36744":0.7372972973,"36745":0.7382882883,"36746":0.7392792793,"36747":0.7402702703,"36748":0.7412612613,"36749":0.7422522523,"36750":0.7432432432,"36751":0.7442342342,"36752":0.7452252252,"36753":0.7462162162,"36754":0.7472072072,"36755":0.7481981982,"36756":0.7491891892,"36757":0.7501801802,"36758":0.7511711712,"36759":0.7521621622,"36760":0.7531531532,"36761":0.7541441441,"36762":0.7551351351,"36763":0.7561261261,"36764":0.7571171171,"36765":0.7581081081,"36766":0.7590990991,"36767":0.7600900901,"36768":0.7610810811,"36769":0.7620720721,"36770":0.7630630631,"36771":0.7640540541,"36772":0.765045045,"36773":0.766036036,"36774":0.767027027,"36775":0.768018018,"36776":0.769009009,"36777":0.77,"36778":0.770990991,"36779":0.771981982,"36780":0.772972973,"36781":0.773963964,"36782":0.774954955,"36783":0.7759459459,"36784":0.7769369369,"36785":0.7779279279,"36786":0.7789189189,"36787":0.7799099099,"36788":0.7809009009,"36789":0.7818918919,"36790":0.7828828829,"36791":0.7838738739,"36792":0.7848648649,"36793":0.7858558559,"36794":0.7868468468,"36795":0.7878378378,"36796":0.7888288288,"36797":0.7898198198,"36798":0.7908108108,"36799":0.7918018018,"36800":0.7927927928,"36801":0.7937837838,"36802":0.7947747748,"36803":0.7957657658,"36804":0.7967567568,"36805":0.7977477477,"36806":0.7987387387,"36807":0.7997297297,"36808":0.8007207207,"36809":0.8017117117,"36810":0.8027027027,"36811":0.8036936937,"36812":0.8046846847,"36813":0.8056756757,"36814":0.8066666667,"36815":0.8076576577,"36816":0.8086486486,"36817":0.8096396396,"36818":0.8106306306,"36819":0.8116216216,"36820":0.8126126126,"36821":0.8136036036,"36822":0.8145945946,"36823":0.8155855856,"36824":0.8165765766,"36825":0.8175675676,"36826":0.8185585586,"36827":0.8195495495,"36828":0.8205405405,"36829":0.8215315315,"36830":0.8225225225,"36831":0.8235135135,"36832":0.8245045045,"36833":0.8254954955,"36834":0.8264864865,"36835":0.8274774775,"36836":0.8284684685,"36837":0.8294594595,"36838":0.8304504505,"36839":0.8314414414,"36840":0.8324324324,"36841":0.8334234234,"36842":0.8344144144,"36843":0.8354054054,"36844":0.8363963964,"36845":0.8373873874,"36846":0.8383783784,"36847":0.8393693694,"36848":0.8403603604,"36849":0.8413513514,"36850":0.8423423423,"36851":0.8433333333,"36852":0.8443243243,"36853":0.8453153153,"36854":0.8463063063,"36855":0.8472972973,"36856":0.8482882883,"36857":0.8492792793,"36858":0.8502702703,"36859":0.8512612613,"36860":0.8522522523,"36861":0.8532432432,"36862":0.8542342342,"36863":0.8552252252,"36864":0.8562162162,"36865":0.8572072072,"36866":0.8581981982,"36867":0.8591891892,"36868":0.8601801802,"36869":0.8611711712,"36870":0.8621621622,"36871":0.8631531532,"36872":0.8641441441,"36873":0.8651351351,"36874":0.8661261261,"36875":0.8671171171,"36876":0.8681081081,"36877":0.8690990991,"36878":0.8700900901,"36879":0.8710810811,"36880":0.8720720721,"36881":0.8730630631,"36882":0.8740540541,"36883":0.875045045,"36884":0.876036036,"36885":0.877027027,"36886":0.878018018,"36887":0.879009009,"36888":0.88,"36889":0.880990991,"36890":0.881981982,"36891":0.882972973,"36892":0.883963964,"36893":0.884954955,"36894":0.8859459459,"36895":0.8869369369,"36896":0.8879279279,"36897":0.8889189189,"36898":0.8899099099,"36899":0.8909009009,"36900":0.8918918919,"36901":0.8928828829,"36902":0.8938738739,"36903":0.8948648649,"36904":0.8958558559,"36905":0.8968468468,"36906":0.8978378378,"36907":0.8988288288,"36908":0.8998198198,"36909":0.9008108108,"36910":0.9018018018,"36911":0.9027927928,"36912":0.9037837838,"36913":0.9047747748,"36914":0.9057657658,"36915":0.9067567568,"36916":0.9077477477,"36917":0.9087387387,"36918":0.9097297297,"36919":0.9107207207,"36920":0.9117117117,"36921":0.9127027027,"36922":0.9136936937,"36923":0.9146846847,"36924":0.9156756757,"36925":0.9166666667,"36926":0.9176576577,"36927":0.9186486486,"36928":0.9196396396,"36929":0.9206306306,"36930":0.9216216216,"36931":0.9226126126,"36932":0.9236036036,"36933":0.9245945946,"36934":0.9255855856,"36935":0.9265765766,"36936":0.9275675676,"36937":0.9285585586,"36938":0.9295495495,"36939":0.9305405405,"36940":0.9315315315,"36941":0.9325225225,"36942":0.9335135135,"36943":0.9345045045,"36944":0.9354954955,"36945":0.9364864865,"36946":0.9374774775,"36947":0.9384684685,"36948":0.9394594595,"36949":0.9404504505,"36950":0.9414414414,"36951":0.9424324324,"36952":0.9434234234,"36953":0.9444144144,"36954":0.9454054054,"36955":0.9463963964,"36956":0.9473873874,"36957":0.9483783784,"36958":0.9493693694,"36959":0.9503603604,"36960":0.9513513514,"36961":0.9523423423,"36962":0.9533333333,"36963":0.9543243243,"36964":0.9553153153,"36965":0.9563063063,"36966":0.9572972973,"36967":0.9582882883,"36968":0.9592792793,"36969":0.9602702703,"36970":0.9612612613,"36971":0.9622522523,"36972":0.9632432432,"36973":0.9642342342,"36974":0.9652252252,"36975":0.9662162162,"36976":0.9672072072,"36977":0.9681981982,"36978":0.9691891892,"36979":0.9701801802,"36980":0.9711711712,"36981":0.9721621622,"36982":0.9731531532,"36983":0.9741441441,"36984":0.9751351351,"36985":0.9761261261,"36986":0.9771171171,"36987":0.9781081081,"36988":0.9790990991,"36989":0.9800900901,"36990":0.9810810811,"36991":0.9820720721,"36992":0.9830630631,"36993":0.9840540541,"36994":0.985045045,"36995":0.986036036,"36996":0.987027027,"36997":0.988018018,"36998":0.989009009,"36999":0.99,"37000":0.0,"37001":0.000990991,"37002":0.001981982,"37003":0.002972973,"37004":0.003963964,"37005":0.004954955,"37006":0.0059459459,"37007":0.0069369369,"37008":0.0079279279,"37009":0.0089189189,"37010":0.0099099099,"37011":0.0109009009,"37012":0.0118918919,"37013":0.0128828829,"37014":0.0138738739,"37015":0.0148648649,"37016":0.0158558559,"37017":0.0168468468,"37018":0.0178378378,"37019":0.0188288288,"37020":0.0198198198,"37021":0.0208108108,"37022":0.0218018018,"37023":0.0227927928,"37024":0.0237837838,"37025":0.0247747748,"37026":0.0257657658,"37027":0.0267567568,"37028":0.0277477477,"37029":0.0287387387,"37030":0.0297297297,"37031":0.0307207207,"37032":0.0317117117,"37033":0.0327027027,"37034":0.0336936937,"37035":0.0346846847,"37036":0.0356756757,"37037":0.0366666667,"37038":0.0376576577,"37039":0.0386486486,"37040":0.0396396396,"37041":0.0406306306,"37042":0.0416216216,"37043":0.0426126126,"37044":0.0436036036,"37045":0.0445945946,"37046":0.0455855856,"37047":0.0465765766,"37048":0.0475675676,"37049":0.0485585586,"37050":0.0495495495,"37051":0.0505405405,"37052":0.0515315315,"37053":0.0525225225,"37054":0.0535135135,"37055":0.0545045045,"37056":0.0554954955,"37057":0.0564864865,"37058":0.0574774775,"37059":0.0584684685,"37060":0.0594594595,"37061":0.0604504505,"37062":0.0614414414,"37063":0.0624324324,"37064":0.0634234234,"37065":0.0644144144,"37066":0.0654054054,"37067":0.0663963964,"37068":0.0673873874,"37069":0.0683783784,"37070":0.0693693694,"37071":0.0703603604,"37072":0.0713513514,"37073":0.0723423423,"37074":0.0733333333,"37075":0.0743243243,"37076":0.0753153153,"37077":0.0763063063,"37078":0.0772972973,"37079":0.0782882883,"37080":0.0792792793,"37081":0.0802702703,"37082":0.0812612613,"37083":0.0822522523,"37084":0.0832432432,"37085":0.0842342342,"37086":0.0852252252,"37087":0.0862162162,"37088":0.0872072072,"37089":0.0881981982,"37090":0.0891891892,"37091":0.0901801802,"37092":0.0911711712,"37093":0.0921621622,"37094":0.0931531532,"37095":0.0941441441,"37096":0.0951351351,"37097":0.0961261261,"37098":0.0971171171,"37099":0.0981081081,"37100":0.0990990991,"37101":0.1000900901,"37102":0.1010810811,"37103":0.1020720721,"37104":0.1030630631,"37105":0.1040540541,"37106":0.105045045,"37107":0.106036036,"37108":0.107027027,"37109":0.108018018,"37110":0.109009009,"37111":0.11,"37112":0.110990991,"37113":0.111981982,"37114":0.112972973,"37115":0.113963964,"37116":0.114954955,"37117":0.1159459459,"37118":0.1169369369,"37119":0.1179279279,"37120":0.1189189189,"37121":0.1199099099,"37122":0.1209009009,"37123":0.1218918919,"37124":0.1228828829,"37125":0.1238738739,"37126":0.1248648649,"37127":0.1258558559,"37128":0.1268468468,"37129":0.1278378378,"37130":0.1288288288,"37131":0.1298198198,"37132":0.1308108108,"37133":0.1318018018,"37134":0.1327927928,"37135":0.1337837838,"37136":0.1347747748,"37137":0.1357657658,"37138":0.1367567568,"37139":0.1377477477,"37140":0.1387387387,"37141":0.1397297297,"37142":0.1407207207,"37143":0.1417117117,"37144":0.1427027027,"37145":0.1436936937,"37146":0.1446846847,"37147":0.1456756757,"37148":0.1466666667,"37149":0.1476576577,"37150":0.1486486486,"37151":0.1496396396,"37152":0.1506306306,"37153":0.1516216216,"37154":0.1526126126,"37155":0.1536036036,"37156":0.1545945946,"37157":0.1555855856,"37158":0.1565765766,"37159":0.1575675676,"37160":0.1585585586,"37161":0.1595495495,"37162":0.1605405405,"37163":0.1615315315,"37164":0.1625225225,"37165":0.1635135135,"37166":0.1645045045,"37167":0.1654954955,"37168":0.1664864865,"37169":0.1674774775,"37170":0.1684684685,"37171":0.1694594595,"37172":0.1704504505,"37173":0.1714414414,"37174":0.1724324324,"37175":0.1734234234,"37176":0.1744144144,"37177":0.1754054054,"37178":0.1763963964,"37179":0.1773873874,"37180":0.1783783784,"37181":0.1793693694,"37182":0.1803603604,"37183":0.1813513514,"37184":0.1823423423,"37185":0.1833333333,"37186":0.1843243243,"37187":0.1853153153,"37188":0.1863063063,"37189":0.1872972973,"37190":0.1882882883,"37191":0.1892792793,"37192":0.1902702703,"37193":0.1912612613,"37194":0.1922522523,"37195":0.1932432432,"37196":0.1942342342,"37197":0.1952252252,"37198":0.1962162162,"37199":0.1972072072,"37200":0.1981981982,"37201":0.1991891892,"37202":0.2001801802,"37203":0.2011711712,"37204":0.2021621622,"37205":0.2031531532,"37206":0.2041441441,"37207":0.2051351351,"37208":0.2061261261,"37209":0.2071171171,"37210":0.2081081081,"37211":0.2090990991,"37212":0.2100900901,"37213":0.2110810811,"37214":0.2120720721,"37215":0.2130630631,"37216":0.2140540541,"37217":0.215045045,"37218":0.216036036,"37219":0.217027027,"37220":0.218018018,"37221":0.219009009,"37222":0.22,"37223":0.220990991,"37224":0.221981982,"37225":0.222972973,"37226":0.223963964,"37227":0.224954955,"37228":0.2259459459,"37229":0.2269369369,"37230":0.2279279279,"37231":0.2289189189,"37232":0.2299099099,"37233":0.2309009009,"37234":0.2318918919,"37235":0.2328828829,"37236":0.2338738739,"37237":0.2348648649,"37238":0.2358558559,"37239":0.2368468468,"37240":0.2378378378,"37241":0.2388288288,"37242":0.2398198198,"37243":0.2408108108,"37244":0.2418018018,"37245":0.2427927928,"37246":0.2437837838,"37247":0.2447747748,"37248":0.2457657658,"37249":0.2467567568,"37250":0.2477477477,"37251":0.2487387387,"37252":0.2497297297,"37253":0.2507207207,"37254":0.2517117117,"37255":0.2527027027,"37256":0.2536936937,"37257":0.2546846847,"37258":0.2556756757,"37259":0.2566666667,"37260":0.2576576577,"37261":0.2586486486,"37262":0.2596396396,"37263":0.2606306306,"37264":0.2616216216,"37265":0.2626126126,"37266":0.2636036036,"37267":0.2645945946,"37268":0.2655855856,"37269":0.2665765766,"37270":0.2675675676,"37271":0.2685585586,"37272":0.2695495495,"37273":0.2705405405,"37274":0.2715315315,"37275":0.2725225225,"37276":0.2735135135,"37277":0.2745045045,"37278":0.2754954955,"37279":0.2764864865,"37280":0.2774774775,"37281":0.2784684685,"37282":0.2794594595,"37283":0.2804504505,"37284":0.2814414414,"37285":0.2824324324,"37286":0.2834234234,"37287":0.2844144144,"37288":0.2854054054,"37289":0.2863963964,"37290":0.2873873874,"37291":0.2883783784,"37292":0.2893693694,"37293":0.2903603604,"37294":0.2913513514,"37295":0.2923423423,"37296":0.2933333333,"37297":0.2943243243,"37298":0.2953153153,"37299":0.2963063063,"37300":0.2972972973,"37301":0.2982882883,"37302":0.2992792793,"37303":0.3002702703,"37304":0.3012612613,"37305":0.3022522523,"37306":0.3032432432,"37307":0.3042342342,"37308":0.3052252252,"37309":0.3062162162,"37310":0.3072072072,"37311":0.3081981982,"37312":0.3091891892,"37313":0.3101801802,"37314":0.3111711712,"37315":0.3121621622,"37316":0.3131531532,"37317":0.3141441441,"37318":0.3151351351,"37319":0.3161261261,"37320":0.3171171171,"37321":0.3181081081,"37322":0.3190990991,"37323":0.3200900901,"37324":0.3210810811,"37325":0.3220720721,"37326":0.3230630631,"37327":0.3240540541,"37328":0.325045045,"37329":0.326036036,"37330":0.327027027,"37331":0.328018018,"37332":0.329009009,"37333":0.33,"37334":0.330990991,"37335":0.331981982,"37336":0.332972973,"37337":0.333963964,"37338":0.334954955,"37339":0.3359459459,"37340":0.3369369369,"37341":0.3379279279,"37342":0.3389189189,"37343":0.3399099099,"37344":0.3409009009,"37345":0.3418918919,"37346":0.3428828829,"37347":0.3438738739,"37348":0.3448648649,"37349":0.3458558559,"37350":0.3468468468,"37351":0.3478378378,"37352":0.3488288288,"37353":0.3498198198,"37354":0.3508108108,"37355":0.3518018018,"37356":0.3527927928,"37357":0.3537837838,"37358":0.3547747748,"37359":0.3557657658,"37360":0.3567567568,"37361":0.3577477477,"37362":0.3587387387,"37363":0.3597297297,"37364":0.3607207207,"37365":0.3617117117,"37366":0.3627027027,"37367":0.3636936937,"37368":0.3646846847,"37369":0.3656756757,"37370":0.3666666667,"37371":0.3676576577,"37372":0.3686486486,"37373":0.3696396396,"37374":0.3706306306,"37375":0.3716216216,"37376":0.3726126126,"37377":0.3736036036,"37378":0.3745945946,"37379":0.3755855856,"37380":0.3765765766,"37381":0.3775675676,"37382":0.3785585586,"37383":0.3795495495,"37384":0.3805405405,"37385":0.3815315315,"37386":0.3825225225,"37387":0.3835135135,"37388":0.3845045045,"37389":0.3854954955,"37390":0.3864864865,"37391":0.3874774775,"37392":0.3884684685,"37393":0.3894594595,"37394":0.3904504505,"37395":0.3914414414,"37396":0.3924324324,"37397":0.3934234234,"37398":0.3944144144,"37399":0.3954054054,"37400":0.3963963964,"37401":0.3973873874,"37402":0.3983783784,"37403":0.3993693694,"37404":0.4003603604,"37405":0.4013513514,"37406":0.4023423423,"37407":0.4033333333,"37408":0.4043243243,"37409":0.4053153153,"37410":0.4063063063,"37411":0.4072972973,"37412":0.4082882883,"37413":0.4092792793,"37414":0.4102702703,"37415":0.4112612613,"37416":0.4122522523,"37417":0.4132432432,"37418":0.4142342342,"37419":0.4152252252,"37420":0.4162162162,"37421":0.4172072072,"37422":0.4181981982,"37423":0.4191891892,"37424":0.4201801802,"37425":0.4211711712,"37426":0.4221621622,"37427":0.4231531532,"37428":0.4241441441,"37429":0.4251351351,"37430":0.4261261261,"37431":0.4271171171,"37432":0.4281081081,"37433":0.4290990991,"37434":0.4300900901,"37435":0.4310810811,"37436":0.4320720721,"37437":0.4330630631,"37438":0.4340540541,"37439":0.435045045,"37440":0.436036036,"37441":0.437027027,"37442":0.438018018,"37443":0.439009009,"37444":0.44,"37445":0.440990991,"37446":0.441981982,"37447":0.442972973,"37448":0.443963964,"37449":0.444954955,"37450":0.4459459459,"37451":0.4469369369,"37452":0.4479279279,"37453":0.4489189189,"37454":0.4499099099,"37455":0.4509009009,"37456":0.4518918919,"37457":0.4528828829,"37458":0.4538738739,"37459":0.4548648649,"37460":0.4558558559,"37461":0.4568468468,"37462":0.4578378378,"37463":0.4588288288,"37464":0.4598198198,"37465":0.4608108108,"37466":0.4618018018,"37467":0.4627927928,"37468":0.4637837838,"37469":0.4647747748,"37470":0.4657657658,"37471":0.4667567568,"37472":0.4677477477,"37473":0.4687387387,"37474":0.4697297297,"37475":0.4707207207,"37476":0.4717117117,"37477":0.4727027027,"37478":0.4736936937,"37479":0.4746846847,"37480":0.4756756757,"37481":0.4766666667,"37482":0.4776576577,"37483":0.4786486486,"37484":0.4796396396,"37485":0.4806306306,"37486":0.4816216216,"37487":0.4826126126,"37488":0.4836036036,"37489":0.4845945946,"37490":0.4855855856,"37491":0.4865765766,"37492":0.4875675676,"37493":0.4885585586,"37494":0.4895495495,"37495":0.4905405405,"37496":0.4915315315,"37497":0.4925225225,"37498":0.4935135135,"37499":0.4945045045,"37500":0.4954954955,"37501":0.4964864865,"37502":0.4974774775,"37503":0.4984684685,"37504":0.4994594595,"37505":0.5004504505,"37506":0.5014414414,"37507":0.5024324324,"37508":0.5034234234,"37509":0.5044144144,"37510":0.5054054054,"37511":0.5063963964,"37512":0.5073873874,"37513":0.5083783784,"37514":0.5093693694,"37515":0.5103603604,"37516":0.5113513514,"37517":0.5123423423,"37518":0.5133333333,"37519":0.5143243243,"37520":0.5153153153,"37521":0.5163063063,"37522":0.5172972973,"37523":0.5182882883,"37524":0.5192792793,"37525":0.5202702703,"37526":0.5212612613,"37527":0.5222522523,"37528":0.5232432432,"37529":0.5242342342,"37530":0.5252252252,"37531":0.5262162162,"37532":0.5272072072,"37533":0.5281981982,"37534":0.5291891892,"37535":0.5301801802,"37536":0.5311711712,"37537":0.5321621622,"37538":0.5331531532,"37539":0.5341441441,"37540":0.5351351351,"37541":0.5361261261,"37542":0.5371171171,"37543":0.5381081081,"37544":0.5390990991,"37545":0.5400900901,"37546":0.5410810811,"37547":0.5420720721,"37548":0.5430630631,"37549":0.5440540541,"37550":0.545045045,"37551":0.546036036,"37552":0.547027027,"37553":0.548018018,"37554":0.549009009,"37555":0.55,"37556":0.550990991,"37557":0.551981982,"37558":0.552972973,"37559":0.553963964,"37560":0.554954955,"37561":0.5559459459,"37562":0.5569369369,"37563":0.5579279279,"37564":0.5589189189,"37565":0.5599099099,"37566":0.5609009009,"37567":0.5618918919,"37568":0.5628828829,"37569":0.5638738739,"37570":0.5648648649,"37571":0.5658558559,"37572":0.5668468468,"37573":0.5678378378,"37574":0.5688288288,"37575":0.5698198198,"37576":0.5708108108,"37577":0.5718018018,"37578":0.5727927928,"37579":0.5737837838,"37580":0.5747747748,"37581":0.5757657658,"37582":0.5767567568,"37583":0.5777477477,"37584":0.5787387387,"37585":0.5797297297,"37586":0.5807207207,"37587":0.5817117117,"37588":0.5827027027,"37589":0.5836936937,"37590":0.5846846847,"37591":0.5856756757,"37592":0.5866666667,"37593":0.5876576577,"37594":0.5886486486,"37595":0.5896396396,"37596":0.5906306306,"37597":0.5916216216,"37598":0.5926126126,"37599":0.5936036036,"37600":0.5945945946,"37601":0.5955855856,"37602":0.5965765766,"37603":0.5975675676,"37604":0.5985585586,"37605":0.5995495495,"37606":0.6005405405,"37607":0.6015315315,"37608":0.6025225225,"37609":0.6035135135,"37610":0.6045045045,"37611":0.6054954955,"37612":0.6064864865,"37613":0.6074774775,"37614":0.6084684685,"37615":0.6094594595,"37616":0.6104504505,"37617":0.6114414414,"37618":0.6124324324,"37619":0.6134234234,"37620":0.6144144144,"37621":0.6154054054,"37622":0.6163963964,"37623":0.6173873874,"37624":0.6183783784,"37625":0.6193693694,"37626":0.6203603604,"37627":0.6213513514,"37628":0.6223423423,"37629":0.6233333333,"37630":0.6243243243,"37631":0.6253153153,"37632":0.6263063063,"37633":0.6272972973,"37634":0.6282882883,"37635":0.6292792793,"37636":0.6302702703,"37637":0.6312612613,"37638":0.6322522523,"37639":0.6332432432,"37640":0.6342342342,"37641":0.6352252252,"37642":0.6362162162,"37643":0.6372072072,"37644":0.6381981982,"37645":0.6391891892,"37646":0.6401801802,"37647":0.6411711712,"37648":0.6421621622,"37649":0.6431531532,"37650":0.6441441441,"37651":0.6451351351,"37652":0.6461261261,"37653":0.6471171171,"37654":0.6481081081,"37655":0.6490990991,"37656":0.6500900901,"37657":0.6510810811,"37658":0.6520720721,"37659":0.6530630631,"37660":0.6540540541,"37661":0.655045045,"37662":0.656036036,"37663":0.657027027,"37664":0.658018018,"37665":0.659009009,"37666":0.66,"37667":0.660990991,"37668":0.661981982,"37669":0.662972973,"37670":0.663963964,"37671":0.664954955,"37672":0.6659459459,"37673":0.6669369369,"37674":0.6679279279,"37675":0.6689189189,"37676":0.6699099099,"37677":0.6709009009,"37678":0.6718918919,"37679":0.6728828829,"37680":0.6738738739,"37681":0.6748648649,"37682":0.6758558559,"37683":0.6768468468,"37684":0.6778378378,"37685":0.6788288288,"37686":0.6798198198,"37687":0.6808108108,"37688":0.6818018018,"37689":0.6827927928,"37690":0.6837837838,"37691":0.6847747748,"37692":0.6857657658,"37693":0.6867567568,"37694":0.6877477477,"37695":0.6887387387,"37696":0.6897297297,"37697":0.6907207207,"37698":0.6917117117,"37699":0.6927027027,"37700":0.6936936937,"37701":0.6946846847,"37702":0.6956756757,"37703":0.6966666667,"37704":0.6976576577,"37705":0.6986486486,"37706":0.6996396396,"37707":0.7006306306,"37708":0.7016216216,"37709":0.7026126126,"37710":0.7036036036,"37711":0.7045945946,"37712":0.7055855856,"37713":0.7065765766,"37714":0.7075675676,"37715":0.7085585586,"37716":0.7095495495,"37717":0.7105405405,"37718":0.7115315315,"37719":0.7125225225,"37720":0.7135135135,"37721":0.7145045045,"37722":0.7154954955,"37723":0.7164864865,"37724":0.7174774775,"37725":0.7184684685,"37726":0.7194594595,"37727":0.7204504505,"37728":0.7214414414,"37729":0.7224324324,"37730":0.7234234234,"37731":0.7244144144,"37732":0.7254054054,"37733":0.7263963964,"37734":0.7273873874,"37735":0.7283783784,"37736":0.7293693694,"37737":0.7303603604,"37738":0.7313513514,"37739":0.7323423423,"37740":0.7333333333,"37741":0.7343243243,"37742":0.7353153153,"37743":0.7363063063,"37744":0.7372972973,"37745":0.7382882883,"37746":0.7392792793,"37747":0.7402702703,"37748":0.7412612613,"37749":0.7422522523,"37750":0.7432432432,"37751":0.7442342342,"37752":0.7452252252,"37753":0.7462162162,"37754":0.7472072072,"37755":0.7481981982,"37756":0.7491891892,"37757":0.7501801802,"37758":0.7511711712,"37759":0.7521621622,"37760":0.7531531532,"37761":0.7541441441,"37762":0.7551351351,"37763":0.7561261261,"37764":0.7571171171,"37765":0.7581081081,"37766":0.7590990991,"37767":0.7600900901,"37768":0.7610810811,"37769":0.7620720721,"37770":0.7630630631,"37771":0.7640540541,"37772":0.765045045,"37773":0.766036036,"37774":0.767027027,"37775":0.768018018,"37776":0.769009009,"37777":0.77,"37778":0.770990991,"37779":0.771981982,"37780":0.772972973,"37781":0.773963964,"37782":0.774954955,"37783":0.7759459459,"37784":0.7769369369,"37785":0.7779279279,"37786":0.7789189189,"37787":0.7799099099,"37788":0.7809009009,"37789":0.7818918919,"37790":0.7828828829,"37791":0.7838738739,"37792":0.7848648649,"37793":0.7858558559,"37794":0.7868468468,"37795":0.7878378378,"37796":0.7888288288,"37797":0.7898198198,"37798":0.7908108108,"37799":0.7918018018,"37800":0.7927927928,"37801":0.7937837838,"37802":0.7947747748,"37803":0.7957657658,"37804":0.7967567568,"37805":0.7977477477,"37806":0.7987387387,"37807":0.7997297297,"37808":0.8007207207,"37809":0.8017117117,"37810":0.8027027027,"37811":0.8036936937,"37812":0.8046846847,"37813":0.8056756757,"37814":0.8066666667,"37815":0.8076576577,"37816":0.8086486486,"37817":0.8096396396,"37818":0.8106306306,"37819":0.8116216216,"37820":0.8126126126,"37821":0.8136036036,"37822":0.8145945946,"37823":0.8155855856,"37824":0.8165765766,"37825":0.8175675676,"37826":0.8185585586,"37827":0.8195495495,"37828":0.8205405405,"37829":0.8215315315,"37830":0.8225225225,"37831":0.8235135135,"37832":0.8245045045,"37833":0.8254954955,"37834":0.8264864865,"37835":0.8274774775,"37836":0.8284684685,"37837":0.8294594595,"37838":0.8304504505,"37839":0.8314414414,"37840":0.8324324324,"37841":0.8334234234,"37842":0.8344144144,"37843":0.8354054054,"37844":0.8363963964,"37845":0.8373873874,"37846":0.8383783784,"37847":0.8393693694,"37848":0.8403603604,"37849":0.8413513514,"37850":0.8423423423,"37851":0.8433333333,"37852":0.8443243243,"37853":0.8453153153,"37854":0.8463063063,"37855":0.8472972973,"37856":0.8482882883,"37857":0.8492792793,"37858":0.8502702703,"37859":0.8512612613,"37860":0.8522522523,"37861":0.8532432432,"37862":0.8542342342,"37863":0.8552252252,"37864":0.8562162162,"37865":0.8572072072,"37866":0.8581981982,"37867":0.8591891892,"37868":0.8601801802,"37869":0.8611711712,"37870":0.8621621622,"37871":0.8631531532,"37872":0.8641441441,"37873":0.8651351351,"37874":0.8661261261,"37875":0.8671171171,"37876":0.8681081081,"37877":0.8690990991,"37878":0.8700900901,"37879":0.8710810811,"37880":0.8720720721,"37881":0.8730630631,"37882":0.8740540541,"37883":0.875045045,"37884":0.876036036,"37885":0.877027027,"37886":0.878018018,"37887":0.879009009,"37888":0.88,"37889":0.880990991,"37890":0.881981982,"37891":0.882972973,"37892":0.883963964,"37893":0.884954955,"37894":0.8859459459,"37895":0.8869369369,"37896":0.8879279279,"37897":0.8889189189,"37898":0.8899099099,"37899":0.8909009009,"37900":0.8918918919,"37901":0.8928828829,"37902":0.8938738739,"37903":0.8948648649,"37904":0.8958558559,"37905":0.8968468468,"37906":0.8978378378,"37907":0.8988288288,"37908":0.8998198198,"37909":0.9008108108,"37910":0.9018018018,"37911":0.9027927928,"37912":0.9037837838,"37913":0.9047747748,"37914":0.9057657658,"37915":0.9067567568,"37916":0.9077477477,"37917":0.9087387387,"37918":0.9097297297,"37919":0.9107207207,"37920":0.9117117117,"37921":0.9127027027,"37922":0.9136936937,"37923":0.9146846847,"37924":0.9156756757,"37925":0.9166666667,"37926":0.9176576577,"37927":0.9186486486,"37928":0.9196396396,"37929":0.9206306306,"37930":0.9216216216,"37931":0.9226126126,"37932":0.9236036036,"37933":0.9245945946,"37934":0.9255855856,"37935":0.9265765766,"37936":0.9275675676,"37937":0.9285585586,"37938":0.9295495495,"37939":0.9305405405,"37940":0.9315315315,"37941":0.9325225225,"37942":0.9335135135,"37943":0.9345045045,"37944":0.9354954955,"37945":0.9364864865,"37946":0.9374774775,"37947":0.9384684685,"37948":0.9394594595,"37949":0.9404504505,"37950":0.9414414414,"37951":0.9424324324,"37952":0.9434234234,"37953":0.9444144144,"37954":0.9454054054,"37955":0.9463963964,"37956":0.9473873874,"37957":0.9483783784,"37958":0.9493693694,"37959":0.9503603604,"37960":0.9513513514,"37961":0.9523423423,"37962":0.9533333333,"37963":0.9543243243,"37964":0.9553153153,"37965":0.9563063063,"37966":0.9572972973,"37967":0.9582882883,"37968":0.9592792793,"37969":0.9602702703,"37970":0.9612612613,"37971":0.9622522523,"37972":0.9632432432,"37973":0.9642342342,"37974":0.9652252252,"37975":0.9662162162,"37976":0.9672072072,"37977":0.9681981982,"37978":0.9691891892,"37979":0.9701801802,"37980":0.9711711712,"37981":0.9721621622,"37982":0.9731531532,"37983":0.9741441441,"37984":0.9751351351,"37985":0.9761261261,"37986":0.9771171171,"37987":0.9781081081,"37988":0.9790990991,"37989":0.9800900901,"37990":0.9810810811,"37991":0.9820720721,"37992":0.9830630631,"37993":0.9840540541,"37994":0.985045045,"37995":0.986036036,"37996":0.987027027,"37997":0.988018018,"37998":0.989009009,"37999":0.99},"y":{"0":15.3502838868,"1":15.3448336297,"2":15.3393835832,"3":15.3339334313,"4":15.3284833322,"5":15.3230332067,"6":15.3175830943,"7":15.3121329754,"8":15.3066828598,"9":15.3012327425,"10":15.2957826261,"11":15.2903325092,"12":15.2848823926,"13":15.2794322758,"14":15.2739821591,"15":15.2685320424,"16":15.2630819257,"17":15.2576318089,"18":15.2521816922,"19":15.2467315755,"20":15.2412814588,"21":15.5419732007,"22":16.014869738,"23":16.4016638777,"24":16.8315092162,"25":17.2398289552,"26":17.658911494,"27":18.0726126329,"28":18.4890044718,"29":18.9040509607,"30":19.3197701246,"31":19.7448933585,"32":20.1802997998,"33":20.6105646374,"34":21.0434002769,"35":21.4749505155,"36":21.9071434545,"37":22.3390150433,"38":22.7710473071,"39":23.2029992335,"40":23.6349913286,"41":24.4069037987,"42":25.7907191377,"43":26.8685830423,"44":28.099422664,"45":29.2537744272,"46":30.4463701197,"47":31.6198438475,"48":32.8028785577,"49":33.9811327767,"50":35.1617772412,"51":36.3602303091,"52":37.6203643433,"53":38.8496578944,"54":40.094371687,"55":41.3313753589,"56":42.5722340911,"57":43.8111652932,"58":45.0510602603,"59":46.2904733449,"60":47.5301273708,"61":48.8710039932,"62":50.8960065546,"63":52.5789461466,"64":54.4329172232,"65":56.2013725575,"66":58.012585763,"67":59.8024200329,"68":61.6029437706,"69":63.3981227744,"70":65.1959741451,"71":66.9955791149,"72":68.8931803277,"73":70.741783419,"74":72.614885571,"75":74.4757381927,"76":76.3427155795,"77":78.2066305838,"78":80.0720767793,"79":81.9367573792,"80":83.8018207769,"81":85.6666927757,"82":87.1513119756,"83":88.8015189622,"84":90.3689320555,"85":91.9777420954,"86":93.565853662,"87":95.1643144652,"88":96.7576006501,"89":98.3534741442,"90":99.9480539837,"91":101.5432806505,"92":103.0804850579,"93":104.6363972297,"94":106.1829555193,"95":107.73419075,"96":109.2830875102,"97":110.8331535056,"98":112.3826348834,"99":113.93240857,"100":115.4820361022,"101":117.0317367116,"102":117.6406171024,"103":118.418856825,"104":119.1124168817,"105":119.8483167714,"106":120.5630467446,"107":121.288361676,"108":122.0083841283,"109":122.7310528201,"110":123.4523983922,"111":124.1744055242,"112":124.6397437656,"113":125.1052473971,"114":125.5706683335,"115":126.0361306174,"116":126.5015722276,"117":126.9670241747,"118":127.4324709533,"119":127.8979203161,"120":128.3633683869,"121":128.8288171037,"122":128.5246966829,"123":128.0383101255,"124":127.6430566364,"125":127.2022366131,"126":126.7841998569,"127":126.3547714672,"128":125.9310388943,"129":125.5044584129,"130":125.0793018858,"131":124.6534333816,"132":124.1323782922,"133":123.5574025109,"134":123.0093870755,"135":122.4478914672,"136":121.8931359453,"137":121.3350103802,"138":120.7785698368,"139":120.2212867825,"140":119.6644249836,"141":119.1073525571,"142":118.3171024283,"143":117.2845442028,"144":116.3731400256,"145":115.4011588243,"146":114.4594661351,"147":113.5026291898,"148":112.5533643726,"149":111.6003134913,"150":110.6491556421,"151":109.6970512768,"152":108.7109606332,"153":107.6626061951,"154":106.6453836543,"155":105.6125951648,"156":104.5875896496,"157":103.5586926473,"158":102.5317413886,"159":101.503817258,"160":100.4763795634,"161":99.4486986508,"162":98.4320521659,"163":97.4504217935,"164":96.4512833649,"165":95.4608989644,"166":94.4661375498,"167":93.4735646423,"168":92.4798974812,"169":91.4867774469,"170":90.4933838493,"171":89.5001270333,"172":88.5084110519,"173":87.5275915374,"174":86.5413237894,"175":85.5577801582,"176":84.5728744686,"177":83.5886498082,"178":82.6040846331,"179":81.6196897154,"180":80.6352096691,"181":79.650772187,"182":78.6772090591,"183":78.0468691154,"184":77.2449175797,"185":76.52877184,"186":75.7697232022,"187":75.0321260135,"188":74.2838031002,"189":73.5408430492,"190":72.7952015671,"191":72.0509008006,"192":71.3059296762,"193":70.6593399851,"194":69.9698851422,"195":69.3018628752,"196":68.6231243202,"197":67.9497439092,"198":67.2736844262,"199":66.5989644792,"200":65.9235747642,"201":65.2485199332,"202":64.5732976603,"203":64.2264521476,"204":63.7740420119,"205":63.3744141877,"206":62.9483952077,"207":62.5355718056,"208":62.1161506146,"209":61.700028318,"210":61.2822565742,"211":60.865309554,"212":60.447950172,"213":60.0929120211,"214":59.7265900707,"215":59.3659100201,"216":59.0024090195,"217":58.640318494,"218":58.2775227309,"219":57.9150795866,"220":57.5524601329,"221":57.1899288339,"222":56.8273534575,"223":56.6851804542,"224":56.5429964316,"225":56.4008179186,"226":56.2586366508,"227":56.1164567604,"228":55.9742761813,"229":55.8320959465,"230":55.6899155396,"231":55.5477352187,"232":55.4055548548,"233":55.308352774,"234":55.2218034285,"235":55.1299277154,"236":55.0407151861,"237":54.9501710649,"238":54.8602927396,"239":54.7700815163,"240":54.6800367421,"241":54.5899087433,"242":54.4998223568,"243":54.4552287831,"244":54.436247023,"245":54.4044593561,"246":54.3790746426,"247":54.3504884525,"248":54.3235030006,"249":54.2957171796,"250":54.2683315432,"251":54.2407458145,"252":54.2132601319,"253":54.1981956918,"254":54.1961071929,"255":54.1875307234,"256":54.1821982393,"257":54.1752437624,"258":54.1691002819,"259":54.1625513032,"260":54.1562050736,"261":54.1497574695,"262":54.1433605527,"263":54.1237077922,"264":54.0802528036,"265":54.0486989291,"266":54.0111944975,"267":53.9766653445,"268":53.9406485522,"269":53.9053755795,"270":53.869730697,"271":53.8342717694,"272":53.7987198644,"273":53.7594817414,"274":53.7082223882,"275":53.6629736501,"276":53.6147196044,"277":53.5679682125,"278":53.5204654938,"279":53.4733384385,"280":53.4260235514,"281":53.3788025802,"282":53.3315346511,"283":53.2635024366,"284":53.0551410728,"285":52.9169442836,"286":52.7436652071,"287":52.5879272742,"288":52.4234187696,"289":52.2632955508,"290":52.1009796891,"291":51.9397601489,"292":51.7779924479,"293":51.6141506402,"294":51.376203897,"295":51.1753096215,"296":50.9558891122,"297":50.7457317198,"298":50.530942769,"299":50.3184695973,"300":50.1048385361,"301":49.8917864197,"302":49.6784448308,"303":49.4652479782,"304":49.1322470373,"305":48.8514235134,"306":48.544511281,"307":48.2506434028,"308":47.9502533475,"309":47.6531243808,"310":47.3543648698,"311":47.0564206309,"312":46.758068756,"313":46.4599206991,"314":46.107955409,"315":45.7733067133,"316":45.4299997204,"317":45.0910218761,"318":44.7498794575,"319":44.409819326,"320":44.069218051,"321":43.7288873477,"322":43.3884213586,"323":43.0480230124,"324":42.6687629484,"325":42.2965088165,"326":41.9207517186,"327":41.5467461036,"328":41.1718647472,"329":40.7974212615,"330":40.4227588405,"331":40.0482058871,"332":39.6735981999,"333":39.2990178796,"334":38.9603787435,"335":38.6217464491,"336":38.2831107339,"337":37.9444767291,"338":37.6058418691,"339":37.2672074367,"340":36.9285727905,"341":36.5899382512,"342":36.2513036584,"343":35.9126690924,"344":35.6328548935,"345":35.3669718441,"346":35.09412322,"347":34.8247573832,"348":34.5536501527,"349":34.2834136191,"350":34.0127417371,"351":33.7422875292,"352":33.4717244843,"353":33.2012158579,"354":32.9572074174,"355":32.7281342414,"356":32.4915934331,"357":32.258786441,"358":32.0241125408,"359":31.7903720946,"360":31.5561649214,"361":31.3221911117,"362":31.0881006203,"363":30.8540684697,"364":30.6676044907,"365":30.5305831059,"366":30.368840424,"367":30.2194583907,"368":30.063896033,"369":29.9114238376,"370":29.757406561,"371":29.604161825,"372":29.4505308187,"373":29.2970929476,"374":29.1654636794,"375":29.073312002,"376":28.9614215293,"377":28.8594004542,"378":28.7524446803,"379":28.6479562558,"380":28.5422341566,"381":28.4371288947,"382":28.3317152142,"383":28.226455743,"384":28.1396265587,"385":28.1123239711,"386":28.0552580851,"387":28.0130738483,"388":27.963448787,"389":27.9175441379,"390":27.8697792827,"391":27.8229445305,"392":27.7756447268,"393":27.7285774489,"394":27.6883188472,"395":27.6948617163,"396":27.67800385,"397":27.6728463514,"398":27.661838669,"399":27.6537560784,"400":27.6442109419,"401":27.6353970784,"402":27.6262175784,"403":27.6172208967,"404":27.6093638899,"405":27.6403317361,"406":27.6518871558,"407":27.6731487888,"408":27.6895573152,"409":27.7083923948,"410":27.7260141978,"411":27.7442426392,"412":27.7621677613,"413":27.7802445431,"414":27.798245495,"415":27.8427812095,"416":27.8757590168,"417":27.9145157777,"418":27.9503830618,"419":27.9876950843,"420":28.0242847376,"421":28.0612355755,"422":28.0980058211,"423":28.1348663628,"424":28.1716817565,"425":28.2085564122,"426":28.2454079884,"427":28.2822711043,"428":28.3191284504,"429":28.3559886814,"430":28.3928474699,"431":28.4297069796,"432":28.4665661288,"433":28.5034254582,"434":28.5402846975,"435":28.5799569426,"436":28.6191228323,"437":28.6585418997,"438":28.6978343782,"439":28.7371901511,"440":28.7765142768,"441":28.8158542262,"442":28.8551862637,"443":28.8945222571,"444":28.9338562726,"445":28.9543895426,"446":28.9749223181,"447":28.9954553408,"448":29.0159882399,"449":29.0365212009,"450":29.0570541309,"451":29.0775870764,"452":29.0981200142,"453":29.1186529558,"454":29.1391858955,"455":29.1491635349,"456":29.1566412341,"457":29.1653689034,"458":29.1734715876,"459":29.1818867644,"460":29.1901456949,"461":29.1984827486,"462":29.2067807407,"463":29.2150982635,"464":29.223406021,"465":29.2204688159,"466":29.2112011314,"467":29.2050986866,"468":29.197413622,"469":29.1905198673,"470":29.1832304576,"471":29.1761388755,"472":29.1689483795,"473":29.1618073405,"474":29.154641573,"475":29.1393672402,"476":29.1156534523,"477":29.096159392,"478":29.0745554679,"479":29.0540064756,"480":29.0329300175,"481":29.0121172923,"482":28.9911727006,"483":28.9702940422,"484":28.9493824171,"485":28.9241700934,"486":28.8911786005,"487":28.8620766921,"488":28.8310299915,"489":28.800955687,"490":28.7703951844,"491":28.7400777809,"492":28.7096388279,"493":28.6792606496,"494":28.6488520839,"495":28.6155896021,"496":28.5730973848,"497":28.5352200353,"498":28.4950352518,"499":28.4560041853,"500":28.4163962604,"501":28.3770767646,"502":28.3376130543,"503":28.2982214512,"504":28.2587937945,"505":28.2188724471,"506":28.1754879926,"507":28.1338350916,"508":28.0913164139,"509":28.0492306245,"510":28.006928391,"511":27.9647343795,"512":27.922486257,"513":27.88026519,"514":27.8380305953,"515":27.7956838555,"516":27.7495881013,"517":27.7053668543,"518":27.6602083538,"519":27.61551848,"520":27.5705942928,"521":27.5257872624,"522":27.4809216535,"523":27.4360853339,"524":27.3912343697,"525":27.3463907277,"526":27.3038594321,"527":27.2603213831,"528":27.2172867108,"529":27.1740003501,"530":27.1308398337,"531":27.0876163951,"532":27.0444244176,"533":27.0012167095,"534":26.9580168668,"535":26.9148130913,"536":26.8743735715,"537":26.8330451898,"538":26.792161239,"539":26.7510550728,"540":26.7100600143,"541":26.6690094019,"542":26.6279865665,"543":26.5869498426,"544":26.5459200629,"545":26.5048868111,"546":26.4633565732,"547":26.4219152372,"548":26.3804294503,"549":26.3389658889,"550":26.2974912147,"551":26.2560220969,"552":26.2145502009,"553":26.173079694,"554":26.1316084925,"555":26.0901376383,"556":26.0569353531,"557":26.0237331546,"558":25.9905309128,"559":25.9573286927,"560":25.9241264617,"561":25.8909242361,"562":25.8577220078,"563":25.8245197809,"564":25.7913175533,"565":25.7581153261,"566":25.7273291978,"567":25.6971153036,"568":25.6666152924,"569":25.6362583397,"570":25.6058298578,"571":25.5754371404,"572":25.5450265408,"573":25.5146248823,"574":25.4842187533,"575":25.4538148595,"576":25.4261164391,"577":25.3999410351,"578":25.3730041229,"579":25.3464479647,"580":25.3197014295,"581":25.2930500829,"582":25.2663511419,"583":25.2396759981,"584":25.2129889558,"585":25.1863078627,"586":25.1604860231,"587":25.1355610615,"588":25.1101876608,"589":25.0850384797,"590":25.0597771889,"591":25.0345719529,"592":25.0093386894,"593":24.9841194397,"594":24.9588931831,"595":24.93367043,"596":24.9093716884,"597":24.8867401966,"598":24.86327508,"599":24.8402267757,"600":24.8169700653,"601":24.7938175579,"602":24.770612949,"603":24.7474343909,"604":24.7242428074,"605":24.7010577365,"606":24.6779607903,"607":24.6551591967,"608":24.6322099268,"609":24.609334495,"610":24.5864221441,"611":24.5635282528,"612":24.5406251317,"613":24.5177266255,"614":24.4948258119,"615":24.4719261519,"616":24.4490879774,"617":24.4266690116,"618":24.4040404414,"619":24.3815166734,"620":24.3589405043,"621":24.3363905357,"622":24.3138274669,"623":24.2912709482,"624":24.2687111544,"625":24.2461529982,"626":24.2235771706,"627":24.2004708968,"628":24.177629846,"629":24.1546561838,"630":24.1317488272,"631":24.1088083179,"632":24.0858843849,"633":24.0629521637,"634":24.0400240867,"635":24.0170939375,"636":23.9941648245,"637":23.9702609266,"638":23.9467815652,"639":23.9230899355,"640":23.89950444,"641":23.8758658774,"642":23.8522538484,"643":23.8286285526,"644":23.8050098901,"645":23.781387911,"646":23.7577675902,"647":23.7334763848,"648":23.709400969,"649":23.6852176584,"650":23.6610882951,"651":23.6369319582,"652":23.6127891081,"653":23.5886395146,"654":23.5644932928,"655":23.5403453852,"656":23.5161983205,"657":23.4881389386,"658":23.4607839087,"659":23.4330767028,"660":23.4055455849,"661":23.377926423,"662":23.3503512831,"663":23.3227541322,"664":23.2951679868,"665":23.2675763387,"666":23.2399874419,"667":23.2145361629,"668":23.1890855717,"669":23.1636346366,"670":23.1381838734,"671":23.1127330243,"672":23.0872822181,"673":23.0618313905,"674":23.0363805736,"675":23.0109297513,"676":22.9854789317,"677":22.9595183486,"678":22.9334370331,"679":22.9074160838,"680":22.8813649514,"681":22.8553289105,"682":22.8292853238,"683":22.8032455101,"684":22.7772038099,"685":22.7511630529,"686":22.7251218243,"687":22.699353556,"688":22.6737385773,"689":22.6480469538,"690":22.6223936526,"691":22.5967211903,"692":22.5710583086,"693":22.5453906366,"694":22.5197253597,"695":22.4940588853,"696":22.4683930096,"697":22.4432358001,"698":22.4186072815,"699":22.3937144174,"700":22.368953726,"701":22.3441269482,"702":22.3193332137,"703":22.2945229575,"704":22.2697209622,"705":22.2449148364,"706":22.2201107759,"707":22.1952146423,"708":22.1701551521,"709":22.1451773402,"710":22.1201586892,"711":22.0951604578,"712":22.0701520166,"713":22.0451486802,"714":22.0201427914,"715":21.9951381789,"716":21.9701329282,"717":21.9449486136,"718":21.919187551,"719":21.8937148624,"720":21.8680979868,"721":21.8425532046,"722":21.8169723758,"723":21.7914095703,"724":21.7658377531,"725":21.7402704418,"726":21.7147008776,"727":21.6890300601,"728":21.6626676167,"729":21.6366509863,"730":21.6104614494,"731":21.5843583657,"732":21.5582120554,"733":21.5320873585,"734":21.5059518548,"735":21.4798217545,"736":21.4536889525,"737":21.427489194,"738":21.3991370755,"739":21.3718611369,"740":21.3440471084,"741":21.3165021249,"742":21.2888226188,"743":21.2612103741,"744":21.2335644987,"745":21.2059354386,"746":21.1782979708,"747":21.1506647069,"748":21.1208426174,"749":21.0919738617,"750":21.0626284392,"751":21.03352135,"752":21.0042950942,"753":20.9751284217,"754":20.9459319575,"755":20.9167503892,"756":20.887561373,"757":20.8583760807,"758":20.823402474,"759":20.7902897295,"760":20.7562465538,"761":20.7226685938,"762":20.6888580259,"763":20.655163762,"764":20.6214113461,"765":20.5876880061,"766":20.5539501282,"767":20.5202195193,"768":20.4802507465,"769":20.4414060062,"770":20.4019992497,"771":20.3628735013,"772":20.3236072488,"773":20.2844112484,"774":20.2451801219,"775":20.2059665585,"776":20.1667442135,"777":20.1275262593,"778":20.0859874847,"779":20.0444498078,"780":20.0029115821,"781":19.9613736308,"782":19.9198355422,"783":19.8782975223,"784":19.8367594681,"785":19.795221431,"786":19.7536833854,"787":19.712145344,"788":19.6699329068,"789":19.6275607458,"790":19.5852684467,"791":19.5429362167,"792":19.5006239521,"793":19.4583017048,"794":19.4159844489,"795":19.3736646973,"796":19.3313461935,"797":19.2890270658,"798":19.2445085087,"799":19.1987524411,"800":19.1536151287,"801":19.1081684388,"802":19.0628764376,"803":19.017507092,"804":18.9721764187,"805":18.9268264092,"806":18.8814860678,"807":18.8361408923,"808":18.7909852515,"809":18.7460227166,"810":18.7009636287,"811":18.6559528172,"812":18.6109178676,"813":18.5658949871,"814":18.520866072,"815":18.4758401742,"816":18.4308127677,"817":18.3857861156,"818":18.341509406,"819":18.2985834604,"820":18.2549821328,"821":18.2117184962,"822":18.1682860141,"823":18.1249379548,"824":18.0815476841,"825":18.038178519,"826":17.9947988012,"827":17.9514243597,"828":17.9084474401,"829":17.8667580685,"830":17.8244249229,"831":17.7824136643,"832":17.7402414621,"833":17.6981497318,"834":17.6560177655,"835":17.6139059172,"836":17.5717840099,"837":17.5296671322,"838":17.4886617019,"839":17.455176774,"840":17.417931595,"841":17.3825665416,"842":17.3462614253,"843":17.3104263405,"844":17.2743562399,"845":17.2384036472,"846":17.2023923006,"847":17.166410331,"848":17.1304941673,"849":17.0971209233,"850":17.0624762194,"851":17.0284672455,"852":16.9941404066,"853":16.9599725002,"854":16.9257251275,"855":16.891517488,"856":16.8572899819,"857":16.823072409,"858":16.7888498696,"859":16.7666605738,"860":16.7392308343,"861":16.7144213166,"862":16.688301688,"863":16.6628371148,"864":16.637045014,"865":16.611416677,"866":16.585706458,"867":16.5600371801,"868":16.5343474316,"869":16.5109209038,"870":16.4867650845,"871":16.462973911,"872":16.4390004146,"873":16.4151180796,"874":16.3911901639,"875":16.3672850386,"876":16.343368518,"877":16.3194576951,"878":16.2955440234,"879":16.2789559298,"880":16.2610487763,"881":16.2438011527,"882":16.2262237642,"883":16.2088112581,"884":16.1913163108,"885":16.1738625842,"886":16.1563882472,"887":16.1389242154,"888":16.1214550309,"889":16.1075955749,"890":16.0937348306,"891":16.0798747305,"892":16.0660143083,"893":16.0521540471,"894":16.0382937054,"895":16.024433404,"896":16.0105730824,"897":15.9967127709,"898":15.9828524544,"899":15.9788153382,"900":15.9771047676,"901":15.9742309242,"902":15.9719387172,"903":15.969355692,"904":15.9669180759,"905":15.9644077552,"906":15.9619337868,"907":15.9594416423,"908":15.9569585859,"909":15.9546423138,"910":15.9524246861,"911":15.9501577363,"912":15.9479154475,"913":15.9456608282,"914":15.9434123741,"915":15.9411608374,"916":15.9389108421,"917":15.936660076,"918":15.9344096953,"919":15.9330248349,"920":15.9325390803,"921":15.9316037727,"922":15.9308932416,"923":15.9300703223,"924":15.9293035972,"925":15.9285087749,"926":15.9277280012,"927":15.9269402032,"928":15.9261559174,"929":15.9252408198,"930":15.9240942999,"931":15.9230634912,"932":15.9219748269,"933":15.9209150905,"934":15.9198408901,"935":15.9187739216,"936":15.9177033372,"937":15.9166345608,"938":15.9155648804,"939":15.9129214383,"940":15.9052177977,"941":15.9000442564,"942":15.8936056654,"943":15.8877995993,"944":15.8816772707,"945":15.8757130734,"946":15.8696698104,"947":15.8636660803,"948":15.8576425837,"949":15.8515547825,"950":15.8449612716,"951":15.8386206155,"952":15.832153532,"953":15.8257496622,"954":15.8193141856,"955":15.8128945124,"956":15.8064669374,"957":15.8000433133,"958":15.7936177138,"959":15.787009608,"960":15.774620946,"961":15.765122562,"962":15.754179039,"963":15.7439580856,"964":15.7333758474,"965":15.7229742515,"966":15.7124823345,"967":15.702035578,"968":15.6915662413,"969":15.6811081947,"970":15.6702616598,"971":15.6595846695,"972":15.648822907,"973":15.6381035305,"974":15.627362961,"975":15.6166329881,"976":15.6058977168,"977":15.5951650947,"978":15.584431148,"979":15.5736978637,"980":15.5630840234,"981":15.5524318495,"982":15.5417988424,"983":15.5311562519,"984":15.5205184531,"985":15.5098782584,"986":15.4992392617,"987":15.488599666,"988":15.4779603698,"989":15.4673209239,"990":15.4554829957,"991":15.4438607704,"992":15.4321306936,"993":15.4204545426,"994":15.4087514287,"995":15.3970617962,"996":15.3853654231,"997":15.3736724202,"998":15.3619777322,"999":15.3502838868,"1000":39.8240793591,"1001":39.7871668286,"1002":39.7502175254,"1003":39.7132322803,"1004":39.676210524,"1005":39.6391519881,"1006":39.6020563941,"1007":39.5649235008,"1008":39.5277531028,"1009":39.4905450265,"1010":39.4532991332,"1011":39.416015317,"1012":39.3786935065,"1013":39.3413336634,"1014":39.3039357834,"1015":39.2664998955,"1016":39.2290260626,"1017":39.1915143809,"1018":39.1539649801,"1019":39.1163780233,"1020":39.078753707,"1021":39.0828408153,"1022":39.1115923055,"1023":39.1305253886,"1024":39.1569267267,"1025":39.1821349973,"1026":39.2104756033,"1027":39.2397781289,"1028":39.2711206469,"1029":39.3039569582,"1030":39.3385530927,"1031":39.3760973337,"1032":39.4167425925,"1033":39.458423448,"1034":39.5021681194,"1035":39.5474549509,"1036":39.594537921,"1037":39.6432831373,"1038":39.6937507388,"1039":39.7459039143,"1040":39.7997543985,"1041":39.9016473911,"1042":40.090020851,"1043":40.2422002134,"1044":40.4196448496,"1045":40.5915760606,"1046":40.7733685161,"1047":40.9573134723,"1048":41.1472453695,"1049":41.3412268925,"1050":41.5402067674,"1051":41.7462823345,"1052":41.9654949599,"1053":42.1854629442,"1054":42.4123698393,"1055":42.6431006631,"1056":42.8791930105,"1057":43.1198576553,"1058":43.3654690167,"1059":43.6158197717,"1060":43.8709935787,"1061":44.1447488595,"1062":44.516965643,"1063":44.8504295383,"1064":45.2138603601,"1065":45.5728396052,"1066":45.9445523118,"1067":46.3203750345,"1068":46.7045900696,"1069":47.0950267002,"1070":47.4927409004,"1071":47.8975967706,"1072":48.322707374,"1073":48.7483977051,"1074":49.1844947299,"1075":49.6260509939,"1076":50.0755110911,"1077":50.5316227774,"1078":50.9949825423,"1079":51.4652625966,"1080":51.9425974225,"1081":52.4268904886,"1082":52.8662927818,"1083":53.3337086985,"1084":53.7958346429,"1085":54.2693090163,"1086":54.745786977,"1087":55.2294178747,"1088":55.718103571,"1089":56.2128698702,"1090":56.7131806848,"1091":57.2192809753,"1092":57.7231568853,"1093":58.2350262743,"1094":58.7511107048,"1095":59.2732778012,"1096":59.8005719532,"1097":60.3334493169,"1098":60.8716602426,"1099":61.4153080743,"1100":61.9643197461,"1101":62.5187104836,"1102":62.9501568149,"1103":63.4062977011,"1104":63.8529733453,"1105":64.3072357958,"1106":64.760558314,"1107":65.21719817,"1108":65.6750217438,"1109":66.135090675,"1110":66.5968690468,"1111":67.0606197413,"1112":67.4912493156,"1113":67.9227566561,"1114":68.3550548361,"1115":68.7881683089,"1116":69.2220842912,"1117":69.656804943,"1118":70.0923257006,"1119":70.5286452259,"1120":70.9657606087,"1121":71.4036697298,"1122":71.7374240147,"1123":72.0440506072,"1124":72.3599615619,"1125":72.6668816446,"1126":72.9739783268,"1127":73.2766778774,"1128":73.5772810843,"1129":73.8746506433,"1130":74.1693684134,"1131":74.4611565993,"1132":74.737138061,"1133":75.002570082,"1134":75.2682588368,"1135":75.5288002365,"1136":75.7869150416,"1137":76.0412575892,"1138":76.2925161699,"1139":76.5403618919,"1140":76.7849744388,"1141":77.0262791528,"1142":77.2325157042,"1143":77.4015214919,"1144":77.5818644332,"1145":77.7492206513,"1146":77.9157869862,"1147":78.0754848812,"1148":78.2313764003,"1149":78.3819526301,"1150":78.5279901963,"1151":78.6691228624,"1152":78.8008565137,"1153":78.9192140677,"1154":79.036692509,"1155":79.1470521287,"1156":79.2534388481,"1157":79.3543022325,"1158":79.4504406469,"1159":79.5414778463,"1160":79.6276248473,"1161":79.7087989588,"1162":79.7865524548,"1163":79.8642146287,"1164":79.9347791772,"1165":80.0017788021,"1166":80.0634674369,"1167":80.1207401701,"1168":80.1731710778,"1169":80.2209947484,"1170":80.2641154324,"1171":80.3026024855,"1172":80.3366620935,"1173":80.3675904742,"1174":80.3932164937,"1175":80.4146490335,"1176":80.4313541812,"1177":80.4436199,"1178":80.451323042,"1179":80.4545459716,"1180":80.4532682284,"1181":80.447520701,"1182":80.4387943767,"1183":80.4724685936,"1184":80.4797161931,"1185":80.4950358521,"1186":80.5011801856,"1187":80.5067913996,"1188":80.5075635358,"1189":80.5056653331,"1190":80.5000280005,"1191":80.4912014903,"1192":80.4789263293,"1193":80.4767182746,"1194":80.4657168898,"1195":80.4545486501,"1196":80.4389116585,"1197":80.4209713433,"1198":80.3996587909,"1199":80.3755223427,"1200":80.3483016439,"1201":80.3181406503,"1202":80.2849811187,"1203":80.293635173,"1204":80.2862414043,"1205":80.284044237,"1206":80.2764287332,"1207":80.2687112866,"1208":80.2582422632,"1209":80.2463550829,"1210":80.2323915988,"1211":80.2166894234,"1212":80.1990882624,"1213":80.1881473759,"1214":80.174082631,"1215":80.1591746147,"1216":80.1422918948,"1217":80.1240072361,"1218":80.10404164,"1219":80.0825418954,"1220":80.0594418889,"1221":80.034781933,"1222":80.0085491052,"1223":80.0108103364,"1224":80.0123892891,"1225":80.0133342077,"1226":80.0136371515,"1227":80.0133024009,"1228":80.012331287,"1229":80.0107259728,"1230":80.0084883229,"1231":80.0056203166,"1232":80.0021238719,"1233":80.0041346113,"1234":80.0071523871,"1235":80.0090508388,"1236":80.0108998559,"1237":80.0121654051,"1238":80.0131165662,"1239":80.0136206253,"1240":80.0137458058,"1241":80.0134598475,"1242":80.0127807279,"1243":80.0179079902,"1244":80.0263126482,"1245":80.0328672822,"1246":80.0401440852,"1247":80.046856026,"1248":80.0536475655,"1249":80.0601970404,"1250":80.0666659227,"1251":80.0729740998,"1252":80.0791622524,"1253":80.0869113679,"1254":80.0963469422,"1255":80.1048690241,"1256":80.1137811409,"1257":80.1224310765,"1258":80.1311452859,"1259":80.139760728,"1260":80.148359141,"1261":80.1568998662,"1262":80.1654034441,"1263":80.1720555718,"1264":80.1753654699,"1265":80.180104982,"1266":80.1838833938,"1267":80.1878979313,"1268":80.1915505158,"1269":80.1951409849,"1270":80.1985201625,"1271":80.2017633875,"1272":80.2048337369,"1273":80.2072413874,"1274":80.2078354953,"1275":80.2090270571,"1276":80.2096089127,"1277":80.2101861234,"1278":80.2104570079,"1279":80.2105733788,"1280":80.2104602738,"1281":80.2101561198,"1282":80.2096426452,"1283":80.2060950983,"1284":80.1831264401,"1285":80.1688802675,"1286":80.1492585929,"1287":80.1313193589,"1288":80.1115355083,"1289":80.0916738783,"1290":80.0708540684,"1291":80.0495193435,"1292":80.027451115,"1293":80.0044414918,"1294":79.9706612178,"1295":79.9409757298,"1296":79.9079413745,"1297":79.8752869394,"1298":79.8411513996,"1299":79.8064693395,"1300":79.7707773835,"1301":79.7343111523,"1302":79.6969567502,"1303":79.6587750287,"1304":79.6034116429,"1305":79.5538458116,"1306":79.4995920614,"1307":79.4459018344,"1308":79.3901542109,"1309":79.3336652122,"1310":79.2757822165,"1311":79.2168369379,"1312":79.1566688994,"1313":79.0953637038,"1314":79.0255587402,"1315":78.9567440839,"1316":78.8854398671,"1317":78.8133923505,"1318":78.739734437,"1319":78.664905744,"1320":78.5886925021,"1321":78.5112076183,"1322":78.4324006423,"1323":78.3523027837,"1324":78.2656094448,"1325":78.1784250046,"1326":78.0893409002,"1327":77.9990670391,"1328":77.9072551918,"1329":77.8140859532,"1330":77.7194755306,"1331":77.6234722956,"1332":77.5260585195,"1333":77.4272495031,"1334":77.3319471766,"1335":77.2353984007,"1336":77.137612776,"1337":77.0385933333,"1338":76.9383437827,"1339":76.8368679945,"1340":76.7341696379,"1341":76.6302524857,"1342":76.5251202374,"1343":76.4187766127,"1344":76.3192466369,"1345":76.2206464143,"1346":76.1201963565,"1347":76.0192967779,"1348":75.9172504538,"1349":75.8144104302,"1350":75.7106043019,"1351":75.605922437,"1352":75.5003237921,"1353":75.3938330189,"1354":75.2900594484,"1355":75.187534129,"1356":75.0832690654,"1357":74.9787662152,"1358":74.8732770611,"1359":74.7671794098,"1360":74.6602876763,"1361":74.5526980048,"1362":74.4443656559,"1363":74.3353163235,"1364":74.2320313221,"1365":74.1349576894,"1366":74.034189451,"1367":73.9346940816,"1368":73.8339870461,"1369":73.733312863,"1370":73.6320509084,"1371":73.5305132461,"1372":73.4285455664,"1373":73.3262267459,"1374":73.2265062692,"1375":73.1318816024,"1376":73.0344396366,"1377":72.9381469054,"1378":72.841019086,"1379":72.7440494869,"1380":72.6467421576,"1381":72.5493458627,"1382":72.4517369897,"1383":72.3539781155,"1384":72.2585625717,"1385":72.1711685281,"1386":72.0798602407,"1387":71.9906182372,"1388":71.9004493119,"1389":71.8108502445,"1390":71.7210722,"1391":71.6314892766,"1392":71.5419140819,"1393":71.452439975,"1394":71.3639642928,"1395":71.281967786,"1396":71.1970641713,"1397":71.1139552907,"1398":71.0302872183,"1399":70.9472362558,"1400":70.8642131264,"1401":70.7815114396,"1402":70.6989833463,"1403":70.6167017334,"1404":70.5347970054,"1405":70.4584121949,"1406":70.3797594284,"1407":70.3027389271,"1408":70.2253974811,"1409":70.1487104773,"1410":70.0721886337,"1411":69.9960750827,"1412":69.9202467392,"1413":69.8447636344,"1414":69.7695942456,"1415":69.6983662061,"1416":69.62598934,"1417":69.5547858808,"1418":69.4835921499,"1419":69.4129882904,"1420":69.3426823677,"1421":69.2728185259,"1422":69.2033228603,"1423":69.1342304639,"1424":69.0655218782,"1425":68.9972098627,"1426":68.929282042,"1427":68.8617416569,"1428":68.7945849486,"1429":68.7278116117,"1430":68.6614195709,"1431":68.5954075967,"1432":68.5297740012,"1433":68.4645172935,"1434":68.399635856,"1435":68.3355117127,"1436":68.2717017798,"1437":68.2083065245,"1438":68.1452732894,"1439":68.0826258859,"1440":68.0203498976,"1441":67.9584500118,"1442":67.8969213602,"1443":67.8357638503,"1444":67.7749750023,"1445":67.7119895411,"1446":67.6492947976,"1447":67.5868856792,"1448":67.5247614591,"1449":67.4629205906,"1450":67.4013616781,"1451":67.3400833177,"1452":67.2790841137,"1453":67.2183626847,"1454":67.1579176595,"1455":67.0963082547,"1456":67.0345896517,"1457":66.9732599768,"1458":66.9120672871,"1459":66.8511360563,"1460":66.7904023015,"1461":66.729896347,"1462":66.6696013775,"1463":66.6095241756,"1464":66.5496597508,"1465":66.4884748851,"1466":66.4265940121,"1467":66.3652837736,"1468":66.3039077135,"1469":66.2427832795,"1470":66.1817505297,"1471":66.1208883376,"1472":66.0601561782,"1473":65.9995732572,"1474":65.939128942,"1475":65.8777200959,"1476":65.8152686917,"1477":65.7534653517,"1478":65.6914619326,"1479":65.6296823068,"1480":65.5679138432,"1481":65.5062622916,"1482":65.4446742152,"1483":65.3831757989,"1484":65.3217534396,"1485":65.2598247173,"1486":65.1968978512,"1487":65.1345320737,"1488":65.0719457149,"1489":65.0095297506,"1490":64.9470884185,"1491":64.8847194309,"1492":64.8223737633,"1493":64.7600757802,"1494":64.6978131676,"1495":64.6352007059,"1496":64.5713574996,"1497":64.5081342381,"1498":64.4446036596,"1499":64.3812299082,"1500":64.3177809534,"1501":64.2543729594,"1502":64.1909479838,"1503":64.1275351512,"1504":64.0641200606,"1505":64.0006402992,"1506":63.9366890723,"1507":63.8729610356,"1508":63.8091083845,"1509":63.7453054158,"1510":63.681465208,"1511":63.6176314882,"1512":63.5537826568,"1513":63.489929783,"1514":63.4260676052,"1515":63.3621828147,"1516":63.2977791884,"1517":63.2336088627,"1518":63.169295348,"1519":63.105027377,"1520":63.0407108921,"1521":62.9763932687,"1522":62.9120511603,"1523":62.8476965844,"1524":62.7833238779,"1525":62.7189362194,"1526":62.6548482018,"1527":62.5906166329,"1528":62.5264441115,"1529":62.4622295966,"1530":62.3980239439,"1531":62.333802047,"1532":62.2695767848,"1533":62.2053420446,"1534":62.1411012107,"1535":62.0768529202,"1536":62.0129748786,"1537":61.9489801255,"1538":61.8850476866,"1539":61.8210883307,"1540":61.7571469702,"1541":61.6932014441,"1542":61.6292631299,"1543":61.5653266366,"1544":61.5013949586,"1545":61.4374668981,"1546":61.3734753433,"1547":61.3094984144,"1548":61.2455183872,"1549":61.1815444209,"1550":61.117572247,"1551":61.0536043077,"1552":60.9896396894,"1553":60.9256791553,"1554":60.8617226288,"1555":60.7977704515,"1556":60.734950362,"1557":60.6721678749,"1558":60.6094247175,"1559":60.5467206582,"1560":60.4840558466,"1561":60.4214303576,"1562":60.3588442756,"1563":60.2962976811,"1564":60.2337906509,"1565":60.171323259,"1566":60.109225059,"1567":60.0472542794,"1568":59.9852966579,"1569":59.923409621,"1570":59.8615644334,"1571":59.7997754962,"1572":59.7380356227,"1573":59.6763484154,"1574":59.6147120744,"1575":59.5531274933,"1576":59.4919633088,"1577":59.4310690147,"1578":59.3701396127,"1579":59.3093279596,"1580":59.2485574171,"1581":59.1878661983,"1582":59.1272350604,"1583":59.0666734852,"1584":59.0061765838,"1585":58.9457466454,"1586":58.8854999445,"1587":58.8254449172,"1588":58.7654017112,"1589":58.7054602725,"1590":58.6455753652,"1591":58.585769394,"1592":58.5260309269,"1593":58.4663654476,"1594":58.4067699769,"1595":58.3472457631,"1596":58.2879181838,"1597":58.2288921049,"1598":58.169833119,"1599":58.1109085275,"1600":58.0520343096,"1601":57.993252198,"1602":57.9345410299,"1603":57.8759110939,"1604":57.817356953,"1605":57.7588810344,"1606":57.7004942965,"1607":57.6422251604,"1608":57.5840142119,"1609":57.5258909351,"1610":57.4678402912,"1611":57.4098695225,"1612":57.3519747314,"1613":57.2941575957,"1614":57.23641701,"1615":57.1787532654,"1616":57.1211744234,"1617":57.0637293456,"1618":57.006333797,"1619":56.9490297358,"1620":56.8917959242,"1621":56.8346427489,"1622":56.7775647854,"1623":56.7205645208,"1624":56.6636404912,"1625":56.6067932133,"1626":56.5500199196,"1627":56.4932504763,"1628":56.4365911411,"1629":56.3799884856,"1630":56.3234690557,"1631":56.2670193871,"1632":56.2106460276,"1633":56.1543455192,"1634":56.0981194077,"1635":56.0419667372,"1636":55.9858878022,"1637":55.92974941,"1638":55.8737383842,"1639":55.8177692632,"1640":55.7618846248,"1641":55.7060629915,"1642":55.650314915,"1643":55.5946349258,"1644":55.5390255589,"1645":55.4834853403,"1646":55.4280147929,"1647":55.3725220574,"1648":55.3171252256,"1649":55.2617807265,"1650":55.2065101078,"1651":55.1513023438,"1652":55.0961626849,"1653":55.0410882316,"1654":54.9860801476,"1655":54.9311375524,"1656":54.8762605748,"1657":54.820915361,"1658":54.7657156968,"1659":54.7105193355,"1660":54.6553970074,"1661":54.600313053,"1662":54.5452849714,"1663":54.4903036734,"1664":54.4353733495,"1665":54.380491537,"1666":54.3256590869,"1667":54.271166875,"1668":54.2167317187,"1669":54.1623535991,"1670":54.1080321846,"1671":54.0537671354,"1672":53.9995581366,"1673":53.945404845,"1674":53.8913069242,"1675":53.8372640264,"1676":53.7832758023,"1677":53.7292723809,"1678":53.6753044288,"1679":53.6213957064,"1680":53.567533747,"1681":53.5137242605,"1682":53.4599638537,"1683":53.4062536868,"1684":53.3525926432,"1685":53.298980746,"1686":53.2454174508,"1687":53.1919396917,"1688":53.1385318857,"1689":53.085162992,"1690":53.0318480573,"1691":52.9785790353,"1692":52.9253594456,"1693":52.8721870316,"1694":52.8190624351,"1695":52.7659848594,"1696":52.7129542386,"1697":52.6600395611,"1698":52.6072452914,"1699":52.5544652005,"1700":52.5017521112,"1701":52.4490791721,"1702":52.3964594166,"1703":52.3438859447,"1704":52.2913620502,"1705":52.2388881124,"1706":52.1864680934,"1707":52.1340923237,"1708":52.0817538682,"1709":52.0294886224,"1710":51.9772833182,"1711":51.9251493035,"1712":51.873085595,"1713":51.8210973602,"1714":51.7691866722,"1715":51.7173571303,"1716":51.6656115472,"1717":51.6139286407,"1718":51.5622564987,"1719":51.5107137818,"1720":51.4592455393,"1721":51.4078837419,"1722":51.3566168314,"1723":51.3054549798,"1724":51.2543974499,"1725":51.2034489141,"1726":51.1526112919,"1727":51.1018738673,"1728":51.0511584838,"1729":51.0006065654,"1730":50.9501513045,"1731":50.8998301213,"1732":50.8496282234,"1733":50.7995568651,"1734":50.7496142067,"1735":50.6998048836,"1736":50.6501302185,"1737":50.6005837978,"1738":50.5508832712,"1739":50.5014625883,"1740":50.4521076816,"1741":50.4029289239,"1742":50.353874272,"1743":50.304972817,"1744":50.2562129816,"1745":50.2076034236,"1746":50.1591425804,"1747":50.1108338947,"1748":50.0623799956,"1749":50.0142022791,"1750":49.9661106469,"1751":49.9182024535,"1752":49.8704311387,"1753":49.8228219949,"1754":49.7753642643,"1755":49.7280650915,"1756":49.680922545,"1757":49.6339391049,"1758":49.586325819,"1759":49.5391035923,"1760":49.4918988155,"1761":49.4448993979,"1762":49.398012327,"1763":49.3512849229,"1764":49.3046942033,"1765":49.2582522021,"1766":49.2119533091,"1767":49.1658006003,"1768":49.1189424699,"1769":49.0723580589,"1770":49.0258206219,"1771":48.9794432132,"1772":48.9331690314,"1773":48.8870260323,"1774":48.8409996666,"1775":48.7950965029,"1776":48.7493124194,"1777":48.7036485089,"1778":48.6577869367,"1779":48.6120342679,"1780":48.5663889187,"1781":48.52085011,"1782":48.4754167044,"1783":48.4300875896,"1784":48.3848615284,"1785":48.3397372281,"1786":48.2947133094,"1787":48.2497883242,"1788":48.2048687817,"1789":48.1600205915,"1790":48.1152740009,"1791":48.0706112659,"1792":48.026038625,"1793":47.9815502105,"1794":47.9371461166,"1795":47.8928233635,"1796":47.8485804191,"1797":47.8044149404,"1798":47.7600249272,"1799":47.7155306066,"1800":47.6711775305,"1801":47.6268391711,"1802":47.582575422,"1803":47.5383528038,"1804":47.4941844734,"1805":47.4500601999,"1806":47.4059813839,"1807":47.3619435495,"1808":47.317970618,"1809":47.2740612239,"1810":47.2301740307,"1811":47.1863257583,"1812":47.1425039909,"1813":47.0987108473,"1814":47.0549411344,"1815":47.0111932758,"1816":46.9674638496,"1817":46.9237503226,"1818":46.8801520067,"1819":46.8367509438,"1820":46.7932734493,"1821":46.7498522968,"1822":46.7064166336,"1823":46.6629974795,"1824":46.6195748903,"1825":46.5761543973,"1826":46.5327287876,"1827":46.4892972185,"1828":46.4459102335,"1829":46.4026878285,"1830":46.359368872,"1831":46.3160797684,"1832":46.2727528351,"1833":46.2294175231,"1834":46.1860547305,"1835":46.1426696666,"1836":46.0992554215,"1837":46.0558111869,"1838":46.0124850615,"1839":45.970152706,"1840":45.9273031604,"1841":45.8846893134,"1842":45.841930314,"1843":45.7992126314,"1844":45.7564390781,"1845":45.7136543942,"1846":45.6708324425,"1847":45.6279826197,"1848":45.5851076321,"1849":45.5425432669,"1850":45.4997772681,"1851":45.4570629976,"1852":45.4142705135,"1853":45.3714617712,"1854":45.3286028801,"1855":45.285708008,"1856":45.2427674266,"1857":45.1997834931,"1858":45.1567526619,"1859":45.1153151155,"1860":45.0731617478,"1861":45.0313446693,"1862":44.9893355504,"1863":44.9473968203,"1864":44.9053955997,"1865":44.8633968281,"1866":44.8213666808,"1867":44.7793208634,"1868":44.7372504623,"1869":44.6954662575,"1870":44.6535686708,"1871":44.6117040144,"1872":44.5697985912,"1873":44.5278888535,"1874":44.4859563063,"1875":44.4440100543,"1876":44.4020455236,"1877":44.3600650961,"1878":44.3180677873,"1879":44.2770531971,"1880":44.2358718915,"1881":44.1947901761,"1882":44.1536755514,"1883":44.1125947937,"1884":44.0715151624,"1885":44.0304537394,"1886":43.9894027641,"1887":43.9483669575,"1888":43.9073448552,"1889":43.8668300421,"1890":43.8263451089,"1891":43.7858916835,"1892":43.7454701609,"1893":43.7050813214,"1894":43.6647258285,"1895":43.6244044129,"1896":43.584117789,"1897":43.5438666902,"1898":43.5036518486,"1899":43.4648135908,"1900":43.4263694075,"1901":43.3878552215,"1902":43.3495050124,"1903":43.3112024633,"1904":43.2730066538,"1905":43.2348889089,"1906":43.1968644353,"1907":43.1589264905,"1908":43.1210793008,"1909":43.0833449663,"1910":43.045715423,"1911":43.0081714747,"1912":42.9707235814,"1913":42.9333673379,"1914":42.8961057783,"1915":42.8589382167,"1916":42.82186583,"1917":42.7848888676,"1918":42.7480080485,"1919":42.7113419208,"1920":42.6748985297,"1921":42.6384965541,"1922":42.6022242599,"1923":42.5660341376,"1924":42.5299464823,"1925":42.4939476844,"1926":42.4580411056,"1927":42.4222216374,"1928":42.3864884237,"1929":42.3508209004,"1930":42.3152025826,"1931":42.279677631,"1932":42.2442205808,"1933":42.208840865,"1934":42.1735304758,"1935":42.1382901501,"1936":42.1031162742,"1937":42.0680074328,"1938":42.0329611348,"1939":41.9977607758,"1940":41.9619225564,"1941":41.9264590665,"1942":41.8908599015,"1943":41.855377507,"1944":41.8198826655,"1945":41.7844370716,"1946":41.7490069817,"1947":41.713606402,"1948":41.678225493,"1949":41.6428562512,"1950":41.6074363763,"1951":41.5720654689,"1952":41.5366909192,"1953":41.5013363804,"1954":41.465987382,"1955":41.4306485538,"1956":41.3953150083,"1957":41.3599866515,"1958":41.3246610277,"1959":41.2893118747,"1960":41.2531734473,"1961":41.2174035726,"1962":41.1814198904,"1963":41.1455115709,"1964":41.1095317773,"1965":41.0735517708,"1966":41.0375337912,"1967":41.0014946305,"1968":40.9654238443,"1969":40.9293246465,"1970":40.8931412543,"1971":40.8569469503,"1972":40.8207064069,"1973":40.7844354609,"1974":40.7481243968,"1975":40.7117763209,"1976":40.6753879711,"1977":40.6389593133,"1978":40.6024887435,"1979":40.565975487,"1980":40.529434733,"1981":40.4928444596,"1982":40.4562114272,"1983":40.4195308577,"1984":40.3828037891,"1985":40.3460283976,"1986":40.309204337,"1987":40.2723305694,"1988":40.2354064501,"1989":40.1984311851,"1990":40.1612406558,"1991":40.124022278,"1992":40.0867319248,"1993":40.0493907274,"1994":40.0119872709,"1995":39.9745264554,"1996":39.937005074,"1997":39.8994240221,"1998":39.8617821934,"1999":39.8240795319,"2000":3.4353002798,"2001":3.4355000114,"2002":3.4356997513,"2003":3.435899487,"2004":3.4360992248,"2005":3.4362989616,"2006":3.4364986989,"2007":3.4366984359,"2008":3.436898173,"2009":3.4370979101,"2010":3.4372976472,"2011":3.4374973843,"2012":3.4376971214,"2013":3.4378968585,"2014":3.4380965957,"2015":3.4382963328,"2016":3.4384960699,"2017":3.438695807,"2018":3.4388955441,"2019":3.4390952812,"2020":3.4392950183,"2021":3.5631272281,"2022":3.7565027038,"2023":3.9151065466,"2024":4.0910962058,"2025":4.2583929568,"2026":4.4300361619,"2027":4.5995061399,"2028":4.7700627315,"2029":4.9400760163,"2030":5.1103609545,"2031":5.2844436368,"2032":5.4626790944,"2033":5.6388381644,"2034":5.8160354282,"2035":5.992713595,"2036":6.1696513104,"2037":6.3464592515,"2038":6.5233320797,"2039":6.7001724643,"2040":6.8770290708,"2041":7.1442697269,"2042":7.5742203274,"2043":7.9228159558,"2044":8.3120890702,"2045":8.6810234416,"2046":9.0601271845,"2047":9.4341462417,"2048":9.8107076417,"2049":10.1859978703,"2050":10.5619236846,"2051":10.9425840541,"2052":11.3396430101,"2053":11.7285026729,"2054":12.1214619822,"2055":12.5123714683,"2056":12.904305866,"2057":13.2957278079,"2058":13.6874059777,"2059":14.0789560336,"2060":14.4705701464,"2061":14.8694965474,"2062":15.3180131005,"2063":15.7417345775,"2064":16.1778535925,"2065":16.6077738385,"2066":17.040793469,"2067":17.4722634073,"2068":17.9045081917,"2069":18.336365553,"2070":18.7684166259,"2071":19.200593146,"2072":19.639820638,"2073":20.075522644,"2074":20.512987393,"2075":20.9495707705,"2076":21.3865948337,"2077":21.8233985541,"2078":22.2603124459,"2079":22.697171252,"2080":23.134057601,"2081":23.5709301785,"2082":23.6815385904,"2083":23.9342293399,"2084":24.1158789206,"2085":24.3330490856,"2086":24.5324589585,"2087":24.7407489775,"2088":24.9445989234,"2089":25.1506689059,"2090":25.3556288701,"2091":25.5611438434,"2092":25.7172922521,"2093":25.8893580396,"2094":26.0534651377,"2095":26.2215515804,"2096":26.3876483508,"2097":26.5547399574,"2098":26.7213341459,"2099":26.8881770435,"2100":27.0548955865,"2101":27.2216763068,"2102":27.086919319,"2103":27.006449067,"2104":26.898835447,"2105":26.8047935111,"2106":26.7039657331,"2107":26.6065308762,"2108":26.5073995587,"2109":26.4091164715,"2110":26.3104092692,"2111":26.2119141245,"2112":26.0678094115,"2113":25.9237577129,"2114":25.7796795071,"2115":25.6356145549,"2116":25.4915429759,"2117":25.3474747103,"2118":25.203404788,"2119":25.059335694,"2120":24.9152661859,"2121":24.7711968849,"2122":24.5627605042,"2123":24.3390793651,"2124":24.1230206053,"2125":23.9031506558,"2126":23.6851863011,"2127":23.4662691491,"2128":23.2478283957,"2129":23.029149443,"2130":22.8105895899,"2131":22.591970187,"2132":22.3653893484,"2133":22.1342985662,"2134":21.9054627558,"2135":21.6754994595,"2136":21.4460999061,"2137":21.2164184813,"2138":20.9868779922,"2139":20.7572670352,"2140":20.5276913122,"2141":20.2980979722,"2142":20.107310297,"2143":19.9568072605,"2144":19.7861619047,"2145":19.6255877086,"2146":19.4599779326,"2147":19.2968859465,"2148":19.1325350655,"2149":18.9688136319,"2150":18.8047774746,"2151":18.6408986792,"2152":18.4827221661,"2153":18.3349907272,"2154":18.1820367512,"2155":18.0316940438,"2156":17.8800457021,"2157":17.7290501775,"2158":17.5777282443,"2159":17.4265695155,"2160":17.2753291845,"2161":17.1241296546,"2162":16.9953927352,"2163":16.9389328375,"2164":16.846334429,"2165":16.7718052758,"2166":16.688241495,"2167":16.609195028,"2168":16.5278899041,"2169":16.4477141087,"2170":16.366973649,"2171":16.2865155215,"2172":16.2089929844,"2173":16.1523091372,"2174":16.0852059451,"2175":16.0233124254,"2176":15.9588140694,"2177":15.8956181316,"2178":15.8317709848,"2179":15.7682494424,"2180":15.7045650978,"2181":15.6409621544,"2182":15.5788071492,"2183":15.5635646192,"2184":15.5248658516,"2185":15.4978952028,"2186":15.4650604947,"2187":15.4351578162,"2188":15.4037891228,"2189":15.3731534369,"2190":15.3421512473,"2191":15.3113323095,"2192":15.2804217458,"2193":15.2626547667,"2194":15.2391610129,"2195":15.2185306464,"2196":15.1964685862,"2197":15.1751223729,"2198":15.1534182362,"2199":15.1318930611,"2200":15.1102784052,"2201":15.0887084898,"2202":15.0671162041,"2203":15.0532277107,"2204":15.036861001,"2205":15.0217333995,"2206":15.0059862439,"2207":14.9905488653,"2208":14.9749565982,"2209":14.9594417754,"2210":14.9438882305,"2211":14.9283540466,"2212":14.9128101822,"2213":14.8978727967,"2214":14.8828246962,"2215":14.8678319532,"2216":14.8528115314,"2217":14.837804949,"2218":14.8227914469,"2219":14.8077814047,"2220":14.7927696326,"2221":14.7777587254,"2222":14.7627473857,"2223":14.7404281674,"2224":14.7181088409,"2225":14.6957895686,"2226":14.6734702691,"2227":14.6511509833,"2228":14.6288316906,"2229":14.6065124013,"2230":14.5841931104,"2231":14.5618738202,"2232":14.5395545297,"2233":14.5150554001,"2234":14.4900399926,"2235":14.4652827241,"2236":14.4403963861,"2237":14.4155745828,"2238":14.3907205122,"2239":14.3658825752,"2240":14.3410365715,"2241":14.3161946011,"2242":14.291350614,"2243":14.2582098036,"2244":14.2204009587,"2245":14.184926131,"2246":14.1482842947,"2247":14.1122259627,"2248":14.0758758786,"2249":14.0396716705,"2250":14.0033945244,"2251":13.9671538473,"2252":13.9308949357,"2253":13.8923585953,"2254":13.851443206,"2255":13.8117173412,"2256":13.7713967141,"2257":13.7313734681,"2258":13.6912015316,"2259":13.6511039404,"2260":13.6109691765,"2261":13.570852999,"2262":13.5307275283,"2263":13.4854733108,"2264":13.4309766619,"2265":13.3811012287,"2266":13.3289151877,"2267":13.2778844505,"2268":13.2262760615,"2269":13.1749564984,"2270":13.1234925223,"2271":13.0721007527,"2272":13.0206728799,"2273":12.9678550002,"2274":12.9105021925,"2275":12.8554168488,"2276":12.7991977731,"2277":12.7435455634,"2278":12.6876099207,"2279":12.6318159945,"2280":12.57595121,"2281":12.5201218547,"2282":12.4642747848,"2283":12.4038767412,"2284":12.3126954099,"2285":12.2369057225,"2286":12.1534202131,"2287":12.0737826147,"2288":11.9922210608,"2289":11.9116214846,"2290":11.8305409196,"2291":11.749700849,"2292":11.6687405312,"2293":11.5873269039,"2294":11.4897100735,"2295":11.4001948447,"2296":11.306628815,"2297":11.2150881858,"2298":11.1225348564,"2299":11.0304878771,"2300":10.9381877227,"2301":10.8460141559,"2302":10.7537772952,"2303":10.6615720815,"2304":10.5720007637,"2305":10.4812834476,"2306":10.3911391307,"2307":10.3007083141,"2308":10.2104207474,"2309":10.1200615558,"2310":10.0297381766,"2311":9.9393968912,"2312":9.8490645589,"2313":9.75872775,"2314":9.6700658465,"2315":9.5808651808,"2316":9.4919338962,"2317":9.402867921,"2318":9.3138692911,"2319":9.2248369886,"2320":9.1358215224,"2321":9.0467976381,"2322":8.9577779628,"2323":8.868756183,"2324":8.7982493562,"2325":8.7244095012,"2326":8.6522361603,"2327":8.5792295623,"2328":8.5066395928,"2329":8.4338413091,"2330":8.3611471825,"2331":8.2884009774,"2332":8.2156808115,"2333":8.142947626,"2334":8.0909400515,"2335":8.038929222,"2336":7.98692002,"2337":7.9349100042,"2338":7.8829003953,"2339":7.830890583,"2340":7.7788808724,"2341":7.7268711109,"2342":7.6748613749,"2343":7.6228516261,"2344":7.5895916079,"2345":7.5607723105,"2346":7.5297326527,"2347":7.4998031751,"2348":7.4693186075,"2349":7.4391115848,"2350":7.4087657897,"2351":7.3784893808,"2352":7.3481782788,"2353":7.3178845233,"2354":7.29603803,"2355":7.278952337,"2356":7.2594862439,"2357":7.2412103509,"2358":7.2223393578,"2359":7.2037659147,"2360":7.1850436966,"2361":7.1663958661,"2362":7.1477108417,"2363":7.1290444143,"2364":7.1161727189,"2365":7.109332935,"2366":7.0994771954,"2367":7.0911294336,"2368":7.0820276829,"2369":7.0733029267,"2370":7.0643896733,"2371":7.0555706684,"2372":7.0467045393,"2373":7.0378619723,"2374":7.0316429151,"2375":7.0301732721,"2376":7.0263289221,"2377":7.0236719255,"2378":7.0204212522,"2379":7.0174674173,"2380":7.0143651632,"2381":7.0113371187,"2382":7.0082719694,"2383":7.0052253725,"2384":7.0025757412,"2385":7.0012365257,"2386":6.9992421023,"2387":6.9975752828,"2388":6.9957446613,"2389":6.9939959408,"2390":6.9922062699,"2391":6.9904370742,"2392":6.9886576408,"2393":6.9868833263,"2394":6.985237528,"2395":6.9844777702,"2396":6.9832749921,"2397":6.9822937242,"2398":6.9812017012,"2399":6.9801650557,"2400":6.9791007215,"2401":6.9780502316,"2402":6.9769928196,"2403":6.9759388686,"2404":6.974817658,"2405":6.971633143,"2406":6.9694802802,"2407":6.9668115913,"2408":6.9644008154,"2409":6.961861083,"2410":6.9593858289,"2411":6.9568783357,"2412":6.954386962,"2413":6.9518875285,"2414":6.949392125,"2415":6.9453283791,"2416":6.941947751,"2417":6.938225564,"2418":6.9346741565,"2419":6.9310373592,"2420":6.9274432569,"2421":6.923827807,"2422":6.9202230309,"2423":6.916612918,"2424":6.9130054734,"2425":6.9063319711,"2426":6.9006442255,"2427":6.8944636016,"2428":6.8885294169,"2429":6.8824720125,"2430":6.876476218,"2431":6.8704496186,"2432":6.8644384216,"2433":6.8584195234,"2434":6.8524044758,"2435":6.8432632483,"2436":6.8346853494,"2437":6.8258257862,"2438":6.8171070551,"2439":6.8083179079,"2440":6.7995639688,"2441":6.7907924257,"2442":6.7820296845,"2443":6.7732625424,"2444":6.7644976008,"2445":6.7550520702,"2446":6.7456070898,"2447":6.7361618343,"2448":6.7267167163,"2449":6.7172715295,"2450":6.7078263772,"2451":6.6983812076,"2452":6.6889360467,"2453":6.6794908814,"2454":6.6700457183,"2455":6.6596806919,"2456":6.649097804,"2457":6.6386238468,"2458":6.6280954243,"2459":6.6175942344,"2460":6.6070794282,"2461":6.5965714302,"2462":6.5860600281,"2463":6.575550328,"2464":6.565039777,"2465":6.5546747228,"2466":6.5443910585,"2467":6.5340666992,"2468":6.5237626874,"2469":6.5134485019,"2470":6.5031394033,"2471":6.4928277612,"2472":6.4825173908,"2473":6.4722063846,"2474":6.4618956963,"2475":6.4516955039,"2476":6.4416103019,"2477":6.4314676047,"2478":6.421353655,"2479":6.4112253316,"2480":6.4011041951,"2481":6.3909794651,"2482":6.3808565319,"2483":6.3707327003,"2484":6.3606093178,"2485":6.3508899261,"2486":6.3418982342,"2487":6.3325426924,"2488":6.3233690755,"2489":6.3141044962,"2490":6.3048853981,"2491":6.2956435594,"2492":6.286413091,"2493":6.2771769374,"2494":6.2679436264,"2495":6.2589870242,"2496":6.2509251219,"2497":6.2424158696,"2498":6.2341302924,"2499":6.2257328776,"2500":6.2173913816,"2501":6.2090219262,"2502":6.2006664505,"2503":6.1923039849,"2504":6.1839450143,"2505":6.1757416592,"2506":6.1686013777,"2507":6.1609295594,"2508":6.1535235094,"2509":6.1459845753,"2510":6.1385120833,"2511":6.1310063703,"2512":6.1235172677,"2513":6.1160198599,"2514":6.1085266048,"2515":6.1010721464,"2516":6.0949062302,"2517":6.0880960429,"2518":6.0816079911,"2519":6.0749588716,"2520":6.0683902859,"2521":6.0617814333,"2522":6.0551927142,"2523":6.0485939284,"2524":6.0420001759,"2525":6.0354039067,"2526":6.0295542439,"2527":6.0233793648,"2528":6.0173670939,"2529":6.0112735189,"2530":6.0052205959,"2531":5.999147347,"2532":5.993084261,"2533":5.9870160935,"2534":5.9809504668,"2535":5.9748835697,"2536":5.9695354493,"2537":5.9639561801,"2538":5.9584924853,"2539":5.9529710033,"2540":5.9474784149,"2541":5.9419713796,"2542":5.9364715678,"2543":5.9309681443,"2544":5.9254665267,"2545":5.9199640061,"2546":5.9140571118,"2547":5.9082228603,"2548":5.9023522875,"2549":5.8964998753,"2550":5.8906383828,"2551":5.8847814304,"2552":5.878922208,"2553":5.8730641206,"2554":5.8672054657,"2555":5.8613470946,"2556":5.8562058775,"2557":5.8510647313,"2558":5.8459235497,"2559":5.8407823858,"2560":5.835641213,"2561":5.8305000447,"2562":5.8253588741,"2563":5.8202177047,"2564":5.8150765347,"2565":5.809935365,"2566":5.8047216443,"2567":5.7994907405,"2568":5.7942684283,"2569":5.7890418203,"2570":5.7838173602,"2571":5.7785918261,"2572":5.773366829,"2573":5.7681415635,"2574":5.7629164321,"2575":5.7576912337,"2576":5.752384795,"2577":5.747032623,"2578":5.7417033177,"2579":5.736362579,"2580":5.7310275571,"2581":5.7256896767,"2582":5.7203532256,"2583":5.7150160598,"2584":5.7096792514,"2585":5.7043422643,"2586":5.6989173221,"2587":5.6934009044,"2588":5.6879302245,"2589":5.6824366757,"2590":5.6769545613,"2591":5.6714667297,"2592":5.6659817567,"2593":5.6604953544,"2594":5.6550096668,"2595":5.6495236218,"2596":5.6439399391,"2597":5.6381800975,"2598":5.6325083354,"2599":5.6267925335,"2600":5.6210987515,"2601":5.6153939595,"2602":5.6096946725,"2603":5.603992633,"2604":5.5982919698,"2605":5.5925906185,"2606":5.5868534637,"2607":5.5809999484,"2608":5.5752046133,"2609":5.5693801881,"2610":5.563570308,"2611":5.5577531553,"2612":5.551939639,"2613":5.5461243045,"2614":5.540309879,"2615":5.534494999,"2616":5.5286493928,"2617":5.5225947371,"2618":5.5166446061,"2619":5.5106422128,"2620":5.5046659506,"2621":5.4986766228,"2622":5.4926938279,"2623":5.4867077665,"2624":5.4807233384,"2625":5.4747380936,"2626":5.4687511044,"2627":5.4626961001,"2628":5.4566751033,"2629":5.4506371027,"2630":5.4446076041,"2631":5.4385738545,"2632":5.4325422303,"2633":5.4265095435,"2634":5.4204773879,"2635":5.4144449668,"2636":5.4084126784,"2637":5.4022857913,"2638":5.3962001047,"2639":5.3900938179,"2640":5.3839978312,"2641":5.3778966944,"2642":5.3717981326,"2643":5.3656982834,"2644":5.3595990779,"2645":5.3534995505,"2646":5.3474001841,"2647":5.3413170355,"2648":5.3352286885,"2649":5.3291429407,"2650":5.3230558932,"2651":5.3169694956,"2652":5.3108827731,"2653":5.3047962131,"2654":5.2987095718,"2655":5.2926229711,"2656":5.2865363501,"2657":5.2798020684,"2658":5.2731843624,"2659":5.2665083685,"2660":5.2598615186,"2661":5.2532000966,"2662":5.2465459607,"2663":5.2398881818,"2664":5.2332322244,"2665":5.2265753562,"2666":5.2199189434,"2667":5.2139312114,"2668":5.2079435933,"2669":5.2019559182,"2670":5.1959682716,"2671":5.1899806108,"2672":5.1839929571,"2673":5.1780052998,"2674":5.1720176443,"2675":5.166029988,"2676":5.160042332,"2677":5.1541618841,"2678":5.1483068277,"2679":5.1424390755,"2680":5.1365776713,"2681":5.130713093,"2682":5.1248501018,"2683":5.1189863171,"2684":5.1131229291,"2685":5.1072593427,"2686":5.1013958555,"2687":5.095694362,"2688":5.0900840427,"2689":5.0844281362,"2690":5.0787950233,"2691":5.0731505137,"2692":5.0675117024,"2693":5.0618700419,"2694":5.056229806,"2695":5.0505888579,"2696":5.0449482658,"2697":5.0396040766,"2698":5.0345679643,"2699":5.0293778135,"2700":5.0242646819,"2701":5.0191130407,"2702":5.0139806543,"2703":5.0088386406,"2704":5.0037014405,"2705":4.9985618336,"2706":4.9934234301,"2707":4.9881968913,"2708":4.9828130929,"2709":4.9775079243,"2710":4.9721634407,"2711":4.9668386147,"2712":4.9615039599,"2713":4.9561742195,"2714":4.9508420219,"2715":4.9455110529,"2716":4.9401794696,"2717":4.9346829776,"2718":4.9286552809,"2719":4.9228931865,"2720":4.9169982909,"2721":4.911169796,"2722":4.9053081008,"2723":4.8994630057,"2724":4.8936096105,"2725":4.8877603653,"2726":4.8819090452,"2727":4.8760207739,"2728":4.8698755605,"2729":4.8638588182,"2730":4.8577778403,"2731":4.8517289802,"2732":4.8456640612,"2733":4.8396071716,"2734":4.8335462674,"2735":4.8274873704,"2736":4.8214274699,"2737":4.8153445763,"2738":4.8085213457,"2739":4.8020682836,"2740":4.7954301372,"2741":4.788884533,"2742":4.7822926577,"2743":4.7757239179,"2744":4.7691436104,"2745":4.7625690867,"2746":4.7559916711,"2747":4.7494157015,"2748":4.7421431639,"2749":4.7351740171,"2750":4.728053175,"2751":4.7210081805,"2752":4.7139252622,"2753":4.7068613057,"2754":4.6997878684,"2755":4.6927191715,"2756":4.6856481044,"2757":4.6785782223,"2758":4.6696766834,"2759":4.6613639972,"2760":4.6527568846,"2761":4.6442969852,"2762":4.6357634793,"2763":4.6272667766,"2764":4.6187516722,"2765":4.6102457687,"2766":4.6017352648,"2767":4.5932270611,"2768":4.5832421239,"2769":4.5735233669,"2770":4.5636715198,"2771":4.5538862177,"2772":4.5440676431,"2773":4.5342657048,"2774":4.5244554483,"2775":4.5146493509,"2776":4.504841174,"2777":4.4950340368,"2778":4.485030871,"2779":4.4750279652,"2780":4.4650249294,"2781":4.4550219586,"2782":4.4450189554,"2783":4.4350159683,"2784":4.4250129731,"2785":4.415009982,"2786":4.4050069889,"2787":4.3950039968,"2788":4.3850426963,"2789":4.3750912705,"2790":4.3651349074,"2791":4.355181013,"2792":4.3452258842,"2793":4.3352713726,"2794":4.3253165524,"2795":4.3153618865,"2796":4.3054071434,"2797":4.2954524389,"2798":4.2856337069,"2799":4.2758914798,"2800":4.2661110002,"2801":4.2563496469,"2802":4.2465787304,"2803":4.2368125955,"2804":4.2270440698,"2805":4.2172767396,"2806":4.2075088116,"2807":4.1977411825,"2808":4.1881335605,"2809":4.1786923296,"2810":4.1691679032,"2811":4.1596850745,"2812":4.150181447,"2813":4.1406882189,"2814":4.1311897911,"2815":4.1216939631,"2816":4.1121968352,"2817":4.1027003573,"2818":4.0937424774,"2819":4.0857548214,"2820":4.0772820534,"2821":4.0690518414,"2822":4.0607003515,"2823":4.0524095005,"2824":4.04408833,"2825":4.0357823193,"2826":4.0274687287,"2827":4.019158928,"2828":4.0109642615,"2829":4.0031467079,"2830":3.9951405979,"2831":3.987228766,"2832":3.9792697951,"2833":3.9713343937,"2834":3.9633872075,"2835":3.9554459137,"2836":3.9475016738,"2837":3.9395589069,"2838":3.9319166354,"2839":3.9263080477,"2840":3.9196826181,"2841":3.9135656095,"2842":3.9071943904,"2843":3.9009502765,"2844":3.8946426101,"2845":3.8883667199,"2846":3.8820749415,"2847":3.8757911073,"2848":3.8695193901,"2849":3.8637564666,"2850":3.8577391462,"2851":3.8518490243,"2852":3.8458953031,"2853":3.8399733815,"2854":3.8340355602,"2855":3.8281056887,"2856":3.8221718423,"2857":3.8162399834,"2858":3.8103071307,"2859":3.8065702978,"2860":3.8018771016,"2861":3.797662087,"2862":3.7932079816,"2863":3.7888734217,"2864":3.784479089,"2865":3.7801146426,"2866":3.7757352531,"2867":3.7713633352,"2868":3.7669876815,"2869":3.7629406808,"2870":3.758787708,"2871":3.7546877213,"2872":3.7505612415,"2873":3.7464480083,"2874":3.7423281518,"2875":3.7382116069,"2876":3.7340934062,"2877":3.7299760334,"2878":3.7258582467,"2879":3.7225045641,"2880":3.7190132765,"2881":3.7155907914,"2882":3.7121339051,"2883":3.7086942194,"2884":3.7052459334,"2885":3.7018019475,"2886":3.6983558116,"2887":3.6949107506,"2888":3.6914651522,"2889":3.6887290153,"2890":3.685992744,"2891":3.6832565399,"2892":3.6805203021,"2893":3.6777840812,"2894":3.6750478519,"2895":3.6723116268,"2896":3.6695753996,"2897":3.6668391734,"2898":3.6641029467,"2899":3.6636883855,"2900":3.6638236921,"2901":3.6636840648,"2902":3.6636819045,"2903":3.6636110108,"2904":3.6635744837,"2905":3.6635207733,"2906":3.6634756545,"2907":3.66342624,"2908":3.6633789733,"2909":3.6632328175,"2910":3.6630321776,"2911":3.6628587797,"2912":3.6626717608,"2913":3.6624915524,"2914":3.6623079388,"2915":3.6621260278,"2916":3.6619432654,"2917":3.6617609288,"2918":3.6615783793,"2919":3.6603459476,"2920":3.6580230899,"2921":3.6562454452,"2922":3.654195194,"2923":3.652281246,"2924":3.6502991464,"2925":3.6483511227,"2926":3.646386061,"2927":3.6444295183,"2928":3.6424687161,"2929":3.6404366108,"2930":3.6382712615,"2931":3.6361725342,"2932":3.634040496,"2933":3.6319251132,"2934":3.6298014027,"2935":3.627681856,"2936":3.6255602275,"2937":3.6234396398,"2938":3.6213185317,"2939":3.6186559654,"2940":3.6142520312,"2941":3.6107187809,"2942":3.6067501886,"2943":3.6029992674,"2944":3.5991395106,"2945":3.5953341716,"2946":3.5915016237,"2947":3.5876826802,"2948":3.5838569345,"2949":3.5800233997,"2950":3.5761126299,"2951":3.5722404776,"2952":3.5683490165,"2953":3.5644672098,"2954":3.5605805759,"2955":3.5566963557,"2956":3.5528109286,"2957":3.5489261049,"2958":3.5450409795,"2959":3.5411765009,"2960":3.5379575679,"2961":3.534415862,"2962":3.5310355426,"2963":3.52757453,"2964":3.524153864,"2965":3.5207130246,"2966":3.517282272,"2967":3.513846476,"2968":3.5104132016,"2969":3.5069786665,"2970":3.5036317151,"2971":3.5002465817,"2972":3.4968805392,"2973":3.4935049513,"2974":3.4901341362,"2975":3.4867609347,"2976":3.4833889263,"2977":3.4800163214,"2978":3.4766440147,"2979":3.473271559,"2980":3.4717860203,"2981":3.4696939593,"2982":3.4679051595,"2983":3.4659647291,"2984":3.4641001139,"2985":3.4621975912,"2986":3.4603140222,"2987":3.4584209764,"2988":3.456532669,"2989":3.4546419923,"2990":3.4527026005,"2991":3.4507715983,"2992":3.4488364013,"2993":3.4469033017,"2994":3.4449691534,"2995":3.4430355294,"2996":3.4411016433,"2997":3.4391678882,"2998":3.4372340676,"2999":3.4353002798,"3000":39.5450948474,"3001":39.5089364439,"3002":39.4727672844,"3003":39.436588785,"3004":39.4004001514,"3005":39.3642010686,"3006":39.3279911679,"3007":39.2917701312,"3008":39.2555376718,"3009":39.2192935367,"3010":39.1830375073,"3011":39.1467693989,"3012":39.1104890606,"3013":39.0741963755,"3014":39.0378912605,"3015":39.0015736665,"3016":38.965243578,"3017":38.9289010136,"3018":38.8925460252,"3019":38.8561786986,"3020":38.819799153,"3021":38.8577080579,"3022":38.9395662571,"3023":39.0040039145,"3024":39.0817860243,"3025":39.1574975432,"3026":39.2388360698,"3027":39.3219384721,"3028":39.4087229763,"3029":39.4982170421,"3030":39.5908936405,"3031":39.688867065,"3032":39.7924089176,"3033":39.8978427767,"3034":40.0069979933,"3035":40.1189455588,"3036":40.234136848,"3037":40.3523329124,"3038":40.4736400998,"3039":40.5979921909,"3040":40.7254093408,"3041":40.910192394,"3042":41.1973835448,"3043":41.4432231446,"3044":41.7197289778,"3045":41.9908296149,"3046":42.2745384741,"3047":42.5618186714,"3048":42.8571602127,"3049":43.1582894743,"3050":43.4663148464,"3051":43.7836901887,"3052":44.1174905039,"3053":44.4532054806,"3054":44.7980766849,"3055":45.1484511129,"3056":45.5061269312,"3057":45.870176105,"3058":46.241033983,"3059":46.6184543241,"3060":47.0025318193,"3061":47.3976046026,"3062":47.8291902981,"3063":48.2534415523,"3064":48.6922963525,"3065":49.134745429,"3066":49.5862642157,"3067":50.0440837446,"3068":50.5095578208,"3069":50.9819789096,"3070":51.4616702971,"3071":51.9485735871,"3072":52.446833236,"3073":52.9501966226,"3074":53.4617659142,"3075":53.9799585421,"3076":54.5055359283,"3077":55.0380873288,"3078":55.5777882693,"3079":56.1245212549,"3080":56.6783154287,"3081":57.2391267384,"3082":57.610865811,"3083":58.0692605326,"3084":58.4884301622,"3085":58.9313443303,"3086":59.3665008638,"3087":59.8096428802,"3088":60.2528890453,"3089":60.700170681,"3090":61.1495127631,"3091":61.6018935116,"3092":62.0273130834,"3093":62.46413511,"3094":62.8982426151,"3095":63.3366891538,"3096":63.7759419522,"3097":64.2177616631,"3098":64.6612622225,"3099":65.1068809734,"3100":65.5543935927,"3101":66.0039066292,"3102":66.274162094,"3103":66.5737137965,"3104":66.8543231028,"3105":67.1400941469,"3106":67.4189979232,"3107":67.6970643102,"3108":67.9712952383,"3109":68.2432062707,"3110":68.5120561788,"3111":68.7782320809,"3112":69.0142100798,"3113":69.2466426307,"3114":69.4754537616,"3115":69.7006860548,"3116":69.9223371902,"3117":70.1404243648,"3118":70.354955543,"3119":70.5659431401,"3120":70.7733973188,"3121":70.9773293132,"3122":71.1390665738,"3123":71.2870131029,"3124":71.4346020127,"3125":71.5751086553,"3126":71.7119237233,"3127":71.8433728687,"3128":71.9703156545,"3129":72.0923443283,"3130":72.2096847852,"3131":72.322246017,"3132":72.4252928521,"3133":72.5207744461,"3134":72.6126852447,"3135":72.6990445439,"3136":72.7808664301,"3137":72.8576660688,"3138":72.9297083073,"3139":72.9968830248,"3140":73.0592675271,"3141":73.1168453354,"3142":73.1929628901,"3143":73.2892038925,"3144":73.3700058037,"3145":73.453212042,"3146":73.5299081079,"3147":73.6045693807,"3148":73.6749740566,"3149":73.7422493109,"3150":73.8058476913,"3151":73.8660590262,"3152":73.9262286873,"3153":73.9893178301,"3154":74.0461089162,"3155":74.1012362431,"3156":74.1523953124,"3157":74.200753542,"3158":74.2457418329,"3159":74.2876594011,"3160":74.3263712388,"3161":74.3619594085,"3162":74.4079092079,"3163":74.494561488,"3164":74.5580558478,"3165":74.6304005444,"3166":74.695585969,"3167":74.7616281108,"3168":74.8245267969,"3169":74.8862905758,"3170":74.9459234757,"3171":75.0039317851,"3172":75.0619196967,"3173":75.1307039544,"3174":75.1918722224,"3175":75.2546565509,"3176":75.3144438498,"3177":75.3735481599,"3178":75.4308190194,"3179":75.4868383793,"3180":75.5413219263,"3181":75.5944184652,"3182":75.6469548599,"3183":75.726284238,"3184":75.7909443578,"3185":75.861711856,"3186":75.9281938856,"3187":75.9955923294,"3188":76.0613096943,"3189":76.1266485625,"3190":76.1909613862,"3191":76.2545756868,"3192":76.3173314356,"3193":76.387183853,"3194":76.4530249784,"3195":76.5199302683,"3196":76.5853633406,"3197":76.6505955968,"3198":76.7149941628,"3199":76.7788783675,"3200":76.8420914141,"3201":76.9047145623,"3202":76.9667100335,"3203":77.0327226545,"3204":77.0967701447,"3205":77.1610513409,"3206":77.2244689898,"3207":77.287574049,"3208":77.3500933288,"3209":77.4121657125,"3210":77.4737240383,"3211":77.5348041597,"3212":77.5953904153,"3213":77.655854466,"3214":77.7157774091,"3215":77.7752591075,"3216":77.8342518854,"3217":77.8927817532,"3218":77.9508378863,"3219":78.0084278675,"3220":78.0655500696,"3221":78.1222074635,"3222":78.178400714,"3223":78.2297396207,"3224":78.2804893236,"3225":78.3306453082,"3226":78.3802106344,"3227":78.4291868843,"3228":78.4775759072,"3229":78.5253795029,"3230":78.572599469,"3231":78.6192375995,"3232":78.6652956811,"3233":78.7094654584,"3234":78.7527102629,"3235":78.7954864256,"3236":78.8375676116,"3237":78.8790700476,"3238":78.919938423,"3239":78.9602032368,"3240":78.9998520643,"3241":79.038893936,"3242":79.0773271456,"3243":79.1101685243,"3244":79.1394553205,"3245":79.1693088044,"3246":79.1976657655,"3247":79.2255627871,"3248":79.2524850322,"3249":79.2786936648,"3250":79.3040617766,"3251":79.3286564962,"3252":79.3524479201,"3253":79.3740804837,"3254":79.3934555919,"3255":79.4126767229,"3256":79.4306933817,"3257":79.4480352829,"3258":79.4644413776,"3259":79.4800461158,"3260":79.4947861602,"3261":79.5086970603,"3262":79.5217649095,"3263":79.5309154559,"3264":79.5335891074,"3265":79.5379539396,"3266":79.5399211852,"3267":79.5415418776,"3268":79.541794858,"3269":79.5411955043,"3270":79.5394908203,"3271":79.5368120006,"3272":79.5330981266,"3273":79.5275381088,"3274":79.5182205953,"3275":79.5091561407,"3276":79.4983401013,"3277":79.486780647,"3278":79.4739784805,"3279":79.4601882316,"3280":79.4452875094,"3281":79.4293424268,"3282":79.4123248279,"3283":79.3915133136,"3284":79.3510662597,"3285":79.3181937185,"3286":79.279269289,"3287":79.2411187519,"3288":79.2003349844,"3289":79.1586286514,"3290":79.1151512316,"3291":79.0703338298,"3292":79.0239677056,"3293":78.9758554599,"3294":78.9165281274,"3295":78.8603125208,"3296":78.8000385288,"3297":78.7393017343,"3298":78.6763114004,"3299":78.6119706158,"3300":78.5458353953,"3301":78.4781352944,"3302":78.4087630694,"3303":78.3377798542,"3304":78.2667549957,"3305":78.1934680438,"3306":78.1189391107,"3307":78.0426650859,"3308":77.964904827,"3309":77.8855361091,"3310":77.8046272411,"3311":77.7221512398,"3312":77.6381287462,"3313":77.5525565669,"3314":77.4664486411,"3315":77.378508671,"3316":77.289218975,"3317":77.1983452914,"3318":77.1060116646,"3319":77.0121629568,"3320":76.9168336014,"3321":76.8200132245,"3322":76.7217138346,"3323":76.6219362276,"3324":76.5318132497,"3325":76.4385437667,"3326":76.3450937355,"3327":76.24998749,"3328":76.1539678083,"3329":76.0566686994,"3330":75.9582784463,"3331":75.8587081973,"3332":75.7580076475,"3333":75.6561572031,"3334":75.5656236422,"3335":75.474316106,"3336":75.3822580397,"3337":75.2894466529,"3338":75.1958856903,"3339":75.1015769316,"3340":75.0065228658,"3341":74.910725669,"3342":74.8141876523,"3343":74.716911051,"3344":74.630166317,"3345":74.5456849413,"3346":74.4595592992,"3347":74.3737536028,"3348":74.2872855004,"3349":74.2006480439,"3350":74.1135961537,"3351":74.0262538961,"3352":73.9385607425,"3353":73.8505484605,"3354":73.7672845036,"3355":73.686702476,"3356":73.6046020722,"3357":73.5230903808,"3358":73.4411130824,"3359":73.3591981008,"3360":73.2770819285,"3361":73.1948968338,"3362":73.1125771829,"3363":73.030156294,"3364":72.9511061075,"3365":72.8756710965,"3366":72.7985245205,"3367":72.7223362654,"3368":72.6457696936,"3369":72.5694930715,"3370":72.4931718866,"3371":72.4169730822,"3372":72.3408128616,"3373":72.2647328019,"3374":72.1902955479,"3375":72.1188245317,"3376":72.0461235024,"3377":71.9742946571,"3378":71.9022851218,"3379":71.8306207299,"3380":71.7590377299,"3381":71.6876672118,"3382":71.6164428379,"3383":71.5453969888,"3384":71.4747568309,"3385":71.4050777917,"3386":71.3352013441,"3387":71.2657071236,"3388":71.196304178,"3389":71.1271371535,"3390":71.0581328394,"3391":70.9893269684,"3392":70.9207008017,"3393":70.8522628395,"3394":70.7840867388,"3395":70.7166294407,"3396":70.6491072697,"3397":70.5819119587,"3398":70.5148465627,"3399":70.4480086736,"3400":70.3813485786,"3401":70.3148902281,"3402":70.2486207422,"3403":70.1825456592,"3404":70.1166219294,"3405":70.0496482012,"3406":69.9834476597,"3407":69.9171061072,"3408":69.8510802423,"3409":69.7851408776,"3410":69.7194018591,"3411":69.653805501,"3412":69.5883798893,"3413":69.5231102257,"3414":69.4580031565,"3415":69.3921132785,"3416":69.3267656883,"3417":69.2613547593,"3418":69.1961828411,"3419":69.1310980731,"3420":69.066175746,"3421":69.0013775677,"3422":68.9367220332,"3423":68.8721992118,"3424":68.8078133296,"3425":68.7417196356,"3426":68.6762988537,"3427":68.6106764752,"3428":68.5452890342,"3429":68.4799174236,"3430":68.4146703234,"3431":68.3494924739,"3432":68.2844105462,"3433":68.2194102099,"3434":68.1544976027,"3435":68.0877909877,"3436":68.021452162,"3437":67.9549798554,"3438":67.8886234774,"3439":67.822257477,"3440":67.7559436895,"3441":67.6896502612,"3442":67.6233921705,"3443":67.5571609737,"3444":67.4909599338,"3445":67.4243781,"3446":67.3578122556,"3447":67.2912607141,"3448":67.2247232417,"3449":67.1581991001,"3450":67.0916877677,"3451":67.0251886326,"3452":66.9587011375,"3453":66.8922247107,"3454":66.8257588014,"3455":66.7587500458,"3456":66.6916036752,"3457":66.6245109866,"3458":66.5573752169,"3459":66.4902441746,"3460":66.4230932982,"3461":66.3559342535,"3462":66.28876061,"3463":66.2215750089,"3464":66.1543755784,"3465":66.0872499118,"3466":66.0201617011,"3467":65.9530388092,"3468":65.8859169442,"3469":65.8187777844,"3470":65.7516300748,"3471":65.6844690473,"3472":65.617296717,"3473":65.5501117327,"3474":65.4829144517,"3475":65.415770904,"3476":65.3486855552,"3477":65.2815566959,"3478":65.2144350779,"3479":65.1472950904,"3480":65.0801493595,"3481":65.0129914104,"3482":64.9458243432,"3483":64.8786464932,"3484":64.8114586007,"3485":64.74450315,"3486":64.6779817375,"3487":64.6112514391,"3488":64.5446343817,"3489":64.4779692887,"3490":64.4113367837,"3491":64.3446965224,"3492":64.2780686692,"3493":64.2114431493,"3494":64.1448250238,"3495":64.0783789514,"3496":64.0124812253,"3497":63.9463412598,"3498":63.8803552158,"3499":63.8143248605,"3500":63.7483493762,"3501":63.6823792075,"3502":63.6164391866,"3503":63.55051696,"3504":63.4846187766,"3505":63.4188361643,"3506":63.35371728,"3507":63.2883226236,"3508":63.2231229523,"3509":63.157882729,"3510":63.0927198039,"3511":63.0275752923,"3512":62.9624786915,"3513":62.8974153107,"3514":62.8323925578,"3515":62.7674313592,"3516":62.7032835193,"3517":62.6388101254,"3518":62.5745817802,"3519":62.5103129584,"3520":62.4461464762,"3521":62.3820109271,"3522":62.3179420297,"3523":62.2539219406,"3524":62.1899596001,"3525":62.1260505591,"3526":62.0626450042,"3527":61.9991118938,"3528":61.9357393354,"3529":61.8723831727,"3530":61.8091154901,"3531":61.745900233,"3532":61.6827554227,"3533":61.6196720442,"3534":61.5566546031,"3535":61.4937008471,"3536":61.4312434931,"3537":61.3687242572,"3538":61.3063480598,"3539":61.2440123895,"3540":61.1817684693,"3541":61.1195906542,"3542":61.0574917357,"3543":60.9954652891,"3544":60.9335144996,"3545":60.8716377493,"3546":60.8095925319,"3547":60.7476584203,"3548":60.6857708555,"3549":60.6239620837,"3550":60.5622160007,"3551":60.5005406676,"3552":60.4389320649,"3553":60.3773922129,"3554":60.3159201116,"3555":60.2545162704,"3556":60.1936115226,"3557":60.1327874916,"3558":60.0720447092,"3559":60.0113830417,"3560":59.9508024583,"3561":59.8903029195,"3562":59.8298843777,"3563":59.7695467877,"3564":59.7092900989,"3565":59.649114259,"3566":59.5889756105,"3567":59.5289060973,"3568":59.4689207853,"3569":59.409012016,"3570":59.3491835281,"3571":59.2894333472,"3572":59.2297623507,"3573":59.1701699825,"3574":59.1106563966,"3575":59.0512213845,"3576":58.9918160676,"3577":58.9324602615,"3578":58.8731942202,"3579":58.8139976024,"3580":58.7548804309,"3581":58.6958375239,"3582":58.636871297,"3583":58.577980359,"3584":58.5191652147,"3585":58.4604254136,"3586":58.4017080627,"3587":58.3430093614,"3588":58.2844099486,"3589":58.2258691881,"3590":58.1674072,"3591":58.1090136956,"3592":58.0506935901,"3593":57.992444191,"3594":57.9342666053,"3595":57.8761600363,"3596":57.81806585,"3597":57.7599349777,"3598":57.7019228841,"3599":57.6439514196,"3600":57.5860594573,"3601":57.5282273147,"3602":57.4704645952,"3603":57.4127662575,"3604":57.3551345837,"3605":57.297568195,"3606":57.2400458208,"3607":57.1825182639,"3608":57.1250881967,"3609":57.067703952,"3610":57.0103911699,"3611":56.9531368134,"3612":56.8959471937,"3613":56.838818951,"3614":56.7817535658,"3615":56.724750103,"3616":56.6677902381,"3617":56.6107661412,"3618":56.5538624559,"3619":56.4969865081,"3620":56.4401845187,"3621":56.3834332198,"3622":56.3267441026,"3623":56.2701112815,"3624":56.2135375646,"3625":56.1570214175,"3626":56.1005621877,"3627":56.0441199355,"3628":55.9877547028,"3629":55.9314362967,"3630":55.8751797171,"3631":55.8189773549,"3632":55.7628329103,"3633":55.7067444292,"3634":55.6507127853,"3635":55.5947374384,"3636":55.5388185543,"3637":55.4828991325,"3638":55.4270590552,"3639":55.3712617511,"3640":55.3155254086,"3641":55.2598408187,"3642":55.2042124685,"3643":55.1486379912,"3644":55.0931184405,"3645":55.0376531526,"3646":54.9822423149,"3647":54.9268954758,"3648":54.8715999389,"3649":54.8163601958,"3650":54.7611738175,"3651":54.7060418246,"3652":54.6509635016,"3653":54.5959389893,"3654":54.5409679879,"3655":54.4860504055,"3656":54.4311860334,"3657":54.3759854712,"3658":54.3208964657,"3659":54.265815237,"3660":54.2107933454,"3661":54.1558047495,"3662":54.1008621786,"3663":54.0459589659,"3664":53.9910981284,"3665":53.936277828,"3666":53.881498641,"3667":53.8271619235,"3668":53.7728773544,"3669":53.7186451288,"3670":53.6644648783,"3671":53.6103362934,"3672":53.5562590675,"3673":53.5022328746,"3674":53.4482573914,"3675":53.3943322847,"3676":53.3404572193,"3677":53.2866962845,"3678":53.2330018459,"3679":53.179351201,"3680":53.1257552195,"3681":53.0722079215,"3682":53.0187117623,"3683":52.9652649766,"3684":52.9118679102,"3685":52.8585198544,"3686":52.8052206303,"3687":52.752067182,"3688":52.6990194386,"3689":52.6459965956,"3690":52.5930386456,"3691":52.5401250422,"3692":52.4872655461,"3693":52.4344547676,"3694":52.3816949034,"3695":52.3289843674,"3696":52.2763234767,"3697":52.2238898477,"3698":52.1716953948,"3699":52.1194677527,"3700":52.0673429886,"3701":52.0152525488,"3702":51.9632302894,"3703":51.9112588605,"3704":51.8593467442,"3705":51.8074916889,"3706":51.7556989355,"3707":51.703917948,"3708":51.6521087678,"3709":51.6004134533,"3710":51.5487655073,"3711":51.4972028931,"3712":51.445711291,"3713":51.3943025141,"3714":51.342975289,"3715":51.2917348648,"3716":51.2405832058,"3717":51.1894246018,"3718":51.138039042,"3719":51.0868989396,"3720":51.0357720918,"3721":50.9847791818,"3722":50.9338642894,"3723":50.8830597803,"3724":50.8323538293,"3725":50.7817566624,"3726":50.7312674319,"3727":50.6808679457,"3728":50.6304281058,"3729":50.580177728,"3730":50.5300057332,"3731":50.4799717118,"3732":50.4300497987,"3733":50.3802568014,"3734":50.3305881193,"3735":50.2810497842,"3736":50.2316424363,"3737":50.1823552144,"3738":50.1327589188,"3739":50.0835102021,"3740":50.0342834515,"3741":49.9852448876,"3742":49.9363145646,"3743":49.8875355568,"3744":49.8388893249,"3745":49.7903880377,"3746":49.7420284071,"3747":49.6938147682,"3748":49.6453293488,"3749":49.5971625192,"3750":49.5490470741,"3751":49.5011189864,"3752":49.4533124231,"3753":49.405662355,"3754":49.3581532257,"3755":49.3107946198,"3756":49.2635834265,"3757":49.216522756,"3758":49.1685120486,"3759":49.1209747102,"3760":49.0733894675,"3761":49.0260181456,"3762":48.9787308458,"3763":48.9315934052,"3764":48.8845736565,"3765":48.837688299,"3766":48.7909294629,"3767":48.7443014266,"3768":48.6969154634,"3769":48.6497931625,"3770":48.602697944,"3771":48.5557478492,"3772":48.5088836605,"3773":48.4621346175,"3774":48.4154856045,"3775":48.3689435487,"3776":48.3225042241,"3777":48.2761688504,"3778":48.2298182984,"3779":48.183566303,"3780":48.1374115931,"3781":48.0913533669,"3782":48.0453905272,"3783":47.9995219909,"3784":47.9537465515,"3785":47.9080629469,"3786":47.862469828,"3787":47.8169657771,"3788":47.7715743566,"3789":47.7262756124,"3790":47.6810592168,"3791":47.6359278314,"3792":47.5908774995,"3793":47.5459074805,"3794":47.5010153302,"3795":47.4561993639,"3796":47.4114574275,"3797":47.3667875146,"3798":47.322269189,"3799":47.2778669112,"3800":47.2335109313,"3801":47.1892328073,"3802":47.1450132457,"3803":47.1008583323,"3804":47.0567613902,"3805":47.0127220591,"3806":46.9687367568,"3807":46.9248034519,"3808":46.8810155302,"3809":46.8373769977,"3810":46.7937382359,"3811":46.7501701814,"3812":46.7066332193,"3813":46.663143011,"3814":46.6196875285,"3815":46.5762685507,"3816":46.5328809159,"3817":46.4895228989,"3818":46.4465149063,"3819":46.4041228617,"3820":46.3614866569,"3821":46.3190328303,"3822":46.2765433819,"3823":46.234122804,"3824":46.1917142826,"3825":46.1493416578,"3826":46.1069884348,"3827":46.0646582852,"3828":46.0224151313,"3829":45.9804153967,"3830":45.9383227942,"3831":45.896301255,"3832":45.8542641852,"3833":45.8122503635,"3834":45.7702358927,"3835":45.7282282493,"3836":45.6862192597,"3837":45.6442086177,"3838":45.6023731647,"3839":45.56175693,"3840":45.5205596967,"3841":45.4796791325,"3842":45.438661787,"3843":45.3977302914,"3844":45.3567692257,"3845":45.3158322982,"3846":45.2748887394,"3847":45.2339501145,"3848":45.1930165903,"3849":45.1523844973,"3850":45.1116017885,"3851":45.0708915186,"3852":45.0301387698,"3853":44.9893978422,"3854":44.9486385326,"3855":44.9078730249,"3856":44.8670924432,"3857":44.8262985791,"3858":44.7854880309,"3859":44.7459795993,"3860":44.705915814,"3861":44.6661425057,"3862":44.6262344428,"3863":44.5864023875,"3864":44.5465391919,"3865":44.5066968246,"3866":44.4668478424,"3867":44.4270046562,"3868":44.3871598962,"3869":44.3475126186,"3870":44.3078068252,"3871":44.2681360006,"3872":44.2284527747,"3873":44.1887803458,"3874":44.1491067564,"3875":44.1094377529,"3876":44.0697703516,"3877":44.0301060504,"3878":43.9904442183,"3879":43.9512444818,"3880":43.9119785654,"3881":43.8727690365,"3882":43.833555148,"3883":43.7943677978,"3884":43.7551921594,"3885":43.7160363374,"3886":43.6768970384,"3887":43.6377767289,"3888":43.5986750507,"3889":43.5600193173,"3890":43.5213961669,"3891":43.4828069831,"3892":43.4442522425,"3893":43.405732679,"3894":43.3672489664,"3895":43.3288018191,"3896":43.2903919482,"3897":43.2520200773,"3898":43.2136869321,"3899":43.1767885138,"3900":43.1403014351,"3901":43.1037422903,"3902":43.0673547471,"3903":43.0310176154,"3904":42.9947923929,"3905":42.9586491755,"3906":42.9226037644,"3907":42.8866490999,"3908":42.8507895471,"3909":42.8149649681,"3910":42.7792008676,"3911":42.7435458701,"3912":42.7079764177,"3913":42.6725051309,"3914":42.637126523,"3915":42.6018441654,"3916":42.5666571024,"3917":42.5315666461,"3918":42.4965729801,"3919":42.4610458382,"3920":42.4249424708,"3921":42.389224737,"3922":42.3534080159,"3923":42.3177317076,"3924":42.2820727654,"3925":42.2464894335,"3926":42.2109493151,"3927":42.1754653518,"3928":42.1400278319,"3929":42.1045942561,"3930":42.06912401,"3931":42.0337326949,"3932":41.9983592198,"3933":41.9630310224,"3934":41.927731264,"3935":41.8924652718,"3936":41.8572273104,"3937":41.8220171984,"3938":41.7868320003,"3939":41.75134462,"3940":41.7148224652,"3941":41.6788023902,"3942":41.642511506,"3943":41.606333833,"3944":41.5700745611,"3945":41.5338284028,"3946":41.497545321,"3947":41.4612476846,"3948":41.4249216877,"3949":41.3885649162,"3950":41.352133787,"3951":41.315694886,"3952":41.2792123557,"3953":41.2427016752,"3954":41.206152671,"3955":41.169568032,"3956":41.1329440486,"3957":41.0962802443,"3958":41.0595745608,"3959":41.0228380831,"3960":40.9864452475,"3961":40.9498239958,"3962":40.9132587396,"3963":40.8766050041,"3964":40.839932933,"3965":40.8032053713,"3966":40.7664388575,"3967":40.7296231214,"3968":40.6927613369,"3969":40.6558499959,"3970":40.6189412289,"3971":40.5819597694,"3972":40.5449382509,"3973":40.5078585846,"3974":40.4707280975,"3975":40.4335414488,"3976":40.3962996751,"3977":40.3590006678,"3978":40.3216439347,"3979":40.2842282193,"3980":40.2478866449,"3981":40.2111528499,"3982":40.1745636183,"3983":40.1378490768,"3984":40.1011427693,"3985":40.0643765691,"3986":40.0275832334,"3987":39.9907451244,"3988":39.9538698493,"3989":39.9169524402,"3990":39.8799642763,"3991":39.8429381176,"3992":39.8058658399,"3993":39.7687505328,"3994":39.7315897341,"3995":39.6943838053,"3996":39.6571317454,"3997":39.6198332841,"3998":39.5824878352,"3999":39.5450950202,"4000":0.4538523186,"4001":0.4492846765,"4002":0.4447170291,"4003":0.4401493844,"4004":0.4355817383,"4005":0.4310140929,"4006":0.4264464471,"4007":0.4218788016,"4008":0.4173111559,"4009":0.4127435103,"4010":0.4081758646,"4011":0.403608219,"4012":0.3990405734,"4013":0.3944729278,"4014":0.3899052821,"4015":0.3853376365,"4016":0.3807699909,"4017":0.3762023452,"4018":0.3716346996,"4019":0.367067054,"4020":0.3624994083,"4021":0.3596244578,"4022":0.3577016481,"4023":0.355302768,"4024":0.3531419232,"4025":0.3508620607,"4026":0.3486417071,"4027":0.346391599,"4028":0.3441563681,"4029":0.3419136986,"4030":0.3396747485,"4031":0.3374877945,"4032":0.3353576977,"4033":0.3331991723,"4034":0.3310548612,"4035":0.3289034429,"4036":0.3267555782,"4037":0.3246059368,"4038":0.3224571837,"4039":0.3203079864,"4040":0.3181590112,"4041":0.31953526,"4042":0.3272571672,"4043":0.3318062452,"4044":0.3379417379,"4045":0.3432840232,"4046":0.3490229122,"4047":0.3545634993,"4048":0.3602032374,"4049":0.3657934,"4050":0.3714083503,"4051":0.3772080139,"4052":0.3836474331,"4053":0.3897669745,"4054":0.3960464548,"4055":0.4022459657,"4056":0.4084854613,"4057":0.4147049645,"4058":0.4209344639,"4059":0.4271589652,"4060":0.4333859655,"4061":0.441192189,"4062":0.4596672279,"4063":0.4728078591,"4064":0.4886156941,"4065":0.5030899271,"4066":0.5182309612,"4067":0.5330385948,"4068":0.5480129286,"4069":0.5629039122,"4070":0.577836571,"4071":0.5927966218,"4072":0.6092863227,"4073":0.6250111985,"4074":0.6411184869,"4075":0.657034569,"4076":0.6730462542,"4077":0.6890101379,"4078":0.7049979223,"4079":0.7209737564,"4080":0.7369555656,"4081":0.7529343873,"4082":0.764673127,"4083":0.7782582577,"4084":0.7909201928,"4085":0.8040437258,"4086":0.8169364598,"4087":0.8299445933,"4088":0.842895027,"4089":0.8558743107,"4090":0.8688391693,"4091":0.8818112405,"4092":0.8941339544,"4093":0.9066660342,"4094":0.9190934311,"4095":0.9315731694,"4096":0.944026737,"4097":0.95649339,"4098":0.9689535003,"4099":0.9814168819,"4100":0.9938786279,"4101":1.0063411917,"4102":1.0123598252,"4103":1.019538497,"4104":1.0261371497,"4105":1.0330258119,"4106":1.0397694694,"4107":1.0465856292,"4108":1.0533655379,"4109":1.0601635721,"4110":1.0669525435,"4111":1.0737460464,"4112":1.0785795926,"4113":1.0834142717,"4114":1.0882483843,"4115":1.0930827801,"4116":1.0979170344,"4117":1.1027513594,"4118":1.1075856491,"4119":1.1124199564,"4120":1.1172542549,"4121":1.1220885578,"4122":1.1247428994,"4123":1.1268809359,"4124":1.1292771249,"4125":1.1315442377,"4126":1.1338758886,"4127":1.1361752704,"4128":1.1384907868,"4129":1.1407982359,"4130":1.1431097186,"4131":1.1454191846,"4132":1.1474590152,"4133":1.1493461047,"4134":1.1513095647,"4135":1.1532348395,"4136":1.1551792069,"4137":1.1571140279,"4138":1.1590536222,"4139":1.1609908298,"4140":1.1629292308,"4141":1.1648670351,"4142":1.1668620312,"4143":1.1689159599,"4144":1.1709404223,"4145":1.1729796179,"4146":1.1750114469,"4147":1.1770469592,"4148":1.1790806298,"4149":1.1811152213,"4150":1.1831493523,"4151":1.1851837135,"4152":1.18722698,"4153":1.1892865405,"4154":1.1913379539,"4155":1.1933934409,"4156":1.1954468911,"4157":1.1975013597,"4158":1.1995553191,"4159":1.2016095331,"4160":1.2036636198,"4161":1.2057177701,"4162":1.2077531177,"4163":1.2097281463,"4164":1.2117333344,"4165":1.2137234427,"4166":1.2157210909,"4167":1.2177149692,"4168":1.2197107324,"4169":1.2217055532,"4170":1.2237008452,"4171":1.2256959015,"4172":1.2276884639,"4173":1.2296633378,"4174":1.2316470559,"4175":1.2336263519,"4176":1.2356078589,"4177":1.2375882604,"4178":1.2395692147,"4179":1.2415498926,"4180":1.2435307087,"4181":1.2455114557,"4182":1.2474715114,"4183":1.2487786869,"4184":1.2504123025,"4185":1.2518826981,"4186":1.2534347036,"4187":1.2549459042,"4188":1.2564775073,"4189":1.2579989091,"4190":1.2595254115,"4191":1.2610493636,"4192":1.2625745909,"4193":1.263912629,"4194":1.2653322261,"4195":1.2667110437,"4196":1.268110251,"4197":1.2694992635,"4198":1.2708933734,"4199":1.2722849346,"4200":1.2736777701,"4201":1.2750699685,"4202":1.2764624854,"4203":1.2773547635,"4204":1.2784078612,"4205":1.279380549,"4206":1.2803934418,"4207":1.2813862321,"4208":1.2823890736,"4209":1.2833868895,"4210":1.2843872183,"4211":1.2853862906,"4212":1.2863859911,"4213":1.287332802,"4214":1.2882892336,"4215":1.2892408549,"4216":1.2901948813,"4217":1.2911477052,"4218":1.2921011303,"4219":1.2930542548,"4220":1.2940075296,"4221":1.2949607292,"4222":1.2959139665,"4223":1.2963727679,"4224":1.2968315787,"4225":1.2972903848,"4226":1.2977491932,"4227":1.2982080005,"4228":1.2986668084,"4229":1.299125616,"4230":1.2995844237,"4231":1.3000432313,"4232":1.300502039,"4233":1.3008620343,"4234":1.3011986267,"4235":1.3015469206,"4236":1.3018893637,"4237":1.3022347321,"4238":1.3025786379,"4239":1.3029232751,"4240":1.3032675466,"4241":1.3036120009,"4242":1.3039563637,"4243":1.3039971525,"4244":1.3038671323,"4245":1.3038225166,"4246":1.3037351986,"4247":1.3036692317,"4248":1.3035925893,"4249":1.3035212847,"4250":1.3034473112,"4251":1.3033746721,"4252":1.3033013658,"4253":1.3031447684,"4254":1.3029011632,"4255":1.302701062,"4256":1.3024792087,"4257":1.3022682315,"4258":1.3020518162,"4259":1.30183812,"4260":1.3016230642,"4261":1.3014086883,"4262":1.3011939724,"4263":1.30081712,"4264":1.3001480311,"4265":1.2996250605,"4266":1.2990290308,"4267":1.2984695306,"4268":1.2978917656,"4269":1.297323133,"4270":1.2967499343,"4271":1.2961790186,"4272":1.2956069614,"4273":1.2949910192,"4274":1.2942318983,"4275":1.2935443667,"4276":1.2928210405,"4277":1.2921156116,"4278":1.2914012341,"4279":1.2906913309,"4280":1.2899791905,"4281":1.2892681687,"4282":1.2885565876,"4283":1.2877428729,"4284":1.2862377292,"4285":1.2850783,"4286":1.2837460136,"4287":1.2825001557,"4288":1.2812110836,"4289":1.2799436186,"4290":1.27866535,"4291":1.2773924833,"4292":1.2761169156,"4293":1.2748312026,"4294":1.2731826964,"4295":1.2717155868,"4296":1.2701577789,"4297":1.2686453202,"4298":1.2671101869,"4299":1.2655863908,"4300":1.2640569262,"4301":1.2625302958,"4302":1.2610022483,"4303":1.2594749094,"4304":1.2611725228,"4305":1.2614657443,"4306":1.2624611618,"4307":1.2631054812,"4308":1.2639253497,"4309":1.2646574437,"4310":1.2654334249,"4311":1.2661874626,"4312":1.266952472,"4313":1.2677119955,"4314":1.2699852121,"4315":1.2717713948,"4316":1.2738010944,"4317":1.2757090355,"4318":1.2776778559,"4319":1.2796162367,"4320":1.2815698372,"4321":1.2835158279,"4322":1.2854656235,"4323":1.2874135166,"4324":1.2924288284,"4325":1.2968917004,"4326":1.3016307923,"4327":1.3062317742,"4328":1.3109018112,"4329":1.3155373206,"4330":1.3201900938,"4331":1.3248342351,"4332":1.3294826923,"4333":1.3341289916,"4334":1.3397064299,"4335":1.3452833288,"4336":1.3508604974,"4337":1.3564375311,"4338":1.3620146323,"4339":1.3675916997,"4340":1.373168784,"4341":1.3787458599,"4342":1.38432294,"4343":1.389900018,"4344":1.3952585074,"4345":1.4005652251,"4346":1.4058978286,"4347":1.4112174892,"4348":1.4165436213,"4349":1.4218665177,"4350":1.4271910319,"4351":1.4325147372,"4352":1.4378388469,"4353":1.4431627544,"4354":1.4483881814,"4355":1.4535581055,"4356":1.4587557811,"4357":1.463939581,"4358":1.4691303187,"4359":1.4743175875,"4360":1.4795065907,"4361":1.4846947267,"4362":1.4898832964,"4363":1.4950716492,"4364":1.4989095265,"4365":1.5013448202,"4366":1.5044814057,"4367":1.5072673453,"4368":1.5102286078,"4369":1.5131022089,"4370":1.5160196407,"4371":1.5189151571,"4372":1.5218216312,"4373":1.5247226265,"4374":1.5270003087,"4375":1.5281497265,"4376":1.5298632765,"4377":1.5312947605,"4378":1.5328672774,"4379":1.5343692779,"4380":1.5359065366,"4381":1.5374261662,"4382":1.5389546103,"4383":1.5404786472,"4384":1.5412841999,"4385":1.5397721542,"4386":1.5394189077,"4387":1.5384862617,"4388":1.5378433154,"4389":1.5370555192,"4390":1.536340148,"4391":1.5355885643,"4392":1.5348550868,"4393":1.5341125563,"4394":1.5331026868,"4395":1.5302554625,"4396":1.5283269156,"4397":1.52593903,"4398":1.5237808137,"4399":1.5215077628,"4400":1.5192921292,"4401":1.5170477869,"4402":1.514817799,"4403":1.5125806339,"4404":1.5102949404,"4405":1.5063657678,"4406":1.5032583347,"4407":1.4997400318,"4408":1.4964271638,"4409":1.4930115784,"4410":1.4896473517,"4411":1.4862574457,"4412":1.4828803793,"4413":1.4794968931,"4414":1.4761166168,"4415":1.4716063665,"4416":1.4675883052,"4417":1.4633241494,"4418":1.4591830408,"4419":1.4549804086,"4420":1.4508085383,"4421":1.446621287,"4422":1.4424417262,"4423":1.4382583201,"4424":1.4340768367,"4425":1.4294448714,"4426":1.4249578755,"4427":1.4203983949,"4428":1.4158751566,"4429":1.4113337972,"4430":1.4068014983,"4431":1.4022646692,"4432":1.3977301052,"4433":1.3931944087,"4434":1.3886592784,"4435":1.383298191,"4436":1.3780858665,"4437":1.3727991605,"4438":1.3675496453,"4439":1.3622815347,"4440":1.3570227218,"4441":1.35175926,"4442":1.3464981227,"4443":1.3412358231,"4444":1.3359741047,"4445":1.3310115584,"4446":1.3260491574,"4447":1.3210866838,"4448":1.3161242465,"4449":1.3111617911,"4450":1.3061993447,"4451":1.3012368938,"4452":1.2962744452,"4453":1.2913119954,"4454":1.2863495462,"4455":1.2812762905,"4456":1.2761767915,"4457":1.2710904141,"4458":1.2659974759,"4459":1.2609078181,"4460":1.2558165201,"4461":1.2507260422,"4462":1.2456351542,"4463":1.2405444713,"4464":1.2354536859,"4465":1.2304029389,"4466":1.2253746592,"4467":1.2203351459,"4468":1.2153012494,"4469":1.2102645444,"4470":1.2052292437,"4471":1.2001932409,"4472":1.1951575891,"4473":1.1901217618,"4474":1.1850860223,"4475":1.1800799377,"4476":1.1751047162,"4477":1.1701140632,"4478":1.1651311259,"4479":1.1601443308,"4480":1.1551594646,"4481":1.1501736339,"4482":1.1451882855,"4483":1.1402026959,"4484":1.1352172269,"4485":1.1303965819,"4486":1.1258727587,"4487":1.1212005246,"4488":1.116602496,"4489":1.1119673646,"4490":1.1073507846,"4491":1.1027249289,"4492":1.0981037111,"4493":1.0934801743,"4494":1.088857797,"4495":1.0843485182,"4496":1.0802049236,"4497":1.0758784869,"4498":1.0716434713,"4499":1.0673627451,"4500":1.0631048742,"4501":1.0588355757,"4502":1.054571991,"4503":1.0503055494,"4504":1.0460405362,"4505":1.0418540595,"4506":1.0382028823,"4507":1.0342840554,"4508":1.0304990533,"4509":1.0266471387,"4510":1.0228286804,"4511":1.018993494,"4512":1.0151666716,"4513":1.0113356672,"4514":1.0075067539,"4515":1.0036975675,"4516":1.000543239,"4517":0.9970614816,"4518":0.9937434387,"4519":0.9903435385,"4520":0.9869845669,"4521":0.9836051311,"4522":0.9802359273,"4523":0.9768616076,"4524":0.9734898458,"4525":0.970116805,"4526":0.9671998364,"4527":0.9640842144,"4528":0.9610679191,"4529":0.9580019605,"4530":0.9549608335,"4531":0.9519072907,"4532":0.9488599558,"4533":0.945809517,"4534":0.9427606301,"4535":0.9397109673,"4536":0.9371095719,"4537":0.9343640213,"4538":0.9316905483,"4539":0.9289810365,"4540":0.9262895442,"4541":0.9235890421,"4542":0.9208930448,"4543":0.9181947952,"4544":0.9154976717,"4545":0.9127999851,"4546":0.9101785101,"4547":0.9075432269,"4548":0.9049148478,"4549":0.9022830166,"4550":0.8996529115,"4551":0.8970219434,"4552":0.8943914067,"4553":0.8917606543,"4554":0.8891300098,"4555":0.8864993114,"4556":0.8845028526,"4557":0.8825063803,"4558":0.8805099148,"4559":0.8785134459,"4560":0.8765169787,"4561":0.8745205106,"4562":0.872524043,"4563":0.8705275752,"4564":0.8685311074,"4565":0.8665346396,"4566":0.8647911183,"4567":0.8631075054,"4568":0.8613939383,"4569":0.8596953483,"4570":0.8579892698,"4571":0.8562869355,"4572":0.8545827291,"4573":0.8528794587,"4574":0.8511757203,"4575":0.8494722159,"4576":0.8480519533,"4577":0.8467911383,"4578":0.8454505995,"4579":0.8441499226,"4580":0.8428293148,"4581":0.8415186724,"4582":0.8402030473,"4583":0.8388899136,"4584":0.8375755342,"4585":0.8362617776,"4586":0.8349910275,"4587":0.8337654171,"4588":0.8325172369,"4589":0.8312803415,"4590":0.8300378037,"4591":0.8287980872,"4592":0.82755696,"4593":0.8263165381,"4594":0.8250757636,"4595":0.8238351654,"4596":0.822638508,"4597":0.8215211469,"4598":0.8203641376,"4599":0.8192269524,"4600":0.8180798552,"4601":0.816937714,"4602":0.8157930948,"4603":0.8146497146,"4604":0.8135057148,"4605":0.8123620249,"4606":0.8112026508,"4607":0.8099934385,"4608":0.8088091453,"4609":0.8076123925,"4610":0.8064218696,"4611":0.8052282317,"4612":0.8040361513,"4613":0.8028432921,"4614":0.8016508224,"4615":0.8004581579,"4616":0.7992502398,"4617":0.7979386536,"4618":0.7966789015,"4619":0.7953932323,"4620":0.7941205217,"4621":0.7928413318,"4622":0.7915653815,"4623":0.7902878114,"4624":0.7890110512,"4625":0.7877338861,"4626":0.786460918,"4627":0.785313679,"4628":0.7841035755,"4629":0.7829249042,"4630":0.7817305168,"4631":0.7805439874,"4632":0.779353529,"4633":0.7781650352,"4634":0.7769755591,"4635":0.7757865741,"4636":0.7745973435,"4637":0.7736396616,"4638":0.7725811361,"4639":0.7715730324,"4640":0.7705397178,"4641":0.7695190087,"4642":0.7684919968,"4643":0.7674681363,"4644":0.7664427001,"4645":0.7654180518,"4646":0.7643930095,"4647":0.7636008678,"4648":0.76273383,"4649":0.7619042403,"4650":0.7610559265,"4651":0.7602169747,"4652":0.759373342,"4653":0.7585320497,"4654":0.7576895872,"4655":0.7568477098,"4656":0.7560055399,"4657":0.7554875116,"4658":0.7549110911,"4659":0.7543638667,"4660":0.7538020442,"4661":0.7532475208,"4662":0.7526893479,"4663":0.7521329997,"4664":0.7515757391,"4665":0.7510189347,"4666":0.7504619023,"4667":0.7499780634,"4668":0.7494941675,"4669":0.7490103001,"4670":0.7485264185,"4671":0.748042544,"4672":0.7475586659,"4673":0.7470747896,"4674":0.7465909124,"4675":0.7461070357,"4676":0.7456231587,"4677":0.7451279289,"4678":0.7446300101,"4679":0.7441334357,"4680":0.7436361892,"4681":0.7431392787,"4682":0.7426422002,"4683":0.7421452057,"4684":0.7416481692,"4685":0.7411511538,"4686":0.7406541278,"4687":0.7400437191,"4688":0.7393695272,"4689":0.7387272269,"4690":0.7380689807,"4691":0.7374187075,"4692":0.7367644478,"4693":0.7361121814,"4694":0.7354589183,"4695":0.7348061536,"4696":0.7341531397,"4697":0.7332918164,"4698":0.7322139804,"4699":0.7312444007,"4700":0.7302206929,"4701":0.7292240491,"4702":0.7282138733,"4703":0.7272104635,"4704":0.7262036707,"4705":0.7251985694,"4706":0.7241926224,"4707":0.7231474157,"4708":0.7220305692,"4709":0.7209495427,"4710":0.7198506061,"4711":0.7187606246,"4712":0.7176661655,"4713":0.7165739452,"4714":0.7154806055,"4715":0.7143878255,"4716":0.7132947657,"4717":0.7121398551,"4718":0.7107856185,"4719":0.7095310449,"4720":0.7082266399,"4721":0.7069471506,"4722":0.7056552034,"4723":0.7043694851,"4724":0.7030806524,"4725":0.7017933769,"4726":0.7005053228,"4727":0.6992255711,"4728":0.6979990379,"4729":0.6967458955,"4730":0.6955060577,"4731":0.6942595676,"4732":0.6930164037,"4733":0.6917715766,"4734":0.6905275812,"4735":0.6892831699,"4736":0.6880389665,"4737":0.6868013621,"4738":0.6857749514,"4739":0.6846429439,"4740":0.6835637348,"4741":0.6824581265,"4742":0.6813657177,"4743":0.6802667092,"4744":0.6791710006,"4745":0.678073642,"4746":0.6769771084,"4747":0.6758801623,"4748":0.6747689276,"4749":0.6736639021,"4750":0.672555772,"4751":0.6714491942,"4752":0.6703418402,"4753":0.6692348744,"4754":0.6681277144,"4755":0.6670206515,"4756":0.6659135401,"4757":0.664806453,"4758":0.6636192353,"4759":0.662457776,"4760":0.6612834376,"4761":0.6601155387,"4762":0.65894442,"4763":0.6577749113,"4764":0.6566045976,"4765":0.6554346863,"4766":0.6542645738,"4767":0.653094562,"4768":0.6516913704,"4769":0.6503301673,"4770":0.64894797,"4771":0.6475762698,"4772":0.6461993211,"4773":0.6448249966,"4774":0.64344936,"4775":0.6420743794,"4776":0.6406990708,"4777":0.6393239262,"4778":0.6377858133,"4779":0.6362477415,"4780":0.6347096491,"4781":0.6331715669,"4782":0.6316334797,"4783":0.630095395,"4784":0.628557309,"4785":0.6270192237,"4786":0.625481138,"4787":0.6239430525,"4788":0.6223905076,"4789":0.6208345381,"4790":0.6192802809,"4791":0.6177251676,"4792":0.6161704824,"4793":0.6146155831,"4794":0.6130607908,"4795":0.611505945,"4796":0.609951126,"4797":0.6083962936,"4798":0.6067943044,"4799":0.6051657823,"4800":0.6035505266,"4801":0.6019286377,"4802":0.6003100655,"4803":0.5986898349,"4804":0.5970704335,"4805":0.5954506175,"4806":0.5938310087,"4807":0.5922112964,"4808":0.5906207053,"4809":0.5890602757,"4810":0.5874847653,"4811":0.5859167954,"4812":0.5843450552,"4813":0.5827752002,"4814":0.5812044026,"4815":0.5796340762,"4816":0.5780635143,"4817":0.5764930701,"4818":0.5750240608,"4819":0.5737377697,"4820":0.5723601195,"4821":0.5710281488,"4822":0.5696733383,"4823":0.5683299478,"4824":0.5669808473,"4825":0.5656346017,"4826":0.5642869287,"4827":0.5629399694,"4828":0.5616005231,"4829":0.5602865509,"4830":0.5589598417,"4831":0.5576395009,"4832":0.556315976,"4833":0.5549940431,"4834":0.5536713142,"4835":0.5523489833,"4836":0.5510264534,"4837":0.549704023,"4838":0.5483967849,"4839":0.5471924549,"4840":0.5459366709,"4841":0.5447066139,"4842":0.5434636934,"4843":0.5422272047,"4844":0.5409875001,"4845":0.5397494034,"4846":0.5385105027,"4847":0.5372720041,"4848":0.5360334353,"4849":0.5347990902,"4850":0.5335626333,"4851":0.5323272323,"4852":0.5310913034,"4853":0.5298556384,"4854":0.5286198414,"4855":0.5273841104,"4856":0.5261483465,"4857":0.524912599,"4858":0.5236768433,"4859":0.5224249025,"4860":0.5211800098,"4861":0.519931593,"4862":0.5186849383,"4863":0.5174374025,"4864":0.5161903073,"4865":0.5149429918,"4866":0.5136957864,"4867":0.512448526,"4868":0.5112012931,"4869":0.5100079962,"4870":0.5087973653,"4871":0.5075954014,"4872":0.5063891039,"4873":0.5051849732,"4874":0.5039797592,"4875":0.5027750868,"4876":0.5015701436,"4877":0.5003653358,"4878":0.4991604603,"4879":0.4982108926,"4880":0.4972153586,"4881":0.4962428078,"4882":0.4952587654,"4883":0.4942804688,"4884":0.4932992993,"4885":0.4923195663,"4886":0.491339115,"4887":0.4903590228,"4888":0.4893787511,"4889":0.4885518714,"4890":0.4877249468,"4891":0.4868980446,"4892":0.4860711312,"4893":0.4852442234,"4894":0.4844173128,"4895":0.4835904036,"4896":0.4827634938,"4897":0.4819365842,"4898":0.4811096745,"4899":0.4805559382,"4900":0.4800669008,"4901":0.4795455139,"4902":0.4790403018,"4903":0.4785270023,"4904":0.4780177464,"4905":0.4775064688,"4906":0.476996202,"4907":0.4764854298,"4908":0.4759749103,"4909":0.4754301228,"4910":0.4748661937,"4911":0.4743118354,"4912":0.4737526918,"4913":0.4731959408,"4914":0.4726379934,"4915":0.4720806443,"4916":0.471522996,"4917":0.4709654973,"4918":0.4704079239,"4919":0.4695215431,"4920":0.4682936512,"4921":0.4672365148,"4922":0.4660940007,"4923":0.4649941754,"4924":0.4638730057,"4925":0.4627625082,"4926":0.4616466746,"4927":0.4605335091,"4928":0.4594190095,"4929":0.4583048837,"4930":0.4571898965,"4931":0.45607534,"4932":0.4549605681,"4933":0.4538459039,"4934":0.4527311859,"4935":0.4516164947,"4936":0.4505017902,"4937":0.4493870923,"4938":0.4482723911,"4939":0.4472300332,"4940":0.4464202009,"4941":0.4454941058,"4942":0.4446261421,"4943":0.4437291126,"4944":0.4428466161,"4945":0.4419568531,"4946":0.4410707233,"4947":0.440182777,"4948":0.4392957389,"4949":0.4384213258,"4950":0.4376354236,"4951":0.4368052659,"4952":0.435997236,"4953":0.4351781422,"4954":0.4343645804,"4955":0.4335482526,"4956":0.4327333078,"4957":0.4319176714,"4958":0.4311023809,"4959":0.4303517534,"4960":0.4316435441,"4961":0.4319141257,"4962":0.4326953119,"4963":0.4332211958,"4964":0.4338747308,"4965":0.4344644403,"4966":0.4350860625,"4967":0.4356917284,"4968":0.4363053725,"4969":0.4369150274,"4970":0.4376564103,"4971":0.4383402991,"4972":0.4390529349,"4973":0.4397511972,"4974":0.4404566463,"4975":0.441158502,"4976":0.4418621544,"4977":0.4425649085,"4978":0.4432681117,"4979":0.4439710903,"4980":0.4443936037,"4981":0.4449062466,"4982":0.4453738248,"4983":0.4458639353,"4984":0.4463427797,"4985":0.4468272571,"4986":0.447308918,"4987":0.4477919871,"4988":0.4482743522,"4989":0.4487570693,"4990":0.4492699362,"4991":0.4497774324,"4992":0.450287614,"4993":0.4507964529,"4994":0.4513059632,"4995":0.4518151378,"4996":0.4523244802,"4997":0.4528337387,"4998":0.4533430392,"4999":0.4538523186,"5000":37.5321167589,"5001":37.4843667444,"5002":37.436021531,"5003":37.3878847736,"5004":37.3411993639,"5005":37.2969907343,"5006":37.256208502,"5007":37.2197104498,"5008":37.1882755641,"5009":37.1626098578,"5010":37.1433523882,"5011":37.1310800475,"5012":37.1263117402,"5013":37.1295117704,"5014":37.1410928137,"5015":37.1614182704,"5016":37.1908043969,"5017":37.2295219358,"5018":37.2777976879,"5019":37.3358156578,"5020":37.4037182849,"5021":37.4988862393,"5022":37.6164048681,"5023":37.7430310901,"5024":37.8849454141,"5025":38.0384710366,"5026":38.2049000264,"5027":38.383035456,"5028":38.5729220957,"5029":38.7739747026,"5030":38.9859104595,"5031":39.2088291799,"5032":39.4424497453,"5033":39.685539762,"5034":39.9379143484,"5035":40.1986009189,"5036":40.4667312836,"5037":40.7411497575,"5038":41.0206860595,"5039":41.3040817527,"5040":41.5900756755,"5041":41.9133854522,"5042":42.3069345322,"5043":42.6817361184,"5044":43.0792334974,"5045":43.4751563222,"5046":43.8785489076,"5047":44.2820442757,"5048":44.6867451121,"5049":45.0897583469,"5050":45.4904130744,"5051":45.8891485232,"5052":46.289794433,"5053":46.6825336756,"5054":47.0708223432,"5055":47.4515841144,"5056":47.8251919956,"5057":48.1904480029,"5058":48.5470860541,"5059":48.8945098336,"5060":49.2324146202,"5061":49.5766009119,"5062":50.0220377084,"5063":50.4213519065,"5064":50.8468313923,"5065":51.2600740451,"5066":51.678590359,"5067":52.0921765585,"5068":52.5047497675,"5069":52.9133892299,"5070":53.3187909838,"5071":53.7205086052,"5072":54.1336627466,"5073":54.5369850017,"5074":54.9407859017,"5075":55.3395541736,"5076":55.7358415176,"5077":56.1282648243,"5078":56.5174986204,"5079":56.9032647852,"5080":57.2858268247,"5081":57.6652327582,"5082":57.998387121,"5083":58.3411352619,"5084":58.6685785819,"5085":58.9942376072,"5086":59.3122951516,"5087":59.626554351,"5088":59.9359509633,"5089":60.2418046837,"5090":60.5441969029,"5091":60.8437852825,"5092":61.1343074998,"5093":61.4239447838,"5094":61.7102462879,"5095":61.9951088701,"5096":62.2782072321,"5097":62.560283549,"5098":62.8415052464,"5099":63.122288665,"5100":63.4028894126,"5101":63.6836091299,"5102":63.8989187892,"5103":64.1168445365,"5104":64.3221459567,"5105":64.52402646,"5106":64.7193615236,"5107":64.9110017575,"5108":65.098662312,"5109":65.2834916186,"5110":65.4658029618,"5111":65.6462217124,"5112":65.80513922,"5113":65.9599686565,"5114":66.1111923238,"5115":66.2594455081,"5116":66.4052328209,"5117":66.5490052749,"5118":66.6911493699,"5119":66.8320003092,"5120":66.9718454372,"5121":67.1109307556,"5122":67.2272122435,"5123":67.3345226868,"5124":67.440308654,"5125":67.5415507909,"5126":67.6404824967,"5127":67.7365894066,"5128":67.8306526362,"5129":67.9227320909,"5130":68.013185357,"5131":68.1021661786,"5132":68.1871196509,"5133":68.2689806674,"5134":68.3500077841,"5135":68.429317609,"5136":68.5075852062,"5137":68.5846682157,"5138":68.6608054566,"5139":68.7360204925,"5140":68.8104236247,"5141":68.8840639655,"5142":68.9575869365,"5143":69.0311460459,"5144":69.1039664639,"5145":69.1764773112,"5146":69.2484944019,"5147":69.3201401782,"5148":69.3913827309,"5149":69.4622674062,"5150":69.5328014845,"5151":69.6030122724,"5152":69.6730104384,"5153":69.7429078869,"5154":69.812503288,"5155":69.8819314123,"5156":69.951159481,"5157":70.0202414352,"5158":70.0891901975,"5159":70.158041478,"5160":70.2268216602,"5161":70.2955636423,"5162":70.3641070603,"5163":70.4320323816,"5164":70.5002062258,"5165":70.5682547939,"5166":70.6364300288,"5167":70.7046677067,"5168":70.7730599938,"5169":70.8416187496,"5170":70.9103938551,"5171":70.9794139487,"5172":71.0486893045,"5173":71.1180929902,"5174":71.1878993469,"5175":71.2580167628,"5176":71.3285353009,"5177":71.3994503721,"5178":71.4708012964,"5179":71.5426018595,"5180":71.6148749895,"5181":71.6876353598,"5182":71.7606864723,"5183":71.8275549215,"5184":71.8972518212,"5185":71.9653400465,"5186":72.0341594116,"5187":72.1026288718,"5188":72.1713640571,"5189":72.240116793,"5190":72.3090574903,"5191":72.3781352334,"5192":72.4473990728,"5193":72.5149342649,"5194":72.5832006332,"5195":72.6510863218,"5196":72.7191715911,"5197":72.7871782083,"5198":72.8552492444,"5199":72.9233097374,"5200":72.9913875808,"5201":73.0594540664,"5202":73.1275045451,"5203":73.1904141061,"5204":73.2541500511,"5205":73.3165175278,"5206":73.3786766402,"5207":73.4400954698,"5208":73.5010765739,"5209":73.5614953341,"5210":73.6214325055,"5211":73.6808594788,"5212":73.7397970545,"5213":73.79770062,"5214":73.8551267447,"5215":73.9119450723,"5216":73.9682274189,"5217":74.0239432791,"5218":74.0791119872,"5219":74.1337274887,"5220":74.1877965088,"5221":74.2413199698,"5222":74.2943026891,"5223":74.3417018366,"5224":74.3878158564,"5225":74.4326919054,"5226":74.4764215709,"5227":74.5190766556,"5228":74.5607232322,"5229":74.6014201614,"5230":74.6412205699,"5231":74.6801725821,"5232":74.7183200814,"5233":74.7546946533,"5234":74.7899524361,"5235":74.8244586353,"5236":74.8581027192,"5237":74.8910110012,"5238":74.923184065,"5239":74.9546800855,"5240":74.9855234436,"5241":75.0157509102,"5242":75.0453888892,"5243":75.0713657156,"5244":75.0945973429,"5245":75.1174851007,"5246":75.1389365188,"5247":75.1596182544,"5248":75.1792965066,"5249":75.1981749954,"5250":75.2162258711,"5251":75.2335255707,"5252":75.2500877457,"5253":75.2650939477,"5254":75.2783989643,"5255":75.2912234569,"5256":75.3029979864,"5257":75.3140482919,"5258":75.3242387624,"5259":75.3336544157,"5260":75.3422600782,"5261":75.350071559,"5262":75.3570706304,"5263":75.3615912632,"5264":75.3620391314,"5265":75.3624330644,"5266":75.3607829113,"5267":75.3581232353,"5268":75.3539532851,"5269":75.3485274592,"5270":75.3417098256,"5271":75.3335485,"5272":75.3239895598,"5273":75.3125673544,"5274":75.2981683384,"5275":75.2827326882,"5276":75.2652514546,"5277":75.2461975347,"5278":75.2252908537,"5279":75.202620976,"5280":75.1780860794,"5281":75.1516745895,"5282":75.1233252159,"5283":75.0919523252,"5284":75.0513347063,"5285":75.0109618855,"5286":74.9660907494,"5287":74.9191553099,"5288":74.8689695462,"5289":74.8161471554,"5290":74.7603902473,"5291":74.7018475757,"5292":74.6404368891,"5293":74.5760678152,"5294":74.505110977,"5295":74.4325526878,"5296":74.3559060582,"5297":74.2764507252,"5298":74.1935666013,"5299":74.1075779833,"5300":74.0183310124,"5301":73.9259064603,"5302":73.8302642652,"5303":73.7314221444,"5304":73.6620542387,"5305":73.5793458566,"5306":73.5019297304,"5307":73.4193121418,"5308":73.3356892794,"5309":73.248018969,"5310":73.1570184858,"5311":73.0616326292,"5312":72.9617791053,"5313":72.8569941295,"5314":72.7625081458,"5315":72.6599937148,"5316":72.5558580279,"5317":72.4463923157,"5318":72.3330329073,"5319":72.2147286582,"5320":72.0917403249,"5321":71.9637435277,"5322":71.8307620113,"5323":71.6927047865,"5324":71.5808864581,"5325":71.4630601642,"5326":71.3466317457,"5327":71.2273917932,"5328":71.1070097945,"5329":70.9843319329,"5330":70.8597034816,"5331":70.7328062619,"5332":70.6037237469,"5333":70.4724070224,"5334":70.348422421,"5335":70.2237614426,"5336":70.098459761,"5337":69.9724915753,"5338":69.8458925782,"5339":69.718733105,"5340":69.5911124267,"5341":69.4631613847,"5342":69.3350307649,"5343":69.2068963119,"5344":69.0767162803,"5345":68.9460687001,"5346":68.8159031314,"5347":68.6861361945,"5348":68.5572184468,"5349":68.4293365516,"5350":68.3028105196,"5351":68.1778956055,"5352":68.0548772422,"5353":67.9340245416,"5354":67.8146034417,"5355":67.6971703278,"5356":67.5827596932,"5357":67.471268193,"5358":67.3631568533,"5359":67.2585899304,"5360":67.1578655082,"5361":67.0612008244,"5362":66.9688377357,"5363":66.8809908813,"5364":66.7840851782,"5365":66.675726859,"5366":66.5755500279,"5367":66.4744091916,"5368":66.3776586162,"5369":66.2832832986,"5370":66.1928872186,"5371":66.1061978787,"5372":66.0238211318,"5373":65.9458694933,"5374":65.8662613815,"5375":65.7790945073,"5376":65.7001512337,"5377":65.6220059369,"5378":65.5489023641,"5379":65.4791499042,"5380":65.4139662511,"5381":65.3530563675,"5382":65.2968296541,"5383":65.2452965851,"5384":65.1912679087,"5385":65.1174049301,"5386":65.0557770733,"5387":64.9907627422,"5388":64.9307638253,"5389":64.8720262364,"5390":64.8168053772,"5391":64.7642803265,"5392":64.7151073715,"5393":64.6691503087,"5394":64.6238465646,"5395":64.5628206819,"5396":64.511461996,"5397":64.4573199383,"5398":64.4069986745,"5399":64.3574668445,"5400":64.3104607143,"5401":64.2652808163,"5402":64.2224022404,"5403":64.1816752305,"5404":64.1426981908,"5405":64.0891283026,"5406":64.0436255001,"5407":63.9949936269,"5408":63.9490927099,"5409":63.9031705484,"5410":63.8587467983,"5411":63.8151699693,"5412":63.7728454843,"5413":63.7316262619,"5414":63.6916210797,"5415":63.6412758796,"5416":63.5954259351,"5417":63.547372733,"5418":63.5006490819,"5419":63.4536256432,"5420":63.4072314986,"5421":63.3610944481,"5422":63.3154742146,"5423":63.270299672,"5424":63.2256531042,"5425":63.1769416691,"5426":63.1295736263,"5427":63.0816006892,"5428":63.0340965609,"5429":62.986608435,"5430":62.9394341959,"5431":62.8924858678,"5432":62.8458593047,"5433":62.7995509365,"5434":62.7536003286,"5435":62.6995916047,"5436":62.646231678,"5437":62.5915527272,"5438":62.5367212474,"5439":62.4813228815,"5440":62.4257100761,"5441":62.3698348289,"5442":62.3138374884,"5443":62.2577574278,"5444":62.2016792786,"5445":62.1487161923,"5446":62.096332069,"5447":62.0445549897,"5448":61.9933844557,"5449":61.9428252812,"5450":61.8928813075,"5451":61.8435550638,"5452":61.7948474825,"5453":61.7467572308,"5454":61.6992805026,"5455":61.6512795957,"5456":61.6034391136,"5457":61.556117413,"5458":61.5091389759,"5459":61.4625931874,"5460":61.4164275493,"5461":61.370653124,"5462":61.3252420006,"5463":61.2801790928,"5464":61.2354366828,"5465":61.1913957774,"5466":61.1479060019,"5467":61.1046190168,"5468":61.061642738,"5469":61.0188506601,"5470":60.9762319124,"5471":60.9337154965,"5472":60.8912585137,"5473":60.8488022009,"5474":60.8062941131,"5475":60.7639803989,"5476":60.7218621037,"5477":60.67945414,"5478":60.6369040254,"5479":60.5940396383,"5480":60.5508506355,"5481":60.5072467798,"5482":60.4631790666,"5483":60.4185792351,"5484":60.3733901543,"5485":60.3292339103,"5486":60.2876513284,"5487":60.2444800295,"5488":60.201658084,"5489":60.1580490382,"5490":60.1140738879,"5491":60.0693850549,"5492":60.0240301971,"5493":59.9778691636,"5494":59.9308649026,"5495":59.8840978389,"5496":59.8402605255,"5497":59.7942487065,"5498":59.7484848122,"5499":59.7016023849,"5500":59.6541548729,"5501":59.605749389,"5502":59.5564804738,"5503":59.5062116163,"5504":59.454933499,"5505":59.403392891,"5506":59.3563364653,"5507":59.3063479043,"5508":59.2570347018,"5509":59.2064527342,"5510":59.1554652796,"5511":59.1035469411,"5512":59.0508825432,"5513":58.9973153944,"5514":58.942871697,"5515":58.8877089548,"5516":58.8383214991,"5517":58.7856655341,"5518":58.7341879338,"5519":58.6815387426,"5520":58.6287992377,"5521":58.5753483766,"5522":58.5214306456,"5523":58.4668694935,"5524":58.4117089641,"5525":58.3558912718,"5526":58.3040656406,"5527":58.2502303879,"5528":58.1970753857,"5529":58.1431609443,"5530":58.0891309955,"5531":58.0345966507,"5532":57.9796941894,"5533":57.9243042246,"5534":57.8684408321,"5535":57.8120558031,"5536":57.7597074382,"5537":57.7060092987,"5538":57.6528898438,"5539":57.599269561,"5540":57.5455848565,"5541":57.4915233547,"5542":57.4371549124,"5543":57.3823647758,"5544":57.3271359119,"5545":57.271406923,"5546":57.2159174187,"5547":57.1598233279,"5548":57.103269011,"5549":57.0461090983,"5550":56.9883459942,"5551":56.9299119145,"5552":56.8707772698,"5553":56.810896262,"5554":56.7502339007,"5555":56.6887523926,"5556":56.6328919167,"5557":56.5771129388,"5558":56.521332128,"5559":56.4654118122,"5560":56.4092423427,"5561":56.352724085,"5562":56.2957694388,"5563":56.238301079,"5564":56.1802511758,"5565":56.1215605633,"5566":56.0647601364,"5567":56.0082215704,"5568":55.9510612013,"5569":55.893613441,"5570":55.8356069124,"5571":55.7770927693,"5572":55.7179755238,"5573":55.658247008,"5574":55.5978680936,"5575":55.5368268165,"5576":55.4780008813,"5577":55.4205536814,"5578":55.3622723345,"5579":55.3042219775,"5580":55.2458339975,"5581":55.1873800387,"5582":55.1287204856,"5583":55.0699292226,"5584":55.0109801279,"5585":54.9519031846,"5586":54.8931478476,"5587":54.8348205739,"5588":54.7763169841,"5589":54.7179608799,"5590":54.6596107298,"5591":54.6013632965,"5592":54.5431994768,"5593":54.4851609757,"5594":54.4272611628,"5595":54.3695290474,"5596":54.3124360683,"5597":54.2564347397,"5598":54.2004524129,"5599":54.1450451987,"5600":54.0899464038,"5601":54.0353037466,"5602":53.981057559,"5603":53.9272515187,"5604":53.8738765353,"5605":53.8209483317,"5606":53.7683095985,"5607":53.7155916203,"5608":53.6634845335,"5609":53.6116512462,"5610":53.5602692613,"5611":53.509252593,"5612":53.4586421704,"5613":53.4084104406,"5614":53.3585591172,"5615":53.3090704188,"5616":53.2597747902,"5617":53.2097278014,"5618":53.1603382487,"5619":53.1108782441,"5620":53.0616931994,"5621":53.0125831619,"5622":52.9636154124,"5623":52.9147181935,"5624":52.8658843935,"5625":52.8170702261,"5626":52.7682870884,"5627":52.7207447789,"5628":52.6726705749,"5629":52.6248794087,"5630":52.5768791828,"5631":52.5288350085,"5632":52.4805839525,"5633":52.4321284307,"5634":52.3833893632,"5635":52.3343299754,"5636":52.2848942694,"5637":52.2374003872,"5638":52.1887624084,"5639":52.1403071055,"5640":52.0912657489,"5641":52.0419286933,"5642":51.9920637157,"5643":51.9417074006,"5644":51.8907690495,"5645":51.8392286464,"5646":51.787037715,"5647":51.7365442807,"5648":51.6849332675,"5649":51.6331940564,"5650":51.5807572253,"5651":51.527845301,"5652":51.4742962575,"5653":51.4201511739,"5654":51.3653595727,"5655":51.3099263621,"5656":51.25383795,"5657":51.2004061086,"5658":51.1462262631,"5659":51.0920876195,"5660":51.0375529897,"5661":50.9828096358,"5662":50.9277476539,"5663":50.8724184384,"5664":50.8168043746,"5665":50.7609328637,"5666":50.7048182269,"5667":50.6492358112,"5668":50.5935805097,"5669":50.5378823644,"5670":50.4821674862,"5671":50.4264688447,"5672":50.370822748,"5673":50.3152691025,"5674":50.2598504578,"5675":50.2046116471,"5676":50.1495991385,"5677":50.0947447438,"5678":50.0401679763,"5679":49.9859555545,"5680":49.9321396543,"5681":49.8787794207,"5682":49.8259188593,"5683":49.7736075918,"5684":49.7218899649,"5685":49.6708101021,"5686":49.620409071,"5687":49.5695683722,"5688":49.5186573262,"5689":49.468597725,"5690":49.4190045639,"5691":49.3701474389,"5692":49.3219572921,"5693":49.2745259455,"5694":49.2278561783,"5695":49.1819870944,"5696":49.1369317083,"5697":49.0905807466,"5698":49.0425426589,"5699":48.9958249134,"5700":48.9489894079,"5701":48.9028339432,"5702":48.8570162456,"5703":48.8117506823,"5704":48.7669598997,"5705":48.722700869,"5706":48.6789534761,"5707":48.6353224407,"5708":48.5914102367,"5709":48.548196268,"5710":48.5051837419,"5711":48.4626146614,"5712":48.4203522763,"5713":48.3784429014,"5714":48.3368354195,"5715":48.2955223867,"5716":48.2544701908,"5717":48.21302186,"5718":48.1696497138,"5719":48.1270754044,"5720":48.0839195347,"5721":48.0408697213,"5722":47.9975691162,"5723":47.9541789632,"5724":47.9105973137,"5725":47.8668508669,"5726":47.8228999002,"5727":47.7788173957,"5728":47.7350555795,"5729":47.6908614944,"5730":47.6465781287,"5731":47.6019970046,"5732":47.5571895432,"5733":47.5120902108,"5734":47.4667056027,"5735":47.4210104627,"5736":47.3750003063,"5737":47.3287338736,"5738":47.2843064937,"5739":47.2388063398,"5740":47.1936743415,"5741":47.1481616082,"5742":47.1026281209,"5743":47.0568872337,"5744":47.0110338652,"5745":46.9650296009,"5746":46.918909615,"5747":46.8726786547,"5748":46.8262145559,"5749":46.7797281907,"5750":46.7331617401,"5751":46.6865892747,"5752":46.6400222225,"5753":46.5935064351,"5754":46.5470731569,"5755":46.5007631033,"5756":46.4546139756,"5757":46.4086662653,"5758":46.362142074,"5759":46.3160405188,"5760":46.2700535024,"5761":46.2244101699,"5762":46.1790682408,"5763":46.1341183811,"5764":46.0895818338,"5765":46.0455114505,"5766":46.0019410114,"5767":45.9589104014,"5768":45.9140730888,"5769":45.8699143001,"5770":45.8259039348,"5771":45.7823945484,"5772":45.7392902576,"5773":45.6967091341,"5774":45.6546533614,"5775":45.6131745429,"5776":45.5722915497,"5777":45.5320320141,"5778":45.4907492314,"5779":45.4498723548,"5780":45.4094237942,"5781":45.3694370748,"5782":45.3299347147,"5783":45.2909336449,"5784":45.2524445998,"5785":45.2144729174,"5786":45.1770188658,"5787":45.1400780935,"5788":45.1034943804,"5789":45.0673457763,"5790":45.0316645705,"5791":44.9964105168,"5792":44.9615753643,"5793":44.927130055,"5794":44.8930517992,"5795":44.8593109511,"5796":44.8258780138,"5797":44.7927205572,"5798":44.759323726,"5799":44.7257912166,"5800":44.6924568174,"5801":44.6591112278,"5802":44.6258182858,"5803":44.5925020923,"5804":44.5591550969,"5805":44.5257344119,"5806":44.4922142252,"5807":44.4585600881,"5808":44.4250389872,"5809":44.3916754185,"5810":44.3580215538,"5811":44.3242494057,"5812":44.2902203475,"5813":44.2559556584,"5814":44.2214003996,"5815":44.1865418217,"5816":44.151350265,"5817":44.1158088479,"5818":44.0809347797,"5819":44.0476984378,"5820":44.0135614084,"5821":43.9797428074,"5822":43.9455712565,"5823":43.9113361555,"5824":43.8768557123,"5825":43.8421932329,"5826":43.8072980562,"5827":43.7721844604,"5828":43.7369219025,"5829":43.7017086807,"5830":43.6662002945,"5831":43.6305798501,"5832":43.5947693569,"5833":43.5588270605,"5834":43.522747405,"5835":43.4865605445,"5836":43.4502819232,"5837":43.4139368628,"5838":43.3777032373,"5839":43.3425240384,"5840":43.3070040319,"5841":43.2718661339,"5842":43.2367646031,"5843":43.2018917214,"5844":43.1671708432,"5845":43.1326596291,"5846":43.0983476038,"5847":43.0642567372,"5848":43.0303918848,"5849":42.9968039744,"5850":42.9634396458,"5851":42.9303300125,"5852":42.8974595425,"5853":42.8648318476,"5854":42.8324364225,"5855":42.8002650979,"5856":42.7683036706,"5857":42.7365360085,"5858":42.7049419757,"5859":42.6733332444,"5860":42.6418958879,"5861":42.6105045841,"5862":42.5791776364,"5863":42.5478566858,"5864":42.516517459,"5865":42.4851147011,"5866":42.4536101146,"5867":42.4219588126,"5868":42.3901165439,"5869":42.3585872726,"5870":42.326678395,"5871":42.2945763677,"5872":42.2621055564,"5873":42.2292726123,"5874":42.1959945435,"5875":42.162235101,"5876":42.1279369958,"5877":42.093056216,"5878":42.0575452978,"5879":42.0239679428,"5880":41.9895980386,"5881":41.9550109625,"5882":41.9198161708,"5883":41.8841145654,"5884":41.8477735086,"5885":41.8107880703,"5886":41.7731002082,"5887":41.7346888426,"5888":41.6955245606,"5889":41.6571569257,"5890":41.6182422652,"5891":41.5787633633,"5892":41.5386946698,"5893":41.4980233379,"5894":41.4567440226,"5895":41.4148594802,"5896":41.3723797433,"5897":41.3293217517,"5898":41.2857088238,"5899":41.2443587408,"5900":41.2035949009,"5901":41.1625521775,"5902":41.1217078592,"5903":41.0809090388,"5904":41.0403526374,"5905":41.0000659098,"5906":40.9601583502,"5907":40.9206949688,"5908":40.8817598096,"5909":40.8430754792,"5910":40.8048163395,"5911":40.7673185418,"5912":40.7305240492,"5913":40.6945688384,"5914":40.659484583,"5915":40.6253481078,"5916":40.5922060803,"5917":40.560112129,"5918":40.5291077766,"5919":40.4958745314,"5920":40.4598115995,"5921":40.4256774763,"5922":40.3912178076,"5923":40.3577034182,"5924":40.3246048637,"5925":40.2922681183,"5926":40.26057603,"5927":40.2296192744,"5928":40.199362019,"5929":40.1698071312,"5930":40.1409162812,"5931":40.1126623586,"5932":40.0849882673,"5933":40.0578342225,"5934":40.0311250313,"5935":40.0047773738,"5936":39.9786972285,"5937":39.952782136,"5938":39.9269212255,"5939":39.9017347283,"5940":39.8788433369,"5941":39.8549047727,"5942":39.8313547425,"5943":39.8072127288,"5944":39.7827131889,"5945":39.7574839114,"5946":39.7314589229,"5947":39.7044225429,"5948":39.676238431,"5949":39.6468694979,"5950":39.6169565024,"5951":39.5851301614,"5952":39.5518493732,"5953":39.5166611019,"5954":39.4795835901,"5955":39.4404132071,"5956":39.3990725246,"5957":39.3554370375,"5958":39.3094228558,"5959":39.2616055179,"5960":39.2322039236,"5961":39.1930003805,"5962":39.1578520085,"5963":39.1194195353,"5964":39.081069644,"5965":39.0408659738,"5966":38.9995800066,"5967":38.956679976,"5968":38.9123338222,"5969":38.8664048372,"5970":38.8202758853,"5971":38.7722455394,"5972":38.7231509767,"5973":38.672657749,"5974":38.62105747,"5975":38.5683648663,"5976":38.5147681429,"5977":38.4604020966,"5978":38.4054602277,"5979":38.3501372148,"5980":38.2917923155,"5981":38.2340190642,"5982":38.1758541925,"5983":38.1182320153,"5984":38.0611550814,"5985":38.005108881,"5986":37.9503538316,"5987":37.897278454,"5988":37.8462219687,"5989":37.7975618849,"5990":37.7519787086,"5991":37.7095388696,"5992":37.6707032286,"5993":37.6358245419,"5994":37.605316823,"5995":37.5795692551,"5996":37.5589873362,"5997":37.5439702486,"5998":37.5349202187,"5999":37.5322356101,"6000":0.8044078515,"6001":0.7993849158,"6002":0.7943619744,"6003":0.7893390359,"6004":0.7843160959,"6005":0.7792931566,"6006":0.774270217,"6007":0.7692472776,"6008":0.7642243381,"6009":0.7592013986,"6010":0.7541784591,"6011":0.7491555196,"6012":0.7441325801,"6013":0.7391096406,"6014":0.7340867011,"6015":0.7290637616,"6016":0.7240408221,"6017":0.7190178826,"6018":0.7139949431,"6019":0.7089720036,"6020":0.7039490641,"6021":0.7049270921,"6022":0.7092806643,"6023":0.7119464644,"6024":0.7154561506,"6025":0.7185438937,"6026":0.7218426083,"6027":0.7250358372,"6028":0.728281809,"6029":0.7315014093,"6030":0.7347341953,"6031":0.7381513192,"6032":0.7417700136,"6033":0.7452879227,"6034":0.7488562245,"6035":0.75239933,"6036":0.7559550336,"6037":0.7595044381,"6038":0.7630569922,"6039":0.7666079715,"6040":0.7701597382,"6041":0.7801575191,"6042":0.8017590309,"6043":0.8175586772,"6044":0.8362592563,"6045":0.8535093689,"6046":0.8714847148,"6047":0.8890974441,"6048":0.9068914817,"6049":0.9245948651,"6050":0.9423435756,"6051":0.9604299928,"6052":0.9796860747,"6053":0.9983573243,"6054":1.01732099,"6055":1.0361384476,"6056":1.0550290093,"6057":1.0738830189,"6058":1.0927553046,"6059":1.1116184523,"6060":1.1304861689,"6061":1.1511360197,"6062":1.1838318382,"6063":1.2105046729,"6064":1.2401889995,"6065":1.2683675802,"6066":1.2972990338,"6067":1.3258540509,"6068":1.3545972863,"6069":1.3832464126,"6070":1.4119425934,"6071":1.4406696396,"6072":1.4711218185,"6073":1.500711431,"6074":1.5307323267,"6075":1.5605375809,"6076":1.5904506558,"6077":1.6203098203,"6078":1.65019594,"6079":1.6800685821,"6080":1.709947963,"6081":1.7398239745,"6082":1.755434979,"6083":1.7772580552,"6084":1.7959750956,"6085":1.8162451539,"6086":1.8357387032,"6087":1.855620507,"6088":1.8753081836,"6089":1.8950929238,"6090":1.9148291321,"6091":1.9345896064,"6092":1.9521839811,"6093":1.9704767687,"6094":1.9884203498,"6095":2.0065385342,"6096":2.024569417,"6097":2.0426439505,"6098":2.0606966587,"6099":2.0787602795,"6100":2.096818444,"6101":2.1148793367,"6102":2.1196114177,"6103":2.1267431213,"6104":2.1326750136,"6105":2.1392068115,"6106":2.1454386566,"6107":2.1518204782,"6108":2.1581273115,"6109":2.1644716389,"6110":2.1707972193,"6111":2.1771321732,"6112":2.180271318,"6113":2.1834128062,"6114":2.1865531226,"6115":2.189694025,"6116":2.1928346344,"6117":2.1959753902,"6118":2.1991160729,"6119":2.2022567921,"6120":2.205397493,"6121":2.2085382031,"6122":2.2085690401,"6123":2.2078633315,"6124":2.2075258957,"6125":2.2070043234,"6126":2.2065748194,"6127":2.2060992813,"6128":2.2056467603,"6129":2.2051827307,"6130":2.2047244553,"6131":2.2042633029,"6132":2.2034174964,"6133":2.2023537934,"6134":2.2013990387,"6135":2.2003898099,"6136":2.1994078181,"6137":2.1984122079,"6138":2.1974234068,"6139":2.1964312012,"6140":2.1954406978,"6141":2.1944493433,"6142":2.1941041027,"6143":2.1944291716,"6144":2.1944190858,"6145":2.1945765773,"6146":2.1946502802,"6147":2.1947658774,"6148":2.1948605274,"6149":2.194965651,"6150":2.1950655378,"6151":2.195168043,"6152":2.195365981,"6153":2.1957387092,"6154":2.1960240423,"6155":2.196353073,"6156":2.1966602549,"6157":2.1969783611,"6158":2.1972910052,"6159":2.1976063803,"6160":2.19792039,"6161":2.1982350824,"6162":2.1987770443,"6163":2.2000507837,"6164":2.2009586344,"6165":2.2020494294,"6166":2.2030487522,"6167":2.2040938112,"6168":2.205116002,"6169":2.2061496269,"6170":2.2071775348,"6171":2.2082083012,"6172":2.2092686677,"6173":2.2105391969,"6174":2.2117046447,"6175":2.2129226331,"6176":2.2141143513,"6177":2.2153192046,"6178":2.2165174903,"6179":2.2177190598,"6180":2.2189189874,"6181":2.220119736,"6182":2.2213197625,"6183":2.2225101809,"6184":2.2237054034,"6185":2.2248982239,"6186":2.2260922454,"6187":2.2272856663,"6188":2.2284793875,"6189":2.2296729586,"6190":2.2308666048,"6191":2.2320602134,"6192":2.2332538408,"6193":2.234441414,"6194":2.2356316242,"6195":2.2368205159,"6196":2.2380100669,"6197":2.2391992883,"6198":2.2403886745,"6199":2.2415779782,"6200":2.2427673232,"6201":2.2439566476,"6202":2.2451459822,"6203":2.2459352174,"6204":2.246853057,"6205":2.2477065943,"6206":2.2485922828,"6207":2.2494618957,"6208":2.2503395464,"6209":2.2512131782,"6210":2.2520888194,"6211":2.2529634559,"6212":2.2538385948,"6213":2.2546773414,"6214":2.2555227189,"6215":2.256364781,"6216":2.2572085008,"6217":2.2580513917,"6218":2.2588946971,"6219":2.2597377953,"6220":2.260580997,"6221":2.261424147,"6222":2.2622673228,"6223":2.26225986,"6224":2.2622524037,"6225":2.2622449441,"6226":2.2622374861,"6227":2.2622300273,"6228":2.262222569,"6229":2.2622151104,"6230":2.2622076519,"6231":2.2622001934,"6232":2.2621927349,"6233":2.2619953377,"6234":2.2617529551,"6235":2.2615330651,"6236":2.2613019289,"6237":2.2610764158,"6238":2.2608480911,"6239":2.2606211722,"6240":2.2603935504,"6241":2.26016628,"6242":2.2599388339,"6243":2.2590940521,"6244":2.2579019257,"6245":2.2568834715,"6246":2.2557781812,"6247":2.254716309,"6248":2.2536327277,"6249":2.252560001,"6250":2.251481847,"6251":2.2504064066,"6252":2.2493296094,"6253":2.2480834129,"6254":2.246660258,"6255":2.2453255823,"6256":2.243946667,"6257":2.2425898715,"6258":2.2412220161,"6259":2.2398596907,"6260":2.2384946002,"6261":2.2371308923,"6262":2.2357664931,"6263":2.2340040163,"6264":2.2315242047,"6265":2.2294030606,"6266":2.2271025827,"6267":2.2248917717,"6268":2.2226361273,"6269":2.2204028996,"6270":2.2181584635,"6271":2.2159196316,"6272":2.2136779976,"6273":2.2113284379,"6274":2.2086267701,"6275":2.2061011563,"6276":2.2034875156,"6277":2.2009178883,"6278":2.1983262543,"6279":2.1957456237,"6280":2.1931594914,"6281":2.1905761099,"6282":2.187991353,"6283":2.1850866705,"6284":2.1800175042,"6285":2.1760305798,"6286":2.1715025345,"6287":2.1672450496,"6288":2.1628522845,"6289":2.1585271596,"6290":2.1541682145,"6291":2.1498261795,"6292":2.1454756895,"6293":2.141093355,"6294":2.1355726402,"6295":2.1306211155,"6296":2.1253849958,"6297":2.1202911736,"6298":2.1151262026,"6299":2.109996806,"6300":2.1048496222,"6301":2.099711332,"6302":2.094568595,"6303":2.0894280815,"6304":2.0856548279,"6305":2.0812862264,"6306":2.0772152988,"6307":2.0729955343,"6308":2.0688501883,"6309":2.064667633,"6310":2.0605036823,"6311":2.0563304293,"6312":2.0521618275,"6313":2.0479909001,"6314":2.0444888721,"6315":2.040771633,"6316":2.0371619995,"6317":2.0334985632,"6318":2.0298620283,"6319":2.0262120427,"6320":2.0225687824,"6321":2.0189221595,"6322":2.0152772179,"6323":2.0116314356,"6324":2.0096709418,"6325":2.0074069616,"6326":2.0052947245,"6327":2.0031066159,"6328":2.0009564431,"6329":1.9987873024,"6330":1.9966276456,"6331":1.9944632469,"6332":1.9923012191,"6333":1.9901380059,"6334":1.9891863348,"6335":1.9882343674,"6336":1.9872825482,"6337":1.9863306549,"6338":1.9853787986,"6339":1.9844269238,"6340":1.9834750582,"6341":1.9825231881,"6342":1.9815713202,"6343":1.9806194512,"6344":1.9799940602,"6345":1.9794459926,"6346":1.9788592633,"6347":1.9782918648,"6348":1.9777148009,"6349":1.9771425697,"6350":1.9765679222,"6351":1.9759944829,"6352":1.9754204394,"6353":1.974846698,"6354":1.9744200436,"6355":1.9740762861,"6356":1.9736910802,"6357":1.9733265985,"6358":1.9729517546,"6359":1.9725820918,"6360":1.9722098385,"6361":1.9718388805,"6362":1.9714672748,"6363":1.971095993,"6364":1.9702062931,"6365":1.9687784851,"6366":1.9676197311,"6367":1.9663264502,"6368":1.9651004327,"6369":1.9638407835,"6370":1.9625979502,"6371":1.9613467089,"6372":1.9600996716,"6373":1.9588505323,"6374":1.9573609404,"6375":1.9554361166,"6376":1.9537289088,"6377":1.9519128929,"6378":1.9501512811,"6379":1.9483624673,"6380":1.9465872545,"6381":1.9448052411,"6382":1.9430266281,"6383":1.9412463148,"6384":1.9391620116,"6385":1.9360974403,"6386":1.933523003,"6387":1.9307034987,"6388":1.9280065279,"6389":1.9252482903,"6390":1.9225206862,"6391":1.9197777653,"6392":1.9170425028,"6393":1.9143034111,"6394":1.9114510126,"6395":1.9078199125,"6396":1.9045781632,"6397":1.9011417385,"6398":1.8978026515,"6399":1.8944148956,"6400":1.8910514742,"6401":1.8876758856,"6402":1.8843063805,"6403":1.8809338337,"6404":1.8775459493,"6405":1.8736262637,"6406":1.8699724787,"6407":1.8661857433,"6408":1.8624654831,"6409":1.8587119854,"6410":1.8549751064,"6411":1.8512299181,"6412":1.8474888844,"6413":1.8437457734,"6414":1.840003701,"6415":1.8359046254,"6416":1.8319610525,"6417":1.8279397282,"6418":1.8239572796,"6419":1.8199553931,"6420":1.8159632256,"6421":1.8119661986,"6422":1.8079716014,"6423":1.8039757892,"6424":1.7999805846,"6425":1.7959521671,"6426":1.7919344793,"6427":1.7879114267,"6428":1.7838910566,"6429":1.7798693452,"6430":1.7758483044,"6431":1.7718269284,"6432":1.7678057199,"6433":1.7637844277,"6434":1.7597631773,"6435":1.7552767583,"6436":1.7508740762,"6437":1.7464295257,"6438":1.7420059094,"6439":1.737571826,"6440":1.7331429762,"6441":1.7287115095,"6442":1.7242813513,"6443":1.7198505389,"6444":1.7154200535,"6445":1.7115223438,"6446":1.7076247158,"6447":1.7037270469,"6448":1.6998293985,"6449":1.6959317398,"6450":1.6920340863,"6451":1.6881364301,"6452":1.6842387753,"6453":1.6803411199,"6454":1.6764434647,"6455":1.6726369369,"6456":1.6688519921,"6457":1.6650562558,"6458":1.6612659152,"6459":1.6574728768,"6460":1.6536811873,"6461":1.6498888233,"6462":1.6460967966,"6463":1.6423046012,"6464":1.6385124902,"6465":1.634875149,"6466":1.6313249107,"6467":1.627731121,"6468":1.6241591069,"6469":1.620576205,"6470":1.6169987471,"6471":1.6134185672,"6472":1.6098397482,"6473":1.6062602488,"6474":1.6026810896,"6475":1.5992138186,"6476":1.5958630009,"6477":1.5924539565,"6478":1.5890740254,"6479":1.5856795377,"6480":1.5822923283,"6481":1.5789014798,"6482":1.5755124508,"6483":1.5721225121,"6484":1.5687330282,"6485":1.5654923786,"6486":1.5625201538,"6487":1.5594137166,"6488":1.5563743857,"6489":1.5533015016,"6490":1.5502453941,"6491":1.5471808983,"6492":1.5441205966,"6493":1.5410581979,"6494":1.5379968477,"6495":1.5350364972,"6496":1.5324027359,"6497":1.52960568,"6498":1.5268902714,"6499":1.5241340391,"6500":1.5213982187,"6501":1.5186521924,"6502":1.515911269,"6503":1.5131677941,"6504":1.510425595,"6505":1.5077371573,"6506":1.5054162335,"6507":1.5029115527,"6508":1.5004987505,"6509":1.498040009,"6510":1.4956042371,"6511":1.4931569804,"6512":1.4907154661,"6513":1.4882710806,"6514":1.4858281307,"6515":1.4833985543,"6516":1.4814132106,"6517":1.4792057506,"6518":1.4771093487,"6519":1.4749574178,"6520":1.4728332514,"6521":1.4706952027,"6522":1.4685640952,"6523":1.4664295171,"6524":1.4642966743,"6525":1.4621629638,"6526":1.4602494681,"6527":1.4582400444,"6528":1.4562785846,"6529":1.4542931429,"6530":1.4523196922,"6531":1.450340246,"6532":1.4483637976,"6533":1.4463858502,"6534":1.4444086523,"6535":1.4424310797,"6536":1.4406610517,"6537":1.4388242795,"6538":1.4370208794,"6539":1.4352007932,"6540":1.4333890501,"6541":1.4315731354,"6542":1.4297593065,"6543":1.4279444348,"6544":1.4261300844,"6545":1.4243154734,"6546":1.4224356211,"6547":1.4205674705,"6548":1.418693469,"6549":1.416822393,"6550":1.4149498542,"6551":1.4130780468,"6552":1.4112058738,"6553":1.4093338835,"6554":1.4074618019,"6555":1.405589766,"6556":1.4040293901,"6557":1.4024690256,"6558":1.4009086554,"6559":1.3993482881,"6560":1.3977879194,"6561":1.3962275513,"6562":1.394667183,"6563":1.3931068147,"6564":1.3915464464,"6565":1.3899860782,"6566":1.3885184723,"6567":1.3870728364,"6568":1.3856162154,"6569":1.384165087,"6570":1.3827112124,"6571":1.3812587108,"6572":1.3798055227,"6573":1.3783526779,"6574":1.3768996615,"6575":1.3754467308,"6576":1.3740976726,"6577":1.3728070882,"6578":1.3714872669,"6579":1.370182064,"6580":1.3688695519,"6581":1.3675606945,"6582":1.3662500097,"6583":1.3649402386,"6584":1.3636300106,"6585":1.3623200111,"6586":1.3610017534,"6587":1.3596750957,"6588":1.358352638,"6589":1.3570280803,"6590":1.3557045726,"6591":1.3543805398,"6592":1.3530567696,"6593":1.3517328682,"6594":1.3504090324,"6595":1.3490851637,"6596":1.3477503879,"6597":1.3463959414,"6598":1.3450513303,"6599":1.3437018015,"6600":1.3423547315,"6601":1.3410064321,"6602":1.3396587474,"6603":1.3383107554,"6604":1.336962917,"6605":1.3356150018,"6606":1.3342443199,"6607":1.3328003168,"6608":1.3313929743,"6609":1.3299673015,"6610":1.3285507938,"6611":1.3271297035,"6612":1.3257109046,"6613":1.32429096,"6614":1.3228715882,"6615":1.32145193,"6616":1.320011675,"6617":1.3184313536,"6618":1.3169210654,"6619":1.3153757606,"6620":1.3138479642,"6621":1.3123114135,"6622":1.3107792399,"6623":1.3092448778,"6624":1.30771161,"6625":1.306177795,"6626":1.3046467591,"6627":1.3031945076,"6628":1.3017028638,"6629":1.3002309162,"6630":1.2987491206,"6631":1.2972722489,"6632":1.2957929153,"6633":1.2943148126,"6634":1.2928360945,"6635":1.2913576841,"6636":1.2898791198,"6637":1.2885543344,"6638":1.2871625758,"6639":1.2858043038,"6640":1.2844292885,"6641":1.2830626448,"6642":1.2816918153,"6643":1.2803230787,"6644":1.2789532957,"6645":1.2775840359,"6646":1.2762145145,"6647":1.2750067689,"6648":1.2737470006,"6649":1.2725132437,"6650":1.2712664811,"6651":1.2700262213,"6652":1.2687827101,"6653":1.2675408246,"6654":1.2662981263,"6655":1.2650558344,"6656":1.2638133392,"6657":1.2627222207,"6658":1.2616038218,"6659":1.2604990631,"6660":1.2593874844,"6661":1.2582793156,"6662":1.2571694419,"6663":1.2560604206,"6664":1.2549509731,"6665":1.2538417387,"6666":1.2527323978,"6667":1.2517089702,"6668":1.2506855159,"6669":1.2496620749,"6670":1.2486386273,"6671":1.247615183,"6672":1.246591737,"6673":1.2455682919,"6674":1.2445448464,"6675":1.243521401,"6676":1.2424979556,"6677":1.241412538,"6678":1.2403124428,"6679":1.2392196864,"6680":1.2381232606,"6681":1.2370286695,"6682":1.2359331611,"6683":1.2348381113,"6684":1.2337428322,"6685":1.2326476678,"6686":1.231552446,"6687":1.2303543656,"6688":1.2290983969,"6689":1.2278713723,"6690":1.2266298756,"6691":1.225395615,"6692":1.2241577364,"6693":1.2229216668,"6694":1.2216846927,"6695":1.2204481708,"6696":1.2192114228,"6697":1.217786391,"6698":1.2161656599,"6699":1.2146427785,"6700":1.2130709722,"6701":1.2115236283,"6702":1.2099640533,"6703":1.2084105938,"6704":1.2068540766,"6705":1.2052990882,"6706":1.2037433354,"6707":1.2021430661,"6708":1.2004617879,"6709":1.1988210142,"6710":1.1971599883,"6711":1.1955090885,"6712":1.1938531256,"6713":1.1921996942,"6714":1.1905449971,"6715":1.1888909329,"6716":1.1872365522,"6717":1.1855104046,"6718":1.1835529898,"6719":1.1817112086,"6720":1.1798116106,"6721":1.177940921,"6722":1.1760557772,"6723":1.1741778605,"6724":1.1722963303,"6725":1.1704166068,"6726":1.16853598,"6727":1.1666578106,"6728":1.1647929545,"6729":1.1629214417,"6730":1.1610532573,"6731":1.1591834087,"6732":1.1573143922,"6733":1.1554449596,"6734":1.1535757351,"6735":1.1517064065,"6736":1.14983713,"6737":1.1479705812,"6738":1.1461907897,"6739":1.1443676196,"6740":1.1425661387,"6741":1.1407538132,"6742":1.1389469101,"6743":1.1371372957,"6744":1.135329037,"6745":1.1335201004,"6746":1.1317115028,"6747":1.1299027357,"6748":1.1280114628,"6749":1.1261561144,"6750":1.1242828038,"6751":1.1224184742,"6752":1.1205496541,"6753":1.1186830793,"6754":1.1168153819,"6755":1.1149482457,"6756":1.113080829,"6757":1.1112135525,"6758":1.1090965281,"6759":1.1070597923,"6760":1.1049829122,"6761":1.1029261042,"6762":1.1008592602,"6763":1.0987974342,"6764":1.0967330992,"6765":1.0946700188,"6766":1.092606311,"6767":1.0905429169,"6768":1.0881054718,"6769":1.0857354061,"6770":1.0833316506,"6771":1.0809447401,"6772":1.0785494071,"6773":1.0761582853,"6774":1.0737650579,"6775":1.0713728833,"6776":1.0689801823,"6777":1.0665877445,"6778":1.0640483708,"6779":1.0615090629,"6780":1.0589697221,"6781":1.0564303977,"6782":1.0538910651,"6783":1.0513517366,"6784":1.0488124061,"6785":1.0462730766,"6786":1.0437337466,"6787":1.0411944168,"6788":1.0386494431,"6789":1.0361031326,"6790":1.0335574905,"6791":1.0310115142,"6792":1.028465705,"6793":1.0259198123,"6794":1.0233739613,"6795":1.0208280895,"6796":1.0182822281,"6797":1.0157363614,"6798":1.0131720881,"6799":1.0105974582,"6800":1.0080280065,"6801":1.0054559658,"6802":1.0028852196,"6803":1.0003138261,"6804":0.9977427563,"6805":0.9951715246,"6806":0.9926003739,"6807":0.9900291827,"6808":0.9875087354,"6809":0.9850409526,"6810":0.9825468375,"6811":0.9800658886,"6812":0.9775783566,"6813":0.9750941161,"6814":0.9726082299,"6815":0.9701231666,"6816":0.9676376918,"6817":0.9651524227,"6818":0.9628408803,"6819":0.9608422823,"6820":0.9586872121,"6821":0.9566103779,"6822":0.9544944258,"6823":0.9523980326,"6824":0.95029186,"6825":0.9481905771,"6826":0.9460868493,"6827":0.9439843439,"6828":0.9419021927,"6829":0.9398877356,"6830":0.9378394314,"6831":0.9358080508,"6832":0.9337682084,"6833":0.9317325968,"6834":0.9296948699,"6835":0.9276582006,"6836":0.9256210025,"6837":0.9235840689,"6838":0.9215950281,"6839":0.9199302235,"6840":0.9181033009,"6841":0.9163574372,"6842":0.9145710441,"6843":0.9128049157,"6844":0.9110286549,"6845":0.9092574603,"6846":0.9074837326,"6847":0.9057112715,"6848":0.9039397347,"6849":0.9022175807,"6850":0.9004707354,"6851":0.8987362357,"6852":0.8969955631,"6853":0.895257977,"6854":0.8935188477,"6855":0.89178049,"6856":0.8900417464,"6857":0.8883031958,"6858":0.8865645488,"6859":0.8849882965,"6860":0.8833413208,"6861":0.8817297068,"6862":0.8801004119,"6863":0.8784799575,"6864":0.8768550829,"6865":0.8752324183,"6866":0.8736086488,"6867":0.8719854317,"6868":0.8703619384,"6869":0.8688210269,"6870":0.8672535466,"6871":0.8656993507,"6872":0.8641385126,"6873":0.8625809957,"6874":0.8610218181,"6875":0.8594634709,"6876":0.8579047085,"6877":0.8563461536,"6878":0.854787495,"6879":0.8535578023,"6880":0.8522688791,"6881":0.8510095711,"6882":0.8497354555,"6883":0.8484687438,"6884":0.8471983301,"6885":0.8459297674,"6886":0.8446602792,"6887":0.8433912537,"6888":0.8421219969,"6889":0.8410596316,"6890":0.8399972085,"6891":0.8389348143,"6892":0.8378724056,"6893":0.8368100042,"6894":0.8357475991,"6895":0.8346851959,"6896":0.8336227917,"6897":0.832560388,"6898":0.8314979841,"6899":0.8308525934,"6900":0.8303059688,"6901":0.8297099612,"6902":0.8291386451,"6903":0.8285549833,"6904":0.8279774943,"6905":0.8273969189,"6906":0.8268178867,"6907":0.8262380829,"6908":0.8256586649,"6909":0.8250399797,"6910":0.8243994117,"6911":0.8237697851,"6912":0.8231346878,"6913":0.8225023258,"6914":0.8218685962,"6915":0.8212355504,"6916":0.8206021627,"6917":0.819968946,"6918":0.8193356437,"6919":0.8183187156,"6920":0.816903341,"6921":0.8156871897,"6922":0.8143714267,"6923":0.8131054695,"6924":0.8118146095,"6925":0.8105362008,"6926":0.8092515665,"6927":0.807970045,"6928":0.8066869671,"6929":0.8054053982,"6930":0.8041247555,"6931":0.8028436497,"6932":0.8015627754,"6933":0.8002817854,"6934":0.7990008532,"6935":0.7977198922,"6936":0.7964389455,"6937":0.7951579917,"6938":0.7938770415,"6939":0.7926919273,"6940":0.7918148645,"6941":0.790783776,"6942":0.7898297003,"6943":0.7888371183,"6944":0.7878637894,"6945":0.7868808339,"6946":0.7859026918,"6947":0.7849221429,"6948":0.7839427974,"6949":0.782978747,"6950":0.7821223,"6951":0.7812120513,"6952":0.7803287034,"6953":0.7794319051,"6954":0.7785418321,"6955":0.7776483964,"6956":0.776756642,"6957":0.775864047,"6958":0.7749718723,"6959":0.7741570381,"6960":0.7757851562,"6961":0.7761917982,"6962":0.7772091782,"6963":0.7779211892,"6964":0.7787858847,"6965":0.7795742379,"6966":0.7804007623,"6967":0.7812082011,"6968":0.7820251827,"6969":0.7828373929,"6970":0.7838055279,"6971":0.7847056063,"6972":0.7856397131,"6973":0.7865568057,"6974":0.7874824053,"6975":0.7884037514,"6976":0.7893272243,"6977":0.7902496338,"6978":0.791172575,"6979":0.7920952504,"6980":0.7926121188,"6981":0.7932594014,"6982":0.7938414769,"6983":0.794456156,"6984":0.7950545333,"6985":0.7956610615,"6986":0.7962635142,"6987":0.7968680047,"6988":0.7974714763,"6989":0.7980754573,"6990":0.7987123301,"6991":0.7993433639,"6992":0.7999773173,"6993":0.8006098109,"6994":0.8012430343,"6995":0.8018758928,"6996":0.8025089338,"6997":0.8031418836,"6998":0.8037748789,"6999":0.8044078515,"7000":37.7105060345,"7001":37.6691634668,"7002":37.6282368177,"7003":37.5881527882,"7004":37.5496011283,"7005":37.5131537511,"7006":37.4793452164,"7007":37.448659496,"7008":37.4215311948,"7009":37.3983446877,"7010":37.3794367964,"7011":37.365100082,"7012":37.3555855866,"7013":37.3511049417,"7014":37.3518319864,"7015":37.3579039914,"7016":37.3694225714,"7017":37.3864543635,"7018":37.4090315325,"7019":37.4371521615,"7020":37.4707805754,"7021":37.5472510976,"7022":37.6549807246,"7023":37.7648407148,"7024":37.8905005016,"7025":38.0239957654,"7026":38.168286967,"7027":38.3208993851,"7028":38.4821073733,"7029":38.6508317711,"7030":38.826685329,"7031":39.0101348133,"7032":39.2008320349,"7033":39.3964454749,"7034":39.5972100035,"7035":39.8020666526,"7036":40.0106091786,"7037":40.2221069894,"7038":40.435994624,"7039":40.6516277043,"7040":40.8684062877,"7041":41.1258947418,"7042":41.4608837412,"7043":41.7735391279,"7044":42.1119459565,"7045":42.4496654551,"7046":42.7978622614,"7047":43.1490407537,"7048":43.5051966309,"7049":43.8637207029,"7050":44.224436894,"7051":44.5883193641,"7052":44.9600233241,"7053":45.328814227,"7054":45.6989475672,"7055":46.0672209613,"7056":46.4342782337,"7057":46.7989346435,"7058":47.1610124876,"7059":47.5199180724,"7060":47.8753492008,"7061":48.2380596904,"7062":48.6731945912,"7063":49.0776490646,"7064":49.5021444701,"7065":49.9199738012,"7066":50.3434690833,"7067":50.7655809634,"7068":51.1891055697,"7069":51.6120499626,"7070":52.0349374596,"7071":52.4574817945,"7072":52.8901151957,"7073":53.3180113968,"7074":53.7484303272,"7075":54.1775783837,"7076":54.6072867638,"7077":55.036640203,"7078":55.4661589543,"7079":55.8956994055,"7080":56.3254970493,"7081":56.7556386192,"7082":57.0973972543,"7083":57.4669818207,"7084":57.8120005882,"7085":58.1601017478,"7086":58.4986946542,"7087":58.8352293643,"7088":59.1670422536,"7089":59.4964470944,"7090":59.8231962705,"7091":60.1482569883,"7092":60.4585033677,"7093":60.7705015217,"7094":61.0787947381,"7095":61.3869201671,"7096":61.6938500849,"7097":62.0007792774,"7098":62.3077356535,"7099":62.6152792532,"7100":62.923656443,"7101":63.2332261169,"7102":63.4611808203,"7103":63.69496774,"7104":63.9147431427,"7105":64.1319269038,"7106":64.3422178591,"7107":64.5489938029,"7108":64.7516519956,"7109":64.9514507184,"7110":65.1486035663,"7111":65.3437446785,"7112":65.5173172432,"7113":65.6870168061,"7114":65.8532344042,"7115":66.0165012817,"7116":66.1772334935,"7117":66.3358047314,"7118":66.4925330783,"7119":66.6476940939,"7120":66.8015227546,"7121":66.9542194767,"7122":67.0865699153,"7123":67.210977975,"7124":67.3339421465,"7125":67.4526797396,"7126":67.5690677188,"7127":67.6825668442,"7128":67.7937905979,"7129":67.9027238047,"7130":68.0096208111,"7131":68.1145620906,"7132":68.2152746874,"7133":68.3125749564,"7134":68.4084086993,"7135":68.5019431184,"7136":68.5937283204,"7137":68.683597419,"7138":68.7717242581,"7139":68.8580965824,"7140":68.9427821882,"7141":69.0257980731,"7142":69.1112023673,"7143":69.1996935573,"7144":69.2855492446,"7145":69.3715757123,"7146":69.4562771517,"7147":69.5403294546,"7148":69.6233309415,"7149":69.7054285755,"7150":69.7865037809,"7151":69.8665790461,"7152":69.9462170569,"7153":70.0259772731,"7154":70.1043562299,"7155":70.1820827309,"7156":70.2587666492,"7157":70.3345876655,"7158":70.4094474531,"7159":70.483393447,"7160":70.5564062257,"7161":70.628505248,"7162":70.7011140973,"7163":70.7775758873,"7164":70.8516536026,"7165":70.9264486805,"7166":71.0003603937,"7167":71.0741592145,"7168":71.1474378952,"7169":71.2203866616,"7170":71.2929039785,"7171":71.365040144,"7172":71.4369678846,"7173":71.5098433773,"7174":71.5818802519,"7175":71.653976757,"7176":71.72568058,"7177":71.7972205131,"7178":71.8684869027,"7179":71.9395412999,"7180":72.0103609079,"7181":72.08096584,"7182":72.1513530733,"7183":72.2214725009,"7184":72.2914115456,"7185":72.3611343688,"7186":72.4306661992,"7187":72.5000003068,"7188":72.5691445059,"7189":72.6380977739,"7190":72.7068618799,"7191":72.7754355359,"7192":72.8438173188,"7193":72.9119665586,"7194":72.9799286273,"7195":73.0476763353,"7196":73.1152155474,"7197":73.1825342049,"7198":73.2496280075,"7199":73.3164877139,"7200":73.3831056565,"7201":73.4494726551,"7202":73.5155797379,"7203":73.5789237136,"7204":73.6424649289,"7205":73.7051083687,"7206":73.7674209324,"7207":73.8291345189,"7208":73.8903956314,"7209":73.9511410896,"7210":74.0114107336,"7211":74.0711915521,"7212":74.1304960488,"7213":74.1890981743,"7214":74.2472399932,"7215":74.3048696034,"7216":74.362021831,"7217":74.4186885453,"7218":74.4748834261,"7219":74.5306098339,"7220":74.5858770204,"7221":74.6406921496,"7222":74.6950643805,"7223":74.7437010216,"7224":74.7912219681,"7225":74.8376636963,"7226":74.8831040002,"7227":74.9276047074,"7228":74.9712239818,"7229":75.0140147962,"7230":75.0560260099,"7231":75.0973028065,"7232":75.1378871634,"7233":75.1766343533,"7234":75.2143299169,"7235":75.2513979362,"7236":75.287694888,"7237":75.323361112,"7238":75.3583886385,"7239":75.3928391438,"7240":75.4267351157,"7241":75.4601146656,"7242":75.493004394,"7243":75.5215848477,"7244":75.5470617116,"7245":75.5724416125,"7246":75.5963219029,"7247":75.6195208551,"7248":75.6417274818,"7249":75.6631850945,"7250":75.6838492589,"7251":75.7038100801,"7252":75.7230818686,"7253":75.7406489918,"7254":75.7563545492,"7255":75.7717380651,"7256":75.7860828805,"7257":75.7998040111,"7258":75.8127395007,"7259":75.8250085933,"7260":75.8365827534,"7261":75.8475009027,"7262":75.8577623442,"7263":75.8648974813,"7264":75.8665970398,"7265":75.8689976614,"7266":75.8690896472,"7267":75.8684686278,"7268":75.8664042692,"7269":75.8633187882,"7270":75.8590469633,"7271":75.8537078651,"7272":75.8472700749,"7273":75.839088714,"7274":75.8275621702,"7275":75.8157041092,"7276":75.8020327464,"7277":75.7873271985,"7278":75.7712242397,"7279":75.7539261702,"7280":75.7353468553,"7281":75.7155397813,"7282":75.694484775,"7283":75.6701970032,"7284":75.6309192061,"7285":75.595135217,"7286":75.5536958721,"7287":75.5113720101,"7288":75.4659268703,"7289":75.4186132454,"7290":75.3689216782,"7291":75.3172098844,"7292":75.2633898774,"7293":75.207361419,"7294":75.1422473439,"7295":75.0778072251,"7296":75.0092573763,"7297":74.939134918,"7298":74.8662896239,"7299":74.7914053634,"7300":74.7142381217,"7301":74.6349990942,"7302":74.5536643373,"7303":74.4703211007,"7304":74.3935245672,"7305":74.3121973036,"7306":74.2314197511,"7307":74.1486007537,"7308":74.0650047861,"7309":73.9799749779,"7310":73.893823047,"7311":73.8063830146,"7312":73.7177336906,"7313":73.627836749,"7314":73.540879045,"7315":73.4519016953,"7316":73.3627313922,"7317":73.272416082,"7318":73.1814033667,"7319":73.0894493598,"7320":72.9966633965,"7321":72.9029460372,"7322":72.8082104877,"7323":72.7122707692,"7324":72.6254703131,"7325":72.5366494773,"7326":72.4482431721,"7327":72.3587532004,"7328":72.2686901161,"7329":72.1776093741,"7330":72.085585947,"7331":71.9924717721,"7332":71.8982635593,"7333":71.8029142484,"7334":71.713972503,"7335":71.6248752584,"7336":71.5356064631,"7337":71.446099067,"7338":71.3563222507,"7339":71.2662584258,"7340":71.1759070028,"7341":71.085279784,"7342":70.9944009382,"7343":70.9033040499,"7344":70.8140668467,"7345":70.7254517385,"7346":70.6368453278,"7347":70.5486111155,"7348":70.4606262496,"7349":70.3730228957,"7350":70.2858138575,"7351":70.1990783179,"7352":70.1128678387,"7353":70.0272518023,"7354":69.9432115935,"7355":69.8605339353,"7356":69.7785747321,"7357":69.6977414934,"7358":69.6179110085,"7359":69.5392279938,"7360":69.4617033713,"7361":69.385414459,"7362":69.3104042826,"7363":69.2367311221,"7364":69.161213098,"7365":69.0833546206,"7366":69.0078112641,"7367":68.9323872846,"7368":68.8583365281,"7369":68.7851655057,"7370":68.7132423536,"7371":68.6424913802,"7372":68.5730470903,"7373":68.5049277717,"7374":68.4366942078,"7375":68.3669780212,"7376":68.2995370223,"7377":68.2325753768,"7378":68.1670876289,"7379":68.102653251,"7380":68.0395474398,"7381":67.977685434,"7382":67.9171516484,"7383":67.8579359109,"7384":67.7981661691,"7385":67.7333876126,"7386":67.6719795394,"7387":67.6098099286,"7388":67.5490439351,"7389":67.4886685144,"7390":67.4292464694,"7391":67.3705383619,"7392":67.3126937058,"7393":67.255656659,"7394":67.1987463206,"7395":67.1377217478,"7396":67.0792272994,"7397":67.0199620158,"7398":66.9616295191,"7399":66.9034093723,"7400":66.8457339645,"7401":66.7883994221,"7402":66.7315119065,"7403":66.6750155608,"7404":66.6188245553,"7405":66.5596969858,"7406":66.5021599458,"7407":66.4439462904,"7408":66.3862086356,"7409":66.3283769673,"7410":66.2707381312,"7411":66.2131456601,"7412":66.1556659997,"7413":66.0982560978,"7414":66.0409252862,"7415":65.9814329871,"7416":65.9226727188,"7417":65.8633170275,"7418":65.8040415417,"7419":65.7445143461,"7420":65.6849052932,"7421":65.6251311538,"7422":65.5652348138,"7423":65.5051993339,"7424":65.4450436282,"7425":65.3845694284,"7426":65.324038238,"7427":65.2633755882,"7428":65.2026463854,"7429":65.1418459285,"7430":65.0810036406,"7431":65.020130571,"7432":64.9592451673,"7433":64.8983600353,"7434":64.8374883097,"7435":64.7737410851,"7436":64.7101700111,"7437":64.6460815127,"7438":64.5818720062,"7439":64.5173883245,"7440":64.4527443055,"7441":64.3879139622,"7442":64.3229353813,"7443":64.257809385,"7444":64.1925507272,"7445":64.1304847422,"7446":64.0687287469,"7447":64.0072677563,"7448":63.9460605314,"7449":63.8850739997,"7450":63.8242765502,"7451":63.7636387165,"7452":63.7031328269,"7453":63.6427327212,"7454":63.5824135823,"7455":63.5227197216,"7456":63.4632691422,"7457":63.4038530264,"7458":63.3445346196,"7459":63.2852406884,"7460":63.2259688322,"7461":63.1666828757,"7462":63.1073650434,"7463":63.0479896188,"7464":62.9885359173,"7465":62.9299465493,"7466":62.8719045607,"7467":62.8136410179,"7468":62.7554924833,"7469":62.6972383225,"7470":62.6389407787,"7471":62.5805227549,"7472":62.5219789428,"7473":62.4632699068,"7474":62.4043748164,"7475":62.3459633264,"7476":62.2881298508,"7477":62.229852558,"7478":62.1715923788,"7479":62.1130637012,"7480":62.0543589336,"7481":61.9953838963,"7482":61.9361402617,"7483":61.8765840471,"7484":61.8166962168,"7485":61.7573763362,"7486":61.6994665858,"7487":61.6406481291,"7488":61.582024865,"7489":61.522977652,"7490":61.4637580653,"7491":61.4041868316,"7492":61.3443050169,"7493":61.2840479181,"7494":61.2234078483,"7495":61.1629852707,"7496":61.1042476226,"7497":61.0443855607,"7498":60.984758704,"7499":60.9246293646,"7500":60.8643194183,"7501":60.8036264854,"7502":60.7426162424,"7503":60.6812256075,"7504":60.6194607586,"7505":60.5576367986,"7506":60.4977428704,"7507":60.4366325623,"7508":60.3758535389,"7509":60.3145919442,"7510":60.2532256452,"7511":60.1915417633,"7512":60.1296282719,"7513":60.0674274184,"7514":60.0049585212,"7515":59.9422939071,"7516":59.882129015,"7517":59.8206723815,"7518":59.759807775,"7519":59.6985622612,"7520":59.6374019252,"7521":59.5760772202,"7522":59.5147007566,"7523":59.4532075391,"7524":59.3916243187,"7525":59.3299343915,"7526":59.2695146094,"7527":59.2085740622,"7528":59.1479260471,"7529":59.0871485219,"7530":59.0264412516,"7531":58.9656947476,"7532":58.9049557296,"7533":58.8441939198,"7534":58.7834183119,"7535":58.7226187299,"7536":58.6630872256,"7537":58.6032793711,"7538":58.5437547503,"7539":58.4842102372,"7540":58.4247758501,"7541":58.3653662182,"7542":58.3060045919,"7543":58.2466605752,"7544":58.1873310556,"7545":58.1279995745,"7546":58.0682490601,"7547":58.0084941514,"7548":57.9486251103,"7549":57.8886847486,"7550":57.8286392894,"7551":57.7684924843,"7552":57.7082287748,"7553":57.6478418073,"7554":57.5873203027,"7555":57.5266552486,"7556":57.4677791249,"7557":57.4089933332,"7558":57.3502787857,"7559":57.2916019522,"7560":57.232935665,"7561":57.1742548224,"7562":57.1155369532,"7563":57.0567619218,"7564":56.9979118101,"7565":56.9389708073,"7566":56.880503294,"7567":56.8221316538,"7568":56.7636555689,"7569":56.7051527483,"7570":56.646563123,"7571":56.5878999341,"7572":56.5291432991,"7573":56.4702933642,"7574":56.4113435227,"7575":56.3522936447,"7576":56.2937909984,"7577":56.2356392914,"7578":56.1773401431,"7579":56.1191387546,"7580":56.0609076525,"7581":56.0027105848,"7582":55.9445190037,"7583":55.8863537194,"7584":55.8282137046,"7585":55.7701113948,"7586":55.7120039815,"7587":55.6538950442,"7588":55.5958687622,"7589":55.5379033091,"7590":55.4800314645,"7591":55.422259332,"7592":55.3646069002,"7593":55.3070875112,"7594":55.2497179139,"7595":55.1925130221,"7596":55.1354202416,"7597":55.0783908749,"7598":55.0216074203,"7599":54.9650009791,"7600":54.9086282281,"7601":54.8524812325,"7602":54.7965827227,"7603":54.7409382769,"7604":54.6855601309,"7605":54.6304551684,"7606":54.5754886916,"7607":54.5203323657,"7608":54.4656164941,"7609":54.4110343528,"7610":54.3567489489,"7611":54.3026842482,"7612":54.2488807253,"7613":54.195317469,"7614":54.1420012628,"7615":54.0889221322,"7616":54.0359464031,"7617":53.9823040023,"7618":53.9291807604,"7619":53.8759727692,"7620":53.8229754081,"7621":53.7700291665,"7622":53.7171990109,"7623":53.6644346243,"7624":53.6117406561,"7625":53.5590918678,"7626":53.5064914567,"7627":53.4543970718,"7628":53.4021168588,"7629":53.349964322,"7630":53.2977454477,"7631":53.2455207453,"7632":53.1932233251,"7633":53.1408502395,"7634":53.0883669495,"7635":53.0357552805,"7636":52.9829896273,"7637":52.9310070464,"7638":52.8785352488,"7639":52.826120668,"7640":52.773447976,"7641":52.7206369144,"7642":52.6675924963,"7643":52.6143301867,"7644":52.5608132814,"7645":52.5070342567,"7646":52.4529741255,"7647":52.399630311,"7648":52.3457916404,"7649":52.2918892146,"7650":52.2376840909,"7651":52.183277385,"7652":52.1286048311,"7653":52.0736893547,"7654":52.0185146054,"7655":51.9630880253,"7656":51.9074091516,"7657":51.8524281858,"7658":51.7971627214,"7659":51.7418513146,"7660":51.6863790306,"7661":51.6308114821,"7662":51.5751286973,"7663":51.5193575572,"7664":51.4635052662,"7665":51.4075922613,"7666":51.3516354255,"7667":51.2961913135,"7668":51.2408161992,"7669":51.1855310812,"7670":51.1303536641,"7671":51.0753044472,"7672":51.0204050353,"7673":50.9656782273,"7674":50.9111476559,"7675":50.8568375894,"7676":50.8027726881,"7677":50.7485915313,"7678":50.6945632958,"7679":50.6408397495,"7680":50.5873877382,"7681":50.5342667725,"7682":50.4814878153,"7683":50.429084211,"7684":50.3770760093,"7685":50.3254877011,"7686":50.2743392334,"7687":50.2230091081,"7688":50.1717115011,"7689":50.1209594543,"7690":50.0705296703,"7691":50.0205674477,"7692":49.971028295,"7693":49.9219584759,"7694":49.8733546476,"7695":49.8252342207,"7696":49.7776002951,"7697":49.7292850543,"7698":49.6800911011,"7699":49.6316942361,"7700":49.5832772356,"7701":49.53527617,"7702":49.4874906145,"7703":49.4400325279,"7704":49.3928517422,"7705":49.3459743736,"7706":49.2993848732,"7707":49.2528059936,"7708":49.2059685025,"7709":49.1595583195,"7710":49.1132274469,"7711":49.0671470885,"7712":49.0212249837,"7713":48.9754983391,"7714":48.9299374325,"7715":48.8845441638,"7716":48.8393030616,"7717":48.7937577599,"7718":48.7468442857,"7719":48.7005269814,"7720":48.6538193126,"7721":48.6072212655,"7722":48.5604839807,"7723":48.5137313988,"7724":48.4668992991,"7725":48.420016387,"7726":48.3730641601,"7727":48.3260598779,"7728":48.2790702013,"7729":48.2319787975,"7730":48.1848397377,"7731":48.13762214,"7732":48.0903390328,"7733":48.0429829264,"7734":47.9955582334,"7735":47.9480651961,"7736":47.9005080463,"7737":47.8529081887,"7738":47.8057976851,"7739":47.7584434519,"7740":47.7112218948,"7741":47.6639527113,"7742":47.6167378608,"7743":47.5695407845,"7744":47.5223968948,"7745":47.4753081472,"7746":47.4282956169,"7747":47.3813730527,"7748":47.3340451576,"7749":47.2870021922,"7750":47.2399603666,"7751":47.1930996642,"7752":47.1463681553,"7753":47.0998304732,"7754":47.0534933059,"7755":47.0073925392,"7756":46.9615495291,"7757":46.9159928057,"7758":46.8691908355,"7759":46.8230230495,"7760":46.7768368016,"7761":46.7310163272,"7762":46.6854237067,"7763":46.6401788164,"7764":46.5952693977,"7765":46.5507461066,"7766":46.506625035,"7767":46.4629364794,"7768":46.4173701233,"7769":46.3723937894,"7770":46.3274623973,"7771":46.2829072909,"7772":46.2386169137,"7773":46.1946938171,"7774":46.1511272335,"7775":46.1079570688,"7776":46.0651922831,"7777":46.0228520097,"7778":45.9800302607,"7779":45.9375319093,"7780":45.8953660343,"7781":45.8535467304,"7782":45.8120820988,"7783":45.7709771291,"7784":45.7302332484,"7785":45.6898487885,"7786":45.6498191077,"7787":45.6101368349,"7788":45.570756861,"7789":45.5316891394,"7790":45.4929307484,"7791":45.4544599299,"7792":45.4162615455,"7793":45.3783143911,"7794":45.3405978259,"7795":45.3030886921,"7796":45.2657630949,"7797":45.2285957498,"7798":45.191445801,"7799":45.1543214829,"7800":45.1172841396,"7801":45.0802632143,"7802":45.0432540923,"7803":45.0062183668,"7804":44.9691341922,"7805":44.9319713321,"7806":44.8947039052,"7807":44.8573042665,"7808":44.8200624725,"7809":44.7830059937,"7810":44.7456587971,"7811":44.708216087,"7812":44.670536308,"7813":44.6326498604,"7814":44.5945038983,"7815":44.5560901793,"7816":44.5173811746,"7817":44.4783620877,"7818":44.4400983661,"7819":44.4035850267,"7820":44.3661337127,"7821":44.3290472735,"7822":44.2916205742,"7823":44.2541644295,"7824":44.2164881372,"7825":44.1786586183,"7826":44.1406201495,"7827":44.1023840575,"7828":44.0640640904,"7829":44.0259687028,"7830":43.9875190448,"7831":43.949002586,"7832":43.9102739615,"7833":43.8714090848,"7834":43.8323766146,"7835":43.7932019393,"7836":43.7538846843,"7837":43.7144395148,"7838":43.6751746281,"7839":43.6378633378,"7840":43.599749026,"7841":43.5622145426,"7842":43.524557414,"7843":43.4871245507,"7844":43.4497395853,"7845":43.4124893858,"7846":43.3753299834,"7847":43.338283062,"7848":43.3013468918,"7849":43.2648232158,"7850":43.2282884595,"7851":43.1919487008,"7852":43.155690989,"7853":43.1195607445,"7854":43.0835221232,"7855":43.0475777447,"7856":43.0117086331,"7857":42.9759041312,"7858":42.9401468685,"7859":42.9054321381,"7860":42.8704199426,"7861":42.8356882434,"7862":42.8009023039,"7863":42.7661841055,"7864":42.7314261594,"7865":42.6966349149,"7866":42.661759076,"7867":42.626775573,"7868":42.5916467303,"7869":42.556855735,"7870":42.5217563771,"7871":42.4865400369,"7872":42.4510551176,"7873":42.4153231023,"7874":42.3792806103,"7875":42.3429085904,"7876":42.3061679394,"7877":42.269031924,"7878":42.231470207,"7879":42.1955071648,"7880":42.1589663839,"7881":42.1223212335,"7882":42.0852752495,"7883":42.0479220431,"7884":42.0101678786,"7885":41.9720196207,"7886":41.9334406859,"7887":41.8944228898,"7888":41.854950389,"7889":41.8163063972,"7890":41.7773659341,"7891":41.7381239046,"7892":41.6985686111,"7893":41.6586966709,"7894":41.6185093662,"7895":41.5780131592,"7896":41.5372191478,"7897":41.4961428633,"7898":41.4548039375,"7899":41.4158250267,"7900":41.3775888364,"7901":41.339269899,"7902":41.3012873129,"7903":41.2634353721,"7904":41.2258323546,"7905":41.1884418657,"7906":41.1513115809,"7907":41.1144526377,"7908":41.0778988883,"7909":41.0414326875,"7910":41.005161073,"7911":40.9693033588,"7912":40.9338013451,"7913":40.8987363785,"7914":40.864117706,"7915":40.829987966,"7916":40.7963695882,"7917":40.7632908672,"7918":40.7307722058,"7919":40.6964409392,"7920":40.65991531,"7921":40.6246443284,"7922":40.5890120373,"7923":40.5539525645,"7924":40.5190978116,"7925":40.484709312,"7926":40.4507123575,"7927":40.4171805975,"7928":40.384094915,"7929":40.3514696719,"7930":40.3192880186,"7931":40.2875175957,"7932":40.2561282661,"7933":40.2250750461,"7934":40.1943076088,"7935":40.1637663726,"7936":40.1333853232,"7937":40.1030914786,"7938":40.0728060469,"7939":40.0430421107,"7940":40.0151113845,"7941":39.9862884725,"7942":39.957774763,"7943":39.9287886727,"7944":39.8995440777,"7945":39.8697571743,"7946":39.8393945886,"7947":39.8082998712,"7948":39.7763810519,"7949":39.7436167508,"7950":39.7104879985,"7951":39.6759728242,"7952":39.6404273987,"7953":39.603520837,"7954":39.5652761766,"7955":39.5255491131,"7956":39.4842896445,"7957":39.4414119052,"7958":39.3968599517,"7959":39.3510589055,"7960":39.3187707447,"7961":39.2791048302,"7962":39.2423809049,"7963":39.2032117916,"7964":39.1641280876,"7965":39.1237305733,"7966":39.0826185142,"7967":39.0404225369,"7968":38.9972869301,"7969":38.9531271125,"7970":38.9089567077,"7971":38.8635386302,"7972":38.8174978555,"7973":38.7705982089,"7974":38.7230595835,"7975":38.6748969837,"7976":38.6262503533,"7977":38.5772187337,"7978":38.527942343,"7979":38.4785607049,"7980":38.4267025732,"7981":38.3755485465,"7982":38.3241777738,"7983":38.2733653887,"7984":38.2230497446,"7985":38.1735988881,"7986":38.1251767409,"7987":38.0780594514,"7988":38.0324765441,"7989":37.9886895933,"7990":37.9471586434,"7991":37.9079313683,"7992":37.871322636,"7993":37.8375742029,"7994":37.8069682777,"7995":37.7797697609,"7996":37.7562537438,"7997":37.7366903949,"7998":37.7213510804,"7999":37.7105038305,"8000":31.0908589397,"8001":31.1009474871,"8002":31.1118386215,"8003":31.1235321646,"8004":31.1360260568,"8005":31.149318133,"8006":31.1634056372,"8007":31.178282472,"8008":31.1939383829,"8009":31.2103608242,"8010":31.2275361115,"8011":31.2454490902,"8012":31.2640830305,"8013":31.2834192508,"8014":31.3034371311,"8015":31.3241137672,"8016":31.3454240825,"8017":31.3673405013,"8018":31.3898331607,"8019":31.412869588,"8020":31.4364150177,"8021":31.4611359063,"8022":31.4879539204,"8023":31.5170139217,"8024":31.5482396163,"8025":31.5815945192,"8026":31.6170305315,"8027":31.6544980753,"8028":31.6939449779,"8029":31.7353164209,"8030":31.7785559763,"8031":31.8236273873,"8032":31.8705123086,"8033":31.919148624,"8034":31.9694268997,"8035":32.0212225661,"8036":32.0744190235,"8037":32.1289103465,"8038":32.1845990644,"8039":32.2413952661,"8040":32.2992157565,"8041":32.3586888238,"8042":32.4215802769,"8043":32.488279567,"8044":32.5586477554,"8045":32.6326540828,"8046":32.7102487355,"8047":32.7913885733,"8048":32.8760322001,"8049":32.9641411436,"8050":33.0556797793,"8051":33.1506549029,"8052":33.2491954018,"8053":33.3513172416,"8054":33.4569896293,"8055":33.5661945641,"8056":33.6789149025,"8057":33.7951367073,"8058":33.9148487037,"8059":34.038042288,"8060":34.1647113996,"8061":34.2950307852,"8062":34.4303471078,"8063":34.5710486006,"8064":34.7170737126,"8065":34.8684503358,"8066":35.0251879178,"8067":35.1872992048,"8068":35.3547959626,"8069":35.5276898735,"8070":35.7059923658,"8071":35.8897200672,"8072":36.079059515,"8073":36.2740743902,"8074":36.4747659397,"8075":36.6811470585,"8076":36.8932274165,"8077":37.111016404,"8078":37.3345225006,"8079":37.5637533571,"8080":37.7987157336,"8081":38.0394154659,"8082":38.2846981978,"8083":38.5341382613,"8084":38.7877771772,"8085":39.0456010154,"8086":39.3076076706,"8087":39.5737930858,"8088":39.8441537548,"8089":40.1186860018,"8090":40.3973859396,"8091":40.680249321,"8092":40.9670962491,"8093":41.2578365712,"8094":41.5524641437,"8095":41.8509711072,"8096":42.1533494386,"8097":42.4595905556,"8098":42.7696853298,"8099":43.0836240356,"8100":43.4013963262,"8101":43.7229912179,"8102":44.0463636485,"8103":44.3702359928,"8104":44.69451596,"8105":45.0192006601,"8106":45.3442712942,"8107":45.6697138712,"8108":45.9955147592,"8109":46.3216613266,"8110":46.6481416118,"8111":46.9749442256,"8112":47.3016462296,"8113":47.6286345233,"8114":47.9556729716,"8115":48.282848026,"8116":48.6101019824,"8117":48.9374470483,"8118":49.2648619841,"8119":49.5923428975,"8120":49.9198779075,"8121":50.2474597119,"8122":50.5737169239,"8123":50.8972307325,"8124":51.2177772039,"8125":51.5353974482,"8126":51.8500809082,"8127":52.1618286334,"8128":52.4706404154,"8129":52.7765172685,"8130":53.079460819,"8131":53.3794733542,"8132":53.6763886101,"8133":53.9699797328,"8134":54.2602073655,"8135":54.5470853395,"8136":54.8306175668,"8137":55.1108106089,"8138":55.3876711184,"8139":55.6612063131,"8140":55.9314238474,"8141":56.1983318087,"8142":56.4616216213,"8143":56.7207206512,"8144":56.9755148593,"8145":57.2260439168,"8146":57.4723170427,"8147":57.7143497754,"8148":57.9521566025,"8149":58.1857524125,"8150":58.415152185,"8151":58.6403710339,"8152":58.861377427,"8153":59.0780653291,"8154":59.2904214376,"8155":59.4984679978,"8156":59.7022201858,"8157":59.9016946039,"8158":60.096907563,"8159":60.2878754059,"8160":60.4746144231,"8161":60.6571408501,"8162":60.8355254157,"8163":61.0100032022,"8164":61.1806474925,"8165":61.3474622588,"8166":61.5104650316,"8167":61.6696703337,"8168":61.8250929982,"8169":61.9767475072,"8170":62.1246481242,"8171":62.2688088662,"8172":62.4092511635,"8173":62.5460463429,"8174":62.6792238226,"8175":62.8087932983,"8176":62.9347680731,"8177":63.0571603967,"8178":63.1759824031,"8179":63.2912459297,"8180":63.4029625597,"8181":63.5111436217,"8182":63.6158203988,"8183":63.7176561432,"8184":63.8168517806,"8185":63.9133759381,"8186":64.0072434019,"8187":64.0984595045,"8188":64.1870312737,"8189":64.2729652352,"8190":64.3562678796,"8191":64.4369455938,"8192":64.5150046981,"8193":64.5906327512,"8194":64.6639014188,"8195":64.7348086196,"8196":64.8033611268,"8197":64.8695639546,"8198":64.9334225013,"8199":64.9949421417,"8200":65.0541283264,"8201":65.1109865786,"8202":65.1655225092,"8203":65.2182897392,"8204":65.2695541224,"8205":65.3193147464,"8206":65.3675750533,"8207":65.4143378104,"8208":65.4596061365,"8209":65.5033833121,"8210":65.5456728271,"8211":65.5864783761,"8212":65.6258038607,"8213":65.6637556865,"8214":65.7004012178,"8215":65.7357480179,"8216":65.7697993889,"8217":65.8025596935,"8218":65.8340332833,"8219":65.8642247027,"8220":65.8931386352,"8221":65.9207799004,"8222":65.9471534388,"8223":65.9726115038,"8224":65.9974351753,"8225":66.0216576042,"8226":66.0452744025,"8227":66.0682888909,"8228":66.090703043,"8229":66.1125192737,"8230":66.1337400602,"8231":66.1543679942,"8232":66.1744057467,"8233":66.1939257843,"8234":66.2130028039,"8235":66.2316500512,"8236":66.2498672455,"8237":66.2676568245,"8238":66.2850206763,"8239":66.3019607696,"8240":66.3184790057,"8241":66.3345772266,"8242":66.3502571936,"8243":66.365580989,"8244":66.3806317875,"8245":66.3954250286,"8246":66.4099571764,"8247":66.4242284852,"8248":66.4382384294,"8249":66.4519865891,"8250":66.4654724498,"8251":66.4786954218,"8252":66.4916548192,"8253":66.5043663824,"8254":66.5168594054,"8255":66.5291389537,"8256":66.5412019499,"8257":66.5530468419,"8258":66.5646716666,"8259":66.5760744304,"8260":66.5872530298,"8261":66.5982052669,"8262":66.608928848,"8263":66.6193912384,"8264":66.6295113614,"8265":66.6392669216,"8266":66.648658339,"8267":66.6576816115,"8268":66.6663337353,"8269":66.6746116046,"8270":66.6825122234,"8271":66.6900326586,"8272":66.6971700483,"8273":66.7039131634,"8274":66.7102253549,"8275":66.7160948056,"8276":66.7215204501,"8277":66.7264992636,"8278":66.7310288067,"8279":66.7351067141,"8280":66.7387307975,"8281":66.7418990268,"8282":66.7446095362,"8283":66.7468191264,"8284":66.7482128372,"8285":66.7487006439,"8286":66.7482980606,"8287":66.7470001161,"8288":66.744806511,"8289":66.7417165208,"8290":66.7377299649,"8291":66.7328469683,"8292":66.7270679726,"8293":66.7203890164,"8294":66.7126597471,"8295":66.7038362989,"8296":66.6939286669,"8297":66.6829365181,"8298":66.6708619923,"8299":66.6577070974,"8300":66.643474194,"8301":66.6281658675,"8302":66.6117849266,"8303":66.5943343807,"8304":66.5755081785,"8305":66.555205332,"8306":66.5334645759,"8307":66.5102894563,"8308":66.4856500198,"8309":66.4595959681,"8310":66.4321090435,"8311":66.4032129867,"8312":66.3729033404,"8313":66.3412080929,"8314":66.3080340075,"8315":66.2733692989,"8316":66.2372088071,"8317":66.199581141,"8318":66.1604815348,"8319":66.1199382426,"8320":66.0779475281,"8321":66.0345002492,"8322":65.98954525,"8323":65.9430854967,"8324":65.8950983712,"8325":65.8455976462,"8326":65.7945952056,"8327":65.7421239092,"8328":65.6881966852,"8329":65.6328448104,"8330":65.5760812329,"8331":65.5179361253,"8332":65.458422578,"8333":65.3975698055,"8334":65.3354842724,"8335":65.2722696783,"8336":65.2079493983,"8337":65.142550483,"8338":65.07608804,"8339":65.0085893534,"8340":64.9400689423,"8341":64.8705528603,"8342":64.8000553434,"8343":64.7286011742,"8344":64.6563309087,"8345":64.5833990757,"8346":64.5098390365,"8347":64.4356682452,"8348":64.3608999168,"8349":64.2855540297,"8350":64.2096424091,"8351":64.1331837617,"8352":64.0561891894,"8353":63.9786759448,"8354":63.9007114615,"8355":63.822389195,"8356":63.7437330903,"8357":63.664754096,"8358":63.5854609835,"8359":63.5058659959,"8360":63.4259763299,"8361":63.3458028006,"8362":63.2653515388,"8363":63.1846318403,"8364":63.103735372,"8365":63.0228280116,"8366":62.9419453378,"8367":62.861083334,"8368":62.7802433396,"8369":62.6994273408,"8370":62.618634845,"8371":62.5378672635,"8372":62.4571234687,"8373":62.3764039994,"8374":62.2957468894,"8375":62.2152547334,"8376":62.1349483147,"8377":62.0548193334,"8378":61.9748639446,"8379":61.8950783088,"8380":61.8154573574,"8381":61.7359970089,"8382":61.6566918789,"8383":61.5775374703,"8384":61.4985586965,"8385":61.4198728065,"8386":61.341503263,"8387":61.2634351375,"8388":61.1856608526,"8389":61.1081721979,"8390":61.0309608122,"8391":60.9540190768,"8392":60.8773389819,"8393":60.800913224,"8394":60.7247455637,"8395":60.6489148667,"8396":60.5734361161,"8397":60.4982956004,"8398":60.4234855247,"8399":60.3489976747,"8400":60.2748241099,"8401":60.200957512,"8402":60.1273906269,"8403":60.0541168033,"8404":59.981131364,"8405":59.9084890463,"8406":59.8362006383,"8407":59.764256623,"8408":59.6926497618,"8409":59.6213744488,"8410":59.5504243536,"8411":59.4797949236,"8412":59.4094805964,"8413":59.3394775177,"8414":59.2697808718,"8415":59.2004276869,"8416":59.1314276908,"8417":59.0627755068,"8418":58.994467091,"8419":58.9264992952,"8420":58.8588691461,"8421":58.7915733226,"8422":58.7246153467,"8423":58.658009806,"8424":58.5917716049,"8425":58.5259105361,"8426":58.4604365419,"8427":58.3953619085,"8428":58.3306968532,"8429":58.26645157,"8430":58.202634362,"8431":58.1392535426,"8432":58.0763156383,"8433":58.0138271831,"8434":57.9517930829,"8435":57.8902173236,"8436":57.8291021367,"8437":57.7684498521,"8438":57.7082616264,"8439":57.6485386173,"8440":57.5892812816,"8441":57.5304901606,"8442":57.4721663527,"8443":57.4143105689,"8444":57.3569227472,"8445":57.2999705902,"8446":57.2434279676,"8447":57.1872908883,"8448":57.1315581187,"8449":57.076227063,"8450":57.0212946402,"8451":56.9667571634,"8452":56.9126104138,"8453":56.8588496736,"8454":56.8054697627,"8455":56.7524463562,"8456":56.6997541101,"8457":56.6473837779,"8458":56.5953294049,"8459":56.5435839995,"8460":56.4921404296,"8461":56.4409912748,"8462":56.390128885,"8463":56.3395453974,"8464":56.2892327604,"8465":56.2391647033,"8466":56.189308433,"8467":56.1396511771,"8468":56.0901856841,"8469":56.0409034551,"8470":55.9917961251,"8471":55.9428552166,"8472":55.8940722179,"8473":55.8454385957,"8474":55.7969458205,"8475":55.7485723673,"8476":55.7002859626,"8477":55.6520733302,"8478":55.6039275886,"8479":55.5558406732,"8480":55.5078048782,"8481":55.4598125783,"8482":55.411856311,"8483":55.3639287873,"8484":55.3160229142,"8485":55.268125525,"8486":55.2202138045,"8487":55.1722780305,"8488":55.1243135605,"8489":55.076314975,"8490":55.0282772689,"8491":54.9801956389,"8492":54.932065547,"8493":54.8838827254,"8494":54.8356431895,"8495":54.7873390851,"8496":54.7389504339,"8497":54.6904703619,"8498":54.6418976442,"8499":54.5932301977,"8500":54.5444663821,"8501":54.4956047462,"8502":54.4466440796,"8503":54.3975834,"8504":54.3484219501,"8505":54.2991586509,"8506":54.2497891724,"8507":54.2003128159,"8508":54.1507305261,"8509":54.1010430252,"8510":54.0512511695,"8511":54.0013558716,"8512":53.9513581047,"8513":53.9012588888,"8514":53.8510592788,"8515":53.8007602341,"8516":53.7503590788,"8517":53.6998563623,"8518":53.6492540736,"8519":53.5985537725,"8520":53.5477569471,"8521":53.4968649418,"8522":53.4458789662,"8523":53.3948000887,"8524":53.3436292323,"8525":53.2923671714,"8526":53.2410197172,"8527":53.1895895382,"8528":53.138077129,"8529":53.0864830125,"8530":53.0348074555,"8531":52.9830505355,"8532":52.9312121366,"8533":52.87929196,"8534":52.8272895329,"8535":52.7752042182,"8536":52.7230410919,"8537":52.6708023259,"8538":52.6184872328,"8539":52.5660949962,"8540":52.5136246341,"8541":52.4610750322,"8542":52.4084449633,"8543":52.3557331088,"8544":52.3029380797,"8545":52.2500584387,"8546":52.1970912415,"8547":52.1440340955,"8548":52.0908854851,"8549":52.037643996,"8550":51.9843082587,"8551":51.9308769843,"8552":51.8773489804,"8553":51.8237231711,"8554":51.769998615,"8555":51.7161745228,"8556":51.6622652089,"8557":51.608282597,"8558":51.5542284968,"8559":51.5001032607,"8560":51.4459076778,"8561":51.3916426211,"8562":51.3373091425,"8563":51.2829084749,"8564":51.2284420486,"8565":51.1739115017,"8566":51.119322609,"8567":51.0646816619,"8568":51.0099918841,"8569":50.9552559524,"8570":50.9004768683,"8571":50.8456577824,"8572":50.790802027,"8573":50.7359131029,"8574":50.6809946726,"8575":50.6260505493,"8576":50.5710890754,"8577":50.516120477,"8578":50.4611544632,"8579":50.4061994872,"8580":50.3512607395,"8581":50.2963424381,"8582":50.2414486452,"8583":50.1865835672,"8584":50.1317512057,"8585":50.0769556695,"8586":50.0222020931,"8587":49.9674967488,"8588":49.9128438134,"8589":49.858246869,"8590":49.8037092904,"8591":49.7492343983,"8592":49.6948251543,"8593":49.6404844504,"8594":49.5862147823,"8595":49.5320185433,"8596":49.4778990606,"8597":49.4238617111,"8598":49.3699087692,"8599":49.3160413316,"8600":49.2622602321,"8601":49.2085660933,"8602":49.1549590721,"8603":49.1014391493,"8604":49.0480058326,"8605":48.994658459,"8606":48.9413959775,"8607":48.8882173925,"8608":48.835120945,"8609":48.7821046266,"8610":48.7291660388,"8611":48.6763026809,"8612":48.6235116629,"8613":48.5707900281,"8614":48.5181344614,"8615":48.465541619,"8616":48.4130078745,"8617":48.3605298555,"8618":48.3081035508,"8619":48.2557248879,"8620":48.2033896116,"8621":48.1510936004,"8622":48.0988325645,"8623":48.0466024023,"8624":47.9943988871,"8625":47.9422180323,"8626":47.8900557434,"8627":47.8379073112,"8628":47.7857687618,"8629":47.7336368181,"8630":47.6815081334,"8631":47.6293797485,"8632":47.5772487894,"8633":47.5251127185,"8634":47.4729691085,"8635":47.4208160519,"8636":47.368651795,"8637":47.3164733601,"8638":47.2642792275,"8639":47.2120690896,"8640":47.1598427532,"8641":47.1076005223,"8642":47.055342925,"8643":47.003070991,"8644":46.9507859927,"8645":46.8984897135,"8646":46.8461841847,"8647":46.7938709993,"8648":46.7415526883,"8649":46.6892328218,"8650":46.6369151143,"8651":46.5846038166,"8652":46.5323033336,"8653":46.4800184416,"8654":46.4277540467,"8655":46.3755155345,"8656":46.323308349,"8657":46.2711310081,"8658":46.2189850906,"8659":46.1668769115,"8660":46.1148130482,"8661":46.0628002437,"8662":46.010845148,"8663":45.9589545827,"8664":45.9071352176,"8665":45.8553938346,"8666":45.8037370139,"8667":45.7521760146,"8668":45.7007209853,"8669":45.6493788168,"8670":45.5981555835,"8671":45.5470573574,"8672":45.49608982,"8673":45.445258499,"8674":45.3945685082,"8675":45.3440247505,"8676":45.2936316769,"8677":45.2433927975,"8678":45.1933110712,"8679":45.1433897162,"8680":45.093631574,"8681":45.0440391389,"8682":44.9946143892,"8683":44.9453589522,"8684":44.8962739203,"8685":44.8473600181,"8686":44.7986174883,"8687":44.750046705,"8688":44.7016477364,"8689":44.6534193504,"8690":44.6053596609,"8691":44.5574664216,"8692":44.5097369751,"8693":44.462168271,"8694":44.4147568738,"8695":44.367498975,"8696":44.3203904073,"8697":44.2734278537,"8698":44.2266084657,"8699":44.1799270109,"8700":44.1333773722,"8701":44.086953381,"8702":44.0406486725,"8703":43.9944567321,"8704":43.9482450405,"8705":43.9008677471,"8706":43.8525932461,"8707":43.8032842001,"8708":43.7530061432,"8709":43.7017241295,"8710":43.6494546704,"8711":43.5961893885,"8712":43.5419331326,"8713":43.4866849506,"8714":43.4304476176,"8715":43.3732228923,"8716":43.3150139095,"8717":43.2558234023,"8718":43.1956530265,"8719":43.1345064897,"8720":43.0723889207,"8721":43.0093060011,"8722":42.9452641784,"8723":42.8802706233,"8724":42.8143332566,"8725":42.7474607537,"8726":42.6796625571,"8727":42.6109486587,"8728":42.5413283584,"8729":42.4708130179,"8730":42.3994153802,"8731":42.3271488702,"8732":42.2540277388,"8733":42.1800670378,"8734":42.1052826985,"8735":42.0296915786,"8736":41.9533114004,"8737":41.8761605484,"8738":41.7982536029,"8739":41.7196094365,"8740":41.6402494123,"8741":41.5601952779,"8742":41.479469565,"8743":41.3980954887,"8744":41.3160969425,"8745":41.2334984717,"8746":41.1503252483,"8747":41.066603042,"8748":40.9823534535,"8749":40.8976015869,"8750":40.8123749571,"8751":40.7267013258,"8752":40.6406089385,"8753":40.5541264301,"8754":40.467282796,"8755":40.3801073489,"8756":40.292629678,"8757":40.2048796065,"8758":40.1168746094,"8759":40.0286387016,"8760":39.9402020336,"8761":39.8515947598,"8762":39.7628471103,"8763":39.6739893225,"8764":39.5850516016,"8765":39.4960640772,"8766":39.4070567621,"8767":39.318059512,"8768":39.2290892112,"8769":39.1401670773,"8770":39.0513213693,"8771":38.9625806475,"8772":38.8739730927,"8773":38.785526596,"8774":38.697268697,"8775":38.6092265558,"8776":38.521426921,"8777":38.4338961018,"8778":38.3466557454,"8779":38.2597277041,"8780":38.1731361975,"8781":38.0869053897,"8782":38.0010588481,"8783":37.9156196303,"8784":37.8306102472,"8785":37.7460526548,"8786":37.6619682428,"8787":37.5783778279,"8788":37.4953006102,"8789":37.412755164,"8790":37.3307603856,"8791":37.2493347935,"8792":37.1684962924,"8793":37.0882622276,"8794":37.0086493818,"8795":36.9296739868,"8796":36.8513517331,"8797":36.7736977831,"8798":36.6967233974,"8799":36.620438088,"8800":36.5448545925,"8801":36.4699862326,"8802":36.3958456763,"8803":36.3224452039,"8804":36.2497966726,"8805":36.1779115414,"8806":36.1068008823,"8807":36.0364753947,"8808":35.9669460086,"8809":35.8982238417,"8810":35.8303188895,"8811":35.7632405299,"8812":35.6969978439,"8813":35.6315995548,"8814":35.567054041,"8815":35.5033693297,"8816":35.4405530899,"8817":35.3786126218,"8818":35.3175570341,"8819":35.2573986842,"8820":35.1981455422,"8821":35.1398035058,"8822":35.0823782261,"8823":35.0258747072,"8824":34.9702973531,"8825":34.9156499187,"8826":34.8619354749,"8827":34.8091563667,"8828":34.7573150228,"8829":34.7064156409,"8830":34.6564590793,"8831":34.6074442069,"8832":34.5593691261,"8833":34.5122308681,"8834":34.4660253938,"8835":34.4207475365,"8836":34.3763909565,"8837":34.3329480969,"8838":34.2904124728,"8839":34.2487915972,"8840":34.2080792021,"8841":34.1682617806,"8842":34.1293255708,"8843":34.0912551414,"8844":34.0540336696,"8845":34.017642887,"8846":33.9820631004,"8847":33.9472732064,"8848":33.9132508738,"8849":33.8799773699,"8850":33.8474290644,"8851":33.8155792519,"8852":33.7844003729,"8853":33.7538636444,"8854":33.7239392188,"8855":33.6945962452,"8856":33.6658029586,"8857":33.6375267718,"8858":33.6097343731,"8859":33.5824150964,"8860":33.5555429982,"8861":33.5290823043,"8862":33.5029980736,"8863":33.4772549578,"8864":33.4518175953,"8865":33.4266506794,"8866":33.4017190924,"8867":33.3769880255,"8868":33.3524230999,"8869":33.3279947381,"8870":33.3036718696,"8871":33.2794221593,"8872":33.2552141758,"8873":33.2310174546,"8874":33.2068026053,"8875":33.1825414017,"8876":33.1582068673,"8877":33.1337733521,"8878":33.1092166026,"8879":33.0845272031,"8880":33.0596924304,"8881":33.0346934382,"8882":33.0095123399,"8883":32.9841329128,"8884":32.9585404856,"8885":32.932721976,"8886":32.9066658862,"8887":32.8803622932,"8888":32.8538028277,"8889":32.8269877996,"8890":32.7999177375,"8891":32.772589637,"8892":32.7450010659,"8893":32.7171509994,"8894":32.689039566,"8895":32.6606680021,"8896":32.6320385544,"8897":32.6031543841,"8898":32.5740194622,"8899":32.5446584968,"8900":32.5150978282,"8901":32.4853519466,"8902":32.4554383096,"8903":32.4253698074,"8904":32.3951532862,"8905":32.3647947853,"8906":32.3343004502,"8907":32.3036760226,"8908":32.2729270055,"8909":32.2420584074,"8910":32.2110747951,"8911":32.1799798012,"8912":32.1487764245,"8913":32.1174667548,"8914":32.0860521622,"8915":32.0545329888,"8916":32.0229087793,"8917":31.9911779909,"8918":31.9593382602,"8919":31.9273856106,"8920":31.8956551425,"8921":31.8645909925,"8922":31.8343439434,"8923":31.8049102256,"8924":31.7762788408,"8925":31.7484393663,"8926":31.7213806183,"8927":31.6950906766,"8928":31.6695571282,"8929":31.6447664569,"8930":31.6207041815,"8931":31.5973557459,"8932":31.574706481,"8933":31.5527410116,"8934":31.5314437098,"8935":31.5107983858,"8936":31.4907887099,"8937":31.4713979071,"8938":31.4526092016,"8939":31.4344021017,"8940":31.4167461212,"8941":31.3996210481,"8942":31.3830113456,"8943":31.3669004894,"8944":31.3512725412,"8945":31.3361115776,"8946":31.3214022636,"8947":31.3071294583,"8948":31.2932787619,"8949":31.2798359742,"8950":31.2667869439,"8951":31.2541187943,"8952":31.2418200154,"8953":31.2298795584,"8954":31.2182874963,"8955":31.2070345244,"8956":31.1961125414,"8957":31.1855141433,"8958":31.1752332032,"8959":31.1652641239,"8960":31.1555957908,"8961":31.1462253437,"8962":31.1371543363,"8963":31.1283840786,"8964":31.1199170377,"8965":31.1117561663,"8966":31.1039055366,"8967":31.0963697886,"8968":31.0891547221,"8969":31.0822667352,"8970":31.0757130057,"8971":31.0695017137,"8972":31.063642403,"8973":31.0581451508,"8974":31.0530211425,"8975":31.0482820876,"8976":31.0439407491,"8977":31.0400103612,"8978":31.0365051401,"8979":31.0334397003,"8980":31.0308326013,"8981":31.0287007395,"8982":31.0270601586,"8983":31.0259271874,"8984":31.0253188637,"8985":31.0252523429,"8986":31.0257453309,"8987":31.026815486,"8988":31.0284808414,"8989":31.0307592025,"8990":31.0336665425,"8991":31.0372192167,"8992":31.041434764,"8993":31.0463301708,"8994":31.0519221722,"8995":31.0582266429,"8996":31.0652590082,"8997":31.0730335976,"8998":31.0815640749,"8999":31.0908627704,"9000":5.1411340687,"9001":5.1007386951,"9002":5.0601798033,"9003":5.0194679593,"9004":4.978613779,"9005":4.9376279266,"9006":4.8965211109,"9007":4.8553040838,"9008":4.8139876362,"9009":4.7725825957,"9010":4.7310998241,"9011":4.6895502143,"9012":4.647944688,"9013":4.6062941928,"9014":4.5646096997,"9015":4.5229022001,"9016":4.4811827037,"9017":4.4394622349,"9018":4.3977518309,"9019":4.3560625381,"9020":4.3144054105,"9021":4.27279155,"9022":4.2312321523,"9023":4.1897384682,"9024":4.1483217488,"9025":4.1069932293,"9026":4.0657641285,"9027":4.0246456455,"9028":3.9836489576,"9029":3.9427852176,"9030":3.9020655512,"9031":3.8615010564,"9032":3.8211028025,"9033":3.7808818268,"9034":3.7408491275,"9035":3.7010156588,"9036":3.6613923288,"9037":3.6219899985,"9038":3.5828194807,"9039":3.543891539,"9040":3.5052168863,"9041":3.4668062192,"9042":3.428670299,"9043":3.3908199221,"9044":3.3532658389,"9045":3.3160187283,"9046":3.2790891984,"9047":3.2424877851,"9048":3.2062249501,"9049":3.1703110792,"9050":3.1347564809,"9051":3.0995713864,"9052":3.0647659547,"9053":3.0303502697,"9054":2.9963343323,"9055":2.962728057,"9056":2.9295412707,"9057":2.8967837108,"9058":2.864465024,"9059":2.8325947641,"9060":2.8011823913,"9061":2.7702372771,"9062":2.7397687549,"9063":2.7097861148,"9064":2.6802985553,"9065":2.6513151667,"9066":2.6228449314,"9067":2.5948967223,"9068":2.5674793012,"9069":2.5406013177,"9070":2.514271308,"9071":2.4884976934,"9072":2.4632887859,"9073":2.4386527869,"9074":2.4145977804,"9075":2.3911317306,"9076":2.3682624804,"9077":2.3459977511,"9078":2.3243451405,"9079":2.3033121227,"9080":2.2829060469,"9081":2.2631341363,"9082":2.2440034497,"9083":2.2255208757,"9084":2.2076931642,"9085":2.1905269387,"9086":2.174028695,"9087":2.1582048005,"9088":2.1430614932,"9089":2.128604881,"9090":2.1148409408,"9091":2.1017755176,"9092":2.0894143186,"9093":2.0777629109,"9094":2.0668267254,"9095":2.056611058,"9096":2.0471210695,"9097":2.0383617846,"9098":2.0303380913,"9099":2.0230547399,"9100":2.0165163429,"9101":2.0107273741,"9102":2.0056921085,"9103":2.0014145986,"9104":1.9978987204,"9105":1.9951482065,"9106":1.9931666486,"9107":1.9919574961,"9108":1.9915240551,"9109":1.9918694875,"9110":1.9929968095,"9111":1.9949088914,"9112":1.9975247302,"9113":2.0000373169,"9114":2.0026287834,"9115":2.0052080917,"9116":2.0078207877,"9117":2.0104441244,"9118":2.0130895006,"9119":2.0157512416,"9120":2.0184322088,"9121":2.021130995,"9122":2.0238482875,"9123":2.0265836342,"9124":2.0293370742,"9125":2.0321083723,"9126":2.0348974277,"9127":2.0377040726,"9128":2.0405281724,"9129":2.0433695757,"9130":2.0462281397,"9131":2.0491037171,"9132":2.0519961582,"9133":2.0549053016,"9134":2.0578309796,"9135":2.060773023,"9136":2.0637312632,"9137":2.0667055316,"9138":2.0696956599,"9139":2.07270148,"9140":2.0757228243,"9141":2.0787595252,"9142":2.0818114063,"9143":2.0848782677,"9144":2.0879598916,"9145":2.0910560573,"9146":2.0941665452,"9147":2.0972911361,"9148":2.1004296115,"9149":2.1035817534,"9150":2.1067473444,"9151":2.1099261679,"9152":2.1131180064,"9153":2.1163226383,"9154":2.1195398391,"9155":2.1227693841,"9156":2.1260110491,"9157":2.129264611,"9158":2.1325298469,"9159":2.1358065348,"9160":2.1390944534,"9161":2.142393382,"9162":2.145703102,"9163":2.1490234032,"9164":2.152354083,"9165":2.1556949409,"9166":2.1590457769,"9167":2.1624063915,"9168":2.1657765861,"9169":2.1691561622,"9170":2.1725449223,"9171":2.1759426693,"9172":2.1793492067,"9173":2.1827643406,"9174":2.1861878794,"9175":2.1896196323,"9176":2.1930594092,"9177":2.1965070202,"9178":2.199962276,"9179":2.2034249877,"9180":2.2068949667,"9181":2.210372025,"9182":2.2138559756,"9183":2.2173466511,"9184":2.2208439058,"9185":2.224347599,"9186":2.22785759,"9187":2.2313737381,"9188":2.2348959029,"9189":2.2384239442,"9190":2.241957722,"9191":2.2454970965,"9192":2.249041928,"9193":2.2525920823,"9194":2.2561474317,"9195":2.2597078502,"9196":2.2632732122,"9197":2.266843392,"9198":2.2704182641,"9199":2.2739977031,"9200":2.2775815839,"9201":2.2811697814,"9202":2.2847621707,"9203":2.2883586431,"9204":2.2919591108,"9205":2.2955634935,"9206":2.2991717112,"9207":2.302783684,"9208":2.3063993322,"9209":2.3100185758,"9210":2.3136413353,"9211":2.3172675311,"9212":2.3208970835,"9213":2.3245299164,"9214":2.3281659579,"9215":2.3318051379,"9216":2.3354473868,"9217":2.3390926353,"9218":2.3427408139,"9219":2.3463918535,"9220":2.350045685,"9221":2.3537022397,"9222":2.3573614488,"9223":2.3610232543,"9224":2.3646876144,"9225":2.3683544962,"9226":2.3720238678,"9227":2.3756956973,"9228":2.3793699529,"9229":2.3830466026,"9230":2.386725615,"9231":2.3904069585,"9232":2.3940906015,"9233":2.3977765148,"9234":2.401464673,"9235":2.4051550532,"9236":2.4088476326,"9237":2.4125423888,"9238":2.4162392992,"9239":2.4199383415,"9240":2.4236394933,"9241":2.4273427324,"9242":2.4310480367,"9243":2.4347553858,"9244":2.4384647633,"9245":2.4421761556,"9246":2.4458895492,"9247":2.4496049307,"9248":2.4533222866,"9249":2.4570416035,"9250":2.4607628678,"9251":2.4644860658,"9252":2.4682111839,"9253":2.471938209,"9254":2.4756671289,"9255":2.4793979326,"9256":2.4831306091,"9257":2.4868651472,"9258":2.4906015356,"9259":2.4943397629,"9260":2.4980798177,"9261":2.5018216881,"9262":2.5055653624,"9263":2.5093108278,"9264":2.5130580681,"9265":2.5168070645,"9266":2.5205577974,"9267":2.5243102471,"9268":2.5280643937,"9269":2.5318202171,"9270":2.5355776968,"9271":2.5393368124,"9272":2.5430975431,"9273":2.5468598678,"9274":2.550623764,"9275":2.5543892076,"9276":2.5581561746,"9277":2.5619246402,"9278":2.56569458,"9279":2.5694659691,"9280":2.5732387826,"9281":2.5770129952,"9282":2.5807885817,"9283":2.5845655155,"9284":2.5883437593,"9285":2.5921232654,"9286":2.5959039834,"9287":2.5996858631,"9288":2.603468854,"9289":2.6072529056,"9290":2.6110379673,"9291":2.6148239885,"9292":2.6186109185,"9293":2.6223987062,"9294":2.6261872962,"9295":2.6299766277,"9296":2.6337666389,"9297":2.6375572679,"9298":2.641348453,"9299":2.6451401324,"9300":2.6489322443,"9301":2.6527247272,"9302":2.6565175195,"9303":2.6603105597,"9304":2.6641037769,"9305":2.6678970899,"9306":2.6716904149,"9307":2.6754836693,"9308":2.6792767695,"9309":2.6830696326,"9310":2.6868621761,"9311":2.690654318,"9312":2.6944459763,"9313":2.69823707,"9314":2.7020275156,"9315":2.7058172271,"9316":2.7096061175,"9317":2.7133941007,"9318":2.7171810908,"9319":2.7209670027,"9320":2.7247517518,"9321":2.7285352235,"9322":2.732317366,"9323":2.7360980962,"9324":2.7398773148,"9325":2.7436549295,"9326":2.747430856,"9327":2.7512050035,"9328":2.7549772886,"9329":2.7587476232,"9330":2.7625159259,"9331":2.7662821113,"9332":2.7700461001,"9333":2.7738078091,"9334":2.7775671641,"9335":2.7813240918,"9336":2.7850785269,"9337":2.7888304013,"9338":2.7925796523,"9339":2.7963262143,"9340":2.8000700265,"9341":2.8038110258,"9342":2.8075491533,"9343":2.8112843484,"9344":2.815016558,"9345":2.8187457345,"9346":2.8224718385,"9347":2.8261948291,"9348":2.8299146691,"9349":2.8336313197,"9350":2.8373447455,"9351":2.8410549093,"9352":2.8447617772,"9353":2.848465314,"9354":2.8521654888,"9355":2.8558622736,"9356":2.8595556452,"9357":2.8632455799,"9358":2.8669320563,"9359":2.8706150519,"9360":2.8742945462,"9361":2.8779705179,"9362":2.8816429474,"9363":2.8853118144,"9364":2.8889771027,"9365":2.8926388026,"9366":2.8962969106,"9367":2.8999514238,"9368":2.9036023399,"9369":2.907249656,"9370":2.9108933697,"9371":2.9145334784,"9372":2.9181699798,"9373":2.9218028711,"9374":2.9254321513,"9375":2.929057823,"9376":2.9326798926,"9377":2.9362983666,"9378":2.9399132514,"9379":2.9435245532,"9380":2.947132278,"9381":2.9507364314,"9382":2.9543370188,"9383":2.9579340452,"9384":2.9615275167,"9385":2.9651174431,"9386":2.9687038384,"9387":2.9722867168,"9388":2.9758660921,"9389":2.9794419773,"9390":2.9830143855,"9391":2.9865833287,"9392":2.9901488191,"9393":2.993710868,"9394":2.9972694869,"9395":3.0008246896,"9396":3.0043764928,"9397":3.0079249129,"9398":3.0114699662,"9399":3.0150116681,"9400":3.0185500339,"9401":3.0220850784,"9402":3.0256168158,"9403":3.0291452601,"9404":3.0326704249,"9405":3.0361923256,"9406":3.0397109791,"9407":3.0432264024,"9408":3.0467386125,"9409":3.0502476254,"9410":3.0537534573,"9411":3.0572561239,"9412":3.0607556406,"9413":3.0642520225,"9414":3.0677452847,"9415":3.0712354431,"9416":3.074722515,"9417":3.0782065179,"9418":3.0816874132,"9419":3.0851652854,"9420":3.088639556,"9421":3.0921109944,"9422":3.095573848,"9423":3.0990145378,"9424":3.1024179092,"9425":3.1057696484,"9426":3.1090563047,"9427":3.1122652718,"9428":3.1153847749,"9429":3.1184038552,"9430":3.1213123529,"9431":3.1241008892,"9432":3.1267608472,"9433":3.1292843518,"9434":3.1316642497,"9435":3.1338940875,"9436":3.1359680907,"9437":3.1378811411,"9438":3.1396287551,"9439":3.1412070612,"9440":3.1426127777,"9441":3.1438431901,"9442":3.1448961293,"9443":3.1457699492,"9444":3.1464635045,"9445":3.1469761288,"9446":3.1473076117,"9447":3.1474581789,"9448":3.1474284722,"9449":3.147219529,"9450":3.1468327623,"9451":3.1462699409,"9452":3.1455331703,"9453":3.1446248735,"9454":3.1435477728,"9455":3.1423048709,"9456":3.1408994324,"9457":3.1393349674,"9458":3.1376152144,"9459":3.1357441239,"9460":3.1337258424,"9461":3.1315646956,"9462":3.1292651735,"9463":3.1268319141,"9464":3.1242696889,"9465":3.1215833874,"9466":3.1187780015,"9467":3.1158586119,"9468":3.1128303747,"9469":3.1096985078,"9470":3.1064682774,"9471":3.1031449848,"9472":3.0997339536,"9473":3.096240517,"9474":3.0926700055,"9475":3.0890277347,"9476":3.0853189928,"9477":3.08154903,"9478":3.0777230479,"9479":3.0738461898,"9480":3.0699235303,"9481":3.0659600656,"9482":3.0619607052,"9483":3.0579302627,"9484":3.0538734481,"9485":3.0497948602,"9486":3.0456989792,"9487":3.0415901608,"9488":3.0374726307,"9489":3.0333504801,"9490":3.0292276613,"9491":3.0251079839,"9492":3.020995112,"9493":3.016892562,"9494":3.0128037005,"9495":3.008731744,"9496":3.0046797573,"9497":3.000650655,"9498":2.9966472018,"9499":2.9926720154,"9500":2.9887275682,"9501":2.9848161901,"9502":2.9809400724,"9503":2.9771012709,"9504":2.9733017111,"9505":2.9695431925,"9506":2.9658273939,"9507":2.9621558787,"9508":2.9585301013,"9509":2.9549514128,"9510":2.9514210675,"9511":2.9479402292,"9512":2.9445099778,"9513":2.9411313159,"9514":2.9378051753,"9515":2.9345324233,"9516":2.9313138694,"9517":2.928150271,"9518":2.9250423401,"9519":2.9219907486,"9520":2.9189961342,"9521":2.9160591052,"9522":2.9131802457,"9523":2.9103601199,"9524":2.9075992759,"9525":2.9048982497,"9526":2.9022575683,"9527":2.8996777522,"9528":2.8971593178,"9529":2.8947027789,"9530":2.892308648,"9531":2.889977437,"9532":2.8877096571,"9533":2.8855058192,"9534":2.8833664327,"9535":2.8812920043,"9536":2.8792830369,"9537":2.8773400276,"9538":2.8754634648,"9539":2.873653826,"9540":2.871911574,"9541":2.8702371541,"9542":2.8686309902,"9543":2.8670934808,"9544":2.8656249954,"9545":2.8642258699,"9546":2.8628964025,"9547":2.8616368492,"9548":2.8604474196,"9549":2.8593282724,"9550":2.8582795115,"9551":2.8573011814,"9552":2.8563932636,"9553":2.8555556727,"9554":2.8547882526,"9555":2.8540907738,"9556":2.8534629304,"9557":2.8529043381,"9558":2.8524145315,"9559":2.8519929623,"9560":2.8516389976,"9561":2.8513519192,"9562":2.8511309235,"9563":2.8509751212,"9564":2.8508835386,"9565":2.8508551183,"9566":2.8508887216,"9567":2.8509831306,"9568":2.8511370517,"9569":2.8513491179,"9570":2.851617894,"9571":2.8519418802,"9572":2.8523195177,"9573":2.852749194,"9574":2.8532292488,"9575":2.8537579807,"9576":2.8543336536,"9577":2.8549545047,"9578":2.8556187513,"9579":2.8563245987,"9580":2.8570702478,"9581":2.8578539035,"9582":2.8586737819,"9583":2.8595281194,"9584":2.8604151803,"9585":2.861333265,"9586":2.8622807181,"9587":2.8632559362,"9588":2.8642573754,"9589":2.8652835586,"9590":2.8663330823,"9591":2.8674046231,"9592":2.8684969438,"9593":2.869608899,"9594":2.8707394399,"9595":2.8718876193,"9596":2.8730525947,"9597":2.8742336324,"9598":2.8754301091,"9599":2.8766415146,"9600":2.8778674521,"9601":2.8791076387,"9602":2.8803619053,"9603":2.8816301952,"9604":2.8829125625,"9605":2.884209169,"9606":2.8855202812,"9607":2.8868462662,"9608":2.8881875868,"9609":2.889544796,"9610":2.8909185311,"9611":2.8923095067,"9612":2.8937185075,"9613":2.8951463806,"9614":2.8965940269,"9615":2.8980623923,"9616":2.8995524589,"9617":2.9010652348,"9618":2.9026017448,"9619":2.9041630199,"9620":2.905750087,"9621":2.9073639591,"9622":2.9090056238,"9623":2.9106760337,"9624":2.9123760954,"9625":2.9141066596,"9626":2.9158685106,"9627":2.9176623565,"9628":2.9194888197,"9629":2.9213484278,"9630":2.9232416043,"9631":2.9251686609,"9632":2.927129789,"9633":2.9291250531,"9634":2.9311543839,"9635":2.9332175723,"9636":2.9353142644,"9637":2.9374439566,"9638":2.9396059927,"9639":2.9417995602,"9640":2.9440236889,"9641":2.9462772497,"9642":2.9485589544,"9643":2.9508673562,"9644":2.9532008516,"9645":2.9555576825,"9646":2.9579359402,"9647":2.9603335693,"9648":2.9627483728,"9649":2.965178019,"9650":2.9676200475,"9651":2.9700718777,"9652":2.972530817,"9653":2.9749940702,"9654":2.9774587497,"9655":2.9799218858,"9656":2.9823804383,"9657":2.9848313078,"9658":2.9872713482,"9659":2.9896973794,"9660":2.9921062005,"9661":2.9944946031,"9662":2.9968593851,"9663":2.9991973641,"9664":3.0015053911,"9665":3.0037803645,"9666":3.0060192437,"9667":3.0082190623,"9668":3.010376942,"9669":3.0124901052,"9670":3.0145558873,"9671":3.016571749,"9672":3.0185352881,"9673":3.02044425,"9674":3.0222965386,"9675":3.0240902262,"9676":3.0258235618,"9677":3.0274949801,"9678":3.0291031085,"9679":3.0306467739,"9680":3.0321250082,"9681":3.0335370535,"9682":3.0348823656,"9683":3.0361606171,"9684":3.0373716996,"9685":3.0385157242,"9686":3.0395930222,"9687":3.0406041438,"9688":3.0415498563,"9689":3.0424311417,"9690":3.0432491925,"9691":3.0440054076,"9692":3.0447013862,"9693":3.0453389222,"9694":3.0459199967,"9695":3.0464467704,"9696":3.0469215746,"9697":3.0473469024,"9698":3.0477253985,"9699":3.0480598488,"9700":3.0483531693,"9701":3.0486083944,"9702":3.0488286649,"9703":3.0490172157,"9704":3.0493056451,"9705":3.0508587335,"9706":3.0534040214,"9707":3.057081398,"9708":3.0618237822,"9709":3.067666787,"9710":3.0745938922,"9711":3.0826138607,"9712":3.0917220314,"9713":3.101919673,"9714":3.1132043049,"9715":3.1255745339,"9716":3.1390276317,"9717":3.1535607403,"9718":3.1691702624,"9719":3.1858521587,"9720":3.2036017906,"9721":3.2224139889,"9722":3.2422830098,"9723":3.2632025456,"9724":3.285165708,"9725":3.3081650248,"9726":3.3321924296,"9727":3.3572392548,"9728":3.3832962229,"9729":3.4103534392,"9730":3.4384003839,"9731":3.4674259051,"9732":3.4974182121,"9733":3.5283648691,"9734":3.5602527899,"9735":3.593068233,"9736":3.6267967981,"9737":3.6614234228,"9738":3.696932381,"9739":3.7333072821,"9740":3.7705310714,"9741":3.8085860327,"9742":3.8474537907,"9743":3.8871153162,"9744":3.9275509318,"9745":3.9687403202,"9746":4.0106625323,"9747":4.0532959991,"9748":4.096618543,"9749":4.1406073923,"9750":4.1852391962,"9751":4.2304900429,"9752":4.2763354774,"9753":4.3227505222,"9754":4.3697096989,"9755":4.4171870511,"9756":4.4651561692,"9757":4.5135902158,"9758":4.5624619525,"9759":4.6117437676,"9760":4.6614077056,"9761":4.7114254978,"9762":4.7617685933,"9763":4.8124081902,"9764":4.8633152684,"9765":4.9144606222,"9766":4.9658148936,"9767":5.0173486057,"9768":5.0690321954,"9769":5.1208360473,"9770":5.1727305271,"9771":5.2246860155,"9772":5.2766729412,"9773":5.3286618134,"9774":5.3806232536,"9775":5.4325280269,"9776":5.4843470727,"9777":5.536051534,"9778":5.5876127857,"9779":5.6390024624,"9780":5.6901924845,"9781":5.7411550836,"9782":5.7918628267,"9783":5.8422886383,"9784":5.8924058216,"9785":5.9421880786,"9786":5.9916095277,"9787":6.0406447208,"9788":6.0892686584,"9789":6.1374568032,"9790":6.1851850924,"9791":6.2324299488,"9792":6.2791682897,"9793":6.3253775354,"9794":6.3710356154,"9795":6.4161209743,"9796":6.4606125758,"9797":6.5044899062,"9798":6.5477329761,"9799":6.5903223218,"9800":6.6322390063,"9801":6.6734646197,"9802":6.7139812788,"9803":6.7537716269,"9804":6.7928188334,"9805":6.8311065928,"9806":6.8686191251,"9807":6.9053411755,"9808":6.9412580156,"9809":6.9763554449,"9810":7.0106197935,"9811":7.0440379253,"9812":7.0765972435,"9813":7.1082856965,"9814":7.1390917859,"9815":7.1690045762,"9816":7.198013706,"9817":7.2261094013,"9818":7.2532824908,"9819":7.2795244231,"9820":7.3048272861,"9821":7.3291838271,"9822":7.352587476,"9823":7.3750323696,"9824":7.3965133779,"9825":7.4170261324,"9826":7.4365670547,"9827":7.4551333874,"9828":7.4727232254,"9829":7.4893355483,"9830":7.5049702528,"9831":7.519628185,"9832":7.5333111726,"9833":7.5460220566,"9834":7.5577647219,"9835":7.5685441266,"9836":7.5783663297,"9837":7.5872385162,"9838":7.59516902,"9839":7.6021673455,"9840":7.6082441841,"9841":7.6134114251,"9842":7.6176821647,"9843":7.6210707093,"9844":7.6235925755,"9845":7.6252644846,"9846":7.6261043511,"9847":7.6261312673,"9848":7.625365481,"9849":7.6238283683,"9850":7.6215424008,"9851":7.6185311055,"9852":7.6148190203,"9853":7.6104316434,"9854":7.6053953768,"9855":7.5997374657,"9856":7.5934859312,"9857":7.5866694997,"9858":7.5793175271,"9859":7.571459921,"9860":7.5631270579,"9861":7.5543496948,"9862":7.5451588788,"9863":7.535585856,"9864":7.5256619778,"9865":7.5154186072,"9866":7.5048870237,"9867":7.494098329,"9868":7.483083353,"9869":7.471872562,"9870":7.4604959677,"9871":7.4489830392,"9872":7.4373626177,"9873":7.4256628347,"9874":7.4139110356,"9875":7.4021337064,"9876":7.3903564069,"9877":7.3786037086,"9878":7.3668991392,"9879":7.3552651346,"9880":7.3437229973,"9881":7.3322928592,"9882":7.3209936526,"9883":7.3098430897,"9884":7.2988576483,"9885":7.2880525667,"9886":7.2774418454,"9887":7.2670382565,"9888":7.2568533607,"9889":7.2468975325,"9890":7.2371799925,"9891":7.2277088447,"9892":7.2184911215,"9893":7.2095328346,"9894":7.2008390319,"9895":7.1924138597,"9896":7.1842606297,"9897":7.1763818899,"9898":7.1687794989,"9899":7.1614547056,"9900":7.1544082297,"9901":7.1476403417,"9902":7.1411509421,"9903":7.1349396422,"9904":7.1290058412,"9905":7.1233488032,"9906":7.1179677306,"9907":7.1128618342,"9908":7.1080303985,"9909":7.1034728413,"9910":7.0991887671,"9911":7.0951780129,"9912":7.0914406868,"9913":7.0879771973,"9914":7.084788274,"9915":7.0818749785,"9916":7.0792387048,"9917":7.0768811702,"9918":7.0748043945,"9919":7.0730106691,"9920":7.071164369,"9921":7.0688196527,"9922":7.0658196793,"9923":7.0621596374,"9924":7.057841544,"9925":7.0528662448,"9926":7.0472350114,"9927":7.040949222,"9928":7.0340104248,"9929":7.0264203248,"9930":7.0181807863,"9931":7.0092938315,"9932":6.9997616408,"9933":6.9895865519,"9934":6.9787710595,"9935":6.9673178152,"9936":6.9552296264,"9937":6.942509456,"9938":6.9291604219,"9939":6.9151857961,"9940":6.9005890027,"9941":6.8853736176,"9942":6.8695433688,"9943":6.8531021366,"9944":6.8360539527,"9945":6.8184029994,"9946":6.8001536089,"9947":6.7813102627,"9948":6.7618775907,"9949":6.7418603705,"9950":6.7212635262,"9951":6.7000921281,"9952":6.6783513914,"9953":6.6560466759,"9954":6.6331834845,"9955":6.6097674624,"9956":6.5858043966,"9957":6.5613002142,"9958":6.5362609818,"9959":6.5106929042,"9960":6.4846023228,"9961":6.4579957142,"9962":6.4308796906,"9963":6.403260998,"9964":6.3751465153,"9965":6.3465432528,"9966":6.3174583508,"9967":6.2878990781,"9968":6.2578728305,"9969":6.2273871298,"9970":6.1964496212,"9971":6.1650680728,"9972":6.1332503734,"9973":6.101004531,"9974":6.0683386711,"9975":6.0352610351,"9976":6.0017799781,"9977":5.9679039677,"9978":5.9336415817,"9979":5.8990015061,"9980":5.8639925339,"9981":5.8286235627,"9982":5.7929035926,"9983":5.7568417242,"9984":5.7204471559,"9985":5.6837291825,"9986":5.6466971925,"9987":5.6093606662,"9988":5.5717291732,"9989":5.5338123704,"9990":5.495619999,"9991":5.4571618828,"9992":5.4184479253,"9993":5.3794881076,"9994":5.3402924859,"9995":5.3008711893,"9996":5.2612344167,"9997":5.2213924347,"9998":5.1813555746,"9999":5.1411342303,"10000":0.6392115256,"10001":0.6419361012,"10002":0.6449744144,"10003":0.6483320514,"10004":0.6520143961,"10005":0.6560265638,"10006":0.6603733915,"10007":0.6650592227,"10008":0.6700879419,"10009":0.6754627645,"10010":0.6811863035,"10011":0.6872603577,"10012":0.6936860148,"10013":0.7004634302,"10014":0.7075919735,"10015":0.7150699888,"10016":0.7228949916,"10017":0.731063403,"10018":0.7395708034,"10019":0.7484116316,"10020":0.7575795056,"10021":0.7670672942,"10022":0.7768679525,"10023":0.786973691,"10024":0.7973759087,"10025":0.808064593,"10026":0.8190289637,"10027":0.8302569068,"10028":0.8417357254,"10029":0.8534514448,"10030":0.8653897104,"10031":0.877534951,"10032":0.8898714701,"10033":0.9023724437,"10034":0.91497488,"10035":0.9275986813,"10036":0.9401721199,"10037":0.9526338223,"10038":0.9649304545,"10039":0.9770156153,"10040":0.9888488133,"10041":1.0003955481,"10042":1.0116286351,"10043":1.0225267464,"10044":1.0330717752,"10045":1.0432479603,"10046":1.0530417924,"10047":1.0624418896,"10048":1.0714388892,"10049":1.080025358,"10050":1.0881957091,"10051":1.0959461729,"10052":1.1032748976,"10053":1.1101818157,"10054":1.1166683719,"10055":1.1227373911,"10056":1.1283930095,"10057":1.133640595,"10058":1.1384866647,"10059":1.1429387985,"10060":1.1470055501,"10061":1.1506967483,"10062":1.1540262211,"10063":1.1570111954,"10064":1.1596693186,"10065":1.1620177426,"10066":1.1640732571,"10067":1.1658523248,"10068":1.1673710952,"10069":1.1686454161,"10070":1.1696908352,"10071":1.170522608,"10072":1.1711560709,"10073":1.171606601,"10074":1.171889227,"10075":1.1720185015,"10076":1.1720085165,"10077":1.1718729047,"10078":1.1716248389,"10079":1.1712770305,"10080":1.1708417281,"10081":1.1703307156,"10082":1.1697542819,"10083":1.1691212319,"10084":1.1684399257,"10085":1.1677186471,"10086":1.1669655297,"10087":1.1661884982,"10088":1.1653952248,"10089":1.1645930911,"10090":1.1637891579,"10091":1.1629901407,"10092":1.1622022336,"10093":1.1614310795,"10094":1.1606819186,"10095":1.1599596543,"10096":1.1592688419,"10097":1.1586136756,"10098":1.1579979802,"10099":1.157425206,"10100":1.1568984271,"10101":1.156420342,"10102":1.1559917278,"10103":1.1556110928,"10104":1.155276306,"10105":1.1549855587,"10106":1.154737364,"10107":1.1545304283,"10108":1.1543635668,"10109":1.1542356346,"10110":1.1541454742,"10111":1.1540918769,"10112":1.1540755862,"10113":1.1541182823,"10114":1.1542115703,"10115":1.1543553521,"10116":1.1545455379,"10117":1.1547801603,"10118":1.1550562704,"10119":1.1553714614,"10120":1.1557230882,"10121":1.1561086476,"10122":1.1565250865,"10123":1.1569686188,"10124":1.1574352925,"10125":1.1579215565,"10126":1.1584242838,"10127":1.158940686,"10128":1.1594682506,"10129":1.160004696,"10130":1.1605479358,"10131":1.1610960531,"10132":1.1616472199,"10133":1.1621996301,"10134":1.16275157,"10135":1.1633015023,"10136":1.1638480708,"10137":1.1643900834,"10138":1.1649265008,"10139":1.1654564284,"10140":1.1659791099,"10141":1.1664939224,"10142":1.1670003981,"10143":1.167498278,"10144":1.1679875277,"10145":1.1684683088,"10146":1.1689409475,"10147":1.1694059096,"10148":1.1698637798,"10149":1.1703152448,"10150":1.1707610786,"10151":1.1712021306,"10152":1.1716393194,"10153":1.1720736352,"10154":1.1725061371,"10155":1.1729379399,"10156":1.1733702014,"10157":1.1738041112,"10158":1.1742408803,"10159":1.1746817315,"10160":1.1751278917,"10161":1.1755805826,"10162":1.1760410072,"10163":1.1765103131,"10164":1.1769895766,"10165":1.1774798123,"10166":1.1779819791,"10167":1.1784969811,"10168":1.1790256682,"10169":1.1795688341,"10170":1.1801272146,"10171":1.1807014845,"10172":1.1812922537,"10173":1.1819000559,"10174":1.1825253425,"10175":1.1831684827,"10176":1.1838297645,"10177":1.1845093937,"10178":1.1852074936,"10179":1.1859241046,"10180":1.1866591842,"10181":1.187412608,"10182":1.1881841638,"10183":1.1889733593,"10184":1.1897793884,"10185":1.1906012842,"10186":1.1914379932,"10187":1.192288395,"10188":1.1931513212,"10189":1.1940255721,"10190":1.1949099295,"10191":1.1958031683,"10192":1.1967040655,"10193":1.1976113535,"10194":1.1985237116,"10195":1.1994398127,"10196":1.2003583518,"10197":1.2012780565,"10198":1.2021976964,"10199":1.2031160905,"10200":1.2040321146,"10201":1.2049447057,"10202":1.2058528677,"10203":1.2067555236,"10204":1.2076514551,"10205":1.2085394072,"10206":1.2094181668,"10207":1.2102865907,"10208":1.211143623,"10209":1.2119883095,"10210":1.2128198075,"10211":1.2136373917,"10212":1.2144404573,"10213":1.2152285025,"10214":1.2160011139,"10215":1.2167579711,"10216":1.2174988543,"10217":1.2182236444,"10218":1.2189323218,"10219":1.2196249631,"10220":1.2203017363,"10221":1.2209628956,"10222":1.2216087744,"10223":1.2222396375,"10224":1.222855579,"10225":1.2234566135,"10226":1.224042775,"10227":1.2246141429,"10228":1.2251708467,"10229":1.2257130695,"10230":1.2262410471,"10231":1.2267550654,"10232":1.227255455,"10233":1.2277425563,"10234":1.2282166852,"10235":1.228678143,"10236":1.2291272335,"10237":1.2295642627,"10238":1.2299895318,"10239":1.2304033307,"10240":1.2308059297,"10241":1.231197572,"10242":1.231578465,"10243":1.2319486934,"10244":1.2323081244,"10245":1.2326564683,"10246":1.2329933733,"10247":1.2333184439,"10248":1.2336312326,"10249":1.2339312343,"10250":1.2342178809,"10251":1.2344905357,"10252":1.2347484891,"10253":1.2349909317,"10254":1.2352169169,"10255":1.2354253758,"10256":1.2356151527,"10257":1.2357850133,"10258":1.2359336435,"10259":1.2360596495,"10260":1.2361615577,"10261":1.236237817,"10262":1.2362867998,"10263":1.2363067662,"10264":1.2362957821,"10265":1.2362517719,"10266":1.2361726252,"10267":1.2360562229,"10268":1.2359004298,"10269":1.2357030936,"10270":1.2354620444,"10271":1.2351750967,"10272":1.2348400524,"10273":1.2344546947,"10274":1.2340167543,"10275":1.2335239308,"10276":1.2329739419,"10277":1.2323645399,"10278":1.2316935128,"10279":1.2309586883,"10280":1.2301579372,"10281":1.2292891782,"10282":1.228350382,"10283":1.2273395531,"10284":1.2262545709,"10285":1.2250932535,"10286":1.2238535525,"10287":1.2225335939,"10288":1.2211316489,"10289":1.2196461157,"10290":1.2180755053,"10291":1.2164184308,"10292":1.2146735993,"10293":1.2128398038,"10294":1.2109158366,"10295":1.2089005069,"10296":1.2067927309,"10297":1.2045915513,"10298":1.2022961221,"10299":1.1999056983,"10300":1.1974196294,"10301":1.1948373537,"10302":1.1921583944,"10303":1.1893823569,"10304":1.1863902108,"10305":1.1831454018,"10306":1.1796733477,"10307":1.1759736991,"10308":1.1720108107,"10309":1.1678291278,"10310":1.163405117,"10311":1.1587573084,"10312":1.1538760753,"10313":1.1487842784,"10314":1.1434682583,"10315":1.1379510277,"10316":1.1322208924,"10317":1.1263006823,"10318":1.1201798182,"10319":1.1138808506,"10320":1.1073944075,"10321":1.1007427989,"10322":1.0939179245,"10323":1.0869418542,"10324":1.0798085608,"10325":1.072541613,"10326":1.0651375174,"10327":1.0576195709,"10328":1.0499850789,"10329":1.0422565386,"10330":1.0344320828,"10331":1.0265334673,"10332":1.0185596744,"10333":1.0105317374,"10334":1.0024497033,"10335":0.9943344497,"10336":0.986187264,"10337":0.9780283177,"10338":0.9698594536,"10339":0.961699893,"10340":0.9535519624,"10341":0.945433931,"10342":0.9373485388,"10343":0.929313085,"10344":0.9213305821,"10345":0.9134171856,"10346":0.9055760061,"10347":0.8978221501,"10348":0.890158898,"10349":0.8826003466,"10350":0.8751498407,"10351":0.8678204283,"10352":0.8606154094,"10353":0.8535467525,"10354":0.8466175859,"10355":0.8398387006,"10356":0.8332129094,"10357":0.8267498683,"10358":0.8204520886,"10359":0.814328129,"10360":0.8083801292,"10361":0.8026155484,"10362":0.7970360919,"10363":0.7916481286,"10364":0.7864525433,"10365":0.7814534507,"10366":0.776649865,"10367":0.7720444493,"10368":0.767636006,"10369":0.7634266156,"10370":0.759414884,"10371":0.7556022423,"10372":0.7519870189,"10373":0.7485699755,"10374":0.7453489567,"10375":0.7423233918,"10376":0.7394899118,"10377":0.7368469983,"10378":0.7343911133,"10379":0.7321203944,"10380":0.730031176,"10381":0.7281212312,"10382":0.7263867426,"10383":0.7248251329,"10384":0.7234322505,"10385":0.7222041759,"10386":0.7211351254,"10387":0.7202203018,"10388":0.7194540988,"10389":0.7188319267,"10390":0.7183484633,"10391":0.7179992635,"10392":0.7177792471,"10393":0.7176840984,"10394":0.7177088918,"10395":0.7178488181,"10396":0.718098136,"10397":0.7184517214,"10398":0.7189042405,"10399":0.7194510284,"10400":0.7200872346,"10401":0.7208085975,"10402":0.7216107111,"10403":0.7224896932,"10404":0.7234415435,"10405":0.7244623572,"10406":0.7255476339,"10407":0.7266944603,"10408":0.7278975382,"10409":0.7291539832,"10410":0.7304598127,"10411":0.7318127421,"10412":0.7332093094,"10413":0.7346476483,"10414":0.7361247933,"10415":0.7376389697,"10416":0.7391870898,"10417":0.7407674032,"10418":0.7423772952,"10419":0.7440154675,"10420":0.745679818,"10421":0.7473694057,"10422":0.7490823885,"10423":0.7508189696,"10424":0.7525781373,"10425":0.7543600052,"10426":0.7561635171,"10427":0.7579887509,"10428":0.7598348847,"10429":0.7617021431,"10430":0.7635898868,"10431":0.7654984624,"10432":0.7674273586,"10433":0.7693769544,"10434":0.771346841,"10435":0.7733371661,"10436":0.7753471074,"10437":0.7773764161,"10438":0.7794242804,"10439":0.7814904835,"10440":0.7835746728,"10441":0.7856771193,"10442":0.7877991646,"10443":0.7899422517,"10444":0.792107515,"10445":0.7942958854,"10446":0.7965081385,"10447":0.7987448416,"10448":0.80100631,"10449":0.8032926172,"10450":0.8056036146,"10451":0.8079389491,"10452":0.8102980793,"10453":0.8126802912,"10454":0.8150847126,"10455":0.8175102984,"10456":0.8199558243,"10457":0.8224199254,"10458":0.8249011352,"10459":0.8273979005,"10460":0.8299085883,"10461":0.832431494,"10462":0.8349648482,"10463":0.8375068239,"10464":0.8400555426,"10465":0.8426090915,"10466":0.8451655387,"10467":0.84772293,"10468":0.8502792811,"10469":0.8528325804,"10470":0.8553807959,"10471":0.8579218809,"10472":0.86045378,"10473":0.8629744352,"10474":0.8654817916,"10475":0.8679738109,"10476":0.8704484881,"10477":0.8729038503,"10478":0.875337949,"10479":0.8777488634,"10480":0.880134707,"10481":0.882493634,"10482":0.884823846,"10483":0.8871235975,"10484":0.8893912027,"10485":0.8916250818,"10486":0.8938238605,"10487":0.8959863328,"10488":0.8981113623,"10489":0.9001978606,"10490":0.902244799,"10491":0.9042512163,"10492":0.9062162253,"10493":0.9081390187,"10494":0.9100188736,"10495":0.9118551845,"10496":0.9136475697,"10497":0.915395844,"10498":0.9170999089,"10499":0.9187597233,"10500":0.9203753098,"10501":0.9219467582,"10502":0.9234742259,"10503":0.924957938,"10504":0.9263981866,"10505":0.927795348,"10506":0.9291500229,"10507":0.9304630087,"10508":0.9317351515,"10509":0.9329672979,"10510":0.9341602989,"10511":0.9353150092,"10512":0.9364322838,"10513":0.9375129749,"10514":0.938557928,"10515":0.9395679823,"10516":0.9405441317,"10517":0.9414875093,"10518":0.9423992205,"10519":0.9432802881,"10520":0.9441316563,"10521":0.9449541918,"10522":0.9457486821,"10523":0.9465158349,"10524":0.9472562766,"10525":0.9479705515,"10526":0.9486592335,"10527":0.9493229301,"10528":0.9499621714,"10529":0.9505773681,"10530":0.9511688164,"10531":0.9517367029,"10532":0.9522811079,"10533":0.9528020099,"10534":0.9532992896,"10535":0.9537727347,"10536":0.9542221562,"10537":0.9546474102,"10538":0.9550482951,"10539":0.955424504,"10540":0.9557756317,"10541":0.9561011863,"10542":0.956400599,"10543":0.9566732344,"10544":0.9569184005,"10545":0.9571353587,"10546":0.9573233527,"10547":0.9574816242,"10548":0.9576094035,"10549":0.9577059088,"10550":0.9577703542,"10551":0.957801961,"10552":0.9577999673,"10553":0.9577636381,"10554":0.9576922743,"10555":0.9575852225,"10556":0.9574420416,"10557":0.9572625854,"10558":0.957046856,"10559":0.9567948867,"10560":0.956506734,"10561":0.9561824945,"10562":0.9558223161,"10563":0.9554264085,"10564":0.9549950516,"10565":0.954528603,"10566":0.9540275672,"10567":0.9534926447,"10568":0.9529246729,"10569":0.9523245646,"10570":0.9516932981,"10571":0.9510319223,"10572":0.9503415578,"10573":0.9496233971,"10574":0.9488787033,"10575":0.9481088075,"10576":0.9473151755,"10577":0.9464994767,"10578":0.9456675187,"10579":0.9448251603,"10580":0.9439747265,"10581":0.9431176276,"10582":0.9422551245,"10583":0.9413886538,"10584":0.9405194888,"10585":0.939649065,"10586":0.9387786523,"10587":0.9379096923,"10588":0.937043453,"10589":0.9361813255,"10590":0.9353244901,"10591":0.9344742286,"10592":0.9336316013,"10593":0.932797754,"10594":0.9319735997,"10595":0.9311601223,"10596":0.9303580737,"10597":0.9295682996,"10598":0.9287914188,"10599":0.9280280941,"10600":0.92727872,"10601":0.9265437221,"10602":0.9258232561,"10603":0.9251175056,"10604":0.9244263833,"10605":0.9237498303,"10606":0.9230875133,"10607":0.9224391123,"10608":0.9218040255,"10609":0.9211816894,"10610":0.9205712829,"10611":0.9199720348,"10612":0.9193829215,"10613":0.9188029792,"10614":0.9182309998,"10615":0.9176658478,"10616":0.917106149,"10617":0.9165505854,"10618":0.9159975883,"10619":0.9154456948,"10620":0.9148932393,"10621":0.9143386875,"10622":0.9137803125,"10623":0.9132165369,"10624":0.9126456031,"10625":0.9120659225,"10626":0.9114757403,"10627":0.9108735236,"10628":0.9102576173,"10629":0.9096265715,"10630":0.9089787958,"10631":0.9083129147,"10632":0.9076274667,"10633":0.9069211391,"10634":0.9061925284,"10635":0.9054405381,"10636":0.9046640012,"10637":0.9038619811,"10638":0.9030335841,"10639":0.9021781671,"10640":0.9012950478,"10641":0.9003837793,"10642":0.8994438913,"10643":0.8984751618,"10644":0.8974773565,"10645":0.8964504985,"10646":0.8953946069,"10647":0.8943100216,"10648":0.8931971503,"10649":0.8920566753,"10650":0.8908892226,"10651":0.8896957543,"10652":0.8884771971,"10653":0.8872346712,"10654":0.8859692615,"10655":0.8846823813,"10656":0.8833753678,"10657":0.8820498975,"10658":0.8807076868,"10659":0.8793507302,"10660":0.8779809172,"10661":0.8766003447,"10662":0.875211,"10663":0.8738150589,"10664":0.8724145803,"10665":0.8710117904,"10666":0.8696087884,"10667":0.8682078355,"10668":0.8668110812,"10669":0.8654208019,"10670":0.8640391178,"10671":0.8626682337,"10672":0.8613101849,"10673":0.8599670668,"10674":0.8586407943,"10675":0.8573333184,"10676":0.8560463988,"10677":0.8547818061,"10678":0.8535411048,"10679":0.852325851,"10680":0.8511373923,"10681":0.8499770533,"10682":0.8488459438,"10683":0.8477451363,"10684":0.8466754838,"10685":0.8456377904,"10686":0.8446326976,"10687":0.8436606263,"10688":0.8427218305,"10689":0.8418164022,"10690":0.8409442987,"10691":0.8401053545,"10692":0.8392992797,"10693":0.8385256611,"10694":0.8377839639,"10695":0.8370735345,"10696":0.8363936035,"10697":0.8357432378,"10698":0.8351212669,"10699":0.8345263403,"10700":0.8339570264,"10701":0.8334118394,"10702":0.8328892399,"10703":0.8323876376,"10704":0.831901556,"10705":0.8313945848,"10706":0.8308735572,"10707":0.8303328705,"10708":0.8297730819,"10709":0.829191618,"10710":0.8285874609,"10711":0.8279588347,"10712":0.8273043743,"10713":0.8266225506,"10714":0.8259119678,"10715":0.8251712251,"10716":0.824398996,"10717":0.8235939838,"10718":0.8227548895,"10719":0.8218804259,"10720":0.8209693888,"10721":0.8200206778,"10722":0.8190332994,"10723":0.8180063696,"10724":0.8169391183,"10725":0.8158308921,"10726":0.8146811579,"10727":0.813489507,"10728":0.8122556727,"10729":0.8109795289,"10730":0.8096610778,"10731":0.8083004465,"10732":0.8068978879,"10733":0.8054537814,"10734":0.803968704,"10735":0.8024434798,"10736":0.8008791185,"10737":0.7992767656,"10738":0.7976377465,"10739":0.7959635598,"10740":0.7942558191,"10741":0.7925162304,"10742":0.790746589,"10743":0.7889487734,"10744":0.7871247382,"10745":0.7852765073,"10746":0.7834061655,"10747":0.7815158505,"10748":0.7796077401,"10749":0.7776840432,"10750":0.7757469941,"10751":0.7737988443,"10752":0.7718418527,"10753":0.7698782767,"10754":0.7679103622,"10755":0.7659403348,"10756":0.7639703911,"10757":0.7620026896,"10758":0.7600393231,"10759":0.7580823079,"10760":0.7561335955,"10761":0.7541950758,"10762":0.7522685707,"10763":0.7503558271,"10764":0.7484585118,"10765":0.746578206,"10766":0.7447164013,"10767":0.7428744953,"10768":0.7410537311,"10769":0.7392551772,"10770":0.7374797825,"10771":0.7357284107,"10772":0.7340018411,"10773":0.7323007657,"10774":0.7306257871,"10775":0.7289774179,"10776":0.7273560797,"10777":0.7257621042,"10778":0.7241956926,"10779":0.7226568981,"10780":0.721145668,"10781":0.7196618774,"10782":0.7182053357,"10783":0.7167757875,"10784":0.7153729142,"10785":0.7139963365,"10786":0.7126456174,"10787":0.7113202656,"10788":0.7100197359,"10789":0.7087434304,"10790":0.7074907073,"10791":0.706260889,"10792":0.7050532683,"10793":0.7038671131,"10794":0.7027016727,"10795":0.7015561833,"10796":0.7004298739,"10797":0.6993219729,"10798":0.6982317026,"10799":0.6971582738,"10800":0.6961009036,"10801":0.6950588384,"10802":0.694031363,"10803":0.6930178062,"10804":0.6920175468,"10805":0.6910300192,"10806":0.6900547186,"10807":0.6890912072,"10808":0.6881391255,"10809":0.6871982087,"10810":0.6862682834,"10811":0.6853492581,"10812":0.6844411239,"10813":0.6835439577,"10814":0.6826579243,"10815":0.6817832786,"10816":0.6809203653,"10817":0.6800696193,"10818":0.6792315894,"10819":0.6784069939,"10820":0.6775966906,"10821":0.6768016096,"10822":0.6760227314,"10823":0.6752610854,"10824":0.674517745,"10825":0.6737938219,"10826":0.6730904585,"10827":0.6724088202,"10828":0.6717500877,"10829":0.6711154546,"10830":0.6705061147,"10831":0.6699232427,"10832":0.6693679805,"10833":0.668841426,"10834":0.6683446204,"10835":0.6678785365,"10836":0.6674440668,"10837":0.6670420111,"10838":0.666673069,"10839":0.6663378567,"10840":0.6660368912,"10841":0.6657705538,"10842":0.6655390728,"10843":0.6653425174,"10844":0.665180792,"10845":0.6650536319,"10846":0.6649605989,"10847":0.6649010794,"10848":0.6648742835,"10849":0.6648792458,"10850":0.6649148274,"10851":0.6649797175,"10852":0.665072438,"10853":0.6651913487,"10854":0.6653346549,"10855":0.6655004153,"10856":0.665686552,"10857":0.665890861,"10858":0.6661110238,"10859":0.6663446162,"10860":0.6665891218,"10861":0.6668419498,"10862":0.667100452,"10863":0.6673619378,"10864":0.6676236896,"10865":0.6678829795,"10866":0.6681370846,"10867":0.6683833041,"10868":0.6686189745,"10869":0.6688414997,"10870":0.6690483686,"10871":0.6692371567,"10872":0.6694055354,"10873":0.6695512853,"10874":0.6696723111,"10875":0.6697666543,"10876":0.6698325056,"10877":0.6698682161,"10878":0.6698723078,"10879":0.6698435467,"10880":0.6697809689,"10881":0.6696838261,"10882":0.6695515523,"10883":0.6693837662,"10884":0.6691802774,"10885":0.668941091,"10886":0.6686664096,"10887":0.6683566344,"10888":0.6680123644,"10889":0.6676344316,"10890":0.6672239155,"10891":0.6667820993,"10892":0.6663104326,"10893":0.6658105188,"10894":0.6652841067,"10895":0.6647330796,"10896":0.664159443,"10897":0.6635653099,"10898":0.6629528854,"10899":0.662324517,"10900":0.6616827242,"10901":0.6610350549,"10902":0.6603955806,"10903":0.6597728765,"10904":0.6591695529,"10905":0.6585873998,"10906":0.6580284254,"10907":0.6574944268,"10908":0.6569872396,"10909":0.6565084553,"10910":0.6560596377,"10911":0.6556420588,"10912":0.6552569408,"10913":0.6549051821,"10914":0.6545875949,"10915":0.6543046245,"10916":0.654056597,"10917":0.6538434357,"10918":0.6536649185,"10919":0.6535203095,"10920":0.653418626,"10921":0.6533715378,"10922":0.6533818162,"10923":0.6534472527,"10924":0.6535653094,"10925":0.6537330662,"10926":0.6539474701,"10927":0.6542050426,"10928":0.6545021942,"10929":0.6548349157,"10930":0.6551991146,"10931":0.6555902976,"10932":0.6560039287,"10933":0.656435101,"10934":0.6568789168,"10935":0.6573301461,"10936":0.6577836295,"10937":0.658233922,"10938":0.6586757179,"10939":0.6591034968,"10940":0.6595120365,"10941":0.6598960035,"10942":0.6602503514,"10943":0.660569891,"10944":0.6608497847,"10945":0.661085118,"10946":0.6612714104,"10947":0.6614041643,"10948":0.6614793949,"10949":0.6614931592,"10950":0.6614421261,"10951":0.6613230766,"10952":0.6611334411,"10953":0.660870775,"10954":0.660533335,"10955":0.6601195423,"10956":0.6596285686,"10957":0.6590597814,"10958":0.6584133387,"10959":0.6576896337,"10960":0.6568904139,"10961":0.6560181653,"10962":0.6550762138,"10963":0.6540679731,"10964":0.6529975852,"10965":0.6518693336,"10966":0.6506882617,"10967":0.6494595773,"10968":0.6481892647,"10969":0.6468834835,"10970":0.6455492059,"10971":0.6441936135,"10972":0.6428246619,"10973":0.6414504652,"10974":0.6400798817,"10975":0.6387219145,"10976":0.6373862844,"10977":0.636082834,"10978":0.6348220877,"10979":0.6336146599,"10980":0.6324717321,"10981":0.6314044549,"10982":0.6304245496,"10983":0.6295437584,"10984":0.6287743654,"10985":0.6281286125,"10986":0.6276192086,"10987":0.6272587479,"10988":0.6270602104,"10989":0.62703638,"10990":0.6272003468,"10991":0.627564924,"10992":0.6281431343,"10993":0.6289476118,"10994":0.6299910999,"10995":0.6312858462,"10996":0.6328441109,"10997":0.6346775443,"10998":0.6367977137,"10999":0.6392154563,"11000":5.1411340687,"11001":5.1007386951,"11002":5.0601798033,"11003":5.0194679593,"11004":4.978613779,"11005":4.9376279266,"11006":4.8965211109,"11007":4.8553040838,"11008":4.8139876362,"11009":4.7725825957,"11010":4.7310998241,"11011":4.6895502143,"11012":4.647944688,"11013":4.6062941928,"11014":4.5646096997,"11015":4.5229022001,"11016":4.4811827037,"11017":4.4394622349,"11018":4.3977518309,"11019":4.3560625381,"11020":4.3144054105,"11021":4.27279155,"11022":4.2312321523,"11023":4.1897384682,"11024":4.1483217488,"11025":4.1069932293,"11026":4.0657641285,"11027":4.0246456455,"11028":3.9836489576,"11029":3.9427852176,"11030":3.9020655512,"11031":3.8615010564,"11032":3.8211028025,"11033":3.7808818268,"11034":3.7408491275,"11035":3.7010156588,"11036":3.6613923288,"11037":3.6219899985,"11038":3.5828194807,"11039":3.543891539,"11040":3.5052168863,"11041":3.4668062192,"11042":3.428670299,"11043":3.3908199221,"11044":3.3532658389,"11045":3.3160187283,"11046":3.2790891984,"11047":3.2424877851,"11048":3.2062249501,"11049":3.1703110792,"11050":3.1347564809,"11051":3.0995713864,"11052":3.0647659547,"11053":3.0303502697,"11054":2.9963343323,"11055":2.962728057,"11056":2.9295412707,"11057":2.8967837108,"11058":2.864465024,"11059":2.8325947641,"11060":2.8011823913,"11061":2.7702372771,"11062":2.7397687549,"11063":2.7097861148,"11064":2.6802985553,"11065":2.6513151667,"11066":2.6228449314,"11067":2.5948967223,"11068":2.5674793012,"11069":2.5406013177,"11070":2.514271308,"11071":2.4884976934,"11072":2.4632887859,"11073":2.4386527869,"11074":2.4145977804,"11075":2.3911317306,"11076":2.3682624804,"11077":2.3459977511,"11078":2.3243451405,"11079":2.3033121227,"11080":2.2829060469,"11081":2.2631341363,"11082":2.2440034497,"11083":2.2255208757,"11084":2.2076931642,"11085":2.1905269387,"11086":2.174028695,"11087":2.1582048005,"11088":2.1430614932,"11089":2.128604881,"11090":2.1148409408,"11091":2.1017755176,"11092":2.0894143186,"11093":2.0777629109,"11094":2.0668267254,"11095":2.056611058,"11096":2.0471210695,"11097":2.0383617846,"11098":2.0303380913,"11099":2.0230547399,"11100":2.0165163429,"11101":2.0107273741,"11102":2.0056921085,"11103":2.0014145986,"11104":1.9978987204,"11105":1.9951482065,"11106":1.9931666486,"11107":1.9919574961,"11108":1.9915240551,"11109":1.9918694875,"11110":1.9929968095,"11111":1.9949088914,"11112":1.9975247302,"11113":2.0000373169,"11114":2.0026287834,"11115":2.0052080917,"11116":2.0078207877,"11117":2.0104441244,"11118":2.0130895006,"11119":2.0157512416,"11120":2.0184322088,"11121":2.021130995,"11122":2.0238482875,"11123":2.0265836342,"11124":2.0293370742,"11125":2.0321083723,"11126":2.0348974277,"11127":2.0377040726,"11128":2.0405281724,"11129":2.0433695757,"11130":2.0462281397,"11131":2.0491037171,"11132":2.0519961582,"11133":2.0549053016,"11134":2.0578309796,"11135":2.060773023,"11136":2.0637312632,"11137":2.0667055316,"11138":2.0696956599,"11139":2.07270148,"11140":2.0757228243,"11141":2.0787595252,"11142":2.0818114063,"11143":2.0848782677,"11144":2.0879598916,"11145":2.0910560573,"11146":2.0941665452,"11147":2.0972911361,"11148":2.1004296115,"11149":2.1035817534,"11150":2.1067473444,"11151":2.1099261679,"11152":2.1131180064,"11153":2.1163226383,"11154":2.1195398391,"11155":2.1227693841,"11156":2.1260110491,"11157":2.129264611,"11158":2.1325298469,"11159":2.1358065348,"11160":2.1390944534,"11161":2.142393382,"11162":2.145703102,"11163":2.1490234032,"11164":2.152354083,"11165":2.1556949409,"11166":2.1590457769,"11167":2.1624063915,"11168":2.1657765861,"11169":2.1691561622,"11170":2.1725449223,"11171":2.1759426693,"11172":2.1793492067,"11173":2.1827643406,"11174":2.1861878794,"11175":2.1896196323,"11176":2.1930594092,"11177":2.1965070202,"11178":2.199962276,"11179":2.2034249877,"11180":2.2068949667,"11181":2.210372025,"11182":2.2138559756,"11183":2.2173466511,"11184":2.2208439058,"11185":2.224347599,"11186":2.22785759,"11187":2.2313737381,"11188":2.2348959029,"11189":2.2384239442,"11190":2.241957722,"11191":2.2454970965,"11192":2.249041928,"11193":2.2525920823,"11194":2.2561474317,"11195":2.2597078502,"11196":2.2632732122,"11197":2.266843392,"11198":2.2704182641,"11199":2.2739977031,"11200":2.2775815839,"11201":2.2811697814,"11202":2.2847621707,"11203":2.2883586431,"11204":2.2919591108,"11205":2.2955634935,"11206":2.2991717112,"11207":2.302783684,"11208":2.3063993322,"11209":2.3100185758,"11210":2.3136413353,"11211":2.3172675311,"11212":2.3208970835,"11213":2.3245299164,"11214":2.3281659579,"11215":2.3318051379,"11216":2.3354473868,"11217":2.3390926353,"11218":2.3427408139,"11219":2.3463918535,"11220":2.350045685,"11221":2.3537022397,"11222":2.3573614488,"11223":2.3610232543,"11224":2.3646876144,"11225":2.3683544962,"11226":2.3720238678,"11227":2.3756956973,"11228":2.3793699529,"11229":2.3830466026,"11230":2.386725615,"11231":2.3904069585,"11232":2.3940906015,"11233":2.3977765148,"11234":2.401464673,"11235":2.4051550532,"11236":2.4088476326,"11237":2.4125423888,"11238":2.4162392992,"11239":2.4199383415,"11240":2.4236394933,"11241":2.4273427324,"11242":2.4310480367,"11243":2.4347553858,"11244":2.4384647633,"11245":2.4421761556,"11246":2.4458895492,"11247":2.4496049307,"11248":2.4533222866,"11249":2.4570416035,"11250":2.4607628678,"11251":2.4644860658,"11252":2.4682111839,"11253":2.471938209,"11254":2.4756671289,"11255":2.4793979326,"11256":2.4831306091,"11257":2.4868651472,"11258":2.4906015356,"11259":2.4943397629,"11260":2.4980798177,"11261":2.5018216881,"11262":2.5055653624,"11263":2.5093108278,"11264":2.5130580681,"11265":2.5168070645,"11266":2.5205577974,"11267":2.5243102471,"11268":2.5280643937,"11269":2.5318202171,"11270":2.5355776968,"11271":2.5393368124,"11272":2.5430975431,"11273":2.5468598678,"11274":2.550623764,"11275":2.5543892076,"11276":2.5581561746,"11277":2.5619246402,"11278":2.56569458,"11279":2.5694659691,"11280":2.5732387826,"11281":2.5770129952,"11282":2.5807885817,"11283":2.5845655155,"11284":2.5883437593,"11285":2.5921232654,"11286":2.5959039834,"11287":2.5996858631,"11288":2.603468854,"11289":2.6072529056,"11290":2.6110379673,"11291":2.6148239885,"11292":2.6186109185,"11293":2.6223987062,"11294":2.6261872962,"11295":2.6299766277,"11296":2.6337666389,"11297":2.6375572679,"11298":2.641348453,"11299":2.6451401324,"11300":2.6489322443,"11301":2.6527247272,"11302":2.6565175195,"11303":2.6603105597,"11304":2.6641037769,"11305":2.6678970899,"11306":2.6716904149,"11307":2.6754836693,"11308":2.6792767695,"11309":2.6830696326,"11310":2.6868621761,"11311":2.690654318,"11312":2.6944459763,"11313":2.69823707,"11314":2.7020275156,"11315":2.7058172271,"11316":2.7096061175,"11317":2.7133941007,"11318":2.7171810908,"11319":2.7209670027,"11320":2.7247517518,"11321":2.7285352235,"11322":2.732317366,"11323":2.7360980962,"11324":2.7398773148,"11325":2.7436549295,"11326":2.747430856,"11327":2.7512050035,"11328":2.7549772886,"11329":2.7587476232,"11330":2.7625159259,"11331":2.7662821113,"11332":2.7700461001,"11333":2.7738078091,"11334":2.7775671641,"11335":2.7813240918,"11336":2.7850785269,"11337":2.7888304013,"11338":2.7925796523,"11339":2.7963262143,"11340":2.8000700265,"11341":2.8038110258,"11342":2.8075491533,"11343":2.8112843484,"11344":2.815016558,"11345":2.8187457345,"11346":2.8224718385,"11347":2.8261948291,"11348":2.8299146691,"11349":2.8336313197,"11350":2.8373447455,"11351":2.8410549093,"11352":2.8447617772,"11353":2.848465314,"11354":2.8521654888,"11355":2.8558622736,"11356":2.8595556452,"11357":2.8632455799,"11358":2.8669320563,"11359":2.8706150519,"11360":2.8742945462,"11361":2.8779705179,"11362":2.8816429474,"11363":2.8853118144,"11364":2.8889771027,"11365":2.8926388026,"11366":2.8962969106,"11367":2.8999514238,"11368":2.9036023399,"11369":2.907249656,"11370":2.9108933697,"11371":2.9145334784,"11372":2.9181699798,"11373":2.9218028711,"11374":2.9254321513,"11375":2.929057823,"11376":2.9326798926,"11377":2.9362983666,"11378":2.9399132514,"11379":2.9435245532,"11380":2.947132278,"11381":2.9507364314,"11382":2.9543370188,"11383":2.9579340452,"11384":2.9615275167,"11385":2.9651174431,"11386":2.9687038384,"11387":2.9722867168,"11388":2.9758660921,"11389":2.9794419773,"11390":2.9830143855,"11391":2.9865833287,"11392":2.9901488191,"11393":2.993710868,"11394":2.9972694869,"11395":3.0008246896,"11396":3.0043764928,"11397":3.0079249129,"11398":3.0114699662,"11399":3.0150116681,"11400":3.0185500339,"11401":3.0220850784,"11402":3.0256168158,"11403":3.0291452601,"11404":3.0326704249,"11405":3.0361923256,"11406":3.0397109791,"11407":3.0432264024,"11408":3.0467386125,"11409":3.0502476254,"11410":3.0537534573,"11411":3.0572561239,"11412":3.0607556406,"11413":3.0642520225,"11414":3.0677452847,"11415":3.0712354431,"11416":3.074722515,"11417":3.0782065179,"11418":3.0816874132,"11419":3.0851652854,"11420":3.088639556,"11421":3.0921109944,"11422":3.095573848,"11423":3.0990145378,"11424":3.1024179092,"11425":3.1057696484,"11426":3.1090563047,"11427":3.1122652718,"11428":3.1153847749,"11429":3.1184038552,"11430":3.1213123529,"11431":3.1241008892,"11432":3.1267608472,"11433":3.1292843518,"11434":3.1316642497,"11435":3.1338940875,"11436":3.1359680907,"11437":3.1378811411,"11438":3.1396287551,"11439":3.1412070612,"11440":3.1426127777,"11441":3.1438431901,"11442":3.1448961293,"11443":3.1457699492,"11444":3.1464635045,"11445":3.1469761288,"11446":3.1473076117,"11447":3.1474581789,"11448":3.1474284722,"11449":3.147219529,"11450":3.1468327623,"11451":3.1462699409,"11452":3.1455331703,"11453":3.1446248735,"11454":3.1435477728,"11455":3.1423048709,"11456":3.1408994324,"11457":3.1393349674,"11458":3.1376152144,"11459":3.1357441239,"11460":3.1337258424,"11461":3.1315646956,"11462":3.1292651735,"11463":3.1268319141,"11464":3.1242696889,"11465":3.1215833874,"11466":3.1187780015,"11467":3.1158586119,"11468":3.1128303747,"11469":3.1096985078,"11470":3.1064682774,"11471":3.1031449848,"11472":3.0997339536,"11473":3.096240517,"11474":3.0926700055,"11475":3.0890277347,"11476":3.0853189928,"11477":3.08154903,"11478":3.0777230479,"11479":3.0738461898,"11480":3.0699235303,"11481":3.0659600656,"11482":3.0619607052,"11483":3.0579302627,"11484":3.0538734481,"11485":3.0497948602,"11486":3.0456989792,"11487":3.0415901608,"11488":3.0374726307,"11489":3.0333504801,"11490":3.0292276613,"11491":3.0251079839,"11492":3.020995112,"11493":3.016892562,"11494":3.0128037005,"11495":3.008731744,"11496":3.0046797573,"11497":3.000650655,"11498":2.9966472018,"11499":2.9926720154,"11500":2.9887275682,"11501":2.9848161901,"11502":2.9809400724,"11503":2.9771012709,"11504":2.9733017111,"11505":2.9695431925,"11506":2.9658273939,"11507":2.9621558787,"11508":2.9585301013,"11509":2.9549514128,"11510":2.9514210675,"11511":2.9479402292,"11512":2.9445099778,"11513":2.9411313159,"11514":2.9378051753,"11515":2.9345324233,"11516":2.9313138694,"11517":2.928150271,"11518":2.9250423401,"11519":2.9219907486,"11520":2.9189961342,"11521":2.9160591052,"11522":2.9131802457,"11523":2.9103601199,"11524":2.9075992759,"11525":2.9048982497,"11526":2.9022575683,"11527":2.8996777522,"11528":2.8971593178,"11529":2.8947027789,"11530":2.892308648,"11531":2.889977437,"11532":2.8877096571,"11533":2.8855058192,"11534":2.8833664327,"11535":2.8812920043,"11536":2.8792830369,"11537":2.8773400276,"11538":2.8754634648,"11539":2.873653826,"11540":2.871911574,"11541":2.8702371541,"11542":2.8686309902,"11543":2.8670934808,"11544":2.8656249954,"11545":2.8642258699,"11546":2.8628964025,"11547":2.8616368492,"11548":2.8604474196,"11549":2.8593282724,"11550":2.8582795115,"11551":2.8573011814,"11552":2.8563932636,"11553":2.8555556727,"11554":2.8547882526,"11555":2.8540907738,"11556":2.8534629304,"11557":2.8529043381,"11558":2.8524145315,"11559":2.8519929623,"11560":2.8516389976,"11561":2.8513519192,"11562":2.8511309235,"11563":2.8509751212,"11564":2.8508835386,"11565":2.8508551183,"11566":2.8508887216,"11567":2.8509831306,"11568":2.8511370517,"11569":2.8513491179,"11570":2.851617894,"11571":2.8519418802,"11572":2.8523195177,"11573":2.852749194,"11574":2.8532292488,"11575":2.8537579807,"11576":2.8543336536,"11577":2.8549545047,"11578":2.8556187513,"11579":2.8563245987,"11580":2.8570702478,"11581":2.8578539035,"11582":2.8586737819,"11583":2.8595281194,"11584":2.8604151803,"11585":2.861333265,"11586":2.8622807181,"11587":2.8632559362,"11588":2.8642573754,"11589":2.8652835586,"11590":2.8663330823,"11591":2.8674046231,"11592":2.8684969438,"11593":2.869608899,"11594":2.8707394399,"11595":2.8718876193,"11596":2.8730525947,"11597":2.8742336324,"11598":2.8754301091,"11599":2.8766415146,"11600":2.8778674521,"11601":2.8791076387,"11602":2.8803619053,"11603":2.8816301952,"11604":2.8829125625,"11605":2.884209169,"11606":2.8855202812,"11607":2.8868462662,"11608":2.8881875868,"11609":2.889544796,"11610":2.8909185311,"11611":2.8923095067,"11612":2.8937185075,"11613":2.8951463806,"11614":2.8965940269,"11615":2.8980623923,"11616":2.8995524589,"11617":2.9010652348,"11618":2.9026017448,"11619":2.9041630199,"11620":2.905750087,"11621":2.9073639591,"11622":2.9090056238,"11623":2.9106760337,"11624":2.9123760954,"11625":2.9141066596,"11626":2.9158685106,"11627":2.9176623565,"11628":2.9194888197,"11629":2.9213484278,"11630":2.9232416043,"11631":2.9251686609,"11632":2.927129789,"11633":2.9291250531,"11634":2.9311543839,"11635":2.9332175723,"11636":2.9353142644,"11637":2.9374439566,"11638":2.9396059927,"11639":2.9417995602,"11640":2.9440236889,"11641":2.9462772497,"11642":2.9485589544,"11643":2.9508673562,"11644":2.9532008516,"11645":2.9555576825,"11646":2.9579359402,"11647":2.9603335693,"11648":2.9627483728,"11649":2.965178019,"11650":2.9676200475,"11651":2.9700718777,"11652":2.972530817,"11653":2.9749940702,"11654":2.9774587497,"11655":2.9799218858,"11656":2.9823804383,"11657":2.9848313078,"11658":2.9872713482,"11659":2.9896973794,"11660":2.9921062005,"11661":2.9944946031,"11662":2.9968593851,"11663":2.9991973641,"11664":3.0015053911,"11665":3.0037803645,"11666":3.0060192437,"11667":3.0082190623,"11668":3.010376942,"11669":3.0124901052,"11670":3.0145558873,"11671":3.016571749,"11672":3.0185352881,"11673":3.02044425,"11674":3.0222965386,"11675":3.0240902262,"11676":3.0258235618,"11677":3.0274949801,"11678":3.0291031085,"11679":3.0306467739,"11680":3.0321250082,"11681":3.0335370535,"11682":3.0348823656,"11683":3.0361606171,"11684":3.0373716996,"11685":3.0385157242,"11686":3.0395930222,"11687":3.0406041438,"11688":3.0415498563,"11689":3.0424311417,"11690":3.0432491925,"11691":3.0440054076,"11692":3.0447013862,"11693":3.0453389222,"11694":3.0459199967,"11695":3.0464467704,"11696":3.0469215746,"11697":3.0473469024,"11698":3.0477253985,"11699":3.0480598488,"11700":3.0483531693,"11701":3.0486083944,"11702":3.0488286649,"11703":3.0490172157,"11704":3.0493056451,"11705":3.0508587335,"11706":3.0534040214,"11707":3.057081398,"11708":3.0618237822,"11709":3.067666787,"11710":3.0745938922,"11711":3.0826138607,"11712":3.0917220314,"11713":3.101919673,"11714":3.1132043049,"11715":3.1255745339,"11716":3.1390276317,"11717":3.1535607403,"11718":3.1691702624,"11719":3.1858521587,"11720":3.2036017906,"11721":3.2224139889,"11722":3.2422830098,"11723":3.2632025456,"11724":3.285165708,"11725":3.3081650248,"11726":3.3321924296,"11727":3.3572392548,"11728":3.3832962229,"11729":3.4103534392,"11730":3.4384003839,"11731":3.4674259051,"11732":3.4974182121,"11733":3.5283648691,"11734":3.5602527899,"11735":3.593068233,"11736":3.6267967981,"11737":3.6614234228,"11738":3.696932381,"11739":3.7333072821,"11740":3.7705310714,"11741":3.8085860327,"11742":3.8474537907,"11743":3.8871153162,"11744":3.9275509318,"11745":3.9687403202,"11746":4.0106625323,"11747":4.0532959991,"11748":4.096618543,"11749":4.1406073923,"11750":4.1852391962,"11751":4.2304900429,"11752":4.2763354774,"11753":4.3227505222,"11754":4.3697096989,"11755":4.4171870511,"11756":4.4651561692,"11757":4.5135902158,"11758":4.5624619525,"11759":4.6117437676,"11760":4.6614077056,"11761":4.7114254978,"11762":4.7617685933,"11763":4.8124081902,"11764":4.8633152684,"11765":4.9144606222,"11766":4.9658148936,"11767":5.0173486057,"11768":5.0690321954,"11769":5.1208360473,"11770":5.1727305271,"11771":5.2246860155,"11772":5.2766729412,"11773":5.3286618134,"11774":5.3806232536,"11775":5.4325280269,"11776":5.4843470727,"11777":5.536051534,"11778":5.5876127857,"11779":5.6390024624,"11780":5.6901924845,"11781":5.7411550836,"11782":5.7918628267,"11783":5.8422886383,"11784":5.8924058216,"11785":5.9421880786,"11786":5.9916095277,"11787":6.0406447208,"11788":6.0892686584,"11789":6.1374568032,"11790":6.1851850924,"11791":6.2324299488,"11792":6.2791682897,"11793":6.3253775354,"11794":6.3710356154,"11795":6.4161209743,"11796":6.4606125758,"11797":6.5044899062,"11798":6.5477329761,"11799":6.5903223218,"11800":6.6322390063,"11801":6.6734646197,"11802":6.7139812788,"11803":6.7537716269,"11804":6.7928188334,"11805":6.8311065928,"11806":6.8686191251,"11807":6.9053411755,"11808":6.9412580156,"11809":6.9763554449,"11810":7.0106197935,"11811":7.0440379253,"11812":7.0765972435,"11813":7.1082856965,"11814":7.1390917859,"11815":7.1690045762,"11816":7.198013706,"11817":7.2261094013,"11818":7.2532824908,"11819":7.2795244231,"11820":7.3048272861,"11821":7.3291838271,"11822":7.352587476,"11823":7.3750323696,"11824":7.3965133779,"11825":7.4170261324,"11826":7.4365670547,"11827":7.4551333874,"11828":7.4727232254,"11829":7.4893355483,"11830":7.5049702528,"11831":7.519628185,"11832":7.5333111726,"11833":7.5460220566,"11834":7.5577647219,"11835":7.5685441266,"11836":7.5783663297,"11837":7.5872385162,"11838":7.59516902,"11839":7.6021673455,"11840":7.6082441841,"11841":7.6134114251,"11842":7.6176821647,"11843":7.6210707093,"11844":7.6235925755,"11845":7.6252644846,"11846":7.6261043511,"11847":7.6261312673,"11848":7.625365481,"11849":7.6238283683,"11850":7.6215424008,"11851":7.6185311055,"11852":7.6148190203,"11853":7.6104316434,"11854":7.6053953768,"11855":7.5997374657,"11856":7.5934859312,"11857":7.5866694997,"11858":7.5793175271,"11859":7.571459921,"11860":7.5631270579,"11861":7.5543496948,"11862":7.5451588788,"11863":7.535585856,"11864":7.5256619778,"11865":7.5154186072,"11866":7.5048870237,"11867":7.494098329,"11868":7.483083353,"11869":7.471872562,"11870":7.4604959677,"11871":7.4489830392,"11872":7.4373626177,"11873":7.4256628347,"11874":7.4139110356,"11875":7.4021337064,"11876":7.3903564069,"11877":7.3786037086,"11878":7.3668991392,"11879":7.3552651346,"11880":7.3437229973,"11881":7.3322928592,"11882":7.3209936526,"11883":7.3098430897,"11884":7.2988576483,"11885":7.2880525667,"11886":7.2774418454,"11887":7.2670382565,"11888":7.2568533607,"11889":7.2468975325,"11890":7.2371799925,"11891":7.2277088447,"11892":7.2184911215,"11893":7.2095328346,"11894":7.2008390319,"11895":7.1924138597,"11896":7.1842606297,"11897":7.1763818899,"11898":7.1687794989,"11899":7.1614547056,"11900":7.1544082297,"11901":7.1476403417,"11902":7.1411509421,"11903":7.1349396422,"11904":7.1290058412,"11905":7.1233488032,"11906":7.1179677306,"11907":7.1128618342,"11908":7.1080303985,"11909":7.1034728413,"11910":7.0991887671,"11911":7.0951780129,"11912":7.0914406868,"11913":7.0879771973,"11914":7.084788274,"11915":7.0818749785,"11916":7.0792387048,"11917":7.0768811702,"11918":7.0748043945,"11919":7.0730106691,"11920":7.071164369,"11921":7.0688196527,"11922":7.0658196793,"11923":7.0621596374,"11924":7.057841544,"11925":7.0528662448,"11926":7.0472350114,"11927":7.040949222,"11928":7.0340104248,"11929":7.0264203248,"11930":7.0181807863,"11931":7.0092938315,"11932":6.9997616408,"11933":6.9895865519,"11934":6.9787710595,"11935":6.9673178152,"11936":6.9552296264,"11937":6.942509456,"11938":6.9291604219,"11939":6.9151857961,"11940":6.9005890027,"11941":6.8853736176,"11942":6.8695433688,"11943":6.8531021366,"11944":6.8360539527,"11945":6.8184029994,"11946":6.8001536089,"11947":6.7813102627,"11948":6.7618775907,"11949":6.7418603705,"11950":6.7212635262,"11951":6.7000921281,"11952":6.6783513914,"11953":6.6560466759,"11954":6.6331834845,"11955":6.6097674624,"11956":6.5858043966,"11957":6.5613002142,"11958":6.5362609818,"11959":6.5106929042,"11960":6.4846023228,"11961":6.4579957142,"11962":6.4308796906,"11963":6.403260998,"11964":6.3751465153,"11965":6.3465432528,"11966":6.3174583508,"11967":6.2878990781,"11968":6.2578728305,"11969":6.2273871298,"11970":6.1964496212,"11971":6.1650680728,"11972":6.1332503734,"11973":6.101004531,"11974":6.0683386711,"11975":6.0352610351,"11976":6.0017799781,"11977":5.9679039677,"11978":5.9336415817,"11979":5.8990015061,"11980":5.8639925339,"11981":5.8286235627,"11982":5.7929035926,"11983":5.7568417242,"11984":5.7204471559,"11985":5.6837291825,"11986":5.6466971925,"11987":5.6093606662,"11988":5.5717291732,"11989":5.5338123704,"11990":5.495619999,"11991":5.4571618828,"11992":5.4184479253,"11993":5.3794881076,"11994":5.3402924859,"11995":5.3008711893,"11996":5.2612344167,"11997":5.2213924347,"11998":5.1813555746,"11999":5.1411342303,"12000":0.9859241955,"12001":0.9894925432,"12002":0.9934307701,"12003":0.9977417863,"12004":1.0024283198,"12005":1.0074929777,"12006":1.0129381244,"12007":1.0187632724,"12008":1.024964244,"12009":1.0315352409,"12010":1.0384699293,"12011":1.0457613171,"12012":1.0534015432,"12013":1.0613817205,"12014":1.0696917996,"12015":1.0783204605,"12016":1.0872550255,"12017":1.0964813954,"12018":1.1059840054,"12019":1.1157458007,"12020":1.1257482314,"12021":1.1359734718,"12022":1.1464067276,"12023":1.1570340828,"12024":1.1678396255,"12025":1.1788049509,"12026":1.1899094712,"12027":1.201130645,"12028":1.2124442013,"12029":1.2238243628,"12030":1.2352440662,"12031":1.2466752504,"12032":1.2580891778,"12033":1.2694565771,"12034":1.2807477282,"12035":1.2919326411,"12036":1.3029812687,"12037":1.3138637106,"12038":1.3245504104,"12039":1.3350123459,"12040":1.3452212121,"12041":1.3551519658,"12042":1.3647883725,"12043":1.374120707,"12044":1.3831399126,"12045":1.3918362188,"12046":1.4001996836,"12047":1.4082205251,"12048":1.4158893994,"12049":1.4231976497,"12050":1.4301375162,"12051":1.4367024452,"12052":1.4428877229,"12053":1.4486904497,"12054":1.4541091135,"12055":1.4591435136,"12056":1.4637948379,"12057":1.4680657019,"12058":1.4719601653,"12059":1.4754837294,"12060":1.4786433165,"12061":1.4814478906,"12062":1.4839131473,"12063":1.4860606732,"12064":1.4879130835,"12065":1.4894925285,"12066":1.4908209314,"12067":1.4919200575,"12068":1.4928115451,"12069":1.4935169263,"12070":1.4940576266,"12071":1.4944549716,"12072":1.4947308011,"12073":1.4949073963,"12074":1.4950068143,"12075":1.4950506484,"12076":1.4950600191,"12077":1.4950555445,"12078":1.4950573034,"12079":1.4950847995,"12080":1.4951569247,"12081":1.4952919223,"12082":1.4955021025,"12083":1.4957936298,"12084":1.4961715656,"12085":1.4966417704,"12086":1.4972106455,"12087":1.4978849273,"12088":1.4986715328,"12089":1.4995774168,"12090":1.5006094521,"12091":1.5017743271,"12092":1.5030776672,"12093":1.5045238457,"12094":1.5061166938,"12095":1.5078598321,"12096":1.5097566261,"12097":1.511810125,"12098":1.5140230189,"12099":1.5163976049,"12100":1.5189357631,"12101":1.52163894,"12102":1.5245032364,"12103":1.5275179844,"12104":1.5306705254,"12105":1.5339492274,"12106":1.5373436594,"12107":1.5408443521,"12108":1.5444426473,"12109":1.5481305658,"12110":1.5519006963,"12111":1.5557461038,"12112":1.5596631168,"12113":1.5636816369,"12114":1.5677830508,"12115":1.5719626153,"12116":1.5762096235,"12117":1.5805172573,"12118":1.5848775428,"12119":1.589283784,"12120":1.5937292724,"12121":1.5982078721,"12122":1.6027125357,"12123":1.6072346297,"12124":1.6117649658,"12125":1.6162949868,"12126":1.6208169198,"12127":1.6253236882,"12128":1.6298088471,"12129":1.6342665343,"12130":1.638691424,"12131":1.6430786894,"12132":1.6474238271,"12133":1.6517224815,"12134":1.6559705615,"12135":1.6601644059,"12136":1.664300801,"12137":1.6683769477,"12138":1.6723904373,"12139":1.6763392283,"12140":1.680221626,"12141":1.6840362631,"12142":1.6877823194,"12143":1.6914598638,"12144":1.6950695969,"12145":1.6986124093,"12146":1.7020892691,"12147":1.7055012377,"12148":1.7088494715,"12149":1.7121352213,"12150":1.7153598309,"12151":1.7185247329,"12152":1.7216314798,"12153":1.7246818188,"12154":1.7276776477,"12155":1.7306209169,"12156":1.7335135976,"12157":1.7363576791,"12158":1.7391551619,"12159":1.741908051,"12160":1.7446183471,"12161":1.7472880392,"12162":1.7499191787,"12163":1.7525141801,"12164":1.7550757209,"12165":1.7576064082,"12166":1.7601086804,"12167":1.7625848216,"12168":1.7650369653,"12169":1.7674670968,"12170":1.7698770551,"12171":1.7722685344,"12172":1.7746430963,"12173":1.7770022538,"12174":1.7793474581,"12175":1.7816800171,"12176":1.7840010722,"12177":1.7863116058,"12178":1.7886124469,"12179":1.7909042756,"12180":1.7931876293,"12181":1.7954629085,"12182":1.7977303822,"12183":1.7999901911,"12184":1.802242354,"12185":1.8044867797,"12186":1.806723277,"12187":1.8089515619,"12188":1.8111712668,"12189":1.8133819491,"12190":1.8155831006,"12191":1.8177741566,"12192":1.819954506,"12193":1.822123498,"12194":1.8242804522,"12195":1.8264246701,"12196":1.8285554462,"12197":1.8306720766,"12198":1.8327738683,"12199":1.8348601482,"12200":1.8369302708,"12201":1.8389836264,"12202":1.8410196483,"12203":1.8430376715,"12204":1.8450369166,"12205":1.8470166389,"12206":1.8489762036,"12207":1.8509150886,"12208":1.8528328813,"12209":1.8547292764,"12210":1.8566040744,"12211":1.8584571782,"12212":1.8602885906,"12213":1.8620983979,"12214":1.863886762,"12215":1.86565393,"12216":1.8674002377,"12217":1.8691261058,"12218":1.8708320337,"12219":1.8725185941,"12220":1.8741864266,"12221":1.8758362313,"12222":1.8774687625,"12223":1.8790845078,"12224":1.8806835345,"12225":1.8822657889,"12226":1.8838313366,"12227":1.8853803829,"12228":1.8869132456,"12229":1.8884303358,"12230":1.8899321391,"12231":1.8914191992,"12232":1.8928921026,"12233":1.8943513941,"12234":1.8957975147,"12235":1.8972308585,"12236":1.8986518327,"12237":1.9000608591,"12238":1.901458359,"12239":1.9028447419,"12240":1.9042203944,"12241":1.9055856713,"12242":1.9069408863,"12243":1.908286078,"12244":1.9096207677,"12245":1.9109441808,"12246":1.9122555437,"12247":1.9135541392,"12248":1.9148392797,"12249":1.916110292,"12250":1.917366504,"12251":1.9186072328,"12252":1.9198317761,"12253":1.9210393411,"12254":1.9222289446,"12255":1.9233994713,"12256":1.9245497828,"12257":1.925678741,"12258":1.9267851988,"12259":1.9278679961,"12260":1.9289259566,"12261":1.9299578868,"12262":1.9309625751,"12263":1.9319386468,"12264":1.9328842325,"12265":1.9337971224,"12266":1.9346751399,"12267":1.9355162389,"12268":1.9363184823,"12269":1.9370800325,"12270":1.9377991455,"12271":1.9384741656,"12272":1.9391035221,"12273":1.9396856869,"12274":1.9402190249,"12275":1.9407018374,"12276":1.9411325185,"12277":1.9415095992,"12278":1.9418317375,"12279":1.9420977145,"12280":1.9423064305,"12281":1.9424569032,"12282":1.9425482644,"12283":1.9425796406,"12284":1.9425492992,"12285":1.9424547861,"12286":1.9422937848,"12287":1.9420643678,"12288":1.9417649353,"12289":1.9413941835,"12290":1.9409510783,"12291":1.94043483,"12292":1.9398448715,"12293":1.9391808246,"12294":1.9384420579,"12295":1.9376276958,"12296":1.936737017,"12297":1.9357695694,"12298":1.9347251297,"12299":1.9336036781,"12300":1.9324053764,"12301":1.9311305483,"12302":1.9297796612,"12303":1.9283533102,"12304":1.9268527075,"12305":1.9252796869,"12306":1.923636205,"12307":1.9219241452,"12308":1.920145331,"12309":1.9183015356,"12310":1.9163944874,"12311":1.9144258765,"12312":1.9123973591,"12313":1.9103105623,"12314":1.9081673336,"12315":1.9059697812,"12316":1.9037200386,"12317":1.9014201499,"12318":1.8990720751,"12319":1.896677703,"12320":1.8942388612,"12321":1.8917202755,"12322":1.8890751359,"12323":1.8862805677,"12324":1.8833493526,"12325":1.8802883915,"12326":1.8771103553,"12327":1.8738206692,"12328":1.8704311239,"12329":1.8669466173,"12330":1.8633781127,"12331":1.8597301799,"12332":1.8560130985,"12333":1.8522312293,"12334":1.8483947143,"12335":1.8445088791,"12336":1.8405842211,"12337":1.836626056,"12338":1.8326440974,"12339":1.8286432643,"12340":1.8246325398,"12341":1.8206165224,"12342":1.8166035329,"12343":1.8125978877,"12344":1.8086074093,"12345":1.8046364734,"12346":1.8006926021,"12347":1.796779957,"12348":1.7929053931,"12349":1.7890726975,"12350":1.7852880704,"12351":1.7815549348,"12352":1.7778788588,"12353":1.7742629003,"12354":1.770712066,"12355":1.7672292072,"12356":1.7638188947,"12357":1.7604836413,"12358":1.7572273821,"12359":1.7540521903,"12360":1.7509613776,"12361":1.7479565871,"12362":1.7450405326,"12363":1.7422144352,"12364":1.7394802452,"12365":1.7368381015,"12366":1.734288644,"12367":1.7318313809,"12368":1.7294666234,"12369":1.7271937355,"12370":1.7250127443,"12371":1.7229228246,"12372":1.7209237045,"12373":1.71901435,"12374":1.7171941,"12375":1.7154613254,"12376":1.7138145846,"12377":1.712251864,"12378":1.7107715569,"12379":1.7093716001,"12380":1.7080502626,"12381":1.706805411,"12382":1.7056351904,"12383":1.7045373957,"12384":1.7035099465,"12385":1.7025499363,"12386":1.7016542588,"12387":1.7008195863,"12388":1.7000429233,"12389":1.6993211878,"12390":1.6986515654,"12391":1.6980311689,"12392":1.6974573408,"12393":1.6969273669,"12394":1.6964386922,"12395":1.6959883744,"12396":1.695573353,"12397":1.6951905588,"12398":1.6948371896,"12399":1.6945105229,"12400":1.6942080591,"12401":1.6939273766,"12402":1.6936662509,"12403":1.6934225359,"12404":1.6931942733,"12405":1.6929793018,"12406":1.6927755725,"12407":1.6925809765,"12408":1.6923937006,"12409":1.6922120201,"12410":1.6920344069,"12411":1.6918594443,"12412":1.6916858738,"12413":1.6915125476,"12414":1.6913384527,"12415":1.6911625489,"12416":1.690983777,"12417":1.6908011648,"12418":1.6906138955,"12419":1.6904212369,"12420":1.6902227545,"12421":1.6900177365,"12422":1.6898073175,"12423":1.6895945979,"12424":1.689382821,"12425":1.6891747319,"12426":1.6889726195,"12427":1.6887783758,"12428":1.6885935438,"12429":1.6884193549,"12430":1.6882567638,"12431":1.6881064785,"12432":1.6879689888,"12433":1.6878445913,"12434":1.6877334125,"12435":1.687635258,"12436":1.6875495816,"12437":1.6874756687,"12438":1.6874127564,"12439":1.6873600527,"12440":1.6873167393,"12441":1.687281976,"12442":1.6872549052,"12443":1.6872346545,"12444":1.68722034,"12445":1.6872112648,"12446":1.6872070127,"12447":1.687207258,"12448":1.6872116113,"12449":1.6872196031,"12450":1.6872306961,"12451":1.6872442934,"12452":1.6872597443,"12453":1.6872763504,"12454":1.6872933695,"12455":1.6873100532,"12456":1.6873256732,"12457":1.6873394908,"12458":1.6873507248,"12459":1.6873585473,"12460":1.6873620879,"12461":1.6873604363,"12462":1.6873526451,"12463":1.6873377315,"12464":1.68731468,"12465":1.6872825016,"12466":1.6872402946,"12467":1.6871871901,"12468":1.6871222791,"12469":1.6870446001,"12470":1.6869531477,"12471":1.6868468793,"12472":1.6867247209,"12473":1.686585574,"12474":1.6864283211,"12475":1.6862518738,"12476":1.6860552408,"12477":1.6858374925,"12478":1.6855976932,"12479":1.6853348911,"12480":1.6850481291,"12481":1.6847364546,"12482":1.6843989276,"12483":1.684034629,"12484":1.6836426683,"12485":1.6832222459,"12486":1.6827727844,"12487":1.6822938778,"12488":1.6817851596,"12489":1.6812462724,"12490":1.6806768825,"12491":1.6800766896,"12492":1.6794454346,"12493":1.678782906,"12494":1.6780889464,"12495":1.6773634936,"12496":1.6766067224,"12497":1.6758190068,"12498":1.675000776,"12499":1.6741524757,"12500":1.6732745772,"12501":1.6723675821,"12502":1.671432025,"12503":1.6704684743,"12504":1.6694775329,"12505":1.6684598574,"12506":1.6674163008,"12507":1.6663478864,"12508":1.6652556585,"12509":1.6641406356,"12510":1.6630038159,"12511":1.6618461777,"12512":1.6606686785,"12513":1.6594722531,"12514":1.6582578121,"12515":1.6570262435,"12516":1.6557785763,"12517":1.6545159668,"12518":1.6532395336,"12519":1.6519503038,"12520":1.6506492205,"12521":1.6493371446,"12522":1.6480148558,"12523":1.6466830538,"12524":1.6453423591,"12525":1.6439933132,"12526":1.6426364605,"12527":1.6412723516,"12528":1.639901466,"12529":1.6385241833,"12530":1.6371407881,"12531":1.6357514741,"12532":1.6343563485,"12533":1.6329554356,"12534":1.6315486811,"12535":1.6301359566,"12536":1.6287171398,"12537":1.627292131,"12538":1.6258607832,"12539":1.6244228713,"12540":1.6229780974,"12541":1.6215260998,"12542":1.6200664607,"12543":1.618598714,"12544":1.6171223531,"12545":1.6156368384,"12546":1.6141415808,"12547":1.6126359423,"12548":1.6111192666,"12549":1.6095909014,"12550":1.6080502062,"12551":1.606496558,"12552":1.6049293575,"12553":1.6033480351,"12554":1.6017520563,"12555":1.600140928,"12556":1.5985143179,"12557":1.5968721144,"12558":1.5952143182,"12559":1.5935409575,"12560":1.5918520814,"12561":1.5901477709,"12562":1.5884281475,"12563":1.5866933791,"12564":1.5849436867,"12565":1.5831793488,"12566":1.5814007394,"12567":1.5796083554,"12568":1.5778027847,"12569":1.5759846725,"12570":1.5741547163,"12571":1.5723136681,"12572":1.5704623343,"12573":1.5686015752,"12574":1.5667323033,"12575":1.5648554808,"12576":1.5629721546,"12577":1.5610834918,"12578":1.5591907366,"12579":1.5572951546,"12580":1.5553980168,"12581":1.5535005972,"12582":1.5516041683,"12583":1.5497099962,"12584":1.5478193346,"12585":1.5459334195,"12586":1.5440534591,"12587":1.5421806238,"12588":1.5403160419,"12589":1.5384607987,"12590":1.536615931,"12591":1.5347824204,"12592":1.5329611867,"12593":1.5311530821,"12594":1.5293588846,"12595":1.5275792934,"12596":1.5258149193,"12597":1.5240662714,"12598":1.5223337568,"12599":1.520617688,"12600":1.5189182818,"12601":1.517235657,"12602":1.5155698317,"12603":1.5139207226,"12604":1.5122881438,"12605":1.5106718071,"12606":1.509071314,"12607":1.5074861263,"12608":1.505915577,"12609":1.5043589055,"12610":1.5028152697,"12611":1.5012837477,"12612":1.4997633406,"12613":1.4982529769,"12614":1.4967515166,"12615":1.4952577564,"12616":1.4937704276,"12617":1.4922881473,"12618":1.4908094337,"12619":1.4893327692,"12620":1.4878566234,"12621":1.4863794577,"12622":1.4848997306,"12623":1.4834159048,"12624":1.4819264534,"12625":1.4804298676,"12626":1.4789246645,"12627":1.4774094246,"12628":1.4758827971,"12629":1.4743434788,"12630":1.4727902134,"12631":1.4712218,"12632":1.469637102,"12633":1.4680350548,"12634":1.4664146731,"12635":1.4647750585,"12636":1.4631154058,"12637":1.4614350658,"12638":1.4597335531,"12639":1.4580104964,"12640":1.4562656222,"12641":1.4544987611,"12642":1.4527098532,"12643":1.4508989518,"12644":1.4490662268,"12645":1.4472119668,"12646":1.4453365805,"12647":1.4434406565,"12648":1.4415249721,"12649":1.4395904336,"12650":1.4376380464,"12651":1.4356689122,"12652":1.4336842278,"12653":1.4316852826,"12654":1.4296734547,"12655":1.4276502063,"12656":1.4256170787,"12657":1.4235757417,"12658":1.4215280027,"12659":1.4194757457,"12660":1.4174208887,"12661":1.4153653736,"12662":1.4133111607,"12663":1.4112602211,"12664":1.4092145295,"12665":1.4071760567,"12666":1.4051467606,"12667":1.4031286103,"12668":1.4011235922,"12669":1.3991336708,"12670":1.3971607556,"12671":1.3952066899,"12672":1.3932732453,"12673":1.3913621149,"12674":1.3894749075,"12675":1.3876131415,"12676":1.3857782394,"12677":1.3839714996,"12678":1.3821940753,"12679":1.3804469931,"12680":1.3787311715,"12681":1.3770474216,"12682":1.3753964422,"12683":1.3737788165,"12684":1.3721950088,"12685":1.3706453627,"12686":1.3691300997,"12687":1.36764928,"12688":1.3662027634,"12689":1.3647902474,"12690":1.3634113184,"12691":1.3620654628,"12692":1.3607520657,"12693":1.359470411,"12694":1.3582196822,"12695":1.3569989649,"12696":1.355807249,"12697":1.3546433622,"12698":1.3535058696,"12699":1.3523931478,"12700":1.3513035136,"12701":1.3502352576,"12702":1.3491866406,"12703":1.3481558948,"12704":1.3471350383,"12705":1.3460663183,"12706":1.3449620317,"12707":1.3438144078,"12708":1.3426256602,"12709":1.3413929656,"12710":1.3401160339,"12711":1.3387933644,"12712":1.33742413,"12713":1.336007242,"12714":1.3345418264,"12715":1.333026994,"12716":1.3314619646,"12717":1.3298459875,"12718":1.3281782794,"12719":1.3264580445,"12720":1.32468459,"12721":1.3228573574,"12722":1.3209759217,"12723":1.3190399922,"12724":1.3170494146,"12725":1.3150041722,"12726":1.3129043873,"12727":1.3107503233,"12728":1.3085423903,"12729":1.3062811451,"12730":1.3039672853,"12731":1.3016016476,"12732":1.2991852068,"12733":1.2967190744,"12734":1.2942044963,"12735":1.2916428501,"12736":1.2890356415,"12737":1.2863845013,"12738":1.2836912131,"12739":1.2809577058,"12740":1.2781860162,"12741":1.2753782723,"12742":1.2725366886,"12743":1.2696635591,"12744":1.2667612506,"12745":1.2638321947,"12746":1.2608788796,"12747":1.2579038418,"12748":1.2549096267,"12749":1.2518987787,"12750":1.2488738614,"12751":1.2458374592,"12752":1.2427921671,"12753":1.2397405801,"12754":1.2366852833,"12755":1.2336288423,"12756":1.2305737937,"12757":1.2275226362,"12758":1.2244777301,"12759":1.2214412752,"12760":1.2184153925,"12761":1.2154021608,"12762":1.2124036088,"12763":1.2094217053,"12764":1.2064583505,"12765":1.2035153684,"12766":1.2005945001,"12767":1.1976973981,"12768":1.194825483,"12769":1.1919799001,"12770":1.189161649,"12771":1.1863716658,"12772":1.1836108253,"12773":1.1808799321,"12774":1.1781797152,"12775":1.1755108234,"12776":1.1728738214,"12777":1.1702691877,"12778":1.1676972591,"12779":1.1651582041,"12780":1.1626520763,"12781":1.1601788579,"12782":1.1577384653,"12783":1.1553307488,"12784":1.1529554923,"12785":1.150612415,"12786":1.1483011734,"12787":1.1460213645,"12788":1.1437725264,"12789":1.1415541417,"12790":1.1393656434,"12791":1.1372064227,"12792":1.1350758344,"12793":1.1329732029,"12794":1.1308978284,"12795":1.1288489936,"12796":1.1268259704,"12797":1.124828027,"12798":1.1228544287,"12799":1.1209044382,"12800":1.1189773302,"12801":1.117072408,"12802":1.1151890125,"12803":1.1133265297,"12804":1.1114843975,"12805":1.1096621123,"12806":1.1078592361,"12807":1.1060754022,"12808":1.1043103404,"12809":1.1025639099,"12810":1.1008360858,"12811":1.0991269291,"12812":1.0974365832,"12813":1.0957652786,"12814":1.0941133358,"12815":1.0924811675,"12816":1.0908692788,"12817":1.0892782674,"12818":1.0877088854,"12819":1.0861621817,"12820":1.0846394319,"12821":1.0831419715,"12822":1.0816711482,"12823":1.0802283263,"12824":1.0788148831,"12825":1.0774322049,"12826":1.07608168,"12827":1.0747646916,"12828":1.0734826155,"12829":1.0722368391,"12830":1.0710287409,"12831":1.0698596491,"12832":1.06873082,"12833":1.0676434276,"12834":1.0665985505,"12835":1.0655971599,"12836":1.0646401067,"12837":1.0637281091,"12838":1.0628617587,"12839":1.0620416362,"12840":1.06126828,"12841":1.0605420477,"12842":1.0598630691,"12843":1.0592312482,"12844":1.0586462604,"12845":1.0581075527,"12846":1.0576143426,"12847":1.0571656202,"12848":1.0567601509,"12849":1.0563964976,"12850":1.0560730253,"12851":1.0557878894,"12852":1.055539039,"12853":1.0553242273,"12854":1.0551410235,"12855":1.0549868253,"12856":1.0548588736,"12857":1.0547542672,"12858":1.0546699793,"12859":1.0546029344,"12860":1.0545500279,"12861":1.0545080878,"12862":1.0544738715,"12863":1.054444088,"12864":1.0544154203,"12865":1.0543845468,"12866":1.0543481626,"12867":1.0543030008,"12868":1.0542458532,"12869":1.0541736205,"12870":1.0540833363,"12871":1.0539721567,"12872":1.0538373629,"12873":1.0536763794,"12874":1.0534867904,"12875":1.0532663557,"12876":1.0530130253,"12877":1.0527249525,"12878":1.0524005052,"12879":1.0520383981,"12880":1.0516377357,"12881":1.0511979025,"12882":1.050718494,"12883":1.0501993174,"12884":1.0496404,"12885":1.0490419951,"12886":1.0484045844,"12887":1.0477288792,"12888":1.0470158196,"12889":1.0462666465,"12890":1.0454829324,"12891":1.0446664997,"12892":1.0438193503,"12893":1.0429436486,"12894":1.0420417118,"12895":1.0411159983,"12896":1.0401690925,"12897":1.0392036884,"12898":1.038222571,"12899":1.0372287484,"12900":1.0362255384,"12901":1.0352163928,"12902":1.0342047158,"12903":1.033193813,"12904":1.0321868756,"12905":1.0311869592,"12906":1.030196961,"12907":1.0292195957,"12908":1.0282573714,"12909":1.0273125499,"12910":1.0263871074,"12911":1.0254827235,"12912":1.0246007776,"12913":1.0237423293,"12914":1.0229080963,"12915":1.0220984345,"12916":1.0213133201,"12917":1.0205523349,"12918":1.0198146547,"12919":1.0190988983,"12920":1.018428112,"12921":1.0178326569,"12922":1.0173204902,"12923":1.0168877718,"12924":1.0165299394,"12925":1.0162423194,"12926":1.0160199854,"12927":1.0158577866,"12928":1.0157503337,"12929":1.0156920162,"12930":1.0156770014,"12931":1.0156992613,"12932":1.0157525775,"12933":1.0158305769,"12934":1.0159267439,"12935":1.0160344635,"12936":1.0161470376,"12937":1.0162577353,"12938":1.0163598112,"12939":1.0164465964,"12940":1.0165116482,"12941":1.0165487706,"12942":1.0165518975,"12943":1.016515115,"12944":1.0164326891,"12945":1.0162991326,"12946":1.0161092238,"12947":1.0158580713,"12948":1.015541128,"12949":1.0151542596,"12950":1.0146937948,"12951":1.014156578,"12952":1.0135399281,"12953":1.0128416822,"12954":1.0120601933,"12955":1.011194384,"12956":1.0102437364,"12957":1.0092083402,"12958":1.0080888769,"12959":1.0068866917,"12960":1.0056046837,"12961":1.00424729,"12962":1.0028195677,"12963":1.0013269515,"12964":0.9997752804,"12965":0.9981708571,"12966":0.9965204334,"12967":0.9948312577,"12968":0.9931110526,"12969":0.9913680525,"12970":0.9896110299,"12971":0.9878493271,"12972":0.9860927646,"12973":0.9843516436,"12974":0.9826367052,"12975":0.9809591496,"12976":0.9793305893,"12977":0.9777630618,"12978":0.9762689777,"12979":0.9748611269,"12980":0.9735524729,"12981":0.9723561312,"12982":0.9712854521,"12983":0.970354088,"12984":0.9695759245,"12985":0.9689650645,"12986":0.9685357515,"12987":0.9683023506,"12988":0.968279268,"12989":0.9684809287,"12990":0.9689217037,"12991":0.9696158884,"12992":0.9705776016,"12993":0.9718207512,"12994":0.9733589402,"12995":0.9752054402,"12996":0.9773730947,"12997":0.9798742929,"12998":0.9827208703,"12999":0.9859240854,"13000":5.1411340687,"13001":5.1007386951,"13002":5.0601798033,"13003":5.0194679593,"13004":4.978613779,"13005":4.9376279266,"13006":4.8965211109,"13007":4.8553040838,"13008":4.8139876362,"13009":4.7725825957,"13010":4.7310998241,"13011":4.6895502143,"13012":4.647944688,"13013":4.6062941928,"13014":4.5646096997,"13015":4.5229022001,"13016":4.4811827037,"13017":4.4394622349,"13018":4.3977518309,"13019":4.3560625381,"13020":4.3144054105,"13021":4.27279155,"13022":4.2312321523,"13023":4.1897384682,"13024":4.1483217488,"13025":4.1069932293,"13026":4.0657641285,"13027":4.0246456455,"13028":3.9836489576,"13029":3.9427852176,"13030":3.9020655512,"13031":3.8615010564,"13032":3.8211028025,"13033":3.7808818268,"13034":3.7408491275,"13035":3.7010156588,"13036":3.6613923288,"13037":3.6219899985,"13038":3.5828194807,"13039":3.543891539,"13040":3.5052168863,"13041":3.4668062192,"13042":3.428670299,"13043":3.3908199221,"13044":3.3532658389,"13045":3.3160187283,"13046":3.2790891984,"13047":3.2424877851,"13048":3.2062249501,"13049":3.1703110792,"13050":3.1347564809,"13051":3.0995713864,"13052":3.0647659547,"13053":3.0303502697,"13054":2.9963343323,"13055":2.962728057,"13056":2.9295412707,"13057":2.8967837108,"13058":2.864465024,"13059":2.8325947641,"13060":2.8011823913,"13061":2.7702372771,"13062":2.7397687549,"13063":2.7097861148,"13064":2.6802985553,"13065":2.6513151667,"13066":2.6228449314,"13067":2.5948967223,"13068":2.5674793012,"13069":2.5406013177,"13070":2.514271308,"13071":2.4884976934,"13072":2.4632887859,"13073":2.4386527869,"13074":2.4145977804,"13075":2.3911317306,"13076":2.3682624804,"13077":2.3459977511,"13078":2.3243451405,"13079":2.3033121227,"13080":2.2829060469,"13081":2.2631341363,"13082":2.2440034497,"13083":2.2255208757,"13084":2.2076931642,"13085":2.1905269387,"13086":2.174028695,"13087":2.1582048005,"13088":2.1430614932,"13089":2.128604881,"13090":2.1148409408,"13091":2.1017755176,"13092":2.0894143186,"13093":2.0777629109,"13094":2.0668267254,"13095":2.056611058,"13096":2.0471210695,"13097":2.0383617846,"13098":2.0303380913,"13099":2.0230547399,"13100":2.0165163429,"13101":2.0107273741,"13102":2.0056921085,"13103":2.0014145986,"13104":1.9978987204,"13105":1.9951482065,"13106":1.9931666486,"13107":1.9919574961,"13108":1.9915240551,"13109":1.9918694875,"13110":1.9929968095,"13111":1.9949088914,"13112":1.9975247302,"13113":2.0000373169,"13114":2.0026287834,"13115":2.0052080917,"13116":2.0078207877,"13117":2.0104441244,"13118":2.0130895006,"13119":2.0157512416,"13120":2.0184322088,"13121":2.021130995,"13122":2.0238482875,"13123":2.0265836342,"13124":2.0293370742,"13125":2.0321083723,"13126":2.0348974277,"13127":2.0377040726,"13128":2.0405281724,"13129":2.0433695757,"13130":2.0462281397,"13131":2.0491037171,"13132":2.0519961582,"13133":2.0549053016,"13134":2.0578309796,"13135":2.060773023,"13136":2.0637312632,"13137":2.0667055316,"13138":2.0696956599,"13139":2.07270148,"13140":2.0757228243,"13141":2.0787595252,"13142":2.0818114063,"13143":2.0848782677,"13144":2.0879598916,"13145":2.0910560573,"13146":2.0941665452,"13147":2.0972911361,"13148":2.1004296115,"13149":2.1035817534,"13150":2.1067473444,"13151":2.1099261679,"13152":2.1131180064,"13153":2.1163226383,"13154":2.1195398391,"13155":2.1227693841,"13156":2.1260110491,"13157":2.129264611,"13158":2.1325298469,"13159":2.1358065348,"13160":2.1390944534,"13161":2.142393382,"13162":2.145703102,"13163":2.1490234032,"13164":2.152354083,"13165":2.1556949409,"13166":2.1590457769,"13167":2.1624063915,"13168":2.1657765861,"13169":2.1691561622,"13170":2.1725449223,"13171":2.1759426693,"13172":2.1793492067,"13173":2.1827643406,"13174":2.1861878794,"13175":2.1896196323,"13176":2.1930594092,"13177":2.1965070202,"13178":2.199962276,"13179":2.2034249877,"13180":2.2068949667,"13181":2.210372025,"13182":2.2138559756,"13183":2.2173466511,"13184":2.2208439058,"13185":2.224347599,"13186":2.22785759,"13187":2.2313737381,"13188":2.2348959029,"13189":2.2384239442,"13190":2.241957722,"13191":2.2454970965,"13192":2.249041928,"13193":2.2525920823,"13194":2.2561474317,"13195":2.2597078502,"13196":2.2632732122,"13197":2.266843392,"13198":2.2704182641,"13199":2.2739977031,"13200":2.2775815839,"13201":2.2811697814,"13202":2.2847621707,"13203":2.2883586431,"13204":2.2919591108,"13205":2.2955634935,"13206":2.2991717112,"13207":2.302783684,"13208":2.3063993322,"13209":2.3100185758,"13210":2.3136413353,"13211":2.3172675311,"13212":2.3208970835,"13213":2.3245299164,"13214":2.3281659579,"13215":2.3318051379,"13216":2.3354473868,"13217":2.3390926353,"13218":2.3427408139,"13219":2.3463918535,"13220":2.350045685,"13221":2.3537022397,"13222":2.3573614488,"13223":2.3610232543,"13224":2.3646876144,"13225":2.3683544962,"13226":2.3720238678,"13227":2.3756956973,"13228":2.3793699529,"13229":2.3830466026,"13230":2.386725615,"13231":2.3904069585,"13232":2.3940906015,"13233":2.3977765148,"13234":2.401464673,"13235":2.4051550532,"13236":2.4088476326,"13237":2.4125423888,"13238":2.4162392992,"13239":2.4199383415,"13240":2.4236394933,"13241":2.4273427324,"13242":2.4310480367,"13243":2.4347553858,"13244":2.4384647633,"13245":2.4421761556,"13246":2.4458895492,"13247":2.4496049307,"13248":2.4533222866,"13249":2.4570416035,"13250":2.4607628678,"13251":2.4644860658,"13252":2.4682111839,"13253":2.471938209,"13254":2.4756671289,"13255":2.4793979326,"13256":2.4831306091,"13257":2.4868651472,"13258":2.4906015356,"13259":2.4943397629,"13260":2.4980798177,"13261":2.5018216881,"13262":2.5055653624,"13263":2.5093108278,"13264":2.5130580681,"13265":2.5168070645,"13266":2.5205577974,"13267":2.5243102471,"13268":2.5280643937,"13269":2.5318202171,"13270":2.5355776968,"13271":2.5393368124,"13272":2.5430975431,"13273":2.5468598678,"13274":2.550623764,"13275":2.5543892076,"13276":2.5581561746,"13277":2.5619246402,"13278":2.56569458,"13279":2.5694659691,"13280":2.5732387826,"13281":2.5770129952,"13282":2.5807885817,"13283":2.5845655155,"13284":2.5883437593,"13285":2.5921232654,"13286":2.5959039834,"13287":2.5996858631,"13288":2.603468854,"13289":2.6072529056,"13290":2.6110379673,"13291":2.6148239885,"13292":2.6186109185,"13293":2.6223987062,"13294":2.6261872962,"13295":2.6299766277,"13296":2.6337666389,"13297":2.6375572679,"13298":2.641348453,"13299":2.6451401324,"13300":2.6489322443,"13301":2.6527247272,"13302":2.6565175195,"13303":2.6603105597,"13304":2.6641037769,"13305":2.6678970899,"13306":2.6716904149,"13307":2.6754836693,"13308":2.6792767695,"13309":2.6830696326,"13310":2.6868621761,"13311":2.690654318,"13312":2.6944459763,"13313":2.69823707,"13314":2.7020275156,"13315":2.7058172271,"13316":2.7096061175,"13317":2.7133941007,"13318":2.7171810908,"13319":2.7209670027,"13320":2.7247517518,"13321":2.7285352235,"13322":2.732317366,"13323":2.7360980962,"13324":2.7398773148,"13325":2.7436549295,"13326":2.747430856,"13327":2.7512050035,"13328":2.7549772886,"13329":2.7587476232,"13330":2.7625159259,"13331":2.7662821113,"13332":2.7700461001,"13333":2.7738078091,"13334":2.7775671641,"13335":2.7813240918,"13336":2.7850785269,"13337":2.7888304013,"13338":2.7925796523,"13339":2.7963262143,"13340":2.8000700265,"13341":2.8038110258,"13342":2.8075491533,"13343":2.8112843484,"13344":2.815016558,"13345":2.8187457345,"13346":2.8224718385,"13347":2.8261948291,"13348":2.8299146691,"13349":2.8336313197,"13350":2.8373447455,"13351":2.8410549093,"13352":2.8447617772,"13353":2.848465314,"13354":2.8521654888,"13355":2.8558622736,"13356":2.8595556452,"13357":2.8632455799,"13358":2.8669320563,"13359":2.8706150519,"13360":2.8742945462,"13361":2.8779705179,"13362":2.8816429474,"13363":2.8853118144,"13364":2.8889771027,"13365":2.8926388026,"13366":2.8962969106,"13367":2.8999514238,"13368":2.9036023399,"13369":2.907249656,"13370":2.9108933697,"13371":2.9145334784,"13372":2.9181699798,"13373":2.9218028711,"13374":2.9254321513,"13375":2.929057823,"13376":2.9326798926,"13377":2.9362983666,"13378":2.9399132514,"13379":2.9435245532,"13380":2.947132278,"13381":2.9507364314,"13382":2.9543370188,"13383":2.9579340452,"13384":2.9615275167,"13385":2.9651174431,"13386":2.9687038384,"13387":2.9722867168,"13388":2.9758660921,"13389":2.9794419773,"13390":2.9830143855,"13391":2.9865833287,"13392":2.9901488191,"13393":2.993710868,"13394":2.9972694869,"13395":3.0008246896,"13396":3.0043764928,"13397":3.0079249129,"13398":3.0114699662,"13399":3.0150116681,"13400":3.0185500339,"13401":3.0220850784,"13402":3.0256168158,"13403":3.0291452601,"13404":3.0326704249,"13405":3.0361923256,"13406":3.0397109791,"13407":3.0432264024,"13408":3.0467386125,"13409":3.0502476254,"13410":3.0537534573,"13411":3.0572561239,"13412":3.0607556406,"13413":3.0642520225,"13414":3.0677452847,"13415":3.0712354431,"13416":3.074722515,"13417":3.0782065179,"13418":3.0816874132,"13419":3.0851652854,"13420":3.088639556,"13421":3.0921109944,"13422":3.095573848,"13423":3.0990145378,"13424":3.1024179092,"13425":3.1057696484,"13426":3.1090563047,"13427":3.1122652718,"13428":3.1153847749,"13429":3.1184038552,"13430":3.1213123529,"13431":3.1241008892,"13432":3.1267608472,"13433":3.1292843518,"13434":3.1316642497,"13435":3.1338940875,"13436":3.1359680907,"13437":3.1378811411,"13438":3.1396287551,"13439":3.1412070612,"13440":3.1426127777,"13441":3.1438431901,"13442":3.1448961293,"13443":3.1457699492,"13444":3.1464635045,"13445":3.1469761288,"13446":3.1473076117,"13447":3.1474581789,"13448":3.1474284722,"13449":3.147219529,"13450":3.1468327623,"13451":3.1462699409,"13452":3.1455331703,"13453":3.1446248735,"13454":3.1435477728,"13455":3.1423048709,"13456":3.1408994324,"13457":3.1393349674,"13458":3.1376152144,"13459":3.1357441239,"13460":3.1337258424,"13461":3.1315646956,"13462":3.1292651735,"13463":3.1268319141,"13464":3.1242696889,"13465":3.1215833874,"13466":3.1187780015,"13467":3.1158586119,"13468":3.1128303747,"13469":3.1096985078,"13470":3.1064682774,"13471":3.1031449848,"13472":3.0997339536,"13473":3.096240517,"13474":3.0926700055,"13475":3.0890277347,"13476":3.0853189928,"13477":3.08154903,"13478":3.0777230479,"13479":3.0738461898,"13480":3.0699235303,"13481":3.0659600656,"13482":3.0619607052,"13483":3.0579302627,"13484":3.0538734481,"13485":3.0497948602,"13486":3.0456989792,"13487":3.0415901608,"13488":3.0374726307,"13489":3.0333504801,"13490":3.0292276613,"13491":3.0251079839,"13492":3.020995112,"13493":3.016892562,"13494":3.0128037005,"13495":3.008731744,"13496":3.0046797573,"13497":3.000650655,"13498":2.9966472018,"13499":2.9926720154,"13500":2.9887275682,"13501":2.9848161901,"13502":2.9809400724,"13503":2.9771012709,"13504":2.9733017111,"13505":2.9695431925,"13506":2.9658273939,"13507":2.9621558787,"13508":2.9585301013,"13509":2.9549514128,"13510":2.9514210675,"13511":2.9479402292,"13512":2.9445099778,"13513":2.9411313159,"13514":2.9378051753,"13515":2.9345324233,"13516":2.9313138694,"13517":2.928150271,"13518":2.9250423401,"13519":2.9219907486,"13520":2.9189961342,"13521":2.9160591052,"13522":2.9131802457,"13523":2.9103601199,"13524":2.9075992759,"13525":2.9048982497,"13526":2.9022575683,"13527":2.8996777522,"13528":2.8971593178,"13529":2.8947027789,"13530":2.892308648,"13531":2.889977437,"13532":2.8877096571,"13533":2.8855058192,"13534":2.8833664327,"13535":2.8812920043,"13536":2.8792830369,"13537":2.8773400276,"13538":2.8754634648,"13539":2.873653826,"13540":2.871911574,"13541":2.8702371541,"13542":2.8686309902,"13543":2.8670934808,"13544":2.8656249954,"13545":2.8642258699,"13546":2.8628964025,"13547":2.8616368492,"13548":2.8604474196,"13549":2.8593282724,"13550":2.8582795115,"13551":2.8573011814,"13552":2.8563932636,"13553":2.8555556727,"13554":2.8547882526,"13555":2.8540907738,"13556":2.8534629304,"13557":2.8529043381,"13558":2.8524145315,"13559":2.8519929623,"13560":2.8516389976,"13561":2.8513519192,"13562":2.8511309235,"13563":2.8509751212,"13564":2.8508835386,"13565":2.8508551183,"13566":2.8508887216,"13567":2.8509831306,"13568":2.8511370517,"13569":2.8513491179,"13570":2.851617894,"13571":2.8519418802,"13572":2.8523195177,"13573":2.852749194,"13574":2.8532292488,"13575":2.8537579807,"13576":2.8543336536,"13577":2.8549545047,"13578":2.8556187513,"13579":2.8563245987,"13580":2.8570702478,"13581":2.8578539035,"13582":2.8586737819,"13583":2.8595281194,"13584":2.8604151803,"13585":2.861333265,"13586":2.8622807181,"13587":2.8632559362,"13588":2.8642573754,"13589":2.8652835586,"13590":2.8663330823,"13591":2.8674046231,"13592":2.8684969438,"13593":2.869608899,"13594":2.8707394399,"13595":2.8718876193,"13596":2.8730525947,"13597":2.8742336324,"13598":2.8754301091,"13599":2.8766415146,"13600":2.8778674521,"13601":2.8791076387,"13602":2.8803619053,"13603":2.8816301952,"13604":2.8829125625,"13605":2.884209169,"13606":2.8855202812,"13607":2.8868462662,"13608":2.8881875868,"13609":2.889544796,"13610":2.8909185311,"13611":2.8923095067,"13612":2.8937185075,"13613":2.8951463806,"13614":2.8965940269,"13615":2.8980623923,"13616":2.8995524589,"13617":2.9010652348,"13618":2.9026017448,"13619":2.9041630199,"13620":2.905750087,"13621":2.9073639591,"13622":2.9090056238,"13623":2.9106760337,"13624":2.9123760954,"13625":2.9141066596,"13626":2.9158685106,"13627":2.9176623565,"13628":2.9194888197,"13629":2.9213484278,"13630":2.9232416043,"13631":2.9251686609,"13632":2.927129789,"13633":2.9291250531,"13634":2.9311543839,"13635":2.9332175723,"13636":2.9353142644,"13637":2.9374439566,"13638":2.9396059927,"13639":2.9417995602,"13640":2.9440236889,"13641":2.9462772497,"13642":2.9485589544,"13643":2.9508673562,"13644":2.9532008516,"13645":2.9555576825,"13646":2.9579359402,"13647":2.9603335693,"13648":2.9627483728,"13649":2.965178019,"13650":2.9676200475,"13651":2.9700718777,"13652":2.972530817,"13653":2.9749940702,"13654":2.9774587497,"13655":2.9799218858,"13656":2.9823804383,"13657":2.9848313078,"13658":2.9872713482,"13659":2.9896973794,"13660":2.9921062005,"13661":2.9944946031,"13662":2.9968593851,"13663":2.9991973641,"13664":3.0015053911,"13665":3.0037803645,"13666":3.0060192437,"13667":3.0082190623,"13668":3.010376942,"13669":3.0124901052,"13670":3.0145558873,"13671":3.016571749,"13672":3.0185352881,"13673":3.02044425,"13674":3.0222965386,"13675":3.0240902262,"13676":3.0258235618,"13677":3.0274949801,"13678":3.0291031085,"13679":3.0306467739,"13680":3.0321250082,"13681":3.0335370535,"13682":3.0348823656,"13683":3.0361606171,"13684":3.0373716996,"13685":3.0385157242,"13686":3.0395930222,"13687":3.0406041438,"13688":3.0415498563,"13689":3.0424311417,"13690":3.0432491925,"13691":3.0440054076,"13692":3.0447013862,"13693":3.0453389222,"13694":3.0459199967,"13695":3.0464467704,"13696":3.0469215746,"13697":3.0473469024,"13698":3.0477253985,"13699":3.0480598488,"13700":3.0483531693,"13701":3.0486083944,"13702":3.0488286649,"13703":3.0490172157,"13704":3.0493056451,"13705":3.0508587335,"13706":3.0534040214,"13707":3.057081398,"13708":3.0618237822,"13709":3.067666787,"13710":3.0745938922,"13711":3.0826138607,"13712":3.0917220314,"13713":3.101919673,"13714":3.1132043049,"13715":3.1255745339,"13716":3.1390276317,"13717":3.1535607403,"13718":3.1691702624,"13719":3.1858521587,"13720":3.2036017906,"13721":3.2224139889,"13722":3.2422830098,"13723":3.2632025456,"13724":3.285165708,"13725":3.3081650248,"13726":3.3321924296,"13727":3.3572392548,"13728":3.3832962229,"13729":3.4103534392,"13730":3.4384003839,"13731":3.4674259051,"13732":3.4974182121,"13733":3.5283648691,"13734":3.5602527899,"13735":3.593068233,"13736":3.6267967981,"13737":3.6614234228,"13738":3.696932381,"13739":3.7333072821,"13740":3.7705310714,"13741":3.8085860327,"13742":3.8474537907,"13743":3.8871153162,"13744":3.9275509318,"13745":3.9687403202,"13746":4.0106625323,"13747":4.0532959991,"13748":4.096618543,"13749":4.1406073923,"13750":4.1852391962,"13751":4.2304900429,"13752":4.2763354774,"13753":4.3227505222,"13754":4.3697096989,"13755":4.4171870511,"13756":4.4651561692,"13757":4.5135902158,"13758":4.5624619525,"13759":4.6117437676,"13760":4.6614077056,"13761":4.7114254978,"13762":4.7617685933,"13763":4.8124081902,"13764":4.8633152684,"13765":4.9144606222,"13766":4.9658148936,"13767":5.0173486057,"13768":5.0690321954,"13769":5.1208360473,"13770":5.1727305271,"13771":5.2246860155,"13772":5.2766729412,"13773":5.3286618134,"13774":5.3806232536,"13775":5.4325280269,"13776":5.4843470727,"13777":5.536051534,"13778":5.5876127857,"13779":5.6390024624,"13780":5.6901924845,"13781":5.7411550836,"13782":5.7918628267,"13783":5.8422886383,"13784":5.8924058216,"13785":5.9421880786,"13786":5.9916095277,"13787":6.0406447208,"13788":6.0892686584,"13789":6.1374568032,"13790":6.1851850924,"13791":6.2324299488,"13792":6.2791682897,"13793":6.3253775354,"13794":6.3710356154,"13795":6.4161209743,"13796":6.4606125758,"13797":6.5044899062,"13798":6.5477329761,"13799":6.5903223218,"13800":6.6322390063,"13801":6.6734646197,"13802":6.7139812788,"13803":6.7537716269,"13804":6.7928188334,"13805":6.8311065928,"13806":6.8686191251,"13807":6.9053411755,"13808":6.9412580156,"13809":6.9763554449,"13810":7.0106197935,"13811":7.0440379253,"13812":7.0765972435,"13813":7.1082856965,"13814":7.1390917859,"13815":7.1690045762,"13816":7.198013706,"13817":7.2261094013,"13818":7.2532824908,"13819":7.2795244231,"13820":7.3048272861,"13821":7.3291838271,"13822":7.352587476,"13823":7.3750323696,"13824":7.3965133779,"13825":7.4170261324,"13826":7.4365670547,"13827":7.4551333874,"13828":7.4727232254,"13829":7.4893355483,"13830":7.5049702528,"13831":7.519628185,"13832":7.5333111726,"13833":7.5460220566,"13834":7.5577647219,"13835":7.5685441266,"13836":7.5783663297,"13837":7.5872385162,"13838":7.59516902,"13839":7.6021673455,"13840":7.6082441841,"13841":7.6134114251,"13842":7.6176821647,"13843":7.6210707093,"13844":7.6235925755,"13845":7.6252644846,"13846":7.6261043511,"13847":7.6261312673,"13848":7.625365481,"13849":7.6238283683,"13850":7.6215424008,"13851":7.6185311055,"13852":7.6148190203,"13853":7.6104316434,"13854":7.6053953768,"13855":7.5997374657,"13856":7.5934859312,"13857":7.5866694997,"13858":7.5793175271,"13859":7.571459921,"13860":7.5631270579,"13861":7.5543496948,"13862":7.5451588788,"13863":7.535585856,"13864":7.5256619778,"13865":7.5154186072,"13866":7.5048870237,"13867":7.494098329,"13868":7.483083353,"13869":7.471872562,"13870":7.4604959677,"13871":7.4489830392,"13872":7.4373626177,"13873":7.4256628347,"13874":7.4139110356,"13875":7.4021337064,"13876":7.3903564069,"13877":7.3786037086,"13878":7.3668991392,"13879":7.3552651346,"13880":7.3437229973,"13881":7.3322928592,"13882":7.3209936526,"13883":7.3098430897,"13884":7.2988576483,"13885":7.2880525667,"13886":7.2774418454,"13887":7.2670382565,"13888":7.2568533607,"13889":7.2468975325,"13890":7.2371799925,"13891":7.2277088447,"13892":7.2184911215,"13893":7.2095328346,"13894":7.2008390319,"13895":7.1924138597,"13896":7.1842606297,"13897":7.1763818899,"13898":7.1687794989,"13899":7.1614547056,"13900":7.1544082297,"13901":7.1476403417,"13902":7.1411509421,"13903":7.1349396422,"13904":7.1290058412,"13905":7.1233488032,"13906":7.1179677306,"13907":7.1128618342,"13908":7.1080303985,"13909":7.1034728413,"13910":7.0991887671,"13911":7.0951780129,"13912":7.0914406868,"13913":7.0879771973,"13914":7.084788274,"13915":7.0818749785,"13916":7.0792387048,"13917":7.0768811702,"13918":7.0748043945,"13919":7.0730106691,"13920":7.071164369,"13921":7.0688196527,"13922":7.0658196793,"13923":7.0621596374,"13924":7.057841544,"13925":7.0528662448,"13926":7.0472350114,"13927":7.040949222,"13928":7.0340104248,"13929":7.0264203248,"13930":7.0181807863,"13931":7.0092938315,"13932":6.9997616408,"13933":6.9895865519,"13934":6.9787710595,"13935":6.9673178152,"13936":6.9552296264,"13937":6.942509456,"13938":6.9291604219,"13939":6.9151857961,"13940":6.9005890027,"13941":6.8853736176,"13942":6.8695433688,"13943":6.8531021366,"13944":6.8360539527,"13945":6.8184029994,"13946":6.8001536089,"13947":6.7813102627,"13948":6.7618775907,"13949":6.7418603705,"13950":6.7212635262,"13951":6.7000921281,"13952":6.6783513914,"13953":6.6560466759,"13954":6.6331834845,"13955":6.6097674624,"13956":6.5858043966,"13957":6.5613002142,"13958":6.5362609818,"13959":6.5106929042,"13960":6.4846023228,"13961":6.4579957142,"13962":6.4308796906,"13963":6.403260998,"13964":6.3751465153,"13965":6.3465432528,"13966":6.3174583508,"13967":6.2878990781,"13968":6.2578728305,"13969":6.2273871298,"13970":6.1964496212,"13971":6.1650680728,"13972":6.1332503734,"13973":6.101004531,"13974":6.0683386711,"13975":6.0352610351,"13976":6.0017799781,"13977":5.9679039677,"13978":5.9336415817,"13979":5.8990015061,"13980":5.8639925339,"13981":5.8286235627,"13982":5.7929035926,"13983":5.7568417242,"13984":5.7204471559,"13985":5.6837291825,"13986":5.6466971925,"13987":5.6093606662,"13988":5.5717291732,"13989":5.5338123704,"13990":5.495619999,"13991":5.4571618828,"13992":5.4184479253,"13993":5.3794881076,"13994":5.3402924859,"13995":5.3008711893,"13996":5.2612344167,"13997":5.2213924347,"13998":5.1813555746,"13999":5.1411342303,"14000":24.0503247536,"14001":24.0534313638,"14002":24.0566313906,"14003":24.0599176888,"14004":24.0632819965,"14005":24.0667162624,"14006":24.0702123821,"14007":24.073762254,"14008":24.0773577701,"14009":24.0809908211,"14010":24.0846532968,"14011":24.0883370892,"14012":24.0920340938,"14013":24.095736212,"14014":24.0994353526,"14015":24.103123434,"14016":24.1067923864,"14017":24.1104341531,"14018":24.1140406933,"14019":24.1176039836,"14020":24.1211160199,"14021":24.1250683168,"14022":24.130131957,"14023":24.1364245829,"14024":24.1439083037,"14025":24.1525763715,"14026":24.1624158718,"14027":24.1734151835,"14028":24.1855624891,"14029":24.198846075,"14030":24.2132542734,"14031":24.228791368,"14032":24.245474978,"14033":24.2632998561,"14034":24.2822531385,"14035":24.3023235646,"14036":24.3234996358,"14037":24.345769985,"14038":24.3691233027,"14039":24.3935483531,"14040":24.4190339711,"14041":24.4461237169,"14042":24.4762469939,"14043":24.5097361842,"14044":24.5465031966,"14045":24.5865441086,"14046":24.6298383026,"14047":24.6763686274,"14048":24.726117369,"14049":24.7790670574,"14050":24.8352003061,"14051":24.8945308527,"14052":24.9571659158,"14053":25.0231206683,"14054":25.092371054,"14055":25.164900998,"14056":25.240692971,"14057":25.3197298768,"14058":25.4019946758,"14059":25.4874704609,"14060":25.5761404437,"14061":25.6681533134,"14062":25.7647404662,"14063":25.8662309552,"14064":25.9725330721,"14065":26.0836393815,"14066":26.1995257783,"14067":26.320171664,"14068":26.4455559148,"14069":26.5756576879,"14070":26.7104562614,"14071":26.8499361077,"14072":26.9942396287,"14073":27.1433941449,"14074":27.2973692456,"14075":27.456146241,"14076":27.6197042814,"14077":27.7880231315,"14078":27.9610826164,"14079":28.1388627324,"14080":28.3213436257,"14081":28.5085055961,"14082":28.6997085129,"14083":28.8947086417,"14084":29.093514608,"14085":29.2961048523,"14086":29.5024640213,"14087":29.712575695,"14088":29.9264238401,"14089":30.1439925202,"14090":30.3652659535,"14091":30.5902285017,"14092":30.8187705294,"14093":31.0508319189,"14094":31.2863985064,"14095":31.5254555481,"14096":31.7679885897,"14097":32.013983292,"14098":32.2634254663,"14099":32.5163010674,"14100":32.7725961948,"14101":33.0322970926,"14102":33.2938551223,"14103":33.5563096866,"14104":33.8195998472,"14105":34.0837313618,"14106":34.3486968012,"14107":34.6144915166,"14108":34.8811104489,"14109":35.1485487665,"14110":35.4168017383,"14111":35.6858647599,"14112":35.9553767055,"14113":36.2255955067,"14114":36.4963473476,"14115":36.7677051013,"14116":37.0396319011,"14117":37.3121430415,"14118":37.5852282885,"14119":37.8588900722,"14120":38.1331245211,"14121":38.4079309188,"14122":38.6820513088,"14123":38.9541860054,"14124":39.224138693,"14125":39.4919566686,"14126":39.7576384535,"14127":40.0211923233,"14128":40.2826245651,"14129":40.5419418464,"14130":40.7991507307,"14131":41.0542577801,"14132":41.3071136391,"14133":41.557512887,"14134":41.8054228034,"14135":42.0508591966,"14136":42.2938281468,"14137":42.5343376499,"14138":42.7723952908,"14139":43.008008708,"14140":43.2411855011,"14141":43.4719332494,"14142":43.6998788683,"14143":43.9243312285,"14144":44.1451482579,"14145":44.3623718074,"14146":44.5760069245,"14147":44.7860659714,"14148":44.9925598067,"14149":45.1954995481,"14150":45.3948962206,"14151":45.5907608265,"14152":45.7830481052,"14153":45.9716229674,"14154":46.1564614976,"14155":46.337582377,"14156":46.5149957297,"14157":46.6887133473,"14158":46.8587466449,"14159":47.0251070705,"14160":47.1878060227,"14161":47.3468548676,"14162":47.5022827407,"14163":47.654172358,"14164":47.8025534763,"14165":47.9474332242,"14166":48.0888232124,"14167":48.2267341157,"14168":48.3611767554,"14169":48.4921618834,"14170":48.6197002254,"14171":48.7438024727,"14172":48.8644819091,"14173":48.9817689751,"14174":49.0956797474,"14175":49.2062235864,"14176":49.3134111561,"14177":49.4172528212,"14178":49.5177589674,"14179":49.6149399379,"14180":49.7088060459,"14181":49.7993675725,"14182":49.8866525448,"14183":49.9712453539,"14184":50.0533240199,"14185":50.1328624247,"14186":50.2098752231,"14187":50.2843688915,"14188":50.3563515118,"14189":50.4258308163,"14190":50.4928145784,"14191":50.5573105345,"14192":50.6193263999,"14193":50.6790298432,"14194":50.7364863692,"14195":50.7916964465,"14196":50.8446683401,"14197":50.8954087312,"14198":50.9439245917,"14199":50.9902228102,"14200":51.0343102662,"14201":51.0761938157,"14202":51.1158802941,"14203":51.1539121776,"14204":51.1905510172,"14205":51.2257977093,"14206":51.2596572568,"14207":51.292133826,"14208":51.3232317345,"14209":51.3529552541,"14210":51.3813086497,"14211":51.4082961719,"14212":51.4339220584,"14213":51.4582918845,"14214":51.4814723974,"14215":51.5034709414,"14216":51.5242904541,"14217":51.5439347401,"14218":51.562407417,"14219":51.5797121266,"14220":51.595852492,"14221":51.6108321268,"14222":51.624654633,"14223":51.6376831872,"14224":51.6502079679,"14225":51.6622629307,"14226":51.6738430627,"14227":51.6849511341,"14228":51.6955883542,"14229":51.7057562388,"14230":51.7154562367,"14231":51.7246898051,"14232":51.7334583936,"14233":51.7418368376,"14234":51.7499024528,"14235":51.7576680409,"14236":51.7651321725,"14237":51.7722962589,"14238":51.7791611405,"14239":51.785727768,"14240":51.7919970667,"14241":51.7979699635,"14242":51.8036473813,"14243":51.8091045037,"14244":51.8144432108,"14245":51.8196831017,"14246":51.8248206455,"14247":51.8298569334,"14248":51.8347921316,"14249":51.8396265901,"14250":51.8443606209,"14251":51.8489945426,"14252":51.8535286712,"14253":51.8579836712,"14254":51.8623972074,"14255":51.86677759,"14256":51.8711232944,"14257":51.8754347617,"14258":51.8797120395,"14259":51.883955254,"14260":51.8881645152,"14261":51.8923399362,"14262":51.8964816291,"14263":51.9005681184,"14264":51.9045434531,"14265":51.9083943804,"14266":51.9121240149,"14267":51.9157321988,"14268":51.9192194269,"14269":51.9225860625,"14270":51.9258324939,"14271":51.928959103,"14272":51.931966272,"14273":51.9348482912,"14274":51.9375811099,"14275":51.9401587779,"14276":51.9425830721,"14277":51.9448542229,"14278":51.9469727685,"14279":51.9489391838,"14280":51.9507539546,"14281":51.9524175632,"14282":51.9539304906,"14283":51.9552592982,"14284":51.9561484823,"14285":51.9565276533,"14286":51.9564127539,"14287":51.9558024655,"14288":51.9546989141,"14289":51.9531035317,"14290":51.9510178831,"14291":51.9484435014,"14292":51.94538192,"14293":51.9418308354,"14294":51.9376680278,"14295":51.9328588456,"14296":51.9274126214,"14297":51.9213298887,"14298":51.9146129327,"14299":51.907263681,"14300":51.8992841253,"14301":51.8906762373,"14302":51.8814419853,"14303":51.8715833309,"14304":51.8609068713,"14305":51.8493439309,"14306":51.8369052202,"14307":51.8235918934,"14308":51.8094070053,"14309":51.7943532202,"14310":51.7784332701,"14311":51.7616498631,"14312":51.744005702,"14313":51.7255034799,"14314":51.7060582369,"14315":51.6856309656,"14316":51.6642252952,"14317":51.6418441707,"14318":51.6184906624,"14319":51.5941678036,"14320":51.5688786235,"14321":51.542626163,"14322":51.5154134076,"14323":51.4872433567,"14324":51.4580556573,"14325":51.427814203,"14326":51.396519996,"14327":51.3641767808,"14328":51.3307877373,"14329":51.2963561486,"14330":51.2608852607,"14331":51.2243783173,"14332":51.1868385467,"14333":51.1482691703,"14334":51.1087320604,"14335":51.068277173,"14336":51.0269126488,"14337":50.9846402647,"14338":50.9414630561,"14339":50.8973837974,"14340":50.852405302,"14341":50.8065303659,"14342":50.7597617757,"14343":50.7121023105,"14344":50.6636507118,"14345":50.6145089631,"14346":50.5646946724,"14347":50.5142068358,"14348":50.4630481596,"14349":50.4112206015,"14350":50.3587262588,"14351":50.3055671942,"14352":50.2517454674,"14353":50.1972631317,"14354":50.1421655159,"14355":50.0865135036,"14356":50.0303200143,"14357":49.9735844823,"14358":49.9163090298,"14359":49.8584952357,"14360":49.8001447801,"14361":49.7412593174,"14362":49.6818404995,"14363":49.6218899732,"14364":49.5614870416,"14365":49.5007758885,"14366":49.4397886602,"14367":49.3785199673,"14368":49.3169719193,"14369":49.2551451239,"14370":49.1930404854,"14371":49.1306588461,"14372":49.0680010571,"14373":49.005067965,"14374":48.9418961556,"14375":48.8785792923,"14376":48.8151403425,"14377":48.7515751722,"14378":48.6878850627,"14379":48.624070212,"14380":48.5601310332,"14381":48.4960678956,"14382":48.4318811757,"14383":48.3675712477,"14384":48.3031686827,"14385":48.2387949855,"14386":48.1744819094,"14387":48.1102228919,"14388":48.0460190301,"14389":47.9818698911,"14390":47.9177753489,"14391":47.8537352173,"14392":47.7897493229,"14393":47.7258174911,"14394":47.6619508474,"14395":47.5982344938,"14396":47.5346918667,"14397":47.4713176436,"14398":47.4081122525,"14399":47.3450749745,"14400":47.2822053221,"14401":47.219502764,"14402":47.1569667798,"14403":47.0945968495,"14404":47.0323944635,"14405":46.970423981,"14406":46.9087038513,"14407":46.8472294639,"14408":46.7860008206,"14409":46.7250170041,"14410":46.6642772844,"14411":46.6037808968,"14412":46.5435270866,"14413":46.4835151003,"14414":46.4237441869,"14415":46.3642568318,"14416":46.3050679197,"14417":46.2461747682,"14418":46.1875768518,"14419":46.1292731348,"14420":46.0712631568,"14421":46.01354545,"14422":45.9561233546,"14423":45.8990059606,"14424":45.8422034908,"14425":45.7857255776,"14426":45.7295811573,"14427":45.6737784886,"14428":45.618325193,"14429":45.5632282681,"14430":45.508494102,"14431":45.4541284883,"14432":45.4001366422,"14433":45.3465232166,"14434":45.2932923192,"14435":45.2404521196,"14436":45.1880085194,"14437":45.1359642379,"14438":45.0843213205,"14439":45.0330813955,"14440":44.9822456443,"14441":44.9318148284,"14442":44.8817893056,"14443":44.8321690475,"14444":44.7829536569,"14445":44.7341117073,"14446":44.6856176639,"14447":44.637467533,"14448":44.5896603421,"14449":44.542194168,"14450":44.4950669493,"14451":44.4482763424,"14452":44.4018197687,"14453":44.3556944221,"14454":44.3098972856,"14455":44.2644079218,"14456":44.2192051261,"14457":44.1742826626,"14458":44.1296374765,"14459":44.0852657005,"14460":44.0411634683,"14461":43.9973267664,"14462":43.9537514786,"14463":43.9104333906,"14464":43.8673682034,"14465":43.8245331879,"14466":43.7818989527,"14467":43.7394563913,"14468":43.6972020719,"14469":43.6551313878,"14470":43.6132399387,"14471":43.5715232665,"14472":43.5299769194,"14473":43.4885964502,"14474":43.4473774278,"14475":43.4063021947,"14476":43.3653420554,"14477":43.32448747,"14478":43.2837353505,"14479":43.2430813851,"14480":43.2025215806,"14481":43.1620519626,"14482":43.1216686433,"14483":43.081367815,"14484":43.0411457585,"14485":43.0009918033,"14486":42.9608841272,"14487":42.9208149424,"14488":42.8807819082,"14489":42.840781725,"14490":42.8008114187,"14491":42.7608680866,"14492":42.7209489504,"14493":42.6810513476,"14494":42.641172734,"14495":42.6013060027,"14496":42.5614300676,"14497":42.521537874,"14498":42.4816284232,"14499":42.4416996441,"14500":42.4017498154,"14501":42.3617772784,"14502":42.3217804915,"14503":42.2817580151,"14504":42.2417085106,"14505":42.2016299012,"14506":42.1615147361,"14507":42.1213602095,"14508":42.0811657246,"14509":42.0409303385,"14510":42.0006532672,"14511":41.9603337788,"14512":41.9199712086,"14513":41.8795649504,"14514":41.839114452,"14515":41.7986190164,"14516":41.7580719182,"14517":41.7174709062,"14518":41.6768159915,"14519":41.6361067704,"14520":41.5953429546,"14521":41.5545242601,"14522":41.5136504257,"14523":41.4727212047,"14524":41.431736363,"14525":41.3906956764,"14526":41.3496027068,"14527":41.3084586091,"14528":41.267263006,"14529":41.2260157076,"14530":41.1847164886,"14531":41.1433651326,"14532":41.1019614223,"14533":41.060505142,"14534":41.0189960776,"14535":40.9774340176,"14536":40.9358232612,"14537":40.894165749,"14538":40.8524612358,"14539":40.8107095197,"14540":40.7689104033,"14541":40.7270637041,"14542":40.6851692557,"14543":40.6432269107,"14544":40.6012365438,"14545":40.5591980546,"14546":40.5171105571,"14547":40.4749735083,"14548":40.432786876,"14549":40.3905507011,"14550":40.3482650575,"14551":40.305930064,"14552":40.2635458852,"14553":40.2211127345,"14554":40.1786308764,"14555":40.1361006292,"14556":40.093535858,"14557":40.0509477466,"14558":40.0083379243,"14559":39.9657066182,"14560":39.9230544084,"14561":39.8803818778,"14562":39.8376896822,"14563":39.7949785357,"14564":39.7522492133,"14565":39.7095025488,"14566":39.6667433758,"14567":39.623976717,"14568":39.581204183,"14569":39.5384266709,"14570":39.4956452778,"14571":39.4528611143,"14572":39.4100753375,"14573":39.367289139,"14574":39.3245037421,"14575":39.2817203969,"14576":39.2389447912,"14577":39.1961842167,"14578":39.1534410831,"14579":39.1107164294,"14580":39.0680115689,"14581":39.0253277536,"14582":38.9826662336,"14583":38.9400282388,"14584":38.8974149748,"14585":38.854827617,"14586":38.8122687114,"14587":38.769741938,"14588":38.7272489,"14589":38.6847904686,"14590":38.6423675935,"14591":38.5999811355,"14592":38.5576318949,"14593":38.5153206007,"14594":38.4730479087,"14595":38.4308143981,"14596":38.3886220798,"14597":38.3464752954,"14598":38.3043753164,"14599":38.262322185,"14600":38.220316088,"14601":38.1783570819,"14602":38.1364451488,"14603":38.094580186,"14604":38.0527620102,"14605":38.0109903589,"14606":37.9692650429,"14607":37.9275862487,"14608":37.8859536506,"14609":37.8443666687,"14610":37.8028247007,"14611":37.7613270816,"14612":37.7198730984,"14613":37.6784619939,"14614":37.6370929738,"14615":37.5957652131,"14616":37.554477964,"14617":37.513231125,"14618":37.4720240324,"14619":37.4308557629,"14620":37.3897254502,"14621":37.3486322312,"14622":37.3075752654,"14623":37.2665537408,"14624":37.2255668816,"14625":37.1846139556,"14626":37.1436942542,"14627":37.1028062661,"14628":37.0619491739,"14629":37.0211225471,"14630":36.9803259702,"14631":36.939559124,"14632":36.8988217762,"14633":36.8581137891,"14634":36.8174351239,"14635":36.7767858447,"14636":36.7361661222,"14637":36.6955746468,"14638":36.6550112356,"14639":36.6144764652,"14640":36.5739709492,"14641":36.5334954318,"14642":36.493050769,"14643":36.4526379313,"14644":36.4122580017,"14645":36.3719121735,"14646":36.3316017473,"14647":36.2913270346,"14648":36.2510890196,"14649":36.2108893136,"14650":36.1707296088,"14651":36.1306116827,"14652":36.0905373894,"14653":36.0505086529,"14654":36.0105274592,"14655":35.9705958488,"14656":35.9307159078,"14657":35.8908833766,"14658":35.8510964675,"14659":35.8113571516,"14660":35.7716676856,"14661":35.7320302691,"14662":35.692447102,"14663":35.6529203602,"14664":35.6134521891,"14665":35.5740446925,"14666":35.534699923,"14667":35.4954233622,"14668":35.4562197127,"14669":35.4170911103,"14670":35.378039224,"14671":35.3390657006,"14672":35.3001720661,"14673":35.2613597362,"14674":35.2226300049,"14675":35.1839840384,"14676":35.1454228693,"14677":35.1069465586,"14678":35.0685549944,"14679":35.030248647,"14680":34.9920279949,"14681":34.9538933285,"14682":34.9158447864,"14683":34.8778823458,"14684":34.8400058232,"14685":34.8022148738,"14686":34.7645089921,"14687":34.7268879578,"14688":34.6893515527,"14689":34.6518989104,"14690":34.6145288738,"14691":34.5772401651,"14692":34.5400313573,"14693":34.5029008858,"14694":34.4658470525,"14695":34.4288680326,"14696":34.3919618811,"14697":34.3551273706,"14698":34.3183638618,"14699":34.2816694206,"14700":34.2450416227,"14701":34.2084780438,"14702":34.1719761729,"14703":34.1355334407,"14704":34.099052809,"14705":34.0616770997,"14706":34.0236094797,"14707":33.9847490038,"14708":33.9451470621,"14709":33.9047796285,"14710":33.8636612177,"14711":33.8217876767,"14712":33.7791647461,"14713":33.7357937856,"14714":33.6916789095,"14715":33.6468234196,"14716":33.6012315901,"14717":33.5549074851,"14718":33.5078548179,"14719":33.4600784822,"14720":33.4115841685,"14721":33.3623778658,"14722":33.3124659833,"14723":33.2618553222,"14724":33.2105530909,"14725":33.1585669056,"14726":33.1059047963,"14727":33.0525750443,"14728":32.99858526,"14729":32.9439443928,"14730":32.8886622486,"14731":32.8327489843,"14732":32.7762152126,"14733":32.7190719851,"14734":32.6613307991,"14735":32.6030035991,"14736":32.5441027778,"14737":32.4846410659,"14738":32.4246281552,"14739":32.3640767332,"14740":32.3030012136,"14741":32.2414161983,"14742":32.1793367801,"14743":32.116778477,"14744":32.0537572388,"14745":31.9902894369,"14746":31.9263918578,"14747":31.8620816931,"14748":31.7973729614,"14749":31.732282343,"14750":31.6668283391,"14751":31.6010296337,"14752":31.5349052881,"14753":31.4684746828,"14754":31.4017575092,"14755":31.33477375,"14756":31.2675436604,"14757":31.2000877485,"14758":31.1324173131,"14759":31.0645488153,"14760":30.9965034989,"14761":30.9283027008,"14762":30.8599679149,"14763":30.7915207511,"14764":30.7229829144,"14765":30.6543761798,"14766":30.5857223681,"14767":30.5170433205,"14768":30.4483507022,"14769":30.3796600455,"14770":30.3109927909,"14771":30.2423707422,"14772":30.1738155132,"14773":30.1053486101,"14774":30.0369913867,"14775":29.9687650269,"14776":29.9006905211,"14777":29.8327886458,"14778":29.7650761597,"14779":29.6975703355,"14780":29.6302908689,"14781":29.5632575751,"14782":29.4964898802,"14783":29.430006904,"14784":29.3638274256,"14785":29.2979698741,"14786":29.2324523153,"14787":29.1672924407,"14788":29.1025064572,"14789":29.0381101411,"14790":28.9741198348,"14791":28.9105516863,"14792":28.8474213875,"14793":28.7847442206,"14794":28.7225350445,"14795":28.6608082938,"14796":28.5995779767,"14797":28.5388576742,"14798":28.4786569502,"14799":28.4189836508,"14800":28.3598491722,"14801":28.3012656027,"14802":28.243244383,"14803":28.1857965757,"14804":28.1289328136,"14805":28.0726633121,"14806":28.0169978682,"14807":27.9619458625,"14808":27.9075165645,"14809":27.8537190831,"14810":27.8005616699,"14811":27.748052011,"14812":27.6961974019,"14813":27.6450047081,"14814":27.5944803683,"14815":27.5446303869,"14816":27.4954603274,"14817":27.4469753038,"14818":27.3991811954,"14819":27.3520853659,"14820":27.3056922744,"14821":27.2600049551,"14822":27.2150261154,"14823":27.1707578973,"14824":27.1272019037,"14825":27.0843591709,"14826":27.0422301506,"14827":27.0008146886,"14828":26.960112657,"14829":26.9201252452,"14830":26.8808510313,"14831":26.8422870729,"14832":26.8044298789,"14833":26.7672751903,"14834":26.730817999,"14835":26.6950525213,"14836":26.6599721809,"14837":26.6255695928,"14838":26.5918383665,"14839":26.5587831754,"14840":26.5263979274,"14841":26.4946710523,"14842":26.4635910499,"14843":26.4331453794,"14844":26.4033206847,"14845":26.3741027566,"14846":26.3454765523,"14847":26.3174262078,"14848":26.2899351887,"14849":26.2629902915,"14850":26.2365745579,"14851":26.2106688006,"14852":26.1852534476,"14853":26.1603082197,"14854":26.1358122465,"14855":26.1117440986,"14856":26.0880818412,"14857":26.0648030876,"14858":26.0418850561,"14859":26.0193242593,"14860":25.9971044027,"14861":25.975201006,"14862":25.9535904072,"14863":25.9322486792,"14864":25.9111519284,"14865":25.8902763184,"14866":25.8695981487,"14867":25.8490939217,"14868":25.8287404119,"14869":25.8085184089,"14870":25.788407179,"14871":25.7683846681,"14872":25.7484293802,"14873":25.7285204014,"14874":25.7086374618,"14875":25.688760986,"14876":25.6688721401,"14877":25.6489528753,"14878":25.6289859663,"14879":25.6089669951,"14880":25.5888878515,"14881":25.5687343319,"14882":25.5484926417,"14883":25.5281500305,"14884":25.5076946745,"14885":25.4871157027,"14886":25.4664031877,"14887":25.4455481368,"14888":25.4245424764,"14889":25.4033849165,"14890":25.3820738442,"14891":25.3606042941,"14892":25.3389714685,"14893":25.3171714632,"14894":25.2952010697,"14895":25.2730577582,"14896":25.2507396197,"14897":25.2282453138,"14898":25.2055740113,"14899":25.182741363,"14900":25.1597639535,"14901":25.1366446099,"14902":25.1133833232,"14903":25.0899809172,"14904":25.0664382451,"14905":25.042756282,"14906":25.0189360403,"14907":24.9949785242,"14908":24.9708846803,"14909":24.946655634,"14910":24.9222924709,"14911":24.8977957938,"14912":24.8731659172,"14913":24.8484029508,"14914":24.8235067643,"14915":24.7984769841,"14916":24.7733129926,"14917":24.7480139367,"14918":24.7225787428,"14919":24.6970075534,"14920":24.6715504028,"14921":24.6465356806,"14922":24.6220773894,"14923":24.5981773978,"14924":24.5748325077,"14925":24.5520403987,"14926":24.5297984436,"14927":24.5081039445,"14928":24.4869540869,"14929":24.4663457385,"14930":24.4462753229,"14931":24.4267395728,"14932":24.4077352739,"14933":24.3892590741,"14934":24.3713075221,"14935":24.353877061,"14936":24.3369640298,"14937":24.3205646643,"14938":24.3046750979,"14939":24.2892887936,"14940":24.2743913797,"14941":24.2599760189,"14942":24.2460390336,"14943":24.2325759957,"14944":24.2195825091,"14945":24.2070540542,"14946":24.1949860202,"14947":24.1833736994,"14948":24.1722122895,"14949":24.1614967732,"14950":24.1512212476,"14951":24.1413803782,"14952":24.1319690474,"14953":24.1229819856,"14954":24.1144138462,"14955":24.1062591914,"14956":24.0985124968,"14957":24.091168151,"14958":24.0842204577,"14959":24.0776633365,"14960":24.0714812538,"14961":24.0656654371,"14962":24.06021047,"14963":24.0551101687,"14964":24.0503584072,"14965":24.0459489545,"14966":24.0418755083,"14967":24.03813169,"14968":24.0347110471,"14969":24.0316070542,"14970":24.0288124901,"14971":24.0263204626,"14972":24.0241242644,"14973":24.0222170909,"14974":24.0205920777,"14975":24.019242295,"14976":24.0181607506,"14977":24.017340391,"14978":24.0167741033,"14979":24.0164547162,"14980":24.0163751976,"14981":24.0165283576,"14982":24.0169068584,"14983":24.017503312,"14984":24.0183102807,"14985":24.0193202786,"14986":24.020525774,"14987":24.0219191903,"14988":24.0234929087,"14989":24.0252392692,"14990":24.0271486175,"14991":24.0292120113,"14992":24.0314216189,"14993":24.0337696601,"14994":24.0362483062,"14995":24.0388497027,"14996":24.0415659665,"14997":24.0443891892,"14998":24.0473114389,"14999":24.0503247618,"15000":5.1411340687,"15001":5.1007386951,"15002":5.0601798033,"15003":5.0194679593,"15004":4.978613779,"15005":4.9376279266,"15006":4.8965211109,"15007":4.8553040838,"15008":4.8139876362,"15009":4.7725825957,"15010":4.7310998241,"15011":4.6895502143,"15012":4.647944688,"15013":4.6062941928,"15014":4.5646096997,"15015":4.5229022001,"15016":4.4811827037,"15017":4.4394622349,"15018":4.3977518309,"15019":4.3560625381,"15020":4.3144054105,"15021":4.27279155,"15022":4.2312321523,"15023":4.1897384682,"15024":4.1483217488,"15025":4.1069932293,"15026":4.0657641285,"15027":4.0246456455,"15028":3.9836489576,"15029":3.9427852176,"15030":3.9020655512,"15031":3.8615010564,"15032":3.8211028025,"15033":3.7808818268,"15034":3.7408491275,"15035":3.7010156588,"15036":3.6613923288,"15037":3.6219899985,"15038":3.5828194807,"15039":3.543891539,"15040":3.5052168863,"15041":3.4668062192,"15042":3.428670299,"15043":3.3908199221,"15044":3.3532658389,"15045":3.3160187283,"15046":3.2790891984,"15047":3.2424877851,"15048":3.2062249501,"15049":3.1703110792,"15050":3.1347564809,"15051":3.0995713864,"15052":3.0647659547,"15053":3.0303502697,"15054":2.9963343323,"15055":2.962728057,"15056":2.9295412707,"15057":2.8967837108,"15058":2.864465024,"15059":2.8325947641,"15060":2.8011823913,"15061":2.7702372771,"15062":2.7397687549,"15063":2.7097861148,"15064":2.6802985553,"15065":2.6513151667,"15066":2.6228449314,"15067":2.5948967223,"15068":2.5674793012,"15069":2.5406013177,"15070":2.514271308,"15071":2.4884976934,"15072":2.4632887859,"15073":2.4386527869,"15074":2.4145977804,"15075":2.3911317306,"15076":2.3682624804,"15077":2.3459977511,"15078":2.3243451405,"15079":2.3033121227,"15080":2.2829060469,"15081":2.2631341363,"15082":2.2440034497,"15083":2.2255208757,"15084":2.2076931642,"15085":2.1905269387,"15086":2.174028695,"15087":2.1582048005,"15088":2.1430614932,"15089":2.128604881,"15090":2.1148409408,"15091":2.1017755176,"15092":2.0894143186,"15093":2.0777629109,"15094":2.0668267254,"15095":2.056611058,"15096":2.0471210695,"15097":2.0383617846,"15098":2.0303380913,"15099":2.0230547399,"15100":2.0165163429,"15101":2.0107273741,"15102":2.0056921085,"15103":2.0014145986,"15104":1.9978987204,"15105":1.9951482065,"15106":1.9931666486,"15107":1.9919574961,"15108":1.9915240551,"15109":1.9918694875,"15110":1.9929968095,"15111":1.9949088914,"15112":1.9975247302,"15113":2.0000373169,"15114":2.0026287834,"15115":2.0052080917,"15116":2.0078207877,"15117":2.0104441244,"15118":2.0130895006,"15119":2.0157512416,"15120":2.0184322088,"15121":2.021130995,"15122":2.0238482875,"15123":2.0265836342,"15124":2.0293370742,"15125":2.0321083723,"15126":2.0348974277,"15127":2.0377040726,"15128":2.0405281724,"15129":2.0433695757,"15130":2.0462281397,"15131":2.0491037171,"15132":2.0519961582,"15133":2.0549053016,"15134":2.0578309796,"15135":2.060773023,"15136":2.0637312632,"15137":2.0667055316,"15138":2.0696956599,"15139":2.07270148,"15140":2.0757228243,"15141":2.0787595252,"15142":2.0818114063,"15143":2.0848782677,"15144":2.0879598916,"15145":2.0910560573,"15146":2.0941665452,"15147":2.0972911361,"15148":2.1004296115,"15149":2.1035817534,"15150":2.1067473444,"15151":2.1099261679,"15152":2.1131180064,"15153":2.1163226383,"15154":2.1195398391,"15155":2.1227693841,"15156":2.1260110491,"15157":2.129264611,"15158":2.1325298469,"15159":2.1358065348,"15160":2.1390944534,"15161":2.142393382,"15162":2.145703102,"15163":2.1490234032,"15164":2.152354083,"15165":2.1556949409,"15166":2.1590457769,"15167":2.1624063915,"15168":2.1657765861,"15169":2.1691561622,"15170":2.1725449223,"15171":2.1759426693,"15172":2.1793492067,"15173":2.1827643406,"15174":2.1861878794,"15175":2.1896196323,"15176":2.1930594092,"15177":2.1965070202,"15178":2.199962276,"15179":2.2034249877,"15180":2.2068949667,"15181":2.210372025,"15182":2.2138559756,"15183":2.2173466511,"15184":2.2208439058,"15185":2.224347599,"15186":2.22785759,"15187":2.2313737381,"15188":2.2348959029,"15189":2.2384239442,"15190":2.241957722,"15191":2.2454970965,"15192":2.249041928,"15193":2.2525920823,"15194":2.2561474317,"15195":2.2597078502,"15196":2.2632732122,"15197":2.266843392,"15198":2.2704182641,"15199":2.2739977031,"15200":2.2775815839,"15201":2.2811697814,"15202":2.2847621707,"15203":2.2883586431,"15204":2.2919591108,"15205":2.2955634935,"15206":2.2991717112,"15207":2.302783684,"15208":2.3063993322,"15209":2.3100185758,"15210":2.3136413353,"15211":2.3172675311,"15212":2.3208970835,"15213":2.3245299164,"15214":2.3281659579,"15215":2.3318051379,"15216":2.3354473868,"15217":2.3390926353,"15218":2.3427408139,"15219":2.3463918535,"15220":2.350045685,"15221":2.3537022397,"15222":2.3573614488,"15223":2.3610232543,"15224":2.3646876144,"15225":2.3683544962,"15226":2.3720238678,"15227":2.3756956973,"15228":2.3793699529,"15229":2.3830466026,"15230":2.386725615,"15231":2.3904069585,"15232":2.3940906015,"15233":2.3977765148,"15234":2.401464673,"15235":2.4051550532,"15236":2.4088476326,"15237":2.4125423888,"15238":2.4162392992,"15239":2.4199383415,"15240":2.4236394933,"15241":2.4273427324,"15242":2.4310480367,"15243":2.4347553858,"15244":2.4384647633,"15245":2.4421761556,"15246":2.4458895492,"15247":2.4496049307,"15248":2.4533222866,"15249":2.4570416035,"15250":2.4607628678,"15251":2.4644860658,"15252":2.4682111839,"15253":2.471938209,"15254":2.4756671289,"15255":2.4793979326,"15256":2.4831306091,"15257":2.4868651472,"15258":2.4906015356,"15259":2.4943397629,"15260":2.4980798177,"15261":2.5018216881,"15262":2.5055653624,"15263":2.5093108278,"15264":2.5130580681,"15265":2.5168070645,"15266":2.5205577974,"15267":2.5243102471,"15268":2.5280643937,"15269":2.5318202171,"15270":2.5355776968,"15271":2.5393368124,"15272":2.5430975431,"15273":2.5468598678,"15274":2.550623764,"15275":2.5543892076,"15276":2.5581561746,"15277":2.5619246402,"15278":2.56569458,"15279":2.5694659691,"15280":2.5732387826,"15281":2.5770129952,"15282":2.5807885817,"15283":2.5845655155,"15284":2.5883437593,"15285":2.5921232654,"15286":2.5959039834,"15287":2.5996858631,"15288":2.603468854,"15289":2.6072529056,"15290":2.6110379673,"15291":2.6148239885,"15292":2.6186109185,"15293":2.6223987062,"15294":2.6261872962,"15295":2.6299766277,"15296":2.6337666389,"15297":2.6375572679,"15298":2.641348453,"15299":2.6451401324,"15300":2.6489322443,"15301":2.6527247272,"15302":2.6565175195,"15303":2.6603105597,"15304":2.6641037769,"15305":2.6678970899,"15306":2.6716904149,"15307":2.6754836693,"15308":2.6792767695,"15309":2.6830696326,"15310":2.6868621761,"15311":2.690654318,"15312":2.6944459763,"15313":2.69823707,"15314":2.7020275156,"15315":2.7058172271,"15316":2.7096061175,"15317":2.7133941007,"15318":2.7171810908,"15319":2.7209670027,"15320":2.7247517518,"15321":2.7285352235,"15322":2.732317366,"15323":2.7360980962,"15324":2.7398773148,"15325":2.7436549295,"15326":2.747430856,"15327":2.7512050035,"15328":2.7549772886,"15329":2.7587476232,"15330":2.7625159259,"15331":2.7662821113,"15332":2.7700461001,"15333":2.7738078091,"15334":2.7775671641,"15335":2.7813240918,"15336":2.7850785269,"15337":2.7888304013,"15338":2.7925796523,"15339":2.7963262143,"15340":2.8000700265,"15341":2.8038110258,"15342":2.8075491533,"15343":2.8112843484,"15344":2.815016558,"15345":2.8187457345,"15346":2.8224718385,"15347":2.8261948291,"15348":2.8299146691,"15349":2.8336313197,"15350":2.8373447455,"15351":2.8410549093,"15352":2.8447617772,"15353":2.848465314,"15354":2.8521654888,"15355":2.8558622736,"15356":2.8595556452,"15357":2.8632455799,"15358":2.8669320563,"15359":2.8706150519,"15360":2.8742945462,"15361":2.8779705179,"15362":2.8816429474,"15363":2.8853118144,"15364":2.8889771027,"15365":2.8926388026,"15366":2.8962969106,"15367":2.8999514238,"15368":2.9036023399,"15369":2.907249656,"15370":2.9108933697,"15371":2.9145334784,"15372":2.9181699798,"15373":2.9218028711,"15374":2.9254321513,"15375":2.929057823,"15376":2.9326798926,"15377":2.9362983666,"15378":2.9399132514,"15379":2.9435245532,"15380":2.947132278,"15381":2.9507364314,"15382":2.9543370188,"15383":2.9579340452,"15384":2.9615275167,"15385":2.9651174431,"15386":2.9687038384,"15387":2.9722867168,"15388":2.9758660921,"15389":2.9794419773,"15390":2.9830143855,"15391":2.9865833287,"15392":2.9901488191,"15393":2.993710868,"15394":2.9972694869,"15395":3.0008246896,"15396":3.0043764928,"15397":3.0079249129,"15398":3.0114699662,"15399":3.0150116681,"15400":3.0185500339,"15401":3.0220850784,"15402":3.0256168158,"15403":3.0291452601,"15404":3.0326704249,"15405":3.0361923256,"15406":3.0397109791,"15407":3.0432264024,"15408":3.0467386125,"15409":3.0502476254,"15410":3.0537534573,"15411":3.0572561239,"15412":3.0607556406,"15413":3.0642520225,"15414":3.0677452847,"15415":3.0712354431,"15416":3.074722515,"15417":3.0782065179,"15418":3.0816874132,"15419":3.0851652854,"15420":3.088639556,"15421":3.0921109944,"15422":3.095573848,"15423":3.0990145378,"15424":3.1024179092,"15425":3.1057696484,"15426":3.1090563047,"15427":3.1122652718,"15428":3.1153847749,"15429":3.1184038552,"15430":3.1213123529,"15431":3.1241008892,"15432":3.1267608472,"15433":3.1292843518,"15434":3.1316642497,"15435":3.1338940875,"15436":3.1359680907,"15437":3.1378811411,"15438":3.1396287551,"15439":3.1412070612,"15440":3.1426127777,"15441":3.1438431901,"15442":3.1448961293,"15443":3.1457699492,"15444":3.1464635045,"15445":3.1469761288,"15446":3.1473076117,"15447":3.1474581789,"15448":3.1474284722,"15449":3.147219529,"15450":3.1468327623,"15451":3.1462699409,"15452":3.1455331703,"15453":3.1446248735,"15454":3.1435477728,"15455":3.1423048709,"15456":3.1408994324,"15457":3.1393349674,"15458":3.1376152144,"15459":3.1357441239,"15460":3.1337258424,"15461":3.1315646956,"15462":3.1292651735,"15463":3.1268319141,"15464":3.1242696889,"15465":3.1215833874,"15466":3.1187780015,"15467":3.1158586119,"15468":3.1128303747,"15469":3.1096985078,"15470":3.1064682774,"15471":3.1031449848,"15472":3.0997339536,"15473":3.096240517,"15474":3.0926700055,"15475":3.0890277347,"15476":3.0853189928,"15477":3.08154903,"15478":3.0777230479,"15479":3.0738461898,"15480":3.0699235303,"15481":3.0659600656,"15482":3.0619607052,"15483":3.0579302627,"15484":3.0538734481,"15485":3.0497948602,"15486":3.0456989792,"15487":3.0415901608,"15488":3.0374726307,"15489":3.0333504801,"15490":3.0292276613,"15491":3.0251079839,"15492":3.020995112,"15493":3.016892562,"15494":3.0128037005,"15495":3.008731744,"15496":3.0046797573,"15497":3.000650655,"15498":2.9966472018,"15499":2.9926720154,"15500":2.9887275682,"15501":2.9848161901,"15502":2.9809400724,"15503":2.9771012709,"15504":2.9733017111,"15505":2.9695431925,"15506":2.9658273939,"15507":2.9621558787,"15508":2.9585301013,"15509":2.9549514128,"15510":2.9514210675,"15511":2.9479402292,"15512":2.9445099778,"15513":2.9411313159,"15514":2.9378051753,"15515":2.9345324233,"15516":2.9313138694,"15517":2.928150271,"15518":2.9250423401,"15519":2.9219907486,"15520":2.9189961342,"15521":2.9160591052,"15522":2.9131802457,"15523":2.9103601199,"15524":2.9075992759,"15525":2.9048982497,"15526":2.9022575683,"15527":2.8996777522,"15528":2.8971593178,"15529":2.8947027789,"15530":2.892308648,"15531":2.889977437,"15532":2.8877096571,"15533":2.8855058192,"15534":2.8833664327,"15535":2.8812920043,"15536":2.8792830369,"15537":2.8773400276,"15538":2.8754634648,"15539":2.873653826,"15540":2.871911574,"15541":2.8702371541,"15542":2.8686309902,"15543":2.8670934808,"15544":2.8656249954,"15545":2.8642258699,"15546":2.8628964025,"15547":2.8616368492,"15548":2.8604474196,"15549":2.8593282724,"15550":2.8582795115,"15551":2.8573011814,"15552":2.8563932636,"15553":2.8555556727,"15554":2.8547882526,"15555":2.8540907738,"15556":2.8534629304,"15557":2.8529043381,"15558":2.8524145315,"15559":2.8519929623,"15560":2.8516389976,"15561":2.8513519192,"15562":2.8511309235,"15563":2.8509751212,"15564":2.8508835386,"15565":2.8508551183,"15566":2.8508887216,"15567":2.8509831306,"15568":2.8511370517,"15569":2.8513491179,"15570":2.851617894,"15571":2.8519418802,"15572":2.8523195177,"15573":2.852749194,"15574":2.8532292488,"15575":2.8537579807,"15576":2.8543336536,"15577":2.8549545047,"15578":2.8556187513,"15579":2.8563245987,"15580":2.8570702478,"15581":2.8578539035,"15582":2.8586737819,"15583":2.8595281194,"15584":2.8604151803,"15585":2.861333265,"15586":2.8622807181,"15587":2.8632559362,"15588":2.8642573754,"15589":2.8652835586,"15590":2.8663330823,"15591":2.8674046231,"15592":2.8684969438,"15593":2.869608899,"15594":2.8707394399,"15595":2.8718876193,"15596":2.8730525947,"15597":2.8742336324,"15598":2.8754301091,"15599":2.8766415146,"15600":2.8778674521,"15601":2.8791076387,"15602":2.8803619053,"15603":2.8816301952,"15604":2.8829125625,"15605":2.884209169,"15606":2.8855202812,"15607":2.8868462662,"15608":2.8881875868,"15609":2.889544796,"15610":2.8909185311,"15611":2.8923095067,"15612":2.8937185075,"15613":2.8951463806,"15614":2.8965940269,"15615":2.8980623923,"15616":2.8995524589,"15617":2.9010652348,"15618":2.9026017448,"15619":2.9041630199,"15620":2.905750087,"15621":2.9073639591,"15622":2.9090056238,"15623":2.9106760337,"15624":2.9123760954,"15625":2.9141066596,"15626":2.9158685106,"15627":2.9176623565,"15628":2.9194888197,"15629":2.9213484278,"15630":2.9232416043,"15631":2.9251686609,"15632":2.927129789,"15633":2.9291250531,"15634":2.9311543839,"15635":2.9332175723,"15636":2.9353142644,"15637":2.9374439566,"15638":2.9396059927,"15639":2.9417995602,"15640":2.9440236889,"15641":2.9462772497,"15642":2.9485589544,"15643":2.9508673562,"15644":2.9532008516,"15645":2.9555576825,"15646":2.9579359402,"15647":2.9603335693,"15648":2.9627483728,"15649":2.965178019,"15650":2.9676200475,"15651":2.9700718777,"15652":2.972530817,"15653":2.9749940702,"15654":2.9774587497,"15655":2.9799218858,"15656":2.9823804383,"15657":2.9848313078,"15658":2.9872713482,"15659":2.9896973794,"15660":2.9921062005,"15661":2.9944946031,"15662":2.9968593851,"15663":2.9991973641,"15664":3.0015053911,"15665":3.0037803645,"15666":3.0060192437,"15667":3.0082190623,"15668":3.010376942,"15669":3.0124901052,"15670":3.0145558873,"15671":3.016571749,"15672":3.0185352881,"15673":3.02044425,"15674":3.0222965386,"15675":3.0240902262,"15676":3.0258235618,"15677":3.0274949801,"15678":3.0291031085,"15679":3.0306467739,"15680":3.0321250082,"15681":3.0335370535,"15682":3.0348823656,"15683":3.0361606171,"15684":3.0373716996,"15685":3.0385157242,"15686":3.0395930222,"15687":3.0406041438,"15688":3.0415498563,"15689":3.0424311417,"15690":3.0432491925,"15691":3.0440054076,"15692":3.0447013862,"15693":3.0453389222,"15694":3.0459199967,"15695":3.0464467704,"15696":3.0469215746,"15697":3.0473469024,"15698":3.0477253985,"15699":3.0480598488,"15700":3.0483531693,"15701":3.0486083944,"15702":3.0488286649,"15703":3.0490172157,"15704":3.0493056451,"15705":3.0508587335,"15706":3.0534040214,"15707":3.057081398,"15708":3.0618237822,"15709":3.067666787,"15710":3.0745938922,"15711":3.0826138607,"15712":3.0917220314,"15713":3.101919673,"15714":3.1132043049,"15715":3.1255745339,"15716":3.1390276317,"15717":3.1535607403,"15718":3.1691702624,"15719":3.1858521587,"15720":3.2036017906,"15721":3.2224139889,"15722":3.2422830098,"15723":3.2632025456,"15724":3.285165708,"15725":3.3081650248,"15726":3.3321924296,"15727":3.3572392548,"15728":3.3832962229,"15729":3.4103534392,"15730":3.4384003839,"15731":3.4674259051,"15732":3.4974182121,"15733":3.5283648691,"15734":3.5602527899,"15735":3.593068233,"15736":3.6267967981,"15737":3.6614234228,"15738":3.696932381,"15739":3.7333072821,"15740":3.7705310714,"15741":3.8085860327,"15742":3.8474537907,"15743":3.8871153162,"15744":3.9275509318,"15745":3.9687403202,"15746":4.0106625323,"15747":4.0532959991,"15748":4.096618543,"15749":4.1406073923,"15750":4.1852391962,"15751":4.2304900429,"15752":4.2763354774,"15753":4.3227505222,"15754":4.3697096989,"15755":4.4171870511,"15756":4.4651561692,"15757":4.5135902158,"15758":4.5624619525,"15759":4.6117437676,"15760":4.6614077056,"15761":4.7114254978,"15762":4.7617685933,"15763":4.8124081902,"15764":4.8633152684,"15765":4.9144606222,"15766":4.9658148936,"15767":5.0173486057,"15768":5.0690321954,"15769":5.1208360473,"15770":5.1727305271,"15771":5.2246860155,"15772":5.2766729412,"15773":5.3286618134,"15774":5.3806232536,"15775":5.4325280269,"15776":5.4843470727,"15777":5.536051534,"15778":5.5876127857,"15779":5.6390024624,"15780":5.6901924845,"15781":5.7411550836,"15782":5.7918628267,"15783":5.8422886383,"15784":5.8924058216,"15785":5.9421880786,"15786":5.9916095277,"15787":6.0406447208,"15788":6.0892686584,"15789":6.1374568032,"15790":6.1851850924,"15791":6.2324299488,"15792":6.2791682897,"15793":6.3253775354,"15794":6.3710356154,"15795":6.4161209743,"15796":6.4606125758,"15797":6.5044899062,"15798":6.5477329761,"15799":6.5903223218,"15800":6.6322390063,"15801":6.6734646197,"15802":6.7139812788,"15803":6.7537716269,"15804":6.7928188334,"15805":6.8311065928,"15806":6.8686191251,"15807":6.9053411755,"15808":6.9412580156,"15809":6.9763554449,"15810":7.0106197935,"15811":7.0440379253,"15812":7.0765972435,"15813":7.1082856965,"15814":7.1390917859,"15815":7.1690045762,"15816":7.198013706,"15817":7.2261094013,"15818":7.2532824908,"15819":7.2795244231,"15820":7.3048272861,"15821":7.3291838271,"15822":7.352587476,"15823":7.3750323696,"15824":7.3965133779,"15825":7.4170261324,"15826":7.4365670547,"15827":7.4551333874,"15828":7.4727232254,"15829":7.4893355483,"15830":7.5049702528,"15831":7.519628185,"15832":7.5333111726,"15833":7.5460220566,"15834":7.5577647219,"15835":7.5685441266,"15836":7.5783663297,"15837":7.5872385162,"15838":7.59516902,"15839":7.6021673455,"15840":7.6082441841,"15841":7.6134114251,"15842":7.6176821647,"15843":7.6210707093,"15844":7.6235925755,"15845":7.6252644846,"15846":7.6261043511,"15847":7.6261312673,"15848":7.625365481,"15849":7.6238283683,"15850":7.6215424008,"15851":7.6185311055,"15852":7.6148190203,"15853":7.6104316434,"15854":7.6053953768,"15855":7.5997374657,"15856":7.5934859312,"15857":7.5866694997,"15858":7.5793175271,"15859":7.571459921,"15860":7.5631270579,"15861":7.5543496948,"15862":7.5451588788,"15863":7.535585856,"15864":7.5256619778,"15865":7.5154186072,"15866":7.5048870237,"15867":7.494098329,"15868":7.483083353,"15869":7.471872562,"15870":7.4604959677,"15871":7.4489830392,"15872":7.4373626177,"15873":7.4256628347,"15874":7.4139110356,"15875":7.4021337064,"15876":7.3903564069,"15877":7.3786037086,"15878":7.3668991392,"15879":7.3552651346,"15880":7.3437229973,"15881":7.3322928592,"15882":7.3209936526,"15883":7.3098430897,"15884":7.2988576483,"15885":7.2880525667,"15886":7.2774418454,"15887":7.2670382565,"15888":7.2568533607,"15889":7.2468975325,"15890":7.2371799925,"15891":7.2277088447,"15892":7.2184911215,"15893":7.2095328346,"15894":7.2008390319,"15895":7.1924138597,"15896":7.1842606297,"15897":7.1763818899,"15898":7.1687794989,"15899":7.1614547056,"15900":7.1544082297,"15901":7.1476403417,"15902":7.1411509421,"15903":7.1349396422,"15904":7.1290058412,"15905":7.1233488032,"15906":7.1179677306,"15907":7.1128618342,"15908":7.1080303985,"15909":7.1034728413,"15910":7.0991887671,"15911":7.0951780129,"15912":7.0914406868,"15913":7.0879771973,"15914":7.084788274,"15915":7.0818749785,"15916":7.0792387048,"15917":7.0768811702,"15918":7.0748043945,"15919":7.0730106691,"15920":7.071164369,"15921":7.0688196527,"15922":7.0658196793,"15923":7.0621596374,"15924":7.057841544,"15925":7.0528662448,"15926":7.0472350114,"15927":7.040949222,"15928":7.0340104248,"15929":7.0264203248,"15930":7.0181807863,"15931":7.0092938315,"15932":6.9997616408,"15933":6.9895865519,"15934":6.9787710595,"15935":6.9673178152,"15936":6.9552296264,"15937":6.942509456,"15938":6.9291604219,"15939":6.9151857961,"15940":6.9005890027,"15941":6.8853736176,"15942":6.8695433688,"15943":6.8531021366,"15944":6.8360539527,"15945":6.8184029994,"15946":6.8001536089,"15947":6.7813102627,"15948":6.7618775907,"15949":6.7418603705,"15950":6.7212635262,"15951":6.7000921281,"15952":6.6783513914,"15953":6.6560466759,"15954":6.6331834845,"15955":6.6097674624,"15956":6.5858043966,"15957":6.5613002142,"15958":6.5362609818,"15959":6.5106929042,"15960":6.4846023228,"15961":6.4579957142,"15962":6.4308796906,"15963":6.403260998,"15964":6.3751465153,"15965":6.3465432528,"15966":6.3174583508,"15967":6.2878990781,"15968":6.2578728305,"15969":6.2273871298,"15970":6.1964496212,"15971":6.1650680728,"15972":6.1332503734,"15973":6.101004531,"15974":6.0683386711,"15975":6.0352610351,"15976":6.0017799781,"15977":5.9679039677,"15978":5.9336415817,"15979":5.8990015061,"15980":5.8639925339,"15981":5.8286235627,"15982":5.7929035926,"15983":5.7568417242,"15984":5.7204471559,"15985":5.6837291825,"15986":5.6466971925,"15987":5.6093606662,"15988":5.5717291732,"15989":5.5338123704,"15990":5.495619999,"15991":5.4571618828,"15992":5.4184479253,"15993":5.3794881076,"15994":5.3402924859,"15995":5.3008711893,"15996":5.2612344167,"15997":5.2213924347,"15998":5.1813555746,"15999":5.1411342303,"16000":5.4153984651,"16001":5.416087479,"16002":5.4168020464,"16003":5.417540638,"16004":5.4183013443,"16005":5.4190823292,"16006":5.4198817392,"16007":5.4206977229,"16008":5.4215284269,"16009":5.4223719978,"16010":5.4232265819,"16011":5.4240903263,"16012":5.4249613786,"16013":5.4258378881,"16014":5.4267180054,"16015":5.4275998838,"16016":5.428481679,"16017":5.4293615498,"16018":5.4302376587,"16019":5.4311081721,"16020":5.4319712608,"16021":5.4330268235,"16022":5.4345472833,"16023":5.436581565,"16024":5.4391157785,"16025":5.4421486039,"16026":5.4456762248,"16027":5.44969534,"16028":5.4542025622,"16029":5.4591945383,"16030":5.4646679263,"16031":5.4706258179,"16032":5.4770766827,"16033":5.4840197471,"16034":5.4914511529,"16035":5.4993676792,"16036":5.5077659992,"16037":5.5166428287,"16038":5.5259948968,"16039":5.5358189518,"16040":5.54611176,"16041":5.557017593,"16042":5.5689162753,"16043":5.5818959294,"16044":5.5959328709,"16045":5.6110257951,"16046":5.6271689568,"16047":5.6443575312,"16048":5.6625865425,"16049":5.6818510785,"16050":5.7021462479,"16051":5.7234754323,"16052":5.7458668653,"16053":5.7693243079,"16054":5.7938410899,"16055":5.8194126614,"16056":5.8460340842,"16057":5.8737005335,"16058":5.9024071979,"16059":5.9321492993,"16060":5.9629220893,"16061":5.9947328329,"16062":6.0276672732,"16063":6.0617457767,"16064":6.0969582384,"16065":6.1333006832,"16066":6.1707679509,"16067":6.2093551585,"16068":6.2490574075,"16069":6.2898698432,"16070":6.3317876427,"16071":6.3748063799,"16072":6.4189330143,"16073":6.464166248,"16074":6.5105006528,"16075":6.5579316676,"16076":6.6064545995,"16077":6.6560648232,"16078":6.7067577419,"16079":6.7585287947,"16080":6.8113734551,"16081":6.8652872318,"16082":6.9197333006,"16083":6.9745147579,"16084":7.0296510779,"16085":7.0851357455,"16086":7.1409674741,"16087":7.1971439654,"16088":7.2536631571,"16089":7.3105229737,"16090":7.367721376,"16091":7.4252563515,"16092":7.4830458188,"16093":7.541049727,"16094":7.5992670249,"16095":7.6576960727,"16096":7.7163353809,"16097":7.7751834629,"16098":7.8342388643,"16099":7.8935001572,"16100":7.9529659412,"16101":8.0126348433,"16102":8.072013562,"16103":8.130797229,"16104":8.1889692813,"16105":8.2465345121,"16106":8.3034934696,"16107":8.3598475742,"16108":8.4155980961,"16109":8.4707463598,"16110":8.525293703,"16111":8.5792414851,"16112":8.6325308211,"16113":8.6852390975,"16114":8.737331003,"16115":8.7888249574,"16116":8.8397149199,"16117":8.8900065892,"16118":8.9396998824,"16119":8.9887975799,"16120":9.0373010258,"16121":9.0852122734,"16122":9.1324279929,"16123":9.1788414785,"16124":9.2244382525,"16125":9.2692242363,"16126":9.3132012512,"16127":9.3563719358,"16128":9.3987387525,"16129":9.4403041918,"16130":9.4810707284,"16131":9.5210408316,"16132":9.560203924,"16133":9.5985447342,"16134":9.6360624306,"16135":9.6727602346,"16136":9.7086405482,"16137":9.7437059278,"16138":9.7779588896,"16139":9.8114019485,"16140":9.8440376104,"16141":9.8758683738,"16142":9.9069600355,"16143":9.9374312809,"16144":9.9673094768,"16145":9.9965913913,"16146":10.0252799016,"16147":10.0533766568,"16148":10.0808835446,"16149":10.1078023983,"16150":10.1341350549,"16151":10.159883344,"16152":10.1850585227,"16153":10.2096869078,"16154":10.2337761553,"16155":10.257326764,"16156":10.2803406571,"16157":10.3028194664,"16158":10.3247648759,"16159":10.3461785529,"16160":10.3670621616,"16161":10.3874173608,"16162":10.407282489,"16163":10.426806351,"16164":10.4460287187,"16165":10.4649428141,"16166":10.4835511596,"16167":10.5018544152,"16168":10.5198536093,"16169":10.5375496929,"16170":10.554943629,"16171":10.5720363746,"16172":10.5888339044,"16173":10.6053750581,"16174":10.6216712746,"16175":10.6377212122,"16176":10.6535260803,"16177":10.6690865759,"16178":10.6844034952,"16179":10.6994776116,"16180":10.7143097002,"16181":10.7289005328,"16182":10.7432533079,"16183":10.7574472389,"16184":10.7715060183,"16185":10.7854254495,"16186":10.7992069086,"16187":10.8128506561,"16188":10.8263571739,"16189":10.8397268978,"16190":10.8529602712,"16191":10.8660577345,"16192":10.8790197268,"16193":10.8918680566,"16194":10.9046108858,"16195":10.9172476902,"16196":10.9297789887,"16197":10.9422050903,"16198":10.9545263449,"16199":10.9667430928,"16200":10.9788556749,"16201":10.9908644308,"16202":11.0027696991,"16203":11.0145843665,"16204":11.0263147335,"16205":11.0379609911,"16206":11.0495234261,"16207":11.0610023051,"16208":11.0723978977,"16209":11.0837104721,"16210":11.0949402954,"16211":11.1060876343,"16212":11.1171527543,"16213":11.1281369016,"16214":11.1390409445,"16215":11.1498651753,"16216":11.1606098427,"16217":11.1712752032,"16218":11.1818615108,"16219":11.192369019,"16220":11.2027979803,"16221":11.2131486466,"16222":11.2234212689,"16223":11.2336041712,"16224":11.2436880939,"16225":11.2536722711,"16226":11.2635572282,"16227":11.273343231,"16228":11.2830305964,"16229":11.2926196297,"16230":11.3021106373,"16231":11.3115039245,"16232":11.3207997955,"16233":11.3299949964,"16234":11.3390861512,"16235":11.3480730088,"16236":11.3569560068,"16237":11.3657354438,"16238":11.374411645,"16239":11.3829849291,"16240":11.3914556148,"16241":11.3998240199,"16242":11.408090461,"16243":11.4162417139,"16244":11.4242596846,"16245":11.4321412779,"16246":11.4398876139,"16247":11.4474989687,"16248":11.4549757855,"16249":11.4623184727,"16250":11.469527444,"16251":11.4766031106,"16252":11.4835458828,"16253":11.4903524384,"16254":11.4970163365,"16255":11.5035365166,"16256":11.50991372,"16257":11.5161483259,"16258":11.5222407848,"16259":11.5281915308,"16260":11.5340010002,"16261":11.5396696269,"16262":11.545197844,"16263":11.550577707,"16264":11.5557878937,"16265":11.5608236469,"16266":11.5656865589,"16267":11.5703769509,"16268":11.5748953962,"16269":11.5792424159,"16270":11.5834185396,"16271":11.5874242933,"16272":11.5912602017,"16273":11.5949244907,"16274":11.5984084658,"16275":11.6017102595,"16276":11.6048309176,"16277":11.6077709016,"16278":11.6105307878,"16279":11.6131111275,"16280":11.6155124751,"16281":11.6177353823,"16282":11.6197803992,"16283":11.6216406344,"16284":11.6232604848,"16285":11.624624951,"16286":11.6257379694,"16287":11.626599689,"16288":11.6272110127,"16289":11.6275726899,"16290":11.6276854981,"16291":11.6275502061,"16292":11.6271675818,"16293":11.6265375526,"16294":11.6256338249,"16295":11.6244492506,"16296":11.6229862977,"16297":11.6212455087,"16298":11.6192278078,"16299":11.6169340401,"16300":11.6143650629,"16301":11.6115217282,"16302":11.6084048858,"16303":11.6050153828,"16304":11.6013583888,"16305":11.5974363124,"16306":11.593249803,"16307":11.5887997187,"16308":11.5840868727,"16309":11.5791120845,"16310":11.5738761689,"16311":11.5683799386,"16312":11.562624204,"16313":11.5566097724,"16314":11.5503401787,"16315":11.5438175244,"16316":11.5370425809,"16317":11.5300161381,"16318":11.5227389791,"16319":11.5152118854,"16320":11.5074356358,"16321":11.4994110118,"16322":11.4911387821,"16323":11.4826197181,"16324":11.4738848006,"16325":11.4649534388,"16326":11.4558273369,"16327":11.4465068883,"16328":11.4369927451,"16329":11.4272855058,"16330":11.4173857768,"16331":11.4072941608,"16332":11.3970112584,"16333":11.3865376685,"16334":11.3759077945,"16335":11.3651491765,"16336":11.3542652645,"16337":11.3432558446,"16338":11.332121433,"16339":11.3208623987,"16340":11.3094791382,"16341":11.2979720409,"16342":11.2863414959,"16343":11.2745878911,"16344":11.2627422055,"16345":11.2508364535,"16346":11.2388757559,"16347":11.2268593022,"16348":11.2147874661,"16349":11.2026603841,"16350":11.1904782392,"16351":11.1782412044,"16352":11.1659494537,"16353":11.1536031603,"16354":11.1412162937,"16355":11.1288077835,"16356":11.116381272,"16357":11.103936104,"16358":11.0914724831,"16359":11.0789904409,"16360":11.066490043,"16361":11.0539713478,"16362":11.0414344148,"16363":11.0288793033,"16364":11.016315542,"16365":11.0037605709,"16366":10.9912181686,"16367":10.9786875365,"16368":10.9661687909,"16369":10.9536618658,"16370":10.9411667312,"16371":10.9286833505,"16372":10.9162116882,"16373":10.9037517089,"16374":10.8913076771,"16375":10.8788907239,"16376":10.8665034757,"16377":10.8541452989,"16378":10.8418162117,"16379":10.8295161023,"16380":10.8172448855,"16381":10.8050024711,"16382":10.7927887702,"16383":10.780603694,"16384":10.7684478169,"16385":10.7563237088,"16386":10.7442319694,"16387":10.7321723575,"16388":10.7201448004,"16389":10.7081491924,"16390":10.6961854345,"16391":10.6842534271,"16392":10.6723530711,"16393":10.6604842676,"16394":10.6486471322,"16395":10.6368431804,"16396":10.6250727605,"16397":10.6133356766,"16398":10.601631842,"16399":10.589961149,"16400":10.5783234941,"16401":10.5667187739,"16402":10.555146885,"16403":10.5436077247,"16404":10.5321010837,"16405":10.5206234063,"16406":10.5091735806,"16407":10.4977517224,"16408":10.4863577026,"16409":10.4749914414,"16410":10.4636528497,"16411":10.4523418404,"16412":10.4410583266,"16413":10.4298022215,"16414":10.4185734388,"16415":10.4073693365,"16416":10.3961889043,"16417":10.3850321706,"16418":10.3738990485,"16419":10.362789456,"16420":10.3517034167,"16421":10.3406407304,"16422":10.3296022862,"16423":10.3185902778,"16424":10.3076071557,"16425":10.2966502215,"16426":10.2857192479,"16427":10.2748162932,"16428":10.2639432317,"16429":10.2531018038,"16430":10.2422936094,"16431":10.2315201134,"16432":10.2207826488,"16433":10.2100824208,"16434":10.1994205102,"16435":10.1887927798,"16436":10.1781969284,"16437":10.1676335294,"16438":10.1571032691,"16439":10.1466066855,"16440":10.1361442252,"16441":10.1257162368,"16442":10.1153229773,"16443":10.1049646153,"16444":10.0946412352,"16445":10.0843517328,"16446":10.0740951524,"16447":10.0638712556,"16448":10.0536798553,"16449":10.0435206748,"16450":10.0333933802,"16451":10.0232975785,"16452":10.0132328215,"16453":10.0031986098,"16454":9.9931943949,"16455":9.9832180829,"16456":9.9732674865,"16457":9.963341699,"16458":9.9534400683,"16459":9.9435618511,"16460":9.9337062851,"16461":9.923872578,"16462":9.9140599132,"16463":9.9042674515,"16464":9.8944943343,"16465":9.8847399222,"16466":9.875003647,"16467":9.8652846657,"16468":9.8555820521,"16469":9.8458948869,"16470":9.8362222427,"16471":9.8265631899,"16472":9.8169167976,"16473":9.8072821364,"16474":9.7976582799,"16475":9.7880444879,"16476":9.7784401782,"16477":9.7688445174,"16478":9.7592565958,"16479":9.7496755336,"16480":9.7401004616,"16481":9.730530527,"16482":9.7209648941,"16483":9.7114027458,"16484":9.7018432847,"16485":9.692286394,"16486":9.6827330324,"16487":9.6731828775,"16488":9.6636351304,"16489":9.654089117,"16490":9.6445441686,"16491":9.6349996464,"16492":9.6254549368,"16493":9.6159094531,"16494":9.6063626354,"16495":9.5968144044,"16496":9.5872660742,"16497":9.5777176371,"16498":9.568168536,"16499":9.5586183547,"16500":9.5490666797,"16501":9.5395131274,"16502":9.5299573372,"16503":9.5203989726,"16504":9.51083772,"16505":9.5012735443,"16506":9.4917081127,"16507":9.4821417112,"16508":9.4725739914,"16509":9.4630047532,"16510":9.4534337874,"16511":9.4438609059,"16512":9.4342859339,"16513":9.4247087104,"16514":9.4151290867,"16515":9.4055469919,"16516":9.3959644526,"16517":9.38638198,"16518":9.376799328,"16519":9.3672164102,"16520":9.3576331158,"16521":9.3480493454,"16522":9.3384650027,"16523":9.3288799953,"16524":9.3192942335,"16525":9.3097076303,"16526":9.3001213164,"16527":9.2905356473,"16528":9.2809504855,"16529":9.2713657535,"16530":9.2617813623,"16531":9.2521972259,"16532":9.2426132579,"16533":9.2330293726,"16534":9.2234454846,"16535":9.2138615093,"16536":9.2042785347,"16537":9.1946970357,"16538":9.1851169187,"16539":9.1755381012,"16540":9.1659605017,"16541":9.156384042,"16542":9.1468086479,"16543":9.1372342496,"16544":9.1276607823,"16545":9.1180881871,"16546":9.1085157508,"16547":9.0989430208,"16548":9.0893699389,"16549":9.0797964847,"16550":9.0702226408,"16551":9.0606484013,"16552":9.0510737703,"16553":9.0414987635,"16554":9.031923408,"16555":9.0223477431,"16556":9.0127729914,"16557":9.0032001507,"16558":8.9936293983,"16559":8.9840607983,"16560":8.9744944541,"16561":8.9649304779,"16562":8.9553689968,"16563":8.9458101516,"16564":8.9362540971,"16565":8.9267010011,"16566":8.9171509266,"16567":8.9076039448,"16568":8.8980602434,"16569":8.8885200444,"16570":8.8789835761,"16571":8.8694510777,"16572":8.8599227974,"16573":8.8503989916,"16574":8.8408799239,"16575":8.831365864,"16576":8.821856954,"16577":8.8123532919,"16578":8.8028551249,"16579":8.7933627429,"16580":8.7838764274,"16581":8.7743964598,"16582":8.7649231187,"16583":8.7554566783,"16584":8.7459974075,"16585":8.7365455681,"16586":8.7271012703,"16587":8.7176644948,"16588":8.7082354185,"16589":8.6988142762,"16590":8.6894012758,"16591":8.6799966138,"16592":8.6706004714,"16593":8.6612130137,"16594":8.6518343893,"16595":8.6424647294,"16596":8.6331039878,"16597":8.6237518447,"16598":8.6144082772,"16599":8.6050733645,"16600":8.5957471424,"16601":8.5864296322,"16602":8.5771208355,"16603":8.5678207351,"16604":8.5585292953,"16605":8.5492464627,"16606":8.5399721073,"16607":8.5307059052,"16608":8.5214476919,"16609":8.512197363,"16610":8.5029547855,"16611":8.4937198168,"16612":8.4844923024,"16613":8.4752720781,"16614":8.4660589711,"16615":8.4568528016,"16616":8.447653334,"16617":8.4384599978,"16618":8.4292724964,"16619":8.4200906611,"16620":8.4109142986,"16621":8.4017432241,"16622":8.392577256,"16623":8.3834162198,"16624":8.3742599489,"16625":8.3651082867,"16626":8.3559610844,"16627":8.3468180969,"16628":8.3376791736,"16629":8.3285442207,"16630":8.319413154,"16631":8.3102859098,"16632":8.3011624444,"16633":8.2920427355,"16634":8.2829267831,"16635":8.2738146106,"16636":8.2647062657,"16637":8.2556016665,"16638":8.2465008548,"16639":8.237403961,"16640":8.228311134,"16641":8.2192225501,"16642":8.2101384115,"16643":8.2010589462,"16644":8.1919844077,"16645":8.1829150747,"16646":8.17385125,"16647":8.1647932866,"16648":8.1557415463,"16649":8.1466963993,"16650":8.1376582365,"16651":8.1286274674,"16652":8.1196045192,"16653":8.1105898349,"16654":8.1015838714,"16655":8.0925870981,"16656":8.0835999947,"16657":8.0746219924,"16658":8.0656529336,"16659":8.0566932838,"16660":8.0477435567,"16661":8.0388042561,"16662":8.0298758854,"16663":8.0209589426,"16664":8.0120539186,"16665":8.003161295,"16666":7.9942815419,"16667":7.9854162066,"16668":7.9765665992,"16669":7.9677332338,"16670":7.958916486,"16671":7.9501167332,"16672":7.9413343236,"16673":7.9325695811,"16674":7.9238228016,"16675":7.9150942521,"16676":7.9063841694,"16677":7.8976929332,"16678":7.8890208967,"16679":7.8803682252,"16680":7.8717350154,"16681":7.8631213356,"16682":7.8545272167,"16683":7.8459526536,"16684":7.8373976045,"16685":7.8288619912,"16686":7.8203456988,"16687":7.8118488409,"16688":7.8033715899,"16689":7.7949137904,"16690":7.78647517,"16691":7.7780554391,"16692":7.7696542723,"16693":7.7612713132,"16694":7.7529061752,"16695":7.7445584429,"16696":7.7362276737,"16697":7.7279138831,"16698":7.7196174673,"16699":7.7113381021,"16700":7.7030752096,"16701":7.6948282401,"16702":7.686596619,"16703":7.6783797591,"16704":7.6701556372,"16705":7.6617297443,"16706":7.6531481775,"16707":7.6443879179,"16708":7.635460339,"16709":7.6263599175,"16710":7.617089958,"16711":7.6076495127,"16712":7.5980398822,"16713":7.5882613723,"16714":7.5783149139,"16715":7.5682012537,"16716":7.5579213588,"16717":7.5474759458,"16718":7.5368650397,"16719":7.5260895372,"16720":7.5151507734,"16721":7.5040501,"16722":7.4927889739,"16723":7.4813689393,"16724":7.4697916328,"16725":7.4580587839,"16726":7.4461722156,"16727":7.434133784,"16728":7.4219450354,"16729":7.4096079512,"16730":7.3971247685,"16731":7.3844977918,"16732":7.3717294315,"16733":7.358822197,"16734":7.345778699,"16735":7.3326016495,"16736":7.3192938626,"16737":7.3058582156,"16738":7.2922964881,"16739":7.2786114377,"16740":7.2648063634,"16741":7.2508845769,"16742":7.2368495073,"16743":7.2227046792,"16744":7.2084537149,"16745":7.1941003328,"16746":7.1796483453,"16747":7.1651016566,"16748":7.1504631253,"16749":7.1357364219,"16750":7.1209257625,"16751":7.1060353886,"16752":7.0910696305,"16753":7.0760328905,"16754":7.0609296413,"16755":7.0457644218,"16756":7.0305418328,"16757":7.0152665322,"16758":6.9999402431,"16759":6.9845663032,"16760":6.9691495467,"16761":6.9536948224,"16762":6.9382070159,"16763":6.922691039,"16764":6.9071518249,"16765":6.891594323,"16766":6.8760234926,"16767":6.8604442981,"16768":6.844859295,"16769":6.8292719546,"16770":6.813687147,"16771":6.7981098289,"16772":6.7825449131,"16773":6.7669972881,"16774":6.7514718079,"16775":6.7359732877,"16776":6.7205064988,"16777":6.705076164,"16778":6.689686634,"16779":6.6743422664,"16780":6.6590475843,"16781":6.6438070794,"16782":6.6286251668,"16783":6.61350619,"16784":6.5984544151,"16785":6.5834740292,"16786":6.5685691367,"16787":6.5537437571,"16788":6.5390018907,"16789":6.5243474508,"16790":6.5097842001,"16791":6.4953157954,"16792":6.4809458023,"16793":6.466677691,"16794":6.4525148362,"16795":6.438460516,"16796":6.4245179121,"16797":6.4106901089,"16798":6.3969803159,"16799":6.3833917252,"16800":6.3699271864,"16801":6.3565893835,"16802":6.3433809178,"16803":6.3303042923,"16804":6.3173619148,"16805":6.3045560979,"16806":6.2918890594,"16807":6.2793629228,"16808":6.2669799782,"16809":6.2547426399,"16810":6.2426528505,"16811":6.2307123317,"16812":6.2189227349,"16813":6.2072856105,"16814":6.1958024126,"16815":6.1844744967,"16816":6.1733031184,"16817":6.1622894312,"16818":6.1514353639,"16819":6.1407441427,"16820":6.1302171453,"16821":6.1198549697,"16822":6.1096582311,"16823":6.0996273983,"16824":6.0897628213,"16825":6.080064721,"16826":6.0705331857,"16827":6.0611681664,"16828":6.0519696626,"16829":6.042938102,"16830":6.0340731923,"16831":6.0253742422,"16832":6.0168404466,"16833":6.0084708241,"16834":6.0002642239,"16835":5.9922193188,"16836":5.9843346022,"16837":5.976608384,"16838":5.9690392786,"16839":5.961628929,"16840":5.9543761036,"16841":5.9472781268,"16842":5.940332379,"16843":5.9335359965,"16844":5.9268859324,"16845":5.9203789458,"16846":5.9140116066,"16847":5.9077802989,"16848":5.9016812507,"16849":5.895711335,"16850":5.8898666538,"16851":5.8841428443,"16852":5.8785354483,"16853":5.8730398487,"16854":5.867651294,"16855":5.8623649059,"16856":5.8571756918,"16857":5.852078556,"16858":5.8470683139,"16859":5.8421432865,"16860":5.8372994458,"16861":5.8325312607,"16862":5.8278333429,"16863":5.8232002529,"16864":5.818626557,"16865":5.8141068347,"16866":5.8096356965,"16867":5.805207799,"16868":5.8008178603,"16869":5.796461209,"16870":5.7921329856,"16871":5.7878281778,"16872":5.7835418972,"16873":5.7792693884,"16874":5.7750060419,"16875":5.7707474057,"16876":5.7664891963,"16877":5.7622273083,"16878":5.7579578232,"16879":5.7536782633,"16880":5.7493858742,"16881":5.7450773777,"16882":5.7407496518,"16883":5.7363997988,"16884":5.7320251337,"16885":5.7276231873,"16886":5.7231917046,"16887":5.7187286427,"16888":5.7142321674,"16889":5.7097018051,"16890":5.7051370453,"16891":5.700536744,"16892":5.6958998145,"16893":5.6912253688,"16894":5.6865126778,"16895":5.681761166,"16896":5.6769703992,"16897":5.6721400719,"16898":5.6672699945,"16899":5.6623638685,"16900":5.6574256121,"16901":5.652455889,"16902":5.64745469,"16903":5.6424222008,"16904":5.6373586125,"16905":5.6322641443,"16906":5.6271390235,"16907":5.621983476,"16908":5.6167977142,"16909":5.6115817682,"16910":5.6063355791,"16911":5.6010592251,"16912":5.5957527889,"16913":5.5904162926,"16914":5.5850497067,"16915":5.5796529458,"16916":5.5742258694,"16917":5.5687682836,"16918":5.5632799442,"16919":5.5577588494,"16920":5.5522580017,"16921":5.5468511172,"16922":5.5415642476,"16923":5.5363978033,"16924":5.5313510844,"16925":5.526423582,"16926":5.5216147192,"16927":5.516923903,"16928":5.5123505134,"16929":5.5078937865,"16930":5.5035527426,"16931":5.4993266142,"16932":5.4952147009,"16933":5.4912162596,"16934":5.4873305269,"16935":5.4835567152,"16936":5.479894013,"16937":5.4763415855,"16938":5.4728985746,"16939":5.4695632149,"16940":5.4663310569,"16941":5.4632002551,"16942":5.4601700631,"16943":5.4572394878,"16944":5.4544075583,"16945":5.4516732728,"16946":5.4490356092,"16947":5.4464935234,"16948":5.4440459495,"16949":5.4416917822,"16950":5.4394297754,"16951":5.4372587615,"16952":5.4351775988,"16953":5.4331851156,"16954":5.4312801218,"16955":5.4294614067,"16956":5.4277277397,"16957":5.4260778707,"16958":5.42451053,"16959":5.4230244621,"16960":5.4216194394,"16961":5.4202944513,"16962":5.4190480848,"16963":5.4178789853,"16964":5.4167857649,"16965":5.415767021,"16966":5.4148213331,"16967":5.4139472635,"16968":5.4131433578,"16969":5.412408145,"16970":5.4117402798,"16971":5.4111383105,"16972":5.410600712,"16973":5.4101259511,"16974":5.4097124779,"16975":5.4093587286,"16976":5.4090631248,"16977":5.4088240743,"16978":5.4086399715,"16979":5.4085091973,"16980":5.4084331987,"16981":5.4084117958,"16982":5.4084432985,"16983":5.4085260289,"16984":5.4086582931,"16985":5.4088383873,"16986":5.4090645968,"16987":5.4093351972,"16988":5.4096484543,"16989":5.4100026246,"16990":5.4103958745,"16991":5.410826393,"16992":5.4112924092,"16993":5.4117921477,"16994":5.4123238258,"16995":5.4128856538,"16996":5.4134758361,"16997":5.4140925711,"16998":5.414734052,"16999":5.4153984669,"17000":5.1411340687,"17001":5.1007386951,"17002":5.0601798033,"17003":5.0194679593,"17004":4.978613779,"17005":4.9376279266,"17006":4.8965211109,"17007":4.8553040838,"17008":4.8139876362,"17009":4.7725825957,"17010":4.7310998241,"17011":4.6895502143,"17012":4.647944688,"17013":4.6062941928,"17014":4.5646096997,"17015":4.5229022001,"17016":4.4811827037,"17017":4.4394622349,"17018":4.3977518309,"17019":4.3560625381,"17020":4.3144054105,"17021":4.27279155,"17022":4.2312321523,"17023":4.1897384682,"17024":4.1483217488,"17025":4.1069932293,"17026":4.0657641285,"17027":4.0246456455,"17028":3.9836489576,"17029":3.9427852176,"17030":3.9020655512,"17031":3.8615010564,"17032":3.8211028025,"17033":3.7808818268,"17034":3.7408491275,"17035":3.7010156588,"17036":3.6613923288,"17037":3.6219899985,"17038":3.5828194807,"17039":3.543891539,"17040":3.5052168863,"17041":3.4668062192,"17042":3.428670299,"17043":3.3908199221,"17044":3.3532658389,"17045":3.3160187283,"17046":3.2790891984,"17047":3.2424877851,"17048":3.2062249501,"17049":3.1703110792,"17050":3.1347564809,"17051":3.0995713864,"17052":3.0647659547,"17053":3.0303502697,"17054":2.9963343323,"17055":2.962728057,"17056":2.9295412707,"17057":2.8967837108,"17058":2.864465024,"17059":2.8325947641,"17060":2.8011823913,"17061":2.7702372771,"17062":2.7397687549,"17063":2.7097861148,"17064":2.6802985553,"17065":2.6513151667,"17066":2.6228449314,"17067":2.5948967223,"17068":2.5674793012,"17069":2.5406013177,"17070":2.514271308,"17071":2.4884976934,"17072":2.4632887859,"17073":2.4386527869,"17074":2.4145977804,"17075":2.3911317306,"17076":2.3682624804,"17077":2.3459977511,"17078":2.3243451405,"17079":2.3033121227,"17080":2.2829060469,"17081":2.2631341363,"17082":2.2440034497,"17083":2.2255208757,"17084":2.2076931642,"17085":2.1905269387,"17086":2.174028695,"17087":2.1582048005,"17088":2.1430614932,"17089":2.128604881,"17090":2.1148409408,"17091":2.1017755176,"17092":2.0894143186,"17093":2.0777629109,"17094":2.0668267254,"17095":2.056611058,"17096":2.0471210695,"17097":2.0383617846,"17098":2.0303380913,"17099":2.0230547399,"17100":2.0165163429,"17101":2.0107273741,"17102":2.0056921085,"17103":2.0014145986,"17104":1.9978987204,"17105":1.9951482065,"17106":1.9931666486,"17107":1.9919574961,"17108":1.9915240551,"17109":1.9918694875,"17110":1.9929968095,"17111":1.9949088914,"17112":1.9975247302,"17113":2.0000373169,"17114":2.0026287834,"17115":2.0052080917,"17116":2.0078207877,"17117":2.0104441244,"17118":2.0130895006,"17119":2.0157512416,"17120":2.0184322088,"17121":2.021130995,"17122":2.0238482875,"17123":2.0265836342,"17124":2.0293370742,"17125":2.0321083723,"17126":2.0348974277,"17127":2.0377040726,"17128":2.0405281724,"17129":2.0433695757,"17130":2.0462281397,"17131":2.0491037171,"17132":2.0519961582,"17133":2.0549053016,"17134":2.0578309796,"17135":2.060773023,"17136":2.0637312632,"17137":2.0667055316,"17138":2.0696956599,"17139":2.07270148,"17140":2.0757228243,"17141":2.0787595252,"17142":2.0818114063,"17143":2.0848782677,"17144":2.0879598916,"17145":2.0910560573,"17146":2.0941665452,"17147":2.0972911361,"17148":2.1004296115,"17149":2.1035817534,"17150":2.1067473444,"17151":2.1099261679,"17152":2.1131180064,"17153":2.1163226383,"17154":2.1195398391,"17155":2.1227693841,"17156":2.1260110491,"17157":2.129264611,"17158":2.1325298469,"17159":2.1358065348,"17160":2.1390944534,"17161":2.142393382,"17162":2.145703102,"17163":2.1490234032,"17164":2.152354083,"17165":2.1556949409,"17166":2.1590457769,"17167":2.1624063915,"17168":2.1657765861,"17169":2.1691561622,"17170":2.1725449223,"17171":2.1759426693,"17172":2.1793492067,"17173":2.1827643406,"17174":2.1861878794,"17175":2.1896196323,"17176":2.1930594092,"17177":2.1965070202,"17178":2.199962276,"17179":2.2034249877,"17180":2.2068949667,"17181":2.210372025,"17182":2.2138559756,"17183":2.2173466511,"17184":2.2208439058,"17185":2.224347599,"17186":2.22785759,"17187":2.2313737381,"17188":2.2348959029,"17189":2.2384239442,"17190":2.241957722,"17191":2.2454970965,"17192":2.249041928,"17193":2.2525920823,"17194":2.2561474317,"17195":2.2597078502,"17196":2.2632732122,"17197":2.266843392,"17198":2.2704182641,"17199":2.2739977031,"17200":2.2775815839,"17201":2.2811697814,"17202":2.2847621707,"17203":2.2883586431,"17204":2.2919591108,"17205":2.2955634935,"17206":2.2991717112,"17207":2.302783684,"17208":2.3063993322,"17209":2.3100185758,"17210":2.3136413353,"17211":2.3172675311,"17212":2.3208970835,"17213":2.3245299164,"17214":2.3281659579,"17215":2.3318051379,"17216":2.3354473868,"17217":2.3390926353,"17218":2.3427408139,"17219":2.3463918535,"17220":2.350045685,"17221":2.3537022397,"17222":2.3573614488,"17223":2.3610232543,"17224":2.3646876144,"17225":2.3683544962,"17226":2.3720238678,"17227":2.3756956973,"17228":2.3793699529,"17229":2.3830466026,"17230":2.386725615,"17231":2.3904069585,"17232":2.3940906015,"17233":2.3977765148,"17234":2.401464673,"17235":2.4051550532,"17236":2.4088476326,"17237":2.4125423888,"17238":2.4162392992,"17239":2.4199383415,"17240":2.4236394933,"17241":2.4273427324,"17242":2.4310480367,"17243":2.4347553858,"17244":2.4384647633,"17245":2.4421761556,"17246":2.4458895492,"17247":2.4496049307,"17248":2.4533222866,"17249":2.4570416035,"17250":2.4607628678,"17251":2.4644860658,"17252":2.4682111839,"17253":2.471938209,"17254":2.4756671289,"17255":2.4793979326,"17256":2.4831306091,"17257":2.4868651472,"17258":2.4906015356,"17259":2.4943397629,"17260":2.4980798177,"17261":2.5018216881,"17262":2.5055653624,"17263":2.5093108278,"17264":2.5130580681,"17265":2.5168070645,"17266":2.5205577974,"17267":2.5243102471,"17268":2.5280643937,"17269":2.5318202171,"17270":2.5355776968,"17271":2.5393368124,"17272":2.5430975431,"17273":2.5468598678,"17274":2.550623764,"17275":2.5543892076,"17276":2.5581561746,"17277":2.5619246402,"17278":2.56569458,"17279":2.5694659691,"17280":2.5732387826,"17281":2.5770129952,"17282":2.5807885817,"17283":2.5845655155,"17284":2.5883437593,"17285":2.5921232654,"17286":2.5959039834,"17287":2.5996858631,"17288":2.603468854,"17289":2.6072529056,"17290":2.6110379673,"17291":2.6148239885,"17292":2.6186109185,"17293":2.6223987062,"17294":2.6261872962,"17295":2.6299766277,"17296":2.6337666389,"17297":2.6375572679,"17298":2.641348453,"17299":2.6451401324,"17300":2.6489322443,"17301":2.6527247272,"17302":2.6565175195,"17303":2.6603105597,"17304":2.6641037769,"17305":2.6678970899,"17306":2.6716904149,"17307":2.6754836693,"17308":2.6792767695,"17309":2.6830696326,"17310":2.6868621761,"17311":2.690654318,"17312":2.6944459763,"17313":2.69823707,"17314":2.7020275156,"17315":2.7058172271,"17316":2.7096061175,"17317":2.7133941007,"17318":2.7171810908,"17319":2.7209670027,"17320":2.7247517518,"17321":2.7285352235,"17322":2.732317366,"17323":2.7360980962,"17324":2.7398773148,"17325":2.7436549295,"17326":2.747430856,"17327":2.7512050035,"17328":2.7549772886,"17329":2.7587476232,"17330":2.7625159259,"17331":2.7662821113,"17332":2.7700461001,"17333":2.7738078091,"17334":2.7775671641,"17335":2.7813240918,"17336":2.7850785269,"17337":2.7888304013,"17338":2.7925796523,"17339":2.7963262143,"17340":2.8000700265,"17341":2.8038110258,"17342":2.8075491533,"17343":2.8112843484,"17344":2.815016558,"17345":2.8187457345,"17346":2.8224718385,"17347":2.8261948291,"17348":2.8299146691,"17349":2.8336313197,"17350":2.8373447455,"17351":2.8410549093,"17352":2.8447617772,"17353":2.848465314,"17354":2.8521654888,"17355":2.8558622736,"17356":2.8595556452,"17357":2.8632455799,"17358":2.8669320563,"17359":2.8706150519,"17360":2.8742945462,"17361":2.8779705179,"17362":2.8816429474,"17363":2.8853118144,"17364":2.8889771027,"17365":2.8926388026,"17366":2.8962969106,"17367":2.8999514238,"17368":2.9036023399,"17369":2.907249656,"17370":2.9108933697,"17371":2.9145334784,"17372":2.9181699798,"17373":2.9218028711,"17374":2.9254321513,"17375":2.929057823,"17376":2.9326798926,"17377":2.9362983666,"17378":2.9399132514,"17379":2.9435245532,"17380":2.947132278,"17381":2.9507364314,"17382":2.9543370188,"17383":2.9579340452,"17384":2.9615275167,"17385":2.9651174431,"17386":2.9687038384,"17387":2.9722867168,"17388":2.9758660921,"17389":2.9794419773,"17390":2.9830143855,"17391":2.9865833287,"17392":2.9901488191,"17393":2.993710868,"17394":2.9972694869,"17395":3.0008246896,"17396":3.0043764928,"17397":3.0079249129,"17398":3.0114699662,"17399":3.0150116681,"17400":3.0185500339,"17401":3.0220850784,"17402":3.0256168158,"17403":3.0291452601,"17404":3.0326704249,"17405":3.0361923256,"17406":3.0397109791,"17407":3.0432264024,"17408":3.0467386125,"17409":3.0502476254,"17410":3.0537534573,"17411":3.0572561239,"17412":3.0607556406,"17413":3.0642520225,"17414":3.0677452847,"17415":3.0712354431,"17416":3.074722515,"17417":3.0782065179,"17418":3.0816874132,"17419":3.0851652854,"17420":3.088639556,"17421":3.0921109944,"17422":3.095573848,"17423":3.0990145378,"17424":3.1024179092,"17425":3.1057696484,"17426":3.1090563047,"17427":3.1122652718,"17428":3.1153847749,"17429":3.1184038552,"17430":3.1213123529,"17431":3.1241008892,"17432":3.1267608472,"17433":3.1292843518,"17434":3.1316642497,"17435":3.1338940875,"17436":3.1359680907,"17437":3.1378811411,"17438":3.1396287551,"17439":3.1412070612,"17440":3.1426127777,"17441":3.1438431901,"17442":3.1448961293,"17443":3.1457699492,"17444":3.1464635045,"17445":3.1469761288,"17446":3.1473076117,"17447":3.1474581789,"17448":3.1474284722,"17449":3.147219529,"17450":3.1468327623,"17451":3.1462699409,"17452":3.1455331703,"17453":3.1446248735,"17454":3.1435477728,"17455":3.1423048709,"17456":3.1408994324,"17457":3.1393349674,"17458":3.1376152144,"17459":3.1357441239,"17460":3.1337258424,"17461":3.1315646956,"17462":3.1292651735,"17463":3.1268319141,"17464":3.1242696889,"17465":3.1215833874,"17466":3.1187780015,"17467":3.1158586119,"17468":3.1128303747,"17469":3.1096985078,"17470":3.1064682774,"17471":3.1031449848,"17472":3.0997339536,"17473":3.096240517,"17474":3.0926700055,"17475":3.0890277347,"17476":3.0853189928,"17477":3.08154903,"17478":3.0777230479,"17479":3.0738461898,"17480":3.0699235303,"17481":3.0659600656,"17482":3.0619607052,"17483":3.0579302627,"17484":3.0538734481,"17485":3.0497948602,"17486":3.0456989792,"17487":3.0415901608,"17488":3.0374726307,"17489":3.0333504801,"17490":3.0292276613,"17491":3.0251079839,"17492":3.020995112,"17493":3.016892562,"17494":3.0128037005,"17495":3.008731744,"17496":3.0046797573,"17497":3.000650655,"17498":2.9966472018,"17499":2.9926720154,"17500":2.9887275682,"17501":2.9848161901,"17502":2.9809400724,"17503":2.9771012709,"17504":2.9733017111,"17505":2.9695431925,"17506":2.9658273939,"17507":2.9621558787,"17508":2.9585301013,"17509":2.9549514128,"17510":2.9514210675,"17511":2.9479402292,"17512":2.9445099778,"17513":2.9411313159,"17514":2.9378051753,"17515":2.9345324233,"17516":2.9313138694,"17517":2.928150271,"17518":2.9250423401,"17519":2.9219907486,"17520":2.9189961342,"17521":2.9160591052,"17522":2.9131802457,"17523":2.9103601199,"17524":2.9075992759,"17525":2.9048982497,"17526":2.9022575683,"17527":2.8996777522,"17528":2.8971593178,"17529":2.8947027789,"17530":2.892308648,"17531":2.889977437,"17532":2.8877096571,"17533":2.8855058192,"17534":2.8833664327,"17535":2.8812920043,"17536":2.8792830369,"17537":2.8773400276,"17538":2.8754634648,"17539":2.873653826,"17540":2.871911574,"17541":2.8702371541,"17542":2.8686309902,"17543":2.8670934808,"17544":2.8656249954,"17545":2.8642258699,"17546":2.8628964025,"17547":2.8616368492,"17548":2.8604474196,"17549":2.8593282724,"17550":2.8582795115,"17551":2.8573011814,"17552":2.8563932636,"17553":2.8555556727,"17554":2.8547882526,"17555":2.8540907738,"17556":2.8534629304,"17557":2.8529043381,"17558":2.8524145315,"17559":2.8519929623,"17560":2.8516389976,"17561":2.8513519192,"17562":2.8511309235,"17563":2.8509751212,"17564":2.8508835386,"17565":2.8508551183,"17566":2.8508887216,"17567":2.8509831306,"17568":2.8511370517,"17569":2.8513491179,"17570":2.851617894,"17571":2.8519418802,"17572":2.8523195177,"17573":2.852749194,"17574":2.8532292488,"17575":2.8537579807,"17576":2.8543336536,"17577":2.8549545047,"17578":2.8556187513,"17579":2.8563245987,"17580":2.8570702478,"17581":2.8578539035,"17582":2.8586737819,"17583":2.8595281194,"17584":2.8604151803,"17585":2.861333265,"17586":2.8622807181,"17587":2.8632559362,"17588":2.8642573754,"17589":2.8652835586,"17590":2.8663330823,"17591":2.8674046231,"17592":2.8684969438,"17593":2.869608899,"17594":2.8707394399,"17595":2.8718876193,"17596":2.8730525947,"17597":2.8742336324,"17598":2.8754301091,"17599":2.8766415146,"17600":2.8778674521,"17601":2.8791076387,"17602":2.8803619053,"17603":2.8816301952,"17604":2.8829125625,"17605":2.884209169,"17606":2.8855202812,"17607":2.8868462662,"17608":2.8881875868,"17609":2.889544796,"17610":2.8909185311,"17611":2.8923095067,"17612":2.8937185075,"17613":2.8951463806,"17614":2.8965940269,"17615":2.8980623923,"17616":2.8995524589,"17617":2.9010652348,"17618":2.9026017448,"17619":2.9041630199,"17620":2.905750087,"17621":2.9073639591,"17622":2.9090056238,"17623":2.9106760337,"17624":2.9123760954,"17625":2.9141066596,"17626":2.9158685106,"17627":2.9176623565,"17628":2.9194888197,"17629":2.9213484278,"17630":2.9232416043,"17631":2.9251686609,"17632":2.927129789,"17633":2.9291250531,"17634":2.9311543839,"17635":2.9332175723,"17636":2.9353142644,"17637":2.9374439566,"17638":2.9396059927,"17639":2.9417995602,"17640":2.9440236889,"17641":2.9462772497,"17642":2.9485589544,"17643":2.9508673562,"17644":2.9532008516,"17645":2.9555576825,"17646":2.9579359402,"17647":2.9603335693,"17648":2.9627483728,"17649":2.965178019,"17650":2.9676200475,"17651":2.9700718777,"17652":2.972530817,"17653":2.9749940702,"17654":2.9774587497,"17655":2.9799218858,"17656":2.9823804383,"17657":2.9848313078,"17658":2.9872713482,"17659":2.9896973794,"17660":2.9921062005,"17661":2.9944946031,"17662":2.9968593851,"17663":2.9991973641,"17664":3.0015053911,"17665":3.0037803645,"17666":3.0060192437,"17667":3.0082190623,"17668":3.010376942,"17669":3.0124901052,"17670":3.0145558873,"17671":3.016571749,"17672":3.0185352881,"17673":3.02044425,"17674":3.0222965386,"17675":3.0240902262,"17676":3.0258235618,"17677":3.0274949801,"17678":3.0291031085,"17679":3.0306467739,"17680":3.0321250082,"17681":3.0335370535,"17682":3.0348823656,"17683":3.0361606171,"17684":3.0373716996,"17685":3.0385157242,"17686":3.0395930222,"17687":3.0406041438,"17688":3.0415498563,"17689":3.0424311417,"17690":3.0432491925,"17691":3.0440054076,"17692":3.0447013862,"17693":3.0453389222,"17694":3.0459199967,"17695":3.0464467704,"17696":3.0469215746,"17697":3.0473469024,"17698":3.0477253985,"17699":3.0480598488,"17700":3.0483531693,"17701":3.0486083944,"17702":3.0488286649,"17703":3.0490172157,"17704":3.0493056451,"17705":3.0508587335,"17706":3.0534040214,"17707":3.057081398,"17708":3.0618237822,"17709":3.067666787,"17710":3.0745938922,"17711":3.0826138607,"17712":3.0917220314,"17713":3.101919673,"17714":3.1132043049,"17715":3.1255745339,"17716":3.1390276317,"17717":3.1535607403,"17718":3.1691702624,"17719":3.1858521587,"17720":3.2036017906,"17721":3.2224139889,"17722":3.2422830098,"17723":3.2632025456,"17724":3.285165708,"17725":3.3081650248,"17726":3.3321924296,"17727":3.3572392548,"17728":3.3832962229,"17729":3.4103534392,"17730":3.4384003839,"17731":3.4674259051,"17732":3.4974182121,"17733":3.5283648691,"17734":3.5602527899,"17735":3.593068233,"17736":3.6267967981,"17737":3.6614234228,"17738":3.696932381,"17739":3.7333072821,"17740":3.7705310714,"17741":3.8085860327,"17742":3.8474537907,"17743":3.8871153162,"17744":3.9275509318,"17745":3.9687403202,"17746":4.0106625323,"17747":4.0532959991,"17748":4.096618543,"17749":4.1406073923,"17750":4.1852391962,"17751":4.2304900429,"17752":4.2763354774,"17753":4.3227505222,"17754":4.3697096989,"17755":4.4171870511,"17756":4.4651561692,"17757":4.5135902158,"17758":4.5624619525,"17759":4.6117437676,"17760":4.6614077056,"17761":4.7114254978,"17762":4.7617685933,"17763":4.8124081902,"17764":4.8633152684,"17765":4.9144606222,"17766":4.9658148936,"17767":5.0173486057,"17768":5.0690321954,"17769":5.1208360473,"17770":5.1727305271,"17771":5.2246860155,"17772":5.2766729412,"17773":5.3286618134,"17774":5.3806232536,"17775":5.4325280269,"17776":5.4843470727,"17777":5.536051534,"17778":5.5876127857,"17779":5.6390024624,"17780":5.6901924845,"17781":5.7411550836,"17782":5.7918628267,"17783":5.8422886383,"17784":5.8924058216,"17785":5.9421880786,"17786":5.9916095277,"17787":6.0406447208,"17788":6.0892686584,"17789":6.1374568032,"17790":6.1851850924,"17791":6.2324299488,"17792":6.2791682897,"17793":6.3253775354,"17794":6.3710356154,"17795":6.4161209743,"17796":6.4606125758,"17797":6.5044899062,"17798":6.5477329761,"17799":6.5903223218,"17800":6.6322390063,"17801":6.6734646197,"17802":6.7139812788,"17803":6.7537716269,"17804":6.7928188334,"17805":6.8311065928,"17806":6.8686191251,"17807":6.9053411755,"17808":6.9412580156,"17809":6.9763554449,"17810":7.0106197935,"17811":7.0440379253,"17812":7.0765972435,"17813":7.1082856965,"17814":7.1390917859,"17815":7.1690045762,"17816":7.198013706,"17817":7.2261094013,"17818":7.2532824908,"17819":7.2795244231,"17820":7.3048272861,"17821":7.3291838271,"17822":7.352587476,"17823":7.3750323696,"17824":7.3965133779,"17825":7.4170261324,"17826":7.4365670547,"17827":7.4551333874,"17828":7.4727232254,"17829":7.4893355483,"17830":7.5049702528,"17831":7.519628185,"17832":7.5333111726,"17833":7.5460220566,"17834":7.5577647219,"17835":7.5685441266,"17836":7.5783663297,"17837":7.5872385162,"17838":7.59516902,"17839":7.6021673455,"17840":7.6082441841,"17841":7.6134114251,"17842":7.6176821647,"17843":7.6210707093,"17844":7.6235925755,"17845":7.6252644846,"17846":7.6261043511,"17847":7.6261312673,"17848":7.625365481,"17849":7.6238283683,"17850":7.6215424008,"17851":7.6185311055,"17852":7.6148190203,"17853":7.6104316434,"17854":7.6053953768,"17855":7.5997374657,"17856":7.5934859312,"17857":7.5866694997,"17858":7.5793175271,"17859":7.571459921,"17860":7.5631270579,"17861":7.5543496948,"17862":7.5451588788,"17863":7.535585856,"17864":7.5256619778,"17865":7.5154186072,"17866":7.5048870237,"17867":7.494098329,"17868":7.483083353,"17869":7.471872562,"17870":7.4604959677,"17871":7.4489830392,"17872":7.4373626177,"17873":7.4256628347,"17874":7.4139110356,"17875":7.4021337064,"17876":7.3903564069,"17877":7.3786037086,"17878":7.3668991392,"17879":7.3552651346,"17880":7.3437229973,"17881":7.3322928592,"17882":7.3209936526,"17883":7.3098430897,"17884":7.2988576483,"17885":7.2880525667,"17886":7.2774418454,"17887":7.2670382565,"17888":7.2568533607,"17889":7.2468975325,"17890":7.2371799925,"17891":7.2277088447,"17892":7.2184911215,"17893":7.2095328346,"17894":7.2008390319,"17895":7.1924138597,"17896":7.1842606297,"17897":7.1763818899,"17898":7.1687794989,"17899":7.1614547056,"17900":7.1544082297,"17901":7.1476403417,"17902":7.1411509421,"17903":7.1349396422,"17904":7.1290058412,"17905":7.1233488032,"17906":7.1179677306,"17907":7.1128618342,"17908":7.1080303985,"17909":7.1034728413,"17910":7.0991887671,"17911":7.0951780129,"17912":7.0914406868,"17913":7.0879771973,"17914":7.084788274,"17915":7.0818749785,"17916":7.0792387048,"17917":7.0768811702,"17918":7.0748043945,"17919":7.0730106691,"17920":7.071164369,"17921":7.0688196527,"17922":7.0658196793,"17923":7.0621596374,"17924":7.057841544,"17925":7.0528662448,"17926":7.0472350114,"17927":7.040949222,"17928":7.0340104248,"17929":7.0264203248,"17930":7.0181807863,"17931":7.0092938315,"17932":6.9997616408,"17933":6.9895865519,"17934":6.9787710595,"17935":6.9673178152,"17936":6.9552296264,"17937":6.942509456,"17938":6.9291604219,"17939":6.9151857961,"17940":6.9005890027,"17941":6.8853736176,"17942":6.8695433688,"17943":6.8531021366,"17944":6.8360539527,"17945":6.8184029994,"17946":6.8001536089,"17947":6.7813102627,"17948":6.7618775907,"17949":6.7418603705,"17950":6.7212635262,"17951":6.7000921281,"17952":6.6783513914,"17953":6.6560466759,"17954":6.6331834845,"17955":6.6097674624,"17956":6.5858043966,"17957":6.5613002142,"17958":6.5362609818,"17959":6.5106929042,"17960":6.4846023228,"17961":6.4579957142,"17962":6.4308796906,"17963":6.403260998,"17964":6.3751465153,"17965":6.3465432528,"17966":6.3174583508,"17967":6.2878990781,"17968":6.2578728305,"17969":6.2273871298,"17970":6.1964496212,"17971":6.1650680728,"17972":6.1332503734,"17973":6.101004531,"17974":6.0683386711,"17975":6.0352610351,"17976":6.0017799781,"17977":5.9679039677,"17978":5.9336415817,"17979":5.8990015061,"17980":5.8639925339,"17981":5.8286235627,"17982":5.7929035926,"17983":5.7568417242,"17984":5.7204471559,"17985":5.6837291825,"17986":5.6466971925,"17987":5.6093606662,"17988":5.5717291732,"17989":5.5338123704,"17990":5.495619999,"17991":5.4571618828,"17992":5.4184479253,"17993":5.3794881076,"17994":5.3402924859,"17995":5.3008711893,"17996":5.2612344167,"17997":5.2213924347,"17998":5.1813555746,"17999":5.1411342303,"18000":20.0438443368,"18001":20.0290032334,"18002":20.014162338,"18003":19.9993213386,"18004":19.9844803912,"18005":19.9696394178,"18006":19.9547984574,"18007":19.9399574905,"18008":19.9251165268,"18009":19.9102755615,"18010":19.895434597,"18011":19.8805936322,"18012":19.8657526675,"18013":19.8509117027,"18014":19.836070738,"18015":19.8212297732,"18016":19.8063888085,"18017":19.7915478438,"18018":19.776706879,"18019":19.7618659143,"18020":19.7470249495,"18021":20.1696519786,"18022":20.8383547543,"18023":21.3840196567,"18024":21.9912034957,"18025":22.5676278664,"18026":23.1594319713,"18027":23.7435462091,"18028":24.3315053804,"18029":24.917542085,"18030":25.5045400229,"18031":26.1049761091,"18032":26.7201066055,"18033":27.3278898969,"18034":27.9393467908,"18035":28.5489668834,"18036":29.1595053767,"18037":29.7695846696,"18038":30.3798935627,"18039":30.9900876558,"18040":31.6003391488,"18041":32.6508663046,"18042":34.4939556632,"18043":35.9407639205,"18044":37.5857127284,"18045":39.131591261,"18046":40.7270049312,"18047":42.2976510326,"18048":43.8806809185,"18049":45.4575189121,"18050":47.0374528518,"18051":48.64045237,"18052":50.3233408613,"18053":51.9662848661,"18054":53.6292011141,"18055":55.2821312405,"18056":56.9400544277,"18057":58.5954810845,"18058":60.2521560065,"18059":61.9082067959,"18060":63.5645696517,"18061":65.3328287494,"18062":67.8575187212,"18063":70.003993256,"18064":72.3395755093,"18065":74.5806039034,"18066":76.868909227,"18067":79.1335760859,"18068":81.4100621772,"18069":83.6806386522,"18070":85.9541699355,"18071":88.2296385223,"18072":90.6134091068,"18073":92.9430286925,"18074":95.2997237776,"18075":97.642881113,"18076":99.9928073232,"18077":102.339349096,"18078":104.6875830875,"18079":107.0349709697,"18080":109.3827819065,"18081":111.730381316,"18082":113.3529586721,"18083":115.291264615,"18084":117.0717062645,"18085":118.9310800606,"18086":120.7509877835,"18087":122.590628543,"18088":124.4204027842,"18089":126.2551102846,"18090":128.0873511553,"18091":129.9208253409,"18092":131.6440952456,"18093":133.4028980722,"18094":135.1439344379,"18095":136.8938540341,"18096":138.639332015,"18097":140.3870308035,"18098":142.1336191883,"18099":143.8807627749,"18100":145.6276287606,"18101":147.3746335468,"18102":147.8595076643,"18103":148.5715875103,"18104":149.170064492,"18105":149.8253429059,"18106":150.4522206037,"18107":151.0932986595,"18108":151.7272765364,"18109":152.3648045027,"18110":153.0005574243,"18111":153.6371978682,"18112":153.9664040877,"18113":154.2958321878,"18114":154.6251493475,"18115":154.9545219774,"18116":155.2838668722,"18117":155.6132256346,"18118":155.9425774632,"18119":156.2719327587,"18120":156.6012863207,"18121":156.9306407495,"18122":156.4207691265,"18123":155.712133758,"18124":155.1028802622,"18125":154.44393583,"18126":153.8098368661,"18127":153.163315168,"18128":152.523004837,"18129":151.8795888225,"18130":151.2377256497,"18131":150.595086056,"18132":149.8486441521,"18133":149.0434009752,"18134":148.2675584347,"18135":147.477015576,"18136":146.6938228765,"18137":145.9069550973,"18138":145.121924858,"18139":144.3359758487,"18140":143.5504862244,"18141":142.7647669077,"18142":141.7853788591,"18143":140.6046965948,"18144":139.5246614384,"18145":138.3943027281,"18146":137.2891057947,"18147":136.1713279729,"18148":135.0598405953,"18149":133.9452079955,"18150":132.8321480068,"18151":131.7183017126,"18152":130.5762757603,"18153":129.382622172,"18154":128.2147824017,"18155":127.0340357224,"18156":125.8597424976,"18157":124.6822225456,"18158":123.5063159572,"18159":122.3296026869,"18160":121.1532927576,"18161":119.9767811578,"18162":118.8339750631,"18163":117.799133561,"18164":116.7103097626,"18165":115.6484771123,"18166":114.573148888,"18167":113.5045684507,"18168":112.4326141199,"18169":111.3623467358,"18170":110.2912358783,"18171":109.2205467576,"18172":108.154361168,"18173":107.1201032092,"18174":106.069881435,"18175":105.0276415686,"18176":103.9814107482,"18177":102.9371754048,"18178":101.8919423229,"18179":100.8472081103,"18180":99.802224463,"18181":98.7573655331,"18182":97.7248074823,"18183":97.0817226025,"18184":96.2439011373,"18185":95.5034479648,"18186":94.7143106459,"18187":93.9495154002,"18188":93.1725491179,"18189":92.4016683539,"18190":91.6277448307,"18191":90.8553426872,"18192":90.0821798538,"18193":89.4203487948,"18194":88.7100100054,"18195":88.0239250812,"18196":87.3257132244,"18197":86.6335648339,"18198":85.9383847102,"18199":85.2447204531,"18200":84.5502982628,"18201":83.8562550391,"18202":83.162022332,"18203":82.8029698393,"18204":82.336163931,"18205":81.9232347306,"18206":81.4833671762,"18207":81.0569687987,"18208":80.6238358328,"18209":80.1940701612,"18210":79.7626208424,"18211":79.3320133471,"18212":78.9009849401,"18213":78.5327949613,"18214":78.1532267195,"18215":77.7793476091,"18216":77.4026239331,"18217":77.0273225399,"18218":76.6513100052,"18219":76.2756530413,"18220":75.8998182921,"18221":75.5240724355,"18222":75.1482821325,"18223":74.9842412495,"18224":74.8201892548,"18225":74.656142816,"18226":74.4920935993,"18227":74.3280457715,"18228":74.1639972492,"18229":73.9999490742,"18230":73.8359007255,"18231":73.6718524637,"18232":73.5078041585,"18233":73.3862655461,"18234":73.2747950029,"18235":73.1582904252,"18236":73.0443028647,"18237":72.9290567956,"18238":72.8144399808,"18239":72.6995085388,"18240":72.5847344105,"18241":72.4698816253,"18242":72.3550681685,"18243":72.2765297913,"18244":72.2184170397,"18245":72.1500914752,"18246":72.0868723172,"18247":72.0210999559,"18248":71.9566041963,"18249":71.8914701358,"18250":71.8266552258,"18251":71.7616807405,"18252":71.6967860428,"18253":71.6417824685,"18254":71.5971118202,"18255":71.5472747089,"18256":71.5000208291,"18257":71.4514753336,"18258":71.4035756459,"18259":71.3553530543,"18260":71.3072919146,"18261":71.259150049,"18262":71.2110485464,"18263":71.1440022392,"18264":71.0429017014,"18265":70.9588282788,"18266":70.8662412986,"18267":70.7779110973,"18268":70.6874525065,"18269":70.5980581104,"18270":70.508131617,"18271":70.4184711723,"18272":70.3286777032,"18273":70.2336561986,"18274":70.121583249,"18275":70.0180360219,"18276":69.9102259336,"18277":69.8045472759,"18278":69.6978029029,"18279":69.5915913875,"18280":69.4851134433,"18281":69.3787687135,"18282":69.2723573765,"18283":69.1402087212,"18284":68.8340917161,"18285":68.6149588859,"18286":68.3523339682,"18287":68.1114550943,"18288":67.8597031985,"18289":67.6133878136,"18290":67.3643541733,"18291":67.1166796606,"18292":66.8683255842,"18293":66.6174021017,"18294":66.2746693071,"18295":65.9778411685,"18296":65.6580607019,"18297":65.3497563994,"18298":65.0357140148,"18299":64.7245406712,"18300":64.4119328072,"18301":64.1000422034,"18302":63.7877929694,"18303":63.4757230505,"18304":63.0510751517,"18305":62.6754589317,"18306":62.2753268722,"18307":61.8874527325,"18308":61.4934496329,"18309":61.1025110133,"18310":60.7100401537,"18311":60.318335414,"18312":59.9262476144,"18313":59.5343513448,"18314":59.0924953397,"18315":58.6667149219,"18316":58.2328967104,"18317":57.8030973958,"18318":57.3712886328,"18319":56.940484594,"18320":56.509178193,"18321":56.0781229732,"18322":55.6469421628,"18323":55.2158241476,"18324":54.7691120748,"18325":54.3252169796,"18326":53.8799133957,"18327":53.4353140561,"18328":52.9903625943,"18329":52.5455871936,"18330":52.1007237624,"18331":51.6559043464,"18332":51.2110629228,"18333":50.7662325031,"18334":50.3802115597,"18335":49.9941933673,"18336":49.6081737994,"18337":49.2221549193,"18338":48.8361356952,"18339":48.4501166432,"18340":48.0640975051,"18341":47.6780784101,"18342":47.2920592935,"18343":46.9060401877,"18344":46.597699069,"18345":46.3077553723,"18346":46.0086129646,"18347":45.7140699124,"18348":45.4172271824,"18349":45.1215342914,"18350":44.8252664808,"18351":44.52928613,"18352":44.2331620494,"18353":43.9371098337,"18354":43.6760536724,"18355":43.4347209701,"18356":43.1835265383,"18357":42.9372629713,"18358":42.6885339719,"18359":42.4410376886,"18360":42.1929250473,"18361":41.945120585,"18362":41.6971620332,"18363":41.4492805262,"18364":41.2528930292,"18365":41.1100393462,"18366":40.9404187562,"18367":40.7841816198,"18368":40.6212527565,"18369":40.4616697567,"18370":40.3004138251,"18371":40.1399943595,"18372":39.9791566608,"18373":39.8185280787,"18374":39.6814678436,"18375":39.5870711173,"18376":39.4713426366,"18377":39.3662800332,"18378":39.2558844911,"18379":39.1481554183,"18380":39.0390931108,"18381":38.9306974207,"18382":38.8219684219,"18383":38.7134060775,"18384":38.6226485114,"18385":38.5894300912,"18386":38.5274420981,"18387":38.4798388915,"18388":38.4250432916,"18389":38.3738438883,"18390":38.3208463867,"18391":38.2687479343,"18392":38.2161999573,"18393":38.1638767425,"18394":38.1181100747,"18395":38.1174148615,"18396":38.0941839209,"18397":38.0822208441,"18398":38.0646238354,"18399":38.0498437926,"18400":38.0336552668,"18401":38.0181709826,"18402":38.0023345776,"18403":37.9866742329,"18404":37.9720224376,"18405":37.9919569105,"18406":37.9945982493,"18407":38.0058861552,"18408":38.0128507776,"18409":38.0219770417,"18410":38.0300224849,"18411":38.0386083386,"18412":38.046923987,"18413":38.0553747381,"18414":38.0637579378,"18415":38.0956205805,"18416":38.1172561255,"18417":38.1440052193,"18418":38.1681975387,"18419":38.1936682453,"18420":38.2184997583,"18421":38.2436508681,"18422":38.2686421795,"18423":38.2937133901,"18424":38.3187446511,"18425":38.3402854217,"18426":38.3629445687,"18427":38.3850445275,"18428":38.4074240804,"18429":38.4296638363,"18430":38.4519734907,"18431":38.4742481958,"18432":38.4965403755,"18433":38.518823818,"18434":38.5411116291,"18435":38.5617951402,"18436":38.5827681244,"18437":38.603596372,"18438":38.6244969879,"18439":38.6453614197,"18440":38.6662439436,"18441":38.6871174214,"18442":38.7079954222,"18443":38.7288711615,"18444":38.7497480316,"18445":38.751975515,"18446":38.7542032811,"18447":38.7564309058,"18448":38.7586586012,"18449":38.7608862613,"18450":38.7631139391,"18451":38.765341608,"18452":38.7675692813,"18453":38.7697969524,"18454":38.7720246247,"18455":38.7627574543,"18456":38.7507678216,"18457":38.7401394201,"18458":38.728830403,"18459":38.7178616937,"18460":38.7067228305,"18461":38.6956690443,"18462":38.6845727196,"18463":38.6734976641,"18464":38.662411974,"18465":38.6404216266,"18466":38.6122917598,"18467":38.5872316527,"18468":38.5606366657,"18469":38.5348091187,"18470":38.5085978517,"18471":38.4825784447,"18472":38.4564631077,"18473":38.4303957357,"18474":38.4043043812,"18475":38.3703565004,"18476":38.3282314713,"18477":38.2901950163,"18478":38.2501142743,"18479":38.2110556758,"18480":38.1714860055,"18481":38.1321718711,"18482":38.0927299688,"18483":38.0533519504,"18484":38.0139419901,"18485":37.97094898,"18486":37.9214697472,"18487":37.8752336258,"18488":37.8273759487,"18489":37.7803290494,"18490":37.7328767612,"18491":37.6856271675,"18492":37.6382762265,"18493":37.5909759592,"18494":37.543650355,"18495":37.4939616417,"18496":37.4366301662,"18497":37.3831200718,"18498":37.3276992869,"18499":37.2732338472,"18500":37.2182907349,"18501":37.1635864589,"18502":37.1087627647,"18503":37.0539987796,"18504":36.99920494,"18505":36.944205323,"18506":36.887708486,"18507":36.831960259,"18508":36.775837727,"18509":36.7199023475,"18510":36.6638733918,"18511":36.6078912242,"18512":36.5518856625,"18513":36.4958917978,"18514":36.4398920846,"18515":36.3838521237,"18516":36.3264507812,"18517":36.2697301294,"18518":36.2126691323,"18519":36.1557783079,"18520":36.0988023971,"18521":36.0418690295,"18522":35.9849143903,"18523":35.9279703869,"18524":35.8710210656,"18525":35.8140744032,"18526":35.7608629804,"18527":35.7060250067,"18528":35.6520003084,"18529":35.5975689724,"18530":35.5433409553,"18531":35.4890112788,"18532":35.4347324319,"18533":35.3804281703,"18534":35.326136616,"18535":35.271838708,"18536":35.2216796444,"18537":35.1701896707,"18538":35.119365152,"18539":35.0682079058,"18540":35.0172170234,"18541":34.966142959,"18542":34.9151104857,"18543":34.8640572168,"18544":34.8130143457,"18545":34.7619662757,"18546":34.7100278162,"18547":34.658248795,"18548":34.6063900546,"18549":34.5545711738,"18550":34.5027323632,"18551":34.4509035175,"18552":34.3990696894,"18553":34.3472383525,"18554":34.2954057699,"18555":34.2435738102,"18556":34.2016734732,"18557":34.1597732919,"18558":34.1178730327,"18559":34.0759728124,"18560":34.0340725727,"18561":33.9921723428,"18562":33.9502721079,"18563":33.9083718755,"18564":33.8664716419,"18565":33.8245714089,"18566":33.7853604327,"18567":33.7467863859,"18568":33.7078938745,"18569":33.6691605954,"18570":33.6303477001,"18571":33.5915746129,"18572":33.5527816216,"18573":33.5139985824,"18574":33.4752105672,"18575":33.43642504,"18576":33.40065086,"18577":33.3665718846,"18578":33.3316453069,"18579":33.2971425304,"18580":33.2624278533,"18581":33.2278191265,"18582":33.1931574245,"18583":33.1585222101,"18584":33.123873752,"18585":33.0892319157,"18586":33.0553961261,"18587":33.0224024787,"18588":32.9889877601,"18589":32.9557835772,"18590":32.9224741264,"18591":32.8892173096,"18592":32.8559341758,"18593":32.8226642004,"18594":32.7893876459,"18595":32.7561143809,"18596":32.7237005234,"18597":32.6928373824,"18598":32.6611988832,"18599":32.6299480631,"18600":32.5985034034,"18601":32.5671556635,"18602":32.5357594637,"18603":32.5043874939,"18604":32.473003409,"18605":32.4416253817,"18606":32.4102612247,"18607":32.3789529003,"18608":32.3476166596,"18609":32.3162943771,"18610":32.2849651155,"18611":32.2536393434,"18612":32.2223118265,"18613":32.1909851821,"18614":32.1596581014,"18615":32.1283312389,"18616":32.096999285,"18617":32.0656337559,"18618":32.0342850144,"18619":32.0029278791,"18620":31.9715749407,"18621":31.9402199038,"18622":31.9088659162,"18623":31.8775114039,"18624":31.846157154,"18625":31.8148027729,"18626":31.7834359521,"18627":31.7516751834,"18628":31.7201113886,"18629":31.6884491069,"18630":31.6568360686,"18631":31.6251984086,"18632":31.5935730595,"18633":31.561941555,"18634":31.5303131281,"18635":31.4986831624,"18636":31.4670539661,"18637":31.4347407139,"18638":31.4027253818,"18639":31.3705610896,"18640":31.3384712775,"18641":31.3063442253,"18642":31.2742357932,"18643":31.242118051,"18644":31.2100049639,"18645":31.1778895492,"18646":31.1457752983,"18647":31.1134010571,"18648":31.0811104881,"18649":31.048778083,"18650":31.016466596,"18651":30.9841446499,"18652":30.9518279333,"18653":30.919508602,"18654":30.8871905781,"18655":30.8548719005,"18656":30.8225535497,"18657":30.7861507393,"18658":30.750483184,"18659":30.7144480011,"18660":30.6785966321,"18661":30.6426533561,"18662":30.6067560336,"18663":30.5708357343,"18664":30.5349269234,"18665":30.4990123684,"18666":30.4631006854,"18667":30.4301544079,"18668":30.3972088484,"18669":30.3642629298,"18670":30.3313171908,"18671":30.2983713621,"18672":30.2654255782,"18673":30.2324797718,"18674":30.1995339767,"18675":30.166588176,"18676":30.1336423781,"18677":30.1002206996,"18678":30.0666863137,"18679":30.0332082815,"18680":29.9997020724,"18681":29.9662099518,"18682":29.9327107869,"18683":29.8992151442,"18684":29.8657177404,"18685":29.8322212171,"18686":29.7987242536,"18687":29.7654460028,"18688":29.732290544,"18689":29.6990736891,"18690":29.6658875323,"18691":29.6326860265,"18692":29.5994921952,"18693":29.5662945267,"18694":29.5330987767,"18695":29.4999020675,"18696":29.4667058379,"18697":29.4339180842,"18698":29.401554886,"18699":29.36897941,"18700":29.3365100729,"18701":29.3039876664,"18702":29.2714917946,"18703":29.2389826554,"18704":29.2064801499,"18705":29.1739743276,"18706":29.1414701637,"18707":29.1087020153,"18708":29.0754606021,"18709":29.0424558214,"18710":29.0093327244,"18711":28.9762687855,"18712":28.9431752676,"18713":28.9100965392,"18714":28.877010416,"18715":28.8439279902,"18716":28.8108437157,"18717":28.7772818507,"18718":28.7421814402,"18719":28.7078503024,"18720":28.6731345282,"18721":28.6386110722,"18722":28.6039914571,"18723":28.5694199216,"18724":28.5348243463,"18725":28.5002407909,"18726":28.4656512255,"18727":28.4309342157,"18728":28.3953351696,"18729":28.3601771417,"18730":28.3247986047,"18731":28.2895303222,"18732":28.2542069124,"18733":28.2189110663,"18734":28.1836014384,"18735":28.1482987014,"18736":28.1129925189,"18737":28.0776057136,"18738":28.0396241623,"18739":28.0029399839,"18740":27.9656071191,"18741":27.9285985975,"18742":27.8914279043,"18743":27.8543382969,"18744":27.8172081466,"18745":27.7800982677,"18746":27.7429782531,"18747":27.7058633064,"18748":27.6657661718,"18749":27.6269678954,"18750":27.5875201899,"18751":27.5483971989,"18752":27.5091118507,"18753":27.4699076811,"18754":27.4306629222,"18755":27.391438458,"18756":27.3522038464,"18757":27.3129743085,"18758":27.2657949208,"18759":27.221171295,"18760":27.1752697882,"18761":27.130007222,"18762":27.0844251854,"18763":27.039002884,"18764":26.9935007151,"18765":26.9480384799,"18766":26.9025562778,"18767":26.8570840592,"18768":26.8032897127,"18769":26.7509949465,"18770":26.6979503901,"18771":26.6452807288,"18772":26.59242362,"18773":26.5396602349,"18774":26.486849988,"18775":26.434063172,"18776":26.3812646405,"18777":26.3284719668,"18778":26.2728525399,"18779":26.2172345774,"18780":26.1616158827,"18781":26.105997554,"18782":26.0503790424,"18783":25.9947606222,"18784":25.9391421563,"18785":25.8835237133,"18786":25.8279052588,"18787":25.7722868101,"18788":25.7160155537,"18789":25.6595896871,"18790":25.6032411256,"18791":25.5468539115,"18792":25.4904860237,"18793":25.4341084727,"18794":25.3777357534,"18795":25.3213606182,"18796":25.264986691,"18797":25.2086121598,"18798":25.150108608,"18799":25.0904071613,"18800":25.0313046621,"18801":24.9719026891,"18802":24.9126504531,"18803":24.8533233485,"18804":24.7940336782,"18805":24.7347252908,"18806":24.675426262,"18807":24.6161225538,"18808":24.5572482526,"18809":24.4988162744,"18810":24.4401631347,"18811":24.3816205757,"18812":24.3230227264,"18813":24.2644525223,"18814":24.2058684955,"18815":24.1472913801,"18816":24.088710809,"18817":24.0301319658,"18818":23.9731168245,"18819":23.9189183337,"18820":23.8633115177,"18821":23.8084088644,"18822":23.7531541297,"18823":23.6980754356,"18824":23.6429087213,"18825":23.5877860171,"18826":23.5326413078,"18827":23.4775076011,"18828":23.4229144175,"18829":23.3700790629,"18830":23.3163647938,"18831":23.263089982,"18832":23.2095954416,"18833":23.1562107654,"18834":23.1027711571,"18835":23.0493590149,"18836":22.9959331397,"18837":22.9425141309,"18838":22.8905701503,"18839":22.8486075003,"18840":22.8016541849,"18841":22.7571962022,"18842":22.7114905532,"18843":22.6664087374,"18844":22.6210150049,"18845":22.5757772308,"18846":22.5304614775,"18847":22.4851847138,"18848":22.4399867274,"18849":22.3978940608,"18850":22.3542487343,"18851":22.3113797377,"18852":22.2681225762,"18853":22.2250594971,"18854":22.1818993768,"18855":22.1387877771,"18856":22.0956519171,"18857":22.0525281873,"18858":22.0093983924,"18859":21.9806440705,"18860":21.9456292664,"18861":21.9137447034,"18862":21.8802950198,"18863":21.8476278965,"18864":21.8145694931,"18865":21.7817067297,"18866":21.7487461464,"18867":21.715834473,"18868":21.6828983446,"18869":21.6526906078,"18870":21.6216037044,"18871":21.5909563844,"18872":21.5600892727,"18873":21.5293320568,"18874":21.498519893,"18875":21.4677352031,"18876":21.4369367763,"18877":21.406145218,"18878":21.3753502254,"18879":21.3532291887,"18880":21.3295462905,"18881":21.3066443231,"18882":21.2833518902,"18883":21.2602546901,"18884":21.2370598736,"18885":21.2139138653,"18886":21.1907434529,"18887":21.1675852425,"18888":21.1444209311,"18889":21.1259360931,"18890":21.1074497298,"18891":21.0889641292,"18892":21.0704781472,"18893":21.0519923559,"18894":21.0335064693,"18895":21.0150206303,"18896":20.9965347675,"18897":20.9780489166,"18898":20.9595630598,"18899":20.9539122553,"18900":20.9513013294,"18901":20.9471704642,"18902":20.9437995686,"18903":20.9400486883,"18904":20.9364878003,"18905":20.9328319161,"18906":20.9292235301,"18907":20.9255913949,"18908":20.9219711344,"18909":20.9183452338,"18910":20.9147224691,"18911":20.9110981365,"18912":20.9074745878,"18913":20.9038506472,"18914":20.9002269025,"18915":20.8966030599,"18916":20.8929792662,"18917":20.8893554481,"18918":20.8857316422,"18919":20.8812110412,"18920":20.8757591623,"18921":20.8707729224,"18922":20.865553863,"18923":20.8604512133,"18924":20.8552903587,"18925":20.8501586066,"18926":20.8450123033,"18927":20.8398732756,"18928":20.8347306101,"18929":20.8293877124,"18930":20.8236802134,"18931":20.8181550151,"18932":20.8125386664,"18933":20.8069678929,"18934":20.8013743319,"18935":20.7957921646,"18936":20.7902043004,"18937":20.7846192847,"18938":20.7790328447,"18939":20.7714993642,"18940":20.7577048943,"18941":20.7470409191,"18942":20.7348116965,"18943":20.7233650976,"18944":20.7115271868,"18945":20.699884932,"18946":20.6881448492,"18947":20.6764536804,"18948":20.6647380546,"18949":20.6529782549,"18950":20.640831625,"18951":20.6288784103,"18952":20.616828488,"18953":20.6048269194,"18954":20.592801174,"18955":20.580787517,"18956":20.5687678158,"18957":20.5567511367,"18958":20.5447329465,"18959":20.5326949004,"18960":20.5200072141,"18961":20.5076443479,"18962":20.4951190717,"18963":20.4826750005,"18964":20.4701903268,"18965":20.4577259543,"18966":20.4452514312,"18967":20.4327819835,"18968":20.420309998,"18969":20.4078392814,"18970":20.3953553131,"18971":20.3828771566,"18972":20.3703960942,"18973":20.3579164848,"18974":20.3454361489,"18975":20.3329561762,"18976":20.3204760219,"18977":20.3079959584,"18978":20.2955158495,"18979":20.2830357633,"18980":20.2718757662,"18981":20.2602914568,"18982":20.2489193036,"18983":20.2374410722,"18984":20.22601588,"18985":20.2145641681,"18986":20.2031257161,"18987":20.1916806342,"18988":20.1802388672,"18989":20.1687954427,"18990":20.1561678625,"18991":20.143753165,"18992":20.1312320262,"18993":20.118764108,"18994":20.1062695795,"18995":20.0937883562,"18996":20.0813004803,"18997":20.0688159307,"18998":20.056329718,"18999":20.0438443368,"19000":40.2844153732,"19001":40.2487734687,"19002":40.2131529283,"19003":40.1775649356,"19004":40.1419980859,"19005":40.1064644237,"19006":40.0709514375,"19007":40.0354724473,"19008":40.0000135537,"19009":39.9645896237,"19010":39.9291850879,"19011":39.8938166629,"19012":39.8584667889,"19013":39.8231543765,"19014":39.7878595113,"19015":39.752603688,"19016":39.7173642255,"19017":39.6821656421,"19018":39.6469820267,"19019":39.6118414125,"19020":39.5767141418,"19021":39.5412170919,"19022":39.5047505571,"19023":39.4672438501,"19024":39.4286795423,"19025":39.3890953929,"19026":39.3484477276,"19027":39.3067844381,"19028":39.2640546819,"19029":39.2203132682,"19030":39.1755022087,"19031":39.1296706473,"19032":39.0827283861,"19033":39.0369538409,"19034":39.0020951875,"19035":38.990448777,"19036":39.0114298842,"19037":39.0715034336,"19038":39.1749357929,"19039":39.3242440342,"19040":39.5205818597,"19041":39.7636256188,"19042":40.0515718558,"19043":40.3828288088,"19044":40.7556635397,"19045":41.1679415524,"19046":41.6172963021,"19047":42.1011889515,"19048":42.6169713317,"19049":43.1619332756,"19050":43.7333411045,"19051":44.3284450323,"19052":44.944457148,"19053":45.5787111775,"19054":46.2286386026,"19055":46.8917452592,"19056":47.565627818,"19057":48.2479796691,"19058":48.9365967819,"19059":49.6293817854,"19060":50.3243469061,"19061":51.019509926,"19062":51.7123086018,"19063":52.4008806178,"19064":53.0837562637,"19065":53.7595311501,"19066":54.4269266966,"19067":55.0847730956,"19068":55.7320079478,"19069":56.3676718458,"19070":56.9909046081,"19071":57.6009381655,"19072":58.1969949106,"19073":58.7784596729,"19074":59.3448393328,"19075":59.895714081,"19076":60.4307420315,"19077":60.9496532267,"19078":61.4522458514,"19079":61.9383820859,"19080":62.4079841135,"19081":62.8610301846,"19082":63.2982363421,"19083":63.7199225447,"19084":64.1261659399,"19085":64.5171114729,"19086":64.8929305418,"19087":65.2538275916,"19088":65.6000366925,"19089":65.9318198083,"19090":66.2494645002,"19091":66.5532815889,"19092":66.8437063406,"19093":67.1211370402,"19094":67.3859360166,"19095":67.6384787126,"19096":67.8791507424,"19097":68.1083461009,"19098":68.3264651396,"19099":68.5339126154,"19100":68.7310957762,"19101":68.9184225073,"19102":69.0974927873,"19103":69.269434946,"19104":69.4346550849,"19105":69.5934859475,"19106":69.746252718,"19107":69.8932637266,"19108":70.0348151264,"19109":70.171191883,"19110":70.3026688032,"19111":70.4295110132,"19112":70.552264384,"19113":70.6714034255,"19114":70.7871810058,"19115":70.8998039541,"19116":71.0094718171,"19117":71.1163701491,"19118":71.2206725808,"19119":71.3225408772,"19120":71.4221252215,"19121":71.5195643367,"19122":71.6157790326,"19123":71.7116978232,"19124":71.8075249239,"19125":71.9032851348,"19126":71.9990130481,"19127":72.0947203909,"19128":72.190406803,"19129":72.2860610454,"19130":72.3816634273,"19131":72.4771874293,"19132":72.5726995541,"19133":72.6682963099,"19134":72.7639592173,"19135":72.8596340198,"19136":72.9552687247,"19137":73.0508073341,"19138":73.1461922148,"19139":73.2413645442,"19140":73.3362649907,"19141":73.4308342316,"19142":73.5251966305,"19143":73.6196286876,"19144":73.714138799,"19145":73.8086432562,"19146":73.9030743293,"19147":73.997360754,"19148":74.0914333889,"19149":74.1852254827,"19150":74.2786737291,"19151":74.3717189224,"19152":74.4643335058,"19153":74.5565378227,"19154":74.6483031429,"19155":74.7395847366,"19156":74.830346857,"19157":74.9205581552,"19158":75.0101928798,"19159":75.099230798,"19160":75.18765727,"19161":75.275463208,"19162":75.3626132145,"19163":75.4489818513,"19164":75.5345448062,"19165":75.6193247394,"19166":75.7033421679,"19167":75.7866243774,"19168":75.8692028036,"19169":75.9511128116,"19170":76.0323930664,"19171":76.1130850459,"19172":76.1932281164,"19173":76.2728344198,"19174":76.3519423048,"19175":76.4306030222,"19176":76.5088666191,"19177":76.5867841822,"19178":76.6644068499,"19179":76.7417855131,"19180":76.8189704128,"19181":76.8960107906,"19182":76.9729428675,"19183":77.0494355063,"19184":77.1254266471,"19185":77.2009909312,"19186":77.2761771415,"19187":77.351038865,"19188":77.4256267897,"19189":77.4999890104,"19190":77.5741700078,"19191":77.6482101288,"19192":77.722145168,"19193":77.7959011953,"19194":77.8694673098,"19195":77.9428715496,"19196":78.0161328164,"19197":78.0892667297,"19198":78.1622842165,"19199":78.2351916987,"19200":78.3079910793,"19201":78.3806798672,"19202":78.4532513545,"19203":78.5253780338,"19204":78.5968979477,"19205":78.6678043166,"19206":78.7380883458,"19207":78.8077412216,"19208":78.8767527956,"19209":78.9451112342,"19210":79.0128027316,"19211":79.0798114197,"19212":79.1461194095,"19213":79.2116477263,"19214":79.2763390133,"19215":79.3401701683,"19216":79.4031203869,"19217":79.4651681671,"19218":79.526292056,"19219":79.5864707109,"19220":79.6456831429,"19221":79.703908952,"19222":79.7611285761,"19223":79.8171233556,"19224":79.871718558,"19225":79.9248870613,"19226":79.9766281682,"19227":80.0269407269,"19228":80.0758275679,"19229":80.1232938729,"19230":80.169346937,"19231":80.2139957959,"19232":80.257250992,"19233":80.2990842084,"19234":80.3394673717,"19235":80.3784096378,"19236":80.4159297164,"19237":80.4520462192,"19238":80.4867792485,"19239":80.5201497823,"19240":80.5521795375,"19241":80.5828907606,"19242":80.6123060468,"19243":80.6404138421,"19244":80.6671905752,"19245":80.6926512648,"19246":80.7168219553,"19247":80.7397264396,"19248":80.7613883757,"19249":80.7818303626,"19250":80.8010736648,"19251":80.8191378385,"19252":80.8360404049,"19253":80.8517871458,"19254":80.8663734425,"19255":80.8798055436,"19256":80.8920912846,"19257":80.9032342975,"19258":80.9132347684,"19259":80.9220889152,"19260":80.9297887537,"19261":80.9363218356,"19262":80.9416710215,"19263":80.9458321673,"19264":80.9488244484,"19265":80.9506257889,"19266":80.9511945147,"19267":80.9504857238,"19268":80.9484481403,"19269":80.9450248589,"19270":80.9401532946,"19271":80.9337652826,"19272":80.9257871463,"19273":80.9161447816,"19274":80.9047737611,"19275":80.8915892847,"19276":80.8764947921,"19277":80.859389794,"19278":80.8401685762,"19279":80.8187207356,"19280":80.794931354,"19281":80.7686812529,"19282":80.7398472416,"19283":80.7083267431,"19284":80.6741729811,"19285":80.6373009668,"19286":80.5975584213,"19287":80.5548011821,"19288":80.5088793235,"19289":80.4596410038,"19290":80.4069326053,"19291":80.3505994819,"19292":80.2904864702,"19293":80.2264411013,"19294":80.1583972976,"19295":80.0862258879,"19296":80.0097659961,"19297":79.9288635067,"19298":79.8433640419,"19299":79.753114949,"19300":79.6579653884,"19301":79.5577667238,"19302":79.4523727855,"19303":79.3416401066,"19304":79.2302502472,"19305":79.1197657847,"19306":79.0093060194,"19307":78.8989891816,"19308":78.7903550894,"19309":78.6817856517,"19310":78.5743413716,"19311":78.4674339799,"19312":78.3615994131,"19313":78.2560789031,"19314":78.1516540152,"19315":78.0476291926,"19316":77.9447098929,"19317":77.8422000669,"19318":77.7407845795,"19319":77.639788454,"19320":77.5398750417,"19321":77.4403914464,"19322":77.3419785333,"19323":77.244006411,"19324":77.1471073673,"19325":77.0506844804,"19326":76.9553317225,"19327":76.8604673832,"19328":76.7666602614,"19329":76.6733537427,"19330":76.5810915014,"19331":76.489342291,"19332":76.398624387,"19333":76.308432128,"19334":76.2192024216,"19335":76.130410605,"19336":76.0425188401,"19337":75.9550737123,"19338":75.8685168015,"19339":75.7824191017,"19340":75.6971972554,"19341":75.6124472476,"19342":75.5285609992,"19343":75.4451590569,"19344":75.3625354037,"19345":75.2802581276,"19346":75.1986594766,"19347":75.1174096616,"19348":75.0368294585,"19349":74.956609337,"19350":74.8770484553,"19351":74.7978588891,"19352":74.7193186065,"19353":74.641160474,"19354":74.563608922,"19355":74.4863713575,"19356":74.4096775302,"19357":74.3333007294,"19358":74.2574606263,"19359":74.1819467097,"19360":74.1069616496,"19361":74.032311702,"19362":73.9581832304,"19363":73.884398304,"19364":73.8110790624,"19365":73.7379724623,"19366":73.6652155941,"19367":73.5926630849,"19368":73.5204575287,"19369":73.4484626415,"19370":73.3768093624,"19371":73.3053731874,"19372":73.234273583,"19373":73.1633970795,"19374":73.0928300406,"19375":73.0224107688,"19376":72.9522241304,"19377":72.882179065,"19378":72.8123649965,"19379":72.7426967763,"19380":72.673256073,"19381":72.6039655494,"19382":72.5348992826,"19383":72.4659871885,"19384":72.3972793926,"19385":72.3286442975,"19386":72.2601247251,"19387":72.1916668866,"19388":72.1233249531,"19389":72.0550472479,"19390":71.9868832987,"19391":71.9187863583,"19392":71.850801114,"19393":71.7828854382,"19394":71.7150732462,"19395":71.6472788417,"19396":71.5795250265,"19397":71.5117804231,"19398":71.4440769836,"19399":71.3763842752,"19400":71.3087313853,"19401":71.2410909875,"19402":71.1734891049,"19403":71.1059013367,"19404":71.0383498495,"19405":70.9707793138,"19406":70.9032004046,"19407":70.8355961234,"19408":70.7679837314,"19409":70.7003467515,"19410":70.6327010047,"19411":70.565031799,"19412":70.4973530011,"19413":70.4296517653,"19414":70.3619401908,"19415":70.2941848559,"19416":70.2263881381,"19417":70.1585413013,"19418":70.0906531877,"19419":70.0227155836,"19420":69.9547361714,"19421":69.8867079666,"19422":69.8186373666,"19423":69.7505185961,"19424":69.6823570531,"19425":69.6141512925,"19426":69.5459072689,"19427":69.477621121,"19428":69.4092963277,"19429":69.3409298863,"19430":69.2725244689,"19431":69.2040778294,"19432":69.1355919203,"19433":69.0670651717,"19434":68.998498893,"19435":68.9298936379,"19436":68.8612510863,"19437":68.7925708615,"19438":68.7238531817,"19439":68.655098092,"19440":68.5863055274,"19441":68.5174756557,"19442":68.4486085493,"19443":68.3797042769,"19444":68.3107628549,"19445":68.2418019802,"19446":68.1728358137,"19447":68.1038659483,"19448":68.0348920688,"19449":67.9659142346,"19450":67.8969324348,"19451":67.8279466699,"19452":67.7589569416,"19453":67.6899632477,"19454":67.6209655904,"19455":67.5519748778,"19456":67.4830024239,"19457":67.4140499839,"19458":67.3451172084,"19459":67.2762041655,"19460":67.2073108434,"19461":67.1384372428,"19462":67.069583365,"19463":67.0007492084,"19464":66.9319347747,"19465":66.8631504171,"19466":66.7944102462,"19467":66.7257169395,"19468":66.657069963,"19469":66.588469422,"19470":66.5199152968,"19471":66.4514075901,"19472":66.3829463026,"19473":66.3145314329,"19474":66.2461629802,"19475":66.1778484141,"19476":66.109601465,"19477":66.0414251317,"19478":65.9733188168,"19479":65.9052826372,"19480":65.8373165703,"19481":65.7694206194,"19482":65.7015947851,"19483":65.633839066,"19484":65.5661534637,"19485":65.4985413924,"19486":65.4310117354,"19487":65.363566643,"19488":65.2962056863,"19489":65.22892895,"19490":65.1617364184,"19491":65.0946280933,"19492":65.0276039736,"19493":64.9606640605,"19494":64.8938083562,"19495":64.8270391131,"19496":64.7603653822,"19497":64.6937895421,"19498":64.6273111176,"19499":64.5609302037,"19500":64.4946467833,"19501":64.4284608577,"19502":64.3623724274,"19503":64.2963814911,"19504":64.2304880503,"19505":64.164692313,"19506":64.0989958621,"19507":64.0333991394,"19508":63.9679020575,"19509":63.9025046329,"19510":63.8372068634,"19511":63.7720087483,"19512":63.7069102888,"19513":63.6419114836,"19514":63.577012334,"19515":63.5122128798,"19516":63.4475144457,"19517":63.3829174213,"19518":63.3184217281,"19519":63.2540273827,"19520":63.1897343836,"19521":63.1255427294,"19522":63.0614524209,"19523":62.9974634572,"19524":62.9335758377,"19525":62.8697895632,"19526":62.8061010876,"19527":62.7425091179,"19528":62.6790138,"19529":62.6156151029,"19530":62.5523130333,"19531":62.4891075892,"19532":62.4259987703,"19533":62.3629865773,"19534":62.300071012,"19535":62.2372520723,"19536":62.1745258339,"19537":62.1118904174,"19538":62.0493458474,"19539":61.9868921197,"19540":61.9245292356,"19541":61.8622571947,"19542":61.8000759971,"19543":61.7379856429,"19544":61.6759861319,"19545":61.6140774643,"19546":61.5522604875,"19547":61.4905357271,"19548":61.4289032149,"19549":61.3673629432,"19550":61.3059149125,"19551":61.2445591235,"19552":61.1832955763,"19553":61.1221242709,"19554":61.0610452073,"19555":61.0000583855,"19556":60.93915438,"19557":60.8783256479,"19558":60.8175713414,"19559":60.7568916295,"19560":60.696286479,"19561":60.6357558959,"19562":60.5752998797,"19563":60.5149184297,"19564":60.4546115469,"19565":60.3943792303,"19566":60.3342189283,"19567":60.2741279936,"19568":60.214106016,"19569":60.1541530768,"19570":60.0942691604,"19571":60.0344542693,"19572":59.9747084037,"19573":59.9150315628,"19574":59.8554237474,"19575":59.7958849568,"19576":59.7364123324,"19577":59.6770019775,"19578":59.6176541819,"19579":59.5583678035,"19580":59.4991435628,"19581":59.4399805935,"19582":59.3808796352,"19583":59.3218399415,"19584":59.2628622537,"19585":59.203945841,"19586":59.1450906551,"19587":59.0862945757,"19588":59.0275579921,"19589":58.9688802797,"19590":58.9102621035,"19591":58.8517027992,"19592":58.7932030258,"19593":58.7347621335,"19594":58.6763807667,"19595":58.6180582893,"19596":58.5597945164,"19597":58.5015866977,"19598":58.4434349422,"19599":58.3853387342,"19600":58.3272986723,"19601":58.2693141446,"19602":58.2113857692,"19603":58.1535129288,"19604":58.0956962455,"19605":58.0379350967,"19606":57.980230096,"19607":57.9225805466,"19608":57.8649870731,"19609":57.8074490327,"19610":57.7499670817,"19611":57.6925405566,"19612":57.6351701337,"19613":57.5778551279,"19614":57.5205962385,"19615":57.4633927558,"19616":57.4062454094,"19617":57.3491534982,"19618":57.2921177851,"19619":57.2351375019,"19620":57.1782134319,"19621":57.1213447775,"19622":57.0645323532,"19623":57.0077753292,"19624":56.9510745517,"19625":56.8944291588,"19626":56.8378400401,"19627":56.7813066853,"19628":56.7248301161,"19629":56.6684093847,"19630":56.612045435,"19631":56.5557373125,"19632":56.499485992,"19633":56.4432904884,"19634":56.3871517746,"19635":56.3310688575,"19636":56.2750427576,"19637":56.2190731018,"19638":56.16316114,"19639":56.1073058198,"19640":56.0515081721,"19641":55.9957671655,"19642":55.9400838258,"19643":55.8844571254,"19644":55.8288880836,"19645":55.7733756825,"19646":55.7179209279,"19647":55.662523065,"19648":55.607183197,"19649":55.5519003452,"19650":55.4966754572,"19651":55.441507594,"19652":55.3863976933,"19653":55.3313448406,"19654":55.2763499051,"19655":55.2214120276,"19656":55.1665320505,"19657":55.1117130339,"19658":55.0569581682,"19659":55.0022668304,"19660":54.9476397239,"19661":54.8930761485,"19662":54.8385767782,"19663":54.7841409658,"19664":54.7297693274,"19665":54.6754612757,"19666":54.6212173667,"19667":54.5670342583,"19668":54.5129101935,"19669":54.4588444532,"19670":54.4048375242,"19671":54.3508889902,"19672":54.2969992317,"19673":54.243167899,"19674":54.1893953155,"19675":54.1356811862,"19676":54.0820257822,"19677":54.0284293111,"19678":53.9748924637,"19679":53.9214151155,"19680":53.8679974303,"19681":53.8146392559,"19682":53.7613407306,"19683":53.7081017367,"19684":53.6549223784,"19685":53.6018025701,"19686":53.5487422681,"19687":53.4957413635,"19688":53.4427995854,"19689":53.3899168743,"19690":53.3370932424,"19691":53.2843286874,"19692":53.2316232096,"19693":53.178976809,"19694":53.1263894856,"19695":53.0738612392,"19696":53.02139207,"19697":52.9689815899,"19698":52.9166290858,"19699":52.8643344019,"19700":52.8120975692,"19701":52.7599185816,"19702":52.7077974403,"19703":52.655734145,"19704":52.6037286958,"19705":52.5517810925,"19706":52.4998913354,"19707":52.448059674,"19708":52.3962867579,"19709":52.3445727443,"19710":52.292917602,"19711":52.2413213371,"19712":52.1897839485,"19713":52.1383054364,"19714":52.0868858008,"19715":52.0355250417,"19716":51.9842231591,"19717":51.9329806074,"19718":51.8817992096,"19719":51.8306794446,"19720":51.7796212168,"19721":51.7286245452,"19722":51.6776894261,"19723":51.6268158604,"19724":51.5760038478,"19725":51.5252533885,"19726":51.4745644825,"19727":51.4239372536,"19728":51.3733726368,"19729":51.3228708938,"19730":51.2724319724,"19731":51.2220558831,"19732":51.1717426239,"19733":51.1214921952,"19734":51.0713045708,"19735":51.0211797581,"19736":50.9711177736,"19737":50.9211186972,"19738":50.8711850531,"19739":50.821317587,"19740":50.7715161506,"19741":50.7217807725,"19742":50.6721114474,"19743":50.6225081759,"19744":50.5729709584,"19745":50.5234997942,"19746":50.474094684,"19747":50.4247556271,"19748":50.3754854524,"19749":50.32628519,"19750":50.2771547255,"19751":50.2280940815,"19752":50.1791032539,"19753":50.130182243,"19754":50.0813310492,"19755":50.032549672,"19756":49.9838381119,"19757":49.9351963684,"19758":49.8866319851,"19759":49.8381485713,"19760":49.7897460792,"19761":49.7414245177,"19762":49.6931838857,"19763":49.6450241827,"19764":49.5969454096,"19765":49.5489475654,"19766":49.501030651,"19767":49.4531946657,"19768":49.4054475042,"19769":49.3577940601,"19770":49.3102346184,"19771":49.2627691214,"19772":49.2153975813,"19773":49.1681199951,"19774":49.120936364,"19775":49.0738466871,"19776":49.0268509651,"19777":48.9799491974,"19778":48.9331440649,"19779":48.886437711,"19780":48.8398303776,"19781":48.7933220157,"19782":48.7469126358,"19783":48.7006022351,"19784":48.6543908149,"19785":48.6082783742,"19786":48.5622649139,"19787":48.5163504332,"19788":48.4705355524,"19789":48.4248209132,"19790":48.379206615,"19791":48.3336926385,"19792":48.288278989,"19793":48.2429656642,"19794":48.1977526638,"19795":48.1526399884,"19796":48.1076276394,"19797":48.0627156152,"19798":48.0179059376,"19799":47.9732013593,"19800":47.9286024042,"19801":47.8841089668,"19802":47.8397210688,"19803":47.7954387053,"19804":47.7512618766,"19805":47.7071905833,"19806":47.663224827,"19807":47.6193646059,"19808":47.5756095154,"19809":47.5319588094,"19810":47.4884123262,"19811":47.4449700973,"19812":47.4016321158,"19813":47.3583983837,"19814":47.3152689024,"19815":47.2722436701,"19816":47.2293226863,"19817":47.1865059516,"19818":47.1437919814,"19819":47.1011769146,"19820":47.0586598157,"19821":47.0162408718,"19822":46.973920047,"19823":46.9316973469,"19824":46.8895727693,"19825":46.8475463155,"19826":46.805617987,"19827":46.763787782,"19828":46.722055183,"19829":46.6804181087,"19830":46.6388760136,"19831":46.5974290062,"19832":46.5560770639,"19833":46.514820192,"19834":46.4736583899,"19835":46.4325916577,"19836":46.3916199969,"19837":46.3507434055,"19838":46.3099604797,"19839":46.2692606257,"19840":46.2286408775,"19841":46.1881018265,"19842":46.1476433535,"19843":46.107265483,"19844":46.0669682105,"19845":46.026751537,"19846":45.9866154622,"19847":45.9465599861,"19848":45.9065850172,"19849":45.8666875407,"19850":45.8268666659,"19851":45.7871225719,"19852":45.7474552233,"19853":45.7078646271,"19854":45.6683507818,"19855":45.6289136879,"19856":45.5895533452,"19857":45.5502697537,"19858":45.5110629135,"19859":45.4719191848,"19860":45.4328335931,"19861":45.3938066938,"19862":45.3548383748,"19863":45.3159286595,"19864":45.2770775424,"19865":45.2382850254,"19866":45.1995511072,"19867":45.1608757891,"19868":45.1222590698,"19869":45.0836983725,"19870":45.0451924623,"19871":45.0067413569,"19872":44.9683450518,"19873":44.930003549,"19874":44.891716847,"19875":44.8534849471,"19876":44.8153078481,"19877":44.7771855511,"19878":44.7391180551,"19879":44.70109713,"19880":44.6631176714,"19881":44.6251793841,"19882":44.5872823264,"19883":44.5494264873,"19884":44.5116118682,"19885":44.4738384698,"19886":44.436106291,"19887":44.3984153329,"19888":44.3607655943,"19889":44.323152638,"19890":44.2855729118,"19891":44.2480260175,"19892":44.2105120339,"19893":44.173030946,"19894":44.1355827559,"19895":44.0981674642,"19896":44.0607850698,"19897":44.0234355739,"19898":43.9861189753,"19899":43.9488230929,"19900":43.9115352947,"19901":43.8742548877,"19902":43.8369806612,"19903":43.7997152204,"19904":43.7624552874,"19905":43.7252029132,"19906":43.6879558973,"19907":43.6507165343,"19908":43.6134824856,"19909":43.5762561431,"19910":43.5390350758,"19911":43.5018217736,"19912":43.4646137017,"19913":43.427413463,"19914":43.3902184025,"19915":43.3530312526,"19916":43.3158492207,"19917":43.2786751864,"19918":43.2415062014,"19919":43.2043461623,"19920":43.1671935107,"19921":43.1300518203,"19922":43.0929177016,"19923":43.0557946076,"19924":43.0186789999,"19925":42.9815745406,"19926":42.9444774613,"19927":42.9073916665,"19928":42.8703131356,"19929":42.833246225,"19930":42.7961871434,"19931":42.7591404528,"19932":42.7221015542,"19933":42.6850751837,"19934":42.6480564679,"19935":42.6110504397,"19936":42.5740519187,"19937":42.5370662474,"19938":42.5000879306,"19939":42.4631244735,"19940":42.4261774851,"19941":42.3892548848,"19942":42.3523501555,"19943":42.315469655,"19944":42.2786069321,"19945":42.2417685698,"19946":42.2049478351,"19947":42.1681515941,"19948":42.1313728341,"19949":42.0946187418,"19950":42.0578824495,"19951":42.0211714479,"19952":41.9844782084,"19953":41.9478103304,"19954":41.9111601021,"19955":41.8745353057,"19956":41.8379280572,"19957":41.8013462931,"19958":41.7647819909,"19959":41.7282432264,"19960":41.6917225059,"19961":41.6552281573,"19962":41.6187519499,"19963":41.5823020832,"19964":41.5458703287,"19965":41.5094648972,"19966":41.47307756,"19967":41.4367165162,"19968":41.4003735641,"19969":41.3640568658,"19970":41.3277582824,"19971":41.2914859226,"19972":41.2552317047,"19973":41.2190036603,"19974":41.1827937901,"19975":41.1466100446,"19976":41.1104445112,"19977":41.0743050592,"19978":41.0381838597,"19979":41.0020887078,"19980":40.9660105944,"19981":40.9299566574,"19982":40.8939192003,"19983":40.857905927,"19984":40.8219091552,"19985":40.7859365937,"19986":40.7499805415,"19987":40.7140487569,"19988":40.6781334692,"19989":40.6422425436,"19990":40.6063692016,"19991":40.5705221823,"19992":40.5346934151,"19993":40.4988911932,"19994":40.4631071095,"19995":40.4273498234,"19996":40.3916105226,"19997":40.3558983409,"19998":40.3202039388,"19999":40.2845370592,"20000":20.0438443368,"20001":20.0290032334,"20002":20.014162338,"20003":19.9993213386,"20004":19.9844803912,"20005":19.9696394178,"20006":19.9547984574,"20007":19.9399574905,"20008":19.9251165268,"20009":19.9102755615,"20010":19.895434597,"20011":19.8805936322,"20012":19.8657526675,"20013":19.8509117027,"20014":19.836070738,"20015":19.8212297732,"20016":19.8063888085,"20017":19.7915478438,"20018":19.776706879,"20019":19.7618659143,"20020":19.7470249495,"20021":20.1696519786,"20022":20.8383547543,"20023":21.3840196567,"20024":21.9912034957,"20025":22.5676278664,"20026":23.1594319713,"20027":23.7435462091,"20028":24.3315053804,"20029":24.917542085,"20030":25.5045400229,"20031":26.1049761091,"20032":26.7201066055,"20033":27.3278898969,"20034":27.9393467908,"20035":28.5489668834,"20036":29.1595053767,"20037":29.7695846696,"20038":30.3798935627,"20039":30.9900876558,"20040":31.6003391488,"20041":32.6508663046,"20042":34.4939556632,"20043":35.9407639205,"20044":37.5857127284,"20045":39.131591261,"20046":40.7270049312,"20047":42.2976510326,"20048":43.8806809185,"20049":45.4575189121,"20050":47.0374528518,"20051":48.64045237,"20052":50.3233408613,"20053":51.9662848661,"20054":53.6292011141,"20055":55.2821312405,"20056":56.9400544277,"20057":58.5954810845,"20058":60.2521560065,"20059":61.9082067959,"20060":63.5645696517,"20061":65.3328287494,"20062":67.8575187212,"20063":70.003993256,"20064":72.3395755093,"20065":74.5806039034,"20066":76.868909227,"20067":79.1335760859,"20068":81.4100621772,"20069":83.6806386522,"20070":85.9541699355,"20071":88.2296385223,"20072":90.6134091068,"20073":92.9430286925,"20074":95.2997237776,"20075":97.642881113,"20076":99.9928073232,"20077":102.339349096,"20078":104.6875830875,"20079":107.0349709697,"20080":109.3827819065,"20081":111.730381316,"20082":113.3529586721,"20083":115.291264615,"20084":117.0717062645,"20085":118.9310800606,"20086":120.7509877835,"20087":122.590628543,"20088":124.4204027842,"20089":126.2551102846,"20090":128.0873511553,"20091":129.9208253409,"20092":131.6440952456,"20093":133.4028980722,"20094":135.1439344379,"20095":136.8938540341,"20096":138.639332015,"20097":140.3870308035,"20098":142.1336191883,"20099":143.8807627749,"20100":145.6276287606,"20101":147.3746335468,"20102":147.8595076643,"20103":148.5715875103,"20104":149.170064492,"20105":149.8253429059,"20106":150.4522206037,"20107":151.0932986595,"20108":151.7272765364,"20109":152.3648045027,"20110":153.0005574243,"20111":153.6371978682,"20112":153.9664040877,"20113":154.2958321878,"20114":154.6251493475,"20115":154.9545219774,"20116":155.2838668722,"20117":155.6132256346,"20118":155.9425774632,"20119":156.2719327587,"20120":156.6012863207,"20121":156.9306407495,"20122":156.4207691265,"20123":155.712133758,"20124":155.1028802622,"20125":154.44393583,"20126":153.8098368661,"20127":153.163315168,"20128":152.523004837,"20129":151.8795888225,"20130":151.2377256497,"20131":150.595086056,"20132":149.8486441521,"20133":149.0434009752,"20134":148.2675584347,"20135":147.477015576,"20136":146.6938228765,"20137":145.9069550973,"20138":145.121924858,"20139":144.3359758487,"20140":143.5504862244,"20141":142.7647669077,"20142":141.7853788591,"20143":140.6046965948,"20144":139.5246614384,"20145":138.3943027281,"20146":137.2891057947,"20147":136.1713279729,"20148":135.0598405953,"20149":133.9452079955,"20150":132.8321480068,"20151":131.7183017126,"20152":130.5762757603,"20153":129.382622172,"20154":128.2147824017,"20155":127.0340357224,"20156":125.8597424976,"20157":124.6822225456,"20158":123.5063159572,"20159":122.3296026869,"20160":121.1532927576,"20161":119.9767811578,"20162":118.8339750631,"20163":117.799133561,"20164":116.7103097626,"20165":115.6484771123,"20166":114.573148888,"20167":113.5045684507,"20168":112.4326141199,"20169":111.3623467358,"20170":110.2912358783,"20171":109.2205467576,"20172":108.154361168,"20173":107.1201032092,"20174":106.069881435,"20175":105.0276415686,"20176":103.9814107482,"20177":102.9371754048,"20178":101.8919423229,"20179":100.8472081103,"20180":99.802224463,"20181":98.7573655331,"20182":97.7248074823,"20183":97.0817226025,"20184":96.2439011373,"20185":95.5034479648,"20186":94.7143106459,"20187":93.9495154002,"20188":93.1725491179,"20189":92.4016683539,"20190":91.6277448307,"20191":90.8553426872,"20192":90.0821798538,"20193":89.4203487948,"20194":88.7100100054,"20195":88.0239250812,"20196":87.3257132244,"20197":86.6335648339,"20198":85.9383847102,"20199":85.2447204531,"20200":84.5502982628,"20201":83.8562550391,"20202":83.162022332,"20203":82.8029698393,"20204":82.336163931,"20205":81.9232347306,"20206":81.4833671762,"20207":81.0569687987,"20208":80.6238358328,"20209":80.1940701612,"20210":79.7626208424,"20211":79.3320133471,"20212":78.9009849401,"20213":78.5327949613,"20214":78.1532267195,"20215":77.7793476091,"20216":77.4026239331,"20217":77.0273225399,"20218":76.6513100052,"20219":76.2756530413,"20220":75.8998182921,"20221":75.5240724355,"20222":75.1482821325,"20223":74.9842412495,"20224":74.8201892548,"20225":74.656142816,"20226":74.4920935993,"20227":74.3280457715,"20228":74.1639972492,"20229":73.9999490742,"20230":73.8359007255,"20231":73.6718524637,"20232":73.5078041585,"20233":73.3862655461,"20234":73.2747950029,"20235":73.1582904252,"20236":73.0443028647,"20237":72.9290567956,"20238":72.8144399808,"20239":72.6995085388,"20240":72.5847344105,"20241":72.4698816253,"20242":72.3550681685,"20243":72.2765297913,"20244":72.2184170397,"20245":72.1500914752,"20246":72.0868723172,"20247":72.0210999559,"20248":71.9566041963,"20249":71.8914701358,"20250":71.8266552258,"20251":71.7616807405,"20252":71.6967860428,"20253":71.6417824685,"20254":71.5971118202,"20255":71.5472747089,"20256":71.5000208291,"20257":71.4514753336,"20258":71.4035756459,"20259":71.3553530543,"20260":71.3072919146,"20261":71.259150049,"20262":71.2110485464,"20263":71.1440022392,"20264":71.0429017014,"20265":70.9588282788,"20266":70.8662412986,"20267":70.7779110973,"20268":70.6874525065,"20269":70.5980581104,"20270":70.508131617,"20271":70.4184711723,"20272":70.3286777032,"20273":70.2336561986,"20274":70.121583249,"20275":70.0180360219,"20276":69.9102259336,"20277":69.8045472759,"20278":69.6978029029,"20279":69.5915913875,"20280":69.4851134433,"20281":69.3787687135,"20282":69.2723573765,"20283":69.1402087212,"20284":68.8340917161,"20285":68.6149588859,"20286":68.3523339682,"20287":68.1114550943,"20288":67.8597031985,"20289":67.6133878136,"20290":67.3643541733,"20291":67.1166796606,"20292":66.8683255842,"20293":66.6174021017,"20294":66.2746693071,"20295":65.9778411685,"20296":65.6580607019,"20297":65.3497563994,"20298":65.0357140148,"20299":64.7245406712,"20300":64.4119328072,"20301":64.1000422034,"20302":63.7877929694,"20303":63.4757230505,"20304":63.0510751517,"20305":62.6754589317,"20306":62.2753268722,"20307":61.8874527325,"20308":61.4934496329,"20309":61.1025110133,"20310":60.7100401537,"20311":60.318335414,"20312":59.9262476144,"20313":59.5343513448,"20314":59.0924953397,"20315":58.6667149219,"20316":58.2328967104,"20317":57.8030973958,"20318":57.3712886328,"20319":56.940484594,"20320":56.509178193,"20321":56.0781229732,"20322":55.6469421628,"20323":55.2158241476,"20324":54.7691120748,"20325":54.3252169796,"20326":53.8799133957,"20327":53.4353140561,"20328":52.9903625943,"20329":52.5455871936,"20330":52.1007237624,"20331":51.6559043464,"20332":51.2110629228,"20333":50.7662325031,"20334":50.3802115597,"20335":49.9941933673,"20336":49.6081737994,"20337":49.2221549193,"20338":48.8361356952,"20339":48.4501166432,"20340":48.0640975051,"20341":47.6780784101,"20342":47.2920592935,"20343":46.9060401877,"20344":46.597699069,"20345":46.3077553723,"20346":46.0086129646,"20347":45.7140699124,"20348":45.4172271824,"20349":45.1215342914,"20350":44.8252664808,"20351":44.52928613,"20352":44.2331620494,"20353":43.9371098337,"20354":43.6760536724,"20355":43.4347209701,"20356":43.1835265383,"20357":42.9372629713,"20358":42.6885339719,"20359":42.4410376886,"20360":42.1929250473,"20361":41.945120585,"20362":41.6971620332,"20363":41.4492805262,"20364":41.2528930292,"20365":41.1100393462,"20366":40.9404187562,"20367":40.7841816198,"20368":40.6212527565,"20369":40.4616697567,"20370":40.3004138251,"20371":40.1399943595,"20372":39.9791566608,"20373":39.8185280787,"20374":39.6814678436,"20375":39.5870711173,"20376":39.4713426366,"20377":39.3662800332,"20378":39.2558844911,"20379":39.1481554183,"20380":39.0390931108,"20381":38.9306974207,"20382":38.8219684219,"20383":38.7134060775,"20384":38.6226485114,"20385":38.5894300912,"20386":38.5274420981,"20387":38.4798388915,"20388":38.4250432916,"20389":38.3738438883,"20390":38.3208463867,"20391":38.2687479343,"20392":38.2161999573,"20393":38.1638767425,"20394":38.1181100747,"20395":38.1174148615,"20396":38.0941839209,"20397":38.0822208441,"20398":38.0646238354,"20399":38.0498437926,"20400":38.0336552668,"20401":38.0181709826,"20402":38.0023345776,"20403":37.9866742329,"20404":37.9720224376,"20405":37.9919569105,"20406":37.9945982493,"20407":38.0058861552,"20408":38.0128507776,"20409":38.0219770417,"20410":38.0300224849,"20411":38.0386083386,"20412":38.046923987,"20413":38.0553747381,"20414":38.0637579378,"20415":38.0956205805,"20416":38.1172561255,"20417":38.1440052193,"20418":38.1681975387,"20419":38.1936682453,"20420":38.2184997583,"20421":38.2436508681,"20422":38.2686421795,"20423":38.2937133901,"20424":38.3187446511,"20425":38.3402854217,"20426":38.3629445687,"20427":38.3850445275,"20428":38.4074240804,"20429":38.4296638363,"20430":38.4519734907,"20431":38.4742481958,"20432":38.4965403755,"20433":38.518823818,"20434":38.5411116291,"20435":38.5617951402,"20436":38.5827681244,"20437":38.603596372,"20438":38.6244969879,"20439":38.6453614197,"20440":38.6662439436,"20441":38.6871174214,"20442":38.7079954222,"20443":38.7288711615,"20444":38.7497480316,"20445":38.751975515,"20446":38.7542032811,"20447":38.7564309058,"20448":38.7586586012,"20449":38.7608862613,"20450":38.7631139391,"20451":38.765341608,"20452":38.7675692813,"20453":38.7697969524,"20454":38.7720246247,"20455":38.7627574543,"20456":38.7507678216,"20457":38.7401394201,"20458":38.728830403,"20459":38.7178616937,"20460":38.7067228305,"20461":38.6956690443,"20462":38.6845727196,"20463":38.6734976641,"20464":38.662411974,"20465":38.6404216266,"20466":38.6122917598,"20467":38.5872316527,"20468":38.5606366657,"20469":38.5348091187,"20470":38.5085978517,"20471":38.4825784447,"20472":38.4564631077,"20473":38.4303957357,"20474":38.4043043812,"20475":38.3703565004,"20476":38.3282314713,"20477":38.2901950163,"20478":38.2501142743,"20479":38.2110556758,"20480":38.1714860055,"20481":38.1321718711,"20482":38.0927299688,"20483":38.0533519504,"20484":38.0139419901,"20485":37.97094898,"20486":37.9214697472,"20487":37.8752336258,"20488":37.8273759487,"20489":37.7803290494,"20490":37.7328767612,"20491":37.6856271675,"20492":37.6382762265,"20493":37.5909759592,"20494":37.543650355,"20495":37.4939616417,"20496":37.4366301662,"20497":37.3831200718,"20498":37.3276992869,"20499":37.2732338472,"20500":37.2182907349,"20501":37.1635864589,"20502":37.1087627647,"20503":37.0539987796,"20504":36.99920494,"20505":36.944205323,"20506":36.887708486,"20507":36.831960259,"20508":36.775837727,"20509":36.7199023475,"20510":36.6638733918,"20511":36.6078912242,"20512":36.5518856625,"20513":36.4958917978,"20514":36.4398920846,"20515":36.3838521237,"20516":36.3264507812,"20517":36.2697301294,"20518":36.2126691323,"20519":36.1557783079,"20520":36.0988023971,"20521":36.0418690295,"20522":35.9849143903,"20523":35.9279703869,"20524":35.8710210656,"20525":35.8140744032,"20526":35.7608629804,"20527":35.7060250067,"20528":35.6520003084,"20529":35.5975689724,"20530":35.5433409553,"20531":35.4890112788,"20532":35.4347324319,"20533":35.3804281703,"20534":35.326136616,"20535":35.271838708,"20536":35.2216796444,"20537":35.1701896707,"20538":35.119365152,"20539":35.0682079058,"20540":35.0172170234,"20541":34.966142959,"20542":34.9151104857,"20543":34.8640572168,"20544":34.8130143457,"20545":34.7619662757,"20546":34.7100278162,"20547":34.658248795,"20548":34.6063900546,"20549":34.5545711738,"20550":34.5027323632,"20551":34.4509035175,"20552":34.3990696894,"20553":34.3472383525,"20554":34.2954057699,"20555":34.2435738102,"20556":34.2016734732,"20557":34.1597732919,"20558":34.1178730327,"20559":34.0759728124,"20560":34.0340725727,"20561":33.9921723428,"20562":33.9502721079,"20563":33.9083718755,"20564":33.8664716419,"20565":33.8245714089,"20566":33.7853604327,"20567":33.7467863859,"20568":33.7078938745,"20569":33.6691605954,"20570":33.6303477001,"20571":33.5915746129,"20572":33.5527816216,"20573":33.5139985824,"20574":33.4752105672,"20575":33.43642504,"20576":33.40065086,"20577":33.3665718846,"20578":33.3316453069,"20579":33.2971425304,"20580":33.2624278533,"20581":33.2278191265,"20582":33.1931574245,"20583":33.1585222101,"20584":33.123873752,"20585":33.0892319157,"20586":33.0553961261,"20587":33.0224024787,"20588":32.9889877601,"20589":32.9557835772,"20590":32.9224741264,"20591":32.8892173096,"20592":32.8559341758,"20593":32.8226642004,"20594":32.7893876459,"20595":32.7561143809,"20596":32.7237005234,"20597":32.6928373824,"20598":32.6611988832,"20599":32.6299480631,"20600":32.5985034034,"20601":32.5671556635,"20602":32.5357594637,"20603":32.5043874939,"20604":32.473003409,"20605":32.4416253817,"20606":32.4102612247,"20607":32.3789529003,"20608":32.3476166596,"20609":32.3162943771,"20610":32.2849651155,"20611":32.2536393434,"20612":32.2223118265,"20613":32.1909851821,"20614":32.1596581014,"20615":32.1283312389,"20616":32.096999285,"20617":32.0656337559,"20618":32.0342850144,"20619":32.0029278791,"20620":31.9715749407,"20621":31.9402199038,"20622":31.9088659162,"20623":31.8775114039,"20624":31.846157154,"20625":31.8148027729,"20626":31.7834359521,"20627":31.7516751834,"20628":31.7201113886,"20629":31.6884491069,"20630":31.6568360686,"20631":31.6251984086,"20632":31.5935730595,"20633":31.561941555,"20634":31.5303131281,"20635":31.4986831624,"20636":31.4670539661,"20637":31.4347407139,"20638":31.4027253818,"20639":31.3705610896,"20640":31.3384712775,"20641":31.3063442253,"20642":31.2742357932,"20643":31.242118051,"20644":31.2100049639,"20645":31.1778895492,"20646":31.1457752983,"20647":31.1134010571,"20648":31.0811104881,"20649":31.048778083,"20650":31.016466596,"20651":30.9841446499,"20652":30.9518279333,"20653":30.919508602,"20654":30.8871905781,"20655":30.8548719005,"20656":30.8225535497,"20657":30.7861507393,"20658":30.750483184,"20659":30.7144480011,"20660":30.6785966321,"20661":30.6426533561,"20662":30.6067560336,"20663":30.5708357343,"20664":30.5349269234,"20665":30.4990123684,"20666":30.4631006854,"20667":30.4301544079,"20668":30.3972088484,"20669":30.3642629298,"20670":30.3313171908,"20671":30.2983713621,"20672":30.2654255782,"20673":30.2324797718,"20674":30.1995339767,"20675":30.166588176,"20676":30.1336423781,"20677":30.1002206996,"20678":30.0666863137,"20679":30.0332082815,"20680":29.9997020724,"20681":29.9662099518,"20682":29.9327107869,"20683":29.8992151442,"20684":29.8657177404,"20685":29.8322212171,"20686":29.7987242536,"20687":29.7654460028,"20688":29.732290544,"20689":29.6990736891,"20690":29.6658875323,"20691":29.6326860265,"20692":29.5994921952,"20693":29.5662945267,"20694":29.5330987767,"20695":29.4999020675,"20696":29.4667058379,"20697":29.4339180842,"20698":29.401554886,"20699":29.36897941,"20700":29.3365100729,"20701":29.3039876664,"20702":29.2714917946,"20703":29.2389826554,"20704":29.2064801499,"20705":29.1739743276,"20706":29.1414701637,"20707":29.1087020153,"20708":29.0754606021,"20709":29.0424558214,"20710":29.0093327244,"20711":28.9762687855,"20712":28.9431752676,"20713":28.9100965392,"20714":28.877010416,"20715":28.8439279902,"20716":28.8108437157,"20717":28.7772818507,"20718":28.7421814402,"20719":28.7078503024,"20720":28.6731345282,"20721":28.6386110722,"20722":28.6039914571,"20723":28.5694199216,"20724":28.5348243463,"20725":28.5002407909,"20726":28.4656512255,"20727":28.4309342157,"20728":28.3953351696,"20729":28.3601771417,"20730":28.3247986047,"20731":28.2895303222,"20732":28.2542069124,"20733":28.2189110663,"20734":28.1836014384,"20735":28.1482987014,"20736":28.1129925189,"20737":28.0776057136,"20738":28.0396241623,"20739":28.0029399839,"20740":27.9656071191,"20741":27.9285985975,"20742":27.8914279043,"20743":27.8543382969,"20744":27.8172081466,"20745":27.7800982677,"20746":27.7429782531,"20747":27.7058633064,"20748":27.6657661718,"20749":27.6269678954,"20750":27.5875201899,"20751":27.5483971989,"20752":27.5091118507,"20753":27.4699076811,"20754":27.4306629222,"20755":27.391438458,"20756":27.3522038464,"20757":27.3129743085,"20758":27.2657949208,"20759":27.221171295,"20760":27.1752697882,"20761":27.130007222,"20762":27.0844251854,"20763":27.039002884,"20764":26.9935007151,"20765":26.9480384799,"20766":26.9025562778,"20767":26.8570840592,"20768":26.8032897127,"20769":26.7509949465,"20770":26.6979503901,"20771":26.6452807288,"20772":26.59242362,"20773":26.5396602349,"20774":26.486849988,"20775":26.434063172,"20776":26.3812646405,"20777":26.3284719668,"20778":26.2728525399,"20779":26.2172345774,"20780":26.1616158827,"20781":26.105997554,"20782":26.0503790424,"20783":25.9947606222,"20784":25.9391421563,"20785":25.8835237133,"20786":25.8279052588,"20787":25.7722868101,"20788":25.7160155537,"20789":25.6595896871,"20790":25.6032411256,"20791":25.5468539115,"20792":25.4904860237,"20793":25.4341084727,"20794":25.3777357534,"20795":25.3213606182,"20796":25.264986691,"20797":25.2086121598,"20798":25.150108608,"20799":25.0904071613,"20800":25.0313046621,"20801":24.9719026891,"20802":24.9126504531,"20803":24.8533233485,"20804":24.7940336782,"20805":24.7347252908,"20806":24.675426262,"20807":24.6161225538,"20808":24.5572482526,"20809":24.4988162744,"20810":24.4401631347,"20811":24.3816205757,"20812":24.3230227264,"20813":24.2644525223,"20814":24.2058684955,"20815":24.1472913801,"20816":24.088710809,"20817":24.0301319658,"20818":23.9731168245,"20819":23.9189183337,"20820":23.8633115177,"20821":23.8084088644,"20822":23.7531541297,"20823":23.6980754356,"20824":23.6429087213,"20825":23.5877860171,"20826":23.5326413078,"20827":23.4775076011,"20828":23.4229144175,"20829":23.3700790629,"20830":23.3163647938,"20831":23.263089982,"20832":23.2095954416,"20833":23.1562107654,"20834":23.1027711571,"20835":23.0493590149,"20836":22.9959331397,"20837":22.9425141309,"20838":22.8905701503,"20839":22.8486075003,"20840":22.8016541849,"20841":22.7571962022,"20842":22.7114905532,"20843":22.6664087374,"20844":22.6210150049,"20845":22.5757772308,"20846":22.5304614775,"20847":22.4851847138,"20848":22.4399867274,"20849":22.3978940608,"20850":22.3542487343,"20851":22.3113797377,"20852":22.2681225762,"20853":22.2250594971,"20854":22.1818993768,"20855":22.1387877771,"20856":22.0956519171,"20857":22.0525281873,"20858":22.0093983924,"20859":21.9806440705,"20860":21.9456292664,"20861":21.9137447034,"20862":21.8802950198,"20863":21.8476278965,"20864":21.8145694931,"20865":21.7817067297,"20866":21.7487461464,"20867":21.715834473,"20868":21.6828983446,"20869":21.6526906078,"20870":21.6216037044,"20871":21.5909563844,"20872":21.5600892727,"20873":21.5293320568,"20874":21.498519893,"20875":21.4677352031,"20876":21.4369367763,"20877":21.406145218,"20878":21.3753502254,"20879":21.3532291887,"20880":21.3295462905,"20881":21.3066443231,"20882":21.2833518902,"20883":21.2602546901,"20884":21.2370598736,"20885":21.2139138653,"20886":21.1907434529,"20887":21.1675852425,"20888":21.1444209311,"20889":21.1259360931,"20890":21.1074497298,"20891":21.0889641292,"20892":21.0704781472,"20893":21.0519923559,"20894":21.0335064693,"20895":21.0150206303,"20896":20.9965347675,"20897":20.9780489166,"20898":20.9595630598,"20899":20.9539122553,"20900":20.9513013294,"20901":20.9471704642,"20902":20.9437995686,"20903":20.9400486883,"20904":20.9364878003,"20905":20.9328319161,"20906":20.9292235301,"20907":20.9255913949,"20908":20.9219711344,"20909":20.9183452338,"20910":20.9147224691,"20911":20.9110981365,"20912":20.9074745878,"20913":20.9038506472,"20914":20.9002269025,"20915":20.8966030599,"20916":20.8929792662,"20917":20.8893554481,"20918":20.8857316422,"20919":20.8812110412,"20920":20.8757591623,"20921":20.8707729224,"20922":20.865553863,"20923":20.8604512133,"20924":20.8552903587,"20925":20.8501586066,"20926":20.8450123033,"20927":20.8398732756,"20928":20.8347306101,"20929":20.8293877124,"20930":20.8236802134,"20931":20.8181550151,"20932":20.8125386664,"20933":20.8069678929,"20934":20.8013743319,"20935":20.7957921646,"20936":20.7902043004,"20937":20.7846192847,"20938":20.7790328447,"20939":20.7714993642,"20940":20.7577048943,"20941":20.7470409191,"20942":20.7348116965,"20943":20.7233650976,"20944":20.7115271868,"20945":20.699884932,"20946":20.6881448492,"20947":20.6764536804,"20948":20.6647380546,"20949":20.6529782549,"20950":20.640831625,"20951":20.6288784103,"20952":20.616828488,"20953":20.6048269194,"20954":20.592801174,"20955":20.580787517,"20956":20.5687678158,"20957":20.5567511367,"20958":20.5447329465,"20959":20.5326949004,"20960":20.5200072141,"20961":20.5076443479,"20962":20.4951190717,"20963":20.4826750005,"20964":20.4701903268,"20965":20.4577259543,"20966":20.4452514312,"20967":20.4327819835,"20968":20.420309998,"20969":20.4078392814,"20970":20.3953553131,"20971":20.3828771566,"20972":20.3703960942,"20973":20.3579164848,"20974":20.3454361489,"20975":20.3329561762,"20976":20.3204760219,"20977":20.3079959584,"20978":20.2955158495,"20979":20.2830357633,"20980":20.2718757662,"20981":20.2602914568,"20982":20.2489193036,"20983":20.2374410722,"20984":20.22601588,"20985":20.2145641681,"20986":20.2031257161,"20987":20.1916806342,"20988":20.1802388672,"20989":20.1687954427,"20990":20.1561678625,"20991":20.143753165,"20992":20.1312320262,"20993":20.118764108,"20994":20.1062695795,"20995":20.0937883562,"20996":20.0813004803,"20997":20.0688159307,"20998":20.056329718,"20999":20.0438443368,"21000":40.2844153732,"21001":40.2487734687,"21002":40.2131529283,"21003":40.1775649356,"21004":40.1419980859,"21005":40.1064644237,"21006":40.0709514375,"21007":40.0354724473,"21008":40.0000135537,"21009":39.9645896237,"21010":39.9291850879,"21011":39.8938166629,"21012":39.8584667889,"21013":39.8231543765,"21014":39.7878595113,"21015":39.752603688,"21016":39.7173642255,"21017":39.6821656421,"21018":39.6469820267,"21019":39.6118414125,"21020":39.5767141418,"21021":39.5412170919,"21022":39.5047505571,"21023":39.4672438501,"21024":39.4286795423,"21025":39.3890953929,"21026":39.3484477276,"21027":39.3067844381,"21028":39.2640546819,"21029":39.2203132682,"21030":39.1755022087,"21031":39.1296706473,"21032":39.0827283861,"21033":39.0369538409,"21034":39.0020951875,"21035":38.990448777,"21036":39.0114298842,"21037":39.0715034336,"21038":39.1749357929,"21039":39.3242440342,"21040":39.5205818597,"21041":39.7636256188,"21042":40.0515718558,"21043":40.3828288088,"21044":40.7556635397,"21045":41.1679415524,"21046":41.6172963021,"21047":42.1011889515,"21048":42.6169713317,"21049":43.1619332756,"21050":43.7333411045,"21051":44.3284450323,"21052":44.944457148,"21053":45.5787111775,"21054":46.2286386026,"21055":46.8917452592,"21056":47.565627818,"21057":48.2479796691,"21058":48.9365967819,"21059":49.6293817854,"21060":50.3243469061,"21061":51.019509926,"21062":51.7123086018,"21063":52.4008806178,"21064":53.0837562637,"21065":53.7595311501,"21066":54.4269266966,"21067":55.0847730956,"21068":55.7320079478,"21069":56.3676718458,"21070":56.9909046081,"21071":57.6009381655,"21072":58.1969949106,"21073":58.7784596729,"21074":59.3448393328,"21075":59.895714081,"21076":60.4307420315,"21077":60.9496532267,"21078":61.4522458514,"21079":61.9383820859,"21080":62.4079841135,"21081":62.8610301846,"21082":63.2982363421,"21083":63.7199225447,"21084":64.1261659399,"21085":64.5171114729,"21086":64.8929305418,"21087":65.2538275916,"21088":65.6000366925,"21089":65.9318198083,"21090":66.2494645002,"21091":66.5532815889,"21092":66.8437063406,"21093":67.1211370402,"21094":67.3859360166,"21095":67.6384787126,"21096":67.8791507424,"21097":68.1083461009,"21098":68.3264651396,"21099":68.5339126154,"21100":68.7310957762,"21101":68.9184225073,"21102":69.0974927873,"21103":69.269434946,"21104":69.4346550849,"21105":69.5934859475,"21106":69.746252718,"21107":69.8932637266,"21108":70.0348151264,"21109":70.171191883,"21110":70.3026688032,"21111":70.4295110132,"21112":70.552264384,"21113":70.6714034255,"21114":70.7871810058,"21115":70.8998039541,"21116":71.0094718171,"21117":71.1163701491,"21118":71.2206725808,"21119":71.3225408772,"21120":71.4221252215,"21121":71.5195643367,"21122":71.6157790326,"21123":71.7116978232,"21124":71.8075249239,"21125":71.9032851348,"21126":71.9990130481,"21127":72.0947203909,"21128":72.190406803,"21129":72.2860610454,"21130":72.3816634273,"21131":72.4771874293,"21132":72.5726995541,"21133":72.6682963099,"21134":72.7639592173,"21135":72.8596340198,"21136":72.9552687247,"21137":73.0508073341,"21138":73.1461922148,"21139":73.2413645442,"21140":73.3362649907,"21141":73.4308342316,"21142":73.5251966305,"21143":73.6196286876,"21144":73.714138799,"21145":73.8086432562,"21146":73.9030743293,"21147":73.997360754,"21148":74.0914333889,"21149":74.1852254827,"21150":74.2786737291,"21151":74.3717189224,"21152":74.4643335058,"21153":74.5565378227,"21154":74.6483031429,"21155":74.7395847366,"21156":74.830346857,"21157":74.9205581552,"21158":75.0101928798,"21159":75.099230798,"21160":75.18765727,"21161":75.275463208,"21162":75.3626132145,"21163":75.4489818513,"21164":75.5345448062,"21165":75.6193247394,"21166":75.7033421679,"21167":75.7866243774,"21168":75.8692028036,"21169":75.9511128116,"21170":76.0323930664,"21171":76.1130850459,"21172":76.1932281164,"21173":76.2728344198,"21174":76.3519423048,"21175":76.4306030222,"21176":76.5088666191,"21177":76.5867841822,"21178":76.6644068499,"21179":76.7417855131,"21180":76.8189704128,"21181":76.8960107906,"21182":76.9729428675,"21183":77.0494355063,"21184":77.1254266471,"21185":77.2009909312,"21186":77.2761771415,"21187":77.351038865,"21188":77.4256267897,"21189":77.4999890104,"21190":77.5741700078,"21191":77.6482101288,"21192":77.722145168,"21193":77.7959011953,"21194":77.8694673098,"21195":77.9428715496,"21196":78.0161328164,"21197":78.0892667297,"21198":78.1622842165,"21199":78.2351916987,"21200":78.3079910793,"21201":78.3806798672,"21202":78.4532513545,"21203":78.5253780338,"21204":78.5968979477,"21205":78.6678043166,"21206":78.7380883458,"21207":78.8077412216,"21208":78.8767527956,"21209":78.9451112342,"21210":79.0128027316,"21211":79.0798114197,"21212":79.1461194095,"21213":79.2116477263,"21214":79.2763390133,"21215":79.3401701683,"21216":79.4031203869,"21217":79.4651681671,"21218":79.526292056,"21219":79.5864707109,"21220":79.6456831429,"21221":79.703908952,"21222":79.7611285761,"21223":79.8171233556,"21224":79.871718558,"21225":79.9248870613,"21226":79.9766281682,"21227":80.0269407269,"21228":80.0758275679,"21229":80.1232938729,"21230":80.169346937,"21231":80.2139957959,"21232":80.257250992,"21233":80.2990842084,"21234":80.3394673717,"21235":80.3784096378,"21236":80.4159297164,"21237":80.4520462192,"21238":80.4867792485,"21239":80.5201497823,"21240":80.5521795375,"21241":80.5828907606,"21242":80.6123060468,"21243":80.6404138421,"21244":80.6671905752,"21245":80.6926512648,"21246":80.7168219553,"21247":80.7397264396,"21248":80.7613883757,"21249":80.7818303626,"21250":80.8010736648,"21251":80.8191378385,"21252":80.8360404049,"21253":80.8517871458,"21254":80.8663734425,"21255":80.8798055436,"21256":80.8920912846,"21257":80.9032342975,"21258":80.9132347684,"21259":80.9220889152,"21260":80.9297887537,"21261":80.9363218356,"21262":80.9416710215,"21263":80.9458321673,"21264":80.9488244484,"21265":80.9506257889,"21266":80.9511945147,"21267":80.9504857238,"21268":80.9484481403,"21269":80.9450248589,"21270":80.9401532946,"21271":80.9337652826,"21272":80.9257871463,"21273":80.9161447816,"21274":80.9047737611,"21275":80.8915892847,"21276":80.8764947921,"21277":80.859389794,"21278":80.8401685762,"21279":80.8187207356,"21280":80.794931354,"21281":80.7686812529,"21282":80.7398472416,"21283":80.7083267431,"21284":80.6741729811,"21285":80.6373009668,"21286":80.5975584213,"21287":80.5548011821,"21288":80.5088793235,"21289":80.4596410038,"21290":80.4069326053,"21291":80.3505994819,"21292":80.2904864702,"21293":80.2264411013,"21294":80.1583972976,"21295":80.0862258879,"21296":80.0097659961,"21297":79.9288635067,"21298":79.8433640419,"21299":79.753114949,"21300":79.6579653884,"21301":79.5577667238,"21302":79.4523727855,"21303":79.3416401066,"21304":79.2302502472,"21305":79.1197657847,"21306":79.0093060194,"21307":78.8989891816,"21308":78.7903550894,"21309":78.6817856517,"21310":78.5743413716,"21311":78.4674339799,"21312":78.3615994131,"21313":78.2560789031,"21314":78.1516540152,"21315":78.0476291926,"21316":77.9447098929,"21317":77.8422000669,"21318":77.7407845795,"21319":77.639788454,"21320":77.5398750417,"21321":77.4403914464,"21322":77.3419785333,"21323":77.244006411,"21324":77.1471073673,"21325":77.0506844804,"21326":76.9553317225,"21327":76.8604673832,"21328":76.7666602614,"21329":76.6733537427,"21330":76.5810915014,"21331":76.489342291,"21332":76.398624387,"21333":76.308432128,"21334":76.2192024216,"21335":76.130410605,"21336":76.0425188401,"21337":75.9550737123,"21338":75.8685168015,"21339":75.7824191017,"21340":75.6971972554,"21341":75.6124472476,"21342":75.5285609992,"21343":75.4451590569,"21344":75.3625354037,"21345":75.2802581276,"21346":75.1986594766,"21347":75.1174096616,"21348":75.0368294585,"21349":74.956609337,"21350":74.8770484553,"21351":74.7978588891,"21352":74.7193186065,"21353":74.641160474,"21354":74.563608922,"21355":74.4863713575,"21356":74.4096775302,"21357":74.3333007294,"21358":74.2574606263,"21359":74.1819467097,"21360":74.1069616496,"21361":74.032311702,"21362":73.9581832304,"21363":73.884398304,"21364":73.8110790624,"21365":73.7379724623,"21366":73.6652155941,"21367":73.5926630849,"21368":73.5204575287,"21369":73.4484626415,"21370":73.3768093624,"21371":73.3053731874,"21372":73.234273583,"21373":73.1633970795,"21374":73.0928300406,"21375":73.0224107688,"21376":72.9522241304,"21377":72.882179065,"21378":72.8123649965,"21379":72.7426967763,"21380":72.673256073,"21381":72.6039655494,"21382":72.5348992826,"21383":72.4659871885,"21384":72.3972793926,"21385":72.3286442975,"21386":72.2601247251,"21387":72.1916668866,"21388":72.1233249531,"21389":72.0550472479,"21390":71.9868832987,"21391":71.9187863583,"21392":71.850801114,"21393":71.7828854382,"21394":71.7150732462,"21395":71.6472788417,"21396":71.5795250265,"21397":71.5117804231,"21398":71.4440769836,"21399":71.3763842752,"21400":71.3087313853,"21401":71.2410909875,"21402":71.1734891049,"21403":71.1059013367,"21404":71.0383498495,"21405":70.9707793138,"21406":70.9032004046,"21407":70.8355961234,"21408":70.7679837314,"21409":70.7003467515,"21410":70.6327010047,"21411":70.565031799,"21412":70.4973530011,"21413":70.4296517653,"21414":70.3619401908,"21415":70.2941848559,"21416":70.2263881381,"21417":70.1585413013,"21418":70.0906531877,"21419":70.0227155836,"21420":69.9547361714,"21421":69.8867079666,"21422":69.8186373666,"21423":69.7505185961,"21424":69.6823570531,"21425":69.6141512925,"21426":69.5459072689,"21427":69.477621121,"21428":69.4092963277,"21429":69.3409298863,"21430":69.2725244689,"21431":69.2040778294,"21432":69.1355919203,"21433":69.0670651717,"21434":68.998498893,"21435":68.9298936379,"21436":68.8612510863,"21437":68.7925708615,"21438":68.7238531817,"21439":68.655098092,"21440":68.5863055274,"21441":68.5174756557,"21442":68.4486085493,"21443":68.3797042769,"21444":68.3107628549,"21445":68.2418019802,"21446":68.1728358137,"21447":68.1038659483,"21448":68.0348920688,"21449":67.9659142346,"21450":67.8969324348,"21451":67.8279466699,"21452":67.7589569416,"21453":67.6899632477,"21454":67.6209655904,"21455":67.5519748778,"21456":67.4830024239,"21457":67.4140499839,"21458":67.3451172084,"21459":67.2762041655,"21460":67.2073108434,"21461":67.1384372428,"21462":67.069583365,"21463":67.0007492084,"21464":66.9319347747,"21465":66.8631504171,"21466":66.7944102462,"21467":66.7257169395,"21468":66.657069963,"21469":66.588469422,"21470":66.5199152968,"21471":66.4514075901,"21472":66.3829463026,"21473":66.3145314329,"21474":66.2461629802,"21475":66.1778484141,"21476":66.109601465,"21477":66.0414251317,"21478":65.9733188168,"21479":65.9052826372,"21480":65.8373165703,"21481":65.7694206194,"21482":65.7015947851,"21483":65.633839066,"21484":65.5661534637,"21485":65.4985413924,"21486":65.4310117354,"21487":65.363566643,"21488":65.2962056863,"21489":65.22892895,"21490":65.1617364184,"21491":65.0946280933,"21492":65.0276039736,"21493":64.9606640605,"21494":64.8938083562,"21495":64.8270391131,"21496":64.7603653822,"21497":64.6937895421,"21498":64.6273111176,"21499":64.5609302037,"21500":64.4946467833,"21501":64.4284608577,"21502":64.3623724274,"21503":64.2963814911,"21504":64.2304880503,"21505":64.164692313,"21506":64.0989958621,"21507":64.0333991394,"21508":63.9679020575,"21509":63.9025046329,"21510":63.8372068634,"21511":63.7720087483,"21512":63.7069102888,"21513":63.6419114836,"21514":63.577012334,"21515":63.5122128798,"21516":63.4475144457,"21517":63.3829174213,"21518":63.3184217281,"21519":63.2540273827,"21520":63.1897343836,"21521":63.1255427294,"21522":63.0614524209,"21523":62.9974634572,"21524":62.9335758377,"21525":62.8697895632,"21526":62.8061010876,"21527":62.7425091179,"21528":62.6790138,"21529":62.6156151029,"21530":62.5523130333,"21531":62.4891075892,"21532":62.4259987703,"21533":62.3629865773,"21534":62.300071012,"21535":62.2372520723,"21536":62.1745258339,"21537":62.1118904174,"21538":62.0493458474,"21539":61.9868921197,"21540":61.9245292356,"21541":61.8622571947,"21542":61.8000759971,"21543":61.7379856429,"21544":61.6759861319,"21545":61.6140774643,"21546":61.5522604875,"21547":61.4905357271,"21548":61.4289032149,"21549":61.3673629432,"21550":61.3059149125,"21551":61.2445591235,"21552":61.1832955763,"21553":61.1221242709,"21554":61.0610452073,"21555":61.0000583855,"21556":60.93915438,"21557":60.8783256479,"21558":60.8175713414,"21559":60.7568916295,"21560":60.696286479,"21561":60.6357558959,"21562":60.5752998797,"21563":60.5149184297,"21564":60.4546115469,"21565":60.3943792303,"21566":60.3342189283,"21567":60.2741279936,"21568":60.214106016,"21569":60.1541530768,"21570":60.0942691604,"21571":60.0344542693,"21572":59.9747084037,"21573":59.9150315628,"21574":59.8554237474,"21575":59.7958849568,"21576":59.7364123324,"21577":59.6770019775,"21578":59.6176541819,"21579":59.5583678035,"21580":59.4991435628,"21581":59.4399805935,"21582":59.3808796352,"21583":59.3218399415,"21584":59.2628622537,"21585":59.203945841,"21586":59.1450906551,"21587":59.0862945757,"21588":59.0275579921,"21589":58.9688802797,"21590":58.9102621035,"21591":58.8517027992,"21592":58.7932030258,"21593":58.7347621335,"21594":58.6763807667,"21595":58.6180582893,"21596":58.5597945164,"21597":58.5015866977,"21598":58.4434349422,"21599":58.3853387342,"21600":58.3272986723,"21601":58.2693141446,"21602":58.2113857692,"21603":58.1535129288,"21604":58.0956962455,"21605":58.0379350967,"21606":57.980230096,"21607":57.9225805466,"21608":57.8649870731,"21609":57.8074490327,"21610":57.7499670817,"21611":57.6925405566,"21612":57.6351701337,"21613":57.5778551279,"21614":57.5205962385,"21615":57.4633927558,"21616":57.4062454094,"21617":57.3491534982,"21618":57.2921177851,"21619":57.2351375019,"21620":57.1782134319,"21621":57.1213447775,"21622":57.0645323532,"21623":57.0077753292,"21624":56.9510745517,"21625":56.8944291588,"21626":56.8378400401,"21627":56.7813066853,"21628":56.7248301161,"21629":56.6684093847,"21630":56.612045435,"21631":56.5557373125,"21632":56.499485992,"21633":56.4432904884,"21634":56.3871517746,"21635":56.3310688575,"21636":56.2750427576,"21637":56.2190731018,"21638":56.16316114,"21639":56.1073058198,"21640":56.0515081721,"21641":55.9957671655,"21642":55.9400838258,"21643":55.8844571254,"21644":55.8288880836,"21645":55.7733756825,"21646":55.7179209279,"21647":55.662523065,"21648":55.607183197,"21649":55.5519003452,"21650":55.4966754572,"21651":55.441507594,"21652":55.3863976933,"21653":55.3313448406,"21654":55.2763499051,"21655":55.2214120276,"21656":55.1665320505,"21657":55.1117130339,"21658":55.0569581682,"21659":55.0022668304,"21660":54.9476397239,"21661":54.8930761485,"21662":54.8385767782,"21663":54.7841409658,"21664":54.7297693274,"21665":54.6754612757,"21666":54.6212173667,"21667":54.5670342583,"21668":54.5129101935,"21669":54.4588444532,"21670":54.4048375242,"21671":54.3508889902,"21672":54.2969992317,"21673":54.243167899,"21674":54.1893953155,"21675":54.1356811862,"21676":54.0820257822,"21677":54.0284293111,"21678":53.9748924637,"21679":53.9214151155,"21680":53.8679974303,"21681":53.8146392559,"21682":53.7613407306,"21683":53.7081017367,"21684":53.6549223784,"21685":53.6018025701,"21686":53.5487422681,"21687":53.4957413635,"21688":53.4427995854,"21689":53.3899168743,"21690":53.3370932424,"21691":53.2843286874,"21692":53.2316232096,"21693":53.178976809,"21694":53.1263894856,"21695":53.0738612392,"21696":53.02139207,"21697":52.9689815899,"21698":52.9166290858,"21699":52.8643344019,"21700":52.8120975692,"21701":52.7599185816,"21702":52.7077974403,"21703":52.655734145,"21704":52.6037286958,"21705":52.5517810925,"21706":52.4998913354,"21707":52.448059674,"21708":52.3962867579,"21709":52.3445727443,"21710":52.292917602,"21711":52.2413213371,"21712":52.1897839485,"21713":52.1383054364,"21714":52.0868858008,"21715":52.0355250417,"21716":51.9842231591,"21717":51.9329806074,"21718":51.8817992096,"21719":51.8306794446,"21720":51.7796212168,"21721":51.7286245452,"21722":51.6776894261,"21723":51.6268158604,"21724":51.5760038478,"21725":51.5252533885,"21726":51.4745644825,"21727":51.4239372536,"21728":51.3733726368,"21729":51.3228708938,"21730":51.2724319724,"21731":51.2220558831,"21732":51.1717426239,"21733":51.1214921952,"21734":51.0713045708,"21735":51.0211797581,"21736":50.9711177736,"21737":50.9211186972,"21738":50.8711850531,"21739":50.821317587,"21740":50.7715161506,"21741":50.7217807725,"21742":50.6721114474,"21743":50.6225081759,"21744":50.5729709584,"21745":50.5234997942,"21746":50.474094684,"21747":50.4247556271,"21748":50.3754854524,"21749":50.32628519,"21750":50.2771547255,"21751":50.2280940815,"21752":50.1791032539,"21753":50.130182243,"21754":50.0813310492,"21755":50.032549672,"21756":49.9838381119,"21757":49.9351963684,"21758":49.8866319851,"21759":49.8381485713,"21760":49.7897460792,"21761":49.7414245177,"21762":49.6931838857,"21763":49.6450241827,"21764":49.5969454096,"21765":49.5489475654,"21766":49.501030651,"21767":49.4531946657,"21768":49.4054475042,"21769":49.3577940601,"21770":49.3102346184,"21771":49.2627691214,"21772":49.2153975813,"21773":49.1681199951,"21774":49.120936364,"21775":49.0738466871,"21776":49.0268509651,"21777":48.9799491974,"21778":48.9331440649,"21779":48.886437711,"21780":48.8398303776,"21781":48.7933220157,"21782":48.7469126358,"21783":48.7006022351,"21784":48.6543908149,"21785":48.6082783742,"21786":48.5622649139,"21787":48.5163504332,"21788":48.4705355524,"21789":48.4248209132,"21790":48.379206615,"21791":48.3336926385,"21792":48.288278989,"21793":48.2429656642,"21794":48.1977526638,"21795":48.1526399884,"21796":48.1076276394,"21797":48.0627156152,"21798":48.0179059376,"21799":47.9732013593,"21800":47.9286024042,"21801":47.8841089668,"21802":47.8397210688,"21803":47.7954387053,"21804":47.7512618766,"21805":47.7071905833,"21806":47.663224827,"21807":47.6193646059,"21808":47.5756095154,"21809":47.5319588094,"21810":47.4884123262,"21811":47.4449700973,"21812":47.4016321158,"21813":47.3583983837,"21814":47.3152689024,"21815":47.2722436701,"21816":47.2293226863,"21817":47.1865059516,"21818":47.1437919814,"21819":47.1011769146,"21820":47.0586598157,"21821":47.0162408718,"21822":46.973920047,"21823":46.9316973469,"21824":46.8895727693,"21825":46.8475463155,"21826":46.805617987,"21827":46.763787782,"21828":46.722055183,"21829":46.6804181087,"21830":46.6388760136,"21831":46.5974290062,"21832":46.5560770639,"21833":46.514820192,"21834":46.4736583899,"21835":46.4325916577,"21836":46.3916199969,"21837":46.3507434055,"21838":46.3099604797,"21839":46.2692606257,"21840":46.2286408775,"21841":46.1881018265,"21842":46.1476433535,"21843":46.107265483,"21844":46.0669682105,"21845":46.026751537,"21846":45.9866154622,"21847":45.9465599861,"21848":45.9065850172,"21849":45.8666875407,"21850":45.8268666659,"21851":45.7871225719,"21852":45.7474552233,"21853":45.7078646271,"21854":45.6683507818,"21855":45.6289136879,"21856":45.5895533452,"21857":45.5502697537,"21858":45.5110629135,"21859":45.4719191848,"21860":45.4328335931,"21861":45.3938066938,"21862":45.3548383748,"21863":45.3159286595,"21864":45.2770775424,"21865":45.2382850254,"21866":45.1995511072,"21867":45.1608757891,"21868":45.1222590698,"21869":45.0836983725,"21870":45.0451924623,"21871":45.0067413569,"21872":44.9683450518,"21873":44.930003549,"21874":44.891716847,"21875":44.8534849471,"21876":44.8153078481,"21877":44.7771855511,"21878":44.7391180551,"21879":44.70109713,"21880":44.6631176714,"21881":44.6251793841,"21882":44.5872823264,"21883":44.5494264873,"21884":44.5116118682,"21885":44.4738384698,"21886":44.436106291,"21887":44.3984153329,"21888":44.3607655943,"21889":44.323152638,"21890":44.2855729118,"21891":44.2480260175,"21892":44.2105120339,"21893":44.173030946,"21894":44.1355827559,"21895":44.0981674642,"21896":44.0607850698,"21897":44.0234355739,"21898":43.9861189753,"21899":43.9488230929,"21900":43.9115352947,"21901":43.8742548877,"21902":43.8369806612,"21903":43.7997152204,"21904":43.7624552874,"21905":43.7252029132,"21906":43.6879558973,"21907":43.6507165343,"21908":43.6134824856,"21909":43.5762561431,"21910":43.5390350758,"21911":43.5018217736,"21912":43.4646137017,"21913":43.427413463,"21914":43.3902184025,"21915":43.3530312526,"21916":43.3158492207,"21917":43.2786751864,"21918":43.2415062014,"21919":43.2043461623,"21920":43.1671935107,"21921":43.1300518203,"21922":43.0929177016,"21923":43.0557946076,"21924":43.0186789999,"21925":42.9815745406,"21926":42.9444774613,"21927":42.9073916665,"21928":42.8703131356,"21929":42.833246225,"21930":42.7961871434,"21931":42.7591404528,"21932":42.7221015542,"21933":42.6850751837,"21934":42.6480564679,"21935":42.6110504397,"21936":42.5740519187,"21937":42.5370662474,"21938":42.5000879306,"21939":42.4631244735,"21940":42.4261774851,"21941":42.3892548848,"21942":42.3523501555,"21943":42.315469655,"21944":42.2786069321,"21945":42.2417685698,"21946":42.2049478351,"21947":42.1681515941,"21948":42.1313728341,"21949":42.0946187418,"21950":42.0578824495,"21951":42.0211714479,"21952":41.9844782084,"21953":41.9478103304,"21954":41.9111601021,"21955":41.8745353057,"21956":41.8379280572,"21957":41.8013462931,"21958":41.7647819909,"21959":41.7282432264,"21960":41.6917225059,"21961":41.6552281573,"21962":41.6187519499,"21963":41.5823020832,"21964":41.5458703287,"21965":41.5094648972,"21966":41.47307756,"21967":41.4367165162,"21968":41.4003735641,"21969":41.3640568658,"21970":41.3277582824,"21971":41.2914859226,"21972":41.2552317047,"21973":41.2190036603,"21974":41.1827937901,"21975":41.1466100446,"21976":41.1104445112,"21977":41.0743050592,"21978":41.0381838597,"21979":41.0020887078,"21980":40.9660105944,"21981":40.9299566574,"21982":40.8939192003,"21983":40.857905927,"21984":40.8219091552,"21985":40.7859365937,"21986":40.7499805415,"21987":40.7140487569,"21988":40.6781334692,"21989":40.6422425436,"21990":40.6063692016,"21991":40.5705221823,"21992":40.5346934151,"21993":40.4988911932,"21994":40.4631071095,"21995":40.4273498234,"21996":40.3916105226,"21997":40.3558983409,"21998":40.3202039388,"21999":40.2845370592,"22000":0.0638243178,"22001":0.0636397315,"22002":0.0634482932,"22003":0.0632490036,"22004":0.0630409054,"22005":0.0628230981,"22006":0.0625947299,"22007":0.0623549926,"22008":0.0621031182,"22009":0.0618383752,"22010":0.0615600664,"22011":0.0612675267,"22012":0.0609601214,"22013":0.0606372457,"22014":0.0602983232,"22015":0.0599428062,"22016":0.0595701748,"22017":0.0591799374,"22018":0.0587716306,"22019":0.0583448197,"22020":0.0578990987,"22021":0.0574341436,"22022":0.056949767,"22023":0.0564458666,"22024":0.0559223554,"22025":0.0553791493,"22026":0.0548161719,"22027":0.0542333589,"22028":0.0536306598,"22029":0.0530080418,"22030":0.0523654906,"22031":0.0517030152,"22032":0.0510206507,"22033":0.050318475,"22034":0.0495966766,"22035":0.048855623,"22036":0.0480958627,"22037":0.0473180866,"22038":0.046523092,"22039":0.0457117536,"22040":0.0448850009,"22041":0.0440439097,"22042":0.0431899359,"22043":0.0423247912,"22044":0.0414501582,"22045":0.0405676138,"22046":0.039678642,"22047":0.0387846401,"22048":0.0378869227,"22049":0.0369867266,"22050":0.0360852142,"22051":0.0351834836,"22052":0.034282594,"22053":0.0333835623,"22054":0.0324873414,"22055":0.031594817,"22056":0.0307068104,"22057":0.0298240823,"22058":0.0289473349,"22059":0.0280772147,"22060":0.0272143146,"22061":0.0263592256,"22062":0.0255128929,"22063":0.0246765607,"22064":0.0238514171,"22065":0.0230384914,"22066":0.0222386803,"22067":0.0214527628,"22068":0.0206814119,"22069":0.0199252054,"22070":0.0191846364,"22071":0.0184601227,"22072":0.017752063,"22073":0.0170608411,"22074":0.016386785,"22075":0.015730159,"22076":0.0150911711,"22077":0.0144699797,"22078":0.0138666988,"22079":0.0132814028,"22080":0.0127141311,"22081":0.012164892,"22082":0.0116335345,"22083":0.0111197469,"22084":0.0106231862,"22085":0.0101435292,"22086":0.0096804685,"22087":0.0092337101,"22088":0.008802972,"22089":0.0083879825,"22090":0.0079884795,"22091":0.0076042095,"22092":0.0072349066,"22093":0.0068802897,"22094":0.0065400808,"22095":0.0062140148,"22096":0.005901839,"22097":0.0056033119,"22098":0.0053182028,"22099":0.0050462916,"22100":0.0047873675,"22101":0.0045412299,"22102":0.0043074868,"22103":0.0040854972,"22104":0.0038745643,"22105":0.0036740571,"22106":0.0034834174,"22107":0.0033021481,"22108":0.0031298069,"22109":0.0029659998,"22110":0.002810376,"22111":0.0026626232,"22112":0.0025224012,"22113":0.0023892979,"22114":0.002262892,"22115":0.0021428048,"22116":0.0020287038,"22117":0.0019202967,"22118":0.0018173267,"22119":0.0017195691,"22120":0.0016268274,"22121":0.001538931,"22122":0.0014556645,"22123":0.001376717,"22124":0.0013017466,"22125":0.001230446,"22126":0.0011625518,"22127":0.0010978368,"22128":0.0010361058,"22129":0.0009771914,"22130":0.0009209505,"22131":0.0008672613,"22132":0.0008160121,"22133":0.0007670905,"22134":0.0007203895,"22135":0.0006758167,"22136":0.0006332949,"22137":0.0005927595,"22138":0.0005541574,"22139":0.0005174447,"22140":0.0004825857,"22141":0.0004495514,"22142":0.0004183206,"22143":0.0003888812,"22144":0.0003612271,"22145":0.0003353547,"22146":0.0003112609,"22147":0.0002889424,"22148":0.0002683959,"22149":0.0002496172,"22150":0.0002326012,"22151":0.0002173414,"22152":0.0002038304,"22153":0.00019206,"22154":0.0001820213,"22155":0.0001737031,"22156":0.0001670924,"22157":0.0001621741,"22158":0.000158931,"22159":0.0001573437,"22160":0.0001573911,"22161":0.0001590502,"22162":0.0001622955,"22163":0.0001670973,"22164":0.0001734222,"22165":0.0001812359,"22166":0.0001905037,"22167":0.0002011908,"22168":0.0002132622,"22169":0.0002266828,"22170":0.0002414177,"22171":0.0002574319,"22172":0.0002746908,"22173":0.0002931592,"22174":0.0003128022,"22175":0.0003335851,"22176":0.0003554743,"22177":0.0003784373,"22178":0.0004024426,"22179":0.0004274601,"22180":0.0004534608,"22181":0.0004804174,"22182":0.0005083033,"22183":0.0005370726,"22184":0.0005666611,"22185":0.0005970069,"22186":0.0006280571,"22187":0.000659766,"22188":0.0006920951,"22189":0.0007250124,"22190":0.0007584919,"22191":0.0007925128,"22192":0.0008270596,"22193":0.0008621154,"22194":0.0008976616,"22195":0.000933683,"22196":0.0009701697,"22197":0.0010071165,"22198":0.0010445224,"22199":0.0010823902,"22200":0.0011207259,"22201":0.0011595385,"22202":0.0011988392,"22203":0.0012386262,"22204":0.0012788814,"22205":0.0013195861,"22206":0.0013607277,"22207":0.0014022996,"22208":0.0014443007,"22209":0.0014867338,"22210":0.0015296059,"22211":0.0015729267,"22212":0.0016167087,"22213":0.0016609642,"22214":0.0017057051,"22215":0.0017509437,"22216":0.0017966933,"22217":0.001842968,"22218":0.0018897825,"22219":0.0019371513,"22220":0.0019850889,"22221":0.0020336091,"22222":0.0020827253,"22223":0.0021324344,"22224":0.0021827099,"22225":0.0022335171,"22226":0.0022848248,"22227":0.0023366071,"22228":0.0023888422,"22229":0.0024415121,"22230":0.0024946017,"22231":0.0025480983,"22232":0.0026019914,"22233":0.0026562689,"22234":0.0027109151,"22235":0.0027659129,"22236":0.0028212473,"22237":0.0028769054,"22238":0.0029328761,"22239":0.0029891502,"22240":0.0030457196,"22241":0.003102578,"22242":0.0031597201,"22243":0.0032171324,"22244":0.0032747836,"22245":0.0033326338,"22246":0.0033906474,"22247":0.0034487953,"22248":0.0035070542,"22249":0.0035654063,"22250":0.0036238388,"22251":0.0036823436,"22252":0.0037409171,"22253":0.0037995573,"22254":0.00385826,"22255":0.003917021,"22256":0.0039758407,"22257":0.0040347255,"22258":0.004093687,"22259":0.0041527417,"22260":0.0042119113,"22261":0.0042712223,"22262":0.0043307056,"22263":0.0043903919,"22264":0.0044502995,"22265":0.00451044,"22266":0.0045708304,"22267":0.0046314965,"22268":0.0046924713,"22269":0.0047537955,"22270":0.0048155157,"22271":0.0048776852,"22272":0.0049403626,"22273":0.0050036106,"22274":0.0050674906,"22275":0.0051320635,"22276":0.005197395,"22277":0.0052635567,"22278":0.0053306254,"22279":0.0053986829,"22280":0.0054678151,"22281":0.005538112,"22282":0.0056096673,"22283":0.0056825746,"22284":0.0057569046,"22285":0.0058327078,"22286":0.0059100375,"22287":0.0059889564,"22288":0.0060695344,"22289":0.0061518476,"22290":0.0062359776,"22291":0.0063220103,"22292":0.0064100361,"22293":0.0065001479,"22294":0.0065924301,"22295":0.0066869581,"22296":0.0067838094,"22297":0.0068830664,"22298":0.0069848153,"22299":0.0070891455,"22300":0.007196149,"22301":0.0073059201,"22302":0.0074185545,"22303":0.0075341493,"22304":0.0076530968,"22305":0.0077760958,"22306":0.007903852,"22307":0.0080369869,"22308":0.0081761317,"22309":0.0083218496,"22310":0.0084746525,"22311":0.0086350138,"22312":0.0088033762,"22313":0.0089801299,"22314":0.009165688,"22315":0.0093604792,"22316":0.0095649218,"22317":0.0097793858,"22318":0.0100042115,"22319":0.0102396965,"22320":0.010486114,"22321":0.0107436991,"22322":0.0110126664,"22323":0.0112931963,"22324":0.0115855464,"22325":0.0118900659,"22326":0.0122071179,"22327":0.0125370092,"22328":0.0128800003,"22329":0.0132362987,"22330":0.0136060752,"22331":0.0139894558,"22332":0.0143865358,"22333":0.0147973722,"22334":0.0152220251,"22335":0.0156605639,"22336":0.0161130502,"22337":0.0165795083,"22338":0.0170599329,"22339":0.0175542836,"22340":0.0180624964,"22341":0.0185844776,"22342":0.0191201136,"22343":0.0196692658,"22344":0.0202317722,"22345":0.0208074381,"22346":0.02139605,"22347":0.0219973785,"22348":0.0226111862,"22349":0.0232372229,"22350":0.0238752318,"22351":0.0245249455,"22352":0.0251860913,"22353":0.0258583879,"22354":0.026541547,"22355":0.0272352673,"22356":0.027939242,"22357":0.02865316,"22358":0.0293767109,"22359":0.0301095823,"22360":0.0308514631,"22361":0.0316020418,"22362":0.032361009,"22363":0.0331280559,"22364":0.0339028353,"22365":0.0346848964,"22366":0.0354737299,"22367":0.0362688413,"22368":0.03706977,"22369":0.0378760828,"22370":0.038687373,"22371":0.0395032563,"22372":0.0403233708,"22373":0.0411473737,"22374":0.0419749216,"22375":0.0428056246,"22376":0.0436390656,"22377":0.0444748477,"22378":0.0453126066,"22379":0.0461520059,"22380":0.0469927346,"22381":0.0478345052,"22382":0.0486770516,"22383":0.0495201275,"22384":0.0503634827,"22385":0.0512067788,"22386":0.0520496129,"22387":0.0528916022,"22388":0.0537324081,"22389":0.054571728,"22390":0.0554092927,"22391":0.0562448618,"22392":0.0570782216,"22393":0.0579091817,"22394":0.0587375647,"22395":0.0595631429,"22396":0.0603856464,"22397":0.0612048225,"22398":0.0620204529,"22399":0.0628323474,"22400":0.0636403412,"22401":0.0644442913,"22402":0.0652440745,"22403":0.0660395847,"22404":0.0668307294,"22405":0.067617376,"22406":0.0683993531,"22407":0.0691764982,"22408":0.0699486741,"22409":0.0707157644,"22410":0.0714776706,"22411":0.0722343087,"22412":0.0729856079,"22413":0.0737315079,"22414":0.0744719583,"22415":0.0752068814,"22416":0.07593617,"22417":0.0766597199,"22418":0.077377442,"22419":0.0780892598,"22420":0.0787951073,"22421":0.0794949274,"22422":0.0801886712,"22423":0.0808762953,"22424":0.0815577611,"22425":0.0822330195,"22426":0.082902009,"22427":0.0835646677,"22428":0.0842209401,"22429":0.0848707761,"22430":0.0855141302,"22431":0.0861509608,"22432":0.0867812293,"22433":0.0874049,"22434":0.0880219394,"22435":0.0886322903,"22436":0.0892358642,"22437":0.0898325657,"22438":0.0904223086,"22439":0.0910050159,"22440":0.0915806185,"22441":0.0921490532,"22442":0.0927102595,"22443":0.0932641777,"22444":0.0938107484,"22445":0.0943499232,"22446":0.0948816687,"22447":0.0954059587,"22448":0.0959227668,"22449":0.0964320659,"22450":0.0969338296,"22451":0.097428032,"22452":0.0979146489,"22453":0.0983936577,"22454":0.0988650381,"22455":0.0993287688,"22456":0.0997848254,"22457":0.1002331836,"22458":0.1006738237,"22459":0.1011067301,"22460":0.101531892,"22461":0.1019493031,"22462":0.1023589612,"22463":0.1027608684,"22464":0.1031550307,"22465":0.1035414595,"22466":0.1039201725,"22467":0.1042911924,"22468":0.1046545451,"22469":0.1050102595,"22470":0.1053583673,"22471":0.1056989029,"22472":0.1060319034,"22473":0.1063574088,"22474":0.1066754616,"22475":0.1069861076,"22476":0.1072893976,"22477":0.107585386,"22478":0.1078741292,"22479":0.1081556849,"22480":0.1084301125,"22481":0.1086974728,"22482":0.1089578279,"22483":0.109211241,"22484":0.1094577765,"22485":0.1096975052,"22486":0.109930515,"22487":0.1101569065,"22488":0.1103767792,"22489":0.1105902285,"22490":0.1107973461,"22491":0.1109982207,"22492":0.1111929383,"22493":0.1113815817,"22494":0.1115642317,"22495":0.1117409698,"22496":0.1119118919,"22497":0.1120771041,"22498":0.1122367098,"22499":0.1123908048,"22500":0.1125394795,"22501":0.1126828184,"22502":0.1128209011,"22503":0.1129538023,"22504":0.1130815927,"22505":0.1132043407,"22506":0.1133221314,"22507":0.1134350636,"22508":0.1135432318,"22509":0.1136467214,"22510":0.1137456102,"22511":0.1138399688,"22512":0.1139298616,"22513":0.1140153475,"22514":0.1140964799,"22515":0.1141733086,"22516":0.1142459003,"22517":0.1143143381,"22518":0.1143787018,"22519":0.114439062,"22520":0.1144954817,"22521":0.1145480175,"22522":0.1145967203,"22523":0.1146416363,"22524":0.1146828072,"22525":0.1147202716,"22526":0.114754079,"22527":0.1147842912,"22528":0.1148109692,"22529":0.1148341681,"22530":0.1148539387,"22531":0.1148703276,"22532":0.1148833788,"22533":0.1148931336,"22534":0.1148996314,"22535":0.1149029105,"22536":0.1149030221,"22537":0.1149000327,"22538":0.1148940115,"22539":0.1148850235,"22540":0.1148731301,"22541":0.1148583901,"22542":0.11484086,"22543":0.1148205946,"22544":0.1147976476,"22545":0.1147720718,"22546":0.114743922,"22547":0.1147132553,"22548":0.11468013,"22549":0.1146446033,"22550":0.114606732,"22551":0.1145665724,"22552":0.1145241804,"22553":0.1144796116,"22554":0.1144329214,"22555":0.1143841648,"22556":0.1143334165,"22557":0.1142807792,"22558":0.1142263654,"22559":0.1141702809,"22560":0.1141126234,"22561":0.1140534835,"22562":0.1139929453,"22563":0.113931087,"22564":0.1138679814,"22565":0.1138036961,"22566":0.1137383018,"22567":0.113671878,"22568":0.1136045055,"22569":0.1135362585,"22570":0.1134672038,"22571":0.1133974009,"22572":0.1133269031,"22573":0.1132557575,"22574":0.1131840053,"22575":0.1131116824,"22576":0.1130388283,"22577":0.1129654953,"22578":0.1128917337,"22579":0.1128175756,"22580":0.1127430383,"22581":0.1126681326,"22582":0.1125928648,"22583":0.112517237,"22584":0.1124412479,"22585":0.1123648924,"22586":0.1122881637,"22587":0.1122110553,"22588":0.11213356,"22589":0.1120556678,"22590":0.1119773657,"22591":0.1118986376,"22592":0.1118194654,"22593":0.1117398288,"22594":0.1116597057,"22595":0.1115790729,"22596":0.1114979072,"22597":0.1114161891,"22598":0.1113339019,"22599":0.1112510282,"22600":0.1111675491,"22601":0.1110834456,"22602":0.110998698,"22603":0.1109132868,"22604":0.110827193,"22605":0.1107403981,"22606":0.1106528844,"22607":0.110564633,"22608":0.110475625,"22609":0.1103858431,"22610":0.1102952729,"22611":0.1102039024,"22612":0.1101117225,"22613":0.1100187269,"22614":0.109924912,"22615":0.1098302774,"22616":0.1097348252,"22617":0.1096385564,"22618":0.1095414719,"22619":0.1094435757,"22620":0.1093448757,"22621":0.1092453841,"22622":0.1091451165,"22623":0.1090440921,"22624":0.1089423336,"22625":0.1088398669,"22626":0.1087367209,"22627":0.1086329315,"22628":0.1085285413,"22629":0.1084235951,"22630":0.108318139,"22631":0.1082122201,"22632":0.1081058864,"22633":0.107999187,"22634":0.1078921718,"22635":0.1077848913,"22636":0.1076773965,"22637":0.1075697455,"22638":0.1074620044,"22639":0.1073542395,"22640":0.1072465147,"22641":0.1071388914,"22642":0.1070314289,"22643":0.1069241842,"22644":0.1068172115,"22645":0.1067105631,"22646":0.1066042883,"22647":0.1064984412,"22648":0.1063930814,"22649":0.1062882668,"22650":0.1061840504,"22651":0.1060804799,"22652":0.105977598,"22653":0.1058754423,"22654":0.1057740459,"22655":0.105673437,"22656":0.1055736394,"22657":0.1054746819,"22658":0.1053766021,"22659":0.1052794362,"22660":0.1051832128,"22661":0.1050879531,"22662":0.1049936712,"22663":0.1049003743,"22664":0.1048080638,"22665":0.1047167348,"22666":0.1046263772,"22667":0.1045369779,"22668":0.1044485224,"22669":0.1043609926,"22670":0.1042743659,"22671":0.1041886145,"22672":0.1041037066,"22673":0.1040196066,"22674":0.103936275,"22675":0.1038536696,"22676":0.1037717451,"22677":0.1036904535,"22678":0.1036097444,"22679":0.103529565,"22680":0.1034498617,"22681":0.1033705795,"22682":0.1032916633,"22683":0.1032130575,"22684":0.1031347063,"22685":0.1030565545,"22686":0.1029785474,"22687":0.1029006273,"22688":0.1028227307,"22689":0.102744792,"22690":0.1026667479,"22691":0.1025885388,"22692":0.1025101088,"22693":0.1024314056,"22694":0.1023523804,"22695":0.1022729879,"22696":0.1021931864,"22697":0.1021129316,"22698":0.1020321663,"22699":0.1019508272,"22700":0.1018688567,"22701":0.101786205,"22702":0.1017028297,"22703":0.1016186951,"22704":0.1015337738,"22705":0.101448064,"22706":0.1013615796,"22707":0.1012743378,"22708":0.1011863561,"22709":0.101097653,"22710":0.1010082515,"22711":0.1009181786,"22712":0.100827466,"22713":0.100736149,"22714":0.1006442663,"22715":0.1005518598,"22716":0.1004589744,"22717":0.1003656555,"22718":0.1002719417,"22719":0.1001778668,"22720":0.1000834666,"22721":0.099988781,"22722":0.0998938532,"22723":0.0997987287,"22724":0.0997034555,"22725":0.0996080831,"22726":0.0995126623,"22727":0.099417245,"22728":0.0993218856,"22729":0.0992266402,"22730":0.0991315649,"22731":0.0990367143,"22732":0.0989421419,"22733":0.0988478996,"22734":0.0987540375,"22735":0.0986606033,"22736":0.098567642,"22737":0.0984751957,"22738":0.0983833104,"22739":0.0982920351,"22740":0.0982014155,"22741":0.0981114919,"22742":0.0980222994,"22743":0.0979338682,"22744":0.0978462238,"22745":0.0977593868,"22746":0.0976733736,"22747":0.0975881959,"22748":0.0975038611,"22749":0.0974203716,"22750":0.0973377263,"22751":0.0972559202,"22752":0.0971749449,"22753":0.0970947888,"22754":0.0970154369,"22755":0.0969368715,"22756":0.096859072,"22757":0.0967820152,"22758":0.0967056732,"22759":0.0966300129,"22760":0.0965549989,"22761":0.0964805947,"22762":0.0964067629,"22763":0.0963334656,"22764":0.0962606642,"22765":0.0961883196,"22766":0.0961163924,"22767":0.0960448432,"22768":0.0959736251,"22769":0.0959026823,"22770":0.0958319569,"22771":0.0957613935,"22772":0.0956909397,"22773":0.095620546,"22774":0.0955501654,"22775":0.0954797532,"22776":0.0954092676,"22777":0.0953386687,"22778":0.0952679142,"22779":0.0951969565,"22780":0.0951257479,"22781":0.0950542442,"22782":0.0949824055,"22783":0.0949101958,"22784":0.0948375825,"22785":0.0947645363,"22786":0.0946910313,"22787":0.0946170446,"22788":0.0945425555,"22789":0.0944675455,"22790":0.0943919981,"22791":0.0943158998,"22792":0.0942392391,"22793":0.0941620073,"22794":0.0940841977,"22795":0.0940058057,"22796":0.0939268286,"22797":0.0938472655,"22798":0.0937671155,"22799":0.0936863766,"22800":0.0936050461,"22801":0.093523123,"22802":0.0934406083,"22803":0.0933575041,"22804":0.093273814,"22805":0.0931895423,"22806":0.0931046942,"22807":0.0930192751,"22808":0.0929332918,"22809":0.0928467529,"22810":0.0927596687,"22811":0.0926720481,"22812":0.0925838991,"22813":0.0924952282,"22814":0.0924060401,"22815":0.0923163381,"22816":0.0922261235,"22817":0.0921353955,"22818":0.0920441544,"22819":0.0919524087,"22820":0.0918601715,"22821":0.0917674525,"22822":0.091674256,"22823":0.0915805816,"22824":0.091486424,"22825":0.0913917735,"22826":0.0912966164,"22827":0.0912009347,"22828":0.0911047072,"22829":0.0910079101,"22830":0.0909105171,"22831":0.0908124987,"22832":0.0907138223,"22833":0.0906144523,"22834":0.0905143507,"22835":0.0904134768,"22836":0.0903117883,"22837":0.0902092409,"22838":0.0901057895,"22839":0.090001392,"22840":0.0898960088,"22841":0.0897895999,"22842":0.089682124,"22843":0.0895735395,"22844":0.0894638045,"22845":0.0893528776,"22846":0.0892407182,"22847":0.0891272868,"22848":0.0890125456,"22849":0.0888964589,"22850":0.0887789931,"22851":0.0886601177,"22852":0.0885398048,"22853":0.0884180297,"22854":0.0882947712,"22855":0.0881700114,"22856":0.0880437366,"22857":0.0879159368,"22858":0.0877866062,"22859":0.0876557426,"22860":0.0875233473,"22861":0.0873894263,"22862":0.0872539894,"22863":0.0871170511,"22864":0.08697863,"22865":0.0868387487,"22866":0.0866974339,"22867":0.0865547161,"22868":0.0864106292,"22869":0.0862652122,"22870":0.0861185093,"22871":0.0859705677,"22872":0.0858214366,"22873":0.0856711671,"22874":0.0855198118,"22875":0.0853674245,"22876":0.0852140601,"22877":0.085059774,"22878":0.084904622,"22879":0.0847486677,"22880":0.0845919848,"22881":0.0844346486,"22882":0.0842767312,"22883":0.0841183007,"22884":0.0839594212,"22885":0.083800153,"22886":0.0836405524,"22887":0.0834806715,"22888":0.0833205584,"22889":0.0831602613,"22890":0.0829998313,"22891":0.0828393171,"22892":0.0826787616,"22893":0.082518201,"22894":0.0823576652,"22895":0.0821971782,"22896":0.0820367577,"22897":0.0818764158,"22898":0.0817161587,"22899":0.0815559959,"22900":0.0813959458,"22901":0.0812360199,"22902":0.0810761982,"22903":0.0809164292,"22904":0.0807566484,"22905":0.0805967896,"22906":0.0804367859,"22907":0.0802765697,"22908":0.0801160729,"22909":0.0799552258,"22910":0.0797939563,"22911":0.0796321914,"22912":0.0794698587,"22913":0.0793068871,"22914":0.0791432075,"22915":0.0789787523,"22916":0.0788134568,"22917":0.0786472591,"22918":0.0784801007,"22919":0.0783119167,"22920":0.0781426158,"22921":0.077972085,"22922":0.0778002117,"22923":0.0776268937,"22924":0.0774520415,"22925":0.0772755777,"22926":0.0770974371,"22927":0.0769175662,"22928":0.0767359233,"22929":0.0765524781,"22930":0.0763672118,"22931":0.0761801171,"22932":0.0759911977,"22933":0.0758004683,"22934":0.0756079549,"22935":0.0754136939,"22936":0.0752177323,"22937":0.0750201272,"22938":0.0748209456,"22939":0.0746202662,"22940":0.0744181874,"22941":0.0742148242,"22942":0.0740102988,"22943":0.0738047381,"22944":0.0735982734,"22945":0.0733910399,"22946":0.0731831766,"22947":0.0729748253,"22948":0.0727661305,"22949":0.0725572387,"22950":0.0723483008,"22951":0.0721394711,"22952":0.0719309031,"22953":0.0717227483,"22954":0.0715151548,"22955":0.0713082675,"22956":0.0711022265,"22957":0.0708971667,"22958":0.0706932169,"22959":0.0704905007,"22960":0.0702892004,"22961":0.0700895523,"22962":0.0698917828,"22963":0.0696960888,"22964":0.0695026403,"22965":0.0693115826,"22966":0.0691230364,"22967":0.0689370993,"22968":0.0687538455,"22969":0.0685733275,"22970":0.0683955792,"22971":0.0682206173,"22972":0.0680484371,"22973":0.0678790116,"22974":0.067712291,"22975":0.0675482038,"22976":0.0673866564,"22977":0.0672275336,"22978":0.0670706981,"22979":0.0669159914,"22980":0.0667632247,"22981":0.0666121779,"22982":0.0664626082,"22983":0.0663142544,"22984":0.066166837,"22985":0.0660200584,"22986":0.0658736022,"22987":0.0657271344,"22988":0.0655803024,"22989":0.0654327366,"22990":0.0652840505,"22991":0.0651338422,"22992":0.0649816941,"22993":0.0648271723,"22994":0.064669828,"22995":0.0645091981,"22996":0.0643448061,"22997":0.0641761634,"22998":0.0640027699,"22999":0.0638241158,"23000":0.0613306619,"23001":0.0611594456,"23002":0.060979317,"23003":0.0607891886,"23004":0.060588015,"23005":0.0603748082,"23006":0.0601486298,"23007":0.0599085919,"23008":0.059653861,"23009":0.0593836618,"23010":0.059097275,"23011":0.0587940348,"23012":0.0584733265,"23013":0.0581345854,"23014":0.0577772961,"23015":0.0574009923,"23016":0.0570052573,"23017":0.0565897247,"23018":0.0561540789,"23019":0.0556980569,"23020":0.0552214487,"23021":0.0547242561,"23022":0.0542068569,"23023":0.0536698481,"23024":0.0531138384,"23025":0.0525394074,"23026":0.0519471223,"23027":0.0513375469,"23028":0.0507112497,"23029":0.0500688106,"23030":0.0494108264,"23031":0.0487379204,"23032":0.0480507534,"23033":0.0473500214,"23034":0.0466364482,"23035":0.0459107846,"23036":0.045173809,"23037":0.0444263281,"23038":0.0436691758,"23039":0.042903212,"23040":0.0421293213,"23041":0.0413485801,"23042":0.0405626376,"23043":0.0397735383,"23044":0.0389832926,"23045":0.0381937648,"23046":0.0374067009,"23047":0.0366237401,"23048":0.0358464255,"23049":0.0350762121,"23050":0.0343144736,"23051":0.0335625177,"23052":0.0328216251,"23053":0.0320930428,"23054":0.0313779501,"23055":0.0306774506,"23056":0.0299925765,"23057":0.0293242906,"23058":0.0286734889,"23059":0.0280410019,"23060":0.0274275961,"23061":0.0268340221,"23062":0.0262613538,"23063":0.0257109338,"23064":0.0251840331,"23065":0.0246817515,"23066":0.024205042,"23067":0.023754724,"23068":0.0233314936,"23069":0.0229359341,"23070":0.0225685248,"23071":0.022229651,"23072":0.0219196569,"23073":0.0216388499,"23074":0.0213874625,"23075":0.0211656444,"23076":0.0209734707,"23077":0.0208109491,"23078":0.0206780256,"23079":0.0205745902,"23080":0.0205004822,"23081":0.0204554955,"23082":0.0204390083,"23083":0.0204499752,"23084":0.0204872928,"23085":0.020549941,"23086":0.0206369701,"23087":0.0207474909,"23088":0.020880668,"23089":0.0210357136,"23090":0.0212118824,"23091":0.0214084674,"23092":0.0216247396,"23093":0.0218599367,"23094":0.0221133156,"23095":0.0223841772,"23096":0.0226718641,"23097":0.022975757,"23098":0.0232952717,"23099":0.0236298568,"23100":0.0239789915,"23101":0.0243421838,"23102":0.0247186191,"23103":0.025107058,"23104":0.0255061751,"23105":0.0259147729,"23106":0.0263317926,"23107":0.0267562946,"23108":0.0271874463,"23109":0.0276245101,"23110":0.0280668335,"23111":0.0285138397,"23112":0.0289649341,"23113":0.0294194385,"23114":0.029876677,"23115":0.0303360492,"23116":0.0307970326,"23117":0.0312591727,"23118":0.0317220761,"23119":0.0321854035,"23120":0.0326488644,"23121":0.0331122113,"23122":0.0335751541,"23123":0.0340372979,"23124":0.03449822,"23125":0.0349575493,"23126":0.0354149766,"23127":0.0358702454,"23128":0.0363231455,"23129":0.0367735072,"23130":0.0372211969,"23131":0.037666112,"23132":0.038108167,"23133":0.0385472795,"23134":0.0389833773,"23135":0.0394164087,"23136":0.0398463428,"23137":0.0402731661,"23138":0.0406968802,"23139":0.0411174988,"23140":0.0415350465,"23141":0.0419495562,"23142":0.0423610848,"23143":0.0427697371,"23144":0.0431756476,"23145":0.0435789485,"23146":0.0439797627,"23147":0.0443782041,"23148":0.0447743788,"23149":0.0451683852,"23150":0.0455603143,"23151":0.0459502499,"23152":0.0463382716,"23153":0.0467244608,"23154":0.0471088984,"23155":0.0474916583,"23156":0.0478728064,"23157":0.0482524011,"23158":0.0486304938,"23159":0.0490071295,"23160":0.0493823468,"23161":0.0497561791,"23162":0.05012866,"23163":0.0504998465,"23164":0.0508698126,"23165":0.0512386265,"23166":0.0516063446,"23167":0.0519730134,"23168":0.0523386711,"23169":0.0527033479,"23170":0.0530670679,"23171":0.0534298491,"23172":0.0537917057,"23173":0.0541526544,"23174":0.0545127142,"23175":0.0548719011,"23176":0.055230227,"23177":0.0555877004,"23178":0.0559443275,"23179":0.0563001124,"23180":0.0566550579,"23181":0.057009166,"23182":0.0573624381,"23183":0.0577148755,"23184":0.0580664796,"23185":0.0584172522,"23186":0.0587671965,"23187":0.0591163164,"23188":0.0594646177,"23189":0.0598121073,"23190":0.0601587939,"23191":0.060504688,"23192":0.0608498016,"23193":0.0611941487,"23194":0.0615377444,"23195":0.0618806059,"23196":0.062222752,"23197":0.0625642031,"23198":0.062904981,"23199":0.0632451091,"23200":0.0635846118,"23201":0.0639235149,"23202":0.0642618449,"23203":0.0645996186,"23204":0.0649368413,"23205":0.0652735169,"23206":0.0656096525,"23207":0.0659452583,"23208":0.0662803469,"23209":0.0666149327,"23210":0.0669490317,"23211":0.0672826607,"23212":0.0676158371,"23213":0.0679485778,"23214":0.0682808981,"23215":0.0686128128,"23216":0.0689443363,"23217":0.0692754826,"23218":0.0696062648,"23219":0.0699366949,"23220":0.0702667841,"23221":0.0705965421,"23222":0.070925977,"23223":0.0712550734,"23224":0.0715837814,"23225":0.0719120385,"23226":0.0722397873,"23227":0.0725669774,"23228":0.0728935638,"23229":0.0732195064,"23230":0.073544769,"23231":0.0738693186,"23232":0.0741931255,"23233":0.0745161568,"23234":0.0748383737,"23235":0.0751597351,"23236":0.0754802033,"23237":0.0757997439,"23238":0.076118326,"23239":0.0764359212,"23240":0.0767525037,"23241":0.0770680502,"23242":0.0773825395,"23243":0.0776959364,"23244":0.0780081747,"23245":0.0783191735,"23246":0.0786288585,"23247":0.0789371666,"23248":0.0792440438,"23249":0.0795494446,"23250":0.0798533315,"23251":0.0801556738,"23252":0.0804564472,"23253":0.0807556291,"23254":0.0810531914,"23255":0.0813491044,"23256":0.0816433447,"23257":0.0819358965,"23258":0.0822267513,"23259":0.0825159067,"23260":0.0828033666,"23261":0.0830891403,"23262":0.0833732422,"23263":0.0836556813,"23264":0.083936437,"23265":0.0842154695,"23266":0.0844927461,"23267":0.0847682477,"23268":0.0850419662,"23269":0.0853139039,"23270":0.085584072,"23271":0.08585249,"23272":0.0861191844,"23273":0.0863841851,"23274":0.0866475147,"23275":0.08690919,"23276":0.0871692333,"23277":0.0874276747,"23278":0.0876845505,"23279":0.0879399028,"23280":0.0881937784,"23281":0.0884462282,"23282":0.0886973065,"23283":0.0889470623,"23284":0.0891954774,"23285":0.0894424765,"23286":0.0896879878,"23287":0.0899319605,"23288":0.0901743608,"23289":0.0904151689,"23290":0.0906543771,"23291":0.0908919884,"23292":0.091128014,"23293":0.0913624718,"23294":0.0915953546,"23295":0.0918266304,"23296":0.0920562717,"23297":0.0922842633,"23298":0.0925105997,"23299":0.0927352836,"23300":0.0929583247,"23301":0.093179738,"23302":0.0933995433,"23303":0.0936177642,"23304":0.093834463,"23305":0.0940497413,"23306":0.0942637052,"23307":0.0944764509,"23308":0.0946880663,"23309":0.094898632,"23310":0.0951082216,"23311":0.0953169026,"23312":0.0955247367,"23313":0.0957317806,"23314":0.0959381037,"23315":0.0961437911,"23316":0.0963489269,"23317":0.0965535864,"23318":0.0967578362,"23319":0.0969617353,"23320":0.0971653359,"23321":0.0973687446,"23322":0.0975721858,"23323":0.0977759767,"23324":0.0979804772,"23325":0.0981860649,"23326":0.0983930905,"23327":0.0986018594,"23328":0.0988126301,"23329":0.0990256227,"23330":0.0992410195,"23331":0.0994589715,"23332":0.0996795988,"23333":0.0999029962,"23334":0.1001292644,"23335":0.1003585299,"23336":0.1005909136,"23337":0.1008265093,"23338":0.1010653809,"23339":0.1013075673,"23340":0.1015530837,"23341":0.1018019251,"23342":0.102054067,"23343":0.1023094689,"23344":0.102568083,"23345":0.1028298632,"23346":0.1030947567,"23347":0.1033626978,"23348":0.1036336067,"23349":0.1039073922,"23350":0.1041839522,"23351":0.1044631758,"23352":0.1047449437,"23353":0.1050291301,"23354":0.1053156068,"23355":0.1056042491,"23356":0.1058949313,"23357":0.1061875243,"23358":0.1064818934,"23359":0.1067779009,"23360":0.1070754062,"23361":0.1073742667,"23362":0.1076743386,"23363":0.1079754778,"23364":0.1082775264,"23365":0.1085802934,"23366":0.1088835683,"23367":0.1091871466,"23368":0.1094908351,"23369":0.1097944511,"23370":0.1100978213,"23371":0.1104007817,"23372":0.1107031767,"23373":0.1110048593,"23374":0.1113056839,"23375":0.1116054919,"23376":0.1119041178,"23377":0.1122014054,"23378":0.1124972109,"23379":0.1127914024,"23380":0.1130838584,"23381":0.1133744675,"23382":0.1136631277,"23383":0.1139497459,"23384":0.1142342293,"23385":0.1145164554,"23386":0.1147962803,"23387":0.1150735695,"23388":0.1153482057,"23389":0.1156200866,"23390":0.1158891232,"23391":0.1161552391,"23392":0.1164183683,"23393":0.1166784554,"23394":0.1169354505,"23395":0.1171892874,"23396":0.117439886,"23397":0.1176871735,"23398":0.1179310906,"23399":0.1181715892,"23400":0.1184086312,"23401":0.1186421871,"23402":0.1188722354,"23403":0.1190987611,"23404":0.119321755,"23405":0.1195411984,"23406":0.1197570636,"23407":0.1199693265,"23408":0.1201779709,"23409":0.1203829868,"23410":0.1205843694,"23411":0.1207821186,"23412":0.120976238,"23413":0.1211667342,"23414":0.1213536168,"23415":0.1215368877,"23416":0.1217165409,"23417":0.1218925712,"23418":0.1220649768,"23419":0.1222337588,"23420":0.1223989208,"23421":0.1225604682,"23422":0.1227184057,"23423":0.1228727329,"23424":0.1230234416,"23425":0.1231705159,"23426":0.1233139336,"23427":0.1234536689,"23428":0.1235896935,"23429":0.123721978,"23430":0.1238504926,"23431":0.1239752076,"23432":0.1240960942,"23433":0.1242131247,"23434":0.124326273,"23435":0.1244355025,"23436":0.1245407629,"23437":0.1246420021,"23438":0.1247391738,"23439":0.1248322379,"23440":0.1249211601,"23441":0.1250059111,"23442":0.1250864666,"23443":0.1251628066,"23444":0.1252349152,"23445":0.125302794,"23446":0.125366469,"23447":0.1254259759,"23448":0.1254813493,"23449":0.1255326212,"23450":0.1255798213,"23451":0.1256229782,"23452":0.1256621188,"23453":0.1256972693,"23454":0.1257284552,"23455":0.1257557037,"23456":0.1257790461,"23457":0.1257985153,"23458":0.1258141434,"23459":0.125825962,"23460":0.1258340019,"23461":0.1258382937,"23462":0.1258388679,"23463":0.1258357552,"23464":0.1258289866,"23465":0.1258185974,"23466":0.125804632,"23467":0.1257871395,"23468":0.1257661687,"23469":0.1257417671,"23470":0.1257139811,"23471":0.1256828568,"23472":0.1256484398,"23473":0.1256107756,"23474":0.1255699098,"23475":0.1255258911,"23476":0.125478776,"23477":0.1254286259,"23478":0.1253755014,"23479":0.1253194622,"23480":0.1252605663,"23481":0.1251988712,"23482":0.1251344333,"23483":0.1250673087,"23484":0.1249975526,"23485":0.1249252239,"23486":0.1248503937,"23487":0.1247731412,"23488":0.1246935442,"23489":0.1246116762,"23490":0.1245276071,"23491":0.1244414038,"23492":0.1243531301,"23493":0.1242628468,"23494":0.1241706123,"23495":0.124076485,"23496":0.1239805335,"23497":0.1238828333,"23498":0.123783457,"23499":0.1236824713,"23500":0.1235799378,"23501":0.1234759131,"23502":0.1233704496,"23503":0.1232635953,"23504":0.1231553944,"23505":0.1230458889,"23506":0.1229351289,"23507":0.1228231713,"23508":0.1227100696,"23509":0.1225958708,"23510":0.1224806165,"23511":0.1223643432,"23512":0.1222470829,"23513":0.1221288633,"23514":0.1220097087,"23515":0.1218896401,"23516":0.1217686876,"23517":0.1216468902,"23518":0.1215242843,"23519":0.1214009005,"23520":0.1212767648,"23521":0.1211518989,"23522":0.1210263209,"23523":0.1209000459,"23524":0.1207730866,"23525":0.1206454531,"23526":0.12051716,"23527":0.1203882261,"23528":0.1202586697,"23529":0.1201285064,"23530":0.11999775,"23531":0.1198664129,"23532":0.1197345061,"23533":0.1196020401,"23534":0.1194690248,"23535":0.1193354699,"23536":0.1192013907,"23537":0.1190668091,"23538":0.1189317483,"23539":0.1187962307,"23540":0.1186602776,"23541":0.1185239102,"23542":0.1183871494,"23543":0.1182500159,"23544":0.118112531,"23545":0.117974716,"23546":0.117836591,"23547":0.1176981747,"23548":0.1175594854,"23549":0.1174205429,"23550":0.1172813681,"23551":0.1171419828,"23552":0.1170024099,"23553":0.1168626731,"23554":0.1167227971,"23555":0.1165828068,"23556":0.1164427361,"23557":0.1163026311,"23558":0.1161625422,"23559":0.1160225172,"23560":0.1158826008,"23561":0.1157428348,"23562":0.115603258,"23563":0.115463907,"23564":0.1153248155,"23565":0.1151860148,"23566":0.1150475363,"23567":0.1149094131,"23568":0.1147716776,"23569":0.1146343591,"23570":0.1144974833,"23571":0.1143610726,"23572":0.1142251461,"23573":0.1140897196,"23574":0.1139548059,"23575":0.1138204146,"23576":0.1136865552,"23577":0.1135532395,"23578":0.1134204795,"23579":0.1132882834,"23580":0.1131566554,"23581":0.1130255955,"23582":0.1128951002,"23583":0.1127651626,"23584":0.1126357726,"23585":0.1125069172,"23586":0.1123785803,"23587":0.112250743,"23588":0.1121233835,"23589":0.1119964782,"23590":0.1118700019,"23591":0.1117439278,"23592":0.1116182279,"23593":0.111492873,"23594":0.1113678333,"23595":0.1112430783,"23596":0.111118577,"23597":0.110994297,"23598":0.1108702058,"23599":0.1107462708,"23600":0.1106224606,"23601":0.1104987445,"23602":0.1103750932,"23603":0.1102514785,"23604":0.1101278739,"23605":0.1100042545,"23606":0.1098805965,"23607":0.1097568756,"23608":0.1096330672,"23609":0.1095091493,"23610":0.1093851032,"23611":0.1092609132,"23612":0.1091365668,"23613":0.1090120547,"23614":0.1088873708,"23615":0.1087625122,"23616":0.1086374786,"23617":0.1085122684,"23618":0.1083868793,"23619":0.1082613122,"23620":0.1081355723,"23621":0.1080096687,"23622":0.1078836146,"23623":0.1077574264,"23624":0.1076311239,"23625":0.1075047302,"23626":0.1073782712,"23627":0.1072517778,"23628":0.1071252853,"23629":0.1069988313,"23630":0.1068724548,"23631":0.1067461959,"23632":0.1066200961,"23633":0.1064941975,"23634":0.1063685431,"23635":0.1062431763,"23636":0.1061181407,"23637":0.1059934842,"23638":0.1058692584,"23639":0.105745515,"23640":0.1056223038,"23641":0.1054996725,"23642":0.1053776669,"23643":0.1052563308,"23644":0.1051357054,"23645":0.1050158297,"23646":0.1048967403,"23647":0.1047784749,"23648":0.1046610736,"23649":0.1045445743,"23650":0.1044290102,"23651":0.1043144103,"23652":0.1042007992,"23653":0.1040881971,"23654":0.1039766199,"23655":0.1038660792,"23656":0.1037565823,"23657":0.1036481363,"23658":0.1035407492,"23659":0.1034344262,"23660":0.1033291672,"23661":0.1032249669,"23662":0.1031218148,"23663":0.103019696,"23664":0.1029185907,"23665":0.1028184752,"23666":0.1027193215,"23667":0.1026211003,"23668":0.1025237818,"23669":0.1024273342,"23670":0.102331722,"23671":0.102236906,"23672":0.1021428437,"23673":0.1020494899,"23674":0.1019567967,"23675":0.101864714,"23676":0.1017731898,"23677":0.101682169,"23678":0.1015915924,"23679":0.1015013989,"23680":0.101411527,"23681":0.1013219157,"23682":0.1012325048,"23683":0.1011432345,"23684":0.1010540462,"23685":0.1009648825,"23686":0.1008756873,"23687":0.1007864034,"23688":0.1006969699,"23689":0.100607325,"23690":0.10051741,"23691":0.1004271698,"23692":0.100336553,"23693":0.1002455119,"23694":0.1001540025,"23695":0.1000619845,"23696":0.0999694212,"23697":0.0998762748,"23698":0.0997824987,"23699":0.0996880427,"23700":0.0995928617,"23701":0.0994969176,"23702":0.0994001792,"23703":0.099302621,"23704":0.0992042268,"23705":0.0991050172,"23706":0.0990050334,"23707":0.0989043188,"23708":0.0988029154,"23709":0.098700865,"23710":0.0985982124,"23711":0.0984950056,"23712":0.0983912953,"23713":0.0982871351,"23714":0.0981825811,"23715":0.0980776913,"23716":0.0979725256,"23717":0.0978671435,"23718":0.0977615973,"23719":0.0976559333,"23720":0.097550199,"23721":0.0974444452,"23722":0.0973387249,"23723":0.0972330927,"23724":0.0971276047,"23725":0.0970223178,"23726":0.0969172889,"23727":0.0968125754,"23728":0.0967082345,"23729":0.0966043228,"23730":0.0965008961,"23731":0.0963980085,"23732":0.096295712,"23733":0.096194057,"23734":0.0960930911,"23735":0.0959928594,"23736":0.0958934044,"23737":0.0957947656,"23738":0.0956969815,"23739":0.0956000899,"23740":0.095504125,"23741":0.0954091165,"23742":0.0953150904,"23743":0.0952220682,"23744":0.0951300673,"23745":0.095039101,"23746":0.0949491785,"23747":0.0948603049,"23748":0.0947724793,"23749":0.0946856947,"23750":0.0945999401,"23751":0.0945152015,"23752":0.0944314622,"23753":0.0943487022,"23754":0.094266899,"23755":0.0941860274,"23756":0.0941060595,"23757":0.0940269652,"23758":0.0939487055,"23759":0.0938712319,"23760":0.0937944928,"23761":0.0937184367,"23762":0.093643013,"23763":0.0935681708,"23764":0.0934938601,"23765":0.0934200309,"23766":0.0933466336,"23767":0.0932736194,"23768":0.09320093,"23769":0.0931284951,"23770":0.0930562421,"23771":0.0929841023,"23772":0.0929120111,"23773":0.0928399078,"23774":0.0927677353,"23775":0.0926954401,"23776":0.0926229716,"23777":0.0925502827,"23778":0.0924773253,"23779":0.0924040486,"23780":0.0923304029,"23781":0.0922563423,"23782":0.0921818254,"23783":0.0921068145,"23784":0.0920312757,"23785":0.0919551789,"23786":0.0918784972,"23787":0.0918012071,"23788":0.091723288,"23789":0.0916447219,"23790":0.0915654939,"23791":0.0914855916,"23792":0.0914050053,"23793":0.0913237278,"23794":0.0912417543,"23795":0.0911590823,"23796":0.0910757112,"23797":0.0909916425,"23798":0.0909068787,"23799":0.0908214231,"23800":0.0907352799,"23801":0.0906484544,"23802":0.0905609534,"23803":0.0904727846,"23804":0.0903839565,"23805":0.0902944783,"23806":0.0902043592,"23807":0.0901136087,"23808":0.0900222373,"23809":0.0899302584,"23810":0.0898376867,"23811":0.0897445356,"23812":0.0896508164,"23813":0.0895565381,"23814":0.0894617076,"23815":0.0893663291,"23816":0.0892704043,"23817":0.0891739324,"23818":0.0890769138,"23819":0.0889793613,"23820":0.0888812944,"23821":0.0887827285,"23822":0.0886836712,"23823":0.0885841236,"23824":0.0884840802,"23825":0.0883835298,"23826":0.0882824555,"23827":0.088180835,"23828":0.0880786417,"23829":0.087975847,"23830":0.0878724197,"23831":0.0877683246,"23832":0.087663522,"23833":0.0875579685,"23834":0.0874516169,"23835":0.0873444172,"23836":0.0872363165,"23837":0.0871272598,"23838":0.0870171919,"23839":0.0869060662,"23840":0.0867938445,"23841":0.0866804876,"23842":0.0865659535,"23843":0.0864501984,"23844":0.0863331771,"23845":0.0862148441,"23846":0.0860951544,"23847":0.0859740633,"23848":0.0858515282,"23849":0.0857275094,"23850":0.085601971,"23851":0.0854748801,"23852":0.0853462068,"23853":0.0852159246,"23854":0.0850840105,"23855":0.084950446,"23856":0.0848152165,"23857":0.0846783123,"23858":0.0845397284,"23859":0.0843994688,"23860":0.0842575471,"23861":0.0841139818,"23862":0.0839687955,"23863":0.0838220144,"23864":0.0836736687,"23865":0.0835237924,"23866":0.0833724234,"23867":0.0832196031,"23868":0.0830653766,"23869":0.0829097945,"23870":0.0827529126,"23871":0.0825947904,"23872":0.0824354887,"23873":0.0822750702,"23874":0.0821135987,"23875":0.0819511388,"23876":0.0817877559,"23877":0.0816235154,"23878":0.0814584828,"23879":0.0812927315,"23880":0.0811263452,"23881":0.080959409,"23882":0.0807920035,"23883":0.0806242045,"23884":0.0804560828,"23885":0.0802877043,"23886":0.0801191295,"23887":0.0799504137,"23888":0.0797816071,"23889":0.0796127595,"23890":0.079443923,"23891":0.0792751468,"23892":0.0791064724,"23893":0.0789379332,"23894":0.0787695549,"23895":0.0786013555,"23896":0.0784333455,"23897":0.0782655282,"23898":0.0780978999,"23899":0.0779304608,"23900":0.0777632234,"23901":0.0775962017,"23902":0.0774294007,"23903":0.0772628147,"23904":0.0770964287,"23905":0.0769302196,"23906":0.0767641566,"23907":0.0765982029,"23908":0.0764323159,"23909":0.0762664476,"23910":0.0761005443,"23911":0.0759345487,"23912":0.0757684019,"23913":0.0756020449,"23914":0.0754354195,"23915":0.0752684689,"23916":0.0751011389,"23917":0.0749333786,"23918":0.0747651415,"23919":0.0745963759,"23920":0.0744269882,"23921":0.0742568289,"23922":0.0740857259,"23923":0.0739135176,"23924":0.0737400627,"23925":0.0735652401,"23926":0.073388948,"23927":0.0732111033,"23928":0.0730316408,"23929":0.0728505129,"23930":0.0726676892,"23931":0.0724831556,"23932":0.0722969143,"23933":0.0721089831,"23934":0.0719193949,"23935":0.0717281975,"23936":0.0715354526,"23937":0.0713412357,"23938":0.0711456353,"23939":0.0709487547,"23940":0.0707507207,"23941":0.0705516799,"23942":0.0703517883,"23943":0.0701512077,"23944":0.0699501053,"23945":0.0697486533,"23946":0.069547028,"23947":0.069345409,"23948":0.0691439781,"23949":0.0689429194,"23950":0.0687424205,"23951":0.0685426717,"23952":0.0683438612,"23953":0.0681461737,"23954":0.0679497891,"23955":0.0677548813,"23956":0.0675616176,"23957":0.0673701575,"23958":0.0671806513,"23959":0.0669932413,"23960":0.0668081258,"23961":0.0666255542,"23962":0.0664457623,"23963":0.0662689518,"23964":0.0660952936,"23965":0.0659249289,"23966":0.0657579697,"23967":0.0655945001,"23968":0.0654345764,"23969":0.0652782274,"23970":0.0651254591,"23971":0.0649762551,"23972":0.0648305723,"23973":0.0646883405,"23974":0.0645494616,"23975":0.0644138109,"23976":0.0642812366,"23977":0.0641515601,"23978":0.0640245764,"23979":0.0639000542,"23980":0.0637777255,"23981":0.0636572843,"23982":0.063538397,"23983":0.0634207082,"23984":0.0633038409,"23985":0.0631873962,"23986":0.0630709538,"23987":0.0629540723,"23988":0.0628362894,"23989":0.0627171226,"23990":0.0625960707,"23991":0.0624726148,"23992":0.062346218,"23993":0.0622163264,"23994":0.0620823696,"23995":0.0619437623,"23996":0.0617999056,"23997":0.0616501879,"23998":0.0614939873,"23999":0.0613306725,"24000":37.7647372029,"24001":37.7285558604,"24002":37.692337717,"24003":37.6560836459,"24004":37.6197930564,"24005":37.583465691,"24006":37.5471012655,"24007":37.5106995418,"24008":37.4742603128,"24009":37.4377834059,"24010":37.4012686817,"24011":37.3647160348,"24012":37.3281253935,"24013":37.2914967196,"24014":37.2548300088,"24015":37.2181252902,"24016":37.1813826265,"24017":37.144602114,"24018":37.1077838824,"24019":37.0709280949,"24020":37.0340349478,"24021":36.9977822691,"24022":36.9630915598,"24023":36.9301336496,"24024":36.8988683913,"24025":36.869297867,"24026":36.8414157774,"24027":36.8152175577,"24028":36.7906983553,"24029":36.7678534337,"24030":36.7466780916,"24031":36.7271892377,"24032":36.7094218413,"24033":36.6933798218,"24034":36.6790567281,"24035":36.6664482395,"24036":36.655549667,"24037":36.646356452,"24038":36.6388640665,"24039":36.6330680328,"24040":36.628963919,"24041":36.627299746,"24042":36.6300252214,"24043":36.6376020089,"24044":36.6499213653,"24045":36.666988649,"24046":36.6887865009,"24047":36.7153021916,"24048":36.7465221543,"24049":36.7824330774,"24050":36.8230216851,"24051":36.8683168429,"24052":36.9184741493,"24053":36.9735242695,"24054":37.033444573,"24055":37.098223169,"24056":37.1678461067,"24057":37.2422999327,"24058":37.3215711799,"24059":37.4056464684,"24060":37.4945124851,"24061":37.5883802944,"24062":37.6889295849,"24063":37.7966159978,"24064":37.911324332,"24065":38.0330535921,"24066":38.1617800624,"24067":38.2974846744,"24068":38.4401475361,"24069":38.5897490246,"24070":38.7462695671,"24071":38.9096965225,"24072":39.0802313669,"24073":39.2579193611,"24074":39.4427273379,"24075":39.6346379093,"24076":39.8336306363,"24077":40.0396857913,"24078":40.2527836055,"24079":40.4729044187,"24080":40.7000286487,"24081":40.9341367962,"24082":41.1743676,"24083":41.4203973301,"24084":41.6722444364,"24085":41.9298862975,"24086":42.193308583,"24087":42.4624953869,"24088":42.7374311988,"24089":43.0181005088,"24090":43.3044878866,"24091":43.5965779642,"24092":43.8942277312,"24093":44.1973612069,"24094":44.5059646093,"24095":44.8200232349,"24096":45.1395226375,"24097":45.4644483911,"24098":45.7947861371,"24099":46.1305215739,"24100":46.4716404584,"24101":46.8181286047,"24102":47.1678896026,"24103":47.5196244805,"24104":47.8732544537,"24105":48.2287910646,"24106":48.5862278275,"24107":48.9455618861,"24108":49.3067896835,"24109":49.6699078278,"24110":50.034912918,"24111":50.4018015782,"24112":50.7700029482,"24113":51.1390598963,"24114":51.5089187781,"24115":51.8795874055,"24116":52.251061316,"24117":52.6233385092,"24118":52.9964165015,"24119":53.370292915,"24120":53.7449653591,"24121":54.120431455,"24122":54.4949855068,"24123":54.8668640744,"24124":55.2358009,"24125":55.6018599057,"24126":55.965038985,"24127":56.3253491955,"24128":56.6827989309,"24129":57.0373970842,"24130":57.3891524157,"24131":57.7380736794,"24132":58.0839581291,"24133":58.4265269558,"24134":58.7657356075,"24135":59.1016053585,"24136":59.4341442877,"24137":59.763363073,"24138":60.0892718345,"24139":60.4118807658,"24140":60.7312000078,"24141":61.047239674,"24142":61.3594935092,"24143":61.6670238152,"24144":61.9696376577,"24145":62.2673915856,"24146":62.5602922259,"24147":62.8483561285,"24148":63.1315978041,"24149":63.4100321159,"24150":63.6836738014,"24151":63.9525375683,"24152":64.2165618043,"24153":64.4755630431,"24154":64.7295086193,"24155":64.9784236488,"24156":65.2223216405,"24157":65.461218366,"24158":65.6951290871,"24159":65.9240691104,"24160":66.1480536766,"24161":66.3670979828,"24162":66.5812413318,"24163":66.7905957157,"24164":66.9952012957,"24165":67.1950675413,"24166":67.3902100022,"24167":67.5806429588,"24168":67.7663808912,"24169":67.9474381859,"24170":68.1238291943,"24171":68.2955682217,"24172":68.4626730908,"24173":68.6251848994,"24174":68.7831252635,"24175":68.9365066895,"24176":69.0853434525,"24177":69.2296494222,"24178":69.3694384972,"24179":69.5047245188,"24180":69.6355212881,"24181":69.7618425629,"24182":69.8837261744,"24183":70.0019646656,"24184":70.1167993702,"24185":70.2281947189,"24186":70.3361704498,"24187":70.4407352073,"24188":70.541899814,"24189":70.6396746183,"24190":70.7340700245,"24191":70.8250963871,"24192":70.9127640319,"24193":70.9973002627,"24194":71.0787938072,"24195":71.157245175,"24196":71.2326654517,"24197":71.3050635745,"24198":71.3744488752,"24199":71.4408305724,"24200":71.504217873,"24201":71.5646199518,"24202":71.6220459561,"24203":71.6772316309,"24204":71.7305316755,"24205":71.7819472252,"24206":71.8314849865,"24207":71.879150531,"24208":71.9249496356,"24209":71.968888015,"24210":72.0109713747,"24211":72.0512054009,"24212":72.0895957627,"24213":72.1262855935,"24214":72.1613653622,"24215":72.1948449613,"24216":72.2267283058,"24217":72.2570204872,"24218":72.2857263433,"24219":72.3128507448,"24220":72.3383985375,"24221":72.3623745542,"24222":72.3847836123,"24223":72.4061182926,"24224":72.4267721728,"24225":72.4467912797,"24226":72.4661687814,"24227":72.4849084039,"24228":72.5030117555,"24229":72.5204808606,"24230":72.5373176531,"24231":72.5535240776,"24232":72.5691020695,"24233":72.5841531113,"24234":72.5987820545,"24235":72.613006241,"24236":72.6268237093,"24237":72.6402363514,"24238":72.6532452846,"24239":72.6658517763,"24240":72.6780570591,"24241":72.6898623682,"24242":72.7012689334,"24243":72.7123787187,"24244":72.7233299054,"24245":72.7341490653,"24246":72.7448313956,"24247":72.7553783629,"24248":72.7657901793,"24249":72.776067306,"24250":72.7862101527,"24251":72.7962191378,"24252":72.8060946766,"24253":72.8158647864,"24254":72.8255805467,"24255":72.8352532187,"24256":72.8448807235,"24257":72.8544636482,"24258":72.8640020462,"24259":72.8734960771,"24260":72.8829458787,"24261":72.8923515927,"24262":72.9017133593,"24263":72.9110020349,"24264":72.9201417073,"24265":72.9291143804,"24266":72.9379242599,"24267":72.9465711117,"24268":72.9550555872,"24269":72.963378159,"24270":72.9715393335,"24271":72.9795396083,"24272":72.9873794809,"24273":72.9950511853,"24274":73.0025220747,"24275":73.0097840541,"24276":73.0168395092,"24277":73.0236887285,"24278":73.030332417,"24279":73.0367711942,"24280":73.0430056943,"24281":73.0490365461,"24282":73.054864377,"24283":73.0604438018,"24284":73.0654281994,"24285":73.0697220404,"24286":73.0733469005,"24287":73.0763009408,"24288":73.0785869946,"24289":73.0802069539,"24290":73.0811628909,"24291":73.0814568341,"24292":73.0810908132,"24293":73.0800616525,"24294":73.0782035086,"24295":73.075469317,"24296":73.071871675,"24297":73.0674112447,"24298":73.0620910639,"24299":73.0559136857,"24300":73.0488817502,"24301":73.0409978701,"24302":73.0322646538,"24303":73.0226847009,"24304":73.0119955947,"24305":73.0001040974,"24306":72.987024654,"24307":72.9727587474,"24308":72.9573104375,"24309":72.9406832558,"24310":72.9228808254,"24311":72.9039067379,"24312":72.8837645776,"24313":72.8624579167,"24314":72.8398714257,"24315":72.8159521063,"24316":72.7907047943,"24317":72.7641333986,"24318":72.7362419978,"24319":72.7070346217,"24320":72.6765152945,"24321":72.6446880266,"24322":72.6115568158,"24323":72.5771256479,"24324":72.5413125561,"24325":72.5040684709,"24326":72.4653946675,"24327":72.4252961345,"24328":72.3837771017,"24329":72.3408419344,"24330":72.2964949547,"24331":72.2507404769,"24332":72.2035828008,"24333":72.155026213,"24334":72.1051545673,"24335":72.0540355545,"24336":72.0016801517,"24337":71.9480907015,"24338":71.8932712581,"24339":71.8372255198,"24340":71.7799572417,"24341":71.7214701537,"24342":71.6617679768,"24343":71.6008544198,"24344":71.5388633703,"24345":71.4759331182,"24346":71.4120875087,"24347":71.3473251395,"24348":71.2816496443,"24349":71.2150636398,"24350":71.1475699355,"24351":71.0791712922,"24352":71.0098704701,"24353":70.9396702191,"24354":70.8686319955,"24355":70.7968383584,"24356":70.7243068095,"24357":70.6510365578,"24358":70.5770304602,"24359":70.5022906364,"24360":70.4268193449,"24361":70.3506188082,"24362":70.2736912477,"24363":70.1960388769,"24364":70.1177692522,"24365":70.0390779449,"24366":69.9600085575,"24367":69.8805537763,"24368":69.8007164604,"24369":69.7204974313,"24370":69.6398979135,"24371":69.5589190465,"24372":69.4775619829,"24373":69.3958278681,"24374":69.3137663287,"24375":69.2315044192,"24376":69.1490733007,"24377":69.0664673718,"24378":68.9836883773,"24379":68.9007365917,"24380":68.8176125815,"24381":68.734316853,"24382":68.6508499227,"24383":68.5672123031,"24384":68.483445469,"24385":68.3997142481,"24386":68.3160617269,"24387":68.232479018,"24388":68.148967623,"24389":68.065526968,"24390":67.9821568949,"24391":67.8988571634,"24392":67.8156275504,"24393":67.7324678302,"24394":67.6493931059,"24395":67.5665188299,"24396":67.4838768095,"24397":67.4014598414,"24398":67.3192685225,"24399":67.2373018929,"24400":67.1555593068,"24401":67.0740400582,"24402":66.9927434554,"24403":66.911668807,"24404":66.8308181484,"24405":66.7502787964,"24406":66.6700757939,"24407":66.5902029039,"24408":66.5106601455,"24409":66.4314462911,"24410":66.3525603661,"24411":66.274001349,"24412":66.1957682318,"24413":66.1178600071,"24414":66.0402756715,"24415":65.9630728711,"24416":65.886271814,"24417":65.8098688789,"24418":65.7338633144,"24419":65.6582538003,"24420":65.5830391335,"24421":65.5082180923,"24422":65.4337894549,"24423":65.359751973,"24424":65.2861043585,"24425":65.2128453639,"24426":65.1399736605,"24427":65.0674878444,"24428":64.9953864793,"24429":64.9236680985,"24430":64.8523312074,"24431":64.781374286,"24432":64.7107957917,"24433":64.6405941611,"24434":64.5707678128,"24435":64.5013213753,"24436":64.4322570792,"24437":64.3635734951,"24438":64.295268914,"24439":64.2273416731,"24440":64.1597900931,"24441":64.0926124928,"24442":64.0258071881,"24443":63.9593724944,"24444":63.8933067281,"24445":63.8275665928,"24446":63.7621172415,"24447":63.6969534823,"24448":63.6320746379,"24449":63.5674791368,"24450":63.5031655959,"24451":63.439132605,"24452":63.3753787715,"24453":63.3119027126,"24454":63.2487030576,"24455":63.1857550865,"24456":63.1230333007,"24457":63.0605327512,"24458":62.9982530328,"24459":62.9361928503,"24460":62.8743511054,"24461":62.8127266799,"24462":62.7513184799,"24463":62.6901254272,"24464":62.6291464618,"24465":62.5683556416,"24466":62.5077180898,"24467":62.4472265346,"24468":62.3868814769,"24469":62.3266818856,"24470":62.2666270584,"24471":62.2067162489,"24472":62.1469487421,"24473":62.0873238388,"24474":62.0278408587,"24475":61.9684811654,"24476":61.9092111228,"24477":61.85002304,"24478":61.7909179303,"24479":61.7318950878,"24480":61.6729541705,"24481":61.6140947837,"24482":61.5553165628,"24483":61.4966191567,"24484":61.4380022303,"24485":61.3794559081,"24486":61.3209550691,"24487":61.2624935051,"24488":61.2040722666,"24489":61.1456909693,"24490":61.0873495308,"24491":61.0290478235,"24492":60.9707857429,"24493":60.9125631934,"24494":60.854380091,"24495":60.7962300115,"24496":60.7380874172,"24497":60.6799456529,"24498":60.6218061289,"24499":60.5636686534,"24500":60.5055333638,"24501":60.4474003403,"24502":60.3892696826,"24503":60.3311414942,"24504":60.2730158846,"24505":60.2148918362,"24506":60.1567609209,"24507":60.0986208964,"24508":60.0404724073,"24509":59.9823155257,"24510":59.9241504425,"24511":59.8659773285,"24512":59.8077963623,"24513":59.7496077241,"24514":59.6914115966,"24515":59.6332079015,"24516":59.5749883256,"24517":59.5167505728,"24518":59.4584953698,"24519":59.4002228411,"24520":59.3419332331,"24521":59.2836267693,"24522":59.2253036792,"24523":59.1669641923,"24524":59.1086085394,"24525":59.0502369522,"24526":58.9918547893,"24527":58.9334641378,"24528":58.8750650024,"24529":58.8166576393,"24530":58.7582422554,"24531":58.6998190688,"24532":58.6413882963,"24533":58.5829501559,"24534":58.5245048668,"24535":58.4660526487,"24536":58.4075998362,"24537":58.349149559,"24538":58.2907019727,"24539":58.2322572809,"24540":58.1738156788,"24541":58.115377364,"24542":58.0569425346,"24543":57.9985113894,"24544":57.9400841278,"24545":57.8816609495,"24546":57.823240951,"24547":57.7648236515,"24548":57.7064092171,"24549":57.6479978619,"24550":57.5895897901,"24551":57.5311852073,"24552":57.4727843183,"24553":57.4143873271,"24554":57.3559944367,"24555":57.2976058489,"24556":57.2392400657,"24557":57.1809118732,"24558":57.1226230162,"24559":57.0643732544,"24560":57.0061627418,"24561":56.947991551,"24562":56.8898597677,"24563":56.8317674716,"24564":56.7737147399,"24565":56.7157016466,"24566":56.6577336093,"24567":56.5998162237,"24568":56.5419503804,"24569":56.4841359297,"24570":56.4263729243,"24571":56.3686613711,"24572":56.3110012808,"24573":56.2533926572,"24574":56.1958354995,"24575":56.138329802,"24576":56.0808815439,"24577":56.0234988534,"24578":55.9661832164,"24579":55.9089342477,"24580":55.8517519299,"24581":55.7946361656,"24582":55.7375868673,"24583":55.6806039392,"24584":55.6236872811,"24585":55.5668367878,"24586":55.5100542576,"24587":55.4533430788,"24588":55.3967038824,"24589":55.3401363727,"24590":55.2836404348,"24591":55.2272159128,"24592":55.170862655,"24593":55.1145805048,"24594":55.0583693033,"24595":55.0022288889,"24596":54.9461611465,"24597":54.8901712319,"24598":54.8342602467,"24599":54.7784277377,"24600":54.7226735614,"24601":54.666997512,"24602":54.6113993956,"24603":54.5558790166,"24604":54.5004361801,"24605":54.4450706922,"24606":54.3897825624,"24607":54.334572411,"24608":54.2794402589,"24609":54.2243858726,"24610":54.1694090723,"24611":54.1145096705,"24612":54.0596874847,"24613":54.0049423351,"24614":53.950274045,"24615":53.8956824414,"24616":53.8411674916,"24617":53.7867300664,"24618":53.7323702902,"24619":53.6780879416,"24620":53.6238828725,"24621":53.5697549246,"24622":53.5157039461,"24623":53.4617297877,"24624":53.4078323038,"24625":53.3540113518,"24626":53.3002667547,"24627":53.246597171,"24628":53.1930021139,"24629":53.1394815272,"24630":53.0860352708,"24631":53.0326632233,"24632":52.9793652611,"24633":52.9261412618,"24634":52.8729911036,"24635":52.8199146644,"24636":52.7669118216,"24637":52.7139802955,"24638":52.6611191814,"24639":52.6083284493,"24640":52.5556079612,"24641":52.5029575974,"24642":52.4503772309,"24643":52.3978667314,"24644":52.3454259644,"24645":52.2930547906,"24646":52.2407530655,"24647":52.188519156,"24648":52.1363522005,"24649":52.0842520526,"24650":52.0322185476,"24651":51.980251516,"24652":51.9283507802,"24653":51.8765161547,"24654":51.8247474461,"24655":51.7730444525,"24656":51.7214069635,"24657":51.6698261014,"24658":51.6182962954,"24659":51.5668170392,"24660":51.5153881927,"24661":51.4640095316,"24662":51.4126808375,"24663":51.3614018799,"24664":51.3101724199,"24665":51.2589922096,"24666":51.2078609925,"24667":51.1567832382,"24668":51.1057624471,"24669":51.0547987388,"24670":51.0038917126,"24671":50.9530410633,"24672":50.9022464584,"24673":50.8515075638,"24674":50.8008240385,"24675":50.750195537,"24676":50.6996217087,"24677":50.6491010713,"24678":50.5986321002,"24679":50.5482142604,"24680":50.4978472328,"24681":50.4475306535,"24682":50.3972641661,"24683":50.3470474126,"24684":50.2968800353,"24685":50.246761678,"24686":50.1966919859,"24687":50.1466712105,"24688":50.0966998234,"24689":50.046777631,"24690":49.9969042564,"24691":49.9470793651,"24692":49.8973026208,"24693":49.8475736948,"24694":49.797892265,"24695":49.7482580167,"24696":49.698670643,"24697":49.6491309716,"24698":49.5996407806,"24699":49.5502002322,"24700":49.5008089535,"24701":49.4514666909,"24702":49.4021731789,"24703":49.3529281671,"24704":49.3037316244,"24705":49.2545855925,"24706":49.2054932023,"24707":49.1564574137,"24708":49.1074808546,"24709":49.0585665476,"24710":49.009717661,"24711":48.9609373245,"24712":48.9122286638,"24713":48.863594792,"24714":48.8150388094,"24715":48.7665638017,"24716":48.7181728385,"24717":48.6698685745,"24718":48.6216524495,"24719":48.5735270623,"24720":48.5254954932,"24721":48.4775606973,"24722":48.4297256243,"24723":48.3819931921,"24724":48.3343662908,"24725":48.2868477789,"24726":48.239440483,"24727":48.1921469684,"24728":48.1449682811,"24729":48.0979066659,"24730":48.0509649047,"24731":48.0041456228,"24732":47.9574514254,"24733":47.9108848682,"24734":47.8644484605,"24735":47.8181446633,"24736":47.7719758865,"24737":47.7259443367,"24738":47.6800474344,"24739":47.6342859992,"24740":47.5886625284,"24741":47.5431791126,"24742":47.4978378495,"24743":47.4526407599,"24744":47.4075898016,"24745":47.3626868648,"24746":47.3179337708,"24747":47.2733322703,"24748":47.2288792019,"24749":47.18457442,"24750":47.1404196704,"24751":47.0964163855,"24752":47.0525659664,"24753":47.0088697247,"24754":46.9653288929,"24755":46.9219446206,"24756":46.8787179738,"24757":46.8356499338,"24758":46.7927285887,"24759":46.7499486558,"24760":46.7073109962,"24761":46.6648162842,"24762":46.6224651247,"24763":46.580258029,"24764":46.5381954194,"24765":46.4962776273,"24766":46.454504894,"24767":46.4128773695,"24768":46.3713813144,"24769":46.3300081824,"24770":46.2887574226,"24771":46.2476289919,"24772":46.2066226377,"24773":46.1657380414,"24774":46.1249747909,"24775":46.0843323862,"24776":46.0438102398,"24777":46.0034076773,"24778":45.9631188066,"24779":45.922938692,"24780":45.8828659707,"24781":45.842899753,"24782":45.8030389569,"24783":45.7632824423,"24784":45.7236289859,"24785":45.6840772881,"24786":45.6446259732,"24787":45.6052735911,"24788":45.5660171263,"24789":45.5268534419,"24790":45.4877806431,"24791":45.4487970569,"24792":45.4099008862,"24793":45.3710902812,"24794":45.3323633272,"24795":45.2937180488,"24796":45.2551524117,"24797":45.2166643241,"24798":45.1782467698,"24799":45.1398909285,"24800":45.1015933215,"24801":45.0633519363,"24802":45.0251644088,"24803":44.9870283886,"24804":44.9489414679,"24805":44.9109011983,"24806":44.8729050891,"24807":44.83495061,"24808":44.7970356065,"24809":44.759158234,"24810":44.7213160156,"24811":44.6835062414,"24812":44.6457262105,"24813":44.6079731843,"24814":44.5702443983,"24815":44.5325370618,"24816":44.4948483601,"24817":44.4571754564,"24818":44.4195171542,"24819":44.3818748909,"24820":44.344246803,"24821":44.3066297536,"24822":44.2690208452,"24823":44.2314171202,"24824":44.1938156229,"24825":44.1562133903,"24826":44.1186074569,"24827":44.0809948561,"24828":44.0433735092,"24829":44.0057440093,"24830":43.9681043244,"24831":43.9304513091,"24832":43.8927820558,"24833":43.8550936279,"24834":43.8173831174,"24835":43.7796476366,"24836":43.7418843241,"24837":43.7040903473,"24838":43.6662653717,"24839":43.6284252409,"24840":43.5905723825,"24841":43.5527029914,"24842":43.5148145636,"24843":43.4769043947,"24844":43.4389698841,"24845":43.4010084784,"24846":43.3630176872,"24847":43.3249950837,"24848":43.2869384871,"24849":43.2488513634,"24850":43.2107331808,"24851":43.1725814393,"24852":43.1343941277,"24853":43.0961692362,"24854":43.0579048567,"24855":43.0195991658,"24856":42.9812504308,"24857":42.9428570112,"24858":42.9044173601,"24859":42.8659566545,"24860":42.8274831678,"24861":42.7889944504,"24862":42.7504894524,"24863":42.7119669633,"24864":42.6734259237,"24865":42.6348653631,"24866":42.5962844119,"24867":42.557682298,"24868":42.5190583466,"24869":42.4804169655,"24870":42.4417600418,"24871":42.4030871287,"24872":42.3643979087,"24873":42.3256921443,"24874":42.2869696853,"24875":42.2482304641,"24876":42.2094744929,"24877":42.1707018604,"24878":42.131912729,"24879":42.0931235413,"24880":42.0543445988,"24881":42.0155767663,"24882":41.9768202645,"24883":41.9380755098,"24884":41.8993429413,"24885":41.8606230513,"24886":41.8219163739,"24887":41.7832234828,"24888":41.7445449871,"24889":41.7058895117,"24890":41.6672640891,"24891":41.6286700878,"24892":41.5901080326,"24893":41.5515786389,"24894":41.5130826025,"24895":41.4746206381,"24896":41.436193468,"24897":41.3978018218,"24898":41.3594464334,"24899":41.3211497814,"24900":41.2829350824,"24901":41.2448064415,"24902":41.2067637472,"24903":41.168807728,"24904":41.1309389408,"24905":41.0931579721,"24906":41.0554653977,"24907":41.0178617906,"24908":40.9803477193,"24909":40.9429241281,"24910":40.9055920942,"24911":40.8683522722,"24912":40.8312051968,"24913":40.7941514254,"24914":40.7571915108,"24915":40.7203260077,"24916":40.6835554727,"24917":40.6468804655,"24918":40.6103015498,"24919":40.5738212103,"24920":40.5374429865,"24921":40.5011664886,"24922":40.4649895168,"24923":40.4289097946,"24924":40.3929250005,"24925":40.3570328333,"24926":40.3212310004,"24927":40.2855172206,"24928":40.249889224,"24929":40.2143444671,"24930":40.1788799626,"24931":40.1434933008,"24932":40.108182302,"24933":40.0729447569,"24934":40.0377784788,"24935":40.002681294,"24936":39.9676510441,"24937":39.9326855861,"24938":39.8977827928,"24939":39.862937069,"24940":39.828132344,"24941":39.793362919,"24942":39.7586275335,"24943":39.7239240612,"24944":39.6892505706,"24945":39.6546051132,"24946":39.619985767,"24947":39.5853906274,"24948":39.5508178104,"24949":39.5162652874,"24950":39.4817299756,"24951":39.4472097092,"24952":39.4127027615,"24953":39.3782073443,"24954":39.3437217076,"24955":39.309244121,"24956":39.2747728772,"24957":39.2403062921,"24958":39.2058427051,"24959":39.1713800731,"24960":39.1369036667,"24961":39.1024080631,"24962":39.0678925269,"24963":39.0333554159,"24964":38.9987952997,"24965":38.9642107361,"24966":38.9296003165,"24967":38.8949626574,"24968":38.8602964019,"24969":38.8256002202,"24970":38.7908719625,"24971":38.7561100474,"24972":38.7213132657,"24973":38.6864803949,"24974":38.6516102494,"24975":38.6167016703,"24976":38.5817535281,"24977":38.5467647226,"24978":38.5117341828,"24979":38.4766608674,"24980":38.4415440304,"24981":38.4063828166,"24982":38.3711762724,"24983":38.3359234768,"24984":38.3006235393,"24985":38.2652756003,"24986":38.2298788316,"24987":38.1944324362,"24988":38.1589356488,"24989":38.1233877359,"24990":38.087785343,"24991":38.0521261636,"24992":38.0164094779,"24993":37.9806347133,"24994":37.944801307,"24995":37.9089087331,"24996":37.8729564975,"24997":37.8369441393,"24998":37.8008712304,"24999":37.7647373756,"25000":37.514060075,"25001":37.4777835852,"25002":37.4414963346,"25003":37.4051997464,"25004":37.3688930229,"25005":37.3325758507,"25006":37.2962478604,"25007":37.2599087343,"25008":37.2235581852,"25009":37.1871959606,"25010":37.1508218418,"25011":37.1144356438,"25012":37.078037216,"25013":37.0416264413,"25014":37.0052032368,"25015":36.9687675532,"25016":36.9323193753,"25017":36.8958587213,"25018":36.8593856434,"25019":36.8229002272,"25020":36.7864025921,"25021":36.7510988216,"25022":36.718628641,"25023":36.6892957708,"25024":36.6630284269,"25025":36.6398299551,"25026":36.6196887596,"25027":36.6025963054,"25028":36.5885435203,"25029":36.5775215132,"25030":36.5695214306,"25031":36.5645728535,"25032":36.5627374806,"25033":36.5640217262,"25034":36.5684135233,"25035":36.5759045723,"25036":36.5864858934,"25037":36.6001487155,"25038":36.6168842978,"25039":36.6366839652,"25040":36.6595391007,"25041":36.6863228464,"25042":36.7193165329,"25043":36.7590577469,"25044":36.805415655,"25045":36.8583931366,"25046":36.9179664556,"25047":36.984117305,"25048":37.0568264022,"25049":37.1360747678,"25050":37.2218434699,"25051":37.3141629557,"25052":37.413212163,"25053":37.5190236576,"25054":37.6315675669,"25055":37.7508266063,"25056":37.8767810828,"25057":38.0094118915,"25058":38.148699916,"25059":38.2946261478,"25060":38.4471716616,"25061":38.6063892572,"25062":38.7728008366,"25063":38.946537439,"25064":39.1275478552,"25065":39.3158174137,"25066":39.5113242495,"25067":39.714048044,"25068":39.9239682775,"25069":40.1410645778,"25070":40.3653166496,"25071":40.5967064564,"25072":40.8352839127,"25073":41.0810494614,"25074":41.3339787377,"25075":41.594052439,"25076":41.8612503542,"25077":42.1355525559,"25078":42.4169391616,"25079":42.7053903804,"25080":43.0008865034,"25081":43.3034079042,"25082":43.6097525389,"25083":43.9187502189,"25084":44.2305241089,"25085":44.5450418862,"25086":44.8623023545,"25087":45.182298143,"25088":45.5050231616,"25089":45.8304711099,"25090":46.1586357752,"25091":46.4895109716,"25092":46.8226117293,"25093":47.1577041926,"25094":47.494787509,"25095":47.8338571717,"25096":48.1749094377,"25097":48.5179404444,"25098":48.8629463855,"25099":49.2099234752,"25100":49.5588679547,"25101":49.9097760907,"25102":50.2597032308,"25103":50.606830943,"25104":50.9510640919,"25105":51.2924350622,"25106":51.6309507228,"25107":51.9666230151,"25108":52.2994628381,"25109":52.6294812705,"25110":52.956689326,"25111":53.2810980019,"25112":53.602274283,"25113":53.9198737728,"25114":54.2338675143,"25115":54.5442745822,"25116":54.8511044102,"25117":55.1543683185,"25118":55.4540772099,"25119":55.7502420304,"25120":56.0428736773,"25121":56.3319830176,"25122":56.6169530388,"25123":56.897145408,"25124":57.1724736181,"25125":57.4429728309,"25126":57.7086538341,"25127":57.9695322323,"25128":58.2256226121,"25129":58.4769397092,"25130":58.7234981748,"25131":58.9653126227,"25132":59.2023196722,"25133":59.4344278712,"25134":59.6616320795,"25135":59.8839513859,"25136":60.1013999807,"25137":60.3139929772,"25138":60.521745249,"25139":60.724671662,"25140":60.9227870287,"25141":61.116106117,"25142":61.3050220796,"25143":61.4902442119,"25144":61.6719358921,"25145":61.8500775797,"25146":62.0246862548,"25147":62.1957715569,"25148":62.363344552,"25149":62.5274159806,"25150":62.6879966077,"25151":62.8450971531,"25152":62.9987846939,"25153":63.1492163293,"25154":63.2964376016,"25155":63.4404512679,"25156":63.5812686,"25157":63.7188991307,"25158":63.8533527035,"25159":63.9846390633,"25160":64.1127679377,"25161":64.2377490214,"25162":64.3598112822,"25163":64.4798440548,"25164":64.5980848916,"25165":64.714493073,"25166":64.8290834785,"25167":64.941859853,"25168":65.052828146,"25169":65.1619938447,"25170":65.2693625079,"25171":65.3749396589,"25172":65.4787608181,"25173":65.581057973,"25174":65.6818993133,"25175":65.7812766265,"25176":65.8791969539,"25177":65.9756642708,"25178":66.0706831478,"25179":66.1642580198,"25180":66.2563933316,"25181":66.3470935091,"25182":66.4363774852,"25183":66.5247186253,"25184":66.6122584167,"25185":66.6989716318,"25186":66.7848663557,"25187":66.8699440051,"25188":66.9542073199,"25189":67.0376587657,"25190":67.1203008533,"25191":67.2021360747,"25192":67.2831669158,"25193":67.3635236121,"25194":67.4432548279,"25195":67.5223573023,"25196":67.6008340121,"25197":67.6786866793,"25198":67.7559172695,"25199":67.8325276918,"25200":67.9085198594,"25201":67.9838956768,"25202":68.0586570432,"25203":68.132880886,"25204":68.2066047812,"25205":68.2798297908,"25206":68.3525575488,"25207":68.4247895694,"25208":68.4965273844,"25209":68.5677725164,"25210":68.6385264838,"25211":68.7087908002,"25212":68.7785669742,"25213":68.8478623779,"25214":68.9166821314,"25215":68.9850279115,"25216":69.0529011356,"25217":69.1203032672,"25218":69.1872357553,"25219":69.2537000459,"25220":69.3196975803,"25221":69.385229795,"25222":69.450298122,"25223":69.5148327044,"25224":69.578778147,"25225":69.6421298393,"25226":69.7048908891,"25227":69.7670628547,"25228":69.8286475972,"25229":69.8896469106,"25230":69.9500625954,"25231":70.0098964441,"25232":70.0691502441,"25233":70.1278045148,"25234":70.185839049,"25235":70.2432523231,"25236":70.3000469298,"25237":70.3562246317,"25238":70.4117873505,"25239":70.4667369689,"25240":70.5210753704,"25241":70.5748044314,"25242":70.6279260227,"25243":70.680361071,"25244":70.7320013945,"25245":70.7828284769,"25246":70.8328490008,"25247":70.882064603,"25248":70.9304779199,"25249":70.9780913787,"25250":71.0249074395,"25251":71.0709285468,"25252":71.1161571389,"25253":71.1605733433,"25254":71.204138645,"25255":71.246846693,"25256":71.2887019072,"25257":71.3297065445,"25258":71.369863285,"25259":71.4091747141,"25260":71.4476434268,"25261":71.4852720066,"25262":71.5220630298,"25263":71.5579689925,"25264":71.5928624152,"25265":71.6267148412,"25266":71.6595357692,"25267":71.6913270998,"25268":71.7220922405,"25269":71.7518342859,"25270":71.7805563816,"25271":71.8082616515,"25272":71.834953212,"25273":71.8606204354,"25274":71.885211325,"25275":71.9087146926,"25276":71.9311367657,"25277":71.9524802789,"25278":71.9727486523,"25279":71.9919451571,"25280":72.0100730818,"25281":72.0271356995,"25282":72.0431362741,"25283":72.058033582,"25284":72.0714951938,"25285":72.0834313966,"25286":72.0938656719,"25287":72.1027988592,"25288":72.1102363063,"25289":72.1161824428,"25290":72.1206418651,"25291":72.1236191191,"25292":72.1251187438,"25293":72.1251402548,"25294":72.1235264148,"25295":72.1202344328,"25296":72.1152789993,"25297":72.1086632964,"25298":72.1003927876,"25299":72.0904724613,"25300":72.0789073825,"25301":72.0657025816,"25302":72.0508630775,"25303":72.0343938727,"25304":72.0163258,"25305":71.9966731765,"25306":71.9754398005,"25307":71.9526307185,"25308":71.9282507096,"25309":71.902304588,"25310":71.8747971432,"25311":71.8457331516,"25312":71.8151173745,"25313":71.7829545582,"25314":71.74926575,"25315":71.7140634269,"25316":71.6773521133,"25317":71.6391364444,"25318":71.599421016,"25319":71.5582104148,"25320":71.515509212,"25321":71.4713219646,"25322":71.4256532157,"25323":71.378507494,"25324":71.3300699018,"25325":71.2804563734,"25326":71.2296770124,"25327":71.1777340792,"25328":71.1246313888,"25329":71.0703724317,"25330":71.0149607502,"25331":70.9583998628,"25332":70.9006932797,"25333":70.8418444994,"25334":70.7820591071,"25335":70.721501664,"25336":70.6601927284,"25337":70.5981309536,"25338":70.5353193624,"25339":70.4717600954,"25340":70.4074554611,"25341":70.3424077259,"25342":70.2766191558,"25343":70.2100920085,"25344":70.1430114228,"25345":70.0755687308,"25346":70.0077945046,"25347":69.9396838581,"25348":69.8712389885,"25349":69.8024606734,"25350":69.7333499703,"25351":69.6639078769,"25352":69.594135399,"25353":69.524033537,"25354":69.4536857691,"25355":69.3832052271,"25356":69.3126136606,"25357":69.2419071307,"25358":69.1710868317,"25359":69.1001529305,"25360":69.0291057982,"25361":68.9579457636,"25362":68.8866731628,"25363":68.815288329,"25364":68.7438482082,"25365":68.6724570472,"25366":68.601137429,"25367":68.5298845778,"25368":68.4586991869,"25369":68.3875808572,"25370":68.3165294089,"25371":68.245544619,"25372":68.174626274,"25373":68.1037741593,"25374":68.0330137663,"25375":67.9624116394,"25376":67.8919834853,"25377":67.8217255223,"25378":67.7516378658,"25379":67.6817198544,"25380":67.611970984,"25381":67.5423907209,"25382":67.4729785393,"25383":67.403733914,"25384":67.3346602838,"25385":67.265773022,"25386":67.1970757271,"25387":67.1285669716,"25388":67.0602463348,"25389":66.9921131972,"25390":66.924166981,"25391":66.8564071024,"25392":66.7888329809,"25393":66.7214440374,"25394":66.6542409736,"25395":66.5872328631,"25396":66.5204218044,"25397":66.4538066434,"25398":66.3873868784,"25399":66.3211618798,"25400":66.2551310457,"25401":66.1892937709,"25402":66.1236494532,"25403":66.0581974921,"25404":65.9929366499,"25405":65.927845686,"25406":65.8629179704,"25407":65.798154213,"25408":65.7335536586,"25409":65.6691158467,"25410":65.6048402599,"25411":65.540726394,"25412":65.4767737442,"25413":65.4129818077,"25414":65.3493500831,"25415":65.2858627925,"25416":65.2225139135,"25417":65.1593036338,"25418":65.0962313958,"25419":65.0332967927,"25420":64.970499388,"25421":64.9078387534,"25422":64.845314452,"25423":64.7829260189,"25424":64.7206729475,"25425":64.6585247937,"25426":64.5964667481,"25427":64.5344985078,"25428":64.4726195041,"25429":64.4108291812,"25430":64.3491269435,"25431":64.2875121692,"25432":64.2259842104,"25433":64.164542396,"25434":64.1031860342,"25435":64.0418839397,"25436":63.9806165808,"25437":63.9193822678,"25438":63.8581806199,"25439":63.7970109814,"25440":63.7358727399,"25441":63.6747652656,"25442":63.6136879249,"25443":63.5526400801,"25444":63.4916210912,"25445":63.4306236895,"25446":63.3696419519,"25447":63.3086746798,"25448":63.2477213956,"25449":63.1867814827,"25450":63.1258543588,"25451":63.0649394423,"25452":63.0040361608,"25453":62.94314395,"25454":62.8822622555,"25455":62.8213815607,"25456":62.7604920562,"25457":62.6995918309,"25458":62.6386807259,"25459":62.5777582476,"25460":62.5168239856,"25461":62.45587753,"25462":62.3949184883,"25463":62.3339464826,"25464":62.2729611508,"25465":62.2119635614,"25466":62.1509553083,"25467":62.0899364338,"25468":62.0289065562,"25469":61.9678653988,"25470":61.9068126842,"25471":61.8457481554,"25472":61.7846715719,"25473":61.7235827103,"25474":61.6624813641,"25475":61.6013684233,"25476":61.5402456962,"25477":61.4791134511,"25478":61.4179714511,"25479":61.3568195798,"25480":61.295657716,"25481":61.2344857584,"25482":61.1733036206,"25483":61.1121112311,"25484":61.0509085335,"25485":60.9896994283,"25486":60.9284941272,"25487":60.8672950573,"25488":60.8061016698,"25489":60.744914026,"25490":60.6837320806,"25491":60.6225558237,"25492":60.5613852525,"25493":60.5002203757,"25494":60.4390612128,"25495":60.377910506,"25496":60.3167791765,"25497":60.2556700921,"25498":60.194582687,"25499":60.1335170917,"25500":60.0724733068,"25501":60.0114513678,"25502":59.9504513115,"25503":59.8894731821,"25504":59.8285170295,"25505":59.7675844444,"25506":59.7066870717,"25507":59.6458281846,"25508":59.5850071539,"25509":59.5242241354,"25510":59.4634791331,"25511":59.4027721853,"25512":59.3421033278,"25513":59.2814726005,"25514":59.220880046,"25515":59.1603261081,"25516":59.099823711,"25517":59.0393766687,"25518":58.9789842208,"25519":58.9186465234,"25520":58.858363552,"25521":58.7981353206,"25522":58.7379618375,"25523":58.6778431143,"25524":58.6177791638,"25525":58.5577700009,"25526":58.4978229118,"25527":58.4379405432,"25528":58.3781225886,"25529":58.3183690986,"25530":58.2586800543,"25531":58.1990554526,"25532":58.1394952892,"25533":58.0799995619,"25534":58.0205682698,"25535":57.961201414,"25536":57.9019060015,"25537":57.842685368,"25538":57.7835394425,"25539":57.7244682094,"25540":57.6654716438,"25541":57.6065497245,"25542":57.5477024313,"25543":57.4889297452,"25544":57.4302316486,"25545":57.3716081249,"25546":57.3130552101,"25547":57.2545704527,"25548":57.1961537163,"25549":57.1378050358,"25550":57.0795244126,"25551":57.021311855,"25552":56.96316737,"25553":56.9050909647,"25554":56.8470826456,"25555":56.7891424188,"25556":56.7312772861,"25557":56.6734928283,"25558":56.61578964,"25559":56.5581675562,"25560":56.5006265618,"25561":56.4431666092,"25562":56.385787655,"25563":56.328489652,"25564":56.2712725504,"25565":56.2141362977,"25566":56.1570801303,"25567":56.1001032571,"25568":56.0432055057,"25569":55.9863868367,"25570":55.9296471793,"25571":55.8729864639,"25572":55.8164046152,"25573":55.7599015538,"25574":55.7034771951,"25575":55.64713145,"25576":55.5908634314,"25577":55.5346719622,"25578":55.4785567384,"25579":55.4225176979,"25580":55.3665547238,"25581":55.310667704,"25582":55.2548565195,"25583":55.1991210463,"25584":55.1434611556,"25585":55.0878767137,"25586":55.0323667233,"25587":54.976929465,"25588":54.9215644539,"25589":54.8662716158,"25590":54.8110507898,"25591":54.7559018275,"25592":54.7008245742,"25593":54.6458188722,"25594":54.5908845612,"25595":54.5360214781,"25596":54.4812285036,"25597":54.4265029926,"25598":54.3718441855,"25599":54.317252045,"25600":54.2627263879,"25601":54.2082670599,"25602":54.1538739003,"25603":54.0995467498,"25604":54.0452854495,"25605":53.9910898412,"25606":53.9369594153,"25607":53.8828926019,"25608":53.8288888806,"25609":53.7749481806,"25610":53.7210703438,"25611":53.6672552323,"25612":53.6135027078,"25613":53.5598126352,"25614":53.5061848825,"25615":53.4526193211,"25616":53.3991155237,"25617":53.3456710895,"25618":53.2922852692,"25619":53.2389580854,"25620":53.1856894104,"25621":53.1324791508,"25622":53.0793272103,"25623":53.0262334973,"25624":52.9731979228,"25625":52.920220401,"25626":52.8673008278,"25627":52.8144384444,"25628":52.7616329743,"25629":52.708884384,"25630":52.6561925936,"25631":52.603557534,"25632":52.5509791352,"25633":52.4984573283,"25634":52.4459920444,"25635":52.3935832146,"25636":52.3412307691,"25637":52.288933715,"25638":52.2366916466,"25639":52.1845045308,"25640":52.1323722869,"25641":52.0802948404,"25642":52.0282721114,"25643":51.9763040163,"25644":51.9243904672,"25645":51.8725313713,"25646":51.8207266304,"25647":51.7689762996,"25648":51.7172803445,"25649":51.6656386466,"25650":51.6140510818,"25651":51.5625175182,"25652":51.5110378166,"25653":51.4596118296,"25654":51.4082394016,"25655":51.3569203686,"25656":51.3056545578,"25657":51.2544354701,"25658":51.2032590166,"25659":51.1521248011,"25660":51.1010326922,"25661":51.0499824942,"25662":50.9989740136,"25663":50.948007045,"25664":50.8970813747,"25665":50.84619678,"25666":50.7953530294,"25667":50.7445564076,"25668":50.693811867,"25669":50.6431197034,"25670":50.5924794981,"25671":50.5418909669,"25672":50.4913537905,"25673":50.4408676492,"25674":50.3904322164,"25675":50.3400471608,"25676":50.2897121461,"25677":50.2394278781,"25678":50.1891950942,"25679":50.1390136099,"25680":50.0888830361,"25681":50.0388030222,"25682":49.988773209,"25683":49.9387932383,"25684":49.8888627524,"25685":49.8389813944,"25686":49.7891488094,"25687":49.7393662255,"25688":49.6896354421,"25689":49.6399565114,"25690":49.5903289975,"25691":49.5407525683,"25692":49.4912268773,"25693":49.4417515885,"25694":49.3923263717,"25695":49.3429509043,"25696":49.2936248715,"25697":49.2443508598,"25698":49.1951338816,"25699":49.1459747853,"25700":49.0968730315,"25701":49.0478283698,"25702":48.9988405046,"25703":48.9499091619,"25704":48.9010342857,"25705":48.8522178936,"25706":48.8034630918,"25707":48.7547721637,"25708":48.7061460188,"25709":48.6575872516,"25710":48.6090990969,"25711":48.560684652,"25712":48.5123470302,"25713":48.4640893281,"25714":48.4159146305,"25715":48.3678260075,"25716":48.3198265128,"25717":48.2719175713,"25718":48.2240957354,"25719":48.1763623262,"25720":48.1287206868,"25721":48.0811737277,"25722":48.033724415,"25723":47.9863756712,"25724":47.9391303927,"25725":47.8919914447,"25726":47.8449616598,"25727":47.7980434657,"25728":47.7512368284,"25729":47.704543698,"25730":47.6579669283,"25731":47.611509143,"25732":47.5651729606,"25733":47.5189609467,"25734":47.4728756216,"25735":47.4269194566,"25736":47.3810948724,"25737":47.3354040081,"25738":47.2898417758,"25739":47.2444082695,"25740":47.1991061558,"25741":47.1539375155,"25742":47.1089044728,"25743":47.064009067,"25744":47.0192532762,"25745":46.9746390105,"25746":46.9301681112,"25747":46.8858423487,"25748":46.8416566339,"25749":46.7976101369,"25750":46.7537047104,"25751":46.7099417983,"25752":46.6663228321,"25753":46.6228491503,"25754":46.5795220126,"25755":46.5363425958,"25756":46.4933119929,"25757":46.450431212,"25758":46.4076833153,"25759":46.3650606434,"25760":46.3225641391,"25761":46.2801945197,"25762":46.2379524404,"25763":46.1958384613,"25764":46.1538530535,"25765":46.1119965973,"25766":46.0702693823,"25767":46.0286716072,"25768":45.9871889866,"25769":45.945812656,"25770":45.904542094,"25771":45.8633773126,"25772":45.8223181089,"25773":45.7813642151,"25774":45.7405152691,"25775":45.6997708214,"25776":45.6591303344,"25777":45.6185931836,"25778":45.5781567514,"25779":45.5378187221,"25780":45.4975780552,"25781":45.4574338336,"25782":45.4173850176,"25783":45.3774304955,"25784":45.3375690751,"25785":45.297799487,"25786":45.258120386,"25787":45.2185303521,"25788":45.1790282997,"25789":45.1396130854,"25790":45.1002831387,"25791":45.0610367427,"25792":45.0218721299,"25793":44.9827874653,"25794":44.9437808517,"25795":44.9048503309,"25796":44.8659938856,"25797":44.8272094411,"25798":44.7884961935,"25799":44.7498537621,"25800":44.7112802444,"25801":44.6727732748,"25802":44.6343305214,"25803":44.5959495894,"25804":44.557628042,"25805":44.5193633989,"25806":44.4811531381,"25807":44.4429946979,"25808":44.4048870407,"25809":44.3668303982,"25810":44.3288227136,"25811":44.2908611427,"25812":44.2529429611,"25813":44.2150653848,"25814":44.1772256085,"25815":44.1394207998,"25816":44.1016481027,"25817":44.0639046391,"25818":44.0261927675,"25819":43.9885232233,"25820":43.9508963292,"25821":43.9133084082,"25822":43.8757565678,"25823":43.8382377467,"25824":43.8007489079,"25825":43.7632870027,"25826":43.7258489808,"25827":43.6884317916,"25828":43.6510335278,"25829":43.6136557249,"25830":43.5762965333,"25831":43.5389526654,"25832":43.5016211368,"25833":43.4642989213,"25834":43.4269830242,"25835":43.3896704707,"25836":43.3523583129,"25837":43.3150436317,"25838":43.2777264793,"25839":43.2404261808,"25840":43.203146066,"25841":43.1658820291,"25842":43.1286315064,"25843":43.0913916858,"25844":43.0541598691,"25845":43.0169334036,"25846":42.9797097003,"25847":42.9424862341,"25848":42.9052607048,"25849":42.8680357952,"25850":42.8308106755,"25851":42.7935827918,"25852":42.7563500307,"25853":42.7191102901,"25854":42.6818615678,"25855":42.6446019473,"25856":42.6073296028,"25857":42.5700428009,"25858":42.5327399024,"25859":42.4954407792,"25860":42.458151728,"25861":42.4208704409,"25862":42.3835957556,"25863":42.3463263997,"25864":42.3090612426,"25865":42.2717992444,"25866":42.2345394659,"25867":42.197281066,"25868":42.1600233011,"25869":42.1227687107,"25870":42.0855182579,"25871":42.0482714472,"25872":42.0110278986,"25873":41.9737873152,"25874":41.9365494872,"25875":41.8993142872,"25876":41.8620816683,"25877":41.8248516601,"25878":41.7876243657,"25879":41.7504074096,"25880":41.7132056291,"25881":41.6760195582,"25882":41.6388494667,"25883":41.6016957441,"25884":41.5645588179,"25885":41.5274391658,"25886":41.4903373079,"25887":41.4532538039,"25888":41.416189249,"25889":41.3791511877,"25890":41.3421457887,"25891":41.3051743167,"25892":41.2682373078,"25893":41.2313354659,"25894":41.1944694801,"25895":41.1576400569,"25896":41.1208479114,"25897":41.0840937654,"25898":41.0473783453,"25899":41.0107250258,"25900":40.9741579505,"25901":40.9376813569,"25902":40.9012950909,"25903":40.8649998733,"25904":40.8287962466,"25905":40.7926847841,"25906":40.7566660483,"25907":40.7207405989,"25908":40.6849089914,"25909":40.6491708233,"25910":40.6135253461,"25911":40.5779728657,"25912":40.5425139835,"25913":40.5071492404,"25914":40.4718791894,"25915":40.4367043822,"25916":40.4016253728,"25917":40.3666427184,"25918":40.3317569802,"25919":40.2969584825,"25920":40.2622284462,"25921":40.2275617001,"25922":40.1929571384,"25923":40.1584124036,"25924":40.1239253278,"25925":40.089493716,"25926":40.0551153908,"25927":40.0207881841,"25928":39.9865099391,"25929":39.9522777944,"25930":39.9180877565,"25931":39.8839372611,"25932":39.8498242998,"25933":39.8157467693,"25934":39.7817026012,"25935":39.7476897376,"25936":39.7137061357,"25937":39.6797497676,"25938":39.6458186213,"25939":39.6119054163,"25940":39.5779869767,"25941":39.544055847,"25942":39.510111293,"25943":39.4761512577,"25944":39.4421739698,"25945":39.4081776224,"25946":39.374160438,"25947":39.3401206557,"25948":39.3060565346,"25949":39.271966244,"25950":39.237847259,"25951":39.2036976705,"25952":39.1695158686,"25953":39.1353002085,"25954":39.1010490787,"25955":39.0667608871,"25956":39.0324340646,"25957":38.9980670645,"25958":38.9636583635,"25959":38.9292066615,"25960":38.894716939,"25961":38.8601896316,"25962":38.8256229042,"25963":38.7910154052,"25964":38.7563657168,"25965":38.7216724646,"25966":38.6869342969,"25967":38.6521498887,"25968":38.6173179412,"25969":38.5824371826,"25970":38.5475072163,"25971":38.5125271317,"25972":38.477495701,"25973":38.4424117661,"25974":38.4072741885,"25975":38.3720818602,"25976":38.3368337016,"25977":38.301528662,"25978":38.2661657202,"25979":38.2307438845,"25980":38.1952805973,"25981":38.1597836807,"25982":38.124252032,"25983":38.0886847211,"25984":38.0530808203,"25985":38.0174394387,"25986":37.9817597158,"25987":37.9460408225,"25988":37.9102819615,"25989":37.8744823674,"25990":37.8386408201,"25991":37.8027563178,"25992":37.7668281766,"25993":37.730855766,"25994":37.6948384838,"25995":37.6587757614,"25996":37.622667063,"25997":37.5865118856,"25998":37.5503097595,"25999":37.5140602478,"26000":41.4238906422,"26001":41.4547064232,"26002":41.4855326,"26003":41.5163699671,"26004":41.547219319,"26005":41.5780814476,"26006":41.6089571425,"26007":41.6398471895,"26008":41.6707523654,"26009":41.7016734343,"26010":41.7326111506,"26011":41.763566252,"26012":41.7945394622,"26013":41.8255314853,"26014":41.8565430081,"26015":41.8875746936,"26016":41.9186271832,"26017":41.9497010919,"26018":41.9807970044,"26019":42.0119154755,"26020":42.0430570266,"26021":42.0742225158,"26022":42.1054135682,"26023":42.1366323074,"26024":42.1678809156,"26025":42.1991615223,"26026":42.2304762133,"26027":42.2618270262,"26028":42.2932159484,"26029":42.3246449142,"26030":42.3561158028,"26031":42.3876304482,"26032":42.4191906571,"26033":42.4507981943,"26034":42.48245474,"26035":42.5141618594,"26036":42.5459209988,"26037":42.577733494,"26038":42.6096005803,"26039":42.6415234,"26040":42.6735030093,"26041":42.7055407583,"26042":42.7376391925,"26043":42.7698018402,"26044":42.8020323993,"26045":42.8343344952,"26046":42.8667117071,"26047":42.8991675701,"26048":42.9317055768,"26049":42.9643291806,"26050":42.997041798,"26051":43.0298468324,"26052":43.0627477572,"26053":43.0957481089,"26054":43.1288514207,"26055":43.1620612028,"26056":43.1953809474,"26057":43.2288141314,"26058":43.2623642192,"26059":43.2960346653,"26060":43.3298289171,"26061":43.3637505114,"26062":43.3978037702,"26063":43.4319937988,"26064":43.4663258962,"26065":43.5008053563,"26066":43.5354374856,"26067":43.5702276035,"26068":43.6051810409,"26069":43.6403031407,"26070":43.6755992571,"26071":43.7110747582,"26072":43.7467351185,"26073":43.7825859255,"26074":43.8186328031,"26075":43.8548813838,"26076":43.8913373105,"26077":43.9280062358,"26078":43.964893821,"26079":44.0020057355,"26080":44.0393476559,"26081":44.0769252649,"26082":44.1147436378,"26083":44.1528071372,"26084":44.1911199126,"26085":44.2296861145,"26086":44.2685098902,"26087":44.3075953825,"26088":44.346946731,"26089":44.3865680713,"26090":44.4264635355,"26091":44.4666372517,"26092":44.5070932509,"26093":44.5478354402,"26094":44.5888676768,"26095":44.6301938086,"26096":44.6718176761,"26097":44.7137431116,"26098":44.7559739385,"26099":44.7985139709,"26100":44.841367013,"26101":44.8845368583,"26102":44.9280262146,"26103":44.971836249,"26104":45.0159674427,"26105":45.0604201948,"26106":45.1051948972,"26107":45.1502919257,"26108":45.1957116419,"26109":45.2414543949,"26110":45.2875205212,"26111":45.3339103459,"26112":45.3806239654,"26113":45.4276615009,"26114":45.4750230929,"26115":45.5227088498,"26116":45.5707188704,"26117":45.6190532428,"26118":45.667712045,"26119":45.7166953451,"26120":45.7660032023,"26121":45.8156356668,"26122":45.8655920603,"26123":45.9158703746,"26124":45.966467818,"26125":46.0173814715,"26126":46.068608428,"26127":46.1201457785,"26128":46.1719906134,"26129":46.2241400238,"26130":46.276591102,"26131":46.3293409423,"26132":46.3823865521,"26133":46.4357247488,"26134":46.4893522251,"26135":46.543265655,"26136":46.5974617206,"26137":46.6519371098,"26138":46.7066885167,"26139":46.7617126424,"26140":46.8170061953,"26141":46.8725658917,"26142":46.9283882885,"26143":46.9844695098,"26144":47.0408053624,"26145":47.0973916018,"26146":47.1542240045,"26147":47.2112983611,"26148":47.2686104763,"26149":47.3261561699,"26150":47.3839312761,"26151":47.4419316443,"26152":47.5001531138,"26153":47.5585914557,"26154":47.6172423872,"26155":47.6761016269,"26156":47.7351649115,"26157":47.7944279935,"26158":47.8538866418,"26159":47.9135366414,"26160":47.9733737935,"26161":48.0333939153,"26162":48.0935928692,"26163":48.1539666722,"26164":48.2145114825,"26165":48.2752235022,"26166":48.3360989456,"26167":48.3971340421,"26168":48.4583250356,"26169":48.519668185,"26170":48.5811597629,"26171":48.6427960563,"26172":48.7045733699,"26173":48.7664880557,"26174":48.8285365121,"26175":48.8907151588,"26176":48.9530204269,"26177":49.01544876,"26178":49.0779966142,"26179":49.140660457,"26180":49.2034367677,"26181":49.2663220371,"26182":49.3293127775,"26183":49.3924058657,"26184":49.4555985663,"26185":49.5188882438,"26186":49.5822722602,"26187":49.6457479846,"26188":49.7093127934,"26189":49.7729640692,"26190":49.8366992012,"26191":49.9005155848,"26192":49.964410622,"26193":50.0283818166,"26194":50.0924267901,"26195":50.1565432017,"26196":50.2207287153,"26197":50.2849809997,"26198":50.349297729,"26199":50.4136765828,"26200":50.478115246,"26201":50.5426114088,"26202":50.6071627671,"26203":50.6717673119,"26204":50.736423409,"26205":50.8011295624,"26206":50.8658842852,"26207":50.9306860915,"26208":50.9955334988,"26209":51.0604250279,"26210":51.1253592028,"26211":51.1903345509,"26212":51.2553496038,"26213":51.3204029507,"26214":51.3854932618,"26215":51.4506192447,"26216":51.5157796143,"26217":51.5809730888,"26218":51.6461983911,"26219":51.7114542482,"26220":51.7767393919,"26221":51.8420525586,"26222":51.9073924895,"26223":51.9727581143,"26224":52.0381486605,"26225":52.1035635085,"26226":52.1690020605,"26227":52.2344637183,"26228":52.2999478858,"26229":52.3654539693,"26230":52.4309813776,"26231":52.4965295217,"26232":52.5620978156,"26233":52.6276857127,"26234":52.6932927363,"26235":52.7589184522,"26236":52.8245624343,"26237":52.8902242576,"26238":52.9559034994,"26239":53.0215997387,"26240":53.0873125564,"26241":53.1530415356,"26242":53.2187862607,"26243":53.2845463501,"26244":53.3503214923,"26245":53.4161114222,"26246":53.4819158825,"26247":53.5477346148,"26248":53.6135673604,"26249":53.67941386,"26250":53.7452738538,"26251":53.8111470818,"26252":53.877033283,"26253":53.9429322046,"26254":54.0088436158,"26255":54.0747673017,"26256":54.1407030492,"26257":54.2066506428,"26258":54.2726098655,"26259":54.3385804983,"26260":54.4045623199,"26261":54.4705551073,"26262":54.5365586348,"26263":54.6025726588,"26264":54.6685968789,"26265":54.7346309471,"26266":54.8006745026,"26267":54.8667271824,"26268":54.9327886201,"26269":54.9988584465,"26270":55.0649362892,"26271":55.1310217729,"26272":55.1971145194,"26273":55.2632141432,"26274":55.3293202348,"26275":55.3954323622,"26276":55.4615500862,"26277":55.5276729655,"26278":55.5938005561,"26279":55.6599324116,"26280":55.7260680833,"26281":55.7922071206,"26282":55.8583490707,"26283":55.9244934572,"26284":55.9906396191,"26285":56.0567867123,"26286":56.1229338484,"26287":56.1890801417,"26288":56.2552247049,"26289":56.3213666501,"26290":56.387505089,"26291":56.453639133,"26292":56.519767894,"26293":56.5858904821,"26294":56.652005926,"26295":56.7181131677,"26296":56.7842111287,"26297":56.8502987338,"26298":56.9163749096,"26299":56.9824385843,"26300":57.0484886886,"26301":57.1145241555,"26302":57.1805439205,"26303":57.2465469223,"26304":57.312531939,"26305":57.3784975661,"26306":57.4444423624,"26307":57.5103649029,"26308":57.5762637505,"26309":57.6421374816,"26310":57.7079846824,"26311":57.7738039467,"26312":57.8395938745,"26313":57.9053530802,"26314":57.9710801401,"26315":58.0367735865,"26316":58.1024319391,"26317":58.168053731,"26318":58.2336375046,"26319":58.2991818165,"26320":58.3646852328,"26321":58.4301458044,"26322":58.4955626685,"26323":58.5609344237,"26324":58.6262593905,"26325":58.6915360114,"26326":58.7567628706,"26327":58.8219384402,"26328":58.8870613225,"26329":58.952130041,"26330":59.0171432376,"26331":59.0820994826,"26332":59.1469974573,"26333":59.2118357778,"26334":59.2766132132,"26335":59.3413285531,"26336":59.4059807254,"26337":59.4705686121,"26338":59.5350911859,"26339":59.5995473735,"26340":59.6639361863,"26341":59.7282565946,"26342":59.7925076473,"26343":59.8566883567,"26344":59.9207978742,"26345":59.9848354423,"26346":60.0488004415,"26347":60.1126922355,"26348":60.1765102467,"26349":60.2402538725,"26350":60.3039225652,"26351":60.3675157555,"26352":60.4310329233,"26353":60.4944735301,"26354":60.5578371119,"26355":60.6211232539,"26356":60.6843316244,"26357":60.7474618852,"26358":60.8105137322,"26359":60.8734868491,"26360":60.9363809504,"26361":60.9991957396,"26362":61.0619309474,"26363":61.1245862944,"26364":61.1871615708,"26365":61.2496566778,"26366":61.3120716244,"26367":61.374406426,"26368":61.4366611101,"26369":61.4988356936,"26370":61.5609302051,"26371":61.6229446638,"26372":61.684879098,"26373":61.7467335274,"26374":61.8085080001,"26375":61.8702026267,"26376":61.9318175813,"26377":61.9933530402,"26378":62.0548091805,"26379":62.1161861694,"26380":62.1774841752,"26381":62.2387033565,"26382":62.299843872,"26383":62.3609058712,"26384":62.4218895187,"26385":62.4827950475,"26386":62.5436227576,"26387":62.6043729528,"26388":62.66504593,"26389":62.7256419747,"26390":62.786161367,"26391":62.846604377,"26392":62.9069712686,"26393":62.9672622968,"26394":63.0274777165,"26395":63.0876178243,"26396":63.1476829596,"26397":63.2076734633,"26398":63.2675896675,"26399":63.327431895,"26400":63.3872004617,"26401":63.4468956749,"26402":63.5065178358,"26403":63.5660672376,"26404":63.6255441687,"26405":63.6849489439,"26406":63.7442819068,"26407":63.8035434029,"26408":63.8627337702,"26409":63.92185334,"26410":63.9809024377,"26411":64.0398813833,"26412":64.0987904919,"26413":64.1576300738,"26414":64.2164004351,"26415":64.2751018992,"26416":64.33373481,"26417":64.3922995146,"26418":64.4507954192,"26419":64.5092239959,"26420":64.5675755819,"26421":64.6258631574,"26422":64.6839902107,"26423":64.7417290267,"26424":64.7988257211,"26425":64.8550407862,"26426":64.9101494344,"26427":64.9639412552,"26428":65.0162199703,"26429":65.0668031384,"26430":65.1155218403,"26431":65.1622203464,"26432":65.2067557672,"26433":65.2489976918,"26434":65.2888278152,"26435":65.3261395584,"26436":65.3608376818,"26437":65.3928378962,"26438":65.4220664715,"26439":65.4484598459,"26440":65.4719642353,"26441":65.4925352464,"26442":65.5101374932,"26443":65.5247442181,"26444":65.5363369171,"26445":65.544904955,"26446":65.5504451932,"26447":65.5529616484,"26448":65.5524651562,"26449":65.5489730333,"26450":65.542508744,"26451":65.5331015752,"26452":65.5207863188,"26453":65.5056029616,"26454":65.4875963829,"26455":65.4668160486,"26456":65.4433157151,"26457":65.4171531547,"26458":65.3883898892,"26459":65.3570909226,"26460":65.3233244777,"26461":65.2871617377,"26462":65.2486765939,"26463":65.2079453982,"26464":65.16504672,"26465":65.1200610983,"26466":65.0730707973,"26467":65.0241595834,"26468":64.9734125114,"26469":64.9209157058,"26470":64.8667561436,"26471":64.8110214411,"26472":64.7537996452,"26473":64.6951790293,"26474":64.6352478938,"26475":64.5740943642,"26476":64.5118061904,"26477":64.4484705675,"26478":64.3841739685,"26479":64.3190019751,"26480":64.253039112,"26481":64.1863686884,"26482":64.1190726472,"26483":64.0512314221,"26484":63.9829238026,"26485":63.9142268054,"26486":63.8452155496,"26487":63.7759631522,"26488":63.7065406388,"26489":63.6370168591,"26490":63.5674584108,"26491":63.4979295743,"26492":63.4284922585,"26493":63.3592059586,"26494":63.2901277235,"26495":63.2213121342,"26496":63.1528112854,"26497":63.0846747898,"26498":63.0169497976,"26499":62.9496810229,"26500":62.8829107767,"26501":62.8166790104,"26502":62.7510233682,"26503":62.685979249,"26504":62.6215798756,"26505":62.5578563718,"26506":62.4948378443,"26507":62.4325514729,"26508":62.371022608,"26509":62.3102748706,"26510":62.2503302554,"26511":62.1912092369,"26512":62.1329308769,"26513":62.0755129333,"26514":62.0189719688,"26515":61.9633234587,"26516":61.9085818958,"26517":61.8547608939,"26518":61.8018732912,"26519":61.7499312475,"26520":61.6989463362,"26521":61.6489296314,"26522":61.599891789,"26523":61.551843121,"26524":61.5047936639,"26525":61.4587532385,"26526":61.413731506,"26527":61.3697380133,"26528":61.326782228,"26529":61.2848735657,"26530":61.2440214101,"26531":61.2042351253,"26532":61.1655240586,"26533":61.1278975364,"26534":61.0913648512,"26535":61.0559352413,"26536":61.0216178662,"26537":60.9884217724,"26538":60.95635585,"26539":60.9254287837,"26540":60.8956489991,"26541":60.8670246043,"26542":60.8395633277,"26543":60.8132724503,"26544":60.7881587368,"26545":60.764228363,"26546":60.7414868406,"26547":60.7199389426,"26548":60.6995886282,"26549":60.6804389686,"26550":60.6624920733,"26551":60.6457490194,"26552":60.6302097822,"26553":60.6158731702,"26554":60.6027367646,"26555":60.5907968626,"26556":60.5800484357,"26557":60.5704850896,"26558":60.562099022,"26559":60.5548809861,"26560":60.5488202681,"26561":60.5439046734,"26562":60.5401205208,"26563":60.5374526469,"26564":60.535884419,"26565":60.5353977573,"26566":60.5359731699,"26567":60.5375897954,"26568":60.5402254535,"26569":60.5438567037,"26570":60.5484589149,"26571":60.5540063446,"26572":60.5604722263,"26573":60.5678288657,"26574":60.5760477441,"26575":60.5850996293,"26576":60.5949546954,"26577":60.6055826485,"26578":60.6169528557,"26579":60.6290344766,"26580":60.6417965971,"26581":60.6552083658,"26582":60.6692391334,"26583":60.6838585934,"26584":60.6990369225,"26585":60.7147449202,"26586":60.7309541456,"26587":60.7476370528,"26588":60.7647671196,"26589":60.7823189708,"26590":60.8002684962,"26591":60.8185929619,"26592":60.8372711135,"26593":60.8562832713,"26594":60.8756114159,"26595":60.8952392633,"26596":60.9151523311,"26597":60.9353379938,"26598":60.9557855244,"26599":60.9764861232,"26600":60.9974329347,"26601":61.0186210533,"26602":61.0400475153,"26603":61.0617112786,"26604":61.0836131897,"26605":61.1057559377,"26606":61.1281439956,"26607":61.1507835502,"26608":61.1736824189,"26609":61.1968499556,"26610":61.220296945,"26611":61.2440354873,"26612":61.2680788722,"26613":61.2924414441,"26614":61.3171384588,"26615":61.3421859325,"26616":61.3676004837,"26617":61.39339917,"26618":61.419599319,"26619":61.4462183552,"26620":61.4732736241,"26621":61.5007822144,"26622":61.5287607791,"26623":61.5572253563,"26624":61.5861911923,"26625":61.6156725648,"26626":61.6456826119,"26627":61.6762331624,"26628":61.7073345738,"26629":61.738995576,"26630":61.7712231227,"26631":61.80402225,"26632":61.8373959455,"26633":61.8713450261,"26634":61.9058680277,"26635":61.9409611062,"26636":61.9766179511,"26637":62.0128297109,"26638":62.0495849335,"26639":62.0868695217,"26640":62.1246667019,"26641":62.1629570085,"26642":62.2017182834,"26643":62.2409256901,"26644":62.2805517447,"26645":62.3205663613,"26646":62.3609369138,"26647":62.4016283119,"26648":62.4426030929,"26649":62.4838215289,"26650":62.5252417478,"26651":62.566819868,"26652":62.6085101455,"26653":62.6502651346,"26654":62.692035859,"26655":62.7337719944,"26656":62.7754220606,"26657":62.8169336186,"26658":62.8582534783,"26659":62.8993279163,"26660":62.9401029002,"26661":62.980524313,"26662":63.0205381821,"26663":63.0600909094,"26664":63.0991295021,"26665":63.1376018029,"26666":63.1754567187,"26667":63.2126444483,"26668":63.249116705,"26669":63.2848269308,"26670":63.3197305034,"26671":63.3537849377,"26672":63.3869500783,"26673":63.419188283,"26674":63.4504645948,"26675":63.4807469033,"26676":63.5100060931,"26677":63.5382161794,"26678":63.5653544295,"26679":63.5914014713,"26680":63.6163413865,"26681":63.6401617888,"26682":63.662853887,"26683":63.6844125317,"26684":63.7048362467,"26685":63.7241272446,"26686":63.7422914259,"26687":63.7593383633,"26688":63.77528127,"26689":63.7901369518,"26690":63.8039257442,"26691":63.8166714349,"26692":63.8284011718,"26693":63.8391453577,"26694":63.848937531,"26695":63.8578142344,"26696":63.8658148703,"26697":63.8729815465,"26698":63.8793589111,"26699":63.8849939753,"26700":63.889935928,"26701":63.8942359414,"26702":63.8979469706,"26703":63.9011235467,"26704":63.9038213354,"26705":63.9060946109,"26706":63.907994283,"26707":63.9095673149,"26708":63.9108566228,"26709":63.9119010345,"26710":63.9127352376,"26711":63.9133897292,"26712":63.9138907657,"26713":63.914260315,"26714":63.9145160111,"26715":63.9146711129,"26716":63.9147344672,"26717":63.9147104779,"26718":63.9145990803,"26719":63.9143957242,"26720":63.9140913665,"26721":63.9136724721,"26722":63.9131210244,"26723":63.9124145466,"26724":63.9115261337,"26725":63.9104244966,"26726":63.9090740181,"26727":63.9074348216,"26728":63.9054628518,"26729":63.9031099692,"26730":63.9003240593,"26731":63.897049154,"26732":63.893225566,"26733":63.8887900369,"26734":63.8836758979,"26735":63.8778132432,"26736":63.8711291155,"26737":63.8635477036,"26738":63.854990548,"26739":63.8453767601,"26740":63.8346232523,"26741":63.8226449772,"26742":63.8093551719,"26743":63.7946656114,"26744":63.7784868669,"26745":63.7607285691,"26746":63.7412996761,"26747":63.7201087432,"26748":63.6970641927,"26749":63.6720745854,"26750":63.6450488945,"26751":63.6158967763,"26752":63.5845288367,"26753":63.5508568939,"26754":63.5147942359,"26755":63.4762558712,"26756":63.4351587727,"26757":63.3914221126,"26758":63.3449674819,"26759":63.2957191045,"26760":63.2436040467,"26761":63.1885524136,"26762":63.13049753,"26763":63.0693761074,"26764":63.0051283988,"26765":62.9376983383,"26766":62.8670336669,"26767":62.7930860434,"26768":62.7158111338,"26769":62.6351686894,"26770":62.5511226177,"26771":62.4636410366,"26772":62.3726963114,"26773":62.2782650745,"26774":62.1803282322,"26775":62.0788709561,"26776":61.9738826601,"26777":61.8653569649,"26778":61.7532916452,"26779":61.6376885667,"26780":61.5185536124,"26781":61.3958965981,"26782":61.2697311748,"26783":61.1400747212,"26784":61.0069482259,"26785":60.8703761613,"26786":60.7303863485,"26787":60.5870098156,"26788":60.4402806485,"26789":60.2902358366,"26790":60.136915114,"26791":59.9803607973,"26792":59.8206176204,"26793":59.6577325663,"26794":59.4917546994,"26795":59.322734996,"26796":59.1507261774,"26797":58.9757825439,"26798":58.7979598106,"26799":58.6173149466,"26800":58.4339060226,"26801":58.2477920651,"26802":58.0590329164,"26803":57.8676891011,"26804":57.6738217023,"26805":57.4774922463,"26806":57.278762599,"26807":57.0776948725,"26808":56.874351344,"26809":56.6687943879,"26810":56.4610864201,"26811":56.2512898555,"26812":56.0394670794,"26813":55.8256804341,"26814":55.6099922191,"26815":55.3924647061,"26816":55.173160168,"26817":54.9521409229,"26818":54.7294693918,"26819":54.505208173,"26820":54.2794201242,"26821":54.0521684563,"26822":53.8235168387,"26823":53.5935295168,"26824":53.3622714373,"26825":53.1298083822,"26826":52.8962071086,"26827":52.6615354944,"26828":52.4258626866,"26829":52.189259254,"26830":51.951797337,"26831":51.7135507951,"26832":51.4745953518,"26833":51.2350087344,"26834":50.9948708068,"26835":50.7542636941,"26836":50.5132718953,"26837":50.2719823844,"26838":50.0304846989,"26839":49.7888710202,"26840":49.5472362279,"26841":49.3056779285,"26842":49.0642964695,"26843":48.8231949358,"26844":48.5824791252,"26845":48.3422575009,"26846":48.102641123,"26847":47.8637435563,"26848":47.6256807558,"26849":47.3885709328,"26850":47.1525343957,"26851":46.9176933674,"26852":46.6841717826,"26853":46.4520950667,"26854":46.2215898961,"26855":45.9927839404,"26856":45.7658055896,"26857":45.540783667,"26858":45.3178471289,"26859":45.0971247677,"26860":44.8787448949,"26861":44.6628350065,"26862":44.44952145,"26863":44.2389290938,"26864":44.0311809971,"26865":43.8263980828,"26866":43.6246988147,"26867":43.4261988829,"26868":43.2310108983,"26869":43.0392441009,"26870":42.8510040805,"26871":42.666392511,"26872":42.4855069025,"26873":42.3084403747,"26874":42.1352814508,"26875":41.9661138747,"26876":41.8010164518,"26877":41.6400629154,"26878":41.4833218196,"26879":41.3308564667,"26880":41.1827248583,"26881":41.0389796674,"26882":40.8996682401,"26883":40.7648326308,"26884":40.6345096674,"26885":40.5087310448,"26886":40.3875234487,"26887":40.2709087067,"26888":40.1589039675,"26889":40.0515219111,"26890":39.9487709825,"26891":39.8506556454,"26892":39.7571766587,"26893":39.6683313765,"26894":39.5841140677,"26895":39.5045162537,"26896":39.4295270603,"26897":39.3591335831,"26898":39.2933212625,"26899":39.2320742767,"26900":39.1753759381,"26901":39.1232090764,"26902":39.0755564212,"26903":39.0324009817,"26904":38.9937264152,"26905":38.959517385,"26906":38.929759906,"26907":38.9044416726,"26908":38.8835523639,"26909":38.867083923,"26910":38.8550308081,"26911":38.8473902112,"26912":38.8441622405,"26913":38.8453500662,"26914":38.8509600249,"26915":38.86100168,"26916":38.8754878382,"26917":38.8944345175,"26918":38.9178608675,"26919":38.9457890393,"26920":38.9766129489,"26921":39.0081872141,"26922":39.0397535063,"26923":39.0712857454,"26924":39.1027901095,"26925":39.134266313,"26926":39.1657153503,"26927":39.1971379459,"26928":39.2285348644,"26929":39.2599068467,"26930":39.2912546223,"26931":39.3225789056,"26932":39.3538803969,"26933":39.3851597814,"26934":39.4164177289,"26935":39.4476548935,"26936":39.4788719134,"26937":39.51006941,"26938":39.5412479883,"26939":39.5724082348,"26940":39.6035507104,"26941":39.6346759516,"26942":39.665784477,"26943":39.696876789,"26944":39.7279533741,"26945":39.759014703,"26946":39.7900612309,"26947":39.8210933978,"26948":39.8521116293,"26949":39.8831163366,"26950":39.9141079168,"26951":39.945086754,"26952":39.9760532199,"26953":40.007007675,"26954":40.0379504695,"26955":40.0688819443,"26956":40.0998024311,"26957":40.1307122546,"26958":40.1616117322,"26959":40.1925011759,"26960":40.2233808889,"26961":40.2542511684,"26962":40.2851123102,"26963":40.3159646118,"26964":40.3468083724,"26965":40.3776438941,"26966":40.4084714823,"26967":40.4392914467,"26968":40.4701041023,"26969":40.5009097701,"26970":40.5317087778,"26971":40.5625014608,"26972":40.593288163,"26973":40.6240692384,"26974":40.6548450514,"26975":40.6856159776,"26976":40.7163824048,"26977":40.7471447338,"26978":40.7779033789,"26979":40.8086587687,"26980":40.8394113482,"26981":40.8701615802,"26982":40.9009099432,"26983":40.9316569326,"26984":40.9624030595,"26985":40.9931488526,"26986":41.0238948574,"26987":41.0546416373,"26988":41.0853897731,"26989":41.1161398635,"26990":41.1468925237,"26991":41.1776483854,"26992":41.2084080966,"26993":41.2391723228,"26994":41.2699417458,"26995":41.3007170639,"26996":41.3314989908,"26997":41.3622882548,"26998":41.3930855982,"26999":41.4238917762,"27000":0.0000003771,"27001":0.0000010126,"27002":0.000000425,"27003":0.0000011347,"27004":0.0000004866,"27005":0.0000012912,"27006":0.0000005651,"27007":0.0000000404,"27008":-0.0000000072,"27009":0.0000025008,"27010":-0.0000000222,"27011":0.000002799,"27012":-0.0000000146,"27013":0.0000030897,"27014":-0.0000000047,"27015":0.0000033695,"27016":0.0000000079,"27017":0.000000096,"27018":0.0000000576,"27019":0.0000001121,"27020":0.0000000789,"27021":0.0000001313,"27022":0.0000001038,"27023":0.0000001537,"27024":0.0000001329,"27025":0.0000001793,"27026":0.0000001662,"27027":0.0000002086,"27028":0.0000002043,"27029":0.0000002417,"27030":0.0000002472,"27031":0.0000002786,"27032":0.000000295,"27033":0.0000003182,"27034":0.0000003414,"27035":0.0000003642,"27036":0.000000388,"27037":0.0000004127,"27038":0.0000004382,"27039":0.0000004646,"27040":0.0000004916,"27041":0.0000005194,"27042":0.0000005478,"27043":0.0000005768,"27044":0.0000006063,"27045":0.0000006362,"27046":0.0000006665,"27047":0.000000697,"27048":0.0000007278,"27049":0.0000007586,"27050":0.0000007894,"27051":0.0000008202,"27052":0.0000008508,"27053":0.0000008812,"27054":0.0000009113,"27055":0.0000009409,"27056":0.0000009701,"27057":0.0000009987,"27058":0.0000010267,"27059":0.000001054,"27060":0.0000010806,"27061":0.0000011064,"27062":0.0000011313,"27063":0.0000011553,"27064":0.0000011783,"27065":0.0000012004,"27066":0.0000012215,"27067":0.0000012415,"27068":0.0000012605,"27069":0.0000012785,"27070":0.0000012954,"27071":0.0000013112,"27072":0.000001326,"27073":0.0000013398,"27074":0.0000013525,"27075":0.0000013642,"27076":0.000001375,"27077":0.0000013847,"27078":0.0000013936,"27079":0.0000014016,"27080":0.0000014087,"27081":0.000001415,"27082":0.0000014205,"27083":0.0000014252,"27084":0.0000014293,"27085":0.0000014327,"27086":0.0000014354,"27087":0.0000014376,"27088":0.0000014392,"27089":0.0000014404,"27090":0.0000014411,"27091":0.0000014413,"27092":0.0000014412,"27093":0.0000014407,"27094":0.00000144,"27095":0.0000014389,"27096":0.0000014376,"27097":0.0000014361,"27098":0.0000014344,"27099":0.0000014325,"27100":0.0000014305,"27101":0.0000014284,"27102":0.0000014263,"27103":0.000001424,"27104":0.0000014217,"27105":0.0000014193,"27106":0.000001417,"27107":0.0000014146,"27108":0.0000014123,"27109":0.0000014099,"27110":0.0000014076,"27111":0.0000014053,"27112":0.0000014031,"27113":0.0000014009,"27114":0.0000013989,"27115":0.0000013969,"27116":0.0000013951,"27117":0.0000013934,"27118":0.0000013917,"27119":0.0000013902,"27120":0.0000013887,"27121":0.0000013873,"27122":0.000001386,"27123":0.0000013848,"27124":0.0000013836,"27125":0.0000013825,"27126":0.0000013815,"27127":0.0000013805,"27128":0.0000013795,"27129":0.0000013786,"27130":0.0000013777,"27131":0.0000013768,"27132":0.0000013759,"27133":0.000001375,"27134":0.0000013741,"27135":0.0000013732,"27136":0.0000013723,"27137":0.0000013714,"27138":0.0000013704,"27139":0.0000013694,"27140":0.0000013684,"27141":0.0000013673,"27142":0.0000013662,"27143":0.000001365,"27144":0.0000013638,"27145":0.0000013625,"27146":0.0000013612,"27147":0.0000013598,"27148":0.0000013583,"27149":0.0000013568,"27150":0.0000013552,"27151":0.0000013536,"27152":0.0000013519,"27153":0.0000013501,"27154":0.0000013483,"27155":0.0000013464,"27156":0.0000013445,"27157":0.0000013426,"27158":0.0000013405,"27159":0.0000013385,"27160":0.0000013364,"27161":0.0000013342,"27162":0.0000013321,"27163":0.0000013299,"27164":0.0000013276,"27165":0.0000013254,"27166":0.0000013231,"27167":0.0000013208,"27168":0.0000013185,"27169":0.0000013162,"27170":0.0000013139,"27171":0.0000013116,"27172":0.0000013092,"27173":0.0000013069,"27174":0.0000013046,"27175":0.0000013023,"27176":0.0000013,"27177":0.0000012978,"27178":0.0000012955,"27179":0.0000012933,"27180":0.0000012911,"27181":0.0000012889,"27182":0.0000012867,"27183":0.0000012845,"27184":0.0000012824,"27185":0.0000012803,"27186":0.0000012782,"27187":0.0000012761,"27188":0.0000012741,"27189":0.0000012721,"27190":0.00000127,"27191":0.000001268,"27192":0.0000012661,"27193":0.0000012641,"27194":0.0000012621,"27195":0.0000012602,"27196":0.0000012582,"27197":0.0000012563,"27198":0.0000012543,"27199":0.0000012524,"27200":0.0000012504,"27201":0.0000012484,"27202":0.0000012465,"27203":0.0000012445,"27204":0.0000012425,"27205":0.0000012404,"27206":0.0000012384,"27207":0.0000012363,"27208":0.0000012342,"27209":0.0000012321,"27210":0.00000123,"27211":0.0000012278,"27212":0.0000012256,"27213":0.0000012234,"27214":0.0000012211,"27215":0.0000012188,"27216":0.0000012165,"27217":0.0000012141,"27218":0.0000012117,"27219":0.0000012093,"27220":0.0000012068,"27221":0.0000012043,"27222":0.0000012017,"27223":0.0000011992,"27224":0.0000011966,"27225":0.000001194,"27226":0.0000011913,"27227":0.0000011886,"27228":0.0000011859,"27229":0.0000011832,"27230":0.0000011804,"27231":0.0000011777,"27232":0.0000011749,"27233":0.0000011721,"27234":0.0000011693,"27235":0.0000011665,"27236":0.0000011636,"27237":0.0000011608,"27238":0.0000011579,"27239":0.0000011551,"27240":0.0000011522,"27241":0.0000011494,"27242":0.0000011465,"27243":0.0000011436,"27244":0.0000011408,"27245":0.0000011379,"27246":0.0000011351,"27247":0.0000011322,"27248":0.0000011294,"27249":0.0000011265,"27250":0.0000011237,"27251":0.0000011208,"27252":0.000001118,"27253":0.0000011151,"27254":0.0000011123,"27255":0.0000011094,"27256":0.0000011065,"27257":0.0000011037,"27258":0.0000011008,"27259":0.0000010979,"27260":0.0000010949,"27261":0.000001092,"27262":0.000001089,"27263":0.000001086,"27264":0.000001083,"27265":0.0000010799,"27266":0.0000010768,"27267":0.0000010736,"27268":0.0000010704,"27269":0.0000010671,"27270":0.0000010637,"27271":0.0000010603,"27272":0.0000010568,"27273":0.0000010532,"27274":0.0000010495,"27275":0.0000010458,"27276":0.0000010419,"27277":0.0000010379,"27278":0.0000010338,"27279":0.0000010296,"27280":0.0000010252,"27281":0.0000010207,"27282":0.0000010161,"27283":0.0000010113,"27284":0.0000010064,"27285":0.0000010013,"27286":0.0000009961,"27287":0.0000009907,"27288":0.0000009851,"27289":0.0000009793,"27290":0.0000009734,"27291":0.0000009673,"27292":0.000000961,"27293":0.0000009545,"27294":0.0000009479,"27295":0.000000941,"27296":0.000000934,"27297":0.0000009267,"27298":0.0000009193,"27299":0.0000009116,"27300":0.0000009038,"27301":0.0000008958,"27302":0.0000008876,"27303":0.0000008791,"27304":0.0000008707,"27305":0.0000008544,"27306":0.0000008427,"27307":0.0000008311,"27308":0.0000008338,"27309":0.0000008081,"27310":0.0000008144,"27311":0.0000007809,"27312":0.0000007936,"27313":0.0000007525,"27314":0.0000007722,"27315":0.0000007226,"27316":0.0000007501,"27317":0.0000006912,"27318":0.0000007272,"27319":0.0000006584,"27320":0.0000007038,"27321":0.0009664338,"27322":0.0000099072,"27323":0.0003359621,"27324":0.0001587914,"27325":0.0003293582,"27326":0.000149274,"27327":0.0003100918,"27328":0.0001404697,"27329":0.0002907506,"27330":0.0001316592,"27331":0.0002715191,"27332":0.0001229066,"27333":0.0002525365,"27334":0.0001142748,"27335":0.0002339329,"27336":0.0001058225,"27337":0.0002158272,"27338":0.0000976028,"27339":0.0001983252,"27340":0.0000896633,"27341":0.0001815182,"27342":0.0000820446,"27343":0.0001654825,"27344":0.0000747805,"27345":0.0001502785,"27346":0.0000678977,"27347":0.0001359512,"27348":0.0000614158,"27349":0.0001225301,"27350":0.0000553473,"27351":0.0001100304,"27352":0.0000496986,"27353":0.0000984539,"27354":0.0000444697,"27355":0.0000877905,"27356":0.0000396554,"27357":0.0000780194,"27358":0.0000352458,"27359":0.0000691109,"27360":0.000031227,"27361":0.000061028,"27362":0.0000275817,"27363":0.0000537278,"27364":0.0000242904,"27365":0.0000471636,"27366":0.0000213315,"27367":0.0000412856,"27368":0.0000186824,"27369":0.0000360427,"27370":0.0000163198,"27371":0.0000313834,"27372":0.0000142202,"27373":0.000027257,"27374":0.0000123608,"27375":0.0000236142,"27376":0.0000107191,"27377":0.0000204076,"27378":0.0000092738,"27379":0.0000175926,"27380":0.0000080047,"27381":0.0000151274,"27382":0.000006893,"27383":0.0000129731,"27384":0.0000059211,"27385":0.0000110942,"27386":0.0000050732,"27387":0.0000094584,"27388":0.0000043345,"27389":0.0000080364,"27390":0.0000036921,"27391":0.0000068019,"27392":0.000003134,"27393":0.0000057315,"27394":0.0000026497,"27395":0.0000048045,"27396":0.00000223,"27397":0.0000040026,"27398":0.0000018665,"27399":0.0000033095,"27400":0.0000015521,"27401":0.0000027113,"27402":0.0000012805,"27403":0.0000021956,"27404":0.000001046,"27405":0.0000017517,"27406":0.0000008439,"27407":0.0000013491,"27408":0.0000006647,"27409":0.0000010249,"27410":0.000000516,"27411":0.0000007475,"27412":0.0000003887,"27413":0.0000005113,"27414":0.00000028,"27415":0.000000311,"27416":0.0000001877,"27417":0.0000001419,"27418":0.0017723673,"27419":-0.0000171572,"27420":0.0198016348,"27421":-0.0012429676,"27422":0.1916230647,"27423":0.6489363066,"27424":1.355659192,"27425":2.2969247837,"27426":3.458091264,"27427":4.8247702504,"27428":6.3828554518,"27429":8.1185466748,"27430":10.018370503,"27431":12.0691976926,"27432":14.2582575742,"27433":16.573149688,"27434":19.0018528815,"27435":21.5327320873,"27436":24.1545429914,"27437":26.8564347902,"27438":29.6279512318,"27439":32.4590301218,"27440":35.3400014714,"27441":38.261584453,"27442":41.2148833232,"27443":44.191382462,"27444":47.1829406687,"27445":50.1817848474,"27446":53.1805032008,"27447":56.1720380553,"27448":59.1496784221,"27449":62.1070523926,"27450":65.0381194511,"27451":67.9371627846,"27452":70.7987816574,"27453":73.617883911,"27454":76.3896786387,"27455":79.1096690755,"27456":81.7736457346,"27457":84.3776798172,"27458":86.918116911,"27459":89.3915709858,"27460":91.7949186838,"27461":94.1252938939,"27462":96.3800825989,"27463":98.5569179699,"27464":100.6536756842,"27465":102.66846943,"27466":104.5996465614,"27467":106.4457838643,"27468":108.2056833922,"27469":109.8783683245,"27470":111.4630787978,"27471":112.9592676617,"27472":114.366596109,"27473":115.6849291334,"27474":116.9143307671,"27475":118.0550590549,"27476":119.1075607205,"27477":120.0724654916,"27478":120.9505800517,"27479":121.742881593,"27480":122.4505109454,"27481":123.0747652657,"27482":123.6170902786,"27483":124.0790720655,"27484":124.4624284068,"27485":124.7689996887,"27486":125.0007393915,"27487":125.1597041875,"27488":125.2480436818,"27489":125.2679898363,"27490":125.2218461216,"27491":125.1119764462,"27492":124.9407939219,"27493":124.7107495245,"27494":124.4243207165,"27495":124.0840000968,"27496":123.6922841506,"27497":123.2516621675,"27498":122.764605406,"27499":122.2335565732,"27500":121.6609196919,"27501":121.0490504223,"27502":120.4002469048,"27503":119.7167411853,"27504":119.0006912828,"27505":118.2541739493,"27506":117.4791781725,"27507":116.677599459,"27508":115.8512349358,"27509":115.0017792964,"27510":114.1308216117,"27511":113.2398430189,"27512":112.3302152942,"27513":111.4032003072,"27514":110.4599503475,"27515":109.5015093092,"27516":108.5288147068,"27517":107.5427004959,"27518":106.5439006615,"27519":105.5330535333,"27520":104.5107067805,"27521":103.4773230349,"27522":102.4332860855,"27523":101.3789075868,"27524":100.3144342174,"27525":99.240055224,"27526":98.1559102843,"27527":97.0620976215,"27528":95.9586822992,"27529":94.8457046293,"27530":93.7231886215,"27531":92.591150409,"27532":91.4496065801,"27533":90.2985823528,"27534":89.138119526,"27535":87.9682841478,"27536":86.789173841,"27537":85.60092473,"27538":84.4037179159,"27539":83.1977854494,"27540":81.9834157563,"27541":80.7609584733,"27542":79.5308286563,"27543":78.2935103269,"27544":77.0495593288,"27545":75.7996054679,"27546":74.5443539158,"27547":73.2845858622,"27548":72.0211584057,"27549":70.7550036763,"27550":69.4871271912,"27551":68.218605448,"27552":66.9505827647,"27553":65.6842673847,"27554":64.4209268644,"27555":63.1618827741,"27556":61.9085047413,"27557":60.6622038764,"27558":59.4244256213,"27559":58.1966420652,"27560":56.9803437836,"27561":55.7770312549,"27562":54.5882059177,"27563":53.4153609343,"27564":52.2599717272,"27565":51.1234863618,"27566":50.0073158498,"27567":48.9128244493,"27568":47.8413200389,"27569":46.794044645,"27570":45.7721652001,"27571":44.7767646113,"27572":43.8088332157,"27573":42.8692606991,"27574":41.958828549,"27575":41.0782031125,"27576":40.2279293243,"27577":39.4084251666,"27578":38.6199769153,"27579":37.8627352225,"27580":37.1367120789,"27581":36.4417786924,"27582":35.7776643128,"27583":35.1439560266,"27584":34.5400995348,"27585":33.9654009234,"27586":33.4190294231,"27587":32.9000211525,"27588":32.4072838261,"27589":31.9396024043,"27590":31.495645653,"27591":31.0739735756,"27592":30.6730456717,"27593":30.2912299704,"27594":29.9268127824,"27595":29.5780091075,"27596":29.2429736293,"27597":28.9198122279,"27598":28.6065939333,"27599":28.3013632419,"27600":28.0021527156,"27601":27.7069957815,"27602":27.4139396483,"27603":27.121058257,"27604":26.8264651804,"27605":26.5283263904,"27606":26.2248728086,"27607":25.9144125628,"27608":25.5953428692,"27609":25.2661614658,"27610":24.9254775249,"27611":24.572021974,"27612":24.2046571619,"27613":23.8223858075,"27614":23.424359174,"27615":23.0098844167,"27616":22.5784310558,"27617":22.1296365326,"27618":21.6633108092,"27619":21.1794399804,"27620":20.6781888705,"27621":20.1599025917,"27622":19.6251070485,"27623":19.0745083774,"27624":18.5089913144,"27625":17.9296164936,"27626":17.3376166793,"27627":16.7343919453,"27628":16.1215038178,"27629":15.5006684041,"27630":14.8737485373,"27631":14.2427449685,"27632":13.6097866483,"27633":12.977120142,"27634":12.347098228,"27635":11.7221677369,"27636":11.1048566903,"27637":10.4977608064,"27638":9.9035294417,"27639":9.3248510448,"27640":8.7644381992,"27641":8.2250123405,"27642":7.7092882298,"27643":7.2199582752,"27644":6.7596767902,"27645":6.3310442817,"27646":5.936591862,"27647":5.5787658772,"27648":5.2599128485,"27649":4.9822648164,"27650":4.747925182,"27651":4.5588551333,"27652":4.4168607429,"27653":4.3235808198,"27654":4.2804755941,"27655":4.2888163064,"27656":4.3496757709,"27657":4.463919973,"27658":4.6322007544,"27659":4.854949636,"27660":5.1323728176,"27661":5.4644473867,"27662":5.8509187592,"27663":6.291299368,"27664":6.7848686061,"27665":7.3306740237,"27666":7.9275337686,"27667":8.5740402535,"27668":9.2685650246,"27669":10.0092647972,"27670":10.7940886188,"27671":11.620786112,"27672":12.4869167448,"27673":13.3898600694,"27674":14.3268268655,"27675":15.2948711209,"27676":16.2909027752,"27677":17.3117011533,"27678":18.3539290095,"27679":19.4141471026,"27680":20.4888292219,"27681":21.5743775807,"27682":22.6671384955,"27683":23.7634182704,"27684":24.8594992034,"27685":25.9516556375,"27686":27.0361699756,"27687":28.1093485855,"27688":29.16753752,"27689":30.207137981,"27690":31.2246214585,"27691":32.2165444792,"27692":33.1795629025,"27693":34.1104457035,"27694":35.0060881869,"27695":35.8635245795,"27696":36.6799399494,"27697":37.4526814072,"27698":38.1792685443,"27699":38.8574030685,"27700":39.4849775978,"27701":40.0600835797,"27702":40.5810183036,"27703":41.046290979,"27704":41.4549343222,"27705":41.8092114604,"27706":42.1130831774,"27707":42.3706073561,"27708":42.5858817633,"27709":42.7630575099,"27710":42.9063373066,"27711":43.0199755546,"27712":43.1082768817,"27713":43.1755937949,"27714":43.2263233251,"27715":43.2649027001,"27716":43.2958040616,"27717":43.3235282504,"27718":43.3525976907,"27719":43.3875484107,"27720":43.4329212417,"27721":43.493252246,"27722":43.5730624264,"27723":43.6768467798,"27724":43.8090627586,"27725":43.9741182119,"27726":44.1763588827,"27727":44.4200555396,"27728":44.7093908284,"27729":45.0484459301,"27730":45.4411871159,"27731":45.8914522915,"27732":46.4029376243,"27733":46.9791843475,"27734":47.6235658358,"27735":48.339275046,"27736":49.1293124141,"27737":49.9964742981,"27738":50.9433420533,"27739":51.9722718197,"27740":53.0853851017,"27741":54.2845602115,"27742":55.5714246397,"27743":56.9473484144,"27744":58.4134384981,"27745":59.9705342682,"27746":61.6192041153,"27747":63.3597431883,"27748":65.1921723035,"27749":67.1162380296,"27750":69.1314139506,"27751":71.2369030997,"27752":73.431641551,"27753":75.7143031439,"27754":78.0833053116,"27755":80.5368159755,"27756":83.0727614611,"27757":85.6888353858,"27758":88.3825084602,"27759":91.151039143,"27760":93.9914850851,"27761":96.9007152962,"27762":99.8754229599,"27763":102.9121388233,"27764":106.0072450847,"27765":109.1569897026,"27766":112.3575010485,"27767":115.6048028256,"27768":118.8948291759,"27769":122.2234398985,"27770":125.5864357082,"27771":128.9795734621,"27772":132.3985812844,"27773":135.8391735193,"27774":139.2970654478,"27775":142.7679877054,"27776":146.2477003411,"27777":149.7320064615,"27778":153.2167654045,"27779":156.6979053934,"27780":160.1714356232,"27781":163.633457734,"27782":167.0801766306,"27783":170.5079106069,"27784":173.9131007371,"27785":177.292319501,"27786":180.6422786079,"27787":183.9598359907,"27788":187.2420019402,"27789":190.4859443548,"27790":193.6889930804,"27791":196.8486433193,"27792":199.9625580891,"27793":203.028569714,"27794":206.0446803336,"27795":209.00906142,"27796":211.9200522922,"27797":214.7761576269,"27798":217.576043962,"27799":220.3185351992,"27800":223.0026071137,"27801":225.6273808892,"27802":228.1921156969,"27803":230.6962003466,"27804":233.1391440433,"27805":235.520566291,"27806":237.8401859938,"27807":240.0978098097,"27808":242.293319825,"27809":244.4266606211,"27810":246.4978258181,"27811":248.5068441831,"27812":250.4537654038,"27813":252.3386456317,"27814":254.1615329105,"27815":255.9224526073,"27816":257.6213929738,"27817":259.2582909667,"27818":260.8330184617,"27819":262.3453689984,"27820":263.7950451923,"27821":265.1816469493,"27822":266.5046606174,"27823":267.7634492076,"27824":268.9572438102,"27825":270.0851363255,"27826":271.1460736207,"27827":272.1388532118,"27828":273.0621205617,"27829":273.9143680686,"27830":274.6939358075,"27831":275.399014068,"27832":276.0276477169,"27833":276.5777423972,"27834":277.0470725566,"27835":277.4332912771,"27836":277.7339418628,"27837":277.9464711186,"27838":278.0682442379,"27839":278.0965612012,"27840":278.0286745641,"27841":277.8618084921,"27842":277.5931788915,"27843":277.220014471,"27844":276.7395785588,"27845":276.1491914846,"27846":275.4462533316,"27847":274.6282668525,"27848":273.6928603418,"27849":272.6378102561,"27850":271.4610633716,"27851":270.1607582679,"27852":268.7352459375,"27853":267.1831093225,"27854":265.5031815935,"27855":263.6945629939,"27856":261.7566360843,"27857":259.68907924,"27858":257.491878264,"27859":255.1653360077,"27860":252.7100798957,"27861":250.1270672678,"27862":247.417588472,"27863":244.5832676699,"27864":241.6260613329,"27865":238.5482544226,"27866":235.3524542719,"27867":232.0415821949,"27868":228.6188628767,"27869":225.0878116072,"27870":221.4522194402,"27871":217.7161363685,"27872":213.8838526226,"27873":209.9598782123,"27874":205.9489208398,"27875":201.8558623244,"27876":197.6857336848,"27877":193.4436890345,"27878":189.1349784511,"27879":184.7649199886,"27880":180.338871006,"27881":175.8621989826,"27882":171.3402519951,"27883":166.7783290431,"27884":162.1816504101,"27885":157.5553282465,"27886":152.9043375681,"27887":148.2334878602,"27888":143.5473954812,"27889":138.8504570648,"27890":134.1468241155,"27891":129.4403789907,"27892":124.7347124649,"27893":120.0331030693,"27894":115.3384984019,"27895":110.6534985964,"27896":105.9803421349,"27897":101.3208941812,"27898":96.6766376056,"27899":92.0486668667,"27900":87.4376849004,"27901":82.8440031455,"27902":78.2675448138,"27903":73.7078515113,"27904":69.1640932792,"27905":64.6350821175,"27906":60.1192890186,"27907":55.6148645143,"27908":51.1196627038,"27909":46.6312687064,"27910":42.147029439,"27911":37.6640875933,"27912":33.1794186417,"27913":28.6898706756,"27914":24.1922068313,"27915":19.6831500338,"27916":15.1594297427,"27917":10.6178303604,"27918":6.0552409194,"27919":1.4687056483,"27920":-0.0581527677,"27921":0.0,"27922":0.0000000864,"27923":0.0000000783,"27924":0.0000001031,"27925":0.0000000885,"27926":0.0000001257,"27927":0.0000000997,"27928":0.000000151,"27929":0.0000001121,"27930":0.0000001787,"27931":0.0000001258,"27932":0.000000209,"27933":0.0000001406,"27934":0.0000002415,"27935":0.0000001565,"27936":0.0000002761,"27937":0.0000001734,"27938":0.0000003125,"27939":0.000000191,"27940":0.0000003501,"27941":0.0000002092,"27942":0.0000003884,"27943":0.0000002276,"27944":0.0000004269,"27945":0.000000246,"27946":0.0000004649,"27947":0.000000264,"27948":0.0000005015,"27949":0.0000002814,"27950":0.0000005362,"27951":0.0000002976,"27952":0.0000005682,"27953":0.0000003125,"27954":0.0000005969,"27955":0.0000003257,"27956":0.0000006217,"27957":0.000000337,"27958":0.0000006421,"27959":0.0000003461,"27960":0.000000658,"27961":0.0000003529,"27962":0.0000006692,"27963":0.0000003575,"27964":0.0000006757,"27965":0.0000003598,"27966":0.0000006778,"27967":0.00000036,"27968":0.000000676,"27969":0.0000003583,"27970":0.0000006709,"27971":0.000000355,"27972":0.0000006631,"27973":0.0000003505,"27974":0.0000006537,"27975":0.0000003453,"27976":0.0000006435,"27977":0.0000003397,"27978":0.0000006335,"27979":0.0000003343,"27980":0.000000625,"27981":0.0000003297,"27982":0.000000619,"27983":0.0000003264,"27984":0.0000006167,"27985":0.000000325,"27986":0.0000006196,"27987":0.0000003261,"27988":0.0000006289,"27989":0.0000003305,"27990":0.0000006463,"27991":0.0000003389,"27992":0.0000006735,"27993":0.0000003523,"27994":0.0000007129,"27995":0.0000003717,"27996":0.000000767,"27997":0.0000003984,"27998":0.0000008392,"27999":0.000000434,"28000":9.5765669762,"28001":9.6788555684,"28002":9.793572864,"28003":9.9211958475,"28004":10.0621815515,"28005":10.2169636142,"28006":10.3859516052,"28007":10.5694644884,"28008":10.7677073964,"28009":10.9808234489,"28010":11.208922006,"28011":11.4520765639,"28012":11.7103201426,"28013":11.9836417203,"28014":12.2719830025,"28015":12.5752356601,"28016":12.8932390013,"28017":13.2257780887,"28018":13.572582297,"28019":13.9333243152,"28020":14.3076195951,"28021":14.6950262476,"28022":15.0950453861,"28023":15.5071219158,"28024":15.9306457637,"28025":16.3649535439,"28026":16.8093306468,"28027":17.2630137402,"28028":17.7251936656,"28029":18.1950187098,"28030":18.6715982288,"28031":19.1540065967,"28032":19.641287451,"28033":20.1324581999,"28034":20.6265147576,"28035":21.1224364679,"28036":21.6191911783,"28037":22.1157404199,"28038":22.6110446538,"28039":23.1040685373,"28040":23.5937861681,"28041":24.0791862632,"28042":24.559277228,"28043":25.0330920764,"28044":25.4996931617,"28045":25.9581766802,"28046":26.4076769137,"28047":26.8473701789,"28048":27.2764784551,"28049":27.6942726659,"28050":28.1000755935,"28051":28.4932644082,"28052":28.8732728013,"28053":29.2395927113,"28054":29.5917756401,"28055":29.9294335574,"28056":30.2522393968,"28057":30.559927152,"28058":30.8522915821,"28059":31.1291875411,"28060":31.3905289488,"28061":31.6362874225,"28062":31.8664905916,"28063":32.0812201211,"28064":32.2806094673,"28065":32.4648413964,"28066":32.6341452916,"28067":32.7887942798,"28068":32.9291022057,"28069":33.0554204842,"28070":33.1681348583,"28071":33.2676620924,"28072":33.354446627,"28073":33.4289572218,"28074":33.4916836117,"28075":33.543133199,"28076":33.5838278031,"28077":33.6143004878,"28078":33.6350924839,"28079":33.6467502226,"28080":33.6498224941,"28081":33.6448577426,"28082":33.632401509,"28083":33.6129940273,"28084":33.5871679831,"28085":33.5554464366,"28086":33.5183409149,"28087":33.4763496734,"28088":33.4299561274,"28089":33.3796274514,"28090":33.325813345,"28091":33.2689449606,"28092":33.20943399,"28093":33.1476719034,"28094":33.0840293365,"28095":33.0188556187,"28096":32.9524784369,"28097":32.8852036261,"28098":32.8173150827,"28099":32.7490747906,"28100":32.6807229554,"28101":32.6124782372,"28102":32.5445380772,"28103":32.477079109,"28104":32.4102576494,"28105":32.344210261,"28106":32.2790543801,"28107":32.2148890037,"28108":32.1517954293,"28109":32.0898380409,"28110":32.0290651364,"28111":31.9695097888,"28112":31.9111907363,"28113":31.8541132811,"28114":31.7982701789,"28115":31.7436425264,"28116":31.6902006578,"28117":31.6379050536,"28118":31.5867072569,"28119":31.5365507911,"28120":31.487372075,"28121":31.4391013287,"28122":31.3916634674,"28123":31.3449789778,"28124":31.2989647734,"28125":31.2535350242,"28126":31.2086019593,"28127":31.1640766365,"28128":31.1198696788,"28129":31.0758919733,"28130":31.0320553315,"28131":30.9882731082,"28132":30.9444607786,"28133":30.9005364708,"28134":30.8564214541,"28135":30.8120405813,"28136":30.7673226859,"28137":30.7222009322,"28138":30.6766131199,"28139":30.6305019434,"28140":30.5838152049,"28141":30.5365059841,"28142":30.4885327639,"28143":30.4398595134,"28144":30.390455731,"28145":30.3402964462,"28146":30.2893621843,"28147":30.2376388945,"28148":30.1851178429,"28149":30.1317954729,"28150":30.077673235,"28151":30.0227573872,"28152":29.9670587692,"28153":29.9105925516,"28154":29.8533779635,"28155":29.7954379997,"28156":29.7367991099,"28157":29.6774908734,"28158":29.6175456607,"28159":29.5569982842,"28160":29.4958856417,"28161":29.4342463543,"28162":29.3721204007,"28163":29.309548752,"28164":29.2465730077,"28165":29.1832350366,"28166":29.1195766243,"28167":29.0556391301,"28168":28.9914631552,"28169":28.9270882246,"28170":28.862552485,"28171":28.7978924205,"28172":28.7331425879,"28173":28.6683353736,"28174":28.6035007736,"28175":28.5386661977,"28176":28.4738563001,"28177":28.4090928359,"28178":28.3443945461,"28179":28.27977707,"28180":28.2152528869,"28181":28.150831286,"28182":28.0865183654,"28183":28.0223170591,"28184":27.9582271918,"28185":27.8942455605,"28186":27.8303660424,"28187":27.7665797265,"28188":27.7028750693,"28189":27.639238071,"28190":27.5756524715,"28191":27.5120999639,"28192":27.4485604231,"28193":27.3850121472,"28194":27.3214321096,"28195":27.257796219,"28196":27.1940795845,"28197":27.1302567841,"28198":27.0663021334,"28199":27.0021899517,"28200":26.9378948241,"28201":26.8733918561,"28202":26.8086569196,"28203":26.7436668863,"28204":26.6783998496,"28205":26.6128353298,"28206":26.5469544636,"28207":26.480740175,"28208":26.4141773275,"28209":26.3472528554,"28210":26.2799558748,"28211":26.2122777724,"28212":26.1442122737,"28213":26.0757554876,"28214":26.0069059309,"28215":25.9376645303,"28216":25.8680346036,"28217":25.7980218207,"28218":25.7276341451,"28219":25.6568817563,"28220":25.5857769551,"28221":25.5143340525,"28222":25.4425692426,"28223":25.3705004625,"28224":25.2981472392,"28225":25.225530525,"28226":25.1526725235,"28227":25.0795965066,"28228":25.0063266251,"28229":24.9328877131,"28230":24.8593050876,"28231":24.7856043459,"28232":24.7118111605,"28233":24.6379510737,"28234":24.5640492924,"28235":24.4901304849,"28236":24.4162185806,"28237":24.3423365727,"28238":24.2685063268,"28239":24.1947483946,"28240":24.1210818345,"28241":24.0475240395,"28242":23.9740905743,"28243":23.9007950206,"28244":23.8276488338,"28245":23.7546612091,"28246":23.6818389604,"28247":23.6091864109,"28248":23.5367052964,"28249":23.4643946836,"28250":23.3922509006,"28251":23.3202674838,"28252":23.2484351394,"28253":23.1767417208,"28254":23.1051722218,"28255":23.0337087866,"28256":22.9623307362,"28257":22.8910146115,"28258":22.8197342332,"28259":22.7484607781,"28260":22.6771628723,"28261":22.6058067001,"28262":22.5343561284,"28263":22.4627728467,"28264":22.3910165206,"28265":22.3190449595,"28266":22.2468142956,"28267":22.1742791757,"28268":22.1013929614,"28269":22.028107939,"28270":21.954375536,"28271":21.8801465436,"28272":21.8053713425,"28273":21.7300001317,"28274":21.6539831572,"28275":21.5772709395,"28276":21.4998144983,"28277":21.4215655723,"28278":21.3424768324,"28279":21.2625020869,"28280":21.1815964769,"28281":21.0997166607,"28282":21.0168209861,"28283":20.9328696483,"28284":20.8478248341,"28285":20.76165085,"28286":20.6743142347,"28287":20.5857838546,"28288":20.4960309831,"28289":20.4050293624,"28290":20.3127552488,"28291":20.2191874417,"28292":20.1243072963,"28293":20.0280987215,"28294":19.9305481626,"28295":19.8316445716,"28296":19.731379364,"28297":19.6297463653,"28298":19.526741747,"28299":19.4223639542,"28300":19.3166136267,"28301":19.2094935135,"28302":19.1010083833,"28303":18.9911649328,"28304":18.8799716924,"28305":18.7674389326,"28306":18.653578571,"28307":18.5384040819,"28308":18.4219304085,"28309":18.30417388,"28310":18.1851521334,"28311":18.0648840409,"28312":17.9433896437,"28313":17.8206900929,"28314":17.6968075963,"28315":17.5717653741,"28316":17.4455876201,"28317":17.3182994714,"28318":17.1899269843,"28319":17.0604971177,"28320":16.9300377222,"28321":16.7976102589,"28322":16.6619395155,"28323":16.5223280628,"28324":16.3789730883,"28325":16.2319153592,"28326":16.0813526383,"28327":15.9273138972,"28328":15.770007359,"28329":15.6094791316,"28330":15.4459436446,"28331":15.279463326,"28332":15.1102574285,"28333":14.9384032382,"28334":14.7641234283,"28335":14.5875084982,"28336":14.4087830604,"28337":14.2280490431,"28338":14.0455314572,"28339":13.8613417659,"28340":13.6757038022,"28341":13.4887365942,"28342":13.3006612094,"28343":13.1116022286,"28344":12.9217763806,"28345":12.7313117778,"28346":12.5404192777,"28347":12.3492285286,"28348":12.1579430479,"28349":11.9666920832,"28350":11.7756704307,"28351":11.5850050888,"28352":11.394880861,"28353":11.2054207653,"28354":11.0167984687,"28355":10.829131419,"28356":10.642581148,"28357":10.4572581058,"28358":10.2733108479,"28359":10.0908415791,"28360":9.9099852053,"28361":9.7308346306,"28362":9.5535106131,"28363":9.378095901,"28364":9.2046967851,"28365":9.0333852084,"28366":8.8642528528,"28367":8.6973604123,"28368":8.5327849959,"28369":8.3705758071,"28370":8.2107955878,"28371":8.0534820069,"28372":7.8986838086,"28373":7.7464272695,"28374":7.5967476588,"28375":7.4496601786,"28376":7.3051872867,"28377":7.1633335904,"28378":7.0241095269,"28379":6.887509734,"28380":6.7535335321,"28381":6.6221663423,"28382":6.493397368,"28383":6.3672036771,"28384":6.2435654338,"28385":6.1224523059,"28386":6.0038365576,"28387":5.8876814789,"28388":5.7739526145,"28389":5.6626079484,"28390":5.5536075082,"28391":5.4469050708,"28392":5.3424563523,"28393":5.2402120278,"28394":5.1401246903,"28395":5.0421430039,"28396":4.9462175911,"28397":4.8522961608,"28398":4.7603284629,"28399":4.670262253,"28400":4.5820474338,"28401":4.4956327371,"28402":4.4109691566,"28403":4.3280072412,"28404":4.2466999106,"28405":4.1670002694,"28406":4.0888638848,"28407":4.0122470466,"28408":3.9371085599,"28409":3.8634083939,"28410":3.7911090693,"28411":3.7201746107,"28412":3.6505715842,"28413":3.582268312,"28414":3.5152356049,"28415":3.4494461958,"28416":3.3848752088,"28417":3.3214997748,"28418":3.2592996158,"28419":3.1982557031,"28420":3.1383550155,"28421":3.0795784054,"28422":3.0219459468,"28423":2.965520121,"28424":2.9103678367,"28425":2.8565471172,"28426":2.8041076049,"28427":2.7530912486,"28428":2.7035329171,"28429":2.6554609908,"28430":2.6088979205,"28431":2.5638607551,"28432":2.5203616406,"28433":2.4784082882,"28434":2.4380044134,"28435":2.3991501457,"28436":2.36184241,"28437":2.3260752796,"28438":2.2918403013,"28439":2.2591267931,"28440":2.2279221155,"28441":2.1982119159,"28442":2.1699803482,"28443":2.1432102672,"28444":2.1178833993,"28445":2.0939804901,"28446":2.0714814296,"28447":2.0503653573,"28448":2.0306107472,"28449":2.0121954736,"28450":1.9950968611,"28451":1.9792917179,"28452":1.9647563556,"28453":1.9514665957,"28454":1.9393977653,"28455":1.9285246842,"28456":1.9188216427,"28457":1.9102623749,"28458":1.9028200271,"28459":1.8964671228,"28460":1.8911755285,"28461":1.8869164183,"28462":1.8836602416,"28463":1.8813766948,"28464":1.8800346976,"28465":1.8796023755,"28466":1.8800470512,"28467":1.8813352432,"28468":1.883432675,"28469":1.8863042949,"28470":1.8899143066,"28471":1.8942262113,"28472":1.8992028623,"28473":1.9048065309,"28474":1.9109989853,"28475":1.9177415801,"28476":1.9249953582,"28477":1.9327211629,"28478":1.9408797598,"28479":1.9494319683,"28480":1.9583388008,"28481":1.967561608,"28482":1.9770622308,"28483":1.986803155,"28484":1.9967476685,"28485":2.0068600196,"28486":2.0171055737,"28487":2.0274509677,"28488":2.0378642597,"28489":2.0483150726,"28490":2.0587747296,"28491":2.0692163808,"28492":2.0796151182,"28493":2.0899480793,"28494":2.1001945357,"28495":2.1103359684,"28496":2.1203561263,"28497":2.130241069,"28498":2.1399791917,"28499":2.1495612331,"28500":2.1589802654,"28501":2.1682316663,"28502":2.1773130739,"28503":2.186224323,"28504":2.1949673667,"28505":2.2035461797,"28506":2.2119666483,"28507":2.2202364451,"28508":2.2283648913,"28509":2.236362807,"28510":2.2442423513,"28511":2.2520168538,"28512":2.2597006384,"28513":2.2673088419,"28514":2.2748572278,"28515":2.2823619982,"28516":2.2898396047,"28517":2.2973065595,"28518":2.3047792498,"28519":2.3122737547,"28520":2.3198056683,"28521":2.3273899283,"28522":2.3350406537,"28523":2.3427709899,"28524":2.3505929651,"28525":2.3585173568,"28526":2.3665535708,"28527":2.3747095326,"28528":2.3829915916,"28529":2.3914044398,"28530":2.3999510445,"28531":2.4086325954,"28532":2.4174484667,"28533":2.4263961944,"28534":2.4354714682,"28535":2.4446681385,"28536":2.4539782391,"28537":2.4633920231,"28538":2.4728980145,"28539":2.4824830736,"28540":2.4921324753,"28541":2.5018300016,"28542":2.511558046,"28543":2.5212977301,"28544":2.5310290309,"28545":2.54073092,"28546":2.5503815103,"28547":2.5599582134,"28548":2.5694379034,"28549":2.578797088,"28550":2.5880120853,"28551":2.5970592046,"28552":2.6059149308,"28553":2.6145561107,"28554":2.6229601399,"28555":2.6311051491,"28556":2.638970188,"28557":2.6465354065,"28558":2.6537822302,"28559":2.6606935297,"28560":2.6672537829,"28561":2.6734492269,"28562":2.6792680006,"28563":2.6847002747,"28564":2.6897383689,"28565":2.6943768547,"28566":2.6986126433,"28567":2.7024450565,"28568":2.7058758806,"28569":2.7089094029,"28570":2.7115524288,"28571":2.7138142807,"28572":2.7157067768,"28573":2.7172441916,"28574":2.7184431955,"28575":2.7193227772,"28576":2.7199041452,"28577":2.7202106129,"28578":2.7202674651,"28579":2.7201018086,"28580":2.7197424063,"28581":2.7192194978,"28582":2.7185646067,"28583":2.7178103354,"28584":2.7169901511,"28585":2.7161381615,"28586":2.7152888857,"28587":2.7144770175,"28588":2.7137371874,"28589":2.7131037218,"28590":2.7126104024,"28591":2.7122902278,"28592":2.7121751788,"28593":2.7122959886,"28594":2.7126819204,"28595":2.7133605531,"28596":2.7143575777,"28597":2.7156966039,"28598":2.7173989806,"28599":2.7194836295,"28600":2.721966894,"28601":2.7248624035,"28602":2.7281809546,"28603":2.7319304099,"28604":2.7361156144,"28605":2.7407383304,"28606":2.7457971914,"28607":2.7512876744,"28608":2.7572020918,"28609":2.7635296023,"28610":2.7702562405,"28611":2.7773649657,"28612":2.7848357286,"28613":2.7926455567,"28614":2.8007686571,"28615":2.8091765361,"28616":2.8178381356,"28617":2.8267199852,"28618":2.835786369,"28619":2.844999507,"28620":2.8543197492,"28621":2.8637057825,"28622":2.8731148486,"28623":2.8825029721,"28624":2.8918251981,"28625":2.9010358367,"28626":2.9100887159,"28627":2.918937438,"28628":2.9275356415,"28629":2.9358372652,"28630":2.9437968138,"28631":2.9513696231,"28632":2.9585121241,"28633":2.9651821036,"28634":2.9713389607,"28635":2.9769439568,"28636":2.981960458,"28637":2.9863541686,"28638":2.9900933537,"28639":2.9931490496,"28640":2.9954952613,"28641":2.9971091436,"28642":2.9979711675,"28643":2.9980652679,"28644":2.9973789735,"28645":2.9959035157,"28646":2.9936339187,"28647":2.9905690664,"28648":2.9867117481,"28649":2.9820686818,"28650":2.9766505139,"28651":2.9704717963,"28652":2.9635509407,"28653":2.9559101493,"28654":2.9475753236,"28655":2.9385759513,"28656":2.9289449713,"28657":2.9187186191,"28658":2.9079362527,"28659":2.8966401597,"28660":2.8848753489,"28661":2.8726893253,"28662":2.8601318516,"28663":2.8472546984,"28664":2.8341113823,"28665":2.8207568969,"28666":2.8072474362,"28667":2.7936401123,"28668":2.7799926712,"28669":2.7663632061,"28670":2.7528098713,"28671":2.739390598,"28672":2.7261628144,"28673":2.7131831701,"28674":2.7005072678,"28675":2.6881894034,"28676":2.6762823148,"28677":2.664836942,"28678":2.6539021982,"28679":2.6435247544,"28680":2.6337488367,"28681":2.6246160382,"28682":2.6161651452,"28683":2.6084319798,"28684":2.6014492568,"28685":2.5952464578,"28686":2.5898497204,"28687":2.5852817453,"28688":2.5815617181,"28689":2.5787052487,"28690":2.5767243265,"28691":2.5756272923,"28692":2.5754188259,"28693":2.5760999497,"28694":2.5776680478,"28695":2.5801169011,"28696":2.5834367373,"28697":2.5876142951,"28698":2.5926329041,"28699":2.5984725784,"28700":2.6051101242,"28701":2.6125192609,"28702":2.6206707559,"28703":2.6295325716,"28704":2.6390700432,"28705":2.6492462393,"28706":2.6600223746,"28707":2.6713580872,"28708":2.6832116389,"28709":2.6955401178,"28710":2.7082996527,"28711":2.7214456343,"28712":2.7349329455,"28713":2.7487161962,"28714":2.7627499638,"28715":2.7769890366,"28716":2.7913886594,"28717":2.8059047798,"28718":2.8204942928,"28719":2.8351152834,"28720":2.8497272649,"28721":2.8642914112,"28722":2.8787707817,"28723":2.8931305376,"28724":2.9073381469,"28725":2.9213635779,"28726":2.9351794782,"28727":2.9487613396,"28728":2.9620876453,"28729":2.9751400002,"28730":2.987903242,"28731":3.0003655323,"28732":3.0125184267,"28733":3.0243569241,"28734":3.0358794927,"28735":3.0470880749,"28736":3.0579880688,"28737":3.0685882871,"28738":3.078900894,"28739":3.08894132,"28740":3.0987281551,"28741":3.1082830218,"28742":3.1176304281,"28743":3.1267976026,"28744":3.1358143113,"28745":3.1447126602,"28746":3.153526882,"28747":3.1622931117,"28748":3.1710491501,"28749":3.1798342192,"28750":3.1886887102,"28751":3.1976539254,"28752":3.2067718181,"28753":3.2160847293,"28754":3.2256351261,"28755":3.2354653408,"28756":3.245617315,"28757":3.2561323477,"28758":3.2670508512,"28759":3.2784121149,"28760":3.2902540785,"28761":3.3026131163,"28762":3.3155238332,"28763":3.3290188727,"28764":3.3431287395,"28765":3.3578816353,"28766":3.3733033099,"28767":3.3894169271,"28768":3.4062429458,"28769":3.4237990171,"28770":3.4420998969,"28771":3.4611573743,"28772":3.4809802151,"28773":3.5015741215,"28774":3.5229417067,"28775":3.5450824847,"28776":3.5679928746,"28777":3.5916662198,"28778":3.6160928208,"28779":3.6412599827,"28780":3.6671520751,"28781":3.6937506061,"28782":3.7210343087,"28783":3.7489792401,"28784":3.7775588927,"28785":3.8067443181,"28786":3.8365042618,"28787":3.8668053102,"28788":3.8976120482,"28789":3.9288872288,"28790":3.9605919521,"28791":3.9926858557,"28792":4.0251273149,"28793":4.0578736526,"28794":4.0908813581,"28795":4.1241063154,"28796":4.1575040388,"28797":4.1910299164,"28798":4.2246394596,"28799":4.2582885591,"28800":4.2919337444,"28801":4.3255324471,"28802":4.359043266,"28803":4.3924262325,"28804":4.4256430747,"28805":4.4586574786,"28806":4.4914353436,"28807":4.5239450317,"28808":4.5561576068,"28809":4.5880470629,"28810":4.619590538,"28811":4.6507685122,"28812":4.6815649872,"28813":4.7119676447,"28814":4.7419679822,"28815":4.7715614228,"28816":4.8007473987,"28817":4.8295294042,"28818":4.8579150193,"28819":4.8859159001,"28820":4.913547736,"28821":4.9408301727,"28822":4.9677867008,"28823":4.994444509,"28824":5.0208343027,"28825":5.0469900886,"28826":5.0729489264,"28827":5.0987506484,"28828":5.1244375495,"28829":5.1500540492,"28830":5.1756463288,"28831":5.2012619461,"28832":5.2269494312,"28833":5.2527578666,"28834":5.2787364559,"28835":5.3049340846,"28836":5.3313988774,"28837":5.3581777565,"28838":5.3853160042,"28839":5.4128568362,"28840":5.4408409877,"28841":5.4693063178,"28842":5.4982874364,"28843":5.5278153563,"28844":5.5579171758,"28845":5.5886157935,"28846":5.6199296592,"28847":5.6518725638,"28848":5.6844534692,"28849":5.7176763809,"28850":5.7515402651,"28851":5.786039009,"28852":5.8211614275,"28853":5.8568913143,"28854":5.8932075368,"28855":5.9300841756,"28856":5.9674907046,"28857":6.0053922123,"28858":6.0437496606,"28859":6.082520179,"28860":6.121657392,"28861":6.1611117755,"28862":6.2008310404,"28863":6.2407605391,"28864":6.2808436915,"28865":6.3210224276,"28866":6.3612376427,"28867":6.4014296615,"28868":6.4415387085,"28869":6.4815053804,"28870":6.5212711183,"28871":6.5607786749,"28872":6.5999725758,"28873":6.638799571,"28874":6.6772090731,"28875":6.7151535819,"28876":6.7525890903,"28877":6.7894754718,"28878":6.8257768453,"28879":6.8614619165,"28880":6.8965042932,"28881":6.9308827726,"28882":6.9645815991,"28883":6.9975906903,"28884":7.0299058287,"28885":7.0615288188,"28886":7.0924676058,"28887":7.1227363553,"28888":7.1523554911,"28889":7.1813516905,"28890":7.2097578334,"28891":7.2376129051,"28892":7.2649618501,"28893":7.2918553754,"28894":7.3183497027,"28895":7.3445062677,"28896":7.3703913654,"28897":7.3960757423,"28898":7.4216341336,"28899":7.4471447474,"28900":7.4726886958,"28901":7.4983493748,"28902":7.5242117962,"28903":7.5503618702,"28904":7.5768856499,"28905":7.6038685306,"28906":7.6313944213,"28907":7.6595448815,"28908":7.6883982425,"28909":7.7180287056,"28910":7.7485054394,"28911":7.7798916704,"28912":7.8122437888,"28913":7.8456104646,"28914":7.8800317973,"28915":7.9155384959,"28916":7.9521511105,"28917":7.9898793136,"28918":8.0287212532,"28919":8.0686629738,"28920":8.1099100063,"28921":8.1527379169,"28922":8.1972168232,"28923":8.2433006688,"28924":8.2909261177,"28925":8.3400183038,"28926":8.3904895098,"28927":8.4422397593,"28928":8.4951567418,"28929":8.5491164246,"28930":8.6039831977,"28931":8.6596107134,"28932":8.7158422017,"28933":8.7725115387,"28934":8.8294437163,"28935":8.8864561241,"28936":8.9433591498,"28937":8.9999576536,"28938":9.05605167,"28939":9.1114380462,"28940":9.1659112113,"28941":9.2192649464,"28942":9.2712931846,"28943":9.3217918766,"28944":9.3705597842,"28945":9.4174004045,"28946":9.46212272,"28947":9.5045431449,"28948":9.5444861985,"28949":9.5817864391,"28950":9.6162890309,"28951":9.6478516343,"28952":9.6763448432,"28953":9.7016540046,"28954":9.7236795084,"28955":9.7423385146,"28956":9.7575650849,"28957":9.7693118005,"28958":9.7775497297,"28959":9.7822699255,"28960":9.7834832297,"28961":9.7812216416,"28962":9.7755379639,"28963":9.7665070385,"28964":9.7542252413,"28965":9.7388115833,"28966":9.7204070633,"28967":9.6991756335,"28968":9.6753034188,"28969":9.6489995465,"28970":9.6204952388,"28971":9.5900445054,"28972":9.5579231141,"28973":9.5244291429,"28974":9.48988183,"28975":9.4546219802,"28976":9.4190106922,"28977":9.3834296133,"28978":9.3482795369,"28979":9.3139804985,"28980":9.2809702348,"28981":9.2497041126,"28982":9.2206534385,"28983":9.1943052155,"28984":9.17116029,"28985":9.1517329334,"28986":9.1365488157,"28987":9.1261444121,"28988":9.1210647953,"28989":9.1218628745,"28990":9.1290970006,"28991":9.1433300534,"28992":9.1651268593,"28993":9.1950531509,"28994":9.233672803,"28995":9.2815466988,"28996":9.3392297957,"28997":9.4072699437,"28998":9.4862047966,"28999":9.5765606401,"29000":66.3289190251,"29001":66.3289164115,"29002":66.3289145929,"29003":66.3289117345,"29004":66.3289097436,"29005":66.3289065835,"29006":66.3289043805,"29007":66.3285596167,"29008":66.3271043781,"29009":66.323672019,"29010":66.317469228,"29011":66.3077777444,"29012":66.2939421627,"29013":66.2753622963,"29014":66.2514862845,"29015":66.2218049711,"29016":66.1858472477,"29017":66.1431762675,"29018":66.0933863969,"29019":66.0361007987,"29020":65.9709695626,"29021":65.8976682988,"29022":65.8158971225,"29023":65.7253799685,"29024":65.6258641784,"29025":65.5171203113,"29026":65.3989421336,"29027":65.2711467481,"29028":65.133574827,"29029":64.9860909179,"29030":64.8285837918,"29031":64.6609668108,"29032":64.4831782907,"29033":64.2951818377,"29034":64.096966644,"29035":63.8885477224,"29036":63.6699660704,"29037":63.4412887486,"29038":63.2026088653,"29039":62.9540454583,"29040":62.6957432685,"29041":62.427872399,"29042":62.1506278583,"29043":61.8642289842,"29044":61.56891875,"29045":61.2649629535,"29046":60.9526492912,"29047":60.6322863224,"29048":60.3042023274,"29049":59.9687440675,"29050":59.6262754516,"29051":59.2771761206,"29052":58.9218399557,"29053":58.5606735216,"29054":58.1940944545,"29055":57.8225298057,"29056":57.4464143502,"29057":57.066188874,"29058":56.6822984483,"29059":56.295190704,"29060":55.9053141161,"29061":55.5131163092,"29062":55.1190423949,"29063":54.7235333498,"29064":54.3270244446,"29065":53.9299437328,"29066":53.5327106068,"29067":53.1357344289,"29068":52.7394132447,"29069":52.344132583,"29070":51.950264349,"29071":51.5581658134,"29072":51.1681787021,"29073":50.7806283882,"29074":50.3958231873,"29075":50.0140537585,"29076":49.6355926098,"29077":49.2606937072,"29078":48.8895921871,"29079":48.5225041685,"29080":48.1596266633,"29081":47.8011375809,"29082":47.4471958232,"29083":47.0979414662,"29084":46.7534960231,"29085":46.4139627838,"29086":46.0794272266,"29087":45.7499574949,"29088":45.4256049349,"29089":45.1064046878,"29090":44.7923763309,"29091":44.4835245609,"29092":44.1798399163,"29093":43.8812995297,"29094":43.5878679071,"29095":43.2994977281,"29096":43.016130661,"29097":42.7376981889,"29098":42.4641224411,"29099":42.1953170264,"29100":41.9311878624,"29101":41.6716339981,"29102":41.4165484254,"29103":41.1658188767,"29104":40.919328604,"29105":40.6769571378,"29106":40.4385810231,"29107":40.2040745293,"29108":39.9733103325,"29109":39.7461601679,"29110":39.5224954512,"29111":39.3021878675,"29112":39.0851099245,"29113":38.871135458,"29114":38.6601400768,"29115":38.4520015589,"29116":38.2466002134,"29117":38.0438192162,"29118":37.8435449182,"29119":37.6456671251,"29120":37.4500793479,"29121":37.2566790251,"29122":37.0653677141,"29123":36.8760512537,"29124":36.6886398979,"29125":36.50304842,"29126":36.3191961896,"29127":36.1370072211,"29128":35.9564101975,"29129":35.7773384667,"29130":35.599730016,"29131":35.4235274215,"29132":35.2486777773,"29133":35.0751326038,"29134":34.9028477377,"29135":34.7317832045,"29136":34.5619030751,"29137":34.3931753085,"29138":34.225571582,"29139":34.0590671099,"29140":33.8936404535,"29141":33.7292733224,"29142":33.5659503699,"29143":33.4036589832,"29144":33.2423890705,"29145":33.0821328461,"29146":32.9228846141,"29147":32.7646405538,"29148":32.6073985064,"29149":32.4511577649,"29150":32.295918868,"29151":32.1416834001,"29152":31.9884537962,"29153":31.8362331555,"29154":31.6850250617,"29155":31.5348334125,"29156":31.3856622594,"29157":31.2375156559,"29158":31.0903975174,"29159":30.9443114922,"29160":30.7992608428,"29161":30.6552483404,"29162":30.5122761695,"29163":30.3703458462,"29164":30.2294581474,"29165":30.0896130524,"29166":29.9508096968,"29167":29.8130463373,"29168":29.6763203291,"29169":29.5406281139,"29170":29.4059652187,"29171":29.2723262658,"29172":29.1397049917,"29173":29.0080942768,"29174":28.8774861822,"29175":28.7478719966,"29176":28.6192422893,"29177":28.4915869705,"29178":28.364895358,"29179":28.2391562485,"29180":28.1143579939,"29181":27.9904885809,"29182":27.8675357137,"29183":27.7454868982,"29184":27.6243295279,"29185":27.5040509699,"29186":27.38463865,"29187":27.2660801368,"29188":27.1483632242,"29189":27.03147601,"29190":26.9154069717,"29191":26.8001450382,"29192":26.6856796562,"29193":26.5720008518,"29194":26.4590992858,"29195":26.3469663032,"29196":26.2355939754,"29197":26.1249751361,"29198":26.01510341,"29199":25.9059732334,"29200":25.7975798682,"29201":25.6899194085,"29202":25.5829887787,"29203":25.4767857256,"29204":25.3713088027,"29205":25.2665573479,"29206":25.1625314542,"29207":25.059231935,"29208":24.9566602829,"29209":24.8548186235,"29210":24.7537096642,"29211":24.6533366392,"29212":24.5537032501,"29213":24.4548136034,"29214":24.3566721466,"29215":24.2592836005,"29216":24.162652892,"29217":24.0667850848,"29218":23.9716853111,"29219":23.877358703,"29220":23.7838103256,"29221":23.6910451114,"29222":23.5990677969,"29223":23.5078828624,"29224":23.417494474,"29225":23.3279064304,"29226":23.2391221126,"29227":23.1511444388,"29228":23.0639758236,"29229":22.9776181421,"29230":22.8920726992,"29231":22.807340205,"29232":22.7234207543,"29233":22.6403138131,"29234":22.5580182102,"29235":22.4765321347,"29236":22.3958531389,"29237":22.3159781474,"29238":22.2369034714,"29239":22.1586248289,"29240":22.0811373695,"29241":22.0044357053,"29242":21.9285139461,"29243":21.8533657394,"29244":21.7789843155,"29245":21.7053625357,"29246":21.6324929454,"29247":21.5603678302,"29248":21.4889792755,"29249":21.4183192291,"29250":21.3483795655,"29251":21.2791521537,"29252":21.2106289254,"29253":21.1428019454,"29254":21.0756634824,"29255":21.0092060808,"29256":20.9434226315,"29257":20.8783064439,"29258":20.8138513157,"29259":20.7500516017,"29260":20.6869022818,"29261":20.6243990255,"29262":20.5625382548,"29263":20.5013172041,"29264":20.440733976,"29265":20.380787594,"29266":20.3214780513,"29267":20.2628063542,"29268":20.2047745614,"29269":20.1473858184,"29270":20.0906443861,"29271":20.0345556637,"29272":19.9791262069,"29273":19.9243637389,"29274":19.8702771563,"29275":19.8168765285,"29276":19.7641730915,"29277":19.7121792349,"29278":19.6609084835,"29279":19.610375473,"29280":19.5605959195,"29281":19.5115865841,"29282":19.4633652318,"29283":19.4159505856,"29284":19.3693622756,"29285":19.3236207843,"29286":19.2787473877,"29287":19.2347640927,"29288":19.1916935717,"29289":19.1495590943,"29290":19.108384457,"29291":19.0681939114,"29292":19.0290120905,"29293":18.9908639352,"29294":18.9537746194,"29295":18.9177694765,"29296":18.8828739253,"29297":18.8491133981,"29298":18.8165132691,"29299":18.7850987857,"29300":18.7548950009,"29301":18.7259267089,"29302":18.6982183832,"29303":18.6717941172,"29304":18.6466775685,"29305":18.6228919063,"29306":18.6004597615,"29307":18.5794031817,"29308":18.5597435879,"29309":18.5415017359,"29310":18.5246976809,"29311":18.5093507448,"29312":18.4954794875,"29313":18.4831016809,"29314":18.4722342859,"29315":18.4628934321,"29316":18.4550944002,"29317":18.4488516069,"29318":18.4441785913,"29319":18.441088004,"29320":18.4395915978,"29321":18.4391824759,"29322":18.4391519658,"29323":18.4390796043,"29324":18.4390188303,"29325":18.4389359154,"29326":18.4388787316,"29327":18.4387989916,"29328":18.4387441732,"29329":18.4386678726,"29330":18.4386154367,"29331":18.4385426379,"29332":18.4384926206,"29333":18.4384233593,"29334":18.4383757837,"29335":18.4383100747,"29336":18.4382649499,"29337":18.4382027878,"29338":18.438160109,"29339":18.438101469,"29340":18.438061218,"29341":18.4380060568,"29342":18.4379682027,"29343":18.4379164595,"29344":18.4378809595,"29345":18.4378325577,"29346":18.4377993579,"29347":18.4377542064,"29348":18.4377232434,"29349":18.4376812385,"29350":18.4376524399,"29351":18.4376134668,"29352":18.437586753,"29353":18.4375506882,"29354":18.4375259734,"29355":18.4374926859,"29356":18.4374698794,"29357":18.437439233,"29358":18.4374182406,"29359":18.4373900955,"29360":18.4373708205,"29361":18.4373450349,"29362":18.4373273795,"29363":18.4373038113,"29364":18.4372876775,"29365":18.4372661856,"29366":18.4372514761,"29367":18.4372319217,"29368":18.437218541,"29369":18.4372007888,"29370":18.4371886436,"29371":18.4371725625,"29372":18.4371615627,"29373":18.4371470269,"29374":18.437137086,"29375":18.4371239751,"29376":18.4371150105,"29377":18.4371032105,"29378":18.4370951437,"29379":18.437084547,"29380":18.4370773043,"29381":18.4370678098,"29382":18.4370613219,"29383":18.4370528353,"29384":18.4370470374,"29385":18.4370394711,"29386":18.4370343032,"29387":18.437027576,"29388":18.4370229824,"29389":18.4370170193,"29390":18.4370129487,"29391":18.437007681,"29392":18.4370040863,"29393":18.4369994508,"29394":18.4369962888,"29395":18.4369922277,"29396":18.4369894588,"29397":18.4369859196,"29398":18.4369835077,"29399":18.4369804422,"29400":18.4369783546,"29401":18.436975719,"29402":18.4369739256,"29403":18.4369716802,"29404":18.4369701538,"29405":18.4369682623,"29406":18.436966978,"29407":18.436965419,"29408":18.4369643629,"29409":18.4369630944,"29410":18.4369622363,"29411":18.4369612301,"29412":18.4369605516,"29413":18.4369597826,"29414":18.4369592664,"29415":18.4369587117,"29416":18.4369583421,"29417":18.4369579806,"29418":18.4369586793,"29419":18.4369592321,"29420":18.4369696515,"29421":18.4369773192,"29422":18.4370790091,"29423":18.4375027629,"29424":18.4385028176,"29425":18.4403190468,"29426":18.4431766171,"29427":18.4472863292,"29428":18.4528448616,"29429":18.4600350669,"29430":18.4690262842,"29431":18.4799746714,"29432":18.4930235537,"29433":18.5083037843,"29434":18.5259341158,"29435":18.5460215796,"29436":18.5686618703,"29437":18.5939397349,"29438":18.6219293626,"29439":18.6526947758,"29440":18.6862902198,"29441":18.7227605496,"29442":18.7621416139,"29443":18.8044606337,"29444":18.8497365767,"29445":18.8979805247,"29446":18.9491960356,"29447":19.0033794973,"29448":19.0605204753,"29449":19.1206020523,"29450":19.1836011605,"29451":19.2494889063,"29452":19.3182308871,"29453":19.3897875008,"29454":19.4641142483,"29455":19.5411620281,"29456":19.6208774249,"29457":19.7032029903,"29458":19.7880775187,"29459":19.8754363156,"29460":19.9652114611,"29461":20.0573320672,"29462":20.1517245306,"29463":20.2483127797,"29464":20.3470185176,"29465":20.4477614599,"29466":20.5504595685,"29467":20.6550292813,"29468":20.7613857372,"29469":20.8694429974,"29470":20.9791142623,"29471":21.0903120849,"29472":21.202948579,"29473":21.3169356232,"29474":21.4321850611,"29475":21.5486088957,"29476":21.666119479,"29477":21.7846296963,"29478":21.9040531444,"29479":22.0243043038,"29480":22.1452987044,"29481":22.2669530838,"29482":22.3891855384,"29483":22.5119156668,"29484":22.6350647044,"29485":22.7585556492,"29486":22.8823133789,"29487":23.006264758,"29488":23.1303387349,"29489":23.2544664287,"29490":23.3785812054,"29491":23.5026187435,"29492":23.6265170882,"29493":23.7502166944,"29494":23.8736604587,"29495":23.9967937402,"29496":24.1195643696,"29497":24.2419226478,"29498":24.3638213333,"29499":24.4852156192,"29500":24.6060630997,"29501":24.7263237274,"29502":24.8459597604,"29503":24.9649357013,"29504":25.0832182278,"29505":25.2007761156,"29506":25.3175801548,"29507":25.4336030602,"29508":25.5488193761,"29509":25.6632053768,"29510":25.7767389638,"29511":25.8893995595,"29512":26.0011680001,"29513":26.1120264268,"29514":26.2219581769,"29515":26.3309476759,"29516":26.4389803312,"29517":26.546042428,"29518":26.6521210286,"29519":26.7572038753,"29520":26.8612792983,"29521":26.9643361284,"29522":27.0663636162,"29523":27.1673513568,"29524":27.2672892223,"29525":27.3661673011,"29526":27.4639758446,"29527":27.5607052224,"29528":27.6563458854,"29529":27.7508883365,"29530":27.8443231113,"29531":27.9366407649,"29532":28.0278318694,"29533":28.1178870175,"29534":28.2067968354,"29535":28.294552003,"29536":28.3811432814,"29537":28.4665615478,"29538":28.5507978367,"29539":28.6338433876,"29540":28.7156896978,"29541":28.7963285812,"29542":28.8757522304,"29543":28.9539532838,"29544":29.0309248951,"29545":29.1066608055,"29546":29.1811554176,"29547":29.2544038707,"29548":29.3264021157,"29549":29.3971469901,"29550":29.4666362915,"29551":29.534868849,"29552":29.6018445919,"29553":29.6675646153,"29554":29.7320312407,"29555":29.7952480726,"29556":29.8572200485,"29557":29.9179534838,"29558":29.977456109,"29559":30.0357371001,"29560":30.0928071008,"29561":30.1486782366,"29562":30.2033641201,"29563":30.2568798477,"29564":30.3092419863,"29565":30.3604685511,"29566":30.4105789737,"29567":30.4595940606,"29568":30.507535942,"29569":30.5544280115,"29570":30.6002948559,"29571":30.6451621765,"29572":30.6890567018,"29573":30.7320060916,"29574":30.7740388333,"29575":30.8151841319,"29576":30.8554717922,"29577":30.8949320959,"29578":30.9335956736,"29579":30.9714933725,"29580":31.0086561201,"29581":31.0451147859,"29582":31.0809000416,"29583":31.11604222,"29584":31.1505711747,"29585":31.1845161409,"29586":31.2179055985,"29587":31.250767138,"29588":31.2831273315,"29589":31.3150116078,"29590":31.3464441343,"29591":31.3774477055,"29592":31.4080436393,"29593":31.4382516818,"29594":31.4680899217,"29595":31.4975747145,"29596":31.5267206169,"29597":31.5555403334,"29598":31.5840446734,"29599":31.6122425207,"29600":31.6401408159,"29601":31.6677445505,"29602":31.6950567746,"29603":31.7220786164,"29604":31.7488093155,"29605":31.7752462684,"29606":31.8013850866,"29607":31.827219667,"29608":31.8527422745,"29609":31.8779436356,"29610":31.9028130437,"29611":31.9273384744,"29612":31.9515067112,"29613":31.9753034798,"29614":31.9987135916,"29615":32.0217210943,"29616":32.0443094295,"29617":32.0664615967,"29618":32.0881603215,"29619":32.1093882286,"29620":32.1301280176,"29621":32.1503626407,"29622":32.1700754819,"29623":32.1892505353,"29624":32.2078725836,"29625":32.2259273732,"29626":32.2434017866,"29627":32.2602840109,"29628":32.2765637005,"29629":32.2922321336,"29630":32.3072823615,"29631":32.3217093498,"29632":32.3355101097,"29633":32.3486838207,"29634":32.3612319405,"29635":32.3731583048,"29636":32.3844692139,"29637":32.3951735067,"29638":32.4052826204,"29639":32.4148106368,"29640":32.4237743134,"29641":32.4321930998,"29642":32.4400891388,"29643":32.447487252,"29644":32.45441491,"29645":32.4609021864,"29646":32.4669816972,"29647":32.4726885245,"29648":32.4780601245,"29649":32.4831362217,"29650":32.4879586888,"29651":32.4925714115,"29652":32.4970201423,"29653":32.5013523401,"29654":32.505616999,"29655":32.5098644664,"29656":32.5141462508,"29657":32.5185148211,"29658":32.5230233983,"29659":32.5277257397,"29660":32.5326759188,"29661":32.5379280996,"29662":32.5435363086,"29663":32.5495542045,"29664":32.5560348475,"29665":32.5630304687,"29666":32.5705922417,"29667":32.5787700573,"29668":32.587612302,"29669":32.5971656423,"29670":32.6074748152,"29671":32.6185824268,"29672":32.6305287591,"29673":32.6433515867,"29674":32.6570860038,"29675":32.6717642636,"29676":32.6874156284,"29677":32.7040662341,"29678":32.7217389677,"29679":32.7404533586,"29680":32.7602254856,"29681":32.7810678976,"29682":32.8029895512,"29683":32.8259957628,"29684":32.8500881768,"29685":32.87526475,"29686":32.9015197515,"29687":32.9288437785,"29688":32.9572237881,"29689":32.9866431442,"29690":33.0170816792,"29691":33.0485157718,"29692":33.0809184374,"29693":33.1142594342,"29694":33.1485053811,"29695":33.1836198897,"29696":33.2195637076,"29697":33.2562948732,"29698":33.2937688819,"29699":33.3319388614,"29700":33.3707557568,"29701":33.4101685233,"29702":33.4501243271,"29703":33.4905687522,"29704":33.5314461748,"29705":33.5727017006,"29706":33.6142834511,"29707":33.6561434819,"29708":33.6982378953,"29709":33.7405268805,"29710":33.782974766,"29711":33.8255500705,"29712":33.8682255539,"29713":33.9109782654,"29714":33.9537895897,"29715":33.9966452885,"29716":34.0395355379,"29717":34.08245496,"29718":34.1254026478,"29719":34.1683821821,"29720":34.2114016414,"29721":34.2544736013,"29722":34.2976151249,"29723":34.3408477424,"29724":34.3841974196,"29725":34.4276945144,"29726":34.4713737222,"29727":34.5152740071,"29728":34.5594385217,"29729":34.6039145127,"29730":34.6487532142,"29731":34.6940097266,"29732":34.7397428831,"29733":34.7860151026,"29734":34.8328922301,"29735":34.8804433635,"29736":34.9287406692,"29737":34.9778591857,"29738":35.0278766158,"29739":35.0788731085,"29740":35.1309310311,"29741":35.1841347329,"29742":35.2385702996,"29743":35.2943253025,"29744":35.3514885397,"29745":35.4101497737,"29746":35.4703994646,"29747":35.5323285,"29748":35.5960279245,"29749":35.661588667,"29750":35.7291012702,"29751":35.7986556212,"29752":35.8703406851,"29753":35.9442442429,"29754":36.0204526344,"29755":36.0990505077,"29756":36.1801205758,"29757":36.2637433818,"29758":36.3499970729,"29759":36.4389571849,"29760":36.5306964377,"29761":36.625284542,"29762":36.7227880193,"29763":36.8232700335,"29764":36.9267902378,"29765":37.0334046337,"29766":37.1431654456,"29767":37.25612101,"29768":37.3723156787,"29769":37.491789738,"29770":37.6145793423,"29771":37.7407164634,"29772":37.8702288542,"29773":38.0031400279,"29774":38.1394692515,"29775":38.2792315539,"29776":38.422437748,"29777":38.5690944667,"29778":38.7192042121,"29779":38.8727654172,"29780":39.0297725206,"29781":39.1902160521,"29782":39.3540827296,"29783":39.5213555667,"29784":39.6920139896,"29785":39.8660339628,"29786":40.0433881234,"29787":40.2240459226,"29788":40.4079737734,"29789":40.5951352042,"29790":40.7854910174,"29791":40.978999451,"29792":41.1756163443,"29793":41.3752953044,"29794":41.5779878744,"29795":41.7836437016,"29796":41.9922107042,"29797":42.2036352365,"29798":42.4178622513,"29799":42.6348354576,"29800":42.8544974739,"29801":43.0767899759,"29802":43.3016538362,"29803":43.5290292575,"29804":43.758855896,"29805":43.9910729762,"29806":44.2256193942,"29807":44.4624338109,"29808":44.7014547324,"29809":44.9426205787,"29810":45.1858697388,"29811":45.4311406124,"29812":45.6783716378,"29813":45.927501305,"29814":46.1784681557,"29815":46.4312107671,"29816":46.6856677231,"29817":46.94177757,"29818":47.199478759,"29819":47.4587095753,"29820":47.7194080538,"29821":47.9815118838,"29822":48.2449583013,"29823":48.5096839721,"29824":48.7756248651,"29825":49.042716118,"29826":49.3108918965,"29827":49.5800852486,"29828":49.8502279554,"29829":50.1212503797,"29830":50.3930813146,"29831":50.6656478344,"29832":50.938875148,"29833":51.2126864579,"29834":51.4870028264,"29835":51.7617430503,"29836":52.0368235467,"29837":52.3121582507,"29838":52.5876585272,"29839":52.863233098,"29840":53.1387879864,"29841":53.4142264793,"29842":53.6894491094,"29843":53.9643536573,"29844":54.2388351749,"29845":54.512786031,"29846":54.7860959791,"29847":55.0586522477,"29848":55.3303396532,"29849":55.601040736,"29850":55.8706359177,"29851":56.1390036809,"29852":56.4060207695,"29853":56.6715624085,"29854":56.9355025432,"29855":57.1977140954,"29856":57.4580692355,"29857":57.716439669,"29858":57.9726969351,"29859":58.2267127167,"29860":58.4783591575,"29861":58.7275091867,"29862":58.9740368473,"29863":59.2178176264,"29864":59.4587287852,"29865":59.6966496866,"29866":59.9314621172,"29867":60.1630506029,"29868":60.3913027145,"29869":60.6161093622,"29870":60.837365076,"29871":61.0549682705,"29872":61.2688214926,"29873":61.4788316488,"29874":61.6849102126,"29875":61.8869734082,"29876":62.0849423708,"29877":62.278743282,"29878":62.4683074774,"29879":62.6535715285,"29880":62.8344772956,"29881":63.0109719524,"29882":63.183007981,"29883":63.3505431387,"29884":63.5135403938,"29885":63.6719678338,"29886":63.8257985434,"29887":63.9750104546,"29888":64.1195861694,"29889":64.2595127547,"29890":64.3947815123,"29891":64.5253877243,"29892":64.6513303748,"29893":64.7726118513,"29894":64.8892376256,"29895":65.0012159182,"29896":65.1085573464,"29897":65.2112745608,"29898":65.3093818706,"29899":65.4028948619,"29900":65.4918300112,"29901":65.5762042954,"29902":65.6560348133,"29903":65.731338388,"29904":65.8021312213,"29905":65.868428501,"29906":65.9302440802,"29907":65.9875901267,"29908":66.0404768414,"29909":66.088912154,"29910":66.1329014962,"29911":66.1724475576,"29912":66.2075501273,"29913":66.2382059223,"29914":66.264408508,"29915":66.2861482102,"29916":66.3034121254,"29917":66.3161841237,"29918":66.3244449556,"29919":66.3281723529,"29920":66.3289724033,"29921":66.3289910205,"29922":66.3289867709,"29923":66.328987133,"29924":66.3289863907,"29925":66.3289860056,"29926":66.328985344,"29927":66.3289848881,"29928":66.3289841654,"29929":66.3289836619,"29930":66.3289828673,"29931":66.3289823135,"29932":66.3289814417,"29933":66.3289808343,"29934":66.3289798809,"29935":66.3289792168,"29936":66.3289781781,"29937":66.3289774549,"29938":66.3289763282,"29939":66.328975544,"29940":66.3289743277,"29941":66.3289734815,"29942":66.3289721751,"29943":66.3289712666,"29944":66.3289698711,"29945":66.328968901,"29946":66.3289674186,"29947":66.3289663886,"29948":66.3289648228,"29949":66.3289637355,"29950":66.3289620915,"29951":66.3289609504,"29952":66.3289592343,"29953":66.3289580438,"29954":66.3289562631,"29955":66.3289550285,"29956":66.3289531916,"29957":66.3289519185,"29958":66.3289500344,"29959":66.3289487294,"29960":66.3289468076,"29961":66.3289454772,"29962":66.3289435274,"29963":66.3289421782,"29964":66.3289402099,"29965":66.3289388485,"29966":66.3289368707,"29967":66.3289355033,"29968":66.328933524,"29969":66.3289321562,"29970":66.3289301824,"29971":66.3289288188,"29972":66.3289268562,"29973":66.3289255006,"29974":66.3289235528,"29975":66.3289222077,"29976":66.3289202766,"29977":66.3289189432,"29978":66.3289170284,"29979":66.3289157062,"29980":66.3289138049,"29981":66.3289124919,"29982":66.3289105988,"29983":66.3289092912,"29984":66.3289073984,"29985":66.3289060903,"29986":66.3289041868,"29987":66.3289028706,"29988":66.3289009422,"29989":66.328899608,"29990":66.3288976374,"29991":66.3288962729,"29992":66.3288942389,"29993":66.3288928293,"29994":66.3288907066,"29995":66.3288892341,"29996":66.3288869928,"29997":66.3288854363,"29998":66.3288830411,"29999":66.3288813761,"30000":-0.0001987157,"30001":0.0046960715,"30002":-0.0002149894,"30003":0.0051392356,"30004":-0.0002352922,"30005":0.00568507,"30006":-0.0002603018,"30007":0.6519822799,"30008":2.2319223011,"30009":4.6499396467,"30010":7.826880732,"30011":11.6945576558,"30012":16.1936198967,"30013":21.2722062344,"30014":26.8846818705,"30015":32.9905646838,"30016":39.5535941368,"30017":46.5409291066,"30018":53.9224577179,"30019":61.6702055731,"30020":69.7578304613,"30021":78.160193302,"30022":86.8529964607,"30023":95.8124817735,"30024":105.0151816259,"30025":114.4377172981,"30026":124.0566395139,"30027":133.8483067464,"30028":143.7887973447,"30029":153.8538519788,"30030":164.018843251,"30031":174.25876962,"30032":184.5482710209,"30033":194.8616637663,"30034":205.1729924706,"30035":215.4560968744,"30036":225.6846915531,"30037":235.8324565859,"30038":245.8731373355,"30039":255.7806515622,"30040":265.529202153,"30041":275.0933938103,"30042":284.4483521043,"30043":293.569843352,"30044":302.4343938557,"30045":311.0194071025,"30046":319.3032776011,"30047":327.2655001182,"30048":334.8867731646,"30049":342.1490956755,"30050":349.035855934,"30051":355.5319118916,"30052":361.6236621535,"30053":367.2991070108,"30054":372.5478990211,"30055":377.3613827588,"30056":381.7326234762,"30057":385.6564245371,"30058":389.1293336009,"30059":392.1496376478,"30060":394.7173470482,"30061":396.8341689788,"30062":398.5034705871,"30063":399.7302323936,"30064":400.5209925028,"30065":400.8837822629,"30066":400.8280540791,"30067":400.364602135,"30068":399.505476818,"30069":398.2638936772,"30070":396.6541377627,"30071":394.6914642063,"30072":392.3919959046,"30073":389.7726191582,"30074":386.8508781044,"30075":383.6448687563,"30076":380.1731334271,"30077":376.4545562843,"30078":372.5082607307,"30079":368.3535092606,"30080":364.0096063892,"30081":359.4958051936,"30082":354.8312179481,"30083":350.034731276,"30084":345.1249261788,"30085":340.1200032457,"30086":335.0377132853,"30087":329.8952935656,"30088":324.7094097901,"30089":319.4961038887,"30090":314.27074765,"30091":309.0480021753,"30092":303.8417830929,"30093":298.6652314323,"30094":293.5306900239,"30095":288.4496852565,"30096":283.432914002,"30097":278.4902354916,"30098":273.6306679096,"30099":268.8623894555,"30100":264.1927436138,"30101":259.6282483626,"30102":255.1746090447,"30103":250.8367346248,"30104":246.6187570525,"30105":242.5240534553,"30106":238.5552708865,"30107":234.714353359,"30108":231.0025709021,"30109":227.4205503842,"30110":223.9683078535,"30111":220.6452821562,"30112":217.4503717892,"30113":214.3819947074,"30114":211.4381507464,"30115":208.6164608773,"30116":205.9141940769,"30117":203.3282942231,"30118":200.855408304,"30119":198.4919153971,"30120":196.2339561791,"30121":194.0774627065,"30122":192.0181882337,"30123":190.0517368535,"30124":188.1735927626,"30125":186.3791489725,"30126":184.6637353035,"30127":183.0226455135,"30128":181.4511634309,"30129":179.9445879737,"30130":178.4982569531,"30131":177.1075695716,"30132":175.7680075402,"30133":174.4751547519,"30134":173.2247154598,"30135":172.0125309219,"30136":170.8345944835,"30137":169.6870650801,"30138":168.5662791543,"30139":167.4687609884,"30140":166.3912314635,"30141":165.3306152663,"30142":164.2840465692,"30143":163.2488732189,"30144":162.2226594754,"30145":161.2031873465,"30146":160.1884565721,"30147":159.176683314,"30148":158.1662976134,"30149":157.1559396808,"30150":156.1444550865,"30151":155.1308889227,"30152":154.1144790113,"30153":153.0946482306,"30154":152.0709960405,"30155":151.0432892809,"30156":150.0114523243,"30157":148.9755566607,"30158":147.9358099947,"30159":146.8925449343,"30160":145.8462073497,"30161":144.7973444827,"30162":143.7465928829,"30163":142.6946662493,"30164":141.6423432524,"30165":140.5904554119,"30166":139.5398751028,"30167":138.4915037615,"30168":137.4462603601,"30169":136.4050702162,"30170":135.3688542026,"30171":134.3385184166,"30172":133.314944367,"30173":132.2989797347,"30174":131.2914297535,"30175":130.2930492605,"30176":129.3045354557,"30177":128.326521407,"30178":127.3595703336,"30179":126.4041706914,"30180":125.4607320833,"30181":124.5295820059,"30182":123.6109634429,"30183":122.705033306,"30184":121.8118617197,"30185":120.9314321384,"30186":120.0636422794,"30187":119.2083058475,"30188":118.3651550227,"30189":117.5338436744,"30190":116.7139512608,"30191":115.9049873682,"30192":115.1063968361,"30193":114.3175654137,"30194":113.537825887,"30195":112.7664646121,"30196":112.0027283883,"30197":111.2458316023,"30198":110.4949635728,"30199":109.7492960226,"30200":109.0079906097,"30201":108.2702064424,"30202":107.5351075119,"30203":106.801869972,"30204":106.0696892025,"30205":105.3377865919,"30206":104.6054159841,"30207":103.8718697322,"30208":103.1364843127,"30209":102.3986454549,"30210":101.6577927472,"30211":100.9134236898,"30212":100.1650971647,"30213":99.4124363053,"30214":98.6551307502,"30215":97.8929382736,"30216":97.1256857914,"30217":96.3532697452,"30218":95.5756558753,"30219":94.7928783969,"30220":94.0050385981,"30221":93.2123028864,"30222":92.4149003079,"30223":91.6131195744,"30224":90.807305631,"30225":89.9978558014,"30226":89.1852155515,"30227":88.3698739097,"30228":87.5523585891,"30229":86.7332308504,"30230":85.9130801513,"30231":85.0925186235,"30232":84.2721754202,"30233":83.4526909747,"30234":82.6347112116,"30235":81.8188817486,"30236":81.0058421272,"30237":80.1962201086,"30238":79.3906260688,"30239":78.5896475258,"30240":77.79384383,"30241":77.0037410472,"30242":76.2198270613,"30243":75.4425469227,"30244":74.6722984667,"30245":73.9094282244,"30246":73.1542276462,"30247":72.4069296589,"30248":71.6677055725,"30249":70.9366623549,"30250":70.2138402877,"30251":69.4992110182,"30252":68.792676018,"30253":68.0940654599,"30254":67.4031375208,"30255":66.7195781188,"30256":66.0430010873,"30257":65.3729487927,"30258":64.708893193,"30259":64.0502373388,"30260":63.3963173115,"30261":62.7464045934,"30262":62.0997088599,"30263":61.4553811826,"30264":60.8125176282,"30265":60.1701632358,"30266":59.5273163519,"30267":58.8829332987,"30268":58.235933349,"30269":57.5852039781,"30270":56.9296063598,"30271":56.2679810704,"30272":55.5991539638,"30273":54.9219421767,"30274":54.2351602225,"30275":53.5376261294,"30276":52.8281675789,"30277":52.1056279989,"30278":51.3688725655,"30279":50.6167940685,"30280":49.8483185962,"30281":49.0624109953,"30282":48.2580800661,"30283":47.4343834521,"30284":46.5904321896,"30285":45.7253948831,"30286":44.838501478,"30287":43.9290466056,"30288":42.9963924796,"30289":42.0399713287,"30290":41.0592873537,"30291":40.0539182044,"30292":39.0235159739,"30293":37.9678077168,"30294":36.8865954983,"30295":35.7797559906,"30296":34.647239633,"30297":33.4890693813,"30298":32.3053390706,"30299":31.0962114249,"30300":29.8619157434,"30301":28.6027453031,"30302":27.3190545123,"30303":26.0112558563,"30304":24.6798166777,"30305":23.3252558284,"30306":21.9481402287,"30307":20.5490813726,"30308":19.1287318321,"30309":17.6877817896,"30310":16.2269556281,"30311":14.7470086126,"30312":13.2487236931,"30313":11.7329084534,"30314":10.200392229,"30315":8.6520234122,"30316":7.0886669625,"30317":5.5112021306,"30318":3.9205204067,"30319":2.3175236958,"30320":0.7031227228,"30321":0.0587946237,"30322":-0.0210569328,"30323":0.1554023295,"30324":-0.0072715161,"30325":0.1488692694,"30326":-0.006962844,"30327":0.1427977211,"30328":-0.0066758903,"30329":0.1365932882,"30330":-0.0063828604,"30331":0.1302912092,"30332":-0.0060854344,"30333":0.123928523,"30334":-0.0057853729,"30335":0.1175421245,"30336":-0.0054844252,"30337":0.1111682031,"30338":-0.0051843028,"30339":0.1048417112,"30340":-0.0048866537,"30341":0.0985958731,"30342":-0.0045930402,"30343":0.0924617462,"30344":-0.0043049178,"30345":0.0864678427,"30346":-0.0040236179,"30347":0.0806398204,"30348":-0.0037503337,"30349":0.0750002475,"30350":-0.0034861099,"30351":0.0695684436,"30352":-0.0032318356,"30353":0.0643603958,"30354":-0.0029882411,"30355":0.0593887482,"30356":-0.0027558982,"30357":0.0546628591,"30358":-0.0025352234,"30359":0.0501889205,"30360":-0.0023264841,"30361":0.0459701317,"30362":-0.0021298077,"30363":0.0420069167,"30364":-0.001945192,"30365":0.0382971777,"30366":-0.0017725174,"30367":0.0348365725,"30368":-0.001611561,"30369":0.0316188096,"30370":-0.0014620096,"30371":0.028635949,"30372":-0.0013234752,"30373":0.025878702,"30374":-0.0011955082,"30375":0.0233367221,"30376":-0.0010776116,"30377":0.0209988813,"30378":-0.0009692537,"30379":0.0188535272,"30380":-0.0008698801,"30381":0.0168887167,"30382":-0.0007789248,"30383":0.0150924246,"30384":-0.0006958194,"30385":0.0134527247,"30386":-0.0006200016,"30387":0.0119579443,"30388":-0.0005509224,"30389":0.0105967905,"30390":-0.0004880515,"30391":0.0093584529,"30392":-0.0004308824,"30393":0.0082326797,"30394":-0.0003789351,"30395":0.0072098331,"30396":-0.0003317595,"30397":0.0062809242,"30398":-0.0002889357,"30399":0.0054376292,"30400":-0.0002500759,"30401":0.004672292,"30402":-0.0002148234,"30403":0.0039779121,"30404":-0.0001828524,"30405":0.0033481325,"30406":-0.0001538624,"30407":0.0027551695,"30408":-0.0001264845,"30409":0.0022395459,"30410":-0.0001027745,"30411":0.0017728603,"30412":-0.0000813229,"30413":0.0013508596,"30414":-0.0000619326,"30415":0.0009697747,"30416":-0.0000444287,"30417":0.000626217,"30418":-0.0000277786,"30419":0.0003162546,"30420":-0.0000050102,"30421":0.0000298254,"30422":-0.0000013648,"30423":0.0,"30424":0.0000000124,"30425":0.0000001277,"30426":0.0000000173,"30427":0.0000001278,"30428":0.0000000249,"30429":0.0000001277,"30430":0.0000000322,"30431":0.0000001275,"30432":0.0000000391,"30433":0.0000001272,"30434":0.0000000457,"30435":0.0000001269,"30436":0.0000000519,"30437":0.0000001265,"30438":0.0000000577,"30439":0.0000001261,"30440":0.0000001876,"30441":-0.0000000117,"30442":-0.0000000001,"30443":0.0000001196,"30444":-0.0000000086,"30445":0.0000001163,"30446":-0.0000000084,"30447":0.0000001125,"30448":-0.0000000082,"30449":0.0000001085,"30450":-0.000000008,"30451":0.0000001041,"30452":-0.0000000078,"30453":0.0000000991,"30454":-0.0000000076,"30455":0.0000000934,"30456":-0.0000000073,"30457":0.0000000868,"30458":-0.000000007,"30459":0.0000000792,"30460":-0.0000000066,"30461":0.0000000706,"30462":-0.0000000062,"30463":0.0000000609,"30464":-0.0000000057,"30465":0.0000000502,"30466":-0.0000000052,"30467":0.0000000385,"30468":-0.0000000046,"30469":0.0000000261,"30470":-0.000000004,"30471":0.0000000129,"30472":-0.0000000034,"30473":-0.0,"30474":-0.0000000991,"30475":-9.751537486e-16,"30476":0.0,"30477":0.0,"30478":-0.000000003,"30479":0.0,"30480":-0.0000000029,"30481":0.0,"30482":-0.0000000029,"30483":0.0,"30484":-0.0000000028,"30485":0.0,"30486":-0.0000000028,"30487":0.0,"30488":-0.0000000027,"30489":5.661039343e-16,"30490":-0.0000000027,"30491":-4.502055835e-16,"30492":-0.0000002119,"30493":0.0,"30494":-0.0000000026,"30495":-0.0,"30496":-0.0000002267,"30497":-0.0,"30498":4.813918263e-16,"30499":3.351966781e-16,"30500":-0.0000000025,"30501":4.498106899e-17,"30502":-0.0000000024,"30503":0.0,"30504":-0.0000000024,"30505":0.0,"30506":-0.0000000023,"30507":6.939925983e-16,"30508":-0.0000000023,"30509":4.496423839e-16,"30510":-0.0000000022,"30511":1.134722518e-16,"30512":-0.0000000022,"30513":0.0,"30514":-0.0000000022,"30515":0.0,"30516":-0.0000000021,"30517":-0.0,"30518":-0.0000002171,"30519":0.0,"30520":-0.0000000021,"30521":0.0,"30522":-0.000000002,"30523":-0.0,"30524":-0.0000001936,"30525":-8.273605142e-16,"30526":0.0,"30527":0.0,"30528":-0.0000000019,"30529":2.066891127e-16,"30530":-0.0000000019,"30531":-3.246741482e-16,"30532":-0.0000001545,"30533":6.8646091e-16,"30534":-0.0000000018,"30535":0.0,"30536":-0.0000000018,"30537":-0.0,"30538":-0.0000001225,"30539":-0.0,"30540":0.0,"30541":-6.868201267e-16,"30542":-0.0,"30543":-0.0,"30544":-0.0,"30545":-0.0,"30546":-0.0,"30547":0.0,"30548":-0.0000000016,"30549":-3.433972088e-16,"30550":-0.0000000612,"30551":-3.200829112e-16,"30552":-0.0,"30553":0.000000009,"30554":-0.0000000017,"30555":0.000000016,"30556":-0.000000002,"30557":0.0000000224,"30558":-0.0000000023,"30559":0.0000000281,"30560":-0.0000000025,"30561":0.0000000332,"30562":-0.0000000028,"30563":0.0000000375,"30564":-0.0000000029,"30565":0.0000000412,"30566":-0.0000000031,"30567":0.0000000442,"30568":-0.0000000032,"30569":0.0000000465,"30570":-0.0000000033,"30571":0.0000000482,"30572":-0.0000000033,"30573":0.0000000493,"30574":-0.0000000034,"30575":0.0000000499,"30576":-0.0000000034,"30577":0.00000005,"30578":0.0000002505,"30579":0.0000000315,"30580":0.000000004,"30581":0.0000000408,"30582":0.000000004,"30583":0.0000000408,"30584":0.0000000045,"30585":0.0000000408,"30586":0.0000000049,"30587":0.0000000408,"30588":0.0000000053,"30589":0.0000000408,"30590":0.0000000057,"30591":0.0000000408,"30592":0.000000006,"30593":0.0000000408,"30594":0.0000000063,"30595":0.0000000408,"30596":0.0000000065,"30597":0.0000000407,"30598":0.0000000067,"30599":0.0000000407,"30600":0.0000000067,"30601":0.0000000406,"30602":0.0000000067,"30603":0.0000000405,"30604":0.0000000066,"30605":0.0000000404,"30606":0.0000000064,"30607":0.0000000403,"30608":0.0000000061,"30609":0.0000000401,"30610":0.0000000057,"30611":0.0000000399,"30612":0.0000000053,"30613":0.0000000397,"30614":0.0000000047,"30615":0.0000000395,"30616":0.0000000041,"30617":0.0000000393,"30618":0.0000000035,"30619":0.000000039,"30620":0.0000000028,"30621":0.0000000388,"30622":0.0000000021,"30623":0.0000000385,"30624":0.0000000014,"30625":0.0000000382,"30626":0.0000000007,"30627":0.0000000379,"30628":-0.0,"30629":0.0000000363,"30630":-0.0000000017,"30631":0.000000036,"30632":0.0000000214,"30633":0.0000000478,"30634":-0.0000000023,"30635":0.0000000355,"30636":0.0000000214,"30637":0.0000000478,"30638":0.0000000219,"30639":0.0000000477,"30640":0.0000000219,"30641":0.0000000476,"30642":0.0000000218,"30643":0.0000000475,"30644":0.0000000218,"30645":0.0000000473,"30646":0.0000000217,"30647":0.0000000472,"30648":0.0000000216,"30649":0.0000000469,"30650":-0.0000000025,"30651":0.0000000345,"30652":0.000000021,"30653":0.0000000464,"30654":-0.0000000011,"30655":0.0000000346,"30656":-0.0000000008,"30657":0.0000000347,"30658":0.0000000002,"30659":0.0000000362,"30660":0.0000000023,"30661":0.0000000363,"30662":0.0000000034,"30663":0.0000000365,"30664":0.0000000047,"30665":0.0000000367,"30666":0.0000000059,"30667":0.000000037,"30668":0.0000000072,"30669":0.0000000372,"30670":0.0000000086,"30671":0.0000000375,"30672":0.0000000099,"30673":0.0000000377,"30674":0.0000000112,"30675":0.000000038,"30676":0.0000000124,"30677":0.0000000382,"30678":0.0000000136,"30679":0.0000000385,"30680":0.0000000147,"30681":0.0000000387,"30682":0.0000000157,"30683":0.0000000389,"30684":0.0000000166,"30685":0.000000039,"30686":0.0000000562,"30687":0.0000000539,"30688":0.0000000544,"30689":0.0000000547,"30690":0.000000055,"30691":0.0000000552,"30692":0.0000000554,"30693":0.0000000556,"30694":0.0000000557,"30695":0.0000000557,"30696":0.0000000557,"30697":0.0000000557,"30698":0.0000000556,"30699":0.0000000555,"30700":0.0000000553,"30701":0.0000000551,"30702":0.0000000548,"30703":0.0000000546,"30704":0.0000000542,"30705":0.0000000539,"30706":0.0000000536,"30707":0.0000000533,"30708":0.0000000531,"30709":0.0000000528,"30710":0.0000000526,"30711":0.0000000525,"30712":0.0000000523,"30713":0.0000000522,"30714":0.0000000522,"30715":0.0000000522,"30716":0.0000000522,"30717":0.0000000523,"30718":0.0000000525,"30719":0.0000000527,"30720":0.0000000529,"30721":0.0000000532,"30722":0.0000000536,"30723":0.000000054,"30724":0.0000000545,"30725":0.0000000551,"30726":0.0000000557,"30727":0.0000000564,"30728":0.0000000572,"30729":0.0000000581,"30730":0.000000059,"30731":0.00000006,"30732":0.0000000612,"30733":0.0000000623,"30734":-0.0000000034,"30735":0.0,"30736":-0.0000000006,"30737":0.000000043,"30738":-0.0000000025,"30739":0.0000000435,"30740":-0.0000000025,"30741":0.0000000439,"30742":-0.0000000025,"30743":0.0000000443,"30744":-0.0000000025,"30745":0.0000000446,"30746":-0.0000000025,"30747":0.0000000448,"30748":-0.0000000025,"30749":0.0000000449,"30750":-0.0000000025,"30751":0.0000000448,"30752":-0.0000000025,"30753":0.0000000445,"30754":-0.0000000025,"30755":0.0000000439,"30756":-0.0000000025,"30757":0.0000000431,"30758":-0.0000000024,"30759":0.0000000418,"30760":-0.0000000024,"30761":0.0000000402,"30762":-0.0000000023,"30763":0.0000000381,"30764":-0.0000000022,"30765":0.0000000355,"30766":-0.0000000021,"30767":0.0000000324,"30768":-0.0000000019,"30769":0.0000000287,"30770":-0.0000000017,"30771":0.0000000246,"30772":-0.0000000015,"30773":0.0000000199,"30774":-0.0000000013,"30775":0.0000000147,"30776":-0.0000000011,"30777":0.0000000091,"30778":-0.0000000008,"30779":0.0000000032,"30780":-0.0000000004,"30781":0.0,"30782":-0.0000000004,"30783":0.0,"30784":-0.0000000004,"30785":8.796065598e-16,"30786":-0.0000000004,"30787":0.0,"30788":-0.0000000004,"30789":-0.0,"30790":-0.0000000992,"30791":0.0,"30792":-0.0000000004,"30793":-0.0,"30794":-0.0000001147,"30795":0.0,"30796":-0.0000000003,"30797":0.0,"30798":-0.0000000003,"30799":5.768341163e-16,"30800":-0.0000000003,"30801":6.76676493e-16,"30802":-0.0000000003,"30803":-0.0,"30804":-0.0000001454,"30805":0.0,"30806":-0.0000000003,"30807":6.681441491e-16,"30808":-0.0000000003,"30809":0.0,"30810":-0.0000000003,"30811":-0.0,"30812":-0.0000001575,"30813":0.0,"30814":-0.0000000002,"30815":-0.0,"30816":-0.0000001589,"30817":-0.0,"30818":-0.0,"30819":-5.278898145e-16,"30820":0.0,"30821":0.0,"30822":-0.0000000002,"30823":-0.0,"30824":-0.0000001527,"30825":0.0,"30826":-0.0000000002,"30827":0.0,"30828":-0.0000000002,"30829":0.0,"30830":-0.0000000002,"30831":-3.543561019e-16,"30832":-0.000000136,"30833":-0.0,"30834":-0.0,"30835":0.0,"30836":-0.0000000002,"30837":-0.0,"30838":-0.0000001183,"30839":0.0,"30840":-0.0000000001,"30841":-0.0,"30842":-0.0000001048,"30843":-0.0,"30844":-0.0,"30845":-0.0,"30846":-0.0,"30847":0.0,"30848":-0.0000000001,"30849":-0.0,"30850":-0.000000076,"30851":-1.422937463e-16,"30852":9.478903718e-16,"30853":-0.0000000001,"30854":0.0000000107,"30855":-0.0000000006,"30856":0.0000000171,"30857":-0.0000000009,"30858":0.0000000232,"30859":-0.0000000011,"30860":0.0000000291,"30861":-0.0000000014,"30862":0.0000000346,"30863":-0.0000000016,"30864":0.0000000397,"30865":-0.0000000019,"30866":0.0000000445,"30867":-0.0000000021,"30868":0.0000000487,"30869":-0.0000000023,"30870":0.0000000525,"30871":-0.0000000024,"30872":0.0000000559,"30873":-0.0000000026,"30874":0.0000000588,"30875":-0.0000000027,"30876":0.0000000613,"30877":-0.0000000028,"30878":0.0000000634,"30879":-0.0000000029,"30880":0.0000000651,"30881":-0.000000003,"30882":0.0000000664,"30883":-0.0000000031,"30884":0.0000000675,"30885":-0.0000000031,"30886":0.0000000683,"30887":-0.0000000031,"30888":0.0000000688,"30889":-0.0000000032,"30890":0.0000000692,"30891":-0.0000000032,"30892":0.0000000695,"30893":-0.0000000032,"30894":0.0000000697,"30895":-0.0000000032,"30896":0.0000000698,"30897":-0.0000000032,"30898":0.0000000698,"30899":-0.0000000032,"30900":0.0000000698,"30901":0.0000047636,"30902":-0.000000163,"30903":0.000016057,"30904":-0.0000006576,"30905":0.0000164213,"30906":-0.0000006743,"30907":0.0000168261,"30908":-0.0000006929,"30909":0.0000173009,"30910":-0.0000007148,"30911":0.0000178515,"30912":-0.0000007401,"30913":0.000018483,"30914":-0.0000007691,"30915":0.000019199,"30916":-0.0000008021,"30917":0.0000200016,"30918":-0.000000839,"30919":0.0000208911,"30920":0.000129777,"30921":-0.0000059012,"30922":0.0009689864,"30923":-0.0000443105,"30924":0.0010696873,"30925":-0.0000489202,"30926":0.0011793447,"30927":-0.00005394,"30928":0.0012992724,"30929":-0.0000594302,"30930":0.0014289468,"30931":-0.0000653668,"30932":0.0015675636,"30933":-0.0000717131,"30934":0.0017140265,"30935":-0.0000784189,"30936":0.0018669426,"30937":-0.0000854205,"30938":0.0020246297,"30939":-0.0000926408,"30940":0.0021851393,"30941":-0.0000999906,"30942":0.002346294,"30943":-0.0001073703,"30944":0.0025057408,"30945":-0.0001146719,"30946":0.0026610192,"30947":-0.0001217829,"30948":0.0028096411,"30949":-0.0001285891,"30950":0.0029491799,"30951":-0.0001349795,"30952":0.0030773646,"30953":-0.0001408498,"30954":0.0031921748,"30955":-0.0001461076,"30956":0.0032919306,"30957":-0.0001506759,"30958":0.0033753749,"30959":-0.0001544969,"30960":0.0034417417,"30961":-0.0001575356,"30962":0.003490809,"30963":-0.0001597819,"30964":0.0035229328,"30965":-0.0001612519,"30966":0.0035390618,"30967":-0.0001619893,"30968":0.0035407338,"30969":-0.0001620643,"30970":0.0035300536,"30971":-0.0001615736,"30972":0.0035096573,"30973":-0.0001606378,"30974":0.0034826661,"30975":-0.0001594,"30976":0.0034526349,"30977":-0.000158023,"30978":0.0034235022,"30979":-0.0001566872,"30980":0.0033995469,"30981":-0.0001555886,"30982":0.0033853603,"30983":-0.0001549375,"30984":0.0033858383,"30985":-0.0001549582,"30986":0.0034062029,"30987":-0.0001558897,"30988":0.0034520552,"30989":-0.0001579886,"30990":0.0035294668,"30991":-0.0001615331,"30992":0.0036451099,"30993":-0.0001668287,"30994":0.0038064271,"30995":-0.0001742166,"30996":0.0040218351,"30997":-0.0001840825,"30998":0.0043009586,"30999":-0.0001968677,"31000":10.4907966946,"31001":10.4690804341,"31002":10.4469779111,"31003":10.4244932066,"31004":10.4016270908,"31005":10.3783840637,"31006":10.3547649273,"31007":10.3310862316,"31008":10.3080500291,"31009":10.28644374,"31010":10.2669823025,"31011":10.2503070637,"31012":10.2369974102,"31013":10.227578161,"31014":10.2225262238,"31015":10.222276054,"31016":10.2272241879,"31017":10.2377329564,"31018":10.2541335009,"31019":10.2767281875,"31020":10.3057925101,"31021":10.3415765582,"31022":10.384306118,"31023":10.4341834667,"31024":10.4913879138,"31025":10.5560761363,"31026":10.6283823488,"31027":10.7084183482,"31028":10.7962734639,"31029":10.8920144448,"31030":10.9956853087,"31031":11.1073071788,"31032":11.2268781262,"31033":11.354373039,"31034":11.4897435334,"31035":11.6329179199,"31036":11.7838012386,"31037":11.9422753722,"31038":12.1081992464,"31039":12.2814091228,"31040":12.4617189913,"31041":12.6489210642,"31042":12.8427863741,"31043":13.0430654768,"31044":13.2494892577,"31045":13.4617698395,"31046":13.6796015894,"31047":13.9026622184,"31048":14.1306139701,"31049":14.3631048908,"31050":14.5997701741,"31051":14.8402335718,"31052":15.0841088624,"31053":15.3310013676,"31054":15.5805095075,"31055":15.8322263847,"31056":16.0857413853,"31057":16.3406417896,"31058":16.5965143786,"31059":16.8529470289,"31060":17.1095302847,"31061":17.3658588972,"31062":17.6215333225,"31063":17.8761611693,"31064":18.1293585879,"31065":18.3807515926,"31066":18.6299773113,"31067":18.8766851558,"31068":19.1205379071,"31069":19.361212711,"31070":19.598401981,"31071":19.8318142041,"31072":20.0611746487,"31073":20.2862259718,"31074":20.5067287258,"31075":20.7224617651,"31076":20.933222552,"31077":21.1388273655,"31078":21.3391114128,"31079":21.5339288486,"31080":21.7231527034,"31081":21.9066747265,"31082":22.0844051458,"31083":22.2562723514,"31084":22.4222225059,"31085":22.5822190872,"31086":22.7362423704,"31087":22.8842888517,"31088":23.0263706229,"31089":23.1625147002,"31090":23.2927623131,"31091":23.4171681602,"31092":23.5357996364,"31093":23.6487360371,"31094":23.7560677451,"31095":23.8578954049,"31096":23.9543290891,"31097":24.0454874625,"31098":24.1314969471,"31099":24.2124908933,"31100":24.2886087596,"31101":24.3599953073,"31102":24.4267998096,"31103":24.4891752819,"31104":24.5472777338,"31105":24.601265446,"31106":24.6512982745,"31107":24.6975369841,"31108":24.7401426119,"31109":24.7792758641,"31110":24.815096546,"31111":24.8477630261,"31112":24.8774308844,"31113":24.9042443737,"31114":24.9283401509,"31115":24.9498515992,"31116":24.9689087306,"31117":24.9856378675,"31118":25.0001614013,"31119":25.0125975679,"31120":25.0230602549,"31121":25.0316588346,"31122":25.0384980272,"31123":25.0436777904,"31124":25.0472932372,"31125":25.0494345801,"31126":25.0501871016,"31127":25.0496311495,"31128":25.0478421562,"31129":25.044890681,"31130":25.0408424745,"31131":25.035758562,"31132":25.0296953475,"31133":25.0227047343,"31134":25.0148342618,"31135":25.0061272571,"31136":24.9966229993,"31137":24.9863568959,"31138":24.975360669,"31139":24.9636625498,"31140":24.9512874804,"31141":24.9382573212,"31142":24.9245910621,"31143":24.9103050373,"31144":24.8954131401,"31145":24.8799270396,"31146":24.8638563943,"31147":24.8472090651,"31148":24.8299913241,"31149":24.8122080584,"31150":24.7938629696,"31151":24.7749587661,"31152":24.755497348,"31153":24.7354799849,"31154":24.7149074841,"31155":24.6937803499,"31156":24.672098933,"31157":24.6498635695,"31158":24.6270747091,"31159":24.6037330325,"31160":24.5798395572,"31161":24.5553957324,"31162":24.5304035212,"31163":24.5048654726,"31164":24.478784781,"31165":24.4521653345,"31166":24.4250117522,"31167":24.3973294098,"31168":24.3691244555,"31169":24.3404038142,"31170":24.3111751831,"31171":24.2814470166,"31172":24.2512285033,"31173":24.2205295336,"31174":24.1893606601,"31175":24.1577330506,"31176":24.1256584347,"31177":24.0931490445,"31178":24.0602175505,"31179":24.0268769927,"31180":23.9931407088,"31181":23.959022259,"31182":23.9245353495,"31183":23.889693754,"31184":23.8545112359,"31185":23.8190014693,"31186":23.7831779627,"31187":23.7470539835,"31188":23.7106424849,"31189":23.6739560369,"31190":23.6370067598,"31191":23.5998062631,"31192":23.5623655883,"31193":23.5246951582,"31194":23.4868047304,"31195":23.4487033583,"31196":23.4103993573,"31197":23.3719002786,"31198":23.333212889,"31199":23.2943431578,"31200":23.2552962507,"31201":23.2160765303,"31202":23.1766875633,"31203":23.137132135,"31204":23.097412269,"31205":23.057529254,"31206":23.0174836756,"31207":22.9772754542,"31208":22.9369038876,"31209":22.8963676974,"31210":22.8556650811,"31211":22.8147937657,"31212":22.7737510659,"31213":22.7325339441,"31214":22.6911390716,"31215":22.6495628926,"31216":22.6078016874,"31217":22.5658516363,"31218":22.5237088837,"31219":22.4813696,"31220":22.4388300431,"31221":22.3960866172,"31222":22.3531359297,"31223":22.3099748446,"31224":22.2666005332,"31225":22.2230105206,"31226":22.1792027285,"31227":22.1351755138,"31228":22.0909277021,"31229":22.0464586169,"31230":22.0017681038,"31231":21.9568565493,"31232":21.9117248949,"31233":21.8663746453,"31234":21.820807872,"31235":21.775027211,"31236":21.729035856,"31237":21.6828375458,"31238":21.636436547,"31239":21.589837632,"31240":21.5430460519,"31241":21.4960675053,"31242":21.4489081025,"31243":21.4015743259,"31244":21.3540729861,"31245":21.3064111758,"31246":21.2585962187,"31247":21.2106356169,"31248":21.1625369953,"31249":21.1143080439,"31250":21.0659564579,"31251":21.0174898765,"31252":20.9689158213,"31253":20.9202416325,"31254":20.8714744063,"31255":20.8226209311,"31256":20.773687625,"31257":20.724680474,"31258":20.6756049706,"31259":20.6264660554,"31260":20.5772680595,"31261":20.5280146498,"31262":20.4787087773,"31263":20.4293526278,"31264":20.3799475767,"31265":20.3304941473,"31266":20.2809919729,"31267":20.2314397638,"31268":20.1818352787,"31269":20.1321753003,"31270":20.0824556174,"31271":20.0326710102,"31272":19.9828152429,"31273":19.9328810605,"31274":19.8828601914,"31275":19.8327433553,"31276":19.7825202773,"31277":19.7321797066,"31278":19.6817094406,"31279":19.6310963548,"31280":19.5803264371,"31281":19.529384827,"31282":19.4782558593,"31283":19.4269231123,"31284":19.3753694593,"31285":19.3235771242,"31286":19.2715277401,"31287":19.2192024106,"31288":19.1665817732,"31289":19.1136460652,"31290":19.0603751907,"31291":19.0067487886,"31292":18.9527463013,"31293":18.8983470437,"31294":18.8435302716,"31295":18.7882752497,"31296":18.7325613183,"31297":18.6763679589,"31298":18.6196748576,"31299":18.5624619664,"31300":18.5047095626,"31301":18.4463983047,"31302":18.3875092863,"31303":18.3280240863,"31304":18.267924815,"31305":18.2071941587,"31306":18.1458154217,"31307":18.0837725639,"31308":18.0210502314,"31309":17.9576337877,"31310":17.8935093413,"31311":17.8286637687,"31312":17.763084735,"31313":17.6967607122,"31314":17.6296809929,"31315":17.5618357035,"31316":17.493215813,"31317":17.423813141,"31318":17.3536203627,"31319":17.2826310132,"31320":17.2108394893,"31321":17.1387141412,"31322":17.0669030457,"31323":16.9957867249,"31324":16.9253103439,"31325":16.8554988393,"31326":16.7863024047,"31327":16.7177594939,"31328":16.6498207898,"31329":16.5825231216,"31330":16.515819233,"31331":16.4497440608,"31332":16.3842524731,"31333":16.3193774889,"31334":16.2550761094,"31335":16.1913794301,"31336":16.1282465811,"31337":16.0657067405,"31338":16.0037211517,"31339":15.9423170924,"31340":15.8814578927,"31341":15.8211689576,"31342":15.7614156678,"31343":15.7022215923,"31344":15.6435541166,"31345":15.5854350198,"31346":15.5278336383,"31347":15.4707700148,"31348":15.4142153756,"31349":15.3581880873,"31350":15.3026611985,"31351":15.2476514661,"31352":15.1931336884,"31353":15.1391230834,"31354":15.0855961224,"31355":15.032566559,"31356":14.9800124576,"31357":14.9279461848,"31358":14.8763473162,"31359":14.82522691,"31360":14.7745659703,"31361":14.7243743266,"31362":14.6746343281,"31363":14.6253546551,"31364":14.5765189193,"31365":14.5281347306,"31366":14.4801868821,"31367":14.43268199,"31368":14.38560595,"31369":14.3389644592,"31370":14.2927444392,"31371":14.2469507403,"31372":14.2015712367,"31373":14.1566100005,"31374":14.1120557884,"31375":14.0679119605,"31376":14.0241680887,"31377":13.9808268833,"31378":13.937878669,"31379":13.8953255643,"31380":13.8531585878,"31381":13.8113793209,"31382":13.7699794209,"31383":13.728959983,"31384":13.6883132517,"31385":13.6480398834,"31386":13.6081326623,"31387":13.5685918491,"31388":13.5294107241,"31389":13.4905891923,"31390":13.4521209896,"31391":13.414005702,"31392":13.3762374839,"31393":13.3388156358,"31394":13.3017346966,"31395":13.2649937117,"31396":13.2285875736,"31397":13.1925151005,"31398":13.1567715097,"31399":13.1213554176,"31400":13.0862623408,"31401":13.0514907162,"31402":13.0170363361,"31403":12.9828974791,"31404":12.9490701915,"31405":12.9155526083,"31406":12.882341008,"31407":12.8494333174,"31408":12.8168260019,"31409":12.7845169516,"31410":12.7525028807,"31411":12.7207815957,"31412":12.6893499937,"31413":12.6582058015,"31414":12.6273460864,"31415":12.5967685071,"31416":12.566470288,"31417":12.5364490308,"31418":12.5067021055,"31419":12.4772270651,"31420":12.4480214186,"31421":12.4190826715,"31422":12.3904084864,"31423":12.3619964718,"31424":12.3338442439,"31425":12.3059494171,"31426":12.2783096409,"31427":12.2509225732,"31428":12.2237859082,"31429":12.196897347,"31430":12.1702546254,"31431":12.1438554872,"31432":12.1176977088,"31433":12.0917790756,"31434":12.0660974043,"31435":12.0406505211,"31436":12.0154362823,"31437":11.990452554,"31438":11.9656972311,"31439":11.9411682193,"31440":11.9168634032,"31441":11.8927805665,"31442":11.8689171667,"31443":11.8452701592,"31444":11.8218359719,"31445":11.7986105358,"31446":11.7755893176,"31447":11.752767352,"31448":11.7301392732,"31449":11.7076993469,"31450":11.6854415013,"31451":11.6633593584,"31452":11.6414462639,"31453":11.6196953178,"31454":11.598099403,"31455":11.5766512148,"31456":11.5553432884,"31457":11.5341680266,"31458":11.5131177264,"31459":11.4921846046,"31460":11.4713608232,"31461":11.4506385133,"31462":11.4300097983,"31463":11.4094668165,"31464":11.3890017426,"31465":11.3686068077,"31466":11.3482743191,"31467":11.327996679,"31468":11.3077664016,"31469":11.2875761298,"31470":11.2674186506,"31471":11.2472869096,"31472":11.2271740245,"31473":11.2070732973,"31474":11.1869782259,"31475":11.1668825144,"31476":11.1467800826,"31477":11.1266650743,"31478":11.1065318651,"31479":11.0863750682,"31480":11.066189541,"31481":11.0459703891,"31482":11.0257129704,"31483":11.0054128981,"31484":10.9850660428,"31485":10.9646685342,"31486":10.9442167613,"31487":10.923707373,"31488":10.9031372767,"31489":10.8825036377,"31490":10.8618038765,"31491":10.841035667,"31492":10.8201969331,"31493":10.7992858454,"31494":10.7783008173,"31495":10.7572405005,"31496":10.7361037807,"31497":10.7148897724,"31498":10.6935978141,"31499":10.6722274623,"31500":10.6507784861,"31501":10.6292508618,"31502":10.6076447665,"31503":10.5859605725,"31504":10.564198841,"31505":10.5423603165,"31506":10.5204459202,"31507":10.4984567445,"31508":10.4763940469,"31509":10.4542592444,"31510":10.4320539072,"31511":10.409779754,"31512":10.3874386455,"31513":10.3650325801,"31514":10.3425636878,"31515":10.320034226,"31516":10.2974465744,"31517":10.2748032301,"31518":10.2521068034,"31519":10.2293600137,"31520":10.206565685,"31521":10.183726742,"31522":10.1608462067,"31523":10.1379271942,"31524":10.1149729096,"31525":10.0919866445,"31526":10.0689717737,"31527":10.0459317522,"31528":10.0228701117,"31529":9.9997904583,"31530":9.976696469,"31531":9.9535918888,"31532":9.9304805282,"31533":9.9073662601,"31534":9.8842530168,"31535":9.8611447873,"31536":9.8380456144,"31537":9.8149595913,"31538":9.7918908593,"31539":9.7688436036,"31540":9.7458220512,"31541":9.7228304666,"31542":9.699873149,"31543":9.6769544285,"31544":9.6540786621,"31545":9.6312502305,"31546":9.6084735336,"31547":9.5857529866,"31548":9.5630930156,"31549":9.5404980535,"31550":9.5179725353,"31551":9.4955208931,"31552":9.4731475522,"31553":9.450856925,"31554":9.4286534072,"31555":9.4065413716,"31556":9.3845251638,"31557":9.3626090962,"31558":9.3407974431,"31559":9.3190944352,"31560":9.2975042543,"31561":9.2760310275,"31562":9.2546788224,"31563":9.2334516411,"31564":9.2123534155,"31565":9.1913880017,"31566":9.170559175,"31567":9.1498706249,"31568":9.12932595,"31569":9.1089286538,"31570":9.0886821398,"31571":9.0685897074,"31572":9.0486545477,"31573":9.0288797399,"31574":9.0092682476,"31575":8.9898229157,"31576":8.9705464673,"31577":8.9514415013,"31578":8.9325095878,"31579":8.9137505197,"31580":8.8951629888,"31581":8.8767454309,"31582":8.8584962927,"31583":8.8404140315,"31584":8.8224971237,"31585":8.8047440541,"31586":8.787153327,"31587":8.7697234548,"31588":8.752452969,"31589":8.7353404092,"31590":8.7183843335,"31591":8.7015833082,"31592":8.6849359176,"31593":8.6684407541,"31594":8.6520964279,"31595":8.635901557,"31596":8.6198547769,"31597":8.6039547307,"31598":8.588200079,"31599":8.5725894895,"31600":8.557121647,"31601":8.5417952438,"31602":8.5266089886,"31603":8.5115615973,"31604":8.4966518025,"31605":8.4818783433,"31606":8.4672399754,"31607":8.4527354609,"31608":8.4383635782,"31609":8.4241231119,"31610":8.4100128629,"31611":8.3960316377,"31612":8.3821782591,"31613":8.3684515554,"31614":8.3548503709,"31615":8.3413735552,"31616":8.3280199737,"31617":8.3147884969,"31618":8.301678011,"31619":8.2886874069,"31620":8.2758155912,"31621":8.263061475,"31622":8.2504239848,"31623":8.2379020515,"31624":8.2254946213,"31625":8.2132006444,"31626":8.2010190863,"31627":8.1889489163,"31628":8.1769891186,"31629":8.1651386822,"31630":8.1533966104,"31631":8.1417619097,"31632":8.130233592,"31633":8.1188106753,"31634":8.1074922053,"31635":8.0962772315,"31636":8.0851648022,"31637":8.0741539704,"31638":8.0632438072,"31639":8.05243339,"31640":8.0417218085,"31641":8.0311081569,"31642":8.0205915415,"31643":8.010171073,"31644":7.999845874,"31645":7.9896150713,"31646":7.9794778037,"31647":7.9694332137,"31648":7.9594804559,"31649":7.9496186884,"31650":7.9398470905,"31651":7.9301648421,"31652":7.9205711211,"31653":7.911065109,"31654":7.9016460125,"31655":7.892313041,"31656":7.8830654109,"31657":7.8739023388,"31658":7.8648230537,"31659":7.8558267857,"31660":7.8469127772,"31661":7.8380802731,"31662":7.8293285299,"31663":7.8206568064,"31664":7.8120643728,"31665":7.8035505013,"31666":7.7951144751,"31667":7.7867555799,"31668":7.778473112,"31669":7.7702663699,"31670":7.7621346627,"31671":7.7540773018,"31672":7.7460936089,"31673":7.7381829079,"31674":7.7303445326,"31675":7.7225778196,"31676":7.7148821148,"31677":7.7072567666,"31678":7.699701133,"31679":7.6922145744,"31680":7.6847964604,"31681":7.6774461631,"31682":7.6701630635,"31683":7.6629465452,"31684":7.6557960006,"31685":7.6487108246,"31686":7.6416904055,"31687":7.6347341413,"31688":7.6278414442,"31689":7.6210117329,"31690":7.6142444309,"31691":7.6075389673,"31692":7.6008947762,"31693":7.5943112971,"31694":7.5877879747,"31695":7.5813242587,"31696":7.5749196039,"31697":7.5685734702,"31698":7.5622853224,"31699":7.5560546302,"31700":7.5498808684,"31701":7.5437635165,"31702":7.5377020587,"31703":7.5316959842,"31704":7.5257457374,"31705":7.5198611276,"31706":7.5140568066,"31707":7.5083474331,"31708":7.502747492,"31709":7.497271328,"31710":7.4919331362,"31711":7.486746961,"31712":7.4817266938,"31713":7.4768860704,"31714":7.4722386692,"31715":7.4677979089,"31716":7.4635770463,"31717":7.4595891741,"31718":7.4558472187,"31719":7.4523639387,"31720":7.449151922,"31721":7.4462235845,"31722":7.4435911678,"31723":7.4412667373,"31724":7.4392621805,"31725":7.4375892045,"31726":7.436259335,"31727":7.4352839138,"31728":7.4346740975,"31729":7.4344408555,"31730":7.4345949682,"31731":7.4351470258,"31732":7.436107426,"31733":7.4374863732,"31734":7.4392938576,"31735":7.4415396081,"31736":7.4442330452,"31737":7.4473832584,"31738":7.4509989945,"31739":7.4550886487,"31740":7.4596602552,"31741":7.4647214776,"31742":7.4702796004,"31743":7.4763415196,"31744":7.4829137347,"31745":7.49000234,"31746":7.4976130167,"31747":7.5057510256,"31748":7.5144211993,"31749":7.5236279358,"31750":7.533375192,"31751":7.5436664778,"31752":7.5545048505,"31753":7.56589291,"31754":7.5778327944,"31755":7.5903261762,"31756":7.6033742589,"31757":7.6169777745,"31758":7.6311369815,"31759":7.645851663,"31760":7.6611211264,"31761":7.676944203,"31762":7.6933192486,"31763":7.710244144,"31764":7.7277162976,"31765":7.745732647,"31766":7.7642896624,"31767":7.78338335,"31768":7.8030092562,"31769":7.8231624725,"31770":7.8438376407,"31771":7.8650289591,"31772":7.8867301886,"31773":7.9089346602,"31774":7.9316352819,"31775":7.9548245472,"31776":7.9784945433,"31777":8.00263696,"31778":8.027243099,"31779":8.0523038837,"31780":8.0778098689,"31781":8.1037512514,"31782":8.1301178802,"31783":8.1568992683,"31784":8.1840846026,"31785":8.2116627561,"31786":8.2396222993,"31787":8.2679515114,"31788":8.2966383924,"31789":8.325670675,"31790":8.3550358366,"31791":8.3847211107,"31792":8.4147134997,"31793":8.4449997864,"31794":8.4755665461,"31795":8.5064001584,"31796":8.5374868192,"31797":8.5688125527,"31798":8.6003632224,"31799":8.6321245434,"31800":8.6640820937,"31801":8.6962213253,"31802":8.7285275757,"31803":8.7609860789,"31804":8.7935819764,"31805":8.8263003282,"31806":8.8591261234,"31807":8.892044291,"31808":8.9250397104,"31809":8.9580972218,"31810":8.991201637,"31811":9.0243377494,"31812":9.0574903447,"31813":9.090644211,"31814":9.1237841497,"31815":9.1568949856,"31816":9.1899615778,"31817":9.2229688304,"31818":9.2559017033,"31819":9.2887452235,"31820":9.3214844964,"31821":9.3541047173,"31822":9.3865911835,"31823":9.4189293065,"31824":9.4511046247,"31825":9.4831028161,"31826":9.514909712,"31827":9.5465113107,"31828":9.5778937917,"31829":9.6090435307,"31830":9.6399471144,"31831":9.6705913567,"31832":9.7009633142,"31833":9.7310503033,"31834":9.7608399167,"31835":9.7903200414,"31836":9.8194788762,"31837":9.8483049497,"31838":9.876787139,"31839":9.9049146885,"31840":9.9326772284,"31841":9.9600647942,"31842":9.9870678457,"31843":10.0136772856,"31844":10.0398844793,"31845":10.065681273,"31846":10.0910600128,"31847":10.1160135623,"31848":10.1405353209,"31849":10.1646192402,"31850":10.1882598412,"31851":10.2114522294,"31852":10.2341921097,"31853":10.2564758004,"31854":10.2783002455,"31855":10.2996630265,"31856":10.3205623724,"31857":10.3409971686,"31858":10.3609669641,"31859":10.3804719774,"31860":10.3995131005,"31861":10.4180919014,"31862":10.436210625,"31863":10.4538721914,"31864":10.4710801936,"31865":10.4878388919,"31866":10.504153208,"31867":10.5200287153,"31868":10.5354716294,"31869":10.5504887945,"31870":10.5650876701,"31871":10.5792763138,"31872":10.5930633642,"31873":10.6064580203,"31874":10.6194700207,"31875":10.6321096205,"31876":10.6443875664,"31877":10.6563150711,"31878":10.6679037861,"31879":10.6791657731,"31880":10.6901134745,"31881":10.7007596832,"31882":10.7111175113,"31883":10.7212003581,"31884":10.7310218779,"31885":10.7405959472,"31886":10.7499366315,"31887":10.7590581531,"31888":10.7679748571,"31889":10.7767011796,"31890":10.7852516153,"31891":10.7936406855,"31892":10.8018829075,"31893":10.8099927644,"31894":10.8179846756,"31895":10.8258729694,"31896":10.8336718555,"31897":10.8413954001,"31898":10.8490575014,"31899":10.8566718671,"31900":10.8642519938,"31901":10.8718086883,"31902":10.8793448166,"31903":10.8868551479,"31904":10.8943311422,"31905":10.9017639911,"31906":10.9091449949,"31907":10.9164655412,"31908":10.9237170783,"31909":10.9308911498,"31910":10.9379793625,"31911":10.9449734219,"31912":10.951865099,"31913":10.9586462667,"31914":10.965308866,"31915":10.9718449426,"31916":10.978246613,"31917":10.9845061015,"31918":10.9906157049,"31919":10.9965678316,"31920":11.0023550275,"31921":11.0079698003,"31922":11.0134052787,"31923":11.0186537035,"31924":11.0237082624,"31925":11.028561584,"31926":11.0332071298,"31927":11.0376376833,"31928":11.041846953,"31929":11.045827889,"31930":11.0495744524,"31931":11.0530797617,"31932":11.0563380376,"31933":11.0593425687,"31934":11.0620878415,"31935":11.064567317,"31936":11.0667757532,"31937":11.0687067855,"31938":11.0703554486,"31939":11.0717155553,"31940":11.0727824211,"31941":11.0735500389,"31942":11.074014009,"31943":11.0741685081,"31944":11.0740094232,"31945":11.0735311195,"31946":11.0727297723,"31947":11.0715999398,"31948":11.0701380863,"31949":11.0683389686,"31950":11.0661993392,"31951":11.0637141598,"31952":11.0608804698,"31953":11.0576934423,"31954":11.0541504012,"31955":11.0502467378,"31956":11.0459800578,"31957":11.041345978,"31958":11.0363423822,"31959":11.0309651198,"31960":11.025212349,"31961":11.0190801589,"31962":11.0125669779,"31963":11.0056691416,"31964":10.9983853446,"31965":10.990712175,"31966":10.9826485899,"31967":10.9741914356,"31968":10.9653399276,"31969":10.9560911755,"31970":10.9464446501,"31971":10.9363977277,"31972":10.9259501322,"31973":10.9150995089,"31974":10.9038458331,"31975":10.8921870206,"31976":10.8801232971,"31977":10.8676528485,"31978":10.8547761514,"31979":10.84149166,"31980":10.8278001032,"31981":10.8137001998,"31982":10.7991929338,"31983":10.7842772836,"31984":10.7689544922,"31985":10.7532237902,"31986":10.7370866855,"31987":10.7205426517,"31988":10.7035934686,"31989":10.6862388418,"31990":10.6684808319,"31991":10.6503193628,"31992":10.6317567869,"31993":10.6127932305,"31994":10.5934313509,"31995":10.5736714578,"31996":10.5535165292,"31997":10.5329670366,"31998":10.512026297,"31999":10.4906949181,"32000":8.1479412736,"32001":8.084134765,"32002":8.0201974342,"32003":7.9561449148,"32004":7.8919920604,"32005":7.8277545932,"32006":7.7634473704,"32007":7.69915672,"32008":7.6350536229,"32009":7.5713241895,"32010":7.508134349,"32011":7.4456301136,"32012":7.383940594,"32013":7.3231800164,"32014":7.2634495277,"32015":7.2048386945,"32016":7.1474267689,"32017":7.0912837472,"32018":7.0364712592,"32019":6.9830433101,"32020":6.9310469027,"32021":6.880522556,"32022":6.8315047435,"32023":6.7840222584,"32024":6.7380985287,"32025":6.6937518822,"32026":6.6509957836,"32027":6.6098390382,"32028":6.5702859841,"32029":6.5323366627,"32030":6.4959869901,"32031":6.4612289147,"32032":6.4280505843,"32033":6.3964365083,"32034":6.3663677203,"32035":6.3378219561,"32036":6.3107738342,"32037":6.2851950429,"32038":6.2610545351,"32039":6.2383187317,"32040":6.2169517316,"32041":6.1969155294,"32042":6.1781702386,"32043":6.1606743207,"32044":6.1443848178,"32045":6.1292575892,"32046":6.1152475485,"32047":6.1023089031,"32048":6.0903953912,"32049":6.0794605181,"32050":6.0694577887,"32051":6.0603409349,"32052":6.0520641387,"32053":6.0445822468,"32054":6.0378509784,"32055":6.0318271231,"32056":6.0264687299,"32057":6.021735285,"32058":6.0175878782,"32059":6.0139893575,"32060":6.0109044715,"32061":6.0082999985,"32062":6.0061448627,"32063":6.0044102375,"32064":6.0030696346,"32065":6.0020989801,"32066":6.0014766777,"32067":6.0011836577,"32068":6.0012034139,"32069":6.0015220279,"32070":6.0021281801,"32071":6.00301315,"32072":6.0041708042,"32073":6.0055975742,"32074":6.0072924234,"32075":6.009256804,"32076":6.0114946057,"32077":6.0140120947,"32078":6.0168178456,"32079":6.0199226657,"32080":6.0233395124,"32081":6.0270834053,"32082":6.0311713325,"32083":6.0356221524,"32084":6.0404564915,"32085":6.0456966389,"32086":6.051366438,"32087":6.0574911761,"32088":6.0640974725,"32089":6.0712131654,"32090":6.0788671985,"32091":6.0870895076,"32092":6.0959109079,"32093":6.1053629819,"32094":6.1154779688,"32095":6.1262886559,"32096":6.1378282717,"32097":6.1501303819,"32098":6.1632287875,"32099":6.1771574264,"32100":6.191950278,"32101":6.207641271,"32102":6.2242641948,"32103":6.2418526147,"32104":6.2604397908,"32105":6.2800586005,"32106":6.3007414651,"32107":6.3225202806,"32108":6.3454263516,"32109":6.3694903301,"32110":6.3947421573,"32111":6.4212110102,"32112":6.4487503748,"32113":6.4756926786,"32114":6.5024307637,"32115":6.5287887665,"32116":6.5548749048,"32117":6.5806550108,"32118":6.606165695,"32119":6.6314077008,"32120":6.6563991682,"32121":6.6811489489,"32122":6.7056699011,"32123":6.7299722001,"32124":6.7540666466,"32125":6.7779629818,"32126":6.8016707046,"32127":6.8251986432,"32128":6.8485551549,"32129":6.8717480169,"32130":6.8947844765,"32131":6.9176712266,"32132":6.9404144228,"32133":6.9630196844,"32134":6.9854921071,"32135":7.0078362741,"32136":7.0300562708,"32137":7.0521557016,"32138":7.0741377087,"32139":7.0960049916,"32140":7.1177598294,"32141":7.1394041036,"32142":7.1609393225,"32143":7.1823666455,"32144":7.2036869096,"32145":7.2249006552,"32146":7.2460081529,"32147":7.2670094301,"32148":7.2879042977,"32149":7.3086923769,"32150":7.3293731251,"32151":7.3499458619,"32152":7.3704097943,"32153":7.3907640407,"32154":7.4110076547,"32155":7.4311396475,"32156":7.4511590096,"32157":7.4710647305,"32158":7.490855818,"32159":7.5105313157,"32160":7.5300903193,"32161":7.5495319912,"32162":7.5688555736,"32163":7.5880604005,"32164":7.6071459075,"32165":7.6261116404,"32166":7.6449572623,"32167":7.6636825588,"32168":7.6822874416,"32169":7.7007719514,"32170":7.7191362581,"32171":7.7373806604,"32172":7.755505584,"32173":7.7735115776,"32174":7.7913993091,"32175":7.8091695593,"32176":7.826823215,"32177":7.8443612616,"32178":7.8617847739,"32179":7.8790949069,"32180":7.8962928853,"32181":7.9133799929,"32182":7.9303575615,"32183":7.9472269589,"32184":7.9639895773,"32185":7.9806468215,"32186":7.9972000969,"32187":8.0136507975,"32188":8.0300002945,"32189":8.0462499253,"32190":8.062400982,"32191":8.0784547017,"32192":8.0944122566,"32193":8.1102747452,"32194":8.1260431838,"32195":8.1417184994,"32196":8.1573015231,"32197":8.1727929846,"32198":8.1881935078,"32199":8.2035036074,"32200":8.218723686,"32201":8.2338540331,"32202":8.2488948245,"32203":8.2638461231,"32204":8.2787078806,"32205":8.29347994,"32206":8.3081620393,"32207":8.3227538162,"32208":8.3372548132,"32209":8.3516644839,"32210":8.3659822,"32211":8.3802072586,"32212":8.3943388904,"32213":8.4083762685,"32214":8.422318517,"32215":8.4361647209,"32216":8.449913935,"32217":8.4635651942,"32218":8.4771175231,"32219":8.4905699454,"32220":8.503921494,"32221":8.5171712204,"32222":8.5303182036,"32223":8.5433615589,"32224":8.5563004467,"32225":8.5691340801,"32226":8.5818617324,"32227":8.5944827436,"32228":8.6069965271,"32229":8.6194025745,"32230":8.6317004607,"32231":8.6438898476,"32232":8.6559704874,"32233":8.6679422248,"32234":8.6798049988,"32235":8.691558843,"32236":8.7032038854,"32237":8.7147403479,"32238":8.7261685442,"32239":8.7374888769,"32240":8.7487018345,"32241":8.7598079872,"32242":8.7708079817,"32243":8.7817025356,"32244":8.7924924313,"32245":8.8031785091,"32246":8.813761659,"32247":8.8242428137,"32248":8.8346229387,"32249":8.8449030246,"32250":8.8550840764,"32251":8.8651671045,"32252":8.8751531144,"32253":8.8850430964,"32254":8.894838015,"32255":8.9045387985,"32256":8.9141463283,"32257":8.9236614284,"32258":8.9330848547,"32259":8.942417285,"32260":8.9516593087,"32261":8.960811417,"32262":8.9698739934,"32263":8.9788473048,"32264":8.9877314927,"32265":8.9965265655,"32266":9.0052323906,"32267":9.0138486881,"32268":9.0223750244,"32269":9.0308108068,"32270":9.0391552791,"32271":9.0474075178,"32272":9.0555664292,"32273":9.063630747,"32274":9.0715990318,"32275":9.0794696702,"32276":9.087240876,"32277":9.0949106915,"32278":9.10247699,"32279":9.1099374791,"32280":9.1172897053,"32281":9.1245310586,"32282":9.1316587789,"32283":9.1386699621,"32284":9.1455615682,"32285":9.1523304286,"32286":9.1589732554,"32287":9.1654866504,"32288":9.1718671148,"32289":9.1781110596,"32290":9.1842148158,"32291":9.1901746454,"32292":9.1959867525,"32293":9.2016472946,"32294":9.2071523933,"32295":9.2124981464,"32296":9.2176806383,"32297":9.2226959516,"32298":9.2275401781,"32299":9.2322094288,"32300":9.236699845,"32301":9.2410076078,"32302":9.2451289482,"32303":9.2490601557,"32304":9.2527973752,"32305":9.2563370828,"32306":9.2596760706,"32307":9.2628110162,"32308":9.2657383124,"32309":9.2684549343,"32310":9.2709577531,"32311":9.2732438137,"32312":9.2753102249,"32313":9.2771543577,"32314":9.2787735509,"32315":9.2801654072,"32316":9.281327533,"32317":9.2822577996,"32318":9.282954092,"32319":9.2834145585,"32320":9.2836373706,"32321":9.2836982113,"32322":9.2837025775,"32323":9.2837131885,"32324":9.2837220504,"32325":9.2837342498,"32326":9.2837425896,"32327":9.2837543242,"32328":9.2837623221,"32329":9.2837735528,"32330":9.2837812062,"32331":9.2837919238,"32332":9.2837992273,"32333":9.2838094264,"32334":9.2838163763,"32335":9.2838260546,"32336":9.2838326495,"32337":9.2838418075,"32338":9.2838480477,"32339":9.283856689,"32340":9.2838625769,"32341":9.2838707076,"32342":9.2838762475,"32343":9.2838838763,"32344":9.2838890741,"32345":9.2838962121,"32346":9.2839010754,"32347":9.2839077358,"32348":9.2839122736,"32349":9.2839184715,"32350":9.2839226941,"32351":9.2839284461,"32352":9.2839323648,"32353":9.283937689,"32354":9.2839413162,"32355":9.2839462316,"32356":9.2839495802,"32357":9.2839541068,"32358":9.2839571904,"32359":9.2839613486,"32360":9.2839641812,"32361":9.2839679917,"32362":9.2839705874,"32363":9.2839740711,"32364":9.283976444,"32365":9.2839796216,"32366":9.2839817859,"32367":9.2839846776,"32368":9.2839866471,"32369":9.2839892729,"32370":9.2839910613,"32371":9.2839934404,"32372":9.2839950606,"32373":9.2839972115,"32374":9.2839986763,"32375":9.2840006167,"32376":9.284001938,"32377":9.2840036847,"32378":9.2840048741,"32379":9.2840064429,"32380":9.2840075111,"32381":9.284008917,"32382":9.284009874,"32383":9.2840111308,"32384":9.2840119863,"32385":9.284013107,"32386":9.2840138696,"32387":9.2840148661,"32388":9.2840155442,"32389":9.2840164276,"32390":9.2840170285,"32391":9.2840178089,"32392":9.2840183397,"32393":9.2840190265,"32394":9.2840194934,"32395":9.2840200951,"32396":9.284020504,"32397":9.2840210284,"32398":9.2840213846,"32399":9.2840218388,"32400":9.2840221471,"32401":9.2840225375,"32402":9.2840228023,"32403":9.284023135,"32404":9.2840233603,"32405":9.2840228616,"32406":9.2840224314,"32407":9.2840058457,"32408":9.283992688,"32409":9.2839751414,"32410":9.2839626207,"32411":9.2839454798,"32412":9.2839333041,"32413":9.2839166248,"32414":9.2839047805,"32415":9.2838885619,"32416":9.2838770462,"32417":9.2838612844,"32418":9.2838500943,"32419":9.2838347843,"32420":9.2838239167,"32421":9.2838090527,"32422":9.2838048094,"32423":9.2837954212,"32424":9.2837911495,"32425":9.2837809589,"32426":9.2837757502,"32427":9.2837652826,"32428":9.2837594894,"32429":9.2837488069,"32430":9.2837424533,"32431":9.2837315742,"32432":9.2837246909,"32433":9.2837136311,"32434":9.2837062482,"32435":9.2836950225,"32436":9.2836871695,"32437":9.2836757916,"32438":9.2836674972,"32439":9.2836559803,"32440":9.2836373395,"32441":9.2835907807,"32442":9.283462043,"32443":9.2831886682,"32444":9.2827112937,"32445":9.2819735581,"32446":9.2809221455,"32447":9.2795067944,"32448":9.277680303,"32449":9.2753985283,"32450":9.2726203763,"32451":9.2693077868,"32452":9.2654257108,"32453":9.2609420816,"32454":9.25582778,"32455":9.2500565932,"32456":9.2436051683,"32457":9.2364529603,"32458":9.2285821749,"32459":9.2199777066,"32460":9.2106270724,"32461":9.2005203403,"32462":9.1896500554,"32463":9.178011161,"32464":9.1656009169,"32465":9.1524188143,"32466":9.1384664889,"32467":9.1237476299,"32468":9.1082678888,"32469":9.0920347848,"32470":9.0750576098,"32471":9.0573473314,"32472":9.0389164958,"32473":9.0197791298,"32474":8.9999506422,"32475":8.9794477262,"32476":8.9582882611,"32477":8.9364912158,"32478":8.9140765525,"32479":8.8910651318,"32480":8.8674786198,"32481":8.8433393963,"32482":8.8186704662,"32483":8.7934953721,"32484":8.7678381101,"32485":8.7417230487,"32486":8.7151748499,"32487":8.6882183945,"32488":8.6608787104,"32489":8.633180904,"32490":8.6051500966,"32491":8.5768113631,"32492":8.548189676,"32493":8.5193098528,"32494":8.4901965073,"32495":8.4608740057,"32496":8.4313664262,"32497":8.401697523,"32498":8.3718906946,"32499":8.3419689555,"32500":8.3119549124,"32501":8.2818707443,"32502":8.2517381858,"32503":8.2215785141,"32504":8.1914125402,"32505":8.161260602,"32506":8.1311425613,"32507":8.1010778037,"32508":8.0710852406,"32509":8.0411833135,"32510":8.0113900014,"32511":7.9817228287,"32512":7.9521988758,"32513":7.9228347905,"32514":7.8936468008,"32515":7.8646507283,"32516":7.8358620024,"32517":7.8072956751,"32518":7.7789664353,"32519":7.7508886234,"32520":7.723076246,"32521":7.6955429891,"32522":7.6683022313,"32523":7.6413670564,"32524":7.6147502637,"32525":7.5884643785,"32526":7.5625216607,"32527":7.5369341115,"32528":7.5117134793,"32529":7.4868712637,"32530":7.4624187176,"32531":7.4383668479,"32532":7.4147264146,"32533":7.3915079275,"32534":7.3687216416,"32535":7.3463775511,"32536":7.324485381,"32537":7.3030545779,"32538":7.2820942983,"32539":7.2616133966,"32540":7.2416204109,"32541":7.2221235477,"32542":7.203130666,"32543":7.18464926,"32544":7.1666864412,"32545":7.1492489194,"32546":7.1323429843,"32547":7.1159744852,"32548":7.1001488123,"32549":7.0848708766,"32550":7.0701450908,"32551":7.0559753507,"32552":7.0423650164,"32553":7.0293168956,"32554":7.0168332263,"32555":7.0049156621,"32556":6.9935652581,"32557":6.9827824579,"32558":6.9725670837,"32559":6.9629183262,"32560":6.9538347386,"32561":6.9453142308,"32562":6.9373540673,"32563":6.9299508661,"32564":6.9231006016,"32565":6.9167986081,"32566":6.9110395875,"32567":6.9058176185,"32568":6.9011261693,"32569":6.8969581119,"32570":6.8933057398,"32571":6.890160788,"32572":6.8875144555,"32573":6.8853574302,"32574":6.8836799163,"32575":6.8824716636,"32576":6.8817219995,"32577":6.8814198621,"32578":6.8813687687,"32579":6.8813653487,"32580":6.8813637724,"32581":6.8813604783,"32582":6.8813589195,"32583":6.8813556044,"32584":6.881354015,"32585":6.8813506883,"32586":6.8813490671,"32587":6.8813457292,"32588":6.8813440776,"32589":6.8813407294,"32590":6.8813390499,"32591":6.8813356926,"32592":6.8813339888,"32593":6.8813306241,"32594":6.8813289004,"32595":6.8813255308,"32596":6.8813237925,"32597":6.8813204207,"32598":6.8813186739,"32599":6.8813153032,"32600":6.8813135544,"32601":6.8813101884,"32602":6.8813084449,"32603":6.8813050875,"32604":6.8813033565,"32605":6.881300012,"32606":6.881298301,"32607":6.8812949735,"32608":6.88129329,"32609":6.8812899838,"32610":6.881288335,"32611":6.8812850541,"32612":6.8812834469,"32613":6.8812801953,"32614":6.8812786358,"32615":6.8812754172,"32616":6.8812739108,"32617":6.8812707283,"32618":6.8812692795,"32619":6.8812661359,"32620":6.881264748,"32621":6.8812616455,"32622":6.8812603209,"32623":6.8812572608,"32624":6.8812560004,"32625":6.8812529835,"32626":6.881251787,"32627":6.8812488133,"32628":6.8812476788,"32629":6.8812449242,"32630":6.8812439914,"32631":6.8812412932,"32632":6.881238519,"32633":6.8812341787,"32634":6.8812330385,"32635":6.8812304295,"32636":6.8812276577,"32637":6.8812233195,"32638":6.8812202482,"32639":6.881215935,"32640":6.8812128639,"32641":6.8812085594,"32642":6.881205494,"32643":6.8812012005,"32644":6.8811981431,"32645":6.8811938635,"32646":6.8811908163,"32647":6.8811865538,"32648":6.8811835191,"32649":6.8811792768,"32650":6.8811781725,"32651":6.8811756458,"32652":6.881172942,"32653":6.8811687289,"32654":6.8811675358,"32655":6.8811649612,"32656":6.8811639931,"32657":6.8811613691,"32658":6.8811603274,"32659":6.8811574974,"32660":6.8811562346,"32661":6.8811533453,"32662":6.8811519916,"32663":6.8811490538,"32664":6.8811476003,"32665":6.8811446109,"32666":6.8811430527,"32667":6.8811400087,"32668":6.8811383428,"32669":6.8811352424,"32670":6.8811334675,"32671":6.8811303095,"32672":6.881128426,"32673":6.8811252106,"32674":6.8811232204,"32675":6.8811199485,"32676":6.8811178555,"32677":6.881114529,"32678":6.8811123384,"32679":6.8811089602,"32680":6.8811066788,"32681":6.8811032527,"32682":6.8811008885,"32683":6.881097419,"32684":6.8810949814,"32685":6.8810914737,"32686":6.8810858762,"32687":6.8810800906,"32688":6.8810743717,"32689":6.8810685972,"32690":6.8810627964,"32691":6.8810569691,"32692":6.8810511211,"32693":6.8810452572,"32694":6.881039382,"32695":6.8810335006,"32696":6.8810276177,"32697":6.8810217381,"32698":6.8810158665,"32699":6.8810100074,"32700":6.8810041655,"32701":6.8809983451,"32702":6.8809925504,"32703":6.8809867856,"32704":6.8811760374,"32705":6.8833255461,"32706":6.8870164505,"32707":6.8924570374,"32708":6.8995414185,"32709":6.9083201925,"32710":6.9187651144,"32711":6.930886762,"32712":6.9446757033,"32713":6.9601319136,"32714":6.9772500683,"32715":6.9960268976,"32716":7.0164575106,"32717":7.0385372348,"32718":7.0622606982,"32719":7.0876222896,"32720":7.1146159311,"32721":7.1432351933,"32722":7.1734732405,"32723":7.2053228601,"32724":7.2387764505,"32725":7.2738260301,"32726":7.3104632353,"32727":7.3486793245,"32728":7.3884651794,"32729":7.4298113072,"32730":7.4727078432,"32731":7.5171445528,"32732":7.5631108342,"32733":7.6105957207,"32734":7.6595840974,"32735":7.7100539452,"32736":7.7619791809,"32737":7.8153321301,"32738":7.870083778,"32739":7.9262037208,"32740":7.9836601812,"32741":8.0424200162,"32742":8.1024487301,"32743":8.1637104917,"32744":8.2261681544,"32745":8.2897832813,"32746":8.3545161729,"32747":8.4203258993,"32748":8.4871703358,"32749":8.5550062024,"32750":8.6237891062,"32751":8.6934735875,"32752":8.7640131695,"32753":8.8353604102,"32754":8.9074669578,"32755":8.9802836083,"32756":9.0537603662,"32757":9.1278465063,"32758":9.2024906388,"32759":9.2776407748,"32760":9.3532443943,"32761":9.4292485147,"32762":9.5055997606,"32763":9.5822444339,"32764":9.659128585,"32765":9.7361980828,"32766":9.8133986863,"32767":9.8906761143,"32768":9.9679761151,"32769":10.0452445356,"32770":10.1224273884,"32771":10.1994709187,"32772":10.2763216685,"32773":10.3529265402,"32774":10.4292328571,"32775":10.5051884227,"32776":10.5807415777,"32777":10.6558412539,"32778":10.7304370262,"32779":10.8044791621,"32780":10.877918668,"32781":10.9507073328,"32782":11.0227977691,"32783":11.0941434511,"32784":11.1646987495,"32785":11.2344189638,"32786":11.3032603517,"32787":11.3711801549,"32788":11.438136623,"32789":11.5040890342,"32790":11.568997713,"32791":11.6328240457,"32792":11.6955304929,"32793":11.7570806006,"32794":11.8174390076,"32795":11.8765714521,"32796":11.9344447761,"32797":11.9910269274,"32798":12.0462869612,"32799":12.1001950401,"32800":12.1527224323,"32801":12.2038415109,"32802":12.2535257507,"32803":12.3017497266,"32804":12.3484891111,"32805":12.3937206727,"32806":12.4374222751,"32807":12.4795728774,"32808":12.5201525359,"32809":12.5591424072,"32810":12.596524754,"32811":12.6322829529,"32812":12.6664015047,"32813":12.6988660478,"32814":12.7296633748,"32815":12.7587814521,"32816":12.7862094435,"32817":12.811937737,"32818":12.8359579759,"32819":12.8582630929,"32820":12.8788473493,"32821":12.8977063768,"32822":12.9148372239,"32823":12.9302384052,"32824":12.9439099548,"32825":12.9558534824,"32826":12.9660722321,"32827":12.9745711443,"32828":12.9813569184,"32829":12.9864380788,"32830":12.98982504,"32831":12.9915301733,"32832":12.9915678728,"32833":12.9899546206,"32834":12.9867090502,"32835":12.9818520073,"32836":12.9754066079,"32837":12.9673982921,"32838":12.9578548729,"32839":12.9468065797,"32840":12.9342860954,"32841":12.9203285861,"32842":12.9049717231,"32843":12.8882556958,"32844":12.8702232161,"32845":12.8509195119,"32846":12.8303923103,"32847":12.8086918107,"32848":12.7858706446,"32849":12.7619838254,"32850":12.7370886852,"32851":12.7112447991,"32852":12.6845138976,"32853":12.6569597672,"32854":12.6286481373,"32855":12.5996465566,"32856":12.570024257,"32857":12.5398520064,"32858":12.509201951,"32859":12.4781474473,"32860":12.4467628845,"32861":12.4151234988,"32862":12.3833051792,"32863":12.3513842672,"32864":12.3194373503,"32865":12.2875410509,"32866":12.2557718115,"32867":12.2242056777,"32868":12.1929180797,"32869":12.1619836139,"32870":12.1314758262,"32871":12.1014669969,"32872":12.0720279303,"32873":12.0432277489,"32874":12.0151336939,"32875":11.9878109329,"32876":11.961322377,"32877":11.9357285065,"32878":11.9110872088,"32879":11.8874536263,"32880":11.8648800192,"32881":11.8434156397,"32882":11.8231066225,"32883":11.8039958886,"32884":11.7861230664,"32885":11.7695244277,"32886":11.7542328405,"32887":11.740277739,"32888":11.7276851102,"32889":11.716477497,"32890":11.706674019,"32891":11.6982904094,"32892":11.6913390683,"32893":11.6858291317,"32894":11.6817665557,"32895":11.6791542154,"32896":11.677992017,"32897":11.6782770228,"32898":11.6800035875,"32899":11.6831635048,"32900":11.6877461632,"32901":11.6932339907,"32902":11.6984348729,"32903":11.7026924121,"32904":11.7059448317,"32905":11.7082074946,"32906":11.7094735355,"32907":11.709747011,"32908":11.709023892,"32909":11.7073082341,"32910":11.7045965802,"32911":11.7008934368,"32912":11.6961958286,"32913":11.6905087301,"32914":11.6838296437,"32915":11.6761640108,"32916":11.6675098113,"32917":11.6578729509,"32918":11.6472518859,"32919":11.6356529837,"32920":11.6230751968,"32921":11.609525321,"32922":11.5950034243,"32923":11.5795159849,"32924":11.5630632241,"32925":11.545652462,"32926":11.5272844698,"32927":11.5079669933,"32928":11.4877012761,"32929":11.4664955,"32930":11.4443513754,"32931":11.421277514,"32932":11.3972760907,"32933":11.3723561392,"32934":11.3465202961,"32935":11.3197780093,"32936":11.292132374,"32937":11.2635932439,"32938":11.2341641691,"32939":11.2038554002,"32940":11.1726709383,"32941":11.1406214218,"32942":11.1077112982,"32943":11.0739515843,"32944":11.0393471687,"32945":11.0039094375,"32946":10.9676437143,"32947":10.9305617448,"32948":10.8926692813,"32949":10.8539784196,"32950":10.8144953329,"32951":10.774232458,"32952":10.7331963811,"32953":10.69139987,"32954":10.6488499153,"32955":10.6055596065,"32956":10.5615363289,"32957":10.5167934844,"32958":10.4713388429,"32959":10.4251861085,"32960":10.378343426,"32961":10.3308247916,"32962":10.2826387137,"32963":10.2337994708,"32964":10.1843159235,"32965":10.1342026222,"32966":10.0834687684,"32967":10.0321291732,"32968":9.9801933674,"32969":9.9276764117,"32970":9.8745881545,"32971":9.820943894,"32972":9.7667537844,"32973":9.7120333496,"32974":9.6567930372,"32975":9.6010485842,"32976":9.5448107199,"32977":9.4880953811,"32978":9.4309135667,"32979":9.3732814001,"32980":9.3152101372,"32981":9.2567160747,"32982":9.1978107128,"32983":9.1385105076,"32984":9.0788271914,"32985":9.0187773653,"32986":8.9583729808,"32987":8.89763077,"32988":8.8365628907,"32989":8.7751861913,"32990":8.7135130232,"32991":8.6515603362,"32992":8.5893406624,"32993":8.5268710379,"32994":8.4641641633,"32995":8.4012371445,"32996":8.3381028391,"32997":8.274778406,"32998":8.2112768488,"32999":8.1476153611,"33000":47.9863408775,"33001":47.9863434891,"33002":47.9863453058,"33003":47.986348162,"33004":47.9863501508,"33005":47.9863533085,"33006":47.9863555092,"33007":47.9867002699,"33008":47.9881555057,"33009":47.9915878625,"33010":47.9977906513,"33011":48.0074821322,"33012":48.0213177112,"33013":48.0398975744,"33014":48.0637735829,"33015":48.0934548923,"33016":48.1294126116,"33017":48.1720835849,"33018":48.221873449,"33019":48.2791590388,"33020":48.344290267,"33021":48.4175915207,"33022":48.4993626876,"33023":48.5898798292,"33024":48.6893956078,"33025":48.7981394599,"33026":48.9163176237,"33027":49.0441129912,"33028":49.1816848954,"33029":49.3291687826,"33030":49.4866758884,"33031":49.6542928429,"33032":49.8320813385,"33033":50.0200777826,"33034":50.2182929757,"33035":50.4267118969,"33036":50.6452935485,"33037":50.8739708698,"33038":51.1126507527,"33039":51.3612141591,"33040":51.6195163483,"33041":51.8873872171,"33042":52.1646317572,"33043":52.4510306306,"33044":52.746340864,"33045":53.0502966597,"33046":53.362610321,"33047":53.6829732889,"33048":54.0110572828,"33049":54.3465155417,"33050":54.6889841564,"33051":55.0380834862,"33052":55.3934196499,"33053":55.7545860827,"33054":56.1211651484,"33055":56.4927297958,"33056":56.8688452498,"33057":57.2490707244,"33058":57.6329611484,"33059":58.020068891,"33060":58.4099454772,"33061":58.8021432823,"33062":59.1962171946,"33063":59.5917262378,"33064":59.9882351409,"33065":60.3853158506,"33066":60.7825489745,"33067":61.1795251502,"33068":61.5758463321,"33069":61.9711269914,"33070":62.3649952231,"33071":62.7570937562,"33072":63.147080865,"33073":63.5346311763,"33074":63.9194363746,"33075":64.3012058006,"33076":64.6796669466,"33077":65.0545658463,"33078":65.4256673636,"33079":65.7927553793,"33080":66.1556328815,"33081":66.5141219609,"33082":66.8680637155,"33083":67.2173180693,"33084":67.5617635093,"33085":67.9012967453,"33086":68.2358322993,"33087":68.5653020277,"33088":68.8896545843,"33089":69.2088548279,"33090":69.5228831815,"33091":69.8317349479,"33092":70.135419589,"33093":70.4339599721,"33094":70.727391591,"33095":71.0157617663,"33096":71.2991288297,"33097":71.5775612982,"33098":71.8511370421,"33099":72.119942453,"33100":72.3840716133,"33101":72.6436254738,"33102":72.8987110425,"33103":73.1494405873,"33104":73.3959308561,"33105":73.6383023183,"33106":73.876678429,"33107":74.1111849187,"33108":74.3419491115,"33109":74.5690992721,"33110":74.7927639847,"33111":75.0130715643,"33112":75.2301495031,"33113":75.4441239655,"33114":75.6551193425,"33115":75.8632578563,"33116":76.0686591976,"33117":76.2714401905,"33118":76.4717144842,"33119":76.6695922731,"33120":76.865180046,"33121":77.0585803645,"33122":77.2498916712,"33123":77.4392081273,"33124":77.6266194787,"33125":77.8122109522,"33126":77.9960631783,"33127":78.1782521423,"33128":78.3588491615,"33129":78.5379208878,"33130":78.7155293341,"33131":78.8917319241,"33132":79.0665815639,"33133":79.2401267328,"33134":79.4124115944,"33135":79.583476123,"33136":79.7533562479,"33137":79.9220840099,"33138":80.0896877319,"33139":80.2561921993,"33140":80.4216188511,"33141":80.5859859775,"33142":80.7493089254,"33143":80.9116003075,"33144":81.0728702154,"33145":81.2331264352,"33146":81.3923746625,"33147":81.5506187181,"33148":81.7078607607,"33149":81.8641014975,"33150":82.0193403896,"33151":82.1735758528,"33152":82.3268054518,"33153":82.4790260877,"33154":82.6302341768,"33155":82.7804258211,"33156":82.9295969694,"33157":83.0777435681,"33158":83.2248617017,"33159":83.3709477221,"33160":83.5159983665,"33161":83.6600108641,"33162":83.8029830301,"33163":83.9449133485,"33164":84.0858010423,"33165":84.2256461323,"33166":84.364449483,"33167":84.5022128375,"33168":84.6389388407,"33169":84.774631051,"33170":84.9092939412,"33171":85.0429328891,"33172":85.1755541581,"33173":85.307164868,"33174":85.4377729576,"33175":85.5673871381,"33176":85.6960168404,"33177":85.823672154,"33178":85.9503637614,"33179":86.0761028658,"33180":86.2009011153,"33181":86.3247705231,"33182":86.4477233852,"33183":86.5697721956,"33184":86.6909295607,"33185":86.8112081135,"33186":86.9306204283,"33187":87.0491789362,"33188":87.1668958435,"33189":87.2837830525,"33190":87.3998520856,"33191":87.5151140139,"33192":87.6295793906,"33193":87.7432581897,"33194":87.8561597503,"33195":87.9682927276,"33196":88.0796650501,"33197":88.190283884,"33198":88.3001556048,"33199":88.4092857761,"33200":88.5176791358,"33201":88.6253395901,"33202":88.7322702146,"33203":88.8384732622,"33204":88.9439501797,"33205":89.0487016291,"33206":89.1527275173,"33207":89.256027031,"33208":89.3585986776,"33209":89.4604403315,"33210":89.5615492852,"33211":89.6619223047,"33212":89.7615556884,"33213":89.8604453294,"33214":89.9585867807,"33215":90.0559753212,"33216":90.1526060242,"33217":90.2484738257,"33218":90.3435735939,"33219":90.4379001963,"33220":90.5314485681,"33221":90.6242137767,"33222":90.7161910855,"33223":90.8073760144,"33224":90.8977643972,"33225":90.9873524351,"33226":91.0761367473,"33227":91.1641144153,"33228":91.2512830248,"33229":91.3376407007,"33230":91.4231861378,"33231":91.5079186263,"33232":91.5918380713,"33233":91.6749450068,"33234":91.7572406039,"33235":91.8387266737,"33236":91.9194056638,"33237":91.9992806495,"33238":92.0783553197,"33239":92.1566339564,"33240":92.23412141,"33241":92.3108230685,"33242":92.3867448219,"33243":92.4618930227,"33244":92.5362744409,"33245":92.6098962149,"33246":92.6827657994,"33247":92.7548909088,"33248":92.8262794576,"33249":92.8969394983,"33250":92.966879156,"33251":93.036106562,"33252":93.1046297845,"33253":93.1724567586,"33254":93.2395952157,"33255":93.3060526116,"33256":93.371836055,"33257":93.4369522367,"33258":93.5014073591,"33259":93.5652070672,"33260":93.6283563813,"33261":93.6908596317,"33262":93.7527203965,"33263":93.8139414414,"33264":93.8745246637,"33265":93.9344710398,"33266":93.9937805766,"33267":94.0524522679,"33268":94.1104840548,"33269":94.167872792,"33270":94.2246142185,"33271":94.280702935,"33272":94.336132386,"33273":94.3908948481,"33274":94.4449814249,"33275":94.4983820468,"33276":94.551085478,"33277":94.6030793288,"33278":94.6543500744,"33279":94.7048830791,"33280":94.7546626268,"33281":94.8036719564,"33282":94.8518933029,"33283":94.8993079434,"33284":94.9458962476,"33285":94.9916377332,"33286":95.036511124,"33287":95.0804944133,"33288":95.1235649286,"33289":95.1656994004,"33290":95.206874032,"33291":95.247064572,"33292":95.2862463872,"33293":95.3243945369,"33294":95.3614838471,"33295":95.3974889845,"33296":95.4323845301,"33297":95.4661450518,"33298":95.4987451753,"33299":95.5301596533,"33300":95.5603634327,"33301":95.5893317193,"33302":95.6170400396,"33303":95.6434643003,"33304":95.6685794153,"33305":95.6923625058,"33306":95.7147927894,"33307":95.7358486862,"33308":95.7555066738,"33309":95.7737471086,"33310":95.7905496118,"33311":95.8058949337,"33312":95.8197642101,"33313":95.8321402943,"33314":95.8430057771,"33315":95.8523449693,"33316":95.8601421583,"33317":95.8663833526,"33318":95.8710545991,"33319":95.8741436529,"33320":95.8756383671,"33321":95.8760465091,"33322":95.8760757992,"33323":95.8761469819,"33324":95.8762064307,"33325":95.8762882684,"33326":95.8763442147,"33327":95.8764229343,"33328":95.8764765869,"33329":95.8765519267,"33330":95.8766032682,"33331":95.8766751656,"33332":95.8767241596,"33333":95.8767925787,"33334":95.876839201,"33335":95.876904126,"33336":95.8769483663,"33337":95.8770098014,"33338":95.8770516625,"33339":95.8771096309,"33340":95.8771491289,"33341":95.877203672,"33342":95.8772408352,"33343":95.8772920116,"33344":95.8773268801,"33345":95.8773747641,"33346":95.8774073886,"33347":95.8774520686,"33348":95.8774825095,"33349":95.8775240867,"33350":95.8775524129,"33351":95.8775909991,"33352":95.877617287,"33353":95.8776530031,"33354":95.877677335,"33355":95.8777103092,"33356":95.8777327726,"33357":95.8777631382,"33358":95.877783824,"33359":95.8778117183,"33360":95.8778307199,"33361":95.877856282,"33362":95.8778736944,"33363":95.8778970639,"33364":95.8779129822,"33365":95.8779342979,"33366":95.8779488166,"33367":95.877968215,"33368":95.8779814273,"33369":95.8779990417,"33370":95.8780110384,"33371":95.878026998,"33372":95.878037867,"33373":95.8780522959,"33374":95.8780621219,"33375":95.8780751388,"33376":95.8780840026,"33377":95.87809572,"33378":95.8781036984,"33379":95.8781142227,"33380":95.878121388,"33381":95.878130819,"33382":95.8781372393,"33383":95.8781456703,"33384":95.878151409,"33385":95.8781589267,"33386":95.8781640429,"33387":95.8781707277,"33388":95.8781752761,"33389":95.8781812021,"33390":95.8781852333,"33391":95.8781904687,"33392":95.8781940291,"33393":95.8781986363,"33394":95.8782017685,"33395":95.8782058049,"33396":95.8782085479,"33397":95.8782120656,"33398":95.8782144549,"33399":95.8782175018,"33400":95.8782195699,"33401":95.8782221892,"33402":95.8782239656,"33403":95.8782261969,"33404":95.8782277087,"33405":95.878224363,"33406":95.878221477,"33407":95.8781102161,"33408":95.8780219513,"33409":95.8779042439,"33410":95.8778202518,"33411":95.8777052658,"33412":95.8776235876,"33413":95.8775116981,"33414":95.8774322434,"33415":95.8773234444,"33416":95.8772461937,"33417":95.8771404585,"33418":95.8770653918,"33419":95.8769626876,"33420":95.8768897845,"33421":95.8767900718,"33422":95.8767616061,"33423":95.8766986273,"33424":95.8766699711,"33425":95.876601609,"33426":95.8765666673,"33427":95.8764964474,"33428":95.8764575846,"33429":95.8763859227,"33430":95.8763433003,"33431":95.8762703198,"33432":95.8762241439,"33433":95.8761499508,"33434":95.876100424,"33435":95.8760251173,"33436":95.8759724369,"33437":95.8758961098,"33438":95.8758404678,"33439":95.8757632076,"33440":95.8756381585,"33441":95.8753258235,"33442":95.8744621966,"33443":95.8726282644,"33444":95.8694257398,"33445":95.8644763911,"33446":95.8574222981,"33447":95.8479258549,"33448":95.8356697567,"33449":95.8203569272,"33450":95.8017104002,"33451":95.7794731548,"33452":95.7534079084,"33453":95.7232968705,"33454":95.6889414596,"33455":95.6501619852,"33456":95.6067972994,"33457":95.5587044183,"33458":95.505758117,"33459":95.4478504998,"33460":95.3848905475,"33461":95.3168036457,"33462":95.2435310924,"33463":95.165029591,"33464":95.081270727,"33465":94.9922404327,"33466":94.8979384392,"33467":94.7983777197,"33468":94.6935839238,"33469":94.5835948051,"33470":94.4684596432,"33471":94.3482386624,"33472":94.223002447,"33473":94.0928313562,"33474":93.9578149391,"33475":93.8180513508,"33476":93.6736467723,"33477":93.5247148339,"33478":93.3713760452,"33479":93.2137572312,"33480":93.0519909777,"33481":92.8862150856,"33482":92.7165720369,"33483":92.5432084722,"33484":92.366274683,"33485":92.1859241175,"33486":92.0023129033,"33487":91.8155993869,"33488":91.6259436911,"33489":91.4335072928,"33490":91.2384526193,"33491":91.0409426672,"33492":90.8411406418,"33493":90.6392096201,"33494":90.435312236,"33495":90.2296103889,"33496":90.0222649765,"33497":89.8134356513,"33498":89.6032806007,"33499":89.3919563512,"33500":89.1796175962,"33501":88.9664170467,"33502":88.7525053052,"33503":88.5380307607,"33504":88.323139506,"33505":88.1079752745,"33506":87.8926793963,"33507":87.6773907732,"33508":87.4622458691,"33509":87.2473787177,"33510":87.0329209423,"33511":86.81900179,"33512":86.6057481755,"33513":86.393284735,"33514":86.1817338878,"33515":85.9712159033,"33516":85.7618489735,"33517":85.5537492875,"33518":85.3470311072,"33519":85.1418068424,"33520":84.9381871247,"33521":84.7362808768,"33522":84.5361953771,"33523":84.3380363188,"33524":84.1419078605,"33525":83.9479126687,"33526":83.7561519503,"33527":83.5667254747,"33528":83.3797315841,"33529":83.1952671928,"33530":83.0134277719,"33531":82.8343073233,"33532":82.6579983384,"33533":82.4845917449,"33534":82.3141768393,"33535":82.1468412062,"33536":81.9826706251,"33537":81.8217489646,"33538":81.6641580638,"33539":81.5099776034,"33540":81.3592849656,"33541":81.2121550848,"33542":81.068660289,"33543":80.9288701347,"33544":80.7928512343,"33545":80.6606670799,"33546":80.5323778621,"33547":80.4080402876,"33548":80.2877073956,"33549":80.1714283755,"33550":80.0592483863,"33551":79.9512083808,"33552":79.8473449352,"33553":79.7476900858,"33554":79.6522711745,"33555":79.5611107051,"33556":79.4742262113,"33557":79.3916301382,"33558":79.3133297384,"33559":79.2393269849,"33560":79.1696185006,"33561":79.104195507,"33562":79.0430437922,"33563":78.9861436994,"33564":78.9334701366,"33565":78.8849926083,"33566":78.8406752693,"33567":78.8004770011,"33568":78.7643515113,"33569":78.7322474555,"33570":78.7041085814,"33571":78.6798738955,"33572":78.6594778509,"33573":78.6428505563,"33574":78.6299180042,"33575":78.6206023188,"33576":78.6148220203,"33577":78.6124923069,"33578":78.6120983372,"33579":78.6120719655,"33580":78.6120598113,"33581":78.612034411,"33582":78.6120223912,"33583":78.6119968288,"33584":78.6119845737,"33585":78.6119589219,"33586":78.6119464209,"33587":78.6119206836,"33588":78.6119079481,"33589":78.6118821307,"33590":78.6118691805,"33591":78.6118432926,"33592":78.6118301549,"33593":78.6118042105,"33594":78.6117909195,"33595":78.6117649366,"33596":78.6117515332,"33597":78.6117255336,"33598":78.6117120643,"33599":78.6116860731,"33600":78.611672589,"33601":78.6116466343,"33602":78.61163319,"33603":78.6116073021,"33604":78.6115939545,"33605":78.6115681652,"33606":78.6115549723,"33607":78.6115293142,"33608":78.6115163334,"33609":78.6114908392,"33610":78.6114781261,"33611":78.6114528276,"33612":78.6114404346,"33613":78.6114153622,"33614":78.6114033369,"33615":78.6113785185,"33616":78.6113669027,"33617":78.6113423631,"33618":78.6113311913,"33619":78.6113069516,"33620":78.6112962502,"33621":78.6112723266,"33622":78.611262113,"33623":78.611238517,"33624":78.6112287985,"33625":78.6112055358,"33626":78.6111963095,"33627":78.6111733798,"33628":78.6111646318,"33629":78.6111433916,"33630":78.6111361985,"33631":78.6111153933,"33632":78.6110940016,"33633":78.6110605341,"33634":78.6110517418,"33635":78.6110316242,"33636":78.6110102514,"33637":78.6109767998,"33638":78.6109531177,"33639":78.6109198587,"33640":78.6108961778,"33641":78.6108629863,"33642":78.6108393498,"33643":78.6108062426,"33644":78.6107826677,"33645":78.610749668,"33646":78.6107261717,"33647":78.6106933038,"33648":78.6106699032,"33649":78.6106371914,"33650":78.6106286766,"33651":78.6106091933,"33652":78.6105883447,"33653":78.6105558576,"33654":78.6105466575,"33655":78.6105268053,"33656":78.61051934,"33657":78.6104991065,"33658":78.6104910739,"33659":78.6104692528,"33660":78.6104595154,"33661":78.610437236,"33662":78.6104267978,"33663":78.6104041448,"33664":78.6103929367,"33665":78.6103698853,"33666":78.6103578703,"33667":78.6103343984,"33668":78.6103215532,"33669":78.6102976456,"33670":78.6102839597,"33671":78.6102596089,"33672":78.610245085,"33673":78.6102202911,"33674":78.6102049452,"33675":78.6101797157,"33676":78.6101635763,"33677":78.6101379263,"33678":78.6101210345,"33679":78.610094986,"33680":78.6100773938,"33681":78.6100509756,"33682":78.6100327455,"33683":78.6100059924,"33684":78.6099871959,"33685":78.609960148,"33686":78.6099169861,"33687":78.6098723734,"33688":78.6098282757,"33689":78.6097837484,"33690":78.6097390186,"33691":78.6096940847,"33692":78.6096489914,"33693":78.6096037745,"33694":78.6095584716,"33695":78.6095131201,"33696":78.6094677572,"33697":78.6094224195,"33698":78.6093771434,"33699":78.6093319645,"33700":78.6092869175,"33701":78.6092420363,"33702":78.6091973537,"33703":78.6091529012,"33704":78.6091087077,"33705":78.6090647874,"33706":78.6090211361,"33707":78.6089777413,"33708":78.6089345883,"33709":78.6088916607,"33710":78.6088489405,"33711":78.6088064074,"33712":78.6087640396,"33713":78.6087218131,"33714":78.6086797022,"33715":78.6086376789,"33716":78.6085957135,"33717":78.6085537744,"33718":78.6085118279,"33719":78.6084698384,"33720":78.6084277688,"33721":78.6083855798,"33722":78.6083432306,"33723":78.6083006788,"33724":78.6082578803,"33725":78.6082147897,"33726":78.6081713602,"33727":78.6081275436,"33728":78.6080832908,"33729":78.6080385515,"33730":78.6079932748,"33731":78.6079474088,"33732":78.6079009011,"33733":78.6078536989,"33734":78.6077785203,"33735":78.6076017644,"33736":78.6072248344,"33737":78.6065422877,"33738":78.6054438547,"33739":78.6038143239,"33740":78.6015338803,"33741":78.5984783804,"33742":78.5945196642,"33743":78.5895258837,"33744":78.5833618488,"33745":78.5758893892,"33746":78.5669677303,"33747":78.556453881,"33748":78.5442030317,"33749":78.5300689606,"33750":78.513904446,"33751":78.4955616828,"33752":78.4748927013,"33753":78.4517497854,"33754":78.4259858901,"33755":78.3974550535,"33756":78.366012805,"33757":78.3315165641,"33758":78.2938260313,"33759":78.2528035672,"33760":78.2083145594,"33761":78.1602277755,"33762":78.1084157003,"33763":78.0527548574,"33764":77.9931261117,"33765":77.9294149548,"33766":77.86151177,"33767":77.7893120768,"33768":77.7127167555,"33769":77.6316322494,"33770":77.5459707463,"33771":77.4556503369,"33772":77.3605951524,"33773":77.2607354786,"33774":77.1560078491,"33775":77.046355116,"33776":76.9317264993,"33777":76.8120776149,"33778":76.6873704823,"33779":76.5575735113,"33780":76.42266147,"33781":76.2826154334,"33782":76.1374227138,"33783":75.9870767745,"33784":75.8315771263,"33785":75.6709292091,"33786":75.5051442586,"33787":75.3342391596,"33788":75.1582362871,"33789":74.9771633362,"33790":74.791053141,"33791":74.5999434862,"33792":74.4038769092,"33793":74.2029004974,"33794":73.9970656791,"33795":73.7864280115,"33796":73.5710469656,"33797":73.3509857108,"33798":73.1263108988,"33799":72.8970924498,"33800":72.6634033421,"33801":72.4253194051,"33802":72.182919119,"33803":71.9362834216,"33804":71.6854955234,"33805":71.4306407325,"33806":71.1718062911,"33807":70.9090812233,"33808":70.6425561979,"33809":70.3723234041,"33810":70.0984764434,"33811":69.8211102383,"33812":69.5403209571,"33813":69.2562059575,"33814":68.9688637472,"33815":68.6783939644,"33816":68.3848973762,"33817":68.0884758962,"33818":67.7892326203,"33819":67.4872718817,"33820":67.1826993229,"33821":66.8756219852,"33822":66.5661484145,"33823":66.254388782,"33824":65.9404550194,"33825":65.6244609658,"33826":65.3065225262,"33827":64.9867578384,"33828":64.6652874477,"33829":64.3422344863,"33830":64.0177248557,"33831":63.6918874095,"33832":63.3648541351,"33833":63.0367603301,"33834":62.7077447728,"33835":62.3779498834,"33836":62.0475218731,"33837":61.7166108795,"33838":61.3853710849,"33839":61.0539608163,"33840":60.7225426236,"33841":60.3912833356,"33842":60.0603540898,"33843":59.7299303362,"33844":59.4001918125,"33845":59.0713224895,"33846":58.7435104857,"33847":58.4169479508,"33848":58.0918309167,"33849":57.7683591159,"33850":57.4467357679,"33851":57.127167333,"33852":56.8098632352,"33853":56.495035553,"33854":56.1828986822,"33855":55.8736689689,"33856":55.5675643167,"33857":55.2648037688,"33858":54.9656070673,"33859":54.6701941924,"33860":54.3787848831,"33861":54.0915981435,"33862":53.8088517361,"33863":53.5307616655,"33864":53.2575416563,"33865":52.9894026273,"33866":52.7265521656,"33867":52.4691940035,"33868":52.2175275027,"33869":51.9717471471,"33870":51.7320420484,"33871":51.4985954678,"33872":51.2715843565,"33873":51.0511789175,"33874":50.8375421927,"33875":50.6308296761,"33876":50.4311889582,"33877":50.2387594007,"33878":50.0536718473,"33879":49.8760483691,"33880":49.7060020489,"33881":49.543636805,"33882":49.3890472553,"33883":49.242318624,"33884":49.1035266903,"33885":48.9727377814,"33886":48.8500088084,"33887":48.7353873457,"33888":48.6289117553,"33889":48.5306113519,"33890":48.4405066118,"33891":48.3586094223,"33892":48.2849233703,"33893":48.2194440692,"33894":48.1621595216,"33895":48.1130505155,"33896":48.0720910516,"33897":48.039248798,"33898":48.014485571,"33899":47.997757836,"33900":47.9890172267,"33901":47.986543527,"33902":47.9863953025,"33903":47.9864075691,"33904":47.9863797231,"33905":47.9863650355,"33906":47.9863426255,"33907":47.9863268766,"33908":47.986304709,"33909":47.9862889353,"33910":47.9862667997,"33911":47.9862510409,"33912":47.9862289263,"33913":47.9862131822,"33914":47.986191086,"33915":47.9861753549,"33916":47.9861532749,"33917":47.9861375555,"33918":47.9861154901,"33919":47.9860997812,"33920":47.9860777982,"33921":47.9860621397,"33922":47.9860423173,"33923":47.9860283601,"33924":47.9860087254,"33925":47.9859947359,"33926":47.9859751267,"33927":47.9859611466,"33928":47.9859415602,"33929":47.9859275951,"33930":47.9859080378,"33931":47.9858940923,"33932":47.9858745719,"33933":47.9858606515,"33934":47.9858411765,"33935":47.9858272873,"33936":47.985807867,"33937":47.9857940155,"33938":47.9857746592,"33939":47.9857608522,"33940":47.9857415692,"33941":47.9857278133,"33942":47.9857086125,"33943":47.9856949139,"33944":47.9856758032,"33945":47.9856621675,"33946":47.9856431538,"33947":47.9856295858,"33948":47.9856106741,"33949":47.9855971775,"33950":47.9855783716,"33951":47.985564949,"33952":47.9855462507,"33953":47.9855329035,"33954":47.9855143131,"33955":47.9855010414,"33956":47.9854825574,"33957":47.9854693604,"33958":47.9854509801,"33959":47.9854378559,"33960":47.9854195756,"33961":47.9854065217,"33962":47.9853883371,"33963":47.9853753505,"33964":47.985357257,"33965":47.9853443346,"33966":47.9853263277,"33967":47.9853134666,"33968":47.9852955424,"33969":47.9852827399,"33970":47.9852648951,"33971":47.9852521492,"33972":47.9852343817,"33973":47.9852216909,"33974":47.9852039995,"33975":47.9851913633,"33976":47.985173748,"33977":47.9851611664,"33978":47.9851436282,"33979":47.9851311019,"33980":47.9851136425,"33981":47.9851011727,"33982":47.9850837947,"33983":47.9850713831,"33984":47.9850540893,"33985":47.9850417378,"33986":47.9850245317,"33987":47.9850122425,"33988":47.9849951281,"33989":47.9849829037,"33990":47.9849658862,"33991":47.9849537301,"33992":47.9849368166,"33993":47.9849247333,"33994":47.9849079341,"33995":47.9848959308,"33996":47.9848792617,"33997":47.9848673491,"33998":47.9848508334,"33999":47.9848390282,"34000":0.0000015587,"34001":0.0000037637,"34002":0.0000016985,"34003":0.0000041471,"34004":0.0000018798,"34005":0.0000046361,"34006":0.0000021118,"34007":0.0000042415,"34008":0.0000019375,"34009":0.0000049074,"34010":0.0000022461,"34011":0.0000057424,"34012":0.0000026337,"34013":0.0000067874,"34014":0.0000031186,"34015":0.0000080897,"34016":0.0000037223,"34017":0.0000097054,"34018":0.0000044707,"34019":0.0000117008,"34020":0.000005394,"34021":0.0000141524,"34022":0.000006527,"34023":0.0000171474,"34024":0.0000079094,"34025":0.0000207837,"34026":0.0000095853,"34027":0.0000251692,"34028":0.0000116036,"34029":0.0000304207,"34030":0.0000140165,"34031":0.0000366621,"34032":0.0000168797,"34033":0.0000005871,"34034":0.0000007112,"34035":0.0000007692,"34036":0.0000008308,"34037":0.0000008956,"34038":0.0000009635,"34039":0.0000010342,"34040":0.0000011078,"34041":0.000001184,"34042":0.0000012628,"34043":0.0000013438,"34044":0.0000014271,"34045":0.0000015123,"34046":0.0000015993,"34047":0.0000016879,"34048":0.000001778,"34049":0.0000018693,"34050":0.0000019616,"34051":0.0000020547,"34052":0.0000021484,"34053":0.0000022426,"34054":0.000002337,"34055":0.0000024315,"34056":0.0000025259,"34057":0.00000262,"34058":0.0000027136,"34059":0.0000028066,"34060":0.0000028988,"34061":0.0000029902,"34062":0.0000030805,"34063":0.0000031697,"34064":0.0000032576,"34065":0.0000033442,"34066":0.0000034293,"34067":0.0000035129,"34068":0.0000035949,"34069":0.0000036752,"34070":0.0000037538,"34071":0.0000038307,"34072":0.0000039057,"34073":0.0000039789,"34074":0.0000040503,"34075":0.0000041199,"34076":0.0000041875,"34077":0.0000042533,"34078":0.0000043173,"34079":0.0000043793,"34080":0.0000044395,"34081":0.0000044979,"34082":0.0000045545,"34083":0.0000046094,"34084":0.0000046624,"34085":0.0000047138,"34086":0.0000047634,"34087":0.0000048115,"34088":0.0000048579,"34089":0.0000049027,"34090":0.000004946,"34091":0.0000049879,"34092":0.0000050283,"34093":0.0000050672,"34094":0.0000051049,"34095":0.0000051411,"34096":0.0000051761,"34097":0.0000052099,"34098":0.0000052424,"34099":0.0000052737,"34100":0.0000053038,"34101":0.0000053328,"34102":0.0000053607,"34103":0.0000053874,"34104":0.0000054131,"34105":0.0000054378,"34106":0.0000054614,"34107":0.0000054839,"34108":0.0000055055,"34109":0.0000055261,"34110":0.0000055457,"34111":0.0000055643,"34112":0.000005582,"34113":0.0000055994,"34114":0.0000056168,"34115":0.0000056341,"34116":0.0000056514,"34117":0.0000056687,"34118":0.0000056859,"34119":0.0000057031,"34120":0.0000057202,"34121":0.0000057373,"34122":0.0000057543,"34123":0.0000057712,"34124":0.000005788,"34125":0.0000058047,"34126":0.0000058213,"34127":0.0000058378,"34128":0.0000058541,"34129":0.0000058703,"34130":0.0000058864,"34131":0.0000059023,"34132":0.000005918,"34133":0.0000059335,"34134":0.0000059489,"34135":0.000005964,"34136":0.000005979,"34137":0.0000059937,"34138":0.0000060082,"34139":0.0000060225,"34140":0.0000060365,"34141":0.0000060503,"34142":0.0000060639,"34143":0.0000060772,"34144":0.0000060902,"34145":0.000006103,"34146":0.0000061156,"34147":0.0000061279,"34148":0.0000061399,"34149":0.0000061518,"34150":0.0000061634,"34151":0.0000061747,"34152":0.0000061859,"34153":0.0000061969,"34154":0.0000062077,"34155":0.0000062183,"34156":0.0000062287,"34157":0.000006239,"34158":0.0000062491,"34159":0.0000062592,"34160":0.0000062691,"34161":0.0000062789,"34162":0.0000062887,"34163":0.0000062984,"34164":0.000006308,"34165":0.0000063176,"34166":0.0000063272,"34167":0.0000063368,"34168":0.0000063464,"34169":0.000006356,"34170":0.0000063656,"34171":0.0000063753,"34172":0.0000063851,"34173":0.0000063949,"34174":0.0000064047,"34175":0.0000064147,"34176":0.0000064248,"34177":0.0000064349,"34178":0.0000064451,"34179":0.0000064555,"34180":0.000006466,"34181":0.0000064765,"34182":0.0000064872,"34183":0.000006498,"34184":0.0000065089,"34185":0.0000065199,"34186":0.000006531,"34187":0.0000065422,"34188":0.0000065535,"34189":0.0000065649,"34190":0.0000065763,"34191":0.0000065878,"34192":0.0000065993,"34193":0.0000066109,"34194":0.0000066224,"34195":0.000006634,"34196":0.0000066455,"34197":0.0000066571,"34198":0.0000066685,"34199":0.00000668,"34200":0.0000066913,"34201":0.0000067026,"34202":0.0000067138,"34203":0.0000067248,"34204":0.0000067358,"34205":0.0000067466,"34206":0.0000067572,"34207":0.0000067677,"34208":0.000006778,"34209":0.0000067882,"34210":0.0000067981,"34211":0.0000068078,"34212":0.0000068173,"34213":0.0000068265,"34214":0.0000068356,"34215":0.0000068443,"34216":0.0000068529,"34217":0.0000068611,"34218":0.0000068691,"34219":0.0000068769,"34220":0.0000068844,"34221":0.0000068916,"34222":0.0000068986,"34223":0.0000069053,"34224":0.0000069118,"34225":0.000006918,"34226":0.000006924,"34227":0.0000069297,"34228":0.0000069352,"34229":0.0000069404,"34230":0.0000069454,"34231":0.0000069502,"34232":0.0000069548,"34233":0.0000069591,"34234":0.0000069632,"34235":0.0000069671,"34236":0.0000069708,"34237":0.0000069743,"34238":0.0000069776,"34239":0.0000069807,"34240":0.0000069836,"34241":0.0000069864,"34242":0.0000069889,"34243":0.0000069913,"34244":0.0000069935,"34245":0.0000069955,"34246":0.0000069974,"34247":0.000006999,"34248":0.0000070005,"34249":0.0000070018,"34250":0.0000070029,"34251":0.0000070038,"34252":0.0000070046,"34253":0.0000070051,"34254":0.0000070053,"34255":0.0000070054,"34256":0.0000070052,"34257":0.0000070047,"34258":0.000007004,"34259":0.0000070029,"34260":0.0000070016,"34261":0.0000069999,"34262":0.0000069979,"34263":0.0000069954,"34264":0.0000069926,"34265":0.0000069893,"34266":0.0000069856,"34267":0.0000069814,"34268":0.0000069767,"34269":0.0000069714,"34270":0.0000069655,"34271":0.0000069591,"34272":0.000006952,"34273":0.0000069442,"34274":0.0000069357,"34275":0.0000069265,"34276":0.0000069165,"34277":0.0000069058,"34278":0.0000068941,"34279":0.0000068817,"34280":0.0000068683,"34281":0.000006854,"34282":0.0000068387,"34283":0.0000068224,"34284":0.0000068051,"34285":0.0000067867,"34286":0.0000067673,"34287":0.0000067467,"34288":0.000006725,"34289":0.0000067022,"34290":0.0000066782,"34291":0.000006653,"34292":0.0000066266,"34293":0.0000065989,"34294":0.00000657,"34295":0.0000065399,"34296":0.0000065085,"34297":0.0000064758,"34298":0.0000064418,"34299":0.0000064065,"34300":0.0000063699,"34301":0.000006332,"34302":0.0000062928,"34303":0.0000062523,"34304":0.0027086036,"34305":0.0027002741,"34306":0.0011190384,"34307":0.0002043876,"34308":0.0028152063,"34309":0.0004246999,"34310":0.0023456358,"34311":0.0011914553,"34312":0.0025827199,"34313":0.0011294564,"34314":0.0024964167,"34315":0.0010903751,"34316":0.0024027227,"34317":0.0010490704,"34318":0.0023042076,"34319":0.0010056979,"34320":0.0022016195,"34321":0.0010086288,"34322":0.0020963791,"34323":0.0009310486,"34324":0.0019954289,"34325":0.000883496,"34326":0.0018850573,"34327":0.0008345748,"34328":0.0017739389,"34329":0.0007853389,"34330":0.0016628852,"34331":0.0007361629,"34332":0.0015527168,"34333":0.0006874064,"34334":0.0014442106,"34335":0.0006394098,"34336":0.0013380872,"34337":0.0005924878,"34338":0.0012349988,"34339":0.0005469252,"34340":0.0011355205,"34341":0.0005029721,"34342":0.0010401437,"34343":0.0004608422,"34344":0.0009492721,"34345":0.0004207102,"34346":0.0008632203,"34347":0.0003827119,"34348":0.000782215,"34349":0.0003469445,"34350":0.0007063978,"34351":0.000313468,"34352":0.0006358306,"34353":0.0002823076,"34354":0.0005705024,"34355":0.0002534566,"34356":0.0005103368,"34357":0.0002268801,"34358":0.0004552008,"34359":0.0002025183,"34360":0.0004049139,"34361":0.0001802911,"34362":0.0003592573,"34363":0.0001601016,"34364":0.0003179828,"34365":0.0001418402,"34366":0.000280821,"34367":0.0001253883,"34368":0.0002474896,"34369":0.0001106217,"34370":0.0002177,"34371":0.0000974136,"34372":0.0001911633,"34373":0.0000856374,"34374":0.0001675958,"34375":0.0000751683,"34376":0.0001467226,"34377":0.0000658859,"34378":0.0001282814,"34379":0.0000576752,"34380":0.0001120245,"34381":0.0000504277,"34382":0.0000977208,"34383":0.0000440418,"34384":0.0000851562,"34385":0.0000384238,"34386":0.0000741347,"34387":0.0000334878,"34388":0.0000644778,"34389":0.0000291553,"34390":0.0000560241,"34391":0.0000253556,"34392":0.0000486291,"34393":0.0000220252,"34394":0.0000421633,"34395":0.0000191072,"34396":0.0000365123,"34397":0.0000165513,"34398":0.0000315745,"34399":0.0000143129,"34400":0.0000272609,"34401":0.0000123526,"34402":0.0000234933,"34403":0.000010636,"34404":0.0000202031,"34405":0.0098949134,"34406":-0.0000249681,"34407":0.2125924101,"34408":-0.0008927013,"34409":0.2066543177,"34410":-0.0008675975,"34411":0.2007760744,"34412":-0.0008426533,"34413":0.1949691041,"34414":-0.0008179353,"34415":0.1892402423,"34416":-0.0007934918,"34417":0.1835958388,"34418":-0.000769366,"34419":0.1780424532,"34420":-0.0007455984,"34421":0.1725869203,"34422":-0.0807827113,"34423":0.1675732534,"34424":-0.0693270017,"34425":0.1676218243,"34426":-0.0583097924,"34427":0.1624859893,"34428":-0.0478062898,"34429":0.1574784579,"34430":-0.0377655933,"34431":0.152607326,"34432":-0.0281824815,"34433":0.147881027,"34434":-0.019052997,"34435":0.1433079724,"34436":-0.0103739833,"34437":0.1388963623,"34438":-0.0021426411,"34439":0.1346539519,"34440":0.1317165818,"34441":0.4728918671,"34442":1.2463907606,"34443":2.4320738166,"34444":4.009627237,"34445":5.9586116556,"34446":8.2585247942,"34447":10.8888574301,"34448":13.8291468876,"34449":17.0590272602,"34450":20.5582766059,"34451":24.3068611548,"34452":28.2849766213,"34453":32.4730867075,"34454":36.851958897,"34455":41.402697636,"34456":46.1067750053,"34457":50.9460589848,"34458":55.9028394137,"34459":60.9598517453,"34460":66.100298696,"34461":71.3078698792,"34462":76.5667595149,"34463":81.8616822957,"34464":87.1778874864,"34465":92.5011713256,"34466":97.8178877908,"34467":103.1149577832,"34468":108.3798767758,"34469":113.6007209682,"34470":118.7661519785,"34471":123.8654200983,"34472":128.8883661345,"34473":133.8254218494,"34474":138.6676090138,"34475":143.4065370805,"34476":148.034399484,"34477":152.5439685723,"34478":156.9285891764,"34479":161.1821708227,"34480":165.2991786005,"34481":169.2746226958,"34482":173.10404661,"34483":176.7835140864,"34484":180.3095947746,"34485":183.6793486709,"34486":186.8903093809,"34487":189.9404662566,"34488":192.8282454746,"34489":195.5524901253,"34490":198.1124393966,"34491":200.5077069432,"34492":202.7382585405,"34493":204.8043891335,"34494":206.706699396,"34495":208.446071921,"34496":210.0236471744,"34497":211.440799346,"34498":212.699112234,"34499":213.8003553036,"34500":214.7464600625,"34501":215.5394968916,"34502":216.1816524735,"34503":216.6752079531,"34504":217.0225179626,"34505":217.2259906366,"34506":217.2880687358,"34507":217.2112119883,"34508":216.9978807511,"34509":216.650521079,"34510":216.1715512813,"34511":215.5633500292,"34512":214.8282460709,"34513":213.9685095896,"34514":212.9863452331,"34515":211.8838868254,"34516":210.6631937593,"34517":209.3262490534,"34518":207.8749590438,"34519":206.3111546708,"34520":204.6365943024,"34521":202.8529680297,"34522":200.9619033553,"34523":198.9649721875,"34524":196.863699041,"34525":194.659570339,"34526":192.3540447011,"34527":189.9485640974,"34528":187.4445657411,"34529":184.8434945902,"34530":182.1468163217,"34531":179.3560306437,"34532":176.4726848043,"34533":173.4983871594,"34534":170.4348206602,"34535":167.2837561211,"34536":164.0470651345,"34537":160.7267324982,"34538":157.3248680273,"34539":153.843717626,"34540":150.2856735007,"34541":146.6532833997,"34542":142.9492587761,"34543":139.1764817722,"34544":135.3380109373,"34545":131.4370855954,"34546":127.477128791,"34547":123.4617487506,"34548":119.3947388073,"34549":115.2800757475,"34550":111.1219165508,"34551":106.9245935059,"34552":102.6926076962,"34553":98.4306208635,"34554":94.1434456702,"34555":89.8360343928,"34556":85.5134660961,"34557":81.1809323443,"34558":76.8437215255,"34559":72.5072018748,"34560":68.176803294,"34561":63.8579980797,"34562":59.5562806805,"34563":55.2771466186,"34564":51.026070716,"34565":46.8084847792,"34566":42.6297549004,"34567":38.4951585418,"34568":34.4098615737,"34569":30.3788954415,"34570":26.4071346376,"34571":22.4992746568,"34572":18.6598106103,"34573":14.893016672,"34574":11.2029265272,"34575":7.5933149847,"34576":4.067680909,"34577":0.6292316179,"34578":-0.0191582472,"34579":0.0608286817,"34580":-0.0230632937,"34581":0.0605138742,"34582":-0.0223941867,"34583":0.0601793473,"34584":-0.0217205934,"34585":0.0598476332,"34586":-0.0210580869,"34587":0.0595228512,"34588":-0.0204229166,"34589":0.0592091508,"34590":-0.0198313564,"34591":0.0589105975,"34592":-0.0192992349,"34593":0.0586310461,"34594":-0.0188414732,"34595":0.0583740203,"34596":-0.0184716443,"34597":0.0581425975,"34598":-0.018201563,"34599":0.0579393057,"34600":-0.0180409217,"34601":0.0577660511,"34602":-0.017996979,"34603":0.0576240451,"34604":-0.0180743103,"34605":0.0575137534,"34606":-0.018274626,"34607":0.0574348688,"34608":-0.0185966604,"34609":0.0573863052,"34610":-0.0190361329,"34611":0.0573662144,"34612":-0.0195857824,"34613":0.0573720218,"34614":-0.0202354697,"34615":0.057400482,"34616":-0.0209723481,"34617":0.0574477506,"34618":-0.0217810946,"34619":0.0575094699,"34620":-0.0226441965,"34621":0.0575808659,"34622":-0.0235422887,"34623":0.0576568527,"34624":-0.0244545319,"34625":0.0577321425,"34626":-0.025359027,"34627":0.0578013581,"34628":-0.0262332568,"34629":0.0552808247,"34630":-0.0270752793,"34631":0.0553414267,"34632":-0.0002256573,"34633":0.0578071837,"34634":-0.0284508869,"34635":0.0553895871,"34636":-0.0002258704,"34637":0.0577582005,"34638":-0.0002355475,"34639":0.0576850215,"34640":-0.0002352524,"34641":0.0575750264,"34642":-0.0002348045,"34643":0.0574258098,"34644":-0.0002341941,"34645":0.0572356098,"34646":-0.0002334137,"34647":0.0570033894,"34648":-0.0002324592,"34649":0.056728867,"34650":-0.0281818738,"34651":0.0540851077,"34652":-0.0002205249,"34653":0.0560556199,"34654":-0.0262999788,"34655":0.0533288561,"34656":-0.0251169625,"34657":0.0528925432,"34658":-0.0237587802,"34659":0.0548618884,"34660":-0.0222413527,"34661":0.0543643342,"34662":-0.0206237272,"34663":0.0538430835,"34664":-0.0189086334,"34665":0.0533034159,"34666":-0.0171204631,"34667":0.0527511182,"34668":-0.0152851543,"34669":0.0521922843,"34670":-0.0134296478,"34671":0.0516332144,"34672":-0.0115813223,"34673":0.0510802862,"34674":-0.0097674235,"34675":0.0505398139,"34676":-0.0080145019,"34677":0.0500179136,"34678":-0.0063478744,"34679":0.0495203718,"34680":-0.0047911215,"34681":0.0490525166,"34682":-0.0033656345,"34683":0.0486191012,"34684":-0.0020902211,"34685":0.0482242041,"34686":0.0441978816,"34687":0.0444883183,"34688":0.0447789707,"34689":0.0450337824,"34690":0.0452519297,"34691":0.0454328676,"34692":0.04557625,"34693":0.045681888,"34694":0.0457497566,"34695":0.0457799914,"34696":0.0457728862,"34697":0.0457288892,"34698":0.045648599,"34699":0.0455327606,"34700":0.0453822603,"34701":0.0451981198,"34702":0.0449814894,"34703":0.0447336418,"34704":0.0444583597,"34705":0.0441807489,"34706":0.0439149317,"34707":0.0436630444,"34708":0.0434267641,"34709":0.0432079138,"34710":0.0430083529,"34711":0.0428299875,"34712":0.0426747566,"34713":0.0425446222,"34714":0.0424415592,"34715":0.0423675442,"34716":0.0423245453,"34717":0.0423145113,"34718":0.042339362,"34719":0.0424009761,"34720":0.0425011803,"34721":0.0426417393,"34722":0.0428243464,"34723":0.0430506132,"34724":0.0433220606,"34725":0.0436401095,"34726":0.0440060726,"34727":0.0444211469,"34728":0.0448864061,"34729":0.0454027942,"34730":0.0459711191,"34731":0.0465920479,"34732":0.047266103,"34733":0.0479936589,"34734":0.100292844,"34735":0.2505871448,"34736":0.5043945161,"34737":0.8670019048,"34738":1.3434664868,"34739":1.9385864233,"34740":2.6568791426,"34741":3.5025596491,"34742":4.4795205344,"34743":5.5913135027,"34744":6.8411325822,"34745":8.2317991079,"34746":9.7657485619,"34747":11.4450193393,"34748":13.2712434944,"34749":15.2456395057,"34750":17.3690070837,"34751":19.6417240295,"34752":22.0637451379,"34753":24.6346031226,"34754":27.3534115297,"34755":30.2188695885,"34756":33.2292689395,"34757":36.3825021661,"34758":39.6760730451,"34759":43.1071084244,"34760":46.6723716249,"34761":50.3682772573,"34762":54.1909073409,"34763":58.1360286032,"34764":62.1991108379,"34765":66.3753461966,"34766":70.6596692871,"34767":75.0467779523,"34768":79.5311546041,"34769":84.1070879881,"34770":88.7686952582,"34771":93.509944243,"34772":98.3246757899,"34773":103.2066260766,"34774":108.1494487857,"34775":113.1467370413,"34776":118.192045013,"34777":123.2789090977,"34778":128.4008685936,"34779":133.5514857881,"34780":138.7243653829,"34781":143.9131731894,"34782":149.1116540256,"34783":154.3136487559,"34784":159.5131104146,"34785":164.7041193607,"34786":169.8808974126,"34787":175.0378209163,"34788":180.1694327018,"34789":185.2704528868,"34790":190.3357884873,"34791":195.3605418011,"34792":200.3400175275,"34793":205.2697285937,"34794":210.1454006594,"34795":214.9629752746,"34796":219.7186116707,"34797":224.4086871658,"34798":229.0297961727,"34799":233.5787478039,"34800":238.0525620712,"34801":242.4484646852,"34802":246.7638804692,"34803":250.9964254077,"34804":255.1438973593,"34805":259.2042654758,"34806":263.1756583745,"34807":267.0563511267,"34808":270.8447511337,"34809":274.5393829739,"34810":278.1388723181,"34811":281.641929019,"34812":285.0473294954,"34813":288.3538985432,"34814":291.5604907145,"34815":294.6659714182,"34816":297.6691979042,"34817":300.5690003051,"34818":303.3641629102,"34819":306.0534058592,"34820":308.635367442,"34821":311.1085871965,"34822":313.4714899968,"34823":315.7223713174,"34824":317.8593838638,"34825":319.880525746,"34826":321.7836303673,"34827":323.5663581871,"34828":325.2261905068,"34829":326.7604254108,"34830":328.1661759769,"34831":329.4403708533,"34832":330.5797572764,"34833":331.5809065833,"34834":332.4402222483,"34835":333.1539504464,"34836":333.7181931255,"34837":334.1289235385,"34838":334.3820041639,"34839":334.4732069173,"34840":334.3982355283,"34841":334.1527499363,"34842":333.7323925327,"34843":333.1328160582,"34844":332.3497129417,"34845":331.3788458484,"34846":330.2160791926,"34847":328.8574113535,"34848":327.2990073256,"34849":325.5372315228,"34850":323.5686804551,"34851":321.3902149919,"34852":318.9989919283,"34853":316.3924945718,"34854":313.568562078,"34855":310.5254172693,"34856":307.2616926846,"34857":303.7764546219,"34858":300.0692249515,"34859":296.140000498,"34860":291.9892698058,"34861":287.6180271283,"34862":283.0277835017,"34863":278.2205747871,"34864":273.1989665906,"34865":267.9660559934,"34866":262.5254700493,"34867":256.8813610317,"34868":251.0383984337,"34869":245.0017577508,"34870":238.7771060952,"34871":232.3705847129,"34872":225.7887884968,"34873":219.0387426048,"34874":212.1278763125,"34875":205.0639942462,"34876":197.8552451567,"34877":190.5100884115,"34878":183.0372583932,"34879":175.4457270086,"34880":167.7446645203,"34881":159.9433989294,"34882":152.051374142,"34883":144.0781071676,"34884":136.0331446021,"34885":127.9260186603,"34886":119.7662030279,"34887":111.5630688131,"34888":103.3258408815,"34889":95.0635548665,"34890":86.7850151517,"34891":78.4987541243,"34892":70.2129930043,"34893":61.9356045517,"34894":53.6740779563,"34895":45.4354862127,"34896":37.2264562744,"34897":29.0531422807,"34898":20.9212021333,"34899":12.8357776936,"34900":4.801478851,"34901":-0.0225401003,"34902":0.0386929248,"34903":-0.0001601748,"34904":0.038546288,"34905":-0.0001595753,"34906":0.0384972224,"34907":-0.0001593689,"34908":0.0384527579,"34909":-0.0001591785,"34910":0.0384129656,"34911":-0.0001590043,"34912":0.038377728,"34913":-0.0001588454,"34914":0.0383467122,"34915":-0.0001587001,"34916":0.0383193557,"34917":-0.0001585659,"34918":0.038294864,"34919":-0.0001584389,"34920":0.0382722578,"34921":-0.0001583057,"34922":0.0350160218,"34923":-0.0001446401,"34924":0.0350894302,"34925":-0.0001448918,"34926":0.0351657441,"34927":-0.0001451486,"34928":0.0352424355,"34929":-0.0001453997,"34930":0.0353168906,"34931":-0.0001456342,"34932":0.0353864646,"34933":-0.0001458412,"34934":0.035448598,"34935":-0.0001460103,"34936":0.0355009349,"34937":-0.0001461324,"34938":0.0355414284,"34939":-0.0001461998,"34940":0.0355684364,"34941":-0.0001462065,"34942":0.0355807985,"34943":-0.0001461493,"34944":0.0355778006,"34945":-0.0001460265,"34946":0.0355591877,"34947":-0.0001458388,"34948":0.0355251342,"34949":-0.0001455888,"34950":0.0354761784,"34951":-0.0001452805,"34952":0.0354131358,"34953":-0.000144919,"34954":0.0353369985,"34955":-0.00014451,"34956":0.0352488368,"34957":-0.0001440595,"34958":0.0351497105,"34959":-0.0001435727,"34960":0.0350406001,"34961":-0.0001430544,"34962":0.0349223673,"34963":-0.0001425083,"34964":0.0347957418,"34965":-0.0001419373,"34966":0.0346613517,"34967":-0.0001413433,"34968":0.0345197888,"34969":-0.0001407275,"34970":0.0343717053,"34971":-0.0001400913,"34972":0.0342179331,"34973":-0.0001394363,"34974":0.0340596156,"34975":-0.0001387652,"34976":0.0338983357,"34977":-0.0001380824,"34978":0.033736223,"34979":-0.0001373943,"34980":0.0335760199,"34981":-0.0001367098,"34982":0.0334210804,"34983":-0.0001360404,"34984":0.0332753024,"34985":-0.0001353995,"34986":0.0331429438,"34987":-0.0001348019,"34988":0.0330283178,"34989":-0.0001342621,"34990":0.0329353585,"34991":-0.0001337926,"34992":0.0328670502,"34993":-0.0001334014,"34994":0.0328247041,"34995":-0.0001330881,"34996":0.0328071189,"34997":-0.0001328407,"34998":0.0328096362,"34999":-0.0001326307,"35000":18.3157522481,"35001":18.5113839742,"35002":18.7307867229,"35003":18.974871823,"35004":19.2445143364,"35005":19.5405425843,"35006":19.8637409674,"35007":20.2148388702,"35008":20.5945146821,"35009":21.0033839635,"35010":21.4420050195,"35011":21.9108661573,"35012":22.410393215,"35013":22.940935669,"35014":23.5027765779,"35015":24.0961172084,"35016":24.7210899254,"35017":25.3777408948,"35018":26.0660465329,"35019":26.7858937172,"35020":27.5371005034,"35021":28.3193931275,"35022":29.1324318146,"35023":29.9757836841,"35024":30.8489546102,"35025":31.7513569541,"35026":32.6823485903,"35027":33.6411941827,"35028":34.6271126673,"35029":35.6392305672,"35030":36.6766394177,"35031":37.7383393797,"35032":38.823308308,"35033":39.9297749451,"35034":41.0535473015,"35035":42.1892219303,"35036":43.3318470144,"35037":44.477071997,"35038":45.6210156337,"35039":46.7602086594,"35040":47.8915389041,"35041":49.01220874,"35042":50.1196987941,"35043":51.2117379244,"35044":52.2862805105,"35045":53.3414897148,"35046":54.375724244,"35047":55.3875273166,"35048":56.3756172547,"35049":57.3388792405,"35050":58.2763578645,"35051":59.1872501359,"35052":60.0708985907,"35053":60.9267844435,"35054":61.7545209624,"35055":62.5538469864,"35056":63.3246203773,"35057":64.0668113288,"35058":64.7804955369,"35059":65.465847252,"35060":66.1231322427,"35061":66.7527004784,"35062":67.3549769384,"35063":67.9304514422,"35064":68.4796705778,"35065":69.0032318584,"35066":69.5017784482,"35067":69.975993851,"35068":70.4265966396,"35069":70.8543352924,"35070":71.2599831811,"35071":71.6443337385,"35072":72.0081955783,"35073":72.3523876778,"35074":72.6777351059,"35075":72.9850653338,"35076":73.2752048776,"35077":73.5489761745,"35078":73.8071946927,"35079":74.0506662784,"35080":74.2801847293,"35081":74.4965295888,"35082":74.700466071,"35083":74.8927466265,"35084":75.0741107015,"35085":75.2452822259,"35086":75.4069666939,"35087":75.5598486755,"35088":75.7045897386,"35089":75.8418267157,"35090":75.9721702733,"35091":76.0962037472,"35092":76.2144825223,"35093":76.3275338827,"35094":76.4358567352,"35095":76.5399210533,"35096":76.640167331,"35097":76.7370062071,"35098":76.8308182595,"35099":76.9219539494,"35100":77.0107337031,"35101":77.0974481172,"35102":77.1823621286,"35103":77.265723086,"35104":77.3477654981,"35105":77.4287099163,"35106":77.508759665,"35107":77.58809809,"35108":77.6668866595,"35109":77.7452637519,"35110":77.8233440236,"35111":77.9012182627,"35112":77.9789546382,"35113":78.0566014347,"35114":78.1341892943,"35115":78.2117319456,"35116":78.2892263187,"35117":78.3666528726,"35118":78.4439762543,"35119":78.521146212,"35120":78.5980987036,"35121":78.674757154,"35122":78.7510366726,"35123":78.8268523416,"35124":78.9021257726,"35125":78.9767859189,"35126":79.0507667874,"35127":79.1240052133,"35128":79.19643938,"35129":79.2680079142,"35130":79.3386494313,"35131":79.4083024362,"35132":79.4769058699,"35133":79.5444005032,"35134":79.6107303196,"35135":79.675843099,"35136":79.7396905019,"35137":79.8022281587,"35138":79.863415877,"35139":79.9232179215,"35140":79.9816033304,"35141":80.0385462444,"35142":80.0940269589,"35143":80.1480345656,"35144":80.2005694841,"35145":80.2516438021,"35146":80.3012800582,"35147":80.3495098716,"35148":80.3963728209,"35149":80.4419155122,"35150":80.4861907909,"35151":80.5292570668,"35152":80.5711778365,"35153":80.6120216057,"35154":80.6518618978,"35155":80.6907768604,"35156":80.7288485485,"35157":80.7661621827,"35158":80.8028054702,"35159":80.8388679721,"35160":80.8744405048,"35161":80.9096145669,"35162":80.9444816453,"35163":80.9791319214,"35164":81.0136528062,"35165":81.0481282408,"35166":81.0826386629,"35167":81.117261062,"35168":81.1520689318,"35169":81.1871321411,"35170":81.2225167464,"35171":81.2582847592,"35172":81.2944938633,"35173":81.3311969525,"35174":81.3684415904,"35175":81.4062696696,"35176":81.4447172722,"35177":81.4838145809,"35178":81.5235857913,"35179":81.564049038,"35180":81.6052163433,"35181":81.647093596,"35182":81.6896805098,"35183":81.7329687734,"35184":81.7769391333,"35185":81.8215606316,"35186":81.86679208,"35187":81.9125839259,"35188":81.958879823,"35189":82.005617961,"35190":82.0527322081,"35191":82.1001530951,"35192":82.1478086696,"35193":82.1956247168,"35194":82.2435245183,"35195":82.2914291215,"35196":82.3392582334,"35197":82.386931219,"35198":82.4343679746,"35199":82.4814896842,"35200":82.5282194818,"35201":82.5744830292,"35202":82.6202090227,"35203":82.6653279652,"35204":82.7097695045,"35205":82.7534614182,"35206":82.7963309084,"35207":82.8383065439,"35208":82.8793199117,"35209":82.9193069155,"35210":82.9582087792,"35211":82.9959727945,"35212":83.0325528475,"35213":83.0679094331,"35214":83.1020091966,"35215":83.134824644,"35216":83.166334254,"35217":83.1965226873,"35218":83.2253808812,"35219":83.2529060138,"35220":83.2791013596,"35221":83.3039760576,"35222":83.327544807,"35223":83.3498263629,"35224":83.3708406822,"35225":83.3906069677,"35226":83.4091437186,"35227":83.4264696751,"35228":83.4426046462,"35229":83.4575700373,"35230":83.4713891315,"35231":83.4840871647,"35232":83.4956912261,"35233":83.5062297824,"35234":83.5157317598,"35235":83.5242256996,"35236":83.5317393328,"35237":83.5382993665,"35238":83.5439312266,"35239":83.5486587111,"35240":83.5525035775,"35241":83.5554850817,"35242":83.5576194862,"35243":83.5589193405,"35244":83.5593924007,"35245":83.5590406519,"35246":83.5578598515,"35247":83.5558394029,"35248":83.552962258,"35249":83.5492047751,"35250":83.5445365481,"35251":83.5389202219,"35252":83.5323113039,"35253":83.5246579242,"35254":83.515900484,"35255":83.5059713382,"35256":83.494794685,"35257":83.4822866114,"35258":83.4683551868,"35259":83.4529005728,"35260":83.435815156,"35261":83.4169837107,"35262":83.3962835929,"35263":83.3735850842,"35264":83.3487521094,"35265":83.3216430247,"35266":83.2921109973,"35267":83.2600040795,"35268":83.225165287,"35269":83.1874327823,"35270":83.1466401458,"35271":83.1026167222,"35272":83.0551880334,"35273":83.0041762751,"35274":82.9494009998,"35275":82.8906798688,"35276":82.8278292437,"35277":82.7606646376,"35278":82.6890011531,"35279":82.6126539469,"35280":82.5314387108,"35281":82.4451721571,"35282":82.3536725018,"35283":82.2567600995,"35284":82.1542593339,"35285":82.0460010187,"35286":81.9318232019,"35287":81.8115704873,"35288":81.6850931425,"35289":81.5522464418,"35290":81.4128902027,"35291":81.2668884805,"35292":81.1141093931,"35293":80.9544250698,"35294":80.7877122749,"35295":80.6138534238,"35296":80.432736927,"35297":80.2442568534,"35298":80.0483125101,"35299":79.8448081577,"35300":79.6336528335,"35301":79.4147602584,"35302":79.188048815,"35303":78.9534415783,"35304":78.7029575331,"35305":78.4338416448,"35306":78.1473833166,"35307":77.8432330401,"35308":77.5187307634,"35309":77.1764835474,"35310":76.814685133,"35311":76.4342969791,"35312":76.0344576278,"35313":75.6164551226,"35314":75.1791800928,"35315":74.7239102847,"35316":74.2496619091,"35317":73.7577316757,"35318":73.2472495658,"35319":72.7195320974,"35320":72.1738234257,"35321":71.6114569994,"35322":71.031790908,"35323":70.4361717831,"35324":69.8240704612,"35325":69.1968427628,"35326":68.5540694994,"35327":67.8971111458,"35328":67.2256546806,"35329":66.5410603347,"35330":65.8431162519,"35331":65.1331771961,"35332":64.4111264073,"35333":63.6783076949,"35334":62.9346923595,"35335":62.1816075757,"35336":61.4191048265,"35337":60.648488852,"35338":59.8698827379,"35339":59.0845629519,"35340":58.2927150539,"35341":57.4955814462,"35342":56.6934006482,"35343":55.8873753352,"35344":55.0777872523,"35345":54.265793902,"35346":53.4517104716,"35347":52.6366441444,"35348":51.8209338807,"35349":51.0056317772,"35350":50.1910911697,"35351":49.3783047541,"35352":48.5676312614,"35353":47.7600001911,"35354":46.9557672386,"35355":46.1557954877,"35356":45.3604298308,"35357":44.5704643396,"35358":43.7862260959,"35359":43.0084382218,"35360":42.2374038171,"35361":41.4737737995,"35362":40.7178220069,"35363":39.9701265945,"35364":39.2309277858,"35365":38.5007311123,"35366":37.7797397753,"35367":37.0683875086,"35368":36.3668380266,"35369":35.6754547595,"35370":34.9943603944,"35371":34.3238501907,"35372":33.66400516,"35373":33.0150551241,"35374":32.3770396178,"35375":31.7501263134,"35376":31.134314257,"35377":30.529712763,"35378":29.9362820995,"35379":29.3540774599,"35380":28.7830226939,"35381":28.2231234921,"35382":27.674270214,"35383":27.1364239802,"35384":26.6094450694,"35385":26.0932552081,"35386":25.5876883962,"35387":25.0926323102,"35388":24.6078987729,"35389":24.1333468457,"35390":23.6687704819,"35391":23.2140055751,"35392":22.7688326276,"35393":22.3330697459,"35394":21.9064884159,"35395":21.4888941928,"35396":21.0800539059,"35397":20.6797655721,"35398":20.2877955607,"35399":19.9039390672,"35400":19.5279659518,"35401":19.1596729406,"35402":18.7988370135,"35403":18.4452603531,"35404":18.0987302979,"35405":17.7590615022,"35406":17.4260500086,"35407":17.0995910033,"35408":16.7794105021,"35409":16.4653812643,"35410":16.157294951,"35411":15.8550465083,"35412":15.5584470295,"35413":15.2674062624,"35414":14.9817570267,"35415":14.701424321,"35416":14.4262627514,"35417":14.1562127878,"35418":13.8911503115,"35419":13.6310309695,"35420":13.3757509345,"35421":13.1252802546,"35422":12.8795130133,"35423":12.6384586259,"35424":12.4020415349,"35425":12.1702668231,"35426":11.9430714664,"35427":11.720468275,"35428":11.5024095982,"35429":11.2889143262,"35430":11.0799467842,"35431":10.8755297232,"35432":10.6756367413,"35433":10.4802923305,"35434":10.2894766239,"35435":10.1032137256,"35436":9.9214876282,"35437":9.7443199712,"35438":9.5716960543,"35439":9.4036330858,"35440":9.2401389755,"35441":9.0812586234,"35442":8.9271075137,"35443":8.7778079077,"35444":8.6334628681,"35445":8.4941573879,"35446":8.3599591849,"35447":8.2309195645,"35448":8.1070742582,"35449":7.988444256,"35450":7.8750366168,"35451":7.7668452639,"35452":7.6638517551,"35453":7.5660260302,"35454":7.47332713,"35455":7.3857038895,"35456":7.3030956,"35457":7.2254326441,"35458":7.1526370998,"35459":7.0846233189,"35460":7.0212984746,"35461":6.9625630867,"35462":6.9083115197,"35463":6.8584324612,"35464":6.8128093786,"35465":6.7713209604,"35466":6.7338415406,"35467":6.7002415134,"35468":6.6703877367,"35469":6.6441439304,"35470":6.6213710692,"35471":6.6019277748,"35472":6.5856707074,"35473":6.5724549603,"35474":6.5621344574,"35475":6.5545623555,"35476":6.5495914535,"35477":6.5470746069,"35478":6.546865148,"35479":6.5488173133,"35480":6.552786674,"35481":6.5586305714,"35482":6.5662085531,"35483":6.57538281,"35484":6.5860186097,"35485":6.5979847259,"35486":6.6111538572,"35487":6.6254030365,"35488":6.6406140237,"35489":6.656673681,"35490":6.6734743244,"35491":6.6909140513,"35492":6.7088970375,"35493":6.7273338014,"35494":6.7461414331,"35495":6.7652437853,"35496":6.7845716206,"35497":6.8040627167,"35498":6.823661926,"35499":6.8433211877,"35500":6.8629994917,"35501":6.8826627951,"35502":6.9022838888,"35503":6.9218422168,"35504":6.9413236483,"35505":6.9607202048,"35506":6.9800297424,"35507":6.9992555949,"35508":7.0184061766,"35509":7.037494552,"35510":7.0565379724,"35511":7.0755573867,"35512":7.0945769271,"35513":7.1136233776,"35514":7.1327256263,"35515":7.1519141096,"35516":7.17122025,"35517":7.1906758938,"35518":7.2103127535,"35519":7.230161858,"35520":7.2502530167,"35521":7.2706143011,"35522":7.2912715476,"35523":7.3122478856,"35524":7.3335632946,"35525":7.3552341934,"35526":7.3772730652,"35527":7.3996881196,"35528":7.4224829957,"35529":7.4456565076,"35530":7.4692024333,"35531":7.49310935,"35532":7.5173605155,"35533":7.5419337974,"35534":7.5668016497,"35535":7.5919311387,"35536":7.6172840153,"35537":7.6428168356,"35538":7.6684811285,"35539":7.6942236081,"35540":7.719986432,"35541":7.745707501,"35542":7.7713208013,"35543":7.7967567846,"35544":7.821942785,"35545":7.8468034705,"35546":7.8712613248,"35547":7.8952371578,"35548":7.9186506398,"35549":7.9414208576,"35550":7.9634668875,"35551":7.9847083804,"35552":8.0050661573,"35553":8.0244628085,"35554":8.0428232922,"35555":8.0600755294,"35556":8.0761509881,"35557":8.0909852544,"35558":8.1045185823,"35559":8.1166964217,"35560":8.1274699159,"35561":8.1367963661,"35562":8.144639658,"35563":8.150970646,"35564":8.1557674911,"35565":8.1590159489,"35566":8.160709604,"35567":8.1608500491,"35568":8.1594470039,"35569":8.1565183751,"35570":8.1520902531,"35571":8.1461968465,"35572":8.1388803526,"35573":8.1301907663,"35574":8.1201856251,"35575":8.1089296954,"35576":8.096494599,"35577":8.0829583845,"35578":8.0686704847,"35579":8.0539932268,"35580":8.0390659127,"35581":8.0239712678,"35582":8.0087851821,"35583":7.9935964568,"35584":7.9784860398,"35585":7.963546574,"35586":7.9488617709,"35587":7.934525634,"35588":7.9206221237,"35589":7.9072440599,"35590":7.8944730861,"35591":7.8823982887,"35592":7.8710964564,"35593":7.8606504625,"35594":7.8511298075,"35595":7.8426088149,"35596":7.8351474392,"35597":7.8288093287,"35598":7.8236428737,"35599":7.8196991927,"35600":7.8170133885,"35601":7.8156225157,"35602":7.815547006,"35603":7.8168086743,"35604":7.8194122702,"35605":7.8233635776,"35606":7.828651046,"35607":7.8352640364,"35608":7.8431744816,"35609":7.8523553287,"35610":7.8627621769,"35611":7.8743519619,"35612":7.8870645191,"35613":7.9008415509,"35614":7.9156080649,"35615":7.9312916593,"35616":7.9478037881,"35617":7.9650593938,"35618":7.982957956,"35619":8.0014034943,"35620":8.0202853617,"35621":8.0394986318,"35622":8.0589246075,"35623":8.0784515979,"35624":8.097955119,"35625":8.1173190588,"35626":8.1364155543,"35627":8.1551265337,"35628":8.1733232643,"35629":8.1908879932,"35630":8.2076939894,"35631":8.2236267763,"35632":8.2385665099,"35633":8.252401302,"35634":8.2650136523,"35635":8.2763044485,"35636":8.2861705885,"35637":8.2945186945,"35638":8.3012550393,"35639":8.3063006068,"35640":8.3095759442,"35641":8.3110167426,"35642":8.3105592262,"35643":8.3081555874,"35644":8.3037593403,"35645":8.2973406285,"35646":8.2888715477,"35647":8.2783412912,"35648":8.2657414582,"35649":8.2510810006,"35650":8.234368733,"35651":8.2156368008,"35652":8.1949186232,"35653":8.1722615165,"35654":8.1477138446,"35655":8.1213467178,"35656":8.0932296141,"35657":8.0634502193,"35658":8.0320952624,"35659":7.9992693195,"35660":7.9650748615,"35661":7.9296310398,"35662":7.8930544176,"35663":7.8554765893,"35664":7.817025629,"35665":7.7778429481,"35666":7.7380654207,"35667":7.6978414344,"35668":7.6573137322,"35669":7.6166346691,"35670":7.57594979,"35671":7.5354123185,"35672":7.4951674815,"35673":7.4553662661,"35674":7.4161504911,"35675":7.3776658787,"35676":7.340047861,"35677":7.3034340214,"35678":7.2679506152,"35679":7.2337244401,"35680":7.2008700401,"35681":7.1695010705,"35682":7.1397181438,"35683":7.1116197573,"35684":7.0852907321,"35685":7.0608127726,"35686":7.0382573309,"35687":7.0176831068,"35688":6.9991415871,"35689":6.9826752767,"35690":6.968316937,"35691":6.9560897643,"35692":6.946007348,"35693":6.9380737321,"35694":6.9322835145,"35695":6.9286219956,"35696":6.9270653718,"35697":6.9275809719,"35698":6.9301275348,"35699":6.9346555263,"35700":6.9411074923,"35701":6.9494184463,"35702":6.9595162894,"35703":6.9713222587,"35704":6.9847514043,"35705":6.9997130918,"35706":7.0161115263,"35707":7.0338462934,"35708":7.0528129188,"35709":7.072903443,"35710":7.0940070094,"35711":7.1160104614,"35712":7.1387989475,"35713":7.1622565312,"35714":7.1862668024,"35715":7.2107134898,"35716":7.2354810684,"35717":7.2604553624,"35718":7.2855241386,"35719":7.3105776888,"35720":7.3355093962,"35721":7.360216286,"35722":7.3845995535,"35723":7.40856507,"35724":7.4320238604,"35725":7.4548925523,"35726":7.4770937912,"35727":7.498556621,"35728":7.519216825,"35729":7.5390172265,"35730":7.5579079454,"35731":7.5758466094,"35732":7.5927985171,"35733":7.6087367517,"35734":7.6236470275,"35735":7.6375311027,"35736":7.6504030455,"35737":7.6622859509,"35738":7.6732114212,"35739":7.6832193701,"35740":7.6923576955,"35741":7.7006819164,"35742":7.7082547558,"35743":7.7151456797,"35744":7.7214303928,"35745":7.7271902975,"35746":7.7325119186,"35747":7.7374863007,"35748":7.742208381,"35749":7.7467763456,"35750":7.7512909704,"35751":7.7558549569,"35752":7.760572263,"35753":7.7655474378,"35754":7.7708849632,"35755":7.7766886075,"35756":7.7830607958,"35757":7.7901020006,"35758":7.7979101571,"35759":7.8065801062,"35760":7.8162030686,"35761":7.8268661519,"35762":7.8386518937,"35763":7.8516378423,"35764":7.8658961761,"35765":7.8814933633,"35766":7.8984898615,"35767":7.9169398586,"35768":7.9368910546,"35769":7.9583844833,"35770":7.9814543741,"35771":8.0061280528,"35772":8.0324258797,"35773":8.0603612254,"35774":8.0899404802,"35775":8.1211630994,"35776":8.1540216791,"35777":8.188502064,"35778":8.2245834839,"35779":8.2622387187,"35780":8.3014342889,"35781":8.3421306724,"35782":8.3842825437,"35783":8.4278390376,"35784":8.4727440326,"35785":8.5189364565,"35786":8.5663506109,"35787":8.6149165152,"35788":8.6645602686,"35789":8.7152044302,"35790":8.7667684154,"35791":8.8191689097,"35792":8.872320297,"35793":8.9261351043,"35794":8.9805244597,"35795":9.0353985636,"35796":9.0906671726,"35797":9.1462400945,"35798":9.2020276919,"35799":9.2579413944,"35800":9.3138942161,"35801":9.3698012767,"35802":9.4255803231,"35803":9.4811522502,"35804":9.5364416155,"35805":9.5913771456,"35806":9.6458922304,"35807":9.6999254017,"35808":9.7534207907,"35809":9.8063285613,"35810":9.858605314,"35811":9.9102144567,"35812":9.9611265366,"35813":10.0113195296,"35814":10.0607790826,"35815":10.1094987053,"35816":10.1574799052,"35817":10.2047322646,"35818":10.2512734559,"35819":10.2971291915,"35820":10.3423331074,"35821":10.3869265776,"35822":10.43095846,"35823":10.4744847727,"35824":10.5175683008,"35825":10.560278136,"35826":10.6026891514,"35827":10.6448814137,"35828":10.6869395358,"35829":10.7289519773,"35830":10.7710102939,"35831":10.8132083464,"35832":10.8556414718,"35833":10.898405626,"35834":10.9415965059,"35835":10.9853086577,"35836":11.0296345808,"35837":11.0746638364,"35838":11.1204821677,"35839":11.1671706431,"35840":11.2148048286,"35841":11.2634540008,"35842":11.3131804049,"35843":11.3640385686,"35844":11.416074678,"35845":11.469326022,"35846":11.523820511,"35847":11.5795762755,"35848":11.636601348,"35849":11.6948934335,"35850":11.7544397683,"35851":11.8152170704,"35852":11.8771915831,"35853":11.9403192085,"35854":12.004545732,"35855":12.0698071353,"35856":12.1360299932,"35857":12.2031319533,"35858":12.2710222907,"35859":12.3396025351,"35860":12.4087671646,"35861":12.4784043566,"35862":12.5483967942,"35863":12.6186225167,"35864":12.6889558106,"35865":12.7592681306,"35866":12.8294290472,"35867":12.8993072092,"35868":12.9687713181,"35869":13.0376911045,"35870":13.1059383023,"35871":13.1733876106,"35872":13.239917642,"35873":13.3054118462,"35874":13.3697594078,"35875":13.4328561092,"35876":13.4946051565,"35877":13.5549179612,"35878":13.6137148752,"35879":13.670925872,"35880":13.7264911735,"35881":13.7803618144,"35882":13.8325001424,"35883":13.8828802505,"35884":13.9314883356,"35885":13.9783229814,"35886":14.0233953609,"35887":14.0667293547,"35888":14.1083615825,"35889":14.1483413426,"35890":14.1867304578,"35891":14.2236030235,"35892":14.2590450569,"35893":14.2931540418,"35894":14.326038372,"35895":14.3578166872,"35896":14.3886171052,"35897":14.4185763471,"35898":14.4478387604,"35899":14.4765552387,"35900":14.5048820443,"35901":14.5333066388,"35902":14.5627584879,"35903":14.5938242072,"35904":14.6267064973,"35905":14.6615563997,"35906":14.6985376652,"35907":14.7378027553,"35908":14.7795047806,"35909":14.8237843905,"35910":14.8707795292,"35911":14.9206126523,"35912":14.9734004886,"35913":15.0292411954,"35914":15.0882242833,"35915":15.1504177351,"35916":15.2158781758,"35917":15.284637996,"35918":15.3567158472,"35919":15.4321038121,"35920":15.5107783039,"35921":15.5926873195,"35922":15.6777614574,"35923":15.7659024349,"35924":15.8569936244,"35925":15.9508885182,"35926":16.0474224685,"35927":16.146401156,"35928":16.2476129207,"35929":16.3508173583,"35930":16.455758334,"35931":16.5621526716,"35932":16.6697038606,"35933":16.7780908041,"35934":16.8869822082,"35935":16.9960253423,"35936":17.1048610834,"35937":17.2131126331,"35938":17.320401171,"35939":17.4263344672,"35940":17.5305230856,"35941":17.6325688263,"35942":17.7320814087,"35943":17.8286666785,"35944":17.9219436916,"35945":18.0115326261,"35946":18.0970721833,"35947":18.178207151,"35948":18.2546060372,"35949":18.3259482433,"35950":18.3919418456,"35951":18.4523103514,"35952":18.5068105468,"35953":18.555218823,"35954":18.5973490164,"35955":18.6330383065,"35956":18.6621649798,"35957":18.6846339178,"35958":18.700394223,"35959":18.7094243269,"35960":18.7117494255,"35961":18.7074262474,"35962":18.6965602521,"35963":18.6792901059,"35964":18.655804602,"35965":18.6263268947,"35966":18.5911311057,"35967":18.5505263669,"35968":18.5048730791,"35969":18.4545668101,"35970":18.4000541745,"35971":18.3418166262,"35972":18.28038593,"35973":18.2163278761,"35974":18.1502573169,"35975":18.0828218185,"35976":18.0147162387,"35977":17.9466663173,"35978":17.8794427747,"35979":17.8138448302,"35980":17.7507138065,"35981":17.6909165519,"35982":17.6353585458,"35983":17.5849671901,"35984":17.540704423,"35985":17.5035498352,"35986":17.4745128159,"35987":17.4546154438,"35988":17.4449042082,"35989":17.4464326211,"35990":17.4602725796,"35991":17.4874966433,"35992":17.5291891323,"35993":17.5864280122,"35994":17.6602958513,"35995":17.7518612566,"35996":17.8621898455,"35997":17.9923251738,"35998":18.1432999114,"35999":18.3161161998,"36000":79.6172633529,"36001":79.6172548551,"36002":79.6172490744,"36003":79.6172398957,"36004":79.6172336468,"36005":79.6172236259,"36006":79.6172167983,"36007":79.6172057473,"36008":79.6171982124,"36009":79.6171859157,"36010":79.6171775263,"36011":79.6171637367,"36012":79.6171543237,"36013":79.6171387585,"36014":79.6171281289,"36015":79.6171104673,"36016":79.6170984019,"36017":79.6170782817,"36018":79.6170645333,"36019":79.6170415486,"36020":79.6170258403,"36021":79.6169995403,"36022":79.6169815646,"36023":79.6169514526,"36024":79.616930871,"36025":79.6168964048,"36026":79.6168728483,"36027":79.6168334423,"36028":79.6168065123,"36029":79.6167615402,"36030":79.616730811,"36031":79.6166796099,"36032":79.6166446314,"36033":79.6153541627,"36034":79.6073804917,"36035":79.5858762355,"36036":79.5455984849,"36037":79.4829472159,"36038":79.3955466857,"36039":79.2819952524,"36040":79.1416504723,"36041":78.9744598581,"36042":78.7808226165,"36043":78.561478517,"36044":78.317421875,"36045":78.0498354288,"36046":77.7600381713,"36047":77.4494436296,"36048":77.119526494,"36049":76.7717959225,"36050":76.407774177,"36051":76.0289794775,"36052":75.6369120617,"36053":75.2330429399,"36054":74.8188051448,"36055":74.395587013,"36056":73.9647269577,"36057":73.5275094019,"36058":73.0851616734,"36059":72.6388517007,"36060":72.1896863835,"36061":71.738710305,"36062":71.2869031283,"36063":70.8351766351,"36064":70.3843742908,"36065":69.9352731249,"36066":69.488586122,"36067":69.0449644939,"36068":68.6049998819,"36069":68.1692265277,"36070":67.7381234286,"36071":67.3121164819,"36072":66.8915804072,"36073":66.4768405473,"36074":66.0681749412,"36075":65.6658166728,"36076":65.2699562604,"36077":64.8807440034,"36078":64.4982922888,"36079":64.1226778611,"36080":63.753944053,"36081":63.3921029759,"36082":63.037139149,"36083":62.6890141032,"36084":62.3476693013,"36085":62.0130271455,"36086":61.684991569,"36087":61.3634488503,"36088":61.0482686215,"36089":60.7393050122,"36090":60.4363978916,"36091":60.1393741783,"36092":59.8480494126,"36093":59.5622295269,"36094":59.2817123847,"36095":59.0062889936,"36096":58.7357446078,"36097":58.4698598327,"36098":58.2084117304,"36099":57.9511749104,"36100":57.6979225952,"36101":57.4484276522,"36102":57.2024661622,"36103":56.9598233723,"36104":56.7202971565,"36105":56.4836974225,"36106":56.2498440509,"36107":56.0185651545,"36108":55.7896958578,"36109":55.5630774688,"36110":55.3385569618,"36111":55.1159866999,"36112":54.895224966,"36113":54.6761373298,"36114":54.4585975836,"36115":54.2424876331,"36116":54.0276969441,"36117":53.814122073,"36118":53.6016663563,"36119":53.3902397099,"36120":53.1797585045,"36121":52.9701454915,"36122":52.761331469,"36123":52.5532592865,"36124":52.3458866614,"36125":52.1391854965,"36126":51.9331393865,"36127":51.7277412295,"36128":51.5229913406,"36129":51.3188959553,"36130":51.1154660431,"36131":50.9127163704,"36132":50.7106649729,"36133":50.5093331393,"36134":50.3087454085,"36135":50.1089291439,"36136":49.9099138676,"36137":49.7117306485,"36138":49.5144116024,"36139":49.3179894806,"36140":49.1224973229,"36141":48.9279681632,"36142":48.7344351695,"36143":48.5419326668,"36144":48.3504971054,"36145":48.1601668737,"36146":47.9709813323,"36147":47.7829798359,"36148":47.5962009522,"36149":47.4106818387,"36150":47.2264577503,"36151":47.0435616554,"36152":46.8620240009,"36153":46.6818727224,"36154":46.5031333324,"36155":46.3258288361,"36156":46.1499795198,"36157":45.9756027642,"36158":45.8027129241,"36159":45.6313212634,"36160":45.4614359349,"36161":45.293061999,"36162":45.1262014059,"36163":44.9608527086,"36164":44.7970107202,"36165":44.6346665673,"36166":44.4738080759,"36167":44.3144202019,"36168":44.1564854099,"36169":43.9999840129,"36170":43.8448944788,"36171":43.6911937108,"36172":43.5388572959,"36173":43.3878596606,"36174":43.2381741802,"36175":43.0897733695,"36176":42.9426291487,"36177":42.7967131124,"36178":42.6519967753,"36179":42.5084518003,"36180":42.3660502103,"36181":42.2247645849,"36182":42.0845682199,"36183":41.9454344518,"36184":41.8073355015,"36185":41.670242272,"36186":41.534125105,"36187":41.3989546591,"36188":41.2647026085,"36189":41.1313421917,"36190":40.9988486352,"36191":40.8671994726,"36192":40.7363747713,"36193":40.6063570586,"36194":40.4771310292,"36195":40.3486834534,"36196":40.221003329,"36197":40.0940820536,"36198":39.9679135233,"36199":39.842494166,"36200":39.7178229211,"36201":39.593901176,"36202":39.470732666,"36203":39.3483226626,"36204":39.2266765965,"36205":39.1057993814,"36206":38.9856956869,"36207":38.8663704665,"36208":38.7478293623,"36209":38.6300789656,"36210":38.5131269641,"36211":38.3969821939,"36212":38.2816546166,"36213":38.1671551089,"36214":38.0534950877,"36215":37.940686226,"36216":37.8287403471,"36217":37.7176693768,"36218":37.6074852708,"36219":37.498199912,"36220":37.3898249884,"36221":37.2823718599,"36222":37.1758514196,"36223":37.0702735252,"36224":36.9656459541,"36225":36.861973738,"36226":36.7592592793,"36227":36.6575028166,"36228":36.5567028544,"36229":36.456856491,"36230":36.3579596673,"36231":36.2600073513,"36232":36.1629936723,"36233":36.0669119312,"36234":35.9717544655,"36235":35.8775125582,"36236":35.7841765144,"36237":35.6917358254,"36238":35.600179326,"36239":35.5094953288,"36240":35.4196717419,"36241":35.3306961768,"36242":35.2425560515,"36243":35.1552386171,"36244":35.0687308626,"36245":34.9830194615,"36246":34.8980909033,"36247":34.8139317405,"36248":34.7305288386,"36249":34.6478696054,"36250":34.5659422013,"36251":34.4847357359,"36252":34.4042404527,"36253":34.3244478831,"36254":34.2453509493,"36255":34.1669440642,"36256":34.0892232861,"36257":34.012186508,"36258":33.9358336434,"36259":33.8601667948,"36260":33.7851904091,"36261":33.7109114179,"36262":33.6373393654,"36263":33.5644865614,"36264":33.4923683339,"36265":33.4210032773,"36266":33.3504133375,"36267":33.2806237707,"36268":33.2116630794,"36269":33.1435629619,"36270":33.0763582667,"36271":33.0100869521,"36272":32.9447900452,"36273":32.8805116093,"36274":32.8172987546,"36275":32.7552016523,"36276":32.6942734826,"36277":32.6345703212,"36278":32.5761510119,"36279":32.519077038,"36280":32.463412391,"36281":32.4092234361,"36282":32.3565787727,"36283":32.3055491415,"36284":32.2562077398,"36285":32.208630701,"36286":32.1628970609,"36287":32.1190882493,"36288":32.0772875223,"36289":32.0375794799,"36290":32.0000496553,"36291":31.9647841658,"36292":31.9318694142,"36293":31.9013918412,"36294":31.8734379065,"36295":31.8480942081,"36296":31.8254473969,"36297":31.8055838794,"36298":31.7885895042,"36299":31.7745492999,"36300":31.7635472576,"36301":31.7556661469,"36302":31.7509873627,"36303":31.7495907953,"36304":31.7489303808,"36305":31.7481573732,"36306":31.7477579284,"36307":31.7476662252,"36308":31.7470268144,"36309":31.7467396436,"36310":31.7462144872,"36311":31.7457788539,"36312":31.7451346093,"36313":31.7447036512,"36314":31.744077565,"36315":31.7436558462,"36316":31.7430459203,"36317":31.742634994,"36318":31.7420421046,"36319":31.7416427111,"36320":31.7410678179,"36321":31.7406806326,"36322":31.740124631,"36323":31.7397502011,"36324":31.7392138389,"36325":31.7388527005,"36326":31.7383366559,"36327":31.7379892526,"36328":31.7374940753,"36329":31.7371607738,"36330":31.7366868919,"36331":31.736367976,"36332":31.7359156927,"36333":31.7356113617,"36334":31.7351808545,"36335":31.7348912229,"36336":31.7344825444,"36337":31.7342076428,"36338":31.7338207238,"36339":31.7335605005,"36340":31.733195155,"36341":31.7329494798,"36342":31.7326054108,"36343":31.7323740791,"36344":31.7320508866,"36345":31.7318336245,"36346":31.7315308146,"36347":31.7313272851,"36348":31.7310442796,"36349":31.7308540894,"36350":31.7305902365,"36351":31.730412943,"36352":31.7301675284,"36353":31.7300026473,"36354":31.7297749055,"36355":31.7296219182,"36356":31.7294110436,"36357":31.7292694052,"36358":31.7290745631,"36359":31.7289437092,"36360":31.7287640463,"36361":31.7286434007,"36362":31.7284780551,"36363":31.728367036,"36364":31.7282151462,"36365":31.7281131724,"36366":31.7279738856,"36367":31.727880382,"36368":31.7277528614,"36369":31.7276672643,"36370":31.7275506952,"36371":31.7274724558,"36372":31.7273660514,"36373":31.7272946398,"36374":31.7271976449,"36375":31.727132553,"36376":31.7270442478,"36377":31.7269849912,"36378":31.7269046932,"36379":31.7268508132,"36380":31.7267778795,"36381":31.7267289438,"36382":31.7266627713,"36383":31.7266183746,"36384":31.7265584006,"36385":31.7265181648,"36386":31.7264638662,"36387":31.7264274401,"36388":31.7263783329,"36389":31.7263453913,"36390":31.7263010289,"36391":31.7262712721,"36392":31.7262312437,"36393":31.7262043961,"36394":31.7261683252,"36395":31.7261441339,"36396":31.7261116759,"36397":31.7260899096,"36398":31.7260607494,"36399":31.7260411969,"36400":31.7260150473,"36401":31.7259975158,"36402":31.7259741147,"36403":31.7259584284,"36404":31.7259375371,"36405":31.7259287529,"36406":31.725914313,"36407":31.7260145055,"36408":31.7260873484,"36409":31.7261952156,"36410":31.7262655071,"36411":31.7263716743,"36412":31.7264412172,"36413":31.7265452264,"36414":31.7266139752,"36415":31.7267157531,"36416":31.7267836032,"36417":31.7268831035,"36418":31.7269499611,"36419":31.7270471492,"36420":31.7271129333,"36421":31.7272077853,"36422":31.7272301575,"36423":31.7272890414,"36424":31.7273125994,"36425":31.727377523,"36426":31.7274082574,"36427":31.7274756396,"36428":31.7275110993,"36429":31.7275804643,"36430":31.7276204083,"36431":31.7276915795,"36432":31.7277357278,"36433":31.7278085496,"36434":31.7278566319,"36435":31.7279309594,"36436":31.7279827156,"36437":31.7280584136,"36438":31.728113594,"36439":31.7281905362,"36440":31.728315447,"36441":31.7286277299,"36442":31.7294913504,"36443":31.731325284,"36444":31.7345278083,"36445":31.7394771572,"36446":31.7465312502,"36447":31.7560276934,"36448":31.7682837898,"36449":31.7835966179,"36450":31.8022431429,"36451":31.8244803871,"36452":31.8505456316,"36453":31.8806566682,"36454":31.9150120774,"36455":31.9537915506,"36456":31.9971562346,"36457":32.0452491145,"36458":32.0981954141,"36459":32.1561030302,"36460":32.2190629808,"36461":32.2871498815,"36462":32.3604224331,"36463":32.4389239335,"36464":32.5226827958,"36465":32.6117130891,"36466":32.7060150811,"36467":32.8055757995,"36468":32.9103695938,"36469":33.0203587115,"36470":33.1354938719,"36471":33.2557148517,"36472":33.3809510657,"36473":33.5111221554,"36474":33.6461385724,"36475":33.7859021607,"36476":33.9303067393,"36477":34.0792386776,"36478":34.232577465,"36479":34.390196278,"36480":34.5519625301,"36481":34.7177384213,"36482":34.8873814687,"36483":35.0607450325,"36484":35.2376788204,"36485":35.418029385,"36486":35.6016405979,"36487":35.7883541135,"36488":35.9780098079,"36489":36.1704462054,"36490":36.3655008776,"36491":36.5630108289,"36492":36.7628128542,"36493":36.9647438759,"36494":37.1686412588,"36495":37.3743431051,"36496":37.5816885174,"36497":37.7905178426,"36498":38.0006728932,"36499":38.2119971427,"36500":38.4243358967,"36501":38.6375364453,"36502":38.8514481858,"36503":39.0659227295,"36504":39.2808139831,"36505":39.4959782138,"36506":39.7112740909,"36507":39.9265627133,"36508":40.1417076163,"36509":40.356574767,"36510":40.5710325414,"36511":40.784951693,"36512":40.9982053064,"36513":41.2106687462,"36514":41.4222195925,"36515":41.6327375763,"36516":41.842104505,"36517":42.0502041903,"36518":42.2569223706,"36519":42.4621466354,"36520":42.6657663521,"36521":42.8676725995,"36522":43.0677580982,"36523":43.2659171559,"36524":43.4620456141,"36525":43.6560408059,"36526":43.8478015243,"36527":44.0372279999,"36528":44.2242218896,"36529":44.4086862803,"36530":44.5905257003,"36531":44.7696461483,"36532":44.9459551331,"36533":45.1193617266,"36534":45.2897766314,"36535":45.457112264,"36536":45.6212828441,"36537":45.7822045041,"36538":45.9397954048,"36539":46.0939758652,"36540":46.244668503,"36541":46.3917983838,"36542":46.5352931796,"36543":46.675083334,"36544":46.8111022343,"36545":46.9432863888,"36546":47.0715756066,"36547":47.195913181,"36548":47.3162460722,"36549":47.4325250918,"36550":47.544705081,"36551":47.6527450865,"36552":47.756608532,"36553":47.8562633815,"36554":47.9516822928,"36555":48.0428427622,"36556":48.1297272553,"36557":48.2123233279,"36558":48.2906237269,"36559":48.3646264799,"36560":48.4343349635,"36561":48.4997579566,"36562":48.5609096706,"36563":48.617809763,"36564":48.6704833251,"36565":48.7189608529,"36566":48.7632781912,"36567":48.803476459,"36568":48.839601948,"36569":48.8717060034,"36570":48.8998448768,"36571":48.9240795623,"36572":48.9444756061,"36573":48.9611029003,"36574":48.9740354517,"36575":48.9833511368,"36576":48.9891314345,"36577":48.9914611475,"36578":48.9918545438,"36579":48.9918804872,"36580":48.9918919407,"36581":48.9919168535,"36582":48.9919281867,"36583":48.9919532788,"36584":48.9919648673,"36585":48.9919900633,"36586":48.9920019182,"36587":48.9920272134,"36588":48.9920393224,"36589":48.9920647109,"36590":48.9920770527,"36591":48.9921025239,"36592":48.9921150695,"36593":48.9921406082,"36594":48.992153321,"36595":48.9921789076,"36596":48.9921917443,"36597":48.9922173552,"36598":48.9922302664,"36599":48.9922558744,"36600":48.9922688057,"36601":48.9922943807,"36602":48.9923072741,"36603":48.9923327835,"36604":48.9923455787,"36605":48.9923709883,"36606":48.9923836236,"36607":48.9924088984,"36608":48.9924213129,"36609":48.9924464178,"36610":48.9924585525,"36611":48.9924834532,"36612":48.9924952525,"36613":48.9925199165,"36614":48.9925313296,"36615":48.992555727,"36616":48.9925667095,"36617":48.9925908136,"36618":48.9926013286,"36619":48.992625117,"36620":48.9926351362,"36621":48.9926585911,"36622":48.992668096,"36623":48.9926912053,"36624":48.9927001878,"36625":48.9927229453,"36626":48.9927314083,"36627":48.9927538144,"36628":48.9927617724,"36629":48.9927824716,"36630":48.9927888494,"36631":48.9928090962,"36632":48.9928296436,"36633":48.9928625294,"36634":48.9928704609,"36635":48.9928899915,"36636":48.992910483,"36637":48.9929433281,"36638":48.9929661141,"36639":48.9929987586,"36640":48.9930215358,"36641":48.993054108,"36642":48.9930768384,"36643":48.9931093251,"36644":48.9931319973,"36645":48.9931643791,"36646":48.9931869821,"36647":48.9932192388,"36648":48.9932417614,"36649":48.9932738728,"36650":48.993281537,"36651":48.9933004427,"36652":48.9933204642,"36653":48.9933523841,"36654":48.993360793,"36655":48.9933801083,"36656":48.9933868218,"36657":48.9934065435,"36658":48.9934138659,"36659":48.9934352031,"36660":48.9934442756,"36661":48.9934661023,"36662":48.9934759238,"36663":48.9934981568,"36664":48.9935087986,"36665":48.9935314641,"36666":48.9935429642,"36667":48.9935660852,"36668":48.9935784676,"36669":48.9936020594,"36670":48.9936153341,"36671":48.993639404,"36672":48.993653567,"36673":48.9936781143,"36674":48.9936931479,"36675":48.9937181636,"36676":48.9937340367,"36677":48.9937595039,"36678":48.9937761726,"36679":48.9938020673,"36680":48.9938194759,"36681":48.9938457669,"36682":48.993863849,"36683":48.9938904989,"36684":48.9939091788,"36685":48.9939361447,"36686":48.9939792831,"36687":48.9940238763,"36688":48.9940679519,"36689":48.9941124578,"36690":48.9941571659,"36691":48.9942020781,"36692":48.9942471497,"36693":48.9942923448,"36694":48.9943376259,"36695":48.9943829556,"36696":48.9944282967,"36697":48.9944736126,"36698":48.9945188669,"36699":48.9945640241,"36700":48.9946090493,"36701":48.9946539089,"36702":48.9946985699,"36703":48.994743001,"36704":48.994787173,"36705":48.994831072,"36706":48.994874702,"36707":48.9949180757,"36708":48.9949612076,"36709":48.995004114,"36710":48.9950468133,"36711":48.9950893254,"36712":48.9951316722,"36713":48.9951738777,"36714":48.9952159677,"36715":48.99525797,"36716":48.9952999144,"36717":48.9953418324,"36718":48.9953837578,"36719":48.995425726,"36720":48.9954677743,"36721":48.9955099418,"36722":48.9955522693,"36723":48.9955947994,"36724":48.9956375758,"36725":48.9956806442,"36726":48.9957240514,"36727":48.9957678453,"36728":48.9958120751,"36729":48.995856791,"36730":48.9959020442,"36731":48.9959478862,"36732":48.9959943695,"36733":48.9960415469,"36734":48.9961167148,"36735":48.9962934699,"36736":48.9966704002,"36737":48.9973529469,"36738":48.9984513798,"36739":49.0000809107,"36740":49.0023613538,"36741":49.0054168534,"36742":49.0093755691,"36743":49.0143693493,"36744":49.0205333837,"36745":49.0280058429,"36746":49.0369275013,"36747":49.0474413503,"36748":49.0596921991,"36749":49.0738262699,"36750":49.089990784,"36751":49.1083335469,"36752":49.1290025279,"36753":49.1521454434,"36754":49.1779093382,"36755":49.2064401744,"36756":49.2378824225,"36757":49.272378663,"36758":49.3100691953,"36759":49.351091659,"36760":49.3955806662,"36761":49.4436674498,"36762":49.4954795244,"36763":49.551140367,"36764":49.6107691121,"36765":49.6744802686,"36766":49.7423834528,"36767":49.8145831456,"36768":49.8911784664,"36769":49.9722629721,"36770":50.0579244746,"36771":50.1482448835,"36772":50.2433000675,"36773":50.3431597409,"36774":50.4478873698,"36775":50.5575401025,"36776":50.6721687185,"36777":50.7918176024,"36778":50.9165247344,"36779":51.0463217049,"36780":51.1812337456,"36781":51.3212797818,"36782":51.4664725007,"36783":51.6168184396,"36784":51.772318087,"36785":51.9329660038,"36786":52.0987509536,"36787":52.2696560521,"36788":52.4456589239,"36789":52.6267318744,"36790":52.8128420695,"36791":53.0039517244,"36792":53.2000183006,"36793":53.4009947119,"36794":53.6068295302,"36795":53.8174671978,"36796":54.0328482429,"36797":54.2529094972,"36798":54.4775843085,"36799":54.7068027569,"36800":54.9404918639,"36801":55.1785758004,"36802":55.4209760857,"36803":55.6676117826,"36804":55.9183996807,"36805":56.1732544716,"36806":56.4320889123,"36807":56.6948139794,"36808":56.961339004,"36809":57.2315717974,"36810":57.5054187572,"36811":57.7827849618,"36812":58.0635742429,"36813":58.3476892425,"36814":58.635031452,"36815":58.9255012342,"36816":59.2189978223,"36817":59.5154193024,"36818":59.8146625782,"36819":60.1166233168,"36820":60.4211958756,"36821":60.7282732133,"36822":61.0377467832,"36823":61.3495064151,"36824":61.6634401776,"36825":61.9794342312,"36826":62.29737267,"36827":62.6171373572,"36828":62.9386077469,"36829":63.2616607077,"36830":63.5861703374,"36831":63.9120077829,"36832":64.2390410573,"36833":64.5671348623,"36834":64.8961504196,"36835":65.225945309,"36836":65.5563733184,"36837":65.8872843113,"36838":66.2185241059,"36839":66.5499343745,"36840":66.8813525663,"36841":67.2126118537,"36842":67.5435410994,"36843":67.873964853,"36844":68.2037033767,"36845":68.5325726997,"36846":68.8603847035,"36847":69.1869472383,"36848":69.5120642715,"36849":69.8355360716,"36850":70.1571594196,"36851":70.4767278545,"36852":70.7940319523,"36853":71.1088596345,"36854":71.4209965053,"36855":71.7302262186,"36856":72.0363308708,"36857":72.3390914187,"36858":72.6382881202,"36859":72.9337009942,"36860":73.2251103028,"36861":73.5122970414,"36862":73.7950434482,"36863":74.0731335179,"36864":74.3463535264,"36865":74.6144925544,"36866":74.8773430155,"36867":75.1347011766,"36868":75.3863676767,"36869":75.6321480314,"36870":75.8718531294,"36871":76.1052997091,"36872":76.3323108198,"36873":76.5527162578,"36874":76.766352982,"36875":76.9730654976,"36876":77.1727062149,"36877":77.3651357714,"36878":77.5502233242,"36879":77.7278468015,"36880":77.8978931211,"36881":78.0602583641,"36882":78.2148479131,"36883":78.3615765436,"36884":78.5003684766,"36885":78.6311573846,"36886":78.753886357,"36887":78.8685078187,"36888":78.9749834086,"36889":79.0732838111,"36890":79.1633885506,"36891":79.2452857392,"36892":79.3189717906,"36893":79.3844510908,"36894":79.4417356378,"36895":79.490844643,"36896":79.5318041063,"36897":79.564646359,"36898":79.5894095854,"36899":79.6061373196,"36900":79.6148779282,"36901":79.6173509236,"36902":79.6174986294,"36903":79.6174845428,"36904":79.6175110925,"36905":79.6175238687,"36906":79.6175449724,"36907":79.617558748,"36908":79.6175795718,"36909":79.6175933049,"36910":79.6176140507,"36911":79.6176276901,"36912":79.6176483608,"36913":79.6176618936,"36914":79.6176824831,"36915":79.6176958971,"36916":79.617716398,"36917":79.6177296797,"36918":79.6177500834,"36919":79.617763218,"36920":79.617783515,"36921":79.6177964863,"36922":79.6178149566,"36923":79.6178263883,"36924":79.6178446317,"36925":79.6178559391,"36926":79.6178740926,"36927":79.6178852296,"36928":79.6179032885,"36929":79.6179142384,"36930":79.6179321914,"36931":79.6179429387,"36932":79.6179607734,"36933":79.6179713034,"36934":79.6179890071,"36935":79.6179993061,"36936":79.6180168662,"36937":79.6180269221,"36938":79.6180443267,"36939":79.6180541298,"36940":79.6180713679,"36941":79.6180809113,"36942":79.6180979738,"36943":79.6181072538,"36944":79.6181241338,"36945":79.6181331504,"36946":79.6181498435,"36947":79.6181586008,"36948":79.6181751054,"36949":79.6181836118,"36950":79.6181999293,"36951":79.6182081971,"36952":79.6182243321,"36953":79.6182323775,"36954":79.6182483375,"36955":79.6182561803,"36956":79.6182719755,"36957":79.6182796381,"36958":79.6182952808,"36959":79.6183027879,"36960":79.6183182921,"36961":79.6183256694,"36962":79.6183410501,"36963":79.6183483237,"36964":79.6183635961,"36965":79.6183707912,"36966":79.6183859703,"36967":79.6183931103,"36968":79.6184082097,"36969":79.6184153151,"36970":79.6184303468,"36971":79.6184374347,"36972":79.6184524085,"36973":79.6184594912,"36974":79.6184744142,"36975":79.6184814992,"36976":79.6184963755,"36977":79.6185034646,"36978":79.6185182954,"36979":79.6185253845,"36980":79.6185401677,"36981":79.6185472465,"36982":79.6185619772,"36983":79.6185690288,"36984":79.6185836987,"36985":79.6185906997,"36986":79.6186052973,"36987":79.6186122169,"36988":79.6186267274,"36989":79.6186335272,"36990":79.6186479312,"36991":79.6186545642,"36992":79.6186688373,"36993":79.6186752463,"36994":79.6186893574,"36995":79.6186954732,"36996":79.6187093816,"36997":79.6187151204,"36998":79.6187287737,"36999":79.6187340335,"37000":-0.0010509593,"37001":0.0155448685,"37002":-0.0011231372,"37003":0.0167975948,"37004":-0.0012137523,"37005":0.0183465917,"37006":-0.0013258164,"37007":0.0202391855,"37008":-0.0014627647,"37009":0.0225280019,"37010":-0.0016284187,"37011":0.0252709189,"37012":-0.0018269866,"37013":0.0285321315,"37014":-0.00206314,"37015":0.0323819472,"37016":-0.0023420004,"37017":0.0368960032,"37018":-0.0026690843,"37019":0.0421541579,"37020":-0.003050224,"37021":0.0482390723,"37022":-0.0034914664,"37023":0.0552344757,"37024":-0.0039989485,"37025":0.0632231741,"37026":-0.0045787532,"37027":0.0722848527,"37028":-0.0052367509,"37029":0.0824937497,"37030":-0.00597843,"37031":0.0939162899,"37032":-0.0068087247,"37033":2.4382178484,"37034":13.1383628943,"37035":29.9564241271,"37036":51.1037279495,"37037":75.1876835685,"37038":101.109972128,"37039":128.0107377487,"37040":155.2193695097,"37041":182.2179308648,"37042":208.6141405804,"37043":234.1144786838,"37044":258.5000507037,"37045":281.6103040444,"37046":303.331414403,"37047":323.5869208894,"37048":342.3302443853,"37049":359.5387200011,"37050":375.2088214765,"37051":389.3524302564,"37052":401.9940988656,"37053":413.1684089585,"37054":422.9175560226,"37055":431.2896371028,"37056":438.3373771635,"37057":444.1170700899,"37058":448.6876984331,"37059":452.1101972762,"37060":454.4468323437,"37061":455.7611037367,"37062":456.1203577232,"37063":455.5943744862,"37064":454.2514813715,"37065":452.1574572664,"37066":449.3757572966,"37067":445.9675938438,"37068":441.9919762019,"37069":437.5057362722,"37070":432.5635358587,"37071":427.2178776446,"37072":421.5195170069,"37073":415.5173629306,"37074":409.2580025536,"37075":402.7855792357,"37076":396.1418499515,"37077":389.36622527,"37078":382.4958063327,"37079":375.5654232769,"37080":368.6076747581,"37081":361.6529698568,"37082":354.7267698323,"37083":347.8499474637,"37084":341.0419334193,"37085":334.3217362419,"37086":327.7076465105,"37087":321.2170138761,"37088":314.866092383,"37089":308.6699216187,"37090":302.6422455139,"37091":296.7954600601,"37092":291.1401619357,"37093":285.6851396051,"37094":280.437858278,"37095":275.4046803402,"37096":270.5908571876,"37097":266.0005196534,"37098":261.6366873702,"37099":257.5012892553,"37100":253.5951938095,"37101":249.9182470506,"37102":246.4644402266,"37103":243.2212616385,"37104":240.1753657871,"37105":237.3156797575,"37106":234.6331901415,"37107":232.12032858,"37108":229.7705357706,"37109":227.5779098332,"37110":225.5369318919,"37111":223.6422563552,"37112":221.8873689158,"37113":220.2640927502,"37114":218.763918818,"37115":217.3789377388,"37116":216.10181206,"37117":214.925579658,"37118":213.8435259266,"37119":212.8490919668,"37120":211.9358123661,"37121":211.0972775446,"37122":210.32387406,"37123":209.6009711605,"37124":208.9129115154,"37125":208.2465447627,"37126":207.5914461635,"37127":206.9393011389,"37128":206.283476902,"37129":205.6186764068,"37130":204.9406575583,"37131":204.2460113564,"37132":203.5315850796,"37133":202.7939917753,"37134":202.030025646,"37135":201.2371658869,"37136":200.4135809807,"37137":199.5579897749,"37138":198.6695644143,"37139":197.7478552533,"37140":196.7927321451,"37141":195.8043396443,"37142":194.7823146129,"37143":193.7247435958,"37144":192.6291721314,"37145":191.4940622253,"37146":190.3189921871,"37147":189.1044113254,"37148":187.8514677079,"37149":186.5618663554,"37150":185.2377487485,"37151":183.8815933284,"37152":182.4960223852,"37153":181.0834996658,"37154":179.6464405927,"37155":178.1874748544,"37156":176.7094618657,"37157":175.2154112034,"37158":173.7084229319,"37159":172.1916380708,"37160":170.6681964028,"37161":169.1412011261,"37162":167.6138186736,"37163":166.089711675,"37164":164.5727874827,"37165":163.066613256,"37166":161.574284741,"37167":160.0984942873,"37168":158.6415746327,"37169":157.2055339789,"37170":155.7920859761,"37171":154.4026738587,"37172":153.0385082659,"37173":151.7007115727,"37174":150.3902865147,"37175":149.107975905,"37176":147.8542367408,"37177":146.6292678564,"37178":145.4330299466,"37179":144.2652625184,"37180":143.125499181,"37181":142.0130813396,"37182":140.9272185903,"37183":139.8685181972,"37184":138.838665742,"37185":137.838739224,"37186":136.8688004759,"37187":135.9281306943,"37188":135.0153914504,"37189":134.1287576148,"37190":133.2660346135,"37191":132.4247567838,"37192":131.6022707783,"37193":130.7962334598,"37194":130.0046196624,"37195":129.2252931321,"37196":128.4558963326,"37197":127.6939373801,"37198":126.9368621539,"37199":126.1821123235,"37200":125.427174375,"37201":124.669619559,"37202":123.9071363328,"37203":123.1388482677,"37204":122.3653274002,"37205":121.5871383971,"37206":120.8042313507,"37207":120.0160699578,"37208":119.2217929903,"37209":118.4203389653,"37210":117.610551471,"37211":116.791264204,"37212":115.9613686056,"37213":115.120107524,"37214":114.2671467758,"37215":113.4023210182,"37216":112.5254978333,"37217":111.6366000494,"37218":110.7356427053,"37219":109.8227565208,"37220":108.8982031252,"37221":107.9623829892,"37222":107.0158372602,"37223":106.060060633,"37224":105.0977509269,"37225":104.1318188666,"37226":103.1646927428,"37227":102.1983057502,"37228":101.2342175631,"37229":100.2737016437,"37230":99.3178168727,"37231":98.3674648231,"37232":97.4234337844,"37233":96.4865952106,"37234":95.5580167453,"37235":94.6387725762,"37236":93.7297708036,"37237":92.8317447778,"37238":91.9452838246,"37239":91.0708520662,"37240":90.2088009857,"37241":89.3593769818,"37242":88.5227246268,"37243":87.6990264327,"37244":86.88862271,"37245":86.0918241678,"37246":85.3087016971,"37247":84.5390580037,"37248":83.7824559898,"37249":83.0382380018,"37250":82.3055415989,"37251":81.5833128106,"37252":80.8703169907,"37253":80.1651861263,"37254":79.4664782013,"37255":78.7726303943,"37256":78.0818889686,"37257":77.3923039436,"37258":76.7017472024,"37259":76.0079275123,"37260":75.3084046272,"37261":74.6006029423,"37262":73.8818247311,"37263":73.1491903093,"37264":72.3994970751,"37265":71.6293450615,"37266":70.8353572107,"37267":70.0142299254,"37268":69.1627154177,"37269":68.2776131846,"37270":67.3557652548,"37271":66.3940541809,"37272":65.389404043,"37273":64.3387635825,"37274":63.2390400391,"37275":62.087143622,"37276":60.8800865221,"37277":59.61501155,"37278":58.2891899569,"37279":56.9000234121,"37280":55.4450475287,"37281":53.9219361917,"37282":52.328506632,"37283":50.6626256332,"37284":48.9215143382,"37285":47.1019995074,"37286":45.2013470189,"37287":43.2174563151,"37288":41.1487500783,"37289":38.9940972882,"37290":36.7527484483,"37291":34.4242782451,"37292":32.0085375961,"37293":29.5056023264,"37294":26.9153838883,"37295":24.2376826108,"37296":21.4725682098,"37297":18.6204629984,"37298":15.6820755574,"37299":12.6583538302,"37300":9.5504467763,"37301":6.3596716019,"37302":3.0874871792,"37303":-0.2645274721,"37304":1.2733802558,"37305":0.5106344027,"37306":0.2237977558,"37307":-0.0247976904,"37308":1.2166432321,"37309":-0.4218538093,"37310":1.2234549779,"37311":-0.0913862419,"37312":1.1736707939,"37313":-0.0876339419,"37314":1.1461498471,"37315":-0.0855442826,"37316":1.1167137404,"37317":-0.083310551,"37318":1.0853580407,"37319":-0.08093288,"37320":1.0522348341,"37321":-0.0784228341,"37322":1.0175141846,"37323":-0.0757943629,"37324":0.9813756905,"37325":-0.0730607095,"37326":0.9440220717,"37327":-0.0702377252,"37328":0.9056705833,"37329":-0.0673420631,"37330":0.8665465453,"37331":-0.0643909667,"37332":0.8268800922,"37333":-0.0614019898,"37334":0.7869026094,"37335":-0.0583927225,"37336":0.7468432034,"37337":-0.0553805205,"37338":0.7069252914,"37339":-0.0523822471,"37340":0.6673633948,"37341":-0.0494140306,"37342":0.6283602134,"37343":-0.046491047,"37344":0.5901040479,"37345":-0.0436273296,"37346":0.5527666232,"37347":-0.0408356109,"37348":0.5165013513,"37349":-0.0381271989,"37350":0.4814420573,"37351":-0.0355118899,"37352":0.4477021763,"37353":-0.0329979166,"37354":0.4153744128,"37355":-0.0305919322,"37356":0.3845308403,"37357":-0.0282990266,"37358":0.3552234084,"37359":-0.0261227739,"37360":0.3274848109,"37361":-0.0240653054,"37362":0.3013296643,"37363":-0.022127406,"37364":0.2767559379,"37365":-0.0203086273,"37366":0.2537465774,"37367":-0.018607415,"37368":0.2322712607,"37369":-0.0170212446,"37370":0.2122882292,"37371":-0.0155467612,"37372":0.1937461409,"37373":-0.0141799206,"37374":0.1765858973,"37375":-0.0129161263,"37376":0.1607424027,"37377":-0.0117503617,"37378":0.1461462229,"37379":-0.0106773128,"37380":0.1327251152,"37381":-0.0096914814,"37382":0.1204054121,"37383":-0.0087872866,"37384":0.1091132454,"37385":-0.0079591541,"37386":0.0987756055,"37387":-0.0072015925,"37388":0.0893212353,"37389":-0.0065092581,"37390":0.0806813629,"37391":-0.0058770068,"37392":0.0727902802,"37393":-0.0052999346,"37394":0.0655857798,"37395":-0.0047734084,"37396":0.0590094597,"37397":-0.0042930864,"37398":0.0530069125,"37399":-0.0038549302,"37400":0.0475278108,"37401":-0.0034552099,"37402":0.0425259031,"37403":-0.003090502,"37404":0.0379589353,"37405":-0.0027431037,"37406":0.0337733201,"37407":-0.0021509665,"37408":0.0296653124,"37409":-0.0018718463,"37410":0.0262063328,"37411":-0.0016383077,"37412":0.0230501694,"37413":-0.0014258598,"37414":0.0201699883,"37415":-0.0012325799,"37416":0.0175432271,"37417":-0.0010568561,"37418":0.0151496526,"37419":-0.0008972445,"37420":0.0129710675,"37421":-0.0007524486,"37422":0.0109053842,"37423":-0.0006567651,"37424":0.0091259782,"37425":-0.0005267664,"37426":0.0075070404,"37427":-0.0004139551,"37428":0.0060499578,"37429":-0.0003128683,"37430":0.0047374939,"37431":-0.0002222033,"37432":0.0035587934,"37433":-0.0001411457,"37434":0.0025036549,"37435":-0.0000689317,"37436":0.0015624062,"37437":-0.0000048393,"37438":0.0007258377,"37439":0.0000518168,"37440":0.0001490016,"37441":-0.0000107787,"37442":0.0,"37443":0.0,"37444":0.0000000003,"37445":0.0,"37446":0.0000000003,"37447":-0.0,"37448":0.0000036854,"37449":-0.0000002665,"37450":0.0000035902,"37451":-0.0000002596,"37452":0.0000034814,"37453":-0.0000002517,"37454":0.0000033786,"37455":-0.0000002442,"37456":0.0000032817,"37457":-0.0000002372,"37458":0.0000031907,"37459":-0.0000002306,"37460":0.0000031053,"37461":-0.0000002244,"37462":0.0000030252,"37463":-0.0000002186,"37464":0.0000029503,"37465":-0.0000002132,"37466":0.0000028801,"37467":-0.0000002081,"37468":0.0000028144,"37469":-0.0000002033,"37470":0.0000027526,"37471":-0.0000001988,"37472":0.0000026946,"37473":-0.0000001946,"37474":0.0000000063,"37475":-0.0000000005,"37476":0.0000000062,"37477":-0.0000000003,"37478":0.000002525,"37479":-0.0000001824,"37480":0.0000024911,"37481":-0.0000001799,"37482":0.0000024459,"37483":-0.0000001767,"37484":0.0000024021,"37485":-0.0000001735,"37486":0.0000023596,"37487":-0.0000001704,"37488":0.0000023182,"37489":-0.0000001674,"37490":0.0000022778,"37491":-0.0000001645,"37492":0.0000000125,"37493":-0.0000000009,"37494":0.0000021874,"37495":-0.000000158,"37496":0.0000000131,"37497":-0.0000000009,"37498":0.0000000115,"37499":-0.0000000007,"37500":0.0000020744,"37501":-0.0000001498,"37502":0.0000020486,"37503":-0.0000001479,"37504":0.0000020125,"37505":-0.0000001453,"37506":0.0000019769,"37507":-0.0000001427,"37508":0.000001942,"37509":-0.0000001402,"37510":0.0000019079,"37511":-0.0000001378,"37512":0.0000018745,"37513":-0.0000001353,"37514":0.0000018421,"37515":-0.000000133,"37516":0.0000018106,"37517":-0.0000001307,"37518":0.0000000117,"37519":-0.0000000008,"37520":0.0000017413,"37521":-0.0000001257,"37522":0.0000017221,"37523":-0.0000001243,"37524":0.0000000102,"37525":-0.0000000007,"37526":0.0000000084,"37527":-0.0000000005,"37528":0.0000016348,"37529":-0.000000118,"37530":0.0000016194,"37531":-0.0000001169,"37532":0.0000000081,"37533":-0.0000000006,"37534":0.0000015662,"37535":-0.0000001131,"37536":0.0000015534,"37537":-0.0000001122,"37538":0.0000000063,"37539":-0.0000000005,"37540":0.000000005,"37541":-0.0000000003,"37542":0.0000000045,"37543":-0.0000000003,"37544":0.000000004,"37545":-0.0000000003,"37546":0.0000000036,"37547":-0.0000000003,"37548":0.0000014367,"37549":-0.0000001037,"37550":0.0000000032,"37551":-0.0000000002,"37552":0.0000000023,"37553":0.0,"37554":0.0000000001,"37555":-0.0,"37556":0.0000013754,"37557":-0.0000000993,"37558":0.0000013681,"37559":-0.0000000988,"37560":0.0000013539,"37561":-0.0000000977,"37562":0.0000013398,"37563":-0.0000000967,"37564":0.000001326,"37565":-0.0000000957,"37566":0.0000013125,"37567":-0.0000000948,"37568":0.0000012991,"37569":-0.0000000938,"37570":0.0000012859,"37571":-0.0000000928,"37572":0.000001273,"37573":-0.0000000919,"37574":0.0000012603,"37575":-0.000000091,"37576":0.0000012479,"37577":-0.0000000901,"37578":0.0010852687,"37579":-0.0000578063,"37580":0.0012744857,"37581":-0.0000724466,"37582":0.001237593,"37583":-0.0000698564,"37584":0.0011994936,"37585":-0.0000671767,"37586":0.0011622689,"37587":-0.0000645574,"37588":0.0011267869,"37589":-0.0000620611,"37590":0.0010938895,"37591":-0.0000597484,"37592":0.0010643769,"37593":-0.0000576771,"37594":0.0010389879,"37595":-0.0000559004,"37596":0.0010183831,"37597":-0.0000544662,"37598":0.0010031309,"37599":-0.0000534157,"37600":0.0009936954,"37601":-0.0000527826,"37602":0.0009904271,"37603":-0.0000525926,"37604":0.0009935548,"37605":-0.0000528628,"37606":0.0010031795,"37607":-0.000053601,"37608":0.0010192686,"37609":-0.0000548056,"37610":0.0010416519,"37611":-0.000056465,"37612":0.0010700185,"37613":-0.0000585577,"37614":0.0011039142,"37615":-0.0000610515,"37616":0.001142742,"37617":-0.0000639042,"37618":0.0011857638,"37619":-0.0000670631,"37620":0.0012321053,"37621":-0.0000704656,"37622":0.0012807649,"37623":-0.0000740398,"37624":0.0013306266,"37625":-0.0000777053,"37626":0.0013804771,"37627":-0.0000813744,"37628":0.0014290286,"37629":-0.0000860034,"37630":0.001476049,"37631":-0.0000894765,"37632":0.0015292816,"37633":-0.0000867417,"37634":0.0015532161,"37635":-0.0000951998,"37636":0.0015964736,"37637":-0.0000914883,"37638":0.0016175321,"37639":-0.0000930044,"37640":0.001631109,"37641":-0.0000940133,"37642":0.0016349501,"37643":-0.0000943567,"37644":0.0016283866,"37645":-0.0000939879,"37646":0.0016109928,"37647":-0.0000928771,"37648":0.0015825995,"37649":-0.0000910121,"37650":0.0015318524,"37651":-0.000094238,"37652":0.0014948206,"37653":-0.0000851583,"37654":0.0014231675,"37655":-0.0000864966,"37656":0.0013562401,"37657":-0.0000817144,"37658":0.0012801125,"37659":-0.0000752886,"37660":0.0011963247,"37661":-0.0000692821,"37662":0.0011083053,"37663":-0.0000629718,"37664":0.0010165192,"37665":-0.0000563882,"37666":0.0009224828,"37667":-0.0000496412,"37668":0.0008277171,"37669":-0.0000428413,"37670":0.0007336996,"37671":-0.0000360953,"37672":0.0006418274,"37673":-0.0000295043,"37674":0.0005533869,"37675":-0.0000231612,"37676":0.0004695306,"37677":-0.000017149,"37678":0.000391262,"37679":-0.0000115397,"37680":0.0003194278,"37681":-0.0000063941,"37682":0.000254717,"37683":-0.0000017614,"37684":0.0001976657,"37685":0.0000023202,"37686":0.0000237678,"37687":0.000021546,"37688":0.0000217946,"37689":0.0000218585,"37690":0.0000219232,"37691":0.0000219753,"37692":0.0000220158,"37693":0.0000220447,"37694":0.0000220621,"37695":0.000022068,"37696":0.0000220626,"37697":0.000022046,"37698":0.0000220183,"37699":0.0000219797,"37700":0.0000219303,"37701":0.0000218703,"37702":0.0000217998,"37703":0.0000217192,"37704":0.0000216295,"37705":0.0000215395,"37706":0.0000214575,"37707":0.0000213856,"37708":0.0000213244,"37709":0.0000212743,"37710":0.000021236,"37711":0.0000212101,"37712":0.0000211973,"37713":0.0000211983,"37714":0.0000212139,"37715":0.0000212447,"37716":0.0000212917,"37717":0.0000213555,"37718":0.000021437,"37719":0.0000215371,"37720":0.0000216565,"37721":0.000021796,"37722":0.0000219565,"37723":0.0000221386,"37724":0.0000223431,"37725":0.0000225707,"37726":0.000022822,"37727":0.0000230977,"37728":0.0000233982,"37729":0.000023724,"37730":0.0000240756,"37731":0.0000244532,"37732":0.0000248571,"37733":0.0000252875,"37734":-0.0000018252,"37735":0.0,"37736":0.0,"37737":0.0,"37738":0.0,"37739":-0.0,"37740":0.0000009053,"37741":-0.0000000653,"37742":0.0000009192,"37743":-0.0000000663,"37744":0.0000009289,"37745":-0.0000000671,"37746":0.0000009393,"37747":-0.0000000678,"37748":0.0000009502,"37749":-0.0000000686,"37750":0.0000009618,"37751":-0.0000000694,"37752":0.0000009739,"37753":-0.0000000703,"37754":0.0000009866,"37755":-0.0000000712,"37756":0.000001,"37757":-0.0000000722,"37758":0.0000010139,"37759":-0.0000000732,"37760":0.0000010285,"37761":-0.0000000742,"37762":0.0000010437,"37763":-0.0000000753,"37764":0.0000010594,"37765":-0.0000000765,"37766":0.0000010758,"37767":-0.0000000777,"37768":0.0000010927,"37769":-0.0000000789,"37770":0.0000011101,"37771":-0.0000000801,"37772":0.000001128,"37773":-0.0000000814,"37774":0.0000011465,"37775":-0.0000000828,"37776":0.0000011653,"37777":-0.0000000841,"37778":0.0000011845,"37779":-0.0000000855,"37780":0.0000012041,"37781":-0.0000000869,"37782":0.0000012239,"37783":-0.0000000884,"37784":0.000001244,"37785":-0.0000000898,"37786":0.0000012642,"37787":-0.0000000913,"37788":0.0000012845,"37789":-0.0000000927,"37790":0.000000005,"37791":-0.0000000004,"37792":0.0000013183,"37793":-0.0000000952,"37794":0.0000000059,"37795":-0.0000000004,"37796":0.0000013585,"37797":-0.0000000981,"37798":0.0000013855,"37799":-0.0000001,"37800":0.0000014054,"37801":-0.0000001015,"37802":0.000001425,"37803":-0.0000001029,"37804":0.0000000076,"37805":-0.0000000005,"37806":0.0000014562,"37807":-0.0000001051,"37808":0.0000014826,"37809":-0.000000107,"37810":0.0000015014,"37811":-0.0000001084,"37812":0.0000000082,"37813":-0.0000000006,"37814":0.0000015302,"37815":-0.0000001105,"37816":0.0000000083,"37817":-0.0000000006,"37818":0.0000000071,"37819":-0.0000000005,"37820":0.000000007,"37821":-0.0000000005,"37822":0.0000015999,"37823":-0.0000001155,"37824":0.0000000079,"37825":-0.0000000006,"37826":0.0000016328,"37827":-0.0000001179,"37828":0.000001657,"37829":-0.0000001196,"37830":0.0000016724,"37831":-0.0000001207,"37832":0.0000000069,"37833":-0.0000000005,"37834":0.0000000057,"37835":-0.0000000004,"37836":0.0000017063,"37837":-0.0000001232,"37838":0.000000006,"37839":-0.0000000004,"37840":0.0000017311,"37841":-0.000000125,"37842":0.0000000052,"37843":-0.0000000004,"37844":0.0000000042,"37845":-0.0000000003,"37846":0.0000000039,"37847":-0.0000000003,"37848":0.0000017699,"37849":-0.0000001278,"37850":0.0000000038,"37851":-0.0000000003,"37852":0.000000003,"37853":0.0,"37854":0.0,"37855":0.0,"37856":0.0,"37857":0.0,"37858":-0.0,"37859":0.0000017935,"37860":-0.0000001295,"37861":0.000001803,"37862":-0.0000001302,"37863":0.0000018018,"37864":-0.0000001301,"37865":0.0000017994,"37866":-0.0000001299,"37867":0.0000017958,"37868":-0.0000001296,"37869":0.000001791,"37870":-0.0000001293,"37871":0.0000017853,"37872":-0.0000001289,"37873":0.0000017787,"37874":-0.0000001284,"37875":0.0000017713,"37876":-0.0000001279,"37877":0.0000017632,"37878":-0.0000001273,"37879":0.0000017547,"37880":-0.0000001267,"37881":0.0000017458,"37882":-0.000000126,"37883":0.0000017367,"37884":-0.0000001254,"37885":0.0000017274,"37886":-0.0000001247,"37887":0.0000017181,"37888":-0.000000124,"37889":0.0000017088,"37890":-0.0000001234,"37891":0.0000016996,"37892":-0.0000001227,"37893":0.0000016904,"37894":-0.000000122,"37895":0.0000016812,"37896":-0.0000001214,"37897":0.0000016721,"37898":-0.0000001207,"37899":0.0000016628,"37900":-0.0000001201,"37901":0.0013375144,"37902":-0.000084935,"37903":0.0034075131,"37904":-0.0002296366,"37905":0.003504478,"37906":-0.0002365826,"37907":0.0036085533,"37908":-0.0002440308,"37909":0.0037320835,"37910":-0.0002528713,"37911":0.0038772889,"37912":-0.0002632635,"37913":0.0040462522,"37914":-0.000275357,"37915":0.0042409116,"37916":-0.0002892915,"37917":0.0044629895,"37918":-0.0003051915,"37919":0.0047139133,"37920":-0.0003231607,"37921":0.0049962171,"37922":-0.0003448587,"37923":0.0053090511,"37924":-0.000367244,"37925":0.00565075,"37926":-0.0003917054,"37927":0.0060222562,"37928":-0.0004183107,"37929":0.0064221846,"37930":-0.0004469629,"37931":0.0068483283,"37932":-0.0004775062,"37933":0.0072976164,"37934":-0.0005097228,"37935":0.0077660916,"37936":-0.0005433307,"37937":0.0082489235,"37938":-0.0005779853,"37939":0.0087404618,"37940":-0.0006132823,"37941":0.0092343342,"37942":-0.0006487651,"37943":0.0097235887,"37944":-0.0006839349,"37945":0.010200881,"37946":-0.000718264,"37947":0.0106586979,"37948":-0.0007512119,"37949":0.0110896126,"37950":-0.000782244,"37951":0.0114865584,"37952":-0.000810851,"37953":0.01184311,"37954":-0.0008365692,"37955":0.0121537574,"37956":-0.0008590009,"37957":0.01241416,"37958":-0.0008778321,"37959":0.0126213685,"37960":-0.000892849,"37961":0.0127740023,"37962":-0.0009039507,"37963":0.0128723769,"37964":-0.0009111585,"37965":0.0129185751,"37966":-0.0009146208,"37967":0.0129164615,"37968":-0.0009146144,"37969":0.0128716432,"37970":-0.0009115415,"37971":0.0127913832,"37972":-0.0009059233,"37973":0.0126844771,"37974":-0.0008983909,"37975":0.012561105,"37976":-0.0008896749,"37977":0.0124326763,"37978":-0.0008805937,"37979":0.0123116826,"37980":-0.0008720434,"37981":0.0122115812,"37982":-0.0008649887,"37983":0.0121467252,"37984":-0.0008604587,"37985":0.0121323621,"37986":-0.0008595466,"37987":0.0121847152,"37988":-0.0008634158,"37989":0.0123211645,"37990":-0.0008733135,"37991":0.0125605334,"37992":-0.0008905917,"37993":0.0129234857,"37994":-0.0009167364,"37995":0.013433028,"37996":-0.0009534048,"37997":0.0141151023,"37998":-0.0010024691,"37999":0.0149992462}} \ No newline at end of file +{ + "name": { + "0": "flow:inlet_aorta:RCR_aorta", + "1": "flow:inlet_aorta:RCR_aorta", + "2": "flow:inlet_aorta:RCR_aorta", + "3": "flow:inlet_aorta:RCR_aorta", + "4": "flow:inlet_aorta:RCR_aorta", + "5": "flow:inlet_aorta:RCR_aorta", + "6": "flow:inlet_aorta:RCR_aorta", + "7": "flow:inlet_aorta:RCR_aorta", + "8": "flow:inlet_aorta:RCR_aorta", + "9": "flow:inlet_aorta:RCR_aorta", + "10": "flow:inlet_aorta:RCR_aorta", + "11": "flow:inlet_aorta:RCR_aorta", + "12": "flow:inlet_aorta:RCR_aorta", + "13": "flow:inlet_aorta:RCR_aorta", + "14": "flow:inlet_aorta:RCR_aorta", + "15": "flow:inlet_aorta:RCR_aorta", + "16": "flow:inlet_aorta:RCR_aorta", + "17": "flow:inlet_aorta:RCR_aorta", + "18": "flow:inlet_aorta:RCR_aorta", + "19": "flow:inlet_aorta:RCR_aorta", + "20": "flow:inlet_aorta:RCR_aorta", + "21": "flow:inlet_aorta:RCR_aorta", + "22": "flow:inlet_aorta:RCR_aorta", + "23": "flow:inlet_aorta:RCR_aorta", + "24": "flow:inlet_aorta:RCR_aorta", + "25": "flow:inlet_aorta:RCR_aorta", + "26": "flow:inlet_aorta:RCR_aorta", + "27": "flow:inlet_aorta:RCR_aorta", + "28": "flow:inlet_aorta:RCR_aorta", + "29": "flow:inlet_aorta:RCR_aorta", + "30": "flow:inlet_aorta:RCR_aorta", + "31": "flow:inlet_aorta:RCR_aorta", + "32": "flow:inlet_aorta:RCR_aorta", + "33": "flow:inlet_aorta:RCR_aorta", + "34": "flow:inlet_aorta:RCR_aorta", + "35": "flow:inlet_aorta:RCR_aorta", + "36": "flow:inlet_aorta:RCR_aorta", + "37": "flow:inlet_aorta:RCR_aorta", + "38": "flow:inlet_aorta:RCR_aorta", + "39": "flow:inlet_aorta:RCR_aorta", + "40": "flow:inlet_aorta:RCR_aorta", + "41": "flow:inlet_aorta:RCR_aorta", + "42": "flow:inlet_aorta:RCR_aorta", + "43": "flow:inlet_aorta:RCR_aorta", + "44": "flow:inlet_aorta:RCR_aorta", + "45": "flow:inlet_aorta:RCR_aorta", + "46": "flow:inlet_aorta:RCR_aorta", + "47": "flow:inlet_aorta:RCR_aorta", + "48": "flow:inlet_aorta:RCR_aorta", + "49": "flow:inlet_aorta:RCR_aorta", + "50": "flow:inlet_aorta:RCR_aorta", + "51": "flow:inlet_aorta:RCR_aorta", + "52": "flow:inlet_aorta:RCR_aorta", + "53": "flow:inlet_aorta:RCR_aorta", + "54": "flow:inlet_aorta:RCR_aorta", + "55": "flow:inlet_aorta:RCR_aorta", + "56": "flow:inlet_aorta:RCR_aorta", + "57": "flow:inlet_aorta:RCR_aorta", + "58": "flow:inlet_aorta:RCR_aorta", + "59": "flow:inlet_aorta:RCR_aorta", + "60": "flow:inlet_aorta:RCR_aorta", + "61": "flow:inlet_aorta:RCR_aorta", + "62": "flow:inlet_aorta:RCR_aorta", + "63": "flow:inlet_aorta:RCR_aorta", + "64": "flow:inlet_aorta:RCR_aorta", + "65": "flow:inlet_aorta:RCR_aorta", + "66": "flow:inlet_aorta:RCR_aorta", + "67": "flow:inlet_aorta:RCR_aorta", + "68": "flow:inlet_aorta:RCR_aorta", + "69": "flow:inlet_aorta:RCR_aorta", + "70": "flow:inlet_aorta:RCR_aorta", + "71": "flow:inlet_aorta:RCR_aorta", + "72": "flow:inlet_aorta:RCR_aorta", + "73": "flow:inlet_aorta:RCR_aorta", + "74": "flow:inlet_aorta:RCR_aorta", + "75": "flow:inlet_aorta:RCR_aorta", + "76": "flow:inlet_aorta:RCR_aorta", + "77": "flow:inlet_aorta:RCR_aorta", + "78": "flow:inlet_aorta:RCR_aorta", + "79": "flow:inlet_aorta:RCR_aorta", + "80": "flow:inlet_aorta:RCR_aorta", + "81": "flow:inlet_aorta:RCR_aorta", + "82": "flow:inlet_aorta:RCR_aorta", + "83": "flow:inlet_aorta:RCR_aorta", + "84": "flow:inlet_aorta:RCR_aorta", + "85": "flow:inlet_aorta:RCR_aorta", + "86": "flow:inlet_aorta:RCR_aorta", + "87": "flow:inlet_aorta:RCR_aorta", + "88": "flow:inlet_aorta:RCR_aorta", + "89": "flow:inlet_aorta:RCR_aorta", + "90": "flow:inlet_aorta:RCR_aorta", + "91": "flow:inlet_aorta:RCR_aorta", + "92": "flow:inlet_aorta:RCR_aorta", + "93": "flow:inlet_aorta:RCR_aorta", + "94": "flow:inlet_aorta:RCR_aorta", + "95": "flow:inlet_aorta:RCR_aorta", + "96": "flow:inlet_aorta:RCR_aorta", + "97": "flow:inlet_aorta:RCR_aorta", + "98": "flow:inlet_aorta:RCR_aorta", + "99": "flow:inlet_aorta:RCR_aorta", + "100": "flow:inlet_aorta:RCR_aorta", + "101": "flow:inlet_aorta:RCR_aorta", + "102": "flow:inlet_aorta:RCR_aorta", + "103": "flow:inlet_aorta:RCR_aorta", + "104": "flow:inlet_aorta:RCR_aorta", + "105": "flow:inlet_aorta:RCR_aorta", + "106": "flow:inlet_aorta:RCR_aorta", + "107": "flow:inlet_aorta:RCR_aorta", + "108": "flow:inlet_aorta:RCR_aorta", + "109": "flow:inlet_aorta:RCR_aorta", + "110": "flow:inlet_aorta:RCR_aorta", + "111": "flow:inlet_aorta:RCR_aorta", + "112": "flow:inlet_aorta:RCR_aorta", + "113": "flow:inlet_aorta:RCR_aorta", + "114": "flow:inlet_aorta:RCR_aorta", + "115": "flow:inlet_aorta:RCR_aorta", + "116": "flow:inlet_aorta:RCR_aorta", + "117": "flow:inlet_aorta:RCR_aorta", + "118": "flow:inlet_aorta:RCR_aorta", + "119": "flow:inlet_aorta:RCR_aorta", + "120": "flow:inlet_aorta:RCR_aorta", + "121": "flow:inlet_aorta:RCR_aorta", + "122": "flow:inlet_aorta:RCR_aorta", + "123": "flow:inlet_aorta:RCR_aorta", + "124": "flow:inlet_aorta:RCR_aorta", + "125": "flow:inlet_aorta:RCR_aorta", + "126": "flow:inlet_aorta:RCR_aorta", + "127": "flow:inlet_aorta:RCR_aorta", + "128": "flow:inlet_aorta:RCR_aorta", + "129": "flow:inlet_aorta:RCR_aorta", + "130": "flow:inlet_aorta:RCR_aorta", + "131": "flow:inlet_aorta:RCR_aorta", + "132": "flow:inlet_aorta:RCR_aorta", + "133": "flow:inlet_aorta:RCR_aorta", + "134": "flow:inlet_aorta:RCR_aorta", + "135": "flow:inlet_aorta:RCR_aorta", + "136": "flow:inlet_aorta:RCR_aorta", + "137": "flow:inlet_aorta:RCR_aorta", + "138": "flow:inlet_aorta:RCR_aorta", + "139": "flow:inlet_aorta:RCR_aorta", + "140": "flow:inlet_aorta:RCR_aorta", + "141": "flow:inlet_aorta:RCR_aorta", + "142": "flow:inlet_aorta:RCR_aorta", + "143": "flow:inlet_aorta:RCR_aorta", + "144": "flow:inlet_aorta:RCR_aorta", + "145": "flow:inlet_aorta:RCR_aorta", + "146": "flow:inlet_aorta:RCR_aorta", + "147": "flow:inlet_aorta:RCR_aorta", + "148": "flow:inlet_aorta:RCR_aorta", + "149": "flow:inlet_aorta:RCR_aorta", + "150": "flow:inlet_aorta:RCR_aorta", + "151": "flow:inlet_aorta:RCR_aorta", + "152": "flow:inlet_aorta:RCR_aorta", + "153": "flow:inlet_aorta:RCR_aorta", + "154": "flow:inlet_aorta:RCR_aorta", + "155": "flow:inlet_aorta:RCR_aorta", + "156": "flow:inlet_aorta:RCR_aorta", + "157": "flow:inlet_aorta:RCR_aorta", + "158": "flow:inlet_aorta:RCR_aorta", + "159": "flow:inlet_aorta:RCR_aorta", + "160": "flow:inlet_aorta:RCR_aorta", + "161": "flow:inlet_aorta:RCR_aorta", + "162": "flow:inlet_aorta:RCR_aorta", + "163": "flow:inlet_aorta:RCR_aorta", + "164": "flow:inlet_aorta:RCR_aorta", + "165": "flow:inlet_aorta:RCR_aorta", + "166": "flow:inlet_aorta:RCR_aorta", + "167": "flow:inlet_aorta:RCR_aorta", + "168": "flow:inlet_aorta:RCR_aorta", + "169": "flow:inlet_aorta:RCR_aorta", + "170": "flow:inlet_aorta:RCR_aorta", + "171": "flow:inlet_aorta:RCR_aorta", + "172": "flow:inlet_aorta:RCR_aorta", + "173": "flow:inlet_aorta:RCR_aorta", + "174": "flow:inlet_aorta:RCR_aorta", + "175": "flow:inlet_aorta:RCR_aorta", + "176": "flow:inlet_aorta:RCR_aorta", + "177": "flow:inlet_aorta:RCR_aorta", + "178": "flow:inlet_aorta:RCR_aorta", + "179": "flow:inlet_aorta:RCR_aorta", + "180": "flow:inlet_aorta:RCR_aorta", + "181": "flow:inlet_aorta:RCR_aorta", + "182": "flow:inlet_aorta:RCR_aorta", + "183": "flow:inlet_aorta:RCR_aorta", + "184": "flow:inlet_aorta:RCR_aorta", + "185": "flow:inlet_aorta:RCR_aorta", + "186": "flow:inlet_aorta:RCR_aorta", + "187": "flow:inlet_aorta:RCR_aorta", + "188": "flow:inlet_aorta:RCR_aorta", + "189": "flow:inlet_aorta:RCR_aorta", + "190": "flow:inlet_aorta:RCR_aorta", + "191": "flow:inlet_aorta:RCR_aorta", + "192": "flow:inlet_aorta:RCR_aorta", + "193": "flow:inlet_aorta:RCR_aorta", + "194": "flow:inlet_aorta:RCR_aorta", + "195": "flow:inlet_aorta:RCR_aorta", + "196": "flow:inlet_aorta:RCR_aorta", + "197": "flow:inlet_aorta:RCR_aorta", + "198": "flow:inlet_aorta:RCR_aorta", + "199": "flow:inlet_aorta:RCR_aorta", + "200": "flow:inlet_aorta:RCR_aorta", + "201": "flow:inlet_aorta:RCR_aorta", + "202": "flow:inlet_aorta:RCR_aorta", + "203": "flow:inlet_aorta:RCR_aorta", + "204": "flow:inlet_aorta:RCR_aorta", + "205": "flow:inlet_aorta:RCR_aorta", + "206": "flow:inlet_aorta:RCR_aorta", + "207": "flow:inlet_aorta:RCR_aorta", + "208": "flow:inlet_aorta:RCR_aorta", + "209": "flow:inlet_aorta:RCR_aorta", + "210": "flow:inlet_aorta:RCR_aorta", + "211": "flow:inlet_aorta:RCR_aorta", + "212": "flow:inlet_aorta:RCR_aorta", + "213": "flow:inlet_aorta:RCR_aorta", + "214": "flow:inlet_aorta:RCR_aorta", + "215": "flow:inlet_aorta:RCR_aorta", + "216": "flow:inlet_aorta:RCR_aorta", + "217": "flow:inlet_aorta:RCR_aorta", + "218": "flow:inlet_aorta:RCR_aorta", + "219": "flow:inlet_aorta:RCR_aorta", + "220": "flow:inlet_aorta:RCR_aorta", + "221": "flow:inlet_aorta:RCR_aorta", + "222": "flow:inlet_aorta:RCR_aorta", + "223": "flow:inlet_aorta:RCR_aorta", + "224": "flow:inlet_aorta:RCR_aorta", + "225": "flow:inlet_aorta:RCR_aorta", + "226": "flow:inlet_aorta:RCR_aorta", + "227": "flow:inlet_aorta:RCR_aorta", + "228": "flow:inlet_aorta:RCR_aorta", + "229": "flow:inlet_aorta:RCR_aorta", + "230": "flow:inlet_aorta:RCR_aorta", + "231": "flow:inlet_aorta:RCR_aorta", + "232": "flow:inlet_aorta:RCR_aorta", + "233": "flow:inlet_aorta:RCR_aorta", + "234": "flow:inlet_aorta:RCR_aorta", + "235": "flow:inlet_aorta:RCR_aorta", + "236": "flow:inlet_aorta:RCR_aorta", + "237": "flow:inlet_aorta:RCR_aorta", + "238": "flow:inlet_aorta:RCR_aorta", + "239": "flow:inlet_aorta:RCR_aorta", + "240": "flow:inlet_aorta:RCR_aorta", + "241": "flow:inlet_aorta:RCR_aorta", + "242": "flow:inlet_aorta:RCR_aorta", + "243": "flow:inlet_aorta:RCR_aorta", + "244": "flow:inlet_aorta:RCR_aorta", + "245": "flow:inlet_aorta:RCR_aorta", + "246": "flow:inlet_aorta:RCR_aorta", + "247": "flow:inlet_aorta:RCR_aorta", + "248": "flow:inlet_aorta:RCR_aorta", + "249": "flow:inlet_aorta:RCR_aorta", + "250": "flow:inlet_aorta:RCR_aorta", + "251": "flow:inlet_aorta:RCR_aorta", + "252": "flow:inlet_aorta:RCR_aorta", + "253": "flow:inlet_aorta:RCR_aorta", + "254": "flow:inlet_aorta:RCR_aorta", + "255": "flow:inlet_aorta:RCR_aorta", + "256": "flow:inlet_aorta:RCR_aorta", + "257": "flow:inlet_aorta:RCR_aorta", + "258": "flow:inlet_aorta:RCR_aorta", + "259": "flow:inlet_aorta:RCR_aorta", + "260": "flow:inlet_aorta:RCR_aorta", + "261": "flow:inlet_aorta:RCR_aorta", + "262": "flow:inlet_aorta:RCR_aorta", + "263": "flow:inlet_aorta:RCR_aorta", + "264": "flow:inlet_aorta:RCR_aorta", + "265": "flow:inlet_aorta:RCR_aorta", + "266": "flow:inlet_aorta:RCR_aorta", + "267": "flow:inlet_aorta:RCR_aorta", + "268": "flow:inlet_aorta:RCR_aorta", + "269": "flow:inlet_aorta:RCR_aorta", + "270": "flow:inlet_aorta:RCR_aorta", + "271": "flow:inlet_aorta:RCR_aorta", + "272": "flow:inlet_aorta:RCR_aorta", + "273": "flow:inlet_aorta:RCR_aorta", + "274": "flow:inlet_aorta:RCR_aorta", + "275": "flow:inlet_aorta:RCR_aorta", + "276": "flow:inlet_aorta:RCR_aorta", + "277": "flow:inlet_aorta:RCR_aorta", + "278": "flow:inlet_aorta:RCR_aorta", + "279": "flow:inlet_aorta:RCR_aorta", + "280": "flow:inlet_aorta:RCR_aorta", + "281": "flow:inlet_aorta:RCR_aorta", + "282": "flow:inlet_aorta:RCR_aorta", + "283": "flow:inlet_aorta:RCR_aorta", + "284": "flow:inlet_aorta:RCR_aorta", + "285": "flow:inlet_aorta:RCR_aorta", + "286": "flow:inlet_aorta:RCR_aorta", + "287": "flow:inlet_aorta:RCR_aorta", + "288": "flow:inlet_aorta:RCR_aorta", + "289": "flow:inlet_aorta:RCR_aorta", + "290": "flow:inlet_aorta:RCR_aorta", + "291": "flow:inlet_aorta:RCR_aorta", + "292": "flow:inlet_aorta:RCR_aorta", + "293": "flow:inlet_aorta:RCR_aorta", + "294": "flow:inlet_aorta:RCR_aorta", + "295": "flow:inlet_aorta:RCR_aorta", + "296": "flow:inlet_aorta:RCR_aorta", + "297": "flow:inlet_aorta:RCR_aorta", + "298": "flow:inlet_aorta:RCR_aorta", + "299": "flow:inlet_aorta:RCR_aorta", + "300": "flow:inlet_aorta:RCR_aorta", + "301": "flow:inlet_aorta:RCR_aorta", + "302": "flow:inlet_aorta:RCR_aorta", + "303": "flow:inlet_aorta:RCR_aorta", + "304": "flow:inlet_aorta:RCR_aorta", + "305": "flow:inlet_aorta:RCR_aorta", + "306": "flow:inlet_aorta:RCR_aorta", + "307": "flow:inlet_aorta:RCR_aorta", + "308": "flow:inlet_aorta:RCR_aorta", + "309": "flow:inlet_aorta:RCR_aorta", + "310": "flow:inlet_aorta:RCR_aorta", + "311": "flow:inlet_aorta:RCR_aorta", + "312": "flow:inlet_aorta:RCR_aorta", + "313": "flow:inlet_aorta:RCR_aorta", + "314": "flow:inlet_aorta:RCR_aorta", + "315": "flow:inlet_aorta:RCR_aorta", + "316": "flow:inlet_aorta:RCR_aorta", + "317": "flow:inlet_aorta:RCR_aorta", + "318": "flow:inlet_aorta:RCR_aorta", + "319": "flow:inlet_aorta:RCR_aorta", + "320": "flow:inlet_aorta:RCR_aorta", + "321": "flow:inlet_aorta:RCR_aorta", + "322": "flow:inlet_aorta:RCR_aorta", + "323": "flow:inlet_aorta:RCR_aorta", + "324": "flow:inlet_aorta:RCR_aorta", + "325": "flow:inlet_aorta:RCR_aorta", + "326": "flow:inlet_aorta:RCR_aorta", + "327": "flow:inlet_aorta:RCR_aorta", + "328": "flow:inlet_aorta:RCR_aorta", + "329": "flow:inlet_aorta:RCR_aorta", + "330": "flow:inlet_aorta:RCR_aorta", + "331": "flow:inlet_aorta:RCR_aorta", + "332": "flow:inlet_aorta:RCR_aorta", + "333": "flow:inlet_aorta:RCR_aorta", + "334": "flow:inlet_aorta:RCR_aorta", + "335": "flow:inlet_aorta:RCR_aorta", + "336": "flow:inlet_aorta:RCR_aorta", + "337": "flow:inlet_aorta:RCR_aorta", + "338": "flow:inlet_aorta:RCR_aorta", + "339": "flow:inlet_aorta:RCR_aorta", + "340": "flow:inlet_aorta:RCR_aorta", + "341": "flow:inlet_aorta:RCR_aorta", + "342": "flow:inlet_aorta:RCR_aorta", + "343": "flow:inlet_aorta:RCR_aorta", + "344": "flow:inlet_aorta:RCR_aorta", + "345": "flow:inlet_aorta:RCR_aorta", + "346": "flow:inlet_aorta:RCR_aorta", + "347": "flow:inlet_aorta:RCR_aorta", + "348": "flow:inlet_aorta:RCR_aorta", + "349": "flow:inlet_aorta:RCR_aorta", + "350": "flow:inlet_aorta:RCR_aorta", + "351": "flow:inlet_aorta:RCR_aorta", + "352": "flow:inlet_aorta:RCR_aorta", + "353": "flow:inlet_aorta:RCR_aorta", + "354": "flow:inlet_aorta:RCR_aorta", + "355": "flow:inlet_aorta:RCR_aorta", + "356": "flow:inlet_aorta:RCR_aorta", + "357": "flow:inlet_aorta:RCR_aorta", + "358": "flow:inlet_aorta:RCR_aorta", + "359": "flow:inlet_aorta:RCR_aorta", + "360": "flow:inlet_aorta:RCR_aorta", + "361": "flow:inlet_aorta:RCR_aorta", + "362": "flow:inlet_aorta:RCR_aorta", + "363": "flow:inlet_aorta:RCR_aorta", + "364": "flow:inlet_aorta:RCR_aorta", + "365": "flow:inlet_aorta:RCR_aorta", + "366": "flow:inlet_aorta:RCR_aorta", + "367": "flow:inlet_aorta:RCR_aorta", + "368": "flow:inlet_aorta:RCR_aorta", + "369": "flow:inlet_aorta:RCR_aorta", + "370": "flow:inlet_aorta:RCR_aorta", + "371": "flow:inlet_aorta:RCR_aorta", + "372": "flow:inlet_aorta:RCR_aorta", + "373": "flow:inlet_aorta:RCR_aorta", + "374": "flow:inlet_aorta:RCR_aorta", + "375": "flow:inlet_aorta:RCR_aorta", + "376": "flow:inlet_aorta:RCR_aorta", + "377": "flow:inlet_aorta:RCR_aorta", + "378": "flow:inlet_aorta:RCR_aorta", + "379": "flow:inlet_aorta:RCR_aorta", + "380": "flow:inlet_aorta:RCR_aorta", + "381": "flow:inlet_aorta:RCR_aorta", + "382": "flow:inlet_aorta:RCR_aorta", + "383": "flow:inlet_aorta:RCR_aorta", + "384": "flow:inlet_aorta:RCR_aorta", + "385": "flow:inlet_aorta:RCR_aorta", + "386": "flow:inlet_aorta:RCR_aorta", + "387": "flow:inlet_aorta:RCR_aorta", + "388": "flow:inlet_aorta:RCR_aorta", + "389": "flow:inlet_aorta:RCR_aorta", + "390": "flow:inlet_aorta:RCR_aorta", + "391": "flow:inlet_aorta:RCR_aorta", + "392": "flow:inlet_aorta:RCR_aorta", + "393": "flow:inlet_aorta:RCR_aorta", + "394": "flow:inlet_aorta:RCR_aorta", + "395": "flow:inlet_aorta:RCR_aorta", + "396": "flow:inlet_aorta:RCR_aorta", + "397": "flow:inlet_aorta:RCR_aorta", + "398": "flow:inlet_aorta:RCR_aorta", + "399": "flow:inlet_aorta:RCR_aorta", + "400": "flow:inlet_aorta:RCR_aorta", + "401": "flow:inlet_aorta:RCR_aorta", + "402": "flow:inlet_aorta:RCR_aorta", + "403": "flow:inlet_aorta:RCR_aorta", + "404": "flow:inlet_aorta:RCR_aorta", + "405": "flow:inlet_aorta:RCR_aorta", + "406": "flow:inlet_aorta:RCR_aorta", + "407": "flow:inlet_aorta:RCR_aorta", + "408": "flow:inlet_aorta:RCR_aorta", + "409": "flow:inlet_aorta:RCR_aorta", + "410": "flow:inlet_aorta:RCR_aorta", + "411": "flow:inlet_aorta:RCR_aorta", + "412": "flow:inlet_aorta:RCR_aorta", + "413": "flow:inlet_aorta:RCR_aorta", + "414": "flow:inlet_aorta:RCR_aorta", + "415": "flow:inlet_aorta:RCR_aorta", + "416": "flow:inlet_aorta:RCR_aorta", + "417": "flow:inlet_aorta:RCR_aorta", + "418": "flow:inlet_aorta:RCR_aorta", + "419": "flow:inlet_aorta:RCR_aorta", + "420": "flow:inlet_aorta:RCR_aorta", + "421": "flow:inlet_aorta:RCR_aorta", + "422": "flow:inlet_aorta:RCR_aorta", + "423": "flow:inlet_aorta:RCR_aorta", + "424": "flow:inlet_aorta:RCR_aorta", + "425": "flow:inlet_aorta:RCR_aorta", + "426": "flow:inlet_aorta:RCR_aorta", + "427": "flow:inlet_aorta:RCR_aorta", + "428": "flow:inlet_aorta:RCR_aorta", + "429": "flow:inlet_aorta:RCR_aorta", + "430": "flow:inlet_aorta:RCR_aorta", + "431": "flow:inlet_aorta:RCR_aorta", + "432": "flow:inlet_aorta:RCR_aorta", + "433": "flow:inlet_aorta:RCR_aorta", + "434": "flow:inlet_aorta:RCR_aorta", + "435": "flow:inlet_aorta:RCR_aorta", + "436": "flow:inlet_aorta:RCR_aorta", + "437": "flow:inlet_aorta:RCR_aorta", + "438": "flow:inlet_aorta:RCR_aorta", + "439": "flow:inlet_aorta:RCR_aorta", + "440": "flow:inlet_aorta:RCR_aorta", + "441": "flow:inlet_aorta:RCR_aorta", + "442": "flow:inlet_aorta:RCR_aorta", + "443": "flow:inlet_aorta:RCR_aorta", + "444": "flow:inlet_aorta:RCR_aorta", + "445": "flow:inlet_aorta:RCR_aorta", + "446": "flow:inlet_aorta:RCR_aorta", + "447": "flow:inlet_aorta:RCR_aorta", + "448": "flow:inlet_aorta:RCR_aorta", + "449": "flow:inlet_aorta:RCR_aorta", + "450": "flow:inlet_aorta:RCR_aorta", + "451": "flow:inlet_aorta:RCR_aorta", + "452": "flow:inlet_aorta:RCR_aorta", + "453": "flow:inlet_aorta:RCR_aorta", + "454": "flow:inlet_aorta:RCR_aorta", + "455": "flow:inlet_aorta:RCR_aorta", + "456": "flow:inlet_aorta:RCR_aorta", + "457": "flow:inlet_aorta:RCR_aorta", + "458": "flow:inlet_aorta:RCR_aorta", + "459": "flow:inlet_aorta:RCR_aorta", + "460": "flow:inlet_aorta:RCR_aorta", + "461": "flow:inlet_aorta:RCR_aorta", + "462": "flow:inlet_aorta:RCR_aorta", + "463": "flow:inlet_aorta:RCR_aorta", + "464": "flow:inlet_aorta:RCR_aorta", + "465": "flow:inlet_aorta:RCR_aorta", + "466": "flow:inlet_aorta:RCR_aorta", + "467": "flow:inlet_aorta:RCR_aorta", + "468": "flow:inlet_aorta:RCR_aorta", + "469": "flow:inlet_aorta:RCR_aorta", + "470": "flow:inlet_aorta:RCR_aorta", + "471": "flow:inlet_aorta:RCR_aorta", + "472": "flow:inlet_aorta:RCR_aorta", + "473": "flow:inlet_aorta:RCR_aorta", + "474": "flow:inlet_aorta:RCR_aorta", + "475": "flow:inlet_aorta:RCR_aorta", + "476": "flow:inlet_aorta:RCR_aorta", + "477": "flow:inlet_aorta:RCR_aorta", + "478": "flow:inlet_aorta:RCR_aorta", + "479": "flow:inlet_aorta:RCR_aorta", + "480": "flow:inlet_aorta:RCR_aorta", + "481": "flow:inlet_aorta:RCR_aorta", + "482": "flow:inlet_aorta:RCR_aorta", + "483": "flow:inlet_aorta:RCR_aorta", + "484": "flow:inlet_aorta:RCR_aorta", + "485": "flow:inlet_aorta:RCR_aorta", + "486": "flow:inlet_aorta:RCR_aorta", + "487": "flow:inlet_aorta:RCR_aorta", + "488": "flow:inlet_aorta:RCR_aorta", + "489": "flow:inlet_aorta:RCR_aorta", + "490": "flow:inlet_aorta:RCR_aorta", + "491": "flow:inlet_aorta:RCR_aorta", + "492": "flow:inlet_aorta:RCR_aorta", + "493": "flow:inlet_aorta:RCR_aorta", + "494": "flow:inlet_aorta:RCR_aorta", + "495": "flow:inlet_aorta:RCR_aorta", + "496": "flow:inlet_aorta:RCR_aorta", + "497": "flow:inlet_aorta:RCR_aorta", + "498": "flow:inlet_aorta:RCR_aorta", + "499": "flow:inlet_aorta:RCR_aorta", + "500": "flow:inlet_aorta:RCR_aorta", + "501": "flow:inlet_aorta:RCR_aorta", + "502": "flow:inlet_aorta:RCR_aorta", + "503": "flow:inlet_aorta:RCR_aorta", + "504": "flow:inlet_aorta:RCR_aorta", + "505": "flow:inlet_aorta:RCR_aorta", + "506": "flow:inlet_aorta:RCR_aorta", + "507": "flow:inlet_aorta:RCR_aorta", + "508": "flow:inlet_aorta:RCR_aorta", + "509": "flow:inlet_aorta:RCR_aorta", + "510": "flow:inlet_aorta:RCR_aorta", + "511": "flow:inlet_aorta:RCR_aorta", + "512": "flow:inlet_aorta:RCR_aorta", + "513": "flow:inlet_aorta:RCR_aorta", + "514": "flow:inlet_aorta:RCR_aorta", + "515": "flow:inlet_aorta:RCR_aorta", + "516": "flow:inlet_aorta:RCR_aorta", + "517": "flow:inlet_aorta:RCR_aorta", + "518": "flow:inlet_aorta:RCR_aorta", + "519": "flow:inlet_aorta:RCR_aorta", + "520": "flow:inlet_aorta:RCR_aorta", + "521": "flow:inlet_aorta:RCR_aorta", + "522": "flow:inlet_aorta:RCR_aorta", + "523": "flow:inlet_aorta:RCR_aorta", + "524": "flow:inlet_aorta:RCR_aorta", + "525": "flow:inlet_aorta:RCR_aorta", + "526": "flow:inlet_aorta:RCR_aorta", + "527": "flow:inlet_aorta:RCR_aorta", + "528": "flow:inlet_aorta:RCR_aorta", + "529": "flow:inlet_aorta:RCR_aorta", + "530": "flow:inlet_aorta:RCR_aorta", + "531": "flow:inlet_aorta:RCR_aorta", + "532": "flow:inlet_aorta:RCR_aorta", + "533": "flow:inlet_aorta:RCR_aorta", + "534": "flow:inlet_aorta:RCR_aorta", + "535": "flow:inlet_aorta:RCR_aorta", + "536": "flow:inlet_aorta:RCR_aorta", + "537": "flow:inlet_aorta:RCR_aorta", + "538": "flow:inlet_aorta:RCR_aorta", + "539": "flow:inlet_aorta:RCR_aorta", + "540": "flow:inlet_aorta:RCR_aorta", + "541": "flow:inlet_aorta:RCR_aorta", + "542": "flow:inlet_aorta:RCR_aorta", + "543": "flow:inlet_aorta:RCR_aorta", + "544": "flow:inlet_aorta:RCR_aorta", + "545": "flow:inlet_aorta:RCR_aorta", + "546": "flow:inlet_aorta:RCR_aorta", + "547": "flow:inlet_aorta:RCR_aorta", + "548": "flow:inlet_aorta:RCR_aorta", + "549": "flow:inlet_aorta:RCR_aorta", + "550": "flow:inlet_aorta:RCR_aorta", + "551": "flow:inlet_aorta:RCR_aorta", + "552": "flow:inlet_aorta:RCR_aorta", + "553": "flow:inlet_aorta:RCR_aorta", + "554": "flow:inlet_aorta:RCR_aorta", + "555": "flow:inlet_aorta:RCR_aorta", + "556": "flow:inlet_aorta:RCR_aorta", + "557": "flow:inlet_aorta:RCR_aorta", + "558": "flow:inlet_aorta:RCR_aorta", + "559": "flow:inlet_aorta:RCR_aorta", + "560": "flow:inlet_aorta:RCR_aorta", + "561": "flow:inlet_aorta:RCR_aorta", + "562": "flow:inlet_aorta:RCR_aorta", + "563": "flow:inlet_aorta:RCR_aorta", + "564": "flow:inlet_aorta:RCR_aorta", + "565": "flow:inlet_aorta:RCR_aorta", + "566": "flow:inlet_aorta:RCR_aorta", + "567": "flow:inlet_aorta:RCR_aorta", + "568": "flow:inlet_aorta:RCR_aorta", + "569": "flow:inlet_aorta:RCR_aorta", + "570": "flow:inlet_aorta:RCR_aorta", + "571": "flow:inlet_aorta:RCR_aorta", + "572": "flow:inlet_aorta:RCR_aorta", + "573": "flow:inlet_aorta:RCR_aorta", + "574": "flow:inlet_aorta:RCR_aorta", + "575": "flow:inlet_aorta:RCR_aorta", + "576": "flow:inlet_aorta:RCR_aorta", + "577": "flow:inlet_aorta:RCR_aorta", + "578": "flow:inlet_aorta:RCR_aorta", + "579": "flow:inlet_aorta:RCR_aorta", + "580": "flow:inlet_aorta:RCR_aorta", + "581": "flow:inlet_aorta:RCR_aorta", + "582": "flow:inlet_aorta:RCR_aorta", + "583": "flow:inlet_aorta:RCR_aorta", + "584": "flow:inlet_aorta:RCR_aorta", + "585": "flow:inlet_aorta:RCR_aorta", + "586": "flow:inlet_aorta:RCR_aorta", + "587": "flow:inlet_aorta:RCR_aorta", + "588": "flow:inlet_aorta:RCR_aorta", + "589": "flow:inlet_aorta:RCR_aorta", + "590": "flow:inlet_aorta:RCR_aorta", + "591": "flow:inlet_aorta:RCR_aorta", + "592": "flow:inlet_aorta:RCR_aorta", + "593": "flow:inlet_aorta:RCR_aorta", + "594": "flow:inlet_aorta:RCR_aorta", + "595": "flow:inlet_aorta:RCR_aorta", + "596": "flow:inlet_aorta:RCR_aorta", + "597": "flow:inlet_aorta:RCR_aorta", + "598": "flow:inlet_aorta:RCR_aorta", + "599": "flow:inlet_aorta:RCR_aorta", + "600": "flow:inlet_aorta:RCR_aorta", + "601": "flow:inlet_aorta:RCR_aorta", + "602": "flow:inlet_aorta:RCR_aorta", + "603": "flow:inlet_aorta:RCR_aorta", + "604": "flow:inlet_aorta:RCR_aorta", + "605": "flow:inlet_aorta:RCR_aorta", + "606": "flow:inlet_aorta:RCR_aorta", + "607": "flow:inlet_aorta:RCR_aorta", + "608": "flow:inlet_aorta:RCR_aorta", + "609": "flow:inlet_aorta:RCR_aorta", + "610": "flow:inlet_aorta:RCR_aorta", + "611": "flow:inlet_aorta:RCR_aorta", + "612": "flow:inlet_aorta:RCR_aorta", + "613": "flow:inlet_aorta:RCR_aorta", + "614": "flow:inlet_aorta:RCR_aorta", + "615": "flow:inlet_aorta:RCR_aorta", + "616": "flow:inlet_aorta:RCR_aorta", + "617": "flow:inlet_aorta:RCR_aorta", + "618": "flow:inlet_aorta:RCR_aorta", + "619": "flow:inlet_aorta:RCR_aorta", + "620": "flow:inlet_aorta:RCR_aorta", + "621": "flow:inlet_aorta:RCR_aorta", + "622": "flow:inlet_aorta:RCR_aorta", + "623": "flow:inlet_aorta:RCR_aorta", + "624": "flow:inlet_aorta:RCR_aorta", + "625": "flow:inlet_aorta:RCR_aorta", + "626": "flow:inlet_aorta:RCR_aorta", + "627": "flow:inlet_aorta:RCR_aorta", + "628": "flow:inlet_aorta:RCR_aorta", + "629": "flow:inlet_aorta:RCR_aorta", + "630": "flow:inlet_aorta:RCR_aorta", + "631": "flow:inlet_aorta:RCR_aorta", + "632": "flow:inlet_aorta:RCR_aorta", + "633": "flow:inlet_aorta:RCR_aorta", + "634": "flow:inlet_aorta:RCR_aorta", + "635": "flow:inlet_aorta:RCR_aorta", + "636": "flow:inlet_aorta:RCR_aorta", + "637": "flow:inlet_aorta:RCR_aorta", + "638": "flow:inlet_aorta:RCR_aorta", + "639": "flow:inlet_aorta:RCR_aorta", + "640": "flow:inlet_aorta:RCR_aorta", + "641": "flow:inlet_aorta:RCR_aorta", + "642": "flow:inlet_aorta:RCR_aorta", + "643": "flow:inlet_aorta:RCR_aorta", + "644": "flow:inlet_aorta:RCR_aorta", + "645": "flow:inlet_aorta:RCR_aorta", + "646": "flow:inlet_aorta:RCR_aorta", + "647": "flow:inlet_aorta:RCR_aorta", + "648": "flow:inlet_aorta:RCR_aorta", + "649": "flow:inlet_aorta:RCR_aorta", + "650": "flow:inlet_aorta:RCR_aorta", + "651": "flow:inlet_aorta:RCR_aorta", + "652": "flow:inlet_aorta:RCR_aorta", + "653": "flow:inlet_aorta:RCR_aorta", + "654": "flow:inlet_aorta:RCR_aorta", + "655": "flow:inlet_aorta:RCR_aorta", + "656": "flow:inlet_aorta:RCR_aorta", + "657": "flow:inlet_aorta:RCR_aorta", + "658": "flow:inlet_aorta:RCR_aorta", + "659": "flow:inlet_aorta:RCR_aorta", + "660": "flow:inlet_aorta:RCR_aorta", + "661": "flow:inlet_aorta:RCR_aorta", + "662": "flow:inlet_aorta:RCR_aorta", + "663": "flow:inlet_aorta:RCR_aorta", + "664": "flow:inlet_aorta:RCR_aorta", + "665": "flow:inlet_aorta:RCR_aorta", + "666": "flow:inlet_aorta:RCR_aorta", + "667": "flow:inlet_aorta:RCR_aorta", + "668": "flow:inlet_aorta:RCR_aorta", + "669": "flow:inlet_aorta:RCR_aorta", + "670": "flow:inlet_aorta:RCR_aorta", + "671": "flow:inlet_aorta:RCR_aorta", + "672": "flow:inlet_aorta:RCR_aorta", + "673": "flow:inlet_aorta:RCR_aorta", + "674": "flow:inlet_aorta:RCR_aorta", + "675": "flow:inlet_aorta:RCR_aorta", + "676": "flow:inlet_aorta:RCR_aorta", + "677": "flow:inlet_aorta:RCR_aorta", + "678": "flow:inlet_aorta:RCR_aorta", + "679": "flow:inlet_aorta:RCR_aorta", + "680": "flow:inlet_aorta:RCR_aorta", + "681": "flow:inlet_aorta:RCR_aorta", + "682": "flow:inlet_aorta:RCR_aorta", + "683": "flow:inlet_aorta:RCR_aorta", + "684": "flow:inlet_aorta:RCR_aorta", + "685": "flow:inlet_aorta:RCR_aorta", + "686": "flow:inlet_aorta:RCR_aorta", + "687": "flow:inlet_aorta:RCR_aorta", + "688": "flow:inlet_aorta:RCR_aorta", + "689": "flow:inlet_aorta:RCR_aorta", + "690": "flow:inlet_aorta:RCR_aorta", + "691": "flow:inlet_aorta:RCR_aorta", + "692": "flow:inlet_aorta:RCR_aorta", + "693": "flow:inlet_aorta:RCR_aorta", + "694": "flow:inlet_aorta:RCR_aorta", + "695": "flow:inlet_aorta:RCR_aorta", + "696": "flow:inlet_aorta:RCR_aorta", + "697": "flow:inlet_aorta:RCR_aorta", + "698": "flow:inlet_aorta:RCR_aorta", + "699": "flow:inlet_aorta:RCR_aorta", + "700": "flow:inlet_aorta:RCR_aorta", + "701": "flow:inlet_aorta:RCR_aorta", + "702": "flow:inlet_aorta:RCR_aorta", + "703": "flow:inlet_aorta:RCR_aorta", + "704": "flow:inlet_aorta:RCR_aorta", + "705": "flow:inlet_aorta:RCR_aorta", + "706": "flow:inlet_aorta:RCR_aorta", + "707": "flow:inlet_aorta:RCR_aorta", + "708": "flow:inlet_aorta:RCR_aorta", + "709": "flow:inlet_aorta:RCR_aorta", + "710": "flow:inlet_aorta:RCR_aorta", + "711": "flow:inlet_aorta:RCR_aorta", + "712": "flow:inlet_aorta:RCR_aorta", + "713": "flow:inlet_aorta:RCR_aorta", + "714": "flow:inlet_aorta:RCR_aorta", + "715": "flow:inlet_aorta:RCR_aorta", + "716": "flow:inlet_aorta:RCR_aorta", + "717": "flow:inlet_aorta:RCR_aorta", + "718": "flow:inlet_aorta:RCR_aorta", + "719": "flow:inlet_aorta:RCR_aorta", + "720": "flow:inlet_aorta:RCR_aorta", + "721": "flow:inlet_aorta:RCR_aorta", + "722": "flow:inlet_aorta:RCR_aorta", + "723": "flow:inlet_aorta:RCR_aorta", + "724": "flow:inlet_aorta:RCR_aorta", + "725": "flow:inlet_aorta:RCR_aorta", + "726": "flow:inlet_aorta:RCR_aorta", + "727": "flow:inlet_aorta:RCR_aorta", + "728": "flow:inlet_aorta:RCR_aorta", + "729": "flow:inlet_aorta:RCR_aorta", + "730": "flow:inlet_aorta:RCR_aorta", + "731": "flow:inlet_aorta:RCR_aorta", + "732": "flow:inlet_aorta:RCR_aorta", + "733": "flow:inlet_aorta:RCR_aorta", + "734": "flow:inlet_aorta:RCR_aorta", + "735": "flow:inlet_aorta:RCR_aorta", + "736": "flow:inlet_aorta:RCR_aorta", + "737": "flow:inlet_aorta:RCR_aorta", + "738": "flow:inlet_aorta:RCR_aorta", + "739": "flow:inlet_aorta:RCR_aorta", + "740": "flow:inlet_aorta:RCR_aorta", + "741": "flow:inlet_aorta:RCR_aorta", + "742": "flow:inlet_aorta:RCR_aorta", + "743": "flow:inlet_aorta:RCR_aorta", + "744": "flow:inlet_aorta:RCR_aorta", + "745": "flow:inlet_aorta:RCR_aorta", + "746": "flow:inlet_aorta:RCR_aorta", + "747": "flow:inlet_aorta:RCR_aorta", + "748": "flow:inlet_aorta:RCR_aorta", + "749": "flow:inlet_aorta:RCR_aorta", + "750": "flow:inlet_aorta:RCR_aorta", + "751": "flow:inlet_aorta:RCR_aorta", + "752": "flow:inlet_aorta:RCR_aorta", + "753": "flow:inlet_aorta:RCR_aorta", + "754": "flow:inlet_aorta:RCR_aorta", + "755": "flow:inlet_aorta:RCR_aorta", + "756": "flow:inlet_aorta:RCR_aorta", + "757": "flow:inlet_aorta:RCR_aorta", + "758": "flow:inlet_aorta:RCR_aorta", + "759": "flow:inlet_aorta:RCR_aorta", + "760": "flow:inlet_aorta:RCR_aorta", + "761": "flow:inlet_aorta:RCR_aorta", + "762": "flow:inlet_aorta:RCR_aorta", + "763": "flow:inlet_aorta:RCR_aorta", + "764": "flow:inlet_aorta:RCR_aorta", + "765": "flow:inlet_aorta:RCR_aorta", + "766": "flow:inlet_aorta:RCR_aorta", + "767": "flow:inlet_aorta:RCR_aorta", + "768": "flow:inlet_aorta:RCR_aorta", + "769": "flow:inlet_aorta:RCR_aorta", + "770": "flow:inlet_aorta:RCR_aorta", + "771": "flow:inlet_aorta:RCR_aorta", + "772": "flow:inlet_aorta:RCR_aorta", + "773": "flow:inlet_aorta:RCR_aorta", + "774": "flow:inlet_aorta:RCR_aorta", + "775": "flow:inlet_aorta:RCR_aorta", + "776": "flow:inlet_aorta:RCR_aorta", + "777": "flow:inlet_aorta:RCR_aorta", + "778": "flow:inlet_aorta:RCR_aorta", + "779": "flow:inlet_aorta:RCR_aorta", + "780": "flow:inlet_aorta:RCR_aorta", + "781": "flow:inlet_aorta:RCR_aorta", + "782": "flow:inlet_aorta:RCR_aorta", + "783": "flow:inlet_aorta:RCR_aorta", + "784": "flow:inlet_aorta:RCR_aorta", + "785": "flow:inlet_aorta:RCR_aorta", + "786": "flow:inlet_aorta:RCR_aorta", + "787": "flow:inlet_aorta:RCR_aorta", + "788": "flow:inlet_aorta:RCR_aorta", + "789": "flow:inlet_aorta:RCR_aorta", + "790": "flow:inlet_aorta:RCR_aorta", + "791": "flow:inlet_aorta:RCR_aorta", + "792": "flow:inlet_aorta:RCR_aorta", + "793": "flow:inlet_aorta:RCR_aorta", + "794": "flow:inlet_aorta:RCR_aorta", + "795": "flow:inlet_aorta:RCR_aorta", + "796": "flow:inlet_aorta:RCR_aorta", + "797": "flow:inlet_aorta:RCR_aorta", + "798": "flow:inlet_aorta:RCR_aorta", + "799": "flow:inlet_aorta:RCR_aorta", + "800": "flow:inlet_aorta:RCR_aorta", + "801": "flow:inlet_aorta:RCR_aorta", + "802": "flow:inlet_aorta:RCR_aorta", + "803": "flow:inlet_aorta:RCR_aorta", + "804": "flow:inlet_aorta:RCR_aorta", + "805": "flow:inlet_aorta:RCR_aorta", + "806": "flow:inlet_aorta:RCR_aorta", + "807": "flow:inlet_aorta:RCR_aorta", + "808": "flow:inlet_aorta:RCR_aorta", + "809": "flow:inlet_aorta:RCR_aorta", + "810": "flow:inlet_aorta:RCR_aorta", + "811": "flow:inlet_aorta:RCR_aorta", + "812": "flow:inlet_aorta:RCR_aorta", + "813": "flow:inlet_aorta:RCR_aorta", + "814": "flow:inlet_aorta:RCR_aorta", + "815": "flow:inlet_aorta:RCR_aorta", + "816": "flow:inlet_aorta:RCR_aorta", + "817": "flow:inlet_aorta:RCR_aorta", + "818": "flow:inlet_aorta:RCR_aorta", + "819": "flow:inlet_aorta:RCR_aorta", + "820": "flow:inlet_aorta:RCR_aorta", + "821": "flow:inlet_aorta:RCR_aorta", + "822": "flow:inlet_aorta:RCR_aorta", + "823": "flow:inlet_aorta:RCR_aorta", + "824": "flow:inlet_aorta:RCR_aorta", + "825": "flow:inlet_aorta:RCR_aorta", + "826": "flow:inlet_aorta:RCR_aorta", + "827": "flow:inlet_aorta:RCR_aorta", + "828": "flow:inlet_aorta:RCR_aorta", + "829": "flow:inlet_aorta:RCR_aorta", + "830": "flow:inlet_aorta:RCR_aorta", + "831": "flow:inlet_aorta:RCR_aorta", + "832": "flow:inlet_aorta:RCR_aorta", + "833": "flow:inlet_aorta:RCR_aorta", + "834": "flow:inlet_aorta:RCR_aorta", + "835": "flow:inlet_aorta:RCR_aorta", + "836": "flow:inlet_aorta:RCR_aorta", + "837": "flow:inlet_aorta:RCR_aorta", + "838": "flow:inlet_aorta:RCR_aorta", + "839": "flow:inlet_aorta:RCR_aorta", + "840": "flow:inlet_aorta:RCR_aorta", + "841": "flow:inlet_aorta:RCR_aorta", + "842": "flow:inlet_aorta:RCR_aorta", + "843": "flow:inlet_aorta:RCR_aorta", + "844": "flow:inlet_aorta:RCR_aorta", + "845": "flow:inlet_aorta:RCR_aorta", + "846": "flow:inlet_aorta:RCR_aorta", + "847": "flow:inlet_aorta:RCR_aorta", + "848": "flow:inlet_aorta:RCR_aorta", + "849": "flow:inlet_aorta:RCR_aorta", + "850": "flow:inlet_aorta:RCR_aorta", + "851": "flow:inlet_aorta:RCR_aorta", + "852": "flow:inlet_aorta:RCR_aorta", + "853": "flow:inlet_aorta:RCR_aorta", + "854": "flow:inlet_aorta:RCR_aorta", + "855": "flow:inlet_aorta:RCR_aorta", + "856": "flow:inlet_aorta:RCR_aorta", + "857": "flow:inlet_aorta:RCR_aorta", + "858": "flow:inlet_aorta:RCR_aorta", + "859": "flow:inlet_aorta:RCR_aorta", + "860": "flow:inlet_aorta:RCR_aorta", + "861": "flow:inlet_aorta:RCR_aorta", + "862": "flow:inlet_aorta:RCR_aorta", + "863": "flow:inlet_aorta:RCR_aorta", + "864": "flow:inlet_aorta:RCR_aorta", + "865": "flow:inlet_aorta:RCR_aorta", + "866": "flow:inlet_aorta:RCR_aorta", + "867": "flow:inlet_aorta:RCR_aorta", + "868": "flow:inlet_aorta:RCR_aorta", + "869": "flow:inlet_aorta:RCR_aorta", + "870": "flow:inlet_aorta:RCR_aorta", + "871": "flow:inlet_aorta:RCR_aorta", + "872": "flow:inlet_aorta:RCR_aorta", + "873": "flow:inlet_aorta:RCR_aorta", + "874": "flow:inlet_aorta:RCR_aorta", + "875": "flow:inlet_aorta:RCR_aorta", + "876": "flow:inlet_aorta:RCR_aorta", + "877": "flow:inlet_aorta:RCR_aorta", + "878": "flow:inlet_aorta:RCR_aorta", + "879": "flow:inlet_aorta:RCR_aorta", + "880": "flow:inlet_aorta:RCR_aorta", + "881": "flow:inlet_aorta:RCR_aorta", + "882": "flow:inlet_aorta:RCR_aorta", + "883": "flow:inlet_aorta:RCR_aorta", + "884": "flow:inlet_aorta:RCR_aorta", + "885": "flow:inlet_aorta:RCR_aorta", + "886": "flow:inlet_aorta:RCR_aorta", + "887": "flow:inlet_aorta:RCR_aorta", + "888": "flow:inlet_aorta:RCR_aorta", + "889": "flow:inlet_aorta:RCR_aorta", + "890": "flow:inlet_aorta:RCR_aorta", + "891": "flow:inlet_aorta:RCR_aorta", + "892": "flow:inlet_aorta:RCR_aorta", + "893": "flow:inlet_aorta:RCR_aorta", + "894": "flow:inlet_aorta:RCR_aorta", + "895": "flow:inlet_aorta:RCR_aorta", + "896": "flow:inlet_aorta:RCR_aorta", + "897": "flow:inlet_aorta:RCR_aorta", + "898": "flow:inlet_aorta:RCR_aorta", + "899": "flow:inlet_aorta:RCR_aorta", + "900": "flow:inlet_aorta:RCR_aorta", + "901": "flow:inlet_aorta:RCR_aorta", + "902": "flow:inlet_aorta:RCR_aorta", + "903": "flow:inlet_aorta:RCR_aorta", + "904": "flow:inlet_aorta:RCR_aorta", + "905": "flow:inlet_aorta:RCR_aorta", + "906": "flow:inlet_aorta:RCR_aorta", + "907": "flow:inlet_aorta:RCR_aorta", + "908": "flow:inlet_aorta:RCR_aorta", + "909": "flow:inlet_aorta:RCR_aorta", + "910": "flow:inlet_aorta:RCR_aorta", + "911": "flow:inlet_aorta:RCR_aorta", + "912": "flow:inlet_aorta:RCR_aorta", + "913": "flow:inlet_aorta:RCR_aorta", + "914": "flow:inlet_aorta:RCR_aorta", + "915": "flow:inlet_aorta:RCR_aorta", + "916": "flow:inlet_aorta:RCR_aorta", + "917": "flow:inlet_aorta:RCR_aorta", + "918": "flow:inlet_aorta:RCR_aorta", + "919": "flow:inlet_aorta:RCR_aorta", + "920": "flow:inlet_aorta:RCR_aorta", + "921": "flow:inlet_aorta:RCR_aorta", + "922": "flow:inlet_aorta:RCR_aorta", + "923": "flow:inlet_aorta:RCR_aorta", + "924": "flow:inlet_aorta:RCR_aorta", + "925": "flow:inlet_aorta:RCR_aorta", + "926": "flow:inlet_aorta:RCR_aorta", + "927": "flow:inlet_aorta:RCR_aorta", + "928": "flow:inlet_aorta:RCR_aorta", + "929": "flow:inlet_aorta:RCR_aorta", + "930": "flow:inlet_aorta:RCR_aorta", + "931": "flow:inlet_aorta:RCR_aorta", + "932": "flow:inlet_aorta:RCR_aorta", + "933": "flow:inlet_aorta:RCR_aorta", + "934": "flow:inlet_aorta:RCR_aorta", + "935": "flow:inlet_aorta:RCR_aorta", + "936": "flow:inlet_aorta:RCR_aorta", + "937": "flow:inlet_aorta:RCR_aorta", + "938": "flow:inlet_aorta:RCR_aorta", + "939": "flow:inlet_aorta:RCR_aorta", + "940": "flow:inlet_aorta:RCR_aorta", + "941": "flow:inlet_aorta:RCR_aorta", + "942": "flow:inlet_aorta:RCR_aorta", + "943": "flow:inlet_aorta:RCR_aorta", + "944": "flow:inlet_aorta:RCR_aorta", + "945": "flow:inlet_aorta:RCR_aorta", + "946": "flow:inlet_aorta:RCR_aorta", + "947": "flow:inlet_aorta:RCR_aorta", + "948": "flow:inlet_aorta:RCR_aorta", + "949": "flow:inlet_aorta:RCR_aorta", + "950": "flow:inlet_aorta:RCR_aorta", + "951": "flow:inlet_aorta:RCR_aorta", + "952": "flow:inlet_aorta:RCR_aorta", + "953": "flow:inlet_aorta:RCR_aorta", + "954": "flow:inlet_aorta:RCR_aorta", + "955": "flow:inlet_aorta:RCR_aorta", + "956": "flow:inlet_aorta:RCR_aorta", + "957": "flow:inlet_aorta:RCR_aorta", + "958": "flow:inlet_aorta:RCR_aorta", + "959": "flow:inlet_aorta:RCR_aorta", + "960": "flow:inlet_aorta:RCR_aorta", + "961": "flow:inlet_aorta:RCR_aorta", + "962": "flow:inlet_aorta:RCR_aorta", + "963": "flow:inlet_aorta:RCR_aorta", + "964": "flow:inlet_aorta:RCR_aorta", + "965": "flow:inlet_aorta:RCR_aorta", + "966": "flow:inlet_aorta:RCR_aorta", + "967": "flow:inlet_aorta:RCR_aorta", + "968": "flow:inlet_aorta:RCR_aorta", + "969": "flow:inlet_aorta:RCR_aorta", + "970": "flow:inlet_aorta:RCR_aorta", + "971": "flow:inlet_aorta:RCR_aorta", + "972": "flow:inlet_aorta:RCR_aorta", + "973": "flow:inlet_aorta:RCR_aorta", + "974": "flow:inlet_aorta:RCR_aorta", + "975": "flow:inlet_aorta:RCR_aorta", + "976": "flow:inlet_aorta:RCR_aorta", + "977": "flow:inlet_aorta:RCR_aorta", + "978": "flow:inlet_aorta:RCR_aorta", + "979": "flow:inlet_aorta:RCR_aorta", + "980": "flow:inlet_aorta:RCR_aorta", + "981": "flow:inlet_aorta:RCR_aorta", + "982": "flow:inlet_aorta:RCR_aorta", + "983": "flow:inlet_aorta:RCR_aorta", + "984": "flow:inlet_aorta:RCR_aorta", + "985": "flow:inlet_aorta:RCR_aorta", + "986": "flow:inlet_aorta:RCR_aorta", + "987": "flow:inlet_aorta:RCR_aorta", + "988": "flow:inlet_aorta:RCR_aorta", + "989": "flow:inlet_aorta:RCR_aorta", + "990": "flow:inlet_aorta:RCR_aorta", + "991": "flow:inlet_aorta:RCR_aorta", + "992": "flow:inlet_aorta:RCR_aorta", + "993": "flow:inlet_aorta:RCR_aorta", + "994": "flow:inlet_aorta:RCR_aorta", + "995": "flow:inlet_aorta:RCR_aorta", + "996": "flow:inlet_aorta:RCR_aorta", + "997": "flow:inlet_aorta:RCR_aorta", + "998": "flow:inlet_aorta:RCR_aorta", + "999": "flow:inlet_aorta:RCR_aorta", + "1000": "pressure:inlet_aorta:RCR_aorta", + "1001": "pressure:inlet_aorta:RCR_aorta", + "1002": "pressure:inlet_aorta:RCR_aorta", + "1003": "pressure:inlet_aorta:RCR_aorta", + "1004": "pressure:inlet_aorta:RCR_aorta", + "1005": "pressure:inlet_aorta:RCR_aorta", + "1006": "pressure:inlet_aorta:RCR_aorta", + "1007": "pressure:inlet_aorta:RCR_aorta", + "1008": "pressure:inlet_aorta:RCR_aorta", + "1009": "pressure:inlet_aorta:RCR_aorta", + "1010": "pressure:inlet_aorta:RCR_aorta", + "1011": "pressure:inlet_aorta:RCR_aorta", + "1012": "pressure:inlet_aorta:RCR_aorta", + "1013": "pressure:inlet_aorta:RCR_aorta", + "1014": "pressure:inlet_aorta:RCR_aorta", + "1015": "pressure:inlet_aorta:RCR_aorta", + "1016": "pressure:inlet_aorta:RCR_aorta", + "1017": "pressure:inlet_aorta:RCR_aorta", + "1018": "pressure:inlet_aorta:RCR_aorta", + "1019": "pressure:inlet_aorta:RCR_aorta", + "1020": "pressure:inlet_aorta:RCR_aorta", + "1021": "pressure:inlet_aorta:RCR_aorta", + "1022": "pressure:inlet_aorta:RCR_aorta", + "1023": "pressure:inlet_aorta:RCR_aorta", + "1024": "pressure:inlet_aorta:RCR_aorta", + "1025": "pressure:inlet_aorta:RCR_aorta", + "1026": "pressure:inlet_aorta:RCR_aorta", + "1027": "pressure:inlet_aorta:RCR_aorta", + "1028": "pressure:inlet_aorta:RCR_aorta", + "1029": "pressure:inlet_aorta:RCR_aorta", + "1030": "pressure:inlet_aorta:RCR_aorta", + "1031": "pressure:inlet_aorta:RCR_aorta", + "1032": "pressure:inlet_aorta:RCR_aorta", + "1033": "pressure:inlet_aorta:RCR_aorta", + "1034": "pressure:inlet_aorta:RCR_aorta", + "1035": "pressure:inlet_aorta:RCR_aorta", + "1036": "pressure:inlet_aorta:RCR_aorta", + "1037": "pressure:inlet_aorta:RCR_aorta", + "1038": "pressure:inlet_aorta:RCR_aorta", + "1039": "pressure:inlet_aorta:RCR_aorta", + "1040": "pressure:inlet_aorta:RCR_aorta", + "1041": "pressure:inlet_aorta:RCR_aorta", + "1042": "pressure:inlet_aorta:RCR_aorta", + "1043": "pressure:inlet_aorta:RCR_aorta", + "1044": "pressure:inlet_aorta:RCR_aorta", + "1045": "pressure:inlet_aorta:RCR_aorta", + "1046": "pressure:inlet_aorta:RCR_aorta", + "1047": "pressure:inlet_aorta:RCR_aorta", + "1048": "pressure:inlet_aorta:RCR_aorta", + "1049": "pressure:inlet_aorta:RCR_aorta", + "1050": "pressure:inlet_aorta:RCR_aorta", + "1051": "pressure:inlet_aorta:RCR_aorta", + "1052": "pressure:inlet_aorta:RCR_aorta", + "1053": "pressure:inlet_aorta:RCR_aorta", + "1054": "pressure:inlet_aorta:RCR_aorta", + "1055": "pressure:inlet_aorta:RCR_aorta", + "1056": "pressure:inlet_aorta:RCR_aorta", + "1057": "pressure:inlet_aorta:RCR_aorta", + "1058": "pressure:inlet_aorta:RCR_aorta", + "1059": "pressure:inlet_aorta:RCR_aorta", + "1060": "pressure:inlet_aorta:RCR_aorta", + "1061": "pressure:inlet_aorta:RCR_aorta", + "1062": "pressure:inlet_aorta:RCR_aorta", + "1063": "pressure:inlet_aorta:RCR_aorta", + "1064": "pressure:inlet_aorta:RCR_aorta", + "1065": "pressure:inlet_aorta:RCR_aorta", + "1066": "pressure:inlet_aorta:RCR_aorta", + "1067": "pressure:inlet_aorta:RCR_aorta", + "1068": "pressure:inlet_aorta:RCR_aorta", + "1069": "pressure:inlet_aorta:RCR_aorta", + "1070": "pressure:inlet_aorta:RCR_aorta", + "1071": "pressure:inlet_aorta:RCR_aorta", + "1072": "pressure:inlet_aorta:RCR_aorta", + "1073": "pressure:inlet_aorta:RCR_aorta", + "1074": "pressure:inlet_aorta:RCR_aorta", + "1075": "pressure:inlet_aorta:RCR_aorta", + "1076": "pressure:inlet_aorta:RCR_aorta", + "1077": "pressure:inlet_aorta:RCR_aorta", + "1078": "pressure:inlet_aorta:RCR_aorta", + "1079": "pressure:inlet_aorta:RCR_aorta", + "1080": "pressure:inlet_aorta:RCR_aorta", + "1081": "pressure:inlet_aorta:RCR_aorta", + "1082": "pressure:inlet_aorta:RCR_aorta", + "1083": "pressure:inlet_aorta:RCR_aorta", + "1084": "pressure:inlet_aorta:RCR_aorta", + "1085": "pressure:inlet_aorta:RCR_aorta", + "1086": "pressure:inlet_aorta:RCR_aorta", + "1087": "pressure:inlet_aorta:RCR_aorta", + "1088": "pressure:inlet_aorta:RCR_aorta", + "1089": "pressure:inlet_aorta:RCR_aorta", + "1090": "pressure:inlet_aorta:RCR_aorta", + "1091": "pressure:inlet_aorta:RCR_aorta", + "1092": "pressure:inlet_aorta:RCR_aorta", + "1093": "pressure:inlet_aorta:RCR_aorta", + "1094": "pressure:inlet_aorta:RCR_aorta", + "1095": "pressure:inlet_aorta:RCR_aorta", + "1096": "pressure:inlet_aorta:RCR_aorta", + "1097": "pressure:inlet_aorta:RCR_aorta", + "1098": "pressure:inlet_aorta:RCR_aorta", + "1099": "pressure:inlet_aorta:RCR_aorta", + "1100": "pressure:inlet_aorta:RCR_aorta", + "1101": "pressure:inlet_aorta:RCR_aorta", + "1102": "pressure:inlet_aorta:RCR_aorta", + "1103": "pressure:inlet_aorta:RCR_aorta", + "1104": "pressure:inlet_aorta:RCR_aorta", + "1105": "pressure:inlet_aorta:RCR_aorta", + "1106": "pressure:inlet_aorta:RCR_aorta", + "1107": "pressure:inlet_aorta:RCR_aorta", + "1108": "pressure:inlet_aorta:RCR_aorta", + "1109": "pressure:inlet_aorta:RCR_aorta", + "1110": "pressure:inlet_aorta:RCR_aorta", + "1111": "pressure:inlet_aorta:RCR_aorta", + "1112": "pressure:inlet_aorta:RCR_aorta", + "1113": "pressure:inlet_aorta:RCR_aorta", + "1114": "pressure:inlet_aorta:RCR_aorta", + "1115": "pressure:inlet_aorta:RCR_aorta", + "1116": "pressure:inlet_aorta:RCR_aorta", + "1117": "pressure:inlet_aorta:RCR_aorta", + "1118": "pressure:inlet_aorta:RCR_aorta", + "1119": "pressure:inlet_aorta:RCR_aorta", + "1120": "pressure:inlet_aorta:RCR_aorta", + "1121": "pressure:inlet_aorta:RCR_aorta", + "1122": "pressure:inlet_aorta:RCR_aorta", + "1123": "pressure:inlet_aorta:RCR_aorta", + "1124": "pressure:inlet_aorta:RCR_aorta", + "1125": "pressure:inlet_aorta:RCR_aorta", + "1126": "pressure:inlet_aorta:RCR_aorta", + "1127": "pressure:inlet_aorta:RCR_aorta", + "1128": "pressure:inlet_aorta:RCR_aorta", + "1129": "pressure:inlet_aorta:RCR_aorta", + "1130": "pressure:inlet_aorta:RCR_aorta", + "1131": "pressure:inlet_aorta:RCR_aorta", + "1132": "pressure:inlet_aorta:RCR_aorta", + "1133": "pressure:inlet_aorta:RCR_aorta", + "1134": "pressure:inlet_aorta:RCR_aorta", + "1135": "pressure:inlet_aorta:RCR_aorta", + "1136": "pressure:inlet_aorta:RCR_aorta", + "1137": "pressure:inlet_aorta:RCR_aorta", + "1138": "pressure:inlet_aorta:RCR_aorta", + "1139": "pressure:inlet_aorta:RCR_aorta", + "1140": "pressure:inlet_aorta:RCR_aorta", + "1141": "pressure:inlet_aorta:RCR_aorta", + "1142": "pressure:inlet_aorta:RCR_aorta", + "1143": "pressure:inlet_aorta:RCR_aorta", + "1144": "pressure:inlet_aorta:RCR_aorta", + "1145": "pressure:inlet_aorta:RCR_aorta", + "1146": "pressure:inlet_aorta:RCR_aorta", + "1147": "pressure:inlet_aorta:RCR_aorta", + "1148": "pressure:inlet_aorta:RCR_aorta", + "1149": "pressure:inlet_aorta:RCR_aorta", + "1150": "pressure:inlet_aorta:RCR_aorta", + "1151": "pressure:inlet_aorta:RCR_aorta", + "1152": "pressure:inlet_aorta:RCR_aorta", + "1153": "pressure:inlet_aorta:RCR_aorta", + "1154": "pressure:inlet_aorta:RCR_aorta", + "1155": "pressure:inlet_aorta:RCR_aorta", + "1156": "pressure:inlet_aorta:RCR_aorta", + "1157": "pressure:inlet_aorta:RCR_aorta", + "1158": "pressure:inlet_aorta:RCR_aorta", + "1159": "pressure:inlet_aorta:RCR_aorta", + "1160": "pressure:inlet_aorta:RCR_aorta", + "1161": "pressure:inlet_aorta:RCR_aorta", + "1162": "pressure:inlet_aorta:RCR_aorta", + "1163": "pressure:inlet_aorta:RCR_aorta", + "1164": "pressure:inlet_aorta:RCR_aorta", + "1165": "pressure:inlet_aorta:RCR_aorta", + "1166": "pressure:inlet_aorta:RCR_aorta", + "1167": "pressure:inlet_aorta:RCR_aorta", + "1168": "pressure:inlet_aorta:RCR_aorta", + "1169": "pressure:inlet_aorta:RCR_aorta", + "1170": "pressure:inlet_aorta:RCR_aorta", + "1171": "pressure:inlet_aorta:RCR_aorta", + "1172": "pressure:inlet_aorta:RCR_aorta", + "1173": "pressure:inlet_aorta:RCR_aorta", + "1174": "pressure:inlet_aorta:RCR_aorta", + "1175": "pressure:inlet_aorta:RCR_aorta", + "1176": "pressure:inlet_aorta:RCR_aorta", + "1177": "pressure:inlet_aorta:RCR_aorta", + "1178": "pressure:inlet_aorta:RCR_aorta", + "1179": "pressure:inlet_aorta:RCR_aorta", + "1180": "pressure:inlet_aorta:RCR_aorta", + "1181": "pressure:inlet_aorta:RCR_aorta", + "1182": "pressure:inlet_aorta:RCR_aorta", + "1183": "pressure:inlet_aorta:RCR_aorta", + "1184": "pressure:inlet_aorta:RCR_aorta", + "1185": "pressure:inlet_aorta:RCR_aorta", + "1186": "pressure:inlet_aorta:RCR_aorta", + "1187": "pressure:inlet_aorta:RCR_aorta", + "1188": "pressure:inlet_aorta:RCR_aorta", + "1189": "pressure:inlet_aorta:RCR_aorta", + "1190": "pressure:inlet_aorta:RCR_aorta", + "1191": "pressure:inlet_aorta:RCR_aorta", + "1192": "pressure:inlet_aorta:RCR_aorta", + "1193": "pressure:inlet_aorta:RCR_aorta", + "1194": "pressure:inlet_aorta:RCR_aorta", + "1195": "pressure:inlet_aorta:RCR_aorta", + "1196": "pressure:inlet_aorta:RCR_aorta", + "1197": "pressure:inlet_aorta:RCR_aorta", + "1198": "pressure:inlet_aorta:RCR_aorta", + "1199": "pressure:inlet_aorta:RCR_aorta", + "1200": "pressure:inlet_aorta:RCR_aorta", + "1201": "pressure:inlet_aorta:RCR_aorta", + "1202": "pressure:inlet_aorta:RCR_aorta", + "1203": "pressure:inlet_aorta:RCR_aorta", + "1204": "pressure:inlet_aorta:RCR_aorta", + "1205": "pressure:inlet_aorta:RCR_aorta", + "1206": "pressure:inlet_aorta:RCR_aorta", + "1207": "pressure:inlet_aorta:RCR_aorta", + "1208": "pressure:inlet_aorta:RCR_aorta", + "1209": "pressure:inlet_aorta:RCR_aorta", + "1210": "pressure:inlet_aorta:RCR_aorta", + "1211": "pressure:inlet_aorta:RCR_aorta", + "1212": "pressure:inlet_aorta:RCR_aorta", + "1213": "pressure:inlet_aorta:RCR_aorta", + "1214": "pressure:inlet_aorta:RCR_aorta", + "1215": "pressure:inlet_aorta:RCR_aorta", + "1216": "pressure:inlet_aorta:RCR_aorta", + "1217": "pressure:inlet_aorta:RCR_aorta", + "1218": "pressure:inlet_aorta:RCR_aorta", + "1219": "pressure:inlet_aorta:RCR_aorta", + "1220": "pressure:inlet_aorta:RCR_aorta", + "1221": "pressure:inlet_aorta:RCR_aorta", + "1222": "pressure:inlet_aorta:RCR_aorta", + "1223": "pressure:inlet_aorta:RCR_aorta", + "1224": "pressure:inlet_aorta:RCR_aorta", + "1225": "pressure:inlet_aorta:RCR_aorta", + "1226": "pressure:inlet_aorta:RCR_aorta", + "1227": "pressure:inlet_aorta:RCR_aorta", + "1228": "pressure:inlet_aorta:RCR_aorta", + "1229": "pressure:inlet_aorta:RCR_aorta", + "1230": "pressure:inlet_aorta:RCR_aorta", + "1231": "pressure:inlet_aorta:RCR_aorta", + "1232": "pressure:inlet_aorta:RCR_aorta", + "1233": "pressure:inlet_aorta:RCR_aorta", + "1234": "pressure:inlet_aorta:RCR_aorta", + "1235": "pressure:inlet_aorta:RCR_aorta", + "1236": "pressure:inlet_aorta:RCR_aorta", + "1237": "pressure:inlet_aorta:RCR_aorta", + "1238": "pressure:inlet_aorta:RCR_aorta", + "1239": "pressure:inlet_aorta:RCR_aorta", + "1240": "pressure:inlet_aorta:RCR_aorta", + "1241": "pressure:inlet_aorta:RCR_aorta", + "1242": "pressure:inlet_aorta:RCR_aorta", + "1243": "pressure:inlet_aorta:RCR_aorta", + "1244": "pressure:inlet_aorta:RCR_aorta", + "1245": "pressure:inlet_aorta:RCR_aorta", + "1246": "pressure:inlet_aorta:RCR_aorta", + "1247": "pressure:inlet_aorta:RCR_aorta", + "1248": "pressure:inlet_aorta:RCR_aorta", + "1249": "pressure:inlet_aorta:RCR_aorta", + "1250": "pressure:inlet_aorta:RCR_aorta", + "1251": "pressure:inlet_aorta:RCR_aorta", + "1252": "pressure:inlet_aorta:RCR_aorta", + "1253": "pressure:inlet_aorta:RCR_aorta", + "1254": "pressure:inlet_aorta:RCR_aorta", + "1255": "pressure:inlet_aorta:RCR_aorta", + "1256": "pressure:inlet_aorta:RCR_aorta", + "1257": "pressure:inlet_aorta:RCR_aorta", + "1258": "pressure:inlet_aorta:RCR_aorta", + "1259": "pressure:inlet_aorta:RCR_aorta", + "1260": "pressure:inlet_aorta:RCR_aorta", + "1261": "pressure:inlet_aorta:RCR_aorta", + "1262": "pressure:inlet_aorta:RCR_aorta", + "1263": "pressure:inlet_aorta:RCR_aorta", + "1264": "pressure:inlet_aorta:RCR_aorta", + "1265": "pressure:inlet_aorta:RCR_aorta", + "1266": "pressure:inlet_aorta:RCR_aorta", + "1267": "pressure:inlet_aorta:RCR_aorta", + "1268": "pressure:inlet_aorta:RCR_aorta", + "1269": "pressure:inlet_aorta:RCR_aorta", + "1270": "pressure:inlet_aorta:RCR_aorta", + "1271": "pressure:inlet_aorta:RCR_aorta", + "1272": "pressure:inlet_aorta:RCR_aorta", + "1273": "pressure:inlet_aorta:RCR_aorta", + "1274": "pressure:inlet_aorta:RCR_aorta", + "1275": "pressure:inlet_aorta:RCR_aorta", + "1276": "pressure:inlet_aorta:RCR_aorta", + "1277": "pressure:inlet_aorta:RCR_aorta", + "1278": "pressure:inlet_aorta:RCR_aorta", + "1279": "pressure:inlet_aorta:RCR_aorta", + "1280": "pressure:inlet_aorta:RCR_aorta", + "1281": "pressure:inlet_aorta:RCR_aorta", + "1282": "pressure:inlet_aorta:RCR_aorta", + "1283": "pressure:inlet_aorta:RCR_aorta", + "1284": "pressure:inlet_aorta:RCR_aorta", + "1285": "pressure:inlet_aorta:RCR_aorta", + "1286": "pressure:inlet_aorta:RCR_aorta", + "1287": "pressure:inlet_aorta:RCR_aorta", + "1288": "pressure:inlet_aorta:RCR_aorta", + "1289": "pressure:inlet_aorta:RCR_aorta", + "1290": "pressure:inlet_aorta:RCR_aorta", + "1291": "pressure:inlet_aorta:RCR_aorta", + "1292": "pressure:inlet_aorta:RCR_aorta", + "1293": "pressure:inlet_aorta:RCR_aorta", + "1294": "pressure:inlet_aorta:RCR_aorta", + "1295": "pressure:inlet_aorta:RCR_aorta", + "1296": "pressure:inlet_aorta:RCR_aorta", + "1297": "pressure:inlet_aorta:RCR_aorta", + "1298": "pressure:inlet_aorta:RCR_aorta", + "1299": "pressure:inlet_aorta:RCR_aorta", + "1300": "pressure:inlet_aorta:RCR_aorta", + "1301": "pressure:inlet_aorta:RCR_aorta", + "1302": "pressure:inlet_aorta:RCR_aorta", + "1303": "pressure:inlet_aorta:RCR_aorta", + "1304": "pressure:inlet_aorta:RCR_aorta", + "1305": "pressure:inlet_aorta:RCR_aorta", + "1306": "pressure:inlet_aorta:RCR_aorta", + "1307": "pressure:inlet_aorta:RCR_aorta", + "1308": "pressure:inlet_aorta:RCR_aorta", + "1309": "pressure:inlet_aorta:RCR_aorta", + "1310": "pressure:inlet_aorta:RCR_aorta", + "1311": "pressure:inlet_aorta:RCR_aorta", + "1312": "pressure:inlet_aorta:RCR_aorta", + "1313": "pressure:inlet_aorta:RCR_aorta", + "1314": "pressure:inlet_aorta:RCR_aorta", + "1315": "pressure:inlet_aorta:RCR_aorta", + "1316": "pressure:inlet_aorta:RCR_aorta", + "1317": "pressure:inlet_aorta:RCR_aorta", + "1318": "pressure:inlet_aorta:RCR_aorta", + "1319": "pressure:inlet_aorta:RCR_aorta", + "1320": "pressure:inlet_aorta:RCR_aorta", + "1321": "pressure:inlet_aorta:RCR_aorta", + "1322": "pressure:inlet_aorta:RCR_aorta", + "1323": "pressure:inlet_aorta:RCR_aorta", + "1324": "pressure:inlet_aorta:RCR_aorta", + "1325": "pressure:inlet_aorta:RCR_aorta", + "1326": "pressure:inlet_aorta:RCR_aorta", + "1327": "pressure:inlet_aorta:RCR_aorta", + "1328": "pressure:inlet_aorta:RCR_aorta", + "1329": "pressure:inlet_aorta:RCR_aorta", + "1330": "pressure:inlet_aorta:RCR_aorta", + "1331": "pressure:inlet_aorta:RCR_aorta", + "1332": "pressure:inlet_aorta:RCR_aorta", + "1333": "pressure:inlet_aorta:RCR_aorta", + "1334": "pressure:inlet_aorta:RCR_aorta", + "1335": "pressure:inlet_aorta:RCR_aorta", + "1336": "pressure:inlet_aorta:RCR_aorta", + "1337": "pressure:inlet_aorta:RCR_aorta", + "1338": "pressure:inlet_aorta:RCR_aorta", + "1339": "pressure:inlet_aorta:RCR_aorta", + "1340": "pressure:inlet_aorta:RCR_aorta", + "1341": "pressure:inlet_aorta:RCR_aorta", + "1342": "pressure:inlet_aorta:RCR_aorta", + "1343": "pressure:inlet_aorta:RCR_aorta", + "1344": "pressure:inlet_aorta:RCR_aorta", + "1345": "pressure:inlet_aorta:RCR_aorta", + "1346": "pressure:inlet_aorta:RCR_aorta", + "1347": "pressure:inlet_aorta:RCR_aorta", + "1348": "pressure:inlet_aorta:RCR_aorta", + "1349": "pressure:inlet_aorta:RCR_aorta", + "1350": "pressure:inlet_aorta:RCR_aorta", + "1351": "pressure:inlet_aorta:RCR_aorta", + "1352": "pressure:inlet_aorta:RCR_aorta", + "1353": "pressure:inlet_aorta:RCR_aorta", + "1354": "pressure:inlet_aorta:RCR_aorta", + "1355": "pressure:inlet_aorta:RCR_aorta", + "1356": "pressure:inlet_aorta:RCR_aorta", + "1357": "pressure:inlet_aorta:RCR_aorta", + "1358": "pressure:inlet_aorta:RCR_aorta", + "1359": "pressure:inlet_aorta:RCR_aorta", + "1360": "pressure:inlet_aorta:RCR_aorta", + "1361": "pressure:inlet_aorta:RCR_aorta", + "1362": "pressure:inlet_aorta:RCR_aorta", + "1363": "pressure:inlet_aorta:RCR_aorta", + "1364": "pressure:inlet_aorta:RCR_aorta", + "1365": "pressure:inlet_aorta:RCR_aorta", + "1366": "pressure:inlet_aorta:RCR_aorta", + "1367": "pressure:inlet_aorta:RCR_aorta", + "1368": "pressure:inlet_aorta:RCR_aorta", + "1369": "pressure:inlet_aorta:RCR_aorta", + "1370": "pressure:inlet_aorta:RCR_aorta", + "1371": "pressure:inlet_aorta:RCR_aorta", + "1372": "pressure:inlet_aorta:RCR_aorta", + "1373": "pressure:inlet_aorta:RCR_aorta", + "1374": "pressure:inlet_aorta:RCR_aorta", + "1375": "pressure:inlet_aorta:RCR_aorta", + "1376": "pressure:inlet_aorta:RCR_aorta", + "1377": "pressure:inlet_aorta:RCR_aorta", + "1378": "pressure:inlet_aorta:RCR_aorta", + "1379": "pressure:inlet_aorta:RCR_aorta", + "1380": "pressure:inlet_aorta:RCR_aorta", + "1381": "pressure:inlet_aorta:RCR_aorta", + "1382": "pressure:inlet_aorta:RCR_aorta", + "1383": "pressure:inlet_aorta:RCR_aorta", + "1384": "pressure:inlet_aorta:RCR_aorta", + "1385": "pressure:inlet_aorta:RCR_aorta", + "1386": "pressure:inlet_aorta:RCR_aorta", + "1387": "pressure:inlet_aorta:RCR_aorta", + "1388": "pressure:inlet_aorta:RCR_aorta", + "1389": "pressure:inlet_aorta:RCR_aorta", + "1390": "pressure:inlet_aorta:RCR_aorta", + "1391": "pressure:inlet_aorta:RCR_aorta", + "1392": "pressure:inlet_aorta:RCR_aorta", + "1393": "pressure:inlet_aorta:RCR_aorta", + "1394": "pressure:inlet_aorta:RCR_aorta", + "1395": "pressure:inlet_aorta:RCR_aorta", + "1396": "pressure:inlet_aorta:RCR_aorta", + "1397": "pressure:inlet_aorta:RCR_aorta", + "1398": "pressure:inlet_aorta:RCR_aorta", + "1399": "pressure:inlet_aorta:RCR_aorta", + "1400": "pressure:inlet_aorta:RCR_aorta", + "1401": "pressure:inlet_aorta:RCR_aorta", + "1402": "pressure:inlet_aorta:RCR_aorta", + "1403": "pressure:inlet_aorta:RCR_aorta", + "1404": "pressure:inlet_aorta:RCR_aorta", + "1405": "pressure:inlet_aorta:RCR_aorta", + "1406": "pressure:inlet_aorta:RCR_aorta", + "1407": "pressure:inlet_aorta:RCR_aorta", + "1408": "pressure:inlet_aorta:RCR_aorta", + "1409": "pressure:inlet_aorta:RCR_aorta", + "1410": "pressure:inlet_aorta:RCR_aorta", + "1411": "pressure:inlet_aorta:RCR_aorta", + "1412": "pressure:inlet_aorta:RCR_aorta", + "1413": "pressure:inlet_aorta:RCR_aorta", + "1414": "pressure:inlet_aorta:RCR_aorta", + "1415": "pressure:inlet_aorta:RCR_aorta", + "1416": "pressure:inlet_aorta:RCR_aorta", + "1417": "pressure:inlet_aorta:RCR_aorta", + "1418": "pressure:inlet_aorta:RCR_aorta", + "1419": "pressure:inlet_aorta:RCR_aorta", + "1420": "pressure:inlet_aorta:RCR_aorta", + "1421": "pressure:inlet_aorta:RCR_aorta", + "1422": "pressure:inlet_aorta:RCR_aorta", + "1423": "pressure:inlet_aorta:RCR_aorta", + "1424": "pressure:inlet_aorta:RCR_aorta", + "1425": "pressure:inlet_aorta:RCR_aorta", + "1426": "pressure:inlet_aorta:RCR_aorta", + "1427": "pressure:inlet_aorta:RCR_aorta", + "1428": "pressure:inlet_aorta:RCR_aorta", + "1429": "pressure:inlet_aorta:RCR_aorta", + "1430": "pressure:inlet_aorta:RCR_aorta", + "1431": "pressure:inlet_aorta:RCR_aorta", + "1432": "pressure:inlet_aorta:RCR_aorta", + "1433": "pressure:inlet_aorta:RCR_aorta", + "1434": "pressure:inlet_aorta:RCR_aorta", + "1435": "pressure:inlet_aorta:RCR_aorta", + "1436": "pressure:inlet_aorta:RCR_aorta", + "1437": "pressure:inlet_aorta:RCR_aorta", + "1438": "pressure:inlet_aorta:RCR_aorta", + "1439": "pressure:inlet_aorta:RCR_aorta", + "1440": "pressure:inlet_aorta:RCR_aorta", + "1441": "pressure:inlet_aorta:RCR_aorta", + "1442": "pressure:inlet_aorta:RCR_aorta", + "1443": "pressure:inlet_aorta:RCR_aorta", + "1444": "pressure:inlet_aorta:RCR_aorta", + "1445": "pressure:inlet_aorta:RCR_aorta", + "1446": "pressure:inlet_aorta:RCR_aorta", + "1447": "pressure:inlet_aorta:RCR_aorta", + "1448": "pressure:inlet_aorta:RCR_aorta", + "1449": "pressure:inlet_aorta:RCR_aorta", + "1450": "pressure:inlet_aorta:RCR_aorta", + "1451": "pressure:inlet_aorta:RCR_aorta", + "1452": "pressure:inlet_aorta:RCR_aorta", + "1453": "pressure:inlet_aorta:RCR_aorta", + "1454": "pressure:inlet_aorta:RCR_aorta", + "1455": "pressure:inlet_aorta:RCR_aorta", + "1456": "pressure:inlet_aorta:RCR_aorta", + "1457": "pressure:inlet_aorta:RCR_aorta", + "1458": "pressure:inlet_aorta:RCR_aorta", + "1459": "pressure:inlet_aorta:RCR_aorta", + "1460": "pressure:inlet_aorta:RCR_aorta", + "1461": "pressure:inlet_aorta:RCR_aorta", + "1462": "pressure:inlet_aorta:RCR_aorta", + "1463": "pressure:inlet_aorta:RCR_aorta", + "1464": "pressure:inlet_aorta:RCR_aorta", + "1465": "pressure:inlet_aorta:RCR_aorta", + "1466": "pressure:inlet_aorta:RCR_aorta", + "1467": "pressure:inlet_aorta:RCR_aorta", + "1468": "pressure:inlet_aorta:RCR_aorta", + "1469": "pressure:inlet_aorta:RCR_aorta", + "1470": "pressure:inlet_aorta:RCR_aorta", + "1471": "pressure:inlet_aorta:RCR_aorta", + "1472": "pressure:inlet_aorta:RCR_aorta", + "1473": "pressure:inlet_aorta:RCR_aorta", + "1474": "pressure:inlet_aorta:RCR_aorta", + "1475": "pressure:inlet_aorta:RCR_aorta", + "1476": "pressure:inlet_aorta:RCR_aorta", + "1477": "pressure:inlet_aorta:RCR_aorta", + "1478": "pressure:inlet_aorta:RCR_aorta", + "1479": "pressure:inlet_aorta:RCR_aorta", + "1480": "pressure:inlet_aorta:RCR_aorta", + "1481": "pressure:inlet_aorta:RCR_aorta", + "1482": "pressure:inlet_aorta:RCR_aorta", + "1483": "pressure:inlet_aorta:RCR_aorta", + "1484": "pressure:inlet_aorta:RCR_aorta", + "1485": "pressure:inlet_aorta:RCR_aorta", + "1486": "pressure:inlet_aorta:RCR_aorta", + "1487": "pressure:inlet_aorta:RCR_aorta", + "1488": "pressure:inlet_aorta:RCR_aorta", + "1489": "pressure:inlet_aorta:RCR_aorta", + "1490": "pressure:inlet_aorta:RCR_aorta", + "1491": "pressure:inlet_aorta:RCR_aorta", + "1492": "pressure:inlet_aorta:RCR_aorta", + "1493": "pressure:inlet_aorta:RCR_aorta", + "1494": "pressure:inlet_aorta:RCR_aorta", + "1495": "pressure:inlet_aorta:RCR_aorta", + "1496": "pressure:inlet_aorta:RCR_aorta", + "1497": "pressure:inlet_aorta:RCR_aorta", + "1498": "pressure:inlet_aorta:RCR_aorta", + "1499": "pressure:inlet_aorta:RCR_aorta", + "1500": "pressure:inlet_aorta:RCR_aorta", + "1501": "pressure:inlet_aorta:RCR_aorta", + "1502": "pressure:inlet_aorta:RCR_aorta", + "1503": "pressure:inlet_aorta:RCR_aorta", + "1504": "pressure:inlet_aorta:RCR_aorta", + "1505": "pressure:inlet_aorta:RCR_aorta", + "1506": "pressure:inlet_aorta:RCR_aorta", + "1507": "pressure:inlet_aorta:RCR_aorta", + "1508": "pressure:inlet_aorta:RCR_aorta", + "1509": "pressure:inlet_aorta:RCR_aorta", + "1510": "pressure:inlet_aorta:RCR_aorta", + "1511": "pressure:inlet_aorta:RCR_aorta", + "1512": "pressure:inlet_aorta:RCR_aorta", + "1513": "pressure:inlet_aorta:RCR_aorta", + "1514": "pressure:inlet_aorta:RCR_aorta", + "1515": "pressure:inlet_aorta:RCR_aorta", + "1516": "pressure:inlet_aorta:RCR_aorta", + "1517": "pressure:inlet_aorta:RCR_aorta", + "1518": "pressure:inlet_aorta:RCR_aorta", + "1519": "pressure:inlet_aorta:RCR_aorta", + "1520": "pressure:inlet_aorta:RCR_aorta", + "1521": "pressure:inlet_aorta:RCR_aorta", + "1522": "pressure:inlet_aorta:RCR_aorta", + "1523": "pressure:inlet_aorta:RCR_aorta", + "1524": "pressure:inlet_aorta:RCR_aorta", + "1525": "pressure:inlet_aorta:RCR_aorta", + "1526": "pressure:inlet_aorta:RCR_aorta", + "1527": "pressure:inlet_aorta:RCR_aorta", + "1528": "pressure:inlet_aorta:RCR_aorta", + "1529": "pressure:inlet_aorta:RCR_aorta", + "1530": "pressure:inlet_aorta:RCR_aorta", + "1531": "pressure:inlet_aorta:RCR_aorta", + "1532": "pressure:inlet_aorta:RCR_aorta", + "1533": "pressure:inlet_aorta:RCR_aorta", + "1534": "pressure:inlet_aorta:RCR_aorta", + "1535": "pressure:inlet_aorta:RCR_aorta", + "1536": "pressure:inlet_aorta:RCR_aorta", + "1537": "pressure:inlet_aorta:RCR_aorta", + "1538": "pressure:inlet_aorta:RCR_aorta", + "1539": "pressure:inlet_aorta:RCR_aorta", + "1540": "pressure:inlet_aorta:RCR_aorta", + "1541": "pressure:inlet_aorta:RCR_aorta", + "1542": "pressure:inlet_aorta:RCR_aorta", + "1543": "pressure:inlet_aorta:RCR_aorta", + "1544": "pressure:inlet_aorta:RCR_aorta", + "1545": "pressure:inlet_aorta:RCR_aorta", + "1546": "pressure:inlet_aorta:RCR_aorta", + "1547": "pressure:inlet_aorta:RCR_aorta", + "1548": "pressure:inlet_aorta:RCR_aorta", + "1549": "pressure:inlet_aorta:RCR_aorta", + "1550": "pressure:inlet_aorta:RCR_aorta", + "1551": "pressure:inlet_aorta:RCR_aorta", + "1552": "pressure:inlet_aorta:RCR_aorta", + "1553": "pressure:inlet_aorta:RCR_aorta", + "1554": "pressure:inlet_aorta:RCR_aorta", + "1555": "pressure:inlet_aorta:RCR_aorta", + "1556": "pressure:inlet_aorta:RCR_aorta", + "1557": "pressure:inlet_aorta:RCR_aorta", + "1558": "pressure:inlet_aorta:RCR_aorta", + "1559": "pressure:inlet_aorta:RCR_aorta", + "1560": "pressure:inlet_aorta:RCR_aorta", + "1561": "pressure:inlet_aorta:RCR_aorta", + "1562": "pressure:inlet_aorta:RCR_aorta", + "1563": "pressure:inlet_aorta:RCR_aorta", + "1564": "pressure:inlet_aorta:RCR_aorta", + "1565": "pressure:inlet_aorta:RCR_aorta", + "1566": "pressure:inlet_aorta:RCR_aorta", + "1567": "pressure:inlet_aorta:RCR_aorta", + "1568": "pressure:inlet_aorta:RCR_aorta", + "1569": "pressure:inlet_aorta:RCR_aorta", + "1570": "pressure:inlet_aorta:RCR_aorta", + "1571": "pressure:inlet_aorta:RCR_aorta", + "1572": "pressure:inlet_aorta:RCR_aorta", + "1573": "pressure:inlet_aorta:RCR_aorta", + "1574": "pressure:inlet_aorta:RCR_aorta", + "1575": "pressure:inlet_aorta:RCR_aorta", + "1576": "pressure:inlet_aorta:RCR_aorta", + "1577": "pressure:inlet_aorta:RCR_aorta", + "1578": "pressure:inlet_aorta:RCR_aorta", + "1579": "pressure:inlet_aorta:RCR_aorta", + "1580": "pressure:inlet_aorta:RCR_aorta", + "1581": "pressure:inlet_aorta:RCR_aorta", + "1582": "pressure:inlet_aorta:RCR_aorta", + "1583": "pressure:inlet_aorta:RCR_aorta", + "1584": "pressure:inlet_aorta:RCR_aorta", + "1585": "pressure:inlet_aorta:RCR_aorta", + "1586": "pressure:inlet_aorta:RCR_aorta", + "1587": "pressure:inlet_aorta:RCR_aorta", + "1588": "pressure:inlet_aorta:RCR_aorta", + "1589": "pressure:inlet_aorta:RCR_aorta", + "1590": "pressure:inlet_aorta:RCR_aorta", + "1591": "pressure:inlet_aorta:RCR_aorta", + "1592": "pressure:inlet_aorta:RCR_aorta", + "1593": "pressure:inlet_aorta:RCR_aorta", + "1594": "pressure:inlet_aorta:RCR_aorta", + "1595": "pressure:inlet_aorta:RCR_aorta", + "1596": "pressure:inlet_aorta:RCR_aorta", + "1597": "pressure:inlet_aorta:RCR_aorta", + "1598": "pressure:inlet_aorta:RCR_aorta", + "1599": "pressure:inlet_aorta:RCR_aorta", + "1600": "pressure:inlet_aorta:RCR_aorta", + "1601": "pressure:inlet_aorta:RCR_aorta", + "1602": "pressure:inlet_aorta:RCR_aorta", + "1603": "pressure:inlet_aorta:RCR_aorta", + "1604": "pressure:inlet_aorta:RCR_aorta", + "1605": "pressure:inlet_aorta:RCR_aorta", + "1606": "pressure:inlet_aorta:RCR_aorta", + "1607": "pressure:inlet_aorta:RCR_aorta", + "1608": "pressure:inlet_aorta:RCR_aorta", + "1609": "pressure:inlet_aorta:RCR_aorta", + "1610": "pressure:inlet_aorta:RCR_aorta", + "1611": "pressure:inlet_aorta:RCR_aorta", + "1612": "pressure:inlet_aorta:RCR_aorta", + "1613": "pressure:inlet_aorta:RCR_aorta", + "1614": "pressure:inlet_aorta:RCR_aorta", + "1615": "pressure:inlet_aorta:RCR_aorta", + "1616": "pressure:inlet_aorta:RCR_aorta", + "1617": "pressure:inlet_aorta:RCR_aorta", + "1618": "pressure:inlet_aorta:RCR_aorta", + "1619": "pressure:inlet_aorta:RCR_aorta", + "1620": "pressure:inlet_aorta:RCR_aorta", + "1621": "pressure:inlet_aorta:RCR_aorta", + "1622": "pressure:inlet_aorta:RCR_aorta", + "1623": "pressure:inlet_aorta:RCR_aorta", + "1624": "pressure:inlet_aorta:RCR_aorta", + "1625": "pressure:inlet_aorta:RCR_aorta", + "1626": "pressure:inlet_aorta:RCR_aorta", + "1627": "pressure:inlet_aorta:RCR_aorta", + "1628": "pressure:inlet_aorta:RCR_aorta", + "1629": "pressure:inlet_aorta:RCR_aorta", + "1630": "pressure:inlet_aorta:RCR_aorta", + "1631": "pressure:inlet_aorta:RCR_aorta", + "1632": "pressure:inlet_aorta:RCR_aorta", + "1633": "pressure:inlet_aorta:RCR_aorta", + "1634": "pressure:inlet_aorta:RCR_aorta", + "1635": "pressure:inlet_aorta:RCR_aorta", + "1636": "pressure:inlet_aorta:RCR_aorta", + "1637": "pressure:inlet_aorta:RCR_aorta", + "1638": "pressure:inlet_aorta:RCR_aorta", + "1639": "pressure:inlet_aorta:RCR_aorta", + "1640": "pressure:inlet_aorta:RCR_aorta", + "1641": "pressure:inlet_aorta:RCR_aorta", + "1642": "pressure:inlet_aorta:RCR_aorta", + "1643": "pressure:inlet_aorta:RCR_aorta", + "1644": "pressure:inlet_aorta:RCR_aorta", + "1645": "pressure:inlet_aorta:RCR_aorta", + "1646": "pressure:inlet_aorta:RCR_aorta", + "1647": "pressure:inlet_aorta:RCR_aorta", + "1648": "pressure:inlet_aorta:RCR_aorta", + "1649": "pressure:inlet_aorta:RCR_aorta", + "1650": "pressure:inlet_aorta:RCR_aorta", + "1651": "pressure:inlet_aorta:RCR_aorta", + "1652": "pressure:inlet_aorta:RCR_aorta", + "1653": "pressure:inlet_aorta:RCR_aorta", + "1654": "pressure:inlet_aorta:RCR_aorta", + "1655": "pressure:inlet_aorta:RCR_aorta", + "1656": "pressure:inlet_aorta:RCR_aorta", + "1657": "pressure:inlet_aorta:RCR_aorta", + "1658": "pressure:inlet_aorta:RCR_aorta", + "1659": "pressure:inlet_aorta:RCR_aorta", + "1660": "pressure:inlet_aorta:RCR_aorta", + "1661": "pressure:inlet_aorta:RCR_aorta", + "1662": "pressure:inlet_aorta:RCR_aorta", + "1663": "pressure:inlet_aorta:RCR_aorta", + "1664": "pressure:inlet_aorta:RCR_aorta", + "1665": "pressure:inlet_aorta:RCR_aorta", + "1666": "pressure:inlet_aorta:RCR_aorta", + "1667": "pressure:inlet_aorta:RCR_aorta", + "1668": "pressure:inlet_aorta:RCR_aorta", + "1669": "pressure:inlet_aorta:RCR_aorta", + "1670": "pressure:inlet_aorta:RCR_aorta", + "1671": "pressure:inlet_aorta:RCR_aorta", + "1672": "pressure:inlet_aorta:RCR_aorta", + "1673": "pressure:inlet_aorta:RCR_aorta", + "1674": "pressure:inlet_aorta:RCR_aorta", + "1675": "pressure:inlet_aorta:RCR_aorta", + "1676": "pressure:inlet_aorta:RCR_aorta", + "1677": "pressure:inlet_aorta:RCR_aorta", + "1678": "pressure:inlet_aorta:RCR_aorta", + "1679": "pressure:inlet_aorta:RCR_aorta", + "1680": "pressure:inlet_aorta:RCR_aorta", + "1681": "pressure:inlet_aorta:RCR_aorta", + "1682": "pressure:inlet_aorta:RCR_aorta", + "1683": "pressure:inlet_aorta:RCR_aorta", + "1684": "pressure:inlet_aorta:RCR_aorta", + "1685": "pressure:inlet_aorta:RCR_aorta", + "1686": "pressure:inlet_aorta:RCR_aorta", + "1687": "pressure:inlet_aorta:RCR_aorta", + "1688": "pressure:inlet_aorta:RCR_aorta", + "1689": "pressure:inlet_aorta:RCR_aorta", + "1690": "pressure:inlet_aorta:RCR_aorta", + "1691": "pressure:inlet_aorta:RCR_aorta", + "1692": "pressure:inlet_aorta:RCR_aorta", + "1693": "pressure:inlet_aorta:RCR_aorta", + "1694": "pressure:inlet_aorta:RCR_aorta", + "1695": "pressure:inlet_aorta:RCR_aorta", + "1696": "pressure:inlet_aorta:RCR_aorta", + "1697": "pressure:inlet_aorta:RCR_aorta", + "1698": "pressure:inlet_aorta:RCR_aorta", + "1699": "pressure:inlet_aorta:RCR_aorta", + "1700": "pressure:inlet_aorta:RCR_aorta", + "1701": "pressure:inlet_aorta:RCR_aorta", + "1702": "pressure:inlet_aorta:RCR_aorta", + "1703": "pressure:inlet_aorta:RCR_aorta", + "1704": "pressure:inlet_aorta:RCR_aorta", + "1705": "pressure:inlet_aorta:RCR_aorta", + "1706": "pressure:inlet_aorta:RCR_aorta", + "1707": "pressure:inlet_aorta:RCR_aorta", + "1708": "pressure:inlet_aorta:RCR_aorta", + "1709": "pressure:inlet_aorta:RCR_aorta", + "1710": "pressure:inlet_aorta:RCR_aorta", + "1711": "pressure:inlet_aorta:RCR_aorta", + "1712": "pressure:inlet_aorta:RCR_aorta", + "1713": "pressure:inlet_aorta:RCR_aorta", + "1714": "pressure:inlet_aorta:RCR_aorta", + "1715": "pressure:inlet_aorta:RCR_aorta", + "1716": "pressure:inlet_aorta:RCR_aorta", + "1717": "pressure:inlet_aorta:RCR_aorta", + "1718": "pressure:inlet_aorta:RCR_aorta", + "1719": "pressure:inlet_aorta:RCR_aorta", + "1720": "pressure:inlet_aorta:RCR_aorta", + "1721": "pressure:inlet_aorta:RCR_aorta", + "1722": "pressure:inlet_aorta:RCR_aorta", + "1723": "pressure:inlet_aorta:RCR_aorta", + "1724": "pressure:inlet_aorta:RCR_aorta", + "1725": "pressure:inlet_aorta:RCR_aorta", + "1726": "pressure:inlet_aorta:RCR_aorta", + "1727": "pressure:inlet_aorta:RCR_aorta", + "1728": "pressure:inlet_aorta:RCR_aorta", + "1729": "pressure:inlet_aorta:RCR_aorta", + "1730": "pressure:inlet_aorta:RCR_aorta", + "1731": "pressure:inlet_aorta:RCR_aorta", + "1732": "pressure:inlet_aorta:RCR_aorta", + "1733": "pressure:inlet_aorta:RCR_aorta", + "1734": "pressure:inlet_aorta:RCR_aorta", + "1735": "pressure:inlet_aorta:RCR_aorta", + "1736": "pressure:inlet_aorta:RCR_aorta", + "1737": "pressure:inlet_aorta:RCR_aorta", + "1738": "pressure:inlet_aorta:RCR_aorta", + "1739": "pressure:inlet_aorta:RCR_aorta", + "1740": "pressure:inlet_aorta:RCR_aorta", + "1741": "pressure:inlet_aorta:RCR_aorta", + "1742": "pressure:inlet_aorta:RCR_aorta", + "1743": "pressure:inlet_aorta:RCR_aorta", + "1744": "pressure:inlet_aorta:RCR_aorta", + "1745": "pressure:inlet_aorta:RCR_aorta", + "1746": "pressure:inlet_aorta:RCR_aorta", + "1747": "pressure:inlet_aorta:RCR_aorta", + "1748": "pressure:inlet_aorta:RCR_aorta", + "1749": "pressure:inlet_aorta:RCR_aorta", + "1750": "pressure:inlet_aorta:RCR_aorta", + "1751": "pressure:inlet_aorta:RCR_aorta", + "1752": "pressure:inlet_aorta:RCR_aorta", + "1753": "pressure:inlet_aorta:RCR_aorta", + "1754": "pressure:inlet_aorta:RCR_aorta", + "1755": "pressure:inlet_aorta:RCR_aorta", + "1756": "pressure:inlet_aorta:RCR_aorta", + "1757": "pressure:inlet_aorta:RCR_aorta", + "1758": "pressure:inlet_aorta:RCR_aorta", + "1759": "pressure:inlet_aorta:RCR_aorta", + "1760": "pressure:inlet_aorta:RCR_aorta", + "1761": "pressure:inlet_aorta:RCR_aorta", + "1762": "pressure:inlet_aorta:RCR_aorta", + "1763": "pressure:inlet_aorta:RCR_aorta", + "1764": "pressure:inlet_aorta:RCR_aorta", + "1765": "pressure:inlet_aorta:RCR_aorta", + "1766": "pressure:inlet_aorta:RCR_aorta", + "1767": "pressure:inlet_aorta:RCR_aorta", + "1768": "pressure:inlet_aorta:RCR_aorta", + "1769": "pressure:inlet_aorta:RCR_aorta", + "1770": "pressure:inlet_aorta:RCR_aorta", + "1771": "pressure:inlet_aorta:RCR_aorta", + "1772": "pressure:inlet_aorta:RCR_aorta", + "1773": "pressure:inlet_aorta:RCR_aorta", + "1774": "pressure:inlet_aorta:RCR_aorta", + "1775": "pressure:inlet_aorta:RCR_aorta", + "1776": "pressure:inlet_aorta:RCR_aorta", + "1777": "pressure:inlet_aorta:RCR_aorta", + "1778": "pressure:inlet_aorta:RCR_aorta", + "1779": "pressure:inlet_aorta:RCR_aorta", + "1780": "pressure:inlet_aorta:RCR_aorta", + "1781": "pressure:inlet_aorta:RCR_aorta", + "1782": "pressure:inlet_aorta:RCR_aorta", + "1783": "pressure:inlet_aorta:RCR_aorta", + "1784": "pressure:inlet_aorta:RCR_aorta", + "1785": "pressure:inlet_aorta:RCR_aorta", + "1786": "pressure:inlet_aorta:RCR_aorta", + "1787": "pressure:inlet_aorta:RCR_aorta", + "1788": "pressure:inlet_aorta:RCR_aorta", + "1789": "pressure:inlet_aorta:RCR_aorta", + "1790": "pressure:inlet_aorta:RCR_aorta", + "1791": "pressure:inlet_aorta:RCR_aorta", + "1792": "pressure:inlet_aorta:RCR_aorta", + "1793": "pressure:inlet_aorta:RCR_aorta", + "1794": "pressure:inlet_aorta:RCR_aorta", + "1795": "pressure:inlet_aorta:RCR_aorta", + "1796": "pressure:inlet_aorta:RCR_aorta", + "1797": "pressure:inlet_aorta:RCR_aorta", + "1798": "pressure:inlet_aorta:RCR_aorta", + "1799": "pressure:inlet_aorta:RCR_aorta", + "1800": "pressure:inlet_aorta:RCR_aorta", + "1801": "pressure:inlet_aorta:RCR_aorta", + "1802": "pressure:inlet_aorta:RCR_aorta", + "1803": "pressure:inlet_aorta:RCR_aorta", + "1804": "pressure:inlet_aorta:RCR_aorta", + "1805": "pressure:inlet_aorta:RCR_aorta", + "1806": "pressure:inlet_aorta:RCR_aorta", + "1807": "pressure:inlet_aorta:RCR_aorta", + "1808": "pressure:inlet_aorta:RCR_aorta", + "1809": "pressure:inlet_aorta:RCR_aorta", + "1810": "pressure:inlet_aorta:RCR_aorta", + "1811": "pressure:inlet_aorta:RCR_aorta", + "1812": "pressure:inlet_aorta:RCR_aorta", + "1813": "pressure:inlet_aorta:RCR_aorta", + "1814": "pressure:inlet_aorta:RCR_aorta", + "1815": "pressure:inlet_aorta:RCR_aorta", + "1816": "pressure:inlet_aorta:RCR_aorta", + "1817": "pressure:inlet_aorta:RCR_aorta", + "1818": "pressure:inlet_aorta:RCR_aorta", + "1819": "pressure:inlet_aorta:RCR_aorta", + "1820": "pressure:inlet_aorta:RCR_aorta", + "1821": "pressure:inlet_aorta:RCR_aorta", + "1822": "pressure:inlet_aorta:RCR_aorta", + "1823": "pressure:inlet_aorta:RCR_aorta", + "1824": "pressure:inlet_aorta:RCR_aorta", + "1825": "pressure:inlet_aorta:RCR_aorta", + "1826": "pressure:inlet_aorta:RCR_aorta", + "1827": "pressure:inlet_aorta:RCR_aorta", + "1828": "pressure:inlet_aorta:RCR_aorta", + "1829": "pressure:inlet_aorta:RCR_aorta", + "1830": "pressure:inlet_aorta:RCR_aorta", + "1831": "pressure:inlet_aorta:RCR_aorta", + "1832": "pressure:inlet_aorta:RCR_aorta", + "1833": "pressure:inlet_aorta:RCR_aorta", + "1834": "pressure:inlet_aorta:RCR_aorta", + "1835": "pressure:inlet_aorta:RCR_aorta", + "1836": "pressure:inlet_aorta:RCR_aorta", + "1837": "pressure:inlet_aorta:RCR_aorta", + "1838": "pressure:inlet_aorta:RCR_aorta", + "1839": "pressure:inlet_aorta:RCR_aorta", + "1840": "pressure:inlet_aorta:RCR_aorta", + "1841": "pressure:inlet_aorta:RCR_aorta", + "1842": "pressure:inlet_aorta:RCR_aorta", + "1843": "pressure:inlet_aorta:RCR_aorta", + "1844": "pressure:inlet_aorta:RCR_aorta", + "1845": "pressure:inlet_aorta:RCR_aorta", + "1846": "pressure:inlet_aorta:RCR_aorta", + "1847": "pressure:inlet_aorta:RCR_aorta", + "1848": "pressure:inlet_aorta:RCR_aorta", + "1849": "pressure:inlet_aorta:RCR_aorta", + "1850": "pressure:inlet_aorta:RCR_aorta", + "1851": "pressure:inlet_aorta:RCR_aorta", + "1852": "pressure:inlet_aorta:RCR_aorta", + "1853": "pressure:inlet_aorta:RCR_aorta", + "1854": "pressure:inlet_aorta:RCR_aorta", + "1855": "pressure:inlet_aorta:RCR_aorta", + "1856": "pressure:inlet_aorta:RCR_aorta", + "1857": "pressure:inlet_aorta:RCR_aorta", + "1858": "pressure:inlet_aorta:RCR_aorta", + "1859": "pressure:inlet_aorta:RCR_aorta", + "1860": "pressure:inlet_aorta:RCR_aorta", + "1861": "pressure:inlet_aorta:RCR_aorta", + "1862": "pressure:inlet_aorta:RCR_aorta", + "1863": "pressure:inlet_aorta:RCR_aorta", + "1864": "pressure:inlet_aorta:RCR_aorta", + "1865": "pressure:inlet_aorta:RCR_aorta", + "1866": "pressure:inlet_aorta:RCR_aorta", + "1867": "pressure:inlet_aorta:RCR_aorta", + "1868": "pressure:inlet_aorta:RCR_aorta", + "1869": "pressure:inlet_aorta:RCR_aorta", + "1870": "pressure:inlet_aorta:RCR_aorta", + "1871": "pressure:inlet_aorta:RCR_aorta", + "1872": "pressure:inlet_aorta:RCR_aorta", + "1873": "pressure:inlet_aorta:RCR_aorta", + "1874": "pressure:inlet_aorta:RCR_aorta", + "1875": "pressure:inlet_aorta:RCR_aorta", + "1876": "pressure:inlet_aorta:RCR_aorta", + "1877": "pressure:inlet_aorta:RCR_aorta", + "1878": "pressure:inlet_aorta:RCR_aorta", + "1879": "pressure:inlet_aorta:RCR_aorta", + "1880": "pressure:inlet_aorta:RCR_aorta", + "1881": "pressure:inlet_aorta:RCR_aorta", + "1882": "pressure:inlet_aorta:RCR_aorta", + "1883": "pressure:inlet_aorta:RCR_aorta", + "1884": "pressure:inlet_aorta:RCR_aorta", + "1885": "pressure:inlet_aorta:RCR_aorta", + "1886": "pressure:inlet_aorta:RCR_aorta", + "1887": "pressure:inlet_aorta:RCR_aorta", + "1888": "pressure:inlet_aorta:RCR_aorta", + "1889": "pressure:inlet_aorta:RCR_aorta", + "1890": "pressure:inlet_aorta:RCR_aorta", + "1891": "pressure:inlet_aorta:RCR_aorta", + "1892": "pressure:inlet_aorta:RCR_aorta", + "1893": "pressure:inlet_aorta:RCR_aorta", + "1894": "pressure:inlet_aorta:RCR_aorta", + "1895": "pressure:inlet_aorta:RCR_aorta", + "1896": "pressure:inlet_aorta:RCR_aorta", + "1897": "pressure:inlet_aorta:RCR_aorta", + "1898": "pressure:inlet_aorta:RCR_aorta", + "1899": "pressure:inlet_aorta:RCR_aorta", + "1900": "pressure:inlet_aorta:RCR_aorta", + "1901": "pressure:inlet_aorta:RCR_aorta", + "1902": "pressure:inlet_aorta:RCR_aorta", + "1903": "pressure:inlet_aorta:RCR_aorta", + "1904": "pressure:inlet_aorta:RCR_aorta", + "1905": "pressure:inlet_aorta:RCR_aorta", + "1906": "pressure:inlet_aorta:RCR_aorta", + "1907": "pressure:inlet_aorta:RCR_aorta", + "1908": "pressure:inlet_aorta:RCR_aorta", + "1909": "pressure:inlet_aorta:RCR_aorta", + "1910": "pressure:inlet_aorta:RCR_aorta", + "1911": "pressure:inlet_aorta:RCR_aorta", + "1912": "pressure:inlet_aorta:RCR_aorta", + "1913": "pressure:inlet_aorta:RCR_aorta", + "1914": "pressure:inlet_aorta:RCR_aorta", + "1915": "pressure:inlet_aorta:RCR_aorta", + "1916": "pressure:inlet_aorta:RCR_aorta", + "1917": "pressure:inlet_aorta:RCR_aorta", + "1918": "pressure:inlet_aorta:RCR_aorta", + "1919": "pressure:inlet_aorta:RCR_aorta", + "1920": "pressure:inlet_aorta:RCR_aorta", + "1921": "pressure:inlet_aorta:RCR_aorta", + "1922": "pressure:inlet_aorta:RCR_aorta", + "1923": "pressure:inlet_aorta:RCR_aorta", + "1924": "pressure:inlet_aorta:RCR_aorta", + "1925": "pressure:inlet_aorta:RCR_aorta", + "1926": "pressure:inlet_aorta:RCR_aorta", + "1927": "pressure:inlet_aorta:RCR_aorta", + "1928": "pressure:inlet_aorta:RCR_aorta", + "1929": "pressure:inlet_aorta:RCR_aorta", + "1930": "pressure:inlet_aorta:RCR_aorta", + "1931": "pressure:inlet_aorta:RCR_aorta", + "1932": "pressure:inlet_aorta:RCR_aorta", + "1933": "pressure:inlet_aorta:RCR_aorta", + "1934": "pressure:inlet_aorta:RCR_aorta", + "1935": "pressure:inlet_aorta:RCR_aorta", + "1936": "pressure:inlet_aorta:RCR_aorta", + "1937": "pressure:inlet_aorta:RCR_aorta", + "1938": "pressure:inlet_aorta:RCR_aorta", + "1939": "pressure:inlet_aorta:RCR_aorta", + "1940": "pressure:inlet_aorta:RCR_aorta", + "1941": "pressure:inlet_aorta:RCR_aorta", + "1942": "pressure:inlet_aorta:RCR_aorta", + "1943": "pressure:inlet_aorta:RCR_aorta", + "1944": "pressure:inlet_aorta:RCR_aorta", + "1945": "pressure:inlet_aorta:RCR_aorta", + "1946": "pressure:inlet_aorta:RCR_aorta", + "1947": "pressure:inlet_aorta:RCR_aorta", + "1948": "pressure:inlet_aorta:RCR_aorta", + "1949": "pressure:inlet_aorta:RCR_aorta", + "1950": "pressure:inlet_aorta:RCR_aorta", + "1951": "pressure:inlet_aorta:RCR_aorta", + "1952": "pressure:inlet_aorta:RCR_aorta", + "1953": "pressure:inlet_aorta:RCR_aorta", + "1954": "pressure:inlet_aorta:RCR_aorta", + "1955": "pressure:inlet_aorta:RCR_aorta", + "1956": "pressure:inlet_aorta:RCR_aorta", + "1957": "pressure:inlet_aorta:RCR_aorta", + "1958": "pressure:inlet_aorta:RCR_aorta", + "1959": "pressure:inlet_aorta:RCR_aorta", + "1960": "pressure:inlet_aorta:RCR_aorta", + "1961": "pressure:inlet_aorta:RCR_aorta", + "1962": "pressure:inlet_aorta:RCR_aorta", + "1963": "pressure:inlet_aorta:RCR_aorta", + "1964": "pressure:inlet_aorta:RCR_aorta", + "1965": "pressure:inlet_aorta:RCR_aorta", + "1966": "pressure:inlet_aorta:RCR_aorta", + "1967": "pressure:inlet_aorta:RCR_aorta", + "1968": "pressure:inlet_aorta:RCR_aorta", + "1969": "pressure:inlet_aorta:RCR_aorta", + "1970": "pressure:inlet_aorta:RCR_aorta", + "1971": "pressure:inlet_aorta:RCR_aorta", + "1972": "pressure:inlet_aorta:RCR_aorta", + "1973": "pressure:inlet_aorta:RCR_aorta", + "1974": "pressure:inlet_aorta:RCR_aorta", + "1975": "pressure:inlet_aorta:RCR_aorta", + "1976": "pressure:inlet_aorta:RCR_aorta", + "1977": "pressure:inlet_aorta:RCR_aorta", + "1978": "pressure:inlet_aorta:RCR_aorta", + "1979": "pressure:inlet_aorta:RCR_aorta", + "1980": "pressure:inlet_aorta:RCR_aorta", + "1981": "pressure:inlet_aorta:RCR_aorta", + "1982": "pressure:inlet_aorta:RCR_aorta", + "1983": "pressure:inlet_aorta:RCR_aorta", + "1984": "pressure:inlet_aorta:RCR_aorta", + "1985": "pressure:inlet_aorta:RCR_aorta", + "1986": "pressure:inlet_aorta:RCR_aorta", + "1987": "pressure:inlet_aorta:RCR_aorta", + "1988": "pressure:inlet_aorta:RCR_aorta", + "1989": "pressure:inlet_aorta:RCR_aorta", + "1990": "pressure:inlet_aorta:RCR_aorta", + "1991": "pressure:inlet_aorta:RCR_aorta", + "1992": "pressure:inlet_aorta:RCR_aorta", + "1993": "pressure:inlet_aorta:RCR_aorta", + "1994": "pressure:inlet_aorta:RCR_aorta", + "1995": "pressure:inlet_aorta:RCR_aorta", + "1996": "pressure:inlet_aorta:RCR_aorta", + "1997": "pressure:inlet_aorta:RCR_aorta", + "1998": "pressure:inlet_aorta:RCR_aorta", + "1999": "pressure:inlet_aorta:RCR_aorta", + "2000": "flow:inlet_aorta_br:RCR_aorta_br", + "2001": "flow:inlet_aorta_br:RCR_aorta_br", + "2002": "flow:inlet_aorta_br:RCR_aorta_br", + "2003": "flow:inlet_aorta_br:RCR_aorta_br", + "2004": "flow:inlet_aorta_br:RCR_aorta_br", + "2005": "flow:inlet_aorta_br:RCR_aorta_br", + "2006": "flow:inlet_aorta_br:RCR_aorta_br", + "2007": "flow:inlet_aorta_br:RCR_aorta_br", + "2008": "flow:inlet_aorta_br:RCR_aorta_br", + "2009": "flow:inlet_aorta_br:RCR_aorta_br", + "2010": "flow:inlet_aorta_br:RCR_aorta_br", + "2011": "flow:inlet_aorta_br:RCR_aorta_br", + "2012": "flow:inlet_aorta_br:RCR_aorta_br", + "2013": "flow:inlet_aorta_br:RCR_aorta_br", + "2014": "flow:inlet_aorta_br:RCR_aorta_br", + "2015": "flow:inlet_aorta_br:RCR_aorta_br", + "2016": "flow:inlet_aorta_br:RCR_aorta_br", + "2017": "flow:inlet_aorta_br:RCR_aorta_br", + "2018": "flow:inlet_aorta_br:RCR_aorta_br", + "2019": "flow:inlet_aorta_br:RCR_aorta_br", + "2020": "flow:inlet_aorta_br:RCR_aorta_br", + "2021": "flow:inlet_aorta_br:RCR_aorta_br", + "2022": "flow:inlet_aorta_br:RCR_aorta_br", + "2023": "flow:inlet_aorta_br:RCR_aorta_br", + "2024": "flow:inlet_aorta_br:RCR_aorta_br", + "2025": "flow:inlet_aorta_br:RCR_aorta_br", + "2026": "flow:inlet_aorta_br:RCR_aorta_br", + "2027": "flow:inlet_aorta_br:RCR_aorta_br", + "2028": "flow:inlet_aorta_br:RCR_aorta_br", + "2029": "flow:inlet_aorta_br:RCR_aorta_br", + "2030": "flow:inlet_aorta_br:RCR_aorta_br", + "2031": "flow:inlet_aorta_br:RCR_aorta_br", + "2032": "flow:inlet_aorta_br:RCR_aorta_br", + "2033": "flow:inlet_aorta_br:RCR_aorta_br", + "2034": "flow:inlet_aorta_br:RCR_aorta_br", + "2035": "flow:inlet_aorta_br:RCR_aorta_br", + "2036": "flow:inlet_aorta_br:RCR_aorta_br", + "2037": "flow:inlet_aorta_br:RCR_aorta_br", + "2038": "flow:inlet_aorta_br:RCR_aorta_br", + "2039": "flow:inlet_aorta_br:RCR_aorta_br", + "2040": "flow:inlet_aorta_br:RCR_aorta_br", + "2041": "flow:inlet_aorta_br:RCR_aorta_br", + "2042": "flow:inlet_aorta_br:RCR_aorta_br", + "2043": "flow:inlet_aorta_br:RCR_aorta_br", + "2044": "flow:inlet_aorta_br:RCR_aorta_br", + "2045": "flow:inlet_aorta_br:RCR_aorta_br", + "2046": "flow:inlet_aorta_br:RCR_aorta_br", + "2047": "flow:inlet_aorta_br:RCR_aorta_br", + "2048": "flow:inlet_aorta_br:RCR_aorta_br", + "2049": "flow:inlet_aorta_br:RCR_aorta_br", + "2050": "flow:inlet_aorta_br:RCR_aorta_br", + "2051": "flow:inlet_aorta_br:RCR_aorta_br", + "2052": "flow:inlet_aorta_br:RCR_aorta_br", + "2053": "flow:inlet_aorta_br:RCR_aorta_br", + "2054": "flow:inlet_aorta_br:RCR_aorta_br", + "2055": "flow:inlet_aorta_br:RCR_aorta_br", + "2056": "flow:inlet_aorta_br:RCR_aorta_br", + "2057": "flow:inlet_aorta_br:RCR_aorta_br", + "2058": "flow:inlet_aorta_br:RCR_aorta_br", + "2059": "flow:inlet_aorta_br:RCR_aorta_br", + "2060": "flow:inlet_aorta_br:RCR_aorta_br", + "2061": "flow:inlet_aorta_br:RCR_aorta_br", + "2062": "flow:inlet_aorta_br:RCR_aorta_br", + "2063": "flow:inlet_aorta_br:RCR_aorta_br", + "2064": "flow:inlet_aorta_br:RCR_aorta_br", + "2065": "flow:inlet_aorta_br:RCR_aorta_br", + "2066": "flow:inlet_aorta_br:RCR_aorta_br", + "2067": "flow:inlet_aorta_br:RCR_aorta_br", + "2068": "flow:inlet_aorta_br:RCR_aorta_br", + "2069": "flow:inlet_aorta_br:RCR_aorta_br", + "2070": "flow:inlet_aorta_br:RCR_aorta_br", + "2071": "flow:inlet_aorta_br:RCR_aorta_br", + "2072": "flow:inlet_aorta_br:RCR_aorta_br", + "2073": "flow:inlet_aorta_br:RCR_aorta_br", + "2074": "flow:inlet_aorta_br:RCR_aorta_br", + "2075": "flow:inlet_aorta_br:RCR_aorta_br", + "2076": "flow:inlet_aorta_br:RCR_aorta_br", + "2077": "flow:inlet_aorta_br:RCR_aorta_br", + "2078": "flow:inlet_aorta_br:RCR_aorta_br", + "2079": "flow:inlet_aorta_br:RCR_aorta_br", + "2080": "flow:inlet_aorta_br:RCR_aorta_br", + "2081": "flow:inlet_aorta_br:RCR_aorta_br", + "2082": "flow:inlet_aorta_br:RCR_aorta_br", + "2083": "flow:inlet_aorta_br:RCR_aorta_br", + "2084": "flow:inlet_aorta_br:RCR_aorta_br", + "2085": "flow:inlet_aorta_br:RCR_aorta_br", + "2086": "flow:inlet_aorta_br:RCR_aorta_br", + "2087": "flow:inlet_aorta_br:RCR_aorta_br", + "2088": "flow:inlet_aorta_br:RCR_aorta_br", + "2089": "flow:inlet_aorta_br:RCR_aorta_br", + "2090": "flow:inlet_aorta_br:RCR_aorta_br", + "2091": "flow:inlet_aorta_br:RCR_aorta_br", + "2092": "flow:inlet_aorta_br:RCR_aorta_br", + "2093": "flow:inlet_aorta_br:RCR_aorta_br", + "2094": "flow:inlet_aorta_br:RCR_aorta_br", + "2095": "flow:inlet_aorta_br:RCR_aorta_br", + "2096": "flow:inlet_aorta_br:RCR_aorta_br", + "2097": "flow:inlet_aorta_br:RCR_aorta_br", + "2098": "flow:inlet_aorta_br:RCR_aorta_br", + "2099": "flow:inlet_aorta_br:RCR_aorta_br", + "2100": "flow:inlet_aorta_br:RCR_aorta_br", + "2101": "flow:inlet_aorta_br:RCR_aorta_br", + "2102": "flow:inlet_aorta_br:RCR_aorta_br", + "2103": "flow:inlet_aorta_br:RCR_aorta_br", + "2104": "flow:inlet_aorta_br:RCR_aorta_br", + "2105": "flow:inlet_aorta_br:RCR_aorta_br", + "2106": "flow:inlet_aorta_br:RCR_aorta_br", + "2107": "flow:inlet_aorta_br:RCR_aorta_br", + "2108": "flow:inlet_aorta_br:RCR_aorta_br", + "2109": "flow:inlet_aorta_br:RCR_aorta_br", + "2110": "flow:inlet_aorta_br:RCR_aorta_br", + "2111": "flow:inlet_aorta_br:RCR_aorta_br", + "2112": "flow:inlet_aorta_br:RCR_aorta_br", + "2113": "flow:inlet_aorta_br:RCR_aorta_br", + "2114": "flow:inlet_aorta_br:RCR_aorta_br", + "2115": "flow:inlet_aorta_br:RCR_aorta_br", + "2116": "flow:inlet_aorta_br:RCR_aorta_br", + "2117": "flow:inlet_aorta_br:RCR_aorta_br", + "2118": "flow:inlet_aorta_br:RCR_aorta_br", + "2119": "flow:inlet_aorta_br:RCR_aorta_br", + "2120": "flow:inlet_aorta_br:RCR_aorta_br", + "2121": "flow:inlet_aorta_br:RCR_aorta_br", + "2122": "flow:inlet_aorta_br:RCR_aorta_br", + "2123": "flow:inlet_aorta_br:RCR_aorta_br", + "2124": "flow:inlet_aorta_br:RCR_aorta_br", + "2125": "flow:inlet_aorta_br:RCR_aorta_br", + "2126": "flow:inlet_aorta_br:RCR_aorta_br", + "2127": "flow:inlet_aorta_br:RCR_aorta_br", + "2128": "flow:inlet_aorta_br:RCR_aorta_br", + "2129": "flow:inlet_aorta_br:RCR_aorta_br", + "2130": "flow:inlet_aorta_br:RCR_aorta_br", + "2131": "flow:inlet_aorta_br:RCR_aorta_br", + "2132": "flow:inlet_aorta_br:RCR_aorta_br", + "2133": "flow:inlet_aorta_br:RCR_aorta_br", + "2134": "flow:inlet_aorta_br:RCR_aorta_br", + "2135": "flow:inlet_aorta_br:RCR_aorta_br", + "2136": "flow:inlet_aorta_br:RCR_aorta_br", + "2137": "flow:inlet_aorta_br:RCR_aorta_br", + "2138": "flow:inlet_aorta_br:RCR_aorta_br", + "2139": "flow:inlet_aorta_br:RCR_aorta_br", + "2140": "flow:inlet_aorta_br:RCR_aorta_br", + "2141": "flow:inlet_aorta_br:RCR_aorta_br", + "2142": "flow:inlet_aorta_br:RCR_aorta_br", + "2143": "flow:inlet_aorta_br:RCR_aorta_br", + "2144": "flow:inlet_aorta_br:RCR_aorta_br", + "2145": "flow:inlet_aorta_br:RCR_aorta_br", + "2146": "flow:inlet_aorta_br:RCR_aorta_br", + "2147": "flow:inlet_aorta_br:RCR_aorta_br", + "2148": "flow:inlet_aorta_br:RCR_aorta_br", + "2149": "flow:inlet_aorta_br:RCR_aorta_br", + "2150": "flow:inlet_aorta_br:RCR_aorta_br", + "2151": "flow:inlet_aorta_br:RCR_aorta_br", + "2152": "flow:inlet_aorta_br:RCR_aorta_br", + "2153": "flow:inlet_aorta_br:RCR_aorta_br", + "2154": "flow:inlet_aorta_br:RCR_aorta_br", + "2155": "flow:inlet_aorta_br:RCR_aorta_br", + "2156": "flow:inlet_aorta_br:RCR_aorta_br", + "2157": "flow:inlet_aorta_br:RCR_aorta_br", + "2158": "flow:inlet_aorta_br:RCR_aorta_br", + "2159": "flow:inlet_aorta_br:RCR_aorta_br", + "2160": "flow:inlet_aorta_br:RCR_aorta_br", + "2161": "flow:inlet_aorta_br:RCR_aorta_br", + "2162": "flow:inlet_aorta_br:RCR_aorta_br", + "2163": "flow:inlet_aorta_br:RCR_aorta_br", + "2164": "flow:inlet_aorta_br:RCR_aorta_br", + "2165": "flow:inlet_aorta_br:RCR_aorta_br", + "2166": "flow:inlet_aorta_br:RCR_aorta_br", + "2167": "flow:inlet_aorta_br:RCR_aorta_br", + "2168": "flow:inlet_aorta_br:RCR_aorta_br", + "2169": "flow:inlet_aorta_br:RCR_aorta_br", + "2170": "flow:inlet_aorta_br:RCR_aorta_br", + "2171": "flow:inlet_aorta_br:RCR_aorta_br", + "2172": "flow:inlet_aorta_br:RCR_aorta_br", + "2173": "flow:inlet_aorta_br:RCR_aorta_br", + "2174": "flow:inlet_aorta_br:RCR_aorta_br", + "2175": "flow:inlet_aorta_br:RCR_aorta_br", + "2176": "flow:inlet_aorta_br:RCR_aorta_br", + "2177": "flow:inlet_aorta_br:RCR_aorta_br", + "2178": "flow:inlet_aorta_br:RCR_aorta_br", + "2179": "flow:inlet_aorta_br:RCR_aorta_br", + "2180": "flow:inlet_aorta_br:RCR_aorta_br", + "2181": "flow:inlet_aorta_br:RCR_aorta_br", + "2182": "flow:inlet_aorta_br:RCR_aorta_br", + "2183": "flow:inlet_aorta_br:RCR_aorta_br", + "2184": "flow:inlet_aorta_br:RCR_aorta_br", + "2185": "flow:inlet_aorta_br:RCR_aorta_br", + "2186": "flow:inlet_aorta_br:RCR_aorta_br", + "2187": "flow:inlet_aorta_br:RCR_aorta_br", + "2188": "flow:inlet_aorta_br:RCR_aorta_br", + "2189": "flow:inlet_aorta_br:RCR_aorta_br", + "2190": "flow:inlet_aorta_br:RCR_aorta_br", + "2191": "flow:inlet_aorta_br:RCR_aorta_br", + "2192": "flow:inlet_aorta_br:RCR_aorta_br", + "2193": "flow:inlet_aorta_br:RCR_aorta_br", + "2194": "flow:inlet_aorta_br:RCR_aorta_br", + "2195": "flow:inlet_aorta_br:RCR_aorta_br", + "2196": "flow:inlet_aorta_br:RCR_aorta_br", + "2197": "flow:inlet_aorta_br:RCR_aorta_br", + "2198": "flow:inlet_aorta_br:RCR_aorta_br", + "2199": "flow:inlet_aorta_br:RCR_aorta_br", + "2200": "flow:inlet_aorta_br:RCR_aorta_br", + "2201": "flow:inlet_aorta_br:RCR_aorta_br", + "2202": "flow:inlet_aorta_br:RCR_aorta_br", + "2203": "flow:inlet_aorta_br:RCR_aorta_br", + "2204": "flow:inlet_aorta_br:RCR_aorta_br", + "2205": "flow:inlet_aorta_br:RCR_aorta_br", + "2206": "flow:inlet_aorta_br:RCR_aorta_br", + "2207": "flow:inlet_aorta_br:RCR_aorta_br", + "2208": "flow:inlet_aorta_br:RCR_aorta_br", + "2209": "flow:inlet_aorta_br:RCR_aorta_br", + "2210": "flow:inlet_aorta_br:RCR_aorta_br", + "2211": "flow:inlet_aorta_br:RCR_aorta_br", + "2212": "flow:inlet_aorta_br:RCR_aorta_br", + "2213": "flow:inlet_aorta_br:RCR_aorta_br", + "2214": "flow:inlet_aorta_br:RCR_aorta_br", + "2215": "flow:inlet_aorta_br:RCR_aorta_br", + "2216": "flow:inlet_aorta_br:RCR_aorta_br", + "2217": "flow:inlet_aorta_br:RCR_aorta_br", + "2218": "flow:inlet_aorta_br:RCR_aorta_br", + "2219": "flow:inlet_aorta_br:RCR_aorta_br", + "2220": "flow:inlet_aorta_br:RCR_aorta_br", + "2221": "flow:inlet_aorta_br:RCR_aorta_br", + "2222": "flow:inlet_aorta_br:RCR_aorta_br", + "2223": "flow:inlet_aorta_br:RCR_aorta_br", + "2224": "flow:inlet_aorta_br:RCR_aorta_br", + "2225": "flow:inlet_aorta_br:RCR_aorta_br", + "2226": "flow:inlet_aorta_br:RCR_aorta_br", + "2227": "flow:inlet_aorta_br:RCR_aorta_br", + "2228": "flow:inlet_aorta_br:RCR_aorta_br", + "2229": "flow:inlet_aorta_br:RCR_aorta_br", + "2230": "flow:inlet_aorta_br:RCR_aorta_br", + "2231": "flow:inlet_aorta_br:RCR_aorta_br", + "2232": "flow:inlet_aorta_br:RCR_aorta_br", + "2233": "flow:inlet_aorta_br:RCR_aorta_br", + "2234": "flow:inlet_aorta_br:RCR_aorta_br", + "2235": "flow:inlet_aorta_br:RCR_aorta_br", + "2236": "flow:inlet_aorta_br:RCR_aorta_br", + "2237": "flow:inlet_aorta_br:RCR_aorta_br", + "2238": "flow:inlet_aorta_br:RCR_aorta_br", + "2239": "flow:inlet_aorta_br:RCR_aorta_br", + "2240": "flow:inlet_aorta_br:RCR_aorta_br", + "2241": "flow:inlet_aorta_br:RCR_aorta_br", + "2242": "flow:inlet_aorta_br:RCR_aorta_br", + "2243": "flow:inlet_aorta_br:RCR_aorta_br", + "2244": "flow:inlet_aorta_br:RCR_aorta_br", + "2245": "flow:inlet_aorta_br:RCR_aorta_br", + "2246": "flow:inlet_aorta_br:RCR_aorta_br", + "2247": "flow:inlet_aorta_br:RCR_aorta_br", + "2248": "flow:inlet_aorta_br:RCR_aorta_br", + "2249": "flow:inlet_aorta_br:RCR_aorta_br", + "2250": "flow:inlet_aorta_br:RCR_aorta_br", + "2251": "flow:inlet_aorta_br:RCR_aorta_br", + "2252": "flow:inlet_aorta_br:RCR_aorta_br", + "2253": "flow:inlet_aorta_br:RCR_aorta_br", + "2254": "flow:inlet_aorta_br:RCR_aorta_br", + "2255": "flow:inlet_aorta_br:RCR_aorta_br", + "2256": "flow:inlet_aorta_br:RCR_aorta_br", + "2257": "flow:inlet_aorta_br:RCR_aorta_br", + "2258": "flow:inlet_aorta_br:RCR_aorta_br", + "2259": "flow:inlet_aorta_br:RCR_aorta_br", + "2260": "flow:inlet_aorta_br:RCR_aorta_br", + "2261": "flow:inlet_aorta_br:RCR_aorta_br", + "2262": "flow:inlet_aorta_br:RCR_aorta_br", + "2263": "flow:inlet_aorta_br:RCR_aorta_br", + "2264": "flow:inlet_aorta_br:RCR_aorta_br", + "2265": "flow:inlet_aorta_br:RCR_aorta_br", + "2266": "flow:inlet_aorta_br:RCR_aorta_br", + "2267": "flow:inlet_aorta_br:RCR_aorta_br", + "2268": "flow:inlet_aorta_br:RCR_aorta_br", + "2269": "flow:inlet_aorta_br:RCR_aorta_br", + "2270": "flow:inlet_aorta_br:RCR_aorta_br", + "2271": "flow:inlet_aorta_br:RCR_aorta_br", + "2272": "flow:inlet_aorta_br:RCR_aorta_br", + "2273": "flow:inlet_aorta_br:RCR_aorta_br", + "2274": "flow:inlet_aorta_br:RCR_aorta_br", + "2275": "flow:inlet_aorta_br:RCR_aorta_br", + "2276": "flow:inlet_aorta_br:RCR_aorta_br", + "2277": "flow:inlet_aorta_br:RCR_aorta_br", + "2278": "flow:inlet_aorta_br:RCR_aorta_br", + "2279": "flow:inlet_aorta_br:RCR_aorta_br", + "2280": "flow:inlet_aorta_br:RCR_aorta_br", + "2281": "flow:inlet_aorta_br:RCR_aorta_br", + "2282": "flow:inlet_aorta_br:RCR_aorta_br", + "2283": "flow:inlet_aorta_br:RCR_aorta_br", + "2284": "flow:inlet_aorta_br:RCR_aorta_br", + "2285": "flow:inlet_aorta_br:RCR_aorta_br", + "2286": "flow:inlet_aorta_br:RCR_aorta_br", + "2287": "flow:inlet_aorta_br:RCR_aorta_br", + "2288": "flow:inlet_aorta_br:RCR_aorta_br", + "2289": "flow:inlet_aorta_br:RCR_aorta_br", + "2290": "flow:inlet_aorta_br:RCR_aorta_br", + "2291": "flow:inlet_aorta_br:RCR_aorta_br", + "2292": "flow:inlet_aorta_br:RCR_aorta_br", + "2293": "flow:inlet_aorta_br:RCR_aorta_br", + "2294": "flow:inlet_aorta_br:RCR_aorta_br", + "2295": "flow:inlet_aorta_br:RCR_aorta_br", + "2296": "flow:inlet_aorta_br:RCR_aorta_br", + "2297": "flow:inlet_aorta_br:RCR_aorta_br", + "2298": "flow:inlet_aorta_br:RCR_aorta_br", + "2299": "flow:inlet_aorta_br:RCR_aorta_br", + "2300": "flow:inlet_aorta_br:RCR_aorta_br", + "2301": "flow:inlet_aorta_br:RCR_aorta_br", + "2302": "flow:inlet_aorta_br:RCR_aorta_br", + "2303": "flow:inlet_aorta_br:RCR_aorta_br", + "2304": "flow:inlet_aorta_br:RCR_aorta_br", + "2305": "flow:inlet_aorta_br:RCR_aorta_br", + "2306": "flow:inlet_aorta_br:RCR_aorta_br", + "2307": "flow:inlet_aorta_br:RCR_aorta_br", + "2308": "flow:inlet_aorta_br:RCR_aorta_br", + "2309": "flow:inlet_aorta_br:RCR_aorta_br", + "2310": "flow:inlet_aorta_br:RCR_aorta_br", + "2311": "flow:inlet_aorta_br:RCR_aorta_br", + "2312": "flow:inlet_aorta_br:RCR_aorta_br", + "2313": "flow:inlet_aorta_br:RCR_aorta_br", + "2314": "flow:inlet_aorta_br:RCR_aorta_br", + "2315": "flow:inlet_aorta_br:RCR_aorta_br", + "2316": "flow:inlet_aorta_br:RCR_aorta_br", + "2317": "flow:inlet_aorta_br:RCR_aorta_br", + "2318": "flow:inlet_aorta_br:RCR_aorta_br", + "2319": "flow:inlet_aorta_br:RCR_aorta_br", + "2320": "flow:inlet_aorta_br:RCR_aorta_br", + "2321": "flow:inlet_aorta_br:RCR_aorta_br", + "2322": "flow:inlet_aorta_br:RCR_aorta_br", + "2323": "flow:inlet_aorta_br:RCR_aorta_br", + "2324": "flow:inlet_aorta_br:RCR_aorta_br", + "2325": "flow:inlet_aorta_br:RCR_aorta_br", + "2326": "flow:inlet_aorta_br:RCR_aorta_br", + "2327": "flow:inlet_aorta_br:RCR_aorta_br", + "2328": "flow:inlet_aorta_br:RCR_aorta_br", + "2329": "flow:inlet_aorta_br:RCR_aorta_br", + "2330": "flow:inlet_aorta_br:RCR_aorta_br", + "2331": "flow:inlet_aorta_br:RCR_aorta_br", + "2332": "flow:inlet_aorta_br:RCR_aorta_br", + "2333": "flow:inlet_aorta_br:RCR_aorta_br", + "2334": "flow:inlet_aorta_br:RCR_aorta_br", + "2335": "flow:inlet_aorta_br:RCR_aorta_br", + "2336": "flow:inlet_aorta_br:RCR_aorta_br", + "2337": "flow:inlet_aorta_br:RCR_aorta_br", + "2338": "flow:inlet_aorta_br:RCR_aorta_br", + "2339": "flow:inlet_aorta_br:RCR_aorta_br", + "2340": "flow:inlet_aorta_br:RCR_aorta_br", + "2341": "flow:inlet_aorta_br:RCR_aorta_br", + "2342": "flow:inlet_aorta_br:RCR_aorta_br", + "2343": "flow:inlet_aorta_br:RCR_aorta_br", + "2344": "flow:inlet_aorta_br:RCR_aorta_br", + "2345": "flow:inlet_aorta_br:RCR_aorta_br", + "2346": "flow:inlet_aorta_br:RCR_aorta_br", + "2347": "flow:inlet_aorta_br:RCR_aorta_br", + "2348": "flow:inlet_aorta_br:RCR_aorta_br", + "2349": "flow:inlet_aorta_br:RCR_aorta_br", + "2350": "flow:inlet_aorta_br:RCR_aorta_br", + "2351": "flow:inlet_aorta_br:RCR_aorta_br", + "2352": "flow:inlet_aorta_br:RCR_aorta_br", + "2353": "flow:inlet_aorta_br:RCR_aorta_br", + "2354": "flow:inlet_aorta_br:RCR_aorta_br", + "2355": "flow:inlet_aorta_br:RCR_aorta_br", + "2356": "flow:inlet_aorta_br:RCR_aorta_br", + "2357": "flow:inlet_aorta_br:RCR_aorta_br", + "2358": "flow:inlet_aorta_br:RCR_aorta_br", + "2359": "flow:inlet_aorta_br:RCR_aorta_br", + "2360": "flow:inlet_aorta_br:RCR_aorta_br", + "2361": "flow:inlet_aorta_br:RCR_aorta_br", + "2362": "flow:inlet_aorta_br:RCR_aorta_br", + "2363": "flow:inlet_aorta_br:RCR_aorta_br", + "2364": "flow:inlet_aorta_br:RCR_aorta_br", + "2365": "flow:inlet_aorta_br:RCR_aorta_br", + "2366": "flow:inlet_aorta_br:RCR_aorta_br", + "2367": "flow:inlet_aorta_br:RCR_aorta_br", + "2368": "flow:inlet_aorta_br:RCR_aorta_br", + "2369": "flow:inlet_aorta_br:RCR_aorta_br", + "2370": "flow:inlet_aorta_br:RCR_aorta_br", + "2371": "flow:inlet_aorta_br:RCR_aorta_br", + "2372": "flow:inlet_aorta_br:RCR_aorta_br", + "2373": "flow:inlet_aorta_br:RCR_aorta_br", + "2374": "flow:inlet_aorta_br:RCR_aorta_br", + "2375": "flow:inlet_aorta_br:RCR_aorta_br", + "2376": "flow:inlet_aorta_br:RCR_aorta_br", + "2377": "flow:inlet_aorta_br:RCR_aorta_br", + "2378": "flow:inlet_aorta_br:RCR_aorta_br", + "2379": "flow:inlet_aorta_br:RCR_aorta_br", + "2380": "flow:inlet_aorta_br:RCR_aorta_br", + "2381": "flow:inlet_aorta_br:RCR_aorta_br", + "2382": "flow:inlet_aorta_br:RCR_aorta_br", + "2383": "flow:inlet_aorta_br:RCR_aorta_br", + "2384": "flow:inlet_aorta_br:RCR_aorta_br", + "2385": "flow:inlet_aorta_br:RCR_aorta_br", + "2386": "flow:inlet_aorta_br:RCR_aorta_br", + "2387": "flow:inlet_aorta_br:RCR_aorta_br", + "2388": "flow:inlet_aorta_br:RCR_aorta_br", + "2389": "flow:inlet_aorta_br:RCR_aorta_br", + "2390": "flow:inlet_aorta_br:RCR_aorta_br", + "2391": "flow:inlet_aorta_br:RCR_aorta_br", + "2392": "flow:inlet_aorta_br:RCR_aorta_br", + "2393": "flow:inlet_aorta_br:RCR_aorta_br", + "2394": "flow:inlet_aorta_br:RCR_aorta_br", + "2395": "flow:inlet_aorta_br:RCR_aorta_br", + "2396": "flow:inlet_aorta_br:RCR_aorta_br", + "2397": "flow:inlet_aorta_br:RCR_aorta_br", + "2398": "flow:inlet_aorta_br:RCR_aorta_br", + "2399": "flow:inlet_aorta_br:RCR_aorta_br", + "2400": "flow:inlet_aorta_br:RCR_aorta_br", + "2401": "flow:inlet_aorta_br:RCR_aorta_br", + "2402": "flow:inlet_aorta_br:RCR_aorta_br", + "2403": "flow:inlet_aorta_br:RCR_aorta_br", + "2404": "flow:inlet_aorta_br:RCR_aorta_br", + "2405": "flow:inlet_aorta_br:RCR_aorta_br", + "2406": "flow:inlet_aorta_br:RCR_aorta_br", + "2407": "flow:inlet_aorta_br:RCR_aorta_br", + "2408": "flow:inlet_aorta_br:RCR_aorta_br", + "2409": "flow:inlet_aorta_br:RCR_aorta_br", + "2410": "flow:inlet_aorta_br:RCR_aorta_br", + "2411": "flow:inlet_aorta_br:RCR_aorta_br", + "2412": "flow:inlet_aorta_br:RCR_aorta_br", + "2413": "flow:inlet_aorta_br:RCR_aorta_br", + "2414": "flow:inlet_aorta_br:RCR_aorta_br", + "2415": "flow:inlet_aorta_br:RCR_aorta_br", + "2416": "flow:inlet_aorta_br:RCR_aorta_br", + "2417": "flow:inlet_aorta_br:RCR_aorta_br", + "2418": "flow:inlet_aorta_br:RCR_aorta_br", + "2419": "flow:inlet_aorta_br:RCR_aorta_br", + "2420": "flow:inlet_aorta_br:RCR_aorta_br", + "2421": "flow:inlet_aorta_br:RCR_aorta_br", + "2422": "flow:inlet_aorta_br:RCR_aorta_br", + "2423": "flow:inlet_aorta_br:RCR_aorta_br", + "2424": "flow:inlet_aorta_br:RCR_aorta_br", + "2425": "flow:inlet_aorta_br:RCR_aorta_br", + "2426": "flow:inlet_aorta_br:RCR_aorta_br", + "2427": "flow:inlet_aorta_br:RCR_aorta_br", + "2428": "flow:inlet_aorta_br:RCR_aorta_br", + "2429": "flow:inlet_aorta_br:RCR_aorta_br", + "2430": "flow:inlet_aorta_br:RCR_aorta_br", + "2431": "flow:inlet_aorta_br:RCR_aorta_br", + "2432": "flow:inlet_aorta_br:RCR_aorta_br", + "2433": "flow:inlet_aorta_br:RCR_aorta_br", + "2434": "flow:inlet_aorta_br:RCR_aorta_br", + "2435": "flow:inlet_aorta_br:RCR_aorta_br", + "2436": "flow:inlet_aorta_br:RCR_aorta_br", + "2437": "flow:inlet_aorta_br:RCR_aorta_br", + "2438": "flow:inlet_aorta_br:RCR_aorta_br", + "2439": "flow:inlet_aorta_br:RCR_aorta_br", + "2440": "flow:inlet_aorta_br:RCR_aorta_br", + "2441": "flow:inlet_aorta_br:RCR_aorta_br", + "2442": "flow:inlet_aorta_br:RCR_aorta_br", + "2443": "flow:inlet_aorta_br:RCR_aorta_br", + "2444": "flow:inlet_aorta_br:RCR_aorta_br", + "2445": "flow:inlet_aorta_br:RCR_aorta_br", + "2446": "flow:inlet_aorta_br:RCR_aorta_br", + "2447": "flow:inlet_aorta_br:RCR_aorta_br", + "2448": "flow:inlet_aorta_br:RCR_aorta_br", + "2449": "flow:inlet_aorta_br:RCR_aorta_br", + "2450": "flow:inlet_aorta_br:RCR_aorta_br", + "2451": "flow:inlet_aorta_br:RCR_aorta_br", + "2452": "flow:inlet_aorta_br:RCR_aorta_br", + "2453": "flow:inlet_aorta_br:RCR_aorta_br", + "2454": "flow:inlet_aorta_br:RCR_aorta_br", + "2455": "flow:inlet_aorta_br:RCR_aorta_br", + "2456": "flow:inlet_aorta_br:RCR_aorta_br", + "2457": "flow:inlet_aorta_br:RCR_aorta_br", + "2458": "flow:inlet_aorta_br:RCR_aorta_br", + "2459": "flow:inlet_aorta_br:RCR_aorta_br", + "2460": "flow:inlet_aorta_br:RCR_aorta_br", + "2461": "flow:inlet_aorta_br:RCR_aorta_br", + "2462": "flow:inlet_aorta_br:RCR_aorta_br", + "2463": "flow:inlet_aorta_br:RCR_aorta_br", + "2464": "flow:inlet_aorta_br:RCR_aorta_br", + "2465": "flow:inlet_aorta_br:RCR_aorta_br", + "2466": "flow:inlet_aorta_br:RCR_aorta_br", + "2467": "flow:inlet_aorta_br:RCR_aorta_br", + "2468": "flow:inlet_aorta_br:RCR_aorta_br", + "2469": "flow:inlet_aorta_br:RCR_aorta_br", + "2470": "flow:inlet_aorta_br:RCR_aorta_br", + "2471": "flow:inlet_aorta_br:RCR_aorta_br", + "2472": "flow:inlet_aorta_br:RCR_aorta_br", + "2473": "flow:inlet_aorta_br:RCR_aorta_br", + "2474": "flow:inlet_aorta_br:RCR_aorta_br", + "2475": "flow:inlet_aorta_br:RCR_aorta_br", + "2476": "flow:inlet_aorta_br:RCR_aorta_br", + "2477": "flow:inlet_aorta_br:RCR_aorta_br", + "2478": "flow:inlet_aorta_br:RCR_aorta_br", + "2479": "flow:inlet_aorta_br:RCR_aorta_br", + "2480": "flow:inlet_aorta_br:RCR_aorta_br", + "2481": "flow:inlet_aorta_br:RCR_aorta_br", + "2482": "flow:inlet_aorta_br:RCR_aorta_br", + "2483": "flow:inlet_aorta_br:RCR_aorta_br", + "2484": "flow:inlet_aorta_br:RCR_aorta_br", + "2485": "flow:inlet_aorta_br:RCR_aorta_br", + "2486": "flow:inlet_aorta_br:RCR_aorta_br", + "2487": "flow:inlet_aorta_br:RCR_aorta_br", + "2488": "flow:inlet_aorta_br:RCR_aorta_br", + "2489": "flow:inlet_aorta_br:RCR_aorta_br", + "2490": "flow:inlet_aorta_br:RCR_aorta_br", + "2491": "flow:inlet_aorta_br:RCR_aorta_br", + "2492": "flow:inlet_aorta_br:RCR_aorta_br", + "2493": "flow:inlet_aorta_br:RCR_aorta_br", + "2494": "flow:inlet_aorta_br:RCR_aorta_br", + "2495": "flow:inlet_aorta_br:RCR_aorta_br", + "2496": "flow:inlet_aorta_br:RCR_aorta_br", + "2497": "flow:inlet_aorta_br:RCR_aorta_br", + "2498": "flow:inlet_aorta_br:RCR_aorta_br", + "2499": "flow:inlet_aorta_br:RCR_aorta_br", + "2500": "flow:inlet_aorta_br:RCR_aorta_br", + "2501": "flow:inlet_aorta_br:RCR_aorta_br", + "2502": "flow:inlet_aorta_br:RCR_aorta_br", + "2503": "flow:inlet_aorta_br:RCR_aorta_br", + "2504": "flow:inlet_aorta_br:RCR_aorta_br", + "2505": "flow:inlet_aorta_br:RCR_aorta_br", + "2506": "flow:inlet_aorta_br:RCR_aorta_br", + "2507": "flow:inlet_aorta_br:RCR_aorta_br", + "2508": "flow:inlet_aorta_br:RCR_aorta_br", + "2509": "flow:inlet_aorta_br:RCR_aorta_br", + "2510": "flow:inlet_aorta_br:RCR_aorta_br", + "2511": "flow:inlet_aorta_br:RCR_aorta_br", + "2512": "flow:inlet_aorta_br:RCR_aorta_br", + "2513": "flow:inlet_aorta_br:RCR_aorta_br", + "2514": "flow:inlet_aorta_br:RCR_aorta_br", + "2515": "flow:inlet_aorta_br:RCR_aorta_br", + "2516": "flow:inlet_aorta_br:RCR_aorta_br", + "2517": "flow:inlet_aorta_br:RCR_aorta_br", + "2518": "flow:inlet_aorta_br:RCR_aorta_br", + "2519": "flow:inlet_aorta_br:RCR_aorta_br", + "2520": "flow:inlet_aorta_br:RCR_aorta_br", + "2521": "flow:inlet_aorta_br:RCR_aorta_br", + "2522": "flow:inlet_aorta_br:RCR_aorta_br", + "2523": "flow:inlet_aorta_br:RCR_aorta_br", + "2524": "flow:inlet_aorta_br:RCR_aorta_br", + "2525": "flow:inlet_aorta_br:RCR_aorta_br", + "2526": "flow:inlet_aorta_br:RCR_aorta_br", + "2527": "flow:inlet_aorta_br:RCR_aorta_br", + "2528": "flow:inlet_aorta_br:RCR_aorta_br", + "2529": "flow:inlet_aorta_br:RCR_aorta_br", + "2530": "flow:inlet_aorta_br:RCR_aorta_br", + "2531": "flow:inlet_aorta_br:RCR_aorta_br", + "2532": "flow:inlet_aorta_br:RCR_aorta_br", + "2533": "flow:inlet_aorta_br:RCR_aorta_br", + "2534": "flow:inlet_aorta_br:RCR_aorta_br", + "2535": "flow:inlet_aorta_br:RCR_aorta_br", + "2536": "flow:inlet_aorta_br:RCR_aorta_br", + "2537": "flow:inlet_aorta_br:RCR_aorta_br", + "2538": "flow:inlet_aorta_br:RCR_aorta_br", + "2539": "flow:inlet_aorta_br:RCR_aorta_br", + "2540": "flow:inlet_aorta_br:RCR_aorta_br", + "2541": "flow:inlet_aorta_br:RCR_aorta_br", + "2542": "flow:inlet_aorta_br:RCR_aorta_br", + "2543": "flow:inlet_aorta_br:RCR_aorta_br", + "2544": "flow:inlet_aorta_br:RCR_aorta_br", + "2545": "flow:inlet_aorta_br:RCR_aorta_br", + "2546": "flow:inlet_aorta_br:RCR_aorta_br", + "2547": "flow:inlet_aorta_br:RCR_aorta_br", + "2548": "flow:inlet_aorta_br:RCR_aorta_br", + "2549": "flow:inlet_aorta_br:RCR_aorta_br", + "2550": "flow:inlet_aorta_br:RCR_aorta_br", + "2551": "flow:inlet_aorta_br:RCR_aorta_br", + "2552": "flow:inlet_aorta_br:RCR_aorta_br", + "2553": "flow:inlet_aorta_br:RCR_aorta_br", + "2554": "flow:inlet_aorta_br:RCR_aorta_br", + "2555": "flow:inlet_aorta_br:RCR_aorta_br", + "2556": "flow:inlet_aorta_br:RCR_aorta_br", + "2557": "flow:inlet_aorta_br:RCR_aorta_br", + "2558": "flow:inlet_aorta_br:RCR_aorta_br", + "2559": "flow:inlet_aorta_br:RCR_aorta_br", + "2560": "flow:inlet_aorta_br:RCR_aorta_br", + "2561": "flow:inlet_aorta_br:RCR_aorta_br", + "2562": "flow:inlet_aorta_br:RCR_aorta_br", + "2563": "flow:inlet_aorta_br:RCR_aorta_br", + "2564": "flow:inlet_aorta_br:RCR_aorta_br", + "2565": "flow:inlet_aorta_br:RCR_aorta_br", + "2566": "flow:inlet_aorta_br:RCR_aorta_br", + "2567": "flow:inlet_aorta_br:RCR_aorta_br", + "2568": "flow:inlet_aorta_br:RCR_aorta_br", + "2569": "flow:inlet_aorta_br:RCR_aorta_br", + "2570": "flow:inlet_aorta_br:RCR_aorta_br", + "2571": "flow:inlet_aorta_br:RCR_aorta_br", + "2572": "flow:inlet_aorta_br:RCR_aorta_br", + "2573": "flow:inlet_aorta_br:RCR_aorta_br", + "2574": "flow:inlet_aorta_br:RCR_aorta_br", + "2575": "flow:inlet_aorta_br:RCR_aorta_br", + "2576": "flow:inlet_aorta_br:RCR_aorta_br", + "2577": "flow:inlet_aorta_br:RCR_aorta_br", + "2578": "flow:inlet_aorta_br:RCR_aorta_br", + "2579": "flow:inlet_aorta_br:RCR_aorta_br", + "2580": "flow:inlet_aorta_br:RCR_aorta_br", + "2581": "flow:inlet_aorta_br:RCR_aorta_br", + "2582": "flow:inlet_aorta_br:RCR_aorta_br", + "2583": "flow:inlet_aorta_br:RCR_aorta_br", + "2584": "flow:inlet_aorta_br:RCR_aorta_br", + "2585": "flow:inlet_aorta_br:RCR_aorta_br", + "2586": "flow:inlet_aorta_br:RCR_aorta_br", + "2587": "flow:inlet_aorta_br:RCR_aorta_br", + "2588": "flow:inlet_aorta_br:RCR_aorta_br", + "2589": "flow:inlet_aorta_br:RCR_aorta_br", + "2590": "flow:inlet_aorta_br:RCR_aorta_br", + "2591": "flow:inlet_aorta_br:RCR_aorta_br", + "2592": "flow:inlet_aorta_br:RCR_aorta_br", + "2593": "flow:inlet_aorta_br:RCR_aorta_br", + "2594": "flow:inlet_aorta_br:RCR_aorta_br", + "2595": "flow:inlet_aorta_br:RCR_aorta_br", + "2596": "flow:inlet_aorta_br:RCR_aorta_br", + "2597": "flow:inlet_aorta_br:RCR_aorta_br", + "2598": "flow:inlet_aorta_br:RCR_aorta_br", + "2599": "flow:inlet_aorta_br:RCR_aorta_br", + "2600": "flow:inlet_aorta_br:RCR_aorta_br", + "2601": "flow:inlet_aorta_br:RCR_aorta_br", + "2602": "flow:inlet_aorta_br:RCR_aorta_br", + "2603": "flow:inlet_aorta_br:RCR_aorta_br", + "2604": "flow:inlet_aorta_br:RCR_aorta_br", + "2605": "flow:inlet_aorta_br:RCR_aorta_br", + "2606": "flow:inlet_aorta_br:RCR_aorta_br", + "2607": "flow:inlet_aorta_br:RCR_aorta_br", + "2608": "flow:inlet_aorta_br:RCR_aorta_br", + "2609": "flow:inlet_aorta_br:RCR_aorta_br", + "2610": "flow:inlet_aorta_br:RCR_aorta_br", + "2611": "flow:inlet_aorta_br:RCR_aorta_br", + "2612": "flow:inlet_aorta_br:RCR_aorta_br", + "2613": "flow:inlet_aorta_br:RCR_aorta_br", + "2614": "flow:inlet_aorta_br:RCR_aorta_br", + "2615": "flow:inlet_aorta_br:RCR_aorta_br", + "2616": "flow:inlet_aorta_br:RCR_aorta_br", + "2617": "flow:inlet_aorta_br:RCR_aorta_br", + "2618": "flow:inlet_aorta_br:RCR_aorta_br", + "2619": "flow:inlet_aorta_br:RCR_aorta_br", + "2620": "flow:inlet_aorta_br:RCR_aorta_br", + "2621": "flow:inlet_aorta_br:RCR_aorta_br", + "2622": "flow:inlet_aorta_br:RCR_aorta_br", + "2623": "flow:inlet_aorta_br:RCR_aorta_br", + "2624": "flow:inlet_aorta_br:RCR_aorta_br", + "2625": "flow:inlet_aorta_br:RCR_aorta_br", + "2626": "flow:inlet_aorta_br:RCR_aorta_br", + "2627": "flow:inlet_aorta_br:RCR_aorta_br", + "2628": "flow:inlet_aorta_br:RCR_aorta_br", + "2629": "flow:inlet_aorta_br:RCR_aorta_br", + "2630": "flow:inlet_aorta_br:RCR_aorta_br", + "2631": "flow:inlet_aorta_br:RCR_aorta_br", + "2632": "flow:inlet_aorta_br:RCR_aorta_br", + "2633": "flow:inlet_aorta_br:RCR_aorta_br", + "2634": "flow:inlet_aorta_br:RCR_aorta_br", + "2635": "flow:inlet_aorta_br:RCR_aorta_br", + "2636": "flow:inlet_aorta_br:RCR_aorta_br", + "2637": "flow:inlet_aorta_br:RCR_aorta_br", + "2638": "flow:inlet_aorta_br:RCR_aorta_br", + "2639": "flow:inlet_aorta_br:RCR_aorta_br", + "2640": "flow:inlet_aorta_br:RCR_aorta_br", + "2641": "flow:inlet_aorta_br:RCR_aorta_br", + "2642": "flow:inlet_aorta_br:RCR_aorta_br", + "2643": "flow:inlet_aorta_br:RCR_aorta_br", + "2644": "flow:inlet_aorta_br:RCR_aorta_br", + "2645": "flow:inlet_aorta_br:RCR_aorta_br", + "2646": "flow:inlet_aorta_br:RCR_aorta_br", + "2647": "flow:inlet_aorta_br:RCR_aorta_br", + "2648": "flow:inlet_aorta_br:RCR_aorta_br", + "2649": "flow:inlet_aorta_br:RCR_aorta_br", + "2650": "flow:inlet_aorta_br:RCR_aorta_br", + "2651": "flow:inlet_aorta_br:RCR_aorta_br", + "2652": "flow:inlet_aorta_br:RCR_aorta_br", + "2653": "flow:inlet_aorta_br:RCR_aorta_br", + "2654": "flow:inlet_aorta_br:RCR_aorta_br", + "2655": "flow:inlet_aorta_br:RCR_aorta_br", + "2656": "flow:inlet_aorta_br:RCR_aorta_br", + "2657": "flow:inlet_aorta_br:RCR_aorta_br", + "2658": "flow:inlet_aorta_br:RCR_aorta_br", + "2659": "flow:inlet_aorta_br:RCR_aorta_br", + "2660": "flow:inlet_aorta_br:RCR_aorta_br", + "2661": "flow:inlet_aorta_br:RCR_aorta_br", + "2662": "flow:inlet_aorta_br:RCR_aorta_br", + "2663": "flow:inlet_aorta_br:RCR_aorta_br", + "2664": "flow:inlet_aorta_br:RCR_aorta_br", + "2665": "flow:inlet_aorta_br:RCR_aorta_br", + "2666": "flow:inlet_aorta_br:RCR_aorta_br", + "2667": "flow:inlet_aorta_br:RCR_aorta_br", + "2668": "flow:inlet_aorta_br:RCR_aorta_br", + "2669": "flow:inlet_aorta_br:RCR_aorta_br", + "2670": "flow:inlet_aorta_br:RCR_aorta_br", + "2671": "flow:inlet_aorta_br:RCR_aorta_br", + "2672": "flow:inlet_aorta_br:RCR_aorta_br", + "2673": "flow:inlet_aorta_br:RCR_aorta_br", + "2674": "flow:inlet_aorta_br:RCR_aorta_br", + "2675": "flow:inlet_aorta_br:RCR_aorta_br", + "2676": "flow:inlet_aorta_br:RCR_aorta_br", + "2677": "flow:inlet_aorta_br:RCR_aorta_br", + "2678": "flow:inlet_aorta_br:RCR_aorta_br", + "2679": "flow:inlet_aorta_br:RCR_aorta_br", + "2680": "flow:inlet_aorta_br:RCR_aorta_br", + "2681": "flow:inlet_aorta_br:RCR_aorta_br", + "2682": "flow:inlet_aorta_br:RCR_aorta_br", + "2683": "flow:inlet_aorta_br:RCR_aorta_br", + "2684": "flow:inlet_aorta_br:RCR_aorta_br", + "2685": "flow:inlet_aorta_br:RCR_aorta_br", + "2686": "flow:inlet_aorta_br:RCR_aorta_br", + "2687": "flow:inlet_aorta_br:RCR_aorta_br", + "2688": "flow:inlet_aorta_br:RCR_aorta_br", + "2689": "flow:inlet_aorta_br:RCR_aorta_br", + "2690": "flow:inlet_aorta_br:RCR_aorta_br", + "2691": "flow:inlet_aorta_br:RCR_aorta_br", + "2692": "flow:inlet_aorta_br:RCR_aorta_br", + "2693": "flow:inlet_aorta_br:RCR_aorta_br", + "2694": "flow:inlet_aorta_br:RCR_aorta_br", + "2695": "flow:inlet_aorta_br:RCR_aorta_br", + "2696": "flow:inlet_aorta_br:RCR_aorta_br", + "2697": "flow:inlet_aorta_br:RCR_aorta_br", + "2698": "flow:inlet_aorta_br:RCR_aorta_br", + "2699": "flow:inlet_aorta_br:RCR_aorta_br", + "2700": "flow:inlet_aorta_br:RCR_aorta_br", + "2701": "flow:inlet_aorta_br:RCR_aorta_br", + "2702": "flow:inlet_aorta_br:RCR_aorta_br", + "2703": "flow:inlet_aorta_br:RCR_aorta_br", + "2704": "flow:inlet_aorta_br:RCR_aorta_br", + "2705": "flow:inlet_aorta_br:RCR_aorta_br", + "2706": "flow:inlet_aorta_br:RCR_aorta_br", + "2707": "flow:inlet_aorta_br:RCR_aorta_br", + "2708": "flow:inlet_aorta_br:RCR_aorta_br", + "2709": "flow:inlet_aorta_br:RCR_aorta_br", + "2710": "flow:inlet_aorta_br:RCR_aorta_br", + "2711": "flow:inlet_aorta_br:RCR_aorta_br", + "2712": "flow:inlet_aorta_br:RCR_aorta_br", + "2713": "flow:inlet_aorta_br:RCR_aorta_br", + "2714": "flow:inlet_aorta_br:RCR_aorta_br", + "2715": "flow:inlet_aorta_br:RCR_aorta_br", + "2716": "flow:inlet_aorta_br:RCR_aorta_br", + "2717": "flow:inlet_aorta_br:RCR_aorta_br", + "2718": "flow:inlet_aorta_br:RCR_aorta_br", + "2719": "flow:inlet_aorta_br:RCR_aorta_br", + "2720": "flow:inlet_aorta_br:RCR_aorta_br", + "2721": "flow:inlet_aorta_br:RCR_aorta_br", + "2722": "flow:inlet_aorta_br:RCR_aorta_br", + "2723": "flow:inlet_aorta_br:RCR_aorta_br", + "2724": "flow:inlet_aorta_br:RCR_aorta_br", + "2725": "flow:inlet_aorta_br:RCR_aorta_br", + "2726": "flow:inlet_aorta_br:RCR_aorta_br", + "2727": "flow:inlet_aorta_br:RCR_aorta_br", + "2728": "flow:inlet_aorta_br:RCR_aorta_br", + "2729": "flow:inlet_aorta_br:RCR_aorta_br", + "2730": "flow:inlet_aorta_br:RCR_aorta_br", + "2731": "flow:inlet_aorta_br:RCR_aorta_br", + "2732": "flow:inlet_aorta_br:RCR_aorta_br", + "2733": "flow:inlet_aorta_br:RCR_aorta_br", + "2734": "flow:inlet_aorta_br:RCR_aorta_br", + "2735": "flow:inlet_aorta_br:RCR_aorta_br", + "2736": "flow:inlet_aorta_br:RCR_aorta_br", + "2737": "flow:inlet_aorta_br:RCR_aorta_br", + "2738": "flow:inlet_aorta_br:RCR_aorta_br", + "2739": "flow:inlet_aorta_br:RCR_aorta_br", + "2740": "flow:inlet_aorta_br:RCR_aorta_br", + "2741": "flow:inlet_aorta_br:RCR_aorta_br", + "2742": "flow:inlet_aorta_br:RCR_aorta_br", + "2743": "flow:inlet_aorta_br:RCR_aorta_br", + "2744": "flow:inlet_aorta_br:RCR_aorta_br", + "2745": "flow:inlet_aorta_br:RCR_aorta_br", + "2746": "flow:inlet_aorta_br:RCR_aorta_br", + "2747": "flow:inlet_aorta_br:RCR_aorta_br", + "2748": "flow:inlet_aorta_br:RCR_aorta_br", + "2749": "flow:inlet_aorta_br:RCR_aorta_br", + "2750": "flow:inlet_aorta_br:RCR_aorta_br", + "2751": "flow:inlet_aorta_br:RCR_aorta_br", + "2752": "flow:inlet_aorta_br:RCR_aorta_br", + "2753": "flow:inlet_aorta_br:RCR_aorta_br", + "2754": "flow:inlet_aorta_br:RCR_aorta_br", + "2755": "flow:inlet_aorta_br:RCR_aorta_br", + "2756": "flow:inlet_aorta_br:RCR_aorta_br", + "2757": "flow:inlet_aorta_br:RCR_aorta_br", + "2758": "flow:inlet_aorta_br:RCR_aorta_br", + "2759": "flow:inlet_aorta_br:RCR_aorta_br", + "2760": "flow:inlet_aorta_br:RCR_aorta_br", + "2761": "flow:inlet_aorta_br:RCR_aorta_br", + "2762": "flow:inlet_aorta_br:RCR_aorta_br", + "2763": "flow:inlet_aorta_br:RCR_aorta_br", + "2764": "flow:inlet_aorta_br:RCR_aorta_br", + "2765": "flow:inlet_aorta_br:RCR_aorta_br", + "2766": "flow:inlet_aorta_br:RCR_aorta_br", + "2767": "flow:inlet_aorta_br:RCR_aorta_br", + "2768": "flow:inlet_aorta_br:RCR_aorta_br", + "2769": "flow:inlet_aorta_br:RCR_aorta_br", + "2770": "flow:inlet_aorta_br:RCR_aorta_br", + "2771": "flow:inlet_aorta_br:RCR_aorta_br", + "2772": "flow:inlet_aorta_br:RCR_aorta_br", + "2773": "flow:inlet_aorta_br:RCR_aorta_br", + "2774": "flow:inlet_aorta_br:RCR_aorta_br", + "2775": "flow:inlet_aorta_br:RCR_aorta_br", + "2776": "flow:inlet_aorta_br:RCR_aorta_br", + "2777": "flow:inlet_aorta_br:RCR_aorta_br", + "2778": "flow:inlet_aorta_br:RCR_aorta_br", + "2779": "flow:inlet_aorta_br:RCR_aorta_br", + "2780": "flow:inlet_aorta_br:RCR_aorta_br", + "2781": "flow:inlet_aorta_br:RCR_aorta_br", + "2782": "flow:inlet_aorta_br:RCR_aorta_br", + "2783": "flow:inlet_aorta_br:RCR_aorta_br", + "2784": "flow:inlet_aorta_br:RCR_aorta_br", + "2785": "flow:inlet_aorta_br:RCR_aorta_br", + "2786": "flow:inlet_aorta_br:RCR_aorta_br", + "2787": "flow:inlet_aorta_br:RCR_aorta_br", + "2788": "flow:inlet_aorta_br:RCR_aorta_br", + "2789": "flow:inlet_aorta_br:RCR_aorta_br", + "2790": "flow:inlet_aorta_br:RCR_aorta_br", + "2791": "flow:inlet_aorta_br:RCR_aorta_br", + "2792": "flow:inlet_aorta_br:RCR_aorta_br", + "2793": "flow:inlet_aorta_br:RCR_aorta_br", + "2794": "flow:inlet_aorta_br:RCR_aorta_br", + "2795": "flow:inlet_aorta_br:RCR_aorta_br", + "2796": "flow:inlet_aorta_br:RCR_aorta_br", + "2797": "flow:inlet_aorta_br:RCR_aorta_br", + "2798": "flow:inlet_aorta_br:RCR_aorta_br", + "2799": "flow:inlet_aorta_br:RCR_aorta_br", + "2800": "flow:inlet_aorta_br:RCR_aorta_br", + "2801": "flow:inlet_aorta_br:RCR_aorta_br", + "2802": "flow:inlet_aorta_br:RCR_aorta_br", + "2803": "flow:inlet_aorta_br:RCR_aorta_br", + "2804": "flow:inlet_aorta_br:RCR_aorta_br", + "2805": "flow:inlet_aorta_br:RCR_aorta_br", + "2806": "flow:inlet_aorta_br:RCR_aorta_br", + "2807": "flow:inlet_aorta_br:RCR_aorta_br", + "2808": "flow:inlet_aorta_br:RCR_aorta_br", + "2809": "flow:inlet_aorta_br:RCR_aorta_br", + "2810": "flow:inlet_aorta_br:RCR_aorta_br", + "2811": "flow:inlet_aorta_br:RCR_aorta_br", + "2812": "flow:inlet_aorta_br:RCR_aorta_br", + "2813": "flow:inlet_aorta_br:RCR_aorta_br", + "2814": "flow:inlet_aorta_br:RCR_aorta_br", + "2815": "flow:inlet_aorta_br:RCR_aorta_br", + "2816": "flow:inlet_aorta_br:RCR_aorta_br", + "2817": "flow:inlet_aorta_br:RCR_aorta_br", + "2818": "flow:inlet_aorta_br:RCR_aorta_br", + "2819": "flow:inlet_aorta_br:RCR_aorta_br", + "2820": "flow:inlet_aorta_br:RCR_aorta_br", + "2821": "flow:inlet_aorta_br:RCR_aorta_br", + "2822": "flow:inlet_aorta_br:RCR_aorta_br", + "2823": "flow:inlet_aorta_br:RCR_aorta_br", + "2824": "flow:inlet_aorta_br:RCR_aorta_br", + "2825": "flow:inlet_aorta_br:RCR_aorta_br", + "2826": "flow:inlet_aorta_br:RCR_aorta_br", + "2827": "flow:inlet_aorta_br:RCR_aorta_br", + "2828": "flow:inlet_aorta_br:RCR_aorta_br", + "2829": "flow:inlet_aorta_br:RCR_aorta_br", + "2830": "flow:inlet_aorta_br:RCR_aorta_br", + "2831": "flow:inlet_aorta_br:RCR_aorta_br", + "2832": "flow:inlet_aorta_br:RCR_aorta_br", + "2833": "flow:inlet_aorta_br:RCR_aorta_br", + "2834": "flow:inlet_aorta_br:RCR_aorta_br", + "2835": "flow:inlet_aorta_br:RCR_aorta_br", + "2836": "flow:inlet_aorta_br:RCR_aorta_br", + "2837": "flow:inlet_aorta_br:RCR_aorta_br", + "2838": "flow:inlet_aorta_br:RCR_aorta_br", + "2839": "flow:inlet_aorta_br:RCR_aorta_br", + "2840": "flow:inlet_aorta_br:RCR_aorta_br", + "2841": "flow:inlet_aorta_br:RCR_aorta_br", + "2842": "flow:inlet_aorta_br:RCR_aorta_br", + "2843": "flow:inlet_aorta_br:RCR_aorta_br", + "2844": "flow:inlet_aorta_br:RCR_aorta_br", + "2845": "flow:inlet_aorta_br:RCR_aorta_br", + "2846": "flow:inlet_aorta_br:RCR_aorta_br", + "2847": "flow:inlet_aorta_br:RCR_aorta_br", + "2848": "flow:inlet_aorta_br:RCR_aorta_br", + "2849": "flow:inlet_aorta_br:RCR_aorta_br", + "2850": "flow:inlet_aorta_br:RCR_aorta_br", + "2851": "flow:inlet_aorta_br:RCR_aorta_br", + "2852": "flow:inlet_aorta_br:RCR_aorta_br", + "2853": "flow:inlet_aorta_br:RCR_aorta_br", + "2854": "flow:inlet_aorta_br:RCR_aorta_br", + "2855": "flow:inlet_aorta_br:RCR_aorta_br", + "2856": "flow:inlet_aorta_br:RCR_aorta_br", + "2857": "flow:inlet_aorta_br:RCR_aorta_br", + "2858": "flow:inlet_aorta_br:RCR_aorta_br", + "2859": "flow:inlet_aorta_br:RCR_aorta_br", + "2860": "flow:inlet_aorta_br:RCR_aorta_br", + "2861": "flow:inlet_aorta_br:RCR_aorta_br", + "2862": "flow:inlet_aorta_br:RCR_aorta_br", + "2863": "flow:inlet_aorta_br:RCR_aorta_br", + "2864": "flow:inlet_aorta_br:RCR_aorta_br", + "2865": "flow:inlet_aorta_br:RCR_aorta_br", + "2866": "flow:inlet_aorta_br:RCR_aorta_br", + "2867": "flow:inlet_aorta_br:RCR_aorta_br", + "2868": "flow:inlet_aorta_br:RCR_aorta_br", + "2869": "flow:inlet_aorta_br:RCR_aorta_br", + "2870": "flow:inlet_aorta_br:RCR_aorta_br", + "2871": "flow:inlet_aorta_br:RCR_aorta_br", + "2872": "flow:inlet_aorta_br:RCR_aorta_br", + "2873": "flow:inlet_aorta_br:RCR_aorta_br", + "2874": "flow:inlet_aorta_br:RCR_aorta_br", + "2875": "flow:inlet_aorta_br:RCR_aorta_br", + "2876": "flow:inlet_aorta_br:RCR_aorta_br", + "2877": "flow:inlet_aorta_br:RCR_aorta_br", + "2878": "flow:inlet_aorta_br:RCR_aorta_br", + "2879": "flow:inlet_aorta_br:RCR_aorta_br", + "2880": "flow:inlet_aorta_br:RCR_aorta_br", + "2881": "flow:inlet_aorta_br:RCR_aorta_br", + "2882": "flow:inlet_aorta_br:RCR_aorta_br", + "2883": "flow:inlet_aorta_br:RCR_aorta_br", + "2884": "flow:inlet_aorta_br:RCR_aorta_br", + "2885": "flow:inlet_aorta_br:RCR_aorta_br", + "2886": "flow:inlet_aorta_br:RCR_aorta_br", + "2887": "flow:inlet_aorta_br:RCR_aorta_br", + "2888": "flow:inlet_aorta_br:RCR_aorta_br", + "2889": "flow:inlet_aorta_br:RCR_aorta_br", + "2890": "flow:inlet_aorta_br:RCR_aorta_br", + "2891": "flow:inlet_aorta_br:RCR_aorta_br", + "2892": "flow:inlet_aorta_br:RCR_aorta_br", + "2893": "flow:inlet_aorta_br:RCR_aorta_br", + "2894": "flow:inlet_aorta_br:RCR_aorta_br", + "2895": "flow:inlet_aorta_br:RCR_aorta_br", + "2896": "flow:inlet_aorta_br:RCR_aorta_br", + "2897": "flow:inlet_aorta_br:RCR_aorta_br", + "2898": "flow:inlet_aorta_br:RCR_aorta_br", + "2899": "flow:inlet_aorta_br:RCR_aorta_br", + "2900": "flow:inlet_aorta_br:RCR_aorta_br", + "2901": "flow:inlet_aorta_br:RCR_aorta_br", + "2902": "flow:inlet_aorta_br:RCR_aorta_br", + "2903": "flow:inlet_aorta_br:RCR_aorta_br", + "2904": "flow:inlet_aorta_br:RCR_aorta_br", + "2905": "flow:inlet_aorta_br:RCR_aorta_br", + "2906": "flow:inlet_aorta_br:RCR_aorta_br", + "2907": "flow:inlet_aorta_br:RCR_aorta_br", + "2908": "flow:inlet_aorta_br:RCR_aorta_br", + "2909": "flow:inlet_aorta_br:RCR_aorta_br", + "2910": "flow:inlet_aorta_br:RCR_aorta_br", + "2911": "flow:inlet_aorta_br:RCR_aorta_br", + "2912": "flow:inlet_aorta_br:RCR_aorta_br", + "2913": "flow:inlet_aorta_br:RCR_aorta_br", + "2914": "flow:inlet_aorta_br:RCR_aorta_br", + "2915": "flow:inlet_aorta_br:RCR_aorta_br", + "2916": "flow:inlet_aorta_br:RCR_aorta_br", + "2917": "flow:inlet_aorta_br:RCR_aorta_br", + "2918": "flow:inlet_aorta_br:RCR_aorta_br", + "2919": "flow:inlet_aorta_br:RCR_aorta_br", + "2920": "flow:inlet_aorta_br:RCR_aorta_br", + "2921": "flow:inlet_aorta_br:RCR_aorta_br", + "2922": "flow:inlet_aorta_br:RCR_aorta_br", + "2923": "flow:inlet_aorta_br:RCR_aorta_br", + "2924": "flow:inlet_aorta_br:RCR_aorta_br", + "2925": "flow:inlet_aorta_br:RCR_aorta_br", + "2926": "flow:inlet_aorta_br:RCR_aorta_br", + "2927": "flow:inlet_aorta_br:RCR_aorta_br", + "2928": "flow:inlet_aorta_br:RCR_aorta_br", + "2929": "flow:inlet_aorta_br:RCR_aorta_br", + "2930": "flow:inlet_aorta_br:RCR_aorta_br", + "2931": "flow:inlet_aorta_br:RCR_aorta_br", + "2932": "flow:inlet_aorta_br:RCR_aorta_br", + "2933": "flow:inlet_aorta_br:RCR_aorta_br", + "2934": "flow:inlet_aorta_br:RCR_aorta_br", + "2935": "flow:inlet_aorta_br:RCR_aorta_br", + "2936": "flow:inlet_aorta_br:RCR_aorta_br", + "2937": "flow:inlet_aorta_br:RCR_aorta_br", + "2938": "flow:inlet_aorta_br:RCR_aorta_br", + "2939": "flow:inlet_aorta_br:RCR_aorta_br", + "2940": "flow:inlet_aorta_br:RCR_aorta_br", + "2941": "flow:inlet_aorta_br:RCR_aorta_br", + "2942": "flow:inlet_aorta_br:RCR_aorta_br", + "2943": "flow:inlet_aorta_br:RCR_aorta_br", + "2944": "flow:inlet_aorta_br:RCR_aorta_br", + "2945": "flow:inlet_aorta_br:RCR_aorta_br", + "2946": "flow:inlet_aorta_br:RCR_aorta_br", + "2947": "flow:inlet_aorta_br:RCR_aorta_br", + "2948": "flow:inlet_aorta_br:RCR_aorta_br", + "2949": "flow:inlet_aorta_br:RCR_aorta_br", + "2950": "flow:inlet_aorta_br:RCR_aorta_br", + "2951": "flow:inlet_aorta_br:RCR_aorta_br", + "2952": "flow:inlet_aorta_br:RCR_aorta_br", + "2953": "flow:inlet_aorta_br:RCR_aorta_br", + "2954": "flow:inlet_aorta_br:RCR_aorta_br", + "2955": "flow:inlet_aorta_br:RCR_aorta_br", + "2956": "flow:inlet_aorta_br:RCR_aorta_br", + "2957": "flow:inlet_aorta_br:RCR_aorta_br", + "2958": "flow:inlet_aorta_br:RCR_aorta_br", + "2959": "flow:inlet_aorta_br:RCR_aorta_br", + "2960": "flow:inlet_aorta_br:RCR_aorta_br", + "2961": "flow:inlet_aorta_br:RCR_aorta_br", + "2962": "flow:inlet_aorta_br:RCR_aorta_br", + "2963": "flow:inlet_aorta_br:RCR_aorta_br", + "2964": "flow:inlet_aorta_br:RCR_aorta_br", + "2965": "flow:inlet_aorta_br:RCR_aorta_br", + "2966": "flow:inlet_aorta_br:RCR_aorta_br", + "2967": "flow:inlet_aorta_br:RCR_aorta_br", + "2968": "flow:inlet_aorta_br:RCR_aorta_br", + "2969": "flow:inlet_aorta_br:RCR_aorta_br", + "2970": "flow:inlet_aorta_br:RCR_aorta_br", + "2971": "flow:inlet_aorta_br:RCR_aorta_br", + "2972": "flow:inlet_aorta_br:RCR_aorta_br", + "2973": "flow:inlet_aorta_br:RCR_aorta_br", + "2974": "flow:inlet_aorta_br:RCR_aorta_br", + "2975": "flow:inlet_aorta_br:RCR_aorta_br", + "2976": "flow:inlet_aorta_br:RCR_aorta_br", + "2977": "flow:inlet_aorta_br:RCR_aorta_br", + "2978": "flow:inlet_aorta_br:RCR_aorta_br", + "2979": "flow:inlet_aorta_br:RCR_aorta_br", + "2980": "flow:inlet_aorta_br:RCR_aorta_br", + "2981": "flow:inlet_aorta_br:RCR_aorta_br", + "2982": "flow:inlet_aorta_br:RCR_aorta_br", + "2983": "flow:inlet_aorta_br:RCR_aorta_br", + "2984": "flow:inlet_aorta_br:RCR_aorta_br", + "2985": "flow:inlet_aorta_br:RCR_aorta_br", + "2986": "flow:inlet_aorta_br:RCR_aorta_br", + "2987": "flow:inlet_aorta_br:RCR_aorta_br", + "2988": "flow:inlet_aorta_br:RCR_aorta_br", + "2989": "flow:inlet_aorta_br:RCR_aorta_br", + "2990": "flow:inlet_aorta_br:RCR_aorta_br", + "2991": "flow:inlet_aorta_br:RCR_aorta_br", + "2992": "flow:inlet_aorta_br:RCR_aorta_br", + "2993": "flow:inlet_aorta_br:RCR_aorta_br", + "2994": "flow:inlet_aorta_br:RCR_aorta_br", + "2995": "flow:inlet_aorta_br:RCR_aorta_br", + "2996": "flow:inlet_aorta_br:RCR_aorta_br", + "2997": "flow:inlet_aorta_br:RCR_aorta_br", + "2998": "flow:inlet_aorta_br:RCR_aorta_br", + "2999": "flow:inlet_aorta_br:RCR_aorta_br", + "3000": "pressure:inlet_aorta_br:RCR_aorta_br", + "3001": "pressure:inlet_aorta_br:RCR_aorta_br", + "3002": "pressure:inlet_aorta_br:RCR_aorta_br", + "3003": "pressure:inlet_aorta_br:RCR_aorta_br", + "3004": "pressure:inlet_aorta_br:RCR_aorta_br", + "3005": "pressure:inlet_aorta_br:RCR_aorta_br", + "3006": "pressure:inlet_aorta_br:RCR_aorta_br", + "3007": "pressure:inlet_aorta_br:RCR_aorta_br", + "3008": "pressure:inlet_aorta_br:RCR_aorta_br", + "3009": "pressure:inlet_aorta_br:RCR_aorta_br", + "3010": "pressure:inlet_aorta_br:RCR_aorta_br", + "3011": "pressure:inlet_aorta_br:RCR_aorta_br", + "3012": "pressure:inlet_aorta_br:RCR_aorta_br", + "3013": "pressure:inlet_aorta_br:RCR_aorta_br", + "3014": "pressure:inlet_aorta_br:RCR_aorta_br", + "3015": "pressure:inlet_aorta_br:RCR_aorta_br", + "3016": "pressure:inlet_aorta_br:RCR_aorta_br", + "3017": "pressure:inlet_aorta_br:RCR_aorta_br", + "3018": "pressure:inlet_aorta_br:RCR_aorta_br", + "3019": "pressure:inlet_aorta_br:RCR_aorta_br", + "3020": "pressure:inlet_aorta_br:RCR_aorta_br", + "3021": "pressure:inlet_aorta_br:RCR_aorta_br", + "3022": "pressure:inlet_aorta_br:RCR_aorta_br", + "3023": "pressure:inlet_aorta_br:RCR_aorta_br", + "3024": "pressure:inlet_aorta_br:RCR_aorta_br", + "3025": "pressure:inlet_aorta_br:RCR_aorta_br", + "3026": "pressure:inlet_aorta_br:RCR_aorta_br", + "3027": "pressure:inlet_aorta_br:RCR_aorta_br", + "3028": "pressure:inlet_aorta_br:RCR_aorta_br", + "3029": "pressure:inlet_aorta_br:RCR_aorta_br", + "3030": "pressure:inlet_aorta_br:RCR_aorta_br", + "3031": "pressure:inlet_aorta_br:RCR_aorta_br", + "3032": "pressure:inlet_aorta_br:RCR_aorta_br", + "3033": "pressure:inlet_aorta_br:RCR_aorta_br", + "3034": "pressure:inlet_aorta_br:RCR_aorta_br", + "3035": "pressure:inlet_aorta_br:RCR_aorta_br", + "3036": "pressure:inlet_aorta_br:RCR_aorta_br", + "3037": "pressure:inlet_aorta_br:RCR_aorta_br", + "3038": "pressure:inlet_aorta_br:RCR_aorta_br", + "3039": "pressure:inlet_aorta_br:RCR_aorta_br", + "3040": "pressure:inlet_aorta_br:RCR_aorta_br", + "3041": "pressure:inlet_aorta_br:RCR_aorta_br", + "3042": "pressure:inlet_aorta_br:RCR_aorta_br", + "3043": "pressure:inlet_aorta_br:RCR_aorta_br", + "3044": "pressure:inlet_aorta_br:RCR_aorta_br", + "3045": "pressure:inlet_aorta_br:RCR_aorta_br", + "3046": "pressure:inlet_aorta_br:RCR_aorta_br", + "3047": "pressure:inlet_aorta_br:RCR_aorta_br", + "3048": "pressure:inlet_aorta_br:RCR_aorta_br", + "3049": "pressure:inlet_aorta_br:RCR_aorta_br", + "3050": "pressure:inlet_aorta_br:RCR_aorta_br", + "3051": "pressure:inlet_aorta_br:RCR_aorta_br", + "3052": "pressure:inlet_aorta_br:RCR_aorta_br", + "3053": "pressure:inlet_aorta_br:RCR_aorta_br", + "3054": "pressure:inlet_aorta_br:RCR_aorta_br", + "3055": "pressure:inlet_aorta_br:RCR_aorta_br", + "3056": "pressure:inlet_aorta_br:RCR_aorta_br", + "3057": "pressure:inlet_aorta_br:RCR_aorta_br", + "3058": "pressure:inlet_aorta_br:RCR_aorta_br", + "3059": "pressure:inlet_aorta_br:RCR_aorta_br", + "3060": "pressure:inlet_aorta_br:RCR_aorta_br", + "3061": "pressure:inlet_aorta_br:RCR_aorta_br", + "3062": "pressure:inlet_aorta_br:RCR_aorta_br", + "3063": "pressure:inlet_aorta_br:RCR_aorta_br", + "3064": "pressure:inlet_aorta_br:RCR_aorta_br", + "3065": "pressure:inlet_aorta_br:RCR_aorta_br", + "3066": "pressure:inlet_aorta_br:RCR_aorta_br", + "3067": "pressure:inlet_aorta_br:RCR_aorta_br", + "3068": "pressure:inlet_aorta_br:RCR_aorta_br", + "3069": "pressure:inlet_aorta_br:RCR_aorta_br", + "3070": "pressure:inlet_aorta_br:RCR_aorta_br", + "3071": "pressure:inlet_aorta_br:RCR_aorta_br", + "3072": "pressure:inlet_aorta_br:RCR_aorta_br", + "3073": "pressure:inlet_aorta_br:RCR_aorta_br", + "3074": "pressure:inlet_aorta_br:RCR_aorta_br", + "3075": "pressure:inlet_aorta_br:RCR_aorta_br", + "3076": "pressure:inlet_aorta_br:RCR_aorta_br", + "3077": "pressure:inlet_aorta_br:RCR_aorta_br", + "3078": "pressure:inlet_aorta_br:RCR_aorta_br", + "3079": "pressure:inlet_aorta_br:RCR_aorta_br", + "3080": "pressure:inlet_aorta_br:RCR_aorta_br", + "3081": "pressure:inlet_aorta_br:RCR_aorta_br", + "3082": "pressure:inlet_aorta_br:RCR_aorta_br", + "3083": "pressure:inlet_aorta_br:RCR_aorta_br", + "3084": "pressure:inlet_aorta_br:RCR_aorta_br", + "3085": "pressure:inlet_aorta_br:RCR_aorta_br", + "3086": "pressure:inlet_aorta_br:RCR_aorta_br", + "3087": "pressure:inlet_aorta_br:RCR_aorta_br", + "3088": "pressure:inlet_aorta_br:RCR_aorta_br", + "3089": "pressure:inlet_aorta_br:RCR_aorta_br", + "3090": "pressure:inlet_aorta_br:RCR_aorta_br", + "3091": "pressure:inlet_aorta_br:RCR_aorta_br", + "3092": "pressure:inlet_aorta_br:RCR_aorta_br", + "3093": "pressure:inlet_aorta_br:RCR_aorta_br", + "3094": "pressure:inlet_aorta_br:RCR_aorta_br", + "3095": "pressure:inlet_aorta_br:RCR_aorta_br", + "3096": "pressure:inlet_aorta_br:RCR_aorta_br", + "3097": "pressure:inlet_aorta_br:RCR_aorta_br", + "3098": "pressure:inlet_aorta_br:RCR_aorta_br", + "3099": "pressure:inlet_aorta_br:RCR_aorta_br", + "3100": "pressure:inlet_aorta_br:RCR_aorta_br", + "3101": "pressure:inlet_aorta_br:RCR_aorta_br", + "3102": "pressure:inlet_aorta_br:RCR_aorta_br", + "3103": "pressure:inlet_aorta_br:RCR_aorta_br", + "3104": "pressure:inlet_aorta_br:RCR_aorta_br", + "3105": "pressure:inlet_aorta_br:RCR_aorta_br", + "3106": "pressure:inlet_aorta_br:RCR_aorta_br", + "3107": "pressure:inlet_aorta_br:RCR_aorta_br", + "3108": "pressure:inlet_aorta_br:RCR_aorta_br", + "3109": "pressure:inlet_aorta_br:RCR_aorta_br", + "3110": "pressure:inlet_aorta_br:RCR_aorta_br", + "3111": "pressure:inlet_aorta_br:RCR_aorta_br", + "3112": "pressure:inlet_aorta_br:RCR_aorta_br", + "3113": "pressure:inlet_aorta_br:RCR_aorta_br", + "3114": "pressure:inlet_aorta_br:RCR_aorta_br", + "3115": "pressure:inlet_aorta_br:RCR_aorta_br", + "3116": "pressure:inlet_aorta_br:RCR_aorta_br", + "3117": "pressure:inlet_aorta_br:RCR_aorta_br", + "3118": "pressure:inlet_aorta_br:RCR_aorta_br", + "3119": "pressure:inlet_aorta_br:RCR_aorta_br", + "3120": "pressure:inlet_aorta_br:RCR_aorta_br", + "3121": "pressure:inlet_aorta_br:RCR_aorta_br", + "3122": "pressure:inlet_aorta_br:RCR_aorta_br", + "3123": "pressure:inlet_aorta_br:RCR_aorta_br", + "3124": "pressure:inlet_aorta_br:RCR_aorta_br", + "3125": "pressure:inlet_aorta_br:RCR_aorta_br", + "3126": "pressure:inlet_aorta_br:RCR_aorta_br", + "3127": "pressure:inlet_aorta_br:RCR_aorta_br", + "3128": "pressure:inlet_aorta_br:RCR_aorta_br", + "3129": "pressure:inlet_aorta_br:RCR_aorta_br", + "3130": "pressure:inlet_aorta_br:RCR_aorta_br", + "3131": "pressure:inlet_aorta_br:RCR_aorta_br", + "3132": "pressure:inlet_aorta_br:RCR_aorta_br", + "3133": "pressure:inlet_aorta_br:RCR_aorta_br", + "3134": "pressure:inlet_aorta_br:RCR_aorta_br", + "3135": "pressure:inlet_aorta_br:RCR_aorta_br", + "3136": "pressure:inlet_aorta_br:RCR_aorta_br", + "3137": "pressure:inlet_aorta_br:RCR_aorta_br", + "3138": "pressure:inlet_aorta_br:RCR_aorta_br", + "3139": "pressure:inlet_aorta_br:RCR_aorta_br", + "3140": "pressure:inlet_aorta_br:RCR_aorta_br", + "3141": "pressure:inlet_aorta_br:RCR_aorta_br", + "3142": "pressure:inlet_aorta_br:RCR_aorta_br", + "3143": "pressure:inlet_aorta_br:RCR_aorta_br", + "3144": "pressure:inlet_aorta_br:RCR_aorta_br", + "3145": "pressure:inlet_aorta_br:RCR_aorta_br", + "3146": "pressure:inlet_aorta_br:RCR_aorta_br", + "3147": "pressure:inlet_aorta_br:RCR_aorta_br", + "3148": "pressure:inlet_aorta_br:RCR_aorta_br", + "3149": "pressure:inlet_aorta_br:RCR_aorta_br", + "3150": "pressure:inlet_aorta_br:RCR_aorta_br", + "3151": "pressure:inlet_aorta_br:RCR_aorta_br", + "3152": "pressure:inlet_aorta_br:RCR_aorta_br", + "3153": "pressure:inlet_aorta_br:RCR_aorta_br", + "3154": "pressure:inlet_aorta_br:RCR_aorta_br", + "3155": "pressure:inlet_aorta_br:RCR_aorta_br", + "3156": "pressure:inlet_aorta_br:RCR_aorta_br", + "3157": "pressure:inlet_aorta_br:RCR_aorta_br", + "3158": "pressure:inlet_aorta_br:RCR_aorta_br", + "3159": "pressure:inlet_aorta_br:RCR_aorta_br", + "3160": "pressure:inlet_aorta_br:RCR_aorta_br", + "3161": "pressure:inlet_aorta_br:RCR_aorta_br", + "3162": "pressure:inlet_aorta_br:RCR_aorta_br", + "3163": "pressure:inlet_aorta_br:RCR_aorta_br", + "3164": "pressure:inlet_aorta_br:RCR_aorta_br", + "3165": "pressure:inlet_aorta_br:RCR_aorta_br", + "3166": "pressure:inlet_aorta_br:RCR_aorta_br", + "3167": "pressure:inlet_aorta_br:RCR_aorta_br", + "3168": "pressure:inlet_aorta_br:RCR_aorta_br", + "3169": "pressure:inlet_aorta_br:RCR_aorta_br", + "3170": "pressure:inlet_aorta_br:RCR_aorta_br", + "3171": "pressure:inlet_aorta_br:RCR_aorta_br", + "3172": "pressure:inlet_aorta_br:RCR_aorta_br", + "3173": "pressure:inlet_aorta_br:RCR_aorta_br", + "3174": "pressure:inlet_aorta_br:RCR_aorta_br", + "3175": "pressure:inlet_aorta_br:RCR_aorta_br", + "3176": "pressure:inlet_aorta_br:RCR_aorta_br", + "3177": "pressure:inlet_aorta_br:RCR_aorta_br", + "3178": "pressure:inlet_aorta_br:RCR_aorta_br", + "3179": "pressure:inlet_aorta_br:RCR_aorta_br", + "3180": "pressure:inlet_aorta_br:RCR_aorta_br", + "3181": "pressure:inlet_aorta_br:RCR_aorta_br", + "3182": "pressure:inlet_aorta_br:RCR_aorta_br", + "3183": "pressure:inlet_aorta_br:RCR_aorta_br", + "3184": "pressure:inlet_aorta_br:RCR_aorta_br", + "3185": "pressure:inlet_aorta_br:RCR_aorta_br", + "3186": "pressure:inlet_aorta_br:RCR_aorta_br", + "3187": "pressure:inlet_aorta_br:RCR_aorta_br", + "3188": "pressure:inlet_aorta_br:RCR_aorta_br", + "3189": "pressure:inlet_aorta_br:RCR_aorta_br", + "3190": "pressure:inlet_aorta_br:RCR_aorta_br", + "3191": "pressure:inlet_aorta_br:RCR_aorta_br", + "3192": "pressure:inlet_aorta_br:RCR_aorta_br", + "3193": "pressure:inlet_aorta_br:RCR_aorta_br", + "3194": "pressure:inlet_aorta_br:RCR_aorta_br", + "3195": "pressure:inlet_aorta_br:RCR_aorta_br", + "3196": "pressure:inlet_aorta_br:RCR_aorta_br", + "3197": "pressure:inlet_aorta_br:RCR_aorta_br", + "3198": "pressure:inlet_aorta_br:RCR_aorta_br", + "3199": "pressure:inlet_aorta_br:RCR_aorta_br", + "3200": "pressure:inlet_aorta_br:RCR_aorta_br", + "3201": "pressure:inlet_aorta_br:RCR_aorta_br", + "3202": "pressure:inlet_aorta_br:RCR_aorta_br", + "3203": "pressure:inlet_aorta_br:RCR_aorta_br", + "3204": "pressure:inlet_aorta_br:RCR_aorta_br", + "3205": "pressure:inlet_aorta_br:RCR_aorta_br", + "3206": "pressure:inlet_aorta_br:RCR_aorta_br", + "3207": "pressure:inlet_aorta_br:RCR_aorta_br", + "3208": "pressure:inlet_aorta_br:RCR_aorta_br", + "3209": "pressure:inlet_aorta_br:RCR_aorta_br", + "3210": "pressure:inlet_aorta_br:RCR_aorta_br", + "3211": "pressure:inlet_aorta_br:RCR_aorta_br", + "3212": "pressure:inlet_aorta_br:RCR_aorta_br", + "3213": "pressure:inlet_aorta_br:RCR_aorta_br", + "3214": "pressure:inlet_aorta_br:RCR_aorta_br", + "3215": "pressure:inlet_aorta_br:RCR_aorta_br", + "3216": "pressure:inlet_aorta_br:RCR_aorta_br", + "3217": "pressure:inlet_aorta_br:RCR_aorta_br", + "3218": "pressure:inlet_aorta_br:RCR_aorta_br", + "3219": "pressure:inlet_aorta_br:RCR_aorta_br", + "3220": "pressure:inlet_aorta_br:RCR_aorta_br", + "3221": "pressure:inlet_aorta_br:RCR_aorta_br", + "3222": "pressure:inlet_aorta_br:RCR_aorta_br", + "3223": "pressure:inlet_aorta_br:RCR_aorta_br", + "3224": "pressure:inlet_aorta_br:RCR_aorta_br", + "3225": "pressure:inlet_aorta_br:RCR_aorta_br", + "3226": "pressure:inlet_aorta_br:RCR_aorta_br", + "3227": "pressure:inlet_aorta_br:RCR_aorta_br", + "3228": "pressure:inlet_aorta_br:RCR_aorta_br", + "3229": "pressure:inlet_aorta_br:RCR_aorta_br", + "3230": "pressure:inlet_aorta_br:RCR_aorta_br", + "3231": "pressure:inlet_aorta_br:RCR_aorta_br", + "3232": "pressure:inlet_aorta_br:RCR_aorta_br", + "3233": "pressure:inlet_aorta_br:RCR_aorta_br", + "3234": "pressure:inlet_aorta_br:RCR_aorta_br", + "3235": "pressure:inlet_aorta_br:RCR_aorta_br", + "3236": "pressure:inlet_aorta_br:RCR_aorta_br", + "3237": "pressure:inlet_aorta_br:RCR_aorta_br", + "3238": "pressure:inlet_aorta_br:RCR_aorta_br", + "3239": "pressure:inlet_aorta_br:RCR_aorta_br", + "3240": "pressure:inlet_aorta_br:RCR_aorta_br", + "3241": "pressure:inlet_aorta_br:RCR_aorta_br", + "3242": "pressure:inlet_aorta_br:RCR_aorta_br", + "3243": "pressure:inlet_aorta_br:RCR_aorta_br", + "3244": "pressure:inlet_aorta_br:RCR_aorta_br", + "3245": "pressure:inlet_aorta_br:RCR_aorta_br", + "3246": "pressure:inlet_aorta_br:RCR_aorta_br", + "3247": "pressure:inlet_aorta_br:RCR_aorta_br", + "3248": "pressure:inlet_aorta_br:RCR_aorta_br", + "3249": "pressure:inlet_aorta_br:RCR_aorta_br", + "3250": "pressure:inlet_aorta_br:RCR_aorta_br", + "3251": "pressure:inlet_aorta_br:RCR_aorta_br", + "3252": "pressure:inlet_aorta_br:RCR_aorta_br", + "3253": "pressure:inlet_aorta_br:RCR_aorta_br", + "3254": "pressure:inlet_aorta_br:RCR_aorta_br", + "3255": "pressure:inlet_aorta_br:RCR_aorta_br", + "3256": "pressure:inlet_aorta_br:RCR_aorta_br", + "3257": "pressure:inlet_aorta_br:RCR_aorta_br", + "3258": "pressure:inlet_aorta_br:RCR_aorta_br", + "3259": "pressure:inlet_aorta_br:RCR_aorta_br", + "3260": "pressure:inlet_aorta_br:RCR_aorta_br", + "3261": "pressure:inlet_aorta_br:RCR_aorta_br", + "3262": "pressure:inlet_aorta_br:RCR_aorta_br", + "3263": "pressure:inlet_aorta_br:RCR_aorta_br", + "3264": "pressure:inlet_aorta_br:RCR_aorta_br", + "3265": "pressure:inlet_aorta_br:RCR_aorta_br", + "3266": "pressure:inlet_aorta_br:RCR_aorta_br", + "3267": "pressure:inlet_aorta_br:RCR_aorta_br", + "3268": "pressure:inlet_aorta_br:RCR_aorta_br", + "3269": "pressure:inlet_aorta_br:RCR_aorta_br", + "3270": "pressure:inlet_aorta_br:RCR_aorta_br", + "3271": "pressure:inlet_aorta_br:RCR_aorta_br", + "3272": "pressure:inlet_aorta_br:RCR_aorta_br", + "3273": "pressure:inlet_aorta_br:RCR_aorta_br", + "3274": "pressure:inlet_aorta_br:RCR_aorta_br", + "3275": "pressure:inlet_aorta_br:RCR_aorta_br", + "3276": "pressure:inlet_aorta_br:RCR_aorta_br", + "3277": "pressure:inlet_aorta_br:RCR_aorta_br", + "3278": "pressure:inlet_aorta_br:RCR_aorta_br", + "3279": "pressure:inlet_aorta_br:RCR_aorta_br", + "3280": "pressure:inlet_aorta_br:RCR_aorta_br", + "3281": "pressure:inlet_aorta_br:RCR_aorta_br", + "3282": "pressure:inlet_aorta_br:RCR_aorta_br", + "3283": "pressure:inlet_aorta_br:RCR_aorta_br", + "3284": "pressure:inlet_aorta_br:RCR_aorta_br", + "3285": "pressure:inlet_aorta_br:RCR_aorta_br", + "3286": "pressure:inlet_aorta_br:RCR_aorta_br", + "3287": "pressure:inlet_aorta_br:RCR_aorta_br", + "3288": "pressure:inlet_aorta_br:RCR_aorta_br", + "3289": "pressure:inlet_aorta_br:RCR_aorta_br", + "3290": "pressure:inlet_aorta_br:RCR_aorta_br", + "3291": "pressure:inlet_aorta_br:RCR_aorta_br", + "3292": "pressure:inlet_aorta_br:RCR_aorta_br", + "3293": "pressure:inlet_aorta_br:RCR_aorta_br", + "3294": "pressure:inlet_aorta_br:RCR_aorta_br", + "3295": "pressure:inlet_aorta_br:RCR_aorta_br", + "3296": "pressure:inlet_aorta_br:RCR_aorta_br", + "3297": "pressure:inlet_aorta_br:RCR_aorta_br", + "3298": "pressure:inlet_aorta_br:RCR_aorta_br", + "3299": "pressure:inlet_aorta_br:RCR_aorta_br", + "3300": "pressure:inlet_aorta_br:RCR_aorta_br", + "3301": "pressure:inlet_aorta_br:RCR_aorta_br", + "3302": "pressure:inlet_aorta_br:RCR_aorta_br", + "3303": "pressure:inlet_aorta_br:RCR_aorta_br", + "3304": "pressure:inlet_aorta_br:RCR_aorta_br", + "3305": "pressure:inlet_aorta_br:RCR_aorta_br", + "3306": "pressure:inlet_aorta_br:RCR_aorta_br", + "3307": "pressure:inlet_aorta_br:RCR_aorta_br", + "3308": "pressure:inlet_aorta_br:RCR_aorta_br", + "3309": "pressure:inlet_aorta_br:RCR_aorta_br", + "3310": "pressure:inlet_aorta_br:RCR_aorta_br", + "3311": "pressure:inlet_aorta_br:RCR_aorta_br", + "3312": "pressure:inlet_aorta_br:RCR_aorta_br", + "3313": "pressure:inlet_aorta_br:RCR_aorta_br", + "3314": "pressure:inlet_aorta_br:RCR_aorta_br", + "3315": "pressure:inlet_aorta_br:RCR_aorta_br", + "3316": "pressure:inlet_aorta_br:RCR_aorta_br", + "3317": "pressure:inlet_aorta_br:RCR_aorta_br", + "3318": "pressure:inlet_aorta_br:RCR_aorta_br", + "3319": "pressure:inlet_aorta_br:RCR_aorta_br", + "3320": "pressure:inlet_aorta_br:RCR_aorta_br", + "3321": "pressure:inlet_aorta_br:RCR_aorta_br", + "3322": "pressure:inlet_aorta_br:RCR_aorta_br", + "3323": "pressure:inlet_aorta_br:RCR_aorta_br", + "3324": "pressure:inlet_aorta_br:RCR_aorta_br", + "3325": "pressure:inlet_aorta_br:RCR_aorta_br", + "3326": "pressure:inlet_aorta_br:RCR_aorta_br", + "3327": "pressure:inlet_aorta_br:RCR_aorta_br", + "3328": "pressure:inlet_aorta_br:RCR_aorta_br", + "3329": "pressure:inlet_aorta_br:RCR_aorta_br", + "3330": "pressure:inlet_aorta_br:RCR_aorta_br", + "3331": "pressure:inlet_aorta_br:RCR_aorta_br", + "3332": "pressure:inlet_aorta_br:RCR_aorta_br", + "3333": "pressure:inlet_aorta_br:RCR_aorta_br", + "3334": "pressure:inlet_aorta_br:RCR_aorta_br", + "3335": "pressure:inlet_aorta_br:RCR_aorta_br", + "3336": "pressure:inlet_aorta_br:RCR_aorta_br", + "3337": "pressure:inlet_aorta_br:RCR_aorta_br", + "3338": "pressure:inlet_aorta_br:RCR_aorta_br", + "3339": "pressure:inlet_aorta_br:RCR_aorta_br", + "3340": "pressure:inlet_aorta_br:RCR_aorta_br", + "3341": "pressure:inlet_aorta_br:RCR_aorta_br", + "3342": "pressure:inlet_aorta_br:RCR_aorta_br", + "3343": "pressure:inlet_aorta_br:RCR_aorta_br", + "3344": "pressure:inlet_aorta_br:RCR_aorta_br", + "3345": "pressure:inlet_aorta_br:RCR_aorta_br", + "3346": "pressure:inlet_aorta_br:RCR_aorta_br", + "3347": "pressure:inlet_aorta_br:RCR_aorta_br", + "3348": "pressure:inlet_aorta_br:RCR_aorta_br", + "3349": "pressure:inlet_aorta_br:RCR_aorta_br", + "3350": "pressure:inlet_aorta_br:RCR_aorta_br", + "3351": "pressure:inlet_aorta_br:RCR_aorta_br", + "3352": "pressure:inlet_aorta_br:RCR_aorta_br", + "3353": "pressure:inlet_aorta_br:RCR_aorta_br", + "3354": "pressure:inlet_aorta_br:RCR_aorta_br", + "3355": "pressure:inlet_aorta_br:RCR_aorta_br", + "3356": "pressure:inlet_aorta_br:RCR_aorta_br", + "3357": "pressure:inlet_aorta_br:RCR_aorta_br", + "3358": "pressure:inlet_aorta_br:RCR_aorta_br", + "3359": "pressure:inlet_aorta_br:RCR_aorta_br", + "3360": "pressure:inlet_aorta_br:RCR_aorta_br", + "3361": "pressure:inlet_aorta_br:RCR_aorta_br", + "3362": "pressure:inlet_aorta_br:RCR_aorta_br", + "3363": "pressure:inlet_aorta_br:RCR_aorta_br", + "3364": "pressure:inlet_aorta_br:RCR_aorta_br", + "3365": "pressure:inlet_aorta_br:RCR_aorta_br", + "3366": "pressure:inlet_aorta_br:RCR_aorta_br", + "3367": "pressure:inlet_aorta_br:RCR_aorta_br", + "3368": "pressure:inlet_aorta_br:RCR_aorta_br", + "3369": "pressure:inlet_aorta_br:RCR_aorta_br", + "3370": "pressure:inlet_aorta_br:RCR_aorta_br", + "3371": "pressure:inlet_aorta_br:RCR_aorta_br", + "3372": "pressure:inlet_aorta_br:RCR_aorta_br", + "3373": "pressure:inlet_aorta_br:RCR_aorta_br", + "3374": "pressure:inlet_aorta_br:RCR_aorta_br", + "3375": "pressure:inlet_aorta_br:RCR_aorta_br", + "3376": "pressure:inlet_aorta_br:RCR_aorta_br", + "3377": "pressure:inlet_aorta_br:RCR_aorta_br", + "3378": "pressure:inlet_aorta_br:RCR_aorta_br", + "3379": "pressure:inlet_aorta_br:RCR_aorta_br", + "3380": "pressure:inlet_aorta_br:RCR_aorta_br", + "3381": "pressure:inlet_aorta_br:RCR_aorta_br", + "3382": "pressure:inlet_aorta_br:RCR_aorta_br", + "3383": "pressure:inlet_aorta_br:RCR_aorta_br", + "3384": "pressure:inlet_aorta_br:RCR_aorta_br", + "3385": "pressure:inlet_aorta_br:RCR_aorta_br", + "3386": "pressure:inlet_aorta_br:RCR_aorta_br", + "3387": "pressure:inlet_aorta_br:RCR_aorta_br", + "3388": "pressure:inlet_aorta_br:RCR_aorta_br", + "3389": "pressure:inlet_aorta_br:RCR_aorta_br", + "3390": "pressure:inlet_aorta_br:RCR_aorta_br", + "3391": "pressure:inlet_aorta_br:RCR_aorta_br", + "3392": "pressure:inlet_aorta_br:RCR_aorta_br", + "3393": "pressure:inlet_aorta_br:RCR_aorta_br", + "3394": "pressure:inlet_aorta_br:RCR_aorta_br", + "3395": "pressure:inlet_aorta_br:RCR_aorta_br", + "3396": "pressure:inlet_aorta_br:RCR_aorta_br", + "3397": "pressure:inlet_aorta_br:RCR_aorta_br", + "3398": "pressure:inlet_aorta_br:RCR_aorta_br", + "3399": "pressure:inlet_aorta_br:RCR_aorta_br", + "3400": "pressure:inlet_aorta_br:RCR_aorta_br", + "3401": "pressure:inlet_aorta_br:RCR_aorta_br", + "3402": "pressure:inlet_aorta_br:RCR_aorta_br", + "3403": "pressure:inlet_aorta_br:RCR_aorta_br", + "3404": "pressure:inlet_aorta_br:RCR_aorta_br", + "3405": "pressure:inlet_aorta_br:RCR_aorta_br", + "3406": "pressure:inlet_aorta_br:RCR_aorta_br", + "3407": "pressure:inlet_aorta_br:RCR_aorta_br", + "3408": "pressure:inlet_aorta_br:RCR_aorta_br", + "3409": "pressure:inlet_aorta_br:RCR_aorta_br", + "3410": "pressure:inlet_aorta_br:RCR_aorta_br", + "3411": "pressure:inlet_aorta_br:RCR_aorta_br", + "3412": "pressure:inlet_aorta_br:RCR_aorta_br", + "3413": "pressure:inlet_aorta_br:RCR_aorta_br", + "3414": "pressure:inlet_aorta_br:RCR_aorta_br", + "3415": "pressure:inlet_aorta_br:RCR_aorta_br", + "3416": "pressure:inlet_aorta_br:RCR_aorta_br", + "3417": "pressure:inlet_aorta_br:RCR_aorta_br", + "3418": "pressure:inlet_aorta_br:RCR_aorta_br", + "3419": "pressure:inlet_aorta_br:RCR_aorta_br", + "3420": "pressure:inlet_aorta_br:RCR_aorta_br", + "3421": "pressure:inlet_aorta_br:RCR_aorta_br", + "3422": "pressure:inlet_aorta_br:RCR_aorta_br", + "3423": "pressure:inlet_aorta_br:RCR_aorta_br", + "3424": "pressure:inlet_aorta_br:RCR_aorta_br", + "3425": "pressure:inlet_aorta_br:RCR_aorta_br", + "3426": "pressure:inlet_aorta_br:RCR_aorta_br", + "3427": "pressure:inlet_aorta_br:RCR_aorta_br", + "3428": "pressure:inlet_aorta_br:RCR_aorta_br", + "3429": "pressure:inlet_aorta_br:RCR_aorta_br", + "3430": "pressure:inlet_aorta_br:RCR_aorta_br", + "3431": "pressure:inlet_aorta_br:RCR_aorta_br", + "3432": "pressure:inlet_aorta_br:RCR_aorta_br", + "3433": "pressure:inlet_aorta_br:RCR_aorta_br", + "3434": "pressure:inlet_aorta_br:RCR_aorta_br", + "3435": "pressure:inlet_aorta_br:RCR_aorta_br", + "3436": "pressure:inlet_aorta_br:RCR_aorta_br", + "3437": "pressure:inlet_aorta_br:RCR_aorta_br", + "3438": "pressure:inlet_aorta_br:RCR_aorta_br", + "3439": "pressure:inlet_aorta_br:RCR_aorta_br", + "3440": "pressure:inlet_aorta_br:RCR_aorta_br", + "3441": "pressure:inlet_aorta_br:RCR_aorta_br", + "3442": "pressure:inlet_aorta_br:RCR_aorta_br", + "3443": "pressure:inlet_aorta_br:RCR_aorta_br", + "3444": "pressure:inlet_aorta_br:RCR_aorta_br", + "3445": "pressure:inlet_aorta_br:RCR_aorta_br", + "3446": "pressure:inlet_aorta_br:RCR_aorta_br", + "3447": "pressure:inlet_aorta_br:RCR_aorta_br", + "3448": "pressure:inlet_aorta_br:RCR_aorta_br", + "3449": "pressure:inlet_aorta_br:RCR_aorta_br", + "3450": "pressure:inlet_aorta_br:RCR_aorta_br", + "3451": "pressure:inlet_aorta_br:RCR_aorta_br", + "3452": "pressure:inlet_aorta_br:RCR_aorta_br", + "3453": "pressure:inlet_aorta_br:RCR_aorta_br", + "3454": "pressure:inlet_aorta_br:RCR_aorta_br", + "3455": "pressure:inlet_aorta_br:RCR_aorta_br", + "3456": "pressure:inlet_aorta_br:RCR_aorta_br", + "3457": "pressure:inlet_aorta_br:RCR_aorta_br", + "3458": "pressure:inlet_aorta_br:RCR_aorta_br", + "3459": "pressure:inlet_aorta_br:RCR_aorta_br", + "3460": "pressure:inlet_aorta_br:RCR_aorta_br", + "3461": "pressure:inlet_aorta_br:RCR_aorta_br", + "3462": "pressure:inlet_aorta_br:RCR_aorta_br", + "3463": "pressure:inlet_aorta_br:RCR_aorta_br", + "3464": "pressure:inlet_aorta_br:RCR_aorta_br", + "3465": "pressure:inlet_aorta_br:RCR_aorta_br", + "3466": "pressure:inlet_aorta_br:RCR_aorta_br", + "3467": "pressure:inlet_aorta_br:RCR_aorta_br", + "3468": "pressure:inlet_aorta_br:RCR_aorta_br", + "3469": "pressure:inlet_aorta_br:RCR_aorta_br", + "3470": "pressure:inlet_aorta_br:RCR_aorta_br", + "3471": "pressure:inlet_aorta_br:RCR_aorta_br", + "3472": "pressure:inlet_aorta_br:RCR_aorta_br", + "3473": "pressure:inlet_aorta_br:RCR_aorta_br", + "3474": "pressure:inlet_aorta_br:RCR_aorta_br", + "3475": "pressure:inlet_aorta_br:RCR_aorta_br", + "3476": "pressure:inlet_aorta_br:RCR_aorta_br", + "3477": "pressure:inlet_aorta_br:RCR_aorta_br", + "3478": "pressure:inlet_aorta_br:RCR_aorta_br", + "3479": "pressure:inlet_aorta_br:RCR_aorta_br", + "3480": "pressure:inlet_aorta_br:RCR_aorta_br", + "3481": "pressure:inlet_aorta_br:RCR_aorta_br", + "3482": "pressure:inlet_aorta_br:RCR_aorta_br", + "3483": "pressure:inlet_aorta_br:RCR_aorta_br", + "3484": "pressure:inlet_aorta_br:RCR_aorta_br", + "3485": "pressure:inlet_aorta_br:RCR_aorta_br", + "3486": "pressure:inlet_aorta_br:RCR_aorta_br", + "3487": "pressure:inlet_aorta_br:RCR_aorta_br", + "3488": "pressure:inlet_aorta_br:RCR_aorta_br", + "3489": "pressure:inlet_aorta_br:RCR_aorta_br", + "3490": "pressure:inlet_aorta_br:RCR_aorta_br", + "3491": "pressure:inlet_aorta_br:RCR_aorta_br", + "3492": "pressure:inlet_aorta_br:RCR_aorta_br", + "3493": "pressure:inlet_aorta_br:RCR_aorta_br", + "3494": "pressure:inlet_aorta_br:RCR_aorta_br", + "3495": "pressure:inlet_aorta_br:RCR_aorta_br", + "3496": "pressure:inlet_aorta_br:RCR_aorta_br", + "3497": "pressure:inlet_aorta_br:RCR_aorta_br", + "3498": "pressure:inlet_aorta_br:RCR_aorta_br", + "3499": "pressure:inlet_aorta_br:RCR_aorta_br", + "3500": "pressure:inlet_aorta_br:RCR_aorta_br", + "3501": "pressure:inlet_aorta_br:RCR_aorta_br", + "3502": "pressure:inlet_aorta_br:RCR_aorta_br", + "3503": "pressure:inlet_aorta_br:RCR_aorta_br", + "3504": "pressure:inlet_aorta_br:RCR_aorta_br", + "3505": "pressure:inlet_aorta_br:RCR_aorta_br", + "3506": "pressure:inlet_aorta_br:RCR_aorta_br", + "3507": "pressure:inlet_aorta_br:RCR_aorta_br", + "3508": "pressure:inlet_aorta_br:RCR_aorta_br", + "3509": "pressure:inlet_aorta_br:RCR_aorta_br", + "3510": "pressure:inlet_aorta_br:RCR_aorta_br", + "3511": "pressure:inlet_aorta_br:RCR_aorta_br", + "3512": "pressure:inlet_aorta_br:RCR_aorta_br", + "3513": "pressure:inlet_aorta_br:RCR_aorta_br", + "3514": "pressure:inlet_aorta_br:RCR_aorta_br", + "3515": "pressure:inlet_aorta_br:RCR_aorta_br", + "3516": "pressure:inlet_aorta_br:RCR_aorta_br", + "3517": "pressure:inlet_aorta_br:RCR_aorta_br", + "3518": "pressure:inlet_aorta_br:RCR_aorta_br", + "3519": "pressure:inlet_aorta_br:RCR_aorta_br", + "3520": "pressure:inlet_aorta_br:RCR_aorta_br", + "3521": "pressure:inlet_aorta_br:RCR_aorta_br", + "3522": "pressure:inlet_aorta_br:RCR_aorta_br", + "3523": "pressure:inlet_aorta_br:RCR_aorta_br", + "3524": "pressure:inlet_aorta_br:RCR_aorta_br", + "3525": "pressure:inlet_aorta_br:RCR_aorta_br", + "3526": "pressure:inlet_aorta_br:RCR_aorta_br", + "3527": "pressure:inlet_aorta_br:RCR_aorta_br", + "3528": "pressure:inlet_aorta_br:RCR_aorta_br", + "3529": "pressure:inlet_aorta_br:RCR_aorta_br", + "3530": "pressure:inlet_aorta_br:RCR_aorta_br", + "3531": "pressure:inlet_aorta_br:RCR_aorta_br", + "3532": "pressure:inlet_aorta_br:RCR_aorta_br", + "3533": "pressure:inlet_aorta_br:RCR_aorta_br", + "3534": "pressure:inlet_aorta_br:RCR_aorta_br", + "3535": "pressure:inlet_aorta_br:RCR_aorta_br", + "3536": "pressure:inlet_aorta_br:RCR_aorta_br", + "3537": "pressure:inlet_aorta_br:RCR_aorta_br", + "3538": "pressure:inlet_aorta_br:RCR_aorta_br", + "3539": "pressure:inlet_aorta_br:RCR_aorta_br", + "3540": "pressure:inlet_aorta_br:RCR_aorta_br", + "3541": "pressure:inlet_aorta_br:RCR_aorta_br", + "3542": "pressure:inlet_aorta_br:RCR_aorta_br", + "3543": "pressure:inlet_aorta_br:RCR_aorta_br", + "3544": "pressure:inlet_aorta_br:RCR_aorta_br", + "3545": "pressure:inlet_aorta_br:RCR_aorta_br", + "3546": "pressure:inlet_aorta_br:RCR_aorta_br", + "3547": "pressure:inlet_aorta_br:RCR_aorta_br", + "3548": "pressure:inlet_aorta_br:RCR_aorta_br", + "3549": "pressure:inlet_aorta_br:RCR_aorta_br", + "3550": "pressure:inlet_aorta_br:RCR_aorta_br", + "3551": "pressure:inlet_aorta_br:RCR_aorta_br", + "3552": "pressure:inlet_aorta_br:RCR_aorta_br", + "3553": "pressure:inlet_aorta_br:RCR_aorta_br", + "3554": "pressure:inlet_aorta_br:RCR_aorta_br", + "3555": "pressure:inlet_aorta_br:RCR_aorta_br", + "3556": "pressure:inlet_aorta_br:RCR_aorta_br", + "3557": "pressure:inlet_aorta_br:RCR_aorta_br", + "3558": "pressure:inlet_aorta_br:RCR_aorta_br", + "3559": "pressure:inlet_aorta_br:RCR_aorta_br", + "3560": "pressure:inlet_aorta_br:RCR_aorta_br", + "3561": "pressure:inlet_aorta_br:RCR_aorta_br", + "3562": "pressure:inlet_aorta_br:RCR_aorta_br", + "3563": "pressure:inlet_aorta_br:RCR_aorta_br", + "3564": "pressure:inlet_aorta_br:RCR_aorta_br", + "3565": "pressure:inlet_aorta_br:RCR_aorta_br", + "3566": "pressure:inlet_aorta_br:RCR_aorta_br", + "3567": "pressure:inlet_aorta_br:RCR_aorta_br", + "3568": "pressure:inlet_aorta_br:RCR_aorta_br", + "3569": "pressure:inlet_aorta_br:RCR_aorta_br", + "3570": "pressure:inlet_aorta_br:RCR_aorta_br", + "3571": "pressure:inlet_aorta_br:RCR_aorta_br", + "3572": "pressure:inlet_aorta_br:RCR_aorta_br", + "3573": "pressure:inlet_aorta_br:RCR_aorta_br", + "3574": "pressure:inlet_aorta_br:RCR_aorta_br", + "3575": "pressure:inlet_aorta_br:RCR_aorta_br", + "3576": "pressure:inlet_aorta_br:RCR_aorta_br", + "3577": "pressure:inlet_aorta_br:RCR_aorta_br", + "3578": "pressure:inlet_aorta_br:RCR_aorta_br", + "3579": "pressure:inlet_aorta_br:RCR_aorta_br", + "3580": "pressure:inlet_aorta_br:RCR_aorta_br", + "3581": "pressure:inlet_aorta_br:RCR_aorta_br", + "3582": "pressure:inlet_aorta_br:RCR_aorta_br", + "3583": "pressure:inlet_aorta_br:RCR_aorta_br", + "3584": "pressure:inlet_aorta_br:RCR_aorta_br", + "3585": "pressure:inlet_aorta_br:RCR_aorta_br", + "3586": "pressure:inlet_aorta_br:RCR_aorta_br", + "3587": "pressure:inlet_aorta_br:RCR_aorta_br", + "3588": "pressure:inlet_aorta_br:RCR_aorta_br", + "3589": "pressure:inlet_aorta_br:RCR_aorta_br", + "3590": "pressure:inlet_aorta_br:RCR_aorta_br", + "3591": "pressure:inlet_aorta_br:RCR_aorta_br", + "3592": "pressure:inlet_aorta_br:RCR_aorta_br", + "3593": "pressure:inlet_aorta_br:RCR_aorta_br", + "3594": "pressure:inlet_aorta_br:RCR_aorta_br", + "3595": "pressure:inlet_aorta_br:RCR_aorta_br", + "3596": "pressure:inlet_aorta_br:RCR_aorta_br", + "3597": "pressure:inlet_aorta_br:RCR_aorta_br", + "3598": "pressure:inlet_aorta_br:RCR_aorta_br", + "3599": "pressure:inlet_aorta_br:RCR_aorta_br", + "3600": "pressure:inlet_aorta_br:RCR_aorta_br", + "3601": "pressure:inlet_aorta_br:RCR_aorta_br", + "3602": "pressure:inlet_aorta_br:RCR_aorta_br", + "3603": "pressure:inlet_aorta_br:RCR_aorta_br", + "3604": "pressure:inlet_aorta_br:RCR_aorta_br", + "3605": "pressure:inlet_aorta_br:RCR_aorta_br", + "3606": "pressure:inlet_aorta_br:RCR_aorta_br", + "3607": "pressure:inlet_aorta_br:RCR_aorta_br", + "3608": "pressure:inlet_aorta_br:RCR_aorta_br", + "3609": "pressure:inlet_aorta_br:RCR_aorta_br", + "3610": "pressure:inlet_aorta_br:RCR_aorta_br", + "3611": "pressure:inlet_aorta_br:RCR_aorta_br", + "3612": "pressure:inlet_aorta_br:RCR_aorta_br", + "3613": "pressure:inlet_aorta_br:RCR_aorta_br", + "3614": "pressure:inlet_aorta_br:RCR_aorta_br", + "3615": "pressure:inlet_aorta_br:RCR_aorta_br", + "3616": "pressure:inlet_aorta_br:RCR_aorta_br", + "3617": "pressure:inlet_aorta_br:RCR_aorta_br", + "3618": "pressure:inlet_aorta_br:RCR_aorta_br", + "3619": "pressure:inlet_aorta_br:RCR_aorta_br", + "3620": "pressure:inlet_aorta_br:RCR_aorta_br", + "3621": "pressure:inlet_aorta_br:RCR_aorta_br", + "3622": "pressure:inlet_aorta_br:RCR_aorta_br", + "3623": "pressure:inlet_aorta_br:RCR_aorta_br", + "3624": "pressure:inlet_aorta_br:RCR_aorta_br", + "3625": "pressure:inlet_aorta_br:RCR_aorta_br", + "3626": "pressure:inlet_aorta_br:RCR_aorta_br", + "3627": "pressure:inlet_aorta_br:RCR_aorta_br", + "3628": "pressure:inlet_aorta_br:RCR_aorta_br", + "3629": "pressure:inlet_aorta_br:RCR_aorta_br", + "3630": "pressure:inlet_aorta_br:RCR_aorta_br", + "3631": "pressure:inlet_aorta_br:RCR_aorta_br", + "3632": "pressure:inlet_aorta_br:RCR_aorta_br", + "3633": "pressure:inlet_aorta_br:RCR_aorta_br", + "3634": "pressure:inlet_aorta_br:RCR_aorta_br", + "3635": "pressure:inlet_aorta_br:RCR_aorta_br", + "3636": "pressure:inlet_aorta_br:RCR_aorta_br", + "3637": "pressure:inlet_aorta_br:RCR_aorta_br", + "3638": "pressure:inlet_aorta_br:RCR_aorta_br", + "3639": "pressure:inlet_aorta_br:RCR_aorta_br", + "3640": "pressure:inlet_aorta_br:RCR_aorta_br", + "3641": "pressure:inlet_aorta_br:RCR_aorta_br", + "3642": "pressure:inlet_aorta_br:RCR_aorta_br", + "3643": "pressure:inlet_aorta_br:RCR_aorta_br", + "3644": "pressure:inlet_aorta_br:RCR_aorta_br", + "3645": "pressure:inlet_aorta_br:RCR_aorta_br", + "3646": "pressure:inlet_aorta_br:RCR_aorta_br", + "3647": "pressure:inlet_aorta_br:RCR_aorta_br", + "3648": "pressure:inlet_aorta_br:RCR_aorta_br", + "3649": "pressure:inlet_aorta_br:RCR_aorta_br", + "3650": "pressure:inlet_aorta_br:RCR_aorta_br", + "3651": "pressure:inlet_aorta_br:RCR_aorta_br", + "3652": "pressure:inlet_aorta_br:RCR_aorta_br", + "3653": "pressure:inlet_aorta_br:RCR_aorta_br", + "3654": "pressure:inlet_aorta_br:RCR_aorta_br", + "3655": "pressure:inlet_aorta_br:RCR_aorta_br", + "3656": "pressure:inlet_aorta_br:RCR_aorta_br", + "3657": "pressure:inlet_aorta_br:RCR_aorta_br", + "3658": "pressure:inlet_aorta_br:RCR_aorta_br", + "3659": "pressure:inlet_aorta_br:RCR_aorta_br", + "3660": "pressure:inlet_aorta_br:RCR_aorta_br", + "3661": "pressure:inlet_aorta_br:RCR_aorta_br", + "3662": "pressure:inlet_aorta_br:RCR_aorta_br", + "3663": "pressure:inlet_aorta_br:RCR_aorta_br", + "3664": "pressure:inlet_aorta_br:RCR_aorta_br", + "3665": "pressure:inlet_aorta_br:RCR_aorta_br", + "3666": "pressure:inlet_aorta_br:RCR_aorta_br", + "3667": "pressure:inlet_aorta_br:RCR_aorta_br", + "3668": "pressure:inlet_aorta_br:RCR_aorta_br", + "3669": "pressure:inlet_aorta_br:RCR_aorta_br", + "3670": "pressure:inlet_aorta_br:RCR_aorta_br", + "3671": "pressure:inlet_aorta_br:RCR_aorta_br", + "3672": "pressure:inlet_aorta_br:RCR_aorta_br", + "3673": "pressure:inlet_aorta_br:RCR_aorta_br", + "3674": "pressure:inlet_aorta_br:RCR_aorta_br", + "3675": "pressure:inlet_aorta_br:RCR_aorta_br", + "3676": "pressure:inlet_aorta_br:RCR_aorta_br", + "3677": "pressure:inlet_aorta_br:RCR_aorta_br", + "3678": "pressure:inlet_aorta_br:RCR_aorta_br", + "3679": "pressure:inlet_aorta_br:RCR_aorta_br", + "3680": "pressure:inlet_aorta_br:RCR_aorta_br", + "3681": "pressure:inlet_aorta_br:RCR_aorta_br", + "3682": "pressure:inlet_aorta_br:RCR_aorta_br", + "3683": "pressure:inlet_aorta_br:RCR_aorta_br", + "3684": "pressure:inlet_aorta_br:RCR_aorta_br", + "3685": "pressure:inlet_aorta_br:RCR_aorta_br", + "3686": "pressure:inlet_aorta_br:RCR_aorta_br", + "3687": "pressure:inlet_aorta_br:RCR_aorta_br", + "3688": "pressure:inlet_aorta_br:RCR_aorta_br", + "3689": "pressure:inlet_aorta_br:RCR_aorta_br", + "3690": "pressure:inlet_aorta_br:RCR_aorta_br", + "3691": "pressure:inlet_aorta_br:RCR_aorta_br", + "3692": "pressure:inlet_aorta_br:RCR_aorta_br", + "3693": "pressure:inlet_aorta_br:RCR_aorta_br", + "3694": "pressure:inlet_aorta_br:RCR_aorta_br", + "3695": "pressure:inlet_aorta_br:RCR_aorta_br", + "3696": "pressure:inlet_aorta_br:RCR_aorta_br", + "3697": "pressure:inlet_aorta_br:RCR_aorta_br", + "3698": "pressure:inlet_aorta_br:RCR_aorta_br", + "3699": "pressure:inlet_aorta_br:RCR_aorta_br", + "3700": "pressure:inlet_aorta_br:RCR_aorta_br", + "3701": "pressure:inlet_aorta_br:RCR_aorta_br", + "3702": "pressure:inlet_aorta_br:RCR_aorta_br", + "3703": "pressure:inlet_aorta_br:RCR_aorta_br", + "3704": "pressure:inlet_aorta_br:RCR_aorta_br", + "3705": "pressure:inlet_aorta_br:RCR_aorta_br", + "3706": "pressure:inlet_aorta_br:RCR_aorta_br", + "3707": "pressure:inlet_aorta_br:RCR_aorta_br", + "3708": "pressure:inlet_aorta_br:RCR_aorta_br", + "3709": "pressure:inlet_aorta_br:RCR_aorta_br", + "3710": "pressure:inlet_aorta_br:RCR_aorta_br", + "3711": "pressure:inlet_aorta_br:RCR_aorta_br", + "3712": "pressure:inlet_aorta_br:RCR_aorta_br", + "3713": "pressure:inlet_aorta_br:RCR_aorta_br", + "3714": "pressure:inlet_aorta_br:RCR_aorta_br", + "3715": "pressure:inlet_aorta_br:RCR_aorta_br", + "3716": "pressure:inlet_aorta_br:RCR_aorta_br", + "3717": "pressure:inlet_aorta_br:RCR_aorta_br", + "3718": "pressure:inlet_aorta_br:RCR_aorta_br", + "3719": "pressure:inlet_aorta_br:RCR_aorta_br", + "3720": "pressure:inlet_aorta_br:RCR_aorta_br", + "3721": "pressure:inlet_aorta_br:RCR_aorta_br", + "3722": "pressure:inlet_aorta_br:RCR_aorta_br", + "3723": "pressure:inlet_aorta_br:RCR_aorta_br", + "3724": "pressure:inlet_aorta_br:RCR_aorta_br", + "3725": "pressure:inlet_aorta_br:RCR_aorta_br", + "3726": "pressure:inlet_aorta_br:RCR_aorta_br", + "3727": "pressure:inlet_aorta_br:RCR_aorta_br", + "3728": "pressure:inlet_aorta_br:RCR_aorta_br", + "3729": "pressure:inlet_aorta_br:RCR_aorta_br", + "3730": "pressure:inlet_aorta_br:RCR_aorta_br", + "3731": "pressure:inlet_aorta_br:RCR_aorta_br", + "3732": "pressure:inlet_aorta_br:RCR_aorta_br", + "3733": "pressure:inlet_aorta_br:RCR_aorta_br", + "3734": "pressure:inlet_aorta_br:RCR_aorta_br", + "3735": "pressure:inlet_aorta_br:RCR_aorta_br", + "3736": "pressure:inlet_aorta_br:RCR_aorta_br", + "3737": "pressure:inlet_aorta_br:RCR_aorta_br", + "3738": "pressure:inlet_aorta_br:RCR_aorta_br", + "3739": "pressure:inlet_aorta_br:RCR_aorta_br", + "3740": "pressure:inlet_aorta_br:RCR_aorta_br", + "3741": "pressure:inlet_aorta_br:RCR_aorta_br", + "3742": "pressure:inlet_aorta_br:RCR_aorta_br", + "3743": "pressure:inlet_aorta_br:RCR_aorta_br", + "3744": "pressure:inlet_aorta_br:RCR_aorta_br", + "3745": "pressure:inlet_aorta_br:RCR_aorta_br", + "3746": "pressure:inlet_aorta_br:RCR_aorta_br", + "3747": "pressure:inlet_aorta_br:RCR_aorta_br", + "3748": "pressure:inlet_aorta_br:RCR_aorta_br", + "3749": "pressure:inlet_aorta_br:RCR_aorta_br", + "3750": "pressure:inlet_aorta_br:RCR_aorta_br", + "3751": "pressure:inlet_aorta_br:RCR_aorta_br", + "3752": "pressure:inlet_aorta_br:RCR_aorta_br", + "3753": "pressure:inlet_aorta_br:RCR_aorta_br", + "3754": "pressure:inlet_aorta_br:RCR_aorta_br", + "3755": "pressure:inlet_aorta_br:RCR_aorta_br", + "3756": "pressure:inlet_aorta_br:RCR_aorta_br", + "3757": "pressure:inlet_aorta_br:RCR_aorta_br", + "3758": "pressure:inlet_aorta_br:RCR_aorta_br", + "3759": "pressure:inlet_aorta_br:RCR_aorta_br", + "3760": "pressure:inlet_aorta_br:RCR_aorta_br", + "3761": "pressure:inlet_aorta_br:RCR_aorta_br", + "3762": "pressure:inlet_aorta_br:RCR_aorta_br", + "3763": "pressure:inlet_aorta_br:RCR_aorta_br", + "3764": "pressure:inlet_aorta_br:RCR_aorta_br", + "3765": "pressure:inlet_aorta_br:RCR_aorta_br", + "3766": "pressure:inlet_aorta_br:RCR_aorta_br", + "3767": "pressure:inlet_aorta_br:RCR_aorta_br", + "3768": "pressure:inlet_aorta_br:RCR_aorta_br", + "3769": "pressure:inlet_aorta_br:RCR_aorta_br", + "3770": "pressure:inlet_aorta_br:RCR_aorta_br", + "3771": "pressure:inlet_aorta_br:RCR_aorta_br", + "3772": "pressure:inlet_aorta_br:RCR_aorta_br", + "3773": "pressure:inlet_aorta_br:RCR_aorta_br", + "3774": "pressure:inlet_aorta_br:RCR_aorta_br", + "3775": "pressure:inlet_aorta_br:RCR_aorta_br", + "3776": "pressure:inlet_aorta_br:RCR_aorta_br", + "3777": "pressure:inlet_aorta_br:RCR_aorta_br", + "3778": "pressure:inlet_aorta_br:RCR_aorta_br", + "3779": "pressure:inlet_aorta_br:RCR_aorta_br", + "3780": "pressure:inlet_aorta_br:RCR_aorta_br", + "3781": "pressure:inlet_aorta_br:RCR_aorta_br", + "3782": "pressure:inlet_aorta_br:RCR_aorta_br", + "3783": "pressure:inlet_aorta_br:RCR_aorta_br", + "3784": "pressure:inlet_aorta_br:RCR_aorta_br", + "3785": "pressure:inlet_aorta_br:RCR_aorta_br", + "3786": "pressure:inlet_aorta_br:RCR_aorta_br", + "3787": "pressure:inlet_aorta_br:RCR_aorta_br", + "3788": "pressure:inlet_aorta_br:RCR_aorta_br", + "3789": "pressure:inlet_aorta_br:RCR_aorta_br", + "3790": "pressure:inlet_aorta_br:RCR_aorta_br", + "3791": "pressure:inlet_aorta_br:RCR_aorta_br", + "3792": "pressure:inlet_aorta_br:RCR_aorta_br", + "3793": "pressure:inlet_aorta_br:RCR_aorta_br", + "3794": "pressure:inlet_aorta_br:RCR_aorta_br", + "3795": "pressure:inlet_aorta_br:RCR_aorta_br", + "3796": "pressure:inlet_aorta_br:RCR_aorta_br", + "3797": "pressure:inlet_aorta_br:RCR_aorta_br", + "3798": "pressure:inlet_aorta_br:RCR_aorta_br", + "3799": "pressure:inlet_aorta_br:RCR_aorta_br", + "3800": "pressure:inlet_aorta_br:RCR_aorta_br", + "3801": "pressure:inlet_aorta_br:RCR_aorta_br", + "3802": "pressure:inlet_aorta_br:RCR_aorta_br", + "3803": "pressure:inlet_aorta_br:RCR_aorta_br", + "3804": "pressure:inlet_aorta_br:RCR_aorta_br", + "3805": "pressure:inlet_aorta_br:RCR_aorta_br", + "3806": "pressure:inlet_aorta_br:RCR_aorta_br", + "3807": "pressure:inlet_aorta_br:RCR_aorta_br", + "3808": "pressure:inlet_aorta_br:RCR_aorta_br", + "3809": "pressure:inlet_aorta_br:RCR_aorta_br", + "3810": "pressure:inlet_aorta_br:RCR_aorta_br", + "3811": "pressure:inlet_aorta_br:RCR_aorta_br", + "3812": "pressure:inlet_aorta_br:RCR_aorta_br", + "3813": "pressure:inlet_aorta_br:RCR_aorta_br", + "3814": "pressure:inlet_aorta_br:RCR_aorta_br", + "3815": "pressure:inlet_aorta_br:RCR_aorta_br", + "3816": "pressure:inlet_aorta_br:RCR_aorta_br", + "3817": "pressure:inlet_aorta_br:RCR_aorta_br", + "3818": "pressure:inlet_aorta_br:RCR_aorta_br", + "3819": "pressure:inlet_aorta_br:RCR_aorta_br", + "3820": "pressure:inlet_aorta_br:RCR_aorta_br", + "3821": "pressure:inlet_aorta_br:RCR_aorta_br", + "3822": "pressure:inlet_aorta_br:RCR_aorta_br", + "3823": "pressure:inlet_aorta_br:RCR_aorta_br", + "3824": "pressure:inlet_aorta_br:RCR_aorta_br", + "3825": "pressure:inlet_aorta_br:RCR_aorta_br", + "3826": "pressure:inlet_aorta_br:RCR_aorta_br", + "3827": "pressure:inlet_aorta_br:RCR_aorta_br", + "3828": "pressure:inlet_aorta_br:RCR_aorta_br", + "3829": "pressure:inlet_aorta_br:RCR_aorta_br", + "3830": "pressure:inlet_aorta_br:RCR_aorta_br", + "3831": "pressure:inlet_aorta_br:RCR_aorta_br", + "3832": "pressure:inlet_aorta_br:RCR_aorta_br", + "3833": "pressure:inlet_aorta_br:RCR_aorta_br", + "3834": "pressure:inlet_aorta_br:RCR_aorta_br", + "3835": "pressure:inlet_aorta_br:RCR_aorta_br", + "3836": "pressure:inlet_aorta_br:RCR_aorta_br", + "3837": "pressure:inlet_aorta_br:RCR_aorta_br", + "3838": "pressure:inlet_aorta_br:RCR_aorta_br", + "3839": "pressure:inlet_aorta_br:RCR_aorta_br", + "3840": "pressure:inlet_aorta_br:RCR_aorta_br", + "3841": "pressure:inlet_aorta_br:RCR_aorta_br", + "3842": "pressure:inlet_aorta_br:RCR_aorta_br", + "3843": "pressure:inlet_aorta_br:RCR_aorta_br", + "3844": "pressure:inlet_aorta_br:RCR_aorta_br", + "3845": "pressure:inlet_aorta_br:RCR_aorta_br", + "3846": "pressure:inlet_aorta_br:RCR_aorta_br", + "3847": "pressure:inlet_aorta_br:RCR_aorta_br", + "3848": "pressure:inlet_aorta_br:RCR_aorta_br", + "3849": "pressure:inlet_aorta_br:RCR_aorta_br", + "3850": "pressure:inlet_aorta_br:RCR_aorta_br", + "3851": "pressure:inlet_aorta_br:RCR_aorta_br", + "3852": "pressure:inlet_aorta_br:RCR_aorta_br", + "3853": "pressure:inlet_aorta_br:RCR_aorta_br", + "3854": "pressure:inlet_aorta_br:RCR_aorta_br", + "3855": "pressure:inlet_aorta_br:RCR_aorta_br", + "3856": "pressure:inlet_aorta_br:RCR_aorta_br", + "3857": "pressure:inlet_aorta_br:RCR_aorta_br", + "3858": "pressure:inlet_aorta_br:RCR_aorta_br", + "3859": "pressure:inlet_aorta_br:RCR_aorta_br", + "3860": "pressure:inlet_aorta_br:RCR_aorta_br", + "3861": "pressure:inlet_aorta_br:RCR_aorta_br", + "3862": "pressure:inlet_aorta_br:RCR_aorta_br", + "3863": "pressure:inlet_aorta_br:RCR_aorta_br", + "3864": "pressure:inlet_aorta_br:RCR_aorta_br", + "3865": "pressure:inlet_aorta_br:RCR_aorta_br", + "3866": "pressure:inlet_aorta_br:RCR_aorta_br", + "3867": "pressure:inlet_aorta_br:RCR_aorta_br", + "3868": "pressure:inlet_aorta_br:RCR_aorta_br", + "3869": "pressure:inlet_aorta_br:RCR_aorta_br", + "3870": "pressure:inlet_aorta_br:RCR_aorta_br", + "3871": "pressure:inlet_aorta_br:RCR_aorta_br", + "3872": "pressure:inlet_aorta_br:RCR_aorta_br", + "3873": "pressure:inlet_aorta_br:RCR_aorta_br", + "3874": "pressure:inlet_aorta_br:RCR_aorta_br", + "3875": "pressure:inlet_aorta_br:RCR_aorta_br", + "3876": "pressure:inlet_aorta_br:RCR_aorta_br", + "3877": "pressure:inlet_aorta_br:RCR_aorta_br", + "3878": "pressure:inlet_aorta_br:RCR_aorta_br", + "3879": "pressure:inlet_aorta_br:RCR_aorta_br", + "3880": "pressure:inlet_aorta_br:RCR_aorta_br", + "3881": "pressure:inlet_aorta_br:RCR_aorta_br", + "3882": "pressure:inlet_aorta_br:RCR_aorta_br", + "3883": "pressure:inlet_aorta_br:RCR_aorta_br", + "3884": "pressure:inlet_aorta_br:RCR_aorta_br", + "3885": "pressure:inlet_aorta_br:RCR_aorta_br", + "3886": "pressure:inlet_aorta_br:RCR_aorta_br", + "3887": "pressure:inlet_aorta_br:RCR_aorta_br", + "3888": "pressure:inlet_aorta_br:RCR_aorta_br", + "3889": "pressure:inlet_aorta_br:RCR_aorta_br", + "3890": "pressure:inlet_aorta_br:RCR_aorta_br", + "3891": "pressure:inlet_aorta_br:RCR_aorta_br", + "3892": "pressure:inlet_aorta_br:RCR_aorta_br", + "3893": "pressure:inlet_aorta_br:RCR_aorta_br", + "3894": "pressure:inlet_aorta_br:RCR_aorta_br", + "3895": "pressure:inlet_aorta_br:RCR_aorta_br", + "3896": "pressure:inlet_aorta_br:RCR_aorta_br", + "3897": "pressure:inlet_aorta_br:RCR_aorta_br", + "3898": "pressure:inlet_aorta_br:RCR_aorta_br", + "3899": "pressure:inlet_aorta_br:RCR_aorta_br", + "3900": "pressure:inlet_aorta_br:RCR_aorta_br", + "3901": "pressure:inlet_aorta_br:RCR_aorta_br", + "3902": "pressure:inlet_aorta_br:RCR_aorta_br", + "3903": "pressure:inlet_aorta_br:RCR_aorta_br", + "3904": "pressure:inlet_aorta_br:RCR_aorta_br", + "3905": "pressure:inlet_aorta_br:RCR_aorta_br", + "3906": "pressure:inlet_aorta_br:RCR_aorta_br", + "3907": "pressure:inlet_aorta_br:RCR_aorta_br", + "3908": "pressure:inlet_aorta_br:RCR_aorta_br", + "3909": "pressure:inlet_aorta_br:RCR_aorta_br", + "3910": "pressure:inlet_aorta_br:RCR_aorta_br", + "3911": "pressure:inlet_aorta_br:RCR_aorta_br", + "3912": "pressure:inlet_aorta_br:RCR_aorta_br", + "3913": "pressure:inlet_aorta_br:RCR_aorta_br", + "3914": "pressure:inlet_aorta_br:RCR_aorta_br", + "3915": "pressure:inlet_aorta_br:RCR_aorta_br", + "3916": "pressure:inlet_aorta_br:RCR_aorta_br", + "3917": "pressure:inlet_aorta_br:RCR_aorta_br", + "3918": "pressure:inlet_aorta_br:RCR_aorta_br", + "3919": "pressure:inlet_aorta_br:RCR_aorta_br", + "3920": "pressure:inlet_aorta_br:RCR_aorta_br", + "3921": "pressure:inlet_aorta_br:RCR_aorta_br", + "3922": "pressure:inlet_aorta_br:RCR_aorta_br", + "3923": "pressure:inlet_aorta_br:RCR_aorta_br", + "3924": "pressure:inlet_aorta_br:RCR_aorta_br", + "3925": "pressure:inlet_aorta_br:RCR_aorta_br", + "3926": "pressure:inlet_aorta_br:RCR_aorta_br", + "3927": "pressure:inlet_aorta_br:RCR_aorta_br", + "3928": "pressure:inlet_aorta_br:RCR_aorta_br", + "3929": "pressure:inlet_aorta_br:RCR_aorta_br", + "3930": "pressure:inlet_aorta_br:RCR_aorta_br", + "3931": "pressure:inlet_aorta_br:RCR_aorta_br", + "3932": "pressure:inlet_aorta_br:RCR_aorta_br", + "3933": "pressure:inlet_aorta_br:RCR_aorta_br", + "3934": "pressure:inlet_aorta_br:RCR_aorta_br", + "3935": "pressure:inlet_aorta_br:RCR_aorta_br", + "3936": "pressure:inlet_aorta_br:RCR_aorta_br", + "3937": "pressure:inlet_aorta_br:RCR_aorta_br", + "3938": "pressure:inlet_aorta_br:RCR_aorta_br", + "3939": "pressure:inlet_aorta_br:RCR_aorta_br", + "3940": "pressure:inlet_aorta_br:RCR_aorta_br", + "3941": "pressure:inlet_aorta_br:RCR_aorta_br", + "3942": "pressure:inlet_aorta_br:RCR_aorta_br", + "3943": "pressure:inlet_aorta_br:RCR_aorta_br", + "3944": "pressure:inlet_aorta_br:RCR_aorta_br", + "3945": "pressure:inlet_aorta_br:RCR_aorta_br", + "3946": "pressure:inlet_aorta_br:RCR_aorta_br", + "3947": "pressure:inlet_aorta_br:RCR_aorta_br", + "3948": "pressure:inlet_aorta_br:RCR_aorta_br", + "3949": "pressure:inlet_aorta_br:RCR_aorta_br", + "3950": "pressure:inlet_aorta_br:RCR_aorta_br", + "3951": "pressure:inlet_aorta_br:RCR_aorta_br", + "3952": "pressure:inlet_aorta_br:RCR_aorta_br", + "3953": "pressure:inlet_aorta_br:RCR_aorta_br", + "3954": "pressure:inlet_aorta_br:RCR_aorta_br", + "3955": "pressure:inlet_aorta_br:RCR_aorta_br", + "3956": "pressure:inlet_aorta_br:RCR_aorta_br", + "3957": "pressure:inlet_aorta_br:RCR_aorta_br", + "3958": "pressure:inlet_aorta_br:RCR_aorta_br", + "3959": "pressure:inlet_aorta_br:RCR_aorta_br", + "3960": "pressure:inlet_aorta_br:RCR_aorta_br", + "3961": "pressure:inlet_aorta_br:RCR_aorta_br", + "3962": "pressure:inlet_aorta_br:RCR_aorta_br", + "3963": "pressure:inlet_aorta_br:RCR_aorta_br", + "3964": "pressure:inlet_aorta_br:RCR_aorta_br", + "3965": "pressure:inlet_aorta_br:RCR_aorta_br", + "3966": "pressure:inlet_aorta_br:RCR_aorta_br", + "3967": "pressure:inlet_aorta_br:RCR_aorta_br", + "3968": "pressure:inlet_aorta_br:RCR_aorta_br", + "3969": "pressure:inlet_aorta_br:RCR_aorta_br", + "3970": "pressure:inlet_aorta_br:RCR_aorta_br", + "3971": "pressure:inlet_aorta_br:RCR_aorta_br", + "3972": "pressure:inlet_aorta_br:RCR_aorta_br", + "3973": "pressure:inlet_aorta_br:RCR_aorta_br", + "3974": "pressure:inlet_aorta_br:RCR_aorta_br", + "3975": "pressure:inlet_aorta_br:RCR_aorta_br", + "3976": "pressure:inlet_aorta_br:RCR_aorta_br", + "3977": "pressure:inlet_aorta_br:RCR_aorta_br", + "3978": "pressure:inlet_aorta_br:RCR_aorta_br", + "3979": "pressure:inlet_aorta_br:RCR_aorta_br", + "3980": "pressure:inlet_aorta_br:RCR_aorta_br", + "3981": "pressure:inlet_aorta_br:RCR_aorta_br", + "3982": "pressure:inlet_aorta_br:RCR_aorta_br", + "3983": "pressure:inlet_aorta_br:RCR_aorta_br", + "3984": "pressure:inlet_aorta_br:RCR_aorta_br", + "3985": "pressure:inlet_aorta_br:RCR_aorta_br", + "3986": "pressure:inlet_aorta_br:RCR_aorta_br", + "3987": "pressure:inlet_aorta_br:RCR_aorta_br", + "3988": "pressure:inlet_aorta_br:RCR_aorta_br", + "3989": "pressure:inlet_aorta_br:RCR_aorta_br", + "3990": "pressure:inlet_aorta_br:RCR_aorta_br", + "3991": "pressure:inlet_aorta_br:RCR_aorta_br", + "3992": "pressure:inlet_aorta_br:RCR_aorta_br", + "3993": "pressure:inlet_aorta_br:RCR_aorta_br", + "3994": "pressure:inlet_aorta_br:RCR_aorta_br", + "3995": "pressure:inlet_aorta_br:RCR_aorta_br", + "3996": "pressure:inlet_aorta_br:RCR_aorta_br", + "3997": "pressure:inlet_aorta_br:RCR_aorta_br", + "3998": "pressure:inlet_aorta_br:RCR_aorta_br", + "3999": "pressure:inlet_aorta_br:RCR_aorta_br", + "4000": "flow:inlet_LCA:LCA", + "4001": "flow:inlet_LCA:LCA", + "4002": "flow:inlet_LCA:LCA", + "4003": "flow:inlet_LCA:LCA", + "4004": "flow:inlet_LCA:LCA", + "4005": "flow:inlet_LCA:LCA", + "4006": "flow:inlet_LCA:LCA", + "4007": "flow:inlet_LCA:LCA", + "4008": "flow:inlet_LCA:LCA", + "4009": "flow:inlet_LCA:LCA", + "4010": "flow:inlet_LCA:LCA", + "4011": "flow:inlet_LCA:LCA", + "4012": "flow:inlet_LCA:LCA", + "4013": "flow:inlet_LCA:LCA", + "4014": "flow:inlet_LCA:LCA", + "4015": "flow:inlet_LCA:LCA", + "4016": "flow:inlet_LCA:LCA", + "4017": "flow:inlet_LCA:LCA", + "4018": "flow:inlet_LCA:LCA", + "4019": "flow:inlet_LCA:LCA", + "4020": "flow:inlet_LCA:LCA", + "4021": "flow:inlet_LCA:LCA", + "4022": "flow:inlet_LCA:LCA", + "4023": "flow:inlet_LCA:LCA", + "4024": "flow:inlet_LCA:LCA", + "4025": "flow:inlet_LCA:LCA", + "4026": "flow:inlet_LCA:LCA", + "4027": "flow:inlet_LCA:LCA", + "4028": "flow:inlet_LCA:LCA", + "4029": "flow:inlet_LCA:LCA", + "4030": "flow:inlet_LCA:LCA", + "4031": "flow:inlet_LCA:LCA", + "4032": "flow:inlet_LCA:LCA", + "4033": "flow:inlet_LCA:LCA", + "4034": "flow:inlet_LCA:LCA", + "4035": "flow:inlet_LCA:LCA", + "4036": "flow:inlet_LCA:LCA", + "4037": "flow:inlet_LCA:LCA", + "4038": "flow:inlet_LCA:LCA", + "4039": "flow:inlet_LCA:LCA", + "4040": "flow:inlet_LCA:LCA", + "4041": "flow:inlet_LCA:LCA", + "4042": "flow:inlet_LCA:LCA", + "4043": "flow:inlet_LCA:LCA", + "4044": "flow:inlet_LCA:LCA", + "4045": "flow:inlet_LCA:LCA", + "4046": "flow:inlet_LCA:LCA", + "4047": "flow:inlet_LCA:LCA", + "4048": "flow:inlet_LCA:LCA", + "4049": "flow:inlet_LCA:LCA", + "4050": "flow:inlet_LCA:LCA", + "4051": "flow:inlet_LCA:LCA", + "4052": "flow:inlet_LCA:LCA", + "4053": "flow:inlet_LCA:LCA", + "4054": "flow:inlet_LCA:LCA", + "4055": "flow:inlet_LCA:LCA", + "4056": "flow:inlet_LCA:LCA", + "4057": "flow:inlet_LCA:LCA", + "4058": "flow:inlet_LCA:LCA", + "4059": "flow:inlet_LCA:LCA", + "4060": "flow:inlet_LCA:LCA", + "4061": "flow:inlet_LCA:LCA", + "4062": "flow:inlet_LCA:LCA", + "4063": "flow:inlet_LCA:LCA", + "4064": "flow:inlet_LCA:LCA", + "4065": "flow:inlet_LCA:LCA", + "4066": "flow:inlet_LCA:LCA", + "4067": "flow:inlet_LCA:LCA", + "4068": "flow:inlet_LCA:LCA", + "4069": "flow:inlet_LCA:LCA", + "4070": "flow:inlet_LCA:LCA", + "4071": "flow:inlet_LCA:LCA", + "4072": "flow:inlet_LCA:LCA", + "4073": "flow:inlet_LCA:LCA", + "4074": "flow:inlet_LCA:LCA", + "4075": "flow:inlet_LCA:LCA", + "4076": "flow:inlet_LCA:LCA", + "4077": "flow:inlet_LCA:LCA", + "4078": "flow:inlet_LCA:LCA", + "4079": "flow:inlet_LCA:LCA", + "4080": "flow:inlet_LCA:LCA", + "4081": "flow:inlet_LCA:LCA", + "4082": "flow:inlet_LCA:LCA", + "4083": "flow:inlet_LCA:LCA", + "4084": "flow:inlet_LCA:LCA", + "4085": "flow:inlet_LCA:LCA", + "4086": "flow:inlet_LCA:LCA", + "4087": "flow:inlet_LCA:LCA", + "4088": "flow:inlet_LCA:LCA", + "4089": "flow:inlet_LCA:LCA", + "4090": "flow:inlet_LCA:LCA", + "4091": "flow:inlet_LCA:LCA", + "4092": "flow:inlet_LCA:LCA", + "4093": "flow:inlet_LCA:LCA", + "4094": "flow:inlet_LCA:LCA", + "4095": "flow:inlet_LCA:LCA", + "4096": "flow:inlet_LCA:LCA", + "4097": "flow:inlet_LCA:LCA", + "4098": "flow:inlet_LCA:LCA", + "4099": "flow:inlet_LCA:LCA", + "4100": "flow:inlet_LCA:LCA", + "4101": "flow:inlet_LCA:LCA", + "4102": "flow:inlet_LCA:LCA", + "4103": "flow:inlet_LCA:LCA", + "4104": "flow:inlet_LCA:LCA", + "4105": "flow:inlet_LCA:LCA", + "4106": "flow:inlet_LCA:LCA", + "4107": "flow:inlet_LCA:LCA", + "4108": "flow:inlet_LCA:LCA", + "4109": "flow:inlet_LCA:LCA", + "4110": "flow:inlet_LCA:LCA", + "4111": "flow:inlet_LCA:LCA", + "4112": "flow:inlet_LCA:LCA", + "4113": "flow:inlet_LCA:LCA", + "4114": "flow:inlet_LCA:LCA", + "4115": "flow:inlet_LCA:LCA", + "4116": "flow:inlet_LCA:LCA", + "4117": "flow:inlet_LCA:LCA", + "4118": "flow:inlet_LCA:LCA", + "4119": "flow:inlet_LCA:LCA", + "4120": "flow:inlet_LCA:LCA", + "4121": "flow:inlet_LCA:LCA", + "4122": "flow:inlet_LCA:LCA", + "4123": "flow:inlet_LCA:LCA", + "4124": "flow:inlet_LCA:LCA", + "4125": "flow:inlet_LCA:LCA", + "4126": "flow:inlet_LCA:LCA", + "4127": "flow:inlet_LCA:LCA", + "4128": "flow:inlet_LCA:LCA", + "4129": "flow:inlet_LCA:LCA", + "4130": "flow:inlet_LCA:LCA", + "4131": "flow:inlet_LCA:LCA", + "4132": "flow:inlet_LCA:LCA", + "4133": "flow:inlet_LCA:LCA", + "4134": "flow:inlet_LCA:LCA", + "4135": "flow:inlet_LCA:LCA", + "4136": "flow:inlet_LCA:LCA", + "4137": "flow:inlet_LCA:LCA", + "4138": "flow:inlet_LCA:LCA", + "4139": "flow:inlet_LCA:LCA", + "4140": "flow:inlet_LCA:LCA", + "4141": "flow:inlet_LCA:LCA", + "4142": "flow:inlet_LCA:LCA", + "4143": "flow:inlet_LCA:LCA", + "4144": "flow:inlet_LCA:LCA", + "4145": "flow:inlet_LCA:LCA", + "4146": "flow:inlet_LCA:LCA", + "4147": "flow:inlet_LCA:LCA", + "4148": "flow:inlet_LCA:LCA", + "4149": "flow:inlet_LCA:LCA", + "4150": "flow:inlet_LCA:LCA", + "4151": "flow:inlet_LCA:LCA", + "4152": "flow:inlet_LCA:LCA", + "4153": "flow:inlet_LCA:LCA", + "4154": "flow:inlet_LCA:LCA", + "4155": "flow:inlet_LCA:LCA", + "4156": "flow:inlet_LCA:LCA", + "4157": "flow:inlet_LCA:LCA", + "4158": "flow:inlet_LCA:LCA", + "4159": "flow:inlet_LCA:LCA", + "4160": "flow:inlet_LCA:LCA", + "4161": "flow:inlet_LCA:LCA", + "4162": "flow:inlet_LCA:LCA", + "4163": "flow:inlet_LCA:LCA", + "4164": "flow:inlet_LCA:LCA", + "4165": "flow:inlet_LCA:LCA", + "4166": "flow:inlet_LCA:LCA", + "4167": "flow:inlet_LCA:LCA", + "4168": "flow:inlet_LCA:LCA", + "4169": "flow:inlet_LCA:LCA", + "4170": "flow:inlet_LCA:LCA", + "4171": "flow:inlet_LCA:LCA", + "4172": "flow:inlet_LCA:LCA", + "4173": "flow:inlet_LCA:LCA", + "4174": "flow:inlet_LCA:LCA", + "4175": "flow:inlet_LCA:LCA", + "4176": "flow:inlet_LCA:LCA", + "4177": "flow:inlet_LCA:LCA", + "4178": "flow:inlet_LCA:LCA", + "4179": "flow:inlet_LCA:LCA", + "4180": "flow:inlet_LCA:LCA", + "4181": "flow:inlet_LCA:LCA", + "4182": "flow:inlet_LCA:LCA", + "4183": "flow:inlet_LCA:LCA", + "4184": "flow:inlet_LCA:LCA", + "4185": "flow:inlet_LCA:LCA", + "4186": "flow:inlet_LCA:LCA", + "4187": "flow:inlet_LCA:LCA", + "4188": "flow:inlet_LCA:LCA", + "4189": "flow:inlet_LCA:LCA", + "4190": "flow:inlet_LCA:LCA", + "4191": "flow:inlet_LCA:LCA", + "4192": "flow:inlet_LCA:LCA", + "4193": "flow:inlet_LCA:LCA", + "4194": "flow:inlet_LCA:LCA", + "4195": "flow:inlet_LCA:LCA", + "4196": "flow:inlet_LCA:LCA", + "4197": "flow:inlet_LCA:LCA", + "4198": "flow:inlet_LCA:LCA", + "4199": "flow:inlet_LCA:LCA", + "4200": "flow:inlet_LCA:LCA", + "4201": "flow:inlet_LCA:LCA", + "4202": "flow:inlet_LCA:LCA", + "4203": "flow:inlet_LCA:LCA", + "4204": "flow:inlet_LCA:LCA", + "4205": "flow:inlet_LCA:LCA", + "4206": "flow:inlet_LCA:LCA", + "4207": "flow:inlet_LCA:LCA", + "4208": "flow:inlet_LCA:LCA", + "4209": "flow:inlet_LCA:LCA", + "4210": "flow:inlet_LCA:LCA", + "4211": "flow:inlet_LCA:LCA", + "4212": "flow:inlet_LCA:LCA", + "4213": "flow:inlet_LCA:LCA", + "4214": "flow:inlet_LCA:LCA", + "4215": "flow:inlet_LCA:LCA", + "4216": "flow:inlet_LCA:LCA", + "4217": "flow:inlet_LCA:LCA", + "4218": "flow:inlet_LCA:LCA", + "4219": "flow:inlet_LCA:LCA", + "4220": "flow:inlet_LCA:LCA", + "4221": "flow:inlet_LCA:LCA", + "4222": "flow:inlet_LCA:LCA", + "4223": "flow:inlet_LCA:LCA", + "4224": "flow:inlet_LCA:LCA", + "4225": "flow:inlet_LCA:LCA", + "4226": "flow:inlet_LCA:LCA", + "4227": "flow:inlet_LCA:LCA", + "4228": "flow:inlet_LCA:LCA", + "4229": "flow:inlet_LCA:LCA", + "4230": "flow:inlet_LCA:LCA", + "4231": "flow:inlet_LCA:LCA", + "4232": "flow:inlet_LCA:LCA", + "4233": "flow:inlet_LCA:LCA", + "4234": "flow:inlet_LCA:LCA", + "4235": "flow:inlet_LCA:LCA", + "4236": "flow:inlet_LCA:LCA", + "4237": "flow:inlet_LCA:LCA", + "4238": "flow:inlet_LCA:LCA", + "4239": "flow:inlet_LCA:LCA", + "4240": "flow:inlet_LCA:LCA", + "4241": "flow:inlet_LCA:LCA", + "4242": "flow:inlet_LCA:LCA", + "4243": "flow:inlet_LCA:LCA", + "4244": "flow:inlet_LCA:LCA", + "4245": "flow:inlet_LCA:LCA", + "4246": "flow:inlet_LCA:LCA", + "4247": "flow:inlet_LCA:LCA", + "4248": "flow:inlet_LCA:LCA", + "4249": "flow:inlet_LCA:LCA", + "4250": "flow:inlet_LCA:LCA", + "4251": "flow:inlet_LCA:LCA", + "4252": "flow:inlet_LCA:LCA", + "4253": "flow:inlet_LCA:LCA", + "4254": "flow:inlet_LCA:LCA", + "4255": "flow:inlet_LCA:LCA", + "4256": "flow:inlet_LCA:LCA", + "4257": "flow:inlet_LCA:LCA", + "4258": "flow:inlet_LCA:LCA", + "4259": "flow:inlet_LCA:LCA", + "4260": "flow:inlet_LCA:LCA", + "4261": "flow:inlet_LCA:LCA", + "4262": "flow:inlet_LCA:LCA", + "4263": "flow:inlet_LCA:LCA", + "4264": "flow:inlet_LCA:LCA", + "4265": "flow:inlet_LCA:LCA", + "4266": "flow:inlet_LCA:LCA", + "4267": "flow:inlet_LCA:LCA", + "4268": "flow:inlet_LCA:LCA", + "4269": "flow:inlet_LCA:LCA", + "4270": "flow:inlet_LCA:LCA", + "4271": "flow:inlet_LCA:LCA", + "4272": "flow:inlet_LCA:LCA", + "4273": "flow:inlet_LCA:LCA", + "4274": "flow:inlet_LCA:LCA", + "4275": "flow:inlet_LCA:LCA", + "4276": "flow:inlet_LCA:LCA", + "4277": "flow:inlet_LCA:LCA", + "4278": "flow:inlet_LCA:LCA", + "4279": "flow:inlet_LCA:LCA", + "4280": "flow:inlet_LCA:LCA", + "4281": "flow:inlet_LCA:LCA", + "4282": "flow:inlet_LCA:LCA", + "4283": "flow:inlet_LCA:LCA", + "4284": "flow:inlet_LCA:LCA", + "4285": "flow:inlet_LCA:LCA", + "4286": "flow:inlet_LCA:LCA", + "4287": "flow:inlet_LCA:LCA", + "4288": "flow:inlet_LCA:LCA", + "4289": "flow:inlet_LCA:LCA", + "4290": "flow:inlet_LCA:LCA", + "4291": "flow:inlet_LCA:LCA", + "4292": "flow:inlet_LCA:LCA", + "4293": "flow:inlet_LCA:LCA", + "4294": "flow:inlet_LCA:LCA", + "4295": "flow:inlet_LCA:LCA", + "4296": "flow:inlet_LCA:LCA", + "4297": "flow:inlet_LCA:LCA", + "4298": "flow:inlet_LCA:LCA", + "4299": "flow:inlet_LCA:LCA", + "4300": "flow:inlet_LCA:LCA", + "4301": "flow:inlet_LCA:LCA", + "4302": "flow:inlet_LCA:LCA", + "4303": "flow:inlet_LCA:LCA", + "4304": "flow:inlet_LCA:LCA", + "4305": "flow:inlet_LCA:LCA", + "4306": "flow:inlet_LCA:LCA", + "4307": "flow:inlet_LCA:LCA", + "4308": "flow:inlet_LCA:LCA", + "4309": "flow:inlet_LCA:LCA", + "4310": "flow:inlet_LCA:LCA", + "4311": "flow:inlet_LCA:LCA", + "4312": "flow:inlet_LCA:LCA", + "4313": "flow:inlet_LCA:LCA", + "4314": "flow:inlet_LCA:LCA", + "4315": "flow:inlet_LCA:LCA", + "4316": "flow:inlet_LCA:LCA", + "4317": "flow:inlet_LCA:LCA", + "4318": "flow:inlet_LCA:LCA", + "4319": "flow:inlet_LCA:LCA", + "4320": "flow:inlet_LCA:LCA", + "4321": "flow:inlet_LCA:LCA", + "4322": "flow:inlet_LCA:LCA", + "4323": "flow:inlet_LCA:LCA", + "4324": "flow:inlet_LCA:LCA", + "4325": "flow:inlet_LCA:LCA", + "4326": "flow:inlet_LCA:LCA", + "4327": "flow:inlet_LCA:LCA", + "4328": "flow:inlet_LCA:LCA", + "4329": "flow:inlet_LCA:LCA", + "4330": "flow:inlet_LCA:LCA", + "4331": "flow:inlet_LCA:LCA", + "4332": "flow:inlet_LCA:LCA", + "4333": "flow:inlet_LCA:LCA", + "4334": "flow:inlet_LCA:LCA", + "4335": "flow:inlet_LCA:LCA", + "4336": "flow:inlet_LCA:LCA", + "4337": "flow:inlet_LCA:LCA", + "4338": "flow:inlet_LCA:LCA", + "4339": "flow:inlet_LCA:LCA", + "4340": "flow:inlet_LCA:LCA", + "4341": "flow:inlet_LCA:LCA", + "4342": "flow:inlet_LCA:LCA", + "4343": "flow:inlet_LCA:LCA", + "4344": "flow:inlet_LCA:LCA", + "4345": "flow:inlet_LCA:LCA", + "4346": "flow:inlet_LCA:LCA", + "4347": "flow:inlet_LCA:LCA", + "4348": "flow:inlet_LCA:LCA", + "4349": "flow:inlet_LCA:LCA", + "4350": "flow:inlet_LCA:LCA", + "4351": "flow:inlet_LCA:LCA", + "4352": "flow:inlet_LCA:LCA", + "4353": "flow:inlet_LCA:LCA", + "4354": "flow:inlet_LCA:LCA", + "4355": "flow:inlet_LCA:LCA", + "4356": "flow:inlet_LCA:LCA", + "4357": "flow:inlet_LCA:LCA", + "4358": "flow:inlet_LCA:LCA", + "4359": "flow:inlet_LCA:LCA", + "4360": "flow:inlet_LCA:LCA", + "4361": "flow:inlet_LCA:LCA", + "4362": "flow:inlet_LCA:LCA", + "4363": "flow:inlet_LCA:LCA", + "4364": "flow:inlet_LCA:LCA", + "4365": "flow:inlet_LCA:LCA", + "4366": "flow:inlet_LCA:LCA", + "4367": "flow:inlet_LCA:LCA", + "4368": "flow:inlet_LCA:LCA", + "4369": "flow:inlet_LCA:LCA", + "4370": "flow:inlet_LCA:LCA", + "4371": "flow:inlet_LCA:LCA", + "4372": "flow:inlet_LCA:LCA", + "4373": "flow:inlet_LCA:LCA", + "4374": "flow:inlet_LCA:LCA", + "4375": "flow:inlet_LCA:LCA", + "4376": "flow:inlet_LCA:LCA", + "4377": "flow:inlet_LCA:LCA", + "4378": "flow:inlet_LCA:LCA", + "4379": "flow:inlet_LCA:LCA", + "4380": "flow:inlet_LCA:LCA", + "4381": "flow:inlet_LCA:LCA", + "4382": "flow:inlet_LCA:LCA", + "4383": "flow:inlet_LCA:LCA", + "4384": "flow:inlet_LCA:LCA", + "4385": "flow:inlet_LCA:LCA", + "4386": "flow:inlet_LCA:LCA", + "4387": "flow:inlet_LCA:LCA", + "4388": "flow:inlet_LCA:LCA", + "4389": "flow:inlet_LCA:LCA", + "4390": "flow:inlet_LCA:LCA", + "4391": "flow:inlet_LCA:LCA", + "4392": "flow:inlet_LCA:LCA", + "4393": "flow:inlet_LCA:LCA", + "4394": "flow:inlet_LCA:LCA", + "4395": "flow:inlet_LCA:LCA", + "4396": "flow:inlet_LCA:LCA", + "4397": "flow:inlet_LCA:LCA", + "4398": "flow:inlet_LCA:LCA", + "4399": "flow:inlet_LCA:LCA", + "4400": "flow:inlet_LCA:LCA", + "4401": "flow:inlet_LCA:LCA", + "4402": "flow:inlet_LCA:LCA", + "4403": "flow:inlet_LCA:LCA", + "4404": "flow:inlet_LCA:LCA", + "4405": "flow:inlet_LCA:LCA", + "4406": "flow:inlet_LCA:LCA", + "4407": "flow:inlet_LCA:LCA", + "4408": "flow:inlet_LCA:LCA", + "4409": "flow:inlet_LCA:LCA", + "4410": "flow:inlet_LCA:LCA", + "4411": "flow:inlet_LCA:LCA", + "4412": "flow:inlet_LCA:LCA", + "4413": "flow:inlet_LCA:LCA", + "4414": "flow:inlet_LCA:LCA", + "4415": "flow:inlet_LCA:LCA", + "4416": "flow:inlet_LCA:LCA", + "4417": "flow:inlet_LCA:LCA", + "4418": "flow:inlet_LCA:LCA", + "4419": "flow:inlet_LCA:LCA", + "4420": "flow:inlet_LCA:LCA", + "4421": "flow:inlet_LCA:LCA", + "4422": "flow:inlet_LCA:LCA", + "4423": "flow:inlet_LCA:LCA", + "4424": "flow:inlet_LCA:LCA", + "4425": "flow:inlet_LCA:LCA", + "4426": "flow:inlet_LCA:LCA", + "4427": "flow:inlet_LCA:LCA", + "4428": "flow:inlet_LCA:LCA", + "4429": "flow:inlet_LCA:LCA", + "4430": "flow:inlet_LCA:LCA", + "4431": "flow:inlet_LCA:LCA", + "4432": "flow:inlet_LCA:LCA", + "4433": "flow:inlet_LCA:LCA", + "4434": "flow:inlet_LCA:LCA", + "4435": "flow:inlet_LCA:LCA", + "4436": "flow:inlet_LCA:LCA", + "4437": "flow:inlet_LCA:LCA", + "4438": "flow:inlet_LCA:LCA", + "4439": "flow:inlet_LCA:LCA", + "4440": "flow:inlet_LCA:LCA", + "4441": "flow:inlet_LCA:LCA", + "4442": "flow:inlet_LCA:LCA", + "4443": "flow:inlet_LCA:LCA", + "4444": "flow:inlet_LCA:LCA", + "4445": "flow:inlet_LCA:LCA", + "4446": "flow:inlet_LCA:LCA", + "4447": "flow:inlet_LCA:LCA", + "4448": "flow:inlet_LCA:LCA", + "4449": "flow:inlet_LCA:LCA", + "4450": "flow:inlet_LCA:LCA", + "4451": "flow:inlet_LCA:LCA", + "4452": "flow:inlet_LCA:LCA", + "4453": "flow:inlet_LCA:LCA", + "4454": "flow:inlet_LCA:LCA", + "4455": "flow:inlet_LCA:LCA", + "4456": "flow:inlet_LCA:LCA", + "4457": "flow:inlet_LCA:LCA", + "4458": "flow:inlet_LCA:LCA", + "4459": "flow:inlet_LCA:LCA", + "4460": "flow:inlet_LCA:LCA", + "4461": "flow:inlet_LCA:LCA", + "4462": "flow:inlet_LCA:LCA", + "4463": "flow:inlet_LCA:LCA", + "4464": "flow:inlet_LCA:LCA", + "4465": "flow:inlet_LCA:LCA", + "4466": "flow:inlet_LCA:LCA", + "4467": "flow:inlet_LCA:LCA", + "4468": "flow:inlet_LCA:LCA", + "4469": "flow:inlet_LCA:LCA", + "4470": "flow:inlet_LCA:LCA", + "4471": "flow:inlet_LCA:LCA", + "4472": "flow:inlet_LCA:LCA", + "4473": "flow:inlet_LCA:LCA", + "4474": "flow:inlet_LCA:LCA", + "4475": "flow:inlet_LCA:LCA", + "4476": "flow:inlet_LCA:LCA", + "4477": "flow:inlet_LCA:LCA", + "4478": "flow:inlet_LCA:LCA", + "4479": "flow:inlet_LCA:LCA", + "4480": "flow:inlet_LCA:LCA", + "4481": "flow:inlet_LCA:LCA", + "4482": "flow:inlet_LCA:LCA", + "4483": "flow:inlet_LCA:LCA", + "4484": "flow:inlet_LCA:LCA", + "4485": "flow:inlet_LCA:LCA", + "4486": "flow:inlet_LCA:LCA", + "4487": "flow:inlet_LCA:LCA", + "4488": "flow:inlet_LCA:LCA", + "4489": "flow:inlet_LCA:LCA", + "4490": "flow:inlet_LCA:LCA", + "4491": "flow:inlet_LCA:LCA", + "4492": "flow:inlet_LCA:LCA", + "4493": "flow:inlet_LCA:LCA", + "4494": "flow:inlet_LCA:LCA", + "4495": "flow:inlet_LCA:LCA", + "4496": "flow:inlet_LCA:LCA", + "4497": "flow:inlet_LCA:LCA", + "4498": "flow:inlet_LCA:LCA", + "4499": "flow:inlet_LCA:LCA", + "4500": "flow:inlet_LCA:LCA", + "4501": "flow:inlet_LCA:LCA", + "4502": "flow:inlet_LCA:LCA", + "4503": "flow:inlet_LCA:LCA", + "4504": "flow:inlet_LCA:LCA", + "4505": "flow:inlet_LCA:LCA", + "4506": "flow:inlet_LCA:LCA", + "4507": "flow:inlet_LCA:LCA", + "4508": "flow:inlet_LCA:LCA", + "4509": "flow:inlet_LCA:LCA", + "4510": "flow:inlet_LCA:LCA", + "4511": "flow:inlet_LCA:LCA", + "4512": "flow:inlet_LCA:LCA", + "4513": "flow:inlet_LCA:LCA", + "4514": "flow:inlet_LCA:LCA", + "4515": "flow:inlet_LCA:LCA", + "4516": "flow:inlet_LCA:LCA", + "4517": "flow:inlet_LCA:LCA", + "4518": "flow:inlet_LCA:LCA", + "4519": "flow:inlet_LCA:LCA", + "4520": "flow:inlet_LCA:LCA", + "4521": "flow:inlet_LCA:LCA", + "4522": "flow:inlet_LCA:LCA", + "4523": "flow:inlet_LCA:LCA", + "4524": "flow:inlet_LCA:LCA", + "4525": "flow:inlet_LCA:LCA", + "4526": "flow:inlet_LCA:LCA", + "4527": "flow:inlet_LCA:LCA", + "4528": "flow:inlet_LCA:LCA", + "4529": "flow:inlet_LCA:LCA", + "4530": "flow:inlet_LCA:LCA", + "4531": "flow:inlet_LCA:LCA", + "4532": "flow:inlet_LCA:LCA", + "4533": "flow:inlet_LCA:LCA", + "4534": "flow:inlet_LCA:LCA", + "4535": "flow:inlet_LCA:LCA", + "4536": "flow:inlet_LCA:LCA", + "4537": "flow:inlet_LCA:LCA", + "4538": "flow:inlet_LCA:LCA", + "4539": "flow:inlet_LCA:LCA", + "4540": "flow:inlet_LCA:LCA", + "4541": "flow:inlet_LCA:LCA", + "4542": "flow:inlet_LCA:LCA", + "4543": "flow:inlet_LCA:LCA", + "4544": "flow:inlet_LCA:LCA", + "4545": "flow:inlet_LCA:LCA", + "4546": "flow:inlet_LCA:LCA", + "4547": "flow:inlet_LCA:LCA", + "4548": "flow:inlet_LCA:LCA", + "4549": "flow:inlet_LCA:LCA", + "4550": "flow:inlet_LCA:LCA", + "4551": "flow:inlet_LCA:LCA", + "4552": "flow:inlet_LCA:LCA", + "4553": "flow:inlet_LCA:LCA", + "4554": "flow:inlet_LCA:LCA", + "4555": "flow:inlet_LCA:LCA", + "4556": "flow:inlet_LCA:LCA", + "4557": "flow:inlet_LCA:LCA", + "4558": "flow:inlet_LCA:LCA", + "4559": "flow:inlet_LCA:LCA", + "4560": "flow:inlet_LCA:LCA", + "4561": "flow:inlet_LCA:LCA", + "4562": "flow:inlet_LCA:LCA", + "4563": "flow:inlet_LCA:LCA", + "4564": "flow:inlet_LCA:LCA", + "4565": "flow:inlet_LCA:LCA", + "4566": "flow:inlet_LCA:LCA", + "4567": "flow:inlet_LCA:LCA", + "4568": "flow:inlet_LCA:LCA", + "4569": "flow:inlet_LCA:LCA", + "4570": "flow:inlet_LCA:LCA", + "4571": "flow:inlet_LCA:LCA", + "4572": "flow:inlet_LCA:LCA", + "4573": "flow:inlet_LCA:LCA", + "4574": "flow:inlet_LCA:LCA", + "4575": "flow:inlet_LCA:LCA", + "4576": "flow:inlet_LCA:LCA", + "4577": "flow:inlet_LCA:LCA", + "4578": "flow:inlet_LCA:LCA", + "4579": "flow:inlet_LCA:LCA", + "4580": "flow:inlet_LCA:LCA", + "4581": "flow:inlet_LCA:LCA", + "4582": "flow:inlet_LCA:LCA", + "4583": "flow:inlet_LCA:LCA", + "4584": "flow:inlet_LCA:LCA", + "4585": "flow:inlet_LCA:LCA", + "4586": "flow:inlet_LCA:LCA", + "4587": "flow:inlet_LCA:LCA", + "4588": "flow:inlet_LCA:LCA", + "4589": "flow:inlet_LCA:LCA", + "4590": "flow:inlet_LCA:LCA", + "4591": "flow:inlet_LCA:LCA", + "4592": "flow:inlet_LCA:LCA", + "4593": "flow:inlet_LCA:LCA", + "4594": "flow:inlet_LCA:LCA", + "4595": "flow:inlet_LCA:LCA", + "4596": "flow:inlet_LCA:LCA", + "4597": "flow:inlet_LCA:LCA", + "4598": "flow:inlet_LCA:LCA", + "4599": "flow:inlet_LCA:LCA", + "4600": "flow:inlet_LCA:LCA", + "4601": "flow:inlet_LCA:LCA", + "4602": "flow:inlet_LCA:LCA", + "4603": "flow:inlet_LCA:LCA", + "4604": "flow:inlet_LCA:LCA", + "4605": "flow:inlet_LCA:LCA", + "4606": "flow:inlet_LCA:LCA", + "4607": "flow:inlet_LCA:LCA", + "4608": "flow:inlet_LCA:LCA", + "4609": "flow:inlet_LCA:LCA", + "4610": "flow:inlet_LCA:LCA", + "4611": "flow:inlet_LCA:LCA", + "4612": "flow:inlet_LCA:LCA", + "4613": "flow:inlet_LCA:LCA", + "4614": "flow:inlet_LCA:LCA", + "4615": "flow:inlet_LCA:LCA", + "4616": "flow:inlet_LCA:LCA", + "4617": "flow:inlet_LCA:LCA", + "4618": "flow:inlet_LCA:LCA", + "4619": "flow:inlet_LCA:LCA", + "4620": "flow:inlet_LCA:LCA", + "4621": "flow:inlet_LCA:LCA", + "4622": "flow:inlet_LCA:LCA", + "4623": "flow:inlet_LCA:LCA", + "4624": "flow:inlet_LCA:LCA", + "4625": "flow:inlet_LCA:LCA", + "4626": "flow:inlet_LCA:LCA", + "4627": "flow:inlet_LCA:LCA", + "4628": "flow:inlet_LCA:LCA", + "4629": "flow:inlet_LCA:LCA", + "4630": "flow:inlet_LCA:LCA", + "4631": "flow:inlet_LCA:LCA", + "4632": "flow:inlet_LCA:LCA", + "4633": "flow:inlet_LCA:LCA", + "4634": "flow:inlet_LCA:LCA", + "4635": "flow:inlet_LCA:LCA", + "4636": "flow:inlet_LCA:LCA", + "4637": "flow:inlet_LCA:LCA", + "4638": "flow:inlet_LCA:LCA", + "4639": "flow:inlet_LCA:LCA", + "4640": "flow:inlet_LCA:LCA", + "4641": "flow:inlet_LCA:LCA", + "4642": "flow:inlet_LCA:LCA", + "4643": "flow:inlet_LCA:LCA", + "4644": "flow:inlet_LCA:LCA", + "4645": "flow:inlet_LCA:LCA", + "4646": "flow:inlet_LCA:LCA", + "4647": "flow:inlet_LCA:LCA", + "4648": "flow:inlet_LCA:LCA", + "4649": "flow:inlet_LCA:LCA", + "4650": "flow:inlet_LCA:LCA", + "4651": "flow:inlet_LCA:LCA", + "4652": "flow:inlet_LCA:LCA", + "4653": "flow:inlet_LCA:LCA", + "4654": "flow:inlet_LCA:LCA", + "4655": "flow:inlet_LCA:LCA", + "4656": "flow:inlet_LCA:LCA", + "4657": "flow:inlet_LCA:LCA", + "4658": "flow:inlet_LCA:LCA", + "4659": "flow:inlet_LCA:LCA", + "4660": "flow:inlet_LCA:LCA", + "4661": "flow:inlet_LCA:LCA", + "4662": "flow:inlet_LCA:LCA", + "4663": "flow:inlet_LCA:LCA", + "4664": "flow:inlet_LCA:LCA", + "4665": "flow:inlet_LCA:LCA", + "4666": "flow:inlet_LCA:LCA", + "4667": "flow:inlet_LCA:LCA", + "4668": "flow:inlet_LCA:LCA", + "4669": "flow:inlet_LCA:LCA", + "4670": "flow:inlet_LCA:LCA", + "4671": "flow:inlet_LCA:LCA", + "4672": "flow:inlet_LCA:LCA", + "4673": "flow:inlet_LCA:LCA", + "4674": "flow:inlet_LCA:LCA", + "4675": "flow:inlet_LCA:LCA", + "4676": "flow:inlet_LCA:LCA", + "4677": "flow:inlet_LCA:LCA", + "4678": "flow:inlet_LCA:LCA", + "4679": "flow:inlet_LCA:LCA", + "4680": "flow:inlet_LCA:LCA", + "4681": "flow:inlet_LCA:LCA", + "4682": "flow:inlet_LCA:LCA", + "4683": "flow:inlet_LCA:LCA", + "4684": "flow:inlet_LCA:LCA", + "4685": "flow:inlet_LCA:LCA", + "4686": "flow:inlet_LCA:LCA", + "4687": "flow:inlet_LCA:LCA", + "4688": "flow:inlet_LCA:LCA", + "4689": "flow:inlet_LCA:LCA", + "4690": "flow:inlet_LCA:LCA", + "4691": "flow:inlet_LCA:LCA", + "4692": "flow:inlet_LCA:LCA", + "4693": "flow:inlet_LCA:LCA", + "4694": "flow:inlet_LCA:LCA", + "4695": "flow:inlet_LCA:LCA", + "4696": "flow:inlet_LCA:LCA", + "4697": "flow:inlet_LCA:LCA", + "4698": "flow:inlet_LCA:LCA", + "4699": "flow:inlet_LCA:LCA", + "4700": "flow:inlet_LCA:LCA", + "4701": "flow:inlet_LCA:LCA", + "4702": "flow:inlet_LCA:LCA", + "4703": "flow:inlet_LCA:LCA", + "4704": "flow:inlet_LCA:LCA", + "4705": "flow:inlet_LCA:LCA", + "4706": "flow:inlet_LCA:LCA", + "4707": "flow:inlet_LCA:LCA", + "4708": "flow:inlet_LCA:LCA", + "4709": "flow:inlet_LCA:LCA", + "4710": "flow:inlet_LCA:LCA", + "4711": "flow:inlet_LCA:LCA", + "4712": "flow:inlet_LCA:LCA", + "4713": "flow:inlet_LCA:LCA", + "4714": "flow:inlet_LCA:LCA", + "4715": "flow:inlet_LCA:LCA", + "4716": "flow:inlet_LCA:LCA", + "4717": "flow:inlet_LCA:LCA", + "4718": "flow:inlet_LCA:LCA", + "4719": "flow:inlet_LCA:LCA", + "4720": "flow:inlet_LCA:LCA", + "4721": "flow:inlet_LCA:LCA", + "4722": "flow:inlet_LCA:LCA", + "4723": "flow:inlet_LCA:LCA", + "4724": "flow:inlet_LCA:LCA", + "4725": "flow:inlet_LCA:LCA", + "4726": "flow:inlet_LCA:LCA", + "4727": "flow:inlet_LCA:LCA", + "4728": "flow:inlet_LCA:LCA", + "4729": "flow:inlet_LCA:LCA", + "4730": "flow:inlet_LCA:LCA", + "4731": "flow:inlet_LCA:LCA", + "4732": "flow:inlet_LCA:LCA", + "4733": "flow:inlet_LCA:LCA", + "4734": "flow:inlet_LCA:LCA", + "4735": "flow:inlet_LCA:LCA", + "4736": "flow:inlet_LCA:LCA", + "4737": "flow:inlet_LCA:LCA", + "4738": "flow:inlet_LCA:LCA", + "4739": "flow:inlet_LCA:LCA", + "4740": "flow:inlet_LCA:LCA", + "4741": "flow:inlet_LCA:LCA", + "4742": "flow:inlet_LCA:LCA", + "4743": "flow:inlet_LCA:LCA", + "4744": "flow:inlet_LCA:LCA", + "4745": "flow:inlet_LCA:LCA", + "4746": "flow:inlet_LCA:LCA", + "4747": "flow:inlet_LCA:LCA", + "4748": "flow:inlet_LCA:LCA", + "4749": "flow:inlet_LCA:LCA", + "4750": "flow:inlet_LCA:LCA", + "4751": "flow:inlet_LCA:LCA", + "4752": "flow:inlet_LCA:LCA", + "4753": "flow:inlet_LCA:LCA", + "4754": "flow:inlet_LCA:LCA", + "4755": "flow:inlet_LCA:LCA", + "4756": "flow:inlet_LCA:LCA", + "4757": "flow:inlet_LCA:LCA", + "4758": "flow:inlet_LCA:LCA", + "4759": "flow:inlet_LCA:LCA", + "4760": "flow:inlet_LCA:LCA", + "4761": "flow:inlet_LCA:LCA", + "4762": "flow:inlet_LCA:LCA", + "4763": "flow:inlet_LCA:LCA", + "4764": "flow:inlet_LCA:LCA", + "4765": "flow:inlet_LCA:LCA", + "4766": "flow:inlet_LCA:LCA", + "4767": "flow:inlet_LCA:LCA", + "4768": "flow:inlet_LCA:LCA", + "4769": "flow:inlet_LCA:LCA", + "4770": "flow:inlet_LCA:LCA", + "4771": "flow:inlet_LCA:LCA", + "4772": "flow:inlet_LCA:LCA", + "4773": "flow:inlet_LCA:LCA", + "4774": "flow:inlet_LCA:LCA", + "4775": "flow:inlet_LCA:LCA", + "4776": "flow:inlet_LCA:LCA", + "4777": "flow:inlet_LCA:LCA", + "4778": "flow:inlet_LCA:LCA", + "4779": "flow:inlet_LCA:LCA", + "4780": "flow:inlet_LCA:LCA", + "4781": "flow:inlet_LCA:LCA", + "4782": "flow:inlet_LCA:LCA", + "4783": "flow:inlet_LCA:LCA", + "4784": "flow:inlet_LCA:LCA", + "4785": "flow:inlet_LCA:LCA", + "4786": "flow:inlet_LCA:LCA", + "4787": "flow:inlet_LCA:LCA", + "4788": "flow:inlet_LCA:LCA", + "4789": "flow:inlet_LCA:LCA", + "4790": "flow:inlet_LCA:LCA", + "4791": "flow:inlet_LCA:LCA", + "4792": "flow:inlet_LCA:LCA", + "4793": "flow:inlet_LCA:LCA", + "4794": "flow:inlet_LCA:LCA", + "4795": "flow:inlet_LCA:LCA", + "4796": "flow:inlet_LCA:LCA", + "4797": "flow:inlet_LCA:LCA", + "4798": "flow:inlet_LCA:LCA", + "4799": "flow:inlet_LCA:LCA", + "4800": "flow:inlet_LCA:LCA", + "4801": "flow:inlet_LCA:LCA", + "4802": "flow:inlet_LCA:LCA", + "4803": "flow:inlet_LCA:LCA", + "4804": "flow:inlet_LCA:LCA", + "4805": "flow:inlet_LCA:LCA", + "4806": "flow:inlet_LCA:LCA", + "4807": "flow:inlet_LCA:LCA", + "4808": "flow:inlet_LCA:LCA", + "4809": "flow:inlet_LCA:LCA", + "4810": "flow:inlet_LCA:LCA", + "4811": "flow:inlet_LCA:LCA", + "4812": "flow:inlet_LCA:LCA", + "4813": "flow:inlet_LCA:LCA", + "4814": "flow:inlet_LCA:LCA", + "4815": "flow:inlet_LCA:LCA", + "4816": "flow:inlet_LCA:LCA", + "4817": "flow:inlet_LCA:LCA", + "4818": "flow:inlet_LCA:LCA", + "4819": "flow:inlet_LCA:LCA", + "4820": "flow:inlet_LCA:LCA", + "4821": "flow:inlet_LCA:LCA", + "4822": "flow:inlet_LCA:LCA", + "4823": "flow:inlet_LCA:LCA", + "4824": "flow:inlet_LCA:LCA", + "4825": "flow:inlet_LCA:LCA", + "4826": "flow:inlet_LCA:LCA", + "4827": "flow:inlet_LCA:LCA", + "4828": "flow:inlet_LCA:LCA", + "4829": "flow:inlet_LCA:LCA", + "4830": "flow:inlet_LCA:LCA", + "4831": "flow:inlet_LCA:LCA", + "4832": "flow:inlet_LCA:LCA", + "4833": "flow:inlet_LCA:LCA", + "4834": "flow:inlet_LCA:LCA", + "4835": "flow:inlet_LCA:LCA", + "4836": "flow:inlet_LCA:LCA", + "4837": "flow:inlet_LCA:LCA", + "4838": "flow:inlet_LCA:LCA", + "4839": "flow:inlet_LCA:LCA", + "4840": "flow:inlet_LCA:LCA", + "4841": "flow:inlet_LCA:LCA", + "4842": "flow:inlet_LCA:LCA", + "4843": "flow:inlet_LCA:LCA", + "4844": "flow:inlet_LCA:LCA", + "4845": "flow:inlet_LCA:LCA", + "4846": "flow:inlet_LCA:LCA", + "4847": "flow:inlet_LCA:LCA", + "4848": "flow:inlet_LCA:LCA", + "4849": "flow:inlet_LCA:LCA", + "4850": "flow:inlet_LCA:LCA", + "4851": "flow:inlet_LCA:LCA", + "4852": "flow:inlet_LCA:LCA", + "4853": "flow:inlet_LCA:LCA", + "4854": "flow:inlet_LCA:LCA", + "4855": "flow:inlet_LCA:LCA", + "4856": "flow:inlet_LCA:LCA", + "4857": "flow:inlet_LCA:LCA", + "4858": "flow:inlet_LCA:LCA", + "4859": "flow:inlet_LCA:LCA", + "4860": "flow:inlet_LCA:LCA", + "4861": "flow:inlet_LCA:LCA", + "4862": "flow:inlet_LCA:LCA", + "4863": "flow:inlet_LCA:LCA", + "4864": "flow:inlet_LCA:LCA", + "4865": "flow:inlet_LCA:LCA", + "4866": "flow:inlet_LCA:LCA", + "4867": "flow:inlet_LCA:LCA", + "4868": "flow:inlet_LCA:LCA", + "4869": "flow:inlet_LCA:LCA", + "4870": "flow:inlet_LCA:LCA", + "4871": "flow:inlet_LCA:LCA", + "4872": "flow:inlet_LCA:LCA", + "4873": "flow:inlet_LCA:LCA", + "4874": "flow:inlet_LCA:LCA", + "4875": "flow:inlet_LCA:LCA", + "4876": "flow:inlet_LCA:LCA", + "4877": "flow:inlet_LCA:LCA", + "4878": "flow:inlet_LCA:LCA", + "4879": "flow:inlet_LCA:LCA", + "4880": "flow:inlet_LCA:LCA", + "4881": "flow:inlet_LCA:LCA", + "4882": "flow:inlet_LCA:LCA", + "4883": "flow:inlet_LCA:LCA", + "4884": "flow:inlet_LCA:LCA", + "4885": "flow:inlet_LCA:LCA", + "4886": "flow:inlet_LCA:LCA", + "4887": "flow:inlet_LCA:LCA", + "4888": "flow:inlet_LCA:LCA", + "4889": "flow:inlet_LCA:LCA", + "4890": "flow:inlet_LCA:LCA", + "4891": "flow:inlet_LCA:LCA", + "4892": "flow:inlet_LCA:LCA", + "4893": "flow:inlet_LCA:LCA", + "4894": "flow:inlet_LCA:LCA", + "4895": "flow:inlet_LCA:LCA", + "4896": "flow:inlet_LCA:LCA", + "4897": "flow:inlet_LCA:LCA", + "4898": "flow:inlet_LCA:LCA", + "4899": "flow:inlet_LCA:LCA", + "4900": "flow:inlet_LCA:LCA", + "4901": "flow:inlet_LCA:LCA", + "4902": "flow:inlet_LCA:LCA", + "4903": "flow:inlet_LCA:LCA", + "4904": "flow:inlet_LCA:LCA", + "4905": "flow:inlet_LCA:LCA", + "4906": "flow:inlet_LCA:LCA", + "4907": "flow:inlet_LCA:LCA", + "4908": "flow:inlet_LCA:LCA", + "4909": "flow:inlet_LCA:LCA", + "4910": "flow:inlet_LCA:LCA", + "4911": "flow:inlet_LCA:LCA", + "4912": "flow:inlet_LCA:LCA", + "4913": "flow:inlet_LCA:LCA", + "4914": "flow:inlet_LCA:LCA", + "4915": "flow:inlet_LCA:LCA", + "4916": "flow:inlet_LCA:LCA", + "4917": "flow:inlet_LCA:LCA", + "4918": "flow:inlet_LCA:LCA", + "4919": "flow:inlet_LCA:LCA", + "4920": "flow:inlet_LCA:LCA", + "4921": "flow:inlet_LCA:LCA", + "4922": "flow:inlet_LCA:LCA", + "4923": "flow:inlet_LCA:LCA", + "4924": "flow:inlet_LCA:LCA", + "4925": "flow:inlet_LCA:LCA", + "4926": "flow:inlet_LCA:LCA", + "4927": "flow:inlet_LCA:LCA", + "4928": "flow:inlet_LCA:LCA", + "4929": "flow:inlet_LCA:LCA", + "4930": "flow:inlet_LCA:LCA", + "4931": "flow:inlet_LCA:LCA", + "4932": "flow:inlet_LCA:LCA", + "4933": "flow:inlet_LCA:LCA", + "4934": "flow:inlet_LCA:LCA", + "4935": "flow:inlet_LCA:LCA", + "4936": "flow:inlet_LCA:LCA", + "4937": "flow:inlet_LCA:LCA", + "4938": "flow:inlet_LCA:LCA", + "4939": "flow:inlet_LCA:LCA", + "4940": "flow:inlet_LCA:LCA", + "4941": "flow:inlet_LCA:LCA", + "4942": "flow:inlet_LCA:LCA", + "4943": "flow:inlet_LCA:LCA", + "4944": "flow:inlet_LCA:LCA", + "4945": "flow:inlet_LCA:LCA", + "4946": "flow:inlet_LCA:LCA", + "4947": "flow:inlet_LCA:LCA", + "4948": "flow:inlet_LCA:LCA", + "4949": "flow:inlet_LCA:LCA", + "4950": "flow:inlet_LCA:LCA", + "4951": "flow:inlet_LCA:LCA", + "4952": "flow:inlet_LCA:LCA", + "4953": "flow:inlet_LCA:LCA", + "4954": "flow:inlet_LCA:LCA", + "4955": "flow:inlet_LCA:LCA", + "4956": "flow:inlet_LCA:LCA", + "4957": "flow:inlet_LCA:LCA", + "4958": "flow:inlet_LCA:LCA", + "4959": "flow:inlet_LCA:LCA", + "4960": "flow:inlet_LCA:LCA", + "4961": "flow:inlet_LCA:LCA", + "4962": "flow:inlet_LCA:LCA", + "4963": "flow:inlet_LCA:LCA", + "4964": "flow:inlet_LCA:LCA", + "4965": "flow:inlet_LCA:LCA", + "4966": "flow:inlet_LCA:LCA", + "4967": "flow:inlet_LCA:LCA", + "4968": "flow:inlet_LCA:LCA", + "4969": "flow:inlet_LCA:LCA", + "4970": "flow:inlet_LCA:LCA", + "4971": "flow:inlet_LCA:LCA", + "4972": "flow:inlet_LCA:LCA", + "4973": "flow:inlet_LCA:LCA", + "4974": "flow:inlet_LCA:LCA", + "4975": "flow:inlet_LCA:LCA", + "4976": "flow:inlet_LCA:LCA", + "4977": "flow:inlet_LCA:LCA", + "4978": "flow:inlet_LCA:LCA", + "4979": "flow:inlet_LCA:LCA", + "4980": "flow:inlet_LCA:LCA", + "4981": "flow:inlet_LCA:LCA", + "4982": "flow:inlet_LCA:LCA", + "4983": "flow:inlet_LCA:LCA", + "4984": "flow:inlet_LCA:LCA", + "4985": "flow:inlet_LCA:LCA", + "4986": "flow:inlet_LCA:LCA", + "4987": "flow:inlet_LCA:LCA", + "4988": "flow:inlet_LCA:LCA", + "4989": "flow:inlet_LCA:LCA", + "4990": "flow:inlet_LCA:LCA", + "4991": "flow:inlet_LCA:LCA", + "4992": "flow:inlet_LCA:LCA", + "4993": "flow:inlet_LCA:LCA", + "4994": "flow:inlet_LCA:LCA", + "4995": "flow:inlet_LCA:LCA", + "4996": "flow:inlet_LCA:LCA", + "4997": "flow:inlet_LCA:LCA", + "4998": "flow:inlet_LCA:LCA", + "4999": "flow:inlet_LCA:LCA", + "5000": "pressure:inlet_LCA:LCA", + "5001": "pressure:inlet_LCA:LCA", + "5002": "pressure:inlet_LCA:LCA", + "5003": "pressure:inlet_LCA:LCA", + "5004": "pressure:inlet_LCA:LCA", + "5005": "pressure:inlet_LCA:LCA", + "5006": "pressure:inlet_LCA:LCA", + "5007": "pressure:inlet_LCA:LCA", + "5008": "pressure:inlet_LCA:LCA", + "5009": "pressure:inlet_LCA:LCA", + "5010": "pressure:inlet_LCA:LCA", + "5011": "pressure:inlet_LCA:LCA", + "5012": "pressure:inlet_LCA:LCA", + "5013": "pressure:inlet_LCA:LCA", + "5014": "pressure:inlet_LCA:LCA", + "5015": "pressure:inlet_LCA:LCA", + "5016": "pressure:inlet_LCA:LCA", + "5017": "pressure:inlet_LCA:LCA", + "5018": "pressure:inlet_LCA:LCA", + "5019": "pressure:inlet_LCA:LCA", + "5020": "pressure:inlet_LCA:LCA", + "5021": "pressure:inlet_LCA:LCA", + "5022": "pressure:inlet_LCA:LCA", + "5023": "pressure:inlet_LCA:LCA", + "5024": "pressure:inlet_LCA:LCA", + "5025": "pressure:inlet_LCA:LCA", + "5026": "pressure:inlet_LCA:LCA", + "5027": "pressure:inlet_LCA:LCA", + "5028": "pressure:inlet_LCA:LCA", + "5029": "pressure:inlet_LCA:LCA", + "5030": "pressure:inlet_LCA:LCA", + "5031": "pressure:inlet_LCA:LCA", + "5032": "pressure:inlet_LCA:LCA", + "5033": "pressure:inlet_LCA:LCA", + "5034": "pressure:inlet_LCA:LCA", + "5035": "pressure:inlet_LCA:LCA", + "5036": "pressure:inlet_LCA:LCA", + "5037": "pressure:inlet_LCA:LCA", + "5038": "pressure:inlet_LCA:LCA", + "5039": "pressure:inlet_LCA:LCA", + "5040": "pressure:inlet_LCA:LCA", + "5041": "pressure:inlet_LCA:LCA", + "5042": "pressure:inlet_LCA:LCA", + "5043": "pressure:inlet_LCA:LCA", + "5044": "pressure:inlet_LCA:LCA", + "5045": "pressure:inlet_LCA:LCA", + "5046": "pressure:inlet_LCA:LCA", + "5047": "pressure:inlet_LCA:LCA", + "5048": "pressure:inlet_LCA:LCA", + "5049": "pressure:inlet_LCA:LCA", + "5050": "pressure:inlet_LCA:LCA", + "5051": "pressure:inlet_LCA:LCA", + "5052": "pressure:inlet_LCA:LCA", + "5053": "pressure:inlet_LCA:LCA", + "5054": "pressure:inlet_LCA:LCA", + "5055": "pressure:inlet_LCA:LCA", + "5056": "pressure:inlet_LCA:LCA", + "5057": "pressure:inlet_LCA:LCA", + "5058": "pressure:inlet_LCA:LCA", + "5059": "pressure:inlet_LCA:LCA", + "5060": "pressure:inlet_LCA:LCA", + "5061": "pressure:inlet_LCA:LCA", + "5062": "pressure:inlet_LCA:LCA", + "5063": "pressure:inlet_LCA:LCA", + "5064": "pressure:inlet_LCA:LCA", + "5065": "pressure:inlet_LCA:LCA", + "5066": "pressure:inlet_LCA:LCA", + "5067": "pressure:inlet_LCA:LCA", + "5068": "pressure:inlet_LCA:LCA", + "5069": "pressure:inlet_LCA:LCA", + "5070": "pressure:inlet_LCA:LCA", + "5071": "pressure:inlet_LCA:LCA", + "5072": "pressure:inlet_LCA:LCA", + "5073": "pressure:inlet_LCA:LCA", + "5074": "pressure:inlet_LCA:LCA", + "5075": "pressure:inlet_LCA:LCA", + "5076": "pressure:inlet_LCA:LCA", + "5077": "pressure:inlet_LCA:LCA", + "5078": "pressure:inlet_LCA:LCA", + "5079": "pressure:inlet_LCA:LCA", + "5080": "pressure:inlet_LCA:LCA", + "5081": "pressure:inlet_LCA:LCA", + "5082": "pressure:inlet_LCA:LCA", + "5083": "pressure:inlet_LCA:LCA", + "5084": "pressure:inlet_LCA:LCA", + "5085": "pressure:inlet_LCA:LCA", + "5086": "pressure:inlet_LCA:LCA", + "5087": "pressure:inlet_LCA:LCA", + "5088": "pressure:inlet_LCA:LCA", + "5089": "pressure:inlet_LCA:LCA", + "5090": "pressure:inlet_LCA:LCA", + "5091": "pressure:inlet_LCA:LCA", + "5092": "pressure:inlet_LCA:LCA", + "5093": "pressure:inlet_LCA:LCA", + "5094": "pressure:inlet_LCA:LCA", + "5095": "pressure:inlet_LCA:LCA", + "5096": "pressure:inlet_LCA:LCA", + "5097": "pressure:inlet_LCA:LCA", + "5098": "pressure:inlet_LCA:LCA", + "5099": "pressure:inlet_LCA:LCA", + "5100": "pressure:inlet_LCA:LCA", + "5101": "pressure:inlet_LCA:LCA", + "5102": "pressure:inlet_LCA:LCA", + "5103": "pressure:inlet_LCA:LCA", + "5104": "pressure:inlet_LCA:LCA", + "5105": "pressure:inlet_LCA:LCA", + "5106": "pressure:inlet_LCA:LCA", + "5107": "pressure:inlet_LCA:LCA", + "5108": "pressure:inlet_LCA:LCA", + "5109": "pressure:inlet_LCA:LCA", + "5110": "pressure:inlet_LCA:LCA", + "5111": "pressure:inlet_LCA:LCA", + "5112": "pressure:inlet_LCA:LCA", + "5113": "pressure:inlet_LCA:LCA", + "5114": "pressure:inlet_LCA:LCA", + "5115": "pressure:inlet_LCA:LCA", + "5116": "pressure:inlet_LCA:LCA", + "5117": "pressure:inlet_LCA:LCA", + "5118": "pressure:inlet_LCA:LCA", + "5119": "pressure:inlet_LCA:LCA", + "5120": "pressure:inlet_LCA:LCA", + "5121": "pressure:inlet_LCA:LCA", + "5122": "pressure:inlet_LCA:LCA", + "5123": "pressure:inlet_LCA:LCA", + "5124": "pressure:inlet_LCA:LCA", + "5125": "pressure:inlet_LCA:LCA", + "5126": "pressure:inlet_LCA:LCA", + "5127": "pressure:inlet_LCA:LCA", + "5128": "pressure:inlet_LCA:LCA", + "5129": "pressure:inlet_LCA:LCA", + "5130": "pressure:inlet_LCA:LCA", + "5131": "pressure:inlet_LCA:LCA", + "5132": "pressure:inlet_LCA:LCA", + "5133": "pressure:inlet_LCA:LCA", + "5134": "pressure:inlet_LCA:LCA", + "5135": "pressure:inlet_LCA:LCA", + "5136": "pressure:inlet_LCA:LCA", + "5137": "pressure:inlet_LCA:LCA", + "5138": "pressure:inlet_LCA:LCA", + "5139": "pressure:inlet_LCA:LCA", + "5140": "pressure:inlet_LCA:LCA", + "5141": "pressure:inlet_LCA:LCA", + "5142": "pressure:inlet_LCA:LCA", + "5143": "pressure:inlet_LCA:LCA", + "5144": "pressure:inlet_LCA:LCA", + "5145": "pressure:inlet_LCA:LCA", + "5146": "pressure:inlet_LCA:LCA", + "5147": "pressure:inlet_LCA:LCA", + "5148": "pressure:inlet_LCA:LCA", + "5149": "pressure:inlet_LCA:LCA", + "5150": "pressure:inlet_LCA:LCA", + "5151": "pressure:inlet_LCA:LCA", + "5152": "pressure:inlet_LCA:LCA", + "5153": "pressure:inlet_LCA:LCA", + "5154": "pressure:inlet_LCA:LCA", + "5155": "pressure:inlet_LCA:LCA", + "5156": "pressure:inlet_LCA:LCA", + "5157": "pressure:inlet_LCA:LCA", + "5158": "pressure:inlet_LCA:LCA", + "5159": "pressure:inlet_LCA:LCA", + "5160": "pressure:inlet_LCA:LCA", + "5161": "pressure:inlet_LCA:LCA", + "5162": "pressure:inlet_LCA:LCA", + "5163": "pressure:inlet_LCA:LCA", + "5164": "pressure:inlet_LCA:LCA", + "5165": "pressure:inlet_LCA:LCA", + "5166": "pressure:inlet_LCA:LCA", + "5167": "pressure:inlet_LCA:LCA", + "5168": "pressure:inlet_LCA:LCA", + "5169": "pressure:inlet_LCA:LCA", + "5170": "pressure:inlet_LCA:LCA", + "5171": "pressure:inlet_LCA:LCA", + "5172": "pressure:inlet_LCA:LCA", + "5173": "pressure:inlet_LCA:LCA", + "5174": "pressure:inlet_LCA:LCA", + "5175": "pressure:inlet_LCA:LCA", + "5176": "pressure:inlet_LCA:LCA", + "5177": "pressure:inlet_LCA:LCA", + "5178": "pressure:inlet_LCA:LCA", + "5179": "pressure:inlet_LCA:LCA", + "5180": "pressure:inlet_LCA:LCA", + "5181": "pressure:inlet_LCA:LCA", + "5182": "pressure:inlet_LCA:LCA", + "5183": "pressure:inlet_LCA:LCA", + "5184": "pressure:inlet_LCA:LCA", + "5185": "pressure:inlet_LCA:LCA", + "5186": "pressure:inlet_LCA:LCA", + "5187": "pressure:inlet_LCA:LCA", + "5188": "pressure:inlet_LCA:LCA", + "5189": "pressure:inlet_LCA:LCA", + "5190": "pressure:inlet_LCA:LCA", + "5191": "pressure:inlet_LCA:LCA", + "5192": "pressure:inlet_LCA:LCA", + "5193": "pressure:inlet_LCA:LCA", + "5194": "pressure:inlet_LCA:LCA", + "5195": "pressure:inlet_LCA:LCA", + "5196": "pressure:inlet_LCA:LCA", + "5197": "pressure:inlet_LCA:LCA", + "5198": "pressure:inlet_LCA:LCA", + "5199": "pressure:inlet_LCA:LCA", + "5200": "pressure:inlet_LCA:LCA", + "5201": "pressure:inlet_LCA:LCA", + "5202": "pressure:inlet_LCA:LCA", + "5203": "pressure:inlet_LCA:LCA", + "5204": "pressure:inlet_LCA:LCA", + "5205": "pressure:inlet_LCA:LCA", + "5206": "pressure:inlet_LCA:LCA", + "5207": "pressure:inlet_LCA:LCA", + "5208": "pressure:inlet_LCA:LCA", + "5209": "pressure:inlet_LCA:LCA", + "5210": "pressure:inlet_LCA:LCA", + "5211": "pressure:inlet_LCA:LCA", + "5212": "pressure:inlet_LCA:LCA", + "5213": "pressure:inlet_LCA:LCA", + "5214": "pressure:inlet_LCA:LCA", + "5215": "pressure:inlet_LCA:LCA", + "5216": "pressure:inlet_LCA:LCA", + "5217": "pressure:inlet_LCA:LCA", + "5218": "pressure:inlet_LCA:LCA", + "5219": "pressure:inlet_LCA:LCA", + "5220": "pressure:inlet_LCA:LCA", + "5221": "pressure:inlet_LCA:LCA", + "5222": "pressure:inlet_LCA:LCA", + "5223": "pressure:inlet_LCA:LCA", + "5224": "pressure:inlet_LCA:LCA", + "5225": "pressure:inlet_LCA:LCA", + "5226": "pressure:inlet_LCA:LCA", + "5227": "pressure:inlet_LCA:LCA", + "5228": "pressure:inlet_LCA:LCA", + "5229": "pressure:inlet_LCA:LCA", + "5230": "pressure:inlet_LCA:LCA", + "5231": "pressure:inlet_LCA:LCA", + "5232": "pressure:inlet_LCA:LCA", + "5233": "pressure:inlet_LCA:LCA", + "5234": "pressure:inlet_LCA:LCA", + "5235": "pressure:inlet_LCA:LCA", + "5236": "pressure:inlet_LCA:LCA", + "5237": "pressure:inlet_LCA:LCA", + "5238": "pressure:inlet_LCA:LCA", + "5239": "pressure:inlet_LCA:LCA", + "5240": "pressure:inlet_LCA:LCA", + "5241": "pressure:inlet_LCA:LCA", + "5242": "pressure:inlet_LCA:LCA", + "5243": "pressure:inlet_LCA:LCA", + "5244": "pressure:inlet_LCA:LCA", + "5245": "pressure:inlet_LCA:LCA", + "5246": "pressure:inlet_LCA:LCA", + "5247": "pressure:inlet_LCA:LCA", + "5248": "pressure:inlet_LCA:LCA", + "5249": "pressure:inlet_LCA:LCA", + "5250": "pressure:inlet_LCA:LCA", + "5251": "pressure:inlet_LCA:LCA", + "5252": "pressure:inlet_LCA:LCA", + "5253": "pressure:inlet_LCA:LCA", + "5254": "pressure:inlet_LCA:LCA", + "5255": "pressure:inlet_LCA:LCA", + "5256": "pressure:inlet_LCA:LCA", + "5257": "pressure:inlet_LCA:LCA", + "5258": "pressure:inlet_LCA:LCA", + "5259": "pressure:inlet_LCA:LCA", + "5260": "pressure:inlet_LCA:LCA", + "5261": "pressure:inlet_LCA:LCA", + "5262": "pressure:inlet_LCA:LCA", + "5263": "pressure:inlet_LCA:LCA", + "5264": "pressure:inlet_LCA:LCA", + "5265": "pressure:inlet_LCA:LCA", + "5266": "pressure:inlet_LCA:LCA", + "5267": "pressure:inlet_LCA:LCA", + "5268": "pressure:inlet_LCA:LCA", + "5269": "pressure:inlet_LCA:LCA", + "5270": "pressure:inlet_LCA:LCA", + "5271": "pressure:inlet_LCA:LCA", + "5272": "pressure:inlet_LCA:LCA", + "5273": "pressure:inlet_LCA:LCA", + "5274": "pressure:inlet_LCA:LCA", + "5275": "pressure:inlet_LCA:LCA", + "5276": "pressure:inlet_LCA:LCA", + "5277": "pressure:inlet_LCA:LCA", + "5278": "pressure:inlet_LCA:LCA", + "5279": "pressure:inlet_LCA:LCA", + "5280": "pressure:inlet_LCA:LCA", + "5281": "pressure:inlet_LCA:LCA", + "5282": "pressure:inlet_LCA:LCA", + "5283": "pressure:inlet_LCA:LCA", + "5284": "pressure:inlet_LCA:LCA", + "5285": "pressure:inlet_LCA:LCA", + "5286": "pressure:inlet_LCA:LCA", + "5287": "pressure:inlet_LCA:LCA", + "5288": "pressure:inlet_LCA:LCA", + "5289": "pressure:inlet_LCA:LCA", + "5290": "pressure:inlet_LCA:LCA", + "5291": "pressure:inlet_LCA:LCA", + "5292": "pressure:inlet_LCA:LCA", + "5293": "pressure:inlet_LCA:LCA", + "5294": "pressure:inlet_LCA:LCA", + "5295": "pressure:inlet_LCA:LCA", + "5296": "pressure:inlet_LCA:LCA", + "5297": "pressure:inlet_LCA:LCA", + "5298": "pressure:inlet_LCA:LCA", + "5299": "pressure:inlet_LCA:LCA", + "5300": "pressure:inlet_LCA:LCA", + "5301": "pressure:inlet_LCA:LCA", + "5302": "pressure:inlet_LCA:LCA", + "5303": "pressure:inlet_LCA:LCA", + "5304": "pressure:inlet_LCA:LCA", + "5305": "pressure:inlet_LCA:LCA", + "5306": "pressure:inlet_LCA:LCA", + "5307": "pressure:inlet_LCA:LCA", + "5308": "pressure:inlet_LCA:LCA", + "5309": "pressure:inlet_LCA:LCA", + "5310": "pressure:inlet_LCA:LCA", + "5311": "pressure:inlet_LCA:LCA", + "5312": "pressure:inlet_LCA:LCA", + "5313": "pressure:inlet_LCA:LCA", + "5314": "pressure:inlet_LCA:LCA", + "5315": "pressure:inlet_LCA:LCA", + "5316": "pressure:inlet_LCA:LCA", + "5317": "pressure:inlet_LCA:LCA", + "5318": "pressure:inlet_LCA:LCA", + "5319": "pressure:inlet_LCA:LCA", + "5320": "pressure:inlet_LCA:LCA", + "5321": "pressure:inlet_LCA:LCA", + "5322": "pressure:inlet_LCA:LCA", + "5323": "pressure:inlet_LCA:LCA", + "5324": "pressure:inlet_LCA:LCA", + "5325": "pressure:inlet_LCA:LCA", + "5326": "pressure:inlet_LCA:LCA", + "5327": "pressure:inlet_LCA:LCA", + "5328": "pressure:inlet_LCA:LCA", + "5329": "pressure:inlet_LCA:LCA", + "5330": "pressure:inlet_LCA:LCA", + "5331": "pressure:inlet_LCA:LCA", + "5332": "pressure:inlet_LCA:LCA", + "5333": "pressure:inlet_LCA:LCA", + "5334": "pressure:inlet_LCA:LCA", + "5335": "pressure:inlet_LCA:LCA", + "5336": "pressure:inlet_LCA:LCA", + "5337": "pressure:inlet_LCA:LCA", + "5338": "pressure:inlet_LCA:LCA", + "5339": "pressure:inlet_LCA:LCA", + "5340": "pressure:inlet_LCA:LCA", + "5341": "pressure:inlet_LCA:LCA", + "5342": "pressure:inlet_LCA:LCA", + "5343": "pressure:inlet_LCA:LCA", + "5344": "pressure:inlet_LCA:LCA", + "5345": "pressure:inlet_LCA:LCA", + "5346": "pressure:inlet_LCA:LCA", + "5347": "pressure:inlet_LCA:LCA", + "5348": "pressure:inlet_LCA:LCA", + "5349": "pressure:inlet_LCA:LCA", + "5350": "pressure:inlet_LCA:LCA", + "5351": "pressure:inlet_LCA:LCA", + "5352": "pressure:inlet_LCA:LCA", + "5353": "pressure:inlet_LCA:LCA", + "5354": "pressure:inlet_LCA:LCA", + "5355": "pressure:inlet_LCA:LCA", + "5356": "pressure:inlet_LCA:LCA", + "5357": "pressure:inlet_LCA:LCA", + "5358": "pressure:inlet_LCA:LCA", + "5359": "pressure:inlet_LCA:LCA", + "5360": "pressure:inlet_LCA:LCA", + "5361": "pressure:inlet_LCA:LCA", + "5362": "pressure:inlet_LCA:LCA", + "5363": "pressure:inlet_LCA:LCA", + "5364": "pressure:inlet_LCA:LCA", + "5365": "pressure:inlet_LCA:LCA", + "5366": "pressure:inlet_LCA:LCA", + "5367": "pressure:inlet_LCA:LCA", + "5368": "pressure:inlet_LCA:LCA", + "5369": "pressure:inlet_LCA:LCA", + "5370": "pressure:inlet_LCA:LCA", + "5371": "pressure:inlet_LCA:LCA", + "5372": "pressure:inlet_LCA:LCA", + "5373": "pressure:inlet_LCA:LCA", + "5374": "pressure:inlet_LCA:LCA", + "5375": "pressure:inlet_LCA:LCA", + "5376": "pressure:inlet_LCA:LCA", + "5377": "pressure:inlet_LCA:LCA", + "5378": "pressure:inlet_LCA:LCA", + "5379": "pressure:inlet_LCA:LCA", + "5380": "pressure:inlet_LCA:LCA", + "5381": "pressure:inlet_LCA:LCA", + "5382": "pressure:inlet_LCA:LCA", + "5383": "pressure:inlet_LCA:LCA", + "5384": "pressure:inlet_LCA:LCA", + "5385": "pressure:inlet_LCA:LCA", + "5386": "pressure:inlet_LCA:LCA", + "5387": "pressure:inlet_LCA:LCA", + "5388": "pressure:inlet_LCA:LCA", + "5389": "pressure:inlet_LCA:LCA", + "5390": "pressure:inlet_LCA:LCA", + "5391": "pressure:inlet_LCA:LCA", + "5392": "pressure:inlet_LCA:LCA", + "5393": "pressure:inlet_LCA:LCA", + "5394": "pressure:inlet_LCA:LCA", + "5395": "pressure:inlet_LCA:LCA", + "5396": "pressure:inlet_LCA:LCA", + "5397": "pressure:inlet_LCA:LCA", + "5398": "pressure:inlet_LCA:LCA", + "5399": "pressure:inlet_LCA:LCA", + "5400": "pressure:inlet_LCA:LCA", + "5401": "pressure:inlet_LCA:LCA", + "5402": "pressure:inlet_LCA:LCA", + "5403": "pressure:inlet_LCA:LCA", + "5404": "pressure:inlet_LCA:LCA", + "5405": "pressure:inlet_LCA:LCA", + "5406": "pressure:inlet_LCA:LCA", + "5407": "pressure:inlet_LCA:LCA", + "5408": "pressure:inlet_LCA:LCA", + "5409": "pressure:inlet_LCA:LCA", + "5410": "pressure:inlet_LCA:LCA", + "5411": "pressure:inlet_LCA:LCA", + "5412": "pressure:inlet_LCA:LCA", + "5413": "pressure:inlet_LCA:LCA", + "5414": "pressure:inlet_LCA:LCA", + "5415": "pressure:inlet_LCA:LCA", + "5416": "pressure:inlet_LCA:LCA", + "5417": "pressure:inlet_LCA:LCA", + "5418": "pressure:inlet_LCA:LCA", + "5419": "pressure:inlet_LCA:LCA", + "5420": "pressure:inlet_LCA:LCA", + "5421": "pressure:inlet_LCA:LCA", + "5422": "pressure:inlet_LCA:LCA", + "5423": "pressure:inlet_LCA:LCA", + "5424": "pressure:inlet_LCA:LCA", + "5425": "pressure:inlet_LCA:LCA", + "5426": "pressure:inlet_LCA:LCA", + "5427": "pressure:inlet_LCA:LCA", + "5428": "pressure:inlet_LCA:LCA", + "5429": "pressure:inlet_LCA:LCA", + "5430": "pressure:inlet_LCA:LCA", + "5431": "pressure:inlet_LCA:LCA", + "5432": "pressure:inlet_LCA:LCA", + "5433": "pressure:inlet_LCA:LCA", + "5434": "pressure:inlet_LCA:LCA", + "5435": "pressure:inlet_LCA:LCA", + "5436": "pressure:inlet_LCA:LCA", + "5437": "pressure:inlet_LCA:LCA", + "5438": "pressure:inlet_LCA:LCA", + "5439": "pressure:inlet_LCA:LCA", + "5440": "pressure:inlet_LCA:LCA", + "5441": "pressure:inlet_LCA:LCA", + "5442": "pressure:inlet_LCA:LCA", + "5443": "pressure:inlet_LCA:LCA", + "5444": "pressure:inlet_LCA:LCA", + "5445": "pressure:inlet_LCA:LCA", + "5446": "pressure:inlet_LCA:LCA", + "5447": "pressure:inlet_LCA:LCA", + "5448": "pressure:inlet_LCA:LCA", + "5449": "pressure:inlet_LCA:LCA", + "5450": "pressure:inlet_LCA:LCA", + "5451": "pressure:inlet_LCA:LCA", + "5452": "pressure:inlet_LCA:LCA", + "5453": "pressure:inlet_LCA:LCA", + "5454": "pressure:inlet_LCA:LCA", + "5455": "pressure:inlet_LCA:LCA", + "5456": "pressure:inlet_LCA:LCA", + "5457": "pressure:inlet_LCA:LCA", + "5458": "pressure:inlet_LCA:LCA", + "5459": "pressure:inlet_LCA:LCA", + "5460": "pressure:inlet_LCA:LCA", + "5461": "pressure:inlet_LCA:LCA", + "5462": "pressure:inlet_LCA:LCA", + "5463": "pressure:inlet_LCA:LCA", + "5464": "pressure:inlet_LCA:LCA", + "5465": "pressure:inlet_LCA:LCA", + "5466": "pressure:inlet_LCA:LCA", + "5467": "pressure:inlet_LCA:LCA", + "5468": "pressure:inlet_LCA:LCA", + "5469": "pressure:inlet_LCA:LCA", + "5470": "pressure:inlet_LCA:LCA", + "5471": "pressure:inlet_LCA:LCA", + "5472": "pressure:inlet_LCA:LCA", + "5473": "pressure:inlet_LCA:LCA", + "5474": "pressure:inlet_LCA:LCA", + "5475": "pressure:inlet_LCA:LCA", + "5476": "pressure:inlet_LCA:LCA", + "5477": "pressure:inlet_LCA:LCA", + "5478": "pressure:inlet_LCA:LCA", + "5479": "pressure:inlet_LCA:LCA", + "5480": "pressure:inlet_LCA:LCA", + "5481": "pressure:inlet_LCA:LCA", + "5482": "pressure:inlet_LCA:LCA", + "5483": "pressure:inlet_LCA:LCA", + "5484": "pressure:inlet_LCA:LCA", + "5485": "pressure:inlet_LCA:LCA", + "5486": "pressure:inlet_LCA:LCA", + "5487": "pressure:inlet_LCA:LCA", + "5488": "pressure:inlet_LCA:LCA", + "5489": "pressure:inlet_LCA:LCA", + "5490": "pressure:inlet_LCA:LCA", + "5491": "pressure:inlet_LCA:LCA", + "5492": "pressure:inlet_LCA:LCA", + "5493": "pressure:inlet_LCA:LCA", + "5494": "pressure:inlet_LCA:LCA", + "5495": "pressure:inlet_LCA:LCA", + "5496": "pressure:inlet_LCA:LCA", + "5497": "pressure:inlet_LCA:LCA", + "5498": "pressure:inlet_LCA:LCA", + "5499": "pressure:inlet_LCA:LCA", + "5500": "pressure:inlet_LCA:LCA", + "5501": "pressure:inlet_LCA:LCA", + "5502": "pressure:inlet_LCA:LCA", + "5503": "pressure:inlet_LCA:LCA", + "5504": "pressure:inlet_LCA:LCA", + "5505": "pressure:inlet_LCA:LCA", + "5506": "pressure:inlet_LCA:LCA", + "5507": "pressure:inlet_LCA:LCA", + "5508": "pressure:inlet_LCA:LCA", + "5509": "pressure:inlet_LCA:LCA", + "5510": "pressure:inlet_LCA:LCA", + "5511": "pressure:inlet_LCA:LCA", + "5512": "pressure:inlet_LCA:LCA", + "5513": "pressure:inlet_LCA:LCA", + "5514": "pressure:inlet_LCA:LCA", + "5515": "pressure:inlet_LCA:LCA", + "5516": "pressure:inlet_LCA:LCA", + "5517": "pressure:inlet_LCA:LCA", + "5518": "pressure:inlet_LCA:LCA", + "5519": "pressure:inlet_LCA:LCA", + "5520": "pressure:inlet_LCA:LCA", + "5521": "pressure:inlet_LCA:LCA", + "5522": "pressure:inlet_LCA:LCA", + "5523": "pressure:inlet_LCA:LCA", + "5524": "pressure:inlet_LCA:LCA", + "5525": "pressure:inlet_LCA:LCA", + "5526": "pressure:inlet_LCA:LCA", + "5527": "pressure:inlet_LCA:LCA", + "5528": "pressure:inlet_LCA:LCA", + "5529": "pressure:inlet_LCA:LCA", + "5530": "pressure:inlet_LCA:LCA", + "5531": "pressure:inlet_LCA:LCA", + "5532": "pressure:inlet_LCA:LCA", + "5533": "pressure:inlet_LCA:LCA", + "5534": "pressure:inlet_LCA:LCA", + "5535": "pressure:inlet_LCA:LCA", + "5536": "pressure:inlet_LCA:LCA", + "5537": "pressure:inlet_LCA:LCA", + "5538": "pressure:inlet_LCA:LCA", + "5539": "pressure:inlet_LCA:LCA", + "5540": "pressure:inlet_LCA:LCA", + "5541": "pressure:inlet_LCA:LCA", + "5542": "pressure:inlet_LCA:LCA", + "5543": "pressure:inlet_LCA:LCA", + "5544": "pressure:inlet_LCA:LCA", + "5545": "pressure:inlet_LCA:LCA", + "5546": "pressure:inlet_LCA:LCA", + "5547": "pressure:inlet_LCA:LCA", + "5548": "pressure:inlet_LCA:LCA", + "5549": "pressure:inlet_LCA:LCA", + "5550": "pressure:inlet_LCA:LCA", + "5551": "pressure:inlet_LCA:LCA", + "5552": "pressure:inlet_LCA:LCA", + "5553": "pressure:inlet_LCA:LCA", + "5554": "pressure:inlet_LCA:LCA", + "5555": "pressure:inlet_LCA:LCA", + "5556": "pressure:inlet_LCA:LCA", + "5557": "pressure:inlet_LCA:LCA", + "5558": "pressure:inlet_LCA:LCA", + "5559": "pressure:inlet_LCA:LCA", + "5560": "pressure:inlet_LCA:LCA", + "5561": "pressure:inlet_LCA:LCA", + "5562": "pressure:inlet_LCA:LCA", + "5563": "pressure:inlet_LCA:LCA", + "5564": "pressure:inlet_LCA:LCA", + "5565": "pressure:inlet_LCA:LCA", + "5566": "pressure:inlet_LCA:LCA", + "5567": "pressure:inlet_LCA:LCA", + "5568": "pressure:inlet_LCA:LCA", + "5569": "pressure:inlet_LCA:LCA", + "5570": "pressure:inlet_LCA:LCA", + "5571": "pressure:inlet_LCA:LCA", + "5572": "pressure:inlet_LCA:LCA", + "5573": "pressure:inlet_LCA:LCA", + "5574": "pressure:inlet_LCA:LCA", + "5575": "pressure:inlet_LCA:LCA", + "5576": "pressure:inlet_LCA:LCA", + "5577": "pressure:inlet_LCA:LCA", + "5578": "pressure:inlet_LCA:LCA", + "5579": "pressure:inlet_LCA:LCA", + "5580": "pressure:inlet_LCA:LCA", + "5581": "pressure:inlet_LCA:LCA", + "5582": "pressure:inlet_LCA:LCA", + "5583": "pressure:inlet_LCA:LCA", + "5584": "pressure:inlet_LCA:LCA", + "5585": "pressure:inlet_LCA:LCA", + "5586": "pressure:inlet_LCA:LCA", + "5587": "pressure:inlet_LCA:LCA", + "5588": "pressure:inlet_LCA:LCA", + "5589": "pressure:inlet_LCA:LCA", + "5590": "pressure:inlet_LCA:LCA", + "5591": "pressure:inlet_LCA:LCA", + "5592": "pressure:inlet_LCA:LCA", + "5593": "pressure:inlet_LCA:LCA", + "5594": "pressure:inlet_LCA:LCA", + "5595": "pressure:inlet_LCA:LCA", + "5596": "pressure:inlet_LCA:LCA", + "5597": "pressure:inlet_LCA:LCA", + "5598": "pressure:inlet_LCA:LCA", + "5599": "pressure:inlet_LCA:LCA", + "5600": "pressure:inlet_LCA:LCA", + "5601": "pressure:inlet_LCA:LCA", + "5602": "pressure:inlet_LCA:LCA", + "5603": "pressure:inlet_LCA:LCA", + "5604": "pressure:inlet_LCA:LCA", + "5605": "pressure:inlet_LCA:LCA", + "5606": "pressure:inlet_LCA:LCA", + "5607": "pressure:inlet_LCA:LCA", + "5608": "pressure:inlet_LCA:LCA", + "5609": "pressure:inlet_LCA:LCA", + "5610": "pressure:inlet_LCA:LCA", + "5611": "pressure:inlet_LCA:LCA", + "5612": "pressure:inlet_LCA:LCA", + "5613": "pressure:inlet_LCA:LCA", + "5614": "pressure:inlet_LCA:LCA", + "5615": "pressure:inlet_LCA:LCA", + "5616": "pressure:inlet_LCA:LCA", + "5617": "pressure:inlet_LCA:LCA", + "5618": "pressure:inlet_LCA:LCA", + "5619": "pressure:inlet_LCA:LCA", + "5620": "pressure:inlet_LCA:LCA", + "5621": "pressure:inlet_LCA:LCA", + "5622": "pressure:inlet_LCA:LCA", + "5623": "pressure:inlet_LCA:LCA", + "5624": "pressure:inlet_LCA:LCA", + "5625": "pressure:inlet_LCA:LCA", + "5626": "pressure:inlet_LCA:LCA", + "5627": "pressure:inlet_LCA:LCA", + "5628": "pressure:inlet_LCA:LCA", + "5629": "pressure:inlet_LCA:LCA", + "5630": "pressure:inlet_LCA:LCA", + "5631": "pressure:inlet_LCA:LCA", + "5632": "pressure:inlet_LCA:LCA", + "5633": "pressure:inlet_LCA:LCA", + "5634": "pressure:inlet_LCA:LCA", + "5635": "pressure:inlet_LCA:LCA", + "5636": "pressure:inlet_LCA:LCA", + "5637": "pressure:inlet_LCA:LCA", + "5638": "pressure:inlet_LCA:LCA", + "5639": "pressure:inlet_LCA:LCA", + "5640": "pressure:inlet_LCA:LCA", + "5641": "pressure:inlet_LCA:LCA", + "5642": "pressure:inlet_LCA:LCA", + "5643": "pressure:inlet_LCA:LCA", + "5644": "pressure:inlet_LCA:LCA", + "5645": "pressure:inlet_LCA:LCA", + "5646": "pressure:inlet_LCA:LCA", + "5647": "pressure:inlet_LCA:LCA", + "5648": "pressure:inlet_LCA:LCA", + "5649": "pressure:inlet_LCA:LCA", + "5650": "pressure:inlet_LCA:LCA", + "5651": "pressure:inlet_LCA:LCA", + "5652": "pressure:inlet_LCA:LCA", + "5653": "pressure:inlet_LCA:LCA", + "5654": "pressure:inlet_LCA:LCA", + "5655": "pressure:inlet_LCA:LCA", + "5656": "pressure:inlet_LCA:LCA", + "5657": "pressure:inlet_LCA:LCA", + "5658": "pressure:inlet_LCA:LCA", + "5659": "pressure:inlet_LCA:LCA", + "5660": "pressure:inlet_LCA:LCA", + "5661": "pressure:inlet_LCA:LCA", + "5662": "pressure:inlet_LCA:LCA", + "5663": "pressure:inlet_LCA:LCA", + "5664": "pressure:inlet_LCA:LCA", + "5665": "pressure:inlet_LCA:LCA", + "5666": "pressure:inlet_LCA:LCA", + "5667": "pressure:inlet_LCA:LCA", + "5668": "pressure:inlet_LCA:LCA", + "5669": "pressure:inlet_LCA:LCA", + "5670": "pressure:inlet_LCA:LCA", + "5671": "pressure:inlet_LCA:LCA", + "5672": "pressure:inlet_LCA:LCA", + "5673": "pressure:inlet_LCA:LCA", + "5674": "pressure:inlet_LCA:LCA", + "5675": "pressure:inlet_LCA:LCA", + "5676": "pressure:inlet_LCA:LCA", + "5677": "pressure:inlet_LCA:LCA", + "5678": "pressure:inlet_LCA:LCA", + "5679": "pressure:inlet_LCA:LCA", + "5680": "pressure:inlet_LCA:LCA", + "5681": "pressure:inlet_LCA:LCA", + "5682": "pressure:inlet_LCA:LCA", + "5683": "pressure:inlet_LCA:LCA", + "5684": "pressure:inlet_LCA:LCA", + "5685": "pressure:inlet_LCA:LCA", + "5686": "pressure:inlet_LCA:LCA", + "5687": "pressure:inlet_LCA:LCA", + "5688": "pressure:inlet_LCA:LCA", + "5689": "pressure:inlet_LCA:LCA", + "5690": "pressure:inlet_LCA:LCA", + "5691": "pressure:inlet_LCA:LCA", + "5692": "pressure:inlet_LCA:LCA", + "5693": "pressure:inlet_LCA:LCA", + "5694": "pressure:inlet_LCA:LCA", + "5695": "pressure:inlet_LCA:LCA", + "5696": "pressure:inlet_LCA:LCA", + "5697": "pressure:inlet_LCA:LCA", + "5698": "pressure:inlet_LCA:LCA", + "5699": "pressure:inlet_LCA:LCA", + "5700": "pressure:inlet_LCA:LCA", + "5701": "pressure:inlet_LCA:LCA", + "5702": "pressure:inlet_LCA:LCA", + "5703": "pressure:inlet_LCA:LCA", + "5704": "pressure:inlet_LCA:LCA", + "5705": "pressure:inlet_LCA:LCA", + "5706": "pressure:inlet_LCA:LCA", + "5707": "pressure:inlet_LCA:LCA", + "5708": "pressure:inlet_LCA:LCA", + "5709": "pressure:inlet_LCA:LCA", + "5710": "pressure:inlet_LCA:LCA", + "5711": "pressure:inlet_LCA:LCA", + "5712": "pressure:inlet_LCA:LCA", + "5713": "pressure:inlet_LCA:LCA", + "5714": "pressure:inlet_LCA:LCA", + "5715": "pressure:inlet_LCA:LCA", + "5716": "pressure:inlet_LCA:LCA", + "5717": "pressure:inlet_LCA:LCA", + "5718": "pressure:inlet_LCA:LCA", + "5719": "pressure:inlet_LCA:LCA", + "5720": "pressure:inlet_LCA:LCA", + "5721": "pressure:inlet_LCA:LCA", + "5722": "pressure:inlet_LCA:LCA", + "5723": "pressure:inlet_LCA:LCA", + "5724": "pressure:inlet_LCA:LCA", + "5725": "pressure:inlet_LCA:LCA", + "5726": "pressure:inlet_LCA:LCA", + "5727": "pressure:inlet_LCA:LCA", + "5728": "pressure:inlet_LCA:LCA", + "5729": "pressure:inlet_LCA:LCA", + "5730": "pressure:inlet_LCA:LCA", + "5731": "pressure:inlet_LCA:LCA", + "5732": "pressure:inlet_LCA:LCA", + "5733": "pressure:inlet_LCA:LCA", + "5734": "pressure:inlet_LCA:LCA", + "5735": "pressure:inlet_LCA:LCA", + "5736": "pressure:inlet_LCA:LCA", + "5737": "pressure:inlet_LCA:LCA", + "5738": "pressure:inlet_LCA:LCA", + "5739": "pressure:inlet_LCA:LCA", + "5740": "pressure:inlet_LCA:LCA", + "5741": "pressure:inlet_LCA:LCA", + "5742": "pressure:inlet_LCA:LCA", + "5743": "pressure:inlet_LCA:LCA", + "5744": "pressure:inlet_LCA:LCA", + "5745": "pressure:inlet_LCA:LCA", + "5746": "pressure:inlet_LCA:LCA", + "5747": "pressure:inlet_LCA:LCA", + "5748": "pressure:inlet_LCA:LCA", + "5749": "pressure:inlet_LCA:LCA", + "5750": "pressure:inlet_LCA:LCA", + "5751": "pressure:inlet_LCA:LCA", + "5752": "pressure:inlet_LCA:LCA", + "5753": "pressure:inlet_LCA:LCA", + "5754": "pressure:inlet_LCA:LCA", + "5755": "pressure:inlet_LCA:LCA", + "5756": "pressure:inlet_LCA:LCA", + "5757": "pressure:inlet_LCA:LCA", + "5758": "pressure:inlet_LCA:LCA", + "5759": "pressure:inlet_LCA:LCA", + "5760": "pressure:inlet_LCA:LCA", + "5761": "pressure:inlet_LCA:LCA", + "5762": "pressure:inlet_LCA:LCA", + "5763": "pressure:inlet_LCA:LCA", + "5764": "pressure:inlet_LCA:LCA", + "5765": "pressure:inlet_LCA:LCA", + "5766": "pressure:inlet_LCA:LCA", + "5767": "pressure:inlet_LCA:LCA", + "5768": "pressure:inlet_LCA:LCA", + "5769": "pressure:inlet_LCA:LCA", + "5770": "pressure:inlet_LCA:LCA", + "5771": "pressure:inlet_LCA:LCA", + "5772": "pressure:inlet_LCA:LCA", + "5773": "pressure:inlet_LCA:LCA", + "5774": "pressure:inlet_LCA:LCA", + "5775": "pressure:inlet_LCA:LCA", + "5776": "pressure:inlet_LCA:LCA", + "5777": "pressure:inlet_LCA:LCA", + "5778": "pressure:inlet_LCA:LCA", + "5779": "pressure:inlet_LCA:LCA", + "5780": "pressure:inlet_LCA:LCA", + "5781": "pressure:inlet_LCA:LCA", + "5782": "pressure:inlet_LCA:LCA", + "5783": "pressure:inlet_LCA:LCA", + "5784": "pressure:inlet_LCA:LCA", + "5785": "pressure:inlet_LCA:LCA", + "5786": "pressure:inlet_LCA:LCA", + "5787": "pressure:inlet_LCA:LCA", + "5788": "pressure:inlet_LCA:LCA", + "5789": "pressure:inlet_LCA:LCA", + "5790": "pressure:inlet_LCA:LCA", + "5791": "pressure:inlet_LCA:LCA", + "5792": "pressure:inlet_LCA:LCA", + "5793": "pressure:inlet_LCA:LCA", + "5794": "pressure:inlet_LCA:LCA", + "5795": "pressure:inlet_LCA:LCA", + "5796": "pressure:inlet_LCA:LCA", + "5797": "pressure:inlet_LCA:LCA", + "5798": "pressure:inlet_LCA:LCA", + "5799": "pressure:inlet_LCA:LCA", + "5800": "pressure:inlet_LCA:LCA", + "5801": "pressure:inlet_LCA:LCA", + "5802": "pressure:inlet_LCA:LCA", + "5803": "pressure:inlet_LCA:LCA", + "5804": "pressure:inlet_LCA:LCA", + "5805": "pressure:inlet_LCA:LCA", + "5806": "pressure:inlet_LCA:LCA", + "5807": "pressure:inlet_LCA:LCA", + "5808": "pressure:inlet_LCA:LCA", + "5809": "pressure:inlet_LCA:LCA", + "5810": "pressure:inlet_LCA:LCA", + "5811": "pressure:inlet_LCA:LCA", + "5812": "pressure:inlet_LCA:LCA", + "5813": "pressure:inlet_LCA:LCA", + "5814": "pressure:inlet_LCA:LCA", + "5815": "pressure:inlet_LCA:LCA", + "5816": "pressure:inlet_LCA:LCA", + "5817": "pressure:inlet_LCA:LCA", + "5818": "pressure:inlet_LCA:LCA", + "5819": "pressure:inlet_LCA:LCA", + "5820": "pressure:inlet_LCA:LCA", + "5821": "pressure:inlet_LCA:LCA", + "5822": "pressure:inlet_LCA:LCA", + "5823": "pressure:inlet_LCA:LCA", + "5824": "pressure:inlet_LCA:LCA", + "5825": "pressure:inlet_LCA:LCA", + "5826": "pressure:inlet_LCA:LCA", + "5827": "pressure:inlet_LCA:LCA", + "5828": "pressure:inlet_LCA:LCA", + "5829": "pressure:inlet_LCA:LCA", + "5830": "pressure:inlet_LCA:LCA", + "5831": "pressure:inlet_LCA:LCA", + "5832": "pressure:inlet_LCA:LCA", + "5833": "pressure:inlet_LCA:LCA", + "5834": "pressure:inlet_LCA:LCA", + "5835": "pressure:inlet_LCA:LCA", + "5836": "pressure:inlet_LCA:LCA", + "5837": "pressure:inlet_LCA:LCA", + "5838": "pressure:inlet_LCA:LCA", + "5839": "pressure:inlet_LCA:LCA", + "5840": "pressure:inlet_LCA:LCA", + "5841": "pressure:inlet_LCA:LCA", + "5842": "pressure:inlet_LCA:LCA", + "5843": "pressure:inlet_LCA:LCA", + "5844": "pressure:inlet_LCA:LCA", + "5845": "pressure:inlet_LCA:LCA", + "5846": "pressure:inlet_LCA:LCA", + "5847": "pressure:inlet_LCA:LCA", + "5848": "pressure:inlet_LCA:LCA", + "5849": "pressure:inlet_LCA:LCA", + "5850": "pressure:inlet_LCA:LCA", + "5851": "pressure:inlet_LCA:LCA", + "5852": "pressure:inlet_LCA:LCA", + "5853": "pressure:inlet_LCA:LCA", + "5854": "pressure:inlet_LCA:LCA", + "5855": "pressure:inlet_LCA:LCA", + "5856": "pressure:inlet_LCA:LCA", + "5857": "pressure:inlet_LCA:LCA", + "5858": "pressure:inlet_LCA:LCA", + "5859": "pressure:inlet_LCA:LCA", + "5860": "pressure:inlet_LCA:LCA", + "5861": "pressure:inlet_LCA:LCA", + "5862": "pressure:inlet_LCA:LCA", + "5863": "pressure:inlet_LCA:LCA", + "5864": "pressure:inlet_LCA:LCA", + "5865": "pressure:inlet_LCA:LCA", + "5866": "pressure:inlet_LCA:LCA", + "5867": "pressure:inlet_LCA:LCA", + "5868": "pressure:inlet_LCA:LCA", + "5869": "pressure:inlet_LCA:LCA", + "5870": "pressure:inlet_LCA:LCA", + "5871": "pressure:inlet_LCA:LCA", + "5872": "pressure:inlet_LCA:LCA", + "5873": "pressure:inlet_LCA:LCA", + "5874": "pressure:inlet_LCA:LCA", + "5875": "pressure:inlet_LCA:LCA", + "5876": "pressure:inlet_LCA:LCA", + "5877": "pressure:inlet_LCA:LCA", + "5878": "pressure:inlet_LCA:LCA", + "5879": "pressure:inlet_LCA:LCA", + "5880": "pressure:inlet_LCA:LCA", + "5881": "pressure:inlet_LCA:LCA", + "5882": "pressure:inlet_LCA:LCA", + "5883": "pressure:inlet_LCA:LCA", + "5884": "pressure:inlet_LCA:LCA", + "5885": "pressure:inlet_LCA:LCA", + "5886": "pressure:inlet_LCA:LCA", + "5887": "pressure:inlet_LCA:LCA", + "5888": "pressure:inlet_LCA:LCA", + "5889": "pressure:inlet_LCA:LCA", + "5890": "pressure:inlet_LCA:LCA", + "5891": "pressure:inlet_LCA:LCA", + "5892": "pressure:inlet_LCA:LCA", + "5893": "pressure:inlet_LCA:LCA", + "5894": "pressure:inlet_LCA:LCA", + "5895": "pressure:inlet_LCA:LCA", + "5896": "pressure:inlet_LCA:LCA", + "5897": "pressure:inlet_LCA:LCA", + "5898": "pressure:inlet_LCA:LCA", + "5899": "pressure:inlet_LCA:LCA", + "5900": "pressure:inlet_LCA:LCA", + "5901": "pressure:inlet_LCA:LCA", + "5902": "pressure:inlet_LCA:LCA", + "5903": "pressure:inlet_LCA:LCA", + "5904": "pressure:inlet_LCA:LCA", + "5905": "pressure:inlet_LCA:LCA", + "5906": "pressure:inlet_LCA:LCA", + "5907": "pressure:inlet_LCA:LCA", + "5908": "pressure:inlet_LCA:LCA", + "5909": "pressure:inlet_LCA:LCA", + "5910": "pressure:inlet_LCA:LCA", + "5911": "pressure:inlet_LCA:LCA", + "5912": "pressure:inlet_LCA:LCA", + "5913": "pressure:inlet_LCA:LCA", + "5914": "pressure:inlet_LCA:LCA", + "5915": "pressure:inlet_LCA:LCA", + "5916": "pressure:inlet_LCA:LCA", + "5917": "pressure:inlet_LCA:LCA", + "5918": "pressure:inlet_LCA:LCA", + "5919": "pressure:inlet_LCA:LCA", + "5920": "pressure:inlet_LCA:LCA", + "5921": "pressure:inlet_LCA:LCA", + "5922": "pressure:inlet_LCA:LCA", + "5923": "pressure:inlet_LCA:LCA", + "5924": "pressure:inlet_LCA:LCA", + "5925": "pressure:inlet_LCA:LCA", + "5926": "pressure:inlet_LCA:LCA", + "5927": "pressure:inlet_LCA:LCA", + "5928": "pressure:inlet_LCA:LCA", + "5929": "pressure:inlet_LCA:LCA", + "5930": "pressure:inlet_LCA:LCA", + "5931": "pressure:inlet_LCA:LCA", + "5932": "pressure:inlet_LCA:LCA", + "5933": "pressure:inlet_LCA:LCA", + "5934": "pressure:inlet_LCA:LCA", + "5935": "pressure:inlet_LCA:LCA", + "5936": "pressure:inlet_LCA:LCA", + "5937": "pressure:inlet_LCA:LCA", + "5938": "pressure:inlet_LCA:LCA", + "5939": "pressure:inlet_LCA:LCA", + "5940": "pressure:inlet_LCA:LCA", + "5941": "pressure:inlet_LCA:LCA", + "5942": "pressure:inlet_LCA:LCA", + "5943": "pressure:inlet_LCA:LCA", + "5944": "pressure:inlet_LCA:LCA", + "5945": "pressure:inlet_LCA:LCA", + "5946": "pressure:inlet_LCA:LCA", + "5947": "pressure:inlet_LCA:LCA", + "5948": "pressure:inlet_LCA:LCA", + "5949": "pressure:inlet_LCA:LCA", + "5950": "pressure:inlet_LCA:LCA", + "5951": "pressure:inlet_LCA:LCA", + "5952": "pressure:inlet_LCA:LCA", + "5953": "pressure:inlet_LCA:LCA", + "5954": "pressure:inlet_LCA:LCA", + "5955": "pressure:inlet_LCA:LCA", + "5956": "pressure:inlet_LCA:LCA", + "5957": "pressure:inlet_LCA:LCA", + "5958": "pressure:inlet_LCA:LCA", + "5959": "pressure:inlet_LCA:LCA", + "5960": "pressure:inlet_LCA:LCA", + "5961": "pressure:inlet_LCA:LCA", + "5962": "pressure:inlet_LCA:LCA", + "5963": "pressure:inlet_LCA:LCA", + "5964": "pressure:inlet_LCA:LCA", + "5965": "pressure:inlet_LCA:LCA", + "5966": "pressure:inlet_LCA:LCA", + "5967": "pressure:inlet_LCA:LCA", + "5968": "pressure:inlet_LCA:LCA", + "5969": "pressure:inlet_LCA:LCA", + "5970": "pressure:inlet_LCA:LCA", + "5971": "pressure:inlet_LCA:LCA", + "5972": "pressure:inlet_LCA:LCA", + "5973": "pressure:inlet_LCA:LCA", + "5974": "pressure:inlet_LCA:LCA", + "5975": "pressure:inlet_LCA:LCA", + "5976": "pressure:inlet_LCA:LCA", + "5977": "pressure:inlet_LCA:LCA", + "5978": "pressure:inlet_LCA:LCA", + "5979": "pressure:inlet_LCA:LCA", + "5980": "pressure:inlet_LCA:LCA", + "5981": "pressure:inlet_LCA:LCA", + "5982": "pressure:inlet_LCA:LCA", + "5983": "pressure:inlet_LCA:LCA", + "5984": "pressure:inlet_LCA:LCA", + "5985": "pressure:inlet_LCA:LCA", + "5986": "pressure:inlet_LCA:LCA", + "5987": "pressure:inlet_LCA:LCA", + "5988": "pressure:inlet_LCA:LCA", + "5989": "pressure:inlet_LCA:LCA", + "5990": "pressure:inlet_LCA:LCA", + "5991": "pressure:inlet_LCA:LCA", + "5992": "pressure:inlet_LCA:LCA", + "5993": "pressure:inlet_LCA:LCA", + "5994": "pressure:inlet_LCA:LCA", + "5995": "pressure:inlet_LCA:LCA", + "5996": "pressure:inlet_LCA:LCA", + "5997": "pressure:inlet_LCA:LCA", + "5998": "pressure:inlet_LCA:LCA", + "5999": "pressure:inlet_LCA:LCA", + "6000": "flow:inlet_RCA:RCA", + "6001": "flow:inlet_RCA:RCA", + "6002": "flow:inlet_RCA:RCA", + "6003": "flow:inlet_RCA:RCA", + "6004": "flow:inlet_RCA:RCA", + "6005": "flow:inlet_RCA:RCA", + "6006": "flow:inlet_RCA:RCA", + "6007": "flow:inlet_RCA:RCA", + "6008": "flow:inlet_RCA:RCA", + "6009": "flow:inlet_RCA:RCA", + "6010": "flow:inlet_RCA:RCA", + "6011": "flow:inlet_RCA:RCA", + "6012": "flow:inlet_RCA:RCA", + "6013": "flow:inlet_RCA:RCA", + "6014": "flow:inlet_RCA:RCA", + "6015": "flow:inlet_RCA:RCA", + "6016": "flow:inlet_RCA:RCA", + "6017": "flow:inlet_RCA:RCA", + "6018": "flow:inlet_RCA:RCA", + "6019": "flow:inlet_RCA:RCA", + "6020": "flow:inlet_RCA:RCA", + "6021": "flow:inlet_RCA:RCA", + "6022": "flow:inlet_RCA:RCA", + "6023": "flow:inlet_RCA:RCA", + "6024": "flow:inlet_RCA:RCA", + "6025": "flow:inlet_RCA:RCA", + "6026": "flow:inlet_RCA:RCA", + "6027": "flow:inlet_RCA:RCA", + "6028": "flow:inlet_RCA:RCA", + "6029": "flow:inlet_RCA:RCA", + "6030": "flow:inlet_RCA:RCA", + "6031": "flow:inlet_RCA:RCA", + "6032": "flow:inlet_RCA:RCA", + "6033": "flow:inlet_RCA:RCA", + "6034": "flow:inlet_RCA:RCA", + "6035": "flow:inlet_RCA:RCA", + "6036": "flow:inlet_RCA:RCA", + "6037": "flow:inlet_RCA:RCA", + "6038": "flow:inlet_RCA:RCA", + "6039": "flow:inlet_RCA:RCA", + "6040": "flow:inlet_RCA:RCA", + "6041": "flow:inlet_RCA:RCA", + "6042": "flow:inlet_RCA:RCA", + "6043": "flow:inlet_RCA:RCA", + "6044": "flow:inlet_RCA:RCA", + "6045": "flow:inlet_RCA:RCA", + "6046": "flow:inlet_RCA:RCA", + "6047": "flow:inlet_RCA:RCA", + "6048": "flow:inlet_RCA:RCA", + "6049": "flow:inlet_RCA:RCA", + "6050": "flow:inlet_RCA:RCA", + "6051": "flow:inlet_RCA:RCA", + "6052": "flow:inlet_RCA:RCA", + "6053": "flow:inlet_RCA:RCA", + "6054": "flow:inlet_RCA:RCA", + "6055": "flow:inlet_RCA:RCA", + "6056": "flow:inlet_RCA:RCA", + "6057": "flow:inlet_RCA:RCA", + "6058": "flow:inlet_RCA:RCA", + "6059": "flow:inlet_RCA:RCA", + "6060": "flow:inlet_RCA:RCA", + "6061": "flow:inlet_RCA:RCA", + "6062": "flow:inlet_RCA:RCA", + "6063": "flow:inlet_RCA:RCA", + "6064": "flow:inlet_RCA:RCA", + "6065": "flow:inlet_RCA:RCA", + "6066": "flow:inlet_RCA:RCA", + "6067": "flow:inlet_RCA:RCA", + "6068": "flow:inlet_RCA:RCA", + "6069": "flow:inlet_RCA:RCA", + "6070": "flow:inlet_RCA:RCA", + "6071": "flow:inlet_RCA:RCA", + "6072": "flow:inlet_RCA:RCA", + "6073": "flow:inlet_RCA:RCA", + "6074": "flow:inlet_RCA:RCA", + "6075": "flow:inlet_RCA:RCA", + "6076": "flow:inlet_RCA:RCA", + "6077": "flow:inlet_RCA:RCA", + "6078": "flow:inlet_RCA:RCA", + "6079": "flow:inlet_RCA:RCA", + "6080": "flow:inlet_RCA:RCA", + "6081": "flow:inlet_RCA:RCA", + "6082": "flow:inlet_RCA:RCA", + "6083": "flow:inlet_RCA:RCA", + "6084": "flow:inlet_RCA:RCA", + "6085": "flow:inlet_RCA:RCA", + "6086": "flow:inlet_RCA:RCA", + "6087": "flow:inlet_RCA:RCA", + "6088": "flow:inlet_RCA:RCA", + "6089": "flow:inlet_RCA:RCA", + "6090": "flow:inlet_RCA:RCA", + "6091": "flow:inlet_RCA:RCA", + "6092": "flow:inlet_RCA:RCA", + "6093": "flow:inlet_RCA:RCA", + "6094": "flow:inlet_RCA:RCA", + "6095": "flow:inlet_RCA:RCA", + "6096": "flow:inlet_RCA:RCA", + "6097": "flow:inlet_RCA:RCA", + "6098": "flow:inlet_RCA:RCA", + "6099": "flow:inlet_RCA:RCA", + "6100": "flow:inlet_RCA:RCA", + "6101": "flow:inlet_RCA:RCA", + "6102": "flow:inlet_RCA:RCA", + "6103": "flow:inlet_RCA:RCA", + "6104": "flow:inlet_RCA:RCA", + "6105": "flow:inlet_RCA:RCA", + "6106": "flow:inlet_RCA:RCA", + "6107": "flow:inlet_RCA:RCA", + "6108": "flow:inlet_RCA:RCA", + "6109": "flow:inlet_RCA:RCA", + "6110": "flow:inlet_RCA:RCA", + "6111": "flow:inlet_RCA:RCA", + "6112": "flow:inlet_RCA:RCA", + "6113": "flow:inlet_RCA:RCA", + "6114": "flow:inlet_RCA:RCA", + "6115": "flow:inlet_RCA:RCA", + "6116": "flow:inlet_RCA:RCA", + "6117": "flow:inlet_RCA:RCA", + "6118": "flow:inlet_RCA:RCA", + "6119": "flow:inlet_RCA:RCA", + "6120": "flow:inlet_RCA:RCA", + "6121": "flow:inlet_RCA:RCA", + "6122": "flow:inlet_RCA:RCA", + "6123": "flow:inlet_RCA:RCA", + "6124": "flow:inlet_RCA:RCA", + "6125": "flow:inlet_RCA:RCA", + "6126": "flow:inlet_RCA:RCA", + "6127": "flow:inlet_RCA:RCA", + "6128": "flow:inlet_RCA:RCA", + "6129": "flow:inlet_RCA:RCA", + "6130": "flow:inlet_RCA:RCA", + "6131": "flow:inlet_RCA:RCA", + "6132": "flow:inlet_RCA:RCA", + "6133": "flow:inlet_RCA:RCA", + "6134": "flow:inlet_RCA:RCA", + "6135": "flow:inlet_RCA:RCA", + "6136": "flow:inlet_RCA:RCA", + "6137": "flow:inlet_RCA:RCA", + "6138": "flow:inlet_RCA:RCA", + "6139": "flow:inlet_RCA:RCA", + "6140": "flow:inlet_RCA:RCA", + "6141": "flow:inlet_RCA:RCA", + "6142": "flow:inlet_RCA:RCA", + "6143": "flow:inlet_RCA:RCA", + "6144": "flow:inlet_RCA:RCA", + "6145": "flow:inlet_RCA:RCA", + "6146": "flow:inlet_RCA:RCA", + "6147": "flow:inlet_RCA:RCA", + "6148": "flow:inlet_RCA:RCA", + "6149": "flow:inlet_RCA:RCA", + "6150": "flow:inlet_RCA:RCA", + "6151": "flow:inlet_RCA:RCA", + "6152": "flow:inlet_RCA:RCA", + "6153": "flow:inlet_RCA:RCA", + "6154": "flow:inlet_RCA:RCA", + "6155": "flow:inlet_RCA:RCA", + "6156": "flow:inlet_RCA:RCA", + "6157": "flow:inlet_RCA:RCA", + "6158": "flow:inlet_RCA:RCA", + "6159": "flow:inlet_RCA:RCA", + "6160": "flow:inlet_RCA:RCA", + "6161": "flow:inlet_RCA:RCA", + "6162": "flow:inlet_RCA:RCA", + "6163": "flow:inlet_RCA:RCA", + "6164": "flow:inlet_RCA:RCA", + "6165": "flow:inlet_RCA:RCA", + "6166": "flow:inlet_RCA:RCA", + "6167": "flow:inlet_RCA:RCA", + "6168": "flow:inlet_RCA:RCA", + "6169": "flow:inlet_RCA:RCA", + "6170": "flow:inlet_RCA:RCA", + "6171": "flow:inlet_RCA:RCA", + "6172": "flow:inlet_RCA:RCA", + "6173": "flow:inlet_RCA:RCA", + "6174": "flow:inlet_RCA:RCA", + "6175": "flow:inlet_RCA:RCA", + "6176": "flow:inlet_RCA:RCA", + "6177": "flow:inlet_RCA:RCA", + "6178": "flow:inlet_RCA:RCA", + "6179": "flow:inlet_RCA:RCA", + "6180": "flow:inlet_RCA:RCA", + "6181": "flow:inlet_RCA:RCA", + "6182": "flow:inlet_RCA:RCA", + "6183": "flow:inlet_RCA:RCA", + "6184": "flow:inlet_RCA:RCA", + "6185": "flow:inlet_RCA:RCA", + "6186": "flow:inlet_RCA:RCA", + "6187": "flow:inlet_RCA:RCA", + "6188": "flow:inlet_RCA:RCA", + "6189": "flow:inlet_RCA:RCA", + "6190": "flow:inlet_RCA:RCA", + "6191": "flow:inlet_RCA:RCA", + "6192": "flow:inlet_RCA:RCA", + "6193": "flow:inlet_RCA:RCA", + "6194": "flow:inlet_RCA:RCA", + "6195": "flow:inlet_RCA:RCA", + "6196": "flow:inlet_RCA:RCA", + "6197": "flow:inlet_RCA:RCA", + "6198": "flow:inlet_RCA:RCA", + "6199": "flow:inlet_RCA:RCA", + "6200": "flow:inlet_RCA:RCA", + "6201": "flow:inlet_RCA:RCA", + "6202": "flow:inlet_RCA:RCA", + "6203": "flow:inlet_RCA:RCA", + "6204": "flow:inlet_RCA:RCA", + "6205": "flow:inlet_RCA:RCA", + "6206": "flow:inlet_RCA:RCA", + "6207": "flow:inlet_RCA:RCA", + "6208": "flow:inlet_RCA:RCA", + "6209": "flow:inlet_RCA:RCA", + "6210": "flow:inlet_RCA:RCA", + "6211": "flow:inlet_RCA:RCA", + "6212": "flow:inlet_RCA:RCA", + "6213": "flow:inlet_RCA:RCA", + "6214": "flow:inlet_RCA:RCA", + "6215": "flow:inlet_RCA:RCA", + "6216": "flow:inlet_RCA:RCA", + "6217": "flow:inlet_RCA:RCA", + "6218": "flow:inlet_RCA:RCA", + "6219": "flow:inlet_RCA:RCA", + "6220": "flow:inlet_RCA:RCA", + "6221": "flow:inlet_RCA:RCA", + "6222": "flow:inlet_RCA:RCA", + "6223": "flow:inlet_RCA:RCA", + "6224": "flow:inlet_RCA:RCA", + "6225": "flow:inlet_RCA:RCA", + "6226": "flow:inlet_RCA:RCA", + "6227": "flow:inlet_RCA:RCA", + "6228": "flow:inlet_RCA:RCA", + "6229": "flow:inlet_RCA:RCA", + "6230": "flow:inlet_RCA:RCA", + "6231": "flow:inlet_RCA:RCA", + "6232": "flow:inlet_RCA:RCA", + "6233": "flow:inlet_RCA:RCA", + "6234": "flow:inlet_RCA:RCA", + "6235": "flow:inlet_RCA:RCA", + "6236": "flow:inlet_RCA:RCA", + "6237": "flow:inlet_RCA:RCA", + "6238": "flow:inlet_RCA:RCA", + "6239": "flow:inlet_RCA:RCA", + "6240": "flow:inlet_RCA:RCA", + "6241": "flow:inlet_RCA:RCA", + "6242": "flow:inlet_RCA:RCA", + "6243": "flow:inlet_RCA:RCA", + "6244": "flow:inlet_RCA:RCA", + "6245": "flow:inlet_RCA:RCA", + "6246": "flow:inlet_RCA:RCA", + "6247": "flow:inlet_RCA:RCA", + "6248": "flow:inlet_RCA:RCA", + "6249": "flow:inlet_RCA:RCA", + "6250": "flow:inlet_RCA:RCA", + "6251": "flow:inlet_RCA:RCA", + "6252": "flow:inlet_RCA:RCA", + "6253": "flow:inlet_RCA:RCA", + "6254": "flow:inlet_RCA:RCA", + "6255": "flow:inlet_RCA:RCA", + "6256": "flow:inlet_RCA:RCA", + "6257": "flow:inlet_RCA:RCA", + "6258": "flow:inlet_RCA:RCA", + "6259": "flow:inlet_RCA:RCA", + "6260": "flow:inlet_RCA:RCA", + "6261": "flow:inlet_RCA:RCA", + "6262": "flow:inlet_RCA:RCA", + "6263": "flow:inlet_RCA:RCA", + "6264": "flow:inlet_RCA:RCA", + "6265": "flow:inlet_RCA:RCA", + "6266": "flow:inlet_RCA:RCA", + "6267": "flow:inlet_RCA:RCA", + "6268": "flow:inlet_RCA:RCA", + "6269": "flow:inlet_RCA:RCA", + "6270": "flow:inlet_RCA:RCA", + "6271": "flow:inlet_RCA:RCA", + "6272": "flow:inlet_RCA:RCA", + "6273": "flow:inlet_RCA:RCA", + "6274": "flow:inlet_RCA:RCA", + "6275": "flow:inlet_RCA:RCA", + "6276": "flow:inlet_RCA:RCA", + "6277": "flow:inlet_RCA:RCA", + "6278": "flow:inlet_RCA:RCA", + "6279": "flow:inlet_RCA:RCA", + "6280": "flow:inlet_RCA:RCA", + "6281": "flow:inlet_RCA:RCA", + "6282": "flow:inlet_RCA:RCA", + "6283": "flow:inlet_RCA:RCA", + "6284": "flow:inlet_RCA:RCA", + "6285": "flow:inlet_RCA:RCA", + "6286": "flow:inlet_RCA:RCA", + "6287": "flow:inlet_RCA:RCA", + "6288": "flow:inlet_RCA:RCA", + "6289": "flow:inlet_RCA:RCA", + "6290": "flow:inlet_RCA:RCA", + "6291": "flow:inlet_RCA:RCA", + "6292": "flow:inlet_RCA:RCA", + "6293": "flow:inlet_RCA:RCA", + "6294": "flow:inlet_RCA:RCA", + "6295": "flow:inlet_RCA:RCA", + "6296": "flow:inlet_RCA:RCA", + "6297": "flow:inlet_RCA:RCA", + "6298": "flow:inlet_RCA:RCA", + "6299": "flow:inlet_RCA:RCA", + "6300": "flow:inlet_RCA:RCA", + "6301": "flow:inlet_RCA:RCA", + "6302": "flow:inlet_RCA:RCA", + "6303": "flow:inlet_RCA:RCA", + "6304": "flow:inlet_RCA:RCA", + "6305": "flow:inlet_RCA:RCA", + "6306": "flow:inlet_RCA:RCA", + "6307": "flow:inlet_RCA:RCA", + "6308": "flow:inlet_RCA:RCA", + "6309": "flow:inlet_RCA:RCA", + "6310": "flow:inlet_RCA:RCA", + "6311": "flow:inlet_RCA:RCA", + "6312": "flow:inlet_RCA:RCA", + "6313": "flow:inlet_RCA:RCA", + "6314": "flow:inlet_RCA:RCA", + "6315": "flow:inlet_RCA:RCA", + "6316": "flow:inlet_RCA:RCA", + "6317": "flow:inlet_RCA:RCA", + "6318": "flow:inlet_RCA:RCA", + "6319": "flow:inlet_RCA:RCA", + "6320": "flow:inlet_RCA:RCA", + "6321": "flow:inlet_RCA:RCA", + "6322": "flow:inlet_RCA:RCA", + "6323": "flow:inlet_RCA:RCA", + "6324": "flow:inlet_RCA:RCA", + "6325": "flow:inlet_RCA:RCA", + "6326": "flow:inlet_RCA:RCA", + "6327": "flow:inlet_RCA:RCA", + "6328": "flow:inlet_RCA:RCA", + "6329": "flow:inlet_RCA:RCA", + "6330": "flow:inlet_RCA:RCA", + "6331": "flow:inlet_RCA:RCA", + "6332": "flow:inlet_RCA:RCA", + "6333": "flow:inlet_RCA:RCA", + "6334": "flow:inlet_RCA:RCA", + "6335": "flow:inlet_RCA:RCA", + "6336": "flow:inlet_RCA:RCA", + "6337": "flow:inlet_RCA:RCA", + "6338": "flow:inlet_RCA:RCA", + "6339": "flow:inlet_RCA:RCA", + "6340": "flow:inlet_RCA:RCA", + "6341": "flow:inlet_RCA:RCA", + "6342": "flow:inlet_RCA:RCA", + "6343": "flow:inlet_RCA:RCA", + "6344": "flow:inlet_RCA:RCA", + "6345": "flow:inlet_RCA:RCA", + "6346": "flow:inlet_RCA:RCA", + "6347": "flow:inlet_RCA:RCA", + "6348": "flow:inlet_RCA:RCA", + "6349": "flow:inlet_RCA:RCA", + "6350": "flow:inlet_RCA:RCA", + "6351": "flow:inlet_RCA:RCA", + "6352": "flow:inlet_RCA:RCA", + "6353": "flow:inlet_RCA:RCA", + "6354": "flow:inlet_RCA:RCA", + "6355": "flow:inlet_RCA:RCA", + "6356": "flow:inlet_RCA:RCA", + "6357": "flow:inlet_RCA:RCA", + "6358": "flow:inlet_RCA:RCA", + "6359": "flow:inlet_RCA:RCA", + "6360": "flow:inlet_RCA:RCA", + "6361": "flow:inlet_RCA:RCA", + "6362": "flow:inlet_RCA:RCA", + "6363": "flow:inlet_RCA:RCA", + "6364": "flow:inlet_RCA:RCA", + "6365": "flow:inlet_RCA:RCA", + "6366": "flow:inlet_RCA:RCA", + "6367": "flow:inlet_RCA:RCA", + "6368": "flow:inlet_RCA:RCA", + "6369": "flow:inlet_RCA:RCA", + "6370": "flow:inlet_RCA:RCA", + "6371": "flow:inlet_RCA:RCA", + "6372": "flow:inlet_RCA:RCA", + "6373": "flow:inlet_RCA:RCA", + "6374": "flow:inlet_RCA:RCA", + "6375": "flow:inlet_RCA:RCA", + "6376": "flow:inlet_RCA:RCA", + "6377": "flow:inlet_RCA:RCA", + "6378": "flow:inlet_RCA:RCA", + "6379": "flow:inlet_RCA:RCA", + "6380": "flow:inlet_RCA:RCA", + "6381": "flow:inlet_RCA:RCA", + "6382": "flow:inlet_RCA:RCA", + "6383": "flow:inlet_RCA:RCA", + "6384": "flow:inlet_RCA:RCA", + "6385": "flow:inlet_RCA:RCA", + "6386": "flow:inlet_RCA:RCA", + "6387": "flow:inlet_RCA:RCA", + "6388": "flow:inlet_RCA:RCA", + "6389": "flow:inlet_RCA:RCA", + "6390": "flow:inlet_RCA:RCA", + "6391": "flow:inlet_RCA:RCA", + "6392": "flow:inlet_RCA:RCA", + "6393": "flow:inlet_RCA:RCA", + "6394": "flow:inlet_RCA:RCA", + "6395": "flow:inlet_RCA:RCA", + "6396": "flow:inlet_RCA:RCA", + "6397": "flow:inlet_RCA:RCA", + "6398": "flow:inlet_RCA:RCA", + "6399": "flow:inlet_RCA:RCA", + "6400": "flow:inlet_RCA:RCA", + "6401": "flow:inlet_RCA:RCA", + "6402": "flow:inlet_RCA:RCA", + "6403": "flow:inlet_RCA:RCA", + "6404": "flow:inlet_RCA:RCA", + "6405": "flow:inlet_RCA:RCA", + "6406": "flow:inlet_RCA:RCA", + "6407": "flow:inlet_RCA:RCA", + "6408": "flow:inlet_RCA:RCA", + "6409": "flow:inlet_RCA:RCA", + "6410": "flow:inlet_RCA:RCA", + "6411": "flow:inlet_RCA:RCA", + "6412": "flow:inlet_RCA:RCA", + "6413": "flow:inlet_RCA:RCA", + "6414": "flow:inlet_RCA:RCA", + "6415": "flow:inlet_RCA:RCA", + "6416": "flow:inlet_RCA:RCA", + "6417": "flow:inlet_RCA:RCA", + "6418": "flow:inlet_RCA:RCA", + "6419": "flow:inlet_RCA:RCA", + "6420": "flow:inlet_RCA:RCA", + "6421": "flow:inlet_RCA:RCA", + "6422": "flow:inlet_RCA:RCA", + "6423": "flow:inlet_RCA:RCA", + "6424": "flow:inlet_RCA:RCA", + "6425": "flow:inlet_RCA:RCA", + "6426": "flow:inlet_RCA:RCA", + "6427": "flow:inlet_RCA:RCA", + "6428": "flow:inlet_RCA:RCA", + "6429": "flow:inlet_RCA:RCA", + "6430": "flow:inlet_RCA:RCA", + "6431": "flow:inlet_RCA:RCA", + "6432": "flow:inlet_RCA:RCA", + "6433": "flow:inlet_RCA:RCA", + "6434": "flow:inlet_RCA:RCA", + "6435": "flow:inlet_RCA:RCA", + "6436": "flow:inlet_RCA:RCA", + "6437": "flow:inlet_RCA:RCA", + "6438": "flow:inlet_RCA:RCA", + "6439": "flow:inlet_RCA:RCA", + "6440": "flow:inlet_RCA:RCA", + "6441": "flow:inlet_RCA:RCA", + "6442": "flow:inlet_RCA:RCA", + "6443": "flow:inlet_RCA:RCA", + "6444": "flow:inlet_RCA:RCA", + "6445": "flow:inlet_RCA:RCA", + "6446": "flow:inlet_RCA:RCA", + "6447": "flow:inlet_RCA:RCA", + "6448": "flow:inlet_RCA:RCA", + "6449": "flow:inlet_RCA:RCA", + "6450": "flow:inlet_RCA:RCA", + "6451": "flow:inlet_RCA:RCA", + "6452": "flow:inlet_RCA:RCA", + "6453": "flow:inlet_RCA:RCA", + "6454": "flow:inlet_RCA:RCA", + "6455": "flow:inlet_RCA:RCA", + "6456": "flow:inlet_RCA:RCA", + "6457": "flow:inlet_RCA:RCA", + "6458": "flow:inlet_RCA:RCA", + "6459": "flow:inlet_RCA:RCA", + "6460": "flow:inlet_RCA:RCA", + "6461": "flow:inlet_RCA:RCA", + "6462": "flow:inlet_RCA:RCA", + "6463": "flow:inlet_RCA:RCA", + "6464": "flow:inlet_RCA:RCA", + "6465": "flow:inlet_RCA:RCA", + "6466": "flow:inlet_RCA:RCA", + "6467": "flow:inlet_RCA:RCA", + "6468": "flow:inlet_RCA:RCA", + "6469": "flow:inlet_RCA:RCA", + "6470": "flow:inlet_RCA:RCA", + "6471": "flow:inlet_RCA:RCA", + "6472": "flow:inlet_RCA:RCA", + "6473": "flow:inlet_RCA:RCA", + "6474": "flow:inlet_RCA:RCA", + "6475": "flow:inlet_RCA:RCA", + "6476": "flow:inlet_RCA:RCA", + "6477": "flow:inlet_RCA:RCA", + "6478": "flow:inlet_RCA:RCA", + "6479": "flow:inlet_RCA:RCA", + "6480": "flow:inlet_RCA:RCA", + "6481": "flow:inlet_RCA:RCA", + "6482": "flow:inlet_RCA:RCA", + "6483": "flow:inlet_RCA:RCA", + "6484": "flow:inlet_RCA:RCA", + "6485": "flow:inlet_RCA:RCA", + "6486": "flow:inlet_RCA:RCA", + "6487": "flow:inlet_RCA:RCA", + "6488": "flow:inlet_RCA:RCA", + "6489": "flow:inlet_RCA:RCA", + "6490": "flow:inlet_RCA:RCA", + "6491": "flow:inlet_RCA:RCA", + "6492": "flow:inlet_RCA:RCA", + "6493": "flow:inlet_RCA:RCA", + "6494": "flow:inlet_RCA:RCA", + "6495": "flow:inlet_RCA:RCA", + "6496": "flow:inlet_RCA:RCA", + "6497": "flow:inlet_RCA:RCA", + "6498": "flow:inlet_RCA:RCA", + "6499": "flow:inlet_RCA:RCA", + "6500": "flow:inlet_RCA:RCA", + "6501": "flow:inlet_RCA:RCA", + "6502": "flow:inlet_RCA:RCA", + "6503": "flow:inlet_RCA:RCA", + "6504": "flow:inlet_RCA:RCA", + "6505": "flow:inlet_RCA:RCA", + "6506": "flow:inlet_RCA:RCA", + "6507": "flow:inlet_RCA:RCA", + "6508": "flow:inlet_RCA:RCA", + "6509": "flow:inlet_RCA:RCA", + "6510": "flow:inlet_RCA:RCA", + "6511": "flow:inlet_RCA:RCA", + "6512": "flow:inlet_RCA:RCA", + "6513": "flow:inlet_RCA:RCA", + "6514": "flow:inlet_RCA:RCA", + "6515": "flow:inlet_RCA:RCA", + "6516": "flow:inlet_RCA:RCA", + "6517": "flow:inlet_RCA:RCA", + "6518": "flow:inlet_RCA:RCA", + "6519": "flow:inlet_RCA:RCA", + "6520": "flow:inlet_RCA:RCA", + "6521": "flow:inlet_RCA:RCA", + "6522": "flow:inlet_RCA:RCA", + "6523": "flow:inlet_RCA:RCA", + "6524": "flow:inlet_RCA:RCA", + "6525": "flow:inlet_RCA:RCA", + "6526": "flow:inlet_RCA:RCA", + "6527": "flow:inlet_RCA:RCA", + "6528": "flow:inlet_RCA:RCA", + "6529": "flow:inlet_RCA:RCA", + "6530": "flow:inlet_RCA:RCA", + "6531": "flow:inlet_RCA:RCA", + "6532": "flow:inlet_RCA:RCA", + "6533": "flow:inlet_RCA:RCA", + "6534": "flow:inlet_RCA:RCA", + "6535": "flow:inlet_RCA:RCA", + "6536": "flow:inlet_RCA:RCA", + "6537": "flow:inlet_RCA:RCA", + "6538": "flow:inlet_RCA:RCA", + "6539": "flow:inlet_RCA:RCA", + "6540": "flow:inlet_RCA:RCA", + "6541": "flow:inlet_RCA:RCA", + "6542": "flow:inlet_RCA:RCA", + "6543": "flow:inlet_RCA:RCA", + "6544": "flow:inlet_RCA:RCA", + "6545": "flow:inlet_RCA:RCA", + "6546": "flow:inlet_RCA:RCA", + "6547": "flow:inlet_RCA:RCA", + "6548": "flow:inlet_RCA:RCA", + "6549": "flow:inlet_RCA:RCA", + "6550": "flow:inlet_RCA:RCA", + "6551": "flow:inlet_RCA:RCA", + "6552": "flow:inlet_RCA:RCA", + "6553": "flow:inlet_RCA:RCA", + "6554": "flow:inlet_RCA:RCA", + "6555": "flow:inlet_RCA:RCA", + "6556": "flow:inlet_RCA:RCA", + "6557": "flow:inlet_RCA:RCA", + "6558": "flow:inlet_RCA:RCA", + "6559": "flow:inlet_RCA:RCA", + "6560": "flow:inlet_RCA:RCA", + "6561": "flow:inlet_RCA:RCA", + "6562": "flow:inlet_RCA:RCA", + "6563": "flow:inlet_RCA:RCA", + "6564": "flow:inlet_RCA:RCA", + "6565": "flow:inlet_RCA:RCA", + "6566": "flow:inlet_RCA:RCA", + "6567": "flow:inlet_RCA:RCA", + "6568": "flow:inlet_RCA:RCA", + "6569": "flow:inlet_RCA:RCA", + "6570": "flow:inlet_RCA:RCA", + "6571": "flow:inlet_RCA:RCA", + "6572": "flow:inlet_RCA:RCA", + "6573": "flow:inlet_RCA:RCA", + "6574": "flow:inlet_RCA:RCA", + "6575": "flow:inlet_RCA:RCA", + "6576": "flow:inlet_RCA:RCA", + "6577": "flow:inlet_RCA:RCA", + "6578": "flow:inlet_RCA:RCA", + "6579": "flow:inlet_RCA:RCA", + "6580": "flow:inlet_RCA:RCA", + "6581": "flow:inlet_RCA:RCA", + "6582": "flow:inlet_RCA:RCA", + "6583": "flow:inlet_RCA:RCA", + "6584": "flow:inlet_RCA:RCA", + "6585": "flow:inlet_RCA:RCA", + "6586": "flow:inlet_RCA:RCA", + "6587": "flow:inlet_RCA:RCA", + "6588": "flow:inlet_RCA:RCA", + "6589": "flow:inlet_RCA:RCA", + "6590": "flow:inlet_RCA:RCA", + "6591": "flow:inlet_RCA:RCA", + "6592": "flow:inlet_RCA:RCA", + "6593": "flow:inlet_RCA:RCA", + "6594": "flow:inlet_RCA:RCA", + "6595": "flow:inlet_RCA:RCA", + "6596": "flow:inlet_RCA:RCA", + "6597": "flow:inlet_RCA:RCA", + "6598": "flow:inlet_RCA:RCA", + "6599": "flow:inlet_RCA:RCA", + "6600": "flow:inlet_RCA:RCA", + "6601": "flow:inlet_RCA:RCA", + "6602": "flow:inlet_RCA:RCA", + "6603": "flow:inlet_RCA:RCA", + "6604": "flow:inlet_RCA:RCA", + "6605": "flow:inlet_RCA:RCA", + "6606": "flow:inlet_RCA:RCA", + "6607": "flow:inlet_RCA:RCA", + "6608": "flow:inlet_RCA:RCA", + "6609": "flow:inlet_RCA:RCA", + "6610": "flow:inlet_RCA:RCA", + "6611": "flow:inlet_RCA:RCA", + "6612": "flow:inlet_RCA:RCA", + "6613": "flow:inlet_RCA:RCA", + "6614": "flow:inlet_RCA:RCA", + "6615": "flow:inlet_RCA:RCA", + "6616": "flow:inlet_RCA:RCA", + "6617": "flow:inlet_RCA:RCA", + "6618": "flow:inlet_RCA:RCA", + "6619": "flow:inlet_RCA:RCA", + "6620": "flow:inlet_RCA:RCA", + "6621": "flow:inlet_RCA:RCA", + "6622": "flow:inlet_RCA:RCA", + "6623": "flow:inlet_RCA:RCA", + "6624": "flow:inlet_RCA:RCA", + "6625": "flow:inlet_RCA:RCA", + "6626": "flow:inlet_RCA:RCA", + "6627": "flow:inlet_RCA:RCA", + "6628": "flow:inlet_RCA:RCA", + "6629": "flow:inlet_RCA:RCA", + "6630": "flow:inlet_RCA:RCA", + "6631": "flow:inlet_RCA:RCA", + "6632": "flow:inlet_RCA:RCA", + "6633": "flow:inlet_RCA:RCA", + "6634": "flow:inlet_RCA:RCA", + "6635": "flow:inlet_RCA:RCA", + "6636": "flow:inlet_RCA:RCA", + "6637": "flow:inlet_RCA:RCA", + "6638": "flow:inlet_RCA:RCA", + "6639": "flow:inlet_RCA:RCA", + "6640": "flow:inlet_RCA:RCA", + "6641": "flow:inlet_RCA:RCA", + "6642": "flow:inlet_RCA:RCA", + "6643": "flow:inlet_RCA:RCA", + "6644": "flow:inlet_RCA:RCA", + "6645": "flow:inlet_RCA:RCA", + "6646": "flow:inlet_RCA:RCA", + "6647": "flow:inlet_RCA:RCA", + "6648": "flow:inlet_RCA:RCA", + "6649": "flow:inlet_RCA:RCA", + "6650": "flow:inlet_RCA:RCA", + "6651": "flow:inlet_RCA:RCA", + "6652": "flow:inlet_RCA:RCA", + "6653": "flow:inlet_RCA:RCA", + "6654": "flow:inlet_RCA:RCA", + "6655": "flow:inlet_RCA:RCA", + "6656": "flow:inlet_RCA:RCA", + "6657": "flow:inlet_RCA:RCA", + "6658": "flow:inlet_RCA:RCA", + "6659": "flow:inlet_RCA:RCA", + "6660": "flow:inlet_RCA:RCA", + "6661": "flow:inlet_RCA:RCA", + "6662": "flow:inlet_RCA:RCA", + "6663": "flow:inlet_RCA:RCA", + "6664": "flow:inlet_RCA:RCA", + "6665": "flow:inlet_RCA:RCA", + "6666": "flow:inlet_RCA:RCA", + "6667": "flow:inlet_RCA:RCA", + "6668": "flow:inlet_RCA:RCA", + "6669": "flow:inlet_RCA:RCA", + "6670": "flow:inlet_RCA:RCA", + "6671": "flow:inlet_RCA:RCA", + "6672": "flow:inlet_RCA:RCA", + "6673": "flow:inlet_RCA:RCA", + "6674": "flow:inlet_RCA:RCA", + "6675": "flow:inlet_RCA:RCA", + "6676": "flow:inlet_RCA:RCA", + "6677": "flow:inlet_RCA:RCA", + "6678": "flow:inlet_RCA:RCA", + "6679": "flow:inlet_RCA:RCA", + "6680": "flow:inlet_RCA:RCA", + "6681": "flow:inlet_RCA:RCA", + "6682": "flow:inlet_RCA:RCA", + "6683": "flow:inlet_RCA:RCA", + "6684": "flow:inlet_RCA:RCA", + "6685": "flow:inlet_RCA:RCA", + "6686": "flow:inlet_RCA:RCA", + "6687": "flow:inlet_RCA:RCA", + "6688": "flow:inlet_RCA:RCA", + "6689": "flow:inlet_RCA:RCA", + "6690": "flow:inlet_RCA:RCA", + "6691": "flow:inlet_RCA:RCA", + "6692": "flow:inlet_RCA:RCA", + "6693": "flow:inlet_RCA:RCA", + "6694": "flow:inlet_RCA:RCA", + "6695": "flow:inlet_RCA:RCA", + "6696": "flow:inlet_RCA:RCA", + "6697": "flow:inlet_RCA:RCA", + "6698": "flow:inlet_RCA:RCA", + "6699": "flow:inlet_RCA:RCA", + "6700": "flow:inlet_RCA:RCA", + "6701": "flow:inlet_RCA:RCA", + "6702": "flow:inlet_RCA:RCA", + "6703": "flow:inlet_RCA:RCA", + "6704": "flow:inlet_RCA:RCA", + "6705": "flow:inlet_RCA:RCA", + "6706": "flow:inlet_RCA:RCA", + "6707": "flow:inlet_RCA:RCA", + "6708": "flow:inlet_RCA:RCA", + "6709": "flow:inlet_RCA:RCA", + "6710": "flow:inlet_RCA:RCA", + "6711": "flow:inlet_RCA:RCA", + "6712": "flow:inlet_RCA:RCA", + "6713": "flow:inlet_RCA:RCA", + "6714": "flow:inlet_RCA:RCA", + "6715": "flow:inlet_RCA:RCA", + "6716": "flow:inlet_RCA:RCA", + "6717": "flow:inlet_RCA:RCA", + "6718": "flow:inlet_RCA:RCA", + "6719": "flow:inlet_RCA:RCA", + "6720": "flow:inlet_RCA:RCA", + "6721": "flow:inlet_RCA:RCA", + "6722": "flow:inlet_RCA:RCA", + "6723": "flow:inlet_RCA:RCA", + "6724": "flow:inlet_RCA:RCA", + "6725": "flow:inlet_RCA:RCA", + "6726": "flow:inlet_RCA:RCA", + "6727": "flow:inlet_RCA:RCA", + "6728": "flow:inlet_RCA:RCA", + "6729": "flow:inlet_RCA:RCA", + "6730": "flow:inlet_RCA:RCA", + "6731": "flow:inlet_RCA:RCA", + "6732": "flow:inlet_RCA:RCA", + "6733": "flow:inlet_RCA:RCA", + "6734": "flow:inlet_RCA:RCA", + "6735": "flow:inlet_RCA:RCA", + "6736": "flow:inlet_RCA:RCA", + "6737": "flow:inlet_RCA:RCA", + "6738": "flow:inlet_RCA:RCA", + "6739": "flow:inlet_RCA:RCA", + "6740": "flow:inlet_RCA:RCA", + "6741": "flow:inlet_RCA:RCA", + "6742": "flow:inlet_RCA:RCA", + "6743": "flow:inlet_RCA:RCA", + "6744": "flow:inlet_RCA:RCA", + "6745": "flow:inlet_RCA:RCA", + "6746": "flow:inlet_RCA:RCA", + "6747": "flow:inlet_RCA:RCA", + "6748": "flow:inlet_RCA:RCA", + "6749": "flow:inlet_RCA:RCA", + "6750": "flow:inlet_RCA:RCA", + "6751": "flow:inlet_RCA:RCA", + "6752": "flow:inlet_RCA:RCA", + "6753": "flow:inlet_RCA:RCA", + "6754": "flow:inlet_RCA:RCA", + "6755": "flow:inlet_RCA:RCA", + "6756": "flow:inlet_RCA:RCA", + "6757": "flow:inlet_RCA:RCA", + "6758": "flow:inlet_RCA:RCA", + "6759": "flow:inlet_RCA:RCA", + "6760": "flow:inlet_RCA:RCA", + "6761": "flow:inlet_RCA:RCA", + "6762": "flow:inlet_RCA:RCA", + "6763": "flow:inlet_RCA:RCA", + "6764": "flow:inlet_RCA:RCA", + "6765": "flow:inlet_RCA:RCA", + "6766": "flow:inlet_RCA:RCA", + "6767": "flow:inlet_RCA:RCA", + "6768": "flow:inlet_RCA:RCA", + "6769": "flow:inlet_RCA:RCA", + "6770": "flow:inlet_RCA:RCA", + "6771": "flow:inlet_RCA:RCA", + "6772": "flow:inlet_RCA:RCA", + "6773": "flow:inlet_RCA:RCA", + "6774": "flow:inlet_RCA:RCA", + "6775": "flow:inlet_RCA:RCA", + "6776": "flow:inlet_RCA:RCA", + "6777": "flow:inlet_RCA:RCA", + "6778": "flow:inlet_RCA:RCA", + "6779": "flow:inlet_RCA:RCA", + "6780": "flow:inlet_RCA:RCA", + "6781": "flow:inlet_RCA:RCA", + "6782": "flow:inlet_RCA:RCA", + "6783": "flow:inlet_RCA:RCA", + "6784": "flow:inlet_RCA:RCA", + "6785": "flow:inlet_RCA:RCA", + "6786": "flow:inlet_RCA:RCA", + "6787": "flow:inlet_RCA:RCA", + "6788": "flow:inlet_RCA:RCA", + "6789": "flow:inlet_RCA:RCA", + "6790": "flow:inlet_RCA:RCA", + "6791": "flow:inlet_RCA:RCA", + "6792": "flow:inlet_RCA:RCA", + "6793": "flow:inlet_RCA:RCA", + "6794": "flow:inlet_RCA:RCA", + "6795": "flow:inlet_RCA:RCA", + "6796": "flow:inlet_RCA:RCA", + "6797": "flow:inlet_RCA:RCA", + "6798": "flow:inlet_RCA:RCA", + "6799": "flow:inlet_RCA:RCA", + "6800": "flow:inlet_RCA:RCA", + "6801": "flow:inlet_RCA:RCA", + "6802": "flow:inlet_RCA:RCA", + "6803": "flow:inlet_RCA:RCA", + "6804": "flow:inlet_RCA:RCA", + "6805": "flow:inlet_RCA:RCA", + "6806": "flow:inlet_RCA:RCA", + "6807": "flow:inlet_RCA:RCA", + "6808": "flow:inlet_RCA:RCA", + "6809": "flow:inlet_RCA:RCA", + "6810": "flow:inlet_RCA:RCA", + "6811": "flow:inlet_RCA:RCA", + "6812": "flow:inlet_RCA:RCA", + "6813": "flow:inlet_RCA:RCA", + "6814": "flow:inlet_RCA:RCA", + "6815": "flow:inlet_RCA:RCA", + "6816": "flow:inlet_RCA:RCA", + "6817": "flow:inlet_RCA:RCA", + "6818": "flow:inlet_RCA:RCA", + "6819": "flow:inlet_RCA:RCA", + "6820": "flow:inlet_RCA:RCA", + "6821": "flow:inlet_RCA:RCA", + "6822": "flow:inlet_RCA:RCA", + "6823": "flow:inlet_RCA:RCA", + "6824": "flow:inlet_RCA:RCA", + "6825": "flow:inlet_RCA:RCA", + "6826": "flow:inlet_RCA:RCA", + "6827": "flow:inlet_RCA:RCA", + "6828": "flow:inlet_RCA:RCA", + "6829": "flow:inlet_RCA:RCA", + "6830": "flow:inlet_RCA:RCA", + "6831": "flow:inlet_RCA:RCA", + "6832": "flow:inlet_RCA:RCA", + "6833": "flow:inlet_RCA:RCA", + "6834": "flow:inlet_RCA:RCA", + "6835": "flow:inlet_RCA:RCA", + "6836": "flow:inlet_RCA:RCA", + "6837": "flow:inlet_RCA:RCA", + "6838": "flow:inlet_RCA:RCA", + "6839": "flow:inlet_RCA:RCA", + "6840": "flow:inlet_RCA:RCA", + "6841": "flow:inlet_RCA:RCA", + "6842": "flow:inlet_RCA:RCA", + "6843": "flow:inlet_RCA:RCA", + "6844": "flow:inlet_RCA:RCA", + "6845": "flow:inlet_RCA:RCA", + "6846": "flow:inlet_RCA:RCA", + "6847": "flow:inlet_RCA:RCA", + "6848": "flow:inlet_RCA:RCA", + "6849": "flow:inlet_RCA:RCA", + "6850": "flow:inlet_RCA:RCA", + "6851": "flow:inlet_RCA:RCA", + "6852": "flow:inlet_RCA:RCA", + "6853": "flow:inlet_RCA:RCA", + "6854": "flow:inlet_RCA:RCA", + "6855": "flow:inlet_RCA:RCA", + "6856": "flow:inlet_RCA:RCA", + "6857": "flow:inlet_RCA:RCA", + "6858": "flow:inlet_RCA:RCA", + "6859": "flow:inlet_RCA:RCA", + "6860": "flow:inlet_RCA:RCA", + "6861": "flow:inlet_RCA:RCA", + "6862": "flow:inlet_RCA:RCA", + "6863": "flow:inlet_RCA:RCA", + "6864": "flow:inlet_RCA:RCA", + "6865": "flow:inlet_RCA:RCA", + "6866": "flow:inlet_RCA:RCA", + "6867": "flow:inlet_RCA:RCA", + "6868": "flow:inlet_RCA:RCA", + "6869": "flow:inlet_RCA:RCA", + "6870": "flow:inlet_RCA:RCA", + "6871": "flow:inlet_RCA:RCA", + "6872": "flow:inlet_RCA:RCA", + "6873": "flow:inlet_RCA:RCA", + "6874": "flow:inlet_RCA:RCA", + "6875": "flow:inlet_RCA:RCA", + "6876": "flow:inlet_RCA:RCA", + "6877": "flow:inlet_RCA:RCA", + "6878": "flow:inlet_RCA:RCA", + "6879": "flow:inlet_RCA:RCA", + "6880": "flow:inlet_RCA:RCA", + "6881": "flow:inlet_RCA:RCA", + "6882": "flow:inlet_RCA:RCA", + "6883": "flow:inlet_RCA:RCA", + "6884": "flow:inlet_RCA:RCA", + "6885": "flow:inlet_RCA:RCA", + "6886": "flow:inlet_RCA:RCA", + "6887": "flow:inlet_RCA:RCA", + "6888": "flow:inlet_RCA:RCA", + "6889": "flow:inlet_RCA:RCA", + "6890": "flow:inlet_RCA:RCA", + "6891": "flow:inlet_RCA:RCA", + "6892": "flow:inlet_RCA:RCA", + "6893": "flow:inlet_RCA:RCA", + "6894": "flow:inlet_RCA:RCA", + "6895": "flow:inlet_RCA:RCA", + "6896": "flow:inlet_RCA:RCA", + "6897": "flow:inlet_RCA:RCA", + "6898": "flow:inlet_RCA:RCA", + "6899": "flow:inlet_RCA:RCA", + "6900": "flow:inlet_RCA:RCA", + "6901": "flow:inlet_RCA:RCA", + "6902": "flow:inlet_RCA:RCA", + "6903": "flow:inlet_RCA:RCA", + "6904": "flow:inlet_RCA:RCA", + "6905": "flow:inlet_RCA:RCA", + "6906": "flow:inlet_RCA:RCA", + "6907": "flow:inlet_RCA:RCA", + "6908": "flow:inlet_RCA:RCA", + "6909": "flow:inlet_RCA:RCA", + "6910": "flow:inlet_RCA:RCA", + "6911": "flow:inlet_RCA:RCA", + "6912": "flow:inlet_RCA:RCA", + "6913": "flow:inlet_RCA:RCA", + "6914": "flow:inlet_RCA:RCA", + "6915": "flow:inlet_RCA:RCA", + "6916": "flow:inlet_RCA:RCA", + "6917": "flow:inlet_RCA:RCA", + "6918": "flow:inlet_RCA:RCA", + "6919": "flow:inlet_RCA:RCA", + "6920": "flow:inlet_RCA:RCA", + "6921": "flow:inlet_RCA:RCA", + "6922": "flow:inlet_RCA:RCA", + "6923": "flow:inlet_RCA:RCA", + "6924": "flow:inlet_RCA:RCA", + "6925": "flow:inlet_RCA:RCA", + "6926": "flow:inlet_RCA:RCA", + "6927": "flow:inlet_RCA:RCA", + "6928": "flow:inlet_RCA:RCA", + "6929": "flow:inlet_RCA:RCA", + "6930": "flow:inlet_RCA:RCA", + "6931": "flow:inlet_RCA:RCA", + "6932": "flow:inlet_RCA:RCA", + "6933": "flow:inlet_RCA:RCA", + "6934": "flow:inlet_RCA:RCA", + "6935": "flow:inlet_RCA:RCA", + "6936": "flow:inlet_RCA:RCA", + "6937": "flow:inlet_RCA:RCA", + "6938": "flow:inlet_RCA:RCA", + "6939": "flow:inlet_RCA:RCA", + "6940": "flow:inlet_RCA:RCA", + "6941": "flow:inlet_RCA:RCA", + "6942": "flow:inlet_RCA:RCA", + "6943": "flow:inlet_RCA:RCA", + "6944": "flow:inlet_RCA:RCA", + "6945": "flow:inlet_RCA:RCA", + "6946": "flow:inlet_RCA:RCA", + "6947": "flow:inlet_RCA:RCA", + "6948": "flow:inlet_RCA:RCA", + "6949": "flow:inlet_RCA:RCA", + "6950": "flow:inlet_RCA:RCA", + "6951": "flow:inlet_RCA:RCA", + "6952": "flow:inlet_RCA:RCA", + "6953": "flow:inlet_RCA:RCA", + "6954": "flow:inlet_RCA:RCA", + "6955": "flow:inlet_RCA:RCA", + "6956": "flow:inlet_RCA:RCA", + "6957": "flow:inlet_RCA:RCA", + "6958": "flow:inlet_RCA:RCA", + "6959": "flow:inlet_RCA:RCA", + "6960": "flow:inlet_RCA:RCA", + "6961": "flow:inlet_RCA:RCA", + "6962": "flow:inlet_RCA:RCA", + "6963": "flow:inlet_RCA:RCA", + "6964": "flow:inlet_RCA:RCA", + "6965": "flow:inlet_RCA:RCA", + "6966": "flow:inlet_RCA:RCA", + "6967": "flow:inlet_RCA:RCA", + "6968": "flow:inlet_RCA:RCA", + "6969": "flow:inlet_RCA:RCA", + "6970": "flow:inlet_RCA:RCA", + "6971": "flow:inlet_RCA:RCA", + "6972": "flow:inlet_RCA:RCA", + "6973": "flow:inlet_RCA:RCA", + "6974": "flow:inlet_RCA:RCA", + "6975": "flow:inlet_RCA:RCA", + "6976": "flow:inlet_RCA:RCA", + "6977": "flow:inlet_RCA:RCA", + "6978": "flow:inlet_RCA:RCA", + "6979": "flow:inlet_RCA:RCA", + "6980": "flow:inlet_RCA:RCA", + "6981": "flow:inlet_RCA:RCA", + "6982": "flow:inlet_RCA:RCA", + "6983": "flow:inlet_RCA:RCA", + "6984": "flow:inlet_RCA:RCA", + "6985": "flow:inlet_RCA:RCA", + "6986": "flow:inlet_RCA:RCA", + "6987": "flow:inlet_RCA:RCA", + "6988": "flow:inlet_RCA:RCA", + "6989": "flow:inlet_RCA:RCA", + "6990": "flow:inlet_RCA:RCA", + "6991": "flow:inlet_RCA:RCA", + "6992": "flow:inlet_RCA:RCA", + "6993": "flow:inlet_RCA:RCA", + "6994": "flow:inlet_RCA:RCA", + "6995": "flow:inlet_RCA:RCA", + "6996": "flow:inlet_RCA:RCA", + "6997": "flow:inlet_RCA:RCA", + "6998": "flow:inlet_RCA:RCA", + "6999": "flow:inlet_RCA:RCA", + "7000": "pressure:inlet_RCA:RCA", + "7001": "pressure:inlet_RCA:RCA", + "7002": "pressure:inlet_RCA:RCA", + "7003": "pressure:inlet_RCA:RCA", + "7004": "pressure:inlet_RCA:RCA", + "7005": "pressure:inlet_RCA:RCA", + "7006": "pressure:inlet_RCA:RCA", + "7007": "pressure:inlet_RCA:RCA", + "7008": "pressure:inlet_RCA:RCA", + "7009": "pressure:inlet_RCA:RCA", + "7010": "pressure:inlet_RCA:RCA", + "7011": "pressure:inlet_RCA:RCA", + "7012": "pressure:inlet_RCA:RCA", + "7013": "pressure:inlet_RCA:RCA", + "7014": "pressure:inlet_RCA:RCA", + "7015": "pressure:inlet_RCA:RCA", + "7016": "pressure:inlet_RCA:RCA", + "7017": "pressure:inlet_RCA:RCA", + "7018": "pressure:inlet_RCA:RCA", + "7019": "pressure:inlet_RCA:RCA", + "7020": "pressure:inlet_RCA:RCA", + "7021": "pressure:inlet_RCA:RCA", + "7022": "pressure:inlet_RCA:RCA", + "7023": "pressure:inlet_RCA:RCA", + "7024": "pressure:inlet_RCA:RCA", + "7025": "pressure:inlet_RCA:RCA", + "7026": "pressure:inlet_RCA:RCA", + "7027": "pressure:inlet_RCA:RCA", + "7028": "pressure:inlet_RCA:RCA", + "7029": "pressure:inlet_RCA:RCA", + "7030": "pressure:inlet_RCA:RCA", + "7031": "pressure:inlet_RCA:RCA", + "7032": "pressure:inlet_RCA:RCA", + "7033": "pressure:inlet_RCA:RCA", + "7034": "pressure:inlet_RCA:RCA", + "7035": "pressure:inlet_RCA:RCA", + "7036": "pressure:inlet_RCA:RCA", + "7037": "pressure:inlet_RCA:RCA", + "7038": "pressure:inlet_RCA:RCA", + "7039": "pressure:inlet_RCA:RCA", + "7040": "pressure:inlet_RCA:RCA", + "7041": "pressure:inlet_RCA:RCA", + "7042": "pressure:inlet_RCA:RCA", + "7043": "pressure:inlet_RCA:RCA", + "7044": "pressure:inlet_RCA:RCA", + "7045": "pressure:inlet_RCA:RCA", + "7046": "pressure:inlet_RCA:RCA", + "7047": "pressure:inlet_RCA:RCA", + "7048": "pressure:inlet_RCA:RCA", + "7049": "pressure:inlet_RCA:RCA", + "7050": "pressure:inlet_RCA:RCA", + "7051": "pressure:inlet_RCA:RCA", + "7052": "pressure:inlet_RCA:RCA", + "7053": "pressure:inlet_RCA:RCA", + "7054": "pressure:inlet_RCA:RCA", + "7055": "pressure:inlet_RCA:RCA", + "7056": "pressure:inlet_RCA:RCA", + "7057": "pressure:inlet_RCA:RCA", + "7058": "pressure:inlet_RCA:RCA", + "7059": "pressure:inlet_RCA:RCA", + "7060": "pressure:inlet_RCA:RCA", + "7061": "pressure:inlet_RCA:RCA", + "7062": "pressure:inlet_RCA:RCA", + "7063": "pressure:inlet_RCA:RCA", + "7064": "pressure:inlet_RCA:RCA", + "7065": "pressure:inlet_RCA:RCA", + "7066": "pressure:inlet_RCA:RCA", + "7067": "pressure:inlet_RCA:RCA", + "7068": "pressure:inlet_RCA:RCA", + "7069": "pressure:inlet_RCA:RCA", + "7070": "pressure:inlet_RCA:RCA", + "7071": "pressure:inlet_RCA:RCA", + "7072": "pressure:inlet_RCA:RCA", + "7073": "pressure:inlet_RCA:RCA", + "7074": "pressure:inlet_RCA:RCA", + "7075": "pressure:inlet_RCA:RCA", + "7076": "pressure:inlet_RCA:RCA", + "7077": "pressure:inlet_RCA:RCA", + "7078": "pressure:inlet_RCA:RCA", + "7079": "pressure:inlet_RCA:RCA", + "7080": "pressure:inlet_RCA:RCA", + "7081": "pressure:inlet_RCA:RCA", + "7082": "pressure:inlet_RCA:RCA", + "7083": "pressure:inlet_RCA:RCA", + "7084": "pressure:inlet_RCA:RCA", + "7085": "pressure:inlet_RCA:RCA", + "7086": "pressure:inlet_RCA:RCA", + "7087": "pressure:inlet_RCA:RCA", + "7088": "pressure:inlet_RCA:RCA", + "7089": "pressure:inlet_RCA:RCA", + "7090": "pressure:inlet_RCA:RCA", + "7091": "pressure:inlet_RCA:RCA", + "7092": "pressure:inlet_RCA:RCA", + "7093": "pressure:inlet_RCA:RCA", + "7094": "pressure:inlet_RCA:RCA", + "7095": "pressure:inlet_RCA:RCA", + "7096": "pressure:inlet_RCA:RCA", + "7097": "pressure:inlet_RCA:RCA", + "7098": "pressure:inlet_RCA:RCA", + "7099": "pressure:inlet_RCA:RCA", + "7100": "pressure:inlet_RCA:RCA", + "7101": "pressure:inlet_RCA:RCA", + "7102": "pressure:inlet_RCA:RCA", + "7103": "pressure:inlet_RCA:RCA", + "7104": "pressure:inlet_RCA:RCA", + "7105": "pressure:inlet_RCA:RCA", + "7106": "pressure:inlet_RCA:RCA", + "7107": "pressure:inlet_RCA:RCA", + "7108": "pressure:inlet_RCA:RCA", + "7109": "pressure:inlet_RCA:RCA", + "7110": "pressure:inlet_RCA:RCA", + "7111": "pressure:inlet_RCA:RCA", + "7112": "pressure:inlet_RCA:RCA", + "7113": "pressure:inlet_RCA:RCA", + "7114": "pressure:inlet_RCA:RCA", + "7115": "pressure:inlet_RCA:RCA", + "7116": "pressure:inlet_RCA:RCA", + "7117": "pressure:inlet_RCA:RCA", + "7118": "pressure:inlet_RCA:RCA", + "7119": "pressure:inlet_RCA:RCA", + "7120": "pressure:inlet_RCA:RCA", + "7121": "pressure:inlet_RCA:RCA", + "7122": "pressure:inlet_RCA:RCA", + "7123": "pressure:inlet_RCA:RCA", + "7124": "pressure:inlet_RCA:RCA", + "7125": "pressure:inlet_RCA:RCA", + "7126": "pressure:inlet_RCA:RCA", + "7127": "pressure:inlet_RCA:RCA", + "7128": "pressure:inlet_RCA:RCA", + "7129": "pressure:inlet_RCA:RCA", + "7130": "pressure:inlet_RCA:RCA", + "7131": "pressure:inlet_RCA:RCA", + "7132": "pressure:inlet_RCA:RCA", + "7133": "pressure:inlet_RCA:RCA", + "7134": "pressure:inlet_RCA:RCA", + "7135": "pressure:inlet_RCA:RCA", + "7136": "pressure:inlet_RCA:RCA", + "7137": "pressure:inlet_RCA:RCA", + "7138": "pressure:inlet_RCA:RCA", + "7139": "pressure:inlet_RCA:RCA", + "7140": "pressure:inlet_RCA:RCA", + "7141": "pressure:inlet_RCA:RCA", + "7142": "pressure:inlet_RCA:RCA", + "7143": "pressure:inlet_RCA:RCA", + "7144": "pressure:inlet_RCA:RCA", + "7145": "pressure:inlet_RCA:RCA", + "7146": "pressure:inlet_RCA:RCA", + "7147": "pressure:inlet_RCA:RCA", + "7148": "pressure:inlet_RCA:RCA", + "7149": "pressure:inlet_RCA:RCA", + "7150": "pressure:inlet_RCA:RCA", + "7151": "pressure:inlet_RCA:RCA", + "7152": "pressure:inlet_RCA:RCA", + "7153": "pressure:inlet_RCA:RCA", + "7154": "pressure:inlet_RCA:RCA", + "7155": "pressure:inlet_RCA:RCA", + "7156": "pressure:inlet_RCA:RCA", + "7157": "pressure:inlet_RCA:RCA", + "7158": "pressure:inlet_RCA:RCA", + "7159": "pressure:inlet_RCA:RCA", + "7160": "pressure:inlet_RCA:RCA", + "7161": "pressure:inlet_RCA:RCA", + "7162": "pressure:inlet_RCA:RCA", + "7163": "pressure:inlet_RCA:RCA", + "7164": "pressure:inlet_RCA:RCA", + "7165": "pressure:inlet_RCA:RCA", + "7166": "pressure:inlet_RCA:RCA", + "7167": "pressure:inlet_RCA:RCA", + "7168": "pressure:inlet_RCA:RCA", + "7169": "pressure:inlet_RCA:RCA", + "7170": "pressure:inlet_RCA:RCA", + "7171": "pressure:inlet_RCA:RCA", + "7172": "pressure:inlet_RCA:RCA", + "7173": "pressure:inlet_RCA:RCA", + "7174": "pressure:inlet_RCA:RCA", + "7175": "pressure:inlet_RCA:RCA", + "7176": "pressure:inlet_RCA:RCA", + "7177": "pressure:inlet_RCA:RCA", + "7178": "pressure:inlet_RCA:RCA", + "7179": "pressure:inlet_RCA:RCA", + "7180": "pressure:inlet_RCA:RCA", + "7181": "pressure:inlet_RCA:RCA", + "7182": "pressure:inlet_RCA:RCA", + "7183": "pressure:inlet_RCA:RCA", + "7184": "pressure:inlet_RCA:RCA", + "7185": "pressure:inlet_RCA:RCA", + "7186": "pressure:inlet_RCA:RCA", + "7187": "pressure:inlet_RCA:RCA", + "7188": "pressure:inlet_RCA:RCA", + "7189": "pressure:inlet_RCA:RCA", + "7190": "pressure:inlet_RCA:RCA", + "7191": "pressure:inlet_RCA:RCA", + "7192": "pressure:inlet_RCA:RCA", + "7193": "pressure:inlet_RCA:RCA", + "7194": "pressure:inlet_RCA:RCA", + "7195": "pressure:inlet_RCA:RCA", + "7196": "pressure:inlet_RCA:RCA", + "7197": "pressure:inlet_RCA:RCA", + "7198": "pressure:inlet_RCA:RCA", + "7199": "pressure:inlet_RCA:RCA", + "7200": "pressure:inlet_RCA:RCA", + "7201": "pressure:inlet_RCA:RCA", + "7202": "pressure:inlet_RCA:RCA", + "7203": "pressure:inlet_RCA:RCA", + "7204": "pressure:inlet_RCA:RCA", + "7205": "pressure:inlet_RCA:RCA", + "7206": "pressure:inlet_RCA:RCA", + "7207": "pressure:inlet_RCA:RCA", + "7208": "pressure:inlet_RCA:RCA", + "7209": "pressure:inlet_RCA:RCA", + "7210": "pressure:inlet_RCA:RCA", + "7211": "pressure:inlet_RCA:RCA", + "7212": "pressure:inlet_RCA:RCA", + "7213": "pressure:inlet_RCA:RCA", + "7214": "pressure:inlet_RCA:RCA", + "7215": "pressure:inlet_RCA:RCA", + "7216": "pressure:inlet_RCA:RCA", + "7217": "pressure:inlet_RCA:RCA", + "7218": "pressure:inlet_RCA:RCA", + "7219": "pressure:inlet_RCA:RCA", + "7220": "pressure:inlet_RCA:RCA", + "7221": "pressure:inlet_RCA:RCA", + "7222": "pressure:inlet_RCA:RCA", + "7223": "pressure:inlet_RCA:RCA", + "7224": "pressure:inlet_RCA:RCA", + "7225": "pressure:inlet_RCA:RCA", + "7226": "pressure:inlet_RCA:RCA", + "7227": "pressure:inlet_RCA:RCA", + "7228": "pressure:inlet_RCA:RCA", + "7229": "pressure:inlet_RCA:RCA", + "7230": "pressure:inlet_RCA:RCA", + "7231": "pressure:inlet_RCA:RCA", + "7232": "pressure:inlet_RCA:RCA", + "7233": "pressure:inlet_RCA:RCA", + "7234": "pressure:inlet_RCA:RCA", + "7235": "pressure:inlet_RCA:RCA", + "7236": "pressure:inlet_RCA:RCA", + "7237": "pressure:inlet_RCA:RCA", + "7238": "pressure:inlet_RCA:RCA", + "7239": "pressure:inlet_RCA:RCA", + "7240": "pressure:inlet_RCA:RCA", + "7241": "pressure:inlet_RCA:RCA", + "7242": "pressure:inlet_RCA:RCA", + "7243": "pressure:inlet_RCA:RCA", + "7244": "pressure:inlet_RCA:RCA", + "7245": "pressure:inlet_RCA:RCA", + "7246": "pressure:inlet_RCA:RCA", + "7247": "pressure:inlet_RCA:RCA", + "7248": "pressure:inlet_RCA:RCA", + "7249": "pressure:inlet_RCA:RCA", + "7250": "pressure:inlet_RCA:RCA", + "7251": "pressure:inlet_RCA:RCA", + "7252": "pressure:inlet_RCA:RCA", + "7253": "pressure:inlet_RCA:RCA", + "7254": "pressure:inlet_RCA:RCA", + "7255": "pressure:inlet_RCA:RCA", + "7256": "pressure:inlet_RCA:RCA", + "7257": "pressure:inlet_RCA:RCA", + "7258": "pressure:inlet_RCA:RCA", + "7259": "pressure:inlet_RCA:RCA", + "7260": "pressure:inlet_RCA:RCA", + "7261": "pressure:inlet_RCA:RCA", + "7262": "pressure:inlet_RCA:RCA", + "7263": "pressure:inlet_RCA:RCA", + "7264": "pressure:inlet_RCA:RCA", + "7265": "pressure:inlet_RCA:RCA", + "7266": "pressure:inlet_RCA:RCA", + "7267": "pressure:inlet_RCA:RCA", + "7268": "pressure:inlet_RCA:RCA", + "7269": "pressure:inlet_RCA:RCA", + "7270": "pressure:inlet_RCA:RCA", + "7271": "pressure:inlet_RCA:RCA", + "7272": "pressure:inlet_RCA:RCA", + "7273": "pressure:inlet_RCA:RCA", + "7274": "pressure:inlet_RCA:RCA", + "7275": "pressure:inlet_RCA:RCA", + "7276": "pressure:inlet_RCA:RCA", + "7277": "pressure:inlet_RCA:RCA", + "7278": "pressure:inlet_RCA:RCA", + "7279": "pressure:inlet_RCA:RCA", + "7280": "pressure:inlet_RCA:RCA", + "7281": "pressure:inlet_RCA:RCA", + "7282": "pressure:inlet_RCA:RCA", + "7283": "pressure:inlet_RCA:RCA", + "7284": "pressure:inlet_RCA:RCA", + "7285": "pressure:inlet_RCA:RCA", + "7286": "pressure:inlet_RCA:RCA", + "7287": "pressure:inlet_RCA:RCA", + "7288": "pressure:inlet_RCA:RCA", + "7289": "pressure:inlet_RCA:RCA", + "7290": "pressure:inlet_RCA:RCA", + "7291": "pressure:inlet_RCA:RCA", + "7292": "pressure:inlet_RCA:RCA", + "7293": "pressure:inlet_RCA:RCA", + "7294": "pressure:inlet_RCA:RCA", + "7295": "pressure:inlet_RCA:RCA", + "7296": "pressure:inlet_RCA:RCA", + "7297": "pressure:inlet_RCA:RCA", + "7298": "pressure:inlet_RCA:RCA", + "7299": "pressure:inlet_RCA:RCA", + "7300": "pressure:inlet_RCA:RCA", + "7301": "pressure:inlet_RCA:RCA", + "7302": "pressure:inlet_RCA:RCA", + "7303": "pressure:inlet_RCA:RCA", + "7304": "pressure:inlet_RCA:RCA", + "7305": "pressure:inlet_RCA:RCA", + "7306": "pressure:inlet_RCA:RCA", + "7307": "pressure:inlet_RCA:RCA", + "7308": "pressure:inlet_RCA:RCA", + "7309": "pressure:inlet_RCA:RCA", + "7310": "pressure:inlet_RCA:RCA", + "7311": "pressure:inlet_RCA:RCA", + "7312": "pressure:inlet_RCA:RCA", + "7313": "pressure:inlet_RCA:RCA", + "7314": "pressure:inlet_RCA:RCA", + "7315": "pressure:inlet_RCA:RCA", + "7316": "pressure:inlet_RCA:RCA", + "7317": "pressure:inlet_RCA:RCA", + "7318": "pressure:inlet_RCA:RCA", + "7319": "pressure:inlet_RCA:RCA", + "7320": "pressure:inlet_RCA:RCA", + "7321": "pressure:inlet_RCA:RCA", + "7322": "pressure:inlet_RCA:RCA", + "7323": "pressure:inlet_RCA:RCA", + "7324": "pressure:inlet_RCA:RCA", + "7325": "pressure:inlet_RCA:RCA", + "7326": "pressure:inlet_RCA:RCA", + "7327": "pressure:inlet_RCA:RCA", + "7328": "pressure:inlet_RCA:RCA", + "7329": "pressure:inlet_RCA:RCA", + "7330": "pressure:inlet_RCA:RCA", + "7331": "pressure:inlet_RCA:RCA", + "7332": "pressure:inlet_RCA:RCA", + "7333": "pressure:inlet_RCA:RCA", + "7334": "pressure:inlet_RCA:RCA", + "7335": "pressure:inlet_RCA:RCA", + "7336": "pressure:inlet_RCA:RCA", + "7337": "pressure:inlet_RCA:RCA", + "7338": "pressure:inlet_RCA:RCA", + "7339": "pressure:inlet_RCA:RCA", + "7340": "pressure:inlet_RCA:RCA", + "7341": "pressure:inlet_RCA:RCA", + "7342": "pressure:inlet_RCA:RCA", + "7343": "pressure:inlet_RCA:RCA", + "7344": "pressure:inlet_RCA:RCA", + "7345": "pressure:inlet_RCA:RCA", + "7346": "pressure:inlet_RCA:RCA", + "7347": "pressure:inlet_RCA:RCA", + "7348": "pressure:inlet_RCA:RCA", + "7349": "pressure:inlet_RCA:RCA", + "7350": "pressure:inlet_RCA:RCA", + "7351": "pressure:inlet_RCA:RCA", + "7352": "pressure:inlet_RCA:RCA", + "7353": "pressure:inlet_RCA:RCA", + "7354": "pressure:inlet_RCA:RCA", + "7355": "pressure:inlet_RCA:RCA", + "7356": "pressure:inlet_RCA:RCA", + "7357": "pressure:inlet_RCA:RCA", + "7358": "pressure:inlet_RCA:RCA", + "7359": "pressure:inlet_RCA:RCA", + "7360": "pressure:inlet_RCA:RCA", + "7361": "pressure:inlet_RCA:RCA", + "7362": "pressure:inlet_RCA:RCA", + "7363": "pressure:inlet_RCA:RCA", + "7364": "pressure:inlet_RCA:RCA", + "7365": "pressure:inlet_RCA:RCA", + "7366": "pressure:inlet_RCA:RCA", + "7367": "pressure:inlet_RCA:RCA", + "7368": "pressure:inlet_RCA:RCA", + "7369": "pressure:inlet_RCA:RCA", + "7370": "pressure:inlet_RCA:RCA", + "7371": "pressure:inlet_RCA:RCA", + "7372": "pressure:inlet_RCA:RCA", + "7373": "pressure:inlet_RCA:RCA", + "7374": "pressure:inlet_RCA:RCA", + "7375": "pressure:inlet_RCA:RCA", + "7376": "pressure:inlet_RCA:RCA", + "7377": "pressure:inlet_RCA:RCA", + "7378": "pressure:inlet_RCA:RCA", + "7379": "pressure:inlet_RCA:RCA", + "7380": "pressure:inlet_RCA:RCA", + "7381": "pressure:inlet_RCA:RCA", + "7382": "pressure:inlet_RCA:RCA", + "7383": "pressure:inlet_RCA:RCA", + "7384": "pressure:inlet_RCA:RCA", + "7385": "pressure:inlet_RCA:RCA", + "7386": "pressure:inlet_RCA:RCA", + "7387": "pressure:inlet_RCA:RCA", + "7388": "pressure:inlet_RCA:RCA", + "7389": "pressure:inlet_RCA:RCA", + "7390": "pressure:inlet_RCA:RCA", + "7391": "pressure:inlet_RCA:RCA", + "7392": "pressure:inlet_RCA:RCA", + "7393": "pressure:inlet_RCA:RCA", + "7394": "pressure:inlet_RCA:RCA", + "7395": "pressure:inlet_RCA:RCA", + "7396": "pressure:inlet_RCA:RCA", + "7397": "pressure:inlet_RCA:RCA", + "7398": "pressure:inlet_RCA:RCA", + "7399": "pressure:inlet_RCA:RCA", + "7400": "pressure:inlet_RCA:RCA", + "7401": "pressure:inlet_RCA:RCA", + "7402": "pressure:inlet_RCA:RCA", + "7403": "pressure:inlet_RCA:RCA", + "7404": "pressure:inlet_RCA:RCA", + "7405": "pressure:inlet_RCA:RCA", + "7406": "pressure:inlet_RCA:RCA", + "7407": "pressure:inlet_RCA:RCA", + "7408": "pressure:inlet_RCA:RCA", + "7409": "pressure:inlet_RCA:RCA", + "7410": "pressure:inlet_RCA:RCA", + "7411": "pressure:inlet_RCA:RCA", + "7412": "pressure:inlet_RCA:RCA", + "7413": "pressure:inlet_RCA:RCA", + "7414": "pressure:inlet_RCA:RCA", + "7415": "pressure:inlet_RCA:RCA", + "7416": "pressure:inlet_RCA:RCA", + "7417": "pressure:inlet_RCA:RCA", + "7418": "pressure:inlet_RCA:RCA", + "7419": "pressure:inlet_RCA:RCA", + "7420": "pressure:inlet_RCA:RCA", + "7421": "pressure:inlet_RCA:RCA", + "7422": "pressure:inlet_RCA:RCA", + "7423": "pressure:inlet_RCA:RCA", + "7424": "pressure:inlet_RCA:RCA", + "7425": "pressure:inlet_RCA:RCA", + "7426": "pressure:inlet_RCA:RCA", + "7427": "pressure:inlet_RCA:RCA", + "7428": "pressure:inlet_RCA:RCA", + "7429": "pressure:inlet_RCA:RCA", + "7430": "pressure:inlet_RCA:RCA", + "7431": "pressure:inlet_RCA:RCA", + "7432": "pressure:inlet_RCA:RCA", + "7433": "pressure:inlet_RCA:RCA", + "7434": "pressure:inlet_RCA:RCA", + "7435": "pressure:inlet_RCA:RCA", + "7436": "pressure:inlet_RCA:RCA", + "7437": "pressure:inlet_RCA:RCA", + "7438": "pressure:inlet_RCA:RCA", + "7439": "pressure:inlet_RCA:RCA", + "7440": "pressure:inlet_RCA:RCA", + "7441": "pressure:inlet_RCA:RCA", + "7442": "pressure:inlet_RCA:RCA", + "7443": "pressure:inlet_RCA:RCA", + "7444": "pressure:inlet_RCA:RCA", + "7445": "pressure:inlet_RCA:RCA", + "7446": "pressure:inlet_RCA:RCA", + "7447": "pressure:inlet_RCA:RCA", + "7448": "pressure:inlet_RCA:RCA", + "7449": "pressure:inlet_RCA:RCA", + "7450": "pressure:inlet_RCA:RCA", + "7451": "pressure:inlet_RCA:RCA", + "7452": "pressure:inlet_RCA:RCA", + "7453": "pressure:inlet_RCA:RCA", + "7454": "pressure:inlet_RCA:RCA", + "7455": "pressure:inlet_RCA:RCA", + "7456": "pressure:inlet_RCA:RCA", + "7457": "pressure:inlet_RCA:RCA", + "7458": "pressure:inlet_RCA:RCA", + "7459": "pressure:inlet_RCA:RCA", + "7460": "pressure:inlet_RCA:RCA", + "7461": "pressure:inlet_RCA:RCA", + "7462": "pressure:inlet_RCA:RCA", + "7463": "pressure:inlet_RCA:RCA", + "7464": "pressure:inlet_RCA:RCA", + "7465": "pressure:inlet_RCA:RCA", + "7466": "pressure:inlet_RCA:RCA", + "7467": "pressure:inlet_RCA:RCA", + "7468": "pressure:inlet_RCA:RCA", + "7469": "pressure:inlet_RCA:RCA", + "7470": "pressure:inlet_RCA:RCA", + "7471": "pressure:inlet_RCA:RCA", + "7472": "pressure:inlet_RCA:RCA", + "7473": "pressure:inlet_RCA:RCA", + "7474": "pressure:inlet_RCA:RCA", + "7475": "pressure:inlet_RCA:RCA", + "7476": "pressure:inlet_RCA:RCA", + "7477": "pressure:inlet_RCA:RCA", + "7478": "pressure:inlet_RCA:RCA", + "7479": "pressure:inlet_RCA:RCA", + "7480": "pressure:inlet_RCA:RCA", + "7481": "pressure:inlet_RCA:RCA", + "7482": "pressure:inlet_RCA:RCA", + "7483": "pressure:inlet_RCA:RCA", + "7484": "pressure:inlet_RCA:RCA", + "7485": "pressure:inlet_RCA:RCA", + "7486": "pressure:inlet_RCA:RCA", + "7487": "pressure:inlet_RCA:RCA", + "7488": "pressure:inlet_RCA:RCA", + "7489": "pressure:inlet_RCA:RCA", + "7490": "pressure:inlet_RCA:RCA", + "7491": "pressure:inlet_RCA:RCA", + "7492": "pressure:inlet_RCA:RCA", + "7493": "pressure:inlet_RCA:RCA", + "7494": "pressure:inlet_RCA:RCA", + "7495": "pressure:inlet_RCA:RCA", + "7496": "pressure:inlet_RCA:RCA", + "7497": "pressure:inlet_RCA:RCA", + "7498": "pressure:inlet_RCA:RCA", + "7499": "pressure:inlet_RCA:RCA", + "7500": "pressure:inlet_RCA:RCA", + "7501": "pressure:inlet_RCA:RCA", + "7502": "pressure:inlet_RCA:RCA", + "7503": "pressure:inlet_RCA:RCA", + "7504": "pressure:inlet_RCA:RCA", + "7505": "pressure:inlet_RCA:RCA", + "7506": "pressure:inlet_RCA:RCA", + "7507": "pressure:inlet_RCA:RCA", + "7508": "pressure:inlet_RCA:RCA", + "7509": "pressure:inlet_RCA:RCA", + "7510": "pressure:inlet_RCA:RCA", + "7511": "pressure:inlet_RCA:RCA", + "7512": "pressure:inlet_RCA:RCA", + "7513": "pressure:inlet_RCA:RCA", + "7514": "pressure:inlet_RCA:RCA", + "7515": "pressure:inlet_RCA:RCA", + "7516": "pressure:inlet_RCA:RCA", + "7517": "pressure:inlet_RCA:RCA", + "7518": "pressure:inlet_RCA:RCA", + "7519": "pressure:inlet_RCA:RCA", + "7520": "pressure:inlet_RCA:RCA", + "7521": "pressure:inlet_RCA:RCA", + "7522": "pressure:inlet_RCA:RCA", + "7523": "pressure:inlet_RCA:RCA", + "7524": "pressure:inlet_RCA:RCA", + "7525": "pressure:inlet_RCA:RCA", + "7526": "pressure:inlet_RCA:RCA", + "7527": "pressure:inlet_RCA:RCA", + "7528": "pressure:inlet_RCA:RCA", + "7529": "pressure:inlet_RCA:RCA", + "7530": "pressure:inlet_RCA:RCA", + "7531": "pressure:inlet_RCA:RCA", + "7532": "pressure:inlet_RCA:RCA", + "7533": "pressure:inlet_RCA:RCA", + "7534": "pressure:inlet_RCA:RCA", + "7535": "pressure:inlet_RCA:RCA", + "7536": "pressure:inlet_RCA:RCA", + "7537": "pressure:inlet_RCA:RCA", + "7538": "pressure:inlet_RCA:RCA", + "7539": "pressure:inlet_RCA:RCA", + "7540": "pressure:inlet_RCA:RCA", + "7541": "pressure:inlet_RCA:RCA", + "7542": "pressure:inlet_RCA:RCA", + "7543": "pressure:inlet_RCA:RCA", + "7544": "pressure:inlet_RCA:RCA", + "7545": "pressure:inlet_RCA:RCA", + "7546": "pressure:inlet_RCA:RCA", + "7547": "pressure:inlet_RCA:RCA", + "7548": "pressure:inlet_RCA:RCA", + "7549": "pressure:inlet_RCA:RCA", + "7550": "pressure:inlet_RCA:RCA", + "7551": "pressure:inlet_RCA:RCA", + "7552": "pressure:inlet_RCA:RCA", + "7553": "pressure:inlet_RCA:RCA", + "7554": "pressure:inlet_RCA:RCA", + "7555": "pressure:inlet_RCA:RCA", + "7556": "pressure:inlet_RCA:RCA", + "7557": "pressure:inlet_RCA:RCA", + "7558": "pressure:inlet_RCA:RCA", + "7559": "pressure:inlet_RCA:RCA", + "7560": "pressure:inlet_RCA:RCA", + "7561": "pressure:inlet_RCA:RCA", + "7562": "pressure:inlet_RCA:RCA", + "7563": "pressure:inlet_RCA:RCA", + "7564": "pressure:inlet_RCA:RCA", + "7565": "pressure:inlet_RCA:RCA", + "7566": "pressure:inlet_RCA:RCA", + "7567": "pressure:inlet_RCA:RCA", + "7568": "pressure:inlet_RCA:RCA", + "7569": "pressure:inlet_RCA:RCA", + "7570": "pressure:inlet_RCA:RCA", + "7571": "pressure:inlet_RCA:RCA", + "7572": "pressure:inlet_RCA:RCA", + "7573": "pressure:inlet_RCA:RCA", + "7574": "pressure:inlet_RCA:RCA", + "7575": "pressure:inlet_RCA:RCA", + "7576": "pressure:inlet_RCA:RCA", + "7577": "pressure:inlet_RCA:RCA", + "7578": "pressure:inlet_RCA:RCA", + "7579": "pressure:inlet_RCA:RCA", + "7580": "pressure:inlet_RCA:RCA", + "7581": "pressure:inlet_RCA:RCA", + "7582": "pressure:inlet_RCA:RCA", + "7583": "pressure:inlet_RCA:RCA", + "7584": "pressure:inlet_RCA:RCA", + "7585": "pressure:inlet_RCA:RCA", + "7586": "pressure:inlet_RCA:RCA", + "7587": "pressure:inlet_RCA:RCA", + "7588": "pressure:inlet_RCA:RCA", + "7589": "pressure:inlet_RCA:RCA", + "7590": "pressure:inlet_RCA:RCA", + "7591": "pressure:inlet_RCA:RCA", + "7592": "pressure:inlet_RCA:RCA", + "7593": "pressure:inlet_RCA:RCA", + "7594": "pressure:inlet_RCA:RCA", + "7595": "pressure:inlet_RCA:RCA", + "7596": "pressure:inlet_RCA:RCA", + "7597": "pressure:inlet_RCA:RCA", + "7598": "pressure:inlet_RCA:RCA", + "7599": "pressure:inlet_RCA:RCA", + "7600": "pressure:inlet_RCA:RCA", + "7601": "pressure:inlet_RCA:RCA", + "7602": "pressure:inlet_RCA:RCA", + "7603": "pressure:inlet_RCA:RCA", + "7604": "pressure:inlet_RCA:RCA", + "7605": "pressure:inlet_RCA:RCA", + "7606": "pressure:inlet_RCA:RCA", + "7607": "pressure:inlet_RCA:RCA", + "7608": "pressure:inlet_RCA:RCA", + "7609": "pressure:inlet_RCA:RCA", + "7610": "pressure:inlet_RCA:RCA", + "7611": "pressure:inlet_RCA:RCA", + "7612": "pressure:inlet_RCA:RCA", + "7613": "pressure:inlet_RCA:RCA", + "7614": "pressure:inlet_RCA:RCA", + "7615": "pressure:inlet_RCA:RCA", + "7616": "pressure:inlet_RCA:RCA", + "7617": "pressure:inlet_RCA:RCA", + "7618": "pressure:inlet_RCA:RCA", + "7619": "pressure:inlet_RCA:RCA", + "7620": "pressure:inlet_RCA:RCA", + "7621": "pressure:inlet_RCA:RCA", + "7622": "pressure:inlet_RCA:RCA", + "7623": "pressure:inlet_RCA:RCA", + "7624": "pressure:inlet_RCA:RCA", + "7625": "pressure:inlet_RCA:RCA", + "7626": "pressure:inlet_RCA:RCA", + "7627": "pressure:inlet_RCA:RCA", + "7628": "pressure:inlet_RCA:RCA", + "7629": "pressure:inlet_RCA:RCA", + "7630": "pressure:inlet_RCA:RCA", + "7631": "pressure:inlet_RCA:RCA", + "7632": "pressure:inlet_RCA:RCA", + "7633": "pressure:inlet_RCA:RCA", + "7634": "pressure:inlet_RCA:RCA", + "7635": "pressure:inlet_RCA:RCA", + "7636": "pressure:inlet_RCA:RCA", + "7637": "pressure:inlet_RCA:RCA", + "7638": "pressure:inlet_RCA:RCA", + "7639": "pressure:inlet_RCA:RCA", + "7640": "pressure:inlet_RCA:RCA", + "7641": "pressure:inlet_RCA:RCA", + "7642": "pressure:inlet_RCA:RCA", + "7643": "pressure:inlet_RCA:RCA", + "7644": "pressure:inlet_RCA:RCA", + "7645": "pressure:inlet_RCA:RCA", + "7646": "pressure:inlet_RCA:RCA", + "7647": "pressure:inlet_RCA:RCA", + "7648": "pressure:inlet_RCA:RCA", + "7649": "pressure:inlet_RCA:RCA", + "7650": "pressure:inlet_RCA:RCA", + "7651": "pressure:inlet_RCA:RCA", + "7652": "pressure:inlet_RCA:RCA", + "7653": "pressure:inlet_RCA:RCA", + "7654": "pressure:inlet_RCA:RCA", + "7655": "pressure:inlet_RCA:RCA", + "7656": "pressure:inlet_RCA:RCA", + "7657": "pressure:inlet_RCA:RCA", + "7658": "pressure:inlet_RCA:RCA", + "7659": "pressure:inlet_RCA:RCA", + "7660": "pressure:inlet_RCA:RCA", + "7661": "pressure:inlet_RCA:RCA", + "7662": "pressure:inlet_RCA:RCA", + "7663": "pressure:inlet_RCA:RCA", + "7664": "pressure:inlet_RCA:RCA", + "7665": "pressure:inlet_RCA:RCA", + "7666": "pressure:inlet_RCA:RCA", + "7667": "pressure:inlet_RCA:RCA", + "7668": "pressure:inlet_RCA:RCA", + "7669": "pressure:inlet_RCA:RCA", + "7670": "pressure:inlet_RCA:RCA", + "7671": "pressure:inlet_RCA:RCA", + "7672": "pressure:inlet_RCA:RCA", + "7673": "pressure:inlet_RCA:RCA", + "7674": "pressure:inlet_RCA:RCA", + "7675": "pressure:inlet_RCA:RCA", + "7676": "pressure:inlet_RCA:RCA", + "7677": "pressure:inlet_RCA:RCA", + "7678": "pressure:inlet_RCA:RCA", + "7679": "pressure:inlet_RCA:RCA", + "7680": "pressure:inlet_RCA:RCA", + "7681": "pressure:inlet_RCA:RCA", + "7682": "pressure:inlet_RCA:RCA", + "7683": "pressure:inlet_RCA:RCA", + "7684": "pressure:inlet_RCA:RCA", + "7685": "pressure:inlet_RCA:RCA", + "7686": "pressure:inlet_RCA:RCA", + "7687": "pressure:inlet_RCA:RCA", + "7688": "pressure:inlet_RCA:RCA", + "7689": "pressure:inlet_RCA:RCA", + "7690": "pressure:inlet_RCA:RCA", + "7691": "pressure:inlet_RCA:RCA", + "7692": "pressure:inlet_RCA:RCA", + "7693": "pressure:inlet_RCA:RCA", + "7694": "pressure:inlet_RCA:RCA", + "7695": "pressure:inlet_RCA:RCA", + "7696": "pressure:inlet_RCA:RCA", + "7697": "pressure:inlet_RCA:RCA", + "7698": "pressure:inlet_RCA:RCA", + "7699": "pressure:inlet_RCA:RCA", + "7700": "pressure:inlet_RCA:RCA", + "7701": "pressure:inlet_RCA:RCA", + "7702": "pressure:inlet_RCA:RCA", + "7703": "pressure:inlet_RCA:RCA", + "7704": "pressure:inlet_RCA:RCA", + "7705": "pressure:inlet_RCA:RCA", + "7706": "pressure:inlet_RCA:RCA", + "7707": "pressure:inlet_RCA:RCA", + "7708": "pressure:inlet_RCA:RCA", + "7709": "pressure:inlet_RCA:RCA", + "7710": "pressure:inlet_RCA:RCA", + "7711": "pressure:inlet_RCA:RCA", + "7712": "pressure:inlet_RCA:RCA", + "7713": "pressure:inlet_RCA:RCA", + "7714": "pressure:inlet_RCA:RCA", + "7715": "pressure:inlet_RCA:RCA", + "7716": "pressure:inlet_RCA:RCA", + "7717": "pressure:inlet_RCA:RCA", + "7718": "pressure:inlet_RCA:RCA", + "7719": "pressure:inlet_RCA:RCA", + "7720": "pressure:inlet_RCA:RCA", + "7721": "pressure:inlet_RCA:RCA", + "7722": "pressure:inlet_RCA:RCA", + "7723": "pressure:inlet_RCA:RCA", + "7724": "pressure:inlet_RCA:RCA", + "7725": "pressure:inlet_RCA:RCA", + "7726": "pressure:inlet_RCA:RCA", + "7727": "pressure:inlet_RCA:RCA", + "7728": "pressure:inlet_RCA:RCA", + "7729": "pressure:inlet_RCA:RCA", + "7730": "pressure:inlet_RCA:RCA", + "7731": "pressure:inlet_RCA:RCA", + "7732": "pressure:inlet_RCA:RCA", + "7733": "pressure:inlet_RCA:RCA", + "7734": "pressure:inlet_RCA:RCA", + "7735": "pressure:inlet_RCA:RCA", + "7736": "pressure:inlet_RCA:RCA", + "7737": "pressure:inlet_RCA:RCA", + "7738": "pressure:inlet_RCA:RCA", + "7739": "pressure:inlet_RCA:RCA", + "7740": "pressure:inlet_RCA:RCA", + "7741": "pressure:inlet_RCA:RCA", + "7742": "pressure:inlet_RCA:RCA", + "7743": "pressure:inlet_RCA:RCA", + "7744": "pressure:inlet_RCA:RCA", + "7745": "pressure:inlet_RCA:RCA", + "7746": "pressure:inlet_RCA:RCA", + "7747": "pressure:inlet_RCA:RCA", + "7748": "pressure:inlet_RCA:RCA", + "7749": "pressure:inlet_RCA:RCA", + "7750": "pressure:inlet_RCA:RCA", + "7751": "pressure:inlet_RCA:RCA", + "7752": "pressure:inlet_RCA:RCA", + "7753": "pressure:inlet_RCA:RCA", + "7754": "pressure:inlet_RCA:RCA", + "7755": "pressure:inlet_RCA:RCA", + "7756": "pressure:inlet_RCA:RCA", + "7757": "pressure:inlet_RCA:RCA", + "7758": "pressure:inlet_RCA:RCA", + "7759": "pressure:inlet_RCA:RCA", + "7760": "pressure:inlet_RCA:RCA", + "7761": "pressure:inlet_RCA:RCA", + "7762": "pressure:inlet_RCA:RCA", + "7763": "pressure:inlet_RCA:RCA", + "7764": "pressure:inlet_RCA:RCA", + "7765": "pressure:inlet_RCA:RCA", + "7766": "pressure:inlet_RCA:RCA", + "7767": "pressure:inlet_RCA:RCA", + "7768": "pressure:inlet_RCA:RCA", + "7769": "pressure:inlet_RCA:RCA", + "7770": "pressure:inlet_RCA:RCA", + "7771": "pressure:inlet_RCA:RCA", + "7772": "pressure:inlet_RCA:RCA", + "7773": "pressure:inlet_RCA:RCA", + "7774": "pressure:inlet_RCA:RCA", + "7775": "pressure:inlet_RCA:RCA", + "7776": "pressure:inlet_RCA:RCA", + "7777": "pressure:inlet_RCA:RCA", + "7778": "pressure:inlet_RCA:RCA", + "7779": "pressure:inlet_RCA:RCA", + "7780": "pressure:inlet_RCA:RCA", + "7781": "pressure:inlet_RCA:RCA", + "7782": "pressure:inlet_RCA:RCA", + "7783": "pressure:inlet_RCA:RCA", + "7784": "pressure:inlet_RCA:RCA", + "7785": "pressure:inlet_RCA:RCA", + "7786": "pressure:inlet_RCA:RCA", + "7787": "pressure:inlet_RCA:RCA", + "7788": "pressure:inlet_RCA:RCA", + "7789": "pressure:inlet_RCA:RCA", + "7790": "pressure:inlet_RCA:RCA", + "7791": "pressure:inlet_RCA:RCA", + "7792": "pressure:inlet_RCA:RCA", + "7793": "pressure:inlet_RCA:RCA", + "7794": "pressure:inlet_RCA:RCA", + "7795": "pressure:inlet_RCA:RCA", + "7796": "pressure:inlet_RCA:RCA", + "7797": "pressure:inlet_RCA:RCA", + "7798": "pressure:inlet_RCA:RCA", + "7799": "pressure:inlet_RCA:RCA", + "7800": "pressure:inlet_RCA:RCA", + "7801": "pressure:inlet_RCA:RCA", + "7802": "pressure:inlet_RCA:RCA", + "7803": "pressure:inlet_RCA:RCA", + "7804": "pressure:inlet_RCA:RCA", + "7805": "pressure:inlet_RCA:RCA", + "7806": "pressure:inlet_RCA:RCA", + "7807": "pressure:inlet_RCA:RCA", + "7808": "pressure:inlet_RCA:RCA", + "7809": "pressure:inlet_RCA:RCA", + "7810": "pressure:inlet_RCA:RCA", + "7811": "pressure:inlet_RCA:RCA", + "7812": "pressure:inlet_RCA:RCA", + "7813": "pressure:inlet_RCA:RCA", + "7814": "pressure:inlet_RCA:RCA", + "7815": "pressure:inlet_RCA:RCA", + "7816": "pressure:inlet_RCA:RCA", + "7817": "pressure:inlet_RCA:RCA", + "7818": "pressure:inlet_RCA:RCA", + "7819": "pressure:inlet_RCA:RCA", + "7820": "pressure:inlet_RCA:RCA", + "7821": "pressure:inlet_RCA:RCA", + "7822": "pressure:inlet_RCA:RCA", + "7823": "pressure:inlet_RCA:RCA", + "7824": "pressure:inlet_RCA:RCA", + "7825": "pressure:inlet_RCA:RCA", + "7826": "pressure:inlet_RCA:RCA", + "7827": "pressure:inlet_RCA:RCA", + "7828": "pressure:inlet_RCA:RCA", + "7829": "pressure:inlet_RCA:RCA", + "7830": "pressure:inlet_RCA:RCA", + "7831": "pressure:inlet_RCA:RCA", + "7832": "pressure:inlet_RCA:RCA", + "7833": "pressure:inlet_RCA:RCA", + "7834": "pressure:inlet_RCA:RCA", + "7835": "pressure:inlet_RCA:RCA", + "7836": "pressure:inlet_RCA:RCA", + "7837": "pressure:inlet_RCA:RCA", + "7838": "pressure:inlet_RCA:RCA", + "7839": "pressure:inlet_RCA:RCA", + "7840": "pressure:inlet_RCA:RCA", + "7841": "pressure:inlet_RCA:RCA", + "7842": "pressure:inlet_RCA:RCA", + "7843": "pressure:inlet_RCA:RCA", + "7844": "pressure:inlet_RCA:RCA", + "7845": "pressure:inlet_RCA:RCA", + "7846": "pressure:inlet_RCA:RCA", + "7847": "pressure:inlet_RCA:RCA", + "7848": "pressure:inlet_RCA:RCA", + "7849": "pressure:inlet_RCA:RCA", + "7850": "pressure:inlet_RCA:RCA", + "7851": "pressure:inlet_RCA:RCA", + "7852": "pressure:inlet_RCA:RCA", + "7853": "pressure:inlet_RCA:RCA", + "7854": "pressure:inlet_RCA:RCA", + "7855": "pressure:inlet_RCA:RCA", + "7856": "pressure:inlet_RCA:RCA", + "7857": "pressure:inlet_RCA:RCA", + "7858": "pressure:inlet_RCA:RCA", + "7859": "pressure:inlet_RCA:RCA", + "7860": "pressure:inlet_RCA:RCA", + "7861": "pressure:inlet_RCA:RCA", + "7862": "pressure:inlet_RCA:RCA", + "7863": "pressure:inlet_RCA:RCA", + "7864": "pressure:inlet_RCA:RCA", + "7865": "pressure:inlet_RCA:RCA", + "7866": "pressure:inlet_RCA:RCA", + "7867": "pressure:inlet_RCA:RCA", + "7868": "pressure:inlet_RCA:RCA", + "7869": "pressure:inlet_RCA:RCA", + "7870": "pressure:inlet_RCA:RCA", + "7871": "pressure:inlet_RCA:RCA", + "7872": "pressure:inlet_RCA:RCA", + "7873": "pressure:inlet_RCA:RCA", + "7874": "pressure:inlet_RCA:RCA", + "7875": "pressure:inlet_RCA:RCA", + "7876": "pressure:inlet_RCA:RCA", + "7877": "pressure:inlet_RCA:RCA", + "7878": "pressure:inlet_RCA:RCA", + "7879": "pressure:inlet_RCA:RCA", + "7880": "pressure:inlet_RCA:RCA", + "7881": "pressure:inlet_RCA:RCA", + "7882": "pressure:inlet_RCA:RCA", + "7883": "pressure:inlet_RCA:RCA", + "7884": "pressure:inlet_RCA:RCA", + "7885": "pressure:inlet_RCA:RCA", + "7886": "pressure:inlet_RCA:RCA", + "7887": "pressure:inlet_RCA:RCA", + "7888": "pressure:inlet_RCA:RCA", + "7889": "pressure:inlet_RCA:RCA", + "7890": "pressure:inlet_RCA:RCA", + "7891": "pressure:inlet_RCA:RCA", + "7892": "pressure:inlet_RCA:RCA", + "7893": "pressure:inlet_RCA:RCA", + "7894": "pressure:inlet_RCA:RCA", + "7895": "pressure:inlet_RCA:RCA", + "7896": "pressure:inlet_RCA:RCA", + "7897": "pressure:inlet_RCA:RCA", + "7898": "pressure:inlet_RCA:RCA", + "7899": "pressure:inlet_RCA:RCA", + "7900": "pressure:inlet_RCA:RCA", + "7901": "pressure:inlet_RCA:RCA", + "7902": "pressure:inlet_RCA:RCA", + "7903": "pressure:inlet_RCA:RCA", + "7904": "pressure:inlet_RCA:RCA", + "7905": "pressure:inlet_RCA:RCA", + "7906": "pressure:inlet_RCA:RCA", + "7907": "pressure:inlet_RCA:RCA", + "7908": "pressure:inlet_RCA:RCA", + "7909": "pressure:inlet_RCA:RCA", + "7910": "pressure:inlet_RCA:RCA", + "7911": "pressure:inlet_RCA:RCA", + "7912": "pressure:inlet_RCA:RCA", + "7913": "pressure:inlet_RCA:RCA", + "7914": "pressure:inlet_RCA:RCA", + "7915": "pressure:inlet_RCA:RCA", + "7916": "pressure:inlet_RCA:RCA", + "7917": "pressure:inlet_RCA:RCA", + "7918": "pressure:inlet_RCA:RCA", + "7919": "pressure:inlet_RCA:RCA", + "7920": "pressure:inlet_RCA:RCA", + "7921": "pressure:inlet_RCA:RCA", + "7922": "pressure:inlet_RCA:RCA", + "7923": "pressure:inlet_RCA:RCA", + "7924": "pressure:inlet_RCA:RCA", + "7925": "pressure:inlet_RCA:RCA", + "7926": "pressure:inlet_RCA:RCA", + "7927": "pressure:inlet_RCA:RCA", + "7928": "pressure:inlet_RCA:RCA", + "7929": "pressure:inlet_RCA:RCA", + "7930": "pressure:inlet_RCA:RCA", + "7931": "pressure:inlet_RCA:RCA", + "7932": "pressure:inlet_RCA:RCA", + "7933": "pressure:inlet_RCA:RCA", + "7934": "pressure:inlet_RCA:RCA", + "7935": "pressure:inlet_RCA:RCA", + "7936": "pressure:inlet_RCA:RCA", + "7937": "pressure:inlet_RCA:RCA", + "7938": "pressure:inlet_RCA:RCA", + "7939": "pressure:inlet_RCA:RCA", + "7940": "pressure:inlet_RCA:RCA", + "7941": "pressure:inlet_RCA:RCA", + "7942": "pressure:inlet_RCA:RCA", + "7943": "pressure:inlet_RCA:RCA", + "7944": "pressure:inlet_RCA:RCA", + "7945": "pressure:inlet_RCA:RCA", + "7946": "pressure:inlet_RCA:RCA", + "7947": "pressure:inlet_RCA:RCA", + "7948": "pressure:inlet_RCA:RCA", + "7949": "pressure:inlet_RCA:RCA", + "7950": "pressure:inlet_RCA:RCA", + "7951": "pressure:inlet_RCA:RCA", + "7952": "pressure:inlet_RCA:RCA", + "7953": "pressure:inlet_RCA:RCA", + "7954": "pressure:inlet_RCA:RCA", + "7955": "pressure:inlet_RCA:RCA", + "7956": "pressure:inlet_RCA:RCA", + "7957": "pressure:inlet_RCA:RCA", + "7958": "pressure:inlet_RCA:RCA", + "7959": "pressure:inlet_RCA:RCA", + "7960": "pressure:inlet_RCA:RCA", + "7961": "pressure:inlet_RCA:RCA", + "7962": "pressure:inlet_RCA:RCA", + "7963": "pressure:inlet_RCA:RCA", + "7964": "pressure:inlet_RCA:RCA", + "7965": "pressure:inlet_RCA:RCA", + "7966": "pressure:inlet_RCA:RCA", + "7967": "pressure:inlet_RCA:RCA", + "7968": "pressure:inlet_RCA:RCA", + "7969": "pressure:inlet_RCA:RCA", + "7970": "pressure:inlet_RCA:RCA", + "7971": "pressure:inlet_RCA:RCA", + "7972": "pressure:inlet_RCA:RCA", + "7973": "pressure:inlet_RCA:RCA", + "7974": "pressure:inlet_RCA:RCA", + "7975": "pressure:inlet_RCA:RCA", + "7976": "pressure:inlet_RCA:RCA", + "7977": "pressure:inlet_RCA:RCA", + "7978": "pressure:inlet_RCA:RCA", + "7979": "pressure:inlet_RCA:RCA", + "7980": "pressure:inlet_RCA:RCA", + "7981": "pressure:inlet_RCA:RCA", + "7982": "pressure:inlet_RCA:RCA", + "7983": "pressure:inlet_RCA:RCA", + "7984": "pressure:inlet_RCA:RCA", + "7985": "pressure:inlet_RCA:RCA", + "7986": "pressure:inlet_RCA:RCA", + "7987": "pressure:inlet_RCA:RCA", + "7988": "pressure:inlet_RCA:RCA", + "7989": "pressure:inlet_RCA:RCA", + "7990": "pressure:inlet_RCA:RCA", + "7991": "pressure:inlet_RCA:RCA", + "7992": "pressure:inlet_RCA:RCA", + "7993": "pressure:inlet_RCA:RCA", + "7994": "pressure:inlet_RCA:RCA", + "7995": "pressure:inlet_RCA:RCA", + "7996": "pressure:inlet_RCA:RCA", + "7997": "pressure:inlet_RCA:RCA", + "7998": "pressure:inlet_RCA:RCA", + "7999": "pressure:inlet_RCA:RCA", + "8000": "flow:J_heart_inlet:CLH", + "8001": "flow:J_heart_inlet:CLH", + "8002": "flow:J_heart_inlet:CLH", + "8003": "flow:J_heart_inlet:CLH", + "8004": "flow:J_heart_inlet:CLH", + "8005": "flow:J_heart_inlet:CLH", + "8006": "flow:J_heart_inlet:CLH", + "8007": "flow:J_heart_inlet:CLH", + "8008": "flow:J_heart_inlet:CLH", + "8009": "flow:J_heart_inlet:CLH", + "8010": "flow:J_heart_inlet:CLH", + "8011": "flow:J_heart_inlet:CLH", + "8012": "flow:J_heart_inlet:CLH", + "8013": "flow:J_heart_inlet:CLH", + "8014": "flow:J_heart_inlet:CLH", + "8015": "flow:J_heart_inlet:CLH", + "8016": "flow:J_heart_inlet:CLH", + "8017": "flow:J_heart_inlet:CLH", + "8018": "flow:J_heart_inlet:CLH", + "8019": "flow:J_heart_inlet:CLH", + "8020": "flow:J_heart_inlet:CLH", + "8021": "flow:J_heart_inlet:CLH", + "8022": "flow:J_heart_inlet:CLH", + "8023": "flow:J_heart_inlet:CLH", + "8024": "flow:J_heart_inlet:CLH", + "8025": "flow:J_heart_inlet:CLH", + "8026": "flow:J_heart_inlet:CLH", + "8027": "flow:J_heart_inlet:CLH", + "8028": "flow:J_heart_inlet:CLH", + "8029": "flow:J_heart_inlet:CLH", + "8030": "flow:J_heart_inlet:CLH", + "8031": "flow:J_heart_inlet:CLH", + "8032": "flow:J_heart_inlet:CLH", + "8033": "flow:J_heart_inlet:CLH", + "8034": "flow:J_heart_inlet:CLH", + "8035": "flow:J_heart_inlet:CLH", + "8036": "flow:J_heart_inlet:CLH", + "8037": "flow:J_heart_inlet:CLH", + "8038": "flow:J_heart_inlet:CLH", + "8039": "flow:J_heart_inlet:CLH", + "8040": "flow:J_heart_inlet:CLH", + "8041": "flow:J_heart_inlet:CLH", + "8042": "flow:J_heart_inlet:CLH", + "8043": "flow:J_heart_inlet:CLH", + "8044": "flow:J_heart_inlet:CLH", + "8045": "flow:J_heart_inlet:CLH", + "8046": "flow:J_heart_inlet:CLH", + "8047": "flow:J_heart_inlet:CLH", + "8048": "flow:J_heart_inlet:CLH", + "8049": "flow:J_heart_inlet:CLH", + "8050": "flow:J_heart_inlet:CLH", + "8051": "flow:J_heart_inlet:CLH", + "8052": "flow:J_heart_inlet:CLH", + "8053": "flow:J_heart_inlet:CLH", + "8054": "flow:J_heart_inlet:CLH", + "8055": "flow:J_heart_inlet:CLH", + "8056": "flow:J_heart_inlet:CLH", + "8057": "flow:J_heart_inlet:CLH", + "8058": "flow:J_heart_inlet:CLH", + "8059": "flow:J_heart_inlet:CLH", + "8060": "flow:J_heart_inlet:CLH", + "8061": "flow:J_heart_inlet:CLH", + "8062": "flow:J_heart_inlet:CLH", + "8063": "flow:J_heart_inlet:CLH", + "8064": "flow:J_heart_inlet:CLH", + "8065": "flow:J_heart_inlet:CLH", + "8066": "flow:J_heart_inlet:CLH", + "8067": "flow:J_heart_inlet:CLH", + "8068": "flow:J_heart_inlet:CLH", + "8069": "flow:J_heart_inlet:CLH", + "8070": "flow:J_heart_inlet:CLH", + "8071": "flow:J_heart_inlet:CLH", + "8072": "flow:J_heart_inlet:CLH", + "8073": "flow:J_heart_inlet:CLH", + "8074": "flow:J_heart_inlet:CLH", + "8075": "flow:J_heart_inlet:CLH", + "8076": "flow:J_heart_inlet:CLH", + "8077": "flow:J_heart_inlet:CLH", + "8078": "flow:J_heart_inlet:CLH", + "8079": "flow:J_heart_inlet:CLH", + "8080": "flow:J_heart_inlet:CLH", + "8081": "flow:J_heart_inlet:CLH", + "8082": "flow:J_heart_inlet:CLH", + "8083": "flow:J_heart_inlet:CLH", + "8084": "flow:J_heart_inlet:CLH", + "8085": "flow:J_heart_inlet:CLH", + "8086": "flow:J_heart_inlet:CLH", + "8087": "flow:J_heart_inlet:CLH", + "8088": "flow:J_heart_inlet:CLH", + "8089": "flow:J_heart_inlet:CLH", + "8090": "flow:J_heart_inlet:CLH", + "8091": "flow:J_heart_inlet:CLH", + "8092": "flow:J_heart_inlet:CLH", + "8093": "flow:J_heart_inlet:CLH", + "8094": "flow:J_heart_inlet:CLH", + "8095": "flow:J_heart_inlet:CLH", + "8096": "flow:J_heart_inlet:CLH", + "8097": "flow:J_heart_inlet:CLH", + "8098": "flow:J_heart_inlet:CLH", + "8099": "flow:J_heart_inlet:CLH", + "8100": "flow:J_heart_inlet:CLH", + "8101": "flow:J_heart_inlet:CLH", + "8102": "flow:J_heart_inlet:CLH", + "8103": "flow:J_heart_inlet:CLH", + "8104": "flow:J_heart_inlet:CLH", + "8105": "flow:J_heart_inlet:CLH", + "8106": "flow:J_heart_inlet:CLH", + "8107": "flow:J_heart_inlet:CLH", + "8108": "flow:J_heart_inlet:CLH", + "8109": "flow:J_heart_inlet:CLH", + "8110": "flow:J_heart_inlet:CLH", + "8111": "flow:J_heart_inlet:CLH", + "8112": "flow:J_heart_inlet:CLH", + "8113": "flow:J_heart_inlet:CLH", + "8114": "flow:J_heart_inlet:CLH", + "8115": "flow:J_heart_inlet:CLH", + "8116": "flow:J_heart_inlet:CLH", + "8117": "flow:J_heart_inlet:CLH", + "8118": "flow:J_heart_inlet:CLH", + "8119": "flow:J_heart_inlet:CLH", + "8120": "flow:J_heart_inlet:CLH", + "8121": "flow:J_heart_inlet:CLH", + "8122": "flow:J_heart_inlet:CLH", + "8123": "flow:J_heart_inlet:CLH", + "8124": "flow:J_heart_inlet:CLH", + "8125": "flow:J_heart_inlet:CLH", + "8126": "flow:J_heart_inlet:CLH", + "8127": "flow:J_heart_inlet:CLH", + "8128": "flow:J_heart_inlet:CLH", + "8129": "flow:J_heart_inlet:CLH", + "8130": "flow:J_heart_inlet:CLH", + "8131": "flow:J_heart_inlet:CLH", + "8132": "flow:J_heart_inlet:CLH", + "8133": "flow:J_heart_inlet:CLH", + "8134": "flow:J_heart_inlet:CLH", + "8135": "flow:J_heart_inlet:CLH", + "8136": "flow:J_heart_inlet:CLH", + "8137": "flow:J_heart_inlet:CLH", + "8138": "flow:J_heart_inlet:CLH", + "8139": "flow:J_heart_inlet:CLH", + "8140": "flow:J_heart_inlet:CLH", + "8141": "flow:J_heart_inlet:CLH", + "8142": "flow:J_heart_inlet:CLH", + "8143": "flow:J_heart_inlet:CLH", + "8144": "flow:J_heart_inlet:CLH", + "8145": "flow:J_heart_inlet:CLH", + "8146": "flow:J_heart_inlet:CLH", + "8147": "flow:J_heart_inlet:CLH", + "8148": "flow:J_heart_inlet:CLH", + "8149": "flow:J_heart_inlet:CLH", + "8150": "flow:J_heart_inlet:CLH", + "8151": "flow:J_heart_inlet:CLH", + "8152": "flow:J_heart_inlet:CLH", + "8153": "flow:J_heart_inlet:CLH", + "8154": "flow:J_heart_inlet:CLH", + "8155": "flow:J_heart_inlet:CLH", + "8156": "flow:J_heart_inlet:CLH", + "8157": "flow:J_heart_inlet:CLH", + "8158": "flow:J_heart_inlet:CLH", + "8159": "flow:J_heart_inlet:CLH", + "8160": "flow:J_heart_inlet:CLH", + "8161": "flow:J_heart_inlet:CLH", + "8162": "flow:J_heart_inlet:CLH", + "8163": "flow:J_heart_inlet:CLH", + "8164": "flow:J_heart_inlet:CLH", + "8165": "flow:J_heart_inlet:CLH", + "8166": "flow:J_heart_inlet:CLH", + "8167": "flow:J_heart_inlet:CLH", + "8168": "flow:J_heart_inlet:CLH", + "8169": "flow:J_heart_inlet:CLH", + "8170": "flow:J_heart_inlet:CLH", + "8171": "flow:J_heart_inlet:CLH", + "8172": "flow:J_heart_inlet:CLH", + "8173": "flow:J_heart_inlet:CLH", + "8174": "flow:J_heart_inlet:CLH", + "8175": "flow:J_heart_inlet:CLH", + "8176": "flow:J_heart_inlet:CLH", + "8177": "flow:J_heart_inlet:CLH", + "8178": "flow:J_heart_inlet:CLH", + "8179": "flow:J_heart_inlet:CLH", + "8180": "flow:J_heart_inlet:CLH", + "8181": "flow:J_heart_inlet:CLH", + "8182": "flow:J_heart_inlet:CLH", + "8183": "flow:J_heart_inlet:CLH", + "8184": "flow:J_heart_inlet:CLH", + "8185": "flow:J_heart_inlet:CLH", + "8186": "flow:J_heart_inlet:CLH", + "8187": "flow:J_heart_inlet:CLH", + "8188": "flow:J_heart_inlet:CLH", + "8189": "flow:J_heart_inlet:CLH", + "8190": "flow:J_heart_inlet:CLH", + "8191": "flow:J_heart_inlet:CLH", + "8192": "flow:J_heart_inlet:CLH", + "8193": "flow:J_heart_inlet:CLH", + "8194": "flow:J_heart_inlet:CLH", + "8195": "flow:J_heart_inlet:CLH", + "8196": "flow:J_heart_inlet:CLH", + "8197": "flow:J_heart_inlet:CLH", + "8198": "flow:J_heart_inlet:CLH", + "8199": "flow:J_heart_inlet:CLH", + "8200": "flow:J_heart_inlet:CLH", + "8201": "flow:J_heart_inlet:CLH", + "8202": "flow:J_heart_inlet:CLH", + "8203": "flow:J_heart_inlet:CLH", + "8204": "flow:J_heart_inlet:CLH", + "8205": "flow:J_heart_inlet:CLH", + "8206": "flow:J_heart_inlet:CLH", + "8207": "flow:J_heart_inlet:CLH", + "8208": "flow:J_heart_inlet:CLH", + "8209": "flow:J_heart_inlet:CLH", + "8210": "flow:J_heart_inlet:CLH", + "8211": "flow:J_heart_inlet:CLH", + "8212": "flow:J_heart_inlet:CLH", + "8213": "flow:J_heart_inlet:CLH", + "8214": "flow:J_heart_inlet:CLH", + "8215": "flow:J_heart_inlet:CLH", + "8216": "flow:J_heart_inlet:CLH", + "8217": "flow:J_heart_inlet:CLH", + "8218": "flow:J_heart_inlet:CLH", + "8219": "flow:J_heart_inlet:CLH", + "8220": "flow:J_heart_inlet:CLH", + "8221": "flow:J_heart_inlet:CLH", + "8222": "flow:J_heart_inlet:CLH", + "8223": "flow:J_heart_inlet:CLH", + "8224": "flow:J_heart_inlet:CLH", + "8225": "flow:J_heart_inlet:CLH", + "8226": "flow:J_heart_inlet:CLH", + "8227": "flow:J_heart_inlet:CLH", + "8228": "flow:J_heart_inlet:CLH", + "8229": "flow:J_heart_inlet:CLH", + "8230": "flow:J_heart_inlet:CLH", + "8231": "flow:J_heart_inlet:CLH", + "8232": "flow:J_heart_inlet:CLH", + "8233": "flow:J_heart_inlet:CLH", + "8234": "flow:J_heart_inlet:CLH", + "8235": "flow:J_heart_inlet:CLH", + "8236": "flow:J_heart_inlet:CLH", + "8237": "flow:J_heart_inlet:CLH", + "8238": "flow:J_heart_inlet:CLH", + "8239": "flow:J_heart_inlet:CLH", + "8240": "flow:J_heart_inlet:CLH", + "8241": "flow:J_heart_inlet:CLH", + "8242": "flow:J_heart_inlet:CLH", + "8243": "flow:J_heart_inlet:CLH", + "8244": "flow:J_heart_inlet:CLH", + "8245": "flow:J_heart_inlet:CLH", + "8246": "flow:J_heart_inlet:CLH", + "8247": "flow:J_heart_inlet:CLH", + "8248": "flow:J_heart_inlet:CLH", + "8249": "flow:J_heart_inlet:CLH", + "8250": "flow:J_heart_inlet:CLH", + "8251": "flow:J_heart_inlet:CLH", + "8252": "flow:J_heart_inlet:CLH", + "8253": "flow:J_heart_inlet:CLH", + "8254": "flow:J_heart_inlet:CLH", + "8255": "flow:J_heart_inlet:CLH", + "8256": "flow:J_heart_inlet:CLH", + "8257": "flow:J_heart_inlet:CLH", + "8258": "flow:J_heart_inlet:CLH", + "8259": "flow:J_heart_inlet:CLH", + "8260": "flow:J_heart_inlet:CLH", + "8261": "flow:J_heart_inlet:CLH", + "8262": "flow:J_heart_inlet:CLH", + "8263": "flow:J_heart_inlet:CLH", + "8264": "flow:J_heart_inlet:CLH", + "8265": "flow:J_heart_inlet:CLH", + "8266": "flow:J_heart_inlet:CLH", + "8267": "flow:J_heart_inlet:CLH", + "8268": "flow:J_heart_inlet:CLH", + "8269": "flow:J_heart_inlet:CLH", + "8270": "flow:J_heart_inlet:CLH", + "8271": "flow:J_heart_inlet:CLH", + "8272": "flow:J_heart_inlet:CLH", + "8273": "flow:J_heart_inlet:CLH", + "8274": "flow:J_heart_inlet:CLH", + "8275": "flow:J_heart_inlet:CLH", + "8276": "flow:J_heart_inlet:CLH", + "8277": "flow:J_heart_inlet:CLH", + "8278": "flow:J_heart_inlet:CLH", + "8279": "flow:J_heart_inlet:CLH", + "8280": "flow:J_heart_inlet:CLH", + "8281": "flow:J_heart_inlet:CLH", + "8282": "flow:J_heart_inlet:CLH", + "8283": "flow:J_heart_inlet:CLH", + "8284": "flow:J_heart_inlet:CLH", + "8285": "flow:J_heart_inlet:CLH", + "8286": "flow:J_heart_inlet:CLH", + "8287": "flow:J_heart_inlet:CLH", + "8288": "flow:J_heart_inlet:CLH", + "8289": "flow:J_heart_inlet:CLH", + "8290": "flow:J_heart_inlet:CLH", + "8291": "flow:J_heart_inlet:CLH", + "8292": "flow:J_heart_inlet:CLH", + "8293": "flow:J_heart_inlet:CLH", + "8294": "flow:J_heart_inlet:CLH", + "8295": "flow:J_heart_inlet:CLH", + "8296": "flow:J_heart_inlet:CLH", + "8297": "flow:J_heart_inlet:CLH", + "8298": "flow:J_heart_inlet:CLH", + "8299": "flow:J_heart_inlet:CLH", + "8300": "flow:J_heart_inlet:CLH", + "8301": "flow:J_heart_inlet:CLH", + "8302": "flow:J_heart_inlet:CLH", + "8303": "flow:J_heart_inlet:CLH", + "8304": "flow:J_heart_inlet:CLH", + "8305": "flow:J_heart_inlet:CLH", + "8306": "flow:J_heart_inlet:CLH", + "8307": "flow:J_heart_inlet:CLH", + "8308": "flow:J_heart_inlet:CLH", + "8309": "flow:J_heart_inlet:CLH", + "8310": "flow:J_heart_inlet:CLH", + "8311": "flow:J_heart_inlet:CLH", + "8312": "flow:J_heart_inlet:CLH", + "8313": "flow:J_heart_inlet:CLH", + "8314": "flow:J_heart_inlet:CLH", + "8315": "flow:J_heart_inlet:CLH", + "8316": "flow:J_heart_inlet:CLH", + "8317": "flow:J_heart_inlet:CLH", + "8318": "flow:J_heart_inlet:CLH", + "8319": "flow:J_heart_inlet:CLH", + "8320": "flow:J_heart_inlet:CLH", + "8321": "flow:J_heart_inlet:CLH", + "8322": "flow:J_heart_inlet:CLH", + "8323": "flow:J_heart_inlet:CLH", + "8324": "flow:J_heart_inlet:CLH", + "8325": "flow:J_heart_inlet:CLH", + "8326": "flow:J_heart_inlet:CLH", + "8327": "flow:J_heart_inlet:CLH", + "8328": "flow:J_heart_inlet:CLH", + "8329": "flow:J_heart_inlet:CLH", + "8330": "flow:J_heart_inlet:CLH", + "8331": "flow:J_heart_inlet:CLH", + "8332": "flow:J_heart_inlet:CLH", + "8333": "flow:J_heart_inlet:CLH", + "8334": "flow:J_heart_inlet:CLH", + "8335": "flow:J_heart_inlet:CLH", + "8336": "flow:J_heart_inlet:CLH", + "8337": "flow:J_heart_inlet:CLH", + "8338": "flow:J_heart_inlet:CLH", + "8339": "flow:J_heart_inlet:CLH", + "8340": "flow:J_heart_inlet:CLH", + "8341": "flow:J_heart_inlet:CLH", + "8342": "flow:J_heart_inlet:CLH", + "8343": "flow:J_heart_inlet:CLH", + "8344": "flow:J_heart_inlet:CLH", + "8345": "flow:J_heart_inlet:CLH", + "8346": "flow:J_heart_inlet:CLH", + "8347": "flow:J_heart_inlet:CLH", + "8348": "flow:J_heart_inlet:CLH", + "8349": "flow:J_heart_inlet:CLH", + "8350": "flow:J_heart_inlet:CLH", + "8351": "flow:J_heart_inlet:CLH", + "8352": "flow:J_heart_inlet:CLH", + "8353": "flow:J_heart_inlet:CLH", + "8354": "flow:J_heart_inlet:CLH", + "8355": "flow:J_heart_inlet:CLH", + "8356": "flow:J_heart_inlet:CLH", + "8357": "flow:J_heart_inlet:CLH", + "8358": "flow:J_heart_inlet:CLH", + "8359": "flow:J_heart_inlet:CLH", + "8360": "flow:J_heart_inlet:CLH", + "8361": "flow:J_heart_inlet:CLH", + "8362": "flow:J_heart_inlet:CLH", + "8363": "flow:J_heart_inlet:CLH", + "8364": "flow:J_heart_inlet:CLH", + "8365": "flow:J_heart_inlet:CLH", + "8366": "flow:J_heart_inlet:CLH", + "8367": "flow:J_heart_inlet:CLH", + "8368": "flow:J_heart_inlet:CLH", + "8369": "flow:J_heart_inlet:CLH", + "8370": "flow:J_heart_inlet:CLH", + "8371": "flow:J_heart_inlet:CLH", + "8372": "flow:J_heart_inlet:CLH", + "8373": "flow:J_heart_inlet:CLH", + "8374": "flow:J_heart_inlet:CLH", + "8375": "flow:J_heart_inlet:CLH", + "8376": "flow:J_heart_inlet:CLH", + "8377": "flow:J_heart_inlet:CLH", + "8378": "flow:J_heart_inlet:CLH", + "8379": "flow:J_heart_inlet:CLH", + "8380": "flow:J_heart_inlet:CLH", + "8381": "flow:J_heart_inlet:CLH", + "8382": "flow:J_heart_inlet:CLH", + "8383": "flow:J_heart_inlet:CLH", + "8384": "flow:J_heart_inlet:CLH", + "8385": "flow:J_heart_inlet:CLH", + "8386": "flow:J_heart_inlet:CLH", + "8387": "flow:J_heart_inlet:CLH", + "8388": "flow:J_heart_inlet:CLH", + "8389": "flow:J_heart_inlet:CLH", + "8390": "flow:J_heart_inlet:CLH", + "8391": "flow:J_heart_inlet:CLH", + "8392": "flow:J_heart_inlet:CLH", + "8393": "flow:J_heart_inlet:CLH", + "8394": "flow:J_heart_inlet:CLH", + "8395": "flow:J_heart_inlet:CLH", + "8396": "flow:J_heart_inlet:CLH", + "8397": "flow:J_heart_inlet:CLH", + "8398": "flow:J_heart_inlet:CLH", + "8399": "flow:J_heart_inlet:CLH", + "8400": "flow:J_heart_inlet:CLH", + "8401": "flow:J_heart_inlet:CLH", + "8402": "flow:J_heart_inlet:CLH", + "8403": "flow:J_heart_inlet:CLH", + "8404": "flow:J_heart_inlet:CLH", + "8405": "flow:J_heart_inlet:CLH", + "8406": "flow:J_heart_inlet:CLH", + "8407": "flow:J_heart_inlet:CLH", + "8408": "flow:J_heart_inlet:CLH", + "8409": "flow:J_heart_inlet:CLH", + "8410": "flow:J_heart_inlet:CLH", + "8411": "flow:J_heart_inlet:CLH", + "8412": "flow:J_heart_inlet:CLH", + "8413": "flow:J_heart_inlet:CLH", + "8414": "flow:J_heart_inlet:CLH", + "8415": "flow:J_heart_inlet:CLH", + "8416": "flow:J_heart_inlet:CLH", + "8417": "flow:J_heart_inlet:CLH", + "8418": "flow:J_heart_inlet:CLH", + "8419": "flow:J_heart_inlet:CLH", + "8420": "flow:J_heart_inlet:CLH", + "8421": "flow:J_heart_inlet:CLH", + "8422": "flow:J_heart_inlet:CLH", + "8423": "flow:J_heart_inlet:CLH", + "8424": "flow:J_heart_inlet:CLH", + "8425": "flow:J_heart_inlet:CLH", + "8426": "flow:J_heart_inlet:CLH", + "8427": "flow:J_heart_inlet:CLH", + "8428": "flow:J_heart_inlet:CLH", + "8429": "flow:J_heart_inlet:CLH", + "8430": "flow:J_heart_inlet:CLH", + "8431": "flow:J_heart_inlet:CLH", + "8432": "flow:J_heart_inlet:CLH", + "8433": "flow:J_heart_inlet:CLH", + "8434": "flow:J_heart_inlet:CLH", + "8435": "flow:J_heart_inlet:CLH", + "8436": "flow:J_heart_inlet:CLH", + "8437": "flow:J_heart_inlet:CLH", + "8438": "flow:J_heart_inlet:CLH", + "8439": "flow:J_heart_inlet:CLH", + "8440": "flow:J_heart_inlet:CLH", + "8441": "flow:J_heart_inlet:CLH", + "8442": "flow:J_heart_inlet:CLH", + "8443": "flow:J_heart_inlet:CLH", + "8444": "flow:J_heart_inlet:CLH", + "8445": "flow:J_heart_inlet:CLH", + "8446": "flow:J_heart_inlet:CLH", + "8447": "flow:J_heart_inlet:CLH", + "8448": "flow:J_heart_inlet:CLH", + "8449": "flow:J_heart_inlet:CLH", + "8450": "flow:J_heart_inlet:CLH", + "8451": "flow:J_heart_inlet:CLH", + "8452": "flow:J_heart_inlet:CLH", + "8453": "flow:J_heart_inlet:CLH", + "8454": "flow:J_heart_inlet:CLH", + "8455": "flow:J_heart_inlet:CLH", + "8456": "flow:J_heart_inlet:CLH", + "8457": "flow:J_heart_inlet:CLH", + "8458": "flow:J_heart_inlet:CLH", + "8459": "flow:J_heart_inlet:CLH", + "8460": "flow:J_heart_inlet:CLH", + "8461": "flow:J_heart_inlet:CLH", + "8462": "flow:J_heart_inlet:CLH", + "8463": "flow:J_heart_inlet:CLH", + "8464": "flow:J_heart_inlet:CLH", + "8465": "flow:J_heart_inlet:CLH", + "8466": "flow:J_heart_inlet:CLH", + "8467": "flow:J_heart_inlet:CLH", + "8468": "flow:J_heart_inlet:CLH", + "8469": "flow:J_heart_inlet:CLH", + "8470": "flow:J_heart_inlet:CLH", + "8471": "flow:J_heart_inlet:CLH", + "8472": "flow:J_heart_inlet:CLH", + "8473": "flow:J_heart_inlet:CLH", + "8474": "flow:J_heart_inlet:CLH", + "8475": "flow:J_heart_inlet:CLH", + "8476": "flow:J_heart_inlet:CLH", + "8477": "flow:J_heart_inlet:CLH", + "8478": "flow:J_heart_inlet:CLH", + "8479": "flow:J_heart_inlet:CLH", + "8480": "flow:J_heart_inlet:CLH", + "8481": "flow:J_heart_inlet:CLH", + "8482": "flow:J_heart_inlet:CLH", + "8483": "flow:J_heart_inlet:CLH", + "8484": "flow:J_heart_inlet:CLH", + "8485": "flow:J_heart_inlet:CLH", + "8486": "flow:J_heart_inlet:CLH", + "8487": "flow:J_heart_inlet:CLH", + "8488": "flow:J_heart_inlet:CLH", + "8489": "flow:J_heart_inlet:CLH", + "8490": "flow:J_heart_inlet:CLH", + "8491": "flow:J_heart_inlet:CLH", + "8492": "flow:J_heart_inlet:CLH", + "8493": "flow:J_heart_inlet:CLH", + "8494": "flow:J_heart_inlet:CLH", + "8495": "flow:J_heart_inlet:CLH", + "8496": "flow:J_heart_inlet:CLH", + "8497": "flow:J_heart_inlet:CLH", + "8498": "flow:J_heart_inlet:CLH", + "8499": "flow:J_heart_inlet:CLH", + "8500": "flow:J_heart_inlet:CLH", + "8501": "flow:J_heart_inlet:CLH", + "8502": "flow:J_heart_inlet:CLH", + "8503": "flow:J_heart_inlet:CLH", + "8504": "flow:J_heart_inlet:CLH", + "8505": "flow:J_heart_inlet:CLH", + "8506": "flow:J_heart_inlet:CLH", + "8507": "flow:J_heart_inlet:CLH", + "8508": "flow:J_heart_inlet:CLH", + "8509": "flow:J_heart_inlet:CLH", + "8510": "flow:J_heart_inlet:CLH", + "8511": "flow:J_heart_inlet:CLH", + "8512": "flow:J_heart_inlet:CLH", + "8513": "flow:J_heart_inlet:CLH", + "8514": "flow:J_heart_inlet:CLH", + "8515": "flow:J_heart_inlet:CLH", + "8516": "flow:J_heart_inlet:CLH", + "8517": "flow:J_heart_inlet:CLH", + "8518": "flow:J_heart_inlet:CLH", + "8519": "flow:J_heart_inlet:CLH", + "8520": "flow:J_heart_inlet:CLH", + "8521": "flow:J_heart_inlet:CLH", + "8522": "flow:J_heart_inlet:CLH", + "8523": "flow:J_heart_inlet:CLH", + "8524": "flow:J_heart_inlet:CLH", + "8525": "flow:J_heart_inlet:CLH", + "8526": "flow:J_heart_inlet:CLH", + "8527": "flow:J_heart_inlet:CLH", + "8528": "flow:J_heart_inlet:CLH", + "8529": "flow:J_heart_inlet:CLH", + "8530": "flow:J_heart_inlet:CLH", + "8531": "flow:J_heart_inlet:CLH", + "8532": "flow:J_heart_inlet:CLH", + "8533": "flow:J_heart_inlet:CLH", + "8534": "flow:J_heart_inlet:CLH", + "8535": "flow:J_heart_inlet:CLH", + "8536": "flow:J_heart_inlet:CLH", + "8537": "flow:J_heart_inlet:CLH", + "8538": "flow:J_heart_inlet:CLH", + "8539": "flow:J_heart_inlet:CLH", + "8540": "flow:J_heart_inlet:CLH", + "8541": "flow:J_heart_inlet:CLH", + "8542": "flow:J_heart_inlet:CLH", + "8543": "flow:J_heart_inlet:CLH", + "8544": "flow:J_heart_inlet:CLH", + "8545": "flow:J_heart_inlet:CLH", + "8546": "flow:J_heart_inlet:CLH", + "8547": "flow:J_heart_inlet:CLH", + "8548": "flow:J_heart_inlet:CLH", + "8549": "flow:J_heart_inlet:CLH", + "8550": "flow:J_heart_inlet:CLH", + "8551": "flow:J_heart_inlet:CLH", + "8552": "flow:J_heart_inlet:CLH", + "8553": "flow:J_heart_inlet:CLH", + "8554": "flow:J_heart_inlet:CLH", + "8555": "flow:J_heart_inlet:CLH", + "8556": "flow:J_heart_inlet:CLH", + "8557": "flow:J_heart_inlet:CLH", + "8558": "flow:J_heart_inlet:CLH", + "8559": "flow:J_heart_inlet:CLH", + "8560": "flow:J_heart_inlet:CLH", + "8561": "flow:J_heart_inlet:CLH", + "8562": "flow:J_heart_inlet:CLH", + "8563": "flow:J_heart_inlet:CLH", + "8564": "flow:J_heart_inlet:CLH", + "8565": "flow:J_heart_inlet:CLH", + "8566": "flow:J_heart_inlet:CLH", + "8567": "flow:J_heart_inlet:CLH", + "8568": "flow:J_heart_inlet:CLH", + "8569": "flow:J_heart_inlet:CLH", + "8570": "flow:J_heart_inlet:CLH", + "8571": "flow:J_heart_inlet:CLH", + "8572": "flow:J_heart_inlet:CLH", + "8573": "flow:J_heart_inlet:CLH", + "8574": "flow:J_heart_inlet:CLH", + "8575": "flow:J_heart_inlet:CLH", + "8576": "flow:J_heart_inlet:CLH", + "8577": "flow:J_heart_inlet:CLH", + "8578": "flow:J_heart_inlet:CLH", + "8579": "flow:J_heart_inlet:CLH", + "8580": "flow:J_heart_inlet:CLH", + "8581": "flow:J_heart_inlet:CLH", + "8582": "flow:J_heart_inlet:CLH", + "8583": "flow:J_heart_inlet:CLH", + "8584": "flow:J_heart_inlet:CLH", + "8585": "flow:J_heart_inlet:CLH", + "8586": "flow:J_heart_inlet:CLH", + "8587": "flow:J_heart_inlet:CLH", + "8588": "flow:J_heart_inlet:CLH", + "8589": "flow:J_heart_inlet:CLH", + "8590": "flow:J_heart_inlet:CLH", + "8591": "flow:J_heart_inlet:CLH", + "8592": "flow:J_heart_inlet:CLH", + "8593": "flow:J_heart_inlet:CLH", + "8594": "flow:J_heart_inlet:CLH", + "8595": "flow:J_heart_inlet:CLH", + "8596": "flow:J_heart_inlet:CLH", + "8597": "flow:J_heart_inlet:CLH", + "8598": "flow:J_heart_inlet:CLH", + "8599": "flow:J_heart_inlet:CLH", + "8600": "flow:J_heart_inlet:CLH", + "8601": "flow:J_heart_inlet:CLH", + "8602": "flow:J_heart_inlet:CLH", + "8603": "flow:J_heart_inlet:CLH", + "8604": "flow:J_heart_inlet:CLH", + "8605": "flow:J_heart_inlet:CLH", + "8606": "flow:J_heart_inlet:CLH", + "8607": "flow:J_heart_inlet:CLH", + "8608": "flow:J_heart_inlet:CLH", + "8609": "flow:J_heart_inlet:CLH", + "8610": "flow:J_heart_inlet:CLH", + "8611": "flow:J_heart_inlet:CLH", + "8612": "flow:J_heart_inlet:CLH", + "8613": "flow:J_heart_inlet:CLH", + "8614": "flow:J_heart_inlet:CLH", + "8615": "flow:J_heart_inlet:CLH", + "8616": "flow:J_heart_inlet:CLH", + "8617": "flow:J_heart_inlet:CLH", + "8618": "flow:J_heart_inlet:CLH", + "8619": "flow:J_heart_inlet:CLH", + "8620": "flow:J_heart_inlet:CLH", + "8621": "flow:J_heart_inlet:CLH", + "8622": "flow:J_heart_inlet:CLH", + "8623": "flow:J_heart_inlet:CLH", + "8624": "flow:J_heart_inlet:CLH", + "8625": "flow:J_heart_inlet:CLH", + "8626": "flow:J_heart_inlet:CLH", + "8627": "flow:J_heart_inlet:CLH", + "8628": "flow:J_heart_inlet:CLH", + "8629": "flow:J_heart_inlet:CLH", + "8630": "flow:J_heart_inlet:CLH", + "8631": "flow:J_heart_inlet:CLH", + "8632": "flow:J_heart_inlet:CLH", + "8633": "flow:J_heart_inlet:CLH", + "8634": "flow:J_heart_inlet:CLH", + "8635": "flow:J_heart_inlet:CLH", + "8636": "flow:J_heart_inlet:CLH", + "8637": "flow:J_heart_inlet:CLH", + "8638": "flow:J_heart_inlet:CLH", + "8639": "flow:J_heart_inlet:CLH", + "8640": "flow:J_heart_inlet:CLH", + "8641": "flow:J_heart_inlet:CLH", + "8642": "flow:J_heart_inlet:CLH", + "8643": "flow:J_heart_inlet:CLH", + "8644": "flow:J_heart_inlet:CLH", + "8645": "flow:J_heart_inlet:CLH", + "8646": "flow:J_heart_inlet:CLH", + "8647": "flow:J_heart_inlet:CLH", + "8648": "flow:J_heart_inlet:CLH", + "8649": "flow:J_heart_inlet:CLH", + "8650": "flow:J_heart_inlet:CLH", + "8651": "flow:J_heart_inlet:CLH", + "8652": "flow:J_heart_inlet:CLH", + "8653": "flow:J_heart_inlet:CLH", + "8654": "flow:J_heart_inlet:CLH", + "8655": "flow:J_heart_inlet:CLH", + "8656": "flow:J_heart_inlet:CLH", + "8657": "flow:J_heart_inlet:CLH", + "8658": "flow:J_heart_inlet:CLH", + "8659": "flow:J_heart_inlet:CLH", + "8660": "flow:J_heart_inlet:CLH", + "8661": "flow:J_heart_inlet:CLH", + "8662": "flow:J_heart_inlet:CLH", + "8663": "flow:J_heart_inlet:CLH", + "8664": "flow:J_heart_inlet:CLH", + "8665": "flow:J_heart_inlet:CLH", + "8666": "flow:J_heart_inlet:CLH", + "8667": "flow:J_heart_inlet:CLH", + "8668": "flow:J_heart_inlet:CLH", + "8669": "flow:J_heart_inlet:CLH", + "8670": "flow:J_heart_inlet:CLH", + "8671": "flow:J_heart_inlet:CLH", + "8672": "flow:J_heart_inlet:CLH", + "8673": "flow:J_heart_inlet:CLH", + "8674": "flow:J_heart_inlet:CLH", + "8675": "flow:J_heart_inlet:CLH", + "8676": "flow:J_heart_inlet:CLH", + "8677": "flow:J_heart_inlet:CLH", + "8678": "flow:J_heart_inlet:CLH", + "8679": "flow:J_heart_inlet:CLH", + "8680": "flow:J_heart_inlet:CLH", + "8681": "flow:J_heart_inlet:CLH", + "8682": "flow:J_heart_inlet:CLH", + "8683": "flow:J_heart_inlet:CLH", + "8684": "flow:J_heart_inlet:CLH", + "8685": "flow:J_heart_inlet:CLH", + "8686": "flow:J_heart_inlet:CLH", + "8687": "flow:J_heart_inlet:CLH", + "8688": "flow:J_heart_inlet:CLH", + "8689": "flow:J_heart_inlet:CLH", + "8690": "flow:J_heart_inlet:CLH", + "8691": "flow:J_heart_inlet:CLH", + "8692": "flow:J_heart_inlet:CLH", + "8693": "flow:J_heart_inlet:CLH", + "8694": "flow:J_heart_inlet:CLH", + "8695": "flow:J_heart_inlet:CLH", + "8696": "flow:J_heart_inlet:CLH", + "8697": "flow:J_heart_inlet:CLH", + "8698": "flow:J_heart_inlet:CLH", + "8699": "flow:J_heart_inlet:CLH", + "8700": "flow:J_heart_inlet:CLH", + "8701": "flow:J_heart_inlet:CLH", + "8702": "flow:J_heart_inlet:CLH", + "8703": "flow:J_heart_inlet:CLH", + "8704": "flow:J_heart_inlet:CLH", + "8705": "flow:J_heart_inlet:CLH", + "8706": "flow:J_heart_inlet:CLH", + "8707": "flow:J_heart_inlet:CLH", + "8708": "flow:J_heart_inlet:CLH", + "8709": "flow:J_heart_inlet:CLH", + "8710": "flow:J_heart_inlet:CLH", + "8711": "flow:J_heart_inlet:CLH", + "8712": "flow:J_heart_inlet:CLH", + "8713": "flow:J_heart_inlet:CLH", + "8714": "flow:J_heart_inlet:CLH", + "8715": "flow:J_heart_inlet:CLH", + "8716": "flow:J_heart_inlet:CLH", + "8717": "flow:J_heart_inlet:CLH", + "8718": "flow:J_heart_inlet:CLH", + "8719": "flow:J_heart_inlet:CLH", + "8720": "flow:J_heart_inlet:CLH", + "8721": "flow:J_heart_inlet:CLH", + "8722": "flow:J_heart_inlet:CLH", + "8723": "flow:J_heart_inlet:CLH", + "8724": "flow:J_heart_inlet:CLH", + "8725": "flow:J_heart_inlet:CLH", + "8726": "flow:J_heart_inlet:CLH", + "8727": "flow:J_heart_inlet:CLH", + "8728": "flow:J_heart_inlet:CLH", + "8729": "flow:J_heart_inlet:CLH", + "8730": "flow:J_heart_inlet:CLH", + "8731": "flow:J_heart_inlet:CLH", + "8732": "flow:J_heart_inlet:CLH", + "8733": "flow:J_heart_inlet:CLH", + "8734": "flow:J_heart_inlet:CLH", + "8735": "flow:J_heart_inlet:CLH", + "8736": "flow:J_heart_inlet:CLH", + "8737": "flow:J_heart_inlet:CLH", + "8738": "flow:J_heart_inlet:CLH", + "8739": "flow:J_heart_inlet:CLH", + "8740": "flow:J_heart_inlet:CLH", + "8741": "flow:J_heart_inlet:CLH", + "8742": "flow:J_heart_inlet:CLH", + "8743": "flow:J_heart_inlet:CLH", + "8744": "flow:J_heart_inlet:CLH", + "8745": "flow:J_heart_inlet:CLH", + "8746": "flow:J_heart_inlet:CLH", + "8747": "flow:J_heart_inlet:CLH", + "8748": "flow:J_heart_inlet:CLH", + "8749": "flow:J_heart_inlet:CLH", + "8750": "flow:J_heart_inlet:CLH", + "8751": "flow:J_heart_inlet:CLH", + "8752": "flow:J_heart_inlet:CLH", + "8753": "flow:J_heart_inlet:CLH", + "8754": "flow:J_heart_inlet:CLH", + "8755": "flow:J_heart_inlet:CLH", + "8756": "flow:J_heart_inlet:CLH", + "8757": "flow:J_heart_inlet:CLH", + "8758": "flow:J_heart_inlet:CLH", + "8759": "flow:J_heart_inlet:CLH", + "8760": "flow:J_heart_inlet:CLH", + "8761": "flow:J_heart_inlet:CLH", + "8762": "flow:J_heart_inlet:CLH", + "8763": "flow:J_heart_inlet:CLH", + "8764": "flow:J_heart_inlet:CLH", + "8765": "flow:J_heart_inlet:CLH", + "8766": "flow:J_heart_inlet:CLH", + "8767": "flow:J_heart_inlet:CLH", + "8768": "flow:J_heart_inlet:CLH", + "8769": "flow:J_heart_inlet:CLH", + "8770": "flow:J_heart_inlet:CLH", + "8771": "flow:J_heart_inlet:CLH", + "8772": "flow:J_heart_inlet:CLH", + "8773": "flow:J_heart_inlet:CLH", + "8774": "flow:J_heart_inlet:CLH", + "8775": "flow:J_heart_inlet:CLH", + "8776": "flow:J_heart_inlet:CLH", + "8777": "flow:J_heart_inlet:CLH", + "8778": "flow:J_heart_inlet:CLH", + "8779": "flow:J_heart_inlet:CLH", + "8780": "flow:J_heart_inlet:CLH", + "8781": "flow:J_heart_inlet:CLH", + "8782": "flow:J_heart_inlet:CLH", + "8783": "flow:J_heart_inlet:CLH", + "8784": "flow:J_heart_inlet:CLH", + "8785": "flow:J_heart_inlet:CLH", + "8786": "flow:J_heart_inlet:CLH", + "8787": "flow:J_heart_inlet:CLH", + "8788": "flow:J_heart_inlet:CLH", + "8789": "flow:J_heart_inlet:CLH", + "8790": "flow:J_heart_inlet:CLH", + "8791": "flow:J_heart_inlet:CLH", + "8792": "flow:J_heart_inlet:CLH", + "8793": "flow:J_heart_inlet:CLH", + "8794": "flow:J_heart_inlet:CLH", + "8795": "flow:J_heart_inlet:CLH", + "8796": "flow:J_heart_inlet:CLH", + "8797": "flow:J_heart_inlet:CLH", + "8798": "flow:J_heart_inlet:CLH", + "8799": "flow:J_heart_inlet:CLH", + "8800": "flow:J_heart_inlet:CLH", + "8801": "flow:J_heart_inlet:CLH", + "8802": "flow:J_heart_inlet:CLH", + "8803": "flow:J_heart_inlet:CLH", + "8804": "flow:J_heart_inlet:CLH", + "8805": "flow:J_heart_inlet:CLH", + "8806": "flow:J_heart_inlet:CLH", + "8807": "flow:J_heart_inlet:CLH", + "8808": "flow:J_heart_inlet:CLH", + "8809": "flow:J_heart_inlet:CLH", + "8810": "flow:J_heart_inlet:CLH", + "8811": "flow:J_heart_inlet:CLH", + "8812": "flow:J_heart_inlet:CLH", + "8813": "flow:J_heart_inlet:CLH", + "8814": "flow:J_heart_inlet:CLH", + "8815": "flow:J_heart_inlet:CLH", + "8816": "flow:J_heart_inlet:CLH", + "8817": "flow:J_heart_inlet:CLH", + "8818": "flow:J_heart_inlet:CLH", + "8819": "flow:J_heart_inlet:CLH", + "8820": "flow:J_heart_inlet:CLH", + "8821": "flow:J_heart_inlet:CLH", + "8822": "flow:J_heart_inlet:CLH", + "8823": "flow:J_heart_inlet:CLH", + "8824": "flow:J_heart_inlet:CLH", + "8825": "flow:J_heart_inlet:CLH", + "8826": "flow:J_heart_inlet:CLH", + "8827": "flow:J_heart_inlet:CLH", + "8828": "flow:J_heart_inlet:CLH", + "8829": "flow:J_heart_inlet:CLH", + "8830": "flow:J_heart_inlet:CLH", + "8831": "flow:J_heart_inlet:CLH", + "8832": "flow:J_heart_inlet:CLH", + "8833": "flow:J_heart_inlet:CLH", + "8834": "flow:J_heart_inlet:CLH", + "8835": "flow:J_heart_inlet:CLH", + "8836": "flow:J_heart_inlet:CLH", + "8837": "flow:J_heart_inlet:CLH", + "8838": "flow:J_heart_inlet:CLH", + "8839": "flow:J_heart_inlet:CLH", + "8840": "flow:J_heart_inlet:CLH", + "8841": "flow:J_heart_inlet:CLH", + "8842": "flow:J_heart_inlet:CLH", + "8843": "flow:J_heart_inlet:CLH", + "8844": "flow:J_heart_inlet:CLH", + "8845": "flow:J_heart_inlet:CLH", + "8846": "flow:J_heart_inlet:CLH", + "8847": "flow:J_heart_inlet:CLH", + "8848": "flow:J_heart_inlet:CLH", + "8849": "flow:J_heart_inlet:CLH", + "8850": "flow:J_heart_inlet:CLH", + "8851": "flow:J_heart_inlet:CLH", + "8852": "flow:J_heart_inlet:CLH", + "8853": "flow:J_heart_inlet:CLH", + "8854": "flow:J_heart_inlet:CLH", + "8855": "flow:J_heart_inlet:CLH", + "8856": "flow:J_heart_inlet:CLH", + "8857": "flow:J_heart_inlet:CLH", + "8858": "flow:J_heart_inlet:CLH", + "8859": "flow:J_heart_inlet:CLH", + "8860": "flow:J_heart_inlet:CLH", + "8861": "flow:J_heart_inlet:CLH", + "8862": "flow:J_heart_inlet:CLH", + "8863": "flow:J_heart_inlet:CLH", + "8864": "flow:J_heart_inlet:CLH", + "8865": "flow:J_heart_inlet:CLH", + "8866": "flow:J_heart_inlet:CLH", + "8867": "flow:J_heart_inlet:CLH", + "8868": "flow:J_heart_inlet:CLH", + "8869": "flow:J_heart_inlet:CLH", + "8870": "flow:J_heart_inlet:CLH", + "8871": "flow:J_heart_inlet:CLH", + "8872": "flow:J_heart_inlet:CLH", + "8873": "flow:J_heart_inlet:CLH", + "8874": "flow:J_heart_inlet:CLH", + "8875": "flow:J_heart_inlet:CLH", + "8876": "flow:J_heart_inlet:CLH", + "8877": "flow:J_heart_inlet:CLH", + "8878": "flow:J_heart_inlet:CLH", + "8879": "flow:J_heart_inlet:CLH", + "8880": "flow:J_heart_inlet:CLH", + "8881": "flow:J_heart_inlet:CLH", + "8882": "flow:J_heart_inlet:CLH", + "8883": "flow:J_heart_inlet:CLH", + "8884": "flow:J_heart_inlet:CLH", + "8885": "flow:J_heart_inlet:CLH", + "8886": "flow:J_heart_inlet:CLH", + "8887": "flow:J_heart_inlet:CLH", + "8888": "flow:J_heart_inlet:CLH", + "8889": "flow:J_heart_inlet:CLH", + "8890": "flow:J_heart_inlet:CLH", + "8891": "flow:J_heart_inlet:CLH", + "8892": "flow:J_heart_inlet:CLH", + "8893": "flow:J_heart_inlet:CLH", + "8894": "flow:J_heart_inlet:CLH", + "8895": "flow:J_heart_inlet:CLH", + "8896": "flow:J_heart_inlet:CLH", + "8897": "flow:J_heart_inlet:CLH", + "8898": "flow:J_heart_inlet:CLH", + "8899": "flow:J_heart_inlet:CLH", + "8900": "flow:J_heart_inlet:CLH", + "8901": "flow:J_heart_inlet:CLH", + "8902": "flow:J_heart_inlet:CLH", + "8903": "flow:J_heart_inlet:CLH", + "8904": "flow:J_heart_inlet:CLH", + "8905": "flow:J_heart_inlet:CLH", + "8906": "flow:J_heart_inlet:CLH", + "8907": "flow:J_heart_inlet:CLH", + "8908": "flow:J_heart_inlet:CLH", + "8909": "flow:J_heart_inlet:CLH", + "8910": "flow:J_heart_inlet:CLH", + "8911": "flow:J_heart_inlet:CLH", + "8912": "flow:J_heart_inlet:CLH", + "8913": "flow:J_heart_inlet:CLH", + "8914": "flow:J_heart_inlet:CLH", + "8915": "flow:J_heart_inlet:CLH", + "8916": "flow:J_heart_inlet:CLH", + "8917": "flow:J_heart_inlet:CLH", + "8918": "flow:J_heart_inlet:CLH", + "8919": "flow:J_heart_inlet:CLH", + "8920": "flow:J_heart_inlet:CLH", + "8921": "flow:J_heart_inlet:CLH", + "8922": "flow:J_heart_inlet:CLH", + "8923": "flow:J_heart_inlet:CLH", + "8924": "flow:J_heart_inlet:CLH", + "8925": "flow:J_heart_inlet:CLH", + "8926": "flow:J_heart_inlet:CLH", + "8927": "flow:J_heart_inlet:CLH", + "8928": "flow:J_heart_inlet:CLH", + "8929": "flow:J_heart_inlet:CLH", + "8930": "flow:J_heart_inlet:CLH", + "8931": "flow:J_heart_inlet:CLH", + "8932": "flow:J_heart_inlet:CLH", + "8933": "flow:J_heart_inlet:CLH", + "8934": "flow:J_heart_inlet:CLH", + "8935": "flow:J_heart_inlet:CLH", + "8936": "flow:J_heart_inlet:CLH", + "8937": "flow:J_heart_inlet:CLH", + "8938": "flow:J_heart_inlet:CLH", + "8939": "flow:J_heart_inlet:CLH", + "8940": "flow:J_heart_inlet:CLH", + "8941": "flow:J_heart_inlet:CLH", + "8942": "flow:J_heart_inlet:CLH", + "8943": "flow:J_heart_inlet:CLH", + "8944": "flow:J_heart_inlet:CLH", + "8945": "flow:J_heart_inlet:CLH", + "8946": "flow:J_heart_inlet:CLH", + "8947": "flow:J_heart_inlet:CLH", + "8948": "flow:J_heart_inlet:CLH", + "8949": "flow:J_heart_inlet:CLH", + "8950": "flow:J_heart_inlet:CLH", + "8951": "flow:J_heart_inlet:CLH", + "8952": "flow:J_heart_inlet:CLH", + "8953": "flow:J_heart_inlet:CLH", + "8954": "flow:J_heart_inlet:CLH", + "8955": "flow:J_heart_inlet:CLH", + "8956": "flow:J_heart_inlet:CLH", + "8957": "flow:J_heart_inlet:CLH", + "8958": "flow:J_heart_inlet:CLH", + "8959": "flow:J_heart_inlet:CLH", + "8960": "flow:J_heart_inlet:CLH", + "8961": "flow:J_heart_inlet:CLH", + "8962": "flow:J_heart_inlet:CLH", + "8963": "flow:J_heart_inlet:CLH", + "8964": "flow:J_heart_inlet:CLH", + "8965": "flow:J_heart_inlet:CLH", + "8966": "flow:J_heart_inlet:CLH", + "8967": "flow:J_heart_inlet:CLH", + "8968": "flow:J_heart_inlet:CLH", + "8969": "flow:J_heart_inlet:CLH", + "8970": "flow:J_heart_inlet:CLH", + "8971": "flow:J_heart_inlet:CLH", + "8972": "flow:J_heart_inlet:CLH", + "8973": "flow:J_heart_inlet:CLH", + "8974": "flow:J_heart_inlet:CLH", + "8975": "flow:J_heart_inlet:CLH", + "8976": "flow:J_heart_inlet:CLH", + "8977": "flow:J_heart_inlet:CLH", + "8978": "flow:J_heart_inlet:CLH", + "8979": "flow:J_heart_inlet:CLH", + "8980": "flow:J_heart_inlet:CLH", + "8981": "flow:J_heart_inlet:CLH", + "8982": "flow:J_heart_inlet:CLH", + "8983": "flow:J_heart_inlet:CLH", + "8984": "flow:J_heart_inlet:CLH", + "8985": "flow:J_heart_inlet:CLH", + "8986": "flow:J_heart_inlet:CLH", + "8987": "flow:J_heart_inlet:CLH", + "8988": "flow:J_heart_inlet:CLH", + "8989": "flow:J_heart_inlet:CLH", + "8990": "flow:J_heart_inlet:CLH", + "8991": "flow:J_heart_inlet:CLH", + "8992": "flow:J_heart_inlet:CLH", + "8993": "flow:J_heart_inlet:CLH", + "8994": "flow:J_heart_inlet:CLH", + "8995": "flow:J_heart_inlet:CLH", + "8996": "flow:J_heart_inlet:CLH", + "8997": "flow:J_heart_inlet:CLH", + "8998": "flow:J_heart_inlet:CLH", + "8999": "flow:J_heart_inlet:CLH", + "9000": "pressure:J_heart_inlet:CLH", + "9001": "pressure:J_heart_inlet:CLH", + "9002": "pressure:J_heart_inlet:CLH", + "9003": "pressure:J_heart_inlet:CLH", + "9004": "pressure:J_heart_inlet:CLH", + "9005": "pressure:J_heart_inlet:CLH", + "9006": "pressure:J_heart_inlet:CLH", + "9007": "pressure:J_heart_inlet:CLH", + "9008": "pressure:J_heart_inlet:CLH", + "9009": "pressure:J_heart_inlet:CLH", + "9010": "pressure:J_heart_inlet:CLH", + "9011": "pressure:J_heart_inlet:CLH", + "9012": "pressure:J_heart_inlet:CLH", + "9013": "pressure:J_heart_inlet:CLH", + "9014": "pressure:J_heart_inlet:CLH", + "9015": "pressure:J_heart_inlet:CLH", + "9016": "pressure:J_heart_inlet:CLH", + "9017": "pressure:J_heart_inlet:CLH", + "9018": "pressure:J_heart_inlet:CLH", + "9019": "pressure:J_heart_inlet:CLH", + "9020": "pressure:J_heart_inlet:CLH", + "9021": "pressure:J_heart_inlet:CLH", + "9022": "pressure:J_heart_inlet:CLH", + "9023": "pressure:J_heart_inlet:CLH", + "9024": "pressure:J_heart_inlet:CLH", + "9025": "pressure:J_heart_inlet:CLH", + "9026": "pressure:J_heart_inlet:CLH", + "9027": "pressure:J_heart_inlet:CLH", + "9028": "pressure:J_heart_inlet:CLH", + "9029": "pressure:J_heart_inlet:CLH", + "9030": "pressure:J_heart_inlet:CLH", + "9031": "pressure:J_heart_inlet:CLH", + "9032": "pressure:J_heart_inlet:CLH", + "9033": "pressure:J_heart_inlet:CLH", + "9034": "pressure:J_heart_inlet:CLH", + "9035": "pressure:J_heart_inlet:CLH", + "9036": "pressure:J_heart_inlet:CLH", + "9037": "pressure:J_heart_inlet:CLH", + "9038": "pressure:J_heart_inlet:CLH", + "9039": "pressure:J_heart_inlet:CLH", + "9040": "pressure:J_heart_inlet:CLH", + "9041": "pressure:J_heart_inlet:CLH", + "9042": "pressure:J_heart_inlet:CLH", + "9043": "pressure:J_heart_inlet:CLH", + "9044": "pressure:J_heart_inlet:CLH", + "9045": "pressure:J_heart_inlet:CLH", + "9046": "pressure:J_heart_inlet:CLH", + "9047": "pressure:J_heart_inlet:CLH", + "9048": "pressure:J_heart_inlet:CLH", + "9049": "pressure:J_heart_inlet:CLH", + "9050": "pressure:J_heart_inlet:CLH", + "9051": "pressure:J_heart_inlet:CLH", + "9052": "pressure:J_heart_inlet:CLH", + "9053": "pressure:J_heart_inlet:CLH", + "9054": "pressure:J_heart_inlet:CLH", + "9055": "pressure:J_heart_inlet:CLH", + "9056": "pressure:J_heart_inlet:CLH", + "9057": "pressure:J_heart_inlet:CLH", + "9058": "pressure:J_heart_inlet:CLH", + "9059": "pressure:J_heart_inlet:CLH", + "9060": "pressure:J_heart_inlet:CLH", + "9061": "pressure:J_heart_inlet:CLH", + "9062": "pressure:J_heart_inlet:CLH", + "9063": "pressure:J_heart_inlet:CLH", + "9064": "pressure:J_heart_inlet:CLH", + "9065": "pressure:J_heart_inlet:CLH", + "9066": "pressure:J_heart_inlet:CLH", + "9067": "pressure:J_heart_inlet:CLH", + "9068": "pressure:J_heart_inlet:CLH", + "9069": "pressure:J_heart_inlet:CLH", + "9070": "pressure:J_heart_inlet:CLH", + "9071": "pressure:J_heart_inlet:CLH", + "9072": "pressure:J_heart_inlet:CLH", + "9073": "pressure:J_heart_inlet:CLH", + "9074": "pressure:J_heart_inlet:CLH", + "9075": "pressure:J_heart_inlet:CLH", + "9076": "pressure:J_heart_inlet:CLH", + "9077": "pressure:J_heart_inlet:CLH", + "9078": "pressure:J_heart_inlet:CLH", + "9079": "pressure:J_heart_inlet:CLH", + "9080": "pressure:J_heart_inlet:CLH", + "9081": "pressure:J_heart_inlet:CLH", + "9082": "pressure:J_heart_inlet:CLH", + "9083": "pressure:J_heart_inlet:CLH", + "9084": "pressure:J_heart_inlet:CLH", + "9085": "pressure:J_heart_inlet:CLH", + "9086": "pressure:J_heart_inlet:CLH", + "9087": "pressure:J_heart_inlet:CLH", + "9088": "pressure:J_heart_inlet:CLH", + "9089": "pressure:J_heart_inlet:CLH", + "9090": "pressure:J_heart_inlet:CLH", + "9091": "pressure:J_heart_inlet:CLH", + "9092": "pressure:J_heart_inlet:CLH", + "9093": "pressure:J_heart_inlet:CLH", + "9094": "pressure:J_heart_inlet:CLH", + "9095": "pressure:J_heart_inlet:CLH", + "9096": "pressure:J_heart_inlet:CLH", + "9097": "pressure:J_heart_inlet:CLH", + "9098": "pressure:J_heart_inlet:CLH", + "9099": "pressure:J_heart_inlet:CLH", + "9100": "pressure:J_heart_inlet:CLH", + "9101": "pressure:J_heart_inlet:CLH", + "9102": "pressure:J_heart_inlet:CLH", + "9103": "pressure:J_heart_inlet:CLH", + "9104": "pressure:J_heart_inlet:CLH", + "9105": "pressure:J_heart_inlet:CLH", + "9106": "pressure:J_heart_inlet:CLH", + "9107": "pressure:J_heart_inlet:CLH", + "9108": "pressure:J_heart_inlet:CLH", + "9109": "pressure:J_heart_inlet:CLH", + "9110": "pressure:J_heart_inlet:CLH", + "9111": "pressure:J_heart_inlet:CLH", + "9112": "pressure:J_heart_inlet:CLH", + "9113": "pressure:J_heart_inlet:CLH", + "9114": "pressure:J_heart_inlet:CLH", + "9115": "pressure:J_heart_inlet:CLH", + "9116": "pressure:J_heart_inlet:CLH", + "9117": "pressure:J_heart_inlet:CLH", + "9118": "pressure:J_heart_inlet:CLH", + "9119": "pressure:J_heart_inlet:CLH", + "9120": "pressure:J_heart_inlet:CLH", + "9121": "pressure:J_heart_inlet:CLH", + "9122": "pressure:J_heart_inlet:CLH", + "9123": "pressure:J_heart_inlet:CLH", + "9124": "pressure:J_heart_inlet:CLH", + "9125": "pressure:J_heart_inlet:CLH", + "9126": "pressure:J_heart_inlet:CLH", + "9127": "pressure:J_heart_inlet:CLH", + "9128": "pressure:J_heart_inlet:CLH", + "9129": "pressure:J_heart_inlet:CLH", + "9130": "pressure:J_heart_inlet:CLH", + "9131": "pressure:J_heart_inlet:CLH", + "9132": "pressure:J_heart_inlet:CLH", + "9133": "pressure:J_heart_inlet:CLH", + "9134": "pressure:J_heart_inlet:CLH", + "9135": "pressure:J_heart_inlet:CLH", + "9136": "pressure:J_heart_inlet:CLH", + "9137": "pressure:J_heart_inlet:CLH", + "9138": "pressure:J_heart_inlet:CLH", + "9139": "pressure:J_heart_inlet:CLH", + "9140": "pressure:J_heart_inlet:CLH", + "9141": "pressure:J_heart_inlet:CLH", + "9142": "pressure:J_heart_inlet:CLH", + "9143": "pressure:J_heart_inlet:CLH", + "9144": "pressure:J_heart_inlet:CLH", + "9145": "pressure:J_heart_inlet:CLH", + "9146": "pressure:J_heart_inlet:CLH", + "9147": "pressure:J_heart_inlet:CLH", + "9148": "pressure:J_heart_inlet:CLH", + "9149": "pressure:J_heart_inlet:CLH", + "9150": "pressure:J_heart_inlet:CLH", + "9151": "pressure:J_heart_inlet:CLH", + "9152": "pressure:J_heart_inlet:CLH", + "9153": "pressure:J_heart_inlet:CLH", + "9154": "pressure:J_heart_inlet:CLH", + "9155": "pressure:J_heart_inlet:CLH", + "9156": "pressure:J_heart_inlet:CLH", + "9157": "pressure:J_heart_inlet:CLH", + "9158": "pressure:J_heart_inlet:CLH", + "9159": "pressure:J_heart_inlet:CLH", + "9160": "pressure:J_heart_inlet:CLH", + "9161": "pressure:J_heart_inlet:CLH", + "9162": "pressure:J_heart_inlet:CLH", + "9163": "pressure:J_heart_inlet:CLH", + "9164": "pressure:J_heart_inlet:CLH", + "9165": "pressure:J_heart_inlet:CLH", + "9166": "pressure:J_heart_inlet:CLH", + "9167": "pressure:J_heart_inlet:CLH", + "9168": "pressure:J_heart_inlet:CLH", + "9169": "pressure:J_heart_inlet:CLH", + "9170": "pressure:J_heart_inlet:CLH", + "9171": "pressure:J_heart_inlet:CLH", + "9172": "pressure:J_heart_inlet:CLH", + "9173": "pressure:J_heart_inlet:CLH", + "9174": "pressure:J_heart_inlet:CLH", + "9175": "pressure:J_heart_inlet:CLH", + "9176": "pressure:J_heart_inlet:CLH", + "9177": "pressure:J_heart_inlet:CLH", + "9178": "pressure:J_heart_inlet:CLH", + "9179": "pressure:J_heart_inlet:CLH", + "9180": "pressure:J_heart_inlet:CLH", + "9181": "pressure:J_heart_inlet:CLH", + "9182": "pressure:J_heart_inlet:CLH", + "9183": "pressure:J_heart_inlet:CLH", + "9184": "pressure:J_heart_inlet:CLH", + "9185": "pressure:J_heart_inlet:CLH", + "9186": "pressure:J_heart_inlet:CLH", + "9187": "pressure:J_heart_inlet:CLH", + "9188": "pressure:J_heart_inlet:CLH", + "9189": "pressure:J_heart_inlet:CLH", + "9190": "pressure:J_heart_inlet:CLH", + "9191": "pressure:J_heart_inlet:CLH", + "9192": "pressure:J_heart_inlet:CLH", + "9193": "pressure:J_heart_inlet:CLH", + "9194": "pressure:J_heart_inlet:CLH", + "9195": "pressure:J_heart_inlet:CLH", + "9196": "pressure:J_heart_inlet:CLH", + "9197": "pressure:J_heart_inlet:CLH", + "9198": "pressure:J_heart_inlet:CLH", + "9199": "pressure:J_heart_inlet:CLH", + "9200": "pressure:J_heart_inlet:CLH", + "9201": "pressure:J_heart_inlet:CLH", + "9202": "pressure:J_heart_inlet:CLH", + "9203": "pressure:J_heart_inlet:CLH", + "9204": "pressure:J_heart_inlet:CLH", + "9205": "pressure:J_heart_inlet:CLH", + "9206": "pressure:J_heart_inlet:CLH", + "9207": "pressure:J_heart_inlet:CLH", + "9208": "pressure:J_heart_inlet:CLH", + "9209": "pressure:J_heart_inlet:CLH", + "9210": "pressure:J_heart_inlet:CLH", + "9211": "pressure:J_heart_inlet:CLH", + "9212": "pressure:J_heart_inlet:CLH", + "9213": "pressure:J_heart_inlet:CLH", + "9214": "pressure:J_heart_inlet:CLH", + "9215": "pressure:J_heart_inlet:CLH", + "9216": "pressure:J_heart_inlet:CLH", + "9217": "pressure:J_heart_inlet:CLH", + "9218": "pressure:J_heart_inlet:CLH", + "9219": "pressure:J_heart_inlet:CLH", + "9220": "pressure:J_heart_inlet:CLH", + "9221": "pressure:J_heart_inlet:CLH", + "9222": "pressure:J_heart_inlet:CLH", + "9223": "pressure:J_heart_inlet:CLH", + "9224": "pressure:J_heart_inlet:CLH", + "9225": "pressure:J_heart_inlet:CLH", + "9226": "pressure:J_heart_inlet:CLH", + "9227": "pressure:J_heart_inlet:CLH", + "9228": "pressure:J_heart_inlet:CLH", + "9229": "pressure:J_heart_inlet:CLH", + "9230": "pressure:J_heart_inlet:CLH", + "9231": "pressure:J_heart_inlet:CLH", + "9232": "pressure:J_heart_inlet:CLH", + "9233": "pressure:J_heart_inlet:CLH", + "9234": "pressure:J_heart_inlet:CLH", + "9235": "pressure:J_heart_inlet:CLH", + "9236": "pressure:J_heart_inlet:CLH", + "9237": "pressure:J_heart_inlet:CLH", + "9238": "pressure:J_heart_inlet:CLH", + "9239": "pressure:J_heart_inlet:CLH", + "9240": "pressure:J_heart_inlet:CLH", + "9241": "pressure:J_heart_inlet:CLH", + "9242": "pressure:J_heart_inlet:CLH", + "9243": "pressure:J_heart_inlet:CLH", + "9244": "pressure:J_heart_inlet:CLH", + "9245": "pressure:J_heart_inlet:CLH", + "9246": "pressure:J_heart_inlet:CLH", + "9247": "pressure:J_heart_inlet:CLH", + "9248": "pressure:J_heart_inlet:CLH", + "9249": "pressure:J_heart_inlet:CLH", + "9250": "pressure:J_heart_inlet:CLH", + "9251": "pressure:J_heart_inlet:CLH", + "9252": "pressure:J_heart_inlet:CLH", + "9253": "pressure:J_heart_inlet:CLH", + "9254": "pressure:J_heart_inlet:CLH", + "9255": "pressure:J_heart_inlet:CLH", + "9256": "pressure:J_heart_inlet:CLH", + "9257": "pressure:J_heart_inlet:CLH", + "9258": "pressure:J_heart_inlet:CLH", + "9259": "pressure:J_heart_inlet:CLH", + "9260": "pressure:J_heart_inlet:CLH", + "9261": "pressure:J_heart_inlet:CLH", + "9262": "pressure:J_heart_inlet:CLH", + "9263": "pressure:J_heart_inlet:CLH", + "9264": "pressure:J_heart_inlet:CLH", + "9265": "pressure:J_heart_inlet:CLH", + "9266": "pressure:J_heart_inlet:CLH", + "9267": "pressure:J_heart_inlet:CLH", + "9268": "pressure:J_heart_inlet:CLH", + "9269": "pressure:J_heart_inlet:CLH", + "9270": "pressure:J_heart_inlet:CLH", + "9271": "pressure:J_heart_inlet:CLH", + "9272": "pressure:J_heart_inlet:CLH", + "9273": "pressure:J_heart_inlet:CLH", + "9274": "pressure:J_heart_inlet:CLH", + "9275": "pressure:J_heart_inlet:CLH", + "9276": "pressure:J_heart_inlet:CLH", + "9277": "pressure:J_heart_inlet:CLH", + "9278": "pressure:J_heart_inlet:CLH", + "9279": "pressure:J_heart_inlet:CLH", + "9280": "pressure:J_heart_inlet:CLH", + "9281": "pressure:J_heart_inlet:CLH", + "9282": "pressure:J_heart_inlet:CLH", + "9283": "pressure:J_heart_inlet:CLH", + "9284": "pressure:J_heart_inlet:CLH", + "9285": "pressure:J_heart_inlet:CLH", + "9286": "pressure:J_heart_inlet:CLH", + "9287": "pressure:J_heart_inlet:CLH", + "9288": "pressure:J_heart_inlet:CLH", + "9289": "pressure:J_heart_inlet:CLH", + "9290": "pressure:J_heart_inlet:CLH", + "9291": "pressure:J_heart_inlet:CLH", + "9292": "pressure:J_heart_inlet:CLH", + "9293": "pressure:J_heart_inlet:CLH", + "9294": "pressure:J_heart_inlet:CLH", + "9295": "pressure:J_heart_inlet:CLH", + "9296": "pressure:J_heart_inlet:CLH", + "9297": "pressure:J_heart_inlet:CLH", + "9298": "pressure:J_heart_inlet:CLH", + "9299": "pressure:J_heart_inlet:CLH", + "9300": "pressure:J_heart_inlet:CLH", + "9301": "pressure:J_heart_inlet:CLH", + "9302": "pressure:J_heart_inlet:CLH", + "9303": "pressure:J_heart_inlet:CLH", + "9304": "pressure:J_heart_inlet:CLH", + "9305": "pressure:J_heart_inlet:CLH", + "9306": "pressure:J_heart_inlet:CLH", + "9307": "pressure:J_heart_inlet:CLH", + "9308": "pressure:J_heart_inlet:CLH", + "9309": "pressure:J_heart_inlet:CLH", + "9310": "pressure:J_heart_inlet:CLH", + "9311": "pressure:J_heart_inlet:CLH", + "9312": "pressure:J_heart_inlet:CLH", + "9313": "pressure:J_heart_inlet:CLH", + "9314": "pressure:J_heart_inlet:CLH", + "9315": "pressure:J_heart_inlet:CLH", + "9316": "pressure:J_heart_inlet:CLH", + "9317": "pressure:J_heart_inlet:CLH", + "9318": "pressure:J_heart_inlet:CLH", + "9319": "pressure:J_heart_inlet:CLH", + "9320": "pressure:J_heart_inlet:CLH", + "9321": "pressure:J_heart_inlet:CLH", + "9322": "pressure:J_heart_inlet:CLH", + "9323": "pressure:J_heart_inlet:CLH", + "9324": "pressure:J_heart_inlet:CLH", + "9325": "pressure:J_heart_inlet:CLH", + "9326": "pressure:J_heart_inlet:CLH", + "9327": "pressure:J_heart_inlet:CLH", + "9328": "pressure:J_heart_inlet:CLH", + "9329": "pressure:J_heart_inlet:CLH", + "9330": "pressure:J_heart_inlet:CLH", + "9331": "pressure:J_heart_inlet:CLH", + "9332": "pressure:J_heart_inlet:CLH", + "9333": "pressure:J_heart_inlet:CLH", + "9334": "pressure:J_heart_inlet:CLH", + "9335": "pressure:J_heart_inlet:CLH", + "9336": "pressure:J_heart_inlet:CLH", + "9337": "pressure:J_heart_inlet:CLH", + "9338": "pressure:J_heart_inlet:CLH", + "9339": "pressure:J_heart_inlet:CLH", + "9340": "pressure:J_heart_inlet:CLH", + "9341": "pressure:J_heart_inlet:CLH", + "9342": "pressure:J_heart_inlet:CLH", + "9343": "pressure:J_heart_inlet:CLH", + "9344": "pressure:J_heart_inlet:CLH", + "9345": "pressure:J_heart_inlet:CLH", + "9346": "pressure:J_heart_inlet:CLH", + "9347": "pressure:J_heart_inlet:CLH", + "9348": "pressure:J_heart_inlet:CLH", + "9349": "pressure:J_heart_inlet:CLH", + "9350": "pressure:J_heart_inlet:CLH", + "9351": "pressure:J_heart_inlet:CLH", + "9352": "pressure:J_heart_inlet:CLH", + "9353": "pressure:J_heart_inlet:CLH", + "9354": "pressure:J_heart_inlet:CLH", + "9355": "pressure:J_heart_inlet:CLH", + "9356": "pressure:J_heart_inlet:CLH", + "9357": "pressure:J_heart_inlet:CLH", + "9358": "pressure:J_heart_inlet:CLH", + "9359": "pressure:J_heart_inlet:CLH", + "9360": "pressure:J_heart_inlet:CLH", + "9361": "pressure:J_heart_inlet:CLH", + "9362": "pressure:J_heart_inlet:CLH", + "9363": "pressure:J_heart_inlet:CLH", + "9364": "pressure:J_heart_inlet:CLH", + "9365": "pressure:J_heart_inlet:CLH", + "9366": "pressure:J_heart_inlet:CLH", + "9367": "pressure:J_heart_inlet:CLH", + "9368": "pressure:J_heart_inlet:CLH", + "9369": "pressure:J_heart_inlet:CLH", + "9370": "pressure:J_heart_inlet:CLH", + "9371": "pressure:J_heart_inlet:CLH", + "9372": "pressure:J_heart_inlet:CLH", + "9373": "pressure:J_heart_inlet:CLH", + "9374": "pressure:J_heart_inlet:CLH", + "9375": "pressure:J_heart_inlet:CLH", + "9376": "pressure:J_heart_inlet:CLH", + "9377": "pressure:J_heart_inlet:CLH", + "9378": "pressure:J_heart_inlet:CLH", + "9379": "pressure:J_heart_inlet:CLH", + "9380": "pressure:J_heart_inlet:CLH", + "9381": "pressure:J_heart_inlet:CLH", + "9382": "pressure:J_heart_inlet:CLH", + "9383": "pressure:J_heart_inlet:CLH", + "9384": "pressure:J_heart_inlet:CLH", + "9385": "pressure:J_heart_inlet:CLH", + "9386": "pressure:J_heart_inlet:CLH", + "9387": "pressure:J_heart_inlet:CLH", + "9388": "pressure:J_heart_inlet:CLH", + "9389": "pressure:J_heart_inlet:CLH", + "9390": "pressure:J_heart_inlet:CLH", + "9391": "pressure:J_heart_inlet:CLH", + "9392": "pressure:J_heart_inlet:CLH", + "9393": "pressure:J_heart_inlet:CLH", + "9394": "pressure:J_heart_inlet:CLH", + "9395": "pressure:J_heart_inlet:CLH", + "9396": "pressure:J_heart_inlet:CLH", + "9397": "pressure:J_heart_inlet:CLH", + "9398": "pressure:J_heart_inlet:CLH", + "9399": "pressure:J_heart_inlet:CLH", + "9400": "pressure:J_heart_inlet:CLH", + "9401": "pressure:J_heart_inlet:CLH", + "9402": "pressure:J_heart_inlet:CLH", + "9403": "pressure:J_heart_inlet:CLH", + "9404": "pressure:J_heart_inlet:CLH", + "9405": "pressure:J_heart_inlet:CLH", + "9406": "pressure:J_heart_inlet:CLH", + "9407": "pressure:J_heart_inlet:CLH", + "9408": "pressure:J_heart_inlet:CLH", + "9409": "pressure:J_heart_inlet:CLH", + "9410": "pressure:J_heart_inlet:CLH", + "9411": "pressure:J_heart_inlet:CLH", + "9412": "pressure:J_heart_inlet:CLH", + "9413": "pressure:J_heart_inlet:CLH", + "9414": "pressure:J_heart_inlet:CLH", + "9415": "pressure:J_heart_inlet:CLH", + "9416": "pressure:J_heart_inlet:CLH", + "9417": "pressure:J_heart_inlet:CLH", + "9418": "pressure:J_heart_inlet:CLH", + "9419": "pressure:J_heart_inlet:CLH", + "9420": "pressure:J_heart_inlet:CLH", + "9421": "pressure:J_heart_inlet:CLH", + "9422": "pressure:J_heart_inlet:CLH", + "9423": "pressure:J_heart_inlet:CLH", + "9424": "pressure:J_heart_inlet:CLH", + "9425": "pressure:J_heart_inlet:CLH", + "9426": "pressure:J_heart_inlet:CLH", + "9427": "pressure:J_heart_inlet:CLH", + "9428": "pressure:J_heart_inlet:CLH", + "9429": "pressure:J_heart_inlet:CLH", + "9430": "pressure:J_heart_inlet:CLH", + "9431": "pressure:J_heart_inlet:CLH", + "9432": "pressure:J_heart_inlet:CLH", + "9433": "pressure:J_heart_inlet:CLH", + "9434": "pressure:J_heart_inlet:CLH", + "9435": "pressure:J_heart_inlet:CLH", + "9436": "pressure:J_heart_inlet:CLH", + "9437": "pressure:J_heart_inlet:CLH", + "9438": "pressure:J_heart_inlet:CLH", + "9439": "pressure:J_heart_inlet:CLH", + "9440": "pressure:J_heart_inlet:CLH", + "9441": "pressure:J_heart_inlet:CLH", + "9442": "pressure:J_heart_inlet:CLH", + "9443": "pressure:J_heart_inlet:CLH", + "9444": "pressure:J_heart_inlet:CLH", + "9445": "pressure:J_heart_inlet:CLH", + "9446": "pressure:J_heart_inlet:CLH", + "9447": "pressure:J_heart_inlet:CLH", + "9448": "pressure:J_heart_inlet:CLH", + "9449": "pressure:J_heart_inlet:CLH", + "9450": "pressure:J_heart_inlet:CLH", + "9451": "pressure:J_heart_inlet:CLH", + "9452": "pressure:J_heart_inlet:CLH", + "9453": "pressure:J_heart_inlet:CLH", + "9454": "pressure:J_heart_inlet:CLH", + "9455": "pressure:J_heart_inlet:CLH", + "9456": "pressure:J_heart_inlet:CLH", + "9457": "pressure:J_heart_inlet:CLH", + "9458": "pressure:J_heart_inlet:CLH", + "9459": "pressure:J_heart_inlet:CLH", + "9460": "pressure:J_heart_inlet:CLH", + "9461": "pressure:J_heart_inlet:CLH", + "9462": "pressure:J_heart_inlet:CLH", + "9463": "pressure:J_heart_inlet:CLH", + "9464": "pressure:J_heart_inlet:CLH", + "9465": "pressure:J_heart_inlet:CLH", + "9466": "pressure:J_heart_inlet:CLH", + "9467": "pressure:J_heart_inlet:CLH", + "9468": "pressure:J_heart_inlet:CLH", + "9469": "pressure:J_heart_inlet:CLH", + "9470": "pressure:J_heart_inlet:CLH", + "9471": "pressure:J_heart_inlet:CLH", + "9472": "pressure:J_heart_inlet:CLH", + "9473": "pressure:J_heart_inlet:CLH", + "9474": "pressure:J_heart_inlet:CLH", + "9475": "pressure:J_heart_inlet:CLH", + "9476": "pressure:J_heart_inlet:CLH", + "9477": "pressure:J_heart_inlet:CLH", + "9478": "pressure:J_heart_inlet:CLH", + "9479": "pressure:J_heart_inlet:CLH", + "9480": "pressure:J_heart_inlet:CLH", + "9481": "pressure:J_heart_inlet:CLH", + "9482": "pressure:J_heart_inlet:CLH", + "9483": "pressure:J_heart_inlet:CLH", + "9484": "pressure:J_heart_inlet:CLH", + "9485": "pressure:J_heart_inlet:CLH", + "9486": "pressure:J_heart_inlet:CLH", + "9487": "pressure:J_heart_inlet:CLH", + "9488": "pressure:J_heart_inlet:CLH", + "9489": "pressure:J_heart_inlet:CLH", + "9490": "pressure:J_heart_inlet:CLH", + "9491": "pressure:J_heart_inlet:CLH", + "9492": "pressure:J_heart_inlet:CLH", + "9493": "pressure:J_heart_inlet:CLH", + "9494": "pressure:J_heart_inlet:CLH", + "9495": "pressure:J_heart_inlet:CLH", + "9496": "pressure:J_heart_inlet:CLH", + "9497": "pressure:J_heart_inlet:CLH", + "9498": "pressure:J_heart_inlet:CLH", + "9499": "pressure:J_heart_inlet:CLH", + "9500": "pressure:J_heart_inlet:CLH", + "9501": "pressure:J_heart_inlet:CLH", + "9502": "pressure:J_heart_inlet:CLH", + "9503": "pressure:J_heart_inlet:CLH", + "9504": "pressure:J_heart_inlet:CLH", + "9505": "pressure:J_heart_inlet:CLH", + "9506": "pressure:J_heart_inlet:CLH", + "9507": "pressure:J_heart_inlet:CLH", + "9508": "pressure:J_heart_inlet:CLH", + "9509": "pressure:J_heart_inlet:CLH", + "9510": "pressure:J_heart_inlet:CLH", + "9511": "pressure:J_heart_inlet:CLH", + "9512": "pressure:J_heart_inlet:CLH", + "9513": "pressure:J_heart_inlet:CLH", + "9514": "pressure:J_heart_inlet:CLH", + "9515": "pressure:J_heart_inlet:CLH", + "9516": "pressure:J_heart_inlet:CLH", + "9517": "pressure:J_heart_inlet:CLH", + "9518": "pressure:J_heart_inlet:CLH", + "9519": "pressure:J_heart_inlet:CLH", + "9520": "pressure:J_heart_inlet:CLH", + "9521": "pressure:J_heart_inlet:CLH", + "9522": "pressure:J_heart_inlet:CLH", + "9523": "pressure:J_heart_inlet:CLH", + "9524": "pressure:J_heart_inlet:CLH", + "9525": "pressure:J_heart_inlet:CLH", + "9526": "pressure:J_heart_inlet:CLH", + "9527": "pressure:J_heart_inlet:CLH", + "9528": "pressure:J_heart_inlet:CLH", + "9529": "pressure:J_heart_inlet:CLH", + "9530": "pressure:J_heart_inlet:CLH", + "9531": "pressure:J_heart_inlet:CLH", + "9532": "pressure:J_heart_inlet:CLH", + "9533": "pressure:J_heart_inlet:CLH", + "9534": "pressure:J_heart_inlet:CLH", + "9535": "pressure:J_heart_inlet:CLH", + "9536": "pressure:J_heart_inlet:CLH", + "9537": "pressure:J_heart_inlet:CLH", + "9538": "pressure:J_heart_inlet:CLH", + "9539": "pressure:J_heart_inlet:CLH", + "9540": "pressure:J_heart_inlet:CLH", + "9541": "pressure:J_heart_inlet:CLH", + "9542": "pressure:J_heart_inlet:CLH", + "9543": "pressure:J_heart_inlet:CLH", + "9544": "pressure:J_heart_inlet:CLH", + "9545": "pressure:J_heart_inlet:CLH", + "9546": "pressure:J_heart_inlet:CLH", + "9547": "pressure:J_heart_inlet:CLH", + "9548": "pressure:J_heart_inlet:CLH", + "9549": "pressure:J_heart_inlet:CLH", + "9550": "pressure:J_heart_inlet:CLH", + "9551": "pressure:J_heart_inlet:CLH", + "9552": "pressure:J_heart_inlet:CLH", + "9553": "pressure:J_heart_inlet:CLH", + "9554": "pressure:J_heart_inlet:CLH", + "9555": "pressure:J_heart_inlet:CLH", + "9556": "pressure:J_heart_inlet:CLH", + "9557": "pressure:J_heart_inlet:CLH", + "9558": "pressure:J_heart_inlet:CLH", + "9559": "pressure:J_heart_inlet:CLH", + "9560": "pressure:J_heart_inlet:CLH", + "9561": "pressure:J_heart_inlet:CLH", + "9562": "pressure:J_heart_inlet:CLH", + "9563": "pressure:J_heart_inlet:CLH", + "9564": "pressure:J_heart_inlet:CLH", + "9565": "pressure:J_heart_inlet:CLH", + "9566": "pressure:J_heart_inlet:CLH", + "9567": "pressure:J_heart_inlet:CLH", + "9568": "pressure:J_heart_inlet:CLH", + "9569": "pressure:J_heart_inlet:CLH", + "9570": "pressure:J_heart_inlet:CLH", + "9571": "pressure:J_heart_inlet:CLH", + "9572": "pressure:J_heart_inlet:CLH", + "9573": "pressure:J_heart_inlet:CLH", + "9574": "pressure:J_heart_inlet:CLH", + "9575": "pressure:J_heart_inlet:CLH", + "9576": "pressure:J_heart_inlet:CLH", + "9577": "pressure:J_heart_inlet:CLH", + "9578": "pressure:J_heart_inlet:CLH", + "9579": "pressure:J_heart_inlet:CLH", + "9580": "pressure:J_heart_inlet:CLH", + "9581": "pressure:J_heart_inlet:CLH", + "9582": "pressure:J_heart_inlet:CLH", + "9583": "pressure:J_heart_inlet:CLH", + "9584": "pressure:J_heart_inlet:CLH", + "9585": "pressure:J_heart_inlet:CLH", + "9586": "pressure:J_heart_inlet:CLH", + "9587": "pressure:J_heart_inlet:CLH", + "9588": "pressure:J_heart_inlet:CLH", + "9589": "pressure:J_heart_inlet:CLH", + "9590": "pressure:J_heart_inlet:CLH", + "9591": "pressure:J_heart_inlet:CLH", + "9592": "pressure:J_heart_inlet:CLH", + "9593": "pressure:J_heart_inlet:CLH", + "9594": "pressure:J_heart_inlet:CLH", + "9595": "pressure:J_heart_inlet:CLH", + "9596": "pressure:J_heart_inlet:CLH", + "9597": "pressure:J_heart_inlet:CLH", + "9598": "pressure:J_heart_inlet:CLH", + "9599": "pressure:J_heart_inlet:CLH", + "9600": "pressure:J_heart_inlet:CLH", + "9601": "pressure:J_heart_inlet:CLH", + "9602": "pressure:J_heart_inlet:CLH", + "9603": "pressure:J_heart_inlet:CLH", + "9604": "pressure:J_heart_inlet:CLH", + "9605": "pressure:J_heart_inlet:CLH", + "9606": "pressure:J_heart_inlet:CLH", + "9607": "pressure:J_heart_inlet:CLH", + "9608": "pressure:J_heart_inlet:CLH", + "9609": "pressure:J_heart_inlet:CLH", + "9610": "pressure:J_heart_inlet:CLH", + "9611": "pressure:J_heart_inlet:CLH", + "9612": "pressure:J_heart_inlet:CLH", + "9613": "pressure:J_heart_inlet:CLH", + "9614": "pressure:J_heart_inlet:CLH", + "9615": "pressure:J_heart_inlet:CLH", + "9616": "pressure:J_heart_inlet:CLH", + "9617": "pressure:J_heart_inlet:CLH", + "9618": "pressure:J_heart_inlet:CLH", + "9619": "pressure:J_heart_inlet:CLH", + "9620": "pressure:J_heart_inlet:CLH", + "9621": "pressure:J_heart_inlet:CLH", + "9622": "pressure:J_heart_inlet:CLH", + "9623": "pressure:J_heart_inlet:CLH", + "9624": "pressure:J_heart_inlet:CLH", + "9625": "pressure:J_heart_inlet:CLH", + "9626": "pressure:J_heart_inlet:CLH", + "9627": "pressure:J_heart_inlet:CLH", + "9628": "pressure:J_heart_inlet:CLH", + "9629": "pressure:J_heart_inlet:CLH", + "9630": "pressure:J_heart_inlet:CLH", + "9631": "pressure:J_heart_inlet:CLH", + "9632": "pressure:J_heart_inlet:CLH", + "9633": "pressure:J_heart_inlet:CLH", + "9634": "pressure:J_heart_inlet:CLH", + "9635": "pressure:J_heart_inlet:CLH", + "9636": "pressure:J_heart_inlet:CLH", + "9637": "pressure:J_heart_inlet:CLH", + "9638": "pressure:J_heart_inlet:CLH", + "9639": "pressure:J_heart_inlet:CLH", + "9640": "pressure:J_heart_inlet:CLH", + "9641": "pressure:J_heart_inlet:CLH", + "9642": "pressure:J_heart_inlet:CLH", + "9643": "pressure:J_heart_inlet:CLH", + "9644": "pressure:J_heart_inlet:CLH", + "9645": "pressure:J_heart_inlet:CLH", + "9646": "pressure:J_heart_inlet:CLH", + "9647": "pressure:J_heart_inlet:CLH", + "9648": "pressure:J_heart_inlet:CLH", + "9649": "pressure:J_heart_inlet:CLH", + "9650": "pressure:J_heart_inlet:CLH", + "9651": "pressure:J_heart_inlet:CLH", + "9652": "pressure:J_heart_inlet:CLH", + "9653": "pressure:J_heart_inlet:CLH", + "9654": "pressure:J_heart_inlet:CLH", + "9655": "pressure:J_heart_inlet:CLH", + "9656": "pressure:J_heart_inlet:CLH", + "9657": "pressure:J_heart_inlet:CLH", + "9658": "pressure:J_heart_inlet:CLH", + "9659": "pressure:J_heart_inlet:CLH", + "9660": "pressure:J_heart_inlet:CLH", + "9661": "pressure:J_heart_inlet:CLH", + "9662": "pressure:J_heart_inlet:CLH", + "9663": "pressure:J_heart_inlet:CLH", + "9664": "pressure:J_heart_inlet:CLH", + "9665": "pressure:J_heart_inlet:CLH", + "9666": "pressure:J_heart_inlet:CLH", + "9667": "pressure:J_heart_inlet:CLH", + "9668": "pressure:J_heart_inlet:CLH", + "9669": "pressure:J_heart_inlet:CLH", + "9670": "pressure:J_heart_inlet:CLH", + "9671": "pressure:J_heart_inlet:CLH", + "9672": "pressure:J_heart_inlet:CLH", + "9673": "pressure:J_heart_inlet:CLH", + "9674": "pressure:J_heart_inlet:CLH", + "9675": "pressure:J_heart_inlet:CLH", + "9676": "pressure:J_heart_inlet:CLH", + "9677": "pressure:J_heart_inlet:CLH", + "9678": "pressure:J_heart_inlet:CLH", + "9679": "pressure:J_heart_inlet:CLH", + "9680": "pressure:J_heart_inlet:CLH", + "9681": "pressure:J_heart_inlet:CLH", + "9682": "pressure:J_heart_inlet:CLH", + "9683": "pressure:J_heart_inlet:CLH", + "9684": "pressure:J_heart_inlet:CLH", + "9685": "pressure:J_heart_inlet:CLH", + "9686": "pressure:J_heart_inlet:CLH", + "9687": "pressure:J_heart_inlet:CLH", + "9688": "pressure:J_heart_inlet:CLH", + "9689": "pressure:J_heart_inlet:CLH", + "9690": "pressure:J_heart_inlet:CLH", + "9691": "pressure:J_heart_inlet:CLH", + "9692": "pressure:J_heart_inlet:CLH", + "9693": "pressure:J_heart_inlet:CLH", + "9694": "pressure:J_heart_inlet:CLH", + "9695": "pressure:J_heart_inlet:CLH", + "9696": "pressure:J_heart_inlet:CLH", + "9697": "pressure:J_heart_inlet:CLH", + "9698": "pressure:J_heart_inlet:CLH", + "9699": "pressure:J_heart_inlet:CLH", + "9700": "pressure:J_heart_inlet:CLH", + "9701": "pressure:J_heart_inlet:CLH", + "9702": "pressure:J_heart_inlet:CLH", + "9703": "pressure:J_heart_inlet:CLH", + "9704": "pressure:J_heart_inlet:CLH", + "9705": "pressure:J_heart_inlet:CLH", + "9706": "pressure:J_heart_inlet:CLH", + "9707": "pressure:J_heart_inlet:CLH", + "9708": "pressure:J_heart_inlet:CLH", + "9709": "pressure:J_heart_inlet:CLH", + "9710": "pressure:J_heart_inlet:CLH", + "9711": "pressure:J_heart_inlet:CLH", + "9712": "pressure:J_heart_inlet:CLH", + "9713": "pressure:J_heart_inlet:CLH", + "9714": "pressure:J_heart_inlet:CLH", + "9715": "pressure:J_heart_inlet:CLH", + "9716": "pressure:J_heart_inlet:CLH", + "9717": "pressure:J_heart_inlet:CLH", + "9718": "pressure:J_heart_inlet:CLH", + "9719": "pressure:J_heart_inlet:CLH", + "9720": "pressure:J_heart_inlet:CLH", + "9721": "pressure:J_heart_inlet:CLH", + "9722": "pressure:J_heart_inlet:CLH", + "9723": "pressure:J_heart_inlet:CLH", + "9724": "pressure:J_heart_inlet:CLH", + "9725": "pressure:J_heart_inlet:CLH", + "9726": "pressure:J_heart_inlet:CLH", + "9727": "pressure:J_heart_inlet:CLH", + "9728": "pressure:J_heart_inlet:CLH", + "9729": "pressure:J_heart_inlet:CLH", + "9730": "pressure:J_heart_inlet:CLH", + "9731": "pressure:J_heart_inlet:CLH", + "9732": "pressure:J_heart_inlet:CLH", + "9733": "pressure:J_heart_inlet:CLH", + "9734": "pressure:J_heart_inlet:CLH", + "9735": "pressure:J_heart_inlet:CLH", + "9736": "pressure:J_heart_inlet:CLH", + "9737": "pressure:J_heart_inlet:CLH", + "9738": "pressure:J_heart_inlet:CLH", + "9739": "pressure:J_heart_inlet:CLH", + "9740": "pressure:J_heart_inlet:CLH", + "9741": "pressure:J_heart_inlet:CLH", + "9742": "pressure:J_heart_inlet:CLH", + "9743": "pressure:J_heart_inlet:CLH", + "9744": "pressure:J_heart_inlet:CLH", + "9745": "pressure:J_heart_inlet:CLH", + "9746": "pressure:J_heart_inlet:CLH", + "9747": "pressure:J_heart_inlet:CLH", + "9748": "pressure:J_heart_inlet:CLH", + "9749": "pressure:J_heart_inlet:CLH", + "9750": "pressure:J_heart_inlet:CLH", + "9751": "pressure:J_heart_inlet:CLH", + "9752": "pressure:J_heart_inlet:CLH", + "9753": "pressure:J_heart_inlet:CLH", + "9754": "pressure:J_heart_inlet:CLH", + "9755": "pressure:J_heart_inlet:CLH", + "9756": "pressure:J_heart_inlet:CLH", + "9757": "pressure:J_heart_inlet:CLH", + "9758": "pressure:J_heart_inlet:CLH", + "9759": "pressure:J_heart_inlet:CLH", + "9760": "pressure:J_heart_inlet:CLH", + "9761": "pressure:J_heart_inlet:CLH", + "9762": "pressure:J_heart_inlet:CLH", + "9763": "pressure:J_heart_inlet:CLH", + "9764": "pressure:J_heart_inlet:CLH", + "9765": "pressure:J_heart_inlet:CLH", + "9766": "pressure:J_heart_inlet:CLH", + "9767": "pressure:J_heart_inlet:CLH", + "9768": "pressure:J_heart_inlet:CLH", + "9769": "pressure:J_heart_inlet:CLH", + "9770": "pressure:J_heart_inlet:CLH", + "9771": "pressure:J_heart_inlet:CLH", + "9772": "pressure:J_heart_inlet:CLH", + "9773": "pressure:J_heart_inlet:CLH", + "9774": "pressure:J_heart_inlet:CLH", + "9775": "pressure:J_heart_inlet:CLH", + "9776": "pressure:J_heart_inlet:CLH", + "9777": "pressure:J_heart_inlet:CLH", + "9778": "pressure:J_heart_inlet:CLH", + "9779": "pressure:J_heart_inlet:CLH", + "9780": "pressure:J_heart_inlet:CLH", + "9781": "pressure:J_heart_inlet:CLH", + "9782": "pressure:J_heart_inlet:CLH", + "9783": "pressure:J_heart_inlet:CLH", + "9784": "pressure:J_heart_inlet:CLH", + "9785": "pressure:J_heart_inlet:CLH", + "9786": "pressure:J_heart_inlet:CLH", + "9787": "pressure:J_heart_inlet:CLH", + "9788": "pressure:J_heart_inlet:CLH", + "9789": "pressure:J_heart_inlet:CLH", + "9790": "pressure:J_heart_inlet:CLH", + "9791": "pressure:J_heart_inlet:CLH", + "9792": "pressure:J_heart_inlet:CLH", + "9793": "pressure:J_heart_inlet:CLH", + "9794": "pressure:J_heart_inlet:CLH", + "9795": "pressure:J_heart_inlet:CLH", + "9796": "pressure:J_heart_inlet:CLH", + "9797": "pressure:J_heart_inlet:CLH", + "9798": "pressure:J_heart_inlet:CLH", + "9799": "pressure:J_heart_inlet:CLH", + "9800": "pressure:J_heart_inlet:CLH", + "9801": "pressure:J_heart_inlet:CLH", + "9802": "pressure:J_heart_inlet:CLH", + "9803": "pressure:J_heart_inlet:CLH", + "9804": "pressure:J_heart_inlet:CLH", + "9805": "pressure:J_heart_inlet:CLH", + "9806": "pressure:J_heart_inlet:CLH", + "9807": "pressure:J_heart_inlet:CLH", + "9808": "pressure:J_heart_inlet:CLH", + "9809": "pressure:J_heart_inlet:CLH", + "9810": "pressure:J_heart_inlet:CLH", + "9811": "pressure:J_heart_inlet:CLH", + "9812": "pressure:J_heart_inlet:CLH", + "9813": "pressure:J_heart_inlet:CLH", + "9814": "pressure:J_heart_inlet:CLH", + "9815": "pressure:J_heart_inlet:CLH", + "9816": "pressure:J_heart_inlet:CLH", + "9817": "pressure:J_heart_inlet:CLH", + "9818": "pressure:J_heart_inlet:CLH", + "9819": "pressure:J_heart_inlet:CLH", + "9820": "pressure:J_heart_inlet:CLH", + "9821": "pressure:J_heart_inlet:CLH", + "9822": "pressure:J_heart_inlet:CLH", + "9823": "pressure:J_heart_inlet:CLH", + "9824": "pressure:J_heart_inlet:CLH", + "9825": "pressure:J_heart_inlet:CLH", + "9826": "pressure:J_heart_inlet:CLH", + "9827": "pressure:J_heart_inlet:CLH", + "9828": "pressure:J_heart_inlet:CLH", + "9829": "pressure:J_heart_inlet:CLH", + "9830": "pressure:J_heart_inlet:CLH", + "9831": "pressure:J_heart_inlet:CLH", + "9832": "pressure:J_heart_inlet:CLH", + "9833": "pressure:J_heart_inlet:CLH", + "9834": "pressure:J_heart_inlet:CLH", + "9835": "pressure:J_heart_inlet:CLH", + "9836": "pressure:J_heart_inlet:CLH", + "9837": "pressure:J_heart_inlet:CLH", + "9838": "pressure:J_heart_inlet:CLH", + "9839": "pressure:J_heart_inlet:CLH", + "9840": "pressure:J_heart_inlet:CLH", + "9841": "pressure:J_heart_inlet:CLH", + "9842": "pressure:J_heart_inlet:CLH", + "9843": "pressure:J_heart_inlet:CLH", + "9844": "pressure:J_heart_inlet:CLH", + "9845": "pressure:J_heart_inlet:CLH", + "9846": "pressure:J_heart_inlet:CLH", + "9847": "pressure:J_heart_inlet:CLH", + "9848": "pressure:J_heart_inlet:CLH", + "9849": "pressure:J_heart_inlet:CLH", + "9850": "pressure:J_heart_inlet:CLH", + "9851": "pressure:J_heart_inlet:CLH", + "9852": "pressure:J_heart_inlet:CLH", + "9853": "pressure:J_heart_inlet:CLH", + "9854": "pressure:J_heart_inlet:CLH", + "9855": "pressure:J_heart_inlet:CLH", + "9856": "pressure:J_heart_inlet:CLH", + "9857": "pressure:J_heart_inlet:CLH", + "9858": "pressure:J_heart_inlet:CLH", + "9859": "pressure:J_heart_inlet:CLH", + "9860": "pressure:J_heart_inlet:CLH", + "9861": "pressure:J_heart_inlet:CLH", + "9862": "pressure:J_heart_inlet:CLH", + "9863": "pressure:J_heart_inlet:CLH", + "9864": "pressure:J_heart_inlet:CLH", + "9865": "pressure:J_heart_inlet:CLH", + "9866": "pressure:J_heart_inlet:CLH", + "9867": "pressure:J_heart_inlet:CLH", + "9868": "pressure:J_heart_inlet:CLH", + "9869": "pressure:J_heart_inlet:CLH", + "9870": "pressure:J_heart_inlet:CLH", + "9871": "pressure:J_heart_inlet:CLH", + "9872": "pressure:J_heart_inlet:CLH", + "9873": "pressure:J_heart_inlet:CLH", + "9874": "pressure:J_heart_inlet:CLH", + "9875": "pressure:J_heart_inlet:CLH", + "9876": "pressure:J_heart_inlet:CLH", + "9877": "pressure:J_heart_inlet:CLH", + "9878": "pressure:J_heart_inlet:CLH", + "9879": "pressure:J_heart_inlet:CLH", + "9880": "pressure:J_heart_inlet:CLH", + "9881": "pressure:J_heart_inlet:CLH", + "9882": "pressure:J_heart_inlet:CLH", + "9883": "pressure:J_heart_inlet:CLH", + "9884": "pressure:J_heart_inlet:CLH", + "9885": "pressure:J_heart_inlet:CLH", + "9886": "pressure:J_heart_inlet:CLH", + "9887": "pressure:J_heart_inlet:CLH", + "9888": "pressure:J_heart_inlet:CLH", + "9889": "pressure:J_heart_inlet:CLH", + "9890": "pressure:J_heart_inlet:CLH", + "9891": "pressure:J_heart_inlet:CLH", + "9892": "pressure:J_heart_inlet:CLH", + "9893": "pressure:J_heart_inlet:CLH", + "9894": "pressure:J_heart_inlet:CLH", + "9895": "pressure:J_heart_inlet:CLH", + "9896": "pressure:J_heart_inlet:CLH", + "9897": "pressure:J_heart_inlet:CLH", + "9898": "pressure:J_heart_inlet:CLH", + "9899": "pressure:J_heart_inlet:CLH", + "9900": "pressure:J_heart_inlet:CLH", + "9901": "pressure:J_heart_inlet:CLH", + "9902": "pressure:J_heart_inlet:CLH", + "9903": "pressure:J_heart_inlet:CLH", + "9904": "pressure:J_heart_inlet:CLH", + "9905": "pressure:J_heart_inlet:CLH", + "9906": "pressure:J_heart_inlet:CLH", + "9907": "pressure:J_heart_inlet:CLH", + "9908": "pressure:J_heart_inlet:CLH", + "9909": "pressure:J_heart_inlet:CLH", + "9910": "pressure:J_heart_inlet:CLH", + "9911": "pressure:J_heart_inlet:CLH", + "9912": "pressure:J_heart_inlet:CLH", + "9913": "pressure:J_heart_inlet:CLH", + "9914": "pressure:J_heart_inlet:CLH", + "9915": "pressure:J_heart_inlet:CLH", + "9916": "pressure:J_heart_inlet:CLH", + "9917": "pressure:J_heart_inlet:CLH", + "9918": "pressure:J_heart_inlet:CLH", + "9919": "pressure:J_heart_inlet:CLH", + "9920": "pressure:J_heart_inlet:CLH", + "9921": "pressure:J_heart_inlet:CLH", + "9922": "pressure:J_heart_inlet:CLH", + "9923": "pressure:J_heart_inlet:CLH", + "9924": "pressure:J_heart_inlet:CLH", + "9925": "pressure:J_heart_inlet:CLH", + "9926": "pressure:J_heart_inlet:CLH", + "9927": "pressure:J_heart_inlet:CLH", + "9928": "pressure:J_heart_inlet:CLH", + "9929": "pressure:J_heart_inlet:CLH", + "9930": "pressure:J_heart_inlet:CLH", + "9931": "pressure:J_heart_inlet:CLH", + "9932": "pressure:J_heart_inlet:CLH", + "9933": "pressure:J_heart_inlet:CLH", + "9934": "pressure:J_heart_inlet:CLH", + "9935": "pressure:J_heart_inlet:CLH", + "9936": "pressure:J_heart_inlet:CLH", + "9937": "pressure:J_heart_inlet:CLH", + "9938": "pressure:J_heart_inlet:CLH", + "9939": "pressure:J_heart_inlet:CLH", + "9940": "pressure:J_heart_inlet:CLH", + "9941": "pressure:J_heart_inlet:CLH", + "9942": "pressure:J_heart_inlet:CLH", + "9943": "pressure:J_heart_inlet:CLH", + "9944": "pressure:J_heart_inlet:CLH", + "9945": "pressure:J_heart_inlet:CLH", + "9946": "pressure:J_heart_inlet:CLH", + "9947": "pressure:J_heart_inlet:CLH", + "9948": "pressure:J_heart_inlet:CLH", + "9949": "pressure:J_heart_inlet:CLH", + "9950": "pressure:J_heart_inlet:CLH", + "9951": "pressure:J_heart_inlet:CLH", + "9952": "pressure:J_heart_inlet:CLH", + "9953": "pressure:J_heart_inlet:CLH", + "9954": "pressure:J_heart_inlet:CLH", + "9955": "pressure:J_heart_inlet:CLH", + "9956": "pressure:J_heart_inlet:CLH", + "9957": "pressure:J_heart_inlet:CLH", + "9958": "pressure:J_heart_inlet:CLH", + "9959": "pressure:J_heart_inlet:CLH", + "9960": "pressure:J_heart_inlet:CLH", + "9961": "pressure:J_heart_inlet:CLH", + "9962": "pressure:J_heart_inlet:CLH", + "9963": "pressure:J_heart_inlet:CLH", + "9964": "pressure:J_heart_inlet:CLH", + "9965": "pressure:J_heart_inlet:CLH", + "9966": "pressure:J_heart_inlet:CLH", + "9967": "pressure:J_heart_inlet:CLH", + "9968": "pressure:J_heart_inlet:CLH", + "9969": "pressure:J_heart_inlet:CLH", + "9970": "pressure:J_heart_inlet:CLH", + "9971": "pressure:J_heart_inlet:CLH", + "9972": "pressure:J_heart_inlet:CLH", + "9973": "pressure:J_heart_inlet:CLH", + "9974": "pressure:J_heart_inlet:CLH", + "9975": "pressure:J_heart_inlet:CLH", + "9976": "pressure:J_heart_inlet:CLH", + "9977": "pressure:J_heart_inlet:CLH", + "9978": "pressure:J_heart_inlet:CLH", + "9979": "pressure:J_heart_inlet:CLH", + "9980": "pressure:J_heart_inlet:CLH", + "9981": "pressure:J_heart_inlet:CLH", + "9982": "pressure:J_heart_inlet:CLH", + "9983": "pressure:J_heart_inlet:CLH", + "9984": "pressure:J_heart_inlet:CLH", + "9985": "pressure:J_heart_inlet:CLH", + "9986": "pressure:J_heart_inlet:CLH", + "9987": "pressure:J_heart_inlet:CLH", + "9988": "pressure:J_heart_inlet:CLH", + "9989": "pressure:J_heart_inlet:CLH", + "9990": "pressure:J_heart_inlet:CLH", + "9991": "pressure:J_heart_inlet:CLH", + "9992": "pressure:J_heart_inlet:CLH", + "9993": "pressure:J_heart_inlet:CLH", + "9994": "pressure:J_heart_inlet:CLH", + "9995": "pressure:J_heart_inlet:CLH", + "9996": "pressure:J_heart_inlet:CLH", + "9997": "pressure:J_heart_inlet:CLH", + "9998": "pressure:J_heart_inlet:CLH", + "9999": "pressure:J_heart_inlet:CLH", + "10000": "flow:LCA:J_heart_inlet", + "10001": "flow:LCA:J_heart_inlet", + "10002": "flow:LCA:J_heart_inlet", + "10003": "flow:LCA:J_heart_inlet", + "10004": "flow:LCA:J_heart_inlet", + "10005": "flow:LCA:J_heart_inlet", + "10006": "flow:LCA:J_heart_inlet", + "10007": "flow:LCA:J_heart_inlet", + "10008": "flow:LCA:J_heart_inlet", + "10009": "flow:LCA:J_heart_inlet", + "10010": "flow:LCA:J_heart_inlet", + "10011": "flow:LCA:J_heart_inlet", + "10012": "flow:LCA:J_heart_inlet", + "10013": "flow:LCA:J_heart_inlet", + "10014": "flow:LCA:J_heart_inlet", + "10015": "flow:LCA:J_heart_inlet", + "10016": "flow:LCA:J_heart_inlet", + "10017": "flow:LCA:J_heart_inlet", + "10018": "flow:LCA:J_heart_inlet", + "10019": "flow:LCA:J_heart_inlet", + "10020": "flow:LCA:J_heart_inlet", + "10021": "flow:LCA:J_heart_inlet", + "10022": "flow:LCA:J_heart_inlet", + "10023": "flow:LCA:J_heart_inlet", + "10024": "flow:LCA:J_heart_inlet", + "10025": "flow:LCA:J_heart_inlet", + "10026": "flow:LCA:J_heart_inlet", + "10027": "flow:LCA:J_heart_inlet", + "10028": "flow:LCA:J_heart_inlet", + "10029": "flow:LCA:J_heart_inlet", + "10030": "flow:LCA:J_heart_inlet", + "10031": "flow:LCA:J_heart_inlet", + "10032": "flow:LCA:J_heart_inlet", + "10033": "flow:LCA:J_heart_inlet", + "10034": "flow:LCA:J_heart_inlet", + "10035": "flow:LCA:J_heart_inlet", + "10036": "flow:LCA:J_heart_inlet", + "10037": "flow:LCA:J_heart_inlet", + "10038": "flow:LCA:J_heart_inlet", + "10039": "flow:LCA:J_heart_inlet", + "10040": "flow:LCA:J_heart_inlet", + "10041": "flow:LCA:J_heart_inlet", + "10042": "flow:LCA:J_heart_inlet", + "10043": "flow:LCA:J_heart_inlet", + "10044": "flow:LCA:J_heart_inlet", + "10045": "flow:LCA:J_heart_inlet", + "10046": "flow:LCA:J_heart_inlet", + "10047": "flow:LCA:J_heart_inlet", + "10048": "flow:LCA:J_heart_inlet", + "10049": "flow:LCA:J_heart_inlet", + "10050": "flow:LCA:J_heart_inlet", + "10051": "flow:LCA:J_heart_inlet", + "10052": "flow:LCA:J_heart_inlet", + "10053": "flow:LCA:J_heart_inlet", + "10054": "flow:LCA:J_heart_inlet", + "10055": "flow:LCA:J_heart_inlet", + "10056": "flow:LCA:J_heart_inlet", + "10057": "flow:LCA:J_heart_inlet", + "10058": "flow:LCA:J_heart_inlet", + "10059": "flow:LCA:J_heart_inlet", + "10060": "flow:LCA:J_heart_inlet", + "10061": "flow:LCA:J_heart_inlet", + "10062": "flow:LCA:J_heart_inlet", + "10063": "flow:LCA:J_heart_inlet", + "10064": "flow:LCA:J_heart_inlet", + "10065": "flow:LCA:J_heart_inlet", + "10066": "flow:LCA:J_heart_inlet", + "10067": "flow:LCA:J_heart_inlet", + "10068": "flow:LCA:J_heart_inlet", + "10069": "flow:LCA:J_heart_inlet", + "10070": "flow:LCA:J_heart_inlet", + "10071": "flow:LCA:J_heart_inlet", + "10072": "flow:LCA:J_heart_inlet", + "10073": "flow:LCA:J_heart_inlet", + "10074": "flow:LCA:J_heart_inlet", + "10075": "flow:LCA:J_heart_inlet", + "10076": "flow:LCA:J_heart_inlet", + "10077": "flow:LCA:J_heart_inlet", + "10078": "flow:LCA:J_heart_inlet", + "10079": "flow:LCA:J_heart_inlet", + "10080": "flow:LCA:J_heart_inlet", + "10081": "flow:LCA:J_heart_inlet", + "10082": "flow:LCA:J_heart_inlet", + "10083": "flow:LCA:J_heart_inlet", + "10084": "flow:LCA:J_heart_inlet", + "10085": "flow:LCA:J_heart_inlet", + "10086": "flow:LCA:J_heart_inlet", + "10087": "flow:LCA:J_heart_inlet", + "10088": "flow:LCA:J_heart_inlet", + "10089": "flow:LCA:J_heart_inlet", + "10090": "flow:LCA:J_heart_inlet", + "10091": "flow:LCA:J_heart_inlet", + "10092": "flow:LCA:J_heart_inlet", + "10093": "flow:LCA:J_heart_inlet", + "10094": "flow:LCA:J_heart_inlet", + "10095": "flow:LCA:J_heart_inlet", + "10096": "flow:LCA:J_heart_inlet", + "10097": "flow:LCA:J_heart_inlet", + "10098": "flow:LCA:J_heart_inlet", + "10099": "flow:LCA:J_heart_inlet", + "10100": "flow:LCA:J_heart_inlet", + "10101": "flow:LCA:J_heart_inlet", + "10102": "flow:LCA:J_heart_inlet", + "10103": "flow:LCA:J_heart_inlet", + "10104": "flow:LCA:J_heart_inlet", + "10105": "flow:LCA:J_heart_inlet", + "10106": "flow:LCA:J_heart_inlet", + "10107": "flow:LCA:J_heart_inlet", + "10108": "flow:LCA:J_heart_inlet", + "10109": "flow:LCA:J_heart_inlet", + "10110": "flow:LCA:J_heart_inlet", + "10111": "flow:LCA:J_heart_inlet", + "10112": "flow:LCA:J_heart_inlet", + "10113": "flow:LCA:J_heart_inlet", + "10114": "flow:LCA:J_heart_inlet", + "10115": "flow:LCA:J_heart_inlet", + "10116": "flow:LCA:J_heart_inlet", + "10117": "flow:LCA:J_heart_inlet", + "10118": "flow:LCA:J_heart_inlet", + "10119": "flow:LCA:J_heart_inlet", + "10120": "flow:LCA:J_heart_inlet", + "10121": "flow:LCA:J_heart_inlet", + "10122": "flow:LCA:J_heart_inlet", + "10123": "flow:LCA:J_heart_inlet", + "10124": "flow:LCA:J_heart_inlet", + "10125": "flow:LCA:J_heart_inlet", + "10126": "flow:LCA:J_heart_inlet", + "10127": "flow:LCA:J_heart_inlet", + "10128": "flow:LCA:J_heart_inlet", + "10129": "flow:LCA:J_heart_inlet", + "10130": "flow:LCA:J_heart_inlet", + "10131": "flow:LCA:J_heart_inlet", + "10132": "flow:LCA:J_heart_inlet", + "10133": "flow:LCA:J_heart_inlet", + "10134": "flow:LCA:J_heart_inlet", + "10135": "flow:LCA:J_heart_inlet", + "10136": "flow:LCA:J_heart_inlet", + "10137": "flow:LCA:J_heart_inlet", + "10138": "flow:LCA:J_heart_inlet", + "10139": "flow:LCA:J_heart_inlet", + "10140": "flow:LCA:J_heart_inlet", + "10141": "flow:LCA:J_heart_inlet", + "10142": "flow:LCA:J_heart_inlet", + "10143": "flow:LCA:J_heart_inlet", + "10144": "flow:LCA:J_heart_inlet", + "10145": "flow:LCA:J_heart_inlet", + "10146": "flow:LCA:J_heart_inlet", + "10147": "flow:LCA:J_heart_inlet", + "10148": "flow:LCA:J_heart_inlet", + "10149": "flow:LCA:J_heart_inlet", + "10150": "flow:LCA:J_heart_inlet", + "10151": "flow:LCA:J_heart_inlet", + "10152": "flow:LCA:J_heart_inlet", + "10153": "flow:LCA:J_heart_inlet", + "10154": "flow:LCA:J_heart_inlet", + "10155": "flow:LCA:J_heart_inlet", + "10156": "flow:LCA:J_heart_inlet", + "10157": "flow:LCA:J_heart_inlet", + "10158": "flow:LCA:J_heart_inlet", + "10159": "flow:LCA:J_heart_inlet", + "10160": "flow:LCA:J_heart_inlet", + "10161": "flow:LCA:J_heart_inlet", + "10162": "flow:LCA:J_heart_inlet", + "10163": "flow:LCA:J_heart_inlet", + "10164": "flow:LCA:J_heart_inlet", + "10165": "flow:LCA:J_heart_inlet", + "10166": "flow:LCA:J_heart_inlet", + "10167": "flow:LCA:J_heart_inlet", + "10168": "flow:LCA:J_heart_inlet", + "10169": "flow:LCA:J_heart_inlet", + "10170": "flow:LCA:J_heart_inlet", + "10171": "flow:LCA:J_heart_inlet", + "10172": "flow:LCA:J_heart_inlet", + "10173": "flow:LCA:J_heart_inlet", + "10174": "flow:LCA:J_heart_inlet", + "10175": "flow:LCA:J_heart_inlet", + "10176": "flow:LCA:J_heart_inlet", + "10177": "flow:LCA:J_heart_inlet", + "10178": "flow:LCA:J_heart_inlet", + "10179": "flow:LCA:J_heart_inlet", + "10180": "flow:LCA:J_heart_inlet", + "10181": "flow:LCA:J_heart_inlet", + "10182": "flow:LCA:J_heart_inlet", + "10183": "flow:LCA:J_heart_inlet", + "10184": "flow:LCA:J_heart_inlet", + "10185": "flow:LCA:J_heart_inlet", + "10186": "flow:LCA:J_heart_inlet", + "10187": "flow:LCA:J_heart_inlet", + "10188": "flow:LCA:J_heart_inlet", + "10189": "flow:LCA:J_heart_inlet", + "10190": "flow:LCA:J_heart_inlet", + "10191": "flow:LCA:J_heart_inlet", + "10192": "flow:LCA:J_heart_inlet", + "10193": "flow:LCA:J_heart_inlet", + "10194": "flow:LCA:J_heart_inlet", + "10195": "flow:LCA:J_heart_inlet", + "10196": "flow:LCA:J_heart_inlet", + "10197": "flow:LCA:J_heart_inlet", + "10198": "flow:LCA:J_heart_inlet", + "10199": "flow:LCA:J_heart_inlet", + "10200": "flow:LCA:J_heart_inlet", + "10201": "flow:LCA:J_heart_inlet", + "10202": "flow:LCA:J_heart_inlet", + "10203": "flow:LCA:J_heart_inlet", + "10204": "flow:LCA:J_heart_inlet", + "10205": "flow:LCA:J_heart_inlet", + "10206": "flow:LCA:J_heart_inlet", + "10207": "flow:LCA:J_heart_inlet", + "10208": "flow:LCA:J_heart_inlet", + "10209": "flow:LCA:J_heart_inlet", + "10210": "flow:LCA:J_heart_inlet", + "10211": "flow:LCA:J_heart_inlet", + "10212": "flow:LCA:J_heart_inlet", + "10213": "flow:LCA:J_heart_inlet", + "10214": "flow:LCA:J_heart_inlet", + "10215": "flow:LCA:J_heart_inlet", + "10216": "flow:LCA:J_heart_inlet", + "10217": "flow:LCA:J_heart_inlet", + "10218": "flow:LCA:J_heart_inlet", + "10219": "flow:LCA:J_heart_inlet", + "10220": "flow:LCA:J_heart_inlet", + "10221": "flow:LCA:J_heart_inlet", + "10222": "flow:LCA:J_heart_inlet", + "10223": "flow:LCA:J_heart_inlet", + "10224": "flow:LCA:J_heart_inlet", + "10225": "flow:LCA:J_heart_inlet", + "10226": "flow:LCA:J_heart_inlet", + "10227": "flow:LCA:J_heart_inlet", + "10228": "flow:LCA:J_heart_inlet", + "10229": "flow:LCA:J_heart_inlet", + "10230": "flow:LCA:J_heart_inlet", + "10231": "flow:LCA:J_heart_inlet", + "10232": "flow:LCA:J_heart_inlet", + "10233": "flow:LCA:J_heart_inlet", + "10234": "flow:LCA:J_heart_inlet", + "10235": "flow:LCA:J_heart_inlet", + "10236": "flow:LCA:J_heart_inlet", + "10237": "flow:LCA:J_heart_inlet", + "10238": "flow:LCA:J_heart_inlet", + "10239": "flow:LCA:J_heart_inlet", + "10240": "flow:LCA:J_heart_inlet", + "10241": "flow:LCA:J_heart_inlet", + "10242": "flow:LCA:J_heart_inlet", + "10243": "flow:LCA:J_heart_inlet", + "10244": "flow:LCA:J_heart_inlet", + "10245": "flow:LCA:J_heart_inlet", + "10246": "flow:LCA:J_heart_inlet", + "10247": "flow:LCA:J_heart_inlet", + "10248": "flow:LCA:J_heart_inlet", + "10249": "flow:LCA:J_heart_inlet", + "10250": "flow:LCA:J_heart_inlet", + "10251": "flow:LCA:J_heart_inlet", + "10252": "flow:LCA:J_heart_inlet", + "10253": "flow:LCA:J_heart_inlet", + "10254": "flow:LCA:J_heart_inlet", + "10255": "flow:LCA:J_heart_inlet", + "10256": "flow:LCA:J_heart_inlet", + "10257": "flow:LCA:J_heart_inlet", + "10258": "flow:LCA:J_heart_inlet", + "10259": "flow:LCA:J_heart_inlet", + "10260": "flow:LCA:J_heart_inlet", + "10261": "flow:LCA:J_heart_inlet", + "10262": "flow:LCA:J_heart_inlet", + "10263": "flow:LCA:J_heart_inlet", + "10264": "flow:LCA:J_heart_inlet", + "10265": "flow:LCA:J_heart_inlet", + "10266": "flow:LCA:J_heart_inlet", + "10267": "flow:LCA:J_heart_inlet", + "10268": "flow:LCA:J_heart_inlet", + "10269": "flow:LCA:J_heart_inlet", + "10270": "flow:LCA:J_heart_inlet", + "10271": "flow:LCA:J_heart_inlet", + "10272": "flow:LCA:J_heart_inlet", + "10273": "flow:LCA:J_heart_inlet", + "10274": "flow:LCA:J_heart_inlet", + "10275": "flow:LCA:J_heart_inlet", + "10276": "flow:LCA:J_heart_inlet", + "10277": "flow:LCA:J_heart_inlet", + "10278": "flow:LCA:J_heart_inlet", + "10279": "flow:LCA:J_heart_inlet", + "10280": "flow:LCA:J_heart_inlet", + "10281": "flow:LCA:J_heart_inlet", + "10282": "flow:LCA:J_heart_inlet", + "10283": "flow:LCA:J_heart_inlet", + "10284": "flow:LCA:J_heart_inlet", + "10285": "flow:LCA:J_heart_inlet", + "10286": "flow:LCA:J_heart_inlet", + "10287": "flow:LCA:J_heart_inlet", + "10288": "flow:LCA:J_heart_inlet", + "10289": "flow:LCA:J_heart_inlet", + "10290": "flow:LCA:J_heart_inlet", + "10291": "flow:LCA:J_heart_inlet", + "10292": "flow:LCA:J_heart_inlet", + "10293": "flow:LCA:J_heart_inlet", + "10294": "flow:LCA:J_heart_inlet", + "10295": "flow:LCA:J_heart_inlet", + "10296": "flow:LCA:J_heart_inlet", + "10297": "flow:LCA:J_heart_inlet", + "10298": "flow:LCA:J_heart_inlet", + "10299": "flow:LCA:J_heart_inlet", + "10300": "flow:LCA:J_heart_inlet", + "10301": "flow:LCA:J_heart_inlet", + "10302": "flow:LCA:J_heart_inlet", + "10303": "flow:LCA:J_heart_inlet", + "10304": "flow:LCA:J_heart_inlet", + "10305": "flow:LCA:J_heart_inlet", + "10306": "flow:LCA:J_heart_inlet", + "10307": "flow:LCA:J_heart_inlet", + "10308": "flow:LCA:J_heart_inlet", + "10309": "flow:LCA:J_heart_inlet", + "10310": "flow:LCA:J_heart_inlet", + "10311": "flow:LCA:J_heart_inlet", + "10312": "flow:LCA:J_heart_inlet", + "10313": "flow:LCA:J_heart_inlet", + "10314": "flow:LCA:J_heart_inlet", + "10315": "flow:LCA:J_heart_inlet", + "10316": "flow:LCA:J_heart_inlet", + "10317": "flow:LCA:J_heart_inlet", + "10318": "flow:LCA:J_heart_inlet", + "10319": "flow:LCA:J_heart_inlet", + "10320": "flow:LCA:J_heart_inlet", + "10321": "flow:LCA:J_heart_inlet", + "10322": "flow:LCA:J_heart_inlet", + "10323": "flow:LCA:J_heart_inlet", + "10324": "flow:LCA:J_heart_inlet", + "10325": "flow:LCA:J_heart_inlet", + "10326": "flow:LCA:J_heart_inlet", + "10327": "flow:LCA:J_heart_inlet", + "10328": "flow:LCA:J_heart_inlet", + "10329": "flow:LCA:J_heart_inlet", + "10330": "flow:LCA:J_heart_inlet", + "10331": "flow:LCA:J_heart_inlet", + "10332": "flow:LCA:J_heart_inlet", + "10333": "flow:LCA:J_heart_inlet", + "10334": "flow:LCA:J_heart_inlet", + "10335": "flow:LCA:J_heart_inlet", + "10336": "flow:LCA:J_heart_inlet", + "10337": "flow:LCA:J_heart_inlet", + "10338": "flow:LCA:J_heart_inlet", + "10339": "flow:LCA:J_heart_inlet", + "10340": "flow:LCA:J_heart_inlet", + "10341": "flow:LCA:J_heart_inlet", + "10342": "flow:LCA:J_heart_inlet", + "10343": "flow:LCA:J_heart_inlet", + "10344": "flow:LCA:J_heart_inlet", + "10345": "flow:LCA:J_heart_inlet", + "10346": "flow:LCA:J_heart_inlet", + "10347": "flow:LCA:J_heart_inlet", + "10348": "flow:LCA:J_heart_inlet", + "10349": "flow:LCA:J_heart_inlet", + "10350": "flow:LCA:J_heart_inlet", + "10351": "flow:LCA:J_heart_inlet", + "10352": "flow:LCA:J_heart_inlet", + "10353": "flow:LCA:J_heart_inlet", + "10354": "flow:LCA:J_heart_inlet", + "10355": "flow:LCA:J_heart_inlet", + "10356": "flow:LCA:J_heart_inlet", + "10357": "flow:LCA:J_heart_inlet", + "10358": "flow:LCA:J_heart_inlet", + "10359": "flow:LCA:J_heart_inlet", + "10360": "flow:LCA:J_heart_inlet", + "10361": "flow:LCA:J_heart_inlet", + "10362": "flow:LCA:J_heart_inlet", + "10363": "flow:LCA:J_heart_inlet", + "10364": "flow:LCA:J_heart_inlet", + "10365": "flow:LCA:J_heart_inlet", + "10366": "flow:LCA:J_heart_inlet", + "10367": "flow:LCA:J_heart_inlet", + "10368": "flow:LCA:J_heart_inlet", + "10369": "flow:LCA:J_heart_inlet", + "10370": "flow:LCA:J_heart_inlet", + "10371": "flow:LCA:J_heart_inlet", + "10372": "flow:LCA:J_heart_inlet", + "10373": "flow:LCA:J_heart_inlet", + "10374": "flow:LCA:J_heart_inlet", + "10375": "flow:LCA:J_heart_inlet", + "10376": "flow:LCA:J_heart_inlet", + "10377": "flow:LCA:J_heart_inlet", + "10378": "flow:LCA:J_heart_inlet", + "10379": "flow:LCA:J_heart_inlet", + "10380": "flow:LCA:J_heart_inlet", + "10381": "flow:LCA:J_heart_inlet", + "10382": "flow:LCA:J_heart_inlet", + "10383": "flow:LCA:J_heart_inlet", + "10384": "flow:LCA:J_heart_inlet", + "10385": "flow:LCA:J_heart_inlet", + "10386": "flow:LCA:J_heart_inlet", + "10387": "flow:LCA:J_heart_inlet", + "10388": "flow:LCA:J_heart_inlet", + "10389": "flow:LCA:J_heart_inlet", + "10390": "flow:LCA:J_heart_inlet", + "10391": "flow:LCA:J_heart_inlet", + "10392": "flow:LCA:J_heart_inlet", + "10393": "flow:LCA:J_heart_inlet", + "10394": "flow:LCA:J_heart_inlet", + "10395": "flow:LCA:J_heart_inlet", + "10396": "flow:LCA:J_heart_inlet", + "10397": "flow:LCA:J_heart_inlet", + "10398": "flow:LCA:J_heart_inlet", + "10399": "flow:LCA:J_heart_inlet", + "10400": "flow:LCA:J_heart_inlet", + "10401": "flow:LCA:J_heart_inlet", + "10402": "flow:LCA:J_heart_inlet", + "10403": "flow:LCA:J_heart_inlet", + "10404": "flow:LCA:J_heart_inlet", + "10405": "flow:LCA:J_heart_inlet", + "10406": "flow:LCA:J_heart_inlet", + "10407": "flow:LCA:J_heart_inlet", + "10408": "flow:LCA:J_heart_inlet", + "10409": "flow:LCA:J_heart_inlet", + "10410": "flow:LCA:J_heart_inlet", + "10411": "flow:LCA:J_heart_inlet", + "10412": "flow:LCA:J_heart_inlet", + "10413": "flow:LCA:J_heart_inlet", + "10414": "flow:LCA:J_heart_inlet", + "10415": "flow:LCA:J_heart_inlet", + "10416": "flow:LCA:J_heart_inlet", + "10417": "flow:LCA:J_heart_inlet", + "10418": "flow:LCA:J_heart_inlet", + "10419": "flow:LCA:J_heart_inlet", + "10420": "flow:LCA:J_heart_inlet", + "10421": "flow:LCA:J_heart_inlet", + "10422": "flow:LCA:J_heart_inlet", + "10423": "flow:LCA:J_heart_inlet", + "10424": "flow:LCA:J_heart_inlet", + "10425": "flow:LCA:J_heart_inlet", + "10426": "flow:LCA:J_heart_inlet", + "10427": "flow:LCA:J_heart_inlet", + "10428": "flow:LCA:J_heart_inlet", + "10429": "flow:LCA:J_heart_inlet", + "10430": "flow:LCA:J_heart_inlet", + "10431": "flow:LCA:J_heart_inlet", + "10432": "flow:LCA:J_heart_inlet", + "10433": "flow:LCA:J_heart_inlet", + "10434": "flow:LCA:J_heart_inlet", + "10435": "flow:LCA:J_heart_inlet", + "10436": "flow:LCA:J_heart_inlet", + "10437": "flow:LCA:J_heart_inlet", + "10438": "flow:LCA:J_heart_inlet", + "10439": "flow:LCA:J_heart_inlet", + "10440": "flow:LCA:J_heart_inlet", + "10441": "flow:LCA:J_heart_inlet", + "10442": "flow:LCA:J_heart_inlet", + "10443": "flow:LCA:J_heart_inlet", + "10444": "flow:LCA:J_heart_inlet", + "10445": "flow:LCA:J_heart_inlet", + "10446": "flow:LCA:J_heart_inlet", + "10447": "flow:LCA:J_heart_inlet", + "10448": "flow:LCA:J_heart_inlet", + "10449": "flow:LCA:J_heart_inlet", + "10450": "flow:LCA:J_heart_inlet", + "10451": "flow:LCA:J_heart_inlet", + "10452": "flow:LCA:J_heart_inlet", + "10453": "flow:LCA:J_heart_inlet", + "10454": "flow:LCA:J_heart_inlet", + "10455": "flow:LCA:J_heart_inlet", + "10456": "flow:LCA:J_heart_inlet", + "10457": "flow:LCA:J_heart_inlet", + "10458": "flow:LCA:J_heart_inlet", + "10459": "flow:LCA:J_heart_inlet", + "10460": "flow:LCA:J_heart_inlet", + "10461": "flow:LCA:J_heart_inlet", + "10462": "flow:LCA:J_heart_inlet", + "10463": "flow:LCA:J_heart_inlet", + "10464": "flow:LCA:J_heart_inlet", + "10465": "flow:LCA:J_heart_inlet", + "10466": "flow:LCA:J_heart_inlet", + "10467": "flow:LCA:J_heart_inlet", + "10468": "flow:LCA:J_heart_inlet", + "10469": "flow:LCA:J_heart_inlet", + "10470": "flow:LCA:J_heart_inlet", + "10471": "flow:LCA:J_heart_inlet", + "10472": "flow:LCA:J_heart_inlet", + "10473": "flow:LCA:J_heart_inlet", + "10474": "flow:LCA:J_heart_inlet", + "10475": "flow:LCA:J_heart_inlet", + "10476": "flow:LCA:J_heart_inlet", + "10477": "flow:LCA:J_heart_inlet", + "10478": "flow:LCA:J_heart_inlet", + "10479": "flow:LCA:J_heart_inlet", + "10480": "flow:LCA:J_heart_inlet", + "10481": "flow:LCA:J_heart_inlet", + "10482": "flow:LCA:J_heart_inlet", + "10483": "flow:LCA:J_heart_inlet", + "10484": "flow:LCA:J_heart_inlet", + "10485": "flow:LCA:J_heart_inlet", + "10486": "flow:LCA:J_heart_inlet", + "10487": "flow:LCA:J_heart_inlet", + "10488": "flow:LCA:J_heart_inlet", + "10489": "flow:LCA:J_heart_inlet", + "10490": "flow:LCA:J_heart_inlet", + "10491": "flow:LCA:J_heart_inlet", + "10492": "flow:LCA:J_heart_inlet", + "10493": "flow:LCA:J_heart_inlet", + "10494": "flow:LCA:J_heart_inlet", + "10495": "flow:LCA:J_heart_inlet", + "10496": "flow:LCA:J_heart_inlet", + "10497": "flow:LCA:J_heart_inlet", + "10498": "flow:LCA:J_heart_inlet", + "10499": "flow:LCA:J_heart_inlet", + "10500": "flow:LCA:J_heart_inlet", + "10501": "flow:LCA:J_heart_inlet", + "10502": "flow:LCA:J_heart_inlet", + "10503": "flow:LCA:J_heart_inlet", + "10504": "flow:LCA:J_heart_inlet", + "10505": "flow:LCA:J_heart_inlet", + "10506": "flow:LCA:J_heart_inlet", + "10507": "flow:LCA:J_heart_inlet", + "10508": "flow:LCA:J_heart_inlet", + "10509": "flow:LCA:J_heart_inlet", + "10510": "flow:LCA:J_heart_inlet", + "10511": "flow:LCA:J_heart_inlet", + "10512": "flow:LCA:J_heart_inlet", + "10513": "flow:LCA:J_heart_inlet", + "10514": "flow:LCA:J_heart_inlet", + "10515": "flow:LCA:J_heart_inlet", + "10516": "flow:LCA:J_heart_inlet", + "10517": "flow:LCA:J_heart_inlet", + "10518": "flow:LCA:J_heart_inlet", + "10519": "flow:LCA:J_heart_inlet", + "10520": "flow:LCA:J_heart_inlet", + "10521": "flow:LCA:J_heart_inlet", + "10522": "flow:LCA:J_heart_inlet", + "10523": "flow:LCA:J_heart_inlet", + "10524": "flow:LCA:J_heart_inlet", + "10525": "flow:LCA:J_heart_inlet", + "10526": "flow:LCA:J_heart_inlet", + "10527": "flow:LCA:J_heart_inlet", + "10528": "flow:LCA:J_heart_inlet", + "10529": "flow:LCA:J_heart_inlet", + "10530": "flow:LCA:J_heart_inlet", + "10531": "flow:LCA:J_heart_inlet", + "10532": "flow:LCA:J_heart_inlet", + "10533": "flow:LCA:J_heart_inlet", + "10534": "flow:LCA:J_heart_inlet", + "10535": "flow:LCA:J_heart_inlet", + "10536": "flow:LCA:J_heart_inlet", + "10537": "flow:LCA:J_heart_inlet", + "10538": "flow:LCA:J_heart_inlet", + "10539": "flow:LCA:J_heart_inlet", + "10540": "flow:LCA:J_heart_inlet", + "10541": "flow:LCA:J_heart_inlet", + "10542": "flow:LCA:J_heart_inlet", + "10543": "flow:LCA:J_heart_inlet", + "10544": "flow:LCA:J_heart_inlet", + "10545": "flow:LCA:J_heart_inlet", + "10546": "flow:LCA:J_heart_inlet", + "10547": "flow:LCA:J_heart_inlet", + "10548": "flow:LCA:J_heart_inlet", + "10549": "flow:LCA:J_heart_inlet", + "10550": "flow:LCA:J_heart_inlet", + "10551": "flow:LCA:J_heart_inlet", + "10552": "flow:LCA:J_heart_inlet", + "10553": "flow:LCA:J_heart_inlet", + "10554": "flow:LCA:J_heart_inlet", + "10555": "flow:LCA:J_heart_inlet", + "10556": "flow:LCA:J_heart_inlet", + "10557": "flow:LCA:J_heart_inlet", + "10558": "flow:LCA:J_heart_inlet", + "10559": "flow:LCA:J_heart_inlet", + "10560": "flow:LCA:J_heart_inlet", + "10561": "flow:LCA:J_heart_inlet", + "10562": "flow:LCA:J_heart_inlet", + "10563": "flow:LCA:J_heart_inlet", + "10564": "flow:LCA:J_heart_inlet", + "10565": "flow:LCA:J_heart_inlet", + "10566": "flow:LCA:J_heart_inlet", + "10567": "flow:LCA:J_heart_inlet", + "10568": "flow:LCA:J_heart_inlet", + "10569": "flow:LCA:J_heart_inlet", + "10570": "flow:LCA:J_heart_inlet", + "10571": "flow:LCA:J_heart_inlet", + "10572": "flow:LCA:J_heart_inlet", + "10573": "flow:LCA:J_heart_inlet", + "10574": "flow:LCA:J_heart_inlet", + "10575": "flow:LCA:J_heart_inlet", + "10576": "flow:LCA:J_heart_inlet", + "10577": "flow:LCA:J_heart_inlet", + "10578": "flow:LCA:J_heart_inlet", + "10579": "flow:LCA:J_heart_inlet", + "10580": "flow:LCA:J_heart_inlet", + "10581": "flow:LCA:J_heart_inlet", + "10582": "flow:LCA:J_heart_inlet", + "10583": "flow:LCA:J_heart_inlet", + "10584": "flow:LCA:J_heart_inlet", + "10585": "flow:LCA:J_heart_inlet", + "10586": "flow:LCA:J_heart_inlet", + "10587": "flow:LCA:J_heart_inlet", + "10588": "flow:LCA:J_heart_inlet", + "10589": "flow:LCA:J_heart_inlet", + "10590": "flow:LCA:J_heart_inlet", + "10591": "flow:LCA:J_heart_inlet", + "10592": "flow:LCA:J_heart_inlet", + "10593": "flow:LCA:J_heart_inlet", + "10594": "flow:LCA:J_heart_inlet", + "10595": "flow:LCA:J_heart_inlet", + "10596": "flow:LCA:J_heart_inlet", + "10597": "flow:LCA:J_heart_inlet", + "10598": "flow:LCA:J_heart_inlet", + "10599": "flow:LCA:J_heart_inlet", + "10600": "flow:LCA:J_heart_inlet", + "10601": "flow:LCA:J_heart_inlet", + "10602": "flow:LCA:J_heart_inlet", + "10603": "flow:LCA:J_heart_inlet", + "10604": "flow:LCA:J_heart_inlet", + "10605": "flow:LCA:J_heart_inlet", + "10606": "flow:LCA:J_heart_inlet", + "10607": "flow:LCA:J_heart_inlet", + "10608": "flow:LCA:J_heart_inlet", + "10609": "flow:LCA:J_heart_inlet", + "10610": "flow:LCA:J_heart_inlet", + "10611": "flow:LCA:J_heart_inlet", + "10612": "flow:LCA:J_heart_inlet", + "10613": "flow:LCA:J_heart_inlet", + "10614": "flow:LCA:J_heart_inlet", + "10615": "flow:LCA:J_heart_inlet", + "10616": "flow:LCA:J_heart_inlet", + "10617": "flow:LCA:J_heart_inlet", + "10618": "flow:LCA:J_heart_inlet", + "10619": "flow:LCA:J_heart_inlet", + "10620": "flow:LCA:J_heart_inlet", + "10621": "flow:LCA:J_heart_inlet", + "10622": "flow:LCA:J_heart_inlet", + "10623": "flow:LCA:J_heart_inlet", + "10624": "flow:LCA:J_heart_inlet", + "10625": "flow:LCA:J_heart_inlet", + "10626": "flow:LCA:J_heart_inlet", + "10627": "flow:LCA:J_heart_inlet", + "10628": "flow:LCA:J_heart_inlet", + "10629": "flow:LCA:J_heart_inlet", + "10630": "flow:LCA:J_heart_inlet", + "10631": "flow:LCA:J_heart_inlet", + "10632": "flow:LCA:J_heart_inlet", + "10633": "flow:LCA:J_heart_inlet", + "10634": "flow:LCA:J_heart_inlet", + "10635": "flow:LCA:J_heart_inlet", + "10636": "flow:LCA:J_heart_inlet", + "10637": "flow:LCA:J_heart_inlet", + "10638": "flow:LCA:J_heart_inlet", + "10639": "flow:LCA:J_heart_inlet", + "10640": "flow:LCA:J_heart_inlet", + "10641": "flow:LCA:J_heart_inlet", + "10642": "flow:LCA:J_heart_inlet", + "10643": "flow:LCA:J_heart_inlet", + "10644": "flow:LCA:J_heart_inlet", + "10645": "flow:LCA:J_heart_inlet", + "10646": "flow:LCA:J_heart_inlet", + "10647": "flow:LCA:J_heart_inlet", + "10648": "flow:LCA:J_heart_inlet", + "10649": "flow:LCA:J_heart_inlet", + "10650": "flow:LCA:J_heart_inlet", + "10651": "flow:LCA:J_heart_inlet", + "10652": "flow:LCA:J_heart_inlet", + "10653": "flow:LCA:J_heart_inlet", + "10654": "flow:LCA:J_heart_inlet", + "10655": "flow:LCA:J_heart_inlet", + "10656": "flow:LCA:J_heart_inlet", + "10657": "flow:LCA:J_heart_inlet", + "10658": "flow:LCA:J_heart_inlet", + "10659": "flow:LCA:J_heart_inlet", + "10660": "flow:LCA:J_heart_inlet", + "10661": "flow:LCA:J_heart_inlet", + "10662": "flow:LCA:J_heart_inlet", + "10663": "flow:LCA:J_heart_inlet", + "10664": "flow:LCA:J_heart_inlet", + "10665": "flow:LCA:J_heart_inlet", + "10666": "flow:LCA:J_heart_inlet", + "10667": "flow:LCA:J_heart_inlet", + "10668": "flow:LCA:J_heart_inlet", + "10669": "flow:LCA:J_heart_inlet", + "10670": "flow:LCA:J_heart_inlet", + "10671": "flow:LCA:J_heart_inlet", + "10672": "flow:LCA:J_heart_inlet", + "10673": "flow:LCA:J_heart_inlet", + "10674": "flow:LCA:J_heart_inlet", + "10675": "flow:LCA:J_heart_inlet", + "10676": "flow:LCA:J_heart_inlet", + "10677": "flow:LCA:J_heart_inlet", + "10678": "flow:LCA:J_heart_inlet", + "10679": "flow:LCA:J_heart_inlet", + "10680": "flow:LCA:J_heart_inlet", + "10681": "flow:LCA:J_heart_inlet", + "10682": "flow:LCA:J_heart_inlet", + "10683": "flow:LCA:J_heart_inlet", + "10684": "flow:LCA:J_heart_inlet", + "10685": "flow:LCA:J_heart_inlet", + "10686": "flow:LCA:J_heart_inlet", + "10687": "flow:LCA:J_heart_inlet", + "10688": "flow:LCA:J_heart_inlet", + "10689": "flow:LCA:J_heart_inlet", + "10690": "flow:LCA:J_heart_inlet", + "10691": "flow:LCA:J_heart_inlet", + "10692": "flow:LCA:J_heart_inlet", + "10693": "flow:LCA:J_heart_inlet", + "10694": "flow:LCA:J_heart_inlet", + "10695": "flow:LCA:J_heart_inlet", + "10696": "flow:LCA:J_heart_inlet", + "10697": "flow:LCA:J_heart_inlet", + "10698": "flow:LCA:J_heart_inlet", + "10699": "flow:LCA:J_heart_inlet", + "10700": "flow:LCA:J_heart_inlet", + "10701": "flow:LCA:J_heart_inlet", + "10702": "flow:LCA:J_heart_inlet", + "10703": "flow:LCA:J_heart_inlet", + "10704": "flow:LCA:J_heart_inlet", + "10705": "flow:LCA:J_heart_inlet", + "10706": "flow:LCA:J_heart_inlet", + "10707": "flow:LCA:J_heart_inlet", + "10708": "flow:LCA:J_heart_inlet", + "10709": "flow:LCA:J_heart_inlet", + "10710": "flow:LCA:J_heart_inlet", + "10711": "flow:LCA:J_heart_inlet", + "10712": "flow:LCA:J_heart_inlet", + "10713": "flow:LCA:J_heart_inlet", + "10714": "flow:LCA:J_heart_inlet", + "10715": "flow:LCA:J_heart_inlet", + "10716": "flow:LCA:J_heart_inlet", + "10717": "flow:LCA:J_heart_inlet", + "10718": "flow:LCA:J_heart_inlet", + "10719": "flow:LCA:J_heart_inlet", + "10720": "flow:LCA:J_heart_inlet", + "10721": "flow:LCA:J_heart_inlet", + "10722": "flow:LCA:J_heart_inlet", + "10723": "flow:LCA:J_heart_inlet", + "10724": "flow:LCA:J_heart_inlet", + "10725": "flow:LCA:J_heart_inlet", + "10726": "flow:LCA:J_heart_inlet", + "10727": "flow:LCA:J_heart_inlet", + "10728": "flow:LCA:J_heart_inlet", + "10729": "flow:LCA:J_heart_inlet", + "10730": "flow:LCA:J_heart_inlet", + "10731": "flow:LCA:J_heart_inlet", + "10732": "flow:LCA:J_heart_inlet", + "10733": "flow:LCA:J_heart_inlet", + "10734": "flow:LCA:J_heart_inlet", + "10735": "flow:LCA:J_heart_inlet", + "10736": "flow:LCA:J_heart_inlet", + "10737": "flow:LCA:J_heart_inlet", + "10738": "flow:LCA:J_heart_inlet", + "10739": "flow:LCA:J_heart_inlet", + "10740": "flow:LCA:J_heart_inlet", + "10741": "flow:LCA:J_heart_inlet", + "10742": "flow:LCA:J_heart_inlet", + "10743": "flow:LCA:J_heart_inlet", + "10744": "flow:LCA:J_heart_inlet", + "10745": "flow:LCA:J_heart_inlet", + "10746": "flow:LCA:J_heart_inlet", + "10747": "flow:LCA:J_heart_inlet", + "10748": "flow:LCA:J_heart_inlet", + "10749": "flow:LCA:J_heart_inlet", + "10750": "flow:LCA:J_heart_inlet", + "10751": "flow:LCA:J_heart_inlet", + "10752": "flow:LCA:J_heart_inlet", + "10753": "flow:LCA:J_heart_inlet", + "10754": "flow:LCA:J_heart_inlet", + "10755": "flow:LCA:J_heart_inlet", + "10756": "flow:LCA:J_heart_inlet", + "10757": "flow:LCA:J_heart_inlet", + "10758": "flow:LCA:J_heart_inlet", + "10759": "flow:LCA:J_heart_inlet", + "10760": "flow:LCA:J_heart_inlet", + "10761": "flow:LCA:J_heart_inlet", + "10762": "flow:LCA:J_heart_inlet", + "10763": "flow:LCA:J_heart_inlet", + "10764": "flow:LCA:J_heart_inlet", + "10765": "flow:LCA:J_heart_inlet", + "10766": "flow:LCA:J_heart_inlet", + "10767": "flow:LCA:J_heart_inlet", + "10768": "flow:LCA:J_heart_inlet", + "10769": "flow:LCA:J_heart_inlet", + "10770": "flow:LCA:J_heart_inlet", + "10771": "flow:LCA:J_heart_inlet", + "10772": "flow:LCA:J_heart_inlet", + "10773": "flow:LCA:J_heart_inlet", + "10774": "flow:LCA:J_heart_inlet", + "10775": "flow:LCA:J_heart_inlet", + "10776": "flow:LCA:J_heart_inlet", + "10777": "flow:LCA:J_heart_inlet", + "10778": "flow:LCA:J_heart_inlet", + "10779": "flow:LCA:J_heart_inlet", + "10780": "flow:LCA:J_heart_inlet", + "10781": "flow:LCA:J_heart_inlet", + "10782": "flow:LCA:J_heart_inlet", + "10783": "flow:LCA:J_heart_inlet", + "10784": "flow:LCA:J_heart_inlet", + "10785": "flow:LCA:J_heart_inlet", + "10786": "flow:LCA:J_heart_inlet", + "10787": "flow:LCA:J_heart_inlet", + "10788": "flow:LCA:J_heart_inlet", + "10789": "flow:LCA:J_heart_inlet", + "10790": "flow:LCA:J_heart_inlet", + "10791": "flow:LCA:J_heart_inlet", + "10792": "flow:LCA:J_heart_inlet", + "10793": "flow:LCA:J_heart_inlet", + "10794": "flow:LCA:J_heart_inlet", + "10795": "flow:LCA:J_heart_inlet", + "10796": "flow:LCA:J_heart_inlet", + "10797": "flow:LCA:J_heart_inlet", + "10798": "flow:LCA:J_heart_inlet", + "10799": "flow:LCA:J_heart_inlet", + "10800": "flow:LCA:J_heart_inlet", + "10801": "flow:LCA:J_heart_inlet", + "10802": "flow:LCA:J_heart_inlet", + "10803": "flow:LCA:J_heart_inlet", + "10804": "flow:LCA:J_heart_inlet", + "10805": "flow:LCA:J_heart_inlet", + "10806": "flow:LCA:J_heart_inlet", + "10807": "flow:LCA:J_heart_inlet", + "10808": "flow:LCA:J_heart_inlet", + "10809": "flow:LCA:J_heart_inlet", + "10810": "flow:LCA:J_heart_inlet", + "10811": "flow:LCA:J_heart_inlet", + "10812": "flow:LCA:J_heart_inlet", + "10813": "flow:LCA:J_heart_inlet", + "10814": "flow:LCA:J_heart_inlet", + "10815": "flow:LCA:J_heart_inlet", + "10816": "flow:LCA:J_heart_inlet", + "10817": "flow:LCA:J_heart_inlet", + "10818": "flow:LCA:J_heart_inlet", + "10819": "flow:LCA:J_heart_inlet", + "10820": "flow:LCA:J_heart_inlet", + "10821": "flow:LCA:J_heart_inlet", + "10822": "flow:LCA:J_heart_inlet", + "10823": "flow:LCA:J_heart_inlet", + "10824": "flow:LCA:J_heart_inlet", + "10825": "flow:LCA:J_heart_inlet", + "10826": "flow:LCA:J_heart_inlet", + "10827": "flow:LCA:J_heart_inlet", + "10828": "flow:LCA:J_heart_inlet", + "10829": "flow:LCA:J_heart_inlet", + "10830": "flow:LCA:J_heart_inlet", + "10831": "flow:LCA:J_heart_inlet", + "10832": "flow:LCA:J_heart_inlet", + "10833": "flow:LCA:J_heart_inlet", + "10834": "flow:LCA:J_heart_inlet", + "10835": "flow:LCA:J_heart_inlet", + "10836": "flow:LCA:J_heart_inlet", + "10837": "flow:LCA:J_heart_inlet", + "10838": "flow:LCA:J_heart_inlet", + "10839": "flow:LCA:J_heart_inlet", + "10840": "flow:LCA:J_heart_inlet", + "10841": "flow:LCA:J_heart_inlet", + "10842": "flow:LCA:J_heart_inlet", + "10843": "flow:LCA:J_heart_inlet", + "10844": "flow:LCA:J_heart_inlet", + "10845": "flow:LCA:J_heart_inlet", + "10846": "flow:LCA:J_heart_inlet", + "10847": "flow:LCA:J_heart_inlet", + "10848": "flow:LCA:J_heart_inlet", + "10849": "flow:LCA:J_heart_inlet", + "10850": "flow:LCA:J_heart_inlet", + "10851": "flow:LCA:J_heart_inlet", + "10852": "flow:LCA:J_heart_inlet", + "10853": "flow:LCA:J_heart_inlet", + "10854": "flow:LCA:J_heart_inlet", + "10855": "flow:LCA:J_heart_inlet", + "10856": "flow:LCA:J_heart_inlet", + "10857": "flow:LCA:J_heart_inlet", + "10858": "flow:LCA:J_heart_inlet", + "10859": "flow:LCA:J_heart_inlet", + "10860": "flow:LCA:J_heart_inlet", + "10861": "flow:LCA:J_heart_inlet", + "10862": "flow:LCA:J_heart_inlet", + "10863": "flow:LCA:J_heart_inlet", + "10864": "flow:LCA:J_heart_inlet", + "10865": "flow:LCA:J_heart_inlet", + "10866": "flow:LCA:J_heart_inlet", + "10867": "flow:LCA:J_heart_inlet", + "10868": "flow:LCA:J_heart_inlet", + "10869": "flow:LCA:J_heart_inlet", + "10870": "flow:LCA:J_heart_inlet", + "10871": "flow:LCA:J_heart_inlet", + "10872": "flow:LCA:J_heart_inlet", + "10873": "flow:LCA:J_heart_inlet", + "10874": "flow:LCA:J_heart_inlet", + "10875": "flow:LCA:J_heart_inlet", + "10876": "flow:LCA:J_heart_inlet", + "10877": "flow:LCA:J_heart_inlet", + "10878": "flow:LCA:J_heart_inlet", + "10879": "flow:LCA:J_heart_inlet", + "10880": "flow:LCA:J_heart_inlet", + "10881": "flow:LCA:J_heart_inlet", + "10882": "flow:LCA:J_heart_inlet", + "10883": "flow:LCA:J_heart_inlet", + "10884": "flow:LCA:J_heart_inlet", + "10885": "flow:LCA:J_heart_inlet", + "10886": "flow:LCA:J_heart_inlet", + "10887": "flow:LCA:J_heart_inlet", + "10888": "flow:LCA:J_heart_inlet", + "10889": "flow:LCA:J_heart_inlet", + "10890": "flow:LCA:J_heart_inlet", + "10891": "flow:LCA:J_heart_inlet", + "10892": "flow:LCA:J_heart_inlet", + "10893": "flow:LCA:J_heart_inlet", + "10894": "flow:LCA:J_heart_inlet", + "10895": "flow:LCA:J_heart_inlet", + "10896": "flow:LCA:J_heart_inlet", + "10897": "flow:LCA:J_heart_inlet", + "10898": "flow:LCA:J_heart_inlet", + "10899": "flow:LCA:J_heart_inlet", + "10900": "flow:LCA:J_heart_inlet", + "10901": "flow:LCA:J_heart_inlet", + "10902": "flow:LCA:J_heart_inlet", + "10903": "flow:LCA:J_heart_inlet", + "10904": "flow:LCA:J_heart_inlet", + "10905": "flow:LCA:J_heart_inlet", + "10906": "flow:LCA:J_heart_inlet", + "10907": "flow:LCA:J_heart_inlet", + "10908": "flow:LCA:J_heart_inlet", + "10909": "flow:LCA:J_heart_inlet", + "10910": "flow:LCA:J_heart_inlet", + "10911": "flow:LCA:J_heart_inlet", + "10912": "flow:LCA:J_heart_inlet", + "10913": "flow:LCA:J_heart_inlet", + "10914": "flow:LCA:J_heart_inlet", + "10915": "flow:LCA:J_heart_inlet", + "10916": "flow:LCA:J_heart_inlet", + "10917": "flow:LCA:J_heart_inlet", + "10918": "flow:LCA:J_heart_inlet", + "10919": "flow:LCA:J_heart_inlet", + "10920": "flow:LCA:J_heart_inlet", + "10921": "flow:LCA:J_heart_inlet", + "10922": "flow:LCA:J_heart_inlet", + "10923": "flow:LCA:J_heart_inlet", + "10924": "flow:LCA:J_heart_inlet", + "10925": "flow:LCA:J_heart_inlet", + "10926": "flow:LCA:J_heart_inlet", + "10927": "flow:LCA:J_heart_inlet", + "10928": "flow:LCA:J_heart_inlet", + "10929": "flow:LCA:J_heart_inlet", + "10930": "flow:LCA:J_heart_inlet", + "10931": "flow:LCA:J_heart_inlet", + "10932": "flow:LCA:J_heart_inlet", + "10933": "flow:LCA:J_heart_inlet", + "10934": "flow:LCA:J_heart_inlet", + "10935": "flow:LCA:J_heart_inlet", + "10936": "flow:LCA:J_heart_inlet", + "10937": "flow:LCA:J_heart_inlet", + "10938": "flow:LCA:J_heart_inlet", + "10939": "flow:LCA:J_heart_inlet", + "10940": "flow:LCA:J_heart_inlet", + "10941": "flow:LCA:J_heart_inlet", + "10942": "flow:LCA:J_heart_inlet", + "10943": "flow:LCA:J_heart_inlet", + "10944": "flow:LCA:J_heart_inlet", + "10945": "flow:LCA:J_heart_inlet", + "10946": "flow:LCA:J_heart_inlet", + "10947": "flow:LCA:J_heart_inlet", + "10948": "flow:LCA:J_heart_inlet", + "10949": "flow:LCA:J_heart_inlet", + "10950": "flow:LCA:J_heart_inlet", + "10951": "flow:LCA:J_heart_inlet", + "10952": "flow:LCA:J_heart_inlet", + "10953": "flow:LCA:J_heart_inlet", + "10954": "flow:LCA:J_heart_inlet", + "10955": "flow:LCA:J_heart_inlet", + "10956": "flow:LCA:J_heart_inlet", + "10957": "flow:LCA:J_heart_inlet", + "10958": "flow:LCA:J_heart_inlet", + "10959": "flow:LCA:J_heart_inlet", + "10960": "flow:LCA:J_heart_inlet", + "10961": "flow:LCA:J_heart_inlet", + "10962": "flow:LCA:J_heart_inlet", + "10963": "flow:LCA:J_heart_inlet", + "10964": "flow:LCA:J_heart_inlet", + "10965": "flow:LCA:J_heart_inlet", + "10966": "flow:LCA:J_heart_inlet", + "10967": "flow:LCA:J_heart_inlet", + "10968": "flow:LCA:J_heart_inlet", + "10969": "flow:LCA:J_heart_inlet", + "10970": "flow:LCA:J_heart_inlet", + "10971": "flow:LCA:J_heart_inlet", + "10972": "flow:LCA:J_heart_inlet", + "10973": "flow:LCA:J_heart_inlet", + "10974": "flow:LCA:J_heart_inlet", + "10975": "flow:LCA:J_heart_inlet", + "10976": "flow:LCA:J_heart_inlet", + "10977": "flow:LCA:J_heart_inlet", + "10978": "flow:LCA:J_heart_inlet", + "10979": "flow:LCA:J_heart_inlet", + "10980": "flow:LCA:J_heart_inlet", + "10981": "flow:LCA:J_heart_inlet", + "10982": "flow:LCA:J_heart_inlet", + "10983": "flow:LCA:J_heart_inlet", + "10984": "flow:LCA:J_heart_inlet", + "10985": "flow:LCA:J_heart_inlet", + "10986": "flow:LCA:J_heart_inlet", + "10987": "flow:LCA:J_heart_inlet", + "10988": "flow:LCA:J_heart_inlet", + "10989": "flow:LCA:J_heart_inlet", + "10990": "flow:LCA:J_heart_inlet", + "10991": "flow:LCA:J_heart_inlet", + "10992": "flow:LCA:J_heart_inlet", + "10993": "flow:LCA:J_heart_inlet", + "10994": "flow:LCA:J_heart_inlet", + "10995": "flow:LCA:J_heart_inlet", + "10996": "flow:LCA:J_heart_inlet", + "10997": "flow:LCA:J_heart_inlet", + "10998": "flow:LCA:J_heart_inlet", + "10999": "flow:LCA:J_heart_inlet", + "11000": "pressure:LCA:J_heart_inlet", + "11001": "pressure:LCA:J_heart_inlet", + "11002": "pressure:LCA:J_heart_inlet", + "11003": "pressure:LCA:J_heart_inlet", + "11004": "pressure:LCA:J_heart_inlet", + "11005": "pressure:LCA:J_heart_inlet", + "11006": "pressure:LCA:J_heart_inlet", + "11007": "pressure:LCA:J_heart_inlet", + "11008": "pressure:LCA:J_heart_inlet", + "11009": "pressure:LCA:J_heart_inlet", + "11010": "pressure:LCA:J_heart_inlet", + "11011": "pressure:LCA:J_heart_inlet", + "11012": "pressure:LCA:J_heart_inlet", + "11013": "pressure:LCA:J_heart_inlet", + "11014": "pressure:LCA:J_heart_inlet", + "11015": "pressure:LCA:J_heart_inlet", + "11016": "pressure:LCA:J_heart_inlet", + "11017": "pressure:LCA:J_heart_inlet", + "11018": "pressure:LCA:J_heart_inlet", + "11019": "pressure:LCA:J_heart_inlet", + "11020": "pressure:LCA:J_heart_inlet", + "11021": "pressure:LCA:J_heart_inlet", + "11022": "pressure:LCA:J_heart_inlet", + "11023": "pressure:LCA:J_heart_inlet", + "11024": "pressure:LCA:J_heart_inlet", + "11025": "pressure:LCA:J_heart_inlet", + "11026": "pressure:LCA:J_heart_inlet", + "11027": "pressure:LCA:J_heart_inlet", + "11028": "pressure:LCA:J_heart_inlet", + "11029": "pressure:LCA:J_heart_inlet", + "11030": "pressure:LCA:J_heart_inlet", + "11031": "pressure:LCA:J_heart_inlet", + "11032": "pressure:LCA:J_heart_inlet", + "11033": "pressure:LCA:J_heart_inlet", + "11034": "pressure:LCA:J_heart_inlet", + "11035": "pressure:LCA:J_heart_inlet", + "11036": "pressure:LCA:J_heart_inlet", + "11037": "pressure:LCA:J_heart_inlet", + "11038": "pressure:LCA:J_heart_inlet", + "11039": "pressure:LCA:J_heart_inlet", + "11040": "pressure:LCA:J_heart_inlet", + "11041": "pressure:LCA:J_heart_inlet", + "11042": "pressure:LCA:J_heart_inlet", + "11043": "pressure:LCA:J_heart_inlet", + "11044": "pressure:LCA:J_heart_inlet", + "11045": "pressure:LCA:J_heart_inlet", + "11046": "pressure:LCA:J_heart_inlet", + "11047": "pressure:LCA:J_heart_inlet", + "11048": "pressure:LCA:J_heart_inlet", + "11049": "pressure:LCA:J_heart_inlet", + "11050": "pressure:LCA:J_heart_inlet", + "11051": "pressure:LCA:J_heart_inlet", + "11052": "pressure:LCA:J_heart_inlet", + "11053": "pressure:LCA:J_heart_inlet", + "11054": "pressure:LCA:J_heart_inlet", + "11055": "pressure:LCA:J_heart_inlet", + "11056": "pressure:LCA:J_heart_inlet", + "11057": "pressure:LCA:J_heart_inlet", + "11058": "pressure:LCA:J_heart_inlet", + "11059": "pressure:LCA:J_heart_inlet", + "11060": "pressure:LCA:J_heart_inlet", + "11061": "pressure:LCA:J_heart_inlet", + "11062": "pressure:LCA:J_heart_inlet", + "11063": "pressure:LCA:J_heart_inlet", + "11064": "pressure:LCA:J_heart_inlet", + "11065": "pressure:LCA:J_heart_inlet", + "11066": "pressure:LCA:J_heart_inlet", + "11067": "pressure:LCA:J_heart_inlet", + "11068": "pressure:LCA:J_heart_inlet", + "11069": "pressure:LCA:J_heart_inlet", + "11070": "pressure:LCA:J_heart_inlet", + "11071": "pressure:LCA:J_heart_inlet", + "11072": "pressure:LCA:J_heart_inlet", + "11073": "pressure:LCA:J_heart_inlet", + "11074": "pressure:LCA:J_heart_inlet", + "11075": "pressure:LCA:J_heart_inlet", + "11076": "pressure:LCA:J_heart_inlet", + "11077": "pressure:LCA:J_heart_inlet", + "11078": "pressure:LCA:J_heart_inlet", + "11079": "pressure:LCA:J_heart_inlet", + "11080": "pressure:LCA:J_heart_inlet", + "11081": "pressure:LCA:J_heart_inlet", + "11082": "pressure:LCA:J_heart_inlet", + "11083": "pressure:LCA:J_heart_inlet", + "11084": "pressure:LCA:J_heart_inlet", + "11085": "pressure:LCA:J_heart_inlet", + "11086": "pressure:LCA:J_heart_inlet", + "11087": "pressure:LCA:J_heart_inlet", + "11088": "pressure:LCA:J_heart_inlet", + "11089": "pressure:LCA:J_heart_inlet", + "11090": "pressure:LCA:J_heart_inlet", + "11091": "pressure:LCA:J_heart_inlet", + "11092": "pressure:LCA:J_heart_inlet", + "11093": "pressure:LCA:J_heart_inlet", + "11094": "pressure:LCA:J_heart_inlet", + "11095": "pressure:LCA:J_heart_inlet", + "11096": "pressure:LCA:J_heart_inlet", + "11097": "pressure:LCA:J_heart_inlet", + "11098": "pressure:LCA:J_heart_inlet", + "11099": "pressure:LCA:J_heart_inlet", + "11100": "pressure:LCA:J_heart_inlet", + "11101": "pressure:LCA:J_heart_inlet", + "11102": "pressure:LCA:J_heart_inlet", + "11103": "pressure:LCA:J_heart_inlet", + "11104": "pressure:LCA:J_heart_inlet", + "11105": "pressure:LCA:J_heart_inlet", + "11106": "pressure:LCA:J_heart_inlet", + "11107": "pressure:LCA:J_heart_inlet", + "11108": "pressure:LCA:J_heart_inlet", + "11109": "pressure:LCA:J_heart_inlet", + "11110": "pressure:LCA:J_heart_inlet", + "11111": "pressure:LCA:J_heart_inlet", + "11112": "pressure:LCA:J_heart_inlet", + "11113": "pressure:LCA:J_heart_inlet", + "11114": "pressure:LCA:J_heart_inlet", + "11115": "pressure:LCA:J_heart_inlet", + "11116": "pressure:LCA:J_heart_inlet", + "11117": "pressure:LCA:J_heart_inlet", + "11118": "pressure:LCA:J_heart_inlet", + "11119": "pressure:LCA:J_heart_inlet", + "11120": "pressure:LCA:J_heart_inlet", + "11121": "pressure:LCA:J_heart_inlet", + "11122": "pressure:LCA:J_heart_inlet", + "11123": "pressure:LCA:J_heart_inlet", + "11124": "pressure:LCA:J_heart_inlet", + "11125": "pressure:LCA:J_heart_inlet", + "11126": "pressure:LCA:J_heart_inlet", + "11127": "pressure:LCA:J_heart_inlet", + "11128": "pressure:LCA:J_heart_inlet", + "11129": "pressure:LCA:J_heart_inlet", + "11130": "pressure:LCA:J_heart_inlet", + "11131": "pressure:LCA:J_heart_inlet", + "11132": "pressure:LCA:J_heart_inlet", + "11133": "pressure:LCA:J_heart_inlet", + "11134": "pressure:LCA:J_heart_inlet", + "11135": "pressure:LCA:J_heart_inlet", + "11136": "pressure:LCA:J_heart_inlet", + "11137": "pressure:LCA:J_heart_inlet", + "11138": "pressure:LCA:J_heart_inlet", + "11139": "pressure:LCA:J_heart_inlet", + "11140": "pressure:LCA:J_heart_inlet", + "11141": "pressure:LCA:J_heart_inlet", + "11142": "pressure:LCA:J_heart_inlet", + "11143": "pressure:LCA:J_heart_inlet", + "11144": "pressure:LCA:J_heart_inlet", + "11145": "pressure:LCA:J_heart_inlet", + "11146": "pressure:LCA:J_heart_inlet", + "11147": "pressure:LCA:J_heart_inlet", + "11148": "pressure:LCA:J_heart_inlet", + "11149": "pressure:LCA:J_heart_inlet", + "11150": "pressure:LCA:J_heart_inlet", + "11151": "pressure:LCA:J_heart_inlet", + "11152": "pressure:LCA:J_heart_inlet", + "11153": "pressure:LCA:J_heart_inlet", + "11154": "pressure:LCA:J_heart_inlet", + "11155": "pressure:LCA:J_heart_inlet", + "11156": "pressure:LCA:J_heart_inlet", + "11157": "pressure:LCA:J_heart_inlet", + "11158": "pressure:LCA:J_heart_inlet", + "11159": "pressure:LCA:J_heart_inlet", + "11160": "pressure:LCA:J_heart_inlet", + "11161": "pressure:LCA:J_heart_inlet", + "11162": "pressure:LCA:J_heart_inlet", + "11163": "pressure:LCA:J_heart_inlet", + "11164": "pressure:LCA:J_heart_inlet", + "11165": "pressure:LCA:J_heart_inlet", + "11166": "pressure:LCA:J_heart_inlet", + "11167": "pressure:LCA:J_heart_inlet", + "11168": "pressure:LCA:J_heart_inlet", + "11169": "pressure:LCA:J_heart_inlet", + "11170": "pressure:LCA:J_heart_inlet", + "11171": "pressure:LCA:J_heart_inlet", + "11172": "pressure:LCA:J_heart_inlet", + "11173": "pressure:LCA:J_heart_inlet", + "11174": "pressure:LCA:J_heart_inlet", + "11175": "pressure:LCA:J_heart_inlet", + "11176": "pressure:LCA:J_heart_inlet", + "11177": "pressure:LCA:J_heart_inlet", + "11178": "pressure:LCA:J_heart_inlet", + "11179": "pressure:LCA:J_heart_inlet", + "11180": "pressure:LCA:J_heart_inlet", + "11181": "pressure:LCA:J_heart_inlet", + "11182": "pressure:LCA:J_heart_inlet", + "11183": "pressure:LCA:J_heart_inlet", + "11184": "pressure:LCA:J_heart_inlet", + "11185": "pressure:LCA:J_heart_inlet", + "11186": "pressure:LCA:J_heart_inlet", + "11187": "pressure:LCA:J_heart_inlet", + "11188": "pressure:LCA:J_heart_inlet", + "11189": "pressure:LCA:J_heart_inlet", + "11190": "pressure:LCA:J_heart_inlet", + "11191": "pressure:LCA:J_heart_inlet", + "11192": "pressure:LCA:J_heart_inlet", + "11193": "pressure:LCA:J_heart_inlet", + "11194": "pressure:LCA:J_heart_inlet", + "11195": "pressure:LCA:J_heart_inlet", + "11196": "pressure:LCA:J_heart_inlet", + "11197": "pressure:LCA:J_heart_inlet", + "11198": "pressure:LCA:J_heart_inlet", + "11199": "pressure:LCA:J_heart_inlet", + "11200": "pressure:LCA:J_heart_inlet", + "11201": "pressure:LCA:J_heart_inlet", + "11202": "pressure:LCA:J_heart_inlet", + "11203": "pressure:LCA:J_heart_inlet", + "11204": "pressure:LCA:J_heart_inlet", + "11205": "pressure:LCA:J_heart_inlet", + "11206": "pressure:LCA:J_heart_inlet", + "11207": "pressure:LCA:J_heart_inlet", + "11208": "pressure:LCA:J_heart_inlet", + "11209": "pressure:LCA:J_heart_inlet", + "11210": "pressure:LCA:J_heart_inlet", + "11211": "pressure:LCA:J_heart_inlet", + "11212": "pressure:LCA:J_heart_inlet", + "11213": "pressure:LCA:J_heart_inlet", + "11214": "pressure:LCA:J_heart_inlet", + "11215": "pressure:LCA:J_heart_inlet", + "11216": "pressure:LCA:J_heart_inlet", + "11217": "pressure:LCA:J_heart_inlet", + "11218": "pressure:LCA:J_heart_inlet", + "11219": "pressure:LCA:J_heart_inlet", + "11220": "pressure:LCA:J_heart_inlet", + "11221": "pressure:LCA:J_heart_inlet", + "11222": "pressure:LCA:J_heart_inlet", + "11223": "pressure:LCA:J_heart_inlet", + "11224": "pressure:LCA:J_heart_inlet", + "11225": "pressure:LCA:J_heart_inlet", + "11226": "pressure:LCA:J_heart_inlet", + "11227": "pressure:LCA:J_heart_inlet", + "11228": "pressure:LCA:J_heart_inlet", + "11229": "pressure:LCA:J_heart_inlet", + "11230": "pressure:LCA:J_heart_inlet", + "11231": "pressure:LCA:J_heart_inlet", + "11232": "pressure:LCA:J_heart_inlet", + "11233": "pressure:LCA:J_heart_inlet", + "11234": "pressure:LCA:J_heart_inlet", + "11235": "pressure:LCA:J_heart_inlet", + "11236": "pressure:LCA:J_heart_inlet", + "11237": "pressure:LCA:J_heart_inlet", + "11238": "pressure:LCA:J_heart_inlet", + "11239": "pressure:LCA:J_heart_inlet", + "11240": "pressure:LCA:J_heart_inlet", + "11241": "pressure:LCA:J_heart_inlet", + "11242": "pressure:LCA:J_heart_inlet", + "11243": "pressure:LCA:J_heart_inlet", + "11244": "pressure:LCA:J_heart_inlet", + "11245": "pressure:LCA:J_heart_inlet", + "11246": "pressure:LCA:J_heart_inlet", + "11247": "pressure:LCA:J_heart_inlet", + "11248": "pressure:LCA:J_heart_inlet", + "11249": "pressure:LCA:J_heart_inlet", + "11250": "pressure:LCA:J_heart_inlet", + "11251": "pressure:LCA:J_heart_inlet", + "11252": "pressure:LCA:J_heart_inlet", + "11253": "pressure:LCA:J_heart_inlet", + "11254": "pressure:LCA:J_heart_inlet", + "11255": "pressure:LCA:J_heart_inlet", + "11256": "pressure:LCA:J_heart_inlet", + "11257": "pressure:LCA:J_heart_inlet", + "11258": "pressure:LCA:J_heart_inlet", + "11259": "pressure:LCA:J_heart_inlet", + "11260": "pressure:LCA:J_heart_inlet", + "11261": "pressure:LCA:J_heart_inlet", + "11262": "pressure:LCA:J_heart_inlet", + "11263": "pressure:LCA:J_heart_inlet", + "11264": "pressure:LCA:J_heart_inlet", + "11265": "pressure:LCA:J_heart_inlet", + "11266": "pressure:LCA:J_heart_inlet", + "11267": "pressure:LCA:J_heart_inlet", + "11268": "pressure:LCA:J_heart_inlet", + "11269": "pressure:LCA:J_heart_inlet", + "11270": "pressure:LCA:J_heart_inlet", + "11271": "pressure:LCA:J_heart_inlet", + "11272": "pressure:LCA:J_heart_inlet", + "11273": "pressure:LCA:J_heart_inlet", + "11274": "pressure:LCA:J_heart_inlet", + "11275": "pressure:LCA:J_heart_inlet", + "11276": "pressure:LCA:J_heart_inlet", + "11277": "pressure:LCA:J_heart_inlet", + "11278": "pressure:LCA:J_heart_inlet", + "11279": "pressure:LCA:J_heart_inlet", + "11280": "pressure:LCA:J_heart_inlet", + "11281": "pressure:LCA:J_heart_inlet", + "11282": "pressure:LCA:J_heart_inlet", + "11283": "pressure:LCA:J_heart_inlet", + "11284": "pressure:LCA:J_heart_inlet", + "11285": "pressure:LCA:J_heart_inlet", + "11286": "pressure:LCA:J_heart_inlet", + "11287": "pressure:LCA:J_heart_inlet", + "11288": "pressure:LCA:J_heart_inlet", + "11289": "pressure:LCA:J_heart_inlet", + "11290": "pressure:LCA:J_heart_inlet", + "11291": "pressure:LCA:J_heart_inlet", + "11292": "pressure:LCA:J_heart_inlet", + "11293": "pressure:LCA:J_heart_inlet", + "11294": "pressure:LCA:J_heart_inlet", + "11295": "pressure:LCA:J_heart_inlet", + "11296": "pressure:LCA:J_heart_inlet", + "11297": "pressure:LCA:J_heart_inlet", + "11298": "pressure:LCA:J_heart_inlet", + "11299": "pressure:LCA:J_heart_inlet", + "11300": "pressure:LCA:J_heart_inlet", + "11301": "pressure:LCA:J_heart_inlet", + "11302": "pressure:LCA:J_heart_inlet", + "11303": "pressure:LCA:J_heart_inlet", + "11304": "pressure:LCA:J_heart_inlet", + "11305": "pressure:LCA:J_heart_inlet", + "11306": "pressure:LCA:J_heart_inlet", + "11307": "pressure:LCA:J_heart_inlet", + "11308": "pressure:LCA:J_heart_inlet", + "11309": "pressure:LCA:J_heart_inlet", + "11310": "pressure:LCA:J_heart_inlet", + "11311": "pressure:LCA:J_heart_inlet", + "11312": "pressure:LCA:J_heart_inlet", + "11313": "pressure:LCA:J_heart_inlet", + "11314": "pressure:LCA:J_heart_inlet", + "11315": "pressure:LCA:J_heart_inlet", + "11316": "pressure:LCA:J_heart_inlet", + "11317": "pressure:LCA:J_heart_inlet", + "11318": "pressure:LCA:J_heart_inlet", + "11319": "pressure:LCA:J_heart_inlet", + "11320": "pressure:LCA:J_heart_inlet", + "11321": "pressure:LCA:J_heart_inlet", + "11322": "pressure:LCA:J_heart_inlet", + "11323": "pressure:LCA:J_heart_inlet", + "11324": "pressure:LCA:J_heart_inlet", + "11325": "pressure:LCA:J_heart_inlet", + "11326": "pressure:LCA:J_heart_inlet", + "11327": "pressure:LCA:J_heart_inlet", + "11328": "pressure:LCA:J_heart_inlet", + "11329": "pressure:LCA:J_heart_inlet", + "11330": "pressure:LCA:J_heart_inlet", + "11331": "pressure:LCA:J_heart_inlet", + "11332": "pressure:LCA:J_heart_inlet", + "11333": "pressure:LCA:J_heart_inlet", + "11334": "pressure:LCA:J_heart_inlet", + "11335": "pressure:LCA:J_heart_inlet", + "11336": "pressure:LCA:J_heart_inlet", + "11337": "pressure:LCA:J_heart_inlet", + "11338": "pressure:LCA:J_heart_inlet", + "11339": "pressure:LCA:J_heart_inlet", + "11340": "pressure:LCA:J_heart_inlet", + "11341": "pressure:LCA:J_heart_inlet", + "11342": "pressure:LCA:J_heart_inlet", + "11343": "pressure:LCA:J_heart_inlet", + "11344": "pressure:LCA:J_heart_inlet", + "11345": "pressure:LCA:J_heart_inlet", + "11346": "pressure:LCA:J_heart_inlet", + "11347": "pressure:LCA:J_heart_inlet", + "11348": "pressure:LCA:J_heart_inlet", + "11349": "pressure:LCA:J_heart_inlet", + "11350": "pressure:LCA:J_heart_inlet", + "11351": "pressure:LCA:J_heart_inlet", + "11352": "pressure:LCA:J_heart_inlet", + "11353": "pressure:LCA:J_heart_inlet", + "11354": "pressure:LCA:J_heart_inlet", + "11355": "pressure:LCA:J_heart_inlet", + "11356": "pressure:LCA:J_heart_inlet", + "11357": "pressure:LCA:J_heart_inlet", + "11358": "pressure:LCA:J_heart_inlet", + "11359": "pressure:LCA:J_heart_inlet", + "11360": "pressure:LCA:J_heart_inlet", + "11361": "pressure:LCA:J_heart_inlet", + "11362": "pressure:LCA:J_heart_inlet", + "11363": "pressure:LCA:J_heart_inlet", + "11364": "pressure:LCA:J_heart_inlet", + "11365": "pressure:LCA:J_heart_inlet", + "11366": "pressure:LCA:J_heart_inlet", + "11367": "pressure:LCA:J_heart_inlet", + "11368": "pressure:LCA:J_heart_inlet", + "11369": "pressure:LCA:J_heart_inlet", + "11370": "pressure:LCA:J_heart_inlet", + "11371": "pressure:LCA:J_heart_inlet", + "11372": "pressure:LCA:J_heart_inlet", + "11373": "pressure:LCA:J_heart_inlet", + "11374": "pressure:LCA:J_heart_inlet", + "11375": "pressure:LCA:J_heart_inlet", + "11376": "pressure:LCA:J_heart_inlet", + "11377": "pressure:LCA:J_heart_inlet", + "11378": "pressure:LCA:J_heart_inlet", + "11379": "pressure:LCA:J_heart_inlet", + "11380": "pressure:LCA:J_heart_inlet", + "11381": "pressure:LCA:J_heart_inlet", + "11382": "pressure:LCA:J_heart_inlet", + "11383": "pressure:LCA:J_heart_inlet", + "11384": "pressure:LCA:J_heart_inlet", + "11385": "pressure:LCA:J_heart_inlet", + "11386": "pressure:LCA:J_heart_inlet", + "11387": "pressure:LCA:J_heart_inlet", + "11388": "pressure:LCA:J_heart_inlet", + "11389": "pressure:LCA:J_heart_inlet", + "11390": "pressure:LCA:J_heart_inlet", + "11391": "pressure:LCA:J_heart_inlet", + "11392": "pressure:LCA:J_heart_inlet", + "11393": "pressure:LCA:J_heart_inlet", + "11394": "pressure:LCA:J_heart_inlet", + "11395": "pressure:LCA:J_heart_inlet", + "11396": "pressure:LCA:J_heart_inlet", + "11397": "pressure:LCA:J_heart_inlet", + "11398": "pressure:LCA:J_heart_inlet", + "11399": "pressure:LCA:J_heart_inlet", + "11400": "pressure:LCA:J_heart_inlet", + "11401": "pressure:LCA:J_heart_inlet", + "11402": "pressure:LCA:J_heart_inlet", + "11403": "pressure:LCA:J_heart_inlet", + "11404": "pressure:LCA:J_heart_inlet", + "11405": "pressure:LCA:J_heart_inlet", + "11406": "pressure:LCA:J_heart_inlet", + "11407": "pressure:LCA:J_heart_inlet", + "11408": "pressure:LCA:J_heart_inlet", + "11409": "pressure:LCA:J_heart_inlet", + "11410": "pressure:LCA:J_heart_inlet", + "11411": "pressure:LCA:J_heart_inlet", + "11412": "pressure:LCA:J_heart_inlet", + "11413": "pressure:LCA:J_heart_inlet", + "11414": "pressure:LCA:J_heart_inlet", + "11415": "pressure:LCA:J_heart_inlet", + "11416": "pressure:LCA:J_heart_inlet", + "11417": "pressure:LCA:J_heart_inlet", + "11418": "pressure:LCA:J_heart_inlet", + "11419": "pressure:LCA:J_heart_inlet", + "11420": "pressure:LCA:J_heart_inlet", + "11421": "pressure:LCA:J_heart_inlet", + "11422": "pressure:LCA:J_heart_inlet", + "11423": "pressure:LCA:J_heart_inlet", + "11424": "pressure:LCA:J_heart_inlet", + "11425": "pressure:LCA:J_heart_inlet", + "11426": "pressure:LCA:J_heart_inlet", + "11427": "pressure:LCA:J_heart_inlet", + "11428": "pressure:LCA:J_heart_inlet", + "11429": "pressure:LCA:J_heart_inlet", + "11430": "pressure:LCA:J_heart_inlet", + "11431": "pressure:LCA:J_heart_inlet", + "11432": "pressure:LCA:J_heart_inlet", + "11433": "pressure:LCA:J_heart_inlet", + "11434": "pressure:LCA:J_heart_inlet", + "11435": "pressure:LCA:J_heart_inlet", + "11436": "pressure:LCA:J_heart_inlet", + "11437": "pressure:LCA:J_heart_inlet", + "11438": "pressure:LCA:J_heart_inlet", + "11439": "pressure:LCA:J_heart_inlet", + "11440": "pressure:LCA:J_heart_inlet", + "11441": "pressure:LCA:J_heart_inlet", + "11442": "pressure:LCA:J_heart_inlet", + "11443": "pressure:LCA:J_heart_inlet", + "11444": "pressure:LCA:J_heart_inlet", + "11445": "pressure:LCA:J_heart_inlet", + "11446": "pressure:LCA:J_heart_inlet", + "11447": "pressure:LCA:J_heart_inlet", + "11448": "pressure:LCA:J_heart_inlet", + "11449": "pressure:LCA:J_heart_inlet", + "11450": "pressure:LCA:J_heart_inlet", + "11451": "pressure:LCA:J_heart_inlet", + "11452": "pressure:LCA:J_heart_inlet", + "11453": "pressure:LCA:J_heart_inlet", + "11454": "pressure:LCA:J_heart_inlet", + "11455": "pressure:LCA:J_heart_inlet", + "11456": "pressure:LCA:J_heart_inlet", + "11457": "pressure:LCA:J_heart_inlet", + "11458": "pressure:LCA:J_heart_inlet", + "11459": "pressure:LCA:J_heart_inlet", + "11460": "pressure:LCA:J_heart_inlet", + "11461": "pressure:LCA:J_heart_inlet", + "11462": "pressure:LCA:J_heart_inlet", + "11463": "pressure:LCA:J_heart_inlet", + "11464": "pressure:LCA:J_heart_inlet", + "11465": "pressure:LCA:J_heart_inlet", + "11466": "pressure:LCA:J_heart_inlet", + "11467": "pressure:LCA:J_heart_inlet", + "11468": "pressure:LCA:J_heart_inlet", + "11469": "pressure:LCA:J_heart_inlet", + "11470": "pressure:LCA:J_heart_inlet", + "11471": "pressure:LCA:J_heart_inlet", + "11472": "pressure:LCA:J_heart_inlet", + "11473": "pressure:LCA:J_heart_inlet", + "11474": "pressure:LCA:J_heart_inlet", + "11475": "pressure:LCA:J_heart_inlet", + "11476": "pressure:LCA:J_heart_inlet", + "11477": "pressure:LCA:J_heart_inlet", + "11478": "pressure:LCA:J_heart_inlet", + "11479": "pressure:LCA:J_heart_inlet", + "11480": "pressure:LCA:J_heart_inlet", + "11481": "pressure:LCA:J_heart_inlet", + "11482": "pressure:LCA:J_heart_inlet", + "11483": "pressure:LCA:J_heart_inlet", + "11484": "pressure:LCA:J_heart_inlet", + "11485": "pressure:LCA:J_heart_inlet", + "11486": "pressure:LCA:J_heart_inlet", + "11487": "pressure:LCA:J_heart_inlet", + "11488": "pressure:LCA:J_heart_inlet", + "11489": "pressure:LCA:J_heart_inlet", + "11490": "pressure:LCA:J_heart_inlet", + "11491": "pressure:LCA:J_heart_inlet", + "11492": "pressure:LCA:J_heart_inlet", + "11493": "pressure:LCA:J_heart_inlet", + "11494": "pressure:LCA:J_heart_inlet", + "11495": "pressure:LCA:J_heart_inlet", + "11496": "pressure:LCA:J_heart_inlet", + "11497": "pressure:LCA:J_heart_inlet", + "11498": "pressure:LCA:J_heart_inlet", + "11499": "pressure:LCA:J_heart_inlet", + "11500": "pressure:LCA:J_heart_inlet", + "11501": "pressure:LCA:J_heart_inlet", + "11502": "pressure:LCA:J_heart_inlet", + "11503": "pressure:LCA:J_heart_inlet", + "11504": "pressure:LCA:J_heart_inlet", + "11505": "pressure:LCA:J_heart_inlet", + "11506": "pressure:LCA:J_heart_inlet", + "11507": "pressure:LCA:J_heart_inlet", + "11508": "pressure:LCA:J_heart_inlet", + "11509": "pressure:LCA:J_heart_inlet", + "11510": "pressure:LCA:J_heart_inlet", + "11511": "pressure:LCA:J_heart_inlet", + "11512": "pressure:LCA:J_heart_inlet", + "11513": "pressure:LCA:J_heart_inlet", + "11514": "pressure:LCA:J_heart_inlet", + "11515": "pressure:LCA:J_heart_inlet", + "11516": "pressure:LCA:J_heart_inlet", + "11517": "pressure:LCA:J_heart_inlet", + "11518": "pressure:LCA:J_heart_inlet", + "11519": "pressure:LCA:J_heart_inlet", + "11520": "pressure:LCA:J_heart_inlet", + "11521": "pressure:LCA:J_heart_inlet", + "11522": "pressure:LCA:J_heart_inlet", + "11523": "pressure:LCA:J_heart_inlet", + "11524": "pressure:LCA:J_heart_inlet", + "11525": "pressure:LCA:J_heart_inlet", + "11526": "pressure:LCA:J_heart_inlet", + "11527": "pressure:LCA:J_heart_inlet", + "11528": "pressure:LCA:J_heart_inlet", + "11529": "pressure:LCA:J_heart_inlet", + "11530": "pressure:LCA:J_heart_inlet", + "11531": "pressure:LCA:J_heart_inlet", + "11532": "pressure:LCA:J_heart_inlet", + "11533": "pressure:LCA:J_heart_inlet", + "11534": "pressure:LCA:J_heart_inlet", + "11535": "pressure:LCA:J_heart_inlet", + "11536": "pressure:LCA:J_heart_inlet", + "11537": "pressure:LCA:J_heart_inlet", + "11538": "pressure:LCA:J_heart_inlet", + "11539": "pressure:LCA:J_heart_inlet", + "11540": "pressure:LCA:J_heart_inlet", + "11541": "pressure:LCA:J_heart_inlet", + "11542": "pressure:LCA:J_heart_inlet", + "11543": "pressure:LCA:J_heart_inlet", + "11544": "pressure:LCA:J_heart_inlet", + "11545": "pressure:LCA:J_heart_inlet", + "11546": "pressure:LCA:J_heart_inlet", + "11547": "pressure:LCA:J_heart_inlet", + "11548": "pressure:LCA:J_heart_inlet", + "11549": "pressure:LCA:J_heart_inlet", + "11550": "pressure:LCA:J_heart_inlet", + "11551": "pressure:LCA:J_heart_inlet", + "11552": "pressure:LCA:J_heart_inlet", + "11553": "pressure:LCA:J_heart_inlet", + "11554": "pressure:LCA:J_heart_inlet", + "11555": "pressure:LCA:J_heart_inlet", + "11556": "pressure:LCA:J_heart_inlet", + "11557": "pressure:LCA:J_heart_inlet", + "11558": "pressure:LCA:J_heart_inlet", + "11559": "pressure:LCA:J_heart_inlet", + "11560": "pressure:LCA:J_heart_inlet", + "11561": "pressure:LCA:J_heart_inlet", + "11562": "pressure:LCA:J_heart_inlet", + "11563": "pressure:LCA:J_heart_inlet", + "11564": "pressure:LCA:J_heart_inlet", + "11565": "pressure:LCA:J_heart_inlet", + "11566": "pressure:LCA:J_heart_inlet", + "11567": "pressure:LCA:J_heart_inlet", + "11568": "pressure:LCA:J_heart_inlet", + "11569": "pressure:LCA:J_heart_inlet", + "11570": "pressure:LCA:J_heart_inlet", + "11571": "pressure:LCA:J_heart_inlet", + "11572": "pressure:LCA:J_heart_inlet", + "11573": "pressure:LCA:J_heart_inlet", + "11574": "pressure:LCA:J_heart_inlet", + "11575": "pressure:LCA:J_heart_inlet", + "11576": "pressure:LCA:J_heart_inlet", + "11577": "pressure:LCA:J_heart_inlet", + "11578": "pressure:LCA:J_heart_inlet", + "11579": "pressure:LCA:J_heart_inlet", + "11580": "pressure:LCA:J_heart_inlet", + "11581": "pressure:LCA:J_heart_inlet", + "11582": "pressure:LCA:J_heart_inlet", + "11583": "pressure:LCA:J_heart_inlet", + "11584": "pressure:LCA:J_heart_inlet", + "11585": "pressure:LCA:J_heart_inlet", + "11586": "pressure:LCA:J_heart_inlet", + "11587": "pressure:LCA:J_heart_inlet", + "11588": "pressure:LCA:J_heart_inlet", + "11589": "pressure:LCA:J_heart_inlet", + "11590": "pressure:LCA:J_heart_inlet", + "11591": "pressure:LCA:J_heart_inlet", + "11592": "pressure:LCA:J_heart_inlet", + "11593": "pressure:LCA:J_heart_inlet", + "11594": "pressure:LCA:J_heart_inlet", + "11595": "pressure:LCA:J_heart_inlet", + "11596": "pressure:LCA:J_heart_inlet", + "11597": "pressure:LCA:J_heart_inlet", + "11598": "pressure:LCA:J_heart_inlet", + "11599": "pressure:LCA:J_heart_inlet", + "11600": "pressure:LCA:J_heart_inlet", + "11601": "pressure:LCA:J_heart_inlet", + "11602": "pressure:LCA:J_heart_inlet", + "11603": "pressure:LCA:J_heart_inlet", + "11604": "pressure:LCA:J_heart_inlet", + "11605": "pressure:LCA:J_heart_inlet", + "11606": "pressure:LCA:J_heart_inlet", + "11607": "pressure:LCA:J_heart_inlet", + "11608": "pressure:LCA:J_heart_inlet", + "11609": "pressure:LCA:J_heart_inlet", + "11610": "pressure:LCA:J_heart_inlet", + "11611": "pressure:LCA:J_heart_inlet", + "11612": "pressure:LCA:J_heart_inlet", + "11613": "pressure:LCA:J_heart_inlet", + "11614": "pressure:LCA:J_heart_inlet", + "11615": "pressure:LCA:J_heart_inlet", + "11616": "pressure:LCA:J_heart_inlet", + "11617": "pressure:LCA:J_heart_inlet", + "11618": "pressure:LCA:J_heart_inlet", + "11619": "pressure:LCA:J_heart_inlet", + "11620": "pressure:LCA:J_heart_inlet", + "11621": "pressure:LCA:J_heart_inlet", + "11622": "pressure:LCA:J_heart_inlet", + "11623": "pressure:LCA:J_heart_inlet", + "11624": "pressure:LCA:J_heart_inlet", + "11625": "pressure:LCA:J_heart_inlet", + "11626": "pressure:LCA:J_heart_inlet", + "11627": "pressure:LCA:J_heart_inlet", + "11628": "pressure:LCA:J_heart_inlet", + "11629": "pressure:LCA:J_heart_inlet", + "11630": "pressure:LCA:J_heart_inlet", + "11631": "pressure:LCA:J_heart_inlet", + "11632": "pressure:LCA:J_heart_inlet", + "11633": "pressure:LCA:J_heart_inlet", + "11634": "pressure:LCA:J_heart_inlet", + "11635": "pressure:LCA:J_heart_inlet", + "11636": "pressure:LCA:J_heart_inlet", + "11637": "pressure:LCA:J_heart_inlet", + "11638": "pressure:LCA:J_heart_inlet", + "11639": "pressure:LCA:J_heart_inlet", + "11640": "pressure:LCA:J_heart_inlet", + "11641": "pressure:LCA:J_heart_inlet", + "11642": "pressure:LCA:J_heart_inlet", + "11643": "pressure:LCA:J_heart_inlet", + "11644": "pressure:LCA:J_heart_inlet", + "11645": "pressure:LCA:J_heart_inlet", + "11646": "pressure:LCA:J_heart_inlet", + "11647": "pressure:LCA:J_heart_inlet", + "11648": "pressure:LCA:J_heart_inlet", + "11649": "pressure:LCA:J_heart_inlet", + "11650": "pressure:LCA:J_heart_inlet", + "11651": "pressure:LCA:J_heart_inlet", + "11652": "pressure:LCA:J_heart_inlet", + "11653": "pressure:LCA:J_heart_inlet", + "11654": "pressure:LCA:J_heart_inlet", + "11655": "pressure:LCA:J_heart_inlet", + "11656": "pressure:LCA:J_heart_inlet", + "11657": "pressure:LCA:J_heart_inlet", + "11658": "pressure:LCA:J_heart_inlet", + "11659": "pressure:LCA:J_heart_inlet", + "11660": "pressure:LCA:J_heart_inlet", + "11661": "pressure:LCA:J_heart_inlet", + "11662": "pressure:LCA:J_heart_inlet", + "11663": "pressure:LCA:J_heart_inlet", + "11664": "pressure:LCA:J_heart_inlet", + "11665": "pressure:LCA:J_heart_inlet", + "11666": "pressure:LCA:J_heart_inlet", + "11667": "pressure:LCA:J_heart_inlet", + "11668": "pressure:LCA:J_heart_inlet", + "11669": "pressure:LCA:J_heart_inlet", + "11670": "pressure:LCA:J_heart_inlet", + "11671": "pressure:LCA:J_heart_inlet", + "11672": "pressure:LCA:J_heart_inlet", + "11673": "pressure:LCA:J_heart_inlet", + "11674": "pressure:LCA:J_heart_inlet", + "11675": "pressure:LCA:J_heart_inlet", + "11676": "pressure:LCA:J_heart_inlet", + "11677": "pressure:LCA:J_heart_inlet", + "11678": "pressure:LCA:J_heart_inlet", + "11679": "pressure:LCA:J_heart_inlet", + "11680": "pressure:LCA:J_heart_inlet", + "11681": "pressure:LCA:J_heart_inlet", + "11682": "pressure:LCA:J_heart_inlet", + "11683": "pressure:LCA:J_heart_inlet", + "11684": "pressure:LCA:J_heart_inlet", + "11685": "pressure:LCA:J_heart_inlet", + "11686": "pressure:LCA:J_heart_inlet", + "11687": "pressure:LCA:J_heart_inlet", + "11688": "pressure:LCA:J_heart_inlet", + "11689": "pressure:LCA:J_heart_inlet", + "11690": "pressure:LCA:J_heart_inlet", + "11691": "pressure:LCA:J_heart_inlet", + "11692": "pressure:LCA:J_heart_inlet", + "11693": "pressure:LCA:J_heart_inlet", + "11694": "pressure:LCA:J_heart_inlet", + "11695": "pressure:LCA:J_heart_inlet", + "11696": "pressure:LCA:J_heart_inlet", + "11697": "pressure:LCA:J_heart_inlet", + "11698": "pressure:LCA:J_heart_inlet", + "11699": "pressure:LCA:J_heart_inlet", + "11700": "pressure:LCA:J_heart_inlet", + "11701": "pressure:LCA:J_heart_inlet", + "11702": "pressure:LCA:J_heart_inlet", + "11703": "pressure:LCA:J_heart_inlet", + "11704": "pressure:LCA:J_heart_inlet", + "11705": "pressure:LCA:J_heart_inlet", + "11706": "pressure:LCA:J_heart_inlet", + "11707": "pressure:LCA:J_heart_inlet", + "11708": "pressure:LCA:J_heart_inlet", + "11709": "pressure:LCA:J_heart_inlet", + "11710": "pressure:LCA:J_heart_inlet", + "11711": "pressure:LCA:J_heart_inlet", + "11712": "pressure:LCA:J_heart_inlet", + "11713": "pressure:LCA:J_heart_inlet", + "11714": "pressure:LCA:J_heart_inlet", + "11715": "pressure:LCA:J_heart_inlet", + "11716": "pressure:LCA:J_heart_inlet", + "11717": "pressure:LCA:J_heart_inlet", + "11718": "pressure:LCA:J_heart_inlet", + "11719": "pressure:LCA:J_heart_inlet", + "11720": "pressure:LCA:J_heart_inlet", + "11721": "pressure:LCA:J_heart_inlet", + "11722": "pressure:LCA:J_heart_inlet", + "11723": "pressure:LCA:J_heart_inlet", + "11724": "pressure:LCA:J_heart_inlet", + "11725": "pressure:LCA:J_heart_inlet", + "11726": "pressure:LCA:J_heart_inlet", + "11727": "pressure:LCA:J_heart_inlet", + "11728": "pressure:LCA:J_heart_inlet", + "11729": "pressure:LCA:J_heart_inlet", + "11730": "pressure:LCA:J_heart_inlet", + "11731": "pressure:LCA:J_heart_inlet", + "11732": "pressure:LCA:J_heart_inlet", + "11733": "pressure:LCA:J_heart_inlet", + "11734": "pressure:LCA:J_heart_inlet", + "11735": "pressure:LCA:J_heart_inlet", + "11736": "pressure:LCA:J_heart_inlet", + "11737": "pressure:LCA:J_heart_inlet", + "11738": "pressure:LCA:J_heart_inlet", + "11739": "pressure:LCA:J_heart_inlet", + "11740": "pressure:LCA:J_heart_inlet", + "11741": "pressure:LCA:J_heart_inlet", + "11742": "pressure:LCA:J_heart_inlet", + "11743": "pressure:LCA:J_heart_inlet", + "11744": "pressure:LCA:J_heart_inlet", + "11745": "pressure:LCA:J_heart_inlet", + "11746": "pressure:LCA:J_heart_inlet", + "11747": "pressure:LCA:J_heart_inlet", + "11748": "pressure:LCA:J_heart_inlet", + "11749": "pressure:LCA:J_heart_inlet", + "11750": "pressure:LCA:J_heart_inlet", + "11751": "pressure:LCA:J_heart_inlet", + "11752": "pressure:LCA:J_heart_inlet", + "11753": "pressure:LCA:J_heart_inlet", + "11754": "pressure:LCA:J_heart_inlet", + "11755": "pressure:LCA:J_heart_inlet", + "11756": "pressure:LCA:J_heart_inlet", + "11757": "pressure:LCA:J_heart_inlet", + "11758": "pressure:LCA:J_heart_inlet", + "11759": "pressure:LCA:J_heart_inlet", + "11760": "pressure:LCA:J_heart_inlet", + "11761": "pressure:LCA:J_heart_inlet", + "11762": "pressure:LCA:J_heart_inlet", + "11763": "pressure:LCA:J_heart_inlet", + "11764": "pressure:LCA:J_heart_inlet", + "11765": "pressure:LCA:J_heart_inlet", + "11766": "pressure:LCA:J_heart_inlet", + "11767": "pressure:LCA:J_heart_inlet", + "11768": "pressure:LCA:J_heart_inlet", + "11769": "pressure:LCA:J_heart_inlet", + "11770": "pressure:LCA:J_heart_inlet", + "11771": "pressure:LCA:J_heart_inlet", + "11772": "pressure:LCA:J_heart_inlet", + "11773": "pressure:LCA:J_heart_inlet", + "11774": "pressure:LCA:J_heart_inlet", + "11775": "pressure:LCA:J_heart_inlet", + "11776": "pressure:LCA:J_heart_inlet", + "11777": "pressure:LCA:J_heart_inlet", + "11778": "pressure:LCA:J_heart_inlet", + "11779": "pressure:LCA:J_heart_inlet", + "11780": "pressure:LCA:J_heart_inlet", + "11781": "pressure:LCA:J_heart_inlet", + "11782": "pressure:LCA:J_heart_inlet", + "11783": "pressure:LCA:J_heart_inlet", + "11784": "pressure:LCA:J_heart_inlet", + "11785": "pressure:LCA:J_heart_inlet", + "11786": "pressure:LCA:J_heart_inlet", + "11787": "pressure:LCA:J_heart_inlet", + "11788": "pressure:LCA:J_heart_inlet", + "11789": "pressure:LCA:J_heart_inlet", + "11790": "pressure:LCA:J_heart_inlet", + "11791": "pressure:LCA:J_heart_inlet", + "11792": "pressure:LCA:J_heart_inlet", + "11793": "pressure:LCA:J_heart_inlet", + "11794": "pressure:LCA:J_heart_inlet", + "11795": "pressure:LCA:J_heart_inlet", + "11796": "pressure:LCA:J_heart_inlet", + "11797": "pressure:LCA:J_heart_inlet", + "11798": "pressure:LCA:J_heart_inlet", + "11799": "pressure:LCA:J_heart_inlet", + "11800": "pressure:LCA:J_heart_inlet", + "11801": "pressure:LCA:J_heart_inlet", + "11802": "pressure:LCA:J_heart_inlet", + "11803": "pressure:LCA:J_heart_inlet", + "11804": "pressure:LCA:J_heart_inlet", + "11805": "pressure:LCA:J_heart_inlet", + "11806": "pressure:LCA:J_heart_inlet", + "11807": "pressure:LCA:J_heart_inlet", + "11808": "pressure:LCA:J_heart_inlet", + "11809": "pressure:LCA:J_heart_inlet", + "11810": "pressure:LCA:J_heart_inlet", + "11811": "pressure:LCA:J_heart_inlet", + "11812": "pressure:LCA:J_heart_inlet", + "11813": "pressure:LCA:J_heart_inlet", + "11814": "pressure:LCA:J_heart_inlet", + "11815": "pressure:LCA:J_heart_inlet", + "11816": "pressure:LCA:J_heart_inlet", + "11817": "pressure:LCA:J_heart_inlet", + "11818": "pressure:LCA:J_heart_inlet", + "11819": "pressure:LCA:J_heart_inlet", + "11820": "pressure:LCA:J_heart_inlet", + "11821": "pressure:LCA:J_heart_inlet", + "11822": "pressure:LCA:J_heart_inlet", + "11823": "pressure:LCA:J_heart_inlet", + "11824": "pressure:LCA:J_heart_inlet", + "11825": "pressure:LCA:J_heart_inlet", + "11826": "pressure:LCA:J_heart_inlet", + "11827": "pressure:LCA:J_heart_inlet", + "11828": "pressure:LCA:J_heart_inlet", + "11829": "pressure:LCA:J_heart_inlet", + "11830": "pressure:LCA:J_heart_inlet", + "11831": "pressure:LCA:J_heart_inlet", + "11832": "pressure:LCA:J_heart_inlet", + "11833": "pressure:LCA:J_heart_inlet", + "11834": "pressure:LCA:J_heart_inlet", + "11835": "pressure:LCA:J_heart_inlet", + "11836": "pressure:LCA:J_heart_inlet", + "11837": "pressure:LCA:J_heart_inlet", + "11838": "pressure:LCA:J_heart_inlet", + "11839": "pressure:LCA:J_heart_inlet", + "11840": "pressure:LCA:J_heart_inlet", + "11841": "pressure:LCA:J_heart_inlet", + "11842": "pressure:LCA:J_heart_inlet", + "11843": "pressure:LCA:J_heart_inlet", + "11844": "pressure:LCA:J_heart_inlet", + "11845": "pressure:LCA:J_heart_inlet", + "11846": "pressure:LCA:J_heart_inlet", + "11847": "pressure:LCA:J_heart_inlet", + "11848": "pressure:LCA:J_heart_inlet", + "11849": "pressure:LCA:J_heart_inlet", + "11850": "pressure:LCA:J_heart_inlet", + "11851": "pressure:LCA:J_heart_inlet", + "11852": "pressure:LCA:J_heart_inlet", + "11853": "pressure:LCA:J_heart_inlet", + "11854": "pressure:LCA:J_heart_inlet", + "11855": "pressure:LCA:J_heart_inlet", + "11856": "pressure:LCA:J_heart_inlet", + "11857": "pressure:LCA:J_heart_inlet", + "11858": "pressure:LCA:J_heart_inlet", + "11859": "pressure:LCA:J_heart_inlet", + "11860": "pressure:LCA:J_heart_inlet", + "11861": "pressure:LCA:J_heart_inlet", + "11862": "pressure:LCA:J_heart_inlet", + "11863": "pressure:LCA:J_heart_inlet", + "11864": "pressure:LCA:J_heart_inlet", + "11865": "pressure:LCA:J_heart_inlet", + "11866": "pressure:LCA:J_heart_inlet", + "11867": "pressure:LCA:J_heart_inlet", + "11868": "pressure:LCA:J_heart_inlet", + "11869": "pressure:LCA:J_heart_inlet", + "11870": "pressure:LCA:J_heart_inlet", + "11871": "pressure:LCA:J_heart_inlet", + "11872": "pressure:LCA:J_heart_inlet", + "11873": "pressure:LCA:J_heart_inlet", + "11874": "pressure:LCA:J_heart_inlet", + "11875": "pressure:LCA:J_heart_inlet", + "11876": "pressure:LCA:J_heart_inlet", + "11877": "pressure:LCA:J_heart_inlet", + "11878": "pressure:LCA:J_heart_inlet", + "11879": "pressure:LCA:J_heart_inlet", + "11880": "pressure:LCA:J_heart_inlet", + "11881": "pressure:LCA:J_heart_inlet", + "11882": "pressure:LCA:J_heart_inlet", + "11883": "pressure:LCA:J_heart_inlet", + "11884": "pressure:LCA:J_heart_inlet", + "11885": "pressure:LCA:J_heart_inlet", + "11886": "pressure:LCA:J_heart_inlet", + "11887": "pressure:LCA:J_heart_inlet", + "11888": "pressure:LCA:J_heart_inlet", + "11889": "pressure:LCA:J_heart_inlet", + "11890": "pressure:LCA:J_heart_inlet", + "11891": "pressure:LCA:J_heart_inlet", + "11892": "pressure:LCA:J_heart_inlet", + "11893": "pressure:LCA:J_heart_inlet", + "11894": "pressure:LCA:J_heart_inlet", + "11895": "pressure:LCA:J_heart_inlet", + "11896": "pressure:LCA:J_heart_inlet", + "11897": "pressure:LCA:J_heart_inlet", + "11898": "pressure:LCA:J_heart_inlet", + "11899": "pressure:LCA:J_heart_inlet", + "11900": "pressure:LCA:J_heart_inlet", + "11901": "pressure:LCA:J_heart_inlet", + "11902": "pressure:LCA:J_heart_inlet", + "11903": "pressure:LCA:J_heart_inlet", + "11904": "pressure:LCA:J_heart_inlet", + "11905": "pressure:LCA:J_heart_inlet", + "11906": "pressure:LCA:J_heart_inlet", + "11907": "pressure:LCA:J_heart_inlet", + "11908": "pressure:LCA:J_heart_inlet", + "11909": "pressure:LCA:J_heart_inlet", + "11910": "pressure:LCA:J_heart_inlet", + "11911": "pressure:LCA:J_heart_inlet", + "11912": "pressure:LCA:J_heart_inlet", + "11913": "pressure:LCA:J_heart_inlet", + "11914": "pressure:LCA:J_heart_inlet", + "11915": "pressure:LCA:J_heart_inlet", + "11916": "pressure:LCA:J_heart_inlet", + "11917": "pressure:LCA:J_heart_inlet", + "11918": "pressure:LCA:J_heart_inlet", + "11919": "pressure:LCA:J_heart_inlet", + "11920": "pressure:LCA:J_heart_inlet", + "11921": "pressure:LCA:J_heart_inlet", + "11922": "pressure:LCA:J_heart_inlet", + "11923": "pressure:LCA:J_heart_inlet", + "11924": "pressure:LCA:J_heart_inlet", + "11925": "pressure:LCA:J_heart_inlet", + "11926": "pressure:LCA:J_heart_inlet", + "11927": "pressure:LCA:J_heart_inlet", + "11928": "pressure:LCA:J_heart_inlet", + "11929": "pressure:LCA:J_heart_inlet", + "11930": "pressure:LCA:J_heart_inlet", + "11931": "pressure:LCA:J_heart_inlet", + "11932": "pressure:LCA:J_heart_inlet", + "11933": "pressure:LCA:J_heart_inlet", + "11934": "pressure:LCA:J_heart_inlet", + "11935": "pressure:LCA:J_heart_inlet", + "11936": "pressure:LCA:J_heart_inlet", + "11937": "pressure:LCA:J_heart_inlet", + "11938": "pressure:LCA:J_heart_inlet", + "11939": "pressure:LCA:J_heart_inlet", + "11940": "pressure:LCA:J_heart_inlet", + "11941": "pressure:LCA:J_heart_inlet", + "11942": "pressure:LCA:J_heart_inlet", + "11943": "pressure:LCA:J_heart_inlet", + "11944": "pressure:LCA:J_heart_inlet", + "11945": "pressure:LCA:J_heart_inlet", + "11946": "pressure:LCA:J_heart_inlet", + "11947": "pressure:LCA:J_heart_inlet", + "11948": "pressure:LCA:J_heart_inlet", + "11949": "pressure:LCA:J_heart_inlet", + "11950": "pressure:LCA:J_heart_inlet", + "11951": "pressure:LCA:J_heart_inlet", + "11952": "pressure:LCA:J_heart_inlet", + "11953": "pressure:LCA:J_heart_inlet", + "11954": "pressure:LCA:J_heart_inlet", + "11955": "pressure:LCA:J_heart_inlet", + "11956": "pressure:LCA:J_heart_inlet", + "11957": "pressure:LCA:J_heart_inlet", + "11958": "pressure:LCA:J_heart_inlet", + "11959": "pressure:LCA:J_heart_inlet", + "11960": "pressure:LCA:J_heart_inlet", + "11961": "pressure:LCA:J_heart_inlet", + "11962": "pressure:LCA:J_heart_inlet", + "11963": "pressure:LCA:J_heart_inlet", + "11964": "pressure:LCA:J_heart_inlet", + "11965": "pressure:LCA:J_heart_inlet", + "11966": "pressure:LCA:J_heart_inlet", + "11967": "pressure:LCA:J_heart_inlet", + "11968": "pressure:LCA:J_heart_inlet", + "11969": "pressure:LCA:J_heart_inlet", + "11970": "pressure:LCA:J_heart_inlet", + "11971": "pressure:LCA:J_heart_inlet", + "11972": "pressure:LCA:J_heart_inlet", + "11973": "pressure:LCA:J_heart_inlet", + "11974": "pressure:LCA:J_heart_inlet", + "11975": "pressure:LCA:J_heart_inlet", + "11976": "pressure:LCA:J_heart_inlet", + "11977": "pressure:LCA:J_heart_inlet", + "11978": "pressure:LCA:J_heart_inlet", + "11979": "pressure:LCA:J_heart_inlet", + "11980": "pressure:LCA:J_heart_inlet", + "11981": "pressure:LCA:J_heart_inlet", + "11982": "pressure:LCA:J_heart_inlet", + "11983": "pressure:LCA:J_heart_inlet", + "11984": "pressure:LCA:J_heart_inlet", + "11985": "pressure:LCA:J_heart_inlet", + "11986": "pressure:LCA:J_heart_inlet", + "11987": "pressure:LCA:J_heart_inlet", + "11988": "pressure:LCA:J_heart_inlet", + "11989": "pressure:LCA:J_heart_inlet", + "11990": "pressure:LCA:J_heart_inlet", + "11991": "pressure:LCA:J_heart_inlet", + "11992": "pressure:LCA:J_heart_inlet", + "11993": "pressure:LCA:J_heart_inlet", + "11994": "pressure:LCA:J_heart_inlet", + "11995": "pressure:LCA:J_heart_inlet", + "11996": "pressure:LCA:J_heart_inlet", + "11997": "pressure:LCA:J_heart_inlet", + "11998": "pressure:LCA:J_heart_inlet", + "11999": "pressure:LCA:J_heart_inlet", + "12000": "flow:RCA:J_heart_inlet", + "12001": "flow:RCA:J_heart_inlet", + "12002": "flow:RCA:J_heart_inlet", + "12003": "flow:RCA:J_heart_inlet", + "12004": "flow:RCA:J_heart_inlet", + "12005": "flow:RCA:J_heart_inlet", + "12006": "flow:RCA:J_heart_inlet", + "12007": "flow:RCA:J_heart_inlet", + "12008": "flow:RCA:J_heart_inlet", + "12009": "flow:RCA:J_heart_inlet", + "12010": "flow:RCA:J_heart_inlet", + "12011": "flow:RCA:J_heart_inlet", + "12012": "flow:RCA:J_heart_inlet", + "12013": "flow:RCA:J_heart_inlet", + "12014": "flow:RCA:J_heart_inlet", + "12015": "flow:RCA:J_heart_inlet", + "12016": "flow:RCA:J_heart_inlet", + "12017": "flow:RCA:J_heart_inlet", + "12018": "flow:RCA:J_heart_inlet", + "12019": "flow:RCA:J_heart_inlet", + "12020": "flow:RCA:J_heart_inlet", + "12021": "flow:RCA:J_heart_inlet", + "12022": "flow:RCA:J_heart_inlet", + "12023": "flow:RCA:J_heart_inlet", + "12024": "flow:RCA:J_heart_inlet", + "12025": "flow:RCA:J_heart_inlet", + "12026": "flow:RCA:J_heart_inlet", + "12027": "flow:RCA:J_heart_inlet", + "12028": "flow:RCA:J_heart_inlet", + "12029": "flow:RCA:J_heart_inlet", + "12030": "flow:RCA:J_heart_inlet", + "12031": "flow:RCA:J_heart_inlet", + "12032": "flow:RCA:J_heart_inlet", + "12033": "flow:RCA:J_heart_inlet", + "12034": "flow:RCA:J_heart_inlet", + "12035": "flow:RCA:J_heart_inlet", + "12036": "flow:RCA:J_heart_inlet", + "12037": "flow:RCA:J_heart_inlet", + "12038": "flow:RCA:J_heart_inlet", + "12039": "flow:RCA:J_heart_inlet", + "12040": "flow:RCA:J_heart_inlet", + "12041": "flow:RCA:J_heart_inlet", + "12042": "flow:RCA:J_heart_inlet", + "12043": "flow:RCA:J_heart_inlet", + "12044": "flow:RCA:J_heart_inlet", + "12045": "flow:RCA:J_heart_inlet", + "12046": "flow:RCA:J_heart_inlet", + "12047": "flow:RCA:J_heart_inlet", + "12048": "flow:RCA:J_heart_inlet", + "12049": "flow:RCA:J_heart_inlet", + "12050": "flow:RCA:J_heart_inlet", + "12051": "flow:RCA:J_heart_inlet", + "12052": "flow:RCA:J_heart_inlet", + "12053": "flow:RCA:J_heart_inlet", + "12054": "flow:RCA:J_heart_inlet", + "12055": "flow:RCA:J_heart_inlet", + "12056": "flow:RCA:J_heart_inlet", + "12057": "flow:RCA:J_heart_inlet", + "12058": "flow:RCA:J_heart_inlet", + "12059": "flow:RCA:J_heart_inlet", + "12060": "flow:RCA:J_heart_inlet", + "12061": "flow:RCA:J_heart_inlet", + "12062": "flow:RCA:J_heart_inlet", + "12063": "flow:RCA:J_heart_inlet", + "12064": "flow:RCA:J_heart_inlet", + "12065": "flow:RCA:J_heart_inlet", + "12066": "flow:RCA:J_heart_inlet", + "12067": "flow:RCA:J_heart_inlet", + "12068": "flow:RCA:J_heart_inlet", + "12069": "flow:RCA:J_heart_inlet", + "12070": "flow:RCA:J_heart_inlet", + "12071": "flow:RCA:J_heart_inlet", + "12072": "flow:RCA:J_heart_inlet", + "12073": "flow:RCA:J_heart_inlet", + "12074": "flow:RCA:J_heart_inlet", + "12075": "flow:RCA:J_heart_inlet", + "12076": "flow:RCA:J_heart_inlet", + "12077": "flow:RCA:J_heart_inlet", + "12078": "flow:RCA:J_heart_inlet", + "12079": "flow:RCA:J_heart_inlet", + "12080": "flow:RCA:J_heart_inlet", + "12081": "flow:RCA:J_heart_inlet", + "12082": "flow:RCA:J_heart_inlet", + "12083": "flow:RCA:J_heart_inlet", + "12084": "flow:RCA:J_heart_inlet", + "12085": "flow:RCA:J_heart_inlet", + "12086": "flow:RCA:J_heart_inlet", + "12087": "flow:RCA:J_heart_inlet", + "12088": "flow:RCA:J_heart_inlet", + "12089": "flow:RCA:J_heart_inlet", + "12090": "flow:RCA:J_heart_inlet", + "12091": "flow:RCA:J_heart_inlet", + "12092": "flow:RCA:J_heart_inlet", + "12093": "flow:RCA:J_heart_inlet", + "12094": "flow:RCA:J_heart_inlet", + "12095": "flow:RCA:J_heart_inlet", + "12096": "flow:RCA:J_heart_inlet", + "12097": "flow:RCA:J_heart_inlet", + "12098": "flow:RCA:J_heart_inlet", + "12099": "flow:RCA:J_heart_inlet", + "12100": "flow:RCA:J_heart_inlet", + "12101": "flow:RCA:J_heart_inlet", + "12102": "flow:RCA:J_heart_inlet", + "12103": "flow:RCA:J_heart_inlet", + "12104": "flow:RCA:J_heart_inlet", + "12105": "flow:RCA:J_heart_inlet", + "12106": "flow:RCA:J_heart_inlet", + "12107": "flow:RCA:J_heart_inlet", + "12108": "flow:RCA:J_heart_inlet", + "12109": "flow:RCA:J_heart_inlet", + "12110": "flow:RCA:J_heart_inlet", + "12111": "flow:RCA:J_heart_inlet", + "12112": "flow:RCA:J_heart_inlet", + "12113": "flow:RCA:J_heart_inlet", + "12114": "flow:RCA:J_heart_inlet", + "12115": "flow:RCA:J_heart_inlet", + "12116": "flow:RCA:J_heart_inlet", + "12117": "flow:RCA:J_heart_inlet", + "12118": "flow:RCA:J_heart_inlet", + "12119": "flow:RCA:J_heart_inlet", + "12120": "flow:RCA:J_heart_inlet", + "12121": "flow:RCA:J_heart_inlet", + "12122": "flow:RCA:J_heart_inlet", + "12123": "flow:RCA:J_heart_inlet", + "12124": "flow:RCA:J_heart_inlet", + "12125": "flow:RCA:J_heart_inlet", + "12126": "flow:RCA:J_heart_inlet", + "12127": "flow:RCA:J_heart_inlet", + "12128": "flow:RCA:J_heart_inlet", + "12129": "flow:RCA:J_heart_inlet", + "12130": "flow:RCA:J_heart_inlet", + "12131": "flow:RCA:J_heart_inlet", + "12132": "flow:RCA:J_heart_inlet", + "12133": "flow:RCA:J_heart_inlet", + "12134": "flow:RCA:J_heart_inlet", + "12135": "flow:RCA:J_heart_inlet", + "12136": "flow:RCA:J_heart_inlet", + "12137": "flow:RCA:J_heart_inlet", + "12138": "flow:RCA:J_heart_inlet", + "12139": "flow:RCA:J_heart_inlet", + "12140": "flow:RCA:J_heart_inlet", + "12141": "flow:RCA:J_heart_inlet", + "12142": "flow:RCA:J_heart_inlet", + "12143": "flow:RCA:J_heart_inlet", + "12144": "flow:RCA:J_heart_inlet", + "12145": "flow:RCA:J_heart_inlet", + "12146": "flow:RCA:J_heart_inlet", + "12147": "flow:RCA:J_heart_inlet", + "12148": "flow:RCA:J_heart_inlet", + "12149": "flow:RCA:J_heart_inlet", + "12150": "flow:RCA:J_heart_inlet", + "12151": "flow:RCA:J_heart_inlet", + "12152": "flow:RCA:J_heart_inlet", + "12153": "flow:RCA:J_heart_inlet", + "12154": "flow:RCA:J_heart_inlet", + "12155": "flow:RCA:J_heart_inlet", + "12156": "flow:RCA:J_heart_inlet", + "12157": "flow:RCA:J_heart_inlet", + "12158": "flow:RCA:J_heart_inlet", + "12159": "flow:RCA:J_heart_inlet", + "12160": "flow:RCA:J_heart_inlet", + "12161": "flow:RCA:J_heart_inlet", + "12162": "flow:RCA:J_heart_inlet", + "12163": "flow:RCA:J_heart_inlet", + "12164": "flow:RCA:J_heart_inlet", + "12165": "flow:RCA:J_heart_inlet", + "12166": "flow:RCA:J_heart_inlet", + "12167": "flow:RCA:J_heart_inlet", + "12168": "flow:RCA:J_heart_inlet", + "12169": "flow:RCA:J_heart_inlet", + "12170": "flow:RCA:J_heart_inlet", + "12171": "flow:RCA:J_heart_inlet", + "12172": "flow:RCA:J_heart_inlet", + "12173": "flow:RCA:J_heart_inlet", + "12174": "flow:RCA:J_heart_inlet", + "12175": "flow:RCA:J_heart_inlet", + "12176": "flow:RCA:J_heart_inlet", + "12177": "flow:RCA:J_heart_inlet", + "12178": "flow:RCA:J_heart_inlet", + "12179": "flow:RCA:J_heart_inlet", + "12180": "flow:RCA:J_heart_inlet", + "12181": "flow:RCA:J_heart_inlet", + "12182": "flow:RCA:J_heart_inlet", + "12183": "flow:RCA:J_heart_inlet", + "12184": "flow:RCA:J_heart_inlet", + "12185": "flow:RCA:J_heart_inlet", + "12186": "flow:RCA:J_heart_inlet", + "12187": "flow:RCA:J_heart_inlet", + "12188": "flow:RCA:J_heart_inlet", + "12189": "flow:RCA:J_heart_inlet", + "12190": "flow:RCA:J_heart_inlet", + "12191": "flow:RCA:J_heart_inlet", + "12192": "flow:RCA:J_heart_inlet", + "12193": "flow:RCA:J_heart_inlet", + "12194": "flow:RCA:J_heart_inlet", + "12195": "flow:RCA:J_heart_inlet", + "12196": "flow:RCA:J_heart_inlet", + "12197": "flow:RCA:J_heart_inlet", + "12198": "flow:RCA:J_heart_inlet", + "12199": "flow:RCA:J_heart_inlet", + "12200": "flow:RCA:J_heart_inlet", + "12201": "flow:RCA:J_heart_inlet", + "12202": "flow:RCA:J_heart_inlet", + "12203": "flow:RCA:J_heart_inlet", + "12204": "flow:RCA:J_heart_inlet", + "12205": "flow:RCA:J_heart_inlet", + "12206": "flow:RCA:J_heart_inlet", + "12207": "flow:RCA:J_heart_inlet", + "12208": "flow:RCA:J_heart_inlet", + "12209": "flow:RCA:J_heart_inlet", + "12210": "flow:RCA:J_heart_inlet", + "12211": "flow:RCA:J_heart_inlet", + "12212": "flow:RCA:J_heart_inlet", + "12213": "flow:RCA:J_heart_inlet", + "12214": "flow:RCA:J_heart_inlet", + "12215": "flow:RCA:J_heart_inlet", + "12216": "flow:RCA:J_heart_inlet", + "12217": "flow:RCA:J_heart_inlet", + "12218": "flow:RCA:J_heart_inlet", + "12219": "flow:RCA:J_heart_inlet", + "12220": "flow:RCA:J_heart_inlet", + "12221": "flow:RCA:J_heart_inlet", + "12222": "flow:RCA:J_heart_inlet", + "12223": "flow:RCA:J_heart_inlet", + "12224": "flow:RCA:J_heart_inlet", + "12225": "flow:RCA:J_heart_inlet", + "12226": "flow:RCA:J_heart_inlet", + "12227": "flow:RCA:J_heart_inlet", + "12228": "flow:RCA:J_heart_inlet", + "12229": "flow:RCA:J_heart_inlet", + "12230": "flow:RCA:J_heart_inlet", + "12231": "flow:RCA:J_heart_inlet", + "12232": "flow:RCA:J_heart_inlet", + "12233": "flow:RCA:J_heart_inlet", + "12234": "flow:RCA:J_heart_inlet", + "12235": "flow:RCA:J_heart_inlet", + "12236": "flow:RCA:J_heart_inlet", + "12237": "flow:RCA:J_heart_inlet", + "12238": "flow:RCA:J_heart_inlet", + "12239": "flow:RCA:J_heart_inlet", + "12240": "flow:RCA:J_heart_inlet", + "12241": "flow:RCA:J_heart_inlet", + "12242": "flow:RCA:J_heart_inlet", + "12243": "flow:RCA:J_heart_inlet", + "12244": "flow:RCA:J_heart_inlet", + "12245": "flow:RCA:J_heart_inlet", + "12246": "flow:RCA:J_heart_inlet", + "12247": "flow:RCA:J_heart_inlet", + "12248": "flow:RCA:J_heart_inlet", + "12249": "flow:RCA:J_heart_inlet", + "12250": "flow:RCA:J_heart_inlet", + "12251": "flow:RCA:J_heart_inlet", + "12252": "flow:RCA:J_heart_inlet", + "12253": "flow:RCA:J_heart_inlet", + "12254": "flow:RCA:J_heart_inlet", + "12255": "flow:RCA:J_heart_inlet", + "12256": "flow:RCA:J_heart_inlet", + "12257": "flow:RCA:J_heart_inlet", + "12258": "flow:RCA:J_heart_inlet", + "12259": "flow:RCA:J_heart_inlet", + "12260": "flow:RCA:J_heart_inlet", + "12261": "flow:RCA:J_heart_inlet", + "12262": "flow:RCA:J_heart_inlet", + "12263": "flow:RCA:J_heart_inlet", + "12264": "flow:RCA:J_heart_inlet", + "12265": "flow:RCA:J_heart_inlet", + "12266": "flow:RCA:J_heart_inlet", + "12267": "flow:RCA:J_heart_inlet", + "12268": "flow:RCA:J_heart_inlet", + "12269": "flow:RCA:J_heart_inlet", + "12270": "flow:RCA:J_heart_inlet", + "12271": "flow:RCA:J_heart_inlet", + "12272": "flow:RCA:J_heart_inlet", + "12273": "flow:RCA:J_heart_inlet", + "12274": "flow:RCA:J_heart_inlet", + "12275": "flow:RCA:J_heart_inlet", + "12276": "flow:RCA:J_heart_inlet", + "12277": "flow:RCA:J_heart_inlet", + "12278": "flow:RCA:J_heart_inlet", + "12279": "flow:RCA:J_heart_inlet", + "12280": "flow:RCA:J_heart_inlet", + "12281": "flow:RCA:J_heart_inlet", + "12282": "flow:RCA:J_heart_inlet", + "12283": "flow:RCA:J_heart_inlet", + "12284": "flow:RCA:J_heart_inlet", + "12285": "flow:RCA:J_heart_inlet", + "12286": "flow:RCA:J_heart_inlet", + "12287": "flow:RCA:J_heart_inlet", + "12288": "flow:RCA:J_heart_inlet", + "12289": "flow:RCA:J_heart_inlet", + "12290": "flow:RCA:J_heart_inlet", + "12291": "flow:RCA:J_heart_inlet", + "12292": "flow:RCA:J_heart_inlet", + "12293": "flow:RCA:J_heart_inlet", + "12294": "flow:RCA:J_heart_inlet", + "12295": "flow:RCA:J_heart_inlet", + "12296": "flow:RCA:J_heart_inlet", + "12297": "flow:RCA:J_heart_inlet", + "12298": "flow:RCA:J_heart_inlet", + "12299": "flow:RCA:J_heart_inlet", + "12300": "flow:RCA:J_heart_inlet", + "12301": "flow:RCA:J_heart_inlet", + "12302": "flow:RCA:J_heart_inlet", + "12303": "flow:RCA:J_heart_inlet", + "12304": "flow:RCA:J_heart_inlet", + "12305": "flow:RCA:J_heart_inlet", + "12306": "flow:RCA:J_heart_inlet", + "12307": "flow:RCA:J_heart_inlet", + "12308": "flow:RCA:J_heart_inlet", + "12309": "flow:RCA:J_heart_inlet", + "12310": "flow:RCA:J_heart_inlet", + "12311": "flow:RCA:J_heart_inlet", + "12312": "flow:RCA:J_heart_inlet", + "12313": "flow:RCA:J_heart_inlet", + "12314": "flow:RCA:J_heart_inlet", + "12315": "flow:RCA:J_heart_inlet", + "12316": "flow:RCA:J_heart_inlet", + "12317": "flow:RCA:J_heart_inlet", + "12318": "flow:RCA:J_heart_inlet", + "12319": "flow:RCA:J_heart_inlet", + "12320": "flow:RCA:J_heart_inlet", + "12321": "flow:RCA:J_heart_inlet", + "12322": "flow:RCA:J_heart_inlet", + "12323": "flow:RCA:J_heart_inlet", + "12324": "flow:RCA:J_heart_inlet", + "12325": "flow:RCA:J_heart_inlet", + "12326": "flow:RCA:J_heart_inlet", + "12327": "flow:RCA:J_heart_inlet", + "12328": "flow:RCA:J_heart_inlet", + "12329": "flow:RCA:J_heart_inlet", + "12330": "flow:RCA:J_heart_inlet", + "12331": "flow:RCA:J_heart_inlet", + "12332": "flow:RCA:J_heart_inlet", + "12333": "flow:RCA:J_heart_inlet", + "12334": "flow:RCA:J_heart_inlet", + "12335": "flow:RCA:J_heart_inlet", + "12336": "flow:RCA:J_heart_inlet", + "12337": "flow:RCA:J_heart_inlet", + "12338": "flow:RCA:J_heart_inlet", + "12339": "flow:RCA:J_heart_inlet", + "12340": "flow:RCA:J_heart_inlet", + "12341": "flow:RCA:J_heart_inlet", + "12342": "flow:RCA:J_heart_inlet", + "12343": "flow:RCA:J_heart_inlet", + "12344": "flow:RCA:J_heart_inlet", + "12345": "flow:RCA:J_heart_inlet", + "12346": "flow:RCA:J_heart_inlet", + "12347": "flow:RCA:J_heart_inlet", + "12348": "flow:RCA:J_heart_inlet", + "12349": "flow:RCA:J_heart_inlet", + "12350": "flow:RCA:J_heart_inlet", + "12351": "flow:RCA:J_heart_inlet", + "12352": "flow:RCA:J_heart_inlet", + "12353": "flow:RCA:J_heart_inlet", + "12354": "flow:RCA:J_heart_inlet", + "12355": "flow:RCA:J_heart_inlet", + "12356": "flow:RCA:J_heart_inlet", + "12357": "flow:RCA:J_heart_inlet", + "12358": "flow:RCA:J_heart_inlet", + "12359": "flow:RCA:J_heart_inlet", + "12360": "flow:RCA:J_heart_inlet", + "12361": "flow:RCA:J_heart_inlet", + "12362": "flow:RCA:J_heart_inlet", + "12363": "flow:RCA:J_heart_inlet", + "12364": "flow:RCA:J_heart_inlet", + "12365": "flow:RCA:J_heart_inlet", + "12366": "flow:RCA:J_heart_inlet", + "12367": "flow:RCA:J_heart_inlet", + "12368": "flow:RCA:J_heart_inlet", + "12369": "flow:RCA:J_heart_inlet", + "12370": "flow:RCA:J_heart_inlet", + "12371": "flow:RCA:J_heart_inlet", + "12372": "flow:RCA:J_heart_inlet", + "12373": "flow:RCA:J_heart_inlet", + "12374": "flow:RCA:J_heart_inlet", + "12375": "flow:RCA:J_heart_inlet", + "12376": "flow:RCA:J_heart_inlet", + "12377": "flow:RCA:J_heart_inlet", + "12378": "flow:RCA:J_heart_inlet", + "12379": "flow:RCA:J_heart_inlet", + "12380": "flow:RCA:J_heart_inlet", + "12381": "flow:RCA:J_heart_inlet", + "12382": "flow:RCA:J_heart_inlet", + "12383": "flow:RCA:J_heart_inlet", + "12384": "flow:RCA:J_heart_inlet", + "12385": "flow:RCA:J_heart_inlet", + "12386": "flow:RCA:J_heart_inlet", + "12387": "flow:RCA:J_heart_inlet", + "12388": "flow:RCA:J_heart_inlet", + "12389": "flow:RCA:J_heart_inlet", + "12390": "flow:RCA:J_heart_inlet", + "12391": "flow:RCA:J_heart_inlet", + "12392": "flow:RCA:J_heart_inlet", + "12393": "flow:RCA:J_heart_inlet", + "12394": "flow:RCA:J_heart_inlet", + "12395": "flow:RCA:J_heart_inlet", + "12396": "flow:RCA:J_heart_inlet", + "12397": "flow:RCA:J_heart_inlet", + "12398": "flow:RCA:J_heart_inlet", + "12399": "flow:RCA:J_heart_inlet", + "12400": "flow:RCA:J_heart_inlet", + "12401": "flow:RCA:J_heart_inlet", + "12402": "flow:RCA:J_heart_inlet", + "12403": "flow:RCA:J_heart_inlet", + "12404": "flow:RCA:J_heart_inlet", + "12405": "flow:RCA:J_heart_inlet", + "12406": "flow:RCA:J_heart_inlet", + "12407": "flow:RCA:J_heart_inlet", + "12408": "flow:RCA:J_heart_inlet", + "12409": "flow:RCA:J_heart_inlet", + "12410": "flow:RCA:J_heart_inlet", + "12411": "flow:RCA:J_heart_inlet", + "12412": "flow:RCA:J_heart_inlet", + "12413": "flow:RCA:J_heart_inlet", + "12414": "flow:RCA:J_heart_inlet", + "12415": "flow:RCA:J_heart_inlet", + "12416": "flow:RCA:J_heart_inlet", + "12417": "flow:RCA:J_heart_inlet", + "12418": "flow:RCA:J_heart_inlet", + "12419": "flow:RCA:J_heart_inlet", + "12420": "flow:RCA:J_heart_inlet", + "12421": "flow:RCA:J_heart_inlet", + "12422": "flow:RCA:J_heart_inlet", + "12423": "flow:RCA:J_heart_inlet", + "12424": "flow:RCA:J_heart_inlet", + "12425": "flow:RCA:J_heart_inlet", + "12426": "flow:RCA:J_heart_inlet", + "12427": "flow:RCA:J_heart_inlet", + "12428": "flow:RCA:J_heart_inlet", + "12429": "flow:RCA:J_heart_inlet", + "12430": "flow:RCA:J_heart_inlet", + "12431": "flow:RCA:J_heart_inlet", + "12432": "flow:RCA:J_heart_inlet", + "12433": "flow:RCA:J_heart_inlet", + "12434": "flow:RCA:J_heart_inlet", + "12435": "flow:RCA:J_heart_inlet", + "12436": "flow:RCA:J_heart_inlet", + "12437": "flow:RCA:J_heart_inlet", + "12438": "flow:RCA:J_heart_inlet", + "12439": "flow:RCA:J_heart_inlet", + "12440": "flow:RCA:J_heart_inlet", + "12441": "flow:RCA:J_heart_inlet", + "12442": "flow:RCA:J_heart_inlet", + "12443": "flow:RCA:J_heart_inlet", + "12444": "flow:RCA:J_heart_inlet", + "12445": "flow:RCA:J_heart_inlet", + "12446": "flow:RCA:J_heart_inlet", + "12447": "flow:RCA:J_heart_inlet", + "12448": "flow:RCA:J_heart_inlet", + "12449": "flow:RCA:J_heart_inlet", + "12450": "flow:RCA:J_heart_inlet", + "12451": "flow:RCA:J_heart_inlet", + "12452": "flow:RCA:J_heart_inlet", + "12453": "flow:RCA:J_heart_inlet", + "12454": "flow:RCA:J_heart_inlet", + "12455": "flow:RCA:J_heart_inlet", + "12456": "flow:RCA:J_heart_inlet", + "12457": "flow:RCA:J_heart_inlet", + "12458": "flow:RCA:J_heart_inlet", + "12459": "flow:RCA:J_heart_inlet", + "12460": "flow:RCA:J_heart_inlet", + "12461": "flow:RCA:J_heart_inlet", + "12462": "flow:RCA:J_heart_inlet", + "12463": "flow:RCA:J_heart_inlet", + "12464": "flow:RCA:J_heart_inlet", + "12465": "flow:RCA:J_heart_inlet", + "12466": "flow:RCA:J_heart_inlet", + "12467": "flow:RCA:J_heart_inlet", + "12468": "flow:RCA:J_heart_inlet", + "12469": "flow:RCA:J_heart_inlet", + "12470": "flow:RCA:J_heart_inlet", + "12471": "flow:RCA:J_heart_inlet", + "12472": "flow:RCA:J_heart_inlet", + "12473": "flow:RCA:J_heart_inlet", + "12474": "flow:RCA:J_heart_inlet", + "12475": "flow:RCA:J_heart_inlet", + "12476": "flow:RCA:J_heart_inlet", + "12477": "flow:RCA:J_heart_inlet", + "12478": "flow:RCA:J_heart_inlet", + "12479": "flow:RCA:J_heart_inlet", + "12480": "flow:RCA:J_heart_inlet", + "12481": "flow:RCA:J_heart_inlet", + "12482": "flow:RCA:J_heart_inlet", + "12483": "flow:RCA:J_heart_inlet", + "12484": "flow:RCA:J_heart_inlet", + "12485": "flow:RCA:J_heart_inlet", + "12486": "flow:RCA:J_heart_inlet", + "12487": "flow:RCA:J_heart_inlet", + "12488": "flow:RCA:J_heart_inlet", + "12489": "flow:RCA:J_heart_inlet", + "12490": "flow:RCA:J_heart_inlet", + "12491": "flow:RCA:J_heart_inlet", + "12492": "flow:RCA:J_heart_inlet", + "12493": "flow:RCA:J_heart_inlet", + "12494": "flow:RCA:J_heart_inlet", + "12495": "flow:RCA:J_heart_inlet", + "12496": "flow:RCA:J_heart_inlet", + "12497": "flow:RCA:J_heart_inlet", + "12498": "flow:RCA:J_heart_inlet", + "12499": "flow:RCA:J_heart_inlet", + "12500": "flow:RCA:J_heart_inlet", + "12501": "flow:RCA:J_heart_inlet", + "12502": "flow:RCA:J_heart_inlet", + "12503": "flow:RCA:J_heart_inlet", + "12504": "flow:RCA:J_heart_inlet", + "12505": "flow:RCA:J_heart_inlet", + "12506": "flow:RCA:J_heart_inlet", + "12507": "flow:RCA:J_heart_inlet", + "12508": "flow:RCA:J_heart_inlet", + "12509": "flow:RCA:J_heart_inlet", + "12510": "flow:RCA:J_heart_inlet", + "12511": "flow:RCA:J_heart_inlet", + "12512": "flow:RCA:J_heart_inlet", + "12513": "flow:RCA:J_heart_inlet", + "12514": "flow:RCA:J_heart_inlet", + "12515": "flow:RCA:J_heart_inlet", + "12516": "flow:RCA:J_heart_inlet", + "12517": "flow:RCA:J_heart_inlet", + "12518": "flow:RCA:J_heart_inlet", + "12519": "flow:RCA:J_heart_inlet", + "12520": "flow:RCA:J_heart_inlet", + "12521": "flow:RCA:J_heart_inlet", + "12522": "flow:RCA:J_heart_inlet", + "12523": "flow:RCA:J_heart_inlet", + "12524": "flow:RCA:J_heart_inlet", + "12525": "flow:RCA:J_heart_inlet", + "12526": "flow:RCA:J_heart_inlet", + "12527": "flow:RCA:J_heart_inlet", + "12528": "flow:RCA:J_heart_inlet", + "12529": "flow:RCA:J_heart_inlet", + "12530": "flow:RCA:J_heart_inlet", + "12531": "flow:RCA:J_heart_inlet", + "12532": "flow:RCA:J_heart_inlet", + "12533": "flow:RCA:J_heart_inlet", + "12534": "flow:RCA:J_heart_inlet", + "12535": "flow:RCA:J_heart_inlet", + "12536": "flow:RCA:J_heart_inlet", + "12537": "flow:RCA:J_heart_inlet", + "12538": "flow:RCA:J_heart_inlet", + "12539": "flow:RCA:J_heart_inlet", + "12540": "flow:RCA:J_heart_inlet", + "12541": "flow:RCA:J_heart_inlet", + "12542": "flow:RCA:J_heart_inlet", + "12543": "flow:RCA:J_heart_inlet", + "12544": "flow:RCA:J_heart_inlet", + "12545": "flow:RCA:J_heart_inlet", + "12546": "flow:RCA:J_heart_inlet", + "12547": "flow:RCA:J_heart_inlet", + "12548": "flow:RCA:J_heart_inlet", + "12549": "flow:RCA:J_heart_inlet", + "12550": "flow:RCA:J_heart_inlet", + "12551": "flow:RCA:J_heart_inlet", + "12552": "flow:RCA:J_heart_inlet", + "12553": "flow:RCA:J_heart_inlet", + "12554": "flow:RCA:J_heart_inlet", + "12555": "flow:RCA:J_heart_inlet", + "12556": "flow:RCA:J_heart_inlet", + "12557": "flow:RCA:J_heart_inlet", + "12558": "flow:RCA:J_heart_inlet", + "12559": "flow:RCA:J_heart_inlet", + "12560": "flow:RCA:J_heart_inlet", + "12561": "flow:RCA:J_heart_inlet", + "12562": "flow:RCA:J_heart_inlet", + "12563": "flow:RCA:J_heart_inlet", + "12564": "flow:RCA:J_heart_inlet", + "12565": "flow:RCA:J_heart_inlet", + "12566": "flow:RCA:J_heart_inlet", + "12567": "flow:RCA:J_heart_inlet", + "12568": "flow:RCA:J_heart_inlet", + "12569": "flow:RCA:J_heart_inlet", + "12570": "flow:RCA:J_heart_inlet", + "12571": "flow:RCA:J_heart_inlet", + "12572": "flow:RCA:J_heart_inlet", + "12573": "flow:RCA:J_heart_inlet", + "12574": "flow:RCA:J_heart_inlet", + "12575": "flow:RCA:J_heart_inlet", + "12576": "flow:RCA:J_heart_inlet", + "12577": "flow:RCA:J_heart_inlet", + "12578": "flow:RCA:J_heart_inlet", + "12579": "flow:RCA:J_heart_inlet", + "12580": "flow:RCA:J_heart_inlet", + "12581": "flow:RCA:J_heart_inlet", + "12582": "flow:RCA:J_heart_inlet", + "12583": "flow:RCA:J_heart_inlet", + "12584": "flow:RCA:J_heart_inlet", + "12585": "flow:RCA:J_heart_inlet", + "12586": "flow:RCA:J_heart_inlet", + "12587": "flow:RCA:J_heart_inlet", + "12588": "flow:RCA:J_heart_inlet", + "12589": "flow:RCA:J_heart_inlet", + "12590": "flow:RCA:J_heart_inlet", + "12591": "flow:RCA:J_heart_inlet", + "12592": "flow:RCA:J_heart_inlet", + "12593": "flow:RCA:J_heart_inlet", + "12594": "flow:RCA:J_heart_inlet", + "12595": "flow:RCA:J_heart_inlet", + "12596": "flow:RCA:J_heart_inlet", + "12597": "flow:RCA:J_heart_inlet", + "12598": "flow:RCA:J_heart_inlet", + "12599": "flow:RCA:J_heart_inlet", + "12600": "flow:RCA:J_heart_inlet", + "12601": "flow:RCA:J_heart_inlet", + "12602": "flow:RCA:J_heart_inlet", + "12603": "flow:RCA:J_heart_inlet", + "12604": "flow:RCA:J_heart_inlet", + "12605": "flow:RCA:J_heart_inlet", + "12606": "flow:RCA:J_heart_inlet", + "12607": "flow:RCA:J_heart_inlet", + "12608": "flow:RCA:J_heart_inlet", + "12609": "flow:RCA:J_heart_inlet", + "12610": "flow:RCA:J_heart_inlet", + "12611": "flow:RCA:J_heart_inlet", + "12612": "flow:RCA:J_heart_inlet", + "12613": "flow:RCA:J_heart_inlet", + "12614": "flow:RCA:J_heart_inlet", + "12615": "flow:RCA:J_heart_inlet", + "12616": "flow:RCA:J_heart_inlet", + "12617": "flow:RCA:J_heart_inlet", + "12618": "flow:RCA:J_heart_inlet", + "12619": "flow:RCA:J_heart_inlet", + "12620": "flow:RCA:J_heart_inlet", + "12621": "flow:RCA:J_heart_inlet", + "12622": "flow:RCA:J_heart_inlet", + "12623": "flow:RCA:J_heart_inlet", + "12624": "flow:RCA:J_heart_inlet", + "12625": "flow:RCA:J_heart_inlet", + "12626": "flow:RCA:J_heart_inlet", + "12627": "flow:RCA:J_heart_inlet", + "12628": "flow:RCA:J_heart_inlet", + "12629": "flow:RCA:J_heart_inlet", + "12630": "flow:RCA:J_heart_inlet", + "12631": "flow:RCA:J_heart_inlet", + "12632": "flow:RCA:J_heart_inlet", + "12633": "flow:RCA:J_heart_inlet", + "12634": "flow:RCA:J_heart_inlet", + "12635": "flow:RCA:J_heart_inlet", + "12636": "flow:RCA:J_heart_inlet", + "12637": "flow:RCA:J_heart_inlet", + "12638": "flow:RCA:J_heart_inlet", + "12639": "flow:RCA:J_heart_inlet", + "12640": "flow:RCA:J_heart_inlet", + "12641": "flow:RCA:J_heart_inlet", + "12642": "flow:RCA:J_heart_inlet", + "12643": "flow:RCA:J_heart_inlet", + "12644": "flow:RCA:J_heart_inlet", + "12645": "flow:RCA:J_heart_inlet", + "12646": "flow:RCA:J_heart_inlet", + "12647": "flow:RCA:J_heart_inlet", + "12648": "flow:RCA:J_heart_inlet", + "12649": "flow:RCA:J_heart_inlet", + "12650": "flow:RCA:J_heart_inlet", + "12651": "flow:RCA:J_heart_inlet", + "12652": "flow:RCA:J_heart_inlet", + "12653": "flow:RCA:J_heart_inlet", + "12654": "flow:RCA:J_heart_inlet", + "12655": "flow:RCA:J_heart_inlet", + "12656": "flow:RCA:J_heart_inlet", + "12657": "flow:RCA:J_heart_inlet", + "12658": "flow:RCA:J_heart_inlet", + "12659": "flow:RCA:J_heart_inlet", + "12660": "flow:RCA:J_heart_inlet", + "12661": "flow:RCA:J_heart_inlet", + "12662": "flow:RCA:J_heart_inlet", + "12663": "flow:RCA:J_heart_inlet", + "12664": "flow:RCA:J_heart_inlet", + "12665": "flow:RCA:J_heart_inlet", + "12666": "flow:RCA:J_heart_inlet", + "12667": "flow:RCA:J_heart_inlet", + "12668": "flow:RCA:J_heart_inlet", + "12669": "flow:RCA:J_heart_inlet", + "12670": "flow:RCA:J_heart_inlet", + "12671": "flow:RCA:J_heart_inlet", + "12672": "flow:RCA:J_heart_inlet", + "12673": "flow:RCA:J_heart_inlet", + "12674": "flow:RCA:J_heart_inlet", + "12675": "flow:RCA:J_heart_inlet", + "12676": "flow:RCA:J_heart_inlet", + "12677": "flow:RCA:J_heart_inlet", + "12678": "flow:RCA:J_heart_inlet", + "12679": "flow:RCA:J_heart_inlet", + "12680": "flow:RCA:J_heart_inlet", + "12681": "flow:RCA:J_heart_inlet", + "12682": "flow:RCA:J_heart_inlet", + "12683": "flow:RCA:J_heart_inlet", + "12684": "flow:RCA:J_heart_inlet", + "12685": "flow:RCA:J_heart_inlet", + "12686": "flow:RCA:J_heart_inlet", + "12687": "flow:RCA:J_heart_inlet", + "12688": "flow:RCA:J_heart_inlet", + "12689": "flow:RCA:J_heart_inlet", + "12690": "flow:RCA:J_heart_inlet", + "12691": "flow:RCA:J_heart_inlet", + "12692": "flow:RCA:J_heart_inlet", + "12693": "flow:RCA:J_heart_inlet", + "12694": "flow:RCA:J_heart_inlet", + "12695": "flow:RCA:J_heart_inlet", + "12696": "flow:RCA:J_heart_inlet", + "12697": "flow:RCA:J_heart_inlet", + "12698": "flow:RCA:J_heart_inlet", + "12699": "flow:RCA:J_heart_inlet", + "12700": "flow:RCA:J_heart_inlet", + "12701": "flow:RCA:J_heart_inlet", + "12702": "flow:RCA:J_heart_inlet", + "12703": "flow:RCA:J_heart_inlet", + "12704": "flow:RCA:J_heart_inlet", + "12705": "flow:RCA:J_heart_inlet", + "12706": "flow:RCA:J_heart_inlet", + "12707": "flow:RCA:J_heart_inlet", + "12708": "flow:RCA:J_heart_inlet", + "12709": "flow:RCA:J_heart_inlet", + "12710": "flow:RCA:J_heart_inlet", + "12711": "flow:RCA:J_heart_inlet", + "12712": "flow:RCA:J_heart_inlet", + "12713": "flow:RCA:J_heart_inlet", + "12714": "flow:RCA:J_heart_inlet", + "12715": "flow:RCA:J_heart_inlet", + "12716": "flow:RCA:J_heart_inlet", + "12717": "flow:RCA:J_heart_inlet", + "12718": "flow:RCA:J_heart_inlet", + "12719": "flow:RCA:J_heart_inlet", + "12720": "flow:RCA:J_heart_inlet", + "12721": "flow:RCA:J_heart_inlet", + "12722": "flow:RCA:J_heart_inlet", + "12723": "flow:RCA:J_heart_inlet", + "12724": "flow:RCA:J_heart_inlet", + "12725": "flow:RCA:J_heart_inlet", + "12726": "flow:RCA:J_heart_inlet", + "12727": "flow:RCA:J_heart_inlet", + "12728": "flow:RCA:J_heart_inlet", + "12729": "flow:RCA:J_heart_inlet", + "12730": "flow:RCA:J_heart_inlet", + "12731": "flow:RCA:J_heart_inlet", + "12732": "flow:RCA:J_heart_inlet", + "12733": "flow:RCA:J_heart_inlet", + "12734": "flow:RCA:J_heart_inlet", + "12735": "flow:RCA:J_heart_inlet", + "12736": "flow:RCA:J_heart_inlet", + "12737": "flow:RCA:J_heart_inlet", + "12738": "flow:RCA:J_heart_inlet", + "12739": "flow:RCA:J_heart_inlet", + "12740": "flow:RCA:J_heart_inlet", + "12741": "flow:RCA:J_heart_inlet", + "12742": "flow:RCA:J_heart_inlet", + "12743": "flow:RCA:J_heart_inlet", + "12744": "flow:RCA:J_heart_inlet", + "12745": "flow:RCA:J_heart_inlet", + "12746": "flow:RCA:J_heart_inlet", + "12747": "flow:RCA:J_heart_inlet", + "12748": "flow:RCA:J_heart_inlet", + "12749": "flow:RCA:J_heart_inlet", + "12750": "flow:RCA:J_heart_inlet", + "12751": "flow:RCA:J_heart_inlet", + "12752": "flow:RCA:J_heart_inlet", + "12753": "flow:RCA:J_heart_inlet", + "12754": "flow:RCA:J_heart_inlet", + "12755": "flow:RCA:J_heart_inlet", + "12756": "flow:RCA:J_heart_inlet", + "12757": "flow:RCA:J_heart_inlet", + "12758": "flow:RCA:J_heart_inlet", + "12759": "flow:RCA:J_heart_inlet", + "12760": "flow:RCA:J_heart_inlet", + "12761": "flow:RCA:J_heart_inlet", + "12762": "flow:RCA:J_heart_inlet", + "12763": "flow:RCA:J_heart_inlet", + "12764": "flow:RCA:J_heart_inlet", + "12765": "flow:RCA:J_heart_inlet", + "12766": "flow:RCA:J_heart_inlet", + "12767": "flow:RCA:J_heart_inlet", + "12768": "flow:RCA:J_heart_inlet", + "12769": "flow:RCA:J_heart_inlet", + "12770": "flow:RCA:J_heart_inlet", + "12771": "flow:RCA:J_heart_inlet", + "12772": "flow:RCA:J_heart_inlet", + "12773": "flow:RCA:J_heart_inlet", + "12774": "flow:RCA:J_heart_inlet", + "12775": "flow:RCA:J_heart_inlet", + "12776": "flow:RCA:J_heart_inlet", + "12777": "flow:RCA:J_heart_inlet", + "12778": "flow:RCA:J_heart_inlet", + "12779": "flow:RCA:J_heart_inlet", + "12780": "flow:RCA:J_heart_inlet", + "12781": "flow:RCA:J_heart_inlet", + "12782": "flow:RCA:J_heart_inlet", + "12783": "flow:RCA:J_heart_inlet", + "12784": "flow:RCA:J_heart_inlet", + "12785": "flow:RCA:J_heart_inlet", + "12786": "flow:RCA:J_heart_inlet", + "12787": "flow:RCA:J_heart_inlet", + "12788": "flow:RCA:J_heart_inlet", + "12789": "flow:RCA:J_heart_inlet", + "12790": "flow:RCA:J_heart_inlet", + "12791": "flow:RCA:J_heart_inlet", + "12792": "flow:RCA:J_heart_inlet", + "12793": "flow:RCA:J_heart_inlet", + "12794": "flow:RCA:J_heart_inlet", + "12795": "flow:RCA:J_heart_inlet", + "12796": "flow:RCA:J_heart_inlet", + "12797": "flow:RCA:J_heart_inlet", + "12798": "flow:RCA:J_heart_inlet", + "12799": "flow:RCA:J_heart_inlet", + "12800": "flow:RCA:J_heart_inlet", + "12801": "flow:RCA:J_heart_inlet", + "12802": "flow:RCA:J_heart_inlet", + "12803": "flow:RCA:J_heart_inlet", + "12804": "flow:RCA:J_heart_inlet", + "12805": "flow:RCA:J_heart_inlet", + "12806": "flow:RCA:J_heart_inlet", + "12807": "flow:RCA:J_heart_inlet", + "12808": "flow:RCA:J_heart_inlet", + "12809": "flow:RCA:J_heart_inlet", + "12810": "flow:RCA:J_heart_inlet", + "12811": "flow:RCA:J_heart_inlet", + "12812": "flow:RCA:J_heart_inlet", + "12813": "flow:RCA:J_heart_inlet", + "12814": "flow:RCA:J_heart_inlet", + "12815": "flow:RCA:J_heart_inlet", + "12816": "flow:RCA:J_heart_inlet", + "12817": "flow:RCA:J_heart_inlet", + "12818": "flow:RCA:J_heart_inlet", + "12819": "flow:RCA:J_heart_inlet", + "12820": "flow:RCA:J_heart_inlet", + "12821": "flow:RCA:J_heart_inlet", + "12822": "flow:RCA:J_heart_inlet", + "12823": "flow:RCA:J_heart_inlet", + "12824": "flow:RCA:J_heart_inlet", + "12825": "flow:RCA:J_heart_inlet", + "12826": "flow:RCA:J_heart_inlet", + "12827": "flow:RCA:J_heart_inlet", + "12828": "flow:RCA:J_heart_inlet", + "12829": "flow:RCA:J_heart_inlet", + "12830": "flow:RCA:J_heart_inlet", + "12831": "flow:RCA:J_heart_inlet", + "12832": "flow:RCA:J_heart_inlet", + "12833": "flow:RCA:J_heart_inlet", + "12834": "flow:RCA:J_heart_inlet", + "12835": "flow:RCA:J_heart_inlet", + "12836": "flow:RCA:J_heart_inlet", + "12837": "flow:RCA:J_heart_inlet", + "12838": "flow:RCA:J_heart_inlet", + "12839": "flow:RCA:J_heart_inlet", + "12840": "flow:RCA:J_heart_inlet", + "12841": "flow:RCA:J_heart_inlet", + "12842": "flow:RCA:J_heart_inlet", + "12843": "flow:RCA:J_heart_inlet", + "12844": "flow:RCA:J_heart_inlet", + "12845": "flow:RCA:J_heart_inlet", + "12846": "flow:RCA:J_heart_inlet", + "12847": "flow:RCA:J_heart_inlet", + "12848": "flow:RCA:J_heart_inlet", + "12849": "flow:RCA:J_heart_inlet", + "12850": "flow:RCA:J_heart_inlet", + "12851": "flow:RCA:J_heart_inlet", + "12852": "flow:RCA:J_heart_inlet", + "12853": "flow:RCA:J_heart_inlet", + "12854": "flow:RCA:J_heart_inlet", + "12855": "flow:RCA:J_heart_inlet", + "12856": "flow:RCA:J_heart_inlet", + "12857": "flow:RCA:J_heart_inlet", + "12858": "flow:RCA:J_heart_inlet", + "12859": "flow:RCA:J_heart_inlet", + "12860": "flow:RCA:J_heart_inlet", + "12861": "flow:RCA:J_heart_inlet", + "12862": "flow:RCA:J_heart_inlet", + "12863": "flow:RCA:J_heart_inlet", + "12864": "flow:RCA:J_heart_inlet", + "12865": "flow:RCA:J_heart_inlet", + "12866": "flow:RCA:J_heart_inlet", + "12867": "flow:RCA:J_heart_inlet", + "12868": "flow:RCA:J_heart_inlet", + "12869": "flow:RCA:J_heart_inlet", + "12870": "flow:RCA:J_heart_inlet", + "12871": "flow:RCA:J_heart_inlet", + "12872": "flow:RCA:J_heart_inlet", + "12873": "flow:RCA:J_heart_inlet", + "12874": "flow:RCA:J_heart_inlet", + "12875": "flow:RCA:J_heart_inlet", + "12876": "flow:RCA:J_heart_inlet", + "12877": "flow:RCA:J_heart_inlet", + "12878": "flow:RCA:J_heart_inlet", + "12879": "flow:RCA:J_heart_inlet", + "12880": "flow:RCA:J_heart_inlet", + "12881": "flow:RCA:J_heart_inlet", + "12882": "flow:RCA:J_heart_inlet", + "12883": "flow:RCA:J_heart_inlet", + "12884": "flow:RCA:J_heart_inlet", + "12885": "flow:RCA:J_heart_inlet", + "12886": "flow:RCA:J_heart_inlet", + "12887": "flow:RCA:J_heart_inlet", + "12888": "flow:RCA:J_heart_inlet", + "12889": "flow:RCA:J_heart_inlet", + "12890": "flow:RCA:J_heart_inlet", + "12891": "flow:RCA:J_heart_inlet", + "12892": "flow:RCA:J_heart_inlet", + "12893": "flow:RCA:J_heart_inlet", + "12894": "flow:RCA:J_heart_inlet", + "12895": "flow:RCA:J_heart_inlet", + "12896": "flow:RCA:J_heart_inlet", + "12897": "flow:RCA:J_heart_inlet", + "12898": "flow:RCA:J_heart_inlet", + "12899": "flow:RCA:J_heart_inlet", + "12900": "flow:RCA:J_heart_inlet", + "12901": "flow:RCA:J_heart_inlet", + "12902": "flow:RCA:J_heart_inlet", + "12903": "flow:RCA:J_heart_inlet", + "12904": "flow:RCA:J_heart_inlet", + "12905": "flow:RCA:J_heart_inlet", + "12906": "flow:RCA:J_heart_inlet", + "12907": "flow:RCA:J_heart_inlet", + "12908": "flow:RCA:J_heart_inlet", + "12909": "flow:RCA:J_heart_inlet", + "12910": "flow:RCA:J_heart_inlet", + "12911": "flow:RCA:J_heart_inlet", + "12912": "flow:RCA:J_heart_inlet", + "12913": "flow:RCA:J_heart_inlet", + "12914": "flow:RCA:J_heart_inlet", + "12915": "flow:RCA:J_heart_inlet", + "12916": "flow:RCA:J_heart_inlet", + "12917": "flow:RCA:J_heart_inlet", + "12918": "flow:RCA:J_heart_inlet", + "12919": "flow:RCA:J_heart_inlet", + "12920": "flow:RCA:J_heart_inlet", + "12921": "flow:RCA:J_heart_inlet", + "12922": "flow:RCA:J_heart_inlet", + "12923": "flow:RCA:J_heart_inlet", + "12924": "flow:RCA:J_heart_inlet", + "12925": "flow:RCA:J_heart_inlet", + "12926": "flow:RCA:J_heart_inlet", + "12927": "flow:RCA:J_heart_inlet", + "12928": "flow:RCA:J_heart_inlet", + "12929": "flow:RCA:J_heart_inlet", + "12930": "flow:RCA:J_heart_inlet", + "12931": "flow:RCA:J_heart_inlet", + "12932": "flow:RCA:J_heart_inlet", + "12933": "flow:RCA:J_heart_inlet", + "12934": "flow:RCA:J_heart_inlet", + "12935": "flow:RCA:J_heart_inlet", + "12936": "flow:RCA:J_heart_inlet", + "12937": "flow:RCA:J_heart_inlet", + "12938": "flow:RCA:J_heart_inlet", + "12939": "flow:RCA:J_heart_inlet", + "12940": "flow:RCA:J_heart_inlet", + "12941": "flow:RCA:J_heart_inlet", + "12942": "flow:RCA:J_heart_inlet", + "12943": "flow:RCA:J_heart_inlet", + "12944": "flow:RCA:J_heart_inlet", + "12945": "flow:RCA:J_heart_inlet", + "12946": "flow:RCA:J_heart_inlet", + "12947": "flow:RCA:J_heart_inlet", + "12948": "flow:RCA:J_heart_inlet", + "12949": "flow:RCA:J_heart_inlet", + "12950": "flow:RCA:J_heart_inlet", + "12951": "flow:RCA:J_heart_inlet", + "12952": "flow:RCA:J_heart_inlet", + "12953": "flow:RCA:J_heart_inlet", + "12954": "flow:RCA:J_heart_inlet", + "12955": "flow:RCA:J_heart_inlet", + "12956": "flow:RCA:J_heart_inlet", + "12957": "flow:RCA:J_heart_inlet", + "12958": "flow:RCA:J_heart_inlet", + "12959": "flow:RCA:J_heart_inlet", + "12960": "flow:RCA:J_heart_inlet", + "12961": "flow:RCA:J_heart_inlet", + "12962": "flow:RCA:J_heart_inlet", + "12963": "flow:RCA:J_heart_inlet", + "12964": "flow:RCA:J_heart_inlet", + "12965": "flow:RCA:J_heart_inlet", + "12966": "flow:RCA:J_heart_inlet", + "12967": "flow:RCA:J_heart_inlet", + "12968": "flow:RCA:J_heart_inlet", + "12969": "flow:RCA:J_heart_inlet", + "12970": "flow:RCA:J_heart_inlet", + "12971": "flow:RCA:J_heart_inlet", + "12972": "flow:RCA:J_heart_inlet", + "12973": "flow:RCA:J_heart_inlet", + "12974": "flow:RCA:J_heart_inlet", + "12975": "flow:RCA:J_heart_inlet", + "12976": "flow:RCA:J_heart_inlet", + "12977": "flow:RCA:J_heart_inlet", + "12978": "flow:RCA:J_heart_inlet", + "12979": "flow:RCA:J_heart_inlet", + "12980": "flow:RCA:J_heart_inlet", + "12981": "flow:RCA:J_heart_inlet", + "12982": "flow:RCA:J_heart_inlet", + "12983": "flow:RCA:J_heart_inlet", + "12984": "flow:RCA:J_heart_inlet", + "12985": "flow:RCA:J_heart_inlet", + "12986": "flow:RCA:J_heart_inlet", + "12987": "flow:RCA:J_heart_inlet", + "12988": "flow:RCA:J_heart_inlet", + "12989": "flow:RCA:J_heart_inlet", + "12990": "flow:RCA:J_heart_inlet", + "12991": "flow:RCA:J_heart_inlet", + "12992": "flow:RCA:J_heart_inlet", + "12993": "flow:RCA:J_heart_inlet", + "12994": "flow:RCA:J_heart_inlet", + "12995": "flow:RCA:J_heart_inlet", + "12996": "flow:RCA:J_heart_inlet", + "12997": "flow:RCA:J_heart_inlet", + "12998": "flow:RCA:J_heart_inlet", + "12999": "flow:RCA:J_heart_inlet", + "13000": "pressure:RCA:J_heart_inlet", + "13001": "pressure:RCA:J_heart_inlet", + "13002": "pressure:RCA:J_heart_inlet", + "13003": "pressure:RCA:J_heart_inlet", + "13004": "pressure:RCA:J_heart_inlet", + "13005": "pressure:RCA:J_heart_inlet", + "13006": "pressure:RCA:J_heart_inlet", + "13007": "pressure:RCA:J_heart_inlet", + "13008": "pressure:RCA:J_heart_inlet", + "13009": "pressure:RCA:J_heart_inlet", + "13010": "pressure:RCA:J_heart_inlet", + "13011": "pressure:RCA:J_heart_inlet", + "13012": "pressure:RCA:J_heart_inlet", + "13013": "pressure:RCA:J_heart_inlet", + "13014": "pressure:RCA:J_heart_inlet", + "13015": "pressure:RCA:J_heart_inlet", + "13016": "pressure:RCA:J_heart_inlet", + "13017": "pressure:RCA:J_heart_inlet", + "13018": "pressure:RCA:J_heart_inlet", + "13019": "pressure:RCA:J_heart_inlet", + "13020": "pressure:RCA:J_heart_inlet", + "13021": "pressure:RCA:J_heart_inlet", + "13022": "pressure:RCA:J_heart_inlet", + "13023": "pressure:RCA:J_heart_inlet", + "13024": "pressure:RCA:J_heart_inlet", + "13025": "pressure:RCA:J_heart_inlet", + "13026": "pressure:RCA:J_heart_inlet", + "13027": "pressure:RCA:J_heart_inlet", + "13028": "pressure:RCA:J_heart_inlet", + "13029": "pressure:RCA:J_heart_inlet", + "13030": "pressure:RCA:J_heart_inlet", + "13031": "pressure:RCA:J_heart_inlet", + "13032": "pressure:RCA:J_heart_inlet", + "13033": "pressure:RCA:J_heart_inlet", + "13034": "pressure:RCA:J_heart_inlet", + "13035": "pressure:RCA:J_heart_inlet", + "13036": "pressure:RCA:J_heart_inlet", + "13037": "pressure:RCA:J_heart_inlet", + "13038": "pressure:RCA:J_heart_inlet", + "13039": "pressure:RCA:J_heart_inlet", + "13040": "pressure:RCA:J_heart_inlet", + "13041": "pressure:RCA:J_heart_inlet", + "13042": "pressure:RCA:J_heart_inlet", + "13043": "pressure:RCA:J_heart_inlet", + "13044": "pressure:RCA:J_heart_inlet", + "13045": "pressure:RCA:J_heart_inlet", + "13046": "pressure:RCA:J_heart_inlet", + "13047": "pressure:RCA:J_heart_inlet", + "13048": "pressure:RCA:J_heart_inlet", + "13049": "pressure:RCA:J_heart_inlet", + "13050": "pressure:RCA:J_heart_inlet", + "13051": "pressure:RCA:J_heart_inlet", + "13052": "pressure:RCA:J_heart_inlet", + "13053": "pressure:RCA:J_heart_inlet", + "13054": "pressure:RCA:J_heart_inlet", + "13055": "pressure:RCA:J_heart_inlet", + "13056": "pressure:RCA:J_heart_inlet", + "13057": "pressure:RCA:J_heart_inlet", + "13058": "pressure:RCA:J_heart_inlet", + "13059": "pressure:RCA:J_heart_inlet", + "13060": "pressure:RCA:J_heart_inlet", + "13061": "pressure:RCA:J_heart_inlet", + "13062": "pressure:RCA:J_heart_inlet", + "13063": "pressure:RCA:J_heart_inlet", + "13064": "pressure:RCA:J_heart_inlet", + "13065": "pressure:RCA:J_heart_inlet", + "13066": "pressure:RCA:J_heart_inlet", + "13067": "pressure:RCA:J_heart_inlet", + "13068": "pressure:RCA:J_heart_inlet", + "13069": "pressure:RCA:J_heart_inlet", + "13070": "pressure:RCA:J_heart_inlet", + "13071": "pressure:RCA:J_heart_inlet", + "13072": "pressure:RCA:J_heart_inlet", + "13073": "pressure:RCA:J_heart_inlet", + "13074": "pressure:RCA:J_heart_inlet", + "13075": "pressure:RCA:J_heart_inlet", + "13076": "pressure:RCA:J_heart_inlet", + "13077": "pressure:RCA:J_heart_inlet", + "13078": "pressure:RCA:J_heart_inlet", + "13079": "pressure:RCA:J_heart_inlet", + "13080": "pressure:RCA:J_heart_inlet", + "13081": "pressure:RCA:J_heart_inlet", + "13082": "pressure:RCA:J_heart_inlet", + "13083": "pressure:RCA:J_heart_inlet", + "13084": "pressure:RCA:J_heart_inlet", + "13085": "pressure:RCA:J_heart_inlet", + "13086": "pressure:RCA:J_heart_inlet", + "13087": "pressure:RCA:J_heart_inlet", + "13088": "pressure:RCA:J_heart_inlet", + "13089": "pressure:RCA:J_heart_inlet", + "13090": "pressure:RCA:J_heart_inlet", + "13091": "pressure:RCA:J_heart_inlet", + "13092": "pressure:RCA:J_heart_inlet", + "13093": "pressure:RCA:J_heart_inlet", + "13094": "pressure:RCA:J_heart_inlet", + "13095": "pressure:RCA:J_heart_inlet", + "13096": "pressure:RCA:J_heart_inlet", + "13097": "pressure:RCA:J_heart_inlet", + "13098": "pressure:RCA:J_heart_inlet", + "13099": "pressure:RCA:J_heart_inlet", + "13100": "pressure:RCA:J_heart_inlet", + "13101": "pressure:RCA:J_heart_inlet", + "13102": "pressure:RCA:J_heart_inlet", + "13103": "pressure:RCA:J_heart_inlet", + "13104": "pressure:RCA:J_heart_inlet", + "13105": "pressure:RCA:J_heart_inlet", + "13106": "pressure:RCA:J_heart_inlet", + "13107": "pressure:RCA:J_heart_inlet", + "13108": "pressure:RCA:J_heart_inlet", + "13109": "pressure:RCA:J_heart_inlet", + "13110": "pressure:RCA:J_heart_inlet", + "13111": "pressure:RCA:J_heart_inlet", + "13112": "pressure:RCA:J_heart_inlet", + "13113": "pressure:RCA:J_heart_inlet", + "13114": "pressure:RCA:J_heart_inlet", + "13115": "pressure:RCA:J_heart_inlet", + "13116": "pressure:RCA:J_heart_inlet", + "13117": "pressure:RCA:J_heart_inlet", + "13118": "pressure:RCA:J_heart_inlet", + "13119": "pressure:RCA:J_heart_inlet", + "13120": "pressure:RCA:J_heart_inlet", + "13121": "pressure:RCA:J_heart_inlet", + "13122": "pressure:RCA:J_heart_inlet", + "13123": "pressure:RCA:J_heart_inlet", + "13124": "pressure:RCA:J_heart_inlet", + "13125": "pressure:RCA:J_heart_inlet", + "13126": "pressure:RCA:J_heart_inlet", + "13127": "pressure:RCA:J_heart_inlet", + "13128": "pressure:RCA:J_heart_inlet", + "13129": "pressure:RCA:J_heart_inlet", + "13130": "pressure:RCA:J_heart_inlet", + "13131": "pressure:RCA:J_heart_inlet", + "13132": "pressure:RCA:J_heart_inlet", + "13133": "pressure:RCA:J_heart_inlet", + "13134": "pressure:RCA:J_heart_inlet", + "13135": "pressure:RCA:J_heart_inlet", + "13136": "pressure:RCA:J_heart_inlet", + "13137": "pressure:RCA:J_heart_inlet", + "13138": "pressure:RCA:J_heart_inlet", + "13139": "pressure:RCA:J_heart_inlet", + "13140": "pressure:RCA:J_heart_inlet", + "13141": "pressure:RCA:J_heart_inlet", + "13142": "pressure:RCA:J_heart_inlet", + "13143": "pressure:RCA:J_heart_inlet", + "13144": "pressure:RCA:J_heart_inlet", + "13145": "pressure:RCA:J_heart_inlet", + "13146": "pressure:RCA:J_heart_inlet", + "13147": "pressure:RCA:J_heart_inlet", + "13148": "pressure:RCA:J_heart_inlet", + "13149": "pressure:RCA:J_heart_inlet", + "13150": "pressure:RCA:J_heart_inlet", + "13151": "pressure:RCA:J_heart_inlet", + "13152": "pressure:RCA:J_heart_inlet", + "13153": "pressure:RCA:J_heart_inlet", + "13154": "pressure:RCA:J_heart_inlet", + "13155": "pressure:RCA:J_heart_inlet", + "13156": "pressure:RCA:J_heart_inlet", + "13157": "pressure:RCA:J_heart_inlet", + "13158": "pressure:RCA:J_heart_inlet", + "13159": "pressure:RCA:J_heart_inlet", + "13160": "pressure:RCA:J_heart_inlet", + "13161": "pressure:RCA:J_heart_inlet", + "13162": "pressure:RCA:J_heart_inlet", + "13163": "pressure:RCA:J_heart_inlet", + "13164": "pressure:RCA:J_heart_inlet", + "13165": "pressure:RCA:J_heart_inlet", + "13166": "pressure:RCA:J_heart_inlet", + "13167": "pressure:RCA:J_heart_inlet", + "13168": "pressure:RCA:J_heart_inlet", + "13169": "pressure:RCA:J_heart_inlet", + "13170": "pressure:RCA:J_heart_inlet", + "13171": "pressure:RCA:J_heart_inlet", + "13172": "pressure:RCA:J_heart_inlet", + "13173": "pressure:RCA:J_heart_inlet", + "13174": "pressure:RCA:J_heart_inlet", + "13175": "pressure:RCA:J_heart_inlet", + "13176": "pressure:RCA:J_heart_inlet", + "13177": "pressure:RCA:J_heart_inlet", + "13178": "pressure:RCA:J_heart_inlet", + "13179": "pressure:RCA:J_heart_inlet", + "13180": "pressure:RCA:J_heart_inlet", + "13181": "pressure:RCA:J_heart_inlet", + "13182": "pressure:RCA:J_heart_inlet", + "13183": "pressure:RCA:J_heart_inlet", + "13184": "pressure:RCA:J_heart_inlet", + "13185": "pressure:RCA:J_heart_inlet", + "13186": "pressure:RCA:J_heart_inlet", + "13187": "pressure:RCA:J_heart_inlet", + "13188": "pressure:RCA:J_heart_inlet", + "13189": "pressure:RCA:J_heart_inlet", + "13190": "pressure:RCA:J_heart_inlet", + "13191": "pressure:RCA:J_heart_inlet", + "13192": "pressure:RCA:J_heart_inlet", + "13193": "pressure:RCA:J_heart_inlet", + "13194": "pressure:RCA:J_heart_inlet", + "13195": "pressure:RCA:J_heart_inlet", + "13196": "pressure:RCA:J_heart_inlet", + "13197": "pressure:RCA:J_heart_inlet", + "13198": "pressure:RCA:J_heart_inlet", + "13199": "pressure:RCA:J_heart_inlet", + "13200": "pressure:RCA:J_heart_inlet", + "13201": "pressure:RCA:J_heart_inlet", + "13202": "pressure:RCA:J_heart_inlet", + "13203": "pressure:RCA:J_heart_inlet", + "13204": "pressure:RCA:J_heart_inlet", + "13205": "pressure:RCA:J_heart_inlet", + "13206": "pressure:RCA:J_heart_inlet", + "13207": "pressure:RCA:J_heart_inlet", + "13208": "pressure:RCA:J_heart_inlet", + "13209": "pressure:RCA:J_heart_inlet", + "13210": "pressure:RCA:J_heart_inlet", + "13211": "pressure:RCA:J_heart_inlet", + "13212": "pressure:RCA:J_heart_inlet", + "13213": "pressure:RCA:J_heart_inlet", + "13214": "pressure:RCA:J_heart_inlet", + "13215": "pressure:RCA:J_heart_inlet", + "13216": "pressure:RCA:J_heart_inlet", + "13217": "pressure:RCA:J_heart_inlet", + "13218": "pressure:RCA:J_heart_inlet", + "13219": "pressure:RCA:J_heart_inlet", + "13220": "pressure:RCA:J_heart_inlet", + "13221": "pressure:RCA:J_heart_inlet", + "13222": "pressure:RCA:J_heart_inlet", + "13223": "pressure:RCA:J_heart_inlet", + "13224": "pressure:RCA:J_heart_inlet", + "13225": "pressure:RCA:J_heart_inlet", + "13226": "pressure:RCA:J_heart_inlet", + "13227": "pressure:RCA:J_heart_inlet", + "13228": "pressure:RCA:J_heart_inlet", + "13229": "pressure:RCA:J_heart_inlet", + "13230": "pressure:RCA:J_heart_inlet", + "13231": "pressure:RCA:J_heart_inlet", + "13232": "pressure:RCA:J_heart_inlet", + "13233": "pressure:RCA:J_heart_inlet", + "13234": "pressure:RCA:J_heart_inlet", + "13235": "pressure:RCA:J_heart_inlet", + "13236": "pressure:RCA:J_heart_inlet", + "13237": "pressure:RCA:J_heart_inlet", + "13238": "pressure:RCA:J_heart_inlet", + "13239": "pressure:RCA:J_heart_inlet", + "13240": "pressure:RCA:J_heart_inlet", + "13241": "pressure:RCA:J_heart_inlet", + "13242": "pressure:RCA:J_heart_inlet", + "13243": "pressure:RCA:J_heart_inlet", + "13244": "pressure:RCA:J_heart_inlet", + "13245": "pressure:RCA:J_heart_inlet", + "13246": "pressure:RCA:J_heart_inlet", + "13247": "pressure:RCA:J_heart_inlet", + "13248": "pressure:RCA:J_heart_inlet", + "13249": "pressure:RCA:J_heart_inlet", + "13250": "pressure:RCA:J_heart_inlet", + "13251": "pressure:RCA:J_heart_inlet", + "13252": "pressure:RCA:J_heart_inlet", + "13253": "pressure:RCA:J_heart_inlet", + "13254": "pressure:RCA:J_heart_inlet", + "13255": "pressure:RCA:J_heart_inlet", + "13256": "pressure:RCA:J_heart_inlet", + "13257": "pressure:RCA:J_heart_inlet", + "13258": "pressure:RCA:J_heart_inlet", + "13259": "pressure:RCA:J_heart_inlet", + "13260": "pressure:RCA:J_heart_inlet", + "13261": "pressure:RCA:J_heart_inlet", + "13262": "pressure:RCA:J_heart_inlet", + "13263": "pressure:RCA:J_heart_inlet", + "13264": "pressure:RCA:J_heart_inlet", + "13265": "pressure:RCA:J_heart_inlet", + "13266": "pressure:RCA:J_heart_inlet", + "13267": "pressure:RCA:J_heart_inlet", + "13268": "pressure:RCA:J_heart_inlet", + "13269": "pressure:RCA:J_heart_inlet", + "13270": "pressure:RCA:J_heart_inlet", + "13271": "pressure:RCA:J_heart_inlet", + "13272": "pressure:RCA:J_heart_inlet", + "13273": "pressure:RCA:J_heart_inlet", + "13274": "pressure:RCA:J_heart_inlet", + "13275": "pressure:RCA:J_heart_inlet", + "13276": "pressure:RCA:J_heart_inlet", + "13277": "pressure:RCA:J_heart_inlet", + "13278": "pressure:RCA:J_heart_inlet", + "13279": "pressure:RCA:J_heart_inlet", + "13280": "pressure:RCA:J_heart_inlet", + "13281": "pressure:RCA:J_heart_inlet", + "13282": "pressure:RCA:J_heart_inlet", + "13283": "pressure:RCA:J_heart_inlet", + "13284": "pressure:RCA:J_heart_inlet", + "13285": "pressure:RCA:J_heart_inlet", + "13286": "pressure:RCA:J_heart_inlet", + "13287": "pressure:RCA:J_heart_inlet", + "13288": "pressure:RCA:J_heart_inlet", + "13289": "pressure:RCA:J_heart_inlet", + "13290": "pressure:RCA:J_heart_inlet", + "13291": "pressure:RCA:J_heart_inlet", + "13292": "pressure:RCA:J_heart_inlet", + "13293": "pressure:RCA:J_heart_inlet", + "13294": "pressure:RCA:J_heart_inlet", + "13295": "pressure:RCA:J_heart_inlet", + "13296": "pressure:RCA:J_heart_inlet", + "13297": "pressure:RCA:J_heart_inlet", + "13298": "pressure:RCA:J_heart_inlet", + "13299": "pressure:RCA:J_heart_inlet", + "13300": "pressure:RCA:J_heart_inlet", + "13301": "pressure:RCA:J_heart_inlet", + "13302": "pressure:RCA:J_heart_inlet", + "13303": "pressure:RCA:J_heart_inlet", + "13304": "pressure:RCA:J_heart_inlet", + "13305": "pressure:RCA:J_heart_inlet", + "13306": "pressure:RCA:J_heart_inlet", + "13307": "pressure:RCA:J_heart_inlet", + "13308": "pressure:RCA:J_heart_inlet", + "13309": "pressure:RCA:J_heart_inlet", + "13310": "pressure:RCA:J_heart_inlet", + "13311": "pressure:RCA:J_heart_inlet", + "13312": "pressure:RCA:J_heart_inlet", + "13313": "pressure:RCA:J_heart_inlet", + "13314": "pressure:RCA:J_heart_inlet", + "13315": "pressure:RCA:J_heart_inlet", + "13316": "pressure:RCA:J_heart_inlet", + "13317": "pressure:RCA:J_heart_inlet", + "13318": "pressure:RCA:J_heart_inlet", + "13319": "pressure:RCA:J_heart_inlet", + "13320": "pressure:RCA:J_heart_inlet", + "13321": "pressure:RCA:J_heart_inlet", + "13322": "pressure:RCA:J_heart_inlet", + "13323": "pressure:RCA:J_heart_inlet", + "13324": "pressure:RCA:J_heart_inlet", + "13325": "pressure:RCA:J_heart_inlet", + "13326": "pressure:RCA:J_heart_inlet", + "13327": "pressure:RCA:J_heart_inlet", + "13328": "pressure:RCA:J_heart_inlet", + "13329": "pressure:RCA:J_heart_inlet", + "13330": "pressure:RCA:J_heart_inlet", + "13331": "pressure:RCA:J_heart_inlet", + "13332": "pressure:RCA:J_heart_inlet", + "13333": "pressure:RCA:J_heart_inlet", + "13334": "pressure:RCA:J_heart_inlet", + "13335": "pressure:RCA:J_heart_inlet", + "13336": "pressure:RCA:J_heart_inlet", + "13337": "pressure:RCA:J_heart_inlet", + "13338": "pressure:RCA:J_heart_inlet", + "13339": "pressure:RCA:J_heart_inlet", + "13340": "pressure:RCA:J_heart_inlet", + "13341": "pressure:RCA:J_heart_inlet", + "13342": "pressure:RCA:J_heart_inlet", + "13343": "pressure:RCA:J_heart_inlet", + "13344": "pressure:RCA:J_heart_inlet", + "13345": "pressure:RCA:J_heart_inlet", + "13346": "pressure:RCA:J_heart_inlet", + "13347": "pressure:RCA:J_heart_inlet", + "13348": "pressure:RCA:J_heart_inlet", + "13349": "pressure:RCA:J_heart_inlet", + "13350": "pressure:RCA:J_heart_inlet", + "13351": "pressure:RCA:J_heart_inlet", + "13352": "pressure:RCA:J_heart_inlet", + "13353": "pressure:RCA:J_heart_inlet", + "13354": "pressure:RCA:J_heart_inlet", + "13355": "pressure:RCA:J_heart_inlet", + "13356": "pressure:RCA:J_heart_inlet", + "13357": "pressure:RCA:J_heart_inlet", + "13358": "pressure:RCA:J_heart_inlet", + "13359": "pressure:RCA:J_heart_inlet", + "13360": "pressure:RCA:J_heart_inlet", + "13361": "pressure:RCA:J_heart_inlet", + "13362": "pressure:RCA:J_heart_inlet", + "13363": "pressure:RCA:J_heart_inlet", + "13364": "pressure:RCA:J_heart_inlet", + "13365": "pressure:RCA:J_heart_inlet", + "13366": "pressure:RCA:J_heart_inlet", + "13367": "pressure:RCA:J_heart_inlet", + "13368": "pressure:RCA:J_heart_inlet", + "13369": "pressure:RCA:J_heart_inlet", + "13370": "pressure:RCA:J_heart_inlet", + "13371": "pressure:RCA:J_heart_inlet", + "13372": "pressure:RCA:J_heart_inlet", + "13373": "pressure:RCA:J_heart_inlet", + "13374": "pressure:RCA:J_heart_inlet", + "13375": "pressure:RCA:J_heart_inlet", + "13376": "pressure:RCA:J_heart_inlet", + "13377": "pressure:RCA:J_heart_inlet", + "13378": "pressure:RCA:J_heart_inlet", + "13379": "pressure:RCA:J_heart_inlet", + "13380": "pressure:RCA:J_heart_inlet", + "13381": "pressure:RCA:J_heart_inlet", + "13382": "pressure:RCA:J_heart_inlet", + "13383": "pressure:RCA:J_heart_inlet", + "13384": "pressure:RCA:J_heart_inlet", + "13385": "pressure:RCA:J_heart_inlet", + "13386": "pressure:RCA:J_heart_inlet", + "13387": "pressure:RCA:J_heart_inlet", + "13388": "pressure:RCA:J_heart_inlet", + "13389": "pressure:RCA:J_heart_inlet", + "13390": "pressure:RCA:J_heart_inlet", + "13391": "pressure:RCA:J_heart_inlet", + "13392": "pressure:RCA:J_heart_inlet", + "13393": "pressure:RCA:J_heart_inlet", + "13394": "pressure:RCA:J_heart_inlet", + "13395": "pressure:RCA:J_heart_inlet", + "13396": "pressure:RCA:J_heart_inlet", + "13397": "pressure:RCA:J_heart_inlet", + "13398": "pressure:RCA:J_heart_inlet", + "13399": "pressure:RCA:J_heart_inlet", + "13400": "pressure:RCA:J_heart_inlet", + "13401": "pressure:RCA:J_heart_inlet", + "13402": "pressure:RCA:J_heart_inlet", + "13403": "pressure:RCA:J_heart_inlet", + "13404": "pressure:RCA:J_heart_inlet", + "13405": "pressure:RCA:J_heart_inlet", + "13406": "pressure:RCA:J_heart_inlet", + "13407": "pressure:RCA:J_heart_inlet", + "13408": "pressure:RCA:J_heart_inlet", + "13409": "pressure:RCA:J_heart_inlet", + "13410": "pressure:RCA:J_heart_inlet", + "13411": "pressure:RCA:J_heart_inlet", + "13412": "pressure:RCA:J_heart_inlet", + "13413": "pressure:RCA:J_heart_inlet", + "13414": "pressure:RCA:J_heart_inlet", + "13415": "pressure:RCA:J_heart_inlet", + "13416": "pressure:RCA:J_heart_inlet", + "13417": "pressure:RCA:J_heart_inlet", + "13418": "pressure:RCA:J_heart_inlet", + "13419": "pressure:RCA:J_heart_inlet", + "13420": "pressure:RCA:J_heart_inlet", + "13421": "pressure:RCA:J_heart_inlet", + "13422": "pressure:RCA:J_heart_inlet", + "13423": "pressure:RCA:J_heart_inlet", + "13424": "pressure:RCA:J_heart_inlet", + "13425": "pressure:RCA:J_heart_inlet", + "13426": "pressure:RCA:J_heart_inlet", + "13427": "pressure:RCA:J_heart_inlet", + "13428": "pressure:RCA:J_heart_inlet", + "13429": "pressure:RCA:J_heart_inlet", + "13430": "pressure:RCA:J_heart_inlet", + "13431": "pressure:RCA:J_heart_inlet", + "13432": "pressure:RCA:J_heart_inlet", + "13433": "pressure:RCA:J_heart_inlet", + "13434": "pressure:RCA:J_heart_inlet", + "13435": "pressure:RCA:J_heart_inlet", + "13436": "pressure:RCA:J_heart_inlet", + "13437": "pressure:RCA:J_heart_inlet", + "13438": "pressure:RCA:J_heart_inlet", + "13439": "pressure:RCA:J_heart_inlet", + "13440": "pressure:RCA:J_heart_inlet", + "13441": "pressure:RCA:J_heart_inlet", + "13442": "pressure:RCA:J_heart_inlet", + "13443": "pressure:RCA:J_heart_inlet", + "13444": "pressure:RCA:J_heart_inlet", + "13445": "pressure:RCA:J_heart_inlet", + "13446": "pressure:RCA:J_heart_inlet", + "13447": "pressure:RCA:J_heart_inlet", + "13448": "pressure:RCA:J_heart_inlet", + "13449": "pressure:RCA:J_heart_inlet", + "13450": "pressure:RCA:J_heart_inlet", + "13451": "pressure:RCA:J_heart_inlet", + "13452": "pressure:RCA:J_heart_inlet", + "13453": "pressure:RCA:J_heart_inlet", + "13454": "pressure:RCA:J_heart_inlet", + "13455": "pressure:RCA:J_heart_inlet", + "13456": "pressure:RCA:J_heart_inlet", + "13457": "pressure:RCA:J_heart_inlet", + "13458": "pressure:RCA:J_heart_inlet", + "13459": "pressure:RCA:J_heart_inlet", + "13460": "pressure:RCA:J_heart_inlet", + "13461": "pressure:RCA:J_heart_inlet", + "13462": "pressure:RCA:J_heart_inlet", + "13463": "pressure:RCA:J_heart_inlet", + "13464": "pressure:RCA:J_heart_inlet", + "13465": "pressure:RCA:J_heart_inlet", + "13466": "pressure:RCA:J_heart_inlet", + "13467": "pressure:RCA:J_heart_inlet", + "13468": "pressure:RCA:J_heart_inlet", + "13469": "pressure:RCA:J_heart_inlet", + "13470": "pressure:RCA:J_heart_inlet", + "13471": "pressure:RCA:J_heart_inlet", + "13472": "pressure:RCA:J_heart_inlet", + "13473": "pressure:RCA:J_heart_inlet", + "13474": "pressure:RCA:J_heart_inlet", + "13475": "pressure:RCA:J_heart_inlet", + "13476": "pressure:RCA:J_heart_inlet", + "13477": "pressure:RCA:J_heart_inlet", + "13478": "pressure:RCA:J_heart_inlet", + "13479": "pressure:RCA:J_heart_inlet", + "13480": "pressure:RCA:J_heart_inlet", + "13481": "pressure:RCA:J_heart_inlet", + "13482": "pressure:RCA:J_heart_inlet", + "13483": "pressure:RCA:J_heart_inlet", + "13484": "pressure:RCA:J_heart_inlet", + "13485": "pressure:RCA:J_heart_inlet", + "13486": "pressure:RCA:J_heart_inlet", + "13487": "pressure:RCA:J_heart_inlet", + "13488": "pressure:RCA:J_heart_inlet", + "13489": "pressure:RCA:J_heart_inlet", + "13490": "pressure:RCA:J_heart_inlet", + "13491": "pressure:RCA:J_heart_inlet", + "13492": "pressure:RCA:J_heart_inlet", + "13493": "pressure:RCA:J_heart_inlet", + "13494": "pressure:RCA:J_heart_inlet", + "13495": "pressure:RCA:J_heart_inlet", + "13496": "pressure:RCA:J_heart_inlet", + "13497": "pressure:RCA:J_heart_inlet", + "13498": "pressure:RCA:J_heart_inlet", + "13499": "pressure:RCA:J_heart_inlet", + "13500": "pressure:RCA:J_heart_inlet", + "13501": "pressure:RCA:J_heart_inlet", + "13502": "pressure:RCA:J_heart_inlet", + "13503": "pressure:RCA:J_heart_inlet", + "13504": "pressure:RCA:J_heart_inlet", + "13505": "pressure:RCA:J_heart_inlet", + "13506": "pressure:RCA:J_heart_inlet", + "13507": "pressure:RCA:J_heart_inlet", + "13508": "pressure:RCA:J_heart_inlet", + "13509": "pressure:RCA:J_heart_inlet", + "13510": "pressure:RCA:J_heart_inlet", + "13511": "pressure:RCA:J_heart_inlet", + "13512": "pressure:RCA:J_heart_inlet", + "13513": "pressure:RCA:J_heart_inlet", + "13514": "pressure:RCA:J_heart_inlet", + "13515": "pressure:RCA:J_heart_inlet", + "13516": "pressure:RCA:J_heart_inlet", + "13517": "pressure:RCA:J_heart_inlet", + "13518": "pressure:RCA:J_heart_inlet", + "13519": "pressure:RCA:J_heart_inlet", + "13520": "pressure:RCA:J_heart_inlet", + "13521": "pressure:RCA:J_heart_inlet", + "13522": "pressure:RCA:J_heart_inlet", + "13523": "pressure:RCA:J_heart_inlet", + "13524": "pressure:RCA:J_heart_inlet", + "13525": "pressure:RCA:J_heart_inlet", + "13526": "pressure:RCA:J_heart_inlet", + "13527": "pressure:RCA:J_heart_inlet", + "13528": "pressure:RCA:J_heart_inlet", + "13529": "pressure:RCA:J_heart_inlet", + "13530": "pressure:RCA:J_heart_inlet", + "13531": "pressure:RCA:J_heart_inlet", + "13532": "pressure:RCA:J_heart_inlet", + "13533": "pressure:RCA:J_heart_inlet", + "13534": "pressure:RCA:J_heart_inlet", + "13535": "pressure:RCA:J_heart_inlet", + "13536": "pressure:RCA:J_heart_inlet", + "13537": "pressure:RCA:J_heart_inlet", + "13538": "pressure:RCA:J_heart_inlet", + "13539": "pressure:RCA:J_heart_inlet", + "13540": "pressure:RCA:J_heart_inlet", + "13541": "pressure:RCA:J_heart_inlet", + "13542": "pressure:RCA:J_heart_inlet", + "13543": "pressure:RCA:J_heart_inlet", + "13544": "pressure:RCA:J_heart_inlet", + "13545": "pressure:RCA:J_heart_inlet", + "13546": "pressure:RCA:J_heart_inlet", + "13547": "pressure:RCA:J_heart_inlet", + "13548": "pressure:RCA:J_heart_inlet", + "13549": "pressure:RCA:J_heart_inlet", + "13550": "pressure:RCA:J_heart_inlet", + "13551": "pressure:RCA:J_heart_inlet", + "13552": "pressure:RCA:J_heart_inlet", + "13553": "pressure:RCA:J_heart_inlet", + "13554": "pressure:RCA:J_heart_inlet", + "13555": "pressure:RCA:J_heart_inlet", + "13556": "pressure:RCA:J_heart_inlet", + "13557": "pressure:RCA:J_heart_inlet", + "13558": "pressure:RCA:J_heart_inlet", + "13559": "pressure:RCA:J_heart_inlet", + "13560": "pressure:RCA:J_heart_inlet", + "13561": "pressure:RCA:J_heart_inlet", + "13562": "pressure:RCA:J_heart_inlet", + "13563": "pressure:RCA:J_heart_inlet", + "13564": "pressure:RCA:J_heart_inlet", + "13565": "pressure:RCA:J_heart_inlet", + "13566": "pressure:RCA:J_heart_inlet", + "13567": "pressure:RCA:J_heart_inlet", + "13568": "pressure:RCA:J_heart_inlet", + "13569": "pressure:RCA:J_heart_inlet", + "13570": "pressure:RCA:J_heart_inlet", + "13571": "pressure:RCA:J_heart_inlet", + "13572": "pressure:RCA:J_heart_inlet", + "13573": "pressure:RCA:J_heart_inlet", + "13574": "pressure:RCA:J_heart_inlet", + "13575": "pressure:RCA:J_heart_inlet", + "13576": "pressure:RCA:J_heart_inlet", + "13577": "pressure:RCA:J_heart_inlet", + "13578": "pressure:RCA:J_heart_inlet", + "13579": "pressure:RCA:J_heart_inlet", + "13580": "pressure:RCA:J_heart_inlet", + "13581": "pressure:RCA:J_heart_inlet", + "13582": "pressure:RCA:J_heart_inlet", + "13583": "pressure:RCA:J_heart_inlet", + "13584": "pressure:RCA:J_heart_inlet", + "13585": "pressure:RCA:J_heart_inlet", + "13586": "pressure:RCA:J_heart_inlet", + "13587": "pressure:RCA:J_heart_inlet", + "13588": "pressure:RCA:J_heart_inlet", + "13589": "pressure:RCA:J_heart_inlet", + "13590": "pressure:RCA:J_heart_inlet", + "13591": "pressure:RCA:J_heart_inlet", + "13592": "pressure:RCA:J_heart_inlet", + "13593": "pressure:RCA:J_heart_inlet", + "13594": "pressure:RCA:J_heart_inlet", + "13595": "pressure:RCA:J_heart_inlet", + "13596": "pressure:RCA:J_heart_inlet", + "13597": "pressure:RCA:J_heart_inlet", + "13598": "pressure:RCA:J_heart_inlet", + "13599": "pressure:RCA:J_heart_inlet", + "13600": "pressure:RCA:J_heart_inlet", + "13601": "pressure:RCA:J_heart_inlet", + "13602": "pressure:RCA:J_heart_inlet", + "13603": "pressure:RCA:J_heart_inlet", + "13604": "pressure:RCA:J_heart_inlet", + "13605": "pressure:RCA:J_heart_inlet", + "13606": "pressure:RCA:J_heart_inlet", + "13607": "pressure:RCA:J_heart_inlet", + "13608": "pressure:RCA:J_heart_inlet", + "13609": "pressure:RCA:J_heart_inlet", + "13610": "pressure:RCA:J_heart_inlet", + "13611": "pressure:RCA:J_heart_inlet", + "13612": "pressure:RCA:J_heart_inlet", + "13613": "pressure:RCA:J_heart_inlet", + "13614": "pressure:RCA:J_heart_inlet", + "13615": "pressure:RCA:J_heart_inlet", + "13616": "pressure:RCA:J_heart_inlet", + "13617": "pressure:RCA:J_heart_inlet", + "13618": "pressure:RCA:J_heart_inlet", + "13619": "pressure:RCA:J_heart_inlet", + "13620": "pressure:RCA:J_heart_inlet", + "13621": "pressure:RCA:J_heart_inlet", + "13622": "pressure:RCA:J_heart_inlet", + "13623": "pressure:RCA:J_heart_inlet", + "13624": "pressure:RCA:J_heart_inlet", + "13625": "pressure:RCA:J_heart_inlet", + "13626": "pressure:RCA:J_heart_inlet", + "13627": "pressure:RCA:J_heart_inlet", + "13628": "pressure:RCA:J_heart_inlet", + "13629": "pressure:RCA:J_heart_inlet", + "13630": "pressure:RCA:J_heart_inlet", + "13631": "pressure:RCA:J_heart_inlet", + "13632": "pressure:RCA:J_heart_inlet", + "13633": "pressure:RCA:J_heart_inlet", + "13634": "pressure:RCA:J_heart_inlet", + "13635": "pressure:RCA:J_heart_inlet", + "13636": "pressure:RCA:J_heart_inlet", + "13637": "pressure:RCA:J_heart_inlet", + "13638": "pressure:RCA:J_heart_inlet", + "13639": "pressure:RCA:J_heart_inlet", + "13640": "pressure:RCA:J_heart_inlet", + "13641": "pressure:RCA:J_heart_inlet", + "13642": "pressure:RCA:J_heart_inlet", + "13643": "pressure:RCA:J_heart_inlet", + "13644": "pressure:RCA:J_heart_inlet", + "13645": "pressure:RCA:J_heart_inlet", + "13646": "pressure:RCA:J_heart_inlet", + "13647": "pressure:RCA:J_heart_inlet", + "13648": "pressure:RCA:J_heart_inlet", + "13649": "pressure:RCA:J_heart_inlet", + "13650": "pressure:RCA:J_heart_inlet", + "13651": "pressure:RCA:J_heart_inlet", + "13652": "pressure:RCA:J_heart_inlet", + "13653": "pressure:RCA:J_heart_inlet", + "13654": "pressure:RCA:J_heart_inlet", + "13655": "pressure:RCA:J_heart_inlet", + "13656": "pressure:RCA:J_heart_inlet", + "13657": "pressure:RCA:J_heart_inlet", + "13658": "pressure:RCA:J_heart_inlet", + "13659": "pressure:RCA:J_heart_inlet", + "13660": "pressure:RCA:J_heart_inlet", + "13661": "pressure:RCA:J_heart_inlet", + "13662": "pressure:RCA:J_heart_inlet", + "13663": "pressure:RCA:J_heart_inlet", + "13664": "pressure:RCA:J_heart_inlet", + "13665": "pressure:RCA:J_heart_inlet", + "13666": "pressure:RCA:J_heart_inlet", + "13667": "pressure:RCA:J_heart_inlet", + "13668": "pressure:RCA:J_heart_inlet", + "13669": "pressure:RCA:J_heart_inlet", + "13670": "pressure:RCA:J_heart_inlet", + "13671": "pressure:RCA:J_heart_inlet", + "13672": "pressure:RCA:J_heart_inlet", + "13673": "pressure:RCA:J_heart_inlet", + "13674": "pressure:RCA:J_heart_inlet", + "13675": "pressure:RCA:J_heart_inlet", + "13676": "pressure:RCA:J_heart_inlet", + "13677": "pressure:RCA:J_heart_inlet", + "13678": "pressure:RCA:J_heart_inlet", + "13679": "pressure:RCA:J_heart_inlet", + "13680": "pressure:RCA:J_heart_inlet", + "13681": "pressure:RCA:J_heart_inlet", + "13682": "pressure:RCA:J_heart_inlet", + "13683": "pressure:RCA:J_heart_inlet", + "13684": "pressure:RCA:J_heart_inlet", + "13685": "pressure:RCA:J_heart_inlet", + "13686": "pressure:RCA:J_heart_inlet", + "13687": "pressure:RCA:J_heart_inlet", + "13688": "pressure:RCA:J_heart_inlet", + "13689": "pressure:RCA:J_heart_inlet", + "13690": "pressure:RCA:J_heart_inlet", + "13691": "pressure:RCA:J_heart_inlet", + "13692": "pressure:RCA:J_heart_inlet", + "13693": "pressure:RCA:J_heart_inlet", + "13694": "pressure:RCA:J_heart_inlet", + "13695": "pressure:RCA:J_heart_inlet", + "13696": "pressure:RCA:J_heart_inlet", + "13697": "pressure:RCA:J_heart_inlet", + "13698": "pressure:RCA:J_heart_inlet", + "13699": "pressure:RCA:J_heart_inlet", + "13700": "pressure:RCA:J_heart_inlet", + "13701": "pressure:RCA:J_heart_inlet", + "13702": "pressure:RCA:J_heart_inlet", + "13703": "pressure:RCA:J_heart_inlet", + "13704": "pressure:RCA:J_heart_inlet", + "13705": "pressure:RCA:J_heart_inlet", + "13706": "pressure:RCA:J_heart_inlet", + "13707": "pressure:RCA:J_heart_inlet", + "13708": "pressure:RCA:J_heart_inlet", + "13709": "pressure:RCA:J_heart_inlet", + "13710": "pressure:RCA:J_heart_inlet", + "13711": "pressure:RCA:J_heart_inlet", + "13712": "pressure:RCA:J_heart_inlet", + "13713": "pressure:RCA:J_heart_inlet", + "13714": "pressure:RCA:J_heart_inlet", + "13715": "pressure:RCA:J_heart_inlet", + "13716": "pressure:RCA:J_heart_inlet", + "13717": "pressure:RCA:J_heart_inlet", + "13718": "pressure:RCA:J_heart_inlet", + "13719": "pressure:RCA:J_heart_inlet", + "13720": "pressure:RCA:J_heart_inlet", + "13721": "pressure:RCA:J_heart_inlet", + "13722": "pressure:RCA:J_heart_inlet", + "13723": "pressure:RCA:J_heart_inlet", + "13724": "pressure:RCA:J_heart_inlet", + "13725": "pressure:RCA:J_heart_inlet", + "13726": "pressure:RCA:J_heart_inlet", + "13727": "pressure:RCA:J_heart_inlet", + "13728": "pressure:RCA:J_heart_inlet", + "13729": "pressure:RCA:J_heart_inlet", + "13730": "pressure:RCA:J_heart_inlet", + "13731": "pressure:RCA:J_heart_inlet", + "13732": "pressure:RCA:J_heart_inlet", + "13733": "pressure:RCA:J_heart_inlet", + "13734": "pressure:RCA:J_heart_inlet", + "13735": "pressure:RCA:J_heart_inlet", + "13736": "pressure:RCA:J_heart_inlet", + "13737": "pressure:RCA:J_heart_inlet", + "13738": "pressure:RCA:J_heart_inlet", + "13739": "pressure:RCA:J_heart_inlet", + "13740": "pressure:RCA:J_heart_inlet", + "13741": "pressure:RCA:J_heart_inlet", + "13742": "pressure:RCA:J_heart_inlet", + "13743": "pressure:RCA:J_heart_inlet", + "13744": "pressure:RCA:J_heart_inlet", + "13745": "pressure:RCA:J_heart_inlet", + "13746": "pressure:RCA:J_heart_inlet", + "13747": "pressure:RCA:J_heart_inlet", + "13748": "pressure:RCA:J_heart_inlet", + "13749": "pressure:RCA:J_heart_inlet", + "13750": "pressure:RCA:J_heart_inlet", + "13751": "pressure:RCA:J_heart_inlet", + "13752": "pressure:RCA:J_heart_inlet", + "13753": "pressure:RCA:J_heart_inlet", + "13754": "pressure:RCA:J_heart_inlet", + "13755": "pressure:RCA:J_heart_inlet", + "13756": "pressure:RCA:J_heart_inlet", + "13757": "pressure:RCA:J_heart_inlet", + "13758": "pressure:RCA:J_heart_inlet", + "13759": "pressure:RCA:J_heart_inlet", + "13760": "pressure:RCA:J_heart_inlet", + "13761": "pressure:RCA:J_heart_inlet", + "13762": "pressure:RCA:J_heart_inlet", + "13763": "pressure:RCA:J_heart_inlet", + "13764": "pressure:RCA:J_heart_inlet", + "13765": "pressure:RCA:J_heart_inlet", + "13766": "pressure:RCA:J_heart_inlet", + "13767": "pressure:RCA:J_heart_inlet", + "13768": "pressure:RCA:J_heart_inlet", + "13769": "pressure:RCA:J_heart_inlet", + "13770": "pressure:RCA:J_heart_inlet", + "13771": "pressure:RCA:J_heart_inlet", + "13772": "pressure:RCA:J_heart_inlet", + "13773": "pressure:RCA:J_heart_inlet", + "13774": "pressure:RCA:J_heart_inlet", + "13775": "pressure:RCA:J_heart_inlet", + "13776": "pressure:RCA:J_heart_inlet", + "13777": "pressure:RCA:J_heart_inlet", + "13778": "pressure:RCA:J_heart_inlet", + "13779": "pressure:RCA:J_heart_inlet", + "13780": "pressure:RCA:J_heart_inlet", + "13781": "pressure:RCA:J_heart_inlet", + "13782": "pressure:RCA:J_heart_inlet", + "13783": "pressure:RCA:J_heart_inlet", + "13784": "pressure:RCA:J_heart_inlet", + "13785": "pressure:RCA:J_heart_inlet", + "13786": "pressure:RCA:J_heart_inlet", + "13787": "pressure:RCA:J_heart_inlet", + "13788": "pressure:RCA:J_heart_inlet", + "13789": "pressure:RCA:J_heart_inlet", + "13790": "pressure:RCA:J_heart_inlet", + "13791": "pressure:RCA:J_heart_inlet", + "13792": "pressure:RCA:J_heart_inlet", + "13793": "pressure:RCA:J_heart_inlet", + "13794": "pressure:RCA:J_heart_inlet", + "13795": "pressure:RCA:J_heart_inlet", + "13796": "pressure:RCA:J_heart_inlet", + "13797": "pressure:RCA:J_heart_inlet", + "13798": "pressure:RCA:J_heart_inlet", + "13799": "pressure:RCA:J_heart_inlet", + "13800": "pressure:RCA:J_heart_inlet", + "13801": "pressure:RCA:J_heart_inlet", + "13802": "pressure:RCA:J_heart_inlet", + "13803": "pressure:RCA:J_heart_inlet", + "13804": "pressure:RCA:J_heart_inlet", + "13805": "pressure:RCA:J_heart_inlet", + "13806": "pressure:RCA:J_heart_inlet", + "13807": "pressure:RCA:J_heart_inlet", + "13808": "pressure:RCA:J_heart_inlet", + "13809": "pressure:RCA:J_heart_inlet", + "13810": "pressure:RCA:J_heart_inlet", + "13811": "pressure:RCA:J_heart_inlet", + "13812": "pressure:RCA:J_heart_inlet", + "13813": "pressure:RCA:J_heart_inlet", + "13814": "pressure:RCA:J_heart_inlet", + "13815": "pressure:RCA:J_heart_inlet", + "13816": "pressure:RCA:J_heart_inlet", + "13817": "pressure:RCA:J_heart_inlet", + "13818": "pressure:RCA:J_heart_inlet", + "13819": "pressure:RCA:J_heart_inlet", + "13820": "pressure:RCA:J_heart_inlet", + "13821": "pressure:RCA:J_heart_inlet", + "13822": "pressure:RCA:J_heart_inlet", + "13823": "pressure:RCA:J_heart_inlet", + "13824": "pressure:RCA:J_heart_inlet", + "13825": "pressure:RCA:J_heart_inlet", + "13826": "pressure:RCA:J_heart_inlet", + "13827": "pressure:RCA:J_heart_inlet", + "13828": "pressure:RCA:J_heart_inlet", + "13829": "pressure:RCA:J_heart_inlet", + "13830": "pressure:RCA:J_heart_inlet", + "13831": "pressure:RCA:J_heart_inlet", + "13832": "pressure:RCA:J_heart_inlet", + "13833": "pressure:RCA:J_heart_inlet", + "13834": "pressure:RCA:J_heart_inlet", + "13835": "pressure:RCA:J_heart_inlet", + "13836": "pressure:RCA:J_heart_inlet", + "13837": "pressure:RCA:J_heart_inlet", + "13838": "pressure:RCA:J_heart_inlet", + "13839": "pressure:RCA:J_heart_inlet", + "13840": "pressure:RCA:J_heart_inlet", + "13841": "pressure:RCA:J_heart_inlet", + "13842": "pressure:RCA:J_heart_inlet", + "13843": "pressure:RCA:J_heart_inlet", + "13844": "pressure:RCA:J_heart_inlet", + "13845": "pressure:RCA:J_heart_inlet", + "13846": "pressure:RCA:J_heart_inlet", + "13847": "pressure:RCA:J_heart_inlet", + "13848": "pressure:RCA:J_heart_inlet", + "13849": "pressure:RCA:J_heart_inlet", + "13850": "pressure:RCA:J_heart_inlet", + "13851": "pressure:RCA:J_heart_inlet", + "13852": "pressure:RCA:J_heart_inlet", + "13853": "pressure:RCA:J_heart_inlet", + "13854": "pressure:RCA:J_heart_inlet", + "13855": "pressure:RCA:J_heart_inlet", + "13856": "pressure:RCA:J_heart_inlet", + "13857": "pressure:RCA:J_heart_inlet", + "13858": "pressure:RCA:J_heart_inlet", + "13859": "pressure:RCA:J_heart_inlet", + "13860": "pressure:RCA:J_heart_inlet", + "13861": "pressure:RCA:J_heart_inlet", + "13862": "pressure:RCA:J_heart_inlet", + "13863": "pressure:RCA:J_heart_inlet", + "13864": "pressure:RCA:J_heart_inlet", + "13865": "pressure:RCA:J_heart_inlet", + "13866": "pressure:RCA:J_heart_inlet", + "13867": "pressure:RCA:J_heart_inlet", + "13868": "pressure:RCA:J_heart_inlet", + "13869": "pressure:RCA:J_heart_inlet", + "13870": "pressure:RCA:J_heart_inlet", + "13871": "pressure:RCA:J_heart_inlet", + "13872": "pressure:RCA:J_heart_inlet", + "13873": "pressure:RCA:J_heart_inlet", + "13874": "pressure:RCA:J_heart_inlet", + "13875": "pressure:RCA:J_heart_inlet", + "13876": "pressure:RCA:J_heart_inlet", + "13877": "pressure:RCA:J_heart_inlet", + "13878": "pressure:RCA:J_heart_inlet", + "13879": "pressure:RCA:J_heart_inlet", + "13880": "pressure:RCA:J_heart_inlet", + "13881": "pressure:RCA:J_heart_inlet", + "13882": "pressure:RCA:J_heart_inlet", + "13883": "pressure:RCA:J_heart_inlet", + "13884": "pressure:RCA:J_heart_inlet", + "13885": "pressure:RCA:J_heart_inlet", + "13886": "pressure:RCA:J_heart_inlet", + "13887": "pressure:RCA:J_heart_inlet", + "13888": "pressure:RCA:J_heart_inlet", + "13889": "pressure:RCA:J_heart_inlet", + "13890": "pressure:RCA:J_heart_inlet", + "13891": "pressure:RCA:J_heart_inlet", + "13892": "pressure:RCA:J_heart_inlet", + "13893": "pressure:RCA:J_heart_inlet", + "13894": "pressure:RCA:J_heart_inlet", + "13895": "pressure:RCA:J_heart_inlet", + "13896": "pressure:RCA:J_heart_inlet", + "13897": "pressure:RCA:J_heart_inlet", + "13898": "pressure:RCA:J_heart_inlet", + "13899": "pressure:RCA:J_heart_inlet", + "13900": "pressure:RCA:J_heart_inlet", + "13901": "pressure:RCA:J_heart_inlet", + "13902": "pressure:RCA:J_heart_inlet", + "13903": "pressure:RCA:J_heart_inlet", + "13904": "pressure:RCA:J_heart_inlet", + "13905": "pressure:RCA:J_heart_inlet", + "13906": "pressure:RCA:J_heart_inlet", + "13907": "pressure:RCA:J_heart_inlet", + "13908": "pressure:RCA:J_heart_inlet", + "13909": "pressure:RCA:J_heart_inlet", + "13910": "pressure:RCA:J_heart_inlet", + "13911": "pressure:RCA:J_heart_inlet", + "13912": "pressure:RCA:J_heart_inlet", + "13913": "pressure:RCA:J_heart_inlet", + "13914": "pressure:RCA:J_heart_inlet", + "13915": "pressure:RCA:J_heart_inlet", + "13916": "pressure:RCA:J_heart_inlet", + "13917": "pressure:RCA:J_heart_inlet", + "13918": "pressure:RCA:J_heart_inlet", + "13919": "pressure:RCA:J_heart_inlet", + "13920": "pressure:RCA:J_heart_inlet", + "13921": "pressure:RCA:J_heart_inlet", + "13922": "pressure:RCA:J_heart_inlet", + "13923": "pressure:RCA:J_heart_inlet", + "13924": "pressure:RCA:J_heart_inlet", + "13925": "pressure:RCA:J_heart_inlet", + "13926": "pressure:RCA:J_heart_inlet", + "13927": "pressure:RCA:J_heart_inlet", + "13928": "pressure:RCA:J_heart_inlet", + "13929": "pressure:RCA:J_heart_inlet", + "13930": "pressure:RCA:J_heart_inlet", + "13931": "pressure:RCA:J_heart_inlet", + "13932": "pressure:RCA:J_heart_inlet", + "13933": "pressure:RCA:J_heart_inlet", + "13934": "pressure:RCA:J_heart_inlet", + "13935": "pressure:RCA:J_heart_inlet", + "13936": "pressure:RCA:J_heart_inlet", + "13937": "pressure:RCA:J_heart_inlet", + "13938": "pressure:RCA:J_heart_inlet", + "13939": "pressure:RCA:J_heart_inlet", + "13940": "pressure:RCA:J_heart_inlet", + "13941": "pressure:RCA:J_heart_inlet", + "13942": "pressure:RCA:J_heart_inlet", + "13943": "pressure:RCA:J_heart_inlet", + "13944": "pressure:RCA:J_heart_inlet", + "13945": "pressure:RCA:J_heart_inlet", + "13946": "pressure:RCA:J_heart_inlet", + "13947": "pressure:RCA:J_heart_inlet", + "13948": "pressure:RCA:J_heart_inlet", + "13949": "pressure:RCA:J_heart_inlet", + "13950": "pressure:RCA:J_heart_inlet", + "13951": "pressure:RCA:J_heart_inlet", + "13952": "pressure:RCA:J_heart_inlet", + "13953": "pressure:RCA:J_heart_inlet", + "13954": "pressure:RCA:J_heart_inlet", + "13955": "pressure:RCA:J_heart_inlet", + "13956": "pressure:RCA:J_heart_inlet", + "13957": "pressure:RCA:J_heart_inlet", + "13958": "pressure:RCA:J_heart_inlet", + "13959": "pressure:RCA:J_heart_inlet", + "13960": "pressure:RCA:J_heart_inlet", + "13961": "pressure:RCA:J_heart_inlet", + "13962": "pressure:RCA:J_heart_inlet", + "13963": "pressure:RCA:J_heart_inlet", + "13964": "pressure:RCA:J_heart_inlet", + "13965": "pressure:RCA:J_heart_inlet", + "13966": "pressure:RCA:J_heart_inlet", + "13967": "pressure:RCA:J_heart_inlet", + "13968": "pressure:RCA:J_heart_inlet", + "13969": "pressure:RCA:J_heart_inlet", + "13970": "pressure:RCA:J_heart_inlet", + "13971": "pressure:RCA:J_heart_inlet", + "13972": "pressure:RCA:J_heart_inlet", + "13973": "pressure:RCA:J_heart_inlet", + "13974": "pressure:RCA:J_heart_inlet", + "13975": "pressure:RCA:J_heart_inlet", + "13976": "pressure:RCA:J_heart_inlet", + "13977": "pressure:RCA:J_heart_inlet", + "13978": "pressure:RCA:J_heart_inlet", + "13979": "pressure:RCA:J_heart_inlet", + "13980": "pressure:RCA:J_heart_inlet", + "13981": "pressure:RCA:J_heart_inlet", + "13982": "pressure:RCA:J_heart_inlet", + "13983": "pressure:RCA:J_heart_inlet", + "13984": "pressure:RCA:J_heart_inlet", + "13985": "pressure:RCA:J_heart_inlet", + "13986": "pressure:RCA:J_heart_inlet", + "13987": "pressure:RCA:J_heart_inlet", + "13988": "pressure:RCA:J_heart_inlet", + "13989": "pressure:RCA:J_heart_inlet", + "13990": "pressure:RCA:J_heart_inlet", + "13991": "pressure:RCA:J_heart_inlet", + "13992": "pressure:RCA:J_heart_inlet", + "13993": "pressure:RCA:J_heart_inlet", + "13994": "pressure:RCA:J_heart_inlet", + "13995": "pressure:RCA:J_heart_inlet", + "13996": "pressure:RCA:J_heart_inlet", + "13997": "pressure:RCA:J_heart_inlet", + "13998": "pressure:RCA:J_heart_inlet", + "13999": "pressure:RCA:J_heart_inlet", + "14000": "flow:RCR_aorta:J_heart_inlet", + "14001": "flow:RCR_aorta:J_heart_inlet", + "14002": "flow:RCR_aorta:J_heart_inlet", + "14003": "flow:RCR_aorta:J_heart_inlet", + "14004": "flow:RCR_aorta:J_heart_inlet", + "14005": "flow:RCR_aorta:J_heart_inlet", + "14006": "flow:RCR_aorta:J_heart_inlet", + "14007": "flow:RCR_aorta:J_heart_inlet", + "14008": "flow:RCR_aorta:J_heart_inlet", + "14009": "flow:RCR_aorta:J_heart_inlet", + "14010": "flow:RCR_aorta:J_heart_inlet", + "14011": "flow:RCR_aorta:J_heart_inlet", + "14012": "flow:RCR_aorta:J_heart_inlet", + "14013": "flow:RCR_aorta:J_heart_inlet", + "14014": "flow:RCR_aorta:J_heart_inlet", + "14015": "flow:RCR_aorta:J_heart_inlet", + "14016": "flow:RCR_aorta:J_heart_inlet", + "14017": "flow:RCR_aorta:J_heart_inlet", + "14018": "flow:RCR_aorta:J_heart_inlet", + "14019": "flow:RCR_aorta:J_heart_inlet", + "14020": "flow:RCR_aorta:J_heart_inlet", + "14021": "flow:RCR_aorta:J_heart_inlet", + "14022": "flow:RCR_aorta:J_heart_inlet", + "14023": "flow:RCR_aorta:J_heart_inlet", + "14024": "flow:RCR_aorta:J_heart_inlet", + "14025": "flow:RCR_aorta:J_heart_inlet", + "14026": "flow:RCR_aorta:J_heart_inlet", + "14027": "flow:RCR_aorta:J_heart_inlet", + "14028": "flow:RCR_aorta:J_heart_inlet", + "14029": "flow:RCR_aorta:J_heart_inlet", + "14030": "flow:RCR_aorta:J_heart_inlet", + "14031": "flow:RCR_aorta:J_heart_inlet", + "14032": "flow:RCR_aorta:J_heart_inlet", + "14033": "flow:RCR_aorta:J_heart_inlet", + "14034": "flow:RCR_aorta:J_heart_inlet", + "14035": "flow:RCR_aorta:J_heart_inlet", + "14036": "flow:RCR_aorta:J_heart_inlet", + "14037": "flow:RCR_aorta:J_heart_inlet", + "14038": "flow:RCR_aorta:J_heart_inlet", + "14039": "flow:RCR_aorta:J_heart_inlet", + "14040": "flow:RCR_aorta:J_heart_inlet", + "14041": "flow:RCR_aorta:J_heart_inlet", + "14042": "flow:RCR_aorta:J_heart_inlet", + "14043": "flow:RCR_aorta:J_heart_inlet", + "14044": "flow:RCR_aorta:J_heart_inlet", + "14045": "flow:RCR_aorta:J_heart_inlet", + "14046": "flow:RCR_aorta:J_heart_inlet", + "14047": "flow:RCR_aorta:J_heart_inlet", + "14048": "flow:RCR_aorta:J_heart_inlet", + "14049": "flow:RCR_aorta:J_heart_inlet", + "14050": "flow:RCR_aorta:J_heart_inlet", + "14051": "flow:RCR_aorta:J_heart_inlet", + "14052": "flow:RCR_aorta:J_heart_inlet", + "14053": "flow:RCR_aorta:J_heart_inlet", + "14054": "flow:RCR_aorta:J_heart_inlet", + "14055": "flow:RCR_aorta:J_heart_inlet", + "14056": "flow:RCR_aorta:J_heart_inlet", + "14057": "flow:RCR_aorta:J_heart_inlet", + "14058": "flow:RCR_aorta:J_heart_inlet", + "14059": "flow:RCR_aorta:J_heart_inlet", + "14060": "flow:RCR_aorta:J_heart_inlet", + "14061": "flow:RCR_aorta:J_heart_inlet", + "14062": "flow:RCR_aorta:J_heart_inlet", + "14063": "flow:RCR_aorta:J_heart_inlet", + "14064": "flow:RCR_aorta:J_heart_inlet", + "14065": "flow:RCR_aorta:J_heart_inlet", + "14066": "flow:RCR_aorta:J_heart_inlet", + "14067": "flow:RCR_aorta:J_heart_inlet", + "14068": "flow:RCR_aorta:J_heart_inlet", + "14069": "flow:RCR_aorta:J_heart_inlet", + "14070": "flow:RCR_aorta:J_heart_inlet", + "14071": "flow:RCR_aorta:J_heart_inlet", + "14072": "flow:RCR_aorta:J_heart_inlet", + "14073": "flow:RCR_aorta:J_heart_inlet", + "14074": "flow:RCR_aorta:J_heart_inlet", + "14075": "flow:RCR_aorta:J_heart_inlet", + "14076": "flow:RCR_aorta:J_heart_inlet", + "14077": "flow:RCR_aorta:J_heart_inlet", + "14078": "flow:RCR_aorta:J_heart_inlet", + "14079": "flow:RCR_aorta:J_heart_inlet", + "14080": "flow:RCR_aorta:J_heart_inlet", + "14081": "flow:RCR_aorta:J_heart_inlet", + "14082": "flow:RCR_aorta:J_heart_inlet", + "14083": "flow:RCR_aorta:J_heart_inlet", + "14084": "flow:RCR_aorta:J_heart_inlet", + "14085": "flow:RCR_aorta:J_heart_inlet", + "14086": "flow:RCR_aorta:J_heart_inlet", + "14087": "flow:RCR_aorta:J_heart_inlet", + "14088": "flow:RCR_aorta:J_heart_inlet", + "14089": "flow:RCR_aorta:J_heart_inlet", + "14090": "flow:RCR_aorta:J_heart_inlet", + "14091": "flow:RCR_aorta:J_heart_inlet", + "14092": "flow:RCR_aorta:J_heart_inlet", + "14093": "flow:RCR_aorta:J_heart_inlet", + "14094": "flow:RCR_aorta:J_heart_inlet", + "14095": "flow:RCR_aorta:J_heart_inlet", + "14096": "flow:RCR_aorta:J_heart_inlet", + "14097": "flow:RCR_aorta:J_heart_inlet", + "14098": "flow:RCR_aorta:J_heart_inlet", + "14099": "flow:RCR_aorta:J_heart_inlet", + "14100": "flow:RCR_aorta:J_heart_inlet", + "14101": "flow:RCR_aorta:J_heart_inlet", + "14102": "flow:RCR_aorta:J_heart_inlet", + "14103": "flow:RCR_aorta:J_heart_inlet", + "14104": "flow:RCR_aorta:J_heart_inlet", + "14105": "flow:RCR_aorta:J_heart_inlet", + "14106": "flow:RCR_aorta:J_heart_inlet", + "14107": "flow:RCR_aorta:J_heart_inlet", + "14108": "flow:RCR_aorta:J_heart_inlet", + "14109": "flow:RCR_aorta:J_heart_inlet", + "14110": "flow:RCR_aorta:J_heart_inlet", + "14111": "flow:RCR_aorta:J_heart_inlet", + "14112": "flow:RCR_aorta:J_heart_inlet", + "14113": "flow:RCR_aorta:J_heart_inlet", + "14114": "flow:RCR_aorta:J_heart_inlet", + "14115": "flow:RCR_aorta:J_heart_inlet", + "14116": "flow:RCR_aorta:J_heart_inlet", + "14117": "flow:RCR_aorta:J_heart_inlet", + "14118": "flow:RCR_aorta:J_heart_inlet", + "14119": "flow:RCR_aorta:J_heart_inlet", + "14120": "flow:RCR_aorta:J_heart_inlet", + "14121": "flow:RCR_aorta:J_heart_inlet", + "14122": "flow:RCR_aorta:J_heart_inlet", + "14123": "flow:RCR_aorta:J_heart_inlet", + "14124": "flow:RCR_aorta:J_heart_inlet", + "14125": "flow:RCR_aorta:J_heart_inlet", + "14126": "flow:RCR_aorta:J_heart_inlet", + "14127": "flow:RCR_aorta:J_heart_inlet", + "14128": "flow:RCR_aorta:J_heart_inlet", + "14129": "flow:RCR_aorta:J_heart_inlet", + "14130": "flow:RCR_aorta:J_heart_inlet", + "14131": "flow:RCR_aorta:J_heart_inlet", + "14132": "flow:RCR_aorta:J_heart_inlet", + "14133": "flow:RCR_aorta:J_heart_inlet", + "14134": "flow:RCR_aorta:J_heart_inlet", + "14135": "flow:RCR_aorta:J_heart_inlet", + "14136": "flow:RCR_aorta:J_heart_inlet", + "14137": "flow:RCR_aorta:J_heart_inlet", + "14138": "flow:RCR_aorta:J_heart_inlet", + "14139": "flow:RCR_aorta:J_heart_inlet", + "14140": "flow:RCR_aorta:J_heart_inlet", + "14141": "flow:RCR_aorta:J_heart_inlet", + "14142": "flow:RCR_aorta:J_heart_inlet", + "14143": "flow:RCR_aorta:J_heart_inlet", + "14144": "flow:RCR_aorta:J_heart_inlet", + "14145": "flow:RCR_aorta:J_heart_inlet", + "14146": "flow:RCR_aorta:J_heart_inlet", + "14147": "flow:RCR_aorta:J_heart_inlet", + "14148": "flow:RCR_aorta:J_heart_inlet", + "14149": "flow:RCR_aorta:J_heart_inlet", + "14150": "flow:RCR_aorta:J_heart_inlet", + "14151": "flow:RCR_aorta:J_heart_inlet", + "14152": "flow:RCR_aorta:J_heart_inlet", + "14153": "flow:RCR_aorta:J_heart_inlet", + "14154": "flow:RCR_aorta:J_heart_inlet", + "14155": "flow:RCR_aorta:J_heart_inlet", + "14156": "flow:RCR_aorta:J_heart_inlet", + "14157": "flow:RCR_aorta:J_heart_inlet", + "14158": "flow:RCR_aorta:J_heart_inlet", + "14159": "flow:RCR_aorta:J_heart_inlet", + "14160": "flow:RCR_aorta:J_heart_inlet", + "14161": "flow:RCR_aorta:J_heart_inlet", + "14162": "flow:RCR_aorta:J_heart_inlet", + "14163": "flow:RCR_aorta:J_heart_inlet", + "14164": "flow:RCR_aorta:J_heart_inlet", + "14165": "flow:RCR_aorta:J_heart_inlet", + "14166": "flow:RCR_aorta:J_heart_inlet", + "14167": "flow:RCR_aorta:J_heart_inlet", + "14168": "flow:RCR_aorta:J_heart_inlet", + "14169": "flow:RCR_aorta:J_heart_inlet", + "14170": "flow:RCR_aorta:J_heart_inlet", + "14171": "flow:RCR_aorta:J_heart_inlet", + "14172": "flow:RCR_aorta:J_heart_inlet", + "14173": "flow:RCR_aorta:J_heart_inlet", + "14174": "flow:RCR_aorta:J_heart_inlet", + "14175": "flow:RCR_aorta:J_heart_inlet", + "14176": "flow:RCR_aorta:J_heart_inlet", + "14177": "flow:RCR_aorta:J_heart_inlet", + "14178": "flow:RCR_aorta:J_heart_inlet", + "14179": "flow:RCR_aorta:J_heart_inlet", + "14180": "flow:RCR_aorta:J_heart_inlet", + "14181": "flow:RCR_aorta:J_heart_inlet", + "14182": "flow:RCR_aorta:J_heart_inlet", + "14183": "flow:RCR_aorta:J_heart_inlet", + "14184": "flow:RCR_aorta:J_heart_inlet", + "14185": "flow:RCR_aorta:J_heart_inlet", + "14186": "flow:RCR_aorta:J_heart_inlet", + "14187": "flow:RCR_aorta:J_heart_inlet", + "14188": "flow:RCR_aorta:J_heart_inlet", + "14189": "flow:RCR_aorta:J_heart_inlet", + "14190": "flow:RCR_aorta:J_heart_inlet", + "14191": "flow:RCR_aorta:J_heart_inlet", + "14192": "flow:RCR_aorta:J_heart_inlet", + "14193": "flow:RCR_aorta:J_heart_inlet", + "14194": "flow:RCR_aorta:J_heart_inlet", + "14195": "flow:RCR_aorta:J_heart_inlet", + "14196": "flow:RCR_aorta:J_heart_inlet", + "14197": "flow:RCR_aorta:J_heart_inlet", + "14198": "flow:RCR_aorta:J_heart_inlet", + "14199": "flow:RCR_aorta:J_heart_inlet", + "14200": "flow:RCR_aorta:J_heart_inlet", + "14201": "flow:RCR_aorta:J_heart_inlet", + "14202": "flow:RCR_aorta:J_heart_inlet", + "14203": "flow:RCR_aorta:J_heart_inlet", + "14204": "flow:RCR_aorta:J_heart_inlet", + "14205": "flow:RCR_aorta:J_heart_inlet", + "14206": "flow:RCR_aorta:J_heart_inlet", + "14207": "flow:RCR_aorta:J_heart_inlet", + "14208": "flow:RCR_aorta:J_heart_inlet", + "14209": "flow:RCR_aorta:J_heart_inlet", + "14210": "flow:RCR_aorta:J_heart_inlet", + "14211": "flow:RCR_aorta:J_heart_inlet", + "14212": "flow:RCR_aorta:J_heart_inlet", + "14213": "flow:RCR_aorta:J_heart_inlet", + "14214": "flow:RCR_aorta:J_heart_inlet", + "14215": "flow:RCR_aorta:J_heart_inlet", + "14216": "flow:RCR_aorta:J_heart_inlet", + "14217": "flow:RCR_aorta:J_heart_inlet", + "14218": "flow:RCR_aorta:J_heart_inlet", + "14219": "flow:RCR_aorta:J_heart_inlet", + "14220": "flow:RCR_aorta:J_heart_inlet", + "14221": "flow:RCR_aorta:J_heart_inlet", + "14222": "flow:RCR_aorta:J_heart_inlet", + "14223": "flow:RCR_aorta:J_heart_inlet", + "14224": "flow:RCR_aorta:J_heart_inlet", + "14225": "flow:RCR_aorta:J_heart_inlet", + "14226": "flow:RCR_aorta:J_heart_inlet", + "14227": "flow:RCR_aorta:J_heart_inlet", + "14228": "flow:RCR_aorta:J_heart_inlet", + "14229": "flow:RCR_aorta:J_heart_inlet", + "14230": "flow:RCR_aorta:J_heart_inlet", + "14231": "flow:RCR_aorta:J_heart_inlet", + "14232": "flow:RCR_aorta:J_heart_inlet", + "14233": "flow:RCR_aorta:J_heart_inlet", + "14234": "flow:RCR_aorta:J_heart_inlet", + "14235": "flow:RCR_aorta:J_heart_inlet", + "14236": "flow:RCR_aorta:J_heart_inlet", + "14237": "flow:RCR_aorta:J_heart_inlet", + "14238": "flow:RCR_aorta:J_heart_inlet", + "14239": "flow:RCR_aorta:J_heart_inlet", + "14240": "flow:RCR_aorta:J_heart_inlet", + "14241": "flow:RCR_aorta:J_heart_inlet", + "14242": "flow:RCR_aorta:J_heart_inlet", + "14243": "flow:RCR_aorta:J_heart_inlet", + "14244": "flow:RCR_aorta:J_heart_inlet", + "14245": "flow:RCR_aorta:J_heart_inlet", + "14246": "flow:RCR_aorta:J_heart_inlet", + "14247": "flow:RCR_aorta:J_heart_inlet", + "14248": "flow:RCR_aorta:J_heart_inlet", + "14249": "flow:RCR_aorta:J_heart_inlet", + "14250": "flow:RCR_aorta:J_heart_inlet", + "14251": "flow:RCR_aorta:J_heart_inlet", + "14252": "flow:RCR_aorta:J_heart_inlet", + "14253": "flow:RCR_aorta:J_heart_inlet", + "14254": "flow:RCR_aorta:J_heart_inlet", + "14255": "flow:RCR_aorta:J_heart_inlet", + "14256": "flow:RCR_aorta:J_heart_inlet", + "14257": "flow:RCR_aorta:J_heart_inlet", + "14258": "flow:RCR_aorta:J_heart_inlet", + "14259": "flow:RCR_aorta:J_heart_inlet", + "14260": "flow:RCR_aorta:J_heart_inlet", + "14261": "flow:RCR_aorta:J_heart_inlet", + "14262": "flow:RCR_aorta:J_heart_inlet", + "14263": "flow:RCR_aorta:J_heart_inlet", + "14264": "flow:RCR_aorta:J_heart_inlet", + "14265": "flow:RCR_aorta:J_heart_inlet", + "14266": "flow:RCR_aorta:J_heart_inlet", + "14267": "flow:RCR_aorta:J_heart_inlet", + "14268": "flow:RCR_aorta:J_heart_inlet", + "14269": "flow:RCR_aorta:J_heart_inlet", + "14270": "flow:RCR_aorta:J_heart_inlet", + "14271": "flow:RCR_aorta:J_heart_inlet", + "14272": "flow:RCR_aorta:J_heart_inlet", + "14273": "flow:RCR_aorta:J_heart_inlet", + "14274": "flow:RCR_aorta:J_heart_inlet", + "14275": "flow:RCR_aorta:J_heart_inlet", + "14276": "flow:RCR_aorta:J_heart_inlet", + "14277": "flow:RCR_aorta:J_heart_inlet", + "14278": "flow:RCR_aorta:J_heart_inlet", + "14279": "flow:RCR_aorta:J_heart_inlet", + "14280": "flow:RCR_aorta:J_heart_inlet", + "14281": "flow:RCR_aorta:J_heart_inlet", + "14282": "flow:RCR_aorta:J_heart_inlet", + "14283": "flow:RCR_aorta:J_heart_inlet", + "14284": "flow:RCR_aorta:J_heart_inlet", + "14285": "flow:RCR_aorta:J_heart_inlet", + "14286": "flow:RCR_aorta:J_heart_inlet", + "14287": "flow:RCR_aorta:J_heart_inlet", + "14288": "flow:RCR_aorta:J_heart_inlet", + "14289": "flow:RCR_aorta:J_heart_inlet", + "14290": "flow:RCR_aorta:J_heart_inlet", + "14291": "flow:RCR_aorta:J_heart_inlet", + "14292": "flow:RCR_aorta:J_heart_inlet", + "14293": "flow:RCR_aorta:J_heart_inlet", + "14294": "flow:RCR_aorta:J_heart_inlet", + "14295": "flow:RCR_aorta:J_heart_inlet", + "14296": "flow:RCR_aorta:J_heart_inlet", + "14297": "flow:RCR_aorta:J_heart_inlet", + "14298": "flow:RCR_aorta:J_heart_inlet", + "14299": "flow:RCR_aorta:J_heart_inlet", + "14300": "flow:RCR_aorta:J_heart_inlet", + "14301": "flow:RCR_aorta:J_heart_inlet", + "14302": "flow:RCR_aorta:J_heart_inlet", + "14303": "flow:RCR_aorta:J_heart_inlet", + "14304": "flow:RCR_aorta:J_heart_inlet", + "14305": "flow:RCR_aorta:J_heart_inlet", + "14306": "flow:RCR_aorta:J_heart_inlet", + "14307": "flow:RCR_aorta:J_heart_inlet", + "14308": "flow:RCR_aorta:J_heart_inlet", + "14309": "flow:RCR_aorta:J_heart_inlet", + "14310": "flow:RCR_aorta:J_heart_inlet", + "14311": "flow:RCR_aorta:J_heart_inlet", + "14312": "flow:RCR_aorta:J_heart_inlet", + "14313": "flow:RCR_aorta:J_heart_inlet", + "14314": "flow:RCR_aorta:J_heart_inlet", + "14315": "flow:RCR_aorta:J_heart_inlet", + "14316": "flow:RCR_aorta:J_heart_inlet", + "14317": "flow:RCR_aorta:J_heart_inlet", + "14318": "flow:RCR_aorta:J_heart_inlet", + "14319": "flow:RCR_aorta:J_heart_inlet", + "14320": "flow:RCR_aorta:J_heart_inlet", + "14321": "flow:RCR_aorta:J_heart_inlet", + "14322": "flow:RCR_aorta:J_heart_inlet", + "14323": "flow:RCR_aorta:J_heart_inlet", + "14324": "flow:RCR_aorta:J_heart_inlet", + "14325": "flow:RCR_aorta:J_heart_inlet", + "14326": "flow:RCR_aorta:J_heart_inlet", + "14327": "flow:RCR_aorta:J_heart_inlet", + "14328": "flow:RCR_aorta:J_heart_inlet", + "14329": "flow:RCR_aorta:J_heart_inlet", + "14330": "flow:RCR_aorta:J_heart_inlet", + "14331": "flow:RCR_aorta:J_heart_inlet", + "14332": "flow:RCR_aorta:J_heart_inlet", + "14333": "flow:RCR_aorta:J_heart_inlet", + "14334": "flow:RCR_aorta:J_heart_inlet", + "14335": "flow:RCR_aorta:J_heart_inlet", + "14336": "flow:RCR_aorta:J_heart_inlet", + "14337": "flow:RCR_aorta:J_heart_inlet", + "14338": "flow:RCR_aorta:J_heart_inlet", + "14339": "flow:RCR_aorta:J_heart_inlet", + "14340": "flow:RCR_aorta:J_heart_inlet", + "14341": "flow:RCR_aorta:J_heart_inlet", + "14342": "flow:RCR_aorta:J_heart_inlet", + "14343": "flow:RCR_aorta:J_heart_inlet", + "14344": "flow:RCR_aorta:J_heart_inlet", + "14345": "flow:RCR_aorta:J_heart_inlet", + "14346": "flow:RCR_aorta:J_heart_inlet", + "14347": "flow:RCR_aorta:J_heart_inlet", + "14348": "flow:RCR_aorta:J_heart_inlet", + "14349": "flow:RCR_aorta:J_heart_inlet", + "14350": "flow:RCR_aorta:J_heart_inlet", + "14351": "flow:RCR_aorta:J_heart_inlet", + "14352": "flow:RCR_aorta:J_heart_inlet", + "14353": "flow:RCR_aorta:J_heart_inlet", + "14354": "flow:RCR_aorta:J_heart_inlet", + "14355": "flow:RCR_aorta:J_heart_inlet", + "14356": "flow:RCR_aorta:J_heart_inlet", + "14357": "flow:RCR_aorta:J_heart_inlet", + "14358": "flow:RCR_aorta:J_heart_inlet", + "14359": "flow:RCR_aorta:J_heart_inlet", + "14360": "flow:RCR_aorta:J_heart_inlet", + "14361": "flow:RCR_aorta:J_heart_inlet", + "14362": "flow:RCR_aorta:J_heart_inlet", + "14363": "flow:RCR_aorta:J_heart_inlet", + "14364": "flow:RCR_aorta:J_heart_inlet", + "14365": "flow:RCR_aorta:J_heart_inlet", + "14366": "flow:RCR_aorta:J_heart_inlet", + "14367": "flow:RCR_aorta:J_heart_inlet", + "14368": "flow:RCR_aorta:J_heart_inlet", + "14369": "flow:RCR_aorta:J_heart_inlet", + "14370": "flow:RCR_aorta:J_heart_inlet", + "14371": "flow:RCR_aorta:J_heart_inlet", + "14372": "flow:RCR_aorta:J_heart_inlet", + "14373": "flow:RCR_aorta:J_heart_inlet", + "14374": "flow:RCR_aorta:J_heart_inlet", + "14375": "flow:RCR_aorta:J_heart_inlet", + "14376": "flow:RCR_aorta:J_heart_inlet", + "14377": "flow:RCR_aorta:J_heart_inlet", + "14378": "flow:RCR_aorta:J_heart_inlet", + "14379": "flow:RCR_aorta:J_heart_inlet", + "14380": "flow:RCR_aorta:J_heart_inlet", + "14381": "flow:RCR_aorta:J_heart_inlet", + "14382": "flow:RCR_aorta:J_heart_inlet", + "14383": "flow:RCR_aorta:J_heart_inlet", + "14384": "flow:RCR_aorta:J_heart_inlet", + "14385": "flow:RCR_aorta:J_heart_inlet", + "14386": "flow:RCR_aorta:J_heart_inlet", + "14387": "flow:RCR_aorta:J_heart_inlet", + "14388": "flow:RCR_aorta:J_heart_inlet", + "14389": "flow:RCR_aorta:J_heart_inlet", + "14390": "flow:RCR_aorta:J_heart_inlet", + "14391": "flow:RCR_aorta:J_heart_inlet", + "14392": "flow:RCR_aorta:J_heart_inlet", + "14393": "flow:RCR_aorta:J_heart_inlet", + "14394": "flow:RCR_aorta:J_heart_inlet", + "14395": "flow:RCR_aorta:J_heart_inlet", + "14396": "flow:RCR_aorta:J_heart_inlet", + "14397": "flow:RCR_aorta:J_heart_inlet", + "14398": "flow:RCR_aorta:J_heart_inlet", + "14399": "flow:RCR_aorta:J_heart_inlet", + "14400": "flow:RCR_aorta:J_heart_inlet", + "14401": "flow:RCR_aorta:J_heart_inlet", + "14402": "flow:RCR_aorta:J_heart_inlet", + "14403": "flow:RCR_aorta:J_heart_inlet", + "14404": "flow:RCR_aorta:J_heart_inlet", + "14405": "flow:RCR_aorta:J_heart_inlet", + "14406": "flow:RCR_aorta:J_heart_inlet", + "14407": "flow:RCR_aorta:J_heart_inlet", + "14408": "flow:RCR_aorta:J_heart_inlet", + "14409": "flow:RCR_aorta:J_heart_inlet", + "14410": "flow:RCR_aorta:J_heart_inlet", + "14411": "flow:RCR_aorta:J_heart_inlet", + "14412": "flow:RCR_aorta:J_heart_inlet", + "14413": "flow:RCR_aorta:J_heart_inlet", + "14414": "flow:RCR_aorta:J_heart_inlet", + "14415": "flow:RCR_aorta:J_heart_inlet", + "14416": "flow:RCR_aorta:J_heart_inlet", + "14417": "flow:RCR_aorta:J_heart_inlet", + "14418": "flow:RCR_aorta:J_heart_inlet", + "14419": "flow:RCR_aorta:J_heart_inlet", + "14420": "flow:RCR_aorta:J_heart_inlet", + "14421": "flow:RCR_aorta:J_heart_inlet", + "14422": "flow:RCR_aorta:J_heart_inlet", + "14423": "flow:RCR_aorta:J_heart_inlet", + "14424": "flow:RCR_aorta:J_heart_inlet", + "14425": "flow:RCR_aorta:J_heart_inlet", + "14426": "flow:RCR_aorta:J_heart_inlet", + "14427": "flow:RCR_aorta:J_heart_inlet", + "14428": "flow:RCR_aorta:J_heart_inlet", + "14429": "flow:RCR_aorta:J_heart_inlet", + "14430": "flow:RCR_aorta:J_heart_inlet", + "14431": "flow:RCR_aorta:J_heart_inlet", + "14432": "flow:RCR_aorta:J_heart_inlet", + "14433": "flow:RCR_aorta:J_heart_inlet", + "14434": "flow:RCR_aorta:J_heart_inlet", + "14435": "flow:RCR_aorta:J_heart_inlet", + "14436": "flow:RCR_aorta:J_heart_inlet", + "14437": "flow:RCR_aorta:J_heart_inlet", + "14438": "flow:RCR_aorta:J_heart_inlet", + "14439": "flow:RCR_aorta:J_heart_inlet", + "14440": "flow:RCR_aorta:J_heart_inlet", + "14441": "flow:RCR_aorta:J_heart_inlet", + "14442": "flow:RCR_aorta:J_heart_inlet", + "14443": "flow:RCR_aorta:J_heart_inlet", + "14444": "flow:RCR_aorta:J_heart_inlet", + "14445": "flow:RCR_aorta:J_heart_inlet", + "14446": "flow:RCR_aorta:J_heart_inlet", + "14447": "flow:RCR_aorta:J_heart_inlet", + "14448": "flow:RCR_aorta:J_heart_inlet", + "14449": "flow:RCR_aorta:J_heart_inlet", + "14450": "flow:RCR_aorta:J_heart_inlet", + "14451": "flow:RCR_aorta:J_heart_inlet", + "14452": "flow:RCR_aorta:J_heart_inlet", + "14453": "flow:RCR_aorta:J_heart_inlet", + "14454": "flow:RCR_aorta:J_heart_inlet", + "14455": "flow:RCR_aorta:J_heart_inlet", + "14456": "flow:RCR_aorta:J_heart_inlet", + "14457": "flow:RCR_aorta:J_heart_inlet", + "14458": "flow:RCR_aorta:J_heart_inlet", + "14459": "flow:RCR_aorta:J_heart_inlet", + "14460": "flow:RCR_aorta:J_heart_inlet", + "14461": "flow:RCR_aorta:J_heart_inlet", + "14462": "flow:RCR_aorta:J_heart_inlet", + "14463": "flow:RCR_aorta:J_heart_inlet", + "14464": "flow:RCR_aorta:J_heart_inlet", + "14465": "flow:RCR_aorta:J_heart_inlet", + "14466": "flow:RCR_aorta:J_heart_inlet", + "14467": "flow:RCR_aorta:J_heart_inlet", + "14468": "flow:RCR_aorta:J_heart_inlet", + "14469": "flow:RCR_aorta:J_heart_inlet", + "14470": "flow:RCR_aorta:J_heart_inlet", + "14471": "flow:RCR_aorta:J_heart_inlet", + "14472": "flow:RCR_aorta:J_heart_inlet", + "14473": "flow:RCR_aorta:J_heart_inlet", + "14474": "flow:RCR_aorta:J_heart_inlet", + "14475": "flow:RCR_aorta:J_heart_inlet", + "14476": "flow:RCR_aorta:J_heart_inlet", + "14477": "flow:RCR_aorta:J_heart_inlet", + "14478": "flow:RCR_aorta:J_heart_inlet", + "14479": "flow:RCR_aorta:J_heart_inlet", + "14480": "flow:RCR_aorta:J_heart_inlet", + "14481": "flow:RCR_aorta:J_heart_inlet", + "14482": "flow:RCR_aorta:J_heart_inlet", + "14483": "flow:RCR_aorta:J_heart_inlet", + "14484": "flow:RCR_aorta:J_heart_inlet", + "14485": "flow:RCR_aorta:J_heart_inlet", + "14486": "flow:RCR_aorta:J_heart_inlet", + "14487": "flow:RCR_aorta:J_heart_inlet", + "14488": "flow:RCR_aorta:J_heart_inlet", + "14489": "flow:RCR_aorta:J_heart_inlet", + "14490": "flow:RCR_aorta:J_heart_inlet", + "14491": "flow:RCR_aorta:J_heart_inlet", + "14492": "flow:RCR_aorta:J_heart_inlet", + "14493": "flow:RCR_aorta:J_heart_inlet", + "14494": "flow:RCR_aorta:J_heart_inlet", + "14495": "flow:RCR_aorta:J_heart_inlet", + "14496": "flow:RCR_aorta:J_heart_inlet", + "14497": "flow:RCR_aorta:J_heart_inlet", + "14498": "flow:RCR_aorta:J_heart_inlet", + "14499": "flow:RCR_aorta:J_heart_inlet", + "14500": "flow:RCR_aorta:J_heart_inlet", + "14501": "flow:RCR_aorta:J_heart_inlet", + "14502": "flow:RCR_aorta:J_heart_inlet", + "14503": "flow:RCR_aorta:J_heart_inlet", + "14504": "flow:RCR_aorta:J_heart_inlet", + "14505": "flow:RCR_aorta:J_heart_inlet", + "14506": "flow:RCR_aorta:J_heart_inlet", + "14507": "flow:RCR_aorta:J_heart_inlet", + "14508": "flow:RCR_aorta:J_heart_inlet", + "14509": "flow:RCR_aorta:J_heart_inlet", + "14510": "flow:RCR_aorta:J_heart_inlet", + "14511": "flow:RCR_aorta:J_heart_inlet", + "14512": "flow:RCR_aorta:J_heart_inlet", + "14513": "flow:RCR_aorta:J_heart_inlet", + "14514": "flow:RCR_aorta:J_heart_inlet", + "14515": "flow:RCR_aorta:J_heart_inlet", + "14516": "flow:RCR_aorta:J_heart_inlet", + "14517": "flow:RCR_aorta:J_heart_inlet", + "14518": "flow:RCR_aorta:J_heart_inlet", + "14519": "flow:RCR_aorta:J_heart_inlet", + "14520": "flow:RCR_aorta:J_heart_inlet", + "14521": "flow:RCR_aorta:J_heart_inlet", + "14522": "flow:RCR_aorta:J_heart_inlet", + "14523": "flow:RCR_aorta:J_heart_inlet", + "14524": "flow:RCR_aorta:J_heart_inlet", + "14525": "flow:RCR_aorta:J_heart_inlet", + "14526": "flow:RCR_aorta:J_heart_inlet", + "14527": "flow:RCR_aorta:J_heart_inlet", + "14528": "flow:RCR_aorta:J_heart_inlet", + "14529": "flow:RCR_aorta:J_heart_inlet", + "14530": "flow:RCR_aorta:J_heart_inlet", + "14531": "flow:RCR_aorta:J_heart_inlet", + "14532": "flow:RCR_aorta:J_heart_inlet", + "14533": "flow:RCR_aorta:J_heart_inlet", + "14534": "flow:RCR_aorta:J_heart_inlet", + "14535": "flow:RCR_aorta:J_heart_inlet", + "14536": "flow:RCR_aorta:J_heart_inlet", + "14537": "flow:RCR_aorta:J_heart_inlet", + "14538": "flow:RCR_aorta:J_heart_inlet", + "14539": "flow:RCR_aorta:J_heart_inlet", + "14540": "flow:RCR_aorta:J_heart_inlet", + "14541": "flow:RCR_aorta:J_heart_inlet", + "14542": "flow:RCR_aorta:J_heart_inlet", + "14543": "flow:RCR_aorta:J_heart_inlet", + "14544": "flow:RCR_aorta:J_heart_inlet", + "14545": "flow:RCR_aorta:J_heart_inlet", + "14546": "flow:RCR_aorta:J_heart_inlet", + "14547": "flow:RCR_aorta:J_heart_inlet", + "14548": "flow:RCR_aorta:J_heart_inlet", + "14549": "flow:RCR_aorta:J_heart_inlet", + "14550": "flow:RCR_aorta:J_heart_inlet", + "14551": "flow:RCR_aorta:J_heart_inlet", + "14552": "flow:RCR_aorta:J_heart_inlet", + "14553": "flow:RCR_aorta:J_heart_inlet", + "14554": "flow:RCR_aorta:J_heart_inlet", + "14555": "flow:RCR_aorta:J_heart_inlet", + "14556": "flow:RCR_aorta:J_heart_inlet", + "14557": "flow:RCR_aorta:J_heart_inlet", + "14558": "flow:RCR_aorta:J_heart_inlet", + "14559": "flow:RCR_aorta:J_heart_inlet", + "14560": "flow:RCR_aorta:J_heart_inlet", + "14561": "flow:RCR_aorta:J_heart_inlet", + "14562": "flow:RCR_aorta:J_heart_inlet", + "14563": "flow:RCR_aorta:J_heart_inlet", + "14564": "flow:RCR_aorta:J_heart_inlet", + "14565": "flow:RCR_aorta:J_heart_inlet", + "14566": "flow:RCR_aorta:J_heart_inlet", + "14567": "flow:RCR_aorta:J_heart_inlet", + "14568": "flow:RCR_aorta:J_heart_inlet", + "14569": "flow:RCR_aorta:J_heart_inlet", + "14570": "flow:RCR_aorta:J_heart_inlet", + "14571": "flow:RCR_aorta:J_heart_inlet", + "14572": "flow:RCR_aorta:J_heart_inlet", + "14573": "flow:RCR_aorta:J_heart_inlet", + "14574": "flow:RCR_aorta:J_heart_inlet", + "14575": "flow:RCR_aorta:J_heart_inlet", + "14576": "flow:RCR_aorta:J_heart_inlet", + "14577": "flow:RCR_aorta:J_heart_inlet", + "14578": "flow:RCR_aorta:J_heart_inlet", + "14579": "flow:RCR_aorta:J_heart_inlet", + "14580": "flow:RCR_aorta:J_heart_inlet", + "14581": "flow:RCR_aorta:J_heart_inlet", + "14582": "flow:RCR_aorta:J_heart_inlet", + "14583": "flow:RCR_aorta:J_heart_inlet", + "14584": "flow:RCR_aorta:J_heart_inlet", + "14585": "flow:RCR_aorta:J_heart_inlet", + "14586": "flow:RCR_aorta:J_heart_inlet", + "14587": "flow:RCR_aorta:J_heart_inlet", + "14588": "flow:RCR_aorta:J_heart_inlet", + "14589": "flow:RCR_aorta:J_heart_inlet", + "14590": "flow:RCR_aorta:J_heart_inlet", + "14591": "flow:RCR_aorta:J_heart_inlet", + "14592": "flow:RCR_aorta:J_heart_inlet", + "14593": "flow:RCR_aorta:J_heart_inlet", + "14594": "flow:RCR_aorta:J_heart_inlet", + "14595": "flow:RCR_aorta:J_heart_inlet", + "14596": "flow:RCR_aorta:J_heart_inlet", + "14597": "flow:RCR_aorta:J_heart_inlet", + "14598": "flow:RCR_aorta:J_heart_inlet", + "14599": "flow:RCR_aorta:J_heart_inlet", + "14600": "flow:RCR_aorta:J_heart_inlet", + "14601": "flow:RCR_aorta:J_heart_inlet", + "14602": "flow:RCR_aorta:J_heart_inlet", + "14603": "flow:RCR_aorta:J_heart_inlet", + "14604": "flow:RCR_aorta:J_heart_inlet", + "14605": "flow:RCR_aorta:J_heart_inlet", + "14606": "flow:RCR_aorta:J_heart_inlet", + "14607": "flow:RCR_aorta:J_heart_inlet", + "14608": "flow:RCR_aorta:J_heart_inlet", + "14609": "flow:RCR_aorta:J_heart_inlet", + "14610": "flow:RCR_aorta:J_heart_inlet", + "14611": "flow:RCR_aorta:J_heart_inlet", + "14612": "flow:RCR_aorta:J_heart_inlet", + "14613": "flow:RCR_aorta:J_heart_inlet", + "14614": "flow:RCR_aorta:J_heart_inlet", + "14615": "flow:RCR_aorta:J_heart_inlet", + "14616": "flow:RCR_aorta:J_heart_inlet", + "14617": "flow:RCR_aorta:J_heart_inlet", + "14618": "flow:RCR_aorta:J_heart_inlet", + "14619": "flow:RCR_aorta:J_heart_inlet", + "14620": "flow:RCR_aorta:J_heart_inlet", + "14621": "flow:RCR_aorta:J_heart_inlet", + "14622": "flow:RCR_aorta:J_heart_inlet", + "14623": "flow:RCR_aorta:J_heart_inlet", + "14624": "flow:RCR_aorta:J_heart_inlet", + "14625": "flow:RCR_aorta:J_heart_inlet", + "14626": "flow:RCR_aorta:J_heart_inlet", + "14627": "flow:RCR_aorta:J_heart_inlet", + "14628": "flow:RCR_aorta:J_heart_inlet", + "14629": "flow:RCR_aorta:J_heart_inlet", + "14630": "flow:RCR_aorta:J_heart_inlet", + "14631": "flow:RCR_aorta:J_heart_inlet", + "14632": "flow:RCR_aorta:J_heart_inlet", + "14633": "flow:RCR_aorta:J_heart_inlet", + "14634": "flow:RCR_aorta:J_heart_inlet", + "14635": "flow:RCR_aorta:J_heart_inlet", + "14636": "flow:RCR_aorta:J_heart_inlet", + "14637": "flow:RCR_aorta:J_heart_inlet", + "14638": "flow:RCR_aorta:J_heart_inlet", + "14639": "flow:RCR_aorta:J_heart_inlet", + "14640": "flow:RCR_aorta:J_heart_inlet", + "14641": "flow:RCR_aorta:J_heart_inlet", + "14642": "flow:RCR_aorta:J_heart_inlet", + "14643": "flow:RCR_aorta:J_heart_inlet", + "14644": "flow:RCR_aorta:J_heart_inlet", + "14645": "flow:RCR_aorta:J_heart_inlet", + "14646": "flow:RCR_aorta:J_heart_inlet", + "14647": "flow:RCR_aorta:J_heart_inlet", + "14648": "flow:RCR_aorta:J_heart_inlet", + "14649": "flow:RCR_aorta:J_heart_inlet", + "14650": "flow:RCR_aorta:J_heart_inlet", + "14651": "flow:RCR_aorta:J_heart_inlet", + "14652": "flow:RCR_aorta:J_heart_inlet", + "14653": "flow:RCR_aorta:J_heart_inlet", + "14654": "flow:RCR_aorta:J_heart_inlet", + "14655": "flow:RCR_aorta:J_heart_inlet", + "14656": "flow:RCR_aorta:J_heart_inlet", + "14657": "flow:RCR_aorta:J_heart_inlet", + "14658": "flow:RCR_aorta:J_heart_inlet", + "14659": "flow:RCR_aorta:J_heart_inlet", + "14660": "flow:RCR_aorta:J_heart_inlet", + "14661": "flow:RCR_aorta:J_heart_inlet", + "14662": "flow:RCR_aorta:J_heart_inlet", + "14663": "flow:RCR_aorta:J_heart_inlet", + "14664": "flow:RCR_aorta:J_heart_inlet", + "14665": "flow:RCR_aorta:J_heart_inlet", + "14666": "flow:RCR_aorta:J_heart_inlet", + "14667": "flow:RCR_aorta:J_heart_inlet", + "14668": "flow:RCR_aorta:J_heart_inlet", + "14669": "flow:RCR_aorta:J_heart_inlet", + "14670": "flow:RCR_aorta:J_heart_inlet", + "14671": "flow:RCR_aorta:J_heart_inlet", + "14672": "flow:RCR_aorta:J_heart_inlet", + "14673": "flow:RCR_aorta:J_heart_inlet", + "14674": "flow:RCR_aorta:J_heart_inlet", + "14675": "flow:RCR_aorta:J_heart_inlet", + "14676": "flow:RCR_aorta:J_heart_inlet", + "14677": "flow:RCR_aorta:J_heart_inlet", + "14678": "flow:RCR_aorta:J_heart_inlet", + "14679": "flow:RCR_aorta:J_heart_inlet", + "14680": "flow:RCR_aorta:J_heart_inlet", + "14681": "flow:RCR_aorta:J_heart_inlet", + "14682": "flow:RCR_aorta:J_heart_inlet", + "14683": "flow:RCR_aorta:J_heart_inlet", + "14684": "flow:RCR_aorta:J_heart_inlet", + "14685": "flow:RCR_aorta:J_heart_inlet", + "14686": "flow:RCR_aorta:J_heart_inlet", + "14687": "flow:RCR_aorta:J_heart_inlet", + "14688": "flow:RCR_aorta:J_heart_inlet", + "14689": "flow:RCR_aorta:J_heart_inlet", + "14690": "flow:RCR_aorta:J_heart_inlet", + "14691": "flow:RCR_aorta:J_heart_inlet", + "14692": "flow:RCR_aorta:J_heart_inlet", + "14693": "flow:RCR_aorta:J_heart_inlet", + "14694": "flow:RCR_aorta:J_heart_inlet", + "14695": "flow:RCR_aorta:J_heart_inlet", + "14696": "flow:RCR_aorta:J_heart_inlet", + "14697": "flow:RCR_aorta:J_heart_inlet", + "14698": "flow:RCR_aorta:J_heart_inlet", + "14699": "flow:RCR_aorta:J_heart_inlet", + "14700": "flow:RCR_aorta:J_heart_inlet", + "14701": "flow:RCR_aorta:J_heart_inlet", + "14702": "flow:RCR_aorta:J_heart_inlet", + "14703": "flow:RCR_aorta:J_heart_inlet", + "14704": "flow:RCR_aorta:J_heart_inlet", + "14705": "flow:RCR_aorta:J_heart_inlet", + "14706": "flow:RCR_aorta:J_heart_inlet", + "14707": "flow:RCR_aorta:J_heart_inlet", + "14708": "flow:RCR_aorta:J_heart_inlet", + "14709": "flow:RCR_aorta:J_heart_inlet", + "14710": "flow:RCR_aorta:J_heart_inlet", + "14711": "flow:RCR_aorta:J_heart_inlet", + "14712": "flow:RCR_aorta:J_heart_inlet", + "14713": "flow:RCR_aorta:J_heart_inlet", + "14714": "flow:RCR_aorta:J_heart_inlet", + "14715": "flow:RCR_aorta:J_heart_inlet", + "14716": "flow:RCR_aorta:J_heart_inlet", + "14717": "flow:RCR_aorta:J_heart_inlet", + "14718": "flow:RCR_aorta:J_heart_inlet", + "14719": "flow:RCR_aorta:J_heart_inlet", + "14720": "flow:RCR_aorta:J_heart_inlet", + "14721": "flow:RCR_aorta:J_heart_inlet", + "14722": "flow:RCR_aorta:J_heart_inlet", + "14723": "flow:RCR_aorta:J_heart_inlet", + "14724": "flow:RCR_aorta:J_heart_inlet", + "14725": "flow:RCR_aorta:J_heart_inlet", + "14726": "flow:RCR_aorta:J_heart_inlet", + "14727": "flow:RCR_aorta:J_heart_inlet", + "14728": "flow:RCR_aorta:J_heart_inlet", + "14729": "flow:RCR_aorta:J_heart_inlet", + "14730": "flow:RCR_aorta:J_heart_inlet", + "14731": "flow:RCR_aorta:J_heart_inlet", + "14732": "flow:RCR_aorta:J_heart_inlet", + "14733": "flow:RCR_aorta:J_heart_inlet", + "14734": "flow:RCR_aorta:J_heart_inlet", + "14735": "flow:RCR_aorta:J_heart_inlet", + "14736": "flow:RCR_aorta:J_heart_inlet", + "14737": "flow:RCR_aorta:J_heart_inlet", + "14738": "flow:RCR_aorta:J_heart_inlet", + "14739": "flow:RCR_aorta:J_heart_inlet", + "14740": "flow:RCR_aorta:J_heart_inlet", + "14741": "flow:RCR_aorta:J_heart_inlet", + "14742": "flow:RCR_aorta:J_heart_inlet", + "14743": "flow:RCR_aorta:J_heart_inlet", + "14744": "flow:RCR_aorta:J_heart_inlet", + "14745": "flow:RCR_aorta:J_heart_inlet", + "14746": "flow:RCR_aorta:J_heart_inlet", + "14747": "flow:RCR_aorta:J_heart_inlet", + "14748": "flow:RCR_aorta:J_heart_inlet", + "14749": "flow:RCR_aorta:J_heart_inlet", + "14750": "flow:RCR_aorta:J_heart_inlet", + "14751": "flow:RCR_aorta:J_heart_inlet", + "14752": "flow:RCR_aorta:J_heart_inlet", + "14753": "flow:RCR_aorta:J_heart_inlet", + "14754": "flow:RCR_aorta:J_heart_inlet", + "14755": "flow:RCR_aorta:J_heart_inlet", + "14756": "flow:RCR_aorta:J_heart_inlet", + "14757": "flow:RCR_aorta:J_heart_inlet", + "14758": "flow:RCR_aorta:J_heart_inlet", + "14759": "flow:RCR_aorta:J_heart_inlet", + "14760": "flow:RCR_aorta:J_heart_inlet", + "14761": "flow:RCR_aorta:J_heart_inlet", + "14762": "flow:RCR_aorta:J_heart_inlet", + "14763": "flow:RCR_aorta:J_heart_inlet", + "14764": "flow:RCR_aorta:J_heart_inlet", + "14765": "flow:RCR_aorta:J_heart_inlet", + "14766": "flow:RCR_aorta:J_heart_inlet", + "14767": "flow:RCR_aorta:J_heart_inlet", + "14768": "flow:RCR_aorta:J_heart_inlet", + "14769": "flow:RCR_aorta:J_heart_inlet", + "14770": "flow:RCR_aorta:J_heart_inlet", + "14771": "flow:RCR_aorta:J_heart_inlet", + "14772": "flow:RCR_aorta:J_heart_inlet", + "14773": "flow:RCR_aorta:J_heart_inlet", + "14774": "flow:RCR_aorta:J_heart_inlet", + "14775": "flow:RCR_aorta:J_heart_inlet", + "14776": "flow:RCR_aorta:J_heart_inlet", + "14777": "flow:RCR_aorta:J_heart_inlet", + "14778": "flow:RCR_aorta:J_heart_inlet", + "14779": "flow:RCR_aorta:J_heart_inlet", + "14780": "flow:RCR_aorta:J_heart_inlet", + "14781": "flow:RCR_aorta:J_heart_inlet", + "14782": "flow:RCR_aorta:J_heart_inlet", + "14783": "flow:RCR_aorta:J_heart_inlet", + "14784": "flow:RCR_aorta:J_heart_inlet", + "14785": "flow:RCR_aorta:J_heart_inlet", + "14786": "flow:RCR_aorta:J_heart_inlet", + "14787": "flow:RCR_aorta:J_heart_inlet", + "14788": "flow:RCR_aorta:J_heart_inlet", + "14789": "flow:RCR_aorta:J_heart_inlet", + "14790": "flow:RCR_aorta:J_heart_inlet", + "14791": "flow:RCR_aorta:J_heart_inlet", + "14792": "flow:RCR_aorta:J_heart_inlet", + "14793": "flow:RCR_aorta:J_heart_inlet", + "14794": "flow:RCR_aorta:J_heart_inlet", + "14795": "flow:RCR_aorta:J_heart_inlet", + "14796": "flow:RCR_aorta:J_heart_inlet", + "14797": "flow:RCR_aorta:J_heart_inlet", + "14798": "flow:RCR_aorta:J_heart_inlet", + "14799": "flow:RCR_aorta:J_heart_inlet", + "14800": "flow:RCR_aorta:J_heart_inlet", + "14801": "flow:RCR_aorta:J_heart_inlet", + "14802": "flow:RCR_aorta:J_heart_inlet", + "14803": "flow:RCR_aorta:J_heart_inlet", + "14804": "flow:RCR_aorta:J_heart_inlet", + "14805": "flow:RCR_aorta:J_heart_inlet", + "14806": "flow:RCR_aorta:J_heart_inlet", + "14807": "flow:RCR_aorta:J_heart_inlet", + "14808": "flow:RCR_aorta:J_heart_inlet", + "14809": "flow:RCR_aorta:J_heart_inlet", + "14810": "flow:RCR_aorta:J_heart_inlet", + "14811": "flow:RCR_aorta:J_heart_inlet", + "14812": "flow:RCR_aorta:J_heart_inlet", + "14813": "flow:RCR_aorta:J_heart_inlet", + "14814": "flow:RCR_aorta:J_heart_inlet", + "14815": "flow:RCR_aorta:J_heart_inlet", + "14816": "flow:RCR_aorta:J_heart_inlet", + "14817": "flow:RCR_aorta:J_heart_inlet", + "14818": "flow:RCR_aorta:J_heart_inlet", + "14819": "flow:RCR_aorta:J_heart_inlet", + "14820": "flow:RCR_aorta:J_heart_inlet", + "14821": "flow:RCR_aorta:J_heart_inlet", + "14822": "flow:RCR_aorta:J_heart_inlet", + "14823": "flow:RCR_aorta:J_heart_inlet", + "14824": "flow:RCR_aorta:J_heart_inlet", + "14825": "flow:RCR_aorta:J_heart_inlet", + "14826": "flow:RCR_aorta:J_heart_inlet", + "14827": "flow:RCR_aorta:J_heart_inlet", + "14828": "flow:RCR_aorta:J_heart_inlet", + "14829": "flow:RCR_aorta:J_heart_inlet", + "14830": "flow:RCR_aorta:J_heart_inlet", + "14831": "flow:RCR_aorta:J_heart_inlet", + "14832": "flow:RCR_aorta:J_heart_inlet", + "14833": "flow:RCR_aorta:J_heart_inlet", + "14834": "flow:RCR_aorta:J_heart_inlet", + "14835": "flow:RCR_aorta:J_heart_inlet", + "14836": "flow:RCR_aorta:J_heart_inlet", + "14837": "flow:RCR_aorta:J_heart_inlet", + "14838": "flow:RCR_aorta:J_heart_inlet", + "14839": "flow:RCR_aorta:J_heart_inlet", + "14840": "flow:RCR_aorta:J_heart_inlet", + "14841": "flow:RCR_aorta:J_heart_inlet", + "14842": "flow:RCR_aorta:J_heart_inlet", + "14843": "flow:RCR_aorta:J_heart_inlet", + "14844": "flow:RCR_aorta:J_heart_inlet", + "14845": "flow:RCR_aorta:J_heart_inlet", + "14846": "flow:RCR_aorta:J_heart_inlet", + "14847": "flow:RCR_aorta:J_heart_inlet", + "14848": "flow:RCR_aorta:J_heart_inlet", + "14849": "flow:RCR_aorta:J_heart_inlet", + "14850": "flow:RCR_aorta:J_heart_inlet", + "14851": "flow:RCR_aorta:J_heart_inlet", + "14852": "flow:RCR_aorta:J_heart_inlet", + "14853": "flow:RCR_aorta:J_heart_inlet", + "14854": "flow:RCR_aorta:J_heart_inlet", + "14855": "flow:RCR_aorta:J_heart_inlet", + "14856": "flow:RCR_aorta:J_heart_inlet", + "14857": "flow:RCR_aorta:J_heart_inlet", + "14858": "flow:RCR_aorta:J_heart_inlet", + "14859": "flow:RCR_aorta:J_heart_inlet", + "14860": "flow:RCR_aorta:J_heart_inlet", + "14861": "flow:RCR_aorta:J_heart_inlet", + "14862": "flow:RCR_aorta:J_heart_inlet", + "14863": "flow:RCR_aorta:J_heart_inlet", + "14864": "flow:RCR_aorta:J_heart_inlet", + "14865": "flow:RCR_aorta:J_heart_inlet", + "14866": "flow:RCR_aorta:J_heart_inlet", + "14867": "flow:RCR_aorta:J_heart_inlet", + "14868": "flow:RCR_aorta:J_heart_inlet", + "14869": "flow:RCR_aorta:J_heart_inlet", + "14870": "flow:RCR_aorta:J_heart_inlet", + "14871": "flow:RCR_aorta:J_heart_inlet", + "14872": "flow:RCR_aorta:J_heart_inlet", + "14873": "flow:RCR_aorta:J_heart_inlet", + "14874": "flow:RCR_aorta:J_heart_inlet", + "14875": "flow:RCR_aorta:J_heart_inlet", + "14876": "flow:RCR_aorta:J_heart_inlet", + "14877": "flow:RCR_aorta:J_heart_inlet", + "14878": "flow:RCR_aorta:J_heart_inlet", + "14879": "flow:RCR_aorta:J_heart_inlet", + "14880": "flow:RCR_aorta:J_heart_inlet", + "14881": "flow:RCR_aorta:J_heart_inlet", + "14882": "flow:RCR_aorta:J_heart_inlet", + "14883": "flow:RCR_aorta:J_heart_inlet", + "14884": "flow:RCR_aorta:J_heart_inlet", + "14885": "flow:RCR_aorta:J_heart_inlet", + "14886": "flow:RCR_aorta:J_heart_inlet", + "14887": "flow:RCR_aorta:J_heart_inlet", + "14888": "flow:RCR_aorta:J_heart_inlet", + "14889": "flow:RCR_aorta:J_heart_inlet", + "14890": "flow:RCR_aorta:J_heart_inlet", + "14891": "flow:RCR_aorta:J_heart_inlet", + "14892": "flow:RCR_aorta:J_heart_inlet", + "14893": "flow:RCR_aorta:J_heart_inlet", + "14894": "flow:RCR_aorta:J_heart_inlet", + "14895": "flow:RCR_aorta:J_heart_inlet", + "14896": "flow:RCR_aorta:J_heart_inlet", + "14897": "flow:RCR_aorta:J_heart_inlet", + "14898": "flow:RCR_aorta:J_heart_inlet", + "14899": "flow:RCR_aorta:J_heart_inlet", + "14900": "flow:RCR_aorta:J_heart_inlet", + "14901": "flow:RCR_aorta:J_heart_inlet", + "14902": "flow:RCR_aorta:J_heart_inlet", + "14903": "flow:RCR_aorta:J_heart_inlet", + "14904": "flow:RCR_aorta:J_heart_inlet", + "14905": "flow:RCR_aorta:J_heart_inlet", + "14906": "flow:RCR_aorta:J_heart_inlet", + "14907": "flow:RCR_aorta:J_heart_inlet", + "14908": "flow:RCR_aorta:J_heart_inlet", + "14909": "flow:RCR_aorta:J_heart_inlet", + "14910": "flow:RCR_aorta:J_heart_inlet", + "14911": "flow:RCR_aorta:J_heart_inlet", + "14912": "flow:RCR_aorta:J_heart_inlet", + "14913": "flow:RCR_aorta:J_heart_inlet", + "14914": "flow:RCR_aorta:J_heart_inlet", + "14915": "flow:RCR_aorta:J_heart_inlet", + "14916": "flow:RCR_aorta:J_heart_inlet", + "14917": "flow:RCR_aorta:J_heart_inlet", + "14918": "flow:RCR_aorta:J_heart_inlet", + "14919": "flow:RCR_aorta:J_heart_inlet", + "14920": "flow:RCR_aorta:J_heart_inlet", + "14921": "flow:RCR_aorta:J_heart_inlet", + "14922": "flow:RCR_aorta:J_heart_inlet", + "14923": "flow:RCR_aorta:J_heart_inlet", + "14924": "flow:RCR_aorta:J_heart_inlet", + "14925": "flow:RCR_aorta:J_heart_inlet", + "14926": "flow:RCR_aorta:J_heart_inlet", + "14927": "flow:RCR_aorta:J_heart_inlet", + "14928": "flow:RCR_aorta:J_heart_inlet", + "14929": "flow:RCR_aorta:J_heart_inlet", + "14930": "flow:RCR_aorta:J_heart_inlet", + "14931": "flow:RCR_aorta:J_heart_inlet", + "14932": "flow:RCR_aorta:J_heart_inlet", + "14933": "flow:RCR_aorta:J_heart_inlet", + "14934": "flow:RCR_aorta:J_heart_inlet", + "14935": "flow:RCR_aorta:J_heart_inlet", + "14936": "flow:RCR_aorta:J_heart_inlet", + "14937": "flow:RCR_aorta:J_heart_inlet", + "14938": "flow:RCR_aorta:J_heart_inlet", + "14939": "flow:RCR_aorta:J_heart_inlet", + "14940": "flow:RCR_aorta:J_heart_inlet", + "14941": "flow:RCR_aorta:J_heart_inlet", + "14942": "flow:RCR_aorta:J_heart_inlet", + "14943": "flow:RCR_aorta:J_heart_inlet", + "14944": "flow:RCR_aorta:J_heart_inlet", + "14945": "flow:RCR_aorta:J_heart_inlet", + "14946": "flow:RCR_aorta:J_heart_inlet", + "14947": "flow:RCR_aorta:J_heart_inlet", + "14948": "flow:RCR_aorta:J_heart_inlet", + "14949": "flow:RCR_aorta:J_heart_inlet", + "14950": "flow:RCR_aorta:J_heart_inlet", + "14951": "flow:RCR_aorta:J_heart_inlet", + "14952": "flow:RCR_aorta:J_heart_inlet", + "14953": "flow:RCR_aorta:J_heart_inlet", + "14954": "flow:RCR_aorta:J_heart_inlet", + "14955": "flow:RCR_aorta:J_heart_inlet", + "14956": "flow:RCR_aorta:J_heart_inlet", + "14957": "flow:RCR_aorta:J_heart_inlet", + "14958": "flow:RCR_aorta:J_heart_inlet", + "14959": "flow:RCR_aorta:J_heart_inlet", + "14960": "flow:RCR_aorta:J_heart_inlet", + "14961": "flow:RCR_aorta:J_heart_inlet", + "14962": "flow:RCR_aorta:J_heart_inlet", + "14963": "flow:RCR_aorta:J_heart_inlet", + "14964": "flow:RCR_aorta:J_heart_inlet", + "14965": "flow:RCR_aorta:J_heart_inlet", + "14966": "flow:RCR_aorta:J_heart_inlet", + "14967": "flow:RCR_aorta:J_heart_inlet", + "14968": "flow:RCR_aorta:J_heart_inlet", + "14969": "flow:RCR_aorta:J_heart_inlet", + "14970": "flow:RCR_aorta:J_heart_inlet", + "14971": "flow:RCR_aorta:J_heart_inlet", + "14972": "flow:RCR_aorta:J_heart_inlet", + "14973": "flow:RCR_aorta:J_heart_inlet", + "14974": "flow:RCR_aorta:J_heart_inlet", + "14975": "flow:RCR_aorta:J_heart_inlet", + "14976": "flow:RCR_aorta:J_heart_inlet", + "14977": "flow:RCR_aorta:J_heart_inlet", + "14978": "flow:RCR_aorta:J_heart_inlet", + "14979": "flow:RCR_aorta:J_heart_inlet", + "14980": "flow:RCR_aorta:J_heart_inlet", + "14981": "flow:RCR_aorta:J_heart_inlet", + "14982": "flow:RCR_aorta:J_heart_inlet", + "14983": "flow:RCR_aorta:J_heart_inlet", + "14984": "flow:RCR_aorta:J_heart_inlet", + "14985": "flow:RCR_aorta:J_heart_inlet", + "14986": "flow:RCR_aorta:J_heart_inlet", + "14987": "flow:RCR_aorta:J_heart_inlet", + "14988": "flow:RCR_aorta:J_heart_inlet", + "14989": "flow:RCR_aorta:J_heart_inlet", + "14990": "flow:RCR_aorta:J_heart_inlet", + "14991": "flow:RCR_aorta:J_heart_inlet", + "14992": "flow:RCR_aorta:J_heart_inlet", + "14993": "flow:RCR_aorta:J_heart_inlet", + "14994": "flow:RCR_aorta:J_heart_inlet", + "14995": "flow:RCR_aorta:J_heart_inlet", + "14996": "flow:RCR_aorta:J_heart_inlet", + "14997": "flow:RCR_aorta:J_heart_inlet", + "14998": "flow:RCR_aorta:J_heart_inlet", + "14999": "flow:RCR_aorta:J_heart_inlet", + "15000": "pressure:RCR_aorta:J_heart_inlet", + "15001": "pressure:RCR_aorta:J_heart_inlet", + "15002": "pressure:RCR_aorta:J_heart_inlet", + "15003": "pressure:RCR_aorta:J_heart_inlet", + "15004": "pressure:RCR_aorta:J_heart_inlet", + "15005": "pressure:RCR_aorta:J_heart_inlet", + "15006": "pressure:RCR_aorta:J_heart_inlet", + "15007": "pressure:RCR_aorta:J_heart_inlet", + "15008": "pressure:RCR_aorta:J_heart_inlet", + "15009": "pressure:RCR_aorta:J_heart_inlet", + "15010": "pressure:RCR_aorta:J_heart_inlet", + "15011": "pressure:RCR_aorta:J_heart_inlet", + "15012": "pressure:RCR_aorta:J_heart_inlet", + "15013": "pressure:RCR_aorta:J_heart_inlet", + "15014": "pressure:RCR_aorta:J_heart_inlet", + "15015": "pressure:RCR_aorta:J_heart_inlet", + "15016": "pressure:RCR_aorta:J_heart_inlet", + "15017": "pressure:RCR_aorta:J_heart_inlet", + "15018": "pressure:RCR_aorta:J_heart_inlet", + "15019": "pressure:RCR_aorta:J_heart_inlet", + "15020": "pressure:RCR_aorta:J_heart_inlet", + "15021": "pressure:RCR_aorta:J_heart_inlet", + "15022": "pressure:RCR_aorta:J_heart_inlet", + "15023": "pressure:RCR_aorta:J_heart_inlet", + "15024": "pressure:RCR_aorta:J_heart_inlet", + "15025": "pressure:RCR_aorta:J_heart_inlet", + "15026": "pressure:RCR_aorta:J_heart_inlet", + "15027": "pressure:RCR_aorta:J_heart_inlet", + "15028": "pressure:RCR_aorta:J_heart_inlet", + "15029": "pressure:RCR_aorta:J_heart_inlet", + "15030": "pressure:RCR_aorta:J_heart_inlet", + "15031": "pressure:RCR_aorta:J_heart_inlet", + "15032": "pressure:RCR_aorta:J_heart_inlet", + "15033": "pressure:RCR_aorta:J_heart_inlet", + "15034": "pressure:RCR_aorta:J_heart_inlet", + "15035": "pressure:RCR_aorta:J_heart_inlet", + "15036": "pressure:RCR_aorta:J_heart_inlet", + "15037": "pressure:RCR_aorta:J_heart_inlet", + "15038": "pressure:RCR_aorta:J_heart_inlet", + "15039": "pressure:RCR_aorta:J_heart_inlet", + "15040": "pressure:RCR_aorta:J_heart_inlet", + "15041": "pressure:RCR_aorta:J_heart_inlet", + "15042": "pressure:RCR_aorta:J_heart_inlet", + "15043": "pressure:RCR_aorta:J_heart_inlet", + "15044": "pressure:RCR_aorta:J_heart_inlet", + "15045": "pressure:RCR_aorta:J_heart_inlet", + "15046": "pressure:RCR_aorta:J_heart_inlet", + "15047": "pressure:RCR_aorta:J_heart_inlet", + "15048": "pressure:RCR_aorta:J_heart_inlet", + "15049": "pressure:RCR_aorta:J_heart_inlet", + "15050": "pressure:RCR_aorta:J_heart_inlet", + "15051": "pressure:RCR_aorta:J_heart_inlet", + "15052": "pressure:RCR_aorta:J_heart_inlet", + "15053": "pressure:RCR_aorta:J_heart_inlet", + "15054": "pressure:RCR_aorta:J_heart_inlet", + "15055": "pressure:RCR_aorta:J_heart_inlet", + "15056": "pressure:RCR_aorta:J_heart_inlet", + "15057": "pressure:RCR_aorta:J_heart_inlet", + "15058": "pressure:RCR_aorta:J_heart_inlet", + "15059": "pressure:RCR_aorta:J_heart_inlet", + "15060": "pressure:RCR_aorta:J_heart_inlet", + "15061": "pressure:RCR_aorta:J_heart_inlet", + "15062": "pressure:RCR_aorta:J_heart_inlet", + "15063": "pressure:RCR_aorta:J_heart_inlet", + "15064": "pressure:RCR_aorta:J_heart_inlet", + "15065": "pressure:RCR_aorta:J_heart_inlet", + "15066": "pressure:RCR_aorta:J_heart_inlet", + "15067": "pressure:RCR_aorta:J_heart_inlet", + "15068": "pressure:RCR_aorta:J_heart_inlet", + "15069": "pressure:RCR_aorta:J_heart_inlet", + "15070": "pressure:RCR_aorta:J_heart_inlet", + "15071": "pressure:RCR_aorta:J_heart_inlet", + "15072": "pressure:RCR_aorta:J_heart_inlet", + "15073": "pressure:RCR_aorta:J_heart_inlet", + "15074": "pressure:RCR_aorta:J_heart_inlet", + "15075": "pressure:RCR_aorta:J_heart_inlet", + "15076": "pressure:RCR_aorta:J_heart_inlet", + "15077": "pressure:RCR_aorta:J_heart_inlet", + "15078": "pressure:RCR_aorta:J_heart_inlet", + "15079": "pressure:RCR_aorta:J_heart_inlet", + "15080": "pressure:RCR_aorta:J_heart_inlet", + "15081": "pressure:RCR_aorta:J_heart_inlet", + "15082": "pressure:RCR_aorta:J_heart_inlet", + "15083": "pressure:RCR_aorta:J_heart_inlet", + "15084": "pressure:RCR_aorta:J_heart_inlet", + "15085": "pressure:RCR_aorta:J_heart_inlet", + "15086": "pressure:RCR_aorta:J_heart_inlet", + "15087": "pressure:RCR_aorta:J_heart_inlet", + "15088": "pressure:RCR_aorta:J_heart_inlet", + "15089": "pressure:RCR_aorta:J_heart_inlet", + "15090": "pressure:RCR_aorta:J_heart_inlet", + "15091": "pressure:RCR_aorta:J_heart_inlet", + "15092": "pressure:RCR_aorta:J_heart_inlet", + "15093": "pressure:RCR_aorta:J_heart_inlet", + "15094": "pressure:RCR_aorta:J_heart_inlet", + "15095": "pressure:RCR_aorta:J_heart_inlet", + "15096": "pressure:RCR_aorta:J_heart_inlet", + "15097": "pressure:RCR_aorta:J_heart_inlet", + "15098": "pressure:RCR_aorta:J_heart_inlet", + "15099": "pressure:RCR_aorta:J_heart_inlet", + "15100": "pressure:RCR_aorta:J_heart_inlet", + "15101": "pressure:RCR_aorta:J_heart_inlet", + "15102": "pressure:RCR_aorta:J_heart_inlet", + "15103": "pressure:RCR_aorta:J_heart_inlet", + "15104": "pressure:RCR_aorta:J_heart_inlet", + "15105": "pressure:RCR_aorta:J_heart_inlet", + "15106": "pressure:RCR_aorta:J_heart_inlet", + "15107": "pressure:RCR_aorta:J_heart_inlet", + "15108": "pressure:RCR_aorta:J_heart_inlet", + "15109": "pressure:RCR_aorta:J_heart_inlet", + "15110": "pressure:RCR_aorta:J_heart_inlet", + "15111": "pressure:RCR_aorta:J_heart_inlet", + "15112": "pressure:RCR_aorta:J_heart_inlet", + "15113": "pressure:RCR_aorta:J_heart_inlet", + "15114": "pressure:RCR_aorta:J_heart_inlet", + "15115": "pressure:RCR_aorta:J_heart_inlet", + "15116": "pressure:RCR_aorta:J_heart_inlet", + "15117": "pressure:RCR_aorta:J_heart_inlet", + "15118": "pressure:RCR_aorta:J_heart_inlet", + "15119": "pressure:RCR_aorta:J_heart_inlet", + "15120": "pressure:RCR_aorta:J_heart_inlet", + "15121": "pressure:RCR_aorta:J_heart_inlet", + "15122": "pressure:RCR_aorta:J_heart_inlet", + "15123": "pressure:RCR_aorta:J_heart_inlet", + "15124": "pressure:RCR_aorta:J_heart_inlet", + "15125": "pressure:RCR_aorta:J_heart_inlet", + "15126": "pressure:RCR_aorta:J_heart_inlet", + "15127": "pressure:RCR_aorta:J_heart_inlet", + "15128": "pressure:RCR_aorta:J_heart_inlet", + "15129": "pressure:RCR_aorta:J_heart_inlet", + "15130": "pressure:RCR_aorta:J_heart_inlet", + "15131": "pressure:RCR_aorta:J_heart_inlet", + "15132": "pressure:RCR_aorta:J_heart_inlet", + "15133": "pressure:RCR_aorta:J_heart_inlet", + "15134": "pressure:RCR_aorta:J_heart_inlet", + "15135": "pressure:RCR_aorta:J_heart_inlet", + "15136": "pressure:RCR_aorta:J_heart_inlet", + "15137": "pressure:RCR_aorta:J_heart_inlet", + "15138": "pressure:RCR_aorta:J_heart_inlet", + "15139": "pressure:RCR_aorta:J_heart_inlet", + "15140": "pressure:RCR_aorta:J_heart_inlet", + "15141": "pressure:RCR_aorta:J_heart_inlet", + "15142": "pressure:RCR_aorta:J_heart_inlet", + "15143": "pressure:RCR_aorta:J_heart_inlet", + "15144": "pressure:RCR_aorta:J_heart_inlet", + "15145": "pressure:RCR_aorta:J_heart_inlet", + "15146": "pressure:RCR_aorta:J_heart_inlet", + "15147": "pressure:RCR_aorta:J_heart_inlet", + "15148": "pressure:RCR_aorta:J_heart_inlet", + "15149": "pressure:RCR_aorta:J_heart_inlet", + "15150": "pressure:RCR_aorta:J_heart_inlet", + "15151": "pressure:RCR_aorta:J_heart_inlet", + "15152": "pressure:RCR_aorta:J_heart_inlet", + "15153": "pressure:RCR_aorta:J_heart_inlet", + "15154": "pressure:RCR_aorta:J_heart_inlet", + "15155": "pressure:RCR_aorta:J_heart_inlet", + "15156": "pressure:RCR_aorta:J_heart_inlet", + "15157": "pressure:RCR_aorta:J_heart_inlet", + "15158": "pressure:RCR_aorta:J_heart_inlet", + "15159": "pressure:RCR_aorta:J_heart_inlet", + "15160": "pressure:RCR_aorta:J_heart_inlet", + "15161": "pressure:RCR_aorta:J_heart_inlet", + "15162": "pressure:RCR_aorta:J_heart_inlet", + "15163": "pressure:RCR_aorta:J_heart_inlet", + "15164": "pressure:RCR_aorta:J_heart_inlet", + "15165": "pressure:RCR_aorta:J_heart_inlet", + "15166": "pressure:RCR_aorta:J_heart_inlet", + "15167": "pressure:RCR_aorta:J_heart_inlet", + "15168": "pressure:RCR_aorta:J_heart_inlet", + "15169": "pressure:RCR_aorta:J_heart_inlet", + "15170": "pressure:RCR_aorta:J_heart_inlet", + "15171": "pressure:RCR_aorta:J_heart_inlet", + "15172": "pressure:RCR_aorta:J_heart_inlet", + "15173": "pressure:RCR_aorta:J_heart_inlet", + "15174": "pressure:RCR_aorta:J_heart_inlet", + "15175": "pressure:RCR_aorta:J_heart_inlet", + "15176": "pressure:RCR_aorta:J_heart_inlet", + "15177": "pressure:RCR_aorta:J_heart_inlet", + "15178": "pressure:RCR_aorta:J_heart_inlet", + "15179": "pressure:RCR_aorta:J_heart_inlet", + "15180": "pressure:RCR_aorta:J_heart_inlet", + "15181": "pressure:RCR_aorta:J_heart_inlet", + "15182": "pressure:RCR_aorta:J_heart_inlet", + "15183": "pressure:RCR_aorta:J_heart_inlet", + "15184": "pressure:RCR_aorta:J_heart_inlet", + "15185": "pressure:RCR_aorta:J_heart_inlet", + "15186": "pressure:RCR_aorta:J_heart_inlet", + "15187": "pressure:RCR_aorta:J_heart_inlet", + "15188": "pressure:RCR_aorta:J_heart_inlet", + "15189": "pressure:RCR_aorta:J_heart_inlet", + "15190": "pressure:RCR_aorta:J_heart_inlet", + "15191": "pressure:RCR_aorta:J_heart_inlet", + "15192": "pressure:RCR_aorta:J_heart_inlet", + "15193": "pressure:RCR_aorta:J_heart_inlet", + "15194": "pressure:RCR_aorta:J_heart_inlet", + "15195": "pressure:RCR_aorta:J_heart_inlet", + "15196": "pressure:RCR_aorta:J_heart_inlet", + "15197": "pressure:RCR_aorta:J_heart_inlet", + "15198": "pressure:RCR_aorta:J_heart_inlet", + "15199": "pressure:RCR_aorta:J_heart_inlet", + "15200": "pressure:RCR_aorta:J_heart_inlet", + "15201": "pressure:RCR_aorta:J_heart_inlet", + "15202": "pressure:RCR_aorta:J_heart_inlet", + "15203": "pressure:RCR_aorta:J_heart_inlet", + "15204": "pressure:RCR_aorta:J_heart_inlet", + "15205": "pressure:RCR_aorta:J_heart_inlet", + "15206": "pressure:RCR_aorta:J_heart_inlet", + "15207": "pressure:RCR_aorta:J_heart_inlet", + "15208": "pressure:RCR_aorta:J_heart_inlet", + "15209": "pressure:RCR_aorta:J_heart_inlet", + "15210": "pressure:RCR_aorta:J_heart_inlet", + "15211": "pressure:RCR_aorta:J_heart_inlet", + "15212": "pressure:RCR_aorta:J_heart_inlet", + "15213": "pressure:RCR_aorta:J_heart_inlet", + "15214": "pressure:RCR_aorta:J_heart_inlet", + "15215": "pressure:RCR_aorta:J_heart_inlet", + "15216": "pressure:RCR_aorta:J_heart_inlet", + "15217": "pressure:RCR_aorta:J_heart_inlet", + "15218": "pressure:RCR_aorta:J_heart_inlet", + "15219": "pressure:RCR_aorta:J_heart_inlet", + "15220": "pressure:RCR_aorta:J_heart_inlet", + "15221": "pressure:RCR_aorta:J_heart_inlet", + "15222": "pressure:RCR_aorta:J_heart_inlet", + "15223": "pressure:RCR_aorta:J_heart_inlet", + "15224": "pressure:RCR_aorta:J_heart_inlet", + "15225": "pressure:RCR_aorta:J_heart_inlet", + "15226": "pressure:RCR_aorta:J_heart_inlet", + "15227": "pressure:RCR_aorta:J_heart_inlet", + "15228": "pressure:RCR_aorta:J_heart_inlet", + "15229": "pressure:RCR_aorta:J_heart_inlet", + "15230": "pressure:RCR_aorta:J_heart_inlet", + "15231": "pressure:RCR_aorta:J_heart_inlet", + "15232": "pressure:RCR_aorta:J_heart_inlet", + "15233": "pressure:RCR_aorta:J_heart_inlet", + "15234": "pressure:RCR_aorta:J_heart_inlet", + "15235": "pressure:RCR_aorta:J_heart_inlet", + "15236": "pressure:RCR_aorta:J_heart_inlet", + "15237": "pressure:RCR_aorta:J_heart_inlet", + "15238": "pressure:RCR_aorta:J_heart_inlet", + "15239": "pressure:RCR_aorta:J_heart_inlet", + "15240": "pressure:RCR_aorta:J_heart_inlet", + "15241": "pressure:RCR_aorta:J_heart_inlet", + "15242": "pressure:RCR_aorta:J_heart_inlet", + "15243": "pressure:RCR_aorta:J_heart_inlet", + "15244": "pressure:RCR_aorta:J_heart_inlet", + "15245": "pressure:RCR_aorta:J_heart_inlet", + "15246": "pressure:RCR_aorta:J_heart_inlet", + "15247": "pressure:RCR_aorta:J_heart_inlet", + "15248": "pressure:RCR_aorta:J_heart_inlet", + "15249": "pressure:RCR_aorta:J_heart_inlet", + "15250": "pressure:RCR_aorta:J_heart_inlet", + "15251": "pressure:RCR_aorta:J_heart_inlet", + "15252": "pressure:RCR_aorta:J_heart_inlet", + "15253": "pressure:RCR_aorta:J_heart_inlet", + "15254": "pressure:RCR_aorta:J_heart_inlet", + "15255": "pressure:RCR_aorta:J_heart_inlet", + "15256": "pressure:RCR_aorta:J_heart_inlet", + "15257": "pressure:RCR_aorta:J_heart_inlet", + "15258": "pressure:RCR_aorta:J_heart_inlet", + "15259": "pressure:RCR_aorta:J_heart_inlet", + "15260": "pressure:RCR_aorta:J_heart_inlet", + "15261": "pressure:RCR_aorta:J_heart_inlet", + "15262": "pressure:RCR_aorta:J_heart_inlet", + "15263": "pressure:RCR_aorta:J_heart_inlet", + "15264": "pressure:RCR_aorta:J_heart_inlet", + "15265": "pressure:RCR_aorta:J_heart_inlet", + "15266": "pressure:RCR_aorta:J_heart_inlet", + "15267": "pressure:RCR_aorta:J_heart_inlet", + "15268": "pressure:RCR_aorta:J_heart_inlet", + "15269": "pressure:RCR_aorta:J_heart_inlet", + "15270": "pressure:RCR_aorta:J_heart_inlet", + "15271": "pressure:RCR_aorta:J_heart_inlet", + "15272": "pressure:RCR_aorta:J_heart_inlet", + "15273": "pressure:RCR_aorta:J_heart_inlet", + "15274": "pressure:RCR_aorta:J_heart_inlet", + "15275": "pressure:RCR_aorta:J_heart_inlet", + "15276": "pressure:RCR_aorta:J_heart_inlet", + "15277": "pressure:RCR_aorta:J_heart_inlet", + "15278": "pressure:RCR_aorta:J_heart_inlet", + "15279": "pressure:RCR_aorta:J_heart_inlet", + "15280": "pressure:RCR_aorta:J_heart_inlet", + "15281": "pressure:RCR_aorta:J_heart_inlet", + "15282": "pressure:RCR_aorta:J_heart_inlet", + "15283": "pressure:RCR_aorta:J_heart_inlet", + "15284": "pressure:RCR_aorta:J_heart_inlet", + "15285": "pressure:RCR_aorta:J_heart_inlet", + "15286": "pressure:RCR_aorta:J_heart_inlet", + "15287": "pressure:RCR_aorta:J_heart_inlet", + "15288": "pressure:RCR_aorta:J_heart_inlet", + "15289": "pressure:RCR_aorta:J_heart_inlet", + "15290": "pressure:RCR_aorta:J_heart_inlet", + "15291": "pressure:RCR_aorta:J_heart_inlet", + "15292": "pressure:RCR_aorta:J_heart_inlet", + "15293": "pressure:RCR_aorta:J_heart_inlet", + "15294": "pressure:RCR_aorta:J_heart_inlet", + "15295": "pressure:RCR_aorta:J_heart_inlet", + "15296": "pressure:RCR_aorta:J_heart_inlet", + "15297": "pressure:RCR_aorta:J_heart_inlet", + "15298": "pressure:RCR_aorta:J_heart_inlet", + "15299": "pressure:RCR_aorta:J_heart_inlet", + "15300": "pressure:RCR_aorta:J_heart_inlet", + "15301": "pressure:RCR_aorta:J_heart_inlet", + "15302": "pressure:RCR_aorta:J_heart_inlet", + "15303": "pressure:RCR_aorta:J_heart_inlet", + "15304": "pressure:RCR_aorta:J_heart_inlet", + "15305": "pressure:RCR_aorta:J_heart_inlet", + "15306": "pressure:RCR_aorta:J_heart_inlet", + "15307": "pressure:RCR_aorta:J_heart_inlet", + "15308": "pressure:RCR_aorta:J_heart_inlet", + "15309": "pressure:RCR_aorta:J_heart_inlet", + "15310": "pressure:RCR_aorta:J_heart_inlet", + "15311": "pressure:RCR_aorta:J_heart_inlet", + "15312": "pressure:RCR_aorta:J_heart_inlet", + "15313": "pressure:RCR_aorta:J_heart_inlet", + "15314": "pressure:RCR_aorta:J_heart_inlet", + "15315": "pressure:RCR_aorta:J_heart_inlet", + "15316": "pressure:RCR_aorta:J_heart_inlet", + "15317": "pressure:RCR_aorta:J_heart_inlet", + "15318": "pressure:RCR_aorta:J_heart_inlet", + "15319": "pressure:RCR_aorta:J_heart_inlet", + "15320": "pressure:RCR_aorta:J_heart_inlet", + "15321": "pressure:RCR_aorta:J_heart_inlet", + "15322": "pressure:RCR_aorta:J_heart_inlet", + "15323": "pressure:RCR_aorta:J_heart_inlet", + "15324": "pressure:RCR_aorta:J_heart_inlet", + "15325": "pressure:RCR_aorta:J_heart_inlet", + "15326": "pressure:RCR_aorta:J_heart_inlet", + "15327": "pressure:RCR_aorta:J_heart_inlet", + "15328": "pressure:RCR_aorta:J_heart_inlet", + "15329": "pressure:RCR_aorta:J_heart_inlet", + "15330": "pressure:RCR_aorta:J_heart_inlet", + "15331": "pressure:RCR_aorta:J_heart_inlet", + "15332": "pressure:RCR_aorta:J_heart_inlet", + "15333": "pressure:RCR_aorta:J_heart_inlet", + "15334": "pressure:RCR_aorta:J_heart_inlet", + "15335": "pressure:RCR_aorta:J_heart_inlet", + "15336": "pressure:RCR_aorta:J_heart_inlet", + "15337": "pressure:RCR_aorta:J_heart_inlet", + "15338": "pressure:RCR_aorta:J_heart_inlet", + "15339": "pressure:RCR_aorta:J_heart_inlet", + "15340": "pressure:RCR_aorta:J_heart_inlet", + "15341": "pressure:RCR_aorta:J_heart_inlet", + "15342": "pressure:RCR_aorta:J_heart_inlet", + "15343": "pressure:RCR_aorta:J_heart_inlet", + "15344": "pressure:RCR_aorta:J_heart_inlet", + "15345": "pressure:RCR_aorta:J_heart_inlet", + "15346": "pressure:RCR_aorta:J_heart_inlet", + "15347": "pressure:RCR_aorta:J_heart_inlet", + "15348": "pressure:RCR_aorta:J_heart_inlet", + "15349": "pressure:RCR_aorta:J_heart_inlet", + "15350": "pressure:RCR_aorta:J_heart_inlet", + "15351": "pressure:RCR_aorta:J_heart_inlet", + "15352": "pressure:RCR_aorta:J_heart_inlet", + "15353": "pressure:RCR_aorta:J_heart_inlet", + "15354": "pressure:RCR_aorta:J_heart_inlet", + "15355": "pressure:RCR_aorta:J_heart_inlet", + "15356": "pressure:RCR_aorta:J_heart_inlet", + "15357": "pressure:RCR_aorta:J_heart_inlet", + "15358": "pressure:RCR_aorta:J_heart_inlet", + "15359": "pressure:RCR_aorta:J_heart_inlet", + "15360": "pressure:RCR_aorta:J_heart_inlet", + "15361": "pressure:RCR_aorta:J_heart_inlet", + "15362": "pressure:RCR_aorta:J_heart_inlet", + "15363": "pressure:RCR_aorta:J_heart_inlet", + "15364": "pressure:RCR_aorta:J_heart_inlet", + "15365": "pressure:RCR_aorta:J_heart_inlet", + "15366": "pressure:RCR_aorta:J_heart_inlet", + "15367": "pressure:RCR_aorta:J_heart_inlet", + "15368": "pressure:RCR_aorta:J_heart_inlet", + "15369": "pressure:RCR_aorta:J_heart_inlet", + "15370": "pressure:RCR_aorta:J_heart_inlet", + "15371": "pressure:RCR_aorta:J_heart_inlet", + "15372": "pressure:RCR_aorta:J_heart_inlet", + "15373": "pressure:RCR_aorta:J_heart_inlet", + "15374": "pressure:RCR_aorta:J_heart_inlet", + "15375": "pressure:RCR_aorta:J_heart_inlet", + "15376": "pressure:RCR_aorta:J_heart_inlet", + "15377": "pressure:RCR_aorta:J_heart_inlet", + "15378": "pressure:RCR_aorta:J_heart_inlet", + "15379": "pressure:RCR_aorta:J_heart_inlet", + "15380": "pressure:RCR_aorta:J_heart_inlet", + "15381": "pressure:RCR_aorta:J_heart_inlet", + "15382": "pressure:RCR_aorta:J_heart_inlet", + "15383": "pressure:RCR_aorta:J_heart_inlet", + "15384": "pressure:RCR_aorta:J_heart_inlet", + "15385": "pressure:RCR_aorta:J_heart_inlet", + "15386": "pressure:RCR_aorta:J_heart_inlet", + "15387": "pressure:RCR_aorta:J_heart_inlet", + "15388": "pressure:RCR_aorta:J_heart_inlet", + "15389": "pressure:RCR_aorta:J_heart_inlet", + "15390": "pressure:RCR_aorta:J_heart_inlet", + "15391": "pressure:RCR_aorta:J_heart_inlet", + "15392": "pressure:RCR_aorta:J_heart_inlet", + "15393": "pressure:RCR_aorta:J_heart_inlet", + "15394": "pressure:RCR_aorta:J_heart_inlet", + "15395": "pressure:RCR_aorta:J_heart_inlet", + "15396": "pressure:RCR_aorta:J_heart_inlet", + "15397": "pressure:RCR_aorta:J_heart_inlet", + "15398": "pressure:RCR_aorta:J_heart_inlet", + "15399": "pressure:RCR_aorta:J_heart_inlet", + "15400": "pressure:RCR_aorta:J_heart_inlet", + "15401": "pressure:RCR_aorta:J_heart_inlet", + "15402": "pressure:RCR_aorta:J_heart_inlet", + "15403": "pressure:RCR_aorta:J_heart_inlet", + "15404": "pressure:RCR_aorta:J_heart_inlet", + "15405": "pressure:RCR_aorta:J_heart_inlet", + "15406": "pressure:RCR_aorta:J_heart_inlet", + "15407": "pressure:RCR_aorta:J_heart_inlet", + "15408": "pressure:RCR_aorta:J_heart_inlet", + "15409": "pressure:RCR_aorta:J_heart_inlet", + "15410": "pressure:RCR_aorta:J_heart_inlet", + "15411": "pressure:RCR_aorta:J_heart_inlet", + "15412": "pressure:RCR_aorta:J_heart_inlet", + "15413": "pressure:RCR_aorta:J_heart_inlet", + "15414": "pressure:RCR_aorta:J_heart_inlet", + "15415": "pressure:RCR_aorta:J_heart_inlet", + "15416": "pressure:RCR_aorta:J_heart_inlet", + "15417": "pressure:RCR_aorta:J_heart_inlet", + "15418": "pressure:RCR_aorta:J_heart_inlet", + "15419": "pressure:RCR_aorta:J_heart_inlet", + "15420": "pressure:RCR_aorta:J_heart_inlet", + "15421": "pressure:RCR_aorta:J_heart_inlet", + "15422": "pressure:RCR_aorta:J_heart_inlet", + "15423": "pressure:RCR_aorta:J_heart_inlet", + "15424": "pressure:RCR_aorta:J_heart_inlet", + "15425": "pressure:RCR_aorta:J_heart_inlet", + "15426": "pressure:RCR_aorta:J_heart_inlet", + "15427": "pressure:RCR_aorta:J_heart_inlet", + "15428": "pressure:RCR_aorta:J_heart_inlet", + "15429": "pressure:RCR_aorta:J_heart_inlet", + "15430": "pressure:RCR_aorta:J_heart_inlet", + "15431": "pressure:RCR_aorta:J_heart_inlet", + "15432": "pressure:RCR_aorta:J_heart_inlet", + "15433": "pressure:RCR_aorta:J_heart_inlet", + "15434": "pressure:RCR_aorta:J_heart_inlet", + "15435": "pressure:RCR_aorta:J_heart_inlet", + "15436": "pressure:RCR_aorta:J_heart_inlet", + "15437": "pressure:RCR_aorta:J_heart_inlet", + "15438": "pressure:RCR_aorta:J_heart_inlet", + "15439": "pressure:RCR_aorta:J_heart_inlet", + "15440": "pressure:RCR_aorta:J_heart_inlet", + "15441": "pressure:RCR_aorta:J_heart_inlet", + "15442": "pressure:RCR_aorta:J_heart_inlet", + "15443": "pressure:RCR_aorta:J_heart_inlet", + "15444": "pressure:RCR_aorta:J_heart_inlet", + "15445": "pressure:RCR_aorta:J_heart_inlet", + "15446": "pressure:RCR_aorta:J_heart_inlet", + "15447": "pressure:RCR_aorta:J_heart_inlet", + "15448": "pressure:RCR_aorta:J_heart_inlet", + "15449": "pressure:RCR_aorta:J_heart_inlet", + "15450": "pressure:RCR_aorta:J_heart_inlet", + "15451": "pressure:RCR_aorta:J_heart_inlet", + "15452": "pressure:RCR_aorta:J_heart_inlet", + "15453": "pressure:RCR_aorta:J_heart_inlet", + "15454": "pressure:RCR_aorta:J_heart_inlet", + "15455": "pressure:RCR_aorta:J_heart_inlet", + "15456": "pressure:RCR_aorta:J_heart_inlet", + "15457": "pressure:RCR_aorta:J_heart_inlet", + "15458": "pressure:RCR_aorta:J_heart_inlet", + "15459": "pressure:RCR_aorta:J_heart_inlet", + "15460": "pressure:RCR_aorta:J_heart_inlet", + "15461": "pressure:RCR_aorta:J_heart_inlet", + "15462": "pressure:RCR_aorta:J_heart_inlet", + "15463": "pressure:RCR_aorta:J_heart_inlet", + "15464": "pressure:RCR_aorta:J_heart_inlet", + "15465": "pressure:RCR_aorta:J_heart_inlet", + "15466": "pressure:RCR_aorta:J_heart_inlet", + "15467": "pressure:RCR_aorta:J_heart_inlet", + "15468": "pressure:RCR_aorta:J_heart_inlet", + "15469": "pressure:RCR_aorta:J_heart_inlet", + "15470": "pressure:RCR_aorta:J_heart_inlet", + "15471": "pressure:RCR_aorta:J_heart_inlet", + "15472": "pressure:RCR_aorta:J_heart_inlet", + "15473": "pressure:RCR_aorta:J_heart_inlet", + "15474": "pressure:RCR_aorta:J_heart_inlet", + "15475": "pressure:RCR_aorta:J_heart_inlet", + "15476": "pressure:RCR_aorta:J_heart_inlet", + "15477": "pressure:RCR_aorta:J_heart_inlet", + "15478": "pressure:RCR_aorta:J_heart_inlet", + "15479": "pressure:RCR_aorta:J_heart_inlet", + "15480": "pressure:RCR_aorta:J_heart_inlet", + "15481": "pressure:RCR_aorta:J_heart_inlet", + "15482": "pressure:RCR_aorta:J_heart_inlet", + "15483": "pressure:RCR_aorta:J_heart_inlet", + "15484": "pressure:RCR_aorta:J_heart_inlet", + "15485": "pressure:RCR_aorta:J_heart_inlet", + "15486": "pressure:RCR_aorta:J_heart_inlet", + "15487": "pressure:RCR_aorta:J_heart_inlet", + "15488": "pressure:RCR_aorta:J_heart_inlet", + "15489": "pressure:RCR_aorta:J_heart_inlet", + "15490": "pressure:RCR_aorta:J_heart_inlet", + "15491": "pressure:RCR_aorta:J_heart_inlet", + "15492": "pressure:RCR_aorta:J_heart_inlet", + "15493": "pressure:RCR_aorta:J_heart_inlet", + "15494": "pressure:RCR_aorta:J_heart_inlet", + "15495": "pressure:RCR_aorta:J_heart_inlet", + "15496": "pressure:RCR_aorta:J_heart_inlet", + "15497": "pressure:RCR_aorta:J_heart_inlet", + "15498": "pressure:RCR_aorta:J_heart_inlet", + "15499": "pressure:RCR_aorta:J_heart_inlet", + "15500": "pressure:RCR_aorta:J_heart_inlet", + "15501": "pressure:RCR_aorta:J_heart_inlet", + "15502": "pressure:RCR_aorta:J_heart_inlet", + "15503": "pressure:RCR_aorta:J_heart_inlet", + "15504": "pressure:RCR_aorta:J_heart_inlet", + "15505": "pressure:RCR_aorta:J_heart_inlet", + "15506": "pressure:RCR_aorta:J_heart_inlet", + "15507": "pressure:RCR_aorta:J_heart_inlet", + "15508": "pressure:RCR_aorta:J_heart_inlet", + "15509": "pressure:RCR_aorta:J_heart_inlet", + "15510": "pressure:RCR_aorta:J_heart_inlet", + "15511": "pressure:RCR_aorta:J_heart_inlet", + "15512": "pressure:RCR_aorta:J_heart_inlet", + "15513": "pressure:RCR_aorta:J_heart_inlet", + "15514": "pressure:RCR_aorta:J_heart_inlet", + "15515": "pressure:RCR_aorta:J_heart_inlet", + "15516": "pressure:RCR_aorta:J_heart_inlet", + "15517": "pressure:RCR_aorta:J_heart_inlet", + "15518": "pressure:RCR_aorta:J_heart_inlet", + "15519": "pressure:RCR_aorta:J_heart_inlet", + "15520": "pressure:RCR_aorta:J_heart_inlet", + "15521": "pressure:RCR_aorta:J_heart_inlet", + "15522": "pressure:RCR_aorta:J_heart_inlet", + "15523": "pressure:RCR_aorta:J_heart_inlet", + "15524": "pressure:RCR_aorta:J_heart_inlet", + "15525": "pressure:RCR_aorta:J_heart_inlet", + "15526": "pressure:RCR_aorta:J_heart_inlet", + "15527": "pressure:RCR_aorta:J_heart_inlet", + "15528": "pressure:RCR_aorta:J_heart_inlet", + "15529": "pressure:RCR_aorta:J_heart_inlet", + "15530": "pressure:RCR_aorta:J_heart_inlet", + "15531": "pressure:RCR_aorta:J_heart_inlet", + "15532": "pressure:RCR_aorta:J_heart_inlet", + "15533": "pressure:RCR_aorta:J_heart_inlet", + "15534": "pressure:RCR_aorta:J_heart_inlet", + "15535": "pressure:RCR_aorta:J_heart_inlet", + "15536": "pressure:RCR_aorta:J_heart_inlet", + "15537": "pressure:RCR_aorta:J_heart_inlet", + "15538": "pressure:RCR_aorta:J_heart_inlet", + "15539": "pressure:RCR_aorta:J_heart_inlet", + "15540": "pressure:RCR_aorta:J_heart_inlet", + "15541": "pressure:RCR_aorta:J_heart_inlet", + "15542": "pressure:RCR_aorta:J_heart_inlet", + "15543": "pressure:RCR_aorta:J_heart_inlet", + "15544": "pressure:RCR_aorta:J_heart_inlet", + "15545": "pressure:RCR_aorta:J_heart_inlet", + "15546": "pressure:RCR_aorta:J_heart_inlet", + "15547": "pressure:RCR_aorta:J_heart_inlet", + "15548": "pressure:RCR_aorta:J_heart_inlet", + "15549": "pressure:RCR_aorta:J_heart_inlet", + "15550": "pressure:RCR_aorta:J_heart_inlet", + "15551": "pressure:RCR_aorta:J_heart_inlet", + "15552": "pressure:RCR_aorta:J_heart_inlet", + "15553": "pressure:RCR_aorta:J_heart_inlet", + "15554": "pressure:RCR_aorta:J_heart_inlet", + "15555": "pressure:RCR_aorta:J_heart_inlet", + "15556": "pressure:RCR_aorta:J_heart_inlet", + "15557": "pressure:RCR_aorta:J_heart_inlet", + "15558": "pressure:RCR_aorta:J_heart_inlet", + "15559": "pressure:RCR_aorta:J_heart_inlet", + "15560": "pressure:RCR_aorta:J_heart_inlet", + "15561": "pressure:RCR_aorta:J_heart_inlet", + "15562": "pressure:RCR_aorta:J_heart_inlet", + "15563": "pressure:RCR_aorta:J_heart_inlet", + "15564": "pressure:RCR_aorta:J_heart_inlet", + "15565": "pressure:RCR_aorta:J_heart_inlet", + "15566": "pressure:RCR_aorta:J_heart_inlet", + "15567": "pressure:RCR_aorta:J_heart_inlet", + "15568": "pressure:RCR_aorta:J_heart_inlet", + "15569": "pressure:RCR_aorta:J_heart_inlet", + "15570": "pressure:RCR_aorta:J_heart_inlet", + "15571": "pressure:RCR_aorta:J_heart_inlet", + "15572": "pressure:RCR_aorta:J_heart_inlet", + "15573": "pressure:RCR_aorta:J_heart_inlet", + "15574": "pressure:RCR_aorta:J_heart_inlet", + "15575": "pressure:RCR_aorta:J_heart_inlet", + "15576": "pressure:RCR_aorta:J_heart_inlet", + "15577": "pressure:RCR_aorta:J_heart_inlet", + "15578": "pressure:RCR_aorta:J_heart_inlet", + "15579": "pressure:RCR_aorta:J_heart_inlet", + "15580": "pressure:RCR_aorta:J_heart_inlet", + "15581": "pressure:RCR_aorta:J_heart_inlet", + "15582": "pressure:RCR_aorta:J_heart_inlet", + "15583": "pressure:RCR_aorta:J_heart_inlet", + "15584": "pressure:RCR_aorta:J_heart_inlet", + "15585": "pressure:RCR_aorta:J_heart_inlet", + "15586": "pressure:RCR_aorta:J_heart_inlet", + "15587": "pressure:RCR_aorta:J_heart_inlet", + "15588": "pressure:RCR_aorta:J_heart_inlet", + "15589": "pressure:RCR_aorta:J_heart_inlet", + "15590": "pressure:RCR_aorta:J_heart_inlet", + "15591": "pressure:RCR_aorta:J_heart_inlet", + "15592": "pressure:RCR_aorta:J_heart_inlet", + "15593": "pressure:RCR_aorta:J_heart_inlet", + "15594": "pressure:RCR_aorta:J_heart_inlet", + "15595": "pressure:RCR_aorta:J_heart_inlet", + "15596": "pressure:RCR_aorta:J_heart_inlet", + "15597": "pressure:RCR_aorta:J_heart_inlet", + "15598": "pressure:RCR_aorta:J_heart_inlet", + "15599": "pressure:RCR_aorta:J_heart_inlet", + "15600": "pressure:RCR_aorta:J_heart_inlet", + "15601": "pressure:RCR_aorta:J_heart_inlet", + "15602": "pressure:RCR_aorta:J_heart_inlet", + "15603": "pressure:RCR_aorta:J_heart_inlet", + "15604": "pressure:RCR_aorta:J_heart_inlet", + "15605": "pressure:RCR_aorta:J_heart_inlet", + "15606": "pressure:RCR_aorta:J_heart_inlet", + "15607": "pressure:RCR_aorta:J_heart_inlet", + "15608": "pressure:RCR_aorta:J_heart_inlet", + "15609": "pressure:RCR_aorta:J_heart_inlet", + "15610": "pressure:RCR_aorta:J_heart_inlet", + "15611": "pressure:RCR_aorta:J_heart_inlet", + "15612": "pressure:RCR_aorta:J_heart_inlet", + "15613": "pressure:RCR_aorta:J_heart_inlet", + "15614": "pressure:RCR_aorta:J_heart_inlet", + "15615": "pressure:RCR_aorta:J_heart_inlet", + "15616": "pressure:RCR_aorta:J_heart_inlet", + "15617": "pressure:RCR_aorta:J_heart_inlet", + "15618": "pressure:RCR_aorta:J_heart_inlet", + "15619": "pressure:RCR_aorta:J_heart_inlet", + "15620": "pressure:RCR_aorta:J_heart_inlet", + "15621": "pressure:RCR_aorta:J_heart_inlet", + "15622": "pressure:RCR_aorta:J_heart_inlet", + "15623": "pressure:RCR_aorta:J_heart_inlet", + "15624": "pressure:RCR_aorta:J_heart_inlet", + "15625": "pressure:RCR_aorta:J_heart_inlet", + "15626": "pressure:RCR_aorta:J_heart_inlet", + "15627": "pressure:RCR_aorta:J_heart_inlet", + "15628": "pressure:RCR_aorta:J_heart_inlet", + "15629": "pressure:RCR_aorta:J_heart_inlet", + "15630": "pressure:RCR_aorta:J_heart_inlet", + "15631": "pressure:RCR_aorta:J_heart_inlet", + "15632": "pressure:RCR_aorta:J_heart_inlet", + "15633": "pressure:RCR_aorta:J_heart_inlet", + "15634": "pressure:RCR_aorta:J_heart_inlet", + "15635": "pressure:RCR_aorta:J_heart_inlet", + "15636": "pressure:RCR_aorta:J_heart_inlet", + "15637": "pressure:RCR_aorta:J_heart_inlet", + "15638": "pressure:RCR_aorta:J_heart_inlet", + "15639": "pressure:RCR_aorta:J_heart_inlet", + "15640": "pressure:RCR_aorta:J_heart_inlet", + "15641": "pressure:RCR_aorta:J_heart_inlet", + "15642": "pressure:RCR_aorta:J_heart_inlet", + "15643": "pressure:RCR_aorta:J_heart_inlet", + "15644": "pressure:RCR_aorta:J_heart_inlet", + "15645": "pressure:RCR_aorta:J_heart_inlet", + "15646": "pressure:RCR_aorta:J_heart_inlet", + "15647": "pressure:RCR_aorta:J_heart_inlet", + "15648": "pressure:RCR_aorta:J_heart_inlet", + "15649": "pressure:RCR_aorta:J_heart_inlet", + "15650": "pressure:RCR_aorta:J_heart_inlet", + "15651": "pressure:RCR_aorta:J_heart_inlet", + "15652": "pressure:RCR_aorta:J_heart_inlet", + "15653": "pressure:RCR_aorta:J_heart_inlet", + "15654": "pressure:RCR_aorta:J_heart_inlet", + "15655": "pressure:RCR_aorta:J_heart_inlet", + "15656": "pressure:RCR_aorta:J_heart_inlet", + "15657": "pressure:RCR_aorta:J_heart_inlet", + "15658": "pressure:RCR_aorta:J_heart_inlet", + "15659": "pressure:RCR_aorta:J_heart_inlet", + "15660": "pressure:RCR_aorta:J_heart_inlet", + "15661": "pressure:RCR_aorta:J_heart_inlet", + "15662": "pressure:RCR_aorta:J_heart_inlet", + "15663": "pressure:RCR_aorta:J_heart_inlet", + "15664": "pressure:RCR_aorta:J_heart_inlet", + "15665": "pressure:RCR_aorta:J_heart_inlet", + "15666": "pressure:RCR_aorta:J_heart_inlet", + "15667": "pressure:RCR_aorta:J_heart_inlet", + "15668": "pressure:RCR_aorta:J_heart_inlet", + "15669": "pressure:RCR_aorta:J_heart_inlet", + "15670": "pressure:RCR_aorta:J_heart_inlet", + "15671": "pressure:RCR_aorta:J_heart_inlet", + "15672": "pressure:RCR_aorta:J_heart_inlet", + "15673": "pressure:RCR_aorta:J_heart_inlet", + "15674": "pressure:RCR_aorta:J_heart_inlet", + "15675": "pressure:RCR_aorta:J_heart_inlet", + "15676": "pressure:RCR_aorta:J_heart_inlet", + "15677": "pressure:RCR_aorta:J_heart_inlet", + "15678": "pressure:RCR_aorta:J_heart_inlet", + "15679": "pressure:RCR_aorta:J_heart_inlet", + "15680": "pressure:RCR_aorta:J_heart_inlet", + "15681": "pressure:RCR_aorta:J_heart_inlet", + "15682": "pressure:RCR_aorta:J_heart_inlet", + "15683": "pressure:RCR_aorta:J_heart_inlet", + "15684": "pressure:RCR_aorta:J_heart_inlet", + "15685": "pressure:RCR_aorta:J_heart_inlet", + "15686": "pressure:RCR_aorta:J_heart_inlet", + "15687": "pressure:RCR_aorta:J_heart_inlet", + "15688": "pressure:RCR_aorta:J_heart_inlet", + "15689": "pressure:RCR_aorta:J_heart_inlet", + "15690": "pressure:RCR_aorta:J_heart_inlet", + "15691": "pressure:RCR_aorta:J_heart_inlet", + "15692": "pressure:RCR_aorta:J_heart_inlet", + "15693": "pressure:RCR_aorta:J_heart_inlet", + "15694": "pressure:RCR_aorta:J_heart_inlet", + "15695": "pressure:RCR_aorta:J_heart_inlet", + "15696": "pressure:RCR_aorta:J_heart_inlet", + "15697": "pressure:RCR_aorta:J_heart_inlet", + "15698": "pressure:RCR_aorta:J_heart_inlet", + "15699": "pressure:RCR_aorta:J_heart_inlet", + "15700": "pressure:RCR_aorta:J_heart_inlet", + "15701": "pressure:RCR_aorta:J_heart_inlet", + "15702": "pressure:RCR_aorta:J_heart_inlet", + "15703": "pressure:RCR_aorta:J_heart_inlet", + "15704": "pressure:RCR_aorta:J_heart_inlet", + "15705": "pressure:RCR_aorta:J_heart_inlet", + "15706": "pressure:RCR_aorta:J_heart_inlet", + "15707": "pressure:RCR_aorta:J_heart_inlet", + "15708": "pressure:RCR_aorta:J_heart_inlet", + "15709": "pressure:RCR_aorta:J_heart_inlet", + "15710": "pressure:RCR_aorta:J_heart_inlet", + "15711": "pressure:RCR_aorta:J_heart_inlet", + "15712": "pressure:RCR_aorta:J_heart_inlet", + "15713": "pressure:RCR_aorta:J_heart_inlet", + "15714": "pressure:RCR_aorta:J_heart_inlet", + "15715": "pressure:RCR_aorta:J_heart_inlet", + "15716": "pressure:RCR_aorta:J_heart_inlet", + "15717": "pressure:RCR_aorta:J_heart_inlet", + "15718": "pressure:RCR_aorta:J_heart_inlet", + "15719": "pressure:RCR_aorta:J_heart_inlet", + "15720": "pressure:RCR_aorta:J_heart_inlet", + "15721": "pressure:RCR_aorta:J_heart_inlet", + "15722": "pressure:RCR_aorta:J_heart_inlet", + "15723": "pressure:RCR_aorta:J_heart_inlet", + "15724": "pressure:RCR_aorta:J_heart_inlet", + "15725": "pressure:RCR_aorta:J_heart_inlet", + "15726": "pressure:RCR_aorta:J_heart_inlet", + "15727": "pressure:RCR_aorta:J_heart_inlet", + "15728": "pressure:RCR_aorta:J_heart_inlet", + "15729": "pressure:RCR_aorta:J_heart_inlet", + "15730": "pressure:RCR_aorta:J_heart_inlet", + "15731": "pressure:RCR_aorta:J_heart_inlet", + "15732": "pressure:RCR_aorta:J_heart_inlet", + "15733": "pressure:RCR_aorta:J_heart_inlet", + "15734": "pressure:RCR_aorta:J_heart_inlet", + "15735": "pressure:RCR_aorta:J_heart_inlet", + "15736": "pressure:RCR_aorta:J_heart_inlet", + "15737": "pressure:RCR_aorta:J_heart_inlet", + "15738": "pressure:RCR_aorta:J_heart_inlet", + "15739": "pressure:RCR_aorta:J_heart_inlet", + "15740": "pressure:RCR_aorta:J_heart_inlet", + "15741": "pressure:RCR_aorta:J_heart_inlet", + "15742": "pressure:RCR_aorta:J_heart_inlet", + "15743": "pressure:RCR_aorta:J_heart_inlet", + "15744": "pressure:RCR_aorta:J_heart_inlet", + "15745": "pressure:RCR_aorta:J_heart_inlet", + "15746": "pressure:RCR_aorta:J_heart_inlet", + "15747": "pressure:RCR_aorta:J_heart_inlet", + "15748": "pressure:RCR_aorta:J_heart_inlet", + "15749": "pressure:RCR_aorta:J_heart_inlet", + "15750": "pressure:RCR_aorta:J_heart_inlet", + "15751": "pressure:RCR_aorta:J_heart_inlet", + "15752": "pressure:RCR_aorta:J_heart_inlet", + "15753": "pressure:RCR_aorta:J_heart_inlet", + "15754": "pressure:RCR_aorta:J_heart_inlet", + "15755": "pressure:RCR_aorta:J_heart_inlet", + "15756": "pressure:RCR_aorta:J_heart_inlet", + "15757": "pressure:RCR_aorta:J_heart_inlet", + "15758": "pressure:RCR_aorta:J_heart_inlet", + "15759": "pressure:RCR_aorta:J_heart_inlet", + "15760": "pressure:RCR_aorta:J_heart_inlet", + "15761": "pressure:RCR_aorta:J_heart_inlet", + "15762": "pressure:RCR_aorta:J_heart_inlet", + "15763": "pressure:RCR_aorta:J_heart_inlet", + "15764": "pressure:RCR_aorta:J_heart_inlet", + "15765": "pressure:RCR_aorta:J_heart_inlet", + "15766": "pressure:RCR_aorta:J_heart_inlet", + "15767": "pressure:RCR_aorta:J_heart_inlet", + "15768": "pressure:RCR_aorta:J_heart_inlet", + "15769": "pressure:RCR_aorta:J_heart_inlet", + "15770": "pressure:RCR_aorta:J_heart_inlet", + "15771": "pressure:RCR_aorta:J_heart_inlet", + "15772": "pressure:RCR_aorta:J_heart_inlet", + "15773": "pressure:RCR_aorta:J_heart_inlet", + "15774": "pressure:RCR_aorta:J_heart_inlet", + "15775": "pressure:RCR_aorta:J_heart_inlet", + "15776": "pressure:RCR_aorta:J_heart_inlet", + "15777": "pressure:RCR_aorta:J_heart_inlet", + "15778": "pressure:RCR_aorta:J_heart_inlet", + "15779": "pressure:RCR_aorta:J_heart_inlet", + "15780": "pressure:RCR_aorta:J_heart_inlet", + "15781": "pressure:RCR_aorta:J_heart_inlet", + "15782": "pressure:RCR_aorta:J_heart_inlet", + "15783": "pressure:RCR_aorta:J_heart_inlet", + "15784": "pressure:RCR_aorta:J_heart_inlet", + "15785": "pressure:RCR_aorta:J_heart_inlet", + "15786": "pressure:RCR_aorta:J_heart_inlet", + "15787": "pressure:RCR_aorta:J_heart_inlet", + "15788": "pressure:RCR_aorta:J_heart_inlet", + "15789": "pressure:RCR_aorta:J_heart_inlet", + "15790": "pressure:RCR_aorta:J_heart_inlet", + "15791": "pressure:RCR_aorta:J_heart_inlet", + "15792": "pressure:RCR_aorta:J_heart_inlet", + "15793": "pressure:RCR_aorta:J_heart_inlet", + "15794": "pressure:RCR_aorta:J_heart_inlet", + "15795": "pressure:RCR_aorta:J_heart_inlet", + "15796": "pressure:RCR_aorta:J_heart_inlet", + "15797": "pressure:RCR_aorta:J_heart_inlet", + "15798": "pressure:RCR_aorta:J_heart_inlet", + "15799": "pressure:RCR_aorta:J_heart_inlet", + "15800": "pressure:RCR_aorta:J_heart_inlet", + "15801": "pressure:RCR_aorta:J_heart_inlet", + "15802": "pressure:RCR_aorta:J_heart_inlet", + "15803": "pressure:RCR_aorta:J_heart_inlet", + "15804": "pressure:RCR_aorta:J_heart_inlet", + "15805": "pressure:RCR_aorta:J_heart_inlet", + "15806": "pressure:RCR_aorta:J_heart_inlet", + "15807": "pressure:RCR_aorta:J_heart_inlet", + "15808": "pressure:RCR_aorta:J_heart_inlet", + "15809": "pressure:RCR_aorta:J_heart_inlet", + "15810": "pressure:RCR_aorta:J_heart_inlet", + "15811": "pressure:RCR_aorta:J_heart_inlet", + "15812": "pressure:RCR_aorta:J_heart_inlet", + "15813": "pressure:RCR_aorta:J_heart_inlet", + "15814": "pressure:RCR_aorta:J_heart_inlet", + "15815": "pressure:RCR_aorta:J_heart_inlet", + "15816": "pressure:RCR_aorta:J_heart_inlet", + "15817": "pressure:RCR_aorta:J_heart_inlet", + "15818": "pressure:RCR_aorta:J_heart_inlet", + "15819": "pressure:RCR_aorta:J_heart_inlet", + "15820": "pressure:RCR_aorta:J_heart_inlet", + "15821": "pressure:RCR_aorta:J_heart_inlet", + "15822": "pressure:RCR_aorta:J_heart_inlet", + "15823": "pressure:RCR_aorta:J_heart_inlet", + "15824": "pressure:RCR_aorta:J_heart_inlet", + "15825": "pressure:RCR_aorta:J_heart_inlet", + "15826": "pressure:RCR_aorta:J_heart_inlet", + "15827": "pressure:RCR_aorta:J_heart_inlet", + "15828": "pressure:RCR_aorta:J_heart_inlet", + "15829": "pressure:RCR_aorta:J_heart_inlet", + "15830": "pressure:RCR_aorta:J_heart_inlet", + "15831": "pressure:RCR_aorta:J_heart_inlet", + "15832": "pressure:RCR_aorta:J_heart_inlet", + "15833": "pressure:RCR_aorta:J_heart_inlet", + "15834": "pressure:RCR_aorta:J_heart_inlet", + "15835": "pressure:RCR_aorta:J_heart_inlet", + "15836": "pressure:RCR_aorta:J_heart_inlet", + "15837": "pressure:RCR_aorta:J_heart_inlet", + "15838": "pressure:RCR_aorta:J_heart_inlet", + "15839": "pressure:RCR_aorta:J_heart_inlet", + "15840": "pressure:RCR_aorta:J_heart_inlet", + "15841": "pressure:RCR_aorta:J_heart_inlet", + "15842": "pressure:RCR_aorta:J_heart_inlet", + "15843": "pressure:RCR_aorta:J_heart_inlet", + "15844": "pressure:RCR_aorta:J_heart_inlet", + "15845": "pressure:RCR_aorta:J_heart_inlet", + "15846": "pressure:RCR_aorta:J_heart_inlet", + "15847": "pressure:RCR_aorta:J_heart_inlet", + "15848": "pressure:RCR_aorta:J_heart_inlet", + "15849": "pressure:RCR_aorta:J_heart_inlet", + "15850": "pressure:RCR_aorta:J_heart_inlet", + "15851": "pressure:RCR_aorta:J_heart_inlet", + "15852": "pressure:RCR_aorta:J_heart_inlet", + "15853": "pressure:RCR_aorta:J_heart_inlet", + "15854": "pressure:RCR_aorta:J_heart_inlet", + "15855": "pressure:RCR_aorta:J_heart_inlet", + "15856": "pressure:RCR_aorta:J_heart_inlet", + "15857": "pressure:RCR_aorta:J_heart_inlet", + "15858": "pressure:RCR_aorta:J_heart_inlet", + "15859": "pressure:RCR_aorta:J_heart_inlet", + "15860": "pressure:RCR_aorta:J_heart_inlet", + "15861": "pressure:RCR_aorta:J_heart_inlet", + "15862": "pressure:RCR_aorta:J_heart_inlet", + "15863": "pressure:RCR_aorta:J_heart_inlet", + "15864": "pressure:RCR_aorta:J_heart_inlet", + "15865": "pressure:RCR_aorta:J_heart_inlet", + "15866": "pressure:RCR_aorta:J_heart_inlet", + "15867": "pressure:RCR_aorta:J_heart_inlet", + "15868": "pressure:RCR_aorta:J_heart_inlet", + "15869": "pressure:RCR_aorta:J_heart_inlet", + "15870": "pressure:RCR_aorta:J_heart_inlet", + "15871": "pressure:RCR_aorta:J_heart_inlet", + "15872": "pressure:RCR_aorta:J_heart_inlet", + "15873": "pressure:RCR_aorta:J_heart_inlet", + "15874": "pressure:RCR_aorta:J_heart_inlet", + "15875": "pressure:RCR_aorta:J_heart_inlet", + "15876": "pressure:RCR_aorta:J_heart_inlet", + "15877": "pressure:RCR_aorta:J_heart_inlet", + "15878": "pressure:RCR_aorta:J_heart_inlet", + "15879": "pressure:RCR_aorta:J_heart_inlet", + "15880": "pressure:RCR_aorta:J_heart_inlet", + "15881": "pressure:RCR_aorta:J_heart_inlet", + "15882": "pressure:RCR_aorta:J_heart_inlet", + "15883": "pressure:RCR_aorta:J_heart_inlet", + "15884": "pressure:RCR_aorta:J_heart_inlet", + "15885": "pressure:RCR_aorta:J_heart_inlet", + "15886": "pressure:RCR_aorta:J_heart_inlet", + "15887": "pressure:RCR_aorta:J_heart_inlet", + "15888": "pressure:RCR_aorta:J_heart_inlet", + "15889": "pressure:RCR_aorta:J_heart_inlet", + "15890": "pressure:RCR_aorta:J_heart_inlet", + "15891": "pressure:RCR_aorta:J_heart_inlet", + "15892": "pressure:RCR_aorta:J_heart_inlet", + "15893": "pressure:RCR_aorta:J_heart_inlet", + "15894": "pressure:RCR_aorta:J_heart_inlet", + "15895": "pressure:RCR_aorta:J_heart_inlet", + "15896": "pressure:RCR_aorta:J_heart_inlet", + "15897": "pressure:RCR_aorta:J_heart_inlet", + "15898": "pressure:RCR_aorta:J_heart_inlet", + "15899": "pressure:RCR_aorta:J_heart_inlet", + "15900": "pressure:RCR_aorta:J_heart_inlet", + "15901": "pressure:RCR_aorta:J_heart_inlet", + "15902": "pressure:RCR_aorta:J_heart_inlet", + "15903": "pressure:RCR_aorta:J_heart_inlet", + "15904": "pressure:RCR_aorta:J_heart_inlet", + "15905": "pressure:RCR_aorta:J_heart_inlet", + "15906": "pressure:RCR_aorta:J_heart_inlet", + "15907": "pressure:RCR_aorta:J_heart_inlet", + "15908": "pressure:RCR_aorta:J_heart_inlet", + "15909": "pressure:RCR_aorta:J_heart_inlet", + "15910": "pressure:RCR_aorta:J_heart_inlet", + "15911": "pressure:RCR_aorta:J_heart_inlet", + "15912": "pressure:RCR_aorta:J_heart_inlet", + "15913": "pressure:RCR_aorta:J_heart_inlet", + "15914": "pressure:RCR_aorta:J_heart_inlet", + "15915": "pressure:RCR_aorta:J_heart_inlet", + "15916": "pressure:RCR_aorta:J_heart_inlet", + "15917": "pressure:RCR_aorta:J_heart_inlet", + "15918": "pressure:RCR_aorta:J_heart_inlet", + "15919": "pressure:RCR_aorta:J_heart_inlet", + "15920": "pressure:RCR_aorta:J_heart_inlet", + "15921": "pressure:RCR_aorta:J_heart_inlet", + "15922": "pressure:RCR_aorta:J_heart_inlet", + "15923": "pressure:RCR_aorta:J_heart_inlet", + "15924": "pressure:RCR_aorta:J_heart_inlet", + "15925": "pressure:RCR_aorta:J_heart_inlet", + "15926": "pressure:RCR_aorta:J_heart_inlet", + "15927": "pressure:RCR_aorta:J_heart_inlet", + "15928": "pressure:RCR_aorta:J_heart_inlet", + "15929": "pressure:RCR_aorta:J_heart_inlet", + "15930": "pressure:RCR_aorta:J_heart_inlet", + "15931": "pressure:RCR_aorta:J_heart_inlet", + "15932": "pressure:RCR_aorta:J_heart_inlet", + "15933": "pressure:RCR_aorta:J_heart_inlet", + "15934": "pressure:RCR_aorta:J_heart_inlet", + "15935": "pressure:RCR_aorta:J_heart_inlet", + "15936": "pressure:RCR_aorta:J_heart_inlet", + "15937": "pressure:RCR_aorta:J_heart_inlet", + "15938": "pressure:RCR_aorta:J_heart_inlet", + "15939": "pressure:RCR_aorta:J_heart_inlet", + "15940": "pressure:RCR_aorta:J_heart_inlet", + "15941": "pressure:RCR_aorta:J_heart_inlet", + "15942": "pressure:RCR_aorta:J_heart_inlet", + "15943": "pressure:RCR_aorta:J_heart_inlet", + "15944": "pressure:RCR_aorta:J_heart_inlet", + "15945": "pressure:RCR_aorta:J_heart_inlet", + "15946": "pressure:RCR_aorta:J_heart_inlet", + "15947": "pressure:RCR_aorta:J_heart_inlet", + "15948": "pressure:RCR_aorta:J_heart_inlet", + "15949": "pressure:RCR_aorta:J_heart_inlet", + "15950": "pressure:RCR_aorta:J_heart_inlet", + "15951": "pressure:RCR_aorta:J_heart_inlet", + "15952": "pressure:RCR_aorta:J_heart_inlet", + "15953": "pressure:RCR_aorta:J_heart_inlet", + "15954": "pressure:RCR_aorta:J_heart_inlet", + "15955": "pressure:RCR_aorta:J_heart_inlet", + "15956": "pressure:RCR_aorta:J_heart_inlet", + "15957": "pressure:RCR_aorta:J_heart_inlet", + "15958": "pressure:RCR_aorta:J_heart_inlet", + "15959": "pressure:RCR_aorta:J_heart_inlet", + "15960": "pressure:RCR_aorta:J_heart_inlet", + "15961": "pressure:RCR_aorta:J_heart_inlet", + "15962": "pressure:RCR_aorta:J_heart_inlet", + "15963": "pressure:RCR_aorta:J_heart_inlet", + "15964": "pressure:RCR_aorta:J_heart_inlet", + "15965": "pressure:RCR_aorta:J_heart_inlet", + "15966": "pressure:RCR_aorta:J_heart_inlet", + "15967": "pressure:RCR_aorta:J_heart_inlet", + "15968": "pressure:RCR_aorta:J_heart_inlet", + "15969": "pressure:RCR_aorta:J_heart_inlet", + "15970": "pressure:RCR_aorta:J_heart_inlet", + "15971": "pressure:RCR_aorta:J_heart_inlet", + "15972": "pressure:RCR_aorta:J_heart_inlet", + "15973": "pressure:RCR_aorta:J_heart_inlet", + "15974": "pressure:RCR_aorta:J_heart_inlet", + "15975": "pressure:RCR_aorta:J_heart_inlet", + "15976": "pressure:RCR_aorta:J_heart_inlet", + "15977": "pressure:RCR_aorta:J_heart_inlet", + "15978": "pressure:RCR_aorta:J_heart_inlet", + "15979": "pressure:RCR_aorta:J_heart_inlet", + "15980": "pressure:RCR_aorta:J_heart_inlet", + "15981": "pressure:RCR_aorta:J_heart_inlet", + "15982": "pressure:RCR_aorta:J_heart_inlet", + "15983": "pressure:RCR_aorta:J_heart_inlet", + "15984": "pressure:RCR_aorta:J_heart_inlet", + "15985": "pressure:RCR_aorta:J_heart_inlet", + "15986": "pressure:RCR_aorta:J_heart_inlet", + "15987": "pressure:RCR_aorta:J_heart_inlet", + "15988": "pressure:RCR_aorta:J_heart_inlet", + "15989": "pressure:RCR_aorta:J_heart_inlet", + "15990": "pressure:RCR_aorta:J_heart_inlet", + "15991": "pressure:RCR_aorta:J_heart_inlet", + "15992": "pressure:RCR_aorta:J_heart_inlet", + "15993": "pressure:RCR_aorta:J_heart_inlet", + "15994": "pressure:RCR_aorta:J_heart_inlet", + "15995": "pressure:RCR_aorta:J_heart_inlet", + "15996": "pressure:RCR_aorta:J_heart_inlet", + "15997": "pressure:RCR_aorta:J_heart_inlet", + "15998": "pressure:RCR_aorta:J_heart_inlet", + "15999": "pressure:RCR_aorta:J_heart_inlet", + "16000": "flow:RCR_aorta_br:J_heart_inlet", + "16001": "flow:RCR_aorta_br:J_heart_inlet", + "16002": "flow:RCR_aorta_br:J_heart_inlet", + "16003": "flow:RCR_aorta_br:J_heart_inlet", + "16004": "flow:RCR_aorta_br:J_heart_inlet", + "16005": "flow:RCR_aorta_br:J_heart_inlet", + "16006": "flow:RCR_aorta_br:J_heart_inlet", + "16007": "flow:RCR_aorta_br:J_heart_inlet", + "16008": "flow:RCR_aorta_br:J_heart_inlet", + "16009": "flow:RCR_aorta_br:J_heart_inlet", + "16010": "flow:RCR_aorta_br:J_heart_inlet", + "16011": "flow:RCR_aorta_br:J_heart_inlet", + "16012": "flow:RCR_aorta_br:J_heart_inlet", + "16013": "flow:RCR_aorta_br:J_heart_inlet", + "16014": "flow:RCR_aorta_br:J_heart_inlet", + "16015": "flow:RCR_aorta_br:J_heart_inlet", + "16016": "flow:RCR_aorta_br:J_heart_inlet", + "16017": "flow:RCR_aorta_br:J_heart_inlet", + "16018": "flow:RCR_aorta_br:J_heart_inlet", + "16019": "flow:RCR_aorta_br:J_heart_inlet", + "16020": "flow:RCR_aorta_br:J_heart_inlet", + "16021": "flow:RCR_aorta_br:J_heart_inlet", + "16022": "flow:RCR_aorta_br:J_heart_inlet", + "16023": "flow:RCR_aorta_br:J_heart_inlet", + "16024": "flow:RCR_aorta_br:J_heart_inlet", + "16025": "flow:RCR_aorta_br:J_heart_inlet", + "16026": "flow:RCR_aorta_br:J_heart_inlet", + "16027": "flow:RCR_aorta_br:J_heart_inlet", + "16028": "flow:RCR_aorta_br:J_heart_inlet", + "16029": "flow:RCR_aorta_br:J_heart_inlet", + "16030": "flow:RCR_aorta_br:J_heart_inlet", + "16031": "flow:RCR_aorta_br:J_heart_inlet", + "16032": "flow:RCR_aorta_br:J_heart_inlet", + "16033": "flow:RCR_aorta_br:J_heart_inlet", + "16034": "flow:RCR_aorta_br:J_heart_inlet", + "16035": "flow:RCR_aorta_br:J_heart_inlet", + "16036": "flow:RCR_aorta_br:J_heart_inlet", + "16037": "flow:RCR_aorta_br:J_heart_inlet", + "16038": "flow:RCR_aorta_br:J_heart_inlet", + "16039": "flow:RCR_aorta_br:J_heart_inlet", + "16040": "flow:RCR_aorta_br:J_heart_inlet", + "16041": "flow:RCR_aorta_br:J_heart_inlet", + "16042": "flow:RCR_aorta_br:J_heart_inlet", + "16043": "flow:RCR_aorta_br:J_heart_inlet", + "16044": "flow:RCR_aorta_br:J_heart_inlet", + "16045": "flow:RCR_aorta_br:J_heart_inlet", + "16046": "flow:RCR_aorta_br:J_heart_inlet", + "16047": "flow:RCR_aorta_br:J_heart_inlet", + "16048": "flow:RCR_aorta_br:J_heart_inlet", + "16049": "flow:RCR_aorta_br:J_heart_inlet", + "16050": "flow:RCR_aorta_br:J_heart_inlet", + "16051": "flow:RCR_aorta_br:J_heart_inlet", + "16052": "flow:RCR_aorta_br:J_heart_inlet", + "16053": "flow:RCR_aorta_br:J_heart_inlet", + "16054": "flow:RCR_aorta_br:J_heart_inlet", + "16055": "flow:RCR_aorta_br:J_heart_inlet", + "16056": "flow:RCR_aorta_br:J_heart_inlet", + "16057": "flow:RCR_aorta_br:J_heart_inlet", + "16058": "flow:RCR_aorta_br:J_heart_inlet", + "16059": "flow:RCR_aorta_br:J_heart_inlet", + "16060": "flow:RCR_aorta_br:J_heart_inlet", + "16061": "flow:RCR_aorta_br:J_heart_inlet", + "16062": "flow:RCR_aorta_br:J_heart_inlet", + "16063": "flow:RCR_aorta_br:J_heart_inlet", + "16064": "flow:RCR_aorta_br:J_heart_inlet", + "16065": "flow:RCR_aorta_br:J_heart_inlet", + "16066": "flow:RCR_aorta_br:J_heart_inlet", + "16067": "flow:RCR_aorta_br:J_heart_inlet", + "16068": "flow:RCR_aorta_br:J_heart_inlet", + "16069": "flow:RCR_aorta_br:J_heart_inlet", + "16070": "flow:RCR_aorta_br:J_heart_inlet", + "16071": "flow:RCR_aorta_br:J_heart_inlet", + "16072": "flow:RCR_aorta_br:J_heart_inlet", + "16073": "flow:RCR_aorta_br:J_heart_inlet", + "16074": "flow:RCR_aorta_br:J_heart_inlet", + "16075": "flow:RCR_aorta_br:J_heart_inlet", + "16076": "flow:RCR_aorta_br:J_heart_inlet", + "16077": "flow:RCR_aorta_br:J_heart_inlet", + "16078": "flow:RCR_aorta_br:J_heart_inlet", + "16079": "flow:RCR_aorta_br:J_heart_inlet", + "16080": "flow:RCR_aorta_br:J_heart_inlet", + "16081": "flow:RCR_aorta_br:J_heart_inlet", + "16082": "flow:RCR_aorta_br:J_heart_inlet", + "16083": "flow:RCR_aorta_br:J_heart_inlet", + "16084": "flow:RCR_aorta_br:J_heart_inlet", + "16085": "flow:RCR_aorta_br:J_heart_inlet", + "16086": "flow:RCR_aorta_br:J_heart_inlet", + "16087": "flow:RCR_aorta_br:J_heart_inlet", + "16088": "flow:RCR_aorta_br:J_heart_inlet", + "16089": "flow:RCR_aorta_br:J_heart_inlet", + "16090": "flow:RCR_aorta_br:J_heart_inlet", + "16091": "flow:RCR_aorta_br:J_heart_inlet", + "16092": "flow:RCR_aorta_br:J_heart_inlet", + "16093": "flow:RCR_aorta_br:J_heart_inlet", + "16094": "flow:RCR_aorta_br:J_heart_inlet", + "16095": "flow:RCR_aorta_br:J_heart_inlet", + "16096": "flow:RCR_aorta_br:J_heart_inlet", + "16097": "flow:RCR_aorta_br:J_heart_inlet", + "16098": "flow:RCR_aorta_br:J_heart_inlet", + "16099": "flow:RCR_aorta_br:J_heart_inlet", + "16100": "flow:RCR_aorta_br:J_heart_inlet", + "16101": "flow:RCR_aorta_br:J_heart_inlet", + "16102": "flow:RCR_aorta_br:J_heart_inlet", + "16103": "flow:RCR_aorta_br:J_heart_inlet", + "16104": "flow:RCR_aorta_br:J_heart_inlet", + "16105": "flow:RCR_aorta_br:J_heart_inlet", + "16106": "flow:RCR_aorta_br:J_heart_inlet", + "16107": "flow:RCR_aorta_br:J_heart_inlet", + "16108": "flow:RCR_aorta_br:J_heart_inlet", + "16109": "flow:RCR_aorta_br:J_heart_inlet", + "16110": "flow:RCR_aorta_br:J_heart_inlet", + "16111": "flow:RCR_aorta_br:J_heart_inlet", + "16112": "flow:RCR_aorta_br:J_heart_inlet", + "16113": "flow:RCR_aorta_br:J_heart_inlet", + "16114": "flow:RCR_aorta_br:J_heart_inlet", + "16115": "flow:RCR_aorta_br:J_heart_inlet", + "16116": "flow:RCR_aorta_br:J_heart_inlet", + "16117": "flow:RCR_aorta_br:J_heart_inlet", + "16118": "flow:RCR_aorta_br:J_heart_inlet", + "16119": "flow:RCR_aorta_br:J_heart_inlet", + "16120": "flow:RCR_aorta_br:J_heart_inlet", + "16121": "flow:RCR_aorta_br:J_heart_inlet", + "16122": "flow:RCR_aorta_br:J_heart_inlet", + "16123": "flow:RCR_aorta_br:J_heart_inlet", + "16124": "flow:RCR_aorta_br:J_heart_inlet", + "16125": "flow:RCR_aorta_br:J_heart_inlet", + "16126": "flow:RCR_aorta_br:J_heart_inlet", + "16127": "flow:RCR_aorta_br:J_heart_inlet", + "16128": "flow:RCR_aorta_br:J_heart_inlet", + "16129": "flow:RCR_aorta_br:J_heart_inlet", + "16130": "flow:RCR_aorta_br:J_heart_inlet", + "16131": "flow:RCR_aorta_br:J_heart_inlet", + "16132": "flow:RCR_aorta_br:J_heart_inlet", + "16133": "flow:RCR_aorta_br:J_heart_inlet", + "16134": "flow:RCR_aorta_br:J_heart_inlet", + "16135": "flow:RCR_aorta_br:J_heart_inlet", + "16136": "flow:RCR_aorta_br:J_heart_inlet", + "16137": "flow:RCR_aorta_br:J_heart_inlet", + "16138": "flow:RCR_aorta_br:J_heart_inlet", + "16139": "flow:RCR_aorta_br:J_heart_inlet", + "16140": "flow:RCR_aorta_br:J_heart_inlet", + "16141": "flow:RCR_aorta_br:J_heart_inlet", + "16142": "flow:RCR_aorta_br:J_heart_inlet", + "16143": "flow:RCR_aorta_br:J_heart_inlet", + "16144": "flow:RCR_aorta_br:J_heart_inlet", + "16145": "flow:RCR_aorta_br:J_heart_inlet", + "16146": "flow:RCR_aorta_br:J_heart_inlet", + "16147": "flow:RCR_aorta_br:J_heart_inlet", + "16148": "flow:RCR_aorta_br:J_heart_inlet", + "16149": "flow:RCR_aorta_br:J_heart_inlet", + "16150": "flow:RCR_aorta_br:J_heart_inlet", + "16151": "flow:RCR_aorta_br:J_heart_inlet", + "16152": "flow:RCR_aorta_br:J_heart_inlet", + "16153": "flow:RCR_aorta_br:J_heart_inlet", + "16154": "flow:RCR_aorta_br:J_heart_inlet", + "16155": "flow:RCR_aorta_br:J_heart_inlet", + "16156": "flow:RCR_aorta_br:J_heart_inlet", + "16157": "flow:RCR_aorta_br:J_heart_inlet", + "16158": "flow:RCR_aorta_br:J_heart_inlet", + "16159": "flow:RCR_aorta_br:J_heart_inlet", + "16160": "flow:RCR_aorta_br:J_heart_inlet", + "16161": "flow:RCR_aorta_br:J_heart_inlet", + "16162": "flow:RCR_aorta_br:J_heart_inlet", + "16163": "flow:RCR_aorta_br:J_heart_inlet", + "16164": "flow:RCR_aorta_br:J_heart_inlet", + "16165": "flow:RCR_aorta_br:J_heart_inlet", + "16166": "flow:RCR_aorta_br:J_heart_inlet", + "16167": "flow:RCR_aorta_br:J_heart_inlet", + "16168": "flow:RCR_aorta_br:J_heart_inlet", + "16169": "flow:RCR_aorta_br:J_heart_inlet", + "16170": "flow:RCR_aorta_br:J_heart_inlet", + "16171": "flow:RCR_aorta_br:J_heart_inlet", + "16172": "flow:RCR_aorta_br:J_heart_inlet", + "16173": "flow:RCR_aorta_br:J_heart_inlet", + "16174": "flow:RCR_aorta_br:J_heart_inlet", + "16175": "flow:RCR_aorta_br:J_heart_inlet", + "16176": "flow:RCR_aorta_br:J_heart_inlet", + "16177": "flow:RCR_aorta_br:J_heart_inlet", + "16178": "flow:RCR_aorta_br:J_heart_inlet", + "16179": "flow:RCR_aorta_br:J_heart_inlet", + "16180": "flow:RCR_aorta_br:J_heart_inlet", + "16181": "flow:RCR_aorta_br:J_heart_inlet", + "16182": "flow:RCR_aorta_br:J_heart_inlet", + "16183": "flow:RCR_aorta_br:J_heart_inlet", + "16184": "flow:RCR_aorta_br:J_heart_inlet", + "16185": "flow:RCR_aorta_br:J_heart_inlet", + "16186": "flow:RCR_aorta_br:J_heart_inlet", + "16187": "flow:RCR_aorta_br:J_heart_inlet", + "16188": "flow:RCR_aorta_br:J_heart_inlet", + "16189": "flow:RCR_aorta_br:J_heart_inlet", + "16190": "flow:RCR_aorta_br:J_heart_inlet", + "16191": "flow:RCR_aorta_br:J_heart_inlet", + "16192": "flow:RCR_aorta_br:J_heart_inlet", + "16193": "flow:RCR_aorta_br:J_heart_inlet", + "16194": "flow:RCR_aorta_br:J_heart_inlet", + "16195": "flow:RCR_aorta_br:J_heart_inlet", + "16196": "flow:RCR_aorta_br:J_heart_inlet", + "16197": "flow:RCR_aorta_br:J_heart_inlet", + "16198": "flow:RCR_aorta_br:J_heart_inlet", + "16199": "flow:RCR_aorta_br:J_heart_inlet", + "16200": "flow:RCR_aorta_br:J_heart_inlet", + "16201": "flow:RCR_aorta_br:J_heart_inlet", + "16202": "flow:RCR_aorta_br:J_heart_inlet", + "16203": "flow:RCR_aorta_br:J_heart_inlet", + "16204": "flow:RCR_aorta_br:J_heart_inlet", + "16205": "flow:RCR_aorta_br:J_heart_inlet", + "16206": "flow:RCR_aorta_br:J_heart_inlet", + "16207": "flow:RCR_aorta_br:J_heart_inlet", + "16208": "flow:RCR_aorta_br:J_heart_inlet", + "16209": "flow:RCR_aorta_br:J_heart_inlet", + "16210": "flow:RCR_aorta_br:J_heart_inlet", + "16211": "flow:RCR_aorta_br:J_heart_inlet", + "16212": "flow:RCR_aorta_br:J_heart_inlet", + "16213": "flow:RCR_aorta_br:J_heart_inlet", + "16214": "flow:RCR_aorta_br:J_heart_inlet", + "16215": "flow:RCR_aorta_br:J_heart_inlet", + "16216": "flow:RCR_aorta_br:J_heart_inlet", + "16217": "flow:RCR_aorta_br:J_heart_inlet", + "16218": "flow:RCR_aorta_br:J_heart_inlet", + "16219": "flow:RCR_aorta_br:J_heart_inlet", + "16220": "flow:RCR_aorta_br:J_heart_inlet", + "16221": "flow:RCR_aorta_br:J_heart_inlet", + "16222": "flow:RCR_aorta_br:J_heart_inlet", + "16223": "flow:RCR_aorta_br:J_heart_inlet", + "16224": "flow:RCR_aorta_br:J_heart_inlet", + "16225": "flow:RCR_aorta_br:J_heart_inlet", + "16226": "flow:RCR_aorta_br:J_heart_inlet", + "16227": "flow:RCR_aorta_br:J_heart_inlet", + "16228": "flow:RCR_aorta_br:J_heart_inlet", + "16229": "flow:RCR_aorta_br:J_heart_inlet", + "16230": "flow:RCR_aorta_br:J_heart_inlet", + "16231": "flow:RCR_aorta_br:J_heart_inlet", + "16232": "flow:RCR_aorta_br:J_heart_inlet", + "16233": "flow:RCR_aorta_br:J_heart_inlet", + "16234": "flow:RCR_aorta_br:J_heart_inlet", + "16235": "flow:RCR_aorta_br:J_heart_inlet", + "16236": "flow:RCR_aorta_br:J_heart_inlet", + "16237": "flow:RCR_aorta_br:J_heart_inlet", + "16238": "flow:RCR_aorta_br:J_heart_inlet", + "16239": "flow:RCR_aorta_br:J_heart_inlet", + "16240": "flow:RCR_aorta_br:J_heart_inlet", + "16241": "flow:RCR_aorta_br:J_heart_inlet", + "16242": "flow:RCR_aorta_br:J_heart_inlet", + "16243": "flow:RCR_aorta_br:J_heart_inlet", + "16244": "flow:RCR_aorta_br:J_heart_inlet", + "16245": "flow:RCR_aorta_br:J_heart_inlet", + "16246": "flow:RCR_aorta_br:J_heart_inlet", + "16247": "flow:RCR_aorta_br:J_heart_inlet", + "16248": "flow:RCR_aorta_br:J_heart_inlet", + "16249": "flow:RCR_aorta_br:J_heart_inlet", + "16250": "flow:RCR_aorta_br:J_heart_inlet", + "16251": "flow:RCR_aorta_br:J_heart_inlet", + "16252": "flow:RCR_aorta_br:J_heart_inlet", + "16253": "flow:RCR_aorta_br:J_heart_inlet", + "16254": "flow:RCR_aorta_br:J_heart_inlet", + "16255": "flow:RCR_aorta_br:J_heart_inlet", + "16256": "flow:RCR_aorta_br:J_heart_inlet", + "16257": "flow:RCR_aorta_br:J_heart_inlet", + "16258": "flow:RCR_aorta_br:J_heart_inlet", + "16259": "flow:RCR_aorta_br:J_heart_inlet", + "16260": "flow:RCR_aorta_br:J_heart_inlet", + "16261": "flow:RCR_aorta_br:J_heart_inlet", + "16262": "flow:RCR_aorta_br:J_heart_inlet", + "16263": "flow:RCR_aorta_br:J_heart_inlet", + "16264": "flow:RCR_aorta_br:J_heart_inlet", + "16265": "flow:RCR_aorta_br:J_heart_inlet", + "16266": "flow:RCR_aorta_br:J_heart_inlet", + "16267": "flow:RCR_aorta_br:J_heart_inlet", + "16268": "flow:RCR_aorta_br:J_heart_inlet", + "16269": "flow:RCR_aorta_br:J_heart_inlet", + "16270": "flow:RCR_aorta_br:J_heart_inlet", + "16271": "flow:RCR_aorta_br:J_heart_inlet", + "16272": "flow:RCR_aorta_br:J_heart_inlet", + "16273": "flow:RCR_aorta_br:J_heart_inlet", + "16274": "flow:RCR_aorta_br:J_heart_inlet", + "16275": "flow:RCR_aorta_br:J_heart_inlet", + "16276": "flow:RCR_aorta_br:J_heart_inlet", + "16277": "flow:RCR_aorta_br:J_heart_inlet", + "16278": "flow:RCR_aorta_br:J_heart_inlet", + "16279": "flow:RCR_aorta_br:J_heart_inlet", + "16280": "flow:RCR_aorta_br:J_heart_inlet", + "16281": "flow:RCR_aorta_br:J_heart_inlet", + "16282": "flow:RCR_aorta_br:J_heart_inlet", + "16283": "flow:RCR_aorta_br:J_heart_inlet", + "16284": "flow:RCR_aorta_br:J_heart_inlet", + "16285": "flow:RCR_aorta_br:J_heart_inlet", + "16286": "flow:RCR_aorta_br:J_heart_inlet", + "16287": "flow:RCR_aorta_br:J_heart_inlet", + "16288": "flow:RCR_aorta_br:J_heart_inlet", + "16289": "flow:RCR_aorta_br:J_heart_inlet", + "16290": "flow:RCR_aorta_br:J_heart_inlet", + "16291": "flow:RCR_aorta_br:J_heart_inlet", + "16292": "flow:RCR_aorta_br:J_heart_inlet", + "16293": "flow:RCR_aorta_br:J_heart_inlet", + "16294": "flow:RCR_aorta_br:J_heart_inlet", + "16295": "flow:RCR_aorta_br:J_heart_inlet", + "16296": "flow:RCR_aorta_br:J_heart_inlet", + "16297": "flow:RCR_aorta_br:J_heart_inlet", + "16298": "flow:RCR_aorta_br:J_heart_inlet", + "16299": "flow:RCR_aorta_br:J_heart_inlet", + "16300": "flow:RCR_aorta_br:J_heart_inlet", + "16301": "flow:RCR_aorta_br:J_heart_inlet", + "16302": "flow:RCR_aorta_br:J_heart_inlet", + "16303": "flow:RCR_aorta_br:J_heart_inlet", + "16304": "flow:RCR_aorta_br:J_heart_inlet", + "16305": "flow:RCR_aorta_br:J_heart_inlet", + "16306": "flow:RCR_aorta_br:J_heart_inlet", + "16307": "flow:RCR_aorta_br:J_heart_inlet", + "16308": "flow:RCR_aorta_br:J_heart_inlet", + "16309": "flow:RCR_aorta_br:J_heart_inlet", + "16310": "flow:RCR_aorta_br:J_heart_inlet", + "16311": "flow:RCR_aorta_br:J_heart_inlet", + "16312": "flow:RCR_aorta_br:J_heart_inlet", + "16313": "flow:RCR_aorta_br:J_heart_inlet", + "16314": "flow:RCR_aorta_br:J_heart_inlet", + "16315": "flow:RCR_aorta_br:J_heart_inlet", + "16316": "flow:RCR_aorta_br:J_heart_inlet", + "16317": "flow:RCR_aorta_br:J_heart_inlet", + "16318": "flow:RCR_aorta_br:J_heart_inlet", + "16319": "flow:RCR_aorta_br:J_heart_inlet", + "16320": "flow:RCR_aorta_br:J_heart_inlet", + "16321": "flow:RCR_aorta_br:J_heart_inlet", + "16322": "flow:RCR_aorta_br:J_heart_inlet", + "16323": "flow:RCR_aorta_br:J_heart_inlet", + "16324": "flow:RCR_aorta_br:J_heart_inlet", + "16325": "flow:RCR_aorta_br:J_heart_inlet", + "16326": "flow:RCR_aorta_br:J_heart_inlet", + "16327": "flow:RCR_aorta_br:J_heart_inlet", + "16328": "flow:RCR_aorta_br:J_heart_inlet", + "16329": "flow:RCR_aorta_br:J_heart_inlet", + "16330": "flow:RCR_aorta_br:J_heart_inlet", + "16331": "flow:RCR_aorta_br:J_heart_inlet", + "16332": "flow:RCR_aorta_br:J_heart_inlet", + "16333": "flow:RCR_aorta_br:J_heart_inlet", + "16334": "flow:RCR_aorta_br:J_heart_inlet", + "16335": "flow:RCR_aorta_br:J_heart_inlet", + "16336": "flow:RCR_aorta_br:J_heart_inlet", + "16337": "flow:RCR_aorta_br:J_heart_inlet", + "16338": "flow:RCR_aorta_br:J_heart_inlet", + "16339": "flow:RCR_aorta_br:J_heart_inlet", + "16340": "flow:RCR_aorta_br:J_heart_inlet", + "16341": "flow:RCR_aorta_br:J_heart_inlet", + "16342": "flow:RCR_aorta_br:J_heart_inlet", + "16343": "flow:RCR_aorta_br:J_heart_inlet", + "16344": "flow:RCR_aorta_br:J_heart_inlet", + "16345": "flow:RCR_aorta_br:J_heart_inlet", + "16346": "flow:RCR_aorta_br:J_heart_inlet", + "16347": "flow:RCR_aorta_br:J_heart_inlet", + "16348": "flow:RCR_aorta_br:J_heart_inlet", + "16349": "flow:RCR_aorta_br:J_heart_inlet", + "16350": "flow:RCR_aorta_br:J_heart_inlet", + "16351": "flow:RCR_aorta_br:J_heart_inlet", + "16352": "flow:RCR_aorta_br:J_heart_inlet", + "16353": "flow:RCR_aorta_br:J_heart_inlet", + "16354": "flow:RCR_aorta_br:J_heart_inlet", + "16355": "flow:RCR_aorta_br:J_heart_inlet", + "16356": "flow:RCR_aorta_br:J_heart_inlet", + "16357": "flow:RCR_aorta_br:J_heart_inlet", + "16358": "flow:RCR_aorta_br:J_heart_inlet", + "16359": "flow:RCR_aorta_br:J_heart_inlet", + "16360": "flow:RCR_aorta_br:J_heart_inlet", + "16361": "flow:RCR_aorta_br:J_heart_inlet", + "16362": "flow:RCR_aorta_br:J_heart_inlet", + "16363": "flow:RCR_aorta_br:J_heart_inlet", + "16364": "flow:RCR_aorta_br:J_heart_inlet", + "16365": "flow:RCR_aorta_br:J_heart_inlet", + "16366": "flow:RCR_aorta_br:J_heart_inlet", + "16367": "flow:RCR_aorta_br:J_heart_inlet", + "16368": "flow:RCR_aorta_br:J_heart_inlet", + "16369": "flow:RCR_aorta_br:J_heart_inlet", + "16370": "flow:RCR_aorta_br:J_heart_inlet", + "16371": "flow:RCR_aorta_br:J_heart_inlet", + "16372": "flow:RCR_aorta_br:J_heart_inlet", + "16373": "flow:RCR_aorta_br:J_heart_inlet", + "16374": "flow:RCR_aorta_br:J_heart_inlet", + "16375": "flow:RCR_aorta_br:J_heart_inlet", + "16376": "flow:RCR_aorta_br:J_heart_inlet", + "16377": "flow:RCR_aorta_br:J_heart_inlet", + "16378": "flow:RCR_aorta_br:J_heart_inlet", + "16379": "flow:RCR_aorta_br:J_heart_inlet", + "16380": "flow:RCR_aorta_br:J_heart_inlet", + "16381": "flow:RCR_aorta_br:J_heart_inlet", + "16382": "flow:RCR_aorta_br:J_heart_inlet", + "16383": "flow:RCR_aorta_br:J_heart_inlet", + "16384": "flow:RCR_aorta_br:J_heart_inlet", + "16385": "flow:RCR_aorta_br:J_heart_inlet", + "16386": "flow:RCR_aorta_br:J_heart_inlet", + "16387": "flow:RCR_aorta_br:J_heart_inlet", + "16388": "flow:RCR_aorta_br:J_heart_inlet", + "16389": "flow:RCR_aorta_br:J_heart_inlet", + "16390": "flow:RCR_aorta_br:J_heart_inlet", + "16391": "flow:RCR_aorta_br:J_heart_inlet", + "16392": "flow:RCR_aorta_br:J_heart_inlet", + "16393": "flow:RCR_aorta_br:J_heart_inlet", + "16394": "flow:RCR_aorta_br:J_heart_inlet", + "16395": "flow:RCR_aorta_br:J_heart_inlet", + "16396": "flow:RCR_aorta_br:J_heart_inlet", + "16397": "flow:RCR_aorta_br:J_heart_inlet", + "16398": "flow:RCR_aorta_br:J_heart_inlet", + "16399": "flow:RCR_aorta_br:J_heart_inlet", + "16400": "flow:RCR_aorta_br:J_heart_inlet", + "16401": "flow:RCR_aorta_br:J_heart_inlet", + "16402": "flow:RCR_aorta_br:J_heart_inlet", + "16403": "flow:RCR_aorta_br:J_heart_inlet", + "16404": "flow:RCR_aorta_br:J_heart_inlet", + "16405": "flow:RCR_aorta_br:J_heart_inlet", + "16406": "flow:RCR_aorta_br:J_heart_inlet", + "16407": "flow:RCR_aorta_br:J_heart_inlet", + "16408": "flow:RCR_aorta_br:J_heart_inlet", + "16409": "flow:RCR_aorta_br:J_heart_inlet", + "16410": "flow:RCR_aorta_br:J_heart_inlet", + "16411": "flow:RCR_aorta_br:J_heart_inlet", + "16412": "flow:RCR_aorta_br:J_heart_inlet", + "16413": "flow:RCR_aorta_br:J_heart_inlet", + "16414": "flow:RCR_aorta_br:J_heart_inlet", + "16415": "flow:RCR_aorta_br:J_heart_inlet", + "16416": "flow:RCR_aorta_br:J_heart_inlet", + "16417": "flow:RCR_aorta_br:J_heart_inlet", + "16418": "flow:RCR_aorta_br:J_heart_inlet", + "16419": "flow:RCR_aorta_br:J_heart_inlet", + "16420": "flow:RCR_aorta_br:J_heart_inlet", + "16421": "flow:RCR_aorta_br:J_heart_inlet", + "16422": "flow:RCR_aorta_br:J_heart_inlet", + "16423": "flow:RCR_aorta_br:J_heart_inlet", + "16424": "flow:RCR_aorta_br:J_heart_inlet", + "16425": "flow:RCR_aorta_br:J_heart_inlet", + "16426": "flow:RCR_aorta_br:J_heart_inlet", + "16427": "flow:RCR_aorta_br:J_heart_inlet", + "16428": "flow:RCR_aorta_br:J_heart_inlet", + "16429": "flow:RCR_aorta_br:J_heart_inlet", + "16430": "flow:RCR_aorta_br:J_heart_inlet", + "16431": "flow:RCR_aorta_br:J_heart_inlet", + "16432": "flow:RCR_aorta_br:J_heart_inlet", + "16433": "flow:RCR_aorta_br:J_heart_inlet", + "16434": "flow:RCR_aorta_br:J_heart_inlet", + "16435": "flow:RCR_aorta_br:J_heart_inlet", + "16436": "flow:RCR_aorta_br:J_heart_inlet", + "16437": "flow:RCR_aorta_br:J_heart_inlet", + "16438": "flow:RCR_aorta_br:J_heart_inlet", + "16439": "flow:RCR_aorta_br:J_heart_inlet", + "16440": "flow:RCR_aorta_br:J_heart_inlet", + "16441": "flow:RCR_aorta_br:J_heart_inlet", + "16442": "flow:RCR_aorta_br:J_heart_inlet", + "16443": "flow:RCR_aorta_br:J_heart_inlet", + "16444": "flow:RCR_aorta_br:J_heart_inlet", + "16445": "flow:RCR_aorta_br:J_heart_inlet", + "16446": "flow:RCR_aorta_br:J_heart_inlet", + "16447": "flow:RCR_aorta_br:J_heart_inlet", + "16448": "flow:RCR_aorta_br:J_heart_inlet", + "16449": "flow:RCR_aorta_br:J_heart_inlet", + "16450": "flow:RCR_aorta_br:J_heart_inlet", + "16451": "flow:RCR_aorta_br:J_heart_inlet", + "16452": "flow:RCR_aorta_br:J_heart_inlet", + "16453": "flow:RCR_aorta_br:J_heart_inlet", + "16454": "flow:RCR_aorta_br:J_heart_inlet", + "16455": "flow:RCR_aorta_br:J_heart_inlet", + "16456": "flow:RCR_aorta_br:J_heart_inlet", + "16457": "flow:RCR_aorta_br:J_heart_inlet", + "16458": "flow:RCR_aorta_br:J_heart_inlet", + "16459": "flow:RCR_aorta_br:J_heart_inlet", + "16460": "flow:RCR_aorta_br:J_heart_inlet", + "16461": "flow:RCR_aorta_br:J_heart_inlet", + "16462": "flow:RCR_aorta_br:J_heart_inlet", + "16463": "flow:RCR_aorta_br:J_heart_inlet", + "16464": "flow:RCR_aorta_br:J_heart_inlet", + "16465": "flow:RCR_aorta_br:J_heart_inlet", + "16466": "flow:RCR_aorta_br:J_heart_inlet", + "16467": "flow:RCR_aorta_br:J_heart_inlet", + "16468": "flow:RCR_aorta_br:J_heart_inlet", + "16469": "flow:RCR_aorta_br:J_heart_inlet", + "16470": "flow:RCR_aorta_br:J_heart_inlet", + "16471": "flow:RCR_aorta_br:J_heart_inlet", + "16472": "flow:RCR_aorta_br:J_heart_inlet", + "16473": "flow:RCR_aorta_br:J_heart_inlet", + "16474": "flow:RCR_aorta_br:J_heart_inlet", + "16475": "flow:RCR_aorta_br:J_heart_inlet", + "16476": "flow:RCR_aorta_br:J_heart_inlet", + "16477": "flow:RCR_aorta_br:J_heart_inlet", + "16478": "flow:RCR_aorta_br:J_heart_inlet", + "16479": "flow:RCR_aorta_br:J_heart_inlet", + "16480": "flow:RCR_aorta_br:J_heart_inlet", + "16481": "flow:RCR_aorta_br:J_heart_inlet", + "16482": "flow:RCR_aorta_br:J_heart_inlet", + "16483": "flow:RCR_aorta_br:J_heart_inlet", + "16484": "flow:RCR_aorta_br:J_heart_inlet", + "16485": "flow:RCR_aorta_br:J_heart_inlet", + "16486": "flow:RCR_aorta_br:J_heart_inlet", + "16487": "flow:RCR_aorta_br:J_heart_inlet", + "16488": "flow:RCR_aorta_br:J_heart_inlet", + "16489": "flow:RCR_aorta_br:J_heart_inlet", + "16490": "flow:RCR_aorta_br:J_heart_inlet", + "16491": "flow:RCR_aorta_br:J_heart_inlet", + "16492": "flow:RCR_aorta_br:J_heart_inlet", + "16493": "flow:RCR_aorta_br:J_heart_inlet", + "16494": "flow:RCR_aorta_br:J_heart_inlet", + "16495": "flow:RCR_aorta_br:J_heart_inlet", + "16496": "flow:RCR_aorta_br:J_heart_inlet", + "16497": "flow:RCR_aorta_br:J_heart_inlet", + "16498": "flow:RCR_aorta_br:J_heart_inlet", + "16499": "flow:RCR_aorta_br:J_heart_inlet", + "16500": "flow:RCR_aorta_br:J_heart_inlet", + "16501": "flow:RCR_aorta_br:J_heart_inlet", + "16502": "flow:RCR_aorta_br:J_heart_inlet", + "16503": "flow:RCR_aorta_br:J_heart_inlet", + "16504": "flow:RCR_aorta_br:J_heart_inlet", + "16505": "flow:RCR_aorta_br:J_heart_inlet", + "16506": "flow:RCR_aorta_br:J_heart_inlet", + "16507": "flow:RCR_aorta_br:J_heart_inlet", + "16508": "flow:RCR_aorta_br:J_heart_inlet", + "16509": "flow:RCR_aorta_br:J_heart_inlet", + "16510": "flow:RCR_aorta_br:J_heart_inlet", + "16511": "flow:RCR_aorta_br:J_heart_inlet", + "16512": "flow:RCR_aorta_br:J_heart_inlet", + "16513": "flow:RCR_aorta_br:J_heart_inlet", + "16514": "flow:RCR_aorta_br:J_heart_inlet", + "16515": "flow:RCR_aorta_br:J_heart_inlet", + "16516": "flow:RCR_aorta_br:J_heart_inlet", + "16517": "flow:RCR_aorta_br:J_heart_inlet", + "16518": "flow:RCR_aorta_br:J_heart_inlet", + "16519": "flow:RCR_aorta_br:J_heart_inlet", + "16520": "flow:RCR_aorta_br:J_heart_inlet", + "16521": "flow:RCR_aorta_br:J_heart_inlet", + "16522": "flow:RCR_aorta_br:J_heart_inlet", + "16523": "flow:RCR_aorta_br:J_heart_inlet", + "16524": "flow:RCR_aorta_br:J_heart_inlet", + "16525": "flow:RCR_aorta_br:J_heart_inlet", + "16526": "flow:RCR_aorta_br:J_heart_inlet", + "16527": "flow:RCR_aorta_br:J_heart_inlet", + "16528": "flow:RCR_aorta_br:J_heart_inlet", + "16529": "flow:RCR_aorta_br:J_heart_inlet", + "16530": "flow:RCR_aorta_br:J_heart_inlet", + "16531": "flow:RCR_aorta_br:J_heart_inlet", + "16532": "flow:RCR_aorta_br:J_heart_inlet", + "16533": "flow:RCR_aorta_br:J_heart_inlet", + "16534": "flow:RCR_aorta_br:J_heart_inlet", + "16535": "flow:RCR_aorta_br:J_heart_inlet", + "16536": "flow:RCR_aorta_br:J_heart_inlet", + "16537": "flow:RCR_aorta_br:J_heart_inlet", + "16538": "flow:RCR_aorta_br:J_heart_inlet", + "16539": "flow:RCR_aorta_br:J_heart_inlet", + "16540": "flow:RCR_aorta_br:J_heart_inlet", + "16541": "flow:RCR_aorta_br:J_heart_inlet", + "16542": "flow:RCR_aorta_br:J_heart_inlet", + "16543": "flow:RCR_aorta_br:J_heart_inlet", + "16544": "flow:RCR_aorta_br:J_heart_inlet", + "16545": "flow:RCR_aorta_br:J_heart_inlet", + "16546": "flow:RCR_aorta_br:J_heart_inlet", + "16547": "flow:RCR_aorta_br:J_heart_inlet", + "16548": "flow:RCR_aorta_br:J_heart_inlet", + "16549": "flow:RCR_aorta_br:J_heart_inlet", + "16550": "flow:RCR_aorta_br:J_heart_inlet", + "16551": "flow:RCR_aorta_br:J_heart_inlet", + "16552": "flow:RCR_aorta_br:J_heart_inlet", + "16553": "flow:RCR_aorta_br:J_heart_inlet", + "16554": "flow:RCR_aorta_br:J_heart_inlet", + "16555": "flow:RCR_aorta_br:J_heart_inlet", + "16556": "flow:RCR_aorta_br:J_heart_inlet", + "16557": "flow:RCR_aorta_br:J_heart_inlet", + "16558": "flow:RCR_aorta_br:J_heart_inlet", + "16559": "flow:RCR_aorta_br:J_heart_inlet", + "16560": "flow:RCR_aorta_br:J_heart_inlet", + "16561": "flow:RCR_aorta_br:J_heart_inlet", + "16562": "flow:RCR_aorta_br:J_heart_inlet", + "16563": "flow:RCR_aorta_br:J_heart_inlet", + "16564": "flow:RCR_aorta_br:J_heart_inlet", + "16565": "flow:RCR_aorta_br:J_heart_inlet", + "16566": "flow:RCR_aorta_br:J_heart_inlet", + "16567": "flow:RCR_aorta_br:J_heart_inlet", + "16568": "flow:RCR_aorta_br:J_heart_inlet", + "16569": "flow:RCR_aorta_br:J_heart_inlet", + "16570": "flow:RCR_aorta_br:J_heart_inlet", + "16571": "flow:RCR_aorta_br:J_heart_inlet", + "16572": "flow:RCR_aorta_br:J_heart_inlet", + "16573": "flow:RCR_aorta_br:J_heart_inlet", + "16574": "flow:RCR_aorta_br:J_heart_inlet", + "16575": "flow:RCR_aorta_br:J_heart_inlet", + "16576": "flow:RCR_aorta_br:J_heart_inlet", + "16577": "flow:RCR_aorta_br:J_heart_inlet", + "16578": "flow:RCR_aorta_br:J_heart_inlet", + "16579": "flow:RCR_aorta_br:J_heart_inlet", + "16580": "flow:RCR_aorta_br:J_heart_inlet", + "16581": "flow:RCR_aorta_br:J_heart_inlet", + "16582": "flow:RCR_aorta_br:J_heart_inlet", + "16583": "flow:RCR_aorta_br:J_heart_inlet", + "16584": "flow:RCR_aorta_br:J_heart_inlet", + "16585": "flow:RCR_aorta_br:J_heart_inlet", + "16586": "flow:RCR_aorta_br:J_heart_inlet", + "16587": "flow:RCR_aorta_br:J_heart_inlet", + "16588": "flow:RCR_aorta_br:J_heart_inlet", + "16589": "flow:RCR_aorta_br:J_heart_inlet", + "16590": "flow:RCR_aorta_br:J_heart_inlet", + "16591": "flow:RCR_aorta_br:J_heart_inlet", + "16592": "flow:RCR_aorta_br:J_heart_inlet", + "16593": "flow:RCR_aorta_br:J_heart_inlet", + "16594": "flow:RCR_aorta_br:J_heart_inlet", + "16595": "flow:RCR_aorta_br:J_heart_inlet", + "16596": "flow:RCR_aorta_br:J_heart_inlet", + "16597": "flow:RCR_aorta_br:J_heart_inlet", + "16598": "flow:RCR_aorta_br:J_heart_inlet", + "16599": "flow:RCR_aorta_br:J_heart_inlet", + "16600": "flow:RCR_aorta_br:J_heart_inlet", + "16601": "flow:RCR_aorta_br:J_heart_inlet", + "16602": "flow:RCR_aorta_br:J_heart_inlet", + "16603": "flow:RCR_aorta_br:J_heart_inlet", + "16604": "flow:RCR_aorta_br:J_heart_inlet", + "16605": "flow:RCR_aorta_br:J_heart_inlet", + "16606": "flow:RCR_aorta_br:J_heart_inlet", + "16607": "flow:RCR_aorta_br:J_heart_inlet", + "16608": "flow:RCR_aorta_br:J_heart_inlet", + "16609": "flow:RCR_aorta_br:J_heart_inlet", + "16610": "flow:RCR_aorta_br:J_heart_inlet", + "16611": "flow:RCR_aorta_br:J_heart_inlet", + "16612": "flow:RCR_aorta_br:J_heart_inlet", + "16613": "flow:RCR_aorta_br:J_heart_inlet", + "16614": "flow:RCR_aorta_br:J_heart_inlet", + "16615": "flow:RCR_aorta_br:J_heart_inlet", + "16616": "flow:RCR_aorta_br:J_heart_inlet", + "16617": "flow:RCR_aorta_br:J_heart_inlet", + "16618": "flow:RCR_aorta_br:J_heart_inlet", + "16619": "flow:RCR_aorta_br:J_heart_inlet", + "16620": "flow:RCR_aorta_br:J_heart_inlet", + "16621": "flow:RCR_aorta_br:J_heart_inlet", + "16622": "flow:RCR_aorta_br:J_heart_inlet", + "16623": "flow:RCR_aorta_br:J_heart_inlet", + "16624": "flow:RCR_aorta_br:J_heart_inlet", + "16625": "flow:RCR_aorta_br:J_heart_inlet", + "16626": "flow:RCR_aorta_br:J_heart_inlet", + "16627": "flow:RCR_aorta_br:J_heart_inlet", + "16628": "flow:RCR_aorta_br:J_heart_inlet", + "16629": "flow:RCR_aorta_br:J_heart_inlet", + "16630": "flow:RCR_aorta_br:J_heart_inlet", + "16631": "flow:RCR_aorta_br:J_heart_inlet", + "16632": "flow:RCR_aorta_br:J_heart_inlet", + "16633": "flow:RCR_aorta_br:J_heart_inlet", + "16634": "flow:RCR_aorta_br:J_heart_inlet", + "16635": "flow:RCR_aorta_br:J_heart_inlet", + "16636": "flow:RCR_aorta_br:J_heart_inlet", + "16637": "flow:RCR_aorta_br:J_heart_inlet", + "16638": "flow:RCR_aorta_br:J_heart_inlet", + "16639": "flow:RCR_aorta_br:J_heart_inlet", + "16640": "flow:RCR_aorta_br:J_heart_inlet", + "16641": "flow:RCR_aorta_br:J_heart_inlet", + "16642": "flow:RCR_aorta_br:J_heart_inlet", + "16643": "flow:RCR_aorta_br:J_heart_inlet", + "16644": "flow:RCR_aorta_br:J_heart_inlet", + "16645": "flow:RCR_aorta_br:J_heart_inlet", + "16646": "flow:RCR_aorta_br:J_heart_inlet", + "16647": "flow:RCR_aorta_br:J_heart_inlet", + "16648": "flow:RCR_aorta_br:J_heart_inlet", + "16649": "flow:RCR_aorta_br:J_heart_inlet", + "16650": "flow:RCR_aorta_br:J_heart_inlet", + "16651": "flow:RCR_aorta_br:J_heart_inlet", + "16652": "flow:RCR_aorta_br:J_heart_inlet", + "16653": "flow:RCR_aorta_br:J_heart_inlet", + "16654": "flow:RCR_aorta_br:J_heart_inlet", + "16655": "flow:RCR_aorta_br:J_heart_inlet", + "16656": "flow:RCR_aorta_br:J_heart_inlet", + "16657": "flow:RCR_aorta_br:J_heart_inlet", + "16658": "flow:RCR_aorta_br:J_heart_inlet", + "16659": "flow:RCR_aorta_br:J_heart_inlet", + "16660": "flow:RCR_aorta_br:J_heart_inlet", + "16661": "flow:RCR_aorta_br:J_heart_inlet", + "16662": "flow:RCR_aorta_br:J_heart_inlet", + "16663": "flow:RCR_aorta_br:J_heart_inlet", + "16664": "flow:RCR_aorta_br:J_heart_inlet", + "16665": "flow:RCR_aorta_br:J_heart_inlet", + "16666": "flow:RCR_aorta_br:J_heart_inlet", + "16667": "flow:RCR_aorta_br:J_heart_inlet", + "16668": "flow:RCR_aorta_br:J_heart_inlet", + "16669": "flow:RCR_aorta_br:J_heart_inlet", + "16670": "flow:RCR_aorta_br:J_heart_inlet", + "16671": "flow:RCR_aorta_br:J_heart_inlet", + "16672": "flow:RCR_aorta_br:J_heart_inlet", + "16673": "flow:RCR_aorta_br:J_heart_inlet", + "16674": "flow:RCR_aorta_br:J_heart_inlet", + "16675": "flow:RCR_aorta_br:J_heart_inlet", + "16676": "flow:RCR_aorta_br:J_heart_inlet", + "16677": "flow:RCR_aorta_br:J_heart_inlet", + "16678": "flow:RCR_aorta_br:J_heart_inlet", + "16679": "flow:RCR_aorta_br:J_heart_inlet", + "16680": "flow:RCR_aorta_br:J_heart_inlet", + "16681": "flow:RCR_aorta_br:J_heart_inlet", + "16682": "flow:RCR_aorta_br:J_heart_inlet", + "16683": "flow:RCR_aorta_br:J_heart_inlet", + "16684": "flow:RCR_aorta_br:J_heart_inlet", + "16685": "flow:RCR_aorta_br:J_heart_inlet", + "16686": "flow:RCR_aorta_br:J_heart_inlet", + "16687": "flow:RCR_aorta_br:J_heart_inlet", + "16688": "flow:RCR_aorta_br:J_heart_inlet", + "16689": "flow:RCR_aorta_br:J_heart_inlet", + "16690": "flow:RCR_aorta_br:J_heart_inlet", + "16691": "flow:RCR_aorta_br:J_heart_inlet", + "16692": "flow:RCR_aorta_br:J_heart_inlet", + "16693": "flow:RCR_aorta_br:J_heart_inlet", + "16694": "flow:RCR_aorta_br:J_heart_inlet", + "16695": "flow:RCR_aorta_br:J_heart_inlet", + "16696": "flow:RCR_aorta_br:J_heart_inlet", + "16697": "flow:RCR_aorta_br:J_heart_inlet", + "16698": "flow:RCR_aorta_br:J_heart_inlet", + "16699": "flow:RCR_aorta_br:J_heart_inlet", + "16700": "flow:RCR_aorta_br:J_heart_inlet", + "16701": "flow:RCR_aorta_br:J_heart_inlet", + "16702": "flow:RCR_aorta_br:J_heart_inlet", + "16703": "flow:RCR_aorta_br:J_heart_inlet", + "16704": "flow:RCR_aorta_br:J_heart_inlet", + "16705": "flow:RCR_aorta_br:J_heart_inlet", + "16706": "flow:RCR_aorta_br:J_heart_inlet", + "16707": "flow:RCR_aorta_br:J_heart_inlet", + "16708": "flow:RCR_aorta_br:J_heart_inlet", + "16709": "flow:RCR_aorta_br:J_heart_inlet", + "16710": "flow:RCR_aorta_br:J_heart_inlet", + "16711": "flow:RCR_aorta_br:J_heart_inlet", + "16712": "flow:RCR_aorta_br:J_heart_inlet", + "16713": "flow:RCR_aorta_br:J_heart_inlet", + "16714": "flow:RCR_aorta_br:J_heart_inlet", + "16715": "flow:RCR_aorta_br:J_heart_inlet", + "16716": "flow:RCR_aorta_br:J_heart_inlet", + "16717": "flow:RCR_aorta_br:J_heart_inlet", + "16718": "flow:RCR_aorta_br:J_heart_inlet", + "16719": "flow:RCR_aorta_br:J_heart_inlet", + "16720": "flow:RCR_aorta_br:J_heart_inlet", + "16721": "flow:RCR_aorta_br:J_heart_inlet", + "16722": "flow:RCR_aorta_br:J_heart_inlet", + "16723": "flow:RCR_aorta_br:J_heart_inlet", + "16724": "flow:RCR_aorta_br:J_heart_inlet", + "16725": "flow:RCR_aorta_br:J_heart_inlet", + "16726": "flow:RCR_aorta_br:J_heart_inlet", + "16727": "flow:RCR_aorta_br:J_heart_inlet", + "16728": "flow:RCR_aorta_br:J_heart_inlet", + "16729": "flow:RCR_aorta_br:J_heart_inlet", + "16730": "flow:RCR_aorta_br:J_heart_inlet", + "16731": "flow:RCR_aorta_br:J_heart_inlet", + "16732": "flow:RCR_aorta_br:J_heart_inlet", + "16733": "flow:RCR_aorta_br:J_heart_inlet", + "16734": "flow:RCR_aorta_br:J_heart_inlet", + "16735": "flow:RCR_aorta_br:J_heart_inlet", + "16736": "flow:RCR_aorta_br:J_heart_inlet", + "16737": "flow:RCR_aorta_br:J_heart_inlet", + "16738": "flow:RCR_aorta_br:J_heart_inlet", + "16739": "flow:RCR_aorta_br:J_heart_inlet", + "16740": "flow:RCR_aorta_br:J_heart_inlet", + "16741": "flow:RCR_aorta_br:J_heart_inlet", + "16742": "flow:RCR_aorta_br:J_heart_inlet", + "16743": "flow:RCR_aorta_br:J_heart_inlet", + "16744": "flow:RCR_aorta_br:J_heart_inlet", + "16745": "flow:RCR_aorta_br:J_heart_inlet", + "16746": "flow:RCR_aorta_br:J_heart_inlet", + "16747": "flow:RCR_aorta_br:J_heart_inlet", + "16748": "flow:RCR_aorta_br:J_heart_inlet", + "16749": "flow:RCR_aorta_br:J_heart_inlet", + "16750": "flow:RCR_aorta_br:J_heart_inlet", + "16751": "flow:RCR_aorta_br:J_heart_inlet", + "16752": "flow:RCR_aorta_br:J_heart_inlet", + "16753": "flow:RCR_aorta_br:J_heart_inlet", + "16754": "flow:RCR_aorta_br:J_heart_inlet", + "16755": "flow:RCR_aorta_br:J_heart_inlet", + "16756": "flow:RCR_aorta_br:J_heart_inlet", + "16757": "flow:RCR_aorta_br:J_heart_inlet", + "16758": "flow:RCR_aorta_br:J_heart_inlet", + "16759": "flow:RCR_aorta_br:J_heart_inlet", + "16760": "flow:RCR_aorta_br:J_heart_inlet", + "16761": "flow:RCR_aorta_br:J_heart_inlet", + "16762": "flow:RCR_aorta_br:J_heart_inlet", + "16763": "flow:RCR_aorta_br:J_heart_inlet", + "16764": "flow:RCR_aorta_br:J_heart_inlet", + "16765": "flow:RCR_aorta_br:J_heart_inlet", + "16766": "flow:RCR_aorta_br:J_heart_inlet", + "16767": "flow:RCR_aorta_br:J_heart_inlet", + "16768": "flow:RCR_aorta_br:J_heart_inlet", + "16769": "flow:RCR_aorta_br:J_heart_inlet", + "16770": "flow:RCR_aorta_br:J_heart_inlet", + "16771": "flow:RCR_aorta_br:J_heart_inlet", + "16772": "flow:RCR_aorta_br:J_heart_inlet", + "16773": "flow:RCR_aorta_br:J_heart_inlet", + "16774": "flow:RCR_aorta_br:J_heart_inlet", + "16775": "flow:RCR_aorta_br:J_heart_inlet", + "16776": "flow:RCR_aorta_br:J_heart_inlet", + "16777": "flow:RCR_aorta_br:J_heart_inlet", + "16778": "flow:RCR_aorta_br:J_heart_inlet", + "16779": "flow:RCR_aorta_br:J_heart_inlet", + "16780": "flow:RCR_aorta_br:J_heart_inlet", + "16781": "flow:RCR_aorta_br:J_heart_inlet", + "16782": "flow:RCR_aorta_br:J_heart_inlet", + "16783": "flow:RCR_aorta_br:J_heart_inlet", + "16784": "flow:RCR_aorta_br:J_heart_inlet", + "16785": "flow:RCR_aorta_br:J_heart_inlet", + "16786": "flow:RCR_aorta_br:J_heart_inlet", + "16787": "flow:RCR_aorta_br:J_heart_inlet", + "16788": "flow:RCR_aorta_br:J_heart_inlet", + "16789": "flow:RCR_aorta_br:J_heart_inlet", + "16790": "flow:RCR_aorta_br:J_heart_inlet", + "16791": "flow:RCR_aorta_br:J_heart_inlet", + "16792": "flow:RCR_aorta_br:J_heart_inlet", + "16793": "flow:RCR_aorta_br:J_heart_inlet", + "16794": "flow:RCR_aorta_br:J_heart_inlet", + "16795": "flow:RCR_aorta_br:J_heart_inlet", + "16796": "flow:RCR_aorta_br:J_heart_inlet", + "16797": "flow:RCR_aorta_br:J_heart_inlet", + "16798": "flow:RCR_aorta_br:J_heart_inlet", + "16799": "flow:RCR_aorta_br:J_heart_inlet", + "16800": "flow:RCR_aorta_br:J_heart_inlet", + "16801": "flow:RCR_aorta_br:J_heart_inlet", + "16802": "flow:RCR_aorta_br:J_heart_inlet", + "16803": "flow:RCR_aorta_br:J_heart_inlet", + "16804": "flow:RCR_aorta_br:J_heart_inlet", + "16805": "flow:RCR_aorta_br:J_heart_inlet", + "16806": "flow:RCR_aorta_br:J_heart_inlet", + "16807": "flow:RCR_aorta_br:J_heart_inlet", + "16808": "flow:RCR_aorta_br:J_heart_inlet", + "16809": "flow:RCR_aorta_br:J_heart_inlet", + "16810": "flow:RCR_aorta_br:J_heart_inlet", + "16811": "flow:RCR_aorta_br:J_heart_inlet", + "16812": "flow:RCR_aorta_br:J_heart_inlet", + "16813": "flow:RCR_aorta_br:J_heart_inlet", + "16814": "flow:RCR_aorta_br:J_heart_inlet", + "16815": "flow:RCR_aorta_br:J_heart_inlet", + "16816": "flow:RCR_aorta_br:J_heart_inlet", + "16817": "flow:RCR_aorta_br:J_heart_inlet", + "16818": "flow:RCR_aorta_br:J_heart_inlet", + "16819": "flow:RCR_aorta_br:J_heart_inlet", + "16820": "flow:RCR_aorta_br:J_heart_inlet", + "16821": "flow:RCR_aorta_br:J_heart_inlet", + "16822": "flow:RCR_aorta_br:J_heart_inlet", + "16823": "flow:RCR_aorta_br:J_heart_inlet", + "16824": "flow:RCR_aorta_br:J_heart_inlet", + "16825": "flow:RCR_aorta_br:J_heart_inlet", + "16826": "flow:RCR_aorta_br:J_heart_inlet", + "16827": "flow:RCR_aorta_br:J_heart_inlet", + "16828": "flow:RCR_aorta_br:J_heart_inlet", + "16829": "flow:RCR_aorta_br:J_heart_inlet", + "16830": "flow:RCR_aorta_br:J_heart_inlet", + "16831": "flow:RCR_aorta_br:J_heart_inlet", + "16832": "flow:RCR_aorta_br:J_heart_inlet", + "16833": "flow:RCR_aorta_br:J_heart_inlet", + "16834": "flow:RCR_aorta_br:J_heart_inlet", + "16835": "flow:RCR_aorta_br:J_heart_inlet", + "16836": "flow:RCR_aorta_br:J_heart_inlet", + "16837": "flow:RCR_aorta_br:J_heart_inlet", + "16838": "flow:RCR_aorta_br:J_heart_inlet", + "16839": "flow:RCR_aorta_br:J_heart_inlet", + "16840": "flow:RCR_aorta_br:J_heart_inlet", + "16841": "flow:RCR_aorta_br:J_heart_inlet", + "16842": "flow:RCR_aorta_br:J_heart_inlet", + "16843": "flow:RCR_aorta_br:J_heart_inlet", + "16844": "flow:RCR_aorta_br:J_heart_inlet", + "16845": "flow:RCR_aorta_br:J_heart_inlet", + "16846": "flow:RCR_aorta_br:J_heart_inlet", + "16847": "flow:RCR_aorta_br:J_heart_inlet", + "16848": "flow:RCR_aorta_br:J_heart_inlet", + "16849": "flow:RCR_aorta_br:J_heart_inlet", + "16850": "flow:RCR_aorta_br:J_heart_inlet", + "16851": "flow:RCR_aorta_br:J_heart_inlet", + "16852": "flow:RCR_aorta_br:J_heart_inlet", + "16853": "flow:RCR_aorta_br:J_heart_inlet", + "16854": "flow:RCR_aorta_br:J_heart_inlet", + "16855": "flow:RCR_aorta_br:J_heart_inlet", + "16856": "flow:RCR_aorta_br:J_heart_inlet", + "16857": "flow:RCR_aorta_br:J_heart_inlet", + "16858": "flow:RCR_aorta_br:J_heart_inlet", + "16859": "flow:RCR_aorta_br:J_heart_inlet", + "16860": "flow:RCR_aorta_br:J_heart_inlet", + "16861": "flow:RCR_aorta_br:J_heart_inlet", + "16862": "flow:RCR_aorta_br:J_heart_inlet", + "16863": "flow:RCR_aorta_br:J_heart_inlet", + "16864": "flow:RCR_aorta_br:J_heart_inlet", + "16865": "flow:RCR_aorta_br:J_heart_inlet", + "16866": "flow:RCR_aorta_br:J_heart_inlet", + "16867": "flow:RCR_aorta_br:J_heart_inlet", + "16868": "flow:RCR_aorta_br:J_heart_inlet", + "16869": "flow:RCR_aorta_br:J_heart_inlet", + "16870": "flow:RCR_aorta_br:J_heart_inlet", + "16871": "flow:RCR_aorta_br:J_heart_inlet", + "16872": "flow:RCR_aorta_br:J_heart_inlet", + "16873": "flow:RCR_aorta_br:J_heart_inlet", + "16874": "flow:RCR_aorta_br:J_heart_inlet", + "16875": "flow:RCR_aorta_br:J_heart_inlet", + "16876": "flow:RCR_aorta_br:J_heart_inlet", + "16877": "flow:RCR_aorta_br:J_heart_inlet", + "16878": "flow:RCR_aorta_br:J_heart_inlet", + "16879": "flow:RCR_aorta_br:J_heart_inlet", + "16880": "flow:RCR_aorta_br:J_heart_inlet", + "16881": "flow:RCR_aorta_br:J_heart_inlet", + "16882": "flow:RCR_aorta_br:J_heart_inlet", + "16883": "flow:RCR_aorta_br:J_heart_inlet", + "16884": "flow:RCR_aorta_br:J_heart_inlet", + "16885": "flow:RCR_aorta_br:J_heart_inlet", + "16886": "flow:RCR_aorta_br:J_heart_inlet", + "16887": "flow:RCR_aorta_br:J_heart_inlet", + "16888": "flow:RCR_aorta_br:J_heart_inlet", + "16889": "flow:RCR_aorta_br:J_heart_inlet", + "16890": "flow:RCR_aorta_br:J_heart_inlet", + "16891": "flow:RCR_aorta_br:J_heart_inlet", + "16892": "flow:RCR_aorta_br:J_heart_inlet", + "16893": "flow:RCR_aorta_br:J_heart_inlet", + "16894": "flow:RCR_aorta_br:J_heart_inlet", + "16895": "flow:RCR_aorta_br:J_heart_inlet", + "16896": "flow:RCR_aorta_br:J_heart_inlet", + "16897": "flow:RCR_aorta_br:J_heart_inlet", + "16898": "flow:RCR_aorta_br:J_heart_inlet", + "16899": "flow:RCR_aorta_br:J_heart_inlet", + "16900": "flow:RCR_aorta_br:J_heart_inlet", + "16901": "flow:RCR_aorta_br:J_heart_inlet", + "16902": "flow:RCR_aorta_br:J_heart_inlet", + "16903": "flow:RCR_aorta_br:J_heart_inlet", + "16904": "flow:RCR_aorta_br:J_heart_inlet", + "16905": "flow:RCR_aorta_br:J_heart_inlet", + "16906": "flow:RCR_aorta_br:J_heart_inlet", + "16907": "flow:RCR_aorta_br:J_heart_inlet", + "16908": "flow:RCR_aorta_br:J_heart_inlet", + "16909": "flow:RCR_aorta_br:J_heart_inlet", + "16910": "flow:RCR_aorta_br:J_heart_inlet", + "16911": "flow:RCR_aorta_br:J_heart_inlet", + "16912": "flow:RCR_aorta_br:J_heart_inlet", + "16913": "flow:RCR_aorta_br:J_heart_inlet", + "16914": "flow:RCR_aorta_br:J_heart_inlet", + "16915": "flow:RCR_aorta_br:J_heart_inlet", + "16916": "flow:RCR_aorta_br:J_heart_inlet", + "16917": "flow:RCR_aorta_br:J_heart_inlet", + "16918": "flow:RCR_aorta_br:J_heart_inlet", + "16919": "flow:RCR_aorta_br:J_heart_inlet", + "16920": "flow:RCR_aorta_br:J_heart_inlet", + "16921": "flow:RCR_aorta_br:J_heart_inlet", + "16922": "flow:RCR_aorta_br:J_heart_inlet", + "16923": "flow:RCR_aorta_br:J_heart_inlet", + "16924": "flow:RCR_aorta_br:J_heart_inlet", + "16925": "flow:RCR_aorta_br:J_heart_inlet", + "16926": "flow:RCR_aorta_br:J_heart_inlet", + "16927": "flow:RCR_aorta_br:J_heart_inlet", + "16928": "flow:RCR_aorta_br:J_heart_inlet", + "16929": "flow:RCR_aorta_br:J_heart_inlet", + "16930": "flow:RCR_aorta_br:J_heart_inlet", + "16931": "flow:RCR_aorta_br:J_heart_inlet", + "16932": "flow:RCR_aorta_br:J_heart_inlet", + "16933": "flow:RCR_aorta_br:J_heart_inlet", + "16934": "flow:RCR_aorta_br:J_heart_inlet", + "16935": "flow:RCR_aorta_br:J_heart_inlet", + "16936": "flow:RCR_aorta_br:J_heart_inlet", + "16937": "flow:RCR_aorta_br:J_heart_inlet", + "16938": "flow:RCR_aorta_br:J_heart_inlet", + "16939": "flow:RCR_aorta_br:J_heart_inlet", + "16940": "flow:RCR_aorta_br:J_heart_inlet", + "16941": "flow:RCR_aorta_br:J_heart_inlet", + "16942": "flow:RCR_aorta_br:J_heart_inlet", + "16943": "flow:RCR_aorta_br:J_heart_inlet", + "16944": "flow:RCR_aorta_br:J_heart_inlet", + "16945": "flow:RCR_aorta_br:J_heart_inlet", + "16946": "flow:RCR_aorta_br:J_heart_inlet", + "16947": "flow:RCR_aorta_br:J_heart_inlet", + "16948": "flow:RCR_aorta_br:J_heart_inlet", + "16949": "flow:RCR_aorta_br:J_heart_inlet", + "16950": "flow:RCR_aorta_br:J_heart_inlet", + "16951": "flow:RCR_aorta_br:J_heart_inlet", + "16952": "flow:RCR_aorta_br:J_heart_inlet", + "16953": "flow:RCR_aorta_br:J_heart_inlet", + "16954": "flow:RCR_aorta_br:J_heart_inlet", + "16955": "flow:RCR_aorta_br:J_heart_inlet", + "16956": "flow:RCR_aorta_br:J_heart_inlet", + "16957": "flow:RCR_aorta_br:J_heart_inlet", + "16958": "flow:RCR_aorta_br:J_heart_inlet", + "16959": "flow:RCR_aorta_br:J_heart_inlet", + "16960": "flow:RCR_aorta_br:J_heart_inlet", + "16961": "flow:RCR_aorta_br:J_heart_inlet", + "16962": "flow:RCR_aorta_br:J_heart_inlet", + "16963": "flow:RCR_aorta_br:J_heart_inlet", + "16964": "flow:RCR_aorta_br:J_heart_inlet", + "16965": "flow:RCR_aorta_br:J_heart_inlet", + "16966": "flow:RCR_aorta_br:J_heart_inlet", + "16967": "flow:RCR_aorta_br:J_heart_inlet", + "16968": "flow:RCR_aorta_br:J_heart_inlet", + "16969": "flow:RCR_aorta_br:J_heart_inlet", + "16970": "flow:RCR_aorta_br:J_heart_inlet", + "16971": "flow:RCR_aorta_br:J_heart_inlet", + "16972": "flow:RCR_aorta_br:J_heart_inlet", + "16973": "flow:RCR_aorta_br:J_heart_inlet", + "16974": "flow:RCR_aorta_br:J_heart_inlet", + "16975": "flow:RCR_aorta_br:J_heart_inlet", + "16976": "flow:RCR_aorta_br:J_heart_inlet", + "16977": "flow:RCR_aorta_br:J_heart_inlet", + "16978": "flow:RCR_aorta_br:J_heart_inlet", + "16979": "flow:RCR_aorta_br:J_heart_inlet", + "16980": "flow:RCR_aorta_br:J_heart_inlet", + "16981": "flow:RCR_aorta_br:J_heart_inlet", + "16982": "flow:RCR_aorta_br:J_heart_inlet", + "16983": "flow:RCR_aorta_br:J_heart_inlet", + "16984": "flow:RCR_aorta_br:J_heart_inlet", + "16985": "flow:RCR_aorta_br:J_heart_inlet", + "16986": "flow:RCR_aorta_br:J_heart_inlet", + "16987": "flow:RCR_aorta_br:J_heart_inlet", + "16988": "flow:RCR_aorta_br:J_heart_inlet", + "16989": "flow:RCR_aorta_br:J_heart_inlet", + "16990": "flow:RCR_aorta_br:J_heart_inlet", + "16991": "flow:RCR_aorta_br:J_heart_inlet", + "16992": "flow:RCR_aorta_br:J_heart_inlet", + "16993": "flow:RCR_aorta_br:J_heart_inlet", + "16994": "flow:RCR_aorta_br:J_heart_inlet", + "16995": "flow:RCR_aorta_br:J_heart_inlet", + "16996": "flow:RCR_aorta_br:J_heart_inlet", + "16997": "flow:RCR_aorta_br:J_heart_inlet", + "16998": "flow:RCR_aorta_br:J_heart_inlet", + "16999": "flow:RCR_aorta_br:J_heart_inlet", + "17000": "pressure:RCR_aorta_br:J_heart_inlet", + "17001": "pressure:RCR_aorta_br:J_heart_inlet", + "17002": "pressure:RCR_aorta_br:J_heart_inlet", + "17003": "pressure:RCR_aorta_br:J_heart_inlet", + "17004": "pressure:RCR_aorta_br:J_heart_inlet", + "17005": "pressure:RCR_aorta_br:J_heart_inlet", + "17006": "pressure:RCR_aorta_br:J_heart_inlet", + "17007": "pressure:RCR_aorta_br:J_heart_inlet", + "17008": "pressure:RCR_aorta_br:J_heart_inlet", + "17009": "pressure:RCR_aorta_br:J_heart_inlet", + "17010": "pressure:RCR_aorta_br:J_heart_inlet", + "17011": "pressure:RCR_aorta_br:J_heart_inlet", + "17012": "pressure:RCR_aorta_br:J_heart_inlet", + "17013": "pressure:RCR_aorta_br:J_heart_inlet", + "17014": "pressure:RCR_aorta_br:J_heart_inlet", + "17015": "pressure:RCR_aorta_br:J_heart_inlet", + "17016": "pressure:RCR_aorta_br:J_heart_inlet", + "17017": "pressure:RCR_aorta_br:J_heart_inlet", + "17018": "pressure:RCR_aorta_br:J_heart_inlet", + "17019": "pressure:RCR_aorta_br:J_heart_inlet", + "17020": "pressure:RCR_aorta_br:J_heart_inlet", + "17021": "pressure:RCR_aorta_br:J_heart_inlet", + "17022": "pressure:RCR_aorta_br:J_heart_inlet", + "17023": "pressure:RCR_aorta_br:J_heart_inlet", + "17024": "pressure:RCR_aorta_br:J_heart_inlet", + "17025": "pressure:RCR_aorta_br:J_heart_inlet", + "17026": "pressure:RCR_aorta_br:J_heart_inlet", + "17027": "pressure:RCR_aorta_br:J_heart_inlet", + "17028": "pressure:RCR_aorta_br:J_heart_inlet", + "17029": "pressure:RCR_aorta_br:J_heart_inlet", + "17030": "pressure:RCR_aorta_br:J_heart_inlet", + "17031": "pressure:RCR_aorta_br:J_heart_inlet", + "17032": "pressure:RCR_aorta_br:J_heart_inlet", + "17033": "pressure:RCR_aorta_br:J_heart_inlet", + "17034": "pressure:RCR_aorta_br:J_heart_inlet", + "17035": "pressure:RCR_aorta_br:J_heart_inlet", + "17036": "pressure:RCR_aorta_br:J_heart_inlet", + "17037": "pressure:RCR_aorta_br:J_heart_inlet", + "17038": "pressure:RCR_aorta_br:J_heart_inlet", + "17039": "pressure:RCR_aorta_br:J_heart_inlet", + "17040": "pressure:RCR_aorta_br:J_heart_inlet", + "17041": "pressure:RCR_aorta_br:J_heart_inlet", + "17042": "pressure:RCR_aorta_br:J_heart_inlet", + "17043": "pressure:RCR_aorta_br:J_heart_inlet", + "17044": "pressure:RCR_aorta_br:J_heart_inlet", + "17045": "pressure:RCR_aorta_br:J_heart_inlet", + "17046": "pressure:RCR_aorta_br:J_heart_inlet", + "17047": "pressure:RCR_aorta_br:J_heart_inlet", + "17048": "pressure:RCR_aorta_br:J_heart_inlet", + "17049": "pressure:RCR_aorta_br:J_heart_inlet", + "17050": "pressure:RCR_aorta_br:J_heart_inlet", + "17051": "pressure:RCR_aorta_br:J_heart_inlet", + "17052": "pressure:RCR_aorta_br:J_heart_inlet", + "17053": "pressure:RCR_aorta_br:J_heart_inlet", + "17054": "pressure:RCR_aorta_br:J_heart_inlet", + "17055": "pressure:RCR_aorta_br:J_heart_inlet", + "17056": "pressure:RCR_aorta_br:J_heart_inlet", + "17057": "pressure:RCR_aorta_br:J_heart_inlet", + "17058": "pressure:RCR_aorta_br:J_heart_inlet", + "17059": "pressure:RCR_aorta_br:J_heart_inlet", + "17060": "pressure:RCR_aorta_br:J_heart_inlet", + "17061": "pressure:RCR_aorta_br:J_heart_inlet", + "17062": "pressure:RCR_aorta_br:J_heart_inlet", + "17063": "pressure:RCR_aorta_br:J_heart_inlet", + "17064": "pressure:RCR_aorta_br:J_heart_inlet", + "17065": "pressure:RCR_aorta_br:J_heart_inlet", + "17066": "pressure:RCR_aorta_br:J_heart_inlet", + "17067": "pressure:RCR_aorta_br:J_heart_inlet", + "17068": "pressure:RCR_aorta_br:J_heart_inlet", + "17069": "pressure:RCR_aorta_br:J_heart_inlet", + "17070": "pressure:RCR_aorta_br:J_heart_inlet", + "17071": "pressure:RCR_aorta_br:J_heart_inlet", + "17072": "pressure:RCR_aorta_br:J_heart_inlet", + "17073": "pressure:RCR_aorta_br:J_heart_inlet", + "17074": "pressure:RCR_aorta_br:J_heart_inlet", + "17075": "pressure:RCR_aorta_br:J_heart_inlet", + "17076": "pressure:RCR_aorta_br:J_heart_inlet", + "17077": "pressure:RCR_aorta_br:J_heart_inlet", + "17078": "pressure:RCR_aorta_br:J_heart_inlet", + "17079": "pressure:RCR_aorta_br:J_heart_inlet", + "17080": "pressure:RCR_aorta_br:J_heart_inlet", + "17081": "pressure:RCR_aorta_br:J_heart_inlet", + "17082": "pressure:RCR_aorta_br:J_heart_inlet", + "17083": "pressure:RCR_aorta_br:J_heart_inlet", + "17084": "pressure:RCR_aorta_br:J_heart_inlet", + "17085": "pressure:RCR_aorta_br:J_heart_inlet", + "17086": "pressure:RCR_aorta_br:J_heart_inlet", + "17087": "pressure:RCR_aorta_br:J_heart_inlet", + "17088": "pressure:RCR_aorta_br:J_heart_inlet", + "17089": "pressure:RCR_aorta_br:J_heart_inlet", + "17090": "pressure:RCR_aorta_br:J_heart_inlet", + "17091": "pressure:RCR_aorta_br:J_heart_inlet", + "17092": "pressure:RCR_aorta_br:J_heart_inlet", + "17093": "pressure:RCR_aorta_br:J_heart_inlet", + "17094": "pressure:RCR_aorta_br:J_heart_inlet", + "17095": "pressure:RCR_aorta_br:J_heart_inlet", + "17096": "pressure:RCR_aorta_br:J_heart_inlet", + "17097": "pressure:RCR_aorta_br:J_heart_inlet", + "17098": "pressure:RCR_aorta_br:J_heart_inlet", + "17099": "pressure:RCR_aorta_br:J_heart_inlet", + "17100": "pressure:RCR_aorta_br:J_heart_inlet", + "17101": "pressure:RCR_aorta_br:J_heart_inlet", + "17102": "pressure:RCR_aorta_br:J_heart_inlet", + "17103": "pressure:RCR_aorta_br:J_heart_inlet", + "17104": "pressure:RCR_aorta_br:J_heart_inlet", + "17105": "pressure:RCR_aorta_br:J_heart_inlet", + "17106": "pressure:RCR_aorta_br:J_heart_inlet", + "17107": "pressure:RCR_aorta_br:J_heart_inlet", + "17108": "pressure:RCR_aorta_br:J_heart_inlet", + "17109": "pressure:RCR_aorta_br:J_heart_inlet", + "17110": "pressure:RCR_aorta_br:J_heart_inlet", + "17111": "pressure:RCR_aorta_br:J_heart_inlet", + "17112": "pressure:RCR_aorta_br:J_heart_inlet", + "17113": "pressure:RCR_aorta_br:J_heart_inlet", + "17114": "pressure:RCR_aorta_br:J_heart_inlet", + "17115": "pressure:RCR_aorta_br:J_heart_inlet", + "17116": "pressure:RCR_aorta_br:J_heart_inlet", + "17117": "pressure:RCR_aorta_br:J_heart_inlet", + "17118": "pressure:RCR_aorta_br:J_heart_inlet", + "17119": "pressure:RCR_aorta_br:J_heart_inlet", + "17120": "pressure:RCR_aorta_br:J_heart_inlet", + "17121": "pressure:RCR_aorta_br:J_heart_inlet", + "17122": "pressure:RCR_aorta_br:J_heart_inlet", + "17123": "pressure:RCR_aorta_br:J_heart_inlet", + "17124": "pressure:RCR_aorta_br:J_heart_inlet", + "17125": "pressure:RCR_aorta_br:J_heart_inlet", + "17126": "pressure:RCR_aorta_br:J_heart_inlet", + "17127": "pressure:RCR_aorta_br:J_heart_inlet", + "17128": "pressure:RCR_aorta_br:J_heart_inlet", + "17129": "pressure:RCR_aorta_br:J_heart_inlet", + "17130": "pressure:RCR_aorta_br:J_heart_inlet", + "17131": "pressure:RCR_aorta_br:J_heart_inlet", + "17132": "pressure:RCR_aorta_br:J_heart_inlet", + "17133": "pressure:RCR_aorta_br:J_heart_inlet", + "17134": "pressure:RCR_aorta_br:J_heart_inlet", + "17135": "pressure:RCR_aorta_br:J_heart_inlet", + "17136": "pressure:RCR_aorta_br:J_heart_inlet", + "17137": "pressure:RCR_aorta_br:J_heart_inlet", + "17138": "pressure:RCR_aorta_br:J_heart_inlet", + "17139": "pressure:RCR_aorta_br:J_heart_inlet", + "17140": "pressure:RCR_aorta_br:J_heart_inlet", + "17141": "pressure:RCR_aorta_br:J_heart_inlet", + "17142": "pressure:RCR_aorta_br:J_heart_inlet", + "17143": "pressure:RCR_aorta_br:J_heart_inlet", + "17144": "pressure:RCR_aorta_br:J_heart_inlet", + "17145": "pressure:RCR_aorta_br:J_heart_inlet", + "17146": "pressure:RCR_aorta_br:J_heart_inlet", + "17147": "pressure:RCR_aorta_br:J_heart_inlet", + "17148": "pressure:RCR_aorta_br:J_heart_inlet", + "17149": "pressure:RCR_aorta_br:J_heart_inlet", + "17150": "pressure:RCR_aorta_br:J_heart_inlet", + "17151": "pressure:RCR_aorta_br:J_heart_inlet", + "17152": "pressure:RCR_aorta_br:J_heart_inlet", + "17153": "pressure:RCR_aorta_br:J_heart_inlet", + "17154": "pressure:RCR_aorta_br:J_heart_inlet", + "17155": "pressure:RCR_aorta_br:J_heart_inlet", + "17156": "pressure:RCR_aorta_br:J_heart_inlet", + "17157": "pressure:RCR_aorta_br:J_heart_inlet", + "17158": "pressure:RCR_aorta_br:J_heart_inlet", + "17159": "pressure:RCR_aorta_br:J_heart_inlet", + "17160": "pressure:RCR_aorta_br:J_heart_inlet", + "17161": "pressure:RCR_aorta_br:J_heart_inlet", + "17162": "pressure:RCR_aorta_br:J_heart_inlet", + "17163": "pressure:RCR_aorta_br:J_heart_inlet", + "17164": "pressure:RCR_aorta_br:J_heart_inlet", + "17165": "pressure:RCR_aorta_br:J_heart_inlet", + "17166": "pressure:RCR_aorta_br:J_heart_inlet", + "17167": "pressure:RCR_aorta_br:J_heart_inlet", + "17168": "pressure:RCR_aorta_br:J_heart_inlet", + "17169": "pressure:RCR_aorta_br:J_heart_inlet", + "17170": "pressure:RCR_aorta_br:J_heart_inlet", + "17171": "pressure:RCR_aorta_br:J_heart_inlet", + "17172": "pressure:RCR_aorta_br:J_heart_inlet", + "17173": "pressure:RCR_aorta_br:J_heart_inlet", + "17174": "pressure:RCR_aorta_br:J_heart_inlet", + "17175": "pressure:RCR_aorta_br:J_heart_inlet", + "17176": "pressure:RCR_aorta_br:J_heart_inlet", + "17177": "pressure:RCR_aorta_br:J_heart_inlet", + "17178": "pressure:RCR_aorta_br:J_heart_inlet", + "17179": "pressure:RCR_aorta_br:J_heart_inlet", + "17180": "pressure:RCR_aorta_br:J_heart_inlet", + "17181": "pressure:RCR_aorta_br:J_heart_inlet", + "17182": "pressure:RCR_aorta_br:J_heart_inlet", + "17183": "pressure:RCR_aorta_br:J_heart_inlet", + "17184": "pressure:RCR_aorta_br:J_heart_inlet", + "17185": "pressure:RCR_aorta_br:J_heart_inlet", + "17186": "pressure:RCR_aorta_br:J_heart_inlet", + "17187": "pressure:RCR_aorta_br:J_heart_inlet", + "17188": "pressure:RCR_aorta_br:J_heart_inlet", + "17189": "pressure:RCR_aorta_br:J_heart_inlet", + "17190": "pressure:RCR_aorta_br:J_heart_inlet", + "17191": "pressure:RCR_aorta_br:J_heart_inlet", + "17192": "pressure:RCR_aorta_br:J_heart_inlet", + "17193": "pressure:RCR_aorta_br:J_heart_inlet", + "17194": "pressure:RCR_aorta_br:J_heart_inlet", + "17195": "pressure:RCR_aorta_br:J_heart_inlet", + "17196": "pressure:RCR_aorta_br:J_heart_inlet", + "17197": "pressure:RCR_aorta_br:J_heart_inlet", + "17198": "pressure:RCR_aorta_br:J_heart_inlet", + "17199": "pressure:RCR_aorta_br:J_heart_inlet", + "17200": "pressure:RCR_aorta_br:J_heart_inlet", + "17201": "pressure:RCR_aorta_br:J_heart_inlet", + "17202": "pressure:RCR_aorta_br:J_heart_inlet", + "17203": "pressure:RCR_aorta_br:J_heart_inlet", + "17204": "pressure:RCR_aorta_br:J_heart_inlet", + "17205": "pressure:RCR_aorta_br:J_heart_inlet", + "17206": "pressure:RCR_aorta_br:J_heart_inlet", + "17207": "pressure:RCR_aorta_br:J_heart_inlet", + "17208": "pressure:RCR_aorta_br:J_heart_inlet", + "17209": "pressure:RCR_aorta_br:J_heart_inlet", + "17210": "pressure:RCR_aorta_br:J_heart_inlet", + "17211": "pressure:RCR_aorta_br:J_heart_inlet", + "17212": "pressure:RCR_aorta_br:J_heart_inlet", + "17213": "pressure:RCR_aorta_br:J_heart_inlet", + "17214": "pressure:RCR_aorta_br:J_heart_inlet", + "17215": "pressure:RCR_aorta_br:J_heart_inlet", + "17216": "pressure:RCR_aorta_br:J_heart_inlet", + "17217": "pressure:RCR_aorta_br:J_heart_inlet", + "17218": "pressure:RCR_aorta_br:J_heart_inlet", + "17219": "pressure:RCR_aorta_br:J_heart_inlet", + "17220": "pressure:RCR_aorta_br:J_heart_inlet", + "17221": "pressure:RCR_aorta_br:J_heart_inlet", + "17222": "pressure:RCR_aorta_br:J_heart_inlet", + "17223": "pressure:RCR_aorta_br:J_heart_inlet", + "17224": "pressure:RCR_aorta_br:J_heart_inlet", + "17225": "pressure:RCR_aorta_br:J_heart_inlet", + "17226": "pressure:RCR_aorta_br:J_heart_inlet", + "17227": "pressure:RCR_aorta_br:J_heart_inlet", + "17228": "pressure:RCR_aorta_br:J_heart_inlet", + "17229": "pressure:RCR_aorta_br:J_heart_inlet", + "17230": "pressure:RCR_aorta_br:J_heart_inlet", + "17231": "pressure:RCR_aorta_br:J_heart_inlet", + "17232": "pressure:RCR_aorta_br:J_heart_inlet", + "17233": "pressure:RCR_aorta_br:J_heart_inlet", + "17234": "pressure:RCR_aorta_br:J_heart_inlet", + "17235": "pressure:RCR_aorta_br:J_heart_inlet", + "17236": "pressure:RCR_aorta_br:J_heart_inlet", + "17237": "pressure:RCR_aorta_br:J_heart_inlet", + "17238": "pressure:RCR_aorta_br:J_heart_inlet", + "17239": "pressure:RCR_aorta_br:J_heart_inlet", + "17240": "pressure:RCR_aorta_br:J_heart_inlet", + "17241": "pressure:RCR_aorta_br:J_heart_inlet", + "17242": "pressure:RCR_aorta_br:J_heart_inlet", + "17243": "pressure:RCR_aorta_br:J_heart_inlet", + "17244": "pressure:RCR_aorta_br:J_heart_inlet", + "17245": "pressure:RCR_aorta_br:J_heart_inlet", + "17246": "pressure:RCR_aorta_br:J_heart_inlet", + "17247": "pressure:RCR_aorta_br:J_heart_inlet", + "17248": "pressure:RCR_aorta_br:J_heart_inlet", + "17249": "pressure:RCR_aorta_br:J_heart_inlet", + "17250": "pressure:RCR_aorta_br:J_heart_inlet", + "17251": "pressure:RCR_aorta_br:J_heart_inlet", + "17252": "pressure:RCR_aorta_br:J_heart_inlet", + "17253": "pressure:RCR_aorta_br:J_heart_inlet", + "17254": "pressure:RCR_aorta_br:J_heart_inlet", + "17255": "pressure:RCR_aorta_br:J_heart_inlet", + "17256": "pressure:RCR_aorta_br:J_heart_inlet", + "17257": "pressure:RCR_aorta_br:J_heart_inlet", + "17258": "pressure:RCR_aorta_br:J_heart_inlet", + "17259": "pressure:RCR_aorta_br:J_heart_inlet", + "17260": "pressure:RCR_aorta_br:J_heart_inlet", + "17261": "pressure:RCR_aorta_br:J_heart_inlet", + "17262": "pressure:RCR_aorta_br:J_heart_inlet", + "17263": "pressure:RCR_aorta_br:J_heart_inlet", + "17264": "pressure:RCR_aorta_br:J_heart_inlet", + "17265": "pressure:RCR_aorta_br:J_heart_inlet", + "17266": "pressure:RCR_aorta_br:J_heart_inlet", + "17267": "pressure:RCR_aorta_br:J_heart_inlet", + "17268": "pressure:RCR_aorta_br:J_heart_inlet", + "17269": "pressure:RCR_aorta_br:J_heart_inlet", + "17270": "pressure:RCR_aorta_br:J_heart_inlet", + "17271": "pressure:RCR_aorta_br:J_heart_inlet", + "17272": "pressure:RCR_aorta_br:J_heart_inlet", + "17273": "pressure:RCR_aorta_br:J_heart_inlet", + "17274": "pressure:RCR_aorta_br:J_heart_inlet", + "17275": "pressure:RCR_aorta_br:J_heart_inlet", + "17276": "pressure:RCR_aorta_br:J_heart_inlet", + "17277": "pressure:RCR_aorta_br:J_heart_inlet", + "17278": "pressure:RCR_aorta_br:J_heart_inlet", + "17279": "pressure:RCR_aorta_br:J_heart_inlet", + "17280": "pressure:RCR_aorta_br:J_heart_inlet", + "17281": "pressure:RCR_aorta_br:J_heart_inlet", + "17282": "pressure:RCR_aorta_br:J_heart_inlet", + "17283": "pressure:RCR_aorta_br:J_heart_inlet", + "17284": "pressure:RCR_aorta_br:J_heart_inlet", + "17285": "pressure:RCR_aorta_br:J_heart_inlet", + "17286": "pressure:RCR_aorta_br:J_heart_inlet", + "17287": "pressure:RCR_aorta_br:J_heart_inlet", + "17288": "pressure:RCR_aorta_br:J_heart_inlet", + "17289": "pressure:RCR_aorta_br:J_heart_inlet", + "17290": "pressure:RCR_aorta_br:J_heart_inlet", + "17291": "pressure:RCR_aorta_br:J_heart_inlet", + "17292": "pressure:RCR_aorta_br:J_heart_inlet", + "17293": "pressure:RCR_aorta_br:J_heart_inlet", + "17294": "pressure:RCR_aorta_br:J_heart_inlet", + "17295": "pressure:RCR_aorta_br:J_heart_inlet", + "17296": "pressure:RCR_aorta_br:J_heart_inlet", + "17297": "pressure:RCR_aorta_br:J_heart_inlet", + "17298": "pressure:RCR_aorta_br:J_heart_inlet", + "17299": "pressure:RCR_aorta_br:J_heart_inlet", + "17300": "pressure:RCR_aorta_br:J_heart_inlet", + "17301": "pressure:RCR_aorta_br:J_heart_inlet", + "17302": "pressure:RCR_aorta_br:J_heart_inlet", + "17303": "pressure:RCR_aorta_br:J_heart_inlet", + "17304": "pressure:RCR_aorta_br:J_heart_inlet", + "17305": "pressure:RCR_aorta_br:J_heart_inlet", + "17306": "pressure:RCR_aorta_br:J_heart_inlet", + "17307": "pressure:RCR_aorta_br:J_heart_inlet", + "17308": "pressure:RCR_aorta_br:J_heart_inlet", + "17309": "pressure:RCR_aorta_br:J_heart_inlet", + "17310": "pressure:RCR_aorta_br:J_heart_inlet", + "17311": "pressure:RCR_aorta_br:J_heart_inlet", + "17312": "pressure:RCR_aorta_br:J_heart_inlet", + "17313": "pressure:RCR_aorta_br:J_heart_inlet", + "17314": "pressure:RCR_aorta_br:J_heart_inlet", + "17315": "pressure:RCR_aorta_br:J_heart_inlet", + "17316": "pressure:RCR_aorta_br:J_heart_inlet", + "17317": "pressure:RCR_aorta_br:J_heart_inlet", + "17318": "pressure:RCR_aorta_br:J_heart_inlet", + "17319": "pressure:RCR_aorta_br:J_heart_inlet", + "17320": "pressure:RCR_aorta_br:J_heart_inlet", + "17321": "pressure:RCR_aorta_br:J_heart_inlet", + "17322": "pressure:RCR_aorta_br:J_heart_inlet", + "17323": "pressure:RCR_aorta_br:J_heart_inlet", + "17324": "pressure:RCR_aorta_br:J_heart_inlet", + "17325": "pressure:RCR_aorta_br:J_heart_inlet", + "17326": "pressure:RCR_aorta_br:J_heart_inlet", + "17327": "pressure:RCR_aorta_br:J_heart_inlet", + "17328": "pressure:RCR_aorta_br:J_heart_inlet", + "17329": "pressure:RCR_aorta_br:J_heart_inlet", + "17330": "pressure:RCR_aorta_br:J_heart_inlet", + "17331": "pressure:RCR_aorta_br:J_heart_inlet", + "17332": "pressure:RCR_aorta_br:J_heart_inlet", + "17333": "pressure:RCR_aorta_br:J_heart_inlet", + "17334": "pressure:RCR_aorta_br:J_heart_inlet", + "17335": "pressure:RCR_aorta_br:J_heart_inlet", + "17336": "pressure:RCR_aorta_br:J_heart_inlet", + "17337": "pressure:RCR_aorta_br:J_heart_inlet", + "17338": "pressure:RCR_aorta_br:J_heart_inlet", + "17339": "pressure:RCR_aorta_br:J_heart_inlet", + "17340": "pressure:RCR_aorta_br:J_heart_inlet", + "17341": "pressure:RCR_aorta_br:J_heart_inlet", + "17342": "pressure:RCR_aorta_br:J_heart_inlet", + "17343": "pressure:RCR_aorta_br:J_heart_inlet", + "17344": "pressure:RCR_aorta_br:J_heart_inlet", + "17345": "pressure:RCR_aorta_br:J_heart_inlet", + "17346": "pressure:RCR_aorta_br:J_heart_inlet", + "17347": "pressure:RCR_aorta_br:J_heart_inlet", + "17348": "pressure:RCR_aorta_br:J_heart_inlet", + "17349": "pressure:RCR_aorta_br:J_heart_inlet", + "17350": "pressure:RCR_aorta_br:J_heart_inlet", + "17351": "pressure:RCR_aorta_br:J_heart_inlet", + "17352": "pressure:RCR_aorta_br:J_heart_inlet", + "17353": "pressure:RCR_aorta_br:J_heart_inlet", + "17354": "pressure:RCR_aorta_br:J_heart_inlet", + "17355": "pressure:RCR_aorta_br:J_heart_inlet", + "17356": "pressure:RCR_aorta_br:J_heart_inlet", + "17357": "pressure:RCR_aorta_br:J_heart_inlet", + "17358": "pressure:RCR_aorta_br:J_heart_inlet", + "17359": "pressure:RCR_aorta_br:J_heart_inlet", + "17360": "pressure:RCR_aorta_br:J_heart_inlet", + "17361": "pressure:RCR_aorta_br:J_heart_inlet", + "17362": "pressure:RCR_aorta_br:J_heart_inlet", + "17363": "pressure:RCR_aorta_br:J_heart_inlet", + "17364": "pressure:RCR_aorta_br:J_heart_inlet", + "17365": "pressure:RCR_aorta_br:J_heart_inlet", + "17366": "pressure:RCR_aorta_br:J_heart_inlet", + "17367": "pressure:RCR_aorta_br:J_heart_inlet", + "17368": "pressure:RCR_aorta_br:J_heart_inlet", + "17369": "pressure:RCR_aorta_br:J_heart_inlet", + "17370": "pressure:RCR_aorta_br:J_heart_inlet", + "17371": "pressure:RCR_aorta_br:J_heart_inlet", + "17372": "pressure:RCR_aorta_br:J_heart_inlet", + "17373": "pressure:RCR_aorta_br:J_heart_inlet", + "17374": "pressure:RCR_aorta_br:J_heart_inlet", + "17375": "pressure:RCR_aorta_br:J_heart_inlet", + "17376": "pressure:RCR_aorta_br:J_heart_inlet", + "17377": "pressure:RCR_aorta_br:J_heart_inlet", + "17378": "pressure:RCR_aorta_br:J_heart_inlet", + "17379": "pressure:RCR_aorta_br:J_heart_inlet", + "17380": "pressure:RCR_aorta_br:J_heart_inlet", + "17381": "pressure:RCR_aorta_br:J_heart_inlet", + "17382": "pressure:RCR_aorta_br:J_heart_inlet", + "17383": "pressure:RCR_aorta_br:J_heart_inlet", + "17384": "pressure:RCR_aorta_br:J_heart_inlet", + "17385": "pressure:RCR_aorta_br:J_heart_inlet", + "17386": "pressure:RCR_aorta_br:J_heart_inlet", + "17387": "pressure:RCR_aorta_br:J_heart_inlet", + "17388": "pressure:RCR_aorta_br:J_heart_inlet", + "17389": "pressure:RCR_aorta_br:J_heart_inlet", + "17390": "pressure:RCR_aorta_br:J_heart_inlet", + "17391": "pressure:RCR_aorta_br:J_heart_inlet", + "17392": "pressure:RCR_aorta_br:J_heart_inlet", + "17393": "pressure:RCR_aorta_br:J_heart_inlet", + "17394": "pressure:RCR_aorta_br:J_heart_inlet", + "17395": "pressure:RCR_aorta_br:J_heart_inlet", + "17396": "pressure:RCR_aorta_br:J_heart_inlet", + "17397": "pressure:RCR_aorta_br:J_heart_inlet", + "17398": "pressure:RCR_aorta_br:J_heart_inlet", + "17399": "pressure:RCR_aorta_br:J_heart_inlet", + "17400": "pressure:RCR_aorta_br:J_heart_inlet", + "17401": "pressure:RCR_aorta_br:J_heart_inlet", + "17402": "pressure:RCR_aorta_br:J_heart_inlet", + "17403": "pressure:RCR_aorta_br:J_heart_inlet", + "17404": "pressure:RCR_aorta_br:J_heart_inlet", + "17405": "pressure:RCR_aorta_br:J_heart_inlet", + "17406": "pressure:RCR_aorta_br:J_heart_inlet", + "17407": "pressure:RCR_aorta_br:J_heart_inlet", + "17408": "pressure:RCR_aorta_br:J_heart_inlet", + "17409": "pressure:RCR_aorta_br:J_heart_inlet", + "17410": "pressure:RCR_aorta_br:J_heart_inlet", + "17411": "pressure:RCR_aorta_br:J_heart_inlet", + "17412": "pressure:RCR_aorta_br:J_heart_inlet", + "17413": "pressure:RCR_aorta_br:J_heart_inlet", + "17414": "pressure:RCR_aorta_br:J_heart_inlet", + "17415": "pressure:RCR_aorta_br:J_heart_inlet", + "17416": "pressure:RCR_aorta_br:J_heart_inlet", + "17417": "pressure:RCR_aorta_br:J_heart_inlet", + "17418": "pressure:RCR_aorta_br:J_heart_inlet", + "17419": "pressure:RCR_aorta_br:J_heart_inlet", + "17420": "pressure:RCR_aorta_br:J_heart_inlet", + "17421": "pressure:RCR_aorta_br:J_heart_inlet", + "17422": "pressure:RCR_aorta_br:J_heart_inlet", + "17423": "pressure:RCR_aorta_br:J_heart_inlet", + "17424": "pressure:RCR_aorta_br:J_heart_inlet", + "17425": "pressure:RCR_aorta_br:J_heart_inlet", + "17426": "pressure:RCR_aorta_br:J_heart_inlet", + "17427": "pressure:RCR_aorta_br:J_heart_inlet", + "17428": "pressure:RCR_aorta_br:J_heart_inlet", + "17429": "pressure:RCR_aorta_br:J_heart_inlet", + "17430": "pressure:RCR_aorta_br:J_heart_inlet", + "17431": "pressure:RCR_aorta_br:J_heart_inlet", + "17432": "pressure:RCR_aorta_br:J_heart_inlet", + "17433": "pressure:RCR_aorta_br:J_heart_inlet", + "17434": "pressure:RCR_aorta_br:J_heart_inlet", + "17435": "pressure:RCR_aorta_br:J_heart_inlet", + "17436": "pressure:RCR_aorta_br:J_heart_inlet", + "17437": "pressure:RCR_aorta_br:J_heart_inlet", + "17438": "pressure:RCR_aorta_br:J_heart_inlet", + "17439": "pressure:RCR_aorta_br:J_heart_inlet", + "17440": "pressure:RCR_aorta_br:J_heart_inlet", + "17441": "pressure:RCR_aorta_br:J_heart_inlet", + "17442": "pressure:RCR_aorta_br:J_heart_inlet", + "17443": "pressure:RCR_aorta_br:J_heart_inlet", + "17444": "pressure:RCR_aorta_br:J_heart_inlet", + "17445": "pressure:RCR_aorta_br:J_heart_inlet", + "17446": "pressure:RCR_aorta_br:J_heart_inlet", + "17447": "pressure:RCR_aorta_br:J_heart_inlet", + "17448": "pressure:RCR_aorta_br:J_heart_inlet", + "17449": "pressure:RCR_aorta_br:J_heart_inlet", + "17450": "pressure:RCR_aorta_br:J_heart_inlet", + "17451": "pressure:RCR_aorta_br:J_heart_inlet", + "17452": "pressure:RCR_aorta_br:J_heart_inlet", + "17453": "pressure:RCR_aorta_br:J_heart_inlet", + "17454": "pressure:RCR_aorta_br:J_heart_inlet", + "17455": "pressure:RCR_aorta_br:J_heart_inlet", + "17456": "pressure:RCR_aorta_br:J_heart_inlet", + "17457": "pressure:RCR_aorta_br:J_heart_inlet", + "17458": "pressure:RCR_aorta_br:J_heart_inlet", + "17459": "pressure:RCR_aorta_br:J_heart_inlet", + "17460": "pressure:RCR_aorta_br:J_heart_inlet", + "17461": "pressure:RCR_aorta_br:J_heart_inlet", + "17462": "pressure:RCR_aorta_br:J_heart_inlet", + "17463": "pressure:RCR_aorta_br:J_heart_inlet", + "17464": "pressure:RCR_aorta_br:J_heart_inlet", + "17465": "pressure:RCR_aorta_br:J_heart_inlet", + "17466": "pressure:RCR_aorta_br:J_heart_inlet", + "17467": "pressure:RCR_aorta_br:J_heart_inlet", + "17468": "pressure:RCR_aorta_br:J_heart_inlet", + "17469": "pressure:RCR_aorta_br:J_heart_inlet", + "17470": "pressure:RCR_aorta_br:J_heart_inlet", + "17471": "pressure:RCR_aorta_br:J_heart_inlet", + "17472": "pressure:RCR_aorta_br:J_heart_inlet", + "17473": "pressure:RCR_aorta_br:J_heart_inlet", + "17474": "pressure:RCR_aorta_br:J_heart_inlet", + "17475": "pressure:RCR_aorta_br:J_heart_inlet", + "17476": "pressure:RCR_aorta_br:J_heart_inlet", + "17477": "pressure:RCR_aorta_br:J_heart_inlet", + "17478": "pressure:RCR_aorta_br:J_heart_inlet", + "17479": "pressure:RCR_aorta_br:J_heart_inlet", + "17480": "pressure:RCR_aorta_br:J_heart_inlet", + "17481": "pressure:RCR_aorta_br:J_heart_inlet", + "17482": "pressure:RCR_aorta_br:J_heart_inlet", + "17483": "pressure:RCR_aorta_br:J_heart_inlet", + "17484": "pressure:RCR_aorta_br:J_heart_inlet", + "17485": "pressure:RCR_aorta_br:J_heart_inlet", + "17486": "pressure:RCR_aorta_br:J_heart_inlet", + "17487": "pressure:RCR_aorta_br:J_heart_inlet", + "17488": "pressure:RCR_aorta_br:J_heart_inlet", + "17489": "pressure:RCR_aorta_br:J_heart_inlet", + "17490": "pressure:RCR_aorta_br:J_heart_inlet", + "17491": "pressure:RCR_aorta_br:J_heart_inlet", + "17492": "pressure:RCR_aorta_br:J_heart_inlet", + "17493": "pressure:RCR_aorta_br:J_heart_inlet", + "17494": "pressure:RCR_aorta_br:J_heart_inlet", + "17495": "pressure:RCR_aorta_br:J_heart_inlet", + "17496": "pressure:RCR_aorta_br:J_heart_inlet", + "17497": "pressure:RCR_aorta_br:J_heart_inlet", + "17498": "pressure:RCR_aorta_br:J_heart_inlet", + "17499": "pressure:RCR_aorta_br:J_heart_inlet", + "17500": "pressure:RCR_aorta_br:J_heart_inlet", + "17501": "pressure:RCR_aorta_br:J_heart_inlet", + "17502": "pressure:RCR_aorta_br:J_heart_inlet", + "17503": "pressure:RCR_aorta_br:J_heart_inlet", + "17504": "pressure:RCR_aorta_br:J_heart_inlet", + "17505": "pressure:RCR_aorta_br:J_heart_inlet", + "17506": "pressure:RCR_aorta_br:J_heart_inlet", + "17507": "pressure:RCR_aorta_br:J_heart_inlet", + "17508": "pressure:RCR_aorta_br:J_heart_inlet", + "17509": "pressure:RCR_aorta_br:J_heart_inlet", + "17510": "pressure:RCR_aorta_br:J_heart_inlet", + "17511": "pressure:RCR_aorta_br:J_heart_inlet", + "17512": "pressure:RCR_aorta_br:J_heart_inlet", + "17513": "pressure:RCR_aorta_br:J_heart_inlet", + "17514": "pressure:RCR_aorta_br:J_heart_inlet", + "17515": "pressure:RCR_aorta_br:J_heart_inlet", + "17516": "pressure:RCR_aorta_br:J_heart_inlet", + "17517": "pressure:RCR_aorta_br:J_heart_inlet", + "17518": "pressure:RCR_aorta_br:J_heart_inlet", + "17519": "pressure:RCR_aorta_br:J_heart_inlet", + "17520": "pressure:RCR_aorta_br:J_heart_inlet", + "17521": "pressure:RCR_aorta_br:J_heart_inlet", + "17522": "pressure:RCR_aorta_br:J_heart_inlet", + "17523": "pressure:RCR_aorta_br:J_heart_inlet", + "17524": "pressure:RCR_aorta_br:J_heart_inlet", + "17525": "pressure:RCR_aorta_br:J_heart_inlet", + "17526": "pressure:RCR_aorta_br:J_heart_inlet", + "17527": "pressure:RCR_aorta_br:J_heart_inlet", + "17528": "pressure:RCR_aorta_br:J_heart_inlet", + "17529": "pressure:RCR_aorta_br:J_heart_inlet", + "17530": "pressure:RCR_aorta_br:J_heart_inlet", + "17531": "pressure:RCR_aorta_br:J_heart_inlet", + "17532": "pressure:RCR_aorta_br:J_heart_inlet", + "17533": "pressure:RCR_aorta_br:J_heart_inlet", + "17534": "pressure:RCR_aorta_br:J_heart_inlet", + "17535": "pressure:RCR_aorta_br:J_heart_inlet", + "17536": "pressure:RCR_aorta_br:J_heart_inlet", + "17537": "pressure:RCR_aorta_br:J_heart_inlet", + "17538": "pressure:RCR_aorta_br:J_heart_inlet", + "17539": "pressure:RCR_aorta_br:J_heart_inlet", + "17540": "pressure:RCR_aorta_br:J_heart_inlet", + "17541": "pressure:RCR_aorta_br:J_heart_inlet", + "17542": "pressure:RCR_aorta_br:J_heart_inlet", + "17543": "pressure:RCR_aorta_br:J_heart_inlet", + "17544": "pressure:RCR_aorta_br:J_heart_inlet", + "17545": "pressure:RCR_aorta_br:J_heart_inlet", + "17546": "pressure:RCR_aorta_br:J_heart_inlet", + "17547": "pressure:RCR_aorta_br:J_heart_inlet", + "17548": "pressure:RCR_aorta_br:J_heart_inlet", + "17549": "pressure:RCR_aorta_br:J_heart_inlet", + "17550": "pressure:RCR_aorta_br:J_heart_inlet", + "17551": "pressure:RCR_aorta_br:J_heart_inlet", + "17552": "pressure:RCR_aorta_br:J_heart_inlet", + "17553": "pressure:RCR_aorta_br:J_heart_inlet", + "17554": "pressure:RCR_aorta_br:J_heart_inlet", + "17555": "pressure:RCR_aorta_br:J_heart_inlet", + "17556": "pressure:RCR_aorta_br:J_heart_inlet", + "17557": "pressure:RCR_aorta_br:J_heart_inlet", + "17558": "pressure:RCR_aorta_br:J_heart_inlet", + "17559": "pressure:RCR_aorta_br:J_heart_inlet", + "17560": "pressure:RCR_aorta_br:J_heart_inlet", + "17561": "pressure:RCR_aorta_br:J_heart_inlet", + "17562": "pressure:RCR_aorta_br:J_heart_inlet", + "17563": "pressure:RCR_aorta_br:J_heart_inlet", + "17564": "pressure:RCR_aorta_br:J_heart_inlet", + "17565": "pressure:RCR_aorta_br:J_heart_inlet", + "17566": "pressure:RCR_aorta_br:J_heart_inlet", + "17567": "pressure:RCR_aorta_br:J_heart_inlet", + "17568": "pressure:RCR_aorta_br:J_heart_inlet", + "17569": "pressure:RCR_aorta_br:J_heart_inlet", + "17570": "pressure:RCR_aorta_br:J_heart_inlet", + "17571": "pressure:RCR_aorta_br:J_heart_inlet", + "17572": "pressure:RCR_aorta_br:J_heart_inlet", + "17573": "pressure:RCR_aorta_br:J_heart_inlet", + "17574": "pressure:RCR_aorta_br:J_heart_inlet", + "17575": "pressure:RCR_aorta_br:J_heart_inlet", + "17576": "pressure:RCR_aorta_br:J_heart_inlet", + "17577": "pressure:RCR_aorta_br:J_heart_inlet", + "17578": "pressure:RCR_aorta_br:J_heart_inlet", + "17579": "pressure:RCR_aorta_br:J_heart_inlet", + "17580": "pressure:RCR_aorta_br:J_heart_inlet", + "17581": "pressure:RCR_aorta_br:J_heart_inlet", + "17582": "pressure:RCR_aorta_br:J_heart_inlet", + "17583": "pressure:RCR_aorta_br:J_heart_inlet", + "17584": "pressure:RCR_aorta_br:J_heart_inlet", + "17585": "pressure:RCR_aorta_br:J_heart_inlet", + "17586": "pressure:RCR_aorta_br:J_heart_inlet", + "17587": "pressure:RCR_aorta_br:J_heart_inlet", + "17588": "pressure:RCR_aorta_br:J_heart_inlet", + "17589": "pressure:RCR_aorta_br:J_heart_inlet", + "17590": "pressure:RCR_aorta_br:J_heart_inlet", + "17591": "pressure:RCR_aorta_br:J_heart_inlet", + "17592": "pressure:RCR_aorta_br:J_heart_inlet", + "17593": "pressure:RCR_aorta_br:J_heart_inlet", + "17594": "pressure:RCR_aorta_br:J_heart_inlet", + "17595": "pressure:RCR_aorta_br:J_heart_inlet", + "17596": "pressure:RCR_aorta_br:J_heart_inlet", + "17597": "pressure:RCR_aorta_br:J_heart_inlet", + "17598": "pressure:RCR_aorta_br:J_heart_inlet", + "17599": "pressure:RCR_aorta_br:J_heart_inlet", + "17600": "pressure:RCR_aorta_br:J_heart_inlet", + "17601": "pressure:RCR_aorta_br:J_heart_inlet", + "17602": "pressure:RCR_aorta_br:J_heart_inlet", + "17603": "pressure:RCR_aorta_br:J_heart_inlet", + "17604": "pressure:RCR_aorta_br:J_heart_inlet", + "17605": "pressure:RCR_aorta_br:J_heart_inlet", + "17606": "pressure:RCR_aorta_br:J_heart_inlet", + "17607": "pressure:RCR_aorta_br:J_heart_inlet", + "17608": "pressure:RCR_aorta_br:J_heart_inlet", + "17609": "pressure:RCR_aorta_br:J_heart_inlet", + "17610": "pressure:RCR_aorta_br:J_heart_inlet", + "17611": "pressure:RCR_aorta_br:J_heart_inlet", + "17612": "pressure:RCR_aorta_br:J_heart_inlet", + "17613": "pressure:RCR_aorta_br:J_heart_inlet", + "17614": "pressure:RCR_aorta_br:J_heart_inlet", + "17615": "pressure:RCR_aorta_br:J_heart_inlet", + "17616": "pressure:RCR_aorta_br:J_heart_inlet", + "17617": "pressure:RCR_aorta_br:J_heart_inlet", + "17618": "pressure:RCR_aorta_br:J_heart_inlet", + "17619": "pressure:RCR_aorta_br:J_heart_inlet", + "17620": "pressure:RCR_aorta_br:J_heart_inlet", + "17621": "pressure:RCR_aorta_br:J_heart_inlet", + "17622": "pressure:RCR_aorta_br:J_heart_inlet", + "17623": "pressure:RCR_aorta_br:J_heart_inlet", + "17624": "pressure:RCR_aorta_br:J_heart_inlet", + "17625": "pressure:RCR_aorta_br:J_heart_inlet", + "17626": "pressure:RCR_aorta_br:J_heart_inlet", + "17627": "pressure:RCR_aorta_br:J_heart_inlet", + "17628": "pressure:RCR_aorta_br:J_heart_inlet", + "17629": "pressure:RCR_aorta_br:J_heart_inlet", + "17630": "pressure:RCR_aorta_br:J_heart_inlet", + "17631": "pressure:RCR_aorta_br:J_heart_inlet", + "17632": "pressure:RCR_aorta_br:J_heart_inlet", + "17633": "pressure:RCR_aorta_br:J_heart_inlet", + "17634": "pressure:RCR_aorta_br:J_heart_inlet", + "17635": "pressure:RCR_aorta_br:J_heart_inlet", + "17636": "pressure:RCR_aorta_br:J_heart_inlet", + "17637": "pressure:RCR_aorta_br:J_heart_inlet", + "17638": "pressure:RCR_aorta_br:J_heart_inlet", + "17639": "pressure:RCR_aorta_br:J_heart_inlet", + "17640": "pressure:RCR_aorta_br:J_heart_inlet", + "17641": "pressure:RCR_aorta_br:J_heart_inlet", + "17642": "pressure:RCR_aorta_br:J_heart_inlet", + "17643": "pressure:RCR_aorta_br:J_heart_inlet", + "17644": "pressure:RCR_aorta_br:J_heart_inlet", + "17645": "pressure:RCR_aorta_br:J_heart_inlet", + "17646": "pressure:RCR_aorta_br:J_heart_inlet", + "17647": "pressure:RCR_aorta_br:J_heart_inlet", + "17648": "pressure:RCR_aorta_br:J_heart_inlet", + "17649": "pressure:RCR_aorta_br:J_heart_inlet", + "17650": "pressure:RCR_aorta_br:J_heart_inlet", + "17651": "pressure:RCR_aorta_br:J_heart_inlet", + "17652": "pressure:RCR_aorta_br:J_heart_inlet", + "17653": "pressure:RCR_aorta_br:J_heart_inlet", + "17654": "pressure:RCR_aorta_br:J_heart_inlet", + "17655": "pressure:RCR_aorta_br:J_heart_inlet", + "17656": "pressure:RCR_aorta_br:J_heart_inlet", + "17657": "pressure:RCR_aorta_br:J_heart_inlet", + "17658": "pressure:RCR_aorta_br:J_heart_inlet", + "17659": "pressure:RCR_aorta_br:J_heart_inlet", + "17660": "pressure:RCR_aorta_br:J_heart_inlet", + "17661": "pressure:RCR_aorta_br:J_heart_inlet", + "17662": "pressure:RCR_aorta_br:J_heart_inlet", + "17663": "pressure:RCR_aorta_br:J_heart_inlet", + "17664": "pressure:RCR_aorta_br:J_heart_inlet", + "17665": "pressure:RCR_aorta_br:J_heart_inlet", + "17666": "pressure:RCR_aorta_br:J_heart_inlet", + "17667": "pressure:RCR_aorta_br:J_heart_inlet", + "17668": "pressure:RCR_aorta_br:J_heart_inlet", + "17669": "pressure:RCR_aorta_br:J_heart_inlet", + "17670": "pressure:RCR_aorta_br:J_heart_inlet", + "17671": "pressure:RCR_aorta_br:J_heart_inlet", + "17672": "pressure:RCR_aorta_br:J_heart_inlet", + "17673": "pressure:RCR_aorta_br:J_heart_inlet", + "17674": "pressure:RCR_aorta_br:J_heart_inlet", + "17675": "pressure:RCR_aorta_br:J_heart_inlet", + "17676": "pressure:RCR_aorta_br:J_heart_inlet", + "17677": "pressure:RCR_aorta_br:J_heart_inlet", + "17678": "pressure:RCR_aorta_br:J_heart_inlet", + "17679": "pressure:RCR_aorta_br:J_heart_inlet", + "17680": "pressure:RCR_aorta_br:J_heart_inlet", + "17681": "pressure:RCR_aorta_br:J_heart_inlet", + "17682": "pressure:RCR_aorta_br:J_heart_inlet", + "17683": "pressure:RCR_aorta_br:J_heart_inlet", + "17684": "pressure:RCR_aorta_br:J_heart_inlet", + "17685": "pressure:RCR_aorta_br:J_heart_inlet", + "17686": "pressure:RCR_aorta_br:J_heart_inlet", + "17687": "pressure:RCR_aorta_br:J_heart_inlet", + "17688": "pressure:RCR_aorta_br:J_heart_inlet", + "17689": "pressure:RCR_aorta_br:J_heart_inlet", + "17690": "pressure:RCR_aorta_br:J_heart_inlet", + "17691": "pressure:RCR_aorta_br:J_heart_inlet", + "17692": "pressure:RCR_aorta_br:J_heart_inlet", + "17693": "pressure:RCR_aorta_br:J_heart_inlet", + "17694": "pressure:RCR_aorta_br:J_heart_inlet", + "17695": "pressure:RCR_aorta_br:J_heart_inlet", + "17696": "pressure:RCR_aorta_br:J_heart_inlet", + "17697": "pressure:RCR_aorta_br:J_heart_inlet", + "17698": "pressure:RCR_aorta_br:J_heart_inlet", + "17699": "pressure:RCR_aorta_br:J_heart_inlet", + "17700": "pressure:RCR_aorta_br:J_heart_inlet", + "17701": "pressure:RCR_aorta_br:J_heart_inlet", + "17702": "pressure:RCR_aorta_br:J_heart_inlet", + "17703": "pressure:RCR_aorta_br:J_heart_inlet", + "17704": "pressure:RCR_aorta_br:J_heart_inlet", + "17705": "pressure:RCR_aorta_br:J_heart_inlet", + "17706": "pressure:RCR_aorta_br:J_heart_inlet", + "17707": "pressure:RCR_aorta_br:J_heart_inlet", + "17708": "pressure:RCR_aorta_br:J_heart_inlet", + "17709": "pressure:RCR_aorta_br:J_heart_inlet", + "17710": "pressure:RCR_aorta_br:J_heart_inlet", + "17711": "pressure:RCR_aorta_br:J_heart_inlet", + "17712": "pressure:RCR_aorta_br:J_heart_inlet", + "17713": "pressure:RCR_aorta_br:J_heart_inlet", + "17714": "pressure:RCR_aorta_br:J_heart_inlet", + "17715": "pressure:RCR_aorta_br:J_heart_inlet", + "17716": "pressure:RCR_aorta_br:J_heart_inlet", + "17717": "pressure:RCR_aorta_br:J_heart_inlet", + "17718": "pressure:RCR_aorta_br:J_heart_inlet", + "17719": "pressure:RCR_aorta_br:J_heart_inlet", + "17720": "pressure:RCR_aorta_br:J_heart_inlet", + "17721": "pressure:RCR_aorta_br:J_heart_inlet", + "17722": "pressure:RCR_aorta_br:J_heart_inlet", + "17723": "pressure:RCR_aorta_br:J_heart_inlet", + "17724": "pressure:RCR_aorta_br:J_heart_inlet", + "17725": "pressure:RCR_aorta_br:J_heart_inlet", + "17726": "pressure:RCR_aorta_br:J_heart_inlet", + "17727": "pressure:RCR_aorta_br:J_heart_inlet", + "17728": "pressure:RCR_aorta_br:J_heart_inlet", + "17729": "pressure:RCR_aorta_br:J_heart_inlet", + "17730": "pressure:RCR_aorta_br:J_heart_inlet", + "17731": "pressure:RCR_aorta_br:J_heart_inlet", + "17732": "pressure:RCR_aorta_br:J_heart_inlet", + "17733": "pressure:RCR_aorta_br:J_heart_inlet", + "17734": "pressure:RCR_aorta_br:J_heart_inlet", + "17735": "pressure:RCR_aorta_br:J_heart_inlet", + "17736": "pressure:RCR_aorta_br:J_heart_inlet", + "17737": "pressure:RCR_aorta_br:J_heart_inlet", + "17738": "pressure:RCR_aorta_br:J_heart_inlet", + "17739": "pressure:RCR_aorta_br:J_heart_inlet", + "17740": "pressure:RCR_aorta_br:J_heart_inlet", + "17741": "pressure:RCR_aorta_br:J_heart_inlet", + "17742": "pressure:RCR_aorta_br:J_heart_inlet", + "17743": "pressure:RCR_aorta_br:J_heart_inlet", + "17744": "pressure:RCR_aorta_br:J_heart_inlet", + "17745": "pressure:RCR_aorta_br:J_heart_inlet", + "17746": "pressure:RCR_aorta_br:J_heart_inlet", + "17747": "pressure:RCR_aorta_br:J_heart_inlet", + "17748": "pressure:RCR_aorta_br:J_heart_inlet", + "17749": "pressure:RCR_aorta_br:J_heart_inlet", + "17750": "pressure:RCR_aorta_br:J_heart_inlet", + "17751": "pressure:RCR_aorta_br:J_heart_inlet", + "17752": "pressure:RCR_aorta_br:J_heart_inlet", + "17753": "pressure:RCR_aorta_br:J_heart_inlet", + "17754": "pressure:RCR_aorta_br:J_heart_inlet", + "17755": "pressure:RCR_aorta_br:J_heart_inlet", + "17756": "pressure:RCR_aorta_br:J_heart_inlet", + "17757": "pressure:RCR_aorta_br:J_heart_inlet", + "17758": "pressure:RCR_aorta_br:J_heart_inlet", + "17759": "pressure:RCR_aorta_br:J_heart_inlet", + "17760": "pressure:RCR_aorta_br:J_heart_inlet", + "17761": "pressure:RCR_aorta_br:J_heart_inlet", + "17762": "pressure:RCR_aorta_br:J_heart_inlet", + "17763": "pressure:RCR_aorta_br:J_heart_inlet", + "17764": "pressure:RCR_aorta_br:J_heart_inlet", + "17765": "pressure:RCR_aorta_br:J_heart_inlet", + "17766": "pressure:RCR_aorta_br:J_heart_inlet", + "17767": "pressure:RCR_aorta_br:J_heart_inlet", + "17768": "pressure:RCR_aorta_br:J_heart_inlet", + "17769": "pressure:RCR_aorta_br:J_heart_inlet", + "17770": "pressure:RCR_aorta_br:J_heart_inlet", + "17771": "pressure:RCR_aorta_br:J_heart_inlet", + "17772": "pressure:RCR_aorta_br:J_heart_inlet", + "17773": "pressure:RCR_aorta_br:J_heart_inlet", + "17774": "pressure:RCR_aorta_br:J_heart_inlet", + "17775": "pressure:RCR_aorta_br:J_heart_inlet", + "17776": "pressure:RCR_aorta_br:J_heart_inlet", + "17777": "pressure:RCR_aorta_br:J_heart_inlet", + "17778": "pressure:RCR_aorta_br:J_heart_inlet", + "17779": "pressure:RCR_aorta_br:J_heart_inlet", + "17780": "pressure:RCR_aorta_br:J_heart_inlet", + "17781": "pressure:RCR_aorta_br:J_heart_inlet", + "17782": "pressure:RCR_aorta_br:J_heart_inlet", + "17783": "pressure:RCR_aorta_br:J_heart_inlet", + "17784": "pressure:RCR_aorta_br:J_heart_inlet", + "17785": "pressure:RCR_aorta_br:J_heart_inlet", + "17786": "pressure:RCR_aorta_br:J_heart_inlet", + "17787": "pressure:RCR_aorta_br:J_heart_inlet", + "17788": "pressure:RCR_aorta_br:J_heart_inlet", + "17789": "pressure:RCR_aorta_br:J_heart_inlet", + "17790": "pressure:RCR_aorta_br:J_heart_inlet", + "17791": "pressure:RCR_aorta_br:J_heart_inlet", + "17792": "pressure:RCR_aorta_br:J_heart_inlet", + "17793": "pressure:RCR_aorta_br:J_heart_inlet", + "17794": "pressure:RCR_aorta_br:J_heart_inlet", + "17795": "pressure:RCR_aorta_br:J_heart_inlet", + "17796": "pressure:RCR_aorta_br:J_heart_inlet", + "17797": "pressure:RCR_aorta_br:J_heart_inlet", + "17798": "pressure:RCR_aorta_br:J_heart_inlet", + "17799": "pressure:RCR_aorta_br:J_heart_inlet", + "17800": "pressure:RCR_aorta_br:J_heart_inlet", + "17801": "pressure:RCR_aorta_br:J_heart_inlet", + "17802": "pressure:RCR_aorta_br:J_heart_inlet", + "17803": "pressure:RCR_aorta_br:J_heart_inlet", + "17804": "pressure:RCR_aorta_br:J_heart_inlet", + "17805": "pressure:RCR_aorta_br:J_heart_inlet", + "17806": "pressure:RCR_aorta_br:J_heart_inlet", + "17807": "pressure:RCR_aorta_br:J_heart_inlet", + "17808": "pressure:RCR_aorta_br:J_heart_inlet", + "17809": "pressure:RCR_aorta_br:J_heart_inlet", + "17810": "pressure:RCR_aorta_br:J_heart_inlet", + "17811": "pressure:RCR_aorta_br:J_heart_inlet", + "17812": "pressure:RCR_aorta_br:J_heart_inlet", + "17813": "pressure:RCR_aorta_br:J_heart_inlet", + "17814": "pressure:RCR_aorta_br:J_heart_inlet", + "17815": "pressure:RCR_aorta_br:J_heart_inlet", + "17816": "pressure:RCR_aorta_br:J_heart_inlet", + "17817": "pressure:RCR_aorta_br:J_heart_inlet", + "17818": "pressure:RCR_aorta_br:J_heart_inlet", + "17819": "pressure:RCR_aorta_br:J_heart_inlet", + "17820": "pressure:RCR_aorta_br:J_heart_inlet", + "17821": "pressure:RCR_aorta_br:J_heart_inlet", + "17822": "pressure:RCR_aorta_br:J_heart_inlet", + "17823": "pressure:RCR_aorta_br:J_heart_inlet", + "17824": "pressure:RCR_aorta_br:J_heart_inlet", + "17825": "pressure:RCR_aorta_br:J_heart_inlet", + "17826": "pressure:RCR_aorta_br:J_heart_inlet", + "17827": "pressure:RCR_aorta_br:J_heart_inlet", + "17828": "pressure:RCR_aorta_br:J_heart_inlet", + "17829": "pressure:RCR_aorta_br:J_heart_inlet", + "17830": "pressure:RCR_aorta_br:J_heart_inlet", + "17831": "pressure:RCR_aorta_br:J_heart_inlet", + "17832": "pressure:RCR_aorta_br:J_heart_inlet", + "17833": "pressure:RCR_aorta_br:J_heart_inlet", + "17834": "pressure:RCR_aorta_br:J_heart_inlet", + "17835": "pressure:RCR_aorta_br:J_heart_inlet", + "17836": "pressure:RCR_aorta_br:J_heart_inlet", + "17837": "pressure:RCR_aorta_br:J_heart_inlet", + "17838": "pressure:RCR_aorta_br:J_heart_inlet", + "17839": "pressure:RCR_aorta_br:J_heart_inlet", + "17840": "pressure:RCR_aorta_br:J_heart_inlet", + "17841": "pressure:RCR_aorta_br:J_heart_inlet", + "17842": "pressure:RCR_aorta_br:J_heart_inlet", + "17843": "pressure:RCR_aorta_br:J_heart_inlet", + "17844": "pressure:RCR_aorta_br:J_heart_inlet", + "17845": "pressure:RCR_aorta_br:J_heart_inlet", + "17846": "pressure:RCR_aorta_br:J_heart_inlet", + "17847": "pressure:RCR_aorta_br:J_heart_inlet", + "17848": "pressure:RCR_aorta_br:J_heart_inlet", + "17849": "pressure:RCR_aorta_br:J_heart_inlet", + "17850": "pressure:RCR_aorta_br:J_heart_inlet", + "17851": "pressure:RCR_aorta_br:J_heart_inlet", + "17852": "pressure:RCR_aorta_br:J_heart_inlet", + "17853": "pressure:RCR_aorta_br:J_heart_inlet", + "17854": "pressure:RCR_aorta_br:J_heart_inlet", + "17855": "pressure:RCR_aorta_br:J_heart_inlet", + "17856": "pressure:RCR_aorta_br:J_heart_inlet", + "17857": "pressure:RCR_aorta_br:J_heart_inlet", + "17858": "pressure:RCR_aorta_br:J_heart_inlet", + "17859": "pressure:RCR_aorta_br:J_heart_inlet", + "17860": "pressure:RCR_aorta_br:J_heart_inlet", + "17861": "pressure:RCR_aorta_br:J_heart_inlet", + "17862": "pressure:RCR_aorta_br:J_heart_inlet", + "17863": "pressure:RCR_aorta_br:J_heart_inlet", + "17864": "pressure:RCR_aorta_br:J_heart_inlet", + "17865": "pressure:RCR_aorta_br:J_heart_inlet", + "17866": "pressure:RCR_aorta_br:J_heart_inlet", + "17867": "pressure:RCR_aorta_br:J_heart_inlet", + "17868": "pressure:RCR_aorta_br:J_heart_inlet", + "17869": "pressure:RCR_aorta_br:J_heart_inlet", + "17870": "pressure:RCR_aorta_br:J_heart_inlet", + "17871": "pressure:RCR_aorta_br:J_heart_inlet", + "17872": "pressure:RCR_aorta_br:J_heart_inlet", + "17873": "pressure:RCR_aorta_br:J_heart_inlet", + "17874": "pressure:RCR_aorta_br:J_heart_inlet", + "17875": "pressure:RCR_aorta_br:J_heart_inlet", + "17876": "pressure:RCR_aorta_br:J_heart_inlet", + "17877": "pressure:RCR_aorta_br:J_heart_inlet", + "17878": "pressure:RCR_aorta_br:J_heart_inlet", + "17879": "pressure:RCR_aorta_br:J_heart_inlet", + "17880": "pressure:RCR_aorta_br:J_heart_inlet", + "17881": "pressure:RCR_aorta_br:J_heart_inlet", + "17882": "pressure:RCR_aorta_br:J_heart_inlet", + "17883": "pressure:RCR_aorta_br:J_heart_inlet", + "17884": "pressure:RCR_aorta_br:J_heart_inlet", + "17885": "pressure:RCR_aorta_br:J_heart_inlet", + "17886": "pressure:RCR_aorta_br:J_heart_inlet", + "17887": "pressure:RCR_aorta_br:J_heart_inlet", + "17888": "pressure:RCR_aorta_br:J_heart_inlet", + "17889": "pressure:RCR_aorta_br:J_heart_inlet", + "17890": "pressure:RCR_aorta_br:J_heart_inlet", + "17891": "pressure:RCR_aorta_br:J_heart_inlet", + "17892": "pressure:RCR_aorta_br:J_heart_inlet", + "17893": "pressure:RCR_aorta_br:J_heart_inlet", + "17894": "pressure:RCR_aorta_br:J_heart_inlet", + "17895": "pressure:RCR_aorta_br:J_heart_inlet", + "17896": "pressure:RCR_aorta_br:J_heart_inlet", + "17897": "pressure:RCR_aorta_br:J_heart_inlet", + "17898": "pressure:RCR_aorta_br:J_heart_inlet", + "17899": "pressure:RCR_aorta_br:J_heart_inlet", + "17900": "pressure:RCR_aorta_br:J_heart_inlet", + "17901": "pressure:RCR_aorta_br:J_heart_inlet", + "17902": "pressure:RCR_aorta_br:J_heart_inlet", + "17903": "pressure:RCR_aorta_br:J_heart_inlet", + "17904": "pressure:RCR_aorta_br:J_heart_inlet", + "17905": "pressure:RCR_aorta_br:J_heart_inlet", + "17906": "pressure:RCR_aorta_br:J_heart_inlet", + "17907": "pressure:RCR_aorta_br:J_heart_inlet", + "17908": "pressure:RCR_aorta_br:J_heart_inlet", + "17909": "pressure:RCR_aorta_br:J_heart_inlet", + "17910": "pressure:RCR_aorta_br:J_heart_inlet", + "17911": "pressure:RCR_aorta_br:J_heart_inlet", + "17912": "pressure:RCR_aorta_br:J_heart_inlet", + "17913": "pressure:RCR_aorta_br:J_heart_inlet", + "17914": "pressure:RCR_aorta_br:J_heart_inlet", + "17915": "pressure:RCR_aorta_br:J_heart_inlet", + "17916": "pressure:RCR_aorta_br:J_heart_inlet", + "17917": "pressure:RCR_aorta_br:J_heart_inlet", + "17918": "pressure:RCR_aorta_br:J_heart_inlet", + "17919": "pressure:RCR_aorta_br:J_heart_inlet", + "17920": "pressure:RCR_aorta_br:J_heart_inlet", + "17921": "pressure:RCR_aorta_br:J_heart_inlet", + "17922": "pressure:RCR_aorta_br:J_heart_inlet", + "17923": "pressure:RCR_aorta_br:J_heart_inlet", + "17924": "pressure:RCR_aorta_br:J_heart_inlet", + "17925": "pressure:RCR_aorta_br:J_heart_inlet", + "17926": "pressure:RCR_aorta_br:J_heart_inlet", + "17927": "pressure:RCR_aorta_br:J_heart_inlet", + "17928": "pressure:RCR_aorta_br:J_heart_inlet", + "17929": "pressure:RCR_aorta_br:J_heart_inlet", + "17930": "pressure:RCR_aorta_br:J_heart_inlet", + "17931": "pressure:RCR_aorta_br:J_heart_inlet", + "17932": "pressure:RCR_aorta_br:J_heart_inlet", + "17933": "pressure:RCR_aorta_br:J_heart_inlet", + "17934": "pressure:RCR_aorta_br:J_heart_inlet", + "17935": "pressure:RCR_aorta_br:J_heart_inlet", + "17936": "pressure:RCR_aorta_br:J_heart_inlet", + "17937": "pressure:RCR_aorta_br:J_heart_inlet", + "17938": "pressure:RCR_aorta_br:J_heart_inlet", + "17939": "pressure:RCR_aorta_br:J_heart_inlet", + "17940": "pressure:RCR_aorta_br:J_heart_inlet", + "17941": "pressure:RCR_aorta_br:J_heart_inlet", + "17942": "pressure:RCR_aorta_br:J_heart_inlet", + "17943": "pressure:RCR_aorta_br:J_heart_inlet", + "17944": "pressure:RCR_aorta_br:J_heart_inlet", + "17945": "pressure:RCR_aorta_br:J_heart_inlet", + "17946": "pressure:RCR_aorta_br:J_heart_inlet", + "17947": "pressure:RCR_aorta_br:J_heart_inlet", + "17948": "pressure:RCR_aorta_br:J_heart_inlet", + "17949": "pressure:RCR_aorta_br:J_heart_inlet", + "17950": "pressure:RCR_aorta_br:J_heart_inlet", + "17951": "pressure:RCR_aorta_br:J_heart_inlet", + "17952": "pressure:RCR_aorta_br:J_heart_inlet", + "17953": "pressure:RCR_aorta_br:J_heart_inlet", + "17954": "pressure:RCR_aorta_br:J_heart_inlet", + "17955": "pressure:RCR_aorta_br:J_heart_inlet", + "17956": "pressure:RCR_aorta_br:J_heart_inlet", + "17957": "pressure:RCR_aorta_br:J_heart_inlet", + "17958": "pressure:RCR_aorta_br:J_heart_inlet", + "17959": "pressure:RCR_aorta_br:J_heart_inlet", + "17960": "pressure:RCR_aorta_br:J_heart_inlet", + "17961": "pressure:RCR_aorta_br:J_heart_inlet", + "17962": "pressure:RCR_aorta_br:J_heart_inlet", + "17963": "pressure:RCR_aorta_br:J_heart_inlet", + "17964": "pressure:RCR_aorta_br:J_heart_inlet", + "17965": "pressure:RCR_aorta_br:J_heart_inlet", + "17966": "pressure:RCR_aorta_br:J_heart_inlet", + "17967": "pressure:RCR_aorta_br:J_heart_inlet", + "17968": "pressure:RCR_aorta_br:J_heart_inlet", + "17969": "pressure:RCR_aorta_br:J_heart_inlet", + "17970": "pressure:RCR_aorta_br:J_heart_inlet", + "17971": "pressure:RCR_aorta_br:J_heart_inlet", + "17972": "pressure:RCR_aorta_br:J_heart_inlet", + "17973": "pressure:RCR_aorta_br:J_heart_inlet", + "17974": "pressure:RCR_aorta_br:J_heart_inlet", + "17975": "pressure:RCR_aorta_br:J_heart_inlet", + "17976": "pressure:RCR_aorta_br:J_heart_inlet", + "17977": "pressure:RCR_aorta_br:J_heart_inlet", + "17978": "pressure:RCR_aorta_br:J_heart_inlet", + "17979": "pressure:RCR_aorta_br:J_heart_inlet", + "17980": "pressure:RCR_aorta_br:J_heart_inlet", + "17981": "pressure:RCR_aorta_br:J_heart_inlet", + "17982": "pressure:RCR_aorta_br:J_heart_inlet", + "17983": "pressure:RCR_aorta_br:J_heart_inlet", + "17984": "pressure:RCR_aorta_br:J_heart_inlet", + "17985": "pressure:RCR_aorta_br:J_heart_inlet", + "17986": "pressure:RCR_aorta_br:J_heart_inlet", + "17987": "pressure:RCR_aorta_br:J_heart_inlet", + "17988": "pressure:RCR_aorta_br:J_heart_inlet", + "17989": "pressure:RCR_aorta_br:J_heart_inlet", + "17990": "pressure:RCR_aorta_br:J_heart_inlet", + "17991": "pressure:RCR_aorta_br:J_heart_inlet", + "17992": "pressure:RCR_aorta_br:J_heart_inlet", + "17993": "pressure:RCR_aorta_br:J_heart_inlet", + "17994": "pressure:RCR_aorta_br:J_heart_inlet", + "17995": "pressure:RCR_aorta_br:J_heart_inlet", + "17996": "pressure:RCR_aorta_br:J_heart_inlet", + "17997": "pressure:RCR_aorta_br:J_heart_inlet", + "17998": "pressure:RCR_aorta_br:J_heart_inlet", + "17999": "pressure:RCR_aorta_br:J_heart_inlet", + "18000": "flow:CLH:J_heart_outlet", + "18001": "flow:CLH:J_heart_outlet", + "18002": "flow:CLH:J_heart_outlet", + "18003": "flow:CLH:J_heart_outlet", + "18004": "flow:CLH:J_heart_outlet", + "18005": "flow:CLH:J_heart_outlet", + "18006": "flow:CLH:J_heart_outlet", + "18007": "flow:CLH:J_heart_outlet", + "18008": "flow:CLH:J_heart_outlet", + "18009": "flow:CLH:J_heart_outlet", + "18010": "flow:CLH:J_heart_outlet", + "18011": "flow:CLH:J_heart_outlet", + "18012": "flow:CLH:J_heart_outlet", + "18013": "flow:CLH:J_heart_outlet", + "18014": "flow:CLH:J_heart_outlet", + "18015": "flow:CLH:J_heart_outlet", + "18016": "flow:CLH:J_heart_outlet", + "18017": "flow:CLH:J_heart_outlet", + "18018": "flow:CLH:J_heart_outlet", + "18019": "flow:CLH:J_heart_outlet", + "18020": "flow:CLH:J_heart_outlet", + "18021": "flow:CLH:J_heart_outlet", + "18022": "flow:CLH:J_heart_outlet", + "18023": "flow:CLH:J_heart_outlet", + "18024": "flow:CLH:J_heart_outlet", + "18025": "flow:CLH:J_heart_outlet", + "18026": "flow:CLH:J_heart_outlet", + "18027": "flow:CLH:J_heart_outlet", + "18028": "flow:CLH:J_heart_outlet", + "18029": "flow:CLH:J_heart_outlet", + "18030": "flow:CLH:J_heart_outlet", + "18031": "flow:CLH:J_heart_outlet", + "18032": "flow:CLH:J_heart_outlet", + "18033": "flow:CLH:J_heart_outlet", + "18034": "flow:CLH:J_heart_outlet", + "18035": "flow:CLH:J_heart_outlet", + "18036": "flow:CLH:J_heart_outlet", + "18037": "flow:CLH:J_heart_outlet", + "18038": "flow:CLH:J_heart_outlet", + "18039": "flow:CLH:J_heart_outlet", + "18040": "flow:CLH:J_heart_outlet", + "18041": "flow:CLH:J_heart_outlet", + "18042": "flow:CLH:J_heart_outlet", + "18043": "flow:CLH:J_heart_outlet", + "18044": "flow:CLH:J_heart_outlet", + "18045": "flow:CLH:J_heart_outlet", + "18046": "flow:CLH:J_heart_outlet", + "18047": "flow:CLH:J_heart_outlet", + "18048": "flow:CLH:J_heart_outlet", + "18049": "flow:CLH:J_heart_outlet", + "18050": "flow:CLH:J_heart_outlet", + "18051": "flow:CLH:J_heart_outlet", + "18052": "flow:CLH:J_heart_outlet", + "18053": "flow:CLH:J_heart_outlet", + "18054": "flow:CLH:J_heart_outlet", + "18055": "flow:CLH:J_heart_outlet", + "18056": "flow:CLH:J_heart_outlet", + "18057": "flow:CLH:J_heart_outlet", + "18058": "flow:CLH:J_heart_outlet", + "18059": "flow:CLH:J_heart_outlet", + "18060": "flow:CLH:J_heart_outlet", + "18061": "flow:CLH:J_heart_outlet", + "18062": "flow:CLH:J_heart_outlet", + "18063": "flow:CLH:J_heart_outlet", + "18064": "flow:CLH:J_heart_outlet", + "18065": "flow:CLH:J_heart_outlet", + "18066": "flow:CLH:J_heart_outlet", + "18067": "flow:CLH:J_heart_outlet", + "18068": "flow:CLH:J_heart_outlet", + "18069": "flow:CLH:J_heart_outlet", + "18070": "flow:CLH:J_heart_outlet", + "18071": "flow:CLH:J_heart_outlet", + "18072": "flow:CLH:J_heart_outlet", + "18073": "flow:CLH:J_heart_outlet", + "18074": "flow:CLH:J_heart_outlet", + "18075": "flow:CLH:J_heart_outlet", + "18076": "flow:CLH:J_heart_outlet", + "18077": "flow:CLH:J_heart_outlet", + "18078": "flow:CLH:J_heart_outlet", + "18079": "flow:CLH:J_heart_outlet", + "18080": "flow:CLH:J_heart_outlet", + "18081": "flow:CLH:J_heart_outlet", + "18082": "flow:CLH:J_heart_outlet", + "18083": "flow:CLH:J_heart_outlet", + "18084": "flow:CLH:J_heart_outlet", + "18085": "flow:CLH:J_heart_outlet", + "18086": "flow:CLH:J_heart_outlet", + "18087": "flow:CLH:J_heart_outlet", + "18088": "flow:CLH:J_heart_outlet", + "18089": "flow:CLH:J_heart_outlet", + "18090": "flow:CLH:J_heart_outlet", + "18091": "flow:CLH:J_heart_outlet", + "18092": "flow:CLH:J_heart_outlet", + "18093": "flow:CLH:J_heart_outlet", + "18094": "flow:CLH:J_heart_outlet", + "18095": "flow:CLH:J_heart_outlet", + "18096": "flow:CLH:J_heart_outlet", + "18097": "flow:CLH:J_heart_outlet", + "18098": "flow:CLH:J_heart_outlet", + "18099": "flow:CLH:J_heart_outlet", + "18100": "flow:CLH:J_heart_outlet", + "18101": "flow:CLH:J_heart_outlet", + "18102": "flow:CLH:J_heart_outlet", + "18103": "flow:CLH:J_heart_outlet", + "18104": "flow:CLH:J_heart_outlet", + "18105": "flow:CLH:J_heart_outlet", + "18106": "flow:CLH:J_heart_outlet", + "18107": "flow:CLH:J_heart_outlet", + "18108": "flow:CLH:J_heart_outlet", + "18109": "flow:CLH:J_heart_outlet", + "18110": "flow:CLH:J_heart_outlet", + "18111": "flow:CLH:J_heart_outlet", + "18112": "flow:CLH:J_heart_outlet", + "18113": "flow:CLH:J_heart_outlet", + "18114": "flow:CLH:J_heart_outlet", + "18115": "flow:CLH:J_heart_outlet", + "18116": "flow:CLH:J_heart_outlet", + "18117": "flow:CLH:J_heart_outlet", + "18118": "flow:CLH:J_heart_outlet", + "18119": "flow:CLH:J_heart_outlet", + "18120": "flow:CLH:J_heart_outlet", + "18121": "flow:CLH:J_heart_outlet", + "18122": "flow:CLH:J_heart_outlet", + "18123": "flow:CLH:J_heart_outlet", + "18124": "flow:CLH:J_heart_outlet", + "18125": "flow:CLH:J_heart_outlet", + "18126": "flow:CLH:J_heart_outlet", + "18127": "flow:CLH:J_heart_outlet", + "18128": "flow:CLH:J_heart_outlet", + "18129": "flow:CLH:J_heart_outlet", + "18130": "flow:CLH:J_heart_outlet", + "18131": "flow:CLH:J_heart_outlet", + "18132": "flow:CLH:J_heart_outlet", + "18133": "flow:CLH:J_heart_outlet", + "18134": "flow:CLH:J_heart_outlet", + "18135": "flow:CLH:J_heart_outlet", + "18136": "flow:CLH:J_heart_outlet", + "18137": "flow:CLH:J_heart_outlet", + "18138": "flow:CLH:J_heart_outlet", + "18139": "flow:CLH:J_heart_outlet", + "18140": "flow:CLH:J_heart_outlet", + "18141": "flow:CLH:J_heart_outlet", + "18142": "flow:CLH:J_heart_outlet", + "18143": "flow:CLH:J_heart_outlet", + "18144": "flow:CLH:J_heart_outlet", + "18145": "flow:CLH:J_heart_outlet", + "18146": "flow:CLH:J_heart_outlet", + "18147": "flow:CLH:J_heart_outlet", + "18148": "flow:CLH:J_heart_outlet", + "18149": "flow:CLH:J_heart_outlet", + "18150": "flow:CLH:J_heart_outlet", + "18151": "flow:CLH:J_heart_outlet", + "18152": "flow:CLH:J_heart_outlet", + "18153": "flow:CLH:J_heart_outlet", + "18154": "flow:CLH:J_heart_outlet", + "18155": "flow:CLH:J_heart_outlet", + "18156": "flow:CLH:J_heart_outlet", + "18157": "flow:CLH:J_heart_outlet", + "18158": "flow:CLH:J_heart_outlet", + "18159": "flow:CLH:J_heart_outlet", + "18160": "flow:CLH:J_heart_outlet", + "18161": "flow:CLH:J_heart_outlet", + "18162": "flow:CLH:J_heart_outlet", + "18163": "flow:CLH:J_heart_outlet", + "18164": "flow:CLH:J_heart_outlet", + "18165": "flow:CLH:J_heart_outlet", + "18166": "flow:CLH:J_heart_outlet", + "18167": "flow:CLH:J_heart_outlet", + "18168": "flow:CLH:J_heart_outlet", + "18169": "flow:CLH:J_heart_outlet", + "18170": "flow:CLH:J_heart_outlet", + "18171": "flow:CLH:J_heart_outlet", + "18172": "flow:CLH:J_heart_outlet", + "18173": "flow:CLH:J_heart_outlet", + "18174": "flow:CLH:J_heart_outlet", + "18175": "flow:CLH:J_heart_outlet", + "18176": "flow:CLH:J_heart_outlet", + "18177": "flow:CLH:J_heart_outlet", + "18178": "flow:CLH:J_heart_outlet", + "18179": "flow:CLH:J_heart_outlet", + "18180": "flow:CLH:J_heart_outlet", + "18181": "flow:CLH:J_heart_outlet", + "18182": "flow:CLH:J_heart_outlet", + "18183": "flow:CLH:J_heart_outlet", + "18184": "flow:CLH:J_heart_outlet", + "18185": "flow:CLH:J_heart_outlet", + "18186": "flow:CLH:J_heart_outlet", + "18187": "flow:CLH:J_heart_outlet", + "18188": "flow:CLH:J_heart_outlet", + "18189": "flow:CLH:J_heart_outlet", + "18190": "flow:CLH:J_heart_outlet", + "18191": "flow:CLH:J_heart_outlet", + "18192": "flow:CLH:J_heart_outlet", + "18193": "flow:CLH:J_heart_outlet", + "18194": "flow:CLH:J_heart_outlet", + "18195": "flow:CLH:J_heart_outlet", + "18196": "flow:CLH:J_heart_outlet", + "18197": "flow:CLH:J_heart_outlet", + "18198": "flow:CLH:J_heart_outlet", + "18199": "flow:CLH:J_heart_outlet", + "18200": "flow:CLH:J_heart_outlet", + "18201": "flow:CLH:J_heart_outlet", + "18202": "flow:CLH:J_heart_outlet", + "18203": "flow:CLH:J_heart_outlet", + "18204": "flow:CLH:J_heart_outlet", + "18205": "flow:CLH:J_heart_outlet", + "18206": "flow:CLH:J_heart_outlet", + "18207": "flow:CLH:J_heart_outlet", + "18208": "flow:CLH:J_heart_outlet", + "18209": "flow:CLH:J_heart_outlet", + "18210": "flow:CLH:J_heart_outlet", + "18211": "flow:CLH:J_heart_outlet", + "18212": "flow:CLH:J_heart_outlet", + "18213": "flow:CLH:J_heart_outlet", + "18214": "flow:CLH:J_heart_outlet", + "18215": "flow:CLH:J_heart_outlet", + "18216": "flow:CLH:J_heart_outlet", + "18217": "flow:CLH:J_heart_outlet", + "18218": "flow:CLH:J_heart_outlet", + "18219": "flow:CLH:J_heart_outlet", + "18220": "flow:CLH:J_heart_outlet", + "18221": "flow:CLH:J_heart_outlet", + "18222": "flow:CLH:J_heart_outlet", + "18223": "flow:CLH:J_heart_outlet", + "18224": "flow:CLH:J_heart_outlet", + "18225": "flow:CLH:J_heart_outlet", + "18226": "flow:CLH:J_heart_outlet", + "18227": "flow:CLH:J_heart_outlet", + "18228": "flow:CLH:J_heart_outlet", + "18229": "flow:CLH:J_heart_outlet", + "18230": "flow:CLH:J_heart_outlet", + "18231": "flow:CLH:J_heart_outlet", + "18232": "flow:CLH:J_heart_outlet", + "18233": "flow:CLH:J_heart_outlet", + "18234": "flow:CLH:J_heart_outlet", + "18235": "flow:CLH:J_heart_outlet", + "18236": "flow:CLH:J_heart_outlet", + "18237": "flow:CLH:J_heart_outlet", + "18238": "flow:CLH:J_heart_outlet", + "18239": "flow:CLH:J_heart_outlet", + "18240": "flow:CLH:J_heart_outlet", + "18241": "flow:CLH:J_heart_outlet", + "18242": "flow:CLH:J_heart_outlet", + "18243": "flow:CLH:J_heart_outlet", + "18244": "flow:CLH:J_heart_outlet", + "18245": "flow:CLH:J_heart_outlet", + "18246": "flow:CLH:J_heart_outlet", + "18247": "flow:CLH:J_heart_outlet", + "18248": "flow:CLH:J_heart_outlet", + "18249": "flow:CLH:J_heart_outlet", + "18250": "flow:CLH:J_heart_outlet", + "18251": "flow:CLH:J_heart_outlet", + "18252": "flow:CLH:J_heart_outlet", + "18253": "flow:CLH:J_heart_outlet", + "18254": "flow:CLH:J_heart_outlet", + "18255": "flow:CLH:J_heart_outlet", + "18256": "flow:CLH:J_heart_outlet", + "18257": "flow:CLH:J_heart_outlet", + "18258": "flow:CLH:J_heart_outlet", + "18259": "flow:CLH:J_heart_outlet", + "18260": "flow:CLH:J_heart_outlet", + "18261": "flow:CLH:J_heart_outlet", + "18262": "flow:CLH:J_heart_outlet", + "18263": "flow:CLH:J_heart_outlet", + "18264": "flow:CLH:J_heart_outlet", + "18265": "flow:CLH:J_heart_outlet", + "18266": "flow:CLH:J_heart_outlet", + "18267": "flow:CLH:J_heart_outlet", + "18268": "flow:CLH:J_heart_outlet", + "18269": "flow:CLH:J_heart_outlet", + "18270": "flow:CLH:J_heart_outlet", + "18271": "flow:CLH:J_heart_outlet", + "18272": "flow:CLH:J_heart_outlet", + "18273": "flow:CLH:J_heart_outlet", + "18274": "flow:CLH:J_heart_outlet", + "18275": "flow:CLH:J_heart_outlet", + "18276": "flow:CLH:J_heart_outlet", + "18277": "flow:CLH:J_heart_outlet", + "18278": "flow:CLH:J_heart_outlet", + "18279": "flow:CLH:J_heart_outlet", + "18280": "flow:CLH:J_heart_outlet", + "18281": "flow:CLH:J_heart_outlet", + "18282": "flow:CLH:J_heart_outlet", + "18283": "flow:CLH:J_heart_outlet", + "18284": "flow:CLH:J_heart_outlet", + "18285": "flow:CLH:J_heart_outlet", + "18286": "flow:CLH:J_heart_outlet", + "18287": "flow:CLH:J_heart_outlet", + "18288": "flow:CLH:J_heart_outlet", + "18289": "flow:CLH:J_heart_outlet", + "18290": "flow:CLH:J_heart_outlet", + "18291": "flow:CLH:J_heart_outlet", + "18292": "flow:CLH:J_heart_outlet", + "18293": "flow:CLH:J_heart_outlet", + "18294": "flow:CLH:J_heart_outlet", + "18295": "flow:CLH:J_heart_outlet", + "18296": "flow:CLH:J_heart_outlet", + "18297": "flow:CLH:J_heart_outlet", + "18298": "flow:CLH:J_heart_outlet", + "18299": "flow:CLH:J_heart_outlet", + "18300": "flow:CLH:J_heart_outlet", + "18301": "flow:CLH:J_heart_outlet", + "18302": "flow:CLH:J_heart_outlet", + "18303": "flow:CLH:J_heart_outlet", + "18304": "flow:CLH:J_heart_outlet", + "18305": "flow:CLH:J_heart_outlet", + "18306": "flow:CLH:J_heart_outlet", + "18307": "flow:CLH:J_heart_outlet", + "18308": "flow:CLH:J_heart_outlet", + "18309": "flow:CLH:J_heart_outlet", + "18310": "flow:CLH:J_heart_outlet", + "18311": "flow:CLH:J_heart_outlet", + "18312": "flow:CLH:J_heart_outlet", + "18313": "flow:CLH:J_heart_outlet", + "18314": "flow:CLH:J_heart_outlet", + "18315": "flow:CLH:J_heart_outlet", + "18316": "flow:CLH:J_heart_outlet", + "18317": "flow:CLH:J_heart_outlet", + "18318": "flow:CLH:J_heart_outlet", + "18319": "flow:CLH:J_heart_outlet", + "18320": "flow:CLH:J_heart_outlet", + "18321": "flow:CLH:J_heart_outlet", + "18322": "flow:CLH:J_heart_outlet", + "18323": "flow:CLH:J_heart_outlet", + "18324": "flow:CLH:J_heart_outlet", + "18325": "flow:CLH:J_heart_outlet", + "18326": "flow:CLH:J_heart_outlet", + "18327": "flow:CLH:J_heart_outlet", + "18328": "flow:CLH:J_heart_outlet", + "18329": "flow:CLH:J_heart_outlet", + "18330": "flow:CLH:J_heart_outlet", + "18331": "flow:CLH:J_heart_outlet", + "18332": "flow:CLH:J_heart_outlet", + "18333": "flow:CLH:J_heart_outlet", + "18334": "flow:CLH:J_heart_outlet", + "18335": "flow:CLH:J_heart_outlet", + "18336": "flow:CLH:J_heart_outlet", + "18337": "flow:CLH:J_heart_outlet", + "18338": "flow:CLH:J_heart_outlet", + "18339": "flow:CLH:J_heart_outlet", + "18340": "flow:CLH:J_heart_outlet", + "18341": "flow:CLH:J_heart_outlet", + "18342": "flow:CLH:J_heart_outlet", + "18343": "flow:CLH:J_heart_outlet", + "18344": "flow:CLH:J_heart_outlet", + "18345": "flow:CLH:J_heart_outlet", + "18346": "flow:CLH:J_heart_outlet", + "18347": "flow:CLH:J_heart_outlet", + "18348": "flow:CLH:J_heart_outlet", + "18349": "flow:CLH:J_heart_outlet", + "18350": "flow:CLH:J_heart_outlet", + "18351": "flow:CLH:J_heart_outlet", + "18352": "flow:CLH:J_heart_outlet", + "18353": "flow:CLH:J_heart_outlet", + "18354": "flow:CLH:J_heart_outlet", + "18355": "flow:CLH:J_heart_outlet", + "18356": "flow:CLH:J_heart_outlet", + "18357": "flow:CLH:J_heart_outlet", + "18358": "flow:CLH:J_heart_outlet", + "18359": "flow:CLH:J_heart_outlet", + "18360": "flow:CLH:J_heart_outlet", + "18361": "flow:CLH:J_heart_outlet", + "18362": "flow:CLH:J_heart_outlet", + "18363": "flow:CLH:J_heart_outlet", + "18364": "flow:CLH:J_heart_outlet", + "18365": "flow:CLH:J_heart_outlet", + "18366": "flow:CLH:J_heart_outlet", + "18367": "flow:CLH:J_heart_outlet", + "18368": "flow:CLH:J_heart_outlet", + "18369": "flow:CLH:J_heart_outlet", + "18370": "flow:CLH:J_heart_outlet", + "18371": "flow:CLH:J_heart_outlet", + "18372": "flow:CLH:J_heart_outlet", + "18373": "flow:CLH:J_heart_outlet", + "18374": "flow:CLH:J_heart_outlet", + "18375": "flow:CLH:J_heart_outlet", + "18376": "flow:CLH:J_heart_outlet", + "18377": "flow:CLH:J_heart_outlet", + "18378": "flow:CLH:J_heart_outlet", + "18379": "flow:CLH:J_heart_outlet", + "18380": "flow:CLH:J_heart_outlet", + "18381": "flow:CLH:J_heart_outlet", + "18382": "flow:CLH:J_heart_outlet", + "18383": "flow:CLH:J_heart_outlet", + "18384": "flow:CLH:J_heart_outlet", + "18385": "flow:CLH:J_heart_outlet", + "18386": "flow:CLH:J_heart_outlet", + "18387": "flow:CLH:J_heart_outlet", + "18388": "flow:CLH:J_heart_outlet", + "18389": "flow:CLH:J_heart_outlet", + "18390": "flow:CLH:J_heart_outlet", + "18391": "flow:CLH:J_heart_outlet", + "18392": "flow:CLH:J_heart_outlet", + "18393": "flow:CLH:J_heart_outlet", + "18394": "flow:CLH:J_heart_outlet", + "18395": "flow:CLH:J_heart_outlet", + "18396": "flow:CLH:J_heart_outlet", + "18397": "flow:CLH:J_heart_outlet", + "18398": "flow:CLH:J_heart_outlet", + "18399": "flow:CLH:J_heart_outlet", + "18400": "flow:CLH:J_heart_outlet", + "18401": "flow:CLH:J_heart_outlet", + "18402": "flow:CLH:J_heart_outlet", + "18403": "flow:CLH:J_heart_outlet", + "18404": "flow:CLH:J_heart_outlet", + "18405": "flow:CLH:J_heart_outlet", + "18406": "flow:CLH:J_heart_outlet", + "18407": "flow:CLH:J_heart_outlet", + "18408": "flow:CLH:J_heart_outlet", + "18409": "flow:CLH:J_heart_outlet", + "18410": "flow:CLH:J_heart_outlet", + "18411": "flow:CLH:J_heart_outlet", + "18412": "flow:CLH:J_heart_outlet", + "18413": "flow:CLH:J_heart_outlet", + "18414": "flow:CLH:J_heart_outlet", + "18415": "flow:CLH:J_heart_outlet", + "18416": "flow:CLH:J_heart_outlet", + "18417": "flow:CLH:J_heart_outlet", + "18418": "flow:CLH:J_heart_outlet", + "18419": "flow:CLH:J_heart_outlet", + "18420": "flow:CLH:J_heart_outlet", + "18421": "flow:CLH:J_heart_outlet", + "18422": "flow:CLH:J_heart_outlet", + "18423": "flow:CLH:J_heart_outlet", + "18424": "flow:CLH:J_heart_outlet", + "18425": "flow:CLH:J_heart_outlet", + "18426": "flow:CLH:J_heart_outlet", + "18427": "flow:CLH:J_heart_outlet", + "18428": "flow:CLH:J_heart_outlet", + "18429": "flow:CLH:J_heart_outlet", + "18430": "flow:CLH:J_heart_outlet", + "18431": "flow:CLH:J_heart_outlet", + "18432": "flow:CLH:J_heart_outlet", + "18433": "flow:CLH:J_heart_outlet", + "18434": "flow:CLH:J_heart_outlet", + "18435": "flow:CLH:J_heart_outlet", + "18436": "flow:CLH:J_heart_outlet", + "18437": "flow:CLH:J_heart_outlet", + "18438": "flow:CLH:J_heart_outlet", + "18439": "flow:CLH:J_heart_outlet", + "18440": "flow:CLH:J_heart_outlet", + "18441": "flow:CLH:J_heart_outlet", + "18442": "flow:CLH:J_heart_outlet", + "18443": "flow:CLH:J_heart_outlet", + "18444": "flow:CLH:J_heart_outlet", + "18445": "flow:CLH:J_heart_outlet", + "18446": "flow:CLH:J_heart_outlet", + "18447": "flow:CLH:J_heart_outlet", + "18448": "flow:CLH:J_heart_outlet", + "18449": "flow:CLH:J_heart_outlet", + "18450": "flow:CLH:J_heart_outlet", + "18451": "flow:CLH:J_heart_outlet", + "18452": "flow:CLH:J_heart_outlet", + "18453": "flow:CLH:J_heart_outlet", + "18454": "flow:CLH:J_heart_outlet", + "18455": "flow:CLH:J_heart_outlet", + "18456": "flow:CLH:J_heart_outlet", + "18457": "flow:CLH:J_heart_outlet", + "18458": "flow:CLH:J_heart_outlet", + "18459": "flow:CLH:J_heart_outlet", + "18460": "flow:CLH:J_heart_outlet", + "18461": "flow:CLH:J_heart_outlet", + "18462": "flow:CLH:J_heart_outlet", + "18463": "flow:CLH:J_heart_outlet", + "18464": "flow:CLH:J_heart_outlet", + "18465": "flow:CLH:J_heart_outlet", + "18466": "flow:CLH:J_heart_outlet", + "18467": "flow:CLH:J_heart_outlet", + "18468": "flow:CLH:J_heart_outlet", + "18469": "flow:CLH:J_heart_outlet", + "18470": "flow:CLH:J_heart_outlet", + "18471": "flow:CLH:J_heart_outlet", + "18472": "flow:CLH:J_heart_outlet", + "18473": "flow:CLH:J_heart_outlet", + "18474": "flow:CLH:J_heart_outlet", + "18475": "flow:CLH:J_heart_outlet", + "18476": "flow:CLH:J_heart_outlet", + "18477": "flow:CLH:J_heart_outlet", + "18478": "flow:CLH:J_heart_outlet", + "18479": "flow:CLH:J_heart_outlet", + "18480": "flow:CLH:J_heart_outlet", + "18481": "flow:CLH:J_heart_outlet", + "18482": "flow:CLH:J_heart_outlet", + "18483": "flow:CLH:J_heart_outlet", + "18484": "flow:CLH:J_heart_outlet", + "18485": "flow:CLH:J_heart_outlet", + "18486": "flow:CLH:J_heart_outlet", + "18487": "flow:CLH:J_heart_outlet", + "18488": "flow:CLH:J_heart_outlet", + "18489": "flow:CLH:J_heart_outlet", + "18490": "flow:CLH:J_heart_outlet", + "18491": "flow:CLH:J_heart_outlet", + "18492": "flow:CLH:J_heart_outlet", + "18493": "flow:CLH:J_heart_outlet", + "18494": "flow:CLH:J_heart_outlet", + "18495": "flow:CLH:J_heart_outlet", + "18496": "flow:CLH:J_heart_outlet", + "18497": "flow:CLH:J_heart_outlet", + "18498": "flow:CLH:J_heart_outlet", + "18499": "flow:CLH:J_heart_outlet", + "18500": "flow:CLH:J_heart_outlet", + "18501": "flow:CLH:J_heart_outlet", + "18502": "flow:CLH:J_heart_outlet", + "18503": "flow:CLH:J_heart_outlet", + "18504": "flow:CLH:J_heart_outlet", + "18505": "flow:CLH:J_heart_outlet", + "18506": "flow:CLH:J_heart_outlet", + "18507": "flow:CLH:J_heart_outlet", + "18508": "flow:CLH:J_heart_outlet", + "18509": "flow:CLH:J_heart_outlet", + "18510": "flow:CLH:J_heart_outlet", + "18511": "flow:CLH:J_heart_outlet", + "18512": "flow:CLH:J_heart_outlet", + "18513": "flow:CLH:J_heart_outlet", + "18514": "flow:CLH:J_heart_outlet", + "18515": "flow:CLH:J_heart_outlet", + "18516": "flow:CLH:J_heart_outlet", + "18517": "flow:CLH:J_heart_outlet", + "18518": "flow:CLH:J_heart_outlet", + "18519": "flow:CLH:J_heart_outlet", + "18520": "flow:CLH:J_heart_outlet", + "18521": "flow:CLH:J_heart_outlet", + "18522": "flow:CLH:J_heart_outlet", + "18523": "flow:CLH:J_heart_outlet", + "18524": "flow:CLH:J_heart_outlet", + "18525": "flow:CLH:J_heart_outlet", + "18526": "flow:CLH:J_heart_outlet", + "18527": "flow:CLH:J_heart_outlet", + "18528": "flow:CLH:J_heart_outlet", + "18529": "flow:CLH:J_heart_outlet", + "18530": "flow:CLH:J_heart_outlet", + "18531": "flow:CLH:J_heart_outlet", + "18532": "flow:CLH:J_heart_outlet", + "18533": "flow:CLH:J_heart_outlet", + "18534": "flow:CLH:J_heart_outlet", + "18535": "flow:CLH:J_heart_outlet", + "18536": "flow:CLH:J_heart_outlet", + "18537": "flow:CLH:J_heart_outlet", + "18538": "flow:CLH:J_heart_outlet", + "18539": "flow:CLH:J_heart_outlet", + "18540": "flow:CLH:J_heart_outlet", + "18541": "flow:CLH:J_heart_outlet", + "18542": "flow:CLH:J_heart_outlet", + "18543": "flow:CLH:J_heart_outlet", + "18544": "flow:CLH:J_heart_outlet", + "18545": "flow:CLH:J_heart_outlet", + "18546": "flow:CLH:J_heart_outlet", + "18547": "flow:CLH:J_heart_outlet", + "18548": "flow:CLH:J_heart_outlet", + "18549": "flow:CLH:J_heart_outlet", + "18550": "flow:CLH:J_heart_outlet", + "18551": "flow:CLH:J_heart_outlet", + "18552": "flow:CLH:J_heart_outlet", + "18553": "flow:CLH:J_heart_outlet", + "18554": "flow:CLH:J_heart_outlet", + "18555": "flow:CLH:J_heart_outlet", + "18556": "flow:CLH:J_heart_outlet", + "18557": "flow:CLH:J_heart_outlet", + "18558": "flow:CLH:J_heart_outlet", + "18559": "flow:CLH:J_heart_outlet", + "18560": "flow:CLH:J_heart_outlet", + "18561": "flow:CLH:J_heart_outlet", + "18562": "flow:CLH:J_heart_outlet", + "18563": "flow:CLH:J_heart_outlet", + "18564": "flow:CLH:J_heart_outlet", + "18565": "flow:CLH:J_heart_outlet", + "18566": "flow:CLH:J_heart_outlet", + "18567": "flow:CLH:J_heart_outlet", + "18568": "flow:CLH:J_heart_outlet", + "18569": "flow:CLH:J_heart_outlet", + "18570": "flow:CLH:J_heart_outlet", + "18571": "flow:CLH:J_heart_outlet", + "18572": "flow:CLH:J_heart_outlet", + "18573": "flow:CLH:J_heart_outlet", + "18574": "flow:CLH:J_heart_outlet", + "18575": "flow:CLH:J_heart_outlet", + "18576": "flow:CLH:J_heart_outlet", + "18577": "flow:CLH:J_heart_outlet", + "18578": "flow:CLH:J_heart_outlet", + "18579": "flow:CLH:J_heart_outlet", + "18580": "flow:CLH:J_heart_outlet", + "18581": "flow:CLH:J_heart_outlet", + "18582": "flow:CLH:J_heart_outlet", + "18583": "flow:CLH:J_heart_outlet", + "18584": "flow:CLH:J_heart_outlet", + "18585": "flow:CLH:J_heart_outlet", + "18586": "flow:CLH:J_heart_outlet", + "18587": "flow:CLH:J_heart_outlet", + "18588": "flow:CLH:J_heart_outlet", + "18589": "flow:CLH:J_heart_outlet", + "18590": "flow:CLH:J_heart_outlet", + "18591": "flow:CLH:J_heart_outlet", + "18592": "flow:CLH:J_heart_outlet", + "18593": "flow:CLH:J_heart_outlet", + "18594": "flow:CLH:J_heart_outlet", + "18595": "flow:CLH:J_heart_outlet", + "18596": "flow:CLH:J_heart_outlet", + "18597": "flow:CLH:J_heart_outlet", + "18598": "flow:CLH:J_heart_outlet", + "18599": "flow:CLH:J_heart_outlet", + "18600": "flow:CLH:J_heart_outlet", + "18601": "flow:CLH:J_heart_outlet", + "18602": "flow:CLH:J_heart_outlet", + "18603": "flow:CLH:J_heart_outlet", + "18604": "flow:CLH:J_heart_outlet", + "18605": "flow:CLH:J_heart_outlet", + "18606": "flow:CLH:J_heart_outlet", + "18607": "flow:CLH:J_heart_outlet", + "18608": "flow:CLH:J_heart_outlet", + "18609": "flow:CLH:J_heart_outlet", + "18610": "flow:CLH:J_heart_outlet", + "18611": "flow:CLH:J_heart_outlet", + "18612": "flow:CLH:J_heart_outlet", + "18613": "flow:CLH:J_heart_outlet", + "18614": "flow:CLH:J_heart_outlet", + "18615": "flow:CLH:J_heart_outlet", + "18616": "flow:CLH:J_heart_outlet", + "18617": "flow:CLH:J_heart_outlet", + "18618": "flow:CLH:J_heart_outlet", + "18619": "flow:CLH:J_heart_outlet", + "18620": "flow:CLH:J_heart_outlet", + "18621": "flow:CLH:J_heart_outlet", + "18622": "flow:CLH:J_heart_outlet", + "18623": "flow:CLH:J_heart_outlet", + "18624": "flow:CLH:J_heart_outlet", + "18625": "flow:CLH:J_heart_outlet", + "18626": "flow:CLH:J_heart_outlet", + "18627": "flow:CLH:J_heart_outlet", + "18628": "flow:CLH:J_heart_outlet", + "18629": "flow:CLH:J_heart_outlet", + "18630": "flow:CLH:J_heart_outlet", + "18631": "flow:CLH:J_heart_outlet", + "18632": "flow:CLH:J_heart_outlet", + "18633": "flow:CLH:J_heart_outlet", + "18634": "flow:CLH:J_heart_outlet", + "18635": "flow:CLH:J_heart_outlet", + "18636": "flow:CLH:J_heart_outlet", + "18637": "flow:CLH:J_heart_outlet", + "18638": "flow:CLH:J_heart_outlet", + "18639": "flow:CLH:J_heart_outlet", + "18640": "flow:CLH:J_heart_outlet", + "18641": "flow:CLH:J_heart_outlet", + "18642": "flow:CLH:J_heart_outlet", + "18643": "flow:CLH:J_heart_outlet", + "18644": "flow:CLH:J_heart_outlet", + "18645": "flow:CLH:J_heart_outlet", + "18646": "flow:CLH:J_heart_outlet", + "18647": "flow:CLH:J_heart_outlet", + "18648": "flow:CLH:J_heart_outlet", + "18649": "flow:CLH:J_heart_outlet", + "18650": "flow:CLH:J_heart_outlet", + "18651": "flow:CLH:J_heart_outlet", + "18652": "flow:CLH:J_heart_outlet", + "18653": "flow:CLH:J_heart_outlet", + "18654": "flow:CLH:J_heart_outlet", + "18655": "flow:CLH:J_heart_outlet", + "18656": "flow:CLH:J_heart_outlet", + "18657": "flow:CLH:J_heart_outlet", + "18658": "flow:CLH:J_heart_outlet", + "18659": "flow:CLH:J_heart_outlet", + "18660": "flow:CLH:J_heart_outlet", + "18661": "flow:CLH:J_heart_outlet", + "18662": "flow:CLH:J_heart_outlet", + "18663": "flow:CLH:J_heart_outlet", + "18664": "flow:CLH:J_heart_outlet", + "18665": "flow:CLH:J_heart_outlet", + "18666": "flow:CLH:J_heart_outlet", + "18667": "flow:CLH:J_heart_outlet", + "18668": "flow:CLH:J_heart_outlet", + "18669": "flow:CLH:J_heart_outlet", + "18670": "flow:CLH:J_heart_outlet", + "18671": "flow:CLH:J_heart_outlet", + "18672": "flow:CLH:J_heart_outlet", + "18673": "flow:CLH:J_heart_outlet", + "18674": "flow:CLH:J_heart_outlet", + "18675": "flow:CLH:J_heart_outlet", + "18676": "flow:CLH:J_heart_outlet", + "18677": "flow:CLH:J_heart_outlet", + "18678": "flow:CLH:J_heart_outlet", + "18679": "flow:CLH:J_heart_outlet", + "18680": "flow:CLH:J_heart_outlet", + "18681": "flow:CLH:J_heart_outlet", + "18682": "flow:CLH:J_heart_outlet", + "18683": "flow:CLH:J_heart_outlet", + "18684": "flow:CLH:J_heart_outlet", + "18685": "flow:CLH:J_heart_outlet", + "18686": "flow:CLH:J_heart_outlet", + "18687": "flow:CLH:J_heart_outlet", + "18688": "flow:CLH:J_heart_outlet", + "18689": "flow:CLH:J_heart_outlet", + "18690": "flow:CLH:J_heart_outlet", + "18691": "flow:CLH:J_heart_outlet", + "18692": "flow:CLH:J_heart_outlet", + "18693": "flow:CLH:J_heart_outlet", + "18694": "flow:CLH:J_heart_outlet", + "18695": "flow:CLH:J_heart_outlet", + "18696": "flow:CLH:J_heart_outlet", + "18697": "flow:CLH:J_heart_outlet", + "18698": "flow:CLH:J_heart_outlet", + "18699": "flow:CLH:J_heart_outlet", + "18700": "flow:CLH:J_heart_outlet", + "18701": "flow:CLH:J_heart_outlet", + "18702": "flow:CLH:J_heart_outlet", + "18703": "flow:CLH:J_heart_outlet", + "18704": "flow:CLH:J_heart_outlet", + "18705": "flow:CLH:J_heart_outlet", + "18706": "flow:CLH:J_heart_outlet", + "18707": "flow:CLH:J_heart_outlet", + "18708": "flow:CLH:J_heart_outlet", + "18709": "flow:CLH:J_heart_outlet", + "18710": "flow:CLH:J_heart_outlet", + "18711": "flow:CLH:J_heart_outlet", + "18712": "flow:CLH:J_heart_outlet", + "18713": "flow:CLH:J_heart_outlet", + "18714": "flow:CLH:J_heart_outlet", + "18715": "flow:CLH:J_heart_outlet", + "18716": "flow:CLH:J_heart_outlet", + "18717": "flow:CLH:J_heart_outlet", + "18718": "flow:CLH:J_heart_outlet", + "18719": "flow:CLH:J_heart_outlet", + "18720": "flow:CLH:J_heart_outlet", + "18721": "flow:CLH:J_heart_outlet", + "18722": "flow:CLH:J_heart_outlet", + "18723": "flow:CLH:J_heart_outlet", + "18724": "flow:CLH:J_heart_outlet", + "18725": "flow:CLH:J_heart_outlet", + "18726": "flow:CLH:J_heart_outlet", + "18727": "flow:CLH:J_heart_outlet", + "18728": "flow:CLH:J_heart_outlet", + "18729": "flow:CLH:J_heart_outlet", + "18730": "flow:CLH:J_heart_outlet", + "18731": "flow:CLH:J_heart_outlet", + "18732": "flow:CLH:J_heart_outlet", + "18733": "flow:CLH:J_heart_outlet", + "18734": "flow:CLH:J_heart_outlet", + "18735": "flow:CLH:J_heart_outlet", + "18736": "flow:CLH:J_heart_outlet", + "18737": "flow:CLH:J_heart_outlet", + "18738": "flow:CLH:J_heart_outlet", + "18739": "flow:CLH:J_heart_outlet", + "18740": "flow:CLH:J_heart_outlet", + "18741": "flow:CLH:J_heart_outlet", + "18742": "flow:CLH:J_heart_outlet", + "18743": "flow:CLH:J_heart_outlet", + "18744": "flow:CLH:J_heart_outlet", + "18745": "flow:CLH:J_heart_outlet", + "18746": "flow:CLH:J_heart_outlet", + "18747": "flow:CLH:J_heart_outlet", + "18748": "flow:CLH:J_heart_outlet", + "18749": "flow:CLH:J_heart_outlet", + "18750": "flow:CLH:J_heart_outlet", + "18751": "flow:CLH:J_heart_outlet", + "18752": "flow:CLH:J_heart_outlet", + "18753": "flow:CLH:J_heart_outlet", + "18754": "flow:CLH:J_heart_outlet", + "18755": "flow:CLH:J_heart_outlet", + "18756": "flow:CLH:J_heart_outlet", + "18757": "flow:CLH:J_heart_outlet", + "18758": "flow:CLH:J_heart_outlet", + "18759": "flow:CLH:J_heart_outlet", + "18760": "flow:CLH:J_heart_outlet", + "18761": "flow:CLH:J_heart_outlet", + "18762": "flow:CLH:J_heart_outlet", + "18763": "flow:CLH:J_heart_outlet", + "18764": "flow:CLH:J_heart_outlet", + "18765": "flow:CLH:J_heart_outlet", + "18766": "flow:CLH:J_heart_outlet", + "18767": "flow:CLH:J_heart_outlet", + "18768": "flow:CLH:J_heart_outlet", + "18769": "flow:CLH:J_heart_outlet", + "18770": "flow:CLH:J_heart_outlet", + "18771": "flow:CLH:J_heart_outlet", + "18772": "flow:CLH:J_heart_outlet", + "18773": "flow:CLH:J_heart_outlet", + "18774": "flow:CLH:J_heart_outlet", + "18775": "flow:CLH:J_heart_outlet", + "18776": "flow:CLH:J_heart_outlet", + "18777": "flow:CLH:J_heart_outlet", + "18778": "flow:CLH:J_heart_outlet", + "18779": "flow:CLH:J_heart_outlet", + "18780": "flow:CLH:J_heart_outlet", + "18781": "flow:CLH:J_heart_outlet", + "18782": "flow:CLH:J_heart_outlet", + "18783": "flow:CLH:J_heart_outlet", + "18784": "flow:CLH:J_heart_outlet", + "18785": "flow:CLH:J_heart_outlet", + "18786": "flow:CLH:J_heart_outlet", + "18787": "flow:CLH:J_heart_outlet", + "18788": "flow:CLH:J_heart_outlet", + "18789": "flow:CLH:J_heart_outlet", + "18790": "flow:CLH:J_heart_outlet", + "18791": "flow:CLH:J_heart_outlet", + "18792": "flow:CLH:J_heart_outlet", + "18793": "flow:CLH:J_heart_outlet", + "18794": "flow:CLH:J_heart_outlet", + "18795": "flow:CLH:J_heart_outlet", + "18796": "flow:CLH:J_heart_outlet", + "18797": "flow:CLH:J_heart_outlet", + "18798": "flow:CLH:J_heart_outlet", + "18799": "flow:CLH:J_heart_outlet", + "18800": "flow:CLH:J_heart_outlet", + "18801": "flow:CLH:J_heart_outlet", + "18802": "flow:CLH:J_heart_outlet", + "18803": "flow:CLH:J_heart_outlet", + "18804": "flow:CLH:J_heart_outlet", + "18805": "flow:CLH:J_heart_outlet", + "18806": "flow:CLH:J_heart_outlet", + "18807": "flow:CLH:J_heart_outlet", + "18808": "flow:CLH:J_heart_outlet", + "18809": "flow:CLH:J_heart_outlet", + "18810": "flow:CLH:J_heart_outlet", + "18811": "flow:CLH:J_heart_outlet", + "18812": "flow:CLH:J_heart_outlet", + "18813": "flow:CLH:J_heart_outlet", + "18814": "flow:CLH:J_heart_outlet", + "18815": "flow:CLH:J_heart_outlet", + "18816": "flow:CLH:J_heart_outlet", + "18817": "flow:CLH:J_heart_outlet", + "18818": "flow:CLH:J_heart_outlet", + "18819": "flow:CLH:J_heart_outlet", + "18820": "flow:CLH:J_heart_outlet", + "18821": "flow:CLH:J_heart_outlet", + "18822": "flow:CLH:J_heart_outlet", + "18823": "flow:CLH:J_heart_outlet", + "18824": "flow:CLH:J_heart_outlet", + "18825": "flow:CLH:J_heart_outlet", + "18826": "flow:CLH:J_heart_outlet", + "18827": "flow:CLH:J_heart_outlet", + "18828": "flow:CLH:J_heart_outlet", + "18829": "flow:CLH:J_heart_outlet", + "18830": "flow:CLH:J_heart_outlet", + "18831": "flow:CLH:J_heart_outlet", + "18832": "flow:CLH:J_heart_outlet", + "18833": "flow:CLH:J_heart_outlet", + "18834": "flow:CLH:J_heart_outlet", + "18835": "flow:CLH:J_heart_outlet", + "18836": "flow:CLH:J_heart_outlet", + "18837": "flow:CLH:J_heart_outlet", + "18838": "flow:CLH:J_heart_outlet", + "18839": "flow:CLH:J_heart_outlet", + "18840": "flow:CLH:J_heart_outlet", + "18841": "flow:CLH:J_heart_outlet", + "18842": "flow:CLH:J_heart_outlet", + "18843": "flow:CLH:J_heart_outlet", + "18844": "flow:CLH:J_heart_outlet", + "18845": "flow:CLH:J_heart_outlet", + "18846": "flow:CLH:J_heart_outlet", + "18847": "flow:CLH:J_heart_outlet", + "18848": "flow:CLH:J_heart_outlet", + "18849": "flow:CLH:J_heart_outlet", + "18850": "flow:CLH:J_heart_outlet", + "18851": "flow:CLH:J_heart_outlet", + "18852": "flow:CLH:J_heart_outlet", + "18853": "flow:CLH:J_heart_outlet", + "18854": "flow:CLH:J_heart_outlet", + "18855": "flow:CLH:J_heart_outlet", + "18856": "flow:CLH:J_heart_outlet", + "18857": "flow:CLH:J_heart_outlet", + "18858": "flow:CLH:J_heart_outlet", + "18859": "flow:CLH:J_heart_outlet", + "18860": "flow:CLH:J_heart_outlet", + "18861": "flow:CLH:J_heart_outlet", + "18862": "flow:CLH:J_heart_outlet", + "18863": "flow:CLH:J_heart_outlet", + "18864": "flow:CLH:J_heart_outlet", + "18865": "flow:CLH:J_heart_outlet", + "18866": "flow:CLH:J_heart_outlet", + "18867": "flow:CLH:J_heart_outlet", + "18868": "flow:CLH:J_heart_outlet", + "18869": "flow:CLH:J_heart_outlet", + "18870": "flow:CLH:J_heart_outlet", + "18871": "flow:CLH:J_heart_outlet", + "18872": "flow:CLH:J_heart_outlet", + "18873": "flow:CLH:J_heart_outlet", + "18874": "flow:CLH:J_heart_outlet", + "18875": "flow:CLH:J_heart_outlet", + "18876": "flow:CLH:J_heart_outlet", + "18877": "flow:CLH:J_heart_outlet", + "18878": "flow:CLH:J_heart_outlet", + "18879": "flow:CLH:J_heart_outlet", + "18880": "flow:CLH:J_heart_outlet", + "18881": "flow:CLH:J_heart_outlet", + "18882": "flow:CLH:J_heart_outlet", + "18883": "flow:CLH:J_heart_outlet", + "18884": "flow:CLH:J_heart_outlet", + "18885": "flow:CLH:J_heart_outlet", + "18886": "flow:CLH:J_heart_outlet", + "18887": "flow:CLH:J_heart_outlet", + "18888": "flow:CLH:J_heart_outlet", + "18889": "flow:CLH:J_heart_outlet", + "18890": "flow:CLH:J_heart_outlet", + "18891": "flow:CLH:J_heart_outlet", + "18892": "flow:CLH:J_heart_outlet", + "18893": "flow:CLH:J_heart_outlet", + "18894": "flow:CLH:J_heart_outlet", + "18895": "flow:CLH:J_heart_outlet", + "18896": "flow:CLH:J_heart_outlet", + "18897": "flow:CLH:J_heart_outlet", + "18898": "flow:CLH:J_heart_outlet", + "18899": "flow:CLH:J_heart_outlet", + "18900": "flow:CLH:J_heart_outlet", + "18901": "flow:CLH:J_heart_outlet", + "18902": "flow:CLH:J_heart_outlet", + "18903": "flow:CLH:J_heart_outlet", + "18904": "flow:CLH:J_heart_outlet", + "18905": "flow:CLH:J_heart_outlet", + "18906": "flow:CLH:J_heart_outlet", + "18907": "flow:CLH:J_heart_outlet", + "18908": "flow:CLH:J_heart_outlet", + "18909": "flow:CLH:J_heart_outlet", + "18910": "flow:CLH:J_heart_outlet", + "18911": "flow:CLH:J_heart_outlet", + "18912": "flow:CLH:J_heart_outlet", + "18913": "flow:CLH:J_heart_outlet", + "18914": "flow:CLH:J_heart_outlet", + "18915": "flow:CLH:J_heart_outlet", + "18916": "flow:CLH:J_heart_outlet", + "18917": "flow:CLH:J_heart_outlet", + "18918": "flow:CLH:J_heart_outlet", + "18919": "flow:CLH:J_heart_outlet", + "18920": "flow:CLH:J_heart_outlet", + "18921": "flow:CLH:J_heart_outlet", + "18922": "flow:CLH:J_heart_outlet", + "18923": "flow:CLH:J_heart_outlet", + "18924": "flow:CLH:J_heart_outlet", + "18925": "flow:CLH:J_heart_outlet", + "18926": "flow:CLH:J_heart_outlet", + "18927": "flow:CLH:J_heart_outlet", + "18928": "flow:CLH:J_heart_outlet", + "18929": "flow:CLH:J_heart_outlet", + "18930": "flow:CLH:J_heart_outlet", + "18931": "flow:CLH:J_heart_outlet", + "18932": "flow:CLH:J_heart_outlet", + "18933": "flow:CLH:J_heart_outlet", + "18934": "flow:CLH:J_heart_outlet", + "18935": "flow:CLH:J_heart_outlet", + "18936": "flow:CLH:J_heart_outlet", + "18937": "flow:CLH:J_heart_outlet", + "18938": "flow:CLH:J_heart_outlet", + "18939": "flow:CLH:J_heart_outlet", + "18940": "flow:CLH:J_heart_outlet", + "18941": "flow:CLH:J_heart_outlet", + "18942": "flow:CLH:J_heart_outlet", + "18943": "flow:CLH:J_heart_outlet", + "18944": "flow:CLH:J_heart_outlet", + "18945": "flow:CLH:J_heart_outlet", + "18946": "flow:CLH:J_heart_outlet", + "18947": "flow:CLH:J_heart_outlet", + "18948": "flow:CLH:J_heart_outlet", + "18949": "flow:CLH:J_heart_outlet", + "18950": "flow:CLH:J_heart_outlet", + "18951": "flow:CLH:J_heart_outlet", + "18952": "flow:CLH:J_heart_outlet", + "18953": "flow:CLH:J_heart_outlet", + "18954": "flow:CLH:J_heart_outlet", + "18955": "flow:CLH:J_heart_outlet", + "18956": "flow:CLH:J_heart_outlet", + "18957": "flow:CLH:J_heart_outlet", + "18958": "flow:CLH:J_heart_outlet", + "18959": "flow:CLH:J_heart_outlet", + "18960": "flow:CLH:J_heart_outlet", + "18961": "flow:CLH:J_heart_outlet", + "18962": "flow:CLH:J_heart_outlet", + "18963": "flow:CLH:J_heart_outlet", + "18964": "flow:CLH:J_heart_outlet", + "18965": "flow:CLH:J_heart_outlet", + "18966": "flow:CLH:J_heart_outlet", + "18967": "flow:CLH:J_heart_outlet", + "18968": "flow:CLH:J_heart_outlet", + "18969": "flow:CLH:J_heart_outlet", + "18970": "flow:CLH:J_heart_outlet", + "18971": "flow:CLH:J_heart_outlet", + "18972": "flow:CLH:J_heart_outlet", + "18973": "flow:CLH:J_heart_outlet", + "18974": "flow:CLH:J_heart_outlet", + "18975": "flow:CLH:J_heart_outlet", + "18976": "flow:CLH:J_heart_outlet", + "18977": "flow:CLH:J_heart_outlet", + "18978": "flow:CLH:J_heart_outlet", + "18979": "flow:CLH:J_heart_outlet", + "18980": "flow:CLH:J_heart_outlet", + "18981": "flow:CLH:J_heart_outlet", + "18982": "flow:CLH:J_heart_outlet", + "18983": "flow:CLH:J_heart_outlet", + "18984": "flow:CLH:J_heart_outlet", + "18985": "flow:CLH:J_heart_outlet", + "18986": "flow:CLH:J_heart_outlet", + "18987": "flow:CLH:J_heart_outlet", + "18988": "flow:CLH:J_heart_outlet", + "18989": "flow:CLH:J_heart_outlet", + "18990": "flow:CLH:J_heart_outlet", + "18991": "flow:CLH:J_heart_outlet", + "18992": "flow:CLH:J_heart_outlet", + "18993": "flow:CLH:J_heart_outlet", + "18994": "flow:CLH:J_heart_outlet", + "18995": "flow:CLH:J_heart_outlet", + "18996": "flow:CLH:J_heart_outlet", + "18997": "flow:CLH:J_heart_outlet", + "18998": "flow:CLH:J_heart_outlet", + "18999": "flow:CLH:J_heart_outlet", + "19000": "pressure:CLH:J_heart_outlet", + "19001": "pressure:CLH:J_heart_outlet", + "19002": "pressure:CLH:J_heart_outlet", + "19003": "pressure:CLH:J_heart_outlet", + "19004": "pressure:CLH:J_heart_outlet", + "19005": "pressure:CLH:J_heart_outlet", + "19006": "pressure:CLH:J_heart_outlet", + "19007": "pressure:CLH:J_heart_outlet", + "19008": "pressure:CLH:J_heart_outlet", + "19009": "pressure:CLH:J_heart_outlet", + "19010": "pressure:CLH:J_heart_outlet", + "19011": "pressure:CLH:J_heart_outlet", + "19012": "pressure:CLH:J_heart_outlet", + "19013": "pressure:CLH:J_heart_outlet", + "19014": "pressure:CLH:J_heart_outlet", + "19015": "pressure:CLH:J_heart_outlet", + "19016": "pressure:CLH:J_heart_outlet", + "19017": "pressure:CLH:J_heart_outlet", + "19018": "pressure:CLH:J_heart_outlet", + "19019": "pressure:CLH:J_heart_outlet", + "19020": "pressure:CLH:J_heart_outlet", + "19021": "pressure:CLH:J_heart_outlet", + "19022": "pressure:CLH:J_heart_outlet", + "19023": "pressure:CLH:J_heart_outlet", + "19024": "pressure:CLH:J_heart_outlet", + "19025": "pressure:CLH:J_heart_outlet", + "19026": "pressure:CLH:J_heart_outlet", + "19027": "pressure:CLH:J_heart_outlet", + "19028": "pressure:CLH:J_heart_outlet", + "19029": "pressure:CLH:J_heart_outlet", + "19030": "pressure:CLH:J_heart_outlet", + "19031": "pressure:CLH:J_heart_outlet", + "19032": "pressure:CLH:J_heart_outlet", + "19033": "pressure:CLH:J_heart_outlet", + "19034": "pressure:CLH:J_heart_outlet", + "19035": "pressure:CLH:J_heart_outlet", + "19036": "pressure:CLH:J_heart_outlet", + "19037": "pressure:CLH:J_heart_outlet", + "19038": "pressure:CLH:J_heart_outlet", + "19039": "pressure:CLH:J_heart_outlet", + "19040": "pressure:CLH:J_heart_outlet", + "19041": "pressure:CLH:J_heart_outlet", + "19042": "pressure:CLH:J_heart_outlet", + "19043": "pressure:CLH:J_heart_outlet", + "19044": "pressure:CLH:J_heart_outlet", + "19045": "pressure:CLH:J_heart_outlet", + "19046": "pressure:CLH:J_heart_outlet", + "19047": "pressure:CLH:J_heart_outlet", + "19048": "pressure:CLH:J_heart_outlet", + "19049": "pressure:CLH:J_heart_outlet", + "19050": "pressure:CLH:J_heart_outlet", + "19051": "pressure:CLH:J_heart_outlet", + "19052": "pressure:CLH:J_heart_outlet", + "19053": "pressure:CLH:J_heart_outlet", + "19054": "pressure:CLH:J_heart_outlet", + "19055": "pressure:CLH:J_heart_outlet", + "19056": "pressure:CLH:J_heart_outlet", + "19057": "pressure:CLH:J_heart_outlet", + "19058": "pressure:CLH:J_heart_outlet", + "19059": "pressure:CLH:J_heart_outlet", + "19060": "pressure:CLH:J_heart_outlet", + "19061": "pressure:CLH:J_heart_outlet", + "19062": "pressure:CLH:J_heart_outlet", + "19063": "pressure:CLH:J_heart_outlet", + "19064": "pressure:CLH:J_heart_outlet", + "19065": "pressure:CLH:J_heart_outlet", + "19066": "pressure:CLH:J_heart_outlet", + "19067": "pressure:CLH:J_heart_outlet", + "19068": "pressure:CLH:J_heart_outlet", + "19069": "pressure:CLH:J_heart_outlet", + "19070": "pressure:CLH:J_heart_outlet", + "19071": "pressure:CLH:J_heart_outlet", + "19072": "pressure:CLH:J_heart_outlet", + "19073": "pressure:CLH:J_heart_outlet", + "19074": "pressure:CLH:J_heart_outlet", + "19075": "pressure:CLH:J_heart_outlet", + "19076": "pressure:CLH:J_heart_outlet", + "19077": "pressure:CLH:J_heart_outlet", + "19078": "pressure:CLH:J_heart_outlet", + "19079": "pressure:CLH:J_heart_outlet", + "19080": "pressure:CLH:J_heart_outlet", + "19081": "pressure:CLH:J_heart_outlet", + "19082": "pressure:CLH:J_heart_outlet", + "19083": "pressure:CLH:J_heart_outlet", + "19084": "pressure:CLH:J_heart_outlet", + "19085": "pressure:CLH:J_heart_outlet", + "19086": "pressure:CLH:J_heart_outlet", + "19087": "pressure:CLH:J_heart_outlet", + "19088": "pressure:CLH:J_heart_outlet", + "19089": "pressure:CLH:J_heart_outlet", + "19090": "pressure:CLH:J_heart_outlet", + "19091": "pressure:CLH:J_heart_outlet", + "19092": "pressure:CLH:J_heart_outlet", + "19093": "pressure:CLH:J_heart_outlet", + "19094": "pressure:CLH:J_heart_outlet", + "19095": "pressure:CLH:J_heart_outlet", + "19096": "pressure:CLH:J_heart_outlet", + "19097": "pressure:CLH:J_heart_outlet", + "19098": "pressure:CLH:J_heart_outlet", + "19099": "pressure:CLH:J_heart_outlet", + "19100": "pressure:CLH:J_heart_outlet", + "19101": "pressure:CLH:J_heart_outlet", + "19102": "pressure:CLH:J_heart_outlet", + "19103": "pressure:CLH:J_heart_outlet", + "19104": "pressure:CLH:J_heart_outlet", + "19105": "pressure:CLH:J_heart_outlet", + "19106": "pressure:CLH:J_heart_outlet", + "19107": "pressure:CLH:J_heart_outlet", + "19108": "pressure:CLH:J_heart_outlet", + "19109": "pressure:CLH:J_heart_outlet", + "19110": "pressure:CLH:J_heart_outlet", + "19111": "pressure:CLH:J_heart_outlet", + "19112": "pressure:CLH:J_heart_outlet", + "19113": "pressure:CLH:J_heart_outlet", + "19114": "pressure:CLH:J_heart_outlet", + "19115": "pressure:CLH:J_heart_outlet", + "19116": "pressure:CLH:J_heart_outlet", + "19117": "pressure:CLH:J_heart_outlet", + "19118": "pressure:CLH:J_heart_outlet", + "19119": "pressure:CLH:J_heart_outlet", + "19120": "pressure:CLH:J_heart_outlet", + "19121": "pressure:CLH:J_heart_outlet", + "19122": "pressure:CLH:J_heart_outlet", + "19123": "pressure:CLH:J_heart_outlet", + "19124": "pressure:CLH:J_heart_outlet", + "19125": "pressure:CLH:J_heart_outlet", + "19126": "pressure:CLH:J_heart_outlet", + "19127": "pressure:CLH:J_heart_outlet", + "19128": "pressure:CLH:J_heart_outlet", + "19129": "pressure:CLH:J_heart_outlet", + "19130": "pressure:CLH:J_heart_outlet", + "19131": "pressure:CLH:J_heart_outlet", + "19132": "pressure:CLH:J_heart_outlet", + "19133": "pressure:CLH:J_heart_outlet", + "19134": "pressure:CLH:J_heart_outlet", + "19135": "pressure:CLH:J_heart_outlet", + "19136": "pressure:CLH:J_heart_outlet", + "19137": "pressure:CLH:J_heart_outlet", + "19138": "pressure:CLH:J_heart_outlet", + "19139": "pressure:CLH:J_heart_outlet", + "19140": "pressure:CLH:J_heart_outlet", + "19141": "pressure:CLH:J_heart_outlet", + "19142": "pressure:CLH:J_heart_outlet", + "19143": "pressure:CLH:J_heart_outlet", + "19144": "pressure:CLH:J_heart_outlet", + "19145": "pressure:CLH:J_heart_outlet", + "19146": "pressure:CLH:J_heart_outlet", + "19147": "pressure:CLH:J_heart_outlet", + "19148": "pressure:CLH:J_heart_outlet", + "19149": "pressure:CLH:J_heart_outlet", + "19150": "pressure:CLH:J_heart_outlet", + "19151": "pressure:CLH:J_heart_outlet", + "19152": "pressure:CLH:J_heart_outlet", + "19153": "pressure:CLH:J_heart_outlet", + "19154": "pressure:CLH:J_heart_outlet", + "19155": "pressure:CLH:J_heart_outlet", + "19156": "pressure:CLH:J_heart_outlet", + "19157": "pressure:CLH:J_heart_outlet", + "19158": "pressure:CLH:J_heart_outlet", + "19159": "pressure:CLH:J_heart_outlet", + "19160": "pressure:CLH:J_heart_outlet", + "19161": "pressure:CLH:J_heart_outlet", + "19162": "pressure:CLH:J_heart_outlet", + "19163": "pressure:CLH:J_heart_outlet", + "19164": "pressure:CLH:J_heart_outlet", + "19165": "pressure:CLH:J_heart_outlet", + "19166": "pressure:CLH:J_heart_outlet", + "19167": "pressure:CLH:J_heart_outlet", + "19168": "pressure:CLH:J_heart_outlet", + "19169": "pressure:CLH:J_heart_outlet", + "19170": "pressure:CLH:J_heart_outlet", + "19171": "pressure:CLH:J_heart_outlet", + "19172": "pressure:CLH:J_heart_outlet", + "19173": "pressure:CLH:J_heart_outlet", + "19174": "pressure:CLH:J_heart_outlet", + "19175": "pressure:CLH:J_heart_outlet", + "19176": "pressure:CLH:J_heart_outlet", + "19177": "pressure:CLH:J_heart_outlet", + "19178": "pressure:CLH:J_heart_outlet", + "19179": "pressure:CLH:J_heart_outlet", + "19180": "pressure:CLH:J_heart_outlet", + "19181": "pressure:CLH:J_heart_outlet", + "19182": "pressure:CLH:J_heart_outlet", + "19183": "pressure:CLH:J_heart_outlet", + "19184": "pressure:CLH:J_heart_outlet", + "19185": "pressure:CLH:J_heart_outlet", + "19186": "pressure:CLH:J_heart_outlet", + "19187": "pressure:CLH:J_heart_outlet", + "19188": "pressure:CLH:J_heart_outlet", + "19189": "pressure:CLH:J_heart_outlet", + "19190": "pressure:CLH:J_heart_outlet", + "19191": "pressure:CLH:J_heart_outlet", + "19192": "pressure:CLH:J_heart_outlet", + "19193": "pressure:CLH:J_heart_outlet", + "19194": "pressure:CLH:J_heart_outlet", + "19195": "pressure:CLH:J_heart_outlet", + "19196": "pressure:CLH:J_heart_outlet", + "19197": "pressure:CLH:J_heart_outlet", + "19198": "pressure:CLH:J_heart_outlet", + "19199": "pressure:CLH:J_heart_outlet", + "19200": "pressure:CLH:J_heart_outlet", + "19201": "pressure:CLH:J_heart_outlet", + "19202": "pressure:CLH:J_heart_outlet", + "19203": "pressure:CLH:J_heart_outlet", + "19204": "pressure:CLH:J_heart_outlet", + "19205": "pressure:CLH:J_heart_outlet", + "19206": "pressure:CLH:J_heart_outlet", + "19207": "pressure:CLH:J_heart_outlet", + "19208": "pressure:CLH:J_heart_outlet", + "19209": "pressure:CLH:J_heart_outlet", + "19210": "pressure:CLH:J_heart_outlet", + "19211": "pressure:CLH:J_heart_outlet", + "19212": "pressure:CLH:J_heart_outlet", + "19213": "pressure:CLH:J_heart_outlet", + "19214": "pressure:CLH:J_heart_outlet", + "19215": "pressure:CLH:J_heart_outlet", + "19216": "pressure:CLH:J_heart_outlet", + "19217": "pressure:CLH:J_heart_outlet", + "19218": "pressure:CLH:J_heart_outlet", + "19219": "pressure:CLH:J_heart_outlet", + "19220": "pressure:CLH:J_heart_outlet", + "19221": "pressure:CLH:J_heart_outlet", + "19222": "pressure:CLH:J_heart_outlet", + "19223": "pressure:CLH:J_heart_outlet", + "19224": "pressure:CLH:J_heart_outlet", + "19225": "pressure:CLH:J_heart_outlet", + "19226": "pressure:CLH:J_heart_outlet", + "19227": "pressure:CLH:J_heart_outlet", + "19228": "pressure:CLH:J_heart_outlet", + "19229": "pressure:CLH:J_heart_outlet", + "19230": "pressure:CLH:J_heart_outlet", + "19231": "pressure:CLH:J_heart_outlet", + "19232": "pressure:CLH:J_heart_outlet", + "19233": "pressure:CLH:J_heart_outlet", + "19234": "pressure:CLH:J_heart_outlet", + "19235": "pressure:CLH:J_heart_outlet", + "19236": "pressure:CLH:J_heart_outlet", + "19237": "pressure:CLH:J_heart_outlet", + "19238": "pressure:CLH:J_heart_outlet", + "19239": "pressure:CLH:J_heart_outlet", + "19240": "pressure:CLH:J_heart_outlet", + "19241": "pressure:CLH:J_heart_outlet", + "19242": "pressure:CLH:J_heart_outlet", + "19243": "pressure:CLH:J_heart_outlet", + "19244": "pressure:CLH:J_heart_outlet", + "19245": "pressure:CLH:J_heart_outlet", + "19246": "pressure:CLH:J_heart_outlet", + "19247": "pressure:CLH:J_heart_outlet", + "19248": "pressure:CLH:J_heart_outlet", + "19249": "pressure:CLH:J_heart_outlet", + "19250": "pressure:CLH:J_heart_outlet", + "19251": "pressure:CLH:J_heart_outlet", + "19252": "pressure:CLH:J_heart_outlet", + "19253": "pressure:CLH:J_heart_outlet", + "19254": "pressure:CLH:J_heart_outlet", + "19255": "pressure:CLH:J_heart_outlet", + "19256": "pressure:CLH:J_heart_outlet", + "19257": "pressure:CLH:J_heart_outlet", + "19258": "pressure:CLH:J_heart_outlet", + "19259": "pressure:CLH:J_heart_outlet", + "19260": "pressure:CLH:J_heart_outlet", + "19261": "pressure:CLH:J_heart_outlet", + "19262": "pressure:CLH:J_heart_outlet", + "19263": "pressure:CLH:J_heart_outlet", + "19264": "pressure:CLH:J_heart_outlet", + "19265": "pressure:CLH:J_heart_outlet", + "19266": "pressure:CLH:J_heart_outlet", + "19267": "pressure:CLH:J_heart_outlet", + "19268": "pressure:CLH:J_heart_outlet", + "19269": "pressure:CLH:J_heart_outlet", + "19270": "pressure:CLH:J_heart_outlet", + "19271": "pressure:CLH:J_heart_outlet", + "19272": "pressure:CLH:J_heart_outlet", + "19273": "pressure:CLH:J_heart_outlet", + "19274": "pressure:CLH:J_heart_outlet", + "19275": "pressure:CLH:J_heart_outlet", + "19276": "pressure:CLH:J_heart_outlet", + "19277": "pressure:CLH:J_heart_outlet", + "19278": "pressure:CLH:J_heart_outlet", + "19279": "pressure:CLH:J_heart_outlet", + "19280": "pressure:CLH:J_heart_outlet", + "19281": "pressure:CLH:J_heart_outlet", + "19282": "pressure:CLH:J_heart_outlet", + "19283": "pressure:CLH:J_heart_outlet", + "19284": "pressure:CLH:J_heart_outlet", + "19285": "pressure:CLH:J_heart_outlet", + "19286": "pressure:CLH:J_heart_outlet", + "19287": "pressure:CLH:J_heart_outlet", + "19288": "pressure:CLH:J_heart_outlet", + "19289": "pressure:CLH:J_heart_outlet", + "19290": "pressure:CLH:J_heart_outlet", + "19291": "pressure:CLH:J_heart_outlet", + "19292": "pressure:CLH:J_heart_outlet", + "19293": "pressure:CLH:J_heart_outlet", + "19294": "pressure:CLH:J_heart_outlet", + "19295": "pressure:CLH:J_heart_outlet", + "19296": "pressure:CLH:J_heart_outlet", + "19297": "pressure:CLH:J_heart_outlet", + "19298": "pressure:CLH:J_heart_outlet", + "19299": "pressure:CLH:J_heart_outlet", + "19300": "pressure:CLH:J_heart_outlet", + "19301": "pressure:CLH:J_heart_outlet", + "19302": "pressure:CLH:J_heart_outlet", + "19303": "pressure:CLH:J_heart_outlet", + "19304": "pressure:CLH:J_heart_outlet", + "19305": "pressure:CLH:J_heart_outlet", + "19306": "pressure:CLH:J_heart_outlet", + "19307": "pressure:CLH:J_heart_outlet", + "19308": "pressure:CLH:J_heart_outlet", + "19309": "pressure:CLH:J_heart_outlet", + "19310": "pressure:CLH:J_heart_outlet", + "19311": "pressure:CLH:J_heart_outlet", + "19312": "pressure:CLH:J_heart_outlet", + "19313": "pressure:CLH:J_heart_outlet", + "19314": "pressure:CLH:J_heart_outlet", + "19315": "pressure:CLH:J_heart_outlet", + "19316": "pressure:CLH:J_heart_outlet", + "19317": "pressure:CLH:J_heart_outlet", + "19318": "pressure:CLH:J_heart_outlet", + "19319": "pressure:CLH:J_heart_outlet", + "19320": "pressure:CLH:J_heart_outlet", + "19321": "pressure:CLH:J_heart_outlet", + "19322": "pressure:CLH:J_heart_outlet", + "19323": "pressure:CLH:J_heart_outlet", + "19324": "pressure:CLH:J_heart_outlet", + "19325": "pressure:CLH:J_heart_outlet", + "19326": "pressure:CLH:J_heart_outlet", + "19327": "pressure:CLH:J_heart_outlet", + "19328": "pressure:CLH:J_heart_outlet", + "19329": "pressure:CLH:J_heart_outlet", + "19330": "pressure:CLH:J_heart_outlet", + "19331": "pressure:CLH:J_heart_outlet", + "19332": "pressure:CLH:J_heart_outlet", + "19333": "pressure:CLH:J_heart_outlet", + "19334": "pressure:CLH:J_heart_outlet", + "19335": "pressure:CLH:J_heart_outlet", + "19336": "pressure:CLH:J_heart_outlet", + "19337": "pressure:CLH:J_heart_outlet", + "19338": "pressure:CLH:J_heart_outlet", + "19339": "pressure:CLH:J_heart_outlet", + "19340": "pressure:CLH:J_heart_outlet", + "19341": "pressure:CLH:J_heart_outlet", + "19342": "pressure:CLH:J_heart_outlet", + "19343": "pressure:CLH:J_heart_outlet", + "19344": "pressure:CLH:J_heart_outlet", + "19345": "pressure:CLH:J_heart_outlet", + "19346": "pressure:CLH:J_heart_outlet", + "19347": "pressure:CLH:J_heart_outlet", + "19348": "pressure:CLH:J_heart_outlet", + "19349": "pressure:CLH:J_heart_outlet", + "19350": "pressure:CLH:J_heart_outlet", + "19351": "pressure:CLH:J_heart_outlet", + "19352": "pressure:CLH:J_heart_outlet", + "19353": "pressure:CLH:J_heart_outlet", + "19354": "pressure:CLH:J_heart_outlet", + "19355": "pressure:CLH:J_heart_outlet", + "19356": "pressure:CLH:J_heart_outlet", + "19357": "pressure:CLH:J_heart_outlet", + "19358": "pressure:CLH:J_heart_outlet", + "19359": "pressure:CLH:J_heart_outlet", + "19360": "pressure:CLH:J_heart_outlet", + "19361": "pressure:CLH:J_heart_outlet", + "19362": "pressure:CLH:J_heart_outlet", + "19363": "pressure:CLH:J_heart_outlet", + "19364": "pressure:CLH:J_heart_outlet", + "19365": "pressure:CLH:J_heart_outlet", + "19366": "pressure:CLH:J_heart_outlet", + "19367": "pressure:CLH:J_heart_outlet", + "19368": "pressure:CLH:J_heart_outlet", + "19369": "pressure:CLH:J_heart_outlet", + "19370": "pressure:CLH:J_heart_outlet", + "19371": "pressure:CLH:J_heart_outlet", + "19372": "pressure:CLH:J_heart_outlet", + "19373": "pressure:CLH:J_heart_outlet", + "19374": "pressure:CLH:J_heart_outlet", + "19375": "pressure:CLH:J_heart_outlet", + "19376": "pressure:CLH:J_heart_outlet", + "19377": "pressure:CLH:J_heart_outlet", + "19378": "pressure:CLH:J_heart_outlet", + "19379": "pressure:CLH:J_heart_outlet", + "19380": "pressure:CLH:J_heart_outlet", + "19381": "pressure:CLH:J_heart_outlet", + "19382": "pressure:CLH:J_heart_outlet", + "19383": "pressure:CLH:J_heart_outlet", + "19384": "pressure:CLH:J_heart_outlet", + "19385": "pressure:CLH:J_heart_outlet", + "19386": "pressure:CLH:J_heart_outlet", + "19387": "pressure:CLH:J_heart_outlet", + "19388": "pressure:CLH:J_heart_outlet", + "19389": "pressure:CLH:J_heart_outlet", + "19390": "pressure:CLH:J_heart_outlet", + "19391": "pressure:CLH:J_heart_outlet", + "19392": "pressure:CLH:J_heart_outlet", + "19393": "pressure:CLH:J_heart_outlet", + "19394": "pressure:CLH:J_heart_outlet", + "19395": "pressure:CLH:J_heart_outlet", + "19396": "pressure:CLH:J_heart_outlet", + "19397": "pressure:CLH:J_heart_outlet", + "19398": "pressure:CLH:J_heart_outlet", + "19399": "pressure:CLH:J_heart_outlet", + "19400": "pressure:CLH:J_heart_outlet", + "19401": "pressure:CLH:J_heart_outlet", + "19402": "pressure:CLH:J_heart_outlet", + "19403": "pressure:CLH:J_heart_outlet", + "19404": "pressure:CLH:J_heart_outlet", + "19405": "pressure:CLH:J_heart_outlet", + "19406": "pressure:CLH:J_heart_outlet", + "19407": "pressure:CLH:J_heart_outlet", + "19408": "pressure:CLH:J_heart_outlet", + "19409": "pressure:CLH:J_heart_outlet", + "19410": "pressure:CLH:J_heart_outlet", + "19411": "pressure:CLH:J_heart_outlet", + "19412": "pressure:CLH:J_heart_outlet", + "19413": "pressure:CLH:J_heart_outlet", + "19414": "pressure:CLH:J_heart_outlet", + "19415": "pressure:CLH:J_heart_outlet", + "19416": "pressure:CLH:J_heart_outlet", + "19417": "pressure:CLH:J_heart_outlet", + "19418": "pressure:CLH:J_heart_outlet", + "19419": "pressure:CLH:J_heart_outlet", + "19420": "pressure:CLH:J_heart_outlet", + "19421": "pressure:CLH:J_heart_outlet", + "19422": "pressure:CLH:J_heart_outlet", + "19423": "pressure:CLH:J_heart_outlet", + "19424": "pressure:CLH:J_heart_outlet", + "19425": "pressure:CLH:J_heart_outlet", + "19426": "pressure:CLH:J_heart_outlet", + "19427": "pressure:CLH:J_heart_outlet", + "19428": "pressure:CLH:J_heart_outlet", + "19429": "pressure:CLH:J_heart_outlet", + "19430": "pressure:CLH:J_heart_outlet", + "19431": "pressure:CLH:J_heart_outlet", + "19432": "pressure:CLH:J_heart_outlet", + "19433": "pressure:CLH:J_heart_outlet", + "19434": "pressure:CLH:J_heart_outlet", + "19435": "pressure:CLH:J_heart_outlet", + "19436": "pressure:CLH:J_heart_outlet", + "19437": "pressure:CLH:J_heart_outlet", + "19438": "pressure:CLH:J_heart_outlet", + "19439": "pressure:CLH:J_heart_outlet", + "19440": "pressure:CLH:J_heart_outlet", + "19441": "pressure:CLH:J_heart_outlet", + "19442": "pressure:CLH:J_heart_outlet", + "19443": "pressure:CLH:J_heart_outlet", + "19444": "pressure:CLH:J_heart_outlet", + "19445": "pressure:CLH:J_heart_outlet", + "19446": "pressure:CLH:J_heart_outlet", + "19447": "pressure:CLH:J_heart_outlet", + "19448": "pressure:CLH:J_heart_outlet", + "19449": "pressure:CLH:J_heart_outlet", + "19450": "pressure:CLH:J_heart_outlet", + "19451": "pressure:CLH:J_heart_outlet", + "19452": "pressure:CLH:J_heart_outlet", + "19453": "pressure:CLH:J_heart_outlet", + "19454": "pressure:CLH:J_heart_outlet", + "19455": "pressure:CLH:J_heart_outlet", + "19456": "pressure:CLH:J_heart_outlet", + "19457": "pressure:CLH:J_heart_outlet", + "19458": "pressure:CLH:J_heart_outlet", + "19459": "pressure:CLH:J_heart_outlet", + "19460": "pressure:CLH:J_heart_outlet", + "19461": "pressure:CLH:J_heart_outlet", + "19462": "pressure:CLH:J_heart_outlet", + "19463": "pressure:CLH:J_heart_outlet", + "19464": "pressure:CLH:J_heart_outlet", + "19465": "pressure:CLH:J_heart_outlet", + "19466": "pressure:CLH:J_heart_outlet", + "19467": "pressure:CLH:J_heart_outlet", + "19468": "pressure:CLH:J_heart_outlet", + "19469": "pressure:CLH:J_heart_outlet", + "19470": "pressure:CLH:J_heart_outlet", + "19471": "pressure:CLH:J_heart_outlet", + "19472": "pressure:CLH:J_heart_outlet", + "19473": "pressure:CLH:J_heart_outlet", + "19474": "pressure:CLH:J_heart_outlet", + "19475": "pressure:CLH:J_heart_outlet", + "19476": "pressure:CLH:J_heart_outlet", + "19477": "pressure:CLH:J_heart_outlet", + "19478": "pressure:CLH:J_heart_outlet", + "19479": "pressure:CLH:J_heart_outlet", + "19480": "pressure:CLH:J_heart_outlet", + "19481": "pressure:CLH:J_heart_outlet", + "19482": "pressure:CLH:J_heart_outlet", + "19483": "pressure:CLH:J_heart_outlet", + "19484": "pressure:CLH:J_heart_outlet", + "19485": "pressure:CLH:J_heart_outlet", + "19486": "pressure:CLH:J_heart_outlet", + "19487": "pressure:CLH:J_heart_outlet", + "19488": "pressure:CLH:J_heart_outlet", + "19489": "pressure:CLH:J_heart_outlet", + "19490": "pressure:CLH:J_heart_outlet", + "19491": "pressure:CLH:J_heart_outlet", + "19492": "pressure:CLH:J_heart_outlet", + "19493": "pressure:CLH:J_heart_outlet", + "19494": "pressure:CLH:J_heart_outlet", + "19495": "pressure:CLH:J_heart_outlet", + "19496": "pressure:CLH:J_heart_outlet", + "19497": "pressure:CLH:J_heart_outlet", + "19498": "pressure:CLH:J_heart_outlet", + "19499": "pressure:CLH:J_heart_outlet", + "19500": "pressure:CLH:J_heart_outlet", + "19501": "pressure:CLH:J_heart_outlet", + "19502": "pressure:CLH:J_heart_outlet", + "19503": "pressure:CLH:J_heart_outlet", + "19504": "pressure:CLH:J_heart_outlet", + "19505": "pressure:CLH:J_heart_outlet", + "19506": "pressure:CLH:J_heart_outlet", + "19507": "pressure:CLH:J_heart_outlet", + "19508": "pressure:CLH:J_heart_outlet", + "19509": "pressure:CLH:J_heart_outlet", + "19510": "pressure:CLH:J_heart_outlet", + "19511": "pressure:CLH:J_heart_outlet", + "19512": "pressure:CLH:J_heart_outlet", + "19513": "pressure:CLH:J_heart_outlet", + "19514": "pressure:CLH:J_heart_outlet", + "19515": "pressure:CLH:J_heart_outlet", + "19516": "pressure:CLH:J_heart_outlet", + "19517": "pressure:CLH:J_heart_outlet", + "19518": "pressure:CLH:J_heart_outlet", + "19519": "pressure:CLH:J_heart_outlet", + "19520": "pressure:CLH:J_heart_outlet", + "19521": "pressure:CLH:J_heart_outlet", + "19522": "pressure:CLH:J_heart_outlet", + "19523": "pressure:CLH:J_heart_outlet", + "19524": "pressure:CLH:J_heart_outlet", + "19525": "pressure:CLH:J_heart_outlet", + "19526": "pressure:CLH:J_heart_outlet", + "19527": "pressure:CLH:J_heart_outlet", + "19528": "pressure:CLH:J_heart_outlet", + "19529": "pressure:CLH:J_heart_outlet", + "19530": "pressure:CLH:J_heart_outlet", + "19531": "pressure:CLH:J_heart_outlet", + "19532": "pressure:CLH:J_heart_outlet", + "19533": "pressure:CLH:J_heart_outlet", + "19534": "pressure:CLH:J_heart_outlet", + "19535": "pressure:CLH:J_heart_outlet", + "19536": "pressure:CLH:J_heart_outlet", + "19537": "pressure:CLH:J_heart_outlet", + "19538": "pressure:CLH:J_heart_outlet", + "19539": "pressure:CLH:J_heart_outlet", + "19540": "pressure:CLH:J_heart_outlet", + "19541": "pressure:CLH:J_heart_outlet", + "19542": "pressure:CLH:J_heart_outlet", + "19543": "pressure:CLH:J_heart_outlet", + "19544": "pressure:CLH:J_heart_outlet", + "19545": "pressure:CLH:J_heart_outlet", + "19546": "pressure:CLH:J_heart_outlet", + "19547": "pressure:CLH:J_heart_outlet", + "19548": "pressure:CLH:J_heart_outlet", + "19549": "pressure:CLH:J_heart_outlet", + "19550": "pressure:CLH:J_heart_outlet", + "19551": "pressure:CLH:J_heart_outlet", + "19552": "pressure:CLH:J_heart_outlet", + "19553": "pressure:CLH:J_heart_outlet", + "19554": "pressure:CLH:J_heart_outlet", + "19555": "pressure:CLH:J_heart_outlet", + "19556": "pressure:CLH:J_heart_outlet", + "19557": "pressure:CLH:J_heart_outlet", + "19558": "pressure:CLH:J_heart_outlet", + "19559": "pressure:CLH:J_heart_outlet", + "19560": "pressure:CLH:J_heart_outlet", + "19561": "pressure:CLH:J_heart_outlet", + "19562": "pressure:CLH:J_heart_outlet", + "19563": "pressure:CLH:J_heart_outlet", + "19564": "pressure:CLH:J_heart_outlet", + "19565": "pressure:CLH:J_heart_outlet", + "19566": "pressure:CLH:J_heart_outlet", + "19567": "pressure:CLH:J_heart_outlet", + "19568": "pressure:CLH:J_heart_outlet", + "19569": "pressure:CLH:J_heart_outlet", + "19570": "pressure:CLH:J_heart_outlet", + "19571": "pressure:CLH:J_heart_outlet", + "19572": "pressure:CLH:J_heart_outlet", + "19573": "pressure:CLH:J_heart_outlet", + "19574": "pressure:CLH:J_heart_outlet", + "19575": "pressure:CLH:J_heart_outlet", + "19576": "pressure:CLH:J_heart_outlet", + "19577": "pressure:CLH:J_heart_outlet", + "19578": "pressure:CLH:J_heart_outlet", + "19579": "pressure:CLH:J_heart_outlet", + "19580": "pressure:CLH:J_heart_outlet", + "19581": "pressure:CLH:J_heart_outlet", + "19582": "pressure:CLH:J_heart_outlet", + "19583": "pressure:CLH:J_heart_outlet", + "19584": "pressure:CLH:J_heart_outlet", + "19585": "pressure:CLH:J_heart_outlet", + "19586": "pressure:CLH:J_heart_outlet", + "19587": "pressure:CLH:J_heart_outlet", + "19588": "pressure:CLH:J_heart_outlet", + "19589": "pressure:CLH:J_heart_outlet", + "19590": "pressure:CLH:J_heart_outlet", + "19591": "pressure:CLH:J_heart_outlet", + "19592": "pressure:CLH:J_heart_outlet", + "19593": "pressure:CLH:J_heart_outlet", + "19594": "pressure:CLH:J_heart_outlet", + "19595": "pressure:CLH:J_heart_outlet", + "19596": "pressure:CLH:J_heart_outlet", + "19597": "pressure:CLH:J_heart_outlet", + "19598": "pressure:CLH:J_heart_outlet", + "19599": "pressure:CLH:J_heart_outlet", + "19600": "pressure:CLH:J_heart_outlet", + "19601": "pressure:CLH:J_heart_outlet", + "19602": "pressure:CLH:J_heart_outlet", + "19603": "pressure:CLH:J_heart_outlet", + "19604": "pressure:CLH:J_heart_outlet", + "19605": "pressure:CLH:J_heart_outlet", + "19606": "pressure:CLH:J_heart_outlet", + "19607": "pressure:CLH:J_heart_outlet", + "19608": "pressure:CLH:J_heart_outlet", + "19609": "pressure:CLH:J_heart_outlet", + "19610": "pressure:CLH:J_heart_outlet", + "19611": "pressure:CLH:J_heart_outlet", + "19612": "pressure:CLH:J_heart_outlet", + "19613": "pressure:CLH:J_heart_outlet", + "19614": "pressure:CLH:J_heart_outlet", + "19615": "pressure:CLH:J_heart_outlet", + "19616": "pressure:CLH:J_heart_outlet", + "19617": "pressure:CLH:J_heart_outlet", + "19618": "pressure:CLH:J_heart_outlet", + "19619": "pressure:CLH:J_heart_outlet", + "19620": "pressure:CLH:J_heart_outlet", + "19621": "pressure:CLH:J_heart_outlet", + "19622": "pressure:CLH:J_heart_outlet", + "19623": "pressure:CLH:J_heart_outlet", + "19624": "pressure:CLH:J_heart_outlet", + "19625": "pressure:CLH:J_heart_outlet", + "19626": "pressure:CLH:J_heart_outlet", + "19627": "pressure:CLH:J_heart_outlet", + "19628": "pressure:CLH:J_heart_outlet", + "19629": "pressure:CLH:J_heart_outlet", + "19630": "pressure:CLH:J_heart_outlet", + "19631": "pressure:CLH:J_heart_outlet", + "19632": "pressure:CLH:J_heart_outlet", + "19633": "pressure:CLH:J_heart_outlet", + "19634": "pressure:CLH:J_heart_outlet", + "19635": "pressure:CLH:J_heart_outlet", + "19636": "pressure:CLH:J_heart_outlet", + "19637": "pressure:CLH:J_heart_outlet", + "19638": "pressure:CLH:J_heart_outlet", + "19639": "pressure:CLH:J_heart_outlet", + "19640": "pressure:CLH:J_heart_outlet", + "19641": "pressure:CLH:J_heart_outlet", + "19642": "pressure:CLH:J_heart_outlet", + "19643": "pressure:CLH:J_heart_outlet", + "19644": "pressure:CLH:J_heart_outlet", + "19645": "pressure:CLH:J_heart_outlet", + "19646": "pressure:CLH:J_heart_outlet", + "19647": "pressure:CLH:J_heart_outlet", + "19648": "pressure:CLH:J_heart_outlet", + "19649": "pressure:CLH:J_heart_outlet", + "19650": "pressure:CLH:J_heart_outlet", + "19651": "pressure:CLH:J_heart_outlet", + "19652": "pressure:CLH:J_heart_outlet", + "19653": "pressure:CLH:J_heart_outlet", + "19654": "pressure:CLH:J_heart_outlet", + "19655": "pressure:CLH:J_heart_outlet", + "19656": "pressure:CLH:J_heart_outlet", + "19657": "pressure:CLH:J_heart_outlet", + "19658": "pressure:CLH:J_heart_outlet", + "19659": "pressure:CLH:J_heart_outlet", + "19660": "pressure:CLH:J_heart_outlet", + "19661": "pressure:CLH:J_heart_outlet", + "19662": "pressure:CLH:J_heart_outlet", + "19663": "pressure:CLH:J_heart_outlet", + "19664": "pressure:CLH:J_heart_outlet", + "19665": "pressure:CLH:J_heart_outlet", + "19666": "pressure:CLH:J_heart_outlet", + "19667": "pressure:CLH:J_heart_outlet", + "19668": "pressure:CLH:J_heart_outlet", + "19669": "pressure:CLH:J_heart_outlet", + "19670": "pressure:CLH:J_heart_outlet", + "19671": "pressure:CLH:J_heart_outlet", + "19672": "pressure:CLH:J_heart_outlet", + "19673": "pressure:CLH:J_heart_outlet", + "19674": "pressure:CLH:J_heart_outlet", + "19675": "pressure:CLH:J_heart_outlet", + "19676": "pressure:CLH:J_heart_outlet", + "19677": "pressure:CLH:J_heart_outlet", + "19678": "pressure:CLH:J_heart_outlet", + "19679": "pressure:CLH:J_heart_outlet", + "19680": "pressure:CLH:J_heart_outlet", + "19681": "pressure:CLH:J_heart_outlet", + "19682": "pressure:CLH:J_heart_outlet", + "19683": "pressure:CLH:J_heart_outlet", + "19684": "pressure:CLH:J_heart_outlet", + "19685": "pressure:CLH:J_heart_outlet", + "19686": "pressure:CLH:J_heart_outlet", + "19687": "pressure:CLH:J_heart_outlet", + "19688": "pressure:CLH:J_heart_outlet", + "19689": "pressure:CLH:J_heart_outlet", + "19690": "pressure:CLH:J_heart_outlet", + "19691": "pressure:CLH:J_heart_outlet", + "19692": "pressure:CLH:J_heart_outlet", + "19693": "pressure:CLH:J_heart_outlet", + "19694": "pressure:CLH:J_heart_outlet", + "19695": "pressure:CLH:J_heart_outlet", + "19696": "pressure:CLH:J_heart_outlet", + "19697": "pressure:CLH:J_heart_outlet", + "19698": "pressure:CLH:J_heart_outlet", + "19699": "pressure:CLH:J_heart_outlet", + "19700": "pressure:CLH:J_heart_outlet", + "19701": "pressure:CLH:J_heart_outlet", + "19702": "pressure:CLH:J_heart_outlet", + "19703": "pressure:CLH:J_heart_outlet", + "19704": "pressure:CLH:J_heart_outlet", + "19705": "pressure:CLH:J_heart_outlet", + "19706": "pressure:CLH:J_heart_outlet", + "19707": "pressure:CLH:J_heart_outlet", + "19708": "pressure:CLH:J_heart_outlet", + "19709": "pressure:CLH:J_heart_outlet", + "19710": "pressure:CLH:J_heart_outlet", + "19711": "pressure:CLH:J_heart_outlet", + "19712": "pressure:CLH:J_heart_outlet", + "19713": "pressure:CLH:J_heart_outlet", + "19714": "pressure:CLH:J_heart_outlet", + "19715": "pressure:CLH:J_heart_outlet", + "19716": "pressure:CLH:J_heart_outlet", + "19717": "pressure:CLH:J_heart_outlet", + "19718": "pressure:CLH:J_heart_outlet", + "19719": "pressure:CLH:J_heart_outlet", + "19720": "pressure:CLH:J_heart_outlet", + "19721": "pressure:CLH:J_heart_outlet", + "19722": "pressure:CLH:J_heart_outlet", + "19723": "pressure:CLH:J_heart_outlet", + "19724": "pressure:CLH:J_heart_outlet", + "19725": "pressure:CLH:J_heart_outlet", + "19726": "pressure:CLH:J_heart_outlet", + "19727": "pressure:CLH:J_heart_outlet", + "19728": "pressure:CLH:J_heart_outlet", + "19729": "pressure:CLH:J_heart_outlet", + "19730": "pressure:CLH:J_heart_outlet", + "19731": "pressure:CLH:J_heart_outlet", + "19732": "pressure:CLH:J_heart_outlet", + "19733": "pressure:CLH:J_heart_outlet", + "19734": "pressure:CLH:J_heart_outlet", + "19735": "pressure:CLH:J_heart_outlet", + "19736": "pressure:CLH:J_heart_outlet", + "19737": "pressure:CLH:J_heart_outlet", + "19738": "pressure:CLH:J_heart_outlet", + "19739": "pressure:CLH:J_heart_outlet", + "19740": "pressure:CLH:J_heart_outlet", + "19741": "pressure:CLH:J_heart_outlet", + "19742": "pressure:CLH:J_heart_outlet", + "19743": "pressure:CLH:J_heart_outlet", + "19744": "pressure:CLH:J_heart_outlet", + "19745": "pressure:CLH:J_heart_outlet", + "19746": "pressure:CLH:J_heart_outlet", + "19747": "pressure:CLH:J_heart_outlet", + "19748": "pressure:CLH:J_heart_outlet", + "19749": "pressure:CLH:J_heart_outlet", + "19750": "pressure:CLH:J_heart_outlet", + "19751": "pressure:CLH:J_heart_outlet", + "19752": "pressure:CLH:J_heart_outlet", + "19753": "pressure:CLH:J_heart_outlet", + "19754": "pressure:CLH:J_heart_outlet", + "19755": "pressure:CLH:J_heart_outlet", + "19756": "pressure:CLH:J_heart_outlet", + "19757": "pressure:CLH:J_heart_outlet", + "19758": "pressure:CLH:J_heart_outlet", + "19759": "pressure:CLH:J_heart_outlet", + "19760": "pressure:CLH:J_heart_outlet", + "19761": "pressure:CLH:J_heart_outlet", + "19762": "pressure:CLH:J_heart_outlet", + "19763": "pressure:CLH:J_heart_outlet", + "19764": "pressure:CLH:J_heart_outlet", + "19765": "pressure:CLH:J_heart_outlet", + "19766": "pressure:CLH:J_heart_outlet", + "19767": "pressure:CLH:J_heart_outlet", + "19768": "pressure:CLH:J_heart_outlet", + "19769": "pressure:CLH:J_heart_outlet", + "19770": "pressure:CLH:J_heart_outlet", + "19771": "pressure:CLH:J_heart_outlet", + "19772": "pressure:CLH:J_heart_outlet", + "19773": "pressure:CLH:J_heart_outlet", + "19774": "pressure:CLH:J_heart_outlet", + "19775": "pressure:CLH:J_heart_outlet", + "19776": "pressure:CLH:J_heart_outlet", + "19777": "pressure:CLH:J_heart_outlet", + "19778": "pressure:CLH:J_heart_outlet", + "19779": "pressure:CLH:J_heart_outlet", + "19780": "pressure:CLH:J_heart_outlet", + "19781": "pressure:CLH:J_heart_outlet", + "19782": "pressure:CLH:J_heart_outlet", + "19783": "pressure:CLH:J_heart_outlet", + "19784": "pressure:CLH:J_heart_outlet", + "19785": "pressure:CLH:J_heart_outlet", + "19786": "pressure:CLH:J_heart_outlet", + "19787": "pressure:CLH:J_heart_outlet", + "19788": "pressure:CLH:J_heart_outlet", + "19789": "pressure:CLH:J_heart_outlet", + "19790": "pressure:CLH:J_heart_outlet", + "19791": "pressure:CLH:J_heart_outlet", + "19792": "pressure:CLH:J_heart_outlet", + "19793": "pressure:CLH:J_heart_outlet", + "19794": "pressure:CLH:J_heart_outlet", + "19795": "pressure:CLH:J_heart_outlet", + "19796": "pressure:CLH:J_heart_outlet", + "19797": "pressure:CLH:J_heart_outlet", + "19798": "pressure:CLH:J_heart_outlet", + "19799": "pressure:CLH:J_heart_outlet", + "19800": "pressure:CLH:J_heart_outlet", + "19801": "pressure:CLH:J_heart_outlet", + "19802": "pressure:CLH:J_heart_outlet", + "19803": "pressure:CLH:J_heart_outlet", + "19804": "pressure:CLH:J_heart_outlet", + "19805": "pressure:CLH:J_heart_outlet", + "19806": "pressure:CLH:J_heart_outlet", + "19807": "pressure:CLH:J_heart_outlet", + "19808": "pressure:CLH:J_heart_outlet", + "19809": "pressure:CLH:J_heart_outlet", + "19810": "pressure:CLH:J_heart_outlet", + "19811": "pressure:CLH:J_heart_outlet", + "19812": "pressure:CLH:J_heart_outlet", + "19813": "pressure:CLH:J_heart_outlet", + "19814": "pressure:CLH:J_heart_outlet", + "19815": "pressure:CLH:J_heart_outlet", + "19816": "pressure:CLH:J_heart_outlet", + "19817": "pressure:CLH:J_heart_outlet", + "19818": "pressure:CLH:J_heart_outlet", + "19819": "pressure:CLH:J_heart_outlet", + "19820": "pressure:CLH:J_heart_outlet", + "19821": "pressure:CLH:J_heart_outlet", + "19822": "pressure:CLH:J_heart_outlet", + "19823": "pressure:CLH:J_heart_outlet", + "19824": "pressure:CLH:J_heart_outlet", + "19825": "pressure:CLH:J_heart_outlet", + "19826": "pressure:CLH:J_heart_outlet", + "19827": "pressure:CLH:J_heart_outlet", + "19828": "pressure:CLH:J_heart_outlet", + "19829": "pressure:CLH:J_heart_outlet", + "19830": "pressure:CLH:J_heart_outlet", + "19831": "pressure:CLH:J_heart_outlet", + "19832": "pressure:CLH:J_heart_outlet", + "19833": "pressure:CLH:J_heart_outlet", + "19834": "pressure:CLH:J_heart_outlet", + "19835": "pressure:CLH:J_heart_outlet", + "19836": "pressure:CLH:J_heart_outlet", + "19837": "pressure:CLH:J_heart_outlet", + "19838": "pressure:CLH:J_heart_outlet", + "19839": "pressure:CLH:J_heart_outlet", + "19840": "pressure:CLH:J_heart_outlet", + "19841": "pressure:CLH:J_heart_outlet", + "19842": "pressure:CLH:J_heart_outlet", + "19843": "pressure:CLH:J_heart_outlet", + "19844": "pressure:CLH:J_heart_outlet", + "19845": "pressure:CLH:J_heart_outlet", + "19846": "pressure:CLH:J_heart_outlet", + "19847": "pressure:CLH:J_heart_outlet", + "19848": "pressure:CLH:J_heart_outlet", + "19849": "pressure:CLH:J_heart_outlet", + "19850": "pressure:CLH:J_heart_outlet", + "19851": "pressure:CLH:J_heart_outlet", + "19852": "pressure:CLH:J_heart_outlet", + "19853": "pressure:CLH:J_heart_outlet", + "19854": "pressure:CLH:J_heart_outlet", + "19855": "pressure:CLH:J_heart_outlet", + "19856": "pressure:CLH:J_heart_outlet", + "19857": "pressure:CLH:J_heart_outlet", + "19858": "pressure:CLH:J_heart_outlet", + "19859": "pressure:CLH:J_heart_outlet", + "19860": "pressure:CLH:J_heart_outlet", + "19861": "pressure:CLH:J_heart_outlet", + "19862": "pressure:CLH:J_heart_outlet", + "19863": "pressure:CLH:J_heart_outlet", + "19864": "pressure:CLH:J_heart_outlet", + "19865": "pressure:CLH:J_heart_outlet", + "19866": "pressure:CLH:J_heart_outlet", + "19867": "pressure:CLH:J_heart_outlet", + "19868": "pressure:CLH:J_heart_outlet", + "19869": "pressure:CLH:J_heart_outlet", + "19870": "pressure:CLH:J_heart_outlet", + "19871": "pressure:CLH:J_heart_outlet", + "19872": "pressure:CLH:J_heart_outlet", + "19873": "pressure:CLH:J_heart_outlet", + "19874": "pressure:CLH:J_heart_outlet", + "19875": "pressure:CLH:J_heart_outlet", + "19876": "pressure:CLH:J_heart_outlet", + "19877": "pressure:CLH:J_heart_outlet", + "19878": "pressure:CLH:J_heart_outlet", + "19879": "pressure:CLH:J_heart_outlet", + "19880": "pressure:CLH:J_heart_outlet", + "19881": "pressure:CLH:J_heart_outlet", + "19882": "pressure:CLH:J_heart_outlet", + "19883": "pressure:CLH:J_heart_outlet", + "19884": "pressure:CLH:J_heart_outlet", + "19885": "pressure:CLH:J_heart_outlet", + "19886": "pressure:CLH:J_heart_outlet", + "19887": "pressure:CLH:J_heart_outlet", + "19888": "pressure:CLH:J_heart_outlet", + "19889": "pressure:CLH:J_heart_outlet", + "19890": "pressure:CLH:J_heart_outlet", + "19891": "pressure:CLH:J_heart_outlet", + "19892": "pressure:CLH:J_heart_outlet", + "19893": "pressure:CLH:J_heart_outlet", + "19894": "pressure:CLH:J_heart_outlet", + "19895": "pressure:CLH:J_heart_outlet", + "19896": "pressure:CLH:J_heart_outlet", + "19897": "pressure:CLH:J_heart_outlet", + "19898": "pressure:CLH:J_heart_outlet", + "19899": "pressure:CLH:J_heart_outlet", + "19900": "pressure:CLH:J_heart_outlet", + "19901": "pressure:CLH:J_heart_outlet", + "19902": "pressure:CLH:J_heart_outlet", + "19903": "pressure:CLH:J_heart_outlet", + "19904": "pressure:CLH:J_heart_outlet", + "19905": "pressure:CLH:J_heart_outlet", + "19906": "pressure:CLH:J_heart_outlet", + "19907": "pressure:CLH:J_heart_outlet", + "19908": "pressure:CLH:J_heart_outlet", + "19909": "pressure:CLH:J_heart_outlet", + "19910": "pressure:CLH:J_heart_outlet", + "19911": "pressure:CLH:J_heart_outlet", + "19912": "pressure:CLH:J_heart_outlet", + "19913": "pressure:CLH:J_heart_outlet", + "19914": "pressure:CLH:J_heart_outlet", + "19915": "pressure:CLH:J_heart_outlet", + "19916": "pressure:CLH:J_heart_outlet", + "19917": "pressure:CLH:J_heart_outlet", + "19918": "pressure:CLH:J_heart_outlet", + "19919": "pressure:CLH:J_heart_outlet", + "19920": "pressure:CLH:J_heart_outlet", + "19921": "pressure:CLH:J_heart_outlet", + "19922": "pressure:CLH:J_heart_outlet", + "19923": "pressure:CLH:J_heart_outlet", + "19924": "pressure:CLH:J_heart_outlet", + "19925": "pressure:CLH:J_heart_outlet", + "19926": "pressure:CLH:J_heart_outlet", + "19927": "pressure:CLH:J_heart_outlet", + "19928": "pressure:CLH:J_heart_outlet", + "19929": "pressure:CLH:J_heart_outlet", + "19930": "pressure:CLH:J_heart_outlet", + "19931": "pressure:CLH:J_heart_outlet", + "19932": "pressure:CLH:J_heart_outlet", + "19933": "pressure:CLH:J_heart_outlet", + "19934": "pressure:CLH:J_heart_outlet", + "19935": "pressure:CLH:J_heart_outlet", + "19936": "pressure:CLH:J_heart_outlet", + "19937": "pressure:CLH:J_heart_outlet", + "19938": "pressure:CLH:J_heart_outlet", + "19939": "pressure:CLH:J_heart_outlet", + "19940": "pressure:CLH:J_heart_outlet", + "19941": "pressure:CLH:J_heart_outlet", + "19942": "pressure:CLH:J_heart_outlet", + "19943": "pressure:CLH:J_heart_outlet", + "19944": "pressure:CLH:J_heart_outlet", + "19945": "pressure:CLH:J_heart_outlet", + "19946": "pressure:CLH:J_heart_outlet", + "19947": "pressure:CLH:J_heart_outlet", + "19948": "pressure:CLH:J_heart_outlet", + "19949": "pressure:CLH:J_heart_outlet", + "19950": "pressure:CLH:J_heart_outlet", + "19951": "pressure:CLH:J_heart_outlet", + "19952": "pressure:CLH:J_heart_outlet", + "19953": "pressure:CLH:J_heart_outlet", + "19954": "pressure:CLH:J_heart_outlet", + "19955": "pressure:CLH:J_heart_outlet", + "19956": "pressure:CLH:J_heart_outlet", + "19957": "pressure:CLH:J_heart_outlet", + "19958": "pressure:CLH:J_heart_outlet", + "19959": "pressure:CLH:J_heart_outlet", + "19960": "pressure:CLH:J_heart_outlet", + "19961": "pressure:CLH:J_heart_outlet", + "19962": "pressure:CLH:J_heart_outlet", + "19963": "pressure:CLH:J_heart_outlet", + "19964": "pressure:CLH:J_heart_outlet", + "19965": "pressure:CLH:J_heart_outlet", + "19966": "pressure:CLH:J_heart_outlet", + "19967": "pressure:CLH:J_heart_outlet", + "19968": "pressure:CLH:J_heart_outlet", + "19969": "pressure:CLH:J_heart_outlet", + "19970": "pressure:CLH:J_heart_outlet", + "19971": "pressure:CLH:J_heart_outlet", + "19972": "pressure:CLH:J_heart_outlet", + "19973": "pressure:CLH:J_heart_outlet", + "19974": "pressure:CLH:J_heart_outlet", + "19975": "pressure:CLH:J_heart_outlet", + "19976": "pressure:CLH:J_heart_outlet", + "19977": "pressure:CLH:J_heart_outlet", + "19978": "pressure:CLH:J_heart_outlet", + "19979": "pressure:CLH:J_heart_outlet", + "19980": "pressure:CLH:J_heart_outlet", + "19981": "pressure:CLH:J_heart_outlet", + "19982": "pressure:CLH:J_heart_outlet", + "19983": "pressure:CLH:J_heart_outlet", + "19984": "pressure:CLH:J_heart_outlet", + "19985": "pressure:CLH:J_heart_outlet", + "19986": "pressure:CLH:J_heart_outlet", + "19987": "pressure:CLH:J_heart_outlet", + "19988": "pressure:CLH:J_heart_outlet", + "19989": "pressure:CLH:J_heart_outlet", + "19990": "pressure:CLH:J_heart_outlet", + "19991": "pressure:CLH:J_heart_outlet", + "19992": "pressure:CLH:J_heart_outlet", + "19993": "pressure:CLH:J_heart_outlet", + "19994": "pressure:CLH:J_heart_outlet", + "19995": "pressure:CLH:J_heart_outlet", + "19996": "pressure:CLH:J_heart_outlet", + "19997": "pressure:CLH:J_heart_outlet", + "19998": "pressure:CLH:J_heart_outlet", + "19999": "pressure:CLH:J_heart_outlet", + "20000": "flow:J_heart_outlet:external_outlet", + "20001": "flow:J_heart_outlet:external_outlet", + "20002": "flow:J_heart_outlet:external_outlet", + "20003": "flow:J_heart_outlet:external_outlet", + "20004": "flow:J_heart_outlet:external_outlet", + "20005": "flow:J_heart_outlet:external_outlet", + "20006": "flow:J_heart_outlet:external_outlet", + "20007": "flow:J_heart_outlet:external_outlet", + "20008": "flow:J_heart_outlet:external_outlet", + "20009": "flow:J_heart_outlet:external_outlet", + "20010": "flow:J_heart_outlet:external_outlet", + "20011": "flow:J_heart_outlet:external_outlet", + "20012": "flow:J_heart_outlet:external_outlet", + "20013": "flow:J_heart_outlet:external_outlet", + "20014": "flow:J_heart_outlet:external_outlet", + "20015": "flow:J_heart_outlet:external_outlet", + "20016": "flow:J_heart_outlet:external_outlet", + "20017": "flow:J_heart_outlet:external_outlet", + "20018": "flow:J_heart_outlet:external_outlet", + "20019": "flow:J_heart_outlet:external_outlet", + "20020": "flow:J_heart_outlet:external_outlet", + "20021": "flow:J_heart_outlet:external_outlet", + "20022": "flow:J_heart_outlet:external_outlet", + "20023": "flow:J_heart_outlet:external_outlet", + "20024": "flow:J_heart_outlet:external_outlet", + "20025": "flow:J_heart_outlet:external_outlet", + "20026": "flow:J_heart_outlet:external_outlet", + "20027": "flow:J_heart_outlet:external_outlet", + "20028": "flow:J_heart_outlet:external_outlet", + "20029": "flow:J_heart_outlet:external_outlet", + "20030": "flow:J_heart_outlet:external_outlet", + "20031": "flow:J_heart_outlet:external_outlet", + "20032": "flow:J_heart_outlet:external_outlet", + "20033": "flow:J_heart_outlet:external_outlet", + "20034": "flow:J_heart_outlet:external_outlet", + "20035": "flow:J_heart_outlet:external_outlet", + "20036": "flow:J_heart_outlet:external_outlet", + "20037": "flow:J_heart_outlet:external_outlet", + "20038": "flow:J_heart_outlet:external_outlet", + "20039": "flow:J_heart_outlet:external_outlet", + "20040": "flow:J_heart_outlet:external_outlet", + "20041": "flow:J_heart_outlet:external_outlet", + "20042": "flow:J_heart_outlet:external_outlet", + "20043": "flow:J_heart_outlet:external_outlet", + "20044": "flow:J_heart_outlet:external_outlet", + "20045": "flow:J_heart_outlet:external_outlet", + "20046": "flow:J_heart_outlet:external_outlet", + "20047": "flow:J_heart_outlet:external_outlet", + "20048": "flow:J_heart_outlet:external_outlet", + "20049": "flow:J_heart_outlet:external_outlet", + "20050": "flow:J_heart_outlet:external_outlet", + "20051": "flow:J_heart_outlet:external_outlet", + "20052": "flow:J_heart_outlet:external_outlet", + "20053": "flow:J_heart_outlet:external_outlet", + "20054": "flow:J_heart_outlet:external_outlet", + "20055": "flow:J_heart_outlet:external_outlet", + "20056": "flow:J_heart_outlet:external_outlet", + "20057": "flow:J_heart_outlet:external_outlet", + "20058": "flow:J_heart_outlet:external_outlet", + "20059": "flow:J_heart_outlet:external_outlet", + "20060": "flow:J_heart_outlet:external_outlet", + "20061": "flow:J_heart_outlet:external_outlet", + "20062": "flow:J_heart_outlet:external_outlet", + "20063": "flow:J_heart_outlet:external_outlet", + "20064": "flow:J_heart_outlet:external_outlet", + "20065": "flow:J_heart_outlet:external_outlet", + "20066": "flow:J_heart_outlet:external_outlet", + "20067": "flow:J_heart_outlet:external_outlet", + "20068": "flow:J_heart_outlet:external_outlet", + "20069": "flow:J_heart_outlet:external_outlet", + "20070": "flow:J_heart_outlet:external_outlet", + "20071": "flow:J_heart_outlet:external_outlet", + "20072": "flow:J_heart_outlet:external_outlet", + "20073": "flow:J_heart_outlet:external_outlet", + "20074": "flow:J_heart_outlet:external_outlet", + "20075": "flow:J_heart_outlet:external_outlet", + "20076": "flow:J_heart_outlet:external_outlet", + "20077": "flow:J_heart_outlet:external_outlet", + "20078": "flow:J_heart_outlet:external_outlet", + "20079": "flow:J_heart_outlet:external_outlet", + "20080": "flow:J_heart_outlet:external_outlet", + "20081": "flow:J_heart_outlet:external_outlet", + "20082": "flow:J_heart_outlet:external_outlet", + "20083": "flow:J_heart_outlet:external_outlet", + "20084": "flow:J_heart_outlet:external_outlet", + "20085": "flow:J_heart_outlet:external_outlet", + "20086": "flow:J_heart_outlet:external_outlet", + "20087": "flow:J_heart_outlet:external_outlet", + "20088": "flow:J_heart_outlet:external_outlet", + "20089": "flow:J_heart_outlet:external_outlet", + "20090": "flow:J_heart_outlet:external_outlet", + "20091": "flow:J_heart_outlet:external_outlet", + "20092": "flow:J_heart_outlet:external_outlet", + "20093": "flow:J_heart_outlet:external_outlet", + "20094": "flow:J_heart_outlet:external_outlet", + "20095": "flow:J_heart_outlet:external_outlet", + "20096": "flow:J_heart_outlet:external_outlet", + "20097": "flow:J_heart_outlet:external_outlet", + "20098": "flow:J_heart_outlet:external_outlet", + "20099": "flow:J_heart_outlet:external_outlet", + "20100": "flow:J_heart_outlet:external_outlet", + "20101": "flow:J_heart_outlet:external_outlet", + "20102": "flow:J_heart_outlet:external_outlet", + "20103": "flow:J_heart_outlet:external_outlet", + "20104": "flow:J_heart_outlet:external_outlet", + "20105": "flow:J_heart_outlet:external_outlet", + "20106": "flow:J_heart_outlet:external_outlet", + "20107": "flow:J_heart_outlet:external_outlet", + "20108": "flow:J_heart_outlet:external_outlet", + "20109": "flow:J_heart_outlet:external_outlet", + "20110": "flow:J_heart_outlet:external_outlet", + "20111": "flow:J_heart_outlet:external_outlet", + "20112": "flow:J_heart_outlet:external_outlet", + "20113": "flow:J_heart_outlet:external_outlet", + "20114": "flow:J_heart_outlet:external_outlet", + "20115": "flow:J_heart_outlet:external_outlet", + "20116": "flow:J_heart_outlet:external_outlet", + "20117": "flow:J_heart_outlet:external_outlet", + "20118": "flow:J_heart_outlet:external_outlet", + "20119": "flow:J_heart_outlet:external_outlet", + "20120": "flow:J_heart_outlet:external_outlet", + "20121": "flow:J_heart_outlet:external_outlet", + "20122": "flow:J_heart_outlet:external_outlet", + "20123": "flow:J_heart_outlet:external_outlet", + "20124": "flow:J_heart_outlet:external_outlet", + "20125": "flow:J_heart_outlet:external_outlet", + "20126": "flow:J_heart_outlet:external_outlet", + "20127": "flow:J_heart_outlet:external_outlet", + "20128": "flow:J_heart_outlet:external_outlet", + "20129": "flow:J_heart_outlet:external_outlet", + "20130": "flow:J_heart_outlet:external_outlet", + "20131": "flow:J_heart_outlet:external_outlet", + "20132": "flow:J_heart_outlet:external_outlet", + "20133": "flow:J_heart_outlet:external_outlet", + "20134": "flow:J_heart_outlet:external_outlet", + "20135": "flow:J_heart_outlet:external_outlet", + "20136": "flow:J_heart_outlet:external_outlet", + "20137": "flow:J_heart_outlet:external_outlet", + "20138": "flow:J_heart_outlet:external_outlet", + "20139": "flow:J_heart_outlet:external_outlet", + "20140": "flow:J_heart_outlet:external_outlet", + "20141": "flow:J_heart_outlet:external_outlet", + "20142": "flow:J_heart_outlet:external_outlet", + "20143": "flow:J_heart_outlet:external_outlet", + "20144": "flow:J_heart_outlet:external_outlet", + "20145": "flow:J_heart_outlet:external_outlet", + "20146": "flow:J_heart_outlet:external_outlet", + "20147": "flow:J_heart_outlet:external_outlet", + "20148": "flow:J_heart_outlet:external_outlet", + "20149": "flow:J_heart_outlet:external_outlet", + "20150": "flow:J_heart_outlet:external_outlet", + "20151": "flow:J_heart_outlet:external_outlet", + "20152": "flow:J_heart_outlet:external_outlet", + "20153": "flow:J_heart_outlet:external_outlet", + "20154": "flow:J_heart_outlet:external_outlet", + "20155": "flow:J_heart_outlet:external_outlet", + "20156": "flow:J_heart_outlet:external_outlet", + "20157": "flow:J_heart_outlet:external_outlet", + "20158": "flow:J_heart_outlet:external_outlet", + "20159": "flow:J_heart_outlet:external_outlet", + "20160": "flow:J_heart_outlet:external_outlet", + "20161": "flow:J_heart_outlet:external_outlet", + "20162": "flow:J_heart_outlet:external_outlet", + "20163": "flow:J_heart_outlet:external_outlet", + "20164": "flow:J_heart_outlet:external_outlet", + "20165": "flow:J_heart_outlet:external_outlet", + "20166": "flow:J_heart_outlet:external_outlet", + "20167": "flow:J_heart_outlet:external_outlet", + "20168": "flow:J_heart_outlet:external_outlet", + "20169": "flow:J_heart_outlet:external_outlet", + "20170": "flow:J_heart_outlet:external_outlet", + "20171": "flow:J_heart_outlet:external_outlet", + "20172": "flow:J_heart_outlet:external_outlet", + "20173": "flow:J_heart_outlet:external_outlet", + "20174": "flow:J_heart_outlet:external_outlet", + "20175": "flow:J_heart_outlet:external_outlet", + "20176": "flow:J_heart_outlet:external_outlet", + "20177": "flow:J_heart_outlet:external_outlet", + "20178": "flow:J_heart_outlet:external_outlet", + "20179": "flow:J_heart_outlet:external_outlet", + "20180": "flow:J_heart_outlet:external_outlet", + "20181": "flow:J_heart_outlet:external_outlet", + "20182": "flow:J_heart_outlet:external_outlet", + "20183": "flow:J_heart_outlet:external_outlet", + "20184": "flow:J_heart_outlet:external_outlet", + "20185": "flow:J_heart_outlet:external_outlet", + "20186": "flow:J_heart_outlet:external_outlet", + "20187": "flow:J_heart_outlet:external_outlet", + "20188": "flow:J_heart_outlet:external_outlet", + "20189": "flow:J_heart_outlet:external_outlet", + "20190": "flow:J_heart_outlet:external_outlet", + "20191": "flow:J_heart_outlet:external_outlet", + "20192": "flow:J_heart_outlet:external_outlet", + "20193": "flow:J_heart_outlet:external_outlet", + "20194": "flow:J_heart_outlet:external_outlet", + "20195": "flow:J_heart_outlet:external_outlet", + "20196": "flow:J_heart_outlet:external_outlet", + "20197": "flow:J_heart_outlet:external_outlet", + "20198": "flow:J_heart_outlet:external_outlet", + "20199": "flow:J_heart_outlet:external_outlet", + "20200": "flow:J_heart_outlet:external_outlet", + "20201": "flow:J_heart_outlet:external_outlet", + "20202": "flow:J_heart_outlet:external_outlet", + "20203": "flow:J_heart_outlet:external_outlet", + "20204": "flow:J_heart_outlet:external_outlet", + "20205": "flow:J_heart_outlet:external_outlet", + "20206": "flow:J_heart_outlet:external_outlet", + "20207": "flow:J_heart_outlet:external_outlet", + "20208": "flow:J_heart_outlet:external_outlet", + "20209": "flow:J_heart_outlet:external_outlet", + "20210": "flow:J_heart_outlet:external_outlet", + "20211": "flow:J_heart_outlet:external_outlet", + "20212": "flow:J_heart_outlet:external_outlet", + "20213": "flow:J_heart_outlet:external_outlet", + "20214": "flow:J_heart_outlet:external_outlet", + "20215": "flow:J_heart_outlet:external_outlet", + "20216": "flow:J_heart_outlet:external_outlet", + "20217": "flow:J_heart_outlet:external_outlet", + "20218": "flow:J_heart_outlet:external_outlet", + "20219": "flow:J_heart_outlet:external_outlet", + "20220": "flow:J_heart_outlet:external_outlet", + "20221": "flow:J_heart_outlet:external_outlet", + "20222": "flow:J_heart_outlet:external_outlet", + "20223": "flow:J_heart_outlet:external_outlet", + "20224": "flow:J_heart_outlet:external_outlet", + "20225": "flow:J_heart_outlet:external_outlet", + "20226": "flow:J_heart_outlet:external_outlet", + "20227": "flow:J_heart_outlet:external_outlet", + "20228": "flow:J_heart_outlet:external_outlet", + "20229": "flow:J_heart_outlet:external_outlet", + "20230": "flow:J_heart_outlet:external_outlet", + "20231": "flow:J_heart_outlet:external_outlet", + "20232": "flow:J_heart_outlet:external_outlet", + "20233": "flow:J_heart_outlet:external_outlet", + "20234": "flow:J_heart_outlet:external_outlet", + "20235": "flow:J_heart_outlet:external_outlet", + "20236": "flow:J_heart_outlet:external_outlet", + "20237": "flow:J_heart_outlet:external_outlet", + "20238": "flow:J_heart_outlet:external_outlet", + "20239": "flow:J_heart_outlet:external_outlet", + "20240": "flow:J_heart_outlet:external_outlet", + "20241": "flow:J_heart_outlet:external_outlet", + "20242": "flow:J_heart_outlet:external_outlet", + "20243": "flow:J_heart_outlet:external_outlet", + "20244": "flow:J_heart_outlet:external_outlet", + "20245": "flow:J_heart_outlet:external_outlet", + "20246": "flow:J_heart_outlet:external_outlet", + "20247": "flow:J_heart_outlet:external_outlet", + "20248": "flow:J_heart_outlet:external_outlet", + "20249": "flow:J_heart_outlet:external_outlet", + "20250": "flow:J_heart_outlet:external_outlet", + "20251": "flow:J_heart_outlet:external_outlet", + "20252": "flow:J_heart_outlet:external_outlet", + "20253": "flow:J_heart_outlet:external_outlet", + "20254": "flow:J_heart_outlet:external_outlet", + "20255": "flow:J_heart_outlet:external_outlet", + "20256": "flow:J_heart_outlet:external_outlet", + "20257": "flow:J_heart_outlet:external_outlet", + "20258": "flow:J_heart_outlet:external_outlet", + "20259": "flow:J_heart_outlet:external_outlet", + "20260": "flow:J_heart_outlet:external_outlet", + "20261": "flow:J_heart_outlet:external_outlet", + "20262": "flow:J_heart_outlet:external_outlet", + "20263": "flow:J_heart_outlet:external_outlet", + "20264": "flow:J_heart_outlet:external_outlet", + "20265": "flow:J_heart_outlet:external_outlet", + "20266": "flow:J_heart_outlet:external_outlet", + "20267": "flow:J_heart_outlet:external_outlet", + "20268": "flow:J_heart_outlet:external_outlet", + "20269": "flow:J_heart_outlet:external_outlet", + "20270": "flow:J_heart_outlet:external_outlet", + "20271": "flow:J_heart_outlet:external_outlet", + "20272": "flow:J_heart_outlet:external_outlet", + "20273": "flow:J_heart_outlet:external_outlet", + "20274": "flow:J_heart_outlet:external_outlet", + "20275": "flow:J_heart_outlet:external_outlet", + "20276": "flow:J_heart_outlet:external_outlet", + "20277": "flow:J_heart_outlet:external_outlet", + "20278": "flow:J_heart_outlet:external_outlet", + "20279": "flow:J_heart_outlet:external_outlet", + "20280": "flow:J_heart_outlet:external_outlet", + "20281": "flow:J_heart_outlet:external_outlet", + "20282": "flow:J_heart_outlet:external_outlet", + "20283": "flow:J_heart_outlet:external_outlet", + "20284": "flow:J_heart_outlet:external_outlet", + "20285": "flow:J_heart_outlet:external_outlet", + "20286": "flow:J_heart_outlet:external_outlet", + "20287": "flow:J_heart_outlet:external_outlet", + "20288": "flow:J_heart_outlet:external_outlet", + "20289": "flow:J_heart_outlet:external_outlet", + "20290": "flow:J_heart_outlet:external_outlet", + "20291": "flow:J_heart_outlet:external_outlet", + "20292": "flow:J_heart_outlet:external_outlet", + "20293": "flow:J_heart_outlet:external_outlet", + "20294": "flow:J_heart_outlet:external_outlet", + "20295": "flow:J_heart_outlet:external_outlet", + "20296": "flow:J_heart_outlet:external_outlet", + "20297": "flow:J_heart_outlet:external_outlet", + "20298": "flow:J_heart_outlet:external_outlet", + "20299": "flow:J_heart_outlet:external_outlet", + "20300": "flow:J_heart_outlet:external_outlet", + "20301": "flow:J_heart_outlet:external_outlet", + "20302": "flow:J_heart_outlet:external_outlet", + "20303": "flow:J_heart_outlet:external_outlet", + "20304": "flow:J_heart_outlet:external_outlet", + "20305": "flow:J_heart_outlet:external_outlet", + "20306": "flow:J_heart_outlet:external_outlet", + "20307": "flow:J_heart_outlet:external_outlet", + "20308": "flow:J_heart_outlet:external_outlet", + "20309": "flow:J_heart_outlet:external_outlet", + "20310": "flow:J_heart_outlet:external_outlet", + "20311": "flow:J_heart_outlet:external_outlet", + "20312": "flow:J_heart_outlet:external_outlet", + "20313": "flow:J_heart_outlet:external_outlet", + "20314": "flow:J_heart_outlet:external_outlet", + "20315": "flow:J_heart_outlet:external_outlet", + "20316": "flow:J_heart_outlet:external_outlet", + "20317": "flow:J_heart_outlet:external_outlet", + "20318": "flow:J_heart_outlet:external_outlet", + "20319": "flow:J_heart_outlet:external_outlet", + "20320": "flow:J_heart_outlet:external_outlet", + "20321": "flow:J_heart_outlet:external_outlet", + "20322": "flow:J_heart_outlet:external_outlet", + "20323": "flow:J_heart_outlet:external_outlet", + "20324": "flow:J_heart_outlet:external_outlet", + "20325": "flow:J_heart_outlet:external_outlet", + "20326": "flow:J_heart_outlet:external_outlet", + "20327": "flow:J_heart_outlet:external_outlet", + "20328": "flow:J_heart_outlet:external_outlet", + "20329": "flow:J_heart_outlet:external_outlet", + "20330": "flow:J_heart_outlet:external_outlet", + "20331": "flow:J_heart_outlet:external_outlet", + "20332": "flow:J_heart_outlet:external_outlet", + "20333": "flow:J_heart_outlet:external_outlet", + "20334": "flow:J_heart_outlet:external_outlet", + "20335": "flow:J_heart_outlet:external_outlet", + "20336": "flow:J_heart_outlet:external_outlet", + "20337": "flow:J_heart_outlet:external_outlet", + "20338": "flow:J_heart_outlet:external_outlet", + "20339": "flow:J_heart_outlet:external_outlet", + "20340": "flow:J_heart_outlet:external_outlet", + "20341": "flow:J_heart_outlet:external_outlet", + "20342": "flow:J_heart_outlet:external_outlet", + "20343": "flow:J_heart_outlet:external_outlet", + "20344": "flow:J_heart_outlet:external_outlet", + "20345": "flow:J_heart_outlet:external_outlet", + "20346": "flow:J_heart_outlet:external_outlet", + "20347": "flow:J_heart_outlet:external_outlet", + "20348": "flow:J_heart_outlet:external_outlet", + "20349": "flow:J_heart_outlet:external_outlet", + "20350": "flow:J_heart_outlet:external_outlet", + "20351": "flow:J_heart_outlet:external_outlet", + "20352": "flow:J_heart_outlet:external_outlet", + "20353": "flow:J_heart_outlet:external_outlet", + "20354": "flow:J_heart_outlet:external_outlet", + "20355": "flow:J_heart_outlet:external_outlet", + "20356": "flow:J_heart_outlet:external_outlet", + "20357": "flow:J_heart_outlet:external_outlet", + "20358": "flow:J_heart_outlet:external_outlet", + "20359": "flow:J_heart_outlet:external_outlet", + "20360": "flow:J_heart_outlet:external_outlet", + "20361": "flow:J_heart_outlet:external_outlet", + "20362": "flow:J_heart_outlet:external_outlet", + "20363": "flow:J_heart_outlet:external_outlet", + "20364": "flow:J_heart_outlet:external_outlet", + "20365": "flow:J_heart_outlet:external_outlet", + "20366": "flow:J_heart_outlet:external_outlet", + "20367": "flow:J_heart_outlet:external_outlet", + "20368": "flow:J_heart_outlet:external_outlet", + "20369": "flow:J_heart_outlet:external_outlet", + "20370": "flow:J_heart_outlet:external_outlet", + "20371": "flow:J_heart_outlet:external_outlet", + "20372": "flow:J_heart_outlet:external_outlet", + "20373": "flow:J_heart_outlet:external_outlet", + "20374": "flow:J_heart_outlet:external_outlet", + "20375": "flow:J_heart_outlet:external_outlet", + "20376": "flow:J_heart_outlet:external_outlet", + "20377": "flow:J_heart_outlet:external_outlet", + "20378": "flow:J_heart_outlet:external_outlet", + "20379": "flow:J_heart_outlet:external_outlet", + "20380": "flow:J_heart_outlet:external_outlet", + "20381": "flow:J_heart_outlet:external_outlet", + "20382": "flow:J_heart_outlet:external_outlet", + "20383": "flow:J_heart_outlet:external_outlet", + "20384": "flow:J_heart_outlet:external_outlet", + "20385": "flow:J_heart_outlet:external_outlet", + "20386": "flow:J_heart_outlet:external_outlet", + "20387": "flow:J_heart_outlet:external_outlet", + "20388": "flow:J_heart_outlet:external_outlet", + "20389": "flow:J_heart_outlet:external_outlet", + "20390": "flow:J_heart_outlet:external_outlet", + "20391": "flow:J_heart_outlet:external_outlet", + "20392": "flow:J_heart_outlet:external_outlet", + "20393": "flow:J_heart_outlet:external_outlet", + "20394": "flow:J_heart_outlet:external_outlet", + "20395": "flow:J_heart_outlet:external_outlet", + "20396": "flow:J_heart_outlet:external_outlet", + "20397": "flow:J_heart_outlet:external_outlet", + "20398": "flow:J_heart_outlet:external_outlet", + "20399": "flow:J_heart_outlet:external_outlet", + "20400": "flow:J_heart_outlet:external_outlet", + "20401": "flow:J_heart_outlet:external_outlet", + "20402": "flow:J_heart_outlet:external_outlet", + "20403": "flow:J_heart_outlet:external_outlet", + "20404": "flow:J_heart_outlet:external_outlet", + "20405": "flow:J_heart_outlet:external_outlet", + "20406": "flow:J_heart_outlet:external_outlet", + "20407": "flow:J_heart_outlet:external_outlet", + "20408": "flow:J_heart_outlet:external_outlet", + "20409": "flow:J_heart_outlet:external_outlet", + "20410": "flow:J_heart_outlet:external_outlet", + "20411": "flow:J_heart_outlet:external_outlet", + "20412": "flow:J_heart_outlet:external_outlet", + "20413": "flow:J_heart_outlet:external_outlet", + "20414": "flow:J_heart_outlet:external_outlet", + "20415": "flow:J_heart_outlet:external_outlet", + "20416": "flow:J_heart_outlet:external_outlet", + "20417": "flow:J_heart_outlet:external_outlet", + "20418": "flow:J_heart_outlet:external_outlet", + "20419": "flow:J_heart_outlet:external_outlet", + "20420": "flow:J_heart_outlet:external_outlet", + "20421": "flow:J_heart_outlet:external_outlet", + "20422": "flow:J_heart_outlet:external_outlet", + "20423": "flow:J_heart_outlet:external_outlet", + "20424": "flow:J_heart_outlet:external_outlet", + "20425": "flow:J_heart_outlet:external_outlet", + "20426": "flow:J_heart_outlet:external_outlet", + "20427": "flow:J_heart_outlet:external_outlet", + "20428": "flow:J_heart_outlet:external_outlet", + "20429": "flow:J_heart_outlet:external_outlet", + "20430": "flow:J_heart_outlet:external_outlet", + "20431": "flow:J_heart_outlet:external_outlet", + "20432": "flow:J_heart_outlet:external_outlet", + "20433": "flow:J_heart_outlet:external_outlet", + "20434": "flow:J_heart_outlet:external_outlet", + "20435": "flow:J_heart_outlet:external_outlet", + "20436": "flow:J_heart_outlet:external_outlet", + "20437": "flow:J_heart_outlet:external_outlet", + "20438": "flow:J_heart_outlet:external_outlet", + "20439": "flow:J_heart_outlet:external_outlet", + "20440": "flow:J_heart_outlet:external_outlet", + "20441": "flow:J_heart_outlet:external_outlet", + "20442": "flow:J_heart_outlet:external_outlet", + "20443": "flow:J_heart_outlet:external_outlet", + "20444": "flow:J_heart_outlet:external_outlet", + "20445": "flow:J_heart_outlet:external_outlet", + "20446": "flow:J_heart_outlet:external_outlet", + "20447": "flow:J_heart_outlet:external_outlet", + "20448": "flow:J_heart_outlet:external_outlet", + "20449": "flow:J_heart_outlet:external_outlet", + "20450": "flow:J_heart_outlet:external_outlet", + "20451": "flow:J_heart_outlet:external_outlet", + "20452": "flow:J_heart_outlet:external_outlet", + "20453": "flow:J_heart_outlet:external_outlet", + "20454": "flow:J_heart_outlet:external_outlet", + "20455": "flow:J_heart_outlet:external_outlet", + "20456": "flow:J_heart_outlet:external_outlet", + "20457": "flow:J_heart_outlet:external_outlet", + "20458": "flow:J_heart_outlet:external_outlet", + "20459": "flow:J_heart_outlet:external_outlet", + "20460": "flow:J_heart_outlet:external_outlet", + "20461": "flow:J_heart_outlet:external_outlet", + "20462": "flow:J_heart_outlet:external_outlet", + "20463": "flow:J_heart_outlet:external_outlet", + "20464": "flow:J_heart_outlet:external_outlet", + "20465": "flow:J_heart_outlet:external_outlet", + "20466": "flow:J_heart_outlet:external_outlet", + "20467": "flow:J_heart_outlet:external_outlet", + "20468": "flow:J_heart_outlet:external_outlet", + "20469": "flow:J_heart_outlet:external_outlet", + "20470": "flow:J_heart_outlet:external_outlet", + "20471": "flow:J_heart_outlet:external_outlet", + "20472": "flow:J_heart_outlet:external_outlet", + "20473": "flow:J_heart_outlet:external_outlet", + "20474": "flow:J_heart_outlet:external_outlet", + "20475": "flow:J_heart_outlet:external_outlet", + "20476": "flow:J_heart_outlet:external_outlet", + "20477": "flow:J_heart_outlet:external_outlet", + "20478": "flow:J_heart_outlet:external_outlet", + "20479": "flow:J_heart_outlet:external_outlet", + "20480": "flow:J_heart_outlet:external_outlet", + "20481": "flow:J_heart_outlet:external_outlet", + "20482": "flow:J_heart_outlet:external_outlet", + "20483": "flow:J_heart_outlet:external_outlet", + "20484": "flow:J_heart_outlet:external_outlet", + "20485": "flow:J_heart_outlet:external_outlet", + "20486": "flow:J_heart_outlet:external_outlet", + "20487": "flow:J_heart_outlet:external_outlet", + "20488": "flow:J_heart_outlet:external_outlet", + "20489": "flow:J_heart_outlet:external_outlet", + "20490": "flow:J_heart_outlet:external_outlet", + "20491": "flow:J_heart_outlet:external_outlet", + "20492": "flow:J_heart_outlet:external_outlet", + "20493": "flow:J_heart_outlet:external_outlet", + "20494": "flow:J_heart_outlet:external_outlet", + "20495": "flow:J_heart_outlet:external_outlet", + "20496": "flow:J_heart_outlet:external_outlet", + "20497": "flow:J_heart_outlet:external_outlet", + "20498": "flow:J_heart_outlet:external_outlet", + "20499": "flow:J_heart_outlet:external_outlet", + "20500": "flow:J_heart_outlet:external_outlet", + "20501": "flow:J_heart_outlet:external_outlet", + "20502": "flow:J_heart_outlet:external_outlet", + "20503": "flow:J_heart_outlet:external_outlet", + "20504": "flow:J_heart_outlet:external_outlet", + "20505": "flow:J_heart_outlet:external_outlet", + "20506": "flow:J_heart_outlet:external_outlet", + "20507": "flow:J_heart_outlet:external_outlet", + "20508": "flow:J_heart_outlet:external_outlet", + "20509": "flow:J_heart_outlet:external_outlet", + "20510": "flow:J_heart_outlet:external_outlet", + "20511": "flow:J_heart_outlet:external_outlet", + "20512": "flow:J_heart_outlet:external_outlet", + "20513": "flow:J_heart_outlet:external_outlet", + "20514": "flow:J_heart_outlet:external_outlet", + "20515": "flow:J_heart_outlet:external_outlet", + "20516": "flow:J_heart_outlet:external_outlet", + "20517": "flow:J_heart_outlet:external_outlet", + "20518": "flow:J_heart_outlet:external_outlet", + "20519": "flow:J_heart_outlet:external_outlet", + "20520": "flow:J_heart_outlet:external_outlet", + "20521": "flow:J_heart_outlet:external_outlet", + "20522": "flow:J_heart_outlet:external_outlet", + "20523": "flow:J_heart_outlet:external_outlet", + "20524": "flow:J_heart_outlet:external_outlet", + "20525": "flow:J_heart_outlet:external_outlet", + "20526": "flow:J_heart_outlet:external_outlet", + "20527": "flow:J_heart_outlet:external_outlet", + "20528": "flow:J_heart_outlet:external_outlet", + "20529": "flow:J_heart_outlet:external_outlet", + "20530": "flow:J_heart_outlet:external_outlet", + "20531": "flow:J_heart_outlet:external_outlet", + "20532": "flow:J_heart_outlet:external_outlet", + "20533": "flow:J_heart_outlet:external_outlet", + "20534": "flow:J_heart_outlet:external_outlet", + "20535": "flow:J_heart_outlet:external_outlet", + "20536": "flow:J_heart_outlet:external_outlet", + "20537": "flow:J_heart_outlet:external_outlet", + "20538": "flow:J_heart_outlet:external_outlet", + "20539": "flow:J_heart_outlet:external_outlet", + "20540": "flow:J_heart_outlet:external_outlet", + "20541": "flow:J_heart_outlet:external_outlet", + "20542": "flow:J_heart_outlet:external_outlet", + "20543": "flow:J_heart_outlet:external_outlet", + "20544": "flow:J_heart_outlet:external_outlet", + "20545": "flow:J_heart_outlet:external_outlet", + "20546": "flow:J_heart_outlet:external_outlet", + "20547": "flow:J_heart_outlet:external_outlet", + "20548": "flow:J_heart_outlet:external_outlet", + "20549": "flow:J_heart_outlet:external_outlet", + "20550": "flow:J_heart_outlet:external_outlet", + "20551": "flow:J_heart_outlet:external_outlet", + "20552": "flow:J_heart_outlet:external_outlet", + "20553": "flow:J_heart_outlet:external_outlet", + "20554": "flow:J_heart_outlet:external_outlet", + "20555": "flow:J_heart_outlet:external_outlet", + "20556": "flow:J_heart_outlet:external_outlet", + "20557": "flow:J_heart_outlet:external_outlet", + "20558": "flow:J_heart_outlet:external_outlet", + "20559": "flow:J_heart_outlet:external_outlet", + "20560": "flow:J_heart_outlet:external_outlet", + "20561": "flow:J_heart_outlet:external_outlet", + "20562": "flow:J_heart_outlet:external_outlet", + "20563": "flow:J_heart_outlet:external_outlet", + "20564": "flow:J_heart_outlet:external_outlet", + "20565": "flow:J_heart_outlet:external_outlet", + "20566": "flow:J_heart_outlet:external_outlet", + "20567": "flow:J_heart_outlet:external_outlet", + "20568": "flow:J_heart_outlet:external_outlet", + "20569": "flow:J_heart_outlet:external_outlet", + "20570": "flow:J_heart_outlet:external_outlet", + "20571": "flow:J_heart_outlet:external_outlet", + "20572": "flow:J_heart_outlet:external_outlet", + "20573": "flow:J_heart_outlet:external_outlet", + "20574": "flow:J_heart_outlet:external_outlet", + "20575": "flow:J_heart_outlet:external_outlet", + "20576": "flow:J_heart_outlet:external_outlet", + "20577": "flow:J_heart_outlet:external_outlet", + "20578": "flow:J_heart_outlet:external_outlet", + "20579": "flow:J_heart_outlet:external_outlet", + "20580": "flow:J_heart_outlet:external_outlet", + "20581": "flow:J_heart_outlet:external_outlet", + "20582": "flow:J_heart_outlet:external_outlet", + "20583": "flow:J_heart_outlet:external_outlet", + "20584": "flow:J_heart_outlet:external_outlet", + "20585": "flow:J_heart_outlet:external_outlet", + "20586": "flow:J_heart_outlet:external_outlet", + "20587": "flow:J_heart_outlet:external_outlet", + "20588": "flow:J_heart_outlet:external_outlet", + "20589": "flow:J_heart_outlet:external_outlet", + "20590": "flow:J_heart_outlet:external_outlet", + "20591": "flow:J_heart_outlet:external_outlet", + "20592": "flow:J_heart_outlet:external_outlet", + "20593": "flow:J_heart_outlet:external_outlet", + "20594": "flow:J_heart_outlet:external_outlet", + "20595": "flow:J_heart_outlet:external_outlet", + "20596": "flow:J_heart_outlet:external_outlet", + "20597": "flow:J_heart_outlet:external_outlet", + "20598": "flow:J_heart_outlet:external_outlet", + "20599": "flow:J_heart_outlet:external_outlet", + "20600": "flow:J_heart_outlet:external_outlet", + "20601": "flow:J_heart_outlet:external_outlet", + "20602": "flow:J_heart_outlet:external_outlet", + "20603": "flow:J_heart_outlet:external_outlet", + "20604": "flow:J_heart_outlet:external_outlet", + "20605": "flow:J_heart_outlet:external_outlet", + "20606": "flow:J_heart_outlet:external_outlet", + "20607": "flow:J_heart_outlet:external_outlet", + "20608": "flow:J_heart_outlet:external_outlet", + "20609": "flow:J_heart_outlet:external_outlet", + "20610": "flow:J_heart_outlet:external_outlet", + "20611": "flow:J_heart_outlet:external_outlet", + "20612": "flow:J_heart_outlet:external_outlet", + "20613": "flow:J_heart_outlet:external_outlet", + "20614": "flow:J_heart_outlet:external_outlet", + "20615": "flow:J_heart_outlet:external_outlet", + "20616": "flow:J_heart_outlet:external_outlet", + "20617": "flow:J_heart_outlet:external_outlet", + "20618": "flow:J_heart_outlet:external_outlet", + "20619": "flow:J_heart_outlet:external_outlet", + "20620": "flow:J_heart_outlet:external_outlet", + "20621": "flow:J_heart_outlet:external_outlet", + "20622": "flow:J_heart_outlet:external_outlet", + "20623": "flow:J_heart_outlet:external_outlet", + "20624": "flow:J_heart_outlet:external_outlet", + "20625": "flow:J_heart_outlet:external_outlet", + "20626": "flow:J_heart_outlet:external_outlet", + "20627": "flow:J_heart_outlet:external_outlet", + "20628": "flow:J_heart_outlet:external_outlet", + "20629": "flow:J_heart_outlet:external_outlet", + "20630": "flow:J_heart_outlet:external_outlet", + "20631": "flow:J_heart_outlet:external_outlet", + "20632": "flow:J_heart_outlet:external_outlet", + "20633": "flow:J_heart_outlet:external_outlet", + "20634": "flow:J_heart_outlet:external_outlet", + "20635": "flow:J_heart_outlet:external_outlet", + "20636": "flow:J_heart_outlet:external_outlet", + "20637": "flow:J_heart_outlet:external_outlet", + "20638": "flow:J_heart_outlet:external_outlet", + "20639": "flow:J_heart_outlet:external_outlet", + "20640": "flow:J_heart_outlet:external_outlet", + "20641": "flow:J_heart_outlet:external_outlet", + "20642": "flow:J_heart_outlet:external_outlet", + "20643": "flow:J_heart_outlet:external_outlet", + "20644": "flow:J_heart_outlet:external_outlet", + "20645": "flow:J_heart_outlet:external_outlet", + "20646": "flow:J_heart_outlet:external_outlet", + "20647": "flow:J_heart_outlet:external_outlet", + "20648": "flow:J_heart_outlet:external_outlet", + "20649": "flow:J_heart_outlet:external_outlet", + "20650": "flow:J_heart_outlet:external_outlet", + "20651": "flow:J_heart_outlet:external_outlet", + "20652": "flow:J_heart_outlet:external_outlet", + "20653": "flow:J_heart_outlet:external_outlet", + "20654": "flow:J_heart_outlet:external_outlet", + "20655": "flow:J_heart_outlet:external_outlet", + "20656": "flow:J_heart_outlet:external_outlet", + "20657": "flow:J_heart_outlet:external_outlet", + "20658": "flow:J_heart_outlet:external_outlet", + "20659": "flow:J_heart_outlet:external_outlet", + "20660": "flow:J_heart_outlet:external_outlet", + "20661": "flow:J_heart_outlet:external_outlet", + "20662": "flow:J_heart_outlet:external_outlet", + "20663": "flow:J_heart_outlet:external_outlet", + "20664": "flow:J_heart_outlet:external_outlet", + "20665": "flow:J_heart_outlet:external_outlet", + "20666": "flow:J_heart_outlet:external_outlet", + "20667": "flow:J_heart_outlet:external_outlet", + "20668": "flow:J_heart_outlet:external_outlet", + "20669": "flow:J_heart_outlet:external_outlet", + "20670": "flow:J_heart_outlet:external_outlet", + "20671": "flow:J_heart_outlet:external_outlet", + "20672": "flow:J_heart_outlet:external_outlet", + "20673": "flow:J_heart_outlet:external_outlet", + "20674": "flow:J_heart_outlet:external_outlet", + "20675": "flow:J_heart_outlet:external_outlet", + "20676": "flow:J_heart_outlet:external_outlet", + "20677": "flow:J_heart_outlet:external_outlet", + "20678": "flow:J_heart_outlet:external_outlet", + "20679": "flow:J_heart_outlet:external_outlet", + "20680": "flow:J_heart_outlet:external_outlet", + "20681": "flow:J_heart_outlet:external_outlet", + "20682": "flow:J_heart_outlet:external_outlet", + "20683": "flow:J_heart_outlet:external_outlet", + "20684": "flow:J_heart_outlet:external_outlet", + "20685": "flow:J_heart_outlet:external_outlet", + "20686": "flow:J_heart_outlet:external_outlet", + "20687": "flow:J_heart_outlet:external_outlet", + "20688": "flow:J_heart_outlet:external_outlet", + "20689": "flow:J_heart_outlet:external_outlet", + "20690": "flow:J_heart_outlet:external_outlet", + "20691": "flow:J_heart_outlet:external_outlet", + "20692": "flow:J_heart_outlet:external_outlet", + "20693": "flow:J_heart_outlet:external_outlet", + "20694": "flow:J_heart_outlet:external_outlet", + "20695": "flow:J_heart_outlet:external_outlet", + "20696": "flow:J_heart_outlet:external_outlet", + "20697": "flow:J_heart_outlet:external_outlet", + "20698": "flow:J_heart_outlet:external_outlet", + "20699": "flow:J_heart_outlet:external_outlet", + "20700": "flow:J_heart_outlet:external_outlet", + "20701": "flow:J_heart_outlet:external_outlet", + "20702": "flow:J_heart_outlet:external_outlet", + "20703": "flow:J_heart_outlet:external_outlet", + "20704": "flow:J_heart_outlet:external_outlet", + "20705": "flow:J_heart_outlet:external_outlet", + "20706": "flow:J_heart_outlet:external_outlet", + "20707": "flow:J_heart_outlet:external_outlet", + "20708": "flow:J_heart_outlet:external_outlet", + "20709": "flow:J_heart_outlet:external_outlet", + "20710": "flow:J_heart_outlet:external_outlet", + "20711": "flow:J_heart_outlet:external_outlet", + "20712": "flow:J_heart_outlet:external_outlet", + "20713": "flow:J_heart_outlet:external_outlet", + "20714": "flow:J_heart_outlet:external_outlet", + "20715": "flow:J_heart_outlet:external_outlet", + "20716": "flow:J_heart_outlet:external_outlet", + "20717": "flow:J_heart_outlet:external_outlet", + "20718": "flow:J_heart_outlet:external_outlet", + "20719": "flow:J_heart_outlet:external_outlet", + "20720": "flow:J_heart_outlet:external_outlet", + "20721": "flow:J_heart_outlet:external_outlet", + "20722": "flow:J_heart_outlet:external_outlet", + "20723": "flow:J_heart_outlet:external_outlet", + "20724": "flow:J_heart_outlet:external_outlet", + "20725": "flow:J_heart_outlet:external_outlet", + "20726": "flow:J_heart_outlet:external_outlet", + "20727": "flow:J_heart_outlet:external_outlet", + "20728": "flow:J_heart_outlet:external_outlet", + "20729": "flow:J_heart_outlet:external_outlet", + "20730": "flow:J_heart_outlet:external_outlet", + "20731": "flow:J_heart_outlet:external_outlet", + "20732": "flow:J_heart_outlet:external_outlet", + "20733": "flow:J_heart_outlet:external_outlet", + "20734": "flow:J_heart_outlet:external_outlet", + "20735": "flow:J_heart_outlet:external_outlet", + "20736": "flow:J_heart_outlet:external_outlet", + "20737": "flow:J_heart_outlet:external_outlet", + "20738": "flow:J_heart_outlet:external_outlet", + "20739": "flow:J_heart_outlet:external_outlet", + "20740": "flow:J_heart_outlet:external_outlet", + "20741": "flow:J_heart_outlet:external_outlet", + "20742": "flow:J_heart_outlet:external_outlet", + "20743": "flow:J_heart_outlet:external_outlet", + "20744": "flow:J_heart_outlet:external_outlet", + "20745": "flow:J_heart_outlet:external_outlet", + "20746": "flow:J_heart_outlet:external_outlet", + "20747": "flow:J_heart_outlet:external_outlet", + "20748": "flow:J_heart_outlet:external_outlet", + "20749": "flow:J_heart_outlet:external_outlet", + "20750": "flow:J_heart_outlet:external_outlet", + "20751": "flow:J_heart_outlet:external_outlet", + "20752": "flow:J_heart_outlet:external_outlet", + "20753": "flow:J_heart_outlet:external_outlet", + "20754": "flow:J_heart_outlet:external_outlet", + "20755": "flow:J_heart_outlet:external_outlet", + "20756": "flow:J_heart_outlet:external_outlet", + "20757": "flow:J_heart_outlet:external_outlet", + "20758": "flow:J_heart_outlet:external_outlet", + "20759": "flow:J_heart_outlet:external_outlet", + "20760": "flow:J_heart_outlet:external_outlet", + "20761": "flow:J_heart_outlet:external_outlet", + "20762": "flow:J_heart_outlet:external_outlet", + "20763": "flow:J_heart_outlet:external_outlet", + "20764": "flow:J_heart_outlet:external_outlet", + "20765": "flow:J_heart_outlet:external_outlet", + "20766": "flow:J_heart_outlet:external_outlet", + "20767": "flow:J_heart_outlet:external_outlet", + "20768": "flow:J_heart_outlet:external_outlet", + "20769": "flow:J_heart_outlet:external_outlet", + "20770": "flow:J_heart_outlet:external_outlet", + "20771": "flow:J_heart_outlet:external_outlet", + "20772": "flow:J_heart_outlet:external_outlet", + "20773": "flow:J_heart_outlet:external_outlet", + "20774": "flow:J_heart_outlet:external_outlet", + "20775": "flow:J_heart_outlet:external_outlet", + "20776": "flow:J_heart_outlet:external_outlet", + "20777": "flow:J_heart_outlet:external_outlet", + "20778": "flow:J_heart_outlet:external_outlet", + "20779": "flow:J_heart_outlet:external_outlet", + "20780": "flow:J_heart_outlet:external_outlet", + "20781": "flow:J_heart_outlet:external_outlet", + "20782": "flow:J_heart_outlet:external_outlet", + "20783": "flow:J_heart_outlet:external_outlet", + "20784": "flow:J_heart_outlet:external_outlet", + "20785": "flow:J_heart_outlet:external_outlet", + "20786": "flow:J_heart_outlet:external_outlet", + "20787": "flow:J_heart_outlet:external_outlet", + "20788": "flow:J_heart_outlet:external_outlet", + "20789": "flow:J_heart_outlet:external_outlet", + "20790": "flow:J_heart_outlet:external_outlet", + "20791": "flow:J_heart_outlet:external_outlet", + "20792": "flow:J_heart_outlet:external_outlet", + "20793": "flow:J_heart_outlet:external_outlet", + "20794": "flow:J_heart_outlet:external_outlet", + "20795": "flow:J_heart_outlet:external_outlet", + "20796": "flow:J_heart_outlet:external_outlet", + "20797": "flow:J_heart_outlet:external_outlet", + "20798": "flow:J_heart_outlet:external_outlet", + "20799": "flow:J_heart_outlet:external_outlet", + "20800": "flow:J_heart_outlet:external_outlet", + "20801": "flow:J_heart_outlet:external_outlet", + "20802": "flow:J_heart_outlet:external_outlet", + "20803": "flow:J_heart_outlet:external_outlet", + "20804": "flow:J_heart_outlet:external_outlet", + "20805": "flow:J_heart_outlet:external_outlet", + "20806": "flow:J_heart_outlet:external_outlet", + "20807": "flow:J_heart_outlet:external_outlet", + "20808": "flow:J_heart_outlet:external_outlet", + "20809": "flow:J_heart_outlet:external_outlet", + "20810": "flow:J_heart_outlet:external_outlet", + "20811": "flow:J_heart_outlet:external_outlet", + "20812": "flow:J_heart_outlet:external_outlet", + "20813": "flow:J_heart_outlet:external_outlet", + "20814": "flow:J_heart_outlet:external_outlet", + "20815": "flow:J_heart_outlet:external_outlet", + "20816": "flow:J_heart_outlet:external_outlet", + "20817": "flow:J_heart_outlet:external_outlet", + "20818": "flow:J_heart_outlet:external_outlet", + "20819": "flow:J_heart_outlet:external_outlet", + "20820": "flow:J_heart_outlet:external_outlet", + "20821": "flow:J_heart_outlet:external_outlet", + "20822": "flow:J_heart_outlet:external_outlet", + "20823": "flow:J_heart_outlet:external_outlet", + "20824": "flow:J_heart_outlet:external_outlet", + "20825": "flow:J_heart_outlet:external_outlet", + "20826": "flow:J_heart_outlet:external_outlet", + "20827": "flow:J_heart_outlet:external_outlet", + "20828": "flow:J_heart_outlet:external_outlet", + "20829": "flow:J_heart_outlet:external_outlet", + "20830": "flow:J_heart_outlet:external_outlet", + "20831": "flow:J_heart_outlet:external_outlet", + "20832": "flow:J_heart_outlet:external_outlet", + "20833": "flow:J_heart_outlet:external_outlet", + "20834": "flow:J_heart_outlet:external_outlet", + "20835": "flow:J_heart_outlet:external_outlet", + "20836": "flow:J_heart_outlet:external_outlet", + "20837": "flow:J_heart_outlet:external_outlet", + "20838": "flow:J_heart_outlet:external_outlet", + "20839": "flow:J_heart_outlet:external_outlet", + "20840": "flow:J_heart_outlet:external_outlet", + "20841": "flow:J_heart_outlet:external_outlet", + "20842": "flow:J_heart_outlet:external_outlet", + "20843": "flow:J_heart_outlet:external_outlet", + "20844": "flow:J_heart_outlet:external_outlet", + "20845": "flow:J_heart_outlet:external_outlet", + "20846": "flow:J_heart_outlet:external_outlet", + "20847": "flow:J_heart_outlet:external_outlet", + "20848": "flow:J_heart_outlet:external_outlet", + "20849": "flow:J_heart_outlet:external_outlet", + "20850": "flow:J_heart_outlet:external_outlet", + "20851": "flow:J_heart_outlet:external_outlet", + "20852": "flow:J_heart_outlet:external_outlet", + "20853": "flow:J_heart_outlet:external_outlet", + "20854": "flow:J_heart_outlet:external_outlet", + "20855": "flow:J_heart_outlet:external_outlet", + "20856": "flow:J_heart_outlet:external_outlet", + "20857": "flow:J_heart_outlet:external_outlet", + "20858": "flow:J_heart_outlet:external_outlet", + "20859": "flow:J_heart_outlet:external_outlet", + "20860": "flow:J_heart_outlet:external_outlet", + "20861": "flow:J_heart_outlet:external_outlet", + "20862": "flow:J_heart_outlet:external_outlet", + "20863": "flow:J_heart_outlet:external_outlet", + "20864": "flow:J_heart_outlet:external_outlet", + "20865": "flow:J_heart_outlet:external_outlet", + "20866": "flow:J_heart_outlet:external_outlet", + "20867": "flow:J_heart_outlet:external_outlet", + "20868": "flow:J_heart_outlet:external_outlet", + "20869": "flow:J_heart_outlet:external_outlet", + "20870": "flow:J_heart_outlet:external_outlet", + "20871": "flow:J_heart_outlet:external_outlet", + "20872": "flow:J_heart_outlet:external_outlet", + "20873": "flow:J_heart_outlet:external_outlet", + "20874": "flow:J_heart_outlet:external_outlet", + "20875": "flow:J_heart_outlet:external_outlet", + "20876": "flow:J_heart_outlet:external_outlet", + "20877": "flow:J_heart_outlet:external_outlet", + "20878": "flow:J_heart_outlet:external_outlet", + "20879": "flow:J_heart_outlet:external_outlet", + "20880": "flow:J_heart_outlet:external_outlet", + "20881": "flow:J_heart_outlet:external_outlet", + "20882": "flow:J_heart_outlet:external_outlet", + "20883": "flow:J_heart_outlet:external_outlet", + "20884": "flow:J_heart_outlet:external_outlet", + "20885": "flow:J_heart_outlet:external_outlet", + "20886": "flow:J_heart_outlet:external_outlet", + "20887": "flow:J_heart_outlet:external_outlet", + "20888": "flow:J_heart_outlet:external_outlet", + "20889": "flow:J_heart_outlet:external_outlet", + "20890": "flow:J_heart_outlet:external_outlet", + "20891": "flow:J_heart_outlet:external_outlet", + "20892": "flow:J_heart_outlet:external_outlet", + "20893": "flow:J_heart_outlet:external_outlet", + "20894": "flow:J_heart_outlet:external_outlet", + "20895": "flow:J_heart_outlet:external_outlet", + "20896": "flow:J_heart_outlet:external_outlet", + "20897": "flow:J_heart_outlet:external_outlet", + "20898": "flow:J_heart_outlet:external_outlet", + "20899": "flow:J_heart_outlet:external_outlet", + "20900": "flow:J_heart_outlet:external_outlet", + "20901": "flow:J_heart_outlet:external_outlet", + "20902": "flow:J_heart_outlet:external_outlet", + "20903": "flow:J_heart_outlet:external_outlet", + "20904": "flow:J_heart_outlet:external_outlet", + "20905": "flow:J_heart_outlet:external_outlet", + "20906": "flow:J_heart_outlet:external_outlet", + "20907": "flow:J_heart_outlet:external_outlet", + "20908": "flow:J_heart_outlet:external_outlet", + "20909": "flow:J_heart_outlet:external_outlet", + "20910": "flow:J_heart_outlet:external_outlet", + "20911": "flow:J_heart_outlet:external_outlet", + "20912": "flow:J_heart_outlet:external_outlet", + "20913": "flow:J_heart_outlet:external_outlet", + "20914": "flow:J_heart_outlet:external_outlet", + "20915": "flow:J_heart_outlet:external_outlet", + "20916": "flow:J_heart_outlet:external_outlet", + "20917": "flow:J_heart_outlet:external_outlet", + "20918": "flow:J_heart_outlet:external_outlet", + "20919": "flow:J_heart_outlet:external_outlet", + "20920": "flow:J_heart_outlet:external_outlet", + "20921": "flow:J_heart_outlet:external_outlet", + "20922": "flow:J_heart_outlet:external_outlet", + "20923": "flow:J_heart_outlet:external_outlet", + "20924": "flow:J_heart_outlet:external_outlet", + "20925": "flow:J_heart_outlet:external_outlet", + "20926": "flow:J_heart_outlet:external_outlet", + "20927": "flow:J_heart_outlet:external_outlet", + "20928": "flow:J_heart_outlet:external_outlet", + "20929": "flow:J_heart_outlet:external_outlet", + "20930": "flow:J_heart_outlet:external_outlet", + "20931": "flow:J_heart_outlet:external_outlet", + "20932": "flow:J_heart_outlet:external_outlet", + "20933": "flow:J_heart_outlet:external_outlet", + "20934": "flow:J_heart_outlet:external_outlet", + "20935": "flow:J_heart_outlet:external_outlet", + "20936": "flow:J_heart_outlet:external_outlet", + "20937": "flow:J_heart_outlet:external_outlet", + "20938": "flow:J_heart_outlet:external_outlet", + "20939": "flow:J_heart_outlet:external_outlet", + "20940": "flow:J_heart_outlet:external_outlet", + "20941": "flow:J_heart_outlet:external_outlet", + "20942": "flow:J_heart_outlet:external_outlet", + "20943": "flow:J_heart_outlet:external_outlet", + "20944": "flow:J_heart_outlet:external_outlet", + "20945": "flow:J_heart_outlet:external_outlet", + "20946": "flow:J_heart_outlet:external_outlet", + "20947": "flow:J_heart_outlet:external_outlet", + "20948": "flow:J_heart_outlet:external_outlet", + "20949": "flow:J_heart_outlet:external_outlet", + "20950": "flow:J_heart_outlet:external_outlet", + "20951": "flow:J_heart_outlet:external_outlet", + "20952": "flow:J_heart_outlet:external_outlet", + "20953": "flow:J_heart_outlet:external_outlet", + "20954": "flow:J_heart_outlet:external_outlet", + "20955": "flow:J_heart_outlet:external_outlet", + "20956": "flow:J_heart_outlet:external_outlet", + "20957": "flow:J_heart_outlet:external_outlet", + "20958": "flow:J_heart_outlet:external_outlet", + "20959": "flow:J_heart_outlet:external_outlet", + "20960": "flow:J_heart_outlet:external_outlet", + "20961": "flow:J_heart_outlet:external_outlet", + "20962": "flow:J_heart_outlet:external_outlet", + "20963": "flow:J_heart_outlet:external_outlet", + "20964": "flow:J_heart_outlet:external_outlet", + "20965": "flow:J_heart_outlet:external_outlet", + "20966": "flow:J_heart_outlet:external_outlet", + "20967": "flow:J_heart_outlet:external_outlet", + "20968": "flow:J_heart_outlet:external_outlet", + "20969": "flow:J_heart_outlet:external_outlet", + "20970": "flow:J_heart_outlet:external_outlet", + "20971": "flow:J_heart_outlet:external_outlet", + "20972": "flow:J_heart_outlet:external_outlet", + "20973": "flow:J_heart_outlet:external_outlet", + "20974": "flow:J_heart_outlet:external_outlet", + "20975": "flow:J_heart_outlet:external_outlet", + "20976": "flow:J_heart_outlet:external_outlet", + "20977": "flow:J_heart_outlet:external_outlet", + "20978": "flow:J_heart_outlet:external_outlet", + "20979": "flow:J_heart_outlet:external_outlet", + "20980": "flow:J_heart_outlet:external_outlet", + "20981": "flow:J_heart_outlet:external_outlet", + "20982": "flow:J_heart_outlet:external_outlet", + "20983": "flow:J_heart_outlet:external_outlet", + "20984": "flow:J_heart_outlet:external_outlet", + "20985": "flow:J_heart_outlet:external_outlet", + "20986": "flow:J_heart_outlet:external_outlet", + "20987": "flow:J_heart_outlet:external_outlet", + "20988": "flow:J_heart_outlet:external_outlet", + "20989": "flow:J_heart_outlet:external_outlet", + "20990": "flow:J_heart_outlet:external_outlet", + "20991": "flow:J_heart_outlet:external_outlet", + "20992": "flow:J_heart_outlet:external_outlet", + "20993": "flow:J_heart_outlet:external_outlet", + "20994": "flow:J_heart_outlet:external_outlet", + "20995": "flow:J_heart_outlet:external_outlet", + "20996": "flow:J_heart_outlet:external_outlet", + "20997": "flow:J_heart_outlet:external_outlet", + "20998": "flow:J_heart_outlet:external_outlet", + "20999": "flow:J_heart_outlet:external_outlet", + "21000": "pressure:J_heart_outlet:external_outlet", + "21001": "pressure:J_heart_outlet:external_outlet", + "21002": "pressure:J_heart_outlet:external_outlet", + "21003": "pressure:J_heart_outlet:external_outlet", + "21004": "pressure:J_heart_outlet:external_outlet", + "21005": "pressure:J_heart_outlet:external_outlet", + "21006": "pressure:J_heart_outlet:external_outlet", + "21007": "pressure:J_heart_outlet:external_outlet", + "21008": "pressure:J_heart_outlet:external_outlet", + "21009": "pressure:J_heart_outlet:external_outlet", + "21010": "pressure:J_heart_outlet:external_outlet", + "21011": "pressure:J_heart_outlet:external_outlet", + "21012": "pressure:J_heart_outlet:external_outlet", + "21013": "pressure:J_heart_outlet:external_outlet", + "21014": "pressure:J_heart_outlet:external_outlet", + "21015": "pressure:J_heart_outlet:external_outlet", + "21016": "pressure:J_heart_outlet:external_outlet", + "21017": "pressure:J_heart_outlet:external_outlet", + "21018": "pressure:J_heart_outlet:external_outlet", + "21019": "pressure:J_heart_outlet:external_outlet", + "21020": "pressure:J_heart_outlet:external_outlet", + "21021": "pressure:J_heart_outlet:external_outlet", + "21022": "pressure:J_heart_outlet:external_outlet", + "21023": "pressure:J_heart_outlet:external_outlet", + "21024": "pressure:J_heart_outlet:external_outlet", + "21025": "pressure:J_heart_outlet:external_outlet", + "21026": "pressure:J_heart_outlet:external_outlet", + "21027": "pressure:J_heart_outlet:external_outlet", + "21028": "pressure:J_heart_outlet:external_outlet", + "21029": "pressure:J_heart_outlet:external_outlet", + "21030": "pressure:J_heart_outlet:external_outlet", + "21031": "pressure:J_heart_outlet:external_outlet", + "21032": "pressure:J_heart_outlet:external_outlet", + "21033": "pressure:J_heart_outlet:external_outlet", + "21034": "pressure:J_heart_outlet:external_outlet", + "21035": "pressure:J_heart_outlet:external_outlet", + "21036": "pressure:J_heart_outlet:external_outlet", + "21037": "pressure:J_heart_outlet:external_outlet", + "21038": "pressure:J_heart_outlet:external_outlet", + "21039": "pressure:J_heart_outlet:external_outlet", + "21040": "pressure:J_heart_outlet:external_outlet", + "21041": "pressure:J_heart_outlet:external_outlet", + "21042": "pressure:J_heart_outlet:external_outlet", + "21043": "pressure:J_heart_outlet:external_outlet", + "21044": "pressure:J_heart_outlet:external_outlet", + "21045": "pressure:J_heart_outlet:external_outlet", + "21046": "pressure:J_heart_outlet:external_outlet", + "21047": "pressure:J_heart_outlet:external_outlet", + "21048": "pressure:J_heart_outlet:external_outlet", + "21049": "pressure:J_heart_outlet:external_outlet", + "21050": "pressure:J_heart_outlet:external_outlet", + "21051": "pressure:J_heart_outlet:external_outlet", + "21052": "pressure:J_heart_outlet:external_outlet", + "21053": "pressure:J_heart_outlet:external_outlet", + "21054": "pressure:J_heart_outlet:external_outlet", + "21055": "pressure:J_heart_outlet:external_outlet", + "21056": "pressure:J_heart_outlet:external_outlet", + "21057": "pressure:J_heart_outlet:external_outlet", + "21058": "pressure:J_heart_outlet:external_outlet", + "21059": "pressure:J_heart_outlet:external_outlet", + "21060": "pressure:J_heart_outlet:external_outlet", + "21061": "pressure:J_heart_outlet:external_outlet", + "21062": "pressure:J_heart_outlet:external_outlet", + "21063": "pressure:J_heart_outlet:external_outlet", + "21064": "pressure:J_heart_outlet:external_outlet", + "21065": "pressure:J_heart_outlet:external_outlet", + "21066": "pressure:J_heart_outlet:external_outlet", + "21067": "pressure:J_heart_outlet:external_outlet", + "21068": "pressure:J_heart_outlet:external_outlet", + "21069": "pressure:J_heart_outlet:external_outlet", + "21070": "pressure:J_heart_outlet:external_outlet", + "21071": "pressure:J_heart_outlet:external_outlet", + "21072": "pressure:J_heart_outlet:external_outlet", + "21073": "pressure:J_heart_outlet:external_outlet", + "21074": "pressure:J_heart_outlet:external_outlet", + "21075": "pressure:J_heart_outlet:external_outlet", + "21076": "pressure:J_heart_outlet:external_outlet", + "21077": "pressure:J_heart_outlet:external_outlet", + "21078": "pressure:J_heart_outlet:external_outlet", + "21079": "pressure:J_heart_outlet:external_outlet", + "21080": "pressure:J_heart_outlet:external_outlet", + "21081": "pressure:J_heart_outlet:external_outlet", + "21082": "pressure:J_heart_outlet:external_outlet", + "21083": "pressure:J_heart_outlet:external_outlet", + "21084": "pressure:J_heart_outlet:external_outlet", + "21085": "pressure:J_heart_outlet:external_outlet", + "21086": "pressure:J_heart_outlet:external_outlet", + "21087": "pressure:J_heart_outlet:external_outlet", + "21088": "pressure:J_heart_outlet:external_outlet", + "21089": "pressure:J_heart_outlet:external_outlet", + "21090": "pressure:J_heart_outlet:external_outlet", + "21091": "pressure:J_heart_outlet:external_outlet", + "21092": "pressure:J_heart_outlet:external_outlet", + "21093": "pressure:J_heart_outlet:external_outlet", + "21094": "pressure:J_heart_outlet:external_outlet", + "21095": "pressure:J_heart_outlet:external_outlet", + "21096": "pressure:J_heart_outlet:external_outlet", + "21097": "pressure:J_heart_outlet:external_outlet", + "21098": "pressure:J_heart_outlet:external_outlet", + "21099": "pressure:J_heart_outlet:external_outlet", + "21100": "pressure:J_heart_outlet:external_outlet", + "21101": "pressure:J_heart_outlet:external_outlet", + "21102": "pressure:J_heart_outlet:external_outlet", + "21103": "pressure:J_heart_outlet:external_outlet", + "21104": "pressure:J_heart_outlet:external_outlet", + "21105": "pressure:J_heart_outlet:external_outlet", + "21106": "pressure:J_heart_outlet:external_outlet", + "21107": "pressure:J_heart_outlet:external_outlet", + "21108": "pressure:J_heart_outlet:external_outlet", + "21109": "pressure:J_heart_outlet:external_outlet", + "21110": "pressure:J_heart_outlet:external_outlet", + "21111": "pressure:J_heart_outlet:external_outlet", + "21112": "pressure:J_heart_outlet:external_outlet", + "21113": "pressure:J_heart_outlet:external_outlet", + "21114": "pressure:J_heart_outlet:external_outlet", + "21115": "pressure:J_heart_outlet:external_outlet", + "21116": "pressure:J_heart_outlet:external_outlet", + "21117": "pressure:J_heart_outlet:external_outlet", + "21118": "pressure:J_heart_outlet:external_outlet", + "21119": "pressure:J_heart_outlet:external_outlet", + "21120": "pressure:J_heart_outlet:external_outlet", + "21121": "pressure:J_heart_outlet:external_outlet", + "21122": "pressure:J_heart_outlet:external_outlet", + "21123": "pressure:J_heart_outlet:external_outlet", + "21124": "pressure:J_heart_outlet:external_outlet", + "21125": "pressure:J_heart_outlet:external_outlet", + "21126": "pressure:J_heart_outlet:external_outlet", + "21127": "pressure:J_heart_outlet:external_outlet", + "21128": "pressure:J_heart_outlet:external_outlet", + "21129": "pressure:J_heart_outlet:external_outlet", + "21130": "pressure:J_heart_outlet:external_outlet", + "21131": "pressure:J_heart_outlet:external_outlet", + "21132": "pressure:J_heart_outlet:external_outlet", + "21133": "pressure:J_heart_outlet:external_outlet", + "21134": "pressure:J_heart_outlet:external_outlet", + "21135": "pressure:J_heart_outlet:external_outlet", + "21136": "pressure:J_heart_outlet:external_outlet", + "21137": "pressure:J_heart_outlet:external_outlet", + "21138": "pressure:J_heart_outlet:external_outlet", + "21139": "pressure:J_heart_outlet:external_outlet", + "21140": "pressure:J_heart_outlet:external_outlet", + "21141": "pressure:J_heart_outlet:external_outlet", + "21142": "pressure:J_heart_outlet:external_outlet", + "21143": "pressure:J_heart_outlet:external_outlet", + "21144": "pressure:J_heart_outlet:external_outlet", + "21145": "pressure:J_heart_outlet:external_outlet", + "21146": "pressure:J_heart_outlet:external_outlet", + "21147": "pressure:J_heart_outlet:external_outlet", + "21148": "pressure:J_heart_outlet:external_outlet", + "21149": "pressure:J_heart_outlet:external_outlet", + "21150": "pressure:J_heart_outlet:external_outlet", + "21151": "pressure:J_heart_outlet:external_outlet", + "21152": "pressure:J_heart_outlet:external_outlet", + "21153": "pressure:J_heart_outlet:external_outlet", + "21154": "pressure:J_heart_outlet:external_outlet", + "21155": "pressure:J_heart_outlet:external_outlet", + "21156": "pressure:J_heart_outlet:external_outlet", + "21157": "pressure:J_heart_outlet:external_outlet", + "21158": "pressure:J_heart_outlet:external_outlet", + "21159": "pressure:J_heart_outlet:external_outlet", + "21160": "pressure:J_heart_outlet:external_outlet", + "21161": "pressure:J_heart_outlet:external_outlet", + "21162": "pressure:J_heart_outlet:external_outlet", + "21163": "pressure:J_heart_outlet:external_outlet", + "21164": "pressure:J_heart_outlet:external_outlet", + "21165": "pressure:J_heart_outlet:external_outlet", + "21166": "pressure:J_heart_outlet:external_outlet", + "21167": "pressure:J_heart_outlet:external_outlet", + "21168": "pressure:J_heart_outlet:external_outlet", + "21169": "pressure:J_heart_outlet:external_outlet", + "21170": "pressure:J_heart_outlet:external_outlet", + "21171": "pressure:J_heart_outlet:external_outlet", + "21172": "pressure:J_heart_outlet:external_outlet", + "21173": "pressure:J_heart_outlet:external_outlet", + "21174": "pressure:J_heart_outlet:external_outlet", + "21175": "pressure:J_heart_outlet:external_outlet", + "21176": "pressure:J_heart_outlet:external_outlet", + "21177": "pressure:J_heart_outlet:external_outlet", + "21178": "pressure:J_heart_outlet:external_outlet", + "21179": "pressure:J_heart_outlet:external_outlet", + "21180": "pressure:J_heart_outlet:external_outlet", + "21181": "pressure:J_heart_outlet:external_outlet", + "21182": "pressure:J_heart_outlet:external_outlet", + "21183": "pressure:J_heart_outlet:external_outlet", + "21184": "pressure:J_heart_outlet:external_outlet", + "21185": "pressure:J_heart_outlet:external_outlet", + "21186": "pressure:J_heart_outlet:external_outlet", + "21187": "pressure:J_heart_outlet:external_outlet", + "21188": "pressure:J_heart_outlet:external_outlet", + "21189": "pressure:J_heart_outlet:external_outlet", + "21190": "pressure:J_heart_outlet:external_outlet", + "21191": "pressure:J_heart_outlet:external_outlet", + "21192": "pressure:J_heart_outlet:external_outlet", + "21193": "pressure:J_heart_outlet:external_outlet", + "21194": "pressure:J_heart_outlet:external_outlet", + "21195": "pressure:J_heart_outlet:external_outlet", + "21196": "pressure:J_heart_outlet:external_outlet", + "21197": "pressure:J_heart_outlet:external_outlet", + "21198": "pressure:J_heart_outlet:external_outlet", + "21199": "pressure:J_heart_outlet:external_outlet", + "21200": "pressure:J_heart_outlet:external_outlet", + "21201": "pressure:J_heart_outlet:external_outlet", + "21202": "pressure:J_heart_outlet:external_outlet", + "21203": "pressure:J_heart_outlet:external_outlet", + "21204": "pressure:J_heart_outlet:external_outlet", + "21205": "pressure:J_heart_outlet:external_outlet", + "21206": "pressure:J_heart_outlet:external_outlet", + "21207": "pressure:J_heart_outlet:external_outlet", + "21208": "pressure:J_heart_outlet:external_outlet", + "21209": "pressure:J_heart_outlet:external_outlet", + "21210": "pressure:J_heart_outlet:external_outlet", + "21211": "pressure:J_heart_outlet:external_outlet", + "21212": "pressure:J_heart_outlet:external_outlet", + "21213": "pressure:J_heart_outlet:external_outlet", + "21214": "pressure:J_heart_outlet:external_outlet", + "21215": "pressure:J_heart_outlet:external_outlet", + "21216": "pressure:J_heart_outlet:external_outlet", + "21217": "pressure:J_heart_outlet:external_outlet", + "21218": "pressure:J_heart_outlet:external_outlet", + "21219": "pressure:J_heart_outlet:external_outlet", + "21220": "pressure:J_heart_outlet:external_outlet", + "21221": "pressure:J_heart_outlet:external_outlet", + "21222": "pressure:J_heart_outlet:external_outlet", + "21223": "pressure:J_heart_outlet:external_outlet", + "21224": "pressure:J_heart_outlet:external_outlet", + "21225": "pressure:J_heart_outlet:external_outlet", + "21226": "pressure:J_heart_outlet:external_outlet", + "21227": "pressure:J_heart_outlet:external_outlet", + "21228": "pressure:J_heart_outlet:external_outlet", + "21229": "pressure:J_heart_outlet:external_outlet", + "21230": "pressure:J_heart_outlet:external_outlet", + "21231": "pressure:J_heart_outlet:external_outlet", + "21232": "pressure:J_heart_outlet:external_outlet", + "21233": "pressure:J_heart_outlet:external_outlet", + "21234": "pressure:J_heart_outlet:external_outlet", + "21235": "pressure:J_heart_outlet:external_outlet", + "21236": "pressure:J_heart_outlet:external_outlet", + "21237": "pressure:J_heart_outlet:external_outlet", + "21238": "pressure:J_heart_outlet:external_outlet", + "21239": "pressure:J_heart_outlet:external_outlet", + "21240": "pressure:J_heart_outlet:external_outlet", + "21241": "pressure:J_heart_outlet:external_outlet", + "21242": "pressure:J_heart_outlet:external_outlet", + "21243": "pressure:J_heart_outlet:external_outlet", + "21244": "pressure:J_heart_outlet:external_outlet", + "21245": "pressure:J_heart_outlet:external_outlet", + "21246": "pressure:J_heart_outlet:external_outlet", + "21247": "pressure:J_heart_outlet:external_outlet", + "21248": "pressure:J_heart_outlet:external_outlet", + "21249": "pressure:J_heart_outlet:external_outlet", + "21250": "pressure:J_heart_outlet:external_outlet", + "21251": "pressure:J_heart_outlet:external_outlet", + "21252": "pressure:J_heart_outlet:external_outlet", + "21253": "pressure:J_heart_outlet:external_outlet", + "21254": "pressure:J_heart_outlet:external_outlet", + "21255": "pressure:J_heart_outlet:external_outlet", + "21256": "pressure:J_heart_outlet:external_outlet", + "21257": "pressure:J_heart_outlet:external_outlet", + "21258": "pressure:J_heart_outlet:external_outlet", + "21259": "pressure:J_heart_outlet:external_outlet", + "21260": "pressure:J_heart_outlet:external_outlet", + "21261": "pressure:J_heart_outlet:external_outlet", + "21262": "pressure:J_heart_outlet:external_outlet", + "21263": "pressure:J_heart_outlet:external_outlet", + "21264": "pressure:J_heart_outlet:external_outlet", + "21265": "pressure:J_heart_outlet:external_outlet", + "21266": "pressure:J_heart_outlet:external_outlet", + "21267": "pressure:J_heart_outlet:external_outlet", + "21268": "pressure:J_heart_outlet:external_outlet", + "21269": "pressure:J_heart_outlet:external_outlet", + "21270": "pressure:J_heart_outlet:external_outlet", + "21271": "pressure:J_heart_outlet:external_outlet", + "21272": "pressure:J_heart_outlet:external_outlet", + "21273": "pressure:J_heart_outlet:external_outlet", + "21274": "pressure:J_heart_outlet:external_outlet", + "21275": "pressure:J_heart_outlet:external_outlet", + "21276": "pressure:J_heart_outlet:external_outlet", + "21277": "pressure:J_heart_outlet:external_outlet", + "21278": "pressure:J_heart_outlet:external_outlet", + "21279": "pressure:J_heart_outlet:external_outlet", + "21280": "pressure:J_heart_outlet:external_outlet", + "21281": "pressure:J_heart_outlet:external_outlet", + "21282": "pressure:J_heart_outlet:external_outlet", + "21283": "pressure:J_heart_outlet:external_outlet", + "21284": "pressure:J_heart_outlet:external_outlet", + "21285": "pressure:J_heart_outlet:external_outlet", + "21286": "pressure:J_heart_outlet:external_outlet", + "21287": "pressure:J_heart_outlet:external_outlet", + "21288": "pressure:J_heart_outlet:external_outlet", + "21289": "pressure:J_heart_outlet:external_outlet", + "21290": "pressure:J_heart_outlet:external_outlet", + "21291": "pressure:J_heart_outlet:external_outlet", + "21292": "pressure:J_heart_outlet:external_outlet", + "21293": "pressure:J_heart_outlet:external_outlet", + "21294": "pressure:J_heart_outlet:external_outlet", + "21295": "pressure:J_heart_outlet:external_outlet", + "21296": "pressure:J_heart_outlet:external_outlet", + "21297": "pressure:J_heart_outlet:external_outlet", + "21298": "pressure:J_heart_outlet:external_outlet", + "21299": "pressure:J_heart_outlet:external_outlet", + "21300": "pressure:J_heart_outlet:external_outlet", + "21301": "pressure:J_heart_outlet:external_outlet", + "21302": "pressure:J_heart_outlet:external_outlet", + "21303": "pressure:J_heart_outlet:external_outlet", + "21304": "pressure:J_heart_outlet:external_outlet", + "21305": "pressure:J_heart_outlet:external_outlet", + "21306": "pressure:J_heart_outlet:external_outlet", + "21307": "pressure:J_heart_outlet:external_outlet", + "21308": "pressure:J_heart_outlet:external_outlet", + "21309": "pressure:J_heart_outlet:external_outlet", + "21310": "pressure:J_heart_outlet:external_outlet", + "21311": "pressure:J_heart_outlet:external_outlet", + "21312": "pressure:J_heart_outlet:external_outlet", + "21313": "pressure:J_heart_outlet:external_outlet", + "21314": "pressure:J_heart_outlet:external_outlet", + "21315": "pressure:J_heart_outlet:external_outlet", + "21316": "pressure:J_heart_outlet:external_outlet", + "21317": "pressure:J_heart_outlet:external_outlet", + "21318": "pressure:J_heart_outlet:external_outlet", + "21319": "pressure:J_heart_outlet:external_outlet", + "21320": "pressure:J_heart_outlet:external_outlet", + "21321": "pressure:J_heart_outlet:external_outlet", + "21322": "pressure:J_heart_outlet:external_outlet", + "21323": "pressure:J_heart_outlet:external_outlet", + "21324": "pressure:J_heart_outlet:external_outlet", + "21325": "pressure:J_heart_outlet:external_outlet", + "21326": "pressure:J_heart_outlet:external_outlet", + "21327": "pressure:J_heart_outlet:external_outlet", + "21328": "pressure:J_heart_outlet:external_outlet", + "21329": "pressure:J_heart_outlet:external_outlet", + "21330": "pressure:J_heart_outlet:external_outlet", + "21331": "pressure:J_heart_outlet:external_outlet", + "21332": "pressure:J_heart_outlet:external_outlet", + "21333": "pressure:J_heart_outlet:external_outlet", + "21334": "pressure:J_heart_outlet:external_outlet", + "21335": "pressure:J_heart_outlet:external_outlet", + "21336": "pressure:J_heart_outlet:external_outlet", + "21337": "pressure:J_heart_outlet:external_outlet", + "21338": "pressure:J_heart_outlet:external_outlet", + "21339": "pressure:J_heart_outlet:external_outlet", + "21340": "pressure:J_heart_outlet:external_outlet", + "21341": "pressure:J_heart_outlet:external_outlet", + "21342": "pressure:J_heart_outlet:external_outlet", + "21343": "pressure:J_heart_outlet:external_outlet", + "21344": "pressure:J_heart_outlet:external_outlet", + "21345": "pressure:J_heart_outlet:external_outlet", + "21346": "pressure:J_heart_outlet:external_outlet", + "21347": "pressure:J_heart_outlet:external_outlet", + "21348": "pressure:J_heart_outlet:external_outlet", + "21349": "pressure:J_heart_outlet:external_outlet", + "21350": "pressure:J_heart_outlet:external_outlet", + "21351": "pressure:J_heart_outlet:external_outlet", + "21352": "pressure:J_heart_outlet:external_outlet", + "21353": "pressure:J_heart_outlet:external_outlet", + "21354": "pressure:J_heart_outlet:external_outlet", + "21355": "pressure:J_heart_outlet:external_outlet", + "21356": "pressure:J_heart_outlet:external_outlet", + "21357": "pressure:J_heart_outlet:external_outlet", + "21358": "pressure:J_heart_outlet:external_outlet", + "21359": "pressure:J_heart_outlet:external_outlet", + "21360": "pressure:J_heart_outlet:external_outlet", + "21361": "pressure:J_heart_outlet:external_outlet", + "21362": "pressure:J_heart_outlet:external_outlet", + "21363": "pressure:J_heart_outlet:external_outlet", + "21364": "pressure:J_heart_outlet:external_outlet", + "21365": "pressure:J_heart_outlet:external_outlet", + "21366": "pressure:J_heart_outlet:external_outlet", + "21367": "pressure:J_heart_outlet:external_outlet", + "21368": "pressure:J_heart_outlet:external_outlet", + "21369": "pressure:J_heart_outlet:external_outlet", + "21370": "pressure:J_heart_outlet:external_outlet", + "21371": "pressure:J_heart_outlet:external_outlet", + "21372": "pressure:J_heart_outlet:external_outlet", + "21373": "pressure:J_heart_outlet:external_outlet", + "21374": "pressure:J_heart_outlet:external_outlet", + "21375": "pressure:J_heart_outlet:external_outlet", + "21376": "pressure:J_heart_outlet:external_outlet", + "21377": "pressure:J_heart_outlet:external_outlet", + "21378": "pressure:J_heart_outlet:external_outlet", + "21379": "pressure:J_heart_outlet:external_outlet", + "21380": "pressure:J_heart_outlet:external_outlet", + "21381": "pressure:J_heart_outlet:external_outlet", + "21382": "pressure:J_heart_outlet:external_outlet", + "21383": "pressure:J_heart_outlet:external_outlet", + "21384": "pressure:J_heart_outlet:external_outlet", + "21385": "pressure:J_heart_outlet:external_outlet", + "21386": "pressure:J_heart_outlet:external_outlet", + "21387": "pressure:J_heart_outlet:external_outlet", + "21388": "pressure:J_heart_outlet:external_outlet", + "21389": "pressure:J_heart_outlet:external_outlet", + "21390": "pressure:J_heart_outlet:external_outlet", + "21391": "pressure:J_heart_outlet:external_outlet", + "21392": "pressure:J_heart_outlet:external_outlet", + "21393": "pressure:J_heart_outlet:external_outlet", + "21394": "pressure:J_heart_outlet:external_outlet", + "21395": "pressure:J_heart_outlet:external_outlet", + "21396": "pressure:J_heart_outlet:external_outlet", + "21397": "pressure:J_heart_outlet:external_outlet", + "21398": "pressure:J_heart_outlet:external_outlet", + "21399": "pressure:J_heart_outlet:external_outlet", + "21400": "pressure:J_heart_outlet:external_outlet", + "21401": "pressure:J_heart_outlet:external_outlet", + "21402": "pressure:J_heart_outlet:external_outlet", + "21403": "pressure:J_heart_outlet:external_outlet", + "21404": "pressure:J_heart_outlet:external_outlet", + "21405": "pressure:J_heart_outlet:external_outlet", + "21406": "pressure:J_heart_outlet:external_outlet", + "21407": "pressure:J_heart_outlet:external_outlet", + "21408": "pressure:J_heart_outlet:external_outlet", + "21409": "pressure:J_heart_outlet:external_outlet", + "21410": "pressure:J_heart_outlet:external_outlet", + "21411": "pressure:J_heart_outlet:external_outlet", + "21412": "pressure:J_heart_outlet:external_outlet", + "21413": "pressure:J_heart_outlet:external_outlet", + "21414": "pressure:J_heart_outlet:external_outlet", + "21415": "pressure:J_heart_outlet:external_outlet", + "21416": "pressure:J_heart_outlet:external_outlet", + "21417": "pressure:J_heart_outlet:external_outlet", + "21418": "pressure:J_heart_outlet:external_outlet", + "21419": "pressure:J_heart_outlet:external_outlet", + "21420": "pressure:J_heart_outlet:external_outlet", + "21421": "pressure:J_heart_outlet:external_outlet", + "21422": "pressure:J_heart_outlet:external_outlet", + "21423": "pressure:J_heart_outlet:external_outlet", + "21424": "pressure:J_heart_outlet:external_outlet", + "21425": "pressure:J_heart_outlet:external_outlet", + "21426": "pressure:J_heart_outlet:external_outlet", + "21427": "pressure:J_heart_outlet:external_outlet", + "21428": "pressure:J_heart_outlet:external_outlet", + "21429": "pressure:J_heart_outlet:external_outlet", + "21430": "pressure:J_heart_outlet:external_outlet", + "21431": "pressure:J_heart_outlet:external_outlet", + "21432": "pressure:J_heart_outlet:external_outlet", + "21433": "pressure:J_heart_outlet:external_outlet", + "21434": "pressure:J_heart_outlet:external_outlet", + "21435": "pressure:J_heart_outlet:external_outlet", + "21436": "pressure:J_heart_outlet:external_outlet", + "21437": "pressure:J_heart_outlet:external_outlet", + "21438": "pressure:J_heart_outlet:external_outlet", + "21439": "pressure:J_heart_outlet:external_outlet", + "21440": "pressure:J_heart_outlet:external_outlet", + "21441": "pressure:J_heart_outlet:external_outlet", + "21442": "pressure:J_heart_outlet:external_outlet", + "21443": "pressure:J_heart_outlet:external_outlet", + "21444": "pressure:J_heart_outlet:external_outlet", + "21445": "pressure:J_heart_outlet:external_outlet", + "21446": "pressure:J_heart_outlet:external_outlet", + "21447": "pressure:J_heart_outlet:external_outlet", + "21448": "pressure:J_heart_outlet:external_outlet", + "21449": "pressure:J_heart_outlet:external_outlet", + "21450": "pressure:J_heart_outlet:external_outlet", + "21451": "pressure:J_heart_outlet:external_outlet", + "21452": "pressure:J_heart_outlet:external_outlet", + "21453": "pressure:J_heart_outlet:external_outlet", + "21454": "pressure:J_heart_outlet:external_outlet", + "21455": "pressure:J_heart_outlet:external_outlet", + "21456": "pressure:J_heart_outlet:external_outlet", + "21457": "pressure:J_heart_outlet:external_outlet", + "21458": "pressure:J_heart_outlet:external_outlet", + "21459": "pressure:J_heart_outlet:external_outlet", + "21460": "pressure:J_heart_outlet:external_outlet", + "21461": "pressure:J_heart_outlet:external_outlet", + "21462": "pressure:J_heart_outlet:external_outlet", + "21463": "pressure:J_heart_outlet:external_outlet", + "21464": "pressure:J_heart_outlet:external_outlet", + "21465": "pressure:J_heart_outlet:external_outlet", + "21466": "pressure:J_heart_outlet:external_outlet", + "21467": "pressure:J_heart_outlet:external_outlet", + "21468": "pressure:J_heart_outlet:external_outlet", + "21469": "pressure:J_heart_outlet:external_outlet", + "21470": "pressure:J_heart_outlet:external_outlet", + "21471": "pressure:J_heart_outlet:external_outlet", + "21472": "pressure:J_heart_outlet:external_outlet", + "21473": "pressure:J_heart_outlet:external_outlet", + "21474": "pressure:J_heart_outlet:external_outlet", + "21475": "pressure:J_heart_outlet:external_outlet", + "21476": "pressure:J_heart_outlet:external_outlet", + "21477": "pressure:J_heart_outlet:external_outlet", + "21478": "pressure:J_heart_outlet:external_outlet", + "21479": "pressure:J_heart_outlet:external_outlet", + "21480": "pressure:J_heart_outlet:external_outlet", + "21481": "pressure:J_heart_outlet:external_outlet", + "21482": "pressure:J_heart_outlet:external_outlet", + "21483": "pressure:J_heart_outlet:external_outlet", + "21484": "pressure:J_heart_outlet:external_outlet", + "21485": "pressure:J_heart_outlet:external_outlet", + "21486": "pressure:J_heart_outlet:external_outlet", + "21487": "pressure:J_heart_outlet:external_outlet", + "21488": "pressure:J_heart_outlet:external_outlet", + "21489": "pressure:J_heart_outlet:external_outlet", + "21490": "pressure:J_heart_outlet:external_outlet", + "21491": "pressure:J_heart_outlet:external_outlet", + "21492": "pressure:J_heart_outlet:external_outlet", + "21493": "pressure:J_heart_outlet:external_outlet", + "21494": "pressure:J_heart_outlet:external_outlet", + "21495": "pressure:J_heart_outlet:external_outlet", + "21496": "pressure:J_heart_outlet:external_outlet", + "21497": "pressure:J_heart_outlet:external_outlet", + "21498": "pressure:J_heart_outlet:external_outlet", + "21499": "pressure:J_heart_outlet:external_outlet", + "21500": "pressure:J_heart_outlet:external_outlet", + "21501": "pressure:J_heart_outlet:external_outlet", + "21502": "pressure:J_heart_outlet:external_outlet", + "21503": "pressure:J_heart_outlet:external_outlet", + "21504": "pressure:J_heart_outlet:external_outlet", + "21505": "pressure:J_heart_outlet:external_outlet", + "21506": "pressure:J_heart_outlet:external_outlet", + "21507": "pressure:J_heart_outlet:external_outlet", + "21508": "pressure:J_heart_outlet:external_outlet", + "21509": "pressure:J_heart_outlet:external_outlet", + "21510": "pressure:J_heart_outlet:external_outlet", + "21511": "pressure:J_heart_outlet:external_outlet", + "21512": "pressure:J_heart_outlet:external_outlet", + "21513": "pressure:J_heart_outlet:external_outlet", + "21514": "pressure:J_heart_outlet:external_outlet", + "21515": "pressure:J_heart_outlet:external_outlet", + "21516": "pressure:J_heart_outlet:external_outlet", + "21517": "pressure:J_heart_outlet:external_outlet", + "21518": "pressure:J_heart_outlet:external_outlet", + "21519": "pressure:J_heart_outlet:external_outlet", + "21520": "pressure:J_heart_outlet:external_outlet", + "21521": "pressure:J_heart_outlet:external_outlet", + "21522": "pressure:J_heart_outlet:external_outlet", + "21523": "pressure:J_heart_outlet:external_outlet", + "21524": "pressure:J_heart_outlet:external_outlet", + "21525": "pressure:J_heart_outlet:external_outlet", + "21526": "pressure:J_heart_outlet:external_outlet", + "21527": "pressure:J_heart_outlet:external_outlet", + "21528": "pressure:J_heart_outlet:external_outlet", + "21529": "pressure:J_heart_outlet:external_outlet", + "21530": "pressure:J_heart_outlet:external_outlet", + "21531": "pressure:J_heart_outlet:external_outlet", + "21532": "pressure:J_heart_outlet:external_outlet", + "21533": "pressure:J_heart_outlet:external_outlet", + "21534": "pressure:J_heart_outlet:external_outlet", + "21535": "pressure:J_heart_outlet:external_outlet", + "21536": "pressure:J_heart_outlet:external_outlet", + "21537": "pressure:J_heart_outlet:external_outlet", + "21538": "pressure:J_heart_outlet:external_outlet", + "21539": "pressure:J_heart_outlet:external_outlet", + "21540": "pressure:J_heart_outlet:external_outlet", + "21541": "pressure:J_heart_outlet:external_outlet", + "21542": "pressure:J_heart_outlet:external_outlet", + "21543": "pressure:J_heart_outlet:external_outlet", + "21544": "pressure:J_heart_outlet:external_outlet", + "21545": "pressure:J_heart_outlet:external_outlet", + "21546": "pressure:J_heart_outlet:external_outlet", + "21547": "pressure:J_heart_outlet:external_outlet", + "21548": "pressure:J_heart_outlet:external_outlet", + "21549": "pressure:J_heart_outlet:external_outlet", + "21550": "pressure:J_heart_outlet:external_outlet", + "21551": "pressure:J_heart_outlet:external_outlet", + "21552": "pressure:J_heart_outlet:external_outlet", + "21553": "pressure:J_heart_outlet:external_outlet", + "21554": "pressure:J_heart_outlet:external_outlet", + "21555": "pressure:J_heart_outlet:external_outlet", + "21556": "pressure:J_heart_outlet:external_outlet", + "21557": "pressure:J_heart_outlet:external_outlet", + "21558": "pressure:J_heart_outlet:external_outlet", + "21559": "pressure:J_heart_outlet:external_outlet", + "21560": "pressure:J_heart_outlet:external_outlet", + "21561": "pressure:J_heart_outlet:external_outlet", + "21562": "pressure:J_heart_outlet:external_outlet", + "21563": "pressure:J_heart_outlet:external_outlet", + "21564": "pressure:J_heart_outlet:external_outlet", + "21565": "pressure:J_heart_outlet:external_outlet", + "21566": "pressure:J_heart_outlet:external_outlet", + "21567": "pressure:J_heart_outlet:external_outlet", + "21568": "pressure:J_heart_outlet:external_outlet", + "21569": "pressure:J_heart_outlet:external_outlet", + "21570": "pressure:J_heart_outlet:external_outlet", + "21571": "pressure:J_heart_outlet:external_outlet", + "21572": "pressure:J_heart_outlet:external_outlet", + "21573": "pressure:J_heart_outlet:external_outlet", + "21574": "pressure:J_heart_outlet:external_outlet", + "21575": "pressure:J_heart_outlet:external_outlet", + "21576": "pressure:J_heart_outlet:external_outlet", + "21577": "pressure:J_heart_outlet:external_outlet", + "21578": "pressure:J_heart_outlet:external_outlet", + "21579": "pressure:J_heart_outlet:external_outlet", + "21580": "pressure:J_heart_outlet:external_outlet", + "21581": "pressure:J_heart_outlet:external_outlet", + "21582": "pressure:J_heart_outlet:external_outlet", + "21583": "pressure:J_heart_outlet:external_outlet", + "21584": "pressure:J_heart_outlet:external_outlet", + "21585": "pressure:J_heart_outlet:external_outlet", + "21586": "pressure:J_heart_outlet:external_outlet", + "21587": "pressure:J_heart_outlet:external_outlet", + "21588": "pressure:J_heart_outlet:external_outlet", + "21589": "pressure:J_heart_outlet:external_outlet", + "21590": "pressure:J_heart_outlet:external_outlet", + "21591": "pressure:J_heart_outlet:external_outlet", + "21592": "pressure:J_heart_outlet:external_outlet", + "21593": "pressure:J_heart_outlet:external_outlet", + "21594": "pressure:J_heart_outlet:external_outlet", + "21595": "pressure:J_heart_outlet:external_outlet", + "21596": "pressure:J_heart_outlet:external_outlet", + "21597": "pressure:J_heart_outlet:external_outlet", + "21598": "pressure:J_heart_outlet:external_outlet", + "21599": "pressure:J_heart_outlet:external_outlet", + "21600": "pressure:J_heart_outlet:external_outlet", + "21601": "pressure:J_heart_outlet:external_outlet", + "21602": "pressure:J_heart_outlet:external_outlet", + "21603": "pressure:J_heart_outlet:external_outlet", + "21604": "pressure:J_heart_outlet:external_outlet", + "21605": "pressure:J_heart_outlet:external_outlet", + "21606": "pressure:J_heart_outlet:external_outlet", + "21607": "pressure:J_heart_outlet:external_outlet", + "21608": "pressure:J_heart_outlet:external_outlet", + "21609": "pressure:J_heart_outlet:external_outlet", + "21610": "pressure:J_heart_outlet:external_outlet", + "21611": "pressure:J_heart_outlet:external_outlet", + "21612": "pressure:J_heart_outlet:external_outlet", + "21613": "pressure:J_heart_outlet:external_outlet", + "21614": "pressure:J_heart_outlet:external_outlet", + "21615": "pressure:J_heart_outlet:external_outlet", + "21616": "pressure:J_heart_outlet:external_outlet", + "21617": "pressure:J_heart_outlet:external_outlet", + "21618": "pressure:J_heart_outlet:external_outlet", + "21619": "pressure:J_heart_outlet:external_outlet", + "21620": "pressure:J_heart_outlet:external_outlet", + "21621": "pressure:J_heart_outlet:external_outlet", + "21622": "pressure:J_heart_outlet:external_outlet", + "21623": "pressure:J_heart_outlet:external_outlet", + "21624": "pressure:J_heart_outlet:external_outlet", + "21625": "pressure:J_heart_outlet:external_outlet", + "21626": "pressure:J_heart_outlet:external_outlet", + "21627": "pressure:J_heart_outlet:external_outlet", + "21628": "pressure:J_heart_outlet:external_outlet", + "21629": "pressure:J_heart_outlet:external_outlet", + "21630": "pressure:J_heart_outlet:external_outlet", + "21631": "pressure:J_heart_outlet:external_outlet", + "21632": "pressure:J_heart_outlet:external_outlet", + "21633": "pressure:J_heart_outlet:external_outlet", + "21634": "pressure:J_heart_outlet:external_outlet", + "21635": "pressure:J_heart_outlet:external_outlet", + "21636": "pressure:J_heart_outlet:external_outlet", + "21637": "pressure:J_heart_outlet:external_outlet", + "21638": "pressure:J_heart_outlet:external_outlet", + "21639": "pressure:J_heart_outlet:external_outlet", + "21640": "pressure:J_heart_outlet:external_outlet", + "21641": "pressure:J_heart_outlet:external_outlet", + "21642": "pressure:J_heart_outlet:external_outlet", + "21643": "pressure:J_heart_outlet:external_outlet", + "21644": "pressure:J_heart_outlet:external_outlet", + "21645": "pressure:J_heart_outlet:external_outlet", + "21646": "pressure:J_heart_outlet:external_outlet", + "21647": "pressure:J_heart_outlet:external_outlet", + "21648": "pressure:J_heart_outlet:external_outlet", + "21649": "pressure:J_heart_outlet:external_outlet", + "21650": "pressure:J_heart_outlet:external_outlet", + "21651": "pressure:J_heart_outlet:external_outlet", + "21652": "pressure:J_heart_outlet:external_outlet", + "21653": "pressure:J_heart_outlet:external_outlet", + "21654": "pressure:J_heart_outlet:external_outlet", + "21655": "pressure:J_heart_outlet:external_outlet", + "21656": "pressure:J_heart_outlet:external_outlet", + "21657": "pressure:J_heart_outlet:external_outlet", + "21658": "pressure:J_heart_outlet:external_outlet", + "21659": "pressure:J_heart_outlet:external_outlet", + "21660": "pressure:J_heart_outlet:external_outlet", + "21661": "pressure:J_heart_outlet:external_outlet", + "21662": "pressure:J_heart_outlet:external_outlet", + "21663": "pressure:J_heart_outlet:external_outlet", + "21664": "pressure:J_heart_outlet:external_outlet", + "21665": "pressure:J_heart_outlet:external_outlet", + "21666": "pressure:J_heart_outlet:external_outlet", + "21667": "pressure:J_heart_outlet:external_outlet", + "21668": "pressure:J_heart_outlet:external_outlet", + "21669": "pressure:J_heart_outlet:external_outlet", + "21670": "pressure:J_heart_outlet:external_outlet", + "21671": "pressure:J_heart_outlet:external_outlet", + "21672": "pressure:J_heart_outlet:external_outlet", + "21673": "pressure:J_heart_outlet:external_outlet", + "21674": "pressure:J_heart_outlet:external_outlet", + "21675": "pressure:J_heart_outlet:external_outlet", + "21676": "pressure:J_heart_outlet:external_outlet", + "21677": "pressure:J_heart_outlet:external_outlet", + "21678": "pressure:J_heart_outlet:external_outlet", + "21679": "pressure:J_heart_outlet:external_outlet", + "21680": "pressure:J_heart_outlet:external_outlet", + "21681": "pressure:J_heart_outlet:external_outlet", + "21682": "pressure:J_heart_outlet:external_outlet", + "21683": "pressure:J_heart_outlet:external_outlet", + "21684": "pressure:J_heart_outlet:external_outlet", + "21685": "pressure:J_heart_outlet:external_outlet", + "21686": "pressure:J_heart_outlet:external_outlet", + "21687": "pressure:J_heart_outlet:external_outlet", + "21688": "pressure:J_heart_outlet:external_outlet", + "21689": "pressure:J_heart_outlet:external_outlet", + "21690": "pressure:J_heart_outlet:external_outlet", + "21691": "pressure:J_heart_outlet:external_outlet", + "21692": "pressure:J_heart_outlet:external_outlet", + "21693": "pressure:J_heart_outlet:external_outlet", + "21694": "pressure:J_heart_outlet:external_outlet", + "21695": "pressure:J_heart_outlet:external_outlet", + "21696": "pressure:J_heart_outlet:external_outlet", + "21697": "pressure:J_heart_outlet:external_outlet", + "21698": "pressure:J_heart_outlet:external_outlet", + "21699": "pressure:J_heart_outlet:external_outlet", + "21700": "pressure:J_heart_outlet:external_outlet", + "21701": "pressure:J_heart_outlet:external_outlet", + "21702": "pressure:J_heart_outlet:external_outlet", + "21703": "pressure:J_heart_outlet:external_outlet", + "21704": "pressure:J_heart_outlet:external_outlet", + "21705": "pressure:J_heart_outlet:external_outlet", + "21706": "pressure:J_heart_outlet:external_outlet", + "21707": "pressure:J_heart_outlet:external_outlet", + "21708": "pressure:J_heart_outlet:external_outlet", + "21709": "pressure:J_heart_outlet:external_outlet", + "21710": "pressure:J_heart_outlet:external_outlet", + "21711": "pressure:J_heart_outlet:external_outlet", + "21712": "pressure:J_heart_outlet:external_outlet", + "21713": "pressure:J_heart_outlet:external_outlet", + "21714": "pressure:J_heart_outlet:external_outlet", + "21715": "pressure:J_heart_outlet:external_outlet", + "21716": "pressure:J_heart_outlet:external_outlet", + "21717": "pressure:J_heart_outlet:external_outlet", + "21718": "pressure:J_heart_outlet:external_outlet", + "21719": "pressure:J_heart_outlet:external_outlet", + "21720": "pressure:J_heart_outlet:external_outlet", + "21721": "pressure:J_heart_outlet:external_outlet", + "21722": "pressure:J_heart_outlet:external_outlet", + "21723": "pressure:J_heart_outlet:external_outlet", + "21724": "pressure:J_heart_outlet:external_outlet", + "21725": "pressure:J_heart_outlet:external_outlet", + "21726": "pressure:J_heart_outlet:external_outlet", + "21727": "pressure:J_heart_outlet:external_outlet", + "21728": "pressure:J_heart_outlet:external_outlet", + "21729": "pressure:J_heart_outlet:external_outlet", + "21730": "pressure:J_heart_outlet:external_outlet", + "21731": "pressure:J_heart_outlet:external_outlet", + "21732": "pressure:J_heart_outlet:external_outlet", + "21733": "pressure:J_heart_outlet:external_outlet", + "21734": "pressure:J_heart_outlet:external_outlet", + "21735": "pressure:J_heart_outlet:external_outlet", + "21736": "pressure:J_heart_outlet:external_outlet", + "21737": "pressure:J_heart_outlet:external_outlet", + "21738": "pressure:J_heart_outlet:external_outlet", + "21739": "pressure:J_heart_outlet:external_outlet", + "21740": "pressure:J_heart_outlet:external_outlet", + "21741": "pressure:J_heart_outlet:external_outlet", + "21742": "pressure:J_heart_outlet:external_outlet", + "21743": "pressure:J_heart_outlet:external_outlet", + "21744": "pressure:J_heart_outlet:external_outlet", + "21745": "pressure:J_heart_outlet:external_outlet", + "21746": "pressure:J_heart_outlet:external_outlet", + "21747": "pressure:J_heart_outlet:external_outlet", + "21748": "pressure:J_heart_outlet:external_outlet", + "21749": "pressure:J_heart_outlet:external_outlet", + "21750": "pressure:J_heart_outlet:external_outlet", + "21751": "pressure:J_heart_outlet:external_outlet", + "21752": "pressure:J_heart_outlet:external_outlet", + "21753": "pressure:J_heart_outlet:external_outlet", + "21754": "pressure:J_heart_outlet:external_outlet", + "21755": "pressure:J_heart_outlet:external_outlet", + "21756": "pressure:J_heart_outlet:external_outlet", + "21757": "pressure:J_heart_outlet:external_outlet", + "21758": "pressure:J_heart_outlet:external_outlet", + "21759": "pressure:J_heart_outlet:external_outlet", + "21760": "pressure:J_heart_outlet:external_outlet", + "21761": "pressure:J_heart_outlet:external_outlet", + "21762": "pressure:J_heart_outlet:external_outlet", + "21763": "pressure:J_heart_outlet:external_outlet", + "21764": "pressure:J_heart_outlet:external_outlet", + "21765": "pressure:J_heart_outlet:external_outlet", + "21766": "pressure:J_heart_outlet:external_outlet", + "21767": "pressure:J_heart_outlet:external_outlet", + "21768": "pressure:J_heart_outlet:external_outlet", + "21769": "pressure:J_heart_outlet:external_outlet", + "21770": "pressure:J_heart_outlet:external_outlet", + "21771": "pressure:J_heart_outlet:external_outlet", + "21772": "pressure:J_heart_outlet:external_outlet", + "21773": "pressure:J_heart_outlet:external_outlet", + "21774": "pressure:J_heart_outlet:external_outlet", + "21775": "pressure:J_heart_outlet:external_outlet", + "21776": "pressure:J_heart_outlet:external_outlet", + "21777": "pressure:J_heart_outlet:external_outlet", + "21778": "pressure:J_heart_outlet:external_outlet", + "21779": "pressure:J_heart_outlet:external_outlet", + "21780": "pressure:J_heart_outlet:external_outlet", + "21781": "pressure:J_heart_outlet:external_outlet", + "21782": "pressure:J_heart_outlet:external_outlet", + "21783": "pressure:J_heart_outlet:external_outlet", + "21784": "pressure:J_heart_outlet:external_outlet", + "21785": "pressure:J_heart_outlet:external_outlet", + "21786": "pressure:J_heart_outlet:external_outlet", + "21787": "pressure:J_heart_outlet:external_outlet", + "21788": "pressure:J_heart_outlet:external_outlet", + "21789": "pressure:J_heart_outlet:external_outlet", + "21790": "pressure:J_heart_outlet:external_outlet", + "21791": "pressure:J_heart_outlet:external_outlet", + "21792": "pressure:J_heart_outlet:external_outlet", + "21793": "pressure:J_heart_outlet:external_outlet", + "21794": "pressure:J_heart_outlet:external_outlet", + "21795": "pressure:J_heart_outlet:external_outlet", + "21796": "pressure:J_heart_outlet:external_outlet", + "21797": "pressure:J_heart_outlet:external_outlet", + "21798": "pressure:J_heart_outlet:external_outlet", + "21799": "pressure:J_heart_outlet:external_outlet", + "21800": "pressure:J_heart_outlet:external_outlet", + "21801": "pressure:J_heart_outlet:external_outlet", + "21802": "pressure:J_heart_outlet:external_outlet", + "21803": "pressure:J_heart_outlet:external_outlet", + "21804": "pressure:J_heart_outlet:external_outlet", + "21805": "pressure:J_heart_outlet:external_outlet", + "21806": "pressure:J_heart_outlet:external_outlet", + "21807": "pressure:J_heart_outlet:external_outlet", + "21808": "pressure:J_heart_outlet:external_outlet", + "21809": "pressure:J_heart_outlet:external_outlet", + "21810": "pressure:J_heart_outlet:external_outlet", + "21811": "pressure:J_heart_outlet:external_outlet", + "21812": "pressure:J_heart_outlet:external_outlet", + "21813": "pressure:J_heart_outlet:external_outlet", + "21814": "pressure:J_heart_outlet:external_outlet", + "21815": "pressure:J_heart_outlet:external_outlet", + "21816": "pressure:J_heart_outlet:external_outlet", + "21817": "pressure:J_heart_outlet:external_outlet", + "21818": "pressure:J_heart_outlet:external_outlet", + "21819": "pressure:J_heart_outlet:external_outlet", + "21820": "pressure:J_heart_outlet:external_outlet", + "21821": "pressure:J_heart_outlet:external_outlet", + "21822": "pressure:J_heart_outlet:external_outlet", + "21823": "pressure:J_heart_outlet:external_outlet", + "21824": "pressure:J_heart_outlet:external_outlet", + "21825": "pressure:J_heart_outlet:external_outlet", + "21826": "pressure:J_heart_outlet:external_outlet", + "21827": "pressure:J_heart_outlet:external_outlet", + "21828": "pressure:J_heart_outlet:external_outlet", + "21829": "pressure:J_heart_outlet:external_outlet", + "21830": "pressure:J_heart_outlet:external_outlet", + "21831": "pressure:J_heart_outlet:external_outlet", + "21832": "pressure:J_heart_outlet:external_outlet", + "21833": "pressure:J_heart_outlet:external_outlet", + "21834": "pressure:J_heart_outlet:external_outlet", + "21835": "pressure:J_heart_outlet:external_outlet", + "21836": "pressure:J_heart_outlet:external_outlet", + "21837": "pressure:J_heart_outlet:external_outlet", + "21838": "pressure:J_heart_outlet:external_outlet", + "21839": "pressure:J_heart_outlet:external_outlet", + "21840": "pressure:J_heart_outlet:external_outlet", + "21841": "pressure:J_heart_outlet:external_outlet", + "21842": "pressure:J_heart_outlet:external_outlet", + "21843": "pressure:J_heart_outlet:external_outlet", + "21844": "pressure:J_heart_outlet:external_outlet", + "21845": "pressure:J_heart_outlet:external_outlet", + "21846": "pressure:J_heart_outlet:external_outlet", + "21847": "pressure:J_heart_outlet:external_outlet", + "21848": "pressure:J_heart_outlet:external_outlet", + "21849": "pressure:J_heart_outlet:external_outlet", + "21850": "pressure:J_heart_outlet:external_outlet", + "21851": "pressure:J_heart_outlet:external_outlet", + "21852": "pressure:J_heart_outlet:external_outlet", + "21853": "pressure:J_heart_outlet:external_outlet", + "21854": "pressure:J_heart_outlet:external_outlet", + "21855": "pressure:J_heart_outlet:external_outlet", + "21856": "pressure:J_heart_outlet:external_outlet", + "21857": "pressure:J_heart_outlet:external_outlet", + "21858": "pressure:J_heart_outlet:external_outlet", + "21859": "pressure:J_heart_outlet:external_outlet", + "21860": "pressure:J_heart_outlet:external_outlet", + "21861": "pressure:J_heart_outlet:external_outlet", + "21862": "pressure:J_heart_outlet:external_outlet", + "21863": "pressure:J_heart_outlet:external_outlet", + "21864": "pressure:J_heart_outlet:external_outlet", + "21865": "pressure:J_heart_outlet:external_outlet", + "21866": "pressure:J_heart_outlet:external_outlet", + "21867": "pressure:J_heart_outlet:external_outlet", + "21868": "pressure:J_heart_outlet:external_outlet", + "21869": "pressure:J_heart_outlet:external_outlet", + "21870": "pressure:J_heart_outlet:external_outlet", + "21871": "pressure:J_heart_outlet:external_outlet", + "21872": "pressure:J_heart_outlet:external_outlet", + "21873": "pressure:J_heart_outlet:external_outlet", + "21874": "pressure:J_heart_outlet:external_outlet", + "21875": "pressure:J_heart_outlet:external_outlet", + "21876": "pressure:J_heart_outlet:external_outlet", + "21877": "pressure:J_heart_outlet:external_outlet", + "21878": "pressure:J_heart_outlet:external_outlet", + "21879": "pressure:J_heart_outlet:external_outlet", + "21880": "pressure:J_heart_outlet:external_outlet", + "21881": "pressure:J_heart_outlet:external_outlet", + "21882": "pressure:J_heart_outlet:external_outlet", + "21883": "pressure:J_heart_outlet:external_outlet", + "21884": "pressure:J_heart_outlet:external_outlet", + "21885": "pressure:J_heart_outlet:external_outlet", + "21886": "pressure:J_heart_outlet:external_outlet", + "21887": "pressure:J_heart_outlet:external_outlet", + "21888": "pressure:J_heart_outlet:external_outlet", + "21889": "pressure:J_heart_outlet:external_outlet", + "21890": "pressure:J_heart_outlet:external_outlet", + "21891": "pressure:J_heart_outlet:external_outlet", + "21892": "pressure:J_heart_outlet:external_outlet", + "21893": "pressure:J_heart_outlet:external_outlet", + "21894": "pressure:J_heart_outlet:external_outlet", + "21895": "pressure:J_heart_outlet:external_outlet", + "21896": "pressure:J_heart_outlet:external_outlet", + "21897": "pressure:J_heart_outlet:external_outlet", + "21898": "pressure:J_heart_outlet:external_outlet", + "21899": "pressure:J_heart_outlet:external_outlet", + "21900": "pressure:J_heart_outlet:external_outlet", + "21901": "pressure:J_heart_outlet:external_outlet", + "21902": "pressure:J_heart_outlet:external_outlet", + "21903": "pressure:J_heart_outlet:external_outlet", + "21904": "pressure:J_heart_outlet:external_outlet", + "21905": "pressure:J_heart_outlet:external_outlet", + "21906": "pressure:J_heart_outlet:external_outlet", + "21907": "pressure:J_heart_outlet:external_outlet", + "21908": "pressure:J_heart_outlet:external_outlet", + "21909": "pressure:J_heart_outlet:external_outlet", + "21910": "pressure:J_heart_outlet:external_outlet", + "21911": "pressure:J_heart_outlet:external_outlet", + "21912": "pressure:J_heart_outlet:external_outlet", + "21913": "pressure:J_heart_outlet:external_outlet", + "21914": "pressure:J_heart_outlet:external_outlet", + "21915": "pressure:J_heart_outlet:external_outlet", + "21916": "pressure:J_heart_outlet:external_outlet", + "21917": "pressure:J_heart_outlet:external_outlet", + "21918": "pressure:J_heart_outlet:external_outlet", + "21919": "pressure:J_heart_outlet:external_outlet", + "21920": "pressure:J_heart_outlet:external_outlet", + "21921": "pressure:J_heart_outlet:external_outlet", + "21922": "pressure:J_heart_outlet:external_outlet", + "21923": "pressure:J_heart_outlet:external_outlet", + "21924": "pressure:J_heart_outlet:external_outlet", + "21925": "pressure:J_heart_outlet:external_outlet", + "21926": "pressure:J_heart_outlet:external_outlet", + "21927": "pressure:J_heart_outlet:external_outlet", + "21928": "pressure:J_heart_outlet:external_outlet", + "21929": "pressure:J_heart_outlet:external_outlet", + "21930": "pressure:J_heart_outlet:external_outlet", + "21931": "pressure:J_heart_outlet:external_outlet", + "21932": "pressure:J_heart_outlet:external_outlet", + "21933": "pressure:J_heart_outlet:external_outlet", + "21934": "pressure:J_heart_outlet:external_outlet", + "21935": "pressure:J_heart_outlet:external_outlet", + "21936": "pressure:J_heart_outlet:external_outlet", + "21937": "pressure:J_heart_outlet:external_outlet", + "21938": "pressure:J_heart_outlet:external_outlet", + "21939": "pressure:J_heart_outlet:external_outlet", + "21940": "pressure:J_heart_outlet:external_outlet", + "21941": "pressure:J_heart_outlet:external_outlet", + "21942": "pressure:J_heart_outlet:external_outlet", + "21943": "pressure:J_heart_outlet:external_outlet", + "21944": "pressure:J_heart_outlet:external_outlet", + "21945": "pressure:J_heart_outlet:external_outlet", + "21946": "pressure:J_heart_outlet:external_outlet", + "21947": "pressure:J_heart_outlet:external_outlet", + "21948": "pressure:J_heart_outlet:external_outlet", + "21949": "pressure:J_heart_outlet:external_outlet", + "21950": "pressure:J_heart_outlet:external_outlet", + "21951": "pressure:J_heart_outlet:external_outlet", + "21952": "pressure:J_heart_outlet:external_outlet", + "21953": "pressure:J_heart_outlet:external_outlet", + "21954": "pressure:J_heart_outlet:external_outlet", + "21955": "pressure:J_heart_outlet:external_outlet", + "21956": "pressure:J_heart_outlet:external_outlet", + "21957": "pressure:J_heart_outlet:external_outlet", + "21958": "pressure:J_heart_outlet:external_outlet", + "21959": "pressure:J_heart_outlet:external_outlet", + "21960": "pressure:J_heart_outlet:external_outlet", + "21961": "pressure:J_heart_outlet:external_outlet", + "21962": "pressure:J_heart_outlet:external_outlet", + "21963": "pressure:J_heart_outlet:external_outlet", + "21964": "pressure:J_heart_outlet:external_outlet", + "21965": "pressure:J_heart_outlet:external_outlet", + "21966": "pressure:J_heart_outlet:external_outlet", + "21967": "pressure:J_heart_outlet:external_outlet", + "21968": "pressure:J_heart_outlet:external_outlet", + "21969": "pressure:J_heart_outlet:external_outlet", + "21970": "pressure:J_heart_outlet:external_outlet", + "21971": "pressure:J_heart_outlet:external_outlet", + "21972": "pressure:J_heart_outlet:external_outlet", + "21973": "pressure:J_heart_outlet:external_outlet", + "21974": "pressure:J_heart_outlet:external_outlet", + "21975": "pressure:J_heart_outlet:external_outlet", + "21976": "pressure:J_heart_outlet:external_outlet", + "21977": "pressure:J_heart_outlet:external_outlet", + "21978": "pressure:J_heart_outlet:external_outlet", + "21979": "pressure:J_heart_outlet:external_outlet", + "21980": "pressure:J_heart_outlet:external_outlet", + "21981": "pressure:J_heart_outlet:external_outlet", + "21982": "pressure:J_heart_outlet:external_outlet", + "21983": "pressure:J_heart_outlet:external_outlet", + "21984": "pressure:J_heart_outlet:external_outlet", + "21985": "pressure:J_heart_outlet:external_outlet", + "21986": "pressure:J_heart_outlet:external_outlet", + "21987": "pressure:J_heart_outlet:external_outlet", + "21988": "pressure:J_heart_outlet:external_outlet", + "21989": "pressure:J_heart_outlet:external_outlet", + "21990": "pressure:J_heart_outlet:external_outlet", + "21991": "pressure:J_heart_outlet:external_outlet", + "21992": "pressure:J_heart_outlet:external_outlet", + "21993": "pressure:J_heart_outlet:external_outlet", + "21994": "pressure:J_heart_outlet:external_outlet", + "21995": "pressure:J_heart_outlet:external_outlet", + "21996": "pressure:J_heart_outlet:external_outlet", + "21997": "pressure:J_heart_outlet:external_outlet", + "21998": "pressure:J_heart_outlet:external_outlet", + "21999": "pressure:J_heart_outlet:external_outlet", + "22000": "volume_im:LCA", + "22001": "volume_im:LCA", + "22002": "volume_im:LCA", + "22003": "volume_im:LCA", + "22004": "volume_im:LCA", + "22005": "volume_im:LCA", + "22006": "volume_im:LCA", + "22007": "volume_im:LCA", + "22008": "volume_im:LCA", + "22009": "volume_im:LCA", + "22010": "volume_im:LCA", + "22011": "volume_im:LCA", + "22012": "volume_im:LCA", + "22013": "volume_im:LCA", + "22014": "volume_im:LCA", + "22015": "volume_im:LCA", + "22016": "volume_im:LCA", + "22017": "volume_im:LCA", + "22018": "volume_im:LCA", + "22019": "volume_im:LCA", + "22020": "volume_im:LCA", + "22021": "volume_im:LCA", + "22022": "volume_im:LCA", + "22023": "volume_im:LCA", + "22024": "volume_im:LCA", + "22025": "volume_im:LCA", + "22026": "volume_im:LCA", + "22027": "volume_im:LCA", + "22028": "volume_im:LCA", + "22029": "volume_im:LCA", + "22030": "volume_im:LCA", + "22031": "volume_im:LCA", + "22032": "volume_im:LCA", + "22033": "volume_im:LCA", + "22034": "volume_im:LCA", + "22035": "volume_im:LCA", + "22036": "volume_im:LCA", + "22037": "volume_im:LCA", + "22038": "volume_im:LCA", + "22039": "volume_im:LCA", + "22040": "volume_im:LCA", + "22041": "volume_im:LCA", + "22042": "volume_im:LCA", + "22043": "volume_im:LCA", + "22044": "volume_im:LCA", + "22045": "volume_im:LCA", + "22046": "volume_im:LCA", + "22047": "volume_im:LCA", + "22048": "volume_im:LCA", + "22049": "volume_im:LCA", + "22050": "volume_im:LCA", + "22051": "volume_im:LCA", + "22052": "volume_im:LCA", + "22053": "volume_im:LCA", + "22054": "volume_im:LCA", + "22055": "volume_im:LCA", + "22056": "volume_im:LCA", + "22057": "volume_im:LCA", + "22058": "volume_im:LCA", + "22059": "volume_im:LCA", + "22060": "volume_im:LCA", + "22061": "volume_im:LCA", + "22062": "volume_im:LCA", + "22063": "volume_im:LCA", + "22064": "volume_im:LCA", + "22065": "volume_im:LCA", + "22066": "volume_im:LCA", + "22067": "volume_im:LCA", + "22068": "volume_im:LCA", + "22069": "volume_im:LCA", + "22070": "volume_im:LCA", + "22071": "volume_im:LCA", + "22072": "volume_im:LCA", + "22073": "volume_im:LCA", + "22074": "volume_im:LCA", + "22075": "volume_im:LCA", + "22076": "volume_im:LCA", + "22077": "volume_im:LCA", + "22078": "volume_im:LCA", + "22079": "volume_im:LCA", + "22080": "volume_im:LCA", + "22081": "volume_im:LCA", + "22082": "volume_im:LCA", + "22083": "volume_im:LCA", + "22084": "volume_im:LCA", + "22085": "volume_im:LCA", + "22086": "volume_im:LCA", + "22087": "volume_im:LCA", + "22088": "volume_im:LCA", + "22089": "volume_im:LCA", + "22090": "volume_im:LCA", + "22091": "volume_im:LCA", + "22092": "volume_im:LCA", + "22093": "volume_im:LCA", + "22094": "volume_im:LCA", + "22095": "volume_im:LCA", + "22096": "volume_im:LCA", + "22097": "volume_im:LCA", + "22098": "volume_im:LCA", + "22099": "volume_im:LCA", + "22100": "volume_im:LCA", + "22101": "volume_im:LCA", + "22102": "volume_im:LCA", + "22103": "volume_im:LCA", + "22104": "volume_im:LCA", + "22105": "volume_im:LCA", + "22106": "volume_im:LCA", + "22107": "volume_im:LCA", + "22108": "volume_im:LCA", + "22109": "volume_im:LCA", + "22110": "volume_im:LCA", + "22111": "volume_im:LCA", + "22112": "volume_im:LCA", + "22113": "volume_im:LCA", + "22114": "volume_im:LCA", + "22115": "volume_im:LCA", + "22116": "volume_im:LCA", + "22117": "volume_im:LCA", + "22118": "volume_im:LCA", + "22119": "volume_im:LCA", + "22120": "volume_im:LCA", + "22121": "volume_im:LCA", + "22122": "volume_im:LCA", + "22123": "volume_im:LCA", + "22124": "volume_im:LCA", + "22125": "volume_im:LCA", + "22126": "volume_im:LCA", + "22127": "volume_im:LCA", + "22128": "volume_im:LCA", + "22129": "volume_im:LCA", + "22130": "volume_im:LCA", + "22131": "volume_im:LCA", + "22132": "volume_im:LCA", + "22133": "volume_im:LCA", + "22134": "volume_im:LCA", + "22135": "volume_im:LCA", + "22136": "volume_im:LCA", + "22137": "volume_im:LCA", + "22138": "volume_im:LCA", + "22139": "volume_im:LCA", + "22140": "volume_im:LCA", + "22141": "volume_im:LCA", + "22142": "volume_im:LCA", + "22143": "volume_im:LCA", + "22144": "volume_im:LCA", + "22145": "volume_im:LCA", + "22146": "volume_im:LCA", + "22147": "volume_im:LCA", + "22148": "volume_im:LCA", + "22149": "volume_im:LCA", + "22150": "volume_im:LCA", + "22151": "volume_im:LCA", + "22152": "volume_im:LCA", + "22153": "volume_im:LCA", + "22154": "volume_im:LCA", + "22155": "volume_im:LCA", + "22156": "volume_im:LCA", + "22157": "volume_im:LCA", + "22158": "volume_im:LCA", + "22159": "volume_im:LCA", + "22160": "volume_im:LCA", + "22161": "volume_im:LCA", + "22162": "volume_im:LCA", + "22163": "volume_im:LCA", + "22164": "volume_im:LCA", + "22165": "volume_im:LCA", + "22166": "volume_im:LCA", + "22167": "volume_im:LCA", + "22168": "volume_im:LCA", + "22169": "volume_im:LCA", + "22170": "volume_im:LCA", + "22171": "volume_im:LCA", + "22172": "volume_im:LCA", + "22173": "volume_im:LCA", + "22174": "volume_im:LCA", + "22175": "volume_im:LCA", + "22176": "volume_im:LCA", + "22177": "volume_im:LCA", + "22178": "volume_im:LCA", + "22179": "volume_im:LCA", + "22180": "volume_im:LCA", + "22181": "volume_im:LCA", + "22182": "volume_im:LCA", + "22183": "volume_im:LCA", + "22184": "volume_im:LCA", + "22185": "volume_im:LCA", + "22186": "volume_im:LCA", + "22187": "volume_im:LCA", + "22188": "volume_im:LCA", + "22189": "volume_im:LCA", + "22190": "volume_im:LCA", + "22191": "volume_im:LCA", + "22192": "volume_im:LCA", + "22193": "volume_im:LCA", + "22194": "volume_im:LCA", + "22195": "volume_im:LCA", + "22196": "volume_im:LCA", + "22197": "volume_im:LCA", + "22198": "volume_im:LCA", + "22199": "volume_im:LCA", + "22200": "volume_im:LCA", + "22201": "volume_im:LCA", + "22202": "volume_im:LCA", + "22203": "volume_im:LCA", + "22204": "volume_im:LCA", + "22205": "volume_im:LCA", + "22206": "volume_im:LCA", + "22207": "volume_im:LCA", + "22208": "volume_im:LCA", + "22209": "volume_im:LCA", + "22210": "volume_im:LCA", + "22211": "volume_im:LCA", + "22212": "volume_im:LCA", + "22213": "volume_im:LCA", + "22214": "volume_im:LCA", + "22215": "volume_im:LCA", + "22216": "volume_im:LCA", + "22217": "volume_im:LCA", + "22218": "volume_im:LCA", + "22219": "volume_im:LCA", + "22220": "volume_im:LCA", + "22221": "volume_im:LCA", + "22222": "volume_im:LCA", + "22223": "volume_im:LCA", + "22224": "volume_im:LCA", + "22225": "volume_im:LCA", + "22226": "volume_im:LCA", + "22227": "volume_im:LCA", + "22228": "volume_im:LCA", + "22229": "volume_im:LCA", + "22230": "volume_im:LCA", + "22231": "volume_im:LCA", + "22232": "volume_im:LCA", + "22233": "volume_im:LCA", + "22234": "volume_im:LCA", + "22235": "volume_im:LCA", + "22236": "volume_im:LCA", + "22237": "volume_im:LCA", + "22238": "volume_im:LCA", + "22239": "volume_im:LCA", + "22240": "volume_im:LCA", + "22241": "volume_im:LCA", + "22242": "volume_im:LCA", + "22243": "volume_im:LCA", + "22244": "volume_im:LCA", + "22245": "volume_im:LCA", + "22246": "volume_im:LCA", + "22247": "volume_im:LCA", + "22248": "volume_im:LCA", + "22249": "volume_im:LCA", + "22250": "volume_im:LCA", + "22251": "volume_im:LCA", + "22252": "volume_im:LCA", + "22253": "volume_im:LCA", + "22254": "volume_im:LCA", + "22255": "volume_im:LCA", + "22256": "volume_im:LCA", + "22257": "volume_im:LCA", + "22258": "volume_im:LCA", + "22259": "volume_im:LCA", + "22260": "volume_im:LCA", + "22261": "volume_im:LCA", + "22262": "volume_im:LCA", + "22263": "volume_im:LCA", + "22264": "volume_im:LCA", + "22265": "volume_im:LCA", + "22266": "volume_im:LCA", + "22267": "volume_im:LCA", + "22268": "volume_im:LCA", + "22269": "volume_im:LCA", + "22270": "volume_im:LCA", + "22271": "volume_im:LCA", + "22272": "volume_im:LCA", + "22273": "volume_im:LCA", + "22274": "volume_im:LCA", + "22275": "volume_im:LCA", + "22276": "volume_im:LCA", + "22277": "volume_im:LCA", + "22278": "volume_im:LCA", + "22279": "volume_im:LCA", + "22280": "volume_im:LCA", + "22281": "volume_im:LCA", + "22282": "volume_im:LCA", + "22283": "volume_im:LCA", + "22284": "volume_im:LCA", + "22285": "volume_im:LCA", + "22286": "volume_im:LCA", + "22287": "volume_im:LCA", + "22288": "volume_im:LCA", + "22289": "volume_im:LCA", + "22290": "volume_im:LCA", + "22291": "volume_im:LCA", + "22292": "volume_im:LCA", + "22293": "volume_im:LCA", + "22294": "volume_im:LCA", + "22295": "volume_im:LCA", + "22296": "volume_im:LCA", + "22297": "volume_im:LCA", + "22298": "volume_im:LCA", + "22299": "volume_im:LCA", + "22300": "volume_im:LCA", + "22301": "volume_im:LCA", + "22302": "volume_im:LCA", + "22303": "volume_im:LCA", + "22304": "volume_im:LCA", + "22305": "volume_im:LCA", + "22306": "volume_im:LCA", + "22307": "volume_im:LCA", + "22308": "volume_im:LCA", + "22309": "volume_im:LCA", + "22310": "volume_im:LCA", + "22311": "volume_im:LCA", + "22312": "volume_im:LCA", + "22313": "volume_im:LCA", + "22314": "volume_im:LCA", + "22315": "volume_im:LCA", + "22316": "volume_im:LCA", + "22317": "volume_im:LCA", + "22318": "volume_im:LCA", + "22319": "volume_im:LCA", + "22320": "volume_im:LCA", + "22321": "volume_im:LCA", + "22322": "volume_im:LCA", + "22323": "volume_im:LCA", + "22324": "volume_im:LCA", + "22325": "volume_im:LCA", + "22326": "volume_im:LCA", + "22327": "volume_im:LCA", + "22328": "volume_im:LCA", + "22329": "volume_im:LCA", + "22330": "volume_im:LCA", + "22331": "volume_im:LCA", + "22332": "volume_im:LCA", + "22333": "volume_im:LCA", + "22334": "volume_im:LCA", + "22335": "volume_im:LCA", + "22336": "volume_im:LCA", + "22337": "volume_im:LCA", + "22338": "volume_im:LCA", + "22339": "volume_im:LCA", + "22340": "volume_im:LCA", + "22341": "volume_im:LCA", + "22342": "volume_im:LCA", + "22343": "volume_im:LCA", + "22344": "volume_im:LCA", + "22345": "volume_im:LCA", + "22346": "volume_im:LCA", + "22347": "volume_im:LCA", + "22348": "volume_im:LCA", + "22349": "volume_im:LCA", + "22350": "volume_im:LCA", + "22351": "volume_im:LCA", + "22352": "volume_im:LCA", + "22353": "volume_im:LCA", + "22354": "volume_im:LCA", + "22355": "volume_im:LCA", + "22356": "volume_im:LCA", + "22357": "volume_im:LCA", + "22358": "volume_im:LCA", + "22359": "volume_im:LCA", + "22360": "volume_im:LCA", + "22361": "volume_im:LCA", + "22362": "volume_im:LCA", + "22363": "volume_im:LCA", + "22364": "volume_im:LCA", + "22365": "volume_im:LCA", + "22366": "volume_im:LCA", + "22367": "volume_im:LCA", + "22368": "volume_im:LCA", + "22369": "volume_im:LCA", + "22370": "volume_im:LCA", + "22371": "volume_im:LCA", + "22372": "volume_im:LCA", + "22373": "volume_im:LCA", + "22374": "volume_im:LCA", + "22375": "volume_im:LCA", + "22376": "volume_im:LCA", + "22377": "volume_im:LCA", + "22378": "volume_im:LCA", + "22379": "volume_im:LCA", + "22380": "volume_im:LCA", + "22381": "volume_im:LCA", + "22382": "volume_im:LCA", + "22383": "volume_im:LCA", + "22384": "volume_im:LCA", + "22385": "volume_im:LCA", + "22386": "volume_im:LCA", + "22387": "volume_im:LCA", + "22388": "volume_im:LCA", + "22389": "volume_im:LCA", + "22390": "volume_im:LCA", + "22391": "volume_im:LCA", + "22392": "volume_im:LCA", + "22393": "volume_im:LCA", + "22394": "volume_im:LCA", + "22395": "volume_im:LCA", + "22396": "volume_im:LCA", + "22397": "volume_im:LCA", + "22398": "volume_im:LCA", + "22399": "volume_im:LCA", + "22400": "volume_im:LCA", + "22401": "volume_im:LCA", + "22402": "volume_im:LCA", + "22403": "volume_im:LCA", + "22404": "volume_im:LCA", + "22405": "volume_im:LCA", + "22406": "volume_im:LCA", + "22407": "volume_im:LCA", + "22408": "volume_im:LCA", + "22409": "volume_im:LCA", + "22410": "volume_im:LCA", + "22411": "volume_im:LCA", + "22412": "volume_im:LCA", + "22413": "volume_im:LCA", + "22414": "volume_im:LCA", + "22415": "volume_im:LCA", + "22416": "volume_im:LCA", + "22417": "volume_im:LCA", + "22418": "volume_im:LCA", + "22419": "volume_im:LCA", + "22420": "volume_im:LCA", + "22421": "volume_im:LCA", + "22422": "volume_im:LCA", + "22423": "volume_im:LCA", + "22424": "volume_im:LCA", + "22425": "volume_im:LCA", + "22426": "volume_im:LCA", + "22427": "volume_im:LCA", + "22428": "volume_im:LCA", + "22429": "volume_im:LCA", + "22430": "volume_im:LCA", + "22431": "volume_im:LCA", + "22432": "volume_im:LCA", + "22433": "volume_im:LCA", + "22434": "volume_im:LCA", + "22435": "volume_im:LCA", + "22436": "volume_im:LCA", + "22437": "volume_im:LCA", + "22438": "volume_im:LCA", + "22439": "volume_im:LCA", + "22440": "volume_im:LCA", + "22441": "volume_im:LCA", + "22442": "volume_im:LCA", + "22443": "volume_im:LCA", + "22444": "volume_im:LCA", + "22445": "volume_im:LCA", + "22446": "volume_im:LCA", + "22447": "volume_im:LCA", + "22448": "volume_im:LCA", + "22449": "volume_im:LCA", + "22450": "volume_im:LCA", + "22451": "volume_im:LCA", + "22452": "volume_im:LCA", + "22453": "volume_im:LCA", + "22454": "volume_im:LCA", + "22455": "volume_im:LCA", + "22456": "volume_im:LCA", + "22457": "volume_im:LCA", + "22458": "volume_im:LCA", + "22459": "volume_im:LCA", + "22460": "volume_im:LCA", + "22461": "volume_im:LCA", + "22462": "volume_im:LCA", + "22463": "volume_im:LCA", + "22464": "volume_im:LCA", + "22465": "volume_im:LCA", + "22466": "volume_im:LCA", + "22467": "volume_im:LCA", + "22468": "volume_im:LCA", + "22469": "volume_im:LCA", + "22470": "volume_im:LCA", + "22471": "volume_im:LCA", + "22472": "volume_im:LCA", + "22473": "volume_im:LCA", + "22474": "volume_im:LCA", + "22475": "volume_im:LCA", + "22476": "volume_im:LCA", + "22477": "volume_im:LCA", + "22478": "volume_im:LCA", + "22479": "volume_im:LCA", + "22480": "volume_im:LCA", + "22481": "volume_im:LCA", + "22482": "volume_im:LCA", + "22483": "volume_im:LCA", + "22484": "volume_im:LCA", + "22485": "volume_im:LCA", + "22486": "volume_im:LCA", + "22487": "volume_im:LCA", + "22488": "volume_im:LCA", + "22489": "volume_im:LCA", + "22490": "volume_im:LCA", + "22491": "volume_im:LCA", + "22492": "volume_im:LCA", + "22493": "volume_im:LCA", + "22494": "volume_im:LCA", + "22495": "volume_im:LCA", + "22496": "volume_im:LCA", + "22497": "volume_im:LCA", + "22498": "volume_im:LCA", + "22499": "volume_im:LCA", + "22500": "volume_im:LCA", + "22501": "volume_im:LCA", + "22502": "volume_im:LCA", + "22503": "volume_im:LCA", + "22504": "volume_im:LCA", + "22505": "volume_im:LCA", + "22506": "volume_im:LCA", + "22507": "volume_im:LCA", + "22508": "volume_im:LCA", + "22509": "volume_im:LCA", + "22510": "volume_im:LCA", + "22511": "volume_im:LCA", + "22512": "volume_im:LCA", + "22513": "volume_im:LCA", + "22514": "volume_im:LCA", + "22515": "volume_im:LCA", + "22516": "volume_im:LCA", + "22517": "volume_im:LCA", + "22518": "volume_im:LCA", + "22519": "volume_im:LCA", + "22520": "volume_im:LCA", + "22521": "volume_im:LCA", + "22522": "volume_im:LCA", + "22523": "volume_im:LCA", + "22524": "volume_im:LCA", + "22525": "volume_im:LCA", + "22526": "volume_im:LCA", + "22527": "volume_im:LCA", + "22528": "volume_im:LCA", + "22529": "volume_im:LCA", + "22530": "volume_im:LCA", + "22531": "volume_im:LCA", + "22532": "volume_im:LCA", + "22533": "volume_im:LCA", + "22534": "volume_im:LCA", + "22535": "volume_im:LCA", + "22536": "volume_im:LCA", + "22537": "volume_im:LCA", + "22538": "volume_im:LCA", + "22539": "volume_im:LCA", + "22540": "volume_im:LCA", + "22541": "volume_im:LCA", + "22542": "volume_im:LCA", + "22543": "volume_im:LCA", + "22544": "volume_im:LCA", + "22545": "volume_im:LCA", + "22546": "volume_im:LCA", + "22547": "volume_im:LCA", + "22548": "volume_im:LCA", + "22549": "volume_im:LCA", + "22550": "volume_im:LCA", + "22551": "volume_im:LCA", + "22552": "volume_im:LCA", + "22553": "volume_im:LCA", + "22554": "volume_im:LCA", + "22555": "volume_im:LCA", + "22556": "volume_im:LCA", + "22557": "volume_im:LCA", + "22558": "volume_im:LCA", + "22559": "volume_im:LCA", + "22560": "volume_im:LCA", + "22561": "volume_im:LCA", + "22562": "volume_im:LCA", + "22563": "volume_im:LCA", + "22564": "volume_im:LCA", + "22565": "volume_im:LCA", + "22566": "volume_im:LCA", + "22567": "volume_im:LCA", + "22568": "volume_im:LCA", + "22569": "volume_im:LCA", + "22570": "volume_im:LCA", + "22571": "volume_im:LCA", + "22572": "volume_im:LCA", + "22573": "volume_im:LCA", + "22574": "volume_im:LCA", + "22575": "volume_im:LCA", + "22576": "volume_im:LCA", + "22577": "volume_im:LCA", + "22578": "volume_im:LCA", + "22579": "volume_im:LCA", + "22580": "volume_im:LCA", + "22581": "volume_im:LCA", + "22582": "volume_im:LCA", + "22583": "volume_im:LCA", + "22584": "volume_im:LCA", + "22585": "volume_im:LCA", + "22586": "volume_im:LCA", + "22587": "volume_im:LCA", + "22588": "volume_im:LCA", + "22589": "volume_im:LCA", + "22590": "volume_im:LCA", + "22591": "volume_im:LCA", + "22592": "volume_im:LCA", + "22593": "volume_im:LCA", + "22594": "volume_im:LCA", + "22595": "volume_im:LCA", + "22596": "volume_im:LCA", + "22597": "volume_im:LCA", + "22598": "volume_im:LCA", + "22599": "volume_im:LCA", + "22600": "volume_im:LCA", + "22601": "volume_im:LCA", + "22602": "volume_im:LCA", + "22603": "volume_im:LCA", + "22604": "volume_im:LCA", + "22605": "volume_im:LCA", + "22606": "volume_im:LCA", + "22607": "volume_im:LCA", + "22608": "volume_im:LCA", + "22609": "volume_im:LCA", + "22610": "volume_im:LCA", + "22611": "volume_im:LCA", + "22612": "volume_im:LCA", + "22613": "volume_im:LCA", + "22614": "volume_im:LCA", + "22615": "volume_im:LCA", + "22616": "volume_im:LCA", + "22617": "volume_im:LCA", + "22618": "volume_im:LCA", + "22619": "volume_im:LCA", + "22620": "volume_im:LCA", + "22621": "volume_im:LCA", + "22622": "volume_im:LCA", + "22623": "volume_im:LCA", + "22624": "volume_im:LCA", + "22625": "volume_im:LCA", + "22626": "volume_im:LCA", + "22627": "volume_im:LCA", + "22628": "volume_im:LCA", + "22629": "volume_im:LCA", + "22630": "volume_im:LCA", + "22631": "volume_im:LCA", + "22632": "volume_im:LCA", + "22633": "volume_im:LCA", + "22634": "volume_im:LCA", + "22635": "volume_im:LCA", + "22636": "volume_im:LCA", + "22637": "volume_im:LCA", + "22638": "volume_im:LCA", + "22639": "volume_im:LCA", + "22640": "volume_im:LCA", + "22641": "volume_im:LCA", + "22642": "volume_im:LCA", + "22643": "volume_im:LCA", + "22644": "volume_im:LCA", + "22645": "volume_im:LCA", + "22646": "volume_im:LCA", + "22647": "volume_im:LCA", + "22648": "volume_im:LCA", + "22649": "volume_im:LCA", + "22650": "volume_im:LCA", + "22651": "volume_im:LCA", + "22652": "volume_im:LCA", + "22653": "volume_im:LCA", + "22654": "volume_im:LCA", + "22655": "volume_im:LCA", + "22656": "volume_im:LCA", + "22657": "volume_im:LCA", + "22658": "volume_im:LCA", + "22659": "volume_im:LCA", + "22660": "volume_im:LCA", + "22661": "volume_im:LCA", + "22662": "volume_im:LCA", + "22663": "volume_im:LCA", + "22664": "volume_im:LCA", + "22665": "volume_im:LCA", + "22666": "volume_im:LCA", + "22667": "volume_im:LCA", + "22668": "volume_im:LCA", + "22669": "volume_im:LCA", + "22670": "volume_im:LCA", + "22671": "volume_im:LCA", + "22672": "volume_im:LCA", + "22673": "volume_im:LCA", + "22674": "volume_im:LCA", + "22675": "volume_im:LCA", + "22676": "volume_im:LCA", + "22677": "volume_im:LCA", + "22678": "volume_im:LCA", + "22679": "volume_im:LCA", + "22680": "volume_im:LCA", + "22681": "volume_im:LCA", + "22682": "volume_im:LCA", + "22683": "volume_im:LCA", + "22684": "volume_im:LCA", + "22685": "volume_im:LCA", + "22686": "volume_im:LCA", + "22687": "volume_im:LCA", + "22688": "volume_im:LCA", + "22689": "volume_im:LCA", + "22690": "volume_im:LCA", + "22691": "volume_im:LCA", + "22692": "volume_im:LCA", + "22693": "volume_im:LCA", + "22694": "volume_im:LCA", + "22695": "volume_im:LCA", + "22696": "volume_im:LCA", + "22697": "volume_im:LCA", + "22698": "volume_im:LCA", + "22699": "volume_im:LCA", + "22700": "volume_im:LCA", + "22701": "volume_im:LCA", + "22702": "volume_im:LCA", + "22703": "volume_im:LCA", + "22704": "volume_im:LCA", + "22705": "volume_im:LCA", + "22706": "volume_im:LCA", + "22707": "volume_im:LCA", + "22708": "volume_im:LCA", + "22709": "volume_im:LCA", + "22710": "volume_im:LCA", + "22711": "volume_im:LCA", + "22712": "volume_im:LCA", + "22713": "volume_im:LCA", + "22714": "volume_im:LCA", + "22715": "volume_im:LCA", + "22716": "volume_im:LCA", + "22717": "volume_im:LCA", + "22718": "volume_im:LCA", + "22719": "volume_im:LCA", + "22720": "volume_im:LCA", + "22721": "volume_im:LCA", + "22722": "volume_im:LCA", + "22723": "volume_im:LCA", + "22724": "volume_im:LCA", + "22725": "volume_im:LCA", + "22726": "volume_im:LCA", + "22727": "volume_im:LCA", + "22728": "volume_im:LCA", + "22729": "volume_im:LCA", + "22730": "volume_im:LCA", + "22731": "volume_im:LCA", + "22732": "volume_im:LCA", + "22733": "volume_im:LCA", + "22734": "volume_im:LCA", + "22735": "volume_im:LCA", + "22736": "volume_im:LCA", + "22737": "volume_im:LCA", + "22738": "volume_im:LCA", + "22739": "volume_im:LCA", + "22740": "volume_im:LCA", + "22741": "volume_im:LCA", + "22742": "volume_im:LCA", + "22743": "volume_im:LCA", + "22744": "volume_im:LCA", + "22745": "volume_im:LCA", + "22746": "volume_im:LCA", + "22747": "volume_im:LCA", + "22748": "volume_im:LCA", + "22749": "volume_im:LCA", + "22750": "volume_im:LCA", + "22751": "volume_im:LCA", + "22752": "volume_im:LCA", + "22753": "volume_im:LCA", + "22754": "volume_im:LCA", + "22755": "volume_im:LCA", + "22756": "volume_im:LCA", + "22757": "volume_im:LCA", + "22758": "volume_im:LCA", + "22759": "volume_im:LCA", + "22760": "volume_im:LCA", + "22761": "volume_im:LCA", + "22762": "volume_im:LCA", + "22763": "volume_im:LCA", + "22764": "volume_im:LCA", + "22765": "volume_im:LCA", + "22766": "volume_im:LCA", + "22767": "volume_im:LCA", + "22768": "volume_im:LCA", + "22769": "volume_im:LCA", + "22770": "volume_im:LCA", + "22771": "volume_im:LCA", + "22772": "volume_im:LCA", + "22773": "volume_im:LCA", + "22774": "volume_im:LCA", + "22775": "volume_im:LCA", + "22776": "volume_im:LCA", + "22777": "volume_im:LCA", + "22778": "volume_im:LCA", + "22779": "volume_im:LCA", + "22780": "volume_im:LCA", + "22781": "volume_im:LCA", + "22782": "volume_im:LCA", + "22783": "volume_im:LCA", + "22784": "volume_im:LCA", + "22785": "volume_im:LCA", + "22786": "volume_im:LCA", + "22787": "volume_im:LCA", + "22788": "volume_im:LCA", + "22789": "volume_im:LCA", + "22790": "volume_im:LCA", + "22791": "volume_im:LCA", + "22792": "volume_im:LCA", + "22793": "volume_im:LCA", + "22794": "volume_im:LCA", + "22795": "volume_im:LCA", + "22796": "volume_im:LCA", + "22797": "volume_im:LCA", + "22798": "volume_im:LCA", + "22799": "volume_im:LCA", + "22800": "volume_im:LCA", + "22801": "volume_im:LCA", + "22802": "volume_im:LCA", + "22803": "volume_im:LCA", + "22804": "volume_im:LCA", + "22805": "volume_im:LCA", + "22806": "volume_im:LCA", + "22807": "volume_im:LCA", + "22808": "volume_im:LCA", + "22809": "volume_im:LCA", + "22810": "volume_im:LCA", + "22811": "volume_im:LCA", + "22812": "volume_im:LCA", + "22813": "volume_im:LCA", + "22814": "volume_im:LCA", + "22815": "volume_im:LCA", + "22816": "volume_im:LCA", + "22817": "volume_im:LCA", + "22818": "volume_im:LCA", + "22819": "volume_im:LCA", + "22820": "volume_im:LCA", + "22821": "volume_im:LCA", + "22822": "volume_im:LCA", + "22823": "volume_im:LCA", + "22824": "volume_im:LCA", + "22825": "volume_im:LCA", + "22826": "volume_im:LCA", + "22827": "volume_im:LCA", + "22828": "volume_im:LCA", + "22829": "volume_im:LCA", + "22830": "volume_im:LCA", + "22831": "volume_im:LCA", + "22832": "volume_im:LCA", + "22833": "volume_im:LCA", + "22834": "volume_im:LCA", + "22835": "volume_im:LCA", + "22836": "volume_im:LCA", + "22837": "volume_im:LCA", + "22838": "volume_im:LCA", + "22839": "volume_im:LCA", + "22840": "volume_im:LCA", + "22841": "volume_im:LCA", + "22842": "volume_im:LCA", + "22843": "volume_im:LCA", + "22844": "volume_im:LCA", + "22845": "volume_im:LCA", + "22846": "volume_im:LCA", + "22847": "volume_im:LCA", + "22848": "volume_im:LCA", + "22849": "volume_im:LCA", + "22850": "volume_im:LCA", + "22851": "volume_im:LCA", + "22852": "volume_im:LCA", + "22853": "volume_im:LCA", + "22854": "volume_im:LCA", + "22855": "volume_im:LCA", + "22856": "volume_im:LCA", + "22857": "volume_im:LCA", + "22858": "volume_im:LCA", + "22859": "volume_im:LCA", + "22860": "volume_im:LCA", + "22861": "volume_im:LCA", + "22862": "volume_im:LCA", + "22863": "volume_im:LCA", + "22864": "volume_im:LCA", + "22865": "volume_im:LCA", + "22866": "volume_im:LCA", + "22867": "volume_im:LCA", + "22868": "volume_im:LCA", + "22869": "volume_im:LCA", + "22870": "volume_im:LCA", + "22871": "volume_im:LCA", + "22872": "volume_im:LCA", + "22873": "volume_im:LCA", + "22874": "volume_im:LCA", + "22875": "volume_im:LCA", + "22876": "volume_im:LCA", + "22877": "volume_im:LCA", + "22878": "volume_im:LCA", + "22879": "volume_im:LCA", + "22880": "volume_im:LCA", + "22881": "volume_im:LCA", + "22882": "volume_im:LCA", + "22883": "volume_im:LCA", + "22884": "volume_im:LCA", + "22885": "volume_im:LCA", + "22886": "volume_im:LCA", + "22887": "volume_im:LCA", + "22888": "volume_im:LCA", + "22889": "volume_im:LCA", + "22890": "volume_im:LCA", + "22891": "volume_im:LCA", + "22892": "volume_im:LCA", + "22893": "volume_im:LCA", + "22894": "volume_im:LCA", + "22895": "volume_im:LCA", + "22896": "volume_im:LCA", + "22897": "volume_im:LCA", + "22898": "volume_im:LCA", + "22899": "volume_im:LCA", + "22900": "volume_im:LCA", + "22901": "volume_im:LCA", + "22902": "volume_im:LCA", + "22903": "volume_im:LCA", + "22904": "volume_im:LCA", + "22905": "volume_im:LCA", + "22906": "volume_im:LCA", + "22907": "volume_im:LCA", + "22908": "volume_im:LCA", + "22909": "volume_im:LCA", + "22910": "volume_im:LCA", + "22911": "volume_im:LCA", + "22912": "volume_im:LCA", + "22913": "volume_im:LCA", + "22914": "volume_im:LCA", + "22915": "volume_im:LCA", + "22916": "volume_im:LCA", + "22917": "volume_im:LCA", + "22918": "volume_im:LCA", + "22919": "volume_im:LCA", + "22920": "volume_im:LCA", + "22921": "volume_im:LCA", + "22922": "volume_im:LCA", + "22923": "volume_im:LCA", + "22924": "volume_im:LCA", + "22925": "volume_im:LCA", + "22926": "volume_im:LCA", + "22927": "volume_im:LCA", + "22928": "volume_im:LCA", + "22929": "volume_im:LCA", + "22930": "volume_im:LCA", + "22931": "volume_im:LCA", + "22932": "volume_im:LCA", + "22933": "volume_im:LCA", + "22934": "volume_im:LCA", + "22935": "volume_im:LCA", + "22936": "volume_im:LCA", + "22937": "volume_im:LCA", + "22938": "volume_im:LCA", + "22939": "volume_im:LCA", + "22940": "volume_im:LCA", + "22941": "volume_im:LCA", + "22942": "volume_im:LCA", + "22943": "volume_im:LCA", + "22944": "volume_im:LCA", + "22945": "volume_im:LCA", + "22946": "volume_im:LCA", + "22947": "volume_im:LCA", + "22948": "volume_im:LCA", + "22949": "volume_im:LCA", + "22950": "volume_im:LCA", + "22951": "volume_im:LCA", + "22952": "volume_im:LCA", + "22953": "volume_im:LCA", + "22954": "volume_im:LCA", + "22955": "volume_im:LCA", + "22956": "volume_im:LCA", + "22957": "volume_im:LCA", + "22958": "volume_im:LCA", + "22959": "volume_im:LCA", + "22960": "volume_im:LCA", + "22961": "volume_im:LCA", + "22962": "volume_im:LCA", + "22963": "volume_im:LCA", + "22964": "volume_im:LCA", + "22965": "volume_im:LCA", + "22966": "volume_im:LCA", + "22967": "volume_im:LCA", + "22968": "volume_im:LCA", + "22969": "volume_im:LCA", + "22970": "volume_im:LCA", + "22971": "volume_im:LCA", + "22972": "volume_im:LCA", + "22973": "volume_im:LCA", + "22974": "volume_im:LCA", + "22975": "volume_im:LCA", + "22976": "volume_im:LCA", + "22977": "volume_im:LCA", + "22978": "volume_im:LCA", + "22979": "volume_im:LCA", + "22980": "volume_im:LCA", + "22981": "volume_im:LCA", + "22982": "volume_im:LCA", + "22983": "volume_im:LCA", + "22984": "volume_im:LCA", + "22985": "volume_im:LCA", + "22986": "volume_im:LCA", + "22987": "volume_im:LCA", + "22988": "volume_im:LCA", + "22989": "volume_im:LCA", + "22990": "volume_im:LCA", + "22991": "volume_im:LCA", + "22992": "volume_im:LCA", + "22993": "volume_im:LCA", + "22994": "volume_im:LCA", + "22995": "volume_im:LCA", + "22996": "volume_im:LCA", + "22997": "volume_im:LCA", + "22998": "volume_im:LCA", + "22999": "volume_im:LCA", + "23000": "volume_im:RCA", + "23001": "volume_im:RCA", + "23002": "volume_im:RCA", + "23003": "volume_im:RCA", + "23004": "volume_im:RCA", + "23005": "volume_im:RCA", + "23006": "volume_im:RCA", + "23007": "volume_im:RCA", + "23008": "volume_im:RCA", + "23009": "volume_im:RCA", + "23010": "volume_im:RCA", + "23011": "volume_im:RCA", + "23012": "volume_im:RCA", + "23013": "volume_im:RCA", + "23014": "volume_im:RCA", + "23015": "volume_im:RCA", + "23016": "volume_im:RCA", + "23017": "volume_im:RCA", + "23018": "volume_im:RCA", + "23019": "volume_im:RCA", + "23020": "volume_im:RCA", + "23021": "volume_im:RCA", + "23022": "volume_im:RCA", + "23023": "volume_im:RCA", + "23024": "volume_im:RCA", + "23025": "volume_im:RCA", + "23026": "volume_im:RCA", + "23027": "volume_im:RCA", + "23028": "volume_im:RCA", + "23029": "volume_im:RCA", + "23030": "volume_im:RCA", + "23031": "volume_im:RCA", + "23032": "volume_im:RCA", + "23033": "volume_im:RCA", + "23034": "volume_im:RCA", + "23035": "volume_im:RCA", + "23036": "volume_im:RCA", + "23037": "volume_im:RCA", + "23038": "volume_im:RCA", + "23039": "volume_im:RCA", + "23040": "volume_im:RCA", + "23041": "volume_im:RCA", + "23042": "volume_im:RCA", + "23043": "volume_im:RCA", + "23044": "volume_im:RCA", + "23045": "volume_im:RCA", + "23046": "volume_im:RCA", + "23047": "volume_im:RCA", + "23048": "volume_im:RCA", + "23049": "volume_im:RCA", + "23050": "volume_im:RCA", + "23051": "volume_im:RCA", + "23052": "volume_im:RCA", + "23053": "volume_im:RCA", + "23054": "volume_im:RCA", + "23055": "volume_im:RCA", + "23056": "volume_im:RCA", + "23057": "volume_im:RCA", + "23058": "volume_im:RCA", + "23059": "volume_im:RCA", + "23060": "volume_im:RCA", + "23061": "volume_im:RCA", + "23062": "volume_im:RCA", + "23063": "volume_im:RCA", + "23064": "volume_im:RCA", + "23065": "volume_im:RCA", + "23066": "volume_im:RCA", + "23067": "volume_im:RCA", + "23068": "volume_im:RCA", + "23069": "volume_im:RCA", + "23070": "volume_im:RCA", + "23071": "volume_im:RCA", + "23072": "volume_im:RCA", + "23073": "volume_im:RCA", + "23074": "volume_im:RCA", + "23075": "volume_im:RCA", + "23076": "volume_im:RCA", + "23077": "volume_im:RCA", + "23078": "volume_im:RCA", + "23079": "volume_im:RCA", + "23080": "volume_im:RCA", + "23081": "volume_im:RCA", + "23082": "volume_im:RCA", + "23083": "volume_im:RCA", + "23084": "volume_im:RCA", + "23085": "volume_im:RCA", + "23086": "volume_im:RCA", + "23087": "volume_im:RCA", + "23088": "volume_im:RCA", + "23089": "volume_im:RCA", + "23090": "volume_im:RCA", + "23091": "volume_im:RCA", + "23092": "volume_im:RCA", + "23093": "volume_im:RCA", + "23094": "volume_im:RCA", + "23095": "volume_im:RCA", + "23096": "volume_im:RCA", + "23097": "volume_im:RCA", + "23098": "volume_im:RCA", + "23099": "volume_im:RCA", + "23100": "volume_im:RCA", + "23101": "volume_im:RCA", + "23102": "volume_im:RCA", + "23103": "volume_im:RCA", + "23104": "volume_im:RCA", + "23105": "volume_im:RCA", + "23106": "volume_im:RCA", + "23107": "volume_im:RCA", + "23108": "volume_im:RCA", + "23109": "volume_im:RCA", + "23110": "volume_im:RCA", + "23111": "volume_im:RCA", + "23112": "volume_im:RCA", + "23113": "volume_im:RCA", + "23114": "volume_im:RCA", + "23115": "volume_im:RCA", + "23116": "volume_im:RCA", + "23117": "volume_im:RCA", + "23118": "volume_im:RCA", + "23119": "volume_im:RCA", + "23120": "volume_im:RCA", + "23121": "volume_im:RCA", + "23122": "volume_im:RCA", + "23123": "volume_im:RCA", + "23124": "volume_im:RCA", + "23125": "volume_im:RCA", + "23126": "volume_im:RCA", + "23127": "volume_im:RCA", + "23128": "volume_im:RCA", + "23129": "volume_im:RCA", + "23130": "volume_im:RCA", + "23131": "volume_im:RCA", + "23132": "volume_im:RCA", + "23133": "volume_im:RCA", + "23134": "volume_im:RCA", + "23135": "volume_im:RCA", + "23136": "volume_im:RCA", + "23137": "volume_im:RCA", + "23138": "volume_im:RCA", + "23139": "volume_im:RCA", + "23140": "volume_im:RCA", + "23141": "volume_im:RCA", + "23142": "volume_im:RCA", + "23143": "volume_im:RCA", + "23144": "volume_im:RCA", + "23145": "volume_im:RCA", + "23146": "volume_im:RCA", + "23147": "volume_im:RCA", + "23148": "volume_im:RCA", + "23149": "volume_im:RCA", + "23150": "volume_im:RCA", + "23151": "volume_im:RCA", + "23152": "volume_im:RCA", + "23153": "volume_im:RCA", + "23154": "volume_im:RCA", + "23155": "volume_im:RCA", + "23156": "volume_im:RCA", + "23157": "volume_im:RCA", + "23158": "volume_im:RCA", + "23159": "volume_im:RCA", + "23160": "volume_im:RCA", + "23161": "volume_im:RCA", + "23162": "volume_im:RCA", + "23163": "volume_im:RCA", + "23164": "volume_im:RCA", + "23165": "volume_im:RCA", + "23166": "volume_im:RCA", + "23167": "volume_im:RCA", + "23168": "volume_im:RCA", + "23169": "volume_im:RCA", + "23170": "volume_im:RCA", + "23171": "volume_im:RCA", + "23172": "volume_im:RCA", + "23173": "volume_im:RCA", + "23174": "volume_im:RCA", + "23175": "volume_im:RCA", + "23176": "volume_im:RCA", + "23177": "volume_im:RCA", + "23178": "volume_im:RCA", + "23179": "volume_im:RCA", + "23180": "volume_im:RCA", + "23181": "volume_im:RCA", + "23182": "volume_im:RCA", + "23183": "volume_im:RCA", + "23184": "volume_im:RCA", + "23185": "volume_im:RCA", + "23186": "volume_im:RCA", + "23187": "volume_im:RCA", + "23188": "volume_im:RCA", + "23189": "volume_im:RCA", + "23190": "volume_im:RCA", + "23191": "volume_im:RCA", + "23192": "volume_im:RCA", + "23193": "volume_im:RCA", + "23194": "volume_im:RCA", + "23195": "volume_im:RCA", + "23196": "volume_im:RCA", + "23197": "volume_im:RCA", + "23198": "volume_im:RCA", + "23199": "volume_im:RCA", + "23200": "volume_im:RCA", + "23201": "volume_im:RCA", + "23202": "volume_im:RCA", + "23203": "volume_im:RCA", + "23204": "volume_im:RCA", + "23205": "volume_im:RCA", + "23206": "volume_im:RCA", + "23207": "volume_im:RCA", + "23208": "volume_im:RCA", + "23209": "volume_im:RCA", + "23210": "volume_im:RCA", + "23211": "volume_im:RCA", + "23212": "volume_im:RCA", + "23213": "volume_im:RCA", + "23214": "volume_im:RCA", + "23215": "volume_im:RCA", + "23216": "volume_im:RCA", + "23217": "volume_im:RCA", + "23218": "volume_im:RCA", + "23219": "volume_im:RCA", + "23220": "volume_im:RCA", + "23221": "volume_im:RCA", + "23222": "volume_im:RCA", + "23223": "volume_im:RCA", + "23224": "volume_im:RCA", + "23225": "volume_im:RCA", + "23226": "volume_im:RCA", + "23227": "volume_im:RCA", + "23228": "volume_im:RCA", + "23229": "volume_im:RCA", + "23230": "volume_im:RCA", + "23231": "volume_im:RCA", + "23232": "volume_im:RCA", + "23233": "volume_im:RCA", + "23234": "volume_im:RCA", + "23235": "volume_im:RCA", + "23236": "volume_im:RCA", + "23237": "volume_im:RCA", + "23238": "volume_im:RCA", + "23239": "volume_im:RCA", + "23240": "volume_im:RCA", + "23241": "volume_im:RCA", + "23242": "volume_im:RCA", + "23243": "volume_im:RCA", + "23244": "volume_im:RCA", + "23245": "volume_im:RCA", + "23246": "volume_im:RCA", + "23247": "volume_im:RCA", + "23248": "volume_im:RCA", + "23249": "volume_im:RCA", + "23250": "volume_im:RCA", + "23251": "volume_im:RCA", + "23252": "volume_im:RCA", + "23253": "volume_im:RCA", + "23254": "volume_im:RCA", + "23255": "volume_im:RCA", + "23256": "volume_im:RCA", + "23257": "volume_im:RCA", + "23258": "volume_im:RCA", + "23259": "volume_im:RCA", + "23260": "volume_im:RCA", + "23261": "volume_im:RCA", + "23262": "volume_im:RCA", + "23263": "volume_im:RCA", + "23264": "volume_im:RCA", + "23265": "volume_im:RCA", + "23266": "volume_im:RCA", + "23267": "volume_im:RCA", + "23268": "volume_im:RCA", + "23269": "volume_im:RCA", + "23270": "volume_im:RCA", + "23271": "volume_im:RCA", + "23272": "volume_im:RCA", + "23273": "volume_im:RCA", + "23274": "volume_im:RCA", + "23275": "volume_im:RCA", + "23276": "volume_im:RCA", + "23277": "volume_im:RCA", + "23278": "volume_im:RCA", + "23279": "volume_im:RCA", + "23280": "volume_im:RCA", + "23281": "volume_im:RCA", + "23282": "volume_im:RCA", + "23283": "volume_im:RCA", + "23284": "volume_im:RCA", + "23285": "volume_im:RCA", + "23286": "volume_im:RCA", + "23287": "volume_im:RCA", + "23288": "volume_im:RCA", + "23289": "volume_im:RCA", + "23290": "volume_im:RCA", + "23291": "volume_im:RCA", + "23292": "volume_im:RCA", + "23293": "volume_im:RCA", + "23294": "volume_im:RCA", + "23295": "volume_im:RCA", + "23296": "volume_im:RCA", + "23297": "volume_im:RCA", + "23298": "volume_im:RCA", + "23299": "volume_im:RCA", + "23300": "volume_im:RCA", + "23301": "volume_im:RCA", + "23302": "volume_im:RCA", + "23303": "volume_im:RCA", + "23304": "volume_im:RCA", + "23305": "volume_im:RCA", + "23306": "volume_im:RCA", + "23307": "volume_im:RCA", + "23308": "volume_im:RCA", + "23309": "volume_im:RCA", + "23310": "volume_im:RCA", + "23311": "volume_im:RCA", + "23312": "volume_im:RCA", + "23313": "volume_im:RCA", + "23314": "volume_im:RCA", + "23315": "volume_im:RCA", + "23316": "volume_im:RCA", + "23317": "volume_im:RCA", + "23318": "volume_im:RCA", + "23319": "volume_im:RCA", + "23320": "volume_im:RCA", + "23321": "volume_im:RCA", + "23322": "volume_im:RCA", + "23323": "volume_im:RCA", + "23324": "volume_im:RCA", + "23325": "volume_im:RCA", + "23326": "volume_im:RCA", + "23327": "volume_im:RCA", + "23328": "volume_im:RCA", + "23329": "volume_im:RCA", + "23330": "volume_im:RCA", + "23331": "volume_im:RCA", + "23332": "volume_im:RCA", + "23333": "volume_im:RCA", + "23334": "volume_im:RCA", + "23335": "volume_im:RCA", + "23336": "volume_im:RCA", + "23337": "volume_im:RCA", + "23338": "volume_im:RCA", + "23339": "volume_im:RCA", + "23340": "volume_im:RCA", + "23341": "volume_im:RCA", + "23342": "volume_im:RCA", + "23343": "volume_im:RCA", + "23344": "volume_im:RCA", + "23345": "volume_im:RCA", + "23346": "volume_im:RCA", + "23347": "volume_im:RCA", + "23348": "volume_im:RCA", + "23349": "volume_im:RCA", + "23350": "volume_im:RCA", + "23351": "volume_im:RCA", + "23352": "volume_im:RCA", + "23353": "volume_im:RCA", + "23354": "volume_im:RCA", + "23355": "volume_im:RCA", + "23356": "volume_im:RCA", + "23357": "volume_im:RCA", + "23358": "volume_im:RCA", + "23359": "volume_im:RCA", + "23360": "volume_im:RCA", + "23361": "volume_im:RCA", + "23362": "volume_im:RCA", + "23363": "volume_im:RCA", + "23364": "volume_im:RCA", + "23365": "volume_im:RCA", + "23366": "volume_im:RCA", + "23367": "volume_im:RCA", + "23368": "volume_im:RCA", + "23369": "volume_im:RCA", + "23370": "volume_im:RCA", + "23371": "volume_im:RCA", + "23372": "volume_im:RCA", + "23373": "volume_im:RCA", + "23374": "volume_im:RCA", + "23375": "volume_im:RCA", + "23376": "volume_im:RCA", + "23377": "volume_im:RCA", + "23378": "volume_im:RCA", + "23379": "volume_im:RCA", + "23380": "volume_im:RCA", + "23381": "volume_im:RCA", + "23382": "volume_im:RCA", + "23383": "volume_im:RCA", + "23384": "volume_im:RCA", + "23385": "volume_im:RCA", + "23386": "volume_im:RCA", + "23387": "volume_im:RCA", + "23388": "volume_im:RCA", + "23389": "volume_im:RCA", + "23390": "volume_im:RCA", + "23391": "volume_im:RCA", + "23392": "volume_im:RCA", + "23393": "volume_im:RCA", + "23394": "volume_im:RCA", + "23395": "volume_im:RCA", + "23396": "volume_im:RCA", + "23397": "volume_im:RCA", + "23398": "volume_im:RCA", + "23399": "volume_im:RCA", + "23400": "volume_im:RCA", + "23401": "volume_im:RCA", + "23402": "volume_im:RCA", + "23403": "volume_im:RCA", + "23404": "volume_im:RCA", + "23405": "volume_im:RCA", + "23406": "volume_im:RCA", + "23407": "volume_im:RCA", + "23408": "volume_im:RCA", + "23409": "volume_im:RCA", + "23410": "volume_im:RCA", + "23411": "volume_im:RCA", + "23412": "volume_im:RCA", + "23413": "volume_im:RCA", + "23414": "volume_im:RCA", + "23415": "volume_im:RCA", + "23416": "volume_im:RCA", + "23417": "volume_im:RCA", + "23418": "volume_im:RCA", + "23419": "volume_im:RCA", + "23420": "volume_im:RCA", + "23421": "volume_im:RCA", + "23422": "volume_im:RCA", + "23423": "volume_im:RCA", + "23424": "volume_im:RCA", + "23425": "volume_im:RCA", + "23426": "volume_im:RCA", + "23427": "volume_im:RCA", + "23428": "volume_im:RCA", + "23429": "volume_im:RCA", + "23430": "volume_im:RCA", + "23431": "volume_im:RCA", + "23432": "volume_im:RCA", + "23433": "volume_im:RCA", + "23434": "volume_im:RCA", + "23435": "volume_im:RCA", + "23436": "volume_im:RCA", + "23437": "volume_im:RCA", + "23438": "volume_im:RCA", + "23439": "volume_im:RCA", + "23440": "volume_im:RCA", + "23441": "volume_im:RCA", + "23442": "volume_im:RCA", + "23443": "volume_im:RCA", + "23444": "volume_im:RCA", + "23445": "volume_im:RCA", + "23446": "volume_im:RCA", + "23447": "volume_im:RCA", + "23448": "volume_im:RCA", + "23449": "volume_im:RCA", + "23450": "volume_im:RCA", + "23451": "volume_im:RCA", + "23452": "volume_im:RCA", + "23453": "volume_im:RCA", + "23454": "volume_im:RCA", + "23455": "volume_im:RCA", + "23456": "volume_im:RCA", + "23457": "volume_im:RCA", + "23458": "volume_im:RCA", + "23459": "volume_im:RCA", + "23460": "volume_im:RCA", + "23461": "volume_im:RCA", + "23462": "volume_im:RCA", + "23463": "volume_im:RCA", + "23464": "volume_im:RCA", + "23465": "volume_im:RCA", + "23466": "volume_im:RCA", + "23467": "volume_im:RCA", + "23468": "volume_im:RCA", + "23469": "volume_im:RCA", + "23470": "volume_im:RCA", + "23471": "volume_im:RCA", + "23472": "volume_im:RCA", + "23473": "volume_im:RCA", + "23474": "volume_im:RCA", + "23475": "volume_im:RCA", + "23476": "volume_im:RCA", + "23477": "volume_im:RCA", + "23478": "volume_im:RCA", + "23479": "volume_im:RCA", + "23480": "volume_im:RCA", + "23481": "volume_im:RCA", + "23482": "volume_im:RCA", + "23483": "volume_im:RCA", + "23484": "volume_im:RCA", + "23485": "volume_im:RCA", + "23486": "volume_im:RCA", + "23487": "volume_im:RCA", + "23488": "volume_im:RCA", + "23489": "volume_im:RCA", + "23490": "volume_im:RCA", + "23491": "volume_im:RCA", + "23492": "volume_im:RCA", + "23493": "volume_im:RCA", + "23494": "volume_im:RCA", + "23495": "volume_im:RCA", + "23496": "volume_im:RCA", + "23497": "volume_im:RCA", + "23498": "volume_im:RCA", + "23499": "volume_im:RCA", + "23500": "volume_im:RCA", + "23501": "volume_im:RCA", + "23502": "volume_im:RCA", + "23503": "volume_im:RCA", + "23504": "volume_im:RCA", + "23505": "volume_im:RCA", + "23506": "volume_im:RCA", + "23507": "volume_im:RCA", + "23508": "volume_im:RCA", + "23509": "volume_im:RCA", + "23510": "volume_im:RCA", + "23511": "volume_im:RCA", + "23512": "volume_im:RCA", + "23513": "volume_im:RCA", + "23514": "volume_im:RCA", + "23515": "volume_im:RCA", + "23516": "volume_im:RCA", + "23517": "volume_im:RCA", + "23518": "volume_im:RCA", + "23519": "volume_im:RCA", + "23520": "volume_im:RCA", + "23521": "volume_im:RCA", + "23522": "volume_im:RCA", + "23523": "volume_im:RCA", + "23524": "volume_im:RCA", + "23525": "volume_im:RCA", + "23526": "volume_im:RCA", + "23527": "volume_im:RCA", + "23528": "volume_im:RCA", + "23529": "volume_im:RCA", + "23530": "volume_im:RCA", + "23531": "volume_im:RCA", + "23532": "volume_im:RCA", + "23533": "volume_im:RCA", + "23534": "volume_im:RCA", + "23535": "volume_im:RCA", + "23536": "volume_im:RCA", + "23537": "volume_im:RCA", + "23538": "volume_im:RCA", + "23539": "volume_im:RCA", + "23540": "volume_im:RCA", + "23541": "volume_im:RCA", + "23542": "volume_im:RCA", + "23543": "volume_im:RCA", + "23544": "volume_im:RCA", + "23545": "volume_im:RCA", + "23546": "volume_im:RCA", + "23547": "volume_im:RCA", + "23548": "volume_im:RCA", + "23549": "volume_im:RCA", + "23550": "volume_im:RCA", + "23551": "volume_im:RCA", + "23552": "volume_im:RCA", + "23553": "volume_im:RCA", + "23554": "volume_im:RCA", + "23555": "volume_im:RCA", + "23556": "volume_im:RCA", + "23557": "volume_im:RCA", + "23558": "volume_im:RCA", + "23559": "volume_im:RCA", + "23560": "volume_im:RCA", + "23561": "volume_im:RCA", + "23562": "volume_im:RCA", + "23563": "volume_im:RCA", + "23564": "volume_im:RCA", + "23565": "volume_im:RCA", + "23566": "volume_im:RCA", + "23567": "volume_im:RCA", + "23568": "volume_im:RCA", + "23569": "volume_im:RCA", + "23570": "volume_im:RCA", + "23571": "volume_im:RCA", + "23572": "volume_im:RCA", + "23573": "volume_im:RCA", + "23574": "volume_im:RCA", + "23575": "volume_im:RCA", + "23576": "volume_im:RCA", + "23577": "volume_im:RCA", + "23578": "volume_im:RCA", + "23579": "volume_im:RCA", + "23580": "volume_im:RCA", + "23581": "volume_im:RCA", + "23582": "volume_im:RCA", + "23583": "volume_im:RCA", + "23584": "volume_im:RCA", + "23585": "volume_im:RCA", + "23586": "volume_im:RCA", + "23587": "volume_im:RCA", + "23588": "volume_im:RCA", + "23589": "volume_im:RCA", + "23590": "volume_im:RCA", + "23591": "volume_im:RCA", + "23592": "volume_im:RCA", + "23593": "volume_im:RCA", + "23594": "volume_im:RCA", + "23595": "volume_im:RCA", + "23596": "volume_im:RCA", + "23597": "volume_im:RCA", + "23598": "volume_im:RCA", + "23599": "volume_im:RCA", + "23600": "volume_im:RCA", + "23601": "volume_im:RCA", + "23602": "volume_im:RCA", + "23603": "volume_im:RCA", + "23604": "volume_im:RCA", + "23605": "volume_im:RCA", + "23606": "volume_im:RCA", + "23607": "volume_im:RCA", + "23608": "volume_im:RCA", + "23609": "volume_im:RCA", + "23610": "volume_im:RCA", + "23611": "volume_im:RCA", + "23612": "volume_im:RCA", + "23613": "volume_im:RCA", + "23614": "volume_im:RCA", + "23615": "volume_im:RCA", + "23616": "volume_im:RCA", + "23617": "volume_im:RCA", + "23618": "volume_im:RCA", + "23619": "volume_im:RCA", + "23620": "volume_im:RCA", + "23621": "volume_im:RCA", + "23622": "volume_im:RCA", + "23623": "volume_im:RCA", + "23624": "volume_im:RCA", + "23625": "volume_im:RCA", + "23626": "volume_im:RCA", + "23627": "volume_im:RCA", + "23628": "volume_im:RCA", + "23629": "volume_im:RCA", + "23630": "volume_im:RCA", + "23631": "volume_im:RCA", + "23632": "volume_im:RCA", + "23633": "volume_im:RCA", + "23634": "volume_im:RCA", + "23635": "volume_im:RCA", + "23636": "volume_im:RCA", + "23637": "volume_im:RCA", + "23638": "volume_im:RCA", + "23639": "volume_im:RCA", + "23640": "volume_im:RCA", + "23641": "volume_im:RCA", + "23642": "volume_im:RCA", + "23643": "volume_im:RCA", + "23644": "volume_im:RCA", + "23645": "volume_im:RCA", + "23646": "volume_im:RCA", + "23647": "volume_im:RCA", + "23648": "volume_im:RCA", + "23649": "volume_im:RCA", + "23650": "volume_im:RCA", + "23651": "volume_im:RCA", + "23652": "volume_im:RCA", + "23653": "volume_im:RCA", + "23654": "volume_im:RCA", + "23655": "volume_im:RCA", + "23656": "volume_im:RCA", + "23657": "volume_im:RCA", + "23658": "volume_im:RCA", + "23659": "volume_im:RCA", + "23660": "volume_im:RCA", + "23661": "volume_im:RCA", + "23662": "volume_im:RCA", + "23663": "volume_im:RCA", + "23664": "volume_im:RCA", + "23665": "volume_im:RCA", + "23666": "volume_im:RCA", + "23667": "volume_im:RCA", + "23668": "volume_im:RCA", + "23669": "volume_im:RCA", + "23670": "volume_im:RCA", + "23671": "volume_im:RCA", + "23672": "volume_im:RCA", + "23673": "volume_im:RCA", + "23674": "volume_im:RCA", + "23675": "volume_im:RCA", + "23676": "volume_im:RCA", + "23677": "volume_im:RCA", + "23678": "volume_im:RCA", + "23679": "volume_im:RCA", + "23680": "volume_im:RCA", + "23681": "volume_im:RCA", + "23682": "volume_im:RCA", + "23683": "volume_im:RCA", + "23684": "volume_im:RCA", + "23685": "volume_im:RCA", + "23686": "volume_im:RCA", + "23687": "volume_im:RCA", + "23688": "volume_im:RCA", + "23689": "volume_im:RCA", + "23690": "volume_im:RCA", + "23691": "volume_im:RCA", + "23692": "volume_im:RCA", + "23693": "volume_im:RCA", + "23694": "volume_im:RCA", + "23695": "volume_im:RCA", + "23696": "volume_im:RCA", + "23697": "volume_im:RCA", + "23698": "volume_im:RCA", + "23699": "volume_im:RCA", + "23700": "volume_im:RCA", + "23701": "volume_im:RCA", + "23702": "volume_im:RCA", + "23703": "volume_im:RCA", + "23704": "volume_im:RCA", + "23705": "volume_im:RCA", + "23706": "volume_im:RCA", + "23707": "volume_im:RCA", + "23708": "volume_im:RCA", + "23709": "volume_im:RCA", + "23710": "volume_im:RCA", + "23711": "volume_im:RCA", + "23712": "volume_im:RCA", + "23713": "volume_im:RCA", + "23714": "volume_im:RCA", + "23715": "volume_im:RCA", + "23716": "volume_im:RCA", + "23717": "volume_im:RCA", + "23718": "volume_im:RCA", + "23719": "volume_im:RCA", + "23720": "volume_im:RCA", + "23721": "volume_im:RCA", + "23722": "volume_im:RCA", + "23723": "volume_im:RCA", + "23724": "volume_im:RCA", + "23725": "volume_im:RCA", + "23726": "volume_im:RCA", + "23727": "volume_im:RCA", + "23728": "volume_im:RCA", + "23729": "volume_im:RCA", + "23730": "volume_im:RCA", + "23731": "volume_im:RCA", + "23732": "volume_im:RCA", + "23733": "volume_im:RCA", + "23734": "volume_im:RCA", + "23735": "volume_im:RCA", + "23736": "volume_im:RCA", + "23737": "volume_im:RCA", + "23738": "volume_im:RCA", + "23739": "volume_im:RCA", + "23740": "volume_im:RCA", + "23741": "volume_im:RCA", + "23742": "volume_im:RCA", + "23743": "volume_im:RCA", + "23744": "volume_im:RCA", + "23745": "volume_im:RCA", + "23746": "volume_im:RCA", + "23747": "volume_im:RCA", + "23748": "volume_im:RCA", + "23749": "volume_im:RCA", + "23750": "volume_im:RCA", + "23751": "volume_im:RCA", + "23752": "volume_im:RCA", + "23753": "volume_im:RCA", + "23754": "volume_im:RCA", + "23755": "volume_im:RCA", + "23756": "volume_im:RCA", + "23757": "volume_im:RCA", + "23758": "volume_im:RCA", + "23759": "volume_im:RCA", + "23760": "volume_im:RCA", + "23761": "volume_im:RCA", + "23762": "volume_im:RCA", + "23763": "volume_im:RCA", + "23764": "volume_im:RCA", + "23765": "volume_im:RCA", + "23766": "volume_im:RCA", + "23767": "volume_im:RCA", + "23768": "volume_im:RCA", + "23769": "volume_im:RCA", + "23770": "volume_im:RCA", + "23771": "volume_im:RCA", + "23772": "volume_im:RCA", + "23773": "volume_im:RCA", + "23774": "volume_im:RCA", + "23775": "volume_im:RCA", + "23776": "volume_im:RCA", + "23777": "volume_im:RCA", + "23778": "volume_im:RCA", + "23779": "volume_im:RCA", + "23780": "volume_im:RCA", + "23781": "volume_im:RCA", + "23782": "volume_im:RCA", + "23783": "volume_im:RCA", + "23784": "volume_im:RCA", + "23785": "volume_im:RCA", + "23786": "volume_im:RCA", + "23787": "volume_im:RCA", + "23788": "volume_im:RCA", + "23789": "volume_im:RCA", + "23790": "volume_im:RCA", + "23791": "volume_im:RCA", + "23792": "volume_im:RCA", + "23793": "volume_im:RCA", + "23794": "volume_im:RCA", + "23795": "volume_im:RCA", + "23796": "volume_im:RCA", + "23797": "volume_im:RCA", + "23798": "volume_im:RCA", + "23799": "volume_im:RCA", + "23800": "volume_im:RCA", + "23801": "volume_im:RCA", + "23802": "volume_im:RCA", + "23803": "volume_im:RCA", + "23804": "volume_im:RCA", + "23805": "volume_im:RCA", + "23806": "volume_im:RCA", + "23807": "volume_im:RCA", + "23808": "volume_im:RCA", + "23809": "volume_im:RCA", + "23810": "volume_im:RCA", + "23811": "volume_im:RCA", + "23812": "volume_im:RCA", + "23813": "volume_im:RCA", + "23814": "volume_im:RCA", + "23815": "volume_im:RCA", + "23816": "volume_im:RCA", + "23817": "volume_im:RCA", + "23818": "volume_im:RCA", + "23819": "volume_im:RCA", + "23820": "volume_im:RCA", + "23821": "volume_im:RCA", + "23822": "volume_im:RCA", + "23823": "volume_im:RCA", + "23824": "volume_im:RCA", + "23825": "volume_im:RCA", + "23826": "volume_im:RCA", + "23827": "volume_im:RCA", + "23828": "volume_im:RCA", + "23829": "volume_im:RCA", + "23830": "volume_im:RCA", + "23831": "volume_im:RCA", + "23832": "volume_im:RCA", + "23833": "volume_im:RCA", + "23834": "volume_im:RCA", + "23835": "volume_im:RCA", + "23836": "volume_im:RCA", + "23837": "volume_im:RCA", + "23838": "volume_im:RCA", + "23839": "volume_im:RCA", + "23840": "volume_im:RCA", + "23841": "volume_im:RCA", + "23842": "volume_im:RCA", + "23843": "volume_im:RCA", + "23844": "volume_im:RCA", + "23845": "volume_im:RCA", + "23846": "volume_im:RCA", + "23847": "volume_im:RCA", + "23848": "volume_im:RCA", + "23849": "volume_im:RCA", + "23850": "volume_im:RCA", + "23851": "volume_im:RCA", + "23852": "volume_im:RCA", + "23853": "volume_im:RCA", + "23854": "volume_im:RCA", + "23855": "volume_im:RCA", + "23856": "volume_im:RCA", + "23857": "volume_im:RCA", + "23858": "volume_im:RCA", + "23859": "volume_im:RCA", + "23860": "volume_im:RCA", + "23861": "volume_im:RCA", + "23862": "volume_im:RCA", + "23863": "volume_im:RCA", + "23864": "volume_im:RCA", + "23865": "volume_im:RCA", + "23866": "volume_im:RCA", + "23867": "volume_im:RCA", + "23868": "volume_im:RCA", + "23869": "volume_im:RCA", + "23870": "volume_im:RCA", + "23871": "volume_im:RCA", + "23872": "volume_im:RCA", + "23873": "volume_im:RCA", + "23874": "volume_im:RCA", + "23875": "volume_im:RCA", + "23876": "volume_im:RCA", + "23877": "volume_im:RCA", + "23878": "volume_im:RCA", + "23879": "volume_im:RCA", + "23880": "volume_im:RCA", + "23881": "volume_im:RCA", + "23882": "volume_im:RCA", + "23883": "volume_im:RCA", + "23884": "volume_im:RCA", + "23885": "volume_im:RCA", + "23886": "volume_im:RCA", + "23887": "volume_im:RCA", + "23888": "volume_im:RCA", + "23889": "volume_im:RCA", + "23890": "volume_im:RCA", + "23891": "volume_im:RCA", + "23892": "volume_im:RCA", + "23893": "volume_im:RCA", + "23894": "volume_im:RCA", + "23895": "volume_im:RCA", + "23896": "volume_im:RCA", + "23897": "volume_im:RCA", + "23898": "volume_im:RCA", + "23899": "volume_im:RCA", + "23900": "volume_im:RCA", + "23901": "volume_im:RCA", + "23902": "volume_im:RCA", + "23903": "volume_im:RCA", + "23904": "volume_im:RCA", + "23905": "volume_im:RCA", + "23906": "volume_im:RCA", + "23907": "volume_im:RCA", + "23908": "volume_im:RCA", + "23909": "volume_im:RCA", + "23910": "volume_im:RCA", + "23911": "volume_im:RCA", + "23912": "volume_im:RCA", + "23913": "volume_im:RCA", + "23914": "volume_im:RCA", + "23915": "volume_im:RCA", + "23916": "volume_im:RCA", + "23917": "volume_im:RCA", + "23918": "volume_im:RCA", + "23919": "volume_im:RCA", + "23920": "volume_im:RCA", + "23921": "volume_im:RCA", + "23922": "volume_im:RCA", + "23923": "volume_im:RCA", + "23924": "volume_im:RCA", + "23925": "volume_im:RCA", + "23926": "volume_im:RCA", + "23927": "volume_im:RCA", + "23928": "volume_im:RCA", + "23929": "volume_im:RCA", + "23930": "volume_im:RCA", + "23931": "volume_im:RCA", + "23932": "volume_im:RCA", + "23933": "volume_im:RCA", + "23934": "volume_im:RCA", + "23935": "volume_im:RCA", + "23936": "volume_im:RCA", + "23937": "volume_im:RCA", + "23938": "volume_im:RCA", + "23939": "volume_im:RCA", + "23940": "volume_im:RCA", + "23941": "volume_im:RCA", + "23942": "volume_im:RCA", + "23943": "volume_im:RCA", + "23944": "volume_im:RCA", + "23945": "volume_im:RCA", + "23946": "volume_im:RCA", + "23947": "volume_im:RCA", + "23948": "volume_im:RCA", + "23949": "volume_im:RCA", + "23950": "volume_im:RCA", + "23951": "volume_im:RCA", + "23952": "volume_im:RCA", + "23953": "volume_im:RCA", + "23954": "volume_im:RCA", + "23955": "volume_im:RCA", + "23956": "volume_im:RCA", + "23957": "volume_im:RCA", + "23958": "volume_im:RCA", + "23959": "volume_im:RCA", + "23960": "volume_im:RCA", + "23961": "volume_im:RCA", + "23962": "volume_im:RCA", + "23963": "volume_im:RCA", + "23964": "volume_im:RCA", + "23965": "volume_im:RCA", + "23966": "volume_im:RCA", + "23967": "volume_im:RCA", + "23968": "volume_im:RCA", + "23969": "volume_im:RCA", + "23970": "volume_im:RCA", + "23971": "volume_im:RCA", + "23972": "volume_im:RCA", + "23973": "volume_im:RCA", + "23974": "volume_im:RCA", + "23975": "volume_im:RCA", + "23976": "volume_im:RCA", + "23977": "volume_im:RCA", + "23978": "volume_im:RCA", + "23979": "volume_im:RCA", + "23980": "volume_im:RCA", + "23981": "volume_im:RCA", + "23982": "volume_im:RCA", + "23983": "volume_im:RCA", + "23984": "volume_im:RCA", + "23985": "volume_im:RCA", + "23986": "volume_im:RCA", + "23987": "volume_im:RCA", + "23988": "volume_im:RCA", + "23989": "volume_im:RCA", + "23990": "volume_im:RCA", + "23991": "volume_im:RCA", + "23992": "volume_im:RCA", + "23993": "volume_im:RCA", + "23994": "volume_im:RCA", + "23995": "volume_im:RCA", + "23996": "volume_im:RCA", + "23997": "volume_im:RCA", + "23998": "volume_im:RCA", + "23999": "volume_im:RCA", + "24000": "P_c:RCR_aorta", + "24001": "P_c:RCR_aorta", + "24002": "P_c:RCR_aorta", + "24003": "P_c:RCR_aorta", + "24004": "P_c:RCR_aorta", + "24005": "P_c:RCR_aorta", + "24006": "P_c:RCR_aorta", + "24007": "P_c:RCR_aorta", + "24008": "P_c:RCR_aorta", + "24009": "P_c:RCR_aorta", + "24010": "P_c:RCR_aorta", + "24011": "P_c:RCR_aorta", + "24012": "P_c:RCR_aorta", + "24013": "P_c:RCR_aorta", + "24014": "P_c:RCR_aorta", + "24015": "P_c:RCR_aorta", + "24016": "P_c:RCR_aorta", + "24017": "P_c:RCR_aorta", + "24018": "P_c:RCR_aorta", + "24019": "P_c:RCR_aorta", + "24020": "P_c:RCR_aorta", + "24021": "P_c:RCR_aorta", + "24022": "P_c:RCR_aorta", + "24023": "P_c:RCR_aorta", + "24024": "P_c:RCR_aorta", + "24025": "P_c:RCR_aorta", + "24026": "P_c:RCR_aorta", + "24027": "P_c:RCR_aorta", + "24028": "P_c:RCR_aorta", + "24029": "P_c:RCR_aorta", + "24030": "P_c:RCR_aorta", + "24031": "P_c:RCR_aorta", + "24032": "P_c:RCR_aorta", + "24033": "P_c:RCR_aorta", + "24034": "P_c:RCR_aorta", + "24035": "P_c:RCR_aorta", + "24036": "P_c:RCR_aorta", + "24037": "P_c:RCR_aorta", + "24038": "P_c:RCR_aorta", + "24039": "P_c:RCR_aorta", + "24040": "P_c:RCR_aorta", + "24041": "P_c:RCR_aorta", + "24042": "P_c:RCR_aorta", + "24043": "P_c:RCR_aorta", + "24044": "P_c:RCR_aorta", + "24045": "P_c:RCR_aorta", + "24046": "P_c:RCR_aorta", + "24047": "P_c:RCR_aorta", + "24048": "P_c:RCR_aorta", + "24049": "P_c:RCR_aorta", + "24050": "P_c:RCR_aorta", + "24051": "P_c:RCR_aorta", + "24052": "P_c:RCR_aorta", + "24053": "P_c:RCR_aorta", + "24054": "P_c:RCR_aorta", + "24055": "P_c:RCR_aorta", + "24056": "P_c:RCR_aorta", + "24057": "P_c:RCR_aorta", + "24058": "P_c:RCR_aorta", + "24059": "P_c:RCR_aorta", + "24060": "P_c:RCR_aorta", + "24061": "P_c:RCR_aorta", + "24062": "P_c:RCR_aorta", + "24063": "P_c:RCR_aorta", + "24064": "P_c:RCR_aorta", + "24065": "P_c:RCR_aorta", + "24066": "P_c:RCR_aorta", + "24067": "P_c:RCR_aorta", + "24068": "P_c:RCR_aorta", + "24069": "P_c:RCR_aorta", + "24070": "P_c:RCR_aorta", + "24071": "P_c:RCR_aorta", + "24072": "P_c:RCR_aorta", + "24073": "P_c:RCR_aorta", + "24074": "P_c:RCR_aorta", + "24075": "P_c:RCR_aorta", + "24076": "P_c:RCR_aorta", + "24077": "P_c:RCR_aorta", + "24078": "P_c:RCR_aorta", + "24079": "P_c:RCR_aorta", + "24080": "P_c:RCR_aorta", + "24081": "P_c:RCR_aorta", + "24082": "P_c:RCR_aorta", + "24083": "P_c:RCR_aorta", + "24084": "P_c:RCR_aorta", + "24085": "P_c:RCR_aorta", + "24086": "P_c:RCR_aorta", + "24087": "P_c:RCR_aorta", + "24088": "P_c:RCR_aorta", + "24089": "P_c:RCR_aorta", + "24090": "P_c:RCR_aorta", + "24091": "P_c:RCR_aorta", + "24092": "P_c:RCR_aorta", + "24093": "P_c:RCR_aorta", + "24094": "P_c:RCR_aorta", + "24095": "P_c:RCR_aorta", + "24096": "P_c:RCR_aorta", + "24097": "P_c:RCR_aorta", + "24098": "P_c:RCR_aorta", + "24099": "P_c:RCR_aorta", + "24100": "P_c:RCR_aorta", + "24101": "P_c:RCR_aorta", + "24102": "P_c:RCR_aorta", + "24103": "P_c:RCR_aorta", + "24104": "P_c:RCR_aorta", + "24105": "P_c:RCR_aorta", + "24106": "P_c:RCR_aorta", + "24107": "P_c:RCR_aorta", + "24108": "P_c:RCR_aorta", + "24109": "P_c:RCR_aorta", + "24110": "P_c:RCR_aorta", + "24111": "P_c:RCR_aorta", + "24112": "P_c:RCR_aorta", + "24113": "P_c:RCR_aorta", + "24114": "P_c:RCR_aorta", + "24115": "P_c:RCR_aorta", + "24116": "P_c:RCR_aorta", + "24117": "P_c:RCR_aorta", + "24118": "P_c:RCR_aorta", + "24119": "P_c:RCR_aorta", + "24120": "P_c:RCR_aorta", + "24121": "P_c:RCR_aorta", + "24122": "P_c:RCR_aorta", + "24123": "P_c:RCR_aorta", + "24124": "P_c:RCR_aorta", + "24125": "P_c:RCR_aorta", + "24126": "P_c:RCR_aorta", + "24127": "P_c:RCR_aorta", + "24128": "P_c:RCR_aorta", + "24129": "P_c:RCR_aorta", + "24130": "P_c:RCR_aorta", + "24131": "P_c:RCR_aorta", + "24132": "P_c:RCR_aorta", + "24133": "P_c:RCR_aorta", + "24134": "P_c:RCR_aorta", + "24135": "P_c:RCR_aorta", + "24136": "P_c:RCR_aorta", + "24137": "P_c:RCR_aorta", + "24138": "P_c:RCR_aorta", + "24139": "P_c:RCR_aorta", + "24140": "P_c:RCR_aorta", + "24141": "P_c:RCR_aorta", + "24142": "P_c:RCR_aorta", + "24143": "P_c:RCR_aorta", + "24144": "P_c:RCR_aorta", + "24145": "P_c:RCR_aorta", + "24146": "P_c:RCR_aorta", + "24147": "P_c:RCR_aorta", + "24148": "P_c:RCR_aorta", + "24149": "P_c:RCR_aorta", + "24150": "P_c:RCR_aorta", + "24151": "P_c:RCR_aorta", + "24152": "P_c:RCR_aorta", + "24153": "P_c:RCR_aorta", + "24154": "P_c:RCR_aorta", + "24155": "P_c:RCR_aorta", + "24156": "P_c:RCR_aorta", + "24157": "P_c:RCR_aorta", + "24158": "P_c:RCR_aorta", + "24159": "P_c:RCR_aorta", + "24160": "P_c:RCR_aorta", + "24161": "P_c:RCR_aorta", + "24162": "P_c:RCR_aorta", + "24163": "P_c:RCR_aorta", + "24164": "P_c:RCR_aorta", + "24165": "P_c:RCR_aorta", + "24166": "P_c:RCR_aorta", + "24167": "P_c:RCR_aorta", + "24168": "P_c:RCR_aorta", + "24169": "P_c:RCR_aorta", + "24170": "P_c:RCR_aorta", + "24171": "P_c:RCR_aorta", + "24172": "P_c:RCR_aorta", + "24173": "P_c:RCR_aorta", + "24174": "P_c:RCR_aorta", + "24175": "P_c:RCR_aorta", + "24176": "P_c:RCR_aorta", + "24177": "P_c:RCR_aorta", + "24178": "P_c:RCR_aorta", + "24179": "P_c:RCR_aorta", + "24180": "P_c:RCR_aorta", + "24181": "P_c:RCR_aorta", + "24182": "P_c:RCR_aorta", + "24183": "P_c:RCR_aorta", + "24184": "P_c:RCR_aorta", + "24185": "P_c:RCR_aorta", + "24186": "P_c:RCR_aorta", + "24187": "P_c:RCR_aorta", + "24188": "P_c:RCR_aorta", + "24189": "P_c:RCR_aorta", + "24190": "P_c:RCR_aorta", + "24191": "P_c:RCR_aorta", + "24192": "P_c:RCR_aorta", + "24193": "P_c:RCR_aorta", + "24194": "P_c:RCR_aorta", + "24195": "P_c:RCR_aorta", + "24196": "P_c:RCR_aorta", + "24197": "P_c:RCR_aorta", + "24198": "P_c:RCR_aorta", + "24199": "P_c:RCR_aorta", + "24200": "P_c:RCR_aorta", + "24201": "P_c:RCR_aorta", + "24202": "P_c:RCR_aorta", + "24203": "P_c:RCR_aorta", + "24204": "P_c:RCR_aorta", + "24205": "P_c:RCR_aorta", + "24206": "P_c:RCR_aorta", + "24207": "P_c:RCR_aorta", + "24208": "P_c:RCR_aorta", + "24209": "P_c:RCR_aorta", + "24210": "P_c:RCR_aorta", + "24211": "P_c:RCR_aorta", + "24212": "P_c:RCR_aorta", + "24213": "P_c:RCR_aorta", + "24214": "P_c:RCR_aorta", + "24215": "P_c:RCR_aorta", + "24216": "P_c:RCR_aorta", + "24217": "P_c:RCR_aorta", + "24218": "P_c:RCR_aorta", + "24219": "P_c:RCR_aorta", + "24220": "P_c:RCR_aorta", + "24221": "P_c:RCR_aorta", + "24222": "P_c:RCR_aorta", + "24223": "P_c:RCR_aorta", + "24224": "P_c:RCR_aorta", + "24225": "P_c:RCR_aorta", + "24226": "P_c:RCR_aorta", + "24227": "P_c:RCR_aorta", + "24228": "P_c:RCR_aorta", + "24229": "P_c:RCR_aorta", + "24230": "P_c:RCR_aorta", + "24231": "P_c:RCR_aorta", + "24232": "P_c:RCR_aorta", + "24233": "P_c:RCR_aorta", + "24234": "P_c:RCR_aorta", + "24235": "P_c:RCR_aorta", + "24236": "P_c:RCR_aorta", + "24237": "P_c:RCR_aorta", + "24238": "P_c:RCR_aorta", + "24239": "P_c:RCR_aorta", + "24240": "P_c:RCR_aorta", + "24241": "P_c:RCR_aorta", + "24242": "P_c:RCR_aorta", + "24243": "P_c:RCR_aorta", + "24244": "P_c:RCR_aorta", + "24245": "P_c:RCR_aorta", + "24246": "P_c:RCR_aorta", + "24247": "P_c:RCR_aorta", + "24248": "P_c:RCR_aorta", + "24249": "P_c:RCR_aorta", + "24250": "P_c:RCR_aorta", + "24251": "P_c:RCR_aorta", + "24252": "P_c:RCR_aorta", + "24253": "P_c:RCR_aorta", + "24254": "P_c:RCR_aorta", + "24255": "P_c:RCR_aorta", + "24256": "P_c:RCR_aorta", + "24257": "P_c:RCR_aorta", + "24258": "P_c:RCR_aorta", + "24259": "P_c:RCR_aorta", + "24260": "P_c:RCR_aorta", + "24261": "P_c:RCR_aorta", + "24262": "P_c:RCR_aorta", + "24263": "P_c:RCR_aorta", + "24264": "P_c:RCR_aorta", + "24265": "P_c:RCR_aorta", + "24266": "P_c:RCR_aorta", + "24267": "P_c:RCR_aorta", + "24268": "P_c:RCR_aorta", + "24269": "P_c:RCR_aorta", + "24270": "P_c:RCR_aorta", + "24271": "P_c:RCR_aorta", + "24272": "P_c:RCR_aorta", + "24273": "P_c:RCR_aorta", + "24274": "P_c:RCR_aorta", + "24275": "P_c:RCR_aorta", + "24276": "P_c:RCR_aorta", + "24277": "P_c:RCR_aorta", + "24278": "P_c:RCR_aorta", + "24279": "P_c:RCR_aorta", + "24280": "P_c:RCR_aorta", + "24281": "P_c:RCR_aorta", + "24282": "P_c:RCR_aorta", + "24283": "P_c:RCR_aorta", + "24284": "P_c:RCR_aorta", + "24285": "P_c:RCR_aorta", + "24286": "P_c:RCR_aorta", + "24287": "P_c:RCR_aorta", + "24288": "P_c:RCR_aorta", + "24289": "P_c:RCR_aorta", + "24290": "P_c:RCR_aorta", + "24291": "P_c:RCR_aorta", + "24292": "P_c:RCR_aorta", + "24293": "P_c:RCR_aorta", + "24294": "P_c:RCR_aorta", + "24295": "P_c:RCR_aorta", + "24296": "P_c:RCR_aorta", + "24297": "P_c:RCR_aorta", + "24298": "P_c:RCR_aorta", + "24299": "P_c:RCR_aorta", + "24300": "P_c:RCR_aorta", + "24301": "P_c:RCR_aorta", + "24302": "P_c:RCR_aorta", + "24303": "P_c:RCR_aorta", + "24304": "P_c:RCR_aorta", + "24305": "P_c:RCR_aorta", + "24306": "P_c:RCR_aorta", + "24307": "P_c:RCR_aorta", + "24308": "P_c:RCR_aorta", + "24309": "P_c:RCR_aorta", + "24310": "P_c:RCR_aorta", + "24311": "P_c:RCR_aorta", + "24312": "P_c:RCR_aorta", + "24313": "P_c:RCR_aorta", + "24314": "P_c:RCR_aorta", + "24315": "P_c:RCR_aorta", + "24316": "P_c:RCR_aorta", + "24317": "P_c:RCR_aorta", + "24318": "P_c:RCR_aorta", + "24319": "P_c:RCR_aorta", + "24320": "P_c:RCR_aorta", + "24321": "P_c:RCR_aorta", + "24322": "P_c:RCR_aorta", + "24323": "P_c:RCR_aorta", + "24324": "P_c:RCR_aorta", + "24325": "P_c:RCR_aorta", + "24326": "P_c:RCR_aorta", + "24327": "P_c:RCR_aorta", + "24328": "P_c:RCR_aorta", + "24329": "P_c:RCR_aorta", + "24330": "P_c:RCR_aorta", + "24331": "P_c:RCR_aorta", + "24332": "P_c:RCR_aorta", + "24333": "P_c:RCR_aorta", + "24334": "P_c:RCR_aorta", + "24335": "P_c:RCR_aorta", + "24336": "P_c:RCR_aorta", + "24337": "P_c:RCR_aorta", + "24338": "P_c:RCR_aorta", + "24339": "P_c:RCR_aorta", + "24340": "P_c:RCR_aorta", + "24341": "P_c:RCR_aorta", + "24342": "P_c:RCR_aorta", + "24343": "P_c:RCR_aorta", + "24344": "P_c:RCR_aorta", + "24345": "P_c:RCR_aorta", + "24346": "P_c:RCR_aorta", + "24347": "P_c:RCR_aorta", + "24348": "P_c:RCR_aorta", + "24349": "P_c:RCR_aorta", + "24350": "P_c:RCR_aorta", + "24351": "P_c:RCR_aorta", + "24352": "P_c:RCR_aorta", + "24353": "P_c:RCR_aorta", + "24354": "P_c:RCR_aorta", + "24355": "P_c:RCR_aorta", + "24356": "P_c:RCR_aorta", + "24357": "P_c:RCR_aorta", + "24358": "P_c:RCR_aorta", + "24359": "P_c:RCR_aorta", + "24360": "P_c:RCR_aorta", + "24361": "P_c:RCR_aorta", + "24362": "P_c:RCR_aorta", + "24363": "P_c:RCR_aorta", + "24364": "P_c:RCR_aorta", + "24365": "P_c:RCR_aorta", + "24366": "P_c:RCR_aorta", + "24367": "P_c:RCR_aorta", + "24368": "P_c:RCR_aorta", + "24369": "P_c:RCR_aorta", + "24370": "P_c:RCR_aorta", + "24371": "P_c:RCR_aorta", + "24372": "P_c:RCR_aorta", + "24373": "P_c:RCR_aorta", + "24374": "P_c:RCR_aorta", + "24375": "P_c:RCR_aorta", + "24376": "P_c:RCR_aorta", + "24377": "P_c:RCR_aorta", + "24378": "P_c:RCR_aorta", + "24379": "P_c:RCR_aorta", + "24380": "P_c:RCR_aorta", + "24381": "P_c:RCR_aorta", + "24382": "P_c:RCR_aorta", + "24383": "P_c:RCR_aorta", + "24384": "P_c:RCR_aorta", + "24385": "P_c:RCR_aorta", + "24386": "P_c:RCR_aorta", + "24387": "P_c:RCR_aorta", + "24388": "P_c:RCR_aorta", + "24389": "P_c:RCR_aorta", + "24390": "P_c:RCR_aorta", + "24391": "P_c:RCR_aorta", + "24392": "P_c:RCR_aorta", + "24393": "P_c:RCR_aorta", + "24394": "P_c:RCR_aorta", + "24395": "P_c:RCR_aorta", + "24396": "P_c:RCR_aorta", + "24397": "P_c:RCR_aorta", + "24398": "P_c:RCR_aorta", + "24399": "P_c:RCR_aorta", + "24400": "P_c:RCR_aorta", + "24401": "P_c:RCR_aorta", + "24402": "P_c:RCR_aorta", + "24403": "P_c:RCR_aorta", + "24404": "P_c:RCR_aorta", + "24405": "P_c:RCR_aorta", + "24406": "P_c:RCR_aorta", + "24407": "P_c:RCR_aorta", + "24408": "P_c:RCR_aorta", + "24409": "P_c:RCR_aorta", + "24410": "P_c:RCR_aorta", + "24411": "P_c:RCR_aorta", + "24412": "P_c:RCR_aorta", + "24413": "P_c:RCR_aorta", + "24414": "P_c:RCR_aorta", + "24415": "P_c:RCR_aorta", + "24416": "P_c:RCR_aorta", + "24417": "P_c:RCR_aorta", + "24418": "P_c:RCR_aorta", + "24419": "P_c:RCR_aorta", + "24420": "P_c:RCR_aorta", + "24421": "P_c:RCR_aorta", + "24422": "P_c:RCR_aorta", + "24423": "P_c:RCR_aorta", + "24424": "P_c:RCR_aorta", + "24425": "P_c:RCR_aorta", + "24426": "P_c:RCR_aorta", + "24427": "P_c:RCR_aorta", + "24428": "P_c:RCR_aorta", + "24429": "P_c:RCR_aorta", + "24430": "P_c:RCR_aorta", + "24431": "P_c:RCR_aorta", + "24432": "P_c:RCR_aorta", + "24433": "P_c:RCR_aorta", + "24434": "P_c:RCR_aorta", + "24435": "P_c:RCR_aorta", + "24436": "P_c:RCR_aorta", + "24437": "P_c:RCR_aorta", + "24438": "P_c:RCR_aorta", + "24439": "P_c:RCR_aorta", + "24440": "P_c:RCR_aorta", + "24441": "P_c:RCR_aorta", + "24442": "P_c:RCR_aorta", + "24443": "P_c:RCR_aorta", + "24444": "P_c:RCR_aorta", + "24445": "P_c:RCR_aorta", + "24446": "P_c:RCR_aorta", + "24447": "P_c:RCR_aorta", + "24448": "P_c:RCR_aorta", + "24449": "P_c:RCR_aorta", + "24450": "P_c:RCR_aorta", + "24451": "P_c:RCR_aorta", + "24452": "P_c:RCR_aorta", + "24453": "P_c:RCR_aorta", + "24454": "P_c:RCR_aorta", + "24455": "P_c:RCR_aorta", + "24456": "P_c:RCR_aorta", + "24457": "P_c:RCR_aorta", + "24458": "P_c:RCR_aorta", + "24459": "P_c:RCR_aorta", + "24460": "P_c:RCR_aorta", + "24461": "P_c:RCR_aorta", + "24462": "P_c:RCR_aorta", + "24463": "P_c:RCR_aorta", + "24464": "P_c:RCR_aorta", + "24465": "P_c:RCR_aorta", + "24466": "P_c:RCR_aorta", + "24467": "P_c:RCR_aorta", + "24468": "P_c:RCR_aorta", + "24469": "P_c:RCR_aorta", + "24470": "P_c:RCR_aorta", + "24471": "P_c:RCR_aorta", + "24472": "P_c:RCR_aorta", + "24473": "P_c:RCR_aorta", + "24474": "P_c:RCR_aorta", + "24475": "P_c:RCR_aorta", + "24476": "P_c:RCR_aorta", + "24477": "P_c:RCR_aorta", + "24478": "P_c:RCR_aorta", + "24479": "P_c:RCR_aorta", + "24480": "P_c:RCR_aorta", + "24481": "P_c:RCR_aorta", + "24482": "P_c:RCR_aorta", + "24483": "P_c:RCR_aorta", + "24484": "P_c:RCR_aorta", + "24485": "P_c:RCR_aorta", + "24486": "P_c:RCR_aorta", + "24487": "P_c:RCR_aorta", + "24488": "P_c:RCR_aorta", + "24489": "P_c:RCR_aorta", + "24490": "P_c:RCR_aorta", + "24491": "P_c:RCR_aorta", + "24492": "P_c:RCR_aorta", + "24493": "P_c:RCR_aorta", + "24494": "P_c:RCR_aorta", + "24495": "P_c:RCR_aorta", + "24496": "P_c:RCR_aorta", + "24497": "P_c:RCR_aorta", + "24498": "P_c:RCR_aorta", + "24499": "P_c:RCR_aorta", + "24500": "P_c:RCR_aorta", + "24501": "P_c:RCR_aorta", + "24502": "P_c:RCR_aorta", + "24503": "P_c:RCR_aorta", + "24504": "P_c:RCR_aorta", + "24505": "P_c:RCR_aorta", + "24506": "P_c:RCR_aorta", + "24507": "P_c:RCR_aorta", + "24508": "P_c:RCR_aorta", + "24509": "P_c:RCR_aorta", + "24510": "P_c:RCR_aorta", + "24511": "P_c:RCR_aorta", + "24512": "P_c:RCR_aorta", + "24513": "P_c:RCR_aorta", + "24514": "P_c:RCR_aorta", + "24515": "P_c:RCR_aorta", + "24516": "P_c:RCR_aorta", + "24517": "P_c:RCR_aorta", + "24518": "P_c:RCR_aorta", + "24519": "P_c:RCR_aorta", + "24520": "P_c:RCR_aorta", + "24521": "P_c:RCR_aorta", + "24522": "P_c:RCR_aorta", + "24523": "P_c:RCR_aorta", + "24524": "P_c:RCR_aorta", + "24525": "P_c:RCR_aorta", + "24526": "P_c:RCR_aorta", + "24527": "P_c:RCR_aorta", + "24528": "P_c:RCR_aorta", + "24529": "P_c:RCR_aorta", + "24530": "P_c:RCR_aorta", + "24531": "P_c:RCR_aorta", + "24532": "P_c:RCR_aorta", + "24533": "P_c:RCR_aorta", + "24534": "P_c:RCR_aorta", + "24535": "P_c:RCR_aorta", + "24536": "P_c:RCR_aorta", + "24537": "P_c:RCR_aorta", + "24538": "P_c:RCR_aorta", + "24539": "P_c:RCR_aorta", + "24540": "P_c:RCR_aorta", + "24541": "P_c:RCR_aorta", + "24542": "P_c:RCR_aorta", + "24543": "P_c:RCR_aorta", + "24544": "P_c:RCR_aorta", + "24545": "P_c:RCR_aorta", + "24546": "P_c:RCR_aorta", + "24547": "P_c:RCR_aorta", + "24548": "P_c:RCR_aorta", + "24549": "P_c:RCR_aorta", + "24550": "P_c:RCR_aorta", + "24551": "P_c:RCR_aorta", + "24552": "P_c:RCR_aorta", + "24553": "P_c:RCR_aorta", + "24554": "P_c:RCR_aorta", + "24555": "P_c:RCR_aorta", + "24556": "P_c:RCR_aorta", + "24557": "P_c:RCR_aorta", + "24558": "P_c:RCR_aorta", + "24559": "P_c:RCR_aorta", + "24560": "P_c:RCR_aorta", + "24561": "P_c:RCR_aorta", + "24562": "P_c:RCR_aorta", + "24563": "P_c:RCR_aorta", + "24564": "P_c:RCR_aorta", + "24565": "P_c:RCR_aorta", + "24566": "P_c:RCR_aorta", + "24567": "P_c:RCR_aorta", + "24568": "P_c:RCR_aorta", + "24569": "P_c:RCR_aorta", + "24570": "P_c:RCR_aorta", + "24571": "P_c:RCR_aorta", + "24572": "P_c:RCR_aorta", + "24573": "P_c:RCR_aorta", + "24574": "P_c:RCR_aorta", + "24575": "P_c:RCR_aorta", + "24576": "P_c:RCR_aorta", + "24577": "P_c:RCR_aorta", + "24578": "P_c:RCR_aorta", + "24579": "P_c:RCR_aorta", + "24580": "P_c:RCR_aorta", + "24581": "P_c:RCR_aorta", + "24582": "P_c:RCR_aorta", + "24583": "P_c:RCR_aorta", + "24584": "P_c:RCR_aorta", + "24585": "P_c:RCR_aorta", + "24586": "P_c:RCR_aorta", + "24587": "P_c:RCR_aorta", + "24588": "P_c:RCR_aorta", + "24589": "P_c:RCR_aorta", + "24590": "P_c:RCR_aorta", + "24591": "P_c:RCR_aorta", + "24592": "P_c:RCR_aorta", + "24593": "P_c:RCR_aorta", + "24594": "P_c:RCR_aorta", + "24595": "P_c:RCR_aorta", + "24596": "P_c:RCR_aorta", + "24597": "P_c:RCR_aorta", + "24598": "P_c:RCR_aorta", + "24599": "P_c:RCR_aorta", + "24600": "P_c:RCR_aorta", + "24601": "P_c:RCR_aorta", + "24602": "P_c:RCR_aorta", + "24603": "P_c:RCR_aorta", + "24604": "P_c:RCR_aorta", + "24605": "P_c:RCR_aorta", + "24606": "P_c:RCR_aorta", + "24607": "P_c:RCR_aorta", + "24608": "P_c:RCR_aorta", + "24609": "P_c:RCR_aorta", + "24610": "P_c:RCR_aorta", + "24611": "P_c:RCR_aorta", + "24612": "P_c:RCR_aorta", + "24613": "P_c:RCR_aorta", + "24614": "P_c:RCR_aorta", + "24615": "P_c:RCR_aorta", + "24616": "P_c:RCR_aorta", + "24617": "P_c:RCR_aorta", + "24618": "P_c:RCR_aorta", + "24619": "P_c:RCR_aorta", + "24620": "P_c:RCR_aorta", + "24621": "P_c:RCR_aorta", + "24622": "P_c:RCR_aorta", + "24623": "P_c:RCR_aorta", + "24624": "P_c:RCR_aorta", + "24625": "P_c:RCR_aorta", + "24626": "P_c:RCR_aorta", + "24627": "P_c:RCR_aorta", + "24628": "P_c:RCR_aorta", + "24629": "P_c:RCR_aorta", + "24630": "P_c:RCR_aorta", + "24631": "P_c:RCR_aorta", + "24632": "P_c:RCR_aorta", + "24633": "P_c:RCR_aorta", + "24634": "P_c:RCR_aorta", + "24635": "P_c:RCR_aorta", + "24636": "P_c:RCR_aorta", + "24637": "P_c:RCR_aorta", + "24638": "P_c:RCR_aorta", + "24639": "P_c:RCR_aorta", + "24640": "P_c:RCR_aorta", + "24641": "P_c:RCR_aorta", + "24642": "P_c:RCR_aorta", + "24643": "P_c:RCR_aorta", + "24644": "P_c:RCR_aorta", + "24645": "P_c:RCR_aorta", + "24646": "P_c:RCR_aorta", + "24647": "P_c:RCR_aorta", + "24648": "P_c:RCR_aorta", + "24649": "P_c:RCR_aorta", + "24650": "P_c:RCR_aorta", + "24651": "P_c:RCR_aorta", + "24652": "P_c:RCR_aorta", + "24653": "P_c:RCR_aorta", + "24654": "P_c:RCR_aorta", + "24655": "P_c:RCR_aorta", + "24656": "P_c:RCR_aorta", + "24657": "P_c:RCR_aorta", + "24658": "P_c:RCR_aorta", + "24659": "P_c:RCR_aorta", + "24660": "P_c:RCR_aorta", + "24661": "P_c:RCR_aorta", + "24662": "P_c:RCR_aorta", + "24663": "P_c:RCR_aorta", + "24664": "P_c:RCR_aorta", + "24665": "P_c:RCR_aorta", + "24666": "P_c:RCR_aorta", + "24667": "P_c:RCR_aorta", + "24668": "P_c:RCR_aorta", + "24669": "P_c:RCR_aorta", + "24670": "P_c:RCR_aorta", + "24671": "P_c:RCR_aorta", + "24672": "P_c:RCR_aorta", + "24673": "P_c:RCR_aorta", + "24674": "P_c:RCR_aorta", + "24675": "P_c:RCR_aorta", + "24676": "P_c:RCR_aorta", + "24677": "P_c:RCR_aorta", + "24678": "P_c:RCR_aorta", + "24679": "P_c:RCR_aorta", + "24680": "P_c:RCR_aorta", + "24681": "P_c:RCR_aorta", + "24682": "P_c:RCR_aorta", + "24683": "P_c:RCR_aorta", + "24684": "P_c:RCR_aorta", + "24685": "P_c:RCR_aorta", + "24686": "P_c:RCR_aorta", + "24687": "P_c:RCR_aorta", + "24688": "P_c:RCR_aorta", + "24689": "P_c:RCR_aorta", + "24690": "P_c:RCR_aorta", + "24691": "P_c:RCR_aorta", + "24692": "P_c:RCR_aorta", + "24693": "P_c:RCR_aorta", + "24694": "P_c:RCR_aorta", + "24695": "P_c:RCR_aorta", + "24696": "P_c:RCR_aorta", + "24697": "P_c:RCR_aorta", + "24698": "P_c:RCR_aorta", + "24699": "P_c:RCR_aorta", + "24700": "P_c:RCR_aorta", + "24701": "P_c:RCR_aorta", + "24702": "P_c:RCR_aorta", + "24703": "P_c:RCR_aorta", + "24704": "P_c:RCR_aorta", + "24705": "P_c:RCR_aorta", + "24706": "P_c:RCR_aorta", + "24707": "P_c:RCR_aorta", + "24708": "P_c:RCR_aorta", + "24709": "P_c:RCR_aorta", + "24710": "P_c:RCR_aorta", + "24711": "P_c:RCR_aorta", + "24712": "P_c:RCR_aorta", + "24713": "P_c:RCR_aorta", + "24714": "P_c:RCR_aorta", + "24715": "P_c:RCR_aorta", + "24716": "P_c:RCR_aorta", + "24717": "P_c:RCR_aorta", + "24718": "P_c:RCR_aorta", + "24719": "P_c:RCR_aorta", + "24720": "P_c:RCR_aorta", + "24721": "P_c:RCR_aorta", + "24722": "P_c:RCR_aorta", + "24723": "P_c:RCR_aorta", + "24724": "P_c:RCR_aorta", + "24725": "P_c:RCR_aorta", + "24726": "P_c:RCR_aorta", + "24727": "P_c:RCR_aorta", + "24728": "P_c:RCR_aorta", + "24729": "P_c:RCR_aorta", + "24730": "P_c:RCR_aorta", + "24731": "P_c:RCR_aorta", + "24732": "P_c:RCR_aorta", + "24733": "P_c:RCR_aorta", + "24734": "P_c:RCR_aorta", + "24735": "P_c:RCR_aorta", + "24736": "P_c:RCR_aorta", + "24737": "P_c:RCR_aorta", + "24738": "P_c:RCR_aorta", + "24739": "P_c:RCR_aorta", + "24740": "P_c:RCR_aorta", + "24741": "P_c:RCR_aorta", + "24742": "P_c:RCR_aorta", + "24743": "P_c:RCR_aorta", + "24744": "P_c:RCR_aorta", + "24745": "P_c:RCR_aorta", + "24746": "P_c:RCR_aorta", + "24747": "P_c:RCR_aorta", + "24748": "P_c:RCR_aorta", + "24749": "P_c:RCR_aorta", + "24750": "P_c:RCR_aorta", + "24751": "P_c:RCR_aorta", + "24752": "P_c:RCR_aorta", + "24753": "P_c:RCR_aorta", + "24754": "P_c:RCR_aorta", + "24755": "P_c:RCR_aorta", + "24756": "P_c:RCR_aorta", + "24757": "P_c:RCR_aorta", + "24758": "P_c:RCR_aorta", + "24759": "P_c:RCR_aorta", + "24760": "P_c:RCR_aorta", + "24761": "P_c:RCR_aorta", + "24762": "P_c:RCR_aorta", + "24763": "P_c:RCR_aorta", + "24764": "P_c:RCR_aorta", + "24765": "P_c:RCR_aorta", + "24766": "P_c:RCR_aorta", + "24767": "P_c:RCR_aorta", + "24768": "P_c:RCR_aorta", + "24769": "P_c:RCR_aorta", + "24770": "P_c:RCR_aorta", + "24771": "P_c:RCR_aorta", + "24772": "P_c:RCR_aorta", + "24773": "P_c:RCR_aorta", + "24774": "P_c:RCR_aorta", + "24775": "P_c:RCR_aorta", + "24776": "P_c:RCR_aorta", + "24777": "P_c:RCR_aorta", + "24778": "P_c:RCR_aorta", + "24779": "P_c:RCR_aorta", + "24780": "P_c:RCR_aorta", + "24781": "P_c:RCR_aorta", + "24782": "P_c:RCR_aorta", + "24783": "P_c:RCR_aorta", + "24784": "P_c:RCR_aorta", + "24785": "P_c:RCR_aorta", + "24786": "P_c:RCR_aorta", + "24787": "P_c:RCR_aorta", + "24788": "P_c:RCR_aorta", + "24789": "P_c:RCR_aorta", + "24790": "P_c:RCR_aorta", + "24791": "P_c:RCR_aorta", + "24792": "P_c:RCR_aorta", + "24793": "P_c:RCR_aorta", + "24794": "P_c:RCR_aorta", + "24795": "P_c:RCR_aorta", + "24796": "P_c:RCR_aorta", + "24797": "P_c:RCR_aorta", + "24798": "P_c:RCR_aorta", + "24799": "P_c:RCR_aorta", + "24800": "P_c:RCR_aorta", + "24801": "P_c:RCR_aorta", + "24802": "P_c:RCR_aorta", + "24803": "P_c:RCR_aorta", + "24804": "P_c:RCR_aorta", + "24805": "P_c:RCR_aorta", + "24806": "P_c:RCR_aorta", + "24807": "P_c:RCR_aorta", + "24808": "P_c:RCR_aorta", + "24809": "P_c:RCR_aorta", + "24810": "P_c:RCR_aorta", + "24811": "P_c:RCR_aorta", + "24812": "P_c:RCR_aorta", + "24813": "P_c:RCR_aorta", + "24814": "P_c:RCR_aorta", + "24815": "P_c:RCR_aorta", + "24816": "P_c:RCR_aorta", + "24817": "P_c:RCR_aorta", + "24818": "P_c:RCR_aorta", + "24819": "P_c:RCR_aorta", + "24820": "P_c:RCR_aorta", + "24821": "P_c:RCR_aorta", + "24822": "P_c:RCR_aorta", + "24823": "P_c:RCR_aorta", + "24824": "P_c:RCR_aorta", + "24825": "P_c:RCR_aorta", + "24826": "P_c:RCR_aorta", + "24827": "P_c:RCR_aorta", + "24828": "P_c:RCR_aorta", + "24829": "P_c:RCR_aorta", + "24830": "P_c:RCR_aorta", + "24831": "P_c:RCR_aorta", + "24832": "P_c:RCR_aorta", + "24833": "P_c:RCR_aorta", + "24834": "P_c:RCR_aorta", + "24835": "P_c:RCR_aorta", + "24836": "P_c:RCR_aorta", + "24837": "P_c:RCR_aorta", + "24838": "P_c:RCR_aorta", + "24839": "P_c:RCR_aorta", + "24840": "P_c:RCR_aorta", + "24841": "P_c:RCR_aorta", + "24842": "P_c:RCR_aorta", + "24843": "P_c:RCR_aorta", + "24844": "P_c:RCR_aorta", + "24845": "P_c:RCR_aorta", + "24846": "P_c:RCR_aorta", + "24847": "P_c:RCR_aorta", + "24848": "P_c:RCR_aorta", + "24849": "P_c:RCR_aorta", + "24850": "P_c:RCR_aorta", + "24851": "P_c:RCR_aorta", + "24852": "P_c:RCR_aorta", + "24853": "P_c:RCR_aorta", + "24854": "P_c:RCR_aorta", + "24855": "P_c:RCR_aorta", + "24856": "P_c:RCR_aorta", + "24857": "P_c:RCR_aorta", + "24858": "P_c:RCR_aorta", + "24859": "P_c:RCR_aorta", + "24860": "P_c:RCR_aorta", + "24861": "P_c:RCR_aorta", + "24862": "P_c:RCR_aorta", + "24863": "P_c:RCR_aorta", + "24864": "P_c:RCR_aorta", + "24865": "P_c:RCR_aorta", + "24866": "P_c:RCR_aorta", + "24867": "P_c:RCR_aorta", + "24868": "P_c:RCR_aorta", + "24869": "P_c:RCR_aorta", + "24870": "P_c:RCR_aorta", + "24871": "P_c:RCR_aorta", + "24872": "P_c:RCR_aorta", + "24873": "P_c:RCR_aorta", + "24874": "P_c:RCR_aorta", + "24875": "P_c:RCR_aorta", + "24876": "P_c:RCR_aorta", + "24877": "P_c:RCR_aorta", + "24878": "P_c:RCR_aorta", + "24879": "P_c:RCR_aorta", + "24880": "P_c:RCR_aorta", + "24881": "P_c:RCR_aorta", + "24882": "P_c:RCR_aorta", + "24883": "P_c:RCR_aorta", + "24884": "P_c:RCR_aorta", + "24885": "P_c:RCR_aorta", + "24886": "P_c:RCR_aorta", + "24887": "P_c:RCR_aorta", + "24888": "P_c:RCR_aorta", + "24889": "P_c:RCR_aorta", + "24890": "P_c:RCR_aorta", + "24891": "P_c:RCR_aorta", + "24892": "P_c:RCR_aorta", + "24893": "P_c:RCR_aorta", + "24894": "P_c:RCR_aorta", + "24895": "P_c:RCR_aorta", + "24896": "P_c:RCR_aorta", + "24897": "P_c:RCR_aorta", + "24898": "P_c:RCR_aorta", + "24899": "P_c:RCR_aorta", + "24900": "P_c:RCR_aorta", + "24901": "P_c:RCR_aorta", + "24902": "P_c:RCR_aorta", + "24903": "P_c:RCR_aorta", + "24904": "P_c:RCR_aorta", + "24905": "P_c:RCR_aorta", + "24906": "P_c:RCR_aorta", + "24907": "P_c:RCR_aorta", + "24908": "P_c:RCR_aorta", + "24909": "P_c:RCR_aorta", + "24910": "P_c:RCR_aorta", + "24911": "P_c:RCR_aorta", + "24912": "P_c:RCR_aorta", + "24913": "P_c:RCR_aorta", + "24914": "P_c:RCR_aorta", + "24915": "P_c:RCR_aorta", + "24916": "P_c:RCR_aorta", + "24917": "P_c:RCR_aorta", + "24918": "P_c:RCR_aorta", + "24919": "P_c:RCR_aorta", + "24920": "P_c:RCR_aorta", + "24921": "P_c:RCR_aorta", + "24922": "P_c:RCR_aorta", + "24923": "P_c:RCR_aorta", + "24924": "P_c:RCR_aorta", + "24925": "P_c:RCR_aorta", + "24926": "P_c:RCR_aorta", + "24927": "P_c:RCR_aorta", + "24928": "P_c:RCR_aorta", + "24929": "P_c:RCR_aorta", + "24930": "P_c:RCR_aorta", + "24931": "P_c:RCR_aorta", + "24932": "P_c:RCR_aorta", + "24933": "P_c:RCR_aorta", + "24934": "P_c:RCR_aorta", + "24935": "P_c:RCR_aorta", + "24936": "P_c:RCR_aorta", + "24937": "P_c:RCR_aorta", + "24938": "P_c:RCR_aorta", + "24939": "P_c:RCR_aorta", + "24940": "P_c:RCR_aorta", + "24941": "P_c:RCR_aorta", + "24942": "P_c:RCR_aorta", + "24943": "P_c:RCR_aorta", + "24944": "P_c:RCR_aorta", + "24945": "P_c:RCR_aorta", + "24946": "P_c:RCR_aorta", + "24947": "P_c:RCR_aorta", + "24948": "P_c:RCR_aorta", + "24949": "P_c:RCR_aorta", + "24950": "P_c:RCR_aorta", + "24951": "P_c:RCR_aorta", + "24952": "P_c:RCR_aorta", + "24953": "P_c:RCR_aorta", + "24954": "P_c:RCR_aorta", + "24955": "P_c:RCR_aorta", + "24956": "P_c:RCR_aorta", + "24957": "P_c:RCR_aorta", + "24958": "P_c:RCR_aorta", + "24959": "P_c:RCR_aorta", + "24960": "P_c:RCR_aorta", + "24961": "P_c:RCR_aorta", + "24962": "P_c:RCR_aorta", + "24963": "P_c:RCR_aorta", + "24964": "P_c:RCR_aorta", + "24965": "P_c:RCR_aorta", + "24966": "P_c:RCR_aorta", + "24967": "P_c:RCR_aorta", + "24968": "P_c:RCR_aorta", + "24969": "P_c:RCR_aorta", + "24970": "P_c:RCR_aorta", + "24971": "P_c:RCR_aorta", + "24972": "P_c:RCR_aorta", + "24973": "P_c:RCR_aorta", + "24974": "P_c:RCR_aorta", + "24975": "P_c:RCR_aorta", + "24976": "P_c:RCR_aorta", + "24977": "P_c:RCR_aorta", + "24978": "P_c:RCR_aorta", + "24979": "P_c:RCR_aorta", + "24980": "P_c:RCR_aorta", + "24981": "P_c:RCR_aorta", + "24982": "P_c:RCR_aorta", + "24983": "P_c:RCR_aorta", + "24984": "P_c:RCR_aorta", + "24985": "P_c:RCR_aorta", + "24986": "P_c:RCR_aorta", + "24987": "P_c:RCR_aorta", + "24988": "P_c:RCR_aorta", + "24989": "P_c:RCR_aorta", + "24990": "P_c:RCR_aorta", + "24991": "P_c:RCR_aorta", + "24992": "P_c:RCR_aorta", + "24993": "P_c:RCR_aorta", + "24994": "P_c:RCR_aorta", + "24995": "P_c:RCR_aorta", + "24996": "P_c:RCR_aorta", + "24997": "P_c:RCR_aorta", + "24998": "P_c:RCR_aorta", + "24999": "P_c:RCR_aorta", + "25000": "P_c:RCR_aorta_br", + "25001": "P_c:RCR_aorta_br", + "25002": "P_c:RCR_aorta_br", + "25003": "P_c:RCR_aorta_br", + "25004": "P_c:RCR_aorta_br", + "25005": "P_c:RCR_aorta_br", + "25006": "P_c:RCR_aorta_br", + "25007": "P_c:RCR_aorta_br", + "25008": "P_c:RCR_aorta_br", + "25009": "P_c:RCR_aorta_br", + "25010": "P_c:RCR_aorta_br", + "25011": "P_c:RCR_aorta_br", + "25012": "P_c:RCR_aorta_br", + "25013": "P_c:RCR_aorta_br", + "25014": "P_c:RCR_aorta_br", + "25015": "P_c:RCR_aorta_br", + "25016": "P_c:RCR_aorta_br", + "25017": "P_c:RCR_aorta_br", + "25018": "P_c:RCR_aorta_br", + "25019": "P_c:RCR_aorta_br", + "25020": "P_c:RCR_aorta_br", + "25021": "P_c:RCR_aorta_br", + "25022": "P_c:RCR_aorta_br", + "25023": "P_c:RCR_aorta_br", + "25024": "P_c:RCR_aorta_br", + "25025": "P_c:RCR_aorta_br", + "25026": "P_c:RCR_aorta_br", + "25027": "P_c:RCR_aorta_br", + "25028": "P_c:RCR_aorta_br", + "25029": "P_c:RCR_aorta_br", + "25030": "P_c:RCR_aorta_br", + "25031": "P_c:RCR_aorta_br", + "25032": "P_c:RCR_aorta_br", + "25033": "P_c:RCR_aorta_br", + "25034": "P_c:RCR_aorta_br", + "25035": "P_c:RCR_aorta_br", + "25036": "P_c:RCR_aorta_br", + "25037": "P_c:RCR_aorta_br", + "25038": "P_c:RCR_aorta_br", + "25039": "P_c:RCR_aorta_br", + "25040": "P_c:RCR_aorta_br", + "25041": "P_c:RCR_aorta_br", + "25042": "P_c:RCR_aorta_br", + "25043": "P_c:RCR_aorta_br", + "25044": "P_c:RCR_aorta_br", + "25045": "P_c:RCR_aorta_br", + "25046": "P_c:RCR_aorta_br", + "25047": "P_c:RCR_aorta_br", + "25048": "P_c:RCR_aorta_br", + "25049": "P_c:RCR_aorta_br", + "25050": "P_c:RCR_aorta_br", + "25051": "P_c:RCR_aorta_br", + "25052": "P_c:RCR_aorta_br", + "25053": "P_c:RCR_aorta_br", + "25054": "P_c:RCR_aorta_br", + "25055": "P_c:RCR_aorta_br", + "25056": "P_c:RCR_aorta_br", + "25057": "P_c:RCR_aorta_br", + "25058": "P_c:RCR_aorta_br", + "25059": "P_c:RCR_aorta_br", + "25060": "P_c:RCR_aorta_br", + "25061": "P_c:RCR_aorta_br", + "25062": "P_c:RCR_aorta_br", + "25063": "P_c:RCR_aorta_br", + "25064": "P_c:RCR_aorta_br", + "25065": "P_c:RCR_aorta_br", + "25066": "P_c:RCR_aorta_br", + "25067": "P_c:RCR_aorta_br", + "25068": "P_c:RCR_aorta_br", + "25069": "P_c:RCR_aorta_br", + "25070": "P_c:RCR_aorta_br", + "25071": "P_c:RCR_aorta_br", + "25072": "P_c:RCR_aorta_br", + "25073": "P_c:RCR_aorta_br", + "25074": "P_c:RCR_aorta_br", + "25075": "P_c:RCR_aorta_br", + "25076": "P_c:RCR_aorta_br", + "25077": "P_c:RCR_aorta_br", + "25078": "P_c:RCR_aorta_br", + "25079": "P_c:RCR_aorta_br", + "25080": "P_c:RCR_aorta_br", + "25081": "P_c:RCR_aorta_br", + "25082": "P_c:RCR_aorta_br", + "25083": "P_c:RCR_aorta_br", + "25084": "P_c:RCR_aorta_br", + "25085": "P_c:RCR_aorta_br", + "25086": "P_c:RCR_aorta_br", + "25087": "P_c:RCR_aorta_br", + "25088": "P_c:RCR_aorta_br", + "25089": "P_c:RCR_aorta_br", + "25090": "P_c:RCR_aorta_br", + "25091": "P_c:RCR_aorta_br", + "25092": "P_c:RCR_aorta_br", + "25093": "P_c:RCR_aorta_br", + "25094": "P_c:RCR_aorta_br", + "25095": "P_c:RCR_aorta_br", + "25096": "P_c:RCR_aorta_br", + "25097": "P_c:RCR_aorta_br", + "25098": "P_c:RCR_aorta_br", + "25099": "P_c:RCR_aorta_br", + "25100": "P_c:RCR_aorta_br", + "25101": "P_c:RCR_aorta_br", + "25102": "P_c:RCR_aorta_br", + "25103": "P_c:RCR_aorta_br", + "25104": "P_c:RCR_aorta_br", + "25105": "P_c:RCR_aorta_br", + "25106": "P_c:RCR_aorta_br", + "25107": "P_c:RCR_aorta_br", + "25108": "P_c:RCR_aorta_br", + "25109": "P_c:RCR_aorta_br", + "25110": "P_c:RCR_aorta_br", + "25111": "P_c:RCR_aorta_br", + "25112": "P_c:RCR_aorta_br", + "25113": "P_c:RCR_aorta_br", + "25114": "P_c:RCR_aorta_br", + "25115": "P_c:RCR_aorta_br", + "25116": "P_c:RCR_aorta_br", + "25117": "P_c:RCR_aorta_br", + "25118": "P_c:RCR_aorta_br", + "25119": "P_c:RCR_aorta_br", + "25120": "P_c:RCR_aorta_br", + "25121": "P_c:RCR_aorta_br", + "25122": "P_c:RCR_aorta_br", + "25123": "P_c:RCR_aorta_br", + "25124": "P_c:RCR_aorta_br", + "25125": "P_c:RCR_aorta_br", + "25126": "P_c:RCR_aorta_br", + "25127": "P_c:RCR_aorta_br", + "25128": "P_c:RCR_aorta_br", + "25129": "P_c:RCR_aorta_br", + "25130": "P_c:RCR_aorta_br", + "25131": "P_c:RCR_aorta_br", + "25132": "P_c:RCR_aorta_br", + "25133": "P_c:RCR_aorta_br", + "25134": "P_c:RCR_aorta_br", + "25135": "P_c:RCR_aorta_br", + "25136": "P_c:RCR_aorta_br", + "25137": "P_c:RCR_aorta_br", + "25138": "P_c:RCR_aorta_br", + "25139": "P_c:RCR_aorta_br", + "25140": "P_c:RCR_aorta_br", + "25141": "P_c:RCR_aorta_br", + "25142": "P_c:RCR_aorta_br", + "25143": "P_c:RCR_aorta_br", + "25144": "P_c:RCR_aorta_br", + "25145": "P_c:RCR_aorta_br", + "25146": "P_c:RCR_aorta_br", + "25147": "P_c:RCR_aorta_br", + "25148": "P_c:RCR_aorta_br", + "25149": "P_c:RCR_aorta_br", + "25150": "P_c:RCR_aorta_br", + "25151": "P_c:RCR_aorta_br", + "25152": "P_c:RCR_aorta_br", + "25153": "P_c:RCR_aorta_br", + "25154": "P_c:RCR_aorta_br", + "25155": "P_c:RCR_aorta_br", + "25156": "P_c:RCR_aorta_br", + "25157": "P_c:RCR_aorta_br", + "25158": "P_c:RCR_aorta_br", + "25159": "P_c:RCR_aorta_br", + "25160": "P_c:RCR_aorta_br", + "25161": "P_c:RCR_aorta_br", + "25162": "P_c:RCR_aorta_br", + "25163": "P_c:RCR_aorta_br", + "25164": "P_c:RCR_aorta_br", + "25165": "P_c:RCR_aorta_br", + "25166": "P_c:RCR_aorta_br", + "25167": "P_c:RCR_aorta_br", + "25168": "P_c:RCR_aorta_br", + "25169": "P_c:RCR_aorta_br", + "25170": "P_c:RCR_aorta_br", + "25171": "P_c:RCR_aorta_br", + "25172": "P_c:RCR_aorta_br", + "25173": "P_c:RCR_aorta_br", + "25174": "P_c:RCR_aorta_br", + "25175": "P_c:RCR_aorta_br", + "25176": "P_c:RCR_aorta_br", + "25177": "P_c:RCR_aorta_br", + "25178": "P_c:RCR_aorta_br", + "25179": "P_c:RCR_aorta_br", + "25180": "P_c:RCR_aorta_br", + "25181": "P_c:RCR_aorta_br", + "25182": "P_c:RCR_aorta_br", + "25183": "P_c:RCR_aorta_br", + "25184": "P_c:RCR_aorta_br", + "25185": "P_c:RCR_aorta_br", + "25186": "P_c:RCR_aorta_br", + "25187": "P_c:RCR_aorta_br", + "25188": "P_c:RCR_aorta_br", + "25189": "P_c:RCR_aorta_br", + "25190": "P_c:RCR_aorta_br", + "25191": "P_c:RCR_aorta_br", + "25192": "P_c:RCR_aorta_br", + "25193": "P_c:RCR_aorta_br", + "25194": "P_c:RCR_aorta_br", + "25195": "P_c:RCR_aorta_br", + "25196": "P_c:RCR_aorta_br", + "25197": "P_c:RCR_aorta_br", + "25198": "P_c:RCR_aorta_br", + "25199": "P_c:RCR_aorta_br", + "25200": "P_c:RCR_aorta_br", + "25201": "P_c:RCR_aorta_br", + "25202": "P_c:RCR_aorta_br", + "25203": "P_c:RCR_aorta_br", + "25204": "P_c:RCR_aorta_br", + "25205": "P_c:RCR_aorta_br", + "25206": "P_c:RCR_aorta_br", + "25207": "P_c:RCR_aorta_br", + "25208": "P_c:RCR_aorta_br", + "25209": "P_c:RCR_aorta_br", + "25210": "P_c:RCR_aorta_br", + "25211": "P_c:RCR_aorta_br", + "25212": "P_c:RCR_aorta_br", + "25213": "P_c:RCR_aorta_br", + "25214": "P_c:RCR_aorta_br", + "25215": "P_c:RCR_aorta_br", + "25216": "P_c:RCR_aorta_br", + "25217": "P_c:RCR_aorta_br", + "25218": "P_c:RCR_aorta_br", + "25219": "P_c:RCR_aorta_br", + "25220": "P_c:RCR_aorta_br", + "25221": "P_c:RCR_aorta_br", + "25222": "P_c:RCR_aorta_br", + "25223": "P_c:RCR_aorta_br", + "25224": "P_c:RCR_aorta_br", + "25225": "P_c:RCR_aorta_br", + "25226": "P_c:RCR_aorta_br", + "25227": "P_c:RCR_aorta_br", + "25228": "P_c:RCR_aorta_br", + "25229": "P_c:RCR_aorta_br", + "25230": "P_c:RCR_aorta_br", + "25231": "P_c:RCR_aorta_br", + "25232": "P_c:RCR_aorta_br", + "25233": "P_c:RCR_aorta_br", + "25234": "P_c:RCR_aorta_br", + "25235": "P_c:RCR_aorta_br", + "25236": "P_c:RCR_aorta_br", + "25237": "P_c:RCR_aorta_br", + "25238": "P_c:RCR_aorta_br", + "25239": "P_c:RCR_aorta_br", + "25240": "P_c:RCR_aorta_br", + "25241": "P_c:RCR_aorta_br", + "25242": "P_c:RCR_aorta_br", + "25243": "P_c:RCR_aorta_br", + "25244": "P_c:RCR_aorta_br", + "25245": "P_c:RCR_aorta_br", + "25246": "P_c:RCR_aorta_br", + "25247": "P_c:RCR_aorta_br", + "25248": "P_c:RCR_aorta_br", + "25249": "P_c:RCR_aorta_br", + "25250": "P_c:RCR_aorta_br", + "25251": "P_c:RCR_aorta_br", + "25252": "P_c:RCR_aorta_br", + "25253": "P_c:RCR_aorta_br", + "25254": "P_c:RCR_aorta_br", + "25255": "P_c:RCR_aorta_br", + "25256": "P_c:RCR_aorta_br", + "25257": "P_c:RCR_aorta_br", + "25258": "P_c:RCR_aorta_br", + "25259": "P_c:RCR_aorta_br", + "25260": "P_c:RCR_aorta_br", + "25261": "P_c:RCR_aorta_br", + "25262": "P_c:RCR_aorta_br", + "25263": "P_c:RCR_aorta_br", + "25264": "P_c:RCR_aorta_br", + "25265": "P_c:RCR_aorta_br", + "25266": "P_c:RCR_aorta_br", + "25267": "P_c:RCR_aorta_br", + "25268": "P_c:RCR_aorta_br", + "25269": "P_c:RCR_aorta_br", + "25270": "P_c:RCR_aorta_br", + "25271": "P_c:RCR_aorta_br", + "25272": "P_c:RCR_aorta_br", + "25273": "P_c:RCR_aorta_br", + "25274": "P_c:RCR_aorta_br", + "25275": "P_c:RCR_aorta_br", + "25276": "P_c:RCR_aorta_br", + "25277": "P_c:RCR_aorta_br", + "25278": "P_c:RCR_aorta_br", + "25279": "P_c:RCR_aorta_br", + "25280": "P_c:RCR_aorta_br", + "25281": "P_c:RCR_aorta_br", + "25282": "P_c:RCR_aorta_br", + "25283": "P_c:RCR_aorta_br", + "25284": "P_c:RCR_aorta_br", + "25285": "P_c:RCR_aorta_br", + "25286": "P_c:RCR_aorta_br", + "25287": "P_c:RCR_aorta_br", + "25288": "P_c:RCR_aorta_br", + "25289": "P_c:RCR_aorta_br", + "25290": "P_c:RCR_aorta_br", + "25291": "P_c:RCR_aorta_br", + "25292": "P_c:RCR_aorta_br", + "25293": "P_c:RCR_aorta_br", + "25294": "P_c:RCR_aorta_br", + "25295": "P_c:RCR_aorta_br", + "25296": "P_c:RCR_aorta_br", + "25297": "P_c:RCR_aorta_br", + "25298": "P_c:RCR_aorta_br", + "25299": "P_c:RCR_aorta_br", + "25300": "P_c:RCR_aorta_br", + "25301": "P_c:RCR_aorta_br", + "25302": "P_c:RCR_aorta_br", + "25303": "P_c:RCR_aorta_br", + "25304": "P_c:RCR_aorta_br", + "25305": "P_c:RCR_aorta_br", + "25306": "P_c:RCR_aorta_br", + "25307": "P_c:RCR_aorta_br", + "25308": "P_c:RCR_aorta_br", + "25309": "P_c:RCR_aorta_br", + "25310": "P_c:RCR_aorta_br", + "25311": "P_c:RCR_aorta_br", + "25312": "P_c:RCR_aorta_br", + "25313": "P_c:RCR_aorta_br", + "25314": "P_c:RCR_aorta_br", + "25315": "P_c:RCR_aorta_br", + "25316": "P_c:RCR_aorta_br", + "25317": "P_c:RCR_aorta_br", + "25318": "P_c:RCR_aorta_br", + "25319": "P_c:RCR_aorta_br", + "25320": "P_c:RCR_aorta_br", + "25321": "P_c:RCR_aorta_br", + "25322": "P_c:RCR_aorta_br", + "25323": "P_c:RCR_aorta_br", + "25324": "P_c:RCR_aorta_br", + "25325": "P_c:RCR_aorta_br", + "25326": "P_c:RCR_aorta_br", + "25327": "P_c:RCR_aorta_br", + "25328": "P_c:RCR_aorta_br", + "25329": "P_c:RCR_aorta_br", + "25330": "P_c:RCR_aorta_br", + "25331": "P_c:RCR_aorta_br", + "25332": "P_c:RCR_aorta_br", + "25333": "P_c:RCR_aorta_br", + "25334": "P_c:RCR_aorta_br", + "25335": "P_c:RCR_aorta_br", + "25336": "P_c:RCR_aorta_br", + "25337": "P_c:RCR_aorta_br", + "25338": "P_c:RCR_aorta_br", + "25339": "P_c:RCR_aorta_br", + "25340": "P_c:RCR_aorta_br", + "25341": "P_c:RCR_aorta_br", + "25342": "P_c:RCR_aorta_br", + "25343": "P_c:RCR_aorta_br", + "25344": "P_c:RCR_aorta_br", + "25345": "P_c:RCR_aorta_br", + "25346": "P_c:RCR_aorta_br", + "25347": "P_c:RCR_aorta_br", + "25348": "P_c:RCR_aorta_br", + "25349": "P_c:RCR_aorta_br", + "25350": "P_c:RCR_aorta_br", + "25351": "P_c:RCR_aorta_br", + "25352": "P_c:RCR_aorta_br", + "25353": "P_c:RCR_aorta_br", + "25354": "P_c:RCR_aorta_br", + "25355": "P_c:RCR_aorta_br", + "25356": "P_c:RCR_aorta_br", + "25357": "P_c:RCR_aorta_br", + "25358": "P_c:RCR_aorta_br", + "25359": "P_c:RCR_aorta_br", + "25360": "P_c:RCR_aorta_br", + "25361": "P_c:RCR_aorta_br", + "25362": "P_c:RCR_aorta_br", + "25363": "P_c:RCR_aorta_br", + "25364": "P_c:RCR_aorta_br", + "25365": "P_c:RCR_aorta_br", + "25366": "P_c:RCR_aorta_br", + "25367": "P_c:RCR_aorta_br", + "25368": "P_c:RCR_aorta_br", + "25369": "P_c:RCR_aorta_br", + "25370": "P_c:RCR_aorta_br", + "25371": "P_c:RCR_aorta_br", + "25372": "P_c:RCR_aorta_br", + "25373": "P_c:RCR_aorta_br", + "25374": "P_c:RCR_aorta_br", + "25375": "P_c:RCR_aorta_br", + "25376": "P_c:RCR_aorta_br", + "25377": "P_c:RCR_aorta_br", + "25378": "P_c:RCR_aorta_br", + "25379": "P_c:RCR_aorta_br", + "25380": "P_c:RCR_aorta_br", + "25381": "P_c:RCR_aorta_br", + "25382": "P_c:RCR_aorta_br", + "25383": "P_c:RCR_aorta_br", + "25384": "P_c:RCR_aorta_br", + "25385": "P_c:RCR_aorta_br", + "25386": "P_c:RCR_aorta_br", + "25387": "P_c:RCR_aorta_br", + "25388": "P_c:RCR_aorta_br", + "25389": "P_c:RCR_aorta_br", + "25390": "P_c:RCR_aorta_br", + "25391": "P_c:RCR_aorta_br", + "25392": "P_c:RCR_aorta_br", + "25393": "P_c:RCR_aorta_br", + "25394": "P_c:RCR_aorta_br", + "25395": "P_c:RCR_aorta_br", + "25396": "P_c:RCR_aorta_br", + "25397": "P_c:RCR_aorta_br", + "25398": "P_c:RCR_aorta_br", + "25399": "P_c:RCR_aorta_br", + "25400": "P_c:RCR_aorta_br", + "25401": "P_c:RCR_aorta_br", + "25402": "P_c:RCR_aorta_br", + "25403": "P_c:RCR_aorta_br", + "25404": "P_c:RCR_aorta_br", + "25405": "P_c:RCR_aorta_br", + "25406": "P_c:RCR_aorta_br", + "25407": "P_c:RCR_aorta_br", + "25408": "P_c:RCR_aorta_br", + "25409": "P_c:RCR_aorta_br", + "25410": "P_c:RCR_aorta_br", + "25411": "P_c:RCR_aorta_br", + "25412": "P_c:RCR_aorta_br", + "25413": "P_c:RCR_aorta_br", + "25414": "P_c:RCR_aorta_br", + "25415": "P_c:RCR_aorta_br", + "25416": "P_c:RCR_aorta_br", + "25417": "P_c:RCR_aorta_br", + "25418": "P_c:RCR_aorta_br", + "25419": "P_c:RCR_aorta_br", + "25420": "P_c:RCR_aorta_br", + "25421": "P_c:RCR_aorta_br", + "25422": "P_c:RCR_aorta_br", + "25423": "P_c:RCR_aorta_br", + "25424": "P_c:RCR_aorta_br", + "25425": "P_c:RCR_aorta_br", + "25426": "P_c:RCR_aorta_br", + "25427": "P_c:RCR_aorta_br", + "25428": "P_c:RCR_aorta_br", + "25429": "P_c:RCR_aorta_br", + "25430": "P_c:RCR_aorta_br", + "25431": "P_c:RCR_aorta_br", + "25432": "P_c:RCR_aorta_br", + "25433": "P_c:RCR_aorta_br", + "25434": "P_c:RCR_aorta_br", + "25435": "P_c:RCR_aorta_br", + "25436": "P_c:RCR_aorta_br", + "25437": "P_c:RCR_aorta_br", + "25438": "P_c:RCR_aorta_br", + "25439": "P_c:RCR_aorta_br", + "25440": "P_c:RCR_aorta_br", + "25441": "P_c:RCR_aorta_br", + "25442": "P_c:RCR_aorta_br", + "25443": "P_c:RCR_aorta_br", + "25444": "P_c:RCR_aorta_br", + "25445": "P_c:RCR_aorta_br", + "25446": "P_c:RCR_aorta_br", + "25447": "P_c:RCR_aorta_br", + "25448": "P_c:RCR_aorta_br", + "25449": "P_c:RCR_aorta_br", + "25450": "P_c:RCR_aorta_br", + "25451": "P_c:RCR_aorta_br", + "25452": "P_c:RCR_aorta_br", + "25453": "P_c:RCR_aorta_br", + "25454": "P_c:RCR_aorta_br", + "25455": "P_c:RCR_aorta_br", + "25456": "P_c:RCR_aorta_br", + "25457": "P_c:RCR_aorta_br", + "25458": "P_c:RCR_aorta_br", + "25459": "P_c:RCR_aorta_br", + "25460": "P_c:RCR_aorta_br", + "25461": "P_c:RCR_aorta_br", + "25462": "P_c:RCR_aorta_br", + "25463": "P_c:RCR_aorta_br", + "25464": "P_c:RCR_aorta_br", + "25465": "P_c:RCR_aorta_br", + "25466": "P_c:RCR_aorta_br", + "25467": "P_c:RCR_aorta_br", + "25468": "P_c:RCR_aorta_br", + "25469": "P_c:RCR_aorta_br", + "25470": "P_c:RCR_aorta_br", + "25471": "P_c:RCR_aorta_br", + "25472": "P_c:RCR_aorta_br", + "25473": "P_c:RCR_aorta_br", + "25474": "P_c:RCR_aorta_br", + "25475": "P_c:RCR_aorta_br", + "25476": "P_c:RCR_aorta_br", + "25477": "P_c:RCR_aorta_br", + "25478": "P_c:RCR_aorta_br", + "25479": "P_c:RCR_aorta_br", + "25480": "P_c:RCR_aorta_br", + "25481": "P_c:RCR_aorta_br", + "25482": "P_c:RCR_aorta_br", + "25483": "P_c:RCR_aorta_br", + "25484": "P_c:RCR_aorta_br", + "25485": "P_c:RCR_aorta_br", + "25486": "P_c:RCR_aorta_br", + "25487": "P_c:RCR_aorta_br", + "25488": "P_c:RCR_aorta_br", + "25489": "P_c:RCR_aorta_br", + "25490": "P_c:RCR_aorta_br", + "25491": "P_c:RCR_aorta_br", + "25492": "P_c:RCR_aorta_br", + "25493": "P_c:RCR_aorta_br", + "25494": "P_c:RCR_aorta_br", + "25495": "P_c:RCR_aorta_br", + "25496": "P_c:RCR_aorta_br", + "25497": "P_c:RCR_aorta_br", + "25498": "P_c:RCR_aorta_br", + "25499": "P_c:RCR_aorta_br", + "25500": "P_c:RCR_aorta_br", + "25501": "P_c:RCR_aorta_br", + "25502": "P_c:RCR_aorta_br", + "25503": "P_c:RCR_aorta_br", + "25504": "P_c:RCR_aorta_br", + "25505": "P_c:RCR_aorta_br", + "25506": "P_c:RCR_aorta_br", + "25507": "P_c:RCR_aorta_br", + "25508": "P_c:RCR_aorta_br", + "25509": "P_c:RCR_aorta_br", + "25510": "P_c:RCR_aorta_br", + "25511": "P_c:RCR_aorta_br", + "25512": "P_c:RCR_aorta_br", + "25513": "P_c:RCR_aorta_br", + "25514": "P_c:RCR_aorta_br", + "25515": "P_c:RCR_aorta_br", + "25516": "P_c:RCR_aorta_br", + "25517": "P_c:RCR_aorta_br", + "25518": "P_c:RCR_aorta_br", + "25519": "P_c:RCR_aorta_br", + "25520": "P_c:RCR_aorta_br", + "25521": "P_c:RCR_aorta_br", + "25522": "P_c:RCR_aorta_br", + "25523": "P_c:RCR_aorta_br", + "25524": "P_c:RCR_aorta_br", + "25525": "P_c:RCR_aorta_br", + "25526": "P_c:RCR_aorta_br", + "25527": "P_c:RCR_aorta_br", + "25528": "P_c:RCR_aorta_br", + "25529": "P_c:RCR_aorta_br", + "25530": "P_c:RCR_aorta_br", + "25531": "P_c:RCR_aorta_br", + "25532": "P_c:RCR_aorta_br", + "25533": "P_c:RCR_aorta_br", + "25534": "P_c:RCR_aorta_br", + "25535": "P_c:RCR_aorta_br", + "25536": "P_c:RCR_aorta_br", + "25537": "P_c:RCR_aorta_br", + "25538": "P_c:RCR_aorta_br", + "25539": "P_c:RCR_aorta_br", + "25540": "P_c:RCR_aorta_br", + "25541": "P_c:RCR_aorta_br", + "25542": "P_c:RCR_aorta_br", + "25543": "P_c:RCR_aorta_br", + "25544": "P_c:RCR_aorta_br", + "25545": "P_c:RCR_aorta_br", + "25546": "P_c:RCR_aorta_br", + "25547": "P_c:RCR_aorta_br", + "25548": "P_c:RCR_aorta_br", + "25549": "P_c:RCR_aorta_br", + "25550": "P_c:RCR_aorta_br", + "25551": "P_c:RCR_aorta_br", + "25552": "P_c:RCR_aorta_br", + "25553": "P_c:RCR_aorta_br", + "25554": "P_c:RCR_aorta_br", + "25555": "P_c:RCR_aorta_br", + "25556": "P_c:RCR_aorta_br", + "25557": "P_c:RCR_aorta_br", + "25558": "P_c:RCR_aorta_br", + "25559": "P_c:RCR_aorta_br", + "25560": "P_c:RCR_aorta_br", + "25561": "P_c:RCR_aorta_br", + "25562": "P_c:RCR_aorta_br", + "25563": "P_c:RCR_aorta_br", + "25564": "P_c:RCR_aorta_br", + "25565": "P_c:RCR_aorta_br", + "25566": "P_c:RCR_aorta_br", + "25567": "P_c:RCR_aorta_br", + "25568": "P_c:RCR_aorta_br", + "25569": "P_c:RCR_aorta_br", + "25570": "P_c:RCR_aorta_br", + "25571": "P_c:RCR_aorta_br", + "25572": "P_c:RCR_aorta_br", + "25573": "P_c:RCR_aorta_br", + "25574": "P_c:RCR_aorta_br", + "25575": "P_c:RCR_aorta_br", + "25576": "P_c:RCR_aorta_br", + "25577": "P_c:RCR_aorta_br", + "25578": "P_c:RCR_aorta_br", + "25579": "P_c:RCR_aorta_br", + "25580": "P_c:RCR_aorta_br", + "25581": "P_c:RCR_aorta_br", + "25582": "P_c:RCR_aorta_br", + "25583": "P_c:RCR_aorta_br", + "25584": "P_c:RCR_aorta_br", + "25585": "P_c:RCR_aorta_br", + "25586": "P_c:RCR_aorta_br", + "25587": "P_c:RCR_aorta_br", + "25588": "P_c:RCR_aorta_br", + "25589": "P_c:RCR_aorta_br", + "25590": "P_c:RCR_aorta_br", + "25591": "P_c:RCR_aorta_br", + "25592": "P_c:RCR_aorta_br", + "25593": "P_c:RCR_aorta_br", + "25594": "P_c:RCR_aorta_br", + "25595": "P_c:RCR_aorta_br", + "25596": "P_c:RCR_aorta_br", + "25597": "P_c:RCR_aorta_br", + "25598": "P_c:RCR_aorta_br", + "25599": "P_c:RCR_aorta_br", + "25600": "P_c:RCR_aorta_br", + "25601": "P_c:RCR_aorta_br", + "25602": "P_c:RCR_aorta_br", + "25603": "P_c:RCR_aorta_br", + "25604": "P_c:RCR_aorta_br", + "25605": "P_c:RCR_aorta_br", + "25606": "P_c:RCR_aorta_br", + "25607": "P_c:RCR_aorta_br", + "25608": "P_c:RCR_aorta_br", + "25609": "P_c:RCR_aorta_br", + "25610": "P_c:RCR_aorta_br", + "25611": "P_c:RCR_aorta_br", + "25612": "P_c:RCR_aorta_br", + "25613": "P_c:RCR_aorta_br", + "25614": "P_c:RCR_aorta_br", + "25615": "P_c:RCR_aorta_br", + "25616": "P_c:RCR_aorta_br", + "25617": "P_c:RCR_aorta_br", + "25618": "P_c:RCR_aorta_br", + "25619": "P_c:RCR_aorta_br", + "25620": "P_c:RCR_aorta_br", + "25621": "P_c:RCR_aorta_br", + "25622": "P_c:RCR_aorta_br", + "25623": "P_c:RCR_aorta_br", + "25624": "P_c:RCR_aorta_br", + "25625": "P_c:RCR_aorta_br", + "25626": "P_c:RCR_aorta_br", + "25627": "P_c:RCR_aorta_br", + "25628": "P_c:RCR_aorta_br", + "25629": "P_c:RCR_aorta_br", + "25630": "P_c:RCR_aorta_br", + "25631": "P_c:RCR_aorta_br", + "25632": "P_c:RCR_aorta_br", + "25633": "P_c:RCR_aorta_br", + "25634": "P_c:RCR_aorta_br", + "25635": "P_c:RCR_aorta_br", + "25636": "P_c:RCR_aorta_br", + "25637": "P_c:RCR_aorta_br", + "25638": "P_c:RCR_aorta_br", + "25639": "P_c:RCR_aorta_br", + "25640": "P_c:RCR_aorta_br", + "25641": "P_c:RCR_aorta_br", + "25642": "P_c:RCR_aorta_br", + "25643": "P_c:RCR_aorta_br", + "25644": "P_c:RCR_aorta_br", + "25645": "P_c:RCR_aorta_br", + "25646": "P_c:RCR_aorta_br", + "25647": "P_c:RCR_aorta_br", + "25648": "P_c:RCR_aorta_br", + "25649": "P_c:RCR_aorta_br", + "25650": "P_c:RCR_aorta_br", + "25651": "P_c:RCR_aorta_br", + "25652": "P_c:RCR_aorta_br", + "25653": "P_c:RCR_aorta_br", + "25654": "P_c:RCR_aorta_br", + "25655": "P_c:RCR_aorta_br", + "25656": "P_c:RCR_aorta_br", + "25657": "P_c:RCR_aorta_br", + "25658": "P_c:RCR_aorta_br", + "25659": "P_c:RCR_aorta_br", + "25660": "P_c:RCR_aorta_br", + "25661": "P_c:RCR_aorta_br", + "25662": "P_c:RCR_aorta_br", + "25663": "P_c:RCR_aorta_br", + "25664": "P_c:RCR_aorta_br", + "25665": "P_c:RCR_aorta_br", + "25666": "P_c:RCR_aorta_br", + "25667": "P_c:RCR_aorta_br", + "25668": "P_c:RCR_aorta_br", + "25669": "P_c:RCR_aorta_br", + "25670": "P_c:RCR_aorta_br", + "25671": "P_c:RCR_aorta_br", + "25672": "P_c:RCR_aorta_br", + "25673": "P_c:RCR_aorta_br", + "25674": "P_c:RCR_aorta_br", + "25675": "P_c:RCR_aorta_br", + "25676": "P_c:RCR_aorta_br", + "25677": "P_c:RCR_aorta_br", + "25678": "P_c:RCR_aorta_br", + "25679": "P_c:RCR_aorta_br", + "25680": "P_c:RCR_aorta_br", + "25681": "P_c:RCR_aorta_br", + "25682": "P_c:RCR_aorta_br", + "25683": "P_c:RCR_aorta_br", + "25684": "P_c:RCR_aorta_br", + "25685": "P_c:RCR_aorta_br", + "25686": "P_c:RCR_aorta_br", + "25687": "P_c:RCR_aorta_br", + "25688": "P_c:RCR_aorta_br", + "25689": "P_c:RCR_aorta_br", + "25690": "P_c:RCR_aorta_br", + "25691": "P_c:RCR_aorta_br", + "25692": "P_c:RCR_aorta_br", + "25693": "P_c:RCR_aorta_br", + "25694": "P_c:RCR_aorta_br", + "25695": "P_c:RCR_aorta_br", + "25696": "P_c:RCR_aorta_br", + "25697": "P_c:RCR_aorta_br", + "25698": "P_c:RCR_aorta_br", + "25699": "P_c:RCR_aorta_br", + "25700": "P_c:RCR_aorta_br", + "25701": "P_c:RCR_aorta_br", + "25702": "P_c:RCR_aorta_br", + "25703": "P_c:RCR_aorta_br", + "25704": "P_c:RCR_aorta_br", + "25705": "P_c:RCR_aorta_br", + "25706": "P_c:RCR_aorta_br", + "25707": "P_c:RCR_aorta_br", + "25708": "P_c:RCR_aorta_br", + "25709": "P_c:RCR_aorta_br", + "25710": "P_c:RCR_aorta_br", + "25711": "P_c:RCR_aorta_br", + "25712": "P_c:RCR_aorta_br", + "25713": "P_c:RCR_aorta_br", + "25714": "P_c:RCR_aorta_br", + "25715": "P_c:RCR_aorta_br", + "25716": "P_c:RCR_aorta_br", + "25717": "P_c:RCR_aorta_br", + "25718": "P_c:RCR_aorta_br", + "25719": "P_c:RCR_aorta_br", + "25720": "P_c:RCR_aorta_br", + "25721": "P_c:RCR_aorta_br", + "25722": "P_c:RCR_aorta_br", + "25723": "P_c:RCR_aorta_br", + "25724": "P_c:RCR_aorta_br", + "25725": "P_c:RCR_aorta_br", + "25726": "P_c:RCR_aorta_br", + "25727": "P_c:RCR_aorta_br", + "25728": "P_c:RCR_aorta_br", + "25729": "P_c:RCR_aorta_br", + "25730": "P_c:RCR_aorta_br", + "25731": "P_c:RCR_aorta_br", + "25732": "P_c:RCR_aorta_br", + "25733": "P_c:RCR_aorta_br", + "25734": "P_c:RCR_aorta_br", + "25735": "P_c:RCR_aorta_br", + "25736": "P_c:RCR_aorta_br", + "25737": "P_c:RCR_aorta_br", + "25738": "P_c:RCR_aorta_br", + "25739": "P_c:RCR_aorta_br", + "25740": "P_c:RCR_aorta_br", + "25741": "P_c:RCR_aorta_br", + "25742": "P_c:RCR_aorta_br", + "25743": "P_c:RCR_aorta_br", + "25744": "P_c:RCR_aorta_br", + "25745": "P_c:RCR_aorta_br", + "25746": "P_c:RCR_aorta_br", + "25747": "P_c:RCR_aorta_br", + "25748": "P_c:RCR_aorta_br", + "25749": "P_c:RCR_aorta_br", + "25750": "P_c:RCR_aorta_br", + "25751": "P_c:RCR_aorta_br", + "25752": "P_c:RCR_aorta_br", + "25753": "P_c:RCR_aorta_br", + "25754": "P_c:RCR_aorta_br", + "25755": "P_c:RCR_aorta_br", + "25756": "P_c:RCR_aorta_br", + "25757": "P_c:RCR_aorta_br", + "25758": "P_c:RCR_aorta_br", + "25759": "P_c:RCR_aorta_br", + "25760": "P_c:RCR_aorta_br", + "25761": "P_c:RCR_aorta_br", + "25762": "P_c:RCR_aorta_br", + "25763": "P_c:RCR_aorta_br", + "25764": "P_c:RCR_aorta_br", + "25765": "P_c:RCR_aorta_br", + "25766": "P_c:RCR_aorta_br", + "25767": "P_c:RCR_aorta_br", + "25768": "P_c:RCR_aorta_br", + "25769": "P_c:RCR_aorta_br", + "25770": "P_c:RCR_aorta_br", + "25771": "P_c:RCR_aorta_br", + "25772": "P_c:RCR_aorta_br", + "25773": "P_c:RCR_aorta_br", + "25774": "P_c:RCR_aorta_br", + "25775": "P_c:RCR_aorta_br", + "25776": "P_c:RCR_aorta_br", + "25777": "P_c:RCR_aorta_br", + "25778": "P_c:RCR_aorta_br", + "25779": "P_c:RCR_aorta_br", + "25780": "P_c:RCR_aorta_br", + "25781": "P_c:RCR_aorta_br", + "25782": "P_c:RCR_aorta_br", + "25783": "P_c:RCR_aorta_br", + "25784": "P_c:RCR_aorta_br", + "25785": "P_c:RCR_aorta_br", + "25786": "P_c:RCR_aorta_br", + "25787": "P_c:RCR_aorta_br", + "25788": "P_c:RCR_aorta_br", + "25789": "P_c:RCR_aorta_br", + "25790": "P_c:RCR_aorta_br", + "25791": "P_c:RCR_aorta_br", + "25792": "P_c:RCR_aorta_br", + "25793": "P_c:RCR_aorta_br", + "25794": "P_c:RCR_aorta_br", + "25795": "P_c:RCR_aorta_br", + "25796": "P_c:RCR_aorta_br", + "25797": "P_c:RCR_aorta_br", + "25798": "P_c:RCR_aorta_br", + "25799": "P_c:RCR_aorta_br", + "25800": "P_c:RCR_aorta_br", + "25801": "P_c:RCR_aorta_br", + "25802": "P_c:RCR_aorta_br", + "25803": "P_c:RCR_aorta_br", + "25804": "P_c:RCR_aorta_br", + "25805": "P_c:RCR_aorta_br", + "25806": "P_c:RCR_aorta_br", + "25807": "P_c:RCR_aorta_br", + "25808": "P_c:RCR_aorta_br", + "25809": "P_c:RCR_aorta_br", + "25810": "P_c:RCR_aorta_br", + "25811": "P_c:RCR_aorta_br", + "25812": "P_c:RCR_aorta_br", + "25813": "P_c:RCR_aorta_br", + "25814": "P_c:RCR_aorta_br", + "25815": "P_c:RCR_aorta_br", + "25816": "P_c:RCR_aorta_br", + "25817": "P_c:RCR_aorta_br", + "25818": "P_c:RCR_aorta_br", + "25819": "P_c:RCR_aorta_br", + "25820": "P_c:RCR_aorta_br", + "25821": "P_c:RCR_aorta_br", + "25822": "P_c:RCR_aorta_br", + "25823": "P_c:RCR_aorta_br", + "25824": "P_c:RCR_aorta_br", + "25825": "P_c:RCR_aorta_br", + "25826": "P_c:RCR_aorta_br", + "25827": "P_c:RCR_aorta_br", + "25828": "P_c:RCR_aorta_br", + "25829": "P_c:RCR_aorta_br", + "25830": "P_c:RCR_aorta_br", + "25831": "P_c:RCR_aorta_br", + "25832": "P_c:RCR_aorta_br", + "25833": "P_c:RCR_aorta_br", + "25834": "P_c:RCR_aorta_br", + "25835": "P_c:RCR_aorta_br", + "25836": "P_c:RCR_aorta_br", + "25837": "P_c:RCR_aorta_br", + "25838": "P_c:RCR_aorta_br", + "25839": "P_c:RCR_aorta_br", + "25840": "P_c:RCR_aorta_br", + "25841": "P_c:RCR_aorta_br", + "25842": "P_c:RCR_aorta_br", + "25843": "P_c:RCR_aorta_br", + "25844": "P_c:RCR_aorta_br", + "25845": "P_c:RCR_aorta_br", + "25846": "P_c:RCR_aorta_br", + "25847": "P_c:RCR_aorta_br", + "25848": "P_c:RCR_aorta_br", + "25849": "P_c:RCR_aorta_br", + "25850": "P_c:RCR_aorta_br", + "25851": "P_c:RCR_aorta_br", + "25852": "P_c:RCR_aorta_br", + "25853": "P_c:RCR_aorta_br", + "25854": "P_c:RCR_aorta_br", + "25855": "P_c:RCR_aorta_br", + "25856": "P_c:RCR_aorta_br", + "25857": "P_c:RCR_aorta_br", + "25858": "P_c:RCR_aorta_br", + "25859": "P_c:RCR_aorta_br", + "25860": "P_c:RCR_aorta_br", + "25861": "P_c:RCR_aorta_br", + "25862": "P_c:RCR_aorta_br", + "25863": "P_c:RCR_aorta_br", + "25864": "P_c:RCR_aorta_br", + "25865": "P_c:RCR_aorta_br", + "25866": "P_c:RCR_aorta_br", + "25867": "P_c:RCR_aorta_br", + "25868": "P_c:RCR_aorta_br", + "25869": "P_c:RCR_aorta_br", + "25870": "P_c:RCR_aorta_br", + "25871": "P_c:RCR_aorta_br", + "25872": "P_c:RCR_aorta_br", + "25873": "P_c:RCR_aorta_br", + "25874": "P_c:RCR_aorta_br", + "25875": "P_c:RCR_aorta_br", + "25876": "P_c:RCR_aorta_br", + "25877": "P_c:RCR_aorta_br", + "25878": "P_c:RCR_aorta_br", + "25879": "P_c:RCR_aorta_br", + "25880": "P_c:RCR_aorta_br", + "25881": "P_c:RCR_aorta_br", + "25882": "P_c:RCR_aorta_br", + "25883": "P_c:RCR_aorta_br", + "25884": "P_c:RCR_aorta_br", + "25885": "P_c:RCR_aorta_br", + "25886": "P_c:RCR_aorta_br", + "25887": "P_c:RCR_aorta_br", + "25888": "P_c:RCR_aorta_br", + "25889": "P_c:RCR_aorta_br", + "25890": "P_c:RCR_aorta_br", + "25891": "P_c:RCR_aorta_br", + "25892": "P_c:RCR_aorta_br", + "25893": "P_c:RCR_aorta_br", + "25894": "P_c:RCR_aorta_br", + "25895": "P_c:RCR_aorta_br", + "25896": "P_c:RCR_aorta_br", + "25897": "P_c:RCR_aorta_br", + "25898": "P_c:RCR_aorta_br", + "25899": "P_c:RCR_aorta_br", + "25900": "P_c:RCR_aorta_br", + "25901": "P_c:RCR_aorta_br", + "25902": "P_c:RCR_aorta_br", + "25903": "P_c:RCR_aorta_br", + "25904": "P_c:RCR_aorta_br", + "25905": "P_c:RCR_aorta_br", + "25906": "P_c:RCR_aorta_br", + "25907": "P_c:RCR_aorta_br", + "25908": "P_c:RCR_aorta_br", + "25909": "P_c:RCR_aorta_br", + "25910": "P_c:RCR_aorta_br", + "25911": "P_c:RCR_aorta_br", + "25912": "P_c:RCR_aorta_br", + "25913": "P_c:RCR_aorta_br", + "25914": "P_c:RCR_aorta_br", + "25915": "P_c:RCR_aorta_br", + "25916": "P_c:RCR_aorta_br", + "25917": "P_c:RCR_aorta_br", + "25918": "P_c:RCR_aorta_br", + "25919": "P_c:RCR_aorta_br", + "25920": "P_c:RCR_aorta_br", + "25921": "P_c:RCR_aorta_br", + "25922": "P_c:RCR_aorta_br", + "25923": "P_c:RCR_aorta_br", + "25924": "P_c:RCR_aorta_br", + "25925": "P_c:RCR_aorta_br", + "25926": "P_c:RCR_aorta_br", + "25927": "P_c:RCR_aorta_br", + "25928": "P_c:RCR_aorta_br", + "25929": "P_c:RCR_aorta_br", + "25930": "P_c:RCR_aorta_br", + "25931": "P_c:RCR_aorta_br", + "25932": "P_c:RCR_aorta_br", + "25933": "P_c:RCR_aorta_br", + "25934": "P_c:RCR_aorta_br", + "25935": "P_c:RCR_aorta_br", + "25936": "P_c:RCR_aorta_br", + "25937": "P_c:RCR_aorta_br", + "25938": "P_c:RCR_aorta_br", + "25939": "P_c:RCR_aorta_br", + "25940": "P_c:RCR_aorta_br", + "25941": "P_c:RCR_aorta_br", + "25942": "P_c:RCR_aorta_br", + "25943": "P_c:RCR_aorta_br", + "25944": "P_c:RCR_aorta_br", + "25945": "P_c:RCR_aorta_br", + "25946": "P_c:RCR_aorta_br", + "25947": "P_c:RCR_aorta_br", + "25948": "P_c:RCR_aorta_br", + "25949": "P_c:RCR_aorta_br", + "25950": "P_c:RCR_aorta_br", + "25951": "P_c:RCR_aorta_br", + "25952": "P_c:RCR_aorta_br", + "25953": "P_c:RCR_aorta_br", + "25954": "P_c:RCR_aorta_br", + "25955": "P_c:RCR_aorta_br", + "25956": "P_c:RCR_aorta_br", + "25957": "P_c:RCR_aorta_br", + "25958": "P_c:RCR_aorta_br", + "25959": "P_c:RCR_aorta_br", + "25960": "P_c:RCR_aorta_br", + "25961": "P_c:RCR_aorta_br", + "25962": "P_c:RCR_aorta_br", + "25963": "P_c:RCR_aorta_br", + "25964": "P_c:RCR_aorta_br", + "25965": "P_c:RCR_aorta_br", + "25966": "P_c:RCR_aorta_br", + "25967": "P_c:RCR_aorta_br", + "25968": "P_c:RCR_aorta_br", + "25969": "P_c:RCR_aorta_br", + "25970": "P_c:RCR_aorta_br", + "25971": "P_c:RCR_aorta_br", + "25972": "P_c:RCR_aorta_br", + "25973": "P_c:RCR_aorta_br", + "25974": "P_c:RCR_aorta_br", + "25975": "P_c:RCR_aorta_br", + "25976": "P_c:RCR_aorta_br", + "25977": "P_c:RCR_aorta_br", + "25978": "P_c:RCR_aorta_br", + "25979": "P_c:RCR_aorta_br", + "25980": "P_c:RCR_aorta_br", + "25981": "P_c:RCR_aorta_br", + "25982": "P_c:RCR_aorta_br", + "25983": "P_c:RCR_aorta_br", + "25984": "P_c:RCR_aorta_br", + "25985": "P_c:RCR_aorta_br", + "25986": "P_c:RCR_aorta_br", + "25987": "P_c:RCR_aorta_br", + "25988": "P_c:RCR_aorta_br", + "25989": "P_c:RCR_aorta_br", + "25990": "P_c:RCR_aorta_br", + "25991": "P_c:RCR_aorta_br", + "25992": "P_c:RCR_aorta_br", + "25993": "P_c:RCR_aorta_br", + "25994": "P_c:RCR_aorta_br", + "25995": "P_c:RCR_aorta_br", + "25996": "P_c:RCR_aorta_br", + "25997": "P_c:RCR_aorta_br", + "25998": "P_c:RCR_aorta_br", + "25999": "P_c:RCR_aorta_br", + "26000": "V_RA:CLH", + "26001": "V_RA:CLH", + "26002": "V_RA:CLH", + "26003": "V_RA:CLH", + "26004": "V_RA:CLH", + "26005": "V_RA:CLH", + "26006": "V_RA:CLH", + "26007": "V_RA:CLH", + "26008": "V_RA:CLH", + "26009": "V_RA:CLH", + "26010": "V_RA:CLH", + "26011": "V_RA:CLH", + "26012": "V_RA:CLH", + "26013": "V_RA:CLH", + "26014": "V_RA:CLH", + "26015": "V_RA:CLH", + "26016": "V_RA:CLH", + "26017": "V_RA:CLH", + "26018": "V_RA:CLH", + "26019": "V_RA:CLH", + "26020": "V_RA:CLH", + "26021": "V_RA:CLH", + "26022": "V_RA:CLH", + "26023": "V_RA:CLH", + "26024": "V_RA:CLH", + "26025": "V_RA:CLH", + "26026": "V_RA:CLH", + "26027": "V_RA:CLH", + "26028": "V_RA:CLH", + "26029": "V_RA:CLH", + "26030": "V_RA:CLH", + "26031": "V_RA:CLH", + "26032": "V_RA:CLH", + "26033": "V_RA:CLH", + "26034": "V_RA:CLH", + "26035": "V_RA:CLH", + "26036": "V_RA:CLH", + "26037": "V_RA:CLH", + "26038": "V_RA:CLH", + "26039": "V_RA:CLH", + "26040": "V_RA:CLH", + "26041": "V_RA:CLH", + "26042": "V_RA:CLH", + "26043": "V_RA:CLH", + "26044": "V_RA:CLH", + "26045": "V_RA:CLH", + "26046": "V_RA:CLH", + "26047": "V_RA:CLH", + "26048": "V_RA:CLH", + "26049": "V_RA:CLH", + "26050": "V_RA:CLH", + "26051": "V_RA:CLH", + "26052": "V_RA:CLH", + "26053": "V_RA:CLH", + "26054": "V_RA:CLH", + "26055": "V_RA:CLH", + "26056": "V_RA:CLH", + "26057": "V_RA:CLH", + "26058": "V_RA:CLH", + "26059": "V_RA:CLH", + "26060": "V_RA:CLH", + "26061": "V_RA:CLH", + "26062": "V_RA:CLH", + "26063": "V_RA:CLH", + "26064": "V_RA:CLH", + "26065": "V_RA:CLH", + "26066": "V_RA:CLH", + "26067": "V_RA:CLH", + "26068": "V_RA:CLH", + "26069": "V_RA:CLH", + "26070": "V_RA:CLH", + "26071": "V_RA:CLH", + "26072": "V_RA:CLH", + "26073": "V_RA:CLH", + "26074": "V_RA:CLH", + "26075": "V_RA:CLH", + "26076": "V_RA:CLH", + "26077": "V_RA:CLH", + "26078": "V_RA:CLH", + "26079": "V_RA:CLH", + "26080": "V_RA:CLH", + "26081": "V_RA:CLH", + "26082": "V_RA:CLH", + "26083": "V_RA:CLH", + "26084": "V_RA:CLH", + "26085": "V_RA:CLH", + "26086": "V_RA:CLH", + "26087": "V_RA:CLH", + "26088": "V_RA:CLH", + "26089": "V_RA:CLH", + "26090": "V_RA:CLH", + "26091": "V_RA:CLH", + "26092": "V_RA:CLH", + "26093": "V_RA:CLH", + "26094": "V_RA:CLH", + "26095": "V_RA:CLH", + "26096": "V_RA:CLH", + "26097": "V_RA:CLH", + "26098": "V_RA:CLH", + "26099": "V_RA:CLH", + "26100": "V_RA:CLH", + "26101": "V_RA:CLH", + "26102": "V_RA:CLH", + "26103": "V_RA:CLH", + "26104": "V_RA:CLH", + "26105": "V_RA:CLH", + "26106": "V_RA:CLH", + "26107": "V_RA:CLH", + "26108": "V_RA:CLH", + "26109": "V_RA:CLH", + "26110": "V_RA:CLH", + "26111": "V_RA:CLH", + "26112": "V_RA:CLH", + "26113": "V_RA:CLH", + "26114": "V_RA:CLH", + "26115": "V_RA:CLH", + "26116": "V_RA:CLH", + "26117": "V_RA:CLH", + "26118": "V_RA:CLH", + "26119": "V_RA:CLH", + "26120": "V_RA:CLH", + "26121": "V_RA:CLH", + "26122": "V_RA:CLH", + "26123": "V_RA:CLH", + "26124": "V_RA:CLH", + "26125": "V_RA:CLH", + "26126": "V_RA:CLH", + "26127": "V_RA:CLH", + "26128": "V_RA:CLH", + "26129": "V_RA:CLH", + "26130": "V_RA:CLH", + "26131": "V_RA:CLH", + "26132": "V_RA:CLH", + "26133": "V_RA:CLH", + "26134": "V_RA:CLH", + "26135": "V_RA:CLH", + "26136": "V_RA:CLH", + "26137": "V_RA:CLH", + "26138": "V_RA:CLH", + "26139": "V_RA:CLH", + "26140": "V_RA:CLH", + "26141": "V_RA:CLH", + "26142": "V_RA:CLH", + "26143": "V_RA:CLH", + "26144": "V_RA:CLH", + "26145": "V_RA:CLH", + "26146": "V_RA:CLH", + "26147": "V_RA:CLH", + "26148": "V_RA:CLH", + "26149": "V_RA:CLH", + "26150": "V_RA:CLH", + "26151": "V_RA:CLH", + "26152": "V_RA:CLH", + "26153": "V_RA:CLH", + "26154": "V_RA:CLH", + "26155": "V_RA:CLH", + "26156": "V_RA:CLH", + "26157": "V_RA:CLH", + "26158": "V_RA:CLH", + "26159": "V_RA:CLH", + "26160": "V_RA:CLH", + "26161": "V_RA:CLH", + "26162": "V_RA:CLH", + "26163": "V_RA:CLH", + "26164": "V_RA:CLH", + "26165": "V_RA:CLH", + "26166": "V_RA:CLH", + "26167": "V_RA:CLH", + "26168": "V_RA:CLH", + "26169": "V_RA:CLH", + "26170": "V_RA:CLH", + "26171": "V_RA:CLH", + "26172": "V_RA:CLH", + "26173": "V_RA:CLH", + "26174": "V_RA:CLH", + "26175": "V_RA:CLH", + "26176": "V_RA:CLH", + "26177": "V_RA:CLH", + "26178": "V_RA:CLH", + "26179": "V_RA:CLH", + "26180": "V_RA:CLH", + "26181": "V_RA:CLH", + "26182": "V_RA:CLH", + "26183": "V_RA:CLH", + "26184": "V_RA:CLH", + "26185": "V_RA:CLH", + "26186": "V_RA:CLH", + "26187": "V_RA:CLH", + "26188": "V_RA:CLH", + "26189": "V_RA:CLH", + "26190": "V_RA:CLH", + "26191": "V_RA:CLH", + "26192": "V_RA:CLH", + "26193": "V_RA:CLH", + "26194": "V_RA:CLH", + "26195": "V_RA:CLH", + "26196": "V_RA:CLH", + "26197": "V_RA:CLH", + "26198": "V_RA:CLH", + "26199": "V_RA:CLH", + "26200": "V_RA:CLH", + "26201": "V_RA:CLH", + "26202": "V_RA:CLH", + "26203": "V_RA:CLH", + "26204": "V_RA:CLH", + "26205": "V_RA:CLH", + "26206": "V_RA:CLH", + "26207": "V_RA:CLH", + "26208": "V_RA:CLH", + "26209": "V_RA:CLH", + "26210": "V_RA:CLH", + "26211": "V_RA:CLH", + "26212": "V_RA:CLH", + "26213": "V_RA:CLH", + "26214": "V_RA:CLH", + "26215": "V_RA:CLH", + "26216": "V_RA:CLH", + "26217": "V_RA:CLH", + "26218": "V_RA:CLH", + "26219": "V_RA:CLH", + "26220": "V_RA:CLH", + "26221": "V_RA:CLH", + "26222": "V_RA:CLH", + "26223": "V_RA:CLH", + "26224": "V_RA:CLH", + "26225": "V_RA:CLH", + "26226": "V_RA:CLH", + "26227": "V_RA:CLH", + "26228": "V_RA:CLH", + "26229": "V_RA:CLH", + "26230": "V_RA:CLH", + "26231": "V_RA:CLH", + "26232": "V_RA:CLH", + "26233": "V_RA:CLH", + "26234": "V_RA:CLH", + "26235": "V_RA:CLH", + "26236": "V_RA:CLH", + "26237": "V_RA:CLH", + "26238": "V_RA:CLH", + "26239": "V_RA:CLH", + "26240": "V_RA:CLH", + "26241": "V_RA:CLH", + "26242": "V_RA:CLH", + "26243": "V_RA:CLH", + "26244": "V_RA:CLH", + "26245": "V_RA:CLH", + "26246": "V_RA:CLH", + "26247": "V_RA:CLH", + "26248": "V_RA:CLH", + "26249": "V_RA:CLH", + "26250": "V_RA:CLH", + "26251": "V_RA:CLH", + "26252": "V_RA:CLH", + "26253": "V_RA:CLH", + "26254": "V_RA:CLH", + "26255": "V_RA:CLH", + "26256": "V_RA:CLH", + "26257": "V_RA:CLH", + "26258": "V_RA:CLH", + "26259": "V_RA:CLH", + "26260": "V_RA:CLH", + "26261": "V_RA:CLH", + "26262": "V_RA:CLH", + "26263": "V_RA:CLH", + "26264": "V_RA:CLH", + "26265": "V_RA:CLH", + "26266": "V_RA:CLH", + "26267": "V_RA:CLH", + "26268": "V_RA:CLH", + "26269": "V_RA:CLH", + "26270": "V_RA:CLH", + "26271": "V_RA:CLH", + "26272": "V_RA:CLH", + "26273": "V_RA:CLH", + "26274": "V_RA:CLH", + "26275": "V_RA:CLH", + "26276": "V_RA:CLH", + "26277": "V_RA:CLH", + "26278": "V_RA:CLH", + "26279": "V_RA:CLH", + "26280": "V_RA:CLH", + "26281": "V_RA:CLH", + "26282": "V_RA:CLH", + "26283": "V_RA:CLH", + "26284": "V_RA:CLH", + "26285": "V_RA:CLH", + "26286": "V_RA:CLH", + "26287": "V_RA:CLH", + "26288": "V_RA:CLH", + "26289": "V_RA:CLH", + "26290": "V_RA:CLH", + "26291": "V_RA:CLH", + "26292": "V_RA:CLH", + "26293": "V_RA:CLH", + "26294": "V_RA:CLH", + "26295": "V_RA:CLH", + "26296": "V_RA:CLH", + "26297": "V_RA:CLH", + "26298": "V_RA:CLH", + "26299": "V_RA:CLH", + "26300": "V_RA:CLH", + "26301": "V_RA:CLH", + "26302": "V_RA:CLH", + "26303": "V_RA:CLH", + "26304": "V_RA:CLH", + "26305": "V_RA:CLH", + "26306": "V_RA:CLH", + "26307": "V_RA:CLH", + "26308": "V_RA:CLH", + "26309": "V_RA:CLH", + "26310": "V_RA:CLH", + "26311": "V_RA:CLH", + "26312": "V_RA:CLH", + "26313": "V_RA:CLH", + "26314": "V_RA:CLH", + "26315": "V_RA:CLH", + "26316": "V_RA:CLH", + "26317": "V_RA:CLH", + "26318": "V_RA:CLH", + "26319": "V_RA:CLH", + "26320": "V_RA:CLH", + "26321": "V_RA:CLH", + "26322": "V_RA:CLH", + "26323": "V_RA:CLH", + "26324": "V_RA:CLH", + "26325": "V_RA:CLH", + "26326": "V_RA:CLH", + "26327": "V_RA:CLH", + "26328": "V_RA:CLH", + "26329": "V_RA:CLH", + "26330": "V_RA:CLH", + "26331": "V_RA:CLH", + "26332": "V_RA:CLH", + "26333": "V_RA:CLH", + "26334": "V_RA:CLH", + "26335": "V_RA:CLH", + "26336": "V_RA:CLH", + "26337": "V_RA:CLH", + "26338": "V_RA:CLH", + "26339": "V_RA:CLH", + "26340": "V_RA:CLH", + "26341": "V_RA:CLH", + "26342": "V_RA:CLH", + "26343": "V_RA:CLH", + "26344": "V_RA:CLH", + "26345": "V_RA:CLH", + "26346": "V_RA:CLH", + "26347": "V_RA:CLH", + "26348": "V_RA:CLH", + "26349": "V_RA:CLH", + "26350": "V_RA:CLH", + "26351": "V_RA:CLH", + "26352": "V_RA:CLH", + "26353": "V_RA:CLH", + "26354": "V_RA:CLH", + "26355": "V_RA:CLH", + "26356": "V_RA:CLH", + "26357": "V_RA:CLH", + "26358": "V_RA:CLH", + "26359": "V_RA:CLH", + "26360": "V_RA:CLH", + "26361": "V_RA:CLH", + "26362": "V_RA:CLH", + "26363": "V_RA:CLH", + "26364": "V_RA:CLH", + "26365": "V_RA:CLH", + "26366": "V_RA:CLH", + "26367": "V_RA:CLH", + "26368": "V_RA:CLH", + "26369": "V_RA:CLH", + "26370": "V_RA:CLH", + "26371": "V_RA:CLH", + "26372": "V_RA:CLH", + "26373": "V_RA:CLH", + "26374": "V_RA:CLH", + "26375": "V_RA:CLH", + "26376": "V_RA:CLH", + "26377": "V_RA:CLH", + "26378": "V_RA:CLH", + "26379": "V_RA:CLH", + "26380": "V_RA:CLH", + "26381": "V_RA:CLH", + "26382": "V_RA:CLH", + "26383": "V_RA:CLH", + "26384": "V_RA:CLH", + "26385": "V_RA:CLH", + "26386": "V_RA:CLH", + "26387": "V_RA:CLH", + "26388": "V_RA:CLH", + "26389": "V_RA:CLH", + "26390": "V_RA:CLH", + "26391": "V_RA:CLH", + "26392": "V_RA:CLH", + "26393": "V_RA:CLH", + "26394": "V_RA:CLH", + "26395": "V_RA:CLH", + "26396": "V_RA:CLH", + "26397": "V_RA:CLH", + "26398": "V_RA:CLH", + "26399": "V_RA:CLH", + "26400": "V_RA:CLH", + "26401": "V_RA:CLH", + "26402": "V_RA:CLH", + "26403": "V_RA:CLH", + "26404": "V_RA:CLH", + "26405": "V_RA:CLH", + "26406": "V_RA:CLH", + "26407": "V_RA:CLH", + "26408": "V_RA:CLH", + "26409": "V_RA:CLH", + "26410": "V_RA:CLH", + "26411": "V_RA:CLH", + "26412": "V_RA:CLH", + "26413": "V_RA:CLH", + "26414": "V_RA:CLH", + "26415": "V_RA:CLH", + "26416": "V_RA:CLH", + "26417": "V_RA:CLH", + "26418": "V_RA:CLH", + "26419": "V_RA:CLH", + "26420": "V_RA:CLH", + "26421": "V_RA:CLH", + "26422": "V_RA:CLH", + "26423": "V_RA:CLH", + "26424": "V_RA:CLH", + "26425": "V_RA:CLH", + "26426": "V_RA:CLH", + "26427": "V_RA:CLH", + "26428": "V_RA:CLH", + "26429": "V_RA:CLH", + "26430": "V_RA:CLH", + "26431": "V_RA:CLH", + "26432": "V_RA:CLH", + "26433": "V_RA:CLH", + "26434": "V_RA:CLH", + "26435": "V_RA:CLH", + "26436": "V_RA:CLH", + "26437": "V_RA:CLH", + "26438": "V_RA:CLH", + "26439": "V_RA:CLH", + "26440": "V_RA:CLH", + "26441": "V_RA:CLH", + "26442": "V_RA:CLH", + "26443": "V_RA:CLH", + "26444": "V_RA:CLH", + "26445": "V_RA:CLH", + "26446": "V_RA:CLH", + "26447": "V_RA:CLH", + "26448": "V_RA:CLH", + "26449": "V_RA:CLH", + "26450": "V_RA:CLH", + "26451": "V_RA:CLH", + "26452": "V_RA:CLH", + "26453": "V_RA:CLH", + "26454": "V_RA:CLH", + "26455": "V_RA:CLH", + "26456": "V_RA:CLH", + "26457": "V_RA:CLH", + "26458": "V_RA:CLH", + "26459": "V_RA:CLH", + "26460": "V_RA:CLH", + "26461": "V_RA:CLH", + "26462": "V_RA:CLH", + "26463": "V_RA:CLH", + "26464": "V_RA:CLH", + "26465": "V_RA:CLH", + "26466": "V_RA:CLH", + "26467": "V_RA:CLH", + "26468": "V_RA:CLH", + "26469": "V_RA:CLH", + "26470": "V_RA:CLH", + "26471": "V_RA:CLH", + "26472": "V_RA:CLH", + "26473": "V_RA:CLH", + "26474": "V_RA:CLH", + "26475": "V_RA:CLH", + "26476": "V_RA:CLH", + "26477": "V_RA:CLH", + "26478": "V_RA:CLH", + "26479": "V_RA:CLH", + "26480": "V_RA:CLH", + "26481": "V_RA:CLH", + "26482": "V_RA:CLH", + "26483": "V_RA:CLH", + "26484": "V_RA:CLH", + "26485": "V_RA:CLH", + "26486": "V_RA:CLH", + "26487": "V_RA:CLH", + "26488": "V_RA:CLH", + "26489": "V_RA:CLH", + "26490": "V_RA:CLH", + "26491": "V_RA:CLH", + "26492": "V_RA:CLH", + "26493": "V_RA:CLH", + "26494": "V_RA:CLH", + "26495": "V_RA:CLH", + "26496": "V_RA:CLH", + "26497": "V_RA:CLH", + "26498": "V_RA:CLH", + "26499": "V_RA:CLH", + "26500": "V_RA:CLH", + "26501": "V_RA:CLH", + "26502": "V_RA:CLH", + "26503": "V_RA:CLH", + "26504": "V_RA:CLH", + "26505": "V_RA:CLH", + "26506": "V_RA:CLH", + "26507": "V_RA:CLH", + "26508": "V_RA:CLH", + "26509": "V_RA:CLH", + "26510": "V_RA:CLH", + "26511": "V_RA:CLH", + "26512": "V_RA:CLH", + "26513": "V_RA:CLH", + "26514": "V_RA:CLH", + "26515": "V_RA:CLH", + "26516": "V_RA:CLH", + "26517": "V_RA:CLH", + "26518": "V_RA:CLH", + "26519": "V_RA:CLH", + "26520": "V_RA:CLH", + "26521": "V_RA:CLH", + "26522": "V_RA:CLH", + "26523": "V_RA:CLH", + "26524": "V_RA:CLH", + "26525": "V_RA:CLH", + "26526": "V_RA:CLH", + "26527": "V_RA:CLH", + "26528": "V_RA:CLH", + "26529": "V_RA:CLH", + "26530": "V_RA:CLH", + "26531": "V_RA:CLH", + "26532": "V_RA:CLH", + "26533": "V_RA:CLH", + "26534": "V_RA:CLH", + "26535": "V_RA:CLH", + "26536": "V_RA:CLH", + "26537": "V_RA:CLH", + "26538": "V_RA:CLH", + "26539": "V_RA:CLH", + "26540": "V_RA:CLH", + "26541": "V_RA:CLH", + "26542": "V_RA:CLH", + "26543": "V_RA:CLH", + "26544": "V_RA:CLH", + "26545": "V_RA:CLH", + "26546": "V_RA:CLH", + "26547": "V_RA:CLH", + "26548": "V_RA:CLH", + "26549": "V_RA:CLH", + "26550": "V_RA:CLH", + "26551": "V_RA:CLH", + "26552": "V_RA:CLH", + "26553": "V_RA:CLH", + "26554": "V_RA:CLH", + "26555": "V_RA:CLH", + "26556": "V_RA:CLH", + "26557": "V_RA:CLH", + "26558": "V_RA:CLH", + "26559": "V_RA:CLH", + "26560": "V_RA:CLH", + "26561": "V_RA:CLH", + "26562": "V_RA:CLH", + "26563": "V_RA:CLH", + "26564": "V_RA:CLH", + "26565": "V_RA:CLH", + "26566": "V_RA:CLH", + "26567": "V_RA:CLH", + "26568": "V_RA:CLH", + "26569": "V_RA:CLH", + "26570": "V_RA:CLH", + "26571": "V_RA:CLH", + "26572": "V_RA:CLH", + "26573": "V_RA:CLH", + "26574": "V_RA:CLH", + "26575": "V_RA:CLH", + "26576": "V_RA:CLH", + "26577": "V_RA:CLH", + "26578": "V_RA:CLH", + "26579": "V_RA:CLH", + "26580": "V_RA:CLH", + "26581": "V_RA:CLH", + "26582": "V_RA:CLH", + "26583": "V_RA:CLH", + "26584": "V_RA:CLH", + "26585": "V_RA:CLH", + "26586": "V_RA:CLH", + "26587": "V_RA:CLH", + "26588": "V_RA:CLH", + "26589": "V_RA:CLH", + "26590": "V_RA:CLH", + "26591": "V_RA:CLH", + "26592": "V_RA:CLH", + "26593": "V_RA:CLH", + "26594": "V_RA:CLH", + "26595": "V_RA:CLH", + "26596": "V_RA:CLH", + "26597": "V_RA:CLH", + "26598": "V_RA:CLH", + "26599": "V_RA:CLH", + "26600": "V_RA:CLH", + "26601": "V_RA:CLH", + "26602": "V_RA:CLH", + "26603": "V_RA:CLH", + "26604": "V_RA:CLH", + "26605": "V_RA:CLH", + "26606": "V_RA:CLH", + "26607": "V_RA:CLH", + "26608": "V_RA:CLH", + "26609": "V_RA:CLH", + "26610": "V_RA:CLH", + "26611": "V_RA:CLH", + "26612": "V_RA:CLH", + "26613": "V_RA:CLH", + "26614": "V_RA:CLH", + "26615": "V_RA:CLH", + "26616": "V_RA:CLH", + "26617": "V_RA:CLH", + "26618": "V_RA:CLH", + "26619": "V_RA:CLH", + "26620": "V_RA:CLH", + "26621": "V_RA:CLH", + "26622": "V_RA:CLH", + "26623": "V_RA:CLH", + "26624": "V_RA:CLH", + "26625": "V_RA:CLH", + "26626": "V_RA:CLH", + "26627": "V_RA:CLH", + "26628": "V_RA:CLH", + "26629": "V_RA:CLH", + "26630": "V_RA:CLH", + "26631": "V_RA:CLH", + "26632": "V_RA:CLH", + "26633": "V_RA:CLH", + "26634": "V_RA:CLH", + "26635": "V_RA:CLH", + "26636": "V_RA:CLH", + "26637": "V_RA:CLH", + "26638": "V_RA:CLH", + "26639": "V_RA:CLH", + "26640": "V_RA:CLH", + "26641": "V_RA:CLH", + "26642": "V_RA:CLH", + "26643": "V_RA:CLH", + "26644": "V_RA:CLH", + "26645": "V_RA:CLH", + "26646": "V_RA:CLH", + "26647": "V_RA:CLH", + "26648": "V_RA:CLH", + "26649": "V_RA:CLH", + "26650": "V_RA:CLH", + "26651": "V_RA:CLH", + "26652": "V_RA:CLH", + "26653": "V_RA:CLH", + "26654": "V_RA:CLH", + "26655": "V_RA:CLH", + "26656": "V_RA:CLH", + "26657": "V_RA:CLH", + "26658": "V_RA:CLH", + "26659": "V_RA:CLH", + "26660": "V_RA:CLH", + "26661": "V_RA:CLH", + "26662": "V_RA:CLH", + "26663": "V_RA:CLH", + "26664": "V_RA:CLH", + "26665": "V_RA:CLH", + "26666": "V_RA:CLH", + "26667": "V_RA:CLH", + "26668": "V_RA:CLH", + "26669": "V_RA:CLH", + "26670": "V_RA:CLH", + "26671": "V_RA:CLH", + "26672": "V_RA:CLH", + "26673": "V_RA:CLH", + "26674": "V_RA:CLH", + "26675": "V_RA:CLH", + "26676": "V_RA:CLH", + "26677": "V_RA:CLH", + "26678": "V_RA:CLH", + "26679": "V_RA:CLH", + "26680": "V_RA:CLH", + "26681": "V_RA:CLH", + "26682": "V_RA:CLH", + "26683": "V_RA:CLH", + "26684": "V_RA:CLH", + "26685": "V_RA:CLH", + "26686": "V_RA:CLH", + "26687": "V_RA:CLH", + "26688": "V_RA:CLH", + "26689": "V_RA:CLH", + "26690": "V_RA:CLH", + "26691": "V_RA:CLH", + "26692": "V_RA:CLH", + "26693": "V_RA:CLH", + "26694": "V_RA:CLH", + "26695": "V_RA:CLH", + "26696": "V_RA:CLH", + "26697": "V_RA:CLH", + "26698": "V_RA:CLH", + "26699": "V_RA:CLH", + "26700": "V_RA:CLH", + "26701": "V_RA:CLH", + "26702": "V_RA:CLH", + "26703": "V_RA:CLH", + "26704": "V_RA:CLH", + "26705": "V_RA:CLH", + "26706": "V_RA:CLH", + "26707": "V_RA:CLH", + "26708": "V_RA:CLH", + "26709": "V_RA:CLH", + "26710": "V_RA:CLH", + "26711": "V_RA:CLH", + "26712": "V_RA:CLH", + "26713": "V_RA:CLH", + "26714": "V_RA:CLH", + "26715": "V_RA:CLH", + "26716": "V_RA:CLH", + "26717": "V_RA:CLH", + "26718": "V_RA:CLH", + "26719": "V_RA:CLH", + "26720": "V_RA:CLH", + "26721": "V_RA:CLH", + "26722": "V_RA:CLH", + "26723": "V_RA:CLH", + "26724": "V_RA:CLH", + "26725": "V_RA:CLH", + "26726": "V_RA:CLH", + "26727": "V_RA:CLH", + "26728": "V_RA:CLH", + "26729": "V_RA:CLH", + "26730": "V_RA:CLH", + "26731": "V_RA:CLH", + "26732": "V_RA:CLH", + "26733": "V_RA:CLH", + "26734": "V_RA:CLH", + "26735": "V_RA:CLH", + "26736": "V_RA:CLH", + "26737": "V_RA:CLH", + "26738": "V_RA:CLH", + "26739": "V_RA:CLH", + "26740": "V_RA:CLH", + "26741": "V_RA:CLH", + "26742": "V_RA:CLH", + "26743": "V_RA:CLH", + "26744": "V_RA:CLH", + "26745": "V_RA:CLH", + "26746": "V_RA:CLH", + "26747": "V_RA:CLH", + "26748": "V_RA:CLH", + "26749": "V_RA:CLH", + "26750": "V_RA:CLH", + "26751": "V_RA:CLH", + "26752": "V_RA:CLH", + "26753": "V_RA:CLH", + "26754": "V_RA:CLH", + "26755": "V_RA:CLH", + "26756": "V_RA:CLH", + "26757": "V_RA:CLH", + "26758": "V_RA:CLH", + "26759": "V_RA:CLH", + "26760": "V_RA:CLH", + "26761": "V_RA:CLH", + "26762": "V_RA:CLH", + "26763": "V_RA:CLH", + "26764": "V_RA:CLH", + "26765": "V_RA:CLH", + "26766": "V_RA:CLH", + "26767": "V_RA:CLH", + "26768": "V_RA:CLH", + "26769": "V_RA:CLH", + "26770": "V_RA:CLH", + "26771": "V_RA:CLH", + "26772": "V_RA:CLH", + "26773": "V_RA:CLH", + "26774": "V_RA:CLH", + "26775": "V_RA:CLH", + "26776": "V_RA:CLH", + "26777": "V_RA:CLH", + "26778": "V_RA:CLH", + "26779": "V_RA:CLH", + "26780": "V_RA:CLH", + "26781": "V_RA:CLH", + "26782": "V_RA:CLH", + "26783": "V_RA:CLH", + "26784": "V_RA:CLH", + "26785": "V_RA:CLH", + "26786": "V_RA:CLH", + "26787": "V_RA:CLH", + "26788": "V_RA:CLH", + "26789": "V_RA:CLH", + "26790": "V_RA:CLH", + "26791": "V_RA:CLH", + "26792": "V_RA:CLH", + "26793": "V_RA:CLH", + "26794": "V_RA:CLH", + "26795": "V_RA:CLH", + "26796": "V_RA:CLH", + "26797": "V_RA:CLH", + "26798": "V_RA:CLH", + "26799": "V_RA:CLH", + "26800": "V_RA:CLH", + "26801": "V_RA:CLH", + "26802": "V_RA:CLH", + "26803": "V_RA:CLH", + "26804": "V_RA:CLH", + "26805": "V_RA:CLH", + "26806": "V_RA:CLH", + "26807": "V_RA:CLH", + "26808": "V_RA:CLH", + "26809": "V_RA:CLH", + "26810": "V_RA:CLH", + "26811": "V_RA:CLH", + "26812": "V_RA:CLH", + "26813": "V_RA:CLH", + "26814": "V_RA:CLH", + "26815": "V_RA:CLH", + "26816": "V_RA:CLH", + "26817": "V_RA:CLH", + "26818": "V_RA:CLH", + "26819": "V_RA:CLH", + "26820": "V_RA:CLH", + "26821": "V_RA:CLH", + "26822": "V_RA:CLH", + "26823": "V_RA:CLH", + "26824": "V_RA:CLH", + "26825": "V_RA:CLH", + "26826": "V_RA:CLH", + "26827": "V_RA:CLH", + "26828": "V_RA:CLH", + "26829": "V_RA:CLH", + "26830": "V_RA:CLH", + "26831": "V_RA:CLH", + "26832": "V_RA:CLH", + "26833": "V_RA:CLH", + "26834": "V_RA:CLH", + "26835": "V_RA:CLH", + "26836": "V_RA:CLH", + "26837": "V_RA:CLH", + "26838": "V_RA:CLH", + "26839": "V_RA:CLH", + "26840": "V_RA:CLH", + "26841": "V_RA:CLH", + "26842": "V_RA:CLH", + "26843": "V_RA:CLH", + "26844": "V_RA:CLH", + "26845": "V_RA:CLH", + "26846": "V_RA:CLH", + "26847": "V_RA:CLH", + "26848": "V_RA:CLH", + "26849": "V_RA:CLH", + "26850": "V_RA:CLH", + "26851": "V_RA:CLH", + "26852": "V_RA:CLH", + "26853": "V_RA:CLH", + "26854": "V_RA:CLH", + "26855": "V_RA:CLH", + "26856": "V_RA:CLH", + "26857": "V_RA:CLH", + "26858": "V_RA:CLH", + "26859": "V_RA:CLH", + "26860": "V_RA:CLH", + "26861": "V_RA:CLH", + "26862": "V_RA:CLH", + "26863": "V_RA:CLH", + "26864": "V_RA:CLH", + "26865": "V_RA:CLH", + "26866": "V_RA:CLH", + "26867": "V_RA:CLH", + "26868": "V_RA:CLH", + "26869": "V_RA:CLH", + "26870": "V_RA:CLH", + "26871": "V_RA:CLH", + "26872": "V_RA:CLH", + "26873": "V_RA:CLH", + "26874": "V_RA:CLH", + "26875": "V_RA:CLH", + "26876": "V_RA:CLH", + "26877": "V_RA:CLH", + "26878": "V_RA:CLH", + "26879": "V_RA:CLH", + "26880": "V_RA:CLH", + "26881": "V_RA:CLH", + "26882": "V_RA:CLH", + "26883": "V_RA:CLH", + "26884": "V_RA:CLH", + "26885": "V_RA:CLH", + "26886": "V_RA:CLH", + "26887": "V_RA:CLH", + "26888": "V_RA:CLH", + "26889": "V_RA:CLH", + "26890": "V_RA:CLH", + "26891": "V_RA:CLH", + "26892": "V_RA:CLH", + "26893": "V_RA:CLH", + "26894": "V_RA:CLH", + "26895": "V_RA:CLH", + "26896": "V_RA:CLH", + "26897": "V_RA:CLH", + "26898": "V_RA:CLH", + "26899": "V_RA:CLH", + "26900": "V_RA:CLH", + "26901": "V_RA:CLH", + "26902": "V_RA:CLH", + "26903": "V_RA:CLH", + "26904": "V_RA:CLH", + "26905": "V_RA:CLH", + "26906": "V_RA:CLH", + "26907": "V_RA:CLH", + "26908": "V_RA:CLH", + "26909": "V_RA:CLH", + "26910": "V_RA:CLH", + "26911": "V_RA:CLH", + "26912": "V_RA:CLH", + "26913": "V_RA:CLH", + "26914": "V_RA:CLH", + "26915": "V_RA:CLH", + "26916": "V_RA:CLH", + "26917": "V_RA:CLH", + "26918": "V_RA:CLH", + "26919": "V_RA:CLH", + "26920": "V_RA:CLH", + "26921": "V_RA:CLH", + "26922": "V_RA:CLH", + "26923": "V_RA:CLH", + "26924": "V_RA:CLH", + "26925": "V_RA:CLH", + "26926": "V_RA:CLH", + "26927": "V_RA:CLH", + "26928": "V_RA:CLH", + "26929": "V_RA:CLH", + "26930": "V_RA:CLH", + "26931": "V_RA:CLH", + "26932": "V_RA:CLH", + "26933": "V_RA:CLH", + "26934": "V_RA:CLH", + "26935": "V_RA:CLH", + "26936": "V_RA:CLH", + "26937": "V_RA:CLH", + "26938": "V_RA:CLH", + "26939": "V_RA:CLH", + "26940": "V_RA:CLH", + "26941": "V_RA:CLH", + "26942": "V_RA:CLH", + "26943": "V_RA:CLH", + "26944": "V_RA:CLH", + "26945": "V_RA:CLH", + "26946": "V_RA:CLH", + "26947": "V_RA:CLH", + "26948": "V_RA:CLH", + "26949": "V_RA:CLH", + "26950": "V_RA:CLH", + "26951": "V_RA:CLH", + "26952": "V_RA:CLH", + "26953": "V_RA:CLH", + "26954": "V_RA:CLH", + "26955": "V_RA:CLH", + "26956": "V_RA:CLH", + "26957": "V_RA:CLH", + "26958": "V_RA:CLH", + "26959": "V_RA:CLH", + "26960": "V_RA:CLH", + "26961": "V_RA:CLH", + "26962": "V_RA:CLH", + "26963": "V_RA:CLH", + "26964": "V_RA:CLH", + "26965": "V_RA:CLH", + "26966": "V_RA:CLH", + "26967": "V_RA:CLH", + "26968": "V_RA:CLH", + "26969": "V_RA:CLH", + "26970": "V_RA:CLH", + "26971": "V_RA:CLH", + "26972": "V_RA:CLH", + "26973": "V_RA:CLH", + "26974": "V_RA:CLH", + "26975": "V_RA:CLH", + "26976": "V_RA:CLH", + "26977": "V_RA:CLH", + "26978": "V_RA:CLH", + "26979": "V_RA:CLH", + "26980": "V_RA:CLH", + "26981": "V_RA:CLH", + "26982": "V_RA:CLH", + "26983": "V_RA:CLH", + "26984": "V_RA:CLH", + "26985": "V_RA:CLH", + "26986": "V_RA:CLH", + "26987": "V_RA:CLH", + "26988": "V_RA:CLH", + "26989": "V_RA:CLH", + "26990": "V_RA:CLH", + "26991": "V_RA:CLH", + "26992": "V_RA:CLH", + "26993": "V_RA:CLH", + "26994": "V_RA:CLH", + "26995": "V_RA:CLH", + "26996": "V_RA:CLH", + "26997": "V_RA:CLH", + "26998": "V_RA:CLH", + "26999": "V_RA:CLH", + "27000": "Q_RA:CLH", + "27001": "Q_RA:CLH", + "27002": "Q_RA:CLH", + "27003": "Q_RA:CLH", + "27004": "Q_RA:CLH", + "27005": "Q_RA:CLH", + "27006": "Q_RA:CLH", + "27007": "Q_RA:CLH", + "27008": "Q_RA:CLH", + "27009": "Q_RA:CLH", + "27010": "Q_RA:CLH", + "27011": "Q_RA:CLH", + "27012": "Q_RA:CLH", + "27013": "Q_RA:CLH", + "27014": "Q_RA:CLH", + "27015": "Q_RA:CLH", + "27016": "Q_RA:CLH", + "27017": "Q_RA:CLH", + "27018": "Q_RA:CLH", + "27019": "Q_RA:CLH", + "27020": "Q_RA:CLH", + "27021": "Q_RA:CLH", + "27022": "Q_RA:CLH", + "27023": "Q_RA:CLH", + "27024": "Q_RA:CLH", + "27025": "Q_RA:CLH", + "27026": "Q_RA:CLH", + "27027": "Q_RA:CLH", + "27028": "Q_RA:CLH", + "27029": "Q_RA:CLH", + "27030": "Q_RA:CLH", + "27031": "Q_RA:CLH", + "27032": "Q_RA:CLH", + "27033": "Q_RA:CLH", + "27034": "Q_RA:CLH", + "27035": "Q_RA:CLH", + "27036": "Q_RA:CLH", + "27037": "Q_RA:CLH", + "27038": "Q_RA:CLH", + "27039": "Q_RA:CLH", + "27040": "Q_RA:CLH", + "27041": "Q_RA:CLH", + "27042": "Q_RA:CLH", + "27043": "Q_RA:CLH", + "27044": "Q_RA:CLH", + "27045": "Q_RA:CLH", + "27046": "Q_RA:CLH", + "27047": "Q_RA:CLH", + "27048": "Q_RA:CLH", + "27049": "Q_RA:CLH", + "27050": "Q_RA:CLH", + "27051": "Q_RA:CLH", + "27052": "Q_RA:CLH", + "27053": "Q_RA:CLH", + "27054": "Q_RA:CLH", + "27055": "Q_RA:CLH", + "27056": "Q_RA:CLH", + "27057": "Q_RA:CLH", + "27058": "Q_RA:CLH", + "27059": "Q_RA:CLH", + "27060": "Q_RA:CLH", + "27061": "Q_RA:CLH", + "27062": "Q_RA:CLH", + "27063": "Q_RA:CLH", + "27064": "Q_RA:CLH", + "27065": "Q_RA:CLH", + "27066": "Q_RA:CLH", + "27067": "Q_RA:CLH", + "27068": "Q_RA:CLH", + "27069": "Q_RA:CLH", + "27070": "Q_RA:CLH", + "27071": "Q_RA:CLH", + "27072": "Q_RA:CLH", + "27073": "Q_RA:CLH", + "27074": "Q_RA:CLH", + "27075": "Q_RA:CLH", + "27076": "Q_RA:CLH", + "27077": "Q_RA:CLH", + "27078": "Q_RA:CLH", + "27079": "Q_RA:CLH", + "27080": "Q_RA:CLH", + "27081": "Q_RA:CLH", + "27082": "Q_RA:CLH", + "27083": "Q_RA:CLH", + "27084": "Q_RA:CLH", + "27085": "Q_RA:CLH", + "27086": "Q_RA:CLH", + "27087": "Q_RA:CLH", + "27088": "Q_RA:CLH", + "27089": "Q_RA:CLH", + "27090": "Q_RA:CLH", + "27091": "Q_RA:CLH", + "27092": "Q_RA:CLH", + "27093": "Q_RA:CLH", + "27094": "Q_RA:CLH", + "27095": "Q_RA:CLH", + "27096": "Q_RA:CLH", + "27097": "Q_RA:CLH", + "27098": "Q_RA:CLH", + "27099": "Q_RA:CLH", + "27100": "Q_RA:CLH", + "27101": "Q_RA:CLH", + "27102": "Q_RA:CLH", + "27103": "Q_RA:CLH", + "27104": "Q_RA:CLH", + "27105": "Q_RA:CLH", + "27106": "Q_RA:CLH", + "27107": "Q_RA:CLH", + "27108": "Q_RA:CLH", + "27109": "Q_RA:CLH", + "27110": "Q_RA:CLH", + "27111": "Q_RA:CLH", + "27112": "Q_RA:CLH", + "27113": "Q_RA:CLH", + "27114": "Q_RA:CLH", + "27115": "Q_RA:CLH", + "27116": "Q_RA:CLH", + "27117": "Q_RA:CLH", + "27118": "Q_RA:CLH", + "27119": "Q_RA:CLH", + "27120": "Q_RA:CLH", + "27121": "Q_RA:CLH", + "27122": "Q_RA:CLH", + "27123": "Q_RA:CLH", + "27124": "Q_RA:CLH", + "27125": "Q_RA:CLH", + "27126": "Q_RA:CLH", + "27127": "Q_RA:CLH", + "27128": "Q_RA:CLH", + "27129": "Q_RA:CLH", + "27130": "Q_RA:CLH", + "27131": "Q_RA:CLH", + "27132": "Q_RA:CLH", + "27133": "Q_RA:CLH", + "27134": "Q_RA:CLH", + "27135": "Q_RA:CLH", + "27136": "Q_RA:CLH", + "27137": "Q_RA:CLH", + "27138": "Q_RA:CLH", + "27139": "Q_RA:CLH", + "27140": "Q_RA:CLH", + "27141": "Q_RA:CLH", + "27142": "Q_RA:CLH", + "27143": "Q_RA:CLH", + "27144": "Q_RA:CLH", + "27145": "Q_RA:CLH", + "27146": "Q_RA:CLH", + "27147": "Q_RA:CLH", + "27148": "Q_RA:CLH", + "27149": "Q_RA:CLH", + "27150": "Q_RA:CLH", + "27151": "Q_RA:CLH", + "27152": "Q_RA:CLH", + "27153": "Q_RA:CLH", + "27154": "Q_RA:CLH", + "27155": "Q_RA:CLH", + "27156": "Q_RA:CLH", + "27157": "Q_RA:CLH", + "27158": "Q_RA:CLH", + "27159": "Q_RA:CLH", + "27160": "Q_RA:CLH", + "27161": "Q_RA:CLH", + "27162": "Q_RA:CLH", + "27163": "Q_RA:CLH", + "27164": "Q_RA:CLH", + "27165": "Q_RA:CLH", + "27166": "Q_RA:CLH", + "27167": "Q_RA:CLH", + "27168": "Q_RA:CLH", + "27169": "Q_RA:CLH", + "27170": "Q_RA:CLH", + "27171": "Q_RA:CLH", + "27172": "Q_RA:CLH", + "27173": "Q_RA:CLH", + "27174": "Q_RA:CLH", + "27175": "Q_RA:CLH", + "27176": "Q_RA:CLH", + "27177": "Q_RA:CLH", + "27178": "Q_RA:CLH", + "27179": "Q_RA:CLH", + "27180": "Q_RA:CLH", + "27181": "Q_RA:CLH", + "27182": "Q_RA:CLH", + "27183": "Q_RA:CLH", + "27184": "Q_RA:CLH", + "27185": "Q_RA:CLH", + "27186": "Q_RA:CLH", + "27187": "Q_RA:CLH", + "27188": "Q_RA:CLH", + "27189": "Q_RA:CLH", + "27190": "Q_RA:CLH", + "27191": "Q_RA:CLH", + "27192": "Q_RA:CLH", + "27193": "Q_RA:CLH", + "27194": "Q_RA:CLH", + "27195": "Q_RA:CLH", + "27196": "Q_RA:CLH", + "27197": "Q_RA:CLH", + "27198": "Q_RA:CLH", + "27199": "Q_RA:CLH", + "27200": "Q_RA:CLH", + "27201": "Q_RA:CLH", + "27202": "Q_RA:CLH", + "27203": "Q_RA:CLH", + "27204": "Q_RA:CLH", + "27205": "Q_RA:CLH", + "27206": "Q_RA:CLH", + "27207": "Q_RA:CLH", + "27208": "Q_RA:CLH", + "27209": "Q_RA:CLH", + "27210": "Q_RA:CLH", + "27211": "Q_RA:CLH", + "27212": "Q_RA:CLH", + "27213": "Q_RA:CLH", + "27214": "Q_RA:CLH", + "27215": "Q_RA:CLH", + "27216": "Q_RA:CLH", + "27217": "Q_RA:CLH", + "27218": "Q_RA:CLH", + "27219": "Q_RA:CLH", + "27220": "Q_RA:CLH", + "27221": "Q_RA:CLH", + "27222": "Q_RA:CLH", + "27223": "Q_RA:CLH", + "27224": "Q_RA:CLH", + "27225": "Q_RA:CLH", + "27226": "Q_RA:CLH", + "27227": "Q_RA:CLH", + "27228": "Q_RA:CLH", + "27229": "Q_RA:CLH", + "27230": "Q_RA:CLH", + "27231": "Q_RA:CLH", + "27232": "Q_RA:CLH", + "27233": "Q_RA:CLH", + "27234": "Q_RA:CLH", + "27235": "Q_RA:CLH", + "27236": "Q_RA:CLH", + "27237": "Q_RA:CLH", + "27238": "Q_RA:CLH", + "27239": "Q_RA:CLH", + "27240": "Q_RA:CLH", + "27241": "Q_RA:CLH", + "27242": "Q_RA:CLH", + "27243": "Q_RA:CLH", + "27244": "Q_RA:CLH", + "27245": "Q_RA:CLH", + "27246": "Q_RA:CLH", + "27247": "Q_RA:CLH", + "27248": "Q_RA:CLH", + "27249": "Q_RA:CLH", + "27250": "Q_RA:CLH", + "27251": "Q_RA:CLH", + "27252": "Q_RA:CLH", + "27253": "Q_RA:CLH", + "27254": "Q_RA:CLH", + "27255": "Q_RA:CLH", + "27256": "Q_RA:CLH", + "27257": "Q_RA:CLH", + "27258": "Q_RA:CLH", + "27259": "Q_RA:CLH", + "27260": "Q_RA:CLH", + "27261": "Q_RA:CLH", + "27262": "Q_RA:CLH", + "27263": "Q_RA:CLH", + "27264": "Q_RA:CLH", + "27265": "Q_RA:CLH", + "27266": "Q_RA:CLH", + "27267": "Q_RA:CLH", + "27268": "Q_RA:CLH", + "27269": "Q_RA:CLH", + "27270": "Q_RA:CLH", + "27271": "Q_RA:CLH", + "27272": "Q_RA:CLH", + "27273": "Q_RA:CLH", + "27274": "Q_RA:CLH", + "27275": "Q_RA:CLH", + "27276": "Q_RA:CLH", + "27277": "Q_RA:CLH", + "27278": "Q_RA:CLH", + "27279": "Q_RA:CLH", + "27280": "Q_RA:CLH", + "27281": "Q_RA:CLH", + "27282": "Q_RA:CLH", + "27283": "Q_RA:CLH", + "27284": "Q_RA:CLH", + "27285": "Q_RA:CLH", + "27286": "Q_RA:CLH", + "27287": "Q_RA:CLH", + "27288": "Q_RA:CLH", + "27289": "Q_RA:CLH", + "27290": "Q_RA:CLH", + "27291": "Q_RA:CLH", + "27292": "Q_RA:CLH", + "27293": "Q_RA:CLH", + "27294": "Q_RA:CLH", + "27295": "Q_RA:CLH", + "27296": "Q_RA:CLH", + "27297": "Q_RA:CLH", + "27298": "Q_RA:CLH", + "27299": "Q_RA:CLH", + "27300": "Q_RA:CLH", + "27301": "Q_RA:CLH", + "27302": "Q_RA:CLH", + "27303": "Q_RA:CLH", + "27304": "Q_RA:CLH", + "27305": "Q_RA:CLH", + "27306": "Q_RA:CLH", + "27307": "Q_RA:CLH", + "27308": "Q_RA:CLH", + "27309": "Q_RA:CLH", + "27310": "Q_RA:CLH", + "27311": "Q_RA:CLH", + "27312": "Q_RA:CLH", + "27313": "Q_RA:CLH", + "27314": "Q_RA:CLH", + "27315": "Q_RA:CLH", + "27316": "Q_RA:CLH", + "27317": "Q_RA:CLH", + "27318": "Q_RA:CLH", + "27319": "Q_RA:CLH", + "27320": "Q_RA:CLH", + "27321": "Q_RA:CLH", + "27322": "Q_RA:CLH", + "27323": "Q_RA:CLH", + "27324": "Q_RA:CLH", + "27325": "Q_RA:CLH", + "27326": "Q_RA:CLH", + "27327": "Q_RA:CLH", + "27328": "Q_RA:CLH", + "27329": "Q_RA:CLH", + "27330": "Q_RA:CLH", + "27331": "Q_RA:CLH", + "27332": "Q_RA:CLH", + "27333": "Q_RA:CLH", + "27334": "Q_RA:CLH", + "27335": "Q_RA:CLH", + "27336": "Q_RA:CLH", + "27337": "Q_RA:CLH", + "27338": "Q_RA:CLH", + "27339": "Q_RA:CLH", + "27340": "Q_RA:CLH", + "27341": "Q_RA:CLH", + "27342": "Q_RA:CLH", + "27343": "Q_RA:CLH", + "27344": "Q_RA:CLH", + "27345": "Q_RA:CLH", + "27346": "Q_RA:CLH", + "27347": "Q_RA:CLH", + "27348": "Q_RA:CLH", + "27349": "Q_RA:CLH", + "27350": "Q_RA:CLH", + "27351": "Q_RA:CLH", + "27352": "Q_RA:CLH", + "27353": "Q_RA:CLH", + "27354": "Q_RA:CLH", + "27355": "Q_RA:CLH", + "27356": "Q_RA:CLH", + "27357": "Q_RA:CLH", + "27358": "Q_RA:CLH", + "27359": "Q_RA:CLH", + "27360": "Q_RA:CLH", + "27361": "Q_RA:CLH", + "27362": "Q_RA:CLH", + "27363": "Q_RA:CLH", + "27364": "Q_RA:CLH", + "27365": "Q_RA:CLH", + "27366": "Q_RA:CLH", + "27367": "Q_RA:CLH", + "27368": "Q_RA:CLH", + "27369": "Q_RA:CLH", + "27370": "Q_RA:CLH", + "27371": "Q_RA:CLH", + "27372": "Q_RA:CLH", + "27373": "Q_RA:CLH", + "27374": "Q_RA:CLH", + "27375": "Q_RA:CLH", + "27376": "Q_RA:CLH", + "27377": "Q_RA:CLH", + "27378": "Q_RA:CLH", + "27379": "Q_RA:CLH", + "27380": "Q_RA:CLH", + "27381": "Q_RA:CLH", + "27382": "Q_RA:CLH", + "27383": "Q_RA:CLH", + "27384": "Q_RA:CLH", + "27385": "Q_RA:CLH", + "27386": "Q_RA:CLH", + "27387": "Q_RA:CLH", + "27388": "Q_RA:CLH", + "27389": "Q_RA:CLH", + "27390": "Q_RA:CLH", + "27391": "Q_RA:CLH", + "27392": "Q_RA:CLH", + "27393": "Q_RA:CLH", + "27394": "Q_RA:CLH", + "27395": "Q_RA:CLH", + "27396": "Q_RA:CLH", + "27397": "Q_RA:CLH", + "27398": "Q_RA:CLH", + "27399": "Q_RA:CLH", + "27400": "Q_RA:CLH", + "27401": "Q_RA:CLH", + "27402": "Q_RA:CLH", + "27403": "Q_RA:CLH", + "27404": "Q_RA:CLH", + "27405": "Q_RA:CLH", + "27406": "Q_RA:CLH", + "27407": "Q_RA:CLH", + "27408": "Q_RA:CLH", + "27409": "Q_RA:CLH", + "27410": "Q_RA:CLH", + "27411": "Q_RA:CLH", + "27412": "Q_RA:CLH", + "27413": "Q_RA:CLH", + "27414": "Q_RA:CLH", + "27415": "Q_RA:CLH", + "27416": "Q_RA:CLH", + "27417": "Q_RA:CLH", + "27418": "Q_RA:CLH", + "27419": "Q_RA:CLH", + "27420": "Q_RA:CLH", + "27421": "Q_RA:CLH", + "27422": "Q_RA:CLH", + "27423": "Q_RA:CLH", + "27424": "Q_RA:CLH", + "27425": "Q_RA:CLH", + "27426": "Q_RA:CLH", + "27427": "Q_RA:CLH", + "27428": "Q_RA:CLH", + "27429": "Q_RA:CLH", + "27430": "Q_RA:CLH", + "27431": "Q_RA:CLH", + "27432": "Q_RA:CLH", + "27433": "Q_RA:CLH", + "27434": "Q_RA:CLH", + "27435": "Q_RA:CLH", + "27436": "Q_RA:CLH", + "27437": "Q_RA:CLH", + "27438": "Q_RA:CLH", + "27439": "Q_RA:CLH", + "27440": "Q_RA:CLH", + "27441": "Q_RA:CLH", + "27442": "Q_RA:CLH", + "27443": "Q_RA:CLH", + "27444": "Q_RA:CLH", + "27445": "Q_RA:CLH", + "27446": "Q_RA:CLH", + "27447": "Q_RA:CLH", + "27448": "Q_RA:CLH", + "27449": "Q_RA:CLH", + "27450": "Q_RA:CLH", + "27451": "Q_RA:CLH", + "27452": "Q_RA:CLH", + "27453": "Q_RA:CLH", + "27454": "Q_RA:CLH", + "27455": "Q_RA:CLH", + "27456": "Q_RA:CLH", + "27457": "Q_RA:CLH", + "27458": "Q_RA:CLH", + "27459": "Q_RA:CLH", + "27460": "Q_RA:CLH", + "27461": "Q_RA:CLH", + "27462": "Q_RA:CLH", + "27463": "Q_RA:CLH", + "27464": "Q_RA:CLH", + "27465": "Q_RA:CLH", + "27466": "Q_RA:CLH", + "27467": "Q_RA:CLH", + "27468": "Q_RA:CLH", + "27469": "Q_RA:CLH", + "27470": "Q_RA:CLH", + "27471": "Q_RA:CLH", + "27472": "Q_RA:CLH", + "27473": "Q_RA:CLH", + "27474": "Q_RA:CLH", + "27475": "Q_RA:CLH", + "27476": "Q_RA:CLH", + "27477": "Q_RA:CLH", + "27478": "Q_RA:CLH", + "27479": "Q_RA:CLH", + "27480": "Q_RA:CLH", + "27481": "Q_RA:CLH", + "27482": "Q_RA:CLH", + "27483": "Q_RA:CLH", + "27484": "Q_RA:CLH", + "27485": "Q_RA:CLH", + "27486": "Q_RA:CLH", + "27487": "Q_RA:CLH", + "27488": "Q_RA:CLH", + "27489": "Q_RA:CLH", + "27490": "Q_RA:CLH", + "27491": "Q_RA:CLH", + "27492": "Q_RA:CLH", + "27493": "Q_RA:CLH", + "27494": "Q_RA:CLH", + "27495": "Q_RA:CLH", + "27496": "Q_RA:CLH", + "27497": "Q_RA:CLH", + "27498": "Q_RA:CLH", + "27499": "Q_RA:CLH", + "27500": "Q_RA:CLH", + "27501": "Q_RA:CLH", + "27502": "Q_RA:CLH", + "27503": "Q_RA:CLH", + "27504": "Q_RA:CLH", + "27505": "Q_RA:CLH", + "27506": "Q_RA:CLH", + "27507": "Q_RA:CLH", + "27508": "Q_RA:CLH", + "27509": "Q_RA:CLH", + "27510": "Q_RA:CLH", + "27511": "Q_RA:CLH", + "27512": "Q_RA:CLH", + "27513": "Q_RA:CLH", + "27514": "Q_RA:CLH", + "27515": "Q_RA:CLH", + "27516": "Q_RA:CLH", + "27517": "Q_RA:CLH", + "27518": "Q_RA:CLH", + "27519": "Q_RA:CLH", + "27520": "Q_RA:CLH", + "27521": "Q_RA:CLH", + "27522": "Q_RA:CLH", + "27523": "Q_RA:CLH", + "27524": "Q_RA:CLH", + "27525": "Q_RA:CLH", + "27526": "Q_RA:CLH", + "27527": "Q_RA:CLH", + "27528": "Q_RA:CLH", + "27529": "Q_RA:CLH", + "27530": "Q_RA:CLH", + "27531": "Q_RA:CLH", + "27532": "Q_RA:CLH", + "27533": "Q_RA:CLH", + "27534": "Q_RA:CLH", + "27535": "Q_RA:CLH", + "27536": "Q_RA:CLH", + "27537": "Q_RA:CLH", + "27538": "Q_RA:CLH", + "27539": "Q_RA:CLH", + "27540": "Q_RA:CLH", + "27541": "Q_RA:CLH", + "27542": "Q_RA:CLH", + "27543": "Q_RA:CLH", + "27544": "Q_RA:CLH", + "27545": "Q_RA:CLH", + "27546": "Q_RA:CLH", + "27547": "Q_RA:CLH", + "27548": "Q_RA:CLH", + "27549": "Q_RA:CLH", + "27550": "Q_RA:CLH", + "27551": "Q_RA:CLH", + "27552": "Q_RA:CLH", + "27553": "Q_RA:CLH", + "27554": "Q_RA:CLH", + "27555": "Q_RA:CLH", + "27556": "Q_RA:CLH", + "27557": "Q_RA:CLH", + "27558": "Q_RA:CLH", + "27559": "Q_RA:CLH", + "27560": "Q_RA:CLH", + "27561": "Q_RA:CLH", + "27562": "Q_RA:CLH", + "27563": "Q_RA:CLH", + "27564": "Q_RA:CLH", + "27565": "Q_RA:CLH", + "27566": "Q_RA:CLH", + "27567": "Q_RA:CLH", + "27568": "Q_RA:CLH", + "27569": "Q_RA:CLH", + "27570": "Q_RA:CLH", + "27571": "Q_RA:CLH", + "27572": "Q_RA:CLH", + "27573": "Q_RA:CLH", + "27574": "Q_RA:CLH", + "27575": "Q_RA:CLH", + "27576": "Q_RA:CLH", + "27577": "Q_RA:CLH", + "27578": "Q_RA:CLH", + "27579": "Q_RA:CLH", + "27580": "Q_RA:CLH", + "27581": "Q_RA:CLH", + "27582": "Q_RA:CLH", + "27583": "Q_RA:CLH", + "27584": "Q_RA:CLH", + "27585": "Q_RA:CLH", + "27586": "Q_RA:CLH", + "27587": "Q_RA:CLH", + "27588": "Q_RA:CLH", + "27589": "Q_RA:CLH", + "27590": "Q_RA:CLH", + "27591": "Q_RA:CLH", + "27592": "Q_RA:CLH", + "27593": "Q_RA:CLH", + "27594": "Q_RA:CLH", + "27595": "Q_RA:CLH", + "27596": "Q_RA:CLH", + "27597": "Q_RA:CLH", + "27598": "Q_RA:CLH", + "27599": "Q_RA:CLH", + "27600": "Q_RA:CLH", + "27601": "Q_RA:CLH", + "27602": "Q_RA:CLH", + "27603": "Q_RA:CLH", + "27604": "Q_RA:CLH", + "27605": "Q_RA:CLH", + "27606": "Q_RA:CLH", + "27607": "Q_RA:CLH", + "27608": "Q_RA:CLH", + "27609": "Q_RA:CLH", + "27610": "Q_RA:CLH", + "27611": "Q_RA:CLH", + "27612": "Q_RA:CLH", + "27613": "Q_RA:CLH", + "27614": "Q_RA:CLH", + "27615": "Q_RA:CLH", + "27616": "Q_RA:CLH", + "27617": "Q_RA:CLH", + "27618": "Q_RA:CLH", + "27619": "Q_RA:CLH", + "27620": "Q_RA:CLH", + "27621": "Q_RA:CLH", + "27622": "Q_RA:CLH", + "27623": "Q_RA:CLH", + "27624": "Q_RA:CLH", + "27625": "Q_RA:CLH", + "27626": "Q_RA:CLH", + "27627": "Q_RA:CLH", + "27628": "Q_RA:CLH", + "27629": "Q_RA:CLH", + "27630": "Q_RA:CLH", + "27631": "Q_RA:CLH", + "27632": "Q_RA:CLH", + "27633": "Q_RA:CLH", + "27634": "Q_RA:CLH", + "27635": "Q_RA:CLH", + "27636": "Q_RA:CLH", + "27637": "Q_RA:CLH", + "27638": "Q_RA:CLH", + "27639": "Q_RA:CLH", + "27640": "Q_RA:CLH", + "27641": "Q_RA:CLH", + "27642": "Q_RA:CLH", + "27643": "Q_RA:CLH", + "27644": "Q_RA:CLH", + "27645": "Q_RA:CLH", + "27646": "Q_RA:CLH", + "27647": "Q_RA:CLH", + "27648": "Q_RA:CLH", + "27649": "Q_RA:CLH", + "27650": "Q_RA:CLH", + "27651": "Q_RA:CLH", + "27652": "Q_RA:CLH", + "27653": "Q_RA:CLH", + "27654": "Q_RA:CLH", + "27655": "Q_RA:CLH", + "27656": "Q_RA:CLH", + "27657": "Q_RA:CLH", + "27658": "Q_RA:CLH", + "27659": "Q_RA:CLH", + "27660": "Q_RA:CLH", + "27661": "Q_RA:CLH", + "27662": "Q_RA:CLH", + "27663": "Q_RA:CLH", + "27664": "Q_RA:CLH", + "27665": "Q_RA:CLH", + "27666": "Q_RA:CLH", + "27667": "Q_RA:CLH", + "27668": "Q_RA:CLH", + "27669": "Q_RA:CLH", + "27670": "Q_RA:CLH", + "27671": "Q_RA:CLH", + "27672": "Q_RA:CLH", + "27673": "Q_RA:CLH", + "27674": "Q_RA:CLH", + "27675": "Q_RA:CLH", + "27676": "Q_RA:CLH", + "27677": "Q_RA:CLH", + "27678": "Q_RA:CLH", + "27679": "Q_RA:CLH", + "27680": "Q_RA:CLH", + "27681": "Q_RA:CLH", + "27682": "Q_RA:CLH", + "27683": "Q_RA:CLH", + "27684": "Q_RA:CLH", + "27685": "Q_RA:CLH", + "27686": "Q_RA:CLH", + "27687": "Q_RA:CLH", + "27688": "Q_RA:CLH", + "27689": "Q_RA:CLH", + "27690": "Q_RA:CLH", + "27691": "Q_RA:CLH", + "27692": "Q_RA:CLH", + "27693": "Q_RA:CLH", + "27694": "Q_RA:CLH", + "27695": "Q_RA:CLH", + "27696": "Q_RA:CLH", + "27697": "Q_RA:CLH", + "27698": "Q_RA:CLH", + "27699": "Q_RA:CLH", + "27700": "Q_RA:CLH", + "27701": "Q_RA:CLH", + "27702": "Q_RA:CLH", + "27703": "Q_RA:CLH", + "27704": "Q_RA:CLH", + "27705": "Q_RA:CLH", + "27706": "Q_RA:CLH", + "27707": "Q_RA:CLH", + "27708": "Q_RA:CLH", + "27709": "Q_RA:CLH", + "27710": "Q_RA:CLH", + "27711": "Q_RA:CLH", + "27712": "Q_RA:CLH", + "27713": "Q_RA:CLH", + "27714": "Q_RA:CLH", + "27715": "Q_RA:CLH", + "27716": "Q_RA:CLH", + "27717": "Q_RA:CLH", + "27718": "Q_RA:CLH", + "27719": "Q_RA:CLH", + "27720": "Q_RA:CLH", + "27721": "Q_RA:CLH", + "27722": "Q_RA:CLH", + "27723": "Q_RA:CLH", + "27724": "Q_RA:CLH", + "27725": "Q_RA:CLH", + "27726": "Q_RA:CLH", + "27727": "Q_RA:CLH", + "27728": "Q_RA:CLH", + "27729": "Q_RA:CLH", + "27730": "Q_RA:CLH", + "27731": "Q_RA:CLH", + "27732": "Q_RA:CLH", + "27733": "Q_RA:CLH", + "27734": "Q_RA:CLH", + "27735": "Q_RA:CLH", + "27736": "Q_RA:CLH", + "27737": "Q_RA:CLH", + "27738": "Q_RA:CLH", + "27739": "Q_RA:CLH", + "27740": "Q_RA:CLH", + "27741": "Q_RA:CLH", + "27742": "Q_RA:CLH", + "27743": "Q_RA:CLH", + "27744": "Q_RA:CLH", + "27745": "Q_RA:CLH", + "27746": "Q_RA:CLH", + "27747": "Q_RA:CLH", + "27748": "Q_RA:CLH", + "27749": "Q_RA:CLH", + "27750": "Q_RA:CLH", + "27751": "Q_RA:CLH", + "27752": "Q_RA:CLH", + "27753": "Q_RA:CLH", + "27754": "Q_RA:CLH", + "27755": "Q_RA:CLH", + "27756": "Q_RA:CLH", + "27757": "Q_RA:CLH", + "27758": "Q_RA:CLH", + "27759": "Q_RA:CLH", + "27760": "Q_RA:CLH", + "27761": "Q_RA:CLH", + "27762": "Q_RA:CLH", + "27763": "Q_RA:CLH", + "27764": "Q_RA:CLH", + "27765": "Q_RA:CLH", + "27766": "Q_RA:CLH", + "27767": "Q_RA:CLH", + "27768": "Q_RA:CLH", + "27769": "Q_RA:CLH", + "27770": "Q_RA:CLH", + "27771": "Q_RA:CLH", + "27772": "Q_RA:CLH", + "27773": "Q_RA:CLH", + "27774": "Q_RA:CLH", + "27775": "Q_RA:CLH", + "27776": "Q_RA:CLH", + "27777": "Q_RA:CLH", + "27778": "Q_RA:CLH", + "27779": "Q_RA:CLH", + "27780": "Q_RA:CLH", + "27781": "Q_RA:CLH", + "27782": "Q_RA:CLH", + "27783": "Q_RA:CLH", + "27784": "Q_RA:CLH", + "27785": "Q_RA:CLH", + "27786": "Q_RA:CLH", + "27787": "Q_RA:CLH", + "27788": "Q_RA:CLH", + "27789": "Q_RA:CLH", + "27790": "Q_RA:CLH", + "27791": "Q_RA:CLH", + "27792": "Q_RA:CLH", + "27793": "Q_RA:CLH", + "27794": "Q_RA:CLH", + "27795": "Q_RA:CLH", + "27796": "Q_RA:CLH", + "27797": "Q_RA:CLH", + "27798": "Q_RA:CLH", + "27799": "Q_RA:CLH", + "27800": "Q_RA:CLH", + "27801": "Q_RA:CLH", + "27802": "Q_RA:CLH", + "27803": "Q_RA:CLH", + "27804": "Q_RA:CLH", + "27805": "Q_RA:CLH", + "27806": "Q_RA:CLH", + "27807": "Q_RA:CLH", + "27808": "Q_RA:CLH", + "27809": "Q_RA:CLH", + "27810": "Q_RA:CLH", + "27811": "Q_RA:CLH", + "27812": "Q_RA:CLH", + "27813": "Q_RA:CLH", + "27814": "Q_RA:CLH", + "27815": "Q_RA:CLH", + "27816": "Q_RA:CLH", + "27817": "Q_RA:CLH", + "27818": "Q_RA:CLH", + "27819": "Q_RA:CLH", + "27820": "Q_RA:CLH", + "27821": "Q_RA:CLH", + "27822": "Q_RA:CLH", + "27823": "Q_RA:CLH", + "27824": "Q_RA:CLH", + "27825": "Q_RA:CLH", + "27826": "Q_RA:CLH", + "27827": "Q_RA:CLH", + "27828": "Q_RA:CLH", + "27829": "Q_RA:CLH", + "27830": "Q_RA:CLH", + "27831": "Q_RA:CLH", + "27832": "Q_RA:CLH", + "27833": "Q_RA:CLH", + "27834": "Q_RA:CLH", + "27835": "Q_RA:CLH", + "27836": "Q_RA:CLH", + "27837": "Q_RA:CLH", + "27838": "Q_RA:CLH", + "27839": "Q_RA:CLH", + "27840": "Q_RA:CLH", + "27841": "Q_RA:CLH", + "27842": "Q_RA:CLH", + "27843": "Q_RA:CLH", + "27844": "Q_RA:CLH", + "27845": "Q_RA:CLH", + "27846": "Q_RA:CLH", + "27847": "Q_RA:CLH", + "27848": "Q_RA:CLH", + "27849": "Q_RA:CLH", + "27850": "Q_RA:CLH", + "27851": "Q_RA:CLH", + "27852": "Q_RA:CLH", + "27853": "Q_RA:CLH", + "27854": "Q_RA:CLH", + "27855": "Q_RA:CLH", + "27856": "Q_RA:CLH", + "27857": "Q_RA:CLH", + "27858": "Q_RA:CLH", + "27859": "Q_RA:CLH", + "27860": "Q_RA:CLH", + "27861": "Q_RA:CLH", + "27862": "Q_RA:CLH", + "27863": "Q_RA:CLH", + "27864": "Q_RA:CLH", + "27865": "Q_RA:CLH", + "27866": "Q_RA:CLH", + "27867": "Q_RA:CLH", + "27868": "Q_RA:CLH", + "27869": "Q_RA:CLH", + "27870": "Q_RA:CLH", + "27871": "Q_RA:CLH", + "27872": "Q_RA:CLH", + "27873": "Q_RA:CLH", + "27874": "Q_RA:CLH", + "27875": "Q_RA:CLH", + "27876": "Q_RA:CLH", + "27877": "Q_RA:CLH", + "27878": "Q_RA:CLH", + "27879": "Q_RA:CLH", + "27880": "Q_RA:CLH", + "27881": "Q_RA:CLH", + "27882": "Q_RA:CLH", + "27883": "Q_RA:CLH", + "27884": "Q_RA:CLH", + "27885": "Q_RA:CLH", + "27886": "Q_RA:CLH", + "27887": "Q_RA:CLH", + "27888": "Q_RA:CLH", + "27889": "Q_RA:CLH", + "27890": "Q_RA:CLH", + "27891": "Q_RA:CLH", + "27892": "Q_RA:CLH", + "27893": "Q_RA:CLH", + "27894": "Q_RA:CLH", + "27895": "Q_RA:CLH", + "27896": "Q_RA:CLH", + "27897": "Q_RA:CLH", + "27898": "Q_RA:CLH", + "27899": "Q_RA:CLH", + "27900": "Q_RA:CLH", + "27901": "Q_RA:CLH", + "27902": "Q_RA:CLH", + "27903": "Q_RA:CLH", + "27904": "Q_RA:CLH", + "27905": "Q_RA:CLH", + "27906": "Q_RA:CLH", + "27907": "Q_RA:CLH", + "27908": "Q_RA:CLH", + "27909": "Q_RA:CLH", + "27910": "Q_RA:CLH", + "27911": "Q_RA:CLH", + "27912": "Q_RA:CLH", + "27913": "Q_RA:CLH", + "27914": "Q_RA:CLH", + "27915": "Q_RA:CLH", + "27916": "Q_RA:CLH", + "27917": "Q_RA:CLH", + "27918": "Q_RA:CLH", + "27919": "Q_RA:CLH", + "27920": "Q_RA:CLH", + "27921": "Q_RA:CLH", + "27922": "Q_RA:CLH", + "27923": "Q_RA:CLH", + "27924": "Q_RA:CLH", + "27925": "Q_RA:CLH", + "27926": "Q_RA:CLH", + "27927": "Q_RA:CLH", + "27928": "Q_RA:CLH", + "27929": "Q_RA:CLH", + "27930": "Q_RA:CLH", + "27931": "Q_RA:CLH", + "27932": "Q_RA:CLH", + "27933": "Q_RA:CLH", + "27934": "Q_RA:CLH", + "27935": "Q_RA:CLH", + "27936": "Q_RA:CLH", + "27937": "Q_RA:CLH", + "27938": "Q_RA:CLH", + "27939": "Q_RA:CLH", + "27940": "Q_RA:CLH", + "27941": "Q_RA:CLH", + "27942": "Q_RA:CLH", + "27943": "Q_RA:CLH", + "27944": "Q_RA:CLH", + "27945": "Q_RA:CLH", + "27946": "Q_RA:CLH", + "27947": "Q_RA:CLH", + "27948": "Q_RA:CLH", + "27949": "Q_RA:CLH", + "27950": "Q_RA:CLH", + "27951": "Q_RA:CLH", + "27952": "Q_RA:CLH", + "27953": "Q_RA:CLH", + "27954": "Q_RA:CLH", + "27955": "Q_RA:CLH", + "27956": "Q_RA:CLH", + "27957": "Q_RA:CLH", + "27958": "Q_RA:CLH", + "27959": "Q_RA:CLH", + "27960": "Q_RA:CLH", + "27961": "Q_RA:CLH", + "27962": "Q_RA:CLH", + "27963": "Q_RA:CLH", + "27964": "Q_RA:CLH", + "27965": "Q_RA:CLH", + "27966": "Q_RA:CLH", + "27967": "Q_RA:CLH", + "27968": "Q_RA:CLH", + "27969": "Q_RA:CLH", + "27970": "Q_RA:CLH", + "27971": "Q_RA:CLH", + "27972": "Q_RA:CLH", + "27973": "Q_RA:CLH", + "27974": "Q_RA:CLH", + "27975": "Q_RA:CLH", + "27976": "Q_RA:CLH", + "27977": "Q_RA:CLH", + "27978": "Q_RA:CLH", + "27979": "Q_RA:CLH", + "27980": "Q_RA:CLH", + "27981": "Q_RA:CLH", + "27982": "Q_RA:CLH", + "27983": "Q_RA:CLH", + "27984": "Q_RA:CLH", + "27985": "Q_RA:CLH", + "27986": "Q_RA:CLH", + "27987": "Q_RA:CLH", + "27988": "Q_RA:CLH", + "27989": "Q_RA:CLH", + "27990": "Q_RA:CLH", + "27991": "Q_RA:CLH", + "27992": "Q_RA:CLH", + "27993": "Q_RA:CLH", + "27994": "Q_RA:CLH", + "27995": "Q_RA:CLH", + "27996": "Q_RA:CLH", + "27997": "Q_RA:CLH", + "27998": "Q_RA:CLH", + "27999": "Q_RA:CLH", + "28000": "P_RV:CLH", + "28001": "P_RV:CLH", + "28002": "P_RV:CLH", + "28003": "P_RV:CLH", + "28004": "P_RV:CLH", + "28005": "P_RV:CLH", + "28006": "P_RV:CLH", + "28007": "P_RV:CLH", + "28008": "P_RV:CLH", + "28009": "P_RV:CLH", + "28010": "P_RV:CLH", + "28011": "P_RV:CLH", + "28012": "P_RV:CLH", + "28013": "P_RV:CLH", + "28014": "P_RV:CLH", + "28015": "P_RV:CLH", + "28016": "P_RV:CLH", + "28017": "P_RV:CLH", + "28018": "P_RV:CLH", + "28019": "P_RV:CLH", + "28020": "P_RV:CLH", + "28021": "P_RV:CLH", + "28022": "P_RV:CLH", + "28023": "P_RV:CLH", + "28024": "P_RV:CLH", + "28025": "P_RV:CLH", + "28026": "P_RV:CLH", + "28027": "P_RV:CLH", + "28028": "P_RV:CLH", + "28029": "P_RV:CLH", + "28030": "P_RV:CLH", + "28031": "P_RV:CLH", + "28032": "P_RV:CLH", + "28033": "P_RV:CLH", + "28034": "P_RV:CLH", + "28035": "P_RV:CLH", + "28036": "P_RV:CLH", + "28037": "P_RV:CLH", + "28038": "P_RV:CLH", + "28039": "P_RV:CLH", + "28040": "P_RV:CLH", + "28041": "P_RV:CLH", + "28042": "P_RV:CLH", + "28043": "P_RV:CLH", + "28044": "P_RV:CLH", + "28045": "P_RV:CLH", + "28046": "P_RV:CLH", + "28047": "P_RV:CLH", + "28048": "P_RV:CLH", + "28049": "P_RV:CLH", + "28050": "P_RV:CLH", + "28051": "P_RV:CLH", + "28052": "P_RV:CLH", + "28053": "P_RV:CLH", + "28054": "P_RV:CLH", + "28055": "P_RV:CLH", + "28056": "P_RV:CLH", + "28057": "P_RV:CLH", + "28058": "P_RV:CLH", + "28059": "P_RV:CLH", + "28060": "P_RV:CLH", + "28061": "P_RV:CLH", + "28062": "P_RV:CLH", + "28063": "P_RV:CLH", + "28064": "P_RV:CLH", + "28065": "P_RV:CLH", + "28066": "P_RV:CLH", + "28067": "P_RV:CLH", + "28068": "P_RV:CLH", + "28069": "P_RV:CLH", + "28070": "P_RV:CLH", + "28071": "P_RV:CLH", + "28072": "P_RV:CLH", + "28073": "P_RV:CLH", + "28074": "P_RV:CLH", + "28075": "P_RV:CLH", + "28076": "P_RV:CLH", + "28077": "P_RV:CLH", + "28078": "P_RV:CLH", + "28079": "P_RV:CLH", + "28080": "P_RV:CLH", + "28081": "P_RV:CLH", + "28082": "P_RV:CLH", + "28083": "P_RV:CLH", + "28084": "P_RV:CLH", + "28085": "P_RV:CLH", + "28086": "P_RV:CLH", + "28087": "P_RV:CLH", + "28088": "P_RV:CLH", + "28089": "P_RV:CLH", + "28090": "P_RV:CLH", + "28091": "P_RV:CLH", + "28092": "P_RV:CLH", + "28093": "P_RV:CLH", + "28094": "P_RV:CLH", + "28095": "P_RV:CLH", + "28096": "P_RV:CLH", + "28097": "P_RV:CLH", + "28098": "P_RV:CLH", + "28099": "P_RV:CLH", + "28100": "P_RV:CLH", + "28101": "P_RV:CLH", + "28102": "P_RV:CLH", + "28103": "P_RV:CLH", + "28104": "P_RV:CLH", + "28105": "P_RV:CLH", + "28106": "P_RV:CLH", + "28107": "P_RV:CLH", + "28108": "P_RV:CLH", + "28109": "P_RV:CLH", + "28110": "P_RV:CLH", + "28111": "P_RV:CLH", + "28112": "P_RV:CLH", + "28113": "P_RV:CLH", + "28114": "P_RV:CLH", + "28115": "P_RV:CLH", + "28116": "P_RV:CLH", + "28117": "P_RV:CLH", + "28118": "P_RV:CLH", + "28119": "P_RV:CLH", + "28120": "P_RV:CLH", + "28121": "P_RV:CLH", + "28122": "P_RV:CLH", + "28123": "P_RV:CLH", + "28124": "P_RV:CLH", + "28125": "P_RV:CLH", + "28126": "P_RV:CLH", + "28127": "P_RV:CLH", + "28128": "P_RV:CLH", + "28129": "P_RV:CLH", + "28130": "P_RV:CLH", + "28131": "P_RV:CLH", + "28132": "P_RV:CLH", + "28133": "P_RV:CLH", + "28134": "P_RV:CLH", + "28135": "P_RV:CLH", + "28136": "P_RV:CLH", + "28137": "P_RV:CLH", + "28138": "P_RV:CLH", + "28139": "P_RV:CLH", + "28140": "P_RV:CLH", + "28141": "P_RV:CLH", + "28142": "P_RV:CLH", + "28143": "P_RV:CLH", + "28144": "P_RV:CLH", + "28145": "P_RV:CLH", + "28146": "P_RV:CLH", + "28147": "P_RV:CLH", + "28148": "P_RV:CLH", + "28149": "P_RV:CLH", + "28150": "P_RV:CLH", + "28151": "P_RV:CLH", + "28152": "P_RV:CLH", + "28153": "P_RV:CLH", + "28154": "P_RV:CLH", + "28155": "P_RV:CLH", + "28156": "P_RV:CLH", + "28157": "P_RV:CLH", + "28158": "P_RV:CLH", + "28159": "P_RV:CLH", + "28160": "P_RV:CLH", + "28161": "P_RV:CLH", + "28162": "P_RV:CLH", + "28163": "P_RV:CLH", + "28164": "P_RV:CLH", + "28165": "P_RV:CLH", + "28166": "P_RV:CLH", + "28167": "P_RV:CLH", + "28168": "P_RV:CLH", + "28169": "P_RV:CLH", + "28170": "P_RV:CLH", + "28171": "P_RV:CLH", + "28172": "P_RV:CLH", + "28173": "P_RV:CLH", + "28174": "P_RV:CLH", + "28175": "P_RV:CLH", + "28176": "P_RV:CLH", + "28177": "P_RV:CLH", + "28178": "P_RV:CLH", + "28179": "P_RV:CLH", + "28180": "P_RV:CLH", + "28181": "P_RV:CLH", + "28182": "P_RV:CLH", + "28183": "P_RV:CLH", + "28184": "P_RV:CLH", + "28185": "P_RV:CLH", + "28186": "P_RV:CLH", + "28187": "P_RV:CLH", + "28188": "P_RV:CLH", + "28189": "P_RV:CLH", + "28190": "P_RV:CLH", + "28191": "P_RV:CLH", + "28192": "P_RV:CLH", + "28193": "P_RV:CLH", + "28194": "P_RV:CLH", + "28195": "P_RV:CLH", + "28196": "P_RV:CLH", + "28197": "P_RV:CLH", + "28198": "P_RV:CLH", + "28199": "P_RV:CLH", + "28200": "P_RV:CLH", + "28201": "P_RV:CLH", + "28202": "P_RV:CLH", + "28203": "P_RV:CLH", + "28204": "P_RV:CLH", + "28205": "P_RV:CLH", + "28206": "P_RV:CLH", + "28207": "P_RV:CLH", + "28208": "P_RV:CLH", + "28209": "P_RV:CLH", + "28210": "P_RV:CLH", + "28211": "P_RV:CLH", + "28212": "P_RV:CLH", + "28213": "P_RV:CLH", + "28214": "P_RV:CLH", + "28215": "P_RV:CLH", + "28216": "P_RV:CLH", + "28217": "P_RV:CLH", + "28218": "P_RV:CLH", + "28219": "P_RV:CLH", + "28220": "P_RV:CLH", + "28221": "P_RV:CLH", + "28222": "P_RV:CLH", + "28223": "P_RV:CLH", + "28224": "P_RV:CLH", + "28225": "P_RV:CLH", + "28226": "P_RV:CLH", + "28227": "P_RV:CLH", + "28228": "P_RV:CLH", + "28229": "P_RV:CLH", + "28230": "P_RV:CLH", + "28231": "P_RV:CLH", + "28232": "P_RV:CLH", + "28233": "P_RV:CLH", + "28234": "P_RV:CLH", + "28235": "P_RV:CLH", + "28236": "P_RV:CLH", + "28237": "P_RV:CLH", + "28238": "P_RV:CLH", + "28239": "P_RV:CLH", + "28240": "P_RV:CLH", + "28241": "P_RV:CLH", + "28242": "P_RV:CLH", + "28243": "P_RV:CLH", + "28244": "P_RV:CLH", + "28245": "P_RV:CLH", + "28246": "P_RV:CLH", + "28247": "P_RV:CLH", + "28248": "P_RV:CLH", + "28249": "P_RV:CLH", + "28250": "P_RV:CLH", + "28251": "P_RV:CLH", + "28252": "P_RV:CLH", + "28253": "P_RV:CLH", + "28254": "P_RV:CLH", + "28255": "P_RV:CLH", + "28256": "P_RV:CLH", + "28257": "P_RV:CLH", + "28258": "P_RV:CLH", + "28259": "P_RV:CLH", + "28260": "P_RV:CLH", + "28261": "P_RV:CLH", + "28262": "P_RV:CLH", + "28263": "P_RV:CLH", + "28264": "P_RV:CLH", + "28265": "P_RV:CLH", + "28266": "P_RV:CLH", + "28267": "P_RV:CLH", + "28268": "P_RV:CLH", + "28269": "P_RV:CLH", + "28270": "P_RV:CLH", + "28271": "P_RV:CLH", + "28272": "P_RV:CLH", + "28273": "P_RV:CLH", + "28274": "P_RV:CLH", + "28275": "P_RV:CLH", + "28276": "P_RV:CLH", + "28277": "P_RV:CLH", + "28278": "P_RV:CLH", + "28279": "P_RV:CLH", + "28280": "P_RV:CLH", + "28281": "P_RV:CLH", + "28282": "P_RV:CLH", + "28283": "P_RV:CLH", + "28284": "P_RV:CLH", + "28285": "P_RV:CLH", + "28286": "P_RV:CLH", + "28287": "P_RV:CLH", + "28288": "P_RV:CLH", + "28289": "P_RV:CLH", + "28290": "P_RV:CLH", + "28291": "P_RV:CLH", + "28292": "P_RV:CLH", + "28293": "P_RV:CLH", + "28294": "P_RV:CLH", + "28295": "P_RV:CLH", + "28296": "P_RV:CLH", + "28297": "P_RV:CLH", + "28298": "P_RV:CLH", + "28299": "P_RV:CLH", + "28300": "P_RV:CLH", + "28301": "P_RV:CLH", + "28302": "P_RV:CLH", + "28303": "P_RV:CLH", + "28304": "P_RV:CLH", + "28305": "P_RV:CLH", + "28306": "P_RV:CLH", + "28307": "P_RV:CLH", + "28308": "P_RV:CLH", + "28309": "P_RV:CLH", + "28310": "P_RV:CLH", + "28311": "P_RV:CLH", + "28312": "P_RV:CLH", + "28313": "P_RV:CLH", + "28314": "P_RV:CLH", + "28315": "P_RV:CLH", + "28316": "P_RV:CLH", + "28317": "P_RV:CLH", + "28318": "P_RV:CLH", + "28319": "P_RV:CLH", + "28320": "P_RV:CLH", + "28321": "P_RV:CLH", + "28322": "P_RV:CLH", + "28323": "P_RV:CLH", + "28324": "P_RV:CLH", + "28325": "P_RV:CLH", + "28326": "P_RV:CLH", + "28327": "P_RV:CLH", + "28328": "P_RV:CLH", + "28329": "P_RV:CLH", + "28330": "P_RV:CLH", + "28331": "P_RV:CLH", + "28332": "P_RV:CLH", + "28333": "P_RV:CLH", + "28334": "P_RV:CLH", + "28335": "P_RV:CLH", + "28336": "P_RV:CLH", + "28337": "P_RV:CLH", + "28338": "P_RV:CLH", + "28339": "P_RV:CLH", + "28340": "P_RV:CLH", + "28341": "P_RV:CLH", + "28342": "P_RV:CLH", + "28343": "P_RV:CLH", + "28344": "P_RV:CLH", + "28345": "P_RV:CLH", + "28346": "P_RV:CLH", + "28347": "P_RV:CLH", + "28348": "P_RV:CLH", + "28349": "P_RV:CLH", + "28350": "P_RV:CLH", + "28351": "P_RV:CLH", + "28352": "P_RV:CLH", + "28353": "P_RV:CLH", + "28354": "P_RV:CLH", + "28355": "P_RV:CLH", + "28356": "P_RV:CLH", + "28357": "P_RV:CLH", + "28358": "P_RV:CLH", + "28359": "P_RV:CLH", + "28360": "P_RV:CLH", + "28361": "P_RV:CLH", + "28362": "P_RV:CLH", + "28363": "P_RV:CLH", + "28364": "P_RV:CLH", + "28365": "P_RV:CLH", + "28366": "P_RV:CLH", + "28367": "P_RV:CLH", + "28368": "P_RV:CLH", + "28369": "P_RV:CLH", + "28370": "P_RV:CLH", + "28371": "P_RV:CLH", + "28372": "P_RV:CLH", + "28373": "P_RV:CLH", + "28374": "P_RV:CLH", + "28375": "P_RV:CLH", + "28376": "P_RV:CLH", + "28377": "P_RV:CLH", + "28378": "P_RV:CLH", + "28379": "P_RV:CLH", + "28380": "P_RV:CLH", + "28381": "P_RV:CLH", + "28382": "P_RV:CLH", + "28383": "P_RV:CLH", + "28384": "P_RV:CLH", + "28385": "P_RV:CLH", + "28386": "P_RV:CLH", + "28387": "P_RV:CLH", + "28388": "P_RV:CLH", + "28389": "P_RV:CLH", + "28390": "P_RV:CLH", + "28391": "P_RV:CLH", + "28392": "P_RV:CLH", + "28393": "P_RV:CLH", + "28394": "P_RV:CLH", + "28395": "P_RV:CLH", + "28396": "P_RV:CLH", + "28397": "P_RV:CLH", + "28398": "P_RV:CLH", + "28399": "P_RV:CLH", + "28400": "P_RV:CLH", + "28401": "P_RV:CLH", + "28402": "P_RV:CLH", + "28403": "P_RV:CLH", + "28404": "P_RV:CLH", + "28405": "P_RV:CLH", + "28406": "P_RV:CLH", + "28407": "P_RV:CLH", + "28408": "P_RV:CLH", + "28409": "P_RV:CLH", + "28410": "P_RV:CLH", + "28411": "P_RV:CLH", + "28412": "P_RV:CLH", + "28413": "P_RV:CLH", + "28414": "P_RV:CLH", + "28415": "P_RV:CLH", + "28416": "P_RV:CLH", + "28417": "P_RV:CLH", + "28418": "P_RV:CLH", + "28419": "P_RV:CLH", + "28420": "P_RV:CLH", + "28421": "P_RV:CLH", + "28422": "P_RV:CLH", + "28423": "P_RV:CLH", + "28424": "P_RV:CLH", + "28425": "P_RV:CLH", + "28426": "P_RV:CLH", + "28427": "P_RV:CLH", + "28428": "P_RV:CLH", + "28429": "P_RV:CLH", + "28430": "P_RV:CLH", + "28431": "P_RV:CLH", + "28432": "P_RV:CLH", + "28433": "P_RV:CLH", + "28434": "P_RV:CLH", + "28435": "P_RV:CLH", + "28436": "P_RV:CLH", + "28437": "P_RV:CLH", + "28438": "P_RV:CLH", + "28439": "P_RV:CLH", + "28440": "P_RV:CLH", + "28441": "P_RV:CLH", + "28442": "P_RV:CLH", + "28443": "P_RV:CLH", + "28444": "P_RV:CLH", + "28445": "P_RV:CLH", + "28446": "P_RV:CLH", + "28447": "P_RV:CLH", + "28448": "P_RV:CLH", + "28449": "P_RV:CLH", + "28450": "P_RV:CLH", + "28451": "P_RV:CLH", + "28452": "P_RV:CLH", + "28453": "P_RV:CLH", + "28454": "P_RV:CLH", + "28455": "P_RV:CLH", + "28456": "P_RV:CLH", + "28457": "P_RV:CLH", + "28458": "P_RV:CLH", + "28459": "P_RV:CLH", + "28460": "P_RV:CLH", + "28461": "P_RV:CLH", + "28462": "P_RV:CLH", + "28463": "P_RV:CLH", + "28464": "P_RV:CLH", + "28465": "P_RV:CLH", + "28466": "P_RV:CLH", + "28467": "P_RV:CLH", + "28468": "P_RV:CLH", + "28469": "P_RV:CLH", + "28470": "P_RV:CLH", + "28471": "P_RV:CLH", + "28472": "P_RV:CLH", + "28473": "P_RV:CLH", + "28474": "P_RV:CLH", + "28475": "P_RV:CLH", + "28476": "P_RV:CLH", + "28477": "P_RV:CLH", + "28478": "P_RV:CLH", + "28479": "P_RV:CLH", + "28480": "P_RV:CLH", + "28481": "P_RV:CLH", + "28482": "P_RV:CLH", + "28483": "P_RV:CLH", + "28484": "P_RV:CLH", + "28485": "P_RV:CLH", + "28486": "P_RV:CLH", + "28487": "P_RV:CLH", + "28488": "P_RV:CLH", + "28489": "P_RV:CLH", + "28490": "P_RV:CLH", + "28491": "P_RV:CLH", + "28492": "P_RV:CLH", + "28493": "P_RV:CLH", + "28494": "P_RV:CLH", + "28495": "P_RV:CLH", + "28496": "P_RV:CLH", + "28497": "P_RV:CLH", + "28498": "P_RV:CLH", + "28499": "P_RV:CLH", + "28500": "P_RV:CLH", + "28501": "P_RV:CLH", + "28502": "P_RV:CLH", + "28503": "P_RV:CLH", + "28504": "P_RV:CLH", + "28505": "P_RV:CLH", + "28506": "P_RV:CLH", + "28507": "P_RV:CLH", + "28508": "P_RV:CLH", + "28509": "P_RV:CLH", + "28510": "P_RV:CLH", + "28511": "P_RV:CLH", + "28512": "P_RV:CLH", + "28513": "P_RV:CLH", + "28514": "P_RV:CLH", + "28515": "P_RV:CLH", + "28516": "P_RV:CLH", + "28517": "P_RV:CLH", + "28518": "P_RV:CLH", + "28519": "P_RV:CLH", + "28520": "P_RV:CLH", + "28521": "P_RV:CLH", + "28522": "P_RV:CLH", + "28523": "P_RV:CLH", + "28524": "P_RV:CLH", + "28525": "P_RV:CLH", + "28526": "P_RV:CLH", + "28527": "P_RV:CLH", + "28528": "P_RV:CLH", + "28529": "P_RV:CLH", + "28530": "P_RV:CLH", + "28531": "P_RV:CLH", + "28532": "P_RV:CLH", + "28533": "P_RV:CLH", + "28534": "P_RV:CLH", + "28535": "P_RV:CLH", + "28536": "P_RV:CLH", + "28537": "P_RV:CLH", + "28538": "P_RV:CLH", + "28539": "P_RV:CLH", + "28540": "P_RV:CLH", + "28541": "P_RV:CLH", + "28542": "P_RV:CLH", + "28543": "P_RV:CLH", + "28544": "P_RV:CLH", + "28545": "P_RV:CLH", + "28546": "P_RV:CLH", + "28547": "P_RV:CLH", + "28548": "P_RV:CLH", + "28549": "P_RV:CLH", + "28550": "P_RV:CLH", + "28551": "P_RV:CLH", + "28552": "P_RV:CLH", + "28553": "P_RV:CLH", + "28554": "P_RV:CLH", + "28555": "P_RV:CLH", + "28556": "P_RV:CLH", + "28557": "P_RV:CLH", + "28558": "P_RV:CLH", + "28559": "P_RV:CLH", + "28560": "P_RV:CLH", + "28561": "P_RV:CLH", + "28562": "P_RV:CLH", + "28563": "P_RV:CLH", + "28564": "P_RV:CLH", + "28565": "P_RV:CLH", + "28566": "P_RV:CLH", + "28567": "P_RV:CLH", + "28568": "P_RV:CLH", + "28569": "P_RV:CLH", + "28570": "P_RV:CLH", + "28571": "P_RV:CLH", + "28572": "P_RV:CLH", + "28573": "P_RV:CLH", + "28574": "P_RV:CLH", + "28575": "P_RV:CLH", + "28576": "P_RV:CLH", + "28577": "P_RV:CLH", + "28578": "P_RV:CLH", + "28579": "P_RV:CLH", + "28580": "P_RV:CLH", + "28581": "P_RV:CLH", + "28582": "P_RV:CLH", + "28583": "P_RV:CLH", + "28584": "P_RV:CLH", + "28585": "P_RV:CLH", + "28586": "P_RV:CLH", + "28587": "P_RV:CLH", + "28588": "P_RV:CLH", + "28589": "P_RV:CLH", + "28590": "P_RV:CLH", + "28591": "P_RV:CLH", + "28592": "P_RV:CLH", + "28593": "P_RV:CLH", + "28594": "P_RV:CLH", + "28595": "P_RV:CLH", + "28596": "P_RV:CLH", + "28597": "P_RV:CLH", + "28598": "P_RV:CLH", + "28599": "P_RV:CLH", + "28600": "P_RV:CLH", + "28601": "P_RV:CLH", + "28602": "P_RV:CLH", + "28603": "P_RV:CLH", + "28604": "P_RV:CLH", + "28605": "P_RV:CLH", + "28606": "P_RV:CLH", + "28607": "P_RV:CLH", + "28608": "P_RV:CLH", + "28609": "P_RV:CLH", + "28610": "P_RV:CLH", + "28611": "P_RV:CLH", + "28612": "P_RV:CLH", + "28613": "P_RV:CLH", + "28614": "P_RV:CLH", + "28615": "P_RV:CLH", + "28616": "P_RV:CLH", + "28617": "P_RV:CLH", + "28618": "P_RV:CLH", + "28619": "P_RV:CLH", + "28620": "P_RV:CLH", + "28621": "P_RV:CLH", + "28622": "P_RV:CLH", + "28623": "P_RV:CLH", + "28624": "P_RV:CLH", + "28625": "P_RV:CLH", + "28626": "P_RV:CLH", + "28627": "P_RV:CLH", + "28628": "P_RV:CLH", + "28629": "P_RV:CLH", + "28630": "P_RV:CLH", + "28631": "P_RV:CLH", + "28632": "P_RV:CLH", + "28633": "P_RV:CLH", + "28634": "P_RV:CLH", + "28635": "P_RV:CLH", + "28636": "P_RV:CLH", + "28637": "P_RV:CLH", + "28638": "P_RV:CLH", + "28639": "P_RV:CLH", + "28640": "P_RV:CLH", + "28641": "P_RV:CLH", + "28642": "P_RV:CLH", + "28643": "P_RV:CLH", + "28644": "P_RV:CLH", + "28645": "P_RV:CLH", + "28646": "P_RV:CLH", + "28647": "P_RV:CLH", + "28648": "P_RV:CLH", + "28649": "P_RV:CLH", + "28650": "P_RV:CLH", + "28651": "P_RV:CLH", + "28652": "P_RV:CLH", + "28653": "P_RV:CLH", + "28654": "P_RV:CLH", + "28655": "P_RV:CLH", + "28656": "P_RV:CLH", + "28657": "P_RV:CLH", + "28658": "P_RV:CLH", + "28659": "P_RV:CLH", + "28660": "P_RV:CLH", + "28661": "P_RV:CLH", + "28662": "P_RV:CLH", + "28663": "P_RV:CLH", + "28664": "P_RV:CLH", + "28665": "P_RV:CLH", + "28666": "P_RV:CLH", + "28667": "P_RV:CLH", + "28668": "P_RV:CLH", + "28669": "P_RV:CLH", + "28670": "P_RV:CLH", + "28671": "P_RV:CLH", + "28672": "P_RV:CLH", + "28673": "P_RV:CLH", + "28674": "P_RV:CLH", + "28675": "P_RV:CLH", + "28676": "P_RV:CLH", + "28677": "P_RV:CLH", + "28678": "P_RV:CLH", + "28679": "P_RV:CLH", + "28680": "P_RV:CLH", + "28681": "P_RV:CLH", + "28682": "P_RV:CLH", + "28683": "P_RV:CLH", + "28684": "P_RV:CLH", + "28685": "P_RV:CLH", + "28686": "P_RV:CLH", + "28687": "P_RV:CLH", + "28688": "P_RV:CLH", + "28689": "P_RV:CLH", + "28690": "P_RV:CLH", + "28691": "P_RV:CLH", + "28692": "P_RV:CLH", + "28693": "P_RV:CLH", + "28694": "P_RV:CLH", + "28695": "P_RV:CLH", + "28696": "P_RV:CLH", + "28697": "P_RV:CLH", + "28698": "P_RV:CLH", + "28699": "P_RV:CLH", + "28700": "P_RV:CLH", + "28701": "P_RV:CLH", + "28702": "P_RV:CLH", + "28703": "P_RV:CLH", + "28704": "P_RV:CLH", + "28705": "P_RV:CLH", + "28706": "P_RV:CLH", + "28707": "P_RV:CLH", + "28708": "P_RV:CLH", + "28709": "P_RV:CLH", + "28710": "P_RV:CLH", + "28711": "P_RV:CLH", + "28712": "P_RV:CLH", + "28713": "P_RV:CLH", + "28714": "P_RV:CLH", + "28715": "P_RV:CLH", + "28716": "P_RV:CLH", + "28717": "P_RV:CLH", + "28718": "P_RV:CLH", + "28719": "P_RV:CLH", + "28720": "P_RV:CLH", + "28721": "P_RV:CLH", + "28722": "P_RV:CLH", + "28723": "P_RV:CLH", + "28724": "P_RV:CLH", + "28725": "P_RV:CLH", + "28726": "P_RV:CLH", + "28727": "P_RV:CLH", + "28728": "P_RV:CLH", + "28729": "P_RV:CLH", + "28730": "P_RV:CLH", + "28731": "P_RV:CLH", + "28732": "P_RV:CLH", + "28733": "P_RV:CLH", + "28734": "P_RV:CLH", + "28735": "P_RV:CLH", + "28736": "P_RV:CLH", + "28737": "P_RV:CLH", + "28738": "P_RV:CLH", + "28739": "P_RV:CLH", + "28740": "P_RV:CLH", + "28741": "P_RV:CLH", + "28742": "P_RV:CLH", + "28743": "P_RV:CLH", + "28744": "P_RV:CLH", + "28745": "P_RV:CLH", + "28746": "P_RV:CLH", + "28747": "P_RV:CLH", + "28748": "P_RV:CLH", + "28749": "P_RV:CLH", + "28750": "P_RV:CLH", + "28751": "P_RV:CLH", + "28752": "P_RV:CLH", + "28753": "P_RV:CLH", + "28754": "P_RV:CLH", + "28755": "P_RV:CLH", + "28756": "P_RV:CLH", + "28757": "P_RV:CLH", + "28758": "P_RV:CLH", + "28759": "P_RV:CLH", + "28760": "P_RV:CLH", + "28761": "P_RV:CLH", + "28762": "P_RV:CLH", + "28763": "P_RV:CLH", + "28764": "P_RV:CLH", + "28765": "P_RV:CLH", + "28766": "P_RV:CLH", + "28767": "P_RV:CLH", + "28768": "P_RV:CLH", + "28769": "P_RV:CLH", + "28770": "P_RV:CLH", + "28771": "P_RV:CLH", + "28772": "P_RV:CLH", + "28773": "P_RV:CLH", + "28774": "P_RV:CLH", + "28775": "P_RV:CLH", + "28776": "P_RV:CLH", + "28777": "P_RV:CLH", + "28778": "P_RV:CLH", + "28779": "P_RV:CLH", + "28780": "P_RV:CLH", + "28781": "P_RV:CLH", + "28782": "P_RV:CLH", + "28783": "P_RV:CLH", + "28784": "P_RV:CLH", + "28785": "P_RV:CLH", + "28786": "P_RV:CLH", + "28787": "P_RV:CLH", + "28788": "P_RV:CLH", + "28789": "P_RV:CLH", + "28790": "P_RV:CLH", + "28791": "P_RV:CLH", + "28792": "P_RV:CLH", + "28793": "P_RV:CLH", + "28794": "P_RV:CLH", + "28795": "P_RV:CLH", + "28796": "P_RV:CLH", + "28797": "P_RV:CLH", + "28798": "P_RV:CLH", + "28799": "P_RV:CLH", + "28800": "P_RV:CLH", + "28801": "P_RV:CLH", + "28802": "P_RV:CLH", + "28803": "P_RV:CLH", + "28804": "P_RV:CLH", + "28805": "P_RV:CLH", + "28806": "P_RV:CLH", + "28807": "P_RV:CLH", + "28808": "P_RV:CLH", + "28809": "P_RV:CLH", + "28810": "P_RV:CLH", + "28811": "P_RV:CLH", + "28812": "P_RV:CLH", + "28813": "P_RV:CLH", + "28814": "P_RV:CLH", + "28815": "P_RV:CLH", + "28816": "P_RV:CLH", + "28817": "P_RV:CLH", + "28818": "P_RV:CLH", + "28819": "P_RV:CLH", + "28820": "P_RV:CLH", + "28821": "P_RV:CLH", + "28822": "P_RV:CLH", + "28823": "P_RV:CLH", + "28824": "P_RV:CLH", + "28825": "P_RV:CLH", + "28826": "P_RV:CLH", + "28827": "P_RV:CLH", + "28828": "P_RV:CLH", + "28829": "P_RV:CLH", + "28830": "P_RV:CLH", + "28831": "P_RV:CLH", + "28832": "P_RV:CLH", + "28833": "P_RV:CLH", + "28834": "P_RV:CLH", + "28835": "P_RV:CLH", + "28836": "P_RV:CLH", + "28837": "P_RV:CLH", + "28838": "P_RV:CLH", + "28839": "P_RV:CLH", + "28840": "P_RV:CLH", + "28841": "P_RV:CLH", + "28842": "P_RV:CLH", + "28843": "P_RV:CLH", + "28844": "P_RV:CLH", + "28845": "P_RV:CLH", + "28846": "P_RV:CLH", + "28847": "P_RV:CLH", + "28848": "P_RV:CLH", + "28849": "P_RV:CLH", + "28850": "P_RV:CLH", + "28851": "P_RV:CLH", + "28852": "P_RV:CLH", + "28853": "P_RV:CLH", + "28854": "P_RV:CLH", + "28855": "P_RV:CLH", + "28856": "P_RV:CLH", + "28857": "P_RV:CLH", + "28858": "P_RV:CLH", + "28859": "P_RV:CLH", + "28860": "P_RV:CLH", + "28861": "P_RV:CLH", + "28862": "P_RV:CLH", + "28863": "P_RV:CLH", + "28864": "P_RV:CLH", + "28865": "P_RV:CLH", + "28866": "P_RV:CLH", + "28867": "P_RV:CLH", + "28868": "P_RV:CLH", + "28869": "P_RV:CLH", + "28870": "P_RV:CLH", + "28871": "P_RV:CLH", + "28872": "P_RV:CLH", + "28873": "P_RV:CLH", + "28874": "P_RV:CLH", + "28875": "P_RV:CLH", + "28876": "P_RV:CLH", + "28877": "P_RV:CLH", + "28878": "P_RV:CLH", + "28879": "P_RV:CLH", + "28880": "P_RV:CLH", + "28881": "P_RV:CLH", + "28882": "P_RV:CLH", + "28883": "P_RV:CLH", + "28884": "P_RV:CLH", + "28885": "P_RV:CLH", + "28886": "P_RV:CLH", + "28887": "P_RV:CLH", + "28888": "P_RV:CLH", + "28889": "P_RV:CLH", + "28890": "P_RV:CLH", + "28891": "P_RV:CLH", + "28892": "P_RV:CLH", + "28893": "P_RV:CLH", + "28894": "P_RV:CLH", + "28895": "P_RV:CLH", + "28896": "P_RV:CLH", + "28897": "P_RV:CLH", + "28898": "P_RV:CLH", + "28899": "P_RV:CLH", + "28900": "P_RV:CLH", + "28901": "P_RV:CLH", + "28902": "P_RV:CLH", + "28903": "P_RV:CLH", + "28904": "P_RV:CLH", + "28905": "P_RV:CLH", + "28906": "P_RV:CLH", + "28907": "P_RV:CLH", + "28908": "P_RV:CLH", + "28909": "P_RV:CLH", + "28910": "P_RV:CLH", + "28911": "P_RV:CLH", + "28912": "P_RV:CLH", + "28913": "P_RV:CLH", + "28914": "P_RV:CLH", + "28915": "P_RV:CLH", + "28916": "P_RV:CLH", + "28917": "P_RV:CLH", + "28918": "P_RV:CLH", + "28919": "P_RV:CLH", + "28920": "P_RV:CLH", + "28921": "P_RV:CLH", + "28922": "P_RV:CLH", + "28923": "P_RV:CLH", + "28924": "P_RV:CLH", + "28925": "P_RV:CLH", + "28926": "P_RV:CLH", + "28927": "P_RV:CLH", + "28928": "P_RV:CLH", + "28929": "P_RV:CLH", + "28930": "P_RV:CLH", + "28931": "P_RV:CLH", + "28932": "P_RV:CLH", + "28933": "P_RV:CLH", + "28934": "P_RV:CLH", + "28935": "P_RV:CLH", + "28936": "P_RV:CLH", + "28937": "P_RV:CLH", + "28938": "P_RV:CLH", + "28939": "P_RV:CLH", + "28940": "P_RV:CLH", + "28941": "P_RV:CLH", + "28942": "P_RV:CLH", + "28943": "P_RV:CLH", + "28944": "P_RV:CLH", + "28945": "P_RV:CLH", + "28946": "P_RV:CLH", + "28947": "P_RV:CLH", + "28948": "P_RV:CLH", + "28949": "P_RV:CLH", + "28950": "P_RV:CLH", + "28951": "P_RV:CLH", + "28952": "P_RV:CLH", + "28953": "P_RV:CLH", + "28954": "P_RV:CLH", + "28955": "P_RV:CLH", + "28956": "P_RV:CLH", + "28957": "P_RV:CLH", + "28958": "P_RV:CLH", + "28959": "P_RV:CLH", + "28960": "P_RV:CLH", + "28961": "P_RV:CLH", + "28962": "P_RV:CLH", + "28963": "P_RV:CLH", + "28964": "P_RV:CLH", + "28965": "P_RV:CLH", + "28966": "P_RV:CLH", + "28967": "P_RV:CLH", + "28968": "P_RV:CLH", + "28969": "P_RV:CLH", + "28970": "P_RV:CLH", + "28971": "P_RV:CLH", + "28972": "P_RV:CLH", + "28973": "P_RV:CLH", + "28974": "P_RV:CLH", + "28975": "P_RV:CLH", + "28976": "P_RV:CLH", + "28977": "P_RV:CLH", + "28978": "P_RV:CLH", + "28979": "P_RV:CLH", + "28980": "P_RV:CLH", + "28981": "P_RV:CLH", + "28982": "P_RV:CLH", + "28983": "P_RV:CLH", + "28984": "P_RV:CLH", + "28985": "P_RV:CLH", + "28986": "P_RV:CLH", + "28987": "P_RV:CLH", + "28988": "P_RV:CLH", + "28989": "P_RV:CLH", + "28990": "P_RV:CLH", + "28991": "P_RV:CLH", + "28992": "P_RV:CLH", + "28993": "P_RV:CLH", + "28994": "P_RV:CLH", + "28995": "P_RV:CLH", + "28996": "P_RV:CLH", + "28997": "P_RV:CLH", + "28998": "P_RV:CLH", + "28999": "P_RV:CLH", + "29000": "V_RV:CLH", + "29001": "V_RV:CLH", + "29002": "V_RV:CLH", + "29003": "V_RV:CLH", + "29004": "V_RV:CLH", + "29005": "V_RV:CLH", + "29006": "V_RV:CLH", + "29007": "V_RV:CLH", + "29008": "V_RV:CLH", + "29009": "V_RV:CLH", + "29010": "V_RV:CLH", + "29011": "V_RV:CLH", + "29012": "V_RV:CLH", + "29013": "V_RV:CLH", + "29014": "V_RV:CLH", + "29015": "V_RV:CLH", + "29016": "V_RV:CLH", + "29017": "V_RV:CLH", + "29018": "V_RV:CLH", + "29019": "V_RV:CLH", + "29020": "V_RV:CLH", + "29021": "V_RV:CLH", + "29022": "V_RV:CLH", + "29023": "V_RV:CLH", + "29024": "V_RV:CLH", + "29025": "V_RV:CLH", + "29026": "V_RV:CLH", + "29027": "V_RV:CLH", + "29028": "V_RV:CLH", + "29029": "V_RV:CLH", + "29030": "V_RV:CLH", + "29031": "V_RV:CLH", + "29032": "V_RV:CLH", + "29033": "V_RV:CLH", + "29034": "V_RV:CLH", + "29035": "V_RV:CLH", + "29036": "V_RV:CLH", + "29037": "V_RV:CLH", + "29038": "V_RV:CLH", + "29039": "V_RV:CLH", + "29040": "V_RV:CLH", + "29041": "V_RV:CLH", + "29042": "V_RV:CLH", + "29043": "V_RV:CLH", + "29044": "V_RV:CLH", + "29045": "V_RV:CLH", + "29046": "V_RV:CLH", + "29047": "V_RV:CLH", + "29048": "V_RV:CLH", + "29049": "V_RV:CLH", + "29050": "V_RV:CLH", + "29051": "V_RV:CLH", + "29052": "V_RV:CLH", + "29053": "V_RV:CLH", + "29054": "V_RV:CLH", + "29055": "V_RV:CLH", + "29056": "V_RV:CLH", + "29057": "V_RV:CLH", + "29058": "V_RV:CLH", + "29059": "V_RV:CLH", + "29060": "V_RV:CLH", + "29061": "V_RV:CLH", + "29062": "V_RV:CLH", + "29063": "V_RV:CLH", + "29064": "V_RV:CLH", + "29065": "V_RV:CLH", + "29066": "V_RV:CLH", + "29067": "V_RV:CLH", + "29068": "V_RV:CLH", + "29069": "V_RV:CLH", + "29070": "V_RV:CLH", + "29071": "V_RV:CLH", + "29072": "V_RV:CLH", + "29073": "V_RV:CLH", + "29074": "V_RV:CLH", + "29075": "V_RV:CLH", + "29076": "V_RV:CLH", + "29077": "V_RV:CLH", + "29078": "V_RV:CLH", + "29079": "V_RV:CLH", + "29080": "V_RV:CLH", + "29081": "V_RV:CLH", + "29082": "V_RV:CLH", + "29083": "V_RV:CLH", + "29084": "V_RV:CLH", + "29085": "V_RV:CLH", + "29086": "V_RV:CLH", + "29087": "V_RV:CLH", + "29088": "V_RV:CLH", + "29089": "V_RV:CLH", + "29090": "V_RV:CLH", + "29091": "V_RV:CLH", + "29092": "V_RV:CLH", + "29093": "V_RV:CLH", + "29094": "V_RV:CLH", + "29095": "V_RV:CLH", + "29096": "V_RV:CLH", + "29097": "V_RV:CLH", + "29098": "V_RV:CLH", + "29099": "V_RV:CLH", + "29100": "V_RV:CLH", + "29101": "V_RV:CLH", + "29102": "V_RV:CLH", + "29103": "V_RV:CLH", + "29104": "V_RV:CLH", + "29105": "V_RV:CLH", + "29106": "V_RV:CLH", + "29107": "V_RV:CLH", + "29108": "V_RV:CLH", + "29109": "V_RV:CLH", + "29110": "V_RV:CLH", + "29111": "V_RV:CLH", + "29112": "V_RV:CLH", + "29113": "V_RV:CLH", + "29114": "V_RV:CLH", + "29115": "V_RV:CLH", + "29116": "V_RV:CLH", + "29117": "V_RV:CLH", + "29118": "V_RV:CLH", + "29119": "V_RV:CLH", + "29120": "V_RV:CLH", + "29121": "V_RV:CLH", + "29122": "V_RV:CLH", + "29123": "V_RV:CLH", + "29124": "V_RV:CLH", + "29125": "V_RV:CLH", + "29126": "V_RV:CLH", + "29127": "V_RV:CLH", + "29128": "V_RV:CLH", + "29129": "V_RV:CLH", + "29130": "V_RV:CLH", + "29131": "V_RV:CLH", + "29132": "V_RV:CLH", + "29133": "V_RV:CLH", + "29134": "V_RV:CLH", + "29135": "V_RV:CLH", + "29136": "V_RV:CLH", + "29137": "V_RV:CLH", + "29138": "V_RV:CLH", + "29139": "V_RV:CLH", + "29140": "V_RV:CLH", + "29141": "V_RV:CLH", + "29142": "V_RV:CLH", + "29143": "V_RV:CLH", + "29144": "V_RV:CLH", + "29145": "V_RV:CLH", + "29146": "V_RV:CLH", + "29147": "V_RV:CLH", + "29148": "V_RV:CLH", + "29149": "V_RV:CLH", + "29150": "V_RV:CLH", + "29151": "V_RV:CLH", + "29152": "V_RV:CLH", + "29153": "V_RV:CLH", + "29154": "V_RV:CLH", + "29155": "V_RV:CLH", + "29156": "V_RV:CLH", + "29157": "V_RV:CLH", + "29158": "V_RV:CLH", + "29159": "V_RV:CLH", + "29160": "V_RV:CLH", + "29161": "V_RV:CLH", + "29162": "V_RV:CLH", + "29163": "V_RV:CLH", + "29164": "V_RV:CLH", + "29165": "V_RV:CLH", + "29166": "V_RV:CLH", + "29167": "V_RV:CLH", + "29168": "V_RV:CLH", + "29169": "V_RV:CLH", + "29170": "V_RV:CLH", + "29171": "V_RV:CLH", + "29172": "V_RV:CLH", + "29173": "V_RV:CLH", + "29174": "V_RV:CLH", + "29175": "V_RV:CLH", + "29176": "V_RV:CLH", + "29177": "V_RV:CLH", + "29178": "V_RV:CLH", + "29179": "V_RV:CLH", + "29180": "V_RV:CLH", + "29181": "V_RV:CLH", + "29182": "V_RV:CLH", + "29183": "V_RV:CLH", + "29184": "V_RV:CLH", + "29185": "V_RV:CLH", + "29186": "V_RV:CLH", + "29187": "V_RV:CLH", + "29188": "V_RV:CLH", + "29189": "V_RV:CLH", + "29190": "V_RV:CLH", + "29191": "V_RV:CLH", + "29192": "V_RV:CLH", + "29193": "V_RV:CLH", + "29194": "V_RV:CLH", + "29195": "V_RV:CLH", + "29196": "V_RV:CLH", + "29197": "V_RV:CLH", + "29198": "V_RV:CLH", + "29199": "V_RV:CLH", + "29200": "V_RV:CLH", + "29201": "V_RV:CLH", + "29202": "V_RV:CLH", + "29203": "V_RV:CLH", + "29204": "V_RV:CLH", + "29205": "V_RV:CLH", + "29206": "V_RV:CLH", + "29207": "V_RV:CLH", + "29208": "V_RV:CLH", + "29209": "V_RV:CLH", + "29210": "V_RV:CLH", + "29211": "V_RV:CLH", + "29212": "V_RV:CLH", + "29213": "V_RV:CLH", + "29214": "V_RV:CLH", + "29215": "V_RV:CLH", + "29216": "V_RV:CLH", + "29217": "V_RV:CLH", + "29218": "V_RV:CLH", + "29219": "V_RV:CLH", + "29220": "V_RV:CLH", + "29221": "V_RV:CLH", + "29222": "V_RV:CLH", + "29223": "V_RV:CLH", + "29224": "V_RV:CLH", + "29225": "V_RV:CLH", + "29226": "V_RV:CLH", + "29227": "V_RV:CLH", + "29228": "V_RV:CLH", + "29229": "V_RV:CLH", + "29230": "V_RV:CLH", + "29231": "V_RV:CLH", + "29232": "V_RV:CLH", + "29233": "V_RV:CLH", + "29234": "V_RV:CLH", + "29235": "V_RV:CLH", + "29236": "V_RV:CLH", + "29237": "V_RV:CLH", + "29238": "V_RV:CLH", + "29239": "V_RV:CLH", + "29240": "V_RV:CLH", + "29241": "V_RV:CLH", + "29242": "V_RV:CLH", + "29243": "V_RV:CLH", + "29244": "V_RV:CLH", + "29245": "V_RV:CLH", + "29246": "V_RV:CLH", + "29247": "V_RV:CLH", + "29248": "V_RV:CLH", + "29249": "V_RV:CLH", + "29250": "V_RV:CLH", + "29251": "V_RV:CLH", + "29252": "V_RV:CLH", + "29253": "V_RV:CLH", + "29254": "V_RV:CLH", + "29255": "V_RV:CLH", + "29256": "V_RV:CLH", + "29257": "V_RV:CLH", + "29258": "V_RV:CLH", + "29259": "V_RV:CLH", + "29260": "V_RV:CLH", + "29261": "V_RV:CLH", + "29262": "V_RV:CLH", + "29263": "V_RV:CLH", + "29264": "V_RV:CLH", + "29265": "V_RV:CLH", + "29266": "V_RV:CLH", + "29267": "V_RV:CLH", + "29268": "V_RV:CLH", + "29269": "V_RV:CLH", + "29270": "V_RV:CLH", + "29271": "V_RV:CLH", + "29272": "V_RV:CLH", + "29273": "V_RV:CLH", + "29274": "V_RV:CLH", + "29275": "V_RV:CLH", + "29276": "V_RV:CLH", + "29277": "V_RV:CLH", + "29278": "V_RV:CLH", + "29279": "V_RV:CLH", + "29280": "V_RV:CLH", + "29281": "V_RV:CLH", + "29282": "V_RV:CLH", + "29283": "V_RV:CLH", + "29284": "V_RV:CLH", + "29285": "V_RV:CLH", + "29286": "V_RV:CLH", + "29287": "V_RV:CLH", + "29288": "V_RV:CLH", + "29289": "V_RV:CLH", + "29290": "V_RV:CLH", + "29291": "V_RV:CLH", + "29292": "V_RV:CLH", + "29293": "V_RV:CLH", + "29294": "V_RV:CLH", + "29295": "V_RV:CLH", + "29296": "V_RV:CLH", + "29297": "V_RV:CLH", + "29298": "V_RV:CLH", + "29299": "V_RV:CLH", + "29300": "V_RV:CLH", + "29301": "V_RV:CLH", + "29302": "V_RV:CLH", + "29303": "V_RV:CLH", + "29304": "V_RV:CLH", + "29305": "V_RV:CLH", + "29306": "V_RV:CLH", + "29307": "V_RV:CLH", + "29308": "V_RV:CLH", + "29309": "V_RV:CLH", + "29310": "V_RV:CLH", + "29311": "V_RV:CLH", + "29312": "V_RV:CLH", + "29313": "V_RV:CLH", + "29314": "V_RV:CLH", + "29315": "V_RV:CLH", + "29316": "V_RV:CLH", + "29317": "V_RV:CLH", + "29318": "V_RV:CLH", + "29319": "V_RV:CLH", + "29320": "V_RV:CLH", + "29321": "V_RV:CLH", + "29322": "V_RV:CLH", + "29323": "V_RV:CLH", + "29324": "V_RV:CLH", + "29325": "V_RV:CLH", + "29326": "V_RV:CLH", + "29327": "V_RV:CLH", + "29328": "V_RV:CLH", + "29329": "V_RV:CLH", + "29330": "V_RV:CLH", + "29331": "V_RV:CLH", + "29332": "V_RV:CLH", + "29333": "V_RV:CLH", + "29334": "V_RV:CLH", + "29335": "V_RV:CLH", + "29336": "V_RV:CLH", + "29337": "V_RV:CLH", + "29338": "V_RV:CLH", + "29339": "V_RV:CLH", + "29340": "V_RV:CLH", + "29341": "V_RV:CLH", + "29342": "V_RV:CLH", + "29343": "V_RV:CLH", + "29344": "V_RV:CLH", + "29345": "V_RV:CLH", + "29346": "V_RV:CLH", + "29347": "V_RV:CLH", + "29348": "V_RV:CLH", + "29349": "V_RV:CLH", + "29350": "V_RV:CLH", + "29351": "V_RV:CLH", + "29352": "V_RV:CLH", + "29353": "V_RV:CLH", + "29354": "V_RV:CLH", + "29355": "V_RV:CLH", + "29356": "V_RV:CLH", + "29357": "V_RV:CLH", + "29358": "V_RV:CLH", + "29359": "V_RV:CLH", + "29360": "V_RV:CLH", + "29361": "V_RV:CLH", + "29362": "V_RV:CLH", + "29363": "V_RV:CLH", + "29364": "V_RV:CLH", + "29365": "V_RV:CLH", + "29366": "V_RV:CLH", + "29367": "V_RV:CLH", + "29368": "V_RV:CLH", + "29369": "V_RV:CLH", + "29370": "V_RV:CLH", + "29371": "V_RV:CLH", + "29372": "V_RV:CLH", + "29373": "V_RV:CLH", + "29374": "V_RV:CLH", + "29375": "V_RV:CLH", + "29376": "V_RV:CLH", + "29377": "V_RV:CLH", + "29378": "V_RV:CLH", + "29379": "V_RV:CLH", + "29380": "V_RV:CLH", + "29381": "V_RV:CLH", + "29382": "V_RV:CLH", + "29383": "V_RV:CLH", + "29384": "V_RV:CLH", + "29385": "V_RV:CLH", + "29386": "V_RV:CLH", + "29387": "V_RV:CLH", + "29388": "V_RV:CLH", + "29389": "V_RV:CLH", + "29390": "V_RV:CLH", + "29391": "V_RV:CLH", + "29392": "V_RV:CLH", + "29393": "V_RV:CLH", + "29394": "V_RV:CLH", + "29395": "V_RV:CLH", + "29396": "V_RV:CLH", + "29397": "V_RV:CLH", + "29398": "V_RV:CLH", + "29399": "V_RV:CLH", + "29400": "V_RV:CLH", + "29401": "V_RV:CLH", + "29402": "V_RV:CLH", + "29403": "V_RV:CLH", + "29404": "V_RV:CLH", + "29405": "V_RV:CLH", + "29406": "V_RV:CLH", + "29407": "V_RV:CLH", + "29408": "V_RV:CLH", + "29409": "V_RV:CLH", + "29410": "V_RV:CLH", + "29411": "V_RV:CLH", + "29412": "V_RV:CLH", + "29413": "V_RV:CLH", + "29414": "V_RV:CLH", + "29415": "V_RV:CLH", + "29416": "V_RV:CLH", + "29417": "V_RV:CLH", + "29418": "V_RV:CLH", + "29419": "V_RV:CLH", + "29420": "V_RV:CLH", + "29421": "V_RV:CLH", + "29422": "V_RV:CLH", + "29423": "V_RV:CLH", + "29424": "V_RV:CLH", + "29425": "V_RV:CLH", + "29426": "V_RV:CLH", + "29427": "V_RV:CLH", + "29428": "V_RV:CLH", + "29429": "V_RV:CLH", + "29430": "V_RV:CLH", + "29431": "V_RV:CLH", + "29432": "V_RV:CLH", + "29433": "V_RV:CLH", + "29434": "V_RV:CLH", + "29435": "V_RV:CLH", + "29436": "V_RV:CLH", + "29437": "V_RV:CLH", + "29438": "V_RV:CLH", + "29439": "V_RV:CLH", + "29440": "V_RV:CLH", + "29441": "V_RV:CLH", + "29442": "V_RV:CLH", + "29443": "V_RV:CLH", + "29444": "V_RV:CLH", + "29445": "V_RV:CLH", + "29446": "V_RV:CLH", + "29447": "V_RV:CLH", + "29448": "V_RV:CLH", + "29449": "V_RV:CLH", + "29450": "V_RV:CLH", + "29451": "V_RV:CLH", + "29452": "V_RV:CLH", + "29453": "V_RV:CLH", + "29454": "V_RV:CLH", + "29455": "V_RV:CLH", + "29456": "V_RV:CLH", + "29457": "V_RV:CLH", + "29458": "V_RV:CLH", + "29459": "V_RV:CLH", + "29460": "V_RV:CLH", + "29461": "V_RV:CLH", + "29462": "V_RV:CLH", + "29463": "V_RV:CLH", + "29464": "V_RV:CLH", + "29465": "V_RV:CLH", + "29466": "V_RV:CLH", + "29467": "V_RV:CLH", + "29468": "V_RV:CLH", + "29469": "V_RV:CLH", + "29470": "V_RV:CLH", + "29471": "V_RV:CLH", + "29472": "V_RV:CLH", + "29473": "V_RV:CLH", + "29474": "V_RV:CLH", + "29475": "V_RV:CLH", + "29476": "V_RV:CLH", + "29477": "V_RV:CLH", + "29478": "V_RV:CLH", + "29479": "V_RV:CLH", + "29480": "V_RV:CLH", + "29481": "V_RV:CLH", + "29482": "V_RV:CLH", + "29483": "V_RV:CLH", + "29484": "V_RV:CLH", + "29485": "V_RV:CLH", + "29486": "V_RV:CLH", + "29487": "V_RV:CLH", + "29488": "V_RV:CLH", + "29489": "V_RV:CLH", + "29490": "V_RV:CLH", + "29491": "V_RV:CLH", + "29492": "V_RV:CLH", + "29493": "V_RV:CLH", + "29494": "V_RV:CLH", + "29495": "V_RV:CLH", + "29496": "V_RV:CLH", + "29497": "V_RV:CLH", + "29498": "V_RV:CLH", + "29499": "V_RV:CLH", + "29500": "V_RV:CLH", + "29501": "V_RV:CLH", + "29502": "V_RV:CLH", + "29503": "V_RV:CLH", + "29504": "V_RV:CLH", + "29505": "V_RV:CLH", + "29506": "V_RV:CLH", + "29507": "V_RV:CLH", + "29508": "V_RV:CLH", + "29509": "V_RV:CLH", + "29510": "V_RV:CLH", + "29511": "V_RV:CLH", + "29512": "V_RV:CLH", + "29513": "V_RV:CLH", + "29514": "V_RV:CLH", + "29515": "V_RV:CLH", + "29516": "V_RV:CLH", + "29517": "V_RV:CLH", + "29518": "V_RV:CLH", + "29519": "V_RV:CLH", + "29520": "V_RV:CLH", + "29521": "V_RV:CLH", + "29522": "V_RV:CLH", + "29523": "V_RV:CLH", + "29524": "V_RV:CLH", + "29525": "V_RV:CLH", + "29526": "V_RV:CLH", + "29527": "V_RV:CLH", + "29528": "V_RV:CLH", + "29529": "V_RV:CLH", + "29530": "V_RV:CLH", + "29531": "V_RV:CLH", + "29532": "V_RV:CLH", + "29533": "V_RV:CLH", + "29534": "V_RV:CLH", + "29535": "V_RV:CLH", + "29536": "V_RV:CLH", + "29537": "V_RV:CLH", + "29538": "V_RV:CLH", + "29539": "V_RV:CLH", + "29540": "V_RV:CLH", + "29541": "V_RV:CLH", + "29542": "V_RV:CLH", + "29543": "V_RV:CLH", + "29544": "V_RV:CLH", + "29545": "V_RV:CLH", + "29546": "V_RV:CLH", + "29547": "V_RV:CLH", + "29548": "V_RV:CLH", + "29549": "V_RV:CLH", + "29550": "V_RV:CLH", + "29551": "V_RV:CLH", + "29552": "V_RV:CLH", + "29553": "V_RV:CLH", + "29554": "V_RV:CLH", + "29555": "V_RV:CLH", + "29556": "V_RV:CLH", + "29557": "V_RV:CLH", + "29558": "V_RV:CLH", + "29559": "V_RV:CLH", + "29560": "V_RV:CLH", + "29561": "V_RV:CLH", + "29562": "V_RV:CLH", + "29563": "V_RV:CLH", + "29564": "V_RV:CLH", + "29565": "V_RV:CLH", + "29566": "V_RV:CLH", + "29567": "V_RV:CLH", + "29568": "V_RV:CLH", + "29569": "V_RV:CLH", + "29570": "V_RV:CLH", + "29571": "V_RV:CLH", + "29572": "V_RV:CLH", + "29573": "V_RV:CLH", + "29574": "V_RV:CLH", + "29575": "V_RV:CLH", + "29576": "V_RV:CLH", + "29577": "V_RV:CLH", + "29578": "V_RV:CLH", + "29579": "V_RV:CLH", + "29580": "V_RV:CLH", + "29581": "V_RV:CLH", + "29582": "V_RV:CLH", + "29583": "V_RV:CLH", + "29584": "V_RV:CLH", + "29585": "V_RV:CLH", + "29586": "V_RV:CLH", + "29587": "V_RV:CLH", + "29588": "V_RV:CLH", + "29589": "V_RV:CLH", + "29590": "V_RV:CLH", + "29591": "V_RV:CLH", + "29592": "V_RV:CLH", + "29593": "V_RV:CLH", + "29594": "V_RV:CLH", + "29595": "V_RV:CLH", + "29596": "V_RV:CLH", + "29597": "V_RV:CLH", + "29598": "V_RV:CLH", + "29599": "V_RV:CLH", + "29600": "V_RV:CLH", + "29601": "V_RV:CLH", + "29602": "V_RV:CLH", + "29603": "V_RV:CLH", + "29604": "V_RV:CLH", + "29605": "V_RV:CLH", + "29606": "V_RV:CLH", + "29607": "V_RV:CLH", + "29608": "V_RV:CLH", + "29609": "V_RV:CLH", + "29610": "V_RV:CLH", + "29611": "V_RV:CLH", + "29612": "V_RV:CLH", + "29613": "V_RV:CLH", + "29614": "V_RV:CLH", + "29615": "V_RV:CLH", + "29616": "V_RV:CLH", + "29617": "V_RV:CLH", + "29618": "V_RV:CLH", + "29619": "V_RV:CLH", + "29620": "V_RV:CLH", + "29621": "V_RV:CLH", + "29622": "V_RV:CLH", + "29623": "V_RV:CLH", + "29624": "V_RV:CLH", + "29625": "V_RV:CLH", + "29626": "V_RV:CLH", + "29627": "V_RV:CLH", + "29628": "V_RV:CLH", + "29629": "V_RV:CLH", + "29630": "V_RV:CLH", + "29631": "V_RV:CLH", + "29632": "V_RV:CLH", + "29633": "V_RV:CLH", + "29634": "V_RV:CLH", + "29635": "V_RV:CLH", + "29636": "V_RV:CLH", + "29637": "V_RV:CLH", + "29638": "V_RV:CLH", + "29639": "V_RV:CLH", + "29640": "V_RV:CLH", + "29641": "V_RV:CLH", + "29642": "V_RV:CLH", + "29643": "V_RV:CLH", + "29644": "V_RV:CLH", + "29645": "V_RV:CLH", + "29646": "V_RV:CLH", + "29647": "V_RV:CLH", + "29648": "V_RV:CLH", + "29649": "V_RV:CLH", + "29650": "V_RV:CLH", + "29651": "V_RV:CLH", + "29652": "V_RV:CLH", + "29653": "V_RV:CLH", + "29654": "V_RV:CLH", + "29655": "V_RV:CLH", + "29656": "V_RV:CLH", + "29657": "V_RV:CLH", + "29658": "V_RV:CLH", + "29659": "V_RV:CLH", + "29660": "V_RV:CLH", + "29661": "V_RV:CLH", + "29662": "V_RV:CLH", + "29663": "V_RV:CLH", + "29664": "V_RV:CLH", + "29665": "V_RV:CLH", + "29666": "V_RV:CLH", + "29667": "V_RV:CLH", + "29668": "V_RV:CLH", + "29669": "V_RV:CLH", + "29670": "V_RV:CLH", + "29671": "V_RV:CLH", + "29672": "V_RV:CLH", + "29673": "V_RV:CLH", + "29674": "V_RV:CLH", + "29675": "V_RV:CLH", + "29676": "V_RV:CLH", + "29677": "V_RV:CLH", + "29678": "V_RV:CLH", + "29679": "V_RV:CLH", + "29680": "V_RV:CLH", + "29681": "V_RV:CLH", + "29682": "V_RV:CLH", + "29683": "V_RV:CLH", + "29684": "V_RV:CLH", + "29685": "V_RV:CLH", + "29686": "V_RV:CLH", + "29687": "V_RV:CLH", + "29688": "V_RV:CLH", + "29689": "V_RV:CLH", + "29690": "V_RV:CLH", + "29691": "V_RV:CLH", + "29692": "V_RV:CLH", + "29693": "V_RV:CLH", + "29694": "V_RV:CLH", + "29695": "V_RV:CLH", + "29696": "V_RV:CLH", + "29697": "V_RV:CLH", + "29698": "V_RV:CLH", + "29699": "V_RV:CLH", + "29700": "V_RV:CLH", + "29701": "V_RV:CLH", + "29702": "V_RV:CLH", + "29703": "V_RV:CLH", + "29704": "V_RV:CLH", + "29705": "V_RV:CLH", + "29706": "V_RV:CLH", + "29707": "V_RV:CLH", + "29708": "V_RV:CLH", + "29709": "V_RV:CLH", + "29710": "V_RV:CLH", + "29711": "V_RV:CLH", + "29712": "V_RV:CLH", + "29713": "V_RV:CLH", + "29714": "V_RV:CLH", + "29715": "V_RV:CLH", + "29716": "V_RV:CLH", + "29717": "V_RV:CLH", + "29718": "V_RV:CLH", + "29719": "V_RV:CLH", + "29720": "V_RV:CLH", + "29721": "V_RV:CLH", + "29722": "V_RV:CLH", + "29723": "V_RV:CLH", + "29724": "V_RV:CLH", + "29725": "V_RV:CLH", + "29726": "V_RV:CLH", + "29727": "V_RV:CLH", + "29728": "V_RV:CLH", + "29729": "V_RV:CLH", + "29730": "V_RV:CLH", + "29731": "V_RV:CLH", + "29732": "V_RV:CLH", + "29733": "V_RV:CLH", + "29734": "V_RV:CLH", + "29735": "V_RV:CLH", + "29736": "V_RV:CLH", + "29737": "V_RV:CLH", + "29738": "V_RV:CLH", + "29739": "V_RV:CLH", + "29740": "V_RV:CLH", + "29741": "V_RV:CLH", + "29742": "V_RV:CLH", + "29743": "V_RV:CLH", + "29744": "V_RV:CLH", + "29745": "V_RV:CLH", + "29746": "V_RV:CLH", + "29747": "V_RV:CLH", + "29748": "V_RV:CLH", + "29749": "V_RV:CLH", + "29750": "V_RV:CLH", + "29751": "V_RV:CLH", + "29752": "V_RV:CLH", + "29753": "V_RV:CLH", + "29754": "V_RV:CLH", + "29755": "V_RV:CLH", + "29756": "V_RV:CLH", + "29757": "V_RV:CLH", + "29758": "V_RV:CLH", + "29759": "V_RV:CLH", + "29760": "V_RV:CLH", + "29761": "V_RV:CLH", + "29762": "V_RV:CLH", + "29763": "V_RV:CLH", + "29764": "V_RV:CLH", + "29765": "V_RV:CLH", + "29766": "V_RV:CLH", + "29767": "V_RV:CLH", + "29768": "V_RV:CLH", + "29769": "V_RV:CLH", + "29770": "V_RV:CLH", + "29771": "V_RV:CLH", + "29772": "V_RV:CLH", + "29773": "V_RV:CLH", + "29774": "V_RV:CLH", + "29775": "V_RV:CLH", + "29776": "V_RV:CLH", + "29777": "V_RV:CLH", + "29778": "V_RV:CLH", + "29779": "V_RV:CLH", + "29780": "V_RV:CLH", + "29781": "V_RV:CLH", + "29782": "V_RV:CLH", + "29783": "V_RV:CLH", + "29784": "V_RV:CLH", + "29785": "V_RV:CLH", + "29786": "V_RV:CLH", + "29787": "V_RV:CLH", + "29788": "V_RV:CLH", + "29789": "V_RV:CLH", + "29790": "V_RV:CLH", + "29791": "V_RV:CLH", + "29792": "V_RV:CLH", + "29793": "V_RV:CLH", + "29794": "V_RV:CLH", + "29795": "V_RV:CLH", + "29796": "V_RV:CLH", + "29797": "V_RV:CLH", + "29798": "V_RV:CLH", + "29799": "V_RV:CLH", + "29800": "V_RV:CLH", + "29801": "V_RV:CLH", + "29802": "V_RV:CLH", + "29803": "V_RV:CLH", + "29804": "V_RV:CLH", + "29805": "V_RV:CLH", + "29806": "V_RV:CLH", + "29807": "V_RV:CLH", + "29808": "V_RV:CLH", + "29809": "V_RV:CLH", + "29810": "V_RV:CLH", + "29811": "V_RV:CLH", + "29812": "V_RV:CLH", + "29813": "V_RV:CLH", + "29814": "V_RV:CLH", + "29815": "V_RV:CLH", + "29816": "V_RV:CLH", + "29817": "V_RV:CLH", + "29818": "V_RV:CLH", + "29819": "V_RV:CLH", + "29820": "V_RV:CLH", + "29821": "V_RV:CLH", + "29822": "V_RV:CLH", + "29823": "V_RV:CLH", + "29824": "V_RV:CLH", + "29825": "V_RV:CLH", + "29826": "V_RV:CLH", + "29827": "V_RV:CLH", + "29828": "V_RV:CLH", + "29829": "V_RV:CLH", + "29830": "V_RV:CLH", + "29831": "V_RV:CLH", + "29832": "V_RV:CLH", + "29833": "V_RV:CLH", + "29834": "V_RV:CLH", + "29835": "V_RV:CLH", + "29836": "V_RV:CLH", + "29837": "V_RV:CLH", + "29838": "V_RV:CLH", + "29839": "V_RV:CLH", + "29840": "V_RV:CLH", + "29841": "V_RV:CLH", + "29842": "V_RV:CLH", + "29843": "V_RV:CLH", + "29844": "V_RV:CLH", + "29845": "V_RV:CLH", + "29846": "V_RV:CLH", + "29847": "V_RV:CLH", + "29848": "V_RV:CLH", + "29849": "V_RV:CLH", + "29850": "V_RV:CLH", + "29851": "V_RV:CLH", + "29852": "V_RV:CLH", + "29853": "V_RV:CLH", + "29854": "V_RV:CLH", + "29855": "V_RV:CLH", + "29856": "V_RV:CLH", + "29857": "V_RV:CLH", + "29858": "V_RV:CLH", + "29859": "V_RV:CLH", + "29860": "V_RV:CLH", + "29861": "V_RV:CLH", + "29862": "V_RV:CLH", + "29863": "V_RV:CLH", + "29864": "V_RV:CLH", + "29865": "V_RV:CLH", + "29866": "V_RV:CLH", + "29867": "V_RV:CLH", + "29868": "V_RV:CLH", + "29869": "V_RV:CLH", + "29870": "V_RV:CLH", + "29871": "V_RV:CLH", + "29872": "V_RV:CLH", + "29873": "V_RV:CLH", + "29874": "V_RV:CLH", + "29875": "V_RV:CLH", + "29876": "V_RV:CLH", + "29877": "V_RV:CLH", + "29878": "V_RV:CLH", + "29879": "V_RV:CLH", + "29880": "V_RV:CLH", + "29881": "V_RV:CLH", + "29882": "V_RV:CLH", + "29883": "V_RV:CLH", + "29884": "V_RV:CLH", + "29885": "V_RV:CLH", + "29886": "V_RV:CLH", + "29887": "V_RV:CLH", + "29888": "V_RV:CLH", + "29889": "V_RV:CLH", + "29890": "V_RV:CLH", + "29891": "V_RV:CLH", + "29892": "V_RV:CLH", + "29893": "V_RV:CLH", + "29894": "V_RV:CLH", + "29895": "V_RV:CLH", + "29896": "V_RV:CLH", + "29897": "V_RV:CLH", + "29898": "V_RV:CLH", + "29899": "V_RV:CLH", + "29900": "V_RV:CLH", + "29901": "V_RV:CLH", + "29902": "V_RV:CLH", + "29903": "V_RV:CLH", + "29904": "V_RV:CLH", + "29905": "V_RV:CLH", + "29906": "V_RV:CLH", + "29907": "V_RV:CLH", + "29908": "V_RV:CLH", + "29909": "V_RV:CLH", + "29910": "V_RV:CLH", + "29911": "V_RV:CLH", + "29912": "V_RV:CLH", + "29913": "V_RV:CLH", + "29914": "V_RV:CLH", + "29915": "V_RV:CLH", + "29916": "V_RV:CLH", + "29917": "V_RV:CLH", + "29918": "V_RV:CLH", + "29919": "V_RV:CLH", + "29920": "V_RV:CLH", + "29921": "V_RV:CLH", + "29922": "V_RV:CLH", + "29923": "V_RV:CLH", + "29924": "V_RV:CLH", + "29925": "V_RV:CLH", + "29926": "V_RV:CLH", + "29927": "V_RV:CLH", + "29928": "V_RV:CLH", + "29929": "V_RV:CLH", + "29930": "V_RV:CLH", + "29931": "V_RV:CLH", + "29932": "V_RV:CLH", + "29933": "V_RV:CLH", + "29934": "V_RV:CLH", + "29935": "V_RV:CLH", + "29936": "V_RV:CLH", + "29937": "V_RV:CLH", + "29938": "V_RV:CLH", + "29939": "V_RV:CLH", + "29940": "V_RV:CLH", + "29941": "V_RV:CLH", + "29942": "V_RV:CLH", + "29943": "V_RV:CLH", + "29944": "V_RV:CLH", + "29945": "V_RV:CLH", + "29946": "V_RV:CLH", + "29947": "V_RV:CLH", + "29948": "V_RV:CLH", + "29949": "V_RV:CLH", + "29950": "V_RV:CLH", + "29951": "V_RV:CLH", + "29952": "V_RV:CLH", + "29953": "V_RV:CLH", + "29954": "V_RV:CLH", + "29955": "V_RV:CLH", + "29956": "V_RV:CLH", + "29957": "V_RV:CLH", + "29958": "V_RV:CLH", + "29959": "V_RV:CLH", + "29960": "V_RV:CLH", + "29961": "V_RV:CLH", + "29962": "V_RV:CLH", + "29963": "V_RV:CLH", + "29964": "V_RV:CLH", + "29965": "V_RV:CLH", + "29966": "V_RV:CLH", + "29967": "V_RV:CLH", + "29968": "V_RV:CLH", + "29969": "V_RV:CLH", + "29970": "V_RV:CLH", + "29971": "V_RV:CLH", + "29972": "V_RV:CLH", + "29973": "V_RV:CLH", + "29974": "V_RV:CLH", + "29975": "V_RV:CLH", + "29976": "V_RV:CLH", + "29977": "V_RV:CLH", + "29978": "V_RV:CLH", + "29979": "V_RV:CLH", + "29980": "V_RV:CLH", + "29981": "V_RV:CLH", + "29982": "V_RV:CLH", + "29983": "V_RV:CLH", + "29984": "V_RV:CLH", + "29985": "V_RV:CLH", + "29986": "V_RV:CLH", + "29987": "V_RV:CLH", + "29988": "V_RV:CLH", + "29989": "V_RV:CLH", + "29990": "V_RV:CLH", + "29991": "V_RV:CLH", + "29992": "V_RV:CLH", + "29993": "V_RV:CLH", + "29994": "V_RV:CLH", + "29995": "V_RV:CLH", + "29996": "V_RV:CLH", + "29997": "V_RV:CLH", + "29998": "V_RV:CLH", + "29999": "V_RV:CLH", + "30000": "Q_RV:CLH", + "30001": "Q_RV:CLH", + "30002": "Q_RV:CLH", + "30003": "Q_RV:CLH", + "30004": "Q_RV:CLH", + "30005": "Q_RV:CLH", + "30006": "Q_RV:CLH", + "30007": "Q_RV:CLH", + "30008": "Q_RV:CLH", + "30009": "Q_RV:CLH", + "30010": "Q_RV:CLH", + "30011": "Q_RV:CLH", + "30012": "Q_RV:CLH", + "30013": "Q_RV:CLH", + "30014": "Q_RV:CLH", + "30015": "Q_RV:CLH", + "30016": "Q_RV:CLH", + "30017": "Q_RV:CLH", + "30018": "Q_RV:CLH", + "30019": "Q_RV:CLH", + "30020": "Q_RV:CLH", + "30021": "Q_RV:CLH", + "30022": "Q_RV:CLH", + "30023": "Q_RV:CLH", + "30024": "Q_RV:CLH", + "30025": "Q_RV:CLH", + "30026": "Q_RV:CLH", + "30027": "Q_RV:CLH", + "30028": "Q_RV:CLH", + "30029": "Q_RV:CLH", + "30030": "Q_RV:CLH", + "30031": "Q_RV:CLH", + "30032": "Q_RV:CLH", + "30033": "Q_RV:CLH", + "30034": "Q_RV:CLH", + "30035": "Q_RV:CLH", + "30036": "Q_RV:CLH", + "30037": "Q_RV:CLH", + "30038": "Q_RV:CLH", + "30039": "Q_RV:CLH", + "30040": "Q_RV:CLH", + "30041": "Q_RV:CLH", + "30042": "Q_RV:CLH", + "30043": "Q_RV:CLH", + "30044": "Q_RV:CLH", + "30045": "Q_RV:CLH", + "30046": "Q_RV:CLH", + "30047": "Q_RV:CLH", + "30048": "Q_RV:CLH", + "30049": "Q_RV:CLH", + "30050": "Q_RV:CLH", + "30051": "Q_RV:CLH", + "30052": "Q_RV:CLH", + "30053": "Q_RV:CLH", + "30054": "Q_RV:CLH", + "30055": "Q_RV:CLH", + "30056": "Q_RV:CLH", + "30057": "Q_RV:CLH", + "30058": "Q_RV:CLH", + "30059": "Q_RV:CLH", + "30060": "Q_RV:CLH", + "30061": "Q_RV:CLH", + "30062": "Q_RV:CLH", + "30063": "Q_RV:CLH", + "30064": "Q_RV:CLH", + "30065": "Q_RV:CLH", + "30066": "Q_RV:CLH", + "30067": "Q_RV:CLH", + "30068": "Q_RV:CLH", + "30069": "Q_RV:CLH", + "30070": "Q_RV:CLH", + "30071": "Q_RV:CLH", + "30072": "Q_RV:CLH", + "30073": "Q_RV:CLH", + "30074": "Q_RV:CLH", + "30075": "Q_RV:CLH", + "30076": "Q_RV:CLH", + "30077": "Q_RV:CLH", + "30078": "Q_RV:CLH", + "30079": "Q_RV:CLH", + "30080": "Q_RV:CLH", + "30081": "Q_RV:CLH", + "30082": "Q_RV:CLH", + "30083": "Q_RV:CLH", + "30084": "Q_RV:CLH", + "30085": "Q_RV:CLH", + "30086": "Q_RV:CLH", + "30087": "Q_RV:CLH", + "30088": "Q_RV:CLH", + "30089": "Q_RV:CLH", + "30090": "Q_RV:CLH", + "30091": "Q_RV:CLH", + "30092": "Q_RV:CLH", + "30093": "Q_RV:CLH", + "30094": "Q_RV:CLH", + "30095": "Q_RV:CLH", + "30096": "Q_RV:CLH", + "30097": "Q_RV:CLH", + "30098": "Q_RV:CLH", + "30099": "Q_RV:CLH", + "30100": "Q_RV:CLH", + "30101": "Q_RV:CLH", + "30102": "Q_RV:CLH", + "30103": "Q_RV:CLH", + "30104": "Q_RV:CLH", + "30105": "Q_RV:CLH", + "30106": "Q_RV:CLH", + "30107": "Q_RV:CLH", + "30108": "Q_RV:CLH", + "30109": "Q_RV:CLH", + "30110": "Q_RV:CLH", + "30111": "Q_RV:CLH", + "30112": "Q_RV:CLH", + "30113": "Q_RV:CLH", + "30114": "Q_RV:CLH", + "30115": "Q_RV:CLH", + "30116": "Q_RV:CLH", + "30117": "Q_RV:CLH", + "30118": "Q_RV:CLH", + "30119": "Q_RV:CLH", + "30120": "Q_RV:CLH", + "30121": "Q_RV:CLH", + "30122": "Q_RV:CLH", + "30123": "Q_RV:CLH", + "30124": "Q_RV:CLH", + "30125": "Q_RV:CLH", + "30126": "Q_RV:CLH", + "30127": "Q_RV:CLH", + "30128": "Q_RV:CLH", + "30129": "Q_RV:CLH", + "30130": "Q_RV:CLH", + "30131": "Q_RV:CLH", + "30132": "Q_RV:CLH", + "30133": "Q_RV:CLH", + "30134": "Q_RV:CLH", + "30135": "Q_RV:CLH", + "30136": "Q_RV:CLH", + "30137": "Q_RV:CLH", + "30138": "Q_RV:CLH", + "30139": "Q_RV:CLH", + "30140": "Q_RV:CLH", + "30141": "Q_RV:CLH", + "30142": "Q_RV:CLH", + "30143": "Q_RV:CLH", + "30144": "Q_RV:CLH", + "30145": "Q_RV:CLH", + "30146": "Q_RV:CLH", + "30147": "Q_RV:CLH", + "30148": "Q_RV:CLH", + "30149": "Q_RV:CLH", + "30150": "Q_RV:CLH", + "30151": "Q_RV:CLH", + "30152": "Q_RV:CLH", + "30153": "Q_RV:CLH", + "30154": "Q_RV:CLH", + "30155": "Q_RV:CLH", + "30156": "Q_RV:CLH", + "30157": "Q_RV:CLH", + "30158": "Q_RV:CLH", + "30159": "Q_RV:CLH", + "30160": "Q_RV:CLH", + "30161": "Q_RV:CLH", + "30162": "Q_RV:CLH", + "30163": "Q_RV:CLH", + "30164": "Q_RV:CLH", + "30165": "Q_RV:CLH", + "30166": "Q_RV:CLH", + "30167": "Q_RV:CLH", + "30168": "Q_RV:CLH", + "30169": "Q_RV:CLH", + "30170": "Q_RV:CLH", + "30171": "Q_RV:CLH", + "30172": "Q_RV:CLH", + "30173": "Q_RV:CLH", + "30174": "Q_RV:CLH", + "30175": "Q_RV:CLH", + "30176": "Q_RV:CLH", + "30177": "Q_RV:CLH", + "30178": "Q_RV:CLH", + "30179": "Q_RV:CLH", + "30180": "Q_RV:CLH", + "30181": "Q_RV:CLH", + "30182": "Q_RV:CLH", + "30183": "Q_RV:CLH", + "30184": "Q_RV:CLH", + "30185": "Q_RV:CLH", + "30186": "Q_RV:CLH", + "30187": "Q_RV:CLH", + "30188": "Q_RV:CLH", + "30189": "Q_RV:CLH", + "30190": "Q_RV:CLH", + "30191": "Q_RV:CLH", + "30192": "Q_RV:CLH", + "30193": "Q_RV:CLH", + "30194": "Q_RV:CLH", + "30195": "Q_RV:CLH", + "30196": "Q_RV:CLH", + "30197": "Q_RV:CLH", + "30198": "Q_RV:CLH", + "30199": "Q_RV:CLH", + "30200": "Q_RV:CLH", + "30201": "Q_RV:CLH", + "30202": "Q_RV:CLH", + "30203": "Q_RV:CLH", + "30204": "Q_RV:CLH", + "30205": "Q_RV:CLH", + "30206": "Q_RV:CLH", + "30207": "Q_RV:CLH", + "30208": "Q_RV:CLH", + "30209": "Q_RV:CLH", + "30210": "Q_RV:CLH", + "30211": "Q_RV:CLH", + "30212": "Q_RV:CLH", + "30213": "Q_RV:CLH", + "30214": "Q_RV:CLH", + "30215": "Q_RV:CLH", + "30216": "Q_RV:CLH", + "30217": "Q_RV:CLH", + "30218": "Q_RV:CLH", + "30219": "Q_RV:CLH", + "30220": "Q_RV:CLH", + "30221": "Q_RV:CLH", + "30222": "Q_RV:CLH", + "30223": "Q_RV:CLH", + "30224": "Q_RV:CLH", + "30225": "Q_RV:CLH", + "30226": "Q_RV:CLH", + "30227": "Q_RV:CLH", + "30228": "Q_RV:CLH", + "30229": "Q_RV:CLH", + "30230": "Q_RV:CLH", + "30231": "Q_RV:CLH", + "30232": "Q_RV:CLH", + "30233": "Q_RV:CLH", + "30234": "Q_RV:CLH", + "30235": "Q_RV:CLH", + "30236": "Q_RV:CLH", + "30237": "Q_RV:CLH", + "30238": "Q_RV:CLH", + "30239": "Q_RV:CLH", + "30240": "Q_RV:CLH", + "30241": "Q_RV:CLH", + "30242": "Q_RV:CLH", + "30243": "Q_RV:CLH", + "30244": "Q_RV:CLH", + "30245": "Q_RV:CLH", + "30246": "Q_RV:CLH", + "30247": "Q_RV:CLH", + "30248": "Q_RV:CLH", + "30249": "Q_RV:CLH", + "30250": "Q_RV:CLH", + "30251": "Q_RV:CLH", + "30252": "Q_RV:CLH", + "30253": "Q_RV:CLH", + "30254": "Q_RV:CLH", + "30255": "Q_RV:CLH", + "30256": "Q_RV:CLH", + "30257": "Q_RV:CLH", + "30258": "Q_RV:CLH", + "30259": "Q_RV:CLH", + "30260": "Q_RV:CLH", + "30261": "Q_RV:CLH", + "30262": "Q_RV:CLH", + "30263": "Q_RV:CLH", + "30264": "Q_RV:CLH", + "30265": "Q_RV:CLH", + "30266": "Q_RV:CLH", + "30267": "Q_RV:CLH", + "30268": "Q_RV:CLH", + "30269": "Q_RV:CLH", + "30270": "Q_RV:CLH", + "30271": "Q_RV:CLH", + "30272": "Q_RV:CLH", + "30273": "Q_RV:CLH", + "30274": "Q_RV:CLH", + "30275": "Q_RV:CLH", + "30276": "Q_RV:CLH", + "30277": "Q_RV:CLH", + "30278": "Q_RV:CLH", + "30279": "Q_RV:CLH", + "30280": "Q_RV:CLH", + "30281": "Q_RV:CLH", + "30282": "Q_RV:CLH", + "30283": "Q_RV:CLH", + "30284": "Q_RV:CLH", + "30285": "Q_RV:CLH", + "30286": "Q_RV:CLH", + "30287": "Q_RV:CLH", + "30288": "Q_RV:CLH", + "30289": "Q_RV:CLH", + "30290": "Q_RV:CLH", + "30291": "Q_RV:CLH", + "30292": "Q_RV:CLH", + "30293": "Q_RV:CLH", + "30294": "Q_RV:CLH", + "30295": "Q_RV:CLH", + "30296": "Q_RV:CLH", + "30297": "Q_RV:CLH", + "30298": "Q_RV:CLH", + "30299": "Q_RV:CLH", + "30300": "Q_RV:CLH", + "30301": "Q_RV:CLH", + "30302": "Q_RV:CLH", + "30303": "Q_RV:CLH", + "30304": "Q_RV:CLH", + "30305": "Q_RV:CLH", + "30306": "Q_RV:CLH", + "30307": "Q_RV:CLH", + "30308": "Q_RV:CLH", + "30309": "Q_RV:CLH", + "30310": "Q_RV:CLH", + "30311": "Q_RV:CLH", + "30312": "Q_RV:CLH", + "30313": "Q_RV:CLH", + "30314": "Q_RV:CLH", + "30315": "Q_RV:CLH", + "30316": "Q_RV:CLH", + "30317": "Q_RV:CLH", + "30318": "Q_RV:CLH", + "30319": "Q_RV:CLH", + "30320": "Q_RV:CLH", + "30321": "Q_RV:CLH", + "30322": "Q_RV:CLH", + "30323": "Q_RV:CLH", + "30324": "Q_RV:CLH", + "30325": "Q_RV:CLH", + "30326": "Q_RV:CLH", + "30327": "Q_RV:CLH", + "30328": "Q_RV:CLH", + "30329": "Q_RV:CLH", + "30330": "Q_RV:CLH", + "30331": "Q_RV:CLH", + "30332": "Q_RV:CLH", + "30333": "Q_RV:CLH", + "30334": "Q_RV:CLH", + "30335": "Q_RV:CLH", + "30336": "Q_RV:CLH", + "30337": "Q_RV:CLH", + "30338": "Q_RV:CLH", + "30339": "Q_RV:CLH", + "30340": "Q_RV:CLH", + "30341": "Q_RV:CLH", + "30342": "Q_RV:CLH", + "30343": "Q_RV:CLH", + "30344": "Q_RV:CLH", + "30345": "Q_RV:CLH", + "30346": "Q_RV:CLH", + "30347": "Q_RV:CLH", + "30348": "Q_RV:CLH", + "30349": "Q_RV:CLH", + "30350": "Q_RV:CLH", + "30351": "Q_RV:CLH", + "30352": "Q_RV:CLH", + "30353": "Q_RV:CLH", + "30354": "Q_RV:CLH", + "30355": "Q_RV:CLH", + "30356": "Q_RV:CLH", + "30357": "Q_RV:CLH", + "30358": "Q_RV:CLH", + "30359": "Q_RV:CLH", + "30360": "Q_RV:CLH", + "30361": "Q_RV:CLH", + "30362": "Q_RV:CLH", + "30363": "Q_RV:CLH", + "30364": "Q_RV:CLH", + "30365": "Q_RV:CLH", + "30366": "Q_RV:CLH", + "30367": "Q_RV:CLH", + "30368": "Q_RV:CLH", + "30369": "Q_RV:CLH", + "30370": "Q_RV:CLH", + "30371": "Q_RV:CLH", + "30372": "Q_RV:CLH", + "30373": "Q_RV:CLH", + "30374": "Q_RV:CLH", + "30375": "Q_RV:CLH", + "30376": "Q_RV:CLH", + "30377": "Q_RV:CLH", + "30378": "Q_RV:CLH", + "30379": "Q_RV:CLH", + "30380": "Q_RV:CLH", + "30381": "Q_RV:CLH", + "30382": "Q_RV:CLH", + "30383": "Q_RV:CLH", + "30384": "Q_RV:CLH", + "30385": "Q_RV:CLH", + "30386": "Q_RV:CLH", + "30387": "Q_RV:CLH", + "30388": "Q_RV:CLH", + "30389": "Q_RV:CLH", + "30390": "Q_RV:CLH", + "30391": "Q_RV:CLH", + "30392": "Q_RV:CLH", + "30393": "Q_RV:CLH", + "30394": "Q_RV:CLH", + "30395": "Q_RV:CLH", + "30396": "Q_RV:CLH", + "30397": "Q_RV:CLH", + "30398": "Q_RV:CLH", + "30399": "Q_RV:CLH", + "30400": "Q_RV:CLH", + "30401": "Q_RV:CLH", + "30402": "Q_RV:CLH", + "30403": "Q_RV:CLH", + "30404": "Q_RV:CLH", + "30405": "Q_RV:CLH", + "30406": "Q_RV:CLH", + "30407": "Q_RV:CLH", + "30408": "Q_RV:CLH", + "30409": "Q_RV:CLH", + "30410": "Q_RV:CLH", + "30411": "Q_RV:CLH", + "30412": "Q_RV:CLH", + "30413": "Q_RV:CLH", + "30414": "Q_RV:CLH", + "30415": "Q_RV:CLH", + "30416": "Q_RV:CLH", + "30417": "Q_RV:CLH", + "30418": "Q_RV:CLH", + "30419": "Q_RV:CLH", + "30420": "Q_RV:CLH", + "30421": "Q_RV:CLH", + "30422": "Q_RV:CLH", + "30423": "Q_RV:CLH", + "30424": "Q_RV:CLH", + "30425": "Q_RV:CLH", + "30426": "Q_RV:CLH", + "30427": "Q_RV:CLH", + "30428": "Q_RV:CLH", + "30429": "Q_RV:CLH", + "30430": "Q_RV:CLH", + "30431": "Q_RV:CLH", + "30432": "Q_RV:CLH", + "30433": "Q_RV:CLH", + "30434": "Q_RV:CLH", + "30435": "Q_RV:CLH", + "30436": "Q_RV:CLH", + "30437": "Q_RV:CLH", + "30438": "Q_RV:CLH", + "30439": "Q_RV:CLH", + "30440": "Q_RV:CLH", + "30441": "Q_RV:CLH", + "30442": "Q_RV:CLH", + "30443": "Q_RV:CLH", + "30444": "Q_RV:CLH", + "30445": "Q_RV:CLH", + "30446": "Q_RV:CLH", + "30447": "Q_RV:CLH", + "30448": "Q_RV:CLH", + "30449": "Q_RV:CLH", + "30450": "Q_RV:CLH", + "30451": "Q_RV:CLH", + "30452": "Q_RV:CLH", + "30453": "Q_RV:CLH", + "30454": "Q_RV:CLH", + "30455": "Q_RV:CLH", + "30456": "Q_RV:CLH", + "30457": "Q_RV:CLH", + "30458": "Q_RV:CLH", + "30459": "Q_RV:CLH", + "30460": "Q_RV:CLH", + "30461": "Q_RV:CLH", + "30462": "Q_RV:CLH", + "30463": "Q_RV:CLH", + "30464": "Q_RV:CLH", + "30465": "Q_RV:CLH", + "30466": "Q_RV:CLH", + "30467": "Q_RV:CLH", + "30468": "Q_RV:CLH", + "30469": "Q_RV:CLH", + "30470": "Q_RV:CLH", + "30471": "Q_RV:CLH", + "30472": "Q_RV:CLH", + "30473": "Q_RV:CLH", + "30474": "Q_RV:CLH", + "30475": "Q_RV:CLH", + "30476": "Q_RV:CLH", + "30477": "Q_RV:CLH", + "30478": "Q_RV:CLH", + "30479": "Q_RV:CLH", + "30480": "Q_RV:CLH", + "30481": "Q_RV:CLH", + "30482": "Q_RV:CLH", + "30483": "Q_RV:CLH", + "30484": "Q_RV:CLH", + "30485": "Q_RV:CLH", + "30486": "Q_RV:CLH", + "30487": "Q_RV:CLH", + "30488": "Q_RV:CLH", + "30489": "Q_RV:CLH", + "30490": "Q_RV:CLH", + "30491": "Q_RV:CLH", + "30492": "Q_RV:CLH", + "30493": "Q_RV:CLH", + "30494": "Q_RV:CLH", + "30495": "Q_RV:CLH", + "30496": "Q_RV:CLH", + "30497": "Q_RV:CLH", + "30498": "Q_RV:CLH", + "30499": "Q_RV:CLH", + "30500": "Q_RV:CLH", + "30501": "Q_RV:CLH", + "30502": "Q_RV:CLH", + "30503": "Q_RV:CLH", + "30504": "Q_RV:CLH", + "30505": "Q_RV:CLH", + "30506": "Q_RV:CLH", + "30507": "Q_RV:CLH", + "30508": "Q_RV:CLH", + "30509": "Q_RV:CLH", + "30510": "Q_RV:CLH", + "30511": "Q_RV:CLH", + "30512": "Q_RV:CLH", + "30513": "Q_RV:CLH", + "30514": "Q_RV:CLH", + "30515": "Q_RV:CLH", + "30516": "Q_RV:CLH", + "30517": "Q_RV:CLH", + "30518": "Q_RV:CLH", + "30519": "Q_RV:CLH", + "30520": "Q_RV:CLH", + "30521": "Q_RV:CLH", + "30522": "Q_RV:CLH", + "30523": "Q_RV:CLH", + "30524": "Q_RV:CLH", + "30525": "Q_RV:CLH", + "30526": "Q_RV:CLH", + "30527": "Q_RV:CLH", + "30528": "Q_RV:CLH", + "30529": "Q_RV:CLH", + "30530": "Q_RV:CLH", + "30531": "Q_RV:CLH", + "30532": "Q_RV:CLH", + "30533": "Q_RV:CLH", + "30534": "Q_RV:CLH", + "30535": "Q_RV:CLH", + "30536": "Q_RV:CLH", + "30537": "Q_RV:CLH", + "30538": "Q_RV:CLH", + "30539": "Q_RV:CLH", + "30540": "Q_RV:CLH", + "30541": "Q_RV:CLH", + "30542": "Q_RV:CLH", + "30543": "Q_RV:CLH", + "30544": "Q_RV:CLH", + "30545": "Q_RV:CLH", + "30546": "Q_RV:CLH", + "30547": "Q_RV:CLH", + "30548": "Q_RV:CLH", + "30549": "Q_RV:CLH", + "30550": "Q_RV:CLH", + "30551": "Q_RV:CLH", + "30552": "Q_RV:CLH", + "30553": "Q_RV:CLH", + "30554": "Q_RV:CLH", + "30555": "Q_RV:CLH", + "30556": "Q_RV:CLH", + "30557": "Q_RV:CLH", + "30558": "Q_RV:CLH", + "30559": "Q_RV:CLH", + "30560": "Q_RV:CLH", + "30561": "Q_RV:CLH", + "30562": "Q_RV:CLH", + "30563": "Q_RV:CLH", + "30564": "Q_RV:CLH", + "30565": "Q_RV:CLH", + "30566": "Q_RV:CLH", + "30567": "Q_RV:CLH", + "30568": "Q_RV:CLH", + "30569": "Q_RV:CLH", + "30570": "Q_RV:CLH", + "30571": "Q_RV:CLH", + "30572": "Q_RV:CLH", + "30573": "Q_RV:CLH", + "30574": "Q_RV:CLH", + "30575": "Q_RV:CLH", + "30576": "Q_RV:CLH", + "30577": "Q_RV:CLH", + "30578": "Q_RV:CLH", + "30579": "Q_RV:CLH", + "30580": "Q_RV:CLH", + "30581": "Q_RV:CLH", + "30582": "Q_RV:CLH", + "30583": "Q_RV:CLH", + "30584": "Q_RV:CLH", + "30585": "Q_RV:CLH", + "30586": "Q_RV:CLH", + "30587": "Q_RV:CLH", + "30588": "Q_RV:CLH", + "30589": "Q_RV:CLH", + "30590": "Q_RV:CLH", + "30591": "Q_RV:CLH", + "30592": "Q_RV:CLH", + "30593": "Q_RV:CLH", + "30594": "Q_RV:CLH", + "30595": "Q_RV:CLH", + "30596": "Q_RV:CLH", + "30597": "Q_RV:CLH", + "30598": "Q_RV:CLH", + "30599": "Q_RV:CLH", + "30600": "Q_RV:CLH", + "30601": "Q_RV:CLH", + "30602": "Q_RV:CLH", + "30603": "Q_RV:CLH", + "30604": "Q_RV:CLH", + "30605": "Q_RV:CLH", + "30606": "Q_RV:CLH", + "30607": "Q_RV:CLH", + "30608": "Q_RV:CLH", + "30609": "Q_RV:CLH", + "30610": "Q_RV:CLH", + "30611": "Q_RV:CLH", + "30612": "Q_RV:CLH", + "30613": "Q_RV:CLH", + "30614": "Q_RV:CLH", + "30615": "Q_RV:CLH", + "30616": "Q_RV:CLH", + "30617": "Q_RV:CLH", + "30618": "Q_RV:CLH", + "30619": "Q_RV:CLH", + "30620": "Q_RV:CLH", + "30621": "Q_RV:CLH", + "30622": "Q_RV:CLH", + "30623": "Q_RV:CLH", + "30624": "Q_RV:CLH", + "30625": "Q_RV:CLH", + "30626": "Q_RV:CLH", + "30627": "Q_RV:CLH", + "30628": "Q_RV:CLH", + "30629": "Q_RV:CLH", + "30630": "Q_RV:CLH", + "30631": "Q_RV:CLH", + "30632": "Q_RV:CLH", + "30633": "Q_RV:CLH", + "30634": "Q_RV:CLH", + "30635": "Q_RV:CLH", + "30636": "Q_RV:CLH", + "30637": "Q_RV:CLH", + "30638": "Q_RV:CLH", + "30639": "Q_RV:CLH", + "30640": "Q_RV:CLH", + "30641": "Q_RV:CLH", + "30642": "Q_RV:CLH", + "30643": "Q_RV:CLH", + "30644": "Q_RV:CLH", + "30645": "Q_RV:CLH", + "30646": "Q_RV:CLH", + "30647": "Q_RV:CLH", + "30648": "Q_RV:CLH", + "30649": "Q_RV:CLH", + "30650": "Q_RV:CLH", + "30651": "Q_RV:CLH", + "30652": "Q_RV:CLH", + "30653": "Q_RV:CLH", + "30654": "Q_RV:CLH", + "30655": "Q_RV:CLH", + "30656": "Q_RV:CLH", + "30657": "Q_RV:CLH", + "30658": "Q_RV:CLH", + "30659": "Q_RV:CLH", + "30660": "Q_RV:CLH", + "30661": "Q_RV:CLH", + "30662": "Q_RV:CLH", + "30663": "Q_RV:CLH", + "30664": "Q_RV:CLH", + "30665": "Q_RV:CLH", + "30666": "Q_RV:CLH", + "30667": "Q_RV:CLH", + "30668": "Q_RV:CLH", + "30669": "Q_RV:CLH", + "30670": "Q_RV:CLH", + "30671": "Q_RV:CLH", + "30672": "Q_RV:CLH", + "30673": "Q_RV:CLH", + "30674": "Q_RV:CLH", + "30675": "Q_RV:CLH", + "30676": "Q_RV:CLH", + "30677": "Q_RV:CLH", + "30678": "Q_RV:CLH", + "30679": "Q_RV:CLH", + "30680": "Q_RV:CLH", + "30681": "Q_RV:CLH", + "30682": "Q_RV:CLH", + "30683": "Q_RV:CLH", + "30684": "Q_RV:CLH", + "30685": "Q_RV:CLH", + "30686": "Q_RV:CLH", + "30687": "Q_RV:CLH", + "30688": "Q_RV:CLH", + "30689": "Q_RV:CLH", + "30690": "Q_RV:CLH", + "30691": "Q_RV:CLH", + "30692": "Q_RV:CLH", + "30693": "Q_RV:CLH", + "30694": "Q_RV:CLH", + "30695": "Q_RV:CLH", + "30696": "Q_RV:CLH", + "30697": "Q_RV:CLH", + "30698": "Q_RV:CLH", + "30699": "Q_RV:CLH", + "30700": "Q_RV:CLH", + "30701": "Q_RV:CLH", + "30702": "Q_RV:CLH", + "30703": "Q_RV:CLH", + "30704": "Q_RV:CLH", + "30705": "Q_RV:CLH", + "30706": "Q_RV:CLH", + "30707": "Q_RV:CLH", + "30708": "Q_RV:CLH", + "30709": "Q_RV:CLH", + "30710": "Q_RV:CLH", + "30711": "Q_RV:CLH", + "30712": "Q_RV:CLH", + "30713": "Q_RV:CLH", + "30714": "Q_RV:CLH", + "30715": "Q_RV:CLH", + "30716": "Q_RV:CLH", + "30717": "Q_RV:CLH", + "30718": "Q_RV:CLH", + "30719": "Q_RV:CLH", + "30720": "Q_RV:CLH", + "30721": "Q_RV:CLH", + "30722": "Q_RV:CLH", + "30723": "Q_RV:CLH", + "30724": "Q_RV:CLH", + "30725": "Q_RV:CLH", + "30726": "Q_RV:CLH", + "30727": "Q_RV:CLH", + "30728": "Q_RV:CLH", + "30729": "Q_RV:CLH", + "30730": "Q_RV:CLH", + "30731": "Q_RV:CLH", + "30732": "Q_RV:CLH", + "30733": "Q_RV:CLH", + "30734": "Q_RV:CLH", + "30735": "Q_RV:CLH", + "30736": "Q_RV:CLH", + "30737": "Q_RV:CLH", + "30738": "Q_RV:CLH", + "30739": "Q_RV:CLH", + "30740": "Q_RV:CLH", + "30741": "Q_RV:CLH", + "30742": "Q_RV:CLH", + "30743": "Q_RV:CLH", + "30744": "Q_RV:CLH", + "30745": "Q_RV:CLH", + "30746": "Q_RV:CLH", + "30747": "Q_RV:CLH", + "30748": "Q_RV:CLH", + "30749": "Q_RV:CLH", + "30750": "Q_RV:CLH", + "30751": "Q_RV:CLH", + "30752": "Q_RV:CLH", + "30753": "Q_RV:CLH", + "30754": "Q_RV:CLH", + "30755": "Q_RV:CLH", + "30756": "Q_RV:CLH", + "30757": "Q_RV:CLH", + "30758": "Q_RV:CLH", + "30759": "Q_RV:CLH", + "30760": "Q_RV:CLH", + "30761": "Q_RV:CLH", + "30762": "Q_RV:CLH", + "30763": "Q_RV:CLH", + "30764": "Q_RV:CLH", + "30765": "Q_RV:CLH", + "30766": "Q_RV:CLH", + "30767": "Q_RV:CLH", + "30768": "Q_RV:CLH", + "30769": "Q_RV:CLH", + "30770": "Q_RV:CLH", + "30771": "Q_RV:CLH", + "30772": "Q_RV:CLH", + "30773": "Q_RV:CLH", + "30774": "Q_RV:CLH", + "30775": "Q_RV:CLH", + "30776": "Q_RV:CLH", + "30777": "Q_RV:CLH", + "30778": "Q_RV:CLH", + "30779": "Q_RV:CLH", + "30780": "Q_RV:CLH", + "30781": "Q_RV:CLH", + "30782": "Q_RV:CLH", + "30783": "Q_RV:CLH", + "30784": "Q_RV:CLH", + "30785": "Q_RV:CLH", + "30786": "Q_RV:CLH", + "30787": "Q_RV:CLH", + "30788": "Q_RV:CLH", + "30789": "Q_RV:CLH", + "30790": "Q_RV:CLH", + "30791": "Q_RV:CLH", + "30792": "Q_RV:CLH", + "30793": "Q_RV:CLH", + "30794": "Q_RV:CLH", + "30795": "Q_RV:CLH", + "30796": "Q_RV:CLH", + "30797": "Q_RV:CLH", + "30798": "Q_RV:CLH", + "30799": "Q_RV:CLH", + "30800": "Q_RV:CLH", + "30801": "Q_RV:CLH", + "30802": "Q_RV:CLH", + "30803": "Q_RV:CLH", + "30804": "Q_RV:CLH", + "30805": "Q_RV:CLH", + "30806": "Q_RV:CLH", + "30807": "Q_RV:CLH", + "30808": "Q_RV:CLH", + "30809": "Q_RV:CLH", + "30810": "Q_RV:CLH", + "30811": "Q_RV:CLH", + "30812": "Q_RV:CLH", + "30813": "Q_RV:CLH", + "30814": "Q_RV:CLH", + "30815": "Q_RV:CLH", + "30816": "Q_RV:CLH", + "30817": "Q_RV:CLH", + "30818": "Q_RV:CLH", + "30819": "Q_RV:CLH", + "30820": "Q_RV:CLH", + "30821": "Q_RV:CLH", + "30822": "Q_RV:CLH", + "30823": "Q_RV:CLH", + "30824": "Q_RV:CLH", + "30825": "Q_RV:CLH", + "30826": "Q_RV:CLH", + "30827": "Q_RV:CLH", + "30828": "Q_RV:CLH", + "30829": "Q_RV:CLH", + "30830": "Q_RV:CLH", + "30831": "Q_RV:CLH", + "30832": "Q_RV:CLH", + "30833": "Q_RV:CLH", + "30834": "Q_RV:CLH", + "30835": "Q_RV:CLH", + "30836": "Q_RV:CLH", + "30837": "Q_RV:CLH", + "30838": "Q_RV:CLH", + "30839": "Q_RV:CLH", + "30840": "Q_RV:CLH", + "30841": "Q_RV:CLH", + "30842": "Q_RV:CLH", + "30843": "Q_RV:CLH", + "30844": "Q_RV:CLH", + "30845": "Q_RV:CLH", + "30846": "Q_RV:CLH", + "30847": "Q_RV:CLH", + "30848": "Q_RV:CLH", + "30849": "Q_RV:CLH", + "30850": "Q_RV:CLH", + "30851": "Q_RV:CLH", + "30852": "Q_RV:CLH", + "30853": "Q_RV:CLH", + "30854": "Q_RV:CLH", + "30855": "Q_RV:CLH", + "30856": "Q_RV:CLH", + "30857": "Q_RV:CLH", + "30858": "Q_RV:CLH", + "30859": "Q_RV:CLH", + "30860": "Q_RV:CLH", + "30861": "Q_RV:CLH", + "30862": "Q_RV:CLH", + "30863": "Q_RV:CLH", + "30864": "Q_RV:CLH", + "30865": "Q_RV:CLH", + "30866": "Q_RV:CLH", + "30867": "Q_RV:CLH", + "30868": "Q_RV:CLH", + "30869": "Q_RV:CLH", + "30870": "Q_RV:CLH", + "30871": "Q_RV:CLH", + "30872": "Q_RV:CLH", + "30873": "Q_RV:CLH", + "30874": "Q_RV:CLH", + "30875": "Q_RV:CLH", + "30876": "Q_RV:CLH", + "30877": "Q_RV:CLH", + "30878": "Q_RV:CLH", + "30879": "Q_RV:CLH", + "30880": "Q_RV:CLH", + "30881": "Q_RV:CLH", + "30882": "Q_RV:CLH", + "30883": "Q_RV:CLH", + "30884": "Q_RV:CLH", + "30885": "Q_RV:CLH", + "30886": "Q_RV:CLH", + "30887": "Q_RV:CLH", + "30888": "Q_RV:CLH", + "30889": "Q_RV:CLH", + "30890": "Q_RV:CLH", + "30891": "Q_RV:CLH", + "30892": "Q_RV:CLH", + "30893": "Q_RV:CLH", + "30894": "Q_RV:CLH", + "30895": "Q_RV:CLH", + "30896": "Q_RV:CLH", + "30897": "Q_RV:CLH", + "30898": "Q_RV:CLH", + "30899": "Q_RV:CLH", + "30900": "Q_RV:CLH", + "30901": "Q_RV:CLH", + "30902": "Q_RV:CLH", + "30903": "Q_RV:CLH", + "30904": "Q_RV:CLH", + "30905": "Q_RV:CLH", + "30906": "Q_RV:CLH", + "30907": "Q_RV:CLH", + "30908": "Q_RV:CLH", + "30909": "Q_RV:CLH", + "30910": "Q_RV:CLH", + "30911": "Q_RV:CLH", + "30912": "Q_RV:CLH", + "30913": "Q_RV:CLH", + "30914": "Q_RV:CLH", + "30915": "Q_RV:CLH", + "30916": "Q_RV:CLH", + "30917": "Q_RV:CLH", + "30918": "Q_RV:CLH", + "30919": "Q_RV:CLH", + "30920": "Q_RV:CLH", + "30921": "Q_RV:CLH", + "30922": "Q_RV:CLH", + "30923": "Q_RV:CLH", + "30924": "Q_RV:CLH", + "30925": "Q_RV:CLH", + "30926": "Q_RV:CLH", + "30927": "Q_RV:CLH", + "30928": "Q_RV:CLH", + "30929": "Q_RV:CLH", + "30930": "Q_RV:CLH", + "30931": "Q_RV:CLH", + "30932": "Q_RV:CLH", + "30933": "Q_RV:CLH", + "30934": "Q_RV:CLH", + "30935": "Q_RV:CLH", + "30936": "Q_RV:CLH", + "30937": "Q_RV:CLH", + "30938": "Q_RV:CLH", + "30939": "Q_RV:CLH", + "30940": "Q_RV:CLH", + "30941": "Q_RV:CLH", + "30942": "Q_RV:CLH", + "30943": "Q_RV:CLH", + "30944": "Q_RV:CLH", + "30945": "Q_RV:CLH", + "30946": "Q_RV:CLH", + "30947": "Q_RV:CLH", + "30948": "Q_RV:CLH", + "30949": "Q_RV:CLH", + "30950": "Q_RV:CLH", + "30951": "Q_RV:CLH", + "30952": "Q_RV:CLH", + "30953": "Q_RV:CLH", + "30954": "Q_RV:CLH", + "30955": "Q_RV:CLH", + "30956": "Q_RV:CLH", + "30957": "Q_RV:CLH", + "30958": "Q_RV:CLH", + "30959": "Q_RV:CLH", + "30960": "Q_RV:CLH", + "30961": "Q_RV:CLH", + "30962": "Q_RV:CLH", + "30963": "Q_RV:CLH", + "30964": "Q_RV:CLH", + "30965": "Q_RV:CLH", + "30966": "Q_RV:CLH", + "30967": "Q_RV:CLH", + "30968": "Q_RV:CLH", + "30969": "Q_RV:CLH", + "30970": "Q_RV:CLH", + "30971": "Q_RV:CLH", + "30972": "Q_RV:CLH", + "30973": "Q_RV:CLH", + "30974": "Q_RV:CLH", + "30975": "Q_RV:CLH", + "30976": "Q_RV:CLH", + "30977": "Q_RV:CLH", + "30978": "Q_RV:CLH", + "30979": "Q_RV:CLH", + "30980": "Q_RV:CLH", + "30981": "Q_RV:CLH", + "30982": "Q_RV:CLH", + "30983": "Q_RV:CLH", + "30984": "Q_RV:CLH", + "30985": "Q_RV:CLH", + "30986": "Q_RV:CLH", + "30987": "Q_RV:CLH", + "30988": "Q_RV:CLH", + "30989": "Q_RV:CLH", + "30990": "Q_RV:CLH", + "30991": "Q_RV:CLH", + "30992": "Q_RV:CLH", + "30993": "Q_RV:CLH", + "30994": "Q_RV:CLH", + "30995": "Q_RV:CLH", + "30996": "Q_RV:CLH", + "30997": "Q_RV:CLH", + "30998": "Q_RV:CLH", + "30999": "Q_RV:CLH", + "31000": "P_pul:CLH", + "31001": "P_pul:CLH", + "31002": "P_pul:CLH", + "31003": "P_pul:CLH", + "31004": "P_pul:CLH", + "31005": "P_pul:CLH", + "31006": "P_pul:CLH", + "31007": "P_pul:CLH", + "31008": "P_pul:CLH", + "31009": "P_pul:CLH", + "31010": "P_pul:CLH", + "31011": "P_pul:CLH", + "31012": "P_pul:CLH", + "31013": "P_pul:CLH", + "31014": "P_pul:CLH", + "31015": "P_pul:CLH", + "31016": "P_pul:CLH", + "31017": "P_pul:CLH", + "31018": "P_pul:CLH", + "31019": "P_pul:CLH", + "31020": "P_pul:CLH", + "31021": "P_pul:CLH", + "31022": "P_pul:CLH", + "31023": "P_pul:CLH", + "31024": "P_pul:CLH", + "31025": "P_pul:CLH", + "31026": "P_pul:CLH", + "31027": "P_pul:CLH", + "31028": "P_pul:CLH", + "31029": "P_pul:CLH", + "31030": "P_pul:CLH", + "31031": "P_pul:CLH", + "31032": "P_pul:CLH", + "31033": "P_pul:CLH", + "31034": "P_pul:CLH", + "31035": "P_pul:CLH", + "31036": "P_pul:CLH", + "31037": "P_pul:CLH", + "31038": "P_pul:CLH", + "31039": "P_pul:CLH", + "31040": "P_pul:CLH", + "31041": "P_pul:CLH", + "31042": "P_pul:CLH", + "31043": "P_pul:CLH", + "31044": "P_pul:CLH", + "31045": "P_pul:CLH", + "31046": "P_pul:CLH", + "31047": "P_pul:CLH", + "31048": "P_pul:CLH", + "31049": "P_pul:CLH", + "31050": "P_pul:CLH", + "31051": "P_pul:CLH", + "31052": "P_pul:CLH", + "31053": "P_pul:CLH", + "31054": "P_pul:CLH", + "31055": "P_pul:CLH", + "31056": "P_pul:CLH", + "31057": "P_pul:CLH", + "31058": "P_pul:CLH", + "31059": "P_pul:CLH", + "31060": "P_pul:CLH", + "31061": "P_pul:CLH", + "31062": "P_pul:CLH", + "31063": "P_pul:CLH", + "31064": "P_pul:CLH", + "31065": "P_pul:CLH", + "31066": "P_pul:CLH", + "31067": "P_pul:CLH", + "31068": "P_pul:CLH", + "31069": "P_pul:CLH", + "31070": "P_pul:CLH", + "31071": "P_pul:CLH", + "31072": "P_pul:CLH", + "31073": "P_pul:CLH", + "31074": "P_pul:CLH", + "31075": "P_pul:CLH", + "31076": "P_pul:CLH", + "31077": "P_pul:CLH", + "31078": "P_pul:CLH", + "31079": "P_pul:CLH", + "31080": "P_pul:CLH", + "31081": "P_pul:CLH", + "31082": "P_pul:CLH", + "31083": "P_pul:CLH", + "31084": "P_pul:CLH", + "31085": "P_pul:CLH", + "31086": "P_pul:CLH", + "31087": "P_pul:CLH", + "31088": "P_pul:CLH", + "31089": "P_pul:CLH", + "31090": "P_pul:CLH", + "31091": "P_pul:CLH", + "31092": "P_pul:CLH", + "31093": "P_pul:CLH", + "31094": "P_pul:CLH", + "31095": "P_pul:CLH", + "31096": "P_pul:CLH", + "31097": "P_pul:CLH", + "31098": "P_pul:CLH", + "31099": "P_pul:CLH", + "31100": "P_pul:CLH", + "31101": "P_pul:CLH", + "31102": "P_pul:CLH", + "31103": "P_pul:CLH", + "31104": "P_pul:CLH", + "31105": "P_pul:CLH", + "31106": "P_pul:CLH", + "31107": "P_pul:CLH", + "31108": "P_pul:CLH", + "31109": "P_pul:CLH", + "31110": "P_pul:CLH", + "31111": "P_pul:CLH", + "31112": "P_pul:CLH", + "31113": "P_pul:CLH", + "31114": "P_pul:CLH", + "31115": "P_pul:CLH", + "31116": "P_pul:CLH", + "31117": "P_pul:CLH", + "31118": "P_pul:CLH", + "31119": "P_pul:CLH", + "31120": "P_pul:CLH", + "31121": "P_pul:CLH", + "31122": "P_pul:CLH", + "31123": "P_pul:CLH", + "31124": "P_pul:CLH", + "31125": "P_pul:CLH", + "31126": "P_pul:CLH", + "31127": "P_pul:CLH", + "31128": "P_pul:CLH", + "31129": "P_pul:CLH", + "31130": "P_pul:CLH", + "31131": "P_pul:CLH", + "31132": "P_pul:CLH", + "31133": "P_pul:CLH", + "31134": "P_pul:CLH", + "31135": "P_pul:CLH", + "31136": "P_pul:CLH", + "31137": "P_pul:CLH", + "31138": "P_pul:CLH", + "31139": "P_pul:CLH", + "31140": "P_pul:CLH", + "31141": "P_pul:CLH", + "31142": "P_pul:CLH", + "31143": "P_pul:CLH", + "31144": "P_pul:CLH", + "31145": "P_pul:CLH", + "31146": "P_pul:CLH", + "31147": "P_pul:CLH", + "31148": "P_pul:CLH", + "31149": "P_pul:CLH", + "31150": "P_pul:CLH", + "31151": "P_pul:CLH", + "31152": "P_pul:CLH", + "31153": "P_pul:CLH", + "31154": "P_pul:CLH", + "31155": "P_pul:CLH", + "31156": "P_pul:CLH", + "31157": "P_pul:CLH", + "31158": "P_pul:CLH", + "31159": "P_pul:CLH", + "31160": "P_pul:CLH", + "31161": "P_pul:CLH", + "31162": "P_pul:CLH", + "31163": "P_pul:CLH", + "31164": "P_pul:CLH", + "31165": "P_pul:CLH", + "31166": "P_pul:CLH", + "31167": "P_pul:CLH", + "31168": "P_pul:CLH", + "31169": "P_pul:CLH", + "31170": "P_pul:CLH", + "31171": "P_pul:CLH", + "31172": "P_pul:CLH", + "31173": "P_pul:CLH", + "31174": "P_pul:CLH", + "31175": "P_pul:CLH", + "31176": "P_pul:CLH", + "31177": "P_pul:CLH", + "31178": "P_pul:CLH", + "31179": "P_pul:CLH", + "31180": "P_pul:CLH", + "31181": "P_pul:CLH", + "31182": "P_pul:CLH", + "31183": "P_pul:CLH", + "31184": "P_pul:CLH", + "31185": "P_pul:CLH", + "31186": "P_pul:CLH", + "31187": "P_pul:CLH", + "31188": "P_pul:CLH", + "31189": "P_pul:CLH", + "31190": "P_pul:CLH", + "31191": "P_pul:CLH", + "31192": "P_pul:CLH", + "31193": "P_pul:CLH", + "31194": "P_pul:CLH", + "31195": "P_pul:CLH", + "31196": "P_pul:CLH", + "31197": "P_pul:CLH", + "31198": "P_pul:CLH", + "31199": "P_pul:CLH", + "31200": "P_pul:CLH", + "31201": "P_pul:CLH", + "31202": "P_pul:CLH", + "31203": "P_pul:CLH", + "31204": "P_pul:CLH", + "31205": "P_pul:CLH", + "31206": "P_pul:CLH", + "31207": "P_pul:CLH", + "31208": "P_pul:CLH", + "31209": "P_pul:CLH", + "31210": "P_pul:CLH", + "31211": "P_pul:CLH", + "31212": "P_pul:CLH", + "31213": "P_pul:CLH", + "31214": "P_pul:CLH", + "31215": "P_pul:CLH", + "31216": "P_pul:CLH", + "31217": "P_pul:CLH", + "31218": "P_pul:CLH", + "31219": "P_pul:CLH", + "31220": "P_pul:CLH", + "31221": "P_pul:CLH", + "31222": "P_pul:CLH", + "31223": "P_pul:CLH", + "31224": "P_pul:CLH", + "31225": "P_pul:CLH", + "31226": "P_pul:CLH", + "31227": "P_pul:CLH", + "31228": "P_pul:CLH", + "31229": "P_pul:CLH", + "31230": "P_pul:CLH", + "31231": "P_pul:CLH", + "31232": "P_pul:CLH", + "31233": "P_pul:CLH", + "31234": "P_pul:CLH", + "31235": "P_pul:CLH", + "31236": "P_pul:CLH", + "31237": "P_pul:CLH", + "31238": "P_pul:CLH", + "31239": "P_pul:CLH", + "31240": "P_pul:CLH", + "31241": "P_pul:CLH", + "31242": "P_pul:CLH", + "31243": "P_pul:CLH", + "31244": "P_pul:CLH", + "31245": "P_pul:CLH", + "31246": "P_pul:CLH", + "31247": "P_pul:CLH", + "31248": "P_pul:CLH", + "31249": "P_pul:CLH", + "31250": "P_pul:CLH", + "31251": "P_pul:CLH", + "31252": "P_pul:CLH", + "31253": "P_pul:CLH", + "31254": "P_pul:CLH", + "31255": "P_pul:CLH", + "31256": "P_pul:CLH", + "31257": "P_pul:CLH", + "31258": "P_pul:CLH", + "31259": "P_pul:CLH", + "31260": "P_pul:CLH", + "31261": "P_pul:CLH", + "31262": "P_pul:CLH", + "31263": "P_pul:CLH", + "31264": "P_pul:CLH", + "31265": "P_pul:CLH", + "31266": "P_pul:CLH", + "31267": "P_pul:CLH", + "31268": "P_pul:CLH", + "31269": "P_pul:CLH", + "31270": "P_pul:CLH", + "31271": "P_pul:CLH", + "31272": "P_pul:CLH", + "31273": "P_pul:CLH", + "31274": "P_pul:CLH", + "31275": "P_pul:CLH", + "31276": "P_pul:CLH", + "31277": "P_pul:CLH", + "31278": "P_pul:CLH", + "31279": "P_pul:CLH", + "31280": "P_pul:CLH", + "31281": "P_pul:CLH", + "31282": "P_pul:CLH", + "31283": "P_pul:CLH", + "31284": "P_pul:CLH", + "31285": "P_pul:CLH", + "31286": "P_pul:CLH", + "31287": "P_pul:CLH", + "31288": "P_pul:CLH", + "31289": "P_pul:CLH", + "31290": "P_pul:CLH", + "31291": "P_pul:CLH", + "31292": "P_pul:CLH", + "31293": "P_pul:CLH", + "31294": "P_pul:CLH", + "31295": "P_pul:CLH", + "31296": "P_pul:CLH", + "31297": "P_pul:CLH", + "31298": "P_pul:CLH", + "31299": "P_pul:CLH", + "31300": "P_pul:CLH", + "31301": "P_pul:CLH", + "31302": "P_pul:CLH", + "31303": "P_pul:CLH", + "31304": "P_pul:CLH", + "31305": "P_pul:CLH", + "31306": "P_pul:CLH", + "31307": "P_pul:CLH", + "31308": "P_pul:CLH", + "31309": "P_pul:CLH", + "31310": "P_pul:CLH", + "31311": "P_pul:CLH", + "31312": "P_pul:CLH", + "31313": "P_pul:CLH", + "31314": "P_pul:CLH", + "31315": "P_pul:CLH", + "31316": "P_pul:CLH", + "31317": "P_pul:CLH", + "31318": "P_pul:CLH", + "31319": "P_pul:CLH", + "31320": "P_pul:CLH", + "31321": "P_pul:CLH", + "31322": "P_pul:CLH", + "31323": "P_pul:CLH", + "31324": "P_pul:CLH", + "31325": "P_pul:CLH", + "31326": "P_pul:CLH", + "31327": "P_pul:CLH", + "31328": "P_pul:CLH", + "31329": "P_pul:CLH", + "31330": "P_pul:CLH", + "31331": "P_pul:CLH", + "31332": "P_pul:CLH", + "31333": "P_pul:CLH", + "31334": "P_pul:CLH", + "31335": "P_pul:CLH", + "31336": "P_pul:CLH", + "31337": "P_pul:CLH", + "31338": "P_pul:CLH", + "31339": "P_pul:CLH", + "31340": "P_pul:CLH", + "31341": "P_pul:CLH", + "31342": "P_pul:CLH", + "31343": "P_pul:CLH", + "31344": "P_pul:CLH", + "31345": "P_pul:CLH", + "31346": "P_pul:CLH", + "31347": "P_pul:CLH", + "31348": "P_pul:CLH", + "31349": "P_pul:CLH", + "31350": "P_pul:CLH", + "31351": "P_pul:CLH", + "31352": "P_pul:CLH", + "31353": "P_pul:CLH", + "31354": "P_pul:CLH", + "31355": "P_pul:CLH", + "31356": "P_pul:CLH", + "31357": "P_pul:CLH", + "31358": "P_pul:CLH", + "31359": "P_pul:CLH", + "31360": "P_pul:CLH", + "31361": "P_pul:CLH", + "31362": "P_pul:CLH", + "31363": "P_pul:CLH", + "31364": "P_pul:CLH", + "31365": "P_pul:CLH", + "31366": "P_pul:CLH", + "31367": "P_pul:CLH", + "31368": "P_pul:CLH", + "31369": "P_pul:CLH", + "31370": "P_pul:CLH", + "31371": "P_pul:CLH", + "31372": "P_pul:CLH", + "31373": "P_pul:CLH", + "31374": "P_pul:CLH", + "31375": "P_pul:CLH", + "31376": "P_pul:CLH", + "31377": "P_pul:CLH", + "31378": "P_pul:CLH", + "31379": "P_pul:CLH", + "31380": "P_pul:CLH", + "31381": "P_pul:CLH", + "31382": "P_pul:CLH", + "31383": "P_pul:CLH", + "31384": "P_pul:CLH", + "31385": "P_pul:CLH", + "31386": "P_pul:CLH", + "31387": "P_pul:CLH", + "31388": "P_pul:CLH", + "31389": "P_pul:CLH", + "31390": "P_pul:CLH", + "31391": "P_pul:CLH", + "31392": "P_pul:CLH", + "31393": "P_pul:CLH", + "31394": "P_pul:CLH", + "31395": "P_pul:CLH", + "31396": "P_pul:CLH", + "31397": "P_pul:CLH", + "31398": "P_pul:CLH", + "31399": "P_pul:CLH", + "31400": "P_pul:CLH", + "31401": "P_pul:CLH", + "31402": "P_pul:CLH", + "31403": "P_pul:CLH", + "31404": "P_pul:CLH", + "31405": "P_pul:CLH", + "31406": "P_pul:CLH", + "31407": "P_pul:CLH", + "31408": "P_pul:CLH", + "31409": "P_pul:CLH", + "31410": "P_pul:CLH", + "31411": "P_pul:CLH", + "31412": "P_pul:CLH", + "31413": "P_pul:CLH", + "31414": "P_pul:CLH", + "31415": "P_pul:CLH", + "31416": "P_pul:CLH", + "31417": "P_pul:CLH", + "31418": "P_pul:CLH", + "31419": "P_pul:CLH", + "31420": "P_pul:CLH", + "31421": "P_pul:CLH", + "31422": "P_pul:CLH", + "31423": "P_pul:CLH", + "31424": "P_pul:CLH", + "31425": "P_pul:CLH", + "31426": "P_pul:CLH", + "31427": "P_pul:CLH", + "31428": "P_pul:CLH", + "31429": "P_pul:CLH", + "31430": "P_pul:CLH", + "31431": "P_pul:CLH", + "31432": "P_pul:CLH", + "31433": "P_pul:CLH", + "31434": "P_pul:CLH", + "31435": "P_pul:CLH", + "31436": "P_pul:CLH", + "31437": "P_pul:CLH", + "31438": "P_pul:CLH", + "31439": "P_pul:CLH", + "31440": "P_pul:CLH", + "31441": "P_pul:CLH", + "31442": "P_pul:CLH", + "31443": "P_pul:CLH", + "31444": "P_pul:CLH", + "31445": "P_pul:CLH", + "31446": "P_pul:CLH", + "31447": "P_pul:CLH", + "31448": "P_pul:CLH", + "31449": "P_pul:CLH", + "31450": "P_pul:CLH", + "31451": "P_pul:CLH", + "31452": "P_pul:CLH", + "31453": "P_pul:CLH", + "31454": "P_pul:CLH", + "31455": "P_pul:CLH", + "31456": "P_pul:CLH", + "31457": "P_pul:CLH", + "31458": "P_pul:CLH", + "31459": "P_pul:CLH", + "31460": "P_pul:CLH", + "31461": "P_pul:CLH", + "31462": "P_pul:CLH", + "31463": "P_pul:CLH", + "31464": "P_pul:CLH", + "31465": "P_pul:CLH", + "31466": "P_pul:CLH", + "31467": "P_pul:CLH", + "31468": "P_pul:CLH", + "31469": "P_pul:CLH", + "31470": "P_pul:CLH", + "31471": "P_pul:CLH", + "31472": "P_pul:CLH", + "31473": "P_pul:CLH", + "31474": "P_pul:CLH", + "31475": "P_pul:CLH", + "31476": "P_pul:CLH", + "31477": "P_pul:CLH", + "31478": "P_pul:CLH", + "31479": "P_pul:CLH", + "31480": "P_pul:CLH", + "31481": "P_pul:CLH", + "31482": "P_pul:CLH", + "31483": "P_pul:CLH", + "31484": "P_pul:CLH", + "31485": "P_pul:CLH", + "31486": "P_pul:CLH", + "31487": "P_pul:CLH", + "31488": "P_pul:CLH", + "31489": "P_pul:CLH", + "31490": "P_pul:CLH", + "31491": "P_pul:CLH", + "31492": "P_pul:CLH", + "31493": "P_pul:CLH", + "31494": "P_pul:CLH", + "31495": "P_pul:CLH", + "31496": "P_pul:CLH", + "31497": "P_pul:CLH", + "31498": "P_pul:CLH", + "31499": "P_pul:CLH", + "31500": "P_pul:CLH", + "31501": "P_pul:CLH", + "31502": "P_pul:CLH", + "31503": "P_pul:CLH", + "31504": "P_pul:CLH", + "31505": "P_pul:CLH", + "31506": "P_pul:CLH", + "31507": "P_pul:CLH", + "31508": "P_pul:CLH", + "31509": "P_pul:CLH", + "31510": "P_pul:CLH", + "31511": "P_pul:CLH", + "31512": "P_pul:CLH", + "31513": "P_pul:CLH", + "31514": "P_pul:CLH", + "31515": "P_pul:CLH", + "31516": "P_pul:CLH", + "31517": "P_pul:CLH", + "31518": "P_pul:CLH", + "31519": "P_pul:CLH", + "31520": "P_pul:CLH", + "31521": "P_pul:CLH", + "31522": "P_pul:CLH", + "31523": "P_pul:CLH", + "31524": "P_pul:CLH", + "31525": "P_pul:CLH", + "31526": "P_pul:CLH", + "31527": "P_pul:CLH", + "31528": "P_pul:CLH", + "31529": "P_pul:CLH", + "31530": "P_pul:CLH", + "31531": "P_pul:CLH", + "31532": "P_pul:CLH", + "31533": "P_pul:CLH", + "31534": "P_pul:CLH", + "31535": "P_pul:CLH", + "31536": "P_pul:CLH", + "31537": "P_pul:CLH", + "31538": "P_pul:CLH", + "31539": "P_pul:CLH", + "31540": "P_pul:CLH", + "31541": "P_pul:CLH", + "31542": "P_pul:CLH", + "31543": "P_pul:CLH", + "31544": "P_pul:CLH", + "31545": "P_pul:CLH", + "31546": "P_pul:CLH", + "31547": "P_pul:CLH", + "31548": "P_pul:CLH", + "31549": "P_pul:CLH", + "31550": "P_pul:CLH", + "31551": "P_pul:CLH", + "31552": "P_pul:CLH", + "31553": "P_pul:CLH", + "31554": "P_pul:CLH", + "31555": "P_pul:CLH", + "31556": "P_pul:CLH", + "31557": "P_pul:CLH", + "31558": "P_pul:CLH", + "31559": "P_pul:CLH", + "31560": "P_pul:CLH", + "31561": "P_pul:CLH", + "31562": "P_pul:CLH", + "31563": "P_pul:CLH", + "31564": "P_pul:CLH", + "31565": "P_pul:CLH", + "31566": "P_pul:CLH", + "31567": "P_pul:CLH", + "31568": "P_pul:CLH", + "31569": "P_pul:CLH", + "31570": "P_pul:CLH", + "31571": "P_pul:CLH", + "31572": "P_pul:CLH", + "31573": "P_pul:CLH", + "31574": "P_pul:CLH", + "31575": "P_pul:CLH", + "31576": "P_pul:CLH", + "31577": "P_pul:CLH", + "31578": "P_pul:CLH", + "31579": "P_pul:CLH", + "31580": "P_pul:CLH", + "31581": "P_pul:CLH", + "31582": "P_pul:CLH", + "31583": "P_pul:CLH", + "31584": "P_pul:CLH", + "31585": "P_pul:CLH", + "31586": "P_pul:CLH", + "31587": "P_pul:CLH", + "31588": "P_pul:CLH", + "31589": "P_pul:CLH", + "31590": "P_pul:CLH", + "31591": "P_pul:CLH", + "31592": "P_pul:CLH", + "31593": "P_pul:CLH", + "31594": "P_pul:CLH", + "31595": "P_pul:CLH", + "31596": "P_pul:CLH", + "31597": "P_pul:CLH", + "31598": "P_pul:CLH", + "31599": "P_pul:CLH", + "31600": "P_pul:CLH", + "31601": "P_pul:CLH", + "31602": "P_pul:CLH", + "31603": "P_pul:CLH", + "31604": "P_pul:CLH", + "31605": "P_pul:CLH", + "31606": "P_pul:CLH", + "31607": "P_pul:CLH", + "31608": "P_pul:CLH", + "31609": "P_pul:CLH", + "31610": "P_pul:CLH", + "31611": "P_pul:CLH", + "31612": "P_pul:CLH", + "31613": "P_pul:CLH", + "31614": "P_pul:CLH", + "31615": "P_pul:CLH", + "31616": "P_pul:CLH", + "31617": "P_pul:CLH", + "31618": "P_pul:CLH", + "31619": "P_pul:CLH", + "31620": "P_pul:CLH", + "31621": "P_pul:CLH", + "31622": "P_pul:CLH", + "31623": "P_pul:CLH", + "31624": "P_pul:CLH", + "31625": "P_pul:CLH", + "31626": "P_pul:CLH", + "31627": "P_pul:CLH", + "31628": "P_pul:CLH", + "31629": "P_pul:CLH", + "31630": "P_pul:CLH", + "31631": "P_pul:CLH", + "31632": "P_pul:CLH", + "31633": "P_pul:CLH", + "31634": "P_pul:CLH", + "31635": "P_pul:CLH", + "31636": "P_pul:CLH", + "31637": "P_pul:CLH", + "31638": "P_pul:CLH", + "31639": "P_pul:CLH", + "31640": "P_pul:CLH", + "31641": "P_pul:CLH", + "31642": "P_pul:CLH", + "31643": "P_pul:CLH", + "31644": "P_pul:CLH", + "31645": "P_pul:CLH", + "31646": "P_pul:CLH", + "31647": "P_pul:CLH", + "31648": "P_pul:CLH", + "31649": "P_pul:CLH", + "31650": "P_pul:CLH", + "31651": "P_pul:CLH", + "31652": "P_pul:CLH", + "31653": "P_pul:CLH", + "31654": "P_pul:CLH", + "31655": "P_pul:CLH", + "31656": "P_pul:CLH", + "31657": "P_pul:CLH", + "31658": "P_pul:CLH", + "31659": "P_pul:CLH", + "31660": "P_pul:CLH", + "31661": "P_pul:CLH", + "31662": "P_pul:CLH", + "31663": "P_pul:CLH", + "31664": "P_pul:CLH", + "31665": "P_pul:CLH", + "31666": "P_pul:CLH", + "31667": "P_pul:CLH", + "31668": "P_pul:CLH", + "31669": "P_pul:CLH", + "31670": "P_pul:CLH", + "31671": "P_pul:CLH", + "31672": "P_pul:CLH", + "31673": "P_pul:CLH", + "31674": "P_pul:CLH", + "31675": "P_pul:CLH", + "31676": "P_pul:CLH", + "31677": "P_pul:CLH", + "31678": "P_pul:CLH", + "31679": "P_pul:CLH", + "31680": "P_pul:CLH", + "31681": "P_pul:CLH", + "31682": "P_pul:CLH", + "31683": "P_pul:CLH", + "31684": "P_pul:CLH", + "31685": "P_pul:CLH", + "31686": "P_pul:CLH", + "31687": "P_pul:CLH", + "31688": "P_pul:CLH", + "31689": "P_pul:CLH", + "31690": "P_pul:CLH", + "31691": "P_pul:CLH", + "31692": "P_pul:CLH", + "31693": "P_pul:CLH", + "31694": "P_pul:CLH", + "31695": "P_pul:CLH", + "31696": "P_pul:CLH", + "31697": "P_pul:CLH", + "31698": "P_pul:CLH", + "31699": "P_pul:CLH", + "31700": "P_pul:CLH", + "31701": "P_pul:CLH", + "31702": "P_pul:CLH", + "31703": "P_pul:CLH", + "31704": "P_pul:CLH", + "31705": "P_pul:CLH", + "31706": "P_pul:CLH", + "31707": "P_pul:CLH", + "31708": "P_pul:CLH", + "31709": "P_pul:CLH", + "31710": "P_pul:CLH", + "31711": "P_pul:CLH", + "31712": "P_pul:CLH", + "31713": "P_pul:CLH", + "31714": "P_pul:CLH", + "31715": "P_pul:CLH", + "31716": "P_pul:CLH", + "31717": "P_pul:CLH", + "31718": "P_pul:CLH", + "31719": "P_pul:CLH", + "31720": "P_pul:CLH", + "31721": "P_pul:CLH", + "31722": "P_pul:CLH", + "31723": "P_pul:CLH", + "31724": "P_pul:CLH", + "31725": "P_pul:CLH", + "31726": "P_pul:CLH", + "31727": "P_pul:CLH", + "31728": "P_pul:CLH", + "31729": "P_pul:CLH", + "31730": "P_pul:CLH", + "31731": "P_pul:CLH", + "31732": "P_pul:CLH", + "31733": "P_pul:CLH", + "31734": "P_pul:CLH", + "31735": "P_pul:CLH", + "31736": "P_pul:CLH", + "31737": "P_pul:CLH", + "31738": "P_pul:CLH", + "31739": "P_pul:CLH", + "31740": "P_pul:CLH", + "31741": "P_pul:CLH", + "31742": "P_pul:CLH", + "31743": "P_pul:CLH", + "31744": "P_pul:CLH", + "31745": "P_pul:CLH", + "31746": "P_pul:CLH", + "31747": "P_pul:CLH", + "31748": "P_pul:CLH", + "31749": "P_pul:CLH", + "31750": "P_pul:CLH", + "31751": "P_pul:CLH", + "31752": "P_pul:CLH", + "31753": "P_pul:CLH", + "31754": "P_pul:CLH", + "31755": "P_pul:CLH", + "31756": "P_pul:CLH", + "31757": "P_pul:CLH", + "31758": "P_pul:CLH", + "31759": "P_pul:CLH", + "31760": "P_pul:CLH", + "31761": "P_pul:CLH", + "31762": "P_pul:CLH", + "31763": "P_pul:CLH", + "31764": "P_pul:CLH", + "31765": "P_pul:CLH", + "31766": "P_pul:CLH", + "31767": "P_pul:CLH", + "31768": "P_pul:CLH", + "31769": "P_pul:CLH", + "31770": "P_pul:CLH", + "31771": "P_pul:CLH", + "31772": "P_pul:CLH", + "31773": "P_pul:CLH", + "31774": "P_pul:CLH", + "31775": "P_pul:CLH", + "31776": "P_pul:CLH", + "31777": "P_pul:CLH", + "31778": "P_pul:CLH", + "31779": "P_pul:CLH", + "31780": "P_pul:CLH", + "31781": "P_pul:CLH", + "31782": "P_pul:CLH", + "31783": "P_pul:CLH", + "31784": "P_pul:CLH", + "31785": "P_pul:CLH", + "31786": "P_pul:CLH", + "31787": "P_pul:CLH", + "31788": "P_pul:CLH", + "31789": "P_pul:CLH", + "31790": "P_pul:CLH", + "31791": "P_pul:CLH", + "31792": "P_pul:CLH", + "31793": "P_pul:CLH", + "31794": "P_pul:CLH", + "31795": "P_pul:CLH", + "31796": "P_pul:CLH", + "31797": "P_pul:CLH", + "31798": "P_pul:CLH", + "31799": "P_pul:CLH", + "31800": "P_pul:CLH", + "31801": "P_pul:CLH", + "31802": "P_pul:CLH", + "31803": "P_pul:CLH", + "31804": "P_pul:CLH", + "31805": "P_pul:CLH", + "31806": "P_pul:CLH", + "31807": "P_pul:CLH", + "31808": "P_pul:CLH", + "31809": "P_pul:CLH", + "31810": "P_pul:CLH", + "31811": "P_pul:CLH", + "31812": "P_pul:CLH", + "31813": "P_pul:CLH", + "31814": "P_pul:CLH", + "31815": "P_pul:CLH", + "31816": "P_pul:CLH", + "31817": "P_pul:CLH", + "31818": "P_pul:CLH", + "31819": "P_pul:CLH", + "31820": "P_pul:CLH", + "31821": "P_pul:CLH", + "31822": "P_pul:CLH", + "31823": "P_pul:CLH", + "31824": "P_pul:CLH", + "31825": "P_pul:CLH", + "31826": "P_pul:CLH", + "31827": "P_pul:CLH", + "31828": "P_pul:CLH", + "31829": "P_pul:CLH", + "31830": "P_pul:CLH", + "31831": "P_pul:CLH", + "31832": "P_pul:CLH", + "31833": "P_pul:CLH", + "31834": "P_pul:CLH", + "31835": "P_pul:CLH", + "31836": "P_pul:CLH", + "31837": "P_pul:CLH", + "31838": "P_pul:CLH", + "31839": "P_pul:CLH", + "31840": "P_pul:CLH", + "31841": "P_pul:CLH", + "31842": "P_pul:CLH", + "31843": "P_pul:CLH", + "31844": "P_pul:CLH", + "31845": "P_pul:CLH", + "31846": "P_pul:CLH", + "31847": "P_pul:CLH", + "31848": "P_pul:CLH", + "31849": "P_pul:CLH", + "31850": "P_pul:CLH", + "31851": "P_pul:CLH", + "31852": "P_pul:CLH", + "31853": "P_pul:CLH", + "31854": "P_pul:CLH", + "31855": "P_pul:CLH", + "31856": "P_pul:CLH", + "31857": "P_pul:CLH", + "31858": "P_pul:CLH", + "31859": "P_pul:CLH", + "31860": "P_pul:CLH", + "31861": "P_pul:CLH", + "31862": "P_pul:CLH", + "31863": "P_pul:CLH", + "31864": "P_pul:CLH", + "31865": "P_pul:CLH", + "31866": "P_pul:CLH", + "31867": "P_pul:CLH", + "31868": "P_pul:CLH", + "31869": "P_pul:CLH", + "31870": "P_pul:CLH", + "31871": "P_pul:CLH", + "31872": "P_pul:CLH", + "31873": "P_pul:CLH", + "31874": "P_pul:CLH", + "31875": "P_pul:CLH", + "31876": "P_pul:CLH", + "31877": "P_pul:CLH", + "31878": "P_pul:CLH", + "31879": "P_pul:CLH", + "31880": "P_pul:CLH", + "31881": "P_pul:CLH", + "31882": "P_pul:CLH", + "31883": "P_pul:CLH", + "31884": "P_pul:CLH", + "31885": "P_pul:CLH", + "31886": "P_pul:CLH", + "31887": "P_pul:CLH", + "31888": "P_pul:CLH", + "31889": "P_pul:CLH", + "31890": "P_pul:CLH", + "31891": "P_pul:CLH", + "31892": "P_pul:CLH", + "31893": "P_pul:CLH", + "31894": "P_pul:CLH", + "31895": "P_pul:CLH", + "31896": "P_pul:CLH", + "31897": "P_pul:CLH", + "31898": "P_pul:CLH", + "31899": "P_pul:CLH", + "31900": "P_pul:CLH", + "31901": "P_pul:CLH", + "31902": "P_pul:CLH", + "31903": "P_pul:CLH", + "31904": "P_pul:CLH", + "31905": "P_pul:CLH", + "31906": "P_pul:CLH", + "31907": "P_pul:CLH", + "31908": "P_pul:CLH", + "31909": "P_pul:CLH", + "31910": "P_pul:CLH", + "31911": "P_pul:CLH", + "31912": "P_pul:CLH", + "31913": "P_pul:CLH", + "31914": "P_pul:CLH", + "31915": "P_pul:CLH", + "31916": "P_pul:CLH", + "31917": "P_pul:CLH", + "31918": "P_pul:CLH", + "31919": "P_pul:CLH", + "31920": "P_pul:CLH", + "31921": "P_pul:CLH", + "31922": "P_pul:CLH", + "31923": "P_pul:CLH", + "31924": "P_pul:CLH", + "31925": "P_pul:CLH", + "31926": "P_pul:CLH", + "31927": "P_pul:CLH", + "31928": "P_pul:CLH", + "31929": "P_pul:CLH", + "31930": "P_pul:CLH", + "31931": "P_pul:CLH", + "31932": "P_pul:CLH", + "31933": "P_pul:CLH", + "31934": "P_pul:CLH", + "31935": "P_pul:CLH", + "31936": "P_pul:CLH", + "31937": "P_pul:CLH", + "31938": "P_pul:CLH", + "31939": "P_pul:CLH", + "31940": "P_pul:CLH", + "31941": "P_pul:CLH", + "31942": "P_pul:CLH", + "31943": "P_pul:CLH", + "31944": "P_pul:CLH", + "31945": "P_pul:CLH", + "31946": "P_pul:CLH", + "31947": "P_pul:CLH", + "31948": "P_pul:CLH", + "31949": "P_pul:CLH", + "31950": "P_pul:CLH", + "31951": "P_pul:CLH", + "31952": "P_pul:CLH", + "31953": "P_pul:CLH", + "31954": "P_pul:CLH", + "31955": "P_pul:CLH", + "31956": "P_pul:CLH", + "31957": "P_pul:CLH", + "31958": "P_pul:CLH", + "31959": "P_pul:CLH", + "31960": "P_pul:CLH", + "31961": "P_pul:CLH", + "31962": "P_pul:CLH", + "31963": "P_pul:CLH", + "31964": "P_pul:CLH", + "31965": "P_pul:CLH", + "31966": "P_pul:CLH", + "31967": "P_pul:CLH", + "31968": "P_pul:CLH", + "31969": "P_pul:CLH", + "31970": "P_pul:CLH", + "31971": "P_pul:CLH", + "31972": "P_pul:CLH", + "31973": "P_pul:CLH", + "31974": "P_pul:CLH", + "31975": "P_pul:CLH", + "31976": "P_pul:CLH", + "31977": "P_pul:CLH", + "31978": "P_pul:CLH", + "31979": "P_pul:CLH", + "31980": "P_pul:CLH", + "31981": "P_pul:CLH", + "31982": "P_pul:CLH", + "31983": "P_pul:CLH", + "31984": "P_pul:CLH", + "31985": "P_pul:CLH", + "31986": "P_pul:CLH", + "31987": "P_pul:CLH", + "31988": "P_pul:CLH", + "31989": "P_pul:CLH", + "31990": "P_pul:CLH", + "31991": "P_pul:CLH", + "31992": "P_pul:CLH", + "31993": "P_pul:CLH", + "31994": "P_pul:CLH", + "31995": "P_pul:CLH", + "31996": "P_pul:CLH", + "31997": "P_pul:CLH", + "31998": "P_pul:CLH", + "31999": "P_pul:CLH", + "32000": "P_LA:CLH", + "32001": "P_LA:CLH", + "32002": "P_LA:CLH", + "32003": "P_LA:CLH", + "32004": "P_LA:CLH", + "32005": "P_LA:CLH", + "32006": "P_LA:CLH", + "32007": "P_LA:CLH", + "32008": "P_LA:CLH", + "32009": "P_LA:CLH", + "32010": "P_LA:CLH", + "32011": "P_LA:CLH", + "32012": "P_LA:CLH", + "32013": "P_LA:CLH", + "32014": "P_LA:CLH", + "32015": "P_LA:CLH", + "32016": "P_LA:CLH", + "32017": "P_LA:CLH", + "32018": "P_LA:CLH", + "32019": "P_LA:CLH", + "32020": "P_LA:CLH", + "32021": "P_LA:CLH", + "32022": "P_LA:CLH", + "32023": "P_LA:CLH", + "32024": "P_LA:CLH", + "32025": "P_LA:CLH", + "32026": "P_LA:CLH", + "32027": "P_LA:CLH", + "32028": "P_LA:CLH", + "32029": "P_LA:CLH", + "32030": "P_LA:CLH", + "32031": "P_LA:CLH", + "32032": "P_LA:CLH", + "32033": "P_LA:CLH", + "32034": "P_LA:CLH", + "32035": "P_LA:CLH", + "32036": "P_LA:CLH", + "32037": "P_LA:CLH", + "32038": "P_LA:CLH", + "32039": "P_LA:CLH", + "32040": "P_LA:CLH", + "32041": "P_LA:CLH", + "32042": "P_LA:CLH", + "32043": "P_LA:CLH", + "32044": "P_LA:CLH", + "32045": "P_LA:CLH", + "32046": "P_LA:CLH", + "32047": "P_LA:CLH", + "32048": "P_LA:CLH", + "32049": "P_LA:CLH", + "32050": "P_LA:CLH", + "32051": "P_LA:CLH", + "32052": "P_LA:CLH", + "32053": "P_LA:CLH", + "32054": "P_LA:CLH", + "32055": "P_LA:CLH", + "32056": "P_LA:CLH", + "32057": "P_LA:CLH", + "32058": "P_LA:CLH", + "32059": "P_LA:CLH", + "32060": "P_LA:CLH", + "32061": "P_LA:CLH", + "32062": "P_LA:CLH", + "32063": "P_LA:CLH", + "32064": "P_LA:CLH", + "32065": "P_LA:CLH", + "32066": "P_LA:CLH", + "32067": "P_LA:CLH", + "32068": "P_LA:CLH", + "32069": "P_LA:CLH", + "32070": "P_LA:CLH", + "32071": "P_LA:CLH", + "32072": "P_LA:CLH", + "32073": "P_LA:CLH", + "32074": "P_LA:CLH", + "32075": "P_LA:CLH", + "32076": "P_LA:CLH", + "32077": "P_LA:CLH", + "32078": "P_LA:CLH", + "32079": "P_LA:CLH", + "32080": "P_LA:CLH", + "32081": "P_LA:CLH", + "32082": "P_LA:CLH", + "32083": "P_LA:CLH", + "32084": "P_LA:CLH", + "32085": "P_LA:CLH", + "32086": "P_LA:CLH", + "32087": "P_LA:CLH", + "32088": "P_LA:CLH", + "32089": "P_LA:CLH", + "32090": "P_LA:CLH", + "32091": "P_LA:CLH", + "32092": "P_LA:CLH", + "32093": "P_LA:CLH", + "32094": "P_LA:CLH", + "32095": "P_LA:CLH", + "32096": "P_LA:CLH", + "32097": "P_LA:CLH", + "32098": "P_LA:CLH", + "32099": "P_LA:CLH", + "32100": "P_LA:CLH", + "32101": "P_LA:CLH", + "32102": "P_LA:CLH", + "32103": "P_LA:CLH", + "32104": "P_LA:CLH", + "32105": "P_LA:CLH", + "32106": "P_LA:CLH", + "32107": "P_LA:CLH", + "32108": "P_LA:CLH", + "32109": "P_LA:CLH", + "32110": "P_LA:CLH", + "32111": "P_LA:CLH", + "32112": "P_LA:CLH", + "32113": "P_LA:CLH", + "32114": "P_LA:CLH", + "32115": "P_LA:CLH", + "32116": "P_LA:CLH", + "32117": "P_LA:CLH", + "32118": "P_LA:CLH", + "32119": "P_LA:CLH", + "32120": "P_LA:CLH", + "32121": "P_LA:CLH", + "32122": "P_LA:CLH", + "32123": "P_LA:CLH", + "32124": "P_LA:CLH", + "32125": "P_LA:CLH", + "32126": "P_LA:CLH", + "32127": "P_LA:CLH", + "32128": "P_LA:CLH", + "32129": "P_LA:CLH", + "32130": "P_LA:CLH", + "32131": "P_LA:CLH", + "32132": "P_LA:CLH", + "32133": "P_LA:CLH", + "32134": "P_LA:CLH", + "32135": "P_LA:CLH", + "32136": "P_LA:CLH", + "32137": "P_LA:CLH", + "32138": "P_LA:CLH", + "32139": "P_LA:CLH", + "32140": "P_LA:CLH", + "32141": "P_LA:CLH", + "32142": "P_LA:CLH", + "32143": "P_LA:CLH", + "32144": "P_LA:CLH", + "32145": "P_LA:CLH", + "32146": "P_LA:CLH", + "32147": "P_LA:CLH", + "32148": "P_LA:CLH", + "32149": "P_LA:CLH", + "32150": "P_LA:CLH", + "32151": "P_LA:CLH", + "32152": "P_LA:CLH", + "32153": "P_LA:CLH", + "32154": "P_LA:CLH", + "32155": "P_LA:CLH", + "32156": "P_LA:CLH", + "32157": "P_LA:CLH", + "32158": "P_LA:CLH", + "32159": "P_LA:CLH", + "32160": "P_LA:CLH", + "32161": "P_LA:CLH", + "32162": "P_LA:CLH", + "32163": "P_LA:CLH", + "32164": "P_LA:CLH", + "32165": "P_LA:CLH", + "32166": "P_LA:CLH", + "32167": "P_LA:CLH", + "32168": "P_LA:CLH", + "32169": "P_LA:CLH", + "32170": "P_LA:CLH", + "32171": "P_LA:CLH", + "32172": "P_LA:CLH", + "32173": "P_LA:CLH", + "32174": "P_LA:CLH", + "32175": "P_LA:CLH", + "32176": "P_LA:CLH", + "32177": "P_LA:CLH", + "32178": "P_LA:CLH", + "32179": "P_LA:CLH", + "32180": "P_LA:CLH", + "32181": "P_LA:CLH", + "32182": "P_LA:CLH", + "32183": "P_LA:CLH", + "32184": "P_LA:CLH", + "32185": "P_LA:CLH", + "32186": "P_LA:CLH", + "32187": "P_LA:CLH", + "32188": "P_LA:CLH", + "32189": "P_LA:CLH", + "32190": "P_LA:CLH", + "32191": "P_LA:CLH", + "32192": "P_LA:CLH", + "32193": "P_LA:CLH", + "32194": "P_LA:CLH", + "32195": "P_LA:CLH", + "32196": "P_LA:CLH", + "32197": "P_LA:CLH", + "32198": "P_LA:CLH", + "32199": "P_LA:CLH", + "32200": "P_LA:CLH", + "32201": "P_LA:CLH", + "32202": "P_LA:CLH", + "32203": "P_LA:CLH", + "32204": "P_LA:CLH", + "32205": "P_LA:CLH", + "32206": "P_LA:CLH", + "32207": "P_LA:CLH", + "32208": "P_LA:CLH", + "32209": "P_LA:CLH", + "32210": "P_LA:CLH", + "32211": "P_LA:CLH", + "32212": "P_LA:CLH", + "32213": "P_LA:CLH", + "32214": "P_LA:CLH", + "32215": "P_LA:CLH", + "32216": "P_LA:CLH", + "32217": "P_LA:CLH", + "32218": "P_LA:CLH", + "32219": "P_LA:CLH", + "32220": "P_LA:CLH", + "32221": "P_LA:CLH", + "32222": "P_LA:CLH", + "32223": "P_LA:CLH", + "32224": "P_LA:CLH", + "32225": "P_LA:CLH", + "32226": "P_LA:CLH", + "32227": "P_LA:CLH", + "32228": "P_LA:CLH", + "32229": "P_LA:CLH", + "32230": "P_LA:CLH", + "32231": "P_LA:CLH", + "32232": "P_LA:CLH", + "32233": "P_LA:CLH", + "32234": "P_LA:CLH", + "32235": "P_LA:CLH", + "32236": "P_LA:CLH", + "32237": "P_LA:CLH", + "32238": "P_LA:CLH", + "32239": "P_LA:CLH", + "32240": "P_LA:CLH", + "32241": "P_LA:CLH", + "32242": "P_LA:CLH", + "32243": "P_LA:CLH", + "32244": "P_LA:CLH", + "32245": "P_LA:CLH", + "32246": "P_LA:CLH", + "32247": "P_LA:CLH", + "32248": "P_LA:CLH", + "32249": "P_LA:CLH", + "32250": "P_LA:CLH", + "32251": "P_LA:CLH", + "32252": "P_LA:CLH", + "32253": "P_LA:CLH", + "32254": "P_LA:CLH", + "32255": "P_LA:CLH", + "32256": "P_LA:CLH", + "32257": "P_LA:CLH", + "32258": "P_LA:CLH", + "32259": "P_LA:CLH", + "32260": "P_LA:CLH", + "32261": "P_LA:CLH", + "32262": "P_LA:CLH", + "32263": "P_LA:CLH", + "32264": "P_LA:CLH", + "32265": "P_LA:CLH", + "32266": "P_LA:CLH", + "32267": "P_LA:CLH", + "32268": "P_LA:CLH", + "32269": "P_LA:CLH", + "32270": "P_LA:CLH", + "32271": "P_LA:CLH", + "32272": "P_LA:CLH", + "32273": "P_LA:CLH", + "32274": "P_LA:CLH", + "32275": "P_LA:CLH", + "32276": "P_LA:CLH", + "32277": "P_LA:CLH", + "32278": "P_LA:CLH", + "32279": "P_LA:CLH", + "32280": "P_LA:CLH", + "32281": "P_LA:CLH", + "32282": "P_LA:CLH", + "32283": "P_LA:CLH", + "32284": "P_LA:CLH", + "32285": "P_LA:CLH", + "32286": "P_LA:CLH", + "32287": "P_LA:CLH", + "32288": "P_LA:CLH", + "32289": "P_LA:CLH", + "32290": "P_LA:CLH", + "32291": "P_LA:CLH", + "32292": "P_LA:CLH", + "32293": "P_LA:CLH", + "32294": "P_LA:CLH", + "32295": "P_LA:CLH", + "32296": "P_LA:CLH", + "32297": "P_LA:CLH", + "32298": "P_LA:CLH", + "32299": "P_LA:CLH", + "32300": "P_LA:CLH", + "32301": "P_LA:CLH", + "32302": "P_LA:CLH", + "32303": "P_LA:CLH", + "32304": "P_LA:CLH", + "32305": "P_LA:CLH", + "32306": "P_LA:CLH", + "32307": "P_LA:CLH", + "32308": "P_LA:CLH", + "32309": "P_LA:CLH", + "32310": "P_LA:CLH", + "32311": "P_LA:CLH", + "32312": "P_LA:CLH", + "32313": "P_LA:CLH", + "32314": "P_LA:CLH", + "32315": "P_LA:CLH", + "32316": "P_LA:CLH", + "32317": "P_LA:CLH", + "32318": "P_LA:CLH", + "32319": "P_LA:CLH", + "32320": "P_LA:CLH", + "32321": "P_LA:CLH", + "32322": "P_LA:CLH", + "32323": "P_LA:CLH", + "32324": "P_LA:CLH", + "32325": "P_LA:CLH", + "32326": "P_LA:CLH", + "32327": "P_LA:CLH", + "32328": "P_LA:CLH", + "32329": "P_LA:CLH", + "32330": "P_LA:CLH", + "32331": "P_LA:CLH", + "32332": "P_LA:CLH", + "32333": "P_LA:CLH", + "32334": "P_LA:CLH", + "32335": "P_LA:CLH", + "32336": "P_LA:CLH", + "32337": "P_LA:CLH", + "32338": "P_LA:CLH", + "32339": "P_LA:CLH", + "32340": "P_LA:CLH", + "32341": "P_LA:CLH", + "32342": "P_LA:CLH", + "32343": "P_LA:CLH", + "32344": "P_LA:CLH", + "32345": "P_LA:CLH", + "32346": "P_LA:CLH", + "32347": "P_LA:CLH", + "32348": "P_LA:CLH", + "32349": "P_LA:CLH", + "32350": "P_LA:CLH", + "32351": "P_LA:CLH", + "32352": "P_LA:CLH", + "32353": "P_LA:CLH", + "32354": "P_LA:CLH", + "32355": "P_LA:CLH", + "32356": "P_LA:CLH", + "32357": "P_LA:CLH", + "32358": "P_LA:CLH", + "32359": "P_LA:CLH", + "32360": "P_LA:CLH", + "32361": "P_LA:CLH", + "32362": "P_LA:CLH", + "32363": "P_LA:CLH", + "32364": "P_LA:CLH", + "32365": "P_LA:CLH", + "32366": "P_LA:CLH", + "32367": "P_LA:CLH", + "32368": "P_LA:CLH", + "32369": "P_LA:CLH", + "32370": "P_LA:CLH", + "32371": "P_LA:CLH", + "32372": "P_LA:CLH", + "32373": "P_LA:CLH", + "32374": "P_LA:CLH", + "32375": "P_LA:CLH", + "32376": "P_LA:CLH", + "32377": "P_LA:CLH", + "32378": "P_LA:CLH", + "32379": "P_LA:CLH", + "32380": "P_LA:CLH", + "32381": "P_LA:CLH", + "32382": "P_LA:CLH", + "32383": "P_LA:CLH", + "32384": "P_LA:CLH", + "32385": "P_LA:CLH", + "32386": "P_LA:CLH", + "32387": "P_LA:CLH", + "32388": "P_LA:CLH", + "32389": "P_LA:CLH", + "32390": "P_LA:CLH", + "32391": "P_LA:CLH", + "32392": "P_LA:CLH", + "32393": "P_LA:CLH", + "32394": "P_LA:CLH", + "32395": "P_LA:CLH", + "32396": "P_LA:CLH", + "32397": "P_LA:CLH", + "32398": "P_LA:CLH", + "32399": "P_LA:CLH", + "32400": "P_LA:CLH", + "32401": "P_LA:CLH", + "32402": "P_LA:CLH", + "32403": "P_LA:CLH", + "32404": "P_LA:CLH", + "32405": "P_LA:CLH", + "32406": "P_LA:CLH", + "32407": "P_LA:CLH", + "32408": "P_LA:CLH", + "32409": "P_LA:CLH", + "32410": "P_LA:CLH", + "32411": "P_LA:CLH", + "32412": "P_LA:CLH", + "32413": "P_LA:CLH", + "32414": "P_LA:CLH", + "32415": "P_LA:CLH", + "32416": "P_LA:CLH", + "32417": "P_LA:CLH", + "32418": "P_LA:CLH", + "32419": "P_LA:CLH", + "32420": "P_LA:CLH", + "32421": "P_LA:CLH", + "32422": "P_LA:CLH", + "32423": "P_LA:CLH", + "32424": "P_LA:CLH", + "32425": "P_LA:CLH", + "32426": "P_LA:CLH", + "32427": "P_LA:CLH", + "32428": "P_LA:CLH", + "32429": "P_LA:CLH", + "32430": "P_LA:CLH", + "32431": "P_LA:CLH", + "32432": "P_LA:CLH", + "32433": "P_LA:CLH", + "32434": "P_LA:CLH", + "32435": "P_LA:CLH", + "32436": "P_LA:CLH", + "32437": "P_LA:CLH", + "32438": "P_LA:CLH", + "32439": "P_LA:CLH", + "32440": "P_LA:CLH", + "32441": "P_LA:CLH", + "32442": "P_LA:CLH", + "32443": "P_LA:CLH", + "32444": "P_LA:CLH", + "32445": "P_LA:CLH", + "32446": "P_LA:CLH", + "32447": "P_LA:CLH", + "32448": "P_LA:CLH", + "32449": "P_LA:CLH", + "32450": "P_LA:CLH", + "32451": "P_LA:CLH", + "32452": "P_LA:CLH", + "32453": "P_LA:CLH", + "32454": "P_LA:CLH", + "32455": "P_LA:CLH", + "32456": "P_LA:CLH", + "32457": "P_LA:CLH", + "32458": "P_LA:CLH", + "32459": "P_LA:CLH", + "32460": "P_LA:CLH", + "32461": "P_LA:CLH", + "32462": "P_LA:CLH", + "32463": "P_LA:CLH", + "32464": "P_LA:CLH", + "32465": "P_LA:CLH", + "32466": "P_LA:CLH", + "32467": "P_LA:CLH", + "32468": "P_LA:CLH", + "32469": "P_LA:CLH", + "32470": "P_LA:CLH", + "32471": "P_LA:CLH", + "32472": "P_LA:CLH", + "32473": "P_LA:CLH", + "32474": "P_LA:CLH", + "32475": "P_LA:CLH", + "32476": "P_LA:CLH", + "32477": "P_LA:CLH", + "32478": "P_LA:CLH", + "32479": "P_LA:CLH", + "32480": "P_LA:CLH", + "32481": "P_LA:CLH", + "32482": "P_LA:CLH", + "32483": "P_LA:CLH", + "32484": "P_LA:CLH", + "32485": "P_LA:CLH", + "32486": "P_LA:CLH", + "32487": "P_LA:CLH", + "32488": "P_LA:CLH", + "32489": "P_LA:CLH", + "32490": "P_LA:CLH", + "32491": "P_LA:CLH", + "32492": "P_LA:CLH", + "32493": "P_LA:CLH", + "32494": "P_LA:CLH", + "32495": "P_LA:CLH", + "32496": "P_LA:CLH", + "32497": "P_LA:CLH", + "32498": "P_LA:CLH", + "32499": "P_LA:CLH", + "32500": "P_LA:CLH", + "32501": "P_LA:CLH", + "32502": "P_LA:CLH", + "32503": "P_LA:CLH", + "32504": "P_LA:CLH", + "32505": "P_LA:CLH", + "32506": "P_LA:CLH", + "32507": "P_LA:CLH", + "32508": "P_LA:CLH", + "32509": "P_LA:CLH", + "32510": "P_LA:CLH", + "32511": "P_LA:CLH", + "32512": "P_LA:CLH", + "32513": "P_LA:CLH", + "32514": "P_LA:CLH", + "32515": "P_LA:CLH", + "32516": "P_LA:CLH", + "32517": "P_LA:CLH", + "32518": "P_LA:CLH", + "32519": "P_LA:CLH", + "32520": "P_LA:CLH", + "32521": "P_LA:CLH", + "32522": "P_LA:CLH", + "32523": "P_LA:CLH", + "32524": "P_LA:CLH", + "32525": "P_LA:CLH", + "32526": "P_LA:CLH", + "32527": "P_LA:CLH", + "32528": "P_LA:CLH", + "32529": "P_LA:CLH", + "32530": "P_LA:CLH", + "32531": "P_LA:CLH", + "32532": "P_LA:CLH", + "32533": "P_LA:CLH", + "32534": "P_LA:CLH", + "32535": "P_LA:CLH", + "32536": "P_LA:CLH", + "32537": "P_LA:CLH", + "32538": "P_LA:CLH", + "32539": "P_LA:CLH", + "32540": "P_LA:CLH", + "32541": "P_LA:CLH", + "32542": "P_LA:CLH", + "32543": "P_LA:CLH", + "32544": "P_LA:CLH", + "32545": "P_LA:CLH", + "32546": "P_LA:CLH", + "32547": "P_LA:CLH", + "32548": "P_LA:CLH", + "32549": "P_LA:CLH", + "32550": "P_LA:CLH", + "32551": "P_LA:CLH", + "32552": "P_LA:CLH", + "32553": "P_LA:CLH", + "32554": "P_LA:CLH", + "32555": "P_LA:CLH", + "32556": "P_LA:CLH", + "32557": "P_LA:CLH", + "32558": "P_LA:CLH", + "32559": "P_LA:CLH", + "32560": "P_LA:CLH", + "32561": "P_LA:CLH", + "32562": "P_LA:CLH", + "32563": "P_LA:CLH", + "32564": "P_LA:CLH", + "32565": "P_LA:CLH", + "32566": "P_LA:CLH", + "32567": "P_LA:CLH", + "32568": "P_LA:CLH", + "32569": "P_LA:CLH", + "32570": "P_LA:CLH", + "32571": "P_LA:CLH", + "32572": "P_LA:CLH", + "32573": "P_LA:CLH", + "32574": "P_LA:CLH", + "32575": "P_LA:CLH", + "32576": "P_LA:CLH", + "32577": "P_LA:CLH", + "32578": "P_LA:CLH", + "32579": "P_LA:CLH", + "32580": "P_LA:CLH", + "32581": "P_LA:CLH", + "32582": "P_LA:CLH", + "32583": "P_LA:CLH", + "32584": "P_LA:CLH", + "32585": "P_LA:CLH", + "32586": "P_LA:CLH", + "32587": "P_LA:CLH", + "32588": "P_LA:CLH", + "32589": "P_LA:CLH", + "32590": "P_LA:CLH", + "32591": "P_LA:CLH", + "32592": "P_LA:CLH", + "32593": "P_LA:CLH", + "32594": "P_LA:CLH", + "32595": "P_LA:CLH", + "32596": "P_LA:CLH", + "32597": "P_LA:CLH", + "32598": "P_LA:CLH", + "32599": "P_LA:CLH", + "32600": "P_LA:CLH", + "32601": "P_LA:CLH", + "32602": "P_LA:CLH", + "32603": "P_LA:CLH", + "32604": "P_LA:CLH", + "32605": "P_LA:CLH", + "32606": "P_LA:CLH", + "32607": "P_LA:CLH", + "32608": "P_LA:CLH", + "32609": "P_LA:CLH", + "32610": "P_LA:CLH", + "32611": "P_LA:CLH", + "32612": "P_LA:CLH", + "32613": "P_LA:CLH", + "32614": "P_LA:CLH", + "32615": "P_LA:CLH", + "32616": "P_LA:CLH", + "32617": "P_LA:CLH", + "32618": "P_LA:CLH", + "32619": "P_LA:CLH", + "32620": "P_LA:CLH", + "32621": "P_LA:CLH", + "32622": "P_LA:CLH", + "32623": "P_LA:CLH", + "32624": "P_LA:CLH", + "32625": "P_LA:CLH", + "32626": "P_LA:CLH", + "32627": "P_LA:CLH", + "32628": "P_LA:CLH", + "32629": "P_LA:CLH", + "32630": "P_LA:CLH", + "32631": "P_LA:CLH", + "32632": "P_LA:CLH", + "32633": "P_LA:CLH", + "32634": "P_LA:CLH", + "32635": "P_LA:CLH", + "32636": "P_LA:CLH", + "32637": "P_LA:CLH", + "32638": "P_LA:CLH", + "32639": "P_LA:CLH", + "32640": "P_LA:CLH", + "32641": "P_LA:CLH", + "32642": "P_LA:CLH", + "32643": "P_LA:CLH", + "32644": "P_LA:CLH", + "32645": "P_LA:CLH", + "32646": "P_LA:CLH", + "32647": "P_LA:CLH", + "32648": "P_LA:CLH", + "32649": "P_LA:CLH", + "32650": "P_LA:CLH", + "32651": "P_LA:CLH", + "32652": "P_LA:CLH", + "32653": "P_LA:CLH", + "32654": "P_LA:CLH", + "32655": "P_LA:CLH", + "32656": "P_LA:CLH", + "32657": "P_LA:CLH", + "32658": "P_LA:CLH", + "32659": "P_LA:CLH", + "32660": "P_LA:CLH", + "32661": "P_LA:CLH", + "32662": "P_LA:CLH", + "32663": "P_LA:CLH", + "32664": "P_LA:CLH", + "32665": "P_LA:CLH", + "32666": "P_LA:CLH", + "32667": "P_LA:CLH", + "32668": "P_LA:CLH", + "32669": "P_LA:CLH", + "32670": "P_LA:CLH", + "32671": "P_LA:CLH", + "32672": "P_LA:CLH", + "32673": "P_LA:CLH", + "32674": "P_LA:CLH", + "32675": "P_LA:CLH", + "32676": "P_LA:CLH", + "32677": "P_LA:CLH", + "32678": "P_LA:CLH", + "32679": "P_LA:CLH", + "32680": "P_LA:CLH", + "32681": "P_LA:CLH", + "32682": "P_LA:CLH", + "32683": "P_LA:CLH", + "32684": "P_LA:CLH", + "32685": "P_LA:CLH", + "32686": "P_LA:CLH", + "32687": "P_LA:CLH", + "32688": "P_LA:CLH", + "32689": "P_LA:CLH", + "32690": "P_LA:CLH", + "32691": "P_LA:CLH", + "32692": "P_LA:CLH", + "32693": "P_LA:CLH", + "32694": "P_LA:CLH", + "32695": "P_LA:CLH", + "32696": "P_LA:CLH", + "32697": "P_LA:CLH", + "32698": "P_LA:CLH", + "32699": "P_LA:CLH", + "32700": "P_LA:CLH", + "32701": "P_LA:CLH", + "32702": "P_LA:CLH", + "32703": "P_LA:CLH", + "32704": "P_LA:CLH", + "32705": "P_LA:CLH", + "32706": "P_LA:CLH", + "32707": "P_LA:CLH", + "32708": "P_LA:CLH", + "32709": "P_LA:CLH", + "32710": "P_LA:CLH", + "32711": "P_LA:CLH", + "32712": "P_LA:CLH", + "32713": "P_LA:CLH", + "32714": "P_LA:CLH", + "32715": "P_LA:CLH", + "32716": "P_LA:CLH", + "32717": "P_LA:CLH", + "32718": "P_LA:CLH", + "32719": "P_LA:CLH", + "32720": "P_LA:CLH", + "32721": "P_LA:CLH", + "32722": "P_LA:CLH", + "32723": "P_LA:CLH", + "32724": "P_LA:CLH", + "32725": "P_LA:CLH", + "32726": "P_LA:CLH", + "32727": "P_LA:CLH", + "32728": "P_LA:CLH", + "32729": "P_LA:CLH", + "32730": "P_LA:CLH", + "32731": "P_LA:CLH", + "32732": "P_LA:CLH", + "32733": "P_LA:CLH", + "32734": "P_LA:CLH", + "32735": "P_LA:CLH", + "32736": "P_LA:CLH", + "32737": "P_LA:CLH", + "32738": "P_LA:CLH", + "32739": "P_LA:CLH", + "32740": "P_LA:CLH", + "32741": "P_LA:CLH", + "32742": "P_LA:CLH", + "32743": "P_LA:CLH", + "32744": "P_LA:CLH", + "32745": "P_LA:CLH", + "32746": "P_LA:CLH", + "32747": "P_LA:CLH", + "32748": "P_LA:CLH", + "32749": "P_LA:CLH", + "32750": "P_LA:CLH", + "32751": "P_LA:CLH", + "32752": "P_LA:CLH", + "32753": "P_LA:CLH", + "32754": "P_LA:CLH", + "32755": "P_LA:CLH", + "32756": "P_LA:CLH", + "32757": "P_LA:CLH", + "32758": "P_LA:CLH", + "32759": "P_LA:CLH", + "32760": "P_LA:CLH", + "32761": "P_LA:CLH", + "32762": "P_LA:CLH", + "32763": "P_LA:CLH", + "32764": "P_LA:CLH", + "32765": "P_LA:CLH", + "32766": "P_LA:CLH", + "32767": "P_LA:CLH", + "32768": "P_LA:CLH", + "32769": "P_LA:CLH", + "32770": "P_LA:CLH", + "32771": "P_LA:CLH", + "32772": "P_LA:CLH", + "32773": "P_LA:CLH", + "32774": "P_LA:CLH", + "32775": "P_LA:CLH", + "32776": "P_LA:CLH", + "32777": "P_LA:CLH", + "32778": "P_LA:CLH", + "32779": "P_LA:CLH", + "32780": "P_LA:CLH", + "32781": "P_LA:CLH", + "32782": "P_LA:CLH", + "32783": "P_LA:CLH", + "32784": "P_LA:CLH", + "32785": "P_LA:CLH", + "32786": "P_LA:CLH", + "32787": "P_LA:CLH", + "32788": "P_LA:CLH", + "32789": "P_LA:CLH", + "32790": "P_LA:CLH", + "32791": "P_LA:CLH", + "32792": "P_LA:CLH", + "32793": "P_LA:CLH", + "32794": "P_LA:CLH", + "32795": "P_LA:CLH", + "32796": "P_LA:CLH", + "32797": "P_LA:CLH", + "32798": "P_LA:CLH", + "32799": "P_LA:CLH", + "32800": "P_LA:CLH", + "32801": "P_LA:CLH", + "32802": "P_LA:CLH", + "32803": "P_LA:CLH", + "32804": "P_LA:CLH", + "32805": "P_LA:CLH", + "32806": "P_LA:CLH", + "32807": "P_LA:CLH", + "32808": "P_LA:CLH", + "32809": "P_LA:CLH", + "32810": "P_LA:CLH", + "32811": "P_LA:CLH", + "32812": "P_LA:CLH", + "32813": "P_LA:CLH", + "32814": "P_LA:CLH", + "32815": "P_LA:CLH", + "32816": "P_LA:CLH", + "32817": "P_LA:CLH", + "32818": "P_LA:CLH", + "32819": "P_LA:CLH", + "32820": "P_LA:CLH", + "32821": "P_LA:CLH", + "32822": "P_LA:CLH", + "32823": "P_LA:CLH", + "32824": "P_LA:CLH", + "32825": "P_LA:CLH", + "32826": "P_LA:CLH", + "32827": "P_LA:CLH", + "32828": "P_LA:CLH", + "32829": "P_LA:CLH", + "32830": "P_LA:CLH", + "32831": "P_LA:CLH", + "32832": "P_LA:CLH", + "32833": "P_LA:CLH", + "32834": "P_LA:CLH", + "32835": "P_LA:CLH", + "32836": "P_LA:CLH", + "32837": "P_LA:CLH", + "32838": "P_LA:CLH", + "32839": "P_LA:CLH", + "32840": "P_LA:CLH", + "32841": "P_LA:CLH", + "32842": "P_LA:CLH", + "32843": "P_LA:CLH", + "32844": "P_LA:CLH", + "32845": "P_LA:CLH", + "32846": "P_LA:CLH", + "32847": "P_LA:CLH", + "32848": "P_LA:CLH", + "32849": "P_LA:CLH", + "32850": "P_LA:CLH", + "32851": "P_LA:CLH", + "32852": "P_LA:CLH", + "32853": "P_LA:CLH", + "32854": "P_LA:CLH", + "32855": "P_LA:CLH", + "32856": "P_LA:CLH", + "32857": "P_LA:CLH", + "32858": "P_LA:CLH", + "32859": "P_LA:CLH", + "32860": "P_LA:CLH", + "32861": "P_LA:CLH", + "32862": "P_LA:CLH", + "32863": "P_LA:CLH", + "32864": "P_LA:CLH", + "32865": "P_LA:CLH", + "32866": "P_LA:CLH", + "32867": "P_LA:CLH", + "32868": "P_LA:CLH", + "32869": "P_LA:CLH", + "32870": "P_LA:CLH", + "32871": "P_LA:CLH", + "32872": "P_LA:CLH", + "32873": "P_LA:CLH", + "32874": "P_LA:CLH", + "32875": "P_LA:CLH", + "32876": "P_LA:CLH", + "32877": "P_LA:CLH", + "32878": "P_LA:CLH", + "32879": "P_LA:CLH", + "32880": "P_LA:CLH", + "32881": "P_LA:CLH", + "32882": "P_LA:CLH", + "32883": "P_LA:CLH", + "32884": "P_LA:CLH", + "32885": "P_LA:CLH", + "32886": "P_LA:CLH", + "32887": "P_LA:CLH", + "32888": "P_LA:CLH", + "32889": "P_LA:CLH", + "32890": "P_LA:CLH", + "32891": "P_LA:CLH", + "32892": "P_LA:CLH", + "32893": "P_LA:CLH", + "32894": "P_LA:CLH", + "32895": "P_LA:CLH", + "32896": "P_LA:CLH", + "32897": "P_LA:CLH", + "32898": "P_LA:CLH", + "32899": "P_LA:CLH", + "32900": "P_LA:CLH", + "32901": "P_LA:CLH", + "32902": "P_LA:CLH", + "32903": "P_LA:CLH", + "32904": "P_LA:CLH", + "32905": "P_LA:CLH", + "32906": "P_LA:CLH", + "32907": "P_LA:CLH", + "32908": "P_LA:CLH", + "32909": "P_LA:CLH", + "32910": "P_LA:CLH", + "32911": "P_LA:CLH", + "32912": "P_LA:CLH", + "32913": "P_LA:CLH", + "32914": "P_LA:CLH", + "32915": "P_LA:CLH", + "32916": "P_LA:CLH", + "32917": "P_LA:CLH", + "32918": "P_LA:CLH", + "32919": "P_LA:CLH", + "32920": "P_LA:CLH", + "32921": "P_LA:CLH", + "32922": "P_LA:CLH", + "32923": "P_LA:CLH", + "32924": "P_LA:CLH", + "32925": "P_LA:CLH", + "32926": "P_LA:CLH", + "32927": "P_LA:CLH", + "32928": "P_LA:CLH", + "32929": "P_LA:CLH", + "32930": "P_LA:CLH", + "32931": "P_LA:CLH", + "32932": "P_LA:CLH", + "32933": "P_LA:CLH", + "32934": "P_LA:CLH", + "32935": "P_LA:CLH", + "32936": "P_LA:CLH", + "32937": "P_LA:CLH", + "32938": "P_LA:CLH", + "32939": "P_LA:CLH", + "32940": "P_LA:CLH", + "32941": "P_LA:CLH", + "32942": "P_LA:CLH", + "32943": "P_LA:CLH", + "32944": "P_LA:CLH", + "32945": "P_LA:CLH", + "32946": "P_LA:CLH", + "32947": "P_LA:CLH", + "32948": "P_LA:CLH", + "32949": "P_LA:CLH", + "32950": "P_LA:CLH", + "32951": "P_LA:CLH", + "32952": "P_LA:CLH", + "32953": "P_LA:CLH", + "32954": "P_LA:CLH", + "32955": "P_LA:CLH", + "32956": "P_LA:CLH", + "32957": "P_LA:CLH", + "32958": "P_LA:CLH", + "32959": "P_LA:CLH", + "32960": "P_LA:CLH", + "32961": "P_LA:CLH", + "32962": "P_LA:CLH", + "32963": "P_LA:CLH", + "32964": "P_LA:CLH", + "32965": "P_LA:CLH", + "32966": "P_LA:CLH", + "32967": "P_LA:CLH", + "32968": "P_LA:CLH", + "32969": "P_LA:CLH", + "32970": "P_LA:CLH", + "32971": "P_LA:CLH", + "32972": "P_LA:CLH", + "32973": "P_LA:CLH", + "32974": "P_LA:CLH", + "32975": "P_LA:CLH", + "32976": "P_LA:CLH", + "32977": "P_LA:CLH", + "32978": "P_LA:CLH", + "32979": "P_LA:CLH", + "32980": "P_LA:CLH", + "32981": "P_LA:CLH", + "32982": "P_LA:CLH", + "32983": "P_LA:CLH", + "32984": "P_LA:CLH", + "32985": "P_LA:CLH", + "32986": "P_LA:CLH", + "32987": "P_LA:CLH", + "32988": "P_LA:CLH", + "32989": "P_LA:CLH", + "32990": "P_LA:CLH", + "32991": "P_LA:CLH", + "32992": "P_LA:CLH", + "32993": "P_LA:CLH", + "32994": "P_LA:CLH", + "32995": "P_LA:CLH", + "32996": "P_LA:CLH", + "32997": "P_LA:CLH", + "32998": "P_LA:CLH", + "32999": "P_LA:CLH", + "33000": "V_LA:CLH", + "33001": "V_LA:CLH", + "33002": "V_LA:CLH", + "33003": "V_LA:CLH", + "33004": "V_LA:CLH", + "33005": "V_LA:CLH", + "33006": "V_LA:CLH", + "33007": "V_LA:CLH", + "33008": "V_LA:CLH", + "33009": "V_LA:CLH", + "33010": "V_LA:CLH", + "33011": "V_LA:CLH", + "33012": "V_LA:CLH", + "33013": "V_LA:CLH", + "33014": "V_LA:CLH", + "33015": "V_LA:CLH", + "33016": "V_LA:CLH", + "33017": "V_LA:CLH", + "33018": "V_LA:CLH", + "33019": "V_LA:CLH", + "33020": "V_LA:CLH", + "33021": "V_LA:CLH", + "33022": "V_LA:CLH", + "33023": "V_LA:CLH", + "33024": "V_LA:CLH", + "33025": "V_LA:CLH", + "33026": "V_LA:CLH", + "33027": "V_LA:CLH", + "33028": "V_LA:CLH", + "33029": "V_LA:CLH", + "33030": "V_LA:CLH", + "33031": "V_LA:CLH", + "33032": "V_LA:CLH", + "33033": "V_LA:CLH", + "33034": "V_LA:CLH", + "33035": "V_LA:CLH", + "33036": "V_LA:CLH", + "33037": "V_LA:CLH", + "33038": "V_LA:CLH", + "33039": "V_LA:CLH", + "33040": "V_LA:CLH", + "33041": "V_LA:CLH", + "33042": "V_LA:CLH", + "33043": "V_LA:CLH", + "33044": "V_LA:CLH", + "33045": "V_LA:CLH", + "33046": "V_LA:CLH", + "33047": "V_LA:CLH", + "33048": "V_LA:CLH", + "33049": "V_LA:CLH", + "33050": "V_LA:CLH", + "33051": "V_LA:CLH", + "33052": "V_LA:CLH", + "33053": "V_LA:CLH", + "33054": "V_LA:CLH", + "33055": "V_LA:CLH", + "33056": "V_LA:CLH", + "33057": "V_LA:CLH", + "33058": "V_LA:CLH", + "33059": "V_LA:CLH", + "33060": "V_LA:CLH", + "33061": "V_LA:CLH", + "33062": "V_LA:CLH", + "33063": "V_LA:CLH", + "33064": "V_LA:CLH", + "33065": "V_LA:CLH", + "33066": "V_LA:CLH", + "33067": "V_LA:CLH", + "33068": "V_LA:CLH", + "33069": "V_LA:CLH", + "33070": "V_LA:CLH", + "33071": "V_LA:CLH", + "33072": "V_LA:CLH", + "33073": "V_LA:CLH", + "33074": "V_LA:CLH", + "33075": "V_LA:CLH", + "33076": "V_LA:CLH", + "33077": "V_LA:CLH", + "33078": "V_LA:CLH", + "33079": "V_LA:CLH", + "33080": "V_LA:CLH", + "33081": "V_LA:CLH", + "33082": "V_LA:CLH", + "33083": "V_LA:CLH", + "33084": "V_LA:CLH", + "33085": "V_LA:CLH", + "33086": "V_LA:CLH", + "33087": "V_LA:CLH", + "33088": "V_LA:CLH", + "33089": "V_LA:CLH", + "33090": "V_LA:CLH", + "33091": "V_LA:CLH", + "33092": "V_LA:CLH", + "33093": "V_LA:CLH", + "33094": "V_LA:CLH", + "33095": "V_LA:CLH", + "33096": "V_LA:CLH", + "33097": "V_LA:CLH", + "33098": "V_LA:CLH", + "33099": "V_LA:CLH", + "33100": "V_LA:CLH", + "33101": "V_LA:CLH", + "33102": "V_LA:CLH", + "33103": "V_LA:CLH", + "33104": "V_LA:CLH", + "33105": "V_LA:CLH", + "33106": "V_LA:CLH", + "33107": "V_LA:CLH", + "33108": "V_LA:CLH", + "33109": "V_LA:CLH", + "33110": "V_LA:CLH", + "33111": "V_LA:CLH", + "33112": "V_LA:CLH", + "33113": "V_LA:CLH", + "33114": "V_LA:CLH", + "33115": "V_LA:CLH", + "33116": "V_LA:CLH", + "33117": "V_LA:CLH", + "33118": "V_LA:CLH", + "33119": "V_LA:CLH", + "33120": "V_LA:CLH", + "33121": "V_LA:CLH", + "33122": "V_LA:CLH", + "33123": "V_LA:CLH", + "33124": "V_LA:CLH", + "33125": "V_LA:CLH", + "33126": "V_LA:CLH", + "33127": "V_LA:CLH", + "33128": "V_LA:CLH", + "33129": "V_LA:CLH", + "33130": "V_LA:CLH", + "33131": "V_LA:CLH", + "33132": "V_LA:CLH", + "33133": "V_LA:CLH", + "33134": "V_LA:CLH", + "33135": "V_LA:CLH", + "33136": "V_LA:CLH", + "33137": "V_LA:CLH", + "33138": "V_LA:CLH", + "33139": "V_LA:CLH", + "33140": "V_LA:CLH", + "33141": "V_LA:CLH", + "33142": "V_LA:CLH", + "33143": "V_LA:CLH", + "33144": "V_LA:CLH", + "33145": "V_LA:CLH", + "33146": "V_LA:CLH", + "33147": "V_LA:CLH", + "33148": "V_LA:CLH", + "33149": "V_LA:CLH", + "33150": "V_LA:CLH", + "33151": "V_LA:CLH", + "33152": "V_LA:CLH", + "33153": "V_LA:CLH", + "33154": "V_LA:CLH", + "33155": "V_LA:CLH", + "33156": "V_LA:CLH", + "33157": "V_LA:CLH", + "33158": "V_LA:CLH", + "33159": "V_LA:CLH", + "33160": "V_LA:CLH", + "33161": "V_LA:CLH", + "33162": "V_LA:CLH", + "33163": "V_LA:CLH", + "33164": "V_LA:CLH", + "33165": "V_LA:CLH", + "33166": "V_LA:CLH", + "33167": "V_LA:CLH", + "33168": "V_LA:CLH", + "33169": "V_LA:CLH", + "33170": "V_LA:CLH", + "33171": "V_LA:CLH", + "33172": "V_LA:CLH", + "33173": "V_LA:CLH", + "33174": "V_LA:CLH", + "33175": "V_LA:CLH", + "33176": "V_LA:CLH", + "33177": "V_LA:CLH", + "33178": "V_LA:CLH", + "33179": "V_LA:CLH", + "33180": "V_LA:CLH", + "33181": "V_LA:CLH", + "33182": "V_LA:CLH", + "33183": "V_LA:CLH", + "33184": "V_LA:CLH", + "33185": "V_LA:CLH", + "33186": "V_LA:CLH", + "33187": "V_LA:CLH", + "33188": "V_LA:CLH", + "33189": "V_LA:CLH", + "33190": "V_LA:CLH", + "33191": "V_LA:CLH", + "33192": "V_LA:CLH", + "33193": "V_LA:CLH", + "33194": "V_LA:CLH", + "33195": "V_LA:CLH", + "33196": "V_LA:CLH", + "33197": "V_LA:CLH", + "33198": "V_LA:CLH", + "33199": "V_LA:CLH", + "33200": "V_LA:CLH", + "33201": "V_LA:CLH", + "33202": "V_LA:CLH", + "33203": "V_LA:CLH", + "33204": "V_LA:CLH", + "33205": "V_LA:CLH", + "33206": "V_LA:CLH", + "33207": "V_LA:CLH", + "33208": "V_LA:CLH", + "33209": "V_LA:CLH", + "33210": "V_LA:CLH", + "33211": "V_LA:CLH", + "33212": "V_LA:CLH", + "33213": "V_LA:CLH", + "33214": "V_LA:CLH", + "33215": "V_LA:CLH", + "33216": "V_LA:CLH", + "33217": "V_LA:CLH", + "33218": "V_LA:CLH", + "33219": "V_LA:CLH", + "33220": "V_LA:CLH", + "33221": "V_LA:CLH", + "33222": "V_LA:CLH", + "33223": "V_LA:CLH", + "33224": "V_LA:CLH", + "33225": "V_LA:CLH", + "33226": "V_LA:CLH", + "33227": "V_LA:CLH", + "33228": "V_LA:CLH", + "33229": "V_LA:CLH", + "33230": "V_LA:CLH", + "33231": "V_LA:CLH", + "33232": "V_LA:CLH", + "33233": "V_LA:CLH", + "33234": "V_LA:CLH", + "33235": "V_LA:CLH", + "33236": "V_LA:CLH", + "33237": "V_LA:CLH", + "33238": "V_LA:CLH", + "33239": "V_LA:CLH", + "33240": "V_LA:CLH", + "33241": "V_LA:CLH", + "33242": "V_LA:CLH", + "33243": "V_LA:CLH", + "33244": "V_LA:CLH", + "33245": "V_LA:CLH", + "33246": "V_LA:CLH", + "33247": "V_LA:CLH", + "33248": "V_LA:CLH", + "33249": "V_LA:CLH", + "33250": "V_LA:CLH", + "33251": "V_LA:CLH", + "33252": "V_LA:CLH", + "33253": "V_LA:CLH", + "33254": "V_LA:CLH", + "33255": "V_LA:CLH", + "33256": "V_LA:CLH", + "33257": "V_LA:CLH", + "33258": "V_LA:CLH", + "33259": "V_LA:CLH", + "33260": "V_LA:CLH", + "33261": "V_LA:CLH", + "33262": "V_LA:CLH", + "33263": "V_LA:CLH", + "33264": "V_LA:CLH", + "33265": "V_LA:CLH", + "33266": "V_LA:CLH", + "33267": "V_LA:CLH", + "33268": "V_LA:CLH", + "33269": "V_LA:CLH", + "33270": "V_LA:CLH", + "33271": "V_LA:CLH", + "33272": "V_LA:CLH", + "33273": "V_LA:CLH", + "33274": "V_LA:CLH", + "33275": "V_LA:CLH", + "33276": "V_LA:CLH", + "33277": "V_LA:CLH", + "33278": "V_LA:CLH", + "33279": "V_LA:CLH", + "33280": "V_LA:CLH", + "33281": "V_LA:CLH", + "33282": "V_LA:CLH", + "33283": "V_LA:CLH", + "33284": "V_LA:CLH", + "33285": "V_LA:CLH", + "33286": "V_LA:CLH", + "33287": "V_LA:CLH", + "33288": "V_LA:CLH", + "33289": "V_LA:CLH", + "33290": "V_LA:CLH", + "33291": "V_LA:CLH", + "33292": "V_LA:CLH", + "33293": "V_LA:CLH", + "33294": "V_LA:CLH", + "33295": "V_LA:CLH", + "33296": "V_LA:CLH", + "33297": "V_LA:CLH", + "33298": "V_LA:CLH", + "33299": "V_LA:CLH", + "33300": "V_LA:CLH", + "33301": "V_LA:CLH", + "33302": "V_LA:CLH", + "33303": "V_LA:CLH", + "33304": "V_LA:CLH", + "33305": "V_LA:CLH", + "33306": "V_LA:CLH", + "33307": "V_LA:CLH", + "33308": "V_LA:CLH", + "33309": "V_LA:CLH", + "33310": "V_LA:CLH", + "33311": "V_LA:CLH", + "33312": "V_LA:CLH", + "33313": "V_LA:CLH", + "33314": "V_LA:CLH", + "33315": "V_LA:CLH", + "33316": "V_LA:CLH", + "33317": "V_LA:CLH", + "33318": "V_LA:CLH", + "33319": "V_LA:CLH", + "33320": "V_LA:CLH", + "33321": "V_LA:CLH", + "33322": "V_LA:CLH", + "33323": "V_LA:CLH", + "33324": "V_LA:CLH", + "33325": "V_LA:CLH", + "33326": "V_LA:CLH", + "33327": "V_LA:CLH", + "33328": "V_LA:CLH", + "33329": "V_LA:CLH", + "33330": "V_LA:CLH", + "33331": "V_LA:CLH", + "33332": "V_LA:CLH", + "33333": "V_LA:CLH", + "33334": "V_LA:CLH", + "33335": "V_LA:CLH", + "33336": "V_LA:CLH", + "33337": "V_LA:CLH", + "33338": "V_LA:CLH", + "33339": "V_LA:CLH", + "33340": "V_LA:CLH", + "33341": "V_LA:CLH", + "33342": "V_LA:CLH", + "33343": "V_LA:CLH", + "33344": "V_LA:CLH", + "33345": "V_LA:CLH", + "33346": "V_LA:CLH", + "33347": "V_LA:CLH", + "33348": "V_LA:CLH", + "33349": "V_LA:CLH", + "33350": "V_LA:CLH", + "33351": "V_LA:CLH", + "33352": "V_LA:CLH", + "33353": "V_LA:CLH", + "33354": "V_LA:CLH", + "33355": "V_LA:CLH", + "33356": "V_LA:CLH", + "33357": "V_LA:CLH", + "33358": "V_LA:CLH", + "33359": "V_LA:CLH", + "33360": "V_LA:CLH", + "33361": "V_LA:CLH", + "33362": "V_LA:CLH", + "33363": "V_LA:CLH", + "33364": "V_LA:CLH", + "33365": "V_LA:CLH", + "33366": "V_LA:CLH", + "33367": "V_LA:CLH", + "33368": "V_LA:CLH", + "33369": "V_LA:CLH", + "33370": "V_LA:CLH", + "33371": "V_LA:CLH", + "33372": "V_LA:CLH", + "33373": "V_LA:CLH", + "33374": "V_LA:CLH", + "33375": "V_LA:CLH", + "33376": "V_LA:CLH", + "33377": "V_LA:CLH", + "33378": "V_LA:CLH", + "33379": "V_LA:CLH", + "33380": "V_LA:CLH", + "33381": "V_LA:CLH", + "33382": "V_LA:CLH", + "33383": "V_LA:CLH", + "33384": "V_LA:CLH", + "33385": "V_LA:CLH", + "33386": "V_LA:CLH", + "33387": "V_LA:CLH", + "33388": "V_LA:CLH", + "33389": "V_LA:CLH", + "33390": "V_LA:CLH", + "33391": "V_LA:CLH", + "33392": "V_LA:CLH", + "33393": "V_LA:CLH", + "33394": "V_LA:CLH", + "33395": "V_LA:CLH", + "33396": "V_LA:CLH", + "33397": "V_LA:CLH", + "33398": "V_LA:CLH", + "33399": "V_LA:CLH", + "33400": "V_LA:CLH", + "33401": "V_LA:CLH", + "33402": "V_LA:CLH", + "33403": "V_LA:CLH", + "33404": "V_LA:CLH", + "33405": "V_LA:CLH", + "33406": "V_LA:CLH", + "33407": "V_LA:CLH", + "33408": "V_LA:CLH", + "33409": "V_LA:CLH", + "33410": "V_LA:CLH", + "33411": "V_LA:CLH", + "33412": "V_LA:CLH", + "33413": "V_LA:CLH", + "33414": "V_LA:CLH", + "33415": "V_LA:CLH", + "33416": "V_LA:CLH", + "33417": "V_LA:CLH", + "33418": "V_LA:CLH", + "33419": "V_LA:CLH", + "33420": "V_LA:CLH", + "33421": "V_LA:CLH", + "33422": "V_LA:CLH", + "33423": "V_LA:CLH", + "33424": "V_LA:CLH", + "33425": "V_LA:CLH", + "33426": "V_LA:CLH", + "33427": "V_LA:CLH", + "33428": "V_LA:CLH", + "33429": "V_LA:CLH", + "33430": "V_LA:CLH", + "33431": "V_LA:CLH", + "33432": "V_LA:CLH", + "33433": "V_LA:CLH", + "33434": "V_LA:CLH", + "33435": "V_LA:CLH", + "33436": "V_LA:CLH", + "33437": "V_LA:CLH", + "33438": "V_LA:CLH", + "33439": "V_LA:CLH", + "33440": "V_LA:CLH", + "33441": "V_LA:CLH", + "33442": "V_LA:CLH", + "33443": "V_LA:CLH", + "33444": "V_LA:CLH", + "33445": "V_LA:CLH", + "33446": "V_LA:CLH", + "33447": "V_LA:CLH", + "33448": "V_LA:CLH", + "33449": "V_LA:CLH", + "33450": "V_LA:CLH", + "33451": "V_LA:CLH", + "33452": "V_LA:CLH", + "33453": "V_LA:CLH", + "33454": "V_LA:CLH", + "33455": "V_LA:CLH", + "33456": "V_LA:CLH", + "33457": "V_LA:CLH", + "33458": "V_LA:CLH", + "33459": "V_LA:CLH", + "33460": "V_LA:CLH", + "33461": "V_LA:CLH", + "33462": "V_LA:CLH", + "33463": "V_LA:CLH", + "33464": "V_LA:CLH", + "33465": "V_LA:CLH", + "33466": "V_LA:CLH", + "33467": "V_LA:CLH", + "33468": "V_LA:CLH", + "33469": "V_LA:CLH", + "33470": "V_LA:CLH", + "33471": "V_LA:CLH", + "33472": "V_LA:CLH", + "33473": "V_LA:CLH", + "33474": "V_LA:CLH", + "33475": "V_LA:CLH", + "33476": "V_LA:CLH", + "33477": "V_LA:CLH", + "33478": "V_LA:CLH", + "33479": "V_LA:CLH", + "33480": "V_LA:CLH", + "33481": "V_LA:CLH", + "33482": "V_LA:CLH", + "33483": "V_LA:CLH", + "33484": "V_LA:CLH", + "33485": "V_LA:CLH", + "33486": "V_LA:CLH", + "33487": "V_LA:CLH", + "33488": "V_LA:CLH", + "33489": "V_LA:CLH", + "33490": "V_LA:CLH", + "33491": "V_LA:CLH", + "33492": "V_LA:CLH", + "33493": "V_LA:CLH", + "33494": "V_LA:CLH", + "33495": "V_LA:CLH", + "33496": "V_LA:CLH", + "33497": "V_LA:CLH", + "33498": "V_LA:CLH", + "33499": "V_LA:CLH", + "33500": "V_LA:CLH", + "33501": "V_LA:CLH", + "33502": "V_LA:CLH", + "33503": "V_LA:CLH", + "33504": "V_LA:CLH", + "33505": "V_LA:CLH", + "33506": "V_LA:CLH", + "33507": "V_LA:CLH", + "33508": "V_LA:CLH", + "33509": "V_LA:CLH", + "33510": "V_LA:CLH", + "33511": "V_LA:CLH", + "33512": "V_LA:CLH", + "33513": "V_LA:CLH", + "33514": "V_LA:CLH", + "33515": "V_LA:CLH", + "33516": "V_LA:CLH", + "33517": "V_LA:CLH", + "33518": "V_LA:CLH", + "33519": "V_LA:CLH", + "33520": "V_LA:CLH", + "33521": "V_LA:CLH", + "33522": "V_LA:CLH", + "33523": "V_LA:CLH", + "33524": "V_LA:CLH", + "33525": "V_LA:CLH", + "33526": "V_LA:CLH", + "33527": "V_LA:CLH", + "33528": "V_LA:CLH", + "33529": "V_LA:CLH", + "33530": "V_LA:CLH", + "33531": "V_LA:CLH", + "33532": "V_LA:CLH", + "33533": "V_LA:CLH", + "33534": "V_LA:CLH", + "33535": "V_LA:CLH", + "33536": "V_LA:CLH", + "33537": "V_LA:CLH", + "33538": "V_LA:CLH", + "33539": "V_LA:CLH", + "33540": "V_LA:CLH", + "33541": "V_LA:CLH", + "33542": "V_LA:CLH", + "33543": "V_LA:CLH", + "33544": "V_LA:CLH", + "33545": "V_LA:CLH", + "33546": "V_LA:CLH", + "33547": "V_LA:CLH", + "33548": "V_LA:CLH", + "33549": "V_LA:CLH", + "33550": "V_LA:CLH", + "33551": "V_LA:CLH", + "33552": "V_LA:CLH", + "33553": "V_LA:CLH", + "33554": "V_LA:CLH", + "33555": "V_LA:CLH", + "33556": "V_LA:CLH", + "33557": "V_LA:CLH", + "33558": "V_LA:CLH", + "33559": "V_LA:CLH", + "33560": "V_LA:CLH", + "33561": "V_LA:CLH", + "33562": "V_LA:CLH", + "33563": "V_LA:CLH", + "33564": "V_LA:CLH", + "33565": "V_LA:CLH", + "33566": "V_LA:CLH", + "33567": "V_LA:CLH", + "33568": "V_LA:CLH", + "33569": "V_LA:CLH", + "33570": "V_LA:CLH", + "33571": "V_LA:CLH", + "33572": "V_LA:CLH", + "33573": "V_LA:CLH", + "33574": "V_LA:CLH", + "33575": "V_LA:CLH", + "33576": "V_LA:CLH", + "33577": "V_LA:CLH", + "33578": "V_LA:CLH", + "33579": "V_LA:CLH", + "33580": "V_LA:CLH", + "33581": "V_LA:CLH", + "33582": "V_LA:CLH", + "33583": "V_LA:CLH", + "33584": "V_LA:CLH", + "33585": "V_LA:CLH", + "33586": "V_LA:CLH", + "33587": "V_LA:CLH", + "33588": "V_LA:CLH", + "33589": "V_LA:CLH", + "33590": "V_LA:CLH", + "33591": "V_LA:CLH", + "33592": "V_LA:CLH", + "33593": "V_LA:CLH", + "33594": "V_LA:CLH", + "33595": "V_LA:CLH", + "33596": "V_LA:CLH", + "33597": "V_LA:CLH", + "33598": "V_LA:CLH", + "33599": "V_LA:CLH", + "33600": "V_LA:CLH", + "33601": "V_LA:CLH", + "33602": "V_LA:CLH", + "33603": "V_LA:CLH", + "33604": "V_LA:CLH", + "33605": "V_LA:CLH", + "33606": "V_LA:CLH", + "33607": "V_LA:CLH", + "33608": "V_LA:CLH", + "33609": "V_LA:CLH", + "33610": "V_LA:CLH", + "33611": "V_LA:CLH", + "33612": "V_LA:CLH", + "33613": "V_LA:CLH", + "33614": "V_LA:CLH", + "33615": "V_LA:CLH", + "33616": "V_LA:CLH", + "33617": "V_LA:CLH", + "33618": "V_LA:CLH", + "33619": "V_LA:CLH", + "33620": "V_LA:CLH", + "33621": "V_LA:CLH", + "33622": "V_LA:CLH", + "33623": "V_LA:CLH", + "33624": "V_LA:CLH", + "33625": "V_LA:CLH", + "33626": "V_LA:CLH", + "33627": "V_LA:CLH", + "33628": "V_LA:CLH", + "33629": "V_LA:CLH", + "33630": "V_LA:CLH", + "33631": "V_LA:CLH", + "33632": "V_LA:CLH", + "33633": "V_LA:CLH", + "33634": "V_LA:CLH", + "33635": "V_LA:CLH", + "33636": "V_LA:CLH", + "33637": "V_LA:CLH", + "33638": "V_LA:CLH", + "33639": "V_LA:CLH", + "33640": "V_LA:CLH", + "33641": "V_LA:CLH", + "33642": "V_LA:CLH", + "33643": "V_LA:CLH", + "33644": "V_LA:CLH", + "33645": "V_LA:CLH", + "33646": "V_LA:CLH", + "33647": "V_LA:CLH", + "33648": "V_LA:CLH", + "33649": "V_LA:CLH", + "33650": "V_LA:CLH", + "33651": "V_LA:CLH", + "33652": "V_LA:CLH", + "33653": "V_LA:CLH", + "33654": "V_LA:CLH", + "33655": "V_LA:CLH", + "33656": "V_LA:CLH", + "33657": "V_LA:CLH", + "33658": "V_LA:CLH", + "33659": "V_LA:CLH", + "33660": "V_LA:CLH", + "33661": "V_LA:CLH", + "33662": "V_LA:CLH", + "33663": "V_LA:CLH", + "33664": "V_LA:CLH", + "33665": "V_LA:CLH", + "33666": "V_LA:CLH", + "33667": "V_LA:CLH", + "33668": "V_LA:CLH", + "33669": "V_LA:CLH", + "33670": "V_LA:CLH", + "33671": "V_LA:CLH", + "33672": "V_LA:CLH", + "33673": "V_LA:CLH", + "33674": "V_LA:CLH", + "33675": "V_LA:CLH", + "33676": "V_LA:CLH", + "33677": "V_LA:CLH", + "33678": "V_LA:CLH", + "33679": "V_LA:CLH", + "33680": "V_LA:CLH", + "33681": "V_LA:CLH", + "33682": "V_LA:CLH", + "33683": "V_LA:CLH", + "33684": "V_LA:CLH", + "33685": "V_LA:CLH", + "33686": "V_LA:CLH", + "33687": "V_LA:CLH", + "33688": "V_LA:CLH", + "33689": "V_LA:CLH", + "33690": "V_LA:CLH", + "33691": "V_LA:CLH", + "33692": "V_LA:CLH", + "33693": "V_LA:CLH", + "33694": "V_LA:CLH", + "33695": "V_LA:CLH", + "33696": "V_LA:CLH", + "33697": "V_LA:CLH", + "33698": "V_LA:CLH", + "33699": "V_LA:CLH", + "33700": "V_LA:CLH", + "33701": "V_LA:CLH", + "33702": "V_LA:CLH", + "33703": "V_LA:CLH", + "33704": "V_LA:CLH", + "33705": "V_LA:CLH", + "33706": "V_LA:CLH", + "33707": "V_LA:CLH", + "33708": "V_LA:CLH", + "33709": "V_LA:CLH", + "33710": "V_LA:CLH", + "33711": "V_LA:CLH", + "33712": "V_LA:CLH", + "33713": "V_LA:CLH", + "33714": "V_LA:CLH", + "33715": "V_LA:CLH", + "33716": "V_LA:CLH", + "33717": "V_LA:CLH", + "33718": "V_LA:CLH", + "33719": "V_LA:CLH", + "33720": "V_LA:CLH", + "33721": "V_LA:CLH", + "33722": "V_LA:CLH", + "33723": "V_LA:CLH", + "33724": "V_LA:CLH", + "33725": "V_LA:CLH", + "33726": "V_LA:CLH", + "33727": "V_LA:CLH", + "33728": "V_LA:CLH", + "33729": "V_LA:CLH", + "33730": "V_LA:CLH", + "33731": "V_LA:CLH", + "33732": "V_LA:CLH", + "33733": "V_LA:CLH", + "33734": "V_LA:CLH", + "33735": "V_LA:CLH", + "33736": "V_LA:CLH", + "33737": "V_LA:CLH", + "33738": "V_LA:CLH", + "33739": "V_LA:CLH", + "33740": "V_LA:CLH", + "33741": "V_LA:CLH", + "33742": "V_LA:CLH", + "33743": "V_LA:CLH", + "33744": "V_LA:CLH", + "33745": "V_LA:CLH", + "33746": "V_LA:CLH", + "33747": "V_LA:CLH", + "33748": "V_LA:CLH", + "33749": "V_LA:CLH", + "33750": "V_LA:CLH", + "33751": "V_LA:CLH", + "33752": "V_LA:CLH", + "33753": "V_LA:CLH", + "33754": "V_LA:CLH", + "33755": "V_LA:CLH", + "33756": "V_LA:CLH", + "33757": "V_LA:CLH", + "33758": "V_LA:CLH", + "33759": "V_LA:CLH", + "33760": "V_LA:CLH", + "33761": "V_LA:CLH", + "33762": "V_LA:CLH", + "33763": "V_LA:CLH", + "33764": "V_LA:CLH", + "33765": "V_LA:CLH", + "33766": "V_LA:CLH", + "33767": "V_LA:CLH", + "33768": "V_LA:CLH", + "33769": "V_LA:CLH", + "33770": "V_LA:CLH", + "33771": "V_LA:CLH", + "33772": "V_LA:CLH", + "33773": "V_LA:CLH", + "33774": "V_LA:CLH", + "33775": "V_LA:CLH", + "33776": "V_LA:CLH", + "33777": "V_LA:CLH", + "33778": "V_LA:CLH", + "33779": "V_LA:CLH", + "33780": "V_LA:CLH", + "33781": "V_LA:CLH", + "33782": "V_LA:CLH", + "33783": "V_LA:CLH", + "33784": "V_LA:CLH", + "33785": "V_LA:CLH", + "33786": "V_LA:CLH", + "33787": "V_LA:CLH", + "33788": "V_LA:CLH", + "33789": "V_LA:CLH", + "33790": "V_LA:CLH", + "33791": "V_LA:CLH", + "33792": "V_LA:CLH", + "33793": "V_LA:CLH", + "33794": "V_LA:CLH", + "33795": "V_LA:CLH", + "33796": "V_LA:CLH", + "33797": "V_LA:CLH", + "33798": "V_LA:CLH", + "33799": "V_LA:CLH", + "33800": "V_LA:CLH", + "33801": "V_LA:CLH", + "33802": "V_LA:CLH", + "33803": "V_LA:CLH", + "33804": "V_LA:CLH", + "33805": "V_LA:CLH", + "33806": "V_LA:CLH", + "33807": "V_LA:CLH", + "33808": "V_LA:CLH", + "33809": "V_LA:CLH", + "33810": "V_LA:CLH", + "33811": "V_LA:CLH", + "33812": "V_LA:CLH", + "33813": "V_LA:CLH", + "33814": "V_LA:CLH", + "33815": "V_LA:CLH", + "33816": "V_LA:CLH", + "33817": "V_LA:CLH", + "33818": "V_LA:CLH", + "33819": "V_LA:CLH", + "33820": "V_LA:CLH", + "33821": "V_LA:CLH", + "33822": "V_LA:CLH", + "33823": "V_LA:CLH", + "33824": "V_LA:CLH", + "33825": "V_LA:CLH", + "33826": "V_LA:CLH", + "33827": "V_LA:CLH", + "33828": "V_LA:CLH", + "33829": "V_LA:CLH", + "33830": "V_LA:CLH", + "33831": "V_LA:CLH", + "33832": "V_LA:CLH", + "33833": "V_LA:CLH", + "33834": "V_LA:CLH", + "33835": "V_LA:CLH", + "33836": "V_LA:CLH", + "33837": "V_LA:CLH", + "33838": "V_LA:CLH", + "33839": "V_LA:CLH", + "33840": "V_LA:CLH", + "33841": "V_LA:CLH", + "33842": "V_LA:CLH", + "33843": "V_LA:CLH", + "33844": "V_LA:CLH", + "33845": "V_LA:CLH", + "33846": "V_LA:CLH", + "33847": "V_LA:CLH", + "33848": "V_LA:CLH", + "33849": "V_LA:CLH", + "33850": "V_LA:CLH", + "33851": "V_LA:CLH", + "33852": "V_LA:CLH", + "33853": "V_LA:CLH", + "33854": "V_LA:CLH", + "33855": "V_LA:CLH", + "33856": "V_LA:CLH", + "33857": "V_LA:CLH", + "33858": "V_LA:CLH", + "33859": "V_LA:CLH", + "33860": "V_LA:CLH", + "33861": "V_LA:CLH", + "33862": "V_LA:CLH", + "33863": "V_LA:CLH", + "33864": "V_LA:CLH", + "33865": "V_LA:CLH", + "33866": "V_LA:CLH", + "33867": "V_LA:CLH", + "33868": "V_LA:CLH", + "33869": "V_LA:CLH", + "33870": "V_LA:CLH", + "33871": "V_LA:CLH", + "33872": "V_LA:CLH", + "33873": "V_LA:CLH", + "33874": "V_LA:CLH", + "33875": "V_LA:CLH", + "33876": "V_LA:CLH", + "33877": "V_LA:CLH", + "33878": "V_LA:CLH", + "33879": "V_LA:CLH", + "33880": "V_LA:CLH", + "33881": "V_LA:CLH", + "33882": "V_LA:CLH", + "33883": "V_LA:CLH", + "33884": "V_LA:CLH", + "33885": "V_LA:CLH", + "33886": "V_LA:CLH", + "33887": "V_LA:CLH", + "33888": "V_LA:CLH", + "33889": "V_LA:CLH", + "33890": "V_LA:CLH", + "33891": "V_LA:CLH", + "33892": "V_LA:CLH", + "33893": "V_LA:CLH", + "33894": "V_LA:CLH", + "33895": "V_LA:CLH", + "33896": "V_LA:CLH", + "33897": "V_LA:CLH", + "33898": "V_LA:CLH", + "33899": "V_LA:CLH", + "33900": "V_LA:CLH", + "33901": "V_LA:CLH", + "33902": "V_LA:CLH", + "33903": "V_LA:CLH", + "33904": "V_LA:CLH", + "33905": "V_LA:CLH", + "33906": "V_LA:CLH", + "33907": "V_LA:CLH", + "33908": "V_LA:CLH", + "33909": "V_LA:CLH", + "33910": "V_LA:CLH", + "33911": "V_LA:CLH", + "33912": "V_LA:CLH", + "33913": "V_LA:CLH", + "33914": "V_LA:CLH", + "33915": "V_LA:CLH", + "33916": "V_LA:CLH", + "33917": "V_LA:CLH", + "33918": "V_LA:CLH", + "33919": "V_LA:CLH", + "33920": "V_LA:CLH", + "33921": "V_LA:CLH", + "33922": "V_LA:CLH", + "33923": "V_LA:CLH", + "33924": "V_LA:CLH", + "33925": "V_LA:CLH", + "33926": "V_LA:CLH", + "33927": "V_LA:CLH", + "33928": "V_LA:CLH", + "33929": "V_LA:CLH", + "33930": "V_LA:CLH", + "33931": "V_LA:CLH", + "33932": "V_LA:CLH", + "33933": "V_LA:CLH", + "33934": "V_LA:CLH", + "33935": "V_LA:CLH", + "33936": "V_LA:CLH", + "33937": "V_LA:CLH", + "33938": "V_LA:CLH", + "33939": "V_LA:CLH", + "33940": "V_LA:CLH", + "33941": "V_LA:CLH", + "33942": "V_LA:CLH", + "33943": "V_LA:CLH", + "33944": "V_LA:CLH", + "33945": "V_LA:CLH", + "33946": "V_LA:CLH", + "33947": "V_LA:CLH", + "33948": "V_LA:CLH", + "33949": "V_LA:CLH", + "33950": "V_LA:CLH", + "33951": "V_LA:CLH", + "33952": "V_LA:CLH", + "33953": "V_LA:CLH", + "33954": "V_LA:CLH", + "33955": "V_LA:CLH", + "33956": "V_LA:CLH", + "33957": "V_LA:CLH", + "33958": "V_LA:CLH", + "33959": "V_LA:CLH", + "33960": "V_LA:CLH", + "33961": "V_LA:CLH", + "33962": "V_LA:CLH", + "33963": "V_LA:CLH", + "33964": "V_LA:CLH", + "33965": "V_LA:CLH", + "33966": "V_LA:CLH", + "33967": "V_LA:CLH", + "33968": "V_LA:CLH", + "33969": "V_LA:CLH", + "33970": "V_LA:CLH", + "33971": "V_LA:CLH", + "33972": "V_LA:CLH", + "33973": "V_LA:CLH", + "33974": "V_LA:CLH", + "33975": "V_LA:CLH", + "33976": "V_LA:CLH", + "33977": "V_LA:CLH", + "33978": "V_LA:CLH", + "33979": "V_LA:CLH", + "33980": "V_LA:CLH", + "33981": "V_LA:CLH", + "33982": "V_LA:CLH", + "33983": "V_LA:CLH", + "33984": "V_LA:CLH", + "33985": "V_LA:CLH", + "33986": "V_LA:CLH", + "33987": "V_LA:CLH", + "33988": "V_LA:CLH", + "33989": "V_LA:CLH", + "33990": "V_LA:CLH", + "33991": "V_LA:CLH", + "33992": "V_LA:CLH", + "33993": "V_LA:CLH", + "33994": "V_LA:CLH", + "33995": "V_LA:CLH", + "33996": "V_LA:CLH", + "33997": "V_LA:CLH", + "33998": "V_LA:CLH", + "33999": "V_LA:CLH", + "34000": "Q_LA:CLH", + "34001": "Q_LA:CLH", + "34002": "Q_LA:CLH", + "34003": "Q_LA:CLH", + "34004": "Q_LA:CLH", + "34005": "Q_LA:CLH", + "34006": "Q_LA:CLH", + "34007": "Q_LA:CLH", + "34008": "Q_LA:CLH", + "34009": "Q_LA:CLH", + "34010": "Q_LA:CLH", + "34011": "Q_LA:CLH", + "34012": "Q_LA:CLH", + "34013": "Q_LA:CLH", + "34014": "Q_LA:CLH", + "34015": "Q_LA:CLH", + "34016": "Q_LA:CLH", + "34017": "Q_LA:CLH", + "34018": "Q_LA:CLH", + "34019": "Q_LA:CLH", + "34020": "Q_LA:CLH", + "34021": "Q_LA:CLH", + "34022": "Q_LA:CLH", + "34023": "Q_LA:CLH", + "34024": "Q_LA:CLH", + "34025": "Q_LA:CLH", + "34026": "Q_LA:CLH", + "34027": "Q_LA:CLH", + "34028": "Q_LA:CLH", + "34029": "Q_LA:CLH", + "34030": "Q_LA:CLH", + "34031": "Q_LA:CLH", + "34032": "Q_LA:CLH", + "34033": "Q_LA:CLH", + "34034": "Q_LA:CLH", + "34035": "Q_LA:CLH", + "34036": "Q_LA:CLH", + "34037": "Q_LA:CLH", + "34038": "Q_LA:CLH", + "34039": "Q_LA:CLH", + "34040": "Q_LA:CLH", + "34041": "Q_LA:CLH", + "34042": "Q_LA:CLH", + "34043": "Q_LA:CLH", + "34044": "Q_LA:CLH", + "34045": "Q_LA:CLH", + "34046": "Q_LA:CLH", + "34047": "Q_LA:CLH", + "34048": "Q_LA:CLH", + "34049": "Q_LA:CLH", + "34050": "Q_LA:CLH", + "34051": "Q_LA:CLH", + "34052": "Q_LA:CLH", + "34053": "Q_LA:CLH", + "34054": "Q_LA:CLH", + "34055": "Q_LA:CLH", + "34056": "Q_LA:CLH", + "34057": "Q_LA:CLH", + "34058": "Q_LA:CLH", + "34059": "Q_LA:CLH", + "34060": "Q_LA:CLH", + "34061": "Q_LA:CLH", + "34062": "Q_LA:CLH", + "34063": "Q_LA:CLH", + "34064": "Q_LA:CLH", + "34065": "Q_LA:CLH", + "34066": "Q_LA:CLH", + "34067": "Q_LA:CLH", + "34068": "Q_LA:CLH", + "34069": "Q_LA:CLH", + "34070": "Q_LA:CLH", + "34071": "Q_LA:CLH", + "34072": "Q_LA:CLH", + "34073": "Q_LA:CLH", + "34074": "Q_LA:CLH", + "34075": "Q_LA:CLH", + "34076": "Q_LA:CLH", + "34077": "Q_LA:CLH", + "34078": "Q_LA:CLH", + "34079": "Q_LA:CLH", + "34080": "Q_LA:CLH", + "34081": "Q_LA:CLH", + "34082": "Q_LA:CLH", + "34083": "Q_LA:CLH", + "34084": "Q_LA:CLH", + "34085": "Q_LA:CLH", + "34086": "Q_LA:CLH", + "34087": "Q_LA:CLH", + "34088": "Q_LA:CLH", + "34089": "Q_LA:CLH", + "34090": "Q_LA:CLH", + "34091": "Q_LA:CLH", + "34092": "Q_LA:CLH", + "34093": "Q_LA:CLH", + "34094": "Q_LA:CLH", + "34095": "Q_LA:CLH", + "34096": "Q_LA:CLH", + "34097": "Q_LA:CLH", + "34098": "Q_LA:CLH", + "34099": "Q_LA:CLH", + "34100": "Q_LA:CLH", + "34101": "Q_LA:CLH", + "34102": "Q_LA:CLH", + "34103": "Q_LA:CLH", + "34104": "Q_LA:CLH", + "34105": "Q_LA:CLH", + "34106": "Q_LA:CLH", + "34107": "Q_LA:CLH", + "34108": "Q_LA:CLH", + "34109": "Q_LA:CLH", + "34110": "Q_LA:CLH", + "34111": "Q_LA:CLH", + "34112": "Q_LA:CLH", + "34113": "Q_LA:CLH", + "34114": "Q_LA:CLH", + "34115": "Q_LA:CLH", + "34116": "Q_LA:CLH", + "34117": "Q_LA:CLH", + "34118": "Q_LA:CLH", + "34119": "Q_LA:CLH", + "34120": "Q_LA:CLH", + "34121": "Q_LA:CLH", + "34122": "Q_LA:CLH", + "34123": "Q_LA:CLH", + "34124": "Q_LA:CLH", + "34125": "Q_LA:CLH", + "34126": "Q_LA:CLH", + "34127": "Q_LA:CLH", + "34128": "Q_LA:CLH", + "34129": "Q_LA:CLH", + "34130": "Q_LA:CLH", + "34131": "Q_LA:CLH", + "34132": "Q_LA:CLH", + "34133": "Q_LA:CLH", + "34134": "Q_LA:CLH", + "34135": "Q_LA:CLH", + "34136": "Q_LA:CLH", + "34137": "Q_LA:CLH", + "34138": "Q_LA:CLH", + "34139": "Q_LA:CLH", + "34140": "Q_LA:CLH", + "34141": "Q_LA:CLH", + "34142": "Q_LA:CLH", + "34143": "Q_LA:CLH", + "34144": "Q_LA:CLH", + "34145": "Q_LA:CLH", + "34146": "Q_LA:CLH", + "34147": "Q_LA:CLH", + "34148": "Q_LA:CLH", + "34149": "Q_LA:CLH", + "34150": "Q_LA:CLH", + "34151": "Q_LA:CLH", + "34152": "Q_LA:CLH", + "34153": "Q_LA:CLH", + "34154": "Q_LA:CLH", + "34155": "Q_LA:CLH", + "34156": "Q_LA:CLH", + "34157": "Q_LA:CLH", + "34158": "Q_LA:CLH", + "34159": "Q_LA:CLH", + "34160": "Q_LA:CLH", + "34161": "Q_LA:CLH", + "34162": "Q_LA:CLH", + "34163": "Q_LA:CLH", + "34164": "Q_LA:CLH", + "34165": "Q_LA:CLH", + "34166": "Q_LA:CLH", + "34167": "Q_LA:CLH", + "34168": "Q_LA:CLH", + "34169": "Q_LA:CLH", + "34170": "Q_LA:CLH", + "34171": "Q_LA:CLH", + "34172": "Q_LA:CLH", + "34173": "Q_LA:CLH", + "34174": "Q_LA:CLH", + "34175": "Q_LA:CLH", + "34176": "Q_LA:CLH", + "34177": "Q_LA:CLH", + "34178": "Q_LA:CLH", + "34179": "Q_LA:CLH", + "34180": "Q_LA:CLH", + "34181": "Q_LA:CLH", + "34182": "Q_LA:CLH", + "34183": "Q_LA:CLH", + "34184": "Q_LA:CLH", + "34185": "Q_LA:CLH", + "34186": "Q_LA:CLH", + "34187": "Q_LA:CLH", + "34188": "Q_LA:CLH", + "34189": "Q_LA:CLH", + "34190": "Q_LA:CLH", + "34191": "Q_LA:CLH", + "34192": "Q_LA:CLH", + "34193": "Q_LA:CLH", + "34194": "Q_LA:CLH", + "34195": "Q_LA:CLH", + "34196": "Q_LA:CLH", + "34197": "Q_LA:CLH", + "34198": "Q_LA:CLH", + "34199": "Q_LA:CLH", + "34200": "Q_LA:CLH", + "34201": "Q_LA:CLH", + "34202": "Q_LA:CLH", + "34203": "Q_LA:CLH", + "34204": "Q_LA:CLH", + "34205": "Q_LA:CLH", + "34206": "Q_LA:CLH", + "34207": "Q_LA:CLH", + "34208": "Q_LA:CLH", + "34209": "Q_LA:CLH", + "34210": "Q_LA:CLH", + "34211": "Q_LA:CLH", + "34212": "Q_LA:CLH", + "34213": "Q_LA:CLH", + "34214": "Q_LA:CLH", + "34215": "Q_LA:CLH", + "34216": "Q_LA:CLH", + "34217": "Q_LA:CLH", + "34218": "Q_LA:CLH", + "34219": "Q_LA:CLH", + "34220": "Q_LA:CLH", + "34221": "Q_LA:CLH", + "34222": "Q_LA:CLH", + "34223": "Q_LA:CLH", + "34224": "Q_LA:CLH", + "34225": "Q_LA:CLH", + "34226": "Q_LA:CLH", + "34227": "Q_LA:CLH", + "34228": "Q_LA:CLH", + "34229": "Q_LA:CLH", + "34230": "Q_LA:CLH", + "34231": "Q_LA:CLH", + "34232": "Q_LA:CLH", + "34233": "Q_LA:CLH", + "34234": "Q_LA:CLH", + "34235": "Q_LA:CLH", + "34236": "Q_LA:CLH", + "34237": "Q_LA:CLH", + "34238": "Q_LA:CLH", + "34239": "Q_LA:CLH", + "34240": "Q_LA:CLH", + "34241": "Q_LA:CLH", + "34242": "Q_LA:CLH", + "34243": "Q_LA:CLH", + "34244": "Q_LA:CLH", + "34245": "Q_LA:CLH", + "34246": "Q_LA:CLH", + "34247": "Q_LA:CLH", + "34248": "Q_LA:CLH", + "34249": "Q_LA:CLH", + "34250": "Q_LA:CLH", + "34251": "Q_LA:CLH", + "34252": "Q_LA:CLH", + "34253": "Q_LA:CLH", + "34254": "Q_LA:CLH", + "34255": "Q_LA:CLH", + "34256": "Q_LA:CLH", + "34257": "Q_LA:CLH", + "34258": "Q_LA:CLH", + "34259": "Q_LA:CLH", + "34260": "Q_LA:CLH", + "34261": "Q_LA:CLH", + "34262": "Q_LA:CLH", + "34263": "Q_LA:CLH", + "34264": "Q_LA:CLH", + "34265": "Q_LA:CLH", + "34266": "Q_LA:CLH", + "34267": "Q_LA:CLH", + "34268": "Q_LA:CLH", + "34269": "Q_LA:CLH", + "34270": "Q_LA:CLH", + "34271": "Q_LA:CLH", + "34272": "Q_LA:CLH", + "34273": "Q_LA:CLH", + "34274": "Q_LA:CLH", + "34275": "Q_LA:CLH", + "34276": "Q_LA:CLH", + "34277": "Q_LA:CLH", + "34278": "Q_LA:CLH", + "34279": "Q_LA:CLH", + "34280": "Q_LA:CLH", + "34281": "Q_LA:CLH", + "34282": "Q_LA:CLH", + "34283": "Q_LA:CLH", + "34284": "Q_LA:CLH", + "34285": "Q_LA:CLH", + "34286": "Q_LA:CLH", + "34287": "Q_LA:CLH", + "34288": "Q_LA:CLH", + "34289": "Q_LA:CLH", + "34290": "Q_LA:CLH", + "34291": "Q_LA:CLH", + "34292": "Q_LA:CLH", + "34293": "Q_LA:CLH", + "34294": "Q_LA:CLH", + "34295": "Q_LA:CLH", + "34296": "Q_LA:CLH", + "34297": "Q_LA:CLH", + "34298": "Q_LA:CLH", + "34299": "Q_LA:CLH", + "34300": "Q_LA:CLH", + "34301": "Q_LA:CLH", + "34302": "Q_LA:CLH", + "34303": "Q_LA:CLH", + "34304": "Q_LA:CLH", + "34305": "Q_LA:CLH", + "34306": "Q_LA:CLH", + "34307": "Q_LA:CLH", + "34308": "Q_LA:CLH", + "34309": "Q_LA:CLH", + "34310": "Q_LA:CLH", + "34311": "Q_LA:CLH", + "34312": "Q_LA:CLH", + "34313": "Q_LA:CLH", + "34314": "Q_LA:CLH", + "34315": "Q_LA:CLH", + "34316": "Q_LA:CLH", + "34317": "Q_LA:CLH", + "34318": "Q_LA:CLH", + "34319": "Q_LA:CLH", + "34320": "Q_LA:CLH", + "34321": "Q_LA:CLH", + "34322": "Q_LA:CLH", + "34323": "Q_LA:CLH", + "34324": "Q_LA:CLH", + "34325": "Q_LA:CLH", + "34326": "Q_LA:CLH", + "34327": "Q_LA:CLH", + "34328": "Q_LA:CLH", + "34329": "Q_LA:CLH", + "34330": "Q_LA:CLH", + "34331": "Q_LA:CLH", + "34332": "Q_LA:CLH", + "34333": "Q_LA:CLH", + "34334": "Q_LA:CLH", + "34335": "Q_LA:CLH", + "34336": "Q_LA:CLH", + "34337": "Q_LA:CLH", + "34338": "Q_LA:CLH", + "34339": "Q_LA:CLH", + "34340": "Q_LA:CLH", + "34341": "Q_LA:CLH", + "34342": "Q_LA:CLH", + "34343": "Q_LA:CLH", + "34344": "Q_LA:CLH", + "34345": "Q_LA:CLH", + "34346": "Q_LA:CLH", + "34347": "Q_LA:CLH", + "34348": "Q_LA:CLH", + "34349": "Q_LA:CLH", + "34350": "Q_LA:CLH", + "34351": "Q_LA:CLH", + "34352": "Q_LA:CLH", + "34353": "Q_LA:CLH", + "34354": "Q_LA:CLH", + "34355": "Q_LA:CLH", + "34356": "Q_LA:CLH", + "34357": "Q_LA:CLH", + "34358": "Q_LA:CLH", + "34359": "Q_LA:CLH", + "34360": "Q_LA:CLH", + "34361": "Q_LA:CLH", + "34362": "Q_LA:CLH", + "34363": "Q_LA:CLH", + "34364": "Q_LA:CLH", + "34365": "Q_LA:CLH", + "34366": "Q_LA:CLH", + "34367": "Q_LA:CLH", + "34368": "Q_LA:CLH", + "34369": "Q_LA:CLH", + "34370": "Q_LA:CLH", + "34371": "Q_LA:CLH", + "34372": "Q_LA:CLH", + "34373": "Q_LA:CLH", + "34374": "Q_LA:CLH", + "34375": "Q_LA:CLH", + "34376": "Q_LA:CLH", + "34377": "Q_LA:CLH", + "34378": "Q_LA:CLH", + "34379": "Q_LA:CLH", + "34380": "Q_LA:CLH", + "34381": "Q_LA:CLH", + "34382": "Q_LA:CLH", + "34383": "Q_LA:CLH", + "34384": "Q_LA:CLH", + "34385": "Q_LA:CLH", + "34386": "Q_LA:CLH", + "34387": "Q_LA:CLH", + "34388": "Q_LA:CLH", + "34389": "Q_LA:CLH", + "34390": "Q_LA:CLH", + "34391": "Q_LA:CLH", + "34392": "Q_LA:CLH", + "34393": "Q_LA:CLH", + "34394": "Q_LA:CLH", + "34395": "Q_LA:CLH", + "34396": "Q_LA:CLH", + "34397": "Q_LA:CLH", + "34398": "Q_LA:CLH", + "34399": "Q_LA:CLH", + "34400": "Q_LA:CLH", + "34401": "Q_LA:CLH", + "34402": "Q_LA:CLH", + "34403": "Q_LA:CLH", + "34404": "Q_LA:CLH", + "34405": "Q_LA:CLH", + "34406": "Q_LA:CLH", + "34407": "Q_LA:CLH", + "34408": "Q_LA:CLH", + "34409": "Q_LA:CLH", + "34410": "Q_LA:CLH", + "34411": "Q_LA:CLH", + "34412": "Q_LA:CLH", + "34413": "Q_LA:CLH", + "34414": "Q_LA:CLH", + "34415": "Q_LA:CLH", + "34416": "Q_LA:CLH", + "34417": "Q_LA:CLH", + "34418": "Q_LA:CLH", + "34419": "Q_LA:CLH", + "34420": "Q_LA:CLH", + "34421": "Q_LA:CLH", + "34422": "Q_LA:CLH", + "34423": "Q_LA:CLH", + "34424": "Q_LA:CLH", + "34425": "Q_LA:CLH", + "34426": "Q_LA:CLH", + "34427": "Q_LA:CLH", + "34428": "Q_LA:CLH", + "34429": "Q_LA:CLH", + "34430": "Q_LA:CLH", + "34431": "Q_LA:CLH", + "34432": "Q_LA:CLH", + "34433": "Q_LA:CLH", + "34434": "Q_LA:CLH", + "34435": "Q_LA:CLH", + "34436": "Q_LA:CLH", + "34437": "Q_LA:CLH", + "34438": "Q_LA:CLH", + "34439": "Q_LA:CLH", + "34440": "Q_LA:CLH", + "34441": "Q_LA:CLH", + "34442": "Q_LA:CLH", + "34443": "Q_LA:CLH", + "34444": "Q_LA:CLH", + "34445": "Q_LA:CLH", + "34446": "Q_LA:CLH", + "34447": "Q_LA:CLH", + "34448": "Q_LA:CLH", + "34449": "Q_LA:CLH", + "34450": "Q_LA:CLH", + "34451": "Q_LA:CLH", + "34452": "Q_LA:CLH", + "34453": "Q_LA:CLH", + "34454": "Q_LA:CLH", + "34455": "Q_LA:CLH", + "34456": "Q_LA:CLH", + "34457": "Q_LA:CLH", + "34458": "Q_LA:CLH", + "34459": "Q_LA:CLH", + "34460": "Q_LA:CLH", + "34461": "Q_LA:CLH", + "34462": "Q_LA:CLH", + "34463": "Q_LA:CLH", + "34464": "Q_LA:CLH", + "34465": "Q_LA:CLH", + "34466": "Q_LA:CLH", + "34467": "Q_LA:CLH", + "34468": "Q_LA:CLH", + "34469": "Q_LA:CLH", + "34470": "Q_LA:CLH", + "34471": "Q_LA:CLH", + "34472": "Q_LA:CLH", + "34473": "Q_LA:CLH", + "34474": "Q_LA:CLH", + "34475": "Q_LA:CLH", + "34476": "Q_LA:CLH", + "34477": "Q_LA:CLH", + "34478": "Q_LA:CLH", + "34479": "Q_LA:CLH", + "34480": "Q_LA:CLH", + "34481": "Q_LA:CLH", + "34482": "Q_LA:CLH", + "34483": "Q_LA:CLH", + "34484": "Q_LA:CLH", + "34485": "Q_LA:CLH", + "34486": "Q_LA:CLH", + "34487": "Q_LA:CLH", + "34488": "Q_LA:CLH", + "34489": "Q_LA:CLH", + "34490": "Q_LA:CLH", + "34491": "Q_LA:CLH", + "34492": "Q_LA:CLH", + "34493": "Q_LA:CLH", + "34494": "Q_LA:CLH", + "34495": "Q_LA:CLH", + "34496": "Q_LA:CLH", + "34497": "Q_LA:CLH", + "34498": "Q_LA:CLH", + "34499": "Q_LA:CLH", + "34500": "Q_LA:CLH", + "34501": "Q_LA:CLH", + "34502": "Q_LA:CLH", + "34503": "Q_LA:CLH", + "34504": "Q_LA:CLH", + "34505": "Q_LA:CLH", + "34506": "Q_LA:CLH", + "34507": "Q_LA:CLH", + "34508": "Q_LA:CLH", + "34509": "Q_LA:CLH", + "34510": "Q_LA:CLH", + "34511": "Q_LA:CLH", + "34512": "Q_LA:CLH", + "34513": "Q_LA:CLH", + "34514": "Q_LA:CLH", + "34515": "Q_LA:CLH", + "34516": "Q_LA:CLH", + "34517": "Q_LA:CLH", + "34518": "Q_LA:CLH", + "34519": "Q_LA:CLH", + "34520": "Q_LA:CLH", + "34521": "Q_LA:CLH", + "34522": "Q_LA:CLH", + "34523": "Q_LA:CLH", + "34524": "Q_LA:CLH", + "34525": "Q_LA:CLH", + "34526": "Q_LA:CLH", + "34527": "Q_LA:CLH", + "34528": "Q_LA:CLH", + "34529": "Q_LA:CLH", + "34530": "Q_LA:CLH", + "34531": "Q_LA:CLH", + "34532": "Q_LA:CLH", + "34533": "Q_LA:CLH", + "34534": "Q_LA:CLH", + "34535": "Q_LA:CLH", + "34536": "Q_LA:CLH", + "34537": "Q_LA:CLH", + "34538": "Q_LA:CLH", + "34539": "Q_LA:CLH", + "34540": "Q_LA:CLH", + "34541": "Q_LA:CLH", + "34542": "Q_LA:CLH", + "34543": "Q_LA:CLH", + "34544": "Q_LA:CLH", + "34545": "Q_LA:CLH", + "34546": "Q_LA:CLH", + "34547": "Q_LA:CLH", + "34548": "Q_LA:CLH", + "34549": "Q_LA:CLH", + "34550": "Q_LA:CLH", + "34551": "Q_LA:CLH", + "34552": "Q_LA:CLH", + "34553": "Q_LA:CLH", + "34554": "Q_LA:CLH", + "34555": "Q_LA:CLH", + "34556": "Q_LA:CLH", + "34557": "Q_LA:CLH", + "34558": "Q_LA:CLH", + "34559": "Q_LA:CLH", + "34560": "Q_LA:CLH", + "34561": "Q_LA:CLH", + "34562": "Q_LA:CLH", + "34563": "Q_LA:CLH", + "34564": "Q_LA:CLH", + "34565": "Q_LA:CLH", + "34566": "Q_LA:CLH", + "34567": "Q_LA:CLH", + "34568": "Q_LA:CLH", + "34569": "Q_LA:CLH", + "34570": "Q_LA:CLH", + "34571": "Q_LA:CLH", + "34572": "Q_LA:CLH", + "34573": "Q_LA:CLH", + "34574": "Q_LA:CLH", + "34575": "Q_LA:CLH", + "34576": "Q_LA:CLH", + "34577": "Q_LA:CLH", + "34578": "Q_LA:CLH", + "34579": "Q_LA:CLH", + "34580": "Q_LA:CLH", + "34581": "Q_LA:CLH", + "34582": "Q_LA:CLH", + "34583": "Q_LA:CLH", + "34584": "Q_LA:CLH", + "34585": "Q_LA:CLH", + "34586": "Q_LA:CLH", + "34587": "Q_LA:CLH", + "34588": "Q_LA:CLH", + "34589": "Q_LA:CLH", + "34590": "Q_LA:CLH", + "34591": "Q_LA:CLH", + "34592": "Q_LA:CLH", + "34593": "Q_LA:CLH", + "34594": "Q_LA:CLH", + "34595": "Q_LA:CLH", + "34596": "Q_LA:CLH", + "34597": "Q_LA:CLH", + "34598": "Q_LA:CLH", + "34599": "Q_LA:CLH", + "34600": "Q_LA:CLH", + "34601": "Q_LA:CLH", + "34602": "Q_LA:CLH", + "34603": "Q_LA:CLH", + "34604": "Q_LA:CLH", + "34605": "Q_LA:CLH", + "34606": "Q_LA:CLH", + "34607": "Q_LA:CLH", + "34608": "Q_LA:CLH", + "34609": "Q_LA:CLH", + "34610": "Q_LA:CLH", + "34611": "Q_LA:CLH", + "34612": "Q_LA:CLH", + "34613": "Q_LA:CLH", + "34614": "Q_LA:CLH", + "34615": "Q_LA:CLH", + "34616": "Q_LA:CLH", + "34617": "Q_LA:CLH", + "34618": "Q_LA:CLH", + "34619": "Q_LA:CLH", + "34620": "Q_LA:CLH", + "34621": "Q_LA:CLH", + "34622": "Q_LA:CLH", + "34623": "Q_LA:CLH", + "34624": "Q_LA:CLH", + "34625": "Q_LA:CLH", + "34626": "Q_LA:CLH", + "34627": "Q_LA:CLH", + "34628": "Q_LA:CLH", + "34629": "Q_LA:CLH", + "34630": "Q_LA:CLH", + "34631": "Q_LA:CLH", + "34632": "Q_LA:CLH", + "34633": "Q_LA:CLH", + "34634": "Q_LA:CLH", + "34635": "Q_LA:CLH", + "34636": "Q_LA:CLH", + "34637": "Q_LA:CLH", + "34638": "Q_LA:CLH", + "34639": "Q_LA:CLH", + "34640": "Q_LA:CLH", + "34641": "Q_LA:CLH", + "34642": "Q_LA:CLH", + "34643": "Q_LA:CLH", + "34644": "Q_LA:CLH", + "34645": "Q_LA:CLH", + "34646": "Q_LA:CLH", + "34647": "Q_LA:CLH", + "34648": "Q_LA:CLH", + "34649": "Q_LA:CLH", + "34650": "Q_LA:CLH", + "34651": "Q_LA:CLH", + "34652": "Q_LA:CLH", + "34653": "Q_LA:CLH", + "34654": "Q_LA:CLH", + "34655": "Q_LA:CLH", + "34656": "Q_LA:CLH", + "34657": "Q_LA:CLH", + "34658": "Q_LA:CLH", + "34659": "Q_LA:CLH", + "34660": "Q_LA:CLH", + "34661": "Q_LA:CLH", + "34662": "Q_LA:CLH", + "34663": "Q_LA:CLH", + "34664": "Q_LA:CLH", + "34665": "Q_LA:CLH", + "34666": "Q_LA:CLH", + "34667": "Q_LA:CLH", + "34668": "Q_LA:CLH", + "34669": "Q_LA:CLH", + "34670": "Q_LA:CLH", + "34671": "Q_LA:CLH", + "34672": "Q_LA:CLH", + "34673": "Q_LA:CLH", + "34674": "Q_LA:CLH", + "34675": "Q_LA:CLH", + "34676": "Q_LA:CLH", + "34677": "Q_LA:CLH", + "34678": "Q_LA:CLH", + "34679": "Q_LA:CLH", + "34680": "Q_LA:CLH", + "34681": "Q_LA:CLH", + "34682": "Q_LA:CLH", + "34683": "Q_LA:CLH", + "34684": "Q_LA:CLH", + "34685": "Q_LA:CLH", + "34686": "Q_LA:CLH", + "34687": "Q_LA:CLH", + "34688": "Q_LA:CLH", + "34689": "Q_LA:CLH", + "34690": "Q_LA:CLH", + "34691": "Q_LA:CLH", + "34692": "Q_LA:CLH", + "34693": "Q_LA:CLH", + "34694": "Q_LA:CLH", + "34695": "Q_LA:CLH", + "34696": "Q_LA:CLH", + "34697": "Q_LA:CLH", + "34698": "Q_LA:CLH", + "34699": "Q_LA:CLH", + "34700": "Q_LA:CLH", + "34701": "Q_LA:CLH", + "34702": "Q_LA:CLH", + "34703": "Q_LA:CLH", + "34704": "Q_LA:CLH", + "34705": "Q_LA:CLH", + "34706": "Q_LA:CLH", + "34707": "Q_LA:CLH", + "34708": "Q_LA:CLH", + "34709": "Q_LA:CLH", + "34710": "Q_LA:CLH", + "34711": "Q_LA:CLH", + "34712": "Q_LA:CLH", + "34713": "Q_LA:CLH", + "34714": "Q_LA:CLH", + "34715": "Q_LA:CLH", + "34716": "Q_LA:CLH", + "34717": "Q_LA:CLH", + "34718": "Q_LA:CLH", + "34719": "Q_LA:CLH", + "34720": "Q_LA:CLH", + "34721": "Q_LA:CLH", + "34722": "Q_LA:CLH", + "34723": "Q_LA:CLH", + "34724": "Q_LA:CLH", + "34725": "Q_LA:CLH", + "34726": "Q_LA:CLH", + "34727": "Q_LA:CLH", + "34728": "Q_LA:CLH", + "34729": "Q_LA:CLH", + "34730": "Q_LA:CLH", + "34731": "Q_LA:CLH", + "34732": "Q_LA:CLH", + "34733": "Q_LA:CLH", + "34734": "Q_LA:CLH", + "34735": "Q_LA:CLH", + "34736": "Q_LA:CLH", + "34737": "Q_LA:CLH", + "34738": "Q_LA:CLH", + "34739": "Q_LA:CLH", + "34740": "Q_LA:CLH", + "34741": "Q_LA:CLH", + "34742": "Q_LA:CLH", + "34743": "Q_LA:CLH", + "34744": "Q_LA:CLH", + "34745": "Q_LA:CLH", + "34746": "Q_LA:CLH", + "34747": "Q_LA:CLH", + "34748": "Q_LA:CLH", + "34749": "Q_LA:CLH", + "34750": "Q_LA:CLH", + "34751": "Q_LA:CLH", + "34752": "Q_LA:CLH", + "34753": "Q_LA:CLH", + "34754": "Q_LA:CLH", + "34755": "Q_LA:CLH", + "34756": "Q_LA:CLH", + "34757": "Q_LA:CLH", + "34758": "Q_LA:CLH", + "34759": "Q_LA:CLH", + "34760": "Q_LA:CLH", + "34761": "Q_LA:CLH", + "34762": "Q_LA:CLH", + "34763": "Q_LA:CLH", + "34764": "Q_LA:CLH", + "34765": "Q_LA:CLH", + "34766": "Q_LA:CLH", + "34767": "Q_LA:CLH", + "34768": "Q_LA:CLH", + "34769": "Q_LA:CLH", + "34770": "Q_LA:CLH", + "34771": "Q_LA:CLH", + "34772": "Q_LA:CLH", + "34773": "Q_LA:CLH", + "34774": "Q_LA:CLH", + "34775": "Q_LA:CLH", + "34776": "Q_LA:CLH", + "34777": "Q_LA:CLH", + "34778": "Q_LA:CLH", + "34779": "Q_LA:CLH", + "34780": "Q_LA:CLH", + "34781": "Q_LA:CLH", + "34782": "Q_LA:CLH", + "34783": "Q_LA:CLH", + "34784": "Q_LA:CLH", + "34785": "Q_LA:CLH", + "34786": "Q_LA:CLH", + "34787": "Q_LA:CLH", + "34788": "Q_LA:CLH", + "34789": "Q_LA:CLH", + "34790": "Q_LA:CLH", + "34791": "Q_LA:CLH", + "34792": "Q_LA:CLH", + "34793": "Q_LA:CLH", + "34794": "Q_LA:CLH", + "34795": "Q_LA:CLH", + "34796": "Q_LA:CLH", + "34797": "Q_LA:CLH", + "34798": "Q_LA:CLH", + "34799": "Q_LA:CLH", + "34800": "Q_LA:CLH", + "34801": "Q_LA:CLH", + "34802": "Q_LA:CLH", + "34803": "Q_LA:CLH", + "34804": "Q_LA:CLH", + "34805": "Q_LA:CLH", + "34806": "Q_LA:CLH", + "34807": "Q_LA:CLH", + "34808": "Q_LA:CLH", + "34809": "Q_LA:CLH", + "34810": "Q_LA:CLH", + "34811": "Q_LA:CLH", + "34812": "Q_LA:CLH", + "34813": "Q_LA:CLH", + "34814": "Q_LA:CLH", + "34815": "Q_LA:CLH", + "34816": "Q_LA:CLH", + "34817": "Q_LA:CLH", + "34818": "Q_LA:CLH", + "34819": "Q_LA:CLH", + "34820": "Q_LA:CLH", + "34821": "Q_LA:CLH", + "34822": "Q_LA:CLH", + "34823": "Q_LA:CLH", + "34824": "Q_LA:CLH", + "34825": "Q_LA:CLH", + "34826": "Q_LA:CLH", + "34827": "Q_LA:CLH", + "34828": "Q_LA:CLH", + "34829": "Q_LA:CLH", + "34830": "Q_LA:CLH", + "34831": "Q_LA:CLH", + "34832": "Q_LA:CLH", + "34833": "Q_LA:CLH", + "34834": "Q_LA:CLH", + "34835": "Q_LA:CLH", + "34836": "Q_LA:CLH", + "34837": "Q_LA:CLH", + "34838": "Q_LA:CLH", + "34839": "Q_LA:CLH", + "34840": "Q_LA:CLH", + "34841": "Q_LA:CLH", + "34842": "Q_LA:CLH", + "34843": "Q_LA:CLH", + "34844": "Q_LA:CLH", + "34845": "Q_LA:CLH", + "34846": "Q_LA:CLH", + "34847": "Q_LA:CLH", + "34848": "Q_LA:CLH", + "34849": "Q_LA:CLH", + "34850": "Q_LA:CLH", + "34851": "Q_LA:CLH", + "34852": "Q_LA:CLH", + "34853": "Q_LA:CLH", + "34854": "Q_LA:CLH", + "34855": "Q_LA:CLH", + "34856": "Q_LA:CLH", + "34857": "Q_LA:CLH", + "34858": "Q_LA:CLH", + "34859": "Q_LA:CLH", + "34860": "Q_LA:CLH", + "34861": "Q_LA:CLH", + "34862": "Q_LA:CLH", + "34863": "Q_LA:CLH", + "34864": "Q_LA:CLH", + "34865": "Q_LA:CLH", + "34866": "Q_LA:CLH", + "34867": "Q_LA:CLH", + "34868": "Q_LA:CLH", + "34869": "Q_LA:CLH", + "34870": "Q_LA:CLH", + "34871": "Q_LA:CLH", + "34872": "Q_LA:CLH", + "34873": "Q_LA:CLH", + "34874": "Q_LA:CLH", + "34875": "Q_LA:CLH", + "34876": "Q_LA:CLH", + "34877": "Q_LA:CLH", + "34878": "Q_LA:CLH", + "34879": "Q_LA:CLH", + "34880": "Q_LA:CLH", + "34881": "Q_LA:CLH", + "34882": "Q_LA:CLH", + "34883": "Q_LA:CLH", + "34884": "Q_LA:CLH", + "34885": "Q_LA:CLH", + "34886": "Q_LA:CLH", + "34887": "Q_LA:CLH", + "34888": "Q_LA:CLH", + "34889": "Q_LA:CLH", + "34890": "Q_LA:CLH", + "34891": "Q_LA:CLH", + "34892": "Q_LA:CLH", + "34893": "Q_LA:CLH", + "34894": "Q_LA:CLH", + "34895": "Q_LA:CLH", + "34896": "Q_LA:CLH", + "34897": "Q_LA:CLH", + "34898": "Q_LA:CLH", + "34899": "Q_LA:CLH", + "34900": "Q_LA:CLH", + "34901": "Q_LA:CLH", + "34902": "Q_LA:CLH", + "34903": "Q_LA:CLH", + "34904": "Q_LA:CLH", + "34905": "Q_LA:CLH", + "34906": "Q_LA:CLH", + "34907": "Q_LA:CLH", + "34908": "Q_LA:CLH", + "34909": "Q_LA:CLH", + "34910": "Q_LA:CLH", + "34911": "Q_LA:CLH", + "34912": "Q_LA:CLH", + "34913": "Q_LA:CLH", + "34914": "Q_LA:CLH", + "34915": "Q_LA:CLH", + "34916": "Q_LA:CLH", + "34917": "Q_LA:CLH", + "34918": "Q_LA:CLH", + "34919": "Q_LA:CLH", + "34920": "Q_LA:CLH", + "34921": "Q_LA:CLH", + "34922": "Q_LA:CLH", + "34923": "Q_LA:CLH", + "34924": "Q_LA:CLH", + "34925": "Q_LA:CLH", + "34926": "Q_LA:CLH", + "34927": "Q_LA:CLH", + "34928": "Q_LA:CLH", + "34929": "Q_LA:CLH", + "34930": "Q_LA:CLH", + "34931": "Q_LA:CLH", + "34932": "Q_LA:CLH", + "34933": "Q_LA:CLH", + "34934": "Q_LA:CLH", + "34935": "Q_LA:CLH", + "34936": "Q_LA:CLH", + "34937": "Q_LA:CLH", + "34938": "Q_LA:CLH", + "34939": "Q_LA:CLH", + "34940": "Q_LA:CLH", + "34941": "Q_LA:CLH", + "34942": "Q_LA:CLH", + "34943": "Q_LA:CLH", + "34944": "Q_LA:CLH", + "34945": "Q_LA:CLH", + "34946": "Q_LA:CLH", + "34947": "Q_LA:CLH", + "34948": "Q_LA:CLH", + "34949": "Q_LA:CLH", + "34950": "Q_LA:CLH", + "34951": "Q_LA:CLH", + "34952": "Q_LA:CLH", + "34953": "Q_LA:CLH", + "34954": "Q_LA:CLH", + "34955": "Q_LA:CLH", + "34956": "Q_LA:CLH", + "34957": "Q_LA:CLH", + "34958": "Q_LA:CLH", + "34959": "Q_LA:CLH", + "34960": "Q_LA:CLH", + "34961": "Q_LA:CLH", + "34962": "Q_LA:CLH", + "34963": "Q_LA:CLH", + "34964": "Q_LA:CLH", + "34965": "Q_LA:CLH", + "34966": "Q_LA:CLH", + "34967": "Q_LA:CLH", + "34968": "Q_LA:CLH", + "34969": "Q_LA:CLH", + "34970": "Q_LA:CLH", + "34971": "Q_LA:CLH", + "34972": "Q_LA:CLH", + "34973": "Q_LA:CLH", + "34974": "Q_LA:CLH", + "34975": "Q_LA:CLH", + "34976": "Q_LA:CLH", + "34977": "Q_LA:CLH", + "34978": "Q_LA:CLH", + "34979": "Q_LA:CLH", + "34980": "Q_LA:CLH", + "34981": "Q_LA:CLH", + "34982": "Q_LA:CLH", + "34983": "Q_LA:CLH", + "34984": "Q_LA:CLH", + "34985": "Q_LA:CLH", + "34986": "Q_LA:CLH", + "34987": "Q_LA:CLH", + "34988": "Q_LA:CLH", + "34989": "Q_LA:CLH", + "34990": "Q_LA:CLH", + "34991": "Q_LA:CLH", + "34992": "Q_LA:CLH", + "34993": "Q_LA:CLH", + "34994": "Q_LA:CLH", + "34995": "Q_LA:CLH", + "34996": "Q_LA:CLH", + "34997": "Q_LA:CLH", + "34998": "Q_LA:CLH", + "34999": "Q_LA:CLH", + "35000": "P_LV:CLH", + "35001": "P_LV:CLH", + "35002": "P_LV:CLH", + "35003": "P_LV:CLH", + "35004": "P_LV:CLH", + "35005": "P_LV:CLH", + "35006": "P_LV:CLH", + "35007": "P_LV:CLH", + "35008": "P_LV:CLH", + "35009": "P_LV:CLH", + "35010": "P_LV:CLH", + "35011": "P_LV:CLH", + "35012": "P_LV:CLH", + "35013": "P_LV:CLH", + "35014": "P_LV:CLH", + "35015": "P_LV:CLH", + "35016": "P_LV:CLH", + "35017": "P_LV:CLH", + "35018": "P_LV:CLH", + "35019": "P_LV:CLH", + "35020": "P_LV:CLH", + "35021": "P_LV:CLH", + "35022": "P_LV:CLH", + "35023": "P_LV:CLH", + "35024": "P_LV:CLH", + "35025": "P_LV:CLH", + "35026": "P_LV:CLH", + "35027": "P_LV:CLH", + "35028": "P_LV:CLH", + "35029": "P_LV:CLH", + "35030": "P_LV:CLH", + "35031": "P_LV:CLH", + "35032": "P_LV:CLH", + "35033": "P_LV:CLH", + "35034": "P_LV:CLH", + "35035": "P_LV:CLH", + "35036": "P_LV:CLH", + "35037": "P_LV:CLH", + "35038": "P_LV:CLH", + "35039": "P_LV:CLH", + "35040": "P_LV:CLH", + "35041": "P_LV:CLH", + "35042": "P_LV:CLH", + "35043": "P_LV:CLH", + "35044": "P_LV:CLH", + "35045": "P_LV:CLH", + "35046": "P_LV:CLH", + "35047": "P_LV:CLH", + "35048": "P_LV:CLH", + "35049": "P_LV:CLH", + "35050": "P_LV:CLH", + "35051": "P_LV:CLH", + "35052": "P_LV:CLH", + "35053": "P_LV:CLH", + "35054": "P_LV:CLH", + "35055": "P_LV:CLH", + "35056": "P_LV:CLH", + "35057": "P_LV:CLH", + "35058": "P_LV:CLH", + "35059": "P_LV:CLH", + "35060": "P_LV:CLH", + "35061": "P_LV:CLH", + "35062": "P_LV:CLH", + "35063": "P_LV:CLH", + "35064": "P_LV:CLH", + "35065": "P_LV:CLH", + "35066": "P_LV:CLH", + "35067": "P_LV:CLH", + "35068": "P_LV:CLH", + "35069": "P_LV:CLH", + "35070": "P_LV:CLH", + "35071": "P_LV:CLH", + "35072": "P_LV:CLH", + "35073": "P_LV:CLH", + "35074": "P_LV:CLH", + "35075": "P_LV:CLH", + "35076": "P_LV:CLH", + "35077": "P_LV:CLH", + "35078": "P_LV:CLH", + "35079": "P_LV:CLH", + "35080": "P_LV:CLH", + "35081": "P_LV:CLH", + "35082": "P_LV:CLH", + "35083": "P_LV:CLH", + "35084": "P_LV:CLH", + "35085": "P_LV:CLH", + "35086": "P_LV:CLH", + "35087": "P_LV:CLH", + "35088": "P_LV:CLH", + "35089": "P_LV:CLH", + "35090": "P_LV:CLH", + "35091": "P_LV:CLH", + "35092": "P_LV:CLH", + "35093": "P_LV:CLH", + "35094": "P_LV:CLH", + "35095": "P_LV:CLH", + "35096": "P_LV:CLH", + "35097": "P_LV:CLH", + "35098": "P_LV:CLH", + "35099": "P_LV:CLH", + "35100": "P_LV:CLH", + "35101": "P_LV:CLH", + "35102": "P_LV:CLH", + "35103": "P_LV:CLH", + "35104": "P_LV:CLH", + "35105": "P_LV:CLH", + "35106": "P_LV:CLH", + "35107": "P_LV:CLH", + "35108": "P_LV:CLH", + "35109": "P_LV:CLH", + "35110": "P_LV:CLH", + "35111": "P_LV:CLH", + "35112": "P_LV:CLH", + "35113": "P_LV:CLH", + "35114": "P_LV:CLH", + "35115": "P_LV:CLH", + "35116": "P_LV:CLH", + "35117": "P_LV:CLH", + "35118": "P_LV:CLH", + "35119": "P_LV:CLH", + "35120": "P_LV:CLH", + "35121": "P_LV:CLH", + "35122": "P_LV:CLH", + "35123": "P_LV:CLH", + "35124": "P_LV:CLH", + "35125": "P_LV:CLH", + "35126": "P_LV:CLH", + "35127": "P_LV:CLH", + "35128": "P_LV:CLH", + "35129": "P_LV:CLH", + "35130": "P_LV:CLH", + "35131": "P_LV:CLH", + "35132": "P_LV:CLH", + "35133": "P_LV:CLH", + "35134": "P_LV:CLH", + "35135": "P_LV:CLH", + "35136": "P_LV:CLH", + "35137": "P_LV:CLH", + "35138": "P_LV:CLH", + "35139": "P_LV:CLH", + "35140": "P_LV:CLH", + "35141": "P_LV:CLH", + "35142": "P_LV:CLH", + "35143": "P_LV:CLH", + "35144": "P_LV:CLH", + "35145": "P_LV:CLH", + "35146": "P_LV:CLH", + "35147": "P_LV:CLH", + "35148": "P_LV:CLH", + "35149": "P_LV:CLH", + "35150": "P_LV:CLH", + "35151": "P_LV:CLH", + "35152": "P_LV:CLH", + "35153": "P_LV:CLH", + "35154": "P_LV:CLH", + "35155": "P_LV:CLH", + "35156": "P_LV:CLH", + "35157": "P_LV:CLH", + "35158": "P_LV:CLH", + "35159": "P_LV:CLH", + "35160": "P_LV:CLH", + "35161": "P_LV:CLH", + "35162": "P_LV:CLH", + "35163": "P_LV:CLH", + "35164": "P_LV:CLH", + "35165": "P_LV:CLH", + "35166": "P_LV:CLH", + "35167": "P_LV:CLH", + "35168": "P_LV:CLH", + "35169": "P_LV:CLH", + "35170": "P_LV:CLH", + "35171": "P_LV:CLH", + "35172": "P_LV:CLH", + "35173": "P_LV:CLH", + "35174": "P_LV:CLH", + "35175": "P_LV:CLH", + "35176": "P_LV:CLH", + "35177": "P_LV:CLH", + "35178": "P_LV:CLH", + "35179": "P_LV:CLH", + "35180": "P_LV:CLH", + "35181": "P_LV:CLH", + "35182": "P_LV:CLH", + "35183": "P_LV:CLH", + "35184": "P_LV:CLH", + "35185": "P_LV:CLH", + "35186": "P_LV:CLH", + "35187": "P_LV:CLH", + "35188": "P_LV:CLH", + "35189": "P_LV:CLH", + "35190": "P_LV:CLH", + "35191": "P_LV:CLH", + "35192": "P_LV:CLH", + "35193": "P_LV:CLH", + "35194": "P_LV:CLH", + "35195": "P_LV:CLH", + "35196": "P_LV:CLH", + "35197": "P_LV:CLH", + "35198": "P_LV:CLH", + "35199": "P_LV:CLH", + "35200": "P_LV:CLH", + "35201": "P_LV:CLH", + "35202": "P_LV:CLH", + "35203": "P_LV:CLH", + "35204": "P_LV:CLH", + "35205": "P_LV:CLH", + "35206": "P_LV:CLH", + "35207": "P_LV:CLH", + "35208": "P_LV:CLH", + "35209": "P_LV:CLH", + "35210": "P_LV:CLH", + "35211": "P_LV:CLH", + "35212": "P_LV:CLH", + "35213": "P_LV:CLH", + "35214": "P_LV:CLH", + "35215": "P_LV:CLH", + "35216": "P_LV:CLH", + "35217": "P_LV:CLH", + "35218": "P_LV:CLH", + "35219": "P_LV:CLH", + "35220": "P_LV:CLH", + "35221": "P_LV:CLH", + "35222": "P_LV:CLH", + "35223": "P_LV:CLH", + "35224": "P_LV:CLH", + "35225": "P_LV:CLH", + "35226": "P_LV:CLH", + "35227": "P_LV:CLH", + "35228": "P_LV:CLH", + "35229": "P_LV:CLH", + "35230": "P_LV:CLH", + "35231": "P_LV:CLH", + "35232": "P_LV:CLH", + "35233": "P_LV:CLH", + "35234": "P_LV:CLH", + "35235": "P_LV:CLH", + "35236": "P_LV:CLH", + "35237": "P_LV:CLH", + "35238": "P_LV:CLH", + "35239": "P_LV:CLH", + "35240": "P_LV:CLH", + "35241": "P_LV:CLH", + "35242": "P_LV:CLH", + "35243": "P_LV:CLH", + "35244": "P_LV:CLH", + "35245": "P_LV:CLH", + "35246": "P_LV:CLH", + "35247": "P_LV:CLH", + "35248": "P_LV:CLH", + "35249": "P_LV:CLH", + "35250": "P_LV:CLH", + "35251": "P_LV:CLH", + "35252": "P_LV:CLH", + "35253": "P_LV:CLH", + "35254": "P_LV:CLH", + "35255": "P_LV:CLH", + "35256": "P_LV:CLH", + "35257": "P_LV:CLH", + "35258": "P_LV:CLH", + "35259": "P_LV:CLH", + "35260": "P_LV:CLH", + "35261": "P_LV:CLH", + "35262": "P_LV:CLH", + "35263": "P_LV:CLH", + "35264": "P_LV:CLH", + "35265": "P_LV:CLH", + "35266": "P_LV:CLH", + "35267": "P_LV:CLH", + "35268": "P_LV:CLH", + "35269": "P_LV:CLH", + "35270": "P_LV:CLH", + "35271": "P_LV:CLH", + "35272": "P_LV:CLH", + "35273": "P_LV:CLH", + "35274": "P_LV:CLH", + "35275": "P_LV:CLH", + "35276": "P_LV:CLH", + "35277": "P_LV:CLH", + "35278": "P_LV:CLH", + "35279": "P_LV:CLH", + "35280": "P_LV:CLH", + "35281": "P_LV:CLH", + "35282": "P_LV:CLH", + "35283": "P_LV:CLH", + "35284": "P_LV:CLH", + "35285": "P_LV:CLH", + "35286": "P_LV:CLH", + "35287": "P_LV:CLH", + "35288": "P_LV:CLH", + "35289": "P_LV:CLH", + "35290": "P_LV:CLH", + "35291": "P_LV:CLH", + "35292": "P_LV:CLH", + "35293": "P_LV:CLH", + "35294": "P_LV:CLH", + "35295": "P_LV:CLH", + "35296": "P_LV:CLH", + "35297": "P_LV:CLH", + "35298": "P_LV:CLH", + "35299": "P_LV:CLH", + "35300": "P_LV:CLH", + "35301": "P_LV:CLH", + "35302": "P_LV:CLH", + "35303": "P_LV:CLH", + "35304": "P_LV:CLH", + "35305": "P_LV:CLH", + "35306": "P_LV:CLH", + "35307": "P_LV:CLH", + "35308": "P_LV:CLH", + "35309": "P_LV:CLH", + "35310": "P_LV:CLH", + "35311": "P_LV:CLH", + "35312": "P_LV:CLH", + "35313": "P_LV:CLH", + "35314": "P_LV:CLH", + "35315": "P_LV:CLH", + "35316": "P_LV:CLH", + "35317": "P_LV:CLH", + "35318": "P_LV:CLH", + "35319": "P_LV:CLH", + "35320": "P_LV:CLH", + "35321": "P_LV:CLH", + "35322": "P_LV:CLH", + "35323": "P_LV:CLH", + "35324": "P_LV:CLH", + "35325": "P_LV:CLH", + "35326": "P_LV:CLH", + "35327": "P_LV:CLH", + "35328": "P_LV:CLH", + "35329": "P_LV:CLH", + "35330": "P_LV:CLH", + "35331": "P_LV:CLH", + "35332": "P_LV:CLH", + "35333": "P_LV:CLH", + "35334": "P_LV:CLH", + "35335": "P_LV:CLH", + "35336": "P_LV:CLH", + "35337": "P_LV:CLH", + "35338": "P_LV:CLH", + "35339": "P_LV:CLH", + "35340": "P_LV:CLH", + "35341": "P_LV:CLH", + "35342": "P_LV:CLH", + "35343": "P_LV:CLH", + "35344": "P_LV:CLH", + "35345": "P_LV:CLH", + "35346": "P_LV:CLH", + "35347": "P_LV:CLH", + "35348": "P_LV:CLH", + "35349": "P_LV:CLH", + "35350": "P_LV:CLH", + "35351": "P_LV:CLH", + "35352": "P_LV:CLH", + "35353": "P_LV:CLH", + "35354": "P_LV:CLH", + "35355": "P_LV:CLH", + "35356": "P_LV:CLH", + "35357": "P_LV:CLH", + "35358": "P_LV:CLH", + "35359": "P_LV:CLH", + "35360": "P_LV:CLH", + "35361": "P_LV:CLH", + "35362": "P_LV:CLH", + "35363": "P_LV:CLH", + "35364": "P_LV:CLH", + "35365": "P_LV:CLH", + "35366": "P_LV:CLH", + "35367": "P_LV:CLH", + "35368": "P_LV:CLH", + "35369": "P_LV:CLH", + "35370": "P_LV:CLH", + "35371": "P_LV:CLH", + "35372": "P_LV:CLH", + "35373": "P_LV:CLH", + "35374": "P_LV:CLH", + "35375": "P_LV:CLH", + "35376": "P_LV:CLH", + "35377": "P_LV:CLH", + "35378": "P_LV:CLH", + "35379": "P_LV:CLH", + "35380": "P_LV:CLH", + "35381": "P_LV:CLH", + "35382": "P_LV:CLH", + "35383": "P_LV:CLH", + "35384": "P_LV:CLH", + "35385": "P_LV:CLH", + "35386": "P_LV:CLH", + "35387": "P_LV:CLH", + "35388": "P_LV:CLH", + "35389": "P_LV:CLH", + "35390": "P_LV:CLH", + "35391": "P_LV:CLH", + "35392": "P_LV:CLH", + "35393": "P_LV:CLH", + "35394": "P_LV:CLH", + "35395": "P_LV:CLH", + "35396": "P_LV:CLH", + "35397": "P_LV:CLH", + "35398": "P_LV:CLH", + "35399": "P_LV:CLH", + "35400": "P_LV:CLH", + "35401": "P_LV:CLH", + "35402": "P_LV:CLH", + "35403": "P_LV:CLH", + "35404": "P_LV:CLH", + "35405": "P_LV:CLH", + "35406": "P_LV:CLH", + "35407": "P_LV:CLH", + "35408": "P_LV:CLH", + "35409": "P_LV:CLH", + "35410": "P_LV:CLH", + "35411": "P_LV:CLH", + "35412": "P_LV:CLH", + "35413": "P_LV:CLH", + "35414": "P_LV:CLH", + "35415": "P_LV:CLH", + "35416": "P_LV:CLH", + "35417": "P_LV:CLH", + "35418": "P_LV:CLH", + "35419": "P_LV:CLH", + "35420": "P_LV:CLH", + "35421": "P_LV:CLH", + "35422": "P_LV:CLH", + "35423": "P_LV:CLH", + "35424": "P_LV:CLH", + "35425": "P_LV:CLH", + "35426": "P_LV:CLH", + "35427": "P_LV:CLH", + "35428": "P_LV:CLH", + "35429": "P_LV:CLH", + "35430": "P_LV:CLH", + "35431": "P_LV:CLH", + "35432": "P_LV:CLH", + "35433": "P_LV:CLH", + "35434": "P_LV:CLH", + "35435": "P_LV:CLH", + "35436": "P_LV:CLH", + "35437": "P_LV:CLH", + "35438": "P_LV:CLH", + "35439": "P_LV:CLH", + "35440": "P_LV:CLH", + "35441": "P_LV:CLH", + "35442": "P_LV:CLH", + "35443": "P_LV:CLH", + "35444": "P_LV:CLH", + "35445": "P_LV:CLH", + "35446": "P_LV:CLH", + "35447": "P_LV:CLH", + "35448": "P_LV:CLH", + "35449": "P_LV:CLH", + "35450": "P_LV:CLH", + "35451": "P_LV:CLH", + "35452": "P_LV:CLH", + "35453": "P_LV:CLH", + "35454": "P_LV:CLH", + "35455": "P_LV:CLH", + "35456": "P_LV:CLH", + "35457": "P_LV:CLH", + "35458": "P_LV:CLH", + "35459": "P_LV:CLH", + "35460": "P_LV:CLH", + "35461": "P_LV:CLH", + "35462": "P_LV:CLH", + "35463": "P_LV:CLH", + "35464": "P_LV:CLH", + "35465": "P_LV:CLH", + "35466": "P_LV:CLH", + "35467": "P_LV:CLH", + "35468": "P_LV:CLH", + "35469": "P_LV:CLH", + "35470": "P_LV:CLH", + "35471": "P_LV:CLH", + "35472": "P_LV:CLH", + "35473": "P_LV:CLH", + "35474": "P_LV:CLH", + "35475": "P_LV:CLH", + "35476": "P_LV:CLH", + "35477": "P_LV:CLH", + "35478": "P_LV:CLH", + "35479": "P_LV:CLH", + "35480": "P_LV:CLH", + "35481": "P_LV:CLH", + "35482": "P_LV:CLH", + "35483": "P_LV:CLH", + "35484": "P_LV:CLH", + "35485": "P_LV:CLH", + "35486": "P_LV:CLH", + "35487": "P_LV:CLH", + "35488": "P_LV:CLH", + "35489": "P_LV:CLH", + "35490": "P_LV:CLH", + "35491": "P_LV:CLH", + "35492": "P_LV:CLH", + "35493": "P_LV:CLH", + "35494": "P_LV:CLH", + "35495": "P_LV:CLH", + "35496": "P_LV:CLH", + "35497": "P_LV:CLH", + "35498": "P_LV:CLH", + "35499": "P_LV:CLH", + "35500": "P_LV:CLH", + "35501": "P_LV:CLH", + "35502": "P_LV:CLH", + "35503": "P_LV:CLH", + "35504": "P_LV:CLH", + "35505": "P_LV:CLH", + "35506": "P_LV:CLH", + "35507": "P_LV:CLH", + "35508": "P_LV:CLH", + "35509": "P_LV:CLH", + "35510": "P_LV:CLH", + "35511": "P_LV:CLH", + "35512": "P_LV:CLH", + "35513": "P_LV:CLH", + "35514": "P_LV:CLH", + "35515": "P_LV:CLH", + "35516": "P_LV:CLH", + "35517": "P_LV:CLH", + "35518": "P_LV:CLH", + "35519": "P_LV:CLH", + "35520": "P_LV:CLH", + "35521": "P_LV:CLH", + "35522": "P_LV:CLH", + "35523": "P_LV:CLH", + "35524": "P_LV:CLH", + "35525": "P_LV:CLH", + "35526": "P_LV:CLH", + "35527": "P_LV:CLH", + "35528": "P_LV:CLH", + "35529": "P_LV:CLH", + "35530": "P_LV:CLH", + "35531": "P_LV:CLH", + "35532": "P_LV:CLH", + "35533": "P_LV:CLH", + "35534": "P_LV:CLH", + "35535": "P_LV:CLH", + "35536": "P_LV:CLH", + "35537": "P_LV:CLH", + "35538": "P_LV:CLH", + "35539": "P_LV:CLH", + "35540": "P_LV:CLH", + "35541": "P_LV:CLH", + "35542": "P_LV:CLH", + "35543": "P_LV:CLH", + "35544": "P_LV:CLH", + "35545": "P_LV:CLH", + "35546": "P_LV:CLH", + "35547": "P_LV:CLH", + "35548": "P_LV:CLH", + "35549": "P_LV:CLH", + "35550": "P_LV:CLH", + "35551": "P_LV:CLH", + "35552": "P_LV:CLH", + "35553": "P_LV:CLH", + "35554": "P_LV:CLH", + "35555": "P_LV:CLH", + "35556": "P_LV:CLH", + "35557": "P_LV:CLH", + "35558": "P_LV:CLH", + "35559": "P_LV:CLH", + "35560": "P_LV:CLH", + "35561": "P_LV:CLH", + "35562": "P_LV:CLH", + "35563": "P_LV:CLH", + "35564": "P_LV:CLH", + "35565": "P_LV:CLH", + "35566": "P_LV:CLH", + "35567": "P_LV:CLH", + "35568": "P_LV:CLH", + "35569": "P_LV:CLH", + "35570": "P_LV:CLH", + "35571": "P_LV:CLH", + "35572": "P_LV:CLH", + "35573": "P_LV:CLH", + "35574": "P_LV:CLH", + "35575": "P_LV:CLH", + "35576": "P_LV:CLH", + "35577": "P_LV:CLH", + "35578": "P_LV:CLH", + "35579": "P_LV:CLH", + "35580": "P_LV:CLH", + "35581": "P_LV:CLH", + "35582": "P_LV:CLH", + "35583": "P_LV:CLH", + "35584": "P_LV:CLH", + "35585": "P_LV:CLH", + "35586": "P_LV:CLH", + "35587": "P_LV:CLH", + "35588": "P_LV:CLH", + "35589": "P_LV:CLH", + "35590": "P_LV:CLH", + "35591": "P_LV:CLH", + "35592": "P_LV:CLH", + "35593": "P_LV:CLH", + "35594": "P_LV:CLH", + "35595": "P_LV:CLH", + "35596": "P_LV:CLH", + "35597": "P_LV:CLH", + "35598": "P_LV:CLH", + "35599": "P_LV:CLH", + "35600": "P_LV:CLH", + "35601": "P_LV:CLH", + "35602": "P_LV:CLH", + "35603": "P_LV:CLH", + "35604": "P_LV:CLH", + "35605": "P_LV:CLH", + "35606": "P_LV:CLH", + "35607": "P_LV:CLH", + "35608": "P_LV:CLH", + "35609": "P_LV:CLH", + "35610": "P_LV:CLH", + "35611": "P_LV:CLH", + "35612": "P_LV:CLH", + "35613": "P_LV:CLH", + "35614": "P_LV:CLH", + "35615": "P_LV:CLH", + "35616": "P_LV:CLH", + "35617": "P_LV:CLH", + "35618": "P_LV:CLH", + "35619": "P_LV:CLH", + "35620": "P_LV:CLH", + "35621": "P_LV:CLH", + "35622": "P_LV:CLH", + "35623": "P_LV:CLH", + "35624": "P_LV:CLH", + "35625": "P_LV:CLH", + "35626": "P_LV:CLH", + "35627": "P_LV:CLH", + "35628": "P_LV:CLH", + "35629": "P_LV:CLH", + "35630": "P_LV:CLH", + "35631": "P_LV:CLH", + "35632": "P_LV:CLH", + "35633": "P_LV:CLH", + "35634": "P_LV:CLH", + "35635": "P_LV:CLH", + "35636": "P_LV:CLH", + "35637": "P_LV:CLH", + "35638": "P_LV:CLH", + "35639": "P_LV:CLH", + "35640": "P_LV:CLH", + "35641": "P_LV:CLH", + "35642": "P_LV:CLH", + "35643": "P_LV:CLH", + "35644": "P_LV:CLH", + "35645": "P_LV:CLH", + "35646": "P_LV:CLH", + "35647": "P_LV:CLH", + "35648": "P_LV:CLH", + "35649": "P_LV:CLH", + "35650": "P_LV:CLH", + "35651": "P_LV:CLH", + "35652": "P_LV:CLH", + "35653": "P_LV:CLH", + "35654": "P_LV:CLH", + "35655": "P_LV:CLH", + "35656": "P_LV:CLH", + "35657": "P_LV:CLH", + "35658": "P_LV:CLH", + "35659": "P_LV:CLH", + "35660": "P_LV:CLH", + "35661": "P_LV:CLH", + "35662": "P_LV:CLH", + "35663": "P_LV:CLH", + "35664": "P_LV:CLH", + "35665": "P_LV:CLH", + "35666": "P_LV:CLH", + "35667": "P_LV:CLH", + "35668": "P_LV:CLH", + "35669": "P_LV:CLH", + "35670": "P_LV:CLH", + "35671": "P_LV:CLH", + "35672": "P_LV:CLH", + "35673": "P_LV:CLH", + "35674": "P_LV:CLH", + "35675": "P_LV:CLH", + "35676": "P_LV:CLH", + "35677": "P_LV:CLH", + "35678": "P_LV:CLH", + "35679": "P_LV:CLH", + "35680": "P_LV:CLH", + "35681": "P_LV:CLH", + "35682": "P_LV:CLH", + "35683": "P_LV:CLH", + "35684": "P_LV:CLH", + "35685": "P_LV:CLH", + "35686": "P_LV:CLH", + "35687": "P_LV:CLH", + "35688": "P_LV:CLH", + "35689": "P_LV:CLH", + "35690": "P_LV:CLH", + "35691": "P_LV:CLH", + "35692": "P_LV:CLH", + "35693": "P_LV:CLH", + "35694": "P_LV:CLH", + "35695": "P_LV:CLH", + "35696": "P_LV:CLH", + "35697": "P_LV:CLH", + "35698": "P_LV:CLH", + "35699": "P_LV:CLH", + "35700": "P_LV:CLH", + "35701": "P_LV:CLH", + "35702": "P_LV:CLH", + "35703": "P_LV:CLH", + "35704": "P_LV:CLH", + "35705": "P_LV:CLH", + "35706": "P_LV:CLH", + "35707": "P_LV:CLH", + "35708": "P_LV:CLH", + "35709": "P_LV:CLH", + "35710": "P_LV:CLH", + "35711": "P_LV:CLH", + "35712": "P_LV:CLH", + "35713": "P_LV:CLH", + "35714": "P_LV:CLH", + "35715": "P_LV:CLH", + "35716": "P_LV:CLH", + "35717": "P_LV:CLH", + "35718": "P_LV:CLH", + "35719": "P_LV:CLH", + "35720": "P_LV:CLH", + "35721": "P_LV:CLH", + "35722": "P_LV:CLH", + "35723": "P_LV:CLH", + "35724": "P_LV:CLH", + "35725": "P_LV:CLH", + "35726": "P_LV:CLH", + "35727": "P_LV:CLH", + "35728": "P_LV:CLH", + "35729": "P_LV:CLH", + "35730": "P_LV:CLH", + "35731": "P_LV:CLH", + "35732": "P_LV:CLH", + "35733": "P_LV:CLH", + "35734": "P_LV:CLH", + "35735": "P_LV:CLH", + "35736": "P_LV:CLH", + "35737": "P_LV:CLH", + "35738": "P_LV:CLH", + "35739": "P_LV:CLH", + "35740": "P_LV:CLH", + "35741": "P_LV:CLH", + "35742": "P_LV:CLH", + "35743": "P_LV:CLH", + "35744": "P_LV:CLH", + "35745": "P_LV:CLH", + "35746": "P_LV:CLH", + "35747": "P_LV:CLH", + "35748": "P_LV:CLH", + "35749": "P_LV:CLH", + "35750": "P_LV:CLH", + "35751": "P_LV:CLH", + "35752": "P_LV:CLH", + "35753": "P_LV:CLH", + "35754": "P_LV:CLH", + "35755": "P_LV:CLH", + "35756": "P_LV:CLH", + "35757": "P_LV:CLH", + "35758": "P_LV:CLH", + "35759": "P_LV:CLH", + "35760": "P_LV:CLH", + "35761": "P_LV:CLH", + "35762": "P_LV:CLH", + "35763": "P_LV:CLH", + "35764": "P_LV:CLH", + "35765": "P_LV:CLH", + "35766": "P_LV:CLH", + "35767": "P_LV:CLH", + "35768": "P_LV:CLH", + "35769": "P_LV:CLH", + "35770": "P_LV:CLH", + "35771": "P_LV:CLH", + "35772": "P_LV:CLH", + "35773": "P_LV:CLH", + "35774": "P_LV:CLH", + "35775": "P_LV:CLH", + "35776": "P_LV:CLH", + "35777": "P_LV:CLH", + "35778": "P_LV:CLH", + "35779": "P_LV:CLH", + "35780": "P_LV:CLH", + "35781": "P_LV:CLH", + "35782": "P_LV:CLH", + "35783": "P_LV:CLH", + "35784": "P_LV:CLH", + "35785": "P_LV:CLH", + "35786": "P_LV:CLH", + "35787": "P_LV:CLH", + "35788": "P_LV:CLH", + "35789": "P_LV:CLH", + "35790": "P_LV:CLH", + "35791": "P_LV:CLH", + "35792": "P_LV:CLH", + "35793": "P_LV:CLH", + "35794": "P_LV:CLH", + "35795": "P_LV:CLH", + "35796": "P_LV:CLH", + "35797": "P_LV:CLH", + "35798": "P_LV:CLH", + "35799": "P_LV:CLH", + "35800": "P_LV:CLH", + "35801": "P_LV:CLH", + "35802": "P_LV:CLH", + "35803": "P_LV:CLH", + "35804": "P_LV:CLH", + "35805": "P_LV:CLH", + "35806": "P_LV:CLH", + "35807": "P_LV:CLH", + "35808": "P_LV:CLH", + "35809": "P_LV:CLH", + "35810": "P_LV:CLH", + "35811": "P_LV:CLH", + "35812": "P_LV:CLH", + "35813": "P_LV:CLH", + "35814": "P_LV:CLH", + "35815": "P_LV:CLH", + "35816": "P_LV:CLH", + "35817": "P_LV:CLH", + "35818": "P_LV:CLH", + "35819": "P_LV:CLH", + "35820": "P_LV:CLH", + "35821": "P_LV:CLH", + "35822": "P_LV:CLH", + "35823": "P_LV:CLH", + "35824": "P_LV:CLH", + "35825": "P_LV:CLH", + "35826": "P_LV:CLH", + "35827": "P_LV:CLH", + "35828": "P_LV:CLH", + "35829": "P_LV:CLH", + "35830": "P_LV:CLH", + "35831": "P_LV:CLH", + "35832": "P_LV:CLH", + "35833": "P_LV:CLH", + "35834": "P_LV:CLH", + "35835": "P_LV:CLH", + "35836": "P_LV:CLH", + "35837": "P_LV:CLH", + "35838": "P_LV:CLH", + "35839": "P_LV:CLH", + "35840": "P_LV:CLH", + "35841": "P_LV:CLH", + "35842": "P_LV:CLH", + "35843": "P_LV:CLH", + "35844": "P_LV:CLH", + "35845": "P_LV:CLH", + "35846": "P_LV:CLH", + "35847": "P_LV:CLH", + "35848": "P_LV:CLH", + "35849": "P_LV:CLH", + "35850": "P_LV:CLH", + "35851": "P_LV:CLH", + "35852": "P_LV:CLH", + "35853": "P_LV:CLH", + "35854": "P_LV:CLH", + "35855": "P_LV:CLH", + "35856": "P_LV:CLH", + "35857": "P_LV:CLH", + "35858": "P_LV:CLH", + "35859": "P_LV:CLH", + "35860": "P_LV:CLH", + "35861": "P_LV:CLH", + "35862": "P_LV:CLH", + "35863": "P_LV:CLH", + "35864": "P_LV:CLH", + "35865": "P_LV:CLH", + "35866": "P_LV:CLH", + "35867": "P_LV:CLH", + "35868": "P_LV:CLH", + "35869": "P_LV:CLH", + "35870": "P_LV:CLH", + "35871": "P_LV:CLH", + "35872": "P_LV:CLH", + "35873": "P_LV:CLH", + "35874": "P_LV:CLH", + "35875": "P_LV:CLH", + "35876": "P_LV:CLH", + "35877": "P_LV:CLH", + "35878": "P_LV:CLH", + "35879": "P_LV:CLH", + "35880": "P_LV:CLH", + "35881": "P_LV:CLH", + "35882": "P_LV:CLH", + "35883": "P_LV:CLH", + "35884": "P_LV:CLH", + "35885": "P_LV:CLH", + "35886": "P_LV:CLH", + "35887": "P_LV:CLH", + "35888": "P_LV:CLH", + "35889": "P_LV:CLH", + "35890": "P_LV:CLH", + "35891": "P_LV:CLH", + "35892": "P_LV:CLH", + "35893": "P_LV:CLH", + "35894": "P_LV:CLH", + "35895": "P_LV:CLH", + "35896": "P_LV:CLH", + "35897": "P_LV:CLH", + "35898": "P_LV:CLH", + "35899": "P_LV:CLH", + "35900": "P_LV:CLH", + "35901": "P_LV:CLH", + "35902": "P_LV:CLH", + "35903": "P_LV:CLH", + "35904": "P_LV:CLH", + "35905": "P_LV:CLH", + "35906": "P_LV:CLH", + "35907": "P_LV:CLH", + "35908": "P_LV:CLH", + "35909": "P_LV:CLH", + "35910": "P_LV:CLH", + "35911": "P_LV:CLH", + "35912": "P_LV:CLH", + "35913": "P_LV:CLH", + "35914": "P_LV:CLH", + "35915": "P_LV:CLH", + "35916": "P_LV:CLH", + "35917": "P_LV:CLH", + "35918": "P_LV:CLH", + "35919": "P_LV:CLH", + "35920": "P_LV:CLH", + "35921": "P_LV:CLH", + "35922": "P_LV:CLH", + "35923": "P_LV:CLH", + "35924": "P_LV:CLH", + "35925": "P_LV:CLH", + "35926": "P_LV:CLH", + "35927": "P_LV:CLH", + "35928": "P_LV:CLH", + "35929": "P_LV:CLH", + "35930": "P_LV:CLH", + "35931": "P_LV:CLH", + "35932": "P_LV:CLH", + "35933": "P_LV:CLH", + "35934": "P_LV:CLH", + "35935": "P_LV:CLH", + "35936": "P_LV:CLH", + "35937": "P_LV:CLH", + "35938": "P_LV:CLH", + "35939": "P_LV:CLH", + "35940": "P_LV:CLH", + "35941": "P_LV:CLH", + "35942": "P_LV:CLH", + "35943": "P_LV:CLH", + "35944": "P_LV:CLH", + "35945": "P_LV:CLH", + "35946": "P_LV:CLH", + "35947": "P_LV:CLH", + "35948": "P_LV:CLH", + "35949": "P_LV:CLH", + "35950": "P_LV:CLH", + "35951": "P_LV:CLH", + "35952": "P_LV:CLH", + "35953": "P_LV:CLH", + "35954": "P_LV:CLH", + "35955": "P_LV:CLH", + "35956": "P_LV:CLH", + "35957": "P_LV:CLH", + "35958": "P_LV:CLH", + "35959": "P_LV:CLH", + "35960": "P_LV:CLH", + "35961": "P_LV:CLH", + "35962": "P_LV:CLH", + "35963": "P_LV:CLH", + "35964": "P_LV:CLH", + "35965": "P_LV:CLH", + "35966": "P_LV:CLH", + "35967": "P_LV:CLH", + "35968": "P_LV:CLH", + "35969": "P_LV:CLH", + "35970": "P_LV:CLH", + "35971": "P_LV:CLH", + "35972": "P_LV:CLH", + "35973": "P_LV:CLH", + "35974": "P_LV:CLH", + "35975": "P_LV:CLH", + "35976": "P_LV:CLH", + "35977": "P_LV:CLH", + "35978": "P_LV:CLH", + "35979": "P_LV:CLH", + "35980": "P_LV:CLH", + "35981": "P_LV:CLH", + "35982": "P_LV:CLH", + "35983": "P_LV:CLH", + "35984": "P_LV:CLH", + "35985": "P_LV:CLH", + "35986": "P_LV:CLH", + "35987": "P_LV:CLH", + "35988": "P_LV:CLH", + "35989": "P_LV:CLH", + "35990": "P_LV:CLH", + "35991": "P_LV:CLH", + "35992": "P_LV:CLH", + "35993": "P_LV:CLH", + "35994": "P_LV:CLH", + "35995": "P_LV:CLH", + "35996": "P_LV:CLH", + "35997": "P_LV:CLH", + "35998": "P_LV:CLH", + "35999": "P_LV:CLH", + "36000": "V_LV:CLH", + "36001": "V_LV:CLH", + "36002": "V_LV:CLH", + "36003": "V_LV:CLH", + "36004": "V_LV:CLH", + "36005": "V_LV:CLH", + "36006": "V_LV:CLH", + "36007": "V_LV:CLH", + "36008": "V_LV:CLH", + "36009": "V_LV:CLH", + "36010": "V_LV:CLH", + "36011": "V_LV:CLH", + "36012": "V_LV:CLH", + "36013": "V_LV:CLH", + "36014": "V_LV:CLH", + "36015": "V_LV:CLH", + "36016": "V_LV:CLH", + "36017": "V_LV:CLH", + "36018": "V_LV:CLH", + "36019": "V_LV:CLH", + "36020": "V_LV:CLH", + "36021": "V_LV:CLH", + "36022": "V_LV:CLH", + "36023": "V_LV:CLH", + "36024": "V_LV:CLH", + "36025": "V_LV:CLH", + "36026": "V_LV:CLH", + "36027": "V_LV:CLH", + "36028": "V_LV:CLH", + "36029": "V_LV:CLH", + "36030": "V_LV:CLH", + "36031": "V_LV:CLH", + "36032": "V_LV:CLH", + "36033": "V_LV:CLH", + "36034": "V_LV:CLH", + "36035": "V_LV:CLH", + "36036": "V_LV:CLH", + "36037": "V_LV:CLH", + "36038": "V_LV:CLH", + "36039": "V_LV:CLH", + "36040": "V_LV:CLH", + "36041": "V_LV:CLH", + "36042": "V_LV:CLH", + "36043": "V_LV:CLH", + "36044": "V_LV:CLH", + "36045": "V_LV:CLH", + "36046": "V_LV:CLH", + "36047": "V_LV:CLH", + "36048": "V_LV:CLH", + "36049": "V_LV:CLH", + "36050": "V_LV:CLH", + "36051": "V_LV:CLH", + "36052": "V_LV:CLH", + "36053": "V_LV:CLH", + "36054": "V_LV:CLH", + "36055": "V_LV:CLH", + "36056": "V_LV:CLH", + "36057": "V_LV:CLH", + "36058": "V_LV:CLH", + "36059": "V_LV:CLH", + "36060": "V_LV:CLH", + "36061": "V_LV:CLH", + "36062": "V_LV:CLH", + "36063": "V_LV:CLH", + "36064": "V_LV:CLH", + "36065": "V_LV:CLH", + "36066": "V_LV:CLH", + "36067": "V_LV:CLH", + "36068": "V_LV:CLH", + "36069": "V_LV:CLH", + "36070": "V_LV:CLH", + "36071": "V_LV:CLH", + "36072": "V_LV:CLH", + "36073": "V_LV:CLH", + "36074": "V_LV:CLH", + "36075": "V_LV:CLH", + "36076": "V_LV:CLH", + "36077": "V_LV:CLH", + "36078": "V_LV:CLH", + "36079": "V_LV:CLH", + "36080": "V_LV:CLH", + "36081": "V_LV:CLH", + "36082": "V_LV:CLH", + "36083": "V_LV:CLH", + "36084": "V_LV:CLH", + "36085": "V_LV:CLH", + "36086": "V_LV:CLH", + "36087": "V_LV:CLH", + "36088": "V_LV:CLH", + "36089": "V_LV:CLH", + "36090": "V_LV:CLH", + "36091": "V_LV:CLH", + "36092": "V_LV:CLH", + "36093": "V_LV:CLH", + "36094": "V_LV:CLH", + "36095": "V_LV:CLH", + "36096": "V_LV:CLH", + "36097": "V_LV:CLH", + "36098": "V_LV:CLH", + "36099": "V_LV:CLH", + "36100": "V_LV:CLH", + "36101": "V_LV:CLH", + "36102": "V_LV:CLH", + "36103": "V_LV:CLH", + "36104": "V_LV:CLH", + "36105": "V_LV:CLH", + "36106": "V_LV:CLH", + "36107": "V_LV:CLH", + "36108": "V_LV:CLH", + "36109": "V_LV:CLH", + "36110": "V_LV:CLH", + "36111": "V_LV:CLH", + "36112": "V_LV:CLH", + "36113": "V_LV:CLH", + "36114": "V_LV:CLH", + "36115": "V_LV:CLH", + "36116": "V_LV:CLH", + "36117": "V_LV:CLH", + "36118": "V_LV:CLH", + "36119": "V_LV:CLH", + "36120": "V_LV:CLH", + "36121": "V_LV:CLH", + "36122": "V_LV:CLH", + "36123": "V_LV:CLH", + "36124": "V_LV:CLH", + "36125": "V_LV:CLH", + "36126": "V_LV:CLH", + "36127": "V_LV:CLH", + "36128": "V_LV:CLH", + "36129": "V_LV:CLH", + "36130": "V_LV:CLH", + "36131": "V_LV:CLH", + "36132": "V_LV:CLH", + "36133": "V_LV:CLH", + "36134": "V_LV:CLH", + "36135": "V_LV:CLH", + "36136": "V_LV:CLH", + "36137": "V_LV:CLH", + "36138": "V_LV:CLH", + "36139": "V_LV:CLH", + "36140": "V_LV:CLH", + "36141": "V_LV:CLH", + "36142": "V_LV:CLH", + "36143": "V_LV:CLH", + "36144": "V_LV:CLH", + "36145": "V_LV:CLH", + "36146": "V_LV:CLH", + "36147": "V_LV:CLH", + "36148": "V_LV:CLH", + "36149": "V_LV:CLH", + "36150": "V_LV:CLH", + "36151": "V_LV:CLH", + "36152": "V_LV:CLH", + "36153": "V_LV:CLH", + "36154": "V_LV:CLH", + "36155": "V_LV:CLH", + "36156": "V_LV:CLH", + "36157": "V_LV:CLH", + "36158": "V_LV:CLH", + "36159": "V_LV:CLH", + "36160": "V_LV:CLH", + "36161": "V_LV:CLH", + "36162": "V_LV:CLH", + "36163": "V_LV:CLH", + "36164": "V_LV:CLH", + "36165": "V_LV:CLH", + "36166": "V_LV:CLH", + "36167": "V_LV:CLH", + "36168": "V_LV:CLH", + "36169": "V_LV:CLH", + "36170": "V_LV:CLH", + "36171": "V_LV:CLH", + "36172": "V_LV:CLH", + "36173": "V_LV:CLH", + "36174": "V_LV:CLH", + "36175": "V_LV:CLH", + "36176": "V_LV:CLH", + "36177": "V_LV:CLH", + "36178": "V_LV:CLH", + "36179": "V_LV:CLH", + "36180": "V_LV:CLH", + "36181": "V_LV:CLH", + "36182": "V_LV:CLH", + "36183": "V_LV:CLH", + "36184": "V_LV:CLH", + "36185": "V_LV:CLH", + "36186": "V_LV:CLH", + "36187": "V_LV:CLH", + "36188": "V_LV:CLH", + "36189": "V_LV:CLH", + "36190": "V_LV:CLH", + "36191": "V_LV:CLH", + "36192": "V_LV:CLH", + "36193": "V_LV:CLH", + "36194": "V_LV:CLH", + "36195": "V_LV:CLH", + "36196": "V_LV:CLH", + "36197": "V_LV:CLH", + "36198": "V_LV:CLH", + "36199": "V_LV:CLH", + "36200": "V_LV:CLH", + "36201": "V_LV:CLH", + "36202": "V_LV:CLH", + "36203": "V_LV:CLH", + "36204": "V_LV:CLH", + "36205": "V_LV:CLH", + "36206": "V_LV:CLH", + "36207": "V_LV:CLH", + "36208": "V_LV:CLH", + "36209": "V_LV:CLH", + "36210": "V_LV:CLH", + "36211": "V_LV:CLH", + "36212": "V_LV:CLH", + "36213": "V_LV:CLH", + "36214": "V_LV:CLH", + "36215": "V_LV:CLH", + "36216": "V_LV:CLH", + "36217": "V_LV:CLH", + "36218": "V_LV:CLH", + "36219": "V_LV:CLH", + "36220": "V_LV:CLH", + "36221": "V_LV:CLH", + "36222": "V_LV:CLH", + "36223": "V_LV:CLH", + "36224": "V_LV:CLH", + "36225": "V_LV:CLH", + "36226": "V_LV:CLH", + "36227": "V_LV:CLH", + "36228": "V_LV:CLH", + "36229": "V_LV:CLH", + "36230": "V_LV:CLH", + "36231": "V_LV:CLH", + "36232": "V_LV:CLH", + "36233": "V_LV:CLH", + "36234": "V_LV:CLH", + "36235": "V_LV:CLH", + "36236": "V_LV:CLH", + "36237": "V_LV:CLH", + "36238": "V_LV:CLH", + "36239": "V_LV:CLH", + "36240": "V_LV:CLH", + "36241": "V_LV:CLH", + "36242": "V_LV:CLH", + "36243": "V_LV:CLH", + "36244": "V_LV:CLH", + "36245": "V_LV:CLH", + "36246": "V_LV:CLH", + "36247": "V_LV:CLH", + "36248": "V_LV:CLH", + "36249": "V_LV:CLH", + "36250": "V_LV:CLH", + "36251": "V_LV:CLH", + "36252": "V_LV:CLH", + "36253": "V_LV:CLH", + "36254": "V_LV:CLH", + "36255": "V_LV:CLH", + "36256": "V_LV:CLH", + "36257": "V_LV:CLH", + "36258": "V_LV:CLH", + "36259": "V_LV:CLH", + "36260": "V_LV:CLH", + "36261": "V_LV:CLH", + "36262": "V_LV:CLH", + "36263": "V_LV:CLH", + "36264": "V_LV:CLH", + "36265": "V_LV:CLH", + "36266": "V_LV:CLH", + "36267": "V_LV:CLH", + "36268": "V_LV:CLH", + "36269": "V_LV:CLH", + "36270": "V_LV:CLH", + "36271": "V_LV:CLH", + "36272": "V_LV:CLH", + "36273": "V_LV:CLH", + "36274": "V_LV:CLH", + "36275": "V_LV:CLH", + "36276": "V_LV:CLH", + "36277": "V_LV:CLH", + "36278": "V_LV:CLH", + "36279": "V_LV:CLH", + "36280": "V_LV:CLH", + "36281": "V_LV:CLH", + "36282": "V_LV:CLH", + "36283": "V_LV:CLH", + "36284": "V_LV:CLH", + "36285": "V_LV:CLH", + "36286": "V_LV:CLH", + "36287": "V_LV:CLH", + "36288": "V_LV:CLH", + "36289": "V_LV:CLH", + "36290": "V_LV:CLH", + "36291": "V_LV:CLH", + "36292": "V_LV:CLH", + "36293": "V_LV:CLH", + "36294": "V_LV:CLH", + "36295": "V_LV:CLH", + "36296": "V_LV:CLH", + "36297": "V_LV:CLH", + "36298": "V_LV:CLH", + "36299": "V_LV:CLH", + "36300": "V_LV:CLH", + "36301": "V_LV:CLH", + "36302": "V_LV:CLH", + "36303": "V_LV:CLH", + "36304": "V_LV:CLH", + "36305": "V_LV:CLH", + "36306": "V_LV:CLH", + "36307": "V_LV:CLH", + "36308": "V_LV:CLH", + "36309": "V_LV:CLH", + "36310": "V_LV:CLH", + "36311": "V_LV:CLH", + "36312": "V_LV:CLH", + "36313": "V_LV:CLH", + "36314": "V_LV:CLH", + "36315": "V_LV:CLH", + "36316": "V_LV:CLH", + "36317": "V_LV:CLH", + "36318": "V_LV:CLH", + "36319": "V_LV:CLH", + "36320": "V_LV:CLH", + "36321": "V_LV:CLH", + "36322": "V_LV:CLH", + "36323": "V_LV:CLH", + "36324": "V_LV:CLH", + "36325": "V_LV:CLH", + "36326": "V_LV:CLH", + "36327": "V_LV:CLH", + "36328": "V_LV:CLH", + "36329": "V_LV:CLH", + "36330": "V_LV:CLH", + "36331": "V_LV:CLH", + "36332": "V_LV:CLH", + "36333": "V_LV:CLH", + "36334": "V_LV:CLH", + "36335": "V_LV:CLH", + "36336": "V_LV:CLH", + "36337": "V_LV:CLH", + "36338": "V_LV:CLH", + "36339": "V_LV:CLH", + "36340": "V_LV:CLH", + "36341": "V_LV:CLH", + "36342": "V_LV:CLH", + "36343": "V_LV:CLH", + "36344": "V_LV:CLH", + "36345": "V_LV:CLH", + "36346": "V_LV:CLH", + "36347": "V_LV:CLH", + "36348": "V_LV:CLH", + "36349": "V_LV:CLH", + "36350": "V_LV:CLH", + "36351": "V_LV:CLH", + "36352": "V_LV:CLH", + "36353": "V_LV:CLH", + "36354": "V_LV:CLH", + "36355": "V_LV:CLH", + "36356": "V_LV:CLH", + "36357": "V_LV:CLH", + "36358": "V_LV:CLH", + "36359": "V_LV:CLH", + "36360": "V_LV:CLH", + "36361": "V_LV:CLH", + "36362": "V_LV:CLH", + "36363": "V_LV:CLH", + "36364": "V_LV:CLH", + "36365": "V_LV:CLH", + "36366": "V_LV:CLH", + "36367": "V_LV:CLH", + "36368": "V_LV:CLH", + "36369": "V_LV:CLH", + "36370": "V_LV:CLH", + "36371": "V_LV:CLH", + "36372": "V_LV:CLH", + "36373": "V_LV:CLH", + "36374": "V_LV:CLH", + "36375": "V_LV:CLH", + "36376": "V_LV:CLH", + "36377": "V_LV:CLH", + "36378": "V_LV:CLH", + "36379": "V_LV:CLH", + "36380": "V_LV:CLH", + "36381": "V_LV:CLH", + "36382": "V_LV:CLH", + "36383": "V_LV:CLH", + "36384": "V_LV:CLH", + "36385": "V_LV:CLH", + "36386": "V_LV:CLH", + "36387": "V_LV:CLH", + "36388": "V_LV:CLH", + "36389": "V_LV:CLH", + "36390": "V_LV:CLH", + "36391": "V_LV:CLH", + "36392": "V_LV:CLH", + "36393": "V_LV:CLH", + "36394": "V_LV:CLH", + "36395": "V_LV:CLH", + "36396": "V_LV:CLH", + "36397": "V_LV:CLH", + "36398": "V_LV:CLH", + "36399": "V_LV:CLH", + "36400": "V_LV:CLH", + "36401": "V_LV:CLH", + "36402": "V_LV:CLH", + "36403": "V_LV:CLH", + "36404": "V_LV:CLH", + "36405": "V_LV:CLH", + "36406": "V_LV:CLH", + "36407": "V_LV:CLH", + "36408": "V_LV:CLH", + "36409": "V_LV:CLH", + "36410": "V_LV:CLH", + "36411": "V_LV:CLH", + "36412": "V_LV:CLH", + "36413": "V_LV:CLH", + "36414": "V_LV:CLH", + "36415": "V_LV:CLH", + "36416": "V_LV:CLH", + "36417": "V_LV:CLH", + "36418": "V_LV:CLH", + "36419": "V_LV:CLH", + "36420": "V_LV:CLH", + "36421": "V_LV:CLH", + "36422": "V_LV:CLH", + "36423": "V_LV:CLH", + "36424": "V_LV:CLH", + "36425": "V_LV:CLH", + "36426": "V_LV:CLH", + "36427": "V_LV:CLH", + "36428": "V_LV:CLH", + "36429": "V_LV:CLH", + "36430": "V_LV:CLH", + "36431": "V_LV:CLH", + "36432": "V_LV:CLH", + "36433": "V_LV:CLH", + "36434": "V_LV:CLH", + "36435": "V_LV:CLH", + "36436": "V_LV:CLH", + "36437": "V_LV:CLH", + "36438": "V_LV:CLH", + "36439": "V_LV:CLH", + "36440": "V_LV:CLH", + "36441": "V_LV:CLH", + "36442": "V_LV:CLH", + "36443": "V_LV:CLH", + "36444": "V_LV:CLH", + "36445": "V_LV:CLH", + "36446": "V_LV:CLH", + "36447": "V_LV:CLH", + "36448": "V_LV:CLH", + "36449": "V_LV:CLH", + "36450": "V_LV:CLH", + "36451": "V_LV:CLH", + "36452": "V_LV:CLH", + "36453": "V_LV:CLH", + "36454": "V_LV:CLH", + "36455": "V_LV:CLH", + "36456": "V_LV:CLH", + "36457": "V_LV:CLH", + "36458": "V_LV:CLH", + "36459": "V_LV:CLH", + "36460": "V_LV:CLH", + "36461": "V_LV:CLH", + "36462": "V_LV:CLH", + "36463": "V_LV:CLH", + "36464": "V_LV:CLH", + "36465": "V_LV:CLH", + "36466": "V_LV:CLH", + "36467": "V_LV:CLH", + "36468": "V_LV:CLH", + "36469": "V_LV:CLH", + "36470": "V_LV:CLH", + "36471": "V_LV:CLH", + "36472": "V_LV:CLH", + "36473": "V_LV:CLH", + "36474": "V_LV:CLH", + "36475": "V_LV:CLH", + "36476": "V_LV:CLH", + "36477": "V_LV:CLH", + "36478": "V_LV:CLH", + "36479": "V_LV:CLH", + "36480": "V_LV:CLH", + "36481": "V_LV:CLH", + "36482": "V_LV:CLH", + "36483": "V_LV:CLH", + "36484": "V_LV:CLH", + "36485": "V_LV:CLH", + "36486": "V_LV:CLH", + "36487": "V_LV:CLH", + "36488": "V_LV:CLH", + "36489": "V_LV:CLH", + "36490": "V_LV:CLH", + "36491": "V_LV:CLH", + "36492": "V_LV:CLH", + "36493": "V_LV:CLH", + "36494": "V_LV:CLH", + "36495": "V_LV:CLH", + "36496": "V_LV:CLH", + "36497": "V_LV:CLH", + "36498": "V_LV:CLH", + "36499": "V_LV:CLH", + "36500": "V_LV:CLH", + "36501": "V_LV:CLH", + "36502": "V_LV:CLH", + "36503": "V_LV:CLH", + "36504": "V_LV:CLH", + "36505": "V_LV:CLH", + "36506": "V_LV:CLH", + "36507": "V_LV:CLH", + "36508": "V_LV:CLH", + "36509": "V_LV:CLH", + "36510": "V_LV:CLH", + "36511": "V_LV:CLH", + "36512": "V_LV:CLH", + "36513": "V_LV:CLH", + "36514": "V_LV:CLH", + "36515": "V_LV:CLH", + "36516": "V_LV:CLH", + "36517": "V_LV:CLH", + "36518": "V_LV:CLH", + "36519": "V_LV:CLH", + "36520": "V_LV:CLH", + "36521": "V_LV:CLH", + "36522": "V_LV:CLH", + "36523": "V_LV:CLH", + "36524": "V_LV:CLH", + "36525": "V_LV:CLH", + "36526": "V_LV:CLH", + "36527": "V_LV:CLH", + "36528": "V_LV:CLH", + "36529": "V_LV:CLH", + "36530": "V_LV:CLH", + "36531": "V_LV:CLH", + "36532": "V_LV:CLH", + "36533": "V_LV:CLH", + "36534": "V_LV:CLH", + "36535": "V_LV:CLH", + "36536": "V_LV:CLH", + "36537": "V_LV:CLH", + "36538": "V_LV:CLH", + "36539": "V_LV:CLH", + "36540": "V_LV:CLH", + "36541": "V_LV:CLH", + "36542": "V_LV:CLH", + "36543": "V_LV:CLH", + "36544": "V_LV:CLH", + "36545": "V_LV:CLH", + "36546": "V_LV:CLH", + "36547": "V_LV:CLH", + "36548": "V_LV:CLH", + "36549": "V_LV:CLH", + "36550": "V_LV:CLH", + "36551": "V_LV:CLH", + "36552": "V_LV:CLH", + "36553": "V_LV:CLH", + "36554": "V_LV:CLH", + "36555": "V_LV:CLH", + "36556": "V_LV:CLH", + "36557": "V_LV:CLH", + "36558": "V_LV:CLH", + "36559": "V_LV:CLH", + "36560": "V_LV:CLH", + "36561": "V_LV:CLH", + "36562": "V_LV:CLH", + "36563": "V_LV:CLH", + "36564": "V_LV:CLH", + "36565": "V_LV:CLH", + "36566": "V_LV:CLH", + "36567": "V_LV:CLH", + "36568": "V_LV:CLH", + "36569": "V_LV:CLH", + "36570": "V_LV:CLH", + "36571": "V_LV:CLH", + "36572": "V_LV:CLH", + "36573": "V_LV:CLH", + "36574": "V_LV:CLH", + "36575": "V_LV:CLH", + "36576": "V_LV:CLH", + "36577": "V_LV:CLH", + "36578": "V_LV:CLH", + "36579": "V_LV:CLH", + "36580": "V_LV:CLH", + "36581": "V_LV:CLH", + "36582": "V_LV:CLH", + "36583": "V_LV:CLH", + "36584": "V_LV:CLH", + "36585": "V_LV:CLH", + "36586": "V_LV:CLH", + "36587": "V_LV:CLH", + "36588": "V_LV:CLH", + "36589": "V_LV:CLH", + "36590": "V_LV:CLH", + "36591": "V_LV:CLH", + "36592": "V_LV:CLH", + "36593": "V_LV:CLH", + "36594": "V_LV:CLH", + "36595": "V_LV:CLH", + "36596": "V_LV:CLH", + "36597": "V_LV:CLH", + "36598": "V_LV:CLH", + "36599": "V_LV:CLH", + "36600": "V_LV:CLH", + "36601": "V_LV:CLH", + "36602": "V_LV:CLH", + "36603": "V_LV:CLH", + "36604": "V_LV:CLH", + "36605": "V_LV:CLH", + "36606": "V_LV:CLH", + "36607": "V_LV:CLH", + "36608": "V_LV:CLH", + "36609": "V_LV:CLH", + "36610": "V_LV:CLH", + "36611": "V_LV:CLH", + "36612": "V_LV:CLH", + "36613": "V_LV:CLH", + "36614": "V_LV:CLH", + "36615": "V_LV:CLH", + "36616": "V_LV:CLH", + "36617": "V_LV:CLH", + "36618": "V_LV:CLH", + "36619": "V_LV:CLH", + "36620": "V_LV:CLH", + "36621": "V_LV:CLH", + "36622": "V_LV:CLH", + "36623": "V_LV:CLH", + "36624": "V_LV:CLH", + "36625": "V_LV:CLH", + "36626": "V_LV:CLH", + "36627": "V_LV:CLH", + "36628": "V_LV:CLH", + "36629": "V_LV:CLH", + "36630": "V_LV:CLH", + "36631": "V_LV:CLH", + "36632": "V_LV:CLH", + "36633": "V_LV:CLH", + "36634": "V_LV:CLH", + "36635": "V_LV:CLH", + "36636": "V_LV:CLH", + "36637": "V_LV:CLH", + "36638": "V_LV:CLH", + "36639": "V_LV:CLH", + "36640": "V_LV:CLH", + "36641": "V_LV:CLH", + "36642": "V_LV:CLH", + "36643": "V_LV:CLH", + "36644": "V_LV:CLH", + "36645": "V_LV:CLH", + "36646": "V_LV:CLH", + "36647": "V_LV:CLH", + "36648": "V_LV:CLH", + "36649": "V_LV:CLH", + "36650": "V_LV:CLH", + "36651": "V_LV:CLH", + "36652": "V_LV:CLH", + "36653": "V_LV:CLH", + "36654": "V_LV:CLH", + "36655": "V_LV:CLH", + "36656": "V_LV:CLH", + "36657": "V_LV:CLH", + "36658": "V_LV:CLH", + "36659": "V_LV:CLH", + "36660": "V_LV:CLH", + "36661": "V_LV:CLH", + "36662": "V_LV:CLH", + "36663": "V_LV:CLH", + "36664": "V_LV:CLH", + "36665": "V_LV:CLH", + "36666": "V_LV:CLH", + "36667": "V_LV:CLH", + "36668": "V_LV:CLH", + "36669": "V_LV:CLH", + "36670": "V_LV:CLH", + "36671": "V_LV:CLH", + "36672": "V_LV:CLH", + "36673": "V_LV:CLH", + "36674": "V_LV:CLH", + "36675": "V_LV:CLH", + "36676": "V_LV:CLH", + "36677": "V_LV:CLH", + "36678": "V_LV:CLH", + "36679": "V_LV:CLH", + "36680": "V_LV:CLH", + "36681": "V_LV:CLH", + "36682": "V_LV:CLH", + "36683": "V_LV:CLH", + "36684": "V_LV:CLH", + "36685": "V_LV:CLH", + "36686": "V_LV:CLH", + "36687": "V_LV:CLH", + "36688": "V_LV:CLH", + "36689": "V_LV:CLH", + "36690": "V_LV:CLH", + "36691": "V_LV:CLH", + "36692": "V_LV:CLH", + "36693": "V_LV:CLH", + "36694": "V_LV:CLH", + "36695": "V_LV:CLH", + "36696": "V_LV:CLH", + "36697": "V_LV:CLH", + "36698": "V_LV:CLH", + "36699": "V_LV:CLH", + "36700": "V_LV:CLH", + "36701": "V_LV:CLH", + "36702": "V_LV:CLH", + "36703": "V_LV:CLH", + "36704": "V_LV:CLH", + "36705": "V_LV:CLH", + "36706": "V_LV:CLH", + "36707": "V_LV:CLH", + "36708": "V_LV:CLH", + "36709": "V_LV:CLH", + "36710": "V_LV:CLH", + "36711": "V_LV:CLH", + "36712": "V_LV:CLH", + "36713": "V_LV:CLH", + "36714": "V_LV:CLH", + "36715": "V_LV:CLH", + "36716": "V_LV:CLH", + "36717": "V_LV:CLH", + "36718": "V_LV:CLH", + "36719": "V_LV:CLH", + "36720": "V_LV:CLH", + "36721": "V_LV:CLH", + "36722": "V_LV:CLH", + "36723": "V_LV:CLH", + "36724": "V_LV:CLH", + "36725": "V_LV:CLH", + "36726": "V_LV:CLH", + "36727": "V_LV:CLH", + "36728": "V_LV:CLH", + "36729": "V_LV:CLH", + "36730": "V_LV:CLH", + "36731": "V_LV:CLH", + "36732": "V_LV:CLH", + "36733": "V_LV:CLH", + "36734": "V_LV:CLH", + "36735": "V_LV:CLH", + "36736": "V_LV:CLH", + "36737": "V_LV:CLH", + "36738": "V_LV:CLH", + "36739": "V_LV:CLH", + "36740": "V_LV:CLH", + "36741": "V_LV:CLH", + "36742": "V_LV:CLH", + "36743": "V_LV:CLH", + "36744": "V_LV:CLH", + "36745": "V_LV:CLH", + "36746": "V_LV:CLH", + "36747": "V_LV:CLH", + "36748": "V_LV:CLH", + "36749": "V_LV:CLH", + "36750": "V_LV:CLH", + "36751": "V_LV:CLH", + "36752": "V_LV:CLH", + "36753": "V_LV:CLH", + "36754": "V_LV:CLH", + "36755": "V_LV:CLH", + "36756": "V_LV:CLH", + "36757": "V_LV:CLH", + "36758": "V_LV:CLH", + "36759": "V_LV:CLH", + "36760": "V_LV:CLH", + "36761": "V_LV:CLH", + "36762": "V_LV:CLH", + "36763": "V_LV:CLH", + "36764": "V_LV:CLH", + "36765": "V_LV:CLH", + "36766": "V_LV:CLH", + "36767": "V_LV:CLH", + "36768": "V_LV:CLH", + "36769": "V_LV:CLH", + "36770": "V_LV:CLH", + "36771": "V_LV:CLH", + "36772": "V_LV:CLH", + "36773": "V_LV:CLH", + "36774": "V_LV:CLH", + "36775": "V_LV:CLH", + "36776": "V_LV:CLH", + "36777": "V_LV:CLH", + "36778": "V_LV:CLH", + "36779": "V_LV:CLH", + "36780": "V_LV:CLH", + "36781": "V_LV:CLH", + "36782": "V_LV:CLH", + "36783": "V_LV:CLH", + "36784": "V_LV:CLH", + "36785": "V_LV:CLH", + "36786": "V_LV:CLH", + "36787": "V_LV:CLH", + "36788": "V_LV:CLH", + "36789": "V_LV:CLH", + "36790": "V_LV:CLH", + "36791": "V_LV:CLH", + "36792": "V_LV:CLH", + "36793": "V_LV:CLH", + "36794": "V_LV:CLH", + "36795": "V_LV:CLH", + "36796": "V_LV:CLH", + "36797": "V_LV:CLH", + "36798": "V_LV:CLH", + "36799": "V_LV:CLH", + "36800": "V_LV:CLH", + "36801": "V_LV:CLH", + "36802": "V_LV:CLH", + "36803": "V_LV:CLH", + "36804": "V_LV:CLH", + "36805": "V_LV:CLH", + "36806": "V_LV:CLH", + "36807": "V_LV:CLH", + "36808": "V_LV:CLH", + "36809": "V_LV:CLH", + "36810": "V_LV:CLH", + "36811": "V_LV:CLH", + "36812": "V_LV:CLH", + "36813": "V_LV:CLH", + "36814": "V_LV:CLH", + "36815": "V_LV:CLH", + "36816": "V_LV:CLH", + "36817": "V_LV:CLH", + "36818": "V_LV:CLH", + "36819": "V_LV:CLH", + "36820": "V_LV:CLH", + "36821": "V_LV:CLH", + "36822": "V_LV:CLH", + "36823": "V_LV:CLH", + "36824": "V_LV:CLH", + "36825": "V_LV:CLH", + "36826": "V_LV:CLH", + "36827": "V_LV:CLH", + "36828": "V_LV:CLH", + "36829": "V_LV:CLH", + "36830": "V_LV:CLH", + "36831": "V_LV:CLH", + "36832": "V_LV:CLH", + "36833": "V_LV:CLH", + "36834": "V_LV:CLH", + "36835": "V_LV:CLH", + "36836": "V_LV:CLH", + "36837": "V_LV:CLH", + "36838": "V_LV:CLH", + "36839": "V_LV:CLH", + "36840": "V_LV:CLH", + "36841": "V_LV:CLH", + "36842": "V_LV:CLH", + "36843": "V_LV:CLH", + "36844": "V_LV:CLH", + "36845": "V_LV:CLH", + "36846": "V_LV:CLH", + "36847": "V_LV:CLH", + "36848": "V_LV:CLH", + "36849": "V_LV:CLH", + "36850": "V_LV:CLH", + "36851": "V_LV:CLH", + "36852": "V_LV:CLH", + "36853": "V_LV:CLH", + "36854": "V_LV:CLH", + "36855": "V_LV:CLH", + "36856": "V_LV:CLH", + "36857": "V_LV:CLH", + "36858": "V_LV:CLH", + "36859": "V_LV:CLH", + "36860": "V_LV:CLH", + "36861": "V_LV:CLH", + "36862": "V_LV:CLH", + "36863": "V_LV:CLH", + "36864": "V_LV:CLH", + "36865": "V_LV:CLH", + "36866": "V_LV:CLH", + "36867": "V_LV:CLH", + "36868": "V_LV:CLH", + "36869": "V_LV:CLH", + "36870": "V_LV:CLH", + "36871": "V_LV:CLH", + "36872": "V_LV:CLH", + "36873": "V_LV:CLH", + "36874": "V_LV:CLH", + "36875": "V_LV:CLH", + "36876": "V_LV:CLH", + "36877": "V_LV:CLH", + "36878": "V_LV:CLH", + "36879": "V_LV:CLH", + "36880": "V_LV:CLH", + "36881": "V_LV:CLH", + "36882": "V_LV:CLH", + "36883": "V_LV:CLH", + "36884": "V_LV:CLH", + "36885": "V_LV:CLH", + "36886": "V_LV:CLH", + "36887": "V_LV:CLH", + "36888": "V_LV:CLH", + "36889": "V_LV:CLH", + "36890": "V_LV:CLH", + "36891": "V_LV:CLH", + "36892": "V_LV:CLH", + "36893": "V_LV:CLH", + "36894": "V_LV:CLH", + "36895": "V_LV:CLH", + "36896": "V_LV:CLH", + "36897": "V_LV:CLH", + "36898": "V_LV:CLH", + "36899": "V_LV:CLH", + "36900": "V_LV:CLH", + "36901": "V_LV:CLH", + "36902": "V_LV:CLH", + "36903": "V_LV:CLH", + "36904": "V_LV:CLH", + "36905": "V_LV:CLH", + "36906": "V_LV:CLH", + "36907": "V_LV:CLH", + "36908": "V_LV:CLH", + "36909": "V_LV:CLH", + "36910": "V_LV:CLH", + "36911": "V_LV:CLH", + "36912": "V_LV:CLH", + "36913": "V_LV:CLH", + "36914": "V_LV:CLH", + "36915": "V_LV:CLH", + "36916": "V_LV:CLH", + "36917": "V_LV:CLH", + "36918": "V_LV:CLH", + "36919": "V_LV:CLH", + "36920": "V_LV:CLH", + "36921": "V_LV:CLH", + "36922": "V_LV:CLH", + "36923": "V_LV:CLH", + "36924": "V_LV:CLH", + "36925": "V_LV:CLH", + "36926": "V_LV:CLH", + "36927": "V_LV:CLH", + "36928": "V_LV:CLH", + "36929": "V_LV:CLH", + "36930": "V_LV:CLH", + "36931": "V_LV:CLH", + "36932": "V_LV:CLH", + "36933": "V_LV:CLH", + "36934": "V_LV:CLH", + "36935": "V_LV:CLH", + "36936": "V_LV:CLH", + "36937": "V_LV:CLH", + "36938": "V_LV:CLH", + "36939": "V_LV:CLH", + "36940": "V_LV:CLH", + "36941": "V_LV:CLH", + "36942": "V_LV:CLH", + "36943": "V_LV:CLH", + "36944": "V_LV:CLH", + "36945": "V_LV:CLH", + "36946": "V_LV:CLH", + "36947": "V_LV:CLH", + "36948": "V_LV:CLH", + "36949": "V_LV:CLH", + "36950": "V_LV:CLH", + "36951": "V_LV:CLH", + "36952": "V_LV:CLH", + "36953": "V_LV:CLH", + "36954": "V_LV:CLH", + "36955": "V_LV:CLH", + "36956": "V_LV:CLH", + "36957": "V_LV:CLH", + "36958": "V_LV:CLH", + "36959": "V_LV:CLH", + "36960": "V_LV:CLH", + "36961": "V_LV:CLH", + "36962": "V_LV:CLH", + "36963": "V_LV:CLH", + "36964": "V_LV:CLH", + "36965": "V_LV:CLH", + "36966": "V_LV:CLH", + "36967": "V_LV:CLH", + "36968": "V_LV:CLH", + "36969": "V_LV:CLH", + "36970": "V_LV:CLH", + "36971": "V_LV:CLH", + "36972": "V_LV:CLH", + "36973": "V_LV:CLH", + "36974": "V_LV:CLH", + "36975": "V_LV:CLH", + "36976": "V_LV:CLH", + "36977": "V_LV:CLH", + "36978": "V_LV:CLH", + "36979": "V_LV:CLH", + "36980": "V_LV:CLH", + "36981": "V_LV:CLH", + "36982": "V_LV:CLH", + "36983": "V_LV:CLH", + "36984": "V_LV:CLH", + "36985": "V_LV:CLH", + "36986": "V_LV:CLH", + "36987": "V_LV:CLH", + "36988": "V_LV:CLH", + "36989": "V_LV:CLH", + "36990": "V_LV:CLH", + "36991": "V_LV:CLH", + "36992": "V_LV:CLH", + "36993": "V_LV:CLH", + "36994": "V_LV:CLH", + "36995": "V_LV:CLH", + "36996": "V_LV:CLH", + "36997": "V_LV:CLH", + "36998": "V_LV:CLH", + "36999": "V_LV:CLH", + "37000": "Q_LV:CLH", + "37001": "Q_LV:CLH", + "37002": "Q_LV:CLH", + "37003": "Q_LV:CLH", + "37004": "Q_LV:CLH", + "37005": "Q_LV:CLH", + "37006": "Q_LV:CLH", + "37007": "Q_LV:CLH", + "37008": "Q_LV:CLH", + "37009": "Q_LV:CLH", + "37010": "Q_LV:CLH", + "37011": "Q_LV:CLH", + "37012": "Q_LV:CLH", + "37013": "Q_LV:CLH", + "37014": "Q_LV:CLH", + "37015": "Q_LV:CLH", + "37016": "Q_LV:CLH", + "37017": "Q_LV:CLH", + "37018": "Q_LV:CLH", + "37019": "Q_LV:CLH", + "37020": "Q_LV:CLH", + "37021": "Q_LV:CLH", + "37022": "Q_LV:CLH", + "37023": "Q_LV:CLH", + "37024": "Q_LV:CLH", + "37025": "Q_LV:CLH", + "37026": "Q_LV:CLH", + "37027": "Q_LV:CLH", + "37028": "Q_LV:CLH", + "37029": "Q_LV:CLH", + "37030": "Q_LV:CLH", + "37031": "Q_LV:CLH", + "37032": "Q_LV:CLH", + "37033": "Q_LV:CLH", + "37034": "Q_LV:CLH", + "37035": "Q_LV:CLH", + "37036": "Q_LV:CLH", + "37037": "Q_LV:CLH", + "37038": "Q_LV:CLH", + "37039": "Q_LV:CLH", + "37040": "Q_LV:CLH", + "37041": "Q_LV:CLH", + "37042": "Q_LV:CLH", + "37043": "Q_LV:CLH", + "37044": "Q_LV:CLH", + "37045": "Q_LV:CLH", + "37046": "Q_LV:CLH", + "37047": "Q_LV:CLH", + "37048": "Q_LV:CLH", + "37049": "Q_LV:CLH", + "37050": "Q_LV:CLH", + "37051": "Q_LV:CLH", + "37052": "Q_LV:CLH", + "37053": "Q_LV:CLH", + "37054": "Q_LV:CLH", + "37055": "Q_LV:CLH", + "37056": "Q_LV:CLH", + "37057": "Q_LV:CLH", + "37058": "Q_LV:CLH", + "37059": "Q_LV:CLH", + "37060": "Q_LV:CLH", + "37061": "Q_LV:CLH", + "37062": "Q_LV:CLH", + "37063": "Q_LV:CLH", + "37064": "Q_LV:CLH", + "37065": "Q_LV:CLH", + "37066": "Q_LV:CLH", + "37067": "Q_LV:CLH", + "37068": "Q_LV:CLH", + "37069": "Q_LV:CLH", + "37070": "Q_LV:CLH", + "37071": "Q_LV:CLH", + "37072": "Q_LV:CLH", + "37073": "Q_LV:CLH", + "37074": "Q_LV:CLH", + "37075": "Q_LV:CLH", + "37076": "Q_LV:CLH", + "37077": "Q_LV:CLH", + "37078": "Q_LV:CLH", + "37079": "Q_LV:CLH", + "37080": "Q_LV:CLH", + "37081": "Q_LV:CLH", + "37082": "Q_LV:CLH", + "37083": "Q_LV:CLH", + "37084": "Q_LV:CLH", + "37085": "Q_LV:CLH", + "37086": "Q_LV:CLH", + "37087": "Q_LV:CLH", + "37088": "Q_LV:CLH", + "37089": "Q_LV:CLH", + "37090": "Q_LV:CLH", + "37091": "Q_LV:CLH", + "37092": "Q_LV:CLH", + "37093": "Q_LV:CLH", + "37094": "Q_LV:CLH", + "37095": "Q_LV:CLH", + "37096": "Q_LV:CLH", + "37097": "Q_LV:CLH", + "37098": "Q_LV:CLH", + "37099": "Q_LV:CLH", + "37100": "Q_LV:CLH", + "37101": "Q_LV:CLH", + "37102": "Q_LV:CLH", + "37103": "Q_LV:CLH", + "37104": "Q_LV:CLH", + "37105": "Q_LV:CLH", + "37106": "Q_LV:CLH", + "37107": "Q_LV:CLH", + "37108": "Q_LV:CLH", + "37109": "Q_LV:CLH", + "37110": "Q_LV:CLH", + "37111": "Q_LV:CLH", + "37112": "Q_LV:CLH", + "37113": "Q_LV:CLH", + "37114": "Q_LV:CLH", + "37115": "Q_LV:CLH", + "37116": "Q_LV:CLH", + "37117": "Q_LV:CLH", + "37118": "Q_LV:CLH", + "37119": "Q_LV:CLH", + "37120": "Q_LV:CLH", + "37121": "Q_LV:CLH", + "37122": "Q_LV:CLH", + "37123": "Q_LV:CLH", + "37124": "Q_LV:CLH", + "37125": "Q_LV:CLH", + "37126": "Q_LV:CLH", + "37127": "Q_LV:CLH", + "37128": "Q_LV:CLH", + "37129": "Q_LV:CLH", + "37130": "Q_LV:CLH", + "37131": "Q_LV:CLH", + "37132": "Q_LV:CLH", + "37133": "Q_LV:CLH", + "37134": "Q_LV:CLH", + "37135": "Q_LV:CLH", + "37136": "Q_LV:CLH", + "37137": "Q_LV:CLH", + "37138": "Q_LV:CLH", + "37139": "Q_LV:CLH", + "37140": "Q_LV:CLH", + "37141": "Q_LV:CLH", + "37142": "Q_LV:CLH", + "37143": "Q_LV:CLH", + "37144": "Q_LV:CLH", + "37145": "Q_LV:CLH", + "37146": "Q_LV:CLH", + "37147": "Q_LV:CLH", + "37148": "Q_LV:CLH", + "37149": "Q_LV:CLH", + "37150": "Q_LV:CLH", + "37151": "Q_LV:CLH", + "37152": "Q_LV:CLH", + "37153": "Q_LV:CLH", + "37154": "Q_LV:CLH", + "37155": "Q_LV:CLH", + "37156": "Q_LV:CLH", + "37157": "Q_LV:CLH", + "37158": "Q_LV:CLH", + "37159": "Q_LV:CLH", + "37160": "Q_LV:CLH", + "37161": "Q_LV:CLH", + "37162": "Q_LV:CLH", + "37163": "Q_LV:CLH", + "37164": "Q_LV:CLH", + "37165": "Q_LV:CLH", + "37166": "Q_LV:CLH", + "37167": "Q_LV:CLH", + "37168": "Q_LV:CLH", + "37169": "Q_LV:CLH", + "37170": "Q_LV:CLH", + "37171": "Q_LV:CLH", + "37172": "Q_LV:CLH", + "37173": "Q_LV:CLH", + "37174": "Q_LV:CLH", + "37175": "Q_LV:CLH", + "37176": "Q_LV:CLH", + "37177": "Q_LV:CLH", + "37178": "Q_LV:CLH", + "37179": "Q_LV:CLH", + "37180": "Q_LV:CLH", + "37181": "Q_LV:CLH", + "37182": "Q_LV:CLH", + "37183": "Q_LV:CLH", + "37184": "Q_LV:CLH", + "37185": "Q_LV:CLH", + "37186": "Q_LV:CLH", + "37187": "Q_LV:CLH", + "37188": "Q_LV:CLH", + "37189": "Q_LV:CLH", + "37190": "Q_LV:CLH", + "37191": "Q_LV:CLH", + "37192": "Q_LV:CLH", + "37193": "Q_LV:CLH", + "37194": "Q_LV:CLH", + "37195": "Q_LV:CLH", + "37196": "Q_LV:CLH", + "37197": "Q_LV:CLH", + "37198": "Q_LV:CLH", + "37199": "Q_LV:CLH", + "37200": "Q_LV:CLH", + "37201": "Q_LV:CLH", + "37202": "Q_LV:CLH", + "37203": "Q_LV:CLH", + "37204": "Q_LV:CLH", + "37205": "Q_LV:CLH", + "37206": "Q_LV:CLH", + "37207": "Q_LV:CLH", + "37208": "Q_LV:CLH", + "37209": "Q_LV:CLH", + "37210": "Q_LV:CLH", + "37211": "Q_LV:CLH", + "37212": "Q_LV:CLH", + "37213": "Q_LV:CLH", + "37214": "Q_LV:CLH", + "37215": "Q_LV:CLH", + "37216": "Q_LV:CLH", + "37217": "Q_LV:CLH", + "37218": "Q_LV:CLH", + "37219": "Q_LV:CLH", + "37220": "Q_LV:CLH", + "37221": "Q_LV:CLH", + "37222": "Q_LV:CLH", + "37223": "Q_LV:CLH", + "37224": "Q_LV:CLH", + "37225": "Q_LV:CLH", + "37226": "Q_LV:CLH", + "37227": "Q_LV:CLH", + "37228": "Q_LV:CLH", + "37229": "Q_LV:CLH", + "37230": "Q_LV:CLH", + "37231": "Q_LV:CLH", + "37232": "Q_LV:CLH", + "37233": "Q_LV:CLH", + "37234": "Q_LV:CLH", + "37235": "Q_LV:CLH", + "37236": "Q_LV:CLH", + "37237": "Q_LV:CLH", + "37238": "Q_LV:CLH", + "37239": "Q_LV:CLH", + "37240": "Q_LV:CLH", + "37241": "Q_LV:CLH", + "37242": "Q_LV:CLH", + "37243": "Q_LV:CLH", + "37244": "Q_LV:CLH", + "37245": "Q_LV:CLH", + "37246": "Q_LV:CLH", + "37247": "Q_LV:CLH", + "37248": "Q_LV:CLH", + "37249": "Q_LV:CLH", + "37250": "Q_LV:CLH", + "37251": "Q_LV:CLH", + "37252": "Q_LV:CLH", + "37253": "Q_LV:CLH", + "37254": "Q_LV:CLH", + "37255": "Q_LV:CLH", + "37256": "Q_LV:CLH", + "37257": "Q_LV:CLH", + "37258": "Q_LV:CLH", + "37259": "Q_LV:CLH", + "37260": "Q_LV:CLH", + "37261": "Q_LV:CLH", + "37262": "Q_LV:CLH", + "37263": "Q_LV:CLH", + "37264": "Q_LV:CLH", + "37265": "Q_LV:CLH", + "37266": "Q_LV:CLH", + "37267": "Q_LV:CLH", + "37268": "Q_LV:CLH", + "37269": "Q_LV:CLH", + "37270": "Q_LV:CLH", + "37271": "Q_LV:CLH", + "37272": "Q_LV:CLH", + "37273": "Q_LV:CLH", + "37274": "Q_LV:CLH", + "37275": "Q_LV:CLH", + "37276": "Q_LV:CLH", + "37277": "Q_LV:CLH", + "37278": "Q_LV:CLH", + "37279": "Q_LV:CLH", + "37280": "Q_LV:CLH", + "37281": "Q_LV:CLH", + "37282": "Q_LV:CLH", + "37283": "Q_LV:CLH", + "37284": "Q_LV:CLH", + "37285": "Q_LV:CLH", + "37286": "Q_LV:CLH", + "37287": "Q_LV:CLH", + "37288": "Q_LV:CLH", + "37289": "Q_LV:CLH", + "37290": "Q_LV:CLH", + "37291": "Q_LV:CLH", + "37292": "Q_LV:CLH", + "37293": "Q_LV:CLH", + "37294": "Q_LV:CLH", + "37295": "Q_LV:CLH", + "37296": "Q_LV:CLH", + "37297": "Q_LV:CLH", + "37298": "Q_LV:CLH", + "37299": "Q_LV:CLH", + "37300": "Q_LV:CLH", + "37301": "Q_LV:CLH", + "37302": "Q_LV:CLH", + "37303": "Q_LV:CLH", + "37304": "Q_LV:CLH", + "37305": "Q_LV:CLH", + "37306": "Q_LV:CLH", + "37307": "Q_LV:CLH", + "37308": "Q_LV:CLH", + "37309": "Q_LV:CLH", + "37310": "Q_LV:CLH", + "37311": "Q_LV:CLH", + "37312": "Q_LV:CLH", + "37313": "Q_LV:CLH", + "37314": "Q_LV:CLH", + "37315": "Q_LV:CLH", + "37316": "Q_LV:CLH", + "37317": "Q_LV:CLH", + "37318": "Q_LV:CLH", + "37319": "Q_LV:CLH", + "37320": "Q_LV:CLH", + "37321": "Q_LV:CLH", + "37322": "Q_LV:CLH", + "37323": "Q_LV:CLH", + "37324": "Q_LV:CLH", + "37325": "Q_LV:CLH", + "37326": "Q_LV:CLH", + "37327": "Q_LV:CLH", + "37328": "Q_LV:CLH", + "37329": "Q_LV:CLH", + "37330": "Q_LV:CLH", + "37331": "Q_LV:CLH", + "37332": "Q_LV:CLH", + "37333": "Q_LV:CLH", + "37334": "Q_LV:CLH", + "37335": "Q_LV:CLH", + "37336": "Q_LV:CLH", + "37337": "Q_LV:CLH", + "37338": "Q_LV:CLH", + "37339": "Q_LV:CLH", + "37340": "Q_LV:CLH", + "37341": "Q_LV:CLH", + "37342": "Q_LV:CLH", + "37343": "Q_LV:CLH", + "37344": "Q_LV:CLH", + "37345": "Q_LV:CLH", + "37346": "Q_LV:CLH", + "37347": "Q_LV:CLH", + "37348": "Q_LV:CLH", + "37349": "Q_LV:CLH", + "37350": "Q_LV:CLH", + "37351": "Q_LV:CLH", + "37352": "Q_LV:CLH", + "37353": "Q_LV:CLH", + "37354": "Q_LV:CLH", + "37355": "Q_LV:CLH", + "37356": "Q_LV:CLH", + "37357": "Q_LV:CLH", + "37358": "Q_LV:CLH", + "37359": "Q_LV:CLH", + "37360": "Q_LV:CLH", + "37361": "Q_LV:CLH", + "37362": "Q_LV:CLH", + "37363": "Q_LV:CLH", + "37364": "Q_LV:CLH", + "37365": "Q_LV:CLH", + "37366": "Q_LV:CLH", + "37367": "Q_LV:CLH", + "37368": "Q_LV:CLH", + "37369": "Q_LV:CLH", + "37370": "Q_LV:CLH", + "37371": "Q_LV:CLH", + "37372": "Q_LV:CLH", + "37373": "Q_LV:CLH", + "37374": "Q_LV:CLH", + "37375": "Q_LV:CLH", + "37376": "Q_LV:CLH", + "37377": "Q_LV:CLH", + "37378": "Q_LV:CLH", + "37379": "Q_LV:CLH", + "37380": "Q_LV:CLH", + "37381": "Q_LV:CLH", + "37382": "Q_LV:CLH", + "37383": "Q_LV:CLH", + "37384": "Q_LV:CLH", + "37385": "Q_LV:CLH", + "37386": "Q_LV:CLH", + "37387": "Q_LV:CLH", + "37388": "Q_LV:CLH", + "37389": "Q_LV:CLH", + "37390": "Q_LV:CLH", + "37391": "Q_LV:CLH", + "37392": "Q_LV:CLH", + "37393": "Q_LV:CLH", + "37394": "Q_LV:CLH", + "37395": "Q_LV:CLH", + "37396": "Q_LV:CLH", + "37397": "Q_LV:CLH", + "37398": "Q_LV:CLH", + "37399": "Q_LV:CLH", + "37400": "Q_LV:CLH", + "37401": "Q_LV:CLH", + "37402": "Q_LV:CLH", + "37403": "Q_LV:CLH", + "37404": "Q_LV:CLH", + "37405": "Q_LV:CLH", + "37406": "Q_LV:CLH", + "37407": "Q_LV:CLH", + "37408": "Q_LV:CLH", + "37409": "Q_LV:CLH", + "37410": "Q_LV:CLH", + "37411": "Q_LV:CLH", + "37412": "Q_LV:CLH", + "37413": "Q_LV:CLH", + "37414": "Q_LV:CLH", + "37415": "Q_LV:CLH", + "37416": "Q_LV:CLH", + "37417": "Q_LV:CLH", + "37418": "Q_LV:CLH", + "37419": "Q_LV:CLH", + "37420": "Q_LV:CLH", + "37421": "Q_LV:CLH", + "37422": "Q_LV:CLH", + "37423": "Q_LV:CLH", + "37424": "Q_LV:CLH", + "37425": "Q_LV:CLH", + "37426": "Q_LV:CLH", + "37427": "Q_LV:CLH", + "37428": "Q_LV:CLH", + "37429": "Q_LV:CLH", + "37430": "Q_LV:CLH", + "37431": "Q_LV:CLH", + "37432": "Q_LV:CLH", + "37433": "Q_LV:CLH", + "37434": "Q_LV:CLH", + "37435": "Q_LV:CLH", + "37436": "Q_LV:CLH", + "37437": "Q_LV:CLH", + "37438": "Q_LV:CLH", + "37439": "Q_LV:CLH", + "37440": "Q_LV:CLH", + "37441": "Q_LV:CLH", + "37442": "Q_LV:CLH", + "37443": "Q_LV:CLH", + "37444": "Q_LV:CLH", + "37445": "Q_LV:CLH", + "37446": "Q_LV:CLH", + "37447": "Q_LV:CLH", + "37448": "Q_LV:CLH", + "37449": "Q_LV:CLH", + "37450": "Q_LV:CLH", + "37451": "Q_LV:CLH", + "37452": "Q_LV:CLH", + "37453": "Q_LV:CLH", + "37454": "Q_LV:CLH", + "37455": "Q_LV:CLH", + "37456": "Q_LV:CLH", + "37457": "Q_LV:CLH", + "37458": "Q_LV:CLH", + "37459": "Q_LV:CLH", + "37460": "Q_LV:CLH", + "37461": "Q_LV:CLH", + "37462": "Q_LV:CLH", + "37463": "Q_LV:CLH", + "37464": "Q_LV:CLH", + "37465": "Q_LV:CLH", + "37466": "Q_LV:CLH", + "37467": "Q_LV:CLH", + "37468": "Q_LV:CLH", + "37469": "Q_LV:CLH", + "37470": "Q_LV:CLH", + "37471": "Q_LV:CLH", + "37472": "Q_LV:CLH", + "37473": "Q_LV:CLH", + "37474": "Q_LV:CLH", + "37475": "Q_LV:CLH", + "37476": "Q_LV:CLH", + "37477": "Q_LV:CLH", + "37478": "Q_LV:CLH", + "37479": "Q_LV:CLH", + "37480": "Q_LV:CLH", + "37481": "Q_LV:CLH", + "37482": "Q_LV:CLH", + "37483": "Q_LV:CLH", + "37484": "Q_LV:CLH", + "37485": "Q_LV:CLH", + "37486": "Q_LV:CLH", + "37487": "Q_LV:CLH", + "37488": "Q_LV:CLH", + "37489": "Q_LV:CLH", + "37490": "Q_LV:CLH", + "37491": "Q_LV:CLH", + "37492": "Q_LV:CLH", + "37493": "Q_LV:CLH", + "37494": "Q_LV:CLH", + "37495": "Q_LV:CLH", + "37496": "Q_LV:CLH", + "37497": "Q_LV:CLH", + "37498": "Q_LV:CLH", + "37499": "Q_LV:CLH", + "37500": "Q_LV:CLH", + "37501": "Q_LV:CLH", + "37502": "Q_LV:CLH", + "37503": "Q_LV:CLH", + "37504": "Q_LV:CLH", + "37505": "Q_LV:CLH", + "37506": "Q_LV:CLH", + "37507": "Q_LV:CLH", + "37508": "Q_LV:CLH", + "37509": "Q_LV:CLH", + "37510": "Q_LV:CLH", + "37511": "Q_LV:CLH", + "37512": "Q_LV:CLH", + "37513": "Q_LV:CLH", + "37514": "Q_LV:CLH", + "37515": "Q_LV:CLH", + "37516": "Q_LV:CLH", + "37517": "Q_LV:CLH", + "37518": "Q_LV:CLH", + "37519": "Q_LV:CLH", + "37520": "Q_LV:CLH", + "37521": "Q_LV:CLH", + "37522": "Q_LV:CLH", + "37523": "Q_LV:CLH", + "37524": "Q_LV:CLH", + "37525": "Q_LV:CLH", + "37526": "Q_LV:CLH", + "37527": "Q_LV:CLH", + "37528": "Q_LV:CLH", + "37529": "Q_LV:CLH", + "37530": "Q_LV:CLH", + "37531": "Q_LV:CLH", + "37532": "Q_LV:CLH", + "37533": "Q_LV:CLH", + "37534": "Q_LV:CLH", + "37535": "Q_LV:CLH", + "37536": "Q_LV:CLH", + "37537": "Q_LV:CLH", + "37538": "Q_LV:CLH", + "37539": "Q_LV:CLH", + "37540": "Q_LV:CLH", + "37541": "Q_LV:CLH", + "37542": "Q_LV:CLH", + "37543": "Q_LV:CLH", + "37544": "Q_LV:CLH", + "37545": "Q_LV:CLH", + "37546": "Q_LV:CLH", + "37547": "Q_LV:CLH", + "37548": "Q_LV:CLH", + "37549": "Q_LV:CLH", + "37550": "Q_LV:CLH", + "37551": "Q_LV:CLH", + "37552": "Q_LV:CLH", + "37553": "Q_LV:CLH", + "37554": "Q_LV:CLH", + "37555": "Q_LV:CLH", + "37556": "Q_LV:CLH", + "37557": "Q_LV:CLH", + "37558": "Q_LV:CLH", + "37559": "Q_LV:CLH", + "37560": "Q_LV:CLH", + "37561": "Q_LV:CLH", + "37562": "Q_LV:CLH", + "37563": "Q_LV:CLH", + "37564": "Q_LV:CLH", + "37565": "Q_LV:CLH", + "37566": "Q_LV:CLH", + "37567": "Q_LV:CLH", + "37568": "Q_LV:CLH", + "37569": "Q_LV:CLH", + "37570": "Q_LV:CLH", + "37571": "Q_LV:CLH", + "37572": "Q_LV:CLH", + "37573": "Q_LV:CLH", + "37574": "Q_LV:CLH", + "37575": "Q_LV:CLH", + "37576": "Q_LV:CLH", + "37577": "Q_LV:CLH", + "37578": "Q_LV:CLH", + "37579": "Q_LV:CLH", + "37580": "Q_LV:CLH", + "37581": "Q_LV:CLH", + "37582": "Q_LV:CLH", + "37583": "Q_LV:CLH", + "37584": "Q_LV:CLH", + "37585": "Q_LV:CLH", + "37586": "Q_LV:CLH", + "37587": "Q_LV:CLH", + "37588": "Q_LV:CLH", + "37589": "Q_LV:CLH", + "37590": "Q_LV:CLH", + "37591": "Q_LV:CLH", + "37592": "Q_LV:CLH", + "37593": "Q_LV:CLH", + "37594": "Q_LV:CLH", + "37595": "Q_LV:CLH", + "37596": "Q_LV:CLH", + "37597": "Q_LV:CLH", + "37598": "Q_LV:CLH", + "37599": "Q_LV:CLH", + "37600": "Q_LV:CLH", + "37601": "Q_LV:CLH", + "37602": "Q_LV:CLH", + "37603": "Q_LV:CLH", + "37604": "Q_LV:CLH", + "37605": "Q_LV:CLH", + "37606": "Q_LV:CLH", + "37607": "Q_LV:CLH", + "37608": "Q_LV:CLH", + "37609": "Q_LV:CLH", + "37610": "Q_LV:CLH", + "37611": "Q_LV:CLH", + "37612": "Q_LV:CLH", + "37613": "Q_LV:CLH", + "37614": "Q_LV:CLH", + "37615": "Q_LV:CLH", + "37616": "Q_LV:CLH", + "37617": "Q_LV:CLH", + "37618": "Q_LV:CLH", + "37619": "Q_LV:CLH", + "37620": "Q_LV:CLH", + "37621": "Q_LV:CLH", + "37622": "Q_LV:CLH", + "37623": "Q_LV:CLH", + "37624": "Q_LV:CLH", + "37625": "Q_LV:CLH", + "37626": "Q_LV:CLH", + "37627": "Q_LV:CLH", + "37628": "Q_LV:CLH", + "37629": "Q_LV:CLH", + "37630": "Q_LV:CLH", + "37631": "Q_LV:CLH", + "37632": "Q_LV:CLH", + "37633": "Q_LV:CLH", + "37634": "Q_LV:CLH", + "37635": "Q_LV:CLH", + "37636": "Q_LV:CLH", + "37637": "Q_LV:CLH", + "37638": "Q_LV:CLH", + "37639": "Q_LV:CLH", + "37640": "Q_LV:CLH", + "37641": "Q_LV:CLH", + "37642": "Q_LV:CLH", + "37643": "Q_LV:CLH", + "37644": "Q_LV:CLH", + "37645": "Q_LV:CLH", + "37646": "Q_LV:CLH", + "37647": "Q_LV:CLH", + "37648": "Q_LV:CLH", + "37649": "Q_LV:CLH", + "37650": "Q_LV:CLH", + "37651": "Q_LV:CLH", + "37652": "Q_LV:CLH", + "37653": "Q_LV:CLH", + "37654": "Q_LV:CLH", + "37655": "Q_LV:CLH", + "37656": "Q_LV:CLH", + "37657": "Q_LV:CLH", + "37658": "Q_LV:CLH", + "37659": "Q_LV:CLH", + "37660": "Q_LV:CLH", + "37661": "Q_LV:CLH", + "37662": "Q_LV:CLH", + "37663": "Q_LV:CLH", + "37664": "Q_LV:CLH", + "37665": "Q_LV:CLH", + "37666": "Q_LV:CLH", + "37667": "Q_LV:CLH", + "37668": "Q_LV:CLH", + "37669": "Q_LV:CLH", + "37670": "Q_LV:CLH", + "37671": "Q_LV:CLH", + "37672": "Q_LV:CLH", + "37673": "Q_LV:CLH", + "37674": "Q_LV:CLH", + "37675": "Q_LV:CLH", + "37676": "Q_LV:CLH", + "37677": "Q_LV:CLH", + "37678": "Q_LV:CLH", + "37679": "Q_LV:CLH", + "37680": "Q_LV:CLH", + "37681": "Q_LV:CLH", + "37682": "Q_LV:CLH", + "37683": "Q_LV:CLH", + "37684": "Q_LV:CLH", + "37685": "Q_LV:CLH", + "37686": "Q_LV:CLH", + "37687": "Q_LV:CLH", + "37688": "Q_LV:CLH", + "37689": "Q_LV:CLH", + "37690": "Q_LV:CLH", + "37691": "Q_LV:CLH", + "37692": "Q_LV:CLH", + "37693": "Q_LV:CLH", + "37694": "Q_LV:CLH", + "37695": "Q_LV:CLH", + "37696": "Q_LV:CLH", + "37697": "Q_LV:CLH", + "37698": "Q_LV:CLH", + "37699": "Q_LV:CLH", + "37700": "Q_LV:CLH", + "37701": "Q_LV:CLH", + "37702": "Q_LV:CLH", + "37703": "Q_LV:CLH", + "37704": "Q_LV:CLH", + "37705": "Q_LV:CLH", + "37706": "Q_LV:CLH", + "37707": "Q_LV:CLH", + "37708": "Q_LV:CLH", + "37709": "Q_LV:CLH", + "37710": "Q_LV:CLH", + "37711": "Q_LV:CLH", + "37712": "Q_LV:CLH", + "37713": "Q_LV:CLH", + "37714": "Q_LV:CLH", + "37715": "Q_LV:CLH", + "37716": "Q_LV:CLH", + "37717": "Q_LV:CLH", + "37718": "Q_LV:CLH", + "37719": "Q_LV:CLH", + "37720": "Q_LV:CLH", + "37721": "Q_LV:CLH", + "37722": "Q_LV:CLH", + "37723": "Q_LV:CLH", + "37724": "Q_LV:CLH", + "37725": "Q_LV:CLH", + "37726": "Q_LV:CLH", + "37727": "Q_LV:CLH", + "37728": "Q_LV:CLH", + "37729": "Q_LV:CLH", + "37730": "Q_LV:CLH", + "37731": "Q_LV:CLH", + "37732": "Q_LV:CLH", + "37733": "Q_LV:CLH", + "37734": "Q_LV:CLH", + "37735": "Q_LV:CLH", + "37736": "Q_LV:CLH", + "37737": "Q_LV:CLH", + "37738": "Q_LV:CLH", + "37739": "Q_LV:CLH", + "37740": "Q_LV:CLH", + "37741": "Q_LV:CLH", + "37742": "Q_LV:CLH", + "37743": "Q_LV:CLH", + "37744": "Q_LV:CLH", + "37745": "Q_LV:CLH", + "37746": "Q_LV:CLH", + "37747": "Q_LV:CLH", + "37748": "Q_LV:CLH", + "37749": "Q_LV:CLH", + "37750": "Q_LV:CLH", + "37751": "Q_LV:CLH", + "37752": "Q_LV:CLH", + "37753": "Q_LV:CLH", + "37754": "Q_LV:CLH", + "37755": "Q_LV:CLH", + "37756": "Q_LV:CLH", + "37757": "Q_LV:CLH", + "37758": "Q_LV:CLH", + "37759": "Q_LV:CLH", + "37760": "Q_LV:CLH", + "37761": "Q_LV:CLH", + "37762": "Q_LV:CLH", + "37763": "Q_LV:CLH", + "37764": "Q_LV:CLH", + "37765": "Q_LV:CLH", + "37766": "Q_LV:CLH", + "37767": "Q_LV:CLH", + "37768": "Q_LV:CLH", + "37769": "Q_LV:CLH", + "37770": "Q_LV:CLH", + "37771": "Q_LV:CLH", + "37772": "Q_LV:CLH", + "37773": "Q_LV:CLH", + "37774": "Q_LV:CLH", + "37775": "Q_LV:CLH", + "37776": "Q_LV:CLH", + "37777": "Q_LV:CLH", + "37778": "Q_LV:CLH", + "37779": "Q_LV:CLH", + "37780": "Q_LV:CLH", + "37781": "Q_LV:CLH", + "37782": "Q_LV:CLH", + "37783": "Q_LV:CLH", + "37784": "Q_LV:CLH", + "37785": "Q_LV:CLH", + "37786": "Q_LV:CLH", + "37787": "Q_LV:CLH", + "37788": "Q_LV:CLH", + "37789": "Q_LV:CLH", + "37790": "Q_LV:CLH", + "37791": "Q_LV:CLH", + "37792": "Q_LV:CLH", + "37793": "Q_LV:CLH", + "37794": "Q_LV:CLH", + "37795": "Q_LV:CLH", + "37796": "Q_LV:CLH", + "37797": "Q_LV:CLH", + "37798": "Q_LV:CLH", + "37799": "Q_LV:CLH", + "37800": "Q_LV:CLH", + "37801": "Q_LV:CLH", + "37802": "Q_LV:CLH", + "37803": "Q_LV:CLH", + "37804": "Q_LV:CLH", + "37805": "Q_LV:CLH", + "37806": "Q_LV:CLH", + "37807": "Q_LV:CLH", + "37808": "Q_LV:CLH", + "37809": "Q_LV:CLH", + "37810": "Q_LV:CLH", + "37811": "Q_LV:CLH", + "37812": "Q_LV:CLH", + "37813": "Q_LV:CLH", + "37814": "Q_LV:CLH", + "37815": "Q_LV:CLH", + "37816": "Q_LV:CLH", + "37817": "Q_LV:CLH", + "37818": "Q_LV:CLH", + "37819": "Q_LV:CLH", + "37820": "Q_LV:CLH", + "37821": "Q_LV:CLH", + "37822": "Q_LV:CLH", + "37823": "Q_LV:CLH", + "37824": "Q_LV:CLH", + "37825": "Q_LV:CLH", + "37826": "Q_LV:CLH", + "37827": "Q_LV:CLH", + "37828": "Q_LV:CLH", + "37829": "Q_LV:CLH", + "37830": "Q_LV:CLH", + "37831": "Q_LV:CLH", + "37832": "Q_LV:CLH", + "37833": "Q_LV:CLH", + "37834": "Q_LV:CLH", + "37835": "Q_LV:CLH", + "37836": "Q_LV:CLH", + "37837": "Q_LV:CLH", + "37838": "Q_LV:CLH", + "37839": "Q_LV:CLH", + "37840": "Q_LV:CLH", + "37841": "Q_LV:CLH", + "37842": "Q_LV:CLH", + "37843": "Q_LV:CLH", + "37844": "Q_LV:CLH", + "37845": "Q_LV:CLH", + "37846": "Q_LV:CLH", + "37847": "Q_LV:CLH", + "37848": "Q_LV:CLH", + "37849": "Q_LV:CLH", + "37850": "Q_LV:CLH", + "37851": "Q_LV:CLH", + "37852": "Q_LV:CLH", + "37853": "Q_LV:CLH", + "37854": "Q_LV:CLH", + "37855": "Q_LV:CLH", + "37856": "Q_LV:CLH", + "37857": "Q_LV:CLH", + "37858": "Q_LV:CLH", + "37859": "Q_LV:CLH", + "37860": "Q_LV:CLH", + "37861": "Q_LV:CLH", + "37862": "Q_LV:CLH", + "37863": "Q_LV:CLH", + "37864": "Q_LV:CLH", + "37865": "Q_LV:CLH", + "37866": "Q_LV:CLH", + "37867": "Q_LV:CLH", + "37868": "Q_LV:CLH", + "37869": "Q_LV:CLH", + "37870": "Q_LV:CLH", + "37871": "Q_LV:CLH", + "37872": "Q_LV:CLH", + "37873": "Q_LV:CLH", + "37874": "Q_LV:CLH", + "37875": "Q_LV:CLH", + "37876": "Q_LV:CLH", + "37877": "Q_LV:CLH", + "37878": "Q_LV:CLH", + "37879": "Q_LV:CLH", + "37880": "Q_LV:CLH", + "37881": "Q_LV:CLH", + "37882": "Q_LV:CLH", + "37883": "Q_LV:CLH", + "37884": "Q_LV:CLH", + "37885": "Q_LV:CLH", + "37886": "Q_LV:CLH", + "37887": "Q_LV:CLH", + "37888": "Q_LV:CLH", + "37889": "Q_LV:CLH", + "37890": "Q_LV:CLH", + "37891": "Q_LV:CLH", + "37892": "Q_LV:CLH", + "37893": "Q_LV:CLH", + "37894": "Q_LV:CLH", + "37895": "Q_LV:CLH", + "37896": "Q_LV:CLH", + "37897": "Q_LV:CLH", + "37898": "Q_LV:CLH", + "37899": "Q_LV:CLH", + "37900": "Q_LV:CLH", + "37901": "Q_LV:CLH", + "37902": "Q_LV:CLH", + "37903": "Q_LV:CLH", + "37904": "Q_LV:CLH", + "37905": "Q_LV:CLH", + "37906": "Q_LV:CLH", + "37907": "Q_LV:CLH", + "37908": "Q_LV:CLH", + "37909": "Q_LV:CLH", + "37910": "Q_LV:CLH", + "37911": "Q_LV:CLH", + "37912": "Q_LV:CLH", + "37913": "Q_LV:CLH", + "37914": "Q_LV:CLH", + "37915": "Q_LV:CLH", + "37916": "Q_LV:CLH", + "37917": "Q_LV:CLH", + "37918": "Q_LV:CLH", + "37919": "Q_LV:CLH", + "37920": "Q_LV:CLH", + "37921": "Q_LV:CLH", + "37922": "Q_LV:CLH", + "37923": "Q_LV:CLH", + "37924": "Q_LV:CLH", + "37925": "Q_LV:CLH", + "37926": "Q_LV:CLH", + "37927": "Q_LV:CLH", + "37928": "Q_LV:CLH", + "37929": "Q_LV:CLH", + "37930": "Q_LV:CLH", + "37931": "Q_LV:CLH", + "37932": "Q_LV:CLH", + "37933": "Q_LV:CLH", + "37934": "Q_LV:CLH", + "37935": "Q_LV:CLH", + "37936": "Q_LV:CLH", + "37937": "Q_LV:CLH", + "37938": "Q_LV:CLH", + "37939": "Q_LV:CLH", + "37940": "Q_LV:CLH", + "37941": "Q_LV:CLH", + "37942": "Q_LV:CLH", + "37943": "Q_LV:CLH", + "37944": "Q_LV:CLH", + "37945": "Q_LV:CLH", + "37946": "Q_LV:CLH", + "37947": "Q_LV:CLH", + "37948": "Q_LV:CLH", + "37949": "Q_LV:CLH", + "37950": "Q_LV:CLH", + "37951": "Q_LV:CLH", + "37952": "Q_LV:CLH", + "37953": "Q_LV:CLH", + "37954": "Q_LV:CLH", + "37955": "Q_LV:CLH", + "37956": "Q_LV:CLH", + "37957": "Q_LV:CLH", + "37958": "Q_LV:CLH", + "37959": "Q_LV:CLH", + "37960": "Q_LV:CLH", + "37961": "Q_LV:CLH", + "37962": "Q_LV:CLH", + "37963": "Q_LV:CLH", + "37964": "Q_LV:CLH", + "37965": "Q_LV:CLH", + "37966": "Q_LV:CLH", + "37967": "Q_LV:CLH", + "37968": "Q_LV:CLH", + "37969": "Q_LV:CLH", + "37970": "Q_LV:CLH", + "37971": "Q_LV:CLH", + "37972": "Q_LV:CLH", + "37973": "Q_LV:CLH", + "37974": "Q_LV:CLH", + "37975": "Q_LV:CLH", + "37976": "Q_LV:CLH", + "37977": "Q_LV:CLH", + "37978": "Q_LV:CLH", + "37979": "Q_LV:CLH", + "37980": "Q_LV:CLH", + "37981": "Q_LV:CLH", + "37982": "Q_LV:CLH", + "37983": "Q_LV:CLH", + "37984": "Q_LV:CLH", + "37985": "Q_LV:CLH", + "37986": "Q_LV:CLH", + "37987": "Q_LV:CLH", + "37988": "Q_LV:CLH", + "37989": "Q_LV:CLH", + "37990": "Q_LV:CLH", + "37991": "Q_LV:CLH", + "37992": "Q_LV:CLH", + "37993": "Q_LV:CLH", + "37994": "Q_LV:CLH", + "37995": "Q_LV:CLH", + "37996": "Q_LV:CLH", + "37997": "Q_LV:CLH", + "37998": "Q_LV:CLH", + "37999": "Q_LV:CLH" + }, + "time": { + "0": 0.0, + "1": 0.000990991, + "2": 0.001981982, + "3": 0.002972973, + "4": 0.003963964, + "5": 0.004954955, + "6": 0.0059459459, + "7": 0.0069369369, + "8": 0.0079279279, + "9": 0.0089189189, + "10": 0.0099099099, + "11": 0.0109009009, + "12": 0.0118918919, + "13": 0.0128828829, + "14": 0.0138738739, + "15": 0.0148648649, + "16": 0.0158558559, + "17": 0.0168468468, + "18": 0.0178378378, + "19": 0.0188288288, + "20": 0.0198198198, + "21": 0.0208108108, + "22": 0.0218018018, + "23": 0.0227927928, + "24": 0.0237837838, + "25": 0.0247747748, + "26": 0.0257657658, + "27": 0.0267567568, + "28": 0.0277477477, + "29": 0.0287387387, + "30": 0.0297297297, + "31": 0.0307207207, + "32": 0.0317117117, + "33": 0.0327027027, + "34": 0.0336936937, + "35": 0.0346846847, + "36": 0.0356756757, + "37": 0.0366666667, + "38": 0.0376576577, + "39": 0.0386486486, + "40": 0.0396396396, + "41": 0.0406306306, + "42": 0.0416216216, + "43": 0.0426126126, + "44": 0.0436036036, + "45": 0.0445945946, + "46": 0.0455855856, + "47": 0.0465765766, + "48": 0.0475675676, + "49": 0.0485585586, + "50": 0.0495495495, + "51": 0.0505405405, + "52": 0.0515315315, + "53": 0.0525225225, + "54": 0.0535135135, + "55": 0.0545045045, + "56": 0.0554954955, + "57": 0.0564864865, + "58": 0.0574774775, + "59": 0.0584684685, + "60": 0.0594594595, + "61": 0.0604504505, + "62": 0.0614414414, + "63": 0.0624324324, + "64": 0.0634234234, + "65": 0.0644144144, + "66": 0.0654054054, + "67": 0.0663963964, + "68": 0.0673873874, + "69": 0.0683783784, + "70": 0.0693693694, + "71": 0.0703603604, + "72": 0.0713513514, + "73": 0.0723423423, + "74": 0.0733333333, + "75": 0.0743243243, + "76": 0.0753153153, + "77": 0.0763063063, + "78": 0.0772972973, + "79": 0.0782882883, + "80": 0.0792792793, + "81": 0.0802702703, + "82": 0.0812612613, + "83": 0.0822522523, + "84": 0.0832432432, + "85": 0.0842342342, + "86": 0.0852252252, + "87": 0.0862162162, + "88": 0.0872072072, + "89": 0.0881981982, + "90": 0.0891891892, + "91": 0.0901801802, + "92": 0.0911711712, + "93": 0.0921621622, + "94": 0.0931531532, + "95": 0.0941441441, + "96": 0.0951351351, + "97": 0.0961261261, + "98": 0.0971171171, + "99": 0.0981081081, + "100": 0.0990990991, + "101": 0.1000900901, + "102": 0.1010810811, + "103": 0.1020720721, + "104": 0.1030630631, + "105": 0.1040540541, + "106": 0.105045045, + "107": 0.106036036, + "108": 0.107027027, + "109": 0.108018018, + "110": 0.109009009, + "111": 0.11, + "112": 0.110990991, + "113": 0.111981982, + "114": 0.112972973, + "115": 0.113963964, + "116": 0.114954955, + "117": 0.1159459459, + "118": 0.1169369369, + "119": 0.1179279279, + "120": 0.1189189189, + "121": 0.1199099099, + "122": 0.1209009009, + "123": 0.1218918919, + "124": 0.1228828829, + "125": 0.1238738739, + "126": 0.1248648649, + "127": 0.1258558559, + "128": 0.1268468468, + "129": 0.1278378378, + "130": 0.1288288288, + "131": 0.1298198198, + "132": 0.1308108108, + "133": 0.1318018018, + "134": 0.1327927928, + "135": 0.1337837838, + "136": 0.1347747748, + "137": 0.1357657658, + "138": 0.1367567568, + "139": 0.1377477477, + "140": 0.1387387387, + "141": 0.1397297297, + "142": 0.1407207207, + "143": 0.1417117117, + "144": 0.1427027027, + "145": 0.1436936937, + "146": 0.1446846847, + "147": 0.1456756757, + "148": 0.1466666667, + "149": 0.1476576577, + "150": 0.1486486486, + "151": 0.1496396396, + "152": 0.1506306306, + "153": 0.1516216216, + "154": 0.1526126126, + "155": 0.1536036036, + "156": 0.1545945946, + "157": 0.1555855856, + "158": 0.1565765766, + "159": 0.1575675676, + "160": 0.1585585586, + "161": 0.1595495495, + "162": 0.1605405405, + "163": 0.1615315315, + "164": 0.1625225225, + "165": 0.1635135135, + "166": 0.1645045045, + "167": 0.1654954955, + "168": 0.1664864865, + "169": 0.1674774775, + "170": 0.1684684685, + "171": 0.1694594595, + "172": 0.1704504505, + "173": 0.1714414414, + "174": 0.1724324324, + "175": 0.1734234234, + "176": 0.1744144144, + "177": 0.1754054054, + "178": 0.1763963964, + "179": 0.1773873874, + "180": 0.1783783784, + "181": 0.1793693694, + "182": 0.1803603604, + "183": 0.1813513514, + "184": 0.1823423423, + "185": 0.1833333333, + "186": 0.1843243243, + "187": 0.1853153153, + "188": 0.1863063063, + "189": 0.1872972973, + "190": 0.1882882883, + "191": 0.1892792793, + "192": 0.1902702703, + "193": 0.1912612613, + "194": 0.1922522523, + "195": 0.1932432432, + "196": 0.1942342342, + "197": 0.1952252252, + "198": 0.1962162162, + "199": 0.1972072072, + "200": 0.1981981982, + "201": 0.1991891892, + "202": 0.2001801802, + "203": 0.2011711712, + "204": 0.2021621622, + "205": 0.2031531532, + "206": 0.2041441441, + "207": 0.2051351351, + "208": 0.2061261261, + "209": 0.2071171171, + "210": 0.2081081081, + "211": 0.2090990991, + "212": 0.2100900901, + "213": 0.2110810811, + "214": 0.2120720721, + "215": 0.2130630631, + "216": 0.2140540541, + "217": 0.215045045, + "218": 0.216036036, + "219": 0.217027027, + "220": 0.218018018, + "221": 0.219009009, + "222": 0.22, + "223": 0.220990991, + "224": 0.221981982, + "225": 0.222972973, + "226": 0.223963964, + "227": 0.224954955, + "228": 0.2259459459, + "229": 0.2269369369, + "230": 0.2279279279, + "231": 0.2289189189, + "232": 0.2299099099, + "233": 0.2309009009, + "234": 0.2318918919, + "235": 0.2328828829, + "236": 0.2338738739, + "237": 0.2348648649, + "238": 0.2358558559, + "239": 0.2368468468, + "240": 0.2378378378, + "241": 0.2388288288, + "242": 0.2398198198, + "243": 0.2408108108, + "244": 0.2418018018, + "245": 0.2427927928, + "246": 0.2437837838, + "247": 0.2447747748, + "248": 0.2457657658, + "249": 0.2467567568, + "250": 0.2477477477, + "251": 0.2487387387, + "252": 0.2497297297, + "253": 0.2507207207, + "254": 0.2517117117, + "255": 0.2527027027, + "256": 0.2536936937, + "257": 0.2546846847, + "258": 0.2556756757, + "259": 0.2566666667, + "260": 0.2576576577, + "261": 0.2586486486, + "262": 0.2596396396, + "263": 0.2606306306, + "264": 0.2616216216, + "265": 0.2626126126, + "266": 0.2636036036, + "267": 0.2645945946, + "268": 0.2655855856, + "269": 0.2665765766, + "270": 0.2675675676, + "271": 0.2685585586, + "272": 0.2695495495, + "273": 0.2705405405, + "274": 0.2715315315, + "275": 0.2725225225, + "276": 0.2735135135, + "277": 0.2745045045, + "278": 0.2754954955, + "279": 0.2764864865, + "280": 0.2774774775, + "281": 0.2784684685, + "282": 0.2794594595, + "283": 0.2804504505, + "284": 0.2814414414, + "285": 0.2824324324, + "286": 0.2834234234, + "287": 0.2844144144, + "288": 0.2854054054, + "289": 0.2863963964, + "290": 0.2873873874, + "291": 0.2883783784, + "292": 0.2893693694, + "293": 0.2903603604, + "294": 0.2913513514, + "295": 0.2923423423, + "296": 0.2933333333, + "297": 0.2943243243, + "298": 0.2953153153, + "299": 0.2963063063, + "300": 0.2972972973, + "301": 0.2982882883, + "302": 0.2992792793, + "303": 0.3002702703, + "304": 0.3012612613, + "305": 0.3022522523, + "306": 0.3032432432, + "307": 0.3042342342, + "308": 0.3052252252, + "309": 0.3062162162, + "310": 0.3072072072, + "311": 0.3081981982, + "312": 0.3091891892, + "313": 0.3101801802, + "314": 0.3111711712, + "315": 0.3121621622, + "316": 0.3131531532, + "317": 0.3141441441, + "318": 0.3151351351, + "319": 0.3161261261, + "320": 0.3171171171, + "321": 0.3181081081, + "322": 0.3190990991, + "323": 0.3200900901, + "324": 0.3210810811, + "325": 0.3220720721, + "326": 0.3230630631, + "327": 0.3240540541, + "328": 0.325045045, + "329": 0.326036036, + "330": 0.327027027, + "331": 0.328018018, + "332": 0.329009009, + "333": 0.33, + "334": 0.330990991, + "335": 0.331981982, + "336": 0.332972973, + "337": 0.333963964, + "338": 0.334954955, + "339": 0.3359459459, + "340": 0.3369369369, + "341": 0.3379279279, + "342": 0.3389189189, + "343": 0.3399099099, + "344": 0.3409009009, + "345": 0.3418918919, + "346": 0.3428828829, + "347": 0.3438738739, + "348": 0.3448648649, + "349": 0.3458558559, + "350": 0.3468468468, + "351": 0.3478378378, + "352": 0.3488288288, + "353": 0.3498198198, + "354": 0.3508108108, + "355": 0.3518018018, + "356": 0.3527927928, + "357": 0.3537837838, + "358": 0.3547747748, + "359": 0.3557657658, + "360": 0.3567567568, + "361": 0.3577477477, + "362": 0.3587387387, + "363": 0.3597297297, + "364": 0.3607207207, + "365": 0.3617117117, + "366": 0.3627027027, + "367": 0.3636936937, + "368": 0.3646846847, + "369": 0.3656756757, + "370": 0.3666666667, + "371": 0.3676576577, + "372": 0.3686486486, + "373": 0.3696396396, + "374": 0.3706306306, + "375": 0.3716216216, + "376": 0.3726126126, + "377": 0.3736036036, + "378": 0.3745945946, + "379": 0.3755855856, + "380": 0.3765765766, + "381": 0.3775675676, + "382": 0.3785585586, + "383": 0.3795495495, + "384": 0.3805405405, + "385": 0.3815315315, + "386": 0.3825225225, + "387": 0.3835135135, + "388": 0.3845045045, + "389": 0.3854954955, + "390": 0.3864864865, + "391": 0.3874774775, + "392": 0.3884684685, + "393": 0.3894594595, + "394": 0.3904504505, + "395": 0.3914414414, + "396": 0.3924324324, + "397": 0.3934234234, + "398": 0.3944144144, + "399": 0.3954054054, + "400": 0.3963963964, + "401": 0.3973873874, + "402": 0.3983783784, + "403": 0.3993693694, + "404": 0.4003603604, + "405": 0.4013513514, + "406": 0.4023423423, + "407": 0.4033333333, + "408": 0.4043243243, + "409": 0.4053153153, + "410": 0.4063063063, + "411": 0.4072972973, + "412": 0.4082882883, + "413": 0.4092792793, + "414": 0.4102702703, + "415": 0.4112612613, + "416": 0.4122522523, + "417": 0.4132432432, + "418": 0.4142342342, + "419": 0.4152252252, + "420": 0.4162162162, + "421": 0.4172072072, + "422": 0.4181981982, + "423": 0.4191891892, + "424": 0.4201801802, + "425": 0.4211711712, + "426": 0.4221621622, + "427": 0.4231531532, + "428": 0.4241441441, + "429": 0.4251351351, + "430": 0.4261261261, + "431": 0.4271171171, + "432": 0.4281081081, + "433": 0.4290990991, + "434": 0.4300900901, + "435": 0.4310810811, + "436": 0.4320720721, + "437": 0.4330630631, + "438": 0.4340540541, + "439": 0.435045045, + "440": 0.436036036, + "441": 0.437027027, + "442": 0.438018018, + "443": 0.439009009, + "444": 0.44, + "445": 0.440990991, + "446": 0.441981982, + "447": 0.442972973, + "448": 0.443963964, + "449": 0.444954955, + "450": 0.4459459459, + "451": 0.4469369369, + "452": 0.4479279279, + "453": 0.4489189189, + "454": 0.4499099099, + "455": 0.4509009009, + "456": 0.4518918919, + "457": 0.4528828829, + "458": 0.4538738739, + "459": 0.4548648649, + "460": 0.4558558559, + "461": 0.4568468468, + "462": 0.4578378378, + "463": 0.4588288288, + "464": 0.4598198198, + "465": 0.4608108108, + "466": 0.4618018018, + "467": 0.4627927928, + "468": 0.4637837838, + "469": 0.4647747748, + "470": 0.4657657658, + "471": 0.4667567568, + "472": 0.4677477477, + "473": 0.4687387387, + "474": 0.4697297297, + "475": 0.4707207207, + "476": 0.4717117117, + "477": 0.4727027027, + "478": 0.4736936937, + "479": 0.4746846847, + "480": 0.4756756757, + "481": 0.4766666667, + "482": 0.4776576577, + "483": 0.4786486486, + "484": 0.4796396396, + "485": 0.4806306306, + "486": 0.4816216216, + "487": 0.4826126126, + "488": 0.4836036036, + "489": 0.4845945946, + "490": 0.4855855856, + "491": 0.4865765766, + "492": 0.4875675676, + "493": 0.4885585586, + "494": 0.4895495495, + "495": 0.4905405405, + "496": 0.4915315315, + "497": 0.4925225225, + "498": 0.4935135135, + "499": 0.4945045045, + "500": 0.4954954955, + "501": 0.4964864865, + "502": 0.4974774775, + "503": 0.4984684685, + "504": 0.4994594595, + "505": 0.5004504505, + "506": 0.5014414414, + "507": 0.5024324324, + "508": 0.5034234234, + "509": 0.5044144144, + "510": 0.5054054054, + "511": 0.5063963964, + "512": 0.5073873874, + "513": 0.5083783784, + "514": 0.5093693694, + "515": 0.5103603604, + "516": 0.5113513514, + "517": 0.5123423423, + "518": 0.5133333333, + "519": 0.5143243243, + "520": 0.5153153153, + "521": 0.5163063063, + "522": 0.5172972973, + "523": 0.5182882883, + "524": 0.5192792793, + "525": 0.5202702703, + "526": 0.5212612613, + "527": 0.5222522523, + "528": 0.5232432432, + "529": 0.5242342342, + "530": 0.5252252252, + "531": 0.5262162162, + "532": 0.5272072072, + "533": 0.5281981982, + "534": 0.5291891892, + "535": 0.5301801802, + "536": 0.5311711712, + "537": 0.5321621622, + "538": 0.5331531532, + "539": 0.5341441441, + "540": 0.5351351351, + "541": 0.5361261261, + "542": 0.5371171171, + "543": 0.5381081081, + "544": 0.5390990991, + "545": 0.5400900901, + "546": 0.5410810811, + "547": 0.5420720721, + "548": 0.5430630631, + "549": 0.5440540541, + "550": 0.545045045, + "551": 0.546036036, + "552": 0.547027027, + "553": 0.548018018, + "554": 0.549009009, + "555": 0.55, + "556": 0.550990991, + "557": 0.551981982, + "558": 0.552972973, + "559": 0.553963964, + "560": 0.554954955, + "561": 0.5559459459, + "562": 0.5569369369, + "563": 0.5579279279, + "564": 0.5589189189, + "565": 0.5599099099, + "566": 0.5609009009, + "567": 0.5618918919, + "568": 0.5628828829, + "569": 0.5638738739, + "570": 0.5648648649, + "571": 0.5658558559, + "572": 0.5668468468, + "573": 0.5678378378, + "574": 0.5688288288, + "575": 0.5698198198, + "576": 0.5708108108, + "577": 0.5718018018, + "578": 0.5727927928, + "579": 0.5737837838, + "580": 0.5747747748, + "581": 0.5757657658, + "582": 0.5767567568, + "583": 0.5777477477, + "584": 0.5787387387, + "585": 0.5797297297, + "586": 0.5807207207, + "587": 0.5817117117, + "588": 0.5827027027, + "589": 0.5836936937, + "590": 0.5846846847, + "591": 0.5856756757, + "592": 0.5866666667, + "593": 0.5876576577, + "594": 0.5886486486, + "595": 0.5896396396, + "596": 0.5906306306, + "597": 0.5916216216, + "598": 0.5926126126, + "599": 0.5936036036, + "600": 0.5945945946, + "601": 0.5955855856, + "602": 0.5965765766, + "603": 0.5975675676, + "604": 0.5985585586, + "605": 0.5995495495, + "606": 0.6005405405, + "607": 0.6015315315, + "608": 0.6025225225, + "609": 0.6035135135, + "610": 0.6045045045, + "611": 0.6054954955, + "612": 0.6064864865, + "613": 0.6074774775, + "614": 0.6084684685, + "615": 0.6094594595, + "616": 0.6104504505, + "617": 0.6114414414, + "618": 0.6124324324, + "619": 0.6134234234, + "620": 0.6144144144, + "621": 0.6154054054, + "622": 0.6163963964, + "623": 0.6173873874, + "624": 0.6183783784, + "625": 0.6193693694, + "626": 0.6203603604, + "627": 0.6213513514, + "628": 0.6223423423, + "629": 0.6233333333, + "630": 0.6243243243, + "631": 0.6253153153, + "632": 0.6263063063, + "633": 0.6272972973, + "634": 0.6282882883, + "635": 0.6292792793, + "636": 0.6302702703, + "637": 0.6312612613, + "638": 0.6322522523, + "639": 0.6332432432, + "640": 0.6342342342, + "641": 0.6352252252, + "642": 0.6362162162, + "643": 0.6372072072, + "644": 0.6381981982, + "645": 0.6391891892, + "646": 0.6401801802, + "647": 0.6411711712, + "648": 0.6421621622, + "649": 0.6431531532, + "650": 0.6441441441, + "651": 0.6451351351, + "652": 0.6461261261, + "653": 0.6471171171, + "654": 0.6481081081, + "655": 0.6490990991, + "656": 0.6500900901, + "657": 0.6510810811, + "658": 0.6520720721, + "659": 0.6530630631, + "660": 0.6540540541, + "661": 0.655045045, + "662": 0.656036036, + "663": 0.657027027, + "664": 0.658018018, + "665": 0.659009009, + "666": 0.66, + "667": 0.660990991, + "668": 0.661981982, + "669": 0.662972973, + "670": 0.663963964, + "671": 0.664954955, + "672": 0.6659459459, + "673": 0.6669369369, + "674": 0.6679279279, + "675": 0.6689189189, + "676": 0.6699099099, + "677": 0.6709009009, + "678": 0.6718918919, + "679": 0.6728828829, + "680": 0.6738738739, + "681": 0.6748648649, + "682": 0.6758558559, + "683": 0.6768468468, + "684": 0.6778378378, + "685": 0.6788288288, + "686": 0.6798198198, + "687": 0.6808108108, + "688": 0.6818018018, + "689": 0.6827927928, + "690": 0.6837837838, + "691": 0.6847747748, + "692": 0.6857657658, + "693": 0.6867567568, + "694": 0.6877477477, + "695": 0.6887387387, + "696": 0.6897297297, + "697": 0.6907207207, + "698": 0.6917117117, + "699": 0.6927027027, + "700": 0.6936936937, + "701": 0.6946846847, + "702": 0.6956756757, + "703": 0.6966666667, + "704": 0.6976576577, + "705": 0.6986486486, + "706": 0.6996396396, + "707": 0.7006306306, + "708": 0.7016216216, + "709": 0.7026126126, + "710": 0.7036036036, + "711": 0.7045945946, + "712": 0.7055855856, + "713": 0.7065765766, + "714": 0.7075675676, + "715": 0.7085585586, + "716": 0.7095495495, + "717": 0.7105405405, + "718": 0.7115315315, + "719": 0.7125225225, + "720": 0.7135135135, + "721": 0.7145045045, + "722": 0.7154954955, + "723": 0.7164864865, + "724": 0.7174774775, + "725": 0.7184684685, + "726": 0.7194594595, + "727": 0.7204504505, + "728": 0.7214414414, + "729": 0.7224324324, + "730": 0.7234234234, + "731": 0.7244144144, + "732": 0.7254054054, + "733": 0.7263963964, + "734": 0.7273873874, + "735": 0.7283783784, + "736": 0.7293693694, + "737": 0.7303603604, + "738": 0.7313513514, + "739": 0.7323423423, + "740": 0.7333333333, + "741": 0.7343243243, + "742": 0.7353153153, + "743": 0.7363063063, + "744": 0.7372972973, + "745": 0.7382882883, + "746": 0.7392792793, + "747": 0.7402702703, + "748": 0.7412612613, + "749": 0.7422522523, + "750": 0.7432432432, + "751": 0.7442342342, + "752": 0.7452252252, + "753": 0.7462162162, + "754": 0.7472072072, + "755": 0.7481981982, + "756": 0.7491891892, + "757": 0.7501801802, + "758": 0.7511711712, + "759": 0.7521621622, + "760": 0.7531531532, + "761": 0.7541441441, + "762": 0.7551351351, + "763": 0.7561261261, + "764": 0.7571171171, + "765": 0.7581081081, + "766": 0.7590990991, + "767": 0.7600900901, + "768": 0.7610810811, + "769": 0.7620720721, + "770": 0.7630630631, + "771": 0.7640540541, + "772": 0.765045045, + "773": 0.766036036, + "774": 0.767027027, + "775": 0.768018018, + "776": 0.769009009, + "777": 0.77, + "778": 0.770990991, + "779": 0.771981982, + "780": 0.772972973, + "781": 0.773963964, + "782": 0.774954955, + "783": 0.7759459459, + "784": 0.7769369369, + "785": 0.7779279279, + "786": 0.7789189189, + "787": 0.7799099099, + "788": 0.7809009009, + "789": 0.7818918919, + "790": 0.7828828829, + "791": 0.7838738739, + "792": 0.7848648649, + "793": 0.7858558559, + "794": 0.7868468468, + "795": 0.7878378378, + "796": 0.7888288288, + "797": 0.7898198198, + "798": 0.7908108108, + "799": 0.7918018018, + "800": 0.7927927928, + "801": 0.7937837838, + "802": 0.7947747748, + "803": 0.7957657658, + "804": 0.7967567568, + "805": 0.7977477477, + "806": 0.7987387387, + "807": 0.7997297297, + "808": 0.8007207207, + "809": 0.8017117117, + "810": 0.8027027027, + "811": 0.8036936937, + "812": 0.8046846847, + "813": 0.8056756757, + "814": 0.8066666667, + "815": 0.8076576577, + "816": 0.8086486486, + "817": 0.8096396396, + "818": 0.8106306306, + "819": 0.8116216216, + "820": 0.8126126126, + "821": 0.8136036036, + "822": 0.8145945946, + "823": 0.8155855856, + "824": 0.8165765766, + "825": 0.8175675676, + "826": 0.8185585586, + "827": 0.8195495495, + "828": 0.8205405405, + "829": 0.8215315315, + "830": 0.8225225225, + "831": 0.8235135135, + "832": 0.8245045045, + "833": 0.8254954955, + "834": 0.8264864865, + "835": 0.8274774775, + "836": 0.8284684685, + "837": 0.8294594595, + "838": 0.8304504505, + "839": 0.8314414414, + "840": 0.8324324324, + "841": 0.8334234234, + "842": 0.8344144144, + "843": 0.8354054054, + "844": 0.8363963964, + "845": 0.8373873874, + "846": 0.8383783784, + "847": 0.8393693694, + "848": 0.8403603604, + "849": 0.8413513514, + "850": 0.8423423423, + "851": 0.8433333333, + "852": 0.8443243243, + "853": 0.8453153153, + "854": 0.8463063063, + "855": 0.8472972973, + "856": 0.8482882883, + "857": 0.8492792793, + "858": 0.8502702703, + "859": 0.8512612613, + "860": 0.8522522523, + "861": 0.8532432432, + "862": 0.8542342342, + "863": 0.8552252252, + "864": 0.8562162162, + "865": 0.8572072072, + "866": 0.8581981982, + "867": 0.8591891892, + "868": 0.8601801802, + "869": 0.8611711712, + "870": 0.8621621622, + "871": 0.8631531532, + "872": 0.8641441441, + "873": 0.8651351351, + "874": 0.8661261261, + "875": 0.8671171171, + "876": 0.8681081081, + "877": 0.8690990991, + "878": 0.8700900901, + "879": 0.8710810811, + "880": 0.8720720721, + "881": 0.8730630631, + "882": 0.8740540541, + "883": 0.875045045, + "884": 0.876036036, + "885": 0.877027027, + "886": 0.878018018, + "887": 0.879009009, + "888": 0.88, + "889": 0.880990991, + "890": 0.881981982, + "891": 0.882972973, + "892": 0.883963964, + "893": 0.884954955, + "894": 0.8859459459, + "895": 0.8869369369, + "896": 0.8879279279, + "897": 0.8889189189, + "898": 0.8899099099, + "899": 0.8909009009, + "900": 0.8918918919, + "901": 0.8928828829, + "902": 0.8938738739, + "903": 0.8948648649, + "904": 0.8958558559, + "905": 0.8968468468, + "906": 0.8978378378, + "907": 0.8988288288, + "908": 0.8998198198, + "909": 0.9008108108, + "910": 0.9018018018, + "911": 0.9027927928, + "912": 0.9037837838, + "913": 0.9047747748, + "914": 0.9057657658, + "915": 0.9067567568, + "916": 0.9077477477, + "917": 0.9087387387, + "918": 0.9097297297, + "919": 0.9107207207, + "920": 0.9117117117, + "921": 0.9127027027, + "922": 0.9136936937, + "923": 0.9146846847, + "924": 0.9156756757, + "925": 0.9166666667, + "926": 0.9176576577, + "927": 0.9186486486, + "928": 0.9196396396, + "929": 0.9206306306, + "930": 0.9216216216, + "931": 0.9226126126, + "932": 0.9236036036, + "933": 0.9245945946, + "934": 0.9255855856, + "935": 0.9265765766, + "936": 0.9275675676, + "937": 0.9285585586, + "938": 0.9295495495, + "939": 0.9305405405, + "940": 0.9315315315, + "941": 0.9325225225, + "942": 0.9335135135, + "943": 0.9345045045, + "944": 0.9354954955, + "945": 0.9364864865, + "946": 0.9374774775, + "947": 0.9384684685, + "948": 0.9394594595, + "949": 0.9404504505, + "950": 0.9414414414, + "951": 0.9424324324, + "952": 0.9434234234, + "953": 0.9444144144, + "954": 0.9454054054, + "955": 0.9463963964, + "956": 0.9473873874, + "957": 0.9483783784, + "958": 0.9493693694, + "959": 0.9503603604, + "960": 0.9513513514, + "961": 0.9523423423, + "962": 0.9533333333, + "963": 0.9543243243, + "964": 0.9553153153, + "965": 0.9563063063, + "966": 0.9572972973, + "967": 0.9582882883, + "968": 0.9592792793, + "969": 0.9602702703, + "970": 0.9612612613, + "971": 0.9622522523, + "972": 0.9632432432, + "973": 0.9642342342, + "974": 0.9652252252, + "975": 0.9662162162, + "976": 0.9672072072, + "977": 0.9681981982, + "978": 0.9691891892, + "979": 0.9701801802, + "980": 0.9711711712, + "981": 0.9721621622, + "982": 0.9731531532, + "983": 0.9741441441, + "984": 0.9751351351, + "985": 0.9761261261, + "986": 0.9771171171, + "987": 0.9781081081, + "988": 0.9790990991, + "989": 0.9800900901, + "990": 0.9810810811, + "991": 0.9820720721, + "992": 0.9830630631, + "993": 0.9840540541, + "994": 0.985045045, + "995": 0.986036036, + "996": 0.987027027, + "997": 0.988018018, + "998": 0.989009009, + "999": 0.99, + "1000": 0.0, + "1001": 0.000990991, + "1002": 0.001981982, + "1003": 0.002972973, + "1004": 0.003963964, + "1005": 0.004954955, + "1006": 0.0059459459, + "1007": 0.0069369369, + "1008": 0.0079279279, + "1009": 0.0089189189, + "1010": 0.0099099099, + "1011": 0.0109009009, + "1012": 0.0118918919, + "1013": 0.0128828829, + "1014": 0.0138738739, + "1015": 0.0148648649, + "1016": 0.0158558559, + "1017": 0.0168468468, + "1018": 0.0178378378, + "1019": 0.0188288288, + "1020": 0.0198198198, + "1021": 0.0208108108, + "1022": 0.0218018018, + "1023": 0.0227927928, + "1024": 0.0237837838, + "1025": 0.0247747748, + "1026": 0.0257657658, + "1027": 0.0267567568, + "1028": 0.0277477477, + "1029": 0.0287387387, + "1030": 0.0297297297, + "1031": 0.0307207207, + "1032": 0.0317117117, + "1033": 0.0327027027, + "1034": 0.0336936937, + "1035": 0.0346846847, + "1036": 0.0356756757, + "1037": 0.0366666667, + "1038": 0.0376576577, + "1039": 0.0386486486, + "1040": 0.0396396396, + "1041": 0.0406306306, + "1042": 0.0416216216, + "1043": 0.0426126126, + "1044": 0.0436036036, + "1045": 0.0445945946, + "1046": 0.0455855856, + "1047": 0.0465765766, + "1048": 0.0475675676, + "1049": 0.0485585586, + "1050": 0.0495495495, + "1051": 0.0505405405, + "1052": 0.0515315315, + "1053": 0.0525225225, + "1054": 0.0535135135, + "1055": 0.0545045045, + "1056": 0.0554954955, + "1057": 0.0564864865, + "1058": 0.0574774775, + "1059": 0.0584684685, + "1060": 0.0594594595, + "1061": 0.0604504505, + "1062": 0.0614414414, + "1063": 0.0624324324, + "1064": 0.0634234234, + "1065": 0.0644144144, + "1066": 0.0654054054, + "1067": 0.0663963964, + "1068": 0.0673873874, + "1069": 0.0683783784, + "1070": 0.0693693694, + "1071": 0.0703603604, + "1072": 0.0713513514, + "1073": 0.0723423423, + "1074": 0.0733333333, + "1075": 0.0743243243, + "1076": 0.0753153153, + "1077": 0.0763063063, + "1078": 0.0772972973, + "1079": 0.0782882883, + "1080": 0.0792792793, + "1081": 0.0802702703, + "1082": 0.0812612613, + "1083": 0.0822522523, + "1084": 0.0832432432, + "1085": 0.0842342342, + "1086": 0.0852252252, + "1087": 0.0862162162, + "1088": 0.0872072072, + "1089": 0.0881981982, + "1090": 0.0891891892, + "1091": 0.0901801802, + "1092": 0.0911711712, + "1093": 0.0921621622, + "1094": 0.0931531532, + "1095": 0.0941441441, + "1096": 0.0951351351, + "1097": 0.0961261261, + "1098": 0.0971171171, + "1099": 0.0981081081, + "1100": 0.0990990991, + "1101": 0.1000900901, + "1102": 0.1010810811, + "1103": 0.1020720721, + "1104": 0.1030630631, + "1105": 0.1040540541, + "1106": 0.105045045, + "1107": 0.106036036, + "1108": 0.107027027, + "1109": 0.108018018, + "1110": 0.109009009, + "1111": 0.11, + "1112": 0.110990991, + "1113": 0.111981982, + "1114": 0.112972973, + "1115": 0.113963964, + "1116": 0.114954955, + "1117": 0.1159459459, + "1118": 0.1169369369, + "1119": 0.1179279279, + "1120": 0.1189189189, + "1121": 0.1199099099, + "1122": 0.1209009009, + "1123": 0.1218918919, + "1124": 0.1228828829, + "1125": 0.1238738739, + "1126": 0.1248648649, + "1127": 0.1258558559, + "1128": 0.1268468468, + "1129": 0.1278378378, + "1130": 0.1288288288, + "1131": 0.1298198198, + "1132": 0.1308108108, + "1133": 0.1318018018, + "1134": 0.1327927928, + "1135": 0.1337837838, + "1136": 0.1347747748, + "1137": 0.1357657658, + "1138": 0.1367567568, + "1139": 0.1377477477, + "1140": 0.1387387387, + "1141": 0.1397297297, + "1142": 0.1407207207, + "1143": 0.1417117117, + "1144": 0.1427027027, + "1145": 0.1436936937, + "1146": 0.1446846847, + "1147": 0.1456756757, + "1148": 0.1466666667, + "1149": 0.1476576577, + "1150": 0.1486486486, + "1151": 0.1496396396, + "1152": 0.1506306306, + "1153": 0.1516216216, + "1154": 0.1526126126, + "1155": 0.1536036036, + "1156": 0.1545945946, + "1157": 0.1555855856, + "1158": 0.1565765766, + "1159": 0.1575675676, + "1160": 0.1585585586, + "1161": 0.1595495495, + "1162": 0.1605405405, + "1163": 0.1615315315, + "1164": 0.1625225225, + "1165": 0.1635135135, + "1166": 0.1645045045, + "1167": 0.1654954955, + "1168": 0.1664864865, + "1169": 0.1674774775, + "1170": 0.1684684685, + "1171": 0.1694594595, + "1172": 0.1704504505, + "1173": 0.1714414414, + "1174": 0.1724324324, + "1175": 0.1734234234, + "1176": 0.1744144144, + "1177": 0.1754054054, + "1178": 0.1763963964, + "1179": 0.1773873874, + "1180": 0.1783783784, + "1181": 0.1793693694, + "1182": 0.1803603604, + "1183": 0.1813513514, + "1184": 0.1823423423, + "1185": 0.1833333333, + "1186": 0.1843243243, + "1187": 0.1853153153, + "1188": 0.1863063063, + "1189": 0.1872972973, + "1190": 0.1882882883, + "1191": 0.1892792793, + "1192": 0.1902702703, + "1193": 0.1912612613, + "1194": 0.1922522523, + "1195": 0.1932432432, + "1196": 0.1942342342, + "1197": 0.1952252252, + "1198": 0.1962162162, + "1199": 0.1972072072, + "1200": 0.1981981982, + "1201": 0.1991891892, + "1202": 0.2001801802, + "1203": 0.2011711712, + "1204": 0.2021621622, + "1205": 0.2031531532, + "1206": 0.2041441441, + "1207": 0.2051351351, + "1208": 0.2061261261, + "1209": 0.2071171171, + "1210": 0.2081081081, + "1211": 0.2090990991, + "1212": 0.2100900901, + "1213": 0.2110810811, + "1214": 0.2120720721, + "1215": 0.2130630631, + "1216": 0.2140540541, + "1217": 0.215045045, + "1218": 0.216036036, + "1219": 0.217027027, + "1220": 0.218018018, + "1221": 0.219009009, + "1222": 0.22, + "1223": 0.220990991, + "1224": 0.221981982, + "1225": 0.222972973, + "1226": 0.223963964, + "1227": 0.224954955, + "1228": 0.2259459459, + "1229": 0.2269369369, + "1230": 0.2279279279, + "1231": 0.2289189189, + "1232": 0.2299099099, + "1233": 0.2309009009, + "1234": 0.2318918919, + "1235": 0.2328828829, + "1236": 0.2338738739, + "1237": 0.2348648649, + "1238": 0.2358558559, + "1239": 0.2368468468, + "1240": 0.2378378378, + "1241": 0.2388288288, + "1242": 0.2398198198, + "1243": 0.2408108108, + "1244": 0.2418018018, + "1245": 0.2427927928, + "1246": 0.2437837838, + "1247": 0.2447747748, + "1248": 0.2457657658, + "1249": 0.2467567568, + "1250": 0.2477477477, + "1251": 0.2487387387, + "1252": 0.2497297297, + "1253": 0.2507207207, + "1254": 0.2517117117, + "1255": 0.2527027027, + "1256": 0.2536936937, + "1257": 0.2546846847, + "1258": 0.2556756757, + "1259": 0.2566666667, + "1260": 0.2576576577, + "1261": 0.2586486486, + "1262": 0.2596396396, + "1263": 0.2606306306, + "1264": 0.2616216216, + "1265": 0.2626126126, + "1266": 0.2636036036, + "1267": 0.2645945946, + "1268": 0.2655855856, + "1269": 0.2665765766, + "1270": 0.2675675676, + "1271": 0.2685585586, + "1272": 0.2695495495, + "1273": 0.2705405405, + "1274": 0.2715315315, + "1275": 0.2725225225, + "1276": 0.2735135135, + "1277": 0.2745045045, + "1278": 0.2754954955, + "1279": 0.2764864865, + "1280": 0.2774774775, + "1281": 0.2784684685, + "1282": 0.2794594595, + "1283": 0.2804504505, + "1284": 0.2814414414, + "1285": 0.2824324324, + "1286": 0.2834234234, + "1287": 0.2844144144, + "1288": 0.2854054054, + "1289": 0.2863963964, + "1290": 0.2873873874, + "1291": 0.2883783784, + "1292": 0.2893693694, + "1293": 0.2903603604, + "1294": 0.2913513514, + "1295": 0.2923423423, + "1296": 0.2933333333, + "1297": 0.2943243243, + "1298": 0.2953153153, + "1299": 0.2963063063, + "1300": 0.2972972973, + "1301": 0.2982882883, + "1302": 0.2992792793, + "1303": 0.3002702703, + "1304": 0.3012612613, + "1305": 0.3022522523, + "1306": 0.3032432432, + "1307": 0.3042342342, + "1308": 0.3052252252, + "1309": 0.3062162162, + "1310": 0.3072072072, + "1311": 0.3081981982, + "1312": 0.3091891892, + "1313": 0.3101801802, + "1314": 0.3111711712, + "1315": 0.3121621622, + "1316": 0.3131531532, + "1317": 0.3141441441, + "1318": 0.3151351351, + "1319": 0.3161261261, + "1320": 0.3171171171, + "1321": 0.3181081081, + "1322": 0.3190990991, + "1323": 0.3200900901, + "1324": 0.3210810811, + "1325": 0.3220720721, + "1326": 0.3230630631, + "1327": 0.3240540541, + "1328": 0.325045045, + "1329": 0.326036036, + "1330": 0.327027027, + "1331": 0.328018018, + "1332": 0.329009009, + "1333": 0.33, + "1334": 0.330990991, + "1335": 0.331981982, + "1336": 0.332972973, + "1337": 0.333963964, + "1338": 0.334954955, + "1339": 0.3359459459, + "1340": 0.3369369369, + "1341": 0.3379279279, + "1342": 0.3389189189, + "1343": 0.3399099099, + "1344": 0.3409009009, + "1345": 0.3418918919, + "1346": 0.3428828829, + "1347": 0.3438738739, + "1348": 0.3448648649, + "1349": 0.3458558559, + "1350": 0.3468468468, + "1351": 0.3478378378, + "1352": 0.3488288288, + "1353": 0.3498198198, + "1354": 0.3508108108, + "1355": 0.3518018018, + "1356": 0.3527927928, + "1357": 0.3537837838, + "1358": 0.3547747748, + "1359": 0.3557657658, + "1360": 0.3567567568, + "1361": 0.3577477477, + "1362": 0.3587387387, + "1363": 0.3597297297, + "1364": 0.3607207207, + "1365": 0.3617117117, + "1366": 0.3627027027, + "1367": 0.3636936937, + "1368": 0.3646846847, + "1369": 0.3656756757, + "1370": 0.3666666667, + "1371": 0.3676576577, + "1372": 0.3686486486, + "1373": 0.3696396396, + "1374": 0.3706306306, + "1375": 0.3716216216, + "1376": 0.3726126126, + "1377": 0.3736036036, + "1378": 0.3745945946, + "1379": 0.3755855856, + "1380": 0.3765765766, + "1381": 0.3775675676, + "1382": 0.3785585586, + "1383": 0.3795495495, + "1384": 0.3805405405, + "1385": 0.3815315315, + "1386": 0.3825225225, + "1387": 0.3835135135, + "1388": 0.3845045045, + "1389": 0.3854954955, + "1390": 0.3864864865, + "1391": 0.3874774775, + "1392": 0.3884684685, + "1393": 0.3894594595, + "1394": 0.3904504505, + "1395": 0.3914414414, + "1396": 0.3924324324, + "1397": 0.3934234234, + "1398": 0.3944144144, + "1399": 0.3954054054, + "1400": 0.3963963964, + "1401": 0.3973873874, + "1402": 0.3983783784, + "1403": 0.3993693694, + "1404": 0.4003603604, + "1405": 0.4013513514, + "1406": 0.4023423423, + "1407": 0.4033333333, + "1408": 0.4043243243, + "1409": 0.4053153153, + "1410": 0.4063063063, + "1411": 0.4072972973, + "1412": 0.4082882883, + "1413": 0.4092792793, + "1414": 0.4102702703, + "1415": 0.4112612613, + "1416": 0.4122522523, + "1417": 0.4132432432, + "1418": 0.4142342342, + "1419": 0.4152252252, + "1420": 0.4162162162, + "1421": 0.4172072072, + "1422": 0.4181981982, + "1423": 0.4191891892, + "1424": 0.4201801802, + "1425": 0.4211711712, + "1426": 0.4221621622, + "1427": 0.4231531532, + "1428": 0.4241441441, + "1429": 0.4251351351, + "1430": 0.4261261261, + "1431": 0.4271171171, + "1432": 0.4281081081, + "1433": 0.4290990991, + "1434": 0.4300900901, + "1435": 0.4310810811, + "1436": 0.4320720721, + "1437": 0.4330630631, + "1438": 0.4340540541, + "1439": 0.435045045, + "1440": 0.436036036, + "1441": 0.437027027, + "1442": 0.438018018, + "1443": 0.439009009, + "1444": 0.44, + "1445": 0.440990991, + "1446": 0.441981982, + "1447": 0.442972973, + "1448": 0.443963964, + "1449": 0.444954955, + "1450": 0.4459459459, + "1451": 0.4469369369, + "1452": 0.4479279279, + "1453": 0.4489189189, + "1454": 0.4499099099, + "1455": 0.4509009009, + "1456": 0.4518918919, + "1457": 0.4528828829, + "1458": 0.4538738739, + "1459": 0.4548648649, + "1460": 0.4558558559, + "1461": 0.4568468468, + "1462": 0.4578378378, + "1463": 0.4588288288, + "1464": 0.4598198198, + "1465": 0.4608108108, + "1466": 0.4618018018, + "1467": 0.4627927928, + "1468": 0.4637837838, + "1469": 0.4647747748, + "1470": 0.4657657658, + "1471": 0.4667567568, + "1472": 0.4677477477, + "1473": 0.4687387387, + "1474": 0.4697297297, + "1475": 0.4707207207, + "1476": 0.4717117117, + "1477": 0.4727027027, + "1478": 0.4736936937, + "1479": 0.4746846847, + "1480": 0.4756756757, + "1481": 0.4766666667, + "1482": 0.4776576577, + "1483": 0.4786486486, + "1484": 0.4796396396, + "1485": 0.4806306306, + "1486": 0.4816216216, + "1487": 0.4826126126, + "1488": 0.4836036036, + "1489": 0.4845945946, + "1490": 0.4855855856, + "1491": 0.4865765766, + "1492": 0.4875675676, + "1493": 0.4885585586, + "1494": 0.4895495495, + "1495": 0.4905405405, + "1496": 0.4915315315, + "1497": 0.4925225225, + "1498": 0.4935135135, + "1499": 0.4945045045, + "1500": 0.4954954955, + "1501": 0.4964864865, + "1502": 0.4974774775, + "1503": 0.4984684685, + "1504": 0.4994594595, + "1505": 0.5004504505, + "1506": 0.5014414414, + "1507": 0.5024324324, + "1508": 0.5034234234, + "1509": 0.5044144144, + "1510": 0.5054054054, + "1511": 0.5063963964, + "1512": 0.5073873874, + "1513": 0.5083783784, + "1514": 0.5093693694, + "1515": 0.5103603604, + "1516": 0.5113513514, + "1517": 0.5123423423, + "1518": 0.5133333333, + "1519": 0.5143243243, + "1520": 0.5153153153, + "1521": 0.5163063063, + "1522": 0.5172972973, + "1523": 0.5182882883, + "1524": 0.5192792793, + "1525": 0.5202702703, + "1526": 0.5212612613, + "1527": 0.5222522523, + "1528": 0.5232432432, + "1529": 0.5242342342, + "1530": 0.5252252252, + "1531": 0.5262162162, + "1532": 0.5272072072, + "1533": 0.5281981982, + "1534": 0.5291891892, + "1535": 0.5301801802, + "1536": 0.5311711712, + "1537": 0.5321621622, + "1538": 0.5331531532, + "1539": 0.5341441441, + "1540": 0.5351351351, + "1541": 0.5361261261, + "1542": 0.5371171171, + "1543": 0.5381081081, + "1544": 0.5390990991, + "1545": 0.5400900901, + "1546": 0.5410810811, + "1547": 0.5420720721, + "1548": 0.5430630631, + "1549": 0.5440540541, + "1550": 0.545045045, + "1551": 0.546036036, + "1552": 0.547027027, + "1553": 0.548018018, + "1554": 0.549009009, + "1555": 0.55, + "1556": 0.550990991, + "1557": 0.551981982, + "1558": 0.552972973, + "1559": 0.553963964, + "1560": 0.554954955, + "1561": 0.5559459459, + "1562": 0.5569369369, + "1563": 0.5579279279, + "1564": 0.5589189189, + "1565": 0.5599099099, + "1566": 0.5609009009, + "1567": 0.5618918919, + "1568": 0.5628828829, + "1569": 0.5638738739, + "1570": 0.5648648649, + "1571": 0.5658558559, + "1572": 0.5668468468, + "1573": 0.5678378378, + "1574": 0.5688288288, + "1575": 0.5698198198, + "1576": 0.5708108108, + "1577": 0.5718018018, + "1578": 0.5727927928, + "1579": 0.5737837838, + "1580": 0.5747747748, + "1581": 0.5757657658, + "1582": 0.5767567568, + "1583": 0.5777477477, + "1584": 0.5787387387, + "1585": 0.5797297297, + "1586": 0.5807207207, + "1587": 0.5817117117, + "1588": 0.5827027027, + "1589": 0.5836936937, + "1590": 0.5846846847, + "1591": 0.5856756757, + "1592": 0.5866666667, + "1593": 0.5876576577, + "1594": 0.5886486486, + "1595": 0.5896396396, + "1596": 0.5906306306, + "1597": 0.5916216216, + "1598": 0.5926126126, + "1599": 0.5936036036, + "1600": 0.5945945946, + "1601": 0.5955855856, + "1602": 0.5965765766, + "1603": 0.5975675676, + "1604": 0.5985585586, + "1605": 0.5995495495, + "1606": 0.6005405405, + "1607": 0.6015315315, + "1608": 0.6025225225, + "1609": 0.6035135135, + "1610": 0.6045045045, + "1611": 0.6054954955, + "1612": 0.6064864865, + "1613": 0.6074774775, + "1614": 0.6084684685, + "1615": 0.6094594595, + "1616": 0.6104504505, + "1617": 0.6114414414, + "1618": 0.6124324324, + "1619": 0.6134234234, + "1620": 0.6144144144, + "1621": 0.6154054054, + "1622": 0.6163963964, + "1623": 0.6173873874, + "1624": 0.6183783784, + "1625": 0.6193693694, + "1626": 0.6203603604, + "1627": 0.6213513514, + "1628": 0.6223423423, + "1629": 0.6233333333, + "1630": 0.6243243243, + "1631": 0.6253153153, + "1632": 0.6263063063, + "1633": 0.6272972973, + "1634": 0.6282882883, + "1635": 0.6292792793, + "1636": 0.6302702703, + "1637": 0.6312612613, + "1638": 0.6322522523, + "1639": 0.6332432432, + "1640": 0.6342342342, + "1641": 0.6352252252, + "1642": 0.6362162162, + "1643": 0.6372072072, + "1644": 0.6381981982, + "1645": 0.6391891892, + "1646": 0.6401801802, + "1647": 0.6411711712, + "1648": 0.6421621622, + "1649": 0.6431531532, + "1650": 0.6441441441, + "1651": 0.6451351351, + "1652": 0.6461261261, + "1653": 0.6471171171, + "1654": 0.6481081081, + "1655": 0.6490990991, + "1656": 0.6500900901, + "1657": 0.6510810811, + "1658": 0.6520720721, + "1659": 0.6530630631, + "1660": 0.6540540541, + "1661": 0.655045045, + "1662": 0.656036036, + "1663": 0.657027027, + "1664": 0.658018018, + "1665": 0.659009009, + "1666": 0.66, + "1667": 0.660990991, + "1668": 0.661981982, + "1669": 0.662972973, + "1670": 0.663963964, + "1671": 0.664954955, + "1672": 0.6659459459, + "1673": 0.6669369369, + "1674": 0.6679279279, + "1675": 0.6689189189, + "1676": 0.6699099099, + "1677": 0.6709009009, + "1678": 0.6718918919, + "1679": 0.6728828829, + "1680": 0.6738738739, + "1681": 0.6748648649, + "1682": 0.6758558559, + "1683": 0.6768468468, + "1684": 0.6778378378, + "1685": 0.6788288288, + "1686": 0.6798198198, + "1687": 0.6808108108, + "1688": 0.6818018018, + "1689": 0.6827927928, + "1690": 0.6837837838, + "1691": 0.6847747748, + "1692": 0.6857657658, + "1693": 0.6867567568, + "1694": 0.6877477477, + "1695": 0.6887387387, + "1696": 0.6897297297, + "1697": 0.6907207207, + "1698": 0.6917117117, + "1699": 0.6927027027, + "1700": 0.6936936937, + "1701": 0.6946846847, + "1702": 0.6956756757, + "1703": 0.6966666667, + "1704": 0.6976576577, + "1705": 0.6986486486, + "1706": 0.6996396396, + "1707": 0.7006306306, + "1708": 0.7016216216, + "1709": 0.7026126126, + "1710": 0.7036036036, + "1711": 0.7045945946, + "1712": 0.7055855856, + "1713": 0.7065765766, + "1714": 0.7075675676, + "1715": 0.7085585586, + "1716": 0.7095495495, + "1717": 0.7105405405, + "1718": 0.7115315315, + "1719": 0.7125225225, + "1720": 0.7135135135, + "1721": 0.7145045045, + "1722": 0.7154954955, + "1723": 0.7164864865, + "1724": 0.7174774775, + "1725": 0.7184684685, + "1726": 0.7194594595, + "1727": 0.7204504505, + "1728": 0.7214414414, + "1729": 0.7224324324, + "1730": 0.7234234234, + "1731": 0.7244144144, + "1732": 0.7254054054, + "1733": 0.7263963964, + "1734": 0.7273873874, + "1735": 0.7283783784, + "1736": 0.7293693694, + "1737": 0.7303603604, + "1738": 0.7313513514, + "1739": 0.7323423423, + "1740": 0.7333333333, + "1741": 0.7343243243, + "1742": 0.7353153153, + "1743": 0.7363063063, + "1744": 0.7372972973, + "1745": 0.7382882883, + "1746": 0.7392792793, + "1747": 0.7402702703, + "1748": 0.7412612613, + "1749": 0.7422522523, + "1750": 0.7432432432, + "1751": 0.7442342342, + "1752": 0.7452252252, + "1753": 0.7462162162, + "1754": 0.7472072072, + "1755": 0.7481981982, + "1756": 0.7491891892, + "1757": 0.7501801802, + "1758": 0.7511711712, + "1759": 0.7521621622, + "1760": 0.7531531532, + "1761": 0.7541441441, + "1762": 0.7551351351, + "1763": 0.7561261261, + "1764": 0.7571171171, + "1765": 0.7581081081, + "1766": 0.7590990991, + "1767": 0.7600900901, + "1768": 0.7610810811, + "1769": 0.7620720721, + "1770": 0.7630630631, + "1771": 0.7640540541, + "1772": 0.765045045, + "1773": 0.766036036, + "1774": 0.767027027, + "1775": 0.768018018, + "1776": 0.769009009, + "1777": 0.77, + "1778": 0.770990991, + "1779": 0.771981982, + "1780": 0.772972973, + "1781": 0.773963964, + "1782": 0.774954955, + "1783": 0.7759459459, + "1784": 0.7769369369, + "1785": 0.7779279279, + "1786": 0.7789189189, + "1787": 0.7799099099, + "1788": 0.7809009009, + "1789": 0.7818918919, + "1790": 0.7828828829, + "1791": 0.7838738739, + "1792": 0.7848648649, + "1793": 0.7858558559, + "1794": 0.7868468468, + "1795": 0.7878378378, + "1796": 0.7888288288, + "1797": 0.7898198198, + "1798": 0.7908108108, + "1799": 0.7918018018, + "1800": 0.7927927928, + "1801": 0.7937837838, + "1802": 0.7947747748, + "1803": 0.7957657658, + "1804": 0.7967567568, + "1805": 0.7977477477, + "1806": 0.7987387387, + "1807": 0.7997297297, + "1808": 0.8007207207, + "1809": 0.8017117117, + "1810": 0.8027027027, + "1811": 0.8036936937, + "1812": 0.8046846847, + "1813": 0.8056756757, + "1814": 0.8066666667, + "1815": 0.8076576577, + "1816": 0.8086486486, + "1817": 0.8096396396, + "1818": 0.8106306306, + "1819": 0.8116216216, + "1820": 0.8126126126, + "1821": 0.8136036036, + "1822": 0.8145945946, + "1823": 0.8155855856, + "1824": 0.8165765766, + "1825": 0.8175675676, + "1826": 0.8185585586, + "1827": 0.8195495495, + "1828": 0.8205405405, + "1829": 0.8215315315, + "1830": 0.8225225225, + "1831": 0.8235135135, + "1832": 0.8245045045, + "1833": 0.8254954955, + "1834": 0.8264864865, + "1835": 0.8274774775, + "1836": 0.8284684685, + "1837": 0.8294594595, + "1838": 0.8304504505, + "1839": 0.8314414414, + "1840": 0.8324324324, + "1841": 0.8334234234, + "1842": 0.8344144144, + "1843": 0.8354054054, + "1844": 0.8363963964, + "1845": 0.8373873874, + "1846": 0.8383783784, + "1847": 0.8393693694, + "1848": 0.8403603604, + "1849": 0.8413513514, + "1850": 0.8423423423, + "1851": 0.8433333333, + "1852": 0.8443243243, + "1853": 0.8453153153, + "1854": 0.8463063063, + "1855": 0.8472972973, + "1856": 0.8482882883, + "1857": 0.8492792793, + "1858": 0.8502702703, + "1859": 0.8512612613, + "1860": 0.8522522523, + "1861": 0.8532432432, + "1862": 0.8542342342, + "1863": 0.8552252252, + "1864": 0.8562162162, + "1865": 0.8572072072, + "1866": 0.8581981982, + "1867": 0.8591891892, + "1868": 0.8601801802, + "1869": 0.8611711712, + "1870": 0.8621621622, + "1871": 0.8631531532, + "1872": 0.8641441441, + "1873": 0.8651351351, + "1874": 0.8661261261, + "1875": 0.8671171171, + "1876": 0.8681081081, + "1877": 0.8690990991, + "1878": 0.8700900901, + "1879": 0.8710810811, + "1880": 0.8720720721, + "1881": 0.8730630631, + "1882": 0.8740540541, + "1883": 0.875045045, + "1884": 0.876036036, + "1885": 0.877027027, + "1886": 0.878018018, + "1887": 0.879009009, + "1888": 0.88, + "1889": 0.880990991, + "1890": 0.881981982, + "1891": 0.882972973, + "1892": 0.883963964, + "1893": 0.884954955, + "1894": 0.8859459459, + "1895": 0.8869369369, + "1896": 0.8879279279, + "1897": 0.8889189189, + "1898": 0.8899099099, + "1899": 0.8909009009, + "1900": 0.8918918919, + "1901": 0.8928828829, + "1902": 0.8938738739, + "1903": 0.8948648649, + "1904": 0.8958558559, + "1905": 0.8968468468, + "1906": 0.8978378378, + "1907": 0.8988288288, + "1908": 0.8998198198, + "1909": 0.9008108108, + "1910": 0.9018018018, + "1911": 0.9027927928, + "1912": 0.9037837838, + "1913": 0.9047747748, + "1914": 0.9057657658, + "1915": 0.9067567568, + "1916": 0.9077477477, + "1917": 0.9087387387, + "1918": 0.9097297297, + "1919": 0.9107207207, + "1920": 0.9117117117, + "1921": 0.9127027027, + "1922": 0.9136936937, + "1923": 0.9146846847, + "1924": 0.9156756757, + "1925": 0.9166666667, + "1926": 0.9176576577, + "1927": 0.9186486486, + "1928": 0.9196396396, + "1929": 0.9206306306, + "1930": 0.9216216216, + "1931": 0.9226126126, + "1932": 0.9236036036, + "1933": 0.9245945946, + "1934": 0.9255855856, + "1935": 0.9265765766, + "1936": 0.9275675676, + "1937": 0.9285585586, + "1938": 0.9295495495, + "1939": 0.9305405405, + "1940": 0.9315315315, + "1941": 0.9325225225, + "1942": 0.9335135135, + "1943": 0.9345045045, + "1944": 0.9354954955, + "1945": 0.9364864865, + "1946": 0.9374774775, + "1947": 0.9384684685, + "1948": 0.9394594595, + "1949": 0.9404504505, + "1950": 0.9414414414, + "1951": 0.9424324324, + "1952": 0.9434234234, + "1953": 0.9444144144, + "1954": 0.9454054054, + "1955": 0.9463963964, + "1956": 0.9473873874, + "1957": 0.9483783784, + "1958": 0.9493693694, + "1959": 0.9503603604, + "1960": 0.9513513514, + "1961": 0.9523423423, + "1962": 0.9533333333, + "1963": 0.9543243243, + "1964": 0.9553153153, + "1965": 0.9563063063, + "1966": 0.9572972973, + "1967": 0.9582882883, + "1968": 0.9592792793, + "1969": 0.9602702703, + "1970": 0.9612612613, + "1971": 0.9622522523, + "1972": 0.9632432432, + "1973": 0.9642342342, + "1974": 0.9652252252, + "1975": 0.9662162162, + "1976": 0.9672072072, + "1977": 0.9681981982, + "1978": 0.9691891892, + "1979": 0.9701801802, + "1980": 0.9711711712, + "1981": 0.9721621622, + "1982": 0.9731531532, + "1983": 0.9741441441, + "1984": 0.9751351351, + "1985": 0.9761261261, + "1986": 0.9771171171, + "1987": 0.9781081081, + "1988": 0.9790990991, + "1989": 0.9800900901, + "1990": 0.9810810811, + "1991": 0.9820720721, + "1992": 0.9830630631, + "1993": 0.9840540541, + "1994": 0.985045045, + "1995": 0.986036036, + "1996": 0.987027027, + "1997": 0.988018018, + "1998": 0.989009009, + "1999": 0.99, + "2000": 0.0, + "2001": 0.000990991, + "2002": 0.001981982, + "2003": 0.002972973, + "2004": 0.003963964, + "2005": 0.004954955, + "2006": 0.0059459459, + "2007": 0.0069369369, + "2008": 0.0079279279, + "2009": 0.0089189189, + "2010": 0.0099099099, + "2011": 0.0109009009, + "2012": 0.0118918919, + "2013": 0.0128828829, + "2014": 0.0138738739, + "2015": 0.0148648649, + "2016": 0.0158558559, + "2017": 0.0168468468, + "2018": 0.0178378378, + "2019": 0.0188288288, + "2020": 0.0198198198, + "2021": 0.0208108108, + "2022": 0.0218018018, + "2023": 0.0227927928, + "2024": 0.0237837838, + "2025": 0.0247747748, + "2026": 0.0257657658, + "2027": 0.0267567568, + "2028": 0.0277477477, + "2029": 0.0287387387, + "2030": 0.0297297297, + "2031": 0.0307207207, + "2032": 0.0317117117, + "2033": 0.0327027027, + "2034": 0.0336936937, + "2035": 0.0346846847, + "2036": 0.0356756757, + "2037": 0.0366666667, + "2038": 0.0376576577, + "2039": 0.0386486486, + "2040": 0.0396396396, + "2041": 0.0406306306, + "2042": 0.0416216216, + "2043": 0.0426126126, + "2044": 0.0436036036, + "2045": 0.0445945946, + "2046": 0.0455855856, + "2047": 0.0465765766, + "2048": 0.0475675676, + "2049": 0.0485585586, + "2050": 0.0495495495, + "2051": 0.0505405405, + "2052": 0.0515315315, + "2053": 0.0525225225, + "2054": 0.0535135135, + "2055": 0.0545045045, + "2056": 0.0554954955, + "2057": 0.0564864865, + "2058": 0.0574774775, + "2059": 0.0584684685, + "2060": 0.0594594595, + "2061": 0.0604504505, + "2062": 0.0614414414, + "2063": 0.0624324324, + "2064": 0.0634234234, + "2065": 0.0644144144, + "2066": 0.0654054054, + "2067": 0.0663963964, + "2068": 0.0673873874, + "2069": 0.0683783784, + "2070": 0.0693693694, + "2071": 0.0703603604, + "2072": 0.0713513514, + "2073": 0.0723423423, + "2074": 0.0733333333, + "2075": 0.0743243243, + "2076": 0.0753153153, + "2077": 0.0763063063, + "2078": 0.0772972973, + "2079": 0.0782882883, + "2080": 0.0792792793, + "2081": 0.0802702703, + "2082": 0.0812612613, + "2083": 0.0822522523, + "2084": 0.0832432432, + "2085": 0.0842342342, + "2086": 0.0852252252, + "2087": 0.0862162162, + "2088": 0.0872072072, + "2089": 0.0881981982, + "2090": 0.0891891892, + "2091": 0.0901801802, + "2092": 0.0911711712, + "2093": 0.0921621622, + "2094": 0.0931531532, + "2095": 0.0941441441, + "2096": 0.0951351351, + "2097": 0.0961261261, + "2098": 0.0971171171, + "2099": 0.0981081081, + "2100": 0.0990990991, + "2101": 0.1000900901, + "2102": 0.1010810811, + "2103": 0.1020720721, + "2104": 0.1030630631, + "2105": 0.1040540541, + "2106": 0.105045045, + "2107": 0.106036036, + "2108": 0.107027027, + "2109": 0.108018018, + "2110": 0.109009009, + "2111": 0.11, + "2112": 0.110990991, + "2113": 0.111981982, + "2114": 0.112972973, + "2115": 0.113963964, + "2116": 0.114954955, + "2117": 0.1159459459, + "2118": 0.1169369369, + "2119": 0.1179279279, + "2120": 0.1189189189, + "2121": 0.1199099099, + "2122": 0.1209009009, + "2123": 0.1218918919, + "2124": 0.1228828829, + "2125": 0.1238738739, + "2126": 0.1248648649, + "2127": 0.1258558559, + "2128": 0.1268468468, + "2129": 0.1278378378, + "2130": 0.1288288288, + "2131": 0.1298198198, + "2132": 0.1308108108, + "2133": 0.1318018018, + "2134": 0.1327927928, + "2135": 0.1337837838, + "2136": 0.1347747748, + "2137": 0.1357657658, + "2138": 0.1367567568, + "2139": 0.1377477477, + "2140": 0.1387387387, + "2141": 0.1397297297, + "2142": 0.1407207207, + "2143": 0.1417117117, + "2144": 0.1427027027, + "2145": 0.1436936937, + "2146": 0.1446846847, + "2147": 0.1456756757, + "2148": 0.1466666667, + "2149": 0.1476576577, + "2150": 0.1486486486, + "2151": 0.1496396396, + "2152": 0.1506306306, + "2153": 0.1516216216, + "2154": 0.1526126126, + "2155": 0.1536036036, + "2156": 0.1545945946, + "2157": 0.1555855856, + "2158": 0.1565765766, + "2159": 0.1575675676, + "2160": 0.1585585586, + "2161": 0.1595495495, + "2162": 0.1605405405, + "2163": 0.1615315315, + "2164": 0.1625225225, + "2165": 0.1635135135, + "2166": 0.1645045045, + "2167": 0.1654954955, + "2168": 0.1664864865, + "2169": 0.1674774775, + "2170": 0.1684684685, + "2171": 0.1694594595, + "2172": 0.1704504505, + "2173": 0.1714414414, + "2174": 0.1724324324, + "2175": 0.1734234234, + "2176": 0.1744144144, + "2177": 0.1754054054, + "2178": 0.1763963964, + "2179": 0.1773873874, + "2180": 0.1783783784, + "2181": 0.1793693694, + "2182": 0.1803603604, + "2183": 0.1813513514, + "2184": 0.1823423423, + "2185": 0.1833333333, + "2186": 0.1843243243, + "2187": 0.1853153153, + "2188": 0.1863063063, + "2189": 0.1872972973, + "2190": 0.1882882883, + "2191": 0.1892792793, + "2192": 0.1902702703, + "2193": 0.1912612613, + "2194": 0.1922522523, + "2195": 0.1932432432, + "2196": 0.1942342342, + "2197": 0.1952252252, + "2198": 0.1962162162, + "2199": 0.1972072072, + "2200": 0.1981981982, + "2201": 0.1991891892, + "2202": 0.2001801802, + "2203": 0.2011711712, + "2204": 0.2021621622, + "2205": 0.2031531532, + "2206": 0.2041441441, + "2207": 0.2051351351, + "2208": 0.2061261261, + "2209": 0.2071171171, + "2210": 0.2081081081, + "2211": 0.2090990991, + "2212": 0.2100900901, + "2213": 0.2110810811, + "2214": 0.2120720721, + "2215": 0.2130630631, + "2216": 0.2140540541, + "2217": 0.215045045, + "2218": 0.216036036, + "2219": 0.217027027, + "2220": 0.218018018, + "2221": 0.219009009, + "2222": 0.22, + "2223": 0.220990991, + "2224": 0.221981982, + "2225": 0.222972973, + "2226": 0.223963964, + "2227": 0.224954955, + "2228": 0.2259459459, + "2229": 0.2269369369, + "2230": 0.2279279279, + "2231": 0.2289189189, + "2232": 0.2299099099, + "2233": 0.2309009009, + "2234": 0.2318918919, + "2235": 0.2328828829, + "2236": 0.2338738739, + "2237": 0.2348648649, + "2238": 0.2358558559, + "2239": 0.2368468468, + "2240": 0.2378378378, + "2241": 0.2388288288, + "2242": 0.2398198198, + "2243": 0.2408108108, + "2244": 0.2418018018, + "2245": 0.2427927928, + "2246": 0.2437837838, + "2247": 0.2447747748, + "2248": 0.2457657658, + "2249": 0.2467567568, + "2250": 0.2477477477, + "2251": 0.2487387387, + "2252": 0.2497297297, + "2253": 0.2507207207, + "2254": 0.2517117117, + "2255": 0.2527027027, + "2256": 0.2536936937, + "2257": 0.2546846847, + "2258": 0.2556756757, + "2259": 0.2566666667, + "2260": 0.2576576577, + "2261": 0.2586486486, + "2262": 0.2596396396, + "2263": 0.2606306306, + "2264": 0.2616216216, + "2265": 0.2626126126, + "2266": 0.2636036036, + "2267": 0.2645945946, + "2268": 0.2655855856, + "2269": 0.2665765766, + "2270": 0.2675675676, + "2271": 0.2685585586, + "2272": 0.2695495495, + "2273": 0.2705405405, + "2274": 0.2715315315, + "2275": 0.2725225225, + "2276": 0.2735135135, + "2277": 0.2745045045, + "2278": 0.2754954955, + "2279": 0.2764864865, + "2280": 0.2774774775, + "2281": 0.2784684685, + "2282": 0.2794594595, + "2283": 0.2804504505, + "2284": 0.2814414414, + "2285": 0.2824324324, + "2286": 0.2834234234, + "2287": 0.2844144144, + "2288": 0.2854054054, + "2289": 0.2863963964, + "2290": 0.2873873874, + "2291": 0.2883783784, + "2292": 0.2893693694, + "2293": 0.2903603604, + "2294": 0.2913513514, + "2295": 0.2923423423, + "2296": 0.2933333333, + "2297": 0.2943243243, + "2298": 0.2953153153, + "2299": 0.2963063063, + "2300": 0.2972972973, + "2301": 0.2982882883, + "2302": 0.2992792793, + "2303": 0.3002702703, + "2304": 0.3012612613, + "2305": 0.3022522523, + "2306": 0.3032432432, + "2307": 0.3042342342, + "2308": 0.3052252252, + "2309": 0.3062162162, + "2310": 0.3072072072, + "2311": 0.3081981982, + "2312": 0.3091891892, + "2313": 0.3101801802, + "2314": 0.3111711712, + "2315": 0.3121621622, + "2316": 0.3131531532, + "2317": 0.3141441441, + "2318": 0.3151351351, + "2319": 0.3161261261, + "2320": 0.3171171171, + "2321": 0.3181081081, + "2322": 0.3190990991, + "2323": 0.3200900901, + "2324": 0.3210810811, + "2325": 0.3220720721, + "2326": 0.3230630631, + "2327": 0.3240540541, + "2328": 0.325045045, + "2329": 0.326036036, + "2330": 0.327027027, + "2331": 0.328018018, + "2332": 0.329009009, + "2333": 0.33, + "2334": 0.330990991, + "2335": 0.331981982, + "2336": 0.332972973, + "2337": 0.333963964, + "2338": 0.334954955, + "2339": 0.3359459459, + "2340": 0.3369369369, + "2341": 0.3379279279, + "2342": 0.3389189189, + "2343": 0.3399099099, + "2344": 0.3409009009, + "2345": 0.3418918919, + "2346": 0.3428828829, + "2347": 0.3438738739, + "2348": 0.3448648649, + "2349": 0.3458558559, + "2350": 0.3468468468, + "2351": 0.3478378378, + "2352": 0.3488288288, + "2353": 0.3498198198, + "2354": 0.3508108108, + "2355": 0.3518018018, + "2356": 0.3527927928, + "2357": 0.3537837838, + "2358": 0.3547747748, + "2359": 0.3557657658, + "2360": 0.3567567568, + "2361": 0.3577477477, + "2362": 0.3587387387, + "2363": 0.3597297297, + "2364": 0.3607207207, + "2365": 0.3617117117, + "2366": 0.3627027027, + "2367": 0.3636936937, + "2368": 0.3646846847, + "2369": 0.3656756757, + "2370": 0.3666666667, + "2371": 0.3676576577, + "2372": 0.3686486486, + "2373": 0.3696396396, + "2374": 0.3706306306, + "2375": 0.3716216216, + "2376": 0.3726126126, + "2377": 0.3736036036, + "2378": 0.3745945946, + "2379": 0.3755855856, + "2380": 0.3765765766, + "2381": 0.3775675676, + "2382": 0.3785585586, + "2383": 0.3795495495, + "2384": 0.3805405405, + "2385": 0.3815315315, + "2386": 0.3825225225, + "2387": 0.3835135135, + "2388": 0.3845045045, + "2389": 0.3854954955, + "2390": 0.3864864865, + "2391": 0.3874774775, + "2392": 0.3884684685, + "2393": 0.3894594595, + "2394": 0.3904504505, + "2395": 0.3914414414, + "2396": 0.3924324324, + "2397": 0.3934234234, + "2398": 0.3944144144, + "2399": 0.3954054054, + "2400": 0.3963963964, + "2401": 0.3973873874, + "2402": 0.3983783784, + "2403": 0.3993693694, + "2404": 0.4003603604, + "2405": 0.4013513514, + "2406": 0.4023423423, + "2407": 0.4033333333, + "2408": 0.4043243243, + "2409": 0.4053153153, + "2410": 0.4063063063, + "2411": 0.4072972973, + "2412": 0.4082882883, + "2413": 0.4092792793, + "2414": 0.4102702703, + "2415": 0.4112612613, + "2416": 0.4122522523, + "2417": 0.4132432432, + "2418": 0.4142342342, + "2419": 0.4152252252, + "2420": 0.4162162162, + "2421": 0.4172072072, + "2422": 0.4181981982, + "2423": 0.4191891892, + "2424": 0.4201801802, + "2425": 0.4211711712, + "2426": 0.4221621622, + "2427": 0.4231531532, + "2428": 0.4241441441, + "2429": 0.4251351351, + "2430": 0.4261261261, + "2431": 0.4271171171, + "2432": 0.4281081081, + "2433": 0.4290990991, + "2434": 0.4300900901, + "2435": 0.4310810811, + "2436": 0.4320720721, + "2437": 0.4330630631, + "2438": 0.4340540541, + "2439": 0.435045045, + "2440": 0.436036036, + "2441": 0.437027027, + "2442": 0.438018018, + "2443": 0.439009009, + "2444": 0.44, + "2445": 0.440990991, + "2446": 0.441981982, + "2447": 0.442972973, + "2448": 0.443963964, + "2449": 0.444954955, + "2450": 0.4459459459, + "2451": 0.4469369369, + "2452": 0.4479279279, + "2453": 0.4489189189, + "2454": 0.4499099099, + "2455": 0.4509009009, + "2456": 0.4518918919, + "2457": 0.4528828829, + "2458": 0.4538738739, + "2459": 0.4548648649, + "2460": 0.4558558559, + "2461": 0.4568468468, + "2462": 0.4578378378, + "2463": 0.4588288288, + "2464": 0.4598198198, + "2465": 0.4608108108, + "2466": 0.4618018018, + "2467": 0.4627927928, + "2468": 0.4637837838, + "2469": 0.4647747748, + "2470": 0.4657657658, + "2471": 0.4667567568, + "2472": 0.4677477477, + "2473": 0.4687387387, + "2474": 0.4697297297, + "2475": 0.4707207207, + "2476": 0.4717117117, + "2477": 0.4727027027, + "2478": 0.4736936937, + "2479": 0.4746846847, + "2480": 0.4756756757, + "2481": 0.4766666667, + "2482": 0.4776576577, + "2483": 0.4786486486, + "2484": 0.4796396396, + "2485": 0.4806306306, + "2486": 0.4816216216, + "2487": 0.4826126126, + "2488": 0.4836036036, + "2489": 0.4845945946, + "2490": 0.4855855856, + "2491": 0.4865765766, + "2492": 0.4875675676, + "2493": 0.4885585586, + "2494": 0.4895495495, + "2495": 0.4905405405, + "2496": 0.4915315315, + "2497": 0.4925225225, + "2498": 0.4935135135, + "2499": 0.4945045045, + "2500": 0.4954954955, + "2501": 0.4964864865, + "2502": 0.4974774775, + "2503": 0.4984684685, + "2504": 0.4994594595, + "2505": 0.5004504505, + "2506": 0.5014414414, + "2507": 0.5024324324, + "2508": 0.5034234234, + "2509": 0.5044144144, + "2510": 0.5054054054, + "2511": 0.5063963964, + "2512": 0.5073873874, + "2513": 0.5083783784, + "2514": 0.5093693694, + "2515": 0.5103603604, + "2516": 0.5113513514, + "2517": 0.5123423423, + "2518": 0.5133333333, + "2519": 0.5143243243, + "2520": 0.5153153153, + "2521": 0.5163063063, + "2522": 0.5172972973, + "2523": 0.5182882883, + "2524": 0.5192792793, + "2525": 0.5202702703, + "2526": 0.5212612613, + "2527": 0.5222522523, + "2528": 0.5232432432, + "2529": 0.5242342342, + "2530": 0.5252252252, + "2531": 0.5262162162, + "2532": 0.5272072072, + "2533": 0.5281981982, + "2534": 0.5291891892, + "2535": 0.5301801802, + "2536": 0.5311711712, + "2537": 0.5321621622, + "2538": 0.5331531532, + "2539": 0.5341441441, + "2540": 0.5351351351, + "2541": 0.5361261261, + "2542": 0.5371171171, + "2543": 0.5381081081, + "2544": 0.5390990991, + "2545": 0.5400900901, + "2546": 0.5410810811, + "2547": 0.5420720721, + "2548": 0.5430630631, + "2549": 0.5440540541, + "2550": 0.545045045, + "2551": 0.546036036, + "2552": 0.547027027, + "2553": 0.548018018, + "2554": 0.549009009, + "2555": 0.55, + "2556": 0.550990991, + "2557": 0.551981982, + "2558": 0.552972973, + "2559": 0.553963964, + "2560": 0.554954955, + "2561": 0.5559459459, + "2562": 0.5569369369, + "2563": 0.5579279279, + "2564": 0.5589189189, + "2565": 0.5599099099, + "2566": 0.5609009009, + "2567": 0.5618918919, + "2568": 0.5628828829, + "2569": 0.5638738739, + "2570": 0.5648648649, + "2571": 0.5658558559, + "2572": 0.5668468468, + "2573": 0.5678378378, + "2574": 0.5688288288, + "2575": 0.5698198198, + "2576": 0.5708108108, + "2577": 0.5718018018, + "2578": 0.5727927928, + "2579": 0.5737837838, + "2580": 0.5747747748, + "2581": 0.5757657658, + "2582": 0.5767567568, + "2583": 0.5777477477, + "2584": 0.5787387387, + "2585": 0.5797297297, + "2586": 0.5807207207, + "2587": 0.5817117117, + "2588": 0.5827027027, + "2589": 0.5836936937, + "2590": 0.5846846847, + "2591": 0.5856756757, + "2592": 0.5866666667, + "2593": 0.5876576577, + "2594": 0.5886486486, + "2595": 0.5896396396, + "2596": 0.5906306306, + "2597": 0.5916216216, + "2598": 0.5926126126, + "2599": 0.5936036036, + "2600": 0.5945945946, + "2601": 0.5955855856, + "2602": 0.5965765766, + "2603": 0.5975675676, + "2604": 0.5985585586, + "2605": 0.5995495495, + "2606": 0.6005405405, + "2607": 0.6015315315, + "2608": 0.6025225225, + "2609": 0.6035135135, + "2610": 0.6045045045, + "2611": 0.6054954955, + "2612": 0.6064864865, + "2613": 0.6074774775, + "2614": 0.6084684685, + "2615": 0.6094594595, + "2616": 0.6104504505, + "2617": 0.6114414414, + "2618": 0.6124324324, + "2619": 0.6134234234, + "2620": 0.6144144144, + "2621": 0.6154054054, + "2622": 0.6163963964, + "2623": 0.6173873874, + "2624": 0.6183783784, + "2625": 0.6193693694, + "2626": 0.6203603604, + "2627": 0.6213513514, + "2628": 0.6223423423, + "2629": 0.6233333333, + "2630": 0.6243243243, + "2631": 0.6253153153, + "2632": 0.6263063063, + "2633": 0.6272972973, + "2634": 0.6282882883, + "2635": 0.6292792793, + "2636": 0.6302702703, + "2637": 0.6312612613, + "2638": 0.6322522523, + "2639": 0.6332432432, + "2640": 0.6342342342, + "2641": 0.6352252252, + "2642": 0.6362162162, + "2643": 0.6372072072, + "2644": 0.6381981982, + "2645": 0.6391891892, + "2646": 0.6401801802, + "2647": 0.6411711712, + "2648": 0.6421621622, + "2649": 0.6431531532, + "2650": 0.6441441441, + "2651": 0.6451351351, + "2652": 0.6461261261, + "2653": 0.6471171171, + "2654": 0.6481081081, + "2655": 0.6490990991, + "2656": 0.6500900901, + "2657": 0.6510810811, + "2658": 0.6520720721, + "2659": 0.6530630631, + "2660": 0.6540540541, + "2661": 0.655045045, + "2662": 0.656036036, + "2663": 0.657027027, + "2664": 0.658018018, + "2665": 0.659009009, + "2666": 0.66, + "2667": 0.660990991, + "2668": 0.661981982, + "2669": 0.662972973, + "2670": 0.663963964, + "2671": 0.664954955, + "2672": 0.6659459459, + "2673": 0.6669369369, + "2674": 0.6679279279, + "2675": 0.6689189189, + "2676": 0.6699099099, + "2677": 0.6709009009, + "2678": 0.6718918919, + "2679": 0.6728828829, + "2680": 0.6738738739, + "2681": 0.6748648649, + "2682": 0.6758558559, + "2683": 0.6768468468, + "2684": 0.6778378378, + "2685": 0.6788288288, + "2686": 0.6798198198, + "2687": 0.6808108108, + "2688": 0.6818018018, + "2689": 0.6827927928, + "2690": 0.6837837838, + "2691": 0.6847747748, + "2692": 0.6857657658, + "2693": 0.6867567568, + "2694": 0.6877477477, + "2695": 0.6887387387, + "2696": 0.6897297297, + "2697": 0.6907207207, + "2698": 0.6917117117, + "2699": 0.6927027027, + "2700": 0.6936936937, + "2701": 0.6946846847, + "2702": 0.6956756757, + "2703": 0.6966666667, + "2704": 0.6976576577, + "2705": 0.6986486486, + "2706": 0.6996396396, + "2707": 0.7006306306, + "2708": 0.7016216216, + "2709": 0.7026126126, + "2710": 0.7036036036, + "2711": 0.7045945946, + "2712": 0.7055855856, + "2713": 0.7065765766, + "2714": 0.7075675676, + "2715": 0.7085585586, + "2716": 0.7095495495, + "2717": 0.7105405405, + "2718": 0.7115315315, + "2719": 0.7125225225, + "2720": 0.7135135135, + "2721": 0.7145045045, + "2722": 0.7154954955, + "2723": 0.7164864865, + "2724": 0.7174774775, + "2725": 0.7184684685, + "2726": 0.7194594595, + "2727": 0.7204504505, + "2728": 0.7214414414, + "2729": 0.7224324324, + "2730": 0.7234234234, + "2731": 0.7244144144, + "2732": 0.7254054054, + "2733": 0.7263963964, + "2734": 0.7273873874, + "2735": 0.7283783784, + "2736": 0.7293693694, + "2737": 0.7303603604, + "2738": 0.7313513514, + "2739": 0.7323423423, + "2740": 0.7333333333, + "2741": 0.7343243243, + "2742": 0.7353153153, + "2743": 0.7363063063, + "2744": 0.7372972973, + "2745": 0.7382882883, + "2746": 0.7392792793, + "2747": 0.7402702703, + "2748": 0.7412612613, + "2749": 0.7422522523, + "2750": 0.7432432432, + "2751": 0.7442342342, + "2752": 0.7452252252, + "2753": 0.7462162162, + "2754": 0.7472072072, + "2755": 0.7481981982, + "2756": 0.7491891892, + "2757": 0.7501801802, + "2758": 0.7511711712, + "2759": 0.7521621622, + "2760": 0.7531531532, + "2761": 0.7541441441, + "2762": 0.7551351351, + "2763": 0.7561261261, + "2764": 0.7571171171, + "2765": 0.7581081081, + "2766": 0.7590990991, + "2767": 0.7600900901, + "2768": 0.7610810811, + "2769": 0.7620720721, + "2770": 0.7630630631, + "2771": 0.7640540541, + "2772": 0.765045045, + "2773": 0.766036036, + "2774": 0.767027027, + "2775": 0.768018018, + "2776": 0.769009009, + "2777": 0.77, + "2778": 0.770990991, + "2779": 0.771981982, + "2780": 0.772972973, + "2781": 0.773963964, + "2782": 0.774954955, + "2783": 0.7759459459, + "2784": 0.7769369369, + "2785": 0.7779279279, + "2786": 0.7789189189, + "2787": 0.7799099099, + "2788": 0.7809009009, + "2789": 0.7818918919, + "2790": 0.7828828829, + "2791": 0.7838738739, + "2792": 0.7848648649, + "2793": 0.7858558559, + "2794": 0.7868468468, + "2795": 0.7878378378, + "2796": 0.7888288288, + "2797": 0.7898198198, + "2798": 0.7908108108, + "2799": 0.7918018018, + "2800": 0.7927927928, + "2801": 0.7937837838, + "2802": 0.7947747748, + "2803": 0.7957657658, + "2804": 0.7967567568, + "2805": 0.7977477477, + "2806": 0.7987387387, + "2807": 0.7997297297, + "2808": 0.8007207207, + "2809": 0.8017117117, + "2810": 0.8027027027, + "2811": 0.8036936937, + "2812": 0.8046846847, + "2813": 0.8056756757, + "2814": 0.8066666667, + "2815": 0.8076576577, + "2816": 0.8086486486, + "2817": 0.8096396396, + "2818": 0.8106306306, + "2819": 0.8116216216, + "2820": 0.8126126126, + "2821": 0.8136036036, + "2822": 0.8145945946, + "2823": 0.8155855856, + "2824": 0.8165765766, + "2825": 0.8175675676, + "2826": 0.8185585586, + "2827": 0.8195495495, + "2828": 0.8205405405, + "2829": 0.8215315315, + "2830": 0.8225225225, + "2831": 0.8235135135, + "2832": 0.8245045045, + "2833": 0.8254954955, + "2834": 0.8264864865, + "2835": 0.8274774775, + "2836": 0.8284684685, + "2837": 0.8294594595, + "2838": 0.8304504505, + "2839": 0.8314414414, + "2840": 0.8324324324, + "2841": 0.8334234234, + "2842": 0.8344144144, + "2843": 0.8354054054, + "2844": 0.8363963964, + "2845": 0.8373873874, + "2846": 0.8383783784, + "2847": 0.8393693694, + "2848": 0.8403603604, + "2849": 0.8413513514, + "2850": 0.8423423423, + "2851": 0.8433333333, + "2852": 0.8443243243, + "2853": 0.8453153153, + "2854": 0.8463063063, + "2855": 0.8472972973, + "2856": 0.8482882883, + "2857": 0.8492792793, + "2858": 0.8502702703, + "2859": 0.8512612613, + "2860": 0.8522522523, + "2861": 0.8532432432, + "2862": 0.8542342342, + "2863": 0.8552252252, + "2864": 0.8562162162, + "2865": 0.8572072072, + "2866": 0.8581981982, + "2867": 0.8591891892, + "2868": 0.8601801802, + "2869": 0.8611711712, + "2870": 0.8621621622, + "2871": 0.8631531532, + "2872": 0.8641441441, + "2873": 0.8651351351, + "2874": 0.8661261261, + "2875": 0.8671171171, + "2876": 0.8681081081, + "2877": 0.8690990991, + "2878": 0.8700900901, + "2879": 0.8710810811, + "2880": 0.8720720721, + "2881": 0.8730630631, + "2882": 0.8740540541, + "2883": 0.875045045, + "2884": 0.876036036, + "2885": 0.877027027, + "2886": 0.878018018, + "2887": 0.879009009, + "2888": 0.88, + "2889": 0.880990991, + "2890": 0.881981982, + "2891": 0.882972973, + "2892": 0.883963964, + "2893": 0.884954955, + "2894": 0.8859459459, + "2895": 0.8869369369, + "2896": 0.8879279279, + "2897": 0.8889189189, + "2898": 0.8899099099, + "2899": 0.8909009009, + "2900": 0.8918918919, + "2901": 0.8928828829, + "2902": 0.8938738739, + "2903": 0.8948648649, + "2904": 0.8958558559, + "2905": 0.8968468468, + "2906": 0.8978378378, + "2907": 0.8988288288, + "2908": 0.8998198198, + "2909": 0.9008108108, + "2910": 0.9018018018, + "2911": 0.9027927928, + "2912": 0.9037837838, + "2913": 0.9047747748, + "2914": 0.9057657658, + "2915": 0.9067567568, + "2916": 0.9077477477, + "2917": 0.9087387387, + "2918": 0.9097297297, + "2919": 0.9107207207, + "2920": 0.9117117117, + "2921": 0.9127027027, + "2922": 0.9136936937, + "2923": 0.9146846847, + "2924": 0.9156756757, + "2925": 0.9166666667, + "2926": 0.9176576577, + "2927": 0.9186486486, + "2928": 0.9196396396, + "2929": 0.9206306306, + "2930": 0.9216216216, + "2931": 0.9226126126, + "2932": 0.9236036036, + "2933": 0.9245945946, + "2934": 0.9255855856, + "2935": 0.9265765766, + "2936": 0.9275675676, + "2937": 0.9285585586, + "2938": 0.9295495495, + "2939": 0.9305405405, + "2940": 0.9315315315, + "2941": 0.9325225225, + "2942": 0.9335135135, + "2943": 0.9345045045, + "2944": 0.9354954955, + "2945": 0.9364864865, + "2946": 0.9374774775, + "2947": 0.9384684685, + "2948": 0.9394594595, + "2949": 0.9404504505, + "2950": 0.9414414414, + "2951": 0.9424324324, + "2952": 0.9434234234, + "2953": 0.9444144144, + "2954": 0.9454054054, + "2955": 0.9463963964, + "2956": 0.9473873874, + "2957": 0.9483783784, + "2958": 0.9493693694, + "2959": 0.9503603604, + "2960": 0.9513513514, + "2961": 0.9523423423, + "2962": 0.9533333333, + "2963": 0.9543243243, + "2964": 0.9553153153, + "2965": 0.9563063063, + "2966": 0.9572972973, + "2967": 0.9582882883, + "2968": 0.9592792793, + "2969": 0.9602702703, + "2970": 0.9612612613, + "2971": 0.9622522523, + "2972": 0.9632432432, + "2973": 0.9642342342, + "2974": 0.9652252252, + "2975": 0.9662162162, + "2976": 0.9672072072, + "2977": 0.9681981982, + "2978": 0.9691891892, + "2979": 0.9701801802, + "2980": 0.9711711712, + "2981": 0.9721621622, + "2982": 0.9731531532, + "2983": 0.9741441441, + "2984": 0.9751351351, + "2985": 0.9761261261, + "2986": 0.9771171171, + "2987": 0.9781081081, + "2988": 0.9790990991, + "2989": 0.9800900901, + "2990": 0.9810810811, + "2991": 0.9820720721, + "2992": 0.9830630631, + "2993": 0.9840540541, + "2994": 0.985045045, + "2995": 0.986036036, + "2996": 0.987027027, + "2997": 0.988018018, + "2998": 0.989009009, + "2999": 0.99, + "3000": 0.0, + "3001": 0.000990991, + "3002": 0.001981982, + "3003": 0.002972973, + "3004": 0.003963964, + "3005": 0.004954955, + "3006": 0.0059459459, + "3007": 0.0069369369, + "3008": 0.0079279279, + "3009": 0.0089189189, + "3010": 0.0099099099, + "3011": 0.0109009009, + "3012": 0.0118918919, + "3013": 0.0128828829, + "3014": 0.0138738739, + "3015": 0.0148648649, + "3016": 0.0158558559, + "3017": 0.0168468468, + "3018": 0.0178378378, + "3019": 0.0188288288, + "3020": 0.0198198198, + "3021": 0.0208108108, + "3022": 0.0218018018, + "3023": 0.0227927928, + "3024": 0.0237837838, + "3025": 0.0247747748, + "3026": 0.0257657658, + "3027": 0.0267567568, + "3028": 0.0277477477, + "3029": 0.0287387387, + "3030": 0.0297297297, + "3031": 0.0307207207, + "3032": 0.0317117117, + "3033": 0.0327027027, + "3034": 0.0336936937, + "3035": 0.0346846847, + "3036": 0.0356756757, + "3037": 0.0366666667, + "3038": 0.0376576577, + "3039": 0.0386486486, + "3040": 0.0396396396, + "3041": 0.0406306306, + "3042": 0.0416216216, + "3043": 0.0426126126, + "3044": 0.0436036036, + "3045": 0.0445945946, + "3046": 0.0455855856, + "3047": 0.0465765766, + "3048": 0.0475675676, + "3049": 0.0485585586, + "3050": 0.0495495495, + "3051": 0.0505405405, + "3052": 0.0515315315, + "3053": 0.0525225225, + "3054": 0.0535135135, + "3055": 0.0545045045, + "3056": 0.0554954955, + "3057": 0.0564864865, + "3058": 0.0574774775, + "3059": 0.0584684685, + "3060": 0.0594594595, + "3061": 0.0604504505, + "3062": 0.0614414414, + "3063": 0.0624324324, + "3064": 0.0634234234, + "3065": 0.0644144144, + "3066": 0.0654054054, + "3067": 0.0663963964, + "3068": 0.0673873874, + "3069": 0.0683783784, + "3070": 0.0693693694, + "3071": 0.0703603604, + "3072": 0.0713513514, + "3073": 0.0723423423, + "3074": 0.0733333333, + "3075": 0.0743243243, + "3076": 0.0753153153, + "3077": 0.0763063063, + "3078": 0.0772972973, + "3079": 0.0782882883, + "3080": 0.0792792793, + "3081": 0.0802702703, + "3082": 0.0812612613, + "3083": 0.0822522523, + "3084": 0.0832432432, + "3085": 0.0842342342, + "3086": 0.0852252252, + "3087": 0.0862162162, + "3088": 0.0872072072, + "3089": 0.0881981982, + "3090": 0.0891891892, + "3091": 0.0901801802, + "3092": 0.0911711712, + "3093": 0.0921621622, + "3094": 0.0931531532, + "3095": 0.0941441441, + "3096": 0.0951351351, + "3097": 0.0961261261, + "3098": 0.0971171171, + "3099": 0.0981081081, + "3100": 0.0990990991, + "3101": 0.1000900901, + "3102": 0.1010810811, + "3103": 0.1020720721, + "3104": 0.1030630631, + "3105": 0.1040540541, + "3106": 0.105045045, + "3107": 0.106036036, + "3108": 0.107027027, + "3109": 0.108018018, + "3110": 0.109009009, + "3111": 0.11, + "3112": 0.110990991, + "3113": 0.111981982, + "3114": 0.112972973, + "3115": 0.113963964, + "3116": 0.114954955, + "3117": 0.1159459459, + "3118": 0.1169369369, + "3119": 0.1179279279, + "3120": 0.1189189189, + "3121": 0.1199099099, + "3122": 0.1209009009, + "3123": 0.1218918919, + "3124": 0.1228828829, + "3125": 0.1238738739, + "3126": 0.1248648649, + "3127": 0.1258558559, + "3128": 0.1268468468, + "3129": 0.1278378378, + "3130": 0.1288288288, + "3131": 0.1298198198, + "3132": 0.1308108108, + "3133": 0.1318018018, + "3134": 0.1327927928, + "3135": 0.1337837838, + "3136": 0.1347747748, + "3137": 0.1357657658, + "3138": 0.1367567568, + "3139": 0.1377477477, + "3140": 0.1387387387, + "3141": 0.1397297297, + "3142": 0.1407207207, + "3143": 0.1417117117, + "3144": 0.1427027027, + "3145": 0.1436936937, + "3146": 0.1446846847, + "3147": 0.1456756757, + "3148": 0.1466666667, + "3149": 0.1476576577, + "3150": 0.1486486486, + "3151": 0.1496396396, + "3152": 0.1506306306, + "3153": 0.1516216216, + "3154": 0.1526126126, + "3155": 0.1536036036, + "3156": 0.1545945946, + "3157": 0.1555855856, + "3158": 0.1565765766, + "3159": 0.1575675676, + "3160": 0.1585585586, + "3161": 0.1595495495, + "3162": 0.1605405405, + "3163": 0.1615315315, + "3164": 0.1625225225, + "3165": 0.1635135135, + "3166": 0.1645045045, + "3167": 0.1654954955, + "3168": 0.1664864865, + "3169": 0.1674774775, + "3170": 0.1684684685, + "3171": 0.1694594595, + "3172": 0.1704504505, + "3173": 0.1714414414, + "3174": 0.1724324324, + "3175": 0.1734234234, + "3176": 0.1744144144, + "3177": 0.1754054054, + "3178": 0.1763963964, + "3179": 0.1773873874, + "3180": 0.1783783784, + "3181": 0.1793693694, + "3182": 0.1803603604, + "3183": 0.1813513514, + "3184": 0.1823423423, + "3185": 0.1833333333, + "3186": 0.1843243243, + "3187": 0.1853153153, + "3188": 0.1863063063, + "3189": 0.1872972973, + "3190": 0.1882882883, + "3191": 0.1892792793, + "3192": 0.1902702703, + "3193": 0.1912612613, + "3194": 0.1922522523, + "3195": 0.1932432432, + "3196": 0.1942342342, + "3197": 0.1952252252, + "3198": 0.1962162162, + "3199": 0.1972072072, + "3200": 0.1981981982, + "3201": 0.1991891892, + "3202": 0.2001801802, + "3203": 0.2011711712, + "3204": 0.2021621622, + "3205": 0.2031531532, + "3206": 0.2041441441, + "3207": 0.2051351351, + "3208": 0.2061261261, + "3209": 0.2071171171, + "3210": 0.2081081081, + "3211": 0.2090990991, + "3212": 0.2100900901, + "3213": 0.2110810811, + "3214": 0.2120720721, + "3215": 0.2130630631, + "3216": 0.2140540541, + "3217": 0.215045045, + "3218": 0.216036036, + "3219": 0.217027027, + "3220": 0.218018018, + "3221": 0.219009009, + "3222": 0.22, + "3223": 0.220990991, + "3224": 0.221981982, + "3225": 0.222972973, + "3226": 0.223963964, + "3227": 0.224954955, + "3228": 0.2259459459, + "3229": 0.2269369369, + "3230": 0.2279279279, + "3231": 0.2289189189, + "3232": 0.2299099099, + "3233": 0.2309009009, + "3234": 0.2318918919, + "3235": 0.2328828829, + "3236": 0.2338738739, + "3237": 0.2348648649, + "3238": 0.2358558559, + "3239": 0.2368468468, + "3240": 0.2378378378, + "3241": 0.2388288288, + "3242": 0.2398198198, + "3243": 0.2408108108, + "3244": 0.2418018018, + "3245": 0.2427927928, + "3246": 0.2437837838, + "3247": 0.2447747748, + "3248": 0.2457657658, + "3249": 0.2467567568, + "3250": 0.2477477477, + "3251": 0.2487387387, + "3252": 0.2497297297, + "3253": 0.2507207207, + "3254": 0.2517117117, + "3255": 0.2527027027, + "3256": 0.2536936937, + "3257": 0.2546846847, + "3258": 0.2556756757, + "3259": 0.2566666667, + "3260": 0.2576576577, + "3261": 0.2586486486, + "3262": 0.2596396396, + "3263": 0.2606306306, + "3264": 0.2616216216, + "3265": 0.2626126126, + "3266": 0.2636036036, + "3267": 0.2645945946, + "3268": 0.2655855856, + "3269": 0.2665765766, + "3270": 0.2675675676, + "3271": 0.2685585586, + "3272": 0.2695495495, + "3273": 0.2705405405, + "3274": 0.2715315315, + "3275": 0.2725225225, + "3276": 0.2735135135, + "3277": 0.2745045045, + "3278": 0.2754954955, + "3279": 0.2764864865, + "3280": 0.2774774775, + "3281": 0.2784684685, + "3282": 0.2794594595, + "3283": 0.2804504505, + "3284": 0.2814414414, + "3285": 0.2824324324, + "3286": 0.2834234234, + "3287": 0.2844144144, + "3288": 0.2854054054, + "3289": 0.2863963964, + "3290": 0.2873873874, + "3291": 0.2883783784, + "3292": 0.2893693694, + "3293": 0.2903603604, + "3294": 0.2913513514, + "3295": 0.2923423423, + "3296": 0.2933333333, + "3297": 0.2943243243, + "3298": 0.2953153153, + "3299": 0.2963063063, + "3300": 0.2972972973, + "3301": 0.2982882883, + "3302": 0.2992792793, + "3303": 0.3002702703, + "3304": 0.3012612613, + "3305": 0.3022522523, + "3306": 0.3032432432, + "3307": 0.3042342342, + "3308": 0.3052252252, + "3309": 0.3062162162, + "3310": 0.3072072072, + "3311": 0.3081981982, + "3312": 0.3091891892, + "3313": 0.3101801802, + "3314": 0.3111711712, + "3315": 0.3121621622, + "3316": 0.3131531532, + "3317": 0.3141441441, + "3318": 0.3151351351, + "3319": 0.3161261261, + "3320": 0.3171171171, + "3321": 0.3181081081, + "3322": 0.3190990991, + "3323": 0.3200900901, + "3324": 0.3210810811, + "3325": 0.3220720721, + "3326": 0.3230630631, + "3327": 0.3240540541, + "3328": 0.325045045, + "3329": 0.326036036, + "3330": 0.327027027, + "3331": 0.328018018, + "3332": 0.329009009, + "3333": 0.33, + "3334": 0.330990991, + "3335": 0.331981982, + "3336": 0.332972973, + "3337": 0.333963964, + "3338": 0.334954955, + "3339": 0.3359459459, + "3340": 0.3369369369, + "3341": 0.3379279279, + "3342": 0.3389189189, + "3343": 0.3399099099, + "3344": 0.3409009009, + "3345": 0.3418918919, + "3346": 0.3428828829, + "3347": 0.3438738739, + "3348": 0.3448648649, + "3349": 0.3458558559, + "3350": 0.3468468468, + "3351": 0.3478378378, + "3352": 0.3488288288, + "3353": 0.3498198198, + "3354": 0.3508108108, + "3355": 0.3518018018, + "3356": 0.3527927928, + "3357": 0.3537837838, + "3358": 0.3547747748, + "3359": 0.3557657658, + "3360": 0.3567567568, + "3361": 0.3577477477, + "3362": 0.3587387387, + "3363": 0.3597297297, + "3364": 0.3607207207, + "3365": 0.3617117117, + "3366": 0.3627027027, + "3367": 0.3636936937, + "3368": 0.3646846847, + "3369": 0.3656756757, + "3370": 0.3666666667, + "3371": 0.3676576577, + "3372": 0.3686486486, + "3373": 0.3696396396, + "3374": 0.3706306306, + "3375": 0.3716216216, + "3376": 0.3726126126, + "3377": 0.3736036036, + "3378": 0.3745945946, + "3379": 0.3755855856, + "3380": 0.3765765766, + "3381": 0.3775675676, + "3382": 0.3785585586, + "3383": 0.3795495495, + "3384": 0.3805405405, + "3385": 0.3815315315, + "3386": 0.3825225225, + "3387": 0.3835135135, + "3388": 0.3845045045, + "3389": 0.3854954955, + "3390": 0.3864864865, + "3391": 0.3874774775, + "3392": 0.3884684685, + "3393": 0.3894594595, + "3394": 0.3904504505, + "3395": 0.3914414414, + "3396": 0.3924324324, + "3397": 0.3934234234, + "3398": 0.3944144144, + "3399": 0.3954054054, + "3400": 0.3963963964, + "3401": 0.3973873874, + "3402": 0.3983783784, + "3403": 0.3993693694, + "3404": 0.4003603604, + "3405": 0.4013513514, + "3406": 0.4023423423, + "3407": 0.4033333333, + "3408": 0.4043243243, + "3409": 0.4053153153, + "3410": 0.4063063063, + "3411": 0.4072972973, + "3412": 0.4082882883, + "3413": 0.4092792793, + "3414": 0.4102702703, + "3415": 0.4112612613, + "3416": 0.4122522523, + "3417": 0.4132432432, + "3418": 0.4142342342, + "3419": 0.4152252252, + "3420": 0.4162162162, + "3421": 0.4172072072, + "3422": 0.4181981982, + "3423": 0.4191891892, + "3424": 0.4201801802, + "3425": 0.4211711712, + "3426": 0.4221621622, + "3427": 0.4231531532, + "3428": 0.4241441441, + "3429": 0.4251351351, + "3430": 0.4261261261, + "3431": 0.4271171171, + "3432": 0.4281081081, + "3433": 0.4290990991, + "3434": 0.4300900901, + "3435": 0.4310810811, + "3436": 0.4320720721, + "3437": 0.4330630631, + "3438": 0.4340540541, + "3439": 0.435045045, + "3440": 0.436036036, + "3441": 0.437027027, + "3442": 0.438018018, + "3443": 0.439009009, + "3444": 0.44, + "3445": 0.440990991, + "3446": 0.441981982, + "3447": 0.442972973, + "3448": 0.443963964, + "3449": 0.444954955, + "3450": 0.4459459459, + "3451": 0.4469369369, + "3452": 0.4479279279, + "3453": 0.4489189189, + "3454": 0.4499099099, + "3455": 0.4509009009, + "3456": 0.4518918919, + "3457": 0.4528828829, + "3458": 0.4538738739, + "3459": 0.4548648649, + "3460": 0.4558558559, + "3461": 0.4568468468, + "3462": 0.4578378378, + "3463": 0.4588288288, + "3464": 0.4598198198, + "3465": 0.4608108108, + "3466": 0.4618018018, + "3467": 0.4627927928, + "3468": 0.4637837838, + "3469": 0.4647747748, + "3470": 0.4657657658, + "3471": 0.4667567568, + "3472": 0.4677477477, + "3473": 0.4687387387, + "3474": 0.4697297297, + "3475": 0.4707207207, + "3476": 0.4717117117, + "3477": 0.4727027027, + "3478": 0.4736936937, + "3479": 0.4746846847, + "3480": 0.4756756757, + "3481": 0.4766666667, + "3482": 0.4776576577, + "3483": 0.4786486486, + "3484": 0.4796396396, + "3485": 0.4806306306, + "3486": 0.4816216216, + "3487": 0.4826126126, + "3488": 0.4836036036, + "3489": 0.4845945946, + "3490": 0.4855855856, + "3491": 0.4865765766, + "3492": 0.4875675676, + "3493": 0.4885585586, + "3494": 0.4895495495, + "3495": 0.4905405405, + "3496": 0.4915315315, + "3497": 0.4925225225, + "3498": 0.4935135135, + "3499": 0.4945045045, + "3500": 0.4954954955, + "3501": 0.4964864865, + "3502": 0.4974774775, + "3503": 0.4984684685, + "3504": 0.4994594595, + "3505": 0.5004504505, + "3506": 0.5014414414, + "3507": 0.5024324324, + "3508": 0.5034234234, + "3509": 0.5044144144, + "3510": 0.5054054054, + "3511": 0.5063963964, + "3512": 0.5073873874, + "3513": 0.5083783784, + "3514": 0.5093693694, + "3515": 0.5103603604, + "3516": 0.5113513514, + "3517": 0.5123423423, + "3518": 0.5133333333, + "3519": 0.5143243243, + "3520": 0.5153153153, + "3521": 0.5163063063, + "3522": 0.5172972973, + "3523": 0.5182882883, + "3524": 0.5192792793, + "3525": 0.5202702703, + "3526": 0.5212612613, + "3527": 0.5222522523, + "3528": 0.5232432432, + "3529": 0.5242342342, + "3530": 0.5252252252, + "3531": 0.5262162162, + "3532": 0.5272072072, + "3533": 0.5281981982, + "3534": 0.5291891892, + "3535": 0.5301801802, + "3536": 0.5311711712, + "3537": 0.5321621622, + "3538": 0.5331531532, + "3539": 0.5341441441, + "3540": 0.5351351351, + "3541": 0.5361261261, + "3542": 0.5371171171, + "3543": 0.5381081081, + "3544": 0.5390990991, + "3545": 0.5400900901, + "3546": 0.5410810811, + "3547": 0.5420720721, + "3548": 0.5430630631, + "3549": 0.5440540541, + "3550": 0.545045045, + "3551": 0.546036036, + "3552": 0.547027027, + "3553": 0.548018018, + "3554": 0.549009009, + "3555": 0.55, + "3556": 0.550990991, + "3557": 0.551981982, + "3558": 0.552972973, + "3559": 0.553963964, + "3560": 0.554954955, + "3561": 0.5559459459, + "3562": 0.5569369369, + "3563": 0.5579279279, + "3564": 0.5589189189, + "3565": 0.5599099099, + "3566": 0.5609009009, + "3567": 0.5618918919, + "3568": 0.5628828829, + "3569": 0.5638738739, + "3570": 0.5648648649, + "3571": 0.5658558559, + "3572": 0.5668468468, + "3573": 0.5678378378, + "3574": 0.5688288288, + "3575": 0.5698198198, + "3576": 0.5708108108, + "3577": 0.5718018018, + "3578": 0.5727927928, + "3579": 0.5737837838, + "3580": 0.5747747748, + "3581": 0.5757657658, + "3582": 0.5767567568, + "3583": 0.5777477477, + "3584": 0.5787387387, + "3585": 0.5797297297, + "3586": 0.5807207207, + "3587": 0.5817117117, + "3588": 0.5827027027, + "3589": 0.5836936937, + "3590": 0.5846846847, + "3591": 0.5856756757, + "3592": 0.5866666667, + "3593": 0.5876576577, + "3594": 0.5886486486, + "3595": 0.5896396396, + "3596": 0.5906306306, + "3597": 0.5916216216, + "3598": 0.5926126126, + "3599": 0.5936036036, + "3600": 0.5945945946, + "3601": 0.5955855856, + "3602": 0.5965765766, + "3603": 0.5975675676, + "3604": 0.5985585586, + "3605": 0.5995495495, + "3606": 0.6005405405, + "3607": 0.6015315315, + "3608": 0.6025225225, + "3609": 0.6035135135, + "3610": 0.6045045045, + "3611": 0.6054954955, + "3612": 0.6064864865, + "3613": 0.6074774775, + "3614": 0.6084684685, + "3615": 0.6094594595, + "3616": 0.6104504505, + "3617": 0.6114414414, + "3618": 0.6124324324, + "3619": 0.6134234234, + "3620": 0.6144144144, + "3621": 0.6154054054, + "3622": 0.6163963964, + "3623": 0.6173873874, + "3624": 0.6183783784, + "3625": 0.6193693694, + "3626": 0.6203603604, + "3627": 0.6213513514, + "3628": 0.6223423423, + "3629": 0.6233333333, + "3630": 0.6243243243, + "3631": 0.6253153153, + "3632": 0.6263063063, + "3633": 0.6272972973, + "3634": 0.6282882883, + "3635": 0.6292792793, + "3636": 0.6302702703, + "3637": 0.6312612613, + "3638": 0.6322522523, + "3639": 0.6332432432, + "3640": 0.6342342342, + "3641": 0.6352252252, + "3642": 0.6362162162, + "3643": 0.6372072072, + "3644": 0.6381981982, + "3645": 0.6391891892, + "3646": 0.6401801802, + "3647": 0.6411711712, + "3648": 0.6421621622, + "3649": 0.6431531532, + "3650": 0.6441441441, + "3651": 0.6451351351, + "3652": 0.6461261261, + "3653": 0.6471171171, + "3654": 0.6481081081, + "3655": 0.6490990991, + "3656": 0.6500900901, + "3657": 0.6510810811, + "3658": 0.6520720721, + "3659": 0.6530630631, + "3660": 0.6540540541, + "3661": 0.655045045, + "3662": 0.656036036, + "3663": 0.657027027, + "3664": 0.658018018, + "3665": 0.659009009, + "3666": 0.66, + "3667": 0.660990991, + "3668": 0.661981982, + "3669": 0.662972973, + "3670": 0.663963964, + "3671": 0.664954955, + "3672": 0.6659459459, + "3673": 0.6669369369, + "3674": 0.6679279279, + "3675": 0.6689189189, + "3676": 0.6699099099, + "3677": 0.6709009009, + "3678": 0.6718918919, + "3679": 0.6728828829, + "3680": 0.6738738739, + "3681": 0.6748648649, + "3682": 0.6758558559, + "3683": 0.6768468468, + "3684": 0.6778378378, + "3685": 0.6788288288, + "3686": 0.6798198198, + "3687": 0.6808108108, + "3688": 0.6818018018, + "3689": 0.6827927928, + "3690": 0.6837837838, + "3691": 0.6847747748, + "3692": 0.6857657658, + "3693": 0.6867567568, + "3694": 0.6877477477, + "3695": 0.6887387387, + "3696": 0.6897297297, + "3697": 0.6907207207, + "3698": 0.6917117117, + "3699": 0.6927027027, + "3700": 0.6936936937, + "3701": 0.6946846847, + "3702": 0.6956756757, + "3703": 0.6966666667, + "3704": 0.6976576577, + "3705": 0.6986486486, + "3706": 0.6996396396, + "3707": 0.7006306306, + "3708": 0.7016216216, + "3709": 0.7026126126, + "3710": 0.7036036036, + "3711": 0.7045945946, + "3712": 0.7055855856, + "3713": 0.7065765766, + "3714": 0.7075675676, + "3715": 0.7085585586, + "3716": 0.7095495495, + "3717": 0.7105405405, + "3718": 0.7115315315, + "3719": 0.7125225225, + "3720": 0.7135135135, + "3721": 0.7145045045, + "3722": 0.7154954955, + "3723": 0.7164864865, + "3724": 0.7174774775, + "3725": 0.7184684685, + "3726": 0.7194594595, + "3727": 0.7204504505, + "3728": 0.7214414414, + "3729": 0.7224324324, + "3730": 0.7234234234, + "3731": 0.7244144144, + "3732": 0.7254054054, + "3733": 0.7263963964, + "3734": 0.7273873874, + "3735": 0.7283783784, + "3736": 0.7293693694, + "3737": 0.7303603604, + "3738": 0.7313513514, + "3739": 0.7323423423, + "3740": 0.7333333333, + "3741": 0.7343243243, + "3742": 0.7353153153, + "3743": 0.7363063063, + "3744": 0.7372972973, + "3745": 0.7382882883, + "3746": 0.7392792793, + "3747": 0.7402702703, + "3748": 0.7412612613, + "3749": 0.7422522523, + "3750": 0.7432432432, + "3751": 0.7442342342, + "3752": 0.7452252252, + "3753": 0.7462162162, + "3754": 0.7472072072, + "3755": 0.7481981982, + "3756": 0.7491891892, + "3757": 0.7501801802, + "3758": 0.7511711712, + "3759": 0.7521621622, + "3760": 0.7531531532, + "3761": 0.7541441441, + "3762": 0.7551351351, + "3763": 0.7561261261, + "3764": 0.7571171171, + "3765": 0.7581081081, + "3766": 0.7590990991, + "3767": 0.7600900901, + "3768": 0.7610810811, + "3769": 0.7620720721, + "3770": 0.7630630631, + "3771": 0.7640540541, + "3772": 0.765045045, + "3773": 0.766036036, + "3774": 0.767027027, + "3775": 0.768018018, + "3776": 0.769009009, + "3777": 0.77, + "3778": 0.770990991, + "3779": 0.771981982, + "3780": 0.772972973, + "3781": 0.773963964, + "3782": 0.774954955, + "3783": 0.7759459459, + "3784": 0.7769369369, + "3785": 0.7779279279, + "3786": 0.7789189189, + "3787": 0.7799099099, + "3788": 0.7809009009, + "3789": 0.7818918919, + "3790": 0.7828828829, + "3791": 0.7838738739, + "3792": 0.7848648649, + "3793": 0.7858558559, + "3794": 0.7868468468, + "3795": 0.7878378378, + "3796": 0.7888288288, + "3797": 0.7898198198, + "3798": 0.7908108108, + "3799": 0.7918018018, + "3800": 0.7927927928, + "3801": 0.7937837838, + "3802": 0.7947747748, + "3803": 0.7957657658, + "3804": 0.7967567568, + "3805": 0.7977477477, + "3806": 0.7987387387, + "3807": 0.7997297297, + "3808": 0.8007207207, + "3809": 0.8017117117, + "3810": 0.8027027027, + "3811": 0.8036936937, + "3812": 0.8046846847, + "3813": 0.8056756757, + "3814": 0.8066666667, + "3815": 0.8076576577, + "3816": 0.8086486486, + "3817": 0.8096396396, + "3818": 0.8106306306, + "3819": 0.8116216216, + "3820": 0.8126126126, + "3821": 0.8136036036, + "3822": 0.8145945946, + "3823": 0.8155855856, + "3824": 0.8165765766, + "3825": 0.8175675676, + "3826": 0.8185585586, + "3827": 0.8195495495, + "3828": 0.8205405405, + "3829": 0.8215315315, + "3830": 0.8225225225, + "3831": 0.8235135135, + "3832": 0.8245045045, + "3833": 0.8254954955, + "3834": 0.8264864865, + "3835": 0.8274774775, + "3836": 0.8284684685, + "3837": 0.8294594595, + "3838": 0.8304504505, + "3839": 0.8314414414, + "3840": 0.8324324324, + "3841": 0.8334234234, + "3842": 0.8344144144, + "3843": 0.8354054054, + "3844": 0.8363963964, + "3845": 0.8373873874, + "3846": 0.8383783784, + "3847": 0.8393693694, + "3848": 0.8403603604, + "3849": 0.8413513514, + "3850": 0.8423423423, + "3851": 0.8433333333, + "3852": 0.8443243243, + "3853": 0.8453153153, + "3854": 0.8463063063, + "3855": 0.8472972973, + "3856": 0.8482882883, + "3857": 0.8492792793, + "3858": 0.8502702703, + "3859": 0.8512612613, + "3860": 0.8522522523, + "3861": 0.8532432432, + "3862": 0.8542342342, + "3863": 0.8552252252, + "3864": 0.8562162162, + "3865": 0.8572072072, + "3866": 0.8581981982, + "3867": 0.8591891892, + "3868": 0.8601801802, + "3869": 0.8611711712, + "3870": 0.8621621622, + "3871": 0.8631531532, + "3872": 0.8641441441, + "3873": 0.8651351351, + "3874": 0.8661261261, + "3875": 0.8671171171, + "3876": 0.8681081081, + "3877": 0.8690990991, + "3878": 0.8700900901, + "3879": 0.8710810811, + "3880": 0.8720720721, + "3881": 0.8730630631, + "3882": 0.8740540541, + "3883": 0.875045045, + "3884": 0.876036036, + "3885": 0.877027027, + "3886": 0.878018018, + "3887": 0.879009009, + "3888": 0.88, + "3889": 0.880990991, + "3890": 0.881981982, + "3891": 0.882972973, + "3892": 0.883963964, + "3893": 0.884954955, + "3894": 0.8859459459, + "3895": 0.8869369369, + "3896": 0.8879279279, + "3897": 0.8889189189, + "3898": 0.8899099099, + "3899": 0.8909009009, + "3900": 0.8918918919, + "3901": 0.8928828829, + "3902": 0.8938738739, + "3903": 0.8948648649, + "3904": 0.8958558559, + "3905": 0.8968468468, + "3906": 0.8978378378, + "3907": 0.8988288288, + "3908": 0.8998198198, + "3909": 0.9008108108, + "3910": 0.9018018018, + "3911": 0.9027927928, + "3912": 0.9037837838, + "3913": 0.9047747748, + "3914": 0.9057657658, + "3915": 0.9067567568, + "3916": 0.9077477477, + "3917": 0.9087387387, + "3918": 0.9097297297, + "3919": 0.9107207207, + "3920": 0.9117117117, + "3921": 0.9127027027, + "3922": 0.9136936937, + "3923": 0.9146846847, + "3924": 0.9156756757, + "3925": 0.9166666667, + "3926": 0.9176576577, + "3927": 0.9186486486, + "3928": 0.9196396396, + "3929": 0.9206306306, + "3930": 0.9216216216, + "3931": 0.9226126126, + "3932": 0.9236036036, + "3933": 0.9245945946, + "3934": 0.9255855856, + "3935": 0.9265765766, + "3936": 0.9275675676, + "3937": 0.9285585586, + "3938": 0.9295495495, + "3939": 0.9305405405, + "3940": 0.9315315315, + "3941": 0.9325225225, + "3942": 0.9335135135, + "3943": 0.9345045045, + "3944": 0.9354954955, + "3945": 0.9364864865, + "3946": 0.9374774775, + "3947": 0.9384684685, + "3948": 0.9394594595, + "3949": 0.9404504505, + "3950": 0.9414414414, + "3951": 0.9424324324, + "3952": 0.9434234234, + "3953": 0.9444144144, + "3954": 0.9454054054, + "3955": 0.9463963964, + "3956": 0.9473873874, + "3957": 0.9483783784, + "3958": 0.9493693694, + "3959": 0.9503603604, + "3960": 0.9513513514, + "3961": 0.9523423423, + "3962": 0.9533333333, + "3963": 0.9543243243, + "3964": 0.9553153153, + "3965": 0.9563063063, + "3966": 0.9572972973, + "3967": 0.9582882883, + "3968": 0.9592792793, + "3969": 0.9602702703, + "3970": 0.9612612613, + "3971": 0.9622522523, + "3972": 0.9632432432, + "3973": 0.9642342342, + "3974": 0.9652252252, + "3975": 0.9662162162, + "3976": 0.9672072072, + "3977": 0.9681981982, + "3978": 0.9691891892, + "3979": 0.9701801802, + "3980": 0.9711711712, + "3981": 0.9721621622, + "3982": 0.9731531532, + "3983": 0.9741441441, + "3984": 0.9751351351, + "3985": 0.9761261261, + "3986": 0.9771171171, + "3987": 0.9781081081, + "3988": 0.9790990991, + "3989": 0.9800900901, + "3990": 0.9810810811, + "3991": 0.9820720721, + "3992": 0.9830630631, + "3993": 0.9840540541, + "3994": 0.985045045, + "3995": 0.986036036, + "3996": 0.987027027, + "3997": 0.988018018, + "3998": 0.989009009, + "3999": 0.99, + "4000": 0.0, + "4001": 0.000990991, + "4002": 0.001981982, + "4003": 0.002972973, + "4004": 0.003963964, + "4005": 0.004954955, + "4006": 0.0059459459, + "4007": 0.0069369369, + "4008": 0.0079279279, + "4009": 0.0089189189, + "4010": 0.0099099099, + "4011": 0.0109009009, + "4012": 0.0118918919, + "4013": 0.0128828829, + "4014": 0.0138738739, + "4015": 0.0148648649, + "4016": 0.0158558559, + "4017": 0.0168468468, + "4018": 0.0178378378, + "4019": 0.0188288288, + "4020": 0.0198198198, + "4021": 0.0208108108, + "4022": 0.0218018018, + "4023": 0.0227927928, + "4024": 0.0237837838, + "4025": 0.0247747748, + "4026": 0.0257657658, + "4027": 0.0267567568, + "4028": 0.0277477477, + "4029": 0.0287387387, + "4030": 0.0297297297, + "4031": 0.0307207207, + "4032": 0.0317117117, + "4033": 0.0327027027, + "4034": 0.0336936937, + "4035": 0.0346846847, + "4036": 0.0356756757, + "4037": 0.0366666667, + "4038": 0.0376576577, + "4039": 0.0386486486, + "4040": 0.0396396396, + "4041": 0.0406306306, + "4042": 0.0416216216, + "4043": 0.0426126126, + "4044": 0.0436036036, + "4045": 0.0445945946, + "4046": 0.0455855856, + "4047": 0.0465765766, + "4048": 0.0475675676, + "4049": 0.0485585586, + "4050": 0.0495495495, + "4051": 0.0505405405, + "4052": 0.0515315315, + "4053": 0.0525225225, + "4054": 0.0535135135, + "4055": 0.0545045045, + "4056": 0.0554954955, + "4057": 0.0564864865, + "4058": 0.0574774775, + "4059": 0.0584684685, + "4060": 0.0594594595, + "4061": 0.0604504505, + "4062": 0.0614414414, + "4063": 0.0624324324, + "4064": 0.0634234234, + "4065": 0.0644144144, + "4066": 0.0654054054, + "4067": 0.0663963964, + "4068": 0.0673873874, + "4069": 0.0683783784, + "4070": 0.0693693694, + "4071": 0.0703603604, + "4072": 0.0713513514, + "4073": 0.0723423423, + "4074": 0.0733333333, + "4075": 0.0743243243, + "4076": 0.0753153153, + "4077": 0.0763063063, + "4078": 0.0772972973, + "4079": 0.0782882883, + "4080": 0.0792792793, + "4081": 0.0802702703, + "4082": 0.0812612613, + "4083": 0.0822522523, + "4084": 0.0832432432, + "4085": 0.0842342342, + "4086": 0.0852252252, + "4087": 0.0862162162, + "4088": 0.0872072072, + "4089": 0.0881981982, + "4090": 0.0891891892, + "4091": 0.0901801802, + "4092": 0.0911711712, + "4093": 0.0921621622, + "4094": 0.0931531532, + "4095": 0.0941441441, + "4096": 0.0951351351, + "4097": 0.0961261261, + "4098": 0.0971171171, + "4099": 0.0981081081, + "4100": 0.0990990991, + "4101": 0.1000900901, + "4102": 0.1010810811, + "4103": 0.1020720721, + "4104": 0.1030630631, + "4105": 0.1040540541, + "4106": 0.105045045, + "4107": 0.106036036, + "4108": 0.107027027, + "4109": 0.108018018, + "4110": 0.109009009, + "4111": 0.11, + "4112": 0.110990991, + "4113": 0.111981982, + "4114": 0.112972973, + "4115": 0.113963964, + "4116": 0.114954955, + "4117": 0.1159459459, + "4118": 0.1169369369, + "4119": 0.1179279279, + "4120": 0.1189189189, + "4121": 0.1199099099, + "4122": 0.1209009009, + "4123": 0.1218918919, + "4124": 0.1228828829, + "4125": 0.1238738739, + "4126": 0.1248648649, + "4127": 0.1258558559, + "4128": 0.1268468468, + "4129": 0.1278378378, + "4130": 0.1288288288, + "4131": 0.1298198198, + "4132": 0.1308108108, + "4133": 0.1318018018, + "4134": 0.1327927928, + "4135": 0.1337837838, + "4136": 0.1347747748, + "4137": 0.1357657658, + "4138": 0.1367567568, + "4139": 0.1377477477, + "4140": 0.1387387387, + "4141": 0.1397297297, + "4142": 0.1407207207, + "4143": 0.1417117117, + "4144": 0.1427027027, + "4145": 0.1436936937, + "4146": 0.1446846847, + "4147": 0.1456756757, + "4148": 0.1466666667, + "4149": 0.1476576577, + "4150": 0.1486486486, + "4151": 0.1496396396, + "4152": 0.1506306306, + "4153": 0.1516216216, + "4154": 0.1526126126, + "4155": 0.1536036036, + "4156": 0.1545945946, + "4157": 0.1555855856, + "4158": 0.1565765766, + "4159": 0.1575675676, + "4160": 0.1585585586, + "4161": 0.1595495495, + "4162": 0.1605405405, + "4163": 0.1615315315, + "4164": 0.1625225225, + "4165": 0.1635135135, + "4166": 0.1645045045, + "4167": 0.1654954955, + "4168": 0.1664864865, + "4169": 0.1674774775, + "4170": 0.1684684685, + "4171": 0.1694594595, + "4172": 0.1704504505, + "4173": 0.1714414414, + "4174": 0.1724324324, + "4175": 0.1734234234, + "4176": 0.1744144144, + "4177": 0.1754054054, + "4178": 0.1763963964, + "4179": 0.1773873874, + "4180": 0.1783783784, + "4181": 0.1793693694, + "4182": 0.1803603604, + "4183": 0.1813513514, + "4184": 0.1823423423, + "4185": 0.1833333333, + "4186": 0.1843243243, + "4187": 0.1853153153, + "4188": 0.1863063063, + "4189": 0.1872972973, + "4190": 0.1882882883, + "4191": 0.1892792793, + "4192": 0.1902702703, + "4193": 0.1912612613, + "4194": 0.1922522523, + "4195": 0.1932432432, + "4196": 0.1942342342, + "4197": 0.1952252252, + "4198": 0.1962162162, + "4199": 0.1972072072, + "4200": 0.1981981982, + "4201": 0.1991891892, + "4202": 0.2001801802, + "4203": 0.2011711712, + "4204": 0.2021621622, + "4205": 0.2031531532, + "4206": 0.2041441441, + "4207": 0.2051351351, + "4208": 0.2061261261, + "4209": 0.2071171171, + "4210": 0.2081081081, + "4211": 0.2090990991, + "4212": 0.2100900901, + "4213": 0.2110810811, + "4214": 0.2120720721, + "4215": 0.2130630631, + "4216": 0.2140540541, + "4217": 0.215045045, + "4218": 0.216036036, + "4219": 0.217027027, + "4220": 0.218018018, + "4221": 0.219009009, + "4222": 0.22, + "4223": 0.220990991, + "4224": 0.221981982, + "4225": 0.222972973, + "4226": 0.223963964, + "4227": 0.224954955, + "4228": 0.2259459459, + "4229": 0.2269369369, + "4230": 0.2279279279, + "4231": 0.2289189189, + "4232": 0.2299099099, + "4233": 0.2309009009, + "4234": 0.2318918919, + "4235": 0.2328828829, + "4236": 0.2338738739, + "4237": 0.2348648649, + "4238": 0.2358558559, + "4239": 0.2368468468, + "4240": 0.2378378378, + "4241": 0.2388288288, + "4242": 0.2398198198, + "4243": 0.2408108108, + "4244": 0.2418018018, + "4245": 0.2427927928, + "4246": 0.2437837838, + "4247": 0.2447747748, + "4248": 0.2457657658, + "4249": 0.2467567568, + "4250": 0.2477477477, + "4251": 0.2487387387, + "4252": 0.2497297297, + "4253": 0.2507207207, + "4254": 0.2517117117, + "4255": 0.2527027027, + "4256": 0.2536936937, + "4257": 0.2546846847, + "4258": 0.2556756757, + "4259": 0.2566666667, + "4260": 0.2576576577, + "4261": 0.2586486486, + "4262": 0.2596396396, + "4263": 0.2606306306, + "4264": 0.2616216216, + "4265": 0.2626126126, + "4266": 0.2636036036, + "4267": 0.2645945946, + "4268": 0.2655855856, + "4269": 0.2665765766, + "4270": 0.2675675676, + "4271": 0.2685585586, + "4272": 0.2695495495, + "4273": 0.2705405405, + "4274": 0.2715315315, + "4275": 0.2725225225, + "4276": 0.2735135135, + "4277": 0.2745045045, + "4278": 0.2754954955, + "4279": 0.2764864865, + "4280": 0.2774774775, + "4281": 0.2784684685, + "4282": 0.2794594595, + "4283": 0.2804504505, + "4284": 0.2814414414, + "4285": 0.2824324324, + "4286": 0.2834234234, + "4287": 0.2844144144, + "4288": 0.2854054054, + "4289": 0.2863963964, + "4290": 0.2873873874, + "4291": 0.2883783784, + "4292": 0.2893693694, + "4293": 0.2903603604, + "4294": 0.2913513514, + "4295": 0.2923423423, + "4296": 0.2933333333, + "4297": 0.2943243243, + "4298": 0.2953153153, + "4299": 0.2963063063, + "4300": 0.2972972973, + "4301": 0.2982882883, + "4302": 0.2992792793, + "4303": 0.3002702703, + "4304": 0.3012612613, + "4305": 0.3022522523, + "4306": 0.3032432432, + "4307": 0.3042342342, + "4308": 0.3052252252, + "4309": 0.3062162162, + "4310": 0.3072072072, + "4311": 0.3081981982, + "4312": 0.3091891892, + "4313": 0.3101801802, + "4314": 0.3111711712, + "4315": 0.3121621622, + "4316": 0.3131531532, + "4317": 0.3141441441, + "4318": 0.3151351351, + "4319": 0.3161261261, + "4320": 0.3171171171, + "4321": 0.3181081081, + "4322": 0.3190990991, + "4323": 0.3200900901, + "4324": 0.3210810811, + "4325": 0.3220720721, + "4326": 0.3230630631, + "4327": 0.3240540541, + "4328": 0.325045045, + "4329": 0.326036036, + "4330": 0.327027027, + "4331": 0.328018018, + "4332": 0.329009009, + "4333": 0.33, + "4334": 0.330990991, + "4335": 0.331981982, + "4336": 0.332972973, + "4337": 0.333963964, + "4338": 0.334954955, + "4339": 0.3359459459, + "4340": 0.3369369369, + "4341": 0.3379279279, + "4342": 0.3389189189, + "4343": 0.3399099099, + "4344": 0.3409009009, + "4345": 0.3418918919, + "4346": 0.3428828829, + "4347": 0.3438738739, + "4348": 0.3448648649, + "4349": 0.3458558559, + "4350": 0.3468468468, + "4351": 0.3478378378, + "4352": 0.3488288288, + "4353": 0.3498198198, + "4354": 0.3508108108, + "4355": 0.3518018018, + "4356": 0.3527927928, + "4357": 0.3537837838, + "4358": 0.3547747748, + "4359": 0.3557657658, + "4360": 0.3567567568, + "4361": 0.3577477477, + "4362": 0.3587387387, + "4363": 0.3597297297, + "4364": 0.3607207207, + "4365": 0.3617117117, + "4366": 0.3627027027, + "4367": 0.3636936937, + "4368": 0.3646846847, + "4369": 0.3656756757, + "4370": 0.3666666667, + "4371": 0.3676576577, + "4372": 0.3686486486, + "4373": 0.3696396396, + "4374": 0.3706306306, + "4375": 0.3716216216, + "4376": 0.3726126126, + "4377": 0.3736036036, + "4378": 0.3745945946, + "4379": 0.3755855856, + "4380": 0.3765765766, + "4381": 0.3775675676, + "4382": 0.3785585586, + "4383": 0.3795495495, + "4384": 0.3805405405, + "4385": 0.3815315315, + "4386": 0.3825225225, + "4387": 0.3835135135, + "4388": 0.3845045045, + "4389": 0.3854954955, + "4390": 0.3864864865, + "4391": 0.3874774775, + "4392": 0.3884684685, + "4393": 0.3894594595, + "4394": 0.3904504505, + "4395": 0.3914414414, + "4396": 0.3924324324, + "4397": 0.3934234234, + "4398": 0.3944144144, + "4399": 0.3954054054, + "4400": 0.3963963964, + "4401": 0.3973873874, + "4402": 0.3983783784, + "4403": 0.3993693694, + "4404": 0.4003603604, + "4405": 0.4013513514, + "4406": 0.4023423423, + "4407": 0.4033333333, + "4408": 0.4043243243, + "4409": 0.4053153153, + "4410": 0.4063063063, + "4411": 0.4072972973, + "4412": 0.4082882883, + "4413": 0.4092792793, + "4414": 0.4102702703, + "4415": 0.4112612613, + "4416": 0.4122522523, + "4417": 0.4132432432, + "4418": 0.4142342342, + "4419": 0.4152252252, + "4420": 0.4162162162, + "4421": 0.4172072072, + "4422": 0.4181981982, + "4423": 0.4191891892, + "4424": 0.4201801802, + "4425": 0.4211711712, + "4426": 0.4221621622, + "4427": 0.4231531532, + "4428": 0.4241441441, + "4429": 0.4251351351, + "4430": 0.4261261261, + "4431": 0.4271171171, + "4432": 0.4281081081, + "4433": 0.4290990991, + "4434": 0.4300900901, + "4435": 0.4310810811, + "4436": 0.4320720721, + "4437": 0.4330630631, + "4438": 0.4340540541, + "4439": 0.435045045, + "4440": 0.436036036, + "4441": 0.437027027, + "4442": 0.438018018, + "4443": 0.439009009, + "4444": 0.44, + "4445": 0.440990991, + "4446": 0.441981982, + "4447": 0.442972973, + "4448": 0.443963964, + "4449": 0.444954955, + "4450": 0.4459459459, + "4451": 0.4469369369, + "4452": 0.4479279279, + "4453": 0.4489189189, + "4454": 0.4499099099, + "4455": 0.4509009009, + "4456": 0.4518918919, + "4457": 0.4528828829, + "4458": 0.4538738739, + "4459": 0.4548648649, + "4460": 0.4558558559, + "4461": 0.4568468468, + "4462": 0.4578378378, + "4463": 0.4588288288, + "4464": 0.4598198198, + "4465": 0.4608108108, + "4466": 0.4618018018, + "4467": 0.4627927928, + "4468": 0.4637837838, + "4469": 0.4647747748, + "4470": 0.4657657658, + "4471": 0.4667567568, + "4472": 0.4677477477, + "4473": 0.4687387387, + "4474": 0.4697297297, + "4475": 0.4707207207, + "4476": 0.4717117117, + "4477": 0.4727027027, + "4478": 0.4736936937, + "4479": 0.4746846847, + "4480": 0.4756756757, + "4481": 0.4766666667, + "4482": 0.4776576577, + "4483": 0.4786486486, + "4484": 0.4796396396, + "4485": 0.4806306306, + "4486": 0.4816216216, + "4487": 0.4826126126, + "4488": 0.4836036036, + "4489": 0.4845945946, + "4490": 0.4855855856, + "4491": 0.4865765766, + "4492": 0.4875675676, + "4493": 0.4885585586, + "4494": 0.4895495495, + "4495": 0.4905405405, + "4496": 0.4915315315, + "4497": 0.4925225225, + "4498": 0.4935135135, + "4499": 0.4945045045, + "4500": 0.4954954955, + "4501": 0.4964864865, + "4502": 0.4974774775, + "4503": 0.4984684685, + "4504": 0.4994594595, + "4505": 0.5004504505, + "4506": 0.5014414414, + "4507": 0.5024324324, + "4508": 0.5034234234, + "4509": 0.5044144144, + "4510": 0.5054054054, + "4511": 0.5063963964, + "4512": 0.5073873874, + "4513": 0.5083783784, + "4514": 0.5093693694, + "4515": 0.5103603604, + "4516": 0.5113513514, + "4517": 0.5123423423, + "4518": 0.5133333333, + "4519": 0.5143243243, + "4520": 0.5153153153, + "4521": 0.5163063063, + "4522": 0.5172972973, + "4523": 0.5182882883, + "4524": 0.5192792793, + "4525": 0.5202702703, + "4526": 0.5212612613, + "4527": 0.5222522523, + "4528": 0.5232432432, + "4529": 0.5242342342, + "4530": 0.5252252252, + "4531": 0.5262162162, + "4532": 0.5272072072, + "4533": 0.5281981982, + "4534": 0.5291891892, + "4535": 0.5301801802, + "4536": 0.5311711712, + "4537": 0.5321621622, + "4538": 0.5331531532, + "4539": 0.5341441441, + "4540": 0.5351351351, + "4541": 0.5361261261, + "4542": 0.5371171171, + "4543": 0.5381081081, + "4544": 0.5390990991, + "4545": 0.5400900901, + "4546": 0.5410810811, + "4547": 0.5420720721, + "4548": 0.5430630631, + "4549": 0.5440540541, + "4550": 0.545045045, + "4551": 0.546036036, + "4552": 0.547027027, + "4553": 0.548018018, + "4554": 0.549009009, + "4555": 0.55, + "4556": 0.550990991, + "4557": 0.551981982, + "4558": 0.552972973, + "4559": 0.553963964, + "4560": 0.554954955, + "4561": 0.5559459459, + "4562": 0.5569369369, + "4563": 0.5579279279, + "4564": 0.5589189189, + "4565": 0.5599099099, + "4566": 0.5609009009, + "4567": 0.5618918919, + "4568": 0.5628828829, + "4569": 0.5638738739, + "4570": 0.5648648649, + "4571": 0.5658558559, + "4572": 0.5668468468, + "4573": 0.5678378378, + "4574": 0.5688288288, + "4575": 0.5698198198, + "4576": 0.5708108108, + "4577": 0.5718018018, + "4578": 0.5727927928, + "4579": 0.5737837838, + "4580": 0.5747747748, + "4581": 0.5757657658, + "4582": 0.5767567568, + "4583": 0.5777477477, + "4584": 0.5787387387, + "4585": 0.5797297297, + "4586": 0.5807207207, + "4587": 0.5817117117, + "4588": 0.5827027027, + "4589": 0.5836936937, + "4590": 0.5846846847, + "4591": 0.5856756757, + "4592": 0.5866666667, + "4593": 0.5876576577, + "4594": 0.5886486486, + "4595": 0.5896396396, + "4596": 0.5906306306, + "4597": 0.5916216216, + "4598": 0.5926126126, + "4599": 0.5936036036, + "4600": 0.5945945946, + "4601": 0.5955855856, + "4602": 0.5965765766, + "4603": 0.5975675676, + "4604": 0.5985585586, + "4605": 0.5995495495, + "4606": 0.6005405405, + "4607": 0.6015315315, + "4608": 0.6025225225, + "4609": 0.6035135135, + "4610": 0.6045045045, + "4611": 0.6054954955, + "4612": 0.6064864865, + "4613": 0.6074774775, + "4614": 0.6084684685, + "4615": 0.6094594595, + "4616": 0.6104504505, + "4617": 0.6114414414, + "4618": 0.6124324324, + "4619": 0.6134234234, + "4620": 0.6144144144, + "4621": 0.6154054054, + "4622": 0.6163963964, + "4623": 0.6173873874, + "4624": 0.6183783784, + "4625": 0.6193693694, + "4626": 0.6203603604, + "4627": 0.6213513514, + "4628": 0.6223423423, + "4629": 0.6233333333, + "4630": 0.6243243243, + "4631": 0.6253153153, + "4632": 0.6263063063, + "4633": 0.6272972973, + "4634": 0.6282882883, + "4635": 0.6292792793, + "4636": 0.6302702703, + "4637": 0.6312612613, + "4638": 0.6322522523, + "4639": 0.6332432432, + "4640": 0.6342342342, + "4641": 0.6352252252, + "4642": 0.6362162162, + "4643": 0.6372072072, + "4644": 0.6381981982, + "4645": 0.6391891892, + "4646": 0.6401801802, + "4647": 0.6411711712, + "4648": 0.6421621622, + "4649": 0.6431531532, + "4650": 0.6441441441, + "4651": 0.6451351351, + "4652": 0.6461261261, + "4653": 0.6471171171, + "4654": 0.6481081081, + "4655": 0.6490990991, + "4656": 0.6500900901, + "4657": 0.6510810811, + "4658": 0.6520720721, + "4659": 0.6530630631, + "4660": 0.6540540541, + "4661": 0.655045045, + "4662": 0.656036036, + "4663": 0.657027027, + "4664": 0.658018018, + "4665": 0.659009009, + "4666": 0.66, + "4667": 0.660990991, + "4668": 0.661981982, + "4669": 0.662972973, + "4670": 0.663963964, + "4671": 0.664954955, + "4672": 0.6659459459, + "4673": 0.6669369369, + "4674": 0.6679279279, + "4675": 0.6689189189, + "4676": 0.6699099099, + "4677": 0.6709009009, + "4678": 0.6718918919, + "4679": 0.6728828829, + "4680": 0.6738738739, + "4681": 0.6748648649, + "4682": 0.6758558559, + "4683": 0.6768468468, + "4684": 0.6778378378, + "4685": 0.6788288288, + "4686": 0.6798198198, + "4687": 0.6808108108, + "4688": 0.6818018018, + "4689": 0.6827927928, + "4690": 0.6837837838, + "4691": 0.6847747748, + "4692": 0.6857657658, + "4693": 0.6867567568, + "4694": 0.6877477477, + "4695": 0.6887387387, + "4696": 0.6897297297, + "4697": 0.6907207207, + "4698": 0.6917117117, + "4699": 0.6927027027, + "4700": 0.6936936937, + "4701": 0.6946846847, + "4702": 0.6956756757, + "4703": 0.6966666667, + "4704": 0.6976576577, + "4705": 0.6986486486, + "4706": 0.6996396396, + "4707": 0.7006306306, + "4708": 0.7016216216, + "4709": 0.7026126126, + "4710": 0.7036036036, + "4711": 0.7045945946, + "4712": 0.7055855856, + "4713": 0.7065765766, + "4714": 0.7075675676, + "4715": 0.7085585586, + "4716": 0.7095495495, + "4717": 0.7105405405, + "4718": 0.7115315315, + "4719": 0.7125225225, + "4720": 0.7135135135, + "4721": 0.7145045045, + "4722": 0.7154954955, + "4723": 0.7164864865, + "4724": 0.7174774775, + "4725": 0.7184684685, + "4726": 0.7194594595, + "4727": 0.7204504505, + "4728": 0.7214414414, + "4729": 0.7224324324, + "4730": 0.7234234234, + "4731": 0.7244144144, + "4732": 0.7254054054, + "4733": 0.7263963964, + "4734": 0.7273873874, + "4735": 0.7283783784, + "4736": 0.7293693694, + "4737": 0.7303603604, + "4738": 0.7313513514, + "4739": 0.7323423423, + "4740": 0.7333333333, + "4741": 0.7343243243, + "4742": 0.7353153153, + "4743": 0.7363063063, + "4744": 0.7372972973, + "4745": 0.7382882883, + "4746": 0.7392792793, + "4747": 0.7402702703, + "4748": 0.7412612613, + "4749": 0.7422522523, + "4750": 0.7432432432, + "4751": 0.7442342342, + "4752": 0.7452252252, + "4753": 0.7462162162, + "4754": 0.7472072072, + "4755": 0.7481981982, + "4756": 0.7491891892, + "4757": 0.7501801802, + "4758": 0.7511711712, + "4759": 0.7521621622, + "4760": 0.7531531532, + "4761": 0.7541441441, + "4762": 0.7551351351, + "4763": 0.7561261261, + "4764": 0.7571171171, + "4765": 0.7581081081, + "4766": 0.7590990991, + "4767": 0.7600900901, + "4768": 0.7610810811, + "4769": 0.7620720721, + "4770": 0.7630630631, + "4771": 0.7640540541, + "4772": 0.765045045, + "4773": 0.766036036, + "4774": 0.767027027, + "4775": 0.768018018, + "4776": 0.769009009, + "4777": 0.77, + "4778": 0.770990991, + "4779": 0.771981982, + "4780": 0.772972973, + "4781": 0.773963964, + "4782": 0.774954955, + "4783": 0.7759459459, + "4784": 0.7769369369, + "4785": 0.7779279279, + "4786": 0.7789189189, + "4787": 0.7799099099, + "4788": 0.7809009009, + "4789": 0.7818918919, + "4790": 0.7828828829, + "4791": 0.7838738739, + "4792": 0.7848648649, + "4793": 0.7858558559, + "4794": 0.7868468468, + "4795": 0.7878378378, + "4796": 0.7888288288, + "4797": 0.7898198198, + "4798": 0.7908108108, + "4799": 0.7918018018, + "4800": 0.7927927928, + "4801": 0.7937837838, + "4802": 0.7947747748, + "4803": 0.7957657658, + "4804": 0.7967567568, + "4805": 0.7977477477, + "4806": 0.7987387387, + "4807": 0.7997297297, + "4808": 0.8007207207, + "4809": 0.8017117117, + "4810": 0.8027027027, + "4811": 0.8036936937, + "4812": 0.8046846847, + "4813": 0.8056756757, + "4814": 0.8066666667, + "4815": 0.8076576577, + "4816": 0.8086486486, + "4817": 0.8096396396, + "4818": 0.8106306306, + "4819": 0.8116216216, + "4820": 0.8126126126, + "4821": 0.8136036036, + "4822": 0.8145945946, + "4823": 0.8155855856, + "4824": 0.8165765766, + "4825": 0.8175675676, + "4826": 0.8185585586, + "4827": 0.8195495495, + "4828": 0.8205405405, + "4829": 0.8215315315, + "4830": 0.8225225225, + "4831": 0.8235135135, + "4832": 0.8245045045, + "4833": 0.8254954955, + "4834": 0.8264864865, + "4835": 0.8274774775, + "4836": 0.8284684685, + "4837": 0.8294594595, + "4838": 0.8304504505, + "4839": 0.8314414414, + "4840": 0.8324324324, + "4841": 0.8334234234, + "4842": 0.8344144144, + "4843": 0.8354054054, + "4844": 0.8363963964, + "4845": 0.8373873874, + "4846": 0.8383783784, + "4847": 0.8393693694, + "4848": 0.8403603604, + "4849": 0.8413513514, + "4850": 0.8423423423, + "4851": 0.8433333333, + "4852": 0.8443243243, + "4853": 0.8453153153, + "4854": 0.8463063063, + "4855": 0.8472972973, + "4856": 0.8482882883, + "4857": 0.8492792793, + "4858": 0.8502702703, + "4859": 0.8512612613, + "4860": 0.8522522523, + "4861": 0.8532432432, + "4862": 0.8542342342, + "4863": 0.8552252252, + "4864": 0.8562162162, + "4865": 0.8572072072, + "4866": 0.8581981982, + "4867": 0.8591891892, + "4868": 0.8601801802, + "4869": 0.8611711712, + "4870": 0.8621621622, + "4871": 0.8631531532, + "4872": 0.8641441441, + "4873": 0.8651351351, + "4874": 0.8661261261, + "4875": 0.8671171171, + "4876": 0.8681081081, + "4877": 0.8690990991, + "4878": 0.8700900901, + "4879": 0.8710810811, + "4880": 0.8720720721, + "4881": 0.8730630631, + "4882": 0.8740540541, + "4883": 0.875045045, + "4884": 0.876036036, + "4885": 0.877027027, + "4886": 0.878018018, + "4887": 0.879009009, + "4888": 0.88, + "4889": 0.880990991, + "4890": 0.881981982, + "4891": 0.882972973, + "4892": 0.883963964, + "4893": 0.884954955, + "4894": 0.8859459459, + "4895": 0.8869369369, + "4896": 0.8879279279, + "4897": 0.8889189189, + "4898": 0.8899099099, + "4899": 0.8909009009, + "4900": 0.8918918919, + "4901": 0.8928828829, + "4902": 0.8938738739, + "4903": 0.8948648649, + "4904": 0.8958558559, + "4905": 0.8968468468, + "4906": 0.8978378378, + "4907": 0.8988288288, + "4908": 0.8998198198, + "4909": 0.9008108108, + "4910": 0.9018018018, + "4911": 0.9027927928, + "4912": 0.9037837838, + "4913": 0.9047747748, + "4914": 0.9057657658, + "4915": 0.9067567568, + "4916": 0.9077477477, + "4917": 0.9087387387, + "4918": 0.9097297297, + "4919": 0.9107207207, + "4920": 0.9117117117, + "4921": 0.9127027027, + "4922": 0.9136936937, + "4923": 0.9146846847, + "4924": 0.9156756757, + "4925": 0.9166666667, + "4926": 0.9176576577, + "4927": 0.9186486486, + "4928": 0.9196396396, + "4929": 0.9206306306, + "4930": 0.9216216216, + "4931": 0.9226126126, + "4932": 0.9236036036, + "4933": 0.9245945946, + "4934": 0.9255855856, + "4935": 0.9265765766, + "4936": 0.9275675676, + "4937": 0.9285585586, + "4938": 0.9295495495, + "4939": 0.9305405405, + "4940": 0.9315315315, + "4941": 0.9325225225, + "4942": 0.9335135135, + "4943": 0.9345045045, + "4944": 0.9354954955, + "4945": 0.9364864865, + "4946": 0.9374774775, + "4947": 0.9384684685, + "4948": 0.9394594595, + "4949": 0.9404504505, + "4950": 0.9414414414, + "4951": 0.9424324324, + "4952": 0.9434234234, + "4953": 0.9444144144, + "4954": 0.9454054054, + "4955": 0.9463963964, + "4956": 0.9473873874, + "4957": 0.9483783784, + "4958": 0.9493693694, + "4959": 0.9503603604, + "4960": 0.9513513514, + "4961": 0.9523423423, + "4962": 0.9533333333, + "4963": 0.9543243243, + "4964": 0.9553153153, + "4965": 0.9563063063, + "4966": 0.9572972973, + "4967": 0.9582882883, + "4968": 0.9592792793, + "4969": 0.9602702703, + "4970": 0.9612612613, + "4971": 0.9622522523, + "4972": 0.9632432432, + "4973": 0.9642342342, + "4974": 0.9652252252, + "4975": 0.9662162162, + "4976": 0.9672072072, + "4977": 0.9681981982, + "4978": 0.9691891892, + "4979": 0.9701801802, + "4980": 0.9711711712, + "4981": 0.9721621622, + "4982": 0.9731531532, + "4983": 0.9741441441, + "4984": 0.9751351351, + "4985": 0.9761261261, + "4986": 0.9771171171, + "4987": 0.9781081081, + "4988": 0.9790990991, + "4989": 0.9800900901, + "4990": 0.9810810811, + "4991": 0.9820720721, + "4992": 0.9830630631, + "4993": 0.9840540541, + "4994": 0.985045045, + "4995": 0.986036036, + "4996": 0.987027027, + "4997": 0.988018018, + "4998": 0.989009009, + "4999": 0.99, + "5000": 0.0, + "5001": 0.000990991, + "5002": 0.001981982, + "5003": 0.002972973, + "5004": 0.003963964, + "5005": 0.004954955, + "5006": 0.0059459459, + "5007": 0.0069369369, + "5008": 0.0079279279, + "5009": 0.0089189189, + "5010": 0.0099099099, + "5011": 0.0109009009, + "5012": 0.0118918919, + "5013": 0.0128828829, + "5014": 0.0138738739, + "5015": 0.0148648649, + "5016": 0.0158558559, + "5017": 0.0168468468, + "5018": 0.0178378378, + "5019": 0.0188288288, + "5020": 0.0198198198, + "5021": 0.0208108108, + "5022": 0.0218018018, + "5023": 0.0227927928, + "5024": 0.0237837838, + "5025": 0.0247747748, + "5026": 0.0257657658, + "5027": 0.0267567568, + "5028": 0.0277477477, + "5029": 0.0287387387, + "5030": 0.0297297297, + "5031": 0.0307207207, + "5032": 0.0317117117, + "5033": 0.0327027027, + "5034": 0.0336936937, + "5035": 0.0346846847, + "5036": 0.0356756757, + "5037": 0.0366666667, + "5038": 0.0376576577, + "5039": 0.0386486486, + "5040": 0.0396396396, + "5041": 0.0406306306, + "5042": 0.0416216216, + "5043": 0.0426126126, + "5044": 0.0436036036, + "5045": 0.0445945946, + "5046": 0.0455855856, + "5047": 0.0465765766, + "5048": 0.0475675676, + "5049": 0.0485585586, + "5050": 0.0495495495, + "5051": 0.0505405405, + "5052": 0.0515315315, + "5053": 0.0525225225, + "5054": 0.0535135135, + "5055": 0.0545045045, + "5056": 0.0554954955, + "5057": 0.0564864865, + "5058": 0.0574774775, + "5059": 0.0584684685, + "5060": 0.0594594595, + "5061": 0.0604504505, + "5062": 0.0614414414, + "5063": 0.0624324324, + "5064": 0.0634234234, + "5065": 0.0644144144, + "5066": 0.0654054054, + "5067": 0.0663963964, + "5068": 0.0673873874, + "5069": 0.0683783784, + "5070": 0.0693693694, + "5071": 0.0703603604, + "5072": 0.0713513514, + "5073": 0.0723423423, + "5074": 0.0733333333, + "5075": 0.0743243243, + "5076": 0.0753153153, + "5077": 0.0763063063, + "5078": 0.0772972973, + "5079": 0.0782882883, + "5080": 0.0792792793, + "5081": 0.0802702703, + "5082": 0.0812612613, + "5083": 0.0822522523, + "5084": 0.0832432432, + "5085": 0.0842342342, + "5086": 0.0852252252, + "5087": 0.0862162162, + "5088": 0.0872072072, + "5089": 0.0881981982, + "5090": 0.0891891892, + "5091": 0.0901801802, + "5092": 0.0911711712, + "5093": 0.0921621622, + "5094": 0.0931531532, + "5095": 0.0941441441, + "5096": 0.0951351351, + "5097": 0.0961261261, + "5098": 0.0971171171, + "5099": 0.0981081081, + "5100": 0.0990990991, + "5101": 0.1000900901, + "5102": 0.1010810811, + "5103": 0.1020720721, + "5104": 0.1030630631, + "5105": 0.1040540541, + "5106": 0.105045045, + "5107": 0.106036036, + "5108": 0.107027027, + "5109": 0.108018018, + "5110": 0.109009009, + "5111": 0.11, + "5112": 0.110990991, + "5113": 0.111981982, + "5114": 0.112972973, + "5115": 0.113963964, + "5116": 0.114954955, + "5117": 0.1159459459, + "5118": 0.1169369369, + "5119": 0.1179279279, + "5120": 0.1189189189, + "5121": 0.1199099099, + "5122": 0.1209009009, + "5123": 0.1218918919, + "5124": 0.1228828829, + "5125": 0.1238738739, + "5126": 0.1248648649, + "5127": 0.1258558559, + "5128": 0.1268468468, + "5129": 0.1278378378, + "5130": 0.1288288288, + "5131": 0.1298198198, + "5132": 0.1308108108, + "5133": 0.1318018018, + "5134": 0.1327927928, + "5135": 0.1337837838, + "5136": 0.1347747748, + "5137": 0.1357657658, + "5138": 0.1367567568, + "5139": 0.1377477477, + "5140": 0.1387387387, + "5141": 0.1397297297, + "5142": 0.1407207207, + "5143": 0.1417117117, + "5144": 0.1427027027, + "5145": 0.1436936937, + "5146": 0.1446846847, + "5147": 0.1456756757, + "5148": 0.1466666667, + "5149": 0.1476576577, + "5150": 0.1486486486, + "5151": 0.1496396396, + "5152": 0.1506306306, + "5153": 0.1516216216, + "5154": 0.1526126126, + "5155": 0.1536036036, + "5156": 0.1545945946, + "5157": 0.1555855856, + "5158": 0.1565765766, + "5159": 0.1575675676, + "5160": 0.1585585586, + "5161": 0.1595495495, + "5162": 0.1605405405, + "5163": 0.1615315315, + "5164": 0.1625225225, + "5165": 0.1635135135, + "5166": 0.1645045045, + "5167": 0.1654954955, + "5168": 0.1664864865, + "5169": 0.1674774775, + "5170": 0.1684684685, + "5171": 0.1694594595, + "5172": 0.1704504505, + "5173": 0.1714414414, + "5174": 0.1724324324, + "5175": 0.1734234234, + "5176": 0.1744144144, + "5177": 0.1754054054, + "5178": 0.1763963964, + "5179": 0.1773873874, + "5180": 0.1783783784, + "5181": 0.1793693694, + "5182": 0.1803603604, + "5183": 0.1813513514, + "5184": 0.1823423423, + "5185": 0.1833333333, + "5186": 0.1843243243, + "5187": 0.1853153153, + "5188": 0.1863063063, + "5189": 0.1872972973, + "5190": 0.1882882883, + "5191": 0.1892792793, + "5192": 0.1902702703, + "5193": 0.1912612613, + "5194": 0.1922522523, + "5195": 0.1932432432, + "5196": 0.1942342342, + "5197": 0.1952252252, + "5198": 0.1962162162, + "5199": 0.1972072072, + "5200": 0.1981981982, + "5201": 0.1991891892, + "5202": 0.2001801802, + "5203": 0.2011711712, + "5204": 0.2021621622, + "5205": 0.2031531532, + "5206": 0.2041441441, + "5207": 0.2051351351, + "5208": 0.2061261261, + "5209": 0.2071171171, + "5210": 0.2081081081, + "5211": 0.2090990991, + "5212": 0.2100900901, + "5213": 0.2110810811, + "5214": 0.2120720721, + "5215": 0.2130630631, + "5216": 0.2140540541, + "5217": 0.215045045, + "5218": 0.216036036, + "5219": 0.217027027, + "5220": 0.218018018, + "5221": 0.219009009, + "5222": 0.22, + "5223": 0.220990991, + "5224": 0.221981982, + "5225": 0.222972973, + "5226": 0.223963964, + "5227": 0.224954955, + "5228": 0.2259459459, + "5229": 0.2269369369, + "5230": 0.2279279279, + "5231": 0.2289189189, + "5232": 0.2299099099, + "5233": 0.2309009009, + "5234": 0.2318918919, + "5235": 0.2328828829, + "5236": 0.2338738739, + "5237": 0.2348648649, + "5238": 0.2358558559, + "5239": 0.2368468468, + "5240": 0.2378378378, + "5241": 0.2388288288, + "5242": 0.2398198198, + "5243": 0.2408108108, + "5244": 0.2418018018, + "5245": 0.2427927928, + "5246": 0.2437837838, + "5247": 0.2447747748, + "5248": 0.2457657658, + "5249": 0.2467567568, + "5250": 0.2477477477, + "5251": 0.2487387387, + "5252": 0.2497297297, + "5253": 0.2507207207, + "5254": 0.2517117117, + "5255": 0.2527027027, + "5256": 0.2536936937, + "5257": 0.2546846847, + "5258": 0.2556756757, + "5259": 0.2566666667, + "5260": 0.2576576577, + "5261": 0.2586486486, + "5262": 0.2596396396, + "5263": 0.2606306306, + "5264": 0.2616216216, + "5265": 0.2626126126, + "5266": 0.2636036036, + "5267": 0.2645945946, + "5268": 0.2655855856, + "5269": 0.2665765766, + "5270": 0.2675675676, + "5271": 0.2685585586, + "5272": 0.2695495495, + "5273": 0.2705405405, + "5274": 0.2715315315, + "5275": 0.2725225225, + "5276": 0.2735135135, + "5277": 0.2745045045, + "5278": 0.2754954955, + "5279": 0.2764864865, + "5280": 0.2774774775, + "5281": 0.2784684685, + "5282": 0.2794594595, + "5283": 0.2804504505, + "5284": 0.2814414414, + "5285": 0.2824324324, + "5286": 0.2834234234, + "5287": 0.2844144144, + "5288": 0.2854054054, + "5289": 0.2863963964, + "5290": 0.2873873874, + "5291": 0.2883783784, + "5292": 0.2893693694, + "5293": 0.2903603604, + "5294": 0.2913513514, + "5295": 0.2923423423, + "5296": 0.2933333333, + "5297": 0.2943243243, + "5298": 0.2953153153, + "5299": 0.2963063063, + "5300": 0.2972972973, + "5301": 0.2982882883, + "5302": 0.2992792793, + "5303": 0.3002702703, + "5304": 0.3012612613, + "5305": 0.3022522523, + "5306": 0.3032432432, + "5307": 0.3042342342, + "5308": 0.3052252252, + "5309": 0.3062162162, + "5310": 0.3072072072, + "5311": 0.3081981982, + "5312": 0.3091891892, + "5313": 0.3101801802, + "5314": 0.3111711712, + "5315": 0.3121621622, + "5316": 0.3131531532, + "5317": 0.3141441441, + "5318": 0.3151351351, + "5319": 0.3161261261, + "5320": 0.3171171171, + "5321": 0.3181081081, + "5322": 0.3190990991, + "5323": 0.3200900901, + "5324": 0.3210810811, + "5325": 0.3220720721, + "5326": 0.3230630631, + "5327": 0.3240540541, + "5328": 0.325045045, + "5329": 0.326036036, + "5330": 0.327027027, + "5331": 0.328018018, + "5332": 0.329009009, + "5333": 0.33, + "5334": 0.330990991, + "5335": 0.331981982, + "5336": 0.332972973, + "5337": 0.333963964, + "5338": 0.334954955, + "5339": 0.3359459459, + "5340": 0.3369369369, + "5341": 0.3379279279, + "5342": 0.3389189189, + "5343": 0.3399099099, + "5344": 0.3409009009, + "5345": 0.3418918919, + "5346": 0.3428828829, + "5347": 0.3438738739, + "5348": 0.3448648649, + "5349": 0.3458558559, + "5350": 0.3468468468, + "5351": 0.3478378378, + "5352": 0.3488288288, + "5353": 0.3498198198, + "5354": 0.3508108108, + "5355": 0.3518018018, + "5356": 0.3527927928, + "5357": 0.3537837838, + "5358": 0.3547747748, + "5359": 0.3557657658, + "5360": 0.3567567568, + "5361": 0.3577477477, + "5362": 0.3587387387, + "5363": 0.3597297297, + "5364": 0.3607207207, + "5365": 0.3617117117, + "5366": 0.3627027027, + "5367": 0.3636936937, + "5368": 0.3646846847, + "5369": 0.3656756757, + "5370": 0.3666666667, + "5371": 0.3676576577, + "5372": 0.3686486486, + "5373": 0.3696396396, + "5374": 0.3706306306, + "5375": 0.3716216216, + "5376": 0.3726126126, + "5377": 0.3736036036, + "5378": 0.3745945946, + "5379": 0.3755855856, + "5380": 0.3765765766, + "5381": 0.3775675676, + "5382": 0.3785585586, + "5383": 0.3795495495, + "5384": 0.3805405405, + "5385": 0.3815315315, + "5386": 0.3825225225, + "5387": 0.3835135135, + "5388": 0.3845045045, + "5389": 0.3854954955, + "5390": 0.3864864865, + "5391": 0.3874774775, + "5392": 0.3884684685, + "5393": 0.3894594595, + "5394": 0.3904504505, + "5395": 0.3914414414, + "5396": 0.3924324324, + "5397": 0.3934234234, + "5398": 0.3944144144, + "5399": 0.3954054054, + "5400": 0.3963963964, + "5401": 0.3973873874, + "5402": 0.3983783784, + "5403": 0.3993693694, + "5404": 0.4003603604, + "5405": 0.4013513514, + "5406": 0.4023423423, + "5407": 0.4033333333, + "5408": 0.4043243243, + "5409": 0.4053153153, + "5410": 0.4063063063, + "5411": 0.4072972973, + "5412": 0.4082882883, + "5413": 0.4092792793, + "5414": 0.4102702703, + "5415": 0.4112612613, + "5416": 0.4122522523, + "5417": 0.4132432432, + "5418": 0.4142342342, + "5419": 0.4152252252, + "5420": 0.4162162162, + "5421": 0.4172072072, + "5422": 0.4181981982, + "5423": 0.4191891892, + "5424": 0.4201801802, + "5425": 0.4211711712, + "5426": 0.4221621622, + "5427": 0.4231531532, + "5428": 0.4241441441, + "5429": 0.4251351351, + "5430": 0.4261261261, + "5431": 0.4271171171, + "5432": 0.4281081081, + "5433": 0.4290990991, + "5434": 0.4300900901, + "5435": 0.4310810811, + "5436": 0.4320720721, + "5437": 0.4330630631, + "5438": 0.4340540541, + "5439": 0.435045045, + "5440": 0.436036036, + "5441": 0.437027027, + "5442": 0.438018018, + "5443": 0.439009009, + "5444": 0.44, + "5445": 0.440990991, + "5446": 0.441981982, + "5447": 0.442972973, + "5448": 0.443963964, + "5449": 0.444954955, + "5450": 0.4459459459, + "5451": 0.4469369369, + "5452": 0.4479279279, + "5453": 0.4489189189, + "5454": 0.4499099099, + "5455": 0.4509009009, + "5456": 0.4518918919, + "5457": 0.4528828829, + "5458": 0.4538738739, + "5459": 0.4548648649, + "5460": 0.4558558559, + "5461": 0.4568468468, + "5462": 0.4578378378, + "5463": 0.4588288288, + "5464": 0.4598198198, + "5465": 0.4608108108, + "5466": 0.4618018018, + "5467": 0.4627927928, + "5468": 0.4637837838, + "5469": 0.4647747748, + "5470": 0.4657657658, + "5471": 0.4667567568, + "5472": 0.4677477477, + "5473": 0.4687387387, + "5474": 0.4697297297, + "5475": 0.4707207207, + "5476": 0.4717117117, + "5477": 0.4727027027, + "5478": 0.4736936937, + "5479": 0.4746846847, + "5480": 0.4756756757, + "5481": 0.4766666667, + "5482": 0.4776576577, + "5483": 0.4786486486, + "5484": 0.4796396396, + "5485": 0.4806306306, + "5486": 0.4816216216, + "5487": 0.4826126126, + "5488": 0.4836036036, + "5489": 0.4845945946, + "5490": 0.4855855856, + "5491": 0.4865765766, + "5492": 0.4875675676, + "5493": 0.4885585586, + "5494": 0.4895495495, + "5495": 0.4905405405, + "5496": 0.4915315315, + "5497": 0.4925225225, + "5498": 0.4935135135, + "5499": 0.4945045045, + "5500": 0.4954954955, + "5501": 0.4964864865, + "5502": 0.4974774775, + "5503": 0.4984684685, + "5504": 0.4994594595, + "5505": 0.5004504505, + "5506": 0.5014414414, + "5507": 0.5024324324, + "5508": 0.5034234234, + "5509": 0.5044144144, + "5510": 0.5054054054, + "5511": 0.5063963964, + "5512": 0.5073873874, + "5513": 0.5083783784, + "5514": 0.5093693694, + "5515": 0.5103603604, + "5516": 0.5113513514, + "5517": 0.5123423423, + "5518": 0.5133333333, + "5519": 0.5143243243, + "5520": 0.5153153153, + "5521": 0.5163063063, + "5522": 0.5172972973, + "5523": 0.5182882883, + "5524": 0.5192792793, + "5525": 0.5202702703, + "5526": 0.5212612613, + "5527": 0.5222522523, + "5528": 0.5232432432, + "5529": 0.5242342342, + "5530": 0.5252252252, + "5531": 0.5262162162, + "5532": 0.5272072072, + "5533": 0.5281981982, + "5534": 0.5291891892, + "5535": 0.5301801802, + "5536": 0.5311711712, + "5537": 0.5321621622, + "5538": 0.5331531532, + "5539": 0.5341441441, + "5540": 0.5351351351, + "5541": 0.5361261261, + "5542": 0.5371171171, + "5543": 0.5381081081, + "5544": 0.5390990991, + "5545": 0.5400900901, + "5546": 0.5410810811, + "5547": 0.5420720721, + "5548": 0.5430630631, + "5549": 0.5440540541, + "5550": 0.545045045, + "5551": 0.546036036, + "5552": 0.547027027, + "5553": 0.548018018, + "5554": 0.549009009, + "5555": 0.55, + "5556": 0.550990991, + "5557": 0.551981982, + "5558": 0.552972973, + "5559": 0.553963964, + "5560": 0.554954955, + "5561": 0.5559459459, + "5562": 0.5569369369, + "5563": 0.5579279279, + "5564": 0.5589189189, + "5565": 0.5599099099, + "5566": 0.5609009009, + "5567": 0.5618918919, + "5568": 0.5628828829, + "5569": 0.5638738739, + "5570": 0.5648648649, + "5571": 0.5658558559, + "5572": 0.5668468468, + "5573": 0.5678378378, + "5574": 0.5688288288, + "5575": 0.5698198198, + "5576": 0.5708108108, + "5577": 0.5718018018, + "5578": 0.5727927928, + "5579": 0.5737837838, + "5580": 0.5747747748, + "5581": 0.5757657658, + "5582": 0.5767567568, + "5583": 0.5777477477, + "5584": 0.5787387387, + "5585": 0.5797297297, + "5586": 0.5807207207, + "5587": 0.5817117117, + "5588": 0.5827027027, + "5589": 0.5836936937, + "5590": 0.5846846847, + "5591": 0.5856756757, + "5592": 0.5866666667, + "5593": 0.5876576577, + "5594": 0.5886486486, + "5595": 0.5896396396, + "5596": 0.5906306306, + "5597": 0.5916216216, + "5598": 0.5926126126, + "5599": 0.5936036036, + "5600": 0.5945945946, + "5601": 0.5955855856, + "5602": 0.5965765766, + "5603": 0.5975675676, + "5604": 0.5985585586, + "5605": 0.5995495495, + "5606": 0.6005405405, + "5607": 0.6015315315, + "5608": 0.6025225225, + "5609": 0.6035135135, + "5610": 0.6045045045, + "5611": 0.6054954955, + "5612": 0.6064864865, + "5613": 0.6074774775, + "5614": 0.6084684685, + "5615": 0.6094594595, + "5616": 0.6104504505, + "5617": 0.6114414414, + "5618": 0.6124324324, + "5619": 0.6134234234, + "5620": 0.6144144144, + "5621": 0.6154054054, + "5622": 0.6163963964, + "5623": 0.6173873874, + "5624": 0.6183783784, + "5625": 0.6193693694, + "5626": 0.6203603604, + "5627": 0.6213513514, + "5628": 0.6223423423, + "5629": 0.6233333333, + "5630": 0.6243243243, + "5631": 0.6253153153, + "5632": 0.6263063063, + "5633": 0.6272972973, + "5634": 0.6282882883, + "5635": 0.6292792793, + "5636": 0.6302702703, + "5637": 0.6312612613, + "5638": 0.6322522523, + "5639": 0.6332432432, + "5640": 0.6342342342, + "5641": 0.6352252252, + "5642": 0.6362162162, + "5643": 0.6372072072, + "5644": 0.6381981982, + "5645": 0.6391891892, + "5646": 0.6401801802, + "5647": 0.6411711712, + "5648": 0.6421621622, + "5649": 0.6431531532, + "5650": 0.6441441441, + "5651": 0.6451351351, + "5652": 0.6461261261, + "5653": 0.6471171171, + "5654": 0.6481081081, + "5655": 0.6490990991, + "5656": 0.6500900901, + "5657": 0.6510810811, + "5658": 0.6520720721, + "5659": 0.6530630631, + "5660": 0.6540540541, + "5661": 0.655045045, + "5662": 0.656036036, + "5663": 0.657027027, + "5664": 0.658018018, + "5665": 0.659009009, + "5666": 0.66, + "5667": 0.660990991, + "5668": 0.661981982, + "5669": 0.662972973, + "5670": 0.663963964, + "5671": 0.664954955, + "5672": 0.6659459459, + "5673": 0.6669369369, + "5674": 0.6679279279, + "5675": 0.6689189189, + "5676": 0.6699099099, + "5677": 0.6709009009, + "5678": 0.6718918919, + "5679": 0.6728828829, + "5680": 0.6738738739, + "5681": 0.6748648649, + "5682": 0.6758558559, + "5683": 0.6768468468, + "5684": 0.6778378378, + "5685": 0.6788288288, + "5686": 0.6798198198, + "5687": 0.6808108108, + "5688": 0.6818018018, + "5689": 0.6827927928, + "5690": 0.6837837838, + "5691": 0.6847747748, + "5692": 0.6857657658, + "5693": 0.6867567568, + "5694": 0.6877477477, + "5695": 0.6887387387, + "5696": 0.6897297297, + "5697": 0.6907207207, + "5698": 0.6917117117, + "5699": 0.6927027027, + "5700": 0.6936936937, + "5701": 0.6946846847, + "5702": 0.6956756757, + "5703": 0.6966666667, + "5704": 0.6976576577, + "5705": 0.6986486486, + "5706": 0.6996396396, + "5707": 0.7006306306, + "5708": 0.7016216216, + "5709": 0.7026126126, + "5710": 0.7036036036, + "5711": 0.7045945946, + "5712": 0.7055855856, + "5713": 0.7065765766, + "5714": 0.7075675676, + "5715": 0.7085585586, + "5716": 0.7095495495, + "5717": 0.7105405405, + "5718": 0.7115315315, + "5719": 0.7125225225, + "5720": 0.7135135135, + "5721": 0.7145045045, + "5722": 0.7154954955, + "5723": 0.7164864865, + "5724": 0.7174774775, + "5725": 0.7184684685, + "5726": 0.7194594595, + "5727": 0.7204504505, + "5728": 0.7214414414, + "5729": 0.7224324324, + "5730": 0.7234234234, + "5731": 0.7244144144, + "5732": 0.7254054054, + "5733": 0.7263963964, + "5734": 0.7273873874, + "5735": 0.7283783784, + "5736": 0.7293693694, + "5737": 0.7303603604, + "5738": 0.7313513514, + "5739": 0.7323423423, + "5740": 0.7333333333, + "5741": 0.7343243243, + "5742": 0.7353153153, + "5743": 0.7363063063, + "5744": 0.7372972973, + "5745": 0.7382882883, + "5746": 0.7392792793, + "5747": 0.7402702703, + "5748": 0.7412612613, + "5749": 0.7422522523, + "5750": 0.7432432432, + "5751": 0.7442342342, + "5752": 0.7452252252, + "5753": 0.7462162162, + "5754": 0.7472072072, + "5755": 0.7481981982, + "5756": 0.7491891892, + "5757": 0.7501801802, + "5758": 0.7511711712, + "5759": 0.7521621622, + "5760": 0.7531531532, + "5761": 0.7541441441, + "5762": 0.7551351351, + "5763": 0.7561261261, + "5764": 0.7571171171, + "5765": 0.7581081081, + "5766": 0.7590990991, + "5767": 0.7600900901, + "5768": 0.7610810811, + "5769": 0.7620720721, + "5770": 0.7630630631, + "5771": 0.7640540541, + "5772": 0.765045045, + "5773": 0.766036036, + "5774": 0.767027027, + "5775": 0.768018018, + "5776": 0.769009009, + "5777": 0.77, + "5778": 0.770990991, + "5779": 0.771981982, + "5780": 0.772972973, + "5781": 0.773963964, + "5782": 0.774954955, + "5783": 0.7759459459, + "5784": 0.7769369369, + "5785": 0.7779279279, + "5786": 0.7789189189, + "5787": 0.7799099099, + "5788": 0.7809009009, + "5789": 0.7818918919, + "5790": 0.7828828829, + "5791": 0.7838738739, + "5792": 0.7848648649, + "5793": 0.7858558559, + "5794": 0.7868468468, + "5795": 0.7878378378, + "5796": 0.7888288288, + "5797": 0.7898198198, + "5798": 0.7908108108, + "5799": 0.7918018018, + "5800": 0.7927927928, + "5801": 0.7937837838, + "5802": 0.7947747748, + "5803": 0.7957657658, + "5804": 0.7967567568, + "5805": 0.7977477477, + "5806": 0.7987387387, + "5807": 0.7997297297, + "5808": 0.8007207207, + "5809": 0.8017117117, + "5810": 0.8027027027, + "5811": 0.8036936937, + "5812": 0.8046846847, + "5813": 0.8056756757, + "5814": 0.8066666667, + "5815": 0.8076576577, + "5816": 0.8086486486, + "5817": 0.8096396396, + "5818": 0.8106306306, + "5819": 0.8116216216, + "5820": 0.8126126126, + "5821": 0.8136036036, + "5822": 0.8145945946, + "5823": 0.8155855856, + "5824": 0.8165765766, + "5825": 0.8175675676, + "5826": 0.8185585586, + "5827": 0.8195495495, + "5828": 0.8205405405, + "5829": 0.8215315315, + "5830": 0.8225225225, + "5831": 0.8235135135, + "5832": 0.8245045045, + "5833": 0.8254954955, + "5834": 0.8264864865, + "5835": 0.8274774775, + "5836": 0.8284684685, + "5837": 0.8294594595, + "5838": 0.8304504505, + "5839": 0.8314414414, + "5840": 0.8324324324, + "5841": 0.8334234234, + "5842": 0.8344144144, + "5843": 0.8354054054, + "5844": 0.8363963964, + "5845": 0.8373873874, + "5846": 0.8383783784, + "5847": 0.8393693694, + "5848": 0.8403603604, + "5849": 0.8413513514, + "5850": 0.8423423423, + "5851": 0.8433333333, + "5852": 0.8443243243, + "5853": 0.8453153153, + "5854": 0.8463063063, + "5855": 0.8472972973, + "5856": 0.8482882883, + "5857": 0.8492792793, + "5858": 0.8502702703, + "5859": 0.8512612613, + "5860": 0.8522522523, + "5861": 0.8532432432, + "5862": 0.8542342342, + "5863": 0.8552252252, + "5864": 0.8562162162, + "5865": 0.8572072072, + "5866": 0.8581981982, + "5867": 0.8591891892, + "5868": 0.8601801802, + "5869": 0.8611711712, + "5870": 0.8621621622, + "5871": 0.8631531532, + "5872": 0.8641441441, + "5873": 0.8651351351, + "5874": 0.8661261261, + "5875": 0.8671171171, + "5876": 0.8681081081, + "5877": 0.8690990991, + "5878": 0.8700900901, + "5879": 0.8710810811, + "5880": 0.8720720721, + "5881": 0.8730630631, + "5882": 0.8740540541, + "5883": 0.875045045, + "5884": 0.876036036, + "5885": 0.877027027, + "5886": 0.878018018, + "5887": 0.879009009, + "5888": 0.88, + "5889": 0.880990991, + "5890": 0.881981982, + "5891": 0.882972973, + "5892": 0.883963964, + "5893": 0.884954955, + "5894": 0.8859459459, + "5895": 0.8869369369, + "5896": 0.8879279279, + "5897": 0.8889189189, + "5898": 0.8899099099, + "5899": 0.8909009009, + "5900": 0.8918918919, + "5901": 0.8928828829, + "5902": 0.8938738739, + "5903": 0.8948648649, + "5904": 0.8958558559, + "5905": 0.8968468468, + "5906": 0.8978378378, + "5907": 0.8988288288, + "5908": 0.8998198198, + "5909": 0.9008108108, + "5910": 0.9018018018, + "5911": 0.9027927928, + "5912": 0.9037837838, + "5913": 0.9047747748, + "5914": 0.9057657658, + "5915": 0.9067567568, + "5916": 0.9077477477, + "5917": 0.9087387387, + "5918": 0.9097297297, + "5919": 0.9107207207, + "5920": 0.9117117117, + "5921": 0.9127027027, + "5922": 0.9136936937, + "5923": 0.9146846847, + "5924": 0.9156756757, + "5925": 0.9166666667, + "5926": 0.9176576577, + "5927": 0.9186486486, + "5928": 0.9196396396, + "5929": 0.9206306306, + "5930": 0.9216216216, + "5931": 0.9226126126, + "5932": 0.9236036036, + "5933": 0.9245945946, + "5934": 0.9255855856, + "5935": 0.9265765766, + "5936": 0.9275675676, + "5937": 0.9285585586, + "5938": 0.9295495495, + "5939": 0.9305405405, + "5940": 0.9315315315, + "5941": 0.9325225225, + "5942": 0.9335135135, + "5943": 0.9345045045, + "5944": 0.9354954955, + "5945": 0.9364864865, + "5946": 0.9374774775, + "5947": 0.9384684685, + "5948": 0.9394594595, + "5949": 0.9404504505, + "5950": 0.9414414414, + "5951": 0.9424324324, + "5952": 0.9434234234, + "5953": 0.9444144144, + "5954": 0.9454054054, + "5955": 0.9463963964, + "5956": 0.9473873874, + "5957": 0.9483783784, + "5958": 0.9493693694, + "5959": 0.9503603604, + "5960": 0.9513513514, + "5961": 0.9523423423, + "5962": 0.9533333333, + "5963": 0.9543243243, + "5964": 0.9553153153, + "5965": 0.9563063063, + "5966": 0.9572972973, + "5967": 0.9582882883, + "5968": 0.9592792793, + "5969": 0.9602702703, + "5970": 0.9612612613, + "5971": 0.9622522523, + "5972": 0.9632432432, + "5973": 0.9642342342, + "5974": 0.9652252252, + "5975": 0.9662162162, + "5976": 0.9672072072, + "5977": 0.9681981982, + "5978": 0.9691891892, + "5979": 0.9701801802, + "5980": 0.9711711712, + "5981": 0.9721621622, + "5982": 0.9731531532, + "5983": 0.9741441441, + "5984": 0.9751351351, + "5985": 0.9761261261, + "5986": 0.9771171171, + "5987": 0.9781081081, + "5988": 0.9790990991, + "5989": 0.9800900901, + "5990": 0.9810810811, + "5991": 0.9820720721, + "5992": 0.9830630631, + "5993": 0.9840540541, + "5994": 0.985045045, + "5995": 0.986036036, + "5996": 0.987027027, + "5997": 0.988018018, + "5998": 0.989009009, + "5999": 0.99, + "6000": 0.0, + "6001": 0.000990991, + "6002": 0.001981982, + "6003": 0.002972973, + "6004": 0.003963964, + "6005": 0.004954955, + "6006": 0.0059459459, + "6007": 0.0069369369, + "6008": 0.0079279279, + "6009": 0.0089189189, + "6010": 0.0099099099, + "6011": 0.0109009009, + "6012": 0.0118918919, + "6013": 0.0128828829, + "6014": 0.0138738739, + "6015": 0.0148648649, + "6016": 0.0158558559, + "6017": 0.0168468468, + "6018": 0.0178378378, + "6019": 0.0188288288, + "6020": 0.0198198198, + "6021": 0.0208108108, + "6022": 0.0218018018, + "6023": 0.0227927928, + "6024": 0.0237837838, + "6025": 0.0247747748, + "6026": 0.0257657658, + "6027": 0.0267567568, + "6028": 0.0277477477, + "6029": 0.0287387387, + "6030": 0.0297297297, + "6031": 0.0307207207, + "6032": 0.0317117117, + "6033": 0.0327027027, + "6034": 0.0336936937, + "6035": 0.0346846847, + "6036": 0.0356756757, + "6037": 0.0366666667, + "6038": 0.0376576577, + "6039": 0.0386486486, + "6040": 0.0396396396, + "6041": 0.0406306306, + "6042": 0.0416216216, + "6043": 0.0426126126, + "6044": 0.0436036036, + "6045": 0.0445945946, + "6046": 0.0455855856, + "6047": 0.0465765766, + "6048": 0.0475675676, + "6049": 0.0485585586, + "6050": 0.0495495495, + "6051": 0.0505405405, + "6052": 0.0515315315, + "6053": 0.0525225225, + "6054": 0.0535135135, + "6055": 0.0545045045, + "6056": 0.0554954955, + "6057": 0.0564864865, + "6058": 0.0574774775, + "6059": 0.0584684685, + "6060": 0.0594594595, + "6061": 0.0604504505, + "6062": 0.0614414414, + "6063": 0.0624324324, + "6064": 0.0634234234, + "6065": 0.0644144144, + "6066": 0.0654054054, + "6067": 0.0663963964, + "6068": 0.0673873874, + "6069": 0.0683783784, + "6070": 0.0693693694, + "6071": 0.0703603604, + "6072": 0.0713513514, + "6073": 0.0723423423, + "6074": 0.0733333333, + "6075": 0.0743243243, + "6076": 0.0753153153, + "6077": 0.0763063063, + "6078": 0.0772972973, + "6079": 0.0782882883, + "6080": 0.0792792793, + "6081": 0.0802702703, + "6082": 0.0812612613, + "6083": 0.0822522523, + "6084": 0.0832432432, + "6085": 0.0842342342, + "6086": 0.0852252252, + "6087": 0.0862162162, + "6088": 0.0872072072, + "6089": 0.0881981982, + "6090": 0.0891891892, + "6091": 0.0901801802, + "6092": 0.0911711712, + "6093": 0.0921621622, + "6094": 0.0931531532, + "6095": 0.0941441441, + "6096": 0.0951351351, + "6097": 0.0961261261, + "6098": 0.0971171171, + "6099": 0.0981081081, + "6100": 0.0990990991, + "6101": 0.1000900901, + "6102": 0.1010810811, + "6103": 0.1020720721, + "6104": 0.1030630631, + "6105": 0.1040540541, + "6106": 0.105045045, + "6107": 0.106036036, + "6108": 0.107027027, + "6109": 0.108018018, + "6110": 0.109009009, + "6111": 0.11, + "6112": 0.110990991, + "6113": 0.111981982, + "6114": 0.112972973, + "6115": 0.113963964, + "6116": 0.114954955, + "6117": 0.1159459459, + "6118": 0.1169369369, + "6119": 0.1179279279, + "6120": 0.1189189189, + "6121": 0.1199099099, + "6122": 0.1209009009, + "6123": 0.1218918919, + "6124": 0.1228828829, + "6125": 0.1238738739, + "6126": 0.1248648649, + "6127": 0.1258558559, + "6128": 0.1268468468, + "6129": 0.1278378378, + "6130": 0.1288288288, + "6131": 0.1298198198, + "6132": 0.1308108108, + "6133": 0.1318018018, + "6134": 0.1327927928, + "6135": 0.1337837838, + "6136": 0.1347747748, + "6137": 0.1357657658, + "6138": 0.1367567568, + "6139": 0.1377477477, + "6140": 0.1387387387, + "6141": 0.1397297297, + "6142": 0.1407207207, + "6143": 0.1417117117, + "6144": 0.1427027027, + "6145": 0.1436936937, + "6146": 0.1446846847, + "6147": 0.1456756757, + "6148": 0.1466666667, + "6149": 0.1476576577, + "6150": 0.1486486486, + "6151": 0.1496396396, + "6152": 0.1506306306, + "6153": 0.1516216216, + "6154": 0.1526126126, + "6155": 0.1536036036, + "6156": 0.1545945946, + "6157": 0.1555855856, + "6158": 0.1565765766, + "6159": 0.1575675676, + "6160": 0.1585585586, + "6161": 0.1595495495, + "6162": 0.1605405405, + "6163": 0.1615315315, + "6164": 0.1625225225, + "6165": 0.1635135135, + "6166": 0.1645045045, + "6167": 0.1654954955, + "6168": 0.1664864865, + "6169": 0.1674774775, + "6170": 0.1684684685, + "6171": 0.1694594595, + "6172": 0.1704504505, + "6173": 0.1714414414, + "6174": 0.1724324324, + "6175": 0.1734234234, + "6176": 0.1744144144, + "6177": 0.1754054054, + "6178": 0.1763963964, + "6179": 0.1773873874, + "6180": 0.1783783784, + "6181": 0.1793693694, + "6182": 0.1803603604, + "6183": 0.1813513514, + "6184": 0.1823423423, + "6185": 0.1833333333, + "6186": 0.1843243243, + "6187": 0.1853153153, + "6188": 0.1863063063, + "6189": 0.1872972973, + "6190": 0.1882882883, + "6191": 0.1892792793, + "6192": 0.1902702703, + "6193": 0.1912612613, + "6194": 0.1922522523, + "6195": 0.1932432432, + "6196": 0.1942342342, + "6197": 0.1952252252, + "6198": 0.1962162162, + "6199": 0.1972072072, + "6200": 0.1981981982, + "6201": 0.1991891892, + "6202": 0.2001801802, + "6203": 0.2011711712, + "6204": 0.2021621622, + "6205": 0.2031531532, + "6206": 0.2041441441, + "6207": 0.2051351351, + "6208": 0.2061261261, + "6209": 0.2071171171, + "6210": 0.2081081081, + "6211": 0.2090990991, + "6212": 0.2100900901, + "6213": 0.2110810811, + "6214": 0.2120720721, + "6215": 0.2130630631, + "6216": 0.2140540541, + "6217": 0.215045045, + "6218": 0.216036036, + "6219": 0.217027027, + "6220": 0.218018018, + "6221": 0.219009009, + "6222": 0.22, + "6223": 0.220990991, + "6224": 0.221981982, + "6225": 0.222972973, + "6226": 0.223963964, + "6227": 0.224954955, + "6228": 0.2259459459, + "6229": 0.2269369369, + "6230": 0.2279279279, + "6231": 0.2289189189, + "6232": 0.2299099099, + "6233": 0.2309009009, + "6234": 0.2318918919, + "6235": 0.2328828829, + "6236": 0.2338738739, + "6237": 0.2348648649, + "6238": 0.2358558559, + "6239": 0.2368468468, + "6240": 0.2378378378, + "6241": 0.2388288288, + "6242": 0.2398198198, + "6243": 0.2408108108, + "6244": 0.2418018018, + "6245": 0.2427927928, + "6246": 0.2437837838, + "6247": 0.2447747748, + "6248": 0.2457657658, + "6249": 0.2467567568, + "6250": 0.2477477477, + "6251": 0.2487387387, + "6252": 0.2497297297, + "6253": 0.2507207207, + "6254": 0.2517117117, + "6255": 0.2527027027, + "6256": 0.2536936937, + "6257": 0.2546846847, + "6258": 0.2556756757, + "6259": 0.2566666667, + "6260": 0.2576576577, + "6261": 0.2586486486, + "6262": 0.2596396396, + "6263": 0.2606306306, + "6264": 0.2616216216, + "6265": 0.2626126126, + "6266": 0.2636036036, + "6267": 0.2645945946, + "6268": 0.2655855856, + "6269": 0.2665765766, + "6270": 0.2675675676, + "6271": 0.2685585586, + "6272": 0.2695495495, + "6273": 0.2705405405, + "6274": 0.2715315315, + "6275": 0.2725225225, + "6276": 0.2735135135, + "6277": 0.2745045045, + "6278": 0.2754954955, + "6279": 0.2764864865, + "6280": 0.2774774775, + "6281": 0.2784684685, + "6282": 0.2794594595, + "6283": 0.2804504505, + "6284": 0.2814414414, + "6285": 0.2824324324, + "6286": 0.2834234234, + "6287": 0.2844144144, + "6288": 0.2854054054, + "6289": 0.2863963964, + "6290": 0.2873873874, + "6291": 0.2883783784, + "6292": 0.2893693694, + "6293": 0.2903603604, + "6294": 0.2913513514, + "6295": 0.2923423423, + "6296": 0.2933333333, + "6297": 0.2943243243, + "6298": 0.2953153153, + "6299": 0.2963063063, + "6300": 0.2972972973, + "6301": 0.2982882883, + "6302": 0.2992792793, + "6303": 0.3002702703, + "6304": 0.3012612613, + "6305": 0.3022522523, + "6306": 0.3032432432, + "6307": 0.3042342342, + "6308": 0.3052252252, + "6309": 0.3062162162, + "6310": 0.3072072072, + "6311": 0.3081981982, + "6312": 0.3091891892, + "6313": 0.3101801802, + "6314": 0.3111711712, + "6315": 0.3121621622, + "6316": 0.3131531532, + "6317": 0.3141441441, + "6318": 0.3151351351, + "6319": 0.3161261261, + "6320": 0.3171171171, + "6321": 0.3181081081, + "6322": 0.3190990991, + "6323": 0.3200900901, + "6324": 0.3210810811, + "6325": 0.3220720721, + "6326": 0.3230630631, + "6327": 0.3240540541, + "6328": 0.325045045, + "6329": 0.326036036, + "6330": 0.327027027, + "6331": 0.328018018, + "6332": 0.329009009, + "6333": 0.33, + "6334": 0.330990991, + "6335": 0.331981982, + "6336": 0.332972973, + "6337": 0.333963964, + "6338": 0.334954955, + "6339": 0.3359459459, + "6340": 0.3369369369, + "6341": 0.3379279279, + "6342": 0.3389189189, + "6343": 0.3399099099, + "6344": 0.3409009009, + "6345": 0.3418918919, + "6346": 0.3428828829, + "6347": 0.3438738739, + "6348": 0.3448648649, + "6349": 0.3458558559, + "6350": 0.3468468468, + "6351": 0.3478378378, + "6352": 0.3488288288, + "6353": 0.3498198198, + "6354": 0.3508108108, + "6355": 0.3518018018, + "6356": 0.3527927928, + "6357": 0.3537837838, + "6358": 0.3547747748, + "6359": 0.3557657658, + "6360": 0.3567567568, + "6361": 0.3577477477, + "6362": 0.3587387387, + "6363": 0.3597297297, + "6364": 0.3607207207, + "6365": 0.3617117117, + "6366": 0.3627027027, + "6367": 0.3636936937, + "6368": 0.3646846847, + "6369": 0.3656756757, + "6370": 0.3666666667, + "6371": 0.3676576577, + "6372": 0.3686486486, + "6373": 0.3696396396, + "6374": 0.3706306306, + "6375": 0.3716216216, + "6376": 0.3726126126, + "6377": 0.3736036036, + "6378": 0.3745945946, + "6379": 0.3755855856, + "6380": 0.3765765766, + "6381": 0.3775675676, + "6382": 0.3785585586, + "6383": 0.3795495495, + "6384": 0.3805405405, + "6385": 0.3815315315, + "6386": 0.3825225225, + "6387": 0.3835135135, + "6388": 0.3845045045, + "6389": 0.3854954955, + "6390": 0.3864864865, + "6391": 0.3874774775, + "6392": 0.3884684685, + "6393": 0.3894594595, + "6394": 0.3904504505, + "6395": 0.3914414414, + "6396": 0.3924324324, + "6397": 0.3934234234, + "6398": 0.3944144144, + "6399": 0.3954054054, + "6400": 0.3963963964, + "6401": 0.3973873874, + "6402": 0.3983783784, + "6403": 0.3993693694, + "6404": 0.4003603604, + "6405": 0.4013513514, + "6406": 0.4023423423, + "6407": 0.4033333333, + "6408": 0.4043243243, + "6409": 0.4053153153, + "6410": 0.4063063063, + "6411": 0.4072972973, + "6412": 0.4082882883, + "6413": 0.4092792793, + "6414": 0.4102702703, + "6415": 0.4112612613, + "6416": 0.4122522523, + "6417": 0.4132432432, + "6418": 0.4142342342, + "6419": 0.4152252252, + "6420": 0.4162162162, + "6421": 0.4172072072, + "6422": 0.4181981982, + "6423": 0.4191891892, + "6424": 0.4201801802, + "6425": 0.4211711712, + "6426": 0.4221621622, + "6427": 0.4231531532, + "6428": 0.4241441441, + "6429": 0.4251351351, + "6430": 0.4261261261, + "6431": 0.4271171171, + "6432": 0.4281081081, + "6433": 0.4290990991, + "6434": 0.4300900901, + "6435": 0.4310810811, + "6436": 0.4320720721, + "6437": 0.4330630631, + "6438": 0.4340540541, + "6439": 0.435045045, + "6440": 0.436036036, + "6441": 0.437027027, + "6442": 0.438018018, + "6443": 0.439009009, + "6444": 0.44, + "6445": 0.440990991, + "6446": 0.441981982, + "6447": 0.442972973, + "6448": 0.443963964, + "6449": 0.444954955, + "6450": 0.4459459459, + "6451": 0.4469369369, + "6452": 0.4479279279, + "6453": 0.4489189189, + "6454": 0.4499099099, + "6455": 0.4509009009, + "6456": 0.4518918919, + "6457": 0.4528828829, + "6458": 0.4538738739, + "6459": 0.4548648649, + "6460": 0.4558558559, + "6461": 0.4568468468, + "6462": 0.4578378378, + "6463": 0.4588288288, + "6464": 0.4598198198, + "6465": 0.4608108108, + "6466": 0.4618018018, + "6467": 0.4627927928, + "6468": 0.4637837838, + "6469": 0.4647747748, + "6470": 0.4657657658, + "6471": 0.4667567568, + "6472": 0.4677477477, + "6473": 0.4687387387, + "6474": 0.4697297297, + "6475": 0.4707207207, + "6476": 0.4717117117, + "6477": 0.4727027027, + "6478": 0.4736936937, + "6479": 0.4746846847, + "6480": 0.4756756757, + "6481": 0.4766666667, + "6482": 0.4776576577, + "6483": 0.4786486486, + "6484": 0.4796396396, + "6485": 0.4806306306, + "6486": 0.4816216216, + "6487": 0.4826126126, + "6488": 0.4836036036, + "6489": 0.4845945946, + "6490": 0.4855855856, + "6491": 0.4865765766, + "6492": 0.4875675676, + "6493": 0.4885585586, + "6494": 0.4895495495, + "6495": 0.4905405405, + "6496": 0.4915315315, + "6497": 0.4925225225, + "6498": 0.4935135135, + "6499": 0.4945045045, + "6500": 0.4954954955, + "6501": 0.4964864865, + "6502": 0.4974774775, + "6503": 0.4984684685, + "6504": 0.4994594595, + "6505": 0.5004504505, + "6506": 0.5014414414, + "6507": 0.5024324324, + "6508": 0.5034234234, + "6509": 0.5044144144, + "6510": 0.5054054054, + "6511": 0.5063963964, + "6512": 0.5073873874, + "6513": 0.5083783784, + "6514": 0.5093693694, + "6515": 0.5103603604, + "6516": 0.5113513514, + "6517": 0.5123423423, + "6518": 0.5133333333, + "6519": 0.5143243243, + "6520": 0.5153153153, + "6521": 0.5163063063, + "6522": 0.5172972973, + "6523": 0.5182882883, + "6524": 0.5192792793, + "6525": 0.5202702703, + "6526": 0.5212612613, + "6527": 0.5222522523, + "6528": 0.5232432432, + "6529": 0.5242342342, + "6530": 0.5252252252, + "6531": 0.5262162162, + "6532": 0.5272072072, + "6533": 0.5281981982, + "6534": 0.5291891892, + "6535": 0.5301801802, + "6536": 0.5311711712, + "6537": 0.5321621622, + "6538": 0.5331531532, + "6539": 0.5341441441, + "6540": 0.5351351351, + "6541": 0.5361261261, + "6542": 0.5371171171, + "6543": 0.5381081081, + "6544": 0.5390990991, + "6545": 0.5400900901, + "6546": 0.5410810811, + "6547": 0.5420720721, + "6548": 0.5430630631, + "6549": 0.5440540541, + "6550": 0.545045045, + "6551": 0.546036036, + "6552": 0.547027027, + "6553": 0.548018018, + "6554": 0.549009009, + "6555": 0.55, + "6556": 0.550990991, + "6557": 0.551981982, + "6558": 0.552972973, + "6559": 0.553963964, + "6560": 0.554954955, + "6561": 0.5559459459, + "6562": 0.5569369369, + "6563": 0.5579279279, + "6564": 0.5589189189, + "6565": 0.5599099099, + "6566": 0.5609009009, + "6567": 0.5618918919, + "6568": 0.5628828829, + "6569": 0.5638738739, + "6570": 0.5648648649, + "6571": 0.5658558559, + "6572": 0.5668468468, + "6573": 0.5678378378, + "6574": 0.5688288288, + "6575": 0.5698198198, + "6576": 0.5708108108, + "6577": 0.5718018018, + "6578": 0.5727927928, + "6579": 0.5737837838, + "6580": 0.5747747748, + "6581": 0.5757657658, + "6582": 0.5767567568, + "6583": 0.5777477477, + "6584": 0.5787387387, + "6585": 0.5797297297, + "6586": 0.5807207207, + "6587": 0.5817117117, + "6588": 0.5827027027, + "6589": 0.5836936937, + "6590": 0.5846846847, + "6591": 0.5856756757, + "6592": 0.5866666667, + "6593": 0.5876576577, + "6594": 0.5886486486, + "6595": 0.5896396396, + "6596": 0.5906306306, + "6597": 0.5916216216, + "6598": 0.5926126126, + "6599": 0.5936036036, + "6600": 0.5945945946, + "6601": 0.5955855856, + "6602": 0.5965765766, + "6603": 0.5975675676, + "6604": 0.5985585586, + "6605": 0.5995495495, + "6606": 0.6005405405, + "6607": 0.6015315315, + "6608": 0.6025225225, + "6609": 0.6035135135, + "6610": 0.6045045045, + "6611": 0.6054954955, + "6612": 0.6064864865, + "6613": 0.6074774775, + "6614": 0.6084684685, + "6615": 0.6094594595, + "6616": 0.6104504505, + "6617": 0.6114414414, + "6618": 0.6124324324, + "6619": 0.6134234234, + "6620": 0.6144144144, + "6621": 0.6154054054, + "6622": 0.6163963964, + "6623": 0.6173873874, + "6624": 0.6183783784, + "6625": 0.6193693694, + "6626": 0.6203603604, + "6627": 0.6213513514, + "6628": 0.6223423423, + "6629": 0.6233333333, + "6630": 0.6243243243, + "6631": 0.6253153153, + "6632": 0.6263063063, + "6633": 0.6272972973, + "6634": 0.6282882883, + "6635": 0.6292792793, + "6636": 0.6302702703, + "6637": 0.6312612613, + "6638": 0.6322522523, + "6639": 0.6332432432, + "6640": 0.6342342342, + "6641": 0.6352252252, + "6642": 0.6362162162, + "6643": 0.6372072072, + "6644": 0.6381981982, + "6645": 0.6391891892, + "6646": 0.6401801802, + "6647": 0.6411711712, + "6648": 0.6421621622, + "6649": 0.6431531532, + "6650": 0.6441441441, + "6651": 0.6451351351, + "6652": 0.6461261261, + "6653": 0.6471171171, + "6654": 0.6481081081, + "6655": 0.6490990991, + "6656": 0.6500900901, + "6657": 0.6510810811, + "6658": 0.6520720721, + "6659": 0.6530630631, + "6660": 0.6540540541, + "6661": 0.655045045, + "6662": 0.656036036, + "6663": 0.657027027, + "6664": 0.658018018, + "6665": 0.659009009, + "6666": 0.66, + "6667": 0.660990991, + "6668": 0.661981982, + "6669": 0.662972973, + "6670": 0.663963964, + "6671": 0.664954955, + "6672": 0.6659459459, + "6673": 0.6669369369, + "6674": 0.6679279279, + "6675": 0.6689189189, + "6676": 0.6699099099, + "6677": 0.6709009009, + "6678": 0.6718918919, + "6679": 0.6728828829, + "6680": 0.6738738739, + "6681": 0.6748648649, + "6682": 0.6758558559, + "6683": 0.6768468468, + "6684": 0.6778378378, + "6685": 0.6788288288, + "6686": 0.6798198198, + "6687": 0.6808108108, + "6688": 0.6818018018, + "6689": 0.6827927928, + "6690": 0.6837837838, + "6691": 0.6847747748, + "6692": 0.6857657658, + "6693": 0.6867567568, + "6694": 0.6877477477, + "6695": 0.6887387387, + "6696": 0.6897297297, + "6697": 0.6907207207, + "6698": 0.6917117117, + "6699": 0.6927027027, + "6700": 0.6936936937, + "6701": 0.6946846847, + "6702": 0.6956756757, + "6703": 0.6966666667, + "6704": 0.6976576577, + "6705": 0.6986486486, + "6706": 0.6996396396, + "6707": 0.7006306306, + "6708": 0.7016216216, + "6709": 0.7026126126, + "6710": 0.7036036036, + "6711": 0.7045945946, + "6712": 0.7055855856, + "6713": 0.7065765766, + "6714": 0.7075675676, + "6715": 0.7085585586, + "6716": 0.7095495495, + "6717": 0.7105405405, + "6718": 0.7115315315, + "6719": 0.7125225225, + "6720": 0.7135135135, + "6721": 0.7145045045, + "6722": 0.7154954955, + "6723": 0.7164864865, + "6724": 0.7174774775, + "6725": 0.7184684685, + "6726": 0.7194594595, + "6727": 0.7204504505, + "6728": 0.7214414414, + "6729": 0.7224324324, + "6730": 0.7234234234, + "6731": 0.7244144144, + "6732": 0.7254054054, + "6733": 0.7263963964, + "6734": 0.7273873874, + "6735": 0.7283783784, + "6736": 0.7293693694, + "6737": 0.7303603604, + "6738": 0.7313513514, + "6739": 0.7323423423, + "6740": 0.7333333333, + "6741": 0.7343243243, + "6742": 0.7353153153, + "6743": 0.7363063063, + "6744": 0.7372972973, + "6745": 0.7382882883, + "6746": 0.7392792793, + "6747": 0.7402702703, + "6748": 0.7412612613, + "6749": 0.7422522523, + "6750": 0.7432432432, + "6751": 0.7442342342, + "6752": 0.7452252252, + "6753": 0.7462162162, + "6754": 0.7472072072, + "6755": 0.7481981982, + "6756": 0.7491891892, + "6757": 0.7501801802, + "6758": 0.7511711712, + "6759": 0.7521621622, + "6760": 0.7531531532, + "6761": 0.7541441441, + "6762": 0.7551351351, + "6763": 0.7561261261, + "6764": 0.7571171171, + "6765": 0.7581081081, + "6766": 0.7590990991, + "6767": 0.7600900901, + "6768": 0.7610810811, + "6769": 0.7620720721, + "6770": 0.7630630631, + "6771": 0.7640540541, + "6772": 0.765045045, + "6773": 0.766036036, + "6774": 0.767027027, + "6775": 0.768018018, + "6776": 0.769009009, + "6777": 0.77, + "6778": 0.770990991, + "6779": 0.771981982, + "6780": 0.772972973, + "6781": 0.773963964, + "6782": 0.774954955, + "6783": 0.7759459459, + "6784": 0.7769369369, + "6785": 0.7779279279, + "6786": 0.7789189189, + "6787": 0.7799099099, + "6788": 0.7809009009, + "6789": 0.7818918919, + "6790": 0.7828828829, + "6791": 0.7838738739, + "6792": 0.7848648649, + "6793": 0.7858558559, + "6794": 0.7868468468, + "6795": 0.7878378378, + "6796": 0.7888288288, + "6797": 0.7898198198, + "6798": 0.7908108108, + "6799": 0.7918018018, + "6800": 0.7927927928, + "6801": 0.7937837838, + "6802": 0.7947747748, + "6803": 0.7957657658, + "6804": 0.7967567568, + "6805": 0.7977477477, + "6806": 0.7987387387, + "6807": 0.7997297297, + "6808": 0.8007207207, + "6809": 0.8017117117, + "6810": 0.8027027027, + "6811": 0.8036936937, + "6812": 0.8046846847, + "6813": 0.8056756757, + "6814": 0.8066666667, + "6815": 0.8076576577, + "6816": 0.8086486486, + "6817": 0.8096396396, + "6818": 0.8106306306, + "6819": 0.8116216216, + "6820": 0.8126126126, + "6821": 0.8136036036, + "6822": 0.8145945946, + "6823": 0.8155855856, + "6824": 0.8165765766, + "6825": 0.8175675676, + "6826": 0.8185585586, + "6827": 0.8195495495, + "6828": 0.8205405405, + "6829": 0.8215315315, + "6830": 0.8225225225, + "6831": 0.8235135135, + "6832": 0.8245045045, + "6833": 0.8254954955, + "6834": 0.8264864865, + "6835": 0.8274774775, + "6836": 0.8284684685, + "6837": 0.8294594595, + "6838": 0.8304504505, + "6839": 0.8314414414, + "6840": 0.8324324324, + "6841": 0.8334234234, + "6842": 0.8344144144, + "6843": 0.8354054054, + "6844": 0.8363963964, + "6845": 0.8373873874, + "6846": 0.8383783784, + "6847": 0.8393693694, + "6848": 0.8403603604, + "6849": 0.8413513514, + "6850": 0.8423423423, + "6851": 0.8433333333, + "6852": 0.8443243243, + "6853": 0.8453153153, + "6854": 0.8463063063, + "6855": 0.8472972973, + "6856": 0.8482882883, + "6857": 0.8492792793, + "6858": 0.8502702703, + "6859": 0.8512612613, + "6860": 0.8522522523, + "6861": 0.8532432432, + "6862": 0.8542342342, + "6863": 0.8552252252, + "6864": 0.8562162162, + "6865": 0.8572072072, + "6866": 0.8581981982, + "6867": 0.8591891892, + "6868": 0.8601801802, + "6869": 0.8611711712, + "6870": 0.8621621622, + "6871": 0.8631531532, + "6872": 0.8641441441, + "6873": 0.8651351351, + "6874": 0.8661261261, + "6875": 0.8671171171, + "6876": 0.8681081081, + "6877": 0.8690990991, + "6878": 0.8700900901, + "6879": 0.8710810811, + "6880": 0.8720720721, + "6881": 0.8730630631, + "6882": 0.8740540541, + "6883": 0.875045045, + "6884": 0.876036036, + "6885": 0.877027027, + "6886": 0.878018018, + "6887": 0.879009009, + "6888": 0.88, + "6889": 0.880990991, + "6890": 0.881981982, + "6891": 0.882972973, + "6892": 0.883963964, + "6893": 0.884954955, + "6894": 0.8859459459, + "6895": 0.8869369369, + "6896": 0.8879279279, + "6897": 0.8889189189, + "6898": 0.8899099099, + "6899": 0.8909009009, + "6900": 0.8918918919, + "6901": 0.8928828829, + "6902": 0.8938738739, + "6903": 0.8948648649, + "6904": 0.8958558559, + "6905": 0.8968468468, + "6906": 0.8978378378, + "6907": 0.8988288288, + "6908": 0.8998198198, + "6909": 0.9008108108, + "6910": 0.9018018018, + "6911": 0.9027927928, + "6912": 0.9037837838, + "6913": 0.9047747748, + "6914": 0.9057657658, + "6915": 0.9067567568, + "6916": 0.9077477477, + "6917": 0.9087387387, + "6918": 0.9097297297, + "6919": 0.9107207207, + "6920": 0.9117117117, + "6921": 0.9127027027, + "6922": 0.9136936937, + "6923": 0.9146846847, + "6924": 0.9156756757, + "6925": 0.9166666667, + "6926": 0.9176576577, + "6927": 0.9186486486, + "6928": 0.9196396396, + "6929": 0.9206306306, + "6930": 0.9216216216, + "6931": 0.9226126126, + "6932": 0.9236036036, + "6933": 0.9245945946, + "6934": 0.9255855856, + "6935": 0.9265765766, + "6936": 0.9275675676, + "6937": 0.9285585586, + "6938": 0.9295495495, + "6939": 0.9305405405, + "6940": 0.9315315315, + "6941": 0.9325225225, + "6942": 0.9335135135, + "6943": 0.9345045045, + "6944": 0.9354954955, + "6945": 0.9364864865, + "6946": 0.9374774775, + "6947": 0.9384684685, + "6948": 0.9394594595, + "6949": 0.9404504505, + "6950": 0.9414414414, + "6951": 0.9424324324, + "6952": 0.9434234234, + "6953": 0.9444144144, + "6954": 0.9454054054, + "6955": 0.9463963964, + "6956": 0.9473873874, + "6957": 0.9483783784, + "6958": 0.9493693694, + "6959": 0.9503603604, + "6960": 0.9513513514, + "6961": 0.9523423423, + "6962": 0.9533333333, + "6963": 0.9543243243, + "6964": 0.9553153153, + "6965": 0.9563063063, + "6966": 0.9572972973, + "6967": 0.9582882883, + "6968": 0.9592792793, + "6969": 0.9602702703, + "6970": 0.9612612613, + "6971": 0.9622522523, + "6972": 0.9632432432, + "6973": 0.9642342342, + "6974": 0.9652252252, + "6975": 0.9662162162, + "6976": 0.9672072072, + "6977": 0.9681981982, + "6978": 0.9691891892, + "6979": 0.9701801802, + "6980": 0.9711711712, + "6981": 0.9721621622, + "6982": 0.9731531532, + "6983": 0.9741441441, + "6984": 0.9751351351, + "6985": 0.9761261261, + "6986": 0.9771171171, + "6987": 0.9781081081, + "6988": 0.9790990991, + "6989": 0.9800900901, + "6990": 0.9810810811, + "6991": 0.9820720721, + "6992": 0.9830630631, + "6993": 0.9840540541, + "6994": 0.985045045, + "6995": 0.986036036, + "6996": 0.987027027, + "6997": 0.988018018, + "6998": 0.989009009, + "6999": 0.99, + "7000": 0.0, + "7001": 0.000990991, + "7002": 0.001981982, + "7003": 0.002972973, + "7004": 0.003963964, + "7005": 0.004954955, + "7006": 0.0059459459, + "7007": 0.0069369369, + "7008": 0.0079279279, + "7009": 0.0089189189, + "7010": 0.0099099099, + "7011": 0.0109009009, + "7012": 0.0118918919, + "7013": 0.0128828829, + "7014": 0.0138738739, + "7015": 0.0148648649, + "7016": 0.0158558559, + "7017": 0.0168468468, + "7018": 0.0178378378, + "7019": 0.0188288288, + "7020": 0.0198198198, + "7021": 0.0208108108, + "7022": 0.0218018018, + "7023": 0.0227927928, + "7024": 0.0237837838, + "7025": 0.0247747748, + "7026": 0.0257657658, + "7027": 0.0267567568, + "7028": 0.0277477477, + "7029": 0.0287387387, + "7030": 0.0297297297, + "7031": 0.0307207207, + "7032": 0.0317117117, + "7033": 0.0327027027, + "7034": 0.0336936937, + "7035": 0.0346846847, + "7036": 0.0356756757, + "7037": 0.0366666667, + "7038": 0.0376576577, + "7039": 0.0386486486, + "7040": 0.0396396396, + "7041": 0.0406306306, + "7042": 0.0416216216, + "7043": 0.0426126126, + "7044": 0.0436036036, + "7045": 0.0445945946, + "7046": 0.0455855856, + "7047": 0.0465765766, + "7048": 0.0475675676, + "7049": 0.0485585586, + "7050": 0.0495495495, + "7051": 0.0505405405, + "7052": 0.0515315315, + "7053": 0.0525225225, + "7054": 0.0535135135, + "7055": 0.0545045045, + "7056": 0.0554954955, + "7057": 0.0564864865, + "7058": 0.0574774775, + "7059": 0.0584684685, + "7060": 0.0594594595, + "7061": 0.0604504505, + "7062": 0.0614414414, + "7063": 0.0624324324, + "7064": 0.0634234234, + "7065": 0.0644144144, + "7066": 0.0654054054, + "7067": 0.0663963964, + "7068": 0.0673873874, + "7069": 0.0683783784, + "7070": 0.0693693694, + "7071": 0.0703603604, + "7072": 0.0713513514, + "7073": 0.0723423423, + "7074": 0.0733333333, + "7075": 0.0743243243, + "7076": 0.0753153153, + "7077": 0.0763063063, + "7078": 0.0772972973, + "7079": 0.0782882883, + "7080": 0.0792792793, + "7081": 0.0802702703, + "7082": 0.0812612613, + "7083": 0.0822522523, + "7084": 0.0832432432, + "7085": 0.0842342342, + "7086": 0.0852252252, + "7087": 0.0862162162, + "7088": 0.0872072072, + "7089": 0.0881981982, + "7090": 0.0891891892, + "7091": 0.0901801802, + "7092": 0.0911711712, + "7093": 0.0921621622, + "7094": 0.0931531532, + "7095": 0.0941441441, + "7096": 0.0951351351, + "7097": 0.0961261261, + "7098": 0.0971171171, + "7099": 0.0981081081, + "7100": 0.0990990991, + "7101": 0.1000900901, + "7102": 0.1010810811, + "7103": 0.1020720721, + "7104": 0.1030630631, + "7105": 0.1040540541, + "7106": 0.105045045, + "7107": 0.106036036, + "7108": 0.107027027, + "7109": 0.108018018, + "7110": 0.109009009, + "7111": 0.11, + "7112": 0.110990991, + "7113": 0.111981982, + "7114": 0.112972973, + "7115": 0.113963964, + "7116": 0.114954955, + "7117": 0.1159459459, + "7118": 0.1169369369, + "7119": 0.1179279279, + "7120": 0.1189189189, + "7121": 0.1199099099, + "7122": 0.1209009009, + "7123": 0.1218918919, + "7124": 0.1228828829, + "7125": 0.1238738739, + "7126": 0.1248648649, + "7127": 0.1258558559, + "7128": 0.1268468468, + "7129": 0.1278378378, + "7130": 0.1288288288, + "7131": 0.1298198198, + "7132": 0.1308108108, + "7133": 0.1318018018, + "7134": 0.1327927928, + "7135": 0.1337837838, + "7136": 0.1347747748, + "7137": 0.1357657658, + "7138": 0.1367567568, + "7139": 0.1377477477, + "7140": 0.1387387387, + "7141": 0.1397297297, + "7142": 0.1407207207, + "7143": 0.1417117117, + "7144": 0.1427027027, + "7145": 0.1436936937, + "7146": 0.1446846847, + "7147": 0.1456756757, + "7148": 0.1466666667, + "7149": 0.1476576577, + "7150": 0.1486486486, + "7151": 0.1496396396, + "7152": 0.1506306306, + "7153": 0.1516216216, + "7154": 0.1526126126, + "7155": 0.1536036036, + "7156": 0.1545945946, + "7157": 0.1555855856, + "7158": 0.1565765766, + "7159": 0.1575675676, + "7160": 0.1585585586, + "7161": 0.1595495495, + "7162": 0.1605405405, + "7163": 0.1615315315, + "7164": 0.1625225225, + "7165": 0.1635135135, + "7166": 0.1645045045, + "7167": 0.1654954955, + "7168": 0.1664864865, + "7169": 0.1674774775, + "7170": 0.1684684685, + "7171": 0.1694594595, + "7172": 0.1704504505, + "7173": 0.1714414414, + "7174": 0.1724324324, + "7175": 0.1734234234, + "7176": 0.1744144144, + "7177": 0.1754054054, + "7178": 0.1763963964, + "7179": 0.1773873874, + "7180": 0.1783783784, + "7181": 0.1793693694, + "7182": 0.1803603604, + "7183": 0.1813513514, + "7184": 0.1823423423, + "7185": 0.1833333333, + "7186": 0.1843243243, + "7187": 0.1853153153, + "7188": 0.1863063063, + "7189": 0.1872972973, + "7190": 0.1882882883, + "7191": 0.1892792793, + "7192": 0.1902702703, + "7193": 0.1912612613, + "7194": 0.1922522523, + "7195": 0.1932432432, + "7196": 0.1942342342, + "7197": 0.1952252252, + "7198": 0.1962162162, + "7199": 0.1972072072, + "7200": 0.1981981982, + "7201": 0.1991891892, + "7202": 0.2001801802, + "7203": 0.2011711712, + "7204": 0.2021621622, + "7205": 0.2031531532, + "7206": 0.2041441441, + "7207": 0.2051351351, + "7208": 0.2061261261, + "7209": 0.2071171171, + "7210": 0.2081081081, + "7211": 0.2090990991, + "7212": 0.2100900901, + "7213": 0.2110810811, + "7214": 0.2120720721, + "7215": 0.2130630631, + "7216": 0.2140540541, + "7217": 0.215045045, + "7218": 0.216036036, + "7219": 0.217027027, + "7220": 0.218018018, + "7221": 0.219009009, + "7222": 0.22, + "7223": 0.220990991, + "7224": 0.221981982, + "7225": 0.222972973, + "7226": 0.223963964, + "7227": 0.224954955, + "7228": 0.2259459459, + "7229": 0.2269369369, + "7230": 0.2279279279, + "7231": 0.2289189189, + "7232": 0.2299099099, + "7233": 0.2309009009, + "7234": 0.2318918919, + "7235": 0.2328828829, + "7236": 0.2338738739, + "7237": 0.2348648649, + "7238": 0.2358558559, + "7239": 0.2368468468, + "7240": 0.2378378378, + "7241": 0.2388288288, + "7242": 0.2398198198, + "7243": 0.2408108108, + "7244": 0.2418018018, + "7245": 0.2427927928, + "7246": 0.2437837838, + "7247": 0.2447747748, + "7248": 0.2457657658, + "7249": 0.2467567568, + "7250": 0.2477477477, + "7251": 0.2487387387, + "7252": 0.2497297297, + "7253": 0.2507207207, + "7254": 0.2517117117, + "7255": 0.2527027027, + "7256": 0.2536936937, + "7257": 0.2546846847, + "7258": 0.2556756757, + "7259": 0.2566666667, + "7260": 0.2576576577, + "7261": 0.2586486486, + "7262": 0.2596396396, + "7263": 0.2606306306, + "7264": 0.2616216216, + "7265": 0.2626126126, + "7266": 0.2636036036, + "7267": 0.2645945946, + "7268": 0.2655855856, + "7269": 0.2665765766, + "7270": 0.2675675676, + "7271": 0.2685585586, + "7272": 0.2695495495, + "7273": 0.2705405405, + "7274": 0.2715315315, + "7275": 0.2725225225, + "7276": 0.2735135135, + "7277": 0.2745045045, + "7278": 0.2754954955, + "7279": 0.2764864865, + "7280": 0.2774774775, + "7281": 0.2784684685, + "7282": 0.2794594595, + "7283": 0.2804504505, + "7284": 0.2814414414, + "7285": 0.2824324324, + "7286": 0.2834234234, + "7287": 0.2844144144, + "7288": 0.2854054054, + "7289": 0.2863963964, + "7290": 0.2873873874, + "7291": 0.2883783784, + "7292": 0.2893693694, + "7293": 0.2903603604, + "7294": 0.2913513514, + "7295": 0.2923423423, + "7296": 0.2933333333, + "7297": 0.2943243243, + "7298": 0.2953153153, + "7299": 0.2963063063, + "7300": 0.2972972973, + "7301": 0.2982882883, + "7302": 0.2992792793, + "7303": 0.3002702703, + "7304": 0.3012612613, + "7305": 0.3022522523, + "7306": 0.3032432432, + "7307": 0.3042342342, + "7308": 0.3052252252, + "7309": 0.3062162162, + "7310": 0.3072072072, + "7311": 0.3081981982, + "7312": 0.3091891892, + "7313": 0.3101801802, + "7314": 0.3111711712, + "7315": 0.3121621622, + "7316": 0.3131531532, + "7317": 0.3141441441, + "7318": 0.3151351351, + "7319": 0.3161261261, + "7320": 0.3171171171, + "7321": 0.3181081081, + "7322": 0.3190990991, + "7323": 0.3200900901, + "7324": 0.3210810811, + "7325": 0.3220720721, + "7326": 0.3230630631, + "7327": 0.3240540541, + "7328": 0.325045045, + "7329": 0.326036036, + "7330": 0.327027027, + "7331": 0.328018018, + "7332": 0.329009009, + "7333": 0.33, + "7334": 0.330990991, + "7335": 0.331981982, + "7336": 0.332972973, + "7337": 0.333963964, + "7338": 0.334954955, + "7339": 0.3359459459, + "7340": 0.3369369369, + "7341": 0.3379279279, + "7342": 0.3389189189, + "7343": 0.3399099099, + "7344": 0.3409009009, + "7345": 0.3418918919, + "7346": 0.3428828829, + "7347": 0.3438738739, + "7348": 0.3448648649, + "7349": 0.3458558559, + "7350": 0.3468468468, + "7351": 0.3478378378, + "7352": 0.3488288288, + "7353": 0.3498198198, + "7354": 0.3508108108, + "7355": 0.3518018018, + "7356": 0.3527927928, + "7357": 0.3537837838, + "7358": 0.3547747748, + "7359": 0.3557657658, + "7360": 0.3567567568, + "7361": 0.3577477477, + "7362": 0.3587387387, + "7363": 0.3597297297, + "7364": 0.3607207207, + "7365": 0.3617117117, + "7366": 0.3627027027, + "7367": 0.3636936937, + "7368": 0.3646846847, + "7369": 0.3656756757, + "7370": 0.3666666667, + "7371": 0.3676576577, + "7372": 0.3686486486, + "7373": 0.3696396396, + "7374": 0.3706306306, + "7375": 0.3716216216, + "7376": 0.3726126126, + "7377": 0.3736036036, + "7378": 0.3745945946, + "7379": 0.3755855856, + "7380": 0.3765765766, + "7381": 0.3775675676, + "7382": 0.3785585586, + "7383": 0.3795495495, + "7384": 0.3805405405, + "7385": 0.3815315315, + "7386": 0.3825225225, + "7387": 0.3835135135, + "7388": 0.3845045045, + "7389": 0.3854954955, + "7390": 0.3864864865, + "7391": 0.3874774775, + "7392": 0.3884684685, + "7393": 0.3894594595, + "7394": 0.3904504505, + "7395": 0.3914414414, + "7396": 0.3924324324, + "7397": 0.3934234234, + "7398": 0.3944144144, + "7399": 0.3954054054, + "7400": 0.3963963964, + "7401": 0.3973873874, + "7402": 0.3983783784, + "7403": 0.3993693694, + "7404": 0.4003603604, + "7405": 0.4013513514, + "7406": 0.4023423423, + "7407": 0.4033333333, + "7408": 0.4043243243, + "7409": 0.4053153153, + "7410": 0.4063063063, + "7411": 0.4072972973, + "7412": 0.4082882883, + "7413": 0.4092792793, + "7414": 0.4102702703, + "7415": 0.4112612613, + "7416": 0.4122522523, + "7417": 0.4132432432, + "7418": 0.4142342342, + "7419": 0.4152252252, + "7420": 0.4162162162, + "7421": 0.4172072072, + "7422": 0.4181981982, + "7423": 0.4191891892, + "7424": 0.4201801802, + "7425": 0.4211711712, + "7426": 0.4221621622, + "7427": 0.4231531532, + "7428": 0.4241441441, + "7429": 0.4251351351, + "7430": 0.4261261261, + "7431": 0.4271171171, + "7432": 0.4281081081, + "7433": 0.4290990991, + "7434": 0.4300900901, + "7435": 0.4310810811, + "7436": 0.4320720721, + "7437": 0.4330630631, + "7438": 0.4340540541, + "7439": 0.435045045, + "7440": 0.436036036, + "7441": 0.437027027, + "7442": 0.438018018, + "7443": 0.439009009, + "7444": 0.44, + "7445": 0.440990991, + "7446": 0.441981982, + "7447": 0.442972973, + "7448": 0.443963964, + "7449": 0.444954955, + "7450": 0.4459459459, + "7451": 0.4469369369, + "7452": 0.4479279279, + "7453": 0.4489189189, + "7454": 0.4499099099, + "7455": 0.4509009009, + "7456": 0.4518918919, + "7457": 0.4528828829, + "7458": 0.4538738739, + "7459": 0.4548648649, + "7460": 0.4558558559, + "7461": 0.4568468468, + "7462": 0.4578378378, + "7463": 0.4588288288, + "7464": 0.4598198198, + "7465": 0.4608108108, + "7466": 0.4618018018, + "7467": 0.4627927928, + "7468": 0.4637837838, + "7469": 0.4647747748, + "7470": 0.4657657658, + "7471": 0.4667567568, + "7472": 0.4677477477, + "7473": 0.4687387387, + "7474": 0.4697297297, + "7475": 0.4707207207, + "7476": 0.4717117117, + "7477": 0.4727027027, + "7478": 0.4736936937, + "7479": 0.4746846847, + "7480": 0.4756756757, + "7481": 0.4766666667, + "7482": 0.4776576577, + "7483": 0.4786486486, + "7484": 0.4796396396, + "7485": 0.4806306306, + "7486": 0.4816216216, + "7487": 0.4826126126, + "7488": 0.4836036036, + "7489": 0.4845945946, + "7490": 0.4855855856, + "7491": 0.4865765766, + "7492": 0.4875675676, + "7493": 0.4885585586, + "7494": 0.4895495495, + "7495": 0.4905405405, + "7496": 0.4915315315, + "7497": 0.4925225225, + "7498": 0.4935135135, + "7499": 0.4945045045, + "7500": 0.4954954955, + "7501": 0.4964864865, + "7502": 0.4974774775, + "7503": 0.4984684685, + "7504": 0.4994594595, + "7505": 0.5004504505, + "7506": 0.5014414414, + "7507": 0.5024324324, + "7508": 0.5034234234, + "7509": 0.5044144144, + "7510": 0.5054054054, + "7511": 0.5063963964, + "7512": 0.5073873874, + "7513": 0.5083783784, + "7514": 0.5093693694, + "7515": 0.5103603604, + "7516": 0.5113513514, + "7517": 0.5123423423, + "7518": 0.5133333333, + "7519": 0.5143243243, + "7520": 0.5153153153, + "7521": 0.5163063063, + "7522": 0.5172972973, + "7523": 0.5182882883, + "7524": 0.5192792793, + "7525": 0.5202702703, + "7526": 0.5212612613, + "7527": 0.5222522523, + "7528": 0.5232432432, + "7529": 0.5242342342, + "7530": 0.5252252252, + "7531": 0.5262162162, + "7532": 0.5272072072, + "7533": 0.5281981982, + "7534": 0.5291891892, + "7535": 0.5301801802, + "7536": 0.5311711712, + "7537": 0.5321621622, + "7538": 0.5331531532, + "7539": 0.5341441441, + "7540": 0.5351351351, + "7541": 0.5361261261, + "7542": 0.5371171171, + "7543": 0.5381081081, + "7544": 0.5390990991, + "7545": 0.5400900901, + "7546": 0.5410810811, + "7547": 0.5420720721, + "7548": 0.5430630631, + "7549": 0.5440540541, + "7550": 0.545045045, + "7551": 0.546036036, + "7552": 0.547027027, + "7553": 0.548018018, + "7554": 0.549009009, + "7555": 0.55, + "7556": 0.550990991, + "7557": 0.551981982, + "7558": 0.552972973, + "7559": 0.553963964, + "7560": 0.554954955, + "7561": 0.5559459459, + "7562": 0.5569369369, + "7563": 0.5579279279, + "7564": 0.5589189189, + "7565": 0.5599099099, + "7566": 0.5609009009, + "7567": 0.5618918919, + "7568": 0.5628828829, + "7569": 0.5638738739, + "7570": 0.5648648649, + "7571": 0.5658558559, + "7572": 0.5668468468, + "7573": 0.5678378378, + "7574": 0.5688288288, + "7575": 0.5698198198, + "7576": 0.5708108108, + "7577": 0.5718018018, + "7578": 0.5727927928, + "7579": 0.5737837838, + "7580": 0.5747747748, + "7581": 0.5757657658, + "7582": 0.5767567568, + "7583": 0.5777477477, + "7584": 0.5787387387, + "7585": 0.5797297297, + "7586": 0.5807207207, + "7587": 0.5817117117, + "7588": 0.5827027027, + "7589": 0.5836936937, + "7590": 0.5846846847, + "7591": 0.5856756757, + "7592": 0.5866666667, + "7593": 0.5876576577, + "7594": 0.5886486486, + "7595": 0.5896396396, + "7596": 0.5906306306, + "7597": 0.5916216216, + "7598": 0.5926126126, + "7599": 0.5936036036, + "7600": 0.5945945946, + "7601": 0.5955855856, + "7602": 0.5965765766, + "7603": 0.5975675676, + "7604": 0.5985585586, + "7605": 0.5995495495, + "7606": 0.6005405405, + "7607": 0.6015315315, + "7608": 0.6025225225, + "7609": 0.6035135135, + "7610": 0.6045045045, + "7611": 0.6054954955, + "7612": 0.6064864865, + "7613": 0.6074774775, + "7614": 0.6084684685, + "7615": 0.6094594595, + "7616": 0.6104504505, + "7617": 0.6114414414, + "7618": 0.6124324324, + "7619": 0.6134234234, + "7620": 0.6144144144, + "7621": 0.6154054054, + "7622": 0.6163963964, + "7623": 0.6173873874, + "7624": 0.6183783784, + "7625": 0.6193693694, + "7626": 0.6203603604, + "7627": 0.6213513514, + "7628": 0.6223423423, + "7629": 0.6233333333, + "7630": 0.6243243243, + "7631": 0.6253153153, + "7632": 0.6263063063, + "7633": 0.6272972973, + "7634": 0.6282882883, + "7635": 0.6292792793, + "7636": 0.6302702703, + "7637": 0.6312612613, + "7638": 0.6322522523, + "7639": 0.6332432432, + "7640": 0.6342342342, + "7641": 0.6352252252, + "7642": 0.6362162162, + "7643": 0.6372072072, + "7644": 0.6381981982, + "7645": 0.6391891892, + "7646": 0.6401801802, + "7647": 0.6411711712, + "7648": 0.6421621622, + "7649": 0.6431531532, + "7650": 0.6441441441, + "7651": 0.6451351351, + "7652": 0.6461261261, + "7653": 0.6471171171, + "7654": 0.6481081081, + "7655": 0.6490990991, + "7656": 0.6500900901, + "7657": 0.6510810811, + "7658": 0.6520720721, + "7659": 0.6530630631, + "7660": 0.6540540541, + "7661": 0.655045045, + "7662": 0.656036036, + "7663": 0.657027027, + "7664": 0.658018018, + "7665": 0.659009009, + "7666": 0.66, + "7667": 0.660990991, + "7668": 0.661981982, + "7669": 0.662972973, + "7670": 0.663963964, + "7671": 0.664954955, + "7672": 0.6659459459, + "7673": 0.6669369369, + "7674": 0.6679279279, + "7675": 0.6689189189, + "7676": 0.6699099099, + "7677": 0.6709009009, + "7678": 0.6718918919, + "7679": 0.6728828829, + "7680": 0.6738738739, + "7681": 0.6748648649, + "7682": 0.6758558559, + "7683": 0.6768468468, + "7684": 0.6778378378, + "7685": 0.6788288288, + "7686": 0.6798198198, + "7687": 0.6808108108, + "7688": 0.6818018018, + "7689": 0.6827927928, + "7690": 0.6837837838, + "7691": 0.6847747748, + "7692": 0.6857657658, + "7693": 0.6867567568, + "7694": 0.6877477477, + "7695": 0.6887387387, + "7696": 0.6897297297, + "7697": 0.6907207207, + "7698": 0.6917117117, + "7699": 0.6927027027, + "7700": 0.6936936937, + "7701": 0.6946846847, + "7702": 0.6956756757, + "7703": 0.6966666667, + "7704": 0.6976576577, + "7705": 0.6986486486, + "7706": 0.6996396396, + "7707": 0.7006306306, + "7708": 0.7016216216, + "7709": 0.7026126126, + "7710": 0.7036036036, + "7711": 0.7045945946, + "7712": 0.7055855856, + "7713": 0.7065765766, + "7714": 0.7075675676, + "7715": 0.7085585586, + "7716": 0.7095495495, + "7717": 0.7105405405, + "7718": 0.7115315315, + "7719": 0.7125225225, + "7720": 0.7135135135, + "7721": 0.7145045045, + "7722": 0.7154954955, + "7723": 0.7164864865, + "7724": 0.7174774775, + "7725": 0.7184684685, + "7726": 0.7194594595, + "7727": 0.7204504505, + "7728": 0.7214414414, + "7729": 0.7224324324, + "7730": 0.7234234234, + "7731": 0.7244144144, + "7732": 0.7254054054, + "7733": 0.7263963964, + "7734": 0.7273873874, + "7735": 0.7283783784, + "7736": 0.7293693694, + "7737": 0.7303603604, + "7738": 0.7313513514, + "7739": 0.7323423423, + "7740": 0.7333333333, + "7741": 0.7343243243, + "7742": 0.7353153153, + "7743": 0.7363063063, + "7744": 0.7372972973, + "7745": 0.7382882883, + "7746": 0.7392792793, + "7747": 0.7402702703, + "7748": 0.7412612613, + "7749": 0.7422522523, + "7750": 0.7432432432, + "7751": 0.7442342342, + "7752": 0.7452252252, + "7753": 0.7462162162, + "7754": 0.7472072072, + "7755": 0.7481981982, + "7756": 0.7491891892, + "7757": 0.7501801802, + "7758": 0.7511711712, + "7759": 0.7521621622, + "7760": 0.7531531532, + "7761": 0.7541441441, + "7762": 0.7551351351, + "7763": 0.7561261261, + "7764": 0.7571171171, + "7765": 0.7581081081, + "7766": 0.7590990991, + "7767": 0.7600900901, + "7768": 0.7610810811, + "7769": 0.7620720721, + "7770": 0.7630630631, + "7771": 0.7640540541, + "7772": 0.765045045, + "7773": 0.766036036, + "7774": 0.767027027, + "7775": 0.768018018, + "7776": 0.769009009, + "7777": 0.77, + "7778": 0.770990991, + "7779": 0.771981982, + "7780": 0.772972973, + "7781": 0.773963964, + "7782": 0.774954955, + "7783": 0.7759459459, + "7784": 0.7769369369, + "7785": 0.7779279279, + "7786": 0.7789189189, + "7787": 0.7799099099, + "7788": 0.7809009009, + "7789": 0.7818918919, + "7790": 0.7828828829, + "7791": 0.7838738739, + "7792": 0.7848648649, + "7793": 0.7858558559, + "7794": 0.7868468468, + "7795": 0.7878378378, + "7796": 0.7888288288, + "7797": 0.7898198198, + "7798": 0.7908108108, + "7799": 0.7918018018, + "7800": 0.7927927928, + "7801": 0.7937837838, + "7802": 0.7947747748, + "7803": 0.7957657658, + "7804": 0.7967567568, + "7805": 0.7977477477, + "7806": 0.7987387387, + "7807": 0.7997297297, + "7808": 0.8007207207, + "7809": 0.8017117117, + "7810": 0.8027027027, + "7811": 0.8036936937, + "7812": 0.8046846847, + "7813": 0.8056756757, + "7814": 0.8066666667, + "7815": 0.8076576577, + "7816": 0.8086486486, + "7817": 0.8096396396, + "7818": 0.8106306306, + "7819": 0.8116216216, + "7820": 0.8126126126, + "7821": 0.8136036036, + "7822": 0.8145945946, + "7823": 0.8155855856, + "7824": 0.8165765766, + "7825": 0.8175675676, + "7826": 0.8185585586, + "7827": 0.8195495495, + "7828": 0.8205405405, + "7829": 0.8215315315, + "7830": 0.8225225225, + "7831": 0.8235135135, + "7832": 0.8245045045, + "7833": 0.8254954955, + "7834": 0.8264864865, + "7835": 0.8274774775, + "7836": 0.8284684685, + "7837": 0.8294594595, + "7838": 0.8304504505, + "7839": 0.8314414414, + "7840": 0.8324324324, + "7841": 0.8334234234, + "7842": 0.8344144144, + "7843": 0.8354054054, + "7844": 0.8363963964, + "7845": 0.8373873874, + "7846": 0.8383783784, + "7847": 0.8393693694, + "7848": 0.8403603604, + "7849": 0.8413513514, + "7850": 0.8423423423, + "7851": 0.8433333333, + "7852": 0.8443243243, + "7853": 0.8453153153, + "7854": 0.8463063063, + "7855": 0.8472972973, + "7856": 0.8482882883, + "7857": 0.8492792793, + "7858": 0.8502702703, + "7859": 0.8512612613, + "7860": 0.8522522523, + "7861": 0.8532432432, + "7862": 0.8542342342, + "7863": 0.8552252252, + "7864": 0.8562162162, + "7865": 0.8572072072, + "7866": 0.8581981982, + "7867": 0.8591891892, + "7868": 0.8601801802, + "7869": 0.8611711712, + "7870": 0.8621621622, + "7871": 0.8631531532, + "7872": 0.8641441441, + "7873": 0.8651351351, + "7874": 0.8661261261, + "7875": 0.8671171171, + "7876": 0.8681081081, + "7877": 0.8690990991, + "7878": 0.8700900901, + "7879": 0.8710810811, + "7880": 0.8720720721, + "7881": 0.8730630631, + "7882": 0.8740540541, + "7883": 0.875045045, + "7884": 0.876036036, + "7885": 0.877027027, + "7886": 0.878018018, + "7887": 0.879009009, + "7888": 0.88, + "7889": 0.880990991, + "7890": 0.881981982, + "7891": 0.882972973, + "7892": 0.883963964, + "7893": 0.884954955, + "7894": 0.8859459459, + "7895": 0.8869369369, + "7896": 0.8879279279, + "7897": 0.8889189189, + "7898": 0.8899099099, + "7899": 0.8909009009, + "7900": 0.8918918919, + "7901": 0.8928828829, + "7902": 0.8938738739, + "7903": 0.8948648649, + "7904": 0.8958558559, + "7905": 0.8968468468, + "7906": 0.8978378378, + "7907": 0.8988288288, + "7908": 0.8998198198, + "7909": 0.9008108108, + "7910": 0.9018018018, + "7911": 0.9027927928, + "7912": 0.9037837838, + "7913": 0.9047747748, + "7914": 0.9057657658, + "7915": 0.9067567568, + "7916": 0.9077477477, + "7917": 0.9087387387, + "7918": 0.9097297297, + "7919": 0.9107207207, + "7920": 0.9117117117, + "7921": 0.9127027027, + "7922": 0.9136936937, + "7923": 0.9146846847, + "7924": 0.9156756757, + "7925": 0.9166666667, + "7926": 0.9176576577, + "7927": 0.9186486486, + "7928": 0.9196396396, + "7929": 0.9206306306, + "7930": 0.9216216216, + "7931": 0.9226126126, + "7932": 0.9236036036, + "7933": 0.9245945946, + "7934": 0.9255855856, + "7935": 0.9265765766, + "7936": 0.9275675676, + "7937": 0.9285585586, + "7938": 0.9295495495, + "7939": 0.9305405405, + "7940": 0.9315315315, + "7941": 0.9325225225, + "7942": 0.9335135135, + "7943": 0.9345045045, + "7944": 0.9354954955, + "7945": 0.9364864865, + "7946": 0.9374774775, + "7947": 0.9384684685, + "7948": 0.9394594595, + "7949": 0.9404504505, + "7950": 0.9414414414, + "7951": 0.9424324324, + "7952": 0.9434234234, + "7953": 0.9444144144, + "7954": 0.9454054054, + "7955": 0.9463963964, + "7956": 0.9473873874, + "7957": 0.9483783784, + "7958": 0.9493693694, + "7959": 0.9503603604, + "7960": 0.9513513514, + "7961": 0.9523423423, + "7962": 0.9533333333, + "7963": 0.9543243243, + "7964": 0.9553153153, + "7965": 0.9563063063, + "7966": 0.9572972973, + "7967": 0.9582882883, + "7968": 0.9592792793, + "7969": 0.9602702703, + "7970": 0.9612612613, + "7971": 0.9622522523, + "7972": 0.9632432432, + "7973": 0.9642342342, + "7974": 0.9652252252, + "7975": 0.9662162162, + "7976": 0.9672072072, + "7977": 0.9681981982, + "7978": 0.9691891892, + "7979": 0.9701801802, + "7980": 0.9711711712, + "7981": 0.9721621622, + "7982": 0.9731531532, + "7983": 0.9741441441, + "7984": 0.9751351351, + "7985": 0.9761261261, + "7986": 0.9771171171, + "7987": 0.9781081081, + "7988": 0.9790990991, + "7989": 0.9800900901, + "7990": 0.9810810811, + "7991": 0.9820720721, + "7992": 0.9830630631, + "7993": 0.9840540541, + "7994": 0.985045045, + "7995": 0.986036036, + "7996": 0.987027027, + "7997": 0.988018018, + "7998": 0.989009009, + "7999": 0.99, + "8000": 0.0, + "8001": 0.000990991, + "8002": 0.001981982, + "8003": 0.002972973, + "8004": 0.003963964, + "8005": 0.004954955, + "8006": 0.0059459459, + "8007": 0.0069369369, + "8008": 0.0079279279, + "8009": 0.0089189189, + "8010": 0.0099099099, + "8011": 0.0109009009, + "8012": 0.0118918919, + "8013": 0.0128828829, + "8014": 0.0138738739, + "8015": 0.0148648649, + "8016": 0.0158558559, + "8017": 0.0168468468, + "8018": 0.0178378378, + "8019": 0.0188288288, + "8020": 0.0198198198, + "8021": 0.0208108108, + "8022": 0.0218018018, + "8023": 0.0227927928, + "8024": 0.0237837838, + "8025": 0.0247747748, + "8026": 0.0257657658, + "8027": 0.0267567568, + "8028": 0.0277477477, + "8029": 0.0287387387, + "8030": 0.0297297297, + "8031": 0.0307207207, + "8032": 0.0317117117, + "8033": 0.0327027027, + "8034": 0.0336936937, + "8035": 0.0346846847, + "8036": 0.0356756757, + "8037": 0.0366666667, + "8038": 0.0376576577, + "8039": 0.0386486486, + "8040": 0.0396396396, + "8041": 0.0406306306, + "8042": 0.0416216216, + "8043": 0.0426126126, + "8044": 0.0436036036, + "8045": 0.0445945946, + "8046": 0.0455855856, + "8047": 0.0465765766, + "8048": 0.0475675676, + "8049": 0.0485585586, + "8050": 0.0495495495, + "8051": 0.0505405405, + "8052": 0.0515315315, + "8053": 0.0525225225, + "8054": 0.0535135135, + "8055": 0.0545045045, + "8056": 0.0554954955, + "8057": 0.0564864865, + "8058": 0.0574774775, + "8059": 0.0584684685, + "8060": 0.0594594595, + "8061": 0.0604504505, + "8062": 0.0614414414, + "8063": 0.0624324324, + "8064": 0.0634234234, + "8065": 0.0644144144, + "8066": 0.0654054054, + "8067": 0.0663963964, + "8068": 0.0673873874, + "8069": 0.0683783784, + "8070": 0.0693693694, + "8071": 0.0703603604, + "8072": 0.0713513514, + "8073": 0.0723423423, + "8074": 0.0733333333, + "8075": 0.0743243243, + "8076": 0.0753153153, + "8077": 0.0763063063, + "8078": 0.0772972973, + "8079": 0.0782882883, + "8080": 0.0792792793, + "8081": 0.0802702703, + "8082": 0.0812612613, + "8083": 0.0822522523, + "8084": 0.0832432432, + "8085": 0.0842342342, + "8086": 0.0852252252, + "8087": 0.0862162162, + "8088": 0.0872072072, + "8089": 0.0881981982, + "8090": 0.0891891892, + "8091": 0.0901801802, + "8092": 0.0911711712, + "8093": 0.0921621622, + "8094": 0.0931531532, + "8095": 0.0941441441, + "8096": 0.0951351351, + "8097": 0.0961261261, + "8098": 0.0971171171, + "8099": 0.0981081081, + "8100": 0.0990990991, + "8101": 0.1000900901, + "8102": 0.1010810811, + "8103": 0.1020720721, + "8104": 0.1030630631, + "8105": 0.1040540541, + "8106": 0.105045045, + "8107": 0.106036036, + "8108": 0.107027027, + "8109": 0.108018018, + "8110": 0.109009009, + "8111": 0.11, + "8112": 0.110990991, + "8113": 0.111981982, + "8114": 0.112972973, + "8115": 0.113963964, + "8116": 0.114954955, + "8117": 0.1159459459, + "8118": 0.1169369369, + "8119": 0.1179279279, + "8120": 0.1189189189, + "8121": 0.1199099099, + "8122": 0.1209009009, + "8123": 0.1218918919, + "8124": 0.1228828829, + "8125": 0.1238738739, + "8126": 0.1248648649, + "8127": 0.1258558559, + "8128": 0.1268468468, + "8129": 0.1278378378, + "8130": 0.1288288288, + "8131": 0.1298198198, + "8132": 0.1308108108, + "8133": 0.1318018018, + "8134": 0.1327927928, + "8135": 0.1337837838, + "8136": 0.1347747748, + "8137": 0.1357657658, + "8138": 0.1367567568, + "8139": 0.1377477477, + "8140": 0.1387387387, + "8141": 0.1397297297, + "8142": 0.1407207207, + "8143": 0.1417117117, + "8144": 0.1427027027, + "8145": 0.1436936937, + "8146": 0.1446846847, + "8147": 0.1456756757, + "8148": 0.1466666667, + "8149": 0.1476576577, + "8150": 0.1486486486, + "8151": 0.1496396396, + "8152": 0.1506306306, + "8153": 0.1516216216, + "8154": 0.1526126126, + "8155": 0.1536036036, + "8156": 0.1545945946, + "8157": 0.1555855856, + "8158": 0.1565765766, + "8159": 0.1575675676, + "8160": 0.1585585586, + "8161": 0.1595495495, + "8162": 0.1605405405, + "8163": 0.1615315315, + "8164": 0.1625225225, + "8165": 0.1635135135, + "8166": 0.1645045045, + "8167": 0.1654954955, + "8168": 0.1664864865, + "8169": 0.1674774775, + "8170": 0.1684684685, + "8171": 0.1694594595, + "8172": 0.1704504505, + "8173": 0.1714414414, + "8174": 0.1724324324, + "8175": 0.1734234234, + "8176": 0.1744144144, + "8177": 0.1754054054, + "8178": 0.1763963964, + "8179": 0.1773873874, + "8180": 0.1783783784, + "8181": 0.1793693694, + "8182": 0.1803603604, + "8183": 0.1813513514, + "8184": 0.1823423423, + "8185": 0.1833333333, + "8186": 0.1843243243, + "8187": 0.1853153153, + "8188": 0.1863063063, + "8189": 0.1872972973, + "8190": 0.1882882883, + "8191": 0.1892792793, + "8192": 0.1902702703, + "8193": 0.1912612613, + "8194": 0.1922522523, + "8195": 0.1932432432, + "8196": 0.1942342342, + "8197": 0.1952252252, + "8198": 0.1962162162, + "8199": 0.1972072072, + "8200": 0.1981981982, + "8201": 0.1991891892, + "8202": 0.2001801802, + "8203": 0.2011711712, + "8204": 0.2021621622, + "8205": 0.2031531532, + "8206": 0.2041441441, + "8207": 0.2051351351, + "8208": 0.2061261261, + "8209": 0.2071171171, + "8210": 0.2081081081, + "8211": 0.2090990991, + "8212": 0.2100900901, + "8213": 0.2110810811, + "8214": 0.2120720721, + "8215": 0.2130630631, + "8216": 0.2140540541, + "8217": 0.215045045, + "8218": 0.216036036, + "8219": 0.217027027, + "8220": 0.218018018, + "8221": 0.219009009, + "8222": 0.22, + "8223": 0.220990991, + "8224": 0.221981982, + "8225": 0.222972973, + "8226": 0.223963964, + "8227": 0.224954955, + "8228": 0.2259459459, + "8229": 0.2269369369, + "8230": 0.2279279279, + "8231": 0.2289189189, + "8232": 0.2299099099, + "8233": 0.2309009009, + "8234": 0.2318918919, + "8235": 0.2328828829, + "8236": 0.2338738739, + "8237": 0.2348648649, + "8238": 0.2358558559, + "8239": 0.2368468468, + "8240": 0.2378378378, + "8241": 0.2388288288, + "8242": 0.2398198198, + "8243": 0.2408108108, + "8244": 0.2418018018, + "8245": 0.2427927928, + "8246": 0.2437837838, + "8247": 0.2447747748, + "8248": 0.2457657658, + "8249": 0.2467567568, + "8250": 0.2477477477, + "8251": 0.2487387387, + "8252": 0.2497297297, + "8253": 0.2507207207, + "8254": 0.2517117117, + "8255": 0.2527027027, + "8256": 0.2536936937, + "8257": 0.2546846847, + "8258": 0.2556756757, + "8259": 0.2566666667, + "8260": 0.2576576577, + "8261": 0.2586486486, + "8262": 0.2596396396, + "8263": 0.2606306306, + "8264": 0.2616216216, + "8265": 0.2626126126, + "8266": 0.2636036036, + "8267": 0.2645945946, + "8268": 0.2655855856, + "8269": 0.2665765766, + "8270": 0.2675675676, + "8271": 0.2685585586, + "8272": 0.2695495495, + "8273": 0.2705405405, + "8274": 0.2715315315, + "8275": 0.2725225225, + "8276": 0.2735135135, + "8277": 0.2745045045, + "8278": 0.2754954955, + "8279": 0.2764864865, + "8280": 0.2774774775, + "8281": 0.2784684685, + "8282": 0.2794594595, + "8283": 0.2804504505, + "8284": 0.2814414414, + "8285": 0.2824324324, + "8286": 0.2834234234, + "8287": 0.2844144144, + "8288": 0.2854054054, + "8289": 0.2863963964, + "8290": 0.2873873874, + "8291": 0.2883783784, + "8292": 0.2893693694, + "8293": 0.2903603604, + "8294": 0.2913513514, + "8295": 0.2923423423, + "8296": 0.2933333333, + "8297": 0.2943243243, + "8298": 0.2953153153, + "8299": 0.2963063063, + "8300": 0.2972972973, + "8301": 0.2982882883, + "8302": 0.2992792793, + "8303": 0.3002702703, + "8304": 0.3012612613, + "8305": 0.3022522523, + "8306": 0.3032432432, + "8307": 0.3042342342, + "8308": 0.3052252252, + "8309": 0.3062162162, + "8310": 0.3072072072, + "8311": 0.3081981982, + "8312": 0.3091891892, + "8313": 0.3101801802, + "8314": 0.3111711712, + "8315": 0.3121621622, + "8316": 0.3131531532, + "8317": 0.3141441441, + "8318": 0.3151351351, + "8319": 0.3161261261, + "8320": 0.3171171171, + "8321": 0.3181081081, + "8322": 0.3190990991, + "8323": 0.3200900901, + "8324": 0.3210810811, + "8325": 0.3220720721, + "8326": 0.3230630631, + "8327": 0.3240540541, + "8328": 0.325045045, + "8329": 0.326036036, + "8330": 0.327027027, + "8331": 0.328018018, + "8332": 0.329009009, + "8333": 0.33, + "8334": 0.330990991, + "8335": 0.331981982, + "8336": 0.332972973, + "8337": 0.333963964, + "8338": 0.334954955, + "8339": 0.3359459459, + "8340": 0.3369369369, + "8341": 0.3379279279, + "8342": 0.3389189189, + "8343": 0.3399099099, + "8344": 0.3409009009, + "8345": 0.3418918919, + "8346": 0.3428828829, + "8347": 0.3438738739, + "8348": 0.3448648649, + "8349": 0.3458558559, + "8350": 0.3468468468, + "8351": 0.3478378378, + "8352": 0.3488288288, + "8353": 0.3498198198, + "8354": 0.3508108108, + "8355": 0.3518018018, + "8356": 0.3527927928, + "8357": 0.3537837838, + "8358": 0.3547747748, + "8359": 0.3557657658, + "8360": 0.3567567568, + "8361": 0.3577477477, + "8362": 0.3587387387, + "8363": 0.3597297297, + "8364": 0.3607207207, + "8365": 0.3617117117, + "8366": 0.3627027027, + "8367": 0.3636936937, + "8368": 0.3646846847, + "8369": 0.3656756757, + "8370": 0.3666666667, + "8371": 0.3676576577, + "8372": 0.3686486486, + "8373": 0.3696396396, + "8374": 0.3706306306, + "8375": 0.3716216216, + "8376": 0.3726126126, + "8377": 0.3736036036, + "8378": 0.3745945946, + "8379": 0.3755855856, + "8380": 0.3765765766, + "8381": 0.3775675676, + "8382": 0.3785585586, + "8383": 0.3795495495, + "8384": 0.3805405405, + "8385": 0.3815315315, + "8386": 0.3825225225, + "8387": 0.3835135135, + "8388": 0.3845045045, + "8389": 0.3854954955, + "8390": 0.3864864865, + "8391": 0.3874774775, + "8392": 0.3884684685, + "8393": 0.3894594595, + "8394": 0.3904504505, + "8395": 0.3914414414, + "8396": 0.3924324324, + "8397": 0.3934234234, + "8398": 0.3944144144, + "8399": 0.3954054054, + "8400": 0.3963963964, + "8401": 0.3973873874, + "8402": 0.3983783784, + "8403": 0.3993693694, + "8404": 0.4003603604, + "8405": 0.4013513514, + "8406": 0.4023423423, + "8407": 0.4033333333, + "8408": 0.4043243243, + "8409": 0.4053153153, + "8410": 0.4063063063, + "8411": 0.4072972973, + "8412": 0.4082882883, + "8413": 0.4092792793, + "8414": 0.4102702703, + "8415": 0.4112612613, + "8416": 0.4122522523, + "8417": 0.4132432432, + "8418": 0.4142342342, + "8419": 0.4152252252, + "8420": 0.4162162162, + "8421": 0.4172072072, + "8422": 0.4181981982, + "8423": 0.4191891892, + "8424": 0.4201801802, + "8425": 0.4211711712, + "8426": 0.4221621622, + "8427": 0.4231531532, + "8428": 0.4241441441, + "8429": 0.4251351351, + "8430": 0.4261261261, + "8431": 0.4271171171, + "8432": 0.4281081081, + "8433": 0.4290990991, + "8434": 0.4300900901, + "8435": 0.4310810811, + "8436": 0.4320720721, + "8437": 0.4330630631, + "8438": 0.4340540541, + "8439": 0.435045045, + "8440": 0.436036036, + "8441": 0.437027027, + "8442": 0.438018018, + "8443": 0.439009009, + "8444": 0.44, + "8445": 0.440990991, + "8446": 0.441981982, + "8447": 0.442972973, + "8448": 0.443963964, + "8449": 0.444954955, + "8450": 0.4459459459, + "8451": 0.4469369369, + "8452": 0.4479279279, + "8453": 0.4489189189, + "8454": 0.4499099099, + "8455": 0.4509009009, + "8456": 0.4518918919, + "8457": 0.4528828829, + "8458": 0.4538738739, + "8459": 0.4548648649, + "8460": 0.4558558559, + "8461": 0.4568468468, + "8462": 0.4578378378, + "8463": 0.4588288288, + "8464": 0.4598198198, + "8465": 0.4608108108, + "8466": 0.4618018018, + "8467": 0.4627927928, + "8468": 0.4637837838, + "8469": 0.4647747748, + "8470": 0.4657657658, + "8471": 0.4667567568, + "8472": 0.4677477477, + "8473": 0.4687387387, + "8474": 0.4697297297, + "8475": 0.4707207207, + "8476": 0.4717117117, + "8477": 0.4727027027, + "8478": 0.4736936937, + "8479": 0.4746846847, + "8480": 0.4756756757, + "8481": 0.4766666667, + "8482": 0.4776576577, + "8483": 0.4786486486, + "8484": 0.4796396396, + "8485": 0.4806306306, + "8486": 0.4816216216, + "8487": 0.4826126126, + "8488": 0.4836036036, + "8489": 0.4845945946, + "8490": 0.4855855856, + "8491": 0.4865765766, + "8492": 0.4875675676, + "8493": 0.4885585586, + "8494": 0.4895495495, + "8495": 0.4905405405, + "8496": 0.4915315315, + "8497": 0.4925225225, + "8498": 0.4935135135, + "8499": 0.4945045045, + "8500": 0.4954954955, + "8501": 0.4964864865, + "8502": 0.4974774775, + "8503": 0.4984684685, + "8504": 0.4994594595, + "8505": 0.5004504505, + "8506": 0.5014414414, + "8507": 0.5024324324, + "8508": 0.5034234234, + "8509": 0.5044144144, + "8510": 0.5054054054, + "8511": 0.5063963964, + "8512": 0.5073873874, + "8513": 0.5083783784, + "8514": 0.5093693694, + "8515": 0.5103603604, + "8516": 0.5113513514, + "8517": 0.5123423423, + "8518": 0.5133333333, + "8519": 0.5143243243, + "8520": 0.5153153153, + "8521": 0.5163063063, + "8522": 0.5172972973, + "8523": 0.5182882883, + "8524": 0.5192792793, + "8525": 0.5202702703, + "8526": 0.5212612613, + "8527": 0.5222522523, + "8528": 0.5232432432, + "8529": 0.5242342342, + "8530": 0.5252252252, + "8531": 0.5262162162, + "8532": 0.5272072072, + "8533": 0.5281981982, + "8534": 0.5291891892, + "8535": 0.5301801802, + "8536": 0.5311711712, + "8537": 0.5321621622, + "8538": 0.5331531532, + "8539": 0.5341441441, + "8540": 0.5351351351, + "8541": 0.5361261261, + "8542": 0.5371171171, + "8543": 0.5381081081, + "8544": 0.5390990991, + "8545": 0.5400900901, + "8546": 0.5410810811, + "8547": 0.5420720721, + "8548": 0.5430630631, + "8549": 0.5440540541, + "8550": 0.545045045, + "8551": 0.546036036, + "8552": 0.547027027, + "8553": 0.548018018, + "8554": 0.549009009, + "8555": 0.55, + "8556": 0.550990991, + "8557": 0.551981982, + "8558": 0.552972973, + "8559": 0.553963964, + "8560": 0.554954955, + "8561": 0.5559459459, + "8562": 0.5569369369, + "8563": 0.5579279279, + "8564": 0.5589189189, + "8565": 0.5599099099, + "8566": 0.5609009009, + "8567": 0.5618918919, + "8568": 0.5628828829, + "8569": 0.5638738739, + "8570": 0.5648648649, + "8571": 0.5658558559, + "8572": 0.5668468468, + "8573": 0.5678378378, + "8574": 0.5688288288, + "8575": 0.5698198198, + "8576": 0.5708108108, + "8577": 0.5718018018, + "8578": 0.5727927928, + "8579": 0.5737837838, + "8580": 0.5747747748, + "8581": 0.5757657658, + "8582": 0.5767567568, + "8583": 0.5777477477, + "8584": 0.5787387387, + "8585": 0.5797297297, + "8586": 0.5807207207, + "8587": 0.5817117117, + "8588": 0.5827027027, + "8589": 0.5836936937, + "8590": 0.5846846847, + "8591": 0.5856756757, + "8592": 0.5866666667, + "8593": 0.5876576577, + "8594": 0.5886486486, + "8595": 0.5896396396, + "8596": 0.5906306306, + "8597": 0.5916216216, + "8598": 0.5926126126, + "8599": 0.5936036036, + "8600": 0.5945945946, + "8601": 0.5955855856, + "8602": 0.5965765766, + "8603": 0.5975675676, + "8604": 0.5985585586, + "8605": 0.5995495495, + "8606": 0.6005405405, + "8607": 0.6015315315, + "8608": 0.6025225225, + "8609": 0.6035135135, + "8610": 0.6045045045, + "8611": 0.6054954955, + "8612": 0.6064864865, + "8613": 0.6074774775, + "8614": 0.6084684685, + "8615": 0.6094594595, + "8616": 0.6104504505, + "8617": 0.6114414414, + "8618": 0.6124324324, + "8619": 0.6134234234, + "8620": 0.6144144144, + "8621": 0.6154054054, + "8622": 0.6163963964, + "8623": 0.6173873874, + "8624": 0.6183783784, + "8625": 0.6193693694, + "8626": 0.6203603604, + "8627": 0.6213513514, + "8628": 0.6223423423, + "8629": 0.6233333333, + "8630": 0.6243243243, + "8631": 0.6253153153, + "8632": 0.6263063063, + "8633": 0.6272972973, + "8634": 0.6282882883, + "8635": 0.6292792793, + "8636": 0.6302702703, + "8637": 0.6312612613, + "8638": 0.6322522523, + "8639": 0.6332432432, + "8640": 0.6342342342, + "8641": 0.6352252252, + "8642": 0.6362162162, + "8643": 0.6372072072, + "8644": 0.6381981982, + "8645": 0.6391891892, + "8646": 0.6401801802, + "8647": 0.6411711712, + "8648": 0.6421621622, + "8649": 0.6431531532, + "8650": 0.6441441441, + "8651": 0.6451351351, + "8652": 0.6461261261, + "8653": 0.6471171171, + "8654": 0.6481081081, + "8655": 0.6490990991, + "8656": 0.6500900901, + "8657": 0.6510810811, + "8658": 0.6520720721, + "8659": 0.6530630631, + "8660": 0.6540540541, + "8661": 0.655045045, + "8662": 0.656036036, + "8663": 0.657027027, + "8664": 0.658018018, + "8665": 0.659009009, + "8666": 0.66, + "8667": 0.660990991, + "8668": 0.661981982, + "8669": 0.662972973, + "8670": 0.663963964, + "8671": 0.664954955, + "8672": 0.6659459459, + "8673": 0.6669369369, + "8674": 0.6679279279, + "8675": 0.6689189189, + "8676": 0.6699099099, + "8677": 0.6709009009, + "8678": 0.6718918919, + "8679": 0.6728828829, + "8680": 0.6738738739, + "8681": 0.6748648649, + "8682": 0.6758558559, + "8683": 0.6768468468, + "8684": 0.6778378378, + "8685": 0.6788288288, + "8686": 0.6798198198, + "8687": 0.6808108108, + "8688": 0.6818018018, + "8689": 0.6827927928, + "8690": 0.6837837838, + "8691": 0.6847747748, + "8692": 0.6857657658, + "8693": 0.6867567568, + "8694": 0.6877477477, + "8695": 0.6887387387, + "8696": 0.6897297297, + "8697": 0.6907207207, + "8698": 0.6917117117, + "8699": 0.6927027027, + "8700": 0.6936936937, + "8701": 0.6946846847, + "8702": 0.6956756757, + "8703": 0.6966666667, + "8704": 0.6976576577, + "8705": 0.6986486486, + "8706": 0.6996396396, + "8707": 0.7006306306, + "8708": 0.7016216216, + "8709": 0.7026126126, + "8710": 0.7036036036, + "8711": 0.7045945946, + "8712": 0.7055855856, + "8713": 0.7065765766, + "8714": 0.7075675676, + "8715": 0.7085585586, + "8716": 0.7095495495, + "8717": 0.7105405405, + "8718": 0.7115315315, + "8719": 0.7125225225, + "8720": 0.7135135135, + "8721": 0.7145045045, + "8722": 0.7154954955, + "8723": 0.7164864865, + "8724": 0.7174774775, + "8725": 0.7184684685, + "8726": 0.7194594595, + "8727": 0.7204504505, + "8728": 0.7214414414, + "8729": 0.7224324324, + "8730": 0.7234234234, + "8731": 0.7244144144, + "8732": 0.7254054054, + "8733": 0.7263963964, + "8734": 0.7273873874, + "8735": 0.7283783784, + "8736": 0.7293693694, + "8737": 0.7303603604, + "8738": 0.7313513514, + "8739": 0.7323423423, + "8740": 0.7333333333, + "8741": 0.7343243243, + "8742": 0.7353153153, + "8743": 0.7363063063, + "8744": 0.7372972973, + "8745": 0.7382882883, + "8746": 0.7392792793, + "8747": 0.7402702703, + "8748": 0.7412612613, + "8749": 0.7422522523, + "8750": 0.7432432432, + "8751": 0.7442342342, + "8752": 0.7452252252, + "8753": 0.7462162162, + "8754": 0.7472072072, + "8755": 0.7481981982, + "8756": 0.7491891892, + "8757": 0.7501801802, + "8758": 0.7511711712, + "8759": 0.7521621622, + "8760": 0.7531531532, + "8761": 0.7541441441, + "8762": 0.7551351351, + "8763": 0.7561261261, + "8764": 0.7571171171, + "8765": 0.7581081081, + "8766": 0.7590990991, + "8767": 0.7600900901, + "8768": 0.7610810811, + "8769": 0.7620720721, + "8770": 0.7630630631, + "8771": 0.7640540541, + "8772": 0.765045045, + "8773": 0.766036036, + "8774": 0.767027027, + "8775": 0.768018018, + "8776": 0.769009009, + "8777": 0.77, + "8778": 0.770990991, + "8779": 0.771981982, + "8780": 0.772972973, + "8781": 0.773963964, + "8782": 0.774954955, + "8783": 0.7759459459, + "8784": 0.7769369369, + "8785": 0.7779279279, + "8786": 0.7789189189, + "8787": 0.7799099099, + "8788": 0.7809009009, + "8789": 0.7818918919, + "8790": 0.7828828829, + "8791": 0.7838738739, + "8792": 0.7848648649, + "8793": 0.7858558559, + "8794": 0.7868468468, + "8795": 0.7878378378, + "8796": 0.7888288288, + "8797": 0.7898198198, + "8798": 0.7908108108, + "8799": 0.7918018018, + "8800": 0.7927927928, + "8801": 0.7937837838, + "8802": 0.7947747748, + "8803": 0.7957657658, + "8804": 0.7967567568, + "8805": 0.7977477477, + "8806": 0.7987387387, + "8807": 0.7997297297, + "8808": 0.8007207207, + "8809": 0.8017117117, + "8810": 0.8027027027, + "8811": 0.8036936937, + "8812": 0.8046846847, + "8813": 0.8056756757, + "8814": 0.8066666667, + "8815": 0.8076576577, + "8816": 0.8086486486, + "8817": 0.8096396396, + "8818": 0.8106306306, + "8819": 0.8116216216, + "8820": 0.8126126126, + "8821": 0.8136036036, + "8822": 0.8145945946, + "8823": 0.8155855856, + "8824": 0.8165765766, + "8825": 0.8175675676, + "8826": 0.8185585586, + "8827": 0.8195495495, + "8828": 0.8205405405, + "8829": 0.8215315315, + "8830": 0.8225225225, + "8831": 0.8235135135, + "8832": 0.8245045045, + "8833": 0.8254954955, + "8834": 0.8264864865, + "8835": 0.8274774775, + "8836": 0.8284684685, + "8837": 0.8294594595, + "8838": 0.8304504505, + "8839": 0.8314414414, + "8840": 0.8324324324, + "8841": 0.8334234234, + "8842": 0.8344144144, + "8843": 0.8354054054, + "8844": 0.8363963964, + "8845": 0.8373873874, + "8846": 0.8383783784, + "8847": 0.8393693694, + "8848": 0.8403603604, + "8849": 0.8413513514, + "8850": 0.8423423423, + "8851": 0.8433333333, + "8852": 0.8443243243, + "8853": 0.8453153153, + "8854": 0.8463063063, + "8855": 0.8472972973, + "8856": 0.8482882883, + "8857": 0.8492792793, + "8858": 0.8502702703, + "8859": 0.8512612613, + "8860": 0.8522522523, + "8861": 0.8532432432, + "8862": 0.8542342342, + "8863": 0.8552252252, + "8864": 0.8562162162, + "8865": 0.8572072072, + "8866": 0.8581981982, + "8867": 0.8591891892, + "8868": 0.8601801802, + "8869": 0.8611711712, + "8870": 0.8621621622, + "8871": 0.8631531532, + "8872": 0.8641441441, + "8873": 0.8651351351, + "8874": 0.8661261261, + "8875": 0.8671171171, + "8876": 0.8681081081, + "8877": 0.8690990991, + "8878": 0.8700900901, + "8879": 0.8710810811, + "8880": 0.8720720721, + "8881": 0.8730630631, + "8882": 0.8740540541, + "8883": 0.875045045, + "8884": 0.876036036, + "8885": 0.877027027, + "8886": 0.878018018, + "8887": 0.879009009, + "8888": 0.88, + "8889": 0.880990991, + "8890": 0.881981982, + "8891": 0.882972973, + "8892": 0.883963964, + "8893": 0.884954955, + "8894": 0.8859459459, + "8895": 0.8869369369, + "8896": 0.8879279279, + "8897": 0.8889189189, + "8898": 0.8899099099, + "8899": 0.8909009009, + "8900": 0.8918918919, + "8901": 0.8928828829, + "8902": 0.8938738739, + "8903": 0.8948648649, + "8904": 0.8958558559, + "8905": 0.8968468468, + "8906": 0.8978378378, + "8907": 0.8988288288, + "8908": 0.8998198198, + "8909": 0.9008108108, + "8910": 0.9018018018, + "8911": 0.9027927928, + "8912": 0.9037837838, + "8913": 0.9047747748, + "8914": 0.9057657658, + "8915": 0.9067567568, + "8916": 0.9077477477, + "8917": 0.9087387387, + "8918": 0.9097297297, + "8919": 0.9107207207, + "8920": 0.9117117117, + "8921": 0.9127027027, + "8922": 0.9136936937, + "8923": 0.9146846847, + "8924": 0.9156756757, + "8925": 0.9166666667, + "8926": 0.9176576577, + "8927": 0.9186486486, + "8928": 0.9196396396, + "8929": 0.9206306306, + "8930": 0.9216216216, + "8931": 0.9226126126, + "8932": 0.9236036036, + "8933": 0.9245945946, + "8934": 0.9255855856, + "8935": 0.9265765766, + "8936": 0.9275675676, + "8937": 0.9285585586, + "8938": 0.9295495495, + "8939": 0.9305405405, + "8940": 0.9315315315, + "8941": 0.9325225225, + "8942": 0.9335135135, + "8943": 0.9345045045, + "8944": 0.9354954955, + "8945": 0.9364864865, + "8946": 0.9374774775, + "8947": 0.9384684685, + "8948": 0.9394594595, + "8949": 0.9404504505, + "8950": 0.9414414414, + "8951": 0.9424324324, + "8952": 0.9434234234, + "8953": 0.9444144144, + "8954": 0.9454054054, + "8955": 0.9463963964, + "8956": 0.9473873874, + "8957": 0.9483783784, + "8958": 0.9493693694, + "8959": 0.9503603604, + "8960": 0.9513513514, + "8961": 0.9523423423, + "8962": 0.9533333333, + "8963": 0.9543243243, + "8964": 0.9553153153, + "8965": 0.9563063063, + "8966": 0.9572972973, + "8967": 0.9582882883, + "8968": 0.9592792793, + "8969": 0.9602702703, + "8970": 0.9612612613, + "8971": 0.9622522523, + "8972": 0.9632432432, + "8973": 0.9642342342, + "8974": 0.9652252252, + "8975": 0.9662162162, + "8976": 0.9672072072, + "8977": 0.9681981982, + "8978": 0.9691891892, + "8979": 0.9701801802, + "8980": 0.9711711712, + "8981": 0.9721621622, + "8982": 0.9731531532, + "8983": 0.9741441441, + "8984": 0.9751351351, + "8985": 0.9761261261, + "8986": 0.9771171171, + "8987": 0.9781081081, + "8988": 0.9790990991, + "8989": 0.9800900901, + "8990": 0.9810810811, + "8991": 0.9820720721, + "8992": 0.9830630631, + "8993": 0.9840540541, + "8994": 0.985045045, + "8995": 0.986036036, + "8996": 0.987027027, + "8997": 0.988018018, + "8998": 0.989009009, + "8999": 0.99, + "9000": 0.0, + "9001": 0.000990991, + "9002": 0.001981982, + "9003": 0.002972973, + "9004": 0.003963964, + "9005": 0.004954955, + "9006": 0.0059459459, + "9007": 0.0069369369, + "9008": 0.0079279279, + "9009": 0.0089189189, + "9010": 0.0099099099, + "9011": 0.0109009009, + "9012": 0.0118918919, + "9013": 0.0128828829, + "9014": 0.0138738739, + "9015": 0.0148648649, + "9016": 0.0158558559, + "9017": 0.0168468468, + "9018": 0.0178378378, + "9019": 0.0188288288, + "9020": 0.0198198198, + "9021": 0.0208108108, + "9022": 0.0218018018, + "9023": 0.0227927928, + "9024": 0.0237837838, + "9025": 0.0247747748, + "9026": 0.0257657658, + "9027": 0.0267567568, + "9028": 0.0277477477, + "9029": 0.0287387387, + "9030": 0.0297297297, + "9031": 0.0307207207, + "9032": 0.0317117117, + "9033": 0.0327027027, + "9034": 0.0336936937, + "9035": 0.0346846847, + "9036": 0.0356756757, + "9037": 0.0366666667, + "9038": 0.0376576577, + "9039": 0.0386486486, + "9040": 0.0396396396, + "9041": 0.0406306306, + "9042": 0.0416216216, + "9043": 0.0426126126, + "9044": 0.0436036036, + "9045": 0.0445945946, + "9046": 0.0455855856, + "9047": 0.0465765766, + "9048": 0.0475675676, + "9049": 0.0485585586, + "9050": 0.0495495495, + "9051": 0.0505405405, + "9052": 0.0515315315, + "9053": 0.0525225225, + "9054": 0.0535135135, + "9055": 0.0545045045, + "9056": 0.0554954955, + "9057": 0.0564864865, + "9058": 0.0574774775, + "9059": 0.0584684685, + "9060": 0.0594594595, + "9061": 0.0604504505, + "9062": 0.0614414414, + "9063": 0.0624324324, + "9064": 0.0634234234, + "9065": 0.0644144144, + "9066": 0.0654054054, + "9067": 0.0663963964, + "9068": 0.0673873874, + "9069": 0.0683783784, + "9070": 0.0693693694, + "9071": 0.0703603604, + "9072": 0.0713513514, + "9073": 0.0723423423, + "9074": 0.0733333333, + "9075": 0.0743243243, + "9076": 0.0753153153, + "9077": 0.0763063063, + "9078": 0.0772972973, + "9079": 0.0782882883, + "9080": 0.0792792793, + "9081": 0.0802702703, + "9082": 0.0812612613, + "9083": 0.0822522523, + "9084": 0.0832432432, + "9085": 0.0842342342, + "9086": 0.0852252252, + "9087": 0.0862162162, + "9088": 0.0872072072, + "9089": 0.0881981982, + "9090": 0.0891891892, + "9091": 0.0901801802, + "9092": 0.0911711712, + "9093": 0.0921621622, + "9094": 0.0931531532, + "9095": 0.0941441441, + "9096": 0.0951351351, + "9097": 0.0961261261, + "9098": 0.0971171171, + "9099": 0.0981081081, + "9100": 0.0990990991, + "9101": 0.1000900901, + "9102": 0.1010810811, + "9103": 0.1020720721, + "9104": 0.1030630631, + "9105": 0.1040540541, + "9106": 0.105045045, + "9107": 0.106036036, + "9108": 0.107027027, + "9109": 0.108018018, + "9110": 0.109009009, + "9111": 0.11, + "9112": 0.110990991, + "9113": 0.111981982, + "9114": 0.112972973, + "9115": 0.113963964, + "9116": 0.114954955, + "9117": 0.1159459459, + "9118": 0.1169369369, + "9119": 0.1179279279, + "9120": 0.1189189189, + "9121": 0.1199099099, + "9122": 0.1209009009, + "9123": 0.1218918919, + "9124": 0.1228828829, + "9125": 0.1238738739, + "9126": 0.1248648649, + "9127": 0.1258558559, + "9128": 0.1268468468, + "9129": 0.1278378378, + "9130": 0.1288288288, + "9131": 0.1298198198, + "9132": 0.1308108108, + "9133": 0.1318018018, + "9134": 0.1327927928, + "9135": 0.1337837838, + "9136": 0.1347747748, + "9137": 0.1357657658, + "9138": 0.1367567568, + "9139": 0.1377477477, + "9140": 0.1387387387, + "9141": 0.1397297297, + "9142": 0.1407207207, + "9143": 0.1417117117, + "9144": 0.1427027027, + "9145": 0.1436936937, + "9146": 0.1446846847, + "9147": 0.1456756757, + "9148": 0.1466666667, + "9149": 0.1476576577, + "9150": 0.1486486486, + "9151": 0.1496396396, + "9152": 0.1506306306, + "9153": 0.1516216216, + "9154": 0.1526126126, + "9155": 0.1536036036, + "9156": 0.1545945946, + "9157": 0.1555855856, + "9158": 0.1565765766, + "9159": 0.1575675676, + "9160": 0.1585585586, + "9161": 0.1595495495, + "9162": 0.1605405405, + "9163": 0.1615315315, + "9164": 0.1625225225, + "9165": 0.1635135135, + "9166": 0.1645045045, + "9167": 0.1654954955, + "9168": 0.1664864865, + "9169": 0.1674774775, + "9170": 0.1684684685, + "9171": 0.1694594595, + "9172": 0.1704504505, + "9173": 0.1714414414, + "9174": 0.1724324324, + "9175": 0.1734234234, + "9176": 0.1744144144, + "9177": 0.1754054054, + "9178": 0.1763963964, + "9179": 0.1773873874, + "9180": 0.1783783784, + "9181": 0.1793693694, + "9182": 0.1803603604, + "9183": 0.1813513514, + "9184": 0.1823423423, + "9185": 0.1833333333, + "9186": 0.1843243243, + "9187": 0.1853153153, + "9188": 0.1863063063, + "9189": 0.1872972973, + "9190": 0.1882882883, + "9191": 0.1892792793, + "9192": 0.1902702703, + "9193": 0.1912612613, + "9194": 0.1922522523, + "9195": 0.1932432432, + "9196": 0.1942342342, + "9197": 0.1952252252, + "9198": 0.1962162162, + "9199": 0.1972072072, + "9200": 0.1981981982, + "9201": 0.1991891892, + "9202": 0.2001801802, + "9203": 0.2011711712, + "9204": 0.2021621622, + "9205": 0.2031531532, + "9206": 0.2041441441, + "9207": 0.2051351351, + "9208": 0.2061261261, + "9209": 0.2071171171, + "9210": 0.2081081081, + "9211": 0.2090990991, + "9212": 0.2100900901, + "9213": 0.2110810811, + "9214": 0.2120720721, + "9215": 0.2130630631, + "9216": 0.2140540541, + "9217": 0.215045045, + "9218": 0.216036036, + "9219": 0.217027027, + "9220": 0.218018018, + "9221": 0.219009009, + "9222": 0.22, + "9223": 0.220990991, + "9224": 0.221981982, + "9225": 0.222972973, + "9226": 0.223963964, + "9227": 0.224954955, + "9228": 0.2259459459, + "9229": 0.2269369369, + "9230": 0.2279279279, + "9231": 0.2289189189, + "9232": 0.2299099099, + "9233": 0.2309009009, + "9234": 0.2318918919, + "9235": 0.2328828829, + "9236": 0.2338738739, + "9237": 0.2348648649, + "9238": 0.2358558559, + "9239": 0.2368468468, + "9240": 0.2378378378, + "9241": 0.2388288288, + "9242": 0.2398198198, + "9243": 0.2408108108, + "9244": 0.2418018018, + "9245": 0.2427927928, + "9246": 0.2437837838, + "9247": 0.2447747748, + "9248": 0.2457657658, + "9249": 0.2467567568, + "9250": 0.2477477477, + "9251": 0.2487387387, + "9252": 0.2497297297, + "9253": 0.2507207207, + "9254": 0.2517117117, + "9255": 0.2527027027, + "9256": 0.2536936937, + "9257": 0.2546846847, + "9258": 0.2556756757, + "9259": 0.2566666667, + "9260": 0.2576576577, + "9261": 0.2586486486, + "9262": 0.2596396396, + "9263": 0.2606306306, + "9264": 0.2616216216, + "9265": 0.2626126126, + "9266": 0.2636036036, + "9267": 0.2645945946, + "9268": 0.2655855856, + "9269": 0.2665765766, + "9270": 0.2675675676, + "9271": 0.2685585586, + "9272": 0.2695495495, + "9273": 0.2705405405, + "9274": 0.2715315315, + "9275": 0.2725225225, + "9276": 0.2735135135, + "9277": 0.2745045045, + "9278": 0.2754954955, + "9279": 0.2764864865, + "9280": 0.2774774775, + "9281": 0.2784684685, + "9282": 0.2794594595, + "9283": 0.2804504505, + "9284": 0.2814414414, + "9285": 0.2824324324, + "9286": 0.2834234234, + "9287": 0.2844144144, + "9288": 0.2854054054, + "9289": 0.2863963964, + "9290": 0.2873873874, + "9291": 0.2883783784, + "9292": 0.2893693694, + "9293": 0.2903603604, + "9294": 0.2913513514, + "9295": 0.2923423423, + "9296": 0.2933333333, + "9297": 0.2943243243, + "9298": 0.2953153153, + "9299": 0.2963063063, + "9300": 0.2972972973, + "9301": 0.2982882883, + "9302": 0.2992792793, + "9303": 0.3002702703, + "9304": 0.3012612613, + "9305": 0.3022522523, + "9306": 0.3032432432, + "9307": 0.3042342342, + "9308": 0.3052252252, + "9309": 0.3062162162, + "9310": 0.3072072072, + "9311": 0.3081981982, + "9312": 0.3091891892, + "9313": 0.3101801802, + "9314": 0.3111711712, + "9315": 0.3121621622, + "9316": 0.3131531532, + "9317": 0.3141441441, + "9318": 0.3151351351, + "9319": 0.3161261261, + "9320": 0.3171171171, + "9321": 0.3181081081, + "9322": 0.3190990991, + "9323": 0.3200900901, + "9324": 0.3210810811, + "9325": 0.3220720721, + "9326": 0.3230630631, + "9327": 0.3240540541, + "9328": 0.325045045, + "9329": 0.326036036, + "9330": 0.327027027, + "9331": 0.328018018, + "9332": 0.329009009, + "9333": 0.33, + "9334": 0.330990991, + "9335": 0.331981982, + "9336": 0.332972973, + "9337": 0.333963964, + "9338": 0.334954955, + "9339": 0.3359459459, + "9340": 0.3369369369, + "9341": 0.3379279279, + "9342": 0.3389189189, + "9343": 0.3399099099, + "9344": 0.3409009009, + "9345": 0.3418918919, + "9346": 0.3428828829, + "9347": 0.3438738739, + "9348": 0.3448648649, + "9349": 0.3458558559, + "9350": 0.3468468468, + "9351": 0.3478378378, + "9352": 0.3488288288, + "9353": 0.3498198198, + "9354": 0.3508108108, + "9355": 0.3518018018, + "9356": 0.3527927928, + "9357": 0.3537837838, + "9358": 0.3547747748, + "9359": 0.3557657658, + "9360": 0.3567567568, + "9361": 0.3577477477, + "9362": 0.3587387387, + "9363": 0.3597297297, + "9364": 0.3607207207, + "9365": 0.3617117117, + "9366": 0.3627027027, + "9367": 0.3636936937, + "9368": 0.3646846847, + "9369": 0.3656756757, + "9370": 0.3666666667, + "9371": 0.3676576577, + "9372": 0.3686486486, + "9373": 0.3696396396, + "9374": 0.3706306306, + "9375": 0.3716216216, + "9376": 0.3726126126, + "9377": 0.3736036036, + "9378": 0.3745945946, + "9379": 0.3755855856, + "9380": 0.3765765766, + "9381": 0.3775675676, + "9382": 0.3785585586, + "9383": 0.3795495495, + "9384": 0.3805405405, + "9385": 0.3815315315, + "9386": 0.3825225225, + "9387": 0.3835135135, + "9388": 0.3845045045, + "9389": 0.3854954955, + "9390": 0.3864864865, + "9391": 0.3874774775, + "9392": 0.3884684685, + "9393": 0.3894594595, + "9394": 0.3904504505, + "9395": 0.3914414414, + "9396": 0.3924324324, + "9397": 0.3934234234, + "9398": 0.3944144144, + "9399": 0.3954054054, + "9400": 0.3963963964, + "9401": 0.3973873874, + "9402": 0.3983783784, + "9403": 0.3993693694, + "9404": 0.4003603604, + "9405": 0.4013513514, + "9406": 0.4023423423, + "9407": 0.4033333333, + "9408": 0.4043243243, + "9409": 0.4053153153, + "9410": 0.4063063063, + "9411": 0.4072972973, + "9412": 0.4082882883, + "9413": 0.4092792793, + "9414": 0.4102702703, + "9415": 0.4112612613, + "9416": 0.4122522523, + "9417": 0.4132432432, + "9418": 0.4142342342, + "9419": 0.4152252252, + "9420": 0.4162162162, + "9421": 0.4172072072, + "9422": 0.4181981982, + "9423": 0.4191891892, + "9424": 0.4201801802, + "9425": 0.4211711712, + "9426": 0.4221621622, + "9427": 0.4231531532, + "9428": 0.4241441441, + "9429": 0.4251351351, + "9430": 0.4261261261, + "9431": 0.4271171171, + "9432": 0.4281081081, + "9433": 0.4290990991, + "9434": 0.4300900901, + "9435": 0.4310810811, + "9436": 0.4320720721, + "9437": 0.4330630631, + "9438": 0.4340540541, + "9439": 0.435045045, + "9440": 0.436036036, + "9441": 0.437027027, + "9442": 0.438018018, + "9443": 0.439009009, + "9444": 0.44, + "9445": 0.440990991, + "9446": 0.441981982, + "9447": 0.442972973, + "9448": 0.443963964, + "9449": 0.444954955, + "9450": 0.4459459459, + "9451": 0.4469369369, + "9452": 0.4479279279, + "9453": 0.4489189189, + "9454": 0.4499099099, + "9455": 0.4509009009, + "9456": 0.4518918919, + "9457": 0.4528828829, + "9458": 0.4538738739, + "9459": 0.4548648649, + "9460": 0.4558558559, + "9461": 0.4568468468, + "9462": 0.4578378378, + "9463": 0.4588288288, + "9464": 0.4598198198, + "9465": 0.4608108108, + "9466": 0.4618018018, + "9467": 0.4627927928, + "9468": 0.4637837838, + "9469": 0.4647747748, + "9470": 0.4657657658, + "9471": 0.4667567568, + "9472": 0.4677477477, + "9473": 0.4687387387, + "9474": 0.4697297297, + "9475": 0.4707207207, + "9476": 0.4717117117, + "9477": 0.4727027027, + "9478": 0.4736936937, + "9479": 0.4746846847, + "9480": 0.4756756757, + "9481": 0.4766666667, + "9482": 0.4776576577, + "9483": 0.4786486486, + "9484": 0.4796396396, + "9485": 0.4806306306, + "9486": 0.4816216216, + "9487": 0.4826126126, + "9488": 0.4836036036, + "9489": 0.4845945946, + "9490": 0.4855855856, + "9491": 0.4865765766, + "9492": 0.4875675676, + "9493": 0.4885585586, + "9494": 0.4895495495, + "9495": 0.4905405405, + "9496": 0.4915315315, + "9497": 0.4925225225, + "9498": 0.4935135135, + "9499": 0.4945045045, + "9500": 0.4954954955, + "9501": 0.4964864865, + "9502": 0.4974774775, + "9503": 0.4984684685, + "9504": 0.4994594595, + "9505": 0.5004504505, + "9506": 0.5014414414, + "9507": 0.5024324324, + "9508": 0.5034234234, + "9509": 0.5044144144, + "9510": 0.5054054054, + "9511": 0.5063963964, + "9512": 0.5073873874, + "9513": 0.5083783784, + "9514": 0.5093693694, + "9515": 0.5103603604, + "9516": 0.5113513514, + "9517": 0.5123423423, + "9518": 0.5133333333, + "9519": 0.5143243243, + "9520": 0.5153153153, + "9521": 0.5163063063, + "9522": 0.5172972973, + "9523": 0.5182882883, + "9524": 0.5192792793, + "9525": 0.5202702703, + "9526": 0.5212612613, + "9527": 0.5222522523, + "9528": 0.5232432432, + "9529": 0.5242342342, + "9530": 0.5252252252, + "9531": 0.5262162162, + "9532": 0.5272072072, + "9533": 0.5281981982, + "9534": 0.5291891892, + "9535": 0.5301801802, + "9536": 0.5311711712, + "9537": 0.5321621622, + "9538": 0.5331531532, + "9539": 0.5341441441, + "9540": 0.5351351351, + "9541": 0.5361261261, + "9542": 0.5371171171, + "9543": 0.5381081081, + "9544": 0.5390990991, + "9545": 0.5400900901, + "9546": 0.5410810811, + "9547": 0.5420720721, + "9548": 0.5430630631, + "9549": 0.5440540541, + "9550": 0.545045045, + "9551": 0.546036036, + "9552": 0.547027027, + "9553": 0.548018018, + "9554": 0.549009009, + "9555": 0.55, + "9556": 0.550990991, + "9557": 0.551981982, + "9558": 0.552972973, + "9559": 0.553963964, + "9560": 0.554954955, + "9561": 0.5559459459, + "9562": 0.5569369369, + "9563": 0.5579279279, + "9564": 0.5589189189, + "9565": 0.5599099099, + "9566": 0.5609009009, + "9567": 0.5618918919, + "9568": 0.5628828829, + "9569": 0.5638738739, + "9570": 0.5648648649, + "9571": 0.5658558559, + "9572": 0.5668468468, + "9573": 0.5678378378, + "9574": 0.5688288288, + "9575": 0.5698198198, + "9576": 0.5708108108, + "9577": 0.5718018018, + "9578": 0.5727927928, + "9579": 0.5737837838, + "9580": 0.5747747748, + "9581": 0.5757657658, + "9582": 0.5767567568, + "9583": 0.5777477477, + "9584": 0.5787387387, + "9585": 0.5797297297, + "9586": 0.5807207207, + "9587": 0.5817117117, + "9588": 0.5827027027, + "9589": 0.5836936937, + "9590": 0.5846846847, + "9591": 0.5856756757, + "9592": 0.5866666667, + "9593": 0.5876576577, + "9594": 0.5886486486, + "9595": 0.5896396396, + "9596": 0.5906306306, + "9597": 0.5916216216, + "9598": 0.5926126126, + "9599": 0.5936036036, + "9600": 0.5945945946, + "9601": 0.5955855856, + "9602": 0.5965765766, + "9603": 0.5975675676, + "9604": 0.5985585586, + "9605": 0.5995495495, + "9606": 0.6005405405, + "9607": 0.6015315315, + "9608": 0.6025225225, + "9609": 0.6035135135, + "9610": 0.6045045045, + "9611": 0.6054954955, + "9612": 0.6064864865, + "9613": 0.6074774775, + "9614": 0.6084684685, + "9615": 0.6094594595, + "9616": 0.6104504505, + "9617": 0.6114414414, + "9618": 0.6124324324, + "9619": 0.6134234234, + "9620": 0.6144144144, + "9621": 0.6154054054, + "9622": 0.6163963964, + "9623": 0.6173873874, + "9624": 0.6183783784, + "9625": 0.6193693694, + "9626": 0.6203603604, + "9627": 0.6213513514, + "9628": 0.6223423423, + "9629": 0.6233333333, + "9630": 0.6243243243, + "9631": 0.6253153153, + "9632": 0.6263063063, + "9633": 0.6272972973, + "9634": 0.6282882883, + "9635": 0.6292792793, + "9636": 0.6302702703, + "9637": 0.6312612613, + "9638": 0.6322522523, + "9639": 0.6332432432, + "9640": 0.6342342342, + "9641": 0.6352252252, + "9642": 0.6362162162, + "9643": 0.6372072072, + "9644": 0.6381981982, + "9645": 0.6391891892, + "9646": 0.6401801802, + "9647": 0.6411711712, + "9648": 0.6421621622, + "9649": 0.6431531532, + "9650": 0.6441441441, + "9651": 0.6451351351, + "9652": 0.6461261261, + "9653": 0.6471171171, + "9654": 0.6481081081, + "9655": 0.6490990991, + "9656": 0.6500900901, + "9657": 0.6510810811, + "9658": 0.6520720721, + "9659": 0.6530630631, + "9660": 0.6540540541, + "9661": 0.655045045, + "9662": 0.656036036, + "9663": 0.657027027, + "9664": 0.658018018, + "9665": 0.659009009, + "9666": 0.66, + "9667": 0.660990991, + "9668": 0.661981982, + "9669": 0.662972973, + "9670": 0.663963964, + "9671": 0.664954955, + "9672": 0.6659459459, + "9673": 0.6669369369, + "9674": 0.6679279279, + "9675": 0.6689189189, + "9676": 0.6699099099, + "9677": 0.6709009009, + "9678": 0.6718918919, + "9679": 0.6728828829, + "9680": 0.6738738739, + "9681": 0.6748648649, + "9682": 0.6758558559, + "9683": 0.6768468468, + "9684": 0.6778378378, + "9685": 0.6788288288, + "9686": 0.6798198198, + "9687": 0.6808108108, + "9688": 0.6818018018, + "9689": 0.6827927928, + "9690": 0.6837837838, + "9691": 0.6847747748, + "9692": 0.6857657658, + "9693": 0.6867567568, + "9694": 0.6877477477, + "9695": 0.6887387387, + "9696": 0.6897297297, + "9697": 0.6907207207, + "9698": 0.6917117117, + "9699": 0.6927027027, + "9700": 0.6936936937, + "9701": 0.6946846847, + "9702": 0.6956756757, + "9703": 0.6966666667, + "9704": 0.6976576577, + "9705": 0.6986486486, + "9706": 0.6996396396, + "9707": 0.7006306306, + "9708": 0.7016216216, + "9709": 0.7026126126, + "9710": 0.7036036036, + "9711": 0.7045945946, + "9712": 0.7055855856, + "9713": 0.7065765766, + "9714": 0.7075675676, + "9715": 0.7085585586, + "9716": 0.7095495495, + "9717": 0.7105405405, + "9718": 0.7115315315, + "9719": 0.7125225225, + "9720": 0.7135135135, + "9721": 0.7145045045, + "9722": 0.7154954955, + "9723": 0.7164864865, + "9724": 0.7174774775, + "9725": 0.7184684685, + "9726": 0.7194594595, + "9727": 0.7204504505, + "9728": 0.7214414414, + "9729": 0.7224324324, + "9730": 0.7234234234, + "9731": 0.7244144144, + "9732": 0.7254054054, + "9733": 0.7263963964, + "9734": 0.7273873874, + "9735": 0.7283783784, + "9736": 0.7293693694, + "9737": 0.7303603604, + "9738": 0.7313513514, + "9739": 0.7323423423, + "9740": 0.7333333333, + "9741": 0.7343243243, + "9742": 0.7353153153, + "9743": 0.7363063063, + "9744": 0.7372972973, + "9745": 0.7382882883, + "9746": 0.7392792793, + "9747": 0.7402702703, + "9748": 0.7412612613, + "9749": 0.7422522523, + "9750": 0.7432432432, + "9751": 0.7442342342, + "9752": 0.7452252252, + "9753": 0.7462162162, + "9754": 0.7472072072, + "9755": 0.7481981982, + "9756": 0.7491891892, + "9757": 0.7501801802, + "9758": 0.7511711712, + "9759": 0.7521621622, + "9760": 0.7531531532, + "9761": 0.7541441441, + "9762": 0.7551351351, + "9763": 0.7561261261, + "9764": 0.7571171171, + "9765": 0.7581081081, + "9766": 0.7590990991, + "9767": 0.7600900901, + "9768": 0.7610810811, + "9769": 0.7620720721, + "9770": 0.7630630631, + "9771": 0.7640540541, + "9772": 0.765045045, + "9773": 0.766036036, + "9774": 0.767027027, + "9775": 0.768018018, + "9776": 0.769009009, + "9777": 0.77, + "9778": 0.770990991, + "9779": 0.771981982, + "9780": 0.772972973, + "9781": 0.773963964, + "9782": 0.774954955, + "9783": 0.7759459459, + "9784": 0.7769369369, + "9785": 0.7779279279, + "9786": 0.7789189189, + "9787": 0.7799099099, + "9788": 0.7809009009, + "9789": 0.7818918919, + "9790": 0.7828828829, + "9791": 0.7838738739, + "9792": 0.7848648649, + "9793": 0.7858558559, + "9794": 0.7868468468, + "9795": 0.7878378378, + "9796": 0.7888288288, + "9797": 0.7898198198, + "9798": 0.7908108108, + "9799": 0.7918018018, + "9800": 0.7927927928, + "9801": 0.7937837838, + "9802": 0.7947747748, + "9803": 0.7957657658, + "9804": 0.7967567568, + "9805": 0.7977477477, + "9806": 0.7987387387, + "9807": 0.7997297297, + "9808": 0.8007207207, + "9809": 0.8017117117, + "9810": 0.8027027027, + "9811": 0.8036936937, + "9812": 0.8046846847, + "9813": 0.8056756757, + "9814": 0.8066666667, + "9815": 0.8076576577, + "9816": 0.8086486486, + "9817": 0.8096396396, + "9818": 0.8106306306, + "9819": 0.8116216216, + "9820": 0.8126126126, + "9821": 0.8136036036, + "9822": 0.8145945946, + "9823": 0.8155855856, + "9824": 0.8165765766, + "9825": 0.8175675676, + "9826": 0.8185585586, + "9827": 0.8195495495, + "9828": 0.8205405405, + "9829": 0.8215315315, + "9830": 0.8225225225, + "9831": 0.8235135135, + "9832": 0.8245045045, + "9833": 0.8254954955, + "9834": 0.8264864865, + "9835": 0.8274774775, + "9836": 0.8284684685, + "9837": 0.8294594595, + "9838": 0.8304504505, + "9839": 0.8314414414, + "9840": 0.8324324324, + "9841": 0.8334234234, + "9842": 0.8344144144, + "9843": 0.8354054054, + "9844": 0.8363963964, + "9845": 0.8373873874, + "9846": 0.8383783784, + "9847": 0.8393693694, + "9848": 0.8403603604, + "9849": 0.8413513514, + "9850": 0.8423423423, + "9851": 0.8433333333, + "9852": 0.8443243243, + "9853": 0.8453153153, + "9854": 0.8463063063, + "9855": 0.8472972973, + "9856": 0.8482882883, + "9857": 0.8492792793, + "9858": 0.8502702703, + "9859": 0.8512612613, + "9860": 0.8522522523, + "9861": 0.8532432432, + "9862": 0.8542342342, + "9863": 0.8552252252, + "9864": 0.8562162162, + "9865": 0.8572072072, + "9866": 0.8581981982, + "9867": 0.8591891892, + "9868": 0.8601801802, + "9869": 0.8611711712, + "9870": 0.8621621622, + "9871": 0.8631531532, + "9872": 0.8641441441, + "9873": 0.8651351351, + "9874": 0.8661261261, + "9875": 0.8671171171, + "9876": 0.8681081081, + "9877": 0.8690990991, + "9878": 0.8700900901, + "9879": 0.8710810811, + "9880": 0.8720720721, + "9881": 0.8730630631, + "9882": 0.8740540541, + "9883": 0.875045045, + "9884": 0.876036036, + "9885": 0.877027027, + "9886": 0.878018018, + "9887": 0.879009009, + "9888": 0.88, + "9889": 0.880990991, + "9890": 0.881981982, + "9891": 0.882972973, + "9892": 0.883963964, + "9893": 0.884954955, + "9894": 0.8859459459, + "9895": 0.8869369369, + "9896": 0.8879279279, + "9897": 0.8889189189, + "9898": 0.8899099099, + "9899": 0.8909009009, + "9900": 0.8918918919, + "9901": 0.8928828829, + "9902": 0.8938738739, + "9903": 0.8948648649, + "9904": 0.8958558559, + "9905": 0.8968468468, + "9906": 0.8978378378, + "9907": 0.8988288288, + "9908": 0.8998198198, + "9909": 0.9008108108, + "9910": 0.9018018018, + "9911": 0.9027927928, + "9912": 0.9037837838, + "9913": 0.9047747748, + "9914": 0.9057657658, + "9915": 0.9067567568, + "9916": 0.9077477477, + "9917": 0.9087387387, + "9918": 0.9097297297, + "9919": 0.9107207207, + "9920": 0.9117117117, + "9921": 0.9127027027, + "9922": 0.9136936937, + "9923": 0.9146846847, + "9924": 0.9156756757, + "9925": 0.9166666667, + "9926": 0.9176576577, + "9927": 0.9186486486, + "9928": 0.9196396396, + "9929": 0.9206306306, + "9930": 0.9216216216, + "9931": 0.9226126126, + "9932": 0.9236036036, + "9933": 0.9245945946, + "9934": 0.9255855856, + "9935": 0.9265765766, + "9936": 0.9275675676, + "9937": 0.9285585586, + "9938": 0.9295495495, + "9939": 0.9305405405, + "9940": 0.9315315315, + "9941": 0.9325225225, + "9942": 0.9335135135, + "9943": 0.9345045045, + "9944": 0.9354954955, + "9945": 0.9364864865, + "9946": 0.9374774775, + "9947": 0.9384684685, + "9948": 0.9394594595, + "9949": 0.9404504505, + "9950": 0.9414414414, + "9951": 0.9424324324, + "9952": 0.9434234234, + "9953": 0.9444144144, + "9954": 0.9454054054, + "9955": 0.9463963964, + "9956": 0.9473873874, + "9957": 0.9483783784, + "9958": 0.9493693694, + "9959": 0.9503603604, + "9960": 0.9513513514, + "9961": 0.9523423423, + "9962": 0.9533333333, + "9963": 0.9543243243, + "9964": 0.9553153153, + "9965": 0.9563063063, + "9966": 0.9572972973, + "9967": 0.9582882883, + "9968": 0.9592792793, + "9969": 0.9602702703, + "9970": 0.9612612613, + "9971": 0.9622522523, + "9972": 0.9632432432, + "9973": 0.9642342342, + "9974": 0.9652252252, + "9975": 0.9662162162, + "9976": 0.9672072072, + "9977": 0.9681981982, + "9978": 0.9691891892, + "9979": 0.9701801802, + "9980": 0.9711711712, + "9981": 0.9721621622, + "9982": 0.9731531532, + "9983": 0.9741441441, + "9984": 0.9751351351, + "9985": 0.9761261261, + "9986": 0.9771171171, + "9987": 0.9781081081, + "9988": 0.9790990991, + "9989": 0.9800900901, + "9990": 0.9810810811, + "9991": 0.9820720721, + "9992": 0.9830630631, + "9993": 0.9840540541, + "9994": 0.985045045, + "9995": 0.986036036, + "9996": 0.987027027, + "9997": 0.988018018, + "9998": 0.989009009, + "9999": 0.99, + "10000": 0.0, + "10001": 0.000990991, + "10002": 0.001981982, + "10003": 0.002972973, + "10004": 0.003963964, + "10005": 0.004954955, + "10006": 0.0059459459, + "10007": 0.0069369369, + "10008": 0.0079279279, + "10009": 0.0089189189, + "10010": 0.0099099099, + "10011": 0.0109009009, + "10012": 0.0118918919, + "10013": 0.0128828829, + "10014": 0.0138738739, + "10015": 0.0148648649, + "10016": 0.0158558559, + "10017": 0.0168468468, + "10018": 0.0178378378, + "10019": 0.0188288288, + "10020": 0.0198198198, + "10021": 0.0208108108, + "10022": 0.0218018018, + "10023": 0.0227927928, + "10024": 0.0237837838, + "10025": 0.0247747748, + "10026": 0.0257657658, + "10027": 0.0267567568, + "10028": 0.0277477477, + "10029": 0.0287387387, + "10030": 0.0297297297, + "10031": 0.0307207207, + "10032": 0.0317117117, + "10033": 0.0327027027, + "10034": 0.0336936937, + "10035": 0.0346846847, + "10036": 0.0356756757, + "10037": 0.0366666667, + "10038": 0.0376576577, + "10039": 0.0386486486, + "10040": 0.0396396396, + "10041": 0.0406306306, + "10042": 0.0416216216, + "10043": 0.0426126126, + "10044": 0.0436036036, + "10045": 0.0445945946, + "10046": 0.0455855856, + "10047": 0.0465765766, + "10048": 0.0475675676, + "10049": 0.0485585586, + "10050": 0.0495495495, + "10051": 0.0505405405, + "10052": 0.0515315315, + "10053": 0.0525225225, + "10054": 0.0535135135, + "10055": 0.0545045045, + "10056": 0.0554954955, + "10057": 0.0564864865, + "10058": 0.0574774775, + "10059": 0.0584684685, + "10060": 0.0594594595, + "10061": 0.0604504505, + "10062": 0.0614414414, + "10063": 0.0624324324, + "10064": 0.0634234234, + "10065": 0.0644144144, + "10066": 0.0654054054, + "10067": 0.0663963964, + "10068": 0.0673873874, + "10069": 0.0683783784, + "10070": 0.0693693694, + "10071": 0.0703603604, + "10072": 0.0713513514, + "10073": 0.0723423423, + "10074": 0.0733333333, + "10075": 0.0743243243, + "10076": 0.0753153153, + "10077": 0.0763063063, + "10078": 0.0772972973, + "10079": 0.0782882883, + "10080": 0.0792792793, + "10081": 0.0802702703, + "10082": 0.0812612613, + "10083": 0.0822522523, + "10084": 0.0832432432, + "10085": 0.0842342342, + "10086": 0.0852252252, + "10087": 0.0862162162, + "10088": 0.0872072072, + "10089": 0.0881981982, + "10090": 0.0891891892, + "10091": 0.0901801802, + "10092": 0.0911711712, + "10093": 0.0921621622, + "10094": 0.0931531532, + "10095": 0.0941441441, + "10096": 0.0951351351, + "10097": 0.0961261261, + "10098": 0.0971171171, + "10099": 0.0981081081, + "10100": 0.0990990991, + "10101": 0.1000900901, + "10102": 0.1010810811, + "10103": 0.1020720721, + "10104": 0.1030630631, + "10105": 0.1040540541, + "10106": 0.105045045, + "10107": 0.106036036, + "10108": 0.107027027, + "10109": 0.108018018, + "10110": 0.109009009, + "10111": 0.11, + "10112": 0.110990991, + "10113": 0.111981982, + "10114": 0.112972973, + "10115": 0.113963964, + "10116": 0.114954955, + "10117": 0.1159459459, + "10118": 0.1169369369, + "10119": 0.1179279279, + "10120": 0.1189189189, + "10121": 0.1199099099, + "10122": 0.1209009009, + "10123": 0.1218918919, + "10124": 0.1228828829, + "10125": 0.1238738739, + "10126": 0.1248648649, + "10127": 0.1258558559, + "10128": 0.1268468468, + "10129": 0.1278378378, + "10130": 0.1288288288, + "10131": 0.1298198198, + "10132": 0.1308108108, + "10133": 0.1318018018, + "10134": 0.1327927928, + "10135": 0.1337837838, + "10136": 0.1347747748, + "10137": 0.1357657658, + "10138": 0.1367567568, + "10139": 0.1377477477, + "10140": 0.1387387387, + "10141": 0.1397297297, + "10142": 0.1407207207, + "10143": 0.1417117117, + "10144": 0.1427027027, + "10145": 0.1436936937, + "10146": 0.1446846847, + "10147": 0.1456756757, + "10148": 0.1466666667, + "10149": 0.1476576577, + "10150": 0.1486486486, + "10151": 0.1496396396, + "10152": 0.1506306306, + "10153": 0.1516216216, + "10154": 0.1526126126, + "10155": 0.1536036036, + "10156": 0.1545945946, + "10157": 0.1555855856, + "10158": 0.1565765766, + "10159": 0.1575675676, + "10160": 0.1585585586, + "10161": 0.1595495495, + "10162": 0.1605405405, + "10163": 0.1615315315, + "10164": 0.1625225225, + "10165": 0.1635135135, + "10166": 0.1645045045, + "10167": 0.1654954955, + "10168": 0.1664864865, + "10169": 0.1674774775, + "10170": 0.1684684685, + "10171": 0.1694594595, + "10172": 0.1704504505, + "10173": 0.1714414414, + "10174": 0.1724324324, + "10175": 0.1734234234, + "10176": 0.1744144144, + "10177": 0.1754054054, + "10178": 0.1763963964, + "10179": 0.1773873874, + "10180": 0.1783783784, + "10181": 0.1793693694, + "10182": 0.1803603604, + "10183": 0.1813513514, + "10184": 0.1823423423, + "10185": 0.1833333333, + "10186": 0.1843243243, + "10187": 0.1853153153, + "10188": 0.1863063063, + "10189": 0.1872972973, + "10190": 0.1882882883, + "10191": 0.1892792793, + "10192": 0.1902702703, + "10193": 0.1912612613, + "10194": 0.1922522523, + "10195": 0.1932432432, + "10196": 0.1942342342, + "10197": 0.1952252252, + "10198": 0.1962162162, + "10199": 0.1972072072, + "10200": 0.1981981982, + "10201": 0.1991891892, + "10202": 0.2001801802, + "10203": 0.2011711712, + "10204": 0.2021621622, + "10205": 0.2031531532, + "10206": 0.2041441441, + "10207": 0.2051351351, + "10208": 0.2061261261, + "10209": 0.2071171171, + "10210": 0.2081081081, + "10211": 0.2090990991, + "10212": 0.2100900901, + "10213": 0.2110810811, + "10214": 0.2120720721, + "10215": 0.2130630631, + "10216": 0.2140540541, + "10217": 0.215045045, + "10218": 0.216036036, + "10219": 0.217027027, + "10220": 0.218018018, + "10221": 0.219009009, + "10222": 0.22, + "10223": 0.220990991, + "10224": 0.221981982, + "10225": 0.222972973, + "10226": 0.223963964, + "10227": 0.224954955, + "10228": 0.2259459459, + "10229": 0.2269369369, + "10230": 0.2279279279, + "10231": 0.2289189189, + "10232": 0.2299099099, + "10233": 0.2309009009, + "10234": 0.2318918919, + "10235": 0.2328828829, + "10236": 0.2338738739, + "10237": 0.2348648649, + "10238": 0.2358558559, + "10239": 0.2368468468, + "10240": 0.2378378378, + "10241": 0.2388288288, + "10242": 0.2398198198, + "10243": 0.2408108108, + "10244": 0.2418018018, + "10245": 0.2427927928, + "10246": 0.2437837838, + "10247": 0.2447747748, + "10248": 0.2457657658, + "10249": 0.2467567568, + "10250": 0.2477477477, + "10251": 0.2487387387, + "10252": 0.2497297297, + "10253": 0.2507207207, + "10254": 0.2517117117, + "10255": 0.2527027027, + "10256": 0.2536936937, + "10257": 0.2546846847, + "10258": 0.2556756757, + "10259": 0.2566666667, + "10260": 0.2576576577, + "10261": 0.2586486486, + "10262": 0.2596396396, + "10263": 0.2606306306, + "10264": 0.2616216216, + "10265": 0.2626126126, + "10266": 0.2636036036, + "10267": 0.2645945946, + "10268": 0.2655855856, + "10269": 0.2665765766, + "10270": 0.2675675676, + "10271": 0.2685585586, + "10272": 0.2695495495, + "10273": 0.2705405405, + "10274": 0.2715315315, + "10275": 0.2725225225, + "10276": 0.2735135135, + "10277": 0.2745045045, + "10278": 0.2754954955, + "10279": 0.2764864865, + "10280": 0.2774774775, + "10281": 0.2784684685, + "10282": 0.2794594595, + "10283": 0.2804504505, + "10284": 0.2814414414, + "10285": 0.2824324324, + "10286": 0.2834234234, + "10287": 0.2844144144, + "10288": 0.2854054054, + "10289": 0.2863963964, + "10290": 0.2873873874, + "10291": 0.2883783784, + "10292": 0.2893693694, + "10293": 0.2903603604, + "10294": 0.2913513514, + "10295": 0.2923423423, + "10296": 0.2933333333, + "10297": 0.2943243243, + "10298": 0.2953153153, + "10299": 0.2963063063, + "10300": 0.2972972973, + "10301": 0.2982882883, + "10302": 0.2992792793, + "10303": 0.3002702703, + "10304": 0.3012612613, + "10305": 0.3022522523, + "10306": 0.3032432432, + "10307": 0.3042342342, + "10308": 0.3052252252, + "10309": 0.3062162162, + "10310": 0.3072072072, + "10311": 0.3081981982, + "10312": 0.3091891892, + "10313": 0.3101801802, + "10314": 0.3111711712, + "10315": 0.3121621622, + "10316": 0.3131531532, + "10317": 0.3141441441, + "10318": 0.3151351351, + "10319": 0.3161261261, + "10320": 0.3171171171, + "10321": 0.3181081081, + "10322": 0.3190990991, + "10323": 0.3200900901, + "10324": 0.3210810811, + "10325": 0.3220720721, + "10326": 0.3230630631, + "10327": 0.3240540541, + "10328": 0.325045045, + "10329": 0.326036036, + "10330": 0.327027027, + "10331": 0.328018018, + "10332": 0.329009009, + "10333": 0.33, + "10334": 0.330990991, + "10335": 0.331981982, + "10336": 0.332972973, + "10337": 0.333963964, + "10338": 0.334954955, + "10339": 0.3359459459, + "10340": 0.3369369369, + "10341": 0.3379279279, + "10342": 0.3389189189, + "10343": 0.3399099099, + "10344": 0.3409009009, + "10345": 0.3418918919, + "10346": 0.3428828829, + "10347": 0.3438738739, + "10348": 0.3448648649, + "10349": 0.3458558559, + "10350": 0.3468468468, + "10351": 0.3478378378, + "10352": 0.3488288288, + "10353": 0.3498198198, + "10354": 0.3508108108, + "10355": 0.3518018018, + "10356": 0.3527927928, + "10357": 0.3537837838, + "10358": 0.3547747748, + "10359": 0.3557657658, + "10360": 0.3567567568, + "10361": 0.3577477477, + "10362": 0.3587387387, + "10363": 0.3597297297, + "10364": 0.3607207207, + "10365": 0.3617117117, + "10366": 0.3627027027, + "10367": 0.3636936937, + "10368": 0.3646846847, + "10369": 0.3656756757, + "10370": 0.3666666667, + "10371": 0.3676576577, + "10372": 0.3686486486, + "10373": 0.3696396396, + "10374": 0.3706306306, + "10375": 0.3716216216, + "10376": 0.3726126126, + "10377": 0.3736036036, + "10378": 0.3745945946, + "10379": 0.3755855856, + "10380": 0.3765765766, + "10381": 0.3775675676, + "10382": 0.3785585586, + "10383": 0.3795495495, + "10384": 0.3805405405, + "10385": 0.3815315315, + "10386": 0.3825225225, + "10387": 0.3835135135, + "10388": 0.3845045045, + "10389": 0.3854954955, + "10390": 0.3864864865, + "10391": 0.3874774775, + "10392": 0.3884684685, + "10393": 0.3894594595, + "10394": 0.3904504505, + "10395": 0.3914414414, + "10396": 0.3924324324, + "10397": 0.3934234234, + "10398": 0.3944144144, + "10399": 0.3954054054, + "10400": 0.3963963964, + "10401": 0.3973873874, + "10402": 0.3983783784, + "10403": 0.3993693694, + "10404": 0.4003603604, + "10405": 0.4013513514, + "10406": 0.4023423423, + "10407": 0.4033333333, + "10408": 0.4043243243, + "10409": 0.4053153153, + "10410": 0.4063063063, + "10411": 0.4072972973, + "10412": 0.4082882883, + "10413": 0.4092792793, + "10414": 0.4102702703, + "10415": 0.4112612613, + "10416": 0.4122522523, + "10417": 0.4132432432, + "10418": 0.4142342342, + "10419": 0.4152252252, + "10420": 0.4162162162, + "10421": 0.4172072072, + "10422": 0.4181981982, + "10423": 0.4191891892, + "10424": 0.4201801802, + "10425": 0.4211711712, + "10426": 0.4221621622, + "10427": 0.4231531532, + "10428": 0.4241441441, + "10429": 0.4251351351, + "10430": 0.4261261261, + "10431": 0.4271171171, + "10432": 0.4281081081, + "10433": 0.4290990991, + "10434": 0.4300900901, + "10435": 0.4310810811, + "10436": 0.4320720721, + "10437": 0.4330630631, + "10438": 0.4340540541, + "10439": 0.435045045, + "10440": 0.436036036, + "10441": 0.437027027, + "10442": 0.438018018, + "10443": 0.439009009, + "10444": 0.44, + "10445": 0.440990991, + "10446": 0.441981982, + "10447": 0.442972973, + "10448": 0.443963964, + "10449": 0.444954955, + "10450": 0.4459459459, + "10451": 0.4469369369, + "10452": 0.4479279279, + "10453": 0.4489189189, + "10454": 0.4499099099, + "10455": 0.4509009009, + "10456": 0.4518918919, + "10457": 0.4528828829, + "10458": 0.4538738739, + "10459": 0.4548648649, + "10460": 0.4558558559, + "10461": 0.4568468468, + "10462": 0.4578378378, + "10463": 0.4588288288, + "10464": 0.4598198198, + "10465": 0.4608108108, + "10466": 0.4618018018, + "10467": 0.4627927928, + "10468": 0.4637837838, + "10469": 0.4647747748, + "10470": 0.4657657658, + "10471": 0.4667567568, + "10472": 0.4677477477, + "10473": 0.4687387387, + "10474": 0.4697297297, + "10475": 0.4707207207, + "10476": 0.4717117117, + "10477": 0.4727027027, + "10478": 0.4736936937, + "10479": 0.4746846847, + "10480": 0.4756756757, + "10481": 0.4766666667, + "10482": 0.4776576577, + "10483": 0.4786486486, + "10484": 0.4796396396, + "10485": 0.4806306306, + "10486": 0.4816216216, + "10487": 0.4826126126, + "10488": 0.4836036036, + "10489": 0.4845945946, + "10490": 0.4855855856, + "10491": 0.4865765766, + "10492": 0.4875675676, + "10493": 0.4885585586, + "10494": 0.4895495495, + "10495": 0.4905405405, + "10496": 0.4915315315, + "10497": 0.4925225225, + "10498": 0.4935135135, + "10499": 0.4945045045, + "10500": 0.4954954955, + "10501": 0.4964864865, + "10502": 0.4974774775, + "10503": 0.4984684685, + "10504": 0.4994594595, + "10505": 0.5004504505, + "10506": 0.5014414414, + "10507": 0.5024324324, + "10508": 0.5034234234, + "10509": 0.5044144144, + "10510": 0.5054054054, + "10511": 0.5063963964, + "10512": 0.5073873874, + "10513": 0.5083783784, + "10514": 0.5093693694, + "10515": 0.5103603604, + "10516": 0.5113513514, + "10517": 0.5123423423, + "10518": 0.5133333333, + "10519": 0.5143243243, + "10520": 0.5153153153, + "10521": 0.5163063063, + "10522": 0.5172972973, + "10523": 0.5182882883, + "10524": 0.5192792793, + "10525": 0.5202702703, + "10526": 0.5212612613, + "10527": 0.5222522523, + "10528": 0.5232432432, + "10529": 0.5242342342, + "10530": 0.5252252252, + "10531": 0.5262162162, + "10532": 0.5272072072, + "10533": 0.5281981982, + "10534": 0.5291891892, + "10535": 0.5301801802, + "10536": 0.5311711712, + "10537": 0.5321621622, + "10538": 0.5331531532, + "10539": 0.5341441441, + "10540": 0.5351351351, + "10541": 0.5361261261, + "10542": 0.5371171171, + "10543": 0.5381081081, + "10544": 0.5390990991, + "10545": 0.5400900901, + "10546": 0.5410810811, + "10547": 0.5420720721, + "10548": 0.5430630631, + "10549": 0.5440540541, + "10550": 0.545045045, + "10551": 0.546036036, + "10552": 0.547027027, + "10553": 0.548018018, + "10554": 0.549009009, + "10555": 0.55, + "10556": 0.550990991, + "10557": 0.551981982, + "10558": 0.552972973, + "10559": 0.553963964, + "10560": 0.554954955, + "10561": 0.5559459459, + "10562": 0.5569369369, + "10563": 0.5579279279, + "10564": 0.5589189189, + "10565": 0.5599099099, + "10566": 0.5609009009, + "10567": 0.5618918919, + "10568": 0.5628828829, + "10569": 0.5638738739, + "10570": 0.5648648649, + "10571": 0.5658558559, + "10572": 0.5668468468, + "10573": 0.5678378378, + "10574": 0.5688288288, + "10575": 0.5698198198, + "10576": 0.5708108108, + "10577": 0.5718018018, + "10578": 0.5727927928, + "10579": 0.5737837838, + "10580": 0.5747747748, + "10581": 0.5757657658, + "10582": 0.5767567568, + "10583": 0.5777477477, + "10584": 0.5787387387, + "10585": 0.5797297297, + "10586": 0.5807207207, + "10587": 0.5817117117, + "10588": 0.5827027027, + "10589": 0.5836936937, + "10590": 0.5846846847, + "10591": 0.5856756757, + "10592": 0.5866666667, + "10593": 0.5876576577, + "10594": 0.5886486486, + "10595": 0.5896396396, + "10596": 0.5906306306, + "10597": 0.5916216216, + "10598": 0.5926126126, + "10599": 0.5936036036, + "10600": 0.5945945946, + "10601": 0.5955855856, + "10602": 0.5965765766, + "10603": 0.5975675676, + "10604": 0.5985585586, + "10605": 0.5995495495, + "10606": 0.6005405405, + "10607": 0.6015315315, + "10608": 0.6025225225, + "10609": 0.6035135135, + "10610": 0.6045045045, + "10611": 0.6054954955, + "10612": 0.6064864865, + "10613": 0.6074774775, + "10614": 0.6084684685, + "10615": 0.6094594595, + "10616": 0.6104504505, + "10617": 0.6114414414, + "10618": 0.6124324324, + "10619": 0.6134234234, + "10620": 0.6144144144, + "10621": 0.6154054054, + "10622": 0.6163963964, + "10623": 0.6173873874, + "10624": 0.6183783784, + "10625": 0.6193693694, + "10626": 0.6203603604, + "10627": 0.6213513514, + "10628": 0.6223423423, + "10629": 0.6233333333, + "10630": 0.6243243243, + "10631": 0.6253153153, + "10632": 0.6263063063, + "10633": 0.6272972973, + "10634": 0.6282882883, + "10635": 0.6292792793, + "10636": 0.6302702703, + "10637": 0.6312612613, + "10638": 0.6322522523, + "10639": 0.6332432432, + "10640": 0.6342342342, + "10641": 0.6352252252, + "10642": 0.6362162162, + "10643": 0.6372072072, + "10644": 0.6381981982, + "10645": 0.6391891892, + "10646": 0.6401801802, + "10647": 0.6411711712, + "10648": 0.6421621622, + "10649": 0.6431531532, + "10650": 0.6441441441, + "10651": 0.6451351351, + "10652": 0.6461261261, + "10653": 0.6471171171, + "10654": 0.6481081081, + "10655": 0.6490990991, + "10656": 0.6500900901, + "10657": 0.6510810811, + "10658": 0.6520720721, + "10659": 0.6530630631, + "10660": 0.6540540541, + "10661": 0.655045045, + "10662": 0.656036036, + "10663": 0.657027027, + "10664": 0.658018018, + "10665": 0.659009009, + "10666": 0.66, + "10667": 0.660990991, + "10668": 0.661981982, + "10669": 0.662972973, + "10670": 0.663963964, + "10671": 0.664954955, + "10672": 0.6659459459, + "10673": 0.6669369369, + "10674": 0.6679279279, + "10675": 0.6689189189, + "10676": 0.6699099099, + "10677": 0.6709009009, + "10678": 0.6718918919, + "10679": 0.6728828829, + "10680": 0.6738738739, + "10681": 0.6748648649, + "10682": 0.6758558559, + "10683": 0.6768468468, + "10684": 0.6778378378, + "10685": 0.6788288288, + "10686": 0.6798198198, + "10687": 0.6808108108, + "10688": 0.6818018018, + "10689": 0.6827927928, + "10690": 0.6837837838, + "10691": 0.6847747748, + "10692": 0.6857657658, + "10693": 0.6867567568, + "10694": 0.6877477477, + "10695": 0.6887387387, + "10696": 0.6897297297, + "10697": 0.6907207207, + "10698": 0.6917117117, + "10699": 0.6927027027, + "10700": 0.6936936937, + "10701": 0.6946846847, + "10702": 0.6956756757, + "10703": 0.6966666667, + "10704": 0.6976576577, + "10705": 0.6986486486, + "10706": 0.6996396396, + "10707": 0.7006306306, + "10708": 0.7016216216, + "10709": 0.7026126126, + "10710": 0.7036036036, + "10711": 0.7045945946, + "10712": 0.7055855856, + "10713": 0.7065765766, + "10714": 0.7075675676, + "10715": 0.7085585586, + "10716": 0.7095495495, + "10717": 0.7105405405, + "10718": 0.7115315315, + "10719": 0.7125225225, + "10720": 0.7135135135, + "10721": 0.7145045045, + "10722": 0.7154954955, + "10723": 0.7164864865, + "10724": 0.7174774775, + "10725": 0.7184684685, + "10726": 0.7194594595, + "10727": 0.7204504505, + "10728": 0.7214414414, + "10729": 0.7224324324, + "10730": 0.7234234234, + "10731": 0.7244144144, + "10732": 0.7254054054, + "10733": 0.7263963964, + "10734": 0.7273873874, + "10735": 0.7283783784, + "10736": 0.7293693694, + "10737": 0.7303603604, + "10738": 0.7313513514, + "10739": 0.7323423423, + "10740": 0.7333333333, + "10741": 0.7343243243, + "10742": 0.7353153153, + "10743": 0.7363063063, + "10744": 0.7372972973, + "10745": 0.7382882883, + "10746": 0.7392792793, + "10747": 0.7402702703, + "10748": 0.7412612613, + "10749": 0.7422522523, + "10750": 0.7432432432, + "10751": 0.7442342342, + "10752": 0.7452252252, + "10753": 0.7462162162, + "10754": 0.7472072072, + "10755": 0.7481981982, + "10756": 0.7491891892, + "10757": 0.7501801802, + "10758": 0.7511711712, + "10759": 0.7521621622, + "10760": 0.7531531532, + "10761": 0.7541441441, + "10762": 0.7551351351, + "10763": 0.7561261261, + "10764": 0.7571171171, + "10765": 0.7581081081, + "10766": 0.7590990991, + "10767": 0.7600900901, + "10768": 0.7610810811, + "10769": 0.7620720721, + "10770": 0.7630630631, + "10771": 0.7640540541, + "10772": 0.765045045, + "10773": 0.766036036, + "10774": 0.767027027, + "10775": 0.768018018, + "10776": 0.769009009, + "10777": 0.77, + "10778": 0.770990991, + "10779": 0.771981982, + "10780": 0.772972973, + "10781": 0.773963964, + "10782": 0.774954955, + "10783": 0.7759459459, + "10784": 0.7769369369, + "10785": 0.7779279279, + "10786": 0.7789189189, + "10787": 0.7799099099, + "10788": 0.7809009009, + "10789": 0.7818918919, + "10790": 0.7828828829, + "10791": 0.7838738739, + "10792": 0.7848648649, + "10793": 0.7858558559, + "10794": 0.7868468468, + "10795": 0.7878378378, + "10796": 0.7888288288, + "10797": 0.7898198198, + "10798": 0.7908108108, + "10799": 0.7918018018, + "10800": 0.7927927928, + "10801": 0.7937837838, + "10802": 0.7947747748, + "10803": 0.7957657658, + "10804": 0.7967567568, + "10805": 0.7977477477, + "10806": 0.7987387387, + "10807": 0.7997297297, + "10808": 0.8007207207, + "10809": 0.8017117117, + "10810": 0.8027027027, + "10811": 0.8036936937, + "10812": 0.8046846847, + "10813": 0.8056756757, + "10814": 0.8066666667, + "10815": 0.8076576577, + "10816": 0.8086486486, + "10817": 0.8096396396, + "10818": 0.8106306306, + "10819": 0.8116216216, + "10820": 0.8126126126, + "10821": 0.8136036036, + "10822": 0.8145945946, + "10823": 0.8155855856, + "10824": 0.8165765766, + "10825": 0.8175675676, + "10826": 0.8185585586, + "10827": 0.8195495495, + "10828": 0.8205405405, + "10829": 0.8215315315, + "10830": 0.8225225225, + "10831": 0.8235135135, + "10832": 0.8245045045, + "10833": 0.8254954955, + "10834": 0.8264864865, + "10835": 0.8274774775, + "10836": 0.8284684685, + "10837": 0.8294594595, + "10838": 0.8304504505, + "10839": 0.8314414414, + "10840": 0.8324324324, + "10841": 0.8334234234, + "10842": 0.8344144144, + "10843": 0.8354054054, + "10844": 0.8363963964, + "10845": 0.8373873874, + "10846": 0.8383783784, + "10847": 0.8393693694, + "10848": 0.8403603604, + "10849": 0.8413513514, + "10850": 0.8423423423, + "10851": 0.8433333333, + "10852": 0.8443243243, + "10853": 0.8453153153, + "10854": 0.8463063063, + "10855": 0.8472972973, + "10856": 0.8482882883, + "10857": 0.8492792793, + "10858": 0.8502702703, + "10859": 0.8512612613, + "10860": 0.8522522523, + "10861": 0.8532432432, + "10862": 0.8542342342, + "10863": 0.8552252252, + "10864": 0.8562162162, + "10865": 0.8572072072, + "10866": 0.8581981982, + "10867": 0.8591891892, + "10868": 0.8601801802, + "10869": 0.8611711712, + "10870": 0.8621621622, + "10871": 0.8631531532, + "10872": 0.8641441441, + "10873": 0.8651351351, + "10874": 0.8661261261, + "10875": 0.8671171171, + "10876": 0.8681081081, + "10877": 0.8690990991, + "10878": 0.8700900901, + "10879": 0.8710810811, + "10880": 0.8720720721, + "10881": 0.8730630631, + "10882": 0.8740540541, + "10883": 0.875045045, + "10884": 0.876036036, + "10885": 0.877027027, + "10886": 0.878018018, + "10887": 0.879009009, + "10888": 0.88, + "10889": 0.880990991, + "10890": 0.881981982, + "10891": 0.882972973, + "10892": 0.883963964, + "10893": 0.884954955, + "10894": 0.8859459459, + "10895": 0.8869369369, + "10896": 0.8879279279, + "10897": 0.8889189189, + "10898": 0.8899099099, + "10899": 0.8909009009, + "10900": 0.8918918919, + "10901": 0.8928828829, + "10902": 0.8938738739, + "10903": 0.8948648649, + "10904": 0.8958558559, + "10905": 0.8968468468, + "10906": 0.8978378378, + "10907": 0.8988288288, + "10908": 0.8998198198, + "10909": 0.9008108108, + "10910": 0.9018018018, + "10911": 0.9027927928, + "10912": 0.9037837838, + "10913": 0.9047747748, + "10914": 0.9057657658, + "10915": 0.9067567568, + "10916": 0.9077477477, + "10917": 0.9087387387, + "10918": 0.9097297297, + "10919": 0.9107207207, + "10920": 0.9117117117, + "10921": 0.9127027027, + "10922": 0.9136936937, + "10923": 0.9146846847, + "10924": 0.9156756757, + "10925": 0.9166666667, + "10926": 0.9176576577, + "10927": 0.9186486486, + "10928": 0.9196396396, + "10929": 0.9206306306, + "10930": 0.9216216216, + "10931": 0.9226126126, + "10932": 0.9236036036, + "10933": 0.9245945946, + "10934": 0.9255855856, + "10935": 0.9265765766, + "10936": 0.9275675676, + "10937": 0.9285585586, + "10938": 0.9295495495, + "10939": 0.9305405405, + "10940": 0.9315315315, + "10941": 0.9325225225, + "10942": 0.9335135135, + "10943": 0.9345045045, + "10944": 0.9354954955, + "10945": 0.9364864865, + "10946": 0.9374774775, + "10947": 0.9384684685, + "10948": 0.9394594595, + "10949": 0.9404504505, + "10950": 0.9414414414, + "10951": 0.9424324324, + "10952": 0.9434234234, + "10953": 0.9444144144, + "10954": 0.9454054054, + "10955": 0.9463963964, + "10956": 0.9473873874, + "10957": 0.9483783784, + "10958": 0.9493693694, + "10959": 0.9503603604, + "10960": 0.9513513514, + "10961": 0.9523423423, + "10962": 0.9533333333, + "10963": 0.9543243243, + "10964": 0.9553153153, + "10965": 0.9563063063, + "10966": 0.9572972973, + "10967": 0.9582882883, + "10968": 0.9592792793, + "10969": 0.9602702703, + "10970": 0.9612612613, + "10971": 0.9622522523, + "10972": 0.9632432432, + "10973": 0.9642342342, + "10974": 0.9652252252, + "10975": 0.9662162162, + "10976": 0.9672072072, + "10977": 0.9681981982, + "10978": 0.9691891892, + "10979": 0.9701801802, + "10980": 0.9711711712, + "10981": 0.9721621622, + "10982": 0.9731531532, + "10983": 0.9741441441, + "10984": 0.9751351351, + "10985": 0.9761261261, + "10986": 0.9771171171, + "10987": 0.9781081081, + "10988": 0.9790990991, + "10989": 0.9800900901, + "10990": 0.9810810811, + "10991": 0.9820720721, + "10992": 0.9830630631, + "10993": 0.9840540541, + "10994": 0.985045045, + "10995": 0.986036036, + "10996": 0.987027027, + "10997": 0.988018018, + "10998": 0.989009009, + "10999": 0.99, + "11000": 0.0, + "11001": 0.000990991, + "11002": 0.001981982, + "11003": 0.002972973, + "11004": 0.003963964, + "11005": 0.004954955, + "11006": 0.0059459459, + "11007": 0.0069369369, + "11008": 0.0079279279, + "11009": 0.0089189189, + "11010": 0.0099099099, + "11011": 0.0109009009, + "11012": 0.0118918919, + "11013": 0.0128828829, + "11014": 0.0138738739, + "11015": 0.0148648649, + "11016": 0.0158558559, + "11017": 0.0168468468, + "11018": 0.0178378378, + "11019": 0.0188288288, + "11020": 0.0198198198, + "11021": 0.0208108108, + "11022": 0.0218018018, + "11023": 0.0227927928, + "11024": 0.0237837838, + "11025": 0.0247747748, + "11026": 0.0257657658, + "11027": 0.0267567568, + "11028": 0.0277477477, + "11029": 0.0287387387, + "11030": 0.0297297297, + "11031": 0.0307207207, + "11032": 0.0317117117, + "11033": 0.0327027027, + "11034": 0.0336936937, + "11035": 0.0346846847, + "11036": 0.0356756757, + "11037": 0.0366666667, + "11038": 0.0376576577, + "11039": 0.0386486486, + "11040": 0.0396396396, + "11041": 0.0406306306, + "11042": 0.0416216216, + "11043": 0.0426126126, + "11044": 0.0436036036, + "11045": 0.0445945946, + "11046": 0.0455855856, + "11047": 0.0465765766, + "11048": 0.0475675676, + "11049": 0.0485585586, + "11050": 0.0495495495, + "11051": 0.0505405405, + "11052": 0.0515315315, + "11053": 0.0525225225, + "11054": 0.0535135135, + "11055": 0.0545045045, + "11056": 0.0554954955, + "11057": 0.0564864865, + "11058": 0.0574774775, + "11059": 0.0584684685, + "11060": 0.0594594595, + "11061": 0.0604504505, + "11062": 0.0614414414, + "11063": 0.0624324324, + "11064": 0.0634234234, + "11065": 0.0644144144, + "11066": 0.0654054054, + "11067": 0.0663963964, + "11068": 0.0673873874, + "11069": 0.0683783784, + "11070": 0.0693693694, + "11071": 0.0703603604, + "11072": 0.0713513514, + "11073": 0.0723423423, + "11074": 0.0733333333, + "11075": 0.0743243243, + "11076": 0.0753153153, + "11077": 0.0763063063, + "11078": 0.0772972973, + "11079": 0.0782882883, + "11080": 0.0792792793, + "11081": 0.0802702703, + "11082": 0.0812612613, + "11083": 0.0822522523, + "11084": 0.0832432432, + "11085": 0.0842342342, + "11086": 0.0852252252, + "11087": 0.0862162162, + "11088": 0.0872072072, + "11089": 0.0881981982, + "11090": 0.0891891892, + "11091": 0.0901801802, + "11092": 0.0911711712, + "11093": 0.0921621622, + "11094": 0.0931531532, + "11095": 0.0941441441, + "11096": 0.0951351351, + "11097": 0.0961261261, + "11098": 0.0971171171, + "11099": 0.0981081081, + "11100": 0.0990990991, + "11101": 0.1000900901, + "11102": 0.1010810811, + "11103": 0.1020720721, + "11104": 0.1030630631, + "11105": 0.1040540541, + "11106": 0.105045045, + "11107": 0.106036036, + "11108": 0.107027027, + "11109": 0.108018018, + "11110": 0.109009009, + "11111": 0.11, + "11112": 0.110990991, + "11113": 0.111981982, + "11114": 0.112972973, + "11115": 0.113963964, + "11116": 0.114954955, + "11117": 0.1159459459, + "11118": 0.1169369369, + "11119": 0.1179279279, + "11120": 0.1189189189, + "11121": 0.1199099099, + "11122": 0.1209009009, + "11123": 0.1218918919, + "11124": 0.1228828829, + "11125": 0.1238738739, + "11126": 0.1248648649, + "11127": 0.1258558559, + "11128": 0.1268468468, + "11129": 0.1278378378, + "11130": 0.1288288288, + "11131": 0.1298198198, + "11132": 0.1308108108, + "11133": 0.1318018018, + "11134": 0.1327927928, + "11135": 0.1337837838, + "11136": 0.1347747748, + "11137": 0.1357657658, + "11138": 0.1367567568, + "11139": 0.1377477477, + "11140": 0.1387387387, + "11141": 0.1397297297, + "11142": 0.1407207207, + "11143": 0.1417117117, + "11144": 0.1427027027, + "11145": 0.1436936937, + "11146": 0.1446846847, + "11147": 0.1456756757, + "11148": 0.1466666667, + "11149": 0.1476576577, + "11150": 0.1486486486, + "11151": 0.1496396396, + "11152": 0.1506306306, + "11153": 0.1516216216, + "11154": 0.1526126126, + "11155": 0.1536036036, + "11156": 0.1545945946, + "11157": 0.1555855856, + "11158": 0.1565765766, + "11159": 0.1575675676, + "11160": 0.1585585586, + "11161": 0.1595495495, + "11162": 0.1605405405, + "11163": 0.1615315315, + "11164": 0.1625225225, + "11165": 0.1635135135, + "11166": 0.1645045045, + "11167": 0.1654954955, + "11168": 0.1664864865, + "11169": 0.1674774775, + "11170": 0.1684684685, + "11171": 0.1694594595, + "11172": 0.1704504505, + "11173": 0.1714414414, + "11174": 0.1724324324, + "11175": 0.1734234234, + "11176": 0.1744144144, + "11177": 0.1754054054, + "11178": 0.1763963964, + "11179": 0.1773873874, + "11180": 0.1783783784, + "11181": 0.1793693694, + "11182": 0.1803603604, + "11183": 0.1813513514, + "11184": 0.1823423423, + "11185": 0.1833333333, + "11186": 0.1843243243, + "11187": 0.1853153153, + "11188": 0.1863063063, + "11189": 0.1872972973, + "11190": 0.1882882883, + "11191": 0.1892792793, + "11192": 0.1902702703, + "11193": 0.1912612613, + "11194": 0.1922522523, + "11195": 0.1932432432, + "11196": 0.1942342342, + "11197": 0.1952252252, + "11198": 0.1962162162, + "11199": 0.1972072072, + "11200": 0.1981981982, + "11201": 0.1991891892, + "11202": 0.2001801802, + "11203": 0.2011711712, + "11204": 0.2021621622, + "11205": 0.2031531532, + "11206": 0.2041441441, + "11207": 0.2051351351, + "11208": 0.2061261261, + "11209": 0.2071171171, + "11210": 0.2081081081, + "11211": 0.2090990991, + "11212": 0.2100900901, + "11213": 0.2110810811, + "11214": 0.2120720721, + "11215": 0.2130630631, + "11216": 0.2140540541, + "11217": 0.215045045, + "11218": 0.216036036, + "11219": 0.217027027, + "11220": 0.218018018, + "11221": 0.219009009, + "11222": 0.22, + "11223": 0.220990991, + "11224": 0.221981982, + "11225": 0.222972973, + "11226": 0.223963964, + "11227": 0.224954955, + "11228": 0.2259459459, + "11229": 0.2269369369, + "11230": 0.2279279279, + "11231": 0.2289189189, + "11232": 0.2299099099, + "11233": 0.2309009009, + "11234": 0.2318918919, + "11235": 0.2328828829, + "11236": 0.2338738739, + "11237": 0.2348648649, + "11238": 0.2358558559, + "11239": 0.2368468468, + "11240": 0.2378378378, + "11241": 0.2388288288, + "11242": 0.2398198198, + "11243": 0.2408108108, + "11244": 0.2418018018, + "11245": 0.2427927928, + "11246": 0.2437837838, + "11247": 0.2447747748, + "11248": 0.2457657658, + "11249": 0.2467567568, + "11250": 0.2477477477, + "11251": 0.2487387387, + "11252": 0.2497297297, + "11253": 0.2507207207, + "11254": 0.2517117117, + "11255": 0.2527027027, + "11256": 0.2536936937, + "11257": 0.2546846847, + "11258": 0.2556756757, + "11259": 0.2566666667, + "11260": 0.2576576577, + "11261": 0.2586486486, + "11262": 0.2596396396, + "11263": 0.2606306306, + "11264": 0.2616216216, + "11265": 0.2626126126, + "11266": 0.2636036036, + "11267": 0.2645945946, + "11268": 0.2655855856, + "11269": 0.2665765766, + "11270": 0.2675675676, + "11271": 0.2685585586, + "11272": 0.2695495495, + "11273": 0.2705405405, + "11274": 0.2715315315, + "11275": 0.2725225225, + "11276": 0.2735135135, + "11277": 0.2745045045, + "11278": 0.2754954955, + "11279": 0.2764864865, + "11280": 0.2774774775, + "11281": 0.2784684685, + "11282": 0.2794594595, + "11283": 0.2804504505, + "11284": 0.2814414414, + "11285": 0.2824324324, + "11286": 0.2834234234, + "11287": 0.2844144144, + "11288": 0.2854054054, + "11289": 0.2863963964, + "11290": 0.2873873874, + "11291": 0.2883783784, + "11292": 0.2893693694, + "11293": 0.2903603604, + "11294": 0.2913513514, + "11295": 0.2923423423, + "11296": 0.2933333333, + "11297": 0.2943243243, + "11298": 0.2953153153, + "11299": 0.2963063063, + "11300": 0.2972972973, + "11301": 0.2982882883, + "11302": 0.2992792793, + "11303": 0.3002702703, + "11304": 0.3012612613, + "11305": 0.3022522523, + "11306": 0.3032432432, + "11307": 0.3042342342, + "11308": 0.3052252252, + "11309": 0.3062162162, + "11310": 0.3072072072, + "11311": 0.3081981982, + "11312": 0.3091891892, + "11313": 0.3101801802, + "11314": 0.3111711712, + "11315": 0.3121621622, + "11316": 0.3131531532, + "11317": 0.3141441441, + "11318": 0.3151351351, + "11319": 0.3161261261, + "11320": 0.3171171171, + "11321": 0.3181081081, + "11322": 0.3190990991, + "11323": 0.3200900901, + "11324": 0.3210810811, + "11325": 0.3220720721, + "11326": 0.3230630631, + "11327": 0.3240540541, + "11328": 0.325045045, + "11329": 0.326036036, + "11330": 0.327027027, + "11331": 0.328018018, + "11332": 0.329009009, + "11333": 0.33, + "11334": 0.330990991, + "11335": 0.331981982, + "11336": 0.332972973, + "11337": 0.333963964, + "11338": 0.334954955, + "11339": 0.3359459459, + "11340": 0.3369369369, + "11341": 0.3379279279, + "11342": 0.3389189189, + "11343": 0.3399099099, + "11344": 0.3409009009, + "11345": 0.3418918919, + "11346": 0.3428828829, + "11347": 0.3438738739, + "11348": 0.3448648649, + "11349": 0.3458558559, + "11350": 0.3468468468, + "11351": 0.3478378378, + "11352": 0.3488288288, + "11353": 0.3498198198, + "11354": 0.3508108108, + "11355": 0.3518018018, + "11356": 0.3527927928, + "11357": 0.3537837838, + "11358": 0.3547747748, + "11359": 0.3557657658, + "11360": 0.3567567568, + "11361": 0.3577477477, + "11362": 0.3587387387, + "11363": 0.3597297297, + "11364": 0.3607207207, + "11365": 0.3617117117, + "11366": 0.3627027027, + "11367": 0.3636936937, + "11368": 0.3646846847, + "11369": 0.3656756757, + "11370": 0.3666666667, + "11371": 0.3676576577, + "11372": 0.3686486486, + "11373": 0.3696396396, + "11374": 0.3706306306, + "11375": 0.3716216216, + "11376": 0.3726126126, + "11377": 0.3736036036, + "11378": 0.3745945946, + "11379": 0.3755855856, + "11380": 0.3765765766, + "11381": 0.3775675676, + "11382": 0.3785585586, + "11383": 0.3795495495, + "11384": 0.3805405405, + "11385": 0.3815315315, + "11386": 0.3825225225, + "11387": 0.3835135135, + "11388": 0.3845045045, + "11389": 0.3854954955, + "11390": 0.3864864865, + "11391": 0.3874774775, + "11392": 0.3884684685, + "11393": 0.3894594595, + "11394": 0.3904504505, + "11395": 0.3914414414, + "11396": 0.3924324324, + "11397": 0.3934234234, + "11398": 0.3944144144, + "11399": 0.3954054054, + "11400": 0.3963963964, + "11401": 0.3973873874, + "11402": 0.3983783784, + "11403": 0.3993693694, + "11404": 0.4003603604, + "11405": 0.4013513514, + "11406": 0.4023423423, + "11407": 0.4033333333, + "11408": 0.4043243243, + "11409": 0.4053153153, + "11410": 0.4063063063, + "11411": 0.4072972973, + "11412": 0.4082882883, + "11413": 0.4092792793, + "11414": 0.4102702703, + "11415": 0.4112612613, + "11416": 0.4122522523, + "11417": 0.4132432432, + "11418": 0.4142342342, + "11419": 0.4152252252, + "11420": 0.4162162162, + "11421": 0.4172072072, + "11422": 0.4181981982, + "11423": 0.4191891892, + "11424": 0.4201801802, + "11425": 0.4211711712, + "11426": 0.4221621622, + "11427": 0.4231531532, + "11428": 0.4241441441, + "11429": 0.4251351351, + "11430": 0.4261261261, + "11431": 0.4271171171, + "11432": 0.4281081081, + "11433": 0.4290990991, + "11434": 0.4300900901, + "11435": 0.4310810811, + "11436": 0.4320720721, + "11437": 0.4330630631, + "11438": 0.4340540541, + "11439": 0.435045045, + "11440": 0.436036036, + "11441": 0.437027027, + "11442": 0.438018018, + "11443": 0.439009009, + "11444": 0.44, + "11445": 0.440990991, + "11446": 0.441981982, + "11447": 0.442972973, + "11448": 0.443963964, + "11449": 0.444954955, + "11450": 0.4459459459, + "11451": 0.4469369369, + "11452": 0.4479279279, + "11453": 0.4489189189, + "11454": 0.4499099099, + "11455": 0.4509009009, + "11456": 0.4518918919, + "11457": 0.4528828829, + "11458": 0.4538738739, + "11459": 0.4548648649, + "11460": 0.4558558559, + "11461": 0.4568468468, + "11462": 0.4578378378, + "11463": 0.4588288288, + "11464": 0.4598198198, + "11465": 0.4608108108, + "11466": 0.4618018018, + "11467": 0.4627927928, + "11468": 0.4637837838, + "11469": 0.4647747748, + "11470": 0.4657657658, + "11471": 0.4667567568, + "11472": 0.4677477477, + "11473": 0.4687387387, + "11474": 0.4697297297, + "11475": 0.4707207207, + "11476": 0.4717117117, + "11477": 0.4727027027, + "11478": 0.4736936937, + "11479": 0.4746846847, + "11480": 0.4756756757, + "11481": 0.4766666667, + "11482": 0.4776576577, + "11483": 0.4786486486, + "11484": 0.4796396396, + "11485": 0.4806306306, + "11486": 0.4816216216, + "11487": 0.4826126126, + "11488": 0.4836036036, + "11489": 0.4845945946, + "11490": 0.4855855856, + "11491": 0.4865765766, + "11492": 0.4875675676, + "11493": 0.4885585586, + "11494": 0.4895495495, + "11495": 0.4905405405, + "11496": 0.4915315315, + "11497": 0.4925225225, + "11498": 0.4935135135, + "11499": 0.4945045045, + "11500": 0.4954954955, + "11501": 0.4964864865, + "11502": 0.4974774775, + "11503": 0.4984684685, + "11504": 0.4994594595, + "11505": 0.5004504505, + "11506": 0.5014414414, + "11507": 0.5024324324, + "11508": 0.5034234234, + "11509": 0.5044144144, + "11510": 0.5054054054, + "11511": 0.5063963964, + "11512": 0.5073873874, + "11513": 0.5083783784, + "11514": 0.5093693694, + "11515": 0.5103603604, + "11516": 0.5113513514, + "11517": 0.5123423423, + "11518": 0.5133333333, + "11519": 0.5143243243, + "11520": 0.5153153153, + "11521": 0.5163063063, + "11522": 0.5172972973, + "11523": 0.5182882883, + "11524": 0.5192792793, + "11525": 0.5202702703, + "11526": 0.5212612613, + "11527": 0.5222522523, + "11528": 0.5232432432, + "11529": 0.5242342342, + "11530": 0.5252252252, + "11531": 0.5262162162, + "11532": 0.5272072072, + "11533": 0.5281981982, + "11534": 0.5291891892, + "11535": 0.5301801802, + "11536": 0.5311711712, + "11537": 0.5321621622, + "11538": 0.5331531532, + "11539": 0.5341441441, + "11540": 0.5351351351, + "11541": 0.5361261261, + "11542": 0.5371171171, + "11543": 0.5381081081, + "11544": 0.5390990991, + "11545": 0.5400900901, + "11546": 0.5410810811, + "11547": 0.5420720721, + "11548": 0.5430630631, + "11549": 0.5440540541, + "11550": 0.545045045, + "11551": 0.546036036, + "11552": 0.547027027, + "11553": 0.548018018, + "11554": 0.549009009, + "11555": 0.55, + "11556": 0.550990991, + "11557": 0.551981982, + "11558": 0.552972973, + "11559": 0.553963964, + "11560": 0.554954955, + "11561": 0.5559459459, + "11562": 0.5569369369, + "11563": 0.5579279279, + "11564": 0.5589189189, + "11565": 0.5599099099, + "11566": 0.5609009009, + "11567": 0.5618918919, + "11568": 0.5628828829, + "11569": 0.5638738739, + "11570": 0.5648648649, + "11571": 0.5658558559, + "11572": 0.5668468468, + "11573": 0.5678378378, + "11574": 0.5688288288, + "11575": 0.5698198198, + "11576": 0.5708108108, + "11577": 0.5718018018, + "11578": 0.5727927928, + "11579": 0.5737837838, + "11580": 0.5747747748, + "11581": 0.5757657658, + "11582": 0.5767567568, + "11583": 0.5777477477, + "11584": 0.5787387387, + "11585": 0.5797297297, + "11586": 0.5807207207, + "11587": 0.5817117117, + "11588": 0.5827027027, + "11589": 0.5836936937, + "11590": 0.5846846847, + "11591": 0.5856756757, + "11592": 0.5866666667, + "11593": 0.5876576577, + "11594": 0.5886486486, + "11595": 0.5896396396, + "11596": 0.5906306306, + "11597": 0.5916216216, + "11598": 0.5926126126, + "11599": 0.5936036036, + "11600": 0.5945945946, + "11601": 0.5955855856, + "11602": 0.5965765766, + "11603": 0.5975675676, + "11604": 0.5985585586, + "11605": 0.5995495495, + "11606": 0.6005405405, + "11607": 0.6015315315, + "11608": 0.6025225225, + "11609": 0.6035135135, + "11610": 0.6045045045, + "11611": 0.6054954955, + "11612": 0.6064864865, + "11613": 0.6074774775, + "11614": 0.6084684685, + "11615": 0.6094594595, + "11616": 0.6104504505, + "11617": 0.6114414414, + "11618": 0.6124324324, + "11619": 0.6134234234, + "11620": 0.6144144144, + "11621": 0.6154054054, + "11622": 0.6163963964, + "11623": 0.6173873874, + "11624": 0.6183783784, + "11625": 0.6193693694, + "11626": 0.6203603604, + "11627": 0.6213513514, + "11628": 0.6223423423, + "11629": 0.6233333333, + "11630": 0.6243243243, + "11631": 0.6253153153, + "11632": 0.6263063063, + "11633": 0.6272972973, + "11634": 0.6282882883, + "11635": 0.6292792793, + "11636": 0.6302702703, + "11637": 0.6312612613, + "11638": 0.6322522523, + "11639": 0.6332432432, + "11640": 0.6342342342, + "11641": 0.6352252252, + "11642": 0.6362162162, + "11643": 0.6372072072, + "11644": 0.6381981982, + "11645": 0.6391891892, + "11646": 0.6401801802, + "11647": 0.6411711712, + "11648": 0.6421621622, + "11649": 0.6431531532, + "11650": 0.6441441441, + "11651": 0.6451351351, + "11652": 0.6461261261, + "11653": 0.6471171171, + "11654": 0.6481081081, + "11655": 0.6490990991, + "11656": 0.6500900901, + "11657": 0.6510810811, + "11658": 0.6520720721, + "11659": 0.6530630631, + "11660": 0.6540540541, + "11661": 0.655045045, + "11662": 0.656036036, + "11663": 0.657027027, + "11664": 0.658018018, + "11665": 0.659009009, + "11666": 0.66, + "11667": 0.660990991, + "11668": 0.661981982, + "11669": 0.662972973, + "11670": 0.663963964, + "11671": 0.664954955, + "11672": 0.6659459459, + "11673": 0.6669369369, + "11674": 0.6679279279, + "11675": 0.6689189189, + "11676": 0.6699099099, + "11677": 0.6709009009, + "11678": 0.6718918919, + "11679": 0.6728828829, + "11680": 0.6738738739, + "11681": 0.6748648649, + "11682": 0.6758558559, + "11683": 0.6768468468, + "11684": 0.6778378378, + "11685": 0.6788288288, + "11686": 0.6798198198, + "11687": 0.6808108108, + "11688": 0.6818018018, + "11689": 0.6827927928, + "11690": 0.6837837838, + "11691": 0.6847747748, + "11692": 0.6857657658, + "11693": 0.6867567568, + "11694": 0.6877477477, + "11695": 0.6887387387, + "11696": 0.6897297297, + "11697": 0.6907207207, + "11698": 0.6917117117, + "11699": 0.6927027027, + "11700": 0.6936936937, + "11701": 0.6946846847, + "11702": 0.6956756757, + "11703": 0.6966666667, + "11704": 0.6976576577, + "11705": 0.6986486486, + "11706": 0.6996396396, + "11707": 0.7006306306, + "11708": 0.7016216216, + "11709": 0.7026126126, + "11710": 0.7036036036, + "11711": 0.7045945946, + "11712": 0.7055855856, + "11713": 0.7065765766, + "11714": 0.7075675676, + "11715": 0.7085585586, + "11716": 0.7095495495, + "11717": 0.7105405405, + "11718": 0.7115315315, + "11719": 0.7125225225, + "11720": 0.7135135135, + "11721": 0.7145045045, + "11722": 0.7154954955, + "11723": 0.7164864865, + "11724": 0.7174774775, + "11725": 0.7184684685, + "11726": 0.7194594595, + "11727": 0.7204504505, + "11728": 0.7214414414, + "11729": 0.7224324324, + "11730": 0.7234234234, + "11731": 0.7244144144, + "11732": 0.7254054054, + "11733": 0.7263963964, + "11734": 0.7273873874, + "11735": 0.7283783784, + "11736": 0.7293693694, + "11737": 0.7303603604, + "11738": 0.7313513514, + "11739": 0.7323423423, + "11740": 0.7333333333, + "11741": 0.7343243243, + "11742": 0.7353153153, + "11743": 0.7363063063, + "11744": 0.7372972973, + "11745": 0.7382882883, + "11746": 0.7392792793, + "11747": 0.7402702703, + "11748": 0.7412612613, + "11749": 0.7422522523, + "11750": 0.7432432432, + "11751": 0.7442342342, + "11752": 0.7452252252, + "11753": 0.7462162162, + "11754": 0.7472072072, + "11755": 0.7481981982, + "11756": 0.7491891892, + "11757": 0.7501801802, + "11758": 0.7511711712, + "11759": 0.7521621622, + "11760": 0.7531531532, + "11761": 0.7541441441, + "11762": 0.7551351351, + "11763": 0.7561261261, + "11764": 0.7571171171, + "11765": 0.7581081081, + "11766": 0.7590990991, + "11767": 0.7600900901, + "11768": 0.7610810811, + "11769": 0.7620720721, + "11770": 0.7630630631, + "11771": 0.7640540541, + "11772": 0.765045045, + "11773": 0.766036036, + "11774": 0.767027027, + "11775": 0.768018018, + "11776": 0.769009009, + "11777": 0.77, + "11778": 0.770990991, + "11779": 0.771981982, + "11780": 0.772972973, + "11781": 0.773963964, + "11782": 0.774954955, + "11783": 0.7759459459, + "11784": 0.7769369369, + "11785": 0.7779279279, + "11786": 0.7789189189, + "11787": 0.7799099099, + "11788": 0.7809009009, + "11789": 0.7818918919, + "11790": 0.7828828829, + "11791": 0.7838738739, + "11792": 0.7848648649, + "11793": 0.7858558559, + "11794": 0.7868468468, + "11795": 0.7878378378, + "11796": 0.7888288288, + "11797": 0.7898198198, + "11798": 0.7908108108, + "11799": 0.7918018018, + "11800": 0.7927927928, + "11801": 0.7937837838, + "11802": 0.7947747748, + "11803": 0.7957657658, + "11804": 0.7967567568, + "11805": 0.7977477477, + "11806": 0.7987387387, + "11807": 0.7997297297, + "11808": 0.8007207207, + "11809": 0.8017117117, + "11810": 0.8027027027, + "11811": 0.8036936937, + "11812": 0.8046846847, + "11813": 0.8056756757, + "11814": 0.8066666667, + "11815": 0.8076576577, + "11816": 0.8086486486, + "11817": 0.8096396396, + "11818": 0.8106306306, + "11819": 0.8116216216, + "11820": 0.8126126126, + "11821": 0.8136036036, + "11822": 0.8145945946, + "11823": 0.8155855856, + "11824": 0.8165765766, + "11825": 0.8175675676, + "11826": 0.8185585586, + "11827": 0.8195495495, + "11828": 0.8205405405, + "11829": 0.8215315315, + "11830": 0.8225225225, + "11831": 0.8235135135, + "11832": 0.8245045045, + "11833": 0.8254954955, + "11834": 0.8264864865, + "11835": 0.8274774775, + "11836": 0.8284684685, + "11837": 0.8294594595, + "11838": 0.8304504505, + "11839": 0.8314414414, + "11840": 0.8324324324, + "11841": 0.8334234234, + "11842": 0.8344144144, + "11843": 0.8354054054, + "11844": 0.8363963964, + "11845": 0.8373873874, + "11846": 0.8383783784, + "11847": 0.8393693694, + "11848": 0.8403603604, + "11849": 0.8413513514, + "11850": 0.8423423423, + "11851": 0.8433333333, + "11852": 0.8443243243, + "11853": 0.8453153153, + "11854": 0.8463063063, + "11855": 0.8472972973, + "11856": 0.8482882883, + "11857": 0.8492792793, + "11858": 0.8502702703, + "11859": 0.8512612613, + "11860": 0.8522522523, + "11861": 0.8532432432, + "11862": 0.8542342342, + "11863": 0.8552252252, + "11864": 0.8562162162, + "11865": 0.8572072072, + "11866": 0.8581981982, + "11867": 0.8591891892, + "11868": 0.8601801802, + "11869": 0.8611711712, + "11870": 0.8621621622, + "11871": 0.8631531532, + "11872": 0.8641441441, + "11873": 0.8651351351, + "11874": 0.8661261261, + "11875": 0.8671171171, + "11876": 0.8681081081, + "11877": 0.8690990991, + "11878": 0.8700900901, + "11879": 0.8710810811, + "11880": 0.8720720721, + "11881": 0.8730630631, + "11882": 0.8740540541, + "11883": 0.875045045, + "11884": 0.876036036, + "11885": 0.877027027, + "11886": 0.878018018, + "11887": 0.879009009, + "11888": 0.88, + "11889": 0.880990991, + "11890": 0.881981982, + "11891": 0.882972973, + "11892": 0.883963964, + "11893": 0.884954955, + "11894": 0.8859459459, + "11895": 0.8869369369, + "11896": 0.8879279279, + "11897": 0.8889189189, + "11898": 0.8899099099, + "11899": 0.8909009009, + "11900": 0.8918918919, + "11901": 0.8928828829, + "11902": 0.8938738739, + "11903": 0.8948648649, + "11904": 0.8958558559, + "11905": 0.8968468468, + "11906": 0.8978378378, + "11907": 0.8988288288, + "11908": 0.8998198198, + "11909": 0.9008108108, + "11910": 0.9018018018, + "11911": 0.9027927928, + "11912": 0.9037837838, + "11913": 0.9047747748, + "11914": 0.9057657658, + "11915": 0.9067567568, + "11916": 0.9077477477, + "11917": 0.9087387387, + "11918": 0.9097297297, + "11919": 0.9107207207, + "11920": 0.9117117117, + "11921": 0.9127027027, + "11922": 0.9136936937, + "11923": 0.9146846847, + "11924": 0.9156756757, + "11925": 0.9166666667, + "11926": 0.9176576577, + "11927": 0.9186486486, + "11928": 0.9196396396, + "11929": 0.9206306306, + "11930": 0.9216216216, + "11931": 0.9226126126, + "11932": 0.9236036036, + "11933": 0.9245945946, + "11934": 0.9255855856, + "11935": 0.9265765766, + "11936": 0.9275675676, + "11937": 0.9285585586, + "11938": 0.9295495495, + "11939": 0.9305405405, + "11940": 0.9315315315, + "11941": 0.9325225225, + "11942": 0.9335135135, + "11943": 0.9345045045, + "11944": 0.9354954955, + "11945": 0.9364864865, + "11946": 0.9374774775, + "11947": 0.9384684685, + "11948": 0.9394594595, + "11949": 0.9404504505, + "11950": 0.9414414414, + "11951": 0.9424324324, + "11952": 0.9434234234, + "11953": 0.9444144144, + "11954": 0.9454054054, + "11955": 0.9463963964, + "11956": 0.9473873874, + "11957": 0.9483783784, + "11958": 0.9493693694, + "11959": 0.9503603604, + "11960": 0.9513513514, + "11961": 0.9523423423, + "11962": 0.9533333333, + "11963": 0.9543243243, + "11964": 0.9553153153, + "11965": 0.9563063063, + "11966": 0.9572972973, + "11967": 0.9582882883, + "11968": 0.9592792793, + "11969": 0.9602702703, + "11970": 0.9612612613, + "11971": 0.9622522523, + "11972": 0.9632432432, + "11973": 0.9642342342, + "11974": 0.9652252252, + "11975": 0.9662162162, + "11976": 0.9672072072, + "11977": 0.9681981982, + "11978": 0.9691891892, + "11979": 0.9701801802, + "11980": 0.9711711712, + "11981": 0.9721621622, + "11982": 0.9731531532, + "11983": 0.9741441441, + "11984": 0.9751351351, + "11985": 0.9761261261, + "11986": 0.9771171171, + "11987": 0.9781081081, + "11988": 0.9790990991, + "11989": 0.9800900901, + "11990": 0.9810810811, + "11991": 0.9820720721, + "11992": 0.9830630631, + "11993": 0.9840540541, + "11994": 0.985045045, + "11995": 0.986036036, + "11996": 0.987027027, + "11997": 0.988018018, + "11998": 0.989009009, + "11999": 0.99, + "12000": 0.0, + "12001": 0.000990991, + "12002": 0.001981982, + "12003": 0.002972973, + "12004": 0.003963964, + "12005": 0.004954955, + "12006": 0.0059459459, + "12007": 0.0069369369, + "12008": 0.0079279279, + "12009": 0.0089189189, + "12010": 0.0099099099, + "12011": 0.0109009009, + "12012": 0.0118918919, + "12013": 0.0128828829, + "12014": 0.0138738739, + "12015": 0.0148648649, + "12016": 0.0158558559, + "12017": 0.0168468468, + "12018": 0.0178378378, + "12019": 0.0188288288, + "12020": 0.0198198198, + "12021": 0.0208108108, + "12022": 0.0218018018, + "12023": 0.0227927928, + "12024": 0.0237837838, + "12025": 0.0247747748, + "12026": 0.0257657658, + "12027": 0.0267567568, + "12028": 0.0277477477, + "12029": 0.0287387387, + "12030": 0.0297297297, + "12031": 0.0307207207, + "12032": 0.0317117117, + "12033": 0.0327027027, + "12034": 0.0336936937, + "12035": 0.0346846847, + "12036": 0.0356756757, + "12037": 0.0366666667, + "12038": 0.0376576577, + "12039": 0.0386486486, + "12040": 0.0396396396, + "12041": 0.0406306306, + "12042": 0.0416216216, + "12043": 0.0426126126, + "12044": 0.0436036036, + "12045": 0.0445945946, + "12046": 0.0455855856, + "12047": 0.0465765766, + "12048": 0.0475675676, + "12049": 0.0485585586, + "12050": 0.0495495495, + "12051": 0.0505405405, + "12052": 0.0515315315, + "12053": 0.0525225225, + "12054": 0.0535135135, + "12055": 0.0545045045, + "12056": 0.0554954955, + "12057": 0.0564864865, + "12058": 0.0574774775, + "12059": 0.0584684685, + "12060": 0.0594594595, + "12061": 0.0604504505, + "12062": 0.0614414414, + "12063": 0.0624324324, + "12064": 0.0634234234, + "12065": 0.0644144144, + "12066": 0.0654054054, + "12067": 0.0663963964, + "12068": 0.0673873874, + "12069": 0.0683783784, + "12070": 0.0693693694, + "12071": 0.0703603604, + "12072": 0.0713513514, + "12073": 0.0723423423, + "12074": 0.0733333333, + "12075": 0.0743243243, + "12076": 0.0753153153, + "12077": 0.0763063063, + "12078": 0.0772972973, + "12079": 0.0782882883, + "12080": 0.0792792793, + "12081": 0.0802702703, + "12082": 0.0812612613, + "12083": 0.0822522523, + "12084": 0.0832432432, + "12085": 0.0842342342, + "12086": 0.0852252252, + "12087": 0.0862162162, + "12088": 0.0872072072, + "12089": 0.0881981982, + "12090": 0.0891891892, + "12091": 0.0901801802, + "12092": 0.0911711712, + "12093": 0.0921621622, + "12094": 0.0931531532, + "12095": 0.0941441441, + "12096": 0.0951351351, + "12097": 0.0961261261, + "12098": 0.0971171171, + "12099": 0.0981081081, + "12100": 0.0990990991, + "12101": 0.1000900901, + "12102": 0.1010810811, + "12103": 0.1020720721, + "12104": 0.1030630631, + "12105": 0.1040540541, + "12106": 0.105045045, + "12107": 0.106036036, + "12108": 0.107027027, + "12109": 0.108018018, + "12110": 0.109009009, + "12111": 0.11, + "12112": 0.110990991, + "12113": 0.111981982, + "12114": 0.112972973, + "12115": 0.113963964, + "12116": 0.114954955, + "12117": 0.1159459459, + "12118": 0.1169369369, + "12119": 0.1179279279, + "12120": 0.1189189189, + "12121": 0.1199099099, + "12122": 0.1209009009, + "12123": 0.1218918919, + "12124": 0.1228828829, + "12125": 0.1238738739, + "12126": 0.1248648649, + "12127": 0.1258558559, + "12128": 0.1268468468, + "12129": 0.1278378378, + "12130": 0.1288288288, + "12131": 0.1298198198, + "12132": 0.1308108108, + "12133": 0.1318018018, + "12134": 0.1327927928, + "12135": 0.1337837838, + "12136": 0.1347747748, + "12137": 0.1357657658, + "12138": 0.1367567568, + "12139": 0.1377477477, + "12140": 0.1387387387, + "12141": 0.1397297297, + "12142": 0.1407207207, + "12143": 0.1417117117, + "12144": 0.1427027027, + "12145": 0.1436936937, + "12146": 0.1446846847, + "12147": 0.1456756757, + "12148": 0.1466666667, + "12149": 0.1476576577, + "12150": 0.1486486486, + "12151": 0.1496396396, + "12152": 0.1506306306, + "12153": 0.1516216216, + "12154": 0.1526126126, + "12155": 0.1536036036, + "12156": 0.1545945946, + "12157": 0.1555855856, + "12158": 0.1565765766, + "12159": 0.1575675676, + "12160": 0.1585585586, + "12161": 0.1595495495, + "12162": 0.1605405405, + "12163": 0.1615315315, + "12164": 0.1625225225, + "12165": 0.1635135135, + "12166": 0.1645045045, + "12167": 0.1654954955, + "12168": 0.1664864865, + "12169": 0.1674774775, + "12170": 0.1684684685, + "12171": 0.1694594595, + "12172": 0.1704504505, + "12173": 0.1714414414, + "12174": 0.1724324324, + "12175": 0.1734234234, + "12176": 0.1744144144, + "12177": 0.1754054054, + "12178": 0.1763963964, + "12179": 0.1773873874, + "12180": 0.1783783784, + "12181": 0.1793693694, + "12182": 0.1803603604, + "12183": 0.1813513514, + "12184": 0.1823423423, + "12185": 0.1833333333, + "12186": 0.1843243243, + "12187": 0.1853153153, + "12188": 0.1863063063, + "12189": 0.1872972973, + "12190": 0.1882882883, + "12191": 0.1892792793, + "12192": 0.1902702703, + "12193": 0.1912612613, + "12194": 0.1922522523, + "12195": 0.1932432432, + "12196": 0.1942342342, + "12197": 0.1952252252, + "12198": 0.1962162162, + "12199": 0.1972072072, + "12200": 0.1981981982, + "12201": 0.1991891892, + "12202": 0.2001801802, + "12203": 0.2011711712, + "12204": 0.2021621622, + "12205": 0.2031531532, + "12206": 0.2041441441, + "12207": 0.2051351351, + "12208": 0.2061261261, + "12209": 0.2071171171, + "12210": 0.2081081081, + "12211": 0.2090990991, + "12212": 0.2100900901, + "12213": 0.2110810811, + "12214": 0.2120720721, + "12215": 0.2130630631, + "12216": 0.2140540541, + "12217": 0.215045045, + "12218": 0.216036036, + "12219": 0.217027027, + "12220": 0.218018018, + "12221": 0.219009009, + "12222": 0.22, + "12223": 0.220990991, + "12224": 0.221981982, + "12225": 0.222972973, + "12226": 0.223963964, + "12227": 0.224954955, + "12228": 0.2259459459, + "12229": 0.2269369369, + "12230": 0.2279279279, + "12231": 0.2289189189, + "12232": 0.2299099099, + "12233": 0.2309009009, + "12234": 0.2318918919, + "12235": 0.2328828829, + "12236": 0.2338738739, + "12237": 0.2348648649, + "12238": 0.2358558559, + "12239": 0.2368468468, + "12240": 0.2378378378, + "12241": 0.2388288288, + "12242": 0.2398198198, + "12243": 0.2408108108, + "12244": 0.2418018018, + "12245": 0.2427927928, + "12246": 0.2437837838, + "12247": 0.2447747748, + "12248": 0.2457657658, + "12249": 0.2467567568, + "12250": 0.2477477477, + "12251": 0.2487387387, + "12252": 0.2497297297, + "12253": 0.2507207207, + "12254": 0.2517117117, + "12255": 0.2527027027, + "12256": 0.2536936937, + "12257": 0.2546846847, + "12258": 0.2556756757, + "12259": 0.2566666667, + "12260": 0.2576576577, + "12261": 0.2586486486, + "12262": 0.2596396396, + "12263": 0.2606306306, + "12264": 0.2616216216, + "12265": 0.2626126126, + "12266": 0.2636036036, + "12267": 0.2645945946, + "12268": 0.2655855856, + "12269": 0.2665765766, + "12270": 0.2675675676, + "12271": 0.2685585586, + "12272": 0.2695495495, + "12273": 0.2705405405, + "12274": 0.2715315315, + "12275": 0.2725225225, + "12276": 0.2735135135, + "12277": 0.2745045045, + "12278": 0.2754954955, + "12279": 0.2764864865, + "12280": 0.2774774775, + "12281": 0.2784684685, + "12282": 0.2794594595, + "12283": 0.2804504505, + "12284": 0.2814414414, + "12285": 0.2824324324, + "12286": 0.2834234234, + "12287": 0.2844144144, + "12288": 0.2854054054, + "12289": 0.2863963964, + "12290": 0.2873873874, + "12291": 0.2883783784, + "12292": 0.2893693694, + "12293": 0.2903603604, + "12294": 0.2913513514, + "12295": 0.2923423423, + "12296": 0.2933333333, + "12297": 0.2943243243, + "12298": 0.2953153153, + "12299": 0.2963063063, + "12300": 0.2972972973, + "12301": 0.2982882883, + "12302": 0.2992792793, + "12303": 0.3002702703, + "12304": 0.3012612613, + "12305": 0.3022522523, + "12306": 0.3032432432, + "12307": 0.3042342342, + "12308": 0.3052252252, + "12309": 0.3062162162, + "12310": 0.3072072072, + "12311": 0.3081981982, + "12312": 0.3091891892, + "12313": 0.3101801802, + "12314": 0.3111711712, + "12315": 0.3121621622, + "12316": 0.3131531532, + "12317": 0.3141441441, + "12318": 0.3151351351, + "12319": 0.3161261261, + "12320": 0.3171171171, + "12321": 0.3181081081, + "12322": 0.3190990991, + "12323": 0.3200900901, + "12324": 0.3210810811, + "12325": 0.3220720721, + "12326": 0.3230630631, + "12327": 0.3240540541, + "12328": 0.325045045, + "12329": 0.326036036, + "12330": 0.327027027, + "12331": 0.328018018, + "12332": 0.329009009, + "12333": 0.33, + "12334": 0.330990991, + "12335": 0.331981982, + "12336": 0.332972973, + "12337": 0.333963964, + "12338": 0.334954955, + "12339": 0.3359459459, + "12340": 0.3369369369, + "12341": 0.3379279279, + "12342": 0.3389189189, + "12343": 0.3399099099, + "12344": 0.3409009009, + "12345": 0.3418918919, + "12346": 0.3428828829, + "12347": 0.3438738739, + "12348": 0.3448648649, + "12349": 0.3458558559, + "12350": 0.3468468468, + "12351": 0.3478378378, + "12352": 0.3488288288, + "12353": 0.3498198198, + "12354": 0.3508108108, + "12355": 0.3518018018, + "12356": 0.3527927928, + "12357": 0.3537837838, + "12358": 0.3547747748, + "12359": 0.3557657658, + "12360": 0.3567567568, + "12361": 0.3577477477, + "12362": 0.3587387387, + "12363": 0.3597297297, + "12364": 0.3607207207, + "12365": 0.3617117117, + "12366": 0.3627027027, + "12367": 0.3636936937, + "12368": 0.3646846847, + "12369": 0.3656756757, + "12370": 0.3666666667, + "12371": 0.3676576577, + "12372": 0.3686486486, + "12373": 0.3696396396, + "12374": 0.3706306306, + "12375": 0.3716216216, + "12376": 0.3726126126, + "12377": 0.3736036036, + "12378": 0.3745945946, + "12379": 0.3755855856, + "12380": 0.3765765766, + "12381": 0.3775675676, + "12382": 0.3785585586, + "12383": 0.3795495495, + "12384": 0.3805405405, + "12385": 0.3815315315, + "12386": 0.3825225225, + "12387": 0.3835135135, + "12388": 0.3845045045, + "12389": 0.3854954955, + "12390": 0.3864864865, + "12391": 0.3874774775, + "12392": 0.3884684685, + "12393": 0.3894594595, + "12394": 0.3904504505, + "12395": 0.3914414414, + "12396": 0.3924324324, + "12397": 0.3934234234, + "12398": 0.3944144144, + "12399": 0.3954054054, + "12400": 0.3963963964, + "12401": 0.3973873874, + "12402": 0.3983783784, + "12403": 0.3993693694, + "12404": 0.4003603604, + "12405": 0.4013513514, + "12406": 0.4023423423, + "12407": 0.4033333333, + "12408": 0.4043243243, + "12409": 0.4053153153, + "12410": 0.4063063063, + "12411": 0.4072972973, + "12412": 0.4082882883, + "12413": 0.4092792793, + "12414": 0.4102702703, + "12415": 0.4112612613, + "12416": 0.4122522523, + "12417": 0.4132432432, + "12418": 0.4142342342, + "12419": 0.4152252252, + "12420": 0.4162162162, + "12421": 0.4172072072, + "12422": 0.4181981982, + "12423": 0.4191891892, + "12424": 0.4201801802, + "12425": 0.4211711712, + "12426": 0.4221621622, + "12427": 0.4231531532, + "12428": 0.4241441441, + "12429": 0.4251351351, + "12430": 0.4261261261, + "12431": 0.4271171171, + "12432": 0.4281081081, + "12433": 0.4290990991, + "12434": 0.4300900901, + "12435": 0.4310810811, + "12436": 0.4320720721, + "12437": 0.4330630631, + "12438": 0.4340540541, + "12439": 0.435045045, + "12440": 0.436036036, + "12441": 0.437027027, + "12442": 0.438018018, + "12443": 0.439009009, + "12444": 0.44, + "12445": 0.440990991, + "12446": 0.441981982, + "12447": 0.442972973, + "12448": 0.443963964, + "12449": 0.444954955, + "12450": 0.4459459459, + "12451": 0.4469369369, + "12452": 0.4479279279, + "12453": 0.4489189189, + "12454": 0.4499099099, + "12455": 0.4509009009, + "12456": 0.4518918919, + "12457": 0.4528828829, + "12458": 0.4538738739, + "12459": 0.4548648649, + "12460": 0.4558558559, + "12461": 0.4568468468, + "12462": 0.4578378378, + "12463": 0.4588288288, + "12464": 0.4598198198, + "12465": 0.4608108108, + "12466": 0.4618018018, + "12467": 0.4627927928, + "12468": 0.4637837838, + "12469": 0.4647747748, + "12470": 0.4657657658, + "12471": 0.4667567568, + "12472": 0.4677477477, + "12473": 0.4687387387, + "12474": 0.4697297297, + "12475": 0.4707207207, + "12476": 0.4717117117, + "12477": 0.4727027027, + "12478": 0.4736936937, + "12479": 0.4746846847, + "12480": 0.4756756757, + "12481": 0.4766666667, + "12482": 0.4776576577, + "12483": 0.4786486486, + "12484": 0.4796396396, + "12485": 0.4806306306, + "12486": 0.4816216216, + "12487": 0.4826126126, + "12488": 0.4836036036, + "12489": 0.4845945946, + "12490": 0.4855855856, + "12491": 0.4865765766, + "12492": 0.4875675676, + "12493": 0.4885585586, + "12494": 0.4895495495, + "12495": 0.4905405405, + "12496": 0.4915315315, + "12497": 0.4925225225, + "12498": 0.4935135135, + "12499": 0.4945045045, + "12500": 0.4954954955, + "12501": 0.4964864865, + "12502": 0.4974774775, + "12503": 0.4984684685, + "12504": 0.4994594595, + "12505": 0.5004504505, + "12506": 0.5014414414, + "12507": 0.5024324324, + "12508": 0.5034234234, + "12509": 0.5044144144, + "12510": 0.5054054054, + "12511": 0.5063963964, + "12512": 0.5073873874, + "12513": 0.5083783784, + "12514": 0.5093693694, + "12515": 0.5103603604, + "12516": 0.5113513514, + "12517": 0.5123423423, + "12518": 0.5133333333, + "12519": 0.5143243243, + "12520": 0.5153153153, + "12521": 0.5163063063, + "12522": 0.5172972973, + "12523": 0.5182882883, + "12524": 0.5192792793, + "12525": 0.5202702703, + "12526": 0.5212612613, + "12527": 0.5222522523, + "12528": 0.5232432432, + "12529": 0.5242342342, + "12530": 0.5252252252, + "12531": 0.5262162162, + "12532": 0.5272072072, + "12533": 0.5281981982, + "12534": 0.5291891892, + "12535": 0.5301801802, + "12536": 0.5311711712, + "12537": 0.5321621622, + "12538": 0.5331531532, + "12539": 0.5341441441, + "12540": 0.5351351351, + "12541": 0.5361261261, + "12542": 0.5371171171, + "12543": 0.5381081081, + "12544": 0.5390990991, + "12545": 0.5400900901, + "12546": 0.5410810811, + "12547": 0.5420720721, + "12548": 0.5430630631, + "12549": 0.5440540541, + "12550": 0.545045045, + "12551": 0.546036036, + "12552": 0.547027027, + "12553": 0.548018018, + "12554": 0.549009009, + "12555": 0.55, + "12556": 0.550990991, + "12557": 0.551981982, + "12558": 0.552972973, + "12559": 0.553963964, + "12560": 0.554954955, + "12561": 0.5559459459, + "12562": 0.5569369369, + "12563": 0.5579279279, + "12564": 0.5589189189, + "12565": 0.5599099099, + "12566": 0.5609009009, + "12567": 0.5618918919, + "12568": 0.5628828829, + "12569": 0.5638738739, + "12570": 0.5648648649, + "12571": 0.5658558559, + "12572": 0.5668468468, + "12573": 0.5678378378, + "12574": 0.5688288288, + "12575": 0.5698198198, + "12576": 0.5708108108, + "12577": 0.5718018018, + "12578": 0.5727927928, + "12579": 0.5737837838, + "12580": 0.5747747748, + "12581": 0.5757657658, + "12582": 0.5767567568, + "12583": 0.5777477477, + "12584": 0.5787387387, + "12585": 0.5797297297, + "12586": 0.5807207207, + "12587": 0.5817117117, + "12588": 0.5827027027, + "12589": 0.5836936937, + "12590": 0.5846846847, + "12591": 0.5856756757, + "12592": 0.5866666667, + "12593": 0.5876576577, + "12594": 0.5886486486, + "12595": 0.5896396396, + "12596": 0.5906306306, + "12597": 0.5916216216, + "12598": 0.5926126126, + "12599": 0.5936036036, + "12600": 0.5945945946, + "12601": 0.5955855856, + "12602": 0.5965765766, + "12603": 0.5975675676, + "12604": 0.5985585586, + "12605": 0.5995495495, + "12606": 0.6005405405, + "12607": 0.6015315315, + "12608": 0.6025225225, + "12609": 0.6035135135, + "12610": 0.6045045045, + "12611": 0.6054954955, + "12612": 0.6064864865, + "12613": 0.6074774775, + "12614": 0.6084684685, + "12615": 0.6094594595, + "12616": 0.6104504505, + "12617": 0.6114414414, + "12618": 0.6124324324, + "12619": 0.6134234234, + "12620": 0.6144144144, + "12621": 0.6154054054, + "12622": 0.6163963964, + "12623": 0.6173873874, + "12624": 0.6183783784, + "12625": 0.6193693694, + "12626": 0.6203603604, + "12627": 0.6213513514, + "12628": 0.6223423423, + "12629": 0.6233333333, + "12630": 0.6243243243, + "12631": 0.6253153153, + "12632": 0.6263063063, + "12633": 0.6272972973, + "12634": 0.6282882883, + "12635": 0.6292792793, + "12636": 0.6302702703, + "12637": 0.6312612613, + "12638": 0.6322522523, + "12639": 0.6332432432, + "12640": 0.6342342342, + "12641": 0.6352252252, + "12642": 0.6362162162, + "12643": 0.6372072072, + "12644": 0.6381981982, + "12645": 0.6391891892, + "12646": 0.6401801802, + "12647": 0.6411711712, + "12648": 0.6421621622, + "12649": 0.6431531532, + "12650": 0.6441441441, + "12651": 0.6451351351, + "12652": 0.6461261261, + "12653": 0.6471171171, + "12654": 0.6481081081, + "12655": 0.6490990991, + "12656": 0.6500900901, + "12657": 0.6510810811, + "12658": 0.6520720721, + "12659": 0.6530630631, + "12660": 0.6540540541, + "12661": 0.655045045, + "12662": 0.656036036, + "12663": 0.657027027, + "12664": 0.658018018, + "12665": 0.659009009, + "12666": 0.66, + "12667": 0.660990991, + "12668": 0.661981982, + "12669": 0.662972973, + "12670": 0.663963964, + "12671": 0.664954955, + "12672": 0.6659459459, + "12673": 0.6669369369, + "12674": 0.6679279279, + "12675": 0.6689189189, + "12676": 0.6699099099, + "12677": 0.6709009009, + "12678": 0.6718918919, + "12679": 0.6728828829, + "12680": 0.6738738739, + "12681": 0.6748648649, + "12682": 0.6758558559, + "12683": 0.6768468468, + "12684": 0.6778378378, + "12685": 0.6788288288, + "12686": 0.6798198198, + "12687": 0.6808108108, + "12688": 0.6818018018, + "12689": 0.6827927928, + "12690": 0.6837837838, + "12691": 0.6847747748, + "12692": 0.6857657658, + "12693": 0.6867567568, + "12694": 0.6877477477, + "12695": 0.6887387387, + "12696": 0.6897297297, + "12697": 0.6907207207, + "12698": 0.6917117117, + "12699": 0.6927027027, + "12700": 0.6936936937, + "12701": 0.6946846847, + "12702": 0.6956756757, + "12703": 0.6966666667, + "12704": 0.6976576577, + "12705": 0.6986486486, + "12706": 0.6996396396, + "12707": 0.7006306306, + "12708": 0.7016216216, + "12709": 0.7026126126, + "12710": 0.7036036036, + "12711": 0.7045945946, + "12712": 0.7055855856, + "12713": 0.7065765766, + "12714": 0.7075675676, + "12715": 0.7085585586, + "12716": 0.7095495495, + "12717": 0.7105405405, + "12718": 0.7115315315, + "12719": 0.7125225225, + "12720": 0.7135135135, + "12721": 0.7145045045, + "12722": 0.7154954955, + "12723": 0.7164864865, + "12724": 0.7174774775, + "12725": 0.7184684685, + "12726": 0.7194594595, + "12727": 0.7204504505, + "12728": 0.7214414414, + "12729": 0.7224324324, + "12730": 0.7234234234, + "12731": 0.7244144144, + "12732": 0.7254054054, + "12733": 0.7263963964, + "12734": 0.7273873874, + "12735": 0.7283783784, + "12736": 0.7293693694, + "12737": 0.7303603604, + "12738": 0.7313513514, + "12739": 0.7323423423, + "12740": 0.7333333333, + "12741": 0.7343243243, + "12742": 0.7353153153, + "12743": 0.7363063063, + "12744": 0.7372972973, + "12745": 0.7382882883, + "12746": 0.7392792793, + "12747": 0.7402702703, + "12748": 0.7412612613, + "12749": 0.7422522523, + "12750": 0.7432432432, + "12751": 0.7442342342, + "12752": 0.7452252252, + "12753": 0.7462162162, + "12754": 0.7472072072, + "12755": 0.7481981982, + "12756": 0.7491891892, + "12757": 0.7501801802, + "12758": 0.7511711712, + "12759": 0.7521621622, + "12760": 0.7531531532, + "12761": 0.7541441441, + "12762": 0.7551351351, + "12763": 0.7561261261, + "12764": 0.7571171171, + "12765": 0.7581081081, + "12766": 0.7590990991, + "12767": 0.7600900901, + "12768": 0.7610810811, + "12769": 0.7620720721, + "12770": 0.7630630631, + "12771": 0.7640540541, + "12772": 0.765045045, + "12773": 0.766036036, + "12774": 0.767027027, + "12775": 0.768018018, + "12776": 0.769009009, + "12777": 0.77, + "12778": 0.770990991, + "12779": 0.771981982, + "12780": 0.772972973, + "12781": 0.773963964, + "12782": 0.774954955, + "12783": 0.7759459459, + "12784": 0.7769369369, + "12785": 0.7779279279, + "12786": 0.7789189189, + "12787": 0.7799099099, + "12788": 0.7809009009, + "12789": 0.7818918919, + "12790": 0.7828828829, + "12791": 0.7838738739, + "12792": 0.7848648649, + "12793": 0.7858558559, + "12794": 0.7868468468, + "12795": 0.7878378378, + "12796": 0.7888288288, + "12797": 0.7898198198, + "12798": 0.7908108108, + "12799": 0.7918018018, + "12800": 0.7927927928, + "12801": 0.7937837838, + "12802": 0.7947747748, + "12803": 0.7957657658, + "12804": 0.7967567568, + "12805": 0.7977477477, + "12806": 0.7987387387, + "12807": 0.7997297297, + "12808": 0.8007207207, + "12809": 0.8017117117, + "12810": 0.8027027027, + "12811": 0.8036936937, + "12812": 0.8046846847, + "12813": 0.8056756757, + "12814": 0.8066666667, + "12815": 0.8076576577, + "12816": 0.8086486486, + "12817": 0.8096396396, + "12818": 0.8106306306, + "12819": 0.8116216216, + "12820": 0.8126126126, + "12821": 0.8136036036, + "12822": 0.8145945946, + "12823": 0.8155855856, + "12824": 0.8165765766, + "12825": 0.8175675676, + "12826": 0.8185585586, + "12827": 0.8195495495, + "12828": 0.8205405405, + "12829": 0.8215315315, + "12830": 0.8225225225, + "12831": 0.8235135135, + "12832": 0.8245045045, + "12833": 0.8254954955, + "12834": 0.8264864865, + "12835": 0.8274774775, + "12836": 0.8284684685, + "12837": 0.8294594595, + "12838": 0.8304504505, + "12839": 0.8314414414, + "12840": 0.8324324324, + "12841": 0.8334234234, + "12842": 0.8344144144, + "12843": 0.8354054054, + "12844": 0.8363963964, + "12845": 0.8373873874, + "12846": 0.8383783784, + "12847": 0.8393693694, + "12848": 0.8403603604, + "12849": 0.8413513514, + "12850": 0.8423423423, + "12851": 0.8433333333, + "12852": 0.8443243243, + "12853": 0.8453153153, + "12854": 0.8463063063, + "12855": 0.8472972973, + "12856": 0.8482882883, + "12857": 0.8492792793, + "12858": 0.8502702703, + "12859": 0.8512612613, + "12860": 0.8522522523, + "12861": 0.8532432432, + "12862": 0.8542342342, + "12863": 0.8552252252, + "12864": 0.8562162162, + "12865": 0.8572072072, + "12866": 0.8581981982, + "12867": 0.8591891892, + "12868": 0.8601801802, + "12869": 0.8611711712, + "12870": 0.8621621622, + "12871": 0.8631531532, + "12872": 0.8641441441, + "12873": 0.8651351351, + "12874": 0.8661261261, + "12875": 0.8671171171, + "12876": 0.8681081081, + "12877": 0.8690990991, + "12878": 0.8700900901, + "12879": 0.8710810811, + "12880": 0.8720720721, + "12881": 0.8730630631, + "12882": 0.8740540541, + "12883": 0.875045045, + "12884": 0.876036036, + "12885": 0.877027027, + "12886": 0.878018018, + "12887": 0.879009009, + "12888": 0.88, + "12889": 0.880990991, + "12890": 0.881981982, + "12891": 0.882972973, + "12892": 0.883963964, + "12893": 0.884954955, + "12894": 0.8859459459, + "12895": 0.8869369369, + "12896": 0.8879279279, + "12897": 0.8889189189, + "12898": 0.8899099099, + "12899": 0.8909009009, + "12900": 0.8918918919, + "12901": 0.8928828829, + "12902": 0.8938738739, + "12903": 0.8948648649, + "12904": 0.8958558559, + "12905": 0.8968468468, + "12906": 0.8978378378, + "12907": 0.8988288288, + "12908": 0.8998198198, + "12909": 0.9008108108, + "12910": 0.9018018018, + "12911": 0.9027927928, + "12912": 0.9037837838, + "12913": 0.9047747748, + "12914": 0.9057657658, + "12915": 0.9067567568, + "12916": 0.9077477477, + "12917": 0.9087387387, + "12918": 0.9097297297, + "12919": 0.9107207207, + "12920": 0.9117117117, + "12921": 0.9127027027, + "12922": 0.9136936937, + "12923": 0.9146846847, + "12924": 0.9156756757, + "12925": 0.9166666667, + "12926": 0.9176576577, + "12927": 0.9186486486, + "12928": 0.9196396396, + "12929": 0.9206306306, + "12930": 0.9216216216, + "12931": 0.9226126126, + "12932": 0.9236036036, + "12933": 0.9245945946, + "12934": 0.9255855856, + "12935": 0.9265765766, + "12936": 0.9275675676, + "12937": 0.9285585586, + "12938": 0.9295495495, + "12939": 0.9305405405, + "12940": 0.9315315315, + "12941": 0.9325225225, + "12942": 0.9335135135, + "12943": 0.9345045045, + "12944": 0.9354954955, + "12945": 0.9364864865, + "12946": 0.9374774775, + "12947": 0.9384684685, + "12948": 0.9394594595, + "12949": 0.9404504505, + "12950": 0.9414414414, + "12951": 0.9424324324, + "12952": 0.9434234234, + "12953": 0.9444144144, + "12954": 0.9454054054, + "12955": 0.9463963964, + "12956": 0.9473873874, + "12957": 0.9483783784, + "12958": 0.9493693694, + "12959": 0.9503603604, + "12960": 0.9513513514, + "12961": 0.9523423423, + "12962": 0.9533333333, + "12963": 0.9543243243, + "12964": 0.9553153153, + "12965": 0.9563063063, + "12966": 0.9572972973, + "12967": 0.9582882883, + "12968": 0.9592792793, + "12969": 0.9602702703, + "12970": 0.9612612613, + "12971": 0.9622522523, + "12972": 0.9632432432, + "12973": 0.9642342342, + "12974": 0.9652252252, + "12975": 0.9662162162, + "12976": 0.9672072072, + "12977": 0.9681981982, + "12978": 0.9691891892, + "12979": 0.9701801802, + "12980": 0.9711711712, + "12981": 0.9721621622, + "12982": 0.9731531532, + "12983": 0.9741441441, + "12984": 0.9751351351, + "12985": 0.9761261261, + "12986": 0.9771171171, + "12987": 0.9781081081, + "12988": 0.9790990991, + "12989": 0.9800900901, + "12990": 0.9810810811, + "12991": 0.9820720721, + "12992": 0.9830630631, + "12993": 0.9840540541, + "12994": 0.985045045, + "12995": 0.986036036, + "12996": 0.987027027, + "12997": 0.988018018, + "12998": 0.989009009, + "12999": 0.99, + "13000": 0.0, + "13001": 0.000990991, + "13002": 0.001981982, + "13003": 0.002972973, + "13004": 0.003963964, + "13005": 0.004954955, + "13006": 0.0059459459, + "13007": 0.0069369369, + "13008": 0.0079279279, + "13009": 0.0089189189, + "13010": 0.0099099099, + "13011": 0.0109009009, + "13012": 0.0118918919, + "13013": 0.0128828829, + "13014": 0.0138738739, + "13015": 0.0148648649, + "13016": 0.0158558559, + "13017": 0.0168468468, + "13018": 0.0178378378, + "13019": 0.0188288288, + "13020": 0.0198198198, + "13021": 0.0208108108, + "13022": 0.0218018018, + "13023": 0.0227927928, + "13024": 0.0237837838, + "13025": 0.0247747748, + "13026": 0.0257657658, + "13027": 0.0267567568, + "13028": 0.0277477477, + "13029": 0.0287387387, + "13030": 0.0297297297, + "13031": 0.0307207207, + "13032": 0.0317117117, + "13033": 0.0327027027, + "13034": 0.0336936937, + "13035": 0.0346846847, + "13036": 0.0356756757, + "13037": 0.0366666667, + "13038": 0.0376576577, + "13039": 0.0386486486, + "13040": 0.0396396396, + "13041": 0.0406306306, + "13042": 0.0416216216, + "13043": 0.0426126126, + "13044": 0.0436036036, + "13045": 0.0445945946, + "13046": 0.0455855856, + "13047": 0.0465765766, + "13048": 0.0475675676, + "13049": 0.0485585586, + "13050": 0.0495495495, + "13051": 0.0505405405, + "13052": 0.0515315315, + "13053": 0.0525225225, + "13054": 0.0535135135, + "13055": 0.0545045045, + "13056": 0.0554954955, + "13057": 0.0564864865, + "13058": 0.0574774775, + "13059": 0.0584684685, + "13060": 0.0594594595, + "13061": 0.0604504505, + "13062": 0.0614414414, + "13063": 0.0624324324, + "13064": 0.0634234234, + "13065": 0.0644144144, + "13066": 0.0654054054, + "13067": 0.0663963964, + "13068": 0.0673873874, + "13069": 0.0683783784, + "13070": 0.0693693694, + "13071": 0.0703603604, + "13072": 0.0713513514, + "13073": 0.0723423423, + "13074": 0.0733333333, + "13075": 0.0743243243, + "13076": 0.0753153153, + "13077": 0.0763063063, + "13078": 0.0772972973, + "13079": 0.0782882883, + "13080": 0.0792792793, + "13081": 0.0802702703, + "13082": 0.0812612613, + "13083": 0.0822522523, + "13084": 0.0832432432, + "13085": 0.0842342342, + "13086": 0.0852252252, + "13087": 0.0862162162, + "13088": 0.0872072072, + "13089": 0.0881981982, + "13090": 0.0891891892, + "13091": 0.0901801802, + "13092": 0.0911711712, + "13093": 0.0921621622, + "13094": 0.0931531532, + "13095": 0.0941441441, + "13096": 0.0951351351, + "13097": 0.0961261261, + "13098": 0.0971171171, + "13099": 0.0981081081, + "13100": 0.0990990991, + "13101": 0.1000900901, + "13102": 0.1010810811, + "13103": 0.1020720721, + "13104": 0.1030630631, + "13105": 0.1040540541, + "13106": 0.105045045, + "13107": 0.106036036, + "13108": 0.107027027, + "13109": 0.108018018, + "13110": 0.109009009, + "13111": 0.11, + "13112": 0.110990991, + "13113": 0.111981982, + "13114": 0.112972973, + "13115": 0.113963964, + "13116": 0.114954955, + "13117": 0.1159459459, + "13118": 0.1169369369, + "13119": 0.1179279279, + "13120": 0.1189189189, + "13121": 0.1199099099, + "13122": 0.1209009009, + "13123": 0.1218918919, + "13124": 0.1228828829, + "13125": 0.1238738739, + "13126": 0.1248648649, + "13127": 0.1258558559, + "13128": 0.1268468468, + "13129": 0.1278378378, + "13130": 0.1288288288, + "13131": 0.1298198198, + "13132": 0.1308108108, + "13133": 0.1318018018, + "13134": 0.1327927928, + "13135": 0.1337837838, + "13136": 0.1347747748, + "13137": 0.1357657658, + "13138": 0.1367567568, + "13139": 0.1377477477, + "13140": 0.1387387387, + "13141": 0.1397297297, + "13142": 0.1407207207, + "13143": 0.1417117117, + "13144": 0.1427027027, + "13145": 0.1436936937, + "13146": 0.1446846847, + "13147": 0.1456756757, + "13148": 0.1466666667, + "13149": 0.1476576577, + "13150": 0.1486486486, + "13151": 0.1496396396, + "13152": 0.1506306306, + "13153": 0.1516216216, + "13154": 0.1526126126, + "13155": 0.1536036036, + "13156": 0.1545945946, + "13157": 0.1555855856, + "13158": 0.1565765766, + "13159": 0.1575675676, + "13160": 0.1585585586, + "13161": 0.1595495495, + "13162": 0.1605405405, + "13163": 0.1615315315, + "13164": 0.1625225225, + "13165": 0.1635135135, + "13166": 0.1645045045, + "13167": 0.1654954955, + "13168": 0.1664864865, + "13169": 0.1674774775, + "13170": 0.1684684685, + "13171": 0.1694594595, + "13172": 0.1704504505, + "13173": 0.1714414414, + "13174": 0.1724324324, + "13175": 0.1734234234, + "13176": 0.1744144144, + "13177": 0.1754054054, + "13178": 0.1763963964, + "13179": 0.1773873874, + "13180": 0.1783783784, + "13181": 0.1793693694, + "13182": 0.1803603604, + "13183": 0.1813513514, + "13184": 0.1823423423, + "13185": 0.1833333333, + "13186": 0.1843243243, + "13187": 0.1853153153, + "13188": 0.1863063063, + "13189": 0.1872972973, + "13190": 0.1882882883, + "13191": 0.1892792793, + "13192": 0.1902702703, + "13193": 0.1912612613, + "13194": 0.1922522523, + "13195": 0.1932432432, + "13196": 0.1942342342, + "13197": 0.1952252252, + "13198": 0.1962162162, + "13199": 0.1972072072, + "13200": 0.1981981982, + "13201": 0.1991891892, + "13202": 0.2001801802, + "13203": 0.2011711712, + "13204": 0.2021621622, + "13205": 0.2031531532, + "13206": 0.2041441441, + "13207": 0.2051351351, + "13208": 0.2061261261, + "13209": 0.2071171171, + "13210": 0.2081081081, + "13211": 0.2090990991, + "13212": 0.2100900901, + "13213": 0.2110810811, + "13214": 0.2120720721, + "13215": 0.2130630631, + "13216": 0.2140540541, + "13217": 0.215045045, + "13218": 0.216036036, + "13219": 0.217027027, + "13220": 0.218018018, + "13221": 0.219009009, + "13222": 0.22, + "13223": 0.220990991, + "13224": 0.221981982, + "13225": 0.222972973, + "13226": 0.223963964, + "13227": 0.224954955, + "13228": 0.2259459459, + "13229": 0.2269369369, + "13230": 0.2279279279, + "13231": 0.2289189189, + "13232": 0.2299099099, + "13233": 0.2309009009, + "13234": 0.2318918919, + "13235": 0.2328828829, + "13236": 0.2338738739, + "13237": 0.2348648649, + "13238": 0.2358558559, + "13239": 0.2368468468, + "13240": 0.2378378378, + "13241": 0.2388288288, + "13242": 0.2398198198, + "13243": 0.2408108108, + "13244": 0.2418018018, + "13245": 0.2427927928, + "13246": 0.2437837838, + "13247": 0.2447747748, + "13248": 0.2457657658, + "13249": 0.2467567568, + "13250": 0.2477477477, + "13251": 0.2487387387, + "13252": 0.2497297297, + "13253": 0.2507207207, + "13254": 0.2517117117, + "13255": 0.2527027027, + "13256": 0.2536936937, + "13257": 0.2546846847, + "13258": 0.2556756757, + "13259": 0.2566666667, + "13260": 0.2576576577, + "13261": 0.2586486486, + "13262": 0.2596396396, + "13263": 0.2606306306, + "13264": 0.2616216216, + "13265": 0.2626126126, + "13266": 0.2636036036, + "13267": 0.2645945946, + "13268": 0.2655855856, + "13269": 0.2665765766, + "13270": 0.2675675676, + "13271": 0.2685585586, + "13272": 0.2695495495, + "13273": 0.2705405405, + "13274": 0.2715315315, + "13275": 0.2725225225, + "13276": 0.2735135135, + "13277": 0.2745045045, + "13278": 0.2754954955, + "13279": 0.2764864865, + "13280": 0.2774774775, + "13281": 0.2784684685, + "13282": 0.2794594595, + "13283": 0.2804504505, + "13284": 0.2814414414, + "13285": 0.2824324324, + "13286": 0.2834234234, + "13287": 0.2844144144, + "13288": 0.2854054054, + "13289": 0.2863963964, + "13290": 0.2873873874, + "13291": 0.2883783784, + "13292": 0.2893693694, + "13293": 0.2903603604, + "13294": 0.2913513514, + "13295": 0.2923423423, + "13296": 0.2933333333, + "13297": 0.2943243243, + "13298": 0.2953153153, + "13299": 0.2963063063, + "13300": 0.2972972973, + "13301": 0.2982882883, + "13302": 0.2992792793, + "13303": 0.3002702703, + "13304": 0.3012612613, + "13305": 0.3022522523, + "13306": 0.3032432432, + "13307": 0.3042342342, + "13308": 0.3052252252, + "13309": 0.3062162162, + "13310": 0.3072072072, + "13311": 0.3081981982, + "13312": 0.3091891892, + "13313": 0.3101801802, + "13314": 0.3111711712, + "13315": 0.3121621622, + "13316": 0.3131531532, + "13317": 0.3141441441, + "13318": 0.3151351351, + "13319": 0.3161261261, + "13320": 0.3171171171, + "13321": 0.3181081081, + "13322": 0.3190990991, + "13323": 0.3200900901, + "13324": 0.3210810811, + "13325": 0.3220720721, + "13326": 0.3230630631, + "13327": 0.3240540541, + "13328": 0.325045045, + "13329": 0.326036036, + "13330": 0.327027027, + "13331": 0.328018018, + "13332": 0.329009009, + "13333": 0.33, + "13334": 0.330990991, + "13335": 0.331981982, + "13336": 0.332972973, + "13337": 0.333963964, + "13338": 0.334954955, + "13339": 0.3359459459, + "13340": 0.3369369369, + "13341": 0.3379279279, + "13342": 0.3389189189, + "13343": 0.3399099099, + "13344": 0.3409009009, + "13345": 0.3418918919, + "13346": 0.3428828829, + "13347": 0.3438738739, + "13348": 0.3448648649, + "13349": 0.3458558559, + "13350": 0.3468468468, + "13351": 0.3478378378, + "13352": 0.3488288288, + "13353": 0.3498198198, + "13354": 0.3508108108, + "13355": 0.3518018018, + "13356": 0.3527927928, + "13357": 0.3537837838, + "13358": 0.3547747748, + "13359": 0.3557657658, + "13360": 0.3567567568, + "13361": 0.3577477477, + "13362": 0.3587387387, + "13363": 0.3597297297, + "13364": 0.3607207207, + "13365": 0.3617117117, + "13366": 0.3627027027, + "13367": 0.3636936937, + "13368": 0.3646846847, + "13369": 0.3656756757, + "13370": 0.3666666667, + "13371": 0.3676576577, + "13372": 0.3686486486, + "13373": 0.3696396396, + "13374": 0.3706306306, + "13375": 0.3716216216, + "13376": 0.3726126126, + "13377": 0.3736036036, + "13378": 0.3745945946, + "13379": 0.3755855856, + "13380": 0.3765765766, + "13381": 0.3775675676, + "13382": 0.3785585586, + "13383": 0.3795495495, + "13384": 0.3805405405, + "13385": 0.3815315315, + "13386": 0.3825225225, + "13387": 0.3835135135, + "13388": 0.3845045045, + "13389": 0.3854954955, + "13390": 0.3864864865, + "13391": 0.3874774775, + "13392": 0.3884684685, + "13393": 0.3894594595, + "13394": 0.3904504505, + "13395": 0.3914414414, + "13396": 0.3924324324, + "13397": 0.3934234234, + "13398": 0.3944144144, + "13399": 0.3954054054, + "13400": 0.3963963964, + "13401": 0.3973873874, + "13402": 0.3983783784, + "13403": 0.3993693694, + "13404": 0.4003603604, + "13405": 0.4013513514, + "13406": 0.4023423423, + "13407": 0.4033333333, + "13408": 0.4043243243, + "13409": 0.4053153153, + "13410": 0.4063063063, + "13411": 0.4072972973, + "13412": 0.4082882883, + "13413": 0.4092792793, + "13414": 0.4102702703, + "13415": 0.4112612613, + "13416": 0.4122522523, + "13417": 0.4132432432, + "13418": 0.4142342342, + "13419": 0.4152252252, + "13420": 0.4162162162, + "13421": 0.4172072072, + "13422": 0.4181981982, + "13423": 0.4191891892, + "13424": 0.4201801802, + "13425": 0.4211711712, + "13426": 0.4221621622, + "13427": 0.4231531532, + "13428": 0.4241441441, + "13429": 0.4251351351, + "13430": 0.4261261261, + "13431": 0.4271171171, + "13432": 0.4281081081, + "13433": 0.4290990991, + "13434": 0.4300900901, + "13435": 0.4310810811, + "13436": 0.4320720721, + "13437": 0.4330630631, + "13438": 0.4340540541, + "13439": 0.435045045, + "13440": 0.436036036, + "13441": 0.437027027, + "13442": 0.438018018, + "13443": 0.439009009, + "13444": 0.44, + "13445": 0.440990991, + "13446": 0.441981982, + "13447": 0.442972973, + "13448": 0.443963964, + "13449": 0.444954955, + "13450": 0.4459459459, + "13451": 0.4469369369, + "13452": 0.4479279279, + "13453": 0.4489189189, + "13454": 0.4499099099, + "13455": 0.4509009009, + "13456": 0.4518918919, + "13457": 0.4528828829, + "13458": 0.4538738739, + "13459": 0.4548648649, + "13460": 0.4558558559, + "13461": 0.4568468468, + "13462": 0.4578378378, + "13463": 0.4588288288, + "13464": 0.4598198198, + "13465": 0.4608108108, + "13466": 0.4618018018, + "13467": 0.4627927928, + "13468": 0.4637837838, + "13469": 0.4647747748, + "13470": 0.4657657658, + "13471": 0.4667567568, + "13472": 0.4677477477, + "13473": 0.4687387387, + "13474": 0.4697297297, + "13475": 0.4707207207, + "13476": 0.4717117117, + "13477": 0.4727027027, + "13478": 0.4736936937, + "13479": 0.4746846847, + "13480": 0.4756756757, + "13481": 0.4766666667, + "13482": 0.4776576577, + "13483": 0.4786486486, + "13484": 0.4796396396, + "13485": 0.4806306306, + "13486": 0.4816216216, + "13487": 0.4826126126, + "13488": 0.4836036036, + "13489": 0.4845945946, + "13490": 0.4855855856, + "13491": 0.4865765766, + "13492": 0.4875675676, + "13493": 0.4885585586, + "13494": 0.4895495495, + "13495": 0.4905405405, + "13496": 0.4915315315, + "13497": 0.4925225225, + "13498": 0.4935135135, + "13499": 0.4945045045, + "13500": 0.4954954955, + "13501": 0.4964864865, + "13502": 0.4974774775, + "13503": 0.4984684685, + "13504": 0.4994594595, + "13505": 0.5004504505, + "13506": 0.5014414414, + "13507": 0.5024324324, + "13508": 0.5034234234, + "13509": 0.5044144144, + "13510": 0.5054054054, + "13511": 0.5063963964, + "13512": 0.5073873874, + "13513": 0.5083783784, + "13514": 0.5093693694, + "13515": 0.5103603604, + "13516": 0.5113513514, + "13517": 0.5123423423, + "13518": 0.5133333333, + "13519": 0.5143243243, + "13520": 0.5153153153, + "13521": 0.5163063063, + "13522": 0.5172972973, + "13523": 0.5182882883, + "13524": 0.5192792793, + "13525": 0.5202702703, + "13526": 0.5212612613, + "13527": 0.5222522523, + "13528": 0.5232432432, + "13529": 0.5242342342, + "13530": 0.5252252252, + "13531": 0.5262162162, + "13532": 0.5272072072, + "13533": 0.5281981982, + "13534": 0.5291891892, + "13535": 0.5301801802, + "13536": 0.5311711712, + "13537": 0.5321621622, + "13538": 0.5331531532, + "13539": 0.5341441441, + "13540": 0.5351351351, + "13541": 0.5361261261, + "13542": 0.5371171171, + "13543": 0.5381081081, + "13544": 0.5390990991, + "13545": 0.5400900901, + "13546": 0.5410810811, + "13547": 0.5420720721, + "13548": 0.5430630631, + "13549": 0.5440540541, + "13550": 0.545045045, + "13551": 0.546036036, + "13552": 0.547027027, + "13553": 0.548018018, + "13554": 0.549009009, + "13555": 0.55, + "13556": 0.550990991, + "13557": 0.551981982, + "13558": 0.552972973, + "13559": 0.553963964, + "13560": 0.554954955, + "13561": 0.5559459459, + "13562": 0.5569369369, + "13563": 0.5579279279, + "13564": 0.5589189189, + "13565": 0.5599099099, + "13566": 0.5609009009, + "13567": 0.5618918919, + "13568": 0.5628828829, + "13569": 0.5638738739, + "13570": 0.5648648649, + "13571": 0.5658558559, + "13572": 0.5668468468, + "13573": 0.5678378378, + "13574": 0.5688288288, + "13575": 0.5698198198, + "13576": 0.5708108108, + "13577": 0.5718018018, + "13578": 0.5727927928, + "13579": 0.5737837838, + "13580": 0.5747747748, + "13581": 0.5757657658, + "13582": 0.5767567568, + "13583": 0.5777477477, + "13584": 0.5787387387, + "13585": 0.5797297297, + "13586": 0.5807207207, + "13587": 0.5817117117, + "13588": 0.5827027027, + "13589": 0.5836936937, + "13590": 0.5846846847, + "13591": 0.5856756757, + "13592": 0.5866666667, + "13593": 0.5876576577, + "13594": 0.5886486486, + "13595": 0.5896396396, + "13596": 0.5906306306, + "13597": 0.5916216216, + "13598": 0.5926126126, + "13599": 0.5936036036, + "13600": 0.5945945946, + "13601": 0.5955855856, + "13602": 0.5965765766, + "13603": 0.5975675676, + "13604": 0.5985585586, + "13605": 0.5995495495, + "13606": 0.6005405405, + "13607": 0.6015315315, + "13608": 0.6025225225, + "13609": 0.6035135135, + "13610": 0.6045045045, + "13611": 0.6054954955, + "13612": 0.6064864865, + "13613": 0.6074774775, + "13614": 0.6084684685, + "13615": 0.6094594595, + "13616": 0.6104504505, + "13617": 0.6114414414, + "13618": 0.6124324324, + "13619": 0.6134234234, + "13620": 0.6144144144, + "13621": 0.6154054054, + "13622": 0.6163963964, + "13623": 0.6173873874, + "13624": 0.6183783784, + "13625": 0.6193693694, + "13626": 0.6203603604, + "13627": 0.6213513514, + "13628": 0.6223423423, + "13629": 0.6233333333, + "13630": 0.6243243243, + "13631": 0.6253153153, + "13632": 0.6263063063, + "13633": 0.6272972973, + "13634": 0.6282882883, + "13635": 0.6292792793, + "13636": 0.6302702703, + "13637": 0.6312612613, + "13638": 0.6322522523, + "13639": 0.6332432432, + "13640": 0.6342342342, + "13641": 0.6352252252, + "13642": 0.6362162162, + "13643": 0.6372072072, + "13644": 0.6381981982, + "13645": 0.6391891892, + "13646": 0.6401801802, + "13647": 0.6411711712, + "13648": 0.6421621622, + "13649": 0.6431531532, + "13650": 0.6441441441, + "13651": 0.6451351351, + "13652": 0.6461261261, + "13653": 0.6471171171, + "13654": 0.6481081081, + "13655": 0.6490990991, + "13656": 0.6500900901, + "13657": 0.6510810811, + "13658": 0.6520720721, + "13659": 0.6530630631, + "13660": 0.6540540541, + "13661": 0.655045045, + "13662": 0.656036036, + "13663": 0.657027027, + "13664": 0.658018018, + "13665": 0.659009009, + "13666": 0.66, + "13667": 0.660990991, + "13668": 0.661981982, + "13669": 0.662972973, + "13670": 0.663963964, + "13671": 0.664954955, + "13672": 0.6659459459, + "13673": 0.6669369369, + "13674": 0.6679279279, + "13675": 0.6689189189, + "13676": 0.6699099099, + "13677": 0.6709009009, + "13678": 0.6718918919, + "13679": 0.6728828829, + "13680": 0.6738738739, + "13681": 0.6748648649, + "13682": 0.6758558559, + "13683": 0.6768468468, + "13684": 0.6778378378, + "13685": 0.6788288288, + "13686": 0.6798198198, + "13687": 0.6808108108, + "13688": 0.6818018018, + "13689": 0.6827927928, + "13690": 0.6837837838, + "13691": 0.6847747748, + "13692": 0.6857657658, + "13693": 0.6867567568, + "13694": 0.6877477477, + "13695": 0.6887387387, + "13696": 0.6897297297, + "13697": 0.6907207207, + "13698": 0.6917117117, + "13699": 0.6927027027, + "13700": 0.6936936937, + "13701": 0.6946846847, + "13702": 0.6956756757, + "13703": 0.6966666667, + "13704": 0.6976576577, + "13705": 0.6986486486, + "13706": 0.6996396396, + "13707": 0.7006306306, + "13708": 0.7016216216, + "13709": 0.7026126126, + "13710": 0.7036036036, + "13711": 0.7045945946, + "13712": 0.7055855856, + "13713": 0.7065765766, + "13714": 0.7075675676, + "13715": 0.7085585586, + "13716": 0.7095495495, + "13717": 0.7105405405, + "13718": 0.7115315315, + "13719": 0.7125225225, + "13720": 0.7135135135, + "13721": 0.7145045045, + "13722": 0.7154954955, + "13723": 0.7164864865, + "13724": 0.7174774775, + "13725": 0.7184684685, + "13726": 0.7194594595, + "13727": 0.7204504505, + "13728": 0.7214414414, + "13729": 0.7224324324, + "13730": 0.7234234234, + "13731": 0.7244144144, + "13732": 0.7254054054, + "13733": 0.7263963964, + "13734": 0.7273873874, + "13735": 0.7283783784, + "13736": 0.7293693694, + "13737": 0.7303603604, + "13738": 0.7313513514, + "13739": 0.7323423423, + "13740": 0.7333333333, + "13741": 0.7343243243, + "13742": 0.7353153153, + "13743": 0.7363063063, + "13744": 0.7372972973, + "13745": 0.7382882883, + "13746": 0.7392792793, + "13747": 0.7402702703, + "13748": 0.7412612613, + "13749": 0.7422522523, + "13750": 0.7432432432, + "13751": 0.7442342342, + "13752": 0.7452252252, + "13753": 0.7462162162, + "13754": 0.7472072072, + "13755": 0.7481981982, + "13756": 0.7491891892, + "13757": 0.7501801802, + "13758": 0.7511711712, + "13759": 0.7521621622, + "13760": 0.7531531532, + "13761": 0.7541441441, + "13762": 0.7551351351, + "13763": 0.7561261261, + "13764": 0.7571171171, + "13765": 0.7581081081, + "13766": 0.7590990991, + "13767": 0.7600900901, + "13768": 0.7610810811, + "13769": 0.7620720721, + "13770": 0.7630630631, + "13771": 0.7640540541, + "13772": 0.765045045, + "13773": 0.766036036, + "13774": 0.767027027, + "13775": 0.768018018, + "13776": 0.769009009, + "13777": 0.77, + "13778": 0.770990991, + "13779": 0.771981982, + "13780": 0.772972973, + "13781": 0.773963964, + "13782": 0.774954955, + "13783": 0.7759459459, + "13784": 0.7769369369, + "13785": 0.7779279279, + "13786": 0.7789189189, + "13787": 0.7799099099, + "13788": 0.7809009009, + "13789": 0.7818918919, + "13790": 0.7828828829, + "13791": 0.7838738739, + "13792": 0.7848648649, + "13793": 0.7858558559, + "13794": 0.7868468468, + "13795": 0.7878378378, + "13796": 0.7888288288, + "13797": 0.7898198198, + "13798": 0.7908108108, + "13799": 0.7918018018, + "13800": 0.7927927928, + "13801": 0.7937837838, + "13802": 0.7947747748, + "13803": 0.7957657658, + "13804": 0.7967567568, + "13805": 0.7977477477, + "13806": 0.7987387387, + "13807": 0.7997297297, + "13808": 0.8007207207, + "13809": 0.8017117117, + "13810": 0.8027027027, + "13811": 0.8036936937, + "13812": 0.8046846847, + "13813": 0.8056756757, + "13814": 0.8066666667, + "13815": 0.8076576577, + "13816": 0.8086486486, + "13817": 0.8096396396, + "13818": 0.8106306306, + "13819": 0.8116216216, + "13820": 0.8126126126, + "13821": 0.8136036036, + "13822": 0.8145945946, + "13823": 0.8155855856, + "13824": 0.8165765766, + "13825": 0.8175675676, + "13826": 0.8185585586, + "13827": 0.8195495495, + "13828": 0.8205405405, + "13829": 0.8215315315, + "13830": 0.8225225225, + "13831": 0.8235135135, + "13832": 0.8245045045, + "13833": 0.8254954955, + "13834": 0.8264864865, + "13835": 0.8274774775, + "13836": 0.8284684685, + "13837": 0.8294594595, + "13838": 0.8304504505, + "13839": 0.8314414414, + "13840": 0.8324324324, + "13841": 0.8334234234, + "13842": 0.8344144144, + "13843": 0.8354054054, + "13844": 0.8363963964, + "13845": 0.8373873874, + "13846": 0.8383783784, + "13847": 0.8393693694, + "13848": 0.8403603604, + "13849": 0.8413513514, + "13850": 0.8423423423, + "13851": 0.8433333333, + "13852": 0.8443243243, + "13853": 0.8453153153, + "13854": 0.8463063063, + "13855": 0.8472972973, + "13856": 0.8482882883, + "13857": 0.8492792793, + "13858": 0.8502702703, + "13859": 0.8512612613, + "13860": 0.8522522523, + "13861": 0.8532432432, + "13862": 0.8542342342, + "13863": 0.8552252252, + "13864": 0.8562162162, + "13865": 0.8572072072, + "13866": 0.8581981982, + "13867": 0.8591891892, + "13868": 0.8601801802, + "13869": 0.8611711712, + "13870": 0.8621621622, + "13871": 0.8631531532, + "13872": 0.8641441441, + "13873": 0.8651351351, + "13874": 0.8661261261, + "13875": 0.8671171171, + "13876": 0.8681081081, + "13877": 0.8690990991, + "13878": 0.8700900901, + "13879": 0.8710810811, + "13880": 0.8720720721, + "13881": 0.8730630631, + "13882": 0.8740540541, + "13883": 0.875045045, + "13884": 0.876036036, + "13885": 0.877027027, + "13886": 0.878018018, + "13887": 0.879009009, + "13888": 0.88, + "13889": 0.880990991, + "13890": 0.881981982, + "13891": 0.882972973, + "13892": 0.883963964, + "13893": 0.884954955, + "13894": 0.8859459459, + "13895": 0.8869369369, + "13896": 0.8879279279, + "13897": 0.8889189189, + "13898": 0.8899099099, + "13899": 0.8909009009, + "13900": 0.8918918919, + "13901": 0.8928828829, + "13902": 0.8938738739, + "13903": 0.8948648649, + "13904": 0.8958558559, + "13905": 0.8968468468, + "13906": 0.8978378378, + "13907": 0.8988288288, + "13908": 0.8998198198, + "13909": 0.9008108108, + "13910": 0.9018018018, + "13911": 0.9027927928, + "13912": 0.9037837838, + "13913": 0.9047747748, + "13914": 0.9057657658, + "13915": 0.9067567568, + "13916": 0.9077477477, + "13917": 0.9087387387, + "13918": 0.9097297297, + "13919": 0.9107207207, + "13920": 0.9117117117, + "13921": 0.9127027027, + "13922": 0.9136936937, + "13923": 0.9146846847, + "13924": 0.9156756757, + "13925": 0.9166666667, + "13926": 0.9176576577, + "13927": 0.9186486486, + "13928": 0.9196396396, + "13929": 0.9206306306, + "13930": 0.9216216216, + "13931": 0.9226126126, + "13932": 0.9236036036, + "13933": 0.9245945946, + "13934": 0.9255855856, + "13935": 0.9265765766, + "13936": 0.9275675676, + "13937": 0.9285585586, + "13938": 0.9295495495, + "13939": 0.9305405405, + "13940": 0.9315315315, + "13941": 0.9325225225, + "13942": 0.9335135135, + "13943": 0.9345045045, + "13944": 0.9354954955, + "13945": 0.9364864865, + "13946": 0.9374774775, + "13947": 0.9384684685, + "13948": 0.9394594595, + "13949": 0.9404504505, + "13950": 0.9414414414, + "13951": 0.9424324324, + "13952": 0.9434234234, + "13953": 0.9444144144, + "13954": 0.9454054054, + "13955": 0.9463963964, + "13956": 0.9473873874, + "13957": 0.9483783784, + "13958": 0.9493693694, + "13959": 0.9503603604, + "13960": 0.9513513514, + "13961": 0.9523423423, + "13962": 0.9533333333, + "13963": 0.9543243243, + "13964": 0.9553153153, + "13965": 0.9563063063, + "13966": 0.9572972973, + "13967": 0.9582882883, + "13968": 0.9592792793, + "13969": 0.9602702703, + "13970": 0.9612612613, + "13971": 0.9622522523, + "13972": 0.9632432432, + "13973": 0.9642342342, + "13974": 0.9652252252, + "13975": 0.9662162162, + "13976": 0.9672072072, + "13977": 0.9681981982, + "13978": 0.9691891892, + "13979": 0.9701801802, + "13980": 0.9711711712, + "13981": 0.9721621622, + "13982": 0.9731531532, + "13983": 0.9741441441, + "13984": 0.9751351351, + "13985": 0.9761261261, + "13986": 0.9771171171, + "13987": 0.9781081081, + "13988": 0.9790990991, + "13989": 0.9800900901, + "13990": 0.9810810811, + "13991": 0.9820720721, + "13992": 0.9830630631, + "13993": 0.9840540541, + "13994": 0.985045045, + "13995": 0.986036036, + "13996": 0.987027027, + "13997": 0.988018018, + "13998": 0.989009009, + "13999": 0.99, + "14000": 0.0, + "14001": 0.000990991, + "14002": 0.001981982, + "14003": 0.002972973, + "14004": 0.003963964, + "14005": 0.004954955, + "14006": 0.0059459459, + "14007": 0.0069369369, + "14008": 0.0079279279, + "14009": 0.0089189189, + "14010": 0.0099099099, + "14011": 0.0109009009, + "14012": 0.0118918919, + "14013": 0.0128828829, + "14014": 0.0138738739, + "14015": 0.0148648649, + "14016": 0.0158558559, + "14017": 0.0168468468, + "14018": 0.0178378378, + "14019": 0.0188288288, + "14020": 0.0198198198, + "14021": 0.0208108108, + "14022": 0.0218018018, + "14023": 0.0227927928, + "14024": 0.0237837838, + "14025": 0.0247747748, + "14026": 0.0257657658, + "14027": 0.0267567568, + "14028": 0.0277477477, + "14029": 0.0287387387, + "14030": 0.0297297297, + "14031": 0.0307207207, + "14032": 0.0317117117, + "14033": 0.0327027027, + "14034": 0.0336936937, + "14035": 0.0346846847, + "14036": 0.0356756757, + "14037": 0.0366666667, + "14038": 0.0376576577, + "14039": 0.0386486486, + "14040": 0.0396396396, + "14041": 0.0406306306, + "14042": 0.0416216216, + "14043": 0.0426126126, + "14044": 0.0436036036, + "14045": 0.0445945946, + "14046": 0.0455855856, + "14047": 0.0465765766, + "14048": 0.0475675676, + "14049": 0.0485585586, + "14050": 0.0495495495, + "14051": 0.0505405405, + "14052": 0.0515315315, + "14053": 0.0525225225, + "14054": 0.0535135135, + "14055": 0.0545045045, + "14056": 0.0554954955, + "14057": 0.0564864865, + "14058": 0.0574774775, + "14059": 0.0584684685, + "14060": 0.0594594595, + "14061": 0.0604504505, + "14062": 0.0614414414, + "14063": 0.0624324324, + "14064": 0.0634234234, + "14065": 0.0644144144, + "14066": 0.0654054054, + "14067": 0.0663963964, + "14068": 0.0673873874, + "14069": 0.0683783784, + "14070": 0.0693693694, + "14071": 0.0703603604, + "14072": 0.0713513514, + "14073": 0.0723423423, + "14074": 0.0733333333, + "14075": 0.0743243243, + "14076": 0.0753153153, + "14077": 0.0763063063, + "14078": 0.0772972973, + "14079": 0.0782882883, + "14080": 0.0792792793, + "14081": 0.0802702703, + "14082": 0.0812612613, + "14083": 0.0822522523, + "14084": 0.0832432432, + "14085": 0.0842342342, + "14086": 0.0852252252, + "14087": 0.0862162162, + "14088": 0.0872072072, + "14089": 0.0881981982, + "14090": 0.0891891892, + "14091": 0.0901801802, + "14092": 0.0911711712, + "14093": 0.0921621622, + "14094": 0.0931531532, + "14095": 0.0941441441, + "14096": 0.0951351351, + "14097": 0.0961261261, + "14098": 0.0971171171, + "14099": 0.0981081081, + "14100": 0.0990990991, + "14101": 0.1000900901, + "14102": 0.1010810811, + "14103": 0.1020720721, + "14104": 0.1030630631, + "14105": 0.1040540541, + "14106": 0.105045045, + "14107": 0.106036036, + "14108": 0.107027027, + "14109": 0.108018018, + "14110": 0.109009009, + "14111": 0.11, + "14112": 0.110990991, + "14113": 0.111981982, + "14114": 0.112972973, + "14115": 0.113963964, + "14116": 0.114954955, + "14117": 0.1159459459, + "14118": 0.1169369369, + "14119": 0.1179279279, + "14120": 0.1189189189, + "14121": 0.1199099099, + "14122": 0.1209009009, + "14123": 0.1218918919, + "14124": 0.1228828829, + "14125": 0.1238738739, + "14126": 0.1248648649, + "14127": 0.1258558559, + "14128": 0.1268468468, + "14129": 0.1278378378, + "14130": 0.1288288288, + "14131": 0.1298198198, + "14132": 0.1308108108, + "14133": 0.1318018018, + "14134": 0.1327927928, + "14135": 0.1337837838, + "14136": 0.1347747748, + "14137": 0.1357657658, + "14138": 0.1367567568, + "14139": 0.1377477477, + "14140": 0.1387387387, + "14141": 0.1397297297, + "14142": 0.1407207207, + "14143": 0.1417117117, + "14144": 0.1427027027, + "14145": 0.1436936937, + "14146": 0.1446846847, + "14147": 0.1456756757, + "14148": 0.1466666667, + "14149": 0.1476576577, + "14150": 0.1486486486, + "14151": 0.1496396396, + "14152": 0.1506306306, + "14153": 0.1516216216, + "14154": 0.1526126126, + "14155": 0.1536036036, + "14156": 0.1545945946, + "14157": 0.1555855856, + "14158": 0.1565765766, + "14159": 0.1575675676, + "14160": 0.1585585586, + "14161": 0.1595495495, + "14162": 0.1605405405, + "14163": 0.1615315315, + "14164": 0.1625225225, + "14165": 0.1635135135, + "14166": 0.1645045045, + "14167": 0.1654954955, + "14168": 0.1664864865, + "14169": 0.1674774775, + "14170": 0.1684684685, + "14171": 0.1694594595, + "14172": 0.1704504505, + "14173": 0.1714414414, + "14174": 0.1724324324, + "14175": 0.1734234234, + "14176": 0.1744144144, + "14177": 0.1754054054, + "14178": 0.1763963964, + "14179": 0.1773873874, + "14180": 0.1783783784, + "14181": 0.1793693694, + "14182": 0.1803603604, + "14183": 0.1813513514, + "14184": 0.1823423423, + "14185": 0.1833333333, + "14186": 0.1843243243, + "14187": 0.1853153153, + "14188": 0.1863063063, + "14189": 0.1872972973, + "14190": 0.1882882883, + "14191": 0.1892792793, + "14192": 0.1902702703, + "14193": 0.1912612613, + "14194": 0.1922522523, + "14195": 0.1932432432, + "14196": 0.1942342342, + "14197": 0.1952252252, + "14198": 0.1962162162, + "14199": 0.1972072072, + "14200": 0.1981981982, + "14201": 0.1991891892, + "14202": 0.2001801802, + "14203": 0.2011711712, + "14204": 0.2021621622, + "14205": 0.2031531532, + "14206": 0.2041441441, + "14207": 0.2051351351, + "14208": 0.2061261261, + "14209": 0.2071171171, + "14210": 0.2081081081, + "14211": 0.2090990991, + "14212": 0.2100900901, + "14213": 0.2110810811, + "14214": 0.2120720721, + "14215": 0.2130630631, + "14216": 0.2140540541, + "14217": 0.215045045, + "14218": 0.216036036, + "14219": 0.217027027, + "14220": 0.218018018, + "14221": 0.219009009, + "14222": 0.22, + "14223": 0.220990991, + "14224": 0.221981982, + "14225": 0.222972973, + "14226": 0.223963964, + "14227": 0.224954955, + "14228": 0.2259459459, + "14229": 0.2269369369, + "14230": 0.2279279279, + "14231": 0.2289189189, + "14232": 0.2299099099, + "14233": 0.2309009009, + "14234": 0.2318918919, + "14235": 0.2328828829, + "14236": 0.2338738739, + "14237": 0.2348648649, + "14238": 0.2358558559, + "14239": 0.2368468468, + "14240": 0.2378378378, + "14241": 0.2388288288, + "14242": 0.2398198198, + "14243": 0.2408108108, + "14244": 0.2418018018, + "14245": 0.2427927928, + "14246": 0.2437837838, + "14247": 0.2447747748, + "14248": 0.2457657658, + "14249": 0.2467567568, + "14250": 0.2477477477, + "14251": 0.2487387387, + "14252": 0.2497297297, + "14253": 0.2507207207, + "14254": 0.2517117117, + "14255": 0.2527027027, + "14256": 0.2536936937, + "14257": 0.2546846847, + "14258": 0.2556756757, + "14259": 0.2566666667, + "14260": 0.2576576577, + "14261": 0.2586486486, + "14262": 0.2596396396, + "14263": 0.2606306306, + "14264": 0.2616216216, + "14265": 0.2626126126, + "14266": 0.2636036036, + "14267": 0.2645945946, + "14268": 0.2655855856, + "14269": 0.2665765766, + "14270": 0.2675675676, + "14271": 0.2685585586, + "14272": 0.2695495495, + "14273": 0.2705405405, + "14274": 0.2715315315, + "14275": 0.2725225225, + "14276": 0.2735135135, + "14277": 0.2745045045, + "14278": 0.2754954955, + "14279": 0.2764864865, + "14280": 0.2774774775, + "14281": 0.2784684685, + "14282": 0.2794594595, + "14283": 0.2804504505, + "14284": 0.2814414414, + "14285": 0.2824324324, + "14286": 0.2834234234, + "14287": 0.2844144144, + "14288": 0.2854054054, + "14289": 0.2863963964, + "14290": 0.2873873874, + "14291": 0.2883783784, + "14292": 0.2893693694, + "14293": 0.2903603604, + "14294": 0.2913513514, + "14295": 0.2923423423, + "14296": 0.2933333333, + "14297": 0.2943243243, + "14298": 0.2953153153, + "14299": 0.2963063063, + "14300": 0.2972972973, + "14301": 0.2982882883, + "14302": 0.2992792793, + "14303": 0.3002702703, + "14304": 0.3012612613, + "14305": 0.3022522523, + "14306": 0.3032432432, + "14307": 0.3042342342, + "14308": 0.3052252252, + "14309": 0.3062162162, + "14310": 0.3072072072, + "14311": 0.3081981982, + "14312": 0.3091891892, + "14313": 0.3101801802, + "14314": 0.3111711712, + "14315": 0.3121621622, + "14316": 0.3131531532, + "14317": 0.3141441441, + "14318": 0.3151351351, + "14319": 0.3161261261, + "14320": 0.3171171171, + "14321": 0.3181081081, + "14322": 0.3190990991, + "14323": 0.3200900901, + "14324": 0.3210810811, + "14325": 0.3220720721, + "14326": 0.3230630631, + "14327": 0.3240540541, + "14328": 0.325045045, + "14329": 0.326036036, + "14330": 0.327027027, + "14331": 0.328018018, + "14332": 0.329009009, + "14333": 0.33, + "14334": 0.330990991, + "14335": 0.331981982, + "14336": 0.332972973, + "14337": 0.333963964, + "14338": 0.334954955, + "14339": 0.3359459459, + "14340": 0.3369369369, + "14341": 0.3379279279, + "14342": 0.3389189189, + "14343": 0.3399099099, + "14344": 0.3409009009, + "14345": 0.3418918919, + "14346": 0.3428828829, + "14347": 0.3438738739, + "14348": 0.3448648649, + "14349": 0.3458558559, + "14350": 0.3468468468, + "14351": 0.3478378378, + "14352": 0.3488288288, + "14353": 0.3498198198, + "14354": 0.3508108108, + "14355": 0.3518018018, + "14356": 0.3527927928, + "14357": 0.3537837838, + "14358": 0.3547747748, + "14359": 0.3557657658, + "14360": 0.3567567568, + "14361": 0.3577477477, + "14362": 0.3587387387, + "14363": 0.3597297297, + "14364": 0.3607207207, + "14365": 0.3617117117, + "14366": 0.3627027027, + "14367": 0.3636936937, + "14368": 0.3646846847, + "14369": 0.3656756757, + "14370": 0.3666666667, + "14371": 0.3676576577, + "14372": 0.3686486486, + "14373": 0.3696396396, + "14374": 0.3706306306, + "14375": 0.3716216216, + "14376": 0.3726126126, + "14377": 0.3736036036, + "14378": 0.3745945946, + "14379": 0.3755855856, + "14380": 0.3765765766, + "14381": 0.3775675676, + "14382": 0.3785585586, + "14383": 0.3795495495, + "14384": 0.3805405405, + "14385": 0.3815315315, + "14386": 0.3825225225, + "14387": 0.3835135135, + "14388": 0.3845045045, + "14389": 0.3854954955, + "14390": 0.3864864865, + "14391": 0.3874774775, + "14392": 0.3884684685, + "14393": 0.3894594595, + "14394": 0.3904504505, + "14395": 0.3914414414, + "14396": 0.3924324324, + "14397": 0.3934234234, + "14398": 0.3944144144, + "14399": 0.3954054054, + "14400": 0.3963963964, + "14401": 0.3973873874, + "14402": 0.3983783784, + "14403": 0.3993693694, + "14404": 0.4003603604, + "14405": 0.4013513514, + "14406": 0.4023423423, + "14407": 0.4033333333, + "14408": 0.4043243243, + "14409": 0.4053153153, + "14410": 0.4063063063, + "14411": 0.4072972973, + "14412": 0.4082882883, + "14413": 0.4092792793, + "14414": 0.4102702703, + "14415": 0.4112612613, + "14416": 0.4122522523, + "14417": 0.4132432432, + "14418": 0.4142342342, + "14419": 0.4152252252, + "14420": 0.4162162162, + "14421": 0.4172072072, + "14422": 0.4181981982, + "14423": 0.4191891892, + "14424": 0.4201801802, + "14425": 0.4211711712, + "14426": 0.4221621622, + "14427": 0.4231531532, + "14428": 0.4241441441, + "14429": 0.4251351351, + "14430": 0.4261261261, + "14431": 0.4271171171, + "14432": 0.4281081081, + "14433": 0.4290990991, + "14434": 0.4300900901, + "14435": 0.4310810811, + "14436": 0.4320720721, + "14437": 0.4330630631, + "14438": 0.4340540541, + "14439": 0.435045045, + "14440": 0.436036036, + "14441": 0.437027027, + "14442": 0.438018018, + "14443": 0.439009009, + "14444": 0.44, + "14445": 0.440990991, + "14446": 0.441981982, + "14447": 0.442972973, + "14448": 0.443963964, + "14449": 0.444954955, + "14450": 0.4459459459, + "14451": 0.4469369369, + "14452": 0.4479279279, + "14453": 0.4489189189, + "14454": 0.4499099099, + "14455": 0.4509009009, + "14456": 0.4518918919, + "14457": 0.4528828829, + "14458": 0.4538738739, + "14459": 0.4548648649, + "14460": 0.4558558559, + "14461": 0.4568468468, + "14462": 0.4578378378, + "14463": 0.4588288288, + "14464": 0.4598198198, + "14465": 0.4608108108, + "14466": 0.4618018018, + "14467": 0.4627927928, + "14468": 0.4637837838, + "14469": 0.4647747748, + "14470": 0.4657657658, + "14471": 0.4667567568, + "14472": 0.4677477477, + "14473": 0.4687387387, + "14474": 0.4697297297, + "14475": 0.4707207207, + "14476": 0.4717117117, + "14477": 0.4727027027, + "14478": 0.4736936937, + "14479": 0.4746846847, + "14480": 0.4756756757, + "14481": 0.4766666667, + "14482": 0.4776576577, + "14483": 0.4786486486, + "14484": 0.4796396396, + "14485": 0.4806306306, + "14486": 0.4816216216, + "14487": 0.4826126126, + "14488": 0.4836036036, + "14489": 0.4845945946, + "14490": 0.4855855856, + "14491": 0.4865765766, + "14492": 0.4875675676, + "14493": 0.4885585586, + "14494": 0.4895495495, + "14495": 0.4905405405, + "14496": 0.4915315315, + "14497": 0.4925225225, + "14498": 0.4935135135, + "14499": 0.4945045045, + "14500": 0.4954954955, + "14501": 0.4964864865, + "14502": 0.4974774775, + "14503": 0.4984684685, + "14504": 0.4994594595, + "14505": 0.5004504505, + "14506": 0.5014414414, + "14507": 0.5024324324, + "14508": 0.5034234234, + "14509": 0.5044144144, + "14510": 0.5054054054, + "14511": 0.5063963964, + "14512": 0.5073873874, + "14513": 0.5083783784, + "14514": 0.5093693694, + "14515": 0.5103603604, + "14516": 0.5113513514, + "14517": 0.5123423423, + "14518": 0.5133333333, + "14519": 0.5143243243, + "14520": 0.5153153153, + "14521": 0.5163063063, + "14522": 0.5172972973, + "14523": 0.5182882883, + "14524": 0.5192792793, + "14525": 0.5202702703, + "14526": 0.5212612613, + "14527": 0.5222522523, + "14528": 0.5232432432, + "14529": 0.5242342342, + "14530": 0.5252252252, + "14531": 0.5262162162, + "14532": 0.5272072072, + "14533": 0.5281981982, + "14534": 0.5291891892, + "14535": 0.5301801802, + "14536": 0.5311711712, + "14537": 0.5321621622, + "14538": 0.5331531532, + "14539": 0.5341441441, + "14540": 0.5351351351, + "14541": 0.5361261261, + "14542": 0.5371171171, + "14543": 0.5381081081, + "14544": 0.5390990991, + "14545": 0.5400900901, + "14546": 0.5410810811, + "14547": 0.5420720721, + "14548": 0.5430630631, + "14549": 0.5440540541, + "14550": 0.545045045, + "14551": 0.546036036, + "14552": 0.547027027, + "14553": 0.548018018, + "14554": 0.549009009, + "14555": 0.55, + "14556": 0.550990991, + "14557": 0.551981982, + "14558": 0.552972973, + "14559": 0.553963964, + "14560": 0.554954955, + "14561": 0.5559459459, + "14562": 0.5569369369, + "14563": 0.5579279279, + "14564": 0.5589189189, + "14565": 0.5599099099, + "14566": 0.5609009009, + "14567": 0.5618918919, + "14568": 0.5628828829, + "14569": 0.5638738739, + "14570": 0.5648648649, + "14571": 0.5658558559, + "14572": 0.5668468468, + "14573": 0.5678378378, + "14574": 0.5688288288, + "14575": 0.5698198198, + "14576": 0.5708108108, + "14577": 0.5718018018, + "14578": 0.5727927928, + "14579": 0.5737837838, + "14580": 0.5747747748, + "14581": 0.5757657658, + "14582": 0.5767567568, + "14583": 0.5777477477, + "14584": 0.5787387387, + "14585": 0.5797297297, + "14586": 0.5807207207, + "14587": 0.5817117117, + "14588": 0.5827027027, + "14589": 0.5836936937, + "14590": 0.5846846847, + "14591": 0.5856756757, + "14592": 0.5866666667, + "14593": 0.5876576577, + "14594": 0.5886486486, + "14595": 0.5896396396, + "14596": 0.5906306306, + "14597": 0.5916216216, + "14598": 0.5926126126, + "14599": 0.5936036036, + "14600": 0.5945945946, + "14601": 0.5955855856, + "14602": 0.5965765766, + "14603": 0.5975675676, + "14604": 0.5985585586, + "14605": 0.5995495495, + "14606": 0.6005405405, + "14607": 0.6015315315, + "14608": 0.6025225225, + "14609": 0.6035135135, + "14610": 0.6045045045, + "14611": 0.6054954955, + "14612": 0.6064864865, + "14613": 0.6074774775, + "14614": 0.6084684685, + "14615": 0.6094594595, + "14616": 0.6104504505, + "14617": 0.6114414414, + "14618": 0.6124324324, + "14619": 0.6134234234, + "14620": 0.6144144144, + "14621": 0.6154054054, + "14622": 0.6163963964, + "14623": 0.6173873874, + "14624": 0.6183783784, + "14625": 0.6193693694, + "14626": 0.6203603604, + "14627": 0.6213513514, + "14628": 0.6223423423, + "14629": 0.6233333333, + "14630": 0.6243243243, + "14631": 0.6253153153, + "14632": 0.6263063063, + "14633": 0.6272972973, + "14634": 0.6282882883, + "14635": 0.6292792793, + "14636": 0.6302702703, + "14637": 0.6312612613, + "14638": 0.6322522523, + "14639": 0.6332432432, + "14640": 0.6342342342, + "14641": 0.6352252252, + "14642": 0.6362162162, + "14643": 0.6372072072, + "14644": 0.6381981982, + "14645": 0.6391891892, + "14646": 0.6401801802, + "14647": 0.6411711712, + "14648": 0.6421621622, + "14649": 0.6431531532, + "14650": 0.6441441441, + "14651": 0.6451351351, + "14652": 0.6461261261, + "14653": 0.6471171171, + "14654": 0.6481081081, + "14655": 0.6490990991, + "14656": 0.6500900901, + "14657": 0.6510810811, + "14658": 0.6520720721, + "14659": 0.6530630631, + "14660": 0.6540540541, + "14661": 0.655045045, + "14662": 0.656036036, + "14663": 0.657027027, + "14664": 0.658018018, + "14665": 0.659009009, + "14666": 0.66, + "14667": 0.660990991, + "14668": 0.661981982, + "14669": 0.662972973, + "14670": 0.663963964, + "14671": 0.664954955, + "14672": 0.6659459459, + "14673": 0.6669369369, + "14674": 0.6679279279, + "14675": 0.6689189189, + "14676": 0.6699099099, + "14677": 0.6709009009, + "14678": 0.6718918919, + "14679": 0.6728828829, + "14680": 0.6738738739, + "14681": 0.6748648649, + "14682": 0.6758558559, + "14683": 0.6768468468, + "14684": 0.6778378378, + "14685": 0.6788288288, + "14686": 0.6798198198, + "14687": 0.6808108108, + "14688": 0.6818018018, + "14689": 0.6827927928, + "14690": 0.6837837838, + "14691": 0.6847747748, + "14692": 0.6857657658, + "14693": 0.6867567568, + "14694": 0.6877477477, + "14695": 0.6887387387, + "14696": 0.6897297297, + "14697": 0.6907207207, + "14698": 0.6917117117, + "14699": 0.6927027027, + "14700": 0.6936936937, + "14701": 0.6946846847, + "14702": 0.6956756757, + "14703": 0.6966666667, + "14704": 0.6976576577, + "14705": 0.6986486486, + "14706": 0.6996396396, + "14707": 0.7006306306, + "14708": 0.7016216216, + "14709": 0.7026126126, + "14710": 0.7036036036, + "14711": 0.7045945946, + "14712": 0.7055855856, + "14713": 0.7065765766, + "14714": 0.7075675676, + "14715": 0.7085585586, + "14716": 0.7095495495, + "14717": 0.7105405405, + "14718": 0.7115315315, + "14719": 0.7125225225, + "14720": 0.7135135135, + "14721": 0.7145045045, + "14722": 0.7154954955, + "14723": 0.7164864865, + "14724": 0.7174774775, + "14725": 0.7184684685, + "14726": 0.7194594595, + "14727": 0.7204504505, + "14728": 0.7214414414, + "14729": 0.7224324324, + "14730": 0.7234234234, + "14731": 0.7244144144, + "14732": 0.7254054054, + "14733": 0.7263963964, + "14734": 0.7273873874, + "14735": 0.7283783784, + "14736": 0.7293693694, + "14737": 0.7303603604, + "14738": 0.7313513514, + "14739": 0.7323423423, + "14740": 0.7333333333, + "14741": 0.7343243243, + "14742": 0.7353153153, + "14743": 0.7363063063, + "14744": 0.7372972973, + "14745": 0.7382882883, + "14746": 0.7392792793, + "14747": 0.7402702703, + "14748": 0.7412612613, + "14749": 0.7422522523, + "14750": 0.7432432432, + "14751": 0.7442342342, + "14752": 0.7452252252, + "14753": 0.7462162162, + "14754": 0.7472072072, + "14755": 0.7481981982, + "14756": 0.7491891892, + "14757": 0.7501801802, + "14758": 0.7511711712, + "14759": 0.7521621622, + "14760": 0.7531531532, + "14761": 0.7541441441, + "14762": 0.7551351351, + "14763": 0.7561261261, + "14764": 0.7571171171, + "14765": 0.7581081081, + "14766": 0.7590990991, + "14767": 0.7600900901, + "14768": 0.7610810811, + "14769": 0.7620720721, + "14770": 0.7630630631, + "14771": 0.7640540541, + "14772": 0.765045045, + "14773": 0.766036036, + "14774": 0.767027027, + "14775": 0.768018018, + "14776": 0.769009009, + "14777": 0.77, + "14778": 0.770990991, + "14779": 0.771981982, + "14780": 0.772972973, + "14781": 0.773963964, + "14782": 0.774954955, + "14783": 0.7759459459, + "14784": 0.7769369369, + "14785": 0.7779279279, + "14786": 0.7789189189, + "14787": 0.7799099099, + "14788": 0.7809009009, + "14789": 0.7818918919, + "14790": 0.7828828829, + "14791": 0.7838738739, + "14792": 0.7848648649, + "14793": 0.7858558559, + "14794": 0.7868468468, + "14795": 0.7878378378, + "14796": 0.7888288288, + "14797": 0.7898198198, + "14798": 0.7908108108, + "14799": 0.7918018018, + "14800": 0.7927927928, + "14801": 0.7937837838, + "14802": 0.7947747748, + "14803": 0.7957657658, + "14804": 0.7967567568, + "14805": 0.7977477477, + "14806": 0.7987387387, + "14807": 0.7997297297, + "14808": 0.8007207207, + "14809": 0.8017117117, + "14810": 0.8027027027, + "14811": 0.8036936937, + "14812": 0.8046846847, + "14813": 0.8056756757, + "14814": 0.8066666667, + "14815": 0.8076576577, + "14816": 0.8086486486, + "14817": 0.8096396396, + "14818": 0.8106306306, + "14819": 0.8116216216, + "14820": 0.8126126126, + "14821": 0.8136036036, + "14822": 0.8145945946, + "14823": 0.8155855856, + "14824": 0.8165765766, + "14825": 0.8175675676, + "14826": 0.8185585586, + "14827": 0.8195495495, + "14828": 0.8205405405, + "14829": 0.8215315315, + "14830": 0.8225225225, + "14831": 0.8235135135, + "14832": 0.8245045045, + "14833": 0.8254954955, + "14834": 0.8264864865, + "14835": 0.8274774775, + "14836": 0.8284684685, + "14837": 0.8294594595, + "14838": 0.8304504505, + "14839": 0.8314414414, + "14840": 0.8324324324, + "14841": 0.8334234234, + "14842": 0.8344144144, + "14843": 0.8354054054, + "14844": 0.8363963964, + "14845": 0.8373873874, + "14846": 0.8383783784, + "14847": 0.8393693694, + "14848": 0.8403603604, + "14849": 0.8413513514, + "14850": 0.8423423423, + "14851": 0.8433333333, + "14852": 0.8443243243, + "14853": 0.8453153153, + "14854": 0.8463063063, + "14855": 0.8472972973, + "14856": 0.8482882883, + "14857": 0.8492792793, + "14858": 0.8502702703, + "14859": 0.8512612613, + "14860": 0.8522522523, + "14861": 0.8532432432, + "14862": 0.8542342342, + "14863": 0.8552252252, + "14864": 0.8562162162, + "14865": 0.8572072072, + "14866": 0.8581981982, + "14867": 0.8591891892, + "14868": 0.8601801802, + "14869": 0.8611711712, + "14870": 0.8621621622, + "14871": 0.8631531532, + "14872": 0.8641441441, + "14873": 0.8651351351, + "14874": 0.8661261261, + "14875": 0.8671171171, + "14876": 0.8681081081, + "14877": 0.8690990991, + "14878": 0.8700900901, + "14879": 0.8710810811, + "14880": 0.8720720721, + "14881": 0.8730630631, + "14882": 0.8740540541, + "14883": 0.875045045, + "14884": 0.876036036, + "14885": 0.877027027, + "14886": 0.878018018, + "14887": 0.879009009, + "14888": 0.88, + "14889": 0.880990991, + "14890": 0.881981982, + "14891": 0.882972973, + "14892": 0.883963964, + "14893": 0.884954955, + "14894": 0.8859459459, + "14895": 0.8869369369, + "14896": 0.8879279279, + "14897": 0.8889189189, + "14898": 0.8899099099, + "14899": 0.8909009009, + "14900": 0.8918918919, + "14901": 0.8928828829, + "14902": 0.8938738739, + "14903": 0.8948648649, + "14904": 0.8958558559, + "14905": 0.8968468468, + "14906": 0.8978378378, + "14907": 0.8988288288, + "14908": 0.8998198198, + "14909": 0.9008108108, + "14910": 0.9018018018, + "14911": 0.9027927928, + "14912": 0.9037837838, + "14913": 0.9047747748, + "14914": 0.9057657658, + "14915": 0.9067567568, + "14916": 0.9077477477, + "14917": 0.9087387387, + "14918": 0.9097297297, + "14919": 0.9107207207, + "14920": 0.9117117117, + "14921": 0.9127027027, + "14922": 0.9136936937, + "14923": 0.9146846847, + "14924": 0.9156756757, + "14925": 0.9166666667, + "14926": 0.9176576577, + "14927": 0.9186486486, + "14928": 0.9196396396, + "14929": 0.9206306306, + "14930": 0.9216216216, + "14931": 0.9226126126, + "14932": 0.9236036036, + "14933": 0.9245945946, + "14934": 0.9255855856, + "14935": 0.9265765766, + "14936": 0.9275675676, + "14937": 0.9285585586, + "14938": 0.9295495495, + "14939": 0.9305405405, + "14940": 0.9315315315, + "14941": 0.9325225225, + "14942": 0.9335135135, + "14943": 0.9345045045, + "14944": 0.9354954955, + "14945": 0.9364864865, + "14946": 0.9374774775, + "14947": 0.9384684685, + "14948": 0.9394594595, + "14949": 0.9404504505, + "14950": 0.9414414414, + "14951": 0.9424324324, + "14952": 0.9434234234, + "14953": 0.9444144144, + "14954": 0.9454054054, + "14955": 0.9463963964, + "14956": 0.9473873874, + "14957": 0.9483783784, + "14958": 0.9493693694, + "14959": 0.9503603604, + "14960": 0.9513513514, + "14961": 0.9523423423, + "14962": 0.9533333333, + "14963": 0.9543243243, + "14964": 0.9553153153, + "14965": 0.9563063063, + "14966": 0.9572972973, + "14967": 0.9582882883, + "14968": 0.9592792793, + "14969": 0.9602702703, + "14970": 0.9612612613, + "14971": 0.9622522523, + "14972": 0.9632432432, + "14973": 0.9642342342, + "14974": 0.9652252252, + "14975": 0.9662162162, + "14976": 0.9672072072, + "14977": 0.9681981982, + "14978": 0.9691891892, + "14979": 0.9701801802, + "14980": 0.9711711712, + "14981": 0.9721621622, + "14982": 0.9731531532, + "14983": 0.9741441441, + "14984": 0.9751351351, + "14985": 0.9761261261, + "14986": 0.9771171171, + "14987": 0.9781081081, + "14988": 0.9790990991, + "14989": 0.9800900901, + "14990": 0.9810810811, + "14991": 0.9820720721, + "14992": 0.9830630631, + "14993": 0.9840540541, + "14994": 0.985045045, + "14995": 0.986036036, + "14996": 0.987027027, + "14997": 0.988018018, + "14998": 0.989009009, + "14999": 0.99, + "15000": 0.0, + "15001": 0.000990991, + "15002": 0.001981982, + "15003": 0.002972973, + "15004": 0.003963964, + "15005": 0.004954955, + "15006": 0.0059459459, + "15007": 0.0069369369, + "15008": 0.0079279279, + "15009": 0.0089189189, + "15010": 0.0099099099, + "15011": 0.0109009009, + "15012": 0.0118918919, + "15013": 0.0128828829, + "15014": 0.0138738739, + "15015": 0.0148648649, + "15016": 0.0158558559, + "15017": 0.0168468468, + "15018": 0.0178378378, + "15019": 0.0188288288, + "15020": 0.0198198198, + "15021": 0.0208108108, + "15022": 0.0218018018, + "15023": 0.0227927928, + "15024": 0.0237837838, + "15025": 0.0247747748, + "15026": 0.0257657658, + "15027": 0.0267567568, + "15028": 0.0277477477, + "15029": 0.0287387387, + "15030": 0.0297297297, + "15031": 0.0307207207, + "15032": 0.0317117117, + "15033": 0.0327027027, + "15034": 0.0336936937, + "15035": 0.0346846847, + "15036": 0.0356756757, + "15037": 0.0366666667, + "15038": 0.0376576577, + "15039": 0.0386486486, + "15040": 0.0396396396, + "15041": 0.0406306306, + "15042": 0.0416216216, + "15043": 0.0426126126, + "15044": 0.0436036036, + "15045": 0.0445945946, + "15046": 0.0455855856, + "15047": 0.0465765766, + "15048": 0.0475675676, + "15049": 0.0485585586, + "15050": 0.0495495495, + "15051": 0.0505405405, + "15052": 0.0515315315, + "15053": 0.0525225225, + "15054": 0.0535135135, + "15055": 0.0545045045, + "15056": 0.0554954955, + "15057": 0.0564864865, + "15058": 0.0574774775, + "15059": 0.0584684685, + "15060": 0.0594594595, + "15061": 0.0604504505, + "15062": 0.0614414414, + "15063": 0.0624324324, + "15064": 0.0634234234, + "15065": 0.0644144144, + "15066": 0.0654054054, + "15067": 0.0663963964, + "15068": 0.0673873874, + "15069": 0.0683783784, + "15070": 0.0693693694, + "15071": 0.0703603604, + "15072": 0.0713513514, + "15073": 0.0723423423, + "15074": 0.0733333333, + "15075": 0.0743243243, + "15076": 0.0753153153, + "15077": 0.0763063063, + "15078": 0.0772972973, + "15079": 0.0782882883, + "15080": 0.0792792793, + "15081": 0.0802702703, + "15082": 0.0812612613, + "15083": 0.0822522523, + "15084": 0.0832432432, + "15085": 0.0842342342, + "15086": 0.0852252252, + "15087": 0.0862162162, + "15088": 0.0872072072, + "15089": 0.0881981982, + "15090": 0.0891891892, + "15091": 0.0901801802, + "15092": 0.0911711712, + "15093": 0.0921621622, + "15094": 0.0931531532, + "15095": 0.0941441441, + "15096": 0.0951351351, + "15097": 0.0961261261, + "15098": 0.0971171171, + "15099": 0.0981081081, + "15100": 0.0990990991, + "15101": 0.1000900901, + "15102": 0.1010810811, + "15103": 0.1020720721, + "15104": 0.1030630631, + "15105": 0.1040540541, + "15106": 0.105045045, + "15107": 0.106036036, + "15108": 0.107027027, + "15109": 0.108018018, + "15110": 0.109009009, + "15111": 0.11, + "15112": 0.110990991, + "15113": 0.111981982, + "15114": 0.112972973, + "15115": 0.113963964, + "15116": 0.114954955, + "15117": 0.1159459459, + "15118": 0.1169369369, + "15119": 0.1179279279, + "15120": 0.1189189189, + "15121": 0.1199099099, + "15122": 0.1209009009, + "15123": 0.1218918919, + "15124": 0.1228828829, + "15125": 0.1238738739, + "15126": 0.1248648649, + "15127": 0.1258558559, + "15128": 0.1268468468, + "15129": 0.1278378378, + "15130": 0.1288288288, + "15131": 0.1298198198, + "15132": 0.1308108108, + "15133": 0.1318018018, + "15134": 0.1327927928, + "15135": 0.1337837838, + "15136": 0.1347747748, + "15137": 0.1357657658, + "15138": 0.1367567568, + "15139": 0.1377477477, + "15140": 0.1387387387, + "15141": 0.1397297297, + "15142": 0.1407207207, + "15143": 0.1417117117, + "15144": 0.1427027027, + "15145": 0.1436936937, + "15146": 0.1446846847, + "15147": 0.1456756757, + "15148": 0.1466666667, + "15149": 0.1476576577, + "15150": 0.1486486486, + "15151": 0.1496396396, + "15152": 0.1506306306, + "15153": 0.1516216216, + "15154": 0.1526126126, + "15155": 0.1536036036, + "15156": 0.1545945946, + "15157": 0.1555855856, + "15158": 0.1565765766, + "15159": 0.1575675676, + "15160": 0.1585585586, + "15161": 0.1595495495, + "15162": 0.1605405405, + "15163": 0.1615315315, + "15164": 0.1625225225, + "15165": 0.1635135135, + "15166": 0.1645045045, + "15167": 0.1654954955, + "15168": 0.1664864865, + "15169": 0.1674774775, + "15170": 0.1684684685, + "15171": 0.1694594595, + "15172": 0.1704504505, + "15173": 0.1714414414, + "15174": 0.1724324324, + "15175": 0.1734234234, + "15176": 0.1744144144, + "15177": 0.1754054054, + "15178": 0.1763963964, + "15179": 0.1773873874, + "15180": 0.1783783784, + "15181": 0.1793693694, + "15182": 0.1803603604, + "15183": 0.1813513514, + "15184": 0.1823423423, + "15185": 0.1833333333, + "15186": 0.1843243243, + "15187": 0.1853153153, + "15188": 0.1863063063, + "15189": 0.1872972973, + "15190": 0.1882882883, + "15191": 0.1892792793, + "15192": 0.1902702703, + "15193": 0.1912612613, + "15194": 0.1922522523, + "15195": 0.1932432432, + "15196": 0.1942342342, + "15197": 0.1952252252, + "15198": 0.1962162162, + "15199": 0.1972072072, + "15200": 0.1981981982, + "15201": 0.1991891892, + "15202": 0.2001801802, + "15203": 0.2011711712, + "15204": 0.2021621622, + "15205": 0.2031531532, + "15206": 0.2041441441, + "15207": 0.2051351351, + "15208": 0.2061261261, + "15209": 0.2071171171, + "15210": 0.2081081081, + "15211": 0.2090990991, + "15212": 0.2100900901, + "15213": 0.2110810811, + "15214": 0.2120720721, + "15215": 0.2130630631, + "15216": 0.2140540541, + "15217": 0.215045045, + "15218": 0.216036036, + "15219": 0.217027027, + "15220": 0.218018018, + "15221": 0.219009009, + "15222": 0.22, + "15223": 0.220990991, + "15224": 0.221981982, + "15225": 0.222972973, + "15226": 0.223963964, + "15227": 0.224954955, + "15228": 0.2259459459, + "15229": 0.2269369369, + "15230": 0.2279279279, + "15231": 0.2289189189, + "15232": 0.2299099099, + "15233": 0.2309009009, + "15234": 0.2318918919, + "15235": 0.2328828829, + "15236": 0.2338738739, + "15237": 0.2348648649, + "15238": 0.2358558559, + "15239": 0.2368468468, + "15240": 0.2378378378, + "15241": 0.2388288288, + "15242": 0.2398198198, + "15243": 0.2408108108, + "15244": 0.2418018018, + "15245": 0.2427927928, + "15246": 0.2437837838, + "15247": 0.2447747748, + "15248": 0.2457657658, + "15249": 0.2467567568, + "15250": 0.2477477477, + "15251": 0.2487387387, + "15252": 0.2497297297, + "15253": 0.2507207207, + "15254": 0.2517117117, + "15255": 0.2527027027, + "15256": 0.2536936937, + "15257": 0.2546846847, + "15258": 0.2556756757, + "15259": 0.2566666667, + "15260": 0.2576576577, + "15261": 0.2586486486, + "15262": 0.2596396396, + "15263": 0.2606306306, + "15264": 0.2616216216, + "15265": 0.2626126126, + "15266": 0.2636036036, + "15267": 0.2645945946, + "15268": 0.2655855856, + "15269": 0.2665765766, + "15270": 0.2675675676, + "15271": 0.2685585586, + "15272": 0.2695495495, + "15273": 0.2705405405, + "15274": 0.2715315315, + "15275": 0.2725225225, + "15276": 0.2735135135, + "15277": 0.2745045045, + "15278": 0.2754954955, + "15279": 0.2764864865, + "15280": 0.2774774775, + "15281": 0.2784684685, + "15282": 0.2794594595, + "15283": 0.2804504505, + "15284": 0.2814414414, + "15285": 0.2824324324, + "15286": 0.2834234234, + "15287": 0.2844144144, + "15288": 0.2854054054, + "15289": 0.2863963964, + "15290": 0.2873873874, + "15291": 0.2883783784, + "15292": 0.2893693694, + "15293": 0.2903603604, + "15294": 0.2913513514, + "15295": 0.2923423423, + "15296": 0.2933333333, + "15297": 0.2943243243, + "15298": 0.2953153153, + "15299": 0.2963063063, + "15300": 0.2972972973, + "15301": 0.2982882883, + "15302": 0.2992792793, + "15303": 0.3002702703, + "15304": 0.3012612613, + "15305": 0.3022522523, + "15306": 0.3032432432, + "15307": 0.3042342342, + "15308": 0.3052252252, + "15309": 0.3062162162, + "15310": 0.3072072072, + "15311": 0.3081981982, + "15312": 0.3091891892, + "15313": 0.3101801802, + "15314": 0.3111711712, + "15315": 0.3121621622, + "15316": 0.3131531532, + "15317": 0.3141441441, + "15318": 0.3151351351, + "15319": 0.3161261261, + "15320": 0.3171171171, + "15321": 0.3181081081, + "15322": 0.3190990991, + "15323": 0.3200900901, + "15324": 0.3210810811, + "15325": 0.3220720721, + "15326": 0.3230630631, + "15327": 0.3240540541, + "15328": 0.325045045, + "15329": 0.326036036, + "15330": 0.327027027, + "15331": 0.328018018, + "15332": 0.329009009, + "15333": 0.33, + "15334": 0.330990991, + "15335": 0.331981982, + "15336": 0.332972973, + "15337": 0.333963964, + "15338": 0.334954955, + "15339": 0.3359459459, + "15340": 0.3369369369, + "15341": 0.3379279279, + "15342": 0.3389189189, + "15343": 0.3399099099, + "15344": 0.3409009009, + "15345": 0.3418918919, + "15346": 0.3428828829, + "15347": 0.3438738739, + "15348": 0.3448648649, + "15349": 0.3458558559, + "15350": 0.3468468468, + "15351": 0.3478378378, + "15352": 0.3488288288, + "15353": 0.3498198198, + "15354": 0.3508108108, + "15355": 0.3518018018, + "15356": 0.3527927928, + "15357": 0.3537837838, + "15358": 0.3547747748, + "15359": 0.3557657658, + "15360": 0.3567567568, + "15361": 0.3577477477, + "15362": 0.3587387387, + "15363": 0.3597297297, + "15364": 0.3607207207, + "15365": 0.3617117117, + "15366": 0.3627027027, + "15367": 0.3636936937, + "15368": 0.3646846847, + "15369": 0.3656756757, + "15370": 0.3666666667, + "15371": 0.3676576577, + "15372": 0.3686486486, + "15373": 0.3696396396, + "15374": 0.3706306306, + "15375": 0.3716216216, + "15376": 0.3726126126, + "15377": 0.3736036036, + "15378": 0.3745945946, + "15379": 0.3755855856, + "15380": 0.3765765766, + "15381": 0.3775675676, + "15382": 0.3785585586, + "15383": 0.3795495495, + "15384": 0.3805405405, + "15385": 0.3815315315, + "15386": 0.3825225225, + "15387": 0.3835135135, + "15388": 0.3845045045, + "15389": 0.3854954955, + "15390": 0.3864864865, + "15391": 0.3874774775, + "15392": 0.3884684685, + "15393": 0.3894594595, + "15394": 0.3904504505, + "15395": 0.3914414414, + "15396": 0.3924324324, + "15397": 0.3934234234, + "15398": 0.3944144144, + "15399": 0.3954054054, + "15400": 0.3963963964, + "15401": 0.3973873874, + "15402": 0.3983783784, + "15403": 0.3993693694, + "15404": 0.4003603604, + "15405": 0.4013513514, + "15406": 0.4023423423, + "15407": 0.4033333333, + "15408": 0.4043243243, + "15409": 0.4053153153, + "15410": 0.4063063063, + "15411": 0.4072972973, + "15412": 0.4082882883, + "15413": 0.4092792793, + "15414": 0.4102702703, + "15415": 0.4112612613, + "15416": 0.4122522523, + "15417": 0.4132432432, + "15418": 0.4142342342, + "15419": 0.4152252252, + "15420": 0.4162162162, + "15421": 0.4172072072, + "15422": 0.4181981982, + "15423": 0.4191891892, + "15424": 0.4201801802, + "15425": 0.4211711712, + "15426": 0.4221621622, + "15427": 0.4231531532, + "15428": 0.4241441441, + "15429": 0.4251351351, + "15430": 0.4261261261, + "15431": 0.4271171171, + "15432": 0.4281081081, + "15433": 0.4290990991, + "15434": 0.4300900901, + "15435": 0.4310810811, + "15436": 0.4320720721, + "15437": 0.4330630631, + "15438": 0.4340540541, + "15439": 0.435045045, + "15440": 0.436036036, + "15441": 0.437027027, + "15442": 0.438018018, + "15443": 0.439009009, + "15444": 0.44, + "15445": 0.440990991, + "15446": 0.441981982, + "15447": 0.442972973, + "15448": 0.443963964, + "15449": 0.444954955, + "15450": 0.4459459459, + "15451": 0.4469369369, + "15452": 0.4479279279, + "15453": 0.4489189189, + "15454": 0.4499099099, + "15455": 0.4509009009, + "15456": 0.4518918919, + "15457": 0.4528828829, + "15458": 0.4538738739, + "15459": 0.4548648649, + "15460": 0.4558558559, + "15461": 0.4568468468, + "15462": 0.4578378378, + "15463": 0.4588288288, + "15464": 0.4598198198, + "15465": 0.4608108108, + "15466": 0.4618018018, + "15467": 0.4627927928, + "15468": 0.4637837838, + "15469": 0.4647747748, + "15470": 0.4657657658, + "15471": 0.4667567568, + "15472": 0.4677477477, + "15473": 0.4687387387, + "15474": 0.4697297297, + "15475": 0.4707207207, + "15476": 0.4717117117, + "15477": 0.4727027027, + "15478": 0.4736936937, + "15479": 0.4746846847, + "15480": 0.4756756757, + "15481": 0.4766666667, + "15482": 0.4776576577, + "15483": 0.4786486486, + "15484": 0.4796396396, + "15485": 0.4806306306, + "15486": 0.4816216216, + "15487": 0.4826126126, + "15488": 0.4836036036, + "15489": 0.4845945946, + "15490": 0.4855855856, + "15491": 0.4865765766, + "15492": 0.4875675676, + "15493": 0.4885585586, + "15494": 0.4895495495, + "15495": 0.4905405405, + "15496": 0.4915315315, + "15497": 0.4925225225, + "15498": 0.4935135135, + "15499": 0.4945045045, + "15500": 0.4954954955, + "15501": 0.4964864865, + "15502": 0.4974774775, + "15503": 0.4984684685, + "15504": 0.4994594595, + "15505": 0.5004504505, + "15506": 0.5014414414, + "15507": 0.5024324324, + "15508": 0.5034234234, + "15509": 0.5044144144, + "15510": 0.5054054054, + "15511": 0.5063963964, + "15512": 0.5073873874, + "15513": 0.5083783784, + "15514": 0.5093693694, + "15515": 0.5103603604, + "15516": 0.5113513514, + "15517": 0.5123423423, + "15518": 0.5133333333, + "15519": 0.5143243243, + "15520": 0.5153153153, + "15521": 0.5163063063, + "15522": 0.5172972973, + "15523": 0.5182882883, + "15524": 0.5192792793, + "15525": 0.5202702703, + "15526": 0.5212612613, + "15527": 0.5222522523, + "15528": 0.5232432432, + "15529": 0.5242342342, + "15530": 0.5252252252, + "15531": 0.5262162162, + "15532": 0.5272072072, + "15533": 0.5281981982, + "15534": 0.5291891892, + "15535": 0.5301801802, + "15536": 0.5311711712, + "15537": 0.5321621622, + "15538": 0.5331531532, + "15539": 0.5341441441, + "15540": 0.5351351351, + "15541": 0.5361261261, + "15542": 0.5371171171, + "15543": 0.5381081081, + "15544": 0.5390990991, + "15545": 0.5400900901, + "15546": 0.5410810811, + "15547": 0.5420720721, + "15548": 0.5430630631, + "15549": 0.5440540541, + "15550": 0.545045045, + "15551": 0.546036036, + "15552": 0.547027027, + "15553": 0.548018018, + "15554": 0.549009009, + "15555": 0.55, + "15556": 0.550990991, + "15557": 0.551981982, + "15558": 0.552972973, + "15559": 0.553963964, + "15560": 0.554954955, + "15561": 0.5559459459, + "15562": 0.5569369369, + "15563": 0.5579279279, + "15564": 0.5589189189, + "15565": 0.5599099099, + "15566": 0.5609009009, + "15567": 0.5618918919, + "15568": 0.5628828829, + "15569": 0.5638738739, + "15570": 0.5648648649, + "15571": 0.5658558559, + "15572": 0.5668468468, + "15573": 0.5678378378, + "15574": 0.5688288288, + "15575": 0.5698198198, + "15576": 0.5708108108, + "15577": 0.5718018018, + "15578": 0.5727927928, + "15579": 0.5737837838, + "15580": 0.5747747748, + "15581": 0.5757657658, + "15582": 0.5767567568, + "15583": 0.5777477477, + "15584": 0.5787387387, + "15585": 0.5797297297, + "15586": 0.5807207207, + "15587": 0.5817117117, + "15588": 0.5827027027, + "15589": 0.5836936937, + "15590": 0.5846846847, + "15591": 0.5856756757, + "15592": 0.5866666667, + "15593": 0.5876576577, + "15594": 0.5886486486, + "15595": 0.5896396396, + "15596": 0.5906306306, + "15597": 0.5916216216, + "15598": 0.5926126126, + "15599": 0.5936036036, + "15600": 0.5945945946, + "15601": 0.5955855856, + "15602": 0.5965765766, + "15603": 0.5975675676, + "15604": 0.5985585586, + "15605": 0.5995495495, + "15606": 0.6005405405, + "15607": 0.6015315315, + "15608": 0.6025225225, + "15609": 0.6035135135, + "15610": 0.6045045045, + "15611": 0.6054954955, + "15612": 0.6064864865, + "15613": 0.6074774775, + "15614": 0.6084684685, + "15615": 0.6094594595, + "15616": 0.6104504505, + "15617": 0.6114414414, + "15618": 0.6124324324, + "15619": 0.6134234234, + "15620": 0.6144144144, + "15621": 0.6154054054, + "15622": 0.6163963964, + "15623": 0.6173873874, + "15624": 0.6183783784, + "15625": 0.6193693694, + "15626": 0.6203603604, + "15627": 0.6213513514, + "15628": 0.6223423423, + "15629": 0.6233333333, + "15630": 0.6243243243, + "15631": 0.6253153153, + "15632": 0.6263063063, + "15633": 0.6272972973, + "15634": 0.6282882883, + "15635": 0.6292792793, + "15636": 0.6302702703, + "15637": 0.6312612613, + "15638": 0.6322522523, + "15639": 0.6332432432, + "15640": 0.6342342342, + "15641": 0.6352252252, + "15642": 0.6362162162, + "15643": 0.6372072072, + "15644": 0.6381981982, + "15645": 0.6391891892, + "15646": 0.6401801802, + "15647": 0.6411711712, + "15648": 0.6421621622, + "15649": 0.6431531532, + "15650": 0.6441441441, + "15651": 0.6451351351, + "15652": 0.6461261261, + "15653": 0.6471171171, + "15654": 0.6481081081, + "15655": 0.6490990991, + "15656": 0.6500900901, + "15657": 0.6510810811, + "15658": 0.6520720721, + "15659": 0.6530630631, + "15660": 0.6540540541, + "15661": 0.655045045, + "15662": 0.656036036, + "15663": 0.657027027, + "15664": 0.658018018, + "15665": 0.659009009, + "15666": 0.66, + "15667": 0.660990991, + "15668": 0.661981982, + "15669": 0.662972973, + "15670": 0.663963964, + "15671": 0.664954955, + "15672": 0.6659459459, + "15673": 0.6669369369, + "15674": 0.6679279279, + "15675": 0.6689189189, + "15676": 0.6699099099, + "15677": 0.6709009009, + "15678": 0.6718918919, + "15679": 0.6728828829, + "15680": 0.6738738739, + "15681": 0.6748648649, + "15682": 0.6758558559, + "15683": 0.6768468468, + "15684": 0.6778378378, + "15685": 0.6788288288, + "15686": 0.6798198198, + "15687": 0.6808108108, + "15688": 0.6818018018, + "15689": 0.6827927928, + "15690": 0.6837837838, + "15691": 0.6847747748, + "15692": 0.6857657658, + "15693": 0.6867567568, + "15694": 0.6877477477, + "15695": 0.6887387387, + "15696": 0.6897297297, + "15697": 0.6907207207, + "15698": 0.6917117117, + "15699": 0.6927027027, + "15700": 0.6936936937, + "15701": 0.6946846847, + "15702": 0.6956756757, + "15703": 0.6966666667, + "15704": 0.6976576577, + "15705": 0.6986486486, + "15706": 0.6996396396, + "15707": 0.7006306306, + "15708": 0.7016216216, + "15709": 0.7026126126, + "15710": 0.7036036036, + "15711": 0.7045945946, + "15712": 0.7055855856, + "15713": 0.7065765766, + "15714": 0.7075675676, + "15715": 0.7085585586, + "15716": 0.7095495495, + "15717": 0.7105405405, + "15718": 0.7115315315, + "15719": 0.7125225225, + "15720": 0.7135135135, + "15721": 0.7145045045, + "15722": 0.7154954955, + "15723": 0.7164864865, + "15724": 0.7174774775, + "15725": 0.7184684685, + "15726": 0.7194594595, + "15727": 0.7204504505, + "15728": 0.7214414414, + "15729": 0.7224324324, + "15730": 0.7234234234, + "15731": 0.7244144144, + "15732": 0.7254054054, + "15733": 0.7263963964, + "15734": 0.7273873874, + "15735": 0.7283783784, + "15736": 0.7293693694, + "15737": 0.7303603604, + "15738": 0.7313513514, + "15739": 0.7323423423, + "15740": 0.7333333333, + "15741": 0.7343243243, + "15742": 0.7353153153, + "15743": 0.7363063063, + "15744": 0.7372972973, + "15745": 0.7382882883, + "15746": 0.7392792793, + "15747": 0.7402702703, + "15748": 0.7412612613, + "15749": 0.7422522523, + "15750": 0.7432432432, + "15751": 0.7442342342, + "15752": 0.7452252252, + "15753": 0.7462162162, + "15754": 0.7472072072, + "15755": 0.7481981982, + "15756": 0.7491891892, + "15757": 0.7501801802, + "15758": 0.7511711712, + "15759": 0.7521621622, + "15760": 0.7531531532, + "15761": 0.7541441441, + "15762": 0.7551351351, + "15763": 0.7561261261, + "15764": 0.7571171171, + "15765": 0.7581081081, + "15766": 0.7590990991, + "15767": 0.7600900901, + "15768": 0.7610810811, + "15769": 0.7620720721, + "15770": 0.7630630631, + "15771": 0.7640540541, + "15772": 0.765045045, + "15773": 0.766036036, + "15774": 0.767027027, + "15775": 0.768018018, + "15776": 0.769009009, + "15777": 0.77, + "15778": 0.770990991, + "15779": 0.771981982, + "15780": 0.772972973, + "15781": 0.773963964, + "15782": 0.774954955, + "15783": 0.7759459459, + "15784": 0.7769369369, + "15785": 0.7779279279, + "15786": 0.7789189189, + "15787": 0.7799099099, + "15788": 0.7809009009, + "15789": 0.7818918919, + "15790": 0.7828828829, + "15791": 0.7838738739, + "15792": 0.7848648649, + "15793": 0.7858558559, + "15794": 0.7868468468, + "15795": 0.7878378378, + "15796": 0.7888288288, + "15797": 0.7898198198, + "15798": 0.7908108108, + "15799": 0.7918018018, + "15800": 0.7927927928, + "15801": 0.7937837838, + "15802": 0.7947747748, + "15803": 0.7957657658, + "15804": 0.7967567568, + "15805": 0.7977477477, + "15806": 0.7987387387, + "15807": 0.7997297297, + "15808": 0.8007207207, + "15809": 0.8017117117, + "15810": 0.8027027027, + "15811": 0.8036936937, + "15812": 0.8046846847, + "15813": 0.8056756757, + "15814": 0.8066666667, + "15815": 0.8076576577, + "15816": 0.8086486486, + "15817": 0.8096396396, + "15818": 0.8106306306, + "15819": 0.8116216216, + "15820": 0.8126126126, + "15821": 0.8136036036, + "15822": 0.8145945946, + "15823": 0.8155855856, + "15824": 0.8165765766, + "15825": 0.8175675676, + "15826": 0.8185585586, + "15827": 0.8195495495, + "15828": 0.8205405405, + "15829": 0.8215315315, + "15830": 0.8225225225, + "15831": 0.8235135135, + "15832": 0.8245045045, + "15833": 0.8254954955, + "15834": 0.8264864865, + "15835": 0.8274774775, + "15836": 0.8284684685, + "15837": 0.8294594595, + "15838": 0.8304504505, + "15839": 0.8314414414, + "15840": 0.8324324324, + "15841": 0.8334234234, + "15842": 0.8344144144, + "15843": 0.8354054054, + "15844": 0.8363963964, + "15845": 0.8373873874, + "15846": 0.8383783784, + "15847": 0.8393693694, + "15848": 0.8403603604, + "15849": 0.8413513514, + "15850": 0.8423423423, + "15851": 0.8433333333, + "15852": 0.8443243243, + "15853": 0.8453153153, + "15854": 0.8463063063, + "15855": 0.8472972973, + "15856": 0.8482882883, + "15857": 0.8492792793, + "15858": 0.8502702703, + "15859": 0.8512612613, + "15860": 0.8522522523, + "15861": 0.8532432432, + "15862": 0.8542342342, + "15863": 0.8552252252, + "15864": 0.8562162162, + "15865": 0.8572072072, + "15866": 0.8581981982, + "15867": 0.8591891892, + "15868": 0.8601801802, + "15869": 0.8611711712, + "15870": 0.8621621622, + "15871": 0.8631531532, + "15872": 0.8641441441, + "15873": 0.8651351351, + "15874": 0.8661261261, + "15875": 0.8671171171, + "15876": 0.8681081081, + "15877": 0.8690990991, + "15878": 0.8700900901, + "15879": 0.8710810811, + "15880": 0.8720720721, + "15881": 0.8730630631, + "15882": 0.8740540541, + "15883": 0.875045045, + "15884": 0.876036036, + "15885": 0.877027027, + "15886": 0.878018018, + "15887": 0.879009009, + "15888": 0.88, + "15889": 0.880990991, + "15890": 0.881981982, + "15891": 0.882972973, + "15892": 0.883963964, + "15893": 0.884954955, + "15894": 0.8859459459, + "15895": 0.8869369369, + "15896": 0.8879279279, + "15897": 0.8889189189, + "15898": 0.8899099099, + "15899": 0.8909009009, + "15900": 0.8918918919, + "15901": 0.8928828829, + "15902": 0.8938738739, + "15903": 0.8948648649, + "15904": 0.8958558559, + "15905": 0.8968468468, + "15906": 0.8978378378, + "15907": 0.8988288288, + "15908": 0.8998198198, + "15909": 0.9008108108, + "15910": 0.9018018018, + "15911": 0.9027927928, + "15912": 0.9037837838, + "15913": 0.9047747748, + "15914": 0.9057657658, + "15915": 0.9067567568, + "15916": 0.9077477477, + "15917": 0.9087387387, + "15918": 0.9097297297, + "15919": 0.9107207207, + "15920": 0.9117117117, + "15921": 0.9127027027, + "15922": 0.9136936937, + "15923": 0.9146846847, + "15924": 0.9156756757, + "15925": 0.9166666667, + "15926": 0.9176576577, + "15927": 0.9186486486, + "15928": 0.9196396396, + "15929": 0.9206306306, + "15930": 0.9216216216, + "15931": 0.9226126126, + "15932": 0.9236036036, + "15933": 0.9245945946, + "15934": 0.9255855856, + "15935": 0.9265765766, + "15936": 0.9275675676, + "15937": 0.9285585586, + "15938": 0.9295495495, + "15939": 0.9305405405, + "15940": 0.9315315315, + "15941": 0.9325225225, + "15942": 0.9335135135, + "15943": 0.9345045045, + "15944": 0.9354954955, + "15945": 0.9364864865, + "15946": 0.9374774775, + "15947": 0.9384684685, + "15948": 0.9394594595, + "15949": 0.9404504505, + "15950": 0.9414414414, + "15951": 0.9424324324, + "15952": 0.9434234234, + "15953": 0.9444144144, + "15954": 0.9454054054, + "15955": 0.9463963964, + "15956": 0.9473873874, + "15957": 0.9483783784, + "15958": 0.9493693694, + "15959": 0.9503603604, + "15960": 0.9513513514, + "15961": 0.9523423423, + "15962": 0.9533333333, + "15963": 0.9543243243, + "15964": 0.9553153153, + "15965": 0.9563063063, + "15966": 0.9572972973, + "15967": 0.9582882883, + "15968": 0.9592792793, + "15969": 0.9602702703, + "15970": 0.9612612613, + "15971": 0.9622522523, + "15972": 0.9632432432, + "15973": 0.9642342342, + "15974": 0.9652252252, + "15975": 0.9662162162, + "15976": 0.9672072072, + "15977": 0.9681981982, + "15978": 0.9691891892, + "15979": 0.9701801802, + "15980": 0.9711711712, + "15981": 0.9721621622, + "15982": 0.9731531532, + "15983": 0.9741441441, + "15984": 0.9751351351, + "15985": 0.9761261261, + "15986": 0.9771171171, + "15987": 0.9781081081, + "15988": 0.9790990991, + "15989": 0.9800900901, + "15990": 0.9810810811, + "15991": 0.9820720721, + "15992": 0.9830630631, + "15993": 0.9840540541, + "15994": 0.985045045, + "15995": 0.986036036, + "15996": 0.987027027, + "15997": 0.988018018, + "15998": 0.989009009, + "15999": 0.99, + "16000": 0.0, + "16001": 0.000990991, + "16002": 0.001981982, + "16003": 0.002972973, + "16004": 0.003963964, + "16005": 0.004954955, + "16006": 0.0059459459, + "16007": 0.0069369369, + "16008": 0.0079279279, + "16009": 0.0089189189, + "16010": 0.0099099099, + "16011": 0.0109009009, + "16012": 0.0118918919, + "16013": 0.0128828829, + "16014": 0.0138738739, + "16015": 0.0148648649, + "16016": 0.0158558559, + "16017": 0.0168468468, + "16018": 0.0178378378, + "16019": 0.0188288288, + "16020": 0.0198198198, + "16021": 0.0208108108, + "16022": 0.0218018018, + "16023": 0.0227927928, + "16024": 0.0237837838, + "16025": 0.0247747748, + "16026": 0.0257657658, + "16027": 0.0267567568, + "16028": 0.0277477477, + "16029": 0.0287387387, + "16030": 0.0297297297, + "16031": 0.0307207207, + "16032": 0.0317117117, + "16033": 0.0327027027, + "16034": 0.0336936937, + "16035": 0.0346846847, + "16036": 0.0356756757, + "16037": 0.0366666667, + "16038": 0.0376576577, + "16039": 0.0386486486, + "16040": 0.0396396396, + "16041": 0.0406306306, + "16042": 0.0416216216, + "16043": 0.0426126126, + "16044": 0.0436036036, + "16045": 0.0445945946, + "16046": 0.0455855856, + "16047": 0.0465765766, + "16048": 0.0475675676, + "16049": 0.0485585586, + "16050": 0.0495495495, + "16051": 0.0505405405, + "16052": 0.0515315315, + "16053": 0.0525225225, + "16054": 0.0535135135, + "16055": 0.0545045045, + "16056": 0.0554954955, + "16057": 0.0564864865, + "16058": 0.0574774775, + "16059": 0.0584684685, + "16060": 0.0594594595, + "16061": 0.0604504505, + "16062": 0.0614414414, + "16063": 0.0624324324, + "16064": 0.0634234234, + "16065": 0.0644144144, + "16066": 0.0654054054, + "16067": 0.0663963964, + "16068": 0.0673873874, + "16069": 0.0683783784, + "16070": 0.0693693694, + "16071": 0.0703603604, + "16072": 0.0713513514, + "16073": 0.0723423423, + "16074": 0.0733333333, + "16075": 0.0743243243, + "16076": 0.0753153153, + "16077": 0.0763063063, + "16078": 0.0772972973, + "16079": 0.0782882883, + "16080": 0.0792792793, + "16081": 0.0802702703, + "16082": 0.0812612613, + "16083": 0.0822522523, + "16084": 0.0832432432, + "16085": 0.0842342342, + "16086": 0.0852252252, + "16087": 0.0862162162, + "16088": 0.0872072072, + "16089": 0.0881981982, + "16090": 0.0891891892, + "16091": 0.0901801802, + "16092": 0.0911711712, + "16093": 0.0921621622, + "16094": 0.0931531532, + "16095": 0.0941441441, + "16096": 0.0951351351, + "16097": 0.0961261261, + "16098": 0.0971171171, + "16099": 0.0981081081, + "16100": 0.0990990991, + "16101": 0.1000900901, + "16102": 0.1010810811, + "16103": 0.1020720721, + "16104": 0.1030630631, + "16105": 0.1040540541, + "16106": 0.105045045, + "16107": 0.106036036, + "16108": 0.107027027, + "16109": 0.108018018, + "16110": 0.109009009, + "16111": 0.11, + "16112": 0.110990991, + "16113": 0.111981982, + "16114": 0.112972973, + "16115": 0.113963964, + "16116": 0.114954955, + "16117": 0.1159459459, + "16118": 0.1169369369, + "16119": 0.1179279279, + "16120": 0.1189189189, + "16121": 0.1199099099, + "16122": 0.1209009009, + "16123": 0.1218918919, + "16124": 0.1228828829, + "16125": 0.1238738739, + "16126": 0.1248648649, + "16127": 0.1258558559, + "16128": 0.1268468468, + "16129": 0.1278378378, + "16130": 0.1288288288, + "16131": 0.1298198198, + "16132": 0.1308108108, + "16133": 0.1318018018, + "16134": 0.1327927928, + "16135": 0.1337837838, + "16136": 0.1347747748, + "16137": 0.1357657658, + "16138": 0.1367567568, + "16139": 0.1377477477, + "16140": 0.1387387387, + "16141": 0.1397297297, + "16142": 0.1407207207, + "16143": 0.1417117117, + "16144": 0.1427027027, + "16145": 0.1436936937, + "16146": 0.1446846847, + "16147": 0.1456756757, + "16148": 0.1466666667, + "16149": 0.1476576577, + "16150": 0.1486486486, + "16151": 0.1496396396, + "16152": 0.1506306306, + "16153": 0.1516216216, + "16154": 0.1526126126, + "16155": 0.1536036036, + "16156": 0.1545945946, + "16157": 0.1555855856, + "16158": 0.1565765766, + "16159": 0.1575675676, + "16160": 0.1585585586, + "16161": 0.1595495495, + "16162": 0.1605405405, + "16163": 0.1615315315, + "16164": 0.1625225225, + "16165": 0.1635135135, + "16166": 0.1645045045, + "16167": 0.1654954955, + "16168": 0.1664864865, + "16169": 0.1674774775, + "16170": 0.1684684685, + "16171": 0.1694594595, + "16172": 0.1704504505, + "16173": 0.1714414414, + "16174": 0.1724324324, + "16175": 0.1734234234, + "16176": 0.1744144144, + "16177": 0.1754054054, + "16178": 0.1763963964, + "16179": 0.1773873874, + "16180": 0.1783783784, + "16181": 0.1793693694, + "16182": 0.1803603604, + "16183": 0.1813513514, + "16184": 0.1823423423, + "16185": 0.1833333333, + "16186": 0.1843243243, + "16187": 0.1853153153, + "16188": 0.1863063063, + "16189": 0.1872972973, + "16190": 0.1882882883, + "16191": 0.1892792793, + "16192": 0.1902702703, + "16193": 0.1912612613, + "16194": 0.1922522523, + "16195": 0.1932432432, + "16196": 0.1942342342, + "16197": 0.1952252252, + "16198": 0.1962162162, + "16199": 0.1972072072, + "16200": 0.1981981982, + "16201": 0.1991891892, + "16202": 0.2001801802, + "16203": 0.2011711712, + "16204": 0.2021621622, + "16205": 0.2031531532, + "16206": 0.2041441441, + "16207": 0.2051351351, + "16208": 0.2061261261, + "16209": 0.2071171171, + "16210": 0.2081081081, + "16211": 0.2090990991, + "16212": 0.2100900901, + "16213": 0.2110810811, + "16214": 0.2120720721, + "16215": 0.2130630631, + "16216": 0.2140540541, + "16217": 0.215045045, + "16218": 0.216036036, + "16219": 0.217027027, + "16220": 0.218018018, + "16221": 0.219009009, + "16222": 0.22, + "16223": 0.220990991, + "16224": 0.221981982, + "16225": 0.222972973, + "16226": 0.223963964, + "16227": 0.224954955, + "16228": 0.2259459459, + "16229": 0.2269369369, + "16230": 0.2279279279, + "16231": 0.2289189189, + "16232": 0.2299099099, + "16233": 0.2309009009, + "16234": 0.2318918919, + "16235": 0.2328828829, + "16236": 0.2338738739, + "16237": 0.2348648649, + "16238": 0.2358558559, + "16239": 0.2368468468, + "16240": 0.2378378378, + "16241": 0.2388288288, + "16242": 0.2398198198, + "16243": 0.2408108108, + "16244": 0.2418018018, + "16245": 0.2427927928, + "16246": 0.2437837838, + "16247": 0.2447747748, + "16248": 0.2457657658, + "16249": 0.2467567568, + "16250": 0.2477477477, + "16251": 0.2487387387, + "16252": 0.2497297297, + "16253": 0.2507207207, + "16254": 0.2517117117, + "16255": 0.2527027027, + "16256": 0.2536936937, + "16257": 0.2546846847, + "16258": 0.2556756757, + "16259": 0.2566666667, + "16260": 0.2576576577, + "16261": 0.2586486486, + "16262": 0.2596396396, + "16263": 0.2606306306, + "16264": 0.2616216216, + "16265": 0.2626126126, + "16266": 0.2636036036, + "16267": 0.2645945946, + "16268": 0.2655855856, + "16269": 0.2665765766, + "16270": 0.2675675676, + "16271": 0.2685585586, + "16272": 0.2695495495, + "16273": 0.2705405405, + "16274": 0.2715315315, + "16275": 0.2725225225, + "16276": 0.2735135135, + "16277": 0.2745045045, + "16278": 0.2754954955, + "16279": 0.2764864865, + "16280": 0.2774774775, + "16281": 0.2784684685, + "16282": 0.2794594595, + "16283": 0.2804504505, + "16284": 0.2814414414, + "16285": 0.2824324324, + "16286": 0.2834234234, + "16287": 0.2844144144, + "16288": 0.2854054054, + "16289": 0.2863963964, + "16290": 0.2873873874, + "16291": 0.2883783784, + "16292": 0.2893693694, + "16293": 0.2903603604, + "16294": 0.2913513514, + "16295": 0.2923423423, + "16296": 0.2933333333, + "16297": 0.2943243243, + "16298": 0.2953153153, + "16299": 0.2963063063, + "16300": 0.2972972973, + "16301": 0.2982882883, + "16302": 0.2992792793, + "16303": 0.3002702703, + "16304": 0.3012612613, + "16305": 0.3022522523, + "16306": 0.3032432432, + "16307": 0.3042342342, + "16308": 0.3052252252, + "16309": 0.3062162162, + "16310": 0.3072072072, + "16311": 0.3081981982, + "16312": 0.3091891892, + "16313": 0.3101801802, + "16314": 0.3111711712, + "16315": 0.3121621622, + "16316": 0.3131531532, + "16317": 0.3141441441, + "16318": 0.3151351351, + "16319": 0.3161261261, + "16320": 0.3171171171, + "16321": 0.3181081081, + "16322": 0.3190990991, + "16323": 0.3200900901, + "16324": 0.3210810811, + "16325": 0.3220720721, + "16326": 0.3230630631, + "16327": 0.3240540541, + "16328": 0.325045045, + "16329": 0.326036036, + "16330": 0.327027027, + "16331": 0.328018018, + "16332": 0.329009009, + "16333": 0.33, + "16334": 0.330990991, + "16335": 0.331981982, + "16336": 0.332972973, + "16337": 0.333963964, + "16338": 0.334954955, + "16339": 0.3359459459, + "16340": 0.3369369369, + "16341": 0.3379279279, + "16342": 0.3389189189, + "16343": 0.3399099099, + "16344": 0.3409009009, + "16345": 0.3418918919, + "16346": 0.3428828829, + "16347": 0.3438738739, + "16348": 0.3448648649, + "16349": 0.3458558559, + "16350": 0.3468468468, + "16351": 0.3478378378, + "16352": 0.3488288288, + "16353": 0.3498198198, + "16354": 0.3508108108, + "16355": 0.3518018018, + "16356": 0.3527927928, + "16357": 0.3537837838, + "16358": 0.3547747748, + "16359": 0.3557657658, + "16360": 0.3567567568, + "16361": 0.3577477477, + "16362": 0.3587387387, + "16363": 0.3597297297, + "16364": 0.3607207207, + "16365": 0.3617117117, + "16366": 0.3627027027, + "16367": 0.3636936937, + "16368": 0.3646846847, + "16369": 0.3656756757, + "16370": 0.3666666667, + "16371": 0.3676576577, + "16372": 0.3686486486, + "16373": 0.3696396396, + "16374": 0.3706306306, + "16375": 0.3716216216, + "16376": 0.3726126126, + "16377": 0.3736036036, + "16378": 0.3745945946, + "16379": 0.3755855856, + "16380": 0.3765765766, + "16381": 0.3775675676, + "16382": 0.3785585586, + "16383": 0.3795495495, + "16384": 0.3805405405, + "16385": 0.3815315315, + "16386": 0.3825225225, + "16387": 0.3835135135, + "16388": 0.3845045045, + "16389": 0.3854954955, + "16390": 0.3864864865, + "16391": 0.3874774775, + "16392": 0.3884684685, + "16393": 0.3894594595, + "16394": 0.3904504505, + "16395": 0.3914414414, + "16396": 0.3924324324, + "16397": 0.3934234234, + "16398": 0.3944144144, + "16399": 0.3954054054, + "16400": 0.3963963964, + "16401": 0.3973873874, + "16402": 0.3983783784, + "16403": 0.3993693694, + "16404": 0.4003603604, + "16405": 0.4013513514, + "16406": 0.4023423423, + "16407": 0.4033333333, + "16408": 0.4043243243, + "16409": 0.4053153153, + "16410": 0.4063063063, + "16411": 0.4072972973, + "16412": 0.4082882883, + "16413": 0.4092792793, + "16414": 0.4102702703, + "16415": 0.4112612613, + "16416": 0.4122522523, + "16417": 0.4132432432, + "16418": 0.4142342342, + "16419": 0.4152252252, + "16420": 0.4162162162, + "16421": 0.4172072072, + "16422": 0.4181981982, + "16423": 0.4191891892, + "16424": 0.4201801802, + "16425": 0.4211711712, + "16426": 0.4221621622, + "16427": 0.4231531532, + "16428": 0.4241441441, + "16429": 0.4251351351, + "16430": 0.4261261261, + "16431": 0.4271171171, + "16432": 0.4281081081, + "16433": 0.4290990991, + "16434": 0.4300900901, + "16435": 0.4310810811, + "16436": 0.4320720721, + "16437": 0.4330630631, + "16438": 0.4340540541, + "16439": 0.435045045, + "16440": 0.436036036, + "16441": 0.437027027, + "16442": 0.438018018, + "16443": 0.439009009, + "16444": 0.44, + "16445": 0.440990991, + "16446": 0.441981982, + "16447": 0.442972973, + "16448": 0.443963964, + "16449": 0.444954955, + "16450": 0.4459459459, + "16451": 0.4469369369, + "16452": 0.4479279279, + "16453": 0.4489189189, + "16454": 0.4499099099, + "16455": 0.4509009009, + "16456": 0.4518918919, + "16457": 0.4528828829, + "16458": 0.4538738739, + "16459": 0.4548648649, + "16460": 0.4558558559, + "16461": 0.4568468468, + "16462": 0.4578378378, + "16463": 0.4588288288, + "16464": 0.4598198198, + "16465": 0.4608108108, + "16466": 0.4618018018, + "16467": 0.4627927928, + "16468": 0.4637837838, + "16469": 0.4647747748, + "16470": 0.4657657658, + "16471": 0.4667567568, + "16472": 0.4677477477, + "16473": 0.4687387387, + "16474": 0.4697297297, + "16475": 0.4707207207, + "16476": 0.4717117117, + "16477": 0.4727027027, + "16478": 0.4736936937, + "16479": 0.4746846847, + "16480": 0.4756756757, + "16481": 0.4766666667, + "16482": 0.4776576577, + "16483": 0.4786486486, + "16484": 0.4796396396, + "16485": 0.4806306306, + "16486": 0.4816216216, + "16487": 0.4826126126, + "16488": 0.4836036036, + "16489": 0.4845945946, + "16490": 0.4855855856, + "16491": 0.4865765766, + "16492": 0.4875675676, + "16493": 0.4885585586, + "16494": 0.4895495495, + "16495": 0.4905405405, + "16496": 0.4915315315, + "16497": 0.4925225225, + "16498": 0.4935135135, + "16499": 0.4945045045, + "16500": 0.4954954955, + "16501": 0.4964864865, + "16502": 0.4974774775, + "16503": 0.4984684685, + "16504": 0.4994594595, + "16505": 0.5004504505, + "16506": 0.5014414414, + "16507": 0.5024324324, + "16508": 0.5034234234, + "16509": 0.5044144144, + "16510": 0.5054054054, + "16511": 0.5063963964, + "16512": 0.5073873874, + "16513": 0.5083783784, + "16514": 0.5093693694, + "16515": 0.5103603604, + "16516": 0.5113513514, + "16517": 0.5123423423, + "16518": 0.5133333333, + "16519": 0.5143243243, + "16520": 0.5153153153, + "16521": 0.5163063063, + "16522": 0.5172972973, + "16523": 0.5182882883, + "16524": 0.5192792793, + "16525": 0.5202702703, + "16526": 0.5212612613, + "16527": 0.5222522523, + "16528": 0.5232432432, + "16529": 0.5242342342, + "16530": 0.5252252252, + "16531": 0.5262162162, + "16532": 0.5272072072, + "16533": 0.5281981982, + "16534": 0.5291891892, + "16535": 0.5301801802, + "16536": 0.5311711712, + "16537": 0.5321621622, + "16538": 0.5331531532, + "16539": 0.5341441441, + "16540": 0.5351351351, + "16541": 0.5361261261, + "16542": 0.5371171171, + "16543": 0.5381081081, + "16544": 0.5390990991, + "16545": 0.5400900901, + "16546": 0.5410810811, + "16547": 0.5420720721, + "16548": 0.5430630631, + "16549": 0.5440540541, + "16550": 0.545045045, + "16551": 0.546036036, + "16552": 0.547027027, + "16553": 0.548018018, + "16554": 0.549009009, + "16555": 0.55, + "16556": 0.550990991, + "16557": 0.551981982, + "16558": 0.552972973, + "16559": 0.553963964, + "16560": 0.554954955, + "16561": 0.5559459459, + "16562": 0.5569369369, + "16563": 0.5579279279, + "16564": 0.5589189189, + "16565": 0.5599099099, + "16566": 0.5609009009, + "16567": 0.5618918919, + "16568": 0.5628828829, + "16569": 0.5638738739, + "16570": 0.5648648649, + "16571": 0.5658558559, + "16572": 0.5668468468, + "16573": 0.5678378378, + "16574": 0.5688288288, + "16575": 0.5698198198, + "16576": 0.5708108108, + "16577": 0.5718018018, + "16578": 0.5727927928, + "16579": 0.5737837838, + "16580": 0.5747747748, + "16581": 0.5757657658, + "16582": 0.5767567568, + "16583": 0.5777477477, + "16584": 0.5787387387, + "16585": 0.5797297297, + "16586": 0.5807207207, + "16587": 0.5817117117, + "16588": 0.5827027027, + "16589": 0.5836936937, + "16590": 0.5846846847, + "16591": 0.5856756757, + "16592": 0.5866666667, + "16593": 0.5876576577, + "16594": 0.5886486486, + "16595": 0.5896396396, + "16596": 0.5906306306, + "16597": 0.5916216216, + "16598": 0.5926126126, + "16599": 0.5936036036, + "16600": 0.5945945946, + "16601": 0.5955855856, + "16602": 0.5965765766, + "16603": 0.5975675676, + "16604": 0.5985585586, + "16605": 0.5995495495, + "16606": 0.6005405405, + "16607": 0.6015315315, + "16608": 0.6025225225, + "16609": 0.6035135135, + "16610": 0.6045045045, + "16611": 0.6054954955, + "16612": 0.6064864865, + "16613": 0.6074774775, + "16614": 0.6084684685, + "16615": 0.6094594595, + "16616": 0.6104504505, + "16617": 0.6114414414, + "16618": 0.6124324324, + "16619": 0.6134234234, + "16620": 0.6144144144, + "16621": 0.6154054054, + "16622": 0.6163963964, + "16623": 0.6173873874, + "16624": 0.6183783784, + "16625": 0.6193693694, + "16626": 0.6203603604, + "16627": 0.6213513514, + "16628": 0.6223423423, + "16629": 0.6233333333, + "16630": 0.6243243243, + "16631": 0.6253153153, + "16632": 0.6263063063, + "16633": 0.6272972973, + "16634": 0.6282882883, + "16635": 0.6292792793, + "16636": 0.6302702703, + "16637": 0.6312612613, + "16638": 0.6322522523, + "16639": 0.6332432432, + "16640": 0.6342342342, + "16641": 0.6352252252, + "16642": 0.6362162162, + "16643": 0.6372072072, + "16644": 0.6381981982, + "16645": 0.6391891892, + "16646": 0.6401801802, + "16647": 0.6411711712, + "16648": 0.6421621622, + "16649": 0.6431531532, + "16650": 0.6441441441, + "16651": 0.6451351351, + "16652": 0.6461261261, + "16653": 0.6471171171, + "16654": 0.6481081081, + "16655": 0.6490990991, + "16656": 0.6500900901, + "16657": 0.6510810811, + "16658": 0.6520720721, + "16659": 0.6530630631, + "16660": 0.6540540541, + "16661": 0.655045045, + "16662": 0.656036036, + "16663": 0.657027027, + "16664": 0.658018018, + "16665": 0.659009009, + "16666": 0.66, + "16667": 0.660990991, + "16668": 0.661981982, + "16669": 0.662972973, + "16670": 0.663963964, + "16671": 0.664954955, + "16672": 0.6659459459, + "16673": 0.6669369369, + "16674": 0.6679279279, + "16675": 0.6689189189, + "16676": 0.6699099099, + "16677": 0.6709009009, + "16678": 0.6718918919, + "16679": 0.6728828829, + "16680": 0.6738738739, + "16681": 0.6748648649, + "16682": 0.6758558559, + "16683": 0.6768468468, + "16684": 0.6778378378, + "16685": 0.6788288288, + "16686": 0.6798198198, + "16687": 0.6808108108, + "16688": 0.6818018018, + "16689": 0.6827927928, + "16690": 0.6837837838, + "16691": 0.6847747748, + "16692": 0.6857657658, + "16693": 0.6867567568, + "16694": 0.6877477477, + "16695": 0.6887387387, + "16696": 0.6897297297, + "16697": 0.6907207207, + "16698": 0.6917117117, + "16699": 0.6927027027, + "16700": 0.6936936937, + "16701": 0.6946846847, + "16702": 0.6956756757, + "16703": 0.6966666667, + "16704": 0.6976576577, + "16705": 0.6986486486, + "16706": 0.6996396396, + "16707": 0.7006306306, + "16708": 0.7016216216, + "16709": 0.7026126126, + "16710": 0.7036036036, + "16711": 0.7045945946, + "16712": 0.7055855856, + "16713": 0.7065765766, + "16714": 0.7075675676, + "16715": 0.7085585586, + "16716": 0.7095495495, + "16717": 0.7105405405, + "16718": 0.7115315315, + "16719": 0.7125225225, + "16720": 0.7135135135, + "16721": 0.7145045045, + "16722": 0.7154954955, + "16723": 0.7164864865, + "16724": 0.7174774775, + "16725": 0.7184684685, + "16726": 0.7194594595, + "16727": 0.7204504505, + "16728": 0.7214414414, + "16729": 0.7224324324, + "16730": 0.7234234234, + "16731": 0.7244144144, + "16732": 0.7254054054, + "16733": 0.7263963964, + "16734": 0.7273873874, + "16735": 0.7283783784, + "16736": 0.7293693694, + "16737": 0.7303603604, + "16738": 0.7313513514, + "16739": 0.7323423423, + "16740": 0.7333333333, + "16741": 0.7343243243, + "16742": 0.7353153153, + "16743": 0.7363063063, + "16744": 0.7372972973, + "16745": 0.7382882883, + "16746": 0.7392792793, + "16747": 0.7402702703, + "16748": 0.7412612613, + "16749": 0.7422522523, + "16750": 0.7432432432, + "16751": 0.7442342342, + "16752": 0.7452252252, + "16753": 0.7462162162, + "16754": 0.7472072072, + "16755": 0.7481981982, + "16756": 0.7491891892, + "16757": 0.7501801802, + "16758": 0.7511711712, + "16759": 0.7521621622, + "16760": 0.7531531532, + "16761": 0.7541441441, + "16762": 0.7551351351, + "16763": 0.7561261261, + "16764": 0.7571171171, + "16765": 0.7581081081, + "16766": 0.7590990991, + "16767": 0.7600900901, + "16768": 0.7610810811, + "16769": 0.7620720721, + "16770": 0.7630630631, + "16771": 0.7640540541, + "16772": 0.765045045, + "16773": 0.766036036, + "16774": 0.767027027, + "16775": 0.768018018, + "16776": 0.769009009, + "16777": 0.77, + "16778": 0.770990991, + "16779": 0.771981982, + "16780": 0.772972973, + "16781": 0.773963964, + "16782": 0.774954955, + "16783": 0.7759459459, + "16784": 0.7769369369, + "16785": 0.7779279279, + "16786": 0.7789189189, + "16787": 0.7799099099, + "16788": 0.7809009009, + "16789": 0.7818918919, + "16790": 0.7828828829, + "16791": 0.7838738739, + "16792": 0.7848648649, + "16793": 0.7858558559, + "16794": 0.7868468468, + "16795": 0.7878378378, + "16796": 0.7888288288, + "16797": 0.7898198198, + "16798": 0.7908108108, + "16799": 0.7918018018, + "16800": 0.7927927928, + "16801": 0.7937837838, + "16802": 0.7947747748, + "16803": 0.7957657658, + "16804": 0.7967567568, + "16805": 0.7977477477, + "16806": 0.7987387387, + "16807": 0.7997297297, + "16808": 0.8007207207, + "16809": 0.8017117117, + "16810": 0.8027027027, + "16811": 0.8036936937, + "16812": 0.8046846847, + "16813": 0.8056756757, + "16814": 0.8066666667, + "16815": 0.8076576577, + "16816": 0.8086486486, + "16817": 0.8096396396, + "16818": 0.8106306306, + "16819": 0.8116216216, + "16820": 0.8126126126, + "16821": 0.8136036036, + "16822": 0.8145945946, + "16823": 0.8155855856, + "16824": 0.8165765766, + "16825": 0.8175675676, + "16826": 0.8185585586, + "16827": 0.8195495495, + "16828": 0.8205405405, + "16829": 0.8215315315, + "16830": 0.8225225225, + "16831": 0.8235135135, + "16832": 0.8245045045, + "16833": 0.8254954955, + "16834": 0.8264864865, + "16835": 0.8274774775, + "16836": 0.8284684685, + "16837": 0.8294594595, + "16838": 0.8304504505, + "16839": 0.8314414414, + "16840": 0.8324324324, + "16841": 0.8334234234, + "16842": 0.8344144144, + "16843": 0.8354054054, + "16844": 0.8363963964, + "16845": 0.8373873874, + "16846": 0.8383783784, + "16847": 0.8393693694, + "16848": 0.8403603604, + "16849": 0.8413513514, + "16850": 0.8423423423, + "16851": 0.8433333333, + "16852": 0.8443243243, + "16853": 0.8453153153, + "16854": 0.8463063063, + "16855": 0.8472972973, + "16856": 0.8482882883, + "16857": 0.8492792793, + "16858": 0.8502702703, + "16859": 0.8512612613, + "16860": 0.8522522523, + "16861": 0.8532432432, + "16862": 0.8542342342, + "16863": 0.8552252252, + "16864": 0.8562162162, + "16865": 0.8572072072, + "16866": 0.8581981982, + "16867": 0.8591891892, + "16868": 0.8601801802, + "16869": 0.8611711712, + "16870": 0.8621621622, + "16871": 0.8631531532, + "16872": 0.8641441441, + "16873": 0.8651351351, + "16874": 0.8661261261, + "16875": 0.8671171171, + "16876": 0.8681081081, + "16877": 0.8690990991, + "16878": 0.8700900901, + "16879": 0.8710810811, + "16880": 0.8720720721, + "16881": 0.8730630631, + "16882": 0.8740540541, + "16883": 0.875045045, + "16884": 0.876036036, + "16885": 0.877027027, + "16886": 0.878018018, + "16887": 0.879009009, + "16888": 0.88, + "16889": 0.880990991, + "16890": 0.881981982, + "16891": 0.882972973, + "16892": 0.883963964, + "16893": 0.884954955, + "16894": 0.8859459459, + "16895": 0.8869369369, + "16896": 0.8879279279, + "16897": 0.8889189189, + "16898": 0.8899099099, + "16899": 0.8909009009, + "16900": 0.8918918919, + "16901": 0.8928828829, + "16902": 0.8938738739, + "16903": 0.8948648649, + "16904": 0.8958558559, + "16905": 0.8968468468, + "16906": 0.8978378378, + "16907": 0.8988288288, + "16908": 0.8998198198, + "16909": 0.9008108108, + "16910": 0.9018018018, + "16911": 0.9027927928, + "16912": 0.9037837838, + "16913": 0.9047747748, + "16914": 0.9057657658, + "16915": 0.9067567568, + "16916": 0.9077477477, + "16917": 0.9087387387, + "16918": 0.9097297297, + "16919": 0.9107207207, + "16920": 0.9117117117, + "16921": 0.9127027027, + "16922": 0.9136936937, + "16923": 0.9146846847, + "16924": 0.9156756757, + "16925": 0.9166666667, + "16926": 0.9176576577, + "16927": 0.9186486486, + "16928": 0.9196396396, + "16929": 0.9206306306, + "16930": 0.9216216216, + "16931": 0.9226126126, + "16932": 0.9236036036, + "16933": 0.9245945946, + "16934": 0.9255855856, + "16935": 0.9265765766, + "16936": 0.9275675676, + "16937": 0.9285585586, + "16938": 0.9295495495, + "16939": 0.9305405405, + "16940": 0.9315315315, + "16941": 0.9325225225, + "16942": 0.9335135135, + "16943": 0.9345045045, + "16944": 0.9354954955, + "16945": 0.9364864865, + "16946": 0.9374774775, + "16947": 0.9384684685, + "16948": 0.9394594595, + "16949": 0.9404504505, + "16950": 0.9414414414, + "16951": 0.9424324324, + "16952": 0.9434234234, + "16953": 0.9444144144, + "16954": 0.9454054054, + "16955": 0.9463963964, + "16956": 0.9473873874, + "16957": 0.9483783784, + "16958": 0.9493693694, + "16959": 0.9503603604, + "16960": 0.9513513514, + "16961": 0.9523423423, + "16962": 0.9533333333, + "16963": 0.9543243243, + "16964": 0.9553153153, + "16965": 0.9563063063, + "16966": 0.9572972973, + "16967": 0.9582882883, + "16968": 0.9592792793, + "16969": 0.9602702703, + "16970": 0.9612612613, + "16971": 0.9622522523, + "16972": 0.9632432432, + "16973": 0.9642342342, + "16974": 0.9652252252, + "16975": 0.9662162162, + "16976": 0.9672072072, + "16977": 0.9681981982, + "16978": 0.9691891892, + "16979": 0.9701801802, + "16980": 0.9711711712, + "16981": 0.9721621622, + "16982": 0.9731531532, + "16983": 0.9741441441, + "16984": 0.9751351351, + "16985": 0.9761261261, + "16986": 0.9771171171, + "16987": 0.9781081081, + "16988": 0.9790990991, + "16989": 0.9800900901, + "16990": 0.9810810811, + "16991": 0.9820720721, + "16992": 0.9830630631, + "16993": 0.9840540541, + "16994": 0.985045045, + "16995": 0.986036036, + "16996": 0.987027027, + "16997": 0.988018018, + "16998": 0.989009009, + "16999": 0.99, + "17000": 0.0, + "17001": 0.000990991, + "17002": 0.001981982, + "17003": 0.002972973, + "17004": 0.003963964, + "17005": 0.004954955, + "17006": 0.0059459459, + "17007": 0.0069369369, + "17008": 0.0079279279, + "17009": 0.0089189189, + "17010": 0.0099099099, + "17011": 0.0109009009, + "17012": 0.0118918919, + "17013": 0.0128828829, + "17014": 0.0138738739, + "17015": 0.0148648649, + "17016": 0.0158558559, + "17017": 0.0168468468, + "17018": 0.0178378378, + "17019": 0.0188288288, + "17020": 0.0198198198, + "17021": 0.0208108108, + "17022": 0.0218018018, + "17023": 0.0227927928, + "17024": 0.0237837838, + "17025": 0.0247747748, + "17026": 0.0257657658, + "17027": 0.0267567568, + "17028": 0.0277477477, + "17029": 0.0287387387, + "17030": 0.0297297297, + "17031": 0.0307207207, + "17032": 0.0317117117, + "17033": 0.0327027027, + "17034": 0.0336936937, + "17035": 0.0346846847, + "17036": 0.0356756757, + "17037": 0.0366666667, + "17038": 0.0376576577, + "17039": 0.0386486486, + "17040": 0.0396396396, + "17041": 0.0406306306, + "17042": 0.0416216216, + "17043": 0.0426126126, + "17044": 0.0436036036, + "17045": 0.0445945946, + "17046": 0.0455855856, + "17047": 0.0465765766, + "17048": 0.0475675676, + "17049": 0.0485585586, + "17050": 0.0495495495, + "17051": 0.0505405405, + "17052": 0.0515315315, + "17053": 0.0525225225, + "17054": 0.0535135135, + "17055": 0.0545045045, + "17056": 0.0554954955, + "17057": 0.0564864865, + "17058": 0.0574774775, + "17059": 0.0584684685, + "17060": 0.0594594595, + "17061": 0.0604504505, + "17062": 0.0614414414, + "17063": 0.0624324324, + "17064": 0.0634234234, + "17065": 0.0644144144, + "17066": 0.0654054054, + "17067": 0.0663963964, + "17068": 0.0673873874, + "17069": 0.0683783784, + "17070": 0.0693693694, + "17071": 0.0703603604, + "17072": 0.0713513514, + "17073": 0.0723423423, + "17074": 0.0733333333, + "17075": 0.0743243243, + "17076": 0.0753153153, + "17077": 0.0763063063, + "17078": 0.0772972973, + "17079": 0.0782882883, + "17080": 0.0792792793, + "17081": 0.0802702703, + "17082": 0.0812612613, + "17083": 0.0822522523, + "17084": 0.0832432432, + "17085": 0.0842342342, + "17086": 0.0852252252, + "17087": 0.0862162162, + "17088": 0.0872072072, + "17089": 0.0881981982, + "17090": 0.0891891892, + "17091": 0.0901801802, + "17092": 0.0911711712, + "17093": 0.0921621622, + "17094": 0.0931531532, + "17095": 0.0941441441, + "17096": 0.0951351351, + "17097": 0.0961261261, + "17098": 0.0971171171, + "17099": 0.0981081081, + "17100": 0.0990990991, + "17101": 0.1000900901, + "17102": 0.1010810811, + "17103": 0.1020720721, + "17104": 0.1030630631, + "17105": 0.1040540541, + "17106": 0.105045045, + "17107": 0.106036036, + "17108": 0.107027027, + "17109": 0.108018018, + "17110": 0.109009009, + "17111": 0.11, + "17112": 0.110990991, + "17113": 0.111981982, + "17114": 0.112972973, + "17115": 0.113963964, + "17116": 0.114954955, + "17117": 0.1159459459, + "17118": 0.1169369369, + "17119": 0.1179279279, + "17120": 0.1189189189, + "17121": 0.1199099099, + "17122": 0.1209009009, + "17123": 0.1218918919, + "17124": 0.1228828829, + "17125": 0.1238738739, + "17126": 0.1248648649, + "17127": 0.1258558559, + "17128": 0.1268468468, + "17129": 0.1278378378, + "17130": 0.1288288288, + "17131": 0.1298198198, + "17132": 0.1308108108, + "17133": 0.1318018018, + "17134": 0.1327927928, + "17135": 0.1337837838, + "17136": 0.1347747748, + "17137": 0.1357657658, + "17138": 0.1367567568, + "17139": 0.1377477477, + "17140": 0.1387387387, + "17141": 0.1397297297, + "17142": 0.1407207207, + "17143": 0.1417117117, + "17144": 0.1427027027, + "17145": 0.1436936937, + "17146": 0.1446846847, + "17147": 0.1456756757, + "17148": 0.1466666667, + "17149": 0.1476576577, + "17150": 0.1486486486, + "17151": 0.1496396396, + "17152": 0.1506306306, + "17153": 0.1516216216, + "17154": 0.1526126126, + "17155": 0.1536036036, + "17156": 0.1545945946, + "17157": 0.1555855856, + "17158": 0.1565765766, + "17159": 0.1575675676, + "17160": 0.1585585586, + "17161": 0.1595495495, + "17162": 0.1605405405, + "17163": 0.1615315315, + "17164": 0.1625225225, + "17165": 0.1635135135, + "17166": 0.1645045045, + "17167": 0.1654954955, + "17168": 0.1664864865, + "17169": 0.1674774775, + "17170": 0.1684684685, + "17171": 0.1694594595, + "17172": 0.1704504505, + "17173": 0.1714414414, + "17174": 0.1724324324, + "17175": 0.1734234234, + "17176": 0.1744144144, + "17177": 0.1754054054, + "17178": 0.1763963964, + "17179": 0.1773873874, + "17180": 0.1783783784, + "17181": 0.1793693694, + "17182": 0.1803603604, + "17183": 0.1813513514, + "17184": 0.1823423423, + "17185": 0.1833333333, + "17186": 0.1843243243, + "17187": 0.1853153153, + "17188": 0.1863063063, + "17189": 0.1872972973, + "17190": 0.1882882883, + "17191": 0.1892792793, + "17192": 0.1902702703, + "17193": 0.1912612613, + "17194": 0.1922522523, + "17195": 0.1932432432, + "17196": 0.1942342342, + "17197": 0.1952252252, + "17198": 0.1962162162, + "17199": 0.1972072072, + "17200": 0.1981981982, + "17201": 0.1991891892, + "17202": 0.2001801802, + "17203": 0.2011711712, + "17204": 0.2021621622, + "17205": 0.2031531532, + "17206": 0.2041441441, + "17207": 0.2051351351, + "17208": 0.2061261261, + "17209": 0.2071171171, + "17210": 0.2081081081, + "17211": 0.2090990991, + "17212": 0.2100900901, + "17213": 0.2110810811, + "17214": 0.2120720721, + "17215": 0.2130630631, + "17216": 0.2140540541, + "17217": 0.215045045, + "17218": 0.216036036, + "17219": 0.217027027, + "17220": 0.218018018, + "17221": 0.219009009, + "17222": 0.22, + "17223": 0.220990991, + "17224": 0.221981982, + "17225": 0.222972973, + "17226": 0.223963964, + "17227": 0.224954955, + "17228": 0.2259459459, + "17229": 0.2269369369, + "17230": 0.2279279279, + "17231": 0.2289189189, + "17232": 0.2299099099, + "17233": 0.2309009009, + "17234": 0.2318918919, + "17235": 0.2328828829, + "17236": 0.2338738739, + "17237": 0.2348648649, + "17238": 0.2358558559, + "17239": 0.2368468468, + "17240": 0.2378378378, + "17241": 0.2388288288, + "17242": 0.2398198198, + "17243": 0.2408108108, + "17244": 0.2418018018, + "17245": 0.2427927928, + "17246": 0.2437837838, + "17247": 0.2447747748, + "17248": 0.2457657658, + "17249": 0.2467567568, + "17250": 0.2477477477, + "17251": 0.2487387387, + "17252": 0.2497297297, + "17253": 0.2507207207, + "17254": 0.2517117117, + "17255": 0.2527027027, + "17256": 0.2536936937, + "17257": 0.2546846847, + "17258": 0.2556756757, + "17259": 0.2566666667, + "17260": 0.2576576577, + "17261": 0.2586486486, + "17262": 0.2596396396, + "17263": 0.2606306306, + "17264": 0.2616216216, + "17265": 0.2626126126, + "17266": 0.2636036036, + "17267": 0.2645945946, + "17268": 0.2655855856, + "17269": 0.2665765766, + "17270": 0.2675675676, + "17271": 0.2685585586, + "17272": 0.2695495495, + "17273": 0.2705405405, + "17274": 0.2715315315, + "17275": 0.2725225225, + "17276": 0.2735135135, + "17277": 0.2745045045, + "17278": 0.2754954955, + "17279": 0.2764864865, + "17280": 0.2774774775, + "17281": 0.2784684685, + "17282": 0.2794594595, + "17283": 0.2804504505, + "17284": 0.2814414414, + "17285": 0.2824324324, + "17286": 0.2834234234, + "17287": 0.2844144144, + "17288": 0.2854054054, + "17289": 0.2863963964, + "17290": 0.2873873874, + "17291": 0.2883783784, + "17292": 0.2893693694, + "17293": 0.2903603604, + "17294": 0.2913513514, + "17295": 0.2923423423, + "17296": 0.2933333333, + "17297": 0.2943243243, + "17298": 0.2953153153, + "17299": 0.2963063063, + "17300": 0.2972972973, + "17301": 0.2982882883, + "17302": 0.2992792793, + "17303": 0.3002702703, + "17304": 0.3012612613, + "17305": 0.3022522523, + "17306": 0.3032432432, + "17307": 0.3042342342, + "17308": 0.3052252252, + "17309": 0.3062162162, + "17310": 0.3072072072, + "17311": 0.3081981982, + "17312": 0.3091891892, + "17313": 0.3101801802, + "17314": 0.3111711712, + "17315": 0.3121621622, + "17316": 0.3131531532, + "17317": 0.3141441441, + "17318": 0.3151351351, + "17319": 0.3161261261, + "17320": 0.3171171171, + "17321": 0.3181081081, + "17322": 0.3190990991, + "17323": 0.3200900901, + "17324": 0.3210810811, + "17325": 0.3220720721, + "17326": 0.3230630631, + "17327": 0.3240540541, + "17328": 0.325045045, + "17329": 0.326036036, + "17330": 0.327027027, + "17331": 0.328018018, + "17332": 0.329009009, + "17333": 0.33, + "17334": 0.330990991, + "17335": 0.331981982, + "17336": 0.332972973, + "17337": 0.333963964, + "17338": 0.334954955, + "17339": 0.3359459459, + "17340": 0.3369369369, + "17341": 0.3379279279, + "17342": 0.3389189189, + "17343": 0.3399099099, + "17344": 0.3409009009, + "17345": 0.3418918919, + "17346": 0.3428828829, + "17347": 0.3438738739, + "17348": 0.3448648649, + "17349": 0.3458558559, + "17350": 0.3468468468, + "17351": 0.3478378378, + "17352": 0.3488288288, + "17353": 0.3498198198, + "17354": 0.3508108108, + "17355": 0.3518018018, + "17356": 0.3527927928, + "17357": 0.3537837838, + "17358": 0.3547747748, + "17359": 0.3557657658, + "17360": 0.3567567568, + "17361": 0.3577477477, + "17362": 0.3587387387, + "17363": 0.3597297297, + "17364": 0.3607207207, + "17365": 0.3617117117, + "17366": 0.3627027027, + "17367": 0.3636936937, + "17368": 0.3646846847, + "17369": 0.3656756757, + "17370": 0.3666666667, + "17371": 0.3676576577, + "17372": 0.3686486486, + "17373": 0.3696396396, + "17374": 0.3706306306, + "17375": 0.3716216216, + "17376": 0.3726126126, + "17377": 0.3736036036, + "17378": 0.3745945946, + "17379": 0.3755855856, + "17380": 0.3765765766, + "17381": 0.3775675676, + "17382": 0.3785585586, + "17383": 0.3795495495, + "17384": 0.3805405405, + "17385": 0.3815315315, + "17386": 0.3825225225, + "17387": 0.3835135135, + "17388": 0.3845045045, + "17389": 0.3854954955, + "17390": 0.3864864865, + "17391": 0.3874774775, + "17392": 0.3884684685, + "17393": 0.3894594595, + "17394": 0.3904504505, + "17395": 0.3914414414, + "17396": 0.3924324324, + "17397": 0.3934234234, + "17398": 0.3944144144, + "17399": 0.3954054054, + "17400": 0.3963963964, + "17401": 0.3973873874, + "17402": 0.3983783784, + "17403": 0.3993693694, + "17404": 0.4003603604, + "17405": 0.4013513514, + "17406": 0.4023423423, + "17407": 0.4033333333, + "17408": 0.4043243243, + "17409": 0.4053153153, + "17410": 0.4063063063, + "17411": 0.4072972973, + "17412": 0.4082882883, + "17413": 0.4092792793, + "17414": 0.4102702703, + "17415": 0.4112612613, + "17416": 0.4122522523, + "17417": 0.4132432432, + "17418": 0.4142342342, + "17419": 0.4152252252, + "17420": 0.4162162162, + "17421": 0.4172072072, + "17422": 0.4181981982, + "17423": 0.4191891892, + "17424": 0.4201801802, + "17425": 0.4211711712, + "17426": 0.4221621622, + "17427": 0.4231531532, + "17428": 0.4241441441, + "17429": 0.4251351351, + "17430": 0.4261261261, + "17431": 0.4271171171, + "17432": 0.4281081081, + "17433": 0.4290990991, + "17434": 0.4300900901, + "17435": 0.4310810811, + "17436": 0.4320720721, + "17437": 0.4330630631, + "17438": 0.4340540541, + "17439": 0.435045045, + "17440": 0.436036036, + "17441": 0.437027027, + "17442": 0.438018018, + "17443": 0.439009009, + "17444": 0.44, + "17445": 0.440990991, + "17446": 0.441981982, + "17447": 0.442972973, + "17448": 0.443963964, + "17449": 0.444954955, + "17450": 0.4459459459, + "17451": 0.4469369369, + "17452": 0.4479279279, + "17453": 0.4489189189, + "17454": 0.4499099099, + "17455": 0.4509009009, + "17456": 0.4518918919, + "17457": 0.4528828829, + "17458": 0.4538738739, + "17459": 0.4548648649, + "17460": 0.4558558559, + "17461": 0.4568468468, + "17462": 0.4578378378, + "17463": 0.4588288288, + "17464": 0.4598198198, + "17465": 0.4608108108, + "17466": 0.4618018018, + "17467": 0.4627927928, + "17468": 0.4637837838, + "17469": 0.4647747748, + "17470": 0.4657657658, + "17471": 0.4667567568, + "17472": 0.4677477477, + "17473": 0.4687387387, + "17474": 0.4697297297, + "17475": 0.4707207207, + "17476": 0.4717117117, + "17477": 0.4727027027, + "17478": 0.4736936937, + "17479": 0.4746846847, + "17480": 0.4756756757, + "17481": 0.4766666667, + "17482": 0.4776576577, + "17483": 0.4786486486, + "17484": 0.4796396396, + "17485": 0.4806306306, + "17486": 0.4816216216, + "17487": 0.4826126126, + "17488": 0.4836036036, + "17489": 0.4845945946, + "17490": 0.4855855856, + "17491": 0.4865765766, + "17492": 0.4875675676, + "17493": 0.4885585586, + "17494": 0.4895495495, + "17495": 0.4905405405, + "17496": 0.4915315315, + "17497": 0.4925225225, + "17498": 0.4935135135, + "17499": 0.4945045045, + "17500": 0.4954954955, + "17501": 0.4964864865, + "17502": 0.4974774775, + "17503": 0.4984684685, + "17504": 0.4994594595, + "17505": 0.5004504505, + "17506": 0.5014414414, + "17507": 0.5024324324, + "17508": 0.5034234234, + "17509": 0.5044144144, + "17510": 0.5054054054, + "17511": 0.5063963964, + "17512": 0.5073873874, + "17513": 0.5083783784, + "17514": 0.5093693694, + "17515": 0.5103603604, + "17516": 0.5113513514, + "17517": 0.5123423423, + "17518": 0.5133333333, + "17519": 0.5143243243, + "17520": 0.5153153153, + "17521": 0.5163063063, + "17522": 0.5172972973, + "17523": 0.5182882883, + "17524": 0.5192792793, + "17525": 0.5202702703, + "17526": 0.5212612613, + "17527": 0.5222522523, + "17528": 0.5232432432, + "17529": 0.5242342342, + "17530": 0.5252252252, + "17531": 0.5262162162, + "17532": 0.5272072072, + "17533": 0.5281981982, + "17534": 0.5291891892, + "17535": 0.5301801802, + "17536": 0.5311711712, + "17537": 0.5321621622, + "17538": 0.5331531532, + "17539": 0.5341441441, + "17540": 0.5351351351, + "17541": 0.5361261261, + "17542": 0.5371171171, + "17543": 0.5381081081, + "17544": 0.5390990991, + "17545": 0.5400900901, + "17546": 0.5410810811, + "17547": 0.5420720721, + "17548": 0.5430630631, + "17549": 0.5440540541, + "17550": 0.545045045, + "17551": 0.546036036, + "17552": 0.547027027, + "17553": 0.548018018, + "17554": 0.549009009, + "17555": 0.55, + "17556": 0.550990991, + "17557": 0.551981982, + "17558": 0.552972973, + "17559": 0.553963964, + "17560": 0.554954955, + "17561": 0.5559459459, + "17562": 0.5569369369, + "17563": 0.5579279279, + "17564": 0.5589189189, + "17565": 0.5599099099, + "17566": 0.5609009009, + "17567": 0.5618918919, + "17568": 0.5628828829, + "17569": 0.5638738739, + "17570": 0.5648648649, + "17571": 0.5658558559, + "17572": 0.5668468468, + "17573": 0.5678378378, + "17574": 0.5688288288, + "17575": 0.5698198198, + "17576": 0.5708108108, + "17577": 0.5718018018, + "17578": 0.5727927928, + "17579": 0.5737837838, + "17580": 0.5747747748, + "17581": 0.5757657658, + "17582": 0.5767567568, + "17583": 0.5777477477, + "17584": 0.5787387387, + "17585": 0.5797297297, + "17586": 0.5807207207, + "17587": 0.5817117117, + "17588": 0.5827027027, + "17589": 0.5836936937, + "17590": 0.5846846847, + "17591": 0.5856756757, + "17592": 0.5866666667, + "17593": 0.5876576577, + "17594": 0.5886486486, + "17595": 0.5896396396, + "17596": 0.5906306306, + "17597": 0.5916216216, + "17598": 0.5926126126, + "17599": 0.5936036036, + "17600": 0.5945945946, + "17601": 0.5955855856, + "17602": 0.5965765766, + "17603": 0.5975675676, + "17604": 0.5985585586, + "17605": 0.5995495495, + "17606": 0.6005405405, + "17607": 0.6015315315, + "17608": 0.6025225225, + "17609": 0.6035135135, + "17610": 0.6045045045, + "17611": 0.6054954955, + "17612": 0.6064864865, + "17613": 0.6074774775, + "17614": 0.6084684685, + "17615": 0.6094594595, + "17616": 0.6104504505, + "17617": 0.6114414414, + "17618": 0.6124324324, + "17619": 0.6134234234, + "17620": 0.6144144144, + "17621": 0.6154054054, + "17622": 0.6163963964, + "17623": 0.6173873874, + "17624": 0.6183783784, + "17625": 0.6193693694, + "17626": 0.6203603604, + "17627": 0.6213513514, + "17628": 0.6223423423, + "17629": 0.6233333333, + "17630": 0.6243243243, + "17631": 0.6253153153, + "17632": 0.6263063063, + "17633": 0.6272972973, + "17634": 0.6282882883, + "17635": 0.6292792793, + "17636": 0.6302702703, + "17637": 0.6312612613, + "17638": 0.6322522523, + "17639": 0.6332432432, + "17640": 0.6342342342, + "17641": 0.6352252252, + "17642": 0.6362162162, + "17643": 0.6372072072, + "17644": 0.6381981982, + "17645": 0.6391891892, + "17646": 0.6401801802, + "17647": 0.6411711712, + "17648": 0.6421621622, + "17649": 0.6431531532, + "17650": 0.6441441441, + "17651": 0.6451351351, + "17652": 0.6461261261, + "17653": 0.6471171171, + "17654": 0.6481081081, + "17655": 0.6490990991, + "17656": 0.6500900901, + "17657": 0.6510810811, + "17658": 0.6520720721, + "17659": 0.6530630631, + "17660": 0.6540540541, + "17661": 0.655045045, + "17662": 0.656036036, + "17663": 0.657027027, + "17664": 0.658018018, + "17665": 0.659009009, + "17666": 0.66, + "17667": 0.660990991, + "17668": 0.661981982, + "17669": 0.662972973, + "17670": 0.663963964, + "17671": 0.664954955, + "17672": 0.6659459459, + "17673": 0.6669369369, + "17674": 0.6679279279, + "17675": 0.6689189189, + "17676": 0.6699099099, + "17677": 0.6709009009, + "17678": 0.6718918919, + "17679": 0.6728828829, + "17680": 0.6738738739, + "17681": 0.6748648649, + "17682": 0.6758558559, + "17683": 0.6768468468, + "17684": 0.6778378378, + "17685": 0.6788288288, + "17686": 0.6798198198, + "17687": 0.6808108108, + "17688": 0.6818018018, + "17689": 0.6827927928, + "17690": 0.6837837838, + "17691": 0.6847747748, + "17692": 0.6857657658, + "17693": 0.6867567568, + "17694": 0.6877477477, + "17695": 0.6887387387, + "17696": 0.6897297297, + "17697": 0.6907207207, + "17698": 0.6917117117, + "17699": 0.6927027027, + "17700": 0.6936936937, + "17701": 0.6946846847, + "17702": 0.6956756757, + "17703": 0.6966666667, + "17704": 0.6976576577, + "17705": 0.6986486486, + "17706": 0.6996396396, + "17707": 0.7006306306, + "17708": 0.7016216216, + "17709": 0.7026126126, + "17710": 0.7036036036, + "17711": 0.7045945946, + "17712": 0.7055855856, + "17713": 0.7065765766, + "17714": 0.7075675676, + "17715": 0.7085585586, + "17716": 0.7095495495, + "17717": 0.7105405405, + "17718": 0.7115315315, + "17719": 0.7125225225, + "17720": 0.7135135135, + "17721": 0.7145045045, + "17722": 0.7154954955, + "17723": 0.7164864865, + "17724": 0.7174774775, + "17725": 0.7184684685, + "17726": 0.7194594595, + "17727": 0.7204504505, + "17728": 0.7214414414, + "17729": 0.7224324324, + "17730": 0.7234234234, + "17731": 0.7244144144, + "17732": 0.7254054054, + "17733": 0.7263963964, + "17734": 0.7273873874, + "17735": 0.7283783784, + "17736": 0.7293693694, + "17737": 0.7303603604, + "17738": 0.7313513514, + "17739": 0.7323423423, + "17740": 0.7333333333, + "17741": 0.7343243243, + "17742": 0.7353153153, + "17743": 0.7363063063, + "17744": 0.7372972973, + "17745": 0.7382882883, + "17746": 0.7392792793, + "17747": 0.7402702703, + "17748": 0.7412612613, + "17749": 0.7422522523, + "17750": 0.7432432432, + "17751": 0.7442342342, + "17752": 0.7452252252, + "17753": 0.7462162162, + "17754": 0.7472072072, + "17755": 0.7481981982, + "17756": 0.7491891892, + "17757": 0.7501801802, + "17758": 0.7511711712, + "17759": 0.7521621622, + "17760": 0.7531531532, + "17761": 0.7541441441, + "17762": 0.7551351351, + "17763": 0.7561261261, + "17764": 0.7571171171, + "17765": 0.7581081081, + "17766": 0.7590990991, + "17767": 0.7600900901, + "17768": 0.7610810811, + "17769": 0.7620720721, + "17770": 0.7630630631, + "17771": 0.7640540541, + "17772": 0.765045045, + "17773": 0.766036036, + "17774": 0.767027027, + "17775": 0.768018018, + "17776": 0.769009009, + "17777": 0.77, + "17778": 0.770990991, + "17779": 0.771981982, + "17780": 0.772972973, + "17781": 0.773963964, + "17782": 0.774954955, + "17783": 0.7759459459, + "17784": 0.7769369369, + "17785": 0.7779279279, + "17786": 0.7789189189, + "17787": 0.7799099099, + "17788": 0.7809009009, + "17789": 0.7818918919, + "17790": 0.7828828829, + "17791": 0.7838738739, + "17792": 0.7848648649, + "17793": 0.7858558559, + "17794": 0.7868468468, + "17795": 0.7878378378, + "17796": 0.7888288288, + "17797": 0.7898198198, + "17798": 0.7908108108, + "17799": 0.7918018018, + "17800": 0.7927927928, + "17801": 0.7937837838, + "17802": 0.7947747748, + "17803": 0.7957657658, + "17804": 0.7967567568, + "17805": 0.7977477477, + "17806": 0.7987387387, + "17807": 0.7997297297, + "17808": 0.8007207207, + "17809": 0.8017117117, + "17810": 0.8027027027, + "17811": 0.8036936937, + "17812": 0.8046846847, + "17813": 0.8056756757, + "17814": 0.8066666667, + "17815": 0.8076576577, + "17816": 0.8086486486, + "17817": 0.8096396396, + "17818": 0.8106306306, + "17819": 0.8116216216, + "17820": 0.8126126126, + "17821": 0.8136036036, + "17822": 0.8145945946, + "17823": 0.8155855856, + "17824": 0.8165765766, + "17825": 0.8175675676, + "17826": 0.8185585586, + "17827": 0.8195495495, + "17828": 0.8205405405, + "17829": 0.8215315315, + "17830": 0.8225225225, + "17831": 0.8235135135, + "17832": 0.8245045045, + "17833": 0.8254954955, + "17834": 0.8264864865, + "17835": 0.8274774775, + "17836": 0.8284684685, + "17837": 0.8294594595, + "17838": 0.8304504505, + "17839": 0.8314414414, + "17840": 0.8324324324, + "17841": 0.8334234234, + "17842": 0.8344144144, + "17843": 0.8354054054, + "17844": 0.8363963964, + "17845": 0.8373873874, + "17846": 0.8383783784, + "17847": 0.8393693694, + "17848": 0.8403603604, + "17849": 0.8413513514, + "17850": 0.8423423423, + "17851": 0.8433333333, + "17852": 0.8443243243, + "17853": 0.8453153153, + "17854": 0.8463063063, + "17855": 0.8472972973, + "17856": 0.8482882883, + "17857": 0.8492792793, + "17858": 0.8502702703, + "17859": 0.8512612613, + "17860": 0.8522522523, + "17861": 0.8532432432, + "17862": 0.8542342342, + "17863": 0.8552252252, + "17864": 0.8562162162, + "17865": 0.8572072072, + "17866": 0.8581981982, + "17867": 0.8591891892, + "17868": 0.8601801802, + "17869": 0.8611711712, + "17870": 0.8621621622, + "17871": 0.8631531532, + "17872": 0.8641441441, + "17873": 0.8651351351, + "17874": 0.8661261261, + "17875": 0.8671171171, + "17876": 0.8681081081, + "17877": 0.8690990991, + "17878": 0.8700900901, + "17879": 0.8710810811, + "17880": 0.8720720721, + "17881": 0.8730630631, + "17882": 0.8740540541, + "17883": 0.875045045, + "17884": 0.876036036, + "17885": 0.877027027, + "17886": 0.878018018, + "17887": 0.879009009, + "17888": 0.88, + "17889": 0.880990991, + "17890": 0.881981982, + "17891": 0.882972973, + "17892": 0.883963964, + "17893": 0.884954955, + "17894": 0.8859459459, + "17895": 0.8869369369, + "17896": 0.8879279279, + "17897": 0.8889189189, + "17898": 0.8899099099, + "17899": 0.8909009009, + "17900": 0.8918918919, + "17901": 0.8928828829, + "17902": 0.8938738739, + "17903": 0.8948648649, + "17904": 0.8958558559, + "17905": 0.8968468468, + "17906": 0.8978378378, + "17907": 0.8988288288, + "17908": 0.8998198198, + "17909": 0.9008108108, + "17910": 0.9018018018, + "17911": 0.9027927928, + "17912": 0.9037837838, + "17913": 0.9047747748, + "17914": 0.9057657658, + "17915": 0.9067567568, + "17916": 0.9077477477, + "17917": 0.9087387387, + "17918": 0.9097297297, + "17919": 0.9107207207, + "17920": 0.9117117117, + "17921": 0.9127027027, + "17922": 0.9136936937, + "17923": 0.9146846847, + "17924": 0.9156756757, + "17925": 0.9166666667, + "17926": 0.9176576577, + "17927": 0.9186486486, + "17928": 0.9196396396, + "17929": 0.9206306306, + "17930": 0.9216216216, + "17931": 0.9226126126, + "17932": 0.9236036036, + "17933": 0.9245945946, + "17934": 0.9255855856, + "17935": 0.9265765766, + "17936": 0.9275675676, + "17937": 0.9285585586, + "17938": 0.9295495495, + "17939": 0.9305405405, + "17940": 0.9315315315, + "17941": 0.9325225225, + "17942": 0.9335135135, + "17943": 0.9345045045, + "17944": 0.9354954955, + "17945": 0.9364864865, + "17946": 0.9374774775, + "17947": 0.9384684685, + "17948": 0.9394594595, + "17949": 0.9404504505, + "17950": 0.9414414414, + "17951": 0.9424324324, + "17952": 0.9434234234, + "17953": 0.9444144144, + "17954": 0.9454054054, + "17955": 0.9463963964, + "17956": 0.9473873874, + "17957": 0.9483783784, + "17958": 0.9493693694, + "17959": 0.9503603604, + "17960": 0.9513513514, + "17961": 0.9523423423, + "17962": 0.9533333333, + "17963": 0.9543243243, + "17964": 0.9553153153, + "17965": 0.9563063063, + "17966": 0.9572972973, + "17967": 0.9582882883, + "17968": 0.9592792793, + "17969": 0.9602702703, + "17970": 0.9612612613, + "17971": 0.9622522523, + "17972": 0.9632432432, + "17973": 0.9642342342, + "17974": 0.9652252252, + "17975": 0.9662162162, + "17976": 0.9672072072, + "17977": 0.9681981982, + "17978": 0.9691891892, + "17979": 0.9701801802, + "17980": 0.9711711712, + "17981": 0.9721621622, + "17982": 0.9731531532, + "17983": 0.9741441441, + "17984": 0.9751351351, + "17985": 0.9761261261, + "17986": 0.9771171171, + "17987": 0.9781081081, + "17988": 0.9790990991, + "17989": 0.9800900901, + "17990": 0.9810810811, + "17991": 0.9820720721, + "17992": 0.9830630631, + "17993": 0.9840540541, + "17994": 0.985045045, + "17995": 0.986036036, + "17996": 0.987027027, + "17997": 0.988018018, + "17998": 0.989009009, + "17999": 0.99, + "18000": 0.0, + "18001": 0.000990991, + "18002": 0.001981982, + "18003": 0.002972973, + "18004": 0.003963964, + "18005": 0.004954955, + "18006": 0.0059459459, + "18007": 0.0069369369, + "18008": 0.0079279279, + "18009": 0.0089189189, + "18010": 0.0099099099, + "18011": 0.0109009009, + "18012": 0.0118918919, + "18013": 0.0128828829, + "18014": 0.0138738739, + "18015": 0.0148648649, + "18016": 0.0158558559, + "18017": 0.0168468468, + "18018": 0.0178378378, + "18019": 0.0188288288, + "18020": 0.0198198198, + "18021": 0.0208108108, + "18022": 0.0218018018, + "18023": 0.0227927928, + "18024": 0.0237837838, + "18025": 0.0247747748, + "18026": 0.0257657658, + "18027": 0.0267567568, + "18028": 0.0277477477, + "18029": 0.0287387387, + "18030": 0.0297297297, + "18031": 0.0307207207, + "18032": 0.0317117117, + "18033": 0.0327027027, + "18034": 0.0336936937, + "18035": 0.0346846847, + "18036": 0.0356756757, + "18037": 0.0366666667, + "18038": 0.0376576577, + "18039": 0.0386486486, + "18040": 0.0396396396, + "18041": 0.0406306306, + "18042": 0.0416216216, + "18043": 0.0426126126, + "18044": 0.0436036036, + "18045": 0.0445945946, + "18046": 0.0455855856, + "18047": 0.0465765766, + "18048": 0.0475675676, + "18049": 0.0485585586, + "18050": 0.0495495495, + "18051": 0.0505405405, + "18052": 0.0515315315, + "18053": 0.0525225225, + "18054": 0.0535135135, + "18055": 0.0545045045, + "18056": 0.0554954955, + "18057": 0.0564864865, + "18058": 0.0574774775, + "18059": 0.0584684685, + "18060": 0.0594594595, + "18061": 0.0604504505, + "18062": 0.0614414414, + "18063": 0.0624324324, + "18064": 0.0634234234, + "18065": 0.0644144144, + "18066": 0.0654054054, + "18067": 0.0663963964, + "18068": 0.0673873874, + "18069": 0.0683783784, + "18070": 0.0693693694, + "18071": 0.0703603604, + "18072": 0.0713513514, + "18073": 0.0723423423, + "18074": 0.0733333333, + "18075": 0.0743243243, + "18076": 0.0753153153, + "18077": 0.0763063063, + "18078": 0.0772972973, + "18079": 0.0782882883, + "18080": 0.0792792793, + "18081": 0.0802702703, + "18082": 0.0812612613, + "18083": 0.0822522523, + "18084": 0.0832432432, + "18085": 0.0842342342, + "18086": 0.0852252252, + "18087": 0.0862162162, + "18088": 0.0872072072, + "18089": 0.0881981982, + "18090": 0.0891891892, + "18091": 0.0901801802, + "18092": 0.0911711712, + "18093": 0.0921621622, + "18094": 0.0931531532, + "18095": 0.0941441441, + "18096": 0.0951351351, + "18097": 0.0961261261, + "18098": 0.0971171171, + "18099": 0.0981081081, + "18100": 0.0990990991, + "18101": 0.1000900901, + "18102": 0.1010810811, + "18103": 0.1020720721, + "18104": 0.1030630631, + "18105": 0.1040540541, + "18106": 0.105045045, + "18107": 0.106036036, + "18108": 0.107027027, + "18109": 0.108018018, + "18110": 0.109009009, + "18111": 0.11, + "18112": 0.110990991, + "18113": 0.111981982, + "18114": 0.112972973, + "18115": 0.113963964, + "18116": 0.114954955, + "18117": 0.1159459459, + "18118": 0.1169369369, + "18119": 0.1179279279, + "18120": 0.1189189189, + "18121": 0.1199099099, + "18122": 0.1209009009, + "18123": 0.1218918919, + "18124": 0.1228828829, + "18125": 0.1238738739, + "18126": 0.1248648649, + "18127": 0.1258558559, + "18128": 0.1268468468, + "18129": 0.1278378378, + "18130": 0.1288288288, + "18131": 0.1298198198, + "18132": 0.1308108108, + "18133": 0.1318018018, + "18134": 0.1327927928, + "18135": 0.1337837838, + "18136": 0.1347747748, + "18137": 0.1357657658, + "18138": 0.1367567568, + "18139": 0.1377477477, + "18140": 0.1387387387, + "18141": 0.1397297297, + "18142": 0.1407207207, + "18143": 0.1417117117, + "18144": 0.1427027027, + "18145": 0.1436936937, + "18146": 0.1446846847, + "18147": 0.1456756757, + "18148": 0.1466666667, + "18149": 0.1476576577, + "18150": 0.1486486486, + "18151": 0.1496396396, + "18152": 0.1506306306, + "18153": 0.1516216216, + "18154": 0.1526126126, + "18155": 0.1536036036, + "18156": 0.1545945946, + "18157": 0.1555855856, + "18158": 0.1565765766, + "18159": 0.1575675676, + "18160": 0.1585585586, + "18161": 0.1595495495, + "18162": 0.1605405405, + "18163": 0.1615315315, + "18164": 0.1625225225, + "18165": 0.1635135135, + "18166": 0.1645045045, + "18167": 0.1654954955, + "18168": 0.1664864865, + "18169": 0.1674774775, + "18170": 0.1684684685, + "18171": 0.1694594595, + "18172": 0.1704504505, + "18173": 0.1714414414, + "18174": 0.1724324324, + "18175": 0.1734234234, + "18176": 0.1744144144, + "18177": 0.1754054054, + "18178": 0.1763963964, + "18179": 0.1773873874, + "18180": 0.1783783784, + "18181": 0.1793693694, + "18182": 0.1803603604, + "18183": 0.1813513514, + "18184": 0.1823423423, + "18185": 0.1833333333, + "18186": 0.1843243243, + "18187": 0.1853153153, + "18188": 0.1863063063, + "18189": 0.1872972973, + "18190": 0.1882882883, + "18191": 0.1892792793, + "18192": 0.1902702703, + "18193": 0.1912612613, + "18194": 0.1922522523, + "18195": 0.1932432432, + "18196": 0.1942342342, + "18197": 0.1952252252, + "18198": 0.1962162162, + "18199": 0.1972072072, + "18200": 0.1981981982, + "18201": 0.1991891892, + "18202": 0.2001801802, + "18203": 0.2011711712, + "18204": 0.2021621622, + "18205": 0.2031531532, + "18206": 0.2041441441, + "18207": 0.2051351351, + "18208": 0.2061261261, + "18209": 0.2071171171, + "18210": 0.2081081081, + "18211": 0.2090990991, + "18212": 0.2100900901, + "18213": 0.2110810811, + "18214": 0.2120720721, + "18215": 0.2130630631, + "18216": 0.2140540541, + "18217": 0.215045045, + "18218": 0.216036036, + "18219": 0.217027027, + "18220": 0.218018018, + "18221": 0.219009009, + "18222": 0.22, + "18223": 0.220990991, + "18224": 0.221981982, + "18225": 0.222972973, + "18226": 0.223963964, + "18227": 0.224954955, + "18228": 0.2259459459, + "18229": 0.2269369369, + "18230": 0.2279279279, + "18231": 0.2289189189, + "18232": 0.2299099099, + "18233": 0.2309009009, + "18234": 0.2318918919, + "18235": 0.2328828829, + "18236": 0.2338738739, + "18237": 0.2348648649, + "18238": 0.2358558559, + "18239": 0.2368468468, + "18240": 0.2378378378, + "18241": 0.2388288288, + "18242": 0.2398198198, + "18243": 0.2408108108, + "18244": 0.2418018018, + "18245": 0.2427927928, + "18246": 0.2437837838, + "18247": 0.2447747748, + "18248": 0.2457657658, + "18249": 0.2467567568, + "18250": 0.2477477477, + "18251": 0.2487387387, + "18252": 0.2497297297, + "18253": 0.2507207207, + "18254": 0.2517117117, + "18255": 0.2527027027, + "18256": 0.2536936937, + "18257": 0.2546846847, + "18258": 0.2556756757, + "18259": 0.2566666667, + "18260": 0.2576576577, + "18261": 0.2586486486, + "18262": 0.2596396396, + "18263": 0.2606306306, + "18264": 0.2616216216, + "18265": 0.2626126126, + "18266": 0.2636036036, + "18267": 0.2645945946, + "18268": 0.2655855856, + "18269": 0.2665765766, + "18270": 0.2675675676, + "18271": 0.2685585586, + "18272": 0.2695495495, + "18273": 0.2705405405, + "18274": 0.2715315315, + "18275": 0.2725225225, + "18276": 0.2735135135, + "18277": 0.2745045045, + "18278": 0.2754954955, + "18279": 0.2764864865, + "18280": 0.2774774775, + "18281": 0.2784684685, + "18282": 0.2794594595, + "18283": 0.2804504505, + "18284": 0.2814414414, + "18285": 0.2824324324, + "18286": 0.2834234234, + "18287": 0.2844144144, + "18288": 0.2854054054, + "18289": 0.2863963964, + "18290": 0.2873873874, + "18291": 0.2883783784, + "18292": 0.2893693694, + "18293": 0.2903603604, + "18294": 0.2913513514, + "18295": 0.2923423423, + "18296": 0.2933333333, + "18297": 0.2943243243, + "18298": 0.2953153153, + "18299": 0.2963063063, + "18300": 0.2972972973, + "18301": 0.2982882883, + "18302": 0.2992792793, + "18303": 0.3002702703, + "18304": 0.3012612613, + "18305": 0.3022522523, + "18306": 0.3032432432, + "18307": 0.3042342342, + "18308": 0.3052252252, + "18309": 0.3062162162, + "18310": 0.3072072072, + "18311": 0.3081981982, + "18312": 0.3091891892, + "18313": 0.3101801802, + "18314": 0.3111711712, + "18315": 0.3121621622, + "18316": 0.3131531532, + "18317": 0.3141441441, + "18318": 0.3151351351, + "18319": 0.3161261261, + "18320": 0.3171171171, + "18321": 0.3181081081, + "18322": 0.3190990991, + "18323": 0.3200900901, + "18324": 0.3210810811, + "18325": 0.3220720721, + "18326": 0.3230630631, + "18327": 0.3240540541, + "18328": 0.325045045, + "18329": 0.326036036, + "18330": 0.327027027, + "18331": 0.328018018, + "18332": 0.329009009, + "18333": 0.33, + "18334": 0.330990991, + "18335": 0.331981982, + "18336": 0.332972973, + "18337": 0.333963964, + "18338": 0.334954955, + "18339": 0.3359459459, + "18340": 0.3369369369, + "18341": 0.3379279279, + "18342": 0.3389189189, + "18343": 0.3399099099, + "18344": 0.3409009009, + "18345": 0.3418918919, + "18346": 0.3428828829, + "18347": 0.3438738739, + "18348": 0.3448648649, + "18349": 0.3458558559, + "18350": 0.3468468468, + "18351": 0.3478378378, + "18352": 0.3488288288, + "18353": 0.3498198198, + "18354": 0.3508108108, + "18355": 0.3518018018, + "18356": 0.3527927928, + "18357": 0.3537837838, + "18358": 0.3547747748, + "18359": 0.3557657658, + "18360": 0.3567567568, + "18361": 0.3577477477, + "18362": 0.3587387387, + "18363": 0.3597297297, + "18364": 0.3607207207, + "18365": 0.3617117117, + "18366": 0.3627027027, + "18367": 0.3636936937, + "18368": 0.3646846847, + "18369": 0.3656756757, + "18370": 0.3666666667, + "18371": 0.3676576577, + "18372": 0.3686486486, + "18373": 0.3696396396, + "18374": 0.3706306306, + "18375": 0.3716216216, + "18376": 0.3726126126, + "18377": 0.3736036036, + "18378": 0.3745945946, + "18379": 0.3755855856, + "18380": 0.3765765766, + "18381": 0.3775675676, + "18382": 0.3785585586, + "18383": 0.3795495495, + "18384": 0.3805405405, + "18385": 0.3815315315, + "18386": 0.3825225225, + "18387": 0.3835135135, + "18388": 0.3845045045, + "18389": 0.3854954955, + "18390": 0.3864864865, + "18391": 0.3874774775, + "18392": 0.3884684685, + "18393": 0.3894594595, + "18394": 0.3904504505, + "18395": 0.3914414414, + "18396": 0.3924324324, + "18397": 0.3934234234, + "18398": 0.3944144144, + "18399": 0.3954054054, + "18400": 0.3963963964, + "18401": 0.3973873874, + "18402": 0.3983783784, + "18403": 0.3993693694, + "18404": 0.4003603604, + "18405": 0.4013513514, + "18406": 0.4023423423, + "18407": 0.4033333333, + "18408": 0.4043243243, + "18409": 0.4053153153, + "18410": 0.4063063063, + "18411": 0.4072972973, + "18412": 0.4082882883, + "18413": 0.4092792793, + "18414": 0.4102702703, + "18415": 0.4112612613, + "18416": 0.4122522523, + "18417": 0.4132432432, + "18418": 0.4142342342, + "18419": 0.4152252252, + "18420": 0.4162162162, + "18421": 0.4172072072, + "18422": 0.4181981982, + "18423": 0.4191891892, + "18424": 0.4201801802, + "18425": 0.4211711712, + "18426": 0.4221621622, + "18427": 0.4231531532, + "18428": 0.4241441441, + "18429": 0.4251351351, + "18430": 0.4261261261, + "18431": 0.4271171171, + "18432": 0.4281081081, + "18433": 0.4290990991, + "18434": 0.4300900901, + "18435": 0.4310810811, + "18436": 0.4320720721, + "18437": 0.4330630631, + "18438": 0.4340540541, + "18439": 0.435045045, + "18440": 0.436036036, + "18441": 0.437027027, + "18442": 0.438018018, + "18443": 0.439009009, + "18444": 0.44, + "18445": 0.440990991, + "18446": 0.441981982, + "18447": 0.442972973, + "18448": 0.443963964, + "18449": 0.444954955, + "18450": 0.4459459459, + "18451": 0.4469369369, + "18452": 0.4479279279, + "18453": 0.4489189189, + "18454": 0.4499099099, + "18455": 0.4509009009, + "18456": 0.4518918919, + "18457": 0.4528828829, + "18458": 0.4538738739, + "18459": 0.4548648649, + "18460": 0.4558558559, + "18461": 0.4568468468, + "18462": 0.4578378378, + "18463": 0.4588288288, + "18464": 0.4598198198, + "18465": 0.4608108108, + "18466": 0.4618018018, + "18467": 0.4627927928, + "18468": 0.4637837838, + "18469": 0.4647747748, + "18470": 0.4657657658, + "18471": 0.4667567568, + "18472": 0.4677477477, + "18473": 0.4687387387, + "18474": 0.4697297297, + "18475": 0.4707207207, + "18476": 0.4717117117, + "18477": 0.4727027027, + "18478": 0.4736936937, + "18479": 0.4746846847, + "18480": 0.4756756757, + "18481": 0.4766666667, + "18482": 0.4776576577, + "18483": 0.4786486486, + "18484": 0.4796396396, + "18485": 0.4806306306, + "18486": 0.4816216216, + "18487": 0.4826126126, + "18488": 0.4836036036, + "18489": 0.4845945946, + "18490": 0.4855855856, + "18491": 0.4865765766, + "18492": 0.4875675676, + "18493": 0.4885585586, + "18494": 0.4895495495, + "18495": 0.4905405405, + "18496": 0.4915315315, + "18497": 0.4925225225, + "18498": 0.4935135135, + "18499": 0.4945045045, + "18500": 0.4954954955, + "18501": 0.4964864865, + "18502": 0.4974774775, + "18503": 0.4984684685, + "18504": 0.4994594595, + "18505": 0.5004504505, + "18506": 0.5014414414, + "18507": 0.5024324324, + "18508": 0.5034234234, + "18509": 0.5044144144, + "18510": 0.5054054054, + "18511": 0.5063963964, + "18512": 0.5073873874, + "18513": 0.5083783784, + "18514": 0.5093693694, + "18515": 0.5103603604, + "18516": 0.5113513514, + "18517": 0.5123423423, + "18518": 0.5133333333, + "18519": 0.5143243243, + "18520": 0.5153153153, + "18521": 0.5163063063, + "18522": 0.5172972973, + "18523": 0.5182882883, + "18524": 0.5192792793, + "18525": 0.5202702703, + "18526": 0.5212612613, + "18527": 0.5222522523, + "18528": 0.5232432432, + "18529": 0.5242342342, + "18530": 0.5252252252, + "18531": 0.5262162162, + "18532": 0.5272072072, + "18533": 0.5281981982, + "18534": 0.5291891892, + "18535": 0.5301801802, + "18536": 0.5311711712, + "18537": 0.5321621622, + "18538": 0.5331531532, + "18539": 0.5341441441, + "18540": 0.5351351351, + "18541": 0.5361261261, + "18542": 0.5371171171, + "18543": 0.5381081081, + "18544": 0.5390990991, + "18545": 0.5400900901, + "18546": 0.5410810811, + "18547": 0.5420720721, + "18548": 0.5430630631, + "18549": 0.5440540541, + "18550": 0.545045045, + "18551": 0.546036036, + "18552": 0.547027027, + "18553": 0.548018018, + "18554": 0.549009009, + "18555": 0.55, + "18556": 0.550990991, + "18557": 0.551981982, + "18558": 0.552972973, + "18559": 0.553963964, + "18560": 0.554954955, + "18561": 0.5559459459, + "18562": 0.5569369369, + "18563": 0.5579279279, + "18564": 0.5589189189, + "18565": 0.5599099099, + "18566": 0.5609009009, + "18567": 0.5618918919, + "18568": 0.5628828829, + "18569": 0.5638738739, + "18570": 0.5648648649, + "18571": 0.5658558559, + "18572": 0.5668468468, + "18573": 0.5678378378, + "18574": 0.5688288288, + "18575": 0.5698198198, + "18576": 0.5708108108, + "18577": 0.5718018018, + "18578": 0.5727927928, + "18579": 0.5737837838, + "18580": 0.5747747748, + "18581": 0.5757657658, + "18582": 0.5767567568, + "18583": 0.5777477477, + "18584": 0.5787387387, + "18585": 0.5797297297, + "18586": 0.5807207207, + "18587": 0.5817117117, + "18588": 0.5827027027, + "18589": 0.5836936937, + "18590": 0.5846846847, + "18591": 0.5856756757, + "18592": 0.5866666667, + "18593": 0.5876576577, + "18594": 0.5886486486, + "18595": 0.5896396396, + "18596": 0.5906306306, + "18597": 0.5916216216, + "18598": 0.5926126126, + "18599": 0.5936036036, + "18600": 0.5945945946, + "18601": 0.5955855856, + "18602": 0.5965765766, + "18603": 0.5975675676, + "18604": 0.5985585586, + "18605": 0.5995495495, + "18606": 0.6005405405, + "18607": 0.6015315315, + "18608": 0.6025225225, + "18609": 0.6035135135, + "18610": 0.6045045045, + "18611": 0.6054954955, + "18612": 0.6064864865, + "18613": 0.6074774775, + "18614": 0.6084684685, + "18615": 0.6094594595, + "18616": 0.6104504505, + "18617": 0.6114414414, + "18618": 0.6124324324, + "18619": 0.6134234234, + "18620": 0.6144144144, + "18621": 0.6154054054, + "18622": 0.6163963964, + "18623": 0.6173873874, + "18624": 0.6183783784, + "18625": 0.6193693694, + "18626": 0.6203603604, + "18627": 0.6213513514, + "18628": 0.6223423423, + "18629": 0.6233333333, + "18630": 0.6243243243, + "18631": 0.6253153153, + "18632": 0.6263063063, + "18633": 0.6272972973, + "18634": 0.6282882883, + "18635": 0.6292792793, + "18636": 0.6302702703, + "18637": 0.6312612613, + "18638": 0.6322522523, + "18639": 0.6332432432, + "18640": 0.6342342342, + "18641": 0.6352252252, + "18642": 0.6362162162, + "18643": 0.6372072072, + "18644": 0.6381981982, + "18645": 0.6391891892, + "18646": 0.6401801802, + "18647": 0.6411711712, + "18648": 0.6421621622, + "18649": 0.6431531532, + "18650": 0.6441441441, + "18651": 0.6451351351, + "18652": 0.6461261261, + "18653": 0.6471171171, + "18654": 0.6481081081, + "18655": 0.6490990991, + "18656": 0.6500900901, + "18657": 0.6510810811, + "18658": 0.6520720721, + "18659": 0.6530630631, + "18660": 0.6540540541, + "18661": 0.655045045, + "18662": 0.656036036, + "18663": 0.657027027, + "18664": 0.658018018, + "18665": 0.659009009, + "18666": 0.66, + "18667": 0.660990991, + "18668": 0.661981982, + "18669": 0.662972973, + "18670": 0.663963964, + "18671": 0.664954955, + "18672": 0.6659459459, + "18673": 0.6669369369, + "18674": 0.6679279279, + "18675": 0.6689189189, + "18676": 0.6699099099, + "18677": 0.6709009009, + "18678": 0.6718918919, + "18679": 0.6728828829, + "18680": 0.6738738739, + "18681": 0.6748648649, + "18682": 0.6758558559, + "18683": 0.6768468468, + "18684": 0.6778378378, + "18685": 0.6788288288, + "18686": 0.6798198198, + "18687": 0.6808108108, + "18688": 0.6818018018, + "18689": 0.6827927928, + "18690": 0.6837837838, + "18691": 0.6847747748, + "18692": 0.6857657658, + "18693": 0.6867567568, + "18694": 0.6877477477, + "18695": 0.6887387387, + "18696": 0.6897297297, + "18697": 0.6907207207, + "18698": 0.6917117117, + "18699": 0.6927027027, + "18700": 0.6936936937, + "18701": 0.6946846847, + "18702": 0.6956756757, + "18703": 0.6966666667, + "18704": 0.6976576577, + "18705": 0.6986486486, + "18706": 0.6996396396, + "18707": 0.7006306306, + "18708": 0.7016216216, + "18709": 0.7026126126, + "18710": 0.7036036036, + "18711": 0.7045945946, + "18712": 0.7055855856, + "18713": 0.7065765766, + "18714": 0.7075675676, + "18715": 0.7085585586, + "18716": 0.7095495495, + "18717": 0.7105405405, + "18718": 0.7115315315, + "18719": 0.7125225225, + "18720": 0.7135135135, + "18721": 0.7145045045, + "18722": 0.7154954955, + "18723": 0.7164864865, + "18724": 0.7174774775, + "18725": 0.7184684685, + "18726": 0.7194594595, + "18727": 0.7204504505, + "18728": 0.7214414414, + "18729": 0.7224324324, + "18730": 0.7234234234, + "18731": 0.7244144144, + "18732": 0.7254054054, + "18733": 0.7263963964, + "18734": 0.7273873874, + "18735": 0.7283783784, + "18736": 0.7293693694, + "18737": 0.7303603604, + "18738": 0.7313513514, + "18739": 0.7323423423, + "18740": 0.7333333333, + "18741": 0.7343243243, + "18742": 0.7353153153, + "18743": 0.7363063063, + "18744": 0.7372972973, + "18745": 0.7382882883, + "18746": 0.7392792793, + "18747": 0.7402702703, + "18748": 0.7412612613, + "18749": 0.7422522523, + "18750": 0.7432432432, + "18751": 0.7442342342, + "18752": 0.7452252252, + "18753": 0.7462162162, + "18754": 0.7472072072, + "18755": 0.7481981982, + "18756": 0.7491891892, + "18757": 0.7501801802, + "18758": 0.7511711712, + "18759": 0.7521621622, + "18760": 0.7531531532, + "18761": 0.7541441441, + "18762": 0.7551351351, + "18763": 0.7561261261, + "18764": 0.7571171171, + "18765": 0.7581081081, + "18766": 0.7590990991, + "18767": 0.7600900901, + "18768": 0.7610810811, + "18769": 0.7620720721, + "18770": 0.7630630631, + "18771": 0.7640540541, + "18772": 0.765045045, + "18773": 0.766036036, + "18774": 0.767027027, + "18775": 0.768018018, + "18776": 0.769009009, + "18777": 0.77, + "18778": 0.770990991, + "18779": 0.771981982, + "18780": 0.772972973, + "18781": 0.773963964, + "18782": 0.774954955, + "18783": 0.7759459459, + "18784": 0.7769369369, + "18785": 0.7779279279, + "18786": 0.7789189189, + "18787": 0.7799099099, + "18788": 0.7809009009, + "18789": 0.7818918919, + "18790": 0.7828828829, + "18791": 0.7838738739, + "18792": 0.7848648649, + "18793": 0.7858558559, + "18794": 0.7868468468, + "18795": 0.7878378378, + "18796": 0.7888288288, + "18797": 0.7898198198, + "18798": 0.7908108108, + "18799": 0.7918018018, + "18800": 0.7927927928, + "18801": 0.7937837838, + "18802": 0.7947747748, + "18803": 0.7957657658, + "18804": 0.7967567568, + "18805": 0.7977477477, + "18806": 0.7987387387, + "18807": 0.7997297297, + "18808": 0.8007207207, + "18809": 0.8017117117, + "18810": 0.8027027027, + "18811": 0.8036936937, + "18812": 0.8046846847, + "18813": 0.8056756757, + "18814": 0.8066666667, + "18815": 0.8076576577, + "18816": 0.8086486486, + "18817": 0.8096396396, + "18818": 0.8106306306, + "18819": 0.8116216216, + "18820": 0.8126126126, + "18821": 0.8136036036, + "18822": 0.8145945946, + "18823": 0.8155855856, + "18824": 0.8165765766, + "18825": 0.8175675676, + "18826": 0.8185585586, + "18827": 0.8195495495, + "18828": 0.8205405405, + "18829": 0.8215315315, + "18830": 0.8225225225, + "18831": 0.8235135135, + "18832": 0.8245045045, + "18833": 0.8254954955, + "18834": 0.8264864865, + "18835": 0.8274774775, + "18836": 0.8284684685, + "18837": 0.8294594595, + "18838": 0.8304504505, + "18839": 0.8314414414, + "18840": 0.8324324324, + "18841": 0.8334234234, + "18842": 0.8344144144, + "18843": 0.8354054054, + "18844": 0.8363963964, + "18845": 0.8373873874, + "18846": 0.8383783784, + "18847": 0.8393693694, + "18848": 0.8403603604, + "18849": 0.8413513514, + "18850": 0.8423423423, + "18851": 0.8433333333, + "18852": 0.8443243243, + "18853": 0.8453153153, + "18854": 0.8463063063, + "18855": 0.8472972973, + "18856": 0.8482882883, + "18857": 0.8492792793, + "18858": 0.8502702703, + "18859": 0.8512612613, + "18860": 0.8522522523, + "18861": 0.8532432432, + "18862": 0.8542342342, + "18863": 0.8552252252, + "18864": 0.8562162162, + "18865": 0.8572072072, + "18866": 0.8581981982, + "18867": 0.8591891892, + "18868": 0.8601801802, + "18869": 0.8611711712, + "18870": 0.8621621622, + "18871": 0.8631531532, + "18872": 0.8641441441, + "18873": 0.8651351351, + "18874": 0.8661261261, + "18875": 0.8671171171, + "18876": 0.8681081081, + "18877": 0.8690990991, + "18878": 0.8700900901, + "18879": 0.8710810811, + "18880": 0.8720720721, + "18881": 0.8730630631, + "18882": 0.8740540541, + "18883": 0.875045045, + "18884": 0.876036036, + "18885": 0.877027027, + "18886": 0.878018018, + "18887": 0.879009009, + "18888": 0.88, + "18889": 0.880990991, + "18890": 0.881981982, + "18891": 0.882972973, + "18892": 0.883963964, + "18893": 0.884954955, + "18894": 0.8859459459, + "18895": 0.8869369369, + "18896": 0.8879279279, + "18897": 0.8889189189, + "18898": 0.8899099099, + "18899": 0.8909009009, + "18900": 0.8918918919, + "18901": 0.8928828829, + "18902": 0.8938738739, + "18903": 0.8948648649, + "18904": 0.8958558559, + "18905": 0.8968468468, + "18906": 0.8978378378, + "18907": 0.8988288288, + "18908": 0.8998198198, + "18909": 0.9008108108, + "18910": 0.9018018018, + "18911": 0.9027927928, + "18912": 0.9037837838, + "18913": 0.9047747748, + "18914": 0.9057657658, + "18915": 0.9067567568, + "18916": 0.9077477477, + "18917": 0.9087387387, + "18918": 0.9097297297, + "18919": 0.9107207207, + "18920": 0.9117117117, + "18921": 0.9127027027, + "18922": 0.9136936937, + "18923": 0.9146846847, + "18924": 0.9156756757, + "18925": 0.9166666667, + "18926": 0.9176576577, + "18927": 0.9186486486, + "18928": 0.9196396396, + "18929": 0.9206306306, + "18930": 0.9216216216, + "18931": 0.9226126126, + "18932": 0.9236036036, + "18933": 0.9245945946, + "18934": 0.9255855856, + "18935": 0.9265765766, + "18936": 0.9275675676, + "18937": 0.9285585586, + "18938": 0.9295495495, + "18939": 0.9305405405, + "18940": 0.9315315315, + "18941": 0.9325225225, + "18942": 0.9335135135, + "18943": 0.9345045045, + "18944": 0.9354954955, + "18945": 0.9364864865, + "18946": 0.9374774775, + "18947": 0.9384684685, + "18948": 0.9394594595, + "18949": 0.9404504505, + "18950": 0.9414414414, + "18951": 0.9424324324, + "18952": 0.9434234234, + "18953": 0.9444144144, + "18954": 0.9454054054, + "18955": 0.9463963964, + "18956": 0.9473873874, + "18957": 0.9483783784, + "18958": 0.9493693694, + "18959": 0.9503603604, + "18960": 0.9513513514, + "18961": 0.9523423423, + "18962": 0.9533333333, + "18963": 0.9543243243, + "18964": 0.9553153153, + "18965": 0.9563063063, + "18966": 0.9572972973, + "18967": 0.9582882883, + "18968": 0.9592792793, + "18969": 0.9602702703, + "18970": 0.9612612613, + "18971": 0.9622522523, + "18972": 0.9632432432, + "18973": 0.9642342342, + "18974": 0.9652252252, + "18975": 0.9662162162, + "18976": 0.9672072072, + "18977": 0.9681981982, + "18978": 0.9691891892, + "18979": 0.9701801802, + "18980": 0.9711711712, + "18981": 0.9721621622, + "18982": 0.9731531532, + "18983": 0.9741441441, + "18984": 0.9751351351, + "18985": 0.9761261261, + "18986": 0.9771171171, + "18987": 0.9781081081, + "18988": 0.9790990991, + "18989": 0.9800900901, + "18990": 0.9810810811, + "18991": 0.9820720721, + "18992": 0.9830630631, + "18993": 0.9840540541, + "18994": 0.985045045, + "18995": 0.986036036, + "18996": 0.987027027, + "18997": 0.988018018, + "18998": 0.989009009, + "18999": 0.99, + "19000": 0.0, + "19001": 0.000990991, + "19002": 0.001981982, + "19003": 0.002972973, + "19004": 0.003963964, + "19005": 0.004954955, + "19006": 0.0059459459, + "19007": 0.0069369369, + "19008": 0.0079279279, + "19009": 0.0089189189, + "19010": 0.0099099099, + "19011": 0.0109009009, + "19012": 0.0118918919, + "19013": 0.0128828829, + "19014": 0.0138738739, + "19015": 0.0148648649, + "19016": 0.0158558559, + "19017": 0.0168468468, + "19018": 0.0178378378, + "19019": 0.0188288288, + "19020": 0.0198198198, + "19021": 0.0208108108, + "19022": 0.0218018018, + "19023": 0.0227927928, + "19024": 0.0237837838, + "19025": 0.0247747748, + "19026": 0.0257657658, + "19027": 0.0267567568, + "19028": 0.0277477477, + "19029": 0.0287387387, + "19030": 0.0297297297, + "19031": 0.0307207207, + "19032": 0.0317117117, + "19033": 0.0327027027, + "19034": 0.0336936937, + "19035": 0.0346846847, + "19036": 0.0356756757, + "19037": 0.0366666667, + "19038": 0.0376576577, + "19039": 0.0386486486, + "19040": 0.0396396396, + "19041": 0.0406306306, + "19042": 0.0416216216, + "19043": 0.0426126126, + "19044": 0.0436036036, + "19045": 0.0445945946, + "19046": 0.0455855856, + "19047": 0.0465765766, + "19048": 0.0475675676, + "19049": 0.0485585586, + "19050": 0.0495495495, + "19051": 0.0505405405, + "19052": 0.0515315315, + "19053": 0.0525225225, + "19054": 0.0535135135, + "19055": 0.0545045045, + "19056": 0.0554954955, + "19057": 0.0564864865, + "19058": 0.0574774775, + "19059": 0.0584684685, + "19060": 0.0594594595, + "19061": 0.0604504505, + "19062": 0.0614414414, + "19063": 0.0624324324, + "19064": 0.0634234234, + "19065": 0.0644144144, + "19066": 0.0654054054, + "19067": 0.0663963964, + "19068": 0.0673873874, + "19069": 0.0683783784, + "19070": 0.0693693694, + "19071": 0.0703603604, + "19072": 0.0713513514, + "19073": 0.0723423423, + "19074": 0.0733333333, + "19075": 0.0743243243, + "19076": 0.0753153153, + "19077": 0.0763063063, + "19078": 0.0772972973, + "19079": 0.0782882883, + "19080": 0.0792792793, + "19081": 0.0802702703, + "19082": 0.0812612613, + "19083": 0.0822522523, + "19084": 0.0832432432, + "19085": 0.0842342342, + "19086": 0.0852252252, + "19087": 0.0862162162, + "19088": 0.0872072072, + "19089": 0.0881981982, + "19090": 0.0891891892, + "19091": 0.0901801802, + "19092": 0.0911711712, + "19093": 0.0921621622, + "19094": 0.0931531532, + "19095": 0.0941441441, + "19096": 0.0951351351, + "19097": 0.0961261261, + "19098": 0.0971171171, + "19099": 0.0981081081, + "19100": 0.0990990991, + "19101": 0.1000900901, + "19102": 0.1010810811, + "19103": 0.1020720721, + "19104": 0.1030630631, + "19105": 0.1040540541, + "19106": 0.105045045, + "19107": 0.106036036, + "19108": 0.107027027, + "19109": 0.108018018, + "19110": 0.109009009, + "19111": 0.11, + "19112": 0.110990991, + "19113": 0.111981982, + "19114": 0.112972973, + "19115": 0.113963964, + "19116": 0.114954955, + "19117": 0.1159459459, + "19118": 0.1169369369, + "19119": 0.1179279279, + "19120": 0.1189189189, + "19121": 0.1199099099, + "19122": 0.1209009009, + "19123": 0.1218918919, + "19124": 0.1228828829, + "19125": 0.1238738739, + "19126": 0.1248648649, + "19127": 0.1258558559, + "19128": 0.1268468468, + "19129": 0.1278378378, + "19130": 0.1288288288, + "19131": 0.1298198198, + "19132": 0.1308108108, + "19133": 0.1318018018, + "19134": 0.1327927928, + "19135": 0.1337837838, + "19136": 0.1347747748, + "19137": 0.1357657658, + "19138": 0.1367567568, + "19139": 0.1377477477, + "19140": 0.1387387387, + "19141": 0.1397297297, + "19142": 0.1407207207, + "19143": 0.1417117117, + "19144": 0.1427027027, + "19145": 0.1436936937, + "19146": 0.1446846847, + "19147": 0.1456756757, + "19148": 0.1466666667, + "19149": 0.1476576577, + "19150": 0.1486486486, + "19151": 0.1496396396, + "19152": 0.1506306306, + "19153": 0.1516216216, + "19154": 0.1526126126, + "19155": 0.1536036036, + "19156": 0.1545945946, + "19157": 0.1555855856, + "19158": 0.1565765766, + "19159": 0.1575675676, + "19160": 0.1585585586, + "19161": 0.1595495495, + "19162": 0.1605405405, + "19163": 0.1615315315, + "19164": 0.1625225225, + "19165": 0.1635135135, + "19166": 0.1645045045, + "19167": 0.1654954955, + "19168": 0.1664864865, + "19169": 0.1674774775, + "19170": 0.1684684685, + "19171": 0.1694594595, + "19172": 0.1704504505, + "19173": 0.1714414414, + "19174": 0.1724324324, + "19175": 0.1734234234, + "19176": 0.1744144144, + "19177": 0.1754054054, + "19178": 0.1763963964, + "19179": 0.1773873874, + "19180": 0.1783783784, + "19181": 0.1793693694, + "19182": 0.1803603604, + "19183": 0.1813513514, + "19184": 0.1823423423, + "19185": 0.1833333333, + "19186": 0.1843243243, + "19187": 0.1853153153, + "19188": 0.1863063063, + "19189": 0.1872972973, + "19190": 0.1882882883, + "19191": 0.1892792793, + "19192": 0.1902702703, + "19193": 0.1912612613, + "19194": 0.1922522523, + "19195": 0.1932432432, + "19196": 0.1942342342, + "19197": 0.1952252252, + "19198": 0.1962162162, + "19199": 0.1972072072, + "19200": 0.1981981982, + "19201": 0.1991891892, + "19202": 0.2001801802, + "19203": 0.2011711712, + "19204": 0.2021621622, + "19205": 0.2031531532, + "19206": 0.2041441441, + "19207": 0.2051351351, + "19208": 0.2061261261, + "19209": 0.2071171171, + "19210": 0.2081081081, + "19211": 0.2090990991, + "19212": 0.2100900901, + "19213": 0.2110810811, + "19214": 0.2120720721, + "19215": 0.2130630631, + "19216": 0.2140540541, + "19217": 0.215045045, + "19218": 0.216036036, + "19219": 0.217027027, + "19220": 0.218018018, + "19221": 0.219009009, + "19222": 0.22, + "19223": 0.220990991, + "19224": 0.221981982, + "19225": 0.222972973, + "19226": 0.223963964, + "19227": 0.224954955, + "19228": 0.2259459459, + "19229": 0.2269369369, + "19230": 0.2279279279, + "19231": 0.2289189189, + "19232": 0.2299099099, + "19233": 0.2309009009, + "19234": 0.2318918919, + "19235": 0.2328828829, + "19236": 0.2338738739, + "19237": 0.2348648649, + "19238": 0.2358558559, + "19239": 0.2368468468, + "19240": 0.2378378378, + "19241": 0.2388288288, + "19242": 0.2398198198, + "19243": 0.2408108108, + "19244": 0.2418018018, + "19245": 0.2427927928, + "19246": 0.2437837838, + "19247": 0.2447747748, + "19248": 0.2457657658, + "19249": 0.2467567568, + "19250": 0.2477477477, + "19251": 0.2487387387, + "19252": 0.2497297297, + "19253": 0.2507207207, + "19254": 0.2517117117, + "19255": 0.2527027027, + "19256": 0.2536936937, + "19257": 0.2546846847, + "19258": 0.2556756757, + "19259": 0.2566666667, + "19260": 0.2576576577, + "19261": 0.2586486486, + "19262": 0.2596396396, + "19263": 0.2606306306, + "19264": 0.2616216216, + "19265": 0.2626126126, + "19266": 0.2636036036, + "19267": 0.2645945946, + "19268": 0.2655855856, + "19269": 0.2665765766, + "19270": 0.2675675676, + "19271": 0.2685585586, + "19272": 0.2695495495, + "19273": 0.2705405405, + "19274": 0.2715315315, + "19275": 0.2725225225, + "19276": 0.2735135135, + "19277": 0.2745045045, + "19278": 0.2754954955, + "19279": 0.2764864865, + "19280": 0.2774774775, + "19281": 0.2784684685, + "19282": 0.2794594595, + "19283": 0.2804504505, + "19284": 0.2814414414, + "19285": 0.2824324324, + "19286": 0.2834234234, + "19287": 0.2844144144, + "19288": 0.2854054054, + "19289": 0.2863963964, + "19290": 0.2873873874, + "19291": 0.2883783784, + "19292": 0.2893693694, + "19293": 0.2903603604, + "19294": 0.2913513514, + "19295": 0.2923423423, + "19296": 0.2933333333, + "19297": 0.2943243243, + "19298": 0.2953153153, + "19299": 0.2963063063, + "19300": 0.2972972973, + "19301": 0.2982882883, + "19302": 0.2992792793, + "19303": 0.3002702703, + "19304": 0.3012612613, + "19305": 0.3022522523, + "19306": 0.3032432432, + "19307": 0.3042342342, + "19308": 0.3052252252, + "19309": 0.3062162162, + "19310": 0.3072072072, + "19311": 0.3081981982, + "19312": 0.3091891892, + "19313": 0.3101801802, + "19314": 0.3111711712, + "19315": 0.3121621622, + "19316": 0.3131531532, + "19317": 0.3141441441, + "19318": 0.3151351351, + "19319": 0.3161261261, + "19320": 0.3171171171, + "19321": 0.3181081081, + "19322": 0.3190990991, + "19323": 0.3200900901, + "19324": 0.3210810811, + "19325": 0.3220720721, + "19326": 0.3230630631, + "19327": 0.3240540541, + "19328": 0.325045045, + "19329": 0.326036036, + "19330": 0.327027027, + "19331": 0.328018018, + "19332": 0.329009009, + "19333": 0.33, + "19334": 0.330990991, + "19335": 0.331981982, + "19336": 0.332972973, + "19337": 0.333963964, + "19338": 0.334954955, + "19339": 0.3359459459, + "19340": 0.3369369369, + "19341": 0.3379279279, + "19342": 0.3389189189, + "19343": 0.3399099099, + "19344": 0.3409009009, + "19345": 0.3418918919, + "19346": 0.3428828829, + "19347": 0.3438738739, + "19348": 0.3448648649, + "19349": 0.3458558559, + "19350": 0.3468468468, + "19351": 0.3478378378, + "19352": 0.3488288288, + "19353": 0.3498198198, + "19354": 0.3508108108, + "19355": 0.3518018018, + "19356": 0.3527927928, + "19357": 0.3537837838, + "19358": 0.3547747748, + "19359": 0.3557657658, + "19360": 0.3567567568, + "19361": 0.3577477477, + "19362": 0.3587387387, + "19363": 0.3597297297, + "19364": 0.3607207207, + "19365": 0.3617117117, + "19366": 0.3627027027, + "19367": 0.3636936937, + "19368": 0.3646846847, + "19369": 0.3656756757, + "19370": 0.3666666667, + "19371": 0.3676576577, + "19372": 0.3686486486, + "19373": 0.3696396396, + "19374": 0.3706306306, + "19375": 0.3716216216, + "19376": 0.3726126126, + "19377": 0.3736036036, + "19378": 0.3745945946, + "19379": 0.3755855856, + "19380": 0.3765765766, + "19381": 0.3775675676, + "19382": 0.3785585586, + "19383": 0.3795495495, + "19384": 0.3805405405, + "19385": 0.3815315315, + "19386": 0.3825225225, + "19387": 0.3835135135, + "19388": 0.3845045045, + "19389": 0.3854954955, + "19390": 0.3864864865, + "19391": 0.3874774775, + "19392": 0.3884684685, + "19393": 0.3894594595, + "19394": 0.3904504505, + "19395": 0.3914414414, + "19396": 0.3924324324, + "19397": 0.3934234234, + "19398": 0.3944144144, + "19399": 0.3954054054, + "19400": 0.3963963964, + "19401": 0.3973873874, + "19402": 0.3983783784, + "19403": 0.3993693694, + "19404": 0.4003603604, + "19405": 0.4013513514, + "19406": 0.4023423423, + "19407": 0.4033333333, + "19408": 0.4043243243, + "19409": 0.4053153153, + "19410": 0.4063063063, + "19411": 0.4072972973, + "19412": 0.4082882883, + "19413": 0.4092792793, + "19414": 0.4102702703, + "19415": 0.4112612613, + "19416": 0.4122522523, + "19417": 0.4132432432, + "19418": 0.4142342342, + "19419": 0.4152252252, + "19420": 0.4162162162, + "19421": 0.4172072072, + "19422": 0.4181981982, + "19423": 0.4191891892, + "19424": 0.4201801802, + "19425": 0.4211711712, + "19426": 0.4221621622, + "19427": 0.4231531532, + "19428": 0.4241441441, + "19429": 0.4251351351, + "19430": 0.4261261261, + "19431": 0.4271171171, + "19432": 0.4281081081, + "19433": 0.4290990991, + "19434": 0.4300900901, + "19435": 0.4310810811, + "19436": 0.4320720721, + "19437": 0.4330630631, + "19438": 0.4340540541, + "19439": 0.435045045, + "19440": 0.436036036, + "19441": 0.437027027, + "19442": 0.438018018, + "19443": 0.439009009, + "19444": 0.44, + "19445": 0.440990991, + "19446": 0.441981982, + "19447": 0.442972973, + "19448": 0.443963964, + "19449": 0.444954955, + "19450": 0.4459459459, + "19451": 0.4469369369, + "19452": 0.4479279279, + "19453": 0.4489189189, + "19454": 0.4499099099, + "19455": 0.4509009009, + "19456": 0.4518918919, + "19457": 0.4528828829, + "19458": 0.4538738739, + "19459": 0.4548648649, + "19460": 0.4558558559, + "19461": 0.4568468468, + "19462": 0.4578378378, + "19463": 0.4588288288, + "19464": 0.4598198198, + "19465": 0.4608108108, + "19466": 0.4618018018, + "19467": 0.4627927928, + "19468": 0.4637837838, + "19469": 0.4647747748, + "19470": 0.4657657658, + "19471": 0.4667567568, + "19472": 0.4677477477, + "19473": 0.4687387387, + "19474": 0.4697297297, + "19475": 0.4707207207, + "19476": 0.4717117117, + "19477": 0.4727027027, + "19478": 0.4736936937, + "19479": 0.4746846847, + "19480": 0.4756756757, + "19481": 0.4766666667, + "19482": 0.4776576577, + "19483": 0.4786486486, + "19484": 0.4796396396, + "19485": 0.4806306306, + "19486": 0.4816216216, + "19487": 0.4826126126, + "19488": 0.4836036036, + "19489": 0.4845945946, + "19490": 0.4855855856, + "19491": 0.4865765766, + "19492": 0.4875675676, + "19493": 0.4885585586, + "19494": 0.4895495495, + "19495": 0.4905405405, + "19496": 0.4915315315, + "19497": 0.4925225225, + "19498": 0.4935135135, + "19499": 0.4945045045, + "19500": 0.4954954955, + "19501": 0.4964864865, + "19502": 0.4974774775, + "19503": 0.4984684685, + "19504": 0.4994594595, + "19505": 0.5004504505, + "19506": 0.5014414414, + "19507": 0.5024324324, + "19508": 0.5034234234, + "19509": 0.5044144144, + "19510": 0.5054054054, + "19511": 0.5063963964, + "19512": 0.5073873874, + "19513": 0.5083783784, + "19514": 0.5093693694, + "19515": 0.5103603604, + "19516": 0.5113513514, + "19517": 0.5123423423, + "19518": 0.5133333333, + "19519": 0.5143243243, + "19520": 0.5153153153, + "19521": 0.5163063063, + "19522": 0.5172972973, + "19523": 0.5182882883, + "19524": 0.5192792793, + "19525": 0.5202702703, + "19526": 0.5212612613, + "19527": 0.5222522523, + "19528": 0.5232432432, + "19529": 0.5242342342, + "19530": 0.5252252252, + "19531": 0.5262162162, + "19532": 0.5272072072, + "19533": 0.5281981982, + "19534": 0.5291891892, + "19535": 0.5301801802, + "19536": 0.5311711712, + "19537": 0.5321621622, + "19538": 0.5331531532, + "19539": 0.5341441441, + "19540": 0.5351351351, + "19541": 0.5361261261, + "19542": 0.5371171171, + "19543": 0.5381081081, + "19544": 0.5390990991, + "19545": 0.5400900901, + "19546": 0.5410810811, + "19547": 0.5420720721, + "19548": 0.5430630631, + "19549": 0.5440540541, + "19550": 0.545045045, + "19551": 0.546036036, + "19552": 0.547027027, + "19553": 0.548018018, + "19554": 0.549009009, + "19555": 0.55, + "19556": 0.550990991, + "19557": 0.551981982, + "19558": 0.552972973, + "19559": 0.553963964, + "19560": 0.554954955, + "19561": 0.5559459459, + "19562": 0.5569369369, + "19563": 0.5579279279, + "19564": 0.5589189189, + "19565": 0.5599099099, + "19566": 0.5609009009, + "19567": 0.5618918919, + "19568": 0.5628828829, + "19569": 0.5638738739, + "19570": 0.5648648649, + "19571": 0.5658558559, + "19572": 0.5668468468, + "19573": 0.5678378378, + "19574": 0.5688288288, + "19575": 0.5698198198, + "19576": 0.5708108108, + "19577": 0.5718018018, + "19578": 0.5727927928, + "19579": 0.5737837838, + "19580": 0.5747747748, + "19581": 0.5757657658, + "19582": 0.5767567568, + "19583": 0.5777477477, + "19584": 0.5787387387, + "19585": 0.5797297297, + "19586": 0.5807207207, + "19587": 0.5817117117, + "19588": 0.5827027027, + "19589": 0.5836936937, + "19590": 0.5846846847, + "19591": 0.5856756757, + "19592": 0.5866666667, + "19593": 0.5876576577, + "19594": 0.5886486486, + "19595": 0.5896396396, + "19596": 0.5906306306, + "19597": 0.5916216216, + "19598": 0.5926126126, + "19599": 0.5936036036, + "19600": 0.5945945946, + "19601": 0.5955855856, + "19602": 0.5965765766, + "19603": 0.5975675676, + "19604": 0.5985585586, + "19605": 0.5995495495, + "19606": 0.6005405405, + "19607": 0.6015315315, + "19608": 0.6025225225, + "19609": 0.6035135135, + "19610": 0.6045045045, + "19611": 0.6054954955, + "19612": 0.6064864865, + "19613": 0.6074774775, + "19614": 0.6084684685, + "19615": 0.6094594595, + "19616": 0.6104504505, + "19617": 0.6114414414, + "19618": 0.6124324324, + "19619": 0.6134234234, + "19620": 0.6144144144, + "19621": 0.6154054054, + "19622": 0.6163963964, + "19623": 0.6173873874, + "19624": 0.6183783784, + "19625": 0.6193693694, + "19626": 0.6203603604, + "19627": 0.6213513514, + "19628": 0.6223423423, + "19629": 0.6233333333, + "19630": 0.6243243243, + "19631": 0.6253153153, + "19632": 0.6263063063, + "19633": 0.6272972973, + "19634": 0.6282882883, + "19635": 0.6292792793, + "19636": 0.6302702703, + "19637": 0.6312612613, + "19638": 0.6322522523, + "19639": 0.6332432432, + "19640": 0.6342342342, + "19641": 0.6352252252, + "19642": 0.6362162162, + "19643": 0.6372072072, + "19644": 0.6381981982, + "19645": 0.6391891892, + "19646": 0.6401801802, + "19647": 0.6411711712, + "19648": 0.6421621622, + "19649": 0.6431531532, + "19650": 0.6441441441, + "19651": 0.6451351351, + "19652": 0.6461261261, + "19653": 0.6471171171, + "19654": 0.6481081081, + "19655": 0.6490990991, + "19656": 0.6500900901, + "19657": 0.6510810811, + "19658": 0.6520720721, + "19659": 0.6530630631, + "19660": 0.6540540541, + "19661": 0.655045045, + "19662": 0.656036036, + "19663": 0.657027027, + "19664": 0.658018018, + "19665": 0.659009009, + "19666": 0.66, + "19667": 0.660990991, + "19668": 0.661981982, + "19669": 0.662972973, + "19670": 0.663963964, + "19671": 0.664954955, + "19672": 0.6659459459, + "19673": 0.6669369369, + "19674": 0.6679279279, + "19675": 0.6689189189, + "19676": 0.6699099099, + "19677": 0.6709009009, + "19678": 0.6718918919, + "19679": 0.6728828829, + "19680": 0.6738738739, + "19681": 0.6748648649, + "19682": 0.6758558559, + "19683": 0.6768468468, + "19684": 0.6778378378, + "19685": 0.6788288288, + "19686": 0.6798198198, + "19687": 0.6808108108, + "19688": 0.6818018018, + "19689": 0.6827927928, + "19690": 0.6837837838, + "19691": 0.6847747748, + "19692": 0.6857657658, + "19693": 0.6867567568, + "19694": 0.6877477477, + "19695": 0.6887387387, + "19696": 0.6897297297, + "19697": 0.6907207207, + "19698": 0.6917117117, + "19699": 0.6927027027, + "19700": 0.6936936937, + "19701": 0.6946846847, + "19702": 0.6956756757, + "19703": 0.6966666667, + "19704": 0.6976576577, + "19705": 0.6986486486, + "19706": 0.6996396396, + "19707": 0.7006306306, + "19708": 0.7016216216, + "19709": 0.7026126126, + "19710": 0.7036036036, + "19711": 0.7045945946, + "19712": 0.7055855856, + "19713": 0.7065765766, + "19714": 0.7075675676, + "19715": 0.7085585586, + "19716": 0.7095495495, + "19717": 0.7105405405, + "19718": 0.7115315315, + "19719": 0.7125225225, + "19720": 0.7135135135, + "19721": 0.7145045045, + "19722": 0.7154954955, + "19723": 0.7164864865, + "19724": 0.7174774775, + "19725": 0.7184684685, + "19726": 0.7194594595, + "19727": 0.7204504505, + "19728": 0.7214414414, + "19729": 0.7224324324, + "19730": 0.7234234234, + "19731": 0.7244144144, + "19732": 0.7254054054, + "19733": 0.7263963964, + "19734": 0.7273873874, + "19735": 0.7283783784, + "19736": 0.7293693694, + "19737": 0.7303603604, + "19738": 0.7313513514, + "19739": 0.7323423423, + "19740": 0.7333333333, + "19741": 0.7343243243, + "19742": 0.7353153153, + "19743": 0.7363063063, + "19744": 0.7372972973, + "19745": 0.7382882883, + "19746": 0.7392792793, + "19747": 0.7402702703, + "19748": 0.7412612613, + "19749": 0.7422522523, + "19750": 0.7432432432, + "19751": 0.7442342342, + "19752": 0.7452252252, + "19753": 0.7462162162, + "19754": 0.7472072072, + "19755": 0.7481981982, + "19756": 0.7491891892, + "19757": 0.7501801802, + "19758": 0.7511711712, + "19759": 0.7521621622, + "19760": 0.7531531532, + "19761": 0.7541441441, + "19762": 0.7551351351, + "19763": 0.7561261261, + "19764": 0.7571171171, + "19765": 0.7581081081, + "19766": 0.7590990991, + "19767": 0.7600900901, + "19768": 0.7610810811, + "19769": 0.7620720721, + "19770": 0.7630630631, + "19771": 0.7640540541, + "19772": 0.765045045, + "19773": 0.766036036, + "19774": 0.767027027, + "19775": 0.768018018, + "19776": 0.769009009, + "19777": 0.77, + "19778": 0.770990991, + "19779": 0.771981982, + "19780": 0.772972973, + "19781": 0.773963964, + "19782": 0.774954955, + "19783": 0.7759459459, + "19784": 0.7769369369, + "19785": 0.7779279279, + "19786": 0.7789189189, + "19787": 0.7799099099, + "19788": 0.7809009009, + "19789": 0.7818918919, + "19790": 0.7828828829, + "19791": 0.7838738739, + "19792": 0.7848648649, + "19793": 0.7858558559, + "19794": 0.7868468468, + "19795": 0.7878378378, + "19796": 0.7888288288, + "19797": 0.7898198198, + "19798": 0.7908108108, + "19799": 0.7918018018, + "19800": 0.7927927928, + "19801": 0.7937837838, + "19802": 0.7947747748, + "19803": 0.7957657658, + "19804": 0.7967567568, + "19805": 0.7977477477, + "19806": 0.7987387387, + "19807": 0.7997297297, + "19808": 0.8007207207, + "19809": 0.8017117117, + "19810": 0.8027027027, + "19811": 0.8036936937, + "19812": 0.8046846847, + "19813": 0.8056756757, + "19814": 0.8066666667, + "19815": 0.8076576577, + "19816": 0.8086486486, + "19817": 0.8096396396, + "19818": 0.8106306306, + "19819": 0.8116216216, + "19820": 0.8126126126, + "19821": 0.8136036036, + "19822": 0.8145945946, + "19823": 0.8155855856, + "19824": 0.8165765766, + "19825": 0.8175675676, + "19826": 0.8185585586, + "19827": 0.8195495495, + "19828": 0.8205405405, + "19829": 0.8215315315, + "19830": 0.8225225225, + "19831": 0.8235135135, + "19832": 0.8245045045, + "19833": 0.8254954955, + "19834": 0.8264864865, + "19835": 0.8274774775, + "19836": 0.8284684685, + "19837": 0.8294594595, + "19838": 0.8304504505, + "19839": 0.8314414414, + "19840": 0.8324324324, + "19841": 0.8334234234, + "19842": 0.8344144144, + "19843": 0.8354054054, + "19844": 0.8363963964, + "19845": 0.8373873874, + "19846": 0.8383783784, + "19847": 0.8393693694, + "19848": 0.8403603604, + "19849": 0.8413513514, + "19850": 0.8423423423, + "19851": 0.8433333333, + "19852": 0.8443243243, + "19853": 0.8453153153, + "19854": 0.8463063063, + "19855": 0.8472972973, + "19856": 0.8482882883, + "19857": 0.8492792793, + "19858": 0.8502702703, + "19859": 0.8512612613, + "19860": 0.8522522523, + "19861": 0.8532432432, + "19862": 0.8542342342, + "19863": 0.8552252252, + "19864": 0.8562162162, + "19865": 0.8572072072, + "19866": 0.8581981982, + "19867": 0.8591891892, + "19868": 0.8601801802, + "19869": 0.8611711712, + "19870": 0.8621621622, + "19871": 0.8631531532, + "19872": 0.8641441441, + "19873": 0.8651351351, + "19874": 0.8661261261, + "19875": 0.8671171171, + "19876": 0.8681081081, + "19877": 0.8690990991, + "19878": 0.8700900901, + "19879": 0.8710810811, + "19880": 0.8720720721, + "19881": 0.8730630631, + "19882": 0.8740540541, + "19883": 0.875045045, + "19884": 0.876036036, + "19885": 0.877027027, + "19886": 0.878018018, + "19887": 0.879009009, + "19888": 0.88, + "19889": 0.880990991, + "19890": 0.881981982, + "19891": 0.882972973, + "19892": 0.883963964, + "19893": 0.884954955, + "19894": 0.8859459459, + "19895": 0.8869369369, + "19896": 0.8879279279, + "19897": 0.8889189189, + "19898": 0.8899099099, + "19899": 0.8909009009, + "19900": 0.8918918919, + "19901": 0.8928828829, + "19902": 0.8938738739, + "19903": 0.8948648649, + "19904": 0.8958558559, + "19905": 0.8968468468, + "19906": 0.8978378378, + "19907": 0.8988288288, + "19908": 0.8998198198, + "19909": 0.9008108108, + "19910": 0.9018018018, + "19911": 0.9027927928, + "19912": 0.9037837838, + "19913": 0.9047747748, + "19914": 0.9057657658, + "19915": 0.9067567568, + "19916": 0.9077477477, + "19917": 0.9087387387, + "19918": 0.9097297297, + "19919": 0.9107207207, + "19920": 0.9117117117, + "19921": 0.9127027027, + "19922": 0.9136936937, + "19923": 0.9146846847, + "19924": 0.9156756757, + "19925": 0.9166666667, + "19926": 0.9176576577, + "19927": 0.9186486486, + "19928": 0.9196396396, + "19929": 0.9206306306, + "19930": 0.9216216216, + "19931": 0.9226126126, + "19932": 0.9236036036, + "19933": 0.9245945946, + "19934": 0.9255855856, + "19935": 0.9265765766, + "19936": 0.9275675676, + "19937": 0.9285585586, + "19938": 0.9295495495, + "19939": 0.9305405405, + "19940": 0.9315315315, + "19941": 0.9325225225, + "19942": 0.9335135135, + "19943": 0.9345045045, + "19944": 0.9354954955, + "19945": 0.9364864865, + "19946": 0.9374774775, + "19947": 0.9384684685, + "19948": 0.9394594595, + "19949": 0.9404504505, + "19950": 0.9414414414, + "19951": 0.9424324324, + "19952": 0.9434234234, + "19953": 0.9444144144, + "19954": 0.9454054054, + "19955": 0.9463963964, + "19956": 0.9473873874, + "19957": 0.9483783784, + "19958": 0.9493693694, + "19959": 0.9503603604, + "19960": 0.9513513514, + "19961": 0.9523423423, + "19962": 0.9533333333, + "19963": 0.9543243243, + "19964": 0.9553153153, + "19965": 0.9563063063, + "19966": 0.9572972973, + "19967": 0.9582882883, + "19968": 0.9592792793, + "19969": 0.9602702703, + "19970": 0.9612612613, + "19971": 0.9622522523, + "19972": 0.9632432432, + "19973": 0.9642342342, + "19974": 0.9652252252, + "19975": 0.9662162162, + "19976": 0.9672072072, + "19977": 0.9681981982, + "19978": 0.9691891892, + "19979": 0.9701801802, + "19980": 0.9711711712, + "19981": 0.9721621622, + "19982": 0.9731531532, + "19983": 0.9741441441, + "19984": 0.9751351351, + "19985": 0.9761261261, + "19986": 0.9771171171, + "19987": 0.9781081081, + "19988": 0.9790990991, + "19989": 0.9800900901, + "19990": 0.9810810811, + "19991": 0.9820720721, + "19992": 0.9830630631, + "19993": 0.9840540541, + "19994": 0.985045045, + "19995": 0.986036036, + "19996": 0.987027027, + "19997": 0.988018018, + "19998": 0.989009009, + "19999": 0.99, + "20000": 0.0, + "20001": 0.000990991, + "20002": 0.001981982, + "20003": 0.002972973, + "20004": 0.003963964, + "20005": 0.004954955, + "20006": 0.0059459459, + "20007": 0.0069369369, + "20008": 0.0079279279, + "20009": 0.0089189189, + "20010": 0.0099099099, + "20011": 0.0109009009, + "20012": 0.0118918919, + "20013": 0.0128828829, + "20014": 0.0138738739, + "20015": 0.0148648649, + "20016": 0.0158558559, + "20017": 0.0168468468, + "20018": 0.0178378378, + "20019": 0.0188288288, + "20020": 0.0198198198, + "20021": 0.0208108108, + "20022": 0.0218018018, + "20023": 0.0227927928, + "20024": 0.0237837838, + "20025": 0.0247747748, + "20026": 0.0257657658, + "20027": 0.0267567568, + "20028": 0.0277477477, + "20029": 0.0287387387, + "20030": 0.0297297297, + "20031": 0.0307207207, + "20032": 0.0317117117, + "20033": 0.0327027027, + "20034": 0.0336936937, + "20035": 0.0346846847, + "20036": 0.0356756757, + "20037": 0.0366666667, + "20038": 0.0376576577, + "20039": 0.0386486486, + "20040": 0.0396396396, + "20041": 0.0406306306, + "20042": 0.0416216216, + "20043": 0.0426126126, + "20044": 0.0436036036, + "20045": 0.0445945946, + "20046": 0.0455855856, + "20047": 0.0465765766, + "20048": 0.0475675676, + "20049": 0.0485585586, + "20050": 0.0495495495, + "20051": 0.0505405405, + "20052": 0.0515315315, + "20053": 0.0525225225, + "20054": 0.0535135135, + "20055": 0.0545045045, + "20056": 0.0554954955, + "20057": 0.0564864865, + "20058": 0.0574774775, + "20059": 0.0584684685, + "20060": 0.0594594595, + "20061": 0.0604504505, + "20062": 0.0614414414, + "20063": 0.0624324324, + "20064": 0.0634234234, + "20065": 0.0644144144, + "20066": 0.0654054054, + "20067": 0.0663963964, + "20068": 0.0673873874, + "20069": 0.0683783784, + "20070": 0.0693693694, + "20071": 0.0703603604, + "20072": 0.0713513514, + "20073": 0.0723423423, + "20074": 0.0733333333, + "20075": 0.0743243243, + "20076": 0.0753153153, + "20077": 0.0763063063, + "20078": 0.0772972973, + "20079": 0.0782882883, + "20080": 0.0792792793, + "20081": 0.0802702703, + "20082": 0.0812612613, + "20083": 0.0822522523, + "20084": 0.0832432432, + "20085": 0.0842342342, + "20086": 0.0852252252, + "20087": 0.0862162162, + "20088": 0.0872072072, + "20089": 0.0881981982, + "20090": 0.0891891892, + "20091": 0.0901801802, + "20092": 0.0911711712, + "20093": 0.0921621622, + "20094": 0.0931531532, + "20095": 0.0941441441, + "20096": 0.0951351351, + "20097": 0.0961261261, + "20098": 0.0971171171, + "20099": 0.0981081081, + "20100": 0.0990990991, + "20101": 0.1000900901, + "20102": 0.1010810811, + "20103": 0.1020720721, + "20104": 0.1030630631, + "20105": 0.1040540541, + "20106": 0.105045045, + "20107": 0.106036036, + "20108": 0.107027027, + "20109": 0.108018018, + "20110": 0.109009009, + "20111": 0.11, + "20112": 0.110990991, + "20113": 0.111981982, + "20114": 0.112972973, + "20115": 0.113963964, + "20116": 0.114954955, + "20117": 0.1159459459, + "20118": 0.1169369369, + "20119": 0.1179279279, + "20120": 0.1189189189, + "20121": 0.1199099099, + "20122": 0.1209009009, + "20123": 0.1218918919, + "20124": 0.1228828829, + "20125": 0.1238738739, + "20126": 0.1248648649, + "20127": 0.1258558559, + "20128": 0.1268468468, + "20129": 0.1278378378, + "20130": 0.1288288288, + "20131": 0.1298198198, + "20132": 0.1308108108, + "20133": 0.1318018018, + "20134": 0.1327927928, + "20135": 0.1337837838, + "20136": 0.1347747748, + "20137": 0.1357657658, + "20138": 0.1367567568, + "20139": 0.1377477477, + "20140": 0.1387387387, + "20141": 0.1397297297, + "20142": 0.1407207207, + "20143": 0.1417117117, + "20144": 0.1427027027, + "20145": 0.1436936937, + "20146": 0.1446846847, + "20147": 0.1456756757, + "20148": 0.1466666667, + "20149": 0.1476576577, + "20150": 0.1486486486, + "20151": 0.1496396396, + "20152": 0.1506306306, + "20153": 0.1516216216, + "20154": 0.1526126126, + "20155": 0.1536036036, + "20156": 0.1545945946, + "20157": 0.1555855856, + "20158": 0.1565765766, + "20159": 0.1575675676, + "20160": 0.1585585586, + "20161": 0.1595495495, + "20162": 0.1605405405, + "20163": 0.1615315315, + "20164": 0.1625225225, + "20165": 0.1635135135, + "20166": 0.1645045045, + "20167": 0.1654954955, + "20168": 0.1664864865, + "20169": 0.1674774775, + "20170": 0.1684684685, + "20171": 0.1694594595, + "20172": 0.1704504505, + "20173": 0.1714414414, + "20174": 0.1724324324, + "20175": 0.1734234234, + "20176": 0.1744144144, + "20177": 0.1754054054, + "20178": 0.1763963964, + "20179": 0.1773873874, + "20180": 0.1783783784, + "20181": 0.1793693694, + "20182": 0.1803603604, + "20183": 0.1813513514, + "20184": 0.1823423423, + "20185": 0.1833333333, + "20186": 0.1843243243, + "20187": 0.1853153153, + "20188": 0.1863063063, + "20189": 0.1872972973, + "20190": 0.1882882883, + "20191": 0.1892792793, + "20192": 0.1902702703, + "20193": 0.1912612613, + "20194": 0.1922522523, + "20195": 0.1932432432, + "20196": 0.1942342342, + "20197": 0.1952252252, + "20198": 0.1962162162, + "20199": 0.1972072072, + "20200": 0.1981981982, + "20201": 0.1991891892, + "20202": 0.2001801802, + "20203": 0.2011711712, + "20204": 0.2021621622, + "20205": 0.2031531532, + "20206": 0.2041441441, + "20207": 0.2051351351, + "20208": 0.2061261261, + "20209": 0.2071171171, + "20210": 0.2081081081, + "20211": 0.2090990991, + "20212": 0.2100900901, + "20213": 0.2110810811, + "20214": 0.2120720721, + "20215": 0.2130630631, + "20216": 0.2140540541, + "20217": 0.215045045, + "20218": 0.216036036, + "20219": 0.217027027, + "20220": 0.218018018, + "20221": 0.219009009, + "20222": 0.22, + "20223": 0.220990991, + "20224": 0.221981982, + "20225": 0.222972973, + "20226": 0.223963964, + "20227": 0.224954955, + "20228": 0.2259459459, + "20229": 0.2269369369, + "20230": 0.2279279279, + "20231": 0.2289189189, + "20232": 0.2299099099, + "20233": 0.2309009009, + "20234": 0.2318918919, + "20235": 0.2328828829, + "20236": 0.2338738739, + "20237": 0.2348648649, + "20238": 0.2358558559, + "20239": 0.2368468468, + "20240": 0.2378378378, + "20241": 0.2388288288, + "20242": 0.2398198198, + "20243": 0.2408108108, + "20244": 0.2418018018, + "20245": 0.2427927928, + "20246": 0.2437837838, + "20247": 0.2447747748, + "20248": 0.2457657658, + "20249": 0.2467567568, + "20250": 0.2477477477, + "20251": 0.2487387387, + "20252": 0.2497297297, + "20253": 0.2507207207, + "20254": 0.2517117117, + "20255": 0.2527027027, + "20256": 0.2536936937, + "20257": 0.2546846847, + "20258": 0.2556756757, + "20259": 0.2566666667, + "20260": 0.2576576577, + "20261": 0.2586486486, + "20262": 0.2596396396, + "20263": 0.2606306306, + "20264": 0.2616216216, + "20265": 0.2626126126, + "20266": 0.2636036036, + "20267": 0.2645945946, + "20268": 0.2655855856, + "20269": 0.2665765766, + "20270": 0.2675675676, + "20271": 0.2685585586, + "20272": 0.2695495495, + "20273": 0.2705405405, + "20274": 0.2715315315, + "20275": 0.2725225225, + "20276": 0.2735135135, + "20277": 0.2745045045, + "20278": 0.2754954955, + "20279": 0.2764864865, + "20280": 0.2774774775, + "20281": 0.2784684685, + "20282": 0.2794594595, + "20283": 0.2804504505, + "20284": 0.2814414414, + "20285": 0.2824324324, + "20286": 0.2834234234, + "20287": 0.2844144144, + "20288": 0.2854054054, + "20289": 0.2863963964, + "20290": 0.2873873874, + "20291": 0.2883783784, + "20292": 0.2893693694, + "20293": 0.2903603604, + "20294": 0.2913513514, + "20295": 0.2923423423, + "20296": 0.2933333333, + "20297": 0.2943243243, + "20298": 0.2953153153, + "20299": 0.2963063063, + "20300": 0.2972972973, + "20301": 0.2982882883, + "20302": 0.2992792793, + "20303": 0.3002702703, + "20304": 0.3012612613, + "20305": 0.3022522523, + "20306": 0.3032432432, + "20307": 0.3042342342, + "20308": 0.3052252252, + "20309": 0.3062162162, + "20310": 0.3072072072, + "20311": 0.3081981982, + "20312": 0.3091891892, + "20313": 0.3101801802, + "20314": 0.3111711712, + "20315": 0.3121621622, + "20316": 0.3131531532, + "20317": 0.3141441441, + "20318": 0.3151351351, + "20319": 0.3161261261, + "20320": 0.3171171171, + "20321": 0.3181081081, + "20322": 0.3190990991, + "20323": 0.3200900901, + "20324": 0.3210810811, + "20325": 0.3220720721, + "20326": 0.3230630631, + "20327": 0.3240540541, + "20328": 0.325045045, + "20329": 0.326036036, + "20330": 0.327027027, + "20331": 0.328018018, + "20332": 0.329009009, + "20333": 0.33, + "20334": 0.330990991, + "20335": 0.331981982, + "20336": 0.332972973, + "20337": 0.333963964, + "20338": 0.334954955, + "20339": 0.3359459459, + "20340": 0.3369369369, + "20341": 0.3379279279, + "20342": 0.3389189189, + "20343": 0.3399099099, + "20344": 0.3409009009, + "20345": 0.3418918919, + "20346": 0.3428828829, + "20347": 0.3438738739, + "20348": 0.3448648649, + "20349": 0.3458558559, + "20350": 0.3468468468, + "20351": 0.3478378378, + "20352": 0.3488288288, + "20353": 0.3498198198, + "20354": 0.3508108108, + "20355": 0.3518018018, + "20356": 0.3527927928, + "20357": 0.3537837838, + "20358": 0.3547747748, + "20359": 0.3557657658, + "20360": 0.3567567568, + "20361": 0.3577477477, + "20362": 0.3587387387, + "20363": 0.3597297297, + "20364": 0.3607207207, + "20365": 0.3617117117, + "20366": 0.3627027027, + "20367": 0.3636936937, + "20368": 0.3646846847, + "20369": 0.3656756757, + "20370": 0.3666666667, + "20371": 0.3676576577, + "20372": 0.3686486486, + "20373": 0.3696396396, + "20374": 0.3706306306, + "20375": 0.3716216216, + "20376": 0.3726126126, + "20377": 0.3736036036, + "20378": 0.3745945946, + "20379": 0.3755855856, + "20380": 0.3765765766, + "20381": 0.3775675676, + "20382": 0.3785585586, + "20383": 0.3795495495, + "20384": 0.3805405405, + "20385": 0.3815315315, + "20386": 0.3825225225, + "20387": 0.3835135135, + "20388": 0.3845045045, + "20389": 0.3854954955, + "20390": 0.3864864865, + "20391": 0.3874774775, + "20392": 0.3884684685, + "20393": 0.3894594595, + "20394": 0.3904504505, + "20395": 0.3914414414, + "20396": 0.3924324324, + "20397": 0.3934234234, + "20398": 0.3944144144, + "20399": 0.3954054054, + "20400": 0.3963963964, + "20401": 0.3973873874, + "20402": 0.3983783784, + "20403": 0.3993693694, + "20404": 0.4003603604, + "20405": 0.4013513514, + "20406": 0.4023423423, + "20407": 0.4033333333, + "20408": 0.4043243243, + "20409": 0.4053153153, + "20410": 0.4063063063, + "20411": 0.4072972973, + "20412": 0.4082882883, + "20413": 0.4092792793, + "20414": 0.4102702703, + "20415": 0.4112612613, + "20416": 0.4122522523, + "20417": 0.4132432432, + "20418": 0.4142342342, + "20419": 0.4152252252, + "20420": 0.4162162162, + "20421": 0.4172072072, + "20422": 0.4181981982, + "20423": 0.4191891892, + "20424": 0.4201801802, + "20425": 0.4211711712, + "20426": 0.4221621622, + "20427": 0.4231531532, + "20428": 0.4241441441, + "20429": 0.4251351351, + "20430": 0.4261261261, + "20431": 0.4271171171, + "20432": 0.4281081081, + "20433": 0.4290990991, + "20434": 0.4300900901, + "20435": 0.4310810811, + "20436": 0.4320720721, + "20437": 0.4330630631, + "20438": 0.4340540541, + "20439": 0.435045045, + "20440": 0.436036036, + "20441": 0.437027027, + "20442": 0.438018018, + "20443": 0.439009009, + "20444": 0.44, + "20445": 0.440990991, + "20446": 0.441981982, + "20447": 0.442972973, + "20448": 0.443963964, + "20449": 0.444954955, + "20450": 0.4459459459, + "20451": 0.4469369369, + "20452": 0.4479279279, + "20453": 0.4489189189, + "20454": 0.4499099099, + "20455": 0.4509009009, + "20456": 0.4518918919, + "20457": 0.4528828829, + "20458": 0.4538738739, + "20459": 0.4548648649, + "20460": 0.4558558559, + "20461": 0.4568468468, + "20462": 0.4578378378, + "20463": 0.4588288288, + "20464": 0.4598198198, + "20465": 0.4608108108, + "20466": 0.4618018018, + "20467": 0.4627927928, + "20468": 0.4637837838, + "20469": 0.4647747748, + "20470": 0.4657657658, + "20471": 0.4667567568, + "20472": 0.4677477477, + "20473": 0.4687387387, + "20474": 0.4697297297, + "20475": 0.4707207207, + "20476": 0.4717117117, + "20477": 0.4727027027, + "20478": 0.4736936937, + "20479": 0.4746846847, + "20480": 0.4756756757, + "20481": 0.4766666667, + "20482": 0.4776576577, + "20483": 0.4786486486, + "20484": 0.4796396396, + "20485": 0.4806306306, + "20486": 0.4816216216, + "20487": 0.4826126126, + "20488": 0.4836036036, + "20489": 0.4845945946, + "20490": 0.4855855856, + "20491": 0.4865765766, + "20492": 0.4875675676, + "20493": 0.4885585586, + "20494": 0.4895495495, + "20495": 0.4905405405, + "20496": 0.4915315315, + "20497": 0.4925225225, + "20498": 0.4935135135, + "20499": 0.4945045045, + "20500": 0.4954954955, + "20501": 0.4964864865, + "20502": 0.4974774775, + "20503": 0.4984684685, + "20504": 0.4994594595, + "20505": 0.5004504505, + "20506": 0.5014414414, + "20507": 0.5024324324, + "20508": 0.5034234234, + "20509": 0.5044144144, + "20510": 0.5054054054, + "20511": 0.5063963964, + "20512": 0.5073873874, + "20513": 0.5083783784, + "20514": 0.5093693694, + "20515": 0.5103603604, + "20516": 0.5113513514, + "20517": 0.5123423423, + "20518": 0.5133333333, + "20519": 0.5143243243, + "20520": 0.5153153153, + "20521": 0.5163063063, + "20522": 0.5172972973, + "20523": 0.5182882883, + "20524": 0.5192792793, + "20525": 0.5202702703, + "20526": 0.5212612613, + "20527": 0.5222522523, + "20528": 0.5232432432, + "20529": 0.5242342342, + "20530": 0.5252252252, + "20531": 0.5262162162, + "20532": 0.5272072072, + "20533": 0.5281981982, + "20534": 0.5291891892, + "20535": 0.5301801802, + "20536": 0.5311711712, + "20537": 0.5321621622, + "20538": 0.5331531532, + "20539": 0.5341441441, + "20540": 0.5351351351, + "20541": 0.5361261261, + "20542": 0.5371171171, + "20543": 0.5381081081, + "20544": 0.5390990991, + "20545": 0.5400900901, + "20546": 0.5410810811, + "20547": 0.5420720721, + "20548": 0.5430630631, + "20549": 0.5440540541, + "20550": 0.545045045, + "20551": 0.546036036, + "20552": 0.547027027, + "20553": 0.548018018, + "20554": 0.549009009, + "20555": 0.55, + "20556": 0.550990991, + "20557": 0.551981982, + "20558": 0.552972973, + "20559": 0.553963964, + "20560": 0.554954955, + "20561": 0.5559459459, + "20562": 0.5569369369, + "20563": 0.5579279279, + "20564": 0.5589189189, + "20565": 0.5599099099, + "20566": 0.5609009009, + "20567": 0.5618918919, + "20568": 0.5628828829, + "20569": 0.5638738739, + "20570": 0.5648648649, + "20571": 0.5658558559, + "20572": 0.5668468468, + "20573": 0.5678378378, + "20574": 0.5688288288, + "20575": 0.5698198198, + "20576": 0.5708108108, + "20577": 0.5718018018, + "20578": 0.5727927928, + "20579": 0.5737837838, + "20580": 0.5747747748, + "20581": 0.5757657658, + "20582": 0.5767567568, + "20583": 0.5777477477, + "20584": 0.5787387387, + "20585": 0.5797297297, + "20586": 0.5807207207, + "20587": 0.5817117117, + "20588": 0.5827027027, + "20589": 0.5836936937, + "20590": 0.5846846847, + "20591": 0.5856756757, + "20592": 0.5866666667, + "20593": 0.5876576577, + "20594": 0.5886486486, + "20595": 0.5896396396, + "20596": 0.5906306306, + "20597": 0.5916216216, + "20598": 0.5926126126, + "20599": 0.5936036036, + "20600": 0.5945945946, + "20601": 0.5955855856, + "20602": 0.5965765766, + "20603": 0.5975675676, + "20604": 0.5985585586, + "20605": 0.5995495495, + "20606": 0.6005405405, + "20607": 0.6015315315, + "20608": 0.6025225225, + "20609": 0.6035135135, + "20610": 0.6045045045, + "20611": 0.6054954955, + "20612": 0.6064864865, + "20613": 0.6074774775, + "20614": 0.6084684685, + "20615": 0.6094594595, + "20616": 0.6104504505, + "20617": 0.6114414414, + "20618": 0.6124324324, + "20619": 0.6134234234, + "20620": 0.6144144144, + "20621": 0.6154054054, + "20622": 0.6163963964, + "20623": 0.6173873874, + "20624": 0.6183783784, + "20625": 0.6193693694, + "20626": 0.6203603604, + "20627": 0.6213513514, + "20628": 0.6223423423, + "20629": 0.6233333333, + "20630": 0.6243243243, + "20631": 0.6253153153, + "20632": 0.6263063063, + "20633": 0.6272972973, + "20634": 0.6282882883, + "20635": 0.6292792793, + "20636": 0.6302702703, + "20637": 0.6312612613, + "20638": 0.6322522523, + "20639": 0.6332432432, + "20640": 0.6342342342, + "20641": 0.6352252252, + "20642": 0.6362162162, + "20643": 0.6372072072, + "20644": 0.6381981982, + "20645": 0.6391891892, + "20646": 0.6401801802, + "20647": 0.6411711712, + "20648": 0.6421621622, + "20649": 0.6431531532, + "20650": 0.6441441441, + "20651": 0.6451351351, + "20652": 0.6461261261, + "20653": 0.6471171171, + "20654": 0.6481081081, + "20655": 0.6490990991, + "20656": 0.6500900901, + "20657": 0.6510810811, + "20658": 0.6520720721, + "20659": 0.6530630631, + "20660": 0.6540540541, + "20661": 0.655045045, + "20662": 0.656036036, + "20663": 0.657027027, + "20664": 0.658018018, + "20665": 0.659009009, + "20666": 0.66, + "20667": 0.660990991, + "20668": 0.661981982, + "20669": 0.662972973, + "20670": 0.663963964, + "20671": 0.664954955, + "20672": 0.6659459459, + "20673": 0.6669369369, + "20674": 0.6679279279, + "20675": 0.6689189189, + "20676": 0.6699099099, + "20677": 0.6709009009, + "20678": 0.6718918919, + "20679": 0.6728828829, + "20680": 0.6738738739, + "20681": 0.6748648649, + "20682": 0.6758558559, + "20683": 0.6768468468, + "20684": 0.6778378378, + "20685": 0.6788288288, + "20686": 0.6798198198, + "20687": 0.6808108108, + "20688": 0.6818018018, + "20689": 0.6827927928, + "20690": 0.6837837838, + "20691": 0.6847747748, + "20692": 0.6857657658, + "20693": 0.6867567568, + "20694": 0.6877477477, + "20695": 0.6887387387, + "20696": 0.6897297297, + "20697": 0.6907207207, + "20698": 0.6917117117, + "20699": 0.6927027027, + "20700": 0.6936936937, + "20701": 0.6946846847, + "20702": 0.6956756757, + "20703": 0.6966666667, + "20704": 0.6976576577, + "20705": 0.6986486486, + "20706": 0.6996396396, + "20707": 0.7006306306, + "20708": 0.7016216216, + "20709": 0.7026126126, + "20710": 0.7036036036, + "20711": 0.7045945946, + "20712": 0.7055855856, + "20713": 0.7065765766, + "20714": 0.7075675676, + "20715": 0.7085585586, + "20716": 0.7095495495, + "20717": 0.7105405405, + "20718": 0.7115315315, + "20719": 0.7125225225, + "20720": 0.7135135135, + "20721": 0.7145045045, + "20722": 0.7154954955, + "20723": 0.7164864865, + "20724": 0.7174774775, + "20725": 0.7184684685, + "20726": 0.7194594595, + "20727": 0.7204504505, + "20728": 0.7214414414, + "20729": 0.7224324324, + "20730": 0.7234234234, + "20731": 0.7244144144, + "20732": 0.7254054054, + "20733": 0.7263963964, + "20734": 0.7273873874, + "20735": 0.7283783784, + "20736": 0.7293693694, + "20737": 0.7303603604, + "20738": 0.7313513514, + "20739": 0.7323423423, + "20740": 0.7333333333, + "20741": 0.7343243243, + "20742": 0.7353153153, + "20743": 0.7363063063, + "20744": 0.7372972973, + "20745": 0.7382882883, + "20746": 0.7392792793, + "20747": 0.7402702703, + "20748": 0.7412612613, + "20749": 0.7422522523, + "20750": 0.7432432432, + "20751": 0.7442342342, + "20752": 0.7452252252, + "20753": 0.7462162162, + "20754": 0.7472072072, + "20755": 0.7481981982, + "20756": 0.7491891892, + "20757": 0.7501801802, + "20758": 0.7511711712, + "20759": 0.7521621622, + "20760": 0.7531531532, + "20761": 0.7541441441, + "20762": 0.7551351351, + "20763": 0.7561261261, + "20764": 0.7571171171, + "20765": 0.7581081081, + "20766": 0.7590990991, + "20767": 0.7600900901, + "20768": 0.7610810811, + "20769": 0.7620720721, + "20770": 0.7630630631, + "20771": 0.7640540541, + "20772": 0.765045045, + "20773": 0.766036036, + "20774": 0.767027027, + "20775": 0.768018018, + "20776": 0.769009009, + "20777": 0.77, + "20778": 0.770990991, + "20779": 0.771981982, + "20780": 0.772972973, + "20781": 0.773963964, + "20782": 0.774954955, + "20783": 0.7759459459, + "20784": 0.7769369369, + "20785": 0.7779279279, + "20786": 0.7789189189, + "20787": 0.7799099099, + "20788": 0.7809009009, + "20789": 0.7818918919, + "20790": 0.7828828829, + "20791": 0.7838738739, + "20792": 0.7848648649, + "20793": 0.7858558559, + "20794": 0.7868468468, + "20795": 0.7878378378, + "20796": 0.7888288288, + "20797": 0.7898198198, + "20798": 0.7908108108, + "20799": 0.7918018018, + "20800": 0.7927927928, + "20801": 0.7937837838, + "20802": 0.7947747748, + "20803": 0.7957657658, + "20804": 0.7967567568, + "20805": 0.7977477477, + "20806": 0.7987387387, + "20807": 0.7997297297, + "20808": 0.8007207207, + "20809": 0.8017117117, + "20810": 0.8027027027, + "20811": 0.8036936937, + "20812": 0.8046846847, + "20813": 0.8056756757, + "20814": 0.8066666667, + "20815": 0.8076576577, + "20816": 0.8086486486, + "20817": 0.8096396396, + "20818": 0.8106306306, + "20819": 0.8116216216, + "20820": 0.8126126126, + "20821": 0.8136036036, + "20822": 0.8145945946, + "20823": 0.8155855856, + "20824": 0.8165765766, + "20825": 0.8175675676, + "20826": 0.8185585586, + "20827": 0.8195495495, + "20828": 0.8205405405, + "20829": 0.8215315315, + "20830": 0.8225225225, + "20831": 0.8235135135, + "20832": 0.8245045045, + "20833": 0.8254954955, + "20834": 0.8264864865, + "20835": 0.8274774775, + "20836": 0.8284684685, + "20837": 0.8294594595, + "20838": 0.8304504505, + "20839": 0.8314414414, + "20840": 0.8324324324, + "20841": 0.8334234234, + "20842": 0.8344144144, + "20843": 0.8354054054, + "20844": 0.8363963964, + "20845": 0.8373873874, + "20846": 0.8383783784, + "20847": 0.8393693694, + "20848": 0.8403603604, + "20849": 0.8413513514, + "20850": 0.8423423423, + "20851": 0.8433333333, + "20852": 0.8443243243, + "20853": 0.8453153153, + "20854": 0.8463063063, + "20855": 0.8472972973, + "20856": 0.8482882883, + "20857": 0.8492792793, + "20858": 0.8502702703, + "20859": 0.8512612613, + "20860": 0.8522522523, + "20861": 0.8532432432, + "20862": 0.8542342342, + "20863": 0.8552252252, + "20864": 0.8562162162, + "20865": 0.8572072072, + "20866": 0.8581981982, + "20867": 0.8591891892, + "20868": 0.8601801802, + "20869": 0.8611711712, + "20870": 0.8621621622, + "20871": 0.8631531532, + "20872": 0.8641441441, + "20873": 0.8651351351, + "20874": 0.8661261261, + "20875": 0.8671171171, + "20876": 0.8681081081, + "20877": 0.8690990991, + "20878": 0.8700900901, + "20879": 0.8710810811, + "20880": 0.8720720721, + "20881": 0.8730630631, + "20882": 0.8740540541, + "20883": 0.875045045, + "20884": 0.876036036, + "20885": 0.877027027, + "20886": 0.878018018, + "20887": 0.879009009, + "20888": 0.88, + "20889": 0.880990991, + "20890": 0.881981982, + "20891": 0.882972973, + "20892": 0.883963964, + "20893": 0.884954955, + "20894": 0.8859459459, + "20895": 0.8869369369, + "20896": 0.8879279279, + "20897": 0.8889189189, + "20898": 0.8899099099, + "20899": 0.8909009009, + "20900": 0.8918918919, + "20901": 0.8928828829, + "20902": 0.8938738739, + "20903": 0.8948648649, + "20904": 0.8958558559, + "20905": 0.8968468468, + "20906": 0.8978378378, + "20907": 0.8988288288, + "20908": 0.8998198198, + "20909": 0.9008108108, + "20910": 0.9018018018, + "20911": 0.9027927928, + "20912": 0.9037837838, + "20913": 0.9047747748, + "20914": 0.9057657658, + "20915": 0.9067567568, + "20916": 0.9077477477, + "20917": 0.9087387387, + "20918": 0.9097297297, + "20919": 0.9107207207, + "20920": 0.9117117117, + "20921": 0.9127027027, + "20922": 0.9136936937, + "20923": 0.9146846847, + "20924": 0.9156756757, + "20925": 0.9166666667, + "20926": 0.9176576577, + "20927": 0.9186486486, + "20928": 0.9196396396, + "20929": 0.9206306306, + "20930": 0.9216216216, + "20931": 0.9226126126, + "20932": 0.9236036036, + "20933": 0.9245945946, + "20934": 0.9255855856, + "20935": 0.9265765766, + "20936": 0.9275675676, + "20937": 0.9285585586, + "20938": 0.9295495495, + "20939": 0.9305405405, + "20940": 0.9315315315, + "20941": 0.9325225225, + "20942": 0.9335135135, + "20943": 0.9345045045, + "20944": 0.9354954955, + "20945": 0.9364864865, + "20946": 0.9374774775, + "20947": 0.9384684685, + "20948": 0.9394594595, + "20949": 0.9404504505, + "20950": 0.9414414414, + "20951": 0.9424324324, + "20952": 0.9434234234, + "20953": 0.9444144144, + "20954": 0.9454054054, + "20955": 0.9463963964, + "20956": 0.9473873874, + "20957": 0.9483783784, + "20958": 0.9493693694, + "20959": 0.9503603604, + "20960": 0.9513513514, + "20961": 0.9523423423, + "20962": 0.9533333333, + "20963": 0.9543243243, + "20964": 0.9553153153, + "20965": 0.9563063063, + "20966": 0.9572972973, + "20967": 0.9582882883, + "20968": 0.9592792793, + "20969": 0.9602702703, + "20970": 0.9612612613, + "20971": 0.9622522523, + "20972": 0.9632432432, + "20973": 0.9642342342, + "20974": 0.9652252252, + "20975": 0.9662162162, + "20976": 0.9672072072, + "20977": 0.9681981982, + "20978": 0.9691891892, + "20979": 0.9701801802, + "20980": 0.9711711712, + "20981": 0.9721621622, + "20982": 0.9731531532, + "20983": 0.9741441441, + "20984": 0.9751351351, + "20985": 0.9761261261, + "20986": 0.9771171171, + "20987": 0.9781081081, + "20988": 0.9790990991, + "20989": 0.9800900901, + "20990": 0.9810810811, + "20991": 0.9820720721, + "20992": 0.9830630631, + "20993": 0.9840540541, + "20994": 0.985045045, + "20995": 0.986036036, + "20996": 0.987027027, + "20997": 0.988018018, + "20998": 0.989009009, + "20999": 0.99, + "21000": 0.0, + "21001": 0.000990991, + "21002": 0.001981982, + "21003": 0.002972973, + "21004": 0.003963964, + "21005": 0.004954955, + "21006": 0.0059459459, + "21007": 0.0069369369, + "21008": 0.0079279279, + "21009": 0.0089189189, + "21010": 0.0099099099, + "21011": 0.0109009009, + "21012": 0.0118918919, + "21013": 0.0128828829, + "21014": 0.0138738739, + "21015": 0.0148648649, + "21016": 0.0158558559, + "21017": 0.0168468468, + "21018": 0.0178378378, + "21019": 0.0188288288, + "21020": 0.0198198198, + "21021": 0.0208108108, + "21022": 0.0218018018, + "21023": 0.0227927928, + "21024": 0.0237837838, + "21025": 0.0247747748, + "21026": 0.0257657658, + "21027": 0.0267567568, + "21028": 0.0277477477, + "21029": 0.0287387387, + "21030": 0.0297297297, + "21031": 0.0307207207, + "21032": 0.0317117117, + "21033": 0.0327027027, + "21034": 0.0336936937, + "21035": 0.0346846847, + "21036": 0.0356756757, + "21037": 0.0366666667, + "21038": 0.0376576577, + "21039": 0.0386486486, + "21040": 0.0396396396, + "21041": 0.0406306306, + "21042": 0.0416216216, + "21043": 0.0426126126, + "21044": 0.0436036036, + "21045": 0.0445945946, + "21046": 0.0455855856, + "21047": 0.0465765766, + "21048": 0.0475675676, + "21049": 0.0485585586, + "21050": 0.0495495495, + "21051": 0.0505405405, + "21052": 0.0515315315, + "21053": 0.0525225225, + "21054": 0.0535135135, + "21055": 0.0545045045, + "21056": 0.0554954955, + "21057": 0.0564864865, + "21058": 0.0574774775, + "21059": 0.0584684685, + "21060": 0.0594594595, + "21061": 0.0604504505, + "21062": 0.0614414414, + "21063": 0.0624324324, + "21064": 0.0634234234, + "21065": 0.0644144144, + "21066": 0.0654054054, + "21067": 0.0663963964, + "21068": 0.0673873874, + "21069": 0.0683783784, + "21070": 0.0693693694, + "21071": 0.0703603604, + "21072": 0.0713513514, + "21073": 0.0723423423, + "21074": 0.0733333333, + "21075": 0.0743243243, + "21076": 0.0753153153, + "21077": 0.0763063063, + "21078": 0.0772972973, + "21079": 0.0782882883, + "21080": 0.0792792793, + "21081": 0.0802702703, + "21082": 0.0812612613, + "21083": 0.0822522523, + "21084": 0.0832432432, + "21085": 0.0842342342, + "21086": 0.0852252252, + "21087": 0.0862162162, + "21088": 0.0872072072, + "21089": 0.0881981982, + "21090": 0.0891891892, + "21091": 0.0901801802, + "21092": 0.0911711712, + "21093": 0.0921621622, + "21094": 0.0931531532, + "21095": 0.0941441441, + "21096": 0.0951351351, + "21097": 0.0961261261, + "21098": 0.0971171171, + "21099": 0.0981081081, + "21100": 0.0990990991, + "21101": 0.1000900901, + "21102": 0.1010810811, + "21103": 0.1020720721, + "21104": 0.1030630631, + "21105": 0.1040540541, + "21106": 0.105045045, + "21107": 0.106036036, + "21108": 0.107027027, + "21109": 0.108018018, + "21110": 0.109009009, + "21111": 0.11, + "21112": 0.110990991, + "21113": 0.111981982, + "21114": 0.112972973, + "21115": 0.113963964, + "21116": 0.114954955, + "21117": 0.1159459459, + "21118": 0.1169369369, + "21119": 0.1179279279, + "21120": 0.1189189189, + "21121": 0.1199099099, + "21122": 0.1209009009, + "21123": 0.1218918919, + "21124": 0.1228828829, + "21125": 0.1238738739, + "21126": 0.1248648649, + "21127": 0.1258558559, + "21128": 0.1268468468, + "21129": 0.1278378378, + "21130": 0.1288288288, + "21131": 0.1298198198, + "21132": 0.1308108108, + "21133": 0.1318018018, + "21134": 0.1327927928, + "21135": 0.1337837838, + "21136": 0.1347747748, + "21137": 0.1357657658, + "21138": 0.1367567568, + "21139": 0.1377477477, + "21140": 0.1387387387, + "21141": 0.1397297297, + "21142": 0.1407207207, + "21143": 0.1417117117, + "21144": 0.1427027027, + "21145": 0.1436936937, + "21146": 0.1446846847, + "21147": 0.1456756757, + "21148": 0.1466666667, + "21149": 0.1476576577, + "21150": 0.1486486486, + "21151": 0.1496396396, + "21152": 0.1506306306, + "21153": 0.1516216216, + "21154": 0.1526126126, + "21155": 0.1536036036, + "21156": 0.1545945946, + "21157": 0.1555855856, + "21158": 0.1565765766, + "21159": 0.1575675676, + "21160": 0.1585585586, + "21161": 0.1595495495, + "21162": 0.1605405405, + "21163": 0.1615315315, + "21164": 0.1625225225, + "21165": 0.1635135135, + "21166": 0.1645045045, + "21167": 0.1654954955, + "21168": 0.1664864865, + "21169": 0.1674774775, + "21170": 0.1684684685, + "21171": 0.1694594595, + "21172": 0.1704504505, + "21173": 0.1714414414, + "21174": 0.1724324324, + "21175": 0.1734234234, + "21176": 0.1744144144, + "21177": 0.1754054054, + "21178": 0.1763963964, + "21179": 0.1773873874, + "21180": 0.1783783784, + "21181": 0.1793693694, + "21182": 0.1803603604, + "21183": 0.1813513514, + "21184": 0.1823423423, + "21185": 0.1833333333, + "21186": 0.1843243243, + "21187": 0.1853153153, + "21188": 0.1863063063, + "21189": 0.1872972973, + "21190": 0.1882882883, + "21191": 0.1892792793, + "21192": 0.1902702703, + "21193": 0.1912612613, + "21194": 0.1922522523, + "21195": 0.1932432432, + "21196": 0.1942342342, + "21197": 0.1952252252, + "21198": 0.1962162162, + "21199": 0.1972072072, + "21200": 0.1981981982, + "21201": 0.1991891892, + "21202": 0.2001801802, + "21203": 0.2011711712, + "21204": 0.2021621622, + "21205": 0.2031531532, + "21206": 0.2041441441, + "21207": 0.2051351351, + "21208": 0.2061261261, + "21209": 0.2071171171, + "21210": 0.2081081081, + "21211": 0.2090990991, + "21212": 0.2100900901, + "21213": 0.2110810811, + "21214": 0.2120720721, + "21215": 0.2130630631, + "21216": 0.2140540541, + "21217": 0.215045045, + "21218": 0.216036036, + "21219": 0.217027027, + "21220": 0.218018018, + "21221": 0.219009009, + "21222": 0.22, + "21223": 0.220990991, + "21224": 0.221981982, + "21225": 0.222972973, + "21226": 0.223963964, + "21227": 0.224954955, + "21228": 0.2259459459, + "21229": 0.2269369369, + "21230": 0.2279279279, + "21231": 0.2289189189, + "21232": 0.2299099099, + "21233": 0.2309009009, + "21234": 0.2318918919, + "21235": 0.2328828829, + "21236": 0.2338738739, + "21237": 0.2348648649, + "21238": 0.2358558559, + "21239": 0.2368468468, + "21240": 0.2378378378, + "21241": 0.2388288288, + "21242": 0.2398198198, + "21243": 0.2408108108, + "21244": 0.2418018018, + "21245": 0.2427927928, + "21246": 0.2437837838, + "21247": 0.2447747748, + "21248": 0.2457657658, + "21249": 0.2467567568, + "21250": 0.2477477477, + "21251": 0.2487387387, + "21252": 0.2497297297, + "21253": 0.2507207207, + "21254": 0.2517117117, + "21255": 0.2527027027, + "21256": 0.2536936937, + "21257": 0.2546846847, + "21258": 0.2556756757, + "21259": 0.2566666667, + "21260": 0.2576576577, + "21261": 0.2586486486, + "21262": 0.2596396396, + "21263": 0.2606306306, + "21264": 0.2616216216, + "21265": 0.2626126126, + "21266": 0.2636036036, + "21267": 0.2645945946, + "21268": 0.2655855856, + "21269": 0.2665765766, + "21270": 0.2675675676, + "21271": 0.2685585586, + "21272": 0.2695495495, + "21273": 0.2705405405, + "21274": 0.2715315315, + "21275": 0.2725225225, + "21276": 0.2735135135, + "21277": 0.2745045045, + "21278": 0.2754954955, + "21279": 0.2764864865, + "21280": 0.2774774775, + "21281": 0.2784684685, + "21282": 0.2794594595, + "21283": 0.2804504505, + "21284": 0.2814414414, + "21285": 0.2824324324, + "21286": 0.2834234234, + "21287": 0.2844144144, + "21288": 0.2854054054, + "21289": 0.2863963964, + "21290": 0.2873873874, + "21291": 0.2883783784, + "21292": 0.2893693694, + "21293": 0.2903603604, + "21294": 0.2913513514, + "21295": 0.2923423423, + "21296": 0.2933333333, + "21297": 0.2943243243, + "21298": 0.2953153153, + "21299": 0.2963063063, + "21300": 0.2972972973, + "21301": 0.2982882883, + "21302": 0.2992792793, + "21303": 0.3002702703, + "21304": 0.3012612613, + "21305": 0.3022522523, + "21306": 0.3032432432, + "21307": 0.3042342342, + "21308": 0.3052252252, + "21309": 0.3062162162, + "21310": 0.3072072072, + "21311": 0.3081981982, + "21312": 0.3091891892, + "21313": 0.3101801802, + "21314": 0.3111711712, + "21315": 0.3121621622, + "21316": 0.3131531532, + "21317": 0.3141441441, + "21318": 0.3151351351, + "21319": 0.3161261261, + "21320": 0.3171171171, + "21321": 0.3181081081, + "21322": 0.3190990991, + "21323": 0.3200900901, + "21324": 0.3210810811, + "21325": 0.3220720721, + "21326": 0.3230630631, + "21327": 0.3240540541, + "21328": 0.325045045, + "21329": 0.326036036, + "21330": 0.327027027, + "21331": 0.328018018, + "21332": 0.329009009, + "21333": 0.33, + "21334": 0.330990991, + "21335": 0.331981982, + "21336": 0.332972973, + "21337": 0.333963964, + "21338": 0.334954955, + "21339": 0.3359459459, + "21340": 0.3369369369, + "21341": 0.3379279279, + "21342": 0.3389189189, + "21343": 0.3399099099, + "21344": 0.3409009009, + "21345": 0.3418918919, + "21346": 0.3428828829, + "21347": 0.3438738739, + "21348": 0.3448648649, + "21349": 0.3458558559, + "21350": 0.3468468468, + "21351": 0.3478378378, + "21352": 0.3488288288, + "21353": 0.3498198198, + "21354": 0.3508108108, + "21355": 0.3518018018, + "21356": 0.3527927928, + "21357": 0.3537837838, + "21358": 0.3547747748, + "21359": 0.3557657658, + "21360": 0.3567567568, + "21361": 0.3577477477, + "21362": 0.3587387387, + "21363": 0.3597297297, + "21364": 0.3607207207, + "21365": 0.3617117117, + "21366": 0.3627027027, + "21367": 0.3636936937, + "21368": 0.3646846847, + "21369": 0.3656756757, + "21370": 0.3666666667, + "21371": 0.3676576577, + "21372": 0.3686486486, + "21373": 0.3696396396, + "21374": 0.3706306306, + "21375": 0.3716216216, + "21376": 0.3726126126, + "21377": 0.3736036036, + "21378": 0.3745945946, + "21379": 0.3755855856, + "21380": 0.3765765766, + "21381": 0.3775675676, + "21382": 0.3785585586, + "21383": 0.3795495495, + "21384": 0.3805405405, + "21385": 0.3815315315, + "21386": 0.3825225225, + "21387": 0.3835135135, + "21388": 0.3845045045, + "21389": 0.3854954955, + "21390": 0.3864864865, + "21391": 0.3874774775, + "21392": 0.3884684685, + "21393": 0.3894594595, + "21394": 0.3904504505, + "21395": 0.3914414414, + "21396": 0.3924324324, + "21397": 0.3934234234, + "21398": 0.3944144144, + "21399": 0.3954054054, + "21400": 0.3963963964, + "21401": 0.3973873874, + "21402": 0.3983783784, + "21403": 0.3993693694, + "21404": 0.4003603604, + "21405": 0.4013513514, + "21406": 0.4023423423, + "21407": 0.4033333333, + "21408": 0.4043243243, + "21409": 0.4053153153, + "21410": 0.4063063063, + "21411": 0.4072972973, + "21412": 0.4082882883, + "21413": 0.4092792793, + "21414": 0.4102702703, + "21415": 0.4112612613, + "21416": 0.4122522523, + "21417": 0.4132432432, + "21418": 0.4142342342, + "21419": 0.4152252252, + "21420": 0.4162162162, + "21421": 0.4172072072, + "21422": 0.4181981982, + "21423": 0.4191891892, + "21424": 0.4201801802, + "21425": 0.4211711712, + "21426": 0.4221621622, + "21427": 0.4231531532, + "21428": 0.4241441441, + "21429": 0.4251351351, + "21430": 0.4261261261, + "21431": 0.4271171171, + "21432": 0.4281081081, + "21433": 0.4290990991, + "21434": 0.4300900901, + "21435": 0.4310810811, + "21436": 0.4320720721, + "21437": 0.4330630631, + "21438": 0.4340540541, + "21439": 0.435045045, + "21440": 0.436036036, + "21441": 0.437027027, + "21442": 0.438018018, + "21443": 0.439009009, + "21444": 0.44, + "21445": 0.440990991, + "21446": 0.441981982, + "21447": 0.442972973, + "21448": 0.443963964, + "21449": 0.444954955, + "21450": 0.4459459459, + "21451": 0.4469369369, + "21452": 0.4479279279, + "21453": 0.4489189189, + "21454": 0.4499099099, + "21455": 0.4509009009, + "21456": 0.4518918919, + "21457": 0.4528828829, + "21458": 0.4538738739, + "21459": 0.4548648649, + "21460": 0.4558558559, + "21461": 0.4568468468, + "21462": 0.4578378378, + "21463": 0.4588288288, + "21464": 0.4598198198, + "21465": 0.4608108108, + "21466": 0.4618018018, + "21467": 0.4627927928, + "21468": 0.4637837838, + "21469": 0.4647747748, + "21470": 0.4657657658, + "21471": 0.4667567568, + "21472": 0.4677477477, + "21473": 0.4687387387, + "21474": 0.4697297297, + "21475": 0.4707207207, + "21476": 0.4717117117, + "21477": 0.4727027027, + "21478": 0.4736936937, + "21479": 0.4746846847, + "21480": 0.4756756757, + "21481": 0.4766666667, + "21482": 0.4776576577, + "21483": 0.4786486486, + "21484": 0.4796396396, + "21485": 0.4806306306, + "21486": 0.4816216216, + "21487": 0.4826126126, + "21488": 0.4836036036, + "21489": 0.4845945946, + "21490": 0.4855855856, + "21491": 0.4865765766, + "21492": 0.4875675676, + "21493": 0.4885585586, + "21494": 0.4895495495, + "21495": 0.4905405405, + "21496": 0.4915315315, + "21497": 0.4925225225, + "21498": 0.4935135135, + "21499": 0.4945045045, + "21500": 0.4954954955, + "21501": 0.4964864865, + "21502": 0.4974774775, + "21503": 0.4984684685, + "21504": 0.4994594595, + "21505": 0.5004504505, + "21506": 0.5014414414, + "21507": 0.5024324324, + "21508": 0.5034234234, + "21509": 0.5044144144, + "21510": 0.5054054054, + "21511": 0.5063963964, + "21512": 0.5073873874, + "21513": 0.5083783784, + "21514": 0.5093693694, + "21515": 0.5103603604, + "21516": 0.5113513514, + "21517": 0.5123423423, + "21518": 0.5133333333, + "21519": 0.5143243243, + "21520": 0.5153153153, + "21521": 0.5163063063, + "21522": 0.5172972973, + "21523": 0.5182882883, + "21524": 0.5192792793, + "21525": 0.5202702703, + "21526": 0.5212612613, + "21527": 0.5222522523, + "21528": 0.5232432432, + "21529": 0.5242342342, + "21530": 0.5252252252, + "21531": 0.5262162162, + "21532": 0.5272072072, + "21533": 0.5281981982, + "21534": 0.5291891892, + "21535": 0.5301801802, + "21536": 0.5311711712, + "21537": 0.5321621622, + "21538": 0.5331531532, + "21539": 0.5341441441, + "21540": 0.5351351351, + "21541": 0.5361261261, + "21542": 0.5371171171, + "21543": 0.5381081081, + "21544": 0.5390990991, + "21545": 0.5400900901, + "21546": 0.5410810811, + "21547": 0.5420720721, + "21548": 0.5430630631, + "21549": 0.5440540541, + "21550": 0.545045045, + "21551": 0.546036036, + "21552": 0.547027027, + "21553": 0.548018018, + "21554": 0.549009009, + "21555": 0.55, + "21556": 0.550990991, + "21557": 0.551981982, + "21558": 0.552972973, + "21559": 0.553963964, + "21560": 0.554954955, + "21561": 0.5559459459, + "21562": 0.5569369369, + "21563": 0.5579279279, + "21564": 0.5589189189, + "21565": 0.5599099099, + "21566": 0.5609009009, + "21567": 0.5618918919, + "21568": 0.5628828829, + "21569": 0.5638738739, + "21570": 0.5648648649, + "21571": 0.5658558559, + "21572": 0.5668468468, + "21573": 0.5678378378, + "21574": 0.5688288288, + "21575": 0.5698198198, + "21576": 0.5708108108, + "21577": 0.5718018018, + "21578": 0.5727927928, + "21579": 0.5737837838, + "21580": 0.5747747748, + "21581": 0.5757657658, + "21582": 0.5767567568, + "21583": 0.5777477477, + "21584": 0.5787387387, + "21585": 0.5797297297, + "21586": 0.5807207207, + "21587": 0.5817117117, + "21588": 0.5827027027, + "21589": 0.5836936937, + "21590": 0.5846846847, + "21591": 0.5856756757, + "21592": 0.5866666667, + "21593": 0.5876576577, + "21594": 0.5886486486, + "21595": 0.5896396396, + "21596": 0.5906306306, + "21597": 0.5916216216, + "21598": 0.5926126126, + "21599": 0.5936036036, + "21600": 0.5945945946, + "21601": 0.5955855856, + "21602": 0.5965765766, + "21603": 0.5975675676, + "21604": 0.5985585586, + "21605": 0.5995495495, + "21606": 0.6005405405, + "21607": 0.6015315315, + "21608": 0.6025225225, + "21609": 0.6035135135, + "21610": 0.6045045045, + "21611": 0.6054954955, + "21612": 0.6064864865, + "21613": 0.6074774775, + "21614": 0.6084684685, + "21615": 0.6094594595, + "21616": 0.6104504505, + "21617": 0.6114414414, + "21618": 0.6124324324, + "21619": 0.6134234234, + "21620": 0.6144144144, + "21621": 0.6154054054, + "21622": 0.6163963964, + "21623": 0.6173873874, + "21624": 0.6183783784, + "21625": 0.6193693694, + "21626": 0.6203603604, + "21627": 0.6213513514, + "21628": 0.6223423423, + "21629": 0.6233333333, + "21630": 0.6243243243, + "21631": 0.6253153153, + "21632": 0.6263063063, + "21633": 0.6272972973, + "21634": 0.6282882883, + "21635": 0.6292792793, + "21636": 0.6302702703, + "21637": 0.6312612613, + "21638": 0.6322522523, + "21639": 0.6332432432, + "21640": 0.6342342342, + "21641": 0.6352252252, + "21642": 0.6362162162, + "21643": 0.6372072072, + "21644": 0.6381981982, + "21645": 0.6391891892, + "21646": 0.6401801802, + "21647": 0.6411711712, + "21648": 0.6421621622, + "21649": 0.6431531532, + "21650": 0.6441441441, + "21651": 0.6451351351, + "21652": 0.6461261261, + "21653": 0.6471171171, + "21654": 0.6481081081, + "21655": 0.6490990991, + "21656": 0.6500900901, + "21657": 0.6510810811, + "21658": 0.6520720721, + "21659": 0.6530630631, + "21660": 0.6540540541, + "21661": 0.655045045, + "21662": 0.656036036, + "21663": 0.657027027, + "21664": 0.658018018, + "21665": 0.659009009, + "21666": 0.66, + "21667": 0.660990991, + "21668": 0.661981982, + "21669": 0.662972973, + "21670": 0.663963964, + "21671": 0.664954955, + "21672": 0.6659459459, + "21673": 0.6669369369, + "21674": 0.6679279279, + "21675": 0.6689189189, + "21676": 0.6699099099, + "21677": 0.6709009009, + "21678": 0.6718918919, + "21679": 0.6728828829, + "21680": 0.6738738739, + "21681": 0.6748648649, + "21682": 0.6758558559, + "21683": 0.6768468468, + "21684": 0.6778378378, + "21685": 0.6788288288, + "21686": 0.6798198198, + "21687": 0.6808108108, + "21688": 0.6818018018, + "21689": 0.6827927928, + "21690": 0.6837837838, + "21691": 0.6847747748, + "21692": 0.6857657658, + "21693": 0.6867567568, + "21694": 0.6877477477, + "21695": 0.6887387387, + "21696": 0.6897297297, + "21697": 0.6907207207, + "21698": 0.6917117117, + "21699": 0.6927027027, + "21700": 0.6936936937, + "21701": 0.6946846847, + "21702": 0.6956756757, + "21703": 0.6966666667, + "21704": 0.6976576577, + "21705": 0.6986486486, + "21706": 0.6996396396, + "21707": 0.7006306306, + "21708": 0.7016216216, + "21709": 0.7026126126, + "21710": 0.7036036036, + "21711": 0.7045945946, + "21712": 0.7055855856, + "21713": 0.7065765766, + "21714": 0.7075675676, + "21715": 0.7085585586, + "21716": 0.7095495495, + "21717": 0.7105405405, + "21718": 0.7115315315, + "21719": 0.7125225225, + "21720": 0.7135135135, + "21721": 0.7145045045, + "21722": 0.7154954955, + "21723": 0.7164864865, + "21724": 0.7174774775, + "21725": 0.7184684685, + "21726": 0.7194594595, + "21727": 0.7204504505, + "21728": 0.7214414414, + "21729": 0.7224324324, + "21730": 0.7234234234, + "21731": 0.7244144144, + "21732": 0.7254054054, + "21733": 0.7263963964, + "21734": 0.7273873874, + "21735": 0.7283783784, + "21736": 0.7293693694, + "21737": 0.7303603604, + "21738": 0.7313513514, + "21739": 0.7323423423, + "21740": 0.7333333333, + "21741": 0.7343243243, + "21742": 0.7353153153, + "21743": 0.7363063063, + "21744": 0.7372972973, + "21745": 0.7382882883, + "21746": 0.7392792793, + "21747": 0.7402702703, + "21748": 0.7412612613, + "21749": 0.7422522523, + "21750": 0.7432432432, + "21751": 0.7442342342, + "21752": 0.7452252252, + "21753": 0.7462162162, + "21754": 0.7472072072, + "21755": 0.7481981982, + "21756": 0.7491891892, + "21757": 0.7501801802, + "21758": 0.7511711712, + "21759": 0.7521621622, + "21760": 0.7531531532, + "21761": 0.7541441441, + "21762": 0.7551351351, + "21763": 0.7561261261, + "21764": 0.7571171171, + "21765": 0.7581081081, + "21766": 0.7590990991, + "21767": 0.7600900901, + "21768": 0.7610810811, + "21769": 0.7620720721, + "21770": 0.7630630631, + "21771": 0.7640540541, + "21772": 0.765045045, + "21773": 0.766036036, + "21774": 0.767027027, + "21775": 0.768018018, + "21776": 0.769009009, + "21777": 0.77, + "21778": 0.770990991, + "21779": 0.771981982, + "21780": 0.772972973, + "21781": 0.773963964, + "21782": 0.774954955, + "21783": 0.7759459459, + "21784": 0.7769369369, + "21785": 0.7779279279, + "21786": 0.7789189189, + "21787": 0.7799099099, + "21788": 0.7809009009, + "21789": 0.7818918919, + "21790": 0.7828828829, + "21791": 0.7838738739, + "21792": 0.7848648649, + "21793": 0.7858558559, + "21794": 0.7868468468, + "21795": 0.7878378378, + "21796": 0.7888288288, + "21797": 0.7898198198, + "21798": 0.7908108108, + "21799": 0.7918018018, + "21800": 0.7927927928, + "21801": 0.7937837838, + "21802": 0.7947747748, + "21803": 0.7957657658, + "21804": 0.7967567568, + "21805": 0.7977477477, + "21806": 0.7987387387, + "21807": 0.7997297297, + "21808": 0.8007207207, + "21809": 0.8017117117, + "21810": 0.8027027027, + "21811": 0.8036936937, + "21812": 0.8046846847, + "21813": 0.8056756757, + "21814": 0.8066666667, + "21815": 0.8076576577, + "21816": 0.8086486486, + "21817": 0.8096396396, + "21818": 0.8106306306, + "21819": 0.8116216216, + "21820": 0.8126126126, + "21821": 0.8136036036, + "21822": 0.8145945946, + "21823": 0.8155855856, + "21824": 0.8165765766, + "21825": 0.8175675676, + "21826": 0.8185585586, + "21827": 0.8195495495, + "21828": 0.8205405405, + "21829": 0.8215315315, + "21830": 0.8225225225, + "21831": 0.8235135135, + "21832": 0.8245045045, + "21833": 0.8254954955, + "21834": 0.8264864865, + "21835": 0.8274774775, + "21836": 0.8284684685, + "21837": 0.8294594595, + "21838": 0.8304504505, + "21839": 0.8314414414, + "21840": 0.8324324324, + "21841": 0.8334234234, + "21842": 0.8344144144, + "21843": 0.8354054054, + "21844": 0.8363963964, + "21845": 0.8373873874, + "21846": 0.8383783784, + "21847": 0.8393693694, + "21848": 0.8403603604, + "21849": 0.8413513514, + "21850": 0.8423423423, + "21851": 0.8433333333, + "21852": 0.8443243243, + "21853": 0.8453153153, + "21854": 0.8463063063, + "21855": 0.8472972973, + "21856": 0.8482882883, + "21857": 0.8492792793, + "21858": 0.8502702703, + "21859": 0.8512612613, + "21860": 0.8522522523, + "21861": 0.8532432432, + "21862": 0.8542342342, + "21863": 0.8552252252, + "21864": 0.8562162162, + "21865": 0.8572072072, + "21866": 0.8581981982, + "21867": 0.8591891892, + "21868": 0.8601801802, + "21869": 0.8611711712, + "21870": 0.8621621622, + "21871": 0.8631531532, + "21872": 0.8641441441, + "21873": 0.8651351351, + "21874": 0.8661261261, + "21875": 0.8671171171, + "21876": 0.8681081081, + "21877": 0.8690990991, + "21878": 0.8700900901, + "21879": 0.8710810811, + "21880": 0.8720720721, + "21881": 0.8730630631, + "21882": 0.8740540541, + "21883": 0.875045045, + "21884": 0.876036036, + "21885": 0.877027027, + "21886": 0.878018018, + "21887": 0.879009009, + "21888": 0.88, + "21889": 0.880990991, + "21890": 0.881981982, + "21891": 0.882972973, + "21892": 0.883963964, + "21893": 0.884954955, + "21894": 0.8859459459, + "21895": 0.8869369369, + "21896": 0.8879279279, + "21897": 0.8889189189, + "21898": 0.8899099099, + "21899": 0.8909009009, + "21900": 0.8918918919, + "21901": 0.8928828829, + "21902": 0.8938738739, + "21903": 0.8948648649, + "21904": 0.8958558559, + "21905": 0.8968468468, + "21906": 0.8978378378, + "21907": 0.8988288288, + "21908": 0.8998198198, + "21909": 0.9008108108, + "21910": 0.9018018018, + "21911": 0.9027927928, + "21912": 0.9037837838, + "21913": 0.9047747748, + "21914": 0.9057657658, + "21915": 0.9067567568, + "21916": 0.9077477477, + "21917": 0.9087387387, + "21918": 0.9097297297, + "21919": 0.9107207207, + "21920": 0.9117117117, + "21921": 0.9127027027, + "21922": 0.9136936937, + "21923": 0.9146846847, + "21924": 0.9156756757, + "21925": 0.9166666667, + "21926": 0.9176576577, + "21927": 0.9186486486, + "21928": 0.9196396396, + "21929": 0.9206306306, + "21930": 0.9216216216, + "21931": 0.9226126126, + "21932": 0.9236036036, + "21933": 0.9245945946, + "21934": 0.9255855856, + "21935": 0.9265765766, + "21936": 0.9275675676, + "21937": 0.9285585586, + "21938": 0.9295495495, + "21939": 0.9305405405, + "21940": 0.9315315315, + "21941": 0.9325225225, + "21942": 0.9335135135, + "21943": 0.9345045045, + "21944": 0.9354954955, + "21945": 0.9364864865, + "21946": 0.9374774775, + "21947": 0.9384684685, + "21948": 0.9394594595, + "21949": 0.9404504505, + "21950": 0.9414414414, + "21951": 0.9424324324, + "21952": 0.9434234234, + "21953": 0.9444144144, + "21954": 0.9454054054, + "21955": 0.9463963964, + "21956": 0.9473873874, + "21957": 0.9483783784, + "21958": 0.9493693694, + "21959": 0.9503603604, + "21960": 0.9513513514, + "21961": 0.9523423423, + "21962": 0.9533333333, + "21963": 0.9543243243, + "21964": 0.9553153153, + "21965": 0.9563063063, + "21966": 0.9572972973, + "21967": 0.9582882883, + "21968": 0.9592792793, + "21969": 0.9602702703, + "21970": 0.9612612613, + "21971": 0.9622522523, + "21972": 0.9632432432, + "21973": 0.9642342342, + "21974": 0.9652252252, + "21975": 0.9662162162, + "21976": 0.9672072072, + "21977": 0.9681981982, + "21978": 0.9691891892, + "21979": 0.9701801802, + "21980": 0.9711711712, + "21981": 0.9721621622, + "21982": 0.9731531532, + "21983": 0.9741441441, + "21984": 0.9751351351, + "21985": 0.9761261261, + "21986": 0.9771171171, + "21987": 0.9781081081, + "21988": 0.9790990991, + "21989": 0.9800900901, + "21990": 0.9810810811, + "21991": 0.9820720721, + "21992": 0.9830630631, + "21993": 0.9840540541, + "21994": 0.985045045, + "21995": 0.986036036, + "21996": 0.987027027, + "21997": 0.988018018, + "21998": 0.989009009, + "21999": 0.99, + "22000": 0.0, + "22001": 0.000990991, + "22002": 0.001981982, + "22003": 0.002972973, + "22004": 0.003963964, + "22005": 0.004954955, + "22006": 0.0059459459, + "22007": 0.0069369369, + "22008": 0.0079279279, + "22009": 0.0089189189, + "22010": 0.0099099099, + "22011": 0.0109009009, + "22012": 0.0118918919, + "22013": 0.0128828829, + "22014": 0.0138738739, + "22015": 0.0148648649, + "22016": 0.0158558559, + "22017": 0.0168468468, + "22018": 0.0178378378, + "22019": 0.0188288288, + "22020": 0.0198198198, + "22021": 0.0208108108, + "22022": 0.0218018018, + "22023": 0.0227927928, + "22024": 0.0237837838, + "22025": 0.0247747748, + "22026": 0.0257657658, + "22027": 0.0267567568, + "22028": 0.0277477477, + "22029": 0.0287387387, + "22030": 0.0297297297, + "22031": 0.0307207207, + "22032": 0.0317117117, + "22033": 0.0327027027, + "22034": 0.0336936937, + "22035": 0.0346846847, + "22036": 0.0356756757, + "22037": 0.0366666667, + "22038": 0.0376576577, + "22039": 0.0386486486, + "22040": 0.0396396396, + "22041": 0.0406306306, + "22042": 0.0416216216, + "22043": 0.0426126126, + "22044": 0.0436036036, + "22045": 0.0445945946, + "22046": 0.0455855856, + "22047": 0.0465765766, + "22048": 0.0475675676, + "22049": 0.0485585586, + "22050": 0.0495495495, + "22051": 0.0505405405, + "22052": 0.0515315315, + "22053": 0.0525225225, + "22054": 0.0535135135, + "22055": 0.0545045045, + "22056": 0.0554954955, + "22057": 0.0564864865, + "22058": 0.0574774775, + "22059": 0.0584684685, + "22060": 0.0594594595, + "22061": 0.0604504505, + "22062": 0.0614414414, + "22063": 0.0624324324, + "22064": 0.0634234234, + "22065": 0.0644144144, + "22066": 0.0654054054, + "22067": 0.0663963964, + "22068": 0.0673873874, + "22069": 0.0683783784, + "22070": 0.0693693694, + "22071": 0.0703603604, + "22072": 0.0713513514, + "22073": 0.0723423423, + "22074": 0.0733333333, + "22075": 0.0743243243, + "22076": 0.0753153153, + "22077": 0.0763063063, + "22078": 0.0772972973, + "22079": 0.0782882883, + "22080": 0.0792792793, + "22081": 0.0802702703, + "22082": 0.0812612613, + "22083": 0.0822522523, + "22084": 0.0832432432, + "22085": 0.0842342342, + "22086": 0.0852252252, + "22087": 0.0862162162, + "22088": 0.0872072072, + "22089": 0.0881981982, + "22090": 0.0891891892, + "22091": 0.0901801802, + "22092": 0.0911711712, + "22093": 0.0921621622, + "22094": 0.0931531532, + "22095": 0.0941441441, + "22096": 0.0951351351, + "22097": 0.0961261261, + "22098": 0.0971171171, + "22099": 0.0981081081, + "22100": 0.0990990991, + "22101": 0.1000900901, + "22102": 0.1010810811, + "22103": 0.1020720721, + "22104": 0.1030630631, + "22105": 0.1040540541, + "22106": 0.105045045, + "22107": 0.106036036, + "22108": 0.107027027, + "22109": 0.108018018, + "22110": 0.109009009, + "22111": 0.11, + "22112": 0.110990991, + "22113": 0.111981982, + "22114": 0.112972973, + "22115": 0.113963964, + "22116": 0.114954955, + "22117": 0.1159459459, + "22118": 0.1169369369, + "22119": 0.1179279279, + "22120": 0.1189189189, + "22121": 0.1199099099, + "22122": 0.1209009009, + "22123": 0.1218918919, + "22124": 0.1228828829, + "22125": 0.1238738739, + "22126": 0.1248648649, + "22127": 0.1258558559, + "22128": 0.1268468468, + "22129": 0.1278378378, + "22130": 0.1288288288, + "22131": 0.1298198198, + "22132": 0.1308108108, + "22133": 0.1318018018, + "22134": 0.1327927928, + "22135": 0.1337837838, + "22136": 0.1347747748, + "22137": 0.1357657658, + "22138": 0.1367567568, + "22139": 0.1377477477, + "22140": 0.1387387387, + "22141": 0.1397297297, + "22142": 0.1407207207, + "22143": 0.1417117117, + "22144": 0.1427027027, + "22145": 0.1436936937, + "22146": 0.1446846847, + "22147": 0.1456756757, + "22148": 0.1466666667, + "22149": 0.1476576577, + "22150": 0.1486486486, + "22151": 0.1496396396, + "22152": 0.1506306306, + "22153": 0.1516216216, + "22154": 0.1526126126, + "22155": 0.1536036036, + "22156": 0.1545945946, + "22157": 0.1555855856, + "22158": 0.1565765766, + "22159": 0.1575675676, + "22160": 0.1585585586, + "22161": 0.1595495495, + "22162": 0.1605405405, + "22163": 0.1615315315, + "22164": 0.1625225225, + "22165": 0.1635135135, + "22166": 0.1645045045, + "22167": 0.1654954955, + "22168": 0.1664864865, + "22169": 0.1674774775, + "22170": 0.1684684685, + "22171": 0.1694594595, + "22172": 0.1704504505, + "22173": 0.1714414414, + "22174": 0.1724324324, + "22175": 0.1734234234, + "22176": 0.1744144144, + "22177": 0.1754054054, + "22178": 0.1763963964, + "22179": 0.1773873874, + "22180": 0.1783783784, + "22181": 0.1793693694, + "22182": 0.1803603604, + "22183": 0.1813513514, + "22184": 0.1823423423, + "22185": 0.1833333333, + "22186": 0.1843243243, + "22187": 0.1853153153, + "22188": 0.1863063063, + "22189": 0.1872972973, + "22190": 0.1882882883, + "22191": 0.1892792793, + "22192": 0.1902702703, + "22193": 0.1912612613, + "22194": 0.1922522523, + "22195": 0.1932432432, + "22196": 0.1942342342, + "22197": 0.1952252252, + "22198": 0.1962162162, + "22199": 0.1972072072, + "22200": 0.1981981982, + "22201": 0.1991891892, + "22202": 0.2001801802, + "22203": 0.2011711712, + "22204": 0.2021621622, + "22205": 0.2031531532, + "22206": 0.2041441441, + "22207": 0.2051351351, + "22208": 0.2061261261, + "22209": 0.2071171171, + "22210": 0.2081081081, + "22211": 0.2090990991, + "22212": 0.2100900901, + "22213": 0.2110810811, + "22214": 0.2120720721, + "22215": 0.2130630631, + "22216": 0.2140540541, + "22217": 0.215045045, + "22218": 0.216036036, + "22219": 0.217027027, + "22220": 0.218018018, + "22221": 0.219009009, + "22222": 0.22, + "22223": 0.220990991, + "22224": 0.221981982, + "22225": 0.222972973, + "22226": 0.223963964, + "22227": 0.224954955, + "22228": 0.2259459459, + "22229": 0.2269369369, + "22230": 0.2279279279, + "22231": 0.2289189189, + "22232": 0.2299099099, + "22233": 0.2309009009, + "22234": 0.2318918919, + "22235": 0.2328828829, + "22236": 0.2338738739, + "22237": 0.2348648649, + "22238": 0.2358558559, + "22239": 0.2368468468, + "22240": 0.2378378378, + "22241": 0.2388288288, + "22242": 0.2398198198, + "22243": 0.2408108108, + "22244": 0.2418018018, + "22245": 0.2427927928, + "22246": 0.2437837838, + "22247": 0.2447747748, + "22248": 0.2457657658, + "22249": 0.2467567568, + "22250": 0.2477477477, + "22251": 0.2487387387, + "22252": 0.2497297297, + "22253": 0.2507207207, + "22254": 0.2517117117, + "22255": 0.2527027027, + "22256": 0.2536936937, + "22257": 0.2546846847, + "22258": 0.2556756757, + "22259": 0.2566666667, + "22260": 0.2576576577, + "22261": 0.2586486486, + "22262": 0.2596396396, + "22263": 0.2606306306, + "22264": 0.2616216216, + "22265": 0.2626126126, + "22266": 0.2636036036, + "22267": 0.2645945946, + "22268": 0.2655855856, + "22269": 0.2665765766, + "22270": 0.2675675676, + "22271": 0.2685585586, + "22272": 0.2695495495, + "22273": 0.2705405405, + "22274": 0.2715315315, + "22275": 0.2725225225, + "22276": 0.2735135135, + "22277": 0.2745045045, + "22278": 0.2754954955, + "22279": 0.2764864865, + "22280": 0.2774774775, + "22281": 0.2784684685, + "22282": 0.2794594595, + "22283": 0.2804504505, + "22284": 0.2814414414, + "22285": 0.2824324324, + "22286": 0.2834234234, + "22287": 0.2844144144, + "22288": 0.2854054054, + "22289": 0.2863963964, + "22290": 0.2873873874, + "22291": 0.2883783784, + "22292": 0.2893693694, + "22293": 0.2903603604, + "22294": 0.2913513514, + "22295": 0.2923423423, + "22296": 0.2933333333, + "22297": 0.2943243243, + "22298": 0.2953153153, + "22299": 0.2963063063, + "22300": 0.2972972973, + "22301": 0.2982882883, + "22302": 0.2992792793, + "22303": 0.3002702703, + "22304": 0.3012612613, + "22305": 0.3022522523, + "22306": 0.3032432432, + "22307": 0.3042342342, + "22308": 0.3052252252, + "22309": 0.3062162162, + "22310": 0.3072072072, + "22311": 0.3081981982, + "22312": 0.3091891892, + "22313": 0.3101801802, + "22314": 0.3111711712, + "22315": 0.3121621622, + "22316": 0.3131531532, + "22317": 0.3141441441, + "22318": 0.3151351351, + "22319": 0.3161261261, + "22320": 0.3171171171, + "22321": 0.3181081081, + "22322": 0.3190990991, + "22323": 0.3200900901, + "22324": 0.3210810811, + "22325": 0.3220720721, + "22326": 0.3230630631, + "22327": 0.3240540541, + "22328": 0.325045045, + "22329": 0.326036036, + "22330": 0.327027027, + "22331": 0.328018018, + "22332": 0.329009009, + "22333": 0.33, + "22334": 0.330990991, + "22335": 0.331981982, + "22336": 0.332972973, + "22337": 0.333963964, + "22338": 0.334954955, + "22339": 0.3359459459, + "22340": 0.3369369369, + "22341": 0.3379279279, + "22342": 0.3389189189, + "22343": 0.3399099099, + "22344": 0.3409009009, + "22345": 0.3418918919, + "22346": 0.3428828829, + "22347": 0.3438738739, + "22348": 0.3448648649, + "22349": 0.3458558559, + "22350": 0.3468468468, + "22351": 0.3478378378, + "22352": 0.3488288288, + "22353": 0.3498198198, + "22354": 0.3508108108, + "22355": 0.3518018018, + "22356": 0.3527927928, + "22357": 0.3537837838, + "22358": 0.3547747748, + "22359": 0.3557657658, + "22360": 0.3567567568, + "22361": 0.3577477477, + "22362": 0.3587387387, + "22363": 0.3597297297, + "22364": 0.3607207207, + "22365": 0.3617117117, + "22366": 0.3627027027, + "22367": 0.3636936937, + "22368": 0.3646846847, + "22369": 0.3656756757, + "22370": 0.3666666667, + "22371": 0.3676576577, + "22372": 0.3686486486, + "22373": 0.3696396396, + "22374": 0.3706306306, + "22375": 0.3716216216, + "22376": 0.3726126126, + "22377": 0.3736036036, + "22378": 0.3745945946, + "22379": 0.3755855856, + "22380": 0.3765765766, + "22381": 0.3775675676, + "22382": 0.3785585586, + "22383": 0.3795495495, + "22384": 0.3805405405, + "22385": 0.3815315315, + "22386": 0.3825225225, + "22387": 0.3835135135, + "22388": 0.3845045045, + "22389": 0.3854954955, + "22390": 0.3864864865, + "22391": 0.3874774775, + "22392": 0.3884684685, + "22393": 0.3894594595, + "22394": 0.3904504505, + "22395": 0.3914414414, + "22396": 0.3924324324, + "22397": 0.3934234234, + "22398": 0.3944144144, + "22399": 0.3954054054, + "22400": 0.3963963964, + "22401": 0.3973873874, + "22402": 0.3983783784, + "22403": 0.3993693694, + "22404": 0.4003603604, + "22405": 0.4013513514, + "22406": 0.4023423423, + "22407": 0.4033333333, + "22408": 0.4043243243, + "22409": 0.4053153153, + "22410": 0.4063063063, + "22411": 0.4072972973, + "22412": 0.4082882883, + "22413": 0.4092792793, + "22414": 0.4102702703, + "22415": 0.4112612613, + "22416": 0.4122522523, + "22417": 0.4132432432, + "22418": 0.4142342342, + "22419": 0.4152252252, + "22420": 0.4162162162, + "22421": 0.4172072072, + "22422": 0.4181981982, + "22423": 0.4191891892, + "22424": 0.4201801802, + "22425": 0.4211711712, + "22426": 0.4221621622, + "22427": 0.4231531532, + "22428": 0.4241441441, + "22429": 0.4251351351, + "22430": 0.4261261261, + "22431": 0.4271171171, + "22432": 0.4281081081, + "22433": 0.4290990991, + "22434": 0.4300900901, + "22435": 0.4310810811, + "22436": 0.4320720721, + "22437": 0.4330630631, + "22438": 0.4340540541, + "22439": 0.435045045, + "22440": 0.436036036, + "22441": 0.437027027, + "22442": 0.438018018, + "22443": 0.439009009, + "22444": 0.44, + "22445": 0.440990991, + "22446": 0.441981982, + "22447": 0.442972973, + "22448": 0.443963964, + "22449": 0.444954955, + "22450": 0.4459459459, + "22451": 0.4469369369, + "22452": 0.4479279279, + "22453": 0.4489189189, + "22454": 0.4499099099, + "22455": 0.4509009009, + "22456": 0.4518918919, + "22457": 0.4528828829, + "22458": 0.4538738739, + "22459": 0.4548648649, + "22460": 0.4558558559, + "22461": 0.4568468468, + "22462": 0.4578378378, + "22463": 0.4588288288, + "22464": 0.4598198198, + "22465": 0.4608108108, + "22466": 0.4618018018, + "22467": 0.4627927928, + "22468": 0.4637837838, + "22469": 0.4647747748, + "22470": 0.4657657658, + "22471": 0.4667567568, + "22472": 0.4677477477, + "22473": 0.4687387387, + "22474": 0.4697297297, + "22475": 0.4707207207, + "22476": 0.4717117117, + "22477": 0.4727027027, + "22478": 0.4736936937, + "22479": 0.4746846847, + "22480": 0.4756756757, + "22481": 0.4766666667, + "22482": 0.4776576577, + "22483": 0.4786486486, + "22484": 0.4796396396, + "22485": 0.4806306306, + "22486": 0.4816216216, + "22487": 0.4826126126, + "22488": 0.4836036036, + "22489": 0.4845945946, + "22490": 0.4855855856, + "22491": 0.4865765766, + "22492": 0.4875675676, + "22493": 0.4885585586, + "22494": 0.4895495495, + "22495": 0.4905405405, + "22496": 0.4915315315, + "22497": 0.4925225225, + "22498": 0.4935135135, + "22499": 0.4945045045, + "22500": 0.4954954955, + "22501": 0.4964864865, + "22502": 0.4974774775, + "22503": 0.4984684685, + "22504": 0.4994594595, + "22505": 0.5004504505, + "22506": 0.5014414414, + "22507": 0.5024324324, + "22508": 0.5034234234, + "22509": 0.5044144144, + "22510": 0.5054054054, + "22511": 0.5063963964, + "22512": 0.5073873874, + "22513": 0.5083783784, + "22514": 0.5093693694, + "22515": 0.5103603604, + "22516": 0.5113513514, + "22517": 0.5123423423, + "22518": 0.5133333333, + "22519": 0.5143243243, + "22520": 0.5153153153, + "22521": 0.5163063063, + "22522": 0.5172972973, + "22523": 0.5182882883, + "22524": 0.5192792793, + "22525": 0.5202702703, + "22526": 0.5212612613, + "22527": 0.5222522523, + "22528": 0.5232432432, + "22529": 0.5242342342, + "22530": 0.5252252252, + "22531": 0.5262162162, + "22532": 0.5272072072, + "22533": 0.5281981982, + "22534": 0.5291891892, + "22535": 0.5301801802, + "22536": 0.5311711712, + "22537": 0.5321621622, + "22538": 0.5331531532, + "22539": 0.5341441441, + "22540": 0.5351351351, + "22541": 0.5361261261, + "22542": 0.5371171171, + "22543": 0.5381081081, + "22544": 0.5390990991, + "22545": 0.5400900901, + "22546": 0.5410810811, + "22547": 0.5420720721, + "22548": 0.5430630631, + "22549": 0.5440540541, + "22550": 0.545045045, + "22551": 0.546036036, + "22552": 0.547027027, + "22553": 0.548018018, + "22554": 0.549009009, + "22555": 0.55, + "22556": 0.550990991, + "22557": 0.551981982, + "22558": 0.552972973, + "22559": 0.553963964, + "22560": 0.554954955, + "22561": 0.5559459459, + "22562": 0.5569369369, + "22563": 0.5579279279, + "22564": 0.5589189189, + "22565": 0.5599099099, + "22566": 0.5609009009, + "22567": 0.5618918919, + "22568": 0.5628828829, + "22569": 0.5638738739, + "22570": 0.5648648649, + "22571": 0.5658558559, + "22572": 0.5668468468, + "22573": 0.5678378378, + "22574": 0.5688288288, + "22575": 0.5698198198, + "22576": 0.5708108108, + "22577": 0.5718018018, + "22578": 0.5727927928, + "22579": 0.5737837838, + "22580": 0.5747747748, + "22581": 0.5757657658, + "22582": 0.5767567568, + "22583": 0.5777477477, + "22584": 0.5787387387, + "22585": 0.5797297297, + "22586": 0.5807207207, + "22587": 0.5817117117, + "22588": 0.5827027027, + "22589": 0.5836936937, + "22590": 0.5846846847, + "22591": 0.5856756757, + "22592": 0.5866666667, + "22593": 0.5876576577, + "22594": 0.5886486486, + "22595": 0.5896396396, + "22596": 0.5906306306, + "22597": 0.5916216216, + "22598": 0.5926126126, + "22599": 0.5936036036, + "22600": 0.5945945946, + "22601": 0.5955855856, + "22602": 0.5965765766, + "22603": 0.5975675676, + "22604": 0.5985585586, + "22605": 0.5995495495, + "22606": 0.6005405405, + "22607": 0.6015315315, + "22608": 0.6025225225, + "22609": 0.6035135135, + "22610": 0.6045045045, + "22611": 0.6054954955, + "22612": 0.6064864865, + "22613": 0.6074774775, + "22614": 0.6084684685, + "22615": 0.6094594595, + "22616": 0.6104504505, + "22617": 0.6114414414, + "22618": 0.6124324324, + "22619": 0.6134234234, + "22620": 0.6144144144, + "22621": 0.6154054054, + "22622": 0.6163963964, + "22623": 0.6173873874, + "22624": 0.6183783784, + "22625": 0.6193693694, + "22626": 0.6203603604, + "22627": 0.6213513514, + "22628": 0.6223423423, + "22629": 0.6233333333, + "22630": 0.6243243243, + "22631": 0.6253153153, + "22632": 0.6263063063, + "22633": 0.6272972973, + "22634": 0.6282882883, + "22635": 0.6292792793, + "22636": 0.6302702703, + "22637": 0.6312612613, + "22638": 0.6322522523, + "22639": 0.6332432432, + "22640": 0.6342342342, + "22641": 0.6352252252, + "22642": 0.6362162162, + "22643": 0.6372072072, + "22644": 0.6381981982, + "22645": 0.6391891892, + "22646": 0.6401801802, + "22647": 0.6411711712, + "22648": 0.6421621622, + "22649": 0.6431531532, + "22650": 0.6441441441, + "22651": 0.6451351351, + "22652": 0.6461261261, + "22653": 0.6471171171, + "22654": 0.6481081081, + "22655": 0.6490990991, + "22656": 0.6500900901, + "22657": 0.6510810811, + "22658": 0.6520720721, + "22659": 0.6530630631, + "22660": 0.6540540541, + "22661": 0.655045045, + "22662": 0.656036036, + "22663": 0.657027027, + "22664": 0.658018018, + "22665": 0.659009009, + "22666": 0.66, + "22667": 0.660990991, + "22668": 0.661981982, + "22669": 0.662972973, + "22670": 0.663963964, + "22671": 0.664954955, + "22672": 0.6659459459, + "22673": 0.6669369369, + "22674": 0.6679279279, + "22675": 0.6689189189, + "22676": 0.6699099099, + "22677": 0.6709009009, + "22678": 0.6718918919, + "22679": 0.6728828829, + "22680": 0.6738738739, + "22681": 0.6748648649, + "22682": 0.6758558559, + "22683": 0.6768468468, + "22684": 0.6778378378, + "22685": 0.6788288288, + "22686": 0.6798198198, + "22687": 0.6808108108, + "22688": 0.6818018018, + "22689": 0.6827927928, + "22690": 0.6837837838, + "22691": 0.6847747748, + "22692": 0.6857657658, + "22693": 0.6867567568, + "22694": 0.6877477477, + "22695": 0.6887387387, + "22696": 0.6897297297, + "22697": 0.6907207207, + "22698": 0.6917117117, + "22699": 0.6927027027, + "22700": 0.6936936937, + "22701": 0.6946846847, + "22702": 0.6956756757, + "22703": 0.6966666667, + "22704": 0.6976576577, + "22705": 0.6986486486, + "22706": 0.6996396396, + "22707": 0.7006306306, + "22708": 0.7016216216, + "22709": 0.7026126126, + "22710": 0.7036036036, + "22711": 0.7045945946, + "22712": 0.7055855856, + "22713": 0.7065765766, + "22714": 0.7075675676, + "22715": 0.7085585586, + "22716": 0.7095495495, + "22717": 0.7105405405, + "22718": 0.7115315315, + "22719": 0.7125225225, + "22720": 0.7135135135, + "22721": 0.7145045045, + "22722": 0.7154954955, + "22723": 0.7164864865, + "22724": 0.7174774775, + "22725": 0.7184684685, + "22726": 0.7194594595, + "22727": 0.7204504505, + "22728": 0.7214414414, + "22729": 0.7224324324, + "22730": 0.7234234234, + "22731": 0.7244144144, + "22732": 0.7254054054, + "22733": 0.7263963964, + "22734": 0.7273873874, + "22735": 0.7283783784, + "22736": 0.7293693694, + "22737": 0.7303603604, + "22738": 0.7313513514, + "22739": 0.7323423423, + "22740": 0.7333333333, + "22741": 0.7343243243, + "22742": 0.7353153153, + "22743": 0.7363063063, + "22744": 0.7372972973, + "22745": 0.7382882883, + "22746": 0.7392792793, + "22747": 0.7402702703, + "22748": 0.7412612613, + "22749": 0.7422522523, + "22750": 0.7432432432, + "22751": 0.7442342342, + "22752": 0.7452252252, + "22753": 0.7462162162, + "22754": 0.7472072072, + "22755": 0.7481981982, + "22756": 0.7491891892, + "22757": 0.7501801802, + "22758": 0.7511711712, + "22759": 0.7521621622, + "22760": 0.7531531532, + "22761": 0.7541441441, + "22762": 0.7551351351, + "22763": 0.7561261261, + "22764": 0.7571171171, + "22765": 0.7581081081, + "22766": 0.7590990991, + "22767": 0.7600900901, + "22768": 0.7610810811, + "22769": 0.7620720721, + "22770": 0.7630630631, + "22771": 0.7640540541, + "22772": 0.765045045, + "22773": 0.766036036, + "22774": 0.767027027, + "22775": 0.768018018, + "22776": 0.769009009, + "22777": 0.77, + "22778": 0.770990991, + "22779": 0.771981982, + "22780": 0.772972973, + "22781": 0.773963964, + "22782": 0.774954955, + "22783": 0.7759459459, + "22784": 0.7769369369, + "22785": 0.7779279279, + "22786": 0.7789189189, + "22787": 0.7799099099, + "22788": 0.7809009009, + "22789": 0.7818918919, + "22790": 0.7828828829, + "22791": 0.7838738739, + "22792": 0.7848648649, + "22793": 0.7858558559, + "22794": 0.7868468468, + "22795": 0.7878378378, + "22796": 0.7888288288, + "22797": 0.7898198198, + "22798": 0.7908108108, + "22799": 0.7918018018, + "22800": 0.7927927928, + "22801": 0.7937837838, + "22802": 0.7947747748, + "22803": 0.7957657658, + "22804": 0.7967567568, + "22805": 0.7977477477, + "22806": 0.7987387387, + "22807": 0.7997297297, + "22808": 0.8007207207, + "22809": 0.8017117117, + "22810": 0.8027027027, + "22811": 0.8036936937, + "22812": 0.8046846847, + "22813": 0.8056756757, + "22814": 0.8066666667, + "22815": 0.8076576577, + "22816": 0.8086486486, + "22817": 0.8096396396, + "22818": 0.8106306306, + "22819": 0.8116216216, + "22820": 0.8126126126, + "22821": 0.8136036036, + "22822": 0.8145945946, + "22823": 0.8155855856, + "22824": 0.8165765766, + "22825": 0.8175675676, + "22826": 0.8185585586, + "22827": 0.8195495495, + "22828": 0.8205405405, + "22829": 0.8215315315, + "22830": 0.8225225225, + "22831": 0.8235135135, + "22832": 0.8245045045, + "22833": 0.8254954955, + "22834": 0.8264864865, + "22835": 0.8274774775, + "22836": 0.8284684685, + "22837": 0.8294594595, + "22838": 0.8304504505, + "22839": 0.8314414414, + "22840": 0.8324324324, + "22841": 0.8334234234, + "22842": 0.8344144144, + "22843": 0.8354054054, + "22844": 0.8363963964, + "22845": 0.8373873874, + "22846": 0.8383783784, + "22847": 0.8393693694, + "22848": 0.8403603604, + "22849": 0.8413513514, + "22850": 0.8423423423, + "22851": 0.8433333333, + "22852": 0.8443243243, + "22853": 0.8453153153, + "22854": 0.8463063063, + "22855": 0.8472972973, + "22856": 0.8482882883, + "22857": 0.8492792793, + "22858": 0.8502702703, + "22859": 0.8512612613, + "22860": 0.8522522523, + "22861": 0.8532432432, + "22862": 0.8542342342, + "22863": 0.8552252252, + "22864": 0.8562162162, + "22865": 0.8572072072, + "22866": 0.8581981982, + "22867": 0.8591891892, + "22868": 0.8601801802, + "22869": 0.8611711712, + "22870": 0.8621621622, + "22871": 0.8631531532, + "22872": 0.8641441441, + "22873": 0.8651351351, + "22874": 0.8661261261, + "22875": 0.8671171171, + "22876": 0.8681081081, + "22877": 0.8690990991, + "22878": 0.8700900901, + "22879": 0.8710810811, + "22880": 0.8720720721, + "22881": 0.8730630631, + "22882": 0.8740540541, + "22883": 0.875045045, + "22884": 0.876036036, + "22885": 0.877027027, + "22886": 0.878018018, + "22887": 0.879009009, + "22888": 0.88, + "22889": 0.880990991, + "22890": 0.881981982, + "22891": 0.882972973, + "22892": 0.883963964, + "22893": 0.884954955, + "22894": 0.8859459459, + "22895": 0.8869369369, + "22896": 0.8879279279, + "22897": 0.8889189189, + "22898": 0.8899099099, + "22899": 0.8909009009, + "22900": 0.8918918919, + "22901": 0.8928828829, + "22902": 0.8938738739, + "22903": 0.8948648649, + "22904": 0.8958558559, + "22905": 0.8968468468, + "22906": 0.8978378378, + "22907": 0.8988288288, + "22908": 0.8998198198, + "22909": 0.9008108108, + "22910": 0.9018018018, + "22911": 0.9027927928, + "22912": 0.9037837838, + "22913": 0.9047747748, + "22914": 0.9057657658, + "22915": 0.9067567568, + "22916": 0.9077477477, + "22917": 0.9087387387, + "22918": 0.9097297297, + "22919": 0.9107207207, + "22920": 0.9117117117, + "22921": 0.9127027027, + "22922": 0.9136936937, + "22923": 0.9146846847, + "22924": 0.9156756757, + "22925": 0.9166666667, + "22926": 0.9176576577, + "22927": 0.9186486486, + "22928": 0.9196396396, + "22929": 0.9206306306, + "22930": 0.9216216216, + "22931": 0.9226126126, + "22932": 0.9236036036, + "22933": 0.9245945946, + "22934": 0.9255855856, + "22935": 0.9265765766, + "22936": 0.9275675676, + "22937": 0.9285585586, + "22938": 0.9295495495, + "22939": 0.9305405405, + "22940": 0.9315315315, + "22941": 0.9325225225, + "22942": 0.9335135135, + "22943": 0.9345045045, + "22944": 0.9354954955, + "22945": 0.9364864865, + "22946": 0.9374774775, + "22947": 0.9384684685, + "22948": 0.9394594595, + "22949": 0.9404504505, + "22950": 0.9414414414, + "22951": 0.9424324324, + "22952": 0.9434234234, + "22953": 0.9444144144, + "22954": 0.9454054054, + "22955": 0.9463963964, + "22956": 0.9473873874, + "22957": 0.9483783784, + "22958": 0.9493693694, + "22959": 0.9503603604, + "22960": 0.9513513514, + "22961": 0.9523423423, + "22962": 0.9533333333, + "22963": 0.9543243243, + "22964": 0.9553153153, + "22965": 0.9563063063, + "22966": 0.9572972973, + "22967": 0.9582882883, + "22968": 0.9592792793, + "22969": 0.9602702703, + "22970": 0.9612612613, + "22971": 0.9622522523, + "22972": 0.9632432432, + "22973": 0.9642342342, + "22974": 0.9652252252, + "22975": 0.9662162162, + "22976": 0.9672072072, + "22977": 0.9681981982, + "22978": 0.9691891892, + "22979": 0.9701801802, + "22980": 0.9711711712, + "22981": 0.9721621622, + "22982": 0.9731531532, + "22983": 0.9741441441, + "22984": 0.9751351351, + "22985": 0.9761261261, + "22986": 0.9771171171, + "22987": 0.9781081081, + "22988": 0.9790990991, + "22989": 0.9800900901, + "22990": 0.9810810811, + "22991": 0.9820720721, + "22992": 0.9830630631, + "22993": 0.9840540541, + "22994": 0.985045045, + "22995": 0.986036036, + "22996": 0.987027027, + "22997": 0.988018018, + "22998": 0.989009009, + "22999": 0.99, + "23000": 0.0, + "23001": 0.000990991, + "23002": 0.001981982, + "23003": 0.002972973, + "23004": 0.003963964, + "23005": 0.004954955, + "23006": 0.0059459459, + "23007": 0.0069369369, + "23008": 0.0079279279, + "23009": 0.0089189189, + "23010": 0.0099099099, + "23011": 0.0109009009, + "23012": 0.0118918919, + "23013": 0.0128828829, + "23014": 0.0138738739, + "23015": 0.0148648649, + "23016": 0.0158558559, + "23017": 0.0168468468, + "23018": 0.0178378378, + "23019": 0.0188288288, + "23020": 0.0198198198, + "23021": 0.0208108108, + "23022": 0.0218018018, + "23023": 0.0227927928, + "23024": 0.0237837838, + "23025": 0.0247747748, + "23026": 0.0257657658, + "23027": 0.0267567568, + "23028": 0.0277477477, + "23029": 0.0287387387, + "23030": 0.0297297297, + "23031": 0.0307207207, + "23032": 0.0317117117, + "23033": 0.0327027027, + "23034": 0.0336936937, + "23035": 0.0346846847, + "23036": 0.0356756757, + "23037": 0.0366666667, + "23038": 0.0376576577, + "23039": 0.0386486486, + "23040": 0.0396396396, + "23041": 0.0406306306, + "23042": 0.0416216216, + "23043": 0.0426126126, + "23044": 0.0436036036, + "23045": 0.0445945946, + "23046": 0.0455855856, + "23047": 0.0465765766, + "23048": 0.0475675676, + "23049": 0.0485585586, + "23050": 0.0495495495, + "23051": 0.0505405405, + "23052": 0.0515315315, + "23053": 0.0525225225, + "23054": 0.0535135135, + "23055": 0.0545045045, + "23056": 0.0554954955, + "23057": 0.0564864865, + "23058": 0.0574774775, + "23059": 0.0584684685, + "23060": 0.0594594595, + "23061": 0.0604504505, + "23062": 0.0614414414, + "23063": 0.0624324324, + "23064": 0.0634234234, + "23065": 0.0644144144, + "23066": 0.0654054054, + "23067": 0.0663963964, + "23068": 0.0673873874, + "23069": 0.0683783784, + "23070": 0.0693693694, + "23071": 0.0703603604, + "23072": 0.0713513514, + "23073": 0.0723423423, + "23074": 0.0733333333, + "23075": 0.0743243243, + "23076": 0.0753153153, + "23077": 0.0763063063, + "23078": 0.0772972973, + "23079": 0.0782882883, + "23080": 0.0792792793, + "23081": 0.0802702703, + "23082": 0.0812612613, + "23083": 0.0822522523, + "23084": 0.0832432432, + "23085": 0.0842342342, + "23086": 0.0852252252, + "23087": 0.0862162162, + "23088": 0.0872072072, + "23089": 0.0881981982, + "23090": 0.0891891892, + "23091": 0.0901801802, + "23092": 0.0911711712, + "23093": 0.0921621622, + "23094": 0.0931531532, + "23095": 0.0941441441, + "23096": 0.0951351351, + "23097": 0.0961261261, + "23098": 0.0971171171, + "23099": 0.0981081081, + "23100": 0.0990990991, + "23101": 0.1000900901, + "23102": 0.1010810811, + "23103": 0.1020720721, + "23104": 0.1030630631, + "23105": 0.1040540541, + "23106": 0.105045045, + "23107": 0.106036036, + "23108": 0.107027027, + "23109": 0.108018018, + "23110": 0.109009009, + "23111": 0.11, + "23112": 0.110990991, + "23113": 0.111981982, + "23114": 0.112972973, + "23115": 0.113963964, + "23116": 0.114954955, + "23117": 0.1159459459, + "23118": 0.1169369369, + "23119": 0.1179279279, + "23120": 0.1189189189, + "23121": 0.1199099099, + "23122": 0.1209009009, + "23123": 0.1218918919, + "23124": 0.1228828829, + "23125": 0.1238738739, + "23126": 0.1248648649, + "23127": 0.1258558559, + "23128": 0.1268468468, + "23129": 0.1278378378, + "23130": 0.1288288288, + "23131": 0.1298198198, + "23132": 0.1308108108, + "23133": 0.1318018018, + "23134": 0.1327927928, + "23135": 0.1337837838, + "23136": 0.1347747748, + "23137": 0.1357657658, + "23138": 0.1367567568, + "23139": 0.1377477477, + "23140": 0.1387387387, + "23141": 0.1397297297, + "23142": 0.1407207207, + "23143": 0.1417117117, + "23144": 0.1427027027, + "23145": 0.1436936937, + "23146": 0.1446846847, + "23147": 0.1456756757, + "23148": 0.1466666667, + "23149": 0.1476576577, + "23150": 0.1486486486, + "23151": 0.1496396396, + "23152": 0.1506306306, + "23153": 0.1516216216, + "23154": 0.1526126126, + "23155": 0.1536036036, + "23156": 0.1545945946, + "23157": 0.1555855856, + "23158": 0.1565765766, + "23159": 0.1575675676, + "23160": 0.1585585586, + "23161": 0.1595495495, + "23162": 0.1605405405, + "23163": 0.1615315315, + "23164": 0.1625225225, + "23165": 0.1635135135, + "23166": 0.1645045045, + "23167": 0.1654954955, + "23168": 0.1664864865, + "23169": 0.1674774775, + "23170": 0.1684684685, + "23171": 0.1694594595, + "23172": 0.1704504505, + "23173": 0.1714414414, + "23174": 0.1724324324, + "23175": 0.1734234234, + "23176": 0.1744144144, + "23177": 0.1754054054, + "23178": 0.1763963964, + "23179": 0.1773873874, + "23180": 0.1783783784, + "23181": 0.1793693694, + "23182": 0.1803603604, + "23183": 0.1813513514, + "23184": 0.1823423423, + "23185": 0.1833333333, + "23186": 0.1843243243, + "23187": 0.1853153153, + "23188": 0.1863063063, + "23189": 0.1872972973, + "23190": 0.1882882883, + "23191": 0.1892792793, + "23192": 0.1902702703, + "23193": 0.1912612613, + "23194": 0.1922522523, + "23195": 0.1932432432, + "23196": 0.1942342342, + "23197": 0.1952252252, + "23198": 0.1962162162, + "23199": 0.1972072072, + "23200": 0.1981981982, + "23201": 0.1991891892, + "23202": 0.2001801802, + "23203": 0.2011711712, + "23204": 0.2021621622, + "23205": 0.2031531532, + "23206": 0.2041441441, + "23207": 0.2051351351, + "23208": 0.2061261261, + "23209": 0.2071171171, + "23210": 0.2081081081, + "23211": 0.2090990991, + "23212": 0.2100900901, + "23213": 0.2110810811, + "23214": 0.2120720721, + "23215": 0.2130630631, + "23216": 0.2140540541, + "23217": 0.215045045, + "23218": 0.216036036, + "23219": 0.217027027, + "23220": 0.218018018, + "23221": 0.219009009, + "23222": 0.22, + "23223": 0.220990991, + "23224": 0.221981982, + "23225": 0.222972973, + "23226": 0.223963964, + "23227": 0.224954955, + "23228": 0.2259459459, + "23229": 0.2269369369, + "23230": 0.2279279279, + "23231": 0.2289189189, + "23232": 0.2299099099, + "23233": 0.2309009009, + "23234": 0.2318918919, + "23235": 0.2328828829, + "23236": 0.2338738739, + "23237": 0.2348648649, + "23238": 0.2358558559, + "23239": 0.2368468468, + "23240": 0.2378378378, + "23241": 0.2388288288, + "23242": 0.2398198198, + "23243": 0.2408108108, + "23244": 0.2418018018, + "23245": 0.2427927928, + "23246": 0.2437837838, + "23247": 0.2447747748, + "23248": 0.2457657658, + "23249": 0.2467567568, + "23250": 0.2477477477, + "23251": 0.2487387387, + "23252": 0.2497297297, + "23253": 0.2507207207, + "23254": 0.2517117117, + "23255": 0.2527027027, + "23256": 0.2536936937, + "23257": 0.2546846847, + "23258": 0.2556756757, + "23259": 0.2566666667, + "23260": 0.2576576577, + "23261": 0.2586486486, + "23262": 0.2596396396, + "23263": 0.2606306306, + "23264": 0.2616216216, + "23265": 0.2626126126, + "23266": 0.2636036036, + "23267": 0.2645945946, + "23268": 0.2655855856, + "23269": 0.2665765766, + "23270": 0.2675675676, + "23271": 0.2685585586, + "23272": 0.2695495495, + "23273": 0.2705405405, + "23274": 0.2715315315, + "23275": 0.2725225225, + "23276": 0.2735135135, + "23277": 0.2745045045, + "23278": 0.2754954955, + "23279": 0.2764864865, + "23280": 0.2774774775, + "23281": 0.2784684685, + "23282": 0.2794594595, + "23283": 0.2804504505, + "23284": 0.2814414414, + "23285": 0.2824324324, + "23286": 0.2834234234, + "23287": 0.2844144144, + "23288": 0.2854054054, + "23289": 0.2863963964, + "23290": 0.2873873874, + "23291": 0.2883783784, + "23292": 0.2893693694, + "23293": 0.2903603604, + "23294": 0.2913513514, + "23295": 0.2923423423, + "23296": 0.2933333333, + "23297": 0.2943243243, + "23298": 0.2953153153, + "23299": 0.2963063063, + "23300": 0.2972972973, + "23301": 0.2982882883, + "23302": 0.2992792793, + "23303": 0.3002702703, + "23304": 0.3012612613, + "23305": 0.3022522523, + "23306": 0.3032432432, + "23307": 0.3042342342, + "23308": 0.3052252252, + "23309": 0.3062162162, + "23310": 0.3072072072, + "23311": 0.3081981982, + "23312": 0.3091891892, + "23313": 0.3101801802, + "23314": 0.3111711712, + "23315": 0.3121621622, + "23316": 0.3131531532, + "23317": 0.3141441441, + "23318": 0.3151351351, + "23319": 0.3161261261, + "23320": 0.3171171171, + "23321": 0.3181081081, + "23322": 0.3190990991, + "23323": 0.3200900901, + "23324": 0.3210810811, + "23325": 0.3220720721, + "23326": 0.3230630631, + "23327": 0.3240540541, + "23328": 0.325045045, + "23329": 0.326036036, + "23330": 0.327027027, + "23331": 0.328018018, + "23332": 0.329009009, + "23333": 0.33, + "23334": 0.330990991, + "23335": 0.331981982, + "23336": 0.332972973, + "23337": 0.333963964, + "23338": 0.334954955, + "23339": 0.3359459459, + "23340": 0.3369369369, + "23341": 0.3379279279, + "23342": 0.3389189189, + "23343": 0.3399099099, + "23344": 0.3409009009, + "23345": 0.3418918919, + "23346": 0.3428828829, + "23347": 0.3438738739, + "23348": 0.3448648649, + "23349": 0.3458558559, + "23350": 0.3468468468, + "23351": 0.3478378378, + "23352": 0.3488288288, + "23353": 0.3498198198, + "23354": 0.3508108108, + "23355": 0.3518018018, + "23356": 0.3527927928, + "23357": 0.3537837838, + "23358": 0.3547747748, + "23359": 0.3557657658, + "23360": 0.3567567568, + "23361": 0.3577477477, + "23362": 0.3587387387, + "23363": 0.3597297297, + "23364": 0.3607207207, + "23365": 0.3617117117, + "23366": 0.3627027027, + "23367": 0.3636936937, + "23368": 0.3646846847, + "23369": 0.3656756757, + "23370": 0.3666666667, + "23371": 0.3676576577, + "23372": 0.3686486486, + "23373": 0.3696396396, + "23374": 0.3706306306, + "23375": 0.3716216216, + "23376": 0.3726126126, + "23377": 0.3736036036, + "23378": 0.3745945946, + "23379": 0.3755855856, + "23380": 0.3765765766, + "23381": 0.3775675676, + "23382": 0.3785585586, + "23383": 0.3795495495, + "23384": 0.3805405405, + "23385": 0.3815315315, + "23386": 0.3825225225, + "23387": 0.3835135135, + "23388": 0.3845045045, + "23389": 0.3854954955, + "23390": 0.3864864865, + "23391": 0.3874774775, + "23392": 0.3884684685, + "23393": 0.3894594595, + "23394": 0.3904504505, + "23395": 0.3914414414, + "23396": 0.3924324324, + "23397": 0.3934234234, + "23398": 0.3944144144, + "23399": 0.3954054054, + "23400": 0.3963963964, + "23401": 0.3973873874, + "23402": 0.3983783784, + "23403": 0.3993693694, + "23404": 0.4003603604, + "23405": 0.4013513514, + "23406": 0.4023423423, + "23407": 0.4033333333, + "23408": 0.4043243243, + "23409": 0.4053153153, + "23410": 0.4063063063, + "23411": 0.4072972973, + "23412": 0.4082882883, + "23413": 0.4092792793, + "23414": 0.4102702703, + "23415": 0.4112612613, + "23416": 0.4122522523, + "23417": 0.4132432432, + "23418": 0.4142342342, + "23419": 0.4152252252, + "23420": 0.4162162162, + "23421": 0.4172072072, + "23422": 0.4181981982, + "23423": 0.4191891892, + "23424": 0.4201801802, + "23425": 0.4211711712, + "23426": 0.4221621622, + "23427": 0.4231531532, + "23428": 0.4241441441, + "23429": 0.4251351351, + "23430": 0.4261261261, + "23431": 0.4271171171, + "23432": 0.4281081081, + "23433": 0.4290990991, + "23434": 0.4300900901, + "23435": 0.4310810811, + "23436": 0.4320720721, + "23437": 0.4330630631, + "23438": 0.4340540541, + "23439": 0.435045045, + "23440": 0.436036036, + "23441": 0.437027027, + "23442": 0.438018018, + "23443": 0.439009009, + "23444": 0.44, + "23445": 0.440990991, + "23446": 0.441981982, + "23447": 0.442972973, + "23448": 0.443963964, + "23449": 0.444954955, + "23450": 0.4459459459, + "23451": 0.4469369369, + "23452": 0.4479279279, + "23453": 0.4489189189, + "23454": 0.4499099099, + "23455": 0.4509009009, + "23456": 0.4518918919, + "23457": 0.4528828829, + "23458": 0.4538738739, + "23459": 0.4548648649, + "23460": 0.4558558559, + "23461": 0.4568468468, + "23462": 0.4578378378, + "23463": 0.4588288288, + "23464": 0.4598198198, + "23465": 0.4608108108, + "23466": 0.4618018018, + "23467": 0.4627927928, + "23468": 0.4637837838, + "23469": 0.4647747748, + "23470": 0.4657657658, + "23471": 0.4667567568, + "23472": 0.4677477477, + "23473": 0.4687387387, + "23474": 0.4697297297, + "23475": 0.4707207207, + "23476": 0.4717117117, + "23477": 0.4727027027, + "23478": 0.4736936937, + "23479": 0.4746846847, + "23480": 0.4756756757, + "23481": 0.4766666667, + "23482": 0.4776576577, + "23483": 0.4786486486, + "23484": 0.4796396396, + "23485": 0.4806306306, + "23486": 0.4816216216, + "23487": 0.4826126126, + "23488": 0.4836036036, + "23489": 0.4845945946, + "23490": 0.4855855856, + "23491": 0.4865765766, + "23492": 0.4875675676, + "23493": 0.4885585586, + "23494": 0.4895495495, + "23495": 0.4905405405, + "23496": 0.4915315315, + "23497": 0.4925225225, + "23498": 0.4935135135, + "23499": 0.4945045045, + "23500": 0.4954954955, + "23501": 0.4964864865, + "23502": 0.4974774775, + "23503": 0.4984684685, + "23504": 0.4994594595, + "23505": 0.5004504505, + "23506": 0.5014414414, + "23507": 0.5024324324, + "23508": 0.5034234234, + "23509": 0.5044144144, + "23510": 0.5054054054, + "23511": 0.5063963964, + "23512": 0.5073873874, + "23513": 0.5083783784, + "23514": 0.5093693694, + "23515": 0.5103603604, + "23516": 0.5113513514, + "23517": 0.5123423423, + "23518": 0.5133333333, + "23519": 0.5143243243, + "23520": 0.5153153153, + "23521": 0.5163063063, + "23522": 0.5172972973, + "23523": 0.5182882883, + "23524": 0.5192792793, + "23525": 0.5202702703, + "23526": 0.5212612613, + "23527": 0.5222522523, + "23528": 0.5232432432, + "23529": 0.5242342342, + "23530": 0.5252252252, + "23531": 0.5262162162, + "23532": 0.5272072072, + "23533": 0.5281981982, + "23534": 0.5291891892, + "23535": 0.5301801802, + "23536": 0.5311711712, + "23537": 0.5321621622, + "23538": 0.5331531532, + "23539": 0.5341441441, + "23540": 0.5351351351, + "23541": 0.5361261261, + "23542": 0.5371171171, + "23543": 0.5381081081, + "23544": 0.5390990991, + "23545": 0.5400900901, + "23546": 0.5410810811, + "23547": 0.5420720721, + "23548": 0.5430630631, + "23549": 0.5440540541, + "23550": 0.545045045, + "23551": 0.546036036, + "23552": 0.547027027, + "23553": 0.548018018, + "23554": 0.549009009, + "23555": 0.55, + "23556": 0.550990991, + "23557": 0.551981982, + "23558": 0.552972973, + "23559": 0.553963964, + "23560": 0.554954955, + "23561": 0.5559459459, + "23562": 0.5569369369, + "23563": 0.5579279279, + "23564": 0.5589189189, + "23565": 0.5599099099, + "23566": 0.5609009009, + "23567": 0.5618918919, + "23568": 0.5628828829, + "23569": 0.5638738739, + "23570": 0.5648648649, + "23571": 0.5658558559, + "23572": 0.5668468468, + "23573": 0.5678378378, + "23574": 0.5688288288, + "23575": 0.5698198198, + "23576": 0.5708108108, + "23577": 0.5718018018, + "23578": 0.5727927928, + "23579": 0.5737837838, + "23580": 0.5747747748, + "23581": 0.5757657658, + "23582": 0.5767567568, + "23583": 0.5777477477, + "23584": 0.5787387387, + "23585": 0.5797297297, + "23586": 0.5807207207, + "23587": 0.5817117117, + "23588": 0.5827027027, + "23589": 0.5836936937, + "23590": 0.5846846847, + "23591": 0.5856756757, + "23592": 0.5866666667, + "23593": 0.5876576577, + "23594": 0.5886486486, + "23595": 0.5896396396, + "23596": 0.5906306306, + "23597": 0.5916216216, + "23598": 0.5926126126, + "23599": 0.5936036036, + "23600": 0.5945945946, + "23601": 0.5955855856, + "23602": 0.5965765766, + "23603": 0.5975675676, + "23604": 0.5985585586, + "23605": 0.5995495495, + "23606": 0.6005405405, + "23607": 0.6015315315, + "23608": 0.6025225225, + "23609": 0.6035135135, + "23610": 0.6045045045, + "23611": 0.6054954955, + "23612": 0.6064864865, + "23613": 0.6074774775, + "23614": 0.6084684685, + "23615": 0.6094594595, + "23616": 0.6104504505, + "23617": 0.6114414414, + "23618": 0.6124324324, + "23619": 0.6134234234, + "23620": 0.6144144144, + "23621": 0.6154054054, + "23622": 0.6163963964, + "23623": 0.6173873874, + "23624": 0.6183783784, + "23625": 0.6193693694, + "23626": 0.6203603604, + "23627": 0.6213513514, + "23628": 0.6223423423, + "23629": 0.6233333333, + "23630": 0.6243243243, + "23631": 0.6253153153, + "23632": 0.6263063063, + "23633": 0.6272972973, + "23634": 0.6282882883, + "23635": 0.6292792793, + "23636": 0.6302702703, + "23637": 0.6312612613, + "23638": 0.6322522523, + "23639": 0.6332432432, + "23640": 0.6342342342, + "23641": 0.6352252252, + "23642": 0.6362162162, + "23643": 0.6372072072, + "23644": 0.6381981982, + "23645": 0.6391891892, + "23646": 0.6401801802, + "23647": 0.6411711712, + "23648": 0.6421621622, + "23649": 0.6431531532, + "23650": 0.6441441441, + "23651": 0.6451351351, + "23652": 0.6461261261, + "23653": 0.6471171171, + "23654": 0.6481081081, + "23655": 0.6490990991, + "23656": 0.6500900901, + "23657": 0.6510810811, + "23658": 0.6520720721, + "23659": 0.6530630631, + "23660": 0.6540540541, + "23661": 0.655045045, + "23662": 0.656036036, + "23663": 0.657027027, + "23664": 0.658018018, + "23665": 0.659009009, + "23666": 0.66, + "23667": 0.660990991, + "23668": 0.661981982, + "23669": 0.662972973, + "23670": 0.663963964, + "23671": 0.664954955, + "23672": 0.6659459459, + "23673": 0.6669369369, + "23674": 0.6679279279, + "23675": 0.6689189189, + "23676": 0.6699099099, + "23677": 0.6709009009, + "23678": 0.6718918919, + "23679": 0.6728828829, + "23680": 0.6738738739, + "23681": 0.6748648649, + "23682": 0.6758558559, + "23683": 0.6768468468, + "23684": 0.6778378378, + "23685": 0.6788288288, + "23686": 0.6798198198, + "23687": 0.6808108108, + "23688": 0.6818018018, + "23689": 0.6827927928, + "23690": 0.6837837838, + "23691": 0.6847747748, + "23692": 0.6857657658, + "23693": 0.6867567568, + "23694": 0.6877477477, + "23695": 0.6887387387, + "23696": 0.6897297297, + "23697": 0.6907207207, + "23698": 0.6917117117, + "23699": 0.6927027027, + "23700": 0.6936936937, + "23701": 0.6946846847, + "23702": 0.6956756757, + "23703": 0.6966666667, + "23704": 0.6976576577, + "23705": 0.6986486486, + "23706": 0.6996396396, + "23707": 0.7006306306, + "23708": 0.7016216216, + "23709": 0.7026126126, + "23710": 0.7036036036, + "23711": 0.7045945946, + "23712": 0.7055855856, + "23713": 0.7065765766, + "23714": 0.7075675676, + "23715": 0.7085585586, + "23716": 0.7095495495, + "23717": 0.7105405405, + "23718": 0.7115315315, + "23719": 0.7125225225, + "23720": 0.7135135135, + "23721": 0.7145045045, + "23722": 0.7154954955, + "23723": 0.7164864865, + "23724": 0.7174774775, + "23725": 0.7184684685, + "23726": 0.7194594595, + "23727": 0.7204504505, + "23728": 0.7214414414, + "23729": 0.7224324324, + "23730": 0.7234234234, + "23731": 0.7244144144, + "23732": 0.7254054054, + "23733": 0.7263963964, + "23734": 0.7273873874, + "23735": 0.7283783784, + "23736": 0.7293693694, + "23737": 0.7303603604, + "23738": 0.7313513514, + "23739": 0.7323423423, + "23740": 0.7333333333, + "23741": 0.7343243243, + "23742": 0.7353153153, + "23743": 0.7363063063, + "23744": 0.7372972973, + "23745": 0.7382882883, + "23746": 0.7392792793, + "23747": 0.7402702703, + "23748": 0.7412612613, + "23749": 0.7422522523, + "23750": 0.7432432432, + "23751": 0.7442342342, + "23752": 0.7452252252, + "23753": 0.7462162162, + "23754": 0.7472072072, + "23755": 0.7481981982, + "23756": 0.7491891892, + "23757": 0.7501801802, + "23758": 0.7511711712, + "23759": 0.7521621622, + "23760": 0.7531531532, + "23761": 0.7541441441, + "23762": 0.7551351351, + "23763": 0.7561261261, + "23764": 0.7571171171, + "23765": 0.7581081081, + "23766": 0.7590990991, + "23767": 0.7600900901, + "23768": 0.7610810811, + "23769": 0.7620720721, + "23770": 0.7630630631, + "23771": 0.7640540541, + "23772": 0.765045045, + "23773": 0.766036036, + "23774": 0.767027027, + "23775": 0.768018018, + "23776": 0.769009009, + "23777": 0.77, + "23778": 0.770990991, + "23779": 0.771981982, + "23780": 0.772972973, + "23781": 0.773963964, + "23782": 0.774954955, + "23783": 0.7759459459, + "23784": 0.7769369369, + "23785": 0.7779279279, + "23786": 0.7789189189, + "23787": 0.7799099099, + "23788": 0.7809009009, + "23789": 0.7818918919, + "23790": 0.7828828829, + "23791": 0.7838738739, + "23792": 0.7848648649, + "23793": 0.7858558559, + "23794": 0.7868468468, + "23795": 0.7878378378, + "23796": 0.7888288288, + "23797": 0.7898198198, + "23798": 0.7908108108, + "23799": 0.7918018018, + "23800": 0.7927927928, + "23801": 0.7937837838, + "23802": 0.7947747748, + "23803": 0.7957657658, + "23804": 0.7967567568, + "23805": 0.7977477477, + "23806": 0.7987387387, + "23807": 0.7997297297, + "23808": 0.8007207207, + "23809": 0.8017117117, + "23810": 0.8027027027, + "23811": 0.8036936937, + "23812": 0.8046846847, + "23813": 0.8056756757, + "23814": 0.8066666667, + "23815": 0.8076576577, + "23816": 0.8086486486, + "23817": 0.8096396396, + "23818": 0.8106306306, + "23819": 0.8116216216, + "23820": 0.8126126126, + "23821": 0.8136036036, + "23822": 0.8145945946, + "23823": 0.8155855856, + "23824": 0.8165765766, + "23825": 0.8175675676, + "23826": 0.8185585586, + "23827": 0.8195495495, + "23828": 0.8205405405, + "23829": 0.8215315315, + "23830": 0.8225225225, + "23831": 0.8235135135, + "23832": 0.8245045045, + "23833": 0.8254954955, + "23834": 0.8264864865, + "23835": 0.8274774775, + "23836": 0.8284684685, + "23837": 0.8294594595, + "23838": 0.8304504505, + "23839": 0.8314414414, + "23840": 0.8324324324, + "23841": 0.8334234234, + "23842": 0.8344144144, + "23843": 0.8354054054, + "23844": 0.8363963964, + "23845": 0.8373873874, + "23846": 0.8383783784, + "23847": 0.8393693694, + "23848": 0.8403603604, + "23849": 0.8413513514, + "23850": 0.8423423423, + "23851": 0.8433333333, + "23852": 0.8443243243, + "23853": 0.8453153153, + "23854": 0.8463063063, + "23855": 0.8472972973, + "23856": 0.8482882883, + "23857": 0.8492792793, + "23858": 0.8502702703, + "23859": 0.8512612613, + "23860": 0.8522522523, + "23861": 0.8532432432, + "23862": 0.8542342342, + "23863": 0.8552252252, + "23864": 0.8562162162, + "23865": 0.8572072072, + "23866": 0.8581981982, + "23867": 0.8591891892, + "23868": 0.8601801802, + "23869": 0.8611711712, + "23870": 0.8621621622, + "23871": 0.8631531532, + "23872": 0.8641441441, + "23873": 0.8651351351, + "23874": 0.8661261261, + "23875": 0.8671171171, + "23876": 0.8681081081, + "23877": 0.8690990991, + "23878": 0.8700900901, + "23879": 0.8710810811, + "23880": 0.8720720721, + "23881": 0.8730630631, + "23882": 0.8740540541, + "23883": 0.875045045, + "23884": 0.876036036, + "23885": 0.877027027, + "23886": 0.878018018, + "23887": 0.879009009, + "23888": 0.88, + "23889": 0.880990991, + "23890": 0.881981982, + "23891": 0.882972973, + "23892": 0.883963964, + "23893": 0.884954955, + "23894": 0.8859459459, + "23895": 0.8869369369, + "23896": 0.8879279279, + "23897": 0.8889189189, + "23898": 0.8899099099, + "23899": 0.8909009009, + "23900": 0.8918918919, + "23901": 0.8928828829, + "23902": 0.8938738739, + "23903": 0.8948648649, + "23904": 0.8958558559, + "23905": 0.8968468468, + "23906": 0.8978378378, + "23907": 0.8988288288, + "23908": 0.8998198198, + "23909": 0.9008108108, + "23910": 0.9018018018, + "23911": 0.9027927928, + "23912": 0.9037837838, + "23913": 0.9047747748, + "23914": 0.9057657658, + "23915": 0.9067567568, + "23916": 0.9077477477, + "23917": 0.9087387387, + "23918": 0.9097297297, + "23919": 0.9107207207, + "23920": 0.9117117117, + "23921": 0.9127027027, + "23922": 0.9136936937, + "23923": 0.9146846847, + "23924": 0.9156756757, + "23925": 0.9166666667, + "23926": 0.9176576577, + "23927": 0.9186486486, + "23928": 0.9196396396, + "23929": 0.9206306306, + "23930": 0.9216216216, + "23931": 0.9226126126, + "23932": 0.9236036036, + "23933": 0.9245945946, + "23934": 0.9255855856, + "23935": 0.9265765766, + "23936": 0.9275675676, + "23937": 0.9285585586, + "23938": 0.9295495495, + "23939": 0.9305405405, + "23940": 0.9315315315, + "23941": 0.9325225225, + "23942": 0.9335135135, + "23943": 0.9345045045, + "23944": 0.9354954955, + "23945": 0.9364864865, + "23946": 0.9374774775, + "23947": 0.9384684685, + "23948": 0.9394594595, + "23949": 0.9404504505, + "23950": 0.9414414414, + "23951": 0.9424324324, + "23952": 0.9434234234, + "23953": 0.9444144144, + "23954": 0.9454054054, + "23955": 0.9463963964, + "23956": 0.9473873874, + "23957": 0.9483783784, + "23958": 0.9493693694, + "23959": 0.9503603604, + "23960": 0.9513513514, + "23961": 0.9523423423, + "23962": 0.9533333333, + "23963": 0.9543243243, + "23964": 0.9553153153, + "23965": 0.9563063063, + "23966": 0.9572972973, + "23967": 0.9582882883, + "23968": 0.9592792793, + "23969": 0.9602702703, + "23970": 0.9612612613, + "23971": 0.9622522523, + "23972": 0.9632432432, + "23973": 0.9642342342, + "23974": 0.9652252252, + "23975": 0.9662162162, + "23976": 0.9672072072, + "23977": 0.9681981982, + "23978": 0.9691891892, + "23979": 0.9701801802, + "23980": 0.9711711712, + "23981": 0.9721621622, + "23982": 0.9731531532, + "23983": 0.9741441441, + "23984": 0.9751351351, + "23985": 0.9761261261, + "23986": 0.9771171171, + "23987": 0.9781081081, + "23988": 0.9790990991, + "23989": 0.9800900901, + "23990": 0.9810810811, + "23991": 0.9820720721, + "23992": 0.9830630631, + "23993": 0.9840540541, + "23994": 0.985045045, + "23995": 0.986036036, + "23996": 0.987027027, + "23997": 0.988018018, + "23998": 0.989009009, + "23999": 0.99, + "24000": 0.0, + "24001": 0.000990991, + "24002": 0.001981982, + "24003": 0.002972973, + "24004": 0.003963964, + "24005": 0.004954955, + "24006": 0.0059459459, + "24007": 0.0069369369, + "24008": 0.0079279279, + "24009": 0.0089189189, + "24010": 0.0099099099, + "24011": 0.0109009009, + "24012": 0.0118918919, + "24013": 0.0128828829, + "24014": 0.0138738739, + "24015": 0.0148648649, + "24016": 0.0158558559, + "24017": 0.0168468468, + "24018": 0.0178378378, + "24019": 0.0188288288, + "24020": 0.0198198198, + "24021": 0.0208108108, + "24022": 0.0218018018, + "24023": 0.0227927928, + "24024": 0.0237837838, + "24025": 0.0247747748, + "24026": 0.0257657658, + "24027": 0.0267567568, + "24028": 0.0277477477, + "24029": 0.0287387387, + "24030": 0.0297297297, + "24031": 0.0307207207, + "24032": 0.0317117117, + "24033": 0.0327027027, + "24034": 0.0336936937, + "24035": 0.0346846847, + "24036": 0.0356756757, + "24037": 0.0366666667, + "24038": 0.0376576577, + "24039": 0.0386486486, + "24040": 0.0396396396, + "24041": 0.0406306306, + "24042": 0.0416216216, + "24043": 0.0426126126, + "24044": 0.0436036036, + "24045": 0.0445945946, + "24046": 0.0455855856, + "24047": 0.0465765766, + "24048": 0.0475675676, + "24049": 0.0485585586, + "24050": 0.0495495495, + "24051": 0.0505405405, + "24052": 0.0515315315, + "24053": 0.0525225225, + "24054": 0.0535135135, + "24055": 0.0545045045, + "24056": 0.0554954955, + "24057": 0.0564864865, + "24058": 0.0574774775, + "24059": 0.0584684685, + "24060": 0.0594594595, + "24061": 0.0604504505, + "24062": 0.0614414414, + "24063": 0.0624324324, + "24064": 0.0634234234, + "24065": 0.0644144144, + "24066": 0.0654054054, + "24067": 0.0663963964, + "24068": 0.0673873874, + "24069": 0.0683783784, + "24070": 0.0693693694, + "24071": 0.0703603604, + "24072": 0.0713513514, + "24073": 0.0723423423, + "24074": 0.0733333333, + "24075": 0.0743243243, + "24076": 0.0753153153, + "24077": 0.0763063063, + "24078": 0.0772972973, + "24079": 0.0782882883, + "24080": 0.0792792793, + "24081": 0.0802702703, + "24082": 0.0812612613, + "24083": 0.0822522523, + "24084": 0.0832432432, + "24085": 0.0842342342, + "24086": 0.0852252252, + "24087": 0.0862162162, + "24088": 0.0872072072, + "24089": 0.0881981982, + "24090": 0.0891891892, + "24091": 0.0901801802, + "24092": 0.0911711712, + "24093": 0.0921621622, + "24094": 0.0931531532, + "24095": 0.0941441441, + "24096": 0.0951351351, + "24097": 0.0961261261, + "24098": 0.0971171171, + "24099": 0.0981081081, + "24100": 0.0990990991, + "24101": 0.1000900901, + "24102": 0.1010810811, + "24103": 0.1020720721, + "24104": 0.1030630631, + "24105": 0.1040540541, + "24106": 0.105045045, + "24107": 0.106036036, + "24108": 0.107027027, + "24109": 0.108018018, + "24110": 0.109009009, + "24111": 0.11, + "24112": 0.110990991, + "24113": 0.111981982, + "24114": 0.112972973, + "24115": 0.113963964, + "24116": 0.114954955, + "24117": 0.1159459459, + "24118": 0.1169369369, + "24119": 0.1179279279, + "24120": 0.1189189189, + "24121": 0.1199099099, + "24122": 0.1209009009, + "24123": 0.1218918919, + "24124": 0.1228828829, + "24125": 0.1238738739, + "24126": 0.1248648649, + "24127": 0.1258558559, + "24128": 0.1268468468, + "24129": 0.1278378378, + "24130": 0.1288288288, + "24131": 0.1298198198, + "24132": 0.1308108108, + "24133": 0.1318018018, + "24134": 0.1327927928, + "24135": 0.1337837838, + "24136": 0.1347747748, + "24137": 0.1357657658, + "24138": 0.1367567568, + "24139": 0.1377477477, + "24140": 0.1387387387, + "24141": 0.1397297297, + "24142": 0.1407207207, + "24143": 0.1417117117, + "24144": 0.1427027027, + "24145": 0.1436936937, + "24146": 0.1446846847, + "24147": 0.1456756757, + "24148": 0.1466666667, + "24149": 0.1476576577, + "24150": 0.1486486486, + "24151": 0.1496396396, + "24152": 0.1506306306, + "24153": 0.1516216216, + "24154": 0.1526126126, + "24155": 0.1536036036, + "24156": 0.1545945946, + "24157": 0.1555855856, + "24158": 0.1565765766, + "24159": 0.1575675676, + "24160": 0.1585585586, + "24161": 0.1595495495, + "24162": 0.1605405405, + "24163": 0.1615315315, + "24164": 0.1625225225, + "24165": 0.1635135135, + "24166": 0.1645045045, + "24167": 0.1654954955, + "24168": 0.1664864865, + "24169": 0.1674774775, + "24170": 0.1684684685, + "24171": 0.1694594595, + "24172": 0.1704504505, + "24173": 0.1714414414, + "24174": 0.1724324324, + "24175": 0.1734234234, + "24176": 0.1744144144, + "24177": 0.1754054054, + "24178": 0.1763963964, + "24179": 0.1773873874, + "24180": 0.1783783784, + "24181": 0.1793693694, + "24182": 0.1803603604, + "24183": 0.1813513514, + "24184": 0.1823423423, + "24185": 0.1833333333, + "24186": 0.1843243243, + "24187": 0.1853153153, + "24188": 0.1863063063, + "24189": 0.1872972973, + "24190": 0.1882882883, + "24191": 0.1892792793, + "24192": 0.1902702703, + "24193": 0.1912612613, + "24194": 0.1922522523, + "24195": 0.1932432432, + "24196": 0.1942342342, + "24197": 0.1952252252, + "24198": 0.1962162162, + "24199": 0.1972072072, + "24200": 0.1981981982, + "24201": 0.1991891892, + "24202": 0.2001801802, + "24203": 0.2011711712, + "24204": 0.2021621622, + "24205": 0.2031531532, + "24206": 0.2041441441, + "24207": 0.2051351351, + "24208": 0.2061261261, + "24209": 0.2071171171, + "24210": 0.2081081081, + "24211": 0.2090990991, + "24212": 0.2100900901, + "24213": 0.2110810811, + "24214": 0.2120720721, + "24215": 0.2130630631, + "24216": 0.2140540541, + "24217": 0.215045045, + "24218": 0.216036036, + "24219": 0.217027027, + "24220": 0.218018018, + "24221": 0.219009009, + "24222": 0.22, + "24223": 0.220990991, + "24224": 0.221981982, + "24225": 0.222972973, + "24226": 0.223963964, + "24227": 0.224954955, + "24228": 0.2259459459, + "24229": 0.2269369369, + "24230": 0.2279279279, + "24231": 0.2289189189, + "24232": 0.2299099099, + "24233": 0.2309009009, + "24234": 0.2318918919, + "24235": 0.2328828829, + "24236": 0.2338738739, + "24237": 0.2348648649, + "24238": 0.2358558559, + "24239": 0.2368468468, + "24240": 0.2378378378, + "24241": 0.2388288288, + "24242": 0.2398198198, + "24243": 0.2408108108, + "24244": 0.2418018018, + "24245": 0.2427927928, + "24246": 0.2437837838, + "24247": 0.2447747748, + "24248": 0.2457657658, + "24249": 0.2467567568, + "24250": 0.2477477477, + "24251": 0.2487387387, + "24252": 0.2497297297, + "24253": 0.2507207207, + "24254": 0.2517117117, + "24255": 0.2527027027, + "24256": 0.2536936937, + "24257": 0.2546846847, + "24258": 0.2556756757, + "24259": 0.2566666667, + "24260": 0.2576576577, + "24261": 0.2586486486, + "24262": 0.2596396396, + "24263": 0.2606306306, + "24264": 0.2616216216, + "24265": 0.2626126126, + "24266": 0.2636036036, + "24267": 0.2645945946, + "24268": 0.2655855856, + "24269": 0.2665765766, + "24270": 0.2675675676, + "24271": 0.2685585586, + "24272": 0.2695495495, + "24273": 0.2705405405, + "24274": 0.2715315315, + "24275": 0.2725225225, + "24276": 0.2735135135, + "24277": 0.2745045045, + "24278": 0.2754954955, + "24279": 0.2764864865, + "24280": 0.2774774775, + "24281": 0.2784684685, + "24282": 0.2794594595, + "24283": 0.2804504505, + "24284": 0.2814414414, + "24285": 0.2824324324, + "24286": 0.2834234234, + "24287": 0.2844144144, + "24288": 0.2854054054, + "24289": 0.2863963964, + "24290": 0.2873873874, + "24291": 0.2883783784, + "24292": 0.2893693694, + "24293": 0.2903603604, + "24294": 0.2913513514, + "24295": 0.2923423423, + "24296": 0.2933333333, + "24297": 0.2943243243, + "24298": 0.2953153153, + "24299": 0.2963063063, + "24300": 0.2972972973, + "24301": 0.2982882883, + "24302": 0.2992792793, + "24303": 0.3002702703, + "24304": 0.3012612613, + "24305": 0.3022522523, + "24306": 0.3032432432, + "24307": 0.3042342342, + "24308": 0.3052252252, + "24309": 0.3062162162, + "24310": 0.3072072072, + "24311": 0.3081981982, + "24312": 0.3091891892, + "24313": 0.3101801802, + "24314": 0.3111711712, + "24315": 0.3121621622, + "24316": 0.3131531532, + "24317": 0.3141441441, + "24318": 0.3151351351, + "24319": 0.3161261261, + "24320": 0.3171171171, + "24321": 0.3181081081, + "24322": 0.3190990991, + "24323": 0.3200900901, + "24324": 0.3210810811, + "24325": 0.3220720721, + "24326": 0.3230630631, + "24327": 0.3240540541, + "24328": 0.325045045, + "24329": 0.326036036, + "24330": 0.327027027, + "24331": 0.328018018, + "24332": 0.329009009, + "24333": 0.33, + "24334": 0.330990991, + "24335": 0.331981982, + "24336": 0.332972973, + "24337": 0.333963964, + "24338": 0.334954955, + "24339": 0.3359459459, + "24340": 0.3369369369, + "24341": 0.3379279279, + "24342": 0.3389189189, + "24343": 0.3399099099, + "24344": 0.3409009009, + "24345": 0.3418918919, + "24346": 0.3428828829, + "24347": 0.3438738739, + "24348": 0.3448648649, + "24349": 0.3458558559, + "24350": 0.3468468468, + "24351": 0.3478378378, + "24352": 0.3488288288, + "24353": 0.3498198198, + "24354": 0.3508108108, + "24355": 0.3518018018, + "24356": 0.3527927928, + "24357": 0.3537837838, + "24358": 0.3547747748, + "24359": 0.3557657658, + "24360": 0.3567567568, + "24361": 0.3577477477, + "24362": 0.3587387387, + "24363": 0.3597297297, + "24364": 0.3607207207, + "24365": 0.3617117117, + "24366": 0.3627027027, + "24367": 0.3636936937, + "24368": 0.3646846847, + "24369": 0.3656756757, + "24370": 0.3666666667, + "24371": 0.3676576577, + "24372": 0.3686486486, + "24373": 0.3696396396, + "24374": 0.3706306306, + "24375": 0.3716216216, + "24376": 0.3726126126, + "24377": 0.3736036036, + "24378": 0.3745945946, + "24379": 0.3755855856, + "24380": 0.3765765766, + "24381": 0.3775675676, + "24382": 0.3785585586, + "24383": 0.3795495495, + "24384": 0.3805405405, + "24385": 0.3815315315, + "24386": 0.3825225225, + "24387": 0.3835135135, + "24388": 0.3845045045, + "24389": 0.3854954955, + "24390": 0.3864864865, + "24391": 0.3874774775, + "24392": 0.3884684685, + "24393": 0.3894594595, + "24394": 0.3904504505, + "24395": 0.3914414414, + "24396": 0.3924324324, + "24397": 0.3934234234, + "24398": 0.3944144144, + "24399": 0.3954054054, + "24400": 0.3963963964, + "24401": 0.3973873874, + "24402": 0.3983783784, + "24403": 0.3993693694, + "24404": 0.4003603604, + "24405": 0.4013513514, + "24406": 0.4023423423, + "24407": 0.4033333333, + "24408": 0.4043243243, + "24409": 0.4053153153, + "24410": 0.4063063063, + "24411": 0.4072972973, + "24412": 0.4082882883, + "24413": 0.4092792793, + "24414": 0.4102702703, + "24415": 0.4112612613, + "24416": 0.4122522523, + "24417": 0.4132432432, + "24418": 0.4142342342, + "24419": 0.4152252252, + "24420": 0.4162162162, + "24421": 0.4172072072, + "24422": 0.4181981982, + "24423": 0.4191891892, + "24424": 0.4201801802, + "24425": 0.4211711712, + "24426": 0.4221621622, + "24427": 0.4231531532, + "24428": 0.4241441441, + "24429": 0.4251351351, + "24430": 0.4261261261, + "24431": 0.4271171171, + "24432": 0.4281081081, + "24433": 0.4290990991, + "24434": 0.4300900901, + "24435": 0.4310810811, + "24436": 0.4320720721, + "24437": 0.4330630631, + "24438": 0.4340540541, + "24439": 0.435045045, + "24440": 0.436036036, + "24441": 0.437027027, + "24442": 0.438018018, + "24443": 0.439009009, + "24444": 0.44, + "24445": 0.440990991, + "24446": 0.441981982, + "24447": 0.442972973, + "24448": 0.443963964, + "24449": 0.444954955, + "24450": 0.4459459459, + "24451": 0.4469369369, + "24452": 0.4479279279, + "24453": 0.4489189189, + "24454": 0.4499099099, + "24455": 0.4509009009, + "24456": 0.4518918919, + "24457": 0.4528828829, + "24458": 0.4538738739, + "24459": 0.4548648649, + "24460": 0.4558558559, + "24461": 0.4568468468, + "24462": 0.4578378378, + "24463": 0.4588288288, + "24464": 0.4598198198, + "24465": 0.4608108108, + "24466": 0.4618018018, + "24467": 0.4627927928, + "24468": 0.4637837838, + "24469": 0.4647747748, + "24470": 0.4657657658, + "24471": 0.4667567568, + "24472": 0.4677477477, + "24473": 0.4687387387, + "24474": 0.4697297297, + "24475": 0.4707207207, + "24476": 0.4717117117, + "24477": 0.4727027027, + "24478": 0.4736936937, + "24479": 0.4746846847, + "24480": 0.4756756757, + "24481": 0.4766666667, + "24482": 0.4776576577, + "24483": 0.4786486486, + "24484": 0.4796396396, + "24485": 0.4806306306, + "24486": 0.4816216216, + "24487": 0.4826126126, + "24488": 0.4836036036, + "24489": 0.4845945946, + "24490": 0.4855855856, + "24491": 0.4865765766, + "24492": 0.4875675676, + "24493": 0.4885585586, + "24494": 0.4895495495, + "24495": 0.4905405405, + "24496": 0.4915315315, + "24497": 0.4925225225, + "24498": 0.4935135135, + "24499": 0.4945045045, + "24500": 0.4954954955, + "24501": 0.4964864865, + "24502": 0.4974774775, + "24503": 0.4984684685, + "24504": 0.4994594595, + "24505": 0.5004504505, + "24506": 0.5014414414, + "24507": 0.5024324324, + "24508": 0.5034234234, + "24509": 0.5044144144, + "24510": 0.5054054054, + "24511": 0.5063963964, + "24512": 0.5073873874, + "24513": 0.5083783784, + "24514": 0.5093693694, + "24515": 0.5103603604, + "24516": 0.5113513514, + "24517": 0.5123423423, + "24518": 0.5133333333, + "24519": 0.5143243243, + "24520": 0.5153153153, + "24521": 0.5163063063, + "24522": 0.5172972973, + "24523": 0.5182882883, + "24524": 0.5192792793, + "24525": 0.5202702703, + "24526": 0.5212612613, + "24527": 0.5222522523, + "24528": 0.5232432432, + "24529": 0.5242342342, + "24530": 0.5252252252, + "24531": 0.5262162162, + "24532": 0.5272072072, + "24533": 0.5281981982, + "24534": 0.5291891892, + "24535": 0.5301801802, + "24536": 0.5311711712, + "24537": 0.5321621622, + "24538": 0.5331531532, + "24539": 0.5341441441, + "24540": 0.5351351351, + "24541": 0.5361261261, + "24542": 0.5371171171, + "24543": 0.5381081081, + "24544": 0.5390990991, + "24545": 0.5400900901, + "24546": 0.5410810811, + "24547": 0.5420720721, + "24548": 0.5430630631, + "24549": 0.5440540541, + "24550": 0.545045045, + "24551": 0.546036036, + "24552": 0.547027027, + "24553": 0.548018018, + "24554": 0.549009009, + "24555": 0.55, + "24556": 0.550990991, + "24557": 0.551981982, + "24558": 0.552972973, + "24559": 0.553963964, + "24560": 0.554954955, + "24561": 0.5559459459, + "24562": 0.5569369369, + "24563": 0.5579279279, + "24564": 0.5589189189, + "24565": 0.5599099099, + "24566": 0.5609009009, + "24567": 0.5618918919, + "24568": 0.5628828829, + "24569": 0.5638738739, + "24570": 0.5648648649, + "24571": 0.5658558559, + "24572": 0.5668468468, + "24573": 0.5678378378, + "24574": 0.5688288288, + "24575": 0.5698198198, + "24576": 0.5708108108, + "24577": 0.5718018018, + "24578": 0.5727927928, + "24579": 0.5737837838, + "24580": 0.5747747748, + "24581": 0.5757657658, + "24582": 0.5767567568, + "24583": 0.5777477477, + "24584": 0.5787387387, + "24585": 0.5797297297, + "24586": 0.5807207207, + "24587": 0.5817117117, + "24588": 0.5827027027, + "24589": 0.5836936937, + "24590": 0.5846846847, + "24591": 0.5856756757, + "24592": 0.5866666667, + "24593": 0.5876576577, + "24594": 0.5886486486, + "24595": 0.5896396396, + "24596": 0.5906306306, + "24597": 0.5916216216, + "24598": 0.5926126126, + "24599": 0.5936036036, + "24600": 0.5945945946, + "24601": 0.5955855856, + "24602": 0.5965765766, + "24603": 0.5975675676, + "24604": 0.5985585586, + "24605": 0.5995495495, + "24606": 0.6005405405, + "24607": 0.6015315315, + "24608": 0.6025225225, + "24609": 0.6035135135, + "24610": 0.6045045045, + "24611": 0.6054954955, + "24612": 0.6064864865, + "24613": 0.6074774775, + "24614": 0.6084684685, + "24615": 0.6094594595, + "24616": 0.6104504505, + "24617": 0.6114414414, + "24618": 0.6124324324, + "24619": 0.6134234234, + "24620": 0.6144144144, + "24621": 0.6154054054, + "24622": 0.6163963964, + "24623": 0.6173873874, + "24624": 0.6183783784, + "24625": 0.6193693694, + "24626": 0.6203603604, + "24627": 0.6213513514, + "24628": 0.6223423423, + "24629": 0.6233333333, + "24630": 0.6243243243, + "24631": 0.6253153153, + "24632": 0.6263063063, + "24633": 0.6272972973, + "24634": 0.6282882883, + "24635": 0.6292792793, + "24636": 0.6302702703, + "24637": 0.6312612613, + "24638": 0.6322522523, + "24639": 0.6332432432, + "24640": 0.6342342342, + "24641": 0.6352252252, + "24642": 0.6362162162, + "24643": 0.6372072072, + "24644": 0.6381981982, + "24645": 0.6391891892, + "24646": 0.6401801802, + "24647": 0.6411711712, + "24648": 0.6421621622, + "24649": 0.6431531532, + "24650": 0.6441441441, + "24651": 0.6451351351, + "24652": 0.6461261261, + "24653": 0.6471171171, + "24654": 0.6481081081, + "24655": 0.6490990991, + "24656": 0.6500900901, + "24657": 0.6510810811, + "24658": 0.6520720721, + "24659": 0.6530630631, + "24660": 0.6540540541, + "24661": 0.655045045, + "24662": 0.656036036, + "24663": 0.657027027, + "24664": 0.658018018, + "24665": 0.659009009, + "24666": 0.66, + "24667": 0.660990991, + "24668": 0.661981982, + "24669": 0.662972973, + "24670": 0.663963964, + "24671": 0.664954955, + "24672": 0.6659459459, + "24673": 0.6669369369, + "24674": 0.6679279279, + "24675": 0.6689189189, + "24676": 0.6699099099, + "24677": 0.6709009009, + "24678": 0.6718918919, + "24679": 0.6728828829, + "24680": 0.6738738739, + "24681": 0.6748648649, + "24682": 0.6758558559, + "24683": 0.6768468468, + "24684": 0.6778378378, + "24685": 0.6788288288, + "24686": 0.6798198198, + "24687": 0.6808108108, + "24688": 0.6818018018, + "24689": 0.6827927928, + "24690": 0.6837837838, + "24691": 0.6847747748, + "24692": 0.6857657658, + "24693": 0.6867567568, + "24694": 0.6877477477, + "24695": 0.6887387387, + "24696": 0.6897297297, + "24697": 0.6907207207, + "24698": 0.6917117117, + "24699": 0.6927027027, + "24700": 0.6936936937, + "24701": 0.6946846847, + "24702": 0.6956756757, + "24703": 0.6966666667, + "24704": 0.6976576577, + "24705": 0.6986486486, + "24706": 0.6996396396, + "24707": 0.7006306306, + "24708": 0.7016216216, + "24709": 0.7026126126, + "24710": 0.7036036036, + "24711": 0.7045945946, + "24712": 0.7055855856, + "24713": 0.7065765766, + "24714": 0.7075675676, + "24715": 0.7085585586, + "24716": 0.7095495495, + "24717": 0.7105405405, + "24718": 0.7115315315, + "24719": 0.7125225225, + "24720": 0.7135135135, + "24721": 0.7145045045, + "24722": 0.7154954955, + "24723": 0.7164864865, + "24724": 0.7174774775, + "24725": 0.7184684685, + "24726": 0.7194594595, + "24727": 0.7204504505, + "24728": 0.7214414414, + "24729": 0.7224324324, + "24730": 0.7234234234, + "24731": 0.7244144144, + "24732": 0.7254054054, + "24733": 0.7263963964, + "24734": 0.7273873874, + "24735": 0.7283783784, + "24736": 0.7293693694, + "24737": 0.7303603604, + "24738": 0.7313513514, + "24739": 0.7323423423, + "24740": 0.7333333333, + "24741": 0.7343243243, + "24742": 0.7353153153, + "24743": 0.7363063063, + "24744": 0.7372972973, + "24745": 0.7382882883, + "24746": 0.7392792793, + "24747": 0.7402702703, + "24748": 0.7412612613, + "24749": 0.7422522523, + "24750": 0.7432432432, + "24751": 0.7442342342, + "24752": 0.7452252252, + "24753": 0.7462162162, + "24754": 0.7472072072, + "24755": 0.7481981982, + "24756": 0.7491891892, + "24757": 0.7501801802, + "24758": 0.7511711712, + "24759": 0.7521621622, + "24760": 0.7531531532, + "24761": 0.7541441441, + "24762": 0.7551351351, + "24763": 0.7561261261, + "24764": 0.7571171171, + "24765": 0.7581081081, + "24766": 0.7590990991, + "24767": 0.7600900901, + "24768": 0.7610810811, + "24769": 0.7620720721, + "24770": 0.7630630631, + "24771": 0.7640540541, + "24772": 0.765045045, + "24773": 0.766036036, + "24774": 0.767027027, + "24775": 0.768018018, + "24776": 0.769009009, + "24777": 0.77, + "24778": 0.770990991, + "24779": 0.771981982, + "24780": 0.772972973, + "24781": 0.773963964, + "24782": 0.774954955, + "24783": 0.7759459459, + "24784": 0.7769369369, + "24785": 0.7779279279, + "24786": 0.7789189189, + "24787": 0.7799099099, + "24788": 0.7809009009, + "24789": 0.7818918919, + "24790": 0.7828828829, + "24791": 0.7838738739, + "24792": 0.7848648649, + "24793": 0.7858558559, + "24794": 0.7868468468, + "24795": 0.7878378378, + "24796": 0.7888288288, + "24797": 0.7898198198, + "24798": 0.7908108108, + "24799": 0.7918018018, + "24800": 0.7927927928, + "24801": 0.7937837838, + "24802": 0.7947747748, + "24803": 0.7957657658, + "24804": 0.7967567568, + "24805": 0.7977477477, + "24806": 0.7987387387, + "24807": 0.7997297297, + "24808": 0.8007207207, + "24809": 0.8017117117, + "24810": 0.8027027027, + "24811": 0.8036936937, + "24812": 0.8046846847, + "24813": 0.8056756757, + "24814": 0.8066666667, + "24815": 0.8076576577, + "24816": 0.8086486486, + "24817": 0.8096396396, + "24818": 0.8106306306, + "24819": 0.8116216216, + "24820": 0.8126126126, + "24821": 0.8136036036, + "24822": 0.8145945946, + "24823": 0.8155855856, + "24824": 0.8165765766, + "24825": 0.8175675676, + "24826": 0.8185585586, + "24827": 0.8195495495, + "24828": 0.8205405405, + "24829": 0.8215315315, + "24830": 0.8225225225, + "24831": 0.8235135135, + "24832": 0.8245045045, + "24833": 0.8254954955, + "24834": 0.8264864865, + "24835": 0.8274774775, + "24836": 0.8284684685, + "24837": 0.8294594595, + "24838": 0.8304504505, + "24839": 0.8314414414, + "24840": 0.8324324324, + "24841": 0.8334234234, + "24842": 0.8344144144, + "24843": 0.8354054054, + "24844": 0.8363963964, + "24845": 0.8373873874, + "24846": 0.8383783784, + "24847": 0.8393693694, + "24848": 0.8403603604, + "24849": 0.8413513514, + "24850": 0.8423423423, + "24851": 0.8433333333, + "24852": 0.8443243243, + "24853": 0.8453153153, + "24854": 0.8463063063, + "24855": 0.8472972973, + "24856": 0.8482882883, + "24857": 0.8492792793, + "24858": 0.8502702703, + "24859": 0.8512612613, + "24860": 0.8522522523, + "24861": 0.8532432432, + "24862": 0.8542342342, + "24863": 0.8552252252, + "24864": 0.8562162162, + "24865": 0.8572072072, + "24866": 0.8581981982, + "24867": 0.8591891892, + "24868": 0.8601801802, + "24869": 0.8611711712, + "24870": 0.8621621622, + "24871": 0.8631531532, + "24872": 0.8641441441, + "24873": 0.8651351351, + "24874": 0.8661261261, + "24875": 0.8671171171, + "24876": 0.8681081081, + "24877": 0.8690990991, + "24878": 0.8700900901, + "24879": 0.8710810811, + "24880": 0.8720720721, + "24881": 0.8730630631, + "24882": 0.8740540541, + "24883": 0.875045045, + "24884": 0.876036036, + "24885": 0.877027027, + "24886": 0.878018018, + "24887": 0.879009009, + "24888": 0.88, + "24889": 0.880990991, + "24890": 0.881981982, + "24891": 0.882972973, + "24892": 0.883963964, + "24893": 0.884954955, + "24894": 0.8859459459, + "24895": 0.8869369369, + "24896": 0.8879279279, + "24897": 0.8889189189, + "24898": 0.8899099099, + "24899": 0.8909009009, + "24900": 0.8918918919, + "24901": 0.8928828829, + "24902": 0.8938738739, + "24903": 0.8948648649, + "24904": 0.8958558559, + "24905": 0.8968468468, + "24906": 0.8978378378, + "24907": 0.8988288288, + "24908": 0.8998198198, + "24909": 0.9008108108, + "24910": 0.9018018018, + "24911": 0.9027927928, + "24912": 0.9037837838, + "24913": 0.9047747748, + "24914": 0.9057657658, + "24915": 0.9067567568, + "24916": 0.9077477477, + "24917": 0.9087387387, + "24918": 0.9097297297, + "24919": 0.9107207207, + "24920": 0.9117117117, + "24921": 0.9127027027, + "24922": 0.9136936937, + "24923": 0.9146846847, + "24924": 0.9156756757, + "24925": 0.9166666667, + "24926": 0.9176576577, + "24927": 0.9186486486, + "24928": 0.9196396396, + "24929": 0.9206306306, + "24930": 0.9216216216, + "24931": 0.9226126126, + "24932": 0.9236036036, + "24933": 0.9245945946, + "24934": 0.9255855856, + "24935": 0.9265765766, + "24936": 0.9275675676, + "24937": 0.9285585586, + "24938": 0.9295495495, + "24939": 0.9305405405, + "24940": 0.9315315315, + "24941": 0.9325225225, + "24942": 0.9335135135, + "24943": 0.9345045045, + "24944": 0.9354954955, + "24945": 0.9364864865, + "24946": 0.9374774775, + "24947": 0.9384684685, + "24948": 0.9394594595, + "24949": 0.9404504505, + "24950": 0.9414414414, + "24951": 0.9424324324, + "24952": 0.9434234234, + "24953": 0.9444144144, + "24954": 0.9454054054, + "24955": 0.9463963964, + "24956": 0.9473873874, + "24957": 0.9483783784, + "24958": 0.9493693694, + "24959": 0.9503603604, + "24960": 0.9513513514, + "24961": 0.9523423423, + "24962": 0.9533333333, + "24963": 0.9543243243, + "24964": 0.9553153153, + "24965": 0.9563063063, + "24966": 0.9572972973, + "24967": 0.9582882883, + "24968": 0.9592792793, + "24969": 0.9602702703, + "24970": 0.9612612613, + "24971": 0.9622522523, + "24972": 0.9632432432, + "24973": 0.9642342342, + "24974": 0.9652252252, + "24975": 0.9662162162, + "24976": 0.9672072072, + "24977": 0.9681981982, + "24978": 0.9691891892, + "24979": 0.9701801802, + "24980": 0.9711711712, + "24981": 0.9721621622, + "24982": 0.9731531532, + "24983": 0.9741441441, + "24984": 0.9751351351, + "24985": 0.9761261261, + "24986": 0.9771171171, + "24987": 0.9781081081, + "24988": 0.9790990991, + "24989": 0.9800900901, + "24990": 0.9810810811, + "24991": 0.9820720721, + "24992": 0.9830630631, + "24993": 0.9840540541, + "24994": 0.985045045, + "24995": 0.986036036, + "24996": 0.987027027, + "24997": 0.988018018, + "24998": 0.989009009, + "24999": 0.99, + "25000": 0.0, + "25001": 0.000990991, + "25002": 0.001981982, + "25003": 0.002972973, + "25004": 0.003963964, + "25005": 0.004954955, + "25006": 0.0059459459, + "25007": 0.0069369369, + "25008": 0.0079279279, + "25009": 0.0089189189, + "25010": 0.0099099099, + "25011": 0.0109009009, + "25012": 0.0118918919, + "25013": 0.0128828829, + "25014": 0.0138738739, + "25015": 0.0148648649, + "25016": 0.0158558559, + "25017": 0.0168468468, + "25018": 0.0178378378, + "25019": 0.0188288288, + "25020": 0.0198198198, + "25021": 0.0208108108, + "25022": 0.0218018018, + "25023": 0.0227927928, + "25024": 0.0237837838, + "25025": 0.0247747748, + "25026": 0.0257657658, + "25027": 0.0267567568, + "25028": 0.0277477477, + "25029": 0.0287387387, + "25030": 0.0297297297, + "25031": 0.0307207207, + "25032": 0.0317117117, + "25033": 0.0327027027, + "25034": 0.0336936937, + "25035": 0.0346846847, + "25036": 0.0356756757, + "25037": 0.0366666667, + "25038": 0.0376576577, + "25039": 0.0386486486, + "25040": 0.0396396396, + "25041": 0.0406306306, + "25042": 0.0416216216, + "25043": 0.0426126126, + "25044": 0.0436036036, + "25045": 0.0445945946, + "25046": 0.0455855856, + "25047": 0.0465765766, + "25048": 0.0475675676, + "25049": 0.0485585586, + "25050": 0.0495495495, + "25051": 0.0505405405, + "25052": 0.0515315315, + "25053": 0.0525225225, + "25054": 0.0535135135, + "25055": 0.0545045045, + "25056": 0.0554954955, + "25057": 0.0564864865, + "25058": 0.0574774775, + "25059": 0.0584684685, + "25060": 0.0594594595, + "25061": 0.0604504505, + "25062": 0.0614414414, + "25063": 0.0624324324, + "25064": 0.0634234234, + "25065": 0.0644144144, + "25066": 0.0654054054, + "25067": 0.0663963964, + "25068": 0.0673873874, + "25069": 0.0683783784, + "25070": 0.0693693694, + "25071": 0.0703603604, + "25072": 0.0713513514, + "25073": 0.0723423423, + "25074": 0.0733333333, + "25075": 0.0743243243, + "25076": 0.0753153153, + "25077": 0.0763063063, + "25078": 0.0772972973, + "25079": 0.0782882883, + "25080": 0.0792792793, + "25081": 0.0802702703, + "25082": 0.0812612613, + "25083": 0.0822522523, + "25084": 0.0832432432, + "25085": 0.0842342342, + "25086": 0.0852252252, + "25087": 0.0862162162, + "25088": 0.0872072072, + "25089": 0.0881981982, + "25090": 0.0891891892, + "25091": 0.0901801802, + "25092": 0.0911711712, + "25093": 0.0921621622, + "25094": 0.0931531532, + "25095": 0.0941441441, + "25096": 0.0951351351, + "25097": 0.0961261261, + "25098": 0.0971171171, + "25099": 0.0981081081, + "25100": 0.0990990991, + "25101": 0.1000900901, + "25102": 0.1010810811, + "25103": 0.1020720721, + "25104": 0.1030630631, + "25105": 0.1040540541, + "25106": 0.105045045, + "25107": 0.106036036, + "25108": 0.107027027, + "25109": 0.108018018, + "25110": 0.109009009, + "25111": 0.11, + "25112": 0.110990991, + "25113": 0.111981982, + "25114": 0.112972973, + "25115": 0.113963964, + "25116": 0.114954955, + "25117": 0.1159459459, + "25118": 0.1169369369, + "25119": 0.1179279279, + "25120": 0.1189189189, + "25121": 0.1199099099, + "25122": 0.1209009009, + "25123": 0.1218918919, + "25124": 0.1228828829, + "25125": 0.1238738739, + "25126": 0.1248648649, + "25127": 0.1258558559, + "25128": 0.1268468468, + "25129": 0.1278378378, + "25130": 0.1288288288, + "25131": 0.1298198198, + "25132": 0.1308108108, + "25133": 0.1318018018, + "25134": 0.1327927928, + "25135": 0.1337837838, + "25136": 0.1347747748, + "25137": 0.1357657658, + "25138": 0.1367567568, + "25139": 0.1377477477, + "25140": 0.1387387387, + "25141": 0.1397297297, + "25142": 0.1407207207, + "25143": 0.1417117117, + "25144": 0.1427027027, + "25145": 0.1436936937, + "25146": 0.1446846847, + "25147": 0.1456756757, + "25148": 0.1466666667, + "25149": 0.1476576577, + "25150": 0.1486486486, + "25151": 0.1496396396, + "25152": 0.1506306306, + "25153": 0.1516216216, + "25154": 0.1526126126, + "25155": 0.1536036036, + "25156": 0.1545945946, + "25157": 0.1555855856, + "25158": 0.1565765766, + "25159": 0.1575675676, + "25160": 0.1585585586, + "25161": 0.1595495495, + "25162": 0.1605405405, + "25163": 0.1615315315, + "25164": 0.1625225225, + "25165": 0.1635135135, + "25166": 0.1645045045, + "25167": 0.1654954955, + "25168": 0.1664864865, + "25169": 0.1674774775, + "25170": 0.1684684685, + "25171": 0.1694594595, + "25172": 0.1704504505, + "25173": 0.1714414414, + "25174": 0.1724324324, + "25175": 0.1734234234, + "25176": 0.1744144144, + "25177": 0.1754054054, + "25178": 0.1763963964, + "25179": 0.1773873874, + "25180": 0.1783783784, + "25181": 0.1793693694, + "25182": 0.1803603604, + "25183": 0.1813513514, + "25184": 0.1823423423, + "25185": 0.1833333333, + "25186": 0.1843243243, + "25187": 0.1853153153, + "25188": 0.1863063063, + "25189": 0.1872972973, + "25190": 0.1882882883, + "25191": 0.1892792793, + "25192": 0.1902702703, + "25193": 0.1912612613, + "25194": 0.1922522523, + "25195": 0.1932432432, + "25196": 0.1942342342, + "25197": 0.1952252252, + "25198": 0.1962162162, + "25199": 0.1972072072, + "25200": 0.1981981982, + "25201": 0.1991891892, + "25202": 0.2001801802, + "25203": 0.2011711712, + "25204": 0.2021621622, + "25205": 0.2031531532, + "25206": 0.2041441441, + "25207": 0.2051351351, + "25208": 0.2061261261, + "25209": 0.2071171171, + "25210": 0.2081081081, + "25211": 0.2090990991, + "25212": 0.2100900901, + "25213": 0.2110810811, + "25214": 0.2120720721, + "25215": 0.2130630631, + "25216": 0.2140540541, + "25217": 0.215045045, + "25218": 0.216036036, + "25219": 0.217027027, + "25220": 0.218018018, + "25221": 0.219009009, + "25222": 0.22, + "25223": 0.220990991, + "25224": 0.221981982, + "25225": 0.222972973, + "25226": 0.223963964, + "25227": 0.224954955, + "25228": 0.2259459459, + "25229": 0.2269369369, + "25230": 0.2279279279, + "25231": 0.2289189189, + "25232": 0.2299099099, + "25233": 0.2309009009, + "25234": 0.2318918919, + "25235": 0.2328828829, + "25236": 0.2338738739, + "25237": 0.2348648649, + "25238": 0.2358558559, + "25239": 0.2368468468, + "25240": 0.2378378378, + "25241": 0.2388288288, + "25242": 0.2398198198, + "25243": 0.2408108108, + "25244": 0.2418018018, + "25245": 0.2427927928, + "25246": 0.2437837838, + "25247": 0.2447747748, + "25248": 0.2457657658, + "25249": 0.2467567568, + "25250": 0.2477477477, + "25251": 0.2487387387, + "25252": 0.2497297297, + "25253": 0.2507207207, + "25254": 0.2517117117, + "25255": 0.2527027027, + "25256": 0.2536936937, + "25257": 0.2546846847, + "25258": 0.2556756757, + "25259": 0.2566666667, + "25260": 0.2576576577, + "25261": 0.2586486486, + "25262": 0.2596396396, + "25263": 0.2606306306, + "25264": 0.2616216216, + "25265": 0.2626126126, + "25266": 0.2636036036, + "25267": 0.2645945946, + "25268": 0.2655855856, + "25269": 0.2665765766, + "25270": 0.2675675676, + "25271": 0.2685585586, + "25272": 0.2695495495, + "25273": 0.2705405405, + "25274": 0.2715315315, + "25275": 0.2725225225, + "25276": 0.2735135135, + "25277": 0.2745045045, + "25278": 0.2754954955, + "25279": 0.2764864865, + "25280": 0.2774774775, + "25281": 0.2784684685, + "25282": 0.2794594595, + "25283": 0.2804504505, + "25284": 0.2814414414, + "25285": 0.2824324324, + "25286": 0.2834234234, + "25287": 0.2844144144, + "25288": 0.2854054054, + "25289": 0.2863963964, + "25290": 0.2873873874, + "25291": 0.2883783784, + "25292": 0.2893693694, + "25293": 0.2903603604, + "25294": 0.2913513514, + "25295": 0.2923423423, + "25296": 0.2933333333, + "25297": 0.2943243243, + "25298": 0.2953153153, + "25299": 0.2963063063, + "25300": 0.2972972973, + "25301": 0.2982882883, + "25302": 0.2992792793, + "25303": 0.3002702703, + "25304": 0.3012612613, + "25305": 0.3022522523, + "25306": 0.3032432432, + "25307": 0.3042342342, + "25308": 0.3052252252, + "25309": 0.3062162162, + "25310": 0.3072072072, + "25311": 0.3081981982, + "25312": 0.3091891892, + "25313": 0.3101801802, + "25314": 0.3111711712, + "25315": 0.3121621622, + "25316": 0.3131531532, + "25317": 0.3141441441, + "25318": 0.3151351351, + "25319": 0.3161261261, + "25320": 0.3171171171, + "25321": 0.3181081081, + "25322": 0.3190990991, + "25323": 0.3200900901, + "25324": 0.3210810811, + "25325": 0.3220720721, + "25326": 0.3230630631, + "25327": 0.3240540541, + "25328": 0.325045045, + "25329": 0.326036036, + "25330": 0.327027027, + "25331": 0.328018018, + "25332": 0.329009009, + "25333": 0.33, + "25334": 0.330990991, + "25335": 0.331981982, + "25336": 0.332972973, + "25337": 0.333963964, + "25338": 0.334954955, + "25339": 0.3359459459, + "25340": 0.3369369369, + "25341": 0.3379279279, + "25342": 0.3389189189, + "25343": 0.3399099099, + "25344": 0.3409009009, + "25345": 0.3418918919, + "25346": 0.3428828829, + "25347": 0.3438738739, + "25348": 0.3448648649, + "25349": 0.3458558559, + "25350": 0.3468468468, + "25351": 0.3478378378, + "25352": 0.3488288288, + "25353": 0.3498198198, + "25354": 0.3508108108, + "25355": 0.3518018018, + "25356": 0.3527927928, + "25357": 0.3537837838, + "25358": 0.3547747748, + "25359": 0.3557657658, + "25360": 0.3567567568, + "25361": 0.3577477477, + "25362": 0.3587387387, + "25363": 0.3597297297, + "25364": 0.3607207207, + "25365": 0.3617117117, + "25366": 0.3627027027, + "25367": 0.3636936937, + "25368": 0.3646846847, + "25369": 0.3656756757, + "25370": 0.3666666667, + "25371": 0.3676576577, + "25372": 0.3686486486, + "25373": 0.3696396396, + "25374": 0.3706306306, + "25375": 0.3716216216, + "25376": 0.3726126126, + "25377": 0.3736036036, + "25378": 0.3745945946, + "25379": 0.3755855856, + "25380": 0.3765765766, + "25381": 0.3775675676, + "25382": 0.3785585586, + "25383": 0.3795495495, + "25384": 0.3805405405, + "25385": 0.3815315315, + "25386": 0.3825225225, + "25387": 0.3835135135, + "25388": 0.3845045045, + "25389": 0.3854954955, + "25390": 0.3864864865, + "25391": 0.3874774775, + "25392": 0.3884684685, + "25393": 0.3894594595, + "25394": 0.3904504505, + "25395": 0.3914414414, + "25396": 0.3924324324, + "25397": 0.3934234234, + "25398": 0.3944144144, + "25399": 0.3954054054, + "25400": 0.3963963964, + "25401": 0.3973873874, + "25402": 0.3983783784, + "25403": 0.3993693694, + "25404": 0.4003603604, + "25405": 0.4013513514, + "25406": 0.4023423423, + "25407": 0.4033333333, + "25408": 0.4043243243, + "25409": 0.4053153153, + "25410": 0.4063063063, + "25411": 0.4072972973, + "25412": 0.4082882883, + "25413": 0.4092792793, + "25414": 0.4102702703, + "25415": 0.4112612613, + "25416": 0.4122522523, + "25417": 0.4132432432, + "25418": 0.4142342342, + "25419": 0.4152252252, + "25420": 0.4162162162, + "25421": 0.4172072072, + "25422": 0.4181981982, + "25423": 0.4191891892, + "25424": 0.4201801802, + "25425": 0.4211711712, + "25426": 0.4221621622, + "25427": 0.4231531532, + "25428": 0.4241441441, + "25429": 0.4251351351, + "25430": 0.4261261261, + "25431": 0.4271171171, + "25432": 0.4281081081, + "25433": 0.4290990991, + "25434": 0.4300900901, + "25435": 0.4310810811, + "25436": 0.4320720721, + "25437": 0.4330630631, + "25438": 0.4340540541, + "25439": 0.435045045, + "25440": 0.436036036, + "25441": 0.437027027, + "25442": 0.438018018, + "25443": 0.439009009, + "25444": 0.44, + "25445": 0.440990991, + "25446": 0.441981982, + "25447": 0.442972973, + "25448": 0.443963964, + "25449": 0.444954955, + "25450": 0.4459459459, + "25451": 0.4469369369, + "25452": 0.4479279279, + "25453": 0.4489189189, + "25454": 0.4499099099, + "25455": 0.4509009009, + "25456": 0.4518918919, + "25457": 0.4528828829, + "25458": 0.4538738739, + "25459": 0.4548648649, + "25460": 0.4558558559, + "25461": 0.4568468468, + "25462": 0.4578378378, + "25463": 0.4588288288, + "25464": 0.4598198198, + "25465": 0.4608108108, + "25466": 0.4618018018, + "25467": 0.4627927928, + "25468": 0.4637837838, + "25469": 0.4647747748, + "25470": 0.4657657658, + "25471": 0.4667567568, + "25472": 0.4677477477, + "25473": 0.4687387387, + "25474": 0.4697297297, + "25475": 0.4707207207, + "25476": 0.4717117117, + "25477": 0.4727027027, + "25478": 0.4736936937, + "25479": 0.4746846847, + "25480": 0.4756756757, + "25481": 0.4766666667, + "25482": 0.4776576577, + "25483": 0.4786486486, + "25484": 0.4796396396, + "25485": 0.4806306306, + "25486": 0.4816216216, + "25487": 0.4826126126, + "25488": 0.4836036036, + "25489": 0.4845945946, + "25490": 0.4855855856, + "25491": 0.4865765766, + "25492": 0.4875675676, + "25493": 0.4885585586, + "25494": 0.4895495495, + "25495": 0.4905405405, + "25496": 0.4915315315, + "25497": 0.4925225225, + "25498": 0.4935135135, + "25499": 0.4945045045, + "25500": 0.4954954955, + "25501": 0.4964864865, + "25502": 0.4974774775, + "25503": 0.4984684685, + "25504": 0.4994594595, + "25505": 0.5004504505, + "25506": 0.5014414414, + "25507": 0.5024324324, + "25508": 0.5034234234, + "25509": 0.5044144144, + "25510": 0.5054054054, + "25511": 0.5063963964, + "25512": 0.5073873874, + "25513": 0.5083783784, + "25514": 0.5093693694, + "25515": 0.5103603604, + "25516": 0.5113513514, + "25517": 0.5123423423, + "25518": 0.5133333333, + "25519": 0.5143243243, + "25520": 0.5153153153, + "25521": 0.5163063063, + "25522": 0.5172972973, + "25523": 0.5182882883, + "25524": 0.5192792793, + "25525": 0.5202702703, + "25526": 0.5212612613, + "25527": 0.5222522523, + "25528": 0.5232432432, + "25529": 0.5242342342, + "25530": 0.5252252252, + "25531": 0.5262162162, + "25532": 0.5272072072, + "25533": 0.5281981982, + "25534": 0.5291891892, + "25535": 0.5301801802, + "25536": 0.5311711712, + "25537": 0.5321621622, + "25538": 0.5331531532, + "25539": 0.5341441441, + "25540": 0.5351351351, + "25541": 0.5361261261, + "25542": 0.5371171171, + "25543": 0.5381081081, + "25544": 0.5390990991, + "25545": 0.5400900901, + "25546": 0.5410810811, + "25547": 0.5420720721, + "25548": 0.5430630631, + "25549": 0.5440540541, + "25550": 0.545045045, + "25551": 0.546036036, + "25552": 0.547027027, + "25553": 0.548018018, + "25554": 0.549009009, + "25555": 0.55, + "25556": 0.550990991, + "25557": 0.551981982, + "25558": 0.552972973, + "25559": 0.553963964, + "25560": 0.554954955, + "25561": 0.5559459459, + "25562": 0.5569369369, + "25563": 0.5579279279, + "25564": 0.5589189189, + "25565": 0.5599099099, + "25566": 0.5609009009, + "25567": 0.5618918919, + "25568": 0.5628828829, + "25569": 0.5638738739, + "25570": 0.5648648649, + "25571": 0.5658558559, + "25572": 0.5668468468, + "25573": 0.5678378378, + "25574": 0.5688288288, + "25575": 0.5698198198, + "25576": 0.5708108108, + "25577": 0.5718018018, + "25578": 0.5727927928, + "25579": 0.5737837838, + "25580": 0.5747747748, + "25581": 0.5757657658, + "25582": 0.5767567568, + "25583": 0.5777477477, + "25584": 0.5787387387, + "25585": 0.5797297297, + "25586": 0.5807207207, + "25587": 0.5817117117, + "25588": 0.5827027027, + "25589": 0.5836936937, + "25590": 0.5846846847, + "25591": 0.5856756757, + "25592": 0.5866666667, + "25593": 0.5876576577, + "25594": 0.5886486486, + "25595": 0.5896396396, + "25596": 0.5906306306, + "25597": 0.5916216216, + "25598": 0.5926126126, + "25599": 0.5936036036, + "25600": 0.5945945946, + "25601": 0.5955855856, + "25602": 0.5965765766, + "25603": 0.5975675676, + "25604": 0.5985585586, + "25605": 0.5995495495, + "25606": 0.6005405405, + "25607": 0.6015315315, + "25608": 0.6025225225, + "25609": 0.6035135135, + "25610": 0.6045045045, + "25611": 0.6054954955, + "25612": 0.6064864865, + "25613": 0.6074774775, + "25614": 0.6084684685, + "25615": 0.6094594595, + "25616": 0.6104504505, + "25617": 0.6114414414, + "25618": 0.6124324324, + "25619": 0.6134234234, + "25620": 0.6144144144, + "25621": 0.6154054054, + "25622": 0.6163963964, + "25623": 0.6173873874, + "25624": 0.6183783784, + "25625": 0.6193693694, + "25626": 0.6203603604, + "25627": 0.6213513514, + "25628": 0.6223423423, + "25629": 0.6233333333, + "25630": 0.6243243243, + "25631": 0.6253153153, + "25632": 0.6263063063, + "25633": 0.6272972973, + "25634": 0.6282882883, + "25635": 0.6292792793, + "25636": 0.6302702703, + "25637": 0.6312612613, + "25638": 0.6322522523, + "25639": 0.6332432432, + "25640": 0.6342342342, + "25641": 0.6352252252, + "25642": 0.6362162162, + "25643": 0.6372072072, + "25644": 0.6381981982, + "25645": 0.6391891892, + "25646": 0.6401801802, + "25647": 0.6411711712, + "25648": 0.6421621622, + "25649": 0.6431531532, + "25650": 0.6441441441, + "25651": 0.6451351351, + "25652": 0.6461261261, + "25653": 0.6471171171, + "25654": 0.6481081081, + "25655": 0.6490990991, + "25656": 0.6500900901, + "25657": 0.6510810811, + "25658": 0.6520720721, + "25659": 0.6530630631, + "25660": 0.6540540541, + "25661": 0.655045045, + "25662": 0.656036036, + "25663": 0.657027027, + "25664": 0.658018018, + "25665": 0.659009009, + "25666": 0.66, + "25667": 0.660990991, + "25668": 0.661981982, + "25669": 0.662972973, + "25670": 0.663963964, + "25671": 0.664954955, + "25672": 0.6659459459, + "25673": 0.6669369369, + "25674": 0.6679279279, + "25675": 0.6689189189, + "25676": 0.6699099099, + "25677": 0.6709009009, + "25678": 0.6718918919, + "25679": 0.6728828829, + "25680": 0.6738738739, + "25681": 0.6748648649, + "25682": 0.6758558559, + "25683": 0.6768468468, + "25684": 0.6778378378, + "25685": 0.6788288288, + "25686": 0.6798198198, + "25687": 0.6808108108, + "25688": 0.6818018018, + "25689": 0.6827927928, + "25690": 0.6837837838, + "25691": 0.6847747748, + "25692": 0.6857657658, + "25693": 0.6867567568, + "25694": 0.6877477477, + "25695": 0.6887387387, + "25696": 0.6897297297, + "25697": 0.6907207207, + "25698": 0.6917117117, + "25699": 0.6927027027, + "25700": 0.6936936937, + "25701": 0.6946846847, + "25702": 0.6956756757, + "25703": 0.6966666667, + "25704": 0.6976576577, + "25705": 0.6986486486, + "25706": 0.6996396396, + "25707": 0.7006306306, + "25708": 0.7016216216, + "25709": 0.7026126126, + "25710": 0.7036036036, + "25711": 0.7045945946, + "25712": 0.7055855856, + "25713": 0.7065765766, + "25714": 0.7075675676, + "25715": 0.7085585586, + "25716": 0.7095495495, + "25717": 0.7105405405, + "25718": 0.7115315315, + "25719": 0.7125225225, + "25720": 0.7135135135, + "25721": 0.7145045045, + "25722": 0.7154954955, + "25723": 0.7164864865, + "25724": 0.7174774775, + "25725": 0.7184684685, + "25726": 0.7194594595, + "25727": 0.7204504505, + "25728": 0.7214414414, + "25729": 0.7224324324, + "25730": 0.7234234234, + "25731": 0.7244144144, + "25732": 0.7254054054, + "25733": 0.7263963964, + "25734": 0.7273873874, + "25735": 0.7283783784, + "25736": 0.7293693694, + "25737": 0.7303603604, + "25738": 0.7313513514, + "25739": 0.7323423423, + "25740": 0.7333333333, + "25741": 0.7343243243, + "25742": 0.7353153153, + "25743": 0.7363063063, + "25744": 0.7372972973, + "25745": 0.7382882883, + "25746": 0.7392792793, + "25747": 0.7402702703, + "25748": 0.7412612613, + "25749": 0.7422522523, + "25750": 0.7432432432, + "25751": 0.7442342342, + "25752": 0.7452252252, + "25753": 0.7462162162, + "25754": 0.7472072072, + "25755": 0.7481981982, + "25756": 0.7491891892, + "25757": 0.7501801802, + "25758": 0.7511711712, + "25759": 0.7521621622, + "25760": 0.7531531532, + "25761": 0.7541441441, + "25762": 0.7551351351, + "25763": 0.7561261261, + "25764": 0.7571171171, + "25765": 0.7581081081, + "25766": 0.7590990991, + "25767": 0.7600900901, + "25768": 0.7610810811, + "25769": 0.7620720721, + "25770": 0.7630630631, + "25771": 0.7640540541, + "25772": 0.765045045, + "25773": 0.766036036, + "25774": 0.767027027, + "25775": 0.768018018, + "25776": 0.769009009, + "25777": 0.77, + "25778": 0.770990991, + "25779": 0.771981982, + "25780": 0.772972973, + "25781": 0.773963964, + "25782": 0.774954955, + "25783": 0.7759459459, + "25784": 0.7769369369, + "25785": 0.7779279279, + "25786": 0.7789189189, + "25787": 0.7799099099, + "25788": 0.7809009009, + "25789": 0.7818918919, + "25790": 0.7828828829, + "25791": 0.7838738739, + "25792": 0.7848648649, + "25793": 0.7858558559, + "25794": 0.7868468468, + "25795": 0.7878378378, + "25796": 0.7888288288, + "25797": 0.7898198198, + "25798": 0.7908108108, + "25799": 0.7918018018, + "25800": 0.7927927928, + "25801": 0.7937837838, + "25802": 0.7947747748, + "25803": 0.7957657658, + "25804": 0.7967567568, + "25805": 0.7977477477, + "25806": 0.7987387387, + "25807": 0.7997297297, + "25808": 0.8007207207, + "25809": 0.8017117117, + "25810": 0.8027027027, + "25811": 0.8036936937, + "25812": 0.8046846847, + "25813": 0.8056756757, + "25814": 0.8066666667, + "25815": 0.8076576577, + "25816": 0.8086486486, + "25817": 0.8096396396, + "25818": 0.8106306306, + "25819": 0.8116216216, + "25820": 0.8126126126, + "25821": 0.8136036036, + "25822": 0.8145945946, + "25823": 0.8155855856, + "25824": 0.8165765766, + "25825": 0.8175675676, + "25826": 0.8185585586, + "25827": 0.8195495495, + "25828": 0.8205405405, + "25829": 0.8215315315, + "25830": 0.8225225225, + "25831": 0.8235135135, + "25832": 0.8245045045, + "25833": 0.8254954955, + "25834": 0.8264864865, + "25835": 0.8274774775, + "25836": 0.8284684685, + "25837": 0.8294594595, + "25838": 0.8304504505, + "25839": 0.8314414414, + "25840": 0.8324324324, + "25841": 0.8334234234, + "25842": 0.8344144144, + "25843": 0.8354054054, + "25844": 0.8363963964, + "25845": 0.8373873874, + "25846": 0.8383783784, + "25847": 0.8393693694, + "25848": 0.8403603604, + "25849": 0.8413513514, + "25850": 0.8423423423, + "25851": 0.8433333333, + "25852": 0.8443243243, + "25853": 0.8453153153, + "25854": 0.8463063063, + "25855": 0.8472972973, + "25856": 0.8482882883, + "25857": 0.8492792793, + "25858": 0.8502702703, + "25859": 0.8512612613, + "25860": 0.8522522523, + "25861": 0.8532432432, + "25862": 0.8542342342, + "25863": 0.8552252252, + "25864": 0.8562162162, + "25865": 0.8572072072, + "25866": 0.8581981982, + "25867": 0.8591891892, + "25868": 0.8601801802, + "25869": 0.8611711712, + "25870": 0.8621621622, + "25871": 0.8631531532, + "25872": 0.8641441441, + "25873": 0.8651351351, + "25874": 0.8661261261, + "25875": 0.8671171171, + "25876": 0.8681081081, + "25877": 0.8690990991, + "25878": 0.8700900901, + "25879": 0.8710810811, + "25880": 0.8720720721, + "25881": 0.8730630631, + "25882": 0.8740540541, + "25883": 0.875045045, + "25884": 0.876036036, + "25885": 0.877027027, + "25886": 0.878018018, + "25887": 0.879009009, + "25888": 0.88, + "25889": 0.880990991, + "25890": 0.881981982, + "25891": 0.882972973, + "25892": 0.883963964, + "25893": 0.884954955, + "25894": 0.8859459459, + "25895": 0.8869369369, + "25896": 0.8879279279, + "25897": 0.8889189189, + "25898": 0.8899099099, + "25899": 0.8909009009, + "25900": 0.8918918919, + "25901": 0.8928828829, + "25902": 0.8938738739, + "25903": 0.8948648649, + "25904": 0.8958558559, + "25905": 0.8968468468, + "25906": 0.8978378378, + "25907": 0.8988288288, + "25908": 0.8998198198, + "25909": 0.9008108108, + "25910": 0.9018018018, + "25911": 0.9027927928, + "25912": 0.9037837838, + "25913": 0.9047747748, + "25914": 0.9057657658, + "25915": 0.9067567568, + "25916": 0.9077477477, + "25917": 0.9087387387, + "25918": 0.9097297297, + "25919": 0.9107207207, + "25920": 0.9117117117, + "25921": 0.9127027027, + "25922": 0.9136936937, + "25923": 0.9146846847, + "25924": 0.9156756757, + "25925": 0.9166666667, + "25926": 0.9176576577, + "25927": 0.9186486486, + "25928": 0.9196396396, + "25929": 0.9206306306, + "25930": 0.9216216216, + "25931": 0.9226126126, + "25932": 0.9236036036, + "25933": 0.9245945946, + "25934": 0.9255855856, + "25935": 0.9265765766, + "25936": 0.9275675676, + "25937": 0.9285585586, + "25938": 0.9295495495, + "25939": 0.9305405405, + "25940": 0.9315315315, + "25941": 0.9325225225, + "25942": 0.9335135135, + "25943": 0.9345045045, + "25944": 0.9354954955, + "25945": 0.9364864865, + "25946": 0.9374774775, + "25947": 0.9384684685, + "25948": 0.9394594595, + "25949": 0.9404504505, + "25950": 0.9414414414, + "25951": 0.9424324324, + "25952": 0.9434234234, + "25953": 0.9444144144, + "25954": 0.9454054054, + "25955": 0.9463963964, + "25956": 0.9473873874, + "25957": 0.9483783784, + "25958": 0.9493693694, + "25959": 0.9503603604, + "25960": 0.9513513514, + "25961": 0.9523423423, + "25962": 0.9533333333, + "25963": 0.9543243243, + "25964": 0.9553153153, + "25965": 0.9563063063, + "25966": 0.9572972973, + "25967": 0.9582882883, + "25968": 0.9592792793, + "25969": 0.9602702703, + "25970": 0.9612612613, + "25971": 0.9622522523, + "25972": 0.9632432432, + "25973": 0.9642342342, + "25974": 0.9652252252, + "25975": 0.9662162162, + "25976": 0.9672072072, + "25977": 0.9681981982, + "25978": 0.9691891892, + "25979": 0.9701801802, + "25980": 0.9711711712, + "25981": 0.9721621622, + "25982": 0.9731531532, + "25983": 0.9741441441, + "25984": 0.9751351351, + "25985": 0.9761261261, + "25986": 0.9771171171, + "25987": 0.9781081081, + "25988": 0.9790990991, + "25989": 0.9800900901, + "25990": 0.9810810811, + "25991": 0.9820720721, + "25992": 0.9830630631, + "25993": 0.9840540541, + "25994": 0.985045045, + "25995": 0.986036036, + "25996": 0.987027027, + "25997": 0.988018018, + "25998": 0.989009009, + "25999": 0.99, + "26000": 0.0, + "26001": 0.000990991, + "26002": 0.001981982, + "26003": 0.002972973, + "26004": 0.003963964, + "26005": 0.004954955, + "26006": 0.0059459459, + "26007": 0.0069369369, + "26008": 0.0079279279, + "26009": 0.0089189189, + "26010": 0.0099099099, + "26011": 0.0109009009, + "26012": 0.0118918919, + "26013": 0.0128828829, + "26014": 0.0138738739, + "26015": 0.0148648649, + "26016": 0.0158558559, + "26017": 0.0168468468, + "26018": 0.0178378378, + "26019": 0.0188288288, + "26020": 0.0198198198, + "26021": 0.0208108108, + "26022": 0.0218018018, + "26023": 0.0227927928, + "26024": 0.0237837838, + "26025": 0.0247747748, + "26026": 0.0257657658, + "26027": 0.0267567568, + "26028": 0.0277477477, + "26029": 0.0287387387, + "26030": 0.0297297297, + "26031": 0.0307207207, + "26032": 0.0317117117, + "26033": 0.0327027027, + "26034": 0.0336936937, + "26035": 0.0346846847, + "26036": 0.0356756757, + "26037": 0.0366666667, + "26038": 0.0376576577, + "26039": 0.0386486486, + "26040": 0.0396396396, + "26041": 0.0406306306, + "26042": 0.0416216216, + "26043": 0.0426126126, + "26044": 0.0436036036, + "26045": 0.0445945946, + "26046": 0.0455855856, + "26047": 0.0465765766, + "26048": 0.0475675676, + "26049": 0.0485585586, + "26050": 0.0495495495, + "26051": 0.0505405405, + "26052": 0.0515315315, + "26053": 0.0525225225, + "26054": 0.0535135135, + "26055": 0.0545045045, + "26056": 0.0554954955, + "26057": 0.0564864865, + "26058": 0.0574774775, + "26059": 0.0584684685, + "26060": 0.0594594595, + "26061": 0.0604504505, + "26062": 0.0614414414, + "26063": 0.0624324324, + "26064": 0.0634234234, + "26065": 0.0644144144, + "26066": 0.0654054054, + "26067": 0.0663963964, + "26068": 0.0673873874, + "26069": 0.0683783784, + "26070": 0.0693693694, + "26071": 0.0703603604, + "26072": 0.0713513514, + "26073": 0.0723423423, + "26074": 0.0733333333, + "26075": 0.0743243243, + "26076": 0.0753153153, + "26077": 0.0763063063, + "26078": 0.0772972973, + "26079": 0.0782882883, + "26080": 0.0792792793, + "26081": 0.0802702703, + "26082": 0.0812612613, + "26083": 0.0822522523, + "26084": 0.0832432432, + "26085": 0.0842342342, + "26086": 0.0852252252, + "26087": 0.0862162162, + "26088": 0.0872072072, + "26089": 0.0881981982, + "26090": 0.0891891892, + "26091": 0.0901801802, + "26092": 0.0911711712, + "26093": 0.0921621622, + "26094": 0.0931531532, + "26095": 0.0941441441, + "26096": 0.0951351351, + "26097": 0.0961261261, + "26098": 0.0971171171, + "26099": 0.0981081081, + "26100": 0.0990990991, + "26101": 0.1000900901, + "26102": 0.1010810811, + "26103": 0.1020720721, + "26104": 0.1030630631, + "26105": 0.1040540541, + "26106": 0.105045045, + "26107": 0.106036036, + "26108": 0.107027027, + "26109": 0.108018018, + "26110": 0.109009009, + "26111": 0.11, + "26112": 0.110990991, + "26113": 0.111981982, + "26114": 0.112972973, + "26115": 0.113963964, + "26116": 0.114954955, + "26117": 0.1159459459, + "26118": 0.1169369369, + "26119": 0.1179279279, + "26120": 0.1189189189, + "26121": 0.1199099099, + "26122": 0.1209009009, + "26123": 0.1218918919, + "26124": 0.1228828829, + "26125": 0.1238738739, + "26126": 0.1248648649, + "26127": 0.1258558559, + "26128": 0.1268468468, + "26129": 0.1278378378, + "26130": 0.1288288288, + "26131": 0.1298198198, + "26132": 0.1308108108, + "26133": 0.1318018018, + "26134": 0.1327927928, + "26135": 0.1337837838, + "26136": 0.1347747748, + "26137": 0.1357657658, + "26138": 0.1367567568, + "26139": 0.1377477477, + "26140": 0.1387387387, + "26141": 0.1397297297, + "26142": 0.1407207207, + "26143": 0.1417117117, + "26144": 0.1427027027, + "26145": 0.1436936937, + "26146": 0.1446846847, + "26147": 0.1456756757, + "26148": 0.1466666667, + "26149": 0.1476576577, + "26150": 0.1486486486, + "26151": 0.1496396396, + "26152": 0.1506306306, + "26153": 0.1516216216, + "26154": 0.1526126126, + "26155": 0.1536036036, + "26156": 0.1545945946, + "26157": 0.1555855856, + "26158": 0.1565765766, + "26159": 0.1575675676, + "26160": 0.1585585586, + "26161": 0.1595495495, + "26162": 0.1605405405, + "26163": 0.1615315315, + "26164": 0.1625225225, + "26165": 0.1635135135, + "26166": 0.1645045045, + "26167": 0.1654954955, + "26168": 0.1664864865, + "26169": 0.1674774775, + "26170": 0.1684684685, + "26171": 0.1694594595, + "26172": 0.1704504505, + "26173": 0.1714414414, + "26174": 0.1724324324, + "26175": 0.1734234234, + "26176": 0.1744144144, + "26177": 0.1754054054, + "26178": 0.1763963964, + "26179": 0.1773873874, + "26180": 0.1783783784, + "26181": 0.1793693694, + "26182": 0.1803603604, + "26183": 0.1813513514, + "26184": 0.1823423423, + "26185": 0.1833333333, + "26186": 0.1843243243, + "26187": 0.1853153153, + "26188": 0.1863063063, + "26189": 0.1872972973, + "26190": 0.1882882883, + "26191": 0.1892792793, + "26192": 0.1902702703, + "26193": 0.1912612613, + "26194": 0.1922522523, + "26195": 0.1932432432, + "26196": 0.1942342342, + "26197": 0.1952252252, + "26198": 0.1962162162, + "26199": 0.1972072072, + "26200": 0.1981981982, + "26201": 0.1991891892, + "26202": 0.2001801802, + "26203": 0.2011711712, + "26204": 0.2021621622, + "26205": 0.2031531532, + "26206": 0.2041441441, + "26207": 0.2051351351, + "26208": 0.2061261261, + "26209": 0.2071171171, + "26210": 0.2081081081, + "26211": 0.2090990991, + "26212": 0.2100900901, + "26213": 0.2110810811, + "26214": 0.2120720721, + "26215": 0.2130630631, + "26216": 0.2140540541, + "26217": 0.215045045, + "26218": 0.216036036, + "26219": 0.217027027, + "26220": 0.218018018, + "26221": 0.219009009, + "26222": 0.22, + "26223": 0.220990991, + "26224": 0.221981982, + "26225": 0.222972973, + "26226": 0.223963964, + "26227": 0.224954955, + "26228": 0.2259459459, + "26229": 0.2269369369, + "26230": 0.2279279279, + "26231": 0.2289189189, + "26232": 0.2299099099, + "26233": 0.2309009009, + "26234": 0.2318918919, + "26235": 0.2328828829, + "26236": 0.2338738739, + "26237": 0.2348648649, + "26238": 0.2358558559, + "26239": 0.2368468468, + "26240": 0.2378378378, + "26241": 0.2388288288, + "26242": 0.2398198198, + "26243": 0.2408108108, + "26244": 0.2418018018, + "26245": 0.2427927928, + "26246": 0.2437837838, + "26247": 0.2447747748, + "26248": 0.2457657658, + "26249": 0.2467567568, + "26250": 0.2477477477, + "26251": 0.2487387387, + "26252": 0.2497297297, + "26253": 0.2507207207, + "26254": 0.2517117117, + "26255": 0.2527027027, + "26256": 0.2536936937, + "26257": 0.2546846847, + "26258": 0.2556756757, + "26259": 0.2566666667, + "26260": 0.2576576577, + "26261": 0.2586486486, + "26262": 0.2596396396, + "26263": 0.2606306306, + "26264": 0.2616216216, + "26265": 0.2626126126, + "26266": 0.2636036036, + "26267": 0.2645945946, + "26268": 0.2655855856, + "26269": 0.2665765766, + "26270": 0.2675675676, + "26271": 0.2685585586, + "26272": 0.2695495495, + "26273": 0.2705405405, + "26274": 0.2715315315, + "26275": 0.2725225225, + "26276": 0.2735135135, + "26277": 0.2745045045, + "26278": 0.2754954955, + "26279": 0.2764864865, + "26280": 0.2774774775, + "26281": 0.2784684685, + "26282": 0.2794594595, + "26283": 0.2804504505, + "26284": 0.2814414414, + "26285": 0.2824324324, + "26286": 0.2834234234, + "26287": 0.2844144144, + "26288": 0.2854054054, + "26289": 0.2863963964, + "26290": 0.2873873874, + "26291": 0.2883783784, + "26292": 0.2893693694, + "26293": 0.2903603604, + "26294": 0.2913513514, + "26295": 0.2923423423, + "26296": 0.2933333333, + "26297": 0.2943243243, + "26298": 0.2953153153, + "26299": 0.2963063063, + "26300": 0.2972972973, + "26301": 0.2982882883, + "26302": 0.2992792793, + "26303": 0.3002702703, + "26304": 0.3012612613, + "26305": 0.3022522523, + "26306": 0.3032432432, + "26307": 0.3042342342, + "26308": 0.3052252252, + "26309": 0.3062162162, + "26310": 0.3072072072, + "26311": 0.3081981982, + "26312": 0.3091891892, + "26313": 0.3101801802, + "26314": 0.3111711712, + "26315": 0.3121621622, + "26316": 0.3131531532, + "26317": 0.3141441441, + "26318": 0.3151351351, + "26319": 0.3161261261, + "26320": 0.3171171171, + "26321": 0.3181081081, + "26322": 0.3190990991, + "26323": 0.3200900901, + "26324": 0.3210810811, + "26325": 0.3220720721, + "26326": 0.3230630631, + "26327": 0.3240540541, + "26328": 0.325045045, + "26329": 0.326036036, + "26330": 0.327027027, + "26331": 0.328018018, + "26332": 0.329009009, + "26333": 0.33, + "26334": 0.330990991, + "26335": 0.331981982, + "26336": 0.332972973, + "26337": 0.333963964, + "26338": 0.334954955, + "26339": 0.3359459459, + "26340": 0.3369369369, + "26341": 0.3379279279, + "26342": 0.3389189189, + "26343": 0.3399099099, + "26344": 0.3409009009, + "26345": 0.3418918919, + "26346": 0.3428828829, + "26347": 0.3438738739, + "26348": 0.3448648649, + "26349": 0.3458558559, + "26350": 0.3468468468, + "26351": 0.3478378378, + "26352": 0.3488288288, + "26353": 0.3498198198, + "26354": 0.3508108108, + "26355": 0.3518018018, + "26356": 0.3527927928, + "26357": 0.3537837838, + "26358": 0.3547747748, + "26359": 0.3557657658, + "26360": 0.3567567568, + "26361": 0.3577477477, + "26362": 0.3587387387, + "26363": 0.3597297297, + "26364": 0.3607207207, + "26365": 0.3617117117, + "26366": 0.3627027027, + "26367": 0.3636936937, + "26368": 0.3646846847, + "26369": 0.3656756757, + "26370": 0.3666666667, + "26371": 0.3676576577, + "26372": 0.3686486486, + "26373": 0.3696396396, + "26374": 0.3706306306, + "26375": 0.3716216216, + "26376": 0.3726126126, + "26377": 0.3736036036, + "26378": 0.3745945946, + "26379": 0.3755855856, + "26380": 0.3765765766, + "26381": 0.3775675676, + "26382": 0.3785585586, + "26383": 0.3795495495, + "26384": 0.3805405405, + "26385": 0.3815315315, + "26386": 0.3825225225, + "26387": 0.3835135135, + "26388": 0.3845045045, + "26389": 0.3854954955, + "26390": 0.3864864865, + "26391": 0.3874774775, + "26392": 0.3884684685, + "26393": 0.3894594595, + "26394": 0.3904504505, + "26395": 0.3914414414, + "26396": 0.3924324324, + "26397": 0.3934234234, + "26398": 0.3944144144, + "26399": 0.3954054054, + "26400": 0.3963963964, + "26401": 0.3973873874, + "26402": 0.3983783784, + "26403": 0.3993693694, + "26404": 0.4003603604, + "26405": 0.4013513514, + "26406": 0.4023423423, + "26407": 0.4033333333, + "26408": 0.4043243243, + "26409": 0.4053153153, + "26410": 0.4063063063, + "26411": 0.4072972973, + "26412": 0.4082882883, + "26413": 0.4092792793, + "26414": 0.4102702703, + "26415": 0.4112612613, + "26416": 0.4122522523, + "26417": 0.4132432432, + "26418": 0.4142342342, + "26419": 0.4152252252, + "26420": 0.4162162162, + "26421": 0.4172072072, + "26422": 0.4181981982, + "26423": 0.4191891892, + "26424": 0.4201801802, + "26425": 0.4211711712, + "26426": 0.4221621622, + "26427": 0.4231531532, + "26428": 0.4241441441, + "26429": 0.4251351351, + "26430": 0.4261261261, + "26431": 0.4271171171, + "26432": 0.4281081081, + "26433": 0.4290990991, + "26434": 0.4300900901, + "26435": 0.4310810811, + "26436": 0.4320720721, + "26437": 0.4330630631, + "26438": 0.4340540541, + "26439": 0.435045045, + "26440": 0.436036036, + "26441": 0.437027027, + "26442": 0.438018018, + "26443": 0.439009009, + "26444": 0.44, + "26445": 0.440990991, + "26446": 0.441981982, + "26447": 0.442972973, + "26448": 0.443963964, + "26449": 0.444954955, + "26450": 0.4459459459, + "26451": 0.4469369369, + "26452": 0.4479279279, + "26453": 0.4489189189, + "26454": 0.4499099099, + "26455": 0.4509009009, + "26456": 0.4518918919, + "26457": 0.4528828829, + "26458": 0.4538738739, + "26459": 0.4548648649, + "26460": 0.4558558559, + "26461": 0.4568468468, + "26462": 0.4578378378, + "26463": 0.4588288288, + "26464": 0.4598198198, + "26465": 0.4608108108, + "26466": 0.4618018018, + "26467": 0.4627927928, + "26468": 0.4637837838, + "26469": 0.4647747748, + "26470": 0.4657657658, + "26471": 0.4667567568, + "26472": 0.4677477477, + "26473": 0.4687387387, + "26474": 0.4697297297, + "26475": 0.4707207207, + "26476": 0.4717117117, + "26477": 0.4727027027, + "26478": 0.4736936937, + "26479": 0.4746846847, + "26480": 0.4756756757, + "26481": 0.4766666667, + "26482": 0.4776576577, + "26483": 0.4786486486, + "26484": 0.4796396396, + "26485": 0.4806306306, + "26486": 0.4816216216, + "26487": 0.4826126126, + "26488": 0.4836036036, + "26489": 0.4845945946, + "26490": 0.4855855856, + "26491": 0.4865765766, + "26492": 0.4875675676, + "26493": 0.4885585586, + "26494": 0.4895495495, + "26495": 0.4905405405, + "26496": 0.4915315315, + "26497": 0.4925225225, + "26498": 0.4935135135, + "26499": 0.4945045045, + "26500": 0.4954954955, + "26501": 0.4964864865, + "26502": 0.4974774775, + "26503": 0.4984684685, + "26504": 0.4994594595, + "26505": 0.5004504505, + "26506": 0.5014414414, + "26507": 0.5024324324, + "26508": 0.5034234234, + "26509": 0.5044144144, + "26510": 0.5054054054, + "26511": 0.5063963964, + "26512": 0.5073873874, + "26513": 0.5083783784, + "26514": 0.5093693694, + "26515": 0.5103603604, + "26516": 0.5113513514, + "26517": 0.5123423423, + "26518": 0.5133333333, + "26519": 0.5143243243, + "26520": 0.5153153153, + "26521": 0.5163063063, + "26522": 0.5172972973, + "26523": 0.5182882883, + "26524": 0.5192792793, + "26525": 0.5202702703, + "26526": 0.5212612613, + "26527": 0.5222522523, + "26528": 0.5232432432, + "26529": 0.5242342342, + "26530": 0.5252252252, + "26531": 0.5262162162, + "26532": 0.5272072072, + "26533": 0.5281981982, + "26534": 0.5291891892, + "26535": 0.5301801802, + "26536": 0.5311711712, + "26537": 0.5321621622, + "26538": 0.5331531532, + "26539": 0.5341441441, + "26540": 0.5351351351, + "26541": 0.5361261261, + "26542": 0.5371171171, + "26543": 0.5381081081, + "26544": 0.5390990991, + "26545": 0.5400900901, + "26546": 0.5410810811, + "26547": 0.5420720721, + "26548": 0.5430630631, + "26549": 0.5440540541, + "26550": 0.545045045, + "26551": 0.546036036, + "26552": 0.547027027, + "26553": 0.548018018, + "26554": 0.549009009, + "26555": 0.55, + "26556": 0.550990991, + "26557": 0.551981982, + "26558": 0.552972973, + "26559": 0.553963964, + "26560": 0.554954955, + "26561": 0.5559459459, + "26562": 0.5569369369, + "26563": 0.5579279279, + "26564": 0.5589189189, + "26565": 0.5599099099, + "26566": 0.5609009009, + "26567": 0.5618918919, + "26568": 0.5628828829, + "26569": 0.5638738739, + "26570": 0.5648648649, + "26571": 0.5658558559, + "26572": 0.5668468468, + "26573": 0.5678378378, + "26574": 0.5688288288, + "26575": 0.5698198198, + "26576": 0.5708108108, + "26577": 0.5718018018, + "26578": 0.5727927928, + "26579": 0.5737837838, + "26580": 0.5747747748, + "26581": 0.5757657658, + "26582": 0.5767567568, + "26583": 0.5777477477, + "26584": 0.5787387387, + "26585": 0.5797297297, + "26586": 0.5807207207, + "26587": 0.5817117117, + "26588": 0.5827027027, + "26589": 0.5836936937, + "26590": 0.5846846847, + "26591": 0.5856756757, + "26592": 0.5866666667, + "26593": 0.5876576577, + "26594": 0.5886486486, + "26595": 0.5896396396, + "26596": 0.5906306306, + "26597": 0.5916216216, + "26598": 0.5926126126, + "26599": 0.5936036036, + "26600": 0.5945945946, + "26601": 0.5955855856, + "26602": 0.5965765766, + "26603": 0.5975675676, + "26604": 0.5985585586, + "26605": 0.5995495495, + "26606": 0.6005405405, + "26607": 0.6015315315, + "26608": 0.6025225225, + "26609": 0.6035135135, + "26610": 0.6045045045, + "26611": 0.6054954955, + "26612": 0.6064864865, + "26613": 0.6074774775, + "26614": 0.6084684685, + "26615": 0.6094594595, + "26616": 0.6104504505, + "26617": 0.6114414414, + "26618": 0.6124324324, + "26619": 0.6134234234, + "26620": 0.6144144144, + "26621": 0.6154054054, + "26622": 0.6163963964, + "26623": 0.6173873874, + "26624": 0.6183783784, + "26625": 0.6193693694, + "26626": 0.6203603604, + "26627": 0.6213513514, + "26628": 0.6223423423, + "26629": 0.6233333333, + "26630": 0.6243243243, + "26631": 0.6253153153, + "26632": 0.6263063063, + "26633": 0.6272972973, + "26634": 0.6282882883, + "26635": 0.6292792793, + "26636": 0.6302702703, + "26637": 0.6312612613, + "26638": 0.6322522523, + "26639": 0.6332432432, + "26640": 0.6342342342, + "26641": 0.6352252252, + "26642": 0.6362162162, + "26643": 0.6372072072, + "26644": 0.6381981982, + "26645": 0.6391891892, + "26646": 0.6401801802, + "26647": 0.6411711712, + "26648": 0.6421621622, + "26649": 0.6431531532, + "26650": 0.6441441441, + "26651": 0.6451351351, + "26652": 0.6461261261, + "26653": 0.6471171171, + "26654": 0.6481081081, + "26655": 0.6490990991, + "26656": 0.6500900901, + "26657": 0.6510810811, + "26658": 0.6520720721, + "26659": 0.6530630631, + "26660": 0.6540540541, + "26661": 0.655045045, + "26662": 0.656036036, + "26663": 0.657027027, + "26664": 0.658018018, + "26665": 0.659009009, + "26666": 0.66, + "26667": 0.660990991, + "26668": 0.661981982, + "26669": 0.662972973, + "26670": 0.663963964, + "26671": 0.664954955, + "26672": 0.6659459459, + "26673": 0.6669369369, + "26674": 0.6679279279, + "26675": 0.6689189189, + "26676": 0.6699099099, + "26677": 0.6709009009, + "26678": 0.6718918919, + "26679": 0.6728828829, + "26680": 0.6738738739, + "26681": 0.6748648649, + "26682": 0.6758558559, + "26683": 0.6768468468, + "26684": 0.6778378378, + "26685": 0.6788288288, + "26686": 0.6798198198, + "26687": 0.6808108108, + "26688": 0.6818018018, + "26689": 0.6827927928, + "26690": 0.6837837838, + "26691": 0.6847747748, + "26692": 0.6857657658, + "26693": 0.6867567568, + "26694": 0.6877477477, + "26695": 0.6887387387, + "26696": 0.6897297297, + "26697": 0.6907207207, + "26698": 0.6917117117, + "26699": 0.6927027027, + "26700": 0.6936936937, + "26701": 0.6946846847, + "26702": 0.6956756757, + "26703": 0.6966666667, + "26704": 0.6976576577, + "26705": 0.6986486486, + "26706": 0.6996396396, + "26707": 0.7006306306, + "26708": 0.7016216216, + "26709": 0.7026126126, + "26710": 0.7036036036, + "26711": 0.7045945946, + "26712": 0.7055855856, + "26713": 0.7065765766, + "26714": 0.7075675676, + "26715": 0.7085585586, + "26716": 0.7095495495, + "26717": 0.7105405405, + "26718": 0.7115315315, + "26719": 0.7125225225, + "26720": 0.7135135135, + "26721": 0.7145045045, + "26722": 0.7154954955, + "26723": 0.7164864865, + "26724": 0.7174774775, + "26725": 0.7184684685, + "26726": 0.7194594595, + "26727": 0.7204504505, + "26728": 0.7214414414, + "26729": 0.7224324324, + "26730": 0.7234234234, + "26731": 0.7244144144, + "26732": 0.7254054054, + "26733": 0.7263963964, + "26734": 0.7273873874, + "26735": 0.7283783784, + "26736": 0.7293693694, + "26737": 0.7303603604, + "26738": 0.7313513514, + "26739": 0.7323423423, + "26740": 0.7333333333, + "26741": 0.7343243243, + "26742": 0.7353153153, + "26743": 0.7363063063, + "26744": 0.7372972973, + "26745": 0.7382882883, + "26746": 0.7392792793, + "26747": 0.7402702703, + "26748": 0.7412612613, + "26749": 0.7422522523, + "26750": 0.7432432432, + "26751": 0.7442342342, + "26752": 0.7452252252, + "26753": 0.7462162162, + "26754": 0.7472072072, + "26755": 0.7481981982, + "26756": 0.7491891892, + "26757": 0.7501801802, + "26758": 0.7511711712, + "26759": 0.7521621622, + "26760": 0.7531531532, + "26761": 0.7541441441, + "26762": 0.7551351351, + "26763": 0.7561261261, + "26764": 0.7571171171, + "26765": 0.7581081081, + "26766": 0.7590990991, + "26767": 0.7600900901, + "26768": 0.7610810811, + "26769": 0.7620720721, + "26770": 0.7630630631, + "26771": 0.7640540541, + "26772": 0.765045045, + "26773": 0.766036036, + "26774": 0.767027027, + "26775": 0.768018018, + "26776": 0.769009009, + "26777": 0.77, + "26778": 0.770990991, + "26779": 0.771981982, + "26780": 0.772972973, + "26781": 0.773963964, + "26782": 0.774954955, + "26783": 0.7759459459, + "26784": 0.7769369369, + "26785": 0.7779279279, + "26786": 0.7789189189, + "26787": 0.7799099099, + "26788": 0.7809009009, + "26789": 0.7818918919, + "26790": 0.7828828829, + "26791": 0.7838738739, + "26792": 0.7848648649, + "26793": 0.7858558559, + "26794": 0.7868468468, + "26795": 0.7878378378, + "26796": 0.7888288288, + "26797": 0.7898198198, + "26798": 0.7908108108, + "26799": 0.7918018018, + "26800": 0.7927927928, + "26801": 0.7937837838, + "26802": 0.7947747748, + "26803": 0.7957657658, + "26804": 0.7967567568, + "26805": 0.7977477477, + "26806": 0.7987387387, + "26807": 0.7997297297, + "26808": 0.8007207207, + "26809": 0.8017117117, + "26810": 0.8027027027, + "26811": 0.8036936937, + "26812": 0.8046846847, + "26813": 0.8056756757, + "26814": 0.8066666667, + "26815": 0.8076576577, + "26816": 0.8086486486, + "26817": 0.8096396396, + "26818": 0.8106306306, + "26819": 0.8116216216, + "26820": 0.8126126126, + "26821": 0.8136036036, + "26822": 0.8145945946, + "26823": 0.8155855856, + "26824": 0.8165765766, + "26825": 0.8175675676, + "26826": 0.8185585586, + "26827": 0.8195495495, + "26828": 0.8205405405, + "26829": 0.8215315315, + "26830": 0.8225225225, + "26831": 0.8235135135, + "26832": 0.8245045045, + "26833": 0.8254954955, + "26834": 0.8264864865, + "26835": 0.8274774775, + "26836": 0.8284684685, + "26837": 0.8294594595, + "26838": 0.8304504505, + "26839": 0.8314414414, + "26840": 0.8324324324, + "26841": 0.8334234234, + "26842": 0.8344144144, + "26843": 0.8354054054, + "26844": 0.8363963964, + "26845": 0.8373873874, + "26846": 0.8383783784, + "26847": 0.8393693694, + "26848": 0.8403603604, + "26849": 0.8413513514, + "26850": 0.8423423423, + "26851": 0.8433333333, + "26852": 0.8443243243, + "26853": 0.8453153153, + "26854": 0.8463063063, + "26855": 0.8472972973, + "26856": 0.8482882883, + "26857": 0.8492792793, + "26858": 0.8502702703, + "26859": 0.8512612613, + "26860": 0.8522522523, + "26861": 0.8532432432, + "26862": 0.8542342342, + "26863": 0.8552252252, + "26864": 0.8562162162, + "26865": 0.8572072072, + "26866": 0.8581981982, + "26867": 0.8591891892, + "26868": 0.8601801802, + "26869": 0.8611711712, + "26870": 0.8621621622, + "26871": 0.8631531532, + "26872": 0.8641441441, + "26873": 0.8651351351, + "26874": 0.8661261261, + "26875": 0.8671171171, + "26876": 0.8681081081, + "26877": 0.8690990991, + "26878": 0.8700900901, + "26879": 0.8710810811, + "26880": 0.8720720721, + "26881": 0.8730630631, + "26882": 0.8740540541, + "26883": 0.875045045, + "26884": 0.876036036, + "26885": 0.877027027, + "26886": 0.878018018, + "26887": 0.879009009, + "26888": 0.88, + "26889": 0.880990991, + "26890": 0.881981982, + "26891": 0.882972973, + "26892": 0.883963964, + "26893": 0.884954955, + "26894": 0.8859459459, + "26895": 0.8869369369, + "26896": 0.8879279279, + "26897": 0.8889189189, + "26898": 0.8899099099, + "26899": 0.8909009009, + "26900": 0.8918918919, + "26901": 0.8928828829, + "26902": 0.8938738739, + "26903": 0.8948648649, + "26904": 0.8958558559, + "26905": 0.8968468468, + "26906": 0.8978378378, + "26907": 0.8988288288, + "26908": 0.8998198198, + "26909": 0.9008108108, + "26910": 0.9018018018, + "26911": 0.9027927928, + "26912": 0.9037837838, + "26913": 0.9047747748, + "26914": 0.9057657658, + "26915": 0.9067567568, + "26916": 0.9077477477, + "26917": 0.9087387387, + "26918": 0.9097297297, + "26919": 0.9107207207, + "26920": 0.9117117117, + "26921": 0.9127027027, + "26922": 0.9136936937, + "26923": 0.9146846847, + "26924": 0.9156756757, + "26925": 0.9166666667, + "26926": 0.9176576577, + "26927": 0.9186486486, + "26928": 0.9196396396, + "26929": 0.9206306306, + "26930": 0.9216216216, + "26931": 0.9226126126, + "26932": 0.9236036036, + "26933": 0.9245945946, + "26934": 0.9255855856, + "26935": 0.9265765766, + "26936": 0.9275675676, + "26937": 0.9285585586, + "26938": 0.9295495495, + "26939": 0.9305405405, + "26940": 0.9315315315, + "26941": 0.9325225225, + "26942": 0.9335135135, + "26943": 0.9345045045, + "26944": 0.9354954955, + "26945": 0.9364864865, + "26946": 0.9374774775, + "26947": 0.9384684685, + "26948": 0.9394594595, + "26949": 0.9404504505, + "26950": 0.9414414414, + "26951": 0.9424324324, + "26952": 0.9434234234, + "26953": 0.9444144144, + "26954": 0.9454054054, + "26955": 0.9463963964, + "26956": 0.9473873874, + "26957": 0.9483783784, + "26958": 0.9493693694, + "26959": 0.9503603604, + "26960": 0.9513513514, + "26961": 0.9523423423, + "26962": 0.9533333333, + "26963": 0.9543243243, + "26964": 0.9553153153, + "26965": 0.9563063063, + "26966": 0.9572972973, + "26967": 0.9582882883, + "26968": 0.9592792793, + "26969": 0.9602702703, + "26970": 0.9612612613, + "26971": 0.9622522523, + "26972": 0.9632432432, + "26973": 0.9642342342, + "26974": 0.9652252252, + "26975": 0.9662162162, + "26976": 0.9672072072, + "26977": 0.9681981982, + "26978": 0.9691891892, + "26979": 0.9701801802, + "26980": 0.9711711712, + "26981": 0.9721621622, + "26982": 0.9731531532, + "26983": 0.9741441441, + "26984": 0.9751351351, + "26985": 0.9761261261, + "26986": 0.9771171171, + "26987": 0.9781081081, + "26988": 0.9790990991, + "26989": 0.9800900901, + "26990": 0.9810810811, + "26991": 0.9820720721, + "26992": 0.9830630631, + "26993": 0.9840540541, + "26994": 0.985045045, + "26995": 0.986036036, + "26996": 0.987027027, + "26997": 0.988018018, + "26998": 0.989009009, + "26999": 0.99, + "27000": 0.0, + "27001": 0.000990991, + "27002": 0.001981982, + "27003": 0.002972973, + "27004": 0.003963964, + "27005": 0.004954955, + "27006": 0.0059459459, + "27007": 0.0069369369, + "27008": 0.0079279279, + "27009": 0.0089189189, + "27010": 0.0099099099, + "27011": 0.0109009009, + "27012": 0.0118918919, + "27013": 0.0128828829, + "27014": 0.0138738739, + "27015": 0.0148648649, + "27016": 0.0158558559, + "27017": 0.0168468468, + "27018": 0.0178378378, + "27019": 0.0188288288, + "27020": 0.0198198198, + "27021": 0.0208108108, + "27022": 0.0218018018, + "27023": 0.0227927928, + "27024": 0.0237837838, + "27025": 0.0247747748, + "27026": 0.0257657658, + "27027": 0.0267567568, + "27028": 0.0277477477, + "27029": 0.0287387387, + "27030": 0.0297297297, + "27031": 0.0307207207, + "27032": 0.0317117117, + "27033": 0.0327027027, + "27034": 0.0336936937, + "27035": 0.0346846847, + "27036": 0.0356756757, + "27037": 0.0366666667, + "27038": 0.0376576577, + "27039": 0.0386486486, + "27040": 0.0396396396, + "27041": 0.0406306306, + "27042": 0.0416216216, + "27043": 0.0426126126, + "27044": 0.0436036036, + "27045": 0.0445945946, + "27046": 0.0455855856, + "27047": 0.0465765766, + "27048": 0.0475675676, + "27049": 0.0485585586, + "27050": 0.0495495495, + "27051": 0.0505405405, + "27052": 0.0515315315, + "27053": 0.0525225225, + "27054": 0.0535135135, + "27055": 0.0545045045, + "27056": 0.0554954955, + "27057": 0.0564864865, + "27058": 0.0574774775, + "27059": 0.0584684685, + "27060": 0.0594594595, + "27061": 0.0604504505, + "27062": 0.0614414414, + "27063": 0.0624324324, + "27064": 0.0634234234, + "27065": 0.0644144144, + "27066": 0.0654054054, + "27067": 0.0663963964, + "27068": 0.0673873874, + "27069": 0.0683783784, + "27070": 0.0693693694, + "27071": 0.0703603604, + "27072": 0.0713513514, + "27073": 0.0723423423, + "27074": 0.0733333333, + "27075": 0.0743243243, + "27076": 0.0753153153, + "27077": 0.0763063063, + "27078": 0.0772972973, + "27079": 0.0782882883, + "27080": 0.0792792793, + "27081": 0.0802702703, + "27082": 0.0812612613, + "27083": 0.0822522523, + "27084": 0.0832432432, + "27085": 0.0842342342, + "27086": 0.0852252252, + "27087": 0.0862162162, + "27088": 0.0872072072, + "27089": 0.0881981982, + "27090": 0.0891891892, + "27091": 0.0901801802, + "27092": 0.0911711712, + "27093": 0.0921621622, + "27094": 0.0931531532, + "27095": 0.0941441441, + "27096": 0.0951351351, + "27097": 0.0961261261, + "27098": 0.0971171171, + "27099": 0.0981081081, + "27100": 0.0990990991, + "27101": 0.1000900901, + "27102": 0.1010810811, + "27103": 0.1020720721, + "27104": 0.1030630631, + "27105": 0.1040540541, + "27106": 0.105045045, + "27107": 0.106036036, + "27108": 0.107027027, + "27109": 0.108018018, + "27110": 0.109009009, + "27111": 0.11, + "27112": 0.110990991, + "27113": 0.111981982, + "27114": 0.112972973, + "27115": 0.113963964, + "27116": 0.114954955, + "27117": 0.1159459459, + "27118": 0.1169369369, + "27119": 0.1179279279, + "27120": 0.1189189189, + "27121": 0.1199099099, + "27122": 0.1209009009, + "27123": 0.1218918919, + "27124": 0.1228828829, + "27125": 0.1238738739, + "27126": 0.1248648649, + "27127": 0.1258558559, + "27128": 0.1268468468, + "27129": 0.1278378378, + "27130": 0.1288288288, + "27131": 0.1298198198, + "27132": 0.1308108108, + "27133": 0.1318018018, + "27134": 0.1327927928, + "27135": 0.1337837838, + "27136": 0.1347747748, + "27137": 0.1357657658, + "27138": 0.1367567568, + "27139": 0.1377477477, + "27140": 0.1387387387, + "27141": 0.1397297297, + "27142": 0.1407207207, + "27143": 0.1417117117, + "27144": 0.1427027027, + "27145": 0.1436936937, + "27146": 0.1446846847, + "27147": 0.1456756757, + "27148": 0.1466666667, + "27149": 0.1476576577, + "27150": 0.1486486486, + "27151": 0.1496396396, + "27152": 0.1506306306, + "27153": 0.1516216216, + "27154": 0.1526126126, + "27155": 0.1536036036, + "27156": 0.1545945946, + "27157": 0.1555855856, + "27158": 0.1565765766, + "27159": 0.1575675676, + "27160": 0.1585585586, + "27161": 0.1595495495, + "27162": 0.1605405405, + "27163": 0.1615315315, + "27164": 0.1625225225, + "27165": 0.1635135135, + "27166": 0.1645045045, + "27167": 0.1654954955, + "27168": 0.1664864865, + "27169": 0.1674774775, + "27170": 0.1684684685, + "27171": 0.1694594595, + "27172": 0.1704504505, + "27173": 0.1714414414, + "27174": 0.1724324324, + "27175": 0.1734234234, + "27176": 0.1744144144, + "27177": 0.1754054054, + "27178": 0.1763963964, + "27179": 0.1773873874, + "27180": 0.1783783784, + "27181": 0.1793693694, + "27182": 0.1803603604, + "27183": 0.1813513514, + "27184": 0.1823423423, + "27185": 0.1833333333, + "27186": 0.1843243243, + "27187": 0.1853153153, + "27188": 0.1863063063, + "27189": 0.1872972973, + "27190": 0.1882882883, + "27191": 0.1892792793, + "27192": 0.1902702703, + "27193": 0.1912612613, + "27194": 0.1922522523, + "27195": 0.1932432432, + "27196": 0.1942342342, + "27197": 0.1952252252, + "27198": 0.1962162162, + "27199": 0.1972072072, + "27200": 0.1981981982, + "27201": 0.1991891892, + "27202": 0.2001801802, + "27203": 0.2011711712, + "27204": 0.2021621622, + "27205": 0.2031531532, + "27206": 0.2041441441, + "27207": 0.2051351351, + "27208": 0.2061261261, + "27209": 0.2071171171, + "27210": 0.2081081081, + "27211": 0.2090990991, + "27212": 0.2100900901, + "27213": 0.2110810811, + "27214": 0.2120720721, + "27215": 0.2130630631, + "27216": 0.2140540541, + "27217": 0.215045045, + "27218": 0.216036036, + "27219": 0.217027027, + "27220": 0.218018018, + "27221": 0.219009009, + "27222": 0.22, + "27223": 0.220990991, + "27224": 0.221981982, + "27225": 0.222972973, + "27226": 0.223963964, + "27227": 0.224954955, + "27228": 0.2259459459, + "27229": 0.2269369369, + "27230": 0.2279279279, + "27231": 0.2289189189, + "27232": 0.2299099099, + "27233": 0.2309009009, + "27234": 0.2318918919, + "27235": 0.2328828829, + "27236": 0.2338738739, + "27237": 0.2348648649, + "27238": 0.2358558559, + "27239": 0.2368468468, + "27240": 0.2378378378, + "27241": 0.2388288288, + "27242": 0.2398198198, + "27243": 0.2408108108, + "27244": 0.2418018018, + "27245": 0.2427927928, + "27246": 0.2437837838, + "27247": 0.2447747748, + "27248": 0.2457657658, + "27249": 0.2467567568, + "27250": 0.2477477477, + "27251": 0.2487387387, + "27252": 0.2497297297, + "27253": 0.2507207207, + "27254": 0.2517117117, + "27255": 0.2527027027, + "27256": 0.2536936937, + "27257": 0.2546846847, + "27258": 0.2556756757, + "27259": 0.2566666667, + "27260": 0.2576576577, + "27261": 0.2586486486, + "27262": 0.2596396396, + "27263": 0.2606306306, + "27264": 0.2616216216, + "27265": 0.2626126126, + "27266": 0.2636036036, + "27267": 0.2645945946, + "27268": 0.2655855856, + "27269": 0.2665765766, + "27270": 0.2675675676, + "27271": 0.2685585586, + "27272": 0.2695495495, + "27273": 0.2705405405, + "27274": 0.2715315315, + "27275": 0.2725225225, + "27276": 0.2735135135, + "27277": 0.2745045045, + "27278": 0.2754954955, + "27279": 0.2764864865, + "27280": 0.2774774775, + "27281": 0.2784684685, + "27282": 0.2794594595, + "27283": 0.2804504505, + "27284": 0.2814414414, + "27285": 0.2824324324, + "27286": 0.2834234234, + "27287": 0.2844144144, + "27288": 0.2854054054, + "27289": 0.2863963964, + "27290": 0.2873873874, + "27291": 0.2883783784, + "27292": 0.2893693694, + "27293": 0.2903603604, + "27294": 0.2913513514, + "27295": 0.2923423423, + "27296": 0.2933333333, + "27297": 0.2943243243, + "27298": 0.2953153153, + "27299": 0.2963063063, + "27300": 0.2972972973, + "27301": 0.2982882883, + "27302": 0.2992792793, + "27303": 0.3002702703, + "27304": 0.3012612613, + "27305": 0.3022522523, + "27306": 0.3032432432, + "27307": 0.3042342342, + "27308": 0.3052252252, + "27309": 0.3062162162, + "27310": 0.3072072072, + "27311": 0.3081981982, + "27312": 0.3091891892, + "27313": 0.3101801802, + "27314": 0.3111711712, + "27315": 0.3121621622, + "27316": 0.3131531532, + "27317": 0.3141441441, + "27318": 0.3151351351, + "27319": 0.3161261261, + "27320": 0.3171171171, + "27321": 0.3181081081, + "27322": 0.3190990991, + "27323": 0.3200900901, + "27324": 0.3210810811, + "27325": 0.3220720721, + "27326": 0.3230630631, + "27327": 0.3240540541, + "27328": 0.325045045, + "27329": 0.326036036, + "27330": 0.327027027, + "27331": 0.328018018, + "27332": 0.329009009, + "27333": 0.33, + "27334": 0.330990991, + "27335": 0.331981982, + "27336": 0.332972973, + "27337": 0.333963964, + "27338": 0.334954955, + "27339": 0.3359459459, + "27340": 0.3369369369, + "27341": 0.3379279279, + "27342": 0.3389189189, + "27343": 0.3399099099, + "27344": 0.3409009009, + "27345": 0.3418918919, + "27346": 0.3428828829, + "27347": 0.3438738739, + "27348": 0.3448648649, + "27349": 0.3458558559, + "27350": 0.3468468468, + "27351": 0.3478378378, + "27352": 0.3488288288, + "27353": 0.3498198198, + "27354": 0.3508108108, + "27355": 0.3518018018, + "27356": 0.3527927928, + "27357": 0.3537837838, + "27358": 0.3547747748, + "27359": 0.3557657658, + "27360": 0.3567567568, + "27361": 0.3577477477, + "27362": 0.3587387387, + "27363": 0.3597297297, + "27364": 0.3607207207, + "27365": 0.3617117117, + "27366": 0.3627027027, + "27367": 0.3636936937, + "27368": 0.3646846847, + "27369": 0.3656756757, + "27370": 0.3666666667, + "27371": 0.3676576577, + "27372": 0.3686486486, + "27373": 0.3696396396, + "27374": 0.3706306306, + "27375": 0.3716216216, + "27376": 0.3726126126, + "27377": 0.3736036036, + "27378": 0.3745945946, + "27379": 0.3755855856, + "27380": 0.3765765766, + "27381": 0.3775675676, + "27382": 0.3785585586, + "27383": 0.3795495495, + "27384": 0.3805405405, + "27385": 0.3815315315, + "27386": 0.3825225225, + "27387": 0.3835135135, + "27388": 0.3845045045, + "27389": 0.3854954955, + "27390": 0.3864864865, + "27391": 0.3874774775, + "27392": 0.3884684685, + "27393": 0.3894594595, + "27394": 0.3904504505, + "27395": 0.3914414414, + "27396": 0.3924324324, + "27397": 0.3934234234, + "27398": 0.3944144144, + "27399": 0.3954054054, + "27400": 0.3963963964, + "27401": 0.3973873874, + "27402": 0.3983783784, + "27403": 0.3993693694, + "27404": 0.4003603604, + "27405": 0.4013513514, + "27406": 0.4023423423, + "27407": 0.4033333333, + "27408": 0.4043243243, + "27409": 0.4053153153, + "27410": 0.4063063063, + "27411": 0.4072972973, + "27412": 0.4082882883, + "27413": 0.4092792793, + "27414": 0.4102702703, + "27415": 0.4112612613, + "27416": 0.4122522523, + "27417": 0.4132432432, + "27418": 0.4142342342, + "27419": 0.4152252252, + "27420": 0.4162162162, + "27421": 0.4172072072, + "27422": 0.4181981982, + "27423": 0.4191891892, + "27424": 0.4201801802, + "27425": 0.4211711712, + "27426": 0.4221621622, + "27427": 0.4231531532, + "27428": 0.4241441441, + "27429": 0.4251351351, + "27430": 0.4261261261, + "27431": 0.4271171171, + "27432": 0.4281081081, + "27433": 0.4290990991, + "27434": 0.4300900901, + "27435": 0.4310810811, + "27436": 0.4320720721, + "27437": 0.4330630631, + "27438": 0.4340540541, + "27439": 0.435045045, + "27440": 0.436036036, + "27441": 0.437027027, + "27442": 0.438018018, + "27443": 0.439009009, + "27444": 0.44, + "27445": 0.440990991, + "27446": 0.441981982, + "27447": 0.442972973, + "27448": 0.443963964, + "27449": 0.444954955, + "27450": 0.4459459459, + "27451": 0.4469369369, + "27452": 0.4479279279, + "27453": 0.4489189189, + "27454": 0.4499099099, + "27455": 0.4509009009, + "27456": 0.4518918919, + "27457": 0.4528828829, + "27458": 0.4538738739, + "27459": 0.4548648649, + "27460": 0.4558558559, + "27461": 0.4568468468, + "27462": 0.4578378378, + "27463": 0.4588288288, + "27464": 0.4598198198, + "27465": 0.4608108108, + "27466": 0.4618018018, + "27467": 0.4627927928, + "27468": 0.4637837838, + "27469": 0.4647747748, + "27470": 0.4657657658, + "27471": 0.4667567568, + "27472": 0.4677477477, + "27473": 0.4687387387, + "27474": 0.4697297297, + "27475": 0.4707207207, + "27476": 0.4717117117, + "27477": 0.4727027027, + "27478": 0.4736936937, + "27479": 0.4746846847, + "27480": 0.4756756757, + "27481": 0.4766666667, + "27482": 0.4776576577, + "27483": 0.4786486486, + "27484": 0.4796396396, + "27485": 0.4806306306, + "27486": 0.4816216216, + "27487": 0.4826126126, + "27488": 0.4836036036, + "27489": 0.4845945946, + "27490": 0.4855855856, + "27491": 0.4865765766, + "27492": 0.4875675676, + "27493": 0.4885585586, + "27494": 0.4895495495, + "27495": 0.4905405405, + "27496": 0.4915315315, + "27497": 0.4925225225, + "27498": 0.4935135135, + "27499": 0.4945045045, + "27500": 0.4954954955, + "27501": 0.4964864865, + "27502": 0.4974774775, + "27503": 0.4984684685, + "27504": 0.4994594595, + "27505": 0.5004504505, + "27506": 0.5014414414, + "27507": 0.5024324324, + "27508": 0.5034234234, + "27509": 0.5044144144, + "27510": 0.5054054054, + "27511": 0.5063963964, + "27512": 0.5073873874, + "27513": 0.5083783784, + "27514": 0.5093693694, + "27515": 0.5103603604, + "27516": 0.5113513514, + "27517": 0.5123423423, + "27518": 0.5133333333, + "27519": 0.5143243243, + "27520": 0.5153153153, + "27521": 0.5163063063, + "27522": 0.5172972973, + "27523": 0.5182882883, + "27524": 0.5192792793, + "27525": 0.5202702703, + "27526": 0.5212612613, + "27527": 0.5222522523, + "27528": 0.5232432432, + "27529": 0.5242342342, + "27530": 0.5252252252, + "27531": 0.5262162162, + "27532": 0.5272072072, + "27533": 0.5281981982, + "27534": 0.5291891892, + "27535": 0.5301801802, + "27536": 0.5311711712, + "27537": 0.5321621622, + "27538": 0.5331531532, + "27539": 0.5341441441, + "27540": 0.5351351351, + "27541": 0.5361261261, + "27542": 0.5371171171, + "27543": 0.5381081081, + "27544": 0.5390990991, + "27545": 0.5400900901, + "27546": 0.5410810811, + "27547": 0.5420720721, + "27548": 0.5430630631, + "27549": 0.5440540541, + "27550": 0.545045045, + "27551": 0.546036036, + "27552": 0.547027027, + "27553": 0.548018018, + "27554": 0.549009009, + "27555": 0.55, + "27556": 0.550990991, + "27557": 0.551981982, + "27558": 0.552972973, + "27559": 0.553963964, + "27560": 0.554954955, + "27561": 0.5559459459, + "27562": 0.5569369369, + "27563": 0.5579279279, + "27564": 0.5589189189, + "27565": 0.5599099099, + "27566": 0.5609009009, + "27567": 0.5618918919, + "27568": 0.5628828829, + "27569": 0.5638738739, + "27570": 0.5648648649, + "27571": 0.5658558559, + "27572": 0.5668468468, + "27573": 0.5678378378, + "27574": 0.5688288288, + "27575": 0.5698198198, + "27576": 0.5708108108, + "27577": 0.5718018018, + "27578": 0.5727927928, + "27579": 0.5737837838, + "27580": 0.5747747748, + "27581": 0.5757657658, + "27582": 0.5767567568, + "27583": 0.5777477477, + "27584": 0.5787387387, + "27585": 0.5797297297, + "27586": 0.5807207207, + "27587": 0.5817117117, + "27588": 0.5827027027, + "27589": 0.5836936937, + "27590": 0.5846846847, + "27591": 0.5856756757, + "27592": 0.5866666667, + "27593": 0.5876576577, + "27594": 0.5886486486, + "27595": 0.5896396396, + "27596": 0.5906306306, + "27597": 0.5916216216, + "27598": 0.5926126126, + "27599": 0.5936036036, + "27600": 0.5945945946, + "27601": 0.5955855856, + "27602": 0.5965765766, + "27603": 0.5975675676, + "27604": 0.5985585586, + "27605": 0.5995495495, + "27606": 0.6005405405, + "27607": 0.6015315315, + "27608": 0.6025225225, + "27609": 0.6035135135, + "27610": 0.6045045045, + "27611": 0.6054954955, + "27612": 0.6064864865, + "27613": 0.6074774775, + "27614": 0.6084684685, + "27615": 0.6094594595, + "27616": 0.6104504505, + "27617": 0.6114414414, + "27618": 0.6124324324, + "27619": 0.6134234234, + "27620": 0.6144144144, + "27621": 0.6154054054, + "27622": 0.6163963964, + "27623": 0.6173873874, + "27624": 0.6183783784, + "27625": 0.6193693694, + "27626": 0.6203603604, + "27627": 0.6213513514, + "27628": 0.6223423423, + "27629": 0.6233333333, + "27630": 0.6243243243, + "27631": 0.6253153153, + "27632": 0.6263063063, + "27633": 0.6272972973, + "27634": 0.6282882883, + "27635": 0.6292792793, + "27636": 0.6302702703, + "27637": 0.6312612613, + "27638": 0.6322522523, + "27639": 0.6332432432, + "27640": 0.6342342342, + "27641": 0.6352252252, + "27642": 0.6362162162, + "27643": 0.6372072072, + "27644": 0.6381981982, + "27645": 0.6391891892, + "27646": 0.6401801802, + "27647": 0.6411711712, + "27648": 0.6421621622, + "27649": 0.6431531532, + "27650": 0.6441441441, + "27651": 0.6451351351, + "27652": 0.6461261261, + "27653": 0.6471171171, + "27654": 0.6481081081, + "27655": 0.6490990991, + "27656": 0.6500900901, + "27657": 0.6510810811, + "27658": 0.6520720721, + "27659": 0.6530630631, + "27660": 0.6540540541, + "27661": 0.655045045, + "27662": 0.656036036, + "27663": 0.657027027, + "27664": 0.658018018, + "27665": 0.659009009, + "27666": 0.66, + "27667": 0.660990991, + "27668": 0.661981982, + "27669": 0.662972973, + "27670": 0.663963964, + "27671": 0.664954955, + "27672": 0.6659459459, + "27673": 0.6669369369, + "27674": 0.6679279279, + "27675": 0.6689189189, + "27676": 0.6699099099, + "27677": 0.6709009009, + "27678": 0.6718918919, + "27679": 0.6728828829, + "27680": 0.6738738739, + "27681": 0.6748648649, + "27682": 0.6758558559, + "27683": 0.6768468468, + "27684": 0.6778378378, + "27685": 0.6788288288, + "27686": 0.6798198198, + "27687": 0.6808108108, + "27688": 0.6818018018, + "27689": 0.6827927928, + "27690": 0.6837837838, + "27691": 0.6847747748, + "27692": 0.6857657658, + "27693": 0.6867567568, + "27694": 0.6877477477, + "27695": 0.6887387387, + "27696": 0.6897297297, + "27697": 0.6907207207, + "27698": 0.6917117117, + "27699": 0.6927027027, + "27700": 0.6936936937, + "27701": 0.6946846847, + "27702": 0.6956756757, + "27703": 0.6966666667, + "27704": 0.6976576577, + "27705": 0.6986486486, + "27706": 0.6996396396, + "27707": 0.7006306306, + "27708": 0.7016216216, + "27709": 0.7026126126, + "27710": 0.7036036036, + "27711": 0.7045945946, + "27712": 0.7055855856, + "27713": 0.7065765766, + "27714": 0.7075675676, + "27715": 0.7085585586, + "27716": 0.7095495495, + "27717": 0.7105405405, + "27718": 0.7115315315, + "27719": 0.7125225225, + "27720": 0.7135135135, + "27721": 0.7145045045, + "27722": 0.7154954955, + "27723": 0.7164864865, + "27724": 0.7174774775, + "27725": 0.7184684685, + "27726": 0.7194594595, + "27727": 0.7204504505, + "27728": 0.7214414414, + "27729": 0.7224324324, + "27730": 0.7234234234, + "27731": 0.7244144144, + "27732": 0.7254054054, + "27733": 0.7263963964, + "27734": 0.7273873874, + "27735": 0.7283783784, + "27736": 0.7293693694, + "27737": 0.7303603604, + "27738": 0.7313513514, + "27739": 0.7323423423, + "27740": 0.7333333333, + "27741": 0.7343243243, + "27742": 0.7353153153, + "27743": 0.7363063063, + "27744": 0.7372972973, + "27745": 0.7382882883, + "27746": 0.7392792793, + "27747": 0.7402702703, + "27748": 0.7412612613, + "27749": 0.7422522523, + "27750": 0.7432432432, + "27751": 0.7442342342, + "27752": 0.7452252252, + "27753": 0.7462162162, + "27754": 0.7472072072, + "27755": 0.7481981982, + "27756": 0.7491891892, + "27757": 0.7501801802, + "27758": 0.7511711712, + "27759": 0.7521621622, + "27760": 0.7531531532, + "27761": 0.7541441441, + "27762": 0.7551351351, + "27763": 0.7561261261, + "27764": 0.7571171171, + "27765": 0.7581081081, + "27766": 0.7590990991, + "27767": 0.7600900901, + "27768": 0.7610810811, + "27769": 0.7620720721, + "27770": 0.7630630631, + "27771": 0.7640540541, + "27772": 0.765045045, + "27773": 0.766036036, + "27774": 0.767027027, + "27775": 0.768018018, + "27776": 0.769009009, + "27777": 0.77, + "27778": 0.770990991, + "27779": 0.771981982, + "27780": 0.772972973, + "27781": 0.773963964, + "27782": 0.774954955, + "27783": 0.7759459459, + "27784": 0.7769369369, + "27785": 0.7779279279, + "27786": 0.7789189189, + "27787": 0.7799099099, + "27788": 0.7809009009, + "27789": 0.7818918919, + "27790": 0.7828828829, + "27791": 0.7838738739, + "27792": 0.7848648649, + "27793": 0.7858558559, + "27794": 0.7868468468, + "27795": 0.7878378378, + "27796": 0.7888288288, + "27797": 0.7898198198, + "27798": 0.7908108108, + "27799": 0.7918018018, + "27800": 0.7927927928, + "27801": 0.7937837838, + "27802": 0.7947747748, + "27803": 0.7957657658, + "27804": 0.7967567568, + "27805": 0.7977477477, + "27806": 0.7987387387, + "27807": 0.7997297297, + "27808": 0.8007207207, + "27809": 0.8017117117, + "27810": 0.8027027027, + "27811": 0.8036936937, + "27812": 0.8046846847, + "27813": 0.8056756757, + "27814": 0.8066666667, + "27815": 0.8076576577, + "27816": 0.8086486486, + "27817": 0.8096396396, + "27818": 0.8106306306, + "27819": 0.8116216216, + "27820": 0.8126126126, + "27821": 0.8136036036, + "27822": 0.8145945946, + "27823": 0.8155855856, + "27824": 0.8165765766, + "27825": 0.8175675676, + "27826": 0.8185585586, + "27827": 0.8195495495, + "27828": 0.8205405405, + "27829": 0.8215315315, + "27830": 0.8225225225, + "27831": 0.8235135135, + "27832": 0.8245045045, + "27833": 0.8254954955, + "27834": 0.8264864865, + "27835": 0.8274774775, + "27836": 0.8284684685, + "27837": 0.8294594595, + "27838": 0.8304504505, + "27839": 0.8314414414, + "27840": 0.8324324324, + "27841": 0.8334234234, + "27842": 0.8344144144, + "27843": 0.8354054054, + "27844": 0.8363963964, + "27845": 0.8373873874, + "27846": 0.8383783784, + "27847": 0.8393693694, + "27848": 0.8403603604, + "27849": 0.8413513514, + "27850": 0.8423423423, + "27851": 0.8433333333, + "27852": 0.8443243243, + "27853": 0.8453153153, + "27854": 0.8463063063, + "27855": 0.8472972973, + "27856": 0.8482882883, + "27857": 0.8492792793, + "27858": 0.8502702703, + "27859": 0.8512612613, + "27860": 0.8522522523, + "27861": 0.8532432432, + "27862": 0.8542342342, + "27863": 0.8552252252, + "27864": 0.8562162162, + "27865": 0.8572072072, + "27866": 0.8581981982, + "27867": 0.8591891892, + "27868": 0.8601801802, + "27869": 0.8611711712, + "27870": 0.8621621622, + "27871": 0.8631531532, + "27872": 0.8641441441, + "27873": 0.8651351351, + "27874": 0.8661261261, + "27875": 0.8671171171, + "27876": 0.8681081081, + "27877": 0.8690990991, + "27878": 0.8700900901, + "27879": 0.8710810811, + "27880": 0.8720720721, + "27881": 0.8730630631, + "27882": 0.8740540541, + "27883": 0.875045045, + "27884": 0.876036036, + "27885": 0.877027027, + "27886": 0.878018018, + "27887": 0.879009009, + "27888": 0.88, + "27889": 0.880990991, + "27890": 0.881981982, + "27891": 0.882972973, + "27892": 0.883963964, + "27893": 0.884954955, + "27894": 0.8859459459, + "27895": 0.8869369369, + "27896": 0.8879279279, + "27897": 0.8889189189, + "27898": 0.8899099099, + "27899": 0.8909009009, + "27900": 0.8918918919, + "27901": 0.8928828829, + "27902": 0.8938738739, + "27903": 0.8948648649, + "27904": 0.8958558559, + "27905": 0.8968468468, + "27906": 0.8978378378, + "27907": 0.8988288288, + "27908": 0.8998198198, + "27909": 0.9008108108, + "27910": 0.9018018018, + "27911": 0.9027927928, + "27912": 0.9037837838, + "27913": 0.9047747748, + "27914": 0.9057657658, + "27915": 0.9067567568, + "27916": 0.9077477477, + "27917": 0.9087387387, + "27918": 0.9097297297, + "27919": 0.9107207207, + "27920": 0.9117117117, + "27921": 0.9127027027, + "27922": 0.9136936937, + "27923": 0.9146846847, + "27924": 0.9156756757, + "27925": 0.9166666667, + "27926": 0.9176576577, + "27927": 0.9186486486, + "27928": 0.9196396396, + "27929": 0.9206306306, + "27930": 0.9216216216, + "27931": 0.9226126126, + "27932": 0.9236036036, + "27933": 0.9245945946, + "27934": 0.9255855856, + "27935": 0.9265765766, + "27936": 0.9275675676, + "27937": 0.9285585586, + "27938": 0.9295495495, + "27939": 0.9305405405, + "27940": 0.9315315315, + "27941": 0.9325225225, + "27942": 0.9335135135, + "27943": 0.9345045045, + "27944": 0.9354954955, + "27945": 0.9364864865, + "27946": 0.9374774775, + "27947": 0.9384684685, + "27948": 0.9394594595, + "27949": 0.9404504505, + "27950": 0.9414414414, + "27951": 0.9424324324, + "27952": 0.9434234234, + "27953": 0.9444144144, + "27954": 0.9454054054, + "27955": 0.9463963964, + "27956": 0.9473873874, + "27957": 0.9483783784, + "27958": 0.9493693694, + "27959": 0.9503603604, + "27960": 0.9513513514, + "27961": 0.9523423423, + "27962": 0.9533333333, + "27963": 0.9543243243, + "27964": 0.9553153153, + "27965": 0.9563063063, + "27966": 0.9572972973, + "27967": 0.9582882883, + "27968": 0.9592792793, + "27969": 0.9602702703, + "27970": 0.9612612613, + "27971": 0.9622522523, + "27972": 0.9632432432, + "27973": 0.9642342342, + "27974": 0.9652252252, + "27975": 0.9662162162, + "27976": 0.9672072072, + "27977": 0.9681981982, + "27978": 0.9691891892, + "27979": 0.9701801802, + "27980": 0.9711711712, + "27981": 0.9721621622, + "27982": 0.9731531532, + "27983": 0.9741441441, + "27984": 0.9751351351, + "27985": 0.9761261261, + "27986": 0.9771171171, + "27987": 0.9781081081, + "27988": 0.9790990991, + "27989": 0.9800900901, + "27990": 0.9810810811, + "27991": 0.9820720721, + "27992": 0.9830630631, + "27993": 0.9840540541, + "27994": 0.985045045, + "27995": 0.986036036, + "27996": 0.987027027, + "27997": 0.988018018, + "27998": 0.989009009, + "27999": 0.99, + "28000": 0.0, + "28001": 0.000990991, + "28002": 0.001981982, + "28003": 0.002972973, + "28004": 0.003963964, + "28005": 0.004954955, + "28006": 0.0059459459, + "28007": 0.0069369369, + "28008": 0.0079279279, + "28009": 0.0089189189, + "28010": 0.0099099099, + "28011": 0.0109009009, + "28012": 0.0118918919, + "28013": 0.0128828829, + "28014": 0.0138738739, + "28015": 0.0148648649, + "28016": 0.0158558559, + "28017": 0.0168468468, + "28018": 0.0178378378, + "28019": 0.0188288288, + "28020": 0.0198198198, + "28021": 0.0208108108, + "28022": 0.0218018018, + "28023": 0.0227927928, + "28024": 0.0237837838, + "28025": 0.0247747748, + "28026": 0.0257657658, + "28027": 0.0267567568, + "28028": 0.0277477477, + "28029": 0.0287387387, + "28030": 0.0297297297, + "28031": 0.0307207207, + "28032": 0.0317117117, + "28033": 0.0327027027, + "28034": 0.0336936937, + "28035": 0.0346846847, + "28036": 0.0356756757, + "28037": 0.0366666667, + "28038": 0.0376576577, + "28039": 0.0386486486, + "28040": 0.0396396396, + "28041": 0.0406306306, + "28042": 0.0416216216, + "28043": 0.0426126126, + "28044": 0.0436036036, + "28045": 0.0445945946, + "28046": 0.0455855856, + "28047": 0.0465765766, + "28048": 0.0475675676, + "28049": 0.0485585586, + "28050": 0.0495495495, + "28051": 0.0505405405, + "28052": 0.0515315315, + "28053": 0.0525225225, + "28054": 0.0535135135, + "28055": 0.0545045045, + "28056": 0.0554954955, + "28057": 0.0564864865, + "28058": 0.0574774775, + "28059": 0.0584684685, + "28060": 0.0594594595, + "28061": 0.0604504505, + "28062": 0.0614414414, + "28063": 0.0624324324, + "28064": 0.0634234234, + "28065": 0.0644144144, + "28066": 0.0654054054, + "28067": 0.0663963964, + "28068": 0.0673873874, + "28069": 0.0683783784, + "28070": 0.0693693694, + "28071": 0.0703603604, + "28072": 0.0713513514, + "28073": 0.0723423423, + "28074": 0.0733333333, + "28075": 0.0743243243, + "28076": 0.0753153153, + "28077": 0.0763063063, + "28078": 0.0772972973, + "28079": 0.0782882883, + "28080": 0.0792792793, + "28081": 0.0802702703, + "28082": 0.0812612613, + "28083": 0.0822522523, + "28084": 0.0832432432, + "28085": 0.0842342342, + "28086": 0.0852252252, + "28087": 0.0862162162, + "28088": 0.0872072072, + "28089": 0.0881981982, + "28090": 0.0891891892, + "28091": 0.0901801802, + "28092": 0.0911711712, + "28093": 0.0921621622, + "28094": 0.0931531532, + "28095": 0.0941441441, + "28096": 0.0951351351, + "28097": 0.0961261261, + "28098": 0.0971171171, + "28099": 0.0981081081, + "28100": 0.0990990991, + "28101": 0.1000900901, + "28102": 0.1010810811, + "28103": 0.1020720721, + "28104": 0.1030630631, + "28105": 0.1040540541, + "28106": 0.105045045, + "28107": 0.106036036, + "28108": 0.107027027, + "28109": 0.108018018, + "28110": 0.109009009, + "28111": 0.11, + "28112": 0.110990991, + "28113": 0.111981982, + "28114": 0.112972973, + "28115": 0.113963964, + "28116": 0.114954955, + "28117": 0.1159459459, + "28118": 0.1169369369, + "28119": 0.1179279279, + "28120": 0.1189189189, + "28121": 0.1199099099, + "28122": 0.1209009009, + "28123": 0.1218918919, + "28124": 0.1228828829, + "28125": 0.1238738739, + "28126": 0.1248648649, + "28127": 0.1258558559, + "28128": 0.1268468468, + "28129": 0.1278378378, + "28130": 0.1288288288, + "28131": 0.1298198198, + "28132": 0.1308108108, + "28133": 0.1318018018, + "28134": 0.1327927928, + "28135": 0.1337837838, + "28136": 0.1347747748, + "28137": 0.1357657658, + "28138": 0.1367567568, + "28139": 0.1377477477, + "28140": 0.1387387387, + "28141": 0.1397297297, + "28142": 0.1407207207, + "28143": 0.1417117117, + "28144": 0.1427027027, + "28145": 0.1436936937, + "28146": 0.1446846847, + "28147": 0.1456756757, + "28148": 0.1466666667, + "28149": 0.1476576577, + "28150": 0.1486486486, + "28151": 0.1496396396, + "28152": 0.1506306306, + "28153": 0.1516216216, + "28154": 0.1526126126, + "28155": 0.1536036036, + "28156": 0.1545945946, + "28157": 0.1555855856, + "28158": 0.1565765766, + "28159": 0.1575675676, + "28160": 0.1585585586, + "28161": 0.1595495495, + "28162": 0.1605405405, + "28163": 0.1615315315, + "28164": 0.1625225225, + "28165": 0.1635135135, + "28166": 0.1645045045, + "28167": 0.1654954955, + "28168": 0.1664864865, + "28169": 0.1674774775, + "28170": 0.1684684685, + "28171": 0.1694594595, + "28172": 0.1704504505, + "28173": 0.1714414414, + "28174": 0.1724324324, + "28175": 0.1734234234, + "28176": 0.1744144144, + "28177": 0.1754054054, + "28178": 0.1763963964, + "28179": 0.1773873874, + "28180": 0.1783783784, + "28181": 0.1793693694, + "28182": 0.1803603604, + "28183": 0.1813513514, + "28184": 0.1823423423, + "28185": 0.1833333333, + "28186": 0.1843243243, + "28187": 0.1853153153, + "28188": 0.1863063063, + "28189": 0.1872972973, + "28190": 0.1882882883, + "28191": 0.1892792793, + "28192": 0.1902702703, + "28193": 0.1912612613, + "28194": 0.1922522523, + "28195": 0.1932432432, + "28196": 0.1942342342, + "28197": 0.1952252252, + "28198": 0.1962162162, + "28199": 0.1972072072, + "28200": 0.1981981982, + "28201": 0.1991891892, + "28202": 0.2001801802, + "28203": 0.2011711712, + "28204": 0.2021621622, + "28205": 0.2031531532, + "28206": 0.2041441441, + "28207": 0.2051351351, + "28208": 0.2061261261, + "28209": 0.2071171171, + "28210": 0.2081081081, + "28211": 0.2090990991, + "28212": 0.2100900901, + "28213": 0.2110810811, + "28214": 0.2120720721, + "28215": 0.2130630631, + "28216": 0.2140540541, + "28217": 0.215045045, + "28218": 0.216036036, + "28219": 0.217027027, + "28220": 0.218018018, + "28221": 0.219009009, + "28222": 0.22, + "28223": 0.220990991, + "28224": 0.221981982, + "28225": 0.222972973, + "28226": 0.223963964, + "28227": 0.224954955, + "28228": 0.2259459459, + "28229": 0.2269369369, + "28230": 0.2279279279, + "28231": 0.2289189189, + "28232": 0.2299099099, + "28233": 0.2309009009, + "28234": 0.2318918919, + "28235": 0.2328828829, + "28236": 0.2338738739, + "28237": 0.2348648649, + "28238": 0.2358558559, + "28239": 0.2368468468, + "28240": 0.2378378378, + "28241": 0.2388288288, + "28242": 0.2398198198, + "28243": 0.2408108108, + "28244": 0.2418018018, + "28245": 0.2427927928, + "28246": 0.2437837838, + "28247": 0.2447747748, + "28248": 0.2457657658, + "28249": 0.2467567568, + "28250": 0.2477477477, + "28251": 0.2487387387, + "28252": 0.2497297297, + "28253": 0.2507207207, + "28254": 0.2517117117, + "28255": 0.2527027027, + "28256": 0.2536936937, + "28257": 0.2546846847, + "28258": 0.2556756757, + "28259": 0.2566666667, + "28260": 0.2576576577, + "28261": 0.2586486486, + "28262": 0.2596396396, + "28263": 0.2606306306, + "28264": 0.2616216216, + "28265": 0.2626126126, + "28266": 0.2636036036, + "28267": 0.2645945946, + "28268": 0.2655855856, + "28269": 0.2665765766, + "28270": 0.2675675676, + "28271": 0.2685585586, + "28272": 0.2695495495, + "28273": 0.2705405405, + "28274": 0.2715315315, + "28275": 0.2725225225, + "28276": 0.2735135135, + "28277": 0.2745045045, + "28278": 0.2754954955, + "28279": 0.2764864865, + "28280": 0.2774774775, + "28281": 0.2784684685, + "28282": 0.2794594595, + "28283": 0.2804504505, + "28284": 0.2814414414, + "28285": 0.2824324324, + "28286": 0.2834234234, + "28287": 0.2844144144, + "28288": 0.2854054054, + "28289": 0.2863963964, + "28290": 0.2873873874, + "28291": 0.2883783784, + "28292": 0.2893693694, + "28293": 0.2903603604, + "28294": 0.2913513514, + "28295": 0.2923423423, + "28296": 0.2933333333, + "28297": 0.2943243243, + "28298": 0.2953153153, + "28299": 0.2963063063, + "28300": 0.2972972973, + "28301": 0.2982882883, + "28302": 0.2992792793, + "28303": 0.3002702703, + "28304": 0.3012612613, + "28305": 0.3022522523, + "28306": 0.3032432432, + "28307": 0.3042342342, + "28308": 0.3052252252, + "28309": 0.3062162162, + "28310": 0.3072072072, + "28311": 0.3081981982, + "28312": 0.3091891892, + "28313": 0.3101801802, + "28314": 0.3111711712, + "28315": 0.3121621622, + "28316": 0.3131531532, + "28317": 0.3141441441, + "28318": 0.3151351351, + "28319": 0.3161261261, + "28320": 0.3171171171, + "28321": 0.3181081081, + "28322": 0.3190990991, + "28323": 0.3200900901, + "28324": 0.3210810811, + "28325": 0.3220720721, + "28326": 0.3230630631, + "28327": 0.3240540541, + "28328": 0.325045045, + "28329": 0.326036036, + "28330": 0.327027027, + "28331": 0.328018018, + "28332": 0.329009009, + "28333": 0.33, + "28334": 0.330990991, + "28335": 0.331981982, + "28336": 0.332972973, + "28337": 0.333963964, + "28338": 0.334954955, + "28339": 0.3359459459, + "28340": 0.3369369369, + "28341": 0.3379279279, + "28342": 0.3389189189, + "28343": 0.3399099099, + "28344": 0.3409009009, + "28345": 0.3418918919, + "28346": 0.3428828829, + "28347": 0.3438738739, + "28348": 0.3448648649, + "28349": 0.3458558559, + "28350": 0.3468468468, + "28351": 0.3478378378, + "28352": 0.3488288288, + "28353": 0.3498198198, + "28354": 0.3508108108, + "28355": 0.3518018018, + "28356": 0.3527927928, + "28357": 0.3537837838, + "28358": 0.3547747748, + "28359": 0.3557657658, + "28360": 0.3567567568, + "28361": 0.3577477477, + "28362": 0.3587387387, + "28363": 0.3597297297, + "28364": 0.3607207207, + "28365": 0.3617117117, + "28366": 0.3627027027, + "28367": 0.3636936937, + "28368": 0.3646846847, + "28369": 0.3656756757, + "28370": 0.3666666667, + "28371": 0.3676576577, + "28372": 0.3686486486, + "28373": 0.3696396396, + "28374": 0.3706306306, + "28375": 0.3716216216, + "28376": 0.3726126126, + "28377": 0.3736036036, + "28378": 0.3745945946, + "28379": 0.3755855856, + "28380": 0.3765765766, + "28381": 0.3775675676, + "28382": 0.3785585586, + "28383": 0.3795495495, + "28384": 0.3805405405, + "28385": 0.3815315315, + "28386": 0.3825225225, + "28387": 0.3835135135, + "28388": 0.3845045045, + "28389": 0.3854954955, + "28390": 0.3864864865, + "28391": 0.3874774775, + "28392": 0.3884684685, + "28393": 0.3894594595, + "28394": 0.3904504505, + "28395": 0.3914414414, + "28396": 0.3924324324, + "28397": 0.3934234234, + "28398": 0.3944144144, + "28399": 0.3954054054, + "28400": 0.3963963964, + "28401": 0.3973873874, + "28402": 0.3983783784, + "28403": 0.3993693694, + "28404": 0.4003603604, + "28405": 0.4013513514, + "28406": 0.4023423423, + "28407": 0.4033333333, + "28408": 0.4043243243, + "28409": 0.4053153153, + "28410": 0.4063063063, + "28411": 0.4072972973, + "28412": 0.4082882883, + "28413": 0.4092792793, + "28414": 0.4102702703, + "28415": 0.4112612613, + "28416": 0.4122522523, + "28417": 0.4132432432, + "28418": 0.4142342342, + "28419": 0.4152252252, + "28420": 0.4162162162, + "28421": 0.4172072072, + "28422": 0.4181981982, + "28423": 0.4191891892, + "28424": 0.4201801802, + "28425": 0.4211711712, + "28426": 0.4221621622, + "28427": 0.4231531532, + "28428": 0.4241441441, + "28429": 0.4251351351, + "28430": 0.4261261261, + "28431": 0.4271171171, + "28432": 0.4281081081, + "28433": 0.4290990991, + "28434": 0.4300900901, + "28435": 0.4310810811, + "28436": 0.4320720721, + "28437": 0.4330630631, + "28438": 0.4340540541, + "28439": 0.435045045, + "28440": 0.436036036, + "28441": 0.437027027, + "28442": 0.438018018, + "28443": 0.439009009, + "28444": 0.44, + "28445": 0.440990991, + "28446": 0.441981982, + "28447": 0.442972973, + "28448": 0.443963964, + "28449": 0.444954955, + "28450": 0.4459459459, + "28451": 0.4469369369, + "28452": 0.4479279279, + "28453": 0.4489189189, + "28454": 0.4499099099, + "28455": 0.4509009009, + "28456": 0.4518918919, + "28457": 0.4528828829, + "28458": 0.4538738739, + "28459": 0.4548648649, + "28460": 0.4558558559, + "28461": 0.4568468468, + "28462": 0.4578378378, + "28463": 0.4588288288, + "28464": 0.4598198198, + "28465": 0.4608108108, + "28466": 0.4618018018, + "28467": 0.4627927928, + "28468": 0.4637837838, + "28469": 0.4647747748, + "28470": 0.4657657658, + "28471": 0.4667567568, + "28472": 0.4677477477, + "28473": 0.4687387387, + "28474": 0.4697297297, + "28475": 0.4707207207, + "28476": 0.4717117117, + "28477": 0.4727027027, + "28478": 0.4736936937, + "28479": 0.4746846847, + "28480": 0.4756756757, + "28481": 0.4766666667, + "28482": 0.4776576577, + "28483": 0.4786486486, + "28484": 0.4796396396, + "28485": 0.4806306306, + "28486": 0.4816216216, + "28487": 0.4826126126, + "28488": 0.4836036036, + "28489": 0.4845945946, + "28490": 0.4855855856, + "28491": 0.4865765766, + "28492": 0.4875675676, + "28493": 0.4885585586, + "28494": 0.4895495495, + "28495": 0.4905405405, + "28496": 0.4915315315, + "28497": 0.4925225225, + "28498": 0.4935135135, + "28499": 0.4945045045, + "28500": 0.4954954955, + "28501": 0.4964864865, + "28502": 0.4974774775, + "28503": 0.4984684685, + "28504": 0.4994594595, + "28505": 0.5004504505, + "28506": 0.5014414414, + "28507": 0.5024324324, + "28508": 0.5034234234, + "28509": 0.5044144144, + "28510": 0.5054054054, + "28511": 0.5063963964, + "28512": 0.5073873874, + "28513": 0.5083783784, + "28514": 0.5093693694, + "28515": 0.5103603604, + "28516": 0.5113513514, + "28517": 0.5123423423, + "28518": 0.5133333333, + "28519": 0.5143243243, + "28520": 0.5153153153, + "28521": 0.5163063063, + "28522": 0.5172972973, + "28523": 0.5182882883, + "28524": 0.5192792793, + "28525": 0.5202702703, + "28526": 0.5212612613, + "28527": 0.5222522523, + "28528": 0.5232432432, + "28529": 0.5242342342, + "28530": 0.5252252252, + "28531": 0.5262162162, + "28532": 0.5272072072, + "28533": 0.5281981982, + "28534": 0.5291891892, + "28535": 0.5301801802, + "28536": 0.5311711712, + "28537": 0.5321621622, + "28538": 0.5331531532, + "28539": 0.5341441441, + "28540": 0.5351351351, + "28541": 0.5361261261, + "28542": 0.5371171171, + "28543": 0.5381081081, + "28544": 0.5390990991, + "28545": 0.5400900901, + "28546": 0.5410810811, + "28547": 0.5420720721, + "28548": 0.5430630631, + "28549": 0.5440540541, + "28550": 0.545045045, + "28551": 0.546036036, + "28552": 0.547027027, + "28553": 0.548018018, + "28554": 0.549009009, + "28555": 0.55, + "28556": 0.550990991, + "28557": 0.551981982, + "28558": 0.552972973, + "28559": 0.553963964, + "28560": 0.554954955, + "28561": 0.5559459459, + "28562": 0.5569369369, + "28563": 0.5579279279, + "28564": 0.5589189189, + "28565": 0.5599099099, + "28566": 0.5609009009, + "28567": 0.5618918919, + "28568": 0.5628828829, + "28569": 0.5638738739, + "28570": 0.5648648649, + "28571": 0.5658558559, + "28572": 0.5668468468, + "28573": 0.5678378378, + "28574": 0.5688288288, + "28575": 0.5698198198, + "28576": 0.5708108108, + "28577": 0.5718018018, + "28578": 0.5727927928, + "28579": 0.5737837838, + "28580": 0.5747747748, + "28581": 0.5757657658, + "28582": 0.5767567568, + "28583": 0.5777477477, + "28584": 0.5787387387, + "28585": 0.5797297297, + "28586": 0.5807207207, + "28587": 0.5817117117, + "28588": 0.5827027027, + "28589": 0.5836936937, + "28590": 0.5846846847, + "28591": 0.5856756757, + "28592": 0.5866666667, + "28593": 0.5876576577, + "28594": 0.5886486486, + "28595": 0.5896396396, + "28596": 0.5906306306, + "28597": 0.5916216216, + "28598": 0.5926126126, + "28599": 0.5936036036, + "28600": 0.5945945946, + "28601": 0.5955855856, + "28602": 0.5965765766, + "28603": 0.5975675676, + "28604": 0.5985585586, + "28605": 0.5995495495, + "28606": 0.6005405405, + "28607": 0.6015315315, + "28608": 0.6025225225, + "28609": 0.6035135135, + "28610": 0.6045045045, + "28611": 0.6054954955, + "28612": 0.6064864865, + "28613": 0.6074774775, + "28614": 0.6084684685, + "28615": 0.6094594595, + "28616": 0.6104504505, + "28617": 0.6114414414, + "28618": 0.6124324324, + "28619": 0.6134234234, + "28620": 0.6144144144, + "28621": 0.6154054054, + "28622": 0.6163963964, + "28623": 0.6173873874, + "28624": 0.6183783784, + "28625": 0.6193693694, + "28626": 0.6203603604, + "28627": 0.6213513514, + "28628": 0.6223423423, + "28629": 0.6233333333, + "28630": 0.6243243243, + "28631": 0.6253153153, + "28632": 0.6263063063, + "28633": 0.6272972973, + "28634": 0.6282882883, + "28635": 0.6292792793, + "28636": 0.6302702703, + "28637": 0.6312612613, + "28638": 0.6322522523, + "28639": 0.6332432432, + "28640": 0.6342342342, + "28641": 0.6352252252, + "28642": 0.6362162162, + "28643": 0.6372072072, + "28644": 0.6381981982, + "28645": 0.6391891892, + "28646": 0.6401801802, + "28647": 0.6411711712, + "28648": 0.6421621622, + "28649": 0.6431531532, + "28650": 0.6441441441, + "28651": 0.6451351351, + "28652": 0.6461261261, + "28653": 0.6471171171, + "28654": 0.6481081081, + "28655": 0.6490990991, + "28656": 0.6500900901, + "28657": 0.6510810811, + "28658": 0.6520720721, + "28659": 0.6530630631, + "28660": 0.6540540541, + "28661": 0.655045045, + "28662": 0.656036036, + "28663": 0.657027027, + "28664": 0.658018018, + "28665": 0.659009009, + "28666": 0.66, + "28667": 0.660990991, + "28668": 0.661981982, + "28669": 0.662972973, + "28670": 0.663963964, + "28671": 0.664954955, + "28672": 0.6659459459, + "28673": 0.6669369369, + "28674": 0.6679279279, + "28675": 0.6689189189, + "28676": 0.6699099099, + "28677": 0.6709009009, + "28678": 0.6718918919, + "28679": 0.6728828829, + "28680": 0.6738738739, + "28681": 0.6748648649, + "28682": 0.6758558559, + "28683": 0.6768468468, + "28684": 0.6778378378, + "28685": 0.6788288288, + "28686": 0.6798198198, + "28687": 0.6808108108, + "28688": 0.6818018018, + "28689": 0.6827927928, + "28690": 0.6837837838, + "28691": 0.6847747748, + "28692": 0.6857657658, + "28693": 0.6867567568, + "28694": 0.6877477477, + "28695": 0.6887387387, + "28696": 0.6897297297, + "28697": 0.6907207207, + "28698": 0.6917117117, + "28699": 0.6927027027, + "28700": 0.6936936937, + "28701": 0.6946846847, + "28702": 0.6956756757, + "28703": 0.6966666667, + "28704": 0.6976576577, + "28705": 0.6986486486, + "28706": 0.6996396396, + "28707": 0.7006306306, + "28708": 0.7016216216, + "28709": 0.7026126126, + "28710": 0.7036036036, + "28711": 0.7045945946, + "28712": 0.7055855856, + "28713": 0.7065765766, + "28714": 0.7075675676, + "28715": 0.7085585586, + "28716": 0.7095495495, + "28717": 0.7105405405, + "28718": 0.7115315315, + "28719": 0.7125225225, + "28720": 0.7135135135, + "28721": 0.7145045045, + "28722": 0.7154954955, + "28723": 0.7164864865, + "28724": 0.7174774775, + "28725": 0.7184684685, + "28726": 0.7194594595, + "28727": 0.7204504505, + "28728": 0.7214414414, + "28729": 0.7224324324, + "28730": 0.7234234234, + "28731": 0.7244144144, + "28732": 0.7254054054, + "28733": 0.7263963964, + "28734": 0.7273873874, + "28735": 0.7283783784, + "28736": 0.7293693694, + "28737": 0.7303603604, + "28738": 0.7313513514, + "28739": 0.7323423423, + "28740": 0.7333333333, + "28741": 0.7343243243, + "28742": 0.7353153153, + "28743": 0.7363063063, + "28744": 0.7372972973, + "28745": 0.7382882883, + "28746": 0.7392792793, + "28747": 0.7402702703, + "28748": 0.7412612613, + "28749": 0.7422522523, + "28750": 0.7432432432, + "28751": 0.7442342342, + "28752": 0.7452252252, + "28753": 0.7462162162, + "28754": 0.7472072072, + "28755": 0.7481981982, + "28756": 0.7491891892, + "28757": 0.7501801802, + "28758": 0.7511711712, + "28759": 0.7521621622, + "28760": 0.7531531532, + "28761": 0.7541441441, + "28762": 0.7551351351, + "28763": 0.7561261261, + "28764": 0.7571171171, + "28765": 0.7581081081, + "28766": 0.7590990991, + "28767": 0.7600900901, + "28768": 0.7610810811, + "28769": 0.7620720721, + "28770": 0.7630630631, + "28771": 0.7640540541, + "28772": 0.765045045, + "28773": 0.766036036, + "28774": 0.767027027, + "28775": 0.768018018, + "28776": 0.769009009, + "28777": 0.77, + "28778": 0.770990991, + "28779": 0.771981982, + "28780": 0.772972973, + "28781": 0.773963964, + "28782": 0.774954955, + "28783": 0.7759459459, + "28784": 0.7769369369, + "28785": 0.7779279279, + "28786": 0.7789189189, + "28787": 0.7799099099, + "28788": 0.7809009009, + "28789": 0.7818918919, + "28790": 0.7828828829, + "28791": 0.7838738739, + "28792": 0.7848648649, + "28793": 0.7858558559, + "28794": 0.7868468468, + "28795": 0.7878378378, + "28796": 0.7888288288, + "28797": 0.7898198198, + "28798": 0.7908108108, + "28799": 0.7918018018, + "28800": 0.7927927928, + "28801": 0.7937837838, + "28802": 0.7947747748, + "28803": 0.7957657658, + "28804": 0.7967567568, + "28805": 0.7977477477, + "28806": 0.7987387387, + "28807": 0.7997297297, + "28808": 0.8007207207, + "28809": 0.8017117117, + "28810": 0.8027027027, + "28811": 0.8036936937, + "28812": 0.8046846847, + "28813": 0.8056756757, + "28814": 0.8066666667, + "28815": 0.8076576577, + "28816": 0.8086486486, + "28817": 0.8096396396, + "28818": 0.8106306306, + "28819": 0.8116216216, + "28820": 0.8126126126, + "28821": 0.8136036036, + "28822": 0.8145945946, + "28823": 0.8155855856, + "28824": 0.8165765766, + "28825": 0.8175675676, + "28826": 0.8185585586, + "28827": 0.8195495495, + "28828": 0.8205405405, + "28829": 0.8215315315, + "28830": 0.8225225225, + "28831": 0.8235135135, + "28832": 0.8245045045, + "28833": 0.8254954955, + "28834": 0.8264864865, + "28835": 0.8274774775, + "28836": 0.8284684685, + "28837": 0.8294594595, + "28838": 0.8304504505, + "28839": 0.8314414414, + "28840": 0.8324324324, + "28841": 0.8334234234, + "28842": 0.8344144144, + "28843": 0.8354054054, + "28844": 0.8363963964, + "28845": 0.8373873874, + "28846": 0.8383783784, + "28847": 0.8393693694, + "28848": 0.8403603604, + "28849": 0.8413513514, + "28850": 0.8423423423, + "28851": 0.8433333333, + "28852": 0.8443243243, + "28853": 0.8453153153, + "28854": 0.8463063063, + "28855": 0.8472972973, + "28856": 0.8482882883, + "28857": 0.8492792793, + "28858": 0.8502702703, + "28859": 0.8512612613, + "28860": 0.8522522523, + "28861": 0.8532432432, + "28862": 0.8542342342, + "28863": 0.8552252252, + "28864": 0.8562162162, + "28865": 0.8572072072, + "28866": 0.8581981982, + "28867": 0.8591891892, + "28868": 0.8601801802, + "28869": 0.8611711712, + "28870": 0.8621621622, + "28871": 0.8631531532, + "28872": 0.8641441441, + "28873": 0.8651351351, + "28874": 0.8661261261, + "28875": 0.8671171171, + "28876": 0.8681081081, + "28877": 0.8690990991, + "28878": 0.8700900901, + "28879": 0.8710810811, + "28880": 0.8720720721, + "28881": 0.8730630631, + "28882": 0.8740540541, + "28883": 0.875045045, + "28884": 0.876036036, + "28885": 0.877027027, + "28886": 0.878018018, + "28887": 0.879009009, + "28888": 0.88, + "28889": 0.880990991, + "28890": 0.881981982, + "28891": 0.882972973, + "28892": 0.883963964, + "28893": 0.884954955, + "28894": 0.8859459459, + "28895": 0.8869369369, + "28896": 0.8879279279, + "28897": 0.8889189189, + "28898": 0.8899099099, + "28899": 0.8909009009, + "28900": 0.8918918919, + "28901": 0.8928828829, + "28902": 0.8938738739, + "28903": 0.8948648649, + "28904": 0.8958558559, + "28905": 0.8968468468, + "28906": 0.8978378378, + "28907": 0.8988288288, + "28908": 0.8998198198, + "28909": 0.9008108108, + "28910": 0.9018018018, + "28911": 0.9027927928, + "28912": 0.9037837838, + "28913": 0.9047747748, + "28914": 0.9057657658, + "28915": 0.9067567568, + "28916": 0.9077477477, + "28917": 0.9087387387, + "28918": 0.9097297297, + "28919": 0.9107207207, + "28920": 0.9117117117, + "28921": 0.9127027027, + "28922": 0.9136936937, + "28923": 0.9146846847, + "28924": 0.9156756757, + "28925": 0.9166666667, + "28926": 0.9176576577, + "28927": 0.9186486486, + "28928": 0.9196396396, + "28929": 0.9206306306, + "28930": 0.9216216216, + "28931": 0.9226126126, + "28932": 0.9236036036, + "28933": 0.9245945946, + "28934": 0.9255855856, + "28935": 0.9265765766, + "28936": 0.9275675676, + "28937": 0.9285585586, + "28938": 0.9295495495, + "28939": 0.9305405405, + "28940": 0.9315315315, + "28941": 0.9325225225, + "28942": 0.9335135135, + "28943": 0.9345045045, + "28944": 0.9354954955, + "28945": 0.9364864865, + "28946": 0.9374774775, + "28947": 0.9384684685, + "28948": 0.9394594595, + "28949": 0.9404504505, + "28950": 0.9414414414, + "28951": 0.9424324324, + "28952": 0.9434234234, + "28953": 0.9444144144, + "28954": 0.9454054054, + "28955": 0.9463963964, + "28956": 0.9473873874, + "28957": 0.9483783784, + "28958": 0.9493693694, + "28959": 0.9503603604, + "28960": 0.9513513514, + "28961": 0.9523423423, + "28962": 0.9533333333, + "28963": 0.9543243243, + "28964": 0.9553153153, + "28965": 0.9563063063, + "28966": 0.9572972973, + "28967": 0.9582882883, + "28968": 0.9592792793, + "28969": 0.9602702703, + "28970": 0.9612612613, + "28971": 0.9622522523, + "28972": 0.9632432432, + "28973": 0.9642342342, + "28974": 0.9652252252, + "28975": 0.9662162162, + "28976": 0.9672072072, + "28977": 0.9681981982, + "28978": 0.9691891892, + "28979": 0.9701801802, + "28980": 0.9711711712, + "28981": 0.9721621622, + "28982": 0.9731531532, + "28983": 0.9741441441, + "28984": 0.9751351351, + "28985": 0.9761261261, + "28986": 0.9771171171, + "28987": 0.9781081081, + "28988": 0.9790990991, + "28989": 0.9800900901, + "28990": 0.9810810811, + "28991": 0.9820720721, + "28992": 0.9830630631, + "28993": 0.9840540541, + "28994": 0.985045045, + "28995": 0.986036036, + "28996": 0.987027027, + "28997": 0.988018018, + "28998": 0.989009009, + "28999": 0.99, + "29000": 0.0, + "29001": 0.000990991, + "29002": 0.001981982, + "29003": 0.002972973, + "29004": 0.003963964, + "29005": 0.004954955, + "29006": 0.0059459459, + "29007": 0.0069369369, + "29008": 0.0079279279, + "29009": 0.0089189189, + "29010": 0.0099099099, + "29011": 0.0109009009, + "29012": 0.0118918919, + "29013": 0.0128828829, + "29014": 0.0138738739, + "29015": 0.0148648649, + "29016": 0.0158558559, + "29017": 0.0168468468, + "29018": 0.0178378378, + "29019": 0.0188288288, + "29020": 0.0198198198, + "29021": 0.0208108108, + "29022": 0.0218018018, + "29023": 0.0227927928, + "29024": 0.0237837838, + "29025": 0.0247747748, + "29026": 0.0257657658, + "29027": 0.0267567568, + "29028": 0.0277477477, + "29029": 0.0287387387, + "29030": 0.0297297297, + "29031": 0.0307207207, + "29032": 0.0317117117, + "29033": 0.0327027027, + "29034": 0.0336936937, + "29035": 0.0346846847, + "29036": 0.0356756757, + "29037": 0.0366666667, + "29038": 0.0376576577, + "29039": 0.0386486486, + "29040": 0.0396396396, + "29041": 0.0406306306, + "29042": 0.0416216216, + "29043": 0.0426126126, + "29044": 0.0436036036, + "29045": 0.0445945946, + "29046": 0.0455855856, + "29047": 0.0465765766, + "29048": 0.0475675676, + "29049": 0.0485585586, + "29050": 0.0495495495, + "29051": 0.0505405405, + "29052": 0.0515315315, + "29053": 0.0525225225, + "29054": 0.0535135135, + "29055": 0.0545045045, + "29056": 0.0554954955, + "29057": 0.0564864865, + "29058": 0.0574774775, + "29059": 0.0584684685, + "29060": 0.0594594595, + "29061": 0.0604504505, + "29062": 0.0614414414, + "29063": 0.0624324324, + "29064": 0.0634234234, + "29065": 0.0644144144, + "29066": 0.0654054054, + "29067": 0.0663963964, + "29068": 0.0673873874, + "29069": 0.0683783784, + "29070": 0.0693693694, + "29071": 0.0703603604, + "29072": 0.0713513514, + "29073": 0.0723423423, + "29074": 0.0733333333, + "29075": 0.0743243243, + "29076": 0.0753153153, + "29077": 0.0763063063, + "29078": 0.0772972973, + "29079": 0.0782882883, + "29080": 0.0792792793, + "29081": 0.0802702703, + "29082": 0.0812612613, + "29083": 0.0822522523, + "29084": 0.0832432432, + "29085": 0.0842342342, + "29086": 0.0852252252, + "29087": 0.0862162162, + "29088": 0.0872072072, + "29089": 0.0881981982, + "29090": 0.0891891892, + "29091": 0.0901801802, + "29092": 0.0911711712, + "29093": 0.0921621622, + "29094": 0.0931531532, + "29095": 0.0941441441, + "29096": 0.0951351351, + "29097": 0.0961261261, + "29098": 0.0971171171, + "29099": 0.0981081081, + "29100": 0.0990990991, + "29101": 0.1000900901, + "29102": 0.1010810811, + "29103": 0.1020720721, + "29104": 0.1030630631, + "29105": 0.1040540541, + "29106": 0.105045045, + "29107": 0.106036036, + "29108": 0.107027027, + "29109": 0.108018018, + "29110": 0.109009009, + "29111": 0.11, + "29112": 0.110990991, + "29113": 0.111981982, + "29114": 0.112972973, + "29115": 0.113963964, + "29116": 0.114954955, + "29117": 0.1159459459, + "29118": 0.1169369369, + "29119": 0.1179279279, + "29120": 0.1189189189, + "29121": 0.1199099099, + "29122": 0.1209009009, + "29123": 0.1218918919, + "29124": 0.1228828829, + "29125": 0.1238738739, + "29126": 0.1248648649, + "29127": 0.1258558559, + "29128": 0.1268468468, + "29129": 0.1278378378, + "29130": 0.1288288288, + "29131": 0.1298198198, + "29132": 0.1308108108, + "29133": 0.1318018018, + "29134": 0.1327927928, + "29135": 0.1337837838, + "29136": 0.1347747748, + "29137": 0.1357657658, + "29138": 0.1367567568, + "29139": 0.1377477477, + "29140": 0.1387387387, + "29141": 0.1397297297, + "29142": 0.1407207207, + "29143": 0.1417117117, + "29144": 0.1427027027, + "29145": 0.1436936937, + "29146": 0.1446846847, + "29147": 0.1456756757, + "29148": 0.1466666667, + "29149": 0.1476576577, + "29150": 0.1486486486, + "29151": 0.1496396396, + "29152": 0.1506306306, + "29153": 0.1516216216, + "29154": 0.1526126126, + "29155": 0.1536036036, + "29156": 0.1545945946, + "29157": 0.1555855856, + "29158": 0.1565765766, + "29159": 0.1575675676, + "29160": 0.1585585586, + "29161": 0.1595495495, + "29162": 0.1605405405, + "29163": 0.1615315315, + "29164": 0.1625225225, + "29165": 0.1635135135, + "29166": 0.1645045045, + "29167": 0.1654954955, + "29168": 0.1664864865, + "29169": 0.1674774775, + "29170": 0.1684684685, + "29171": 0.1694594595, + "29172": 0.1704504505, + "29173": 0.1714414414, + "29174": 0.1724324324, + "29175": 0.1734234234, + "29176": 0.1744144144, + "29177": 0.1754054054, + "29178": 0.1763963964, + "29179": 0.1773873874, + "29180": 0.1783783784, + "29181": 0.1793693694, + "29182": 0.1803603604, + "29183": 0.1813513514, + "29184": 0.1823423423, + "29185": 0.1833333333, + "29186": 0.1843243243, + "29187": 0.1853153153, + "29188": 0.1863063063, + "29189": 0.1872972973, + "29190": 0.1882882883, + "29191": 0.1892792793, + "29192": 0.1902702703, + "29193": 0.1912612613, + "29194": 0.1922522523, + "29195": 0.1932432432, + "29196": 0.1942342342, + "29197": 0.1952252252, + "29198": 0.1962162162, + "29199": 0.1972072072, + "29200": 0.1981981982, + "29201": 0.1991891892, + "29202": 0.2001801802, + "29203": 0.2011711712, + "29204": 0.2021621622, + "29205": 0.2031531532, + "29206": 0.2041441441, + "29207": 0.2051351351, + "29208": 0.2061261261, + "29209": 0.2071171171, + "29210": 0.2081081081, + "29211": 0.2090990991, + "29212": 0.2100900901, + "29213": 0.2110810811, + "29214": 0.2120720721, + "29215": 0.2130630631, + "29216": 0.2140540541, + "29217": 0.215045045, + "29218": 0.216036036, + "29219": 0.217027027, + "29220": 0.218018018, + "29221": 0.219009009, + "29222": 0.22, + "29223": 0.220990991, + "29224": 0.221981982, + "29225": 0.222972973, + "29226": 0.223963964, + "29227": 0.224954955, + "29228": 0.2259459459, + "29229": 0.2269369369, + "29230": 0.2279279279, + "29231": 0.2289189189, + "29232": 0.2299099099, + "29233": 0.2309009009, + "29234": 0.2318918919, + "29235": 0.2328828829, + "29236": 0.2338738739, + "29237": 0.2348648649, + "29238": 0.2358558559, + "29239": 0.2368468468, + "29240": 0.2378378378, + "29241": 0.2388288288, + "29242": 0.2398198198, + "29243": 0.2408108108, + "29244": 0.2418018018, + "29245": 0.2427927928, + "29246": 0.2437837838, + "29247": 0.2447747748, + "29248": 0.2457657658, + "29249": 0.2467567568, + "29250": 0.2477477477, + "29251": 0.2487387387, + "29252": 0.2497297297, + "29253": 0.2507207207, + "29254": 0.2517117117, + "29255": 0.2527027027, + "29256": 0.2536936937, + "29257": 0.2546846847, + "29258": 0.2556756757, + "29259": 0.2566666667, + "29260": 0.2576576577, + "29261": 0.2586486486, + "29262": 0.2596396396, + "29263": 0.2606306306, + "29264": 0.2616216216, + "29265": 0.2626126126, + "29266": 0.2636036036, + "29267": 0.2645945946, + "29268": 0.2655855856, + "29269": 0.2665765766, + "29270": 0.2675675676, + "29271": 0.2685585586, + "29272": 0.2695495495, + "29273": 0.2705405405, + "29274": 0.2715315315, + "29275": 0.2725225225, + "29276": 0.2735135135, + "29277": 0.2745045045, + "29278": 0.2754954955, + "29279": 0.2764864865, + "29280": 0.2774774775, + "29281": 0.2784684685, + "29282": 0.2794594595, + "29283": 0.2804504505, + "29284": 0.2814414414, + "29285": 0.2824324324, + "29286": 0.2834234234, + "29287": 0.2844144144, + "29288": 0.2854054054, + "29289": 0.2863963964, + "29290": 0.2873873874, + "29291": 0.2883783784, + "29292": 0.2893693694, + "29293": 0.2903603604, + "29294": 0.2913513514, + "29295": 0.2923423423, + "29296": 0.2933333333, + "29297": 0.2943243243, + "29298": 0.2953153153, + "29299": 0.2963063063, + "29300": 0.2972972973, + "29301": 0.2982882883, + "29302": 0.2992792793, + "29303": 0.3002702703, + "29304": 0.3012612613, + "29305": 0.3022522523, + "29306": 0.3032432432, + "29307": 0.3042342342, + "29308": 0.3052252252, + "29309": 0.3062162162, + "29310": 0.3072072072, + "29311": 0.3081981982, + "29312": 0.3091891892, + "29313": 0.3101801802, + "29314": 0.3111711712, + "29315": 0.3121621622, + "29316": 0.3131531532, + "29317": 0.3141441441, + "29318": 0.3151351351, + "29319": 0.3161261261, + "29320": 0.3171171171, + "29321": 0.3181081081, + "29322": 0.3190990991, + "29323": 0.3200900901, + "29324": 0.3210810811, + "29325": 0.3220720721, + "29326": 0.3230630631, + "29327": 0.3240540541, + "29328": 0.325045045, + "29329": 0.326036036, + "29330": 0.327027027, + "29331": 0.328018018, + "29332": 0.329009009, + "29333": 0.33, + "29334": 0.330990991, + "29335": 0.331981982, + "29336": 0.332972973, + "29337": 0.333963964, + "29338": 0.334954955, + "29339": 0.3359459459, + "29340": 0.3369369369, + "29341": 0.3379279279, + "29342": 0.3389189189, + "29343": 0.3399099099, + "29344": 0.3409009009, + "29345": 0.3418918919, + "29346": 0.3428828829, + "29347": 0.3438738739, + "29348": 0.3448648649, + "29349": 0.3458558559, + "29350": 0.3468468468, + "29351": 0.3478378378, + "29352": 0.3488288288, + "29353": 0.3498198198, + "29354": 0.3508108108, + "29355": 0.3518018018, + "29356": 0.3527927928, + "29357": 0.3537837838, + "29358": 0.3547747748, + "29359": 0.3557657658, + "29360": 0.3567567568, + "29361": 0.3577477477, + "29362": 0.3587387387, + "29363": 0.3597297297, + "29364": 0.3607207207, + "29365": 0.3617117117, + "29366": 0.3627027027, + "29367": 0.3636936937, + "29368": 0.3646846847, + "29369": 0.3656756757, + "29370": 0.3666666667, + "29371": 0.3676576577, + "29372": 0.3686486486, + "29373": 0.3696396396, + "29374": 0.3706306306, + "29375": 0.3716216216, + "29376": 0.3726126126, + "29377": 0.3736036036, + "29378": 0.3745945946, + "29379": 0.3755855856, + "29380": 0.3765765766, + "29381": 0.3775675676, + "29382": 0.3785585586, + "29383": 0.3795495495, + "29384": 0.3805405405, + "29385": 0.3815315315, + "29386": 0.3825225225, + "29387": 0.3835135135, + "29388": 0.3845045045, + "29389": 0.3854954955, + "29390": 0.3864864865, + "29391": 0.3874774775, + "29392": 0.3884684685, + "29393": 0.3894594595, + "29394": 0.3904504505, + "29395": 0.3914414414, + "29396": 0.3924324324, + "29397": 0.3934234234, + "29398": 0.3944144144, + "29399": 0.3954054054, + "29400": 0.3963963964, + "29401": 0.3973873874, + "29402": 0.3983783784, + "29403": 0.3993693694, + "29404": 0.4003603604, + "29405": 0.4013513514, + "29406": 0.4023423423, + "29407": 0.4033333333, + "29408": 0.4043243243, + "29409": 0.4053153153, + "29410": 0.4063063063, + "29411": 0.4072972973, + "29412": 0.4082882883, + "29413": 0.4092792793, + "29414": 0.4102702703, + "29415": 0.4112612613, + "29416": 0.4122522523, + "29417": 0.4132432432, + "29418": 0.4142342342, + "29419": 0.4152252252, + "29420": 0.4162162162, + "29421": 0.4172072072, + "29422": 0.4181981982, + "29423": 0.4191891892, + "29424": 0.4201801802, + "29425": 0.4211711712, + "29426": 0.4221621622, + "29427": 0.4231531532, + "29428": 0.4241441441, + "29429": 0.4251351351, + "29430": 0.4261261261, + "29431": 0.4271171171, + "29432": 0.4281081081, + "29433": 0.4290990991, + "29434": 0.4300900901, + "29435": 0.4310810811, + "29436": 0.4320720721, + "29437": 0.4330630631, + "29438": 0.4340540541, + "29439": 0.435045045, + "29440": 0.436036036, + "29441": 0.437027027, + "29442": 0.438018018, + "29443": 0.439009009, + "29444": 0.44, + "29445": 0.440990991, + "29446": 0.441981982, + "29447": 0.442972973, + "29448": 0.443963964, + "29449": 0.444954955, + "29450": 0.4459459459, + "29451": 0.4469369369, + "29452": 0.4479279279, + "29453": 0.4489189189, + "29454": 0.4499099099, + "29455": 0.4509009009, + "29456": 0.4518918919, + "29457": 0.4528828829, + "29458": 0.4538738739, + "29459": 0.4548648649, + "29460": 0.4558558559, + "29461": 0.4568468468, + "29462": 0.4578378378, + "29463": 0.4588288288, + "29464": 0.4598198198, + "29465": 0.4608108108, + "29466": 0.4618018018, + "29467": 0.4627927928, + "29468": 0.4637837838, + "29469": 0.4647747748, + "29470": 0.4657657658, + "29471": 0.4667567568, + "29472": 0.4677477477, + "29473": 0.4687387387, + "29474": 0.4697297297, + "29475": 0.4707207207, + "29476": 0.4717117117, + "29477": 0.4727027027, + "29478": 0.4736936937, + "29479": 0.4746846847, + "29480": 0.4756756757, + "29481": 0.4766666667, + "29482": 0.4776576577, + "29483": 0.4786486486, + "29484": 0.4796396396, + "29485": 0.4806306306, + "29486": 0.4816216216, + "29487": 0.4826126126, + "29488": 0.4836036036, + "29489": 0.4845945946, + "29490": 0.4855855856, + "29491": 0.4865765766, + "29492": 0.4875675676, + "29493": 0.4885585586, + "29494": 0.4895495495, + "29495": 0.4905405405, + "29496": 0.4915315315, + "29497": 0.4925225225, + "29498": 0.4935135135, + "29499": 0.4945045045, + "29500": 0.4954954955, + "29501": 0.4964864865, + "29502": 0.4974774775, + "29503": 0.4984684685, + "29504": 0.4994594595, + "29505": 0.5004504505, + "29506": 0.5014414414, + "29507": 0.5024324324, + "29508": 0.5034234234, + "29509": 0.5044144144, + "29510": 0.5054054054, + "29511": 0.5063963964, + "29512": 0.5073873874, + "29513": 0.5083783784, + "29514": 0.5093693694, + "29515": 0.5103603604, + "29516": 0.5113513514, + "29517": 0.5123423423, + "29518": 0.5133333333, + "29519": 0.5143243243, + "29520": 0.5153153153, + "29521": 0.5163063063, + "29522": 0.5172972973, + "29523": 0.5182882883, + "29524": 0.5192792793, + "29525": 0.5202702703, + "29526": 0.5212612613, + "29527": 0.5222522523, + "29528": 0.5232432432, + "29529": 0.5242342342, + "29530": 0.5252252252, + "29531": 0.5262162162, + "29532": 0.5272072072, + "29533": 0.5281981982, + "29534": 0.5291891892, + "29535": 0.5301801802, + "29536": 0.5311711712, + "29537": 0.5321621622, + "29538": 0.5331531532, + "29539": 0.5341441441, + "29540": 0.5351351351, + "29541": 0.5361261261, + "29542": 0.5371171171, + "29543": 0.5381081081, + "29544": 0.5390990991, + "29545": 0.5400900901, + "29546": 0.5410810811, + "29547": 0.5420720721, + "29548": 0.5430630631, + "29549": 0.5440540541, + "29550": 0.545045045, + "29551": 0.546036036, + "29552": 0.547027027, + "29553": 0.548018018, + "29554": 0.549009009, + "29555": 0.55, + "29556": 0.550990991, + "29557": 0.551981982, + "29558": 0.552972973, + "29559": 0.553963964, + "29560": 0.554954955, + "29561": 0.5559459459, + "29562": 0.5569369369, + "29563": 0.5579279279, + "29564": 0.5589189189, + "29565": 0.5599099099, + "29566": 0.5609009009, + "29567": 0.5618918919, + "29568": 0.5628828829, + "29569": 0.5638738739, + "29570": 0.5648648649, + "29571": 0.5658558559, + "29572": 0.5668468468, + "29573": 0.5678378378, + "29574": 0.5688288288, + "29575": 0.5698198198, + "29576": 0.5708108108, + "29577": 0.5718018018, + "29578": 0.5727927928, + "29579": 0.5737837838, + "29580": 0.5747747748, + "29581": 0.5757657658, + "29582": 0.5767567568, + "29583": 0.5777477477, + "29584": 0.5787387387, + "29585": 0.5797297297, + "29586": 0.5807207207, + "29587": 0.5817117117, + "29588": 0.5827027027, + "29589": 0.5836936937, + "29590": 0.5846846847, + "29591": 0.5856756757, + "29592": 0.5866666667, + "29593": 0.5876576577, + "29594": 0.5886486486, + "29595": 0.5896396396, + "29596": 0.5906306306, + "29597": 0.5916216216, + "29598": 0.5926126126, + "29599": 0.5936036036, + "29600": 0.5945945946, + "29601": 0.5955855856, + "29602": 0.5965765766, + "29603": 0.5975675676, + "29604": 0.5985585586, + "29605": 0.5995495495, + "29606": 0.6005405405, + "29607": 0.6015315315, + "29608": 0.6025225225, + "29609": 0.6035135135, + "29610": 0.6045045045, + "29611": 0.6054954955, + "29612": 0.6064864865, + "29613": 0.6074774775, + "29614": 0.6084684685, + "29615": 0.6094594595, + "29616": 0.6104504505, + "29617": 0.6114414414, + "29618": 0.6124324324, + "29619": 0.6134234234, + "29620": 0.6144144144, + "29621": 0.6154054054, + "29622": 0.6163963964, + "29623": 0.6173873874, + "29624": 0.6183783784, + "29625": 0.6193693694, + "29626": 0.6203603604, + "29627": 0.6213513514, + "29628": 0.6223423423, + "29629": 0.6233333333, + "29630": 0.6243243243, + "29631": 0.6253153153, + "29632": 0.6263063063, + "29633": 0.6272972973, + "29634": 0.6282882883, + "29635": 0.6292792793, + "29636": 0.6302702703, + "29637": 0.6312612613, + "29638": 0.6322522523, + "29639": 0.6332432432, + "29640": 0.6342342342, + "29641": 0.6352252252, + "29642": 0.6362162162, + "29643": 0.6372072072, + "29644": 0.6381981982, + "29645": 0.6391891892, + "29646": 0.6401801802, + "29647": 0.6411711712, + "29648": 0.6421621622, + "29649": 0.6431531532, + "29650": 0.6441441441, + "29651": 0.6451351351, + "29652": 0.6461261261, + "29653": 0.6471171171, + "29654": 0.6481081081, + "29655": 0.6490990991, + "29656": 0.6500900901, + "29657": 0.6510810811, + "29658": 0.6520720721, + "29659": 0.6530630631, + "29660": 0.6540540541, + "29661": 0.655045045, + "29662": 0.656036036, + "29663": 0.657027027, + "29664": 0.658018018, + "29665": 0.659009009, + "29666": 0.66, + "29667": 0.660990991, + "29668": 0.661981982, + "29669": 0.662972973, + "29670": 0.663963964, + "29671": 0.664954955, + "29672": 0.6659459459, + "29673": 0.6669369369, + "29674": 0.6679279279, + "29675": 0.6689189189, + "29676": 0.6699099099, + "29677": 0.6709009009, + "29678": 0.6718918919, + "29679": 0.6728828829, + "29680": 0.6738738739, + "29681": 0.6748648649, + "29682": 0.6758558559, + "29683": 0.6768468468, + "29684": 0.6778378378, + "29685": 0.6788288288, + "29686": 0.6798198198, + "29687": 0.6808108108, + "29688": 0.6818018018, + "29689": 0.6827927928, + "29690": 0.6837837838, + "29691": 0.6847747748, + "29692": 0.6857657658, + "29693": 0.6867567568, + "29694": 0.6877477477, + "29695": 0.6887387387, + "29696": 0.6897297297, + "29697": 0.6907207207, + "29698": 0.6917117117, + "29699": 0.6927027027, + "29700": 0.6936936937, + "29701": 0.6946846847, + "29702": 0.6956756757, + "29703": 0.6966666667, + "29704": 0.6976576577, + "29705": 0.6986486486, + "29706": 0.6996396396, + "29707": 0.7006306306, + "29708": 0.7016216216, + "29709": 0.7026126126, + "29710": 0.7036036036, + "29711": 0.7045945946, + "29712": 0.7055855856, + "29713": 0.7065765766, + "29714": 0.7075675676, + "29715": 0.7085585586, + "29716": 0.7095495495, + "29717": 0.7105405405, + "29718": 0.7115315315, + "29719": 0.7125225225, + "29720": 0.7135135135, + "29721": 0.7145045045, + "29722": 0.7154954955, + "29723": 0.7164864865, + "29724": 0.7174774775, + "29725": 0.7184684685, + "29726": 0.7194594595, + "29727": 0.7204504505, + "29728": 0.7214414414, + "29729": 0.7224324324, + "29730": 0.7234234234, + "29731": 0.7244144144, + "29732": 0.7254054054, + "29733": 0.7263963964, + "29734": 0.7273873874, + "29735": 0.7283783784, + "29736": 0.7293693694, + "29737": 0.7303603604, + "29738": 0.7313513514, + "29739": 0.7323423423, + "29740": 0.7333333333, + "29741": 0.7343243243, + "29742": 0.7353153153, + "29743": 0.7363063063, + "29744": 0.7372972973, + "29745": 0.7382882883, + "29746": 0.7392792793, + "29747": 0.7402702703, + "29748": 0.7412612613, + "29749": 0.7422522523, + "29750": 0.7432432432, + "29751": 0.7442342342, + "29752": 0.7452252252, + "29753": 0.7462162162, + "29754": 0.7472072072, + "29755": 0.7481981982, + "29756": 0.7491891892, + "29757": 0.7501801802, + "29758": 0.7511711712, + "29759": 0.7521621622, + "29760": 0.7531531532, + "29761": 0.7541441441, + "29762": 0.7551351351, + "29763": 0.7561261261, + "29764": 0.7571171171, + "29765": 0.7581081081, + "29766": 0.7590990991, + "29767": 0.7600900901, + "29768": 0.7610810811, + "29769": 0.7620720721, + "29770": 0.7630630631, + "29771": 0.7640540541, + "29772": 0.765045045, + "29773": 0.766036036, + "29774": 0.767027027, + "29775": 0.768018018, + "29776": 0.769009009, + "29777": 0.77, + "29778": 0.770990991, + "29779": 0.771981982, + "29780": 0.772972973, + "29781": 0.773963964, + "29782": 0.774954955, + "29783": 0.7759459459, + "29784": 0.7769369369, + "29785": 0.7779279279, + "29786": 0.7789189189, + "29787": 0.7799099099, + "29788": 0.7809009009, + "29789": 0.7818918919, + "29790": 0.7828828829, + "29791": 0.7838738739, + "29792": 0.7848648649, + "29793": 0.7858558559, + "29794": 0.7868468468, + "29795": 0.7878378378, + "29796": 0.7888288288, + "29797": 0.7898198198, + "29798": 0.7908108108, + "29799": 0.7918018018, + "29800": 0.7927927928, + "29801": 0.7937837838, + "29802": 0.7947747748, + "29803": 0.7957657658, + "29804": 0.7967567568, + "29805": 0.7977477477, + "29806": 0.7987387387, + "29807": 0.7997297297, + "29808": 0.8007207207, + "29809": 0.8017117117, + "29810": 0.8027027027, + "29811": 0.8036936937, + "29812": 0.8046846847, + "29813": 0.8056756757, + "29814": 0.8066666667, + "29815": 0.8076576577, + "29816": 0.8086486486, + "29817": 0.8096396396, + "29818": 0.8106306306, + "29819": 0.8116216216, + "29820": 0.8126126126, + "29821": 0.8136036036, + "29822": 0.8145945946, + "29823": 0.8155855856, + "29824": 0.8165765766, + "29825": 0.8175675676, + "29826": 0.8185585586, + "29827": 0.8195495495, + "29828": 0.8205405405, + "29829": 0.8215315315, + "29830": 0.8225225225, + "29831": 0.8235135135, + "29832": 0.8245045045, + "29833": 0.8254954955, + "29834": 0.8264864865, + "29835": 0.8274774775, + "29836": 0.8284684685, + "29837": 0.8294594595, + "29838": 0.8304504505, + "29839": 0.8314414414, + "29840": 0.8324324324, + "29841": 0.8334234234, + "29842": 0.8344144144, + "29843": 0.8354054054, + "29844": 0.8363963964, + "29845": 0.8373873874, + "29846": 0.8383783784, + "29847": 0.8393693694, + "29848": 0.8403603604, + "29849": 0.8413513514, + "29850": 0.8423423423, + "29851": 0.8433333333, + "29852": 0.8443243243, + "29853": 0.8453153153, + "29854": 0.8463063063, + "29855": 0.8472972973, + "29856": 0.8482882883, + "29857": 0.8492792793, + "29858": 0.8502702703, + "29859": 0.8512612613, + "29860": 0.8522522523, + "29861": 0.8532432432, + "29862": 0.8542342342, + "29863": 0.8552252252, + "29864": 0.8562162162, + "29865": 0.8572072072, + "29866": 0.8581981982, + "29867": 0.8591891892, + "29868": 0.8601801802, + "29869": 0.8611711712, + "29870": 0.8621621622, + "29871": 0.8631531532, + "29872": 0.8641441441, + "29873": 0.8651351351, + "29874": 0.8661261261, + "29875": 0.8671171171, + "29876": 0.8681081081, + "29877": 0.8690990991, + "29878": 0.8700900901, + "29879": 0.8710810811, + "29880": 0.8720720721, + "29881": 0.8730630631, + "29882": 0.8740540541, + "29883": 0.875045045, + "29884": 0.876036036, + "29885": 0.877027027, + "29886": 0.878018018, + "29887": 0.879009009, + "29888": 0.88, + "29889": 0.880990991, + "29890": 0.881981982, + "29891": 0.882972973, + "29892": 0.883963964, + "29893": 0.884954955, + "29894": 0.8859459459, + "29895": 0.8869369369, + "29896": 0.8879279279, + "29897": 0.8889189189, + "29898": 0.8899099099, + "29899": 0.8909009009, + "29900": 0.8918918919, + "29901": 0.8928828829, + "29902": 0.8938738739, + "29903": 0.8948648649, + "29904": 0.8958558559, + "29905": 0.8968468468, + "29906": 0.8978378378, + "29907": 0.8988288288, + "29908": 0.8998198198, + "29909": 0.9008108108, + "29910": 0.9018018018, + "29911": 0.9027927928, + "29912": 0.9037837838, + "29913": 0.9047747748, + "29914": 0.9057657658, + "29915": 0.9067567568, + "29916": 0.9077477477, + "29917": 0.9087387387, + "29918": 0.9097297297, + "29919": 0.9107207207, + "29920": 0.9117117117, + "29921": 0.9127027027, + "29922": 0.9136936937, + "29923": 0.9146846847, + "29924": 0.9156756757, + "29925": 0.9166666667, + "29926": 0.9176576577, + "29927": 0.9186486486, + "29928": 0.9196396396, + "29929": 0.9206306306, + "29930": 0.9216216216, + "29931": 0.9226126126, + "29932": 0.9236036036, + "29933": 0.9245945946, + "29934": 0.9255855856, + "29935": 0.9265765766, + "29936": 0.9275675676, + "29937": 0.9285585586, + "29938": 0.9295495495, + "29939": 0.9305405405, + "29940": 0.9315315315, + "29941": 0.9325225225, + "29942": 0.9335135135, + "29943": 0.9345045045, + "29944": 0.9354954955, + "29945": 0.9364864865, + "29946": 0.9374774775, + "29947": 0.9384684685, + "29948": 0.9394594595, + "29949": 0.9404504505, + "29950": 0.9414414414, + "29951": 0.9424324324, + "29952": 0.9434234234, + "29953": 0.9444144144, + "29954": 0.9454054054, + "29955": 0.9463963964, + "29956": 0.9473873874, + "29957": 0.9483783784, + "29958": 0.9493693694, + "29959": 0.9503603604, + "29960": 0.9513513514, + "29961": 0.9523423423, + "29962": 0.9533333333, + "29963": 0.9543243243, + "29964": 0.9553153153, + "29965": 0.9563063063, + "29966": 0.9572972973, + "29967": 0.9582882883, + "29968": 0.9592792793, + "29969": 0.9602702703, + "29970": 0.9612612613, + "29971": 0.9622522523, + "29972": 0.9632432432, + "29973": 0.9642342342, + "29974": 0.9652252252, + "29975": 0.9662162162, + "29976": 0.9672072072, + "29977": 0.9681981982, + "29978": 0.9691891892, + "29979": 0.9701801802, + "29980": 0.9711711712, + "29981": 0.9721621622, + "29982": 0.9731531532, + "29983": 0.9741441441, + "29984": 0.9751351351, + "29985": 0.9761261261, + "29986": 0.9771171171, + "29987": 0.9781081081, + "29988": 0.9790990991, + "29989": 0.9800900901, + "29990": 0.9810810811, + "29991": 0.9820720721, + "29992": 0.9830630631, + "29993": 0.9840540541, + "29994": 0.985045045, + "29995": 0.986036036, + "29996": 0.987027027, + "29997": 0.988018018, + "29998": 0.989009009, + "29999": 0.99, + "30000": 0.0, + "30001": 0.000990991, + "30002": 0.001981982, + "30003": 0.002972973, + "30004": 0.003963964, + "30005": 0.004954955, + "30006": 0.0059459459, + "30007": 0.0069369369, + "30008": 0.0079279279, + "30009": 0.0089189189, + "30010": 0.0099099099, + "30011": 0.0109009009, + "30012": 0.0118918919, + "30013": 0.0128828829, + "30014": 0.0138738739, + "30015": 0.0148648649, + "30016": 0.0158558559, + "30017": 0.0168468468, + "30018": 0.0178378378, + "30019": 0.0188288288, + "30020": 0.0198198198, + "30021": 0.0208108108, + "30022": 0.0218018018, + "30023": 0.0227927928, + "30024": 0.0237837838, + "30025": 0.0247747748, + "30026": 0.0257657658, + "30027": 0.0267567568, + "30028": 0.0277477477, + "30029": 0.0287387387, + "30030": 0.0297297297, + "30031": 0.0307207207, + "30032": 0.0317117117, + "30033": 0.0327027027, + "30034": 0.0336936937, + "30035": 0.0346846847, + "30036": 0.0356756757, + "30037": 0.0366666667, + "30038": 0.0376576577, + "30039": 0.0386486486, + "30040": 0.0396396396, + "30041": 0.0406306306, + "30042": 0.0416216216, + "30043": 0.0426126126, + "30044": 0.0436036036, + "30045": 0.0445945946, + "30046": 0.0455855856, + "30047": 0.0465765766, + "30048": 0.0475675676, + "30049": 0.0485585586, + "30050": 0.0495495495, + "30051": 0.0505405405, + "30052": 0.0515315315, + "30053": 0.0525225225, + "30054": 0.0535135135, + "30055": 0.0545045045, + "30056": 0.0554954955, + "30057": 0.0564864865, + "30058": 0.0574774775, + "30059": 0.0584684685, + "30060": 0.0594594595, + "30061": 0.0604504505, + "30062": 0.0614414414, + "30063": 0.0624324324, + "30064": 0.0634234234, + "30065": 0.0644144144, + "30066": 0.0654054054, + "30067": 0.0663963964, + "30068": 0.0673873874, + "30069": 0.0683783784, + "30070": 0.0693693694, + "30071": 0.0703603604, + "30072": 0.0713513514, + "30073": 0.0723423423, + "30074": 0.0733333333, + "30075": 0.0743243243, + "30076": 0.0753153153, + "30077": 0.0763063063, + "30078": 0.0772972973, + "30079": 0.0782882883, + "30080": 0.0792792793, + "30081": 0.0802702703, + "30082": 0.0812612613, + "30083": 0.0822522523, + "30084": 0.0832432432, + "30085": 0.0842342342, + "30086": 0.0852252252, + "30087": 0.0862162162, + "30088": 0.0872072072, + "30089": 0.0881981982, + "30090": 0.0891891892, + "30091": 0.0901801802, + "30092": 0.0911711712, + "30093": 0.0921621622, + "30094": 0.0931531532, + "30095": 0.0941441441, + "30096": 0.0951351351, + "30097": 0.0961261261, + "30098": 0.0971171171, + "30099": 0.0981081081, + "30100": 0.0990990991, + "30101": 0.1000900901, + "30102": 0.1010810811, + "30103": 0.1020720721, + "30104": 0.1030630631, + "30105": 0.1040540541, + "30106": 0.105045045, + "30107": 0.106036036, + "30108": 0.107027027, + "30109": 0.108018018, + "30110": 0.109009009, + "30111": 0.11, + "30112": 0.110990991, + "30113": 0.111981982, + "30114": 0.112972973, + "30115": 0.113963964, + "30116": 0.114954955, + "30117": 0.1159459459, + "30118": 0.1169369369, + "30119": 0.1179279279, + "30120": 0.1189189189, + "30121": 0.1199099099, + "30122": 0.1209009009, + "30123": 0.1218918919, + "30124": 0.1228828829, + "30125": 0.1238738739, + "30126": 0.1248648649, + "30127": 0.1258558559, + "30128": 0.1268468468, + "30129": 0.1278378378, + "30130": 0.1288288288, + "30131": 0.1298198198, + "30132": 0.1308108108, + "30133": 0.1318018018, + "30134": 0.1327927928, + "30135": 0.1337837838, + "30136": 0.1347747748, + "30137": 0.1357657658, + "30138": 0.1367567568, + "30139": 0.1377477477, + "30140": 0.1387387387, + "30141": 0.1397297297, + "30142": 0.1407207207, + "30143": 0.1417117117, + "30144": 0.1427027027, + "30145": 0.1436936937, + "30146": 0.1446846847, + "30147": 0.1456756757, + "30148": 0.1466666667, + "30149": 0.1476576577, + "30150": 0.1486486486, + "30151": 0.1496396396, + "30152": 0.1506306306, + "30153": 0.1516216216, + "30154": 0.1526126126, + "30155": 0.1536036036, + "30156": 0.1545945946, + "30157": 0.1555855856, + "30158": 0.1565765766, + "30159": 0.1575675676, + "30160": 0.1585585586, + "30161": 0.1595495495, + "30162": 0.1605405405, + "30163": 0.1615315315, + "30164": 0.1625225225, + "30165": 0.1635135135, + "30166": 0.1645045045, + "30167": 0.1654954955, + "30168": 0.1664864865, + "30169": 0.1674774775, + "30170": 0.1684684685, + "30171": 0.1694594595, + "30172": 0.1704504505, + "30173": 0.1714414414, + "30174": 0.1724324324, + "30175": 0.1734234234, + "30176": 0.1744144144, + "30177": 0.1754054054, + "30178": 0.1763963964, + "30179": 0.1773873874, + "30180": 0.1783783784, + "30181": 0.1793693694, + "30182": 0.1803603604, + "30183": 0.1813513514, + "30184": 0.1823423423, + "30185": 0.1833333333, + "30186": 0.1843243243, + "30187": 0.1853153153, + "30188": 0.1863063063, + "30189": 0.1872972973, + "30190": 0.1882882883, + "30191": 0.1892792793, + "30192": 0.1902702703, + "30193": 0.1912612613, + "30194": 0.1922522523, + "30195": 0.1932432432, + "30196": 0.1942342342, + "30197": 0.1952252252, + "30198": 0.1962162162, + "30199": 0.1972072072, + "30200": 0.1981981982, + "30201": 0.1991891892, + "30202": 0.2001801802, + "30203": 0.2011711712, + "30204": 0.2021621622, + "30205": 0.2031531532, + "30206": 0.2041441441, + "30207": 0.2051351351, + "30208": 0.2061261261, + "30209": 0.2071171171, + "30210": 0.2081081081, + "30211": 0.2090990991, + "30212": 0.2100900901, + "30213": 0.2110810811, + "30214": 0.2120720721, + "30215": 0.2130630631, + "30216": 0.2140540541, + "30217": 0.215045045, + "30218": 0.216036036, + "30219": 0.217027027, + "30220": 0.218018018, + "30221": 0.219009009, + "30222": 0.22, + "30223": 0.220990991, + "30224": 0.221981982, + "30225": 0.222972973, + "30226": 0.223963964, + "30227": 0.224954955, + "30228": 0.2259459459, + "30229": 0.2269369369, + "30230": 0.2279279279, + "30231": 0.2289189189, + "30232": 0.2299099099, + "30233": 0.2309009009, + "30234": 0.2318918919, + "30235": 0.2328828829, + "30236": 0.2338738739, + "30237": 0.2348648649, + "30238": 0.2358558559, + "30239": 0.2368468468, + "30240": 0.2378378378, + "30241": 0.2388288288, + "30242": 0.2398198198, + "30243": 0.2408108108, + "30244": 0.2418018018, + "30245": 0.2427927928, + "30246": 0.2437837838, + "30247": 0.2447747748, + "30248": 0.2457657658, + "30249": 0.2467567568, + "30250": 0.2477477477, + "30251": 0.2487387387, + "30252": 0.2497297297, + "30253": 0.2507207207, + "30254": 0.2517117117, + "30255": 0.2527027027, + "30256": 0.2536936937, + "30257": 0.2546846847, + "30258": 0.2556756757, + "30259": 0.2566666667, + "30260": 0.2576576577, + "30261": 0.2586486486, + "30262": 0.2596396396, + "30263": 0.2606306306, + "30264": 0.2616216216, + "30265": 0.2626126126, + "30266": 0.2636036036, + "30267": 0.2645945946, + "30268": 0.2655855856, + "30269": 0.2665765766, + "30270": 0.2675675676, + "30271": 0.2685585586, + "30272": 0.2695495495, + "30273": 0.2705405405, + "30274": 0.2715315315, + "30275": 0.2725225225, + "30276": 0.2735135135, + "30277": 0.2745045045, + "30278": 0.2754954955, + "30279": 0.2764864865, + "30280": 0.2774774775, + "30281": 0.2784684685, + "30282": 0.2794594595, + "30283": 0.2804504505, + "30284": 0.2814414414, + "30285": 0.2824324324, + "30286": 0.2834234234, + "30287": 0.2844144144, + "30288": 0.2854054054, + "30289": 0.2863963964, + "30290": 0.2873873874, + "30291": 0.2883783784, + "30292": 0.2893693694, + "30293": 0.2903603604, + "30294": 0.2913513514, + "30295": 0.2923423423, + "30296": 0.2933333333, + "30297": 0.2943243243, + "30298": 0.2953153153, + "30299": 0.2963063063, + "30300": 0.2972972973, + "30301": 0.2982882883, + "30302": 0.2992792793, + "30303": 0.3002702703, + "30304": 0.3012612613, + "30305": 0.3022522523, + "30306": 0.3032432432, + "30307": 0.3042342342, + "30308": 0.3052252252, + "30309": 0.3062162162, + "30310": 0.3072072072, + "30311": 0.3081981982, + "30312": 0.3091891892, + "30313": 0.3101801802, + "30314": 0.3111711712, + "30315": 0.3121621622, + "30316": 0.3131531532, + "30317": 0.3141441441, + "30318": 0.3151351351, + "30319": 0.3161261261, + "30320": 0.3171171171, + "30321": 0.3181081081, + "30322": 0.3190990991, + "30323": 0.3200900901, + "30324": 0.3210810811, + "30325": 0.3220720721, + "30326": 0.3230630631, + "30327": 0.3240540541, + "30328": 0.325045045, + "30329": 0.326036036, + "30330": 0.327027027, + "30331": 0.328018018, + "30332": 0.329009009, + "30333": 0.33, + "30334": 0.330990991, + "30335": 0.331981982, + "30336": 0.332972973, + "30337": 0.333963964, + "30338": 0.334954955, + "30339": 0.3359459459, + "30340": 0.3369369369, + "30341": 0.3379279279, + "30342": 0.3389189189, + "30343": 0.3399099099, + "30344": 0.3409009009, + "30345": 0.3418918919, + "30346": 0.3428828829, + "30347": 0.3438738739, + "30348": 0.3448648649, + "30349": 0.3458558559, + "30350": 0.3468468468, + "30351": 0.3478378378, + "30352": 0.3488288288, + "30353": 0.3498198198, + "30354": 0.3508108108, + "30355": 0.3518018018, + "30356": 0.3527927928, + "30357": 0.3537837838, + "30358": 0.3547747748, + "30359": 0.3557657658, + "30360": 0.3567567568, + "30361": 0.3577477477, + "30362": 0.3587387387, + "30363": 0.3597297297, + "30364": 0.3607207207, + "30365": 0.3617117117, + "30366": 0.3627027027, + "30367": 0.3636936937, + "30368": 0.3646846847, + "30369": 0.3656756757, + "30370": 0.3666666667, + "30371": 0.3676576577, + "30372": 0.3686486486, + "30373": 0.3696396396, + "30374": 0.3706306306, + "30375": 0.3716216216, + "30376": 0.3726126126, + "30377": 0.3736036036, + "30378": 0.3745945946, + "30379": 0.3755855856, + "30380": 0.3765765766, + "30381": 0.3775675676, + "30382": 0.3785585586, + "30383": 0.3795495495, + "30384": 0.3805405405, + "30385": 0.3815315315, + "30386": 0.3825225225, + "30387": 0.3835135135, + "30388": 0.3845045045, + "30389": 0.3854954955, + "30390": 0.3864864865, + "30391": 0.3874774775, + "30392": 0.3884684685, + "30393": 0.3894594595, + "30394": 0.3904504505, + "30395": 0.3914414414, + "30396": 0.3924324324, + "30397": 0.3934234234, + "30398": 0.3944144144, + "30399": 0.3954054054, + "30400": 0.3963963964, + "30401": 0.3973873874, + "30402": 0.3983783784, + "30403": 0.3993693694, + "30404": 0.4003603604, + "30405": 0.4013513514, + "30406": 0.4023423423, + "30407": 0.4033333333, + "30408": 0.4043243243, + "30409": 0.4053153153, + "30410": 0.4063063063, + "30411": 0.4072972973, + "30412": 0.4082882883, + "30413": 0.4092792793, + "30414": 0.4102702703, + "30415": 0.4112612613, + "30416": 0.4122522523, + "30417": 0.4132432432, + "30418": 0.4142342342, + "30419": 0.4152252252, + "30420": 0.4162162162, + "30421": 0.4172072072, + "30422": 0.4181981982, + "30423": 0.4191891892, + "30424": 0.4201801802, + "30425": 0.4211711712, + "30426": 0.4221621622, + "30427": 0.4231531532, + "30428": 0.4241441441, + "30429": 0.4251351351, + "30430": 0.4261261261, + "30431": 0.4271171171, + "30432": 0.4281081081, + "30433": 0.4290990991, + "30434": 0.4300900901, + "30435": 0.4310810811, + "30436": 0.4320720721, + "30437": 0.4330630631, + "30438": 0.4340540541, + "30439": 0.435045045, + "30440": 0.436036036, + "30441": 0.437027027, + "30442": 0.438018018, + "30443": 0.439009009, + "30444": 0.44, + "30445": 0.440990991, + "30446": 0.441981982, + "30447": 0.442972973, + "30448": 0.443963964, + "30449": 0.444954955, + "30450": 0.4459459459, + "30451": 0.4469369369, + "30452": 0.4479279279, + "30453": 0.4489189189, + "30454": 0.4499099099, + "30455": 0.4509009009, + "30456": 0.4518918919, + "30457": 0.4528828829, + "30458": 0.4538738739, + "30459": 0.4548648649, + "30460": 0.4558558559, + "30461": 0.4568468468, + "30462": 0.4578378378, + "30463": 0.4588288288, + "30464": 0.4598198198, + "30465": 0.4608108108, + "30466": 0.4618018018, + "30467": 0.4627927928, + "30468": 0.4637837838, + "30469": 0.4647747748, + "30470": 0.4657657658, + "30471": 0.4667567568, + "30472": 0.4677477477, + "30473": 0.4687387387, + "30474": 0.4697297297, + "30475": 0.4707207207, + "30476": 0.4717117117, + "30477": 0.4727027027, + "30478": 0.4736936937, + "30479": 0.4746846847, + "30480": 0.4756756757, + "30481": 0.4766666667, + "30482": 0.4776576577, + "30483": 0.4786486486, + "30484": 0.4796396396, + "30485": 0.4806306306, + "30486": 0.4816216216, + "30487": 0.4826126126, + "30488": 0.4836036036, + "30489": 0.4845945946, + "30490": 0.4855855856, + "30491": 0.4865765766, + "30492": 0.4875675676, + "30493": 0.4885585586, + "30494": 0.4895495495, + "30495": 0.4905405405, + "30496": 0.4915315315, + "30497": 0.4925225225, + "30498": 0.4935135135, + "30499": 0.4945045045, + "30500": 0.4954954955, + "30501": 0.4964864865, + "30502": 0.4974774775, + "30503": 0.4984684685, + "30504": 0.4994594595, + "30505": 0.5004504505, + "30506": 0.5014414414, + "30507": 0.5024324324, + "30508": 0.5034234234, + "30509": 0.5044144144, + "30510": 0.5054054054, + "30511": 0.5063963964, + "30512": 0.5073873874, + "30513": 0.5083783784, + "30514": 0.5093693694, + "30515": 0.5103603604, + "30516": 0.5113513514, + "30517": 0.5123423423, + "30518": 0.5133333333, + "30519": 0.5143243243, + "30520": 0.5153153153, + "30521": 0.5163063063, + "30522": 0.5172972973, + "30523": 0.5182882883, + "30524": 0.5192792793, + "30525": 0.5202702703, + "30526": 0.5212612613, + "30527": 0.5222522523, + "30528": 0.5232432432, + "30529": 0.5242342342, + "30530": 0.5252252252, + "30531": 0.5262162162, + "30532": 0.5272072072, + "30533": 0.5281981982, + "30534": 0.5291891892, + "30535": 0.5301801802, + "30536": 0.5311711712, + "30537": 0.5321621622, + "30538": 0.5331531532, + "30539": 0.5341441441, + "30540": 0.5351351351, + "30541": 0.5361261261, + "30542": 0.5371171171, + "30543": 0.5381081081, + "30544": 0.5390990991, + "30545": 0.5400900901, + "30546": 0.5410810811, + "30547": 0.5420720721, + "30548": 0.5430630631, + "30549": 0.5440540541, + "30550": 0.545045045, + "30551": 0.546036036, + "30552": 0.547027027, + "30553": 0.548018018, + "30554": 0.549009009, + "30555": 0.55, + "30556": 0.550990991, + "30557": 0.551981982, + "30558": 0.552972973, + "30559": 0.553963964, + "30560": 0.554954955, + "30561": 0.5559459459, + "30562": 0.5569369369, + "30563": 0.5579279279, + "30564": 0.5589189189, + "30565": 0.5599099099, + "30566": 0.5609009009, + "30567": 0.5618918919, + "30568": 0.5628828829, + "30569": 0.5638738739, + "30570": 0.5648648649, + "30571": 0.5658558559, + "30572": 0.5668468468, + "30573": 0.5678378378, + "30574": 0.5688288288, + "30575": 0.5698198198, + "30576": 0.5708108108, + "30577": 0.5718018018, + "30578": 0.5727927928, + "30579": 0.5737837838, + "30580": 0.5747747748, + "30581": 0.5757657658, + "30582": 0.5767567568, + "30583": 0.5777477477, + "30584": 0.5787387387, + "30585": 0.5797297297, + "30586": 0.5807207207, + "30587": 0.5817117117, + "30588": 0.5827027027, + "30589": 0.5836936937, + "30590": 0.5846846847, + "30591": 0.5856756757, + "30592": 0.5866666667, + "30593": 0.5876576577, + "30594": 0.5886486486, + "30595": 0.5896396396, + "30596": 0.5906306306, + "30597": 0.5916216216, + "30598": 0.5926126126, + "30599": 0.5936036036, + "30600": 0.5945945946, + "30601": 0.5955855856, + "30602": 0.5965765766, + "30603": 0.5975675676, + "30604": 0.5985585586, + "30605": 0.5995495495, + "30606": 0.6005405405, + "30607": 0.6015315315, + "30608": 0.6025225225, + "30609": 0.6035135135, + "30610": 0.6045045045, + "30611": 0.6054954955, + "30612": 0.6064864865, + "30613": 0.6074774775, + "30614": 0.6084684685, + "30615": 0.6094594595, + "30616": 0.6104504505, + "30617": 0.6114414414, + "30618": 0.6124324324, + "30619": 0.6134234234, + "30620": 0.6144144144, + "30621": 0.6154054054, + "30622": 0.6163963964, + "30623": 0.6173873874, + "30624": 0.6183783784, + "30625": 0.6193693694, + "30626": 0.6203603604, + "30627": 0.6213513514, + "30628": 0.6223423423, + "30629": 0.6233333333, + "30630": 0.6243243243, + "30631": 0.6253153153, + "30632": 0.6263063063, + "30633": 0.6272972973, + "30634": 0.6282882883, + "30635": 0.6292792793, + "30636": 0.6302702703, + "30637": 0.6312612613, + "30638": 0.6322522523, + "30639": 0.6332432432, + "30640": 0.6342342342, + "30641": 0.6352252252, + "30642": 0.6362162162, + "30643": 0.6372072072, + "30644": 0.6381981982, + "30645": 0.6391891892, + "30646": 0.6401801802, + "30647": 0.6411711712, + "30648": 0.6421621622, + "30649": 0.6431531532, + "30650": 0.6441441441, + "30651": 0.6451351351, + "30652": 0.6461261261, + "30653": 0.6471171171, + "30654": 0.6481081081, + "30655": 0.6490990991, + "30656": 0.6500900901, + "30657": 0.6510810811, + "30658": 0.6520720721, + "30659": 0.6530630631, + "30660": 0.6540540541, + "30661": 0.655045045, + "30662": 0.656036036, + "30663": 0.657027027, + "30664": 0.658018018, + "30665": 0.659009009, + "30666": 0.66, + "30667": 0.660990991, + "30668": 0.661981982, + "30669": 0.662972973, + "30670": 0.663963964, + "30671": 0.664954955, + "30672": 0.6659459459, + "30673": 0.6669369369, + "30674": 0.6679279279, + "30675": 0.6689189189, + "30676": 0.6699099099, + "30677": 0.6709009009, + "30678": 0.6718918919, + "30679": 0.6728828829, + "30680": 0.6738738739, + "30681": 0.6748648649, + "30682": 0.6758558559, + "30683": 0.6768468468, + "30684": 0.6778378378, + "30685": 0.6788288288, + "30686": 0.6798198198, + "30687": 0.6808108108, + "30688": 0.6818018018, + "30689": 0.6827927928, + "30690": 0.6837837838, + "30691": 0.6847747748, + "30692": 0.6857657658, + "30693": 0.6867567568, + "30694": 0.6877477477, + "30695": 0.6887387387, + "30696": 0.6897297297, + "30697": 0.6907207207, + "30698": 0.6917117117, + "30699": 0.6927027027, + "30700": 0.6936936937, + "30701": 0.6946846847, + "30702": 0.6956756757, + "30703": 0.6966666667, + "30704": 0.6976576577, + "30705": 0.6986486486, + "30706": 0.6996396396, + "30707": 0.7006306306, + "30708": 0.7016216216, + "30709": 0.7026126126, + "30710": 0.7036036036, + "30711": 0.7045945946, + "30712": 0.7055855856, + "30713": 0.7065765766, + "30714": 0.7075675676, + "30715": 0.7085585586, + "30716": 0.7095495495, + "30717": 0.7105405405, + "30718": 0.7115315315, + "30719": 0.7125225225, + "30720": 0.7135135135, + "30721": 0.7145045045, + "30722": 0.7154954955, + "30723": 0.7164864865, + "30724": 0.7174774775, + "30725": 0.7184684685, + "30726": 0.7194594595, + "30727": 0.7204504505, + "30728": 0.7214414414, + "30729": 0.7224324324, + "30730": 0.7234234234, + "30731": 0.7244144144, + "30732": 0.7254054054, + "30733": 0.7263963964, + "30734": 0.7273873874, + "30735": 0.7283783784, + "30736": 0.7293693694, + "30737": 0.7303603604, + "30738": 0.7313513514, + "30739": 0.7323423423, + "30740": 0.7333333333, + "30741": 0.7343243243, + "30742": 0.7353153153, + "30743": 0.7363063063, + "30744": 0.7372972973, + "30745": 0.7382882883, + "30746": 0.7392792793, + "30747": 0.7402702703, + "30748": 0.7412612613, + "30749": 0.7422522523, + "30750": 0.7432432432, + "30751": 0.7442342342, + "30752": 0.7452252252, + "30753": 0.7462162162, + "30754": 0.7472072072, + "30755": 0.7481981982, + "30756": 0.7491891892, + "30757": 0.7501801802, + "30758": 0.7511711712, + "30759": 0.7521621622, + "30760": 0.7531531532, + "30761": 0.7541441441, + "30762": 0.7551351351, + "30763": 0.7561261261, + "30764": 0.7571171171, + "30765": 0.7581081081, + "30766": 0.7590990991, + "30767": 0.7600900901, + "30768": 0.7610810811, + "30769": 0.7620720721, + "30770": 0.7630630631, + "30771": 0.7640540541, + "30772": 0.765045045, + "30773": 0.766036036, + "30774": 0.767027027, + "30775": 0.768018018, + "30776": 0.769009009, + "30777": 0.77, + "30778": 0.770990991, + "30779": 0.771981982, + "30780": 0.772972973, + "30781": 0.773963964, + "30782": 0.774954955, + "30783": 0.7759459459, + "30784": 0.7769369369, + "30785": 0.7779279279, + "30786": 0.7789189189, + "30787": 0.7799099099, + "30788": 0.7809009009, + "30789": 0.7818918919, + "30790": 0.7828828829, + "30791": 0.7838738739, + "30792": 0.7848648649, + "30793": 0.7858558559, + "30794": 0.7868468468, + "30795": 0.7878378378, + "30796": 0.7888288288, + "30797": 0.7898198198, + "30798": 0.7908108108, + "30799": 0.7918018018, + "30800": 0.7927927928, + "30801": 0.7937837838, + "30802": 0.7947747748, + "30803": 0.7957657658, + "30804": 0.7967567568, + "30805": 0.7977477477, + "30806": 0.7987387387, + "30807": 0.7997297297, + "30808": 0.8007207207, + "30809": 0.8017117117, + "30810": 0.8027027027, + "30811": 0.8036936937, + "30812": 0.8046846847, + "30813": 0.8056756757, + "30814": 0.8066666667, + "30815": 0.8076576577, + "30816": 0.8086486486, + "30817": 0.8096396396, + "30818": 0.8106306306, + "30819": 0.8116216216, + "30820": 0.8126126126, + "30821": 0.8136036036, + "30822": 0.8145945946, + "30823": 0.8155855856, + "30824": 0.8165765766, + "30825": 0.8175675676, + "30826": 0.8185585586, + "30827": 0.8195495495, + "30828": 0.8205405405, + "30829": 0.8215315315, + "30830": 0.8225225225, + "30831": 0.8235135135, + "30832": 0.8245045045, + "30833": 0.8254954955, + "30834": 0.8264864865, + "30835": 0.8274774775, + "30836": 0.8284684685, + "30837": 0.8294594595, + "30838": 0.8304504505, + "30839": 0.8314414414, + "30840": 0.8324324324, + "30841": 0.8334234234, + "30842": 0.8344144144, + "30843": 0.8354054054, + "30844": 0.8363963964, + "30845": 0.8373873874, + "30846": 0.8383783784, + "30847": 0.8393693694, + "30848": 0.8403603604, + "30849": 0.8413513514, + "30850": 0.8423423423, + "30851": 0.8433333333, + "30852": 0.8443243243, + "30853": 0.8453153153, + "30854": 0.8463063063, + "30855": 0.8472972973, + "30856": 0.8482882883, + "30857": 0.8492792793, + "30858": 0.8502702703, + "30859": 0.8512612613, + "30860": 0.8522522523, + "30861": 0.8532432432, + "30862": 0.8542342342, + "30863": 0.8552252252, + "30864": 0.8562162162, + "30865": 0.8572072072, + "30866": 0.8581981982, + "30867": 0.8591891892, + "30868": 0.8601801802, + "30869": 0.8611711712, + "30870": 0.8621621622, + "30871": 0.8631531532, + "30872": 0.8641441441, + "30873": 0.8651351351, + "30874": 0.8661261261, + "30875": 0.8671171171, + "30876": 0.8681081081, + "30877": 0.8690990991, + "30878": 0.8700900901, + "30879": 0.8710810811, + "30880": 0.8720720721, + "30881": 0.8730630631, + "30882": 0.8740540541, + "30883": 0.875045045, + "30884": 0.876036036, + "30885": 0.877027027, + "30886": 0.878018018, + "30887": 0.879009009, + "30888": 0.88, + "30889": 0.880990991, + "30890": 0.881981982, + "30891": 0.882972973, + "30892": 0.883963964, + "30893": 0.884954955, + "30894": 0.8859459459, + "30895": 0.8869369369, + "30896": 0.8879279279, + "30897": 0.8889189189, + "30898": 0.8899099099, + "30899": 0.8909009009, + "30900": 0.8918918919, + "30901": 0.8928828829, + "30902": 0.8938738739, + "30903": 0.8948648649, + "30904": 0.8958558559, + "30905": 0.8968468468, + "30906": 0.8978378378, + "30907": 0.8988288288, + "30908": 0.8998198198, + "30909": 0.9008108108, + "30910": 0.9018018018, + "30911": 0.9027927928, + "30912": 0.9037837838, + "30913": 0.9047747748, + "30914": 0.9057657658, + "30915": 0.9067567568, + "30916": 0.9077477477, + "30917": 0.9087387387, + "30918": 0.9097297297, + "30919": 0.9107207207, + "30920": 0.9117117117, + "30921": 0.9127027027, + "30922": 0.9136936937, + "30923": 0.9146846847, + "30924": 0.9156756757, + "30925": 0.9166666667, + "30926": 0.9176576577, + "30927": 0.9186486486, + "30928": 0.9196396396, + "30929": 0.9206306306, + "30930": 0.9216216216, + "30931": 0.9226126126, + "30932": 0.9236036036, + "30933": 0.9245945946, + "30934": 0.9255855856, + "30935": 0.9265765766, + "30936": 0.9275675676, + "30937": 0.9285585586, + "30938": 0.9295495495, + "30939": 0.9305405405, + "30940": 0.9315315315, + "30941": 0.9325225225, + "30942": 0.9335135135, + "30943": 0.9345045045, + "30944": 0.9354954955, + "30945": 0.9364864865, + "30946": 0.9374774775, + "30947": 0.9384684685, + "30948": 0.9394594595, + "30949": 0.9404504505, + "30950": 0.9414414414, + "30951": 0.9424324324, + "30952": 0.9434234234, + "30953": 0.9444144144, + "30954": 0.9454054054, + "30955": 0.9463963964, + "30956": 0.9473873874, + "30957": 0.9483783784, + "30958": 0.9493693694, + "30959": 0.9503603604, + "30960": 0.9513513514, + "30961": 0.9523423423, + "30962": 0.9533333333, + "30963": 0.9543243243, + "30964": 0.9553153153, + "30965": 0.9563063063, + "30966": 0.9572972973, + "30967": 0.9582882883, + "30968": 0.9592792793, + "30969": 0.9602702703, + "30970": 0.9612612613, + "30971": 0.9622522523, + "30972": 0.9632432432, + "30973": 0.9642342342, + "30974": 0.9652252252, + "30975": 0.9662162162, + "30976": 0.9672072072, + "30977": 0.9681981982, + "30978": 0.9691891892, + "30979": 0.9701801802, + "30980": 0.9711711712, + "30981": 0.9721621622, + "30982": 0.9731531532, + "30983": 0.9741441441, + "30984": 0.9751351351, + "30985": 0.9761261261, + "30986": 0.9771171171, + "30987": 0.9781081081, + "30988": 0.9790990991, + "30989": 0.9800900901, + "30990": 0.9810810811, + "30991": 0.9820720721, + "30992": 0.9830630631, + "30993": 0.9840540541, + "30994": 0.985045045, + "30995": 0.986036036, + "30996": 0.987027027, + "30997": 0.988018018, + "30998": 0.989009009, + "30999": 0.99, + "31000": 0.0, + "31001": 0.000990991, + "31002": 0.001981982, + "31003": 0.002972973, + "31004": 0.003963964, + "31005": 0.004954955, + "31006": 0.0059459459, + "31007": 0.0069369369, + "31008": 0.0079279279, + "31009": 0.0089189189, + "31010": 0.0099099099, + "31011": 0.0109009009, + "31012": 0.0118918919, + "31013": 0.0128828829, + "31014": 0.0138738739, + "31015": 0.0148648649, + "31016": 0.0158558559, + "31017": 0.0168468468, + "31018": 0.0178378378, + "31019": 0.0188288288, + "31020": 0.0198198198, + "31021": 0.0208108108, + "31022": 0.0218018018, + "31023": 0.0227927928, + "31024": 0.0237837838, + "31025": 0.0247747748, + "31026": 0.0257657658, + "31027": 0.0267567568, + "31028": 0.0277477477, + "31029": 0.0287387387, + "31030": 0.0297297297, + "31031": 0.0307207207, + "31032": 0.0317117117, + "31033": 0.0327027027, + "31034": 0.0336936937, + "31035": 0.0346846847, + "31036": 0.0356756757, + "31037": 0.0366666667, + "31038": 0.0376576577, + "31039": 0.0386486486, + "31040": 0.0396396396, + "31041": 0.0406306306, + "31042": 0.0416216216, + "31043": 0.0426126126, + "31044": 0.0436036036, + "31045": 0.0445945946, + "31046": 0.0455855856, + "31047": 0.0465765766, + "31048": 0.0475675676, + "31049": 0.0485585586, + "31050": 0.0495495495, + "31051": 0.0505405405, + "31052": 0.0515315315, + "31053": 0.0525225225, + "31054": 0.0535135135, + "31055": 0.0545045045, + "31056": 0.0554954955, + "31057": 0.0564864865, + "31058": 0.0574774775, + "31059": 0.0584684685, + "31060": 0.0594594595, + "31061": 0.0604504505, + "31062": 0.0614414414, + "31063": 0.0624324324, + "31064": 0.0634234234, + "31065": 0.0644144144, + "31066": 0.0654054054, + "31067": 0.0663963964, + "31068": 0.0673873874, + "31069": 0.0683783784, + "31070": 0.0693693694, + "31071": 0.0703603604, + "31072": 0.0713513514, + "31073": 0.0723423423, + "31074": 0.0733333333, + "31075": 0.0743243243, + "31076": 0.0753153153, + "31077": 0.0763063063, + "31078": 0.0772972973, + "31079": 0.0782882883, + "31080": 0.0792792793, + "31081": 0.0802702703, + "31082": 0.0812612613, + "31083": 0.0822522523, + "31084": 0.0832432432, + "31085": 0.0842342342, + "31086": 0.0852252252, + "31087": 0.0862162162, + "31088": 0.0872072072, + "31089": 0.0881981982, + "31090": 0.0891891892, + "31091": 0.0901801802, + "31092": 0.0911711712, + "31093": 0.0921621622, + "31094": 0.0931531532, + "31095": 0.0941441441, + "31096": 0.0951351351, + "31097": 0.0961261261, + "31098": 0.0971171171, + "31099": 0.0981081081, + "31100": 0.0990990991, + "31101": 0.1000900901, + "31102": 0.1010810811, + "31103": 0.1020720721, + "31104": 0.1030630631, + "31105": 0.1040540541, + "31106": 0.105045045, + "31107": 0.106036036, + "31108": 0.107027027, + "31109": 0.108018018, + "31110": 0.109009009, + "31111": 0.11, + "31112": 0.110990991, + "31113": 0.111981982, + "31114": 0.112972973, + "31115": 0.113963964, + "31116": 0.114954955, + "31117": 0.1159459459, + "31118": 0.1169369369, + "31119": 0.1179279279, + "31120": 0.1189189189, + "31121": 0.1199099099, + "31122": 0.1209009009, + "31123": 0.1218918919, + "31124": 0.1228828829, + "31125": 0.1238738739, + "31126": 0.1248648649, + "31127": 0.1258558559, + "31128": 0.1268468468, + "31129": 0.1278378378, + "31130": 0.1288288288, + "31131": 0.1298198198, + "31132": 0.1308108108, + "31133": 0.1318018018, + "31134": 0.1327927928, + "31135": 0.1337837838, + "31136": 0.1347747748, + "31137": 0.1357657658, + "31138": 0.1367567568, + "31139": 0.1377477477, + "31140": 0.1387387387, + "31141": 0.1397297297, + "31142": 0.1407207207, + "31143": 0.1417117117, + "31144": 0.1427027027, + "31145": 0.1436936937, + "31146": 0.1446846847, + "31147": 0.1456756757, + "31148": 0.1466666667, + "31149": 0.1476576577, + "31150": 0.1486486486, + "31151": 0.1496396396, + "31152": 0.1506306306, + "31153": 0.1516216216, + "31154": 0.1526126126, + "31155": 0.1536036036, + "31156": 0.1545945946, + "31157": 0.1555855856, + "31158": 0.1565765766, + "31159": 0.1575675676, + "31160": 0.1585585586, + "31161": 0.1595495495, + "31162": 0.1605405405, + "31163": 0.1615315315, + "31164": 0.1625225225, + "31165": 0.1635135135, + "31166": 0.1645045045, + "31167": 0.1654954955, + "31168": 0.1664864865, + "31169": 0.1674774775, + "31170": 0.1684684685, + "31171": 0.1694594595, + "31172": 0.1704504505, + "31173": 0.1714414414, + "31174": 0.1724324324, + "31175": 0.1734234234, + "31176": 0.1744144144, + "31177": 0.1754054054, + "31178": 0.1763963964, + "31179": 0.1773873874, + "31180": 0.1783783784, + "31181": 0.1793693694, + "31182": 0.1803603604, + "31183": 0.1813513514, + "31184": 0.1823423423, + "31185": 0.1833333333, + "31186": 0.1843243243, + "31187": 0.1853153153, + "31188": 0.1863063063, + "31189": 0.1872972973, + "31190": 0.1882882883, + "31191": 0.1892792793, + "31192": 0.1902702703, + "31193": 0.1912612613, + "31194": 0.1922522523, + "31195": 0.1932432432, + "31196": 0.1942342342, + "31197": 0.1952252252, + "31198": 0.1962162162, + "31199": 0.1972072072, + "31200": 0.1981981982, + "31201": 0.1991891892, + "31202": 0.2001801802, + "31203": 0.2011711712, + "31204": 0.2021621622, + "31205": 0.2031531532, + "31206": 0.2041441441, + "31207": 0.2051351351, + "31208": 0.2061261261, + "31209": 0.2071171171, + "31210": 0.2081081081, + "31211": 0.2090990991, + "31212": 0.2100900901, + "31213": 0.2110810811, + "31214": 0.2120720721, + "31215": 0.2130630631, + "31216": 0.2140540541, + "31217": 0.215045045, + "31218": 0.216036036, + "31219": 0.217027027, + "31220": 0.218018018, + "31221": 0.219009009, + "31222": 0.22, + "31223": 0.220990991, + "31224": 0.221981982, + "31225": 0.222972973, + "31226": 0.223963964, + "31227": 0.224954955, + "31228": 0.2259459459, + "31229": 0.2269369369, + "31230": 0.2279279279, + "31231": 0.2289189189, + "31232": 0.2299099099, + "31233": 0.2309009009, + "31234": 0.2318918919, + "31235": 0.2328828829, + "31236": 0.2338738739, + "31237": 0.2348648649, + "31238": 0.2358558559, + "31239": 0.2368468468, + "31240": 0.2378378378, + "31241": 0.2388288288, + "31242": 0.2398198198, + "31243": 0.2408108108, + "31244": 0.2418018018, + "31245": 0.2427927928, + "31246": 0.2437837838, + "31247": 0.2447747748, + "31248": 0.2457657658, + "31249": 0.2467567568, + "31250": 0.2477477477, + "31251": 0.2487387387, + "31252": 0.2497297297, + "31253": 0.2507207207, + "31254": 0.2517117117, + "31255": 0.2527027027, + "31256": 0.2536936937, + "31257": 0.2546846847, + "31258": 0.2556756757, + "31259": 0.2566666667, + "31260": 0.2576576577, + "31261": 0.2586486486, + "31262": 0.2596396396, + "31263": 0.2606306306, + "31264": 0.2616216216, + "31265": 0.2626126126, + "31266": 0.2636036036, + "31267": 0.2645945946, + "31268": 0.2655855856, + "31269": 0.2665765766, + "31270": 0.2675675676, + "31271": 0.2685585586, + "31272": 0.2695495495, + "31273": 0.2705405405, + "31274": 0.2715315315, + "31275": 0.2725225225, + "31276": 0.2735135135, + "31277": 0.2745045045, + "31278": 0.2754954955, + "31279": 0.2764864865, + "31280": 0.2774774775, + "31281": 0.2784684685, + "31282": 0.2794594595, + "31283": 0.2804504505, + "31284": 0.2814414414, + "31285": 0.2824324324, + "31286": 0.2834234234, + "31287": 0.2844144144, + "31288": 0.2854054054, + "31289": 0.2863963964, + "31290": 0.2873873874, + "31291": 0.2883783784, + "31292": 0.2893693694, + "31293": 0.2903603604, + "31294": 0.2913513514, + "31295": 0.2923423423, + "31296": 0.2933333333, + "31297": 0.2943243243, + "31298": 0.2953153153, + "31299": 0.2963063063, + "31300": 0.2972972973, + "31301": 0.2982882883, + "31302": 0.2992792793, + "31303": 0.3002702703, + "31304": 0.3012612613, + "31305": 0.3022522523, + "31306": 0.3032432432, + "31307": 0.3042342342, + "31308": 0.3052252252, + "31309": 0.3062162162, + "31310": 0.3072072072, + "31311": 0.3081981982, + "31312": 0.3091891892, + "31313": 0.3101801802, + "31314": 0.3111711712, + "31315": 0.3121621622, + "31316": 0.3131531532, + "31317": 0.3141441441, + "31318": 0.3151351351, + "31319": 0.3161261261, + "31320": 0.3171171171, + "31321": 0.3181081081, + "31322": 0.3190990991, + "31323": 0.3200900901, + "31324": 0.3210810811, + "31325": 0.3220720721, + "31326": 0.3230630631, + "31327": 0.3240540541, + "31328": 0.325045045, + "31329": 0.326036036, + "31330": 0.327027027, + "31331": 0.328018018, + "31332": 0.329009009, + "31333": 0.33, + "31334": 0.330990991, + "31335": 0.331981982, + "31336": 0.332972973, + "31337": 0.333963964, + "31338": 0.334954955, + "31339": 0.3359459459, + "31340": 0.3369369369, + "31341": 0.3379279279, + "31342": 0.3389189189, + "31343": 0.3399099099, + "31344": 0.3409009009, + "31345": 0.3418918919, + "31346": 0.3428828829, + "31347": 0.3438738739, + "31348": 0.3448648649, + "31349": 0.3458558559, + "31350": 0.3468468468, + "31351": 0.3478378378, + "31352": 0.3488288288, + "31353": 0.3498198198, + "31354": 0.3508108108, + "31355": 0.3518018018, + "31356": 0.3527927928, + "31357": 0.3537837838, + "31358": 0.3547747748, + "31359": 0.3557657658, + "31360": 0.3567567568, + "31361": 0.3577477477, + "31362": 0.3587387387, + "31363": 0.3597297297, + "31364": 0.3607207207, + "31365": 0.3617117117, + "31366": 0.3627027027, + "31367": 0.3636936937, + "31368": 0.3646846847, + "31369": 0.3656756757, + "31370": 0.3666666667, + "31371": 0.3676576577, + "31372": 0.3686486486, + "31373": 0.3696396396, + "31374": 0.3706306306, + "31375": 0.3716216216, + "31376": 0.3726126126, + "31377": 0.3736036036, + "31378": 0.3745945946, + "31379": 0.3755855856, + "31380": 0.3765765766, + "31381": 0.3775675676, + "31382": 0.3785585586, + "31383": 0.3795495495, + "31384": 0.3805405405, + "31385": 0.3815315315, + "31386": 0.3825225225, + "31387": 0.3835135135, + "31388": 0.3845045045, + "31389": 0.3854954955, + "31390": 0.3864864865, + "31391": 0.3874774775, + "31392": 0.3884684685, + "31393": 0.3894594595, + "31394": 0.3904504505, + "31395": 0.3914414414, + "31396": 0.3924324324, + "31397": 0.3934234234, + "31398": 0.3944144144, + "31399": 0.3954054054, + "31400": 0.3963963964, + "31401": 0.3973873874, + "31402": 0.3983783784, + "31403": 0.3993693694, + "31404": 0.4003603604, + "31405": 0.4013513514, + "31406": 0.4023423423, + "31407": 0.4033333333, + "31408": 0.4043243243, + "31409": 0.4053153153, + "31410": 0.4063063063, + "31411": 0.4072972973, + "31412": 0.4082882883, + "31413": 0.4092792793, + "31414": 0.4102702703, + "31415": 0.4112612613, + "31416": 0.4122522523, + "31417": 0.4132432432, + "31418": 0.4142342342, + "31419": 0.4152252252, + "31420": 0.4162162162, + "31421": 0.4172072072, + "31422": 0.4181981982, + "31423": 0.4191891892, + "31424": 0.4201801802, + "31425": 0.4211711712, + "31426": 0.4221621622, + "31427": 0.4231531532, + "31428": 0.4241441441, + "31429": 0.4251351351, + "31430": 0.4261261261, + "31431": 0.4271171171, + "31432": 0.4281081081, + "31433": 0.4290990991, + "31434": 0.4300900901, + "31435": 0.4310810811, + "31436": 0.4320720721, + "31437": 0.4330630631, + "31438": 0.4340540541, + "31439": 0.435045045, + "31440": 0.436036036, + "31441": 0.437027027, + "31442": 0.438018018, + "31443": 0.439009009, + "31444": 0.44, + "31445": 0.440990991, + "31446": 0.441981982, + "31447": 0.442972973, + "31448": 0.443963964, + "31449": 0.444954955, + "31450": 0.4459459459, + "31451": 0.4469369369, + "31452": 0.4479279279, + "31453": 0.4489189189, + "31454": 0.4499099099, + "31455": 0.4509009009, + "31456": 0.4518918919, + "31457": 0.4528828829, + "31458": 0.4538738739, + "31459": 0.4548648649, + "31460": 0.4558558559, + "31461": 0.4568468468, + "31462": 0.4578378378, + "31463": 0.4588288288, + "31464": 0.4598198198, + "31465": 0.4608108108, + "31466": 0.4618018018, + "31467": 0.4627927928, + "31468": 0.4637837838, + "31469": 0.4647747748, + "31470": 0.4657657658, + "31471": 0.4667567568, + "31472": 0.4677477477, + "31473": 0.4687387387, + "31474": 0.4697297297, + "31475": 0.4707207207, + "31476": 0.4717117117, + "31477": 0.4727027027, + "31478": 0.4736936937, + "31479": 0.4746846847, + "31480": 0.4756756757, + "31481": 0.4766666667, + "31482": 0.4776576577, + "31483": 0.4786486486, + "31484": 0.4796396396, + "31485": 0.4806306306, + "31486": 0.4816216216, + "31487": 0.4826126126, + "31488": 0.4836036036, + "31489": 0.4845945946, + "31490": 0.4855855856, + "31491": 0.4865765766, + "31492": 0.4875675676, + "31493": 0.4885585586, + "31494": 0.4895495495, + "31495": 0.4905405405, + "31496": 0.4915315315, + "31497": 0.4925225225, + "31498": 0.4935135135, + "31499": 0.4945045045, + "31500": 0.4954954955, + "31501": 0.4964864865, + "31502": 0.4974774775, + "31503": 0.4984684685, + "31504": 0.4994594595, + "31505": 0.5004504505, + "31506": 0.5014414414, + "31507": 0.5024324324, + "31508": 0.5034234234, + "31509": 0.5044144144, + "31510": 0.5054054054, + "31511": 0.5063963964, + "31512": 0.5073873874, + "31513": 0.5083783784, + "31514": 0.5093693694, + "31515": 0.5103603604, + "31516": 0.5113513514, + "31517": 0.5123423423, + "31518": 0.5133333333, + "31519": 0.5143243243, + "31520": 0.5153153153, + "31521": 0.5163063063, + "31522": 0.5172972973, + "31523": 0.5182882883, + "31524": 0.5192792793, + "31525": 0.5202702703, + "31526": 0.5212612613, + "31527": 0.5222522523, + "31528": 0.5232432432, + "31529": 0.5242342342, + "31530": 0.5252252252, + "31531": 0.5262162162, + "31532": 0.5272072072, + "31533": 0.5281981982, + "31534": 0.5291891892, + "31535": 0.5301801802, + "31536": 0.5311711712, + "31537": 0.5321621622, + "31538": 0.5331531532, + "31539": 0.5341441441, + "31540": 0.5351351351, + "31541": 0.5361261261, + "31542": 0.5371171171, + "31543": 0.5381081081, + "31544": 0.5390990991, + "31545": 0.5400900901, + "31546": 0.5410810811, + "31547": 0.5420720721, + "31548": 0.5430630631, + "31549": 0.5440540541, + "31550": 0.545045045, + "31551": 0.546036036, + "31552": 0.547027027, + "31553": 0.548018018, + "31554": 0.549009009, + "31555": 0.55, + "31556": 0.550990991, + "31557": 0.551981982, + "31558": 0.552972973, + "31559": 0.553963964, + "31560": 0.554954955, + "31561": 0.5559459459, + "31562": 0.5569369369, + "31563": 0.5579279279, + "31564": 0.5589189189, + "31565": 0.5599099099, + "31566": 0.5609009009, + "31567": 0.5618918919, + "31568": 0.5628828829, + "31569": 0.5638738739, + "31570": 0.5648648649, + "31571": 0.5658558559, + "31572": 0.5668468468, + "31573": 0.5678378378, + "31574": 0.5688288288, + "31575": 0.5698198198, + "31576": 0.5708108108, + "31577": 0.5718018018, + "31578": 0.5727927928, + "31579": 0.5737837838, + "31580": 0.5747747748, + "31581": 0.5757657658, + "31582": 0.5767567568, + "31583": 0.5777477477, + "31584": 0.5787387387, + "31585": 0.5797297297, + "31586": 0.5807207207, + "31587": 0.5817117117, + "31588": 0.5827027027, + "31589": 0.5836936937, + "31590": 0.5846846847, + "31591": 0.5856756757, + "31592": 0.5866666667, + "31593": 0.5876576577, + "31594": 0.5886486486, + "31595": 0.5896396396, + "31596": 0.5906306306, + "31597": 0.5916216216, + "31598": 0.5926126126, + "31599": 0.5936036036, + "31600": 0.5945945946, + "31601": 0.5955855856, + "31602": 0.5965765766, + "31603": 0.5975675676, + "31604": 0.5985585586, + "31605": 0.5995495495, + "31606": 0.6005405405, + "31607": 0.6015315315, + "31608": 0.6025225225, + "31609": 0.6035135135, + "31610": 0.6045045045, + "31611": 0.6054954955, + "31612": 0.6064864865, + "31613": 0.6074774775, + "31614": 0.6084684685, + "31615": 0.6094594595, + "31616": 0.6104504505, + "31617": 0.6114414414, + "31618": 0.6124324324, + "31619": 0.6134234234, + "31620": 0.6144144144, + "31621": 0.6154054054, + "31622": 0.6163963964, + "31623": 0.6173873874, + "31624": 0.6183783784, + "31625": 0.6193693694, + "31626": 0.6203603604, + "31627": 0.6213513514, + "31628": 0.6223423423, + "31629": 0.6233333333, + "31630": 0.6243243243, + "31631": 0.6253153153, + "31632": 0.6263063063, + "31633": 0.6272972973, + "31634": 0.6282882883, + "31635": 0.6292792793, + "31636": 0.6302702703, + "31637": 0.6312612613, + "31638": 0.6322522523, + "31639": 0.6332432432, + "31640": 0.6342342342, + "31641": 0.6352252252, + "31642": 0.6362162162, + "31643": 0.6372072072, + "31644": 0.6381981982, + "31645": 0.6391891892, + "31646": 0.6401801802, + "31647": 0.6411711712, + "31648": 0.6421621622, + "31649": 0.6431531532, + "31650": 0.6441441441, + "31651": 0.6451351351, + "31652": 0.6461261261, + "31653": 0.6471171171, + "31654": 0.6481081081, + "31655": 0.6490990991, + "31656": 0.6500900901, + "31657": 0.6510810811, + "31658": 0.6520720721, + "31659": 0.6530630631, + "31660": 0.6540540541, + "31661": 0.655045045, + "31662": 0.656036036, + "31663": 0.657027027, + "31664": 0.658018018, + "31665": 0.659009009, + "31666": 0.66, + "31667": 0.660990991, + "31668": 0.661981982, + "31669": 0.662972973, + "31670": 0.663963964, + "31671": 0.664954955, + "31672": 0.6659459459, + "31673": 0.6669369369, + "31674": 0.6679279279, + "31675": 0.6689189189, + "31676": 0.6699099099, + "31677": 0.6709009009, + "31678": 0.6718918919, + "31679": 0.6728828829, + "31680": 0.6738738739, + "31681": 0.6748648649, + "31682": 0.6758558559, + "31683": 0.6768468468, + "31684": 0.6778378378, + "31685": 0.6788288288, + "31686": 0.6798198198, + "31687": 0.6808108108, + "31688": 0.6818018018, + "31689": 0.6827927928, + "31690": 0.6837837838, + "31691": 0.6847747748, + "31692": 0.6857657658, + "31693": 0.6867567568, + "31694": 0.6877477477, + "31695": 0.6887387387, + "31696": 0.6897297297, + "31697": 0.6907207207, + "31698": 0.6917117117, + "31699": 0.6927027027, + "31700": 0.6936936937, + "31701": 0.6946846847, + "31702": 0.6956756757, + "31703": 0.6966666667, + "31704": 0.6976576577, + "31705": 0.6986486486, + "31706": 0.6996396396, + "31707": 0.7006306306, + "31708": 0.7016216216, + "31709": 0.7026126126, + "31710": 0.7036036036, + "31711": 0.7045945946, + "31712": 0.7055855856, + "31713": 0.7065765766, + "31714": 0.7075675676, + "31715": 0.7085585586, + "31716": 0.7095495495, + "31717": 0.7105405405, + "31718": 0.7115315315, + "31719": 0.7125225225, + "31720": 0.7135135135, + "31721": 0.7145045045, + "31722": 0.7154954955, + "31723": 0.7164864865, + "31724": 0.7174774775, + "31725": 0.7184684685, + "31726": 0.7194594595, + "31727": 0.7204504505, + "31728": 0.7214414414, + "31729": 0.7224324324, + "31730": 0.7234234234, + "31731": 0.7244144144, + "31732": 0.7254054054, + "31733": 0.7263963964, + "31734": 0.7273873874, + "31735": 0.7283783784, + "31736": 0.7293693694, + "31737": 0.7303603604, + "31738": 0.7313513514, + "31739": 0.7323423423, + "31740": 0.7333333333, + "31741": 0.7343243243, + "31742": 0.7353153153, + "31743": 0.7363063063, + "31744": 0.7372972973, + "31745": 0.7382882883, + "31746": 0.7392792793, + "31747": 0.7402702703, + "31748": 0.7412612613, + "31749": 0.7422522523, + "31750": 0.7432432432, + "31751": 0.7442342342, + "31752": 0.7452252252, + "31753": 0.7462162162, + "31754": 0.7472072072, + "31755": 0.7481981982, + "31756": 0.7491891892, + "31757": 0.7501801802, + "31758": 0.7511711712, + "31759": 0.7521621622, + "31760": 0.7531531532, + "31761": 0.7541441441, + "31762": 0.7551351351, + "31763": 0.7561261261, + "31764": 0.7571171171, + "31765": 0.7581081081, + "31766": 0.7590990991, + "31767": 0.7600900901, + "31768": 0.7610810811, + "31769": 0.7620720721, + "31770": 0.7630630631, + "31771": 0.7640540541, + "31772": 0.765045045, + "31773": 0.766036036, + "31774": 0.767027027, + "31775": 0.768018018, + "31776": 0.769009009, + "31777": 0.77, + "31778": 0.770990991, + "31779": 0.771981982, + "31780": 0.772972973, + "31781": 0.773963964, + "31782": 0.774954955, + "31783": 0.7759459459, + "31784": 0.7769369369, + "31785": 0.7779279279, + "31786": 0.7789189189, + "31787": 0.7799099099, + "31788": 0.7809009009, + "31789": 0.7818918919, + "31790": 0.7828828829, + "31791": 0.7838738739, + "31792": 0.7848648649, + "31793": 0.7858558559, + "31794": 0.7868468468, + "31795": 0.7878378378, + "31796": 0.7888288288, + "31797": 0.7898198198, + "31798": 0.7908108108, + "31799": 0.7918018018, + "31800": 0.7927927928, + "31801": 0.7937837838, + "31802": 0.7947747748, + "31803": 0.7957657658, + "31804": 0.7967567568, + "31805": 0.7977477477, + "31806": 0.7987387387, + "31807": 0.7997297297, + "31808": 0.8007207207, + "31809": 0.8017117117, + "31810": 0.8027027027, + "31811": 0.8036936937, + "31812": 0.8046846847, + "31813": 0.8056756757, + "31814": 0.8066666667, + "31815": 0.8076576577, + "31816": 0.8086486486, + "31817": 0.8096396396, + "31818": 0.8106306306, + "31819": 0.8116216216, + "31820": 0.8126126126, + "31821": 0.8136036036, + "31822": 0.8145945946, + "31823": 0.8155855856, + "31824": 0.8165765766, + "31825": 0.8175675676, + "31826": 0.8185585586, + "31827": 0.8195495495, + "31828": 0.8205405405, + "31829": 0.8215315315, + "31830": 0.8225225225, + "31831": 0.8235135135, + "31832": 0.8245045045, + "31833": 0.8254954955, + "31834": 0.8264864865, + "31835": 0.8274774775, + "31836": 0.8284684685, + "31837": 0.8294594595, + "31838": 0.8304504505, + "31839": 0.8314414414, + "31840": 0.8324324324, + "31841": 0.8334234234, + "31842": 0.8344144144, + "31843": 0.8354054054, + "31844": 0.8363963964, + "31845": 0.8373873874, + "31846": 0.8383783784, + "31847": 0.8393693694, + "31848": 0.8403603604, + "31849": 0.8413513514, + "31850": 0.8423423423, + "31851": 0.8433333333, + "31852": 0.8443243243, + "31853": 0.8453153153, + "31854": 0.8463063063, + "31855": 0.8472972973, + "31856": 0.8482882883, + "31857": 0.8492792793, + "31858": 0.8502702703, + "31859": 0.8512612613, + "31860": 0.8522522523, + "31861": 0.8532432432, + "31862": 0.8542342342, + "31863": 0.8552252252, + "31864": 0.8562162162, + "31865": 0.8572072072, + "31866": 0.8581981982, + "31867": 0.8591891892, + "31868": 0.8601801802, + "31869": 0.8611711712, + "31870": 0.8621621622, + "31871": 0.8631531532, + "31872": 0.8641441441, + "31873": 0.8651351351, + "31874": 0.8661261261, + "31875": 0.8671171171, + "31876": 0.8681081081, + "31877": 0.8690990991, + "31878": 0.8700900901, + "31879": 0.8710810811, + "31880": 0.8720720721, + "31881": 0.8730630631, + "31882": 0.8740540541, + "31883": 0.875045045, + "31884": 0.876036036, + "31885": 0.877027027, + "31886": 0.878018018, + "31887": 0.879009009, + "31888": 0.88, + "31889": 0.880990991, + "31890": 0.881981982, + "31891": 0.882972973, + "31892": 0.883963964, + "31893": 0.884954955, + "31894": 0.8859459459, + "31895": 0.8869369369, + "31896": 0.8879279279, + "31897": 0.8889189189, + "31898": 0.8899099099, + "31899": 0.8909009009, + "31900": 0.8918918919, + "31901": 0.8928828829, + "31902": 0.8938738739, + "31903": 0.8948648649, + "31904": 0.8958558559, + "31905": 0.8968468468, + "31906": 0.8978378378, + "31907": 0.8988288288, + "31908": 0.8998198198, + "31909": 0.9008108108, + "31910": 0.9018018018, + "31911": 0.9027927928, + "31912": 0.9037837838, + "31913": 0.9047747748, + "31914": 0.9057657658, + "31915": 0.9067567568, + "31916": 0.9077477477, + "31917": 0.9087387387, + "31918": 0.9097297297, + "31919": 0.9107207207, + "31920": 0.9117117117, + "31921": 0.9127027027, + "31922": 0.9136936937, + "31923": 0.9146846847, + "31924": 0.9156756757, + "31925": 0.9166666667, + "31926": 0.9176576577, + "31927": 0.9186486486, + "31928": 0.9196396396, + "31929": 0.9206306306, + "31930": 0.9216216216, + "31931": 0.9226126126, + "31932": 0.9236036036, + "31933": 0.9245945946, + "31934": 0.9255855856, + "31935": 0.9265765766, + "31936": 0.9275675676, + "31937": 0.9285585586, + "31938": 0.9295495495, + "31939": 0.9305405405, + "31940": 0.9315315315, + "31941": 0.9325225225, + "31942": 0.9335135135, + "31943": 0.9345045045, + "31944": 0.9354954955, + "31945": 0.9364864865, + "31946": 0.9374774775, + "31947": 0.9384684685, + "31948": 0.9394594595, + "31949": 0.9404504505, + "31950": 0.9414414414, + "31951": 0.9424324324, + "31952": 0.9434234234, + "31953": 0.9444144144, + "31954": 0.9454054054, + "31955": 0.9463963964, + "31956": 0.9473873874, + "31957": 0.9483783784, + "31958": 0.9493693694, + "31959": 0.9503603604, + "31960": 0.9513513514, + "31961": 0.9523423423, + "31962": 0.9533333333, + "31963": 0.9543243243, + "31964": 0.9553153153, + "31965": 0.9563063063, + "31966": 0.9572972973, + "31967": 0.9582882883, + "31968": 0.9592792793, + "31969": 0.9602702703, + "31970": 0.9612612613, + "31971": 0.9622522523, + "31972": 0.9632432432, + "31973": 0.9642342342, + "31974": 0.9652252252, + "31975": 0.9662162162, + "31976": 0.9672072072, + "31977": 0.9681981982, + "31978": 0.9691891892, + "31979": 0.9701801802, + "31980": 0.9711711712, + "31981": 0.9721621622, + "31982": 0.9731531532, + "31983": 0.9741441441, + "31984": 0.9751351351, + "31985": 0.9761261261, + "31986": 0.9771171171, + "31987": 0.9781081081, + "31988": 0.9790990991, + "31989": 0.9800900901, + "31990": 0.9810810811, + "31991": 0.9820720721, + "31992": 0.9830630631, + "31993": 0.9840540541, + "31994": 0.985045045, + "31995": 0.986036036, + "31996": 0.987027027, + "31997": 0.988018018, + "31998": 0.989009009, + "31999": 0.99, + "32000": 0.0, + "32001": 0.000990991, + "32002": 0.001981982, + "32003": 0.002972973, + "32004": 0.003963964, + "32005": 0.004954955, + "32006": 0.0059459459, + "32007": 0.0069369369, + "32008": 0.0079279279, + "32009": 0.0089189189, + "32010": 0.0099099099, + "32011": 0.0109009009, + "32012": 0.0118918919, + "32013": 0.0128828829, + "32014": 0.0138738739, + "32015": 0.0148648649, + "32016": 0.0158558559, + "32017": 0.0168468468, + "32018": 0.0178378378, + "32019": 0.0188288288, + "32020": 0.0198198198, + "32021": 0.0208108108, + "32022": 0.0218018018, + "32023": 0.0227927928, + "32024": 0.0237837838, + "32025": 0.0247747748, + "32026": 0.0257657658, + "32027": 0.0267567568, + "32028": 0.0277477477, + "32029": 0.0287387387, + "32030": 0.0297297297, + "32031": 0.0307207207, + "32032": 0.0317117117, + "32033": 0.0327027027, + "32034": 0.0336936937, + "32035": 0.0346846847, + "32036": 0.0356756757, + "32037": 0.0366666667, + "32038": 0.0376576577, + "32039": 0.0386486486, + "32040": 0.0396396396, + "32041": 0.0406306306, + "32042": 0.0416216216, + "32043": 0.0426126126, + "32044": 0.0436036036, + "32045": 0.0445945946, + "32046": 0.0455855856, + "32047": 0.0465765766, + "32048": 0.0475675676, + "32049": 0.0485585586, + "32050": 0.0495495495, + "32051": 0.0505405405, + "32052": 0.0515315315, + "32053": 0.0525225225, + "32054": 0.0535135135, + "32055": 0.0545045045, + "32056": 0.0554954955, + "32057": 0.0564864865, + "32058": 0.0574774775, + "32059": 0.0584684685, + "32060": 0.0594594595, + "32061": 0.0604504505, + "32062": 0.0614414414, + "32063": 0.0624324324, + "32064": 0.0634234234, + "32065": 0.0644144144, + "32066": 0.0654054054, + "32067": 0.0663963964, + "32068": 0.0673873874, + "32069": 0.0683783784, + "32070": 0.0693693694, + "32071": 0.0703603604, + "32072": 0.0713513514, + "32073": 0.0723423423, + "32074": 0.0733333333, + "32075": 0.0743243243, + "32076": 0.0753153153, + "32077": 0.0763063063, + "32078": 0.0772972973, + "32079": 0.0782882883, + "32080": 0.0792792793, + "32081": 0.0802702703, + "32082": 0.0812612613, + "32083": 0.0822522523, + "32084": 0.0832432432, + "32085": 0.0842342342, + "32086": 0.0852252252, + "32087": 0.0862162162, + "32088": 0.0872072072, + "32089": 0.0881981982, + "32090": 0.0891891892, + "32091": 0.0901801802, + "32092": 0.0911711712, + "32093": 0.0921621622, + "32094": 0.0931531532, + "32095": 0.0941441441, + "32096": 0.0951351351, + "32097": 0.0961261261, + "32098": 0.0971171171, + "32099": 0.0981081081, + "32100": 0.0990990991, + "32101": 0.1000900901, + "32102": 0.1010810811, + "32103": 0.1020720721, + "32104": 0.1030630631, + "32105": 0.1040540541, + "32106": 0.105045045, + "32107": 0.106036036, + "32108": 0.107027027, + "32109": 0.108018018, + "32110": 0.109009009, + "32111": 0.11, + "32112": 0.110990991, + "32113": 0.111981982, + "32114": 0.112972973, + "32115": 0.113963964, + "32116": 0.114954955, + "32117": 0.1159459459, + "32118": 0.1169369369, + "32119": 0.1179279279, + "32120": 0.1189189189, + "32121": 0.1199099099, + "32122": 0.1209009009, + "32123": 0.1218918919, + "32124": 0.1228828829, + "32125": 0.1238738739, + "32126": 0.1248648649, + "32127": 0.1258558559, + "32128": 0.1268468468, + "32129": 0.1278378378, + "32130": 0.1288288288, + "32131": 0.1298198198, + "32132": 0.1308108108, + "32133": 0.1318018018, + "32134": 0.1327927928, + "32135": 0.1337837838, + "32136": 0.1347747748, + "32137": 0.1357657658, + "32138": 0.1367567568, + "32139": 0.1377477477, + "32140": 0.1387387387, + "32141": 0.1397297297, + "32142": 0.1407207207, + "32143": 0.1417117117, + "32144": 0.1427027027, + "32145": 0.1436936937, + "32146": 0.1446846847, + "32147": 0.1456756757, + "32148": 0.1466666667, + "32149": 0.1476576577, + "32150": 0.1486486486, + "32151": 0.1496396396, + "32152": 0.1506306306, + "32153": 0.1516216216, + "32154": 0.1526126126, + "32155": 0.1536036036, + "32156": 0.1545945946, + "32157": 0.1555855856, + "32158": 0.1565765766, + "32159": 0.1575675676, + "32160": 0.1585585586, + "32161": 0.1595495495, + "32162": 0.1605405405, + "32163": 0.1615315315, + "32164": 0.1625225225, + "32165": 0.1635135135, + "32166": 0.1645045045, + "32167": 0.1654954955, + "32168": 0.1664864865, + "32169": 0.1674774775, + "32170": 0.1684684685, + "32171": 0.1694594595, + "32172": 0.1704504505, + "32173": 0.1714414414, + "32174": 0.1724324324, + "32175": 0.1734234234, + "32176": 0.1744144144, + "32177": 0.1754054054, + "32178": 0.1763963964, + "32179": 0.1773873874, + "32180": 0.1783783784, + "32181": 0.1793693694, + "32182": 0.1803603604, + "32183": 0.1813513514, + "32184": 0.1823423423, + "32185": 0.1833333333, + "32186": 0.1843243243, + "32187": 0.1853153153, + "32188": 0.1863063063, + "32189": 0.1872972973, + "32190": 0.1882882883, + "32191": 0.1892792793, + "32192": 0.1902702703, + "32193": 0.1912612613, + "32194": 0.1922522523, + "32195": 0.1932432432, + "32196": 0.1942342342, + "32197": 0.1952252252, + "32198": 0.1962162162, + "32199": 0.1972072072, + "32200": 0.1981981982, + "32201": 0.1991891892, + "32202": 0.2001801802, + "32203": 0.2011711712, + "32204": 0.2021621622, + "32205": 0.2031531532, + "32206": 0.2041441441, + "32207": 0.2051351351, + "32208": 0.2061261261, + "32209": 0.2071171171, + "32210": 0.2081081081, + "32211": 0.2090990991, + "32212": 0.2100900901, + "32213": 0.2110810811, + "32214": 0.2120720721, + "32215": 0.2130630631, + "32216": 0.2140540541, + "32217": 0.215045045, + "32218": 0.216036036, + "32219": 0.217027027, + "32220": 0.218018018, + "32221": 0.219009009, + "32222": 0.22, + "32223": 0.220990991, + "32224": 0.221981982, + "32225": 0.222972973, + "32226": 0.223963964, + "32227": 0.224954955, + "32228": 0.2259459459, + "32229": 0.2269369369, + "32230": 0.2279279279, + "32231": 0.2289189189, + "32232": 0.2299099099, + "32233": 0.2309009009, + "32234": 0.2318918919, + "32235": 0.2328828829, + "32236": 0.2338738739, + "32237": 0.2348648649, + "32238": 0.2358558559, + "32239": 0.2368468468, + "32240": 0.2378378378, + "32241": 0.2388288288, + "32242": 0.2398198198, + "32243": 0.2408108108, + "32244": 0.2418018018, + "32245": 0.2427927928, + "32246": 0.2437837838, + "32247": 0.2447747748, + "32248": 0.2457657658, + "32249": 0.2467567568, + "32250": 0.2477477477, + "32251": 0.2487387387, + "32252": 0.2497297297, + "32253": 0.2507207207, + "32254": 0.2517117117, + "32255": 0.2527027027, + "32256": 0.2536936937, + "32257": 0.2546846847, + "32258": 0.2556756757, + "32259": 0.2566666667, + "32260": 0.2576576577, + "32261": 0.2586486486, + "32262": 0.2596396396, + "32263": 0.2606306306, + "32264": 0.2616216216, + "32265": 0.2626126126, + "32266": 0.2636036036, + "32267": 0.2645945946, + "32268": 0.2655855856, + "32269": 0.2665765766, + "32270": 0.2675675676, + "32271": 0.2685585586, + "32272": 0.2695495495, + "32273": 0.2705405405, + "32274": 0.2715315315, + "32275": 0.2725225225, + "32276": 0.2735135135, + "32277": 0.2745045045, + "32278": 0.2754954955, + "32279": 0.2764864865, + "32280": 0.2774774775, + "32281": 0.2784684685, + "32282": 0.2794594595, + "32283": 0.2804504505, + "32284": 0.2814414414, + "32285": 0.2824324324, + "32286": 0.2834234234, + "32287": 0.2844144144, + "32288": 0.2854054054, + "32289": 0.2863963964, + "32290": 0.2873873874, + "32291": 0.2883783784, + "32292": 0.2893693694, + "32293": 0.2903603604, + "32294": 0.2913513514, + "32295": 0.2923423423, + "32296": 0.2933333333, + "32297": 0.2943243243, + "32298": 0.2953153153, + "32299": 0.2963063063, + "32300": 0.2972972973, + "32301": 0.2982882883, + "32302": 0.2992792793, + "32303": 0.3002702703, + "32304": 0.3012612613, + "32305": 0.3022522523, + "32306": 0.3032432432, + "32307": 0.3042342342, + "32308": 0.3052252252, + "32309": 0.3062162162, + "32310": 0.3072072072, + "32311": 0.3081981982, + "32312": 0.3091891892, + "32313": 0.3101801802, + "32314": 0.3111711712, + "32315": 0.3121621622, + "32316": 0.3131531532, + "32317": 0.3141441441, + "32318": 0.3151351351, + "32319": 0.3161261261, + "32320": 0.3171171171, + "32321": 0.3181081081, + "32322": 0.3190990991, + "32323": 0.3200900901, + "32324": 0.3210810811, + "32325": 0.3220720721, + "32326": 0.3230630631, + "32327": 0.3240540541, + "32328": 0.325045045, + "32329": 0.326036036, + "32330": 0.327027027, + "32331": 0.328018018, + "32332": 0.329009009, + "32333": 0.33, + "32334": 0.330990991, + "32335": 0.331981982, + "32336": 0.332972973, + "32337": 0.333963964, + "32338": 0.334954955, + "32339": 0.3359459459, + "32340": 0.3369369369, + "32341": 0.3379279279, + "32342": 0.3389189189, + "32343": 0.3399099099, + "32344": 0.3409009009, + "32345": 0.3418918919, + "32346": 0.3428828829, + "32347": 0.3438738739, + "32348": 0.3448648649, + "32349": 0.3458558559, + "32350": 0.3468468468, + "32351": 0.3478378378, + "32352": 0.3488288288, + "32353": 0.3498198198, + "32354": 0.3508108108, + "32355": 0.3518018018, + "32356": 0.3527927928, + "32357": 0.3537837838, + "32358": 0.3547747748, + "32359": 0.3557657658, + "32360": 0.3567567568, + "32361": 0.3577477477, + "32362": 0.3587387387, + "32363": 0.3597297297, + "32364": 0.3607207207, + "32365": 0.3617117117, + "32366": 0.3627027027, + "32367": 0.3636936937, + "32368": 0.3646846847, + "32369": 0.3656756757, + "32370": 0.3666666667, + "32371": 0.3676576577, + "32372": 0.3686486486, + "32373": 0.3696396396, + "32374": 0.3706306306, + "32375": 0.3716216216, + "32376": 0.3726126126, + "32377": 0.3736036036, + "32378": 0.3745945946, + "32379": 0.3755855856, + "32380": 0.3765765766, + "32381": 0.3775675676, + "32382": 0.3785585586, + "32383": 0.3795495495, + "32384": 0.3805405405, + "32385": 0.3815315315, + "32386": 0.3825225225, + "32387": 0.3835135135, + "32388": 0.3845045045, + "32389": 0.3854954955, + "32390": 0.3864864865, + "32391": 0.3874774775, + "32392": 0.3884684685, + "32393": 0.3894594595, + "32394": 0.3904504505, + "32395": 0.3914414414, + "32396": 0.3924324324, + "32397": 0.3934234234, + "32398": 0.3944144144, + "32399": 0.3954054054, + "32400": 0.3963963964, + "32401": 0.3973873874, + "32402": 0.3983783784, + "32403": 0.3993693694, + "32404": 0.4003603604, + "32405": 0.4013513514, + "32406": 0.4023423423, + "32407": 0.4033333333, + "32408": 0.4043243243, + "32409": 0.4053153153, + "32410": 0.4063063063, + "32411": 0.4072972973, + "32412": 0.4082882883, + "32413": 0.4092792793, + "32414": 0.4102702703, + "32415": 0.4112612613, + "32416": 0.4122522523, + "32417": 0.4132432432, + "32418": 0.4142342342, + "32419": 0.4152252252, + "32420": 0.4162162162, + "32421": 0.4172072072, + "32422": 0.4181981982, + "32423": 0.4191891892, + "32424": 0.4201801802, + "32425": 0.4211711712, + "32426": 0.4221621622, + "32427": 0.4231531532, + "32428": 0.4241441441, + "32429": 0.4251351351, + "32430": 0.4261261261, + "32431": 0.4271171171, + "32432": 0.4281081081, + "32433": 0.4290990991, + "32434": 0.4300900901, + "32435": 0.4310810811, + "32436": 0.4320720721, + "32437": 0.4330630631, + "32438": 0.4340540541, + "32439": 0.435045045, + "32440": 0.436036036, + "32441": 0.437027027, + "32442": 0.438018018, + "32443": 0.439009009, + "32444": 0.44, + "32445": 0.440990991, + "32446": 0.441981982, + "32447": 0.442972973, + "32448": 0.443963964, + "32449": 0.444954955, + "32450": 0.4459459459, + "32451": 0.4469369369, + "32452": 0.4479279279, + "32453": 0.4489189189, + "32454": 0.4499099099, + "32455": 0.4509009009, + "32456": 0.4518918919, + "32457": 0.4528828829, + "32458": 0.4538738739, + "32459": 0.4548648649, + "32460": 0.4558558559, + "32461": 0.4568468468, + "32462": 0.4578378378, + "32463": 0.4588288288, + "32464": 0.4598198198, + "32465": 0.4608108108, + "32466": 0.4618018018, + "32467": 0.4627927928, + "32468": 0.4637837838, + "32469": 0.4647747748, + "32470": 0.4657657658, + "32471": 0.4667567568, + "32472": 0.4677477477, + "32473": 0.4687387387, + "32474": 0.4697297297, + "32475": 0.4707207207, + "32476": 0.4717117117, + "32477": 0.4727027027, + "32478": 0.4736936937, + "32479": 0.4746846847, + "32480": 0.4756756757, + "32481": 0.4766666667, + "32482": 0.4776576577, + "32483": 0.4786486486, + "32484": 0.4796396396, + "32485": 0.4806306306, + "32486": 0.4816216216, + "32487": 0.4826126126, + "32488": 0.4836036036, + "32489": 0.4845945946, + "32490": 0.4855855856, + "32491": 0.4865765766, + "32492": 0.4875675676, + "32493": 0.4885585586, + "32494": 0.4895495495, + "32495": 0.4905405405, + "32496": 0.4915315315, + "32497": 0.4925225225, + "32498": 0.4935135135, + "32499": 0.4945045045, + "32500": 0.4954954955, + "32501": 0.4964864865, + "32502": 0.4974774775, + "32503": 0.4984684685, + "32504": 0.4994594595, + "32505": 0.5004504505, + "32506": 0.5014414414, + "32507": 0.5024324324, + "32508": 0.5034234234, + "32509": 0.5044144144, + "32510": 0.5054054054, + "32511": 0.5063963964, + "32512": 0.5073873874, + "32513": 0.5083783784, + "32514": 0.5093693694, + "32515": 0.5103603604, + "32516": 0.5113513514, + "32517": 0.5123423423, + "32518": 0.5133333333, + "32519": 0.5143243243, + "32520": 0.5153153153, + "32521": 0.5163063063, + "32522": 0.5172972973, + "32523": 0.5182882883, + "32524": 0.5192792793, + "32525": 0.5202702703, + "32526": 0.5212612613, + "32527": 0.5222522523, + "32528": 0.5232432432, + "32529": 0.5242342342, + "32530": 0.5252252252, + "32531": 0.5262162162, + "32532": 0.5272072072, + "32533": 0.5281981982, + "32534": 0.5291891892, + "32535": 0.5301801802, + "32536": 0.5311711712, + "32537": 0.5321621622, + "32538": 0.5331531532, + "32539": 0.5341441441, + "32540": 0.5351351351, + "32541": 0.5361261261, + "32542": 0.5371171171, + "32543": 0.5381081081, + "32544": 0.5390990991, + "32545": 0.5400900901, + "32546": 0.5410810811, + "32547": 0.5420720721, + "32548": 0.5430630631, + "32549": 0.5440540541, + "32550": 0.545045045, + "32551": 0.546036036, + "32552": 0.547027027, + "32553": 0.548018018, + "32554": 0.549009009, + "32555": 0.55, + "32556": 0.550990991, + "32557": 0.551981982, + "32558": 0.552972973, + "32559": 0.553963964, + "32560": 0.554954955, + "32561": 0.5559459459, + "32562": 0.5569369369, + "32563": 0.5579279279, + "32564": 0.5589189189, + "32565": 0.5599099099, + "32566": 0.5609009009, + "32567": 0.5618918919, + "32568": 0.5628828829, + "32569": 0.5638738739, + "32570": 0.5648648649, + "32571": 0.5658558559, + "32572": 0.5668468468, + "32573": 0.5678378378, + "32574": 0.5688288288, + "32575": 0.5698198198, + "32576": 0.5708108108, + "32577": 0.5718018018, + "32578": 0.5727927928, + "32579": 0.5737837838, + "32580": 0.5747747748, + "32581": 0.5757657658, + "32582": 0.5767567568, + "32583": 0.5777477477, + "32584": 0.5787387387, + "32585": 0.5797297297, + "32586": 0.5807207207, + "32587": 0.5817117117, + "32588": 0.5827027027, + "32589": 0.5836936937, + "32590": 0.5846846847, + "32591": 0.5856756757, + "32592": 0.5866666667, + "32593": 0.5876576577, + "32594": 0.5886486486, + "32595": 0.5896396396, + "32596": 0.5906306306, + "32597": 0.5916216216, + "32598": 0.5926126126, + "32599": 0.5936036036, + "32600": 0.5945945946, + "32601": 0.5955855856, + "32602": 0.5965765766, + "32603": 0.5975675676, + "32604": 0.5985585586, + "32605": 0.5995495495, + "32606": 0.6005405405, + "32607": 0.6015315315, + "32608": 0.6025225225, + "32609": 0.6035135135, + "32610": 0.6045045045, + "32611": 0.6054954955, + "32612": 0.6064864865, + "32613": 0.6074774775, + "32614": 0.6084684685, + "32615": 0.6094594595, + "32616": 0.6104504505, + "32617": 0.6114414414, + "32618": 0.6124324324, + "32619": 0.6134234234, + "32620": 0.6144144144, + "32621": 0.6154054054, + "32622": 0.6163963964, + "32623": 0.6173873874, + "32624": 0.6183783784, + "32625": 0.6193693694, + "32626": 0.6203603604, + "32627": 0.6213513514, + "32628": 0.6223423423, + "32629": 0.6233333333, + "32630": 0.6243243243, + "32631": 0.6253153153, + "32632": 0.6263063063, + "32633": 0.6272972973, + "32634": 0.6282882883, + "32635": 0.6292792793, + "32636": 0.6302702703, + "32637": 0.6312612613, + "32638": 0.6322522523, + "32639": 0.6332432432, + "32640": 0.6342342342, + "32641": 0.6352252252, + "32642": 0.6362162162, + "32643": 0.6372072072, + "32644": 0.6381981982, + "32645": 0.6391891892, + "32646": 0.6401801802, + "32647": 0.6411711712, + "32648": 0.6421621622, + "32649": 0.6431531532, + "32650": 0.6441441441, + "32651": 0.6451351351, + "32652": 0.6461261261, + "32653": 0.6471171171, + "32654": 0.6481081081, + "32655": 0.6490990991, + "32656": 0.6500900901, + "32657": 0.6510810811, + "32658": 0.6520720721, + "32659": 0.6530630631, + "32660": 0.6540540541, + "32661": 0.655045045, + "32662": 0.656036036, + "32663": 0.657027027, + "32664": 0.658018018, + "32665": 0.659009009, + "32666": 0.66, + "32667": 0.660990991, + "32668": 0.661981982, + "32669": 0.662972973, + "32670": 0.663963964, + "32671": 0.664954955, + "32672": 0.6659459459, + "32673": 0.6669369369, + "32674": 0.6679279279, + "32675": 0.6689189189, + "32676": 0.6699099099, + "32677": 0.6709009009, + "32678": 0.6718918919, + "32679": 0.6728828829, + "32680": 0.6738738739, + "32681": 0.6748648649, + "32682": 0.6758558559, + "32683": 0.6768468468, + "32684": 0.6778378378, + "32685": 0.6788288288, + "32686": 0.6798198198, + "32687": 0.6808108108, + "32688": 0.6818018018, + "32689": 0.6827927928, + "32690": 0.6837837838, + "32691": 0.6847747748, + "32692": 0.6857657658, + "32693": 0.6867567568, + "32694": 0.6877477477, + "32695": 0.6887387387, + "32696": 0.6897297297, + "32697": 0.6907207207, + "32698": 0.6917117117, + "32699": 0.6927027027, + "32700": 0.6936936937, + "32701": 0.6946846847, + "32702": 0.6956756757, + "32703": 0.6966666667, + "32704": 0.6976576577, + "32705": 0.6986486486, + "32706": 0.6996396396, + "32707": 0.7006306306, + "32708": 0.7016216216, + "32709": 0.7026126126, + "32710": 0.7036036036, + "32711": 0.7045945946, + "32712": 0.7055855856, + "32713": 0.7065765766, + "32714": 0.7075675676, + "32715": 0.7085585586, + "32716": 0.7095495495, + "32717": 0.7105405405, + "32718": 0.7115315315, + "32719": 0.7125225225, + "32720": 0.7135135135, + "32721": 0.7145045045, + "32722": 0.7154954955, + "32723": 0.7164864865, + "32724": 0.7174774775, + "32725": 0.7184684685, + "32726": 0.7194594595, + "32727": 0.7204504505, + "32728": 0.7214414414, + "32729": 0.7224324324, + "32730": 0.7234234234, + "32731": 0.7244144144, + "32732": 0.7254054054, + "32733": 0.7263963964, + "32734": 0.7273873874, + "32735": 0.7283783784, + "32736": 0.7293693694, + "32737": 0.7303603604, + "32738": 0.7313513514, + "32739": 0.7323423423, + "32740": 0.7333333333, + "32741": 0.7343243243, + "32742": 0.7353153153, + "32743": 0.7363063063, + "32744": 0.7372972973, + "32745": 0.7382882883, + "32746": 0.7392792793, + "32747": 0.7402702703, + "32748": 0.7412612613, + "32749": 0.7422522523, + "32750": 0.7432432432, + "32751": 0.7442342342, + "32752": 0.7452252252, + "32753": 0.7462162162, + "32754": 0.7472072072, + "32755": 0.7481981982, + "32756": 0.7491891892, + "32757": 0.7501801802, + "32758": 0.7511711712, + "32759": 0.7521621622, + "32760": 0.7531531532, + "32761": 0.7541441441, + "32762": 0.7551351351, + "32763": 0.7561261261, + "32764": 0.7571171171, + "32765": 0.7581081081, + "32766": 0.7590990991, + "32767": 0.7600900901, + "32768": 0.7610810811, + "32769": 0.7620720721, + "32770": 0.7630630631, + "32771": 0.7640540541, + "32772": 0.765045045, + "32773": 0.766036036, + "32774": 0.767027027, + "32775": 0.768018018, + "32776": 0.769009009, + "32777": 0.77, + "32778": 0.770990991, + "32779": 0.771981982, + "32780": 0.772972973, + "32781": 0.773963964, + "32782": 0.774954955, + "32783": 0.7759459459, + "32784": 0.7769369369, + "32785": 0.7779279279, + "32786": 0.7789189189, + "32787": 0.7799099099, + "32788": 0.7809009009, + "32789": 0.7818918919, + "32790": 0.7828828829, + "32791": 0.7838738739, + "32792": 0.7848648649, + "32793": 0.7858558559, + "32794": 0.7868468468, + "32795": 0.7878378378, + "32796": 0.7888288288, + "32797": 0.7898198198, + "32798": 0.7908108108, + "32799": 0.7918018018, + "32800": 0.7927927928, + "32801": 0.7937837838, + "32802": 0.7947747748, + "32803": 0.7957657658, + "32804": 0.7967567568, + "32805": 0.7977477477, + "32806": 0.7987387387, + "32807": 0.7997297297, + "32808": 0.8007207207, + "32809": 0.8017117117, + "32810": 0.8027027027, + "32811": 0.8036936937, + "32812": 0.8046846847, + "32813": 0.8056756757, + "32814": 0.8066666667, + "32815": 0.8076576577, + "32816": 0.8086486486, + "32817": 0.8096396396, + "32818": 0.8106306306, + "32819": 0.8116216216, + "32820": 0.8126126126, + "32821": 0.8136036036, + "32822": 0.8145945946, + "32823": 0.8155855856, + "32824": 0.8165765766, + "32825": 0.8175675676, + "32826": 0.8185585586, + "32827": 0.8195495495, + "32828": 0.8205405405, + "32829": 0.8215315315, + "32830": 0.8225225225, + "32831": 0.8235135135, + "32832": 0.8245045045, + "32833": 0.8254954955, + "32834": 0.8264864865, + "32835": 0.8274774775, + "32836": 0.8284684685, + "32837": 0.8294594595, + "32838": 0.8304504505, + "32839": 0.8314414414, + "32840": 0.8324324324, + "32841": 0.8334234234, + "32842": 0.8344144144, + "32843": 0.8354054054, + "32844": 0.8363963964, + "32845": 0.8373873874, + "32846": 0.8383783784, + "32847": 0.8393693694, + "32848": 0.8403603604, + "32849": 0.8413513514, + "32850": 0.8423423423, + "32851": 0.8433333333, + "32852": 0.8443243243, + "32853": 0.8453153153, + "32854": 0.8463063063, + "32855": 0.8472972973, + "32856": 0.8482882883, + "32857": 0.8492792793, + "32858": 0.8502702703, + "32859": 0.8512612613, + "32860": 0.8522522523, + "32861": 0.8532432432, + "32862": 0.8542342342, + "32863": 0.8552252252, + "32864": 0.8562162162, + "32865": 0.8572072072, + "32866": 0.8581981982, + "32867": 0.8591891892, + "32868": 0.8601801802, + "32869": 0.8611711712, + "32870": 0.8621621622, + "32871": 0.8631531532, + "32872": 0.8641441441, + "32873": 0.8651351351, + "32874": 0.8661261261, + "32875": 0.8671171171, + "32876": 0.8681081081, + "32877": 0.8690990991, + "32878": 0.8700900901, + "32879": 0.8710810811, + "32880": 0.8720720721, + "32881": 0.8730630631, + "32882": 0.8740540541, + "32883": 0.875045045, + "32884": 0.876036036, + "32885": 0.877027027, + "32886": 0.878018018, + "32887": 0.879009009, + "32888": 0.88, + "32889": 0.880990991, + "32890": 0.881981982, + "32891": 0.882972973, + "32892": 0.883963964, + "32893": 0.884954955, + "32894": 0.8859459459, + "32895": 0.8869369369, + "32896": 0.8879279279, + "32897": 0.8889189189, + "32898": 0.8899099099, + "32899": 0.8909009009, + "32900": 0.8918918919, + "32901": 0.8928828829, + "32902": 0.8938738739, + "32903": 0.8948648649, + "32904": 0.8958558559, + "32905": 0.8968468468, + "32906": 0.8978378378, + "32907": 0.8988288288, + "32908": 0.8998198198, + "32909": 0.9008108108, + "32910": 0.9018018018, + "32911": 0.9027927928, + "32912": 0.9037837838, + "32913": 0.9047747748, + "32914": 0.9057657658, + "32915": 0.9067567568, + "32916": 0.9077477477, + "32917": 0.9087387387, + "32918": 0.9097297297, + "32919": 0.9107207207, + "32920": 0.9117117117, + "32921": 0.9127027027, + "32922": 0.9136936937, + "32923": 0.9146846847, + "32924": 0.9156756757, + "32925": 0.9166666667, + "32926": 0.9176576577, + "32927": 0.9186486486, + "32928": 0.9196396396, + "32929": 0.9206306306, + "32930": 0.9216216216, + "32931": 0.9226126126, + "32932": 0.9236036036, + "32933": 0.9245945946, + "32934": 0.9255855856, + "32935": 0.9265765766, + "32936": 0.9275675676, + "32937": 0.9285585586, + "32938": 0.9295495495, + "32939": 0.9305405405, + "32940": 0.9315315315, + "32941": 0.9325225225, + "32942": 0.9335135135, + "32943": 0.9345045045, + "32944": 0.9354954955, + "32945": 0.9364864865, + "32946": 0.9374774775, + "32947": 0.9384684685, + "32948": 0.9394594595, + "32949": 0.9404504505, + "32950": 0.9414414414, + "32951": 0.9424324324, + "32952": 0.9434234234, + "32953": 0.9444144144, + "32954": 0.9454054054, + "32955": 0.9463963964, + "32956": 0.9473873874, + "32957": 0.9483783784, + "32958": 0.9493693694, + "32959": 0.9503603604, + "32960": 0.9513513514, + "32961": 0.9523423423, + "32962": 0.9533333333, + "32963": 0.9543243243, + "32964": 0.9553153153, + "32965": 0.9563063063, + "32966": 0.9572972973, + "32967": 0.9582882883, + "32968": 0.9592792793, + "32969": 0.9602702703, + "32970": 0.9612612613, + "32971": 0.9622522523, + "32972": 0.9632432432, + "32973": 0.9642342342, + "32974": 0.9652252252, + "32975": 0.9662162162, + "32976": 0.9672072072, + "32977": 0.9681981982, + "32978": 0.9691891892, + "32979": 0.9701801802, + "32980": 0.9711711712, + "32981": 0.9721621622, + "32982": 0.9731531532, + "32983": 0.9741441441, + "32984": 0.9751351351, + "32985": 0.9761261261, + "32986": 0.9771171171, + "32987": 0.9781081081, + "32988": 0.9790990991, + "32989": 0.9800900901, + "32990": 0.9810810811, + "32991": 0.9820720721, + "32992": 0.9830630631, + "32993": 0.9840540541, + "32994": 0.985045045, + "32995": 0.986036036, + "32996": 0.987027027, + "32997": 0.988018018, + "32998": 0.989009009, + "32999": 0.99, + "33000": 0.0, + "33001": 0.000990991, + "33002": 0.001981982, + "33003": 0.002972973, + "33004": 0.003963964, + "33005": 0.004954955, + "33006": 0.0059459459, + "33007": 0.0069369369, + "33008": 0.0079279279, + "33009": 0.0089189189, + "33010": 0.0099099099, + "33011": 0.0109009009, + "33012": 0.0118918919, + "33013": 0.0128828829, + "33014": 0.0138738739, + "33015": 0.0148648649, + "33016": 0.0158558559, + "33017": 0.0168468468, + "33018": 0.0178378378, + "33019": 0.0188288288, + "33020": 0.0198198198, + "33021": 0.0208108108, + "33022": 0.0218018018, + "33023": 0.0227927928, + "33024": 0.0237837838, + "33025": 0.0247747748, + "33026": 0.0257657658, + "33027": 0.0267567568, + "33028": 0.0277477477, + "33029": 0.0287387387, + "33030": 0.0297297297, + "33031": 0.0307207207, + "33032": 0.0317117117, + "33033": 0.0327027027, + "33034": 0.0336936937, + "33035": 0.0346846847, + "33036": 0.0356756757, + "33037": 0.0366666667, + "33038": 0.0376576577, + "33039": 0.0386486486, + "33040": 0.0396396396, + "33041": 0.0406306306, + "33042": 0.0416216216, + "33043": 0.0426126126, + "33044": 0.0436036036, + "33045": 0.0445945946, + "33046": 0.0455855856, + "33047": 0.0465765766, + "33048": 0.0475675676, + "33049": 0.0485585586, + "33050": 0.0495495495, + "33051": 0.0505405405, + "33052": 0.0515315315, + "33053": 0.0525225225, + "33054": 0.0535135135, + "33055": 0.0545045045, + "33056": 0.0554954955, + "33057": 0.0564864865, + "33058": 0.0574774775, + "33059": 0.0584684685, + "33060": 0.0594594595, + "33061": 0.0604504505, + "33062": 0.0614414414, + "33063": 0.0624324324, + "33064": 0.0634234234, + "33065": 0.0644144144, + "33066": 0.0654054054, + "33067": 0.0663963964, + "33068": 0.0673873874, + "33069": 0.0683783784, + "33070": 0.0693693694, + "33071": 0.0703603604, + "33072": 0.0713513514, + "33073": 0.0723423423, + "33074": 0.0733333333, + "33075": 0.0743243243, + "33076": 0.0753153153, + "33077": 0.0763063063, + "33078": 0.0772972973, + "33079": 0.0782882883, + "33080": 0.0792792793, + "33081": 0.0802702703, + "33082": 0.0812612613, + "33083": 0.0822522523, + "33084": 0.0832432432, + "33085": 0.0842342342, + "33086": 0.0852252252, + "33087": 0.0862162162, + "33088": 0.0872072072, + "33089": 0.0881981982, + "33090": 0.0891891892, + "33091": 0.0901801802, + "33092": 0.0911711712, + "33093": 0.0921621622, + "33094": 0.0931531532, + "33095": 0.0941441441, + "33096": 0.0951351351, + "33097": 0.0961261261, + "33098": 0.0971171171, + "33099": 0.0981081081, + "33100": 0.0990990991, + "33101": 0.1000900901, + "33102": 0.1010810811, + "33103": 0.1020720721, + "33104": 0.1030630631, + "33105": 0.1040540541, + "33106": 0.105045045, + "33107": 0.106036036, + "33108": 0.107027027, + "33109": 0.108018018, + "33110": 0.109009009, + "33111": 0.11, + "33112": 0.110990991, + "33113": 0.111981982, + "33114": 0.112972973, + "33115": 0.113963964, + "33116": 0.114954955, + "33117": 0.1159459459, + "33118": 0.1169369369, + "33119": 0.1179279279, + "33120": 0.1189189189, + "33121": 0.1199099099, + "33122": 0.1209009009, + "33123": 0.1218918919, + "33124": 0.1228828829, + "33125": 0.1238738739, + "33126": 0.1248648649, + "33127": 0.1258558559, + "33128": 0.1268468468, + "33129": 0.1278378378, + "33130": 0.1288288288, + "33131": 0.1298198198, + "33132": 0.1308108108, + "33133": 0.1318018018, + "33134": 0.1327927928, + "33135": 0.1337837838, + "33136": 0.1347747748, + "33137": 0.1357657658, + "33138": 0.1367567568, + "33139": 0.1377477477, + "33140": 0.1387387387, + "33141": 0.1397297297, + "33142": 0.1407207207, + "33143": 0.1417117117, + "33144": 0.1427027027, + "33145": 0.1436936937, + "33146": 0.1446846847, + "33147": 0.1456756757, + "33148": 0.1466666667, + "33149": 0.1476576577, + "33150": 0.1486486486, + "33151": 0.1496396396, + "33152": 0.1506306306, + "33153": 0.1516216216, + "33154": 0.1526126126, + "33155": 0.1536036036, + "33156": 0.1545945946, + "33157": 0.1555855856, + "33158": 0.1565765766, + "33159": 0.1575675676, + "33160": 0.1585585586, + "33161": 0.1595495495, + "33162": 0.1605405405, + "33163": 0.1615315315, + "33164": 0.1625225225, + "33165": 0.1635135135, + "33166": 0.1645045045, + "33167": 0.1654954955, + "33168": 0.1664864865, + "33169": 0.1674774775, + "33170": 0.1684684685, + "33171": 0.1694594595, + "33172": 0.1704504505, + "33173": 0.1714414414, + "33174": 0.1724324324, + "33175": 0.1734234234, + "33176": 0.1744144144, + "33177": 0.1754054054, + "33178": 0.1763963964, + "33179": 0.1773873874, + "33180": 0.1783783784, + "33181": 0.1793693694, + "33182": 0.1803603604, + "33183": 0.1813513514, + "33184": 0.1823423423, + "33185": 0.1833333333, + "33186": 0.1843243243, + "33187": 0.1853153153, + "33188": 0.1863063063, + "33189": 0.1872972973, + "33190": 0.1882882883, + "33191": 0.1892792793, + "33192": 0.1902702703, + "33193": 0.1912612613, + "33194": 0.1922522523, + "33195": 0.1932432432, + "33196": 0.1942342342, + "33197": 0.1952252252, + "33198": 0.1962162162, + "33199": 0.1972072072, + "33200": 0.1981981982, + "33201": 0.1991891892, + "33202": 0.2001801802, + "33203": 0.2011711712, + "33204": 0.2021621622, + "33205": 0.2031531532, + "33206": 0.2041441441, + "33207": 0.2051351351, + "33208": 0.2061261261, + "33209": 0.2071171171, + "33210": 0.2081081081, + "33211": 0.2090990991, + "33212": 0.2100900901, + "33213": 0.2110810811, + "33214": 0.2120720721, + "33215": 0.2130630631, + "33216": 0.2140540541, + "33217": 0.215045045, + "33218": 0.216036036, + "33219": 0.217027027, + "33220": 0.218018018, + "33221": 0.219009009, + "33222": 0.22, + "33223": 0.220990991, + "33224": 0.221981982, + "33225": 0.222972973, + "33226": 0.223963964, + "33227": 0.224954955, + "33228": 0.2259459459, + "33229": 0.2269369369, + "33230": 0.2279279279, + "33231": 0.2289189189, + "33232": 0.2299099099, + "33233": 0.2309009009, + "33234": 0.2318918919, + "33235": 0.2328828829, + "33236": 0.2338738739, + "33237": 0.2348648649, + "33238": 0.2358558559, + "33239": 0.2368468468, + "33240": 0.2378378378, + "33241": 0.2388288288, + "33242": 0.2398198198, + "33243": 0.2408108108, + "33244": 0.2418018018, + "33245": 0.2427927928, + "33246": 0.2437837838, + "33247": 0.2447747748, + "33248": 0.2457657658, + "33249": 0.2467567568, + "33250": 0.2477477477, + "33251": 0.2487387387, + "33252": 0.2497297297, + "33253": 0.2507207207, + "33254": 0.2517117117, + "33255": 0.2527027027, + "33256": 0.2536936937, + "33257": 0.2546846847, + "33258": 0.2556756757, + "33259": 0.2566666667, + "33260": 0.2576576577, + "33261": 0.2586486486, + "33262": 0.2596396396, + "33263": 0.2606306306, + "33264": 0.2616216216, + "33265": 0.2626126126, + "33266": 0.2636036036, + "33267": 0.2645945946, + "33268": 0.2655855856, + "33269": 0.2665765766, + "33270": 0.2675675676, + "33271": 0.2685585586, + "33272": 0.2695495495, + "33273": 0.2705405405, + "33274": 0.2715315315, + "33275": 0.2725225225, + "33276": 0.2735135135, + "33277": 0.2745045045, + "33278": 0.2754954955, + "33279": 0.2764864865, + "33280": 0.2774774775, + "33281": 0.2784684685, + "33282": 0.2794594595, + "33283": 0.2804504505, + "33284": 0.2814414414, + "33285": 0.2824324324, + "33286": 0.2834234234, + "33287": 0.2844144144, + "33288": 0.2854054054, + "33289": 0.2863963964, + "33290": 0.2873873874, + "33291": 0.2883783784, + "33292": 0.2893693694, + "33293": 0.2903603604, + "33294": 0.2913513514, + "33295": 0.2923423423, + "33296": 0.2933333333, + "33297": 0.2943243243, + "33298": 0.2953153153, + "33299": 0.2963063063, + "33300": 0.2972972973, + "33301": 0.2982882883, + "33302": 0.2992792793, + "33303": 0.3002702703, + "33304": 0.3012612613, + "33305": 0.3022522523, + "33306": 0.3032432432, + "33307": 0.3042342342, + "33308": 0.3052252252, + "33309": 0.3062162162, + "33310": 0.3072072072, + "33311": 0.3081981982, + "33312": 0.3091891892, + "33313": 0.3101801802, + "33314": 0.3111711712, + "33315": 0.3121621622, + "33316": 0.3131531532, + "33317": 0.3141441441, + "33318": 0.3151351351, + "33319": 0.3161261261, + "33320": 0.3171171171, + "33321": 0.3181081081, + "33322": 0.3190990991, + "33323": 0.3200900901, + "33324": 0.3210810811, + "33325": 0.3220720721, + "33326": 0.3230630631, + "33327": 0.3240540541, + "33328": 0.325045045, + "33329": 0.326036036, + "33330": 0.327027027, + "33331": 0.328018018, + "33332": 0.329009009, + "33333": 0.33, + "33334": 0.330990991, + "33335": 0.331981982, + "33336": 0.332972973, + "33337": 0.333963964, + "33338": 0.334954955, + "33339": 0.3359459459, + "33340": 0.3369369369, + "33341": 0.3379279279, + "33342": 0.3389189189, + "33343": 0.3399099099, + "33344": 0.3409009009, + "33345": 0.3418918919, + "33346": 0.3428828829, + "33347": 0.3438738739, + "33348": 0.3448648649, + "33349": 0.3458558559, + "33350": 0.3468468468, + "33351": 0.3478378378, + "33352": 0.3488288288, + "33353": 0.3498198198, + "33354": 0.3508108108, + "33355": 0.3518018018, + "33356": 0.3527927928, + "33357": 0.3537837838, + "33358": 0.3547747748, + "33359": 0.3557657658, + "33360": 0.3567567568, + "33361": 0.3577477477, + "33362": 0.3587387387, + "33363": 0.3597297297, + "33364": 0.3607207207, + "33365": 0.3617117117, + "33366": 0.3627027027, + "33367": 0.3636936937, + "33368": 0.3646846847, + "33369": 0.3656756757, + "33370": 0.3666666667, + "33371": 0.3676576577, + "33372": 0.3686486486, + "33373": 0.3696396396, + "33374": 0.3706306306, + "33375": 0.3716216216, + "33376": 0.3726126126, + "33377": 0.3736036036, + "33378": 0.3745945946, + "33379": 0.3755855856, + "33380": 0.3765765766, + "33381": 0.3775675676, + "33382": 0.3785585586, + "33383": 0.3795495495, + "33384": 0.3805405405, + "33385": 0.3815315315, + "33386": 0.3825225225, + "33387": 0.3835135135, + "33388": 0.3845045045, + "33389": 0.3854954955, + "33390": 0.3864864865, + "33391": 0.3874774775, + "33392": 0.3884684685, + "33393": 0.3894594595, + "33394": 0.3904504505, + "33395": 0.3914414414, + "33396": 0.3924324324, + "33397": 0.3934234234, + "33398": 0.3944144144, + "33399": 0.3954054054, + "33400": 0.3963963964, + "33401": 0.3973873874, + "33402": 0.3983783784, + "33403": 0.3993693694, + "33404": 0.4003603604, + "33405": 0.4013513514, + "33406": 0.4023423423, + "33407": 0.4033333333, + "33408": 0.4043243243, + "33409": 0.4053153153, + "33410": 0.4063063063, + "33411": 0.4072972973, + "33412": 0.4082882883, + "33413": 0.4092792793, + "33414": 0.4102702703, + "33415": 0.4112612613, + "33416": 0.4122522523, + "33417": 0.4132432432, + "33418": 0.4142342342, + "33419": 0.4152252252, + "33420": 0.4162162162, + "33421": 0.4172072072, + "33422": 0.4181981982, + "33423": 0.4191891892, + "33424": 0.4201801802, + "33425": 0.4211711712, + "33426": 0.4221621622, + "33427": 0.4231531532, + "33428": 0.4241441441, + "33429": 0.4251351351, + "33430": 0.4261261261, + "33431": 0.4271171171, + "33432": 0.4281081081, + "33433": 0.4290990991, + "33434": 0.4300900901, + "33435": 0.4310810811, + "33436": 0.4320720721, + "33437": 0.4330630631, + "33438": 0.4340540541, + "33439": 0.435045045, + "33440": 0.436036036, + "33441": 0.437027027, + "33442": 0.438018018, + "33443": 0.439009009, + "33444": 0.44, + "33445": 0.440990991, + "33446": 0.441981982, + "33447": 0.442972973, + "33448": 0.443963964, + "33449": 0.444954955, + "33450": 0.4459459459, + "33451": 0.4469369369, + "33452": 0.4479279279, + "33453": 0.4489189189, + "33454": 0.4499099099, + "33455": 0.4509009009, + "33456": 0.4518918919, + "33457": 0.4528828829, + "33458": 0.4538738739, + "33459": 0.4548648649, + "33460": 0.4558558559, + "33461": 0.4568468468, + "33462": 0.4578378378, + "33463": 0.4588288288, + "33464": 0.4598198198, + "33465": 0.4608108108, + "33466": 0.4618018018, + "33467": 0.4627927928, + "33468": 0.4637837838, + "33469": 0.4647747748, + "33470": 0.4657657658, + "33471": 0.4667567568, + "33472": 0.4677477477, + "33473": 0.4687387387, + "33474": 0.4697297297, + "33475": 0.4707207207, + "33476": 0.4717117117, + "33477": 0.4727027027, + "33478": 0.4736936937, + "33479": 0.4746846847, + "33480": 0.4756756757, + "33481": 0.4766666667, + "33482": 0.4776576577, + "33483": 0.4786486486, + "33484": 0.4796396396, + "33485": 0.4806306306, + "33486": 0.4816216216, + "33487": 0.4826126126, + "33488": 0.4836036036, + "33489": 0.4845945946, + "33490": 0.4855855856, + "33491": 0.4865765766, + "33492": 0.4875675676, + "33493": 0.4885585586, + "33494": 0.4895495495, + "33495": 0.4905405405, + "33496": 0.4915315315, + "33497": 0.4925225225, + "33498": 0.4935135135, + "33499": 0.4945045045, + "33500": 0.4954954955, + "33501": 0.4964864865, + "33502": 0.4974774775, + "33503": 0.4984684685, + "33504": 0.4994594595, + "33505": 0.5004504505, + "33506": 0.5014414414, + "33507": 0.5024324324, + "33508": 0.5034234234, + "33509": 0.5044144144, + "33510": 0.5054054054, + "33511": 0.5063963964, + "33512": 0.5073873874, + "33513": 0.5083783784, + "33514": 0.5093693694, + "33515": 0.5103603604, + "33516": 0.5113513514, + "33517": 0.5123423423, + "33518": 0.5133333333, + "33519": 0.5143243243, + "33520": 0.5153153153, + "33521": 0.5163063063, + "33522": 0.5172972973, + "33523": 0.5182882883, + "33524": 0.5192792793, + "33525": 0.5202702703, + "33526": 0.5212612613, + "33527": 0.5222522523, + "33528": 0.5232432432, + "33529": 0.5242342342, + "33530": 0.5252252252, + "33531": 0.5262162162, + "33532": 0.5272072072, + "33533": 0.5281981982, + "33534": 0.5291891892, + "33535": 0.5301801802, + "33536": 0.5311711712, + "33537": 0.5321621622, + "33538": 0.5331531532, + "33539": 0.5341441441, + "33540": 0.5351351351, + "33541": 0.5361261261, + "33542": 0.5371171171, + "33543": 0.5381081081, + "33544": 0.5390990991, + "33545": 0.5400900901, + "33546": 0.5410810811, + "33547": 0.5420720721, + "33548": 0.5430630631, + "33549": 0.5440540541, + "33550": 0.545045045, + "33551": 0.546036036, + "33552": 0.547027027, + "33553": 0.548018018, + "33554": 0.549009009, + "33555": 0.55, + "33556": 0.550990991, + "33557": 0.551981982, + "33558": 0.552972973, + "33559": 0.553963964, + "33560": 0.554954955, + "33561": 0.5559459459, + "33562": 0.5569369369, + "33563": 0.5579279279, + "33564": 0.5589189189, + "33565": 0.5599099099, + "33566": 0.5609009009, + "33567": 0.5618918919, + "33568": 0.5628828829, + "33569": 0.5638738739, + "33570": 0.5648648649, + "33571": 0.5658558559, + "33572": 0.5668468468, + "33573": 0.5678378378, + "33574": 0.5688288288, + "33575": 0.5698198198, + "33576": 0.5708108108, + "33577": 0.5718018018, + "33578": 0.5727927928, + "33579": 0.5737837838, + "33580": 0.5747747748, + "33581": 0.5757657658, + "33582": 0.5767567568, + "33583": 0.5777477477, + "33584": 0.5787387387, + "33585": 0.5797297297, + "33586": 0.5807207207, + "33587": 0.5817117117, + "33588": 0.5827027027, + "33589": 0.5836936937, + "33590": 0.5846846847, + "33591": 0.5856756757, + "33592": 0.5866666667, + "33593": 0.5876576577, + "33594": 0.5886486486, + "33595": 0.5896396396, + "33596": 0.5906306306, + "33597": 0.5916216216, + "33598": 0.5926126126, + "33599": 0.5936036036, + "33600": 0.5945945946, + "33601": 0.5955855856, + "33602": 0.5965765766, + "33603": 0.5975675676, + "33604": 0.5985585586, + "33605": 0.5995495495, + "33606": 0.6005405405, + "33607": 0.6015315315, + "33608": 0.6025225225, + "33609": 0.6035135135, + "33610": 0.6045045045, + "33611": 0.6054954955, + "33612": 0.6064864865, + "33613": 0.6074774775, + "33614": 0.6084684685, + "33615": 0.6094594595, + "33616": 0.6104504505, + "33617": 0.6114414414, + "33618": 0.6124324324, + "33619": 0.6134234234, + "33620": 0.6144144144, + "33621": 0.6154054054, + "33622": 0.6163963964, + "33623": 0.6173873874, + "33624": 0.6183783784, + "33625": 0.6193693694, + "33626": 0.6203603604, + "33627": 0.6213513514, + "33628": 0.6223423423, + "33629": 0.6233333333, + "33630": 0.6243243243, + "33631": 0.6253153153, + "33632": 0.6263063063, + "33633": 0.6272972973, + "33634": 0.6282882883, + "33635": 0.6292792793, + "33636": 0.6302702703, + "33637": 0.6312612613, + "33638": 0.6322522523, + "33639": 0.6332432432, + "33640": 0.6342342342, + "33641": 0.6352252252, + "33642": 0.6362162162, + "33643": 0.6372072072, + "33644": 0.6381981982, + "33645": 0.6391891892, + "33646": 0.6401801802, + "33647": 0.6411711712, + "33648": 0.6421621622, + "33649": 0.6431531532, + "33650": 0.6441441441, + "33651": 0.6451351351, + "33652": 0.6461261261, + "33653": 0.6471171171, + "33654": 0.6481081081, + "33655": 0.6490990991, + "33656": 0.6500900901, + "33657": 0.6510810811, + "33658": 0.6520720721, + "33659": 0.6530630631, + "33660": 0.6540540541, + "33661": 0.655045045, + "33662": 0.656036036, + "33663": 0.657027027, + "33664": 0.658018018, + "33665": 0.659009009, + "33666": 0.66, + "33667": 0.660990991, + "33668": 0.661981982, + "33669": 0.662972973, + "33670": 0.663963964, + "33671": 0.664954955, + "33672": 0.6659459459, + "33673": 0.6669369369, + "33674": 0.6679279279, + "33675": 0.6689189189, + "33676": 0.6699099099, + "33677": 0.6709009009, + "33678": 0.6718918919, + "33679": 0.6728828829, + "33680": 0.6738738739, + "33681": 0.6748648649, + "33682": 0.6758558559, + "33683": 0.6768468468, + "33684": 0.6778378378, + "33685": 0.6788288288, + "33686": 0.6798198198, + "33687": 0.6808108108, + "33688": 0.6818018018, + "33689": 0.6827927928, + "33690": 0.6837837838, + "33691": 0.6847747748, + "33692": 0.6857657658, + "33693": 0.6867567568, + "33694": 0.6877477477, + "33695": 0.6887387387, + "33696": 0.6897297297, + "33697": 0.6907207207, + "33698": 0.6917117117, + "33699": 0.6927027027, + "33700": 0.6936936937, + "33701": 0.6946846847, + "33702": 0.6956756757, + "33703": 0.6966666667, + "33704": 0.6976576577, + "33705": 0.6986486486, + "33706": 0.6996396396, + "33707": 0.7006306306, + "33708": 0.7016216216, + "33709": 0.7026126126, + "33710": 0.7036036036, + "33711": 0.7045945946, + "33712": 0.7055855856, + "33713": 0.7065765766, + "33714": 0.7075675676, + "33715": 0.7085585586, + "33716": 0.7095495495, + "33717": 0.7105405405, + "33718": 0.7115315315, + "33719": 0.7125225225, + "33720": 0.7135135135, + "33721": 0.7145045045, + "33722": 0.7154954955, + "33723": 0.7164864865, + "33724": 0.7174774775, + "33725": 0.7184684685, + "33726": 0.7194594595, + "33727": 0.7204504505, + "33728": 0.7214414414, + "33729": 0.7224324324, + "33730": 0.7234234234, + "33731": 0.7244144144, + "33732": 0.7254054054, + "33733": 0.7263963964, + "33734": 0.7273873874, + "33735": 0.7283783784, + "33736": 0.7293693694, + "33737": 0.7303603604, + "33738": 0.7313513514, + "33739": 0.7323423423, + "33740": 0.7333333333, + "33741": 0.7343243243, + "33742": 0.7353153153, + "33743": 0.7363063063, + "33744": 0.7372972973, + "33745": 0.7382882883, + "33746": 0.7392792793, + "33747": 0.7402702703, + "33748": 0.7412612613, + "33749": 0.7422522523, + "33750": 0.7432432432, + "33751": 0.7442342342, + "33752": 0.7452252252, + "33753": 0.7462162162, + "33754": 0.7472072072, + "33755": 0.7481981982, + "33756": 0.7491891892, + "33757": 0.7501801802, + "33758": 0.7511711712, + "33759": 0.7521621622, + "33760": 0.7531531532, + "33761": 0.7541441441, + "33762": 0.7551351351, + "33763": 0.7561261261, + "33764": 0.7571171171, + "33765": 0.7581081081, + "33766": 0.7590990991, + "33767": 0.7600900901, + "33768": 0.7610810811, + "33769": 0.7620720721, + "33770": 0.7630630631, + "33771": 0.7640540541, + "33772": 0.765045045, + "33773": 0.766036036, + "33774": 0.767027027, + "33775": 0.768018018, + "33776": 0.769009009, + "33777": 0.77, + "33778": 0.770990991, + "33779": 0.771981982, + "33780": 0.772972973, + "33781": 0.773963964, + "33782": 0.774954955, + "33783": 0.7759459459, + "33784": 0.7769369369, + "33785": 0.7779279279, + "33786": 0.7789189189, + "33787": 0.7799099099, + "33788": 0.7809009009, + "33789": 0.7818918919, + "33790": 0.7828828829, + "33791": 0.7838738739, + "33792": 0.7848648649, + "33793": 0.7858558559, + "33794": 0.7868468468, + "33795": 0.7878378378, + "33796": 0.7888288288, + "33797": 0.7898198198, + "33798": 0.7908108108, + "33799": 0.7918018018, + "33800": 0.7927927928, + "33801": 0.7937837838, + "33802": 0.7947747748, + "33803": 0.7957657658, + "33804": 0.7967567568, + "33805": 0.7977477477, + "33806": 0.7987387387, + "33807": 0.7997297297, + "33808": 0.8007207207, + "33809": 0.8017117117, + "33810": 0.8027027027, + "33811": 0.8036936937, + "33812": 0.8046846847, + "33813": 0.8056756757, + "33814": 0.8066666667, + "33815": 0.8076576577, + "33816": 0.8086486486, + "33817": 0.8096396396, + "33818": 0.8106306306, + "33819": 0.8116216216, + "33820": 0.8126126126, + "33821": 0.8136036036, + "33822": 0.8145945946, + "33823": 0.8155855856, + "33824": 0.8165765766, + "33825": 0.8175675676, + "33826": 0.8185585586, + "33827": 0.8195495495, + "33828": 0.8205405405, + "33829": 0.8215315315, + "33830": 0.8225225225, + "33831": 0.8235135135, + "33832": 0.8245045045, + "33833": 0.8254954955, + "33834": 0.8264864865, + "33835": 0.8274774775, + "33836": 0.8284684685, + "33837": 0.8294594595, + "33838": 0.8304504505, + "33839": 0.8314414414, + "33840": 0.8324324324, + "33841": 0.8334234234, + "33842": 0.8344144144, + "33843": 0.8354054054, + "33844": 0.8363963964, + "33845": 0.8373873874, + "33846": 0.8383783784, + "33847": 0.8393693694, + "33848": 0.8403603604, + "33849": 0.8413513514, + "33850": 0.8423423423, + "33851": 0.8433333333, + "33852": 0.8443243243, + "33853": 0.8453153153, + "33854": 0.8463063063, + "33855": 0.8472972973, + "33856": 0.8482882883, + "33857": 0.8492792793, + "33858": 0.8502702703, + "33859": 0.8512612613, + "33860": 0.8522522523, + "33861": 0.8532432432, + "33862": 0.8542342342, + "33863": 0.8552252252, + "33864": 0.8562162162, + "33865": 0.8572072072, + "33866": 0.8581981982, + "33867": 0.8591891892, + "33868": 0.8601801802, + "33869": 0.8611711712, + "33870": 0.8621621622, + "33871": 0.8631531532, + "33872": 0.8641441441, + "33873": 0.8651351351, + "33874": 0.8661261261, + "33875": 0.8671171171, + "33876": 0.8681081081, + "33877": 0.8690990991, + "33878": 0.8700900901, + "33879": 0.8710810811, + "33880": 0.8720720721, + "33881": 0.8730630631, + "33882": 0.8740540541, + "33883": 0.875045045, + "33884": 0.876036036, + "33885": 0.877027027, + "33886": 0.878018018, + "33887": 0.879009009, + "33888": 0.88, + "33889": 0.880990991, + "33890": 0.881981982, + "33891": 0.882972973, + "33892": 0.883963964, + "33893": 0.884954955, + "33894": 0.8859459459, + "33895": 0.8869369369, + "33896": 0.8879279279, + "33897": 0.8889189189, + "33898": 0.8899099099, + "33899": 0.8909009009, + "33900": 0.8918918919, + "33901": 0.8928828829, + "33902": 0.8938738739, + "33903": 0.8948648649, + "33904": 0.8958558559, + "33905": 0.8968468468, + "33906": 0.8978378378, + "33907": 0.8988288288, + "33908": 0.8998198198, + "33909": 0.9008108108, + "33910": 0.9018018018, + "33911": 0.9027927928, + "33912": 0.9037837838, + "33913": 0.9047747748, + "33914": 0.9057657658, + "33915": 0.9067567568, + "33916": 0.9077477477, + "33917": 0.9087387387, + "33918": 0.9097297297, + "33919": 0.9107207207, + "33920": 0.9117117117, + "33921": 0.9127027027, + "33922": 0.9136936937, + "33923": 0.9146846847, + "33924": 0.9156756757, + "33925": 0.9166666667, + "33926": 0.9176576577, + "33927": 0.9186486486, + "33928": 0.9196396396, + "33929": 0.9206306306, + "33930": 0.9216216216, + "33931": 0.9226126126, + "33932": 0.9236036036, + "33933": 0.9245945946, + "33934": 0.9255855856, + "33935": 0.9265765766, + "33936": 0.9275675676, + "33937": 0.9285585586, + "33938": 0.9295495495, + "33939": 0.9305405405, + "33940": 0.9315315315, + "33941": 0.9325225225, + "33942": 0.9335135135, + "33943": 0.9345045045, + "33944": 0.9354954955, + "33945": 0.9364864865, + "33946": 0.9374774775, + "33947": 0.9384684685, + "33948": 0.9394594595, + "33949": 0.9404504505, + "33950": 0.9414414414, + "33951": 0.9424324324, + "33952": 0.9434234234, + "33953": 0.9444144144, + "33954": 0.9454054054, + "33955": 0.9463963964, + "33956": 0.9473873874, + "33957": 0.9483783784, + "33958": 0.9493693694, + "33959": 0.9503603604, + "33960": 0.9513513514, + "33961": 0.9523423423, + "33962": 0.9533333333, + "33963": 0.9543243243, + "33964": 0.9553153153, + "33965": 0.9563063063, + "33966": 0.9572972973, + "33967": 0.9582882883, + "33968": 0.9592792793, + "33969": 0.9602702703, + "33970": 0.9612612613, + "33971": 0.9622522523, + "33972": 0.9632432432, + "33973": 0.9642342342, + "33974": 0.9652252252, + "33975": 0.9662162162, + "33976": 0.9672072072, + "33977": 0.9681981982, + "33978": 0.9691891892, + "33979": 0.9701801802, + "33980": 0.9711711712, + "33981": 0.9721621622, + "33982": 0.9731531532, + "33983": 0.9741441441, + "33984": 0.9751351351, + "33985": 0.9761261261, + "33986": 0.9771171171, + "33987": 0.9781081081, + "33988": 0.9790990991, + "33989": 0.9800900901, + "33990": 0.9810810811, + "33991": 0.9820720721, + "33992": 0.9830630631, + "33993": 0.9840540541, + "33994": 0.985045045, + "33995": 0.986036036, + "33996": 0.987027027, + "33997": 0.988018018, + "33998": 0.989009009, + "33999": 0.99, + "34000": 0.0, + "34001": 0.000990991, + "34002": 0.001981982, + "34003": 0.002972973, + "34004": 0.003963964, + "34005": 0.004954955, + "34006": 0.0059459459, + "34007": 0.0069369369, + "34008": 0.0079279279, + "34009": 0.0089189189, + "34010": 0.0099099099, + "34011": 0.0109009009, + "34012": 0.0118918919, + "34013": 0.0128828829, + "34014": 0.0138738739, + "34015": 0.0148648649, + "34016": 0.0158558559, + "34017": 0.0168468468, + "34018": 0.0178378378, + "34019": 0.0188288288, + "34020": 0.0198198198, + "34021": 0.0208108108, + "34022": 0.0218018018, + "34023": 0.0227927928, + "34024": 0.0237837838, + "34025": 0.0247747748, + "34026": 0.0257657658, + "34027": 0.0267567568, + "34028": 0.0277477477, + "34029": 0.0287387387, + "34030": 0.0297297297, + "34031": 0.0307207207, + "34032": 0.0317117117, + "34033": 0.0327027027, + "34034": 0.0336936937, + "34035": 0.0346846847, + "34036": 0.0356756757, + "34037": 0.0366666667, + "34038": 0.0376576577, + "34039": 0.0386486486, + "34040": 0.0396396396, + "34041": 0.0406306306, + "34042": 0.0416216216, + "34043": 0.0426126126, + "34044": 0.0436036036, + "34045": 0.0445945946, + "34046": 0.0455855856, + "34047": 0.0465765766, + "34048": 0.0475675676, + "34049": 0.0485585586, + "34050": 0.0495495495, + "34051": 0.0505405405, + "34052": 0.0515315315, + "34053": 0.0525225225, + "34054": 0.0535135135, + "34055": 0.0545045045, + "34056": 0.0554954955, + "34057": 0.0564864865, + "34058": 0.0574774775, + "34059": 0.0584684685, + "34060": 0.0594594595, + "34061": 0.0604504505, + "34062": 0.0614414414, + "34063": 0.0624324324, + "34064": 0.0634234234, + "34065": 0.0644144144, + "34066": 0.0654054054, + "34067": 0.0663963964, + "34068": 0.0673873874, + "34069": 0.0683783784, + "34070": 0.0693693694, + "34071": 0.0703603604, + "34072": 0.0713513514, + "34073": 0.0723423423, + "34074": 0.0733333333, + "34075": 0.0743243243, + "34076": 0.0753153153, + "34077": 0.0763063063, + "34078": 0.0772972973, + "34079": 0.0782882883, + "34080": 0.0792792793, + "34081": 0.0802702703, + "34082": 0.0812612613, + "34083": 0.0822522523, + "34084": 0.0832432432, + "34085": 0.0842342342, + "34086": 0.0852252252, + "34087": 0.0862162162, + "34088": 0.0872072072, + "34089": 0.0881981982, + "34090": 0.0891891892, + "34091": 0.0901801802, + "34092": 0.0911711712, + "34093": 0.0921621622, + "34094": 0.0931531532, + "34095": 0.0941441441, + "34096": 0.0951351351, + "34097": 0.0961261261, + "34098": 0.0971171171, + "34099": 0.0981081081, + "34100": 0.0990990991, + "34101": 0.1000900901, + "34102": 0.1010810811, + "34103": 0.1020720721, + "34104": 0.1030630631, + "34105": 0.1040540541, + "34106": 0.105045045, + "34107": 0.106036036, + "34108": 0.107027027, + "34109": 0.108018018, + "34110": 0.109009009, + "34111": 0.11, + "34112": 0.110990991, + "34113": 0.111981982, + "34114": 0.112972973, + "34115": 0.113963964, + "34116": 0.114954955, + "34117": 0.1159459459, + "34118": 0.1169369369, + "34119": 0.1179279279, + "34120": 0.1189189189, + "34121": 0.1199099099, + "34122": 0.1209009009, + "34123": 0.1218918919, + "34124": 0.1228828829, + "34125": 0.1238738739, + "34126": 0.1248648649, + "34127": 0.1258558559, + "34128": 0.1268468468, + "34129": 0.1278378378, + "34130": 0.1288288288, + "34131": 0.1298198198, + "34132": 0.1308108108, + "34133": 0.1318018018, + "34134": 0.1327927928, + "34135": 0.1337837838, + "34136": 0.1347747748, + "34137": 0.1357657658, + "34138": 0.1367567568, + "34139": 0.1377477477, + "34140": 0.1387387387, + "34141": 0.1397297297, + "34142": 0.1407207207, + "34143": 0.1417117117, + "34144": 0.1427027027, + "34145": 0.1436936937, + "34146": 0.1446846847, + "34147": 0.1456756757, + "34148": 0.1466666667, + "34149": 0.1476576577, + "34150": 0.1486486486, + "34151": 0.1496396396, + "34152": 0.1506306306, + "34153": 0.1516216216, + "34154": 0.1526126126, + "34155": 0.1536036036, + "34156": 0.1545945946, + "34157": 0.1555855856, + "34158": 0.1565765766, + "34159": 0.1575675676, + "34160": 0.1585585586, + "34161": 0.1595495495, + "34162": 0.1605405405, + "34163": 0.1615315315, + "34164": 0.1625225225, + "34165": 0.1635135135, + "34166": 0.1645045045, + "34167": 0.1654954955, + "34168": 0.1664864865, + "34169": 0.1674774775, + "34170": 0.1684684685, + "34171": 0.1694594595, + "34172": 0.1704504505, + "34173": 0.1714414414, + "34174": 0.1724324324, + "34175": 0.1734234234, + "34176": 0.1744144144, + "34177": 0.1754054054, + "34178": 0.1763963964, + "34179": 0.1773873874, + "34180": 0.1783783784, + "34181": 0.1793693694, + "34182": 0.1803603604, + "34183": 0.1813513514, + "34184": 0.1823423423, + "34185": 0.1833333333, + "34186": 0.1843243243, + "34187": 0.1853153153, + "34188": 0.1863063063, + "34189": 0.1872972973, + "34190": 0.1882882883, + "34191": 0.1892792793, + "34192": 0.1902702703, + "34193": 0.1912612613, + "34194": 0.1922522523, + "34195": 0.1932432432, + "34196": 0.1942342342, + "34197": 0.1952252252, + "34198": 0.1962162162, + "34199": 0.1972072072, + "34200": 0.1981981982, + "34201": 0.1991891892, + "34202": 0.2001801802, + "34203": 0.2011711712, + "34204": 0.2021621622, + "34205": 0.2031531532, + "34206": 0.2041441441, + "34207": 0.2051351351, + "34208": 0.2061261261, + "34209": 0.2071171171, + "34210": 0.2081081081, + "34211": 0.2090990991, + "34212": 0.2100900901, + "34213": 0.2110810811, + "34214": 0.2120720721, + "34215": 0.2130630631, + "34216": 0.2140540541, + "34217": 0.215045045, + "34218": 0.216036036, + "34219": 0.217027027, + "34220": 0.218018018, + "34221": 0.219009009, + "34222": 0.22, + "34223": 0.220990991, + "34224": 0.221981982, + "34225": 0.222972973, + "34226": 0.223963964, + "34227": 0.224954955, + "34228": 0.2259459459, + "34229": 0.2269369369, + "34230": 0.2279279279, + "34231": 0.2289189189, + "34232": 0.2299099099, + "34233": 0.2309009009, + "34234": 0.2318918919, + "34235": 0.2328828829, + "34236": 0.2338738739, + "34237": 0.2348648649, + "34238": 0.2358558559, + "34239": 0.2368468468, + "34240": 0.2378378378, + "34241": 0.2388288288, + "34242": 0.2398198198, + "34243": 0.2408108108, + "34244": 0.2418018018, + "34245": 0.2427927928, + "34246": 0.2437837838, + "34247": 0.2447747748, + "34248": 0.2457657658, + "34249": 0.2467567568, + "34250": 0.2477477477, + "34251": 0.2487387387, + "34252": 0.2497297297, + "34253": 0.2507207207, + "34254": 0.2517117117, + "34255": 0.2527027027, + "34256": 0.2536936937, + "34257": 0.2546846847, + "34258": 0.2556756757, + "34259": 0.2566666667, + "34260": 0.2576576577, + "34261": 0.2586486486, + "34262": 0.2596396396, + "34263": 0.2606306306, + "34264": 0.2616216216, + "34265": 0.2626126126, + "34266": 0.2636036036, + "34267": 0.2645945946, + "34268": 0.2655855856, + "34269": 0.2665765766, + "34270": 0.2675675676, + "34271": 0.2685585586, + "34272": 0.2695495495, + "34273": 0.2705405405, + "34274": 0.2715315315, + "34275": 0.2725225225, + "34276": 0.2735135135, + "34277": 0.2745045045, + "34278": 0.2754954955, + "34279": 0.2764864865, + "34280": 0.2774774775, + "34281": 0.2784684685, + "34282": 0.2794594595, + "34283": 0.2804504505, + "34284": 0.2814414414, + "34285": 0.2824324324, + "34286": 0.2834234234, + "34287": 0.2844144144, + "34288": 0.2854054054, + "34289": 0.2863963964, + "34290": 0.2873873874, + "34291": 0.2883783784, + "34292": 0.2893693694, + "34293": 0.2903603604, + "34294": 0.2913513514, + "34295": 0.2923423423, + "34296": 0.2933333333, + "34297": 0.2943243243, + "34298": 0.2953153153, + "34299": 0.2963063063, + "34300": 0.2972972973, + "34301": 0.2982882883, + "34302": 0.2992792793, + "34303": 0.3002702703, + "34304": 0.3012612613, + "34305": 0.3022522523, + "34306": 0.3032432432, + "34307": 0.3042342342, + "34308": 0.3052252252, + "34309": 0.3062162162, + "34310": 0.3072072072, + "34311": 0.3081981982, + "34312": 0.3091891892, + "34313": 0.3101801802, + "34314": 0.3111711712, + "34315": 0.3121621622, + "34316": 0.3131531532, + "34317": 0.3141441441, + "34318": 0.3151351351, + "34319": 0.3161261261, + "34320": 0.3171171171, + "34321": 0.3181081081, + "34322": 0.3190990991, + "34323": 0.3200900901, + "34324": 0.3210810811, + "34325": 0.3220720721, + "34326": 0.3230630631, + "34327": 0.3240540541, + "34328": 0.325045045, + "34329": 0.326036036, + "34330": 0.327027027, + "34331": 0.328018018, + "34332": 0.329009009, + "34333": 0.33, + "34334": 0.330990991, + "34335": 0.331981982, + "34336": 0.332972973, + "34337": 0.333963964, + "34338": 0.334954955, + "34339": 0.3359459459, + "34340": 0.3369369369, + "34341": 0.3379279279, + "34342": 0.3389189189, + "34343": 0.3399099099, + "34344": 0.3409009009, + "34345": 0.3418918919, + "34346": 0.3428828829, + "34347": 0.3438738739, + "34348": 0.3448648649, + "34349": 0.3458558559, + "34350": 0.3468468468, + "34351": 0.3478378378, + "34352": 0.3488288288, + "34353": 0.3498198198, + "34354": 0.3508108108, + "34355": 0.3518018018, + "34356": 0.3527927928, + "34357": 0.3537837838, + "34358": 0.3547747748, + "34359": 0.3557657658, + "34360": 0.3567567568, + "34361": 0.3577477477, + "34362": 0.3587387387, + "34363": 0.3597297297, + "34364": 0.3607207207, + "34365": 0.3617117117, + "34366": 0.3627027027, + "34367": 0.3636936937, + "34368": 0.3646846847, + "34369": 0.3656756757, + "34370": 0.3666666667, + "34371": 0.3676576577, + "34372": 0.3686486486, + "34373": 0.3696396396, + "34374": 0.3706306306, + "34375": 0.3716216216, + "34376": 0.3726126126, + "34377": 0.3736036036, + "34378": 0.3745945946, + "34379": 0.3755855856, + "34380": 0.3765765766, + "34381": 0.3775675676, + "34382": 0.3785585586, + "34383": 0.3795495495, + "34384": 0.3805405405, + "34385": 0.3815315315, + "34386": 0.3825225225, + "34387": 0.3835135135, + "34388": 0.3845045045, + "34389": 0.3854954955, + "34390": 0.3864864865, + "34391": 0.3874774775, + "34392": 0.3884684685, + "34393": 0.3894594595, + "34394": 0.3904504505, + "34395": 0.3914414414, + "34396": 0.3924324324, + "34397": 0.3934234234, + "34398": 0.3944144144, + "34399": 0.3954054054, + "34400": 0.3963963964, + "34401": 0.3973873874, + "34402": 0.3983783784, + "34403": 0.3993693694, + "34404": 0.4003603604, + "34405": 0.4013513514, + "34406": 0.4023423423, + "34407": 0.4033333333, + "34408": 0.4043243243, + "34409": 0.4053153153, + "34410": 0.4063063063, + "34411": 0.4072972973, + "34412": 0.4082882883, + "34413": 0.4092792793, + "34414": 0.4102702703, + "34415": 0.4112612613, + "34416": 0.4122522523, + "34417": 0.4132432432, + "34418": 0.4142342342, + "34419": 0.4152252252, + "34420": 0.4162162162, + "34421": 0.4172072072, + "34422": 0.4181981982, + "34423": 0.4191891892, + "34424": 0.4201801802, + "34425": 0.4211711712, + "34426": 0.4221621622, + "34427": 0.4231531532, + "34428": 0.4241441441, + "34429": 0.4251351351, + "34430": 0.4261261261, + "34431": 0.4271171171, + "34432": 0.4281081081, + "34433": 0.4290990991, + "34434": 0.4300900901, + "34435": 0.4310810811, + "34436": 0.4320720721, + "34437": 0.4330630631, + "34438": 0.4340540541, + "34439": 0.435045045, + "34440": 0.436036036, + "34441": 0.437027027, + "34442": 0.438018018, + "34443": 0.439009009, + "34444": 0.44, + "34445": 0.440990991, + "34446": 0.441981982, + "34447": 0.442972973, + "34448": 0.443963964, + "34449": 0.444954955, + "34450": 0.4459459459, + "34451": 0.4469369369, + "34452": 0.4479279279, + "34453": 0.4489189189, + "34454": 0.4499099099, + "34455": 0.4509009009, + "34456": 0.4518918919, + "34457": 0.4528828829, + "34458": 0.4538738739, + "34459": 0.4548648649, + "34460": 0.4558558559, + "34461": 0.4568468468, + "34462": 0.4578378378, + "34463": 0.4588288288, + "34464": 0.4598198198, + "34465": 0.4608108108, + "34466": 0.4618018018, + "34467": 0.4627927928, + "34468": 0.4637837838, + "34469": 0.4647747748, + "34470": 0.4657657658, + "34471": 0.4667567568, + "34472": 0.4677477477, + "34473": 0.4687387387, + "34474": 0.4697297297, + "34475": 0.4707207207, + "34476": 0.4717117117, + "34477": 0.4727027027, + "34478": 0.4736936937, + "34479": 0.4746846847, + "34480": 0.4756756757, + "34481": 0.4766666667, + "34482": 0.4776576577, + "34483": 0.4786486486, + "34484": 0.4796396396, + "34485": 0.4806306306, + "34486": 0.4816216216, + "34487": 0.4826126126, + "34488": 0.4836036036, + "34489": 0.4845945946, + "34490": 0.4855855856, + "34491": 0.4865765766, + "34492": 0.4875675676, + "34493": 0.4885585586, + "34494": 0.4895495495, + "34495": 0.4905405405, + "34496": 0.4915315315, + "34497": 0.4925225225, + "34498": 0.4935135135, + "34499": 0.4945045045, + "34500": 0.4954954955, + "34501": 0.4964864865, + "34502": 0.4974774775, + "34503": 0.4984684685, + "34504": 0.4994594595, + "34505": 0.5004504505, + "34506": 0.5014414414, + "34507": 0.5024324324, + "34508": 0.5034234234, + "34509": 0.5044144144, + "34510": 0.5054054054, + "34511": 0.5063963964, + "34512": 0.5073873874, + "34513": 0.5083783784, + "34514": 0.5093693694, + "34515": 0.5103603604, + "34516": 0.5113513514, + "34517": 0.5123423423, + "34518": 0.5133333333, + "34519": 0.5143243243, + "34520": 0.5153153153, + "34521": 0.5163063063, + "34522": 0.5172972973, + "34523": 0.5182882883, + "34524": 0.5192792793, + "34525": 0.5202702703, + "34526": 0.5212612613, + "34527": 0.5222522523, + "34528": 0.5232432432, + "34529": 0.5242342342, + "34530": 0.5252252252, + "34531": 0.5262162162, + "34532": 0.5272072072, + "34533": 0.5281981982, + "34534": 0.5291891892, + "34535": 0.5301801802, + "34536": 0.5311711712, + "34537": 0.5321621622, + "34538": 0.5331531532, + "34539": 0.5341441441, + "34540": 0.5351351351, + "34541": 0.5361261261, + "34542": 0.5371171171, + "34543": 0.5381081081, + "34544": 0.5390990991, + "34545": 0.5400900901, + "34546": 0.5410810811, + "34547": 0.5420720721, + "34548": 0.5430630631, + "34549": 0.5440540541, + "34550": 0.545045045, + "34551": 0.546036036, + "34552": 0.547027027, + "34553": 0.548018018, + "34554": 0.549009009, + "34555": 0.55, + "34556": 0.550990991, + "34557": 0.551981982, + "34558": 0.552972973, + "34559": 0.553963964, + "34560": 0.554954955, + "34561": 0.5559459459, + "34562": 0.5569369369, + "34563": 0.5579279279, + "34564": 0.5589189189, + "34565": 0.5599099099, + "34566": 0.5609009009, + "34567": 0.5618918919, + "34568": 0.5628828829, + "34569": 0.5638738739, + "34570": 0.5648648649, + "34571": 0.5658558559, + "34572": 0.5668468468, + "34573": 0.5678378378, + "34574": 0.5688288288, + "34575": 0.5698198198, + "34576": 0.5708108108, + "34577": 0.5718018018, + "34578": 0.5727927928, + "34579": 0.5737837838, + "34580": 0.5747747748, + "34581": 0.5757657658, + "34582": 0.5767567568, + "34583": 0.5777477477, + "34584": 0.5787387387, + "34585": 0.5797297297, + "34586": 0.5807207207, + "34587": 0.5817117117, + "34588": 0.5827027027, + "34589": 0.5836936937, + "34590": 0.5846846847, + "34591": 0.5856756757, + "34592": 0.5866666667, + "34593": 0.5876576577, + "34594": 0.5886486486, + "34595": 0.5896396396, + "34596": 0.5906306306, + "34597": 0.5916216216, + "34598": 0.5926126126, + "34599": 0.5936036036, + "34600": 0.5945945946, + "34601": 0.5955855856, + "34602": 0.5965765766, + "34603": 0.5975675676, + "34604": 0.5985585586, + "34605": 0.5995495495, + "34606": 0.6005405405, + "34607": 0.6015315315, + "34608": 0.6025225225, + "34609": 0.6035135135, + "34610": 0.6045045045, + "34611": 0.6054954955, + "34612": 0.6064864865, + "34613": 0.6074774775, + "34614": 0.6084684685, + "34615": 0.6094594595, + "34616": 0.6104504505, + "34617": 0.6114414414, + "34618": 0.6124324324, + "34619": 0.6134234234, + "34620": 0.6144144144, + "34621": 0.6154054054, + "34622": 0.6163963964, + "34623": 0.6173873874, + "34624": 0.6183783784, + "34625": 0.6193693694, + "34626": 0.6203603604, + "34627": 0.6213513514, + "34628": 0.6223423423, + "34629": 0.6233333333, + "34630": 0.6243243243, + "34631": 0.6253153153, + "34632": 0.6263063063, + "34633": 0.6272972973, + "34634": 0.6282882883, + "34635": 0.6292792793, + "34636": 0.6302702703, + "34637": 0.6312612613, + "34638": 0.6322522523, + "34639": 0.6332432432, + "34640": 0.6342342342, + "34641": 0.6352252252, + "34642": 0.6362162162, + "34643": 0.6372072072, + "34644": 0.6381981982, + "34645": 0.6391891892, + "34646": 0.6401801802, + "34647": 0.6411711712, + "34648": 0.6421621622, + "34649": 0.6431531532, + "34650": 0.6441441441, + "34651": 0.6451351351, + "34652": 0.6461261261, + "34653": 0.6471171171, + "34654": 0.6481081081, + "34655": 0.6490990991, + "34656": 0.6500900901, + "34657": 0.6510810811, + "34658": 0.6520720721, + "34659": 0.6530630631, + "34660": 0.6540540541, + "34661": 0.655045045, + "34662": 0.656036036, + "34663": 0.657027027, + "34664": 0.658018018, + "34665": 0.659009009, + "34666": 0.66, + "34667": 0.660990991, + "34668": 0.661981982, + "34669": 0.662972973, + "34670": 0.663963964, + "34671": 0.664954955, + "34672": 0.6659459459, + "34673": 0.6669369369, + "34674": 0.6679279279, + "34675": 0.6689189189, + "34676": 0.6699099099, + "34677": 0.6709009009, + "34678": 0.6718918919, + "34679": 0.6728828829, + "34680": 0.6738738739, + "34681": 0.6748648649, + "34682": 0.6758558559, + "34683": 0.6768468468, + "34684": 0.6778378378, + "34685": 0.6788288288, + "34686": 0.6798198198, + "34687": 0.6808108108, + "34688": 0.6818018018, + "34689": 0.6827927928, + "34690": 0.6837837838, + "34691": 0.6847747748, + "34692": 0.6857657658, + "34693": 0.6867567568, + "34694": 0.6877477477, + "34695": 0.6887387387, + "34696": 0.6897297297, + "34697": 0.6907207207, + "34698": 0.6917117117, + "34699": 0.6927027027, + "34700": 0.6936936937, + "34701": 0.6946846847, + "34702": 0.6956756757, + "34703": 0.6966666667, + "34704": 0.6976576577, + "34705": 0.6986486486, + "34706": 0.6996396396, + "34707": 0.7006306306, + "34708": 0.7016216216, + "34709": 0.7026126126, + "34710": 0.7036036036, + "34711": 0.7045945946, + "34712": 0.7055855856, + "34713": 0.7065765766, + "34714": 0.7075675676, + "34715": 0.7085585586, + "34716": 0.7095495495, + "34717": 0.7105405405, + "34718": 0.7115315315, + "34719": 0.7125225225, + "34720": 0.7135135135, + "34721": 0.7145045045, + "34722": 0.7154954955, + "34723": 0.7164864865, + "34724": 0.7174774775, + "34725": 0.7184684685, + "34726": 0.7194594595, + "34727": 0.7204504505, + "34728": 0.7214414414, + "34729": 0.7224324324, + "34730": 0.7234234234, + "34731": 0.7244144144, + "34732": 0.7254054054, + "34733": 0.7263963964, + "34734": 0.7273873874, + "34735": 0.7283783784, + "34736": 0.7293693694, + "34737": 0.7303603604, + "34738": 0.7313513514, + "34739": 0.7323423423, + "34740": 0.7333333333, + "34741": 0.7343243243, + "34742": 0.7353153153, + "34743": 0.7363063063, + "34744": 0.7372972973, + "34745": 0.7382882883, + "34746": 0.7392792793, + "34747": 0.7402702703, + "34748": 0.7412612613, + "34749": 0.7422522523, + "34750": 0.7432432432, + "34751": 0.7442342342, + "34752": 0.7452252252, + "34753": 0.7462162162, + "34754": 0.7472072072, + "34755": 0.7481981982, + "34756": 0.7491891892, + "34757": 0.7501801802, + "34758": 0.7511711712, + "34759": 0.7521621622, + "34760": 0.7531531532, + "34761": 0.7541441441, + "34762": 0.7551351351, + "34763": 0.7561261261, + "34764": 0.7571171171, + "34765": 0.7581081081, + "34766": 0.7590990991, + "34767": 0.7600900901, + "34768": 0.7610810811, + "34769": 0.7620720721, + "34770": 0.7630630631, + "34771": 0.7640540541, + "34772": 0.765045045, + "34773": 0.766036036, + "34774": 0.767027027, + "34775": 0.768018018, + "34776": 0.769009009, + "34777": 0.77, + "34778": 0.770990991, + "34779": 0.771981982, + "34780": 0.772972973, + "34781": 0.773963964, + "34782": 0.774954955, + "34783": 0.7759459459, + "34784": 0.7769369369, + "34785": 0.7779279279, + "34786": 0.7789189189, + "34787": 0.7799099099, + "34788": 0.7809009009, + "34789": 0.7818918919, + "34790": 0.7828828829, + "34791": 0.7838738739, + "34792": 0.7848648649, + "34793": 0.7858558559, + "34794": 0.7868468468, + "34795": 0.7878378378, + "34796": 0.7888288288, + "34797": 0.7898198198, + "34798": 0.7908108108, + "34799": 0.7918018018, + "34800": 0.7927927928, + "34801": 0.7937837838, + "34802": 0.7947747748, + "34803": 0.7957657658, + "34804": 0.7967567568, + "34805": 0.7977477477, + "34806": 0.7987387387, + "34807": 0.7997297297, + "34808": 0.8007207207, + "34809": 0.8017117117, + "34810": 0.8027027027, + "34811": 0.8036936937, + "34812": 0.8046846847, + "34813": 0.8056756757, + "34814": 0.8066666667, + "34815": 0.8076576577, + "34816": 0.8086486486, + "34817": 0.8096396396, + "34818": 0.8106306306, + "34819": 0.8116216216, + "34820": 0.8126126126, + "34821": 0.8136036036, + "34822": 0.8145945946, + "34823": 0.8155855856, + "34824": 0.8165765766, + "34825": 0.8175675676, + "34826": 0.8185585586, + "34827": 0.8195495495, + "34828": 0.8205405405, + "34829": 0.8215315315, + "34830": 0.8225225225, + "34831": 0.8235135135, + "34832": 0.8245045045, + "34833": 0.8254954955, + "34834": 0.8264864865, + "34835": 0.8274774775, + "34836": 0.8284684685, + "34837": 0.8294594595, + "34838": 0.8304504505, + "34839": 0.8314414414, + "34840": 0.8324324324, + "34841": 0.8334234234, + "34842": 0.8344144144, + "34843": 0.8354054054, + "34844": 0.8363963964, + "34845": 0.8373873874, + "34846": 0.8383783784, + "34847": 0.8393693694, + "34848": 0.8403603604, + "34849": 0.8413513514, + "34850": 0.8423423423, + "34851": 0.8433333333, + "34852": 0.8443243243, + "34853": 0.8453153153, + "34854": 0.8463063063, + "34855": 0.8472972973, + "34856": 0.8482882883, + "34857": 0.8492792793, + "34858": 0.8502702703, + "34859": 0.8512612613, + "34860": 0.8522522523, + "34861": 0.8532432432, + "34862": 0.8542342342, + "34863": 0.8552252252, + "34864": 0.8562162162, + "34865": 0.8572072072, + "34866": 0.8581981982, + "34867": 0.8591891892, + "34868": 0.8601801802, + "34869": 0.8611711712, + "34870": 0.8621621622, + "34871": 0.8631531532, + "34872": 0.8641441441, + "34873": 0.8651351351, + "34874": 0.8661261261, + "34875": 0.8671171171, + "34876": 0.8681081081, + "34877": 0.8690990991, + "34878": 0.8700900901, + "34879": 0.8710810811, + "34880": 0.8720720721, + "34881": 0.8730630631, + "34882": 0.8740540541, + "34883": 0.875045045, + "34884": 0.876036036, + "34885": 0.877027027, + "34886": 0.878018018, + "34887": 0.879009009, + "34888": 0.88, + "34889": 0.880990991, + "34890": 0.881981982, + "34891": 0.882972973, + "34892": 0.883963964, + "34893": 0.884954955, + "34894": 0.8859459459, + "34895": 0.8869369369, + "34896": 0.8879279279, + "34897": 0.8889189189, + "34898": 0.8899099099, + "34899": 0.8909009009, + "34900": 0.8918918919, + "34901": 0.8928828829, + "34902": 0.8938738739, + "34903": 0.8948648649, + "34904": 0.8958558559, + "34905": 0.8968468468, + "34906": 0.8978378378, + "34907": 0.8988288288, + "34908": 0.8998198198, + "34909": 0.9008108108, + "34910": 0.9018018018, + "34911": 0.9027927928, + "34912": 0.9037837838, + "34913": 0.9047747748, + "34914": 0.9057657658, + "34915": 0.9067567568, + "34916": 0.9077477477, + "34917": 0.9087387387, + "34918": 0.9097297297, + "34919": 0.9107207207, + "34920": 0.9117117117, + "34921": 0.9127027027, + "34922": 0.9136936937, + "34923": 0.9146846847, + "34924": 0.9156756757, + "34925": 0.9166666667, + "34926": 0.9176576577, + "34927": 0.9186486486, + "34928": 0.9196396396, + "34929": 0.9206306306, + "34930": 0.9216216216, + "34931": 0.9226126126, + "34932": 0.9236036036, + "34933": 0.9245945946, + "34934": 0.9255855856, + "34935": 0.9265765766, + "34936": 0.9275675676, + "34937": 0.9285585586, + "34938": 0.9295495495, + "34939": 0.9305405405, + "34940": 0.9315315315, + "34941": 0.9325225225, + "34942": 0.9335135135, + "34943": 0.9345045045, + "34944": 0.9354954955, + "34945": 0.9364864865, + "34946": 0.9374774775, + "34947": 0.9384684685, + "34948": 0.9394594595, + "34949": 0.9404504505, + "34950": 0.9414414414, + "34951": 0.9424324324, + "34952": 0.9434234234, + "34953": 0.9444144144, + "34954": 0.9454054054, + "34955": 0.9463963964, + "34956": 0.9473873874, + "34957": 0.9483783784, + "34958": 0.9493693694, + "34959": 0.9503603604, + "34960": 0.9513513514, + "34961": 0.9523423423, + "34962": 0.9533333333, + "34963": 0.9543243243, + "34964": 0.9553153153, + "34965": 0.9563063063, + "34966": 0.9572972973, + "34967": 0.9582882883, + "34968": 0.9592792793, + "34969": 0.9602702703, + "34970": 0.9612612613, + "34971": 0.9622522523, + "34972": 0.9632432432, + "34973": 0.9642342342, + "34974": 0.9652252252, + "34975": 0.9662162162, + "34976": 0.9672072072, + "34977": 0.9681981982, + "34978": 0.9691891892, + "34979": 0.9701801802, + "34980": 0.9711711712, + "34981": 0.9721621622, + "34982": 0.9731531532, + "34983": 0.9741441441, + "34984": 0.9751351351, + "34985": 0.9761261261, + "34986": 0.9771171171, + "34987": 0.9781081081, + "34988": 0.9790990991, + "34989": 0.9800900901, + "34990": 0.9810810811, + "34991": 0.9820720721, + "34992": 0.9830630631, + "34993": 0.9840540541, + "34994": 0.985045045, + "34995": 0.986036036, + "34996": 0.987027027, + "34997": 0.988018018, + "34998": 0.989009009, + "34999": 0.99, + "35000": 0.0, + "35001": 0.000990991, + "35002": 0.001981982, + "35003": 0.002972973, + "35004": 0.003963964, + "35005": 0.004954955, + "35006": 0.0059459459, + "35007": 0.0069369369, + "35008": 0.0079279279, + "35009": 0.0089189189, + "35010": 0.0099099099, + "35011": 0.0109009009, + "35012": 0.0118918919, + "35013": 0.0128828829, + "35014": 0.0138738739, + "35015": 0.0148648649, + "35016": 0.0158558559, + "35017": 0.0168468468, + "35018": 0.0178378378, + "35019": 0.0188288288, + "35020": 0.0198198198, + "35021": 0.0208108108, + "35022": 0.0218018018, + "35023": 0.0227927928, + "35024": 0.0237837838, + "35025": 0.0247747748, + "35026": 0.0257657658, + "35027": 0.0267567568, + "35028": 0.0277477477, + "35029": 0.0287387387, + "35030": 0.0297297297, + "35031": 0.0307207207, + "35032": 0.0317117117, + "35033": 0.0327027027, + "35034": 0.0336936937, + "35035": 0.0346846847, + "35036": 0.0356756757, + "35037": 0.0366666667, + "35038": 0.0376576577, + "35039": 0.0386486486, + "35040": 0.0396396396, + "35041": 0.0406306306, + "35042": 0.0416216216, + "35043": 0.0426126126, + "35044": 0.0436036036, + "35045": 0.0445945946, + "35046": 0.0455855856, + "35047": 0.0465765766, + "35048": 0.0475675676, + "35049": 0.0485585586, + "35050": 0.0495495495, + "35051": 0.0505405405, + "35052": 0.0515315315, + "35053": 0.0525225225, + "35054": 0.0535135135, + "35055": 0.0545045045, + "35056": 0.0554954955, + "35057": 0.0564864865, + "35058": 0.0574774775, + "35059": 0.0584684685, + "35060": 0.0594594595, + "35061": 0.0604504505, + "35062": 0.0614414414, + "35063": 0.0624324324, + "35064": 0.0634234234, + "35065": 0.0644144144, + "35066": 0.0654054054, + "35067": 0.0663963964, + "35068": 0.0673873874, + "35069": 0.0683783784, + "35070": 0.0693693694, + "35071": 0.0703603604, + "35072": 0.0713513514, + "35073": 0.0723423423, + "35074": 0.0733333333, + "35075": 0.0743243243, + "35076": 0.0753153153, + "35077": 0.0763063063, + "35078": 0.0772972973, + "35079": 0.0782882883, + "35080": 0.0792792793, + "35081": 0.0802702703, + "35082": 0.0812612613, + "35083": 0.0822522523, + "35084": 0.0832432432, + "35085": 0.0842342342, + "35086": 0.0852252252, + "35087": 0.0862162162, + "35088": 0.0872072072, + "35089": 0.0881981982, + "35090": 0.0891891892, + "35091": 0.0901801802, + "35092": 0.0911711712, + "35093": 0.0921621622, + "35094": 0.0931531532, + "35095": 0.0941441441, + "35096": 0.0951351351, + "35097": 0.0961261261, + "35098": 0.0971171171, + "35099": 0.0981081081, + "35100": 0.0990990991, + "35101": 0.1000900901, + "35102": 0.1010810811, + "35103": 0.1020720721, + "35104": 0.1030630631, + "35105": 0.1040540541, + "35106": 0.105045045, + "35107": 0.106036036, + "35108": 0.107027027, + "35109": 0.108018018, + "35110": 0.109009009, + "35111": 0.11, + "35112": 0.110990991, + "35113": 0.111981982, + "35114": 0.112972973, + "35115": 0.113963964, + "35116": 0.114954955, + "35117": 0.1159459459, + "35118": 0.1169369369, + "35119": 0.1179279279, + "35120": 0.1189189189, + "35121": 0.1199099099, + "35122": 0.1209009009, + "35123": 0.1218918919, + "35124": 0.1228828829, + "35125": 0.1238738739, + "35126": 0.1248648649, + "35127": 0.1258558559, + "35128": 0.1268468468, + "35129": 0.1278378378, + "35130": 0.1288288288, + "35131": 0.1298198198, + "35132": 0.1308108108, + "35133": 0.1318018018, + "35134": 0.1327927928, + "35135": 0.1337837838, + "35136": 0.1347747748, + "35137": 0.1357657658, + "35138": 0.1367567568, + "35139": 0.1377477477, + "35140": 0.1387387387, + "35141": 0.1397297297, + "35142": 0.1407207207, + "35143": 0.1417117117, + "35144": 0.1427027027, + "35145": 0.1436936937, + "35146": 0.1446846847, + "35147": 0.1456756757, + "35148": 0.1466666667, + "35149": 0.1476576577, + "35150": 0.1486486486, + "35151": 0.1496396396, + "35152": 0.1506306306, + "35153": 0.1516216216, + "35154": 0.1526126126, + "35155": 0.1536036036, + "35156": 0.1545945946, + "35157": 0.1555855856, + "35158": 0.1565765766, + "35159": 0.1575675676, + "35160": 0.1585585586, + "35161": 0.1595495495, + "35162": 0.1605405405, + "35163": 0.1615315315, + "35164": 0.1625225225, + "35165": 0.1635135135, + "35166": 0.1645045045, + "35167": 0.1654954955, + "35168": 0.1664864865, + "35169": 0.1674774775, + "35170": 0.1684684685, + "35171": 0.1694594595, + "35172": 0.1704504505, + "35173": 0.1714414414, + "35174": 0.1724324324, + "35175": 0.1734234234, + "35176": 0.1744144144, + "35177": 0.1754054054, + "35178": 0.1763963964, + "35179": 0.1773873874, + "35180": 0.1783783784, + "35181": 0.1793693694, + "35182": 0.1803603604, + "35183": 0.1813513514, + "35184": 0.1823423423, + "35185": 0.1833333333, + "35186": 0.1843243243, + "35187": 0.1853153153, + "35188": 0.1863063063, + "35189": 0.1872972973, + "35190": 0.1882882883, + "35191": 0.1892792793, + "35192": 0.1902702703, + "35193": 0.1912612613, + "35194": 0.1922522523, + "35195": 0.1932432432, + "35196": 0.1942342342, + "35197": 0.1952252252, + "35198": 0.1962162162, + "35199": 0.1972072072, + "35200": 0.1981981982, + "35201": 0.1991891892, + "35202": 0.2001801802, + "35203": 0.2011711712, + "35204": 0.2021621622, + "35205": 0.2031531532, + "35206": 0.2041441441, + "35207": 0.2051351351, + "35208": 0.2061261261, + "35209": 0.2071171171, + "35210": 0.2081081081, + "35211": 0.2090990991, + "35212": 0.2100900901, + "35213": 0.2110810811, + "35214": 0.2120720721, + "35215": 0.2130630631, + "35216": 0.2140540541, + "35217": 0.215045045, + "35218": 0.216036036, + "35219": 0.217027027, + "35220": 0.218018018, + "35221": 0.219009009, + "35222": 0.22, + "35223": 0.220990991, + "35224": 0.221981982, + "35225": 0.222972973, + "35226": 0.223963964, + "35227": 0.224954955, + "35228": 0.2259459459, + "35229": 0.2269369369, + "35230": 0.2279279279, + "35231": 0.2289189189, + "35232": 0.2299099099, + "35233": 0.2309009009, + "35234": 0.2318918919, + "35235": 0.2328828829, + "35236": 0.2338738739, + "35237": 0.2348648649, + "35238": 0.2358558559, + "35239": 0.2368468468, + "35240": 0.2378378378, + "35241": 0.2388288288, + "35242": 0.2398198198, + "35243": 0.2408108108, + "35244": 0.2418018018, + "35245": 0.2427927928, + "35246": 0.2437837838, + "35247": 0.2447747748, + "35248": 0.2457657658, + "35249": 0.2467567568, + "35250": 0.2477477477, + "35251": 0.2487387387, + "35252": 0.2497297297, + "35253": 0.2507207207, + "35254": 0.2517117117, + "35255": 0.2527027027, + "35256": 0.2536936937, + "35257": 0.2546846847, + "35258": 0.2556756757, + "35259": 0.2566666667, + "35260": 0.2576576577, + "35261": 0.2586486486, + "35262": 0.2596396396, + "35263": 0.2606306306, + "35264": 0.2616216216, + "35265": 0.2626126126, + "35266": 0.2636036036, + "35267": 0.2645945946, + "35268": 0.2655855856, + "35269": 0.2665765766, + "35270": 0.2675675676, + "35271": 0.2685585586, + "35272": 0.2695495495, + "35273": 0.2705405405, + "35274": 0.2715315315, + "35275": 0.2725225225, + "35276": 0.2735135135, + "35277": 0.2745045045, + "35278": 0.2754954955, + "35279": 0.2764864865, + "35280": 0.2774774775, + "35281": 0.2784684685, + "35282": 0.2794594595, + "35283": 0.2804504505, + "35284": 0.2814414414, + "35285": 0.2824324324, + "35286": 0.2834234234, + "35287": 0.2844144144, + "35288": 0.2854054054, + "35289": 0.2863963964, + "35290": 0.2873873874, + "35291": 0.2883783784, + "35292": 0.2893693694, + "35293": 0.2903603604, + "35294": 0.2913513514, + "35295": 0.2923423423, + "35296": 0.2933333333, + "35297": 0.2943243243, + "35298": 0.2953153153, + "35299": 0.2963063063, + "35300": 0.2972972973, + "35301": 0.2982882883, + "35302": 0.2992792793, + "35303": 0.3002702703, + "35304": 0.3012612613, + "35305": 0.3022522523, + "35306": 0.3032432432, + "35307": 0.3042342342, + "35308": 0.3052252252, + "35309": 0.3062162162, + "35310": 0.3072072072, + "35311": 0.3081981982, + "35312": 0.3091891892, + "35313": 0.3101801802, + "35314": 0.3111711712, + "35315": 0.3121621622, + "35316": 0.3131531532, + "35317": 0.3141441441, + "35318": 0.3151351351, + "35319": 0.3161261261, + "35320": 0.3171171171, + "35321": 0.3181081081, + "35322": 0.3190990991, + "35323": 0.3200900901, + "35324": 0.3210810811, + "35325": 0.3220720721, + "35326": 0.3230630631, + "35327": 0.3240540541, + "35328": 0.325045045, + "35329": 0.326036036, + "35330": 0.327027027, + "35331": 0.328018018, + "35332": 0.329009009, + "35333": 0.33, + "35334": 0.330990991, + "35335": 0.331981982, + "35336": 0.332972973, + "35337": 0.333963964, + "35338": 0.334954955, + "35339": 0.3359459459, + "35340": 0.3369369369, + "35341": 0.3379279279, + "35342": 0.3389189189, + "35343": 0.3399099099, + "35344": 0.3409009009, + "35345": 0.3418918919, + "35346": 0.3428828829, + "35347": 0.3438738739, + "35348": 0.3448648649, + "35349": 0.3458558559, + "35350": 0.3468468468, + "35351": 0.3478378378, + "35352": 0.3488288288, + "35353": 0.3498198198, + "35354": 0.3508108108, + "35355": 0.3518018018, + "35356": 0.3527927928, + "35357": 0.3537837838, + "35358": 0.3547747748, + "35359": 0.3557657658, + "35360": 0.3567567568, + "35361": 0.3577477477, + "35362": 0.3587387387, + "35363": 0.3597297297, + "35364": 0.3607207207, + "35365": 0.3617117117, + "35366": 0.3627027027, + "35367": 0.3636936937, + "35368": 0.3646846847, + "35369": 0.3656756757, + "35370": 0.3666666667, + "35371": 0.3676576577, + "35372": 0.3686486486, + "35373": 0.3696396396, + "35374": 0.3706306306, + "35375": 0.3716216216, + "35376": 0.3726126126, + "35377": 0.3736036036, + "35378": 0.3745945946, + "35379": 0.3755855856, + "35380": 0.3765765766, + "35381": 0.3775675676, + "35382": 0.3785585586, + "35383": 0.3795495495, + "35384": 0.3805405405, + "35385": 0.3815315315, + "35386": 0.3825225225, + "35387": 0.3835135135, + "35388": 0.3845045045, + "35389": 0.3854954955, + "35390": 0.3864864865, + "35391": 0.3874774775, + "35392": 0.3884684685, + "35393": 0.3894594595, + "35394": 0.3904504505, + "35395": 0.3914414414, + "35396": 0.3924324324, + "35397": 0.3934234234, + "35398": 0.3944144144, + "35399": 0.3954054054, + "35400": 0.3963963964, + "35401": 0.3973873874, + "35402": 0.3983783784, + "35403": 0.3993693694, + "35404": 0.4003603604, + "35405": 0.4013513514, + "35406": 0.4023423423, + "35407": 0.4033333333, + "35408": 0.4043243243, + "35409": 0.4053153153, + "35410": 0.4063063063, + "35411": 0.4072972973, + "35412": 0.4082882883, + "35413": 0.4092792793, + "35414": 0.4102702703, + "35415": 0.4112612613, + "35416": 0.4122522523, + "35417": 0.4132432432, + "35418": 0.4142342342, + "35419": 0.4152252252, + "35420": 0.4162162162, + "35421": 0.4172072072, + "35422": 0.4181981982, + "35423": 0.4191891892, + "35424": 0.4201801802, + "35425": 0.4211711712, + "35426": 0.4221621622, + "35427": 0.4231531532, + "35428": 0.4241441441, + "35429": 0.4251351351, + "35430": 0.4261261261, + "35431": 0.4271171171, + "35432": 0.4281081081, + "35433": 0.4290990991, + "35434": 0.4300900901, + "35435": 0.4310810811, + "35436": 0.4320720721, + "35437": 0.4330630631, + "35438": 0.4340540541, + "35439": 0.435045045, + "35440": 0.436036036, + "35441": 0.437027027, + "35442": 0.438018018, + "35443": 0.439009009, + "35444": 0.44, + "35445": 0.440990991, + "35446": 0.441981982, + "35447": 0.442972973, + "35448": 0.443963964, + "35449": 0.444954955, + "35450": 0.4459459459, + "35451": 0.4469369369, + "35452": 0.4479279279, + "35453": 0.4489189189, + "35454": 0.4499099099, + "35455": 0.4509009009, + "35456": 0.4518918919, + "35457": 0.4528828829, + "35458": 0.4538738739, + "35459": 0.4548648649, + "35460": 0.4558558559, + "35461": 0.4568468468, + "35462": 0.4578378378, + "35463": 0.4588288288, + "35464": 0.4598198198, + "35465": 0.4608108108, + "35466": 0.4618018018, + "35467": 0.4627927928, + "35468": 0.4637837838, + "35469": 0.4647747748, + "35470": 0.4657657658, + "35471": 0.4667567568, + "35472": 0.4677477477, + "35473": 0.4687387387, + "35474": 0.4697297297, + "35475": 0.4707207207, + "35476": 0.4717117117, + "35477": 0.4727027027, + "35478": 0.4736936937, + "35479": 0.4746846847, + "35480": 0.4756756757, + "35481": 0.4766666667, + "35482": 0.4776576577, + "35483": 0.4786486486, + "35484": 0.4796396396, + "35485": 0.4806306306, + "35486": 0.4816216216, + "35487": 0.4826126126, + "35488": 0.4836036036, + "35489": 0.4845945946, + "35490": 0.4855855856, + "35491": 0.4865765766, + "35492": 0.4875675676, + "35493": 0.4885585586, + "35494": 0.4895495495, + "35495": 0.4905405405, + "35496": 0.4915315315, + "35497": 0.4925225225, + "35498": 0.4935135135, + "35499": 0.4945045045, + "35500": 0.4954954955, + "35501": 0.4964864865, + "35502": 0.4974774775, + "35503": 0.4984684685, + "35504": 0.4994594595, + "35505": 0.5004504505, + "35506": 0.5014414414, + "35507": 0.5024324324, + "35508": 0.5034234234, + "35509": 0.5044144144, + "35510": 0.5054054054, + "35511": 0.5063963964, + "35512": 0.5073873874, + "35513": 0.5083783784, + "35514": 0.5093693694, + "35515": 0.5103603604, + "35516": 0.5113513514, + "35517": 0.5123423423, + "35518": 0.5133333333, + "35519": 0.5143243243, + "35520": 0.5153153153, + "35521": 0.5163063063, + "35522": 0.5172972973, + "35523": 0.5182882883, + "35524": 0.5192792793, + "35525": 0.5202702703, + "35526": 0.5212612613, + "35527": 0.5222522523, + "35528": 0.5232432432, + "35529": 0.5242342342, + "35530": 0.5252252252, + "35531": 0.5262162162, + "35532": 0.5272072072, + "35533": 0.5281981982, + "35534": 0.5291891892, + "35535": 0.5301801802, + "35536": 0.5311711712, + "35537": 0.5321621622, + "35538": 0.5331531532, + "35539": 0.5341441441, + "35540": 0.5351351351, + "35541": 0.5361261261, + "35542": 0.5371171171, + "35543": 0.5381081081, + "35544": 0.5390990991, + "35545": 0.5400900901, + "35546": 0.5410810811, + "35547": 0.5420720721, + "35548": 0.5430630631, + "35549": 0.5440540541, + "35550": 0.545045045, + "35551": 0.546036036, + "35552": 0.547027027, + "35553": 0.548018018, + "35554": 0.549009009, + "35555": 0.55, + "35556": 0.550990991, + "35557": 0.551981982, + "35558": 0.552972973, + "35559": 0.553963964, + "35560": 0.554954955, + "35561": 0.5559459459, + "35562": 0.5569369369, + "35563": 0.5579279279, + "35564": 0.5589189189, + "35565": 0.5599099099, + "35566": 0.5609009009, + "35567": 0.5618918919, + "35568": 0.5628828829, + "35569": 0.5638738739, + "35570": 0.5648648649, + "35571": 0.5658558559, + "35572": 0.5668468468, + "35573": 0.5678378378, + "35574": 0.5688288288, + "35575": 0.5698198198, + "35576": 0.5708108108, + "35577": 0.5718018018, + "35578": 0.5727927928, + "35579": 0.5737837838, + "35580": 0.5747747748, + "35581": 0.5757657658, + "35582": 0.5767567568, + "35583": 0.5777477477, + "35584": 0.5787387387, + "35585": 0.5797297297, + "35586": 0.5807207207, + "35587": 0.5817117117, + "35588": 0.5827027027, + "35589": 0.5836936937, + "35590": 0.5846846847, + "35591": 0.5856756757, + "35592": 0.5866666667, + "35593": 0.5876576577, + "35594": 0.5886486486, + "35595": 0.5896396396, + "35596": 0.5906306306, + "35597": 0.5916216216, + "35598": 0.5926126126, + "35599": 0.5936036036, + "35600": 0.5945945946, + "35601": 0.5955855856, + "35602": 0.5965765766, + "35603": 0.5975675676, + "35604": 0.5985585586, + "35605": 0.5995495495, + "35606": 0.6005405405, + "35607": 0.6015315315, + "35608": 0.6025225225, + "35609": 0.6035135135, + "35610": 0.6045045045, + "35611": 0.6054954955, + "35612": 0.6064864865, + "35613": 0.6074774775, + "35614": 0.6084684685, + "35615": 0.6094594595, + "35616": 0.6104504505, + "35617": 0.6114414414, + "35618": 0.6124324324, + "35619": 0.6134234234, + "35620": 0.6144144144, + "35621": 0.6154054054, + "35622": 0.6163963964, + "35623": 0.6173873874, + "35624": 0.6183783784, + "35625": 0.6193693694, + "35626": 0.6203603604, + "35627": 0.6213513514, + "35628": 0.6223423423, + "35629": 0.6233333333, + "35630": 0.6243243243, + "35631": 0.6253153153, + "35632": 0.6263063063, + "35633": 0.6272972973, + "35634": 0.6282882883, + "35635": 0.6292792793, + "35636": 0.6302702703, + "35637": 0.6312612613, + "35638": 0.6322522523, + "35639": 0.6332432432, + "35640": 0.6342342342, + "35641": 0.6352252252, + "35642": 0.6362162162, + "35643": 0.6372072072, + "35644": 0.6381981982, + "35645": 0.6391891892, + "35646": 0.6401801802, + "35647": 0.6411711712, + "35648": 0.6421621622, + "35649": 0.6431531532, + "35650": 0.6441441441, + "35651": 0.6451351351, + "35652": 0.6461261261, + "35653": 0.6471171171, + "35654": 0.6481081081, + "35655": 0.6490990991, + "35656": 0.6500900901, + "35657": 0.6510810811, + "35658": 0.6520720721, + "35659": 0.6530630631, + "35660": 0.6540540541, + "35661": 0.655045045, + "35662": 0.656036036, + "35663": 0.657027027, + "35664": 0.658018018, + "35665": 0.659009009, + "35666": 0.66, + "35667": 0.660990991, + "35668": 0.661981982, + "35669": 0.662972973, + "35670": 0.663963964, + "35671": 0.664954955, + "35672": 0.6659459459, + "35673": 0.6669369369, + "35674": 0.6679279279, + "35675": 0.6689189189, + "35676": 0.6699099099, + "35677": 0.6709009009, + "35678": 0.6718918919, + "35679": 0.6728828829, + "35680": 0.6738738739, + "35681": 0.6748648649, + "35682": 0.6758558559, + "35683": 0.6768468468, + "35684": 0.6778378378, + "35685": 0.6788288288, + "35686": 0.6798198198, + "35687": 0.6808108108, + "35688": 0.6818018018, + "35689": 0.6827927928, + "35690": 0.6837837838, + "35691": 0.6847747748, + "35692": 0.6857657658, + "35693": 0.6867567568, + "35694": 0.6877477477, + "35695": 0.6887387387, + "35696": 0.6897297297, + "35697": 0.6907207207, + "35698": 0.6917117117, + "35699": 0.6927027027, + "35700": 0.6936936937, + "35701": 0.6946846847, + "35702": 0.6956756757, + "35703": 0.6966666667, + "35704": 0.6976576577, + "35705": 0.6986486486, + "35706": 0.6996396396, + "35707": 0.7006306306, + "35708": 0.7016216216, + "35709": 0.7026126126, + "35710": 0.7036036036, + "35711": 0.7045945946, + "35712": 0.7055855856, + "35713": 0.7065765766, + "35714": 0.7075675676, + "35715": 0.7085585586, + "35716": 0.7095495495, + "35717": 0.7105405405, + "35718": 0.7115315315, + "35719": 0.7125225225, + "35720": 0.7135135135, + "35721": 0.7145045045, + "35722": 0.7154954955, + "35723": 0.7164864865, + "35724": 0.7174774775, + "35725": 0.7184684685, + "35726": 0.7194594595, + "35727": 0.7204504505, + "35728": 0.7214414414, + "35729": 0.7224324324, + "35730": 0.7234234234, + "35731": 0.7244144144, + "35732": 0.7254054054, + "35733": 0.7263963964, + "35734": 0.7273873874, + "35735": 0.7283783784, + "35736": 0.7293693694, + "35737": 0.7303603604, + "35738": 0.7313513514, + "35739": 0.7323423423, + "35740": 0.7333333333, + "35741": 0.7343243243, + "35742": 0.7353153153, + "35743": 0.7363063063, + "35744": 0.7372972973, + "35745": 0.7382882883, + "35746": 0.7392792793, + "35747": 0.7402702703, + "35748": 0.7412612613, + "35749": 0.7422522523, + "35750": 0.7432432432, + "35751": 0.7442342342, + "35752": 0.7452252252, + "35753": 0.7462162162, + "35754": 0.7472072072, + "35755": 0.7481981982, + "35756": 0.7491891892, + "35757": 0.7501801802, + "35758": 0.7511711712, + "35759": 0.7521621622, + "35760": 0.7531531532, + "35761": 0.7541441441, + "35762": 0.7551351351, + "35763": 0.7561261261, + "35764": 0.7571171171, + "35765": 0.7581081081, + "35766": 0.7590990991, + "35767": 0.7600900901, + "35768": 0.7610810811, + "35769": 0.7620720721, + "35770": 0.7630630631, + "35771": 0.7640540541, + "35772": 0.765045045, + "35773": 0.766036036, + "35774": 0.767027027, + "35775": 0.768018018, + "35776": 0.769009009, + "35777": 0.77, + "35778": 0.770990991, + "35779": 0.771981982, + "35780": 0.772972973, + "35781": 0.773963964, + "35782": 0.774954955, + "35783": 0.7759459459, + "35784": 0.7769369369, + "35785": 0.7779279279, + "35786": 0.7789189189, + "35787": 0.7799099099, + "35788": 0.7809009009, + "35789": 0.7818918919, + "35790": 0.7828828829, + "35791": 0.7838738739, + "35792": 0.7848648649, + "35793": 0.7858558559, + "35794": 0.7868468468, + "35795": 0.7878378378, + "35796": 0.7888288288, + "35797": 0.7898198198, + "35798": 0.7908108108, + "35799": 0.7918018018, + "35800": 0.7927927928, + "35801": 0.7937837838, + "35802": 0.7947747748, + "35803": 0.7957657658, + "35804": 0.7967567568, + "35805": 0.7977477477, + "35806": 0.7987387387, + "35807": 0.7997297297, + "35808": 0.8007207207, + "35809": 0.8017117117, + "35810": 0.8027027027, + "35811": 0.8036936937, + "35812": 0.8046846847, + "35813": 0.8056756757, + "35814": 0.8066666667, + "35815": 0.8076576577, + "35816": 0.8086486486, + "35817": 0.8096396396, + "35818": 0.8106306306, + "35819": 0.8116216216, + "35820": 0.8126126126, + "35821": 0.8136036036, + "35822": 0.8145945946, + "35823": 0.8155855856, + "35824": 0.8165765766, + "35825": 0.8175675676, + "35826": 0.8185585586, + "35827": 0.8195495495, + "35828": 0.8205405405, + "35829": 0.8215315315, + "35830": 0.8225225225, + "35831": 0.8235135135, + "35832": 0.8245045045, + "35833": 0.8254954955, + "35834": 0.8264864865, + "35835": 0.8274774775, + "35836": 0.8284684685, + "35837": 0.8294594595, + "35838": 0.8304504505, + "35839": 0.8314414414, + "35840": 0.8324324324, + "35841": 0.8334234234, + "35842": 0.8344144144, + "35843": 0.8354054054, + "35844": 0.8363963964, + "35845": 0.8373873874, + "35846": 0.8383783784, + "35847": 0.8393693694, + "35848": 0.8403603604, + "35849": 0.8413513514, + "35850": 0.8423423423, + "35851": 0.8433333333, + "35852": 0.8443243243, + "35853": 0.8453153153, + "35854": 0.8463063063, + "35855": 0.8472972973, + "35856": 0.8482882883, + "35857": 0.8492792793, + "35858": 0.8502702703, + "35859": 0.8512612613, + "35860": 0.8522522523, + "35861": 0.8532432432, + "35862": 0.8542342342, + "35863": 0.8552252252, + "35864": 0.8562162162, + "35865": 0.8572072072, + "35866": 0.8581981982, + "35867": 0.8591891892, + "35868": 0.8601801802, + "35869": 0.8611711712, + "35870": 0.8621621622, + "35871": 0.8631531532, + "35872": 0.8641441441, + "35873": 0.8651351351, + "35874": 0.8661261261, + "35875": 0.8671171171, + "35876": 0.8681081081, + "35877": 0.8690990991, + "35878": 0.8700900901, + "35879": 0.8710810811, + "35880": 0.8720720721, + "35881": 0.8730630631, + "35882": 0.8740540541, + "35883": 0.875045045, + "35884": 0.876036036, + "35885": 0.877027027, + "35886": 0.878018018, + "35887": 0.879009009, + "35888": 0.88, + "35889": 0.880990991, + "35890": 0.881981982, + "35891": 0.882972973, + "35892": 0.883963964, + "35893": 0.884954955, + "35894": 0.8859459459, + "35895": 0.8869369369, + "35896": 0.8879279279, + "35897": 0.8889189189, + "35898": 0.8899099099, + "35899": 0.8909009009, + "35900": 0.8918918919, + "35901": 0.8928828829, + "35902": 0.8938738739, + "35903": 0.8948648649, + "35904": 0.8958558559, + "35905": 0.8968468468, + "35906": 0.8978378378, + "35907": 0.8988288288, + "35908": 0.8998198198, + "35909": 0.9008108108, + "35910": 0.9018018018, + "35911": 0.9027927928, + "35912": 0.9037837838, + "35913": 0.9047747748, + "35914": 0.9057657658, + "35915": 0.9067567568, + "35916": 0.9077477477, + "35917": 0.9087387387, + "35918": 0.9097297297, + "35919": 0.9107207207, + "35920": 0.9117117117, + "35921": 0.9127027027, + "35922": 0.9136936937, + "35923": 0.9146846847, + "35924": 0.9156756757, + "35925": 0.9166666667, + "35926": 0.9176576577, + "35927": 0.9186486486, + "35928": 0.9196396396, + "35929": 0.9206306306, + "35930": 0.9216216216, + "35931": 0.9226126126, + "35932": 0.9236036036, + "35933": 0.9245945946, + "35934": 0.9255855856, + "35935": 0.9265765766, + "35936": 0.9275675676, + "35937": 0.9285585586, + "35938": 0.9295495495, + "35939": 0.9305405405, + "35940": 0.9315315315, + "35941": 0.9325225225, + "35942": 0.9335135135, + "35943": 0.9345045045, + "35944": 0.9354954955, + "35945": 0.9364864865, + "35946": 0.9374774775, + "35947": 0.9384684685, + "35948": 0.9394594595, + "35949": 0.9404504505, + "35950": 0.9414414414, + "35951": 0.9424324324, + "35952": 0.9434234234, + "35953": 0.9444144144, + "35954": 0.9454054054, + "35955": 0.9463963964, + "35956": 0.9473873874, + "35957": 0.9483783784, + "35958": 0.9493693694, + "35959": 0.9503603604, + "35960": 0.9513513514, + "35961": 0.9523423423, + "35962": 0.9533333333, + "35963": 0.9543243243, + "35964": 0.9553153153, + "35965": 0.9563063063, + "35966": 0.9572972973, + "35967": 0.9582882883, + "35968": 0.9592792793, + "35969": 0.9602702703, + "35970": 0.9612612613, + "35971": 0.9622522523, + "35972": 0.9632432432, + "35973": 0.9642342342, + "35974": 0.9652252252, + "35975": 0.9662162162, + "35976": 0.9672072072, + "35977": 0.9681981982, + "35978": 0.9691891892, + "35979": 0.9701801802, + "35980": 0.9711711712, + "35981": 0.9721621622, + "35982": 0.9731531532, + "35983": 0.9741441441, + "35984": 0.9751351351, + "35985": 0.9761261261, + "35986": 0.9771171171, + "35987": 0.9781081081, + "35988": 0.9790990991, + "35989": 0.9800900901, + "35990": 0.9810810811, + "35991": 0.9820720721, + "35992": 0.9830630631, + "35993": 0.9840540541, + "35994": 0.985045045, + "35995": 0.986036036, + "35996": 0.987027027, + "35997": 0.988018018, + "35998": 0.989009009, + "35999": 0.99, + "36000": 0.0, + "36001": 0.000990991, + "36002": 0.001981982, + "36003": 0.002972973, + "36004": 0.003963964, + "36005": 0.004954955, + "36006": 0.0059459459, + "36007": 0.0069369369, + "36008": 0.0079279279, + "36009": 0.0089189189, + "36010": 0.0099099099, + "36011": 0.0109009009, + "36012": 0.0118918919, + "36013": 0.0128828829, + "36014": 0.0138738739, + "36015": 0.0148648649, + "36016": 0.0158558559, + "36017": 0.0168468468, + "36018": 0.0178378378, + "36019": 0.0188288288, + "36020": 0.0198198198, + "36021": 0.0208108108, + "36022": 0.0218018018, + "36023": 0.0227927928, + "36024": 0.0237837838, + "36025": 0.0247747748, + "36026": 0.0257657658, + "36027": 0.0267567568, + "36028": 0.0277477477, + "36029": 0.0287387387, + "36030": 0.0297297297, + "36031": 0.0307207207, + "36032": 0.0317117117, + "36033": 0.0327027027, + "36034": 0.0336936937, + "36035": 0.0346846847, + "36036": 0.0356756757, + "36037": 0.0366666667, + "36038": 0.0376576577, + "36039": 0.0386486486, + "36040": 0.0396396396, + "36041": 0.0406306306, + "36042": 0.0416216216, + "36043": 0.0426126126, + "36044": 0.0436036036, + "36045": 0.0445945946, + "36046": 0.0455855856, + "36047": 0.0465765766, + "36048": 0.0475675676, + "36049": 0.0485585586, + "36050": 0.0495495495, + "36051": 0.0505405405, + "36052": 0.0515315315, + "36053": 0.0525225225, + "36054": 0.0535135135, + "36055": 0.0545045045, + "36056": 0.0554954955, + "36057": 0.0564864865, + "36058": 0.0574774775, + "36059": 0.0584684685, + "36060": 0.0594594595, + "36061": 0.0604504505, + "36062": 0.0614414414, + "36063": 0.0624324324, + "36064": 0.0634234234, + "36065": 0.0644144144, + "36066": 0.0654054054, + "36067": 0.0663963964, + "36068": 0.0673873874, + "36069": 0.0683783784, + "36070": 0.0693693694, + "36071": 0.0703603604, + "36072": 0.0713513514, + "36073": 0.0723423423, + "36074": 0.0733333333, + "36075": 0.0743243243, + "36076": 0.0753153153, + "36077": 0.0763063063, + "36078": 0.0772972973, + "36079": 0.0782882883, + "36080": 0.0792792793, + "36081": 0.0802702703, + "36082": 0.0812612613, + "36083": 0.0822522523, + "36084": 0.0832432432, + "36085": 0.0842342342, + "36086": 0.0852252252, + "36087": 0.0862162162, + "36088": 0.0872072072, + "36089": 0.0881981982, + "36090": 0.0891891892, + "36091": 0.0901801802, + "36092": 0.0911711712, + "36093": 0.0921621622, + "36094": 0.0931531532, + "36095": 0.0941441441, + "36096": 0.0951351351, + "36097": 0.0961261261, + "36098": 0.0971171171, + "36099": 0.0981081081, + "36100": 0.0990990991, + "36101": 0.1000900901, + "36102": 0.1010810811, + "36103": 0.1020720721, + "36104": 0.1030630631, + "36105": 0.1040540541, + "36106": 0.105045045, + "36107": 0.106036036, + "36108": 0.107027027, + "36109": 0.108018018, + "36110": 0.109009009, + "36111": 0.11, + "36112": 0.110990991, + "36113": 0.111981982, + "36114": 0.112972973, + "36115": 0.113963964, + "36116": 0.114954955, + "36117": 0.1159459459, + "36118": 0.1169369369, + "36119": 0.1179279279, + "36120": 0.1189189189, + "36121": 0.1199099099, + "36122": 0.1209009009, + "36123": 0.1218918919, + "36124": 0.1228828829, + "36125": 0.1238738739, + "36126": 0.1248648649, + "36127": 0.1258558559, + "36128": 0.1268468468, + "36129": 0.1278378378, + "36130": 0.1288288288, + "36131": 0.1298198198, + "36132": 0.1308108108, + "36133": 0.1318018018, + "36134": 0.1327927928, + "36135": 0.1337837838, + "36136": 0.1347747748, + "36137": 0.1357657658, + "36138": 0.1367567568, + "36139": 0.1377477477, + "36140": 0.1387387387, + "36141": 0.1397297297, + "36142": 0.1407207207, + "36143": 0.1417117117, + "36144": 0.1427027027, + "36145": 0.1436936937, + "36146": 0.1446846847, + "36147": 0.1456756757, + "36148": 0.1466666667, + "36149": 0.1476576577, + "36150": 0.1486486486, + "36151": 0.1496396396, + "36152": 0.1506306306, + "36153": 0.1516216216, + "36154": 0.1526126126, + "36155": 0.1536036036, + "36156": 0.1545945946, + "36157": 0.1555855856, + "36158": 0.1565765766, + "36159": 0.1575675676, + "36160": 0.1585585586, + "36161": 0.1595495495, + "36162": 0.1605405405, + "36163": 0.1615315315, + "36164": 0.1625225225, + "36165": 0.1635135135, + "36166": 0.1645045045, + "36167": 0.1654954955, + "36168": 0.1664864865, + "36169": 0.1674774775, + "36170": 0.1684684685, + "36171": 0.1694594595, + "36172": 0.1704504505, + "36173": 0.1714414414, + "36174": 0.1724324324, + "36175": 0.1734234234, + "36176": 0.1744144144, + "36177": 0.1754054054, + "36178": 0.1763963964, + "36179": 0.1773873874, + "36180": 0.1783783784, + "36181": 0.1793693694, + "36182": 0.1803603604, + "36183": 0.1813513514, + "36184": 0.1823423423, + "36185": 0.1833333333, + "36186": 0.1843243243, + "36187": 0.1853153153, + "36188": 0.1863063063, + "36189": 0.1872972973, + "36190": 0.1882882883, + "36191": 0.1892792793, + "36192": 0.1902702703, + "36193": 0.1912612613, + "36194": 0.1922522523, + "36195": 0.1932432432, + "36196": 0.1942342342, + "36197": 0.1952252252, + "36198": 0.1962162162, + "36199": 0.1972072072, + "36200": 0.1981981982, + "36201": 0.1991891892, + "36202": 0.2001801802, + "36203": 0.2011711712, + "36204": 0.2021621622, + "36205": 0.2031531532, + "36206": 0.2041441441, + "36207": 0.2051351351, + "36208": 0.2061261261, + "36209": 0.2071171171, + "36210": 0.2081081081, + "36211": 0.2090990991, + "36212": 0.2100900901, + "36213": 0.2110810811, + "36214": 0.2120720721, + "36215": 0.2130630631, + "36216": 0.2140540541, + "36217": 0.215045045, + "36218": 0.216036036, + "36219": 0.217027027, + "36220": 0.218018018, + "36221": 0.219009009, + "36222": 0.22, + "36223": 0.220990991, + "36224": 0.221981982, + "36225": 0.222972973, + "36226": 0.223963964, + "36227": 0.224954955, + "36228": 0.2259459459, + "36229": 0.2269369369, + "36230": 0.2279279279, + "36231": 0.2289189189, + "36232": 0.2299099099, + "36233": 0.2309009009, + "36234": 0.2318918919, + "36235": 0.2328828829, + "36236": 0.2338738739, + "36237": 0.2348648649, + "36238": 0.2358558559, + "36239": 0.2368468468, + "36240": 0.2378378378, + "36241": 0.2388288288, + "36242": 0.2398198198, + "36243": 0.2408108108, + "36244": 0.2418018018, + "36245": 0.2427927928, + "36246": 0.2437837838, + "36247": 0.2447747748, + "36248": 0.2457657658, + "36249": 0.2467567568, + "36250": 0.2477477477, + "36251": 0.2487387387, + "36252": 0.2497297297, + "36253": 0.2507207207, + "36254": 0.2517117117, + "36255": 0.2527027027, + "36256": 0.2536936937, + "36257": 0.2546846847, + "36258": 0.2556756757, + "36259": 0.2566666667, + "36260": 0.2576576577, + "36261": 0.2586486486, + "36262": 0.2596396396, + "36263": 0.2606306306, + "36264": 0.2616216216, + "36265": 0.2626126126, + "36266": 0.2636036036, + "36267": 0.2645945946, + "36268": 0.2655855856, + "36269": 0.2665765766, + "36270": 0.2675675676, + "36271": 0.2685585586, + "36272": 0.2695495495, + "36273": 0.2705405405, + "36274": 0.2715315315, + "36275": 0.2725225225, + "36276": 0.2735135135, + "36277": 0.2745045045, + "36278": 0.2754954955, + "36279": 0.2764864865, + "36280": 0.2774774775, + "36281": 0.2784684685, + "36282": 0.2794594595, + "36283": 0.2804504505, + "36284": 0.2814414414, + "36285": 0.2824324324, + "36286": 0.2834234234, + "36287": 0.2844144144, + "36288": 0.2854054054, + "36289": 0.2863963964, + "36290": 0.2873873874, + "36291": 0.2883783784, + "36292": 0.2893693694, + "36293": 0.2903603604, + "36294": 0.2913513514, + "36295": 0.2923423423, + "36296": 0.2933333333, + "36297": 0.2943243243, + "36298": 0.2953153153, + "36299": 0.2963063063, + "36300": 0.2972972973, + "36301": 0.2982882883, + "36302": 0.2992792793, + "36303": 0.3002702703, + "36304": 0.3012612613, + "36305": 0.3022522523, + "36306": 0.3032432432, + "36307": 0.3042342342, + "36308": 0.3052252252, + "36309": 0.3062162162, + "36310": 0.3072072072, + "36311": 0.3081981982, + "36312": 0.3091891892, + "36313": 0.3101801802, + "36314": 0.3111711712, + "36315": 0.3121621622, + "36316": 0.3131531532, + "36317": 0.3141441441, + "36318": 0.3151351351, + "36319": 0.3161261261, + "36320": 0.3171171171, + "36321": 0.3181081081, + "36322": 0.3190990991, + "36323": 0.3200900901, + "36324": 0.3210810811, + "36325": 0.3220720721, + "36326": 0.3230630631, + "36327": 0.3240540541, + "36328": 0.325045045, + "36329": 0.326036036, + "36330": 0.327027027, + "36331": 0.328018018, + "36332": 0.329009009, + "36333": 0.33, + "36334": 0.330990991, + "36335": 0.331981982, + "36336": 0.332972973, + "36337": 0.333963964, + "36338": 0.334954955, + "36339": 0.3359459459, + "36340": 0.3369369369, + "36341": 0.3379279279, + "36342": 0.3389189189, + "36343": 0.3399099099, + "36344": 0.3409009009, + "36345": 0.3418918919, + "36346": 0.3428828829, + "36347": 0.3438738739, + "36348": 0.3448648649, + "36349": 0.3458558559, + "36350": 0.3468468468, + "36351": 0.3478378378, + "36352": 0.3488288288, + "36353": 0.3498198198, + "36354": 0.3508108108, + "36355": 0.3518018018, + "36356": 0.3527927928, + "36357": 0.3537837838, + "36358": 0.3547747748, + "36359": 0.3557657658, + "36360": 0.3567567568, + "36361": 0.3577477477, + "36362": 0.3587387387, + "36363": 0.3597297297, + "36364": 0.3607207207, + "36365": 0.3617117117, + "36366": 0.3627027027, + "36367": 0.3636936937, + "36368": 0.3646846847, + "36369": 0.3656756757, + "36370": 0.3666666667, + "36371": 0.3676576577, + "36372": 0.3686486486, + "36373": 0.3696396396, + "36374": 0.3706306306, + "36375": 0.3716216216, + "36376": 0.3726126126, + "36377": 0.3736036036, + "36378": 0.3745945946, + "36379": 0.3755855856, + "36380": 0.3765765766, + "36381": 0.3775675676, + "36382": 0.3785585586, + "36383": 0.3795495495, + "36384": 0.3805405405, + "36385": 0.3815315315, + "36386": 0.3825225225, + "36387": 0.3835135135, + "36388": 0.3845045045, + "36389": 0.3854954955, + "36390": 0.3864864865, + "36391": 0.3874774775, + "36392": 0.3884684685, + "36393": 0.3894594595, + "36394": 0.3904504505, + "36395": 0.3914414414, + "36396": 0.3924324324, + "36397": 0.3934234234, + "36398": 0.3944144144, + "36399": 0.3954054054, + "36400": 0.3963963964, + "36401": 0.3973873874, + "36402": 0.3983783784, + "36403": 0.3993693694, + "36404": 0.4003603604, + "36405": 0.4013513514, + "36406": 0.4023423423, + "36407": 0.4033333333, + "36408": 0.4043243243, + "36409": 0.4053153153, + "36410": 0.4063063063, + "36411": 0.4072972973, + "36412": 0.4082882883, + "36413": 0.4092792793, + "36414": 0.4102702703, + "36415": 0.4112612613, + "36416": 0.4122522523, + "36417": 0.4132432432, + "36418": 0.4142342342, + "36419": 0.4152252252, + "36420": 0.4162162162, + "36421": 0.4172072072, + "36422": 0.4181981982, + "36423": 0.4191891892, + "36424": 0.4201801802, + "36425": 0.4211711712, + "36426": 0.4221621622, + "36427": 0.4231531532, + "36428": 0.4241441441, + "36429": 0.4251351351, + "36430": 0.4261261261, + "36431": 0.4271171171, + "36432": 0.4281081081, + "36433": 0.4290990991, + "36434": 0.4300900901, + "36435": 0.4310810811, + "36436": 0.4320720721, + "36437": 0.4330630631, + "36438": 0.4340540541, + "36439": 0.435045045, + "36440": 0.436036036, + "36441": 0.437027027, + "36442": 0.438018018, + "36443": 0.439009009, + "36444": 0.44, + "36445": 0.440990991, + "36446": 0.441981982, + "36447": 0.442972973, + "36448": 0.443963964, + "36449": 0.444954955, + "36450": 0.4459459459, + "36451": 0.4469369369, + "36452": 0.4479279279, + "36453": 0.4489189189, + "36454": 0.4499099099, + "36455": 0.4509009009, + "36456": 0.4518918919, + "36457": 0.4528828829, + "36458": 0.4538738739, + "36459": 0.4548648649, + "36460": 0.4558558559, + "36461": 0.4568468468, + "36462": 0.4578378378, + "36463": 0.4588288288, + "36464": 0.4598198198, + "36465": 0.4608108108, + "36466": 0.4618018018, + "36467": 0.4627927928, + "36468": 0.4637837838, + "36469": 0.4647747748, + "36470": 0.4657657658, + "36471": 0.4667567568, + "36472": 0.4677477477, + "36473": 0.4687387387, + "36474": 0.4697297297, + "36475": 0.4707207207, + "36476": 0.4717117117, + "36477": 0.4727027027, + "36478": 0.4736936937, + "36479": 0.4746846847, + "36480": 0.4756756757, + "36481": 0.4766666667, + "36482": 0.4776576577, + "36483": 0.4786486486, + "36484": 0.4796396396, + "36485": 0.4806306306, + "36486": 0.4816216216, + "36487": 0.4826126126, + "36488": 0.4836036036, + "36489": 0.4845945946, + "36490": 0.4855855856, + "36491": 0.4865765766, + "36492": 0.4875675676, + "36493": 0.4885585586, + "36494": 0.4895495495, + "36495": 0.4905405405, + "36496": 0.4915315315, + "36497": 0.4925225225, + "36498": 0.4935135135, + "36499": 0.4945045045, + "36500": 0.4954954955, + "36501": 0.4964864865, + "36502": 0.4974774775, + "36503": 0.4984684685, + "36504": 0.4994594595, + "36505": 0.5004504505, + "36506": 0.5014414414, + "36507": 0.5024324324, + "36508": 0.5034234234, + "36509": 0.5044144144, + "36510": 0.5054054054, + "36511": 0.5063963964, + "36512": 0.5073873874, + "36513": 0.5083783784, + "36514": 0.5093693694, + "36515": 0.5103603604, + "36516": 0.5113513514, + "36517": 0.5123423423, + "36518": 0.5133333333, + "36519": 0.5143243243, + "36520": 0.5153153153, + "36521": 0.5163063063, + "36522": 0.5172972973, + "36523": 0.5182882883, + "36524": 0.5192792793, + "36525": 0.5202702703, + "36526": 0.5212612613, + "36527": 0.5222522523, + "36528": 0.5232432432, + "36529": 0.5242342342, + "36530": 0.5252252252, + "36531": 0.5262162162, + "36532": 0.5272072072, + "36533": 0.5281981982, + "36534": 0.5291891892, + "36535": 0.5301801802, + "36536": 0.5311711712, + "36537": 0.5321621622, + "36538": 0.5331531532, + "36539": 0.5341441441, + "36540": 0.5351351351, + "36541": 0.5361261261, + "36542": 0.5371171171, + "36543": 0.5381081081, + "36544": 0.5390990991, + "36545": 0.5400900901, + "36546": 0.5410810811, + "36547": 0.5420720721, + "36548": 0.5430630631, + "36549": 0.5440540541, + "36550": 0.545045045, + "36551": 0.546036036, + "36552": 0.547027027, + "36553": 0.548018018, + "36554": 0.549009009, + "36555": 0.55, + "36556": 0.550990991, + "36557": 0.551981982, + "36558": 0.552972973, + "36559": 0.553963964, + "36560": 0.554954955, + "36561": 0.5559459459, + "36562": 0.5569369369, + "36563": 0.5579279279, + "36564": 0.5589189189, + "36565": 0.5599099099, + "36566": 0.5609009009, + "36567": 0.5618918919, + "36568": 0.5628828829, + "36569": 0.5638738739, + "36570": 0.5648648649, + "36571": 0.5658558559, + "36572": 0.5668468468, + "36573": 0.5678378378, + "36574": 0.5688288288, + "36575": 0.5698198198, + "36576": 0.5708108108, + "36577": 0.5718018018, + "36578": 0.5727927928, + "36579": 0.5737837838, + "36580": 0.5747747748, + "36581": 0.5757657658, + "36582": 0.5767567568, + "36583": 0.5777477477, + "36584": 0.5787387387, + "36585": 0.5797297297, + "36586": 0.5807207207, + "36587": 0.5817117117, + "36588": 0.5827027027, + "36589": 0.5836936937, + "36590": 0.5846846847, + "36591": 0.5856756757, + "36592": 0.5866666667, + "36593": 0.5876576577, + "36594": 0.5886486486, + "36595": 0.5896396396, + "36596": 0.5906306306, + "36597": 0.5916216216, + "36598": 0.5926126126, + "36599": 0.5936036036, + "36600": 0.5945945946, + "36601": 0.5955855856, + "36602": 0.5965765766, + "36603": 0.5975675676, + "36604": 0.5985585586, + "36605": 0.5995495495, + "36606": 0.6005405405, + "36607": 0.6015315315, + "36608": 0.6025225225, + "36609": 0.6035135135, + "36610": 0.6045045045, + "36611": 0.6054954955, + "36612": 0.6064864865, + "36613": 0.6074774775, + "36614": 0.6084684685, + "36615": 0.6094594595, + "36616": 0.6104504505, + "36617": 0.6114414414, + "36618": 0.6124324324, + "36619": 0.6134234234, + "36620": 0.6144144144, + "36621": 0.6154054054, + "36622": 0.6163963964, + "36623": 0.6173873874, + "36624": 0.6183783784, + "36625": 0.6193693694, + "36626": 0.6203603604, + "36627": 0.6213513514, + "36628": 0.6223423423, + "36629": 0.6233333333, + "36630": 0.6243243243, + "36631": 0.6253153153, + "36632": 0.6263063063, + "36633": 0.6272972973, + "36634": 0.6282882883, + "36635": 0.6292792793, + "36636": 0.6302702703, + "36637": 0.6312612613, + "36638": 0.6322522523, + "36639": 0.6332432432, + "36640": 0.6342342342, + "36641": 0.6352252252, + "36642": 0.6362162162, + "36643": 0.6372072072, + "36644": 0.6381981982, + "36645": 0.6391891892, + "36646": 0.6401801802, + "36647": 0.6411711712, + "36648": 0.6421621622, + "36649": 0.6431531532, + "36650": 0.6441441441, + "36651": 0.6451351351, + "36652": 0.6461261261, + "36653": 0.6471171171, + "36654": 0.6481081081, + "36655": 0.6490990991, + "36656": 0.6500900901, + "36657": 0.6510810811, + "36658": 0.6520720721, + "36659": 0.6530630631, + "36660": 0.6540540541, + "36661": 0.655045045, + "36662": 0.656036036, + "36663": 0.657027027, + "36664": 0.658018018, + "36665": 0.659009009, + "36666": 0.66, + "36667": 0.660990991, + "36668": 0.661981982, + "36669": 0.662972973, + "36670": 0.663963964, + "36671": 0.664954955, + "36672": 0.6659459459, + "36673": 0.6669369369, + "36674": 0.6679279279, + "36675": 0.6689189189, + "36676": 0.6699099099, + "36677": 0.6709009009, + "36678": 0.6718918919, + "36679": 0.6728828829, + "36680": 0.6738738739, + "36681": 0.6748648649, + "36682": 0.6758558559, + "36683": 0.6768468468, + "36684": 0.6778378378, + "36685": 0.6788288288, + "36686": 0.6798198198, + "36687": 0.6808108108, + "36688": 0.6818018018, + "36689": 0.6827927928, + "36690": 0.6837837838, + "36691": 0.6847747748, + "36692": 0.6857657658, + "36693": 0.6867567568, + "36694": 0.6877477477, + "36695": 0.6887387387, + "36696": 0.6897297297, + "36697": 0.6907207207, + "36698": 0.6917117117, + "36699": 0.6927027027, + "36700": 0.6936936937, + "36701": 0.6946846847, + "36702": 0.6956756757, + "36703": 0.6966666667, + "36704": 0.6976576577, + "36705": 0.6986486486, + "36706": 0.6996396396, + "36707": 0.7006306306, + "36708": 0.7016216216, + "36709": 0.7026126126, + "36710": 0.7036036036, + "36711": 0.7045945946, + "36712": 0.7055855856, + "36713": 0.7065765766, + "36714": 0.7075675676, + "36715": 0.7085585586, + "36716": 0.7095495495, + "36717": 0.7105405405, + "36718": 0.7115315315, + "36719": 0.7125225225, + "36720": 0.7135135135, + "36721": 0.7145045045, + "36722": 0.7154954955, + "36723": 0.7164864865, + "36724": 0.7174774775, + "36725": 0.7184684685, + "36726": 0.7194594595, + "36727": 0.7204504505, + "36728": 0.7214414414, + "36729": 0.7224324324, + "36730": 0.7234234234, + "36731": 0.7244144144, + "36732": 0.7254054054, + "36733": 0.7263963964, + "36734": 0.7273873874, + "36735": 0.7283783784, + "36736": 0.7293693694, + "36737": 0.7303603604, + "36738": 0.7313513514, + "36739": 0.7323423423, + "36740": 0.7333333333, + "36741": 0.7343243243, + "36742": 0.7353153153, + "36743": 0.7363063063, + "36744": 0.7372972973, + "36745": 0.7382882883, + "36746": 0.7392792793, + "36747": 0.7402702703, + "36748": 0.7412612613, + "36749": 0.7422522523, + "36750": 0.7432432432, + "36751": 0.7442342342, + "36752": 0.7452252252, + "36753": 0.7462162162, + "36754": 0.7472072072, + "36755": 0.7481981982, + "36756": 0.7491891892, + "36757": 0.7501801802, + "36758": 0.7511711712, + "36759": 0.7521621622, + "36760": 0.7531531532, + "36761": 0.7541441441, + "36762": 0.7551351351, + "36763": 0.7561261261, + "36764": 0.7571171171, + "36765": 0.7581081081, + "36766": 0.7590990991, + "36767": 0.7600900901, + "36768": 0.7610810811, + "36769": 0.7620720721, + "36770": 0.7630630631, + "36771": 0.7640540541, + "36772": 0.765045045, + "36773": 0.766036036, + "36774": 0.767027027, + "36775": 0.768018018, + "36776": 0.769009009, + "36777": 0.77, + "36778": 0.770990991, + "36779": 0.771981982, + "36780": 0.772972973, + "36781": 0.773963964, + "36782": 0.774954955, + "36783": 0.7759459459, + "36784": 0.7769369369, + "36785": 0.7779279279, + "36786": 0.7789189189, + "36787": 0.7799099099, + "36788": 0.7809009009, + "36789": 0.7818918919, + "36790": 0.7828828829, + "36791": 0.7838738739, + "36792": 0.7848648649, + "36793": 0.7858558559, + "36794": 0.7868468468, + "36795": 0.7878378378, + "36796": 0.7888288288, + "36797": 0.7898198198, + "36798": 0.7908108108, + "36799": 0.7918018018, + "36800": 0.7927927928, + "36801": 0.7937837838, + "36802": 0.7947747748, + "36803": 0.7957657658, + "36804": 0.7967567568, + "36805": 0.7977477477, + "36806": 0.7987387387, + "36807": 0.7997297297, + "36808": 0.8007207207, + "36809": 0.8017117117, + "36810": 0.8027027027, + "36811": 0.8036936937, + "36812": 0.8046846847, + "36813": 0.8056756757, + "36814": 0.8066666667, + "36815": 0.8076576577, + "36816": 0.8086486486, + "36817": 0.8096396396, + "36818": 0.8106306306, + "36819": 0.8116216216, + "36820": 0.8126126126, + "36821": 0.8136036036, + "36822": 0.8145945946, + "36823": 0.8155855856, + "36824": 0.8165765766, + "36825": 0.8175675676, + "36826": 0.8185585586, + "36827": 0.8195495495, + "36828": 0.8205405405, + "36829": 0.8215315315, + "36830": 0.8225225225, + "36831": 0.8235135135, + "36832": 0.8245045045, + "36833": 0.8254954955, + "36834": 0.8264864865, + "36835": 0.8274774775, + "36836": 0.8284684685, + "36837": 0.8294594595, + "36838": 0.8304504505, + "36839": 0.8314414414, + "36840": 0.8324324324, + "36841": 0.8334234234, + "36842": 0.8344144144, + "36843": 0.8354054054, + "36844": 0.8363963964, + "36845": 0.8373873874, + "36846": 0.8383783784, + "36847": 0.8393693694, + "36848": 0.8403603604, + "36849": 0.8413513514, + "36850": 0.8423423423, + "36851": 0.8433333333, + "36852": 0.8443243243, + "36853": 0.8453153153, + "36854": 0.8463063063, + "36855": 0.8472972973, + "36856": 0.8482882883, + "36857": 0.8492792793, + "36858": 0.8502702703, + "36859": 0.8512612613, + "36860": 0.8522522523, + "36861": 0.8532432432, + "36862": 0.8542342342, + "36863": 0.8552252252, + "36864": 0.8562162162, + "36865": 0.8572072072, + "36866": 0.8581981982, + "36867": 0.8591891892, + "36868": 0.8601801802, + "36869": 0.8611711712, + "36870": 0.8621621622, + "36871": 0.8631531532, + "36872": 0.8641441441, + "36873": 0.8651351351, + "36874": 0.8661261261, + "36875": 0.8671171171, + "36876": 0.8681081081, + "36877": 0.8690990991, + "36878": 0.8700900901, + "36879": 0.8710810811, + "36880": 0.8720720721, + "36881": 0.8730630631, + "36882": 0.8740540541, + "36883": 0.875045045, + "36884": 0.876036036, + "36885": 0.877027027, + "36886": 0.878018018, + "36887": 0.879009009, + "36888": 0.88, + "36889": 0.880990991, + "36890": 0.881981982, + "36891": 0.882972973, + "36892": 0.883963964, + "36893": 0.884954955, + "36894": 0.8859459459, + "36895": 0.8869369369, + "36896": 0.8879279279, + "36897": 0.8889189189, + "36898": 0.8899099099, + "36899": 0.8909009009, + "36900": 0.8918918919, + "36901": 0.8928828829, + "36902": 0.8938738739, + "36903": 0.8948648649, + "36904": 0.8958558559, + "36905": 0.8968468468, + "36906": 0.8978378378, + "36907": 0.8988288288, + "36908": 0.8998198198, + "36909": 0.9008108108, + "36910": 0.9018018018, + "36911": 0.9027927928, + "36912": 0.9037837838, + "36913": 0.9047747748, + "36914": 0.9057657658, + "36915": 0.9067567568, + "36916": 0.9077477477, + "36917": 0.9087387387, + "36918": 0.9097297297, + "36919": 0.9107207207, + "36920": 0.9117117117, + "36921": 0.9127027027, + "36922": 0.9136936937, + "36923": 0.9146846847, + "36924": 0.9156756757, + "36925": 0.9166666667, + "36926": 0.9176576577, + "36927": 0.9186486486, + "36928": 0.9196396396, + "36929": 0.9206306306, + "36930": 0.9216216216, + "36931": 0.9226126126, + "36932": 0.9236036036, + "36933": 0.9245945946, + "36934": 0.9255855856, + "36935": 0.9265765766, + "36936": 0.9275675676, + "36937": 0.9285585586, + "36938": 0.9295495495, + "36939": 0.9305405405, + "36940": 0.9315315315, + "36941": 0.9325225225, + "36942": 0.9335135135, + "36943": 0.9345045045, + "36944": 0.9354954955, + "36945": 0.9364864865, + "36946": 0.9374774775, + "36947": 0.9384684685, + "36948": 0.9394594595, + "36949": 0.9404504505, + "36950": 0.9414414414, + "36951": 0.9424324324, + "36952": 0.9434234234, + "36953": 0.9444144144, + "36954": 0.9454054054, + "36955": 0.9463963964, + "36956": 0.9473873874, + "36957": 0.9483783784, + "36958": 0.9493693694, + "36959": 0.9503603604, + "36960": 0.9513513514, + "36961": 0.9523423423, + "36962": 0.9533333333, + "36963": 0.9543243243, + "36964": 0.9553153153, + "36965": 0.9563063063, + "36966": 0.9572972973, + "36967": 0.9582882883, + "36968": 0.9592792793, + "36969": 0.9602702703, + "36970": 0.9612612613, + "36971": 0.9622522523, + "36972": 0.9632432432, + "36973": 0.9642342342, + "36974": 0.9652252252, + "36975": 0.9662162162, + "36976": 0.9672072072, + "36977": 0.9681981982, + "36978": 0.9691891892, + "36979": 0.9701801802, + "36980": 0.9711711712, + "36981": 0.9721621622, + "36982": 0.9731531532, + "36983": 0.9741441441, + "36984": 0.9751351351, + "36985": 0.9761261261, + "36986": 0.9771171171, + "36987": 0.9781081081, + "36988": 0.9790990991, + "36989": 0.9800900901, + "36990": 0.9810810811, + "36991": 0.9820720721, + "36992": 0.9830630631, + "36993": 0.9840540541, + "36994": 0.985045045, + "36995": 0.986036036, + "36996": 0.987027027, + "36997": 0.988018018, + "36998": 0.989009009, + "36999": 0.99, + "37000": 0.0, + "37001": 0.000990991, + "37002": 0.001981982, + "37003": 0.002972973, + "37004": 0.003963964, + "37005": 0.004954955, + "37006": 0.0059459459, + "37007": 0.0069369369, + "37008": 0.0079279279, + "37009": 0.0089189189, + "37010": 0.0099099099, + "37011": 0.0109009009, + "37012": 0.0118918919, + "37013": 0.0128828829, + "37014": 0.0138738739, + "37015": 0.0148648649, + "37016": 0.0158558559, + "37017": 0.0168468468, + "37018": 0.0178378378, + "37019": 0.0188288288, + "37020": 0.0198198198, + "37021": 0.0208108108, + "37022": 0.0218018018, + "37023": 0.0227927928, + "37024": 0.0237837838, + "37025": 0.0247747748, + "37026": 0.0257657658, + "37027": 0.0267567568, + "37028": 0.0277477477, + "37029": 0.0287387387, + "37030": 0.0297297297, + "37031": 0.0307207207, + "37032": 0.0317117117, + "37033": 0.0327027027, + "37034": 0.0336936937, + "37035": 0.0346846847, + "37036": 0.0356756757, + "37037": 0.0366666667, + "37038": 0.0376576577, + "37039": 0.0386486486, + "37040": 0.0396396396, + "37041": 0.0406306306, + "37042": 0.0416216216, + "37043": 0.0426126126, + "37044": 0.0436036036, + "37045": 0.0445945946, + "37046": 0.0455855856, + "37047": 0.0465765766, + "37048": 0.0475675676, + "37049": 0.0485585586, + "37050": 0.0495495495, + "37051": 0.0505405405, + "37052": 0.0515315315, + "37053": 0.0525225225, + "37054": 0.0535135135, + "37055": 0.0545045045, + "37056": 0.0554954955, + "37057": 0.0564864865, + "37058": 0.0574774775, + "37059": 0.0584684685, + "37060": 0.0594594595, + "37061": 0.0604504505, + "37062": 0.0614414414, + "37063": 0.0624324324, + "37064": 0.0634234234, + "37065": 0.0644144144, + "37066": 0.0654054054, + "37067": 0.0663963964, + "37068": 0.0673873874, + "37069": 0.0683783784, + "37070": 0.0693693694, + "37071": 0.0703603604, + "37072": 0.0713513514, + "37073": 0.0723423423, + "37074": 0.0733333333, + "37075": 0.0743243243, + "37076": 0.0753153153, + "37077": 0.0763063063, + "37078": 0.0772972973, + "37079": 0.0782882883, + "37080": 0.0792792793, + "37081": 0.0802702703, + "37082": 0.0812612613, + "37083": 0.0822522523, + "37084": 0.0832432432, + "37085": 0.0842342342, + "37086": 0.0852252252, + "37087": 0.0862162162, + "37088": 0.0872072072, + "37089": 0.0881981982, + "37090": 0.0891891892, + "37091": 0.0901801802, + "37092": 0.0911711712, + "37093": 0.0921621622, + "37094": 0.0931531532, + "37095": 0.0941441441, + "37096": 0.0951351351, + "37097": 0.0961261261, + "37098": 0.0971171171, + "37099": 0.0981081081, + "37100": 0.0990990991, + "37101": 0.1000900901, + "37102": 0.1010810811, + "37103": 0.1020720721, + "37104": 0.1030630631, + "37105": 0.1040540541, + "37106": 0.105045045, + "37107": 0.106036036, + "37108": 0.107027027, + "37109": 0.108018018, + "37110": 0.109009009, + "37111": 0.11, + "37112": 0.110990991, + "37113": 0.111981982, + "37114": 0.112972973, + "37115": 0.113963964, + "37116": 0.114954955, + "37117": 0.1159459459, + "37118": 0.1169369369, + "37119": 0.1179279279, + "37120": 0.1189189189, + "37121": 0.1199099099, + "37122": 0.1209009009, + "37123": 0.1218918919, + "37124": 0.1228828829, + "37125": 0.1238738739, + "37126": 0.1248648649, + "37127": 0.1258558559, + "37128": 0.1268468468, + "37129": 0.1278378378, + "37130": 0.1288288288, + "37131": 0.1298198198, + "37132": 0.1308108108, + "37133": 0.1318018018, + "37134": 0.1327927928, + "37135": 0.1337837838, + "37136": 0.1347747748, + "37137": 0.1357657658, + "37138": 0.1367567568, + "37139": 0.1377477477, + "37140": 0.1387387387, + "37141": 0.1397297297, + "37142": 0.1407207207, + "37143": 0.1417117117, + "37144": 0.1427027027, + "37145": 0.1436936937, + "37146": 0.1446846847, + "37147": 0.1456756757, + "37148": 0.1466666667, + "37149": 0.1476576577, + "37150": 0.1486486486, + "37151": 0.1496396396, + "37152": 0.1506306306, + "37153": 0.1516216216, + "37154": 0.1526126126, + "37155": 0.1536036036, + "37156": 0.1545945946, + "37157": 0.1555855856, + "37158": 0.1565765766, + "37159": 0.1575675676, + "37160": 0.1585585586, + "37161": 0.1595495495, + "37162": 0.1605405405, + "37163": 0.1615315315, + "37164": 0.1625225225, + "37165": 0.1635135135, + "37166": 0.1645045045, + "37167": 0.1654954955, + "37168": 0.1664864865, + "37169": 0.1674774775, + "37170": 0.1684684685, + "37171": 0.1694594595, + "37172": 0.1704504505, + "37173": 0.1714414414, + "37174": 0.1724324324, + "37175": 0.1734234234, + "37176": 0.1744144144, + "37177": 0.1754054054, + "37178": 0.1763963964, + "37179": 0.1773873874, + "37180": 0.1783783784, + "37181": 0.1793693694, + "37182": 0.1803603604, + "37183": 0.1813513514, + "37184": 0.1823423423, + "37185": 0.1833333333, + "37186": 0.1843243243, + "37187": 0.1853153153, + "37188": 0.1863063063, + "37189": 0.1872972973, + "37190": 0.1882882883, + "37191": 0.1892792793, + "37192": 0.1902702703, + "37193": 0.1912612613, + "37194": 0.1922522523, + "37195": 0.1932432432, + "37196": 0.1942342342, + "37197": 0.1952252252, + "37198": 0.1962162162, + "37199": 0.1972072072, + "37200": 0.1981981982, + "37201": 0.1991891892, + "37202": 0.2001801802, + "37203": 0.2011711712, + "37204": 0.2021621622, + "37205": 0.2031531532, + "37206": 0.2041441441, + "37207": 0.2051351351, + "37208": 0.2061261261, + "37209": 0.2071171171, + "37210": 0.2081081081, + "37211": 0.2090990991, + "37212": 0.2100900901, + "37213": 0.2110810811, + "37214": 0.2120720721, + "37215": 0.2130630631, + "37216": 0.2140540541, + "37217": 0.215045045, + "37218": 0.216036036, + "37219": 0.217027027, + "37220": 0.218018018, + "37221": 0.219009009, + "37222": 0.22, + "37223": 0.220990991, + "37224": 0.221981982, + "37225": 0.222972973, + "37226": 0.223963964, + "37227": 0.224954955, + "37228": 0.2259459459, + "37229": 0.2269369369, + "37230": 0.2279279279, + "37231": 0.2289189189, + "37232": 0.2299099099, + "37233": 0.2309009009, + "37234": 0.2318918919, + "37235": 0.2328828829, + "37236": 0.2338738739, + "37237": 0.2348648649, + "37238": 0.2358558559, + "37239": 0.2368468468, + "37240": 0.2378378378, + "37241": 0.2388288288, + "37242": 0.2398198198, + "37243": 0.2408108108, + "37244": 0.2418018018, + "37245": 0.2427927928, + "37246": 0.2437837838, + "37247": 0.2447747748, + "37248": 0.2457657658, + "37249": 0.2467567568, + "37250": 0.2477477477, + "37251": 0.2487387387, + "37252": 0.2497297297, + "37253": 0.2507207207, + "37254": 0.2517117117, + "37255": 0.2527027027, + "37256": 0.2536936937, + "37257": 0.2546846847, + "37258": 0.2556756757, + "37259": 0.2566666667, + "37260": 0.2576576577, + "37261": 0.2586486486, + "37262": 0.2596396396, + "37263": 0.2606306306, + "37264": 0.2616216216, + "37265": 0.2626126126, + "37266": 0.2636036036, + "37267": 0.2645945946, + "37268": 0.2655855856, + "37269": 0.2665765766, + "37270": 0.2675675676, + "37271": 0.2685585586, + "37272": 0.2695495495, + "37273": 0.2705405405, + "37274": 0.2715315315, + "37275": 0.2725225225, + "37276": 0.2735135135, + "37277": 0.2745045045, + "37278": 0.2754954955, + "37279": 0.2764864865, + "37280": 0.2774774775, + "37281": 0.2784684685, + "37282": 0.2794594595, + "37283": 0.2804504505, + "37284": 0.2814414414, + "37285": 0.2824324324, + "37286": 0.2834234234, + "37287": 0.2844144144, + "37288": 0.2854054054, + "37289": 0.2863963964, + "37290": 0.2873873874, + "37291": 0.2883783784, + "37292": 0.2893693694, + "37293": 0.2903603604, + "37294": 0.2913513514, + "37295": 0.2923423423, + "37296": 0.2933333333, + "37297": 0.2943243243, + "37298": 0.2953153153, + "37299": 0.2963063063, + "37300": 0.2972972973, + "37301": 0.2982882883, + "37302": 0.2992792793, + "37303": 0.3002702703, + "37304": 0.3012612613, + "37305": 0.3022522523, + "37306": 0.3032432432, + "37307": 0.3042342342, + "37308": 0.3052252252, + "37309": 0.3062162162, + "37310": 0.3072072072, + "37311": 0.3081981982, + "37312": 0.3091891892, + "37313": 0.3101801802, + "37314": 0.3111711712, + "37315": 0.3121621622, + "37316": 0.3131531532, + "37317": 0.3141441441, + "37318": 0.3151351351, + "37319": 0.3161261261, + "37320": 0.3171171171, + "37321": 0.3181081081, + "37322": 0.3190990991, + "37323": 0.3200900901, + "37324": 0.3210810811, + "37325": 0.3220720721, + "37326": 0.3230630631, + "37327": 0.3240540541, + "37328": 0.325045045, + "37329": 0.326036036, + "37330": 0.327027027, + "37331": 0.328018018, + "37332": 0.329009009, + "37333": 0.33, + "37334": 0.330990991, + "37335": 0.331981982, + "37336": 0.332972973, + "37337": 0.333963964, + "37338": 0.334954955, + "37339": 0.3359459459, + "37340": 0.3369369369, + "37341": 0.3379279279, + "37342": 0.3389189189, + "37343": 0.3399099099, + "37344": 0.3409009009, + "37345": 0.3418918919, + "37346": 0.3428828829, + "37347": 0.3438738739, + "37348": 0.3448648649, + "37349": 0.3458558559, + "37350": 0.3468468468, + "37351": 0.3478378378, + "37352": 0.3488288288, + "37353": 0.3498198198, + "37354": 0.3508108108, + "37355": 0.3518018018, + "37356": 0.3527927928, + "37357": 0.3537837838, + "37358": 0.3547747748, + "37359": 0.3557657658, + "37360": 0.3567567568, + "37361": 0.3577477477, + "37362": 0.3587387387, + "37363": 0.3597297297, + "37364": 0.3607207207, + "37365": 0.3617117117, + "37366": 0.3627027027, + "37367": 0.3636936937, + "37368": 0.3646846847, + "37369": 0.3656756757, + "37370": 0.3666666667, + "37371": 0.3676576577, + "37372": 0.3686486486, + "37373": 0.3696396396, + "37374": 0.3706306306, + "37375": 0.3716216216, + "37376": 0.3726126126, + "37377": 0.3736036036, + "37378": 0.3745945946, + "37379": 0.3755855856, + "37380": 0.3765765766, + "37381": 0.3775675676, + "37382": 0.3785585586, + "37383": 0.3795495495, + "37384": 0.3805405405, + "37385": 0.3815315315, + "37386": 0.3825225225, + "37387": 0.3835135135, + "37388": 0.3845045045, + "37389": 0.3854954955, + "37390": 0.3864864865, + "37391": 0.3874774775, + "37392": 0.3884684685, + "37393": 0.3894594595, + "37394": 0.3904504505, + "37395": 0.3914414414, + "37396": 0.3924324324, + "37397": 0.3934234234, + "37398": 0.3944144144, + "37399": 0.3954054054, + "37400": 0.3963963964, + "37401": 0.3973873874, + "37402": 0.3983783784, + "37403": 0.3993693694, + "37404": 0.4003603604, + "37405": 0.4013513514, + "37406": 0.4023423423, + "37407": 0.4033333333, + "37408": 0.4043243243, + "37409": 0.4053153153, + "37410": 0.4063063063, + "37411": 0.4072972973, + "37412": 0.4082882883, + "37413": 0.4092792793, + "37414": 0.4102702703, + "37415": 0.4112612613, + "37416": 0.4122522523, + "37417": 0.4132432432, + "37418": 0.4142342342, + "37419": 0.4152252252, + "37420": 0.4162162162, + "37421": 0.4172072072, + "37422": 0.4181981982, + "37423": 0.4191891892, + "37424": 0.4201801802, + "37425": 0.4211711712, + "37426": 0.4221621622, + "37427": 0.4231531532, + "37428": 0.4241441441, + "37429": 0.4251351351, + "37430": 0.4261261261, + "37431": 0.4271171171, + "37432": 0.4281081081, + "37433": 0.4290990991, + "37434": 0.4300900901, + "37435": 0.4310810811, + "37436": 0.4320720721, + "37437": 0.4330630631, + "37438": 0.4340540541, + "37439": 0.435045045, + "37440": 0.436036036, + "37441": 0.437027027, + "37442": 0.438018018, + "37443": 0.439009009, + "37444": 0.44, + "37445": 0.440990991, + "37446": 0.441981982, + "37447": 0.442972973, + "37448": 0.443963964, + "37449": 0.444954955, + "37450": 0.4459459459, + "37451": 0.4469369369, + "37452": 0.4479279279, + "37453": 0.4489189189, + "37454": 0.4499099099, + "37455": 0.4509009009, + "37456": 0.4518918919, + "37457": 0.4528828829, + "37458": 0.4538738739, + "37459": 0.4548648649, + "37460": 0.4558558559, + "37461": 0.4568468468, + "37462": 0.4578378378, + "37463": 0.4588288288, + "37464": 0.4598198198, + "37465": 0.4608108108, + "37466": 0.4618018018, + "37467": 0.4627927928, + "37468": 0.4637837838, + "37469": 0.4647747748, + "37470": 0.4657657658, + "37471": 0.4667567568, + "37472": 0.4677477477, + "37473": 0.4687387387, + "37474": 0.4697297297, + "37475": 0.4707207207, + "37476": 0.4717117117, + "37477": 0.4727027027, + "37478": 0.4736936937, + "37479": 0.4746846847, + "37480": 0.4756756757, + "37481": 0.4766666667, + "37482": 0.4776576577, + "37483": 0.4786486486, + "37484": 0.4796396396, + "37485": 0.4806306306, + "37486": 0.4816216216, + "37487": 0.4826126126, + "37488": 0.4836036036, + "37489": 0.4845945946, + "37490": 0.4855855856, + "37491": 0.4865765766, + "37492": 0.4875675676, + "37493": 0.4885585586, + "37494": 0.4895495495, + "37495": 0.4905405405, + "37496": 0.4915315315, + "37497": 0.4925225225, + "37498": 0.4935135135, + "37499": 0.4945045045, + "37500": 0.4954954955, + "37501": 0.4964864865, + "37502": 0.4974774775, + "37503": 0.4984684685, + "37504": 0.4994594595, + "37505": 0.5004504505, + "37506": 0.5014414414, + "37507": 0.5024324324, + "37508": 0.5034234234, + "37509": 0.5044144144, + "37510": 0.5054054054, + "37511": 0.5063963964, + "37512": 0.5073873874, + "37513": 0.5083783784, + "37514": 0.5093693694, + "37515": 0.5103603604, + "37516": 0.5113513514, + "37517": 0.5123423423, + "37518": 0.5133333333, + "37519": 0.5143243243, + "37520": 0.5153153153, + "37521": 0.5163063063, + "37522": 0.5172972973, + "37523": 0.5182882883, + "37524": 0.5192792793, + "37525": 0.5202702703, + "37526": 0.5212612613, + "37527": 0.5222522523, + "37528": 0.5232432432, + "37529": 0.5242342342, + "37530": 0.5252252252, + "37531": 0.5262162162, + "37532": 0.5272072072, + "37533": 0.5281981982, + "37534": 0.5291891892, + "37535": 0.5301801802, + "37536": 0.5311711712, + "37537": 0.5321621622, + "37538": 0.5331531532, + "37539": 0.5341441441, + "37540": 0.5351351351, + "37541": 0.5361261261, + "37542": 0.5371171171, + "37543": 0.5381081081, + "37544": 0.5390990991, + "37545": 0.5400900901, + "37546": 0.5410810811, + "37547": 0.5420720721, + "37548": 0.5430630631, + "37549": 0.5440540541, + "37550": 0.545045045, + "37551": 0.546036036, + "37552": 0.547027027, + "37553": 0.548018018, + "37554": 0.549009009, + "37555": 0.55, + "37556": 0.550990991, + "37557": 0.551981982, + "37558": 0.552972973, + "37559": 0.553963964, + "37560": 0.554954955, + "37561": 0.5559459459, + "37562": 0.5569369369, + "37563": 0.5579279279, + "37564": 0.5589189189, + "37565": 0.5599099099, + "37566": 0.5609009009, + "37567": 0.5618918919, + "37568": 0.5628828829, + "37569": 0.5638738739, + "37570": 0.5648648649, + "37571": 0.5658558559, + "37572": 0.5668468468, + "37573": 0.5678378378, + "37574": 0.5688288288, + "37575": 0.5698198198, + "37576": 0.5708108108, + "37577": 0.5718018018, + "37578": 0.5727927928, + "37579": 0.5737837838, + "37580": 0.5747747748, + "37581": 0.5757657658, + "37582": 0.5767567568, + "37583": 0.5777477477, + "37584": 0.5787387387, + "37585": 0.5797297297, + "37586": 0.5807207207, + "37587": 0.5817117117, + "37588": 0.5827027027, + "37589": 0.5836936937, + "37590": 0.5846846847, + "37591": 0.5856756757, + "37592": 0.5866666667, + "37593": 0.5876576577, + "37594": 0.5886486486, + "37595": 0.5896396396, + "37596": 0.5906306306, + "37597": 0.5916216216, + "37598": 0.5926126126, + "37599": 0.5936036036, + "37600": 0.5945945946, + "37601": 0.5955855856, + "37602": 0.5965765766, + "37603": 0.5975675676, + "37604": 0.5985585586, + "37605": 0.5995495495, + "37606": 0.6005405405, + "37607": 0.6015315315, + "37608": 0.6025225225, + "37609": 0.6035135135, + "37610": 0.6045045045, + "37611": 0.6054954955, + "37612": 0.6064864865, + "37613": 0.6074774775, + "37614": 0.6084684685, + "37615": 0.6094594595, + "37616": 0.6104504505, + "37617": 0.6114414414, + "37618": 0.6124324324, + "37619": 0.6134234234, + "37620": 0.6144144144, + "37621": 0.6154054054, + "37622": 0.6163963964, + "37623": 0.6173873874, + "37624": 0.6183783784, + "37625": 0.6193693694, + "37626": 0.6203603604, + "37627": 0.6213513514, + "37628": 0.6223423423, + "37629": 0.6233333333, + "37630": 0.6243243243, + "37631": 0.6253153153, + "37632": 0.6263063063, + "37633": 0.6272972973, + "37634": 0.6282882883, + "37635": 0.6292792793, + "37636": 0.6302702703, + "37637": 0.6312612613, + "37638": 0.6322522523, + "37639": 0.6332432432, + "37640": 0.6342342342, + "37641": 0.6352252252, + "37642": 0.6362162162, + "37643": 0.6372072072, + "37644": 0.6381981982, + "37645": 0.6391891892, + "37646": 0.6401801802, + "37647": 0.6411711712, + "37648": 0.6421621622, + "37649": 0.6431531532, + "37650": 0.6441441441, + "37651": 0.6451351351, + "37652": 0.6461261261, + "37653": 0.6471171171, + "37654": 0.6481081081, + "37655": 0.6490990991, + "37656": 0.6500900901, + "37657": 0.6510810811, + "37658": 0.6520720721, + "37659": 0.6530630631, + "37660": 0.6540540541, + "37661": 0.655045045, + "37662": 0.656036036, + "37663": 0.657027027, + "37664": 0.658018018, + "37665": 0.659009009, + "37666": 0.66, + "37667": 0.660990991, + "37668": 0.661981982, + "37669": 0.662972973, + "37670": 0.663963964, + "37671": 0.664954955, + "37672": 0.6659459459, + "37673": 0.6669369369, + "37674": 0.6679279279, + "37675": 0.6689189189, + "37676": 0.6699099099, + "37677": 0.6709009009, + "37678": 0.6718918919, + "37679": 0.6728828829, + "37680": 0.6738738739, + "37681": 0.6748648649, + "37682": 0.6758558559, + "37683": 0.6768468468, + "37684": 0.6778378378, + "37685": 0.6788288288, + "37686": 0.6798198198, + "37687": 0.6808108108, + "37688": 0.6818018018, + "37689": 0.6827927928, + "37690": 0.6837837838, + "37691": 0.6847747748, + "37692": 0.6857657658, + "37693": 0.6867567568, + "37694": 0.6877477477, + "37695": 0.6887387387, + "37696": 0.6897297297, + "37697": 0.6907207207, + "37698": 0.6917117117, + "37699": 0.6927027027, + "37700": 0.6936936937, + "37701": 0.6946846847, + "37702": 0.6956756757, + "37703": 0.6966666667, + "37704": 0.6976576577, + "37705": 0.6986486486, + "37706": 0.6996396396, + "37707": 0.7006306306, + "37708": 0.7016216216, + "37709": 0.7026126126, + "37710": 0.7036036036, + "37711": 0.7045945946, + "37712": 0.7055855856, + "37713": 0.7065765766, + "37714": 0.7075675676, + "37715": 0.7085585586, + "37716": 0.7095495495, + "37717": 0.7105405405, + "37718": 0.7115315315, + "37719": 0.7125225225, + "37720": 0.7135135135, + "37721": 0.7145045045, + "37722": 0.7154954955, + "37723": 0.7164864865, + "37724": 0.7174774775, + "37725": 0.7184684685, + "37726": 0.7194594595, + "37727": 0.7204504505, + "37728": 0.7214414414, + "37729": 0.7224324324, + "37730": 0.7234234234, + "37731": 0.7244144144, + "37732": 0.7254054054, + "37733": 0.7263963964, + "37734": 0.7273873874, + "37735": 0.7283783784, + "37736": 0.7293693694, + "37737": 0.7303603604, + "37738": 0.7313513514, + "37739": 0.7323423423, + "37740": 0.7333333333, + "37741": 0.7343243243, + "37742": 0.7353153153, + "37743": 0.7363063063, + "37744": 0.7372972973, + "37745": 0.7382882883, + "37746": 0.7392792793, + "37747": 0.7402702703, + "37748": 0.7412612613, + "37749": 0.7422522523, + "37750": 0.7432432432, + "37751": 0.7442342342, + "37752": 0.7452252252, + "37753": 0.7462162162, + "37754": 0.7472072072, + "37755": 0.7481981982, + "37756": 0.7491891892, + "37757": 0.7501801802, + "37758": 0.7511711712, + "37759": 0.7521621622, + "37760": 0.7531531532, + "37761": 0.7541441441, + "37762": 0.7551351351, + "37763": 0.7561261261, + "37764": 0.7571171171, + "37765": 0.7581081081, + "37766": 0.7590990991, + "37767": 0.7600900901, + "37768": 0.7610810811, + "37769": 0.7620720721, + "37770": 0.7630630631, + "37771": 0.7640540541, + "37772": 0.765045045, + "37773": 0.766036036, + "37774": 0.767027027, + "37775": 0.768018018, + "37776": 0.769009009, + "37777": 0.77, + "37778": 0.770990991, + "37779": 0.771981982, + "37780": 0.772972973, + "37781": 0.773963964, + "37782": 0.774954955, + "37783": 0.7759459459, + "37784": 0.7769369369, + "37785": 0.7779279279, + "37786": 0.7789189189, + "37787": 0.7799099099, + "37788": 0.7809009009, + "37789": 0.7818918919, + "37790": 0.7828828829, + "37791": 0.7838738739, + "37792": 0.7848648649, + "37793": 0.7858558559, + "37794": 0.7868468468, + "37795": 0.7878378378, + "37796": 0.7888288288, + "37797": 0.7898198198, + "37798": 0.7908108108, + "37799": 0.7918018018, + "37800": 0.7927927928, + "37801": 0.7937837838, + "37802": 0.7947747748, + "37803": 0.7957657658, + "37804": 0.7967567568, + "37805": 0.7977477477, + "37806": 0.7987387387, + "37807": 0.7997297297, + "37808": 0.8007207207, + "37809": 0.8017117117, + "37810": 0.8027027027, + "37811": 0.8036936937, + "37812": 0.8046846847, + "37813": 0.8056756757, + "37814": 0.8066666667, + "37815": 0.8076576577, + "37816": 0.8086486486, + "37817": 0.8096396396, + "37818": 0.8106306306, + "37819": 0.8116216216, + "37820": 0.8126126126, + "37821": 0.8136036036, + "37822": 0.8145945946, + "37823": 0.8155855856, + "37824": 0.8165765766, + "37825": 0.8175675676, + "37826": 0.8185585586, + "37827": 0.8195495495, + "37828": 0.8205405405, + "37829": 0.8215315315, + "37830": 0.8225225225, + "37831": 0.8235135135, + "37832": 0.8245045045, + "37833": 0.8254954955, + "37834": 0.8264864865, + "37835": 0.8274774775, + "37836": 0.8284684685, + "37837": 0.8294594595, + "37838": 0.8304504505, + "37839": 0.8314414414, + "37840": 0.8324324324, + "37841": 0.8334234234, + "37842": 0.8344144144, + "37843": 0.8354054054, + "37844": 0.8363963964, + "37845": 0.8373873874, + "37846": 0.8383783784, + "37847": 0.8393693694, + "37848": 0.8403603604, + "37849": 0.8413513514, + "37850": 0.8423423423, + "37851": 0.8433333333, + "37852": 0.8443243243, + "37853": 0.8453153153, + "37854": 0.8463063063, + "37855": 0.8472972973, + "37856": 0.8482882883, + "37857": 0.8492792793, + "37858": 0.8502702703, + "37859": 0.8512612613, + "37860": 0.8522522523, + "37861": 0.8532432432, + "37862": 0.8542342342, + "37863": 0.8552252252, + "37864": 0.8562162162, + "37865": 0.8572072072, + "37866": 0.8581981982, + "37867": 0.8591891892, + "37868": 0.8601801802, + "37869": 0.8611711712, + "37870": 0.8621621622, + "37871": 0.8631531532, + "37872": 0.8641441441, + "37873": 0.8651351351, + "37874": 0.8661261261, + "37875": 0.8671171171, + "37876": 0.8681081081, + "37877": 0.8690990991, + "37878": 0.8700900901, + "37879": 0.8710810811, + "37880": 0.8720720721, + "37881": 0.8730630631, + "37882": 0.8740540541, + "37883": 0.875045045, + "37884": 0.876036036, + "37885": 0.877027027, + "37886": 0.878018018, + "37887": 0.879009009, + "37888": 0.88, + "37889": 0.880990991, + "37890": 0.881981982, + "37891": 0.882972973, + "37892": 0.883963964, + "37893": 0.884954955, + "37894": 0.8859459459, + "37895": 0.8869369369, + "37896": 0.8879279279, + "37897": 0.8889189189, + "37898": 0.8899099099, + "37899": 0.8909009009, + "37900": 0.8918918919, + "37901": 0.8928828829, + "37902": 0.8938738739, + "37903": 0.8948648649, + "37904": 0.8958558559, + "37905": 0.8968468468, + "37906": 0.8978378378, + "37907": 0.8988288288, + "37908": 0.8998198198, + "37909": 0.9008108108, + "37910": 0.9018018018, + "37911": 0.9027927928, + "37912": 0.9037837838, + "37913": 0.9047747748, + "37914": 0.9057657658, + "37915": 0.9067567568, + "37916": 0.9077477477, + "37917": 0.9087387387, + "37918": 0.9097297297, + "37919": 0.9107207207, + "37920": 0.9117117117, + "37921": 0.9127027027, + "37922": 0.9136936937, + "37923": 0.9146846847, + "37924": 0.9156756757, + "37925": 0.9166666667, + "37926": 0.9176576577, + "37927": 0.9186486486, + "37928": 0.9196396396, + "37929": 0.9206306306, + "37930": 0.9216216216, + "37931": 0.9226126126, + "37932": 0.9236036036, + "37933": 0.9245945946, + "37934": 0.9255855856, + "37935": 0.9265765766, + "37936": 0.9275675676, + "37937": 0.9285585586, + "37938": 0.9295495495, + "37939": 0.9305405405, + "37940": 0.9315315315, + "37941": 0.9325225225, + "37942": 0.9335135135, + "37943": 0.9345045045, + "37944": 0.9354954955, + "37945": 0.9364864865, + "37946": 0.9374774775, + "37947": 0.9384684685, + "37948": 0.9394594595, + "37949": 0.9404504505, + "37950": 0.9414414414, + "37951": 0.9424324324, + "37952": 0.9434234234, + "37953": 0.9444144144, + "37954": 0.9454054054, + "37955": 0.9463963964, + "37956": 0.9473873874, + "37957": 0.9483783784, + "37958": 0.9493693694, + "37959": 0.9503603604, + "37960": 0.9513513514, + "37961": 0.9523423423, + "37962": 0.9533333333, + "37963": 0.9543243243, + "37964": 0.9553153153, + "37965": 0.9563063063, + "37966": 0.9572972973, + "37967": 0.9582882883, + "37968": 0.9592792793, + "37969": 0.9602702703, + "37970": 0.9612612613, + "37971": 0.9622522523, + "37972": 0.9632432432, + "37973": 0.9642342342, + "37974": 0.9652252252, + "37975": 0.9662162162, + "37976": 0.9672072072, + "37977": 0.9681981982, + "37978": 0.9691891892, + "37979": 0.9701801802, + "37980": 0.9711711712, + "37981": 0.9721621622, + "37982": 0.9731531532, + "37983": 0.9741441441, + "37984": 0.9751351351, + "37985": 0.9761261261, + "37986": 0.9771171171, + "37987": 0.9781081081, + "37988": 0.9790990991, + "37989": 0.9800900901, + "37990": 0.9810810811, + "37991": 0.9820720721, + "37992": 0.9830630631, + "37993": 0.9840540541, + "37994": 0.985045045, + "37995": 0.986036036, + "37996": 0.987027027, + "37997": 0.988018018, + "37998": 0.989009009, + "37999": 0.99 + }, + "y": { + "0": 15.3502838868, + "1": 15.3448336297, + "2": 15.3393835832, + "3": 15.3339334313, + "4": 15.3284833322, + "5": 15.3230332067, + "6": 15.3175830943, + "7": 15.3121329754, + "8": 15.3066828598, + "9": 15.3012327425, + "10": 15.2957826261, + "11": 15.2903325092, + "12": 15.2848823926, + "13": 15.2794322758, + "14": 15.2739821591, + "15": 15.2685320424, + "16": 15.2630819257, + "17": 15.2576318089, + "18": 15.2521816922, + "19": 15.2467315755, + "20": 15.2412814588, + "21": 15.5419732007, + "22": 16.014869738, + "23": 16.4016638777, + "24": 16.8315092162, + "25": 17.2398289552, + "26": 17.658911494, + "27": 18.0726126329, + "28": 18.4890044718, + "29": 18.9040509607, + "30": 19.3197701246, + "31": 19.7448933585, + "32": 20.1802997998, + "33": 20.6105646374, + "34": 21.0434002769, + "35": 21.4749505155, + "36": 21.9071434545, + "37": 22.3390150433, + "38": 22.7710473071, + "39": 23.2029992335, + "40": 23.6349913286, + "41": 24.4069037987, + "42": 25.7907191377, + "43": 26.8685830423, + "44": 28.099422664, + "45": 29.2537744272, + "46": 30.4463701197, + "47": 31.6198438475, + "48": 32.8028785577, + "49": 33.9811327767, + "50": 35.1617772412, + "51": 36.3602303091, + "52": 37.6203643433, + "53": 38.8496578944, + "54": 40.094371687, + "55": 41.3313753589, + "56": 42.5722340911, + "57": 43.8111652932, + "58": 45.0510602603, + "59": 46.2904733449, + "60": 47.5301273708, + "61": 48.8710039932, + "62": 50.8960065546, + "63": 52.5789461466, + "64": 54.4329172232, + "65": 56.2013725575, + "66": 58.012585763, + "67": 59.8024200329, + "68": 61.6029437706, + "69": 63.3981227744, + "70": 65.1959741451, + "71": 66.9955791149, + "72": 68.8931803277, + "73": 70.741783419, + "74": 72.614885571, + "75": 74.4757381927, + "76": 76.3427155795, + "77": 78.2066305838, + "78": 80.0720767793, + "79": 81.9367573792, + "80": 83.8018207769, + "81": 85.6666927757, + "82": 87.1513119756, + "83": 88.8015189622, + "84": 90.3689320555, + "85": 91.9777420954, + "86": 93.565853662, + "87": 95.1643144652, + "88": 96.7576006501, + "89": 98.3534741442, + "90": 99.9480539837, + "91": 101.5432806505, + "92": 103.0804850579, + "93": 104.6363972297, + "94": 106.1829555193, + "95": 107.73419075, + "96": 109.2830875102, + "97": 110.8331535056, + "98": 112.3826348834, + "99": 113.93240857, + "100": 115.4820361022, + "101": 117.0317367116, + "102": 117.6406171024, + "103": 118.418856825, + "104": 119.1124168817, + "105": 119.8483167714, + "106": 120.5630467446, + "107": 121.288361676, + "108": 122.0083841283, + "109": 122.7310528201, + "110": 123.4523983922, + "111": 124.1744055242, + "112": 124.6397437656, + "113": 125.1052473971, + "114": 125.5706683335, + "115": 126.0361306174, + "116": 126.5015722276, + "117": 126.9670241747, + "118": 127.4324709533, + "119": 127.8979203161, + "120": 128.3633683869, + "121": 128.8288171037, + "122": 128.5246966829, + "123": 128.0383101255, + "124": 127.6430566364, + "125": 127.2022366131, + "126": 126.7841998569, + "127": 126.3547714672, + "128": 125.9310388943, + "129": 125.5044584129, + "130": 125.0793018858, + "131": 124.6534333816, + "132": 124.1323782922, + "133": 123.5574025109, + "134": 123.0093870755, + "135": 122.4478914672, + "136": 121.8931359453, + "137": 121.3350103802, + "138": 120.7785698368, + "139": 120.2212867825, + "140": 119.6644249836, + "141": 119.1073525571, + "142": 118.3171024283, + "143": 117.2845442028, + "144": 116.3731400256, + "145": 115.4011588243, + "146": 114.4594661351, + "147": 113.5026291898, + "148": 112.5533643726, + "149": 111.6003134913, + "150": 110.6491556421, + "151": 109.6970512768, + "152": 108.7109606332, + "153": 107.6626061951, + "154": 106.6453836543, + "155": 105.6125951648, + "156": 104.5875896496, + "157": 103.5586926473, + "158": 102.5317413886, + "159": 101.503817258, + "160": 100.4763795634, + "161": 99.4486986508, + "162": 98.4320521659, + "163": 97.4504217935, + "164": 96.4512833649, + "165": 95.4608989644, + "166": 94.4661375498, + "167": 93.4735646423, + "168": 92.4798974812, + "169": 91.4867774469, + "170": 90.4933838493, + "171": 89.5001270333, + "172": 88.5084110519, + "173": 87.5275915374, + "174": 86.5413237894, + "175": 85.5577801582, + "176": 84.5728744686, + "177": 83.5886498082, + "178": 82.6040846331, + "179": 81.6196897154, + "180": 80.6352096691, + "181": 79.650772187, + "182": 78.6772090591, + "183": 78.0468691154, + "184": 77.2449175797, + "185": 76.52877184, + "186": 75.7697232022, + "187": 75.0321260135, + "188": 74.2838031002, + "189": 73.5408430492, + "190": 72.7952015671, + "191": 72.0509008006, + "192": 71.3059296762, + "193": 70.6593399851, + "194": 69.9698851422, + "195": 69.3018628752, + "196": 68.6231243202, + "197": 67.9497439092, + "198": 67.2736844262, + "199": 66.5989644792, + "200": 65.9235747642, + "201": 65.2485199332, + "202": 64.5732976603, + "203": 64.2264521476, + "204": 63.7740420119, + "205": 63.3744141877, + "206": 62.9483952077, + "207": 62.5355718056, + "208": 62.1161506146, + "209": 61.700028318, + "210": 61.2822565742, + "211": 60.865309554, + "212": 60.447950172, + "213": 60.0929120211, + "214": 59.7265900707, + "215": 59.3659100201, + "216": 59.0024090195, + "217": 58.640318494, + "218": 58.2775227309, + "219": 57.9150795866, + "220": 57.5524601329, + "221": 57.1899288339, + "222": 56.8273534575, + "223": 56.6851804542, + "224": 56.5429964316, + "225": 56.4008179186, + "226": 56.2586366508, + "227": 56.1164567604, + "228": 55.9742761813, + "229": 55.8320959465, + "230": 55.6899155396, + "231": 55.5477352187, + "232": 55.4055548548, + "233": 55.308352774, + "234": 55.2218034285, + "235": 55.1299277154, + "236": 55.0407151861, + "237": 54.9501710649, + "238": 54.8602927396, + "239": 54.7700815163, + "240": 54.6800367421, + "241": 54.5899087433, + "242": 54.4998223568, + "243": 54.4552287831, + "244": 54.436247023, + "245": 54.4044593561, + "246": 54.3790746426, + "247": 54.3504884525, + "248": 54.3235030006, + "249": 54.2957171796, + "250": 54.2683315432, + "251": 54.2407458145, + "252": 54.2132601319, + "253": 54.1981956918, + "254": 54.1961071929, + "255": 54.1875307234, + "256": 54.1821982393, + "257": 54.1752437624, + "258": 54.1691002819, + "259": 54.1625513032, + "260": 54.1562050736, + "261": 54.1497574695, + "262": 54.1433605527, + "263": 54.1237077922, + "264": 54.0802528036, + "265": 54.0486989291, + "266": 54.0111944975, + "267": 53.9766653445, + "268": 53.9406485522, + "269": 53.9053755795, + "270": 53.869730697, + "271": 53.8342717694, + "272": 53.7987198644, + "273": 53.7594817414, + "274": 53.7082223882, + "275": 53.6629736501, + "276": 53.6147196044, + "277": 53.5679682125, + "278": 53.5204654938, + "279": 53.4733384385, + "280": 53.4260235514, + "281": 53.3788025802, + "282": 53.3315346511, + "283": 53.2635024366, + "284": 53.0551410728, + "285": 52.9169442836, + "286": 52.7436652071, + "287": 52.5879272742, + "288": 52.4234187696, + "289": 52.2632955508, + "290": 52.1009796891, + "291": 51.9397601489, + "292": 51.7779924479, + "293": 51.6141506402, + "294": 51.376203897, + "295": 51.1753096215, + "296": 50.9558891122, + "297": 50.7457317198, + "298": 50.530942769, + "299": 50.3184695973, + "300": 50.1048385361, + "301": 49.8917864197, + "302": 49.6784448308, + "303": 49.4652479782, + "304": 49.1322470373, + "305": 48.8514235134, + "306": 48.544511281, + "307": 48.2506434028, + "308": 47.9502533475, + "309": 47.6531243808, + "310": 47.3543648698, + "311": 47.0564206309, + "312": 46.758068756, + "313": 46.4599206991, + "314": 46.107955409, + "315": 45.7733067133, + "316": 45.4299997204, + "317": 45.0910218761, + "318": 44.7498794575, + "319": 44.409819326, + "320": 44.069218051, + "321": 43.7288873477, + "322": 43.3884213586, + "323": 43.0480230124, + "324": 42.6687629484, + "325": 42.2965088165, + "326": 41.9207517186, + "327": 41.5467461036, + "328": 41.1718647472, + "329": 40.7974212615, + "330": 40.4227588405, + "331": 40.0482058871, + "332": 39.6735981999, + "333": 39.2990178796, + "334": 38.9603787435, + "335": 38.6217464491, + "336": 38.2831107339, + "337": 37.9444767291, + "338": 37.6058418691, + "339": 37.2672074367, + "340": 36.9285727905, + "341": 36.5899382512, + "342": 36.2513036584, + "343": 35.9126690924, + "344": 35.6328548935, + "345": 35.3669718441, + "346": 35.09412322, + "347": 34.8247573832, + "348": 34.5536501527, + "349": 34.2834136191, + "350": 34.0127417371, + "351": 33.7422875292, + "352": 33.4717244843, + "353": 33.2012158579, + "354": 32.9572074174, + "355": 32.7281342414, + "356": 32.4915934331, + "357": 32.258786441, + "358": 32.0241125408, + "359": 31.7903720946, + "360": 31.5561649214, + "361": 31.3221911117, + "362": 31.0881006203, + "363": 30.8540684697, + "364": 30.6676044907, + "365": 30.5305831059, + "366": 30.368840424, + "367": 30.2194583907, + "368": 30.063896033, + "369": 29.9114238376, + "370": 29.757406561, + "371": 29.604161825, + "372": 29.4505308187, + "373": 29.2970929476, + "374": 29.1654636794, + "375": 29.073312002, + "376": 28.9614215293, + "377": 28.8594004542, + "378": 28.7524446803, + "379": 28.6479562558, + "380": 28.5422341566, + "381": 28.4371288947, + "382": 28.3317152142, + "383": 28.226455743, + "384": 28.1396265587, + "385": 28.1123239711, + "386": 28.0552580851, + "387": 28.0130738483, + "388": 27.963448787, + "389": 27.9175441379, + "390": 27.8697792827, + "391": 27.8229445305, + "392": 27.7756447268, + "393": 27.7285774489, + "394": 27.6883188472, + "395": 27.6948617163, + "396": 27.67800385, + "397": 27.6728463514, + "398": 27.661838669, + "399": 27.6537560784, + "400": 27.6442109419, + "401": 27.6353970784, + "402": 27.6262175784, + "403": 27.6172208967, + "404": 27.6093638899, + "405": 27.6403317361, + "406": 27.6518871558, + "407": 27.6731487888, + "408": 27.6895573152, + "409": 27.7083923948, + "410": 27.7260141978, + "411": 27.7442426392, + "412": 27.7621677613, + "413": 27.7802445431, + "414": 27.798245495, + "415": 27.8427812095, + "416": 27.8757590168, + "417": 27.9145157777, + "418": 27.9503830618, + "419": 27.9876950843, + "420": 28.0242847376, + "421": 28.0612355755, + "422": 28.0980058211, + "423": 28.1348663628, + "424": 28.1716817565, + "425": 28.2085564122, + "426": 28.2454079884, + "427": 28.2822711043, + "428": 28.3191284504, + "429": 28.3559886814, + "430": 28.3928474699, + "431": 28.4297069796, + "432": 28.4665661288, + "433": 28.5034254582, + "434": 28.5402846975, + "435": 28.5799569426, + "436": 28.6191228323, + "437": 28.6585418997, + "438": 28.6978343782, + "439": 28.7371901511, + "440": 28.7765142768, + "441": 28.8158542262, + "442": 28.8551862637, + "443": 28.8945222571, + "444": 28.9338562726, + "445": 28.9543895426, + "446": 28.9749223181, + "447": 28.9954553408, + "448": 29.0159882399, + "449": 29.0365212009, + "450": 29.0570541309, + "451": 29.0775870764, + "452": 29.0981200142, + "453": 29.1186529558, + "454": 29.1391858955, + "455": 29.1491635349, + "456": 29.1566412341, + "457": 29.1653689034, + "458": 29.1734715876, + "459": 29.1818867644, + "460": 29.1901456949, + "461": 29.1984827486, + "462": 29.2067807407, + "463": 29.2150982635, + "464": 29.223406021, + "465": 29.2204688159, + "466": 29.2112011314, + "467": 29.2050986866, + "468": 29.197413622, + "469": 29.1905198673, + "470": 29.1832304576, + "471": 29.1761388755, + "472": 29.1689483795, + "473": 29.1618073405, + "474": 29.154641573, + "475": 29.1393672402, + "476": 29.1156534523, + "477": 29.096159392, + "478": 29.0745554679, + "479": 29.0540064756, + "480": 29.0329300175, + "481": 29.0121172923, + "482": 28.9911727006, + "483": 28.9702940422, + "484": 28.9493824171, + "485": 28.9241700934, + "486": 28.8911786005, + "487": 28.8620766921, + "488": 28.8310299915, + "489": 28.800955687, + "490": 28.7703951844, + "491": 28.7400777809, + "492": 28.7096388279, + "493": 28.6792606496, + "494": 28.6488520839, + "495": 28.6155896021, + "496": 28.5730973848, + "497": 28.5352200353, + "498": 28.4950352518, + "499": 28.4560041853, + "500": 28.4163962604, + "501": 28.3770767646, + "502": 28.3376130543, + "503": 28.2982214512, + "504": 28.2587937945, + "505": 28.2188724471, + "506": 28.1754879926, + "507": 28.1338350916, + "508": 28.0913164139, + "509": 28.0492306245, + "510": 28.006928391, + "511": 27.9647343795, + "512": 27.922486257, + "513": 27.88026519, + "514": 27.8380305953, + "515": 27.7956838555, + "516": 27.7495881013, + "517": 27.7053668543, + "518": 27.6602083538, + "519": 27.61551848, + "520": 27.5705942928, + "521": 27.5257872624, + "522": 27.4809216535, + "523": 27.4360853339, + "524": 27.3912343697, + "525": 27.3463907277, + "526": 27.3038594321, + "527": 27.2603213831, + "528": 27.2172867108, + "529": 27.1740003501, + "530": 27.1308398337, + "531": 27.0876163951, + "532": 27.0444244176, + "533": 27.0012167095, + "534": 26.9580168668, + "535": 26.9148130913, + "536": 26.8743735715, + "537": 26.8330451898, + "538": 26.792161239, + "539": 26.7510550728, + "540": 26.7100600143, + "541": 26.6690094019, + "542": 26.6279865665, + "543": 26.5869498426, + "544": 26.5459200629, + "545": 26.5048868111, + "546": 26.4633565732, + "547": 26.4219152372, + "548": 26.3804294503, + "549": 26.3389658889, + "550": 26.2974912147, + "551": 26.2560220969, + "552": 26.2145502009, + "553": 26.173079694, + "554": 26.1316084925, + "555": 26.0901376383, + "556": 26.0569353531, + "557": 26.0237331546, + "558": 25.9905309128, + "559": 25.9573286927, + "560": 25.9241264617, + "561": 25.8909242361, + "562": 25.8577220078, + "563": 25.8245197809, + "564": 25.7913175533, + "565": 25.7581153261, + "566": 25.7273291978, + "567": 25.6971153036, + "568": 25.6666152924, + "569": 25.6362583397, + "570": 25.6058298578, + "571": 25.5754371404, + "572": 25.5450265408, + "573": 25.5146248823, + "574": 25.4842187533, + "575": 25.4538148595, + "576": 25.4261164391, + "577": 25.3999410351, + "578": 25.3730041229, + "579": 25.3464479647, + "580": 25.3197014295, + "581": 25.2930500829, + "582": 25.2663511419, + "583": 25.2396759981, + "584": 25.2129889558, + "585": 25.1863078627, + "586": 25.1604860231, + "587": 25.1355610615, + "588": 25.1101876608, + "589": 25.0850384797, + "590": 25.0597771889, + "591": 25.0345719529, + "592": 25.0093386894, + "593": 24.9841194397, + "594": 24.9588931831, + "595": 24.93367043, + "596": 24.9093716884, + "597": 24.8867401966, + "598": 24.86327508, + "599": 24.8402267757, + "600": 24.8169700653, + "601": 24.7938175579, + "602": 24.770612949, + "603": 24.7474343909, + "604": 24.7242428074, + "605": 24.7010577365, + "606": 24.6779607903, + "607": 24.6551591967, + "608": 24.6322099268, + "609": 24.609334495, + "610": 24.5864221441, + "611": 24.5635282528, + "612": 24.5406251317, + "613": 24.5177266255, + "614": 24.4948258119, + "615": 24.4719261519, + "616": 24.4490879774, + "617": 24.4266690116, + "618": 24.4040404414, + "619": 24.3815166734, + "620": 24.3589405043, + "621": 24.3363905357, + "622": 24.3138274669, + "623": 24.2912709482, + "624": 24.2687111544, + "625": 24.2461529982, + "626": 24.2235771706, + "627": 24.2004708968, + "628": 24.177629846, + "629": 24.1546561838, + "630": 24.1317488272, + "631": 24.1088083179, + "632": 24.0858843849, + "633": 24.0629521637, + "634": 24.0400240867, + "635": 24.0170939375, + "636": 23.9941648245, + "637": 23.9702609266, + "638": 23.9467815652, + "639": 23.9230899355, + "640": 23.89950444, + "641": 23.8758658774, + "642": 23.8522538484, + "643": 23.8286285526, + "644": 23.8050098901, + "645": 23.781387911, + "646": 23.7577675902, + "647": 23.7334763848, + "648": 23.709400969, + "649": 23.6852176584, + "650": 23.6610882951, + "651": 23.6369319582, + "652": 23.6127891081, + "653": 23.5886395146, + "654": 23.5644932928, + "655": 23.5403453852, + "656": 23.5161983205, + "657": 23.4881389386, + "658": 23.4607839087, + "659": 23.4330767028, + "660": 23.4055455849, + "661": 23.377926423, + "662": 23.3503512831, + "663": 23.3227541322, + "664": 23.2951679868, + "665": 23.2675763387, + "666": 23.2399874419, + "667": 23.2145361629, + "668": 23.1890855717, + "669": 23.1636346366, + "670": 23.1381838734, + "671": 23.1127330243, + "672": 23.0872822181, + "673": 23.0618313905, + "674": 23.0363805736, + "675": 23.0109297513, + "676": 22.9854789317, + "677": 22.9595183486, + "678": 22.9334370331, + "679": 22.9074160838, + "680": 22.8813649514, + "681": 22.8553289105, + "682": 22.8292853238, + "683": 22.8032455101, + "684": 22.7772038099, + "685": 22.7511630529, + "686": 22.7251218243, + "687": 22.699353556, + "688": 22.6737385773, + "689": 22.6480469538, + "690": 22.6223936526, + "691": 22.5967211903, + "692": 22.5710583086, + "693": 22.5453906366, + "694": 22.5197253597, + "695": 22.4940588853, + "696": 22.4683930096, + "697": 22.4432358001, + "698": 22.4186072815, + "699": 22.3937144174, + "700": 22.368953726, + "701": 22.3441269482, + "702": 22.3193332137, + "703": 22.2945229575, + "704": 22.2697209622, + "705": 22.2449148364, + "706": 22.2201107759, + "707": 22.1952146423, + "708": 22.1701551521, + "709": 22.1451773402, + "710": 22.1201586892, + "711": 22.0951604578, + "712": 22.0701520166, + "713": 22.0451486802, + "714": 22.0201427914, + "715": 21.9951381789, + "716": 21.9701329282, + "717": 21.9449486136, + "718": 21.919187551, + "719": 21.8937148624, + "720": 21.8680979868, + "721": 21.8425532046, + "722": 21.8169723758, + "723": 21.7914095703, + "724": 21.7658377531, + "725": 21.7402704418, + "726": 21.7147008776, + "727": 21.6890300601, + "728": 21.6626676167, + "729": 21.6366509863, + "730": 21.6104614494, + "731": 21.5843583657, + "732": 21.5582120554, + "733": 21.5320873585, + "734": 21.5059518548, + "735": 21.4798217545, + "736": 21.4536889525, + "737": 21.427489194, + "738": 21.3991370755, + "739": 21.3718611369, + "740": 21.3440471084, + "741": 21.3165021249, + "742": 21.2888226188, + "743": 21.2612103741, + "744": 21.2335644987, + "745": 21.2059354386, + "746": 21.1782979708, + "747": 21.1506647069, + "748": 21.1208426174, + "749": 21.0919738617, + "750": 21.0626284392, + "751": 21.03352135, + "752": 21.0042950942, + "753": 20.9751284217, + "754": 20.9459319575, + "755": 20.9167503892, + "756": 20.887561373, + "757": 20.8583760807, + "758": 20.823402474, + "759": 20.7902897295, + "760": 20.7562465538, + "761": 20.7226685938, + "762": 20.6888580259, + "763": 20.655163762, + "764": 20.6214113461, + "765": 20.5876880061, + "766": 20.5539501282, + "767": 20.5202195193, + "768": 20.4802507465, + "769": 20.4414060062, + "770": 20.4019992497, + "771": 20.3628735013, + "772": 20.3236072488, + "773": 20.2844112484, + "774": 20.2451801219, + "775": 20.2059665585, + "776": 20.1667442135, + "777": 20.1275262593, + "778": 20.0859874847, + "779": 20.0444498078, + "780": 20.0029115821, + "781": 19.9613736308, + "782": 19.9198355422, + "783": 19.8782975223, + "784": 19.8367594681, + "785": 19.795221431, + "786": 19.7536833854, + "787": 19.712145344, + "788": 19.6699329068, + "789": 19.6275607458, + "790": 19.5852684467, + "791": 19.5429362167, + "792": 19.5006239521, + "793": 19.4583017048, + "794": 19.4159844489, + "795": 19.3736646973, + "796": 19.3313461935, + "797": 19.2890270658, + "798": 19.2445085087, + "799": 19.1987524411, + "800": 19.1536151287, + "801": 19.1081684388, + "802": 19.0628764376, + "803": 19.017507092, + "804": 18.9721764187, + "805": 18.9268264092, + "806": 18.8814860678, + "807": 18.8361408923, + "808": 18.7909852515, + "809": 18.7460227166, + "810": 18.7009636287, + "811": 18.6559528172, + "812": 18.6109178676, + "813": 18.5658949871, + "814": 18.520866072, + "815": 18.4758401742, + "816": 18.4308127677, + "817": 18.3857861156, + "818": 18.341509406, + "819": 18.2985834604, + "820": 18.2549821328, + "821": 18.2117184962, + "822": 18.1682860141, + "823": 18.1249379548, + "824": 18.0815476841, + "825": 18.038178519, + "826": 17.9947988012, + "827": 17.9514243597, + "828": 17.9084474401, + "829": 17.8667580685, + "830": 17.8244249229, + "831": 17.7824136643, + "832": 17.7402414621, + "833": 17.6981497318, + "834": 17.6560177655, + "835": 17.6139059172, + "836": 17.5717840099, + "837": 17.5296671322, + "838": 17.4886617019, + "839": 17.455176774, + "840": 17.417931595, + "841": 17.3825665416, + "842": 17.3462614253, + "843": 17.3104263405, + "844": 17.2743562399, + "845": 17.2384036472, + "846": 17.2023923006, + "847": 17.166410331, + "848": 17.1304941673, + "849": 17.0971209233, + "850": 17.0624762194, + "851": 17.0284672455, + "852": 16.9941404066, + "853": 16.9599725002, + "854": 16.9257251275, + "855": 16.891517488, + "856": 16.8572899819, + "857": 16.823072409, + "858": 16.7888498696, + "859": 16.7666605738, + "860": 16.7392308343, + "861": 16.7144213166, + "862": 16.688301688, + "863": 16.6628371148, + "864": 16.637045014, + "865": 16.611416677, + "866": 16.585706458, + "867": 16.5600371801, + "868": 16.5343474316, + "869": 16.5109209038, + "870": 16.4867650845, + "871": 16.462973911, + "872": 16.4390004146, + "873": 16.4151180796, + "874": 16.3911901639, + "875": 16.3672850386, + "876": 16.343368518, + "877": 16.3194576951, + "878": 16.2955440234, + "879": 16.2789559298, + "880": 16.2610487763, + "881": 16.2438011527, + "882": 16.2262237642, + "883": 16.2088112581, + "884": 16.1913163108, + "885": 16.1738625842, + "886": 16.1563882472, + "887": 16.1389242154, + "888": 16.1214550309, + "889": 16.1075955749, + "890": 16.0937348306, + "891": 16.0798747305, + "892": 16.0660143083, + "893": 16.0521540471, + "894": 16.0382937054, + "895": 16.024433404, + "896": 16.0105730824, + "897": 15.9967127709, + "898": 15.9828524544, + "899": 15.9788153382, + "900": 15.9771047676, + "901": 15.9742309242, + "902": 15.9719387172, + "903": 15.969355692, + "904": 15.9669180759, + "905": 15.9644077552, + "906": 15.9619337868, + "907": 15.9594416423, + "908": 15.9569585859, + "909": 15.9546423138, + "910": 15.9524246861, + "911": 15.9501577363, + "912": 15.9479154475, + "913": 15.9456608282, + "914": 15.9434123741, + "915": 15.9411608374, + "916": 15.9389108421, + "917": 15.936660076, + "918": 15.9344096953, + "919": 15.9330248349, + "920": 15.9325390803, + "921": 15.9316037727, + "922": 15.9308932416, + "923": 15.9300703223, + "924": 15.9293035972, + "925": 15.9285087749, + "926": 15.9277280012, + "927": 15.9269402032, + "928": 15.9261559174, + "929": 15.9252408198, + "930": 15.9240942999, + "931": 15.9230634912, + "932": 15.9219748269, + "933": 15.9209150905, + "934": 15.9198408901, + "935": 15.9187739216, + "936": 15.9177033372, + "937": 15.9166345608, + "938": 15.9155648804, + "939": 15.9129214383, + "940": 15.9052177977, + "941": 15.9000442564, + "942": 15.8936056654, + "943": 15.8877995993, + "944": 15.8816772707, + "945": 15.8757130734, + "946": 15.8696698104, + "947": 15.8636660803, + "948": 15.8576425837, + "949": 15.8515547825, + "950": 15.8449612716, + "951": 15.8386206155, + "952": 15.832153532, + "953": 15.8257496622, + "954": 15.8193141856, + "955": 15.8128945124, + "956": 15.8064669374, + "957": 15.8000433133, + "958": 15.7936177138, + "959": 15.787009608, + "960": 15.774620946, + "961": 15.765122562, + "962": 15.754179039, + "963": 15.7439580856, + "964": 15.7333758474, + "965": 15.7229742515, + "966": 15.7124823345, + "967": 15.702035578, + "968": 15.6915662413, + "969": 15.6811081947, + "970": 15.6702616598, + "971": 15.6595846695, + "972": 15.648822907, + "973": 15.6381035305, + "974": 15.627362961, + "975": 15.6166329881, + "976": 15.6058977168, + "977": 15.5951650947, + "978": 15.584431148, + "979": 15.5736978637, + "980": 15.5630840234, + "981": 15.5524318495, + "982": 15.5417988424, + "983": 15.5311562519, + "984": 15.5205184531, + "985": 15.5098782584, + "986": 15.4992392617, + "987": 15.488599666, + "988": 15.4779603698, + "989": 15.4673209239, + "990": 15.4554829957, + "991": 15.4438607704, + "992": 15.4321306936, + "993": 15.4204545426, + "994": 15.4087514287, + "995": 15.3970617962, + "996": 15.3853654231, + "997": 15.3736724202, + "998": 15.3619777322, + "999": 15.3502838868, + "1000": 39.8240793591, + "1001": 39.7871668286, + "1002": 39.7502175254, + "1003": 39.7132322803, + "1004": 39.676210524, + "1005": 39.6391519881, + "1006": 39.6020563941, + "1007": 39.5649235008, + "1008": 39.5277531028, + "1009": 39.4905450265, + "1010": 39.4532991332, + "1011": 39.416015317, + "1012": 39.3786935065, + "1013": 39.3413336634, + "1014": 39.3039357834, + "1015": 39.2664998955, + "1016": 39.2290260626, + "1017": 39.1915143809, + "1018": 39.1539649801, + "1019": 39.1163780233, + "1020": 39.078753707, + "1021": 39.0828408153, + "1022": 39.1115923055, + "1023": 39.1305253886, + "1024": 39.1569267267, + "1025": 39.1821349973, + "1026": 39.2104756033, + "1027": 39.2397781289, + "1028": 39.2711206469, + "1029": 39.3039569582, + "1030": 39.3385530927, + "1031": 39.3760973337, + "1032": 39.4167425925, + "1033": 39.458423448, + "1034": 39.5021681194, + "1035": 39.5474549509, + "1036": 39.594537921, + "1037": 39.6432831373, + "1038": 39.6937507388, + "1039": 39.7459039143, + "1040": 39.7997543985, + "1041": 39.9016473911, + "1042": 40.090020851, + "1043": 40.2422002134, + "1044": 40.4196448496, + "1045": 40.5915760606, + "1046": 40.7733685161, + "1047": 40.9573134723, + "1048": 41.1472453695, + "1049": 41.3412268925, + "1050": 41.5402067674, + "1051": 41.7462823345, + "1052": 41.9654949599, + "1053": 42.1854629442, + "1054": 42.4123698393, + "1055": 42.6431006631, + "1056": 42.8791930105, + "1057": 43.1198576553, + "1058": 43.3654690167, + "1059": 43.6158197717, + "1060": 43.8709935787, + "1061": 44.1447488595, + "1062": 44.516965643, + "1063": 44.8504295383, + "1064": 45.2138603601, + "1065": 45.5728396052, + "1066": 45.9445523118, + "1067": 46.3203750345, + "1068": 46.7045900696, + "1069": 47.0950267002, + "1070": 47.4927409004, + "1071": 47.8975967706, + "1072": 48.322707374, + "1073": 48.7483977051, + "1074": 49.1844947299, + "1075": 49.6260509939, + "1076": 50.0755110911, + "1077": 50.5316227774, + "1078": 50.9949825423, + "1079": 51.4652625966, + "1080": 51.9425974225, + "1081": 52.4268904886, + "1082": 52.8662927818, + "1083": 53.3337086985, + "1084": 53.7958346429, + "1085": 54.2693090163, + "1086": 54.745786977, + "1087": 55.2294178747, + "1088": 55.718103571, + "1089": 56.2128698702, + "1090": 56.7131806848, + "1091": 57.2192809753, + "1092": 57.7231568853, + "1093": 58.2350262743, + "1094": 58.7511107048, + "1095": 59.2732778012, + "1096": 59.8005719532, + "1097": 60.3334493169, + "1098": 60.8716602426, + "1099": 61.4153080743, + "1100": 61.9643197461, + "1101": 62.5187104836, + "1102": 62.9501568149, + "1103": 63.4062977011, + "1104": 63.8529733453, + "1105": 64.3072357958, + "1106": 64.760558314, + "1107": 65.21719817, + "1108": 65.6750217438, + "1109": 66.135090675, + "1110": 66.5968690468, + "1111": 67.0606197413, + "1112": 67.4912493156, + "1113": 67.9227566561, + "1114": 68.3550548361, + "1115": 68.7881683089, + "1116": 69.2220842912, + "1117": 69.656804943, + "1118": 70.0923257006, + "1119": 70.5286452259, + "1120": 70.9657606087, + "1121": 71.4036697298, + "1122": 71.7374240147, + "1123": 72.0440506072, + "1124": 72.3599615619, + "1125": 72.6668816446, + "1126": 72.9739783268, + "1127": 73.2766778774, + "1128": 73.5772810843, + "1129": 73.8746506433, + "1130": 74.1693684134, + "1131": 74.4611565993, + "1132": 74.737138061, + "1133": 75.002570082, + "1134": 75.2682588368, + "1135": 75.5288002365, + "1136": 75.7869150416, + "1137": 76.0412575892, + "1138": 76.2925161699, + "1139": 76.5403618919, + "1140": 76.7849744388, + "1141": 77.0262791528, + "1142": 77.2325157042, + "1143": 77.4015214919, + "1144": 77.5818644332, + "1145": 77.7492206513, + "1146": 77.9157869862, + "1147": 78.0754848812, + "1148": 78.2313764003, + "1149": 78.3819526301, + "1150": 78.5279901963, + "1151": 78.6691228624, + "1152": 78.8008565137, + "1153": 78.9192140677, + "1154": 79.036692509, + "1155": 79.1470521287, + "1156": 79.2534388481, + "1157": 79.3543022325, + "1158": 79.4504406469, + "1159": 79.5414778463, + "1160": 79.6276248473, + "1161": 79.7087989588, + "1162": 79.7865524548, + "1163": 79.8642146287, + "1164": 79.9347791772, + "1165": 80.0017788021, + "1166": 80.0634674369, + "1167": 80.1207401701, + "1168": 80.1731710778, + "1169": 80.2209947484, + "1170": 80.2641154324, + "1171": 80.3026024855, + "1172": 80.3366620935, + "1173": 80.3675904742, + "1174": 80.3932164937, + "1175": 80.4146490335, + "1176": 80.4313541812, + "1177": 80.4436199, + "1178": 80.451323042, + "1179": 80.4545459716, + "1180": 80.4532682284, + "1181": 80.447520701, + "1182": 80.4387943767, + "1183": 80.4724685936, + "1184": 80.4797161931, + "1185": 80.4950358521, + "1186": 80.5011801856, + "1187": 80.5067913996, + "1188": 80.5075635358, + "1189": 80.5056653331, + "1190": 80.5000280005, + "1191": 80.4912014903, + "1192": 80.4789263293, + "1193": 80.4767182746, + "1194": 80.4657168898, + "1195": 80.4545486501, + "1196": 80.4389116585, + "1197": 80.4209713433, + "1198": 80.3996587909, + "1199": 80.3755223427, + "1200": 80.3483016439, + "1201": 80.3181406503, + "1202": 80.2849811187, + "1203": 80.293635173, + "1204": 80.2862414043, + "1205": 80.284044237, + "1206": 80.2764287332, + "1207": 80.2687112866, + "1208": 80.2582422632, + "1209": 80.2463550829, + "1210": 80.2323915988, + "1211": 80.2166894234, + "1212": 80.1990882624, + "1213": 80.1881473759, + "1214": 80.174082631, + "1215": 80.1591746147, + "1216": 80.1422918948, + "1217": 80.1240072361, + "1218": 80.10404164, + "1219": 80.0825418954, + "1220": 80.0594418889, + "1221": 80.034781933, + "1222": 80.0085491052, + "1223": 80.0108103364, + "1224": 80.0123892891, + "1225": 80.0133342077, + "1226": 80.0136371515, + "1227": 80.0133024009, + "1228": 80.012331287, + "1229": 80.0107259728, + "1230": 80.0084883229, + "1231": 80.0056203166, + "1232": 80.0021238719, + "1233": 80.0041346113, + "1234": 80.0071523871, + "1235": 80.0090508388, + "1236": 80.0108998559, + "1237": 80.0121654051, + "1238": 80.0131165662, + "1239": 80.0136206253, + "1240": 80.0137458058, + "1241": 80.0134598475, + "1242": 80.0127807279, + "1243": 80.0179079902, + "1244": 80.0263126482, + "1245": 80.0328672822, + "1246": 80.0401440852, + "1247": 80.046856026, + "1248": 80.0536475655, + "1249": 80.0601970404, + "1250": 80.0666659227, + "1251": 80.0729740998, + "1252": 80.0791622524, + "1253": 80.0869113679, + "1254": 80.0963469422, + "1255": 80.1048690241, + "1256": 80.1137811409, + "1257": 80.1224310765, + "1258": 80.1311452859, + "1259": 80.139760728, + "1260": 80.148359141, + "1261": 80.1568998662, + "1262": 80.1654034441, + "1263": 80.1720555718, + "1264": 80.1753654699, + "1265": 80.180104982, + "1266": 80.1838833938, + "1267": 80.1878979313, + "1268": 80.1915505158, + "1269": 80.1951409849, + "1270": 80.1985201625, + "1271": 80.2017633875, + "1272": 80.2048337369, + "1273": 80.2072413874, + "1274": 80.2078354953, + "1275": 80.2090270571, + "1276": 80.2096089127, + "1277": 80.2101861234, + "1278": 80.2104570079, + "1279": 80.2105733788, + "1280": 80.2104602738, + "1281": 80.2101561198, + "1282": 80.2096426452, + "1283": 80.2060950983, + "1284": 80.1831264401, + "1285": 80.1688802675, + "1286": 80.1492585929, + "1287": 80.1313193589, + "1288": 80.1115355083, + "1289": 80.0916738783, + "1290": 80.0708540684, + "1291": 80.0495193435, + "1292": 80.027451115, + "1293": 80.0044414918, + "1294": 79.9706612178, + "1295": 79.9409757298, + "1296": 79.9079413745, + "1297": 79.8752869394, + "1298": 79.8411513996, + "1299": 79.8064693395, + "1300": 79.7707773835, + "1301": 79.7343111523, + "1302": 79.6969567502, + "1303": 79.6587750287, + "1304": 79.6034116429, + "1305": 79.5538458116, + "1306": 79.4995920614, + "1307": 79.4459018344, + "1308": 79.3901542109, + "1309": 79.3336652122, + "1310": 79.2757822165, + "1311": 79.2168369379, + "1312": 79.1566688994, + "1313": 79.0953637038, + "1314": 79.0255587402, + "1315": 78.9567440839, + "1316": 78.8854398671, + "1317": 78.8133923505, + "1318": 78.739734437, + "1319": 78.664905744, + "1320": 78.5886925021, + "1321": 78.5112076183, + "1322": 78.4324006423, + "1323": 78.3523027837, + "1324": 78.2656094448, + "1325": 78.1784250046, + "1326": 78.0893409002, + "1327": 77.9990670391, + "1328": 77.9072551918, + "1329": 77.8140859532, + "1330": 77.7194755306, + "1331": 77.6234722956, + "1332": 77.5260585195, + "1333": 77.4272495031, + "1334": 77.3319471766, + "1335": 77.2353984007, + "1336": 77.137612776, + "1337": 77.0385933333, + "1338": 76.9383437827, + "1339": 76.8368679945, + "1340": 76.7341696379, + "1341": 76.6302524857, + "1342": 76.5251202374, + "1343": 76.4187766127, + "1344": 76.3192466369, + "1345": 76.2206464143, + "1346": 76.1201963565, + "1347": 76.0192967779, + "1348": 75.9172504538, + "1349": 75.8144104302, + "1350": 75.7106043019, + "1351": 75.605922437, + "1352": 75.5003237921, + "1353": 75.3938330189, + "1354": 75.2900594484, + "1355": 75.187534129, + "1356": 75.0832690654, + "1357": 74.9787662152, + "1358": 74.8732770611, + "1359": 74.7671794098, + "1360": 74.6602876763, + "1361": 74.5526980048, + "1362": 74.4443656559, + "1363": 74.3353163235, + "1364": 74.2320313221, + "1365": 74.1349576894, + "1366": 74.034189451, + "1367": 73.9346940816, + "1368": 73.8339870461, + "1369": 73.733312863, + "1370": 73.6320509084, + "1371": 73.5305132461, + "1372": 73.4285455664, + "1373": 73.3262267459, + "1374": 73.2265062692, + "1375": 73.1318816024, + "1376": 73.0344396366, + "1377": 72.9381469054, + "1378": 72.841019086, + "1379": 72.7440494869, + "1380": 72.6467421576, + "1381": 72.5493458627, + "1382": 72.4517369897, + "1383": 72.3539781155, + "1384": 72.2585625717, + "1385": 72.1711685281, + "1386": 72.0798602407, + "1387": 71.9906182372, + "1388": 71.9004493119, + "1389": 71.8108502445, + "1390": 71.7210722, + "1391": 71.6314892766, + "1392": 71.5419140819, + "1393": 71.452439975, + "1394": 71.3639642928, + "1395": 71.281967786, + "1396": 71.1970641713, + "1397": 71.1139552907, + "1398": 71.0302872183, + "1399": 70.9472362558, + "1400": 70.8642131264, + "1401": 70.7815114396, + "1402": 70.6989833463, + "1403": 70.6167017334, + "1404": 70.5347970054, + "1405": 70.4584121949, + "1406": 70.3797594284, + "1407": 70.3027389271, + "1408": 70.2253974811, + "1409": 70.1487104773, + "1410": 70.0721886337, + "1411": 69.9960750827, + "1412": 69.9202467392, + "1413": 69.8447636344, + "1414": 69.7695942456, + "1415": 69.6983662061, + "1416": 69.62598934, + "1417": 69.5547858808, + "1418": 69.4835921499, + "1419": 69.4129882904, + "1420": 69.3426823677, + "1421": 69.2728185259, + "1422": 69.2033228603, + "1423": 69.1342304639, + "1424": 69.0655218782, + "1425": 68.9972098627, + "1426": 68.929282042, + "1427": 68.8617416569, + "1428": 68.7945849486, + "1429": 68.7278116117, + "1430": 68.6614195709, + "1431": 68.5954075967, + "1432": 68.5297740012, + "1433": 68.4645172935, + "1434": 68.399635856, + "1435": 68.3355117127, + "1436": 68.2717017798, + "1437": 68.2083065245, + "1438": 68.1452732894, + "1439": 68.0826258859, + "1440": 68.0203498976, + "1441": 67.9584500118, + "1442": 67.8969213602, + "1443": 67.8357638503, + "1444": 67.7749750023, + "1445": 67.7119895411, + "1446": 67.6492947976, + "1447": 67.5868856792, + "1448": 67.5247614591, + "1449": 67.4629205906, + "1450": 67.4013616781, + "1451": 67.3400833177, + "1452": 67.2790841137, + "1453": 67.2183626847, + "1454": 67.1579176595, + "1455": 67.0963082547, + "1456": 67.0345896517, + "1457": 66.9732599768, + "1458": 66.9120672871, + "1459": 66.8511360563, + "1460": 66.7904023015, + "1461": 66.729896347, + "1462": 66.6696013775, + "1463": 66.6095241756, + "1464": 66.5496597508, + "1465": 66.4884748851, + "1466": 66.4265940121, + "1467": 66.3652837736, + "1468": 66.3039077135, + "1469": 66.2427832795, + "1470": 66.1817505297, + "1471": 66.1208883376, + "1472": 66.0601561782, + "1473": 65.9995732572, + "1474": 65.939128942, + "1475": 65.8777200959, + "1476": 65.8152686917, + "1477": 65.7534653517, + "1478": 65.6914619326, + "1479": 65.6296823068, + "1480": 65.5679138432, + "1481": 65.5062622916, + "1482": 65.4446742152, + "1483": 65.3831757989, + "1484": 65.3217534396, + "1485": 65.2598247173, + "1486": 65.1968978512, + "1487": 65.1345320737, + "1488": 65.0719457149, + "1489": 65.0095297506, + "1490": 64.9470884185, + "1491": 64.8847194309, + "1492": 64.8223737633, + "1493": 64.7600757802, + "1494": 64.6978131676, + "1495": 64.6352007059, + "1496": 64.5713574996, + "1497": 64.5081342381, + "1498": 64.4446036596, + "1499": 64.3812299082, + "1500": 64.3177809534, + "1501": 64.2543729594, + "1502": 64.1909479838, + "1503": 64.1275351512, + "1504": 64.0641200606, + "1505": 64.0006402992, + "1506": 63.9366890723, + "1507": 63.8729610356, + "1508": 63.8091083845, + "1509": 63.7453054158, + "1510": 63.681465208, + "1511": 63.6176314882, + "1512": 63.5537826568, + "1513": 63.489929783, + "1514": 63.4260676052, + "1515": 63.3621828147, + "1516": 63.2977791884, + "1517": 63.2336088627, + "1518": 63.169295348, + "1519": 63.105027377, + "1520": 63.0407108921, + "1521": 62.9763932687, + "1522": 62.9120511603, + "1523": 62.8476965844, + "1524": 62.7833238779, + "1525": 62.7189362194, + "1526": 62.6548482018, + "1527": 62.5906166329, + "1528": 62.5264441115, + "1529": 62.4622295966, + "1530": 62.3980239439, + "1531": 62.333802047, + "1532": 62.2695767848, + "1533": 62.2053420446, + "1534": 62.1411012107, + "1535": 62.0768529202, + "1536": 62.0129748786, + "1537": 61.9489801255, + "1538": 61.8850476866, + "1539": 61.8210883307, + "1540": 61.7571469702, + "1541": 61.6932014441, + "1542": 61.6292631299, + "1543": 61.5653266366, + "1544": 61.5013949586, + "1545": 61.4374668981, + "1546": 61.3734753433, + "1547": 61.3094984144, + "1548": 61.2455183872, + "1549": 61.1815444209, + "1550": 61.117572247, + "1551": 61.0536043077, + "1552": 60.9896396894, + "1553": 60.9256791553, + "1554": 60.8617226288, + "1555": 60.7977704515, + "1556": 60.734950362, + "1557": 60.6721678749, + "1558": 60.6094247175, + "1559": 60.5467206582, + "1560": 60.4840558466, + "1561": 60.4214303576, + "1562": 60.3588442756, + "1563": 60.2962976811, + "1564": 60.2337906509, + "1565": 60.171323259, + "1566": 60.109225059, + "1567": 60.0472542794, + "1568": 59.9852966579, + "1569": 59.923409621, + "1570": 59.8615644334, + "1571": 59.7997754962, + "1572": 59.7380356227, + "1573": 59.6763484154, + "1574": 59.6147120744, + "1575": 59.5531274933, + "1576": 59.4919633088, + "1577": 59.4310690147, + "1578": 59.3701396127, + "1579": 59.3093279596, + "1580": 59.2485574171, + "1581": 59.1878661983, + "1582": 59.1272350604, + "1583": 59.0666734852, + "1584": 59.0061765838, + "1585": 58.9457466454, + "1586": 58.8854999445, + "1587": 58.8254449172, + "1588": 58.7654017112, + "1589": 58.7054602725, + "1590": 58.6455753652, + "1591": 58.585769394, + "1592": 58.5260309269, + "1593": 58.4663654476, + "1594": 58.4067699769, + "1595": 58.3472457631, + "1596": 58.2879181838, + "1597": 58.2288921049, + "1598": 58.169833119, + "1599": 58.1109085275, + "1600": 58.0520343096, + "1601": 57.993252198, + "1602": 57.9345410299, + "1603": 57.8759110939, + "1604": 57.817356953, + "1605": 57.7588810344, + "1606": 57.7004942965, + "1607": 57.6422251604, + "1608": 57.5840142119, + "1609": 57.5258909351, + "1610": 57.4678402912, + "1611": 57.4098695225, + "1612": 57.3519747314, + "1613": 57.2941575957, + "1614": 57.23641701, + "1615": 57.1787532654, + "1616": 57.1211744234, + "1617": 57.0637293456, + "1618": 57.006333797, + "1619": 56.9490297358, + "1620": 56.8917959242, + "1621": 56.8346427489, + "1622": 56.7775647854, + "1623": 56.7205645208, + "1624": 56.6636404912, + "1625": 56.6067932133, + "1626": 56.5500199196, + "1627": 56.4932504763, + "1628": 56.4365911411, + "1629": 56.3799884856, + "1630": 56.3234690557, + "1631": 56.2670193871, + "1632": 56.2106460276, + "1633": 56.1543455192, + "1634": 56.0981194077, + "1635": 56.0419667372, + "1636": 55.9858878022, + "1637": 55.92974941, + "1638": 55.8737383842, + "1639": 55.8177692632, + "1640": 55.7618846248, + "1641": 55.7060629915, + "1642": 55.650314915, + "1643": 55.5946349258, + "1644": 55.5390255589, + "1645": 55.4834853403, + "1646": 55.4280147929, + "1647": 55.3725220574, + "1648": 55.3171252256, + "1649": 55.2617807265, + "1650": 55.2065101078, + "1651": 55.1513023438, + "1652": 55.0961626849, + "1653": 55.0410882316, + "1654": 54.9860801476, + "1655": 54.9311375524, + "1656": 54.8762605748, + "1657": 54.820915361, + "1658": 54.7657156968, + "1659": 54.7105193355, + "1660": 54.6553970074, + "1661": 54.600313053, + "1662": 54.5452849714, + "1663": 54.4903036734, + "1664": 54.4353733495, + "1665": 54.380491537, + "1666": 54.3256590869, + "1667": 54.271166875, + "1668": 54.2167317187, + "1669": 54.1623535991, + "1670": 54.1080321846, + "1671": 54.0537671354, + "1672": 53.9995581366, + "1673": 53.945404845, + "1674": 53.8913069242, + "1675": 53.8372640264, + "1676": 53.7832758023, + "1677": 53.7292723809, + "1678": 53.6753044288, + "1679": 53.6213957064, + "1680": 53.567533747, + "1681": 53.5137242605, + "1682": 53.4599638537, + "1683": 53.4062536868, + "1684": 53.3525926432, + "1685": 53.298980746, + "1686": 53.2454174508, + "1687": 53.1919396917, + "1688": 53.1385318857, + "1689": 53.085162992, + "1690": 53.0318480573, + "1691": 52.9785790353, + "1692": 52.9253594456, + "1693": 52.8721870316, + "1694": 52.8190624351, + "1695": 52.7659848594, + "1696": 52.7129542386, + "1697": 52.6600395611, + "1698": 52.6072452914, + "1699": 52.5544652005, + "1700": 52.5017521112, + "1701": 52.4490791721, + "1702": 52.3964594166, + "1703": 52.3438859447, + "1704": 52.2913620502, + "1705": 52.2388881124, + "1706": 52.1864680934, + "1707": 52.1340923237, + "1708": 52.0817538682, + "1709": 52.0294886224, + "1710": 51.9772833182, + "1711": 51.9251493035, + "1712": 51.873085595, + "1713": 51.8210973602, + "1714": 51.7691866722, + "1715": 51.7173571303, + "1716": 51.6656115472, + "1717": 51.6139286407, + "1718": 51.5622564987, + "1719": 51.5107137818, + "1720": 51.4592455393, + "1721": 51.4078837419, + "1722": 51.3566168314, + "1723": 51.3054549798, + "1724": 51.2543974499, + "1725": 51.2034489141, + "1726": 51.1526112919, + "1727": 51.1018738673, + "1728": 51.0511584838, + "1729": 51.0006065654, + "1730": 50.9501513045, + "1731": 50.8998301213, + "1732": 50.8496282234, + "1733": 50.7995568651, + "1734": 50.7496142067, + "1735": 50.6998048836, + "1736": 50.6501302185, + "1737": 50.6005837978, + "1738": 50.5508832712, + "1739": 50.5014625883, + "1740": 50.4521076816, + "1741": 50.4029289239, + "1742": 50.353874272, + "1743": 50.304972817, + "1744": 50.2562129816, + "1745": 50.2076034236, + "1746": 50.1591425804, + "1747": 50.1108338947, + "1748": 50.0623799956, + "1749": 50.0142022791, + "1750": 49.9661106469, + "1751": 49.9182024535, + "1752": 49.8704311387, + "1753": 49.8228219949, + "1754": 49.7753642643, + "1755": 49.7280650915, + "1756": 49.680922545, + "1757": 49.6339391049, + "1758": 49.586325819, + "1759": 49.5391035923, + "1760": 49.4918988155, + "1761": 49.4448993979, + "1762": 49.398012327, + "1763": 49.3512849229, + "1764": 49.3046942033, + "1765": 49.2582522021, + "1766": 49.2119533091, + "1767": 49.1658006003, + "1768": 49.1189424699, + "1769": 49.0723580589, + "1770": 49.0258206219, + "1771": 48.9794432132, + "1772": 48.9331690314, + "1773": 48.8870260323, + "1774": 48.8409996666, + "1775": 48.7950965029, + "1776": 48.7493124194, + "1777": 48.7036485089, + "1778": 48.6577869367, + "1779": 48.6120342679, + "1780": 48.5663889187, + "1781": 48.52085011, + "1782": 48.4754167044, + "1783": 48.4300875896, + "1784": 48.3848615284, + "1785": 48.3397372281, + "1786": 48.2947133094, + "1787": 48.2497883242, + "1788": 48.2048687817, + "1789": 48.1600205915, + "1790": 48.1152740009, + "1791": 48.0706112659, + "1792": 48.026038625, + "1793": 47.9815502105, + "1794": 47.9371461166, + "1795": 47.8928233635, + "1796": 47.8485804191, + "1797": 47.8044149404, + "1798": 47.7600249272, + "1799": 47.7155306066, + "1800": 47.6711775305, + "1801": 47.6268391711, + "1802": 47.582575422, + "1803": 47.5383528038, + "1804": 47.4941844734, + "1805": 47.4500601999, + "1806": 47.4059813839, + "1807": 47.3619435495, + "1808": 47.317970618, + "1809": 47.2740612239, + "1810": 47.2301740307, + "1811": 47.1863257583, + "1812": 47.1425039909, + "1813": 47.0987108473, + "1814": 47.0549411344, + "1815": 47.0111932758, + "1816": 46.9674638496, + "1817": 46.9237503226, + "1818": 46.8801520067, + "1819": 46.8367509438, + "1820": 46.7932734493, + "1821": 46.7498522968, + "1822": 46.7064166336, + "1823": 46.6629974795, + "1824": 46.6195748903, + "1825": 46.5761543973, + "1826": 46.5327287876, + "1827": 46.4892972185, + "1828": 46.4459102335, + "1829": 46.4026878285, + "1830": 46.359368872, + "1831": 46.3160797684, + "1832": 46.2727528351, + "1833": 46.2294175231, + "1834": 46.1860547305, + "1835": 46.1426696666, + "1836": 46.0992554215, + "1837": 46.0558111869, + "1838": 46.0124850615, + "1839": 45.970152706, + "1840": 45.9273031604, + "1841": 45.8846893134, + "1842": 45.841930314, + "1843": 45.7992126314, + "1844": 45.7564390781, + "1845": 45.7136543942, + "1846": 45.6708324425, + "1847": 45.6279826197, + "1848": 45.5851076321, + "1849": 45.5425432669, + "1850": 45.4997772681, + "1851": 45.4570629976, + "1852": 45.4142705135, + "1853": 45.3714617712, + "1854": 45.3286028801, + "1855": 45.285708008, + "1856": 45.2427674266, + "1857": 45.1997834931, + "1858": 45.1567526619, + "1859": 45.1153151155, + "1860": 45.0731617478, + "1861": 45.0313446693, + "1862": 44.9893355504, + "1863": 44.9473968203, + "1864": 44.9053955997, + "1865": 44.8633968281, + "1866": 44.8213666808, + "1867": 44.7793208634, + "1868": 44.7372504623, + "1869": 44.6954662575, + "1870": 44.6535686708, + "1871": 44.6117040144, + "1872": 44.5697985912, + "1873": 44.5278888535, + "1874": 44.4859563063, + "1875": 44.4440100543, + "1876": 44.4020455236, + "1877": 44.3600650961, + "1878": 44.3180677873, + "1879": 44.2770531971, + "1880": 44.2358718915, + "1881": 44.1947901761, + "1882": 44.1536755514, + "1883": 44.1125947937, + "1884": 44.0715151624, + "1885": 44.0304537394, + "1886": 43.9894027641, + "1887": 43.9483669575, + "1888": 43.9073448552, + "1889": 43.8668300421, + "1890": 43.8263451089, + "1891": 43.7858916835, + "1892": 43.7454701609, + "1893": 43.7050813214, + "1894": 43.6647258285, + "1895": 43.6244044129, + "1896": 43.584117789, + "1897": 43.5438666902, + "1898": 43.5036518486, + "1899": 43.4648135908, + "1900": 43.4263694075, + "1901": 43.3878552215, + "1902": 43.3495050124, + "1903": 43.3112024633, + "1904": 43.2730066538, + "1905": 43.2348889089, + "1906": 43.1968644353, + "1907": 43.1589264905, + "1908": 43.1210793008, + "1909": 43.0833449663, + "1910": 43.045715423, + "1911": 43.0081714747, + "1912": 42.9707235814, + "1913": 42.9333673379, + "1914": 42.8961057783, + "1915": 42.8589382167, + "1916": 42.82186583, + "1917": 42.7848888676, + "1918": 42.7480080485, + "1919": 42.7113419208, + "1920": 42.6748985297, + "1921": 42.6384965541, + "1922": 42.6022242599, + "1923": 42.5660341376, + "1924": 42.5299464823, + "1925": 42.4939476844, + "1926": 42.4580411056, + "1927": 42.4222216374, + "1928": 42.3864884237, + "1929": 42.3508209004, + "1930": 42.3152025826, + "1931": 42.279677631, + "1932": 42.2442205808, + "1933": 42.208840865, + "1934": 42.1735304758, + "1935": 42.1382901501, + "1936": 42.1031162742, + "1937": 42.0680074328, + "1938": 42.0329611348, + "1939": 41.9977607758, + "1940": 41.9619225564, + "1941": 41.9264590665, + "1942": 41.8908599015, + "1943": 41.855377507, + "1944": 41.8198826655, + "1945": 41.7844370716, + "1946": 41.7490069817, + "1947": 41.713606402, + "1948": 41.678225493, + "1949": 41.6428562512, + "1950": 41.6074363763, + "1951": 41.5720654689, + "1952": 41.5366909192, + "1953": 41.5013363804, + "1954": 41.465987382, + "1955": 41.4306485538, + "1956": 41.3953150083, + "1957": 41.3599866515, + "1958": 41.3246610277, + "1959": 41.2893118747, + "1960": 41.2531734473, + "1961": 41.2174035726, + "1962": 41.1814198904, + "1963": 41.1455115709, + "1964": 41.1095317773, + "1965": 41.0735517708, + "1966": 41.0375337912, + "1967": 41.0014946305, + "1968": 40.9654238443, + "1969": 40.9293246465, + "1970": 40.8931412543, + "1971": 40.8569469503, + "1972": 40.8207064069, + "1973": 40.7844354609, + "1974": 40.7481243968, + "1975": 40.7117763209, + "1976": 40.6753879711, + "1977": 40.6389593133, + "1978": 40.6024887435, + "1979": 40.565975487, + "1980": 40.529434733, + "1981": 40.4928444596, + "1982": 40.4562114272, + "1983": 40.4195308577, + "1984": 40.3828037891, + "1985": 40.3460283976, + "1986": 40.309204337, + "1987": 40.2723305694, + "1988": 40.2354064501, + "1989": 40.1984311851, + "1990": 40.1612406558, + "1991": 40.124022278, + "1992": 40.0867319248, + "1993": 40.0493907274, + "1994": 40.0119872709, + "1995": 39.9745264554, + "1996": 39.937005074, + "1997": 39.8994240221, + "1998": 39.8617821934, + "1999": 39.8240795319, + "2000": 3.4353002798, + "2001": 3.4355000114, + "2002": 3.4356997513, + "2003": 3.435899487, + "2004": 3.4360992248, + "2005": 3.4362989616, + "2006": 3.4364986989, + "2007": 3.4366984359, + "2008": 3.436898173, + "2009": 3.4370979101, + "2010": 3.4372976472, + "2011": 3.4374973843, + "2012": 3.4376971214, + "2013": 3.4378968585, + "2014": 3.4380965957, + "2015": 3.4382963328, + "2016": 3.4384960699, + "2017": 3.438695807, + "2018": 3.4388955441, + "2019": 3.4390952812, + "2020": 3.4392950183, + "2021": 3.5631272281, + "2022": 3.7565027038, + "2023": 3.9151065466, + "2024": 4.0910962058, + "2025": 4.2583929568, + "2026": 4.4300361619, + "2027": 4.5995061399, + "2028": 4.7700627315, + "2029": 4.9400760163, + "2030": 5.1103609545, + "2031": 5.2844436368, + "2032": 5.4626790944, + "2033": 5.6388381644, + "2034": 5.8160354282, + "2035": 5.992713595, + "2036": 6.1696513104, + "2037": 6.3464592515, + "2038": 6.5233320797, + "2039": 6.7001724643, + "2040": 6.8770290708, + "2041": 7.1442697269, + "2042": 7.5742203274, + "2043": 7.9228159558, + "2044": 8.3120890702, + "2045": 8.6810234416, + "2046": 9.0601271845, + "2047": 9.4341462417, + "2048": 9.8107076417, + "2049": 10.1859978703, + "2050": 10.5619236846, + "2051": 10.9425840541, + "2052": 11.3396430101, + "2053": 11.7285026729, + "2054": 12.1214619822, + "2055": 12.5123714683, + "2056": 12.904305866, + "2057": 13.2957278079, + "2058": 13.6874059777, + "2059": 14.0789560336, + "2060": 14.4705701464, + "2061": 14.8694965474, + "2062": 15.3180131005, + "2063": 15.7417345775, + "2064": 16.1778535925, + "2065": 16.6077738385, + "2066": 17.040793469, + "2067": 17.4722634073, + "2068": 17.9045081917, + "2069": 18.336365553, + "2070": 18.7684166259, + "2071": 19.200593146, + "2072": 19.639820638, + "2073": 20.075522644, + "2074": 20.512987393, + "2075": 20.9495707705, + "2076": 21.3865948337, + "2077": 21.8233985541, + "2078": 22.2603124459, + "2079": 22.697171252, + "2080": 23.134057601, + "2081": 23.5709301785, + "2082": 23.6815385904, + "2083": 23.9342293399, + "2084": 24.1158789206, + "2085": 24.3330490856, + "2086": 24.5324589585, + "2087": 24.7407489775, + "2088": 24.9445989234, + "2089": 25.1506689059, + "2090": 25.3556288701, + "2091": 25.5611438434, + "2092": 25.7172922521, + "2093": 25.8893580396, + "2094": 26.0534651377, + "2095": 26.2215515804, + "2096": 26.3876483508, + "2097": 26.5547399574, + "2098": 26.7213341459, + "2099": 26.8881770435, + "2100": 27.0548955865, + "2101": 27.2216763068, + "2102": 27.086919319, + "2103": 27.006449067, + "2104": 26.898835447, + "2105": 26.8047935111, + "2106": 26.7039657331, + "2107": 26.6065308762, + "2108": 26.5073995587, + "2109": 26.4091164715, + "2110": 26.3104092692, + "2111": 26.2119141245, + "2112": 26.0678094115, + "2113": 25.9237577129, + "2114": 25.7796795071, + "2115": 25.6356145549, + "2116": 25.4915429759, + "2117": 25.3474747103, + "2118": 25.203404788, + "2119": 25.059335694, + "2120": 24.9152661859, + "2121": 24.7711968849, + "2122": 24.5627605042, + "2123": 24.3390793651, + "2124": 24.1230206053, + "2125": 23.9031506558, + "2126": 23.6851863011, + "2127": 23.4662691491, + "2128": 23.2478283957, + "2129": 23.029149443, + "2130": 22.8105895899, + "2131": 22.591970187, + "2132": 22.3653893484, + "2133": 22.1342985662, + "2134": 21.9054627558, + "2135": 21.6754994595, + "2136": 21.4460999061, + "2137": 21.2164184813, + "2138": 20.9868779922, + "2139": 20.7572670352, + "2140": 20.5276913122, + "2141": 20.2980979722, + "2142": 20.107310297, + "2143": 19.9568072605, + "2144": 19.7861619047, + "2145": 19.6255877086, + "2146": 19.4599779326, + "2147": 19.2968859465, + "2148": 19.1325350655, + "2149": 18.9688136319, + "2150": 18.8047774746, + "2151": 18.6408986792, + "2152": 18.4827221661, + "2153": 18.3349907272, + "2154": 18.1820367512, + "2155": 18.0316940438, + "2156": 17.8800457021, + "2157": 17.7290501775, + "2158": 17.5777282443, + "2159": 17.4265695155, + "2160": 17.2753291845, + "2161": 17.1241296546, + "2162": 16.9953927352, + "2163": 16.9389328375, + "2164": 16.846334429, + "2165": 16.7718052758, + "2166": 16.688241495, + "2167": 16.609195028, + "2168": 16.5278899041, + "2169": 16.4477141087, + "2170": 16.366973649, + "2171": 16.2865155215, + "2172": 16.2089929844, + "2173": 16.1523091372, + "2174": 16.0852059451, + "2175": 16.0233124254, + "2176": 15.9588140694, + "2177": 15.8956181316, + "2178": 15.8317709848, + "2179": 15.7682494424, + "2180": 15.7045650978, + "2181": 15.6409621544, + "2182": 15.5788071492, + "2183": 15.5635646192, + "2184": 15.5248658516, + "2185": 15.4978952028, + "2186": 15.4650604947, + "2187": 15.4351578162, + "2188": 15.4037891228, + "2189": 15.3731534369, + "2190": 15.3421512473, + "2191": 15.3113323095, + "2192": 15.2804217458, + "2193": 15.2626547667, + "2194": 15.2391610129, + "2195": 15.2185306464, + "2196": 15.1964685862, + "2197": 15.1751223729, + "2198": 15.1534182362, + "2199": 15.1318930611, + "2200": 15.1102784052, + "2201": 15.0887084898, + "2202": 15.0671162041, + "2203": 15.0532277107, + "2204": 15.036861001, + "2205": 15.0217333995, + "2206": 15.0059862439, + "2207": 14.9905488653, + "2208": 14.9749565982, + "2209": 14.9594417754, + "2210": 14.9438882305, + "2211": 14.9283540466, + "2212": 14.9128101822, + "2213": 14.8978727967, + "2214": 14.8828246962, + "2215": 14.8678319532, + "2216": 14.8528115314, + "2217": 14.837804949, + "2218": 14.8227914469, + "2219": 14.8077814047, + "2220": 14.7927696326, + "2221": 14.7777587254, + "2222": 14.7627473857, + "2223": 14.7404281674, + "2224": 14.7181088409, + "2225": 14.6957895686, + "2226": 14.6734702691, + "2227": 14.6511509833, + "2228": 14.6288316906, + "2229": 14.6065124013, + "2230": 14.5841931104, + "2231": 14.5618738202, + "2232": 14.5395545297, + "2233": 14.5150554001, + "2234": 14.4900399926, + "2235": 14.4652827241, + "2236": 14.4403963861, + "2237": 14.4155745828, + "2238": 14.3907205122, + "2239": 14.3658825752, + "2240": 14.3410365715, + "2241": 14.3161946011, + "2242": 14.291350614, + "2243": 14.2582098036, + "2244": 14.2204009587, + "2245": 14.184926131, + "2246": 14.1482842947, + "2247": 14.1122259627, + "2248": 14.0758758786, + "2249": 14.0396716705, + "2250": 14.0033945244, + "2251": 13.9671538473, + "2252": 13.9308949357, + "2253": 13.8923585953, + "2254": 13.851443206, + "2255": 13.8117173412, + "2256": 13.7713967141, + "2257": 13.7313734681, + "2258": 13.6912015316, + "2259": 13.6511039404, + "2260": 13.6109691765, + "2261": 13.570852999, + "2262": 13.5307275283, + "2263": 13.4854733108, + "2264": 13.4309766619, + "2265": 13.3811012287, + "2266": 13.3289151877, + "2267": 13.2778844505, + "2268": 13.2262760615, + "2269": 13.1749564984, + "2270": 13.1234925223, + "2271": 13.0721007527, + "2272": 13.0206728799, + "2273": 12.9678550002, + "2274": 12.9105021925, + "2275": 12.8554168488, + "2276": 12.7991977731, + "2277": 12.7435455634, + "2278": 12.6876099207, + "2279": 12.6318159945, + "2280": 12.57595121, + "2281": 12.5201218547, + "2282": 12.4642747848, + "2283": 12.4038767412, + "2284": 12.3126954099, + "2285": 12.2369057225, + "2286": 12.1534202131, + "2287": 12.0737826147, + "2288": 11.9922210608, + "2289": 11.9116214846, + "2290": 11.8305409196, + "2291": 11.749700849, + "2292": 11.6687405312, + "2293": 11.5873269039, + "2294": 11.4897100735, + "2295": 11.4001948447, + "2296": 11.306628815, + "2297": 11.2150881858, + "2298": 11.1225348564, + "2299": 11.0304878771, + "2300": 10.9381877227, + "2301": 10.8460141559, + "2302": 10.7537772952, + "2303": 10.6615720815, + "2304": 10.5720007637, + "2305": 10.4812834476, + "2306": 10.3911391307, + "2307": 10.3007083141, + "2308": 10.2104207474, + "2309": 10.1200615558, + "2310": 10.0297381766, + "2311": 9.9393968912, + "2312": 9.8490645589, + "2313": 9.75872775, + "2314": 9.6700658465, + "2315": 9.5808651808, + "2316": 9.4919338962, + "2317": 9.402867921, + "2318": 9.3138692911, + "2319": 9.2248369886, + "2320": 9.1358215224, + "2321": 9.0467976381, + "2322": 8.9577779628, + "2323": 8.868756183, + "2324": 8.7982493562, + "2325": 8.7244095012, + "2326": 8.6522361603, + "2327": 8.5792295623, + "2328": 8.5066395928, + "2329": 8.4338413091, + "2330": 8.3611471825, + "2331": 8.2884009774, + "2332": 8.2156808115, + "2333": 8.142947626, + "2334": 8.0909400515, + "2335": 8.038929222, + "2336": 7.98692002, + "2337": 7.9349100042, + "2338": 7.8829003953, + "2339": 7.830890583, + "2340": 7.7788808724, + "2341": 7.7268711109, + "2342": 7.6748613749, + "2343": 7.6228516261, + "2344": 7.5895916079, + "2345": 7.5607723105, + "2346": 7.5297326527, + "2347": 7.4998031751, + "2348": 7.4693186075, + "2349": 7.4391115848, + "2350": 7.4087657897, + "2351": 7.3784893808, + "2352": 7.3481782788, + "2353": 7.3178845233, + "2354": 7.29603803, + "2355": 7.278952337, + "2356": 7.2594862439, + "2357": 7.2412103509, + "2358": 7.2223393578, + "2359": 7.2037659147, + "2360": 7.1850436966, + "2361": 7.1663958661, + "2362": 7.1477108417, + "2363": 7.1290444143, + "2364": 7.1161727189, + "2365": 7.109332935, + "2366": 7.0994771954, + "2367": 7.0911294336, + "2368": 7.0820276829, + "2369": 7.0733029267, + "2370": 7.0643896733, + "2371": 7.0555706684, + "2372": 7.0467045393, + "2373": 7.0378619723, + "2374": 7.0316429151, + "2375": 7.0301732721, + "2376": 7.0263289221, + "2377": 7.0236719255, + "2378": 7.0204212522, + "2379": 7.0174674173, + "2380": 7.0143651632, + "2381": 7.0113371187, + "2382": 7.0082719694, + "2383": 7.0052253725, + "2384": 7.0025757412, + "2385": 7.0012365257, + "2386": 6.9992421023, + "2387": 6.9975752828, + "2388": 6.9957446613, + "2389": 6.9939959408, + "2390": 6.9922062699, + "2391": 6.9904370742, + "2392": 6.9886576408, + "2393": 6.9868833263, + "2394": 6.985237528, + "2395": 6.9844777702, + "2396": 6.9832749921, + "2397": 6.9822937242, + "2398": 6.9812017012, + "2399": 6.9801650557, + "2400": 6.9791007215, + "2401": 6.9780502316, + "2402": 6.9769928196, + "2403": 6.9759388686, + "2404": 6.974817658, + "2405": 6.971633143, + "2406": 6.9694802802, + "2407": 6.9668115913, + "2408": 6.9644008154, + "2409": 6.961861083, + "2410": 6.9593858289, + "2411": 6.9568783357, + "2412": 6.954386962, + "2413": 6.9518875285, + "2414": 6.949392125, + "2415": 6.9453283791, + "2416": 6.941947751, + "2417": 6.938225564, + "2418": 6.9346741565, + "2419": 6.9310373592, + "2420": 6.9274432569, + "2421": 6.923827807, + "2422": 6.9202230309, + "2423": 6.916612918, + "2424": 6.9130054734, + "2425": 6.9063319711, + "2426": 6.9006442255, + "2427": 6.8944636016, + "2428": 6.8885294169, + "2429": 6.8824720125, + "2430": 6.876476218, + "2431": 6.8704496186, + "2432": 6.8644384216, + "2433": 6.8584195234, + "2434": 6.8524044758, + "2435": 6.8432632483, + "2436": 6.8346853494, + "2437": 6.8258257862, + "2438": 6.8171070551, + "2439": 6.8083179079, + "2440": 6.7995639688, + "2441": 6.7907924257, + "2442": 6.7820296845, + "2443": 6.7732625424, + "2444": 6.7644976008, + "2445": 6.7550520702, + "2446": 6.7456070898, + "2447": 6.7361618343, + "2448": 6.7267167163, + "2449": 6.7172715295, + "2450": 6.7078263772, + "2451": 6.6983812076, + "2452": 6.6889360467, + "2453": 6.6794908814, + "2454": 6.6700457183, + "2455": 6.6596806919, + "2456": 6.649097804, + "2457": 6.6386238468, + "2458": 6.6280954243, + "2459": 6.6175942344, + "2460": 6.6070794282, + "2461": 6.5965714302, + "2462": 6.5860600281, + "2463": 6.575550328, + "2464": 6.565039777, + "2465": 6.5546747228, + "2466": 6.5443910585, + "2467": 6.5340666992, + "2468": 6.5237626874, + "2469": 6.5134485019, + "2470": 6.5031394033, + "2471": 6.4928277612, + "2472": 6.4825173908, + "2473": 6.4722063846, + "2474": 6.4618956963, + "2475": 6.4516955039, + "2476": 6.4416103019, + "2477": 6.4314676047, + "2478": 6.421353655, + "2479": 6.4112253316, + "2480": 6.4011041951, + "2481": 6.3909794651, + "2482": 6.3808565319, + "2483": 6.3707327003, + "2484": 6.3606093178, + "2485": 6.3508899261, + "2486": 6.3418982342, + "2487": 6.3325426924, + "2488": 6.3233690755, + "2489": 6.3141044962, + "2490": 6.3048853981, + "2491": 6.2956435594, + "2492": 6.286413091, + "2493": 6.2771769374, + "2494": 6.2679436264, + "2495": 6.2589870242, + "2496": 6.2509251219, + "2497": 6.2424158696, + "2498": 6.2341302924, + "2499": 6.2257328776, + "2500": 6.2173913816, + "2501": 6.2090219262, + "2502": 6.2006664505, + "2503": 6.1923039849, + "2504": 6.1839450143, + "2505": 6.1757416592, + "2506": 6.1686013777, + "2507": 6.1609295594, + "2508": 6.1535235094, + "2509": 6.1459845753, + "2510": 6.1385120833, + "2511": 6.1310063703, + "2512": 6.1235172677, + "2513": 6.1160198599, + "2514": 6.1085266048, + "2515": 6.1010721464, + "2516": 6.0949062302, + "2517": 6.0880960429, + "2518": 6.0816079911, + "2519": 6.0749588716, + "2520": 6.0683902859, + "2521": 6.0617814333, + "2522": 6.0551927142, + "2523": 6.0485939284, + "2524": 6.0420001759, + "2525": 6.0354039067, + "2526": 6.0295542439, + "2527": 6.0233793648, + "2528": 6.0173670939, + "2529": 6.0112735189, + "2530": 6.0052205959, + "2531": 5.999147347, + "2532": 5.993084261, + "2533": 5.9870160935, + "2534": 5.9809504668, + "2535": 5.9748835697, + "2536": 5.9695354493, + "2537": 5.9639561801, + "2538": 5.9584924853, + "2539": 5.9529710033, + "2540": 5.9474784149, + "2541": 5.9419713796, + "2542": 5.9364715678, + "2543": 5.9309681443, + "2544": 5.9254665267, + "2545": 5.9199640061, + "2546": 5.9140571118, + "2547": 5.9082228603, + "2548": 5.9023522875, + "2549": 5.8964998753, + "2550": 5.8906383828, + "2551": 5.8847814304, + "2552": 5.878922208, + "2553": 5.8730641206, + "2554": 5.8672054657, + "2555": 5.8613470946, + "2556": 5.8562058775, + "2557": 5.8510647313, + "2558": 5.8459235497, + "2559": 5.8407823858, + "2560": 5.835641213, + "2561": 5.8305000447, + "2562": 5.8253588741, + "2563": 5.8202177047, + "2564": 5.8150765347, + "2565": 5.809935365, + "2566": 5.8047216443, + "2567": 5.7994907405, + "2568": 5.7942684283, + "2569": 5.7890418203, + "2570": 5.7838173602, + "2571": 5.7785918261, + "2572": 5.773366829, + "2573": 5.7681415635, + "2574": 5.7629164321, + "2575": 5.7576912337, + "2576": 5.752384795, + "2577": 5.747032623, + "2578": 5.7417033177, + "2579": 5.736362579, + "2580": 5.7310275571, + "2581": 5.7256896767, + "2582": 5.7203532256, + "2583": 5.7150160598, + "2584": 5.7096792514, + "2585": 5.7043422643, + "2586": 5.6989173221, + "2587": 5.6934009044, + "2588": 5.6879302245, + "2589": 5.6824366757, + "2590": 5.6769545613, + "2591": 5.6714667297, + "2592": 5.6659817567, + "2593": 5.6604953544, + "2594": 5.6550096668, + "2595": 5.6495236218, + "2596": 5.6439399391, + "2597": 5.6381800975, + "2598": 5.6325083354, + "2599": 5.6267925335, + "2600": 5.6210987515, + "2601": 5.6153939595, + "2602": 5.6096946725, + "2603": 5.603992633, + "2604": 5.5982919698, + "2605": 5.5925906185, + "2606": 5.5868534637, + "2607": 5.5809999484, + "2608": 5.5752046133, + "2609": 5.5693801881, + "2610": 5.563570308, + "2611": 5.5577531553, + "2612": 5.551939639, + "2613": 5.5461243045, + "2614": 5.540309879, + "2615": 5.534494999, + "2616": 5.5286493928, + "2617": 5.5225947371, + "2618": 5.5166446061, + "2619": 5.5106422128, + "2620": 5.5046659506, + "2621": 5.4986766228, + "2622": 5.4926938279, + "2623": 5.4867077665, + "2624": 5.4807233384, + "2625": 5.4747380936, + "2626": 5.4687511044, + "2627": 5.4626961001, + "2628": 5.4566751033, + "2629": 5.4506371027, + "2630": 5.4446076041, + "2631": 5.4385738545, + "2632": 5.4325422303, + "2633": 5.4265095435, + "2634": 5.4204773879, + "2635": 5.4144449668, + "2636": 5.4084126784, + "2637": 5.4022857913, + "2638": 5.3962001047, + "2639": 5.3900938179, + "2640": 5.3839978312, + "2641": 5.3778966944, + "2642": 5.3717981326, + "2643": 5.3656982834, + "2644": 5.3595990779, + "2645": 5.3534995505, + "2646": 5.3474001841, + "2647": 5.3413170355, + "2648": 5.3352286885, + "2649": 5.3291429407, + "2650": 5.3230558932, + "2651": 5.3169694956, + "2652": 5.3108827731, + "2653": 5.3047962131, + "2654": 5.2987095718, + "2655": 5.2926229711, + "2656": 5.2865363501, + "2657": 5.2798020684, + "2658": 5.2731843624, + "2659": 5.2665083685, + "2660": 5.2598615186, + "2661": 5.2532000966, + "2662": 5.2465459607, + "2663": 5.2398881818, + "2664": 5.2332322244, + "2665": 5.2265753562, + "2666": 5.2199189434, + "2667": 5.2139312114, + "2668": 5.2079435933, + "2669": 5.2019559182, + "2670": 5.1959682716, + "2671": 5.1899806108, + "2672": 5.1839929571, + "2673": 5.1780052998, + "2674": 5.1720176443, + "2675": 5.166029988, + "2676": 5.160042332, + "2677": 5.1541618841, + "2678": 5.1483068277, + "2679": 5.1424390755, + "2680": 5.1365776713, + "2681": 5.130713093, + "2682": 5.1248501018, + "2683": 5.1189863171, + "2684": 5.1131229291, + "2685": 5.1072593427, + "2686": 5.1013958555, + "2687": 5.095694362, + "2688": 5.0900840427, + "2689": 5.0844281362, + "2690": 5.0787950233, + "2691": 5.0731505137, + "2692": 5.0675117024, + "2693": 5.0618700419, + "2694": 5.056229806, + "2695": 5.0505888579, + "2696": 5.0449482658, + "2697": 5.0396040766, + "2698": 5.0345679643, + "2699": 5.0293778135, + "2700": 5.0242646819, + "2701": 5.0191130407, + "2702": 5.0139806543, + "2703": 5.0088386406, + "2704": 5.0037014405, + "2705": 4.9985618336, + "2706": 4.9934234301, + "2707": 4.9881968913, + "2708": 4.9828130929, + "2709": 4.9775079243, + "2710": 4.9721634407, + "2711": 4.9668386147, + "2712": 4.9615039599, + "2713": 4.9561742195, + "2714": 4.9508420219, + "2715": 4.9455110529, + "2716": 4.9401794696, + "2717": 4.9346829776, + "2718": 4.9286552809, + "2719": 4.9228931865, + "2720": 4.9169982909, + "2721": 4.911169796, + "2722": 4.9053081008, + "2723": 4.8994630057, + "2724": 4.8936096105, + "2725": 4.8877603653, + "2726": 4.8819090452, + "2727": 4.8760207739, + "2728": 4.8698755605, + "2729": 4.8638588182, + "2730": 4.8577778403, + "2731": 4.8517289802, + "2732": 4.8456640612, + "2733": 4.8396071716, + "2734": 4.8335462674, + "2735": 4.8274873704, + "2736": 4.8214274699, + "2737": 4.8153445763, + "2738": 4.8085213457, + "2739": 4.8020682836, + "2740": 4.7954301372, + "2741": 4.788884533, + "2742": 4.7822926577, + "2743": 4.7757239179, + "2744": 4.7691436104, + "2745": 4.7625690867, + "2746": 4.7559916711, + "2747": 4.7494157015, + "2748": 4.7421431639, + "2749": 4.7351740171, + "2750": 4.728053175, + "2751": 4.7210081805, + "2752": 4.7139252622, + "2753": 4.7068613057, + "2754": 4.6997878684, + "2755": 4.6927191715, + "2756": 4.6856481044, + "2757": 4.6785782223, + "2758": 4.6696766834, + "2759": 4.6613639972, + "2760": 4.6527568846, + "2761": 4.6442969852, + "2762": 4.6357634793, + "2763": 4.6272667766, + "2764": 4.6187516722, + "2765": 4.6102457687, + "2766": 4.6017352648, + "2767": 4.5932270611, + "2768": 4.5832421239, + "2769": 4.5735233669, + "2770": 4.5636715198, + "2771": 4.5538862177, + "2772": 4.5440676431, + "2773": 4.5342657048, + "2774": 4.5244554483, + "2775": 4.5146493509, + "2776": 4.504841174, + "2777": 4.4950340368, + "2778": 4.485030871, + "2779": 4.4750279652, + "2780": 4.4650249294, + "2781": 4.4550219586, + "2782": 4.4450189554, + "2783": 4.4350159683, + "2784": 4.4250129731, + "2785": 4.415009982, + "2786": 4.4050069889, + "2787": 4.3950039968, + "2788": 4.3850426963, + "2789": 4.3750912705, + "2790": 4.3651349074, + "2791": 4.355181013, + "2792": 4.3452258842, + "2793": 4.3352713726, + "2794": 4.3253165524, + "2795": 4.3153618865, + "2796": 4.3054071434, + "2797": 4.2954524389, + "2798": 4.2856337069, + "2799": 4.2758914798, + "2800": 4.2661110002, + "2801": 4.2563496469, + "2802": 4.2465787304, + "2803": 4.2368125955, + "2804": 4.2270440698, + "2805": 4.2172767396, + "2806": 4.2075088116, + "2807": 4.1977411825, + "2808": 4.1881335605, + "2809": 4.1786923296, + "2810": 4.1691679032, + "2811": 4.1596850745, + "2812": 4.150181447, + "2813": 4.1406882189, + "2814": 4.1311897911, + "2815": 4.1216939631, + "2816": 4.1121968352, + "2817": 4.1027003573, + "2818": 4.0937424774, + "2819": 4.0857548214, + "2820": 4.0772820534, + "2821": 4.0690518414, + "2822": 4.0607003515, + "2823": 4.0524095005, + "2824": 4.04408833, + "2825": 4.0357823193, + "2826": 4.0274687287, + "2827": 4.019158928, + "2828": 4.0109642615, + "2829": 4.0031467079, + "2830": 3.9951405979, + "2831": 3.987228766, + "2832": 3.9792697951, + "2833": 3.9713343937, + "2834": 3.9633872075, + "2835": 3.9554459137, + "2836": 3.9475016738, + "2837": 3.9395589069, + "2838": 3.9319166354, + "2839": 3.9263080477, + "2840": 3.9196826181, + "2841": 3.9135656095, + "2842": 3.9071943904, + "2843": 3.9009502765, + "2844": 3.8946426101, + "2845": 3.8883667199, + "2846": 3.8820749415, + "2847": 3.8757911073, + "2848": 3.8695193901, + "2849": 3.8637564666, + "2850": 3.8577391462, + "2851": 3.8518490243, + "2852": 3.8458953031, + "2853": 3.8399733815, + "2854": 3.8340355602, + "2855": 3.8281056887, + "2856": 3.8221718423, + "2857": 3.8162399834, + "2858": 3.8103071307, + "2859": 3.8065702978, + "2860": 3.8018771016, + "2861": 3.797662087, + "2862": 3.7932079816, + "2863": 3.7888734217, + "2864": 3.784479089, + "2865": 3.7801146426, + "2866": 3.7757352531, + "2867": 3.7713633352, + "2868": 3.7669876815, + "2869": 3.7629406808, + "2870": 3.758787708, + "2871": 3.7546877213, + "2872": 3.7505612415, + "2873": 3.7464480083, + "2874": 3.7423281518, + "2875": 3.7382116069, + "2876": 3.7340934062, + "2877": 3.7299760334, + "2878": 3.7258582467, + "2879": 3.7225045641, + "2880": 3.7190132765, + "2881": 3.7155907914, + "2882": 3.7121339051, + "2883": 3.7086942194, + "2884": 3.7052459334, + "2885": 3.7018019475, + "2886": 3.6983558116, + "2887": 3.6949107506, + "2888": 3.6914651522, + "2889": 3.6887290153, + "2890": 3.685992744, + "2891": 3.6832565399, + "2892": 3.6805203021, + "2893": 3.6777840812, + "2894": 3.6750478519, + "2895": 3.6723116268, + "2896": 3.6695753996, + "2897": 3.6668391734, + "2898": 3.6641029467, + "2899": 3.6636883855, + "2900": 3.6638236921, + "2901": 3.6636840648, + "2902": 3.6636819045, + "2903": 3.6636110108, + "2904": 3.6635744837, + "2905": 3.6635207733, + "2906": 3.6634756545, + "2907": 3.66342624, + "2908": 3.6633789733, + "2909": 3.6632328175, + "2910": 3.6630321776, + "2911": 3.6628587797, + "2912": 3.6626717608, + "2913": 3.6624915524, + "2914": 3.6623079388, + "2915": 3.6621260278, + "2916": 3.6619432654, + "2917": 3.6617609288, + "2918": 3.6615783793, + "2919": 3.6603459476, + "2920": 3.6580230899, + "2921": 3.6562454452, + "2922": 3.654195194, + "2923": 3.652281246, + "2924": 3.6502991464, + "2925": 3.6483511227, + "2926": 3.646386061, + "2927": 3.6444295183, + "2928": 3.6424687161, + "2929": 3.6404366108, + "2930": 3.6382712615, + "2931": 3.6361725342, + "2932": 3.634040496, + "2933": 3.6319251132, + "2934": 3.6298014027, + "2935": 3.627681856, + "2936": 3.6255602275, + "2937": 3.6234396398, + "2938": 3.6213185317, + "2939": 3.6186559654, + "2940": 3.6142520312, + "2941": 3.6107187809, + "2942": 3.6067501886, + "2943": 3.6029992674, + "2944": 3.5991395106, + "2945": 3.5953341716, + "2946": 3.5915016237, + "2947": 3.5876826802, + "2948": 3.5838569345, + "2949": 3.5800233997, + "2950": 3.5761126299, + "2951": 3.5722404776, + "2952": 3.5683490165, + "2953": 3.5644672098, + "2954": 3.5605805759, + "2955": 3.5566963557, + "2956": 3.5528109286, + "2957": 3.5489261049, + "2958": 3.5450409795, + "2959": 3.5411765009, + "2960": 3.5379575679, + "2961": 3.534415862, + "2962": 3.5310355426, + "2963": 3.52757453, + "2964": 3.524153864, + "2965": 3.5207130246, + "2966": 3.517282272, + "2967": 3.513846476, + "2968": 3.5104132016, + "2969": 3.5069786665, + "2970": 3.5036317151, + "2971": 3.5002465817, + "2972": 3.4968805392, + "2973": 3.4935049513, + "2974": 3.4901341362, + "2975": 3.4867609347, + "2976": 3.4833889263, + "2977": 3.4800163214, + "2978": 3.4766440147, + "2979": 3.473271559, + "2980": 3.4717860203, + "2981": 3.4696939593, + "2982": 3.4679051595, + "2983": 3.4659647291, + "2984": 3.4641001139, + "2985": 3.4621975912, + "2986": 3.4603140222, + "2987": 3.4584209764, + "2988": 3.456532669, + "2989": 3.4546419923, + "2990": 3.4527026005, + "2991": 3.4507715983, + "2992": 3.4488364013, + "2993": 3.4469033017, + "2994": 3.4449691534, + "2995": 3.4430355294, + "2996": 3.4411016433, + "2997": 3.4391678882, + "2998": 3.4372340676, + "2999": 3.4353002798, + "3000": 39.5450948474, + "3001": 39.5089364439, + "3002": 39.4727672844, + "3003": 39.436588785, + "3004": 39.4004001514, + "3005": 39.3642010686, + "3006": 39.3279911679, + "3007": 39.2917701312, + "3008": 39.2555376718, + "3009": 39.2192935367, + "3010": 39.1830375073, + "3011": 39.1467693989, + "3012": 39.1104890606, + "3013": 39.0741963755, + "3014": 39.0378912605, + "3015": 39.0015736665, + "3016": 38.965243578, + "3017": 38.9289010136, + "3018": 38.8925460252, + "3019": 38.8561786986, + "3020": 38.819799153, + "3021": 38.8577080579, + "3022": 38.9395662571, + "3023": 39.0040039145, + "3024": 39.0817860243, + "3025": 39.1574975432, + "3026": 39.2388360698, + "3027": 39.3219384721, + "3028": 39.4087229763, + "3029": 39.4982170421, + "3030": 39.5908936405, + "3031": 39.688867065, + "3032": 39.7924089176, + "3033": 39.8978427767, + "3034": 40.0069979933, + "3035": 40.1189455588, + "3036": 40.234136848, + "3037": 40.3523329124, + "3038": 40.4736400998, + "3039": 40.5979921909, + "3040": 40.7254093408, + "3041": 40.910192394, + "3042": 41.1973835448, + "3043": 41.4432231446, + "3044": 41.7197289778, + "3045": 41.9908296149, + "3046": 42.2745384741, + "3047": 42.5618186714, + "3048": 42.8571602127, + "3049": 43.1582894743, + "3050": 43.4663148464, + "3051": 43.7836901887, + "3052": 44.1174905039, + "3053": 44.4532054806, + "3054": 44.7980766849, + "3055": 45.1484511129, + "3056": 45.5061269312, + "3057": 45.870176105, + "3058": 46.241033983, + "3059": 46.6184543241, + "3060": 47.0025318193, + "3061": 47.3976046026, + "3062": 47.8291902981, + "3063": 48.2534415523, + "3064": 48.6922963525, + "3065": 49.134745429, + "3066": 49.5862642157, + "3067": 50.0440837446, + "3068": 50.5095578208, + "3069": 50.9819789096, + "3070": 51.4616702971, + "3071": 51.9485735871, + "3072": 52.446833236, + "3073": 52.9501966226, + "3074": 53.4617659142, + "3075": 53.9799585421, + "3076": 54.5055359283, + "3077": 55.0380873288, + "3078": 55.5777882693, + "3079": 56.1245212549, + "3080": 56.6783154287, + "3081": 57.2391267384, + "3082": 57.610865811, + "3083": 58.0692605326, + "3084": 58.4884301622, + "3085": 58.9313443303, + "3086": 59.3665008638, + "3087": 59.8096428802, + "3088": 60.2528890453, + "3089": 60.700170681, + "3090": 61.1495127631, + "3091": 61.6018935116, + "3092": 62.0273130834, + "3093": 62.46413511, + "3094": 62.8982426151, + "3095": 63.3366891538, + "3096": 63.7759419522, + "3097": 64.2177616631, + "3098": 64.6612622225, + "3099": 65.1068809734, + "3100": 65.5543935927, + "3101": 66.0039066292, + "3102": 66.274162094, + "3103": 66.5737137965, + "3104": 66.8543231028, + "3105": 67.1400941469, + "3106": 67.4189979232, + "3107": 67.6970643102, + "3108": 67.9712952383, + "3109": 68.2432062707, + "3110": 68.5120561788, + "3111": 68.7782320809, + "3112": 69.0142100798, + "3113": 69.2466426307, + "3114": 69.4754537616, + "3115": 69.7006860548, + "3116": 69.9223371902, + "3117": 70.1404243648, + "3118": 70.354955543, + "3119": 70.5659431401, + "3120": 70.7733973188, + "3121": 70.9773293132, + "3122": 71.1390665738, + "3123": 71.2870131029, + "3124": 71.4346020127, + "3125": 71.5751086553, + "3126": 71.7119237233, + "3127": 71.8433728687, + "3128": 71.9703156545, + "3129": 72.0923443283, + "3130": 72.2096847852, + "3131": 72.322246017, + "3132": 72.4252928521, + "3133": 72.5207744461, + "3134": 72.6126852447, + "3135": 72.6990445439, + "3136": 72.7808664301, + "3137": 72.8576660688, + "3138": 72.9297083073, + "3139": 72.9968830248, + "3140": 73.0592675271, + "3141": 73.1168453354, + "3142": 73.1929628901, + "3143": 73.2892038925, + "3144": 73.3700058037, + "3145": 73.453212042, + "3146": 73.5299081079, + "3147": 73.6045693807, + "3148": 73.6749740566, + "3149": 73.7422493109, + "3150": 73.8058476913, + "3151": 73.8660590262, + "3152": 73.9262286873, + "3153": 73.9893178301, + "3154": 74.0461089162, + "3155": 74.1012362431, + "3156": 74.1523953124, + "3157": 74.200753542, + "3158": 74.2457418329, + "3159": 74.2876594011, + "3160": 74.3263712388, + "3161": 74.3619594085, + "3162": 74.4079092079, + "3163": 74.494561488, + "3164": 74.5580558478, + "3165": 74.6304005444, + "3166": 74.695585969, + "3167": 74.7616281108, + "3168": 74.8245267969, + "3169": 74.8862905758, + "3170": 74.9459234757, + "3171": 75.0039317851, + "3172": 75.0619196967, + "3173": 75.1307039544, + "3174": 75.1918722224, + "3175": 75.2546565509, + "3176": 75.3144438498, + "3177": 75.3735481599, + "3178": 75.4308190194, + "3179": 75.4868383793, + "3180": 75.5413219263, + "3181": 75.5944184652, + "3182": 75.6469548599, + "3183": 75.726284238, + "3184": 75.7909443578, + "3185": 75.861711856, + "3186": 75.9281938856, + "3187": 75.9955923294, + "3188": 76.0613096943, + "3189": 76.1266485625, + "3190": 76.1909613862, + "3191": 76.2545756868, + "3192": 76.3173314356, + "3193": 76.387183853, + "3194": 76.4530249784, + "3195": 76.5199302683, + "3196": 76.5853633406, + "3197": 76.6505955968, + "3198": 76.7149941628, + "3199": 76.7788783675, + "3200": 76.8420914141, + "3201": 76.9047145623, + "3202": 76.9667100335, + "3203": 77.0327226545, + "3204": 77.0967701447, + "3205": 77.1610513409, + "3206": 77.2244689898, + "3207": 77.287574049, + "3208": 77.3500933288, + "3209": 77.4121657125, + "3210": 77.4737240383, + "3211": 77.5348041597, + "3212": 77.5953904153, + "3213": 77.655854466, + "3214": 77.7157774091, + "3215": 77.7752591075, + "3216": 77.8342518854, + "3217": 77.8927817532, + "3218": 77.9508378863, + "3219": 78.0084278675, + "3220": 78.0655500696, + "3221": 78.1222074635, + "3222": 78.178400714, + "3223": 78.2297396207, + "3224": 78.2804893236, + "3225": 78.3306453082, + "3226": 78.3802106344, + "3227": 78.4291868843, + "3228": 78.4775759072, + "3229": 78.5253795029, + "3230": 78.572599469, + "3231": 78.6192375995, + "3232": 78.6652956811, + "3233": 78.7094654584, + "3234": 78.7527102629, + "3235": 78.7954864256, + "3236": 78.8375676116, + "3237": 78.8790700476, + "3238": 78.919938423, + "3239": 78.9602032368, + "3240": 78.9998520643, + "3241": 79.038893936, + "3242": 79.0773271456, + "3243": 79.1101685243, + "3244": 79.1394553205, + "3245": 79.1693088044, + "3246": 79.1976657655, + "3247": 79.2255627871, + "3248": 79.2524850322, + "3249": 79.2786936648, + "3250": 79.3040617766, + "3251": 79.3286564962, + "3252": 79.3524479201, + "3253": 79.3740804837, + "3254": 79.3934555919, + "3255": 79.4126767229, + "3256": 79.4306933817, + "3257": 79.4480352829, + "3258": 79.4644413776, + "3259": 79.4800461158, + "3260": 79.4947861602, + "3261": 79.5086970603, + "3262": 79.5217649095, + "3263": 79.5309154559, + "3264": 79.5335891074, + "3265": 79.5379539396, + "3266": 79.5399211852, + "3267": 79.5415418776, + "3268": 79.541794858, + "3269": 79.5411955043, + "3270": 79.5394908203, + "3271": 79.5368120006, + "3272": 79.5330981266, + "3273": 79.5275381088, + "3274": 79.5182205953, + "3275": 79.5091561407, + "3276": 79.4983401013, + "3277": 79.486780647, + "3278": 79.4739784805, + "3279": 79.4601882316, + "3280": 79.4452875094, + "3281": 79.4293424268, + "3282": 79.4123248279, + "3283": 79.3915133136, + "3284": 79.3510662597, + "3285": 79.3181937185, + "3286": 79.279269289, + "3287": 79.2411187519, + "3288": 79.2003349844, + "3289": 79.1586286514, + "3290": 79.1151512316, + "3291": 79.0703338298, + "3292": 79.0239677056, + "3293": 78.9758554599, + "3294": 78.9165281274, + "3295": 78.8603125208, + "3296": 78.8000385288, + "3297": 78.7393017343, + "3298": 78.6763114004, + "3299": 78.6119706158, + "3300": 78.5458353953, + "3301": 78.4781352944, + "3302": 78.4087630694, + "3303": 78.3377798542, + "3304": 78.2667549957, + "3305": 78.1934680438, + "3306": 78.1189391107, + "3307": 78.0426650859, + "3308": 77.964904827, + "3309": 77.8855361091, + "3310": 77.8046272411, + "3311": 77.7221512398, + "3312": 77.6381287462, + "3313": 77.5525565669, + "3314": 77.4664486411, + "3315": 77.378508671, + "3316": 77.289218975, + "3317": 77.1983452914, + "3318": 77.1060116646, + "3319": 77.0121629568, + "3320": 76.9168336014, + "3321": 76.8200132245, + "3322": 76.7217138346, + "3323": 76.6219362276, + "3324": 76.5318132497, + "3325": 76.4385437667, + "3326": 76.3450937355, + "3327": 76.24998749, + "3328": 76.1539678083, + "3329": 76.0566686994, + "3330": 75.9582784463, + "3331": 75.8587081973, + "3332": 75.7580076475, + "3333": 75.6561572031, + "3334": 75.5656236422, + "3335": 75.474316106, + "3336": 75.3822580397, + "3337": 75.2894466529, + "3338": 75.1958856903, + "3339": 75.1015769316, + "3340": 75.0065228658, + "3341": 74.910725669, + "3342": 74.8141876523, + "3343": 74.716911051, + "3344": 74.630166317, + "3345": 74.5456849413, + "3346": 74.4595592992, + "3347": 74.3737536028, + "3348": 74.2872855004, + "3349": 74.2006480439, + "3350": 74.1135961537, + "3351": 74.0262538961, + "3352": 73.9385607425, + "3353": 73.8505484605, + "3354": 73.7672845036, + "3355": 73.686702476, + "3356": 73.6046020722, + "3357": 73.5230903808, + "3358": 73.4411130824, + "3359": 73.3591981008, + "3360": 73.2770819285, + "3361": 73.1948968338, + "3362": 73.1125771829, + "3363": 73.030156294, + "3364": 72.9511061075, + "3365": 72.8756710965, + "3366": 72.7985245205, + "3367": 72.7223362654, + "3368": 72.6457696936, + "3369": 72.5694930715, + "3370": 72.4931718866, + "3371": 72.4169730822, + "3372": 72.3408128616, + "3373": 72.2647328019, + "3374": 72.1902955479, + "3375": 72.1188245317, + "3376": 72.0461235024, + "3377": 71.9742946571, + "3378": 71.9022851218, + "3379": 71.8306207299, + "3380": 71.7590377299, + "3381": 71.6876672118, + "3382": 71.6164428379, + "3383": 71.5453969888, + "3384": 71.4747568309, + "3385": 71.4050777917, + "3386": 71.3352013441, + "3387": 71.2657071236, + "3388": 71.196304178, + "3389": 71.1271371535, + "3390": 71.0581328394, + "3391": 70.9893269684, + "3392": 70.9207008017, + "3393": 70.8522628395, + "3394": 70.7840867388, + "3395": 70.7166294407, + "3396": 70.6491072697, + "3397": 70.5819119587, + "3398": 70.5148465627, + "3399": 70.4480086736, + "3400": 70.3813485786, + "3401": 70.3148902281, + "3402": 70.2486207422, + "3403": 70.1825456592, + "3404": 70.1166219294, + "3405": 70.0496482012, + "3406": 69.9834476597, + "3407": 69.9171061072, + "3408": 69.8510802423, + "3409": 69.7851408776, + "3410": 69.7194018591, + "3411": 69.653805501, + "3412": 69.5883798893, + "3413": 69.5231102257, + "3414": 69.4580031565, + "3415": 69.3921132785, + "3416": 69.3267656883, + "3417": 69.2613547593, + "3418": 69.1961828411, + "3419": 69.1310980731, + "3420": 69.066175746, + "3421": 69.0013775677, + "3422": 68.9367220332, + "3423": 68.8721992118, + "3424": 68.8078133296, + "3425": 68.7417196356, + "3426": 68.6762988537, + "3427": 68.6106764752, + "3428": 68.5452890342, + "3429": 68.4799174236, + "3430": 68.4146703234, + "3431": 68.3494924739, + "3432": 68.2844105462, + "3433": 68.2194102099, + "3434": 68.1544976027, + "3435": 68.0877909877, + "3436": 68.021452162, + "3437": 67.9549798554, + "3438": 67.8886234774, + "3439": 67.822257477, + "3440": 67.7559436895, + "3441": 67.6896502612, + "3442": 67.6233921705, + "3443": 67.5571609737, + "3444": 67.4909599338, + "3445": 67.4243781, + "3446": 67.3578122556, + "3447": 67.2912607141, + "3448": 67.2247232417, + "3449": 67.1581991001, + "3450": 67.0916877677, + "3451": 67.0251886326, + "3452": 66.9587011375, + "3453": 66.8922247107, + "3454": 66.8257588014, + "3455": 66.7587500458, + "3456": 66.6916036752, + "3457": 66.6245109866, + "3458": 66.5573752169, + "3459": 66.4902441746, + "3460": 66.4230932982, + "3461": 66.3559342535, + "3462": 66.28876061, + "3463": 66.2215750089, + "3464": 66.1543755784, + "3465": 66.0872499118, + "3466": 66.0201617011, + "3467": 65.9530388092, + "3468": 65.8859169442, + "3469": 65.8187777844, + "3470": 65.7516300748, + "3471": 65.6844690473, + "3472": 65.617296717, + "3473": 65.5501117327, + "3474": 65.4829144517, + "3475": 65.415770904, + "3476": 65.3486855552, + "3477": 65.2815566959, + "3478": 65.2144350779, + "3479": 65.1472950904, + "3480": 65.0801493595, + "3481": 65.0129914104, + "3482": 64.9458243432, + "3483": 64.8786464932, + "3484": 64.8114586007, + "3485": 64.74450315, + "3486": 64.6779817375, + "3487": 64.6112514391, + "3488": 64.5446343817, + "3489": 64.4779692887, + "3490": 64.4113367837, + "3491": 64.3446965224, + "3492": 64.2780686692, + "3493": 64.2114431493, + "3494": 64.1448250238, + "3495": 64.0783789514, + "3496": 64.0124812253, + "3497": 63.9463412598, + "3498": 63.8803552158, + "3499": 63.8143248605, + "3500": 63.7483493762, + "3501": 63.6823792075, + "3502": 63.6164391866, + "3503": 63.55051696, + "3504": 63.4846187766, + "3505": 63.4188361643, + "3506": 63.35371728, + "3507": 63.2883226236, + "3508": 63.2231229523, + "3509": 63.157882729, + "3510": 63.0927198039, + "3511": 63.0275752923, + "3512": 62.9624786915, + "3513": 62.8974153107, + "3514": 62.8323925578, + "3515": 62.7674313592, + "3516": 62.7032835193, + "3517": 62.6388101254, + "3518": 62.5745817802, + "3519": 62.5103129584, + "3520": 62.4461464762, + "3521": 62.3820109271, + "3522": 62.3179420297, + "3523": 62.2539219406, + "3524": 62.1899596001, + "3525": 62.1260505591, + "3526": 62.0626450042, + "3527": 61.9991118938, + "3528": 61.9357393354, + "3529": 61.8723831727, + "3530": 61.8091154901, + "3531": 61.745900233, + "3532": 61.6827554227, + "3533": 61.6196720442, + "3534": 61.5566546031, + "3535": 61.4937008471, + "3536": 61.4312434931, + "3537": 61.3687242572, + "3538": 61.3063480598, + "3539": 61.2440123895, + "3540": 61.1817684693, + "3541": 61.1195906542, + "3542": 61.0574917357, + "3543": 60.9954652891, + "3544": 60.9335144996, + "3545": 60.8716377493, + "3546": 60.8095925319, + "3547": 60.7476584203, + "3548": 60.6857708555, + "3549": 60.6239620837, + "3550": 60.5622160007, + "3551": 60.5005406676, + "3552": 60.4389320649, + "3553": 60.3773922129, + "3554": 60.3159201116, + "3555": 60.2545162704, + "3556": 60.1936115226, + "3557": 60.1327874916, + "3558": 60.0720447092, + "3559": 60.0113830417, + "3560": 59.9508024583, + "3561": 59.8903029195, + "3562": 59.8298843777, + "3563": 59.7695467877, + "3564": 59.7092900989, + "3565": 59.649114259, + "3566": 59.5889756105, + "3567": 59.5289060973, + "3568": 59.4689207853, + "3569": 59.409012016, + "3570": 59.3491835281, + "3571": 59.2894333472, + "3572": 59.2297623507, + "3573": 59.1701699825, + "3574": 59.1106563966, + "3575": 59.0512213845, + "3576": 58.9918160676, + "3577": 58.9324602615, + "3578": 58.8731942202, + "3579": 58.8139976024, + "3580": 58.7548804309, + "3581": 58.6958375239, + "3582": 58.636871297, + "3583": 58.577980359, + "3584": 58.5191652147, + "3585": 58.4604254136, + "3586": 58.4017080627, + "3587": 58.3430093614, + "3588": 58.2844099486, + "3589": 58.2258691881, + "3590": 58.1674072, + "3591": 58.1090136956, + "3592": 58.0506935901, + "3593": 57.992444191, + "3594": 57.9342666053, + "3595": 57.8761600363, + "3596": 57.81806585, + "3597": 57.7599349777, + "3598": 57.7019228841, + "3599": 57.6439514196, + "3600": 57.5860594573, + "3601": 57.5282273147, + "3602": 57.4704645952, + "3603": 57.4127662575, + "3604": 57.3551345837, + "3605": 57.297568195, + "3606": 57.2400458208, + "3607": 57.1825182639, + "3608": 57.1250881967, + "3609": 57.067703952, + "3610": 57.0103911699, + "3611": 56.9531368134, + "3612": 56.8959471937, + "3613": 56.838818951, + "3614": 56.7817535658, + "3615": 56.724750103, + "3616": 56.6677902381, + "3617": 56.6107661412, + "3618": 56.5538624559, + "3619": 56.4969865081, + "3620": 56.4401845187, + "3621": 56.3834332198, + "3622": 56.3267441026, + "3623": 56.2701112815, + "3624": 56.2135375646, + "3625": 56.1570214175, + "3626": 56.1005621877, + "3627": 56.0441199355, + "3628": 55.9877547028, + "3629": 55.9314362967, + "3630": 55.8751797171, + "3631": 55.8189773549, + "3632": 55.7628329103, + "3633": 55.7067444292, + "3634": 55.6507127853, + "3635": 55.5947374384, + "3636": 55.5388185543, + "3637": 55.4828991325, + "3638": 55.4270590552, + "3639": 55.3712617511, + "3640": 55.3155254086, + "3641": 55.2598408187, + "3642": 55.2042124685, + "3643": 55.1486379912, + "3644": 55.0931184405, + "3645": 55.0376531526, + "3646": 54.9822423149, + "3647": 54.9268954758, + "3648": 54.8715999389, + "3649": 54.8163601958, + "3650": 54.7611738175, + "3651": 54.7060418246, + "3652": 54.6509635016, + "3653": 54.5959389893, + "3654": 54.5409679879, + "3655": 54.4860504055, + "3656": 54.4311860334, + "3657": 54.3759854712, + "3658": 54.3208964657, + "3659": 54.265815237, + "3660": 54.2107933454, + "3661": 54.1558047495, + "3662": 54.1008621786, + "3663": 54.0459589659, + "3664": 53.9910981284, + "3665": 53.936277828, + "3666": 53.881498641, + "3667": 53.8271619235, + "3668": 53.7728773544, + "3669": 53.7186451288, + "3670": 53.6644648783, + "3671": 53.6103362934, + "3672": 53.5562590675, + "3673": 53.5022328746, + "3674": 53.4482573914, + "3675": 53.3943322847, + "3676": 53.3404572193, + "3677": 53.2866962845, + "3678": 53.2330018459, + "3679": 53.179351201, + "3680": 53.1257552195, + "3681": 53.0722079215, + "3682": 53.0187117623, + "3683": 52.9652649766, + "3684": 52.9118679102, + "3685": 52.8585198544, + "3686": 52.8052206303, + "3687": 52.752067182, + "3688": 52.6990194386, + "3689": 52.6459965956, + "3690": 52.5930386456, + "3691": 52.5401250422, + "3692": 52.4872655461, + "3693": 52.4344547676, + "3694": 52.3816949034, + "3695": 52.3289843674, + "3696": 52.2763234767, + "3697": 52.2238898477, + "3698": 52.1716953948, + "3699": 52.1194677527, + "3700": 52.0673429886, + "3701": 52.0152525488, + "3702": 51.9632302894, + "3703": 51.9112588605, + "3704": 51.8593467442, + "3705": 51.8074916889, + "3706": 51.7556989355, + "3707": 51.703917948, + "3708": 51.6521087678, + "3709": 51.6004134533, + "3710": 51.5487655073, + "3711": 51.4972028931, + "3712": 51.445711291, + "3713": 51.3943025141, + "3714": 51.342975289, + "3715": 51.2917348648, + "3716": 51.2405832058, + "3717": 51.1894246018, + "3718": 51.138039042, + "3719": 51.0868989396, + "3720": 51.0357720918, + "3721": 50.9847791818, + "3722": 50.9338642894, + "3723": 50.8830597803, + "3724": 50.8323538293, + "3725": 50.7817566624, + "3726": 50.7312674319, + "3727": 50.6808679457, + "3728": 50.6304281058, + "3729": 50.580177728, + "3730": 50.5300057332, + "3731": 50.4799717118, + "3732": 50.4300497987, + "3733": 50.3802568014, + "3734": 50.3305881193, + "3735": 50.2810497842, + "3736": 50.2316424363, + "3737": 50.1823552144, + "3738": 50.1327589188, + "3739": 50.0835102021, + "3740": 50.0342834515, + "3741": 49.9852448876, + "3742": 49.9363145646, + "3743": 49.8875355568, + "3744": 49.8388893249, + "3745": 49.7903880377, + "3746": 49.7420284071, + "3747": 49.6938147682, + "3748": 49.6453293488, + "3749": 49.5971625192, + "3750": 49.5490470741, + "3751": 49.5011189864, + "3752": 49.4533124231, + "3753": 49.405662355, + "3754": 49.3581532257, + "3755": 49.3107946198, + "3756": 49.2635834265, + "3757": 49.216522756, + "3758": 49.1685120486, + "3759": 49.1209747102, + "3760": 49.0733894675, + "3761": 49.0260181456, + "3762": 48.9787308458, + "3763": 48.9315934052, + "3764": 48.8845736565, + "3765": 48.837688299, + "3766": 48.7909294629, + "3767": 48.7443014266, + "3768": 48.6969154634, + "3769": 48.6497931625, + "3770": 48.602697944, + "3771": 48.5557478492, + "3772": 48.5088836605, + "3773": 48.4621346175, + "3774": 48.4154856045, + "3775": 48.3689435487, + "3776": 48.3225042241, + "3777": 48.2761688504, + "3778": 48.2298182984, + "3779": 48.183566303, + "3780": 48.1374115931, + "3781": 48.0913533669, + "3782": 48.0453905272, + "3783": 47.9995219909, + "3784": 47.9537465515, + "3785": 47.9080629469, + "3786": 47.862469828, + "3787": 47.8169657771, + "3788": 47.7715743566, + "3789": 47.7262756124, + "3790": 47.6810592168, + "3791": 47.6359278314, + "3792": 47.5908774995, + "3793": 47.5459074805, + "3794": 47.5010153302, + "3795": 47.4561993639, + "3796": 47.4114574275, + "3797": 47.3667875146, + "3798": 47.322269189, + "3799": 47.2778669112, + "3800": 47.2335109313, + "3801": 47.1892328073, + "3802": 47.1450132457, + "3803": 47.1008583323, + "3804": 47.0567613902, + "3805": 47.0127220591, + "3806": 46.9687367568, + "3807": 46.9248034519, + "3808": 46.8810155302, + "3809": 46.8373769977, + "3810": 46.7937382359, + "3811": 46.7501701814, + "3812": 46.7066332193, + "3813": 46.663143011, + "3814": 46.6196875285, + "3815": 46.5762685507, + "3816": 46.5328809159, + "3817": 46.4895228989, + "3818": 46.4465149063, + "3819": 46.4041228617, + "3820": 46.3614866569, + "3821": 46.3190328303, + "3822": 46.2765433819, + "3823": 46.234122804, + "3824": 46.1917142826, + "3825": 46.1493416578, + "3826": 46.1069884348, + "3827": 46.0646582852, + "3828": 46.0224151313, + "3829": 45.9804153967, + "3830": 45.9383227942, + "3831": 45.896301255, + "3832": 45.8542641852, + "3833": 45.8122503635, + "3834": 45.7702358927, + "3835": 45.7282282493, + "3836": 45.6862192597, + "3837": 45.6442086177, + "3838": 45.6023731647, + "3839": 45.56175693, + "3840": 45.5205596967, + "3841": 45.4796791325, + "3842": 45.438661787, + "3843": 45.3977302914, + "3844": 45.3567692257, + "3845": 45.3158322982, + "3846": 45.2748887394, + "3847": 45.2339501145, + "3848": 45.1930165903, + "3849": 45.1523844973, + "3850": 45.1116017885, + "3851": 45.0708915186, + "3852": 45.0301387698, + "3853": 44.9893978422, + "3854": 44.9486385326, + "3855": 44.9078730249, + "3856": 44.8670924432, + "3857": 44.8262985791, + "3858": 44.7854880309, + "3859": 44.7459795993, + "3860": 44.705915814, + "3861": 44.6661425057, + "3862": 44.6262344428, + "3863": 44.5864023875, + "3864": 44.5465391919, + "3865": 44.5066968246, + "3866": 44.4668478424, + "3867": 44.4270046562, + "3868": 44.3871598962, + "3869": 44.3475126186, + "3870": 44.3078068252, + "3871": 44.2681360006, + "3872": 44.2284527747, + "3873": 44.1887803458, + "3874": 44.1491067564, + "3875": 44.1094377529, + "3876": 44.0697703516, + "3877": 44.0301060504, + "3878": 43.9904442183, + "3879": 43.9512444818, + "3880": 43.9119785654, + "3881": 43.8727690365, + "3882": 43.833555148, + "3883": 43.7943677978, + "3884": 43.7551921594, + "3885": 43.7160363374, + "3886": 43.6768970384, + "3887": 43.6377767289, + "3888": 43.5986750507, + "3889": 43.5600193173, + "3890": 43.5213961669, + "3891": 43.4828069831, + "3892": 43.4442522425, + "3893": 43.405732679, + "3894": 43.3672489664, + "3895": 43.3288018191, + "3896": 43.2903919482, + "3897": 43.2520200773, + "3898": 43.2136869321, + "3899": 43.1767885138, + "3900": 43.1403014351, + "3901": 43.1037422903, + "3902": 43.0673547471, + "3903": 43.0310176154, + "3904": 42.9947923929, + "3905": 42.9586491755, + "3906": 42.9226037644, + "3907": 42.8866490999, + "3908": 42.8507895471, + "3909": 42.8149649681, + "3910": 42.7792008676, + "3911": 42.7435458701, + "3912": 42.7079764177, + "3913": 42.6725051309, + "3914": 42.637126523, + "3915": 42.6018441654, + "3916": 42.5666571024, + "3917": 42.5315666461, + "3918": 42.4965729801, + "3919": 42.4610458382, + "3920": 42.4249424708, + "3921": 42.389224737, + "3922": 42.3534080159, + "3923": 42.3177317076, + "3924": 42.2820727654, + "3925": 42.2464894335, + "3926": 42.2109493151, + "3927": 42.1754653518, + "3928": 42.1400278319, + "3929": 42.1045942561, + "3930": 42.06912401, + "3931": 42.0337326949, + "3932": 41.9983592198, + "3933": 41.9630310224, + "3934": 41.927731264, + "3935": 41.8924652718, + "3936": 41.8572273104, + "3937": 41.8220171984, + "3938": 41.7868320003, + "3939": 41.75134462, + "3940": 41.7148224652, + "3941": 41.6788023902, + "3942": 41.642511506, + "3943": 41.606333833, + "3944": 41.5700745611, + "3945": 41.5338284028, + "3946": 41.497545321, + "3947": 41.4612476846, + "3948": 41.4249216877, + "3949": 41.3885649162, + "3950": 41.352133787, + "3951": 41.315694886, + "3952": 41.2792123557, + "3953": 41.2427016752, + "3954": 41.206152671, + "3955": 41.169568032, + "3956": 41.1329440486, + "3957": 41.0962802443, + "3958": 41.0595745608, + "3959": 41.0228380831, + "3960": 40.9864452475, + "3961": 40.9498239958, + "3962": 40.9132587396, + "3963": 40.8766050041, + "3964": 40.839932933, + "3965": 40.8032053713, + "3966": 40.7664388575, + "3967": 40.7296231214, + "3968": 40.6927613369, + "3969": 40.6558499959, + "3970": 40.6189412289, + "3971": 40.5819597694, + "3972": 40.5449382509, + "3973": 40.5078585846, + "3974": 40.4707280975, + "3975": 40.4335414488, + "3976": 40.3962996751, + "3977": 40.3590006678, + "3978": 40.3216439347, + "3979": 40.2842282193, + "3980": 40.2478866449, + "3981": 40.2111528499, + "3982": 40.1745636183, + "3983": 40.1378490768, + "3984": 40.1011427693, + "3985": 40.0643765691, + "3986": 40.0275832334, + "3987": 39.9907451244, + "3988": 39.9538698493, + "3989": 39.9169524402, + "3990": 39.8799642763, + "3991": 39.8429381176, + "3992": 39.8058658399, + "3993": 39.7687505328, + "3994": 39.7315897341, + "3995": 39.6943838053, + "3996": 39.6571317454, + "3997": 39.6198332841, + "3998": 39.5824878352, + "3999": 39.5450950202, + "4000": 0.4538523186, + "4001": 0.4492846765, + "4002": 0.4447170291, + "4003": 0.4401493844, + "4004": 0.4355817383, + "4005": 0.4310140929, + "4006": 0.4264464471, + "4007": 0.4218788016, + "4008": 0.4173111559, + "4009": 0.4127435103, + "4010": 0.4081758646, + "4011": 0.403608219, + "4012": 0.3990405734, + "4013": 0.3944729278, + "4014": 0.3899052821, + "4015": 0.3853376365, + "4016": 0.3807699909, + "4017": 0.3762023452, + "4018": 0.3716346996, + "4019": 0.367067054, + "4020": 0.3624994083, + "4021": 0.3596244578, + "4022": 0.3577016481, + "4023": 0.355302768, + "4024": 0.3531419232, + "4025": 0.3508620607, + "4026": 0.3486417071, + "4027": 0.346391599, + "4028": 0.3441563681, + "4029": 0.3419136986, + "4030": 0.3396747485, + "4031": 0.3374877945, + "4032": 0.3353576977, + "4033": 0.3331991723, + "4034": 0.3310548612, + "4035": 0.3289034429, + "4036": 0.3267555782, + "4037": 0.3246059368, + "4038": 0.3224571837, + "4039": 0.3203079864, + "4040": 0.3181590112, + "4041": 0.31953526, + "4042": 0.3272571672, + "4043": 0.3318062452, + "4044": 0.3379417379, + "4045": 0.3432840232, + "4046": 0.3490229122, + "4047": 0.3545634993, + "4048": 0.3602032374, + "4049": 0.3657934, + "4050": 0.3714083503, + "4051": 0.3772080139, + "4052": 0.3836474331, + "4053": 0.3897669745, + "4054": 0.3960464548, + "4055": 0.4022459657, + "4056": 0.4084854613, + "4057": 0.4147049645, + "4058": 0.4209344639, + "4059": 0.4271589652, + "4060": 0.4333859655, + "4061": 0.441192189, + "4062": 0.4596672279, + "4063": 0.4728078591, + "4064": 0.4886156941, + "4065": 0.5030899271, + "4066": 0.5182309612, + "4067": 0.5330385948, + "4068": 0.5480129286, + "4069": 0.5629039122, + "4070": 0.577836571, + "4071": 0.5927966218, + "4072": 0.6092863227, + "4073": 0.6250111985, + "4074": 0.6411184869, + "4075": 0.657034569, + "4076": 0.6730462542, + "4077": 0.6890101379, + "4078": 0.7049979223, + "4079": 0.7209737564, + "4080": 0.7369555656, + "4081": 0.7529343873, + "4082": 0.764673127, + "4083": 0.7782582577, + "4084": 0.7909201928, + "4085": 0.8040437258, + "4086": 0.8169364598, + "4087": 0.8299445933, + "4088": 0.842895027, + "4089": 0.8558743107, + "4090": 0.8688391693, + "4091": 0.8818112405, + "4092": 0.8941339544, + "4093": 0.9066660342, + "4094": 0.9190934311, + "4095": 0.9315731694, + "4096": 0.944026737, + "4097": 0.95649339, + "4098": 0.9689535003, + "4099": 0.9814168819, + "4100": 0.9938786279, + "4101": 1.0063411917, + "4102": 1.0123598252, + "4103": 1.019538497, + "4104": 1.0261371497, + "4105": 1.0330258119, + "4106": 1.0397694694, + "4107": 1.0465856292, + "4108": 1.0533655379, + "4109": 1.0601635721, + "4110": 1.0669525435, + "4111": 1.0737460464, + "4112": 1.0785795926, + "4113": 1.0834142717, + "4114": 1.0882483843, + "4115": 1.0930827801, + "4116": 1.0979170344, + "4117": 1.1027513594, + "4118": 1.1075856491, + "4119": 1.1124199564, + "4120": 1.1172542549, + "4121": 1.1220885578, + "4122": 1.1247428994, + "4123": 1.1268809359, + "4124": 1.1292771249, + "4125": 1.1315442377, + "4126": 1.1338758886, + "4127": 1.1361752704, + "4128": 1.1384907868, + "4129": 1.1407982359, + "4130": 1.1431097186, + "4131": 1.1454191846, + "4132": 1.1474590152, + "4133": 1.1493461047, + "4134": 1.1513095647, + "4135": 1.1532348395, + "4136": 1.1551792069, + "4137": 1.1571140279, + "4138": 1.1590536222, + "4139": 1.1609908298, + "4140": 1.1629292308, + "4141": 1.1648670351, + "4142": 1.1668620312, + "4143": 1.1689159599, + "4144": 1.1709404223, + "4145": 1.1729796179, + "4146": 1.1750114469, + "4147": 1.1770469592, + "4148": 1.1790806298, + "4149": 1.1811152213, + "4150": 1.1831493523, + "4151": 1.1851837135, + "4152": 1.18722698, + "4153": 1.1892865405, + "4154": 1.1913379539, + "4155": 1.1933934409, + "4156": 1.1954468911, + "4157": 1.1975013597, + "4158": 1.1995553191, + "4159": 1.2016095331, + "4160": 1.2036636198, + "4161": 1.2057177701, + "4162": 1.2077531177, + "4163": 1.2097281463, + "4164": 1.2117333344, + "4165": 1.2137234427, + "4166": 1.2157210909, + "4167": 1.2177149692, + "4168": 1.2197107324, + "4169": 1.2217055532, + "4170": 1.2237008452, + "4171": 1.2256959015, + "4172": 1.2276884639, + "4173": 1.2296633378, + "4174": 1.2316470559, + "4175": 1.2336263519, + "4176": 1.2356078589, + "4177": 1.2375882604, + "4178": 1.2395692147, + "4179": 1.2415498926, + "4180": 1.2435307087, + "4181": 1.2455114557, + "4182": 1.2474715114, + "4183": 1.2487786869, + "4184": 1.2504123025, + "4185": 1.2518826981, + "4186": 1.2534347036, + "4187": 1.2549459042, + "4188": 1.2564775073, + "4189": 1.2579989091, + "4190": 1.2595254115, + "4191": 1.2610493636, + "4192": 1.2625745909, + "4193": 1.263912629, + "4194": 1.2653322261, + "4195": 1.2667110437, + "4196": 1.268110251, + "4197": 1.2694992635, + "4198": 1.2708933734, + "4199": 1.2722849346, + "4200": 1.2736777701, + "4201": 1.2750699685, + "4202": 1.2764624854, + "4203": 1.2773547635, + "4204": 1.2784078612, + "4205": 1.279380549, + "4206": 1.2803934418, + "4207": 1.2813862321, + "4208": 1.2823890736, + "4209": 1.2833868895, + "4210": 1.2843872183, + "4211": 1.2853862906, + "4212": 1.2863859911, + "4213": 1.287332802, + "4214": 1.2882892336, + "4215": 1.2892408549, + "4216": 1.2901948813, + "4217": 1.2911477052, + "4218": 1.2921011303, + "4219": 1.2930542548, + "4220": 1.2940075296, + "4221": 1.2949607292, + "4222": 1.2959139665, + "4223": 1.2963727679, + "4224": 1.2968315787, + "4225": 1.2972903848, + "4226": 1.2977491932, + "4227": 1.2982080005, + "4228": 1.2986668084, + "4229": 1.299125616, + "4230": 1.2995844237, + "4231": 1.3000432313, + "4232": 1.300502039, + "4233": 1.3008620343, + "4234": 1.3011986267, + "4235": 1.3015469206, + "4236": 1.3018893637, + "4237": 1.3022347321, + "4238": 1.3025786379, + "4239": 1.3029232751, + "4240": 1.3032675466, + "4241": 1.3036120009, + "4242": 1.3039563637, + "4243": 1.3039971525, + "4244": 1.3038671323, + "4245": 1.3038225166, + "4246": 1.3037351986, + "4247": 1.3036692317, + "4248": 1.3035925893, + "4249": 1.3035212847, + "4250": 1.3034473112, + "4251": 1.3033746721, + "4252": 1.3033013658, + "4253": 1.3031447684, + "4254": 1.3029011632, + "4255": 1.302701062, + "4256": 1.3024792087, + "4257": 1.3022682315, + "4258": 1.3020518162, + "4259": 1.30183812, + "4260": 1.3016230642, + "4261": 1.3014086883, + "4262": 1.3011939724, + "4263": 1.30081712, + "4264": 1.3001480311, + "4265": 1.2996250605, + "4266": 1.2990290308, + "4267": 1.2984695306, + "4268": 1.2978917656, + "4269": 1.297323133, + "4270": 1.2967499343, + "4271": 1.2961790186, + "4272": 1.2956069614, + "4273": 1.2949910192, + "4274": 1.2942318983, + "4275": 1.2935443667, + "4276": 1.2928210405, + "4277": 1.2921156116, + "4278": 1.2914012341, + "4279": 1.2906913309, + "4280": 1.2899791905, + "4281": 1.2892681687, + "4282": 1.2885565876, + "4283": 1.2877428729, + "4284": 1.2862377292, + "4285": 1.2850783, + "4286": 1.2837460136, + "4287": 1.2825001557, + "4288": 1.2812110836, + "4289": 1.2799436186, + "4290": 1.27866535, + "4291": 1.2773924833, + "4292": 1.2761169156, + "4293": 1.2748312026, + "4294": 1.2731826964, + "4295": 1.2717155868, + "4296": 1.2701577789, + "4297": 1.2686453202, + "4298": 1.2671101869, + "4299": 1.2655863908, + "4300": 1.2640569262, + "4301": 1.2625302958, + "4302": 1.2610022483, + "4303": 1.2594749094, + "4304": 1.2611725228, + "4305": 1.2614657443, + "4306": 1.2624611618, + "4307": 1.2631054812, + "4308": 1.2639253497, + "4309": 1.2646574437, + "4310": 1.2654334249, + "4311": 1.2661874626, + "4312": 1.266952472, + "4313": 1.2677119955, + "4314": 1.2699852121, + "4315": 1.2717713948, + "4316": 1.2738010944, + "4317": 1.2757090355, + "4318": 1.2776778559, + "4319": 1.2796162367, + "4320": 1.2815698372, + "4321": 1.2835158279, + "4322": 1.2854656235, + "4323": 1.2874135166, + "4324": 1.2924288284, + "4325": 1.2968917004, + "4326": 1.3016307923, + "4327": 1.3062317742, + "4328": 1.3109018112, + "4329": 1.3155373206, + "4330": 1.3201900938, + "4331": 1.3248342351, + "4332": 1.3294826923, + "4333": 1.3341289916, + "4334": 1.3397064299, + "4335": 1.3452833288, + "4336": 1.3508604974, + "4337": 1.3564375311, + "4338": 1.3620146323, + "4339": 1.3675916997, + "4340": 1.373168784, + "4341": 1.3787458599, + "4342": 1.38432294, + "4343": 1.389900018, + "4344": 1.3952585074, + "4345": 1.4005652251, + "4346": 1.4058978286, + "4347": 1.4112174892, + "4348": 1.4165436213, + "4349": 1.4218665177, + "4350": 1.4271910319, + "4351": 1.4325147372, + "4352": 1.4378388469, + "4353": 1.4431627544, + "4354": 1.4483881814, + "4355": 1.4535581055, + "4356": 1.4587557811, + "4357": 1.463939581, + "4358": 1.4691303187, + "4359": 1.4743175875, + "4360": 1.4795065907, + "4361": 1.4846947267, + "4362": 1.4898832964, + "4363": 1.4950716492, + "4364": 1.4989095265, + "4365": 1.5013448202, + "4366": 1.5044814057, + "4367": 1.5072673453, + "4368": 1.5102286078, + "4369": 1.5131022089, + "4370": 1.5160196407, + "4371": 1.5189151571, + "4372": 1.5218216312, + "4373": 1.5247226265, + "4374": 1.5270003087, + "4375": 1.5281497265, + "4376": 1.5298632765, + "4377": 1.5312947605, + "4378": 1.5328672774, + "4379": 1.5343692779, + "4380": 1.5359065366, + "4381": 1.5374261662, + "4382": 1.5389546103, + "4383": 1.5404786472, + "4384": 1.5412841999, + "4385": 1.5397721542, + "4386": 1.5394189077, + "4387": 1.5384862617, + "4388": 1.5378433154, + "4389": 1.5370555192, + "4390": 1.536340148, + "4391": 1.5355885643, + "4392": 1.5348550868, + "4393": 1.5341125563, + "4394": 1.5331026868, + "4395": 1.5302554625, + "4396": 1.5283269156, + "4397": 1.52593903, + "4398": 1.5237808137, + "4399": 1.5215077628, + "4400": 1.5192921292, + "4401": 1.5170477869, + "4402": 1.514817799, + "4403": 1.5125806339, + "4404": 1.5102949404, + "4405": 1.5063657678, + "4406": 1.5032583347, + "4407": 1.4997400318, + "4408": 1.4964271638, + "4409": 1.4930115784, + "4410": 1.4896473517, + "4411": 1.4862574457, + "4412": 1.4828803793, + "4413": 1.4794968931, + "4414": 1.4761166168, + "4415": 1.4716063665, + "4416": 1.4675883052, + "4417": 1.4633241494, + "4418": 1.4591830408, + "4419": 1.4549804086, + "4420": 1.4508085383, + "4421": 1.446621287, + "4422": 1.4424417262, + "4423": 1.4382583201, + "4424": 1.4340768367, + "4425": 1.4294448714, + "4426": 1.4249578755, + "4427": 1.4203983949, + "4428": 1.4158751566, + "4429": 1.4113337972, + "4430": 1.4068014983, + "4431": 1.4022646692, + "4432": 1.3977301052, + "4433": 1.3931944087, + "4434": 1.3886592784, + "4435": 1.383298191, + "4436": 1.3780858665, + "4437": 1.3727991605, + "4438": 1.3675496453, + "4439": 1.3622815347, + "4440": 1.3570227218, + "4441": 1.35175926, + "4442": 1.3464981227, + "4443": 1.3412358231, + "4444": 1.3359741047, + "4445": 1.3310115584, + "4446": 1.3260491574, + "4447": 1.3210866838, + "4448": 1.3161242465, + "4449": 1.3111617911, + "4450": 1.3061993447, + "4451": 1.3012368938, + "4452": 1.2962744452, + "4453": 1.2913119954, + "4454": 1.2863495462, + "4455": 1.2812762905, + "4456": 1.2761767915, + "4457": 1.2710904141, + "4458": 1.2659974759, + "4459": 1.2609078181, + "4460": 1.2558165201, + "4461": 1.2507260422, + "4462": 1.2456351542, + "4463": 1.2405444713, + "4464": 1.2354536859, + "4465": 1.2304029389, + "4466": 1.2253746592, + "4467": 1.2203351459, + "4468": 1.2153012494, + "4469": 1.2102645444, + "4470": 1.2052292437, + "4471": 1.2001932409, + "4472": 1.1951575891, + "4473": 1.1901217618, + "4474": 1.1850860223, + "4475": 1.1800799377, + "4476": 1.1751047162, + "4477": 1.1701140632, + "4478": 1.1651311259, + "4479": 1.1601443308, + "4480": 1.1551594646, + "4481": 1.1501736339, + "4482": 1.1451882855, + "4483": 1.1402026959, + "4484": 1.1352172269, + "4485": 1.1303965819, + "4486": 1.1258727587, + "4487": 1.1212005246, + "4488": 1.116602496, + "4489": 1.1119673646, + "4490": 1.1073507846, + "4491": 1.1027249289, + "4492": 1.0981037111, + "4493": 1.0934801743, + "4494": 1.088857797, + "4495": 1.0843485182, + "4496": 1.0802049236, + "4497": 1.0758784869, + "4498": 1.0716434713, + "4499": 1.0673627451, + "4500": 1.0631048742, + "4501": 1.0588355757, + "4502": 1.054571991, + "4503": 1.0503055494, + "4504": 1.0460405362, + "4505": 1.0418540595, + "4506": 1.0382028823, + "4507": 1.0342840554, + "4508": 1.0304990533, + "4509": 1.0266471387, + "4510": 1.0228286804, + "4511": 1.018993494, + "4512": 1.0151666716, + "4513": 1.0113356672, + "4514": 1.0075067539, + "4515": 1.0036975675, + "4516": 1.000543239, + "4517": 0.9970614816, + "4518": 0.9937434387, + "4519": 0.9903435385, + "4520": 0.9869845669, + "4521": 0.9836051311, + "4522": 0.9802359273, + "4523": 0.9768616076, + "4524": 0.9734898458, + "4525": 0.970116805, + "4526": 0.9671998364, + "4527": 0.9640842144, + "4528": 0.9610679191, + "4529": 0.9580019605, + "4530": 0.9549608335, + "4531": 0.9519072907, + "4532": 0.9488599558, + "4533": 0.945809517, + "4534": 0.9427606301, + "4535": 0.9397109673, + "4536": 0.9371095719, + "4537": 0.9343640213, + "4538": 0.9316905483, + "4539": 0.9289810365, + "4540": 0.9262895442, + "4541": 0.9235890421, + "4542": 0.9208930448, + "4543": 0.9181947952, + "4544": 0.9154976717, + "4545": 0.9127999851, + "4546": 0.9101785101, + "4547": 0.9075432269, + "4548": 0.9049148478, + "4549": 0.9022830166, + "4550": 0.8996529115, + "4551": 0.8970219434, + "4552": 0.8943914067, + "4553": 0.8917606543, + "4554": 0.8891300098, + "4555": 0.8864993114, + "4556": 0.8845028526, + "4557": 0.8825063803, + "4558": 0.8805099148, + "4559": 0.8785134459, + "4560": 0.8765169787, + "4561": 0.8745205106, + "4562": 0.872524043, + "4563": 0.8705275752, + "4564": 0.8685311074, + "4565": 0.8665346396, + "4566": 0.8647911183, + "4567": 0.8631075054, + "4568": 0.8613939383, + "4569": 0.8596953483, + "4570": 0.8579892698, + "4571": 0.8562869355, + "4572": 0.8545827291, + "4573": 0.8528794587, + "4574": 0.8511757203, + "4575": 0.8494722159, + "4576": 0.8480519533, + "4577": 0.8467911383, + "4578": 0.8454505995, + "4579": 0.8441499226, + "4580": 0.8428293148, + "4581": 0.8415186724, + "4582": 0.8402030473, + "4583": 0.8388899136, + "4584": 0.8375755342, + "4585": 0.8362617776, + "4586": 0.8349910275, + "4587": 0.8337654171, + "4588": 0.8325172369, + "4589": 0.8312803415, + "4590": 0.8300378037, + "4591": 0.8287980872, + "4592": 0.82755696, + "4593": 0.8263165381, + "4594": 0.8250757636, + "4595": 0.8238351654, + "4596": 0.822638508, + "4597": 0.8215211469, + "4598": 0.8203641376, + "4599": 0.8192269524, + "4600": 0.8180798552, + "4601": 0.816937714, + "4602": 0.8157930948, + "4603": 0.8146497146, + "4604": 0.8135057148, + "4605": 0.8123620249, + "4606": 0.8112026508, + "4607": 0.8099934385, + "4608": 0.8088091453, + "4609": 0.8076123925, + "4610": 0.8064218696, + "4611": 0.8052282317, + "4612": 0.8040361513, + "4613": 0.8028432921, + "4614": 0.8016508224, + "4615": 0.8004581579, + "4616": 0.7992502398, + "4617": 0.7979386536, + "4618": 0.7966789015, + "4619": 0.7953932323, + "4620": 0.7941205217, + "4621": 0.7928413318, + "4622": 0.7915653815, + "4623": 0.7902878114, + "4624": 0.7890110512, + "4625": 0.7877338861, + "4626": 0.786460918, + "4627": 0.785313679, + "4628": 0.7841035755, + "4629": 0.7829249042, + "4630": 0.7817305168, + "4631": 0.7805439874, + "4632": 0.779353529, + "4633": 0.7781650352, + "4634": 0.7769755591, + "4635": 0.7757865741, + "4636": 0.7745973435, + "4637": 0.7736396616, + "4638": 0.7725811361, + "4639": 0.7715730324, + "4640": 0.7705397178, + "4641": 0.7695190087, + "4642": 0.7684919968, + "4643": 0.7674681363, + "4644": 0.7664427001, + "4645": 0.7654180518, + "4646": 0.7643930095, + "4647": 0.7636008678, + "4648": 0.76273383, + "4649": 0.7619042403, + "4650": 0.7610559265, + "4651": 0.7602169747, + "4652": 0.759373342, + "4653": 0.7585320497, + "4654": 0.7576895872, + "4655": 0.7568477098, + "4656": 0.7560055399, + "4657": 0.7554875116, + "4658": 0.7549110911, + "4659": 0.7543638667, + "4660": 0.7538020442, + "4661": 0.7532475208, + "4662": 0.7526893479, + "4663": 0.7521329997, + "4664": 0.7515757391, + "4665": 0.7510189347, + "4666": 0.7504619023, + "4667": 0.7499780634, + "4668": 0.7494941675, + "4669": 0.7490103001, + "4670": 0.7485264185, + "4671": 0.748042544, + "4672": 0.7475586659, + "4673": 0.7470747896, + "4674": 0.7465909124, + "4675": 0.7461070357, + "4676": 0.7456231587, + "4677": 0.7451279289, + "4678": 0.7446300101, + "4679": 0.7441334357, + "4680": 0.7436361892, + "4681": 0.7431392787, + "4682": 0.7426422002, + "4683": 0.7421452057, + "4684": 0.7416481692, + "4685": 0.7411511538, + "4686": 0.7406541278, + "4687": 0.7400437191, + "4688": 0.7393695272, + "4689": 0.7387272269, + "4690": 0.7380689807, + "4691": 0.7374187075, + "4692": 0.7367644478, + "4693": 0.7361121814, + "4694": 0.7354589183, + "4695": 0.7348061536, + "4696": 0.7341531397, + "4697": 0.7332918164, + "4698": 0.7322139804, + "4699": 0.7312444007, + "4700": 0.7302206929, + "4701": 0.7292240491, + "4702": 0.7282138733, + "4703": 0.7272104635, + "4704": 0.7262036707, + "4705": 0.7251985694, + "4706": 0.7241926224, + "4707": 0.7231474157, + "4708": 0.7220305692, + "4709": 0.7209495427, + "4710": 0.7198506061, + "4711": 0.7187606246, + "4712": 0.7176661655, + "4713": 0.7165739452, + "4714": 0.7154806055, + "4715": 0.7143878255, + "4716": 0.7132947657, + "4717": 0.7121398551, + "4718": 0.7107856185, + "4719": 0.7095310449, + "4720": 0.7082266399, + "4721": 0.7069471506, + "4722": 0.7056552034, + "4723": 0.7043694851, + "4724": 0.7030806524, + "4725": 0.7017933769, + "4726": 0.7005053228, + "4727": 0.6992255711, + "4728": 0.6979990379, + "4729": 0.6967458955, + "4730": 0.6955060577, + "4731": 0.6942595676, + "4732": 0.6930164037, + "4733": 0.6917715766, + "4734": 0.6905275812, + "4735": 0.6892831699, + "4736": 0.6880389665, + "4737": 0.6868013621, + "4738": 0.6857749514, + "4739": 0.6846429439, + "4740": 0.6835637348, + "4741": 0.6824581265, + "4742": 0.6813657177, + "4743": 0.6802667092, + "4744": 0.6791710006, + "4745": 0.678073642, + "4746": 0.6769771084, + "4747": 0.6758801623, + "4748": 0.6747689276, + "4749": 0.6736639021, + "4750": 0.672555772, + "4751": 0.6714491942, + "4752": 0.6703418402, + "4753": 0.6692348744, + "4754": 0.6681277144, + "4755": 0.6670206515, + "4756": 0.6659135401, + "4757": 0.664806453, + "4758": 0.6636192353, + "4759": 0.662457776, + "4760": 0.6612834376, + "4761": 0.6601155387, + "4762": 0.65894442, + "4763": 0.6577749113, + "4764": 0.6566045976, + "4765": 0.6554346863, + "4766": 0.6542645738, + "4767": 0.653094562, + "4768": 0.6516913704, + "4769": 0.6503301673, + "4770": 0.64894797, + "4771": 0.6475762698, + "4772": 0.6461993211, + "4773": 0.6448249966, + "4774": 0.64344936, + "4775": 0.6420743794, + "4776": 0.6406990708, + "4777": 0.6393239262, + "4778": 0.6377858133, + "4779": 0.6362477415, + "4780": 0.6347096491, + "4781": 0.6331715669, + "4782": 0.6316334797, + "4783": 0.630095395, + "4784": 0.628557309, + "4785": 0.6270192237, + "4786": 0.625481138, + "4787": 0.6239430525, + "4788": 0.6223905076, + "4789": 0.6208345381, + "4790": 0.6192802809, + "4791": 0.6177251676, + "4792": 0.6161704824, + "4793": 0.6146155831, + "4794": 0.6130607908, + "4795": 0.611505945, + "4796": 0.609951126, + "4797": 0.6083962936, + "4798": 0.6067943044, + "4799": 0.6051657823, + "4800": 0.6035505266, + "4801": 0.6019286377, + "4802": 0.6003100655, + "4803": 0.5986898349, + "4804": 0.5970704335, + "4805": 0.5954506175, + "4806": 0.5938310087, + "4807": 0.5922112964, + "4808": 0.5906207053, + "4809": 0.5890602757, + "4810": 0.5874847653, + "4811": 0.5859167954, + "4812": 0.5843450552, + "4813": 0.5827752002, + "4814": 0.5812044026, + "4815": 0.5796340762, + "4816": 0.5780635143, + "4817": 0.5764930701, + "4818": 0.5750240608, + "4819": 0.5737377697, + "4820": 0.5723601195, + "4821": 0.5710281488, + "4822": 0.5696733383, + "4823": 0.5683299478, + "4824": 0.5669808473, + "4825": 0.5656346017, + "4826": 0.5642869287, + "4827": 0.5629399694, + "4828": 0.5616005231, + "4829": 0.5602865509, + "4830": 0.5589598417, + "4831": 0.5576395009, + "4832": 0.556315976, + "4833": 0.5549940431, + "4834": 0.5536713142, + "4835": 0.5523489833, + "4836": 0.5510264534, + "4837": 0.549704023, + "4838": 0.5483967849, + "4839": 0.5471924549, + "4840": 0.5459366709, + "4841": 0.5447066139, + "4842": 0.5434636934, + "4843": 0.5422272047, + "4844": 0.5409875001, + "4845": 0.5397494034, + "4846": 0.5385105027, + "4847": 0.5372720041, + "4848": 0.5360334353, + "4849": 0.5347990902, + "4850": 0.5335626333, + "4851": 0.5323272323, + "4852": 0.5310913034, + "4853": 0.5298556384, + "4854": 0.5286198414, + "4855": 0.5273841104, + "4856": 0.5261483465, + "4857": 0.524912599, + "4858": 0.5236768433, + "4859": 0.5224249025, + "4860": 0.5211800098, + "4861": 0.519931593, + "4862": 0.5186849383, + "4863": 0.5174374025, + "4864": 0.5161903073, + "4865": 0.5149429918, + "4866": 0.5136957864, + "4867": 0.512448526, + "4868": 0.5112012931, + "4869": 0.5100079962, + "4870": 0.5087973653, + "4871": 0.5075954014, + "4872": 0.5063891039, + "4873": 0.5051849732, + "4874": 0.5039797592, + "4875": 0.5027750868, + "4876": 0.5015701436, + "4877": 0.5003653358, + "4878": 0.4991604603, + "4879": 0.4982108926, + "4880": 0.4972153586, + "4881": 0.4962428078, + "4882": 0.4952587654, + "4883": 0.4942804688, + "4884": 0.4932992993, + "4885": 0.4923195663, + "4886": 0.491339115, + "4887": 0.4903590228, + "4888": 0.4893787511, + "4889": 0.4885518714, + "4890": 0.4877249468, + "4891": 0.4868980446, + "4892": 0.4860711312, + "4893": 0.4852442234, + "4894": 0.4844173128, + "4895": 0.4835904036, + "4896": 0.4827634938, + "4897": 0.4819365842, + "4898": 0.4811096745, + "4899": 0.4805559382, + "4900": 0.4800669008, + "4901": 0.4795455139, + "4902": 0.4790403018, + "4903": 0.4785270023, + "4904": 0.4780177464, + "4905": 0.4775064688, + "4906": 0.476996202, + "4907": 0.4764854298, + "4908": 0.4759749103, + "4909": 0.4754301228, + "4910": 0.4748661937, + "4911": 0.4743118354, + "4912": 0.4737526918, + "4913": 0.4731959408, + "4914": 0.4726379934, + "4915": 0.4720806443, + "4916": 0.471522996, + "4917": 0.4709654973, + "4918": 0.4704079239, + "4919": 0.4695215431, + "4920": 0.4682936512, + "4921": 0.4672365148, + "4922": 0.4660940007, + "4923": 0.4649941754, + "4924": 0.4638730057, + "4925": 0.4627625082, + "4926": 0.4616466746, + "4927": 0.4605335091, + "4928": 0.4594190095, + "4929": 0.4583048837, + "4930": 0.4571898965, + "4931": 0.45607534, + "4932": 0.4549605681, + "4933": 0.4538459039, + "4934": 0.4527311859, + "4935": 0.4516164947, + "4936": 0.4505017902, + "4937": 0.4493870923, + "4938": 0.4482723911, + "4939": 0.4472300332, + "4940": 0.4464202009, + "4941": 0.4454941058, + "4942": 0.4446261421, + "4943": 0.4437291126, + "4944": 0.4428466161, + "4945": 0.4419568531, + "4946": 0.4410707233, + "4947": 0.440182777, + "4948": 0.4392957389, + "4949": 0.4384213258, + "4950": 0.4376354236, + "4951": 0.4368052659, + "4952": 0.435997236, + "4953": 0.4351781422, + "4954": 0.4343645804, + "4955": 0.4335482526, + "4956": 0.4327333078, + "4957": 0.4319176714, + "4958": 0.4311023809, + "4959": 0.4303517534, + "4960": 0.4316435441, + "4961": 0.4319141257, + "4962": 0.4326953119, + "4963": 0.4332211958, + "4964": 0.4338747308, + "4965": 0.4344644403, + "4966": 0.4350860625, + "4967": 0.4356917284, + "4968": 0.4363053725, + "4969": 0.4369150274, + "4970": 0.4376564103, + "4971": 0.4383402991, + "4972": 0.4390529349, + "4973": 0.4397511972, + "4974": 0.4404566463, + "4975": 0.441158502, + "4976": 0.4418621544, + "4977": 0.4425649085, + "4978": 0.4432681117, + "4979": 0.4439710903, + "4980": 0.4443936037, + "4981": 0.4449062466, + "4982": 0.4453738248, + "4983": 0.4458639353, + "4984": 0.4463427797, + "4985": 0.4468272571, + "4986": 0.447308918, + "4987": 0.4477919871, + "4988": 0.4482743522, + "4989": 0.4487570693, + "4990": 0.4492699362, + "4991": 0.4497774324, + "4992": 0.450287614, + "4993": 0.4507964529, + "4994": 0.4513059632, + "4995": 0.4518151378, + "4996": 0.4523244802, + "4997": 0.4528337387, + "4998": 0.4533430392, + "4999": 0.4538523186, + "5000": 37.5321167589, + "5001": 37.4843667444, + "5002": 37.436021531, + "5003": 37.3878847736, + "5004": 37.3411993639, + "5005": 37.2969907343, + "5006": 37.256208502, + "5007": 37.2197104498, + "5008": 37.1882755641, + "5009": 37.1626098578, + "5010": 37.1433523882, + "5011": 37.1310800475, + "5012": 37.1263117402, + "5013": 37.1295117704, + "5014": 37.1410928137, + "5015": 37.1614182704, + "5016": 37.1908043969, + "5017": 37.2295219358, + "5018": 37.2777976879, + "5019": 37.3358156578, + "5020": 37.4037182849, + "5021": 37.4988862393, + "5022": 37.6164048681, + "5023": 37.7430310901, + "5024": 37.8849454141, + "5025": 38.0384710366, + "5026": 38.2049000264, + "5027": 38.383035456, + "5028": 38.5729220957, + "5029": 38.7739747026, + "5030": 38.9859104595, + "5031": 39.2088291799, + "5032": 39.4424497453, + "5033": 39.685539762, + "5034": 39.9379143484, + "5035": 40.1986009189, + "5036": 40.4667312836, + "5037": 40.7411497575, + "5038": 41.0206860595, + "5039": 41.3040817527, + "5040": 41.5900756755, + "5041": 41.9133854522, + "5042": 42.3069345322, + "5043": 42.6817361184, + "5044": 43.0792334974, + "5045": 43.4751563222, + "5046": 43.8785489076, + "5047": 44.2820442757, + "5048": 44.6867451121, + "5049": 45.0897583469, + "5050": 45.4904130744, + "5051": 45.8891485232, + "5052": 46.289794433, + "5053": 46.6825336756, + "5054": 47.0708223432, + "5055": 47.4515841144, + "5056": 47.8251919956, + "5057": 48.1904480029, + "5058": 48.5470860541, + "5059": 48.8945098336, + "5060": 49.2324146202, + "5061": 49.5766009119, + "5062": 50.0220377084, + "5063": 50.4213519065, + "5064": 50.8468313923, + "5065": 51.2600740451, + "5066": 51.678590359, + "5067": 52.0921765585, + "5068": 52.5047497675, + "5069": 52.9133892299, + "5070": 53.3187909838, + "5071": 53.7205086052, + "5072": 54.1336627466, + "5073": 54.5369850017, + "5074": 54.9407859017, + "5075": 55.3395541736, + "5076": 55.7358415176, + "5077": 56.1282648243, + "5078": 56.5174986204, + "5079": 56.9032647852, + "5080": 57.2858268247, + "5081": 57.6652327582, + "5082": 57.998387121, + "5083": 58.3411352619, + "5084": 58.6685785819, + "5085": 58.9942376072, + "5086": 59.3122951516, + "5087": 59.626554351, + "5088": 59.9359509633, + "5089": 60.2418046837, + "5090": 60.5441969029, + "5091": 60.8437852825, + "5092": 61.1343074998, + "5093": 61.4239447838, + "5094": 61.7102462879, + "5095": 61.9951088701, + "5096": 62.2782072321, + "5097": 62.560283549, + "5098": 62.8415052464, + "5099": 63.122288665, + "5100": 63.4028894126, + "5101": 63.6836091299, + "5102": 63.8989187892, + "5103": 64.1168445365, + "5104": 64.3221459567, + "5105": 64.52402646, + "5106": 64.7193615236, + "5107": 64.9110017575, + "5108": 65.098662312, + "5109": 65.2834916186, + "5110": 65.4658029618, + "5111": 65.6462217124, + "5112": 65.80513922, + "5113": 65.9599686565, + "5114": 66.1111923238, + "5115": 66.2594455081, + "5116": 66.4052328209, + "5117": 66.5490052749, + "5118": 66.6911493699, + "5119": 66.8320003092, + "5120": 66.9718454372, + "5121": 67.1109307556, + "5122": 67.2272122435, + "5123": 67.3345226868, + "5124": 67.440308654, + "5125": 67.5415507909, + "5126": 67.6404824967, + "5127": 67.7365894066, + "5128": 67.8306526362, + "5129": 67.9227320909, + "5130": 68.013185357, + "5131": 68.1021661786, + "5132": 68.1871196509, + "5133": 68.2689806674, + "5134": 68.3500077841, + "5135": 68.429317609, + "5136": 68.5075852062, + "5137": 68.5846682157, + "5138": 68.6608054566, + "5139": 68.7360204925, + "5140": 68.8104236247, + "5141": 68.8840639655, + "5142": 68.9575869365, + "5143": 69.0311460459, + "5144": 69.1039664639, + "5145": 69.1764773112, + "5146": 69.2484944019, + "5147": 69.3201401782, + "5148": 69.3913827309, + "5149": 69.4622674062, + "5150": 69.5328014845, + "5151": 69.6030122724, + "5152": 69.6730104384, + "5153": 69.7429078869, + "5154": 69.812503288, + "5155": 69.8819314123, + "5156": 69.951159481, + "5157": 70.0202414352, + "5158": 70.0891901975, + "5159": 70.158041478, + "5160": 70.2268216602, + "5161": 70.2955636423, + "5162": 70.3641070603, + "5163": 70.4320323816, + "5164": 70.5002062258, + "5165": 70.5682547939, + "5166": 70.6364300288, + "5167": 70.7046677067, + "5168": 70.7730599938, + "5169": 70.8416187496, + "5170": 70.9103938551, + "5171": 70.9794139487, + "5172": 71.0486893045, + "5173": 71.1180929902, + "5174": 71.1878993469, + "5175": 71.2580167628, + "5176": 71.3285353009, + "5177": 71.3994503721, + "5178": 71.4708012964, + "5179": 71.5426018595, + "5180": 71.6148749895, + "5181": 71.6876353598, + "5182": 71.7606864723, + "5183": 71.8275549215, + "5184": 71.8972518212, + "5185": 71.9653400465, + "5186": 72.0341594116, + "5187": 72.1026288718, + "5188": 72.1713640571, + "5189": 72.240116793, + "5190": 72.3090574903, + "5191": 72.3781352334, + "5192": 72.4473990728, + "5193": 72.5149342649, + "5194": 72.5832006332, + "5195": 72.6510863218, + "5196": 72.7191715911, + "5197": 72.7871782083, + "5198": 72.8552492444, + "5199": 72.9233097374, + "5200": 72.9913875808, + "5201": 73.0594540664, + "5202": 73.1275045451, + "5203": 73.1904141061, + "5204": 73.2541500511, + "5205": 73.3165175278, + "5206": 73.3786766402, + "5207": 73.4400954698, + "5208": 73.5010765739, + "5209": 73.5614953341, + "5210": 73.6214325055, + "5211": 73.6808594788, + "5212": 73.7397970545, + "5213": 73.79770062, + "5214": 73.8551267447, + "5215": 73.9119450723, + "5216": 73.9682274189, + "5217": 74.0239432791, + "5218": 74.0791119872, + "5219": 74.1337274887, + "5220": 74.1877965088, + "5221": 74.2413199698, + "5222": 74.2943026891, + "5223": 74.3417018366, + "5224": 74.3878158564, + "5225": 74.4326919054, + "5226": 74.4764215709, + "5227": 74.5190766556, + "5228": 74.5607232322, + "5229": 74.6014201614, + "5230": 74.6412205699, + "5231": 74.6801725821, + "5232": 74.7183200814, + "5233": 74.7546946533, + "5234": 74.7899524361, + "5235": 74.8244586353, + "5236": 74.8581027192, + "5237": 74.8910110012, + "5238": 74.923184065, + "5239": 74.9546800855, + "5240": 74.9855234436, + "5241": 75.0157509102, + "5242": 75.0453888892, + "5243": 75.0713657156, + "5244": 75.0945973429, + "5245": 75.1174851007, + "5246": 75.1389365188, + "5247": 75.1596182544, + "5248": 75.1792965066, + "5249": 75.1981749954, + "5250": 75.2162258711, + "5251": 75.2335255707, + "5252": 75.2500877457, + "5253": 75.2650939477, + "5254": 75.2783989643, + "5255": 75.2912234569, + "5256": 75.3029979864, + "5257": 75.3140482919, + "5258": 75.3242387624, + "5259": 75.3336544157, + "5260": 75.3422600782, + "5261": 75.350071559, + "5262": 75.3570706304, + "5263": 75.3615912632, + "5264": 75.3620391314, + "5265": 75.3624330644, + "5266": 75.3607829113, + "5267": 75.3581232353, + "5268": 75.3539532851, + "5269": 75.3485274592, + "5270": 75.3417098256, + "5271": 75.3335485, + "5272": 75.3239895598, + "5273": 75.3125673544, + "5274": 75.2981683384, + "5275": 75.2827326882, + "5276": 75.2652514546, + "5277": 75.2461975347, + "5278": 75.2252908537, + "5279": 75.202620976, + "5280": 75.1780860794, + "5281": 75.1516745895, + "5282": 75.1233252159, + "5283": 75.0919523252, + "5284": 75.0513347063, + "5285": 75.0109618855, + "5286": 74.9660907494, + "5287": 74.9191553099, + "5288": 74.8689695462, + "5289": 74.8161471554, + "5290": 74.7603902473, + "5291": 74.7018475757, + "5292": 74.6404368891, + "5293": 74.5760678152, + "5294": 74.505110977, + "5295": 74.4325526878, + "5296": 74.3559060582, + "5297": 74.2764507252, + "5298": 74.1935666013, + "5299": 74.1075779833, + "5300": 74.0183310124, + "5301": 73.9259064603, + "5302": 73.8302642652, + "5303": 73.7314221444, + "5304": 73.6620542387, + "5305": 73.5793458566, + "5306": 73.5019297304, + "5307": 73.4193121418, + "5308": 73.3356892794, + "5309": 73.248018969, + "5310": 73.1570184858, + "5311": 73.0616326292, + "5312": 72.9617791053, + "5313": 72.8569941295, + "5314": 72.7625081458, + "5315": 72.6599937148, + "5316": 72.5558580279, + "5317": 72.4463923157, + "5318": 72.3330329073, + "5319": 72.2147286582, + "5320": 72.0917403249, + "5321": 71.9637435277, + "5322": 71.8307620113, + "5323": 71.6927047865, + "5324": 71.5808864581, + "5325": 71.4630601642, + "5326": 71.3466317457, + "5327": 71.2273917932, + "5328": 71.1070097945, + "5329": 70.9843319329, + "5330": 70.8597034816, + "5331": 70.7328062619, + "5332": 70.6037237469, + "5333": 70.4724070224, + "5334": 70.348422421, + "5335": 70.2237614426, + "5336": 70.098459761, + "5337": 69.9724915753, + "5338": 69.8458925782, + "5339": 69.718733105, + "5340": 69.5911124267, + "5341": 69.4631613847, + "5342": 69.3350307649, + "5343": 69.2068963119, + "5344": 69.0767162803, + "5345": 68.9460687001, + "5346": 68.8159031314, + "5347": 68.6861361945, + "5348": 68.5572184468, + "5349": 68.4293365516, + "5350": 68.3028105196, + "5351": 68.1778956055, + "5352": 68.0548772422, + "5353": 67.9340245416, + "5354": 67.8146034417, + "5355": 67.6971703278, + "5356": 67.5827596932, + "5357": 67.471268193, + "5358": 67.3631568533, + "5359": 67.2585899304, + "5360": 67.1578655082, + "5361": 67.0612008244, + "5362": 66.9688377357, + "5363": 66.8809908813, + "5364": 66.7840851782, + "5365": 66.675726859, + "5366": 66.5755500279, + "5367": 66.4744091916, + "5368": 66.3776586162, + "5369": 66.2832832986, + "5370": 66.1928872186, + "5371": 66.1061978787, + "5372": 66.0238211318, + "5373": 65.9458694933, + "5374": 65.8662613815, + "5375": 65.7790945073, + "5376": 65.7001512337, + "5377": 65.6220059369, + "5378": 65.5489023641, + "5379": 65.4791499042, + "5380": 65.4139662511, + "5381": 65.3530563675, + "5382": 65.2968296541, + "5383": 65.2452965851, + "5384": 65.1912679087, + "5385": 65.1174049301, + "5386": 65.0557770733, + "5387": 64.9907627422, + "5388": 64.9307638253, + "5389": 64.8720262364, + "5390": 64.8168053772, + "5391": 64.7642803265, + "5392": 64.7151073715, + "5393": 64.6691503087, + "5394": 64.6238465646, + "5395": 64.5628206819, + "5396": 64.511461996, + "5397": 64.4573199383, + "5398": 64.4069986745, + "5399": 64.3574668445, + "5400": 64.3104607143, + "5401": 64.2652808163, + "5402": 64.2224022404, + "5403": 64.1816752305, + "5404": 64.1426981908, + "5405": 64.0891283026, + "5406": 64.0436255001, + "5407": 63.9949936269, + "5408": 63.9490927099, + "5409": 63.9031705484, + "5410": 63.8587467983, + "5411": 63.8151699693, + "5412": 63.7728454843, + "5413": 63.7316262619, + "5414": 63.6916210797, + "5415": 63.6412758796, + "5416": 63.5954259351, + "5417": 63.547372733, + "5418": 63.5006490819, + "5419": 63.4536256432, + "5420": 63.4072314986, + "5421": 63.3610944481, + "5422": 63.3154742146, + "5423": 63.270299672, + "5424": 63.2256531042, + "5425": 63.1769416691, + "5426": 63.1295736263, + "5427": 63.0816006892, + "5428": 63.0340965609, + "5429": 62.986608435, + "5430": 62.9394341959, + "5431": 62.8924858678, + "5432": 62.8458593047, + "5433": 62.7995509365, + "5434": 62.7536003286, + "5435": 62.6995916047, + "5436": 62.646231678, + "5437": 62.5915527272, + "5438": 62.5367212474, + "5439": 62.4813228815, + "5440": 62.4257100761, + "5441": 62.3698348289, + "5442": 62.3138374884, + "5443": 62.2577574278, + "5444": 62.2016792786, + "5445": 62.1487161923, + "5446": 62.096332069, + "5447": 62.0445549897, + "5448": 61.9933844557, + "5449": 61.9428252812, + "5450": 61.8928813075, + "5451": 61.8435550638, + "5452": 61.7948474825, + "5453": 61.7467572308, + "5454": 61.6992805026, + "5455": 61.6512795957, + "5456": 61.6034391136, + "5457": 61.556117413, + "5458": 61.5091389759, + "5459": 61.4625931874, + "5460": 61.4164275493, + "5461": 61.370653124, + "5462": 61.3252420006, + "5463": 61.2801790928, + "5464": 61.2354366828, + "5465": 61.1913957774, + "5466": 61.1479060019, + "5467": 61.1046190168, + "5468": 61.061642738, + "5469": 61.0188506601, + "5470": 60.9762319124, + "5471": 60.9337154965, + "5472": 60.8912585137, + "5473": 60.8488022009, + "5474": 60.8062941131, + "5475": 60.7639803989, + "5476": 60.7218621037, + "5477": 60.67945414, + "5478": 60.6369040254, + "5479": 60.5940396383, + "5480": 60.5508506355, + "5481": 60.5072467798, + "5482": 60.4631790666, + "5483": 60.4185792351, + "5484": 60.3733901543, + "5485": 60.3292339103, + "5486": 60.2876513284, + "5487": 60.2444800295, + "5488": 60.201658084, + "5489": 60.1580490382, + "5490": 60.1140738879, + "5491": 60.0693850549, + "5492": 60.0240301971, + "5493": 59.9778691636, + "5494": 59.9308649026, + "5495": 59.8840978389, + "5496": 59.8402605255, + "5497": 59.7942487065, + "5498": 59.7484848122, + "5499": 59.7016023849, + "5500": 59.6541548729, + "5501": 59.605749389, + "5502": 59.5564804738, + "5503": 59.5062116163, + "5504": 59.454933499, + "5505": 59.403392891, + "5506": 59.3563364653, + "5507": 59.3063479043, + "5508": 59.2570347018, + "5509": 59.2064527342, + "5510": 59.1554652796, + "5511": 59.1035469411, + "5512": 59.0508825432, + "5513": 58.9973153944, + "5514": 58.942871697, + "5515": 58.8877089548, + "5516": 58.8383214991, + "5517": 58.7856655341, + "5518": 58.7341879338, + "5519": 58.6815387426, + "5520": 58.6287992377, + "5521": 58.5753483766, + "5522": 58.5214306456, + "5523": 58.4668694935, + "5524": 58.4117089641, + "5525": 58.3558912718, + "5526": 58.3040656406, + "5527": 58.2502303879, + "5528": 58.1970753857, + "5529": 58.1431609443, + "5530": 58.0891309955, + "5531": 58.0345966507, + "5532": 57.9796941894, + "5533": 57.9243042246, + "5534": 57.8684408321, + "5535": 57.8120558031, + "5536": 57.7597074382, + "5537": 57.7060092987, + "5538": 57.6528898438, + "5539": 57.599269561, + "5540": 57.5455848565, + "5541": 57.4915233547, + "5542": 57.4371549124, + "5543": 57.3823647758, + "5544": 57.3271359119, + "5545": 57.271406923, + "5546": 57.2159174187, + "5547": 57.1598233279, + "5548": 57.103269011, + "5549": 57.0461090983, + "5550": 56.9883459942, + "5551": 56.9299119145, + "5552": 56.8707772698, + "5553": 56.810896262, + "5554": 56.7502339007, + "5555": 56.6887523926, + "5556": 56.6328919167, + "5557": 56.5771129388, + "5558": 56.521332128, + "5559": 56.4654118122, + "5560": 56.4092423427, + "5561": 56.352724085, + "5562": 56.2957694388, + "5563": 56.238301079, + "5564": 56.1802511758, + "5565": 56.1215605633, + "5566": 56.0647601364, + "5567": 56.0082215704, + "5568": 55.9510612013, + "5569": 55.893613441, + "5570": 55.8356069124, + "5571": 55.7770927693, + "5572": 55.7179755238, + "5573": 55.658247008, + "5574": 55.5978680936, + "5575": 55.5368268165, + "5576": 55.4780008813, + "5577": 55.4205536814, + "5578": 55.3622723345, + "5579": 55.3042219775, + "5580": 55.2458339975, + "5581": 55.1873800387, + "5582": 55.1287204856, + "5583": 55.0699292226, + "5584": 55.0109801279, + "5585": 54.9519031846, + "5586": 54.8931478476, + "5587": 54.8348205739, + "5588": 54.7763169841, + "5589": 54.7179608799, + "5590": 54.6596107298, + "5591": 54.6013632965, + "5592": 54.5431994768, + "5593": 54.4851609757, + "5594": 54.4272611628, + "5595": 54.3695290474, + "5596": 54.3124360683, + "5597": 54.2564347397, + "5598": 54.2004524129, + "5599": 54.1450451987, + "5600": 54.0899464038, + "5601": 54.0353037466, + "5602": 53.981057559, + "5603": 53.9272515187, + "5604": 53.8738765353, + "5605": 53.8209483317, + "5606": 53.7683095985, + "5607": 53.7155916203, + "5608": 53.6634845335, + "5609": 53.6116512462, + "5610": 53.5602692613, + "5611": 53.509252593, + "5612": 53.4586421704, + "5613": 53.4084104406, + "5614": 53.3585591172, + "5615": 53.3090704188, + "5616": 53.2597747902, + "5617": 53.2097278014, + "5618": 53.1603382487, + "5619": 53.1108782441, + "5620": 53.0616931994, + "5621": 53.0125831619, + "5622": 52.9636154124, + "5623": 52.9147181935, + "5624": 52.8658843935, + "5625": 52.8170702261, + "5626": 52.7682870884, + "5627": 52.7207447789, + "5628": 52.6726705749, + "5629": 52.6248794087, + "5630": 52.5768791828, + "5631": 52.5288350085, + "5632": 52.4805839525, + "5633": 52.4321284307, + "5634": 52.3833893632, + "5635": 52.3343299754, + "5636": 52.2848942694, + "5637": 52.2374003872, + "5638": 52.1887624084, + "5639": 52.1403071055, + "5640": 52.0912657489, + "5641": 52.0419286933, + "5642": 51.9920637157, + "5643": 51.9417074006, + "5644": 51.8907690495, + "5645": 51.8392286464, + "5646": 51.787037715, + "5647": 51.7365442807, + "5648": 51.6849332675, + "5649": 51.6331940564, + "5650": 51.5807572253, + "5651": 51.527845301, + "5652": 51.4742962575, + "5653": 51.4201511739, + "5654": 51.3653595727, + "5655": 51.3099263621, + "5656": 51.25383795, + "5657": 51.2004061086, + "5658": 51.1462262631, + "5659": 51.0920876195, + "5660": 51.0375529897, + "5661": 50.9828096358, + "5662": 50.9277476539, + "5663": 50.8724184384, + "5664": 50.8168043746, + "5665": 50.7609328637, + "5666": 50.7048182269, + "5667": 50.6492358112, + "5668": 50.5935805097, + "5669": 50.5378823644, + "5670": 50.4821674862, + "5671": 50.4264688447, + "5672": 50.370822748, + "5673": 50.3152691025, + "5674": 50.2598504578, + "5675": 50.2046116471, + "5676": 50.1495991385, + "5677": 50.0947447438, + "5678": 50.0401679763, + "5679": 49.9859555545, + "5680": 49.9321396543, + "5681": 49.8787794207, + "5682": 49.8259188593, + "5683": 49.7736075918, + "5684": 49.7218899649, + "5685": 49.6708101021, + "5686": 49.620409071, + "5687": 49.5695683722, + "5688": 49.5186573262, + "5689": 49.468597725, + "5690": 49.4190045639, + "5691": 49.3701474389, + "5692": 49.3219572921, + "5693": 49.2745259455, + "5694": 49.2278561783, + "5695": 49.1819870944, + "5696": 49.1369317083, + "5697": 49.0905807466, + "5698": 49.0425426589, + "5699": 48.9958249134, + "5700": 48.9489894079, + "5701": 48.9028339432, + "5702": 48.8570162456, + "5703": 48.8117506823, + "5704": 48.7669598997, + "5705": 48.722700869, + "5706": 48.6789534761, + "5707": 48.6353224407, + "5708": 48.5914102367, + "5709": 48.548196268, + "5710": 48.5051837419, + "5711": 48.4626146614, + "5712": 48.4203522763, + "5713": 48.3784429014, + "5714": 48.3368354195, + "5715": 48.2955223867, + "5716": 48.2544701908, + "5717": 48.21302186, + "5718": 48.1696497138, + "5719": 48.1270754044, + "5720": 48.0839195347, + "5721": 48.0408697213, + "5722": 47.9975691162, + "5723": 47.9541789632, + "5724": 47.9105973137, + "5725": 47.8668508669, + "5726": 47.8228999002, + "5727": 47.7788173957, + "5728": 47.7350555795, + "5729": 47.6908614944, + "5730": 47.6465781287, + "5731": 47.6019970046, + "5732": 47.5571895432, + "5733": 47.5120902108, + "5734": 47.4667056027, + "5735": 47.4210104627, + "5736": 47.3750003063, + "5737": 47.3287338736, + "5738": 47.2843064937, + "5739": 47.2388063398, + "5740": 47.1936743415, + "5741": 47.1481616082, + "5742": 47.1026281209, + "5743": 47.0568872337, + "5744": 47.0110338652, + "5745": 46.9650296009, + "5746": 46.918909615, + "5747": 46.8726786547, + "5748": 46.8262145559, + "5749": 46.7797281907, + "5750": 46.7331617401, + "5751": 46.6865892747, + "5752": 46.6400222225, + "5753": 46.5935064351, + "5754": 46.5470731569, + "5755": 46.5007631033, + "5756": 46.4546139756, + "5757": 46.4086662653, + "5758": 46.362142074, + "5759": 46.3160405188, + "5760": 46.2700535024, + "5761": 46.2244101699, + "5762": 46.1790682408, + "5763": 46.1341183811, + "5764": 46.0895818338, + "5765": 46.0455114505, + "5766": 46.0019410114, + "5767": 45.9589104014, + "5768": 45.9140730888, + "5769": 45.8699143001, + "5770": 45.8259039348, + "5771": 45.7823945484, + "5772": 45.7392902576, + "5773": 45.6967091341, + "5774": 45.6546533614, + "5775": 45.6131745429, + "5776": 45.5722915497, + "5777": 45.5320320141, + "5778": 45.4907492314, + "5779": 45.4498723548, + "5780": 45.4094237942, + "5781": 45.3694370748, + "5782": 45.3299347147, + "5783": 45.2909336449, + "5784": 45.2524445998, + "5785": 45.2144729174, + "5786": 45.1770188658, + "5787": 45.1400780935, + "5788": 45.1034943804, + "5789": 45.0673457763, + "5790": 45.0316645705, + "5791": 44.9964105168, + "5792": 44.9615753643, + "5793": 44.927130055, + "5794": 44.8930517992, + "5795": 44.8593109511, + "5796": 44.8258780138, + "5797": 44.7927205572, + "5798": 44.759323726, + "5799": 44.7257912166, + "5800": 44.6924568174, + "5801": 44.6591112278, + "5802": 44.6258182858, + "5803": 44.5925020923, + "5804": 44.5591550969, + "5805": 44.5257344119, + "5806": 44.4922142252, + "5807": 44.4585600881, + "5808": 44.4250389872, + "5809": 44.3916754185, + "5810": 44.3580215538, + "5811": 44.3242494057, + "5812": 44.2902203475, + "5813": 44.2559556584, + "5814": 44.2214003996, + "5815": 44.1865418217, + "5816": 44.151350265, + "5817": 44.1158088479, + "5818": 44.0809347797, + "5819": 44.0476984378, + "5820": 44.0135614084, + "5821": 43.9797428074, + "5822": 43.9455712565, + "5823": 43.9113361555, + "5824": 43.8768557123, + "5825": 43.8421932329, + "5826": 43.8072980562, + "5827": 43.7721844604, + "5828": 43.7369219025, + "5829": 43.7017086807, + "5830": 43.6662002945, + "5831": 43.6305798501, + "5832": 43.5947693569, + "5833": 43.5588270605, + "5834": 43.522747405, + "5835": 43.4865605445, + "5836": 43.4502819232, + "5837": 43.4139368628, + "5838": 43.3777032373, + "5839": 43.3425240384, + "5840": 43.3070040319, + "5841": 43.2718661339, + "5842": 43.2367646031, + "5843": 43.2018917214, + "5844": 43.1671708432, + "5845": 43.1326596291, + "5846": 43.0983476038, + "5847": 43.0642567372, + "5848": 43.0303918848, + "5849": 42.9968039744, + "5850": 42.9634396458, + "5851": 42.9303300125, + "5852": 42.8974595425, + "5853": 42.8648318476, + "5854": 42.8324364225, + "5855": 42.8002650979, + "5856": 42.7683036706, + "5857": 42.7365360085, + "5858": 42.7049419757, + "5859": 42.6733332444, + "5860": 42.6418958879, + "5861": 42.6105045841, + "5862": 42.5791776364, + "5863": 42.5478566858, + "5864": 42.516517459, + "5865": 42.4851147011, + "5866": 42.4536101146, + "5867": 42.4219588126, + "5868": 42.3901165439, + "5869": 42.3585872726, + "5870": 42.326678395, + "5871": 42.2945763677, + "5872": 42.2621055564, + "5873": 42.2292726123, + "5874": 42.1959945435, + "5875": 42.162235101, + "5876": 42.1279369958, + "5877": 42.093056216, + "5878": 42.0575452978, + "5879": 42.0239679428, + "5880": 41.9895980386, + "5881": 41.9550109625, + "5882": 41.9198161708, + "5883": 41.8841145654, + "5884": 41.8477735086, + "5885": 41.8107880703, + "5886": 41.7731002082, + "5887": 41.7346888426, + "5888": 41.6955245606, + "5889": 41.6571569257, + "5890": 41.6182422652, + "5891": 41.5787633633, + "5892": 41.5386946698, + "5893": 41.4980233379, + "5894": 41.4567440226, + "5895": 41.4148594802, + "5896": 41.3723797433, + "5897": 41.3293217517, + "5898": 41.2857088238, + "5899": 41.2443587408, + "5900": 41.2035949009, + "5901": 41.1625521775, + "5902": 41.1217078592, + "5903": 41.0809090388, + "5904": 41.0403526374, + "5905": 41.0000659098, + "5906": 40.9601583502, + "5907": 40.9206949688, + "5908": 40.8817598096, + "5909": 40.8430754792, + "5910": 40.8048163395, + "5911": 40.7673185418, + "5912": 40.7305240492, + "5913": 40.6945688384, + "5914": 40.659484583, + "5915": 40.6253481078, + "5916": 40.5922060803, + "5917": 40.560112129, + "5918": 40.5291077766, + "5919": 40.4958745314, + "5920": 40.4598115995, + "5921": 40.4256774763, + "5922": 40.3912178076, + "5923": 40.3577034182, + "5924": 40.3246048637, + "5925": 40.2922681183, + "5926": 40.26057603, + "5927": 40.2296192744, + "5928": 40.199362019, + "5929": 40.1698071312, + "5930": 40.1409162812, + "5931": 40.1126623586, + "5932": 40.0849882673, + "5933": 40.0578342225, + "5934": 40.0311250313, + "5935": 40.0047773738, + "5936": 39.9786972285, + "5937": 39.952782136, + "5938": 39.9269212255, + "5939": 39.9017347283, + "5940": 39.8788433369, + "5941": 39.8549047727, + "5942": 39.8313547425, + "5943": 39.8072127288, + "5944": 39.7827131889, + "5945": 39.7574839114, + "5946": 39.7314589229, + "5947": 39.7044225429, + "5948": 39.676238431, + "5949": 39.6468694979, + "5950": 39.6169565024, + "5951": 39.5851301614, + "5952": 39.5518493732, + "5953": 39.5166611019, + "5954": 39.4795835901, + "5955": 39.4404132071, + "5956": 39.3990725246, + "5957": 39.3554370375, + "5958": 39.3094228558, + "5959": 39.2616055179, + "5960": 39.2322039236, + "5961": 39.1930003805, + "5962": 39.1578520085, + "5963": 39.1194195353, + "5964": 39.081069644, + "5965": 39.0408659738, + "5966": 38.9995800066, + "5967": 38.956679976, + "5968": 38.9123338222, + "5969": 38.8664048372, + "5970": 38.8202758853, + "5971": 38.7722455394, + "5972": 38.7231509767, + "5973": 38.672657749, + "5974": 38.62105747, + "5975": 38.5683648663, + "5976": 38.5147681429, + "5977": 38.4604020966, + "5978": 38.4054602277, + "5979": 38.3501372148, + "5980": 38.2917923155, + "5981": 38.2340190642, + "5982": 38.1758541925, + "5983": 38.1182320153, + "5984": 38.0611550814, + "5985": 38.005108881, + "5986": 37.9503538316, + "5987": 37.897278454, + "5988": 37.8462219687, + "5989": 37.7975618849, + "5990": 37.7519787086, + "5991": 37.7095388696, + "5992": 37.6707032286, + "5993": 37.6358245419, + "5994": 37.605316823, + "5995": 37.5795692551, + "5996": 37.5589873362, + "5997": 37.5439702486, + "5998": 37.5349202187, + "5999": 37.5322356101, + "6000": 0.8044078515, + "6001": 0.7993849158, + "6002": 0.7943619744, + "6003": 0.7893390359, + "6004": 0.7843160959, + "6005": 0.7792931566, + "6006": 0.774270217, + "6007": 0.7692472776, + "6008": 0.7642243381, + "6009": 0.7592013986, + "6010": 0.7541784591, + "6011": 0.7491555196, + "6012": 0.7441325801, + "6013": 0.7391096406, + "6014": 0.7340867011, + "6015": 0.7290637616, + "6016": 0.7240408221, + "6017": 0.7190178826, + "6018": 0.7139949431, + "6019": 0.7089720036, + "6020": 0.7039490641, + "6021": 0.7049270921, + "6022": 0.7092806643, + "6023": 0.7119464644, + "6024": 0.7154561506, + "6025": 0.7185438937, + "6026": 0.7218426083, + "6027": 0.7250358372, + "6028": 0.728281809, + "6029": 0.7315014093, + "6030": 0.7347341953, + "6031": 0.7381513192, + "6032": 0.7417700136, + "6033": 0.7452879227, + "6034": 0.7488562245, + "6035": 0.75239933, + "6036": 0.7559550336, + "6037": 0.7595044381, + "6038": 0.7630569922, + "6039": 0.7666079715, + "6040": 0.7701597382, + "6041": 0.7801575191, + "6042": 0.8017590309, + "6043": 0.8175586772, + "6044": 0.8362592563, + "6045": 0.8535093689, + "6046": 0.8714847148, + "6047": 0.8890974441, + "6048": 0.9068914817, + "6049": 0.9245948651, + "6050": 0.9423435756, + "6051": 0.9604299928, + "6052": 0.9796860747, + "6053": 0.9983573243, + "6054": 1.01732099, + "6055": 1.0361384476, + "6056": 1.0550290093, + "6057": 1.0738830189, + "6058": 1.0927553046, + "6059": 1.1116184523, + "6060": 1.1304861689, + "6061": 1.1511360197, + "6062": 1.1838318382, + "6063": 1.2105046729, + "6064": 1.2401889995, + "6065": 1.2683675802, + "6066": 1.2972990338, + "6067": 1.3258540509, + "6068": 1.3545972863, + "6069": 1.3832464126, + "6070": 1.4119425934, + "6071": 1.4406696396, + "6072": 1.4711218185, + "6073": 1.500711431, + "6074": 1.5307323267, + "6075": 1.5605375809, + "6076": 1.5904506558, + "6077": 1.6203098203, + "6078": 1.65019594, + "6079": 1.6800685821, + "6080": 1.709947963, + "6081": 1.7398239745, + "6082": 1.755434979, + "6083": 1.7772580552, + "6084": 1.7959750956, + "6085": 1.8162451539, + "6086": 1.8357387032, + "6087": 1.855620507, + "6088": 1.8753081836, + "6089": 1.8950929238, + "6090": 1.9148291321, + "6091": 1.9345896064, + "6092": 1.9521839811, + "6093": 1.9704767687, + "6094": 1.9884203498, + "6095": 2.0065385342, + "6096": 2.024569417, + "6097": 2.0426439505, + "6098": 2.0606966587, + "6099": 2.0787602795, + "6100": 2.096818444, + "6101": 2.1148793367, + "6102": 2.1196114177, + "6103": 2.1267431213, + "6104": 2.1326750136, + "6105": 2.1392068115, + "6106": 2.1454386566, + "6107": 2.1518204782, + "6108": 2.1581273115, + "6109": 2.1644716389, + "6110": 2.1707972193, + "6111": 2.1771321732, + "6112": 2.180271318, + "6113": 2.1834128062, + "6114": 2.1865531226, + "6115": 2.189694025, + "6116": 2.1928346344, + "6117": 2.1959753902, + "6118": 2.1991160729, + "6119": 2.2022567921, + "6120": 2.205397493, + "6121": 2.2085382031, + "6122": 2.2085690401, + "6123": 2.2078633315, + "6124": 2.2075258957, + "6125": 2.2070043234, + "6126": 2.2065748194, + "6127": 2.2060992813, + "6128": 2.2056467603, + "6129": 2.2051827307, + "6130": 2.2047244553, + "6131": 2.2042633029, + "6132": 2.2034174964, + "6133": 2.2023537934, + "6134": 2.2013990387, + "6135": 2.2003898099, + "6136": 2.1994078181, + "6137": 2.1984122079, + "6138": 2.1974234068, + "6139": 2.1964312012, + "6140": 2.1954406978, + "6141": 2.1944493433, + "6142": 2.1941041027, + "6143": 2.1944291716, + "6144": 2.1944190858, + "6145": 2.1945765773, + "6146": 2.1946502802, + "6147": 2.1947658774, + "6148": 2.1948605274, + "6149": 2.194965651, + "6150": 2.1950655378, + "6151": 2.195168043, + "6152": 2.195365981, + "6153": 2.1957387092, + "6154": 2.1960240423, + "6155": 2.196353073, + "6156": 2.1966602549, + "6157": 2.1969783611, + "6158": 2.1972910052, + "6159": 2.1976063803, + "6160": 2.19792039, + "6161": 2.1982350824, + "6162": 2.1987770443, + "6163": 2.2000507837, + "6164": 2.2009586344, + "6165": 2.2020494294, + "6166": 2.2030487522, + "6167": 2.2040938112, + "6168": 2.205116002, + "6169": 2.2061496269, + "6170": 2.2071775348, + "6171": 2.2082083012, + "6172": 2.2092686677, + "6173": 2.2105391969, + "6174": 2.2117046447, + "6175": 2.2129226331, + "6176": 2.2141143513, + "6177": 2.2153192046, + "6178": 2.2165174903, + "6179": 2.2177190598, + "6180": 2.2189189874, + "6181": 2.220119736, + "6182": 2.2213197625, + "6183": 2.2225101809, + "6184": 2.2237054034, + "6185": 2.2248982239, + "6186": 2.2260922454, + "6187": 2.2272856663, + "6188": 2.2284793875, + "6189": 2.2296729586, + "6190": 2.2308666048, + "6191": 2.2320602134, + "6192": 2.2332538408, + "6193": 2.234441414, + "6194": 2.2356316242, + "6195": 2.2368205159, + "6196": 2.2380100669, + "6197": 2.2391992883, + "6198": 2.2403886745, + "6199": 2.2415779782, + "6200": 2.2427673232, + "6201": 2.2439566476, + "6202": 2.2451459822, + "6203": 2.2459352174, + "6204": 2.246853057, + "6205": 2.2477065943, + "6206": 2.2485922828, + "6207": 2.2494618957, + "6208": 2.2503395464, + "6209": 2.2512131782, + "6210": 2.2520888194, + "6211": 2.2529634559, + "6212": 2.2538385948, + "6213": 2.2546773414, + "6214": 2.2555227189, + "6215": 2.256364781, + "6216": 2.2572085008, + "6217": 2.2580513917, + "6218": 2.2588946971, + "6219": 2.2597377953, + "6220": 2.260580997, + "6221": 2.261424147, + "6222": 2.2622673228, + "6223": 2.26225986, + "6224": 2.2622524037, + "6225": 2.2622449441, + "6226": 2.2622374861, + "6227": 2.2622300273, + "6228": 2.262222569, + "6229": 2.2622151104, + "6230": 2.2622076519, + "6231": 2.2622001934, + "6232": 2.2621927349, + "6233": 2.2619953377, + "6234": 2.2617529551, + "6235": 2.2615330651, + "6236": 2.2613019289, + "6237": 2.2610764158, + "6238": 2.2608480911, + "6239": 2.2606211722, + "6240": 2.2603935504, + "6241": 2.26016628, + "6242": 2.2599388339, + "6243": 2.2590940521, + "6244": 2.2579019257, + "6245": 2.2568834715, + "6246": 2.2557781812, + "6247": 2.254716309, + "6248": 2.2536327277, + "6249": 2.252560001, + "6250": 2.251481847, + "6251": 2.2504064066, + "6252": 2.2493296094, + "6253": 2.2480834129, + "6254": 2.246660258, + "6255": 2.2453255823, + "6256": 2.243946667, + "6257": 2.2425898715, + "6258": 2.2412220161, + "6259": 2.2398596907, + "6260": 2.2384946002, + "6261": 2.2371308923, + "6262": 2.2357664931, + "6263": 2.2340040163, + "6264": 2.2315242047, + "6265": 2.2294030606, + "6266": 2.2271025827, + "6267": 2.2248917717, + "6268": 2.2226361273, + "6269": 2.2204028996, + "6270": 2.2181584635, + "6271": 2.2159196316, + "6272": 2.2136779976, + "6273": 2.2113284379, + "6274": 2.2086267701, + "6275": 2.2061011563, + "6276": 2.2034875156, + "6277": 2.2009178883, + "6278": 2.1983262543, + "6279": 2.1957456237, + "6280": 2.1931594914, + "6281": 2.1905761099, + "6282": 2.187991353, + "6283": 2.1850866705, + "6284": 2.1800175042, + "6285": 2.1760305798, + "6286": 2.1715025345, + "6287": 2.1672450496, + "6288": 2.1628522845, + "6289": 2.1585271596, + "6290": 2.1541682145, + "6291": 2.1498261795, + "6292": 2.1454756895, + "6293": 2.141093355, + "6294": 2.1355726402, + "6295": 2.1306211155, + "6296": 2.1253849958, + "6297": 2.1202911736, + "6298": 2.1151262026, + "6299": 2.109996806, + "6300": 2.1048496222, + "6301": 2.099711332, + "6302": 2.094568595, + "6303": 2.0894280815, + "6304": 2.0856548279, + "6305": 2.0812862264, + "6306": 2.0772152988, + "6307": 2.0729955343, + "6308": 2.0688501883, + "6309": 2.064667633, + "6310": 2.0605036823, + "6311": 2.0563304293, + "6312": 2.0521618275, + "6313": 2.0479909001, + "6314": 2.0444888721, + "6315": 2.040771633, + "6316": 2.0371619995, + "6317": 2.0334985632, + "6318": 2.0298620283, + "6319": 2.0262120427, + "6320": 2.0225687824, + "6321": 2.0189221595, + "6322": 2.0152772179, + "6323": 2.0116314356, + "6324": 2.0096709418, + "6325": 2.0074069616, + "6326": 2.0052947245, + "6327": 2.0031066159, + "6328": 2.0009564431, + "6329": 1.9987873024, + "6330": 1.9966276456, + "6331": 1.9944632469, + "6332": 1.9923012191, + "6333": 1.9901380059, + "6334": 1.9891863348, + "6335": 1.9882343674, + "6336": 1.9872825482, + "6337": 1.9863306549, + "6338": 1.9853787986, + "6339": 1.9844269238, + "6340": 1.9834750582, + "6341": 1.9825231881, + "6342": 1.9815713202, + "6343": 1.9806194512, + "6344": 1.9799940602, + "6345": 1.9794459926, + "6346": 1.9788592633, + "6347": 1.9782918648, + "6348": 1.9777148009, + "6349": 1.9771425697, + "6350": 1.9765679222, + "6351": 1.9759944829, + "6352": 1.9754204394, + "6353": 1.974846698, + "6354": 1.9744200436, + "6355": 1.9740762861, + "6356": 1.9736910802, + "6357": 1.9733265985, + "6358": 1.9729517546, + "6359": 1.9725820918, + "6360": 1.9722098385, + "6361": 1.9718388805, + "6362": 1.9714672748, + "6363": 1.971095993, + "6364": 1.9702062931, + "6365": 1.9687784851, + "6366": 1.9676197311, + "6367": 1.9663264502, + "6368": 1.9651004327, + "6369": 1.9638407835, + "6370": 1.9625979502, + "6371": 1.9613467089, + "6372": 1.9600996716, + "6373": 1.9588505323, + "6374": 1.9573609404, + "6375": 1.9554361166, + "6376": 1.9537289088, + "6377": 1.9519128929, + "6378": 1.9501512811, + "6379": 1.9483624673, + "6380": 1.9465872545, + "6381": 1.9448052411, + "6382": 1.9430266281, + "6383": 1.9412463148, + "6384": 1.9391620116, + "6385": 1.9360974403, + "6386": 1.933523003, + "6387": 1.9307034987, + "6388": 1.9280065279, + "6389": 1.9252482903, + "6390": 1.9225206862, + "6391": 1.9197777653, + "6392": 1.9170425028, + "6393": 1.9143034111, + "6394": 1.9114510126, + "6395": 1.9078199125, + "6396": 1.9045781632, + "6397": 1.9011417385, + "6398": 1.8978026515, + "6399": 1.8944148956, + "6400": 1.8910514742, + "6401": 1.8876758856, + "6402": 1.8843063805, + "6403": 1.8809338337, + "6404": 1.8775459493, + "6405": 1.8736262637, + "6406": 1.8699724787, + "6407": 1.8661857433, + "6408": 1.8624654831, + "6409": 1.8587119854, + "6410": 1.8549751064, + "6411": 1.8512299181, + "6412": 1.8474888844, + "6413": 1.8437457734, + "6414": 1.840003701, + "6415": 1.8359046254, + "6416": 1.8319610525, + "6417": 1.8279397282, + "6418": 1.8239572796, + "6419": 1.8199553931, + "6420": 1.8159632256, + "6421": 1.8119661986, + "6422": 1.8079716014, + "6423": 1.8039757892, + "6424": 1.7999805846, + "6425": 1.7959521671, + "6426": 1.7919344793, + "6427": 1.7879114267, + "6428": 1.7838910566, + "6429": 1.7798693452, + "6430": 1.7758483044, + "6431": 1.7718269284, + "6432": 1.7678057199, + "6433": 1.7637844277, + "6434": 1.7597631773, + "6435": 1.7552767583, + "6436": 1.7508740762, + "6437": 1.7464295257, + "6438": 1.7420059094, + "6439": 1.737571826, + "6440": 1.7331429762, + "6441": 1.7287115095, + "6442": 1.7242813513, + "6443": 1.7198505389, + "6444": 1.7154200535, + "6445": 1.7115223438, + "6446": 1.7076247158, + "6447": 1.7037270469, + "6448": 1.6998293985, + "6449": 1.6959317398, + "6450": 1.6920340863, + "6451": 1.6881364301, + "6452": 1.6842387753, + "6453": 1.6803411199, + "6454": 1.6764434647, + "6455": 1.6726369369, + "6456": 1.6688519921, + "6457": 1.6650562558, + "6458": 1.6612659152, + "6459": 1.6574728768, + "6460": 1.6536811873, + "6461": 1.6498888233, + "6462": 1.6460967966, + "6463": 1.6423046012, + "6464": 1.6385124902, + "6465": 1.634875149, + "6466": 1.6313249107, + "6467": 1.627731121, + "6468": 1.6241591069, + "6469": 1.620576205, + "6470": 1.6169987471, + "6471": 1.6134185672, + "6472": 1.6098397482, + "6473": 1.6062602488, + "6474": 1.6026810896, + "6475": 1.5992138186, + "6476": 1.5958630009, + "6477": 1.5924539565, + "6478": 1.5890740254, + "6479": 1.5856795377, + "6480": 1.5822923283, + "6481": 1.5789014798, + "6482": 1.5755124508, + "6483": 1.5721225121, + "6484": 1.5687330282, + "6485": 1.5654923786, + "6486": 1.5625201538, + "6487": 1.5594137166, + "6488": 1.5563743857, + "6489": 1.5533015016, + "6490": 1.5502453941, + "6491": 1.5471808983, + "6492": 1.5441205966, + "6493": 1.5410581979, + "6494": 1.5379968477, + "6495": 1.5350364972, + "6496": 1.5324027359, + "6497": 1.52960568, + "6498": 1.5268902714, + "6499": 1.5241340391, + "6500": 1.5213982187, + "6501": 1.5186521924, + "6502": 1.515911269, + "6503": 1.5131677941, + "6504": 1.510425595, + "6505": 1.5077371573, + "6506": 1.5054162335, + "6507": 1.5029115527, + "6508": 1.5004987505, + "6509": 1.498040009, + "6510": 1.4956042371, + "6511": 1.4931569804, + "6512": 1.4907154661, + "6513": 1.4882710806, + "6514": 1.4858281307, + "6515": 1.4833985543, + "6516": 1.4814132106, + "6517": 1.4792057506, + "6518": 1.4771093487, + "6519": 1.4749574178, + "6520": 1.4728332514, + "6521": 1.4706952027, + "6522": 1.4685640952, + "6523": 1.4664295171, + "6524": 1.4642966743, + "6525": 1.4621629638, + "6526": 1.4602494681, + "6527": 1.4582400444, + "6528": 1.4562785846, + "6529": 1.4542931429, + "6530": 1.4523196922, + "6531": 1.450340246, + "6532": 1.4483637976, + "6533": 1.4463858502, + "6534": 1.4444086523, + "6535": 1.4424310797, + "6536": 1.4406610517, + "6537": 1.4388242795, + "6538": 1.4370208794, + "6539": 1.4352007932, + "6540": 1.4333890501, + "6541": 1.4315731354, + "6542": 1.4297593065, + "6543": 1.4279444348, + "6544": 1.4261300844, + "6545": 1.4243154734, + "6546": 1.4224356211, + "6547": 1.4205674705, + "6548": 1.418693469, + "6549": 1.416822393, + "6550": 1.4149498542, + "6551": 1.4130780468, + "6552": 1.4112058738, + "6553": 1.4093338835, + "6554": 1.4074618019, + "6555": 1.405589766, + "6556": 1.4040293901, + "6557": 1.4024690256, + "6558": 1.4009086554, + "6559": 1.3993482881, + "6560": 1.3977879194, + "6561": 1.3962275513, + "6562": 1.394667183, + "6563": 1.3931068147, + "6564": 1.3915464464, + "6565": 1.3899860782, + "6566": 1.3885184723, + "6567": 1.3870728364, + "6568": 1.3856162154, + "6569": 1.384165087, + "6570": 1.3827112124, + "6571": 1.3812587108, + "6572": 1.3798055227, + "6573": 1.3783526779, + "6574": 1.3768996615, + "6575": 1.3754467308, + "6576": 1.3740976726, + "6577": 1.3728070882, + "6578": 1.3714872669, + "6579": 1.370182064, + "6580": 1.3688695519, + "6581": 1.3675606945, + "6582": 1.3662500097, + "6583": 1.3649402386, + "6584": 1.3636300106, + "6585": 1.3623200111, + "6586": 1.3610017534, + "6587": 1.3596750957, + "6588": 1.358352638, + "6589": 1.3570280803, + "6590": 1.3557045726, + "6591": 1.3543805398, + "6592": 1.3530567696, + "6593": 1.3517328682, + "6594": 1.3504090324, + "6595": 1.3490851637, + "6596": 1.3477503879, + "6597": 1.3463959414, + "6598": 1.3450513303, + "6599": 1.3437018015, + "6600": 1.3423547315, + "6601": 1.3410064321, + "6602": 1.3396587474, + "6603": 1.3383107554, + "6604": 1.336962917, + "6605": 1.3356150018, + "6606": 1.3342443199, + "6607": 1.3328003168, + "6608": 1.3313929743, + "6609": 1.3299673015, + "6610": 1.3285507938, + "6611": 1.3271297035, + "6612": 1.3257109046, + "6613": 1.32429096, + "6614": 1.3228715882, + "6615": 1.32145193, + "6616": 1.320011675, + "6617": 1.3184313536, + "6618": 1.3169210654, + "6619": 1.3153757606, + "6620": 1.3138479642, + "6621": 1.3123114135, + "6622": 1.3107792399, + "6623": 1.3092448778, + "6624": 1.30771161, + "6625": 1.306177795, + "6626": 1.3046467591, + "6627": 1.3031945076, + "6628": 1.3017028638, + "6629": 1.3002309162, + "6630": 1.2987491206, + "6631": 1.2972722489, + "6632": 1.2957929153, + "6633": 1.2943148126, + "6634": 1.2928360945, + "6635": 1.2913576841, + "6636": 1.2898791198, + "6637": 1.2885543344, + "6638": 1.2871625758, + "6639": 1.2858043038, + "6640": 1.2844292885, + "6641": 1.2830626448, + "6642": 1.2816918153, + "6643": 1.2803230787, + "6644": 1.2789532957, + "6645": 1.2775840359, + "6646": 1.2762145145, + "6647": 1.2750067689, + "6648": 1.2737470006, + "6649": 1.2725132437, + "6650": 1.2712664811, + "6651": 1.2700262213, + "6652": 1.2687827101, + "6653": 1.2675408246, + "6654": 1.2662981263, + "6655": 1.2650558344, + "6656": 1.2638133392, + "6657": 1.2627222207, + "6658": 1.2616038218, + "6659": 1.2604990631, + "6660": 1.2593874844, + "6661": 1.2582793156, + "6662": 1.2571694419, + "6663": 1.2560604206, + "6664": 1.2549509731, + "6665": 1.2538417387, + "6666": 1.2527323978, + "6667": 1.2517089702, + "6668": 1.2506855159, + "6669": 1.2496620749, + "6670": 1.2486386273, + "6671": 1.247615183, + "6672": 1.246591737, + "6673": 1.2455682919, + "6674": 1.2445448464, + "6675": 1.243521401, + "6676": 1.2424979556, + "6677": 1.241412538, + "6678": 1.2403124428, + "6679": 1.2392196864, + "6680": 1.2381232606, + "6681": 1.2370286695, + "6682": 1.2359331611, + "6683": 1.2348381113, + "6684": 1.2337428322, + "6685": 1.2326476678, + "6686": 1.231552446, + "6687": 1.2303543656, + "6688": 1.2290983969, + "6689": 1.2278713723, + "6690": 1.2266298756, + "6691": 1.225395615, + "6692": 1.2241577364, + "6693": 1.2229216668, + "6694": 1.2216846927, + "6695": 1.2204481708, + "6696": 1.2192114228, + "6697": 1.217786391, + "6698": 1.2161656599, + "6699": 1.2146427785, + "6700": 1.2130709722, + "6701": 1.2115236283, + "6702": 1.2099640533, + "6703": 1.2084105938, + "6704": 1.2068540766, + "6705": 1.2052990882, + "6706": 1.2037433354, + "6707": 1.2021430661, + "6708": 1.2004617879, + "6709": 1.1988210142, + "6710": 1.1971599883, + "6711": 1.1955090885, + "6712": 1.1938531256, + "6713": 1.1921996942, + "6714": 1.1905449971, + "6715": 1.1888909329, + "6716": 1.1872365522, + "6717": 1.1855104046, + "6718": 1.1835529898, + "6719": 1.1817112086, + "6720": 1.1798116106, + "6721": 1.177940921, + "6722": 1.1760557772, + "6723": 1.1741778605, + "6724": 1.1722963303, + "6725": 1.1704166068, + "6726": 1.16853598, + "6727": 1.1666578106, + "6728": 1.1647929545, + "6729": 1.1629214417, + "6730": 1.1610532573, + "6731": 1.1591834087, + "6732": 1.1573143922, + "6733": 1.1554449596, + "6734": 1.1535757351, + "6735": 1.1517064065, + "6736": 1.14983713, + "6737": 1.1479705812, + "6738": 1.1461907897, + "6739": 1.1443676196, + "6740": 1.1425661387, + "6741": 1.1407538132, + "6742": 1.1389469101, + "6743": 1.1371372957, + "6744": 1.135329037, + "6745": 1.1335201004, + "6746": 1.1317115028, + "6747": 1.1299027357, + "6748": 1.1280114628, + "6749": 1.1261561144, + "6750": 1.1242828038, + "6751": 1.1224184742, + "6752": 1.1205496541, + "6753": 1.1186830793, + "6754": 1.1168153819, + "6755": 1.1149482457, + "6756": 1.113080829, + "6757": 1.1112135525, + "6758": 1.1090965281, + "6759": 1.1070597923, + "6760": 1.1049829122, + "6761": 1.1029261042, + "6762": 1.1008592602, + "6763": 1.0987974342, + "6764": 1.0967330992, + "6765": 1.0946700188, + "6766": 1.092606311, + "6767": 1.0905429169, + "6768": 1.0881054718, + "6769": 1.0857354061, + "6770": 1.0833316506, + "6771": 1.0809447401, + "6772": 1.0785494071, + "6773": 1.0761582853, + "6774": 1.0737650579, + "6775": 1.0713728833, + "6776": 1.0689801823, + "6777": 1.0665877445, + "6778": 1.0640483708, + "6779": 1.0615090629, + "6780": 1.0589697221, + "6781": 1.0564303977, + "6782": 1.0538910651, + "6783": 1.0513517366, + "6784": 1.0488124061, + "6785": 1.0462730766, + "6786": 1.0437337466, + "6787": 1.0411944168, + "6788": 1.0386494431, + "6789": 1.0361031326, + "6790": 1.0335574905, + "6791": 1.0310115142, + "6792": 1.028465705, + "6793": 1.0259198123, + "6794": 1.0233739613, + "6795": 1.0208280895, + "6796": 1.0182822281, + "6797": 1.0157363614, + "6798": 1.0131720881, + "6799": 1.0105974582, + "6800": 1.0080280065, + "6801": 1.0054559658, + "6802": 1.0028852196, + "6803": 1.0003138261, + "6804": 0.9977427563, + "6805": 0.9951715246, + "6806": 0.9926003739, + "6807": 0.9900291827, + "6808": 0.9875087354, + "6809": 0.9850409526, + "6810": 0.9825468375, + "6811": 0.9800658886, + "6812": 0.9775783566, + "6813": 0.9750941161, + "6814": 0.9726082299, + "6815": 0.9701231666, + "6816": 0.9676376918, + "6817": 0.9651524227, + "6818": 0.9628408803, + "6819": 0.9608422823, + "6820": 0.9586872121, + "6821": 0.9566103779, + "6822": 0.9544944258, + "6823": 0.9523980326, + "6824": 0.95029186, + "6825": 0.9481905771, + "6826": 0.9460868493, + "6827": 0.9439843439, + "6828": 0.9419021927, + "6829": 0.9398877356, + "6830": 0.9378394314, + "6831": 0.9358080508, + "6832": 0.9337682084, + "6833": 0.9317325968, + "6834": 0.9296948699, + "6835": 0.9276582006, + "6836": 0.9256210025, + "6837": 0.9235840689, + "6838": 0.9215950281, + "6839": 0.9199302235, + "6840": 0.9181033009, + "6841": 0.9163574372, + "6842": 0.9145710441, + "6843": 0.9128049157, + "6844": 0.9110286549, + "6845": 0.9092574603, + "6846": 0.9074837326, + "6847": 0.9057112715, + "6848": 0.9039397347, + "6849": 0.9022175807, + "6850": 0.9004707354, + "6851": 0.8987362357, + "6852": 0.8969955631, + "6853": 0.895257977, + "6854": 0.8935188477, + "6855": 0.89178049, + "6856": 0.8900417464, + "6857": 0.8883031958, + "6858": 0.8865645488, + "6859": 0.8849882965, + "6860": 0.8833413208, + "6861": 0.8817297068, + "6862": 0.8801004119, + "6863": 0.8784799575, + "6864": 0.8768550829, + "6865": 0.8752324183, + "6866": 0.8736086488, + "6867": 0.8719854317, + "6868": 0.8703619384, + "6869": 0.8688210269, + "6870": 0.8672535466, + "6871": 0.8656993507, + "6872": 0.8641385126, + "6873": 0.8625809957, + "6874": 0.8610218181, + "6875": 0.8594634709, + "6876": 0.8579047085, + "6877": 0.8563461536, + "6878": 0.854787495, + "6879": 0.8535578023, + "6880": 0.8522688791, + "6881": 0.8510095711, + "6882": 0.8497354555, + "6883": 0.8484687438, + "6884": 0.8471983301, + "6885": 0.8459297674, + "6886": 0.8446602792, + "6887": 0.8433912537, + "6888": 0.8421219969, + "6889": 0.8410596316, + "6890": 0.8399972085, + "6891": 0.8389348143, + "6892": 0.8378724056, + "6893": 0.8368100042, + "6894": 0.8357475991, + "6895": 0.8346851959, + "6896": 0.8336227917, + "6897": 0.832560388, + "6898": 0.8314979841, + "6899": 0.8308525934, + "6900": 0.8303059688, + "6901": 0.8297099612, + "6902": 0.8291386451, + "6903": 0.8285549833, + "6904": 0.8279774943, + "6905": 0.8273969189, + "6906": 0.8268178867, + "6907": 0.8262380829, + "6908": 0.8256586649, + "6909": 0.8250399797, + "6910": 0.8243994117, + "6911": 0.8237697851, + "6912": 0.8231346878, + "6913": 0.8225023258, + "6914": 0.8218685962, + "6915": 0.8212355504, + "6916": 0.8206021627, + "6917": 0.819968946, + "6918": 0.8193356437, + "6919": 0.8183187156, + "6920": 0.816903341, + "6921": 0.8156871897, + "6922": 0.8143714267, + "6923": 0.8131054695, + "6924": 0.8118146095, + "6925": 0.8105362008, + "6926": 0.8092515665, + "6927": 0.807970045, + "6928": 0.8066869671, + "6929": 0.8054053982, + "6930": 0.8041247555, + "6931": 0.8028436497, + "6932": 0.8015627754, + "6933": 0.8002817854, + "6934": 0.7990008532, + "6935": 0.7977198922, + "6936": 0.7964389455, + "6937": 0.7951579917, + "6938": 0.7938770415, + "6939": 0.7926919273, + "6940": 0.7918148645, + "6941": 0.790783776, + "6942": 0.7898297003, + "6943": 0.7888371183, + "6944": 0.7878637894, + "6945": 0.7868808339, + "6946": 0.7859026918, + "6947": 0.7849221429, + "6948": 0.7839427974, + "6949": 0.782978747, + "6950": 0.7821223, + "6951": 0.7812120513, + "6952": 0.7803287034, + "6953": 0.7794319051, + "6954": 0.7785418321, + "6955": 0.7776483964, + "6956": 0.776756642, + "6957": 0.775864047, + "6958": 0.7749718723, + "6959": 0.7741570381, + "6960": 0.7757851562, + "6961": 0.7761917982, + "6962": 0.7772091782, + "6963": 0.7779211892, + "6964": 0.7787858847, + "6965": 0.7795742379, + "6966": 0.7804007623, + "6967": 0.7812082011, + "6968": 0.7820251827, + "6969": 0.7828373929, + "6970": 0.7838055279, + "6971": 0.7847056063, + "6972": 0.7856397131, + "6973": 0.7865568057, + "6974": 0.7874824053, + "6975": 0.7884037514, + "6976": 0.7893272243, + "6977": 0.7902496338, + "6978": 0.791172575, + "6979": 0.7920952504, + "6980": 0.7926121188, + "6981": 0.7932594014, + "6982": 0.7938414769, + "6983": 0.794456156, + "6984": 0.7950545333, + "6985": 0.7956610615, + "6986": 0.7962635142, + "6987": 0.7968680047, + "6988": 0.7974714763, + "6989": 0.7980754573, + "6990": 0.7987123301, + "6991": 0.7993433639, + "6992": 0.7999773173, + "6993": 0.8006098109, + "6994": 0.8012430343, + "6995": 0.8018758928, + "6996": 0.8025089338, + "6997": 0.8031418836, + "6998": 0.8037748789, + "6999": 0.8044078515, + "7000": 37.7105060345, + "7001": 37.6691634668, + "7002": 37.6282368177, + "7003": 37.5881527882, + "7004": 37.5496011283, + "7005": 37.5131537511, + "7006": 37.4793452164, + "7007": 37.448659496, + "7008": 37.4215311948, + "7009": 37.3983446877, + "7010": 37.3794367964, + "7011": 37.365100082, + "7012": 37.3555855866, + "7013": 37.3511049417, + "7014": 37.3518319864, + "7015": 37.3579039914, + "7016": 37.3694225714, + "7017": 37.3864543635, + "7018": 37.4090315325, + "7019": 37.4371521615, + "7020": 37.4707805754, + "7021": 37.5472510976, + "7022": 37.6549807246, + "7023": 37.7648407148, + "7024": 37.8905005016, + "7025": 38.0239957654, + "7026": 38.168286967, + "7027": 38.3208993851, + "7028": 38.4821073733, + "7029": 38.6508317711, + "7030": 38.826685329, + "7031": 39.0101348133, + "7032": 39.2008320349, + "7033": 39.3964454749, + "7034": 39.5972100035, + "7035": 39.8020666526, + "7036": 40.0106091786, + "7037": 40.2221069894, + "7038": 40.435994624, + "7039": 40.6516277043, + "7040": 40.8684062877, + "7041": 41.1258947418, + "7042": 41.4608837412, + "7043": 41.7735391279, + "7044": 42.1119459565, + "7045": 42.4496654551, + "7046": 42.7978622614, + "7047": 43.1490407537, + "7048": 43.5051966309, + "7049": 43.8637207029, + "7050": 44.224436894, + "7051": 44.5883193641, + "7052": 44.9600233241, + "7053": 45.328814227, + "7054": 45.6989475672, + "7055": 46.0672209613, + "7056": 46.4342782337, + "7057": 46.7989346435, + "7058": 47.1610124876, + "7059": 47.5199180724, + "7060": 47.8753492008, + "7061": 48.2380596904, + "7062": 48.6731945912, + "7063": 49.0776490646, + "7064": 49.5021444701, + "7065": 49.9199738012, + "7066": 50.3434690833, + "7067": 50.7655809634, + "7068": 51.1891055697, + "7069": 51.6120499626, + "7070": 52.0349374596, + "7071": 52.4574817945, + "7072": 52.8901151957, + "7073": 53.3180113968, + "7074": 53.7484303272, + "7075": 54.1775783837, + "7076": 54.6072867638, + "7077": 55.036640203, + "7078": 55.4661589543, + "7079": 55.8956994055, + "7080": 56.3254970493, + "7081": 56.7556386192, + "7082": 57.0973972543, + "7083": 57.4669818207, + "7084": 57.8120005882, + "7085": 58.1601017478, + "7086": 58.4986946542, + "7087": 58.8352293643, + "7088": 59.1670422536, + "7089": 59.4964470944, + "7090": 59.8231962705, + "7091": 60.1482569883, + "7092": 60.4585033677, + "7093": 60.7705015217, + "7094": 61.0787947381, + "7095": 61.3869201671, + "7096": 61.6938500849, + "7097": 62.0007792774, + "7098": 62.3077356535, + "7099": 62.6152792532, + "7100": 62.923656443, + "7101": 63.2332261169, + "7102": 63.4611808203, + "7103": 63.69496774, + "7104": 63.9147431427, + "7105": 64.1319269038, + "7106": 64.3422178591, + "7107": 64.5489938029, + "7108": 64.7516519956, + "7109": 64.9514507184, + "7110": 65.1486035663, + "7111": 65.3437446785, + "7112": 65.5173172432, + "7113": 65.6870168061, + "7114": 65.8532344042, + "7115": 66.0165012817, + "7116": 66.1772334935, + "7117": 66.3358047314, + "7118": 66.4925330783, + "7119": 66.6476940939, + "7120": 66.8015227546, + "7121": 66.9542194767, + "7122": 67.0865699153, + "7123": 67.210977975, + "7124": 67.3339421465, + "7125": 67.4526797396, + "7126": 67.5690677188, + "7127": 67.6825668442, + "7128": 67.7937905979, + "7129": 67.9027238047, + "7130": 68.0096208111, + "7131": 68.1145620906, + "7132": 68.2152746874, + "7133": 68.3125749564, + "7134": 68.4084086993, + "7135": 68.5019431184, + "7136": 68.5937283204, + "7137": 68.683597419, + "7138": 68.7717242581, + "7139": 68.8580965824, + "7140": 68.9427821882, + "7141": 69.0257980731, + "7142": 69.1112023673, + "7143": 69.1996935573, + "7144": 69.2855492446, + "7145": 69.3715757123, + "7146": 69.4562771517, + "7147": 69.5403294546, + "7148": 69.6233309415, + "7149": 69.7054285755, + "7150": 69.7865037809, + "7151": 69.8665790461, + "7152": 69.9462170569, + "7153": 70.0259772731, + "7154": 70.1043562299, + "7155": 70.1820827309, + "7156": 70.2587666492, + "7157": 70.3345876655, + "7158": 70.4094474531, + "7159": 70.483393447, + "7160": 70.5564062257, + "7161": 70.628505248, + "7162": 70.7011140973, + "7163": 70.7775758873, + "7164": 70.8516536026, + "7165": 70.9264486805, + "7166": 71.0003603937, + "7167": 71.0741592145, + "7168": 71.1474378952, + "7169": 71.2203866616, + "7170": 71.2929039785, + "7171": 71.365040144, + "7172": 71.4369678846, + "7173": 71.5098433773, + "7174": 71.5818802519, + "7175": 71.653976757, + "7176": 71.72568058, + "7177": 71.7972205131, + "7178": 71.8684869027, + "7179": 71.9395412999, + "7180": 72.0103609079, + "7181": 72.08096584, + "7182": 72.1513530733, + "7183": 72.2214725009, + "7184": 72.2914115456, + "7185": 72.3611343688, + "7186": 72.4306661992, + "7187": 72.5000003068, + "7188": 72.5691445059, + "7189": 72.6380977739, + "7190": 72.7068618799, + "7191": 72.7754355359, + "7192": 72.8438173188, + "7193": 72.9119665586, + "7194": 72.9799286273, + "7195": 73.0476763353, + "7196": 73.1152155474, + "7197": 73.1825342049, + "7198": 73.2496280075, + "7199": 73.3164877139, + "7200": 73.3831056565, + "7201": 73.4494726551, + "7202": 73.5155797379, + "7203": 73.5789237136, + "7204": 73.6424649289, + "7205": 73.7051083687, + "7206": 73.7674209324, + "7207": 73.8291345189, + "7208": 73.8903956314, + "7209": 73.9511410896, + "7210": 74.0114107336, + "7211": 74.0711915521, + "7212": 74.1304960488, + "7213": 74.1890981743, + "7214": 74.2472399932, + "7215": 74.3048696034, + "7216": 74.362021831, + "7217": 74.4186885453, + "7218": 74.4748834261, + "7219": 74.5306098339, + "7220": 74.5858770204, + "7221": 74.6406921496, + "7222": 74.6950643805, + "7223": 74.7437010216, + "7224": 74.7912219681, + "7225": 74.8376636963, + "7226": 74.8831040002, + "7227": 74.9276047074, + "7228": 74.9712239818, + "7229": 75.0140147962, + "7230": 75.0560260099, + "7231": 75.0973028065, + "7232": 75.1378871634, + "7233": 75.1766343533, + "7234": 75.2143299169, + "7235": 75.2513979362, + "7236": 75.287694888, + "7237": 75.323361112, + "7238": 75.3583886385, + "7239": 75.3928391438, + "7240": 75.4267351157, + "7241": 75.4601146656, + "7242": 75.493004394, + "7243": 75.5215848477, + "7244": 75.5470617116, + "7245": 75.5724416125, + "7246": 75.5963219029, + "7247": 75.6195208551, + "7248": 75.6417274818, + "7249": 75.6631850945, + "7250": 75.6838492589, + "7251": 75.7038100801, + "7252": 75.7230818686, + "7253": 75.7406489918, + "7254": 75.7563545492, + "7255": 75.7717380651, + "7256": 75.7860828805, + "7257": 75.7998040111, + "7258": 75.8127395007, + "7259": 75.8250085933, + "7260": 75.8365827534, + "7261": 75.8475009027, + "7262": 75.8577623442, + "7263": 75.8648974813, + "7264": 75.8665970398, + "7265": 75.8689976614, + "7266": 75.8690896472, + "7267": 75.8684686278, + "7268": 75.8664042692, + "7269": 75.8633187882, + "7270": 75.8590469633, + "7271": 75.8537078651, + "7272": 75.8472700749, + "7273": 75.839088714, + "7274": 75.8275621702, + "7275": 75.8157041092, + "7276": 75.8020327464, + "7277": 75.7873271985, + "7278": 75.7712242397, + "7279": 75.7539261702, + "7280": 75.7353468553, + "7281": 75.7155397813, + "7282": 75.694484775, + "7283": 75.6701970032, + "7284": 75.6309192061, + "7285": 75.595135217, + "7286": 75.5536958721, + "7287": 75.5113720101, + "7288": 75.4659268703, + "7289": 75.4186132454, + "7290": 75.3689216782, + "7291": 75.3172098844, + "7292": 75.2633898774, + "7293": 75.207361419, + "7294": 75.1422473439, + "7295": 75.0778072251, + "7296": 75.0092573763, + "7297": 74.939134918, + "7298": 74.8662896239, + "7299": 74.7914053634, + "7300": 74.7142381217, + "7301": 74.6349990942, + "7302": 74.5536643373, + "7303": 74.4703211007, + "7304": 74.3935245672, + "7305": 74.3121973036, + "7306": 74.2314197511, + "7307": 74.1486007537, + "7308": 74.0650047861, + "7309": 73.9799749779, + "7310": 73.893823047, + "7311": 73.8063830146, + "7312": 73.7177336906, + "7313": 73.627836749, + "7314": 73.540879045, + "7315": 73.4519016953, + "7316": 73.3627313922, + "7317": 73.272416082, + "7318": 73.1814033667, + "7319": 73.0894493598, + "7320": 72.9966633965, + "7321": 72.9029460372, + "7322": 72.8082104877, + "7323": 72.7122707692, + "7324": 72.6254703131, + "7325": 72.5366494773, + "7326": 72.4482431721, + "7327": 72.3587532004, + "7328": 72.2686901161, + "7329": 72.1776093741, + "7330": 72.085585947, + "7331": 71.9924717721, + "7332": 71.8982635593, + "7333": 71.8029142484, + "7334": 71.713972503, + "7335": 71.6248752584, + "7336": 71.5356064631, + "7337": 71.446099067, + "7338": 71.3563222507, + "7339": 71.2662584258, + "7340": 71.1759070028, + "7341": 71.085279784, + "7342": 70.9944009382, + "7343": 70.9033040499, + "7344": 70.8140668467, + "7345": 70.7254517385, + "7346": 70.6368453278, + "7347": 70.5486111155, + "7348": 70.4606262496, + "7349": 70.3730228957, + "7350": 70.2858138575, + "7351": 70.1990783179, + "7352": 70.1128678387, + "7353": 70.0272518023, + "7354": 69.9432115935, + "7355": 69.8605339353, + "7356": 69.7785747321, + "7357": 69.6977414934, + "7358": 69.6179110085, + "7359": 69.5392279938, + "7360": 69.4617033713, + "7361": 69.385414459, + "7362": 69.3104042826, + "7363": 69.2367311221, + "7364": 69.161213098, + "7365": 69.0833546206, + "7366": 69.0078112641, + "7367": 68.9323872846, + "7368": 68.8583365281, + "7369": 68.7851655057, + "7370": 68.7132423536, + "7371": 68.6424913802, + "7372": 68.5730470903, + "7373": 68.5049277717, + "7374": 68.4366942078, + "7375": 68.3669780212, + "7376": 68.2995370223, + "7377": 68.2325753768, + "7378": 68.1670876289, + "7379": 68.102653251, + "7380": 68.0395474398, + "7381": 67.977685434, + "7382": 67.9171516484, + "7383": 67.8579359109, + "7384": 67.7981661691, + "7385": 67.7333876126, + "7386": 67.6719795394, + "7387": 67.6098099286, + "7388": 67.5490439351, + "7389": 67.4886685144, + "7390": 67.4292464694, + "7391": 67.3705383619, + "7392": 67.3126937058, + "7393": 67.255656659, + "7394": 67.1987463206, + "7395": 67.1377217478, + "7396": 67.0792272994, + "7397": 67.0199620158, + "7398": 66.9616295191, + "7399": 66.9034093723, + "7400": 66.8457339645, + "7401": 66.7883994221, + "7402": 66.7315119065, + "7403": 66.6750155608, + "7404": 66.6188245553, + "7405": 66.5596969858, + "7406": 66.5021599458, + "7407": 66.4439462904, + "7408": 66.3862086356, + "7409": 66.3283769673, + "7410": 66.2707381312, + "7411": 66.2131456601, + "7412": 66.1556659997, + "7413": 66.0982560978, + "7414": 66.0409252862, + "7415": 65.9814329871, + "7416": 65.9226727188, + "7417": 65.8633170275, + "7418": 65.8040415417, + "7419": 65.7445143461, + "7420": 65.6849052932, + "7421": 65.6251311538, + "7422": 65.5652348138, + "7423": 65.5051993339, + "7424": 65.4450436282, + "7425": 65.3845694284, + "7426": 65.324038238, + "7427": 65.2633755882, + "7428": 65.2026463854, + "7429": 65.1418459285, + "7430": 65.0810036406, + "7431": 65.020130571, + "7432": 64.9592451673, + "7433": 64.8983600353, + "7434": 64.8374883097, + "7435": 64.7737410851, + "7436": 64.7101700111, + "7437": 64.6460815127, + "7438": 64.5818720062, + "7439": 64.5173883245, + "7440": 64.4527443055, + "7441": 64.3879139622, + "7442": 64.3229353813, + "7443": 64.257809385, + "7444": 64.1925507272, + "7445": 64.1304847422, + "7446": 64.0687287469, + "7447": 64.0072677563, + "7448": 63.9460605314, + "7449": 63.8850739997, + "7450": 63.8242765502, + "7451": 63.7636387165, + "7452": 63.7031328269, + "7453": 63.6427327212, + "7454": 63.5824135823, + "7455": 63.5227197216, + "7456": 63.4632691422, + "7457": 63.4038530264, + "7458": 63.3445346196, + "7459": 63.2852406884, + "7460": 63.2259688322, + "7461": 63.1666828757, + "7462": 63.1073650434, + "7463": 63.0479896188, + "7464": 62.9885359173, + "7465": 62.9299465493, + "7466": 62.8719045607, + "7467": 62.8136410179, + "7468": 62.7554924833, + "7469": 62.6972383225, + "7470": 62.6389407787, + "7471": 62.5805227549, + "7472": 62.5219789428, + "7473": 62.4632699068, + "7474": 62.4043748164, + "7475": 62.3459633264, + "7476": 62.2881298508, + "7477": 62.229852558, + "7478": 62.1715923788, + "7479": 62.1130637012, + "7480": 62.0543589336, + "7481": 61.9953838963, + "7482": 61.9361402617, + "7483": 61.8765840471, + "7484": 61.8166962168, + "7485": 61.7573763362, + "7486": 61.6994665858, + "7487": 61.6406481291, + "7488": 61.582024865, + "7489": 61.522977652, + "7490": 61.4637580653, + "7491": 61.4041868316, + "7492": 61.3443050169, + "7493": 61.2840479181, + "7494": 61.2234078483, + "7495": 61.1629852707, + "7496": 61.1042476226, + "7497": 61.0443855607, + "7498": 60.984758704, + "7499": 60.9246293646, + "7500": 60.8643194183, + "7501": 60.8036264854, + "7502": 60.7426162424, + "7503": 60.6812256075, + "7504": 60.6194607586, + "7505": 60.5576367986, + "7506": 60.4977428704, + "7507": 60.4366325623, + "7508": 60.3758535389, + "7509": 60.3145919442, + "7510": 60.2532256452, + "7511": 60.1915417633, + "7512": 60.1296282719, + "7513": 60.0674274184, + "7514": 60.0049585212, + "7515": 59.9422939071, + "7516": 59.882129015, + "7517": 59.8206723815, + "7518": 59.759807775, + "7519": 59.6985622612, + "7520": 59.6374019252, + "7521": 59.5760772202, + "7522": 59.5147007566, + "7523": 59.4532075391, + "7524": 59.3916243187, + "7525": 59.3299343915, + "7526": 59.2695146094, + "7527": 59.2085740622, + "7528": 59.1479260471, + "7529": 59.0871485219, + "7530": 59.0264412516, + "7531": 58.9656947476, + "7532": 58.9049557296, + "7533": 58.8441939198, + "7534": 58.7834183119, + "7535": 58.7226187299, + "7536": 58.6630872256, + "7537": 58.6032793711, + "7538": 58.5437547503, + "7539": 58.4842102372, + "7540": 58.4247758501, + "7541": 58.3653662182, + "7542": 58.3060045919, + "7543": 58.2466605752, + "7544": 58.1873310556, + "7545": 58.1279995745, + "7546": 58.0682490601, + "7547": 58.0084941514, + "7548": 57.9486251103, + "7549": 57.8886847486, + "7550": 57.8286392894, + "7551": 57.7684924843, + "7552": 57.7082287748, + "7553": 57.6478418073, + "7554": 57.5873203027, + "7555": 57.5266552486, + "7556": 57.4677791249, + "7557": 57.4089933332, + "7558": 57.3502787857, + "7559": 57.2916019522, + "7560": 57.232935665, + "7561": 57.1742548224, + "7562": 57.1155369532, + "7563": 57.0567619218, + "7564": 56.9979118101, + "7565": 56.9389708073, + "7566": 56.880503294, + "7567": 56.8221316538, + "7568": 56.7636555689, + "7569": 56.7051527483, + "7570": 56.646563123, + "7571": 56.5878999341, + "7572": 56.5291432991, + "7573": 56.4702933642, + "7574": 56.4113435227, + "7575": 56.3522936447, + "7576": 56.2937909984, + "7577": 56.2356392914, + "7578": 56.1773401431, + "7579": 56.1191387546, + "7580": 56.0609076525, + "7581": 56.0027105848, + "7582": 55.9445190037, + "7583": 55.8863537194, + "7584": 55.8282137046, + "7585": 55.7701113948, + "7586": 55.7120039815, + "7587": 55.6538950442, + "7588": 55.5958687622, + "7589": 55.5379033091, + "7590": 55.4800314645, + "7591": 55.422259332, + "7592": 55.3646069002, + "7593": 55.3070875112, + "7594": 55.2497179139, + "7595": 55.1925130221, + "7596": 55.1354202416, + "7597": 55.0783908749, + "7598": 55.0216074203, + "7599": 54.9650009791, + "7600": 54.9086282281, + "7601": 54.8524812325, + "7602": 54.7965827227, + "7603": 54.7409382769, + "7604": 54.6855601309, + "7605": 54.6304551684, + "7606": 54.5754886916, + "7607": 54.5203323657, + "7608": 54.4656164941, + "7609": 54.4110343528, + "7610": 54.3567489489, + "7611": 54.3026842482, + "7612": 54.2488807253, + "7613": 54.195317469, + "7614": 54.1420012628, + "7615": 54.0889221322, + "7616": 54.0359464031, + "7617": 53.9823040023, + "7618": 53.9291807604, + "7619": 53.8759727692, + "7620": 53.8229754081, + "7621": 53.7700291665, + "7622": 53.7171990109, + "7623": 53.6644346243, + "7624": 53.6117406561, + "7625": 53.5590918678, + "7626": 53.5064914567, + "7627": 53.4543970718, + "7628": 53.4021168588, + "7629": 53.349964322, + "7630": 53.2977454477, + "7631": 53.2455207453, + "7632": 53.1932233251, + "7633": 53.1408502395, + "7634": 53.0883669495, + "7635": 53.0357552805, + "7636": 52.9829896273, + "7637": 52.9310070464, + "7638": 52.8785352488, + "7639": 52.826120668, + "7640": 52.773447976, + "7641": 52.7206369144, + "7642": 52.6675924963, + "7643": 52.6143301867, + "7644": 52.5608132814, + "7645": 52.5070342567, + "7646": 52.4529741255, + "7647": 52.399630311, + "7648": 52.3457916404, + "7649": 52.2918892146, + "7650": 52.2376840909, + "7651": 52.183277385, + "7652": 52.1286048311, + "7653": 52.0736893547, + "7654": 52.0185146054, + "7655": 51.9630880253, + "7656": 51.9074091516, + "7657": 51.8524281858, + "7658": 51.7971627214, + "7659": 51.7418513146, + "7660": 51.6863790306, + "7661": 51.6308114821, + "7662": 51.5751286973, + "7663": 51.5193575572, + "7664": 51.4635052662, + "7665": 51.4075922613, + "7666": 51.3516354255, + "7667": 51.2961913135, + "7668": 51.2408161992, + "7669": 51.1855310812, + "7670": 51.1303536641, + "7671": 51.0753044472, + "7672": 51.0204050353, + "7673": 50.9656782273, + "7674": 50.9111476559, + "7675": 50.8568375894, + "7676": 50.8027726881, + "7677": 50.7485915313, + "7678": 50.6945632958, + "7679": 50.6408397495, + "7680": 50.5873877382, + "7681": 50.5342667725, + "7682": 50.4814878153, + "7683": 50.429084211, + "7684": 50.3770760093, + "7685": 50.3254877011, + "7686": 50.2743392334, + "7687": 50.2230091081, + "7688": 50.1717115011, + "7689": 50.1209594543, + "7690": 50.0705296703, + "7691": 50.0205674477, + "7692": 49.971028295, + "7693": 49.9219584759, + "7694": 49.8733546476, + "7695": 49.8252342207, + "7696": 49.7776002951, + "7697": 49.7292850543, + "7698": 49.6800911011, + "7699": 49.6316942361, + "7700": 49.5832772356, + "7701": 49.53527617, + "7702": 49.4874906145, + "7703": 49.4400325279, + "7704": 49.3928517422, + "7705": 49.3459743736, + "7706": 49.2993848732, + "7707": 49.2528059936, + "7708": 49.2059685025, + "7709": 49.1595583195, + "7710": 49.1132274469, + "7711": 49.0671470885, + "7712": 49.0212249837, + "7713": 48.9754983391, + "7714": 48.9299374325, + "7715": 48.8845441638, + "7716": 48.8393030616, + "7717": 48.7937577599, + "7718": 48.7468442857, + "7719": 48.7005269814, + "7720": 48.6538193126, + "7721": 48.6072212655, + "7722": 48.5604839807, + "7723": 48.5137313988, + "7724": 48.4668992991, + "7725": 48.420016387, + "7726": 48.3730641601, + "7727": 48.3260598779, + "7728": 48.2790702013, + "7729": 48.2319787975, + "7730": 48.1848397377, + "7731": 48.13762214, + "7732": 48.0903390328, + "7733": 48.0429829264, + "7734": 47.9955582334, + "7735": 47.9480651961, + "7736": 47.9005080463, + "7737": 47.8529081887, + "7738": 47.8057976851, + "7739": 47.7584434519, + "7740": 47.7112218948, + "7741": 47.6639527113, + "7742": 47.6167378608, + "7743": 47.5695407845, + "7744": 47.5223968948, + "7745": 47.4753081472, + "7746": 47.4282956169, + "7747": 47.3813730527, + "7748": 47.3340451576, + "7749": 47.2870021922, + "7750": 47.2399603666, + "7751": 47.1930996642, + "7752": 47.1463681553, + "7753": 47.0998304732, + "7754": 47.0534933059, + "7755": 47.0073925392, + "7756": 46.9615495291, + "7757": 46.9159928057, + "7758": 46.8691908355, + "7759": 46.8230230495, + "7760": 46.7768368016, + "7761": 46.7310163272, + "7762": 46.6854237067, + "7763": 46.6401788164, + "7764": 46.5952693977, + "7765": 46.5507461066, + "7766": 46.506625035, + "7767": 46.4629364794, + "7768": 46.4173701233, + "7769": 46.3723937894, + "7770": 46.3274623973, + "7771": 46.2829072909, + "7772": 46.2386169137, + "7773": 46.1946938171, + "7774": 46.1511272335, + "7775": 46.1079570688, + "7776": 46.0651922831, + "7777": 46.0228520097, + "7778": 45.9800302607, + "7779": 45.9375319093, + "7780": 45.8953660343, + "7781": 45.8535467304, + "7782": 45.8120820988, + "7783": 45.7709771291, + "7784": 45.7302332484, + "7785": 45.6898487885, + "7786": 45.6498191077, + "7787": 45.6101368349, + "7788": 45.570756861, + "7789": 45.5316891394, + "7790": 45.4929307484, + "7791": 45.4544599299, + "7792": 45.4162615455, + "7793": 45.3783143911, + "7794": 45.3405978259, + "7795": 45.3030886921, + "7796": 45.2657630949, + "7797": 45.2285957498, + "7798": 45.191445801, + "7799": 45.1543214829, + "7800": 45.1172841396, + "7801": 45.0802632143, + "7802": 45.0432540923, + "7803": 45.0062183668, + "7804": 44.9691341922, + "7805": 44.9319713321, + "7806": 44.8947039052, + "7807": 44.8573042665, + "7808": 44.8200624725, + "7809": 44.7830059937, + "7810": 44.7456587971, + "7811": 44.708216087, + "7812": 44.670536308, + "7813": 44.6326498604, + "7814": 44.5945038983, + "7815": 44.5560901793, + "7816": 44.5173811746, + "7817": 44.4783620877, + "7818": 44.4400983661, + "7819": 44.4035850267, + "7820": 44.3661337127, + "7821": 44.3290472735, + "7822": 44.2916205742, + "7823": 44.2541644295, + "7824": 44.2164881372, + "7825": 44.1786586183, + "7826": 44.1406201495, + "7827": 44.1023840575, + "7828": 44.0640640904, + "7829": 44.0259687028, + "7830": 43.9875190448, + "7831": 43.949002586, + "7832": 43.9102739615, + "7833": 43.8714090848, + "7834": 43.8323766146, + "7835": 43.7932019393, + "7836": 43.7538846843, + "7837": 43.7144395148, + "7838": 43.6751746281, + "7839": 43.6378633378, + "7840": 43.599749026, + "7841": 43.5622145426, + "7842": 43.524557414, + "7843": 43.4871245507, + "7844": 43.4497395853, + "7845": 43.4124893858, + "7846": 43.3753299834, + "7847": 43.338283062, + "7848": 43.3013468918, + "7849": 43.2648232158, + "7850": 43.2282884595, + "7851": 43.1919487008, + "7852": 43.155690989, + "7853": 43.1195607445, + "7854": 43.0835221232, + "7855": 43.0475777447, + "7856": 43.0117086331, + "7857": 42.9759041312, + "7858": 42.9401468685, + "7859": 42.9054321381, + "7860": 42.8704199426, + "7861": 42.8356882434, + "7862": 42.8009023039, + "7863": 42.7661841055, + "7864": 42.7314261594, + "7865": 42.6966349149, + "7866": 42.661759076, + "7867": 42.626775573, + "7868": 42.5916467303, + "7869": 42.556855735, + "7870": 42.5217563771, + "7871": 42.4865400369, + "7872": 42.4510551176, + "7873": 42.4153231023, + "7874": 42.3792806103, + "7875": 42.3429085904, + "7876": 42.3061679394, + "7877": 42.269031924, + "7878": 42.231470207, + "7879": 42.1955071648, + "7880": 42.1589663839, + "7881": 42.1223212335, + "7882": 42.0852752495, + "7883": 42.0479220431, + "7884": 42.0101678786, + "7885": 41.9720196207, + "7886": 41.9334406859, + "7887": 41.8944228898, + "7888": 41.854950389, + "7889": 41.8163063972, + "7890": 41.7773659341, + "7891": 41.7381239046, + "7892": 41.6985686111, + "7893": 41.6586966709, + "7894": 41.6185093662, + "7895": 41.5780131592, + "7896": 41.5372191478, + "7897": 41.4961428633, + "7898": 41.4548039375, + "7899": 41.4158250267, + "7900": 41.3775888364, + "7901": 41.339269899, + "7902": 41.3012873129, + "7903": 41.2634353721, + "7904": 41.2258323546, + "7905": 41.1884418657, + "7906": 41.1513115809, + "7907": 41.1144526377, + "7908": 41.0778988883, + "7909": 41.0414326875, + "7910": 41.005161073, + "7911": 40.9693033588, + "7912": 40.9338013451, + "7913": 40.8987363785, + "7914": 40.864117706, + "7915": 40.829987966, + "7916": 40.7963695882, + "7917": 40.7632908672, + "7918": 40.7307722058, + "7919": 40.6964409392, + "7920": 40.65991531, + "7921": 40.6246443284, + "7922": 40.5890120373, + "7923": 40.5539525645, + "7924": 40.5190978116, + "7925": 40.484709312, + "7926": 40.4507123575, + "7927": 40.4171805975, + "7928": 40.384094915, + "7929": 40.3514696719, + "7930": 40.3192880186, + "7931": 40.2875175957, + "7932": 40.2561282661, + "7933": 40.2250750461, + "7934": 40.1943076088, + "7935": 40.1637663726, + "7936": 40.1333853232, + "7937": 40.1030914786, + "7938": 40.0728060469, + "7939": 40.0430421107, + "7940": 40.0151113845, + "7941": 39.9862884725, + "7942": 39.957774763, + "7943": 39.9287886727, + "7944": 39.8995440777, + "7945": 39.8697571743, + "7946": 39.8393945886, + "7947": 39.8082998712, + "7948": 39.7763810519, + "7949": 39.7436167508, + "7950": 39.7104879985, + "7951": 39.6759728242, + "7952": 39.6404273987, + "7953": 39.603520837, + "7954": 39.5652761766, + "7955": 39.5255491131, + "7956": 39.4842896445, + "7957": 39.4414119052, + "7958": 39.3968599517, + "7959": 39.3510589055, + "7960": 39.3187707447, + "7961": 39.2791048302, + "7962": 39.2423809049, + "7963": 39.2032117916, + "7964": 39.1641280876, + "7965": 39.1237305733, + "7966": 39.0826185142, + "7967": 39.0404225369, + "7968": 38.9972869301, + "7969": 38.9531271125, + "7970": 38.9089567077, + "7971": 38.8635386302, + "7972": 38.8174978555, + "7973": 38.7705982089, + "7974": 38.7230595835, + "7975": 38.6748969837, + "7976": 38.6262503533, + "7977": 38.5772187337, + "7978": 38.527942343, + "7979": 38.4785607049, + "7980": 38.4267025732, + "7981": 38.3755485465, + "7982": 38.3241777738, + "7983": 38.2733653887, + "7984": 38.2230497446, + "7985": 38.1735988881, + "7986": 38.1251767409, + "7987": 38.0780594514, + "7988": 38.0324765441, + "7989": 37.9886895933, + "7990": 37.9471586434, + "7991": 37.9079313683, + "7992": 37.871322636, + "7993": 37.8375742029, + "7994": 37.8069682777, + "7995": 37.7797697609, + "7996": 37.7562537438, + "7997": 37.7366903949, + "7998": 37.7213510804, + "7999": 37.7105038305, + "8000": 31.0908589397, + "8001": 31.1009474871, + "8002": 31.1118386215, + "8003": 31.1235321646, + "8004": 31.1360260568, + "8005": 31.149318133, + "8006": 31.1634056372, + "8007": 31.178282472, + "8008": 31.1939383829, + "8009": 31.2103608242, + "8010": 31.2275361115, + "8011": 31.2454490902, + "8012": 31.2640830305, + "8013": 31.2834192508, + "8014": 31.3034371311, + "8015": 31.3241137672, + "8016": 31.3454240825, + "8017": 31.3673405013, + "8018": 31.3898331607, + "8019": 31.412869588, + "8020": 31.4364150177, + "8021": 31.4611359063, + "8022": 31.4879539204, + "8023": 31.5170139217, + "8024": 31.5482396163, + "8025": 31.5815945192, + "8026": 31.6170305315, + "8027": 31.6544980753, + "8028": 31.6939449779, + "8029": 31.7353164209, + "8030": 31.7785559763, + "8031": 31.8236273873, + "8032": 31.8705123086, + "8033": 31.919148624, + "8034": 31.9694268997, + "8035": 32.0212225661, + "8036": 32.0744190235, + "8037": 32.1289103465, + "8038": 32.1845990644, + "8039": 32.2413952661, + "8040": 32.2992157565, + "8041": 32.3586888238, + "8042": 32.4215802769, + "8043": 32.488279567, + "8044": 32.5586477554, + "8045": 32.6326540828, + "8046": 32.7102487355, + "8047": 32.7913885733, + "8048": 32.8760322001, + "8049": 32.9641411436, + "8050": 33.0556797793, + "8051": 33.1506549029, + "8052": 33.2491954018, + "8053": 33.3513172416, + "8054": 33.4569896293, + "8055": 33.5661945641, + "8056": 33.6789149025, + "8057": 33.7951367073, + "8058": 33.9148487037, + "8059": 34.038042288, + "8060": 34.1647113996, + "8061": 34.2950307852, + "8062": 34.4303471078, + "8063": 34.5710486006, + "8064": 34.7170737126, + "8065": 34.8684503358, + "8066": 35.0251879178, + "8067": 35.1872992048, + "8068": 35.3547959626, + "8069": 35.5276898735, + "8070": 35.7059923658, + "8071": 35.8897200672, + "8072": 36.079059515, + "8073": 36.2740743902, + "8074": 36.4747659397, + "8075": 36.6811470585, + "8076": 36.8932274165, + "8077": 37.111016404, + "8078": 37.3345225006, + "8079": 37.5637533571, + "8080": 37.7987157336, + "8081": 38.0394154659, + "8082": 38.2846981978, + "8083": 38.5341382613, + "8084": 38.7877771772, + "8085": 39.0456010154, + "8086": 39.3076076706, + "8087": 39.5737930858, + "8088": 39.8441537548, + "8089": 40.1186860018, + "8090": 40.3973859396, + "8091": 40.680249321, + "8092": 40.9670962491, + "8093": 41.2578365712, + "8094": 41.5524641437, + "8095": 41.8509711072, + "8096": 42.1533494386, + "8097": 42.4595905556, + "8098": 42.7696853298, + "8099": 43.0836240356, + "8100": 43.4013963262, + "8101": 43.7229912179, + "8102": 44.0463636485, + "8103": 44.3702359928, + "8104": 44.69451596, + "8105": 45.0192006601, + "8106": 45.3442712942, + "8107": 45.6697138712, + "8108": 45.9955147592, + "8109": 46.3216613266, + "8110": 46.6481416118, + "8111": 46.9749442256, + "8112": 47.3016462296, + "8113": 47.6286345233, + "8114": 47.9556729716, + "8115": 48.282848026, + "8116": 48.6101019824, + "8117": 48.9374470483, + "8118": 49.2648619841, + "8119": 49.5923428975, + "8120": 49.9198779075, + "8121": 50.2474597119, + "8122": 50.5737169239, + "8123": 50.8972307325, + "8124": 51.2177772039, + "8125": 51.5353974482, + "8126": 51.8500809082, + "8127": 52.1618286334, + "8128": 52.4706404154, + "8129": 52.7765172685, + "8130": 53.079460819, + "8131": 53.3794733542, + "8132": 53.6763886101, + "8133": 53.9699797328, + "8134": 54.2602073655, + "8135": 54.5470853395, + "8136": 54.8306175668, + "8137": 55.1108106089, + "8138": 55.3876711184, + "8139": 55.6612063131, + "8140": 55.9314238474, + "8141": 56.1983318087, + "8142": 56.4616216213, + "8143": 56.7207206512, + "8144": 56.9755148593, + "8145": 57.2260439168, + "8146": 57.4723170427, + "8147": 57.7143497754, + "8148": 57.9521566025, + "8149": 58.1857524125, + "8150": 58.415152185, + "8151": 58.6403710339, + "8152": 58.861377427, + "8153": 59.0780653291, + "8154": 59.2904214376, + "8155": 59.4984679978, + "8156": 59.7022201858, + "8157": 59.9016946039, + "8158": 60.096907563, + "8159": 60.2878754059, + "8160": 60.4746144231, + "8161": 60.6571408501, + "8162": 60.8355254157, + "8163": 61.0100032022, + "8164": 61.1806474925, + "8165": 61.3474622588, + "8166": 61.5104650316, + "8167": 61.6696703337, + "8168": 61.8250929982, + "8169": 61.9767475072, + "8170": 62.1246481242, + "8171": 62.2688088662, + "8172": 62.4092511635, + "8173": 62.5460463429, + "8174": 62.6792238226, + "8175": 62.8087932983, + "8176": 62.9347680731, + "8177": 63.0571603967, + "8178": 63.1759824031, + "8179": 63.2912459297, + "8180": 63.4029625597, + "8181": 63.5111436217, + "8182": 63.6158203988, + "8183": 63.7176561432, + "8184": 63.8168517806, + "8185": 63.9133759381, + "8186": 64.0072434019, + "8187": 64.0984595045, + "8188": 64.1870312737, + "8189": 64.2729652352, + "8190": 64.3562678796, + "8191": 64.4369455938, + "8192": 64.5150046981, + "8193": 64.5906327512, + "8194": 64.6639014188, + "8195": 64.7348086196, + "8196": 64.8033611268, + "8197": 64.8695639546, + "8198": 64.9334225013, + "8199": 64.9949421417, + "8200": 65.0541283264, + "8201": 65.1109865786, + "8202": 65.1655225092, + "8203": 65.2182897392, + "8204": 65.2695541224, + "8205": 65.3193147464, + "8206": 65.3675750533, + "8207": 65.4143378104, + "8208": 65.4596061365, + "8209": 65.5033833121, + "8210": 65.5456728271, + "8211": 65.5864783761, + "8212": 65.6258038607, + "8213": 65.6637556865, + "8214": 65.7004012178, + "8215": 65.7357480179, + "8216": 65.7697993889, + "8217": 65.8025596935, + "8218": 65.8340332833, + "8219": 65.8642247027, + "8220": 65.8931386352, + "8221": 65.9207799004, + "8222": 65.9471534388, + "8223": 65.9726115038, + "8224": 65.9974351753, + "8225": 66.0216576042, + "8226": 66.0452744025, + "8227": 66.0682888909, + "8228": 66.090703043, + "8229": 66.1125192737, + "8230": 66.1337400602, + "8231": 66.1543679942, + "8232": 66.1744057467, + "8233": 66.1939257843, + "8234": 66.2130028039, + "8235": 66.2316500512, + "8236": 66.2498672455, + "8237": 66.2676568245, + "8238": 66.2850206763, + "8239": 66.3019607696, + "8240": 66.3184790057, + "8241": 66.3345772266, + "8242": 66.3502571936, + "8243": 66.365580989, + "8244": 66.3806317875, + "8245": 66.3954250286, + "8246": 66.4099571764, + "8247": 66.4242284852, + "8248": 66.4382384294, + "8249": 66.4519865891, + "8250": 66.4654724498, + "8251": 66.4786954218, + "8252": 66.4916548192, + "8253": 66.5043663824, + "8254": 66.5168594054, + "8255": 66.5291389537, + "8256": 66.5412019499, + "8257": 66.5530468419, + "8258": 66.5646716666, + "8259": 66.5760744304, + "8260": 66.5872530298, + "8261": 66.5982052669, + "8262": 66.608928848, + "8263": 66.6193912384, + "8264": 66.6295113614, + "8265": 66.6392669216, + "8266": 66.648658339, + "8267": 66.6576816115, + "8268": 66.6663337353, + "8269": 66.6746116046, + "8270": 66.6825122234, + "8271": 66.6900326586, + "8272": 66.6971700483, + "8273": 66.7039131634, + "8274": 66.7102253549, + "8275": 66.7160948056, + "8276": 66.7215204501, + "8277": 66.7264992636, + "8278": 66.7310288067, + "8279": 66.7351067141, + "8280": 66.7387307975, + "8281": 66.7418990268, + "8282": 66.7446095362, + "8283": 66.7468191264, + "8284": 66.7482128372, + "8285": 66.7487006439, + "8286": 66.7482980606, + "8287": 66.7470001161, + "8288": 66.744806511, + "8289": 66.7417165208, + "8290": 66.7377299649, + "8291": 66.7328469683, + "8292": 66.7270679726, + "8293": 66.7203890164, + "8294": 66.7126597471, + "8295": 66.7038362989, + "8296": 66.6939286669, + "8297": 66.6829365181, + "8298": 66.6708619923, + "8299": 66.6577070974, + "8300": 66.643474194, + "8301": 66.6281658675, + "8302": 66.6117849266, + "8303": 66.5943343807, + "8304": 66.5755081785, + "8305": 66.555205332, + "8306": 66.5334645759, + "8307": 66.5102894563, + "8308": 66.4856500198, + "8309": 66.4595959681, + "8310": 66.4321090435, + "8311": 66.4032129867, + "8312": 66.3729033404, + "8313": 66.3412080929, + "8314": 66.3080340075, + "8315": 66.2733692989, + "8316": 66.2372088071, + "8317": 66.199581141, + "8318": 66.1604815348, + "8319": 66.1199382426, + "8320": 66.0779475281, + "8321": 66.0345002492, + "8322": 65.98954525, + "8323": 65.9430854967, + "8324": 65.8950983712, + "8325": 65.8455976462, + "8326": 65.7945952056, + "8327": 65.7421239092, + "8328": 65.6881966852, + "8329": 65.6328448104, + "8330": 65.5760812329, + "8331": 65.5179361253, + "8332": 65.458422578, + "8333": 65.3975698055, + "8334": 65.3354842724, + "8335": 65.2722696783, + "8336": 65.2079493983, + "8337": 65.142550483, + "8338": 65.07608804, + "8339": 65.0085893534, + "8340": 64.9400689423, + "8341": 64.8705528603, + "8342": 64.8000553434, + "8343": 64.7286011742, + "8344": 64.6563309087, + "8345": 64.5833990757, + "8346": 64.5098390365, + "8347": 64.4356682452, + "8348": 64.3608999168, + "8349": 64.2855540297, + "8350": 64.2096424091, + "8351": 64.1331837617, + "8352": 64.0561891894, + "8353": 63.9786759448, + "8354": 63.9007114615, + "8355": 63.822389195, + "8356": 63.7437330903, + "8357": 63.664754096, + "8358": 63.5854609835, + "8359": 63.5058659959, + "8360": 63.4259763299, + "8361": 63.3458028006, + "8362": 63.2653515388, + "8363": 63.1846318403, + "8364": 63.103735372, + "8365": 63.0228280116, + "8366": 62.9419453378, + "8367": 62.861083334, + "8368": 62.7802433396, + "8369": 62.6994273408, + "8370": 62.618634845, + "8371": 62.5378672635, + "8372": 62.4571234687, + "8373": 62.3764039994, + "8374": 62.2957468894, + "8375": 62.2152547334, + "8376": 62.1349483147, + "8377": 62.0548193334, + "8378": 61.9748639446, + "8379": 61.8950783088, + "8380": 61.8154573574, + "8381": 61.7359970089, + "8382": 61.6566918789, + "8383": 61.5775374703, + "8384": 61.4985586965, + "8385": 61.4198728065, + "8386": 61.341503263, + "8387": 61.2634351375, + "8388": 61.1856608526, + "8389": 61.1081721979, + "8390": 61.0309608122, + "8391": 60.9540190768, + "8392": 60.8773389819, + "8393": 60.800913224, + "8394": 60.7247455637, + "8395": 60.6489148667, + "8396": 60.5734361161, + "8397": 60.4982956004, + "8398": 60.4234855247, + "8399": 60.3489976747, + "8400": 60.2748241099, + "8401": 60.200957512, + "8402": 60.1273906269, + "8403": 60.0541168033, + "8404": 59.981131364, + "8405": 59.9084890463, + "8406": 59.8362006383, + "8407": 59.764256623, + "8408": 59.6926497618, + "8409": 59.6213744488, + "8410": 59.5504243536, + "8411": 59.4797949236, + "8412": 59.4094805964, + "8413": 59.3394775177, + "8414": 59.2697808718, + "8415": 59.2004276869, + "8416": 59.1314276908, + "8417": 59.0627755068, + "8418": 58.994467091, + "8419": 58.9264992952, + "8420": 58.8588691461, + "8421": 58.7915733226, + "8422": 58.7246153467, + "8423": 58.658009806, + "8424": 58.5917716049, + "8425": 58.5259105361, + "8426": 58.4604365419, + "8427": 58.3953619085, + "8428": 58.3306968532, + "8429": 58.26645157, + "8430": 58.202634362, + "8431": 58.1392535426, + "8432": 58.0763156383, + "8433": 58.0138271831, + "8434": 57.9517930829, + "8435": 57.8902173236, + "8436": 57.8291021367, + "8437": 57.7684498521, + "8438": 57.7082616264, + "8439": 57.6485386173, + "8440": 57.5892812816, + "8441": 57.5304901606, + "8442": 57.4721663527, + "8443": 57.4143105689, + "8444": 57.3569227472, + "8445": 57.2999705902, + "8446": 57.2434279676, + "8447": 57.1872908883, + "8448": 57.1315581187, + "8449": 57.076227063, + "8450": 57.0212946402, + "8451": 56.9667571634, + "8452": 56.9126104138, + "8453": 56.8588496736, + "8454": 56.8054697627, + "8455": 56.7524463562, + "8456": 56.6997541101, + "8457": 56.6473837779, + "8458": 56.5953294049, + "8459": 56.5435839995, + "8460": 56.4921404296, + "8461": 56.4409912748, + "8462": 56.390128885, + "8463": 56.3395453974, + "8464": 56.2892327604, + "8465": 56.2391647033, + "8466": 56.189308433, + "8467": 56.1396511771, + "8468": 56.0901856841, + "8469": 56.0409034551, + "8470": 55.9917961251, + "8471": 55.9428552166, + "8472": 55.8940722179, + "8473": 55.8454385957, + "8474": 55.7969458205, + "8475": 55.7485723673, + "8476": 55.7002859626, + "8477": 55.6520733302, + "8478": 55.6039275886, + "8479": 55.5558406732, + "8480": 55.5078048782, + "8481": 55.4598125783, + "8482": 55.411856311, + "8483": 55.3639287873, + "8484": 55.3160229142, + "8485": 55.268125525, + "8486": 55.2202138045, + "8487": 55.1722780305, + "8488": 55.1243135605, + "8489": 55.076314975, + "8490": 55.0282772689, + "8491": 54.9801956389, + "8492": 54.932065547, + "8493": 54.8838827254, + "8494": 54.8356431895, + "8495": 54.7873390851, + "8496": 54.7389504339, + "8497": 54.6904703619, + "8498": 54.6418976442, + "8499": 54.5932301977, + "8500": 54.5444663821, + "8501": 54.4956047462, + "8502": 54.4466440796, + "8503": 54.3975834, + "8504": 54.3484219501, + "8505": 54.2991586509, + "8506": 54.2497891724, + "8507": 54.2003128159, + "8508": 54.1507305261, + "8509": 54.1010430252, + "8510": 54.0512511695, + "8511": 54.0013558716, + "8512": 53.9513581047, + "8513": 53.9012588888, + "8514": 53.8510592788, + "8515": 53.8007602341, + "8516": 53.7503590788, + "8517": 53.6998563623, + "8518": 53.6492540736, + "8519": 53.5985537725, + "8520": 53.5477569471, + "8521": 53.4968649418, + "8522": 53.4458789662, + "8523": 53.3948000887, + "8524": 53.3436292323, + "8525": 53.2923671714, + "8526": 53.2410197172, + "8527": 53.1895895382, + "8528": 53.138077129, + "8529": 53.0864830125, + "8530": 53.0348074555, + "8531": 52.9830505355, + "8532": 52.9312121366, + "8533": 52.87929196, + "8534": 52.8272895329, + "8535": 52.7752042182, + "8536": 52.7230410919, + "8537": 52.6708023259, + "8538": 52.6184872328, + "8539": 52.5660949962, + "8540": 52.5136246341, + "8541": 52.4610750322, + "8542": 52.4084449633, + "8543": 52.3557331088, + "8544": 52.3029380797, + "8545": 52.2500584387, + "8546": 52.1970912415, + "8547": 52.1440340955, + "8548": 52.0908854851, + "8549": 52.037643996, + "8550": 51.9843082587, + "8551": 51.9308769843, + "8552": 51.8773489804, + "8553": 51.8237231711, + "8554": 51.769998615, + "8555": 51.7161745228, + "8556": 51.6622652089, + "8557": 51.608282597, + "8558": 51.5542284968, + "8559": 51.5001032607, + "8560": 51.4459076778, + "8561": 51.3916426211, + "8562": 51.3373091425, + "8563": 51.2829084749, + "8564": 51.2284420486, + "8565": 51.1739115017, + "8566": 51.119322609, + "8567": 51.0646816619, + "8568": 51.0099918841, + "8569": 50.9552559524, + "8570": 50.9004768683, + "8571": 50.8456577824, + "8572": 50.790802027, + "8573": 50.7359131029, + "8574": 50.6809946726, + "8575": 50.6260505493, + "8576": 50.5710890754, + "8577": 50.516120477, + "8578": 50.4611544632, + "8579": 50.4061994872, + "8580": 50.3512607395, + "8581": 50.2963424381, + "8582": 50.2414486452, + "8583": 50.1865835672, + "8584": 50.1317512057, + "8585": 50.0769556695, + "8586": 50.0222020931, + "8587": 49.9674967488, + "8588": 49.9128438134, + "8589": 49.858246869, + "8590": 49.8037092904, + "8591": 49.7492343983, + "8592": 49.6948251543, + "8593": 49.6404844504, + "8594": 49.5862147823, + "8595": 49.5320185433, + "8596": 49.4778990606, + "8597": 49.4238617111, + "8598": 49.3699087692, + "8599": 49.3160413316, + "8600": 49.2622602321, + "8601": 49.2085660933, + "8602": 49.1549590721, + "8603": 49.1014391493, + "8604": 49.0480058326, + "8605": 48.994658459, + "8606": 48.9413959775, + "8607": 48.8882173925, + "8608": 48.835120945, + "8609": 48.7821046266, + "8610": 48.7291660388, + "8611": 48.6763026809, + "8612": 48.6235116629, + "8613": 48.5707900281, + "8614": 48.5181344614, + "8615": 48.465541619, + "8616": 48.4130078745, + "8617": 48.3605298555, + "8618": 48.3081035508, + "8619": 48.2557248879, + "8620": 48.2033896116, + "8621": 48.1510936004, + "8622": 48.0988325645, + "8623": 48.0466024023, + "8624": 47.9943988871, + "8625": 47.9422180323, + "8626": 47.8900557434, + "8627": 47.8379073112, + "8628": 47.7857687618, + "8629": 47.7336368181, + "8630": 47.6815081334, + "8631": 47.6293797485, + "8632": 47.5772487894, + "8633": 47.5251127185, + "8634": 47.4729691085, + "8635": 47.4208160519, + "8636": 47.368651795, + "8637": 47.3164733601, + "8638": 47.2642792275, + "8639": 47.2120690896, + "8640": 47.1598427532, + "8641": 47.1076005223, + "8642": 47.055342925, + "8643": 47.003070991, + "8644": 46.9507859927, + "8645": 46.8984897135, + "8646": 46.8461841847, + "8647": 46.7938709993, + "8648": 46.7415526883, + "8649": 46.6892328218, + "8650": 46.6369151143, + "8651": 46.5846038166, + "8652": 46.5323033336, + "8653": 46.4800184416, + "8654": 46.4277540467, + "8655": 46.3755155345, + "8656": 46.323308349, + "8657": 46.2711310081, + "8658": 46.2189850906, + "8659": 46.1668769115, + "8660": 46.1148130482, + "8661": 46.0628002437, + "8662": 46.010845148, + "8663": 45.9589545827, + "8664": 45.9071352176, + "8665": 45.8553938346, + "8666": 45.8037370139, + "8667": 45.7521760146, + "8668": 45.7007209853, + "8669": 45.6493788168, + "8670": 45.5981555835, + "8671": 45.5470573574, + "8672": 45.49608982, + "8673": 45.445258499, + "8674": 45.3945685082, + "8675": 45.3440247505, + "8676": 45.2936316769, + "8677": 45.2433927975, + "8678": 45.1933110712, + "8679": 45.1433897162, + "8680": 45.093631574, + "8681": 45.0440391389, + "8682": 44.9946143892, + "8683": 44.9453589522, + "8684": 44.8962739203, + "8685": 44.8473600181, + "8686": 44.7986174883, + "8687": 44.750046705, + "8688": 44.7016477364, + "8689": 44.6534193504, + "8690": 44.6053596609, + "8691": 44.5574664216, + "8692": 44.5097369751, + "8693": 44.462168271, + "8694": 44.4147568738, + "8695": 44.367498975, + "8696": 44.3203904073, + "8697": 44.2734278537, + "8698": 44.2266084657, + "8699": 44.1799270109, + "8700": 44.1333773722, + "8701": 44.086953381, + "8702": 44.0406486725, + "8703": 43.9944567321, + "8704": 43.9482450405, + "8705": 43.9008677471, + "8706": 43.8525932461, + "8707": 43.8032842001, + "8708": 43.7530061432, + "8709": 43.7017241295, + "8710": 43.6494546704, + "8711": 43.5961893885, + "8712": 43.5419331326, + "8713": 43.4866849506, + "8714": 43.4304476176, + "8715": 43.3732228923, + "8716": 43.3150139095, + "8717": 43.2558234023, + "8718": 43.1956530265, + "8719": 43.1345064897, + "8720": 43.0723889207, + "8721": 43.0093060011, + "8722": 42.9452641784, + "8723": 42.8802706233, + "8724": 42.8143332566, + "8725": 42.7474607537, + "8726": 42.6796625571, + "8727": 42.6109486587, + "8728": 42.5413283584, + "8729": 42.4708130179, + "8730": 42.3994153802, + "8731": 42.3271488702, + "8732": 42.2540277388, + "8733": 42.1800670378, + "8734": 42.1052826985, + "8735": 42.0296915786, + "8736": 41.9533114004, + "8737": 41.8761605484, + "8738": 41.7982536029, + "8739": 41.7196094365, + "8740": 41.6402494123, + "8741": 41.5601952779, + "8742": 41.479469565, + "8743": 41.3980954887, + "8744": 41.3160969425, + "8745": 41.2334984717, + "8746": 41.1503252483, + "8747": 41.066603042, + "8748": 40.9823534535, + "8749": 40.8976015869, + "8750": 40.8123749571, + "8751": 40.7267013258, + "8752": 40.6406089385, + "8753": 40.5541264301, + "8754": 40.467282796, + "8755": 40.3801073489, + "8756": 40.292629678, + "8757": 40.2048796065, + "8758": 40.1168746094, + "8759": 40.0286387016, + "8760": 39.9402020336, + "8761": 39.8515947598, + "8762": 39.7628471103, + "8763": 39.6739893225, + "8764": 39.5850516016, + "8765": 39.4960640772, + "8766": 39.4070567621, + "8767": 39.318059512, + "8768": 39.2290892112, + "8769": 39.1401670773, + "8770": 39.0513213693, + "8771": 38.9625806475, + "8772": 38.8739730927, + "8773": 38.785526596, + "8774": 38.697268697, + "8775": 38.6092265558, + "8776": 38.521426921, + "8777": 38.4338961018, + "8778": 38.3466557454, + "8779": 38.2597277041, + "8780": 38.1731361975, + "8781": 38.0869053897, + "8782": 38.0010588481, + "8783": 37.9156196303, + "8784": 37.8306102472, + "8785": 37.7460526548, + "8786": 37.6619682428, + "8787": 37.5783778279, + "8788": 37.4953006102, + "8789": 37.412755164, + "8790": 37.3307603856, + "8791": 37.2493347935, + "8792": 37.1684962924, + "8793": 37.0882622276, + "8794": 37.0086493818, + "8795": 36.9296739868, + "8796": 36.8513517331, + "8797": 36.7736977831, + "8798": 36.6967233974, + "8799": 36.620438088, + "8800": 36.5448545925, + "8801": 36.4699862326, + "8802": 36.3958456763, + "8803": 36.3224452039, + "8804": 36.2497966726, + "8805": 36.1779115414, + "8806": 36.1068008823, + "8807": 36.0364753947, + "8808": 35.9669460086, + "8809": 35.8982238417, + "8810": 35.8303188895, + "8811": 35.7632405299, + "8812": 35.6969978439, + "8813": 35.6315995548, + "8814": 35.567054041, + "8815": 35.5033693297, + "8816": 35.4405530899, + "8817": 35.3786126218, + "8818": 35.3175570341, + "8819": 35.2573986842, + "8820": 35.1981455422, + "8821": 35.1398035058, + "8822": 35.0823782261, + "8823": 35.0258747072, + "8824": 34.9702973531, + "8825": 34.9156499187, + "8826": 34.8619354749, + "8827": 34.8091563667, + "8828": 34.7573150228, + "8829": 34.7064156409, + "8830": 34.6564590793, + "8831": 34.6074442069, + "8832": 34.5593691261, + "8833": 34.5122308681, + "8834": 34.4660253938, + "8835": 34.4207475365, + "8836": 34.3763909565, + "8837": 34.3329480969, + "8838": 34.2904124728, + "8839": 34.2487915972, + "8840": 34.2080792021, + "8841": 34.1682617806, + "8842": 34.1293255708, + "8843": 34.0912551414, + "8844": 34.0540336696, + "8845": 34.017642887, + "8846": 33.9820631004, + "8847": 33.9472732064, + "8848": 33.9132508738, + "8849": 33.8799773699, + "8850": 33.8474290644, + "8851": 33.8155792519, + "8852": 33.7844003729, + "8853": 33.7538636444, + "8854": 33.7239392188, + "8855": 33.6945962452, + "8856": 33.6658029586, + "8857": 33.6375267718, + "8858": 33.6097343731, + "8859": 33.5824150964, + "8860": 33.5555429982, + "8861": 33.5290823043, + "8862": 33.5029980736, + "8863": 33.4772549578, + "8864": 33.4518175953, + "8865": 33.4266506794, + "8866": 33.4017190924, + "8867": 33.3769880255, + "8868": 33.3524230999, + "8869": 33.3279947381, + "8870": 33.3036718696, + "8871": 33.2794221593, + "8872": 33.2552141758, + "8873": 33.2310174546, + "8874": 33.2068026053, + "8875": 33.1825414017, + "8876": 33.1582068673, + "8877": 33.1337733521, + "8878": 33.1092166026, + "8879": 33.0845272031, + "8880": 33.0596924304, + "8881": 33.0346934382, + "8882": 33.0095123399, + "8883": 32.9841329128, + "8884": 32.9585404856, + "8885": 32.932721976, + "8886": 32.9066658862, + "8887": 32.8803622932, + "8888": 32.8538028277, + "8889": 32.8269877996, + "8890": 32.7999177375, + "8891": 32.772589637, + "8892": 32.7450010659, + "8893": 32.7171509994, + "8894": 32.689039566, + "8895": 32.6606680021, + "8896": 32.6320385544, + "8897": 32.6031543841, + "8898": 32.5740194622, + "8899": 32.5446584968, + "8900": 32.5150978282, + "8901": 32.4853519466, + "8902": 32.4554383096, + "8903": 32.4253698074, + "8904": 32.3951532862, + "8905": 32.3647947853, + "8906": 32.3343004502, + "8907": 32.3036760226, + "8908": 32.2729270055, + "8909": 32.2420584074, + "8910": 32.2110747951, + "8911": 32.1799798012, + "8912": 32.1487764245, + "8913": 32.1174667548, + "8914": 32.0860521622, + "8915": 32.0545329888, + "8916": 32.0229087793, + "8917": 31.9911779909, + "8918": 31.9593382602, + "8919": 31.9273856106, + "8920": 31.8956551425, + "8921": 31.8645909925, + "8922": 31.8343439434, + "8923": 31.8049102256, + "8924": 31.7762788408, + "8925": 31.7484393663, + "8926": 31.7213806183, + "8927": 31.6950906766, + "8928": 31.6695571282, + "8929": 31.6447664569, + "8930": 31.6207041815, + "8931": 31.5973557459, + "8932": 31.574706481, + "8933": 31.5527410116, + "8934": 31.5314437098, + "8935": 31.5107983858, + "8936": 31.4907887099, + "8937": 31.4713979071, + "8938": 31.4526092016, + "8939": 31.4344021017, + "8940": 31.4167461212, + "8941": 31.3996210481, + "8942": 31.3830113456, + "8943": 31.3669004894, + "8944": 31.3512725412, + "8945": 31.3361115776, + "8946": 31.3214022636, + "8947": 31.3071294583, + "8948": 31.2932787619, + "8949": 31.2798359742, + "8950": 31.2667869439, + "8951": 31.2541187943, + "8952": 31.2418200154, + "8953": 31.2298795584, + "8954": 31.2182874963, + "8955": 31.2070345244, + "8956": 31.1961125414, + "8957": 31.1855141433, + "8958": 31.1752332032, + "8959": 31.1652641239, + "8960": 31.1555957908, + "8961": 31.1462253437, + "8962": 31.1371543363, + "8963": 31.1283840786, + "8964": 31.1199170377, + "8965": 31.1117561663, + "8966": 31.1039055366, + "8967": 31.0963697886, + "8968": 31.0891547221, + "8969": 31.0822667352, + "8970": 31.0757130057, + "8971": 31.0695017137, + "8972": 31.063642403, + "8973": 31.0581451508, + "8974": 31.0530211425, + "8975": 31.0482820876, + "8976": 31.0439407491, + "8977": 31.0400103612, + "8978": 31.0365051401, + "8979": 31.0334397003, + "8980": 31.0308326013, + "8981": 31.0287007395, + "8982": 31.0270601586, + "8983": 31.0259271874, + "8984": 31.0253188637, + "8985": 31.0252523429, + "8986": 31.0257453309, + "8987": 31.026815486, + "8988": 31.0284808414, + "8989": 31.0307592025, + "8990": 31.0336665425, + "8991": 31.0372192167, + "8992": 31.041434764, + "8993": 31.0463301708, + "8994": 31.0519221722, + "8995": 31.0582266429, + "8996": 31.0652590082, + "8997": 31.0730335976, + "8998": 31.0815640749, + "8999": 31.0908627704, + "9000": 5.1411340687, + "9001": 5.1007386951, + "9002": 5.0601798033, + "9003": 5.0194679593, + "9004": 4.978613779, + "9005": 4.9376279266, + "9006": 4.8965211109, + "9007": 4.8553040838, + "9008": 4.8139876362, + "9009": 4.7725825957, + "9010": 4.7310998241, + "9011": 4.6895502143, + "9012": 4.647944688, + "9013": 4.6062941928, + "9014": 4.5646096997, + "9015": 4.5229022001, + "9016": 4.4811827037, + "9017": 4.4394622349, + "9018": 4.3977518309, + "9019": 4.3560625381, + "9020": 4.3144054105, + "9021": 4.27279155, + "9022": 4.2312321523, + "9023": 4.1897384682, + "9024": 4.1483217488, + "9025": 4.1069932293, + "9026": 4.0657641285, + "9027": 4.0246456455, + "9028": 3.9836489576, + "9029": 3.9427852176, + "9030": 3.9020655512, + "9031": 3.8615010564, + "9032": 3.8211028025, + "9033": 3.7808818268, + "9034": 3.7408491275, + "9035": 3.7010156588, + "9036": 3.6613923288, + "9037": 3.6219899985, + "9038": 3.5828194807, + "9039": 3.543891539, + "9040": 3.5052168863, + "9041": 3.4668062192, + "9042": 3.428670299, + "9043": 3.3908199221, + "9044": 3.3532658389, + "9045": 3.3160187283, + "9046": 3.2790891984, + "9047": 3.2424877851, + "9048": 3.2062249501, + "9049": 3.1703110792, + "9050": 3.1347564809, + "9051": 3.0995713864, + "9052": 3.0647659547, + "9053": 3.0303502697, + "9054": 2.9963343323, + "9055": 2.962728057, + "9056": 2.9295412707, + "9057": 2.8967837108, + "9058": 2.864465024, + "9059": 2.8325947641, + "9060": 2.8011823913, + "9061": 2.7702372771, + "9062": 2.7397687549, + "9063": 2.7097861148, + "9064": 2.6802985553, + "9065": 2.6513151667, + "9066": 2.6228449314, + "9067": 2.5948967223, + "9068": 2.5674793012, + "9069": 2.5406013177, + "9070": 2.514271308, + "9071": 2.4884976934, + "9072": 2.4632887859, + "9073": 2.4386527869, + "9074": 2.4145977804, + "9075": 2.3911317306, + "9076": 2.3682624804, + "9077": 2.3459977511, + "9078": 2.3243451405, + "9079": 2.3033121227, + "9080": 2.2829060469, + "9081": 2.2631341363, + "9082": 2.2440034497, + "9083": 2.2255208757, + "9084": 2.2076931642, + "9085": 2.1905269387, + "9086": 2.174028695, + "9087": 2.1582048005, + "9088": 2.1430614932, + "9089": 2.128604881, + "9090": 2.1148409408, + "9091": 2.1017755176, + "9092": 2.0894143186, + "9093": 2.0777629109, + "9094": 2.0668267254, + "9095": 2.056611058, + "9096": 2.0471210695, + "9097": 2.0383617846, + "9098": 2.0303380913, + "9099": 2.0230547399, + "9100": 2.0165163429, + "9101": 2.0107273741, + "9102": 2.0056921085, + "9103": 2.0014145986, + "9104": 1.9978987204, + "9105": 1.9951482065, + "9106": 1.9931666486, + "9107": 1.9919574961, + "9108": 1.9915240551, + "9109": 1.9918694875, + "9110": 1.9929968095, + "9111": 1.9949088914, + "9112": 1.9975247302, + "9113": 2.0000373169, + "9114": 2.0026287834, + "9115": 2.0052080917, + "9116": 2.0078207877, + "9117": 2.0104441244, + "9118": 2.0130895006, + "9119": 2.0157512416, + "9120": 2.0184322088, + "9121": 2.021130995, + "9122": 2.0238482875, + "9123": 2.0265836342, + "9124": 2.0293370742, + "9125": 2.0321083723, + "9126": 2.0348974277, + "9127": 2.0377040726, + "9128": 2.0405281724, + "9129": 2.0433695757, + "9130": 2.0462281397, + "9131": 2.0491037171, + "9132": 2.0519961582, + "9133": 2.0549053016, + "9134": 2.0578309796, + "9135": 2.060773023, + "9136": 2.0637312632, + "9137": 2.0667055316, + "9138": 2.0696956599, + "9139": 2.07270148, + "9140": 2.0757228243, + "9141": 2.0787595252, + "9142": 2.0818114063, + "9143": 2.0848782677, + "9144": 2.0879598916, + "9145": 2.0910560573, + "9146": 2.0941665452, + "9147": 2.0972911361, + "9148": 2.1004296115, + "9149": 2.1035817534, + "9150": 2.1067473444, + "9151": 2.1099261679, + "9152": 2.1131180064, + "9153": 2.1163226383, + "9154": 2.1195398391, + "9155": 2.1227693841, + "9156": 2.1260110491, + "9157": 2.129264611, + "9158": 2.1325298469, + "9159": 2.1358065348, + "9160": 2.1390944534, + "9161": 2.142393382, + "9162": 2.145703102, + "9163": 2.1490234032, + "9164": 2.152354083, + "9165": 2.1556949409, + "9166": 2.1590457769, + "9167": 2.1624063915, + "9168": 2.1657765861, + "9169": 2.1691561622, + "9170": 2.1725449223, + "9171": 2.1759426693, + "9172": 2.1793492067, + "9173": 2.1827643406, + "9174": 2.1861878794, + "9175": 2.1896196323, + "9176": 2.1930594092, + "9177": 2.1965070202, + "9178": 2.199962276, + "9179": 2.2034249877, + "9180": 2.2068949667, + "9181": 2.210372025, + "9182": 2.2138559756, + "9183": 2.2173466511, + "9184": 2.2208439058, + "9185": 2.224347599, + "9186": 2.22785759, + "9187": 2.2313737381, + "9188": 2.2348959029, + "9189": 2.2384239442, + "9190": 2.241957722, + "9191": 2.2454970965, + "9192": 2.249041928, + "9193": 2.2525920823, + "9194": 2.2561474317, + "9195": 2.2597078502, + "9196": 2.2632732122, + "9197": 2.266843392, + "9198": 2.2704182641, + "9199": 2.2739977031, + "9200": 2.2775815839, + "9201": 2.2811697814, + "9202": 2.2847621707, + "9203": 2.2883586431, + "9204": 2.2919591108, + "9205": 2.2955634935, + "9206": 2.2991717112, + "9207": 2.302783684, + "9208": 2.3063993322, + "9209": 2.3100185758, + "9210": 2.3136413353, + "9211": 2.3172675311, + "9212": 2.3208970835, + "9213": 2.3245299164, + "9214": 2.3281659579, + "9215": 2.3318051379, + "9216": 2.3354473868, + "9217": 2.3390926353, + "9218": 2.3427408139, + "9219": 2.3463918535, + "9220": 2.350045685, + "9221": 2.3537022397, + "9222": 2.3573614488, + "9223": 2.3610232543, + "9224": 2.3646876144, + "9225": 2.3683544962, + "9226": 2.3720238678, + "9227": 2.3756956973, + "9228": 2.3793699529, + "9229": 2.3830466026, + "9230": 2.386725615, + "9231": 2.3904069585, + "9232": 2.3940906015, + "9233": 2.3977765148, + "9234": 2.401464673, + "9235": 2.4051550532, + "9236": 2.4088476326, + "9237": 2.4125423888, + "9238": 2.4162392992, + "9239": 2.4199383415, + "9240": 2.4236394933, + "9241": 2.4273427324, + "9242": 2.4310480367, + "9243": 2.4347553858, + "9244": 2.4384647633, + "9245": 2.4421761556, + "9246": 2.4458895492, + "9247": 2.4496049307, + "9248": 2.4533222866, + "9249": 2.4570416035, + "9250": 2.4607628678, + "9251": 2.4644860658, + "9252": 2.4682111839, + "9253": 2.471938209, + "9254": 2.4756671289, + "9255": 2.4793979326, + "9256": 2.4831306091, + "9257": 2.4868651472, + "9258": 2.4906015356, + "9259": 2.4943397629, + "9260": 2.4980798177, + "9261": 2.5018216881, + "9262": 2.5055653624, + "9263": 2.5093108278, + "9264": 2.5130580681, + "9265": 2.5168070645, + "9266": 2.5205577974, + "9267": 2.5243102471, + "9268": 2.5280643937, + "9269": 2.5318202171, + "9270": 2.5355776968, + "9271": 2.5393368124, + "9272": 2.5430975431, + "9273": 2.5468598678, + "9274": 2.550623764, + "9275": 2.5543892076, + "9276": 2.5581561746, + "9277": 2.5619246402, + "9278": 2.56569458, + "9279": 2.5694659691, + "9280": 2.5732387826, + "9281": 2.5770129952, + "9282": 2.5807885817, + "9283": 2.5845655155, + "9284": 2.5883437593, + "9285": 2.5921232654, + "9286": 2.5959039834, + "9287": 2.5996858631, + "9288": 2.603468854, + "9289": 2.6072529056, + "9290": 2.6110379673, + "9291": 2.6148239885, + "9292": 2.6186109185, + "9293": 2.6223987062, + "9294": 2.6261872962, + "9295": 2.6299766277, + "9296": 2.6337666389, + "9297": 2.6375572679, + "9298": 2.641348453, + "9299": 2.6451401324, + "9300": 2.6489322443, + "9301": 2.6527247272, + "9302": 2.6565175195, + "9303": 2.6603105597, + "9304": 2.6641037769, + "9305": 2.6678970899, + "9306": 2.6716904149, + "9307": 2.6754836693, + "9308": 2.6792767695, + "9309": 2.6830696326, + "9310": 2.6868621761, + "9311": 2.690654318, + "9312": 2.6944459763, + "9313": 2.69823707, + "9314": 2.7020275156, + "9315": 2.7058172271, + "9316": 2.7096061175, + "9317": 2.7133941007, + "9318": 2.7171810908, + "9319": 2.7209670027, + "9320": 2.7247517518, + "9321": 2.7285352235, + "9322": 2.732317366, + "9323": 2.7360980962, + "9324": 2.7398773148, + "9325": 2.7436549295, + "9326": 2.747430856, + "9327": 2.7512050035, + "9328": 2.7549772886, + "9329": 2.7587476232, + "9330": 2.7625159259, + "9331": 2.7662821113, + "9332": 2.7700461001, + "9333": 2.7738078091, + "9334": 2.7775671641, + "9335": 2.7813240918, + "9336": 2.7850785269, + "9337": 2.7888304013, + "9338": 2.7925796523, + "9339": 2.7963262143, + "9340": 2.8000700265, + "9341": 2.8038110258, + "9342": 2.8075491533, + "9343": 2.8112843484, + "9344": 2.815016558, + "9345": 2.8187457345, + "9346": 2.8224718385, + "9347": 2.8261948291, + "9348": 2.8299146691, + "9349": 2.8336313197, + "9350": 2.8373447455, + "9351": 2.8410549093, + "9352": 2.8447617772, + "9353": 2.848465314, + "9354": 2.8521654888, + "9355": 2.8558622736, + "9356": 2.8595556452, + "9357": 2.8632455799, + "9358": 2.8669320563, + "9359": 2.8706150519, + "9360": 2.8742945462, + "9361": 2.8779705179, + "9362": 2.8816429474, + "9363": 2.8853118144, + "9364": 2.8889771027, + "9365": 2.8926388026, + "9366": 2.8962969106, + "9367": 2.8999514238, + "9368": 2.9036023399, + "9369": 2.907249656, + "9370": 2.9108933697, + "9371": 2.9145334784, + "9372": 2.9181699798, + "9373": 2.9218028711, + "9374": 2.9254321513, + "9375": 2.929057823, + "9376": 2.9326798926, + "9377": 2.9362983666, + "9378": 2.9399132514, + "9379": 2.9435245532, + "9380": 2.947132278, + "9381": 2.9507364314, + "9382": 2.9543370188, + "9383": 2.9579340452, + "9384": 2.9615275167, + "9385": 2.9651174431, + "9386": 2.9687038384, + "9387": 2.9722867168, + "9388": 2.9758660921, + "9389": 2.9794419773, + "9390": 2.9830143855, + "9391": 2.9865833287, + "9392": 2.9901488191, + "9393": 2.993710868, + "9394": 2.9972694869, + "9395": 3.0008246896, + "9396": 3.0043764928, + "9397": 3.0079249129, + "9398": 3.0114699662, + "9399": 3.0150116681, + "9400": 3.0185500339, + "9401": 3.0220850784, + "9402": 3.0256168158, + "9403": 3.0291452601, + "9404": 3.0326704249, + "9405": 3.0361923256, + "9406": 3.0397109791, + "9407": 3.0432264024, + "9408": 3.0467386125, + "9409": 3.0502476254, + "9410": 3.0537534573, + "9411": 3.0572561239, + "9412": 3.0607556406, + "9413": 3.0642520225, + "9414": 3.0677452847, + "9415": 3.0712354431, + "9416": 3.074722515, + "9417": 3.0782065179, + "9418": 3.0816874132, + "9419": 3.0851652854, + "9420": 3.088639556, + "9421": 3.0921109944, + "9422": 3.095573848, + "9423": 3.0990145378, + "9424": 3.1024179092, + "9425": 3.1057696484, + "9426": 3.1090563047, + "9427": 3.1122652718, + "9428": 3.1153847749, + "9429": 3.1184038552, + "9430": 3.1213123529, + "9431": 3.1241008892, + "9432": 3.1267608472, + "9433": 3.1292843518, + "9434": 3.1316642497, + "9435": 3.1338940875, + "9436": 3.1359680907, + "9437": 3.1378811411, + "9438": 3.1396287551, + "9439": 3.1412070612, + "9440": 3.1426127777, + "9441": 3.1438431901, + "9442": 3.1448961293, + "9443": 3.1457699492, + "9444": 3.1464635045, + "9445": 3.1469761288, + "9446": 3.1473076117, + "9447": 3.1474581789, + "9448": 3.1474284722, + "9449": 3.147219529, + "9450": 3.1468327623, + "9451": 3.1462699409, + "9452": 3.1455331703, + "9453": 3.1446248735, + "9454": 3.1435477728, + "9455": 3.1423048709, + "9456": 3.1408994324, + "9457": 3.1393349674, + "9458": 3.1376152144, + "9459": 3.1357441239, + "9460": 3.1337258424, + "9461": 3.1315646956, + "9462": 3.1292651735, + "9463": 3.1268319141, + "9464": 3.1242696889, + "9465": 3.1215833874, + "9466": 3.1187780015, + "9467": 3.1158586119, + "9468": 3.1128303747, + "9469": 3.1096985078, + "9470": 3.1064682774, + "9471": 3.1031449848, + "9472": 3.0997339536, + "9473": 3.096240517, + "9474": 3.0926700055, + "9475": 3.0890277347, + "9476": 3.0853189928, + "9477": 3.08154903, + "9478": 3.0777230479, + "9479": 3.0738461898, + "9480": 3.0699235303, + "9481": 3.0659600656, + "9482": 3.0619607052, + "9483": 3.0579302627, + "9484": 3.0538734481, + "9485": 3.0497948602, + "9486": 3.0456989792, + "9487": 3.0415901608, + "9488": 3.0374726307, + "9489": 3.0333504801, + "9490": 3.0292276613, + "9491": 3.0251079839, + "9492": 3.020995112, + "9493": 3.016892562, + "9494": 3.0128037005, + "9495": 3.008731744, + "9496": 3.0046797573, + "9497": 3.000650655, + "9498": 2.9966472018, + "9499": 2.9926720154, + "9500": 2.9887275682, + "9501": 2.9848161901, + "9502": 2.9809400724, + "9503": 2.9771012709, + "9504": 2.9733017111, + "9505": 2.9695431925, + "9506": 2.9658273939, + "9507": 2.9621558787, + "9508": 2.9585301013, + "9509": 2.9549514128, + "9510": 2.9514210675, + "9511": 2.9479402292, + "9512": 2.9445099778, + "9513": 2.9411313159, + "9514": 2.9378051753, + "9515": 2.9345324233, + "9516": 2.9313138694, + "9517": 2.928150271, + "9518": 2.9250423401, + "9519": 2.9219907486, + "9520": 2.9189961342, + "9521": 2.9160591052, + "9522": 2.9131802457, + "9523": 2.9103601199, + "9524": 2.9075992759, + "9525": 2.9048982497, + "9526": 2.9022575683, + "9527": 2.8996777522, + "9528": 2.8971593178, + "9529": 2.8947027789, + "9530": 2.892308648, + "9531": 2.889977437, + "9532": 2.8877096571, + "9533": 2.8855058192, + "9534": 2.8833664327, + "9535": 2.8812920043, + "9536": 2.8792830369, + "9537": 2.8773400276, + "9538": 2.8754634648, + "9539": 2.873653826, + "9540": 2.871911574, + "9541": 2.8702371541, + "9542": 2.8686309902, + "9543": 2.8670934808, + "9544": 2.8656249954, + "9545": 2.8642258699, + "9546": 2.8628964025, + "9547": 2.8616368492, + "9548": 2.8604474196, + "9549": 2.8593282724, + "9550": 2.8582795115, + "9551": 2.8573011814, + "9552": 2.8563932636, + "9553": 2.8555556727, + "9554": 2.8547882526, + "9555": 2.8540907738, + "9556": 2.8534629304, + "9557": 2.8529043381, + "9558": 2.8524145315, + "9559": 2.8519929623, + "9560": 2.8516389976, + "9561": 2.8513519192, + "9562": 2.8511309235, + "9563": 2.8509751212, + "9564": 2.8508835386, + "9565": 2.8508551183, + "9566": 2.8508887216, + "9567": 2.8509831306, + "9568": 2.8511370517, + "9569": 2.8513491179, + "9570": 2.851617894, + "9571": 2.8519418802, + "9572": 2.8523195177, + "9573": 2.852749194, + "9574": 2.8532292488, + "9575": 2.8537579807, + "9576": 2.8543336536, + "9577": 2.8549545047, + "9578": 2.8556187513, + "9579": 2.8563245987, + "9580": 2.8570702478, + "9581": 2.8578539035, + "9582": 2.8586737819, + "9583": 2.8595281194, + "9584": 2.8604151803, + "9585": 2.861333265, + "9586": 2.8622807181, + "9587": 2.8632559362, + "9588": 2.8642573754, + "9589": 2.8652835586, + "9590": 2.8663330823, + "9591": 2.8674046231, + "9592": 2.8684969438, + "9593": 2.869608899, + "9594": 2.8707394399, + "9595": 2.8718876193, + "9596": 2.8730525947, + "9597": 2.8742336324, + "9598": 2.8754301091, + "9599": 2.8766415146, + "9600": 2.8778674521, + "9601": 2.8791076387, + "9602": 2.8803619053, + "9603": 2.8816301952, + "9604": 2.8829125625, + "9605": 2.884209169, + "9606": 2.8855202812, + "9607": 2.8868462662, + "9608": 2.8881875868, + "9609": 2.889544796, + "9610": 2.8909185311, + "9611": 2.8923095067, + "9612": 2.8937185075, + "9613": 2.8951463806, + "9614": 2.8965940269, + "9615": 2.8980623923, + "9616": 2.8995524589, + "9617": 2.9010652348, + "9618": 2.9026017448, + "9619": 2.9041630199, + "9620": 2.905750087, + "9621": 2.9073639591, + "9622": 2.9090056238, + "9623": 2.9106760337, + "9624": 2.9123760954, + "9625": 2.9141066596, + "9626": 2.9158685106, + "9627": 2.9176623565, + "9628": 2.9194888197, + "9629": 2.9213484278, + "9630": 2.9232416043, + "9631": 2.9251686609, + "9632": 2.927129789, + "9633": 2.9291250531, + "9634": 2.9311543839, + "9635": 2.9332175723, + "9636": 2.9353142644, + "9637": 2.9374439566, + "9638": 2.9396059927, + "9639": 2.9417995602, + "9640": 2.9440236889, + "9641": 2.9462772497, + "9642": 2.9485589544, + "9643": 2.9508673562, + "9644": 2.9532008516, + "9645": 2.9555576825, + "9646": 2.9579359402, + "9647": 2.9603335693, + "9648": 2.9627483728, + "9649": 2.965178019, + "9650": 2.9676200475, + "9651": 2.9700718777, + "9652": 2.972530817, + "9653": 2.9749940702, + "9654": 2.9774587497, + "9655": 2.9799218858, + "9656": 2.9823804383, + "9657": 2.9848313078, + "9658": 2.9872713482, + "9659": 2.9896973794, + "9660": 2.9921062005, + "9661": 2.9944946031, + "9662": 2.9968593851, + "9663": 2.9991973641, + "9664": 3.0015053911, + "9665": 3.0037803645, + "9666": 3.0060192437, + "9667": 3.0082190623, + "9668": 3.010376942, + "9669": 3.0124901052, + "9670": 3.0145558873, + "9671": 3.016571749, + "9672": 3.0185352881, + "9673": 3.02044425, + "9674": 3.0222965386, + "9675": 3.0240902262, + "9676": 3.0258235618, + "9677": 3.0274949801, + "9678": 3.0291031085, + "9679": 3.0306467739, + "9680": 3.0321250082, + "9681": 3.0335370535, + "9682": 3.0348823656, + "9683": 3.0361606171, + "9684": 3.0373716996, + "9685": 3.0385157242, + "9686": 3.0395930222, + "9687": 3.0406041438, + "9688": 3.0415498563, + "9689": 3.0424311417, + "9690": 3.0432491925, + "9691": 3.0440054076, + "9692": 3.0447013862, + "9693": 3.0453389222, + "9694": 3.0459199967, + "9695": 3.0464467704, + "9696": 3.0469215746, + "9697": 3.0473469024, + "9698": 3.0477253985, + "9699": 3.0480598488, + "9700": 3.0483531693, + "9701": 3.0486083944, + "9702": 3.0488286649, + "9703": 3.0490172157, + "9704": 3.0493056451, + "9705": 3.0508587335, + "9706": 3.0534040214, + "9707": 3.057081398, + "9708": 3.0618237822, + "9709": 3.067666787, + "9710": 3.0745938922, + "9711": 3.0826138607, + "9712": 3.0917220314, + "9713": 3.101919673, + "9714": 3.1132043049, + "9715": 3.1255745339, + "9716": 3.1390276317, + "9717": 3.1535607403, + "9718": 3.1691702624, + "9719": 3.1858521587, + "9720": 3.2036017906, + "9721": 3.2224139889, + "9722": 3.2422830098, + "9723": 3.2632025456, + "9724": 3.285165708, + "9725": 3.3081650248, + "9726": 3.3321924296, + "9727": 3.3572392548, + "9728": 3.3832962229, + "9729": 3.4103534392, + "9730": 3.4384003839, + "9731": 3.4674259051, + "9732": 3.4974182121, + "9733": 3.5283648691, + "9734": 3.5602527899, + "9735": 3.593068233, + "9736": 3.6267967981, + "9737": 3.6614234228, + "9738": 3.696932381, + "9739": 3.7333072821, + "9740": 3.7705310714, + "9741": 3.8085860327, + "9742": 3.8474537907, + "9743": 3.8871153162, + "9744": 3.9275509318, + "9745": 3.9687403202, + "9746": 4.0106625323, + "9747": 4.0532959991, + "9748": 4.096618543, + "9749": 4.1406073923, + "9750": 4.1852391962, + "9751": 4.2304900429, + "9752": 4.2763354774, + "9753": 4.3227505222, + "9754": 4.3697096989, + "9755": 4.4171870511, + "9756": 4.4651561692, + "9757": 4.5135902158, + "9758": 4.5624619525, + "9759": 4.6117437676, + "9760": 4.6614077056, + "9761": 4.7114254978, + "9762": 4.7617685933, + "9763": 4.8124081902, + "9764": 4.8633152684, + "9765": 4.9144606222, + "9766": 4.9658148936, + "9767": 5.0173486057, + "9768": 5.0690321954, + "9769": 5.1208360473, + "9770": 5.1727305271, + "9771": 5.2246860155, + "9772": 5.2766729412, + "9773": 5.3286618134, + "9774": 5.3806232536, + "9775": 5.4325280269, + "9776": 5.4843470727, + "9777": 5.536051534, + "9778": 5.5876127857, + "9779": 5.6390024624, + "9780": 5.6901924845, + "9781": 5.7411550836, + "9782": 5.7918628267, + "9783": 5.8422886383, + "9784": 5.8924058216, + "9785": 5.9421880786, + "9786": 5.9916095277, + "9787": 6.0406447208, + "9788": 6.0892686584, + "9789": 6.1374568032, + "9790": 6.1851850924, + "9791": 6.2324299488, + "9792": 6.2791682897, + "9793": 6.3253775354, + "9794": 6.3710356154, + "9795": 6.4161209743, + "9796": 6.4606125758, + "9797": 6.5044899062, + "9798": 6.5477329761, + "9799": 6.5903223218, + "9800": 6.6322390063, + "9801": 6.6734646197, + "9802": 6.7139812788, + "9803": 6.7537716269, + "9804": 6.7928188334, + "9805": 6.8311065928, + "9806": 6.8686191251, + "9807": 6.9053411755, + "9808": 6.9412580156, + "9809": 6.9763554449, + "9810": 7.0106197935, + "9811": 7.0440379253, + "9812": 7.0765972435, + "9813": 7.1082856965, + "9814": 7.1390917859, + "9815": 7.1690045762, + "9816": 7.198013706, + "9817": 7.2261094013, + "9818": 7.2532824908, + "9819": 7.2795244231, + "9820": 7.3048272861, + "9821": 7.3291838271, + "9822": 7.352587476, + "9823": 7.3750323696, + "9824": 7.3965133779, + "9825": 7.4170261324, + "9826": 7.4365670547, + "9827": 7.4551333874, + "9828": 7.4727232254, + "9829": 7.4893355483, + "9830": 7.5049702528, + "9831": 7.519628185, + "9832": 7.5333111726, + "9833": 7.5460220566, + "9834": 7.5577647219, + "9835": 7.5685441266, + "9836": 7.5783663297, + "9837": 7.5872385162, + "9838": 7.59516902, + "9839": 7.6021673455, + "9840": 7.6082441841, + "9841": 7.6134114251, + "9842": 7.6176821647, + "9843": 7.6210707093, + "9844": 7.6235925755, + "9845": 7.6252644846, + "9846": 7.6261043511, + "9847": 7.6261312673, + "9848": 7.625365481, + "9849": 7.6238283683, + "9850": 7.6215424008, + "9851": 7.6185311055, + "9852": 7.6148190203, + "9853": 7.6104316434, + "9854": 7.6053953768, + "9855": 7.5997374657, + "9856": 7.5934859312, + "9857": 7.5866694997, + "9858": 7.5793175271, + "9859": 7.571459921, + "9860": 7.5631270579, + "9861": 7.5543496948, + "9862": 7.5451588788, + "9863": 7.535585856, + "9864": 7.5256619778, + "9865": 7.5154186072, + "9866": 7.5048870237, + "9867": 7.494098329, + "9868": 7.483083353, + "9869": 7.471872562, + "9870": 7.4604959677, + "9871": 7.4489830392, + "9872": 7.4373626177, + "9873": 7.4256628347, + "9874": 7.4139110356, + "9875": 7.4021337064, + "9876": 7.3903564069, + "9877": 7.3786037086, + "9878": 7.3668991392, + "9879": 7.3552651346, + "9880": 7.3437229973, + "9881": 7.3322928592, + "9882": 7.3209936526, + "9883": 7.3098430897, + "9884": 7.2988576483, + "9885": 7.2880525667, + "9886": 7.2774418454, + "9887": 7.2670382565, + "9888": 7.2568533607, + "9889": 7.2468975325, + "9890": 7.2371799925, + "9891": 7.2277088447, + "9892": 7.2184911215, + "9893": 7.2095328346, + "9894": 7.2008390319, + "9895": 7.1924138597, + "9896": 7.1842606297, + "9897": 7.1763818899, + "9898": 7.1687794989, + "9899": 7.1614547056, + "9900": 7.1544082297, + "9901": 7.1476403417, + "9902": 7.1411509421, + "9903": 7.1349396422, + "9904": 7.1290058412, + "9905": 7.1233488032, + "9906": 7.1179677306, + "9907": 7.1128618342, + "9908": 7.1080303985, + "9909": 7.1034728413, + "9910": 7.0991887671, + "9911": 7.0951780129, + "9912": 7.0914406868, + "9913": 7.0879771973, + "9914": 7.084788274, + "9915": 7.0818749785, + "9916": 7.0792387048, + "9917": 7.0768811702, + "9918": 7.0748043945, + "9919": 7.0730106691, + "9920": 7.071164369, + "9921": 7.0688196527, + "9922": 7.0658196793, + "9923": 7.0621596374, + "9924": 7.057841544, + "9925": 7.0528662448, + "9926": 7.0472350114, + "9927": 7.040949222, + "9928": 7.0340104248, + "9929": 7.0264203248, + "9930": 7.0181807863, + "9931": 7.0092938315, + "9932": 6.9997616408, + "9933": 6.9895865519, + "9934": 6.9787710595, + "9935": 6.9673178152, + "9936": 6.9552296264, + "9937": 6.942509456, + "9938": 6.9291604219, + "9939": 6.9151857961, + "9940": 6.9005890027, + "9941": 6.8853736176, + "9942": 6.8695433688, + "9943": 6.8531021366, + "9944": 6.8360539527, + "9945": 6.8184029994, + "9946": 6.8001536089, + "9947": 6.7813102627, + "9948": 6.7618775907, + "9949": 6.7418603705, + "9950": 6.7212635262, + "9951": 6.7000921281, + "9952": 6.6783513914, + "9953": 6.6560466759, + "9954": 6.6331834845, + "9955": 6.6097674624, + "9956": 6.5858043966, + "9957": 6.5613002142, + "9958": 6.5362609818, + "9959": 6.5106929042, + "9960": 6.4846023228, + "9961": 6.4579957142, + "9962": 6.4308796906, + "9963": 6.403260998, + "9964": 6.3751465153, + "9965": 6.3465432528, + "9966": 6.3174583508, + "9967": 6.2878990781, + "9968": 6.2578728305, + "9969": 6.2273871298, + "9970": 6.1964496212, + "9971": 6.1650680728, + "9972": 6.1332503734, + "9973": 6.101004531, + "9974": 6.0683386711, + "9975": 6.0352610351, + "9976": 6.0017799781, + "9977": 5.9679039677, + "9978": 5.9336415817, + "9979": 5.8990015061, + "9980": 5.8639925339, + "9981": 5.8286235627, + "9982": 5.7929035926, + "9983": 5.7568417242, + "9984": 5.7204471559, + "9985": 5.6837291825, + "9986": 5.6466971925, + "9987": 5.6093606662, + "9988": 5.5717291732, + "9989": 5.5338123704, + "9990": 5.495619999, + "9991": 5.4571618828, + "9992": 5.4184479253, + "9993": 5.3794881076, + "9994": 5.3402924859, + "9995": 5.3008711893, + "9996": 5.2612344167, + "9997": 5.2213924347, + "9998": 5.1813555746, + "9999": 5.1411342303, + "10000": 0.6392115256, + "10001": 0.6419361012, + "10002": 0.6449744144, + "10003": 0.6483320514, + "10004": 0.6520143961, + "10005": 0.6560265638, + "10006": 0.6603733915, + "10007": 0.6650592227, + "10008": 0.6700879419, + "10009": 0.6754627645, + "10010": 0.6811863035, + "10011": 0.6872603577, + "10012": 0.6936860148, + "10013": 0.7004634302, + "10014": 0.7075919735, + "10015": 0.7150699888, + "10016": 0.7228949916, + "10017": 0.731063403, + "10018": 0.7395708034, + "10019": 0.7484116316, + "10020": 0.7575795056, + "10021": 0.7670672942, + "10022": 0.7768679525, + "10023": 0.786973691, + "10024": 0.7973759087, + "10025": 0.808064593, + "10026": 0.8190289637, + "10027": 0.8302569068, + "10028": 0.8417357254, + "10029": 0.8534514448, + "10030": 0.8653897104, + "10031": 0.877534951, + "10032": 0.8898714701, + "10033": 0.9023724437, + "10034": 0.91497488, + "10035": 0.9275986813, + "10036": 0.9401721199, + "10037": 0.9526338223, + "10038": 0.9649304545, + "10039": 0.9770156153, + "10040": 0.9888488133, + "10041": 1.0003955481, + "10042": 1.0116286351, + "10043": 1.0225267464, + "10044": 1.0330717752, + "10045": 1.0432479603, + "10046": 1.0530417924, + "10047": 1.0624418896, + "10048": 1.0714388892, + "10049": 1.080025358, + "10050": 1.0881957091, + "10051": 1.0959461729, + "10052": 1.1032748976, + "10053": 1.1101818157, + "10054": 1.1166683719, + "10055": 1.1227373911, + "10056": 1.1283930095, + "10057": 1.133640595, + "10058": 1.1384866647, + "10059": 1.1429387985, + "10060": 1.1470055501, + "10061": 1.1506967483, + "10062": 1.1540262211, + "10063": 1.1570111954, + "10064": 1.1596693186, + "10065": 1.1620177426, + "10066": 1.1640732571, + "10067": 1.1658523248, + "10068": 1.1673710952, + "10069": 1.1686454161, + "10070": 1.1696908352, + "10071": 1.170522608, + "10072": 1.1711560709, + "10073": 1.171606601, + "10074": 1.171889227, + "10075": 1.1720185015, + "10076": 1.1720085165, + "10077": 1.1718729047, + "10078": 1.1716248389, + "10079": 1.1712770305, + "10080": 1.1708417281, + "10081": 1.1703307156, + "10082": 1.1697542819, + "10083": 1.1691212319, + "10084": 1.1684399257, + "10085": 1.1677186471, + "10086": 1.1669655297, + "10087": 1.1661884982, + "10088": 1.1653952248, + "10089": 1.1645930911, + "10090": 1.1637891579, + "10091": 1.1629901407, + "10092": 1.1622022336, + "10093": 1.1614310795, + "10094": 1.1606819186, + "10095": 1.1599596543, + "10096": 1.1592688419, + "10097": 1.1586136756, + "10098": 1.1579979802, + "10099": 1.157425206, + "10100": 1.1568984271, + "10101": 1.156420342, + "10102": 1.1559917278, + "10103": 1.1556110928, + "10104": 1.155276306, + "10105": 1.1549855587, + "10106": 1.154737364, + "10107": 1.1545304283, + "10108": 1.1543635668, + "10109": 1.1542356346, + "10110": 1.1541454742, + "10111": 1.1540918769, + "10112": 1.1540755862, + "10113": 1.1541182823, + "10114": 1.1542115703, + "10115": 1.1543553521, + "10116": 1.1545455379, + "10117": 1.1547801603, + "10118": 1.1550562704, + "10119": 1.1553714614, + "10120": 1.1557230882, + "10121": 1.1561086476, + "10122": 1.1565250865, + "10123": 1.1569686188, + "10124": 1.1574352925, + "10125": 1.1579215565, + "10126": 1.1584242838, + "10127": 1.158940686, + "10128": 1.1594682506, + "10129": 1.160004696, + "10130": 1.1605479358, + "10131": 1.1610960531, + "10132": 1.1616472199, + "10133": 1.1621996301, + "10134": 1.16275157, + "10135": 1.1633015023, + "10136": 1.1638480708, + "10137": 1.1643900834, + "10138": 1.1649265008, + "10139": 1.1654564284, + "10140": 1.1659791099, + "10141": 1.1664939224, + "10142": 1.1670003981, + "10143": 1.167498278, + "10144": 1.1679875277, + "10145": 1.1684683088, + "10146": 1.1689409475, + "10147": 1.1694059096, + "10148": 1.1698637798, + "10149": 1.1703152448, + "10150": 1.1707610786, + "10151": 1.1712021306, + "10152": 1.1716393194, + "10153": 1.1720736352, + "10154": 1.1725061371, + "10155": 1.1729379399, + "10156": 1.1733702014, + "10157": 1.1738041112, + "10158": 1.1742408803, + "10159": 1.1746817315, + "10160": 1.1751278917, + "10161": 1.1755805826, + "10162": 1.1760410072, + "10163": 1.1765103131, + "10164": 1.1769895766, + "10165": 1.1774798123, + "10166": 1.1779819791, + "10167": 1.1784969811, + "10168": 1.1790256682, + "10169": 1.1795688341, + "10170": 1.1801272146, + "10171": 1.1807014845, + "10172": 1.1812922537, + "10173": 1.1819000559, + "10174": 1.1825253425, + "10175": 1.1831684827, + "10176": 1.1838297645, + "10177": 1.1845093937, + "10178": 1.1852074936, + "10179": 1.1859241046, + "10180": 1.1866591842, + "10181": 1.187412608, + "10182": 1.1881841638, + "10183": 1.1889733593, + "10184": 1.1897793884, + "10185": 1.1906012842, + "10186": 1.1914379932, + "10187": 1.192288395, + "10188": 1.1931513212, + "10189": 1.1940255721, + "10190": 1.1949099295, + "10191": 1.1958031683, + "10192": 1.1967040655, + "10193": 1.1976113535, + "10194": 1.1985237116, + "10195": 1.1994398127, + "10196": 1.2003583518, + "10197": 1.2012780565, + "10198": 1.2021976964, + "10199": 1.2031160905, + "10200": 1.2040321146, + "10201": 1.2049447057, + "10202": 1.2058528677, + "10203": 1.2067555236, + "10204": 1.2076514551, + "10205": 1.2085394072, + "10206": 1.2094181668, + "10207": 1.2102865907, + "10208": 1.211143623, + "10209": 1.2119883095, + "10210": 1.2128198075, + "10211": 1.2136373917, + "10212": 1.2144404573, + "10213": 1.2152285025, + "10214": 1.2160011139, + "10215": 1.2167579711, + "10216": 1.2174988543, + "10217": 1.2182236444, + "10218": 1.2189323218, + "10219": 1.2196249631, + "10220": 1.2203017363, + "10221": 1.2209628956, + "10222": 1.2216087744, + "10223": 1.2222396375, + "10224": 1.222855579, + "10225": 1.2234566135, + "10226": 1.224042775, + "10227": 1.2246141429, + "10228": 1.2251708467, + "10229": 1.2257130695, + "10230": 1.2262410471, + "10231": 1.2267550654, + "10232": 1.227255455, + "10233": 1.2277425563, + "10234": 1.2282166852, + "10235": 1.228678143, + "10236": 1.2291272335, + "10237": 1.2295642627, + "10238": 1.2299895318, + "10239": 1.2304033307, + "10240": 1.2308059297, + "10241": 1.231197572, + "10242": 1.231578465, + "10243": 1.2319486934, + "10244": 1.2323081244, + "10245": 1.2326564683, + "10246": 1.2329933733, + "10247": 1.2333184439, + "10248": 1.2336312326, + "10249": 1.2339312343, + "10250": 1.2342178809, + "10251": 1.2344905357, + "10252": 1.2347484891, + "10253": 1.2349909317, + "10254": 1.2352169169, + "10255": 1.2354253758, + "10256": 1.2356151527, + "10257": 1.2357850133, + "10258": 1.2359336435, + "10259": 1.2360596495, + "10260": 1.2361615577, + "10261": 1.236237817, + "10262": 1.2362867998, + "10263": 1.2363067662, + "10264": 1.2362957821, + "10265": 1.2362517719, + "10266": 1.2361726252, + "10267": 1.2360562229, + "10268": 1.2359004298, + "10269": 1.2357030936, + "10270": 1.2354620444, + "10271": 1.2351750967, + "10272": 1.2348400524, + "10273": 1.2344546947, + "10274": 1.2340167543, + "10275": 1.2335239308, + "10276": 1.2329739419, + "10277": 1.2323645399, + "10278": 1.2316935128, + "10279": 1.2309586883, + "10280": 1.2301579372, + "10281": 1.2292891782, + "10282": 1.228350382, + "10283": 1.2273395531, + "10284": 1.2262545709, + "10285": 1.2250932535, + "10286": 1.2238535525, + "10287": 1.2225335939, + "10288": 1.2211316489, + "10289": 1.2196461157, + "10290": 1.2180755053, + "10291": 1.2164184308, + "10292": 1.2146735993, + "10293": 1.2128398038, + "10294": 1.2109158366, + "10295": 1.2089005069, + "10296": 1.2067927309, + "10297": 1.2045915513, + "10298": 1.2022961221, + "10299": 1.1999056983, + "10300": 1.1974196294, + "10301": 1.1948373537, + "10302": 1.1921583944, + "10303": 1.1893823569, + "10304": 1.1863902108, + "10305": 1.1831454018, + "10306": 1.1796733477, + "10307": 1.1759736991, + "10308": 1.1720108107, + "10309": 1.1678291278, + "10310": 1.163405117, + "10311": 1.1587573084, + "10312": 1.1538760753, + "10313": 1.1487842784, + "10314": 1.1434682583, + "10315": 1.1379510277, + "10316": 1.1322208924, + "10317": 1.1263006823, + "10318": 1.1201798182, + "10319": 1.1138808506, + "10320": 1.1073944075, + "10321": 1.1007427989, + "10322": 1.0939179245, + "10323": 1.0869418542, + "10324": 1.0798085608, + "10325": 1.072541613, + "10326": 1.0651375174, + "10327": 1.0576195709, + "10328": 1.0499850789, + "10329": 1.0422565386, + "10330": 1.0344320828, + "10331": 1.0265334673, + "10332": 1.0185596744, + "10333": 1.0105317374, + "10334": 1.0024497033, + "10335": 0.9943344497, + "10336": 0.986187264, + "10337": 0.9780283177, + "10338": 0.9698594536, + "10339": 0.961699893, + "10340": 0.9535519624, + "10341": 0.945433931, + "10342": 0.9373485388, + "10343": 0.929313085, + "10344": 0.9213305821, + "10345": 0.9134171856, + "10346": 0.9055760061, + "10347": 0.8978221501, + "10348": 0.890158898, + "10349": 0.8826003466, + "10350": 0.8751498407, + "10351": 0.8678204283, + "10352": 0.8606154094, + "10353": 0.8535467525, + "10354": 0.8466175859, + "10355": 0.8398387006, + "10356": 0.8332129094, + "10357": 0.8267498683, + "10358": 0.8204520886, + "10359": 0.814328129, + "10360": 0.8083801292, + "10361": 0.8026155484, + "10362": 0.7970360919, + "10363": 0.7916481286, + "10364": 0.7864525433, + "10365": 0.7814534507, + "10366": 0.776649865, + "10367": 0.7720444493, + "10368": 0.767636006, + "10369": 0.7634266156, + "10370": 0.759414884, + "10371": 0.7556022423, + "10372": 0.7519870189, + "10373": 0.7485699755, + "10374": 0.7453489567, + "10375": 0.7423233918, + "10376": 0.7394899118, + "10377": 0.7368469983, + "10378": 0.7343911133, + "10379": 0.7321203944, + "10380": 0.730031176, + "10381": 0.7281212312, + "10382": 0.7263867426, + "10383": 0.7248251329, + "10384": 0.7234322505, + "10385": 0.7222041759, + "10386": 0.7211351254, + "10387": 0.7202203018, + "10388": 0.7194540988, + "10389": 0.7188319267, + "10390": 0.7183484633, + "10391": 0.7179992635, + "10392": 0.7177792471, + "10393": 0.7176840984, + "10394": 0.7177088918, + "10395": 0.7178488181, + "10396": 0.718098136, + "10397": 0.7184517214, + "10398": 0.7189042405, + "10399": 0.7194510284, + "10400": 0.7200872346, + "10401": 0.7208085975, + "10402": 0.7216107111, + "10403": 0.7224896932, + "10404": 0.7234415435, + "10405": 0.7244623572, + "10406": 0.7255476339, + "10407": 0.7266944603, + "10408": 0.7278975382, + "10409": 0.7291539832, + "10410": 0.7304598127, + "10411": 0.7318127421, + "10412": 0.7332093094, + "10413": 0.7346476483, + "10414": 0.7361247933, + "10415": 0.7376389697, + "10416": 0.7391870898, + "10417": 0.7407674032, + "10418": 0.7423772952, + "10419": 0.7440154675, + "10420": 0.745679818, + "10421": 0.7473694057, + "10422": 0.7490823885, + "10423": 0.7508189696, + "10424": 0.7525781373, + "10425": 0.7543600052, + "10426": 0.7561635171, + "10427": 0.7579887509, + "10428": 0.7598348847, + "10429": 0.7617021431, + "10430": 0.7635898868, + "10431": 0.7654984624, + "10432": 0.7674273586, + "10433": 0.7693769544, + "10434": 0.771346841, + "10435": 0.7733371661, + "10436": 0.7753471074, + "10437": 0.7773764161, + "10438": 0.7794242804, + "10439": 0.7814904835, + "10440": 0.7835746728, + "10441": 0.7856771193, + "10442": 0.7877991646, + "10443": 0.7899422517, + "10444": 0.792107515, + "10445": 0.7942958854, + "10446": 0.7965081385, + "10447": 0.7987448416, + "10448": 0.80100631, + "10449": 0.8032926172, + "10450": 0.8056036146, + "10451": 0.8079389491, + "10452": 0.8102980793, + "10453": 0.8126802912, + "10454": 0.8150847126, + "10455": 0.8175102984, + "10456": 0.8199558243, + "10457": 0.8224199254, + "10458": 0.8249011352, + "10459": 0.8273979005, + "10460": 0.8299085883, + "10461": 0.832431494, + "10462": 0.8349648482, + "10463": 0.8375068239, + "10464": 0.8400555426, + "10465": 0.8426090915, + "10466": 0.8451655387, + "10467": 0.84772293, + "10468": 0.8502792811, + "10469": 0.8528325804, + "10470": 0.8553807959, + "10471": 0.8579218809, + "10472": 0.86045378, + "10473": 0.8629744352, + "10474": 0.8654817916, + "10475": 0.8679738109, + "10476": 0.8704484881, + "10477": 0.8729038503, + "10478": 0.875337949, + "10479": 0.8777488634, + "10480": 0.880134707, + "10481": 0.882493634, + "10482": 0.884823846, + "10483": 0.8871235975, + "10484": 0.8893912027, + "10485": 0.8916250818, + "10486": 0.8938238605, + "10487": 0.8959863328, + "10488": 0.8981113623, + "10489": 0.9001978606, + "10490": 0.902244799, + "10491": 0.9042512163, + "10492": 0.9062162253, + "10493": 0.9081390187, + "10494": 0.9100188736, + "10495": 0.9118551845, + "10496": 0.9136475697, + "10497": 0.915395844, + "10498": 0.9170999089, + "10499": 0.9187597233, + "10500": 0.9203753098, + "10501": 0.9219467582, + "10502": 0.9234742259, + "10503": 0.924957938, + "10504": 0.9263981866, + "10505": 0.927795348, + "10506": 0.9291500229, + "10507": 0.9304630087, + "10508": 0.9317351515, + "10509": 0.9329672979, + "10510": 0.9341602989, + "10511": 0.9353150092, + "10512": 0.9364322838, + "10513": 0.9375129749, + "10514": 0.938557928, + "10515": 0.9395679823, + "10516": 0.9405441317, + "10517": 0.9414875093, + "10518": 0.9423992205, + "10519": 0.9432802881, + "10520": 0.9441316563, + "10521": 0.9449541918, + "10522": 0.9457486821, + "10523": 0.9465158349, + "10524": 0.9472562766, + "10525": 0.9479705515, + "10526": 0.9486592335, + "10527": 0.9493229301, + "10528": 0.9499621714, + "10529": 0.9505773681, + "10530": 0.9511688164, + "10531": 0.9517367029, + "10532": 0.9522811079, + "10533": 0.9528020099, + "10534": 0.9532992896, + "10535": 0.9537727347, + "10536": 0.9542221562, + "10537": 0.9546474102, + "10538": 0.9550482951, + "10539": 0.955424504, + "10540": 0.9557756317, + "10541": 0.9561011863, + "10542": 0.956400599, + "10543": 0.9566732344, + "10544": 0.9569184005, + "10545": 0.9571353587, + "10546": 0.9573233527, + "10547": 0.9574816242, + "10548": 0.9576094035, + "10549": 0.9577059088, + "10550": 0.9577703542, + "10551": 0.957801961, + "10552": 0.9577999673, + "10553": 0.9577636381, + "10554": 0.9576922743, + "10555": 0.9575852225, + "10556": 0.9574420416, + "10557": 0.9572625854, + "10558": 0.957046856, + "10559": 0.9567948867, + "10560": 0.956506734, + "10561": 0.9561824945, + "10562": 0.9558223161, + "10563": 0.9554264085, + "10564": 0.9549950516, + "10565": 0.954528603, + "10566": 0.9540275672, + "10567": 0.9534926447, + "10568": 0.9529246729, + "10569": 0.9523245646, + "10570": 0.9516932981, + "10571": 0.9510319223, + "10572": 0.9503415578, + "10573": 0.9496233971, + "10574": 0.9488787033, + "10575": 0.9481088075, + "10576": 0.9473151755, + "10577": 0.9464994767, + "10578": 0.9456675187, + "10579": 0.9448251603, + "10580": 0.9439747265, + "10581": 0.9431176276, + "10582": 0.9422551245, + "10583": 0.9413886538, + "10584": 0.9405194888, + "10585": 0.939649065, + "10586": 0.9387786523, + "10587": 0.9379096923, + "10588": 0.937043453, + "10589": 0.9361813255, + "10590": 0.9353244901, + "10591": 0.9344742286, + "10592": 0.9336316013, + "10593": 0.932797754, + "10594": 0.9319735997, + "10595": 0.9311601223, + "10596": 0.9303580737, + "10597": 0.9295682996, + "10598": 0.9287914188, + "10599": 0.9280280941, + "10600": 0.92727872, + "10601": 0.9265437221, + "10602": 0.9258232561, + "10603": 0.9251175056, + "10604": 0.9244263833, + "10605": 0.9237498303, + "10606": 0.9230875133, + "10607": 0.9224391123, + "10608": 0.9218040255, + "10609": 0.9211816894, + "10610": 0.9205712829, + "10611": 0.9199720348, + "10612": 0.9193829215, + "10613": 0.9188029792, + "10614": 0.9182309998, + "10615": 0.9176658478, + "10616": 0.917106149, + "10617": 0.9165505854, + "10618": 0.9159975883, + "10619": 0.9154456948, + "10620": 0.9148932393, + "10621": 0.9143386875, + "10622": 0.9137803125, + "10623": 0.9132165369, + "10624": 0.9126456031, + "10625": 0.9120659225, + "10626": 0.9114757403, + "10627": 0.9108735236, + "10628": 0.9102576173, + "10629": 0.9096265715, + "10630": 0.9089787958, + "10631": 0.9083129147, + "10632": 0.9076274667, + "10633": 0.9069211391, + "10634": 0.9061925284, + "10635": 0.9054405381, + "10636": 0.9046640012, + "10637": 0.9038619811, + "10638": 0.9030335841, + "10639": 0.9021781671, + "10640": 0.9012950478, + "10641": 0.9003837793, + "10642": 0.8994438913, + "10643": 0.8984751618, + "10644": 0.8974773565, + "10645": 0.8964504985, + "10646": 0.8953946069, + "10647": 0.8943100216, + "10648": 0.8931971503, + "10649": 0.8920566753, + "10650": 0.8908892226, + "10651": 0.8896957543, + "10652": 0.8884771971, + "10653": 0.8872346712, + "10654": 0.8859692615, + "10655": 0.8846823813, + "10656": 0.8833753678, + "10657": 0.8820498975, + "10658": 0.8807076868, + "10659": 0.8793507302, + "10660": 0.8779809172, + "10661": 0.8766003447, + "10662": 0.875211, + "10663": 0.8738150589, + "10664": 0.8724145803, + "10665": 0.8710117904, + "10666": 0.8696087884, + "10667": 0.8682078355, + "10668": 0.8668110812, + "10669": 0.8654208019, + "10670": 0.8640391178, + "10671": 0.8626682337, + "10672": 0.8613101849, + "10673": 0.8599670668, + "10674": 0.8586407943, + "10675": 0.8573333184, + "10676": 0.8560463988, + "10677": 0.8547818061, + "10678": 0.8535411048, + "10679": 0.852325851, + "10680": 0.8511373923, + "10681": 0.8499770533, + "10682": 0.8488459438, + "10683": 0.8477451363, + "10684": 0.8466754838, + "10685": 0.8456377904, + "10686": 0.8446326976, + "10687": 0.8436606263, + "10688": 0.8427218305, + "10689": 0.8418164022, + "10690": 0.8409442987, + "10691": 0.8401053545, + "10692": 0.8392992797, + "10693": 0.8385256611, + "10694": 0.8377839639, + "10695": 0.8370735345, + "10696": 0.8363936035, + "10697": 0.8357432378, + "10698": 0.8351212669, + "10699": 0.8345263403, + "10700": 0.8339570264, + "10701": 0.8334118394, + "10702": 0.8328892399, + "10703": 0.8323876376, + "10704": 0.831901556, + "10705": 0.8313945848, + "10706": 0.8308735572, + "10707": 0.8303328705, + "10708": 0.8297730819, + "10709": 0.829191618, + "10710": 0.8285874609, + "10711": 0.8279588347, + "10712": 0.8273043743, + "10713": 0.8266225506, + "10714": 0.8259119678, + "10715": 0.8251712251, + "10716": 0.824398996, + "10717": 0.8235939838, + "10718": 0.8227548895, + "10719": 0.8218804259, + "10720": 0.8209693888, + "10721": 0.8200206778, + "10722": 0.8190332994, + "10723": 0.8180063696, + "10724": 0.8169391183, + "10725": 0.8158308921, + "10726": 0.8146811579, + "10727": 0.813489507, + "10728": 0.8122556727, + "10729": 0.8109795289, + "10730": 0.8096610778, + "10731": 0.8083004465, + "10732": 0.8068978879, + "10733": 0.8054537814, + "10734": 0.803968704, + "10735": 0.8024434798, + "10736": 0.8008791185, + "10737": 0.7992767656, + "10738": 0.7976377465, + "10739": 0.7959635598, + "10740": 0.7942558191, + "10741": 0.7925162304, + "10742": 0.790746589, + "10743": 0.7889487734, + "10744": 0.7871247382, + "10745": 0.7852765073, + "10746": 0.7834061655, + "10747": 0.7815158505, + "10748": 0.7796077401, + "10749": 0.7776840432, + "10750": 0.7757469941, + "10751": 0.7737988443, + "10752": 0.7718418527, + "10753": 0.7698782767, + "10754": 0.7679103622, + "10755": 0.7659403348, + "10756": 0.7639703911, + "10757": 0.7620026896, + "10758": 0.7600393231, + "10759": 0.7580823079, + "10760": 0.7561335955, + "10761": 0.7541950758, + "10762": 0.7522685707, + "10763": 0.7503558271, + "10764": 0.7484585118, + "10765": 0.746578206, + "10766": 0.7447164013, + "10767": 0.7428744953, + "10768": 0.7410537311, + "10769": 0.7392551772, + "10770": 0.7374797825, + "10771": 0.7357284107, + "10772": 0.7340018411, + "10773": 0.7323007657, + "10774": 0.7306257871, + "10775": 0.7289774179, + "10776": 0.7273560797, + "10777": 0.7257621042, + "10778": 0.7241956926, + "10779": 0.7226568981, + "10780": 0.721145668, + "10781": 0.7196618774, + "10782": 0.7182053357, + "10783": 0.7167757875, + "10784": 0.7153729142, + "10785": 0.7139963365, + "10786": 0.7126456174, + "10787": 0.7113202656, + "10788": 0.7100197359, + "10789": 0.7087434304, + "10790": 0.7074907073, + "10791": 0.706260889, + "10792": 0.7050532683, + "10793": 0.7038671131, + "10794": 0.7027016727, + "10795": 0.7015561833, + "10796": 0.7004298739, + "10797": 0.6993219729, + "10798": 0.6982317026, + "10799": 0.6971582738, + "10800": 0.6961009036, + "10801": 0.6950588384, + "10802": 0.694031363, + "10803": 0.6930178062, + "10804": 0.6920175468, + "10805": 0.6910300192, + "10806": 0.6900547186, + "10807": 0.6890912072, + "10808": 0.6881391255, + "10809": 0.6871982087, + "10810": 0.6862682834, + "10811": 0.6853492581, + "10812": 0.6844411239, + "10813": 0.6835439577, + "10814": 0.6826579243, + "10815": 0.6817832786, + "10816": 0.6809203653, + "10817": 0.6800696193, + "10818": 0.6792315894, + "10819": 0.6784069939, + "10820": 0.6775966906, + "10821": 0.6768016096, + "10822": 0.6760227314, + "10823": 0.6752610854, + "10824": 0.674517745, + "10825": 0.6737938219, + "10826": 0.6730904585, + "10827": 0.6724088202, + "10828": 0.6717500877, + "10829": 0.6711154546, + "10830": 0.6705061147, + "10831": 0.6699232427, + "10832": 0.6693679805, + "10833": 0.668841426, + "10834": 0.6683446204, + "10835": 0.6678785365, + "10836": 0.6674440668, + "10837": 0.6670420111, + "10838": 0.666673069, + "10839": 0.6663378567, + "10840": 0.6660368912, + "10841": 0.6657705538, + "10842": 0.6655390728, + "10843": 0.6653425174, + "10844": 0.665180792, + "10845": 0.6650536319, + "10846": 0.6649605989, + "10847": 0.6649010794, + "10848": 0.6648742835, + "10849": 0.6648792458, + "10850": 0.6649148274, + "10851": 0.6649797175, + "10852": 0.665072438, + "10853": 0.6651913487, + "10854": 0.6653346549, + "10855": 0.6655004153, + "10856": 0.665686552, + "10857": 0.665890861, + "10858": 0.6661110238, + "10859": 0.6663446162, + "10860": 0.6665891218, + "10861": 0.6668419498, + "10862": 0.667100452, + "10863": 0.6673619378, + "10864": 0.6676236896, + "10865": 0.6678829795, + "10866": 0.6681370846, + "10867": 0.6683833041, + "10868": 0.6686189745, + "10869": 0.6688414997, + "10870": 0.6690483686, + "10871": 0.6692371567, + "10872": 0.6694055354, + "10873": 0.6695512853, + "10874": 0.6696723111, + "10875": 0.6697666543, + "10876": 0.6698325056, + "10877": 0.6698682161, + "10878": 0.6698723078, + "10879": 0.6698435467, + "10880": 0.6697809689, + "10881": 0.6696838261, + "10882": 0.6695515523, + "10883": 0.6693837662, + "10884": 0.6691802774, + "10885": 0.668941091, + "10886": 0.6686664096, + "10887": 0.6683566344, + "10888": 0.6680123644, + "10889": 0.6676344316, + "10890": 0.6672239155, + "10891": 0.6667820993, + "10892": 0.6663104326, + "10893": 0.6658105188, + "10894": 0.6652841067, + "10895": 0.6647330796, + "10896": 0.664159443, + "10897": 0.6635653099, + "10898": 0.6629528854, + "10899": 0.662324517, + "10900": 0.6616827242, + "10901": 0.6610350549, + "10902": 0.6603955806, + "10903": 0.6597728765, + "10904": 0.6591695529, + "10905": 0.6585873998, + "10906": 0.6580284254, + "10907": 0.6574944268, + "10908": 0.6569872396, + "10909": 0.6565084553, + "10910": 0.6560596377, + "10911": 0.6556420588, + "10912": 0.6552569408, + "10913": 0.6549051821, + "10914": 0.6545875949, + "10915": 0.6543046245, + "10916": 0.654056597, + "10917": 0.6538434357, + "10918": 0.6536649185, + "10919": 0.6535203095, + "10920": 0.653418626, + "10921": 0.6533715378, + "10922": 0.6533818162, + "10923": 0.6534472527, + "10924": 0.6535653094, + "10925": 0.6537330662, + "10926": 0.6539474701, + "10927": 0.6542050426, + "10928": 0.6545021942, + "10929": 0.6548349157, + "10930": 0.6551991146, + "10931": 0.6555902976, + "10932": 0.6560039287, + "10933": 0.656435101, + "10934": 0.6568789168, + "10935": 0.6573301461, + "10936": 0.6577836295, + "10937": 0.658233922, + "10938": 0.6586757179, + "10939": 0.6591034968, + "10940": 0.6595120365, + "10941": 0.6598960035, + "10942": 0.6602503514, + "10943": 0.660569891, + "10944": 0.6608497847, + "10945": 0.661085118, + "10946": 0.6612714104, + "10947": 0.6614041643, + "10948": 0.6614793949, + "10949": 0.6614931592, + "10950": 0.6614421261, + "10951": 0.6613230766, + "10952": 0.6611334411, + "10953": 0.660870775, + "10954": 0.660533335, + "10955": 0.6601195423, + "10956": 0.6596285686, + "10957": 0.6590597814, + "10958": 0.6584133387, + "10959": 0.6576896337, + "10960": 0.6568904139, + "10961": 0.6560181653, + "10962": 0.6550762138, + "10963": 0.6540679731, + "10964": 0.6529975852, + "10965": 0.6518693336, + "10966": 0.6506882617, + "10967": 0.6494595773, + "10968": 0.6481892647, + "10969": 0.6468834835, + "10970": 0.6455492059, + "10971": 0.6441936135, + "10972": 0.6428246619, + "10973": 0.6414504652, + "10974": 0.6400798817, + "10975": 0.6387219145, + "10976": 0.6373862844, + "10977": 0.636082834, + "10978": 0.6348220877, + "10979": 0.6336146599, + "10980": 0.6324717321, + "10981": 0.6314044549, + "10982": 0.6304245496, + "10983": 0.6295437584, + "10984": 0.6287743654, + "10985": 0.6281286125, + "10986": 0.6276192086, + "10987": 0.6272587479, + "10988": 0.6270602104, + "10989": 0.62703638, + "10990": 0.6272003468, + "10991": 0.627564924, + "10992": 0.6281431343, + "10993": 0.6289476118, + "10994": 0.6299910999, + "10995": 0.6312858462, + "10996": 0.6328441109, + "10997": 0.6346775443, + "10998": 0.6367977137, + "10999": 0.6392154563, + "11000": 5.1411340687, + "11001": 5.1007386951, + "11002": 5.0601798033, + "11003": 5.0194679593, + "11004": 4.978613779, + "11005": 4.9376279266, + "11006": 4.8965211109, + "11007": 4.8553040838, + "11008": 4.8139876362, + "11009": 4.7725825957, + "11010": 4.7310998241, + "11011": 4.6895502143, + "11012": 4.647944688, + "11013": 4.6062941928, + "11014": 4.5646096997, + "11015": 4.5229022001, + "11016": 4.4811827037, + "11017": 4.4394622349, + "11018": 4.3977518309, + "11019": 4.3560625381, + "11020": 4.3144054105, + "11021": 4.27279155, + "11022": 4.2312321523, + "11023": 4.1897384682, + "11024": 4.1483217488, + "11025": 4.1069932293, + "11026": 4.0657641285, + "11027": 4.0246456455, + "11028": 3.9836489576, + "11029": 3.9427852176, + "11030": 3.9020655512, + "11031": 3.8615010564, + "11032": 3.8211028025, + "11033": 3.7808818268, + "11034": 3.7408491275, + "11035": 3.7010156588, + "11036": 3.6613923288, + "11037": 3.6219899985, + "11038": 3.5828194807, + "11039": 3.543891539, + "11040": 3.5052168863, + "11041": 3.4668062192, + "11042": 3.428670299, + "11043": 3.3908199221, + "11044": 3.3532658389, + "11045": 3.3160187283, + "11046": 3.2790891984, + "11047": 3.2424877851, + "11048": 3.2062249501, + "11049": 3.1703110792, + "11050": 3.1347564809, + "11051": 3.0995713864, + "11052": 3.0647659547, + "11053": 3.0303502697, + "11054": 2.9963343323, + "11055": 2.962728057, + "11056": 2.9295412707, + "11057": 2.8967837108, + "11058": 2.864465024, + "11059": 2.8325947641, + "11060": 2.8011823913, + "11061": 2.7702372771, + "11062": 2.7397687549, + "11063": 2.7097861148, + "11064": 2.6802985553, + "11065": 2.6513151667, + "11066": 2.6228449314, + "11067": 2.5948967223, + "11068": 2.5674793012, + "11069": 2.5406013177, + "11070": 2.514271308, + "11071": 2.4884976934, + "11072": 2.4632887859, + "11073": 2.4386527869, + "11074": 2.4145977804, + "11075": 2.3911317306, + "11076": 2.3682624804, + "11077": 2.3459977511, + "11078": 2.3243451405, + "11079": 2.3033121227, + "11080": 2.2829060469, + "11081": 2.2631341363, + "11082": 2.2440034497, + "11083": 2.2255208757, + "11084": 2.2076931642, + "11085": 2.1905269387, + "11086": 2.174028695, + "11087": 2.1582048005, + "11088": 2.1430614932, + "11089": 2.128604881, + "11090": 2.1148409408, + "11091": 2.1017755176, + "11092": 2.0894143186, + "11093": 2.0777629109, + "11094": 2.0668267254, + "11095": 2.056611058, + "11096": 2.0471210695, + "11097": 2.0383617846, + "11098": 2.0303380913, + "11099": 2.0230547399, + "11100": 2.0165163429, + "11101": 2.0107273741, + "11102": 2.0056921085, + "11103": 2.0014145986, + "11104": 1.9978987204, + "11105": 1.9951482065, + "11106": 1.9931666486, + "11107": 1.9919574961, + "11108": 1.9915240551, + "11109": 1.9918694875, + "11110": 1.9929968095, + "11111": 1.9949088914, + "11112": 1.9975247302, + "11113": 2.0000373169, + "11114": 2.0026287834, + "11115": 2.0052080917, + "11116": 2.0078207877, + "11117": 2.0104441244, + "11118": 2.0130895006, + "11119": 2.0157512416, + "11120": 2.0184322088, + "11121": 2.021130995, + "11122": 2.0238482875, + "11123": 2.0265836342, + "11124": 2.0293370742, + "11125": 2.0321083723, + "11126": 2.0348974277, + "11127": 2.0377040726, + "11128": 2.0405281724, + "11129": 2.0433695757, + "11130": 2.0462281397, + "11131": 2.0491037171, + "11132": 2.0519961582, + "11133": 2.0549053016, + "11134": 2.0578309796, + "11135": 2.060773023, + "11136": 2.0637312632, + "11137": 2.0667055316, + "11138": 2.0696956599, + "11139": 2.07270148, + "11140": 2.0757228243, + "11141": 2.0787595252, + "11142": 2.0818114063, + "11143": 2.0848782677, + "11144": 2.0879598916, + "11145": 2.0910560573, + "11146": 2.0941665452, + "11147": 2.0972911361, + "11148": 2.1004296115, + "11149": 2.1035817534, + "11150": 2.1067473444, + "11151": 2.1099261679, + "11152": 2.1131180064, + "11153": 2.1163226383, + "11154": 2.1195398391, + "11155": 2.1227693841, + "11156": 2.1260110491, + "11157": 2.129264611, + "11158": 2.1325298469, + "11159": 2.1358065348, + "11160": 2.1390944534, + "11161": 2.142393382, + "11162": 2.145703102, + "11163": 2.1490234032, + "11164": 2.152354083, + "11165": 2.1556949409, + "11166": 2.1590457769, + "11167": 2.1624063915, + "11168": 2.1657765861, + "11169": 2.1691561622, + "11170": 2.1725449223, + "11171": 2.1759426693, + "11172": 2.1793492067, + "11173": 2.1827643406, + "11174": 2.1861878794, + "11175": 2.1896196323, + "11176": 2.1930594092, + "11177": 2.1965070202, + "11178": 2.199962276, + "11179": 2.2034249877, + "11180": 2.2068949667, + "11181": 2.210372025, + "11182": 2.2138559756, + "11183": 2.2173466511, + "11184": 2.2208439058, + "11185": 2.224347599, + "11186": 2.22785759, + "11187": 2.2313737381, + "11188": 2.2348959029, + "11189": 2.2384239442, + "11190": 2.241957722, + "11191": 2.2454970965, + "11192": 2.249041928, + "11193": 2.2525920823, + "11194": 2.2561474317, + "11195": 2.2597078502, + "11196": 2.2632732122, + "11197": 2.266843392, + "11198": 2.2704182641, + "11199": 2.2739977031, + "11200": 2.2775815839, + "11201": 2.2811697814, + "11202": 2.2847621707, + "11203": 2.2883586431, + "11204": 2.2919591108, + "11205": 2.2955634935, + "11206": 2.2991717112, + "11207": 2.302783684, + "11208": 2.3063993322, + "11209": 2.3100185758, + "11210": 2.3136413353, + "11211": 2.3172675311, + "11212": 2.3208970835, + "11213": 2.3245299164, + "11214": 2.3281659579, + "11215": 2.3318051379, + "11216": 2.3354473868, + "11217": 2.3390926353, + "11218": 2.3427408139, + "11219": 2.3463918535, + "11220": 2.350045685, + "11221": 2.3537022397, + "11222": 2.3573614488, + "11223": 2.3610232543, + "11224": 2.3646876144, + "11225": 2.3683544962, + "11226": 2.3720238678, + "11227": 2.3756956973, + "11228": 2.3793699529, + "11229": 2.3830466026, + "11230": 2.386725615, + "11231": 2.3904069585, + "11232": 2.3940906015, + "11233": 2.3977765148, + "11234": 2.401464673, + "11235": 2.4051550532, + "11236": 2.4088476326, + "11237": 2.4125423888, + "11238": 2.4162392992, + "11239": 2.4199383415, + "11240": 2.4236394933, + "11241": 2.4273427324, + "11242": 2.4310480367, + "11243": 2.4347553858, + "11244": 2.4384647633, + "11245": 2.4421761556, + "11246": 2.4458895492, + "11247": 2.4496049307, + "11248": 2.4533222866, + "11249": 2.4570416035, + "11250": 2.4607628678, + "11251": 2.4644860658, + "11252": 2.4682111839, + "11253": 2.471938209, + "11254": 2.4756671289, + "11255": 2.4793979326, + "11256": 2.4831306091, + "11257": 2.4868651472, + "11258": 2.4906015356, + "11259": 2.4943397629, + "11260": 2.4980798177, + "11261": 2.5018216881, + "11262": 2.5055653624, + "11263": 2.5093108278, + "11264": 2.5130580681, + "11265": 2.5168070645, + "11266": 2.5205577974, + "11267": 2.5243102471, + "11268": 2.5280643937, + "11269": 2.5318202171, + "11270": 2.5355776968, + "11271": 2.5393368124, + "11272": 2.5430975431, + "11273": 2.5468598678, + "11274": 2.550623764, + "11275": 2.5543892076, + "11276": 2.5581561746, + "11277": 2.5619246402, + "11278": 2.56569458, + "11279": 2.5694659691, + "11280": 2.5732387826, + "11281": 2.5770129952, + "11282": 2.5807885817, + "11283": 2.5845655155, + "11284": 2.5883437593, + "11285": 2.5921232654, + "11286": 2.5959039834, + "11287": 2.5996858631, + "11288": 2.603468854, + "11289": 2.6072529056, + "11290": 2.6110379673, + "11291": 2.6148239885, + "11292": 2.6186109185, + "11293": 2.6223987062, + "11294": 2.6261872962, + "11295": 2.6299766277, + "11296": 2.6337666389, + "11297": 2.6375572679, + "11298": 2.641348453, + "11299": 2.6451401324, + "11300": 2.6489322443, + "11301": 2.6527247272, + "11302": 2.6565175195, + "11303": 2.6603105597, + "11304": 2.6641037769, + "11305": 2.6678970899, + "11306": 2.6716904149, + "11307": 2.6754836693, + "11308": 2.6792767695, + "11309": 2.6830696326, + "11310": 2.6868621761, + "11311": 2.690654318, + "11312": 2.6944459763, + "11313": 2.69823707, + "11314": 2.7020275156, + "11315": 2.7058172271, + "11316": 2.7096061175, + "11317": 2.7133941007, + "11318": 2.7171810908, + "11319": 2.7209670027, + "11320": 2.7247517518, + "11321": 2.7285352235, + "11322": 2.732317366, + "11323": 2.7360980962, + "11324": 2.7398773148, + "11325": 2.7436549295, + "11326": 2.747430856, + "11327": 2.7512050035, + "11328": 2.7549772886, + "11329": 2.7587476232, + "11330": 2.7625159259, + "11331": 2.7662821113, + "11332": 2.7700461001, + "11333": 2.7738078091, + "11334": 2.7775671641, + "11335": 2.7813240918, + "11336": 2.7850785269, + "11337": 2.7888304013, + "11338": 2.7925796523, + "11339": 2.7963262143, + "11340": 2.8000700265, + "11341": 2.8038110258, + "11342": 2.8075491533, + "11343": 2.8112843484, + "11344": 2.815016558, + "11345": 2.8187457345, + "11346": 2.8224718385, + "11347": 2.8261948291, + "11348": 2.8299146691, + "11349": 2.8336313197, + "11350": 2.8373447455, + "11351": 2.8410549093, + "11352": 2.8447617772, + "11353": 2.848465314, + "11354": 2.8521654888, + "11355": 2.8558622736, + "11356": 2.8595556452, + "11357": 2.8632455799, + "11358": 2.8669320563, + "11359": 2.8706150519, + "11360": 2.8742945462, + "11361": 2.8779705179, + "11362": 2.8816429474, + "11363": 2.8853118144, + "11364": 2.8889771027, + "11365": 2.8926388026, + "11366": 2.8962969106, + "11367": 2.8999514238, + "11368": 2.9036023399, + "11369": 2.907249656, + "11370": 2.9108933697, + "11371": 2.9145334784, + "11372": 2.9181699798, + "11373": 2.9218028711, + "11374": 2.9254321513, + "11375": 2.929057823, + "11376": 2.9326798926, + "11377": 2.9362983666, + "11378": 2.9399132514, + "11379": 2.9435245532, + "11380": 2.947132278, + "11381": 2.9507364314, + "11382": 2.9543370188, + "11383": 2.9579340452, + "11384": 2.9615275167, + "11385": 2.9651174431, + "11386": 2.9687038384, + "11387": 2.9722867168, + "11388": 2.9758660921, + "11389": 2.9794419773, + "11390": 2.9830143855, + "11391": 2.9865833287, + "11392": 2.9901488191, + "11393": 2.993710868, + "11394": 2.9972694869, + "11395": 3.0008246896, + "11396": 3.0043764928, + "11397": 3.0079249129, + "11398": 3.0114699662, + "11399": 3.0150116681, + "11400": 3.0185500339, + "11401": 3.0220850784, + "11402": 3.0256168158, + "11403": 3.0291452601, + "11404": 3.0326704249, + "11405": 3.0361923256, + "11406": 3.0397109791, + "11407": 3.0432264024, + "11408": 3.0467386125, + "11409": 3.0502476254, + "11410": 3.0537534573, + "11411": 3.0572561239, + "11412": 3.0607556406, + "11413": 3.0642520225, + "11414": 3.0677452847, + "11415": 3.0712354431, + "11416": 3.074722515, + "11417": 3.0782065179, + "11418": 3.0816874132, + "11419": 3.0851652854, + "11420": 3.088639556, + "11421": 3.0921109944, + "11422": 3.095573848, + "11423": 3.0990145378, + "11424": 3.1024179092, + "11425": 3.1057696484, + "11426": 3.1090563047, + "11427": 3.1122652718, + "11428": 3.1153847749, + "11429": 3.1184038552, + "11430": 3.1213123529, + "11431": 3.1241008892, + "11432": 3.1267608472, + "11433": 3.1292843518, + "11434": 3.1316642497, + "11435": 3.1338940875, + "11436": 3.1359680907, + "11437": 3.1378811411, + "11438": 3.1396287551, + "11439": 3.1412070612, + "11440": 3.1426127777, + "11441": 3.1438431901, + "11442": 3.1448961293, + "11443": 3.1457699492, + "11444": 3.1464635045, + "11445": 3.1469761288, + "11446": 3.1473076117, + "11447": 3.1474581789, + "11448": 3.1474284722, + "11449": 3.147219529, + "11450": 3.1468327623, + "11451": 3.1462699409, + "11452": 3.1455331703, + "11453": 3.1446248735, + "11454": 3.1435477728, + "11455": 3.1423048709, + "11456": 3.1408994324, + "11457": 3.1393349674, + "11458": 3.1376152144, + "11459": 3.1357441239, + "11460": 3.1337258424, + "11461": 3.1315646956, + "11462": 3.1292651735, + "11463": 3.1268319141, + "11464": 3.1242696889, + "11465": 3.1215833874, + "11466": 3.1187780015, + "11467": 3.1158586119, + "11468": 3.1128303747, + "11469": 3.1096985078, + "11470": 3.1064682774, + "11471": 3.1031449848, + "11472": 3.0997339536, + "11473": 3.096240517, + "11474": 3.0926700055, + "11475": 3.0890277347, + "11476": 3.0853189928, + "11477": 3.08154903, + "11478": 3.0777230479, + "11479": 3.0738461898, + "11480": 3.0699235303, + "11481": 3.0659600656, + "11482": 3.0619607052, + "11483": 3.0579302627, + "11484": 3.0538734481, + "11485": 3.0497948602, + "11486": 3.0456989792, + "11487": 3.0415901608, + "11488": 3.0374726307, + "11489": 3.0333504801, + "11490": 3.0292276613, + "11491": 3.0251079839, + "11492": 3.020995112, + "11493": 3.016892562, + "11494": 3.0128037005, + "11495": 3.008731744, + "11496": 3.0046797573, + "11497": 3.000650655, + "11498": 2.9966472018, + "11499": 2.9926720154, + "11500": 2.9887275682, + "11501": 2.9848161901, + "11502": 2.9809400724, + "11503": 2.9771012709, + "11504": 2.9733017111, + "11505": 2.9695431925, + "11506": 2.9658273939, + "11507": 2.9621558787, + "11508": 2.9585301013, + "11509": 2.9549514128, + "11510": 2.9514210675, + "11511": 2.9479402292, + "11512": 2.9445099778, + "11513": 2.9411313159, + "11514": 2.9378051753, + "11515": 2.9345324233, + "11516": 2.9313138694, + "11517": 2.928150271, + "11518": 2.9250423401, + "11519": 2.9219907486, + "11520": 2.9189961342, + "11521": 2.9160591052, + "11522": 2.9131802457, + "11523": 2.9103601199, + "11524": 2.9075992759, + "11525": 2.9048982497, + "11526": 2.9022575683, + "11527": 2.8996777522, + "11528": 2.8971593178, + "11529": 2.8947027789, + "11530": 2.892308648, + "11531": 2.889977437, + "11532": 2.8877096571, + "11533": 2.8855058192, + "11534": 2.8833664327, + "11535": 2.8812920043, + "11536": 2.8792830369, + "11537": 2.8773400276, + "11538": 2.8754634648, + "11539": 2.873653826, + "11540": 2.871911574, + "11541": 2.8702371541, + "11542": 2.8686309902, + "11543": 2.8670934808, + "11544": 2.8656249954, + "11545": 2.8642258699, + "11546": 2.8628964025, + "11547": 2.8616368492, + "11548": 2.8604474196, + "11549": 2.8593282724, + "11550": 2.8582795115, + "11551": 2.8573011814, + "11552": 2.8563932636, + "11553": 2.8555556727, + "11554": 2.8547882526, + "11555": 2.8540907738, + "11556": 2.8534629304, + "11557": 2.8529043381, + "11558": 2.8524145315, + "11559": 2.8519929623, + "11560": 2.8516389976, + "11561": 2.8513519192, + "11562": 2.8511309235, + "11563": 2.8509751212, + "11564": 2.8508835386, + "11565": 2.8508551183, + "11566": 2.8508887216, + "11567": 2.8509831306, + "11568": 2.8511370517, + "11569": 2.8513491179, + "11570": 2.851617894, + "11571": 2.8519418802, + "11572": 2.8523195177, + "11573": 2.852749194, + "11574": 2.8532292488, + "11575": 2.8537579807, + "11576": 2.8543336536, + "11577": 2.8549545047, + "11578": 2.8556187513, + "11579": 2.8563245987, + "11580": 2.8570702478, + "11581": 2.8578539035, + "11582": 2.8586737819, + "11583": 2.8595281194, + "11584": 2.8604151803, + "11585": 2.861333265, + "11586": 2.8622807181, + "11587": 2.8632559362, + "11588": 2.8642573754, + "11589": 2.8652835586, + "11590": 2.8663330823, + "11591": 2.8674046231, + "11592": 2.8684969438, + "11593": 2.869608899, + "11594": 2.8707394399, + "11595": 2.8718876193, + "11596": 2.8730525947, + "11597": 2.8742336324, + "11598": 2.8754301091, + "11599": 2.8766415146, + "11600": 2.8778674521, + "11601": 2.8791076387, + "11602": 2.8803619053, + "11603": 2.8816301952, + "11604": 2.8829125625, + "11605": 2.884209169, + "11606": 2.8855202812, + "11607": 2.8868462662, + "11608": 2.8881875868, + "11609": 2.889544796, + "11610": 2.8909185311, + "11611": 2.8923095067, + "11612": 2.8937185075, + "11613": 2.8951463806, + "11614": 2.8965940269, + "11615": 2.8980623923, + "11616": 2.8995524589, + "11617": 2.9010652348, + "11618": 2.9026017448, + "11619": 2.9041630199, + "11620": 2.905750087, + "11621": 2.9073639591, + "11622": 2.9090056238, + "11623": 2.9106760337, + "11624": 2.9123760954, + "11625": 2.9141066596, + "11626": 2.9158685106, + "11627": 2.9176623565, + "11628": 2.9194888197, + "11629": 2.9213484278, + "11630": 2.9232416043, + "11631": 2.9251686609, + "11632": 2.927129789, + "11633": 2.9291250531, + "11634": 2.9311543839, + "11635": 2.9332175723, + "11636": 2.9353142644, + "11637": 2.9374439566, + "11638": 2.9396059927, + "11639": 2.9417995602, + "11640": 2.9440236889, + "11641": 2.9462772497, + "11642": 2.9485589544, + "11643": 2.9508673562, + "11644": 2.9532008516, + "11645": 2.9555576825, + "11646": 2.9579359402, + "11647": 2.9603335693, + "11648": 2.9627483728, + "11649": 2.965178019, + "11650": 2.9676200475, + "11651": 2.9700718777, + "11652": 2.972530817, + "11653": 2.9749940702, + "11654": 2.9774587497, + "11655": 2.9799218858, + "11656": 2.9823804383, + "11657": 2.9848313078, + "11658": 2.9872713482, + "11659": 2.9896973794, + "11660": 2.9921062005, + "11661": 2.9944946031, + "11662": 2.9968593851, + "11663": 2.9991973641, + "11664": 3.0015053911, + "11665": 3.0037803645, + "11666": 3.0060192437, + "11667": 3.0082190623, + "11668": 3.010376942, + "11669": 3.0124901052, + "11670": 3.0145558873, + "11671": 3.016571749, + "11672": 3.0185352881, + "11673": 3.02044425, + "11674": 3.0222965386, + "11675": 3.0240902262, + "11676": 3.0258235618, + "11677": 3.0274949801, + "11678": 3.0291031085, + "11679": 3.0306467739, + "11680": 3.0321250082, + "11681": 3.0335370535, + "11682": 3.0348823656, + "11683": 3.0361606171, + "11684": 3.0373716996, + "11685": 3.0385157242, + "11686": 3.0395930222, + "11687": 3.0406041438, + "11688": 3.0415498563, + "11689": 3.0424311417, + "11690": 3.0432491925, + "11691": 3.0440054076, + "11692": 3.0447013862, + "11693": 3.0453389222, + "11694": 3.0459199967, + "11695": 3.0464467704, + "11696": 3.0469215746, + "11697": 3.0473469024, + "11698": 3.0477253985, + "11699": 3.0480598488, + "11700": 3.0483531693, + "11701": 3.0486083944, + "11702": 3.0488286649, + "11703": 3.0490172157, + "11704": 3.0493056451, + "11705": 3.0508587335, + "11706": 3.0534040214, + "11707": 3.057081398, + "11708": 3.0618237822, + "11709": 3.067666787, + "11710": 3.0745938922, + "11711": 3.0826138607, + "11712": 3.0917220314, + "11713": 3.101919673, + "11714": 3.1132043049, + "11715": 3.1255745339, + "11716": 3.1390276317, + "11717": 3.1535607403, + "11718": 3.1691702624, + "11719": 3.1858521587, + "11720": 3.2036017906, + "11721": 3.2224139889, + "11722": 3.2422830098, + "11723": 3.2632025456, + "11724": 3.285165708, + "11725": 3.3081650248, + "11726": 3.3321924296, + "11727": 3.3572392548, + "11728": 3.3832962229, + "11729": 3.4103534392, + "11730": 3.4384003839, + "11731": 3.4674259051, + "11732": 3.4974182121, + "11733": 3.5283648691, + "11734": 3.5602527899, + "11735": 3.593068233, + "11736": 3.6267967981, + "11737": 3.6614234228, + "11738": 3.696932381, + "11739": 3.7333072821, + "11740": 3.7705310714, + "11741": 3.8085860327, + "11742": 3.8474537907, + "11743": 3.8871153162, + "11744": 3.9275509318, + "11745": 3.9687403202, + "11746": 4.0106625323, + "11747": 4.0532959991, + "11748": 4.096618543, + "11749": 4.1406073923, + "11750": 4.1852391962, + "11751": 4.2304900429, + "11752": 4.2763354774, + "11753": 4.3227505222, + "11754": 4.3697096989, + "11755": 4.4171870511, + "11756": 4.4651561692, + "11757": 4.5135902158, + "11758": 4.5624619525, + "11759": 4.6117437676, + "11760": 4.6614077056, + "11761": 4.7114254978, + "11762": 4.7617685933, + "11763": 4.8124081902, + "11764": 4.8633152684, + "11765": 4.9144606222, + "11766": 4.9658148936, + "11767": 5.0173486057, + "11768": 5.0690321954, + "11769": 5.1208360473, + "11770": 5.1727305271, + "11771": 5.2246860155, + "11772": 5.2766729412, + "11773": 5.3286618134, + "11774": 5.3806232536, + "11775": 5.4325280269, + "11776": 5.4843470727, + "11777": 5.536051534, + "11778": 5.5876127857, + "11779": 5.6390024624, + "11780": 5.6901924845, + "11781": 5.7411550836, + "11782": 5.7918628267, + "11783": 5.8422886383, + "11784": 5.8924058216, + "11785": 5.9421880786, + "11786": 5.9916095277, + "11787": 6.0406447208, + "11788": 6.0892686584, + "11789": 6.1374568032, + "11790": 6.1851850924, + "11791": 6.2324299488, + "11792": 6.2791682897, + "11793": 6.3253775354, + "11794": 6.3710356154, + "11795": 6.4161209743, + "11796": 6.4606125758, + "11797": 6.5044899062, + "11798": 6.5477329761, + "11799": 6.5903223218, + "11800": 6.6322390063, + "11801": 6.6734646197, + "11802": 6.7139812788, + "11803": 6.7537716269, + "11804": 6.7928188334, + "11805": 6.8311065928, + "11806": 6.8686191251, + "11807": 6.9053411755, + "11808": 6.9412580156, + "11809": 6.9763554449, + "11810": 7.0106197935, + "11811": 7.0440379253, + "11812": 7.0765972435, + "11813": 7.1082856965, + "11814": 7.1390917859, + "11815": 7.1690045762, + "11816": 7.198013706, + "11817": 7.2261094013, + "11818": 7.2532824908, + "11819": 7.2795244231, + "11820": 7.3048272861, + "11821": 7.3291838271, + "11822": 7.352587476, + "11823": 7.3750323696, + "11824": 7.3965133779, + "11825": 7.4170261324, + "11826": 7.4365670547, + "11827": 7.4551333874, + "11828": 7.4727232254, + "11829": 7.4893355483, + "11830": 7.5049702528, + "11831": 7.519628185, + "11832": 7.5333111726, + "11833": 7.5460220566, + "11834": 7.5577647219, + "11835": 7.5685441266, + "11836": 7.5783663297, + "11837": 7.5872385162, + "11838": 7.59516902, + "11839": 7.6021673455, + "11840": 7.6082441841, + "11841": 7.6134114251, + "11842": 7.6176821647, + "11843": 7.6210707093, + "11844": 7.6235925755, + "11845": 7.6252644846, + "11846": 7.6261043511, + "11847": 7.6261312673, + "11848": 7.625365481, + "11849": 7.6238283683, + "11850": 7.6215424008, + "11851": 7.6185311055, + "11852": 7.6148190203, + "11853": 7.6104316434, + "11854": 7.6053953768, + "11855": 7.5997374657, + "11856": 7.5934859312, + "11857": 7.5866694997, + "11858": 7.5793175271, + "11859": 7.571459921, + "11860": 7.5631270579, + "11861": 7.5543496948, + "11862": 7.5451588788, + "11863": 7.535585856, + "11864": 7.5256619778, + "11865": 7.5154186072, + "11866": 7.5048870237, + "11867": 7.494098329, + "11868": 7.483083353, + "11869": 7.471872562, + "11870": 7.4604959677, + "11871": 7.4489830392, + "11872": 7.4373626177, + "11873": 7.4256628347, + "11874": 7.4139110356, + "11875": 7.4021337064, + "11876": 7.3903564069, + "11877": 7.3786037086, + "11878": 7.3668991392, + "11879": 7.3552651346, + "11880": 7.3437229973, + "11881": 7.3322928592, + "11882": 7.3209936526, + "11883": 7.3098430897, + "11884": 7.2988576483, + "11885": 7.2880525667, + "11886": 7.2774418454, + "11887": 7.2670382565, + "11888": 7.2568533607, + "11889": 7.2468975325, + "11890": 7.2371799925, + "11891": 7.2277088447, + "11892": 7.2184911215, + "11893": 7.2095328346, + "11894": 7.2008390319, + "11895": 7.1924138597, + "11896": 7.1842606297, + "11897": 7.1763818899, + "11898": 7.1687794989, + "11899": 7.1614547056, + "11900": 7.1544082297, + "11901": 7.1476403417, + "11902": 7.1411509421, + "11903": 7.1349396422, + "11904": 7.1290058412, + "11905": 7.1233488032, + "11906": 7.1179677306, + "11907": 7.1128618342, + "11908": 7.1080303985, + "11909": 7.1034728413, + "11910": 7.0991887671, + "11911": 7.0951780129, + "11912": 7.0914406868, + "11913": 7.0879771973, + "11914": 7.084788274, + "11915": 7.0818749785, + "11916": 7.0792387048, + "11917": 7.0768811702, + "11918": 7.0748043945, + "11919": 7.0730106691, + "11920": 7.071164369, + "11921": 7.0688196527, + "11922": 7.0658196793, + "11923": 7.0621596374, + "11924": 7.057841544, + "11925": 7.0528662448, + "11926": 7.0472350114, + "11927": 7.040949222, + "11928": 7.0340104248, + "11929": 7.0264203248, + "11930": 7.0181807863, + "11931": 7.0092938315, + "11932": 6.9997616408, + "11933": 6.9895865519, + "11934": 6.9787710595, + "11935": 6.9673178152, + "11936": 6.9552296264, + "11937": 6.942509456, + "11938": 6.9291604219, + "11939": 6.9151857961, + "11940": 6.9005890027, + "11941": 6.8853736176, + "11942": 6.8695433688, + "11943": 6.8531021366, + "11944": 6.8360539527, + "11945": 6.8184029994, + "11946": 6.8001536089, + "11947": 6.7813102627, + "11948": 6.7618775907, + "11949": 6.7418603705, + "11950": 6.7212635262, + "11951": 6.7000921281, + "11952": 6.6783513914, + "11953": 6.6560466759, + "11954": 6.6331834845, + "11955": 6.6097674624, + "11956": 6.5858043966, + "11957": 6.5613002142, + "11958": 6.5362609818, + "11959": 6.5106929042, + "11960": 6.4846023228, + "11961": 6.4579957142, + "11962": 6.4308796906, + "11963": 6.403260998, + "11964": 6.3751465153, + "11965": 6.3465432528, + "11966": 6.3174583508, + "11967": 6.2878990781, + "11968": 6.2578728305, + "11969": 6.2273871298, + "11970": 6.1964496212, + "11971": 6.1650680728, + "11972": 6.1332503734, + "11973": 6.101004531, + "11974": 6.0683386711, + "11975": 6.0352610351, + "11976": 6.0017799781, + "11977": 5.9679039677, + "11978": 5.9336415817, + "11979": 5.8990015061, + "11980": 5.8639925339, + "11981": 5.8286235627, + "11982": 5.7929035926, + "11983": 5.7568417242, + "11984": 5.7204471559, + "11985": 5.6837291825, + "11986": 5.6466971925, + "11987": 5.6093606662, + "11988": 5.5717291732, + "11989": 5.5338123704, + "11990": 5.495619999, + "11991": 5.4571618828, + "11992": 5.4184479253, + "11993": 5.3794881076, + "11994": 5.3402924859, + "11995": 5.3008711893, + "11996": 5.2612344167, + "11997": 5.2213924347, + "11998": 5.1813555746, + "11999": 5.1411342303, + "12000": 0.9859241955, + "12001": 0.9894925432, + "12002": 0.9934307701, + "12003": 0.9977417863, + "12004": 1.0024283198, + "12005": 1.0074929777, + "12006": 1.0129381244, + "12007": 1.0187632724, + "12008": 1.024964244, + "12009": 1.0315352409, + "12010": 1.0384699293, + "12011": 1.0457613171, + "12012": 1.0534015432, + "12013": 1.0613817205, + "12014": 1.0696917996, + "12015": 1.0783204605, + "12016": 1.0872550255, + "12017": 1.0964813954, + "12018": 1.1059840054, + "12019": 1.1157458007, + "12020": 1.1257482314, + "12021": 1.1359734718, + "12022": 1.1464067276, + "12023": 1.1570340828, + "12024": 1.1678396255, + "12025": 1.1788049509, + "12026": 1.1899094712, + "12027": 1.201130645, + "12028": 1.2124442013, + "12029": 1.2238243628, + "12030": 1.2352440662, + "12031": 1.2466752504, + "12032": 1.2580891778, + "12033": 1.2694565771, + "12034": 1.2807477282, + "12035": 1.2919326411, + "12036": 1.3029812687, + "12037": 1.3138637106, + "12038": 1.3245504104, + "12039": 1.3350123459, + "12040": 1.3452212121, + "12041": 1.3551519658, + "12042": 1.3647883725, + "12043": 1.374120707, + "12044": 1.3831399126, + "12045": 1.3918362188, + "12046": 1.4001996836, + "12047": 1.4082205251, + "12048": 1.4158893994, + "12049": 1.4231976497, + "12050": 1.4301375162, + "12051": 1.4367024452, + "12052": 1.4428877229, + "12053": 1.4486904497, + "12054": 1.4541091135, + "12055": 1.4591435136, + "12056": 1.4637948379, + "12057": 1.4680657019, + "12058": 1.4719601653, + "12059": 1.4754837294, + "12060": 1.4786433165, + "12061": 1.4814478906, + "12062": 1.4839131473, + "12063": 1.4860606732, + "12064": 1.4879130835, + "12065": 1.4894925285, + "12066": 1.4908209314, + "12067": 1.4919200575, + "12068": 1.4928115451, + "12069": 1.4935169263, + "12070": 1.4940576266, + "12071": 1.4944549716, + "12072": 1.4947308011, + "12073": 1.4949073963, + "12074": 1.4950068143, + "12075": 1.4950506484, + "12076": 1.4950600191, + "12077": 1.4950555445, + "12078": 1.4950573034, + "12079": 1.4950847995, + "12080": 1.4951569247, + "12081": 1.4952919223, + "12082": 1.4955021025, + "12083": 1.4957936298, + "12084": 1.4961715656, + "12085": 1.4966417704, + "12086": 1.4972106455, + "12087": 1.4978849273, + "12088": 1.4986715328, + "12089": 1.4995774168, + "12090": 1.5006094521, + "12091": 1.5017743271, + "12092": 1.5030776672, + "12093": 1.5045238457, + "12094": 1.5061166938, + "12095": 1.5078598321, + "12096": 1.5097566261, + "12097": 1.511810125, + "12098": 1.5140230189, + "12099": 1.5163976049, + "12100": 1.5189357631, + "12101": 1.52163894, + "12102": 1.5245032364, + "12103": 1.5275179844, + "12104": 1.5306705254, + "12105": 1.5339492274, + "12106": 1.5373436594, + "12107": 1.5408443521, + "12108": 1.5444426473, + "12109": 1.5481305658, + "12110": 1.5519006963, + "12111": 1.5557461038, + "12112": 1.5596631168, + "12113": 1.5636816369, + "12114": 1.5677830508, + "12115": 1.5719626153, + "12116": 1.5762096235, + "12117": 1.5805172573, + "12118": 1.5848775428, + "12119": 1.589283784, + "12120": 1.5937292724, + "12121": 1.5982078721, + "12122": 1.6027125357, + "12123": 1.6072346297, + "12124": 1.6117649658, + "12125": 1.6162949868, + "12126": 1.6208169198, + "12127": 1.6253236882, + "12128": 1.6298088471, + "12129": 1.6342665343, + "12130": 1.638691424, + "12131": 1.6430786894, + "12132": 1.6474238271, + "12133": 1.6517224815, + "12134": 1.6559705615, + "12135": 1.6601644059, + "12136": 1.664300801, + "12137": 1.6683769477, + "12138": 1.6723904373, + "12139": 1.6763392283, + "12140": 1.680221626, + "12141": 1.6840362631, + "12142": 1.6877823194, + "12143": 1.6914598638, + "12144": 1.6950695969, + "12145": 1.6986124093, + "12146": 1.7020892691, + "12147": 1.7055012377, + "12148": 1.7088494715, + "12149": 1.7121352213, + "12150": 1.7153598309, + "12151": 1.7185247329, + "12152": 1.7216314798, + "12153": 1.7246818188, + "12154": 1.7276776477, + "12155": 1.7306209169, + "12156": 1.7335135976, + "12157": 1.7363576791, + "12158": 1.7391551619, + "12159": 1.741908051, + "12160": 1.7446183471, + "12161": 1.7472880392, + "12162": 1.7499191787, + "12163": 1.7525141801, + "12164": 1.7550757209, + "12165": 1.7576064082, + "12166": 1.7601086804, + "12167": 1.7625848216, + "12168": 1.7650369653, + "12169": 1.7674670968, + "12170": 1.7698770551, + "12171": 1.7722685344, + "12172": 1.7746430963, + "12173": 1.7770022538, + "12174": 1.7793474581, + "12175": 1.7816800171, + "12176": 1.7840010722, + "12177": 1.7863116058, + "12178": 1.7886124469, + "12179": 1.7909042756, + "12180": 1.7931876293, + "12181": 1.7954629085, + "12182": 1.7977303822, + "12183": 1.7999901911, + "12184": 1.802242354, + "12185": 1.8044867797, + "12186": 1.806723277, + "12187": 1.8089515619, + "12188": 1.8111712668, + "12189": 1.8133819491, + "12190": 1.8155831006, + "12191": 1.8177741566, + "12192": 1.819954506, + "12193": 1.822123498, + "12194": 1.8242804522, + "12195": 1.8264246701, + "12196": 1.8285554462, + "12197": 1.8306720766, + "12198": 1.8327738683, + "12199": 1.8348601482, + "12200": 1.8369302708, + "12201": 1.8389836264, + "12202": 1.8410196483, + "12203": 1.8430376715, + "12204": 1.8450369166, + "12205": 1.8470166389, + "12206": 1.8489762036, + "12207": 1.8509150886, + "12208": 1.8528328813, + "12209": 1.8547292764, + "12210": 1.8566040744, + "12211": 1.8584571782, + "12212": 1.8602885906, + "12213": 1.8620983979, + "12214": 1.863886762, + "12215": 1.86565393, + "12216": 1.8674002377, + "12217": 1.8691261058, + "12218": 1.8708320337, + "12219": 1.8725185941, + "12220": 1.8741864266, + "12221": 1.8758362313, + "12222": 1.8774687625, + "12223": 1.8790845078, + "12224": 1.8806835345, + "12225": 1.8822657889, + "12226": 1.8838313366, + "12227": 1.8853803829, + "12228": 1.8869132456, + "12229": 1.8884303358, + "12230": 1.8899321391, + "12231": 1.8914191992, + "12232": 1.8928921026, + "12233": 1.8943513941, + "12234": 1.8957975147, + "12235": 1.8972308585, + "12236": 1.8986518327, + "12237": 1.9000608591, + "12238": 1.901458359, + "12239": 1.9028447419, + "12240": 1.9042203944, + "12241": 1.9055856713, + "12242": 1.9069408863, + "12243": 1.908286078, + "12244": 1.9096207677, + "12245": 1.9109441808, + "12246": 1.9122555437, + "12247": 1.9135541392, + "12248": 1.9148392797, + "12249": 1.916110292, + "12250": 1.917366504, + "12251": 1.9186072328, + "12252": 1.9198317761, + "12253": 1.9210393411, + "12254": 1.9222289446, + "12255": 1.9233994713, + "12256": 1.9245497828, + "12257": 1.925678741, + "12258": 1.9267851988, + "12259": 1.9278679961, + "12260": 1.9289259566, + "12261": 1.9299578868, + "12262": 1.9309625751, + "12263": 1.9319386468, + "12264": 1.9328842325, + "12265": 1.9337971224, + "12266": 1.9346751399, + "12267": 1.9355162389, + "12268": 1.9363184823, + "12269": 1.9370800325, + "12270": 1.9377991455, + "12271": 1.9384741656, + "12272": 1.9391035221, + "12273": 1.9396856869, + "12274": 1.9402190249, + "12275": 1.9407018374, + "12276": 1.9411325185, + "12277": 1.9415095992, + "12278": 1.9418317375, + "12279": 1.9420977145, + "12280": 1.9423064305, + "12281": 1.9424569032, + "12282": 1.9425482644, + "12283": 1.9425796406, + "12284": 1.9425492992, + "12285": 1.9424547861, + "12286": 1.9422937848, + "12287": 1.9420643678, + "12288": 1.9417649353, + "12289": 1.9413941835, + "12290": 1.9409510783, + "12291": 1.94043483, + "12292": 1.9398448715, + "12293": 1.9391808246, + "12294": 1.9384420579, + "12295": 1.9376276958, + "12296": 1.936737017, + "12297": 1.9357695694, + "12298": 1.9347251297, + "12299": 1.9336036781, + "12300": 1.9324053764, + "12301": 1.9311305483, + "12302": 1.9297796612, + "12303": 1.9283533102, + "12304": 1.9268527075, + "12305": 1.9252796869, + "12306": 1.923636205, + "12307": 1.9219241452, + "12308": 1.920145331, + "12309": 1.9183015356, + "12310": 1.9163944874, + "12311": 1.9144258765, + "12312": 1.9123973591, + "12313": 1.9103105623, + "12314": 1.9081673336, + "12315": 1.9059697812, + "12316": 1.9037200386, + "12317": 1.9014201499, + "12318": 1.8990720751, + "12319": 1.896677703, + "12320": 1.8942388612, + "12321": 1.8917202755, + "12322": 1.8890751359, + "12323": 1.8862805677, + "12324": 1.8833493526, + "12325": 1.8802883915, + "12326": 1.8771103553, + "12327": 1.8738206692, + "12328": 1.8704311239, + "12329": 1.8669466173, + "12330": 1.8633781127, + "12331": 1.8597301799, + "12332": 1.8560130985, + "12333": 1.8522312293, + "12334": 1.8483947143, + "12335": 1.8445088791, + "12336": 1.8405842211, + "12337": 1.836626056, + "12338": 1.8326440974, + "12339": 1.8286432643, + "12340": 1.8246325398, + "12341": 1.8206165224, + "12342": 1.8166035329, + "12343": 1.8125978877, + "12344": 1.8086074093, + "12345": 1.8046364734, + "12346": 1.8006926021, + "12347": 1.796779957, + "12348": 1.7929053931, + "12349": 1.7890726975, + "12350": 1.7852880704, + "12351": 1.7815549348, + "12352": 1.7778788588, + "12353": 1.7742629003, + "12354": 1.770712066, + "12355": 1.7672292072, + "12356": 1.7638188947, + "12357": 1.7604836413, + "12358": 1.7572273821, + "12359": 1.7540521903, + "12360": 1.7509613776, + "12361": 1.7479565871, + "12362": 1.7450405326, + "12363": 1.7422144352, + "12364": 1.7394802452, + "12365": 1.7368381015, + "12366": 1.734288644, + "12367": 1.7318313809, + "12368": 1.7294666234, + "12369": 1.7271937355, + "12370": 1.7250127443, + "12371": 1.7229228246, + "12372": 1.7209237045, + "12373": 1.71901435, + "12374": 1.7171941, + "12375": 1.7154613254, + "12376": 1.7138145846, + "12377": 1.712251864, + "12378": 1.7107715569, + "12379": 1.7093716001, + "12380": 1.7080502626, + "12381": 1.706805411, + "12382": 1.7056351904, + "12383": 1.7045373957, + "12384": 1.7035099465, + "12385": 1.7025499363, + "12386": 1.7016542588, + "12387": 1.7008195863, + "12388": 1.7000429233, + "12389": 1.6993211878, + "12390": 1.6986515654, + "12391": 1.6980311689, + "12392": 1.6974573408, + "12393": 1.6969273669, + "12394": 1.6964386922, + "12395": 1.6959883744, + "12396": 1.695573353, + "12397": 1.6951905588, + "12398": 1.6948371896, + "12399": 1.6945105229, + "12400": 1.6942080591, + "12401": 1.6939273766, + "12402": 1.6936662509, + "12403": 1.6934225359, + "12404": 1.6931942733, + "12405": 1.6929793018, + "12406": 1.6927755725, + "12407": 1.6925809765, + "12408": 1.6923937006, + "12409": 1.6922120201, + "12410": 1.6920344069, + "12411": 1.6918594443, + "12412": 1.6916858738, + "12413": 1.6915125476, + "12414": 1.6913384527, + "12415": 1.6911625489, + "12416": 1.690983777, + "12417": 1.6908011648, + "12418": 1.6906138955, + "12419": 1.6904212369, + "12420": 1.6902227545, + "12421": 1.6900177365, + "12422": 1.6898073175, + "12423": 1.6895945979, + "12424": 1.689382821, + "12425": 1.6891747319, + "12426": 1.6889726195, + "12427": 1.6887783758, + "12428": 1.6885935438, + "12429": 1.6884193549, + "12430": 1.6882567638, + "12431": 1.6881064785, + "12432": 1.6879689888, + "12433": 1.6878445913, + "12434": 1.6877334125, + "12435": 1.687635258, + "12436": 1.6875495816, + "12437": 1.6874756687, + "12438": 1.6874127564, + "12439": 1.6873600527, + "12440": 1.6873167393, + "12441": 1.687281976, + "12442": 1.6872549052, + "12443": 1.6872346545, + "12444": 1.68722034, + "12445": 1.6872112648, + "12446": 1.6872070127, + "12447": 1.687207258, + "12448": 1.6872116113, + "12449": 1.6872196031, + "12450": 1.6872306961, + "12451": 1.6872442934, + "12452": 1.6872597443, + "12453": 1.6872763504, + "12454": 1.6872933695, + "12455": 1.6873100532, + "12456": 1.6873256732, + "12457": 1.6873394908, + "12458": 1.6873507248, + "12459": 1.6873585473, + "12460": 1.6873620879, + "12461": 1.6873604363, + "12462": 1.6873526451, + "12463": 1.6873377315, + "12464": 1.68731468, + "12465": 1.6872825016, + "12466": 1.6872402946, + "12467": 1.6871871901, + "12468": 1.6871222791, + "12469": 1.6870446001, + "12470": 1.6869531477, + "12471": 1.6868468793, + "12472": 1.6867247209, + "12473": 1.686585574, + "12474": 1.6864283211, + "12475": 1.6862518738, + "12476": 1.6860552408, + "12477": 1.6858374925, + "12478": 1.6855976932, + "12479": 1.6853348911, + "12480": 1.6850481291, + "12481": 1.6847364546, + "12482": 1.6843989276, + "12483": 1.684034629, + "12484": 1.6836426683, + "12485": 1.6832222459, + "12486": 1.6827727844, + "12487": 1.6822938778, + "12488": 1.6817851596, + "12489": 1.6812462724, + "12490": 1.6806768825, + "12491": 1.6800766896, + "12492": 1.6794454346, + "12493": 1.678782906, + "12494": 1.6780889464, + "12495": 1.6773634936, + "12496": 1.6766067224, + "12497": 1.6758190068, + "12498": 1.675000776, + "12499": 1.6741524757, + "12500": 1.6732745772, + "12501": 1.6723675821, + "12502": 1.671432025, + "12503": 1.6704684743, + "12504": 1.6694775329, + "12505": 1.6684598574, + "12506": 1.6674163008, + "12507": 1.6663478864, + "12508": 1.6652556585, + "12509": 1.6641406356, + "12510": 1.6630038159, + "12511": 1.6618461777, + "12512": 1.6606686785, + "12513": 1.6594722531, + "12514": 1.6582578121, + "12515": 1.6570262435, + "12516": 1.6557785763, + "12517": 1.6545159668, + "12518": 1.6532395336, + "12519": 1.6519503038, + "12520": 1.6506492205, + "12521": 1.6493371446, + "12522": 1.6480148558, + "12523": 1.6466830538, + "12524": 1.6453423591, + "12525": 1.6439933132, + "12526": 1.6426364605, + "12527": 1.6412723516, + "12528": 1.639901466, + "12529": 1.6385241833, + "12530": 1.6371407881, + "12531": 1.6357514741, + "12532": 1.6343563485, + "12533": 1.6329554356, + "12534": 1.6315486811, + "12535": 1.6301359566, + "12536": 1.6287171398, + "12537": 1.627292131, + "12538": 1.6258607832, + "12539": 1.6244228713, + "12540": 1.6229780974, + "12541": 1.6215260998, + "12542": 1.6200664607, + "12543": 1.618598714, + "12544": 1.6171223531, + "12545": 1.6156368384, + "12546": 1.6141415808, + "12547": 1.6126359423, + "12548": 1.6111192666, + "12549": 1.6095909014, + "12550": 1.6080502062, + "12551": 1.606496558, + "12552": 1.6049293575, + "12553": 1.6033480351, + "12554": 1.6017520563, + "12555": 1.600140928, + "12556": 1.5985143179, + "12557": 1.5968721144, + "12558": 1.5952143182, + "12559": 1.5935409575, + "12560": 1.5918520814, + "12561": 1.5901477709, + "12562": 1.5884281475, + "12563": 1.5866933791, + "12564": 1.5849436867, + "12565": 1.5831793488, + "12566": 1.5814007394, + "12567": 1.5796083554, + "12568": 1.5778027847, + "12569": 1.5759846725, + "12570": 1.5741547163, + "12571": 1.5723136681, + "12572": 1.5704623343, + "12573": 1.5686015752, + "12574": 1.5667323033, + "12575": 1.5648554808, + "12576": 1.5629721546, + "12577": 1.5610834918, + "12578": 1.5591907366, + "12579": 1.5572951546, + "12580": 1.5553980168, + "12581": 1.5535005972, + "12582": 1.5516041683, + "12583": 1.5497099962, + "12584": 1.5478193346, + "12585": 1.5459334195, + "12586": 1.5440534591, + "12587": 1.5421806238, + "12588": 1.5403160419, + "12589": 1.5384607987, + "12590": 1.536615931, + "12591": 1.5347824204, + "12592": 1.5329611867, + "12593": 1.5311530821, + "12594": 1.5293588846, + "12595": 1.5275792934, + "12596": 1.5258149193, + "12597": 1.5240662714, + "12598": 1.5223337568, + "12599": 1.520617688, + "12600": 1.5189182818, + "12601": 1.517235657, + "12602": 1.5155698317, + "12603": 1.5139207226, + "12604": 1.5122881438, + "12605": 1.5106718071, + "12606": 1.509071314, + "12607": 1.5074861263, + "12608": 1.505915577, + "12609": 1.5043589055, + "12610": 1.5028152697, + "12611": 1.5012837477, + "12612": 1.4997633406, + "12613": 1.4982529769, + "12614": 1.4967515166, + "12615": 1.4952577564, + "12616": 1.4937704276, + "12617": 1.4922881473, + "12618": 1.4908094337, + "12619": 1.4893327692, + "12620": 1.4878566234, + "12621": 1.4863794577, + "12622": 1.4848997306, + "12623": 1.4834159048, + "12624": 1.4819264534, + "12625": 1.4804298676, + "12626": 1.4789246645, + "12627": 1.4774094246, + "12628": 1.4758827971, + "12629": 1.4743434788, + "12630": 1.4727902134, + "12631": 1.4712218, + "12632": 1.469637102, + "12633": 1.4680350548, + "12634": 1.4664146731, + "12635": 1.4647750585, + "12636": 1.4631154058, + "12637": 1.4614350658, + "12638": 1.4597335531, + "12639": 1.4580104964, + "12640": 1.4562656222, + "12641": 1.4544987611, + "12642": 1.4527098532, + "12643": 1.4508989518, + "12644": 1.4490662268, + "12645": 1.4472119668, + "12646": 1.4453365805, + "12647": 1.4434406565, + "12648": 1.4415249721, + "12649": 1.4395904336, + "12650": 1.4376380464, + "12651": 1.4356689122, + "12652": 1.4336842278, + "12653": 1.4316852826, + "12654": 1.4296734547, + "12655": 1.4276502063, + "12656": 1.4256170787, + "12657": 1.4235757417, + "12658": 1.4215280027, + "12659": 1.4194757457, + "12660": 1.4174208887, + "12661": 1.4153653736, + "12662": 1.4133111607, + "12663": 1.4112602211, + "12664": 1.4092145295, + "12665": 1.4071760567, + "12666": 1.4051467606, + "12667": 1.4031286103, + "12668": 1.4011235922, + "12669": 1.3991336708, + "12670": 1.3971607556, + "12671": 1.3952066899, + "12672": 1.3932732453, + "12673": 1.3913621149, + "12674": 1.3894749075, + "12675": 1.3876131415, + "12676": 1.3857782394, + "12677": 1.3839714996, + "12678": 1.3821940753, + "12679": 1.3804469931, + "12680": 1.3787311715, + "12681": 1.3770474216, + "12682": 1.3753964422, + "12683": 1.3737788165, + "12684": 1.3721950088, + "12685": 1.3706453627, + "12686": 1.3691300997, + "12687": 1.36764928, + "12688": 1.3662027634, + "12689": 1.3647902474, + "12690": 1.3634113184, + "12691": 1.3620654628, + "12692": 1.3607520657, + "12693": 1.359470411, + "12694": 1.3582196822, + "12695": 1.3569989649, + "12696": 1.355807249, + "12697": 1.3546433622, + "12698": 1.3535058696, + "12699": 1.3523931478, + "12700": 1.3513035136, + "12701": 1.3502352576, + "12702": 1.3491866406, + "12703": 1.3481558948, + "12704": 1.3471350383, + "12705": 1.3460663183, + "12706": 1.3449620317, + "12707": 1.3438144078, + "12708": 1.3426256602, + "12709": 1.3413929656, + "12710": 1.3401160339, + "12711": 1.3387933644, + "12712": 1.33742413, + "12713": 1.336007242, + "12714": 1.3345418264, + "12715": 1.333026994, + "12716": 1.3314619646, + "12717": 1.3298459875, + "12718": 1.3281782794, + "12719": 1.3264580445, + "12720": 1.32468459, + "12721": 1.3228573574, + "12722": 1.3209759217, + "12723": 1.3190399922, + "12724": 1.3170494146, + "12725": 1.3150041722, + "12726": 1.3129043873, + "12727": 1.3107503233, + "12728": 1.3085423903, + "12729": 1.3062811451, + "12730": 1.3039672853, + "12731": 1.3016016476, + "12732": 1.2991852068, + "12733": 1.2967190744, + "12734": 1.2942044963, + "12735": 1.2916428501, + "12736": 1.2890356415, + "12737": 1.2863845013, + "12738": 1.2836912131, + "12739": 1.2809577058, + "12740": 1.2781860162, + "12741": 1.2753782723, + "12742": 1.2725366886, + "12743": 1.2696635591, + "12744": 1.2667612506, + "12745": 1.2638321947, + "12746": 1.2608788796, + "12747": 1.2579038418, + "12748": 1.2549096267, + "12749": 1.2518987787, + "12750": 1.2488738614, + "12751": 1.2458374592, + "12752": 1.2427921671, + "12753": 1.2397405801, + "12754": 1.2366852833, + "12755": 1.2336288423, + "12756": 1.2305737937, + "12757": 1.2275226362, + "12758": 1.2244777301, + "12759": 1.2214412752, + "12760": 1.2184153925, + "12761": 1.2154021608, + "12762": 1.2124036088, + "12763": 1.2094217053, + "12764": 1.2064583505, + "12765": 1.2035153684, + "12766": 1.2005945001, + "12767": 1.1976973981, + "12768": 1.194825483, + "12769": 1.1919799001, + "12770": 1.189161649, + "12771": 1.1863716658, + "12772": 1.1836108253, + "12773": 1.1808799321, + "12774": 1.1781797152, + "12775": 1.1755108234, + "12776": 1.1728738214, + "12777": 1.1702691877, + "12778": 1.1676972591, + "12779": 1.1651582041, + "12780": 1.1626520763, + "12781": 1.1601788579, + "12782": 1.1577384653, + "12783": 1.1553307488, + "12784": 1.1529554923, + "12785": 1.150612415, + "12786": 1.1483011734, + "12787": 1.1460213645, + "12788": 1.1437725264, + "12789": 1.1415541417, + "12790": 1.1393656434, + "12791": 1.1372064227, + "12792": 1.1350758344, + "12793": 1.1329732029, + "12794": 1.1308978284, + "12795": 1.1288489936, + "12796": 1.1268259704, + "12797": 1.124828027, + "12798": 1.1228544287, + "12799": 1.1209044382, + "12800": 1.1189773302, + "12801": 1.117072408, + "12802": 1.1151890125, + "12803": 1.1133265297, + "12804": 1.1114843975, + "12805": 1.1096621123, + "12806": 1.1078592361, + "12807": 1.1060754022, + "12808": 1.1043103404, + "12809": 1.1025639099, + "12810": 1.1008360858, + "12811": 1.0991269291, + "12812": 1.0974365832, + "12813": 1.0957652786, + "12814": 1.0941133358, + "12815": 1.0924811675, + "12816": 1.0908692788, + "12817": 1.0892782674, + "12818": 1.0877088854, + "12819": 1.0861621817, + "12820": 1.0846394319, + "12821": 1.0831419715, + "12822": 1.0816711482, + "12823": 1.0802283263, + "12824": 1.0788148831, + "12825": 1.0774322049, + "12826": 1.07608168, + "12827": 1.0747646916, + "12828": 1.0734826155, + "12829": 1.0722368391, + "12830": 1.0710287409, + "12831": 1.0698596491, + "12832": 1.06873082, + "12833": 1.0676434276, + "12834": 1.0665985505, + "12835": 1.0655971599, + "12836": 1.0646401067, + "12837": 1.0637281091, + "12838": 1.0628617587, + "12839": 1.0620416362, + "12840": 1.06126828, + "12841": 1.0605420477, + "12842": 1.0598630691, + "12843": 1.0592312482, + "12844": 1.0586462604, + "12845": 1.0581075527, + "12846": 1.0576143426, + "12847": 1.0571656202, + "12848": 1.0567601509, + "12849": 1.0563964976, + "12850": 1.0560730253, + "12851": 1.0557878894, + "12852": 1.055539039, + "12853": 1.0553242273, + "12854": 1.0551410235, + "12855": 1.0549868253, + "12856": 1.0548588736, + "12857": 1.0547542672, + "12858": 1.0546699793, + "12859": 1.0546029344, + "12860": 1.0545500279, + "12861": 1.0545080878, + "12862": 1.0544738715, + "12863": 1.054444088, + "12864": 1.0544154203, + "12865": 1.0543845468, + "12866": 1.0543481626, + "12867": 1.0543030008, + "12868": 1.0542458532, + "12869": 1.0541736205, + "12870": 1.0540833363, + "12871": 1.0539721567, + "12872": 1.0538373629, + "12873": 1.0536763794, + "12874": 1.0534867904, + "12875": 1.0532663557, + "12876": 1.0530130253, + "12877": 1.0527249525, + "12878": 1.0524005052, + "12879": 1.0520383981, + "12880": 1.0516377357, + "12881": 1.0511979025, + "12882": 1.050718494, + "12883": 1.0501993174, + "12884": 1.0496404, + "12885": 1.0490419951, + "12886": 1.0484045844, + "12887": 1.0477288792, + "12888": 1.0470158196, + "12889": 1.0462666465, + "12890": 1.0454829324, + "12891": 1.0446664997, + "12892": 1.0438193503, + "12893": 1.0429436486, + "12894": 1.0420417118, + "12895": 1.0411159983, + "12896": 1.0401690925, + "12897": 1.0392036884, + "12898": 1.038222571, + "12899": 1.0372287484, + "12900": 1.0362255384, + "12901": 1.0352163928, + "12902": 1.0342047158, + "12903": 1.033193813, + "12904": 1.0321868756, + "12905": 1.0311869592, + "12906": 1.030196961, + "12907": 1.0292195957, + "12908": 1.0282573714, + "12909": 1.0273125499, + "12910": 1.0263871074, + "12911": 1.0254827235, + "12912": 1.0246007776, + "12913": 1.0237423293, + "12914": 1.0229080963, + "12915": 1.0220984345, + "12916": 1.0213133201, + "12917": 1.0205523349, + "12918": 1.0198146547, + "12919": 1.0190988983, + "12920": 1.018428112, + "12921": 1.0178326569, + "12922": 1.0173204902, + "12923": 1.0168877718, + "12924": 1.0165299394, + "12925": 1.0162423194, + "12926": 1.0160199854, + "12927": 1.0158577866, + "12928": 1.0157503337, + "12929": 1.0156920162, + "12930": 1.0156770014, + "12931": 1.0156992613, + "12932": 1.0157525775, + "12933": 1.0158305769, + "12934": 1.0159267439, + "12935": 1.0160344635, + "12936": 1.0161470376, + "12937": 1.0162577353, + "12938": 1.0163598112, + "12939": 1.0164465964, + "12940": 1.0165116482, + "12941": 1.0165487706, + "12942": 1.0165518975, + "12943": 1.016515115, + "12944": 1.0164326891, + "12945": 1.0162991326, + "12946": 1.0161092238, + "12947": 1.0158580713, + "12948": 1.015541128, + "12949": 1.0151542596, + "12950": 1.0146937948, + "12951": 1.014156578, + "12952": 1.0135399281, + "12953": 1.0128416822, + "12954": 1.0120601933, + "12955": 1.011194384, + "12956": 1.0102437364, + "12957": 1.0092083402, + "12958": 1.0080888769, + "12959": 1.0068866917, + "12960": 1.0056046837, + "12961": 1.00424729, + "12962": 1.0028195677, + "12963": 1.0013269515, + "12964": 0.9997752804, + "12965": 0.9981708571, + "12966": 0.9965204334, + "12967": 0.9948312577, + "12968": 0.9931110526, + "12969": 0.9913680525, + "12970": 0.9896110299, + "12971": 0.9878493271, + "12972": 0.9860927646, + "12973": 0.9843516436, + "12974": 0.9826367052, + "12975": 0.9809591496, + "12976": 0.9793305893, + "12977": 0.9777630618, + "12978": 0.9762689777, + "12979": 0.9748611269, + "12980": 0.9735524729, + "12981": 0.9723561312, + "12982": 0.9712854521, + "12983": 0.970354088, + "12984": 0.9695759245, + "12985": 0.9689650645, + "12986": 0.9685357515, + "12987": 0.9683023506, + "12988": 0.968279268, + "12989": 0.9684809287, + "12990": 0.9689217037, + "12991": 0.9696158884, + "12992": 0.9705776016, + "12993": 0.9718207512, + "12994": 0.9733589402, + "12995": 0.9752054402, + "12996": 0.9773730947, + "12997": 0.9798742929, + "12998": 0.9827208703, + "12999": 0.9859240854, + "13000": 5.1411340687, + "13001": 5.1007386951, + "13002": 5.0601798033, + "13003": 5.0194679593, + "13004": 4.978613779, + "13005": 4.9376279266, + "13006": 4.8965211109, + "13007": 4.8553040838, + "13008": 4.8139876362, + "13009": 4.7725825957, + "13010": 4.7310998241, + "13011": 4.6895502143, + "13012": 4.647944688, + "13013": 4.6062941928, + "13014": 4.5646096997, + "13015": 4.5229022001, + "13016": 4.4811827037, + "13017": 4.4394622349, + "13018": 4.3977518309, + "13019": 4.3560625381, + "13020": 4.3144054105, + "13021": 4.27279155, + "13022": 4.2312321523, + "13023": 4.1897384682, + "13024": 4.1483217488, + "13025": 4.1069932293, + "13026": 4.0657641285, + "13027": 4.0246456455, + "13028": 3.9836489576, + "13029": 3.9427852176, + "13030": 3.9020655512, + "13031": 3.8615010564, + "13032": 3.8211028025, + "13033": 3.7808818268, + "13034": 3.7408491275, + "13035": 3.7010156588, + "13036": 3.6613923288, + "13037": 3.6219899985, + "13038": 3.5828194807, + "13039": 3.543891539, + "13040": 3.5052168863, + "13041": 3.4668062192, + "13042": 3.428670299, + "13043": 3.3908199221, + "13044": 3.3532658389, + "13045": 3.3160187283, + "13046": 3.2790891984, + "13047": 3.2424877851, + "13048": 3.2062249501, + "13049": 3.1703110792, + "13050": 3.1347564809, + "13051": 3.0995713864, + "13052": 3.0647659547, + "13053": 3.0303502697, + "13054": 2.9963343323, + "13055": 2.962728057, + "13056": 2.9295412707, + "13057": 2.8967837108, + "13058": 2.864465024, + "13059": 2.8325947641, + "13060": 2.8011823913, + "13061": 2.7702372771, + "13062": 2.7397687549, + "13063": 2.7097861148, + "13064": 2.6802985553, + "13065": 2.6513151667, + "13066": 2.6228449314, + "13067": 2.5948967223, + "13068": 2.5674793012, + "13069": 2.5406013177, + "13070": 2.514271308, + "13071": 2.4884976934, + "13072": 2.4632887859, + "13073": 2.4386527869, + "13074": 2.4145977804, + "13075": 2.3911317306, + "13076": 2.3682624804, + "13077": 2.3459977511, + "13078": 2.3243451405, + "13079": 2.3033121227, + "13080": 2.2829060469, + "13081": 2.2631341363, + "13082": 2.2440034497, + "13083": 2.2255208757, + "13084": 2.2076931642, + "13085": 2.1905269387, + "13086": 2.174028695, + "13087": 2.1582048005, + "13088": 2.1430614932, + "13089": 2.128604881, + "13090": 2.1148409408, + "13091": 2.1017755176, + "13092": 2.0894143186, + "13093": 2.0777629109, + "13094": 2.0668267254, + "13095": 2.056611058, + "13096": 2.0471210695, + "13097": 2.0383617846, + "13098": 2.0303380913, + "13099": 2.0230547399, + "13100": 2.0165163429, + "13101": 2.0107273741, + "13102": 2.0056921085, + "13103": 2.0014145986, + "13104": 1.9978987204, + "13105": 1.9951482065, + "13106": 1.9931666486, + "13107": 1.9919574961, + "13108": 1.9915240551, + "13109": 1.9918694875, + "13110": 1.9929968095, + "13111": 1.9949088914, + "13112": 1.9975247302, + "13113": 2.0000373169, + "13114": 2.0026287834, + "13115": 2.0052080917, + "13116": 2.0078207877, + "13117": 2.0104441244, + "13118": 2.0130895006, + "13119": 2.0157512416, + "13120": 2.0184322088, + "13121": 2.021130995, + "13122": 2.0238482875, + "13123": 2.0265836342, + "13124": 2.0293370742, + "13125": 2.0321083723, + "13126": 2.0348974277, + "13127": 2.0377040726, + "13128": 2.0405281724, + "13129": 2.0433695757, + "13130": 2.0462281397, + "13131": 2.0491037171, + "13132": 2.0519961582, + "13133": 2.0549053016, + "13134": 2.0578309796, + "13135": 2.060773023, + "13136": 2.0637312632, + "13137": 2.0667055316, + "13138": 2.0696956599, + "13139": 2.07270148, + "13140": 2.0757228243, + "13141": 2.0787595252, + "13142": 2.0818114063, + "13143": 2.0848782677, + "13144": 2.0879598916, + "13145": 2.0910560573, + "13146": 2.0941665452, + "13147": 2.0972911361, + "13148": 2.1004296115, + "13149": 2.1035817534, + "13150": 2.1067473444, + "13151": 2.1099261679, + "13152": 2.1131180064, + "13153": 2.1163226383, + "13154": 2.1195398391, + "13155": 2.1227693841, + "13156": 2.1260110491, + "13157": 2.129264611, + "13158": 2.1325298469, + "13159": 2.1358065348, + "13160": 2.1390944534, + "13161": 2.142393382, + "13162": 2.145703102, + "13163": 2.1490234032, + "13164": 2.152354083, + "13165": 2.1556949409, + "13166": 2.1590457769, + "13167": 2.1624063915, + "13168": 2.1657765861, + "13169": 2.1691561622, + "13170": 2.1725449223, + "13171": 2.1759426693, + "13172": 2.1793492067, + "13173": 2.1827643406, + "13174": 2.1861878794, + "13175": 2.1896196323, + "13176": 2.1930594092, + "13177": 2.1965070202, + "13178": 2.199962276, + "13179": 2.2034249877, + "13180": 2.2068949667, + "13181": 2.210372025, + "13182": 2.2138559756, + "13183": 2.2173466511, + "13184": 2.2208439058, + "13185": 2.224347599, + "13186": 2.22785759, + "13187": 2.2313737381, + "13188": 2.2348959029, + "13189": 2.2384239442, + "13190": 2.241957722, + "13191": 2.2454970965, + "13192": 2.249041928, + "13193": 2.2525920823, + "13194": 2.2561474317, + "13195": 2.2597078502, + "13196": 2.2632732122, + "13197": 2.266843392, + "13198": 2.2704182641, + "13199": 2.2739977031, + "13200": 2.2775815839, + "13201": 2.2811697814, + "13202": 2.2847621707, + "13203": 2.2883586431, + "13204": 2.2919591108, + "13205": 2.2955634935, + "13206": 2.2991717112, + "13207": 2.302783684, + "13208": 2.3063993322, + "13209": 2.3100185758, + "13210": 2.3136413353, + "13211": 2.3172675311, + "13212": 2.3208970835, + "13213": 2.3245299164, + "13214": 2.3281659579, + "13215": 2.3318051379, + "13216": 2.3354473868, + "13217": 2.3390926353, + "13218": 2.3427408139, + "13219": 2.3463918535, + "13220": 2.350045685, + "13221": 2.3537022397, + "13222": 2.3573614488, + "13223": 2.3610232543, + "13224": 2.3646876144, + "13225": 2.3683544962, + "13226": 2.3720238678, + "13227": 2.3756956973, + "13228": 2.3793699529, + "13229": 2.3830466026, + "13230": 2.386725615, + "13231": 2.3904069585, + "13232": 2.3940906015, + "13233": 2.3977765148, + "13234": 2.401464673, + "13235": 2.4051550532, + "13236": 2.4088476326, + "13237": 2.4125423888, + "13238": 2.4162392992, + "13239": 2.4199383415, + "13240": 2.4236394933, + "13241": 2.4273427324, + "13242": 2.4310480367, + "13243": 2.4347553858, + "13244": 2.4384647633, + "13245": 2.4421761556, + "13246": 2.4458895492, + "13247": 2.4496049307, + "13248": 2.4533222866, + "13249": 2.4570416035, + "13250": 2.4607628678, + "13251": 2.4644860658, + "13252": 2.4682111839, + "13253": 2.471938209, + "13254": 2.4756671289, + "13255": 2.4793979326, + "13256": 2.4831306091, + "13257": 2.4868651472, + "13258": 2.4906015356, + "13259": 2.4943397629, + "13260": 2.4980798177, + "13261": 2.5018216881, + "13262": 2.5055653624, + "13263": 2.5093108278, + "13264": 2.5130580681, + "13265": 2.5168070645, + "13266": 2.5205577974, + "13267": 2.5243102471, + "13268": 2.5280643937, + "13269": 2.5318202171, + "13270": 2.5355776968, + "13271": 2.5393368124, + "13272": 2.5430975431, + "13273": 2.5468598678, + "13274": 2.550623764, + "13275": 2.5543892076, + "13276": 2.5581561746, + "13277": 2.5619246402, + "13278": 2.56569458, + "13279": 2.5694659691, + "13280": 2.5732387826, + "13281": 2.5770129952, + "13282": 2.5807885817, + "13283": 2.5845655155, + "13284": 2.5883437593, + "13285": 2.5921232654, + "13286": 2.5959039834, + "13287": 2.5996858631, + "13288": 2.603468854, + "13289": 2.6072529056, + "13290": 2.6110379673, + "13291": 2.6148239885, + "13292": 2.6186109185, + "13293": 2.6223987062, + "13294": 2.6261872962, + "13295": 2.6299766277, + "13296": 2.6337666389, + "13297": 2.6375572679, + "13298": 2.641348453, + "13299": 2.6451401324, + "13300": 2.6489322443, + "13301": 2.6527247272, + "13302": 2.6565175195, + "13303": 2.6603105597, + "13304": 2.6641037769, + "13305": 2.6678970899, + "13306": 2.6716904149, + "13307": 2.6754836693, + "13308": 2.6792767695, + "13309": 2.6830696326, + "13310": 2.6868621761, + "13311": 2.690654318, + "13312": 2.6944459763, + "13313": 2.69823707, + "13314": 2.7020275156, + "13315": 2.7058172271, + "13316": 2.7096061175, + "13317": 2.7133941007, + "13318": 2.7171810908, + "13319": 2.7209670027, + "13320": 2.7247517518, + "13321": 2.7285352235, + "13322": 2.732317366, + "13323": 2.7360980962, + "13324": 2.7398773148, + "13325": 2.7436549295, + "13326": 2.747430856, + "13327": 2.7512050035, + "13328": 2.7549772886, + "13329": 2.7587476232, + "13330": 2.7625159259, + "13331": 2.7662821113, + "13332": 2.7700461001, + "13333": 2.7738078091, + "13334": 2.7775671641, + "13335": 2.7813240918, + "13336": 2.7850785269, + "13337": 2.7888304013, + "13338": 2.7925796523, + "13339": 2.7963262143, + "13340": 2.8000700265, + "13341": 2.8038110258, + "13342": 2.8075491533, + "13343": 2.8112843484, + "13344": 2.815016558, + "13345": 2.8187457345, + "13346": 2.8224718385, + "13347": 2.8261948291, + "13348": 2.8299146691, + "13349": 2.8336313197, + "13350": 2.8373447455, + "13351": 2.8410549093, + "13352": 2.8447617772, + "13353": 2.848465314, + "13354": 2.8521654888, + "13355": 2.8558622736, + "13356": 2.8595556452, + "13357": 2.8632455799, + "13358": 2.8669320563, + "13359": 2.8706150519, + "13360": 2.8742945462, + "13361": 2.8779705179, + "13362": 2.8816429474, + "13363": 2.8853118144, + "13364": 2.8889771027, + "13365": 2.8926388026, + "13366": 2.8962969106, + "13367": 2.8999514238, + "13368": 2.9036023399, + "13369": 2.907249656, + "13370": 2.9108933697, + "13371": 2.9145334784, + "13372": 2.9181699798, + "13373": 2.9218028711, + "13374": 2.9254321513, + "13375": 2.929057823, + "13376": 2.9326798926, + "13377": 2.9362983666, + "13378": 2.9399132514, + "13379": 2.9435245532, + "13380": 2.947132278, + "13381": 2.9507364314, + "13382": 2.9543370188, + "13383": 2.9579340452, + "13384": 2.9615275167, + "13385": 2.9651174431, + "13386": 2.9687038384, + "13387": 2.9722867168, + "13388": 2.9758660921, + "13389": 2.9794419773, + "13390": 2.9830143855, + "13391": 2.9865833287, + "13392": 2.9901488191, + "13393": 2.993710868, + "13394": 2.9972694869, + "13395": 3.0008246896, + "13396": 3.0043764928, + "13397": 3.0079249129, + "13398": 3.0114699662, + "13399": 3.0150116681, + "13400": 3.0185500339, + "13401": 3.0220850784, + "13402": 3.0256168158, + "13403": 3.0291452601, + "13404": 3.0326704249, + "13405": 3.0361923256, + "13406": 3.0397109791, + "13407": 3.0432264024, + "13408": 3.0467386125, + "13409": 3.0502476254, + "13410": 3.0537534573, + "13411": 3.0572561239, + "13412": 3.0607556406, + "13413": 3.0642520225, + "13414": 3.0677452847, + "13415": 3.0712354431, + "13416": 3.074722515, + "13417": 3.0782065179, + "13418": 3.0816874132, + "13419": 3.0851652854, + "13420": 3.088639556, + "13421": 3.0921109944, + "13422": 3.095573848, + "13423": 3.0990145378, + "13424": 3.1024179092, + "13425": 3.1057696484, + "13426": 3.1090563047, + "13427": 3.1122652718, + "13428": 3.1153847749, + "13429": 3.1184038552, + "13430": 3.1213123529, + "13431": 3.1241008892, + "13432": 3.1267608472, + "13433": 3.1292843518, + "13434": 3.1316642497, + "13435": 3.1338940875, + "13436": 3.1359680907, + "13437": 3.1378811411, + "13438": 3.1396287551, + "13439": 3.1412070612, + "13440": 3.1426127777, + "13441": 3.1438431901, + "13442": 3.1448961293, + "13443": 3.1457699492, + "13444": 3.1464635045, + "13445": 3.1469761288, + "13446": 3.1473076117, + "13447": 3.1474581789, + "13448": 3.1474284722, + "13449": 3.147219529, + "13450": 3.1468327623, + "13451": 3.1462699409, + "13452": 3.1455331703, + "13453": 3.1446248735, + "13454": 3.1435477728, + "13455": 3.1423048709, + "13456": 3.1408994324, + "13457": 3.1393349674, + "13458": 3.1376152144, + "13459": 3.1357441239, + "13460": 3.1337258424, + "13461": 3.1315646956, + "13462": 3.1292651735, + "13463": 3.1268319141, + "13464": 3.1242696889, + "13465": 3.1215833874, + "13466": 3.1187780015, + "13467": 3.1158586119, + "13468": 3.1128303747, + "13469": 3.1096985078, + "13470": 3.1064682774, + "13471": 3.1031449848, + "13472": 3.0997339536, + "13473": 3.096240517, + "13474": 3.0926700055, + "13475": 3.0890277347, + "13476": 3.0853189928, + "13477": 3.08154903, + "13478": 3.0777230479, + "13479": 3.0738461898, + "13480": 3.0699235303, + "13481": 3.0659600656, + "13482": 3.0619607052, + "13483": 3.0579302627, + "13484": 3.0538734481, + "13485": 3.0497948602, + "13486": 3.0456989792, + "13487": 3.0415901608, + "13488": 3.0374726307, + "13489": 3.0333504801, + "13490": 3.0292276613, + "13491": 3.0251079839, + "13492": 3.020995112, + "13493": 3.016892562, + "13494": 3.0128037005, + "13495": 3.008731744, + "13496": 3.0046797573, + "13497": 3.000650655, + "13498": 2.9966472018, + "13499": 2.9926720154, + "13500": 2.9887275682, + "13501": 2.9848161901, + "13502": 2.9809400724, + "13503": 2.9771012709, + "13504": 2.9733017111, + "13505": 2.9695431925, + "13506": 2.9658273939, + "13507": 2.9621558787, + "13508": 2.9585301013, + "13509": 2.9549514128, + "13510": 2.9514210675, + "13511": 2.9479402292, + "13512": 2.9445099778, + "13513": 2.9411313159, + "13514": 2.9378051753, + "13515": 2.9345324233, + "13516": 2.9313138694, + "13517": 2.928150271, + "13518": 2.9250423401, + "13519": 2.9219907486, + "13520": 2.9189961342, + "13521": 2.9160591052, + "13522": 2.9131802457, + "13523": 2.9103601199, + "13524": 2.9075992759, + "13525": 2.9048982497, + "13526": 2.9022575683, + "13527": 2.8996777522, + "13528": 2.8971593178, + "13529": 2.8947027789, + "13530": 2.892308648, + "13531": 2.889977437, + "13532": 2.8877096571, + "13533": 2.8855058192, + "13534": 2.8833664327, + "13535": 2.8812920043, + "13536": 2.8792830369, + "13537": 2.8773400276, + "13538": 2.8754634648, + "13539": 2.873653826, + "13540": 2.871911574, + "13541": 2.8702371541, + "13542": 2.8686309902, + "13543": 2.8670934808, + "13544": 2.8656249954, + "13545": 2.8642258699, + "13546": 2.8628964025, + "13547": 2.8616368492, + "13548": 2.8604474196, + "13549": 2.8593282724, + "13550": 2.8582795115, + "13551": 2.8573011814, + "13552": 2.8563932636, + "13553": 2.8555556727, + "13554": 2.8547882526, + "13555": 2.8540907738, + "13556": 2.8534629304, + "13557": 2.8529043381, + "13558": 2.8524145315, + "13559": 2.8519929623, + "13560": 2.8516389976, + "13561": 2.8513519192, + "13562": 2.8511309235, + "13563": 2.8509751212, + "13564": 2.8508835386, + "13565": 2.8508551183, + "13566": 2.8508887216, + "13567": 2.8509831306, + "13568": 2.8511370517, + "13569": 2.8513491179, + "13570": 2.851617894, + "13571": 2.8519418802, + "13572": 2.8523195177, + "13573": 2.852749194, + "13574": 2.8532292488, + "13575": 2.8537579807, + "13576": 2.8543336536, + "13577": 2.8549545047, + "13578": 2.8556187513, + "13579": 2.8563245987, + "13580": 2.8570702478, + "13581": 2.8578539035, + "13582": 2.8586737819, + "13583": 2.8595281194, + "13584": 2.8604151803, + "13585": 2.861333265, + "13586": 2.8622807181, + "13587": 2.8632559362, + "13588": 2.8642573754, + "13589": 2.8652835586, + "13590": 2.8663330823, + "13591": 2.8674046231, + "13592": 2.8684969438, + "13593": 2.869608899, + "13594": 2.8707394399, + "13595": 2.8718876193, + "13596": 2.8730525947, + "13597": 2.8742336324, + "13598": 2.8754301091, + "13599": 2.8766415146, + "13600": 2.8778674521, + "13601": 2.8791076387, + "13602": 2.8803619053, + "13603": 2.8816301952, + "13604": 2.8829125625, + "13605": 2.884209169, + "13606": 2.8855202812, + "13607": 2.8868462662, + "13608": 2.8881875868, + "13609": 2.889544796, + "13610": 2.8909185311, + "13611": 2.8923095067, + "13612": 2.8937185075, + "13613": 2.8951463806, + "13614": 2.8965940269, + "13615": 2.8980623923, + "13616": 2.8995524589, + "13617": 2.9010652348, + "13618": 2.9026017448, + "13619": 2.9041630199, + "13620": 2.905750087, + "13621": 2.9073639591, + "13622": 2.9090056238, + "13623": 2.9106760337, + "13624": 2.9123760954, + "13625": 2.9141066596, + "13626": 2.9158685106, + "13627": 2.9176623565, + "13628": 2.9194888197, + "13629": 2.9213484278, + "13630": 2.9232416043, + "13631": 2.9251686609, + "13632": 2.927129789, + "13633": 2.9291250531, + "13634": 2.9311543839, + "13635": 2.9332175723, + "13636": 2.9353142644, + "13637": 2.9374439566, + "13638": 2.9396059927, + "13639": 2.9417995602, + "13640": 2.9440236889, + "13641": 2.9462772497, + "13642": 2.9485589544, + "13643": 2.9508673562, + "13644": 2.9532008516, + "13645": 2.9555576825, + "13646": 2.9579359402, + "13647": 2.9603335693, + "13648": 2.9627483728, + "13649": 2.965178019, + "13650": 2.9676200475, + "13651": 2.9700718777, + "13652": 2.972530817, + "13653": 2.9749940702, + "13654": 2.9774587497, + "13655": 2.9799218858, + "13656": 2.9823804383, + "13657": 2.9848313078, + "13658": 2.9872713482, + "13659": 2.9896973794, + "13660": 2.9921062005, + "13661": 2.9944946031, + "13662": 2.9968593851, + "13663": 2.9991973641, + "13664": 3.0015053911, + "13665": 3.0037803645, + "13666": 3.0060192437, + "13667": 3.0082190623, + "13668": 3.010376942, + "13669": 3.0124901052, + "13670": 3.0145558873, + "13671": 3.016571749, + "13672": 3.0185352881, + "13673": 3.02044425, + "13674": 3.0222965386, + "13675": 3.0240902262, + "13676": 3.0258235618, + "13677": 3.0274949801, + "13678": 3.0291031085, + "13679": 3.0306467739, + "13680": 3.0321250082, + "13681": 3.0335370535, + "13682": 3.0348823656, + "13683": 3.0361606171, + "13684": 3.0373716996, + "13685": 3.0385157242, + "13686": 3.0395930222, + "13687": 3.0406041438, + "13688": 3.0415498563, + "13689": 3.0424311417, + "13690": 3.0432491925, + "13691": 3.0440054076, + "13692": 3.0447013862, + "13693": 3.0453389222, + "13694": 3.0459199967, + "13695": 3.0464467704, + "13696": 3.0469215746, + "13697": 3.0473469024, + "13698": 3.0477253985, + "13699": 3.0480598488, + "13700": 3.0483531693, + "13701": 3.0486083944, + "13702": 3.0488286649, + "13703": 3.0490172157, + "13704": 3.0493056451, + "13705": 3.0508587335, + "13706": 3.0534040214, + "13707": 3.057081398, + "13708": 3.0618237822, + "13709": 3.067666787, + "13710": 3.0745938922, + "13711": 3.0826138607, + "13712": 3.0917220314, + "13713": 3.101919673, + "13714": 3.1132043049, + "13715": 3.1255745339, + "13716": 3.1390276317, + "13717": 3.1535607403, + "13718": 3.1691702624, + "13719": 3.1858521587, + "13720": 3.2036017906, + "13721": 3.2224139889, + "13722": 3.2422830098, + "13723": 3.2632025456, + "13724": 3.285165708, + "13725": 3.3081650248, + "13726": 3.3321924296, + "13727": 3.3572392548, + "13728": 3.3832962229, + "13729": 3.4103534392, + "13730": 3.4384003839, + "13731": 3.4674259051, + "13732": 3.4974182121, + "13733": 3.5283648691, + "13734": 3.5602527899, + "13735": 3.593068233, + "13736": 3.6267967981, + "13737": 3.6614234228, + "13738": 3.696932381, + "13739": 3.7333072821, + "13740": 3.7705310714, + "13741": 3.8085860327, + "13742": 3.8474537907, + "13743": 3.8871153162, + "13744": 3.9275509318, + "13745": 3.9687403202, + "13746": 4.0106625323, + "13747": 4.0532959991, + "13748": 4.096618543, + "13749": 4.1406073923, + "13750": 4.1852391962, + "13751": 4.2304900429, + "13752": 4.2763354774, + "13753": 4.3227505222, + "13754": 4.3697096989, + "13755": 4.4171870511, + "13756": 4.4651561692, + "13757": 4.5135902158, + "13758": 4.5624619525, + "13759": 4.6117437676, + "13760": 4.6614077056, + "13761": 4.7114254978, + "13762": 4.7617685933, + "13763": 4.8124081902, + "13764": 4.8633152684, + "13765": 4.9144606222, + "13766": 4.9658148936, + "13767": 5.0173486057, + "13768": 5.0690321954, + "13769": 5.1208360473, + "13770": 5.1727305271, + "13771": 5.2246860155, + "13772": 5.2766729412, + "13773": 5.3286618134, + "13774": 5.3806232536, + "13775": 5.4325280269, + "13776": 5.4843470727, + "13777": 5.536051534, + "13778": 5.5876127857, + "13779": 5.6390024624, + "13780": 5.6901924845, + "13781": 5.7411550836, + "13782": 5.7918628267, + "13783": 5.8422886383, + "13784": 5.8924058216, + "13785": 5.9421880786, + "13786": 5.9916095277, + "13787": 6.0406447208, + "13788": 6.0892686584, + "13789": 6.1374568032, + "13790": 6.1851850924, + "13791": 6.2324299488, + "13792": 6.2791682897, + "13793": 6.3253775354, + "13794": 6.3710356154, + "13795": 6.4161209743, + "13796": 6.4606125758, + "13797": 6.5044899062, + "13798": 6.5477329761, + "13799": 6.5903223218, + "13800": 6.6322390063, + "13801": 6.6734646197, + "13802": 6.7139812788, + "13803": 6.7537716269, + "13804": 6.7928188334, + "13805": 6.8311065928, + "13806": 6.8686191251, + "13807": 6.9053411755, + "13808": 6.9412580156, + "13809": 6.9763554449, + "13810": 7.0106197935, + "13811": 7.0440379253, + "13812": 7.0765972435, + "13813": 7.1082856965, + "13814": 7.1390917859, + "13815": 7.1690045762, + "13816": 7.198013706, + "13817": 7.2261094013, + "13818": 7.2532824908, + "13819": 7.2795244231, + "13820": 7.3048272861, + "13821": 7.3291838271, + "13822": 7.352587476, + "13823": 7.3750323696, + "13824": 7.3965133779, + "13825": 7.4170261324, + "13826": 7.4365670547, + "13827": 7.4551333874, + "13828": 7.4727232254, + "13829": 7.4893355483, + "13830": 7.5049702528, + "13831": 7.519628185, + "13832": 7.5333111726, + "13833": 7.5460220566, + "13834": 7.5577647219, + "13835": 7.5685441266, + "13836": 7.5783663297, + "13837": 7.5872385162, + "13838": 7.59516902, + "13839": 7.6021673455, + "13840": 7.6082441841, + "13841": 7.6134114251, + "13842": 7.6176821647, + "13843": 7.6210707093, + "13844": 7.6235925755, + "13845": 7.6252644846, + "13846": 7.6261043511, + "13847": 7.6261312673, + "13848": 7.625365481, + "13849": 7.6238283683, + "13850": 7.6215424008, + "13851": 7.6185311055, + "13852": 7.6148190203, + "13853": 7.6104316434, + "13854": 7.6053953768, + "13855": 7.5997374657, + "13856": 7.5934859312, + "13857": 7.5866694997, + "13858": 7.5793175271, + "13859": 7.571459921, + "13860": 7.5631270579, + "13861": 7.5543496948, + "13862": 7.5451588788, + "13863": 7.535585856, + "13864": 7.5256619778, + "13865": 7.5154186072, + "13866": 7.5048870237, + "13867": 7.494098329, + "13868": 7.483083353, + "13869": 7.471872562, + "13870": 7.4604959677, + "13871": 7.4489830392, + "13872": 7.4373626177, + "13873": 7.4256628347, + "13874": 7.4139110356, + "13875": 7.4021337064, + "13876": 7.3903564069, + "13877": 7.3786037086, + "13878": 7.3668991392, + "13879": 7.3552651346, + "13880": 7.3437229973, + "13881": 7.3322928592, + "13882": 7.3209936526, + "13883": 7.3098430897, + "13884": 7.2988576483, + "13885": 7.2880525667, + "13886": 7.2774418454, + "13887": 7.2670382565, + "13888": 7.2568533607, + "13889": 7.2468975325, + "13890": 7.2371799925, + "13891": 7.2277088447, + "13892": 7.2184911215, + "13893": 7.2095328346, + "13894": 7.2008390319, + "13895": 7.1924138597, + "13896": 7.1842606297, + "13897": 7.1763818899, + "13898": 7.1687794989, + "13899": 7.1614547056, + "13900": 7.1544082297, + "13901": 7.1476403417, + "13902": 7.1411509421, + "13903": 7.1349396422, + "13904": 7.1290058412, + "13905": 7.1233488032, + "13906": 7.1179677306, + "13907": 7.1128618342, + "13908": 7.1080303985, + "13909": 7.1034728413, + "13910": 7.0991887671, + "13911": 7.0951780129, + "13912": 7.0914406868, + "13913": 7.0879771973, + "13914": 7.084788274, + "13915": 7.0818749785, + "13916": 7.0792387048, + "13917": 7.0768811702, + "13918": 7.0748043945, + "13919": 7.0730106691, + "13920": 7.071164369, + "13921": 7.0688196527, + "13922": 7.0658196793, + "13923": 7.0621596374, + "13924": 7.057841544, + "13925": 7.0528662448, + "13926": 7.0472350114, + "13927": 7.040949222, + "13928": 7.0340104248, + "13929": 7.0264203248, + "13930": 7.0181807863, + "13931": 7.0092938315, + "13932": 6.9997616408, + "13933": 6.9895865519, + "13934": 6.9787710595, + "13935": 6.9673178152, + "13936": 6.9552296264, + "13937": 6.942509456, + "13938": 6.9291604219, + "13939": 6.9151857961, + "13940": 6.9005890027, + "13941": 6.8853736176, + "13942": 6.8695433688, + "13943": 6.8531021366, + "13944": 6.8360539527, + "13945": 6.8184029994, + "13946": 6.8001536089, + "13947": 6.7813102627, + "13948": 6.7618775907, + "13949": 6.7418603705, + "13950": 6.7212635262, + "13951": 6.7000921281, + "13952": 6.6783513914, + "13953": 6.6560466759, + "13954": 6.6331834845, + "13955": 6.6097674624, + "13956": 6.5858043966, + "13957": 6.5613002142, + "13958": 6.5362609818, + "13959": 6.5106929042, + "13960": 6.4846023228, + "13961": 6.4579957142, + "13962": 6.4308796906, + "13963": 6.403260998, + "13964": 6.3751465153, + "13965": 6.3465432528, + "13966": 6.3174583508, + "13967": 6.2878990781, + "13968": 6.2578728305, + "13969": 6.2273871298, + "13970": 6.1964496212, + "13971": 6.1650680728, + "13972": 6.1332503734, + "13973": 6.101004531, + "13974": 6.0683386711, + "13975": 6.0352610351, + "13976": 6.0017799781, + "13977": 5.9679039677, + "13978": 5.9336415817, + "13979": 5.8990015061, + "13980": 5.8639925339, + "13981": 5.8286235627, + "13982": 5.7929035926, + "13983": 5.7568417242, + "13984": 5.7204471559, + "13985": 5.6837291825, + "13986": 5.6466971925, + "13987": 5.6093606662, + "13988": 5.5717291732, + "13989": 5.5338123704, + "13990": 5.495619999, + "13991": 5.4571618828, + "13992": 5.4184479253, + "13993": 5.3794881076, + "13994": 5.3402924859, + "13995": 5.3008711893, + "13996": 5.2612344167, + "13997": 5.2213924347, + "13998": 5.1813555746, + "13999": 5.1411342303, + "14000": 24.0503247536, + "14001": 24.0534313638, + "14002": 24.0566313906, + "14003": 24.0599176888, + "14004": 24.0632819965, + "14005": 24.0667162624, + "14006": 24.0702123821, + "14007": 24.073762254, + "14008": 24.0773577701, + "14009": 24.0809908211, + "14010": 24.0846532968, + "14011": 24.0883370892, + "14012": 24.0920340938, + "14013": 24.095736212, + "14014": 24.0994353526, + "14015": 24.103123434, + "14016": 24.1067923864, + "14017": 24.1104341531, + "14018": 24.1140406933, + "14019": 24.1176039836, + "14020": 24.1211160199, + "14021": 24.1250683168, + "14022": 24.130131957, + "14023": 24.1364245829, + "14024": 24.1439083037, + "14025": 24.1525763715, + "14026": 24.1624158718, + "14027": 24.1734151835, + "14028": 24.1855624891, + "14029": 24.198846075, + "14030": 24.2132542734, + "14031": 24.228791368, + "14032": 24.245474978, + "14033": 24.2632998561, + "14034": 24.2822531385, + "14035": 24.3023235646, + "14036": 24.3234996358, + "14037": 24.345769985, + "14038": 24.3691233027, + "14039": 24.3935483531, + "14040": 24.4190339711, + "14041": 24.4461237169, + "14042": 24.4762469939, + "14043": 24.5097361842, + "14044": 24.5465031966, + "14045": 24.5865441086, + "14046": 24.6298383026, + "14047": 24.6763686274, + "14048": 24.726117369, + "14049": 24.7790670574, + "14050": 24.8352003061, + "14051": 24.8945308527, + "14052": 24.9571659158, + "14053": 25.0231206683, + "14054": 25.092371054, + "14055": 25.164900998, + "14056": 25.240692971, + "14057": 25.3197298768, + "14058": 25.4019946758, + "14059": 25.4874704609, + "14060": 25.5761404437, + "14061": 25.6681533134, + "14062": 25.7647404662, + "14063": 25.8662309552, + "14064": 25.9725330721, + "14065": 26.0836393815, + "14066": 26.1995257783, + "14067": 26.320171664, + "14068": 26.4455559148, + "14069": 26.5756576879, + "14070": 26.7104562614, + "14071": 26.8499361077, + "14072": 26.9942396287, + "14073": 27.1433941449, + "14074": 27.2973692456, + "14075": 27.456146241, + "14076": 27.6197042814, + "14077": 27.7880231315, + "14078": 27.9610826164, + "14079": 28.1388627324, + "14080": 28.3213436257, + "14081": 28.5085055961, + "14082": 28.6997085129, + "14083": 28.8947086417, + "14084": 29.093514608, + "14085": 29.2961048523, + "14086": 29.5024640213, + "14087": 29.712575695, + "14088": 29.9264238401, + "14089": 30.1439925202, + "14090": 30.3652659535, + "14091": 30.5902285017, + "14092": 30.8187705294, + "14093": 31.0508319189, + "14094": 31.2863985064, + "14095": 31.5254555481, + "14096": 31.7679885897, + "14097": 32.013983292, + "14098": 32.2634254663, + "14099": 32.5163010674, + "14100": 32.7725961948, + "14101": 33.0322970926, + "14102": 33.2938551223, + "14103": 33.5563096866, + "14104": 33.8195998472, + "14105": 34.0837313618, + "14106": 34.3486968012, + "14107": 34.6144915166, + "14108": 34.8811104489, + "14109": 35.1485487665, + "14110": 35.4168017383, + "14111": 35.6858647599, + "14112": 35.9553767055, + "14113": 36.2255955067, + "14114": 36.4963473476, + "14115": 36.7677051013, + "14116": 37.0396319011, + "14117": 37.3121430415, + "14118": 37.5852282885, + "14119": 37.8588900722, + "14120": 38.1331245211, + "14121": 38.4079309188, + "14122": 38.6820513088, + "14123": 38.9541860054, + "14124": 39.224138693, + "14125": 39.4919566686, + "14126": 39.7576384535, + "14127": 40.0211923233, + "14128": 40.2826245651, + "14129": 40.5419418464, + "14130": 40.7991507307, + "14131": 41.0542577801, + "14132": 41.3071136391, + "14133": 41.557512887, + "14134": 41.8054228034, + "14135": 42.0508591966, + "14136": 42.2938281468, + "14137": 42.5343376499, + "14138": 42.7723952908, + "14139": 43.008008708, + "14140": 43.2411855011, + "14141": 43.4719332494, + "14142": 43.6998788683, + "14143": 43.9243312285, + "14144": 44.1451482579, + "14145": 44.3623718074, + "14146": 44.5760069245, + "14147": 44.7860659714, + "14148": 44.9925598067, + "14149": 45.1954995481, + "14150": 45.3948962206, + "14151": 45.5907608265, + "14152": 45.7830481052, + "14153": 45.9716229674, + "14154": 46.1564614976, + "14155": 46.337582377, + "14156": 46.5149957297, + "14157": 46.6887133473, + "14158": 46.8587466449, + "14159": 47.0251070705, + "14160": 47.1878060227, + "14161": 47.3468548676, + "14162": 47.5022827407, + "14163": 47.654172358, + "14164": 47.8025534763, + "14165": 47.9474332242, + "14166": 48.0888232124, + "14167": 48.2267341157, + "14168": 48.3611767554, + "14169": 48.4921618834, + "14170": 48.6197002254, + "14171": 48.7438024727, + "14172": 48.8644819091, + "14173": 48.9817689751, + "14174": 49.0956797474, + "14175": 49.2062235864, + "14176": 49.3134111561, + "14177": 49.4172528212, + "14178": 49.5177589674, + "14179": 49.6149399379, + "14180": 49.7088060459, + "14181": 49.7993675725, + "14182": 49.8866525448, + "14183": 49.9712453539, + "14184": 50.0533240199, + "14185": 50.1328624247, + "14186": 50.2098752231, + "14187": 50.2843688915, + "14188": 50.3563515118, + "14189": 50.4258308163, + "14190": 50.4928145784, + "14191": 50.5573105345, + "14192": 50.6193263999, + "14193": 50.6790298432, + "14194": 50.7364863692, + "14195": 50.7916964465, + "14196": 50.8446683401, + "14197": 50.8954087312, + "14198": 50.9439245917, + "14199": 50.9902228102, + "14200": 51.0343102662, + "14201": 51.0761938157, + "14202": 51.1158802941, + "14203": 51.1539121776, + "14204": 51.1905510172, + "14205": 51.2257977093, + "14206": 51.2596572568, + "14207": 51.292133826, + "14208": 51.3232317345, + "14209": 51.3529552541, + "14210": 51.3813086497, + "14211": 51.4082961719, + "14212": 51.4339220584, + "14213": 51.4582918845, + "14214": 51.4814723974, + "14215": 51.5034709414, + "14216": 51.5242904541, + "14217": 51.5439347401, + "14218": 51.562407417, + "14219": 51.5797121266, + "14220": 51.595852492, + "14221": 51.6108321268, + "14222": 51.624654633, + "14223": 51.6376831872, + "14224": 51.6502079679, + "14225": 51.6622629307, + "14226": 51.6738430627, + "14227": 51.6849511341, + "14228": 51.6955883542, + "14229": 51.7057562388, + "14230": 51.7154562367, + "14231": 51.7246898051, + "14232": 51.7334583936, + "14233": 51.7418368376, + "14234": 51.7499024528, + "14235": 51.7576680409, + "14236": 51.7651321725, + "14237": 51.7722962589, + "14238": 51.7791611405, + "14239": 51.785727768, + "14240": 51.7919970667, + "14241": 51.7979699635, + "14242": 51.8036473813, + "14243": 51.8091045037, + "14244": 51.8144432108, + "14245": 51.8196831017, + "14246": 51.8248206455, + "14247": 51.8298569334, + "14248": 51.8347921316, + "14249": 51.8396265901, + "14250": 51.8443606209, + "14251": 51.8489945426, + "14252": 51.8535286712, + "14253": 51.8579836712, + "14254": 51.8623972074, + "14255": 51.86677759, + "14256": 51.8711232944, + "14257": 51.8754347617, + "14258": 51.8797120395, + "14259": 51.883955254, + "14260": 51.8881645152, + "14261": 51.8923399362, + "14262": 51.8964816291, + "14263": 51.9005681184, + "14264": 51.9045434531, + "14265": 51.9083943804, + "14266": 51.9121240149, + "14267": 51.9157321988, + "14268": 51.9192194269, + "14269": 51.9225860625, + "14270": 51.9258324939, + "14271": 51.928959103, + "14272": 51.931966272, + "14273": 51.9348482912, + "14274": 51.9375811099, + "14275": 51.9401587779, + "14276": 51.9425830721, + "14277": 51.9448542229, + "14278": 51.9469727685, + "14279": 51.9489391838, + "14280": 51.9507539546, + "14281": 51.9524175632, + "14282": 51.9539304906, + "14283": 51.9552592982, + "14284": 51.9561484823, + "14285": 51.9565276533, + "14286": 51.9564127539, + "14287": 51.9558024655, + "14288": 51.9546989141, + "14289": 51.9531035317, + "14290": 51.9510178831, + "14291": 51.9484435014, + "14292": 51.94538192, + "14293": 51.9418308354, + "14294": 51.9376680278, + "14295": 51.9328588456, + "14296": 51.9274126214, + "14297": 51.9213298887, + "14298": 51.9146129327, + "14299": 51.907263681, + "14300": 51.8992841253, + "14301": 51.8906762373, + "14302": 51.8814419853, + "14303": 51.8715833309, + "14304": 51.8609068713, + "14305": 51.8493439309, + "14306": 51.8369052202, + "14307": 51.8235918934, + "14308": 51.8094070053, + "14309": 51.7943532202, + "14310": 51.7784332701, + "14311": 51.7616498631, + "14312": 51.744005702, + "14313": 51.7255034799, + "14314": 51.7060582369, + "14315": 51.6856309656, + "14316": 51.6642252952, + "14317": 51.6418441707, + "14318": 51.6184906624, + "14319": 51.5941678036, + "14320": 51.5688786235, + "14321": 51.542626163, + "14322": 51.5154134076, + "14323": 51.4872433567, + "14324": 51.4580556573, + "14325": 51.427814203, + "14326": 51.396519996, + "14327": 51.3641767808, + "14328": 51.3307877373, + "14329": 51.2963561486, + "14330": 51.2608852607, + "14331": 51.2243783173, + "14332": 51.1868385467, + "14333": 51.1482691703, + "14334": 51.1087320604, + "14335": 51.068277173, + "14336": 51.0269126488, + "14337": 50.9846402647, + "14338": 50.9414630561, + "14339": 50.8973837974, + "14340": 50.852405302, + "14341": 50.8065303659, + "14342": 50.7597617757, + "14343": 50.7121023105, + "14344": 50.6636507118, + "14345": 50.6145089631, + "14346": 50.5646946724, + "14347": 50.5142068358, + "14348": 50.4630481596, + "14349": 50.4112206015, + "14350": 50.3587262588, + "14351": 50.3055671942, + "14352": 50.2517454674, + "14353": 50.1972631317, + "14354": 50.1421655159, + "14355": 50.0865135036, + "14356": 50.0303200143, + "14357": 49.9735844823, + "14358": 49.9163090298, + "14359": 49.8584952357, + "14360": 49.8001447801, + "14361": 49.7412593174, + "14362": 49.6818404995, + "14363": 49.6218899732, + "14364": 49.5614870416, + "14365": 49.5007758885, + "14366": 49.4397886602, + "14367": 49.3785199673, + "14368": 49.3169719193, + "14369": 49.2551451239, + "14370": 49.1930404854, + "14371": 49.1306588461, + "14372": 49.0680010571, + "14373": 49.005067965, + "14374": 48.9418961556, + "14375": 48.8785792923, + "14376": 48.8151403425, + "14377": 48.7515751722, + "14378": 48.6878850627, + "14379": 48.624070212, + "14380": 48.5601310332, + "14381": 48.4960678956, + "14382": 48.4318811757, + "14383": 48.3675712477, + "14384": 48.3031686827, + "14385": 48.2387949855, + "14386": 48.1744819094, + "14387": 48.1102228919, + "14388": 48.0460190301, + "14389": 47.9818698911, + "14390": 47.9177753489, + "14391": 47.8537352173, + "14392": 47.7897493229, + "14393": 47.7258174911, + "14394": 47.6619508474, + "14395": 47.5982344938, + "14396": 47.5346918667, + "14397": 47.4713176436, + "14398": 47.4081122525, + "14399": 47.3450749745, + "14400": 47.2822053221, + "14401": 47.219502764, + "14402": 47.1569667798, + "14403": 47.0945968495, + "14404": 47.0323944635, + "14405": 46.970423981, + "14406": 46.9087038513, + "14407": 46.8472294639, + "14408": 46.7860008206, + "14409": 46.7250170041, + "14410": 46.6642772844, + "14411": 46.6037808968, + "14412": 46.5435270866, + "14413": 46.4835151003, + "14414": 46.4237441869, + "14415": 46.3642568318, + "14416": 46.3050679197, + "14417": 46.2461747682, + "14418": 46.1875768518, + "14419": 46.1292731348, + "14420": 46.0712631568, + "14421": 46.01354545, + "14422": 45.9561233546, + "14423": 45.8990059606, + "14424": 45.8422034908, + "14425": 45.7857255776, + "14426": 45.7295811573, + "14427": 45.6737784886, + "14428": 45.618325193, + "14429": 45.5632282681, + "14430": 45.508494102, + "14431": 45.4541284883, + "14432": 45.4001366422, + "14433": 45.3465232166, + "14434": 45.2932923192, + "14435": 45.2404521196, + "14436": 45.1880085194, + "14437": 45.1359642379, + "14438": 45.0843213205, + "14439": 45.0330813955, + "14440": 44.9822456443, + "14441": 44.9318148284, + "14442": 44.8817893056, + "14443": 44.8321690475, + "14444": 44.7829536569, + "14445": 44.7341117073, + "14446": 44.6856176639, + "14447": 44.637467533, + "14448": 44.5896603421, + "14449": 44.542194168, + "14450": 44.4950669493, + "14451": 44.4482763424, + "14452": 44.4018197687, + "14453": 44.3556944221, + "14454": 44.3098972856, + "14455": 44.2644079218, + "14456": 44.2192051261, + "14457": 44.1742826626, + "14458": 44.1296374765, + "14459": 44.0852657005, + "14460": 44.0411634683, + "14461": 43.9973267664, + "14462": 43.9537514786, + "14463": 43.9104333906, + "14464": 43.8673682034, + "14465": 43.8245331879, + "14466": 43.7818989527, + "14467": 43.7394563913, + "14468": 43.6972020719, + "14469": 43.6551313878, + "14470": 43.6132399387, + "14471": 43.5715232665, + "14472": 43.5299769194, + "14473": 43.4885964502, + "14474": 43.4473774278, + "14475": 43.4063021947, + "14476": 43.3653420554, + "14477": 43.32448747, + "14478": 43.2837353505, + "14479": 43.2430813851, + "14480": 43.2025215806, + "14481": 43.1620519626, + "14482": 43.1216686433, + "14483": 43.081367815, + "14484": 43.0411457585, + "14485": 43.0009918033, + "14486": 42.9608841272, + "14487": 42.9208149424, + "14488": 42.8807819082, + "14489": 42.840781725, + "14490": 42.8008114187, + "14491": 42.7608680866, + "14492": 42.7209489504, + "14493": 42.6810513476, + "14494": 42.641172734, + "14495": 42.6013060027, + "14496": 42.5614300676, + "14497": 42.521537874, + "14498": 42.4816284232, + "14499": 42.4416996441, + "14500": 42.4017498154, + "14501": 42.3617772784, + "14502": 42.3217804915, + "14503": 42.2817580151, + "14504": 42.2417085106, + "14505": 42.2016299012, + "14506": 42.1615147361, + "14507": 42.1213602095, + "14508": 42.0811657246, + "14509": 42.0409303385, + "14510": 42.0006532672, + "14511": 41.9603337788, + "14512": 41.9199712086, + "14513": 41.8795649504, + "14514": 41.839114452, + "14515": 41.7986190164, + "14516": 41.7580719182, + "14517": 41.7174709062, + "14518": 41.6768159915, + "14519": 41.6361067704, + "14520": 41.5953429546, + "14521": 41.5545242601, + "14522": 41.5136504257, + "14523": 41.4727212047, + "14524": 41.431736363, + "14525": 41.3906956764, + "14526": 41.3496027068, + "14527": 41.3084586091, + "14528": 41.267263006, + "14529": 41.2260157076, + "14530": 41.1847164886, + "14531": 41.1433651326, + "14532": 41.1019614223, + "14533": 41.060505142, + "14534": 41.0189960776, + "14535": 40.9774340176, + "14536": 40.9358232612, + "14537": 40.894165749, + "14538": 40.8524612358, + "14539": 40.8107095197, + "14540": 40.7689104033, + "14541": 40.7270637041, + "14542": 40.6851692557, + "14543": 40.6432269107, + "14544": 40.6012365438, + "14545": 40.5591980546, + "14546": 40.5171105571, + "14547": 40.4749735083, + "14548": 40.432786876, + "14549": 40.3905507011, + "14550": 40.3482650575, + "14551": 40.305930064, + "14552": 40.2635458852, + "14553": 40.2211127345, + "14554": 40.1786308764, + "14555": 40.1361006292, + "14556": 40.093535858, + "14557": 40.0509477466, + "14558": 40.0083379243, + "14559": 39.9657066182, + "14560": 39.9230544084, + "14561": 39.8803818778, + "14562": 39.8376896822, + "14563": 39.7949785357, + "14564": 39.7522492133, + "14565": 39.7095025488, + "14566": 39.6667433758, + "14567": 39.623976717, + "14568": 39.581204183, + "14569": 39.5384266709, + "14570": 39.4956452778, + "14571": 39.4528611143, + "14572": 39.4100753375, + "14573": 39.367289139, + "14574": 39.3245037421, + "14575": 39.2817203969, + "14576": 39.2389447912, + "14577": 39.1961842167, + "14578": 39.1534410831, + "14579": 39.1107164294, + "14580": 39.0680115689, + "14581": 39.0253277536, + "14582": 38.9826662336, + "14583": 38.9400282388, + "14584": 38.8974149748, + "14585": 38.854827617, + "14586": 38.8122687114, + "14587": 38.769741938, + "14588": 38.7272489, + "14589": 38.6847904686, + "14590": 38.6423675935, + "14591": 38.5999811355, + "14592": 38.5576318949, + "14593": 38.5153206007, + "14594": 38.4730479087, + "14595": 38.4308143981, + "14596": 38.3886220798, + "14597": 38.3464752954, + "14598": 38.3043753164, + "14599": 38.262322185, + "14600": 38.220316088, + "14601": 38.1783570819, + "14602": 38.1364451488, + "14603": 38.094580186, + "14604": 38.0527620102, + "14605": 38.0109903589, + "14606": 37.9692650429, + "14607": 37.9275862487, + "14608": 37.8859536506, + "14609": 37.8443666687, + "14610": 37.8028247007, + "14611": 37.7613270816, + "14612": 37.7198730984, + "14613": 37.6784619939, + "14614": 37.6370929738, + "14615": 37.5957652131, + "14616": 37.554477964, + "14617": 37.513231125, + "14618": 37.4720240324, + "14619": 37.4308557629, + "14620": 37.3897254502, + "14621": 37.3486322312, + "14622": 37.3075752654, + "14623": 37.2665537408, + "14624": 37.2255668816, + "14625": 37.1846139556, + "14626": 37.1436942542, + "14627": 37.1028062661, + "14628": 37.0619491739, + "14629": 37.0211225471, + "14630": 36.9803259702, + "14631": 36.939559124, + "14632": 36.8988217762, + "14633": 36.8581137891, + "14634": 36.8174351239, + "14635": 36.7767858447, + "14636": 36.7361661222, + "14637": 36.6955746468, + "14638": 36.6550112356, + "14639": 36.6144764652, + "14640": 36.5739709492, + "14641": 36.5334954318, + "14642": 36.493050769, + "14643": 36.4526379313, + "14644": 36.4122580017, + "14645": 36.3719121735, + "14646": 36.3316017473, + "14647": 36.2913270346, + "14648": 36.2510890196, + "14649": 36.2108893136, + "14650": 36.1707296088, + "14651": 36.1306116827, + "14652": 36.0905373894, + "14653": 36.0505086529, + "14654": 36.0105274592, + "14655": 35.9705958488, + "14656": 35.9307159078, + "14657": 35.8908833766, + "14658": 35.8510964675, + "14659": 35.8113571516, + "14660": 35.7716676856, + "14661": 35.7320302691, + "14662": 35.692447102, + "14663": 35.6529203602, + "14664": 35.6134521891, + "14665": 35.5740446925, + "14666": 35.534699923, + "14667": 35.4954233622, + "14668": 35.4562197127, + "14669": 35.4170911103, + "14670": 35.378039224, + "14671": 35.3390657006, + "14672": 35.3001720661, + "14673": 35.2613597362, + "14674": 35.2226300049, + "14675": 35.1839840384, + "14676": 35.1454228693, + "14677": 35.1069465586, + "14678": 35.0685549944, + "14679": 35.030248647, + "14680": 34.9920279949, + "14681": 34.9538933285, + "14682": 34.9158447864, + "14683": 34.8778823458, + "14684": 34.8400058232, + "14685": 34.8022148738, + "14686": 34.7645089921, + "14687": 34.7268879578, + "14688": 34.6893515527, + "14689": 34.6518989104, + "14690": 34.6145288738, + "14691": 34.5772401651, + "14692": 34.5400313573, + "14693": 34.5029008858, + "14694": 34.4658470525, + "14695": 34.4288680326, + "14696": 34.3919618811, + "14697": 34.3551273706, + "14698": 34.3183638618, + "14699": 34.2816694206, + "14700": 34.2450416227, + "14701": 34.2084780438, + "14702": 34.1719761729, + "14703": 34.1355334407, + "14704": 34.099052809, + "14705": 34.0616770997, + "14706": 34.0236094797, + "14707": 33.9847490038, + "14708": 33.9451470621, + "14709": 33.9047796285, + "14710": 33.8636612177, + "14711": 33.8217876767, + "14712": 33.7791647461, + "14713": 33.7357937856, + "14714": 33.6916789095, + "14715": 33.6468234196, + "14716": 33.6012315901, + "14717": 33.5549074851, + "14718": 33.5078548179, + "14719": 33.4600784822, + "14720": 33.4115841685, + "14721": 33.3623778658, + "14722": 33.3124659833, + "14723": 33.2618553222, + "14724": 33.2105530909, + "14725": 33.1585669056, + "14726": 33.1059047963, + "14727": 33.0525750443, + "14728": 32.99858526, + "14729": 32.9439443928, + "14730": 32.8886622486, + "14731": 32.8327489843, + "14732": 32.7762152126, + "14733": 32.7190719851, + "14734": 32.6613307991, + "14735": 32.6030035991, + "14736": 32.5441027778, + "14737": 32.4846410659, + "14738": 32.4246281552, + "14739": 32.3640767332, + "14740": 32.3030012136, + "14741": 32.2414161983, + "14742": 32.1793367801, + "14743": 32.116778477, + "14744": 32.0537572388, + "14745": 31.9902894369, + "14746": 31.9263918578, + "14747": 31.8620816931, + "14748": 31.7973729614, + "14749": 31.732282343, + "14750": 31.6668283391, + "14751": 31.6010296337, + "14752": 31.5349052881, + "14753": 31.4684746828, + "14754": 31.4017575092, + "14755": 31.33477375, + "14756": 31.2675436604, + "14757": 31.2000877485, + "14758": 31.1324173131, + "14759": 31.0645488153, + "14760": 30.9965034989, + "14761": 30.9283027008, + "14762": 30.8599679149, + "14763": 30.7915207511, + "14764": 30.7229829144, + "14765": 30.6543761798, + "14766": 30.5857223681, + "14767": 30.5170433205, + "14768": 30.4483507022, + "14769": 30.3796600455, + "14770": 30.3109927909, + "14771": 30.2423707422, + "14772": 30.1738155132, + "14773": 30.1053486101, + "14774": 30.0369913867, + "14775": 29.9687650269, + "14776": 29.9006905211, + "14777": 29.8327886458, + "14778": 29.7650761597, + "14779": 29.6975703355, + "14780": 29.6302908689, + "14781": 29.5632575751, + "14782": 29.4964898802, + "14783": 29.430006904, + "14784": 29.3638274256, + "14785": 29.2979698741, + "14786": 29.2324523153, + "14787": 29.1672924407, + "14788": 29.1025064572, + "14789": 29.0381101411, + "14790": 28.9741198348, + "14791": 28.9105516863, + "14792": 28.8474213875, + "14793": 28.7847442206, + "14794": 28.7225350445, + "14795": 28.6608082938, + "14796": 28.5995779767, + "14797": 28.5388576742, + "14798": 28.4786569502, + "14799": 28.4189836508, + "14800": 28.3598491722, + "14801": 28.3012656027, + "14802": 28.243244383, + "14803": 28.1857965757, + "14804": 28.1289328136, + "14805": 28.0726633121, + "14806": 28.0169978682, + "14807": 27.9619458625, + "14808": 27.9075165645, + "14809": 27.8537190831, + "14810": 27.8005616699, + "14811": 27.748052011, + "14812": 27.6961974019, + "14813": 27.6450047081, + "14814": 27.5944803683, + "14815": 27.5446303869, + "14816": 27.4954603274, + "14817": 27.4469753038, + "14818": 27.3991811954, + "14819": 27.3520853659, + "14820": 27.3056922744, + "14821": 27.2600049551, + "14822": 27.2150261154, + "14823": 27.1707578973, + "14824": 27.1272019037, + "14825": 27.0843591709, + "14826": 27.0422301506, + "14827": 27.0008146886, + "14828": 26.960112657, + "14829": 26.9201252452, + "14830": 26.8808510313, + "14831": 26.8422870729, + "14832": 26.8044298789, + "14833": 26.7672751903, + "14834": 26.730817999, + "14835": 26.6950525213, + "14836": 26.6599721809, + "14837": 26.6255695928, + "14838": 26.5918383665, + "14839": 26.5587831754, + "14840": 26.5263979274, + "14841": 26.4946710523, + "14842": 26.4635910499, + "14843": 26.4331453794, + "14844": 26.4033206847, + "14845": 26.3741027566, + "14846": 26.3454765523, + "14847": 26.3174262078, + "14848": 26.2899351887, + "14849": 26.2629902915, + "14850": 26.2365745579, + "14851": 26.2106688006, + "14852": 26.1852534476, + "14853": 26.1603082197, + "14854": 26.1358122465, + "14855": 26.1117440986, + "14856": 26.0880818412, + "14857": 26.0648030876, + "14858": 26.0418850561, + "14859": 26.0193242593, + "14860": 25.9971044027, + "14861": 25.975201006, + "14862": 25.9535904072, + "14863": 25.9322486792, + "14864": 25.9111519284, + "14865": 25.8902763184, + "14866": 25.8695981487, + "14867": 25.8490939217, + "14868": 25.8287404119, + "14869": 25.8085184089, + "14870": 25.788407179, + "14871": 25.7683846681, + "14872": 25.7484293802, + "14873": 25.7285204014, + "14874": 25.7086374618, + "14875": 25.688760986, + "14876": 25.6688721401, + "14877": 25.6489528753, + "14878": 25.6289859663, + "14879": 25.6089669951, + "14880": 25.5888878515, + "14881": 25.5687343319, + "14882": 25.5484926417, + "14883": 25.5281500305, + "14884": 25.5076946745, + "14885": 25.4871157027, + "14886": 25.4664031877, + "14887": 25.4455481368, + "14888": 25.4245424764, + "14889": 25.4033849165, + "14890": 25.3820738442, + "14891": 25.3606042941, + "14892": 25.3389714685, + "14893": 25.3171714632, + "14894": 25.2952010697, + "14895": 25.2730577582, + "14896": 25.2507396197, + "14897": 25.2282453138, + "14898": 25.2055740113, + "14899": 25.182741363, + "14900": 25.1597639535, + "14901": 25.1366446099, + "14902": 25.1133833232, + "14903": 25.0899809172, + "14904": 25.0664382451, + "14905": 25.042756282, + "14906": 25.0189360403, + "14907": 24.9949785242, + "14908": 24.9708846803, + "14909": 24.946655634, + "14910": 24.9222924709, + "14911": 24.8977957938, + "14912": 24.8731659172, + "14913": 24.8484029508, + "14914": 24.8235067643, + "14915": 24.7984769841, + "14916": 24.7733129926, + "14917": 24.7480139367, + "14918": 24.7225787428, + "14919": 24.6970075534, + "14920": 24.6715504028, + "14921": 24.6465356806, + "14922": 24.6220773894, + "14923": 24.5981773978, + "14924": 24.5748325077, + "14925": 24.5520403987, + "14926": 24.5297984436, + "14927": 24.5081039445, + "14928": 24.4869540869, + "14929": 24.4663457385, + "14930": 24.4462753229, + "14931": 24.4267395728, + "14932": 24.4077352739, + "14933": 24.3892590741, + "14934": 24.3713075221, + "14935": 24.353877061, + "14936": 24.3369640298, + "14937": 24.3205646643, + "14938": 24.3046750979, + "14939": 24.2892887936, + "14940": 24.2743913797, + "14941": 24.2599760189, + "14942": 24.2460390336, + "14943": 24.2325759957, + "14944": 24.2195825091, + "14945": 24.2070540542, + "14946": 24.1949860202, + "14947": 24.1833736994, + "14948": 24.1722122895, + "14949": 24.1614967732, + "14950": 24.1512212476, + "14951": 24.1413803782, + "14952": 24.1319690474, + "14953": 24.1229819856, + "14954": 24.1144138462, + "14955": 24.1062591914, + "14956": 24.0985124968, + "14957": 24.091168151, + "14958": 24.0842204577, + "14959": 24.0776633365, + "14960": 24.0714812538, + "14961": 24.0656654371, + "14962": 24.06021047, + "14963": 24.0551101687, + "14964": 24.0503584072, + "14965": 24.0459489545, + "14966": 24.0418755083, + "14967": 24.03813169, + "14968": 24.0347110471, + "14969": 24.0316070542, + "14970": 24.0288124901, + "14971": 24.0263204626, + "14972": 24.0241242644, + "14973": 24.0222170909, + "14974": 24.0205920777, + "14975": 24.019242295, + "14976": 24.0181607506, + "14977": 24.017340391, + "14978": 24.0167741033, + "14979": 24.0164547162, + "14980": 24.0163751976, + "14981": 24.0165283576, + "14982": 24.0169068584, + "14983": 24.017503312, + "14984": 24.0183102807, + "14985": 24.0193202786, + "14986": 24.020525774, + "14987": 24.0219191903, + "14988": 24.0234929087, + "14989": 24.0252392692, + "14990": 24.0271486175, + "14991": 24.0292120113, + "14992": 24.0314216189, + "14993": 24.0337696601, + "14994": 24.0362483062, + "14995": 24.0388497027, + "14996": 24.0415659665, + "14997": 24.0443891892, + "14998": 24.0473114389, + "14999": 24.0503247618, + "15000": 5.1411340687, + "15001": 5.1007386951, + "15002": 5.0601798033, + "15003": 5.0194679593, + "15004": 4.978613779, + "15005": 4.9376279266, + "15006": 4.8965211109, + "15007": 4.8553040838, + "15008": 4.8139876362, + "15009": 4.7725825957, + "15010": 4.7310998241, + "15011": 4.6895502143, + "15012": 4.647944688, + "15013": 4.6062941928, + "15014": 4.5646096997, + "15015": 4.5229022001, + "15016": 4.4811827037, + "15017": 4.4394622349, + "15018": 4.3977518309, + "15019": 4.3560625381, + "15020": 4.3144054105, + "15021": 4.27279155, + "15022": 4.2312321523, + "15023": 4.1897384682, + "15024": 4.1483217488, + "15025": 4.1069932293, + "15026": 4.0657641285, + "15027": 4.0246456455, + "15028": 3.9836489576, + "15029": 3.9427852176, + "15030": 3.9020655512, + "15031": 3.8615010564, + "15032": 3.8211028025, + "15033": 3.7808818268, + "15034": 3.7408491275, + "15035": 3.7010156588, + "15036": 3.6613923288, + "15037": 3.6219899985, + "15038": 3.5828194807, + "15039": 3.543891539, + "15040": 3.5052168863, + "15041": 3.4668062192, + "15042": 3.428670299, + "15043": 3.3908199221, + "15044": 3.3532658389, + "15045": 3.3160187283, + "15046": 3.2790891984, + "15047": 3.2424877851, + "15048": 3.2062249501, + "15049": 3.1703110792, + "15050": 3.1347564809, + "15051": 3.0995713864, + "15052": 3.0647659547, + "15053": 3.0303502697, + "15054": 2.9963343323, + "15055": 2.962728057, + "15056": 2.9295412707, + "15057": 2.8967837108, + "15058": 2.864465024, + "15059": 2.8325947641, + "15060": 2.8011823913, + "15061": 2.7702372771, + "15062": 2.7397687549, + "15063": 2.7097861148, + "15064": 2.6802985553, + "15065": 2.6513151667, + "15066": 2.6228449314, + "15067": 2.5948967223, + "15068": 2.5674793012, + "15069": 2.5406013177, + "15070": 2.514271308, + "15071": 2.4884976934, + "15072": 2.4632887859, + "15073": 2.4386527869, + "15074": 2.4145977804, + "15075": 2.3911317306, + "15076": 2.3682624804, + "15077": 2.3459977511, + "15078": 2.3243451405, + "15079": 2.3033121227, + "15080": 2.2829060469, + "15081": 2.2631341363, + "15082": 2.2440034497, + "15083": 2.2255208757, + "15084": 2.2076931642, + "15085": 2.1905269387, + "15086": 2.174028695, + "15087": 2.1582048005, + "15088": 2.1430614932, + "15089": 2.128604881, + "15090": 2.1148409408, + "15091": 2.1017755176, + "15092": 2.0894143186, + "15093": 2.0777629109, + "15094": 2.0668267254, + "15095": 2.056611058, + "15096": 2.0471210695, + "15097": 2.0383617846, + "15098": 2.0303380913, + "15099": 2.0230547399, + "15100": 2.0165163429, + "15101": 2.0107273741, + "15102": 2.0056921085, + "15103": 2.0014145986, + "15104": 1.9978987204, + "15105": 1.9951482065, + "15106": 1.9931666486, + "15107": 1.9919574961, + "15108": 1.9915240551, + "15109": 1.9918694875, + "15110": 1.9929968095, + "15111": 1.9949088914, + "15112": 1.9975247302, + "15113": 2.0000373169, + "15114": 2.0026287834, + "15115": 2.0052080917, + "15116": 2.0078207877, + "15117": 2.0104441244, + "15118": 2.0130895006, + "15119": 2.0157512416, + "15120": 2.0184322088, + "15121": 2.021130995, + "15122": 2.0238482875, + "15123": 2.0265836342, + "15124": 2.0293370742, + "15125": 2.0321083723, + "15126": 2.0348974277, + "15127": 2.0377040726, + "15128": 2.0405281724, + "15129": 2.0433695757, + "15130": 2.0462281397, + "15131": 2.0491037171, + "15132": 2.0519961582, + "15133": 2.0549053016, + "15134": 2.0578309796, + "15135": 2.060773023, + "15136": 2.0637312632, + "15137": 2.0667055316, + "15138": 2.0696956599, + "15139": 2.07270148, + "15140": 2.0757228243, + "15141": 2.0787595252, + "15142": 2.0818114063, + "15143": 2.0848782677, + "15144": 2.0879598916, + "15145": 2.0910560573, + "15146": 2.0941665452, + "15147": 2.0972911361, + "15148": 2.1004296115, + "15149": 2.1035817534, + "15150": 2.1067473444, + "15151": 2.1099261679, + "15152": 2.1131180064, + "15153": 2.1163226383, + "15154": 2.1195398391, + "15155": 2.1227693841, + "15156": 2.1260110491, + "15157": 2.129264611, + "15158": 2.1325298469, + "15159": 2.1358065348, + "15160": 2.1390944534, + "15161": 2.142393382, + "15162": 2.145703102, + "15163": 2.1490234032, + "15164": 2.152354083, + "15165": 2.1556949409, + "15166": 2.1590457769, + "15167": 2.1624063915, + "15168": 2.1657765861, + "15169": 2.1691561622, + "15170": 2.1725449223, + "15171": 2.1759426693, + "15172": 2.1793492067, + "15173": 2.1827643406, + "15174": 2.1861878794, + "15175": 2.1896196323, + "15176": 2.1930594092, + "15177": 2.1965070202, + "15178": 2.199962276, + "15179": 2.2034249877, + "15180": 2.2068949667, + "15181": 2.210372025, + "15182": 2.2138559756, + "15183": 2.2173466511, + "15184": 2.2208439058, + "15185": 2.224347599, + "15186": 2.22785759, + "15187": 2.2313737381, + "15188": 2.2348959029, + "15189": 2.2384239442, + "15190": 2.241957722, + "15191": 2.2454970965, + "15192": 2.249041928, + "15193": 2.2525920823, + "15194": 2.2561474317, + "15195": 2.2597078502, + "15196": 2.2632732122, + "15197": 2.266843392, + "15198": 2.2704182641, + "15199": 2.2739977031, + "15200": 2.2775815839, + "15201": 2.2811697814, + "15202": 2.2847621707, + "15203": 2.2883586431, + "15204": 2.2919591108, + "15205": 2.2955634935, + "15206": 2.2991717112, + "15207": 2.302783684, + "15208": 2.3063993322, + "15209": 2.3100185758, + "15210": 2.3136413353, + "15211": 2.3172675311, + "15212": 2.3208970835, + "15213": 2.3245299164, + "15214": 2.3281659579, + "15215": 2.3318051379, + "15216": 2.3354473868, + "15217": 2.3390926353, + "15218": 2.3427408139, + "15219": 2.3463918535, + "15220": 2.350045685, + "15221": 2.3537022397, + "15222": 2.3573614488, + "15223": 2.3610232543, + "15224": 2.3646876144, + "15225": 2.3683544962, + "15226": 2.3720238678, + "15227": 2.3756956973, + "15228": 2.3793699529, + "15229": 2.3830466026, + "15230": 2.386725615, + "15231": 2.3904069585, + "15232": 2.3940906015, + "15233": 2.3977765148, + "15234": 2.401464673, + "15235": 2.4051550532, + "15236": 2.4088476326, + "15237": 2.4125423888, + "15238": 2.4162392992, + "15239": 2.4199383415, + "15240": 2.4236394933, + "15241": 2.4273427324, + "15242": 2.4310480367, + "15243": 2.4347553858, + "15244": 2.4384647633, + "15245": 2.4421761556, + "15246": 2.4458895492, + "15247": 2.4496049307, + "15248": 2.4533222866, + "15249": 2.4570416035, + "15250": 2.4607628678, + "15251": 2.4644860658, + "15252": 2.4682111839, + "15253": 2.471938209, + "15254": 2.4756671289, + "15255": 2.4793979326, + "15256": 2.4831306091, + "15257": 2.4868651472, + "15258": 2.4906015356, + "15259": 2.4943397629, + "15260": 2.4980798177, + "15261": 2.5018216881, + "15262": 2.5055653624, + "15263": 2.5093108278, + "15264": 2.5130580681, + "15265": 2.5168070645, + "15266": 2.5205577974, + "15267": 2.5243102471, + "15268": 2.5280643937, + "15269": 2.5318202171, + "15270": 2.5355776968, + "15271": 2.5393368124, + "15272": 2.5430975431, + "15273": 2.5468598678, + "15274": 2.550623764, + "15275": 2.5543892076, + "15276": 2.5581561746, + "15277": 2.5619246402, + "15278": 2.56569458, + "15279": 2.5694659691, + "15280": 2.5732387826, + "15281": 2.5770129952, + "15282": 2.5807885817, + "15283": 2.5845655155, + "15284": 2.5883437593, + "15285": 2.5921232654, + "15286": 2.5959039834, + "15287": 2.5996858631, + "15288": 2.603468854, + "15289": 2.6072529056, + "15290": 2.6110379673, + "15291": 2.6148239885, + "15292": 2.6186109185, + "15293": 2.6223987062, + "15294": 2.6261872962, + "15295": 2.6299766277, + "15296": 2.6337666389, + "15297": 2.6375572679, + "15298": 2.641348453, + "15299": 2.6451401324, + "15300": 2.6489322443, + "15301": 2.6527247272, + "15302": 2.6565175195, + "15303": 2.6603105597, + "15304": 2.6641037769, + "15305": 2.6678970899, + "15306": 2.6716904149, + "15307": 2.6754836693, + "15308": 2.6792767695, + "15309": 2.6830696326, + "15310": 2.6868621761, + "15311": 2.690654318, + "15312": 2.6944459763, + "15313": 2.69823707, + "15314": 2.7020275156, + "15315": 2.7058172271, + "15316": 2.7096061175, + "15317": 2.7133941007, + "15318": 2.7171810908, + "15319": 2.7209670027, + "15320": 2.7247517518, + "15321": 2.7285352235, + "15322": 2.732317366, + "15323": 2.7360980962, + "15324": 2.7398773148, + "15325": 2.7436549295, + "15326": 2.747430856, + "15327": 2.7512050035, + "15328": 2.7549772886, + "15329": 2.7587476232, + "15330": 2.7625159259, + "15331": 2.7662821113, + "15332": 2.7700461001, + "15333": 2.7738078091, + "15334": 2.7775671641, + "15335": 2.7813240918, + "15336": 2.7850785269, + "15337": 2.7888304013, + "15338": 2.7925796523, + "15339": 2.7963262143, + "15340": 2.8000700265, + "15341": 2.8038110258, + "15342": 2.8075491533, + "15343": 2.8112843484, + "15344": 2.815016558, + "15345": 2.8187457345, + "15346": 2.8224718385, + "15347": 2.8261948291, + "15348": 2.8299146691, + "15349": 2.8336313197, + "15350": 2.8373447455, + "15351": 2.8410549093, + "15352": 2.8447617772, + "15353": 2.848465314, + "15354": 2.8521654888, + "15355": 2.8558622736, + "15356": 2.8595556452, + "15357": 2.8632455799, + "15358": 2.8669320563, + "15359": 2.8706150519, + "15360": 2.8742945462, + "15361": 2.8779705179, + "15362": 2.8816429474, + "15363": 2.8853118144, + "15364": 2.8889771027, + "15365": 2.8926388026, + "15366": 2.8962969106, + "15367": 2.8999514238, + "15368": 2.9036023399, + "15369": 2.907249656, + "15370": 2.9108933697, + "15371": 2.9145334784, + "15372": 2.9181699798, + "15373": 2.9218028711, + "15374": 2.9254321513, + "15375": 2.929057823, + "15376": 2.9326798926, + "15377": 2.9362983666, + "15378": 2.9399132514, + "15379": 2.9435245532, + "15380": 2.947132278, + "15381": 2.9507364314, + "15382": 2.9543370188, + "15383": 2.9579340452, + "15384": 2.9615275167, + "15385": 2.9651174431, + "15386": 2.9687038384, + "15387": 2.9722867168, + "15388": 2.9758660921, + "15389": 2.9794419773, + "15390": 2.9830143855, + "15391": 2.9865833287, + "15392": 2.9901488191, + "15393": 2.993710868, + "15394": 2.9972694869, + "15395": 3.0008246896, + "15396": 3.0043764928, + "15397": 3.0079249129, + "15398": 3.0114699662, + "15399": 3.0150116681, + "15400": 3.0185500339, + "15401": 3.0220850784, + "15402": 3.0256168158, + "15403": 3.0291452601, + "15404": 3.0326704249, + "15405": 3.0361923256, + "15406": 3.0397109791, + "15407": 3.0432264024, + "15408": 3.0467386125, + "15409": 3.0502476254, + "15410": 3.0537534573, + "15411": 3.0572561239, + "15412": 3.0607556406, + "15413": 3.0642520225, + "15414": 3.0677452847, + "15415": 3.0712354431, + "15416": 3.074722515, + "15417": 3.0782065179, + "15418": 3.0816874132, + "15419": 3.0851652854, + "15420": 3.088639556, + "15421": 3.0921109944, + "15422": 3.095573848, + "15423": 3.0990145378, + "15424": 3.1024179092, + "15425": 3.1057696484, + "15426": 3.1090563047, + "15427": 3.1122652718, + "15428": 3.1153847749, + "15429": 3.1184038552, + "15430": 3.1213123529, + "15431": 3.1241008892, + "15432": 3.1267608472, + "15433": 3.1292843518, + "15434": 3.1316642497, + "15435": 3.1338940875, + "15436": 3.1359680907, + "15437": 3.1378811411, + "15438": 3.1396287551, + "15439": 3.1412070612, + "15440": 3.1426127777, + "15441": 3.1438431901, + "15442": 3.1448961293, + "15443": 3.1457699492, + "15444": 3.1464635045, + "15445": 3.1469761288, + "15446": 3.1473076117, + "15447": 3.1474581789, + "15448": 3.1474284722, + "15449": 3.147219529, + "15450": 3.1468327623, + "15451": 3.1462699409, + "15452": 3.1455331703, + "15453": 3.1446248735, + "15454": 3.1435477728, + "15455": 3.1423048709, + "15456": 3.1408994324, + "15457": 3.1393349674, + "15458": 3.1376152144, + "15459": 3.1357441239, + "15460": 3.1337258424, + "15461": 3.1315646956, + "15462": 3.1292651735, + "15463": 3.1268319141, + "15464": 3.1242696889, + "15465": 3.1215833874, + "15466": 3.1187780015, + "15467": 3.1158586119, + "15468": 3.1128303747, + "15469": 3.1096985078, + "15470": 3.1064682774, + "15471": 3.1031449848, + "15472": 3.0997339536, + "15473": 3.096240517, + "15474": 3.0926700055, + "15475": 3.0890277347, + "15476": 3.0853189928, + "15477": 3.08154903, + "15478": 3.0777230479, + "15479": 3.0738461898, + "15480": 3.0699235303, + "15481": 3.0659600656, + "15482": 3.0619607052, + "15483": 3.0579302627, + "15484": 3.0538734481, + "15485": 3.0497948602, + "15486": 3.0456989792, + "15487": 3.0415901608, + "15488": 3.0374726307, + "15489": 3.0333504801, + "15490": 3.0292276613, + "15491": 3.0251079839, + "15492": 3.020995112, + "15493": 3.016892562, + "15494": 3.0128037005, + "15495": 3.008731744, + "15496": 3.0046797573, + "15497": 3.000650655, + "15498": 2.9966472018, + "15499": 2.9926720154, + "15500": 2.9887275682, + "15501": 2.9848161901, + "15502": 2.9809400724, + "15503": 2.9771012709, + "15504": 2.9733017111, + "15505": 2.9695431925, + "15506": 2.9658273939, + "15507": 2.9621558787, + "15508": 2.9585301013, + "15509": 2.9549514128, + "15510": 2.9514210675, + "15511": 2.9479402292, + "15512": 2.9445099778, + "15513": 2.9411313159, + "15514": 2.9378051753, + "15515": 2.9345324233, + "15516": 2.9313138694, + "15517": 2.928150271, + "15518": 2.9250423401, + "15519": 2.9219907486, + "15520": 2.9189961342, + "15521": 2.9160591052, + "15522": 2.9131802457, + "15523": 2.9103601199, + "15524": 2.9075992759, + "15525": 2.9048982497, + "15526": 2.9022575683, + "15527": 2.8996777522, + "15528": 2.8971593178, + "15529": 2.8947027789, + "15530": 2.892308648, + "15531": 2.889977437, + "15532": 2.8877096571, + "15533": 2.8855058192, + "15534": 2.8833664327, + "15535": 2.8812920043, + "15536": 2.8792830369, + "15537": 2.8773400276, + "15538": 2.8754634648, + "15539": 2.873653826, + "15540": 2.871911574, + "15541": 2.8702371541, + "15542": 2.8686309902, + "15543": 2.8670934808, + "15544": 2.8656249954, + "15545": 2.8642258699, + "15546": 2.8628964025, + "15547": 2.8616368492, + "15548": 2.8604474196, + "15549": 2.8593282724, + "15550": 2.8582795115, + "15551": 2.8573011814, + "15552": 2.8563932636, + "15553": 2.8555556727, + "15554": 2.8547882526, + "15555": 2.8540907738, + "15556": 2.8534629304, + "15557": 2.8529043381, + "15558": 2.8524145315, + "15559": 2.8519929623, + "15560": 2.8516389976, + "15561": 2.8513519192, + "15562": 2.8511309235, + "15563": 2.8509751212, + "15564": 2.8508835386, + "15565": 2.8508551183, + "15566": 2.8508887216, + "15567": 2.8509831306, + "15568": 2.8511370517, + "15569": 2.8513491179, + "15570": 2.851617894, + "15571": 2.8519418802, + "15572": 2.8523195177, + "15573": 2.852749194, + "15574": 2.8532292488, + "15575": 2.8537579807, + "15576": 2.8543336536, + "15577": 2.8549545047, + "15578": 2.8556187513, + "15579": 2.8563245987, + "15580": 2.8570702478, + "15581": 2.8578539035, + "15582": 2.8586737819, + "15583": 2.8595281194, + "15584": 2.8604151803, + "15585": 2.861333265, + "15586": 2.8622807181, + "15587": 2.8632559362, + "15588": 2.8642573754, + "15589": 2.8652835586, + "15590": 2.8663330823, + "15591": 2.8674046231, + "15592": 2.8684969438, + "15593": 2.869608899, + "15594": 2.8707394399, + "15595": 2.8718876193, + "15596": 2.8730525947, + "15597": 2.8742336324, + "15598": 2.8754301091, + "15599": 2.8766415146, + "15600": 2.8778674521, + "15601": 2.8791076387, + "15602": 2.8803619053, + "15603": 2.8816301952, + "15604": 2.8829125625, + "15605": 2.884209169, + "15606": 2.8855202812, + "15607": 2.8868462662, + "15608": 2.8881875868, + "15609": 2.889544796, + "15610": 2.8909185311, + "15611": 2.8923095067, + "15612": 2.8937185075, + "15613": 2.8951463806, + "15614": 2.8965940269, + "15615": 2.8980623923, + "15616": 2.8995524589, + "15617": 2.9010652348, + "15618": 2.9026017448, + "15619": 2.9041630199, + "15620": 2.905750087, + "15621": 2.9073639591, + "15622": 2.9090056238, + "15623": 2.9106760337, + "15624": 2.9123760954, + "15625": 2.9141066596, + "15626": 2.9158685106, + "15627": 2.9176623565, + "15628": 2.9194888197, + "15629": 2.9213484278, + "15630": 2.9232416043, + "15631": 2.9251686609, + "15632": 2.927129789, + "15633": 2.9291250531, + "15634": 2.9311543839, + "15635": 2.9332175723, + "15636": 2.9353142644, + "15637": 2.9374439566, + "15638": 2.9396059927, + "15639": 2.9417995602, + "15640": 2.9440236889, + "15641": 2.9462772497, + "15642": 2.9485589544, + "15643": 2.9508673562, + "15644": 2.9532008516, + "15645": 2.9555576825, + "15646": 2.9579359402, + "15647": 2.9603335693, + "15648": 2.9627483728, + "15649": 2.965178019, + "15650": 2.9676200475, + "15651": 2.9700718777, + "15652": 2.972530817, + "15653": 2.9749940702, + "15654": 2.9774587497, + "15655": 2.9799218858, + "15656": 2.9823804383, + "15657": 2.9848313078, + "15658": 2.9872713482, + "15659": 2.9896973794, + "15660": 2.9921062005, + "15661": 2.9944946031, + "15662": 2.9968593851, + "15663": 2.9991973641, + "15664": 3.0015053911, + "15665": 3.0037803645, + "15666": 3.0060192437, + "15667": 3.0082190623, + "15668": 3.010376942, + "15669": 3.0124901052, + "15670": 3.0145558873, + "15671": 3.016571749, + "15672": 3.0185352881, + "15673": 3.02044425, + "15674": 3.0222965386, + "15675": 3.0240902262, + "15676": 3.0258235618, + "15677": 3.0274949801, + "15678": 3.0291031085, + "15679": 3.0306467739, + "15680": 3.0321250082, + "15681": 3.0335370535, + "15682": 3.0348823656, + "15683": 3.0361606171, + "15684": 3.0373716996, + "15685": 3.0385157242, + "15686": 3.0395930222, + "15687": 3.0406041438, + "15688": 3.0415498563, + "15689": 3.0424311417, + "15690": 3.0432491925, + "15691": 3.0440054076, + "15692": 3.0447013862, + "15693": 3.0453389222, + "15694": 3.0459199967, + "15695": 3.0464467704, + "15696": 3.0469215746, + "15697": 3.0473469024, + "15698": 3.0477253985, + "15699": 3.0480598488, + "15700": 3.0483531693, + "15701": 3.0486083944, + "15702": 3.0488286649, + "15703": 3.0490172157, + "15704": 3.0493056451, + "15705": 3.0508587335, + "15706": 3.0534040214, + "15707": 3.057081398, + "15708": 3.0618237822, + "15709": 3.067666787, + "15710": 3.0745938922, + "15711": 3.0826138607, + "15712": 3.0917220314, + "15713": 3.101919673, + "15714": 3.1132043049, + "15715": 3.1255745339, + "15716": 3.1390276317, + "15717": 3.1535607403, + "15718": 3.1691702624, + "15719": 3.1858521587, + "15720": 3.2036017906, + "15721": 3.2224139889, + "15722": 3.2422830098, + "15723": 3.2632025456, + "15724": 3.285165708, + "15725": 3.3081650248, + "15726": 3.3321924296, + "15727": 3.3572392548, + "15728": 3.3832962229, + "15729": 3.4103534392, + "15730": 3.4384003839, + "15731": 3.4674259051, + "15732": 3.4974182121, + "15733": 3.5283648691, + "15734": 3.5602527899, + "15735": 3.593068233, + "15736": 3.6267967981, + "15737": 3.6614234228, + "15738": 3.696932381, + "15739": 3.7333072821, + "15740": 3.7705310714, + "15741": 3.8085860327, + "15742": 3.8474537907, + "15743": 3.8871153162, + "15744": 3.9275509318, + "15745": 3.9687403202, + "15746": 4.0106625323, + "15747": 4.0532959991, + "15748": 4.096618543, + "15749": 4.1406073923, + "15750": 4.1852391962, + "15751": 4.2304900429, + "15752": 4.2763354774, + "15753": 4.3227505222, + "15754": 4.3697096989, + "15755": 4.4171870511, + "15756": 4.4651561692, + "15757": 4.5135902158, + "15758": 4.5624619525, + "15759": 4.6117437676, + "15760": 4.6614077056, + "15761": 4.7114254978, + "15762": 4.7617685933, + "15763": 4.8124081902, + "15764": 4.8633152684, + "15765": 4.9144606222, + "15766": 4.9658148936, + "15767": 5.0173486057, + "15768": 5.0690321954, + "15769": 5.1208360473, + "15770": 5.1727305271, + "15771": 5.2246860155, + "15772": 5.2766729412, + "15773": 5.3286618134, + "15774": 5.3806232536, + "15775": 5.4325280269, + "15776": 5.4843470727, + "15777": 5.536051534, + "15778": 5.5876127857, + "15779": 5.6390024624, + "15780": 5.6901924845, + "15781": 5.7411550836, + "15782": 5.7918628267, + "15783": 5.8422886383, + "15784": 5.8924058216, + "15785": 5.9421880786, + "15786": 5.9916095277, + "15787": 6.0406447208, + "15788": 6.0892686584, + "15789": 6.1374568032, + "15790": 6.1851850924, + "15791": 6.2324299488, + "15792": 6.2791682897, + "15793": 6.3253775354, + "15794": 6.3710356154, + "15795": 6.4161209743, + "15796": 6.4606125758, + "15797": 6.5044899062, + "15798": 6.5477329761, + "15799": 6.5903223218, + "15800": 6.6322390063, + "15801": 6.6734646197, + "15802": 6.7139812788, + "15803": 6.7537716269, + "15804": 6.7928188334, + "15805": 6.8311065928, + "15806": 6.8686191251, + "15807": 6.9053411755, + "15808": 6.9412580156, + "15809": 6.9763554449, + "15810": 7.0106197935, + "15811": 7.0440379253, + "15812": 7.0765972435, + "15813": 7.1082856965, + "15814": 7.1390917859, + "15815": 7.1690045762, + "15816": 7.198013706, + "15817": 7.2261094013, + "15818": 7.2532824908, + "15819": 7.2795244231, + "15820": 7.3048272861, + "15821": 7.3291838271, + "15822": 7.352587476, + "15823": 7.3750323696, + "15824": 7.3965133779, + "15825": 7.4170261324, + "15826": 7.4365670547, + "15827": 7.4551333874, + "15828": 7.4727232254, + "15829": 7.4893355483, + "15830": 7.5049702528, + "15831": 7.519628185, + "15832": 7.5333111726, + "15833": 7.5460220566, + "15834": 7.5577647219, + "15835": 7.5685441266, + "15836": 7.5783663297, + "15837": 7.5872385162, + "15838": 7.59516902, + "15839": 7.6021673455, + "15840": 7.6082441841, + "15841": 7.6134114251, + "15842": 7.6176821647, + "15843": 7.6210707093, + "15844": 7.6235925755, + "15845": 7.6252644846, + "15846": 7.6261043511, + "15847": 7.6261312673, + "15848": 7.625365481, + "15849": 7.6238283683, + "15850": 7.6215424008, + "15851": 7.6185311055, + "15852": 7.6148190203, + "15853": 7.6104316434, + "15854": 7.6053953768, + "15855": 7.5997374657, + "15856": 7.5934859312, + "15857": 7.5866694997, + "15858": 7.5793175271, + "15859": 7.571459921, + "15860": 7.5631270579, + "15861": 7.5543496948, + "15862": 7.5451588788, + "15863": 7.535585856, + "15864": 7.5256619778, + "15865": 7.5154186072, + "15866": 7.5048870237, + "15867": 7.494098329, + "15868": 7.483083353, + "15869": 7.471872562, + "15870": 7.4604959677, + "15871": 7.4489830392, + "15872": 7.4373626177, + "15873": 7.4256628347, + "15874": 7.4139110356, + "15875": 7.4021337064, + "15876": 7.3903564069, + "15877": 7.3786037086, + "15878": 7.3668991392, + "15879": 7.3552651346, + "15880": 7.3437229973, + "15881": 7.3322928592, + "15882": 7.3209936526, + "15883": 7.3098430897, + "15884": 7.2988576483, + "15885": 7.2880525667, + "15886": 7.2774418454, + "15887": 7.2670382565, + "15888": 7.2568533607, + "15889": 7.2468975325, + "15890": 7.2371799925, + "15891": 7.2277088447, + "15892": 7.2184911215, + "15893": 7.2095328346, + "15894": 7.2008390319, + "15895": 7.1924138597, + "15896": 7.1842606297, + "15897": 7.1763818899, + "15898": 7.1687794989, + "15899": 7.1614547056, + "15900": 7.1544082297, + "15901": 7.1476403417, + "15902": 7.1411509421, + "15903": 7.1349396422, + "15904": 7.1290058412, + "15905": 7.1233488032, + "15906": 7.1179677306, + "15907": 7.1128618342, + "15908": 7.1080303985, + "15909": 7.1034728413, + "15910": 7.0991887671, + "15911": 7.0951780129, + "15912": 7.0914406868, + "15913": 7.0879771973, + "15914": 7.084788274, + "15915": 7.0818749785, + "15916": 7.0792387048, + "15917": 7.0768811702, + "15918": 7.0748043945, + "15919": 7.0730106691, + "15920": 7.071164369, + "15921": 7.0688196527, + "15922": 7.0658196793, + "15923": 7.0621596374, + "15924": 7.057841544, + "15925": 7.0528662448, + "15926": 7.0472350114, + "15927": 7.040949222, + "15928": 7.0340104248, + "15929": 7.0264203248, + "15930": 7.0181807863, + "15931": 7.0092938315, + "15932": 6.9997616408, + "15933": 6.9895865519, + "15934": 6.9787710595, + "15935": 6.9673178152, + "15936": 6.9552296264, + "15937": 6.942509456, + "15938": 6.9291604219, + "15939": 6.9151857961, + "15940": 6.9005890027, + "15941": 6.8853736176, + "15942": 6.8695433688, + "15943": 6.8531021366, + "15944": 6.8360539527, + "15945": 6.8184029994, + "15946": 6.8001536089, + "15947": 6.7813102627, + "15948": 6.7618775907, + "15949": 6.7418603705, + "15950": 6.7212635262, + "15951": 6.7000921281, + "15952": 6.6783513914, + "15953": 6.6560466759, + "15954": 6.6331834845, + "15955": 6.6097674624, + "15956": 6.5858043966, + "15957": 6.5613002142, + "15958": 6.5362609818, + "15959": 6.5106929042, + "15960": 6.4846023228, + "15961": 6.4579957142, + "15962": 6.4308796906, + "15963": 6.403260998, + "15964": 6.3751465153, + "15965": 6.3465432528, + "15966": 6.3174583508, + "15967": 6.2878990781, + "15968": 6.2578728305, + "15969": 6.2273871298, + "15970": 6.1964496212, + "15971": 6.1650680728, + "15972": 6.1332503734, + "15973": 6.101004531, + "15974": 6.0683386711, + "15975": 6.0352610351, + "15976": 6.0017799781, + "15977": 5.9679039677, + "15978": 5.9336415817, + "15979": 5.8990015061, + "15980": 5.8639925339, + "15981": 5.8286235627, + "15982": 5.7929035926, + "15983": 5.7568417242, + "15984": 5.7204471559, + "15985": 5.6837291825, + "15986": 5.6466971925, + "15987": 5.6093606662, + "15988": 5.5717291732, + "15989": 5.5338123704, + "15990": 5.495619999, + "15991": 5.4571618828, + "15992": 5.4184479253, + "15993": 5.3794881076, + "15994": 5.3402924859, + "15995": 5.3008711893, + "15996": 5.2612344167, + "15997": 5.2213924347, + "15998": 5.1813555746, + "15999": 5.1411342303, + "16000": 5.4153984651, + "16001": 5.416087479, + "16002": 5.4168020464, + "16003": 5.417540638, + "16004": 5.4183013443, + "16005": 5.4190823292, + "16006": 5.4198817392, + "16007": 5.4206977229, + "16008": 5.4215284269, + "16009": 5.4223719978, + "16010": 5.4232265819, + "16011": 5.4240903263, + "16012": 5.4249613786, + "16013": 5.4258378881, + "16014": 5.4267180054, + "16015": 5.4275998838, + "16016": 5.428481679, + "16017": 5.4293615498, + "16018": 5.4302376587, + "16019": 5.4311081721, + "16020": 5.4319712608, + "16021": 5.4330268235, + "16022": 5.4345472833, + "16023": 5.436581565, + "16024": 5.4391157785, + "16025": 5.4421486039, + "16026": 5.4456762248, + "16027": 5.44969534, + "16028": 5.4542025622, + "16029": 5.4591945383, + "16030": 5.4646679263, + "16031": 5.4706258179, + "16032": 5.4770766827, + "16033": 5.4840197471, + "16034": 5.4914511529, + "16035": 5.4993676792, + "16036": 5.5077659992, + "16037": 5.5166428287, + "16038": 5.5259948968, + "16039": 5.5358189518, + "16040": 5.54611176, + "16041": 5.557017593, + "16042": 5.5689162753, + "16043": 5.5818959294, + "16044": 5.5959328709, + "16045": 5.6110257951, + "16046": 5.6271689568, + "16047": 5.6443575312, + "16048": 5.6625865425, + "16049": 5.6818510785, + "16050": 5.7021462479, + "16051": 5.7234754323, + "16052": 5.7458668653, + "16053": 5.7693243079, + "16054": 5.7938410899, + "16055": 5.8194126614, + "16056": 5.8460340842, + "16057": 5.8737005335, + "16058": 5.9024071979, + "16059": 5.9321492993, + "16060": 5.9629220893, + "16061": 5.9947328329, + "16062": 6.0276672732, + "16063": 6.0617457767, + "16064": 6.0969582384, + "16065": 6.1333006832, + "16066": 6.1707679509, + "16067": 6.2093551585, + "16068": 6.2490574075, + "16069": 6.2898698432, + "16070": 6.3317876427, + "16071": 6.3748063799, + "16072": 6.4189330143, + "16073": 6.464166248, + "16074": 6.5105006528, + "16075": 6.5579316676, + "16076": 6.6064545995, + "16077": 6.6560648232, + "16078": 6.7067577419, + "16079": 6.7585287947, + "16080": 6.8113734551, + "16081": 6.8652872318, + "16082": 6.9197333006, + "16083": 6.9745147579, + "16084": 7.0296510779, + "16085": 7.0851357455, + "16086": 7.1409674741, + "16087": 7.1971439654, + "16088": 7.2536631571, + "16089": 7.3105229737, + "16090": 7.367721376, + "16091": 7.4252563515, + "16092": 7.4830458188, + "16093": 7.541049727, + "16094": 7.5992670249, + "16095": 7.6576960727, + "16096": 7.7163353809, + "16097": 7.7751834629, + "16098": 7.8342388643, + "16099": 7.8935001572, + "16100": 7.9529659412, + "16101": 8.0126348433, + "16102": 8.072013562, + "16103": 8.130797229, + "16104": 8.1889692813, + "16105": 8.2465345121, + "16106": 8.3034934696, + "16107": 8.3598475742, + "16108": 8.4155980961, + "16109": 8.4707463598, + "16110": 8.525293703, + "16111": 8.5792414851, + "16112": 8.6325308211, + "16113": 8.6852390975, + "16114": 8.737331003, + "16115": 8.7888249574, + "16116": 8.8397149199, + "16117": 8.8900065892, + "16118": 8.9396998824, + "16119": 8.9887975799, + "16120": 9.0373010258, + "16121": 9.0852122734, + "16122": 9.1324279929, + "16123": 9.1788414785, + "16124": 9.2244382525, + "16125": 9.2692242363, + "16126": 9.3132012512, + "16127": 9.3563719358, + "16128": 9.3987387525, + "16129": 9.4403041918, + "16130": 9.4810707284, + "16131": 9.5210408316, + "16132": 9.560203924, + "16133": 9.5985447342, + "16134": 9.6360624306, + "16135": 9.6727602346, + "16136": 9.7086405482, + "16137": 9.7437059278, + "16138": 9.7779588896, + "16139": 9.8114019485, + "16140": 9.8440376104, + "16141": 9.8758683738, + "16142": 9.9069600355, + "16143": 9.9374312809, + "16144": 9.9673094768, + "16145": 9.9965913913, + "16146": 10.0252799016, + "16147": 10.0533766568, + "16148": 10.0808835446, + "16149": 10.1078023983, + "16150": 10.1341350549, + "16151": 10.159883344, + "16152": 10.1850585227, + "16153": 10.2096869078, + "16154": 10.2337761553, + "16155": 10.257326764, + "16156": 10.2803406571, + "16157": 10.3028194664, + "16158": 10.3247648759, + "16159": 10.3461785529, + "16160": 10.3670621616, + "16161": 10.3874173608, + "16162": 10.407282489, + "16163": 10.426806351, + "16164": 10.4460287187, + "16165": 10.4649428141, + "16166": 10.4835511596, + "16167": 10.5018544152, + "16168": 10.5198536093, + "16169": 10.5375496929, + "16170": 10.554943629, + "16171": 10.5720363746, + "16172": 10.5888339044, + "16173": 10.6053750581, + "16174": 10.6216712746, + "16175": 10.6377212122, + "16176": 10.6535260803, + "16177": 10.6690865759, + "16178": 10.6844034952, + "16179": 10.6994776116, + "16180": 10.7143097002, + "16181": 10.7289005328, + "16182": 10.7432533079, + "16183": 10.7574472389, + "16184": 10.7715060183, + "16185": 10.7854254495, + "16186": 10.7992069086, + "16187": 10.8128506561, + "16188": 10.8263571739, + "16189": 10.8397268978, + "16190": 10.8529602712, + "16191": 10.8660577345, + "16192": 10.8790197268, + "16193": 10.8918680566, + "16194": 10.9046108858, + "16195": 10.9172476902, + "16196": 10.9297789887, + "16197": 10.9422050903, + "16198": 10.9545263449, + "16199": 10.9667430928, + "16200": 10.9788556749, + "16201": 10.9908644308, + "16202": 11.0027696991, + "16203": 11.0145843665, + "16204": 11.0263147335, + "16205": 11.0379609911, + "16206": 11.0495234261, + "16207": 11.0610023051, + "16208": 11.0723978977, + "16209": 11.0837104721, + "16210": 11.0949402954, + "16211": 11.1060876343, + "16212": 11.1171527543, + "16213": 11.1281369016, + "16214": 11.1390409445, + "16215": 11.1498651753, + "16216": 11.1606098427, + "16217": 11.1712752032, + "16218": 11.1818615108, + "16219": 11.192369019, + "16220": 11.2027979803, + "16221": 11.2131486466, + "16222": 11.2234212689, + "16223": 11.2336041712, + "16224": 11.2436880939, + "16225": 11.2536722711, + "16226": 11.2635572282, + "16227": 11.273343231, + "16228": 11.2830305964, + "16229": 11.2926196297, + "16230": 11.3021106373, + "16231": 11.3115039245, + "16232": 11.3207997955, + "16233": 11.3299949964, + "16234": 11.3390861512, + "16235": 11.3480730088, + "16236": 11.3569560068, + "16237": 11.3657354438, + "16238": 11.374411645, + "16239": 11.3829849291, + "16240": 11.3914556148, + "16241": 11.3998240199, + "16242": 11.408090461, + "16243": 11.4162417139, + "16244": 11.4242596846, + "16245": 11.4321412779, + "16246": 11.4398876139, + "16247": 11.4474989687, + "16248": 11.4549757855, + "16249": 11.4623184727, + "16250": 11.469527444, + "16251": 11.4766031106, + "16252": 11.4835458828, + "16253": 11.4903524384, + "16254": 11.4970163365, + "16255": 11.5035365166, + "16256": 11.50991372, + "16257": 11.5161483259, + "16258": 11.5222407848, + "16259": 11.5281915308, + "16260": 11.5340010002, + "16261": 11.5396696269, + "16262": 11.545197844, + "16263": 11.550577707, + "16264": 11.5557878937, + "16265": 11.5608236469, + "16266": 11.5656865589, + "16267": 11.5703769509, + "16268": 11.5748953962, + "16269": 11.5792424159, + "16270": 11.5834185396, + "16271": 11.5874242933, + "16272": 11.5912602017, + "16273": 11.5949244907, + "16274": 11.5984084658, + "16275": 11.6017102595, + "16276": 11.6048309176, + "16277": 11.6077709016, + "16278": 11.6105307878, + "16279": 11.6131111275, + "16280": 11.6155124751, + "16281": 11.6177353823, + "16282": 11.6197803992, + "16283": 11.6216406344, + "16284": 11.6232604848, + "16285": 11.624624951, + "16286": 11.6257379694, + "16287": 11.626599689, + "16288": 11.6272110127, + "16289": 11.6275726899, + "16290": 11.6276854981, + "16291": 11.6275502061, + "16292": 11.6271675818, + "16293": 11.6265375526, + "16294": 11.6256338249, + "16295": 11.6244492506, + "16296": 11.6229862977, + "16297": 11.6212455087, + "16298": 11.6192278078, + "16299": 11.6169340401, + "16300": 11.6143650629, + "16301": 11.6115217282, + "16302": 11.6084048858, + "16303": 11.6050153828, + "16304": 11.6013583888, + "16305": 11.5974363124, + "16306": 11.593249803, + "16307": 11.5887997187, + "16308": 11.5840868727, + "16309": 11.5791120845, + "16310": 11.5738761689, + "16311": 11.5683799386, + "16312": 11.562624204, + "16313": 11.5566097724, + "16314": 11.5503401787, + "16315": 11.5438175244, + "16316": 11.5370425809, + "16317": 11.5300161381, + "16318": 11.5227389791, + "16319": 11.5152118854, + "16320": 11.5074356358, + "16321": 11.4994110118, + "16322": 11.4911387821, + "16323": 11.4826197181, + "16324": 11.4738848006, + "16325": 11.4649534388, + "16326": 11.4558273369, + "16327": 11.4465068883, + "16328": 11.4369927451, + "16329": 11.4272855058, + "16330": 11.4173857768, + "16331": 11.4072941608, + "16332": 11.3970112584, + "16333": 11.3865376685, + "16334": 11.3759077945, + "16335": 11.3651491765, + "16336": 11.3542652645, + "16337": 11.3432558446, + "16338": 11.332121433, + "16339": 11.3208623987, + "16340": 11.3094791382, + "16341": 11.2979720409, + "16342": 11.2863414959, + "16343": 11.2745878911, + "16344": 11.2627422055, + "16345": 11.2508364535, + "16346": 11.2388757559, + "16347": 11.2268593022, + "16348": 11.2147874661, + "16349": 11.2026603841, + "16350": 11.1904782392, + "16351": 11.1782412044, + "16352": 11.1659494537, + "16353": 11.1536031603, + "16354": 11.1412162937, + "16355": 11.1288077835, + "16356": 11.116381272, + "16357": 11.103936104, + "16358": 11.0914724831, + "16359": 11.0789904409, + "16360": 11.066490043, + "16361": 11.0539713478, + "16362": 11.0414344148, + "16363": 11.0288793033, + "16364": 11.016315542, + "16365": 11.0037605709, + "16366": 10.9912181686, + "16367": 10.9786875365, + "16368": 10.9661687909, + "16369": 10.9536618658, + "16370": 10.9411667312, + "16371": 10.9286833505, + "16372": 10.9162116882, + "16373": 10.9037517089, + "16374": 10.8913076771, + "16375": 10.8788907239, + "16376": 10.8665034757, + "16377": 10.8541452989, + "16378": 10.8418162117, + "16379": 10.8295161023, + "16380": 10.8172448855, + "16381": 10.8050024711, + "16382": 10.7927887702, + "16383": 10.780603694, + "16384": 10.7684478169, + "16385": 10.7563237088, + "16386": 10.7442319694, + "16387": 10.7321723575, + "16388": 10.7201448004, + "16389": 10.7081491924, + "16390": 10.6961854345, + "16391": 10.6842534271, + "16392": 10.6723530711, + "16393": 10.6604842676, + "16394": 10.6486471322, + "16395": 10.6368431804, + "16396": 10.6250727605, + "16397": 10.6133356766, + "16398": 10.601631842, + "16399": 10.589961149, + "16400": 10.5783234941, + "16401": 10.5667187739, + "16402": 10.555146885, + "16403": 10.5436077247, + "16404": 10.5321010837, + "16405": 10.5206234063, + "16406": 10.5091735806, + "16407": 10.4977517224, + "16408": 10.4863577026, + "16409": 10.4749914414, + "16410": 10.4636528497, + "16411": 10.4523418404, + "16412": 10.4410583266, + "16413": 10.4298022215, + "16414": 10.4185734388, + "16415": 10.4073693365, + "16416": 10.3961889043, + "16417": 10.3850321706, + "16418": 10.3738990485, + "16419": 10.362789456, + "16420": 10.3517034167, + "16421": 10.3406407304, + "16422": 10.3296022862, + "16423": 10.3185902778, + "16424": 10.3076071557, + "16425": 10.2966502215, + "16426": 10.2857192479, + "16427": 10.2748162932, + "16428": 10.2639432317, + "16429": 10.2531018038, + "16430": 10.2422936094, + "16431": 10.2315201134, + "16432": 10.2207826488, + "16433": 10.2100824208, + "16434": 10.1994205102, + "16435": 10.1887927798, + "16436": 10.1781969284, + "16437": 10.1676335294, + "16438": 10.1571032691, + "16439": 10.1466066855, + "16440": 10.1361442252, + "16441": 10.1257162368, + "16442": 10.1153229773, + "16443": 10.1049646153, + "16444": 10.0946412352, + "16445": 10.0843517328, + "16446": 10.0740951524, + "16447": 10.0638712556, + "16448": 10.0536798553, + "16449": 10.0435206748, + "16450": 10.0333933802, + "16451": 10.0232975785, + "16452": 10.0132328215, + "16453": 10.0031986098, + "16454": 9.9931943949, + "16455": 9.9832180829, + "16456": 9.9732674865, + "16457": 9.963341699, + "16458": 9.9534400683, + "16459": 9.9435618511, + "16460": 9.9337062851, + "16461": 9.923872578, + "16462": 9.9140599132, + "16463": 9.9042674515, + "16464": 9.8944943343, + "16465": 9.8847399222, + "16466": 9.875003647, + "16467": 9.8652846657, + "16468": 9.8555820521, + "16469": 9.8458948869, + "16470": 9.8362222427, + "16471": 9.8265631899, + "16472": 9.8169167976, + "16473": 9.8072821364, + "16474": 9.7976582799, + "16475": 9.7880444879, + "16476": 9.7784401782, + "16477": 9.7688445174, + "16478": 9.7592565958, + "16479": 9.7496755336, + "16480": 9.7401004616, + "16481": 9.730530527, + "16482": 9.7209648941, + "16483": 9.7114027458, + "16484": 9.7018432847, + "16485": 9.692286394, + "16486": 9.6827330324, + "16487": 9.6731828775, + "16488": 9.6636351304, + "16489": 9.654089117, + "16490": 9.6445441686, + "16491": 9.6349996464, + "16492": 9.6254549368, + "16493": 9.6159094531, + "16494": 9.6063626354, + "16495": 9.5968144044, + "16496": 9.5872660742, + "16497": 9.5777176371, + "16498": 9.568168536, + "16499": 9.5586183547, + "16500": 9.5490666797, + "16501": 9.5395131274, + "16502": 9.5299573372, + "16503": 9.5203989726, + "16504": 9.51083772, + "16505": 9.5012735443, + "16506": 9.4917081127, + "16507": 9.4821417112, + "16508": 9.4725739914, + "16509": 9.4630047532, + "16510": 9.4534337874, + "16511": 9.4438609059, + "16512": 9.4342859339, + "16513": 9.4247087104, + "16514": 9.4151290867, + "16515": 9.4055469919, + "16516": 9.3959644526, + "16517": 9.38638198, + "16518": 9.376799328, + "16519": 9.3672164102, + "16520": 9.3576331158, + "16521": 9.3480493454, + "16522": 9.3384650027, + "16523": 9.3288799953, + "16524": 9.3192942335, + "16525": 9.3097076303, + "16526": 9.3001213164, + "16527": 9.2905356473, + "16528": 9.2809504855, + "16529": 9.2713657535, + "16530": 9.2617813623, + "16531": 9.2521972259, + "16532": 9.2426132579, + "16533": 9.2330293726, + "16534": 9.2234454846, + "16535": 9.2138615093, + "16536": 9.2042785347, + "16537": 9.1946970357, + "16538": 9.1851169187, + "16539": 9.1755381012, + "16540": 9.1659605017, + "16541": 9.156384042, + "16542": 9.1468086479, + "16543": 9.1372342496, + "16544": 9.1276607823, + "16545": 9.1180881871, + "16546": 9.1085157508, + "16547": 9.0989430208, + "16548": 9.0893699389, + "16549": 9.0797964847, + "16550": 9.0702226408, + "16551": 9.0606484013, + "16552": 9.0510737703, + "16553": 9.0414987635, + "16554": 9.031923408, + "16555": 9.0223477431, + "16556": 9.0127729914, + "16557": 9.0032001507, + "16558": 8.9936293983, + "16559": 8.9840607983, + "16560": 8.9744944541, + "16561": 8.9649304779, + "16562": 8.9553689968, + "16563": 8.9458101516, + "16564": 8.9362540971, + "16565": 8.9267010011, + "16566": 8.9171509266, + "16567": 8.9076039448, + "16568": 8.8980602434, + "16569": 8.8885200444, + "16570": 8.8789835761, + "16571": 8.8694510777, + "16572": 8.8599227974, + "16573": 8.8503989916, + "16574": 8.8408799239, + "16575": 8.831365864, + "16576": 8.821856954, + "16577": 8.8123532919, + "16578": 8.8028551249, + "16579": 8.7933627429, + "16580": 8.7838764274, + "16581": 8.7743964598, + "16582": 8.7649231187, + "16583": 8.7554566783, + "16584": 8.7459974075, + "16585": 8.7365455681, + "16586": 8.7271012703, + "16587": 8.7176644948, + "16588": 8.7082354185, + "16589": 8.6988142762, + "16590": 8.6894012758, + "16591": 8.6799966138, + "16592": 8.6706004714, + "16593": 8.6612130137, + "16594": 8.6518343893, + "16595": 8.6424647294, + "16596": 8.6331039878, + "16597": 8.6237518447, + "16598": 8.6144082772, + "16599": 8.6050733645, + "16600": 8.5957471424, + "16601": 8.5864296322, + "16602": 8.5771208355, + "16603": 8.5678207351, + "16604": 8.5585292953, + "16605": 8.5492464627, + "16606": 8.5399721073, + "16607": 8.5307059052, + "16608": 8.5214476919, + "16609": 8.512197363, + "16610": 8.5029547855, + "16611": 8.4937198168, + "16612": 8.4844923024, + "16613": 8.4752720781, + "16614": 8.4660589711, + "16615": 8.4568528016, + "16616": 8.447653334, + "16617": 8.4384599978, + "16618": 8.4292724964, + "16619": 8.4200906611, + "16620": 8.4109142986, + "16621": 8.4017432241, + "16622": 8.392577256, + "16623": 8.3834162198, + "16624": 8.3742599489, + "16625": 8.3651082867, + "16626": 8.3559610844, + "16627": 8.3468180969, + "16628": 8.3376791736, + "16629": 8.3285442207, + "16630": 8.319413154, + "16631": 8.3102859098, + "16632": 8.3011624444, + "16633": 8.2920427355, + "16634": 8.2829267831, + "16635": 8.2738146106, + "16636": 8.2647062657, + "16637": 8.2556016665, + "16638": 8.2465008548, + "16639": 8.237403961, + "16640": 8.228311134, + "16641": 8.2192225501, + "16642": 8.2101384115, + "16643": 8.2010589462, + "16644": 8.1919844077, + "16645": 8.1829150747, + "16646": 8.17385125, + "16647": 8.1647932866, + "16648": 8.1557415463, + "16649": 8.1466963993, + "16650": 8.1376582365, + "16651": 8.1286274674, + "16652": 8.1196045192, + "16653": 8.1105898349, + "16654": 8.1015838714, + "16655": 8.0925870981, + "16656": 8.0835999947, + "16657": 8.0746219924, + "16658": 8.0656529336, + "16659": 8.0566932838, + "16660": 8.0477435567, + "16661": 8.0388042561, + "16662": 8.0298758854, + "16663": 8.0209589426, + "16664": 8.0120539186, + "16665": 8.003161295, + "16666": 7.9942815419, + "16667": 7.9854162066, + "16668": 7.9765665992, + "16669": 7.9677332338, + "16670": 7.958916486, + "16671": 7.9501167332, + "16672": 7.9413343236, + "16673": 7.9325695811, + "16674": 7.9238228016, + "16675": 7.9150942521, + "16676": 7.9063841694, + "16677": 7.8976929332, + "16678": 7.8890208967, + "16679": 7.8803682252, + "16680": 7.8717350154, + "16681": 7.8631213356, + "16682": 7.8545272167, + "16683": 7.8459526536, + "16684": 7.8373976045, + "16685": 7.8288619912, + "16686": 7.8203456988, + "16687": 7.8118488409, + "16688": 7.8033715899, + "16689": 7.7949137904, + "16690": 7.78647517, + "16691": 7.7780554391, + "16692": 7.7696542723, + "16693": 7.7612713132, + "16694": 7.7529061752, + "16695": 7.7445584429, + "16696": 7.7362276737, + "16697": 7.7279138831, + "16698": 7.7196174673, + "16699": 7.7113381021, + "16700": 7.7030752096, + "16701": 7.6948282401, + "16702": 7.686596619, + "16703": 7.6783797591, + "16704": 7.6701556372, + "16705": 7.6617297443, + "16706": 7.6531481775, + "16707": 7.6443879179, + "16708": 7.635460339, + "16709": 7.6263599175, + "16710": 7.617089958, + "16711": 7.6076495127, + "16712": 7.5980398822, + "16713": 7.5882613723, + "16714": 7.5783149139, + "16715": 7.5682012537, + "16716": 7.5579213588, + "16717": 7.5474759458, + "16718": 7.5368650397, + "16719": 7.5260895372, + "16720": 7.5151507734, + "16721": 7.5040501, + "16722": 7.4927889739, + "16723": 7.4813689393, + "16724": 7.4697916328, + "16725": 7.4580587839, + "16726": 7.4461722156, + "16727": 7.434133784, + "16728": 7.4219450354, + "16729": 7.4096079512, + "16730": 7.3971247685, + "16731": 7.3844977918, + "16732": 7.3717294315, + "16733": 7.358822197, + "16734": 7.345778699, + "16735": 7.3326016495, + "16736": 7.3192938626, + "16737": 7.3058582156, + "16738": 7.2922964881, + "16739": 7.2786114377, + "16740": 7.2648063634, + "16741": 7.2508845769, + "16742": 7.2368495073, + "16743": 7.2227046792, + "16744": 7.2084537149, + "16745": 7.1941003328, + "16746": 7.1796483453, + "16747": 7.1651016566, + "16748": 7.1504631253, + "16749": 7.1357364219, + "16750": 7.1209257625, + "16751": 7.1060353886, + "16752": 7.0910696305, + "16753": 7.0760328905, + "16754": 7.0609296413, + "16755": 7.0457644218, + "16756": 7.0305418328, + "16757": 7.0152665322, + "16758": 6.9999402431, + "16759": 6.9845663032, + "16760": 6.9691495467, + "16761": 6.9536948224, + "16762": 6.9382070159, + "16763": 6.922691039, + "16764": 6.9071518249, + "16765": 6.891594323, + "16766": 6.8760234926, + "16767": 6.8604442981, + "16768": 6.844859295, + "16769": 6.8292719546, + "16770": 6.813687147, + "16771": 6.7981098289, + "16772": 6.7825449131, + "16773": 6.7669972881, + "16774": 6.7514718079, + "16775": 6.7359732877, + "16776": 6.7205064988, + "16777": 6.705076164, + "16778": 6.689686634, + "16779": 6.6743422664, + "16780": 6.6590475843, + "16781": 6.6438070794, + "16782": 6.6286251668, + "16783": 6.61350619, + "16784": 6.5984544151, + "16785": 6.5834740292, + "16786": 6.5685691367, + "16787": 6.5537437571, + "16788": 6.5390018907, + "16789": 6.5243474508, + "16790": 6.5097842001, + "16791": 6.4953157954, + "16792": 6.4809458023, + "16793": 6.466677691, + "16794": 6.4525148362, + "16795": 6.438460516, + "16796": 6.4245179121, + "16797": 6.4106901089, + "16798": 6.3969803159, + "16799": 6.3833917252, + "16800": 6.3699271864, + "16801": 6.3565893835, + "16802": 6.3433809178, + "16803": 6.3303042923, + "16804": 6.3173619148, + "16805": 6.3045560979, + "16806": 6.2918890594, + "16807": 6.2793629228, + "16808": 6.2669799782, + "16809": 6.2547426399, + "16810": 6.2426528505, + "16811": 6.2307123317, + "16812": 6.2189227349, + "16813": 6.2072856105, + "16814": 6.1958024126, + "16815": 6.1844744967, + "16816": 6.1733031184, + "16817": 6.1622894312, + "16818": 6.1514353639, + "16819": 6.1407441427, + "16820": 6.1302171453, + "16821": 6.1198549697, + "16822": 6.1096582311, + "16823": 6.0996273983, + "16824": 6.0897628213, + "16825": 6.080064721, + "16826": 6.0705331857, + "16827": 6.0611681664, + "16828": 6.0519696626, + "16829": 6.042938102, + "16830": 6.0340731923, + "16831": 6.0253742422, + "16832": 6.0168404466, + "16833": 6.0084708241, + "16834": 6.0002642239, + "16835": 5.9922193188, + "16836": 5.9843346022, + "16837": 5.976608384, + "16838": 5.9690392786, + "16839": 5.961628929, + "16840": 5.9543761036, + "16841": 5.9472781268, + "16842": 5.940332379, + "16843": 5.9335359965, + "16844": 5.9268859324, + "16845": 5.9203789458, + "16846": 5.9140116066, + "16847": 5.9077802989, + "16848": 5.9016812507, + "16849": 5.895711335, + "16850": 5.8898666538, + "16851": 5.8841428443, + "16852": 5.8785354483, + "16853": 5.8730398487, + "16854": 5.867651294, + "16855": 5.8623649059, + "16856": 5.8571756918, + "16857": 5.852078556, + "16858": 5.8470683139, + "16859": 5.8421432865, + "16860": 5.8372994458, + "16861": 5.8325312607, + "16862": 5.8278333429, + "16863": 5.8232002529, + "16864": 5.818626557, + "16865": 5.8141068347, + "16866": 5.8096356965, + "16867": 5.805207799, + "16868": 5.8008178603, + "16869": 5.796461209, + "16870": 5.7921329856, + "16871": 5.7878281778, + "16872": 5.7835418972, + "16873": 5.7792693884, + "16874": 5.7750060419, + "16875": 5.7707474057, + "16876": 5.7664891963, + "16877": 5.7622273083, + "16878": 5.7579578232, + "16879": 5.7536782633, + "16880": 5.7493858742, + "16881": 5.7450773777, + "16882": 5.7407496518, + "16883": 5.7363997988, + "16884": 5.7320251337, + "16885": 5.7276231873, + "16886": 5.7231917046, + "16887": 5.7187286427, + "16888": 5.7142321674, + "16889": 5.7097018051, + "16890": 5.7051370453, + "16891": 5.700536744, + "16892": 5.6958998145, + "16893": 5.6912253688, + "16894": 5.6865126778, + "16895": 5.681761166, + "16896": 5.6769703992, + "16897": 5.6721400719, + "16898": 5.6672699945, + "16899": 5.6623638685, + "16900": 5.6574256121, + "16901": 5.652455889, + "16902": 5.64745469, + "16903": 5.6424222008, + "16904": 5.6373586125, + "16905": 5.6322641443, + "16906": 5.6271390235, + "16907": 5.621983476, + "16908": 5.6167977142, + "16909": 5.6115817682, + "16910": 5.6063355791, + "16911": 5.6010592251, + "16912": 5.5957527889, + "16913": 5.5904162926, + "16914": 5.5850497067, + "16915": 5.5796529458, + "16916": 5.5742258694, + "16917": 5.5687682836, + "16918": 5.5632799442, + "16919": 5.5577588494, + "16920": 5.5522580017, + "16921": 5.5468511172, + "16922": 5.5415642476, + "16923": 5.5363978033, + "16924": 5.5313510844, + "16925": 5.526423582, + "16926": 5.5216147192, + "16927": 5.516923903, + "16928": 5.5123505134, + "16929": 5.5078937865, + "16930": 5.5035527426, + "16931": 5.4993266142, + "16932": 5.4952147009, + "16933": 5.4912162596, + "16934": 5.4873305269, + "16935": 5.4835567152, + "16936": 5.479894013, + "16937": 5.4763415855, + "16938": 5.4728985746, + "16939": 5.4695632149, + "16940": 5.4663310569, + "16941": 5.4632002551, + "16942": 5.4601700631, + "16943": 5.4572394878, + "16944": 5.4544075583, + "16945": 5.4516732728, + "16946": 5.4490356092, + "16947": 5.4464935234, + "16948": 5.4440459495, + "16949": 5.4416917822, + "16950": 5.4394297754, + "16951": 5.4372587615, + "16952": 5.4351775988, + "16953": 5.4331851156, + "16954": 5.4312801218, + "16955": 5.4294614067, + "16956": 5.4277277397, + "16957": 5.4260778707, + "16958": 5.42451053, + "16959": 5.4230244621, + "16960": 5.4216194394, + "16961": 5.4202944513, + "16962": 5.4190480848, + "16963": 5.4178789853, + "16964": 5.4167857649, + "16965": 5.415767021, + "16966": 5.4148213331, + "16967": 5.4139472635, + "16968": 5.4131433578, + "16969": 5.412408145, + "16970": 5.4117402798, + "16971": 5.4111383105, + "16972": 5.410600712, + "16973": 5.4101259511, + "16974": 5.4097124779, + "16975": 5.4093587286, + "16976": 5.4090631248, + "16977": 5.4088240743, + "16978": 5.4086399715, + "16979": 5.4085091973, + "16980": 5.4084331987, + "16981": 5.4084117958, + "16982": 5.4084432985, + "16983": 5.4085260289, + "16984": 5.4086582931, + "16985": 5.4088383873, + "16986": 5.4090645968, + "16987": 5.4093351972, + "16988": 5.4096484543, + "16989": 5.4100026246, + "16990": 5.4103958745, + "16991": 5.410826393, + "16992": 5.4112924092, + "16993": 5.4117921477, + "16994": 5.4123238258, + "16995": 5.4128856538, + "16996": 5.4134758361, + "16997": 5.4140925711, + "16998": 5.414734052, + "16999": 5.4153984669, + "17000": 5.1411340687, + "17001": 5.1007386951, + "17002": 5.0601798033, + "17003": 5.0194679593, + "17004": 4.978613779, + "17005": 4.9376279266, + "17006": 4.8965211109, + "17007": 4.8553040838, + "17008": 4.8139876362, + "17009": 4.7725825957, + "17010": 4.7310998241, + "17011": 4.6895502143, + "17012": 4.647944688, + "17013": 4.6062941928, + "17014": 4.5646096997, + "17015": 4.5229022001, + "17016": 4.4811827037, + "17017": 4.4394622349, + "17018": 4.3977518309, + "17019": 4.3560625381, + "17020": 4.3144054105, + "17021": 4.27279155, + "17022": 4.2312321523, + "17023": 4.1897384682, + "17024": 4.1483217488, + "17025": 4.1069932293, + "17026": 4.0657641285, + "17027": 4.0246456455, + "17028": 3.9836489576, + "17029": 3.9427852176, + "17030": 3.9020655512, + "17031": 3.8615010564, + "17032": 3.8211028025, + "17033": 3.7808818268, + "17034": 3.7408491275, + "17035": 3.7010156588, + "17036": 3.6613923288, + "17037": 3.6219899985, + "17038": 3.5828194807, + "17039": 3.543891539, + "17040": 3.5052168863, + "17041": 3.4668062192, + "17042": 3.428670299, + "17043": 3.3908199221, + "17044": 3.3532658389, + "17045": 3.3160187283, + "17046": 3.2790891984, + "17047": 3.2424877851, + "17048": 3.2062249501, + "17049": 3.1703110792, + "17050": 3.1347564809, + "17051": 3.0995713864, + "17052": 3.0647659547, + "17053": 3.0303502697, + "17054": 2.9963343323, + "17055": 2.962728057, + "17056": 2.9295412707, + "17057": 2.8967837108, + "17058": 2.864465024, + "17059": 2.8325947641, + "17060": 2.8011823913, + "17061": 2.7702372771, + "17062": 2.7397687549, + "17063": 2.7097861148, + "17064": 2.6802985553, + "17065": 2.6513151667, + "17066": 2.6228449314, + "17067": 2.5948967223, + "17068": 2.5674793012, + "17069": 2.5406013177, + "17070": 2.514271308, + "17071": 2.4884976934, + "17072": 2.4632887859, + "17073": 2.4386527869, + "17074": 2.4145977804, + "17075": 2.3911317306, + "17076": 2.3682624804, + "17077": 2.3459977511, + "17078": 2.3243451405, + "17079": 2.3033121227, + "17080": 2.2829060469, + "17081": 2.2631341363, + "17082": 2.2440034497, + "17083": 2.2255208757, + "17084": 2.2076931642, + "17085": 2.1905269387, + "17086": 2.174028695, + "17087": 2.1582048005, + "17088": 2.1430614932, + "17089": 2.128604881, + "17090": 2.1148409408, + "17091": 2.1017755176, + "17092": 2.0894143186, + "17093": 2.0777629109, + "17094": 2.0668267254, + "17095": 2.056611058, + "17096": 2.0471210695, + "17097": 2.0383617846, + "17098": 2.0303380913, + "17099": 2.0230547399, + "17100": 2.0165163429, + "17101": 2.0107273741, + "17102": 2.0056921085, + "17103": 2.0014145986, + "17104": 1.9978987204, + "17105": 1.9951482065, + "17106": 1.9931666486, + "17107": 1.9919574961, + "17108": 1.9915240551, + "17109": 1.9918694875, + "17110": 1.9929968095, + "17111": 1.9949088914, + "17112": 1.9975247302, + "17113": 2.0000373169, + "17114": 2.0026287834, + "17115": 2.0052080917, + "17116": 2.0078207877, + "17117": 2.0104441244, + "17118": 2.0130895006, + "17119": 2.0157512416, + "17120": 2.0184322088, + "17121": 2.021130995, + "17122": 2.0238482875, + "17123": 2.0265836342, + "17124": 2.0293370742, + "17125": 2.0321083723, + "17126": 2.0348974277, + "17127": 2.0377040726, + "17128": 2.0405281724, + "17129": 2.0433695757, + "17130": 2.0462281397, + "17131": 2.0491037171, + "17132": 2.0519961582, + "17133": 2.0549053016, + "17134": 2.0578309796, + "17135": 2.060773023, + "17136": 2.0637312632, + "17137": 2.0667055316, + "17138": 2.0696956599, + "17139": 2.07270148, + "17140": 2.0757228243, + "17141": 2.0787595252, + "17142": 2.0818114063, + "17143": 2.0848782677, + "17144": 2.0879598916, + "17145": 2.0910560573, + "17146": 2.0941665452, + "17147": 2.0972911361, + "17148": 2.1004296115, + "17149": 2.1035817534, + "17150": 2.1067473444, + "17151": 2.1099261679, + "17152": 2.1131180064, + "17153": 2.1163226383, + "17154": 2.1195398391, + "17155": 2.1227693841, + "17156": 2.1260110491, + "17157": 2.129264611, + "17158": 2.1325298469, + "17159": 2.1358065348, + "17160": 2.1390944534, + "17161": 2.142393382, + "17162": 2.145703102, + "17163": 2.1490234032, + "17164": 2.152354083, + "17165": 2.1556949409, + "17166": 2.1590457769, + "17167": 2.1624063915, + "17168": 2.1657765861, + "17169": 2.1691561622, + "17170": 2.1725449223, + "17171": 2.1759426693, + "17172": 2.1793492067, + "17173": 2.1827643406, + "17174": 2.1861878794, + "17175": 2.1896196323, + "17176": 2.1930594092, + "17177": 2.1965070202, + "17178": 2.199962276, + "17179": 2.2034249877, + "17180": 2.2068949667, + "17181": 2.210372025, + "17182": 2.2138559756, + "17183": 2.2173466511, + "17184": 2.2208439058, + "17185": 2.224347599, + "17186": 2.22785759, + "17187": 2.2313737381, + "17188": 2.2348959029, + "17189": 2.2384239442, + "17190": 2.241957722, + "17191": 2.2454970965, + "17192": 2.249041928, + "17193": 2.2525920823, + "17194": 2.2561474317, + "17195": 2.2597078502, + "17196": 2.2632732122, + "17197": 2.266843392, + "17198": 2.2704182641, + "17199": 2.2739977031, + "17200": 2.2775815839, + "17201": 2.2811697814, + "17202": 2.2847621707, + "17203": 2.2883586431, + "17204": 2.2919591108, + "17205": 2.2955634935, + "17206": 2.2991717112, + "17207": 2.302783684, + "17208": 2.3063993322, + "17209": 2.3100185758, + "17210": 2.3136413353, + "17211": 2.3172675311, + "17212": 2.3208970835, + "17213": 2.3245299164, + "17214": 2.3281659579, + "17215": 2.3318051379, + "17216": 2.3354473868, + "17217": 2.3390926353, + "17218": 2.3427408139, + "17219": 2.3463918535, + "17220": 2.350045685, + "17221": 2.3537022397, + "17222": 2.3573614488, + "17223": 2.3610232543, + "17224": 2.3646876144, + "17225": 2.3683544962, + "17226": 2.3720238678, + "17227": 2.3756956973, + "17228": 2.3793699529, + "17229": 2.3830466026, + "17230": 2.386725615, + "17231": 2.3904069585, + "17232": 2.3940906015, + "17233": 2.3977765148, + "17234": 2.401464673, + "17235": 2.4051550532, + "17236": 2.4088476326, + "17237": 2.4125423888, + "17238": 2.4162392992, + "17239": 2.4199383415, + "17240": 2.4236394933, + "17241": 2.4273427324, + "17242": 2.4310480367, + "17243": 2.4347553858, + "17244": 2.4384647633, + "17245": 2.4421761556, + "17246": 2.4458895492, + "17247": 2.4496049307, + "17248": 2.4533222866, + "17249": 2.4570416035, + "17250": 2.4607628678, + "17251": 2.4644860658, + "17252": 2.4682111839, + "17253": 2.471938209, + "17254": 2.4756671289, + "17255": 2.4793979326, + "17256": 2.4831306091, + "17257": 2.4868651472, + "17258": 2.4906015356, + "17259": 2.4943397629, + "17260": 2.4980798177, + "17261": 2.5018216881, + "17262": 2.5055653624, + "17263": 2.5093108278, + "17264": 2.5130580681, + "17265": 2.5168070645, + "17266": 2.5205577974, + "17267": 2.5243102471, + "17268": 2.5280643937, + "17269": 2.5318202171, + "17270": 2.5355776968, + "17271": 2.5393368124, + "17272": 2.5430975431, + "17273": 2.5468598678, + "17274": 2.550623764, + "17275": 2.5543892076, + "17276": 2.5581561746, + "17277": 2.5619246402, + "17278": 2.56569458, + "17279": 2.5694659691, + "17280": 2.5732387826, + "17281": 2.5770129952, + "17282": 2.5807885817, + "17283": 2.5845655155, + "17284": 2.5883437593, + "17285": 2.5921232654, + "17286": 2.5959039834, + "17287": 2.5996858631, + "17288": 2.603468854, + "17289": 2.6072529056, + "17290": 2.6110379673, + "17291": 2.6148239885, + "17292": 2.6186109185, + "17293": 2.6223987062, + "17294": 2.6261872962, + "17295": 2.6299766277, + "17296": 2.6337666389, + "17297": 2.6375572679, + "17298": 2.641348453, + "17299": 2.6451401324, + "17300": 2.6489322443, + "17301": 2.6527247272, + "17302": 2.6565175195, + "17303": 2.6603105597, + "17304": 2.6641037769, + "17305": 2.6678970899, + "17306": 2.6716904149, + "17307": 2.6754836693, + "17308": 2.6792767695, + "17309": 2.6830696326, + "17310": 2.6868621761, + "17311": 2.690654318, + "17312": 2.6944459763, + "17313": 2.69823707, + "17314": 2.7020275156, + "17315": 2.7058172271, + "17316": 2.7096061175, + "17317": 2.7133941007, + "17318": 2.7171810908, + "17319": 2.7209670027, + "17320": 2.7247517518, + "17321": 2.7285352235, + "17322": 2.732317366, + "17323": 2.7360980962, + "17324": 2.7398773148, + "17325": 2.7436549295, + "17326": 2.747430856, + "17327": 2.7512050035, + "17328": 2.7549772886, + "17329": 2.7587476232, + "17330": 2.7625159259, + "17331": 2.7662821113, + "17332": 2.7700461001, + "17333": 2.7738078091, + "17334": 2.7775671641, + "17335": 2.7813240918, + "17336": 2.7850785269, + "17337": 2.7888304013, + "17338": 2.7925796523, + "17339": 2.7963262143, + "17340": 2.8000700265, + "17341": 2.8038110258, + "17342": 2.8075491533, + "17343": 2.8112843484, + "17344": 2.815016558, + "17345": 2.8187457345, + "17346": 2.8224718385, + "17347": 2.8261948291, + "17348": 2.8299146691, + "17349": 2.8336313197, + "17350": 2.8373447455, + "17351": 2.8410549093, + "17352": 2.8447617772, + "17353": 2.848465314, + "17354": 2.8521654888, + "17355": 2.8558622736, + "17356": 2.8595556452, + "17357": 2.8632455799, + "17358": 2.8669320563, + "17359": 2.8706150519, + "17360": 2.8742945462, + "17361": 2.8779705179, + "17362": 2.8816429474, + "17363": 2.8853118144, + "17364": 2.8889771027, + "17365": 2.8926388026, + "17366": 2.8962969106, + "17367": 2.8999514238, + "17368": 2.9036023399, + "17369": 2.907249656, + "17370": 2.9108933697, + "17371": 2.9145334784, + "17372": 2.9181699798, + "17373": 2.9218028711, + "17374": 2.9254321513, + "17375": 2.929057823, + "17376": 2.9326798926, + "17377": 2.9362983666, + "17378": 2.9399132514, + "17379": 2.9435245532, + "17380": 2.947132278, + "17381": 2.9507364314, + "17382": 2.9543370188, + "17383": 2.9579340452, + "17384": 2.9615275167, + "17385": 2.9651174431, + "17386": 2.9687038384, + "17387": 2.9722867168, + "17388": 2.9758660921, + "17389": 2.9794419773, + "17390": 2.9830143855, + "17391": 2.9865833287, + "17392": 2.9901488191, + "17393": 2.993710868, + "17394": 2.9972694869, + "17395": 3.0008246896, + "17396": 3.0043764928, + "17397": 3.0079249129, + "17398": 3.0114699662, + "17399": 3.0150116681, + "17400": 3.0185500339, + "17401": 3.0220850784, + "17402": 3.0256168158, + "17403": 3.0291452601, + "17404": 3.0326704249, + "17405": 3.0361923256, + "17406": 3.0397109791, + "17407": 3.0432264024, + "17408": 3.0467386125, + "17409": 3.0502476254, + "17410": 3.0537534573, + "17411": 3.0572561239, + "17412": 3.0607556406, + "17413": 3.0642520225, + "17414": 3.0677452847, + "17415": 3.0712354431, + "17416": 3.074722515, + "17417": 3.0782065179, + "17418": 3.0816874132, + "17419": 3.0851652854, + "17420": 3.088639556, + "17421": 3.0921109944, + "17422": 3.095573848, + "17423": 3.0990145378, + "17424": 3.1024179092, + "17425": 3.1057696484, + "17426": 3.1090563047, + "17427": 3.1122652718, + "17428": 3.1153847749, + "17429": 3.1184038552, + "17430": 3.1213123529, + "17431": 3.1241008892, + "17432": 3.1267608472, + "17433": 3.1292843518, + "17434": 3.1316642497, + "17435": 3.1338940875, + "17436": 3.1359680907, + "17437": 3.1378811411, + "17438": 3.1396287551, + "17439": 3.1412070612, + "17440": 3.1426127777, + "17441": 3.1438431901, + "17442": 3.1448961293, + "17443": 3.1457699492, + "17444": 3.1464635045, + "17445": 3.1469761288, + "17446": 3.1473076117, + "17447": 3.1474581789, + "17448": 3.1474284722, + "17449": 3.147219529, + "17450": 3.1468327623, + "17451": 3.1462699409, + "17452": 3.1455331703, + "17453": 3.1446248735, + "17454": 3.1435477728, + "17455": 3.1423048709, + "17456": 3.1408994324, + "17457": 3.1393349674, + "17458": 3.1376152144, + "17459": 3.1357441239, + "17460": 3.1337258424, + "17461": 3.1315646956, + "17462": 3.1292651735, + "17463": 3.1268319141, + "17464": 3.1242696889, + "17465": 3.1215833874, + "17466": 3.1187780015, + "17467": 3.1158586119, + "17468": 3.1128303747, + "17469": 3.1096985078, + "17470": 3.1064682774, + "17471": 3.1031449848, + "17472": 3.0997339536, + "17473": 3.096240517, + "17474": 3.0926700055, + "17475": 3.0890277347, + "17476": 3.0853189928, + "17477": 3.08154903, + "17478": 3.0777230479, + "17479": 3.0738461898, + "17480": 3.0699235303, + "17481": 3.0659600656, + "17482": 3.0619607052, + "17483": 3.0579302627, + "17484": 3.0538734481, + "17485": 3.0497948602, + "17486": 3.0456989792, + "17487": 3.0415901608, + "17488": 3.0374726307, + "17489": 3.0333504801, + "17490": 3.0292276613, + "17491": 3.0251079839, + "17492": 3.020995112, + "17493": 3.016892562, + "17494": 3.0128037005, + "17495": 3.008731744, + "17496": 3.0046797573, + "17497": 3.000650655, + "17498": 2.9966472018, + "17499": 2.9926720154, + "17500": 2.9887275682, + "17501": 2.9848161901, + "17502": 2.9809400724, + "17503": 2.9771012709, + "17504": 2.9733017111, + "17505": 2.9695431925, + "17506": 2.9658273939, + "17507": 2.9621558787, + "17508": 2.9585301013, + "17509": 2.9549514128, + "17510": 2.9514210675, + "17511": 2.9479402292, + "17512": 2.9445099778, + "17513": 2.9411313159, + "17514": 2.9378051753, + "17515": 2.9345324233, + "17516": 2.9313138694, + "17517": 2.928150271, + "17518": 2.9250423401, + "17519": 2.9219907486, + "17520": 2.9189961342, + "17521": 2.9160591052, + "17522": 2.9131802457, + "17523": 2.9103601199, + "17524": 2.9075992759, + "17525": 2.9048982497, + "17526": 2.9022575683, + "17527": 2.8996777522, + "17528": 2.8971593178, + "17529": 2.8947027789, + "17530": 2.892308648, + "17531": 2.889977437, + "17532": 2.8877096571, + "17533": 2.8855058192, + "17534": 2.8833664327, + "17535": 2.8812920043, + "17536": 2.8792830369, + "17537": 2.8773400276, + "17538": 2.8754634648, + "17539": 2.873653826, + "17540": 2.871911574, + "17541": 2.8702371541, + "17542": 2.8686309902, + "17543": 2.8670934808, + "17544": 2.8656249954, + "17545": 2.8642258699, + "17546": 2.8628964025, + "17547": 2.8616368492, + "17548": 2.8604474196, + "17549": 2.8593282724, + "17550": 2.8582795115, + "17551": 2.8573011814, + "17552": 2.8563932636, + "17553": 2.8555556727, + "17554": 2.8547882526, + "17555": 2.8540907738, + "17556": 2.8534629304, + "17557": 2.8529043381, + "17558": 2.8524145315, + "17559": 2.8519929623, + "17560": 2.8516389976, + "17561": 2.8513519192, + "17562": 2.8511309235, + "17563": 2.8509751212, + "17564": 2.8508835386, + "17565": 2.8508551183, + "17566": 2.8508887216, + "17567": 2.8509831306, + "17568": 2.8511370517, + "17569": 2.8513491179, + "17570": 2.851617894, + "17571": 2.8519418802, + "17572": 2.8523195177, + "17573": 2.852749194, + "17574": 2.8532292488, + "17575": 2.8537579807, + "17576": 2.8543336536, + "17577": 2.8549545047, + "17578": 2.8556187513, + "17579": 2.8563245987, + "17580": 2.8570702478, + "17581": 2.8578539035, + "17582": 2.8586737819, + "17583": 2.8595281194, + "17584": 2.8604151803, + "17585": 2.861333265, + "17586": 2.8622807181, + "17587": 2.8632559362, + "17588": 2.8642573754, + "17589": 2.8652835586, + "17590": 2.8663330823, + "17591": 2.8674046231, + "17592": 2.8684969438, + "17593": 2.869608899, + "17594": 2.8707394399, + "17595": 2.8718876193, + "17596": 2.8730525947, + "17597": 2.8742336324, + "17598": 2.8754301091, + "17599": 2.8766415146, + "17600": 2.8778674521, + "17601": 2.8791076387, + "17602": 2.8803619053, + "17603": 2.8816301952, + "17604": 2.8829125625, + "17605": 2.884209169, + "17606": 2.8855202812, + "17607": 2.8868462662, + "17608": 2.8881875868, + "17609": 2.889544796, + "17610": 2.8909185311, + "17611": 2.8923095067, + "17612": 2.8937185075, + "17613": 2.8951463806, + "17614": 2.8965940269, + "17615": 2.8980623923, + "17616": 2.8995524589, + "17617": 2.9010652348, + "17618": 2.9026017448, + "17619": 2.9041630199, + "17620": 2.905750087, + "17621": 2.9073639591, + "17622": 2.9090056238, + "17623": 2.9106760337, + "17624": 2.9123760954, + "17625": 2.9141066596, + "17626": 2.9158685106, + "17627": 2.9176623565, + "17628": 2.9194888197, + "17629": 2.9213484278, + "17630": 2.9232416043, + "17631": 2.9251686609, + "17632": 2.927129789, + "17633": 2.9291250531, + "17634": 2.9311543839, + "17635": 2.9332175723, + "17636": 2.9353142644, + "17637": 2.9374439566, + "17638": 2.9396059927, + "17639": 2.9417995602, + "17640": 2.9440236889, + "17641": 2.9462772497, + "17642": 2.9485589544, + "17643": 2.9508673562, + "17644": 2.9532008516, + "17645": 2.9555576825, + "17646": 2.9579359402, + "17647": 2.9603335693, + "17648": 2.9627483728, + "17649": 2.965178019, + "17650": 2.9676200475, + "17651": 2.9700718777, + "17652": 2.972530817, + "17653": 2.9749940702, + "17654": 2.9774587497, + "17655": 2.9799218858, + "17656": 2.9823804383, + "17657": 2.9848313078, + "17658": 2.9872713482, + "17659": 2.9896973794, + "17660": 2.9921062005, + "17661": 2.9944946031, + "17662": 2.9968593851, + "17663": 2.9991973641, + "17664": 3.0015053911, + "17665": 3.0037803645, + "17666": 3.0060192437, + "17667": 3.0082190623, + "17668": 3.010376942, + "17669": 3.0124901052, + "17670": 3.0145558873, + "17671": 3.016571749, + "17672": 3.0185352881, + "17673": 3.02044425, + "17674": 3.0222965386, + "17675": 3.0240902262, + "17676": 3.0258235618, + "17677": 3.0274949801, + "17678": 3.0291031085, + "17679": 3.0306467739, + "17680": 3.0321250082, + "17681": 3.0335370535, + "17682": 3.0348823656, + "17683": 3.0361606171, + "17684": 3.0373716996, + "17685": 3.0385157242, + "17686": 3.0395930222, + "17687": 3.0406041438, + "17688": 3.0415498563, + "17689": 3.0424311417, + "17690": 3.0432491925, + "17691": 3.0440054076, + "17692": 3.0447013862, + "17693": 3.0453389222, + "17694": 3.0459199967, + "17695": 3.0464467704, + "17696": 3.0469215746, + "17697": 3.0473469024, + "17698": 3.0477253985, + "17699": 3.0480598488, + "17700": 3.0483531693, + "17701": 3.0486083944, + "17702": 3.0488286649, + "17703": 3.0490172157, + "17704": 3.0493056451, + "17705": 3.0508587335, + "17706": 3.0534040214, + "17707": 3.057081398, + "17708": 3.0618237822, + "17709": 3.067666787, + "17710": 3.0745938922, + "17711": 3.0826138607, + "17712": 3.0917220314, + "17713": 3.101919673, + "17714": 3.1132043049, + "17715": 3.1255745339, + "17716": 3.1390276317, + "17717": 3.1535607403, + "17718": 3.1691702624, + "17719": 3.1858521587, + "17720": 3.2036017906, + "17721": 3.2224139889, + "17722": 3.2422830098, + "17723": 3.2632025456, + "17724": 3.285165708, + "17725": 3.3081650248, + "17726": 3.3321924296, + "17727": 3.3572392548, + "17728": 3.3832962229, + "17729": 3.4103534392, + "17730": 3.4384003839, + "17731": 3.4674259051, + "17732": 3.4974182121, + "17733": 3.5283648691, + "17734": 3.5602527899, + "17735": 3.593068233, + "17736": 3.6267967981, + "17737": 3.6614234228, + "17738": 3.696932381, + "17739": 3.7333072821, + "17740": 3.7705310714, + "17741": 3.8085860327, + "17742": 3.8474537907, + "17743": 3.8871153162, + "17744": 3.9275509318, + "17745": 3.9687403202, + "17746": 4.0106625323, + "17747": 4.0532959991, + "17748": 4.096618543, + "17749": 4.1406073923, + "17750": 4.1852391962, + "17751": 4.2304900429, + "17752": 4.2763354774, + "17753": 4.3227505222, + "17754": 4.3697096989, + "17755": 4.4171870511, + "17756": 4.4651561692, + "17757": 4.5135902158, + "17758": 4.5624619525, + "17759": 4.6117437676, + "17760": 4.6614077056, + "17761": 4.7114254978, + "17762": 4.7617685933, + "17763": 4.8124081902, + "17764": 4.8633152684, + "17765": 4.9144606222, + "17766": 4.9658148936, + "17767": 5.0173486057, + "17768": 5.0690321954, + "17769": 5.1208360473, + "17770": 5.1727305271, + "17771": 5.2246860155, + "17772": 5.2766729412, + "17773": 5.3286618134, + "17774": 5.3806232536, + "17775": 5.4325280269, + "17776": 5.4843470727, + "17777": 5.536051534, + "17778": 5.5876127857, + "17779": 5.6390024624, + "17780": 5.6901924845, + "17781": 5.7411550836, + "17782": 5.7918628267, + "17783": 5.8422886383, + "17784": 5.8924058216, + "17785": 5.9421880786, + "17786": 5.9916095277, + "17787": 6.0406447208, + "17788": 6.0892686584, + "17789": 6.1374568032, + "17790": 6.1851850924, + "17791": 6.2324299488, + "17792": 6.2791682897, + "17793": 6.3253775354, + "17794": 6.3710356154, + "17795": 6.4161209743, + "17796": 6.4606125758, + "17797": 6.5044899062, + "17798": 6.5477329761, + "17799": 6.5903223218, + "17800": 6.6322390063, + "17801": 6.6734646197, + "17802": 6.7139812788, + "17803": 6.7537716269, + "17804": 6.7928188334, + "17805": 6.8311065928, + "17806": 6.8686191251, + "17807": 6.9053411755, + "17808": 6.9412580156, + "17809": 6.9763554449, + "17810": 7.0106197935, + "17811": 7.0440379253, + "17812": 7.0765972435, + "17813": 7.1082856965, + "17814": 7.1390917859, + "17815": 7.1690045762, + "17816": 7.198013706, + "17817": 7.2261094013, + "17818": 7.2532824908, + "17819": 7.2795244231, + "17820": 7.3048272861, + "17821": 7.3291838271, + "17822": 7.352587476, + "17823": 7.3750323696, + "17824": 7.3965133779, + "17825": 7.4170261324, + "17826": 7.4365670547, + "17827": 7.4551333874, + "17828": 7.4727232254, + "17829": 7.4893355483, + "17830": 7.5049702528, + "17831": 7.519628185, + "17832": 7.5333111726, + "17833": 7.5460220566, + "17834": 7.5577647219, + "17835": 7.5685441266, + "17836": 7.5783663297, + "17837": 7.5872385162, + "17838": 7.59516902, + "17839": 7.6021673455, + "17840": 7.6082441841, + "17841": 7.6134114251, + "17842": 7.6176821647, + "17843": 7.6210707093, + "17844": 7.6235925755, + "17845": 7.6252644846, + "17846": 7.6261043511, + "17847": 7.6261312673, + "17848": 7.625365481, + "17849": 7.6238283683, + "17850": 7.6215424008, + "17851": 7.6185311055, + "17852": 7.6148190203, + "17853": 7.6104316434, + "17854": 7.6053953768, + "17855": 7.5997374657, + "17856": 7.5934859312, + "17857": 7.5866694997, + "17858": 7.5793175271, + "17859": 7.571459921, + "17860": 7.5631270579, + "17861": 7.5543496948, + "17862": 7.5451588788, + "17863": 7.535585856, + "17864": 7.5256619778, + "17865": 7.5154186072, + "17866": 7.5048870237, + "17867": 7.494098329, + "17868": 7.483083353, + "17869": 7.471872562, + "17870": 7.4604959677, + "17871": 7.4489830392, + "17872": 7.4373626177, + "17873": 7.4256628347, + "17874": 7.4139110356, + "17875": 7.4021337064, + "17876": 7.3903564069, + "17877": 7.3786037086, + "17878": 7.3668991392, + "17879": 7.3552651346, + "17880": 7.3437229973, + "17881": 7.3322928592, + "17882": 7.3209936526, + "17883": 7.3098430897, + "17884": 7.2988576483, + "17885": 7.2880525667, + "17886": 7.2774418454, + "17887": 7.2670382565, + "17888": 7.2568533607, + "17889": 7.2468975325, + "17890": 7.2371799925, + "17891": 7.2277088447, + "17892": 7.2184911215, + "17893": 7.2095328346, + "17894": 7.2008390319, + "17895": 7.1924138597, + "17896": 7.1842606297, + "17897": 7.1763818899, + "17898": 7.1687794989, + "17899": 7.1614547056, + "17900": 7.1544082297, + "17901": 7.1476403417, + "17902": 7.1411509421, + "17903": 7.1349396422, + "17904": 7.1290058412, + "17905": 7.1233488032, + "17906": 7.1179677306, + "17907": 7.1128618342, + "17908": 7.1080303985, + "17909": 7.1034728413, + "17910": 7.0991887671, + "17911": 7.0951780129, + "17912": 7.0914406868, + "17913": 7.0879771973, + "17914": 7.084788274, + "17915": 7.0818749785, + "17916": 7.0792387048, + "17917": 7.0768811702, + "17918": 7.0748043945, + "17919": 7.0730106691, + "17920": 7.071164369, + "17921": 7.0688196527, + "17922": 7.0658196793, + "17923": 7.0621596374, + "17924": 7.057841544, + "17925": 7.0528662448, + "17926": 7.0472350114, + "17927": 7.040949222, + "17928": 7.0340104248, + "17929": 7.0264203248, + "17930": 7.0181807863, + "17931": 7.0092938315, + "17932": 6.9997616408, + "17933": 6.9895865519, + "17934": 6.9787710595, + "17935": 6.9673178152, + "17936": 6.9552296264, + "17937": 6.942509456, + "17938": 6.9291604219, + "17939": 6.9151857961, + "17940": 6.9005890027, + "17941": 6.8853736176, + "17942": 6.8695433688, + "17943": 6.8531021366, + "17944": 6.8360539527, + "17945": 6.8184029994, + "17946": 6.8001536089, + "17947": 6.7813102627, + "17948": 6.7618775907, + "17949": 6.7418603705, + "17950": 6.7212635262, + "17951": 6.7000921281, + "17952": 6.6783513914, + "17953": 6.6560466759, + "17954": 6.6331834845, + "17955": 6.6097674624, + "17956": 6.5858043966, + "17957": 6.5613002142, + "17958": 6.5362609818, + "17959": 6.5106929042, + "17960": 6.4846023228, + "17961": 6.4579957142, + "17962": 6.4308796906, + "17963": 6.403260998, + "17964": 6.3751465153, + "17965": 6.3465432528, + "17966": 6.3174583508, + "17967": 6.2878990781, + "17968": 6.2578728305, + "17969": 6.2273871298, + "17970": 6.1964496212, + "17971": 6.1650680728, + "17972": 6.1332503734, + "17973": 6.101004531, + "17974": 6.0683386711, + "17975": 6.0352610351, + "17976": 6.0017799781, + "17977": 5.9679039677, + "17978": 5.9336415817, + "17979": 5.8990015061, + "17980": 5.8639925339, + "17981": 5.8286235627, + "17982": 5.7929035926, + "17983": 5.7568417242, + "17984": 5.7204471559, + "17985": 5.6837291825, + "17986": 5.6466971925, + "17987": 5.6093606662, + "17988": 5.5717291732, + "17989": 5.5338123704, + "17990": 5.495619999, + "17991": 5.4571618828, + "17992": 5.4184479253, + "17993": 5.3794881076, + "17994": 5.3402924859, + "17995": 5.3008711893, + "17996": 5.2612344167, + "17997": 5.2213924347, + "17998": 5.1813555746, + "17999": 5.1411342303, + "18000": 20.0438443368, + "18001": 20.0290032334, + "18002": 20.014162338, + "18003": 19.9993213386, + "18004": 19.9844803912, + "18005": 19.9696394178, + "18006": 19.9547984574, + "18007": 19.9399574905, + "18008": 19.9251165268, + "18009": 19.9102755615, + "18010": 19.895434597, + "18011": 19.8805936322, + "18012": 19.8657526675, + "18013": 19.8509117027, + "18014": 19.836070738, + "18015": 19.8212297732, + "18016": 19.8063888085, + "18017": 19.7915478438, + "18018": 19.776706879, + "18019": 19.7618659143, + "18020": 19.7470249495, + "18021": 20.1696519786, + "18022": 20.8383547543, + "18023": 21.3840196567, + "18024": 21.9912034957, + "18025": 22.5676278664, + "18026": 23.1594319713, + "18027": 23.7435462091, + "18028": 24.3315053804, + "18029": 24.917542085, + "18030": 25.5045400229, + "18031": 26.1049761091, + "18032": 26.7201066055, + "18033": 27.3278898969, + "18034": 27.9393467908, + "18035": 28.5489668834, + "18036": 29.1595053767, + "18037": 29.7695846696, + "18038": 30.3798935627, + "18039": 30.9900876558, + "18040": 31.6003391488, + "18041": 32.6508663046, + "18042": 34.4939556632, + "18043": 35.9407639205, + "18044": 37.5857127284, + "18045": 39.131591261, + "18046": 40.7270049312, + "18047": 42.2976510326, + "18048": 43.8806809185, + "18049": 45.4575189121, + "18050": 47.0374528518, + "18051": 48.64045237, + "18052": 50.3233408613, + "18053": 51.9662848661, + "18054": 53.6292011141, + "18055": 55.2821312405, + "18056": 56.9400544277, + "18057": 58.5954810845, + "18058": 60.2521560065, + "18059": 61.9082067959, + "18060": 63.5645696517, + "18061": 65.3328287494, + "18062": 67.8575187212, + "18063": 70.003993256, + "18064": 72.3395755093, + "18065": 74.5806039034, + "18066": 76.868909227, + "18067": 79.1335760859, + "18068": 81.4100621772, + "18069": 83.6806386522, + "18070": 85.9541699355, + "18071": 88.2296385223, + "18072": 90.6134091068, + "18073": 92.9430286925, + "18074": 95.2997237776, + "18075": 97.642881113, + "18076": 99.9928073232, + "18077": 102.339349096, + "18078": 104.6875830875, + "18079": 107.0349709697, + "18080": 109.3827819065, + "18081": 111.730381316, + "18082": 113.3529586721, + "18083": 115.291264615, + "18084": 117.0717062645, + "18085": 118.9310800606, + "18086": 120.7509877835, + "18087": 122.590628543, + "18088": 124.4204027842, + "18089": 126.2551102846, + "18090": 128.0873511553, + "18091": 129.9208253409, + "18092": 131.6440952456, + "18093": 133.4028980722, + "18094": 135.1439344379, + "18095": 136.8938540341, + "18096": 138.639332015, + "18097": 140.3870308035, + "18098": 142.1336191883, + "18099": 143.8807627749, + "18100": 145.6276287606, + "18101": 147.3746335468, + "18102": 147.8595076643, + "18103": 148.5715875103, + "18104": 149.170064492, + "18105": 149.8253429059, + "18106": 150.4522206037, + "18107": 151.0932986595, + "18108": 151.7272765364, + "18109": 152.3648045027, + "18110": 153.0005574243, + "18111": 153.6371978682, + "18112": 153.9664040877, + "18113": 154.2958321878, + "18114": 154.6251493475, + "18115": 154.9545219774, + "18116": 155.2838668722, + "18117": 155.6132256346, + "18118": 155.9425774632, + "18119": 156.2719327587, + "18120": 156.6012863207, + "18121": 156.9306407495, + "18122": 156.4207691265, + "18123": 155.712133758, + "18124": 155.1028802622, + "18125": 154.44393583, + "18126": 153.8098368661, + "18127": 153.163315168, + "18128": 152.523004837, + "18129": 151.8795888225, + "18130": 151.2377256497, + "18131": 150.595086056, + "18132": 149.8486441521, + "18133": 149.0434009752, + "18134": 148.2675584347, + "18135": 147.477015576, + "18136": 146.6938228765, + "18137": 145.9069550973, + "18138": 145.121924858, + "18139": 144.3359758487, + "18140": 143.5504862244, + "18141": 142.7647669077, + "18142": 141.7853788591, + "18143": 140.6046965948, + "18144": 139.5246614384, + "18145": 138.3943027281, + "18146": 137.2891057947, + "18147": 136.1713279729, + "18148": 135.0598405953, + "18149": 133.9452079955, + "18150": 132.8321480068, + "18151": 131.7183017126, + "18152": 130.5762757603, + "18153": 129.382622172, + "18154": 128.2147824017, + "18155": 127.0340357224, + "18156": 125.8597424976, + "18157": 124.6822225456, + "18158": 123.5063159572, + "18159": 122.3296026869, + "18160": 121.1532927576, + "18161": 119.9767811578, + "18162": 118.8339750631, + "18163": 117.799133561, + "18164": 116.7103097626, + "18165": 115.6484771123, + "18166": 114.573148888, + "18167": 113.5045684507, + "18168": 112.4326141199, + "18169": 111.3623467358, + "18170": 110.2912358783, + "18171": 109.2205467576, + "18172": 108.154361168, + "18173": 107.1201032092, + "18174": 106.069881435, + "18175": 105.0276415686, + "18176": 103.9814107482, + "18177": 102.9371754048, + "18178": 101.8919423229, + "18179": 100.8472081103, + "18180": 99.802224463, + "18181": 98.7573655331, + "18182": 97.7248074823, + "18183": 97.0817226025, + "18184": 96.2439011373, + "18185": 95.5034479648, + "18186": 94.7143106459, + "18187": 93.9495154002, + "18188": 93.1725491179, + "18189": 92.4016683539, + "18190": 91.6277448307, + "18191": 90.8553426872, + "18192": 90.0821798538, + "18193": 89.4203487948, + "18194": 88.7100100054, + "18195": 88.0239250812, + "18196": 87.3257132244, + "18197": 86.6335648339, + "18198": 85.9383847102, + "18199": 85.2447204531, + "18200": 84.5502982628, + "18201": 83.8562550391, + "18202": 83.162022332, + "18203": 82.8029698393, + "18204": 82.336163931, + "18205": 81.9232347306, + "18206": 81.4833671762, + "18207": 81.0569687987, + "18208": 80.6238358328, + "18209": 80.1940701612, + "18210": 79.7626208424, + "18211": 79.3320133471, + "18212": 78.9009849401, + "18213": 78.5327949613, + "18214": 78.1532267195, + "18215": 77.7793476091, + "18216": 77.4026239331, + "18217": 77.0273225399, + "18218": 76.6513100052, + "18219": 76.2756530413, + "18220": 75.8998182921, + "18221": 75.5240724355, + "18222": 75.1482821325, + "18223": 74.9842412495, + "18224": 74.8201892548, + "18225": 74.656142816, + "18226": 74.4920935993, + "18227": 74.3280457715, + "18228": 74.1639972492, + "18229": 73.9999490742, + "18230": 73.8359007255, + "18231": 73.6718524637, + "18232": 73.5078041585, + "18233": 73.3862655461, + "18234": 73.2747950029, + "18235": 73.1582904252, + "18236": 73.0443028647, + "18237": 72.9290567956, + "18238": 72.8144399808, + "18239": 72.6995085388, + "18240": 72.5847344105, + "18241": 72.4698816253, + "18242": 72.3550681685, + "18243": 72.2765297913, + "18244": 72.2184170397, + "18245": 72.1500914752, + "18246": 72.0868723172, + "18247": 72.0210999559, + "18248": 71.9566041963, + "18249": 71.8914701358, + "18250": 71.8266552258, + "18251": 71.7616807405, + "18252": 71.6967860428, + "18253": 71.6417824685, + "18254": 71.5971118202, + "18255": 71.5472747089, + "18256": 71.5000208291, + "18257": 71.4514753336, + "18258": 71.4035756459, + "18259": 71.3553530543, + "18260": 71.3072919146, + "18261": 71.259150049, + "18262": 71.2110485464, + "18263": 71.1440022392, + "18264": 71.0429017014, + "18265": 70.9588282788, + "18266": 70.8662412986, + "18267": 70.7779110973, + "18268": 70.6874525065, + "18269": 70.5980581104, + "18270": 70.508131617, + "18271": 70.4184711723, + "18272": 70.3286777032, + "18273": 70.2336561986, + "18274": 70.121583249, + "18275": 70.0180360219, + "18276": 69.9102259336, + "18277": 69.8045472759, + "18278": 69.6978029029, + "18279": 69.5915913875, + "18280": 69.4851134433, + "18281": 69.3787687135, + "18282": 69.2723573765, + "18283": 69.1402087212, + "18284": 68.8340917161, + "18285": 68.6149588859, + "18286": 68.3523339682, + "18287": 68.1114550943, + "18288": 67.8597031985, + "18289": 67.6133878136, + "18290": 67.3643541733, + "18291": 67.1166796606, + "18292": 66.8683255842, + "18293": 66.6174021017, + "18294": 66.2746693071, + "18295": 65.9778411685, + "18296": 65.6580607019, + "18297": 65.3497563994, + "18298": 65.0357140148, + "18299": 64.7245406712, + "18300": 64.4119328072, + "18301": 64.1000422034, + "18302": 63.7877929694, + "18303": 63.4757230505, + "18304": 63.0510751517, + "18305": 62.6754589317, + "18306": 62.2753268722, + "18307": 61.8874527325, + "18308": 61.4934496329, + "18309": 61.1025110133, + "18310": 60.7100401537, + "18311": 60.318335414, + "18312": 59.9262476144, + "18313": 59.5343513448, + "18314": 59.0924953397, + "18315": 58.6667149219, + "18316": 58.2328967104, + "18317": 57.8030973958, + "18318": 57.3712886328, + "18319": 56.940484594, + "18320": 56.509178193, + "18321": 56.0781229732, + "18322": 55.6469421628, + "18323": 55.2158241476, + "18324": 54.7691120748, + "18325": 54.3252169796, + "18326": 53.8799133957, + "18327": 53.4353140561, + "18328": 52.9903625943, + "18329": 52.5455871936, + "18330": 52.1007237624, + "18331": 51.6559043464, + "18332": 51.2110629228, + "18333": 50.7662325031, + "18334": 50.3802115597, + "18335": 49.9941933673, + "18336": 49.6081737994, + "18337": 49.2221549193, + "18338": 48.8361356952, + "18339": 48.4501166432, + "18340": 48.0640975051, + "18341": 47.6780784101, + "18342": 47.2920592935, + "18343": 46.9060401877, + "18344": 46.597699069, + "18345": 46.3077553723, + "18346": 46.0086129646, + "18347": 45.7140699124, + "18348": 45.4172271824, + "18349": 45.1215342914, + "18350": 44.8252664808, + "18351": 44.52928613, + "18352": 44.2331620494, + "18353": 43.9371098337, + "18354": 43.6760536724, + "18355": 43.4347209701, + "18356": 43.1835265383, + "18357": 42.9372629713, + "18358": 42.6885339719, + "18359": 42.4410376886, + "18360": 42.1929250473, + "18361": 41.945120585, + "18362": 41.6971620332, + "18363": 41.4492805262, + "18364": 41.2528930292, + "18365": 41.1100393462, + "18366": 40.9404187562, + "18367": 40.7841816198, + "18368": 40.6212527565, + "18369": 40.4616697567, + "18370": 40.3004138251, + "18371": 40.1399943595, + "18372": 39.9791566608, + "18373": 39.8185280787, + "18374": 39.6814678436, + "18375": 39.5870711173, + "18376": 39.4713426366, + "18377": 39.3662800332, + "18378": 39.2558844911, + "18379": 39.1481554183, + "18380": 39.0390931108, + "18381": 38.9306974207, + "18382": 38.8219684219, + "18383": 38.7134060775, + "18384": 38.6226485114, + "18385": 38.5894300912, + "18386": 38.5274420981, + "18387": 38.4798388915, + "18388": 38.4250432916, + "18389": 38.3738438883, + "18390": 38.3208463867, + "18391": 38.2687479343, + "18392": 38.2161999573, + "18393": 38.1638767425, + "18394": 38.1181100747, + "18395": 38.1174148615, + "18396": 38.0941839209, + "18397": 38.0822208441, + "18398": 38.0646238354, + "18399": 38.0498437926, + "18400": 38.0336552668, + "18401": 38.0181709826, + "18402": 38.0023345776, + "18403": 37.9866742329, + "18404": 37.9720224376, + "18405": 37.9919569105, + "18406": 37.9945982493, + "18407": 38.0058861552, + "18408": 38.0128507776, + "18409": 38.0219770417, + "18410": 38.0300224849, + "18411": 38.0386083386, + "18412": 38.046923987, + "18413": 38.0553747381, + "18414": 38.0637579378, + "18415": 38.0956205805, + "18416": 38.1172561255, + "18417": 38.1440052193, + "18418": 38.1681975387, + "18419": 38.1936682453, + "18420": 38.2184997583, + "18421": 38.2436508681, + "18422": 38.2686421795, + "18423": 38.2937133901, + "18424": 38.3187446511, + "18425": 38.3402854217, + "18426": 38.3629445687, + "18427": 38.3850445275, + "18428": 38.4074240804, + "18429": 38.4296638363, + "18430": 38.4519734907, + "18431": 38.4742481958, + "18432": 38.4965403755, + "18433": 38.518823818, + "18434": 38.5411116291, + "18435": 38.5617951402, + "18436": 38.5827681244, + "18437": 38.603596372, + "18438": 38.6244969879, + "18439": 38.6453614197, + "18440": 38.6662439436, + "18441": 38.6871174214, + "18442": 38.7079954222, + "18443": 38.7288711615, + "18444": 38.7497480316, + "18445": 38.751975515, + "18446": 38.7542032811, + "18447": 38.7564309058, + "18448": 38.7586586012, + "18449": 38.7608862613, + "18450": 38.7631139391, + "18451": 38.765341608, + "18452": 38.7675692813, + "18453": 38.7697969524, + "18454": 38.7720246247, + "18455": 38.7627574543, + "18456": 38.7507678216, + "18457": 38.7401394201, + "18458": 38.728830403, + "18459": 38.7178616937, + "18460": 38.7067228305, + "18461": 38.6956690443, + "18462": 38.6845727196, + "18463": 38.6734976641, + "18464": 38.662411974, + "18465": 38.6404216266, + "18466": 38.6122917598, + "18467": 38.5872316527, + "18468": 38.5606366657, + "18469": 38.5348091187, + "18470": 38.5085978517, + "18471": 38.4825784447, + "18472": 38.4564631077, + "18473": 38.4303957357, + "18474": 38.4043043812, + "18475": 38.3703565004, + "18476": 38.3282314713, + "18477": 38.2901950163, + "18478": 38.2501142743, + "18479": 38.2110556758, + "18480": 38.1714860055, + "18481": 38.1321718711, + "18482": 38.0927299688, + "18483": 38.0533519504, + "18484": 38.0139419901, + "18485": 37.97094898, + "18486": 37.9214697472, + "18487": 37.8752336258, + "18488": 37.8273759487, + "18489": 37.7803290494, + "18490": 37.7328767612, + "18491": 37.6856271675, + "18492": 37.6382762265, + "18493": 37.5909759592, + "18494": 37.543650355, + "18495": 37.4939616417, + "18496": 37.4366301662, + "18497": 37.3831200718, + "18498": 37.3276992869, + "18499": 37.2732338472, + "18500": 37.2182907349, + "18501": 37.1635864589, + "18502": 37.1087627647, + "18503": 37.0539987796, + "18504": 36.99920494, + "18505": 36.944205323, + "18506": 36.887708486, + "18507": 36.831960259, + "18508": 36.775837727, + "18509": 36.7199023475, + "18510": 36.6638733918, + "18511": 36.6078912242, + "18512": 36.5518856625, + "18513": 36.4958917978, + "18514": 36.4398920846, + "18515": 36.3838521237, + "18516": 36.3264507812, + "18517": 36.2697301294, + "18518": 36.2126691323, + "18519": 36.1557783079, + "18520": 36.0988023971, + "18521": 36.0418690295, + "18522": 35.9849143903, + "18523": 35.9279703869, + "18524": 35.8710210656, + "18525": 35.8140744032, + "18526": 35.7608629804, + "18527": 35.7060250067, + "18528": 35.6520003084, + "18529": 35.5975689724, + "18530": 35.5433409553, + "18531": 35.4890112788, + "18532": 35.4347324319, + "18533": 35.3804281703, + "18534": 35.326136616, + "18535": 35.271838708, + "18536": 35.2216796444, + "18537": 35.1701896707, + "18538": 35.119365152, + "18539": 35.0682079058, + "18540": 35.0172170234, + "18541": 34.966142959, + "18542": 34.9151104857, + "18543": 34.8640572168, + "18544": 34.8130143457, + "18545": 34.7619662757, + "18546": 34.7100278162, + "18547": 34.658248795, + "18548": 34.6063900546, + "18549": 34.5545711738, + "18550": 34.5027323632, + "18551": 34.4509035175, + "18552": 34.3990696894, + "18553": 34.3472383525, + "18554": 34.2954057699, + "18555": 34.2435738102, + "18556": 34.2016734732, + "18557": 34.1597732919, + "18558": 34.1178730327, + "18559": 34.0759728124, + "18560": 34.0340725727, + "18561": 33.9921723428, + "18562": 33.9502721079, + "18563": 33.9083718755, + "18564": 33.8664716419, + "18565": 33.8245714089, + "18566": 33.7853604327, + "18567": 33.7467863859, + "18568": 33.7078938745, + "18569": 33.6691605954, + "18570": 33.6303477001, + "18571": 33.5915746129, + "18572": 33.5527816216, + "18573": 33.5139985824, + "18574": 33.4752105672, + "18575": 33.43642504, + "18576": 33.40065086, + "18577": 33.3665718846, + "18578": 33.3316453069, + "18579": 33.2971425304, + "18580": 33.2624278533, + "18581": 33.2278191265, + "18582": 33.1931574245, + "18583": 33.1585222101, + "18584": 33.123873752, + "18585": 33.0892319157, + "18586": 33.0553961261, + "18587": 33.0224024787, + "18588": 32.9889877601, + "18589": 32.9557835772, + "18590": 32.9224741264, + "18591": 32.8892173096, + "18592": 32.8559341758, + "18593": 32.8226642004, + "18594": 32.7893876459, + "18595": 32.7561143809, + "18596": 32.7237005234, + "18597": 32.6928373824, + "18598": 32.6611988832, + "18599": 32.6299480631, + "18600": 32.5985034034, + "18601": 32.5671556635, + "18602": 32.5357594637, + "18603": 32.5043874939, + "18604": 32.473003409, + "18605": 32.4416253817, + "18606": 32.4102612247, + "18607": 32.3789529003, + "18608": 32.3476166596, + "18609": 32.3162943771, + "18610": 32.2849651155, + "18611": 32.2536393434, + "18612": 32.2223118265, + "18613": 32.1909851821, + "18614": 32.1596581014, + "18615": 32.1283312389, + "18616": 32.096999285, + "18617": 32.0656337559, + "18618": 32.0342850144, + "18619": 32.0029278791, + "18620": 31.9715749407, + "18621": 31.9402199038, + "18622": 31.9088659162, + "18623": 31.8775114039, + "18624": 31.846157154, + "18625": 31.8148027729, + "18626": 31.7834359521, + "18627": 31.7516751834, + "18628": 31.7201113886, + "18629": 31.6884491069, + "18630": 31.6568360686, + "18631": 31.6251984086, + "18632": 31.5935730595, + "18633": 31.561941555, + "18634": 31.5303131281, + "18635": 31.4986831624, + "18636": 31.4670539661, + "18637": 31.4347407139, + "18638": 31.4027253818, + "18639": 31.3705610896, + "18640": 31.3384712775, + "18641": 31.3063442253, + "18642": 31.2742357932, + "18643": 31.242118051, + "18644": 31.2100049639, + "18645": 31.1778895492, + "18646": 31.1457752983, + "18647": 31.1134010571, + "18648": 31.0811104881, + "18649": 31.048778083, + "18650": 31.016466596, + "18651": 30.9841446499, + "18652": 30.9518279333, + "18653": 30.919508602, + "18654": 30.8871905781, + "18655": 30.8548719005, + "18656": 30.8225535497, + "18657": 30.7861507393, + "18658": 30.750483184, + "18659": 30.7144480011, + "18660": 30.6785966321, + "18661": 30.6426533561, + "18662": 30.6067560336, + "18663": 30.5708357343, + "18664": 30.5349269234, + "18665": 30.4990123684, + "18666": 30.4631006854, + "18667": 30.4301544079, + "18668": 30.3972088484, + "18669": 30.3642629298, + "18670": 30.3313171908, + "18671": 30.2983713621, + "18672": 30.2654255782, + "18673": 30.2324797718, + "18674": 30.1995339767, + "18675": 30.166588176, + "18676": 30.1336423781, + "18677": 30.1002206996, + "18678": 30.0666863137, + "18679": 30.0332082815, + "18680": 29.9997020724, + "18681": 29.9662099518, + "18682": 29.9327107869, + "18683": 29.8992151442, + "18684": 29.8657177404, + "18685": 29.8322212171, + "18686": 29.7987242536, + "18687": 29.7654460028, + "18688": 29.732290544, + "18689": 29.6990736891, + "18690": 29.6658875323, + "18691": 29.6326860265, + "18692": 29.5994921952, + "18693": 29.5662945267, + "18694": 29.5330987767, + "18695": 29.4999020675, + "18696": 29.4667058379, + "18697": 29.4339180842, + "18698": 29.401554886, + "18699": 29.36897941, + "18700": 29.3365100729, + "18701": 29.3039876664, + "18702": 29.2714917946, + "18703": 29.2389826554, + "18704": 29.2064801499, + "18705": 29.1739743276, + "18706": 29.1414701637, + "18707": 29.1087020153, + "18708": 29.0754606021, + "18709": 29.0424558214, + "18710": 29.0093327244, + "18711": 28.9762687855, + "18712": 28.9431752676, + "18713": 28.9100965392, + "18714": 28.877010416, + "18715": 28.8439279902, + "18716": 28.8108437157, + "18717": 28.7772818507, + "18718": 28.7421814402, + "18719": 28.7078503024, + "18720": 28.6731345282, + "18721": 28.6386110722, + "18722": 28.6039914571, + "18723": 28.5694199216, + "18724": 28.5348243463, + "18725": 28.5002407909, + "18726": 28.4656512255, + "18727": 28.4309342157, + "18728": 28.3953351696, + "18729": 28.3601771417, + "18730": 28.3247986047, + "18731": 28.2895303222, + "18732": 28.2542069124, + "18733": 28.2189110663, + "18734": 28.1836014384, + "18735": 28.1482987014, + "18736": 28.1129925189, + "18737": 28.0776057136, + "18738": 28.0396241623, + "18739": 28.0029399839, + "18740": 27.9656071191, + "18741": 27.9285985975, + "18742": 27.8914279043, + "18743": 27.8543382969, + "18744": 27.8172081466, + "18745": 27.7800982677, + "18746": 27.7429782531, + "18747": 27.7058633064, + "18748": 27.6657661718, + "18749": 27.6269678954, + "18750": 27.5875201899, + "18751": 27.5483971989, + "18752": 27.5091118507, + "18753": 27.4699076811, + "18754": 27.4306629222, + "18755": 27.391438458, + "18756": 27.3522038464, + "18757": 27.3129743085, + "18758": 27.2657949208, + "18759": 27.221171295, + "18760": 27.1752697882, + "18761": 27.130007222, + "18762": 27.0844251854, + "18763": 27.039002884, + "18764": 26.9935007151, + "18765": 26.9480384799, + "18766": 26.9025562778, + "18767": 26.8570840592, + "18768": 26.8032897127, + "18769": 26.7509949465, + "18770": 26.6979503901, + "18771": 26.6452807288, + "18772": 26.59242362, + "18773": 26.5396602349, + "18774": 26.486849988, + "18775": 26.434063172, + "18776": 26.3812646405, + "18777": 26.3284719668, + "18778": 26.2728525399, + "18779": 26.2172345774, + "18780": 26.1616158827, + "18781": 26.105997554, + "18782": 26.0503790424, + "18783": 25.9947606222, + "18784": 25.9391421563, + "18785": 25.8835237133, + "18786": 25.8279052588, + "18787": 25.7722868101, + "18788": 25.7160155537, + "18789": 25.6595896871, + "18790": 25.6032411256, + "18791": 25.5468539115, + "18792": 25.4904860237, + "18793": 25.4341084727, + "18794": 25.3777357534, + "18795": 25.3213606182, + "18796": 25.264986691, + "18797": 25.2086121598, + "18798": 25.150108608, + "18799": 25.0904071613, + "18800": 25.0313046621, + "18801": 24.9719026891, + "18802": 24.9126504531, + "18803": 24.8533233485, + "18804": 24.7940336782, + "18805": 24.7347252908, + "18806": 24.675426262, + "18807": 24.6161225538, + "18808": 24.5572482526, + "18809": 24.4988162744, + "18810": 24.4401631347, + "18811": 24.3816205757, + "18812": 24.3230227264, + "18813": 24.2644525223, + "18814": 24.2058684955, + "18815": 24.1472913801, + "18816": 24.088710809, + "18817": 24.0301319658, + "18818": 23.9731168245, + "18819": 23.9189183337, + "18820": 23.8633115177, + "18821": 23.8084088644, + "18822": 23.7531541297, + "18823": 23.6980754356, + "18824": 23.6429087213, + "18825": 23.5877860171, + "18826": 23.5326413078, + "18827": 23.4775076011, + "18828": 23.4229144175, + "18829": 23.3700790629, + "18830": 23.3163647938, + "18831": 23.263089982, + "18832": 23.2095954416, + "18833": 23.1562107654, + "18834": 23.1027711571, + "18835": 23.0493590149, + "18836": 22.9959331397, + "18837": 22.9425141309, + "18838": 22.8905701503, + "18839": 22.8486075003, + "18840": 22.8016541849, + "18841": 22.7571962022, + "18842": 22.7114905532, + "18843": 22.6664087374, + "18844": 22.6210150049, + "18845": 22.5757772308, + "18846": 22.5304614775, + "18847": 22.4851847138, + "18848": 22.4399867274, + "18849": 22.3978940608, + "18850": 22.3542487343, + "18851": 22.3113797377, + "18852": 22.2681225762, + "18853": 22.2250594971, + "18854": 22.1818993768, + "18855": 22.1387877771, + "18856": 22.0956519171, + "18857": 22.0525281873, + "18858": 22.0093983924, + "18859": 21.9806440705, + "18860": 21.9456292664, + "18861": 21.9137447034, + "18862": 21.8802950198, + "18863": 21.8476278965, + "18864": 21.8145694931, + "18865": 21.7817067297, + "18866": 21.7487461464, + "18867": 21.715834473, + "18868": 21.6828983446, + "18869": 21.6526906078, + "18870": 21.6216037044, + "18871": 21.5909563844, + "18872": 21.5600892727, + "18873": 21.5293320568, + "18874": 21.498519893, + "18875": 21.4677352031, + "18876": 21.4369367763, + "18877": 21.406145218, + "18878": 21.3753502254, + "18879": 21.3532291887, + "18880": 21.3295462905, + "18881": 21.3066443231, + "18882": 21.2833518902, + "18883": 21.2602546901, + "18884": 21.2370598736, + "18885": 21.2139138653, + "18886": 21.1907434529, + "18887": 21.1675852425, + "18888": 21.1444209311, + "18889": 21.1259360931, + "18890": 21.1074497298, + "18891": 21.0889641292, + "18892": 21.0704781472, + "18893": 21.0519923559, + "18894": 21.0335064693, + "18895": 21.0150206303, + "18896": 20.9965347675, + "18897": 20.9780489166, + "18898": 20.9595630598, + "18899": 20.9539122553, + "18900": 20.9513013294, + "18901": 20.9471704642, + "18902": 20.9437995686, + "18903": 20.9400486883, + "18904": 20.9364878003, + "18905": 20.9328319161, + "18906": 20.9292235301, + "18907": 20.9255913949, + "18908": 20.9219711344, + "18909": 20.9183452338, + "18910": 20.9147224691, + "18911": 20.9110981365, + "18912": 20.9074745878, + "18913": 20.9038506472, + "18914": 20.9002269025, + "18915": 20.8966030599, + "18916": 20.8929792662, + "18917": 20.8893554481, + "18918": 20.8857316422, + "18919": 20.8812110412, + "18920": 20.8757591623, + "18921": 20.8707729224, + "18922": 20.865553863, + "18923": 20.8604512133, + "18924": 20.8552903587, + "18925": 20.8501586066, + "18926": 20.8450123033, + "18927": 20.8398732756, + "18928": 20.8347306101, + "18929": 20.8293877124, + "18930": 20.8236802134, + "18931": 20.8181550151, + "18932": 20.8125386664, + "18933": 20.8069678929, + "18934": 20.8013743319, + "18935": 20.7957921646, + "18936": 20.7902043004, + "18937": 20.7846192847, + "18938": 20.7790328447, + "18939": 20.7714993642, + "18940": 20.7577048943, + "18941": 20.7470409191, + "18942": 20.7348116965, + "18943": 20.7233650976, + "18944": 20.7115271868, + "18945": 20.699884932, + "18946": 20.6881448492, + "18947": 20.6764536804, + "18948": 20.6647380546, + "18949": 20.6529782549, + "18950": 20.640831625, + "18951": 20.6288784103, + "18952": 20.616828488, + "18953": 20.6048269194, + "18954": 20.592801174, + "18955": 20.580787517, + "18956": 20.5687678158, + "18957": 20.5567511367, + "18958": 20.5447329465, + "18959": 20.5326949004, + "18960": 20.5200072141, + "18961": 20.5076443479, + "18962": 20.4951190717, + "18963": 20.4826750005, + "18964": 20.4701903268, + "18965": 20.4577259543, + "18966": 20.4452514312, + "18967": 20.4327819835, + "18968": 20.420309998, + "18969": 20.4078392814, + "18970": 20.3953553131, + "18971": 20.3828771566, + "18972": 20.3703960942, + "18973": 20.3579164848, + "18974": 20.3454361489, + "18975": 20.3329561762, + "18976": 20.3204760219, + "18977": 20.3079959584, + "18978": 20.2955158495, + "18979": 20.2830357633, + "18980": 20.2718757662, + "18981": 20.2602914568, + "18982": 20.2489193036, + "18983": 20.2374410722, + "18984": 20.22601588, + "18985": 20.2145641681, + "18986": 20.2031257161, + "18987": 20.1916806342, + "18988": 20.1802388672, + "18989": 20.1687954427, + "18990": 20.1561678625, + "18991": 20.143753165, + "18992": 20.1312320262, + "18993": 20.118764108, + "18994": 20.1062695795, + "18995": 20.0937883562, + "18996": 20.0813004803, + "18997": 20.0688159307, + "18998": 20.056329718, + "18999": 20.0438443368, + "19000": 40.2844153732, + "19001": 40.2487734687, + "19002": 40.2131529283, + "19003": 40.1775649356, + "19004": 40.1419980859, + "19005": 40.1064644237, + "19006": 40.0709514375, + "19007": 40.0354724473, + "19008": 40.0000135537, + "19009": 39.9645896237, + "19010": 39.9291850879, + "19011": 39.8938166629, + "19012": 39.8584667889, + "19013": 39.8231543765, + "19014": 39.7878595113, + "19015": 39.752603688, + "19016": 39.7173642255, + "19017": 39.6821656421, + "19018": 39.6469820267, + "19019": 39.6118414125, + "19020": 39.5767141418, + "19021": 39.5412170919, + "19022": 39.5047505571, + "19023": 39.4672438501, + "19024": 39.4286795423, + "19025": 39.3890953929, + "19026": 39.3484477276, + "19027": 39.3067844381, + "19028": 39.2640546819, + "19029": 39.2203132682, + "19030": 39.1755022087, + "19031": 39.1296706473, + "19032": 39.0827283861, + "19033": 39.0369538409, + "19034": 39.0020951875, + "19035": 38.990448777, + "19036": 39.0114298842, + "19037": 39.0715034336, + "19038": 39.1749357929, + "19039": 39.3242440342, + "19040": 39.5205818597, + "19041": 39.7636256188, + "19042": 40.0515718558, + "19043": 40.3828288088, + "19044": 40.7556635397, + "19045": 41.1679415524, + "19046": 41.6172963021, + "19047": 42.1011889515, + "19048": 42.6169713317, + "19049": 43.1619332756, + "19050": 43.7333411045, + "19051": 44.3284450323, + "19052": 44.944457148, + "19053": 45.5787111775, + "19054": 46.2286386026, + "19055": 46.8917452592, + "19056": 47.565627818, + "19057": 48.2479796691, + "19058": 48.9365967819, + "19059": 49.6293817854, + "19060": 50.3243469061, + "19061": 51.019509926, + "19062": 51.7123086018, + "19063": 52.4008806178, + "19064": 53.0837562637, + "19065": 53.7595311501, + "19066": 54.4269266966, + "19067": 55.0847730956, + "19068": 55.7320079478, + "19069": 56.3676718458, + "19070": 56.9909046081, + "19071": 57.6009381655, + "19072": 58.1969949106, + "19073": 58.7784596729, + "19074": 59.3448393328, + "19075": 59.895714081, + "19076": 60.4307420315, + "19077": 60.9496532267, + "19078": 61.4522458514, + "19079": 61.9383820859, + "19080": 62.4079841135, + "19081": 62.8610301846, + "19082": 63.2982363421, + "19083": 63.7199225447, + "19084": 64.1261659399, + "19085": 64.5171114729, + "19086": 64.8929305418, + "19087": 65.2538275916, + "19088": 65.6000366925, + "19089": 65.9318198083, + "19090": 66.2494645002, + "19091": 66.5532815889, + "19092": 66.8437063406, + "19093": 67.1211370402, + "19094": 67.3859360166, + "19095": 67.6384787126, + "19096": 67.8791507424, + "19097": 68.1083461009, + "19098": 68.3264651396, + "19099": 68.5339126154, + "19100": 68.7310957762, + "19101": 68.9184225073, + "19102": 69.0974927873, + "19103": 69.269434946, + "19104": 69.4346550849, + "19105": 69.5934859475, + "19106": 69.746252718, + "19107": 69.8932637266, + "19108": 70.0348151264, + "19109": 70.171191883, + "19110": 70.3026688032, + "19111": 70.4295110132, + "19112": 70.552264384, + "19113": 70.6714034255, + "19114": 70.7871810058, + "19115": 70.8998039541, + "19116": 71.0094718171, + "19117": 71.1163701491, + "19118": 71.2206725808, + "19119": 71.3225408772, + "19120": 71.4221252215, + "19121": 71.5195643367, + "19122": 71.6157790326, + "19123": 71.7116978232, + "19124": 71.8075249239, + "19125": 71.9032851348, + "19126": 71.9990130481, + "19127": 72.0947203909, + "19128": 72.190406803, + "19129": 72.2860610454, + "19130": 72.3816634273, + "19131": 72.4771874293, + "19132": 72.5726995541, + "19133": 72.6682963099, + "19134": 72.7639592173, + "19135": 72.8596340198, + "19136": 72.9552687247, + "19137": 73.0508073341, + "19138": 73.1461922148, + "19139": 73.2413645442, + "19140": 73.3362649907, + "19141": 73.4308342316, + "19142": 73.5251966305, + "19143": 73.6196286876, + "19144": 73.714138799, + "19145": 73.8086432562, + "19146": 73.9030743293, + "19147": 73.997360754, + "19148": 74.0914333889, + "19149": 74.1852254827, + "19150": 74.2786737291, + "19151": 74.3717189224, + "19152": 74.4643335058, + "19153": 74.5565378227, + "19154": 74.6483031429, + "19155": 74.7395847366, + "19156": 74.830346857, + "19157": 74.9205581552, + "19158": 75.0101928798, + "19159": 75.099230798, + "19160": 75.18765727, + "19161": 75.275463208, + "19162": 75.3626132145, + "19163": 75.4489818513, + "19164": 75.5345448062, + "19165": 75.6193247394, + "19166": 75.7033421679, + "19167": 75.7866243774, + "19168": 75.8692028036, + "19169": 75.9511128116, + "19170": 76.0323930664, + "19171": 76.1130850459, + "19172": 76.1932281164, + "19173": 76.2728344198, + "19174": 76.3519423048, + "19175": 76.4306030222, + "19176": 76.5088666191, + "19177": 76.5867841822, + "19178": 76.6644068499, + "19179": 76.7417855131, + "19180": 76.8189704128, + "19181": 76.8960107906, + "19182": 76.9729428675, + "19183": 77.0494355063, + "19184": 77.1254266471, + "19185": 77.2009909312, + "19186": 77.2761771415, + "19187": 77.351038865, + "19188": 77.4256267897, + "19189": 77.4999890104, + "19190": 77.5741700078, + "19191": 77.6482101288, + "19192": 77.722145168, + "19193": 77.7959011953, + "19194": 77.8694673098, + "19195": 77.9428715496, + "19196": 78.0161328164, + "19197": 78.0892667297, + "19198": 78.1622842165, + "19199": 78.2351916987, + "19200": 78.3079910793, + "19201": 78.3806798672, + "19202": 78.4532513545, + "19203": 78.5253780338, + "19204": 78.5968979477, + "19205": 78.6678043166, + "19206": 78.7380883458, + "19207": 78.8077412216, + "19208": 78.8767527956, + "19209": 78.9451112342, + "19210": 79.0128027316, + "19211": 79.0798114197, + "19212": 79.1461194095, + "19213": 79.2116477263, + "19214": 79.2763390133, + "19215": 79.3401701683, + "19216": 79.4031203869, + "19217": 79.4651681671, + "19218": 79.526292056, + "19219": 79.5864707109, + "19220": 79.6456831429, + "19221": 79.703908952, + "19222": 79.7611285761, + "19223": 79.8171233556, + "19224": 79.871718558, + "19225": 79.9248870613, + "19226": 79.9766281682, + "19227": 80.0269407269, + "19228": 80.0758275679, + "19229": 80.1232938729, + "19230": 80.169346937, + "19231": 80.2139957959, + "19232": 80.257250992, + "19233": 80.2990842084, + "19234": 80.3394673717, + "19235": 80.3784096378, + "19236": 80.4159297164, + "19237": 80.4520462192, + "19238": 80.4867792485, + "19239": 80.5201497823, + "19240": 80.5521795375, + "19241": 80.5828907606, + "19242": 80.6123060468, + "19243": 80.6404138421, + "19244": 80.6671905752, + "19245": 80.6926512648, + "19246": 80.7168219553, + "19247": 80.7397264396, + "19248": 80.7613883757, + "19249": 80.7818303626, + "19250": 80.8010736648, + "19251": 80.8191378385, + "19252": 80.8360404049, + "19253": 80.8517871458, + "19254": 80.8663734425, + "19255": 80.8798055436, + "19256": 80.8920912846, + "19257": 80.9032342975, + "19258": 80.9132347684, + "19259": 80.9220889152, + "19260": 80.9297887537, + "19261": 80.9363218356, + "19262": 80.9416710215, + "19263": 80.9458321673, + "19264": 80.9488244484, + "19265": 80.9506257889, + "19266": 80.9511945147, + "19267": 80.9504857238, + "19268": 80.9484481403, + "19269": 80.9450248589, + "19270": 80.9401532946, + "19271": 80.9337652826, + "19272": 80.9257871463, + "19273": 80.9161447816, + "19274": 80.9047737611, + "19275": 80.8915892847, + "19276": 80.8764947921, + "19277": 80.859389794, + "19278": 80.8401685762, + "19279": 80.8187207356, + "19280": 80.794931354, + "19281": 80.7686812529, + "19282": 80.7398472416, + "19283": 80.7083267431, + "19284": 80.6741729811, + "19285": 80.6373009668, + "19286": 80.5975584213, + "19287": 80.5548011821, + "19288": 80.5088793235, + "19289": 80.4596410038, + "19290": 80.4069326053, + "19291": 80.3505994819, + "19292": 80.2904864702, + "19293": 80.2264411013, + "19294": 80.1583972976, + "19295": 80.0862258879, + "19296": 80.0097659961, + "19297": 79.9288635067, + "19298": 79.8433640419, + "19299": 79.753114949, + "19300": 79.6579653884, + "19301": 79.5577667238, + "19302": 79.4523727855, + "19303": 79.3416401066, + "19304": 79.2302502472, + "19305": 79.1197657847, + "19306": 79.0093060194, + "19307": 78.8989891816, + "19308": 78.7903550894, + "19309": 78.6817856517, + "19310": 78.5743413716, + "19311": 78.4674339799, + "19312": 78.3615994131, + "19313": 78.2560789031, + "19314": 78.1516540152, + "19315": 78.0476291926, + "19316": 77.9447098929, + "19317": 77.8422000669, + "19318": 77.7407845795, + "19319": 77.639788454, + "19320": 77.5398750417, + "19321": 77.4403914464, + "19322": 77.3419785333, + "19323": 77.244006411, + "19324": 77.1471073673, + "19325": 77.0506844804, + "19326": 76.9553317225, + "19327": 76.8604673832, + "19328": 76.7666602614, + "19329": 76.6733537427, + "19330": 76.5810915014, + "19331": 76.489342291, + "19332": 76.398624387, + "19333": 76.308432128, + "19334": 76.2192024216, + "19335": 76.130410605, + "19336": 76.0425188401, + "19337": 75.9550737123, + "19338": 75.8685168015, + "19339": 75.7824191017, + "19340": 75.6971972554, + "19341": 75.6124472476, + "19342": 75.5285609992, + "19343": 75.4451590569, + "19344": 75.3625354037, + "19345": 75.2802581276, + "19346": 75.1986594766, + "19347": 75.1174096616, + "19348": 75.0368294585, + "19349": 74.956609337, + "19350": 74.8770484553, + "19351": 74.7978588891, + "19352": 74.7193186065, + "19353": 74.641160474, + "19354": 74.563608922, + "19355": 74.4863713575, + "19356": 74.4096775302, + "19357": 74.3333007294, + "19358": 74.2574606263, + "19359": 74.1819467097, + "19360": 74.1069616496, + "19361": 74.032311702, + "19362": 73.9581832304, + "19363": 73.884398304, + "19364": 73.8110790624, + "19365": 73.7379724623, + "19366": 73.6652155941, + "19367": 73.5926630849, + "19368": 73.5204575287, + "19369": 73.4484626415, + "19370": 73.3768093624, + "19371": 73.3053731874, + "19372": 73.234273583, + "19373": 73.1633970795, + "19374": 73.0928300406, + "19375": 73.0224107688, + "19376": 72.9522241304, + "19377": 72.882179065, + "19378": 72.8123649965, + "19379": 72.7426967763, + "19380": 72.673256073, + "19381": 72.6039655494, + "19382": 72.5348992826, + "19383": 72.4659871885, + "19384": 72.3972793926, + "19385": 72.3286442975, + "19386": 72.2601247251, + "19387": 72.1916668866, + "19388": 72.1233249531, + "19389": 72.0550472479, + "19390": 71.9868832987, + "19391": 71.9187863583, + "19392": 71.850801114, + "19393": 71.7828854382, + "19394": 71.7150732462, + "19395": 71.6472788417, + "19396": 71.5795250265, + "19397": 71.5117804231, + "19398": 71.4440769836, + "19399": 71.3763842752, + "19400": 71.3087313853, + "19401": 71.2410909875, + "19402": 71.1734891049, + "19403": 71.1059013367, + "19404": 71.0383498495, + "19405": 70.9707793138, + "19406": 70.9032004046, + "19407": 70.8355961234, + "19408": 70.7679837314, + "19409": 70.7003467515, + "19410": 70.6327010047, + "19411": 70.565031799, + "19412": 70.4973530011, + "19413": 70.4296517653, + "19414": 70.3619401908, + "19415": 70.2941848559, + "19416": 70.2263881381, + "19417": 70.1585413013, + "19418": 70.0906531877, + "19419": 70.0227155836, + "19420": 69.9547361714, + "19421": 69.8867079666, + "19422": 69.8186373666, + "19423": 69.7505185961, + "19424": 69.6823570531, + "19425": 69.6141512925, + "19426": 69.5459072689, + "19427": 69.477621121, + "19428": 69.4092963277, + "19429": 69.3409298863, + "19430": 69.2725244689, + "19431": 69.2040778294, + "19432": 69.1355919203, + "19433": 69.0670651717, + "19434": 68.998498893, + "19435": 68.9298936379, + "19436": 68.8612510863, + "19437": 68.7925708615, + "19438": 68.7238531817, + "19439": 68.655098092, + "19440": 68.5863055274, + "19441": 68.5174756557, + "19442": 68.4486085493, + "19443": 68.3797042769, + "19444": 68.3107628549, + "19445": 68.2418019802, + "19446": 68.1728358137, + "19447": 68.1038659483, + "19448": 68.0348920688, + "19449": 67.9659142346, + "19450": 67.8969324348, + "19451": 67.8279466699, + "19452": 67.7589569416, + "19453": 67.6899632477, + "19454": 67.6209655904, + "19455": 67.5519748778, + "19456": 67.4830024239, + "19457": 67.4140499839, + "19458": 67.3451172084, + "19459": 67.2762041655, + "19460": 67.2073108434, + "19461": 67.1384372428, + "19462": 67.069583365, + "19463": 67.0007492084, + "19464": 66.9319347747, + "19465": 66.8631504171, + "19466": 66.7944102462, + "19467": 66.7257169395, + "19468": 66.657069963, + "19469": 66.588469422, + "19470": 66.5199152968, + "19471": 66.4514075901, + "19472": 66.3829463026, + "19473": 66.3145314329, + "19474": 66.2461629802, + "19475": 66.1778484141, + "19476": 66.109601465, + "19477": 66.0414251317, + "19478": 65.9733188168, + "19479": 65.9052826372, + "19480": 65.8373165703, + "19481": 65.7694206194, + "19482": 65.7015947851, + "19483": 65.633839066, + "19484": 65.5661534637, + "19485": 65.4985413924, + "19486": 65.4310117354, + "19487": 65.363566643, + "19488": 65.2962056863, + "19489": 65.22892895, + "19490": 65.1617364184, + "19491": 65.0946280933, + "19492": 65.0276039736, + "19493": 64.9606640605, + "19494": 64.8938083562, + "19495": 64.8270391131, + "19496": 64.7603653822, + "19497": 64.6937895421, + "19498": 64.6273111176, + "19499": 64.5609302037, + "19500": 64.4946467833, + "19501": 64.4284608577, + "19502": 64.3623724274, + "19503": 64.2963814911, + "19504": 64.2304880503, + "19505": 64.164692313, + "19506": 64.0989958621, + "19507": 64.0333991394, + "19508": 63.9679020575, + "19509": 63.9025046329, + "19510": 63.8372068634, + "19511": 63.7720087483, + "19512": 63.7069102888, + "19513": 63.6419114836, + "19514": 63.577012334, + "19515": 63.5122128798, + "19516": 63.4475144457, + "19517": 63.3829174213, + "19518": 63.3184217281, + "19519": 63.2540273827, + "19520": 63.1897343836, + "19521": 63.1255427294, + "19522": 63.0614524209, + "19523": 62.9974634572, + "19524": 62.9335758377, + "19525": 62.8697895632, + "19526": 62.8061010876, + "19527": 62.7425091179, + "19528": 62.6790138, + "19529": 62.6156151029, + "19530": 62.5523130333, + "19531": 62.4891075892, + "19532": 62.4259987703, + "19533": 62.3629865773, + "19534": 62.300071012, + "19535": 62.2372520723, + "19536": 62.1745258339, + "19537": 62.1118904174, + "19538": 62.0493458474, + "19539": 61.9868921197, + "19540": 61.9245292356, + "19541": 61.8622571947, + "19542": 61.8000759971, + "19543": 61.7379856429, + "19544": 61.6759861319, + "19545": 61.6140774643, + "19546": 61.5522604875, + "19547": 61.4905357271, + "19548": 61.4289032149, + "19549": 61.3673629432, + "19550": 61.3059149125, + "19551": 61.2445591235, + "19552": 61.1832955763, + "19553": 61.1221242709, + "19554": 61.0610452073, + "19555": 61.0000583855, + "19556": 60.93915438, + "19557": 60.8783256479, + "19558": 60.8175713414, + "19559": 60.7568916295, + "19560": 60.696286479, + "19561": 60.6357558959, + "19562": 60.5752998797, + "19563": 60.5149184297, + "19564": 60.4546115469, + "19565": 60.3943792303, + "19566": 60.3342189283, + "19567": 60.2741279936, + "19568": 60.214106016, + "19569": 60.1541530768, + "19570": 60.0942691604, + "19571": 60.0344542693, + "19572": 59.9747084037, + "19573": 59.9150315628, + "19574": 59.8554237474, + "19575": 59.7958849568, + "19576": 59.7364123324, + "19577": 59.6770019775, + "19578": 59.6176541819, + "19579": 59.5583678035, + "19580": 59.4991435628, + "19581": 59.4399805935, + "19582": 59.3808796352, + "19583": 59.3218399415, + "19584": 59.2628622537, + "19585": 59.203945841, + "19586": 59.1450906551, + "19587": 59.0862945757, + "19588": 59.0275579921, + "19589": 58.9688802797, + "19590": 58.9102621035, + "19591": 58.8517027992, + "19592": 58.7932030258, + "19593": 58.7347621335, + "19594": 58.6763807667, + "19595": 58.6180582893, + "19596": 58.5597945164, + "19597": 58.5015866977, + "19598": 58.4434349422, + "19599": 58.3853387342, + "19600": 58.3272986723, + "19601": 58.2693141446, + "19602": 58.2113857692, + "19603": 58.1535129288, + "19604": 58.0956962455, + "19605": 58.0379350967, + "19606": 57.980230096, + "19607": 57.9225805466, + "19608": 57.8649870731, + "19609": 57.8074490327, + "19610": 57.7499670817, + "19611": 57.6925405566, + "19612": 57.6351701337, + "19613": 57.5778551279, + "19614": 57.5205962385, + "19615": 57.4633927558, + "19616": 57.4062454094, + "19617": 57.3491534982, + "19618": 57.2921177851, + "19619": 57.2351375019, + "19620": 57.1782134319, + "19621": 57.1213447775, + "19622": 57.0645323532, + "19623": 57.0077753292, + "19624": 56.9510745517, + "19625": 56.8944291588, + "19626": 56.8378400401, + "19627": 56.7813066853, + "19628": 56.7248301161, + "19629": 56.6684093847, + "19630": 56.612045435, + "19631": 56.5557373125, + "19632": 56.499485992, + "19633": 56.4432904884, + "19634": 56.3871517746, + "19635": 56.3310688575, + "19636": 56.2750427576, + "19637": 56.2190731018, + "19638": 56.16316114, + "19639": 56.1073058198, + "19640": 56.0515081721, + "19641": 55.9957671655, + "19642": 55.9400838258, + "19643": 55.8844571254, + "19644": 55.8288880836, + "19645": 55.7733756825, + "19646": 55.7179209279, + "19647": 55.662523065, + "19648": 55.607183197, + "19649": 55.5519003452, + "19650": 55.4966754572, + "19651": 55.441507594, + "19652": 55.3863976933, + "19653": 55.3313448406, + "19654": 55.2763499051, + "19655": 55.2214120276, + "19656": 55.1665320505, + "19657": 55.1117130339, + "19658": 55.0569581682, + "19659": 55.0022668304, + "19660": 54.9476397239, + "19661": 54.8930761485, + "19662": 54.8385767782, + "19663": 54.7841409658, + "19664": 54.7297693274, + "19665": 54.6754612757, + "19666": 54.6212173667, + "19667": 54.5670342583, + "19668": 54.5129101935, + "19669": 54.4588444532, + "19670": 54.4048375242, + "19671": 54.3508889902, + "19672": 54.2969992317, + "19673": 54.243167899, + "19674": 54.1893953155, + "19675": 54.1356811862, + "19676": 54.0820257822, + "19677": 54.0284293111, + "19678": 53.9748924637, + "19679": 53.9214151155, + "19680": 53.8679974303, + "19681": 53.8146392559, + "19682": 53.7613407306, + "19683": 53.7081017367, + "19684": 53.6549223784, + "19685": 53.6018025701, + "19686": 53.5487422681, + "19687": 53.4957413635, + "19688": 53.4427995854, + "19689": 53.3899168743, + "19690": 53.3370932424, + "19691": 53.2843286874, + "19692": 53.2316232096, + "19693": 53.178976809, + "19694": 53.1263894856, + "19695": 53.0738612392, + "19696": 53.02139207, + "19697": 52.9689815899, + "19698": 52.9166290858, + "19699": 52.8643344019, + "19700": 52.8120975692, + "19701": 52.7599185816, + "19702": 52.7077974403, + "19703": 52.655734145, + "19704": 52.6037286958, + "19705": 52.5517810925, + "19706": 52.4998913354, + "19707": 52.448059674, + "19708": 52.3962867579, + "19709": 52.3445727443, + "19710": 52.292917602, + "19711": 52.2413213371, + "19712": 52.1897839485, + "19713": 52.1383054364, + "19714": 52.0868858008, + "19715": 52.0355250417, + "19716": 51.9842231591, + "19717": 51.9329806074, + "19718": 51.8817992096, + "19719": 51.8306794446, + "19720": 51.7796212168, + "19721": 51.7286245452, + "19722": 51.6776894261, + "19723": 51.6268158604, + "19724": 51.5760038478, + "19725": 51.5252533885, + "19726": 51.4745644825, + "19727": 51.4239372536, + "19728": 51.3733726368, + "19729": 51.3228708938, + "19730": 51.2724319724, + "19731": 51.2220558831, + "19732": 51.1717426239, + "19733": 51.1214921952, + "19734": 51.0713045708, + "19735": 51.0211797581, + "19736": 50.9711177736, + "19737": 50.9211186972, + "19738": 50.8711850531, + "19739": 50.821317587, + "19740": 50.7715161506, + "19741": 50.7217807725, + "19742": 50.6721114474, + "19743": 50.6225081759, + "19744": 50.5729709584, + "19745": 50.5234997942, + "19746": 50.474094684, + "19747": 50.4247556271, + "19748": 50.3754854524, + "19749": 50.32628519, + "19750": 50.2771547255, + "19751": 50.2280940815, + "19752": 50.1791032539, + "19753": 50.130182243, + "19754": 50.0813310492, + "19755": 50.032549672, + "19756": 49.9838381119, + "19757": 49.9351963684, + "19758": 49.8866319851, + "19759": 49.8381485713, + "19760": 49.7897460792, + "19761": 49.7414245177, + "19762": 49.6931838857, + "19763": 49.6450241827, + "19764": 49.5969454096, + "19765": 49.5489475654, + "19766": 49.501030651, + "19767": 49.4531946657, + "19768": 49.4054475042, + "19769": 49.3577940601, + "19770": 49.3102346184, + "19771": 49.2627691214, + "19772": 49.2153975813, + "19773": 49.1681199951, + "19774": 49.120936364, + "19775": 49.0738466871, + "19776": 49.0268509651, + "19777": 48.9799491974, + "19778": 48.9331440649, + "19779": 48.886437711, + "19780": 48.8398303776, + "19781": 48.7933220157, + "19782": 48.7469126358, + "19783": 48.7006022351, + "19784": 48.6543908149, + "19785": 48.6082783742, + "19786": 48.5622649139, + "19787": 48.5163504332, + "19788": 48.4705355524, + "19789": 48.4248209132, + "19790": 48.379206615, + "19791": 48.3336926385, + "19792": 48.288278989, + "19793": 48.2429656642, + "19794": 48.1977526638, + "19795": 48.1526399884, + "19796": 48.1076276394, + "19797": 48.0627156152, + "19798": 48.0179059376, + "19799": 47.9732013593, + "19800": 47.9286024042, + "19801": 47.8841089668, + "19802": 47.8397210688, + "19803": 47.7954387053, + "19804": 47.7512618766, + "19805": 47.7071905833, + "19806": 47.663224827, + "19807": 47.6193646059, + "19808": 47.5756095154, + "19809": 47.5319588094, + "19810": 47.4884123262, + "19811": 47.4449700973, + "19812": 47.4016321158, + "19813": 47.3583983837, + "19814": 47.3152689024, + "19815": 47.2722436701, + "19816": 47.2293226863, + "19817": 47.1865059516, + "19818": 47.1437919814, + "19819": 47.1011769146, + "19820": 47.0586598157, + "19821": 47.0162408718, + "19822": 46.973920047, + "19823": 46.9316973469, + "19824": 46.8895727693, + "19825": 46.8475463155, + "19826": 46.805617987, + "19827": 46.763787782, + "19828": 46.722055183, + "19829": 46.6804181087, + "19830": 46.6388760136, + "19831": 46.5974290062, + "19832": 46.5560770639, + "19833": 46.514820192, + "19834": 46.4736583899, + "19835": 46.4325916577, + "19836": 46.3916199969, + "19837": 46.3507434055, + "19838": 46.3099604797, + "19839": 46.2692606257, + "19840": 46.2286408775, + "19841": 46.1881018265, + "19842": 46.1476433535, + "19843": 46.107265483, + "19844": 46.0669682105, + "19845": 46.026751537, + "19846": 45.9866154622, + "19847": 45.9465599861, + "19848": 45.9065850172, + "19849": 45.8666875407, + "19850": 45.8268666659, + "19851": 45.7871225719, + "19852": 45.7474552233, + "19853": 45.7078646271, + "19854": 45.6683507818, + "19855": 45.6289136879, + "19856": 45.5895533452, + "19857": 45.5502697537, + "19858": 45.5110629135, + "19859": 45.4719191848, + "19860": 45.4328335931, + "19861": 45.3938066938, + "19862": 45.3548383748, + "19863": 45.3159286595, + "19864": 45.2770775424, + "19865": 45.2382850254, + "19866": 45.1995511072, + "19867": 45.1608757891, + "19868": 45.1222590698, + "19869": 45.0836983725, + "19870": 45.0451924623, + "19871": 45.0067413569, + "19872": 44.9683450518, + "19873": 44.930003549, + "19874": 44.891716847, + "19875": 44.8534849471, + "19876": 44.8153078481, + "19877": 44.7771855511, + "19878": 44.7391180551, + "19879": 44.70109713, + "19880": 44.6631176714, + "19881": 44.6251793841, + "19882": 44.5872823264, + "19883": 44.5494264873, + "19884": 44.5116118682, + "19885": 44.4738384698, + "19886": 44.436106291, + "19887": 44.3984153329, + "19888": 44.3607655943, + "19889": 44.323152638, + "19890": 44.2855729118, + "19891": 44.2480260175, + "19892": 44.2105120339, + "19893": 44.173030946, + "19894": 44.1355827559, + "19895": 44.0981674642, + "19896": 44.0607850698, + "19897": 44.0234355739, + "19898": 43.9861189753, + "19899": 43.9488230929, + "19900": 43.9115352947, + "19901": 43.8742548877, + "19902": 43.8369806612, + "19903": 43.7997152204, + "19904": 43.7624552874, + "19905": 43.7252029132, + "19906": 43.6879558973, + "19907": 43.6507165343, + "19908": 43.6134824856, + "19909": 43.5762561431, + "19910": 43.5390350758, + "19911": 43.5018217736, + "19912": 43.4646137017, + "19913": 43.427413463, + "19914": 43.3902184025, + "19915": 43.3530312526, + "19916": 43.3158492207, + "19917": 43.2786751864, + "19918": 43.2415062014, + "19919": 43.2043461623, + "19920": 43.1671935107, + "19921": 43.1300518203, + "19922": 43.0929177016, + "19923": 43.0557946076, + "19924": 43.0186789999, + "19925": 42.9815745406, + "19926": 42.9444774613, + "19927": 42.9073916665, + "19928": 42.8703131356, + "19929": 42.833246225, + "19930": 42.7961871434, + "19931": 42.7591404528, + "19932": 42.7221015542, + "19933": 42.6850751837, + "19934": 42.6480564679, + "19935": 42.6110504397, + "19936": 42.5740519187, + "19937": 42.5370662474, + "19938": 42.5000879306, + "19939": 42.4631244735, + "19940": 42.4261774851, + "19941": 42.3892548848, + "19942": 42.3523501555, + "19943": 42.315469655, + "19944": 42.2786069321, + "19945": 42.2417685698, + "19946": 42.2049478351, + "19947": 42.1681515941, + "19948": 42.1313728341, + "19949": 42.0946187418, + "19950": 42.0578824495, + "19951": 42.0211714479, + "19952": 41.9844782084, + "19953": 41.9478103304, + "19954": 41.9111601021, + "19955": 41.8745353057, + "19956": 41.8379280572, + "19957": 41.8013462931, + "19958": 41.7647819909, + "19959": 41.7282432264, + "19960": 41.6917225059, + "19961": 41.6552281573, + "19962": 41.6187519499, + "19963": 41.5823020832, + "19964": 41.5458703287, + "19965": 41.5094648972, + "19966": 41.47307756, + "19967": 41.4367165162, + "19968": 41.4003735641, + "19969": 41.3640568658, + "19970": 41.3277582824, + "19971": 41.2914859226, + "19972": 41.2552317047, + "19973": 41.2190036603, + "19974": 41.1827937901, + "19975": 41.1466100446, + "19976": 41.1104445112, + "19977": 41.0743050592, + "19978": 41.0381838597, + "19979": 41.0020887078, + "19980": 40.9660105944, + "19981": 40.9299566574, + "19982": 40.8939192003, + "19983": 40.857905927, + "19984": 40.8219091552, + "19985": 40.7859365937, + "19986": 40.7499805415, + "19987": 40.7140487569, + "19988": 40.6781334692, + "19989": 40.6422425436, + "19990": 40.6063692016, + "19991": 40.5705221823, + "19992": 40.5346934151, + "19993": 40.4988911932, + "19994": 40.4631071095, + "19995": 40.4273498234, + "19996": 40.3916105226, + "19997": 40.3558983409, + "19998": 40.3202039388, + "19999": 40.2845370592, + "20000": 20.0438443368, + "20001": 20.0290032334, + "20002": 20.014162338, + "20003": 19.9993213386, + "20004": 19.9844803912, + "20005": 19.9696394178, + "20006": 19.9547984574, + "20007": 19.9399574905, + "20008": 19.9251165268, + "20009": 19.9102755615, + "20010": 19.895434597, + "20011": 19.8805936322, + "20012": 19.8657526675, + "20013": 19.8509117027, + "20014": 19.836070738, + "20015": 19.8212297732, + "20016": 19.8063888085, + "20017": 19.7915478438, + "20018": 19.776706879, + "20019": 19.7618659143, + "20020": 19.7470249495, + "20021": 20.1696519786, + "20022": 20.8383547543, + "20023": 21.3840196567, + "20024": 21.9912034957, + "20025": 22.5676278664, + "20026": 23.1594319713, + "20027": 23.7435462091, + "20028": 24.3315053804, + "20029": 24.917542085, + "20030": 25.5045400229, + "20031": 26.1049761091, + "20032": 26.7201066055, + "20033": 27.3278898969, + "20034": 27.9393467908, + "20035": 28.5489668834, + "20036": 29.1595053767, + "20037": 29.7695846696, + "20038": 30.3798935627, + "20039": 30.9900876558, + "20040": 31.6003391488, + "20041": 32.6508663046, + "20042": 34.4939556632, + "20043": 35.9407639205, + "20044": 37.5857127284, + "20045": 39.131591261, + "20046": 40.7270049312, + "20047": 42.2976510326, + "20048": 43.8806809185, + "20049": 45.4575189121, + "20050": 47.0374528518, + "20051": 48.64045237, + "20052": 50.3233408613, + "20053": 51.9662848661, + "20054": 53.6292011141, + "20055": 55.2821312405, + "20056": 56.9400544277, + "20057": 58.5954810845, + "20058": 60.2521560065, + "20059": 61.9082067959, + "20060": 63.5645696517, + "20061": 65.3328287494, + "20062": 67.8575187212, + "20063": 70.003993256, + "20064": 72.3395755093, + "20065": 74.5806039034, + "20066": 76.868909227, + "20067": 79.1335760859, + "20068": 81.4100621772, + "20069": 83.6806386522, + "20070": 85.9541699355, + "20071": 88.2296385223, + "20072": 90.6134091068, + "20073": 92.9430286925, + "20074": 95.2997237776, + "20075": 97.642881113, + "20076": 99.9928073232, + "20077": 102.339349096, + "20078": 104.6875830875, + "20079": 107.0349709697, + "20080": 109.3827819065, + "20081": 111.730381316, + "20082": 113.3529586721, + "20083": 115.291264615, + "20084": 117.0717062645, + "20085": 118.9310800606, + "20086": 120.7509877835, + "20087": 122.590628543, + "20088": 124.4204027842, + "20089": 126.2551102846, + "20090": 128.0873511553, + "20091": 129.9208253409, + "20092": 131.6440952456, + "20093": 133.4028980722, + "20094": 135.1439344379, + "20095": 136.8938540341, + "20096": 138.639332015, + "20097": 140.3870308035, + "20098": 142.1336191883, + "20099": 143.8807627749, + "20100": 145.6276287606, + "20101": 147.3746335468, + "20102": 147.8595076643, + "20103": 148.5715875103, + "20104": 149.170064492, + "20105": 149.8253429059, + "20106": 150.4522206037, + "20107": 151.0932986595, + "20108": 151.7272765364, + "20109": 152.3648045027, + "20110": 153.0005574243, + "20111": 153.6371978682, + "20112": 153.9664040877, + "20113": 154.2958321878, + "20114": 154.6251493475, + "20115": 154.9545219774, + "20116": 155.2838668722, + "20117": 155.6132256346, + "20118": 155.9425774632, + "20119": 156.2719327587, + "20120": 156.6012863207, + "20121": 156.9306407495, + "20122": 156.4207691265, + "20123": 155.712133758, + "20124": 155.1028802622, + "20125": 154.44393583, + "20126": 153.8098368661, + "20127": 153.163315168, + "20128": 152.523004837, + "20129": 151.8795888225, + "20130": 151.2377256497, + "20131": 150.595086056, + "20132": 149.8486441521, + "20133": 149.0434009752, + "20134": 148.2675584347, + "20135": 147.477015576, + "20136": 146.6938228765, + "20137": 145.9069550973, + "20138": 145.121924858, + "20139": 144.3359758487, + "20140": 143.5504862244, + "20141": 142.7647669077, + "20142": 141.7853788591, + "20143": 140.6046965948, + "20144": 139.5246614384, + "20145": 138.3943027281, + "20146": 137.2891057947, + "20147": 136.1713279729, + "20148": 135.0598405953, + "20149": 133.9452079955, + "20150": 132.8321480068, + "20151": 131.7183017126, + "20152": 130.5762757603, + "20153": 129.382622172, + "20154": 128.2147824017, + "20155": 127.0340357224, + "20156": 125.8597424976, + "20157": 124.6822225456, + "20158": 123.5063159572, + "20159": 122.3296026869, + "20160": 121.1532927576, + "20161": 119.9767811578, + "20162": 118.8339750631, + "20163": 117.799133561, + "20164": 116.7103097626, + "20165": 115.6484771123, + "20166": 114.573148888, + "20167": 113.5045684507, + "20168": 112.4326141199, + "20169": 111.3623467358, + "20170": 110.2912358783, + "20171": 109.2205467576, + "20172": 108.154361168, + "20173": 107.1201032092, + "20174": 106.069881435, + "20175": 105.0276415686, + "20176": 103.9814107482, + "20177": 102.9371754048, + "20178": 101.8919423229, + "20179": 100.8472081103, + "20180": 99.802224463, + "20181": 98.7573655331, + "20182": 97.7248074823, + "20183": 97.0817226025, + "20184": 96.2439011373, + "20185": 95.5034479648, + "20186": 94.7143106459, + "20187": 93.9495154002, + "20188": 93.1725491179, + "20189": 92.4016683539, + "20190": 91.6277448307, + "20191": 90.8553426872, + "20192": 90.0821798538, + "20193": 89.4203487948, + "20194": 88.7100100054, + "20195": 88.0239250812, + "20196": 87.3257132244, + "20197": 86.6335648339, + "20198": 85.9383847102, + "20199": 85.2447204531, + "20200": 84.5502982628, + "20201": 83.8562550391, + "20202": 83.162022332, + "20203": 82.8029698393, + "20204": 82.336163931, + "20205": 81.9232347306, + "20206": 81.4833671762, + "20207": 81.0569687987, + "20208": 80.6238358328, + "20209": 80.1940701612, + "20210": 79.7626208424, + "20211": 79.3320133471, + "20212": 78.9009849401, + "20213": 78.5327949613, + "20214": 78.1532267195, + "20215": 77.7793476091, + "20216": 77.4026239331, + "20217": 77.0273225399, + "20218": 76.6513100052, + "20219": 76.2756530413, + "20220": 75.8998182921, + "20221": 75.5240724355, + "20222": 75.1482821325, + "20223": 74.9842412495, + "20224": 74.8201892548, + "20225": 74.656142816, + "20226": 74.4920935993, + "20227": 74.3280457715, + "20228": 74.1639972492, + "20229": 73.9999490742, + "20230": 73.8359007255, + "20231": 73.6718524637, + "20232": 73.5078041585, + "20233": 73.3862655461, + "20234": 73.2747950029, + "20235": 73.1582904252, + "20236": 73.0443028647, + "20237": 72.9290567956, + "20238": 72.8144399808, + "20239": 72.6995085388, + "20240": 72.5847344105, + "20241": 72.4698816253, + "20242": 72.3550681685, + "20243": 72.2765297913, + "20244": 72.2184170397, + "20245": 72.1500914752, + "20246": 72.0868723172, + "20247": 72.0210999559, + "20248": 71.9566041963, + "20249": 71.8914701358, + "20250": 71.8266552258, + "20251": 71.7616807405, + "20252": 71.6967860428, + "20253": 71.6417824685, + "20254": 71.5971118202, + "20255": 71.5472747089, + "20256": 71.5000208291, + "20257": 71.4514753336, + "20258": 71.4035756459, + "20259": 71.3553530543, + "20260": 71.3072919146, + "20261": 71.259150049, + "20262": 71.2110485464, + "20263": 71.1440022392, + "20264": 71.0429017014, + "20265": 70.9588282788, + "20266": 70.8662412986, + "20267": 70.7779110973, + "20268": 70.6874525065, + "20269": 70.5980581104, + "20270": 70.508131617, + "20271": 70.4184711723, + "20272": 70.3286777032, + "20273": 70.2336561986, + "20274": 70.121583249, + "20275": 70.0180360219, + "20276": 69.9102259336, + "20277": 69.8045472759, + "20278": 69.6978029029, + "20279": 69.5915913875, + "20280": 69.4851134433, + "20281": 69.3787687135, + "20282": 69.2723573765, + "20283": 69.1402087212, + "20284": 68.8340917161, + "20285": 68.6149588859, + "20286": 68.3523339682, + "20287": 68.1114550943, + "20288": 67.8597031985, + "20289": 67.6133878136, + "20290": 67.3643541733, + "20291": 67.1166796606, + "20292": 66.8683255842, + "20293": 66.6174021017, + "20294": 66.2746693071, + "20295": 65.9778411685, + "20296": 65.6580607019, + "20297": 65.3497563994, + "20298": 65.0357140148, + "20299": 64.7245406712, + "20300": 64.4119328072, + "20301": 64.1000422034, + "20302": 63.7877929694, + "20303": 63.4757230505, + "20304": 63.0510751517, + "20305": 62.6754589317, + "20306": 62.2753268722, + "20307": 61.8874527325, + "20308": 61.4934496329, + "20309": 61.1025110133, + "20310": 60.7100401537, + "20311": 60.318335414, + "20312": 59.9262476144, + "20313": 59.5343513448, + "20314": 59.0924953397, + "20315": 58.6667149219, + "20316": 58.2328967104, + "20317": 57.8030973958, + "20318": 57.3712886328, + "20319": 56.940484594, + "20320": 56.509178193, + "20321": 56.0781229732, + "20322": 55.6469421628, + "20323": 55.2158241476, + "20324": 54.7691120748, + "20325": 54.3252169796, + "20326": 53.8799133957, + "20327": 53.4353140561, + "20328": 52.9903625943, + "20329": 52.5455871936, + "20330": 52.1007237624, + "20331": 51.6559043464, + "20332": 51.2110629228, + "20333": 50.7662325031, + "20334": 50.3802115597, + "20335": 49.9941933673, + "20336": 49.6081737994, + "20337": 49.2221549193, + "20338": 48.8361356952, + "20339": 48.4501166432, + "20340": 48.0640975051, + "20341": 47.6780784101, + "20342": 47.2920592935, + "20343": 46.9060401877, + "20344": 46.597699069, + "20345": 46.3077553723, + "20346": 46.0086129646, + "20347": 45.7140699124, + "20348": 45.4172271824, + "20349": 45.1215342914, + "20350": 44.8252664808, + "20351": 44.52928613, + "20352": 44.2331620494, + "20353": 43.9371098337, + "20354": 43.6760536724, + "20355": 43.4347209701, + "20356": 43.1835265383, + "20357": 42.9372629713, + "20358": 42.6885339719, + "20359": 42.4410376886, + "20360": 42.1929250473, + "20361": 41.945120585, + "20362": 41.6971620332, + "20363": 41.4492805262, + "20364": 41.2528930292, + "20365": 41.1100393462, + "20366": 40.9404187562, + "20367": 40.7841816198, + "20368": 40.6212527565, + "20369": 40.4616697567, + "20370": 40.3004138251, + "20371": 40.1399943595, + "20372": 39.9791566608, + "20373": 39.8185280787, + "20374": 39.6814678436, + "20375": 39.5870711173, + "20376": 39.4713426366, + "20377": 39.3662800332, + "20378": 39.2558844911, + "20379": 39.1481554183, + "20380": 39.0390931108, + "20381": 38.9306974207, + "20382": 38.8219684219, + "20383": 38.7134060775, + "20384": 38.6226485114, + "20385": 38.5894300912, + "20386": 38.5274420981, + "20387": 38.4798388915, + "20388": 38.4250432916, + "20389": 38.3738438883, + "20390": 38.3208463867, + "20391": 38.2687479343, + "20392": 38.2161999573, + "20393": 38.1638767425, + "20394": 38.1181100747, + "20395": 38.1174148615, + "20396": 38.0941839209, + "20397": 38.0822208441, + "20398": 38.0646238354, + "20399": 38.0498437926, + "20400": 38.0336552668, + "20401": 38.0181709826, + "20402": 38.0023345776, + "20403": 37.9866742329, + "20404": 37.9720224376, + "20405": 37.9919569105, + "20406": 37.9945982493, + "20407": 38.0058861552, + "20408": 38.0128507776, + "20409": 38.0219770417, + "20410": 38.0300224849, + "20411": 38.0386083386, + "20412": 38.046923987, + "20413": 38.0553747381, + "20414": 38.0637579378, + "20415": 38.0956205805, + "20416": 38.1172561255, + "20417": 38.1440052193, + "20418": 38.1681975387, + "20419": 38.1936682453, + "20420": 38.2184997583, + "20421": 38.2436508681, + "20422": 38.2686421795, + "20423": 38.2937133901, + "20424": 38.3187446511, + "20425": 38.3402854217, + "20426": 38.3629445687, + "20427": 38.3850445275, + "20428": 38.4074240804, + "20429": 38.4296638363, + "20430": 38.4519734907, + "20431": 38.4742481958, + "20432": 38.4965403755, + "20433": 38.518823818, + "20434": 38.5411116291, + "20435": 38.5617951402, + "20436": 38.5827681244, + "20437": 38.603596372, + "20438": 38.6244969879, + "20439": 38.6453614197, + "20440": 38.6662439436, + "20441": 38.6871174214, + "20442": 38.7079954222, + "20443": 38.7288711615, + "20444": 38.7497480316, + "20445": 38.751975515, + "20446": 38.7542032811, + "20447": 38.7564309058, + "20448": 38.7586586012, + "20449": 38.7608862613, + "20450": 38.7631139391, + "20451": 38.765341608, + "20452": 38.7675692813, + "20453": 38.7697969524, + "20454": 38.7720246247, + "20455": 38.7627574543, + "20456": 38.7507678216, + "20457": 38.7401394201, + "20458": 38.728830403, + "20459": 38.7178616937, + "20460": 38.7067228305, + "20461": 38.6956690443, + "20462": 38.6845727196, + "20463": 38.6734976641, + "20464": 38.662411974, + "20465": 38.6404216266, + "20466": 38.6122917598, + "20467": 38.5872316527, + "20468": 38.5606366657, + "20469": 38.5348091187, + "20470": 38.5085978517, + "20471": 38.4825784447, + "20472": 38.4564631077, + "20473": 38.4303957357, + "20474": 38.4043043812, + "20475": 38.3703565004, + "20476": 38.3282314713, + "20477": 38.2901950163, + "20478": 38.2501142743, + "20479": 38.2110556758, + "20480": 38.1714860055, + "20481": 38.1321718711, + "20482": 38.0927299688, + "20483": 38.0533519504, + "20484": 38.0139419901, + "20485": 37.97094898, + "20486": 37.9214697472, + "20487": 37.8752336258, + "20488": 37.8273759487, + "20489": 37.7803290494, + "20490": 37.7328767612, + "20491": 37.6856271675, + "20492": 37.6382762265, + "20493": 37.5909759592, + "20494": 37.543650355, + "20495": 37.4939616417, + "20496": 37.4366301662, + "20497": 37.3831200718, + "20498": 37.3276992869, + "20499": 37.2732338472, + "20500": 37.2182907349, + "20501": 37.1635864589, + "20502": 37.1087627647, + "20503": 37.0539987796, + "20504": 36.99920494, + "20505": 36.944205323, + "20506": 36.887708486, + "20507": 36.831960259, + "20508": 36.775837727, + "20509": 36.7199023475, + "20510": 36.6638733918, + "20511": 36.6078912242, + "20512": 36.5518856625, + "20513": 36.4958917978, + "20514": 36.4398920846, + "20515": 36.3838521237, + "20516": 36.3264507812, + "20517": 36.2697301294, + "20518": 36.2126691323, + "20519": 36.1557783079, + "20520": 36.0988023971, + "20521": 36.0418690295, + "20522": 35.9849143903, + "20523": 35.9279703869, + "20524": 35.8710210656, + "20525": 35.8140744032, + "20526": 35.7608629804, + "20527": 35.7060250067, + "20528": 35.6520003084, + "20529": 35.5975689724, + "20530": 35.5433409553, + "20531": 35.4890112788, + "20532": 35.4347324319, + "20533": 35.3804281703, + "20534": 35.326136616, + "20535": 35.271838708, + "20536": 35.2216796444, + "20537": 35.1701896707, + "20538": 35.119365152, + "20539": 35.0682079058, + "20540": 35.0172170234, + "20541": 34.966142959, + "20542": 34.9151104857, + "20543": 34.8640572168, + "20544": 34.8130143457, + "20545": 34.7619662757, + "20546": 34.7100278162, + "20547": 34.658248795, + "20548": 34.6063900546, + "20549": 34.5545711738, + "20550": 34.5027323632, + "20551": 34.4509035175, + "20552": 34.3990696894, + "20553": 34.3472383525, + "20554": 34.2954057699, + "20555": 34.2435738102, + "20556": 34.2016734732, + "20557": 34.1597732919, + "20558": 34.1178730327, + "20559": 34.0759728124, + "20560": 34.0340725727, + "20561": 33.9921723428, + "20562": 33.9502721079, + "20563": 33.9083718755, + "20564": 33.8664716419, + "20565": 33.8245714089, + "20566": 33.7853604327, + "20567": 33.7467863859, + "20568": 33.7078938745, + "20569": 33.6691605954, + "20570": 33.6303477001, + "20571": 33.5915746129, + "20572": 33.5527816216, + "20573": 33.5139985824, + "20574": 33.4752105672, + "20575": 33.43642504, + "20576": 33.40065086, + "20577": 33.3665718846, + "20578": 33.3316453069, + "20579": 33.2971425304, + "20580": 33.2624278533, + "20581": 33.2278191265, + "20582": 33.1931574245, + "20583": 33.1585222101, + "20584": 33.123873752, + "20585": 33.0892319157, + "20586": 33.0553961261, + "20587": 33.0224024787, + "20588": 32.9889877601, + "20589": 32.9557835772, + "20590": 32.9224741264, + "20591": 32.8892173096, + "20592": 32.8559341758, + "20593": 32.8226642004, + "20594": 32.7893876459, + "20595": 32.7561143809, + "20596": 32.7237005234, + "20597": 32.6928373824, + "20598": 32.6611988832, + "20599": 32.6299480631, + "20600": 32.5985034034, + "20601": 32.5671556635, + "20602": 32.5357594637, + "20603": 32.5043874939, + "20604": 32.473003409, + "20605": 32.4416253817, + "20606": 32.4102612247, + "20607": 32.3789529003, + "20608": 32.3476166596, + "20609": 32.3162943771, + "20610": 32.2849651155, + "20611": 32.2536393434, + "20612": 32.2223118265, + "20613": 32.1909851821, + "20614": 32.1596581014, + "20615": 32.1283312389, + "20616": 32.096999285, + "20617": 32.0656337559, + "20618": 32.0342850144, + "20619": 32.0029278791, + "20620": 31.9715749407, + "20621": 31.9402199038, + "20622": 31.9088659162, + "20623": 31.8775114039, + "20624": 31.846157154, + "20625": 31.8148027729, + "20626": 31.7834359521, + "20627": 31.7516751834, + "20628": 31.7201113886, + "20629": 31.6884491069, + "20630": 31.6568360686, + "20631": 31.6251984086, + "20632": 31.5935730595, + "20633": 31.561941555, + "20634": 31.5303131281, + "20635": 31.4986831624, + "20636": 31.4670539661, + "20637": 31.4347407139, + "20638": 31.4027253818, + "20639": 31.3705610896, + "20640": 31.3384712775, + "20641": 31.3063442253, + "20642": 31.2742357932, + "20643": 31.242118051, + "20644": 31.2100049639, + "20645": 31.1778895492, + "20646": 31.1457752983, + "20647": 31.1134010571, + "20648": 31.0811104881, + "20649": 31.048778083, + "20650": 31.016466596, + "20651": 30.9841446499, + "20652": 30.9518279333, + "20653": 30.919508602, + "20654": 30.8871905781, + "20655": 30.8548719005, + "20656": 30.8225535497, + "20657": 30.7861507393, + "20658": 30.750483184, + "20659": 30.7144480011, + "20660": 30.6785966321, + "20661": 30.6426533561, + "20662": 30.6067560336, + "20663": 30.5708357343, + "20664": 30.5349269234, + "20665": 30.4990123684, + "20666": 30.4631006854, + "20667": 30.4301544079, + "20668": 30.3972088484, + "20669": 30.3642629298, + "20670": 30.3313171908, + "20671": 30.2983713621, + "20672": 30.2654255782, + "20673": 30.2324797718, + "20674": 30.1995339767, + "20675": 30.166588176, + "20676": 30.1336423781, + "20677": 30.1002206996, + "20678": 30.0666863137, + "20679": 30.0332082815, + "20680": 29.9997020724, + "20681": 29.9662099518, + "20682": 29.9327107869, + "20683": 29.8992151442, + "20684": 29.8657177404, + "20685": 29.8322212171, + "20686": 29.7987242536, + "20687": 29.7654460028, + "20688": 29.732290544, + "20689": 29.6990736891, + "20690": 29.6658875323, + "20691": 29.6326860265, + "20692": 29.5994921952, + "20693": 29.5662945267, + "20694": 29.5330987767, + "20695": 29.4999020675, + "20696": 29.4667058379, + "20697": 29.4339180842, + "20698": 29.401554886, + "20699": 29.36897941, + "20700": 29.3365100729, + "20701": 29.3039876664, + "20702": 29.2714917946, + "20703": 29.2389826554, + "20704": 29.2064801499, + "20705": 29.1739743276, + "20706": 29.1414701637, + "20707": 29.1087020153, + "20708": 29.0754606021, + "20709": 29.0424558214, + "20710": 29.0093327244, + "20711": 28.9762687855, + "20712": 28.9431752676, + "20713": 28.9100965392, + "20714": 28.877010416, + "20715": 28.8439279902, + "20716": 28.8108437157, + "20717": 28.7772818507, + "20718": 28.7421814402, + "20719": 28.7078503024, + "20720": 28.6731345282, + "20721": 28.6386110722, + "20722": 28.6039914571, + "20723": 28.5694199216, + "20724": 28.5348243463, + "20725": 28.5002407909, + "20726": 28.4656512255, + "20727": 28.4309342157, + "20728": 28.3953351696, + "20729": 28.3601771417, + "20730": 28.3247986047, + "20731": 28.2895303222, + "20732": 28.2542069124, + "20733": 28.2189110663, + "20734": 28.1836014384, + "20735": 28.1482987014, + "20736": 28.1129925189, + "20737": 28.0776057136, + "20738": 28.0396241623, + "20739": 28.0029399839, + "20740": 27.9656071191, + "20741": 27.9285985975, + "20742": 27.8914279043, + "20743": 27.8543382969, + "20744": 27.8172081466, + "20745": 27.7800982677, + "20746": 27.7429782531, + "20747": 27.7058633064, + "20748": 27.6657661718, + "20749": 27.6269678954, + "20750": 27.5875201899, + "20751": 27.5483971989, + "20752": 27.5091118507, + "20753": 27.4699076811, + "20754": 27.4306629222, + "20755": 27.391438458, + "20756": 27.3522038464, + "20757": 27.3129743085, + "20758": 27.2657949208, + "20759": 27.221171295, + "20760": 27.1752697882, + "20761": 27.130007222, + "20762": 27.0844251854, + "20763": 27.039002884, + "20764": 26.9935007151, + "20765": 26.9480384799, + "20766": 26.9025562778, + "20767": 26.8570840592, + "20768": 26.8032897127, + "20769": 26.7509949465, + "20770": 26.6979503901, + "20771": 26.6452807288, + "20772": 26.59242362, + "20773": 26.5396602349, + "20774": 26.486849988, + "20775": 26.434063172, + "20776": 26.3812646405, + "20777": 26.3284719668, + "20778": 26.2728525399, + "20779": 26.2172345774, + "20780": 26.1616158827, + "20781": 26.105997554, + "20782": 26.0503790424, + "20783": 25.9947606222, + "20784": 25.9391421563, + "20785": 25.8835237133, + "20786": 25.8279052588, + "20787": 25.7722868101, + "20788": 25.7160155537, + "20789": 25.6595896871, + "20790": 25.6032411256, + "20791": 25.5468539115, + "20792": 25.4904860237, + "20793": 25.4341084727, + "20794": 25.3777357534, + "20795": 25.3213606182, + "20796": 25.264986691, + "20797": 25.2086121598, + "20798": 25.150108608, + "20799": 25.0904071613, + "20800": 25.0313046621, + "20801": 24.9719026891, + "20802": 24.9126504531, + "20803": 24.8533233485, + "20804": 24.7940336782, + "20805": 24.7347252908, + "20806": 24.675426262, + "20807": 24.6161225538, + "20808": 24.5572482526, + "20809": 24.4988162744, + "20810": 24.4401631347, + "20811": 24.3816205757, + "20812": 24.3230227264, + "20813": 24.2644525223, + "20814": 24.2058684955, + "20815": 24.1472913801, + "20816": 24.088710809, + "20817": 24.0301319658, + "20818": 23.9731168245, + "20819": 23.9189183337, + "20820": 23.8633115177, + "20821": 23.8084088644, + "20822": 23.7531541297, + "20823": 23.6980754356, + "20824": 23.6429087213, + "20825": 23.5877860171, + "20826": 23.5326413078, + "20827": 23.4775076011, + "20828": 23.4229144175, + "20829": 23.3700790629, + "20830": 23.3163647938, + "20831": 23.263089982, + "20832": 23.2095954416, + "20833": 23.1562107654, + "20834": 23.1027711571, + "20835": 23.0493590149, + "20836": 22.9959331397, + "20837": 22.9425141309, + "20838": 22.8905701503, + "20839": 22.8486075003, + "20840": 22.8016541849, + "20841": 22.7571962022, + "20842": 22.7114905532, + "20843": 22.6664087374, + "20844": 22.6210150049, + "20845": 22.5757772308, + "20846": 22.5304614775, + "20847": 22.4851847138, + "20848": 22.4399867274, + "20849": 22.3978940608, + "20850": 22.3542487343, + "20851": 22.3113797377, + "20852": 22.2681225762, + "20853": 22.2250594971, + "20854": 22.1818993768, + "20855": 22.1387877771, + "20856": 22.0956519171, + "20857": 22.0525281873, + "20858": 22.0093983924, + "20859": 21.9806440705, + "20860": 21.9456292664, + "20861": 21.9137447034, + "20862": 21.8802950198, + "20863": 21.8476278965, + "20864": 21.8145694931, + "20865": 21.7817067297, + "20866": 21.7487461464, + "20867": 21.715834473, + "20868": 21.6828983446, + "20869": 21.6526906078, + "20870": 21.6216037044, + "20871": 21.5909563844, + "20872": 21.5600892727, + "20873": 21.5293320568, + "20874": 21.498519893, + "20875": 21.4677352031, + "20876": 21.4369367763, + "20877": 21.406145218, + "20878": 21.3753502254, + "20879": 21.3532291887, + "20880": 21.3295462905, + "20881": 21.3066443231, + "20882": 21.2833518902, + "20883": 21.2602546901, + "20884": 21.2370598736, + "20885": 21.2139138653, + "20886": 21.1907434529, + "20887": 21.1675852425, + "20888": 21.1444209311, + "20889": 21.1259360931, + "20890": 21.1074497298, + "20891": 21.0889641292, + "20892": 21.0704781472, + "20893": 21.0519923559, + "20894": 21.0335064693, + "20895": 21.0150206303, + "20896": 20.9965347675, + "20897": 20.9780489166, + "20898": 20.9595630598, + "20899": 20.9539122553, + "20900": 20.9513013294, + "20901": 20.9471704642, + "20902": 20.9437995686, + "20903": 20.9400486883, + "20904": 20.9364878003, + "20905": 20.9328319161, + "20906": 20.9292235301, + "20907": 20.9255913949, + "20908": 20.9219711344, + "20909": 20.9183452338, + "20910": 20.9147224691, + "20911": 20.9110981365, + "20912": 20.9074745878, + "20913": 20.9038506472, + "20914": 20.9002269025, + "20915": 20.8966030599, + "20916": 20.8929792662, + "20917": 20.8893554481, + "20918": 20.8857316422, + "20919": 20.8812110412, + "20920": 20.8757591623, + "20921": 20.8707729224, + "20922": 20.865553863, + "20923": 20.8604512133, + "20924": 20.8552903587, + "20925": 20.8501586066, + "20926": 20.8450123033, + "20927": 20.8398732756, + "20928": 20.8347306101, + "20929": 20.8293877124, + "20930": 20.8236802134, + "20931": 20.8181550151, + "20932": 20.8125386664, + "20933": 20.8069678929, + "20934": 20.8013743319, + "20935": 20.7957921646, + "20936": 20.7902043004, + "20937": 20.7846192847, + "20938": 20.7790328447, + "20939": 20.7714993642, + "20940": 20.7577048943, + "20941": 20.7470409191, + "20942": 20.7348116965, + "20943": 20.7233650976, + "20944": 20.7115271868, + "20945": 20.699884932, + "20946": 20.6881448492, + "20947": 20.6764536804, + "20948": 20.6647380546, + "20949": 20.6529782549, + "20950": 20.640831625, + "20951": 20.6288784103, + "20952": 20.616828488, + "20953": 20.6048269194, + "20954": 20.592801174, + "20955": 20.580787517, + "20956": 20.5687678158, + "20957": 20.5567511367, + "20958": 20.5447329465, + "20959": 20.5326949004, + "20960": 20.5200072141, + "20961": 20.5076443479, + "20962": 20.4951190717, + "20963": 20.4826750005, + "20964": 20.4701903268, + "20965": 20.4577259543, + "20966": 20.4452514312, + "20967": 20.4327819835, + "20968": 20.420309998, + "20969": 20.4078392814, + "20970": 20.3953553131, + "20971": 20.3828771566, + "20972": 20.3703960942, + "20973": 20.3579164848, + "20974": 20.3454361489, + "20975": 20.3329561762, + "20976": 20.3204760219, + "20977": 20.3079959584, + "20978": 20.2955158495, + "20979": 20.2830357633, + "20980": 20.2718757662, + "20981": 20.2602914568, + "20982": 20.2489193036, + "20983": 20.2374410722, + "20984": 20.22601588, + "20985": 20.2145641681, + "20986": 20.2031257161, + "20987": 20.1916806342, + "20988": 20.1802388672, + "20989": 20.1687954427, + "20990": 20.1561678625, + "20991": 20.143753165, + "20992": 20.1312320262, + "20993": 20.118764108, + "20994": 20.1062695795, + "20995": 20.0937883562, + "20996": 20.0813004803, + "20997": 20.0688159307, + "20998": 20.056329718, + "20999": 20.0438443368, + "21000": 40.2844153732, + "21001": 40.2487734687, + "21002": 40.2131529283, + "21003": 40.1775649356, + "21004": 40.1419980859, + "21005": 40.1064644237, + "21006": 40.0709514375, + "21007": 40.0354724473, + "21008": 40.0000135537, + "21009": 39.9645896237, + "21010": 39.9291850879, + "21011": 39.8938166629, + "21012": 39.8584667889, + "21013": 39.8231543765, + "21014": 39.7878595113, + "21015": 39.752603688, + "21016": 39.7173642255, + "21017": 39.6821656421, + "21018": 39.6469820267, + "21019": 39.6118414125, + "21020": 39.5767141418, + "21021": 39.5412170919, + "21022": 39.5047505571, + "21023": 39.4672438501, + "21024": 39.4286795423, + "21025": 39.3890953929, + "21026": 39.3484477276, + "21027": 39.3067844381, + "21028": 39.2640546819, + "21029": 39.2203132682, + "21030": 39.1755022087, + "21031": 39.1296706473, + "21032": 39.0827283861, + "21033": 39.0369538409, + "21034": 39.0020951875, + "21035": 38.990448777, + "21036": 39.0114298842, + "21037": 39.0715034336, + "21038": 39.1749357929, + "21039": 39.3242440342, + "21040": 39.5205818597, + "21041": 39.7636256188, + "21042": 40.0515718558, + "21043": 40.3828288088, + "21044": 40.7556635397, + "21045": 41.1679415524, + "21046": 41.6172963021, + "21047": 42.1011889515, + "21048": 42.6169713317, + "21049": 43.1619332756, + "21050": 43.7333411045, + "21051": 44.3284450323, + "21052": 44.944457148, + "21053": 45.5787111775, + "21054": 46.2286386026, + "21055": 46.8917452592, + "21056": 47.565627818, + "21057": 48.2479796691, + "21058": 48.9365967819, + "21059": 49.6293817854, + "21060": 50.3243469061, + "21061": 51.019509926, + "21062": 51.7123086018, + "21063": 52.4008806178, + "21064": 53.0837562637, + "21065": 53.7595311501, + "21066": 54.4269266966, + "21067": 55.0847730956, + "21068": 55.7320079478, + "21069": 56.3676718458, + "21070": 56.9909046081, + "21071": 57.6009381655, + "21072": 58.1969949106, + "21073": 58.7784596729, + "21074": 59.3448393328, + "21075": 59.895714081, + "21076": 60.4307420315, + "21077": 60.9496532267, + "21078": 61.4522458514, + "21079": 61.9383820859, + "21080": 62.4079841135, + "21081": 62.8610301846, + "21082": 63.2982363421, + "21083": 63.7199225447, + "21084": 64.1261659399, + "21085": 64.5171114729, + "21086": 64.8929305418, + "21087": 65.2538275916, + "21088": 65.6000366925, + "21089": 65.9318198083, + "21090": 66.2494645002, + "21091": 66.5532815889, + "21092": 66.8437063406, + "21093": 67.1211370402, + "21094": 67.3859360166, + "21095": 67.6384787126, + "21096": 67.8791507424, + "21097": 68.1083461009, + "21098": 68.3264651396, + "21099": 68.5339126154, + "21100": 68.7310957762, + "21101": 68.9184225073, + "21102": 69.0974927873, + "21103": 69.269434946, + "21104": 69.4346550849, + "21105": 69.5934859475, + "21106": 69.746252718, + "21107": 69.8932637266, + "21108": 70.0348151264, + "21109": 70.171191883, + "21110": 70.3026688032, + "21111": 70.4295110132, + "21112": 70.552264384, + "21113": 70.6714034255, + "21114": 70.7871810058, + "21115": 70.8998039541, + "21116": 71.0094718171, + "21117": 71.1163701491, + "21118": 71.2206725808, + "21119": 71.3225408772, + "21120": 71.4221252215, + "21121": 71.5195643367, + "21122": 71.6157790326, + "21123": 71.7116978232, + "21124": 71.8075249239, + "21125": 71.9032851348, + "21126": 71.9990130481, + "21127": 72.0947203909, + "21128": 72.190406803, + "21129": 72.2860610454, + "21130": 72.3816634273, + "21131": 72.4771874293, + "21132": 72.5726995541, + "21133": 72.6682963099, + "21134": 72.7639592173, + "21135": 72.8596340198, + "21136": 72.9552687247, + "21137": 73.0508073341, + "21138": 73.1461922148, + "21139": 73.2413645442, + "21140": 73.3362649907, + "21141": 73.4308342316, + "21142": 73.5251966305, + "21143": 73.6196286876, + "21144": 73.714138799, + "21145": 73.8086432562, + "21146": 73.9030743293, + "21147": 73.997360754, + "21148": 74.0914333889, + "21149": 74.1852254827, + "21150": 74.2786737291, + "21151": 74.3717189224, + "21152": 74.4643335058, + "21153": 74.5565378227, + "21154": 74.6483031429, + "21155": 74.7395847366, + "21156": 74.830346857, + "21157": 74.9205581552, + "21158": 75.0101928798, + "21159": 75.099230798, + "21160": 75.18765727, + "21161": 75.275463208, + "21162": 75.3626132145, + "21163": 75.4489818513, + "21164": 75.5345448062, + "21165": 75.6193247394, + "21166": 75.7033421679, + "21167": 75.7866243774, + "21168": 75.8692028036, + "21169": 75.9511128116, + "21170": 76.0323930664, + "21171": 76.1130850459, + "21172": 76.1932281164, + "21173": 76.2728344198, + "21174": 76.3519423048, + "21175": 76.4306030222, + "21176": 76.5088666191, + "21177": 76.5867841822, + "21178": 76.6644068499, + "21179": 76.7417855131, + "21180": 76.8189704128, + "21181": 76.8960107906, + "21182": 76.9729428675, + "21183": 77.0494355063, + "21184": 77.1254266471, + "21185": 77.2009909312, + "21186": 77.2761771415, + "21187": 77.351038865, + "21188": 77.4256267897, + "21189": 77.4999890104, + "21190": 77.5741700078, + "21191": 77.6482101288, + "21192": 77.722145168, + "21193": 77.7959011953, + "21194": 77.8694673098, + "21195": 77.9428715496, + "21196": 78.0161328164, + "21197": 78.0892667297, + "21198": 78.1622842165, + "21199": 78.2351916987, + "21200": 78.3079910793, + "21201": 78.3806798672, + "21202": 78.4532513545, + "21203": 78.5253780338, + "21204": 78.5968979477, + "21205": 78.6678043166, + "21206": 78.7380883458, + "21207": 78.8077412216, + "21208": 78.8767527956, + "21209": 78.9451112342, + "21210": 79.0128027316, + "21211": 79.0798114197, + "21212": 79.1461194095, + "21213": 79.2116477263, + "21214": 79.2763390133, + "21215": 79.3401701683, + "21216": 79.4031203869, + "21217": 79.4651681671, + "21218": 79.526292056, + "21219": 79.5864707109, + "21220": 79.6456831429, + "21221": 79.703908952, + "21222": 79.7611285761, + "21223": 79.8171233556, + "21224": 79.871718558, + "21225": 79.9248870613, + "21226": 79.9766281682, + "21227": 80.0269407269, + "21228": 80.0758275679, + "21229": 80.1232938729, + "21230": 80.169346937, + "21231": 80.2139957959, + "21232": 80.257250992, + "21233": 80.2990842084, + "21234": 80.3394673717, + "21235": 80.3784096378, + "21236": 80.4159297164, + "21237": 80.4520462192, + "21238": 80.4867792485, + "21239": 80.5201497823, + "21240": 80.5521795375, + "21241": 80.5828907606, + "21242": 80.6123060468, + "21243": 80.6404138421, + "21244": 80.6671905752, + "21245": 80.6926512648, + "21246": 80.7168219553, + "21247": 80.7397264396, + "21248": 80.7613883757, + "21249": 80.7818303626, + "21250": 80.8010736648, + "21251": 80.8191378385, + "21252": 80.8360404049, + "21253": 80.8517871458, + "21254": 80.8663734425, + "21255": 80.8798055436, + "21256": 80.8920912846, + "21257": 80.9032342975, + "21258": 80.9132347684, + "21259": 80.9220889152, + "21260": 80.9297887537, + "21261": 80.9363218356, + "21262": 80.9416710215, + "21263": 80.9458321673, + "21264": 80.9488244484, + "21265": 80.9506257889, + "21266": 80.9511945147, + "21267": 80.9504857238, + "21268": 80.9484481403, + "21269": 80.9450248589, + "21270": 80.9401532946, + "21271": 80.9337652826, + "21272": 80.9257871463, + "21273": 80.9161447816, + "21274": 80.9047737611, + "21275": 80.8915892847, + "21276": 80.8764947921, + "21277": 80.859389794, + "21278": 80.8401685762, + "21279": 80.8187207356, + "21280": 80.794931354, + "21281": 80.7686812529, + "21282": 80.7398472416, + "21283": 80.7083267431, + "21284": 80.6741729811, + "21285": 80.6373009668, + "21286": 80.5975584213, + "21287": 80.5548011821, + "21288": 80.5088793235, + "21289": 80.4596410038, + "21290": 80.4069326053, + "21291": 80.3505994819, + "21292": 80.2904864702, + "21293": 80.2264411013, + "21294": 80.1583972976, + "21295": 80.0862258879, + "21296": 80.0097659961, + "21297": 79.9288635067, + "21298": 79.8433640419, + "21299": 79.753114949, + "21300": 79.6579653884, + "21301": 79.5577667238, + "21302": 79.4523727855, + "21303": 79.3416401066, + "21304": 79.2302502472, + "21305": 79.1197657847, + "21306": 79.0093060194, + "21307": 78.8989891816, + "21308": 78.7903550894, + "21309": 78.6817856517, + "21310": 78.5743413716, + "21311": 78.4674339799, + "21312": 78.3615994131, + "21313": 78.2560789031, + "21314": 78.1516540152, + "21315": 78.0476291926, + "21316": 77.9447098929, + "21317": 77.8422000669, + "21318": 77.7407845795, + "21319": 77.639788454, + "21320": 77.5398750417, + "21321": 77.4403914464, + "21322": 77.3419785333, + "21323": 77.244006411, + "21324": 77.1471073673, + "21325": 77.0506844804, + "21326": 76.9553317225, + "21327": 76.8604673832, + "21328": 76.7666602614, + "21329": 76.6733537427, + "21330": 76.5810915014, + "21331": 76.489342291, + "21332": 76.398624387, + "21333": 76.308432128, + "21334": 76.2192024216, + "21335": 76.130410605, + "21336": 76.0425188401, + "21337": 75.9550737123, + "21338": 75.8685168015, + "21339": 75.7824191017, + "21340": 75.6971972554, + "21341": 75.6124472476, + "21342": 75.5285609992, + "21343": 75.4451590569, + "21344": 75.3625354037, + "21345": 75.2802581276, + "21346": 75.1986594766, + "21347": 75.1174096616, + "21348": 75.0368294585, + "21349": 74.956609337, + "21350": 74.8770484553, + "21351": 74.7978588891, + "21352": 74.7193186065, + "21353": 74.641160474, + "21354": 74.563608922, + "21355": 74.4863713575, + "21356": 74.4096775302, + "21357": 74.3333007294, + "21358": 74.2574606263, + "21359": 74.1819467097, + "21360": 74.1069616496, + "21361": 74.032311702, + "21362": 73.9581832304, + "21363": 73.884398304, + "21364": 73.8110790624, + "21365": 73.7379724623, + "21366": 73.6652155941, + "21367": 73.5926630849, + "21368": 73.5204575287, + "21369": 73.4484626415, + "21370": 73.3768093624, + "21371": 73.3053731874, + "21372": 73.234273583, + "21373": 73.1633970795, + "21374": 73.0928300406, + "21375": 73.0224107688, + "21376": 72.9522241304, + "21377": 72.882179065, + "21378": 72.8123649965, + "21379": 72.7426967763, + "21380": 72.673256073, + "21381": 72.6039655494, + "21382": 72.5348992826, + "21383": 72.4659871885, + "21384": 72.3972793926, + "21385": 72.3286442975, + "21386": 72.2601247251, + "21387": 72.1916668866, + "21388": 72.1233249531, + "21389": 72.0550472479, + "21390": 71.9868832987, + "21391": 71.9187863583, + "21392": 71.850801114, + "21393": 71.7828854382, + "21394": 71.7150732462, + "21395": 71.6472788417, + "21396": 71.5795250265, + "21397": 71.5117804231, + "21398": 71.4440769836, + "21399": 71.3763842752, + "21400": 71.3087313853, + "21401": 71.2410909875, + "21402": 71.1734891049, + "21403": 71.1059013367, + "21404": 71.0383498495, + "21405": 70.9707793138, + "21406": 70.9032004046, + "21407": 70.8355961234, + "21408": 70.7679837314, + "21409": 70.7003467515, + "21410": 70.6327010047, + "21411": 70.565031799, + "21412": 70.4973530011, + "21413": 70.4296517653, + "21414": 70.3619401908, + "21415": 70.2941848559, + "21416": 70.2263881381, + "21417": 70.1585413013, + "21418": 70.0906531877, + "21419": 70.0227155836, + "21420": 69.9547361714, + "21421": 69.8867079666, + "21422": 69.8186373666, + "21423": 69.7505185961, + "21424": 69.6823570531, + "21425": 69.6141512925, + "21426": 69.5459072689, + "21427": 69.477621121, + "21428": 69.4092963277, + "21429": 69.3409298863, + "21430": 69.2725244689, + "21431": 69.2040778294, + "21432": 69.1355919203, + "21433": 69.0670651717, + "21434": 68.998498893, + "21435": 68.9298936379, + "21436": 68.8612510863, + "21437": 68.7925708615, + "21438": 68.7238531817, + "21439": 68.655098092, + "21440": 68.5863055274, + "21441": 68.5174756557, + "21442": 68.4486085493, + "21443": 68.3797042769, + "21444": 68.3107628549, + "21445": 68.2418019802, + "21446": 68.1728358137, + "21447": 68.1038659483, + "21448": 68.0348920688, + "21449": 67.9659142346, + "21450": 67.8969324348, + "21451": 67.8279466699, + "21452": 67.7589569416, + "21453": 67.6899632477, + "21454": 67.6209655904, + "21455": 67.5519748778, + "21456": 67.4830024239, + "21457": 67.4140499839, + "21458": 67.3451172084, + "21459": 67.2762041655, + "21460": 67.2073108434, + "21461": 67.1384372428, + "21462": 67.069583365, + "21463": 67.0007492084, + "21464": 66.9319347747, + "21465": 66.8631504171, + "21466": 66.7944102462, + "21467": 66.7257169395, + "21468": 66.657069963, + "21469": 66.588469422, + "21470": 66.5199152968, + "21471": 66.4514075901, + "21472": 66.3829463026, + "21473": 66.3145314329, + "21474": 66.2461629802, + "21475": 66.1778484141, + "21476": 66.109601465, + "21477": 66.0414251317, + "21478": 65.9733188168, + "21479": 65.9052826372, + "21480": 65.8373165703, + "21481": 65.7694206194, + "21482": 65.7015947851, + "21483": 65.633839066, + "21484": 65.5661534637, + "21485": 65.4985413924, + "21486": 65.4310117354, + "21487": 65.363566643, + "21488": 65.2962056863, + "21489": 65.22892895, + "21490": 65.1617364184, + "21491": 65.0946280933, + "21492": 65.0276039736, + "21493": 64.9606640605, + "21494": 64.8938083562, + "21495": 64.8270391131, + "21496": 64.7603653822, + "21497": 64.6937895421, + "21498": 64.6273111176, + "21499": 64.5609302037, + "21500": 64.4946467833, + "21501": 64.4284608577, + "21502": 64.3623724274, + "21503": 64.2963814911, + "21504": 64.2304880503, + "21505": 64.164692313, + "21506": 64.0989958621, + "21507": 64.0333991394, + "21508": 63.9679020575, + "21509": 63.9025046329, + "21510": 63.8372068634, + "21511": 63.7720087483, + "21512": 63.7069102888, + "21513": 63.6419114836, + "21514": 63.577012334, + "21515": 63.5122128798, + "21516": 63.4475144457, + "21517": 63.3829174213, + "21518": 63.3184217281, + "21519": 63.2540273827, + "21520": 63.1897343836, + "21521": 63.1255427294, + "21522": 63.0614524209, + "21523": 62.9974634572, + "21524": 62.9335758377, + "21525": 62.8697895632, + "21526": 62.8061010876, + "21527": 62.7425091179, + "21528": 62.6790138, + "21529": 62.6156151029, + "21530": 62.5523130333, + "21531": 62.4891075892, + "21532": 62.4259987703, + "21533": 62.3629865773, + "21534": 62.300071012, + "21535": 62.2372520723, + "21536": 62.1745258339, + "21537": 62.1118904174, + "21538": 62.0493458474, + "21539": 61.9868921197, + "21540": 61.9245292356, + "21541": 61.8622571947, + "21542": 61.8000759971, + "21543": 61.7379856429, + "21544": 61.6759861319, + "21545": 61.6140774643, + "21546": 61.5522604875, + "21547": 61.4905357271, + "21548": 61.4289032149, + "21549": 61.3673629432, + "21550": 61.3059149125, + "21551": 61.2445591235, + "21552": 61.1832955763, + "21553": 61.1221242709, + "21554": 61.0610452073, + "21555": 61.0000583855, + "21556": 60.93915438, + "21557": 60.8783256479, + "21558": 60.8175713414, + "21559": 60.7568916295, + "21560": 60.696286479, + "21561": 60.6357558959, + "21562": 60.5752998797, + "21563": 60.5149184297, + "21564": 60.4546115469, + "21565": 60.3943792303, + "21566": 60.3342189283, + "21567": 60.2741279936, + "21568": 60.214106016, + "21569": 60.1541530768, + "21570": 60.0942691604, + "21571": 60.0344542693, + "21572": 59.9747084037, + "21573": 59.9150315628, + "21574": 59.8554237474, + "21575": 59.7958849568, + "21576": 59.7364123324, + "21577": 59.6770019775, + "21578": 59.6176541819, + "21579": 59.5583678035, + "21580": 59.4991435628, + "21581": 59.4399805935, + "21582": 59.3808796352, + "21583": 59.3218399415, + "21584": 59.2628622537, + "21585": 59.203945841, + "21586": 59.1450906551, + "21587": 59.0862945757, + "21588": 59.0275579921, + "21589": 58.9688802797, + "21590": 58.9102621035, + "21591": 58.8517027992, + "21592": 58.7932030258, + "21593": 58.7347621335, + "21594": 58.6763807667, + "21595": 58.6180582893, + "21596": 58.5597945164, + "21597": 58.5015866977, + "21598": 58.4434349422, + "21599": 58.3853387342, + "21600": 58.3272986723, + "21601": 58.2693141446, + "21602": 58.2113857692, + "21603": 58.1535129288, + "21604": 58.0956962455, + "21605": 58.0379350967, + "21606": 57.980230096, + "21607": 57.9225805466, + "21608": 57.8649870731, + "21609": 57.8074490327, + "21610": 57.7499670817, + "21611": 57.6925405566, + "21612": 57.6351701337, + "21613": 57.5778551279, + "21614": 57.5205962385, + "21615": 57.4633927558, + "21616": 57.4062454094, + "21617": 57.3491534982, + "21618": 57.2921177851, + "21619": 57.2351375019, + "21620": 57.1782134319, + "21621": 57.1213447775, + "21622": 57.0645323532, + "21623": 57.0077753292, + "21624": 56.9510745517, + "21625": 56.8944291588, + "21626": 56.8378400401, + "21627": 56.7813066853, + "21628": 56.7248301161, + "21629": 56.6684093847, + "21630": 56.612045435, + "21631": 56.5557373125, + "21632": 56.499485992, + "21633": 56.4432904884, + "21634": 56.3871517746, + "21635": 56.3310688575, + "21636": 56.2750427576, + "21637": 56.2190731018, + "21638": 56.16316114, + "21639": 56.1073058198, + "21640": 56.0515081721, + "21641": 55.9957671655, + "21642": 55.9400838258, + "21643": 55.8844571254, + "21644": 55.8288880836, + "21645": 55.7733756825, + "21646": 55.7179209279, + "21647": 55.662523065, + "21648": 55.607183197, + "21649": 55.5519003452, + "21650": 55.4966754572, + "21651": 55.441507594, + "21652": 55.3863976933, + "21653": 55.3313448406, + "21654": 55.2763499051, + "21655": 55.2214120276, + "21656": 55.1665320505, + "21657": 55.1117130339, + "21658": 55.0569581682, + "21659": 55.0022668304, + "21660": 54.9476397239, + "21661": 54.8930761485, + "21662": 54.8385767782, + "21663": 54.7841409658, + "21664": 54.7297693274, + "21665": 54.6754612757, + "21666": 54.6212173667, + "21667": 54.5670342583, + "21668": 54.5129101935, + "21669": 54.4588444532, + "21670": 54.4048375242, + "21671": 54.3508889902, + "21672": 54.2969992317, + "21673": 54.243167899, + "21674": 54.1893953155, + "21675": 54.1356811862, + "21676": 54.0820257822, + "21677": 54.0284293111, + "21678": 53.9748924637, + "21679": 53.9214151155, + "21680": 53.8679974303, + "21681": 53.8146392559, + "21682": 53.7613407306, + "21683": 53.7081017367, + "21684": 53.6549223784, + "21685": 53.6018025701, + "21686": 53.5487422681, + "21687": 53.4957413635, + "21688": 53.4427995854, + "21689": 53.3899168743, + "21690": 53.3370932424, + "21691": 53.2843286874, + "21692": 53.2316232096, + "21693": 53.178976809, + "21694": 53.1263894856, + "21695": 53.0738612392, + "21696": 53.02139207, + "21697": 52.9689815899, + "21698": 52.9166290858, + "21699": 52.8643344019, + "21700": 52.8120975692, + "21701": 52.7599185816, + "21702": 52.7077974403, + "21703": 52.655734145, + "21704": 52.6037286958, + "21705": 52.5517810925, + "21706": 52.4998913354, + "21707": 52.448059674, + "21708": 52.3962867579, + "21709": 52.3445727443, + "21710": 52.292917602, + "21711": 52.2413213371, + "21712": 52.1897839485, + "21713": 52.1383054364, + "21714": 52.0868858008, + "21715": 52.0355250417, + "21716": 51.9842231591, + "21717": 51.9329806074, + "21718": 51.8817992096, + "21719": 51.8306794446, + "21720": 51.7796212168, + "21721": 51.7286245452, + "21722": 51.6776894261, + "21723": 51.6268158604, + "21724": 51.5760038478, + "21725": 51.5252533885, + "21726": 51.4745644825, + "21727": 51.4239372536, + "21728": 51.3733726368, + "21729": 51.3228708938, + "21730": 51.2724319724, + "21731": 51.2220558831, + "21732": 51.1717426239, + "21733": 51.1214921952, + "21734": 51.0713045708, + "21735": 51.0211797581, + "21736": 50.9711177736, + "21737": 50.9211186972, + "21738": 50.8711850531, + "21739": 50.821317587, + "21740": 50.7715161506, + "21741": 50.7217807725, + "21742": 50.6721114474, + "21743": 50.6225081759, + "21744": 50.5729709584, + "21745": 50.5234997942, + "21746": 50.474094684, + "21747": 50.4247556271, + "21748": 50.3754854524, + "21749": 50.32628519, + "21750": 50.2771547255, + "21751": 50.2280940815, + "21752": 50.1791032539, + "21753": 50.130182243, + "21754": 50.0813310492, + "21755": 50.032549672, + "21756": 49.9838381119, + "21757": 49.9351963684, + "21758": 49.8866319851, + "21759": 49.8381485713, + "21760": 49.7897460792, + "21761": 49.7414245177, + "21762": 49.6931838857, + "21763": 49.6450241827, + "21764": 49.5969454096, + "21765": 49.5489475654, + "21766": 49.501030651, + "21767": 49.4531946657, + "21768": 49.4054475042, + "21769": 49.3577940601, + "21770": 49.3102346184, + "21771": 49.2627691214, + "21772": 49.2153975813, + "21773": 49.1681199951, + "21774": 49.120936364, + "21775": 49.0738466871, + "21776": 49.0268509651, + "21777": 48.9799491974, + "21778": 48.9331440649, + "21779": 48.886437711, + "21780": 48.8398303776, + "21781": 48.7933220157, + "21782": 48.7469126358, + "21783": 48.7006022351, + "21784": 48.6543908149, + "21785": 48.6082783742, + "21786": 48.5622649139, + "21787": 48.5163504332, + "21788": 48.4705355524, + "21789": 48.4248209132, + "21790": 48.379206615, + "21791": 48.3336926385, + "21792": 48.288278989, + "21793": 48.2429656642, + "21794": 48.1977526638, + "21795": 48.1526399884, + "21796": 48.1076276394, + "21797": 48.0627156152, + "21798": 48.0179059376, + "21799": 47.9732013593, + "21800": 47.9286024042, + "21801": 47.8841089668, + "21802": 47.8397210688, + "21803": 47.7954387053, + "21804": 47.7512618766, + "21805": 47.7071905833, + "21806": 47.663224827, + "21807": 47.6193646059, + "21808": 47.5756095154, + "21809": 47.5319588094, + "21810": 47.4884123262, + "21811": 47.4449700973, + "21812": 47.4016321158, + "21813": 47.3583983837, + "21814": 47.3152689024, + "21815": 47.2722436701, + "21816": 47.2293226863, + "21817": 47.1865059516, + "21818": 47.1437919814, + "21819": 47.1011769146, + "21820": 47.0586598157, + "21821": 47.0162408718, + "21822": 46.973920047, + "21823": 46.9316973469, + "21824": 46.8895727693, + "21825": 46.8475463155, + "21826": 46.805617987, + "21827": 46.763787782, + "21828": 46.722055183, + "21829": 46.6804181087, + "21830": 46.6388760136, + "21831": 46.5974290062, + "21832": 46.5560770639, + "21833": 46.514820192, + "21834": 46.4736583899, + "21835": 46.4325916577, + "21836": 46.3916199969, + "21837": 46.3507434055, + "21838": 46.3099604797, + "21839": 46.2692606257, + "21840": 46.2286408775, + "21841": 46.1881018265, + "21842": 46.1476433535, + "21843": 46.107265483, + "21844": 46.0669682105, + "21845": 46.026751537, + "21846": 45.9866154622, + "21847": 45.9465599861, + "21848": 45.9065850172, + "21849": 45.8666875407, + "21850": 45.8268666659, + "21851": 45.7871225719, + "21852": 45.7474552233, + "21853": 45.7078646271, + "21854": 45.6683507818, + "21855": 45.6289136879, + "21856": 45.5895533452, + "21857": 45.5502697537, + "21858": 45.5110629135, + "21859": 45.4719191848, + "21860": 45.4328335931, + "21861": 45.3938066938, + "21862": 45.3548383748, + "21863": 45.3159286595, + "21864": 45.2770775424, + "21865": 45.2382850254, + "21866": 45.1995511072, + "21867": 45.1608757891, + "21868": 45.1222590698, + "21869": 45.0836983725, + "21870": 45.0451924623, + "21871": 45.0067413569, + "21872": 44.9683450518, + "21873": 44.930003549, + "21874": 44.891716847, + "21875": 44.8534849471, + "21876": 44.8153078481, + "21877": 44.7771855511, + "21878": 44.7391180551, + "21879": 44.70109713, + "21880": 44.6631176714, + "21881": 44.6251793841, + "21882": 44.5872823264, + "21883": 44.5494264873, + "21884": 44.5116118682, + "21885": 44.4738384698, + "21886": 44.436106291, + "21887": 44.3984153329, + "21888": 44.3607655943, + "21889": 44.323152638, + "21890": 44.2855729118, + "21891": 44.2480260175, + "21892": 44.2105120339, + "21893": 44.173030946, + "21894": 44.1355827559, + "21895": 44.0981674642, + "21896": 44.0607850698, + "21897": 44.0234355739, + "21898": 43.9861189753, + "21899": 43.9488230929, + "21900": 43.9115352947, + "21901": 43.8742548877, + "21902": 43.8369806612, + "21903": 43.7997152204, + "21904": 43.7624552874, + "21905": 43.7252029132, + "21906": 43.6879558973, + "21907": 43.6507165343, + "21908": 43.6134824856, + "21909": 43.5762561431, + "21910": 43.5390350758, + "21911": 43.5018217736, + "21912": 43.4646137017, + "21913": 43.427413463, + "21914": 43.3902184025, + "21915": 43.3530312526, + "21916": 43.3158492207, + "21917": 43.2786751864, + "21918": 43.2415062014, + "21919": 43.2043461623, + "21920": 43.1671935107, + "21921": 43.1300518203, + "21922": 43.0929177016, + "21923": 43.0557946076, + "21924": 43.0186789999, + "21925": 42.9815745406, + "21926": 42.9444774613, + "21927": 42.9073916665, + "21928": 42.8703131356, + "21929": 42.833246225, + "21930": 42.7961871434, + "21931": 42.7591404528, + "21932": 42.7221015542, + "21933": 42.6850751837, + "21934": 42.6480564679, + "21935": 42.6110504397, + "21936": 42.5740519187, + "21937": 42.5370662474, + "21938": 42.5000879306, + "21939": 42.4631244735, + "21940": 42.4261774851, + "21941": 42.3892548848, + "21942": 42.3523501555, + "21943": 42.315469655, + "21944": 42.2786069321, + "21945": 42.2417685698, + "21946": 42.2049478351, + "21947": 42.1681515941, + "21948": 42.1313728341, + "21949": 42.0946187418, + "21950": 42.0578824495, + "21951": 42.0211714479, + "21952": 41.9844782084, + "21953": 41.9478103304, + "21954": 41.9111601021, + "21955": 41.8745353057, + "21956": 41.8379280572, + "21957": 41.8013462931, + "21958": 41.7647819909, + "21959": 41.7282432264, + "21960": 41.6917225059, + "21961": 41.6552281573, + "21962": 41.6187519499, + "21963": 41.5823020832, + "21964": 41.5458703287, + "21965": 41.5094648972, + "21966": 41.47307756, + "21967": 41.4367165162, + "21968": 41.4003735641, + "21969": 41.3640568658, + "21970": 41.3277582824, + "21971": 41.2914859226, + "21972": 41.2552317047, + "21973": 41.2190036603, + "21974": 41.1827937901, + "21975": 41.1466100446, + "21976": 41.1104445112, + "21977": 41.0743050592, + "21978": 41.0381838597, + "21979": 41.0020887078, + "21980": 40.9660105944, + "21981": 40.9299566574, + "21982": 40.8939192003, + "21983": 40.857905927, + "21984": 40.8219091552, + "21985": 40.7859365937, + "21986": 40.7499805415, + "21987": 40.7140487569, + "21988": 40.6781334692, + "21989": 40.6422425436, + "21990": 40.6063692016, + "21991": 40.5705221823, + "21992": 40.5346934151, + "21993": 40.4988911932, + "21994": 40.4631071095, + "21995": 40.4273498234, + "21996": 40.3916105226, + "21997": 40.3558983409, + "21998": 40.3202039388, + "21999": 40.2845370592, + "22000": 0.0638243178, + "22001": 0.0636397315, + "22002": 0.0634482932, + "22003": 0.0632490036, + "22004": 0.0630409054, + "22005": 0.0628230981, + "22006": 0.0625947299, + "22007": 0.0623549926, + "22008": 0.0621031182, + "22009": 0.0618383752, + "22010": 0.0615600664, + "22011": 0.0612675267, + "22012": 0.0609601214, + "22013": 0.0606372457, + "22014": 0.0602983232, + "22015": 0.0599428062, + "22016": 0.0595701748, + "22017": 0.0591799374, + "22018": 0.0587716306, + "22019": 0.0583448197, + "22020": 0.0578990987, + "22021": 0.0574341436, + "22022": 0.056949767, + "22023": 0.0564458666, + "22024": 0.0559223554, + "22025": 0.0553791493, + "22026": 0.0548161719, + "22027": 0.0542333589, + "22028": 0.0536306598, + "22029": 0.0530080418, + "22030": 0.0523654906, + "22031": 0.0517030152, + "22032": 0.0510206507, + "22033": 0.050318475, + "22034": 0.0495966766, + "22035": 0.048855623, + "22036": 0.0480958627, + "22037": 0.0473180866, + "22038": 0.046523092, + "22039": 0.0457117536, + "22040": 0.0448850009, + "22041": 0.0440439097, + "22042": 0.0431899359, + "22043": 0.0423247912, + "22044": 0.0414501582, + "22045": 0.0405676138, + "22046": 0.039678642, + "22047": 0.0387846401, + "22048": 0.0378869227, + "22049": 0.0369867266, + "22050": 0.0360852142, + "22051": 0.0351834836, + "22052": 0.034282594, + "22053": 0.0333835623, + "22054": 0.0324873414, + "22055": 0.031594817, + "22056": 0.0307068104, + "22057": 0.0298240823, + "22058": 0.0289473349, + "22059": 0.0280772147, + "22060": 0.0272143146, + "22061": 0.0263592256, + "22062": 0.0255128929, + "22063": 0.0246765607, + "22064": 0.0238514171, + "22065": 0.0230384914, + "22066": 0.0222386803, + "22067": 0.0214527628, + "22068": 0.0206814119, + "22069": 0.0199252054, + "22070": 0.0191846364, + "22071": 0.0184601227, + "22072": 0.017752063, + "22073": 0.0170608411, + "22074": 0.016386785, + "22075": 0.015730159, + "22076": 0.0150911711, + "22077": 0.0144699797, + "22078": 0.0138666988, + "22079": 0.0132814028, + "22080": 0.0127141311, + "22081": 0.012164892, + "22082": 0.0116335345, + "22083": 0.0111197469, + "22084": 0.0106231862, + "22085": 0.0101435292, + "22086": 0.0096804685, + "22087": 0.0092337101, + "22088": 0.008802972, + "22089": 0.0083879825, + "22090": 0.0079884795, + "22091": 0.0076042095, + "22092": 0.0072349066, + "22093": 0.0068802897, + "22094": 0.0065400808, + "22095": 0.0062140148, + "22096": 0.005901839, + "22097": 0.0056033119, + "22098": 0.0053182028, + "22099": 0.0050462916, + "22100": 0.0047873675, + "22101": 0.0045412299, + "22102": 0.0043074868, + "22103": 0.0040854972, + "22104": 0.0038745643, + "22105": 0.0036740571, + "22106": 0.0034834174, + "22107": 0.0033021481, + "22108": 0.0031298069, + "22109": 0.0029659998, + "22110": 0.002810376, + "22111": 0.0026626232, + "22112": 0.0025224012, + "22113": 0.0023892979, + "22114": 0.002262892, + "22115": 0.0021428048, + "22116": 0.0020287038, + "22117": 0.0019202967, + "22118": 0.0018173267, + "22119": 0.0017195691, + "22120": 0.0016268274, + "22121": 0.001538931, + "22122": 0.0014556645, + "22123": 0.001376717, + "22124": 0.0013017466, + "22125": 0.001230446, + "22126": 0.0011625518, + "22127": 0.0010978368, + "22128": 0.0010361058, + "22129": 0.0009771914, + "22130": 0.0009209505, + "22131": 0.0008672613, + "22132": 0.0008160121, + "22133": 0.0007670905, + "22134": 0.0007203895, + "22135": 0.0006758167, + "22136": 0.0006332949, + "22137": 0.0005927595, + "22138": 0.0005541574, + "22139": 0.0005174447, + "22140": 0.0004825857, + "22141": 0.0004495514, + "22142": 0.0004183206, + "22143": 0.0003888812, + "22144": 0.0003612271, + "22145": 0.0003353547, + "22146": 0.0003112609, + "22147": 0.0002889424, + "22148": 0.0002683959, + "22149": 0.0002496172, + "22150": 0.0002326012, + "22151": 0.0002173414, + "22152": 0.0002038304, + "22153": 0.00019206, + "22154": 0.0001820213, + "22155": 0.0001737031, + "22156": 0.0001670924, + "22157": 0.0001621741, + "22158": 0.000158931, + "22159": 0.0001573437, + "22160": 0.0001573911, + "22161": 0.0001590502, + "22162": 0.0001622955, + "22163": 0.0001670973, + "22164": 0.0001734222, + "22165": 0.0001812359, + "22166": 0.0001905037, + "22167": 0.0002011908, + "22168": 0.0002132622, + "22169": 0.0002266828, + "22170": 0.0002414177, + "22171": 0.0002574319, + "22172": 0.0002746908, + "22173": 0.0002931592, + "22174": 0.0003128022, + "22175": 0.0003335851, + "22176": 0.0003554743, + "22177": 0.0003784373, + "22178": 0.0004024426, + "22179": 0.0004274601, + "22180": 0.0004534608, + "22181": 0.0004804174, + "22182": 0.0005083033, + "22183": 0.0005370726, + "22184": 0.0005666611, + "22185": 0.0005970069, + "22186": 0.0006280571, + "22187": 0.000659766, + "22188": 0.0006920951, + "22189": 0.0007250124, + "22190": 0.0007584919, + "22191": 0.0007925128, + "22192": 0.0008270596, + "22193": 0.0008621154, + "22194": 0.0008976616, + "22195": 0.000933683, + "22196": 0.0009701697, + "22197": 0.0010071165, + "22198": 0.0010445224, + "22199": 0.0010823902, + "22200": 0.0011207259, + "22201": 0.0011595385, + "22202": 0.0011988392, + "22203": 0.0012386262, + "22204": 0.0012788814, + "22205": 0.0013195861, + "22206": 0.0013607277, + "22207": 0.0014022996, + "22208": 0.0014443007, + "22209": 0.0014867338, + "22210": 0.0015296059, + "22211": 0.0015729267, + "22212": 0.0016167087, + "22213": 0.0016609642, + "22214": 0.0017057051, + "22215": 0.0017509437, + "22216": 0.0017966933, + "22217": 0.001842968, + "22218": 0.0018897825, + "22219": 0.0019371513, + "22220": 0.0019850889, + "22221": 0.0020336091, + "22222": 0.0020827253, + "22223": 0.0021324344, + "22224": 0.0021827099, + "22225": 0.0022335171, + "22226": 0.0022848248, + "22227": 0.0023366071, + "22228": 0.0023888422, + "22229": 0.0024415121, + "22230": 0.0024946017, + "22231": 0.0025480983, + "22232": 0.0026019914, + "22233": 0.0026562689, + "22234": 0.0027109151, + "22235": 0.0027659129, + "22236": 0.0028212473, + "22237": 0.0028769054, + "22238": 0.0029328761, + "22239": 0.0029891502, + "22240": 0.0030457196, + "22241": 0.003102578, + "22242": 0.0031597201, + "22243": 0.0032171324, + "22244": 0.0032747836, + "22245": 0.0033326338, + "22246": 0.0033906474, + "22247": 0.0034487953, + "22248": 0.0035070542, + "22249": 0.0035654063, + "22250": 0.0036238388, + "22251": 0.0036823436, + "22252": 0.0037409171, + "22253": 0.0037995573, + "22254": 0.00385826, + "22255": 0.003917021, + "22256": 0.0039758407, + "22257": 0.0040347255, + "22258": 0.004093687, + "22259": 0.0041527417, + "22260": 0.0042119113, + "22261": 0.0042712223, + "22262": 0.0043307056, + "22263": 0.0043903919, + "22264": 0.0044502995, + "22265": 0.00451044, + "22266": 0.0045708304, + "22267": 0.0046314965, + "22268": 0.0046924713, + "22269": 0.0047537955, + "22270": 0.0048155157, + "22271": 0.0048776852, + "22272": 0.0049403626, + "22273": 0.0050036106, + "22274": 0.0050674906, + "22275": 0.0051320635, + "22276": 0.005197395, + "22277": 0.0052635567, + "22278": 0.0053306254, + "22279": 0.0053986829, + "22280": 0.0054678151, + "22281": 0.005538112, + "22282": 0.0056096673, + "22283": 0.0056825746, + "22284": 0.0057569046, + "22285": 0.0058327078, + "22286": 0.0059100375, + "22287": 0.0059889564, + "22288": 0.0060695344, + "22289": 0.0061518476, + "22290": 0.0062359776, + "22291": 0.0063220103, + "22292": 0.0064100361, + "22293": 0.0065001479, + "22294": 0.0065924301, + "22295": 0.0066869581, + "22296": 0.0067838094, + "22297": 0.0068830664, + "22298": 0.0069848153, + "22299": 0.0070891455, + "22300": 0.007196149, + "22301": 0.0073059201, + "22302": 0.0074185545, + "22303": 0.0075341493, + "22304": 0.0076530968, + "22305": 0.0077760958, + "22306": 0.007903852, + "22307": 0.0080369869, + "22308": 0.0081761317, + "22309": 0.0083218496, + "22310": 0.0084746525, + "22311": 0.0086350138, + "22312": 0.0088033762, + "22313": 0.0089801299, + "22314": 0.009165688, + "22315": 0.0093604792, + "22316": 0.0095649218, + "22317": 0.0097793858, + "22318": 0.0100042115, + "22319": 0.0102396965, + "22320": 0.010486114, + "22321": 0.0107436991, + "22322": 0.0110126664, + "22323": 0.0112931963, + "22324": 0.0115855464, + "22325": 0.0118900659, + "22326": 0.0122071179, + "22327": 0.0125370092, + "22328": 0.0128800003, + "22329": 0.0132362987, + "22330": 0.0136060752, + "22331": 0.0139894558, + "22332": 0.0143865358, + "22333": 0.0147973722, + "22334": 0.0152220251, + "22335": 0.0156605639, + "22336": 0.0161130502, + "22337": 0.0165795083, + "22338": 0.0170599329, + "22339": 0.0175542836, + "22340": 0.0180624964, + "22341": 0.0185844776, + "22342": 0.0191201136, + "22343": 0.0196692658, + "22344": 0.0202317722, + "22345": 0.0208074381, + "22346": 0.02139605, + "22347": 0.0219973785, + "22348": 0.0226111862, + "22349": 0.0232372229, + "22350": 0.0238752318, + "22351": 0.0245249455, + "22352": 0.0251860913, + "22353": 0.0258583879, + "22354": 0.026541547, + "22355": 0.0272352673, + "22356": 0.027939242, + "22357": 0.02865316, + "22358": 0.0293767109, + "22359": 0.0301095823, + "22360": 0.0308514631, + "22361": 0.0316020418, + "22362": 0.032361009, + "22363": 0.0331280559, + "22364": 0.0339028353, + "22365": 0.0346848964, + "22366": 0.0354737299, + "22367": 0.0362688413, + "22368": 0.03706977, + "22369": 0.0378760828, + "22370": 0.038687373, + "22371": 0.0395032563, + "22372": 0.0403233708, + "22373": 0.0411473737, + "22374": 0.0419749216, + "22375": 0.0428056246, + "22376": 0.0436390656, + "22377": 0.0444748477, + "22378": 0.0453126066, + "22379": 0.0461520059, + "22380": 0.0469927346, + "22381": 0.0478345052, + "22382": 0.0486770516, + "22383": 0.0495201275, + "22384": 0.0503634827, + "22385": 0.0512067788, + "22386": 0.0520496129, + "22387": 0.0528916022, + "22388": 0.0537324081, + "22389": 0.054571728, + "22390": 0.0554092927, + "22391": 0.0562448618, + "22392": 0.0570782216, + "22393": 0.0579091817, + "22394": 0.0587375647, + "22395": 0.0595631429, + "22396": 0.0603856464, + "22397": 0.0612048225, + "22398": 0.0620204529, + "22399": 0.0628323474, + "22400": 0.0636403412, + "22401": 0.0644442913, + "22402": 0.0652440745, + "22403": 0.0660395847, + "22404": 0.0668307294, + "22405": 0.067617376, + "22406": 0.0683993531, + "22407": 0.0691764982, + "22408": 0.0699486741, + "22409": 0.0707157644, + "22410": 0.0714776706, + "22411": 0.0722343087, + "22412": 0.0729856079, + "22413": 0.0737315079, + "22414": 0.0744719583, + "22415": 0.0752068814, + "22416": 0.07593617, + "22417": 0.0766597199, + "22418": 0.077377442, + "22419": 0.0780892598, + "22420": 0.0787951073, + "22421": 0.0794949274, + "22422": 0.0801886712, + "22423": 0.0808762953, + "22424": 0.0815577611, + "22425": 0.0822330195, + "22426": 0.082902009, + "22427": 0.0835646677, + "22428": 0.0842209401, + "22429": 0.0848707761, + "22430": 0.0855141302, + "22431": 0.0861509608, + "22432": 0.0867812293, + "22433": 0.0874049, + "22434": 0.0880219394, + "22435": 0.0886322903, + "22436": 0.0892358642, + "22437": 0.0898325657, + "22438": 0.0904223086, + "22439": 0.0910050159, + "22440": 0.0915806185, + "22441": 0.0921490532, + "22442": 0.0927102595, + "22443": 0.0932641777, + "22444": 0.0938107484, + "22445": 0.0943499232, + "22446": 0.0948816687, + "22447": 0.0954059587, + "22448": 0.0959227668, + "22449": 0.0964320659, + "22450": 0.0969338296, + "22451": 0.097428032, + "22452": 0.0979146489, + "22453": 0.0983936577, + "22454": 0.0988650381, + "22455": 0.0993287688, + "22456": 0.0997848254, + "22457": 0.1002331836, + "22458": 0.1006738237, + "22459": 0.1011067301, + "22460": 0.101531892, + "22461": 0.1019493031, + "22462": 0.1023589612, + "22463": 0.1027608684, + "22464": 0.1031550307, + "22465": 0.1035414595, + "22466": 0.1039201725, + "22467": 0.1042911924, + "22468": 0.1046545451, + "22469": 0.1050102595, + "22470": 0.1053583673, + "22471": 0.1056989029, + "22472": 0.1060319034, + "22473": 0.1063574088, + "22474": 0.1066754616, + "22475": 0.1069861076, + "22476": 0.1072893976, + "22477": 0.107585386, + "22478": 0.1078741292, + "22479": 0.1081556849, + "22480": 0.1084301125, + "22481": 0.1086974728, + "22482": 0.1089578279, + "22483": 0.109211241, + "22484": 0.1094577765, + "22485": 0.1096975052, + "22486": 0.109930515, + "22487": 0.1101569065, + "22488": 0.1103767792, + "22489": 0.1105902285, + "22490": 0.1107973461, + "22491": 0.1109982207, + "22492": 0.1111929383, + "22493": 0.1113815817, + "22494": 0.1115642317, + "22495": 0.1117409698, + "22496": 0.1119118919, + "22497": 0.1120771041, + "22498": 0.1122367098, + "22499": 0.1123908048, + "22500": 0.1125394795, + "22501": 0.1126828184, + "22502": 0.1128209011, + "22503": 0.1129538023, + "22504": 0.1130815927, + "22505": 0.1132043407, + "22506": 0.1133221314, + "22507": 0.1134350636, + "22508": 0.1135432318, + "22509": 0.1136467214, + "22510": 0.1137456102, + "22511": 0.1138399688, + "22512": 0.1139298616, + "22513": 0.1140153475, + "22514": 0.1140964799, + "22515": 0.1141733086, + "22516": 0.1142459003, + "22517": 0.1143143381, + "22518": 0.1143787018, + "22519": 0.114439062, + "22520": 0.1144954817, + "22521": 0.1145480175, + "22522": 0.1145967203, + "22523": 0.1146416363, + "22524": 0.1146828072, + "22525": 0.1147202716, + "22526": 0.114754079, + "22527": 0.1147842912, + "22528": 0.1148109692, + "22529": 0.1148341681, + "22530": 0.1148539387, + "22531": 0.1148703276, + "22532": 0.1148833788, + "22533": 0.1148931336, + "22534": 0.1148996314, + "22535": 0.1149029105, + "22536": 0.1149030221, + "22537": 0.1149000327, + "22538": 0.1148940115, + "22539": 0.1148850235, + "22540": 0.1148731301, + "22541": 0.1148583901, + "22542": 0.11484086, + "22543": 0.1148205946, + "22544": 0.1147976476, + "22545": 0.1147720718, + "22546": 0.114743922, + "22547": 0.1147132553, + "22548": 0.11468013, + "22549": 0.1146446033, + "22550": 0.114606732, + "22551": 0.1145665724, + "22552": 0.1145241804, + "22553": 0.1144796116, + "22554": 0.1144329214, + "22555": 0.1143841648, + "22556": 0.1143334165, + "22557": 0.1142807792, + "22558": 0.1142263654, + "22559": 0.1141702809, + "22560": 0.1141126234, + "22561": 0.1140534835, + "22562": 0.1139929453, + "22563": 0.113931087, + "22564": 0.1138679814, + "22565": 0.1138036961, + "22566": 0.1137383018, + "22567": 0.113671878, + "22568": 0.1136045055, + "22569": 0.1135362585, + "22570": 0.1134672038, + "22571": 0.1133974009, + "22572": 0.1133269031, + "22573": 0.1132557575, + "22574": 0.1131840053, + "22575": 0.1131116824, + "22576": 0.1130388283, + "22577": 0.1129654953, + "22578": 0.1128917337, + "22579": 0.1128175756, + "22580": 0.1127430383, + "22581": 0.1126681326, + "22582": 0.1125928648, + "22583": 0.112517237, + "22584": 0.1124412479, + "22585": 0.1123648924, + "22586": 0.1122881637, + "22587": 0.1122110553, + "22588": 0.11213356, + "22589": 0.1120556678, + "22590": 0.1119773657, + "22591": 0.1118986376, + "22592": 0.1118194654, + "22593": 0.1117398288, + "22594": 0.1116597057, + "22595": 0.1115790729, + "22596": 0.1114979072, + "22597": 0.1114161891, + "22598": 0.1113339019, + "22599": 0.1112510282, + "22600": 0.1111675491, + "22601": 0.1110834456, + "22602": 0.110998698, + "22603": 0.1109132868, + "22604": 0.110827193, + "22605": 0.1107403981, + "22606": 0.1106528844, + "22607": 0.110564633, + "22608": 0.110475625, + "22609": 0.1103858431, + "22610": 0.1102952729, + "22611": 0.1102039024, + "22612": 0.1101117225, + "22613": 0.1100187269, + "22614": 0.109924912, + "22615": 0.1098302774, + "22616": 0.1097348252, + "22617": 0.1096385564, + "22618": 0.1095414719, + "22619": 0.1094435757, + "22620": 0.1093448757, + "22621": 0.1092453841, + "22622": 0.1091451165, + "22623": 0.1090440921, + "22624": 0.1089423336, + "22625": 0.1088398669, + "22626": 0.1087367209, + "22627": 0.1086329315, + "22628": 0.1085285413, + "22629": 0.1084235951, + "22630": 0.108318139, + "22631": 0.1082122201, + "22632": 0.1081058864, + "22633": 0.107999187, + "22634": 0.1078921718, + "22635": 0.1077848913, + "22636": 0.1076773965, + "22637": 0.1075697455, + "22638": 0.1074620044, + "22639": 0.1073542395, + "22640": 0.1072465147, + "22641": 0.1071388914, + "22642": 0.1070314289, + "22643": 0.1069241842, + "22644": 0.1068172115, + "22645": 0.1067105631, + "22646": 0.1066042883, + "22647": 0.1064984412, + "22648": 0.1063930814, + "22649": 0.1062882668, + "22650": 0.1061840504, + "22651": 0.1060804799, + "22652": 0.105977598, + "22653": 0.1058754423, + "22654": 0.1057740459, + "22655": 0.105673437, + "22656": 0.1055736394, + "22657": 0.1054746819, + "22658": 0.1053766021, + "22659": 0.1052794362, + "22660": 0.1051832128, + "22661": 0.1050879531, + "22662": 0.1049936712, + "22663": 0.1049003743, + "22664": 0.1048080638, + "22665": 0.1047167348, + "22666": 0.1046263772, + "22667": 0.1045369779, + "22668": 0.1044485224, + "22669": 0.1043609926, + "22670": 0.1042743659, + "22671": 0.1041886145, + "22672": 0.1041037066, + "22673": 0.1040196066, + "22674": 0.103936275, + "22675": 0.1038536696, + "22676": 0.1037717451, + "22677": 0.1036904535, + "22678": 0.1036097444, + "22679": 0.103529565, + "22680": 0.1034498617, + "22681": 0.1033705795, + "22682": 0.1032916633, + "22683": 0.1032130575, + "22684": 0.1031347063, + "22685": 0.1030565545, + "22686": 0.1029785474, + "22687": 0.1029006273, + "22688": 0.1028227307, + "22689": 0.102744792, + "22690": 0.1026667479, + "22691": 0.1025885388, + "22692": 0.1025101088, + "22693": 0.1024314056, + "22694": 0.1023523804, + "22695": 0.1022729879, + "22696": 0.1021931864, + "22697": 0.1021129316, + "22698": 0.1020321663, + "22699": 0.1019508272, + "22700": 0.1018688567, + "22701": 0.101786205, + "22702": 0.1017028297, + "22703": 0.1016186951, + "22704": 0.1015337738, + "22705": 0.101448064, + "22706": 0.1013615796, + "22707": 0.1012743378, + "22708": 0.1011863561, + "22709": 0.101097653, + "22710": 0.1010082515, + "22711": 0.1009181786, + "22712": 0.100827466, + "22713": 0.100736149, + "22714": 0.1006442663, + "22715": 0.1005518598, + "22716": 0.1004589744, + "22717": 0.1003656555, + "22718": 0.1002719417, + "22719": 0.1001778668, + "22720": 0.1000834666, + "22721": 0.099988781, + "22722": 0.0998938532, + "22723": 0.0997987287, + "22724": 0.0997034555, + "22725": 0.0996080831, + "22726": 0.0995126623, + "22727": 0.099417245, + "22728": 0.0993218856, + "22729": 0.0992266402, + "22730": 0.0991315649, + "22731": 0.0990367143, + "22732": 0.0989421419, + "22733": 0.0988478996, + "22734": 0.0987540375, + "22735": 0.0986606033, + "22736": 0.098567642, + "22737": 0.0984751957, + "22738": 0.0983833104, + "22739": 0.0982920351, + "22740": 0.0982014155, + "22741": 0.0981114919, + "22742": 0.0980222994, + "22743": 0.0979338682, + "22744": 0.0978462238, + "22745": 0.0977593868, + "22746": 0.0976733736, + "22747": 0.0975881959, + "22748": 0.0975038611, + "22749": 0.0974203716, + "22750": 0.0973377263, + "22751": 0.0972559202, + "22752": 0.0971749449, + "22753": 0.0970947888, + "22754": 0.0970154369, + "22755": 0.0969368715, + "22756": 0.096859072, + "22757": 0.0967820152, + "22758": 0.0967056732, + "22759": 0.0966300129, + "22760": 0.0965549989, + "22761": 0.0964805947, + "22762": 0.0964067629, + "22763": 0.0963334656, + "22764": 0.0962606642, + "22765": 0.0961883196, + "22766": 0.0961163924, + "22767": 0.0960448432, + "22768": 0.0959736251, + "22769": 0.0959026823, + "22770": 0.0958319569, + "22771": 0.0957613935, + "22772": 0.0956909397, + "22773": 0.095620546, + "22774": 0.0955501654, + "22775": 0.0954797532, + "22776": 0.0954092676, + "22777": 0.0953386687, + "22778": 0.0952679142, + "22779": 0.0951969565, + "22780": 0.0951257479, + "22781": 0.0950542442, + "22782": 0.0949824055, + "22783": 0.0949101958, + "22784": 0.0948375825, + "22785": 0.0947645363, + "22786": 0.0946910313, + "22787": 0.0946170446, + "22788": 0.0945425555, + "22789": 0.0944675455, + "22790": 0.0943919981, + "22791": 0.0943158998, + "22792": 0.0942392391, + "22793": 0.0941620073, + "22794": 0.0940841977, + "22795": 0.0940058057, + "22796": 0.0939268286, + "22797": 0.0938472655, + "22798": 0.0937671155, + "22799": 0.0936863766, + "22800": 0.0936050461, + "22801": 0.093523123, + "22802": 0.0934406083, + "22803": 0.0933575041, + "22804": 0.093273814, + "22805": 0.0931895423, + "22806": 0.0931046942, + "22807": 0.0930192751, + "22808": 0.0929332918, + "22809": 0.0928467529, + "22810": 0.0927596687, + "22811": 0.0926720481, + "22812": 0.0925838991, + "22813": 0.0924952282, + "22814": 0.0924060401, + "22815": 0.0923163381, + "22816": 0.0922261235, + "22817": 0.0921353955, + "22818": 0.0920441544, + "22819": 0.0919524087, + "22820": 0.0918601715, + "22821": 0.0917674525, + "22822": 0.091674256, + "22823": 0.0915805816, + "22824": 0.091486424, + "22825": 0.0913917735, + "22826": 0.0912966164, + "22827": 0.0912009347, + "22828": 0.0911047072, + "22829": 0.0910079101, + "22830": 0.0909105171, + "22831": 0.0908124987, + "22832": 0.0907138223, + "22833": 0.0906144523, + "22834": 0.0905143507, + "22835": 0.0904134768, + "22836": 0.0903117883, + "22837": 0.0902092409, + "22838": 0.0901057895, + "22839": 0.090001392, + "22840": 0.0898960088, + "22841": 0.0897895999, + "22842": 0.089682124, + "22843": 0.0895735395, + "22844": 0.0894638045, + "22845": 0.0893528776, + "22846": 0.0892407182, + "22847": 0.0891272868, + "22848": 0.0890125456, + "22849": 0.0888964589, + "22850": 0.0887789931, + "22851": 0.0886601177, + "22852": 0.0885398048, + "22853": 0.0884180297, + "22854": 0.0882947712, + "22855": 0.0881700114, + "22856": 0.0880437366, + "22857": 0.0879159368, + "22858": 0.0877866062, + "22859": 0.0876557426, + "22860": 0.0875233473, + "22861": 0.0873894263, + "22862": 0.0872539894, + "22863": 0.0871170511, + "22864": 0.08697863, + "22865": 0.0868387487, + "22866": 0.0866974339, + "22867": 0.0865547161, + "22868": 0.0864106292, + "22869": 0.0862652122, + "22870": 0.0861185093, + "22871": 0.0859705677, + "22872": 0.0858214366, + "22873": 0.0856711671, + "22874": 0.0855198118, + "22875": 0.0853674245, + "22876": 0.0852140601, + "22877": 0.085059774, + "22878": 0.084904622, + "22879": 0.0847486677, + "22880": 0.0845919848, + "22881": 0.0844346486, + "22882": 0.0842767312, + "22883": 0.0841183007, + "22884": 0.0839594212, + "22885": 0.083800153, + "22886": 0.0836405524, + "22887": 0.0834806715, + "22888": 0.0833205584, + "22889": 0.0831602613, + "22890": 0.0829998313, + "22891": 0.0828393171, + "22892": 0.0826787616, + "22893": 0.082518201, + "22894": 0.0823576652, + "22895": 0.0821971782, + "22896": 0.0820367577, + "22897": 0.0818764158, + "22898": 0.0817161587, + "22899": 0.0815559959, + "22900": 0.0813959458, + "22901": 0.0812360199, + "22902": 0.0810761982, + "22903": 0.0809164292, + "22904": 0.0807566484, + "22905": 0.0805967896, + "22906": 0.0804367859, + "22907": 0.0802765697, + "22908": 0.0801160729, + "22909": 0.0799552258, + "22910": 0.0797939563, + "22911": 0.0796321914, + "22912": 0.0794698587, + "22913": 0.0793068871, + "22914": 0.0791432075, + "22915": 0.0789787523, + "22916": 0.0788134568, + "22917": 0.0786472591, + "22918": 0.0784801007, + "22919": 0.0783119167, + "22920": 0.0781426158, + "22921": 0.077972085, + "22922": 0.0778002117, + "22923": 0.0776268937, + "22924": 0.0774520415, + "22925": 0.0772755777, + "22926": 0.0770974371, + "22927": 0.0769175662, + "22928": 0.0767359233, + "22929": 0.0765524781, + "22930": 0.0763672118, + "22931": 0.0761801171, + "22932": 0.0759911977, + "22933": 0.0758004683, + "22934": 0.0756079549, + "22935": 0.0754136939, + "22936": 0.0752177323, + "22937": 0.0750201272, + "22938": 0.0748209456, + "22939": 0.0746202662, + "22940": 0.0744181874, + "22941": 0.0742148242, + "22942": 0.0740102988, + "22943": 0.0738047381, + "22944": 0.0735982734, + "22945": 0.0733910399, + "22946": 0.0731831766, + "22947": 0.0729748253, + "22948": 0.0727661305, + "22949": 0.0725572387, + "22950": 0.0723483008, + "22951": 0.0721394711, + "22952": 0.0719309031, + "22953": 0.0717227483, + "22954": 0.0715151548, + "22955": 0.0713082675, + "22956": 0.0711022265, + "22957": 0.0708971667, + "22958": 0.0706932169, + "22959": 0.0704905007, + "22960": 0.0702892004, + "22961": 0.0700895523, + "22962": 0.0698917828, + "22963": 0.0696960888, + "22964": 0.0695026403, + "22965": 0.0693115826, + "22966": 0.0691230364, + "22967": 0.0689370993, + "22968": 0.0687538455, + "22969": 0.0685733275, + "22970": 0.0683955792, + "22971": 0.0682206173, + "22972": 0.0680484371, + "22973": 0.0678790116, + "22974": 0.067712291, + "22975": 0.0675482038, + "22976": 0.0673866564, + "22977": 0.0672275336, + "22978": 0.0670706981, + "22979": 0.0669159914, + "22980": 0.0667632247, + "22981": 0.0666121779, + "22982": 0.0664626082, + "22983": 0.0663142544, + "22984": 0.066166837, + "22985": 0.0660200584, + "22986": 0.0658736022, + "22987": 0.0657271344, + "22988": 0.0655803024, + "22989": 0.0654327366, + "22990": 0.0652840505, + "22991": 0.0651338422, + "22992": 0.0649816941, + "22993": 0.0648271723, + "22994": 0.064669828, + "22995": 0.0645091981, + "22996": 0.0643448061, + "22997": 0.0641761634, + "22998": 0.0640027699, + "22999": 0.0638241158, + "23000": 0.0613306619, + "23001": 0.0611594456, + "23002": 0.060979317, + "23003": 0.0607891886, + "23004": 0.060588015, + "23005": 0.0603748082, + "23006": 0.0601486298, + "23007": 0.0599085919, + "23008": 0.059653861, + "23009": 0.0593836618, + "23010": 0.059097275, + "23011": 0.0587940348, + "23012": 0.0584733265, + "23013": 0.0581345854, + "23014": 0.0577772961, + "23015": 0.0574009923, + "23016": 0.0570052573, + "23017": 0.0565897247, + "23018": 0.0561540789, + "23019": 0.0556980569, + "23020": 0.0552214487, + "23021": 0.0547242561, + "23022": 0.0542068569, + "23023": 0.0536698481, + "23024": 0.0531138384, + "23025": 0.0525394074, + "23026": 0.0519471223, + "23027": 0.0513375469, + "23028": 0.0507112497, + "23029": 0.0500688106, + "23030": 0.0494108264, + "23031": 0.0487379204, + "23032": 0.0480507534, + "23033": 0.0473500214, + "23034": 0.0466364482, + "23035": 0.0459107846, + "23036": 0.045173809, + "23037": 0.0444263281, + "23038": 0.0436691758, + "23039": 0.042903212, + "23040": 0.0421293213, + "23041": 0.0413485801, + "23042": 0.0405626376, + "23043": 0.0397735383, + "23044": 0.0389832926, + "23045": 0.0381937648, + "23046": 0.0374067009, + "23047": 0.0366237401, + "23048": 0.0358464255, + "23049": 0.0350762121, + "23050": 0.0343144736, + "23051": 0.0335625177, + "23052": 0.0328216251, + "23053": 0.0320930428, + "23054": 0.0313779501, + "23055": 0.0306774506, + "23056": 0.0299925765, + "23057": 0.0293242906, + "23058": 0.0286734889, + "23059": 0.0280410019, + "23060": 0.0274275961, + "23061": 0.0268340221, + "23062": 0.0262613538, + "23063": 0.0257109338, + "23064": 0.0251840331, + "23065": 0.0246817515, + "23066": 0.024205042, + "23067": 0.023754724, + "23068": 0.0233314936, + "23069": 0.0229359341, + "23070": 0.0225685248, + "23071": 0.022229651, + "23072": 0.0219196569, + "23073": 0.0216388499, + "23074": 0.0213874625, + "23075": 0.0211656444, + "23076": 0.0209734707, + "23077": 0.0208109491, + "23078": 0.0206780256, + "23079": 0.0205745902, + "23080": 0.0205004822, + "23081": 0.0204554955, + "23082": 0.0204390083, + "23083": 0.0204499752, + "23084": 0.0204872928, + "23085": 0.020549941, + "23086": 0.0206369701, + "23087": 0.0207474909, + "23088": 0.020880668, + "23089": 0.0210357136, + "23090": 0.0212118824, + "23091": 0.0214084674, + "23092": 0.0216247396, + "23093": 0.0218599367, + "23094": 0.0221133156, + "23095": 0.0223841772, + "23096": 0.0226718641, + "23097": 0.022975757, + "23098": 0.0232952717, + "23099": 0.0236298568, + "23100": 0.0239789915, + "23101": 0.0243421838, + "23102": 0.0247186191, + "23103": 0.025107058, + "23104": 0.0255061751, + "23105": 0.0259147729, + "23106": 0.0263317926, + "23107": 0.0267562946, + "23108": 0.0271874463, + "23109": 0.0276245101, + "23110": 0.0280668335, + "23111": 0.0285138397, + "23112": 0.0289649341, + "23113": 0.0294194385, + "23114": 0.029876677, + "23115": 0.0303360492, + "23116": 0.0307970326, + "23117": 0.0312591727, + "23118": 0.0317220761, + "23119": 0.0321854035, + "23120": 0.0326488644, + "23121": 0.0331122113, + "23122": 0.0335751541, + "23123": 0.0340372979, + "23124": 0.03449822, + "23125": 0.0349575493, + "23126": 0.0354149766, + "23127": 0.0358702454, + "23128": 0.0363231455, + "23129": 0.0367735072, + "23130": 0.0372211969, + "23131": 0.037666112, + "23132": 0.038108167, + "23133": 0.0385472795, + "23134": 0.0389833773, + "23135": 0.0394164087, + "23136": 0.0398463428, + "23137": 0.0402731661, + "23138": 0.0406968802, + "23139": 0.0411174988, + "23140": 0.0415350465, + "23141": 0.0419495562, + "23142": 0.0423610848, + "23143": 0.0427697371, + "23144": 0.0431756476, + "23145": 0.0435789485, + "23146": 0.0439797627, + "23147": 0.0443782041, + "23148": 0.0447743788, + "23149": 0.0451683852, + "23150": 0.0455603143, + "23151": 0.0459502499, + "23152": 0.0463382716, + "23153": 0.0467244608, + "23154": 0.0471088984, + "23155": 0.0474916583, + "23156": 0.0478728064, + "23157": 0.0482524011, + "23158": 0.0486304938, + "23159": 0.0490071295, + "23160": 0.0493823468, + "23161": 0.0497561791, + "23162": 0.05012866, + "23163": 0.0504998465, + "23164": 0.0508698126, + "23165": 0.0512386265, + "23166": 0.0516063446, + "23167": 0.0519730134, + "23168": 0.0523386711, + "23169": 0.0527033479, + "23170": 0.0530670679, + "23171": 0.0534298491, + "23172": 0.0537917057, + "23173": 0.0541526544, + "23174": 0.0545127142, + "23175": 0.0548719011, + "23176": 0.055230227, + "23177": 0.0555877004, + "23178": 0.0559443275, + "23179": 0.0563001124, + "23180": 0.0566550579, + "23181": 0.057009166, + "23182": 0.0573624381, + "23183": 0.0577148755, + "23184": 0.0580664796, + "23185": 0.0584172522, + "23186": 0.0587671965, + "23187": 0.0591163164, + "23188": 0.0594646177, + "23189": 0.0598121073, + "23190": 0.0601587939, + "23191": 0.060504688, + "23192": 0.0608498016, + "23193": 0.0611941487, + "23194": 0.0615377444, + "23195": 0.0618806059, + "23196": 0.062222752, + "23197": 0.0625642031, + "23198": 0.062904981, + "23199": 0.0632451091, + "23200": 0.0635846118, + "23201": 0.0639235149, + "23202": 0.0642618449, + "23203": 0.0645996186, + "23204": 0.0649368413, + "23205": 0.0652735169, + "23206": 0.0656096525, + "23207": 0.0659452583, + "23208": 0.0662803469, + "23209": 0.0666149327, + "23210": 0.0669490317, + "23211": 0.0672826607, + "23212": 0.0676158371, + "23213": 0.0679485778, + "23214": 0.0682808981, + "23215": 0.0686128128, + "23216": 0.0689443363, + "23217": 0.0692754826, + "23218": 0.0696062648, + "23219": 0.0699366949, + "23220": 0.0702667841, + "23221": 0.0705965421, + "23222": 0.070925977, + "23223": 0.0712550734, + "23224": 0.0715837814, + "23225": 0.0719120385, + "23226": 0.0722397873, + "23227": 0.0725669774, + "23228": 0.0728935638, + "23229": 0.0732195064, + "23230": 0.073544769, + "23231": 0.0738693186, + "23232": 0.0741931255, + "23233": 0.0745161568, + "23234": 0.0748383737, + "23235": 0.0751597351, + "23236": 0.0754802033, + "23237": 0.0757997439, + "23238": 0.076118326, + "23239": 0.0764359212, + "23240": 0.0767525037, + "23241": 0.0770680502, + "23242": 0.0773825395, + "23243": 0.0776959364, + "23244": 0.0780081747, + "23245": 0.0783191735, + "23246": 0.0786288585, + "23247": 0.0789371666, + "23248": 0.0792440438, + "23249": 0.0795494446, + "23250": 0.0798533315, + "23251": 0.0801556738, + "23252": 0.0804564472, + "23253": 0.0807556291, + "23254": 0.0810531914, + "23255": 0.0813491044, + "23256": 0.0816433447, + "23257": 0.0819358965, + "23258": 0.0822267513, + "23259": 0.0825159067, + "23260": 0.0828033666, + "23261": 0.0830891403, + "23262": 0.0833732422, + "23263": 0.0836556813, + "23264": 0.083936437, + "23265": 0.0842154695, + "23266": 0.0844927461, + "23267": 0.0847682477, + "23268": 0.0850419662, + "23269": 0.0853139039, + "23270": 0.085584072, + "23271": 0.08585249, + "23272": 0.0861191844, + "23273": 0.0863841851, + "23274": 0.0866475147, + "23275": 0.08690919, + "23276": 0.0871692333, + "23277": 0.0874276747, + "23278": 0.0876845505, + "23279": 0.0879399028, + "23280": 0.0881937784, + "23281": 0.0884462282, + "23282": 0.0886973065, + "23283": 0.0889470623, + "23284": 0.0891954774, + "23285": 0.0894424765, + "23286": 0.0896879878, + "23287": 0.0899319605, + "23288": 0.0901743608, + "23289": 0.0904151689, + "23290": 0.0906543771, + "23291": 0.0908919884, + "23292": 0.091128014, + "23293": 0.0913624718, + "23294": 0.0915953546, + "23295": 0.0918266304, + "23296": 0.0920562717, + "23297": 0.0922842633, + "23298": 0.0925105997, + "23299": 0.0927352836, + "23300": 0.0929583247, + "23301": 0.093179738, + "23302": 0.0933995433, + "23303": 0.0936177642, + "23304": 0.093834463, + "23305": 0.0940497413, + "23306": 0.0942637052, + "23307": 0.0944764509, + "23308": 0.0946880663, + "23309": 0.094898632, + "23310": 0.0951082216, + "23311": 0.0953169026, + "23312": 0.0955247367, + "23313": 0.0957317806, + "23314": 0.0959381037, + "23315": 0.0961437911, + "23316": 0.0963489269, + "23317": 0.0965535864, + "23318": 0.0967578362, + "23319": 0.0969617353, + "23320": 0.0971653359, + "23321": 0.0973687446, + "23322": 0.0975721858, + "23323": 0.0977759767, + "23324": 0.0979804772, + "23325": 0.0981860649, + "23326": 0.0983930905, + "23327": 0.0986018594, + "23328": 0.0988126301, + "23329": 0.0990256227, + "23330": 0.0992410195, + "23331": 0.0994589715, + "23332": 0.0996795988, + "23333": 0.0999029962, + "23334": 0.1001292644, + "23335": 0.1003585299, + "23336": 0.1005909136, + "23337": 0.1008265093, + "23338": 0.1010653809, + "23339": 0.1013075673, + "23340": 0.1015530837, + "23341": 0.1018019251, + "23342": 0.102054067, + "23343": 0.1023094689, + "23344": 0.102568083, + "23345": 0.1028298632, + "23346": 0.1030947567, + "23347": 0.1033626978, + "23348": 0.1036336067, + "23349": 0.1039073922, + "23350": 0.1041839522, + "23351": 0.1044631758, + "23352": 0.1047449437, + "23353": 0.1050291301, + "23354": 0.1053156068, + "23355": 0.1056042491, + "23356": 0.1058949313, + "23357": 0.1061875243, + "23358": 0.1064818934, + "23359": 0.1067779009, + "23360": 0.1070754062, + "23361": 0.1073742667, + "23362": 0.1076743386, + "23363": 0.1079754778, + "23364": 0.1082775264, + "23365": 0.1085802934, + "23366": 0.1088835683, + "23367": 0.1091871466, + "23368": 0.1094908351, + "23369": 0.1097944511, + "23370": 0.1100978213, + "23371": 0.1104007817, + "23372": 0.1107031767, + "23373": 0.1110048593, + "23374": 0.1113056839, + "23375": 0.1116054919, + "23376": 0.1119041178, + "23377": 0.1122014054, + "23378": 0.1124972109, + "23379": 0.1127914024, + "23380": 0.1130838584, + "23381": 0.1133744675, + "23382": 0.1136631277, + "23383": 0.1139497459, + "23384": 0.1142342293, + "23385": 0.1145164554, + "23386": 0.1147962803, + "23387": 0.1150735695, + "23388": 0.1153482057, + "23389": 0.1156200866, + "23390": 0.1158891232, + "23391": 0.1161552391, + "23392": 0.1164183683, + "23393": 0.1166784554, + "23394": 0.1169354505, + "23395": 0.1171892874, + "23396": 0.117439886, + "23397": 0.1176871735, + "23398": 0.1179310906, + "23399": 0.1181715892, + "23400": 0.1184086312, + "23401": 0.1186421871, + "23402": 0.1188722354, + "23403": 0.1190987611, + "23404": 0.119321755, + "23405": 0.1195411984, + "23406": 0.1197570636, + "23407": 0.1199693265, + "23408": 0.1201779709, + "23409": 0.1203829868, + "23410": 0.1205843694, + "23411": 0.1207821186, + "23412": 0.120976238, + "23413": 0.1211667342, + "23414": 0.1213536168, + "23415": 0.1215368877, + "23416": 0.1217165409, + "23417": 0.1218925712, + "23418": 0.1220649768, + "23419": 0.1222337588, + "23420": 0.1223989208, + "23421": 0.1225604682, + "23422": 0.1227184057, + "23423": 0.1228727329, + "23424": 0.1230234416, + "23425": 0.1231705159, + "23426": 0.1233139336, + "23427": 0.1234536689, + "23428": 0.1235896935, + "23429": 0.123721978, + "23430": 0.1238504926, + "23431": 0.1239752076, + "23432": 0.1240960942, + "23433": 0.1242131247, + "23434": 0.124326273, + "23435": 0.1244355025, + "23436": 0.1245407629, + "23437": 0.1246420021, + "23438": 0.1247391738, + "23439": 0.1248322379, + "23440": 0.1249211601, + "23441": 0.1250059111, + "23442": 0.1250864666, + "23443": 0.1251628066, + "23444": 0.1252349152, + "23445": 0.125302794, + "23446": 0.125366469, + "23447": 0.1254259759, + "23448": 0.1254813493, + "23449": 0.1255326212, + "23450": 0.1255798213, + "23451": 0.1256229782, + "23452": 0.1256621188, + "23453": 0.1256972693, + "23454": 0.1257284552, + "23455": 0.1257557037, + "23456": 0.1257790461, + "23457": 0.1257985153, + "23458": 0.1258141434, + "23459": 0.125825962, + "23460": 0.1258340019, + "23461": 0.1258382937, + "23462": 0.1258388679, + "23463": 0.1258357552, + "23464": 0.1258289866, + "23465": 0.1258185974, + "23466": 0.125804632, + "23467": 0.1257871395, + "23468": 0.1257661687, + "23469": 0.1257417671, + "23470": 0.1257139811, + "23471": 0.1256828568, + "23472": 0.1256484398, + "23473": 0.1256107756, + "23474": 0.1255699098, + "23475": 0.1255258911, + "23476": 0.125478776, + "23477": 0.1254286259, + "23478": 0.1253755014, + "23479": 0.1253194622, + "23480": 0.1252605663, + "23481": 0.1251988712, + "23482": 0.1251344333, + "23483": 0.1250673087, + "23484": 0.1249975526, + "23485": 0.1249252239, + "23486": 0.1248503937, + "23487": 0.1247731412, + "23488": 0.1246935442, + "23489": 0.1246116762, + "23490": 0.1245276071, + "23491": 0.1244414038, + "23492": 0.1243531301, + "23493": 0.1242628468, + "23494": 0.1241706123, + "23495": 0.124076485, + "23496": 0.1239805335, + "23497": 0.1238828333, + "23498": 0.123783457, + "23499": 0.1236824713, + "23500": 0.1235799378, + "23501": 0.1234759131, + "23502": 0.1233704496, + "23503": 0.1232635953, + "23504": 0.1231553944, + "23505": 0.1230458889, + "23506": 0.1229351289, + "23507": 0.1228231713, + "23508": 0.1227100696, + "23509": 0.1225958708, + "23510": 0.1224806165, + "23511": 0.1223643432, + "23512": 0.1222470829, + "23513": 0.1221288633, + "23514": 0.1220097087, + "23515": 0.1218896401, + "23516": 0.1217686876, + "23517": 0.1216468902, + "23518": 0.1215242843, + "23519": 0.1214009005, + "23520": 0.1212767648, + "23521": 0.1211518989, + "23522": 0.1210263209, + "23523": 0.1209000459, + "23524": 0.1207730866, + "23525": 0.1206454531, + "23526": 0.12051716, + "23527": 0.1203882261, + "23528": 0.1202586697, + "23529": 0.1201285064, + "23530": 0.11999775, + "23531": 0.1198664129, + "23532": 0.1197345061, + "23533": 0.1196020401, + "23534": 0.1194690248, + "23535": 0.1193354699, + "23536": 0.1192013907, + "23537": 0.1190668091, + "23538": 0.1189317483, + "23539": 0.1187962307, + "23540": 0.1186602776, + "23541": 0.1185239102, + "23542": 0.1183871494, + "23543": 0.1182500159, + "23544": 0.118112531, + "23545": 0.117974716, + "23546": 0.117836591, + "23547": 0.1176981747, + "23548": 0.1175594854, + "23549": 0.1174205429, + "23550": 0.1172813681, + "23551": 0.1171419828, + "23552": 0.1170024099, + "23553": 0.1168626731, + "23554": 0.1167227971, + "23555": 0.1165828068, + "23556": 0.1164427361, + "23557": 0.1163026311, + "23558": 0.1161625422, + "23559": 0.1160225172, + "23560": 0.1158826008, + "23561": 0.1157428348, + "23562": 0.115603258, + "23563": 0.115463907, + "23564": 0.1153248155, + "23565": 0.1151860148, + "23566": 0.1150475363, + "23567": 0.1149094131, + "23568": 0.1147716776, + "23569": 0.1146343591, + "23570": 0.1144974833, + "23571": 0.1143610726, + "23572": 0.1142251461, + "23573": 0.1140897196, + "23574": 0.1139548059, + "23575": 0.1138204146, + "23576": 0.1136865552, + "23577": 0.1135532395, + "23578": 0.1134204795, + "23579": 0.1132882834, + "23580": 0.1131566554, + "23581": 0.1130255955, + "23582": 0.1128951002, + "23583": 0.1127651626, + "23584": 0.1126357726, + "23585": 0.1125069172, + "23586": 0.1123785803, + "23587": 0.112250743, + "23588": 0.1121233835, + "23589": 0.1119964782, + "23590": 0.1118700019, + "23591": 0.1117439278, + "23592": 0.1116182279, + "23593": 0.111492873, + "23594": 0.1113678333, + "23595": 0.1112430783, + "23596": 0.111118577, + "23597": 0.110994297, + "23598": 0.1108702058, + "23599": 0.1107462708, + "23600": 0.1106224606, + "23601": 0.1104987445, + "23602": 0.1103750932, + "23603": 0.1102514785, + "23604": 0.1101278739, + "23605": 0.1100042545, + "23606": 0.1098805965, + "23607": 0.1097568756, + "23608": 0.1096330672, + "23609": 0.1095091493, + "23610": 0.1093851032, + "23611": 0.1092609132, + "23612": 0.1091365668, + "23613": 0.1090120547, + "23614": 0.1088873708, + "23615": 0.1087625122, + "23616": 0.1086374786, + "23617": 0.1085122684, + "23618": 0.1083868793, + "23619": 0.1082613122, + "23620": 0.1081355723, + "23621": 0.1080096687, + "23622": 0.1078836146, + "23623": 0.1077574264, + "23624": 0.1076311239, + "23625": 0.1075047302, + "23626": 0.1073782712, + "23627": 0.1072517778, + "23628": 0.1071252853, + "23629": 0.1069988313, + "23630": 0.1068724548, + "23631": 0.1067461959, + "23632": 0.1066200961, + "23633": 0.1064941975, + "23634": 0.1063685431, + "23635": 0.1062431763, + "23636": 0.1061181407, + "23637": 0.1059934842, + "23638": 0.1058692584, + "23639": 0.105745515, + "23640": 0.1056223038, + "23641": 0.1054996725, + "23642": 0.1053776669, + "23643": 0.1052563308, + "23644": 0.1051357054, + "23645": 0.1050158297, + "23646": 0.1048967403, + "23647": 0.1047784749, + "23648": 0.1046610736, + "23649": 0.1045445743, + "23650": 0.1044290102, + "23651": 0.1043144103, + "23652": 0.1042007992, + "23653": 0.1040881971, + "23654": 0.1039766199, + "23655": 0.1038660792, + "23656": 0.1037565823, + "23657": 0.1036481363, + "23658": 0.1035407492, + "23659": 0.1034344262, + "23660": 0.1033291672, + "23661": 0.1032249669, + "23662": 0.1031218148, + "23663": 0.103019696, + "23664": 0.1029185907, + "23665": 0.1028184752, + "23666": 0.1027193215, + "23667": 0.1026211003, + "23668": 0.1025237818, + "23669": 0.1024273342, + "23670": 0.102331722, + "23671": 0.102236906, + "23672": 0.1021428437, + "23673": 0.1020494899, + "23674": 0.1019567967, + "23675": 0.101864714, + "23676": 0.1017731898, + "23677": 0.101682169, + "23678": 0.1015915924, + "23679": 0.1015013989, + "23680": 0.101411527, + "23681": 0.1013219157, + "23682": 0.1012325048, + "23683": 0.1011432345, + "23684": 0.1010540462, + "23685": 0.1009648825, + "23686": 0.1008756873, + "23687": 0.1007864034, + "23688": 0.1006969699, + "23689": 0.100607325, + "23690": 0.10051741, + "23691": 0.1004271698, + "23692": 0.100336553, + "23693": 0.1002455119, + "23694": 0.1001540025, + "23695": 0.1000619845, + "23696": 0.0999694212, + "23697": 0.0998762748, + "23698": 0.0997824987, + "23699": 0.0996880427, + "23700": 0.0995928617, + "23701": 0.0994969176, + "23702": 0.0994001792, + "23703": 0.099302621, + "23704": 0.0992042268, + "23705": 0.0991050172, + "23706": 0.0990050334, + "23707": 0.0989043188, + "23708": 0.0988029154, + "23709": 0.098700865, + "23710": 0.0985982124, + "23711": 0.0984950056, + "23712": 0.0983912953, + "23713": 0.0982871351, + "23714": 0.0981825811, + "23715": 0.0980776913, + "23716": 0.0979725256, + "23717": 0.0978671435, + "23718": 0.0977615973, + "23719": 0.0976559333, + "23720": 0.097550199, + "23721": 0.0974444452, + "23722": 0.0973387249, + "23723": 0.0972330927, + "23724": 0.0971276047, + "23725": 0.0970223178, + "23726": 0.0969172889, + "23727": 0.0968125754, + "23728": 0.0967082345, + "23729": 0.0966043228, + "23730": 0.0965008961, + "23731": 0.0963980085, + "23732": 0.096295712, + "23733": 0.096194057, + "23734": 0.0960930911, + "23735": 0.0959928594, + "23736": 0.0958934044, + "23737": 0.0957947656, + "23738": 0.0956969815, + "23739": 0.0956000899, + "23740": 0.095504125, + "23741": 0.0954091165, + "23742": 0.0953150904, + "23743": 0.0952220682, + "23744": 0.0951300673, + "23745": 0.095039101, + "23746": 0.0949491785, + "23747": 0.0948603049, + "23748": 0.0947724793, + "23749": 0.0946856947, + "23750": 0.0945999401, + "23751": 0.0945152015, + "23752": 0.0944314622, + "23753": 0.0943487022, + "23754": 0.094266899, + "23755": 0.0941860274, + "23756": 0.0941060595, + "23757": 0.0940269652, + "23758": 0.0939487055, + "23759": 0.0938712319, + "23760": 0.0937944928, + "23761": 0.0937184367, + "23762": 0.093643013, + "23763": 0.0935681708, + "23764": 0.0934938601, + "23765": 0.0934200309, + "23766": 0.0933466336, + "23767": 0.0932736194, + "23768": 0.09320093, + "23769": 0.0931284951, + "23770": 0.0930562421, + "23771": 0.0929841023, + "23772": 0.0929120111, + "23773": 0.0928399078, + "23774": 0.0927677353, + "23775": 0.0926954401, + "23776": 0.0926229716, + "23777": 0.0925502827, + "23778": 0.0924773253, + "23779": 0.0924040486, + "23780": 0.0923304029, + "23781": 0.0922563423, + "23782": 0.0921818254, + "23783": 0.0921068145, + "23784": 0.0920312757, + "23785": 0.0919551789, + "23786": 0.0918784972, + "23787": 0.0918012071, + "23788": 0.091723288, + "23789": 0.0916447219, + "23790": 0.0915654939, + "23791": 0.0914855916, + "23792": 0.0914050053, + "23793": 0.0913237278, + "23794": 0.0912417543, + "23795": 0.0911590823, + "23796": 0.0910757112, + "23797": 0.0909916425, + "23798": 0.0909068787, + "23799": 0.0908214231, + "23800": 0.0907352799, + "23801": 0.0906484544, + "23802": 0.0905609534, + "23803": 0.0904727846, + "23804": 0.0903839565, + "23805": 0.0902944783, + "23806": 0.0902043592, + "23807": 0.0901136087, + "23808": 0.0900222373, + "23809": 0.0899302584, + "23810": 0.0898376867, + "23811": 0.0897445356, + "23812": 0.0896508164, + "23813": 0.0895565381, + "23814": 0.0894617076, + "23815": 0.0893663291, + "23816": 0.0892704043, + "23817": 0.0891739324, + "23818": 0.0890769138, + "23819": 0.0889793613, + "23820": 0.0888812944, + "23821": 0.0887827285, + "23822": 0.0886836712, + "23823": 0.0885841236, + "23824": 0.0884840802, + "23825": 0.0883835298, + "23826": 0.0882824555, + "23827": 0.088180835, + "23828": 0.0880786417, + "23829": 0.087975847, + "23830": 0.0878724197, + "23831": 0.0877683246, + "23832": 0.087663522, + "23833": 0.0875579685, + "23834": 0.0874516169, + "23835": 0.0873444172, + "23836": 0.0872363165, + "23837": 0.0871272598, + "23838": 0.0870171919, + "23839": 0.0869060662, + "23840": 0.0867938445, + "23841": 0.0866804876, + "23842": 0.0865659535, + "23843": 0.0864501984, + "23844": 0.0863331771, + "23845": 0.0862148441, + "23846": 0.0860951544, + "23847": 0.0859740633, + "23848": 0.0858515282, + "23849": 0.0857275094, + "23850": 0.085601971, + "23851": 0.0854748801, + "23852": 0.0853462068, + "23853": 0.0852159246, + "23854": 0.0850840105, + "23855": 0.084950446, + "23856": 0.0848152165, + "23857": 0.0846783123, + "23858": 0.0845397284, + "23859": 0.0843994688, + "23860": 0.0842575471, + "23861": 0.0841139818, + "23862": 0.0839687955, + "23863": 0.0838220144, + "23864": 0.0836736687, + "23865": 0.0835237924, + "23866": 0.0833724234, + "23867": 0.0832196031, + "23868": 0.0830653766, + "23869": 0.0829097945, + "23870": 0.0827529126, + "23871": 0.0825947904, + "23872": 0.0824354887, + "23873": 0.0822750702, + "23874": 0.0821135987, + "23875": 0.0819511388, + "23876": 0.0817877559, + "23877": 0.0816235154, + "23878": 0.0814584828, + "23879": 0.0812927315, + "23880": 0.0811263452, + "23881": 0.080959409, + "23882": 0.0807920035, + "23883": 0.0806242045, + "23884": 0.0804560828, + "23885": 0.0802877043, + "23886": 0.0801191295, + "23887": 0.0799504137, + "23888": 0.0797816071, + "23889": 0.0796127595, + "23890": 0.079443923, + "23891": 0.0792751468, + "23892": 0.0791064724, + "23893": 0.0789379332, + "23894": 0.0787695549, + "23895": 0.0786013555, + "23896": 0.0784333455, + "23897": 0.0782655282, + "23898": 0.0780978999, + "23899": 0.0779304608, + "23900": 0.0777632234, + "23901": 0.0775962017, + "23902": 0.0774294007, + "23903": 0.0772628147, + "23904": 0.0770964287, + "23905": 0.0769302196, + "23906": 0.0767641566, + "23907": 0.0765982029, + "23908": 0.0764323159, + "23909": 0.0762664476, + "23910": 0.0761005443, + "23911": 0.0759345487, + "23912": 0.0757684019, + "23913": 0.0756020449, + "23914": 0.0754354195, + "23915": 0.0752684689, + "23916": 0.0751011389, + "23917": 0.0749333786, + "23918": 0.0747651415, + "23919": 0.0745963759, + "23920": 0.0744269882, + "23921": 0.0742568289, + "23922": 0.0740857259, + "23923": 0.0739135176, + "23924": 0.0737400627, + "23925": 0.0735652401, + "23926": 0.073388948, + "23927": 0.0732111033, + "23928": 0.0730316408, + "23929": 0.0728505129, + "23930": 0.0726676892, + "23931": 0.0724831556, + "23932": 0.0722969143, + "23933": 0.0721089831, + "23934": 0.0719193949, + "23935": 0.0717281975, + "23936": 0.0715354526, + "23937": 0.0713412357, + "23938": 0.0711456353, + "23939": 0.0709487547, + "23940": 0.0707507207, + "23941": 0.0705516799, + "23942": 0.0703517883, + "23943": 0.0701512077, + "23944": 0.0699501053, + "23945": 0.0697486533, + "23946": 0.069547028, + "23947": 0.069345409, + "23948": 0.0691439781, + "23949": 0.0689429194, + "23950": 0.0687424205, + "23951": 0.0685426717, + "23952": 0.0683438612, + "23953": 0.0681461737, + "23954": 0.0679497891, + "23955": 0.0677548813, + "23956": 0.0675616176, + "23957": 0.0673701575, + "23958": 0.0671806513, + "23959": 0.0669932413, + "23960": 0.0668081258, + "23961": 0.0666255542, + "23962": 0.0664457623, + "23963": 0.0662689518, + "23964": 0.0660952936, + "23965": 0.0659249289, + "23966": 0.0657579697, + "23967": 0.0655945001, + "23968": 0.0654345764, + "23969": 0.0652782274, + "23970": 0.0651254591, + "23971": 0.0649762551, + "23972": 0.0648305723, + "23973": 0.0646883405, + "23974": 0.0645494616, + "23975": 0.0644138109, + "23976": 0.0642812366, + "23977": 0.0641515601, + "23978": 0.0640245764, + "23979": 0.0639000542, + "23980": 0.0637777255, + "23981": 0.0636572843, + "23982": 0.063538397, + "23983": 0.0634207082, + "23984": 0.0633038409, + "23985": 0.0631873962, + "23986": 0.0630709538, + "23987": 0.0629540723, + "23988": 0.0628362894, + "23989": 0.0627171226, + "23990": 0.0625960707, + "23991": 0.0624726148, + "23992": 0.062346218, + "23993": 0.0622163264, + "23994": 0.0620823696, + "23995": 0.0619437623, + "23996": 0.0617999056, + "23997": 0.0616501879, + "23998": 0.0614939873, + "23999": 0.0613306725, + "24000": 37.7647372029, + "24001": 37.7285558604, + "24002": 37.692337717, + "24003": 37.6560836459, + "24004": 37.6197930564, + "24005": 37.583465691, + "24006": 37.5471012655, + "24007": 37.5106995418, + "24008": 37.4742603128, + "24009": 37.4377834059, + "24010": 37.4012686817, + "24011": 37.3647160348, + "24012": 37.3281253935, + "24013": 37.2914967196, + "24014": 37.2548300088, + "24015": 37.2181252902, + "24016": 37.1813826265, + "24017": 37.144602114, + "24018": 37.1077838824, + "24019": 37.0709280949, + "24020": 37.0340349478, + "24021": 36.9977822691, + "24022": 36.9630915598, + "24023": 36.9301336496, + "24024": 36.8988683913, + "24025": 36.869297867, + "24026": 36.8414157774, + "24027": 36.8152175577, + "24028": 36.7906983553, + "24029": 36.7678534337, + "24030": 36.7466780916, + "24031": 36.7271892377, + "24032": 36.7094218413, + "24033": 36.6933798218, + "24034": 36.6790567281, + "24035": 36.6664482395, + "24036": 36.655549667, + "24037": 36.646356452, + "24038": 36.6388640665, + "24039": 36.6330680328, + "24040": 36.628963919, + "24041": 36.627299746, + "24042": 36.6300252214, + "24043": 36.6376020089, + "24044": 36.6499213653, + "24045": 36.666988649, + "24046": 36.6887865009, + "24047": 36.7153021916, + "24048": 36.7465221543, + "24049": 36.7824330774, + "24050": 36.8230216851, + "24051": 36.8683168429, + "24052": 36.9184741493, + "24053": 36.9735242695, + "24054": 37.033444573, + "24055": 37.098223169, + "24056": 37.1678461067, + "24057": 37.2422999327, + "24058": 37.3215711799, + "24059": 37.4056464684, + "24060": 37.4945124851, + "24061": 37.5883802944, + "24062": 37.6889295849, + "24063": 37.7966159978, + "24064": 37.911324332, + "24065": 38.0330535921, + "24066": 38.1617800624, + "24067": 38.2974846744, + "24068": 38.4401475361, + "24069": 38.5897490246, + "24070": 38.7462695671, + "24071": 38.9096965225, + "24072": 39.0802313669, + "24073": 39.2579193611, + "24074": 39.4427273379, + "24075": 39.6346379093, + "24076": 39.8336306363, + "24077": 40.0396857913, + "24078": 40.2527836055, + "24079": 40.4729044187, + "24080": 40.7000286487, + "24081": 40.9341367962, + "24082": 41.1743676, + "24083": 41.4203973301, + "24084": 41.6722444364, + "24085": 41.9298862975, + "24086": 42.193308583, + "24087": 42.4624953869, + "24088": 42.7374311988, + "24089": 43.0181005088, + "24090": 43.3044878866, + "24091": 43.5965779642, + "24092": 43.8942277312, + "24093": 44.1973612069, + "24094": 44.5059646093, + "24095": 44.8200232349, + "24096": 45.1395226375, + "24097": 45.4644483911, + "24098": 45.7947861371, + "24099": 46.1305215739, + "24100": 46.4716404584, + "24101": 46.8181286047, + "24102": 47.1678896026, + "24103": 47.5196244805, + "24104": 47.8732544537, + "24105": 48.2287910646, + "24106": 48.5862278275, + "24107": 48.9455618861, + "24108": 49.3067896835, + "24109": 49.6699078278, + "24110": 50.034912918, + "24111": 50.4018015782, + "24112": 50.7700029482, + "24113": 51.1390598963, + "24114": 51.5089187781, + "24115": 51.8795874055, + "24116": 52.251061316, + "24117": 52.6233385092, + "24118": 52.9964165015, + "24119": 53.370292915, + "24120": 53.7449653591, + "24121": 54.120431455, + "24122": 54.4949855068, + "24123": 54.8668640744, + "24124": 55.2358009, + "24125": 55.6018599057, + "24126": 55.965038985, + "24127": 56.3253491955, + "24128": 56.6827989309, + "24129": 57.0373970842, + "24130": 57.3891524157, + "24131": 57.7380736794, + "24132": 58.0839581291, + "24133": 58.4265269558, + "24134": 58.7657356075, + "24135": 59.1016053585, + "24136": 59.4341442877, + "24137": 59.763363073, + "24138": 60.0892718345, + "24139": 60.4118807658, + "24140": 60.7312000078, + "24141": 61.047239674, + "24142": 61.3594935092, + "24143": 61.6670238152, + "24144": 61.9696376577, + "24145": 62.2673915856, + "24146": 62.5602922259, + "24147": 62.8483561285, + "24148": 63.1315978041, + "24149": 63.4100321159, + "24150": 63.6836738014, + "24151": 63.9525375683, + "24152": 64.2165618043, + "24153": 64.4755630431, + "24154": 64.7295086193, + "24155": 64.9784236488, + "24156": 65.2223216405, + "24157": 65.461218366, + "24158": 65.6951290871, + "24159": 65.9240691104, + "24160": 66.1480536766, + "24161": 66.3670979828, + "24162": 66.5812413318, + "24163": 66.7905957157, + "24164": 66.9952012957, + "24165": 67.1950675413, + "24166": 67.3902100022, + "24167": 67.5806429588, + "24168": 67.7663808912, + "24169": 67.9474381859, + "24170": 68.1238291943, + "24171": 68.2955682217, + "24172": 68.4626730908, + "24173": 68.6251848994, + "24174": 68.7831252635, + "24175": 68.9365066895, + "24176": 69.0853434525, + "24177": 69.2296494222, + "24178": 69.3694384972, + "24179": 69.5047245188, + "24180": 69.6355212881, + "24181": 69.7618425629, + "24182": 69.8837261744, + "24183": 70.0019646656, + "24184": 70.1167993702, + "24185": 70.2281947189, + "24186": 70.3361704498, + "24187": 70.4407352073, + "24188": 70.541899814, + "24189": 70.6396746183, + "24190": 70.7340700245, + "24191": 70.8250963871, + "24192": 70.9127640319, + "24193": 70.9973002627, + "24194": 71.0787938072, + "24195": 71.157245175, + "24196": 71.2326654517, + "24197": 71.3050635745, + "24198": 71.3744488752, + "24199": 71.4408305724, + "24200": 71.504217873, + "24201": 71.5646199518, + "24202": 71.6220459561, + "24203": 71.6772316309, + "24204": 71.7305316755, + "24205": 71.7819472252, + "24206": 71.8314849865, + "24207": 71.879150531, + "24208": 71.9249496356, + "24209": 71.968888015, + "24210": 72.0109713747, + "24211": 72.0512054009, + "24212": 72.0895957627, + "24213": 72.1262855935, + "24214": 72.1613653622, + "24215": 72.1948449613, + "24216": 72.2267283058, + "24217": 72.2570204872, + "24218": 72.2857263433, + "24219": 72.3128507448, + "24220": 72.3383985375, + "24221": 72.3623745542, + "24222": 72.3847836123, + "24223": 72.4061182926, + "24224": 72.4267721728, + "24225": 72.4467912797, + "24226": 72.4661687814, + "24227": 72.4849084039, + "24228": 72.5030117555, + "24229": 72.5204808606, + "24230": 72.5373176531, + "24231": 72.5535240776, + "24232": 72.5691020695, + "24233": 72.5841531113, + "24234": 72.5987820545, + "24235": 72.613006241, + "24236": 72.6268237093, + "24237": 72.6402363514, + "24238": 72.6532452846, + "24239": 72.6658517763, + "24240": 72.6780570591, + "24241": 72.6898623682, + "24242": 72.7012689334, + "24243": 72.7123787187, + "24244": 72.7233299054, + "24245": 72.7341490653, + "24246": 72.7448313956, + "24247": 72.7553783629, + "24248": 72.7657901793, + "24249": 72.776067306, + "24250": 72.7862101527, + "24251": 72.7962191378, + "24252": 72.8060946766, + "24253": 72.8158647864, + "24254": 72.8255805467, + "24255": 72.8352532187, + "24256": 72.8448807235, + "24257": 72.8544636482, + "24258": 72.8640020462, + "24259": 72.8734960771, + "24260": 72.8829458787, + "24261": 72.8923515927, + "24262": 72.9017133593, + "24263": 72.9110020349, + "24264": 72.9201417073, + "24265": 72.9291143804, + "24266": 72.9379242599, + "24267": 72.9465711117, + "24268": 72.9550555872, + "24269": 72.963378159, + "24270": 72.9715393335, + "24271": 72.9795396083, + "24272": 72.9873794809, + "24273": 72.9950511853, + "24274": 73.0025220747, + "24275": 73.0097840541, + "24276": 73.0168395092, + "24277": 73.0236887285, + "24278": 73.030332417, + "24279": 73.0367711942, + "24280": 73.0430056943, + "24281": 73.0490365461, + "24282": 73.054864377, + "24283": 73.0604438018, + "24284": 73.0654281994, + "24285": 73.0697220404, + "24286": 73.0733469005, + "24287": 73.0763009408, + "24288": 73.0785869946, + "24289": 73.0802069539, + "24290": 73.0811628909, + "24291": 73.0814568341, + "24292": 73.0810908132, + "24293": 73.0800616525, + "24294": 73.0782035086, + "24295": 73.075469317, + "24296": 73.071871675, + "24297": 73.0674112447, + "24298": 73.0620910639, + "24299": 73.0559136857, + "24300": 73.0488817502, + "24301": 73.0409978701, + "24302": 73.0322646538, + "24303": 73.0226847009, + "24304": 73.0119955947, + "24305": 73.0001040974, + "24306": 72.987024654, + "24307": 72.9727587474, + "24308": 72.9573104375, + "24309": 72.9406832558, + "24310": 72.9228808254, + "24311": 72.9039067379, + "24312": 72.8837645776, + "24313": 72.8624579167, + "24314": 72.8398714257, + "24315": 72.8159521063, + "24316": 72.7907047943, + "24317": 72.7641333986, + "24318": 72.7362419978, + "24319": 72.7070346217, + "24320": 72.6765152945, + "24321": 72.6446880266, + "24322": 72.6115568158, + "24323": 72.5771256479, + "24324": 72.5413125561, + "24325": 72.5040684709, + "24326": 72.4653946675, + "24327": 72.4252961345, + "24328": 72.3837771017, + "24329": 72.3408419344, + "24330": 72.2964949547, + "24331": 72.2507404769, + "24332": 72.2035828008, + "24333": 72.155026213, + "24334": 72.1051545673, + "24335": 72.0540355545, + "24336": 72.0016801517, + "24337": 71.9480907015, + "24338": 71.8932712581, + "24339": 71.8372255198, + "24340": 71.7799572417, + "24341": 71.7214701537, + "24342": 71.6617679768, + "24343": 71.6008544198, + "24344": 71.5388633703, + "24345": 71.4759331182, + "24346": 71.4120875087, + "24347": 71.3473251395, + "24348": 71.2816496443, + "24349": 71.2150636398, + "24350": 71.1475699355, + "24351": 71.0791712922, + "24352": 71.0098704701, + "24353": 70.9396702191, + "24354": 70.8686319955, + "24355": 70.7968383584, + "24356": 70.7243068095, + "24357": 70.6510365578, + "24358": 70.5770304602, + "24359": 70.5022906364, + "24360": 70.4268193449, + "24361": 70.3506188082, + "24362": 70.2736912477, + "24363": 70.1960388769, + "24364": 70.1177692522, + "24365": 70.0390779449, + "24366": 69.9600085575, + "24367": 69.8805537763, + "24368": 69.8007164604, + "24369": 69.7204974313, + "24370": 69.6398979135, + "24371": 69.5589190465, + "24372": 69.4775619829, + "24373": 69.3958278681, + "24374": 69.3137663287, + "24375": 69.2315044192, + "24376": 69.1490733007, + "24377": 69.0664673718, + "24378": 68.9836883773, + "24379": 68.9007365917, + "24380": 68.8176125815, + "24381": 68.734316853, + "24382": 68.6508499227, + "24383": 68.5672123031, + "24384": 68.483445469, + "24385": 68.3997142481, + "24386": 68.3160617269, + "24387": 68.232479018, + "24388": 68.148967623, + "24389": 68.065526968, + "24390": 67.9821568949, + "24391": 67.8988571634, + "24392": 67.8156275504, + "24393": 67.7324678302, + "24394": 67.6493931059, + "24395": 67.5665188299, + "24396": 67.4838768095, + "24397": 67.4014598414, + "24398": 67.3192685225, + "24399": 67.2373018929, + "24400": 67.1555593068, + "24401": 67.0740400582, + "24402": 66.9927434554, + "24403": 66.911668807, + "24404": 66.8308181484, + "24405": 66.7502787964, + "24406": 66.6700757939, + "24407": 66.5902029039, + "24408": 66.5106601455, + "24409": 66.4314462911, + "24410": 66.3525603661, + "24411": 66.274001349, + "24412": 66.1957682318, + "24413": 66.1178600071, + "24414": 66.0402756715, + "24415": 65.9630728711, + "24416": 65.886271814, + "24417": 65.8098688789, + "24418": 65.7338633144, + "24419": 65.6582538003, + "24420": 65.5830391335, + "24421": 65.5082180923, + "24422": 65.4337894549, + "24423": 65.359751973, + "24424": 65.2861043585, + "24425": 65.2128453639, + "24426": 65.1399736605, + "24427": 65.0674878444, + "24428": 64.9953864793, + "24429": 64.9236680985, + "24430": 64.8523312074, + "24431": 64.781374286, + "24432": 64.7107957917, + "24433": 64.6405941611, + "24434": 64.5707678128, + "24435": 64.5013213753, + "24436": 64.4322570792, + "24437": 64.3635734951, + "24438": 64.295268914, + "24439": 64.2273416731, + "24440": 64.1597900931, + "24441": 64.0926124928, + "24442": 64.0258071881, + "24443": 63.9593724944, + "24444": 63.8933067281, + "24445": 63.8275665928, + "24446": 63.7621172415, + "24447": 63.6969534823, + "24448": 63.6320746379, + "24449": 63.5674791368, + "24450": 63.5031655959, + "24451": 63.439132605, + "24452": 63.3753787715, + "24453": 63.3119027126, + "24454": 63.2487030576, + "24455": 63.1857550865, + "24456": 63.1230333007, + "24457": 63.0605327512, + "24458": 62.9982530328, + "24459": 62.9361928503, + "24460": 62.8743511054, + "24461": 62.8127266799, + "24462": 62.7513184799, + "24463": 62.6901254272, + "24464": 62.6291464618, + "24465": 62.5683556416, + "24466": 62.5077180898, + "24467": 62.4472265346, + "24468": 62.3868814769, + "24469": 62.3266818856, + "24470": 62.2666270584, + "24471": 62.2067162489, + "24472": 62.1469487421, + "24473": 62.0873238388, + "24474": 62.0278408587, + "24475": 61.9684811654, + "24476": 61.9092111228, + "24477": 61.85002304, + "24478": 61.7909179303, + "24479": 61.7318950878, + "24480": 61.6729541705, + "24481": 61.6140947837, + "24482": 61.5553165628, + "24483": 61.4966191567, + "24484": 61.4380022303, + "24485": 61.3794559081, + "24486": 61.3209550691, + "24487": 61.2624935051, + "24488": 61.2040722666, + "24489": 61.1456909693, + "24490": 61.0873495308, + "24491": 61.0290478235, + "24492": 60.9707857429, + "24493": 60.9125631934, + "24494": 60.854380091, + "24495": 60.7962300115, + "24496": 60.7380874172, + "24497": 60.6799456529, + "24498": 60.6218061289, + "24499": 60.5636686534, + "24500": 60.5055333638, + "24501": 60.4474003403, + "24502": 60.3892696826, + "24503": 60.3311414942, + "24504": 60.2730158846, + "24505": 60.2148918362, + "24506": 60.1567609209, + "24507": 60.0986208964, + "24508": 60.0404724073, + "24509": 59.9823155257, + "24510": 59.9241504425, + "24511": 59.8659773285, + "24512": 59.8077963623, + "24513": 59.7496077241, + "24514": 59.6914115966, + "24515": 59.6332079015, + "24516": 59.5749883256, + "24517": 59.5167505728, + "24518": 59.4584953698, + "24519": 59.4002228411, + "24520": 59.3419332331, + "24521": 59.2836267693, + "24522": 59.2253036792, + "24523": 59.1669641923, + "24524": 59.1086085394, + "24525": 59.0502369522, + "24526": 58.9918547893, + "24527": 58.9334641378, + "24528": 58.8750650024, + "24529": 58.8166576393, + "24530": 58.7582422554, + "24531": 58.6998190688, + "24532": 58.6413882963, + "24533": 58.5829501559, + "24534": 58.5245048668, + "24535": 58.4660526487, + "24536": 58.4075998362, + "24537": 58.349149559, + "24538": 58.2907019727, + "24539": 58.2322572809, + "24540": 58.1738156788, + "24541": 58.115377364, + "24542": 58.0569425346, + "24543": 57.9985113894, + "24544": 57.9400841278, + "24545": 57.8816609495, + "24546": 57.823240951, + "24547": 57.7648236515, + "24548": 57.7064092171, + "24549": 57.6479978619, + "24550": 57.5895897901, + "24551": 57.5311852073, + "24552": 57.4727843183, + "24553": 57.4143873271, + "24554": 57.3559944367, + "24555": 57.2976058489, + "24556": 57.2392400657, + "24557": 57.1809118732, + "24558": 57.1226230162, + "24559": 57.0643732544, + "24560": 57.0061627418, + "24561": 56.947991551, + "24562": 56.8898597677, + "24563": 56.8317674716, + "24564": 56.7737147399, + "24565": 56.7157016466, + "24566": 56.6577336093, + "24567": 56.5998162237, + "24568": 56.5419503804, + "24569": 56.4841359297, + "24570": 56.4263729243, + "24571": 56.3686613711, + "24572": 56.3110012808, + "24573": 56.2533926572, + "24574": 56.1958354995, + "24575": 56.138329802, + "24576": 56.0808815439, + "24577": 56.0234988534, + "24578": 55.9661832164, + "24579": 55.9089342477, + "24580": 55.8517519299, + "24581": 55.7946361656, + "24582": 55.7375868673, + "24583": 55.6806039392, + "24584": 55.6236872811, + "24585": 55.5668367878, + "24586": 55.5100542576, + "24587": 55.4533430788, + "24588": 55.3967038824, + "24589": 55.3401363727, + "24590": 55.2836404348, + "24591": 55.2272159128, + "24592": 55.170862655, + "24593": 55.1145805048, + "24594": 55.0583693033, + "24595": 55.0022288889, + "24596": 54.9461611465, + "24597": 54.8901712319, + "24598": 54.8342602467, + "24599": 54.7784277377, + "24600": 54.7226735614, + "24601": 54.666997512, + "24602": 54.6113993956, + "24603": 54.5558790166, + "24604": 54.5004361801, + "24605": 54.4450706922, + "24606": 54.3897825624, + "24607": 54.334572411, + "24608": 54.2794402589, + "24609": 54.2243858726, + "24610": 54.1694090723, + "24611": 54.1145096705, + "24612": 54.0596874847, + "24613": 54.0049423351, + "24614": 53.950274045, + "24615": 53.8956824414, + "24616": 53.8411674916, + "24617": 53.7867300664, + "24618": 53.7323702902, + "24619": 53.6780879416, + "24620": 53.6238828725, + "24621": 53.5697549246, + "24622": 53.5157039461, + "24623": 53.4617297877, + "24624": 53.4078323038, + "24625": 53.3540113518, + "24626": 53.3002667547, + "24627": 53.246597171, + "24628": 53.1930021139, + "24629": 53.1394815272, + "24630": 53.0860352708, + "24631": 53.0326632233, + "24632": 52.9793652611, + "24633": 52.9261412618, + "24634": 52.8729911036, + "24635": 52.8199146644, + "24636": 52.7669118216, + "24637": 52.7139802955, + "24638": 52.6611191814, + "24639": 52.6083284493, + "24640": 52.5556079612, + "24641": 52.5029575974, + "24642": 52.4503772309, + "24643": 52.3978667314, + "24644": 52.3454259644, + "24645": 52.2930547906, + "24646": 52.2407530655, + "24647": 52.188519156, + "24648": 52.1363522005, + "24649": 52.0842520526, + "24650": 52.0322185476, + "24651": 51.980251516, + "24652": 51.9283507802, + "24653": 51.8765161547, + "24654": 51.8247474461, + "24655": 51.7730444525, + "24656": 51.7214069635, + "24657": 51.6698261014, + "24658": 51.6182962954, + "24659": 51.5668170392, + "24660": 51.5153881927, + "24661": 51.4640095316, + "24662": 51.4126808375, + "24663": 51.3614018799, + "24664": 51.3101724199, + "24665": 51.2589922096, + "24666": 51.2078609925, + "24667": 51.1567832382, + "24668": 51.1057624471, + "24669": 51.0547987388, + "24670": 51.0038917126, + "24671": 50.9530410633, + "24672": 50.9022464584, + "24673": 50.8515075638, + "24674": 50.8008240385, + "24675": 50.750195537, + "24676": 50.6996217087, + "24677": 50.6491010713, + "24678": 50.5986321002, + "24679": 50.5482142604, + "24680": 50.4978472328, + "24681": 50.4475306535, + "24682": 50.3972641661, + "24683": 50.3470474126, + "24684": 50.2968800353, + "24685": 50.246761678, + "24686": 50.1966919859, + "24687": 50.1466712105, + "24688": 50.0966998234, + "24689": 50.046777631, + "24690": 49.9969042564, + "24691": 49.9470793651, + "24692": 49.8973026208, + "24693": 49.8475736948, + "24694": 49.797892265, + "24695": 49.7482580167, + "24696": 49.698670643, + "24697": 49.6491309716, + "24698": 49.5996407806, + "24699": 49.5502002322, + "24700": 49.5008089535, + "24701": 49.4514666909, + "24702": 49.4021731789, + "24703": 49.3529281671, + "24704": 49.3037316244, + "24705": 49.2545855925, + "24706": 49.2054932023, + "24707": 49.1564574137, + "24708": 49.1074808546, + "24709": 49.0585665476, + "24710": 49.009717661, + "24711": 48.9609373245, + "24712": 48.9122286638, + "24713": 48.863594792, + "24714": 48.8150388094, + "24715": 48.7665638017, + "24716": 48.7181728385, + "24717": 48.6698685745, + "24718": 48.6216524495, + "24719": 48.5735270623, + "24720": 48.5254954932, + "24721": 48.4775606973, + "24722": 48.4297256243, + "24723": 48.3819931921, + "24724": 48.3343662908, + "24725": 48.2868477789, + "24726": 48.239440483, + "24727": 48.1921469684, + "24728": 48.1449682811, + "24729": 48.0979066659, + "24730": 48.0509649047, + "24731": 48.0041456228, + "24732": 47.9574514254, + "24733": 47.9108848682, + "24734": 47.8644484605, + "24735": 47.8181446633, + "24736": 47.7719758865, + "24737": 47.7259443367, + "24738": 47.6800474344, + "24739": 47.6342859992, + "24740": 47.5886625284, + "24741": 47.5431791126, + "24742": 47.4978378495, + "24743": 47.4526407599, + "24744": 47.4075898016, + "24745": 47.3626868648, + "24746": 47.3179337708, + "24747": 47.2733322703, + "24748": 47.2288792019, + "24749": 47.18457442, + "24750": 47.1404196704, + "24751": 47.0964163855, + "24752": 47.0525659664, + "24753": 47.0088697247, + "24754": 46.9653288929, + "24755": 46.9219446206, + "24756": 46.8787179738, + "24757": 46.8356499338, + "24758": 46.7927285887, + "24759": 46.7499486558, + "24760": 46.7073109962, + "24761": 46.6648162842, + "24762": 46.6224651247, + "24763": 46.580258029, + "24764": 46.5381954194, + "24765": 46.4962776273, + "24766": 46.454504894, + "24767": 46.4128773695, + "24768": 46.3713813144, + "24769": 46.3300081824, + "24770": 46.2887574226, + "24771": 46.2476289919, + "24772": 46.2066226377, + "24773": 46.1657380414, + "24774": 46.1249747909, + "24775": 46.0843323862, + "24776": 46.0438102398, + "24777": 46.0034076773, + "24778": 45.9631188066, + "24779": 45.922938692, + "24780": 45.8828659707, + "24781": 45.842899753, + "24782": 45.8030389569, + "24783": 45.7632824423, + "24784": 45.7236289859, + "24785": 45.6840772881, + "24786": 45.6446259732, + "24787": 45.6052735911, + "24788": 45.5660171263, + "24789": 45.5268534419, + "24790": 45.4877806431, + "24791": 45.4487970569, + "24792": 45.4099008862, + "24793": 45.3710902812, + "24794": 45.3323633272, + "24795": 45.2937180488, + "24796": 45.2551524117, + "24797": 45.2166643241, + "24798": 45.1782467698, + "24799": 45.1398909285, + "24800": 45.1015933215, + "24801": 45.0633519363, + "24802": 45.0251644088, + "24803": 44.9870283886, + "24804": 44.9489414679, + "24805": 44.9109011983, + "24806": 44.8729050891, + "24807": 44.83495061, + "24808": 44.7970356065, + "24809": 44.759158234, + "24810": 44.7213160156, + "24811": 44.6835062414, + "24812": 44.6457262105, + "24813": 44.6079731843, + "24814": 44.5702443983, + "24815": 44.5325370618, + "24816": 44.4948483601, + "24817": 44.4571754564, + "24818": 44.4195171542, + "24819": 44.3818748909, + "24820": 44.344246803, + "24821": 44.3066297536, + "24822": 44.2690208452, + "24823": 44.2314171202, + "24824": 44.1938156229, + "24825": 44.1562133903, + "24826": 44.1186074569, + "24827": 44.0809948561, + "24828": 44.0433735092, + "24829": 44.0057440093, + "24830": 43.9681043244, + "24831": 43.9304513091, + "24832": 43.8927820558, + "24833": 43.8550936279, + "24834": 43.8173831174, + "24835": 43.7796476366, + "24836": 43.7418843241, + "24837": 43.7040903473, + "24838": 43.6662653717, + "24839": 43.6284252409, + "24840": 43.5905723825, + "24841": 43.5527029914, + "24842": 43.5148145636, + "24843": 43.4769043947, + "24844": 43.4389698841, + "24845": 43.4010084784, + "24846": 43.3630176872, + "24847": 43.3249950837, + "24848": 43.2869384871, + "24849": 43.2488513634, + "24850": 43.2107331808, + "24851": 43.1725814393, + "24852": 43.1343941277, + "24853": 43.0961692362, + "24854": 43.0579048567, + "24855": 43.0195991658, + "24856": 42.9812504308, + "24857": 42.9428570112, + "24858": 42.9044173601, + "24859": 42.8659566545, + "24860": 42.8274831678, + "24861": 42.7889944504, + "24862": 42.7504894524, + "24863": 42.7119669633, + "24864": 42.6734259237, + "24865": 42.6348653631, + "24866": 42.5962844119, + "24867": 42.557682298, + "24868": 42.5190583466, + "24869": 42.4804169655, + "24870": 42.4417600418, + "24871": 42.4030871287, + "24872": 42.3643979087, + "24873": 42.3256921443, + "24874": 42.2869696853, + "24875": 42.2482304641, + "24876": 42.2094744929, + "24877": 42.1707018604, + "24878": 42.131912729, + "24879": 42.0931235413, + "24880": 42.0543445988, + "24881": 42.0155767663, + "24882": 41.9768202645, + "24883": 41.9380755098, + "24884": 41.8993429413, + "24885": 41.8606230513, + "24886": 41.8219163739, + "24887": 41.7832234828, + "24888": 41.7445449871, + "24889": 41.7058895117, + "24890": 41.6672640891, + "24891": 41.6286700878, + "24892": 41.5901080326, + "24893": 41.5515786389, + "24894": 41.5130826025, + "24895": 41.4746206381, + "24896": 41.436193468, + "24897": 41.3978018218, + "24898": 41.3594464334, + "24899": 41.3211497814, + "24900": 41.2829350824, + "24901": 41.2448064415, + "24902": 41.2067637472, + "24903": 41.168807728, + "24904": 41.1309389408, + "24905": 41.0931579721, + "24906": 41.0554653977, + "24907": 41.0178617906, + "24908": 40.9803477193, + "24909": 40.9429241281, + "24910": 40.9055920942, + "24911": 40.8683522722, + "24912": 40.8312051968, + "24913": 40.7941514254, + "24914": 40.7571915108, + "24915": 40.7203260077, + "24916": 40.6835554727, + "24917": 40.6468804655, + "24918": 40.6103015498, + "24919": 40.5738212103, + "24920": 40.5374429865, + "24921": 40.5011664886, + "24922": 40.4649895168, + "24923": 40.4289097946, + "24924": 40.3929250005, + "24925": 40.3570328333, + "24926": 40.3212310004, + "24927": 40.2855172206, + "24928": 40.249889224, + "24929": 40.2143444671, + "24930": 40.1788799626, + "24931": 40.1434933008, + "24932": 40.108182302, + "24933": 40.0729447569, + "24934": 40.0377784788, + "24935": 40.002681294, + "24936": 39.9676510441, + "24937": 39.9326855861, + "24938": 39.8977827928, + "24939": 39.862937069, + "24940": 39.828132344, + "24941": 39.793362919, + "24942": 39.7586275335, + "24943": 39.7239240612, + "24944": 39.6892505706, + "24945": 39.6546051132, + "24946": 39.619985767, + "24947": 39.5853906274, + "24948": 39.5508178104, + "24949": 39.5162652874, + "24950": 39.4817299756, + "24951": 39.4472097092, + "24952": 39.4127027615, + "24953": 39.3782073443, + "24954": 39.3437217076, + "24955": 39.309244121, + "24956": 39.2747728772, + "24957": 39.2403062921, + "24958": 39.2058427051, + "24959": 39.1713800731, + "24960": 39.1369036667, + "24961": 39.1024080631, + "24962": 39.0678925269, + "24963": 39.0333554159, + "24964": 38.9987952997, + "24965": 38.9642107361, + "24966": 38.9296003165, + "24967": 38.8949626574, + "24968": 38.8602964019, + "24969": 38.8256002202, + "24970": 38.7908719625, + "24971": 38.7561100474, + "24972": 38.7213132657, + "24973": 38.6864803949, + "24974": 38.6516102494, + "24975": 38.6167016703, + "24976": 38.5817535281, + "24977": 38.5467647226, + "24978": 38.5117341828, + "24979": 38.4766608674, + "24980": 38.4415440304, + "24981": 38.4063828166, + "24982": 38.3711762724, + "24983": 38.3359234768, + "24984": 38.3006235393, + "24985": 38.2652756003, + "24986": 38.2298788316, + "24987": 38.1944324362, + "24988": 38.1589356488, + "24989": 38.1233877359, + "24990": 38.087785343, + "24991": 38.0521261636, + "24992": 38.0164094779, + "24993": 37.9806347133, + "24994": 37.944801307, + "24995": 37.9089087331, + "24996": 37.8729564975, + "24997": 37.8369441393, + "24998": 37.8008712304, + "24999": 37.7647373756, + "25000": 37.514060075, + "25001": 37.4777835852, + "25002": 37.4414963346, + "25003": 37.4051997464, + "25004": 37.3688930229, + "25005": 37.3325758507, + "25006": 37.2962478604, + "25007": 37.2599087343, + "25008": 37.2235581852, + "25009": 37.1871959606, + "25010": 37.1508218418, + "25011": 37.1144356438, + "25012": 37.078037216, + "25013": 37.0416264413, + "25014": 37.0052032368, + "25015": 36.9687675532, + "25016": 36.9323193753, + "25017": 36.8958587213, + "25018": 36.8593856434, + "25019": 36.8229002272, + "25020": 36.7864025921, + "25021": 36.7510988216, + "25022": 36.718628641, + "25023": 36.6892957708, + "25024": 36.6630284269, + "25025": 36.6398299551, + "25026": 36.6196887596, + "25027": 36.6025963054, + "25028": 36.5885435203, + "25029": 36.5775215132, + "25030": 36.5695214306, + "25031": 36.5645728535, + "25032": 36.5627374806, + "25033": 36.5640217262, + "25034": 36.5684135233, + "25035": 36.5759045723, + "25036": 36.5864858934, + "25037": 36.6001487155, + "25038": 36.6168842978, + "25039": 36.6366839652, + "25040": 36.6595391007, + "25041": 36.6863228464, + "25042": 36.7193165329, + "25043": 36.7590577469, + "25044": 36.805415655, + "25045": 36.8583931366, + "25046": 36.9179664556, + "25047": 36.984117305, + "25048": 37.0568264022, + "25049": 37.1360747678, + "25050": 37.2218434699, + "25051": 37.3141629557, + "25052": 37.413212163, + "25053": 37.5190236576, + "25054": 37.6315675669, + "25055": 37.7508266063, + "25056": 37.8767810828, + "25057": 38.0094118915, + "25058": 38.148699916, + "25059": 38.2946261478, + "25060": 38.4471716616, + "25061": 38.6063892572, + "25062": 38.7728008366, + "25063": 38.946537439, + "25064": 39.1275478552, + "25065": 39.3158174137, + "25066": 39.5113242495, + "25067": 39.714048044, + "25068": 39.9239682775, + "25069": 40.1410645778, + "25070": 40.3653166496, + "25071": 40.5967064564, + "25072": 40.8352839127, + "25073": 41.0810494614, + "25074": 41.3339787377, + "25075": 41.594052439, + "25076": 41.8612503542, + "25077": 42.1355525559, + "25078": 42.4169391616, + "25079": 42.7053903804, + "25080": 43.0008865034, + "25081": 43.3034079042, + "25082": 43.6097525389, + "25083": 43.9187502189, + "25084": 44.2305241089, + "25085": 44.5450418862, + "25086": 44.8623023545, + "25087": 45.182298143, + "25088": 45.5050231616, + "25089": 45.8304711099, + "25090": 46.1586357752, + "25091": 46.4895109716, + "25092": 46.8226117293, + "25093": 47.1577041926, + "25094": 47.494787509, + "25095": 47.8338571717, + "25096": 48.1749094377, + "25097": 48.5179404444, + "25098": 48.8629463855, + "25099": 49.2099234752, + "25100": 49.5588679547, + "25101": 49.9097760907, + "25102": 50.2597032308, + "25103": 50.606830943, + "25104": 50.9510640919, + "25105": 51.2924350622, + "25106": 51.6309507228, + "25107": 51.9666230151, + "25108": 52.2994628381, + "25109": 52.6294812705, + "25110": 52.956689326, + "25111": 53.2810980019, + "25112": 53.602274283, + "25113": 53.9198737728, + "25114": 54.2338675143, + "25115": 54.5442745822, + "25116": 54.8511044102, + "25117": 55.1543683185, + "25118": 55.4540772099, + "25119": 55.7502420304, + "25120": 56.0428736773, + "25121": 56.3319830176, + "25122": 56.6169530388, + "25123": 56.897145408, + "25124": 57.1724736181, + "25125": 57.4429728309, + "25126": 57.7086538341, + "25127": 57.9695322323, + "25128": 58.2256226121, + "25129": 58.4769397092, + "25130": 58.7234981748, + "25131": 58.9653126227, + "25132": 59.2023196722, + "25133": 59.4344278712, + "25134": 59.6616320795, + "25135": 59.8839513859, + "25136": 60.1013999807, + "25137": 60.3139929772, + "25138": 60.521745249, + "25139": 60.724671662, + "25140": 60.9227870287, + "25141": 61.116106117, + "25142": 61.3050220796, + "25143": 61.4902442119, + "25144": 61.6719358921, + "25145": 61.8500775797, + "25146": 62.0246862548, + "25147": 62.1957715569, + "25148": 62.363344552, + "25149": 62.5274159806, + "25150": 62.6879966077, + "25151": 62.8450971531, + "25152": 62.9987846939, + "25153": 63.1492163293, + "25154": 63.2964376016, + "25155": 63.4404512679, + "25156": 63.5812686, + "25157": 63.7188991307, + "25158": 63.8533527035, + "25159": 63.9846390633, + "25160": 64.1127679377, + "25161": 64.2377490214, + "25162": 64.3598112822, + "25163": 64.4798440548, + "25164": 64.5980848916, + "25165": 64.714493073, + "25166": 64.8290834785, + "25167": 64.941859853, + "25168": 65.052828146, + "25169": 65.1619938447, + "25170": 65.2693625079, + "25171": 65.3749396589, + "25172": 65.4787608181, + "25173": 65.581057973, + "25174": 65.6818993133, + "25175": 65.7812766265, + "25176": 65.8791969539, + "25177": 65.9756642708, + "25178": 66.0706831478, + "25179": 66.1642580198, + "25180": 66.2563933316, + "25181": 66.3470935091, + "25182": 66.4363774852, + "25183": 66.5247186253, + "25184": 66.6122584167, + "25185": 66.6989716318, + "25186": 66.7848663557, + "25187": 66.8699440051, + "25188": 66.9542073199, + "25189": 67.0376587657, + "25190": 67.1203008533, + "25191": 67.2021360747, + "25192": 67.2831669158, + "25193": 67.3635236121, + "25194": 67.4432548279, + "25195": 67.5223573023, + "25196": 67.6008340121, + "25197": 67.6786866793, + "25198": 67.7559172695, + "25199": 67.8325276918, + "25200": 67.9085198594, + "25201": 67.9838956768, + "25202": 68.0586570432, + "25203": 68.132880886, + "25204": 68.2066047812, + "25205": 68.2798297908, + "25206": 68.3525575488, + "25207": 68.4247895694, + "25208": 68.4965273844, + "25209": 68.5677725164, + "25210": 68.6385264838, + "25211": 68.7087908002, + "25212": 68.7785669742, + "25213": 68.8478623779, + "25214": 68.9166821314, + "25215": 68.9850279115, + "25216": 69.0529011356, + "25217": 69.1203032672, + "25218": 69.1872357553, + "25219": 69.2537000459, + "25220": 69.3196975803, + "25221": 69.385229795, + "25222": 69.450298122, + "25223": 69.5148327044, + "25224": 69.578778147, + "25225": 69.6421298393, + "25226": 69.7048908891, + "25227": 69.7670628547, + "25228": 69.8286475972, + "25229": 69.8896469106, + "25230": 69.9500625954, + "25231": 70.0098964441, + "25232": 70.0691502441, + "25233": 70.1278045148, + "25234": 70.185839049, + "25235": 70.2432523231, + "25236": 70.3000469298, + "25237": 70.3562246317, + "25238": 70.4117873505, + "25239": 70.4667369689, + "25240": 70.5210753704, + "25241": 70.5748044314, + "25242": 70.6279260227, + "25243": 70.680361071, + "25244": 70.7320013945, + "25245": 70.7828284769, + "25246": 70.8328490008, + "25247": 70.882064603, + "25248": 70.9304779199, + "25249": 70.9780913787, + "25250": 71.0249074395, + "25251": 71.0709285468, + "25252": 71.1161571389, + "25253": 71.1605733433, + "25254": 71.204138645, + "25255": 71.246846693, + "25256": 71.2887019072, + "25257": 71.3297065445, + "25258": 71.369863285, + "25259": 71.4091747141, + "25260": 71.4476434268, + "25261": 71.4852720066, + "25262": 71.5220630298, + "25263": 71.5579689925, + "25264": 71.5928624152, + "25265": 71.6267148412, + "25266": 71.6595357692, + "25267": 71.6913270998, + "25268": 71.7220922405, + "25269": 71.7518342859, + "25270": 71.7805563816, + "25271": 71.8082616515, + "25272": 71.834953212, + "25273": 71.8606204354, + "25274": 71.885211325, + "25275": 71.9087146926, + "25276": 71.9311367657, + "25277": 71.9524802789, + "25278": 71.9727486523, + "25279": 71.9919451571, + "25280": 72.0100730818, + "25281": 72.0271356995, + "25282": 72.0431362741, + "25283": 72.058033582, + "25284": 72.0714951938, + "25285": 72.0834313966, + "25286": 72.0938656719, + "25287": 72.1027988592, + "25288": 72.1102363063, + "25289": 72.1161824428, + "25290": 72.1206418651, + "25291": 72.1236191191, + "25292": 72.1251187438, + "25293": 72.1251402548, + "25294": 72.1235264148, + "25295": 72.1202344328, + "25296": 72.1152789993, + "25297": 72.1086632964, + "25298": 72.1003927876, + "25299": 72.0904724613, + "25300": 72.0789073825, + "25301": 72.0657025816, + "25302": 72.0508630775, + "25303": 72.0343938727, + "25304": 72.0163258, + "25305": 71.9966731765, + "25306": 71.9754398005, + "25307": 71.9526307185, + "25308": 71.9282507096, + "25309": 71.902304588, + "25310": 71.8747971432, + "25311": 71.8457331516, + "25312": 71.8151173745, + "25313": 71.7829545582, + "25314": 71.74926575, + "25315": 71.7140634269, + "25316": 71.6773521133, + "25317": 71.6391364444, + "25318": 71.599421016, + "25319": 71.5582104148, + "25320": 71.515509212, + "25321": 71.4713219646, + "25322": 71.4256532157, + "25323": 71.378507494, + "25324": 71.3300699018, + "25325": 71.2804563734, + "25326": 71.2296770124, + "25327": 71.1777340792, + "25328": 71.1246313888, + "25329": 71.0703724317, + "25330": 71.0149607502, + "25331": 70.9583998628, + "25332": 70.9006932797, + "25333": 70.8418444994, + "25334": 70.7820591071, + "25335": 70.721501664, + "25336": 70.6601927284, + "25337": 70.5981309536, + "25338": 70.5353193624, + "25339": 70.4717600954, + "25340": 70.4074554611, + "25341": 70.3424077259, + "25342": 70.2766191558, + "25343": 70.2100920085, + "25344": 70.1430114228, + "25345": 70.0755687308, + "25346": 70.0077945046, + "25347": 69.9396838581, + "25348": 69.8712389885, + "25349": 69.8024606734, + "25350": 69.7333499703, + "25351": 69.6639078769, + "25352": 69.594135399, + "25353": 69.524033537, + "25354": 69.4536857691, + "25355": 69.3832052271, + "25356": 69.3126136606, + "25357": 69.2419071307, + "25358": 69.1710868317, + "25359": 69.1001529305, + "25360": 69.0291057982, + "25361": 68.9579457636, + "25362": 68.8866731628, + "25363": 68.815288329, + "25364": 68.7438482082, + "25365": 68.6724570472, + "25366": 68.601137429, + "25367": 68.5298845778, + "25368": 68.4586991869, + "25369": 68.3875808572, + "25370": 68.3165294089, + "25371": 68.245544619, + "25372": 68.174626274, + "25373": 68.1037741593, + "25374": 68.0330137663, + "25375": 67.9624116394, + "25376": 67.8919834853, + "25377": 67.8217255223, + "25378": 67.7516378658, + "25379": 67.6817198544, + "25380": 67.611970984, + "25381": 67.5423907209, + "25382": 67.4729785393, + "25383": 67.403733914, + "25384": 67.3346602838, + "25385": 67.265773022, + "25386": 67.1970757271, + "25387": 67.1285669716, + "25388": 67.0602463348, + "25389": 66.9921131972, + "25390": 66.924166981, + "25391": 66.8564071024, + "25392": 66.7888329809, + "25393": 66.7214440374, + "25394": 66.6542409736, + "25395": 66.5872328631, + "25396": 66.5204218044, + "25397": 66.4538066434, + "25398": 66.3873868784, + "25399": 66.3211618798, + "25400": 66.2551310457, + "25401": 66.1892937709, + "25402": 66.1236494532, + "25403": 66.0581974921, + "25404": 65.9929366499, + "25405": 65.927845686, + "25406": 65.8629179704, + "25407": 65.798154213, + "25408": 65.7335536586, + "25409": 65.6691158467, + "25410": 65.6048402599, + "25411": 65.540726394, + "25412": 65.4767737442, + "25413": 65.4129818077, + "25414": 65.3493500831, + "25415": 65.2858627925, + "25416": 65.2225139135, + "25417": 65.1593036338, + "25418": 65.0962313958, + "25419": 65.0332967927, + "25420": 64.970499388, + "25421": 64.9078387534, + "25422": 64.845314452, + "25423": 64.7829260189, + "25424": 64.7206729475, + "25425": 64.6585247937, + "25426": 64.5964667481, + "25427": 64.5344985078, + "25428": 64.4726195041, + "25429": 64.4108291812, + "25430": 64.3491269435, + "25431": 64.2875121692, + "25432": 64.2259842104, + "25433": 64.164542396, + "25434": 64.1031860342, + "25435": 64.0418839397, + "25436": 63.9806165808, + "25437": 63.9193822678, + "25438": 63.8581806199, + "25439": 63.7970109814, + "25440": 63.7358727399, + "25441": 63.6747652656, + "25442": 63.6136879249, + "25443": 63.5526400801, + "25444": 63.4916210912, + "25445": 63.4306236895, + "25446": 63.3696419519, + "25447": 63.3086746798, + "25448": 63.2477213956, + "25449": 63.1867814827, + "25450": 63.1258543588, + "25451": 63.0649394423, + "25452": 63.0040361608, + "25453": 62.94314395, + "25454": 62.8822622555, + "25455": 62.8213815607, + "25456": 62.7604920562, + "25457": 62.6995918309, + "25458": 62.6386807259, + "25459": 62.5777582476, + "25460": 62.5168239856, + "25461": 62.45587753, + "25462": 62.3949184883, + "25463": 62.3339464826, + "25464": 62.2729611508, + "25465": 62.2119635614, + "25466": 62.1509553083, + "25467": 62.0899364338, + "25468": 62.0289065562, + "25469": 61.9678653988, + "25470": 61.9068126842, + "25471": 61.8457481554, + "25472": 61.7846715719, + "25473": 61.7235827103, + "25474": 61.6624813641, + "25475": 61.6013684233, + "25476": 61.5402456962, + "25477": 61.4791134511, + "25478": 61.4179714511, + "25479": 61.3568195798, + "25480": 61.295657716, + "25481": 61.2344857584, + "25482": 61.1733036206, + "25483": 61.1121112311, + "25484": 61.0509085335, + "25485": 60.9896994283, + "25486": 60.9284941272, + "25487": 60.8672950573, + "25488": 60.8061016698, + "25489": 60.744914026, + "25490": 60.6837320806, + "25491": 60.6225558237, + "25492": 60.5613852525, + "25493": 60.5002203757, + "25494": 60.4390612128, + "25495": 60.377910506, + "25496": 60.3167791765, + "25497": 60.2556700921, + "25498": 60.194582687, + "25499": 60.1335170917, + "25500": 60.0724733068, + "25501": 60.0114513678, + "25502": 59.9504513115, + "25503": 59.8894731821, + "25504": 59.8285170295, + "25505": 59.7675844444, + "25506": 59.7066870717, + "25507": 59.6458281846, + "25508": 59.5850071539, + "25509": 59.5242241354, + "25510": 59.4634791331, + "25511": 59.4027721853, + "25512": 59.3421033278, + "25513": 59.2814726005, + "25514": 59.220880046, + "25515": 59.1603261081, + "25516": 59.099823711, + "25517": 59.0393766687, + "25518": 58.9789842208, + "25519": 58.9186465234, + "25520": 58.858363552, + "25521": 58.7981353206, + "25522": 58.7379618375, + "25523": 58.6778431143, + "25524": 58.6177791638, + "25525": 58.5577700009, + "25526": 58.4978229118, + "25527": 58.4379405432, + "25528": 58.3781225886, + "25529": 58.3183690986, + "25530": 58.2586800543, + "25531": 58.1990554526, + "25532": 58.1394952892, + "25533": 58.0799995619, + "25534": 58.0205682698, + "25535": 57.961201414, + "25536": 57.9019060015, + "25537": 57.842685368, + "25538": 57.7835394425, + "25539": 57.7244682094, + "25540": 57.6654716438, + "25541": 57.6065497245, + "25542": 57.5477024313, + "25543": 57.4889297452, + "25544": 57.4302316486, + "25545": 57.3716081249, + "25546": 57.3130552101, + "25547": 57.2545704527, + "25548": 57.1961537163, + "25549": 57.1378050358, + "25550": 57.0795244126, + "25551": 57.021311855, + "25552": 56.96316737, + "25553": 56.9050909647, + "25554": 56.8470826456, + "25555": 56.7891424188, + "25556": 56.7312772861, + "25557": 56.6734928283, + "25558": 56.61578964, + "25559": 56.5581675562, + "25560": 56.5006265618, + "25561": 56.4431666092, + "25562": 56.385787655, + "25563": 56.328489652, + "25564": 56.2712725504, + "25565": 56.2141362977, + "25566": 56.1570801303, + "25567": 56.1001032571, + "25568": 56.0432055057, + "25569": 55.9863868367, + "25570": 55.9296471793, + "25571": 55.8729864639, + "25572": 55.8164046152, + "25573": 55.7599015538, + "25574": 55.7034771951, + "25575": 55.64713145, + "25576": 55.5908634314, + "25577": 55.5346719622, + "25578": 55.4785567384, + "25579": 55.4225176979, + "25580": 55.3665547238, + "25581": 55.310667704, + "25582": 55.2548565195, + "25583": 55.1991210463, + "25584": 55.1434611556, + "25585": 55.0878767137, + "25586": 55.0323667233, + "25587": 54.976929465, + "25588": 54.9215644539, + "25589": 54.8662716158, + "25590": 54.8110507898, + "25591": 54.7559018275, + "25592": 54.7008245742, + "25593": 54.6458188722, + "25594": 54.5908845612, + "25595": 54.5360214781, + "25596": 54.4812285036, + "25597": 54.4265029926, + "25598": 54.3718441855, + "25599": 54.317252045, + "25600": 54.2627263879, + "25601": 54.2082670599, + "25602": 54.1538739003, + "25603": 54.0995467498, + "25604": 54.0452854495, + "25605": 53.9910898412, + "25606": 53.9369594153, + "25607": 53.8828926019, + "25608": 53.8288888806, + "25609": 53.7749481806, + "25610": 53.7210703438, + "25611": 53.6672552323, + "25612": 53.6135027078, + "25613": 53.5598126352, + "25614": 53.5061848825, + "25615": 53.4526193211, + "25616": 53.3991155237, + "25617": 53.3456710895, + "25618": 53.2922852692, + "25619": 53.2389580854, + "25620": 53.1856894104, + "25621": 53.1324791508, + "25622": 53.0793272103, + "25623": 53.0262334973, + "25624": 52.9731979228, + "25625": 52.920220401, + "25626": 52.8673008278, + "25627": 52.8144384444, + "25628": 52.7616329743, + "25629": 52.708884384, + "25630": 52.6561925936, + "25631": 52.603557534, + "25632": 52.5509791352, + "25633": 52.4984573283, + "25634": 52.4459920444, + "25635": 52.3935832146, + "25636": 52.3412307691, + "25637": 52.288933715, + "25638": 52.2366916466, + "25639": 52.1845045308, + "25640": 52.1323722869, + "25641": 52.0802948404, + "25642": 52.0282721114, + "25643": 51.9763040163, + "25644": 51.9243904672, + "25645": 51.8725313713, + "25646": 51.8207266304, + "25647": 51.7689762996, + "25648": 51.7172803445, + "25649": 51.6656386466, + "25650": 51.6140510818, + "25651": 51.5625175182, + "25652": 51.5110378166, + "25653": 51.4596118296, + "25654": 51.4082394016, + "25655": 51.3569203686, + "25656": 51.3056545578, + "25657": 51.2544354701, + "25658": 51.2032590166, + "25659": 51.1521248011, + "25660": 51.1010326922, + "25661": 51.0499824942, + "25662": 50.9989740136, + "25663": 50.948007045, + "25664": 50.8970813747, + "25665": 50.84619678, + "25666": 50.7953530294, + "25667": 50.7445564076, + "25668": 50.693811867, + "25669": 50.6431197034, + "25670": 50.5924794981, + "25671": 50.5418909669, + "25672": 50.4913537905, + "25673": 50.4408676492, + "25674": 50.3904322164, + "25675": 50.3400471608, + "25676": 50.2897121461, + "25677": 50.2394278781, + "25678": 50.1891950942, + "25679": 50.1390136099, + "25680": 50.0888830361, + "25681": 50.0388030222, + "25682": 49.988773209, + "25683": 49.9387932383, + "25684": 49.8888627524, + "25685": 49.8389813944, + "25686": 49.7891488094, + "25687": 49.7393662255, + "25688": 49.6896354421, + "25689": 49.6399565114, + "25690": 49.5903289975, + "25691": 49.5407525683, + "25692": 49.4912268773, + "25693": 49.4417515885, + "25694": 49.3923263717, + "25695": 49.3429509043, + "25696": 49.2936248715, + "25697": 49.2443508598, + "25698": 49.1951338816, + "25699": 49.1459747853, + "25700": 49.0968730315, + "25701": 49.0478283698, + "25702": 48.9988405046, + "25703": 48.9499091619, + "25704": 48.9010342857, + "25705": 48.8522178936, + "25706": 48.8034630918, + "25707": 48.7547721637, + "25708": 48.7061460188, + "25709": 48.6575872516, + "25710": 48.6090990969, + "25711": 48.560684652, + "25712": 48.5123470302, + "25713": 48.4640893281, + "25714": 48.4159146305, + "25715": 48.3678260075, + "25716": 48.3198265128, + "25717": 48.2719175713, + "25718": 48.2240957354, + "25719": 48.1763623262, + "25720": 48.1287206868, + "25721": 48.0811737277, + "25722": 48.033724415, + "25723": 47.9863756712, + "25724": 47.9391303927, + "25725": 47.8919914447, + "25726": 47.8449616598, + "25727": 47.7980434657, + "25728": 47.7512368284, + "25729": 47.704543698, + "25730": 47.6579669283, + "25731": 47.611509143, + "25732": 47.5651729606, + "25733": 47.5189609467, + "25734": 47.4728756216, + "25735": 47.4269194566, + "25736": 47.3810948724, + "25737": 47.3354040081, + "25738": 47.2898417758, + "25739": 47.2444082695, + "25740": 47.1991061558, + "25741": 47.1539375155, + "25742": 47.1089044728, + "25743": 47.064009067, + "25744": 47.0192532762, + "25745": 46.9746390105, + "25746": 46.9301681112, + "25747": 46.8858423487, + "25748": 46.8416566339, + "25749": 46.7976101369, + "25750": 46.7537047104, + "25751": 46.7099417983, + "25752": 46.6663228321, + "25753": 46.6228491503, + "25754": 46.5795220126, + "25755": 46.5363425958, + "25756": 46.4933119929, + "25757": 46.450431212, + "25758": 46.4076833153, + "25759": 46.3650606434, + "25760": 46.3225641391, + "25761": 46.2801945197, + "25762": 46.2379524404, + "25763": 46.1958384613, + "25764": 46.1538530535, + "25765": 46.1119965973, + "25766": 46.0702693823, + "25767": 46.0286716072, + "25768": 45.9871889866, + "25769": 45.945812656, + "25770": 45.904542094, + "25771": 45.8633773126, + "25772": 45.8223181089, + "25773": 45.7813642151, + "25774": 45.7405152691, + "25775": 45.6997708214, + "25776": 45.6591303344, + "25777": 45.6185931836, + "25778": 45.5781567514, + "25779": 45.5378187221, + "25780": 45.4975780552, + "25781": 45.4574338336, + "25782": 45.4173850176, + "25783": 45.3774304955, + "25784": 45.3375690751, + "25785": 45.297799487, + "25786": 45.258120386, + "25787": 45.2185303521, + "25788": 45.1790282997, + "25789": 45.1396130854, + "25790": 45.1002831387, + "25791": 45.0610367427, + "25792": 45.0218721299, + "25793": 44.9827874653, + "25794": 44.9437808517, + "25795": 44.9048503309, + "25796": 44.8659938856, + "25797": 44.8272094411, + "25798": 44.7884961935, + "25799": 44.7498537621, + "25800": 44.7112802444, + "25801": 44.6727732748, + "25802": 44.6343305214, + "25803": 44.5959495894, + "25804": 44.557628042, + "25805": 44.5193633989, + "25806": 44.4811531381, + "25807": 44.4429946979, + "25808": 44.4048870407, + "25809": 44.3668303982, + "25810": 44.3288227136, + "25811": 44.2908611427, + "25812": 44.2529429611, + "25813": 44.2150653848, + "25814": 44.1772256085, + "25815": 44.1394207998, + "25816": 44.1016481027, + "25817": 44.0639046391, + "25818": 44.0261927675, + "25819": 43.9885232233, + "25820": 43.9508963292, + "25821": 43.9133084082, + "25822": 43.8757565678, + "25823": 43.8382377467, + "25824": 43.8007489079, + "25825": 43.7632870027, + "25826": 43.7258489808, + "25827": 43.6884317916, + "25828": 43.6510335278, + "25829": 43.6136557249, + "25830": 43.5762965333, + "25831": 43.5389526654, + "25832": 43.5016211368, + "25833": 43.4642989213, + "25834": 43.4269830242, + "25835": 43.3896704707, + "25836": 43.3523583129, + "25837": 43.3150436317, + "25838": 43.2777264793, + "25839": 43.2404261808, + "25840": 43.203146066, + "25841": 43.1658820291, + "25842": 43.1286315064, + "25843": 43.0913916858, + "25844": 43.0541598691, + "25845": 43.0169334036, + "25846": 42.9797097003, + "25847": 42.9424862341, + "25848": 42.9052607048, + "25849": 42.8680357952, + "25850": 42.8308106755, + "25851": 42.7935827918, + "25852": 42.7563500307, + "25853": 42.7191102901, + "25854": 42.6818615678, + "25855": 42.6446019473, + "25856": 42.6073296028, + "25857": 42.5700428009, + "25858": 42.5327399024, + "25859": 42.4954407792, + "25860": 42.458151728, + "25861": 42.4208704409, + "25862": 42.3835957556, + "25863": 42.3463263997, + "25864": 42.3090612426, + "25865": 42.2717992444, + "25866": 42.2345394659, + "25867": 42.197281066, + "25868": 42.1600233011, + "25869": 42.1227687107, + "25870": 42.0855182579, + "25871": 42.0482714472, + "25872": 42.0110278986, + "25873": 41.9737873152, + "25874": 41.9365494872, + "25875": 41.8993142872, + "25876": 41.8620816683, + "25877": 41.8248516601, + "25878": 41.7876243657, + "25879": 41.7504074096, + "25880": 41.7132056291, + "25881": 41.6760195582, + "25882": 41.6388494667, + "25883": 41.6016957441, + "25884": 41.5645588179, + "25885": 41.5274391658, + "25886": 41.4903373079, + "25887": 41.4532538039, + "25888": 41.416189249, + "25889": 41.3791511877, + "25890": 41.3421457887, + "25891": 41.3051743167, + "25892": 41.2682373078, + "25893": 41.2313354659, + "25894": 41.1944694801, + "25895": 41.1576400569, + "25896": 41.1208479114, + "25897": 41.0840937654, + "25898": 41.0473783453, + "25899": 41.0107250258, + "25900": 40.9741579505, + "25901": 40.9376813569, + "25902": 40.9012950909, + "25903": 40.8649998733, + "25904": 40.8287962466, + "25905": 40.7926847841, + "25906": 40.7566660483, + "25907": 40.7207405989, + "25908": 40.6849089914, + "25909": 40.6491708233, + "25910": 40.6135253461, + "25911": 40.5779728657, + "25912": 40.5425139835, + "25913": 40.5071492404, + "25914": 40.4718791894, + "25915": 40.4367043822, + "25916": 40.4016253728, + "25917": 40.3666427184, + "25918": 40.3317569802, + "25919": 40.2969584825, + "25920": 40.2622284462, + "25921": 40.2275617001, + "25922": 40.1929571384, + "25923": 40.1584124036, + "25924": 40.1239253278, + "25925": 40.089493716, + "25926": 40.0551153908, + "25927": 40.0207881841, + "25928": 39.9865099391, + "25929": 39.9522777944, + "25930": 39.9180877565, + "25931": 39.8839372611, + "25932": 39.8498242998, + "25933": 39.8157467693, + "25934": 39.7817026012, + "25935": 39.7476897376, + "25936": 39.7137061357, + "25937": 39.6797497676, + "25938": 39.6458186213, + "25939": 39.6119054163, + "25940": 39.5779869767, + "25941": 39.544055847, + "25942": 39.510111293, + "25943": 39.4761512577, + "25944": 39.4421739698, + "25945": 39.4081776224, + "25946": 39.374160438, + "25947": 39.3401206557, + "25948": 39.3060565346, + "25949": 39.271966244, + "25950": 39.237847259, + "25951": 39.2036976705, + "25952": 39.1695158686, + "25953": 39.1353002085, + "25954": 39.1010490787, + "25955": 39.0667608871, + "25956": 39.0324340646, + "25957": 38.9980670645, + "25958": 38.9636583635, + "25959": 38.9292066615, + "25960": 38.894716939, + "25961": 38.8601896316, + "25962": 38.8256229042, + "25963": 38.7910154052, + "25964": 38.7563657168, + "25965": 38.7216724646, + "25966": 38.6869342969, + "25967": 38.6521498887, + "25968": 38.6173179412, + "25969": 38.5824371826, + "25970": 38.5475072163, + "25971": 38.5125271317, + "25972": 38.477495701, + "25973": 38.4424117661, + "25974": 38.4072741885, + "25975": 38.3720818602, + "25976": 38.3368337016, + "25977": 38.301528662, + "25978": 38.2661657202, + "25979": 38.2307438845, + "25980": 38.1952805973, + "25981": 38.1597836807, + "25982": 38.124252032, + "25983": 38.0886847211, + "25984": 38.0530808203, + "25985": 38.0174394387, + "25986": 37.9817597158, + "25987": 37.9460408225, + "25988": 37.9102819615, + "25989": 37.8744823674, + "25990": 37.8386408201, + "25991": 37.8027563178, + "25992": 37.7668281766, + "25993": 37.730855766, + "25994": 37.6948384838, + "25995": 37.6587757614, + "25996": 37.622667063, + "25997": 37.5865118856, + "25998": 37.5503097595, + "25999": 37.5140602478, + "26000": 41.4238906422, + "26001": 41.4547064232, + "26002": 41.4855326, + "26003": 41.5163699671, + "26004": 41.547219319, + "26005": 41.5780814476, + "26006": 41.6089571425, + "26007": 41.6398471895, + "26008": 41.6707523654, + "26009": 41.7016734343, + "26010": 41.7326111506, + "26011": 41.763566252, + "26012": 41.7945394622, + "26013": 41.8255314853, + "26014": 41.8565430081, + "26015": 41.8875746936, + "26016": 41.9186271832, + "26017": 41.9497010919, + "26018": 41.9807970044, + "26019": 42.0119154755, + "26020": 42.0430570266, + "26021": 42.0742225158, + "26022": 42.1054135682, + "26023": 42.1366323074, + "26024": 42.1678809156, + "26025": 42.1991615223, + "26026": 42.2304762133, + "26027": 42.2618270262, + "26028": 42.2932159484, + "26029": 42.3246449142, + "26030": 42.3561158028, + "26031": 42.3876304482, + "26032": 42.4191906571, + "26033": 42.4507981943, + "26034": 42.48245474, + "26035": 42.5141618594, + "26036": 42.5459209988, + "26037": 42.577733494, + "26038": 42.6096005803, + "26039": 42.6415234, + "26040": 42.6735030093, + "26041": 42.7055407583, + "26042": 42.7376391925, + "26043": 42.7698018402, + "26044": 42.8020323993, + "26045": 42.8343344952, + "26046": 42.8667117071, + "26047": 42.8991675701, + "26048": 42.9317055768, + "26049": 42.9643291806, + "26050": 42.997041798, + "26051": 43.0298468324, + "26052": 43.0627477572, + "26053": 43.0957481089, + "26054": 43.1288514207, + "26055": 43.1620612028, + "26056": 43.1953809474, + "26057": 43.2288141314, + "26058": 43.2623642192, + "26059": 43.2960346653, + "26060": 43.3298289171, + "26061": 43.3637505114, + "26062": 43.3978037702, + "26063": 43.4319937988, + "26064": 43.4663258962, + "26065": 43.5008053563, + "26066": 43.5354374856, + "26067": 43.5702276035, + "26068": 43.6051810409, + "26069": 43.6403031407, + "26070": 43.6755992571, + "26071": 43.7110747582, + "26072": 43.7467351185, + "26073": 43.7825859255, + "26074": 43.8186328031, + "26075": 43.8548813838, + "26076": 43.8913373105, + "26077": 43.9280062358, + "26078": 43.964893821, + "26079": 44.0020057355, + "26080": 44.0393476559, + "26081": 44.0769252649, + "26082": 44.1147436378, + "26083": 44.1528071372, + "26084": 44.1911199126, + "26085": 44.2296861145, + "26086": 44.2685098902, + "26087": 44.3075953825, + "26088": 44.346946731, + "26089": 44.3865680713, + "26090": 44.4264635355, + "26091": 44.4666372517, + "26092": 44.5070932509, + "26093": 44.5478354402, + "26094": 44.5888676768, + "26095": 44.6301938086, + "26096": 44.6718176761, + "26097": 44.7137431116, + "26098": 44.7559739385, + "26099": 44.7985139709, + "26100": 44.841367013, + "26101": 44.8845368583, + "26102": 44.9280262146, + "26103": 44.971836249, + "26104": 45.0159674427, + "26105": 45.0604201948, + "26106": 45.1051948972, + "26107": 45.1502919257, + "26108": 45.1957116419, + "26109": 45.2414543949, + "26110": 45.2875205212, + "26111": 45.3339103459, + "26112": 45.3806239654, + "26113": 45.4276615009, + "26114": 45.4750230929, + "26115": 45.5227088498, + "26116": 45.5707188704, + "26117": 45.6190532428, + "26118": 45.667712045, + "26119": 45.7166953451, + "26120": 45.7660032023, + "26121": 45.8156356668, + "26122": 45.8655920603, + "26123": 45.9158703746, + "26124": 45.966467818, + "26125": 46.0173814715, + "26126": 46.068608428, + "26127": 46.1201457785, + "26128": 46.1719906134, + "26129": 46.2241400238, + "26130": 46.276591102, + "26131": 46.3293409423, + "26132": 46.3823865521, + "26133": 46.4357247488, + "26134": 46.4893522251, + "26135": 46.543265655, + "26136": 46.5974617206, + "26137": 46.6519371098, + "26138": 46.7066885167, + "26139": 46.7617126424, + "26140": 46.8170061953, + "26141": 46.8725658917, + "26142": 46.9283882885, + "26143": 46.9844695098, + "26144": 47.0408053624, + "26145": 47.0973916018, + "26146": 47.1542240045, + "26147": 47.2112983611, + "26148": 47.2686104763, + "26149": 47.3261561699, + "26150": 47.3839312761, + "26151": 47.4419316443, + "26152": 47.5001531138, + "26153": 47.5585914557, + "26154": 47.6172423872, + "26155": 47.6761016269, + "26156": 47.7351649115, + "26157": 47.7944279935, + "26158": 47.8538866418, + "26159": 47.9135366414, + "26160": 47.9733737935, + "26161": 48.0333939153, + "26162": 48.0935928692, + "26163": 48.1539666722, + "26164": 48.2145114825, + "26165": 48.2752235022, + "26166": 48.3360989456, + "26167": 48.3971340421, + "26168": 48.4583250356, + "26169": 48.519668185, + "26170": 48.5811597629, + "26171": 48.6427960563, + "26172": 48.7045733699, + "26173": 48.7664880557, + "26174": 48.8285365121, + "26175": 48.8907151588, + "26176": 48.9530204269, + "26177": 49.01544876, + "26178": 49.0779966142, + "26179": 49.140660457, + "26180": 49.2034367677, + "26181": 49.2663220371, + "26182": 49.3293127775, + "26183": 49.3924058657, + "26184": 49.4555985663, + "26185": 49.5188882438, + "26186": 49.5822722602, + "26187": 49.6457479846, + "26188": 49.7093127934, + "26189": 49.7729640692, + "26190": 49.8366992012, + "26191": 49.9005155848, + "26192": 49.964410622, + "26193": 50.0283818166, + "26194": 50.0924267901, + "26195": 50.1565432017, + "26196": 50.2207287153, + "26197": 50.2849809997, + "26198": 50.349297729, + "26199": 50.4136765828, + "26200": 50.478115246, + "26201": 50.5426114088, + "26202": 50.6071627671, + "26203": 50.6717673119, + "26204": 50.736423409, + "26205": 50.8011295624, + "26206": 50.8658842852, + "26207": 50.9306860915, + "26208": 50.9955334988, + "26209": 51.0604250279, + "26210": 51.1253592028, + "26211": 51.1903345509, + "26212": 51.2553496038, + "26213": 51.3204029507, + "26214": 51.3854932618, + "26215": 51.4506192447, + "26216": 51.5157796143, + "26217": 51.5809730888, + "26218": 51.6461983911, + "26219": 51.7114542482, + "26220": 51.7767393919, + "26221": 51.8420525586, + "26222": 51.9073924895, + "26223": 51.9727581143, + "26224": 52.0381486605, + "26225": 52.1035635085, + "26226": 52.1690020605, + "26227": 52.2344637183, + "26228": 52.2999478858, + "26229": 52.3654539693, + "26230": 52.4309813776, + "26231": 52.4965295217, + "26232": 52.5620978156, + "26233": 52.6276857127, + "26234": 52.6932927363, + "26235": 52.7589184522, + "26236": 52.8245624343, + "26237": 52.8902242576, + "26238": 52.9559034994, + "26239": 53.0215997387, + "26240": 53.0873125564, + "26241": 53.1530415356, + "26242": 53.2187862607, + "26243": 53.2845463501, + "26244": 53.3503214923, + "26245": 53.4161114222, + "26246": 53.4819158825, + "26247": 53.5477346148, + "26248": 53.6135673604, + "26249": 53.67941386, + "26250": 53.7452738538, + "26251": 53.8111470818, + "26252": 53.877033283, + "26253": 53.9429322046, + "26254": 54.0088436158, + "26255": 54.0747673017, + "26256": 54.1407030492, + "26257": 54.2066506428, + "26258": 54.2726098655, + "26259": 54.3385804983, + "26260": 54.4045623199, + "26261": 54.4705551073, + "26262": 54.5365586348, + "26263": 54.6025726588, + "26264": 54.6685968789, + "26265": 54.7346309471, + "26266": 54.8006745026, + "26267": 54.8667271824, + "26268": 54.9327886201, + "26269": 54.9988584465, + "26270": 55.0649362892, + "26271": 55.1310217729, + "26272": 55.1971145194, + "26273": 55.2632141432, + "26274": 55.3293202348, + "26275": 55.3954323622, + "26276": 55.4615500862, + "26277": 55.5276729655, + "26278": 55.5938005561, + "26279": 55.6599324116, + "26280": 55.7260680833, + "26281": 55.7922071206, + "26282": 55.8583490707, + "26283": 55.9244934572, + "26284": 55.9906396191, + "26285": 56.0567867123, + "26286": 56.1229338484, + "26287": 56.1890801417, + "26288": 56.2552247049, + "26289": 56.3213666501, + "26290": 56.387505089, + "26291": 56.453639133, + "26292": 56.519767894, + "26293": 56.5858904821, + "26294": 56.652005926, + "26295": 56.7181131677, + "26296": 56.7842111287, + "26297": 56.8502987338, + "26298": 56.9163749096, + "26299": 56.9824385843, + "26300": 57.0484886886, + "26301": 57.1145241555, + "26302": 57.1805439205, + "26303": 57.2465469223, + "26304": 57.312531939, + "26305": 57.3784975661, + "26306": 57.4444423624, + "26307": 57.5103649029, + "26308": 57.5762637505, + "26309": 57.6421374816, + "26310": 57.7079846824, + "26311": 57.7738039467, + "26312": 57.8395938745, + "26313": 57.9053530802, + "26314": 57.9710801401, + "26315": 58.0367735865, + "26316": 58.1024319391, + "26317": 58.168053731, + "26318": 58.2336375046, + "26319": 58.2991818165, + "26320": 58.3646852328, + "26321": 58.4301458044, + "26322": 58.4955626685, + "26323": 58.5609344237, + "26324": 58.6262593905, + "26325": 58.6915360114, + "26326": 58.7567628706, + "26327": 58.8219384402, + "26328": 58.8870613225, + "26329": 58.952130041, + "26330": 59.0171432376, + "26331": 59.0820994826, + "26332": 59.1469974573, + "26333": 59.2118357778, + "26334": 59.2766132132, + "26335": 59.3413285531, + "26336": 59.4059807254, + "26337": 59.4705686121, + "26338": 59.5350911859, + "26339": 59.5995473735, + "26340": 59.6639361863, + "26341": 59.7282565946, + "26342": 59.7925076473, + "26343": 59.8566883567, + "26344": 59.9207978742, + "26345": 59.9848354423, + "26346": 60.0488004415, + "26347": 60.1126922355, + "26348": 60.1765102467, + "26349": 60.2402538725, + "26350": 60.3039225652, + "26351": 60.3675157555, + "26352": 60.4310329233, + "26353": 60.4944735301, + "26354": 60.5578371119, + "26355": 60.6211232539, + "26356": 60.6843316244, + "26357": 60.7474618852, + "26358": 60.8105137322, + "26359": 60.8734868491, + "26360": 60.9363809504, + "26361": 60.9991957396, + "26362": 61.0619309474, + "26363": 61.1245862944, + "26364": 61.1871615708, + "26365": 61.2496566778, + "26366": 61.3120716244, + "26367": 61.374406426, + "26368": 61.4366611101, + "26369": 61.4988356936, + "26370": 61.5609302051, + "26371": 61.6229446638, + "26372": 61.684879098, + "26373": 61.7467335274, + "26374": 61.8085080001, + "26375": 61.8702026267, + "26376": 61.9318175813, + "26377": 61.9933530402, + "26378": 62.0548091805, + "26379": 62.1161861694, + "26380": 62.1774841752, + "26381": 62.2387033565, + "26382": 62.299843872, + "26383": 62.3609058712, + "26384": 62.4218895187, + "26385": 62.4827950475, + "26386": 62.5436227576, + "26387": 62.6043729528, + "26388": 62.66504593, + "26389": 62.7256419747, + "26390": 62.786161367, + "26391": 62.846604377, + "26392": 62.9069712686, + "26393": 62.9672622968, + "26394": 63.0274777165, + "26395": 63.0876178243, + "26396": 63.1476829596, + "26397": 63.2076734633, + "26398": 63.2675896675, + "26399": 63.327431895, + "26400": 63.3872004617, + "26401": 63.4468956749, + "26402": 63.5065178358, + "26403": 63.5660672376, + "26404": 63.6255441687, + "26405": 63.6849489439, + "26406": 63.7442819068, + "26407": 63.8035434029, + "26408": 63.8627337702, + "26409": 63.92185334, + "26410": 63.9809024377, + "26411": 64.0398813833, + "26412": 64.0987904919, + "26413": 64.1576300738, + "26414": 64.2164004351, + "26415": 64.2751018992, + "26416": 64.33373481, + "26417": 64.3922995146, + "26418": 64.4507954192, + "26419": 64.5092239959, + "26420": 64.5675755819, + "26421": 64.6258631574, + "26422": 64.6839902107, + "26423": 64.7417290267, + "26424": 64.7988257211, + "26425": 64.8550407862, + "26426": 64.9101494344, + "26427": 64.9639412552, + "26428": 65.0162199703, + "26429": 65.0668031384, + "26430": 65.1155218403, + "26431": 65.1622203464, + "26432": 65.2067557672, + "26433": 65.2489976918, + "26434": 65.2888278152, + "26435": 65.3261395584, + "26436": 65.3608376818, + "26437": 65.3928378962, + "26438": 65.4220664715, + "26439": 65.4484598459, + "26440": 65.4719642353, + "26441": 65.4925352464, + "26442": 65.5101374932, + "26443": 65.5247442181, + "26444": 65.5363369171, + "26445": 65.544904955, + "26446": 65.5504451932, + "26447": 65.5529616484, + "26448": 65.5524651562, + "26449": 65.5489730333, + "26450": 65.542508744, + "26451": 65.5331015752, + "26452": 65.5207863188, + "26453": 65.5056029616, + "26454": 65.4875963829, + "26455": 65.4668160486, + "26456": 65.4433157151, + "26457": 65.4171531547, + "26458": 65.3883898892, + "26459": 65.3570909226, + "26460": 65.3233244777, + "26461": 65.2871617377, + "26462": 65.2486765939, + "26463": 65.2079453982, + "26464": 65.16504672, + "26465": 65.1200610983, + "26466": 65.0730707973, + "26467": 65.0241595834, + "26468": 64.9734125114, + "26469": 64.9209157058, + "26470": 64.8667561436, + "26471": 64.8110214411, + "26472": 64.7537996452, + "26473": 64.6951790293, + "26474": 64.6352478938, + "26475": 64.5740943642, + "26476": 64.5118061904, + "26477": 64.4484705675, + "26478": 64.3841739685, + "26479": 64.3190019751, + "26480": 64.253039112, + "26481": 64.1863686884, + "26482": 64.1190726472, + "26483": 64.0512314221, + "26484": 63.9829238026, + "26485": 63.9142268054, + "26486": 63.8452155496, + "26487": 63.7759631522, + "26488": 63.7065406388, + "26489": 63.6370168591, + "26490": 63.5674584108, + "26491": 63.4979295743, + "26492": 63.4284922585, + "26493": 63.3592059586, + "26494": 63.2901277235, + "26495": 63.2213121342, + "26496": 63.1528112854, + "26497": 63.0846747898, + "26498": 63.0169497976, + "26499": 62.9496810229, + "26500": 62.8829107767, + "26501": 62.8166790104, + "26502": 62.7510233682, + "26503": 62.685979249, + "26504": 62.6215798756, + "26505": 62.5578563718, + "26506": 62.4948378443, + "26507": 62.4325514729, + "26508": 62.371022608, + "26509": 62.3102748706, + "26510": 62.2503302554, + "26511": 62.1912092369, + "26512": 62.1329308769, + "26513": 62.0755129333, + "26514": 62.0189719688, + "26515": 61.9633234587, + "26516": 61.9085818958, + "26517": 61.8547608939, + "26518": 61.8018732912, + "26519": 61.7499312475, + "26520": 61.6989463362, + "26521": 61.6489296314, + "26522": 61.599891789, + "26523": 61.551843121, + "26524": 61.5047936639, + "26525": 61.4587532385, + "26526": 61.413731506, + "26527": 61.3697380133, + "26528": 61.326782228, + "26529": 61.2848735657, + "26530": 61.2440214101, + "26531": 61.2042351253, + "26532": 61.1655240586, + "26533": 61.1278975364, + "26534": 61.0913648512, + "26535": 61.0559352413, + "26536": 61.0216178662, + "26537": 60.9884217724, + "26538": 60.95635585, + "26539": 60.9254287837, + "26540": 60.8956489991, + "26541": 60.8670246043, + "26542": 60.8395633277, + "26543": 60.8132724503, + "26544": 60.7881587368, + "26545": 60.764228363, + "26546": 60.7414868406, + "26547": 60.7199389426, + "26548": 60.6995886282, + "26549": 60.6804389686, + "26550": 60.6624920733, + "26551": 60.6457490194, + "26552": 60.6302097822, + "26553": 60.6158731702, + "26554": 60.6027367646, + "26555": 60.5907968626, + "26556": 60.5800484357, + "26557": 60.5704850896, + "26558": 60.562099022, + "26559": 60.5548809861, + "26560": 60.5488202681, + "26561": 60.5439046734, + "26562": 60.5401205208, + "26563": 60.5374526469, + "26564": 60.535884419, + "26565": 60.5353977573, + "26566": 60.5359731699, + "26567": 60.5375897954, + "26568": 60.5402254535, + "26569": 60.5438567037, + "26570": 60.5484589149, + "26571": 60.5540063446, + "26572": 60.5604722263, + "26573": 60.5678288657, + "26574": 60.5760477441, + "26575": 60.5850996293, + "26576": 60.5949546954, + "26577": 60.6055826485, + "26578": 60.6169528557, + "26579": 60.6290344766, + "26580": 60.6417965971, + "26581": 60.6552083658, + "26582": 60.6692391334, + "26583": 60.6838585934, + "26584": 60.6990369225, + "26585": 60.7147449202, + "26586": 60.7309541456, + "26587": 60.7476370528, + "26588": 60.7647671196, + "26589": 60.7823189708, + "26590": 60.8002684962, + "26591": 60.8185929619, + "26592": 60.8372711135, + "26593": 60.8562832713, + "26594": 60.8756114159, + "26595": 60.8952392633, + "26596": 60.9151523311, + "26597": 60.9353379938, + "26598": 60.9557855244, + "26599": 60.9764861232, + "26600": 60.9974329347, + "26601": 61.0186210533, + "26602": 61.0400475153, + "26603": 61.0617112786, + "26604": 61.0836131897, + "26605": 61.1057559377, + "26606": 61.1281439956, + "26607": 61.1507835502, + "26608": 61.1736824189, + "26609": 61.1968499556, + "26610": 61.220296945, + "26611": 61.2440354873, + "26612": 61.2680788722, + "26613": 61.2924414441, + "26614": 61.3171384588, + "26615": 61.3421859325, + "26616": 61.3676004837, + "26617": 61.39339917, + "26618": 61.419599319, + "26619": 61.4462183552, + "26620": 61.4732736241, + "26621": 61.5007822144, + "26622": 61.5287607791, + "26623": 61.5572253563, + "26624": 61.5861911923, + "26625": 61.6156725648, + "26626": 61.6456826119, + "26627": 61.6762331624, + "26628": 61.7073345738, + "26629": 61.738995576, + "26630": 61.7712231227, + "26631": 61.80402225, + "26632": 61.8373959455, + "26633": 61.8713450261, + "26634": 61.9058680277, + "26635": 61.9409611062, + "26636": 61.9766179511, + "26637": 62.0128297109, + "26638": 62.0495849335, + "26639": 62.0868695217, + "26640": 62.1246667019, + "26641": 62.1629570085, + "26642": 62.2017182834, + "26643": 62.2409256901, + "26644": 62.2805517447, + "26645": 62.3205663613, + "26646": 62.3609369138, + "26647": 62.4016283119, + "26648": 62.4426030929, + "26649": 62.4838215289, + "26650": 62.5252417478, + "26651": 62.566819868, + "26652": 62.6085101455, + "26653": 62.6502651346, + "26654": 62.692035859, + "26655": 62.7337719944, + "26656": 62.7754220606, + "26657": 62.8169336186, + "26658": 62.8582534783, + "26659": 62.8993279163, + "26660": 62.9401029002, + "26661": 62.980524313, + "26662": 63.0205381821, + "26663": 63.0600909094, + "26664": 63.0991295021, + "26665": 63.1376018029, + "26666": 63.1754567187, + "26667": 63.2126444483, + "26668": 63.249116705, + "26669": 63.2848269308, + "26670": 63.3197305034, + "26671": 63.3537849377, + "26672": 63.3869500783, + "26673": 63.419188283, + "26674": 63.4504645948, + "26675": 63.4807469033, + "26676": 63.5100060931, + "26677": 63.5382161794, + "26678": 63.5653544295, + "26679": 63.5914014713, + "26680": 63.6163413865, + "26681": 63.6401617888, + "26682": 63.662853887, + "26683": 63.6844125317, + "26684": 63.7048362467, + "26685": 63.7241272446, + "26686": 63.7422914259, + "26687": 63.7593383633, + "26688": 63.77528127, + "26689": 63.7901369518, + "26690": 63.8039257442, + "26691": 63.8166714349, + "26692": 63.8284011718, + "26693": 63.8391453577, + "26694": 63.848937531, + "26695": 63.8578142344, + "26696": 63.8658148703, + "26697": 63.8729815465, + "26698": 63.8793589111, + "26699": 63.8849939753, + "26700": 63.889935928, + "26701": 63.8942359414, + "26702": 63.8979469706, + "26703": 63.9011235467, + "26704": 63.9038213354, + "26705": 63.9060946109, + "26706": 63.907994283, + "26707": 63.9095673149, + "26708": 63.9108566228, + "26709": 63.9119010345, + "26710": 63.9127352376, + "26711": 63.9133897292, + "26712": 63.9138907657, + "26713": 63.914260315, + "26714": 63.9145160111, + "26715": 63.9146711129, + "26716": 63.9147344672, + "26717": 63.9147104779, + "26718": 63.9145990803, + "26719": 63.9143957242, + "26720": 63.9140913665, + "26721": 63.9136724721, + "26722": 63.9131210244, + "26723": 63.9124145466, + "26724": 63.9115261337, + "26725": 63.9104244966, + "26726": 63.9090740181, + "26727": 63.9074348216, + "26728": 63.9054628518, + "26729": 63.9031099692, + "26730": 63.9003240593, + "26731": 63.897049154, + "26732": 63.893225566, + "26733": 63.8887900369, + "26734": 63.8836758979, + "26735": 63.8778132432, + "26736": 63.8711291155, + "26737": 63.8635477036, + "26738": 63.854990548, + "26739": 63.8453767601, + "26740": 63.8346232523, + "26741": 63.8226449772, + "26742": 63.8093551719, + "26743": 63.7946656114, + "26744": 63.7784868669, + "26745": 63.7607285691, + "26746": 63.7412996761, + "26747": 63.7201087432, + "26748": 63.6970641927, + "26749": 63.6720745854, + "26750": 63.6450488945, + "26751": 63.6158967763, + "26752": 63.5845288367, + "26753": 63.5508568939, + "26754": 63.5147942359, + "26755": 63.4762558712, + "26756": 63.4351587727, + "26757": 63.3914221126, + "26758": 63.3449674819, + "26759": 63.2957191045, + "26760": 63.2436040467, + "26761": 63.1885524136, + "26762": 63.13049753, + "26763": 63.0693761074, + "26764": 63.0051283988, + "26765": 62.9376983383, + "26766": 62.8670336669, + "26767": 62.7930860434, + "26768": 62.7158111338, + "26769": 62.6351686894, + "26770": 62.5511226177, + "26771": 62.4636410366, + "26772": 62.3726963114, + "26773": 62.2782650745, + "26774": 62.1803282322, + "26775": 62.0788709561, + "26776": 61.9738826601, + "26777": 61.8653569649, + "26778": 61.7532916452, + "26779": 61.6376885667, + "26780": 61.5185536124, + "26781": 61.3958965981, + "26782": 61.2697311748, + "26783": 61.1400747212, + "26784": 61.0069482259, + "26785": 60.8703761613, + "26786": 60.7303863485, + "26787": 60.5870098156, + "26788": 60.4402806485, + "26789": 60.2902358366, + "26790": 60.136915114, + "26791": 59.9803607973, + "26792": 59.8206176204, + "26793": 59.6577325663, + "26794": 59.4917546994, + "26795": 59.322734996, + "26796": 59.1507261774, + "26797": 58.9757825439, + "26798": 58.7979598106, + "26799": 58.6173149466, + "26800": 58.4339060226, + "26801": 58.2477920651, + "26802": 58.0590329164, + "26803": 57.8676891011, + "26804": 57.6738217023, + "26805": 57.4774922463, + "26806": 57.278762599, + "26807": 57.0776948725, + "26808": 56.874351344, + "26809": 56.6687943879, + "26810": 56.4610864201, + "26811": 56.2512898555, + "26812": 56.0394670794, + "26813": 55.8256804341, + "26814": 55.6099922191, + "26815": 55.3924647061, + "26816": 55.173160168, + "26817": 54.9521409229, + "26818": 54.7294693918, + "26819": 54.505208173, + "26820": 54.2794201242, + "26821": 54.0521684563, + "26822": 53.8235168387, + "26823": 53.5935295168, + "26824": 53.3622714373, + "26825": 53.1298083822, + "26826": 52.8962071086, + "26827": 52.6615354944, + "26828": 52.4258626866, + "26829": 52.189259254, + "26830": 51.951797337, + "26831": 51.7135507951, + "26832": 51.4745953518, + "26833": 51.2350087344, + "26834": 50.9948708068, + "26835": 50.7542636941, + "26836": 50.5132718953, + "26837": 50.2719823844, + "26838": 50.0304846989, + "26839": 49.7888710202, + "26840": 49.5472362279, + "26841": 49.3056779285, + "26842": 49.0642964695, + "26843": 48.8231949358, + "26844": 48.5824791252, + "26845": 48.3422575009, + "26846": 48.102641123, + "26847": 47.8637435563, + "26848": 47.6256807558, + "26849": 47.3885709328, + "26850": 47.1525343957, + "26851": 46.9176933674, + "26852": 46.6841717826, + "26853": 46.4520950667, + "26854": 46.2215898961, + "26855": 45.9927839404, + "26856": 45.7658055896, + "26857": 45.540783667, + "26858": 45.3178471289, + "26859": 45.0971247677, + "26860": 44.8787448949, + "26861": 44.6628350065, + "26862": 44.44952145, + "26863": 44.2389290938, + "26864": 44.0311809971, + "26865": 43.8263980828, + "26866": 43.6246988147, + "26867": 43.4261988829, + "26868": 43.2310108983, + "26869": 43.0392441009, + "26870": 42.8510040805, + "26871": 42.666392511, + "26872": 42.4855069025, + "26873": 42.3084403747, + "26874": 42.1352814508, + "26875": 41.9661138747, + "26876": 41.8010164518, + "26877": 41.6400629154, + "26878": 41.4833218196, + "26879": 41.3308564667, + "26880": 41.1827248583, + "26881": 41.0389796674, + "26882": 40.8996682401, + "26883": 40.7648326308, + "26884": 40.6345096674, + "26885": 40.5087310448, + "26886": 40.3875234487, + "26887": 40.2709087067, + "26888": 40.1589039675, + "26889": 40.0515219111, + "26890": 39.9487709825, + "26891": 39.8506556454, + "26892": 39.7571766587, + "26893": 39.6683313765, + "26894": 39.5841140677, + "26895": 39.5045162537, + "26896": 39.4295270603, + "26897": 39.3591335831, + "26898": 39.2933212625, + "26899": 39.2320742767, + "26900": 39.1753759381, + "26901": 39.1232090764, + "26902": 39.0755564212, + "26903": 39.0324009817, + "26904": 38.9937264152, + "26905": 38.959517385, + "26906": 38.929759906, + "26907": 38.9044416726, + "26908": 38.8835523639, + "26909": 38.867083923, + "26910": 38.8550308081, + "26911": 38.8473902112, + "26912": 38.8441622405, + "26913": 38.8453500662, + "26914": 38.8509600249, + "26915": 38.86100168, + "26916": 38.8754878382, + "26917": 38.8944345175, + "26918": 38.9178608675, + "26919": 38.9457890393, + "26920": 38.9766129489, + "26921": 39.0081872141, + "26922": 39.0397535063, + "26923": 39.0712857454, + "26924": 39.1027901095, + "26925": 39.134266313, + "26926": 39.1657153503, + "26927": 39.1971379459, + "26928": 39.2285348644, + "26929": 39.2599068467, + "26930": 39.2912546223, + "26931": 39.3225789056, + "26932": 39.3538803969, + "26933": 39.3851597814, + "26934": 39.4164177289, + "26935": 39.4476548935, + "26936": 39.4788719134, + "26937": 39.51006941, + "26938": 39.5412479883, + "26939": 39.5724082348, + "26940": 39.6035507104, + "26941": 39.6346759516, + "26942": 39.665784477, + "26943": 39.696876789, + "26944": 39.7279533741, + "26945": 39.759014703, + "26946": 39.7900612309, + "26947": 39.8210933978, + "26948": 39.8521116293, + "26949": 39.8831163366, + "26950": 39.9141079168, + "26951": 39.945086754, + "26952": 39.9760532199, + "26953": 40.007007675, + "26954": 40.0379504695, + "26955": 40.0688819443, + "26956": 40.0998024311, + "26957": 40.1307122546, + "26958": 40.1616117322, + "26959": 40.1925011759, + "26960": 40.2233808889, + "26961": 40.2542511684, + "26962": 40.2851123102, + "26963": 40.3159646118, + "26964": 40.3468083724, + "26965": 40.3776438941, + "26966": 40.4084714823, + "26967": 40.4392914467, + "26968": 40.4701041023, + "26969": 40.5009097701, + "26970": 40.5317087778, + "26971": 40.5625014608, + "26972": 40.593288163, + "26973": 40.6240692384, + "26974": 40.6548450514, + "26975": 40.6856159776, + "26976": 40.7163824048, + "26977": 40.7471447338, + "26978": 40.7779033789, + "26979": 40.8086587687, + "26980": 40.8394113482, + "26981": 40.8701615802, + "26982": 40.9009099432, + "26983": 40.9316569326, + "26984": 40.9624030595, + "26985": 40.9931488526, + "26986": 41.0238948574, + "26987": 41.0546416373, + "26988": 41.0853897731, + "26989": 41.1161398635, + "26990": 41.1468925237, + "26991": 41.1776483854, + "26992": 41.2084080966, + "26993": 41.2391723228, + "26994": 41.2699417458, + "26995": 41.3007170639, + "26996": 41.3314989908, + "26997": 41.3622882548, + "26998": 41.3930855982, + "26999": 41.4238917762, + "27000": 0.0000003771, + "27001": 0.0000010126, + "27002": 0.000000425, + "27003": 0.0000011347, + "27004": 0.0000004866, + "27005": 0.0000012912, + "27006": 0.0000005651, + "27007": 0.0000000404, + "27008": -0.0000000072, + "27009": 0.0000025008, + "27010": -0.0000000222, + "27011": 0.000002799, + "27012": -0.0000000146, + "27013": 0.0000030897, + "27014": -0.0000000047, + "27015": 0.0000033695, + "27016": 0.0000000079, + "27017": 0.000000096, + "27018": 0.0000000576, + "27019": 0.0000001121, + "27020": 0.0000000789, + "27021": 0.0000001313, + "27022": 0.0000001038, + "27023": 0.0000001537, + "27024": 0.0000001329, + "27025": 0.0000001793, + "27026": 0.0000001662, + "27027": 0.0000002086, + "27028": 0.0000002043, + "27029": 0.0000002417, + "27030": 0.0000002472, + "27031": 0.0000002786, + "27032": 0.000000295, + "27033": 0.0000003182, + "27034": 0.0000003414, + "27035": 0.0000003642, + "27036": 0.000000388, + "27037": 0.0000004127, + "27038": 0.0000004382, + "27039": 0.0000004646, + "27040": 0.0000004916, + "27041": 0.0000005194, + "27042": 0.0000005478, + "27043": 0.0000005768, + "27044": 0.0000006063, + "27045": 0.0000006362, + "27046": 0.0000006665, + "27047": 0.000000697, + "27048": 0.0000007278, + "27049": 0.0000007586, + "27050": 0.0000007894, + "27051": 0.0000008202, + "27052": 0.0000008508, + "27053": 0.0000008812, + "27054": 0.0000009113, + "27055": 0.0000009409, + "27056": 0.0000009701, + "27057": 0.0000009987, + "27058": 0.0000010267, + "27059": 0.000001054, + "27060": 0.0000010806, + "27061": 0.0000011064, + "27062": 0.0000011313, + "27063": 0.0000011553, + "27064": 0.0000011783, + "27065": 0.0000012004, + "27066": 0.0000012215, + "27067": 0.0000012415, + "27068": 0.0000012605, + "27069": 0.0000012785, + "27070": 0.0000012954, + "27071": 0.0000013112, + "27072": 0.000001326, + "27073": 0.0000013398, + "27074": 0.0000013525, + "27075": 0.0000013642, + "27076": 0.000001375, + "27077": 0.0000013847, + "27078": 0.0000013936, + "27079": 0.0000014016, + "27080": 0.0000014087, + "27081": 0.000001415, + "27082": 0.0000014205, + "27083": 0.0000014252, + "27084": 0.0000014293, + "27085": 0.0000014327, + "27086": 0.0000014354, + "27087": 0.0000014376, + "27088": 0.0000014392, + "27089": 0.0000014404, + "27090": 0.0000014411, + "27091": 0.0000014413, + "27092": 0.0000014412, + "27093": 0.0000014407, + "27094": 0.00000144, + "27095": 0.0000014389, + "27096": 0.0000014376, + "27097": 0.0000014361, + "27098": 0.0000014344, + "27099": 0.0000014325, + "27100": 0.0000014305, + "27101": 0.0000014284, + "27102": 0.0000014263, + "27103": 0.000001424, + "27104": 0.0000014217, + "27105": 0.0000014193, + "27106": 0.000001417, + "27107": 0.0000014146, + "27108": 0.0000014123, + "27109": 0.0000014099, + "27110": 0.0000014076, + "27111": 0.0000014053, + "27112": 0.0000014031, + "27113": 0.0000014009, + "27114": 0.0000013989, + "27115": 0.0000013969, + "27116": 0.0000013951, + "27117": 0.0000013934, + "27118": 0.0000013917, + "27119": 0.0000013902, + "27120": 0.0000013887, + "27121": 0.0000013873, + "27122": 0.000001386, + "27123": 0.0000013848, + "27124": 0.0000013836, + "27125": 0.0000013825, + "27126": 0.0000013815, + "27127": 0.0000013805, + "27128": 0.0000013795, + "27129": 0.0000013786, + "27130": 0.0000013777, + "27131": 0.0000013768, + "27132": 0.0000013759, + "27133": 0.000001375, + "27134": 0.0000013741, + "27135": 0.0000013732, + "27136": 0.0000013723, + "27137": 0.0000013714, + "27138": 0.0000013704, + "27139": 0.0000013694, + "27140": 0.0000013684, + "27141": 0.0000013673, + "27142": 0.0000013662, + "27143": 0.000001365, + "27144": 0.0000013638, + "27145": 0.0000013625, + "27146": 0.0000013612, + "27147": 0.0000013598, + "27148": 0.0000013583, + "27149": 0.0000013568, + "27150": 0.0000013552, + "27151": 0.0000013536, + "27152": 0.0000013519, + "27153": 0.0000013501, + "27154": 0.0000013483, + "27155": 0.0000013464, + "27156": 0.0000013445, + "27157": 0.0000013426, + "27158": 0.0000013405, + "27159": 0.0000013385, + "27160": 0.0000013364, + "27161": 0.0000013342, + "27162": 0.0000013321, + "27163": 0.0000013299, + "27164": 0.0000013276, + "27165": 0.0000013254, + "27166": 0.0000013231, + "27167": 0.0000013208, + "27168": 0.0000013185, + "27169": 0.0000013162, + "27170": 0.0000013139, + "27171": 0.0000013116, + "27172": 0.0000013092, + "27173": 0.0000013069, + "27174": 0.0000013046, + "27175": 0.0000013023, + "27176": 0.0000013, + "27177": 0.0000012978, + "27178": 0.0000012955, + "27179": 0.0000012933, + "27180": 0.0000012911, + "27181": 0.0000012889, + "27182": 0.0000012867, + "27183": 0.0000012845, + "27184": 0.0000012824, + "27185": 0.0000012803, + "27186": 0.0000012782, + "27187": 0.0000012761, + "27188": 0.0000012741, + "27189": 0.0000012721, + "27190": 0.00000127, + "27191": 0.000001268, + "27192": 0.0000012661, + "27193": 0.0000012641, + "27194": 0.0000012621, + "27195": 0.0000012602, + "27196": 0.0000012582, + "27197": 0.0000012563, + "27198": 0.0000012543, + "27199": 0.0000012524, + "27200": 0.0000012504, + "27201": 0.0000012484, + "27202": 0.0000012465, + "27203": 0.0000012445, + "27204": 0.0000012425, + "27205": 0.0000012404, + "27206": 0.0000012384, + "27207": 0.0000012363, + "27208": 0.0000012342, + "27209": 0.0000012321, + "27210": 0.00000123, + "27211": 0.0000012278, + "27212": 0.0000012256, + "27213": 0.0000012234, + "27214": 0.0000012211, + "27215": 0.0000012188, + "27216": 0.0000012165, + "27217": 0.0000012141, + "27218": 0.0000012117, + "27219": 0.0000012093, + "27220": 0.0000012068, + "27221": 0.0000012043, + "27222": 0.0000012017, + "27223": 0.0000011992, + "27224": 0.0000011966, + "27225": 0.000001194, + "27226": 0.0000011913, + "27227": 0.0000011886, + "27228": 0.0000011859, + "27229": 0.0000011832, + "27230": 0.0000011804, + "27231": 0.0000011777, + "27232": 0.0000011749, + "27233": 0.0000011721, + "27234": 0.0000011693, + "27235": 0.0000011665, + "27236": 0.0000011636, + "27237": 0.0000011608, + "27238": 0.0000011579, + "27239": 0.0000011551, + "27240": 0.0000011522, + "27241": 0.0000011494, + "27242": 0.0000011465, + "27243": 0.0000011436, + "27244": 0.0000011408, + "27245": 0.0000011379, + "27246": 0.0000011351, + "27247": 0.0000011322, + "27248": 0.0000011294, + "27249": 0.0000011265, + "27250": 0.0000011237, + "27251": 0.0000011208, + "27252": 0.000001118, + "27253": 0.0000011151, + "27254": 0.0000011123, + "27255": 0.0000011094, + "27256": 0.0000011065, + "27257": 0.0000011037, + "27258": 0.0000011008, + "27259": 0.0000010979, + "27260": 0.0000010949, + "27261": 0.000001092, + "27262": 0.000001089, + "27263": 0.000001086, + "27264": 0.000001083, + "27265": 0.0000010799, + "27266": 0.0000010768, + "27267": 0.0000010736, + "27268": 0.0000010704, + "27269": 0.0000010671, + "27270": 0.0000010637, + "27271": 0.0000010603, + "27272": 0.0000010568, + "27273": 0.0000010532, + "27274": 0.0000010495, + "27275": 0.0000010458, + "27276": 0.0000010419, + "27277": 0.0000010379, + "27278": 0.0000010338, + "27279": 0.0000010296, + "27280": 0.0000010252, + "27281": 0.0000010207, + "27282": 0.0000010161, + "27283": 0.0000010113, + "27284": 0.0000010064, + "27285": 0.0000010013, + "27286": 0.0000009961, + "27287": 0.0000009907, + "27288": 0.0000009851, + "27289": 0.0000009793, + "27290": 0.0000009734, + "27291": 0.0000009673, + "27292": 0.000000961, + "27293": 0.0000009545, + "27294": 0.0000009479, + "27295": 0.000000941, + "27296": 0.000000934, + "27297": 0.0000009267, + "27298": 0.0000009193, + "27299": 0.0000009116, + "27300": 0.0000009038, + "27301": 0.0000008958, + "27302": 0.0000008876, + "27303": 0.0000008791, + "27304": 0.0000008707, + "27305": 0.0000008544, + "27306": 0.0000008427, + "27307": 0.0000008311, + "27308": 0.0000008338, + "27309": 0.0000008081, + "27310": 0.0000008144, + "27311": 0.0000007809, + "27312": 0.0000007936, + "27313": 0.0000007525, + "27314": 0.0000007722, + "27315": 0.0000007226, + "27316": 0.0000007501, + "27317": 0.0000006912, + "27318": 0.0000007272, + "27319": 0.0000006584, + "27320": 0.0000007038, + "27321": 0.0009664338, + "27322": 0.0000099072, + "27323": 0.0003359621, + "27324": 0.0001587914, + "27325": 0.0003293582, + "27326": 0.000149274, + "27327": 0.0003100918, + "27328": 0.0001404697, + "27329": 0.0002907506, + "27330": 0.0001316592, + "27331": 0.0002715191, + "27332": 0.0001229066, + "27333": 0.0002525365, + "27334": 0.0001142748, + "27335": 0.0002339329, + "27336": 0.0001058225, + "27337": 0.0002158272, + "27338": 0.0000976028, + "27339": 0.0001983252, + "27340": 0.0000896633, + "27341": 0.0001815182, + "27342": 0.0000820446, + "27343": 0.0001654825, + "27344": 0.0000747805, + "27345": 0.0001502785, + "27346": 0.0000678977, + "27347": 0.0001359512, + "27348": 0.0000614158, + "27349": 0.0001225301, + "27350": 0.0000553473, + "27351": 0.0001100304, + "27352": 0.0000496986, + "27353": 0.0000984539, + "27354": 0.0000444697, + "27355": 0.0000877905, + "27356": 0.0000396554, + "27357": 0.0000780194, + "27358": 0.0000352458, + "27359": 0.0000691109, + "27360": 0.000031227, + "27361": 0.000061028, + "27362": 0.0000275817, + "27363": 0.0000537278, + "27364": 0.0000242904, + "27365": 0.0000471636, + "27366": 0.0000213315, + "27367": 0.0000412856, + "27368": 0.0000186824, + "27369": 0.0000360427, + "27370": 0.0000163198, + "27371": 0.0000313834, + "27372": 0.0000142202, + "27373": 0.000027257, + "27374": 0.0000123608, + "27375": 0.0000236142, + "27376": 0.0000107191, + "27377": 0.0000204076, + "27378": 0.0000092738, + "27379": 0.0000175926, + "27380": 0.0000080047, + "27381": 0.0000151274, + "27382": 0.000006893, + "27383": 0.0000129731, + "27384": 0.0000059211, + "27385": 0.0000110942, + "27386": 0.0000050732, + "27387": 0.0000094584, + "27388": 0.0000043345, + "27389": 0.0000080364, + "27390": 0.0000036921, + "27391": 0.0000068019, + "27392": 0.000003134, + "27393": 0.0000057315, + "27394": 0.0000026497, + "27395": 0.0000048045, + "27396": 0.00000223, + "27397": 0.0000040026, + "27398": 0.0000018665, + "27399": 0.0000033095, + "27400": 0.0000015521, + "27401": 0.0000027113, + "27402": 0.0000012805, + "27403": 0.0000021956, + "27404": 0.000001046, + "27405": 0.0000017517, + "27406": 0.0000008439, + "27407": 0.0000013491, + "27408": 0.0000006647, + "27409": 0.0000010249, + "27410": 0.000000516, + "27411": 0.0000007475, + "27412": 0.0000003887, + "27413": 0.0000005113, + "27414": 0.00000028, + "27415": 0.000000311, + "27416": 0.0000001877, + "27417": 0.0000001419, + "27418": 0.0017723673, + "27419": -0.0000171572, + "27420": 0.0198016348, + "27421": -0.0012429676, + "27422": 0.1916230647, + "27423": 0.6489363066, + "27424": 1.355659192, + "27425": 2.2969247837, + "27426": 3.458091264, + "27427": 4.8247702504, + "27428": 6.3828554518, + "27429": 8.1185466748, + "27430": 10.018370503, + "27431": 12.0691976926, + "27432": 14.2582575742, + "27433": 16.573149688, + "27434": 19.0018528815, + "27435": 21.5327320873, + "27436": 24.1545429914, + "27437": 26.8564347902, + "27438": 29.6279512318, + "27439": 32.4590301218, + "27440": 35.3400014714, + "27441": 38.261584453, + "27442": 41.2148833232, + "27443": 44.191382462, + "27444": 47.1829406687, + "27445": 50.1817848474, + "27446": 53.1805032008, + "27447": 56.1720380553, + "27448": 59.1496784221, + "27449": 62.1070523926, + "27450": 65.0381194511, + "27451": 67.9371627846, + "27452": 70.7987816574, + "27453": 73.617883911, + "27454": 76.3896786387, + "27455": 79.1096690755, + "27456": 81.7736457346, + "27457": 84.3776798172, + "27458": 86.918116911, + "27459": 89.3915709858, + "27460": 91.7949186838, + "27461": 94.1252938939, + "27462": 96.3800825989, + "27463": 98.5569179699, + "27464": 100.6536756842, + "27465": 102.66846943, + "27466": 104.5996465614, + "27467": 106.4457838643, + "27468": 108.2056833922, + "27469": 109.8783683245, + "27470": 111.4630787978, + "27471": 112.9592676617, + "27472": 114.366596109, + "27473": 115.6849291334, + "27474": 116.9143307671, + "27475": 118.0550590549, + "27476": 119.1075607205, + "27477": 120.0724654916, + "27478": 120.9505800517, + "27479": 121.742881593, + "27480": 122.4505109454, + "27481": 123.0747652657, + "27482": 123.6170902786, + "27483": 124.0790720655, + "27484": 124.4624284068, + "27485": 124.7689996887, + "27486": 125.0007393915, + "27487": 125.1597041875, + "27488": 125.2480436818, + "27489": 125.2679898363, + "27490": 125.2218461216, + "27491": 125.1119764462, + "27492": 124.9407939219, + "27493": 124.7107495245, + "27494": 124.4243207165, + "27495": 124.0840000968, + "27496": 123.6922841506, + "27497": 123.2516621675, + "27498": 122.764605406, + "27499": 122.2335565732, + "27500": 121.6609196919, + "27501": 121.0490504223, + "27502": 120.4002469048, + "27503": 119.7167411853, + "27504": 119.0006912828, + "27505": 118.2541739493, + "27506": 117.4791781725, + "27507": 116.677599459, + "27508": 115.8512349358, + "27509": 115.0017792964, + "27510": 114.1308216117, + "27511": 113.2398430189, + "27512": 112.3302152942, + "27513": 111.4032003072, + "27514": 110.4599503475, + "27515": 109.5015093092, + "27516": 108.5288147068, + "27517": 107.5427004959, + "27518": 106.5439006615, + "27519": 105.5330535333, + "27520": 104.5107067805, + "27521": 103.4773230349, + "27522": 102.4332860855, + "27523": 101.3789075868, + "27524": 100.3144342174, + "27525": 99.240055224, + "27526": 98.1559102843, + "27527": 97.0620976215, + "27528": 95.9586822992, + "27529": 94.8457046293, + "27530": 93.7231886215, + "27531": 92.591150409, + "27532": 91.4496065801, + "27533": 90.2985823528, + "27534": 89.138119526, + "27535": 87.9682841478, + "27536": 86.789173841, + "27537": 85.60092473, + "27538": 84.4037179159, + "27539": 83.1977854494, + "27540": 81.9834157563, + "27541": 80.7609584733, + "27542": 79.5308286563, + "27543": 78.2935103269, + "27544": 77.0495593288, + "27545": 75.7996054679, + "27546": 74.5443539158, + "27547": 73.2845858622, + "27548": 72.0211584057, + "27549": 70.7550036763, + "27550": 69.4871271912, + "27551": 68.218605448, + "27552": 66.9505827647, + "27553": 65.6842673847, + "27554": 64.4209268644, + "27555": 63.1618827741, + "27556": 61.9085047413, + "27557": 60.6622038764, + "27558": 59.4244256213, + "27559": 58.1966420652, + "27560": 56.9803437836, + "27561": 55.7770312549, + "27562": 54.5882059177, + "27563": 53.4153609343, + "27564": 52.2599717272, + "27565": 51.1234863618, + "27566": 50.0073158498, + "27567": 48.9128244493, + "27568": 47.8413200389, + "27569": 46.794044645, + "27570": 45.7721652001, + "27571": 44.7767646113, + "27572": 43.8088332157, + "27573": 42.8692606991, + "27574": 41.958828549, + "27575": 41.0782031125, + "27576": 40.2279293243, + "27577": 39.4084251666, + "27578": 38.6199769153, + "27579": 37.8627352225, + "27580": 37.1367120789, + "27581": 36.4417786924, + "27582": 35.7776643128, + "27583": 35.1439560266, + "27584": 34.5400995348, + "27585": 33.9654009234, + "27586": 33.4190294231, + "27587": 32.9000211525, + "27588": 32.4072838261, + "27589": 31.9396024043, + "27590": 31.495645653, + "27591": 31.0739735756, + "27592": 30.6730456717, + "27593": 30.2912299704, + "27594": 29.9268127824, + "27595": 29.5780091075, + "27596": 29.2429736293, + "27597": 28.9198122279, + "27598": 28.6065939333, + "27599": 28.3013632419, + "27600": 28.0021527156, + "27601": 27.7069957815, + "27602": 27.4139396483, + "27603": 27.121058257, + "27604": 26.8264651804, + "27605": 26.5283263904, + "27606": 26.2248728086, + "27607": 25.9144125628, + "27608": 25.5953428692, + "27609": 25.2661614658, + "27610": 24.9254775249, + "27611": 24.572021974, + "27612": 24.2046571619, + "27613": 23.8223858075, + "27614": 23.424359174, + "27615": 23.0098844167, + "27616": 22.5784310558, + "27617": 22.1296365326, + "27618": 21.6633108092, + "27619": 21.1794399804, + "27620": 20.6781888705, + "27621": 20.1599025917, + "27622": 19.6251070485, + "27623": 19.0745083774, + "27624": 18.5089913144, + "27625": 17.9296164936, + "27626": 17.3376166793, + "27627": 16.7343919453, + "27628": 16.1215038178, + "27629": 15.5006684041, + "27630": 14.8737485373, + "27631": 14.2427449685, + "27632": 13.6097866483, + "27633": 12.977120142, + "27634": 12.347098228, + "27635": 11.7221677369, + "27636": 11.1048566903, + "27637": 10.4977608064, + "27638": 9.9035294417, + "27639": 9.3248510448, + "27640": 8.7644381992, + "27641": 8.2250123405, + "27642": 7.7092882298, + "27643": 7.2199582752, + "27644": 6.7596767902, + "27645": 6.3310442817, + "27646": 5.936591862, + "27647": 5.5787658772, + "27648": 5.2599128485, + "27649": 4.9822648164, + "27650": 4.747925182, + "27651": 4.5588551333, + "27652": 4.4168607429, + "27653": 4.3235808198, + "27654": 4.2804755941, + "27655": 4.2888163064, + "27656": 4.3496757709, + "27657": 4.463919973, + "27658": 4.6322007544, + "27659": 4.854949636, + "27660": 5.1323728176, + "27661": 5.4644473867, + "27662": 5.8509187592, + "27663": 6.291299368, + "27664": 6.7848686061, + "27665": 7.3306740237, + "27666": 7.9275337686, + "27667": 8.5740402535, + "27668": 9.2685650246, + "27669": 10.0092647972, + "27670": 10.7940886188, + "27671": 11.620786112, + "27672": 12.4869167448, + "27673": 13.3898600694, + "27674": 14.3268268655, + "27675": 15.2948711209, + "27676": 16.2909027752, + "27677": 17.3117011533, + "27678": 18.3539290095, + "27679": 19.4141471026, + "27680": 20.4888292219, + "27681": 21.5743775807, + "27682": 22.6671384955, + "27683": 23.7634182704, + "27684": 24.8594992034, + "27685": 25.9516556375, + "27686": 27.0361699756, + "27687": 28.1093485855, + "27688": 29.16753752, + "27689": 30.207137981, + "27690": 31.2246214585, + "27691": 32.2165444792, + "27692": 33.1795629025, + "27693": 34.1104457035, + "27694": 35.0060881869, + "27695": 35.8635245795, + "27696": 36.6799399494, + "27697": 37.4526814072, + "27698": 38.1792685443, + "27699": 38.8574030685, + "27700": 39.4849775978, + "27701": 40.0600835797, + "27702": 40.5810183036, + "27703": 41.046290979, + "27704": 41.4549343222, + "27705": 41.8092114604, + "27706": 42.1130831774, + "27707": 42.3706073561, + "27708": 42.5858817633, + "27709": 42.7630575099, + "27710": 42.9063373066, + "27711": 43.0199755546, + "27712": 43.1082768817, + "27713": 43.1755937949, + "27714": 43.2263233251, + "27715": 43.2649027001, + "27716": 43.2958040616, + "27717": 43.3235282504, + "27718": 43.3525976907, + "27719": 43.3875484107, + "27720": 43.4329212417, + "27721": 43.493252246, + "27722": 43.5730624264, + "27723": 43.6768467798, + "27724": 43.8090627586, + "27725": 43.9741182119, + "27726": 44.1763588827, + "27727": 44.4200555396, + "27728": 44.7093908284, + "27729": 45.0484459301, + "27730": 45.4411871159, + "27731": 45.8914522915, + "27732": 46.4029376243, + "27733": 46.9791843475, + "27734": 47.6235658358, + "27735": 48.339275046, + "27736": 49.1293124141, + "27737": 49.9964742981, + "27738": 50.9433420533, + "27739": 51.9722718197, + "27740": 53.0853851017, + "27741": 54.2845602115, + "27742": 55.5714246397, + "27743": 56.9473484144, + "27744": 58.4134384981, + "27745": 59.9705342682, + "27746": 61.6192041153, + "27747": 63.3597431883, + "27748": 65.1921723035, + "27749": 67.1162380296, + "27750": 69.1314139506, + "27751": 71.2369030997, + "27752": 73.431641551, + "27753": 75.7143031439, + "27754": 78.0833053116, + "27755": 80.5368159755, + "27756": 83.0727614611, + "27757": 85.6888353858, + "27758": 88.3825084602, + "27759": 91.151039143, + "27760": 93.9914850851, + "27761": 96.9007152962, + "27762": 99.8754229599, + "27763": 102.9121388233, + "27764": 106.0072450847, + "27765": 109.1569897026, + "27766": 112.3575010485, + "27767": 115.6048028256, + "27768": 118.8948291759, + "27769": 122.2234398985, + "27770": 125.5864357082, + "27771": 128.9795734621, + "27772": 132.3985812844, + "27773": 135.8391735193, + "27774": 139.2970654478, + "27775": 142.7679877054, + "27776": 146.2477003411, + "27777": 149.7320064615, + "27778": 153.2167654045, + "27779": 156.6979053934, + "27780": 160.1714356232, + "27781": 163.633457734, + "27782": 167.0801766306, + "27783": 170.5079106069, + "27784": 173.9131007371, + "27785": 177.292319501, + "27786": 180.6422786079, + "27787": 183.9598359907, + "27788": 187.2420019402, + "27789": 190.4859443548, + "27790": 193.6889930804, + "27791": 196.8486433193, + "27792": 199.9625580891, + "27793": 203.028569714, + "27794": 206.0446803336, + "27795": 209.00906142, + "27796": 211.9200522922, + "27797": 214.7761576269, + "27798": 217.576043962, + "27799": 220.3185351992, + "27800": 223.0026071137, + "27801": 225.6273808892, + "27802": 228.1921156969, + "27803": 230.6962003466, + "27804": 233.1391440433, + "27805": 235.520566291, + "27806": 237.8401859938, + "27807": 240.0978098097, + "27808": 242.293319825, + "27809": 244.4266606211, + "27810": 246.4978258181, + "27811": 248.5068441831, + "27812": 250.4537654038, + "27813": 252.3386456317, + "27814": 254.1615329105, + "27815": 255.9224526073, + "27816": 257.6213929738, + "27817": 259.2582909667, + "27818": 260.8330184617, + "27819": 262.3453689984, + "27820": 263.7950451923, + "27821": 265.1816469493, + "27822": 266.5046606174, + "27823": 267.7634492076, + "27824": 268.9572438102, + "27825": 270.0851363255, + "27826": 271.1460736207, + "27827": 272.1388532118, + "27828": 273.0621205617, + "27829": 273.9143680686, + "27830": 274.6939358075, + "27831": 275.399014068, + "27832": 276.0276477169, + "27833": 276.5777423972, + "27834": 277.0470725566, + "27835": 277.4332912771, + "27836": 277.7339418628, + "27837": 277.9464711186, + "27838": 278.0682442379, + "27839": 278.0965612012, + "27840": 278.0286745641, + "27841": 277.8618084921, + "27842": 277.5931788915, + "27843": 277.220014471, + "27844": 276.7395785588, + "27845": 276.1491914846, + "27846": 275.4462533316, + "27847": 274.6282668525, + "27848": 273.6928603418, + "27849": 272.6378102561, + "27850": 271.4610633716, + "27851": 270.1607582679, + "27852": 268.7352459375, + "27853": 267.1831093225, + "27854": 265.5031815935, + "27855": 263.6945629939, + "27856": 261.7566360843, + "27857": 259.68907924, + "27858": 257.491878264, + "27859": 255.1653360077, + "27860": 252.7100798957, + "27861": 250.1270672678, + "27862": 247.417588472, + "27863": 244.5832676699, + "27864": 241.6260613329, + "27865": 238.5482544226, + "27866": 235.3524542719, + "27867": 232.0415821949, + "27868": 228.6188628767, + "27869": 225.0878116072, + "27870": 221.4522194402, + "27871": 217.7161363685, + "27872": 213.8838526226, + "27873": 209.9598782123, + "27874": 205.9489208398, + "27875": 201.8558623244, + "27876": 197.6857336848, + "27877": 193.4436890345, + "27878": 189.1349784511, + "27879": 184.7649199886, + "27880": 180.338871006, + "27881": 175.8621989826, + "27882": 171.3402519951, + "27883": 166.7783290431, + "27884": 162.1816504101, + "27885": 157.5553282465, + "27886": 152.9043375681, + "27887": 148.2334878602, + "27888": 143.5473954812, + "27889": 138.8504570648, + "27890": 134.1468241155, + "27891": 129.4403789907, + "27892": 124.7347124649, + "27893": 120.0331030693, + "27894": 115.3384984019, + "27895": 110.6534985964, + "27896": 105.9803421349, + "27897": 101.3208941812, + "27898": 96.6766376056, + "27899": 92.0486668667, + "27900": 87.4376849004, + "27901": 82.8440031455, + "27902": 78.2675448138, + "27903": 73.7078515113, + "27904": 69.1640932792, + "27905": 64.6350821175, + "27906": 60.1192890186, + "27907": 55.6148645143, + "27908": 51.1196627038, + "27909": 46.6312687064, + "27910": 42.147029439, + "27911": 37.6640875933, + "27912": 33.1794186417, + "27913": 28.6898706756, + "27914": 24.1922068313, + "27915": 19.6831500338, + "27916": 15.1594297427, + "27917": 10.6178303604, + "27918": 6.0552409194, + "27919": 1.4687056483, + "27920": -0.0581527677, + "27921": 0.0, + "27922": 0.0000000864, + "27923": 0.0000000783, + "27924": 0.0000001031, + "27925": 0.0000000885, + "27926": 0.0000001257, + "27927": 0.0000000997, + "27928": 0.000000151, + "27929": 0.0000001121, + "27930": 0.0000001787, + "27931": 0.0000001258, + "27932": 0.000000209, + "27933": 0.0000001406, + "27934": 0.0000002415, + "27935": 0.0000001565, + "27936": 0.0000002761, + "27937": 0.0000001734, + "27938": 0.0000003125, + "27939": 0.000000191, + "27940": 0.0000003501, + "27941": 0.0000002092, + "27942": 0.0000003884, + "27943": 0.0000002276, + "27944": 0.0000004269, + "27945": 0.000000246, + "27946": 0.0000004649, + "27947": 0.000000264, + "27948": 0.0000005015, + "27949": 0.0000002814, + "27950": 0.0000005362, + "27951": 0.0000002976, + "27952": 0.0000005682, + "27953": 0.0000003125, + "27954": 0.0000005969, + "27955": 0.0000003257, + "27956": 0.0000006217, + "27957": 0.000000337, + "27958": 0.0000006421, + "27959": 0.0000003461, + "27960": 0.000000658, + "27961": 0.0000003529, + "27962": 0.0000006692, + "27963": 0.0000003575, + "27964": 0.0000006757, + "27965": 0.0000003598, + "27966": 0.0000006778, + "27967": 0.00000036, + "27968": 0.000000676, + "27969": 0.0000003583, + "27970": 0.0000006709, + "27971": 0.000000355, + "27972": 0.0000006631, + "27973": 0.0000003505, + "27974": 0.0000006537, + "27975": 0.0000003453, + "27976": 0.0000006435, + "27977": 0.0000003397, + "27978": 0.0000006335, + "27979": 0.0000003343, + "27980": 0.000000625, + "27981": 0.0000003297, + "27982": 0.000000619, + "27983": 0.0000003264, + "27984": 0.0000006167, + "27985": 0.000000325, + "27986": 0.0000006196, + "27987": 0.0000003261, + "27988": 0.0000006289, + "27989": 0.0000003305, + "27990": 0.0000006463, + "27991": 0.0000003389, + "27992": 0.0000006735, + "27993": 0.0000003523, + "27994": 0.0000007129, + "27995": 0.0000003717, + "27996": 0.000000767, + "27997": 0.0000003984, + "27998": 0.0000008392, + "27999": 0.000000434, + "28000": 9.5765669762, + "28001": 9.6788555684, + "28002": 9.793572864, + "28003": 9.9211958475, + "28004": 10.0621815515, + "28005": 10.2169636142, + "28006": 10.3859516052, + "28007": 10.5694644884, + "28008": 10.7677073964, + "28009": 10.9808234489, + "28010": 11.208922006, + "28011": 11.4520765639, + "28012": 11.7103201426, + "28013": 11.9836417203, + "28014": 12.2719830025, + "28015": 12.5752356601, + "28016": 12.8932390013, + "28017": 13.2257780887, + "28018": 13.572582297, + "28019": 13.9333243152, + "28020": 14.3076195951, + "28021": 14.6950262476, + "28022": 15.0950453861, + "28023": 15.5071219158, + "28024": 15.9306457637, + "28025": 16.3649535439, + "28026": 16.8093306468, + "28027": 17.2630137402, + "28028": 17.7251936656, + "28029": 18.1950187098, + "28030": 18.6715982288, + "28031": 19.1540065967, + "28032": 19.641287451, + "28033": 20.1324581999, + "28034": 20.6265147576, + "28035": 21.1224364679, + "28036": 21.6191911783, + "28037": 22.1157404199, + "28038": 22.6110446538, + "28039": 23.1040685373, + "28040": 23.5937861681, + "28041": 24.0791862632, + "28042": 24.559277228, + "28043": 25.0330920764, + "28044": 25.4996931617, + "28045": 25.9581766802, + "28046": 26.4076769137, + "28047": 26.8473701789, + "28048": 27.2764784551, + "28049": 27.6942726659, + "28050": 28.1000755935, + "28051": 28.4932644082, + "28052": 28.8732728013, + "28053": 29.2395927113, + "28054": 29.5917756401, + "28055": 29.9294335574, + "28056": 30.2522393968, + "28057": 30.559927152, + "28058": 30.8522915821, + "28059": 31.1291875411, + "28060": 31.3905289488, + "28061": 31.6362874225, + "28062": 31.8664905916, + "28063": 32.0812201211, + "28064": 32.2806094673, + "28065": 32.4648413964, + "28066": 32.6341452916, + "28067": 32.7887942798, + "28068": 32.9291022057, + "28069": 33.0554204842, + "28070": 33.1681348583, + "28071": 33.2676620924, + "28072": 33.354446627, + "28073": 33.4289572218, + "28074": 33.4916836117, + "28075": 33.543133199, + "28076": 33.5838278031, + "28077": 33.6143004878, + "28078": 33.6350924839, + "28079": 33.6467502226, + "28080": 33.6498224941, + "28081": 33.6448577426, + "28082": 33.632401509, + "28083": 33.6129940273, + "28084": 33.5871679831, + "28085": 33.5554464366, + "28086": 33.5183409149, + "28087": 33.4763496734, + "28088": 33.4299561274, + "28089": 33.3796274514, + "28090": 33.325813345, + "28091": 33.2689449606, + "28092": 33.20943399, + "28093": 33.1476719034, + "28094": 33.0840293365, + "28095": 33.0188556187, + "28096": 32.9524784369, + "28097": 32.8852036261, + "28098": 32.8173150827, + "28099": 32.7490747906, + "28100": 32.6807229554, + "28101": 32.6124782372, + "28102": 32.5445380772, + "28103": 32.477079109, + "28104": 32.4102576494, + "28105": 32.344210261, + "28106": 32.2790543801, + "28107": 32.2148890037, + "28108": 32.1517954293, + "28109": 32.0898380409, + "28110": 32.0290651364, + "28111": 31.9695097888, + "28112": 31.9111907363, + "28113": 31.8541132811, + "28114": 31.7982701789, + "28115": 31.7436425264, + "28116": 31.6902006578, + "28117": 31.6379050536, + "28118": 31.5867072569, + "28119": 31.5365507911, + "28120": 31.487372075, + "28121": 31.4391013287, + "28122": 31.3916634674, + "28123": 31.3449789778, + "28124": 31.2989647734, + "28125": 31.2535350242, + "28126": 31.2086019593, + "28127": 31.1640766365, + "28128": 31.1198696788, + "28129": 31.0758919733, + "28130": 31.0320553315, + "28131": 30.9882731082, + "28132": 30.9444607786, + "28133": 30.9005364708, + "28134": 30.8564214541, + "28135": 30.8120405813, + "28136": 30.7673226859, + "28137": 30.7222009322, + "28138": 30.6766131199, + "28139": 30.6305019434, + "28140": 30.5838152049, + "28141": 30.5365059841, + "28142": 30.4885327639, + "28143": 30.4398595134, + "28144": 30.390455731, + "28145": 30.3402964462, + "28146": 30.2893621843, + "28147": 30.2376388945, + "28148": 30.1851178429, + "28149": 30.1317954729, + "28150": 30.077673235, + "28151": 30.0227573872, + "28152": 29.9670587692, + "28153": 29.9105925516, + "28154": 29.8533779635, + "28155": 29.7954379997, + "28156": 29.7367991099, + "28157": 29.6774908734, + "28158": 29.6175456607, + "28159": 29.5569982842, + "28160": 29.4958856417, + "28161": 29.4342463543, + "28162": 29.3721204007, + "28163": 29.309548752, + "28164": 29.2465730077, + "28165": 29.1832350366, + "28166": 29.1195766243, + "28167": 29.0556391301, + "28168": 28.9914631552, + "28169": 28.9270882246, + "28170": 28.862552485, + "28171": 28.7978924205, + "28172": 28.7331425879, + "28173": 28.6683353736, + "28174": 28.6035007736, + "28175": 28.5386661977, + "28176": 28.4738563001, + "28177": 28.4090928359, + "28178": 28.3443945461, + "28179": 28.27977707, + "28180": 28.2152528869, + "28181": 28.150831286, + "28182": 28.0865183654, + "28183": 28.0223170591, + "28184": 27.9582271918, + "28185": 27.8942455605, + "28186": 27.8303660424, + "28187": 27.7665797265, + "28188": 27.7028750693, + "28189": 27.639238071, + "28190": 27.5756524715, + "28191": 27.5120999639, + "28192": 27.4485604231, + "28193": 27.3850121472, + "28194": 27.3214321096, + "28195": 27.257796219, + "28196": 27.1940795845, + "28197": 27.1302567841, + "28198": 27.0663021334, + "28199": 27.0021899517, + "28200": 26.9378948241, + "28201": 26.8733918561, + "28202": 26.8086569196, + "28203": 26.7436668863, + "28204": 26.6783998496, + "28205": 26.6128353298, + "28206": 26.5469544636, + "28207": 26.480740175, + "28208": 26.4141773275, + "28209": 26.3472528554, + "28210": 26.2799558748, + "28211": 26.2122777724, + "28212": 26.1442122737, + "28213": 26.0757554876, + "28214": 26.0069059309, + "28215": 25.9376645303, + "28216": 25.8680346036, + "28217": 25.7980218207, + "28218": 25.7276341451, + "28219": 25.6568817563, + "28220": 25.5857769551, + "28221": 25.5143340525, + "28222": 25.4425692426, + "28223": 25.3705004625, + "28224": 25.2981472392, + "28225": 25.225530525, + "28226": 25.1526725235, + "28227": 25.0795965066, + "28228": 25.0063266251, + "28229": 24.9328877131, + "28230": 24.8593050876, + "28231": 24.7856043459, + "28232": 24.7118111605, + "28233": 24.6379510737, + "28234": 24.5640492924, + "28235": 24.4901304849, + "28236": 24.4162185806, + "28237": 24.3423365727, + "28238": 24.2685063268, + "28239": 24.1947483946, + "28240": 24.1210818345, + "28241": 24.0475240395, + "28242": 23.9740905743, + "28243": 23.9007950206, + "28244": 23.8276488338, + "28245": 23.7546612091, + "28246": 23.6818389604, + "28247": 23.6091864109, + "28248": 23.5367052964, + "28249": 23.4643946836, + "28250": 23.3922509006, + "28251": 23.3202674838, + "28252": 23.2484351394, + "28253": 23.1767417208, + "28254": 23.1051722218, + "28255": 23.0337087866, + "28256": 22.9623307362, + "28257": 22.8910146115, + "28258": 22.8197342332, + "28259": 22.7484607781, + "28260": 22.6771628723, + "28261": 22.6058067001, + "28262": 22.5343561284, + "28263": 22.4627728467, + "28264": 22.3910165206, + "28265": 22.3190449595, + "28266": 22.2468142956, + "28267": 22.1742791757, + "28268": 22.1013929614, + "28269": 22.028107939, + "28270": 21.954375536, + "28271": 21.8801465436, + "28272": 21.8053713425, + "28273": 21.7300001317, + "28274": 21.6539831572, + "28275": 21.5772709395, + "28276": 21.4998144983, + "28277": 21.4215655723, + "28278": 21.3424768324, + "28279": 21.2625020869, + "28280": 21.1815964769, + "28281": 21.0997166607, + "28282": 21.0168209861, + "28283": 20.9328696483, + "28284": 20.8478248341, + "28285": 20.76165085, + "28286": 20.6743142347, + "28287": 20.5857838546, + "28288": 20.4960309831, + "28289": 20.4050293624, + "28290": 20.3127552488, + "28291": 20.2191874417, + "28292": 20.1243072963, + "28293": 20.0280987215, + "28294": 19.9305481626, + "28295": 19.8316445716, + "28296": 19.731379364, + "28297": 19.6297463653, + "28298": 19.526741747, + "28299": 19.4223639542, + "28300": 19.3166136267, + "28301": 19.2094935135, + "28302": 19.1010083833, + "28303": 18.9911649328, + "28304": 18.8799716924, + "28305": 18.7674389326, + "28306": 18.653578571, + "28307": 18.5384040819, + "28308": 18.4219304085, + "28309": 18.30417388, + "28310": 18.1851521334, + "28311": 18.0648840409, + "28312": 17.9433896437, + "28313": 17.8206900929, + "28314": 17.6968075963, + "28315": 17.5717653741, + "28316": 17.4455876201, + "28317": 17.3182994714, + "28318": 17.1899269843, + "28319": 17.0604971177, + "28320": 16.9300377222, + "28321": 16.7976102589, + "28322": 16.6619395155, + "28323": 16.5223280628, + "28324": 16.3789730883, + "28325": 16.2319153592, + "28326": 16.0813526383, + "28327": 15.9273138972, + "28328": 15.770007359, + "28329": 15.6094791316, + "28330": 15.4459436446, + "28331": 15.279463326, + "28332": 15.1102574285, + "28333": 14.9384032382, + "28334": 14.7641234283, + "28335": 14.5875084982, + "28336": 14.4087830604, + "28337": 14.2280490431, + "28338": 14.0455314572, + "28339": 13.8613417659, + "28340": 13.6757038022, + "28341": 13.4887365942, + "28342": 13.3006612094, + "28343": 13.1116022286, + "28344": 12.9217763806, + "28345": 12.7313117778, + "28346": 12.5404192777, + "28347": 12.3492285286, + "28348": 12.1579430479, + "28349": 11.9666920832, + "28350": 11.7756704307, + "28351": 11.5850050888, + "28352": 11.394880861, + "28353": 11.2054207653, + "28354": 11.0167984687, + "28355": 10.829131419, + "28356": 10.642581148, + "28357": 10.4572581058, + "28358": 10.2733108479, + "28359": 10.0908415791, + "28360": 9.9099852053, + "28361": 9.7308346306, + "28362": 9.5535106131, + "28363": 9.378095901, + "28364": 9.2046967851, + "28365": 9.0333852084, + "28366": 8.8642528528, + "28367": 8.6973604123, + "28368": 8.5327849959, + "28369": 8.3705758071, + "28370": 8.2107955878, + "28371": 8.0534820069, + "28372": 7.8986838086, + "28373": 7.7464272695, + "28374": 7.5967476588, + "28375": 7.4496601786, + "28376": 7.3051872867, + "28377": 7.1633335904, + "28378": 7.0241095269, + "28379": 6.887509734, + "28380": 6.7535335321, + "28381": 6.6221663423, + "28382": 6.493397368, + "28383": 6.3672036771, + "28384": 6.2435654338, + "28385": 6.1224523059, + "28386": 6.0038365576, + "28387": 5.8876814789, + "28388": 5.7739526145, + "28389": 5.6626079484, + "28390": 5.5536075082, + "28391": 5.4469050708, + "28392": 5.3424563523, + "28393": 5.2402120278, + "28394": 5.1401246903, + "28395": 5.0421430039, + "28396": 4.9462175911, + "28397": 4.8522961608, + "28398": 4.7603284629, + "28399": 4.670262253, + "28400": 4.5820474338, + "28401": 4.4956327371, + "28402": 4.4109691566, + "28403": 4.3280072412, + "28404": 4.2466999106, + "28405": 4.1670002694, + "28406": 4.0888638848, + "28407": 4.0122470466, + "28408": 3.9371085599, + "28409": 3.8634083939, + "28410": 3.7911090693, + "28411": 3.7201746107, + "28412": 3.6505715842, + "28413": 3.582268312, + "28414": 3.5152356049, + "28415": 3.4494461958, + "28416": 3.3848752088, + "28417": 3.3214997748, + "28418": 3.2592996158, + "28419": 3.1982557031, + "28420": 3.1383550155, + "28421": 3.0795784054, + "28422": 3.0219459468, + "28423": 2.965520121, + "28424": 2.9103678367, + "28425": 2.8565471172, + "28426": 2.8041076049, + "28427": 2.7530912486, + "28428": 2.7035329171, + "28429": 2.6554609908, + "28430": 2.6088979205, + "28431": 2.5638607551, + "28432": 2.5203616406, + "28433": 2.4784082882, + "28434": 2.4380044134, + "28435": 2.3991501457, + "28436": 2.36184241, + "28437": 2.3260752796, + "28438": 2.2918403013, + "28439": 2.2591267931, + "28440": 2.2279221155, + "28441": 2.1982119159, + "28442": 2.1699803482, + "28443": 2.1432102672, + "28444": 2.1178833993, + "28445": 2.0939804901, + "28446": 2.0714814296, + "28447": 2.0503653573, + "28448": 2.0306107472, + "28449": 2.0121954736, + "28450": 1.9950968611, + "28451": 1.9792917179, + "28452": 1.9647563556, + "28453": 1.9514665957, + "28454": 1.9393977653, + "28455": 1.9285246842, + "28456": 1.9188216427, + "28457": 1.9102623749, + "28458": 1.9028200271, + "28459": 1.8964671228, + "28460": 1.8911755285, + "28461": 1.8869164183, + "28462": 1.8836602416, + "28463": 1.8813766948, + "28464": 1.8800346976, + "28465": 1.8796023755, + "28466": 1.8800470512, + "28467": 1.8813352432, + "28468": 1.883432675, + "28469": 1.8863042949, + "28470": 1.8899143066, + "28471": 1.8942262113, + "28472": 1.8992028623, + "28473": 1.9048065309, + "28474": 1.9109989853, + "28475": 1.9177415801, + "28476": 1.9249953582, + "28477": 1.9327211629, + "28478": 1.9408797598, + "28479": 1.9494319683, + "28480": 1.9583388008, + "28481": 1.967561608, + "28482": 1.9770622308, + "28483": 1.986803155, + "28484": 1.9967476685, + "28485": 2.0068600196, + "28486": 2.0171055737, + "28487": 2.0274509677, + "28488": 2.0378642597, + "28489": 2.0483150726, + "28490": 2.0587747296, + "28491": 2.0692163808, + "28492": 2.0796151182, + "28493": 2.0899480793, + "28494": 2.1001945357, + "28495": 2.1103359684, + "28496": 2.1203561263, + "28497": 2.130241069, + "28498": 2.1399791917, + "28499": 2.1495612331, + "28500": 2.1589802654, + "28501": 2.1682316663, + "28502": 2.1773130739, + "28503": 2.186224323, + "28504": 2.1949673667, + "28505": 2.2035461797, + "28506": 2.2119666483, + "28507": 2.2202364451, + "28508": 2.2283648913, + "28509": 2.236362807, + "28510": 2.2442423513, + "28511": 2.2520168538, + "28512": 2.2597006384, + "28513": 2.2673088419, + "28514": 2.2748572278, + "28515": 2.2823619982, + "28516": 2.2898396047, + "28517": 2.2973065595, + "28518": 2.3047792498, + "28519": 2.3122737547, + "28520": 2.3198056683, + "28521": 2.3273899283, + "28522": 2.3350406537, + "28523": 2.3427709899, + "28524": 2.3505929651, + "28525": 2.3585173568, + "28526": 2.3665535708, + "28527": 2.3747095326, + "28528": 2.3829915916, + "28529": 2.3914044398, + "28530": 2.3999510445, + "28531": 2.4086325954, + "28532": 2.4174484667, + "28533": 2.4263961944, + "28534": 2.4354714682, + "28535": 2.4446681385, + "28536": 2.4539782391, + "28537": 2.4633920231, + "28538": 2.4728980145, + "28539": 2.4824830736, + "28540": 2.4921324753, + "28541": 2.5018300016, + "28542": 2.511558046, + "28543": 2.5212977301, + "28544": 2.5310290309, + "28545": 2.54073092, + "28546": 2.5503815103, + "28547": 2.5599582134, + "28548": 2.5694379034, + "28549": 2.578797088, + "28550": 2.5880120853, + "28551": 2.5970592046, + "28552": 2.6059149308, + "28553": 2.6145561107, + "28554": 2.6229601399, + "28555": 2.6311051491, + "28556": 2.638970188, + "28557": 2.6465354065, + "28558": 2.6537822302, + "28559": 2.6606935297, + "28560": 2.6672537829, + "28561": 2.6734492269, + "28562": 2.6792680006, + "28563": 2.6847002747, + "28564": 2.6897383689, + "28565": 2.6943768547, + "28566": 2.6986126433, + "28567": 2.7024450565, + "28568": 2.7058758806, + "28569": 2.7089094029, + "28570": 2.7115524288, + "28571": 2.7138142807, + "28572": 2.7157067768, + "28573": 2.7172441916, + "28574": 2.7184431955, + "28575": 2.7193227772, + "28576": 2.7199041452, + "28577": 2.7202106129, + "28578": 2.7202674651, + "28579": 2.7201018086, + "28580": 2.7197424063, + "28581": 2.7192194978, + "28582": 2.7185646067, + "28583": 2.7178103354, + "28584": 2.7169901511, + "28585": 2.7161381615, + "28586": 2.7152888857, + "28587": 2.7144770175, + "28588": 2.7137371874, + "28589": 2.7131037218, + "28590": 2.7126104024, + "28591": 2.7122902278, + "28592": 2.7121751788, + "28593": 2.7122959886, + "28594": 2.7126819204, + "28595": 2.7133605531, + "28596": 2.7143575777, + "28597": 2.7156966039, + "28598": 2.7173989806, + "28599": 2.7194836295, + "28600": 2.721966894, + "28601": 2.7248624035, + "28602": 2.7281809546, + "28603": 2.7319304099, + "28604": 2.7361156144, + "28605": 2.7407383304, + "28606": 2.7457971914, + "28607": 2.7512876744, + "28608": 2.7572020918, + "28609": 2.7635296023, + "28610": 2.7702562405, + "28611": 2.7773649657, + "28612": 2.7848357286, + "28613": 2.7926455567, + "28614": 2.8007686571, + "28615": 2.8091765361, + "28616": 2.8178381356, + "28617": 2.8267199852, + "28618": 2.835786369, + "28619": 2.844999507, + "28620": 2.8543197492, + "28621": 2.8637057825, + "28622": 2.8731148486, + "28623": 2.8825029721, + "28624": 2.8918251981, + "28625": 2.9010358367, + "28626": 2.9100887159, + "28627": 2.918937438, + "28628": 2.9275356415, + "28629": 2.9358372652, + "28630": 2.9437968138, + "28631": 2.9513696231, + "28632": 2.9585121241, + "28633": 2.9651821036, + "28634": 2.9713389607, + "28635": 2.9769439568, + "28636": 2.981960458, + "28637": 2.9863541686, + "28638": 2.9900933537, + "28639": 2.9931490496, + "28640": 2.9954952613, + "28641": 2.9971091436, + "28642": 2.9979711675, + "28643": 2.9980652679, + "28644": 2.9973789735, + "28645": 2.9959035157, + "28646": 2.9936339187, + "28647": 2.9905690664, + "28648": 2.9867117481, + "28649": 2.9820686818, + "28650": 2.9766505139, + "28651": 2.9704717963, + "28652": 2.9635509407, + "28653": 2.9559101493, + "28654": 2.9475753236, + "28655": 2.9385759513, + "28656": 2.9289449713, + "28657": 2.9187186191, + "28658": 2.9079362527, + "28659": 2.8966401597, + "28660": 2.8848753489, + "28661": 2.8726893253, + "28662": 2.8601318516, + "28663": 2.8472546984, + "28664": 2.8341113823, + "28665": 2.8207568969, + "28666": 2.8072474362, + "28667": 2.7936401123, + "28668": 2.7799926712, + "28669": 2.7663632061, + "28670": 2.7528098713, + "28671": 2.739390598, + "28672": 2.7261628144, + "28673": 2.7131831701, + "28674": 2.7005072678, + "28675": 2.6881894034, + "28676": 2.6762823148, + "28677": 2.664836942, + "28678": 2.6539021982, + "28679": 2.6435247544, + "28680": 2.6337488367, + "28681": 2.6246160382, + "28682": 2.6161651452, + "28683": 2.6084319798, + "28684": 2.6014492568, + "28685": 2.5952464578, + "28686": 2.5898497204, + "28687": 2.5852817453, + "28688": 2.5815617181, + "28689": 2.5787052487, + "28690": 2.5767243265, + "28691": 2.5756272923, + "28692": 2.5754188259, + "28693": 2.5760999497, + "28694": 2.5776680478, + "28695": 2.5801169011, + "28696": 2.5834367373, + "28697": 2.5876142951, + "28698": 2.5926329041, + "28699": 2.5984725784, + "28700": 2.6051101242, + "28701": 2.6125192609, + "28702": 2.6206707559, + "28703": 2.6295325716, + "28704": 2.6390700432, + "28705": 2.6492462393, + "28706": 2.6600223746, + "28707": 2.6713580872, + "28708": 2.6832116389, + "28709": 2.6955401178, + "28710": 2.7082996527, + "28711": 2.7214456343, + "28712": 2.7349329455, + "28713": 2.7487161962, + "28714": 2.7627499638, + "28715": 2.7769890366, + "28716": 2.7913886594, + "28717": 2.8059047798, + "28718": 2.8204942928, + "28719": 2.8351152834, + "28720": 2.8497272649, + "28721": 2.8642914112, + "28722": 2.8787707817, + "28723": 2.8931305376, + "28724": 2.9073381469, + "28725": 2.9213635779, + "28726": 2.9351794782, + "28727": 2.9487613396, + "28728": 2.9620876453, + "28729": 2.9751400002, + "28730": 2.987903242, + "28731": 3.0003655323, + "28732": 3.0125184267, + "28733": 3.0243569241, + "28734": 3.0358794927, + "28735": 3.0470880749, + "28736": 3.0579880688, + "28737": 3.0685882871, + "28738": 3.078900894, + "28739": 3.08894132, + "28740": 3.0987281551, + "28741": 3.1082830218, + "28742": 3.1176304281, + "28743": 3.1267976026, + "28744": 3.1358143113, + "28745": 3.1447126602, + "28746": 3.153526882, + "28747": 3.1622931117, + "28748": 3.1710491501, + "28749": 3.1798342192, + "28750": 3.1886887102, + "28751": 3.1976539254, + "28752": 3.2067718181, + "28753": 3.2160847293, + "28754": 3.2256351261, + "28755": 3.2354653408, + "28756": 3.245617315, + "28757": 3.2561323477, + "28758": 3.2670508512, + "28759": 3.2784121149, + "28760": 3.2902540785, + "28761": 3.3026131163, + "28762": 3.3155238332, + "28763": 3.3290188727, + "28764": 3.3431287395, + "28765": 3.3578816353, + "28766": 3.3733033099, + "28767": 3.3894169271, + "28768": 3.4062429458, + "28769": 3.4237990171, + "28770": 3.4420998969, + "28771": 3.4611573743, + "28772": 3.4809802151, + "28773": 3.5015741215, + "28774": 3.5229417067, + "28775": 3.5450824847, + "28776": 3.5679928746, + "28777": 3.5916662198, + "28778": 3.6160928208, + "28779": 3.6412599827, + "28780": 3.6671520751, + "28781": 3.6937506061, + "28782": 3.7210343087, + "28783": 3.7489792401, + "28784": 3.7775588927, + "28785": 3.8067443181, + "28786": 3.8365042618, + "28787": 3.8668053102, + "28788": 3.8976120482, + "28789": 3.9288872288, + "28790": 3.9605919521, + "28791": 3.9926858557, + "28792": 4.0251273149, + "28793": 4.0578736526, + "28794": 4.0908813581, + "28795": 4.1241063154, + "28796": 4.1575040388, + "28797": 4.1910299164, + "28798": 4.2246394596, + "28799": 4.2582885591, + "28800": 4.2919337444, + "28801": 4.3255324471, + "28802": 4.359043266, + "28803": 4.3924262325, + "28804": 4.4256430747, + "28805": 4.4586574786, + "28806": 4.4914353436, + "28807": 4.5239450317, + "28808": 4.5561576068, + "28809": 4.5880470629, + "28810": 4.619590538, + "28811": 4.6507685122, + "28812": 4.6815649872, + "28813": 4.7119676447, + "28814": 4.7419679822, + "28815": 4.7715614228, + "28816": 4.8007473987, + "28817": 4.8295294042, + "28818": 4.8579150193, + "28819": 4.8859159001, + "28820": 4.913547736, + "28821": 4.9408301727, + "28822": 4.9677867008, + "28823": 4.994444509, + "28824": 5.0208343027, + "28825": 5.0469900886, + "28826": 5.0729489264, + "28827": 5.0987506484, + "28828": 5.1244375495, + "28829": 5.1500540492, + "28830": 5.1756463288, + "28831": 5.2012619461, + "28832": 5.2269494312, + "28833": 5.2527578666, + "28834": 5.2787364559, + "28835": 5.3049340846, + "28836": 5.3313988774, + "28837": 5.3581777565, + "28838": 5.3853160042, + "28839": 5.4128568362, + "28840": 5.4408409877, + "28841": 5.4693063178, + "28842": 5.4982874364, + "28843": 5.5278153563, + "28844": 5.5579171758, + "28845": 5.5886157935, + "28846": 5.6199296592, + "28847": 5.6518725638, + "28848": 5.6844534692, + "28849": 5.7176763809, + "28850": 5.7515402651, + "28851": 5.786039009, + "28852": 5.8211614275, + "28853": 5.8568913143, + "28854": 5.8932075368, + "28855": 5.9300841756, + "28856": 5.9674907046, + "28857": 6.0053922123, + "28858": 6.0437496606, + "28859": 6.082520179, + "28860": 6.121657392, + "28861": 6.1611117755, + "28862": 6.2008310404, + "28863": 6.2407605391, + "28864": 6.2808436915, + "28865": 6.3210224276, + "28866": 6.3612376427, + "28867": 6.4014296615, + "28868": 6.4415387085, + "28869": 6.4815053804, + "28870": 6.5212711183, + "28871": 6.5607786749, + "28872": 6.5999725758, + "28873": 6.638799571, + "28874": 6.6772090731, + "28875": 6.7151535819, + "28876": 6.7525890903, + "28877": 6.7894754718, + "28878": 6.8257768453, + "28879": 6.8614619165, + "28880": 6.8965042932, + "28881": 6.9308827726, + "28882": 6.9645815991, + "28883": 6.9975906903, + "28884": 7.0299058287, + "28885": 7.0615288188, + "28886": 7.0924676058, + "28887": 7.1227363553, + "28888": 7.1523554911, + "28889": 7.1813516905, + "28890": 7.2097578334, + "28891": 7.2376129051, + "28892": 7.2649618501, + "28893": 7.2918553754, + "28894": 7.3183497027, + "28895": 7.3445062677, + "28896": 7.3703913654, + "28897": 7.3960757423, + "28898": 7.4216341336, + "28899": 7.4471447474, + "28900": 7.4726886958, + "28901": 7.4983493748, + "28902": 7.5242117962, + "28903": 7.5503618702, + "28904": 7.5768856499, + "28905": 7.6038685306, + "28906": 7.6313944213, + "28907": 7.6595448815, + "28908": 7.6883982425, + "28909": 7.7180287056, + "28910": 7.7485054394, + "28911": 7.7798916704, + "28912": 7.8122437888, + "28913": 7.8456104646, + "28914": 7.8800317973, + "28915": 7.9155384959, + "28916": 7.9521511105, + "28917": 7.9898793136, + "28918": 8.0287212532, + "28919": 8.0686629738, + "28920": 8.1099100063, + "28921": 8.1527379169, + "28922": 8.1972168232, + "28923": 8.2433006688, + "28924": 8.2909261177, + "28925": 8.3400183038, + "28926": 8.3904895098, + "28927": 8.4422397593, + "28928": 8.4951567418, + "28929": 8.5491164246, + "28930": 8.6039831977, + "28931": 8.6596107134, + "28932": 8.7158422017, + "28933": 8.7725115387, + "28934": 8.8294437163, + "28935": 8.8864561241, + "28936": 8.9433591498, + "28937": 8.9999576536, + "28938": 9.05605167, + "28939": 9.1114380462, + "28940": 9.1659112113, + "28941": 9.2192649464, + "28942": 9.2712931846, + "28943": 9.3217918766, + "28944": 9.3705597842, + "28945": 9.4174004045, + "28946": 9.46212272, + "28947": 9.5045431449, + "28948": 9.5444861985, + "28949": 9.5817864391, + "28950": 9.6162890309, + "28951": 9.6478516343, + "28952": 9.6763448432, + "28953": 9.7016540046, + "28954": 9.7236795084, + "28955": 9.7423385146, + "28956": 9.7575650849, + "28957": 9.7693118005, + "28958": 9.7775497297, + "28959": 9.7822699255, + "28960": 9.7834832297, + "28961": 9.7812216416, + "28962": 9.7755379639, + "28963": 9.7665070385, + "28964": 9.7542252413, + "28965": 9.7388115833, + "28966": 9.7204070633, + "28967": 9.6991756335, + "28968": 9.6753034188, + "28969": 9.6489995465, + "28970": 9.6204952388, + "28971": 9.5900445054, + "28972": 9.5579231141, + "28973": 9.5244291429, + "28974": 9.48988183, + "28975": 9.4546219802, + "28976": 9.4190106922, + "28977": 9.3834296133, + "28978": 9.3482795369, + "28979": 9.3139804985, + "28980": 9.2809702348, + "28981": 9.2497041126, + "28982": 9.2206534385, + "28983": 9.1943052155, + "28984": 9.17116029, + "28985": 9.1517329334, + "28986": 9.1365488157, + "28987": 9.1261444121, + "28988": 9.1210647953, + "28989": 9.1218628745, + "28990": 9.1290970006, + "28991": 9.1433300534, + "28992": 9.1651268593, + "28993": 9.1950531509, + "28994": 9.233672803, + "28995": 9.2815466988, + "28996": 9.3392297957, + "28997": 9.4072699437, + "28998": 9.4862047966, + "28999": 9.5765606401, + "29000": 66.3289190251, + "29001": 66.3289164115, + "29002": 66.3289145929, + "29003": 66.3289117345, + "29004": 66.3289097436, + "29005": 66.3289065835, + "29006": 66.3289043805, + "29007": 66.3285596167, + "29008": 66.3271043781, + "29009": 66.323672019, + "29010": 66.317469228, + "29011": 66.3077777444, + "29012": 66.2939421627, + "29013": 66.2753622963, + "29014": 66.2514862845, + "29015": 66.2218049711, + "29016": 66.1858472477, + "29017": 66.1431762675, + "29018": 66.0933863969, + "29019": 66.0361007987, + "29020": 65.9709695626, + "29021": 65.8976682988, + "29022": 65.8158971225, + "29023": 65.7253799685, + "29024": 65.6258641784, + "29025": 65.5171203113, + "29026": 65.3989421336, + "29027": 65.2711467481, + "29028": 65.133574827, + "29029": 64.9860909179, + "29030": 64.8285837918, + "29031": 64.6609668108, + "29032": 64.4831782907, + "29033": 64.2951818377, + "29034": 64.096966644, + "29035": 63.8885477224, + "29036": 63.6699660704, + "29037": 63.4412887486, + "29038": 63.2026088653, + "29039": 62.9540454583, + "29040": 62.6957432685, + "29041": 62.427872399, + "29042": 62.1506278583, + "29043": 61.8642289842, + "29044": 61.56891875, + "29045": 61.2649629535, + "29046": 60.9526492912, + "29047": 60.6322863224, + "29048": 60.3042023274, + "29049": 59.9687440675, + "29050": 59.6262754516, + "29051": 59.2771761206, + "29052": 58.9218399557, + "29053": 58.5606735216, + "29054": 58.1940944545, + "29055": 57.8225298057, + "29056": 57.4464143502, + "29057": 57.066188874, + "29058": 56.6822984483, + "29059": 56.295190704, + "29060": 55.9053141161, + "29061": 55.5131163092, + "29062": 55.1190423949, + "29063": 54.7235333498, + "29064": 54.3270244446, + "29065": 53.9299437328, + "29066": 53.5327106068, + "29067": 53.1357344289, + "29068": 52.7394132447, + "29069": 52.344132583, + "29070": 51.950264349, + "29071": 51.5581658134, + "29072": 51.1681787021, + "29073": 50.7806283882, + "29074": 50.3958231873, + "29075": 50.0140537585, + "29076": 49.6355926098, + "29077": 49.2606937072, + "29078": 48.8895921871, + "29079": 48.5225041685, + "29080": 48.1596266633, + "29081": 47.8011375809, + "29082": 47.4471958232, + "29083": 47.0979414662, + "29084": 46.7534960231, + "29085": 46.4139627838, + "29086": 46.0794272266, + "29087": 45.7499574949, + "29088": 45.4256049349, + "29089": 45.1064046878, + "29090": 44.7923763309, + "29091": 44.4835245609, + "29092": 44.1798399163, + "29093": 43.8812995297, + "29094": 43.5878679071, + "29095": 43.2994977281, + "29096": 43.016130661, + "29097": 42.7376981889, + "29098": 42.4641224411, + "29099": 42.1953170264, + "29100": 41.9311878624, + "29101": 41.6716339981, + "29102": 41.4165484254, + "29103": 41.1658188767, + "29104": 40.919328604, + "29105": 40.6769571378, + "29106": 40.4385810231, + "29107": 40.2040745293, + "29108": 39.9733103325, + "29109": 39.7461601679, + "29110": 39.5224954512, + "29111": 39.3021878675, + "29112": 39.0851099245, + "29113": 38.871135458, + "29114": 38.6601400768, + "29115": 38.4520015589, + "29116": 38.2466002134, + "29117": 38.0438192162, + "29118": 37.8435449182, + "29119": 37.6456671251, + "29120": 37.4500793479, + "29121": 37.2566790251, + "29122": 37.0653677141, + "29123": 36.8760512537, + "29124": 36.6886398979, + "29125": 36.50304842, + "29126": 36.3191961896, + "29127": 36.1370072211, + "29128": 35.9564101975, + "29129": 35.7773384667, + "29130": 35.599730016, + "29131": 35.4235274215, + "29132": 35.2486777773, + "29133": 35.0751326038, + "29134": 34.9028477377, + "29135": 34.7317832045, + "29136": 34.5619030751, + "29137": 34.3931753085, + "29138": 34.225571582, + "29139": 34.0590671099, + "29140": 33.8936404535, + "29141": 33.7292733224, + "29142": 33.5659503699, + "29143": 33.4036589832, + "29144": 33.2423890705, + "29145": 33.0821328461, + "29146": 32.9228846141, + "29147": 32.7646405538, + "29148": 32.6073985064, + "29149": 32.4511577649, + "29150": 32.295918868, + "29151": 32.1416834001, + "29152": 31.9884537962, + "29153": 31.8362331555, + "29154": 31.6850250617, + "29155": 31.5348334125, + "29156": 31.3856622594, + "29157": 31.2375156559, + "29158": 31.0903975174, + "29159": 30.9443114922, + "29160": 30.7992608428, + "29161": 30.6552483404, + "29162": 30.5122761695, + "29163": 30.3703458462, + "29164": 30.2294581474, + "29165": 30.0896130524, + "29166": 29.9508096968, + "29167": 29.8130463373, + "29168": 29.6763203291, + "29169": 29.5406281139, + "29170": 29.4059652187, + "29171": 29.2723262658, + "29172": 29.1397049917, + "29173": 29.0080942768, + "29174": 28.8774861822, + "29175": 28.7478719966, + "29176": 28.6192422893, + "29177": 28.4915869705, + "29178": 28.364895358, + "29179": 28.2391562485, + "29180": 28.1143579939, + "29181": 27.9904885809, + "29182": 27.8675357137, + "29183": 27.7454868982, + "29184": 27.6243295279, + "29185": 27.5040509699, + "29186": 27.38463865, + "29187": 27.2660801368, + "29188": 27.1483632242, + "29189": 27.03147601, + "29190": 26.9154069717, + "29191": 26.8001450382, + "29192": 26.6856796562, + "29193": 26.5720008518, + "29194": 26.4590992858, + "29195": 26.3469663032, + "29196": 26.2355939754, + "29197": 26.1249751361, + "29198": 26.01510341, + "29199": 25.9059732334, + "29200": 25.7975798682, + "29201": 25.6899194085, + "29202": 25.5829887787, + "29203": 25.4767857256, + "29204": 25.3713088027, + "29205": 25.2665573479, + "29206": 25.1625314542, + "29207": 25.059231935, + "29208": 24.9566602829, + "29209": 24.8548186235, + "29210": 24.7537096642, + "29211": 24.6533366392, + "29212": 24.5537032501, + "29213": 24.4548136034, + "29214": 24.3566721466, + "29215": 24.2592836005, + "29216": 24.162652892, + "29217": 24.0667850848, + "29218": 23.9716853111, + "29219": 23.877358703, + "29220": 23.7838103256, + "29221": 23.6910451114, + "29222": 23.5990677969, + "29223": 23.5078828624, + "29224": 23.417494474, + "29225": 23.3279064304, + "29226": 23.2391221126, + "29227": 23.1511444388, + "29228": 23.0639758236, + "29229": 22.9776181421, + "29230": 22.8920726992, + "29231": 22.807340205, + "29232": 22.7234207543, + "29233": 22.6403138131, + "29234": 22.5580182102, + "29235": 22.4765321347, + "29236": 22.3958531389, + "29237": 22.3159781474, + "29238": 22.2369034714, + "29239": 22.1586248289, + "29240": 22.0811373695, + "29241": 22.0044357053, + "29242": 21.9285139461, + "29243": 21.8533657394, + "29244": 21.7789843155, + "29245": 21.7053625357, + "29246": 21.6324929454, + "29247": 21.5603678302, + "29248": 21.4889792755, + "29249": 21.4183192291, + "29250": 21.3483795655, + "29251": 21.2791521537, + "29252": 21.2106289254, + "29253": 21.1428019454, + "29254": 21.0756634824, + "29255": 21.0092060808, + "29256": 20.9434226315, + "29257": 20.8783064439, + "29258": 20.8138513157, + "29259": 20.7500516017, + "29260": 20.6869022818, + "29261": 20.6243990255, + "29262": 20.5625382548, + "29263": 20.5013172041, + "29264": 20.440733976, + "29265": 20.380787594, + "29266": 20.3214780513, + "29267": 20.2628063542, + "29268": 20.2047745614, + "29269": 20.1473858184, + "29270": 20.0906443861, + "29271": 20.0345556637, + "29272": 19.9791262069, + "29273": 19.9243637389, + "29274": 19.8702771563, + "29275": 19.8168765285, + "29276": 19.7641730915, + "29277": 19.7121792349, + "29278": 19.6609084835, + "29279": 19.610375473, + "29280": 19.5605959195, + "29281": 19.5115865841, + "29282": 19.4633652318, + "29283": 19.4159505856, + "29284": 19.3693622756, + "29285": 19.3236207843, + "29286": 19.2787473877, + "29287": 19.2347640927, + "29288": 19.1916935717, + "29289": 19.1495590943, + "29290": 19.108384457, + "29291": 19.0681939114, + "29292": 19.0290120905, + "29293": 18.9908639352, + "29294": 18.9537746194, + "29295": 18.9177694765, + "29296": 18.8828739253, + "29297": 18.8491133981, + "29298": 18.8165132691, + "29299": 18.7850987857, + "29300": 18.7548950009, + "29301": 18.7259267089, + "29302": 18.6982183832, + "29303": 18.6717941172, + "29304": 18.6466775685, + "29305": 18.6228919063, + "29306": 18.6004597615, + "29307": 18.5794031817, + "29308": 18.5597435879, + "29309": 18.5415017359, + "29310": 18.5246976809, + "29311": 18.5093507448, + "29312": 18.4954794875, + "29313": 18.4831016809, + "29314": 18.4722342859, + "29315": 18.4628934321, + "29316": 18.4550944002, + "29317": 18.4488516069, + "29318": 18.4441785913, + "29319": 18.441088004, + "29320": 18.4395915978, + "29321": 18.4391824759, + "29322": 18.4391519658, + "29323": 18.4390796043, + "29324": 18.4390188303, + "29325": 18.4389359154, + "29326": 18.4388787316, + "29327": 18.4387989916, + "29328": 18.4387441732, + "29329": 18.4386678726, + "29330": 18.4386154367, + "29331": 18.4385426379, + "29332": 18.4384926206, + "29333": 18.4384233593, + "29334": 18.4383757837, + "29335": 18.4383100747, + "29336": 18.4382649499, + "29337": 18.4382027878, + "29338": 18.438160109, + "29339": 18.438101469, + "29340": 18.438061218, + "29341": 18.4380060568, + "29342": 18.4379682027, + "29343": 18.4379164595, + "29344": 18.4378809595, + "29345": 18.4378325577, + "29346": 18.4377993579, + "29347": 18.4377542064, + "29348": 18.4377232434, + "29349": 18.4376812385, + "29350": 18.4376524399, + "29351": 18.4376134668, + "29352": 18.437586753, + "29353": 18.4375506882, + "29354": 18.4375259734, + "29355": 18.4374926859, + "29356": 18.4374698794, + "29357": 18.437439233, + "29358": 18.4374182406, + "29359": 18.4373900955, + "29360": 18.4373708205, + "29361": 18.4373450349, + "29362": 18.4373273795, + "29363": 18.4373038113, + "29364": 18.4372876775, + "29365": 18.4372661856, + "29366": 18.4372514761, + "29367": 18.4372319217, + "29368": 18.437218541, + "29369": 18.4372007888, + "29370": 18.4371886436, + "29371": 18.4371725625, + "29372": 18.4371615627, + "29373": 18.4371470269, + "29374": 18.437137086, + "29375": 18.4371239751, + "29376": 18.4371150105, + "29377": 18.4371032105, + "29378": 18.4370951437, + "29379": 18.437084547, + "29380": 18.4370773043, + "29381": 18.4370678098, + "29382": 18.4370613219, + "29383": 18.4370528353, + "29384": 18.4370470374, + "29385": 18.4370394711, + "29386": 18.4370343032, + "29387": 18.437027576, + "29388": 18.4370229824, + "29389": 18.4370170193, + "29390": 18.4370129487, + "29391": 18.437007681, + "29392": 18.4370040863, + "29393": 18.4369994508, + "29394": 18.4369962888, + "29395": 18.4369922277, + "29396": 18.4369894588, + "29397": 18.4369859196, + "29398": 18.4369835077, + "29399": 18.4369804422, + "29400": 18.4369783546, + "29401": 18.436975719, + "29402": 18.4369739256, + "29403": 18.4369716802, + "29404": 18.4369701538, + "29405": 18.4369682623, + "29406": 18.436966978, + "29407": 18.436965419, + "29408": 18.4369643629, + "29409": 18.4369630944, + "29410": 18.4369622363, + "29411": 18.4369612301, + "29412": 18.4369605516, + "29413": 18.4369597826, + "29414": 18.4369592664, + "29415": 18.4369587117, + "29416": 18.4369583421, + "29417": 18.4369579806, + "29418": 18.4369586793, + "29419": 18.4369592321, + "29420": 18.4369696515, + "29421": 18.4369773192, + "29422": 18.4370790091, + "29423": 18.4375027629, + "29424": 18.4385028176, + "29425": 18.4403190468, + "29426": 18.4431766171, + "29427": 18.4472863292, + "29428": 18.4528448616, + "29429": 18.4600350669, + "29430": 18.4690262842, + "29431": 18.4799746714, + "29432": 18.4930235537, + "29433": 18.5083037843, + "29434": 18.5259341158, + "29435": 18.5460215796, + "29436": 18.5686618703, + "29437": 18.5939397349, + "29438": 18.6219293626, + "29439": 18.6526947758, + "29440": 18.6862902198, + "29441": 18.7227605496, + "29442": 18.7621416139, + "29443": 18.8044606337, + "29444": 18.8497365767, + "29445": 18.8979805247, + "29446": 18.9491960356, + "29447": 19.0033794973, + "29448": 19.0605204753, + "29449": 19.1206020523, + "29450": 19.1836011605, + "29451": 19.2494889063, + "29452": 19.3182308871, + "29453": 19.3897875008, + "29454": 19.4641142483, + "29455": 19.5411620281, + "29456": 19.6208774249, + "29457": 19.7032029903, + "29458": 19.7880775187, + "29459": 19.8754363156, + "29460": 19.9652114611, + "29461": 20.0573320672, + "29462": 20.1517245306, + "29463": 20.2483127797, + "29464": 20.3470185176, + "29465": 20.4477614599, + "29466": 20.5504595685, + "29467": 20.6550292813, + "29468": 20.7613857372, + "29469": 20.8694429974, + "29470": 20.9791142623, + "29471": 21.0903120849, + "29472": 21.202948579, + "29473": 21.3169356232, + "29474": 21.4321850611, + "29475": 21.5486088957, + "29476": 21.666119479, + "29477": 21.7846296963, + "29478": 21.9040531444, + "29479": 22.0243043038, + "29480": 22.1452987044, + "29481": 22.2669530838, + "29482": 22.3891855384, + "29483": 22.5119156668, + "29484": 22.6350647044, + "29485": 22.7585556492, + "29486": 22.8823133789, + "29487": 23.006264758, + "29488": 23.1303387349, + "29489": 23.2544664287, + "29490": 23.3785812054, + "29491": 23.5026187435, + "29492": 23.6265170882, + "29493": 23.7502166944, + "29494": 23.8736604587, + "29495": 23.9967937402, + "29496": 24.1195643696, + "29497": 24.2419226478, + "29498": 24.3638213333, + "29499": 24.4852156192, + "29500": 24.6060630997, + "29501": 24.7263237274, + "29502": 24.8459597604, + "29503": 24.9649357013, + "29504": 25.0832182278, + "29505": 25.2007761156, + "29506": 25.3175801548, + "29507": 25.4336030602, + "29508": 25.5488193761, + "29509": 25.6632053768, + "29510": 25.7767389638, + "29511": 25.8893995595, + "29512": 26.0011680001, + "29513": 26.1120264268, + "29514": 26.2219581769, + "29515": 26.3309476759, + "29516": 26.4389803312, + "29517": 26.546042428, + "29518": 26.6521210286, + "29519": 26.7572038753, + "29520": 26.8612792983, + "29521": 26.9643361284, + "29522": 27.0663636162, + "29523": 27.1673513568, + "29524": 27.2672892223, + "29525": 27.3661673011, + "29526": 27.4639758446, + "29527": 27.5607052224, + "29528": 27.6563458854, + "29529": 27.7508883365, + "29530": 27.8443231113, + "29531": 27.9366407649, + "29532": 28.0278318694, + "29533": 28.1178870175, + "29534": 28.2067968354, + "29535": 28.294552003, + "29536": 28.3811432814, + "29537": 28.4665615478, + "29538": 28.5507978367, + "29539": 28.6338433876, + "29540": 28.7156896978, + "29541": 28.7963285812, + "29542": 28.8757522304, + "29543": 28.9539532838, + "29544": 29.0309248951, + "29545": 29.1066608055, + "29546": 29.1811554176, + "29547": 29.2544038707, + "29548": 29.3264021157, + "29549": 29.3971469901, + "29550": 29.4666362915, + "29551": 29.534868849, + "29552": 29.6018445919, + "29553": 29.6675646153, + "29554": 29.7320312407, + "29555": 29.7952480726, + "29556": 29.8572200485, + "29557": 29.9179534838, + "29558": 29.977456109, + "29559": 30.0357371001, + "29560": 30.0928071008, + "29561": 30.1486782366, + "29562": 30.2033641201, + "29563": 30.2568798477, + "29564": 30.3092419863, + "29565": 30.3604685511, + "29566": 30.4105789737, + "29567": 30.4595940606, + "29568": 30.507535942, + "29569": 30.5544280115, + "29570": 30.6002948559, + "29571": 30.6451621765, + "29572": 30.6890567018, + "29573": 30.7320060916, + "29574": 30.7740388333, + "29575": 30.8151841319, + "29576": 30.8554717922, + "29577": 30.8949320959, + "29578": 30.9335956736, + "29579": 30.9714933725, + "29580": 31.0086561201, + "29581": 31.0451147859, + "29582": 31.0809000416, + "29583": 31.11604222, + "29584": 31.1505711747, + "29585": 31.1845161409, + "29586": 31.2179055985, + "29587": 31.250767138, + "29588": 31.2831273315, + "29589": 31.3150116078, + "29590": 31.3464441343, + "29591": 31.3774477055, + "29592": 31.4080436393, + "29593": 31.4382516818, + "29594": 31.4680899217, + "29595": 31.4975747145, + "29596": 31.5267206169, + "29597": 31.5555403334, + "29598": 31.5840446734, + "29599": 31.6122425207, + "29600": 31.6401408159, + "29601": 31.6677445505, + "29602": 31.6950567746, + "29603": 31.7220786164, + "29604": 31.7488093155, + "29605": 31.7752462684, + "29606": 31.8013850866, + "29607": 31.827219667, + "29608": 31.8527422745, + "29609": 31.8779436356, + "29610": 31.9028130437, + "29611": 31.9273384744, + "29612": 31.9515067112, + "29613": 31.9753034798, + "29614": 31.9987135916, + "29615": 32.0217210943, + "29616": 32.0443094295, + "29617": 32.0664615967, + "29618": 32.0881603215, + "29619": 32.1093882286, + "29620": 32.1301280176, + "29621": 32.1503626407, + "29622": 32.1700754819, + "29623": 32.1892505353, + "29624": 32.2078725836, + "29625": 32.2259273732, + "29626": 32.2434017866, + "29627": 32.2602840109, + "29628": 32.2765637005, + "29629": 32.2922321336, + "29630": 32.3072823615, + "29631": 32.3217093498, + "29632": 32.3355101097, + "29633": 32.3486838207, + "29634": 32.3612319405, + "29635": 32.3731583048, + "29636": 32.3844692139, + "29637": 32.3951735067, + "29638": 32.4052826204, + "29639": 32.4148106368, + "29640": 32.4237743134, + "29641": 32.4321930998, + "29642": 32.4400891388, + "29643": 32.447487252, + "29644": 32.45441491, + "29645": 32.4609021864, + "29646": 32.4669816972, + "29647": 32.4726885245, + "29648": 32.4780601245, + "29649": 32.4831362217, + "29650": 32.4879586888, + "29651": 32.4925714115, + "29652": 32.4970201423, + "29653": 32.5013523401, + "29654": 32.505616999, + "29655": 32.5098644664, + "29656": 32.5141462508, + "29657": 32.5185148211, + "29658": 32.5230233983, + "29659": 32.5277257397, + "29660": 32.5326759188, + "29661": 32.5379280996, + "29662": 32.5435363086, + "29663": 32.5495542045, + "29664": 32.5560348475, + "29665": 32.5630304687, + "29666": 32.5705922417, + "29667": 32.5787700573, + "29668": 32.587612302, + "29669": 32.5971656423, + "29670": 32.6074748152, + "29671": 32.6185824268, + "29672": 32.6305287591, + "29673": 32.6433515867, + "29674": 32.6570860038, + "29675": 32.6717642636, + "29676": 32.6874156284, + "29677": 32.7040662341, + "29678": 32.7217389677, + "29679": 32.7404533586, + "29680": 32.7602254856, + "29681": 32.7810678976, + "29682": 32.8029895512, + "29683": 32.8259957628, + "29684": 32.8500881768, + "29685": 32.87526475, + "29686": 32.9015197515, + "29687": 32.9288437785, + "29688": 32.9572237881, + "29689": 32.9866431442, + "29690": 33.0170816792, + "29691": 33.0485157718, + "29692": 33.0809184374, + "29693": 33.1142594342, + "29694": 33.1485053811, + "29695": 33.1836198897, + "29696": 33.2195637076, + "29697": 33.2562948732, + "29698": 33.2937688819, + "29699": 33.3319388614, + "29700": 33.3707557568, + "29701": 33.4101685233, + "29702": 33.4501243271, + "29703": 33.4905687522, + "29704": 33.5314461748, + "29705": 33.5727017006, + "29706": 33.6142834511, + "29707": 33.6561434819, + "29708": 33.6982378953, + "29709": 33.7405268805, + "29710": 33.782974766, + "29711": 33.8255500705, + "29712": 33.8682255539, + "29713": 33.9109782654, + "29714": 33.9537895897, + "29715": 33.9966452885, + "29716": 34.0395355379, + "29717": 34.08245496, + "29718": 34.1254026478, + "29719": 34.1683821821, + "29720": 34.2114016414, + "29721": 34.2544736013, + "29722": 34.2976151249, + "29723": 34.3408477424, + "29724": 34.3841974196, + "29725": 34.4276945144, + "29726": 34.4713737222, + "29727": 34.5152740071, + "29728": 34.5594385217, + "29729": 34.6039145127, + "29730": 34.6487532142, + "29731": 34.6940097266, + "29732": 34.7397428831, + "29733": 34.7860151026, + "29734": 34.8328922301, + "29735": 34.8804433635, + "29736": 34.9287406692, + "29737": 34.9778591857, + "29738": 35.0278766158, + "29739": 35.0788731085, + "29740": 35.1309310311, + "29741": 35.1841347329, + "29742": 35.2385702996, + "29743": 35.2943253025, + "29744": 35.3514885397, + "29745": 35.4101497737, + "29746": 35.4703994646, + "29747": 35.5323285, + "29748": 35.5960279245, + "29749": 35.661588667, + "29750": 35.7291012702, + "29751": 35.7986556212, + "29752": 35.8703406851, + "29753": 35.9442442429, + "29754": 36.0204526344, + "29755": 36.0990505077, + "29756": 36.1801205758, + "29757": 36.2637433818, + "29758": 36.3499970729, + "29759": 36.4389571849, + "29760": 36.5306964377, + "29761": 36.625284542, + "29762": 36.7227880193, + "29763": 36.8232700335, + "29764": 36.9267902378, + "29765": 37.0334046337, + "29766": 37.1431654456, + "29767": 37.25612101, + "29768": 37.3723156787, + "29769": 37.491789738, + "29770": 37.6145793423, + "29771": 37.7407164634, + "29772": 37.8702288542, + "29773": 38.0031400279, + "29774": 38.1394692515, + "29775": 38.2792315539, + "29776": 38.422437748, + "29777": 38.5690944667, + "29778": 38.7192042121, + "29779": 38.8727654172, + "29780": 39.0297725206, + "29781": 39.1902160521, + "29782": 39.3540827296, + "29783": 39.5213555667, + "29784": 39.6920139896, + "29785": 39.8660339628, + "29786": 40.0433881234, + "29787": 40.2240459226, + "29788": 40.4079737734, + "29789": 40.5951352042, + "29790": 40.7854910174, + "29791": 40.978999451, + "29792": 41.1756163443, + "29793": 41.3752953044, + "29794": 41.5779878744, + "29795": 41.7836437016, + "29796": 41.9922107042, + "29797": 42.2036352365, + "29798": 42.4178622513, + "29799": 42.6348354576, + "29800": 42.8544974739, + "29801": 43.0767899759, + "29802": 43.3016538362, + "29803": 43.5290292575, + "29804": 43.758855896, + "29805": 43.9910729762, + "29806": 44.2256193942, + "29807": 44.4624338109, + "29808": 44.7014547324, + "29809": 44.9426205787, + "29810": 45.1858697388, + "29811": 45.4311406124, + "29812": 45.6783716378, + "29813": 45.927501305, + "29814": 46.1784681557, + "29815": 46.4312107671, + "29816": 46.6856677231, + "29817": 46.94177757, + "29818": 47.199478759, + "29819": 47.4587095753, + "29820": 47.7194080538, + "29821": 47.9815118838, + "29822": 48.2449583013, + "29823": 48.5096839721, + "29824": 48.7756248651, + "29825": 49.042716118, + "29826": 49.3108918965, + "29827": 49.5800852486, + "29828": 49.8502279554, + "29829": 50.1212503797, + "29830": 50.3930813146, + "29831": 50.6656478344, + "29832": 50.938875148, + "29833": 51.2126864579, + "29834": 51.4870028264, + "29835": 51.7617430503, + "29836": 52.0368235467, + "29837": 52.3121582507, + "29838": 52.5876585272, + "29839": 52.863233098, + "29840": 53.1387879864, + "29841": 53.4142264793, + "29842": 53.6894491094, + "29843": 53.9643536573, + "29844": 54.2388351749, + "29845": 54.512786031, + "29846": 54.7860959791, + "29847": 55.0586522477, + "29848": 55.3303396532, + "29849": 55.601040736, + "29850": 55.8706359177, + "29851": 56.1390036809, + "29852": 56.4060207695, + "29853": 56.6715624085, + "29854": 56.9355025432, + "29855": 57.1977140954, + "29856": 57.4580692355, + "29857": 57.716439669, + "29858": 57.9726969351, + "29859": 58.2267127167, + "29860": 58.4783591575, + "29861": 58.7275091867, + "29862": 58.9740368473, + "29863": 59.2178176264, + "29864": 59.4587287852, + "29865": 59.6966496866, + "29866": 59.9314621172, + "29867": 60.1630506029, + "29868": 60.3913027145, + "29869": 60.6161093622, + "29870": 60.837365076, + "29871": 61.0549682705, + "29872": 61.2688214926, + "29873": 61.4788316488, + "29874": 61.6849102126, + "29875": 61.8869734082, + "29876": 62.0849423708, + "29877": 62.278743282, + "29878": 62.4683074774, + "29879": 62.6535715285, + "29880": 62.8344772956, + "29881": 63.0109719524, + "29882": 63.183007981, + "29883": 63.3505431387, + "29884": 63.5135403938, + "29885": 63.6719678338, + "29886": 63.8257985434, + "29887": 63.9750104546, + "29888": 64.1195861694, + "29889": 64.2595127547, + "29890": 64.3947815123, + "29891": 64.5253877243, + "29892": 64.6513303748, + "29893": 64.7726118513, + "29894": 64.8892376256, + "29895": 65.0012159182, + "29896": 65.1085573464, + "29897": 65.2112745608, + "29898": 65.3093818706, + "29899": 65.4028948619, + "29900": 65.4918300112, + "29901": 65.5762042954, + "29902": 65.6560348133, + "29903": 65.731338388, + "29904": 65.8021312213, + "29905": 65.868428501, + "29906": 65.9302440802, + "29907": 65.9875901267, + "29908": 66.0404768414, + "29909": 66.088912154, + "29910": 66.1329014962, + "29911": 66.1724475576, + "29912": 66.2075501273, + "29913": 66.2382059223, + "29914": 66.264408508, + "29915": 66.2861482102, + "29916": 66.3034121254, + "29917": 66.3161841237, + "29918": 66.3244449556, + "29919": 66.3281723529, + "29920": 66.3289724033, + "29921": 66.3289910205, + "29922": 66.3289867709, + "29923": 66.328987133, + "29924": 66.3289863907, + "29925": 66.3289860056, + "29926": 66.328985344, + "29927": 66.3289848881, + "29928": 66.3289841654, + "29929": 66.3289836619, + "29930": 66.3289828673, + "29931": 66.3289823135, + "29932": 66.3289814417, + "29933": 66.3289808343, + "29934": 66.3289798809, + "29935": 66.3289792168, + "29936": 66.3289781781, + "29937": 66.3289774549, + "29938": 66.3289763282, + "29939": 66.328975544, + "29940": 66.3289743277, + "29941": 66.3289734815, + "29942": 66.3289721751, + "29943": 66.3289712666, + "29944": 66.3289698711, + "29945": 66.328968901, + "29946": 66.3289674186, + "29947": 66.3289663886, + "29948": 66.3289648228, + "29949": 66.3289637355, + "29950": 66.3289620915, + "29951": 66.3289609504, + "29952": 66.3289592343, + "29953": 66.3289580438, + "29954": 66.3289562631, + "29955": 66.3289550285, + "29956": 66.3289531916, + "29957": 66.3289519185, + "29958": 66.3289500344, + "29959": 66.3289487294, + "29960": 66.3289468076, + "29961": 66.3289454772, + "29962": 66.3289435274, + "29963": 66.3289421782, + "29964": 66.3289402099, + "29965": 66.3289388485, + "29966": 66.3289368707, + "29967": 66.3289355033, + "29968": 66.328933524, + "29969": 66.3289321562, + "29970": 66.3289301824, + "29971": 66.3289288188, + "29972": 66.3289268562, + "29973": 66.3289255006, + "29974": 66.3289235528, + "29975": 66.3289222077, + "29976": 66.3289202766, + "29977": 66.3289189432, + "29978": 66.3289170284, + "29979": 66.3289157062, + "29980": 66.3289138049, + "29981": 66.3289124919, + "29982": 66.3289105988, + "29983": 66.3289092912, + "29984": 66.3289073984, + "29985": 66.3289060903, + "29986": 66.3289041868, + "29987": 66.3289028706, + "29988": 66.3289009422, + "29989": 66.328899608, + "29990": 66.3288976374, + "29991": 66.3288962729, + "29992": 66.3288942389, + "29993": 66.3288928293, + "29994": 66.3288907066, + "29995": 66.3288892341, + "29996": 66.3288869928, + "29997": 66.3288854363, + "29998": 66.3288830411, + "29999": 66.3288813761, + "30000": -0.0001987157, + "30001": 0.0046960715, + "30002": -0.0002149894, + "30003": 0.0051392356, + "30004": -0.0002352922, + "30005": 0.00568507, + "30006": -0.0002603018, + "30007": 0.6519822799, + "30008": 2.2319223011, + "30009": 4.6499396467, + "30010": 7.826880732, + "30011": 11.6945576558, + "30012": 16.1936198967, + "30013": 21.2722062344, + "30014": 26.8846818705, + "30015": 32.9905646838, + "30016": 39.5535941368, + "30017": 46.5409291066, + "30018": 53.9224577179, + "30019": 61.6702055731, + "30020": 69.7578304613, + "30021": 78.160193302, + "30022": 86.8529964607, + "30023": 95.8124817735, + "30024": 105.0151816259, + "30025": 114.4377172981, + "30026": 124.0566395139, + "30027": 133.8483067464, + "30028": 143.7887973447, + "30029": 153.8538519788, + "30030": 164.018843251, + "30031": 174.25876962, + "30032": 184.5482710209, + "30033": 194.8616637663, + "30034": 205.1729924706, + "30035": 215.4560968744, + "30036": 225.6846915531, + "30037": 235.8324565859, + "30038": 245.8731373355, + "30039": 255.7806515622, + "30040": 265.529202153, + "30041": 275.0933938103, + "30042": 284.4483521043, + "30043": 293.569843352, + "30044": 302.4343938557, + "30045": 311.0194071025, + "30046": 319.3032776011, + "30047": 327.2655001182, + "30048": 334.8867731646, + "30049": 342.1490956755, + "30050": 349.035855934, + "30051": 355.5319118916, + "30052": 361.6236621535, + "30053": 367.2991070108, + "30054": 372.5478990211, + "30055": 377.3613827588, + "30056": 381.7326234762, + "30057": 385.6564245371, + "30058": 389.1293336009, + "30059": 392.1496376478, + "30060": 394.7173470482, + "30061": 396.8341689788, + "30062": 398.5034705871, + "30063": 399.7302323936, + "30064": 400.5209925028, + "30065": 400.8837822629, + "30066": 400.8280540791, + "30067": 400.364602135, + "30068": 399.505476818, + "30069": 398.2638936772, + "30070": 396.6541377627, + "30071": 394.6914642063, + "30072": 392.3919959046, + "30073": 389.7726191582, + "30074": 386.8508781044, + "30075": 383.6448687563, + "30076": 380.1731334271, + "30077": 376.4545562843, + "30078": 372.5082607307, + "30079": 368.3535092606, + "30080": 364.0096063892, + "30081": 359.4958051936, + "30082": 354.8312179481, + "30083": 350.034731276, + "30084": 345.1249261788, + "30085": 340.1200032457, + "30086": 335.0377132853, + "30087": 329.8952935656, + "30088": 324.7094097901, + "30089": 319.4961038887, + "30090": 314.27074765, + "30091": 309.0480021753, + "30092": 303.8417830929, + "30093": 298.6652314323, + "30094": 293.5306900239, + "30095": 288.4496852565, + "30096": 283.432914002, + "30097": 278.4902354916, + "30098": 273.6306679096, + "30099": 268.8623894555, + "30100": 264.1927436138, + "30101": 259.6282483626, + "30102": 255.1746090447, + "30103": 250.8367346248, + "30104": 246.6187570525, + "30105": 242.5240534553, + "30106": 238.5552708865, + "30107": 234.714353359, + "30108": 231.0025709021, + "30109": 227.4205503842, + "30110": 223.9683078535, + "30111": 220.6452821562, + "30112": 217.4503717892, + "30113": 214.3819947074, + "30114": 211.4381507464, + "30115": 208.6164608773, + "30116": 205.9141940769, + "30117": 203.3282942231, + "30118": 200.855408304, + "30119": 198.4919153971, + "30120": 196.2339561791, + "30121": 194.0774627065, + "30122": 192.0181882337, + "30123": 190.0517368535, + "30124": 188.1735927626, + "30125": 186.3791489725, + "30126": 184.6637353035, + "30127": 183.0226455135, + "30128": 181.4511634309, + "30129": 179.9445879737, + "30130": 178.4982569531, + "30131": 177.1075695716, + "30132": 175.7680075402, + "30133": 174.4751547519, + "30134": 173.2247154598, + "30135": 172.0125309219, + "30136": 170.8345944835, + "30137": 169.6870650801, + "30138": 168.5662791543, + "30139": 167.4687609884, + "30140": 166.3912314635, + "30141": 165.3306152663, + "30142": 164.2840465692, + "30143": 163.2488732189, + "30144": 162.2226594754, + "30145": 161.2031873465, + "30146": 160.1884565721, + "30147": 159.176683314, + "30148": 158.1662976134, + "30149": 157.1559396808, + "30150": 156.1444550865, + "30151": 155.1308889227, + "30152": 154.1144790113, + "30153": 153.0946482306, + "30154": 152.0709960405, + "30155": 151.0432892809, + "30156": 150.0114523243, + "30157": 148.9755566607, + "30158": 147.9358099947, + "30159": 146.8925449343, + "30160": 145.8462073497, + "30161": 144.7973444827, + "30162": 143.7465928829, + "30163": 142.6946662493, + "30164": 141.6423432524, + "30165": 140.5904554119, + "30166": 139.5398751028, + "30167": 138.4915037615, + "30168": 137.4462603601, + "30169": 136.4050702162, + "30170": 135.3688542026, + "30171": 134.3385184166, + "30172": 133.314944367, + "30173": 132.2989797347, + "30174": 131.2914297535, + "30175": 130.2930492605, + "30176": 129.3045354557, + "30177": 128.326521407, + "30178": 127.3595703336, + "30179": 126.4041706914, + "30180": 125.4607320833, + "30181": 124.5295820059, + "30182": 123.6109634429, + "30183": 122.705033306, + "30184": 121.8118617197, + "30185": 120.9314321384, + "30186": 120.0636422794, + "30187": 119.2083058475, + "30188": 118.3651550227, + "30189": 117.5338436744, + "30190": 116.7139512608, + "30191": 115.9049873682, + "30192": 115.1063968361, + "30193": 114.3175654137, + "30194": 113.537825887, + "30195": 112.7664646121, + "30196": 112.0027283883, + "30197": 111.2458316023, + "30198": 110.4949635728, + "30199": 109.7492960226, + "30200": 109.0079906097, + "30201": 108.2702064424, + "30202": 107.5351075119, + "30203": 106.801869972, + "30204": 106.0696892025, + "30205": 105.3377865919, + "30206": 104.6054159841, + "30207": 103.8718697322, + "30208": 103.1364843127, + "30209": 102.3986454549, + "30210": 101.6577927472, + "30211": 100.9134236898, + "30212": 100.1650971647, + "30213": 99.4124363053, + "30214": 98.6551307502, + "30215": 97.8929382736, + "30216": 97.1256857914, + "30217": 96.3532697452, + "30218": 95.5756558753, + "30219": 94.7928783969, + "30220": 94.0050385981, + "30221": 93.2123028864, + "30222": 92.4149003079, + "30223": 91.6131195744, + "30224": 90.807305631, + "30225": 89.9978558014, + "30226": 89.1852155515, + "30227": 88.3698739097, + "30228": 87.5523585891, + "30229": 86.7332308504, + "30230": 85.9130801513, + "30231": 85.0925186235, + "30232": 84.2721754202, + "30233": 83.4526909747, + "30234": 82.6347112116, + "30235": 81.8188817486, + "30236": 81.0058421272, + "30237": 80.1962201086, + "30238": 79.3906260688, + "30239": 78.5896475258, + "30240": 77.79384383, + "30241": 77.0037410472, + "30242": 76.2198270613, + "30243": 75.4425469227, + "30244": 74.6722984667, + "30245": 73.9094282244, + "30246": 73.1542276462, + "30247": 72.4069296589, + "30248": 71.6677055725, + "30249": 70.9366623549, + "30250": 70.2138402877, + "30251": 69.4992110182, + "30252": 68.792676018, + "30253": 68.0940654599, + "30254": 67.4031375208, + "30255": 66.7195781188, + "30256": 66.0430010873, + "30257": 65.3729487927, + "30258": 64.708893193, + "30259": 64.0502373388, + "30260": 63.3963173115, + "30261": 62.7464045934, + "30262": 62.0997088599, + "30263": 61.4553811826, + "30264": 60.8125176282, + "30265": 60.1701632358, + "30266": 59.5273163519, + "30267": 58.8829332987, + "30268": 58.235933349, + "30269": 57.5852039781, + "30270": 56.9296063598, + "30271": 56.2679810704, + "30272": 55.5991539638, + "30273": 54.9219421767, + "30274": 54.2351602225, + "30275": 53.5376261294, + "30276": 52.8281675789, + "30277": 52.1056279989, + "30278": 51.3688725655, + "30279": 50.6167940685, + "30280": 49.8483185962, + "30281": 49.0624109953, + "30282": 48.2580800661, + "30283": 47.4343834521, + "30284": 46.5904321896, + "30285": 45.7253948831, + "30286": 44.838501478, + "30287": 43.9290466056, + "30288": 42.9963924796, + "30289": 42.0399713287, + "30290": 41.0592873537, + "30291": 40.0539182044, + "30292": 39.0235159739, + "30293": 37.9678077168, + "30294": 36.8865954983, + "30295": 35.7797559906, + "30296": 34.647239633, + "30297": 33.4890693813, + "30298": 32.3053390706, + "30299": 31.0962114249, + "30300": 29.8619157434, + "30301": 28.6027453031, + "30302": 27.3190545123, + "30303": 26.0112558563, + "30304": 24.6798166777, + "30305": 23.3252558284, + "30306": 21.9481402287, + "30307": 20.5490813726, + "30308": 19.1287318321, + "30309": 17.6877817896, + "30310": 16.2269556281, + "30311": 14.7470086126, + "30312": 13.2487236931, + "30313": 11.7329084534, + "30314": 10.200392229, + "30315": 8.6520234122, + "30316": 7.0886669625, + "30317": 5.5112021306, + "30318": 3.9205204067, + "30319": 2.3175236958, + "30320": 0.7031227228, + "30321": 0.0587946237, + "30322": -0.0210569328, + "30323": 0.1554023295, + "30324": -0.0072715161, + "30325": 0.1488692694, + "30326": -0.006962844, + "30327": 0.1427977211, + "30328": -0.0066758903, + "30329": 0.1365932882, + "30330": -0.0063828604, + "30331": 0.1302912092, + "30332": -0.0060854344, + "30333": 0.123928523, + "30334": -0.0057853729, + "30335": 0.1175421245, + "30336": -0.0054844252, + "30337": 0.1111682031, + "30338": -0.0051843028, + "30339": 0.1048417112, + "30340": -0.0048866537, + "30341": 0.0985958731, + "30342": -0.0045930402, + "30343": 0.0924617462, + "30344": -0.0043049178, + "30345": 0.0864678427, + "30346": -0.0040236179, + "30347": 0.0806398204, + "30348": -0.0037503337, + "30349": 0.0750002475, + "30350": -0.0034861099, + "30351": 0.0695684436, + "30352": -0.0032318356, + "30353": 0.0643603958, + "30354": -0.0029882411, + "30355": 0.0593887482, + "30356": -0.0027558982, + "30357": 0.0546628591, + "30358": -0.0025352234, + "30359": 0.0501889205, + "30360": -0.0023264841, + "30361": 0.0459701317, + "30362": -0.0021298077, + "30363": 0.0420069167, + "30364": -0.001945192, + "30365": 0.0382971777, + "30366": -0.0017725174, + "30367": 0.0348365725, + "30368": -0.001611561, + "30369": 0.0316188096, + "30370": -0.0014620096, + "30371": 0.028635949, + "30372": -0.0013234752, + "30373": 0.025878702, + "30374": -0.0011955082, + "30375": 0.0233367221, + "30376": -0.0010776116, + "30377": 0.0209988813, + "30378": -0.0009692537, + "30379": 0.0188535272, + "30380": -0.0008698801, + "30381": 0.0168887167, + "30382": -0.0007789248, + "30383": 0.0150924246, + "30384": -0.0006958194, + "30385": 0.0134527247, + "30386": -0.0006200016, + "30387": 0.0119579443, + "30388": -0.0005509224, + "30389": 0.0105967905, + "30390": -0.0004880515, + "30391": 0.0093584529, + "30392": -0.0004308824, + "30393": 0.0082326797, + "30394": -0.0003789351, + "30395": 0.0072098331, + "30396": -0.0003317595, + "30397": 0.0062809242, + "30398": -0.0002889357, + "30399": 0.0054376292, + "30400": -0.0002500759, + "30401": 0.004672292, + "30402": -0.0002148234, + "30403": 0.0039779121, + "30404": -0.0001828524, + "30405": 0.0033481325, + "30406": -0.0001538624, + "30407": 0.0027551695, + "30408": -0.0001264845, + "30409": 0.0022395459, + "30410": -0.0001027745, + "30411": 0.0017728603, + "30412": -0.0000813229, + "30413": 0.0013508596, + "30414": -0.0000619326, + "30415": 0.0009697747, + "30416": -0.0000444287, + "30417": 0.000626217, + "30418": -0.0000277786, + "30419": 0.0003162546, + "30420": -0.0000050102, + "30421": 0.0000298254, + "30422": -0.0000013648, + "30423": 0.0, + "30424": 0.0000000124, + "30425": 0.0000001277, + "30426": 0.0000000173, + "30427": 0.0000001278, + "30428": 0.0000000249, + "30429": 0.0000001277, + "30430": 0.0000000322, + "30431": 0.0000001275, + "30432": 0.0000000391, + "30433": 0.0000001272, + "30434": 0.0000000457, + "30435": 0.0000001269, + "30436": 0.0000000519, + "30437": 0.0000001265, + "30438": 0.0000000577, + "30439": 0.0000001261, + "30440": 0.0000001876, + "30441": -0.0000000117, + "30442": -0.0000000001, + "30443": 0.0000001196, + "30444": -0.0000000086, + "30445": 0.0000001163, + "30446": -0.0000000084, + "30447": 0.0000001125, + "30448": -0.0000000082, + "30449": 0.0000001085, + "30450": -0.000000008, + "30451": 0.0000001041, + "30452": -0.0000000078, + "30453": 0.0000000991, + "30454": -0.0000000076, + "30455": 0.0000000934, + "30456": -0.0000000073, + "30457": 0.0000000868, + "30458": -0.000000007, + "30459": 0.0000000792, + "30460": -0.0000000066, + "30461": 0.0000000706, + "30462": -0.0000000062, + "30463": 0.0000000609, + "30464": -0.0000000057, + "30465": 0.0000000502, + "30466": -0.0000000052, + "30467": 0.0000000385, + "30468": -0.0000000046, + "30469": 0.0000000261, + "30470": -0.000000004, + "30471": 0.0000000129, + "30472": -0.0000000034, + "30473": -0.0, + "30474": -0.0000000991, + "30475": -9.751537486e-16, + "30476": 0.0, + "30477": 0.0, + "30478": -0.000000003, + "30479": 0.0, + "30480": -0.0000000029, + "30481": 0.0, + "30482": -0.0000000029, + "30483": 0.0, + "30484": -0.0000000028, + "30485": 0.0, + "30486": -0.0000000028, + "30487": 0.0, + "30488": -0.0000000027, + "30489": 5.661039343e-16, + "30490": -0.0000000027, + "30491": -4.502055835e-16, + "30492": -0.0000002119, + "30493": 0.0, + "30494": -0.0000000026, + "30495": -0.0, + "30496": -0.0000002267, + "30497": -0.0, + "30498": 4.813918263e-16, + "30499": 3.351966781e-16, + "30500": -0.0000000025, + "30501": 4.498106899e-17, + "30502": -0.0000000024, + "30503": 0.0, + "30504": -0.0000000024, + "30505": 0.0, + "30506": -0.0000000023, + "30507": 6.939925983e-16, + "30508": -0.0000000023, + "30509": 4.496423839e-16, + "30510": -0.0000000022, + "30511": 1.134722518e-16, + "30512": -0.0000000022, + "30513": 0.0, + "30514": -0.0000000022, + "30515": 0.0, + "30516": -0.0000000021, + "30517": -0.0, + "30518": -0.0000002171, + "30519": 0.0, + "30520": -0.0000000021, + "30521": 0.0, + "30522": -0.000000002, + "30523": -0.0, + "30524": -0.0000001936, + "30525": -8.273605142e-16, + "30526": 0.0, + "30527": 0.0, + "30528": -0.0000000019, + "30529": 2.066891127e-16, + "30530": -0.0000000019, + "30531": -3.246741482e-16, + "30532": -0.0000001545, + "30533": 6.8646091e-16, + "30534": -0.0000000018, + "30535": 0.0, + "30536": -0.0000000018, + "30537": -0.0, + "30538": -0.0000001225, + "30539": -0.0, + "30540": 0.0, + "30541": -6.868201267e-16, + "30542": -0.0, + "30543": -0.0, + "30544": -0.0, + "30545": -0.0, + "30546": -0.0, + "30547": 0.0, + "30548": -0.0000000016, + "30549": -3.433972088e-16, + "30550": -0.0000000612, + "30551": -3.200829112e-16, + "30552": -0.0, + "30553": 0.000000009, + "30554": -0.0000000017, + "30555": 0.000000016, + "30556": -0.000000002, + "30557": 0.0000000224, + "30558": -0.0000000023, + "30559": 0.0000000281, + "30560": -0.0000000025, + "30561": 0.0000000332, + "30562": -0.0000000028, + "30563": 0.0000000375, + "30564": -0.0000000029, + "30565": 0.0000000412, + "30566": -0.0000000031, + "30567": 0.0000000442, + "30568": -0.0000000032, + "30569": 0.0000000465, + "30570": -0.0000000033, + "30571": 0.0000000482, + "30572": -0.0000000033, + "30573": 0.0000000493, + "30574": -0.0000000034, + "30575": 0.0000000499, + "30576": -0.0000000034, + "30577": 0.00000005, + "30578": 0.0000002505, + "30579": 0.0000000315, + "30580": 0.000000004, + "30581": 0.0000000408, + "30582": 0.000000004, + "30583": 0.0000000408, + "30584": 0.0000000045, + "30585": 0.0000000408, + "30586": 0.0000000049, + "30587": 0.0000000408, + "30588": 0.0000000053, + "30589": 0.0000000408, + "30590": 0.0000000057, + "30591": 0.0000000408, + "30592": 0.000000006, + "30593": 0.0000000408, + "30594": 0.0000000063, + "30595": 0.0000000408, + "30596": 0.0000000065, + "30597": 0.0000000407, + "30598": 0.0000000067, + "30599": 0.0000000407, + "30600": 0.0000000067, + "30601": 0.0000000406, + "30602": 0.0000000067, + "30603": 0.0000000405, + "30604": 0.0000000066, + "30605": 0.0000000404, + "30606": 0.0000000064, + "30607": 0.0000000403, + "30608": 0.0000000061, + "30609": 0.0000000401, + "30610": 0.0000000057, + "30611": 0.0000000399, + "30612": 0.0000000053, + "30613": 0.0000000397, + "30614": 0.0000000047, + "30615": 0.0000000395, + "30616": 0.0000000041, + "30617": 0.0000000393, + "30618": 0.0000000035, + "30619": 0.000000039, + "30620": 0.0000000028, + "30621": 0.0000000388, + "30622": 0.0000000021, + "30623": 0.0000000385, + "30624": 0.0000000014, + "30625": 0.0000000382, + "30626": 0.0000000007, + "30627": 0.0000000379, + "30628": -0.0, + "30629": 0.0000000363, + "30630": -0.0000000017, + "30631": 0.000000036, + "30632": 0.0000000214, + "30633": 0.0000000478, + "30634": -0.0000000023, + "30635": 0.0000000355, + "30636": 0.0000000214, + "30637": 0.0000000478, + "30638": 0.0000000219, + "30639": 0.0000000477, + "30640": 0.0000000219, + "30641": 0.0000000476, + "30642": 0.0000000218, + "30643": 0.0000000475, + "30644": 0.0000000218, + "30645": 0.0000000473, + "30646": 0.0000000217, + "30647": 0.0000000472, + "30648": 0.0000000216, + "30649": 0.0000000469, + "30650": -0.0000000025, + "30651": 0.0000000345, + "30652": 0.000000021, + "30653": 0.0000000464, + "30654": -0.0000000011, + "30655": 0.0000000346, + "30656": -0.0000000008, + "30657": 0.0000000347, + "30658": 0.0000000002, + "30659": 0.0000000362, + "30660": 0.0000000023, + "30661": 0.0000000363, + "30662": 0.0000000034, + "30663": 0.0000000365, + "30664": 0.0000000047, + "30665": 0.0000000367, + "30666": 0.0000000059, + "30667": 0.000000037, + "30668": 0.0000000072, + "30669": 0.0000000372, + "30670": 0.0000000086, + "30671": 0.0000000375, + "30672": 0.0000000099, + "30673": 0.0000000377, + "30674": 0.0000000112, + "30675": 0.000000038, + "30676": 0.0000000124, + "30677": 0.0000000382, + "30678": 0.0000000136, + "30679": 0.0000000385, + "30680": 0.0000000147, + "30681": 0.0000000387, + "30682": 0.0000000157, + "30683": 0.0000000389, + "30684": 0.0000000166, + "30685": 0.000000039, + "30686": 0.0000000562, + "30687": 0.0000000539, + "30688": 0.0000000544, + "30689": 0.0000000547, + "30690": 0.000000055, + "30691": 0.0000000552, + "30692": 0.0000000554, + "30693": 0.0000000556, + "30694": 0.0000000557, + "30695": 0.0000000557, + "30696": 0.0000000557, + "30697": 0.0000000557, + "30698": 0.0000000556, + "30699": 0.0000000555, + "30700": 0.0000000553, + "30701": 0.0000000551, + "30702": 0.0000000548, + "30703": 0.0000000546, + "30704": 0.0000000542, + "30705": 0.0000000539, + "30706": 0.0000000536, + "30707": 0.0000000533, + "30708": 0.0000000531, + "30709": 0.0000000528, + "30710": 0.0000000526, + "30711": 0.0000000525, + "30712": 0.0000000523, + "30713": 0.0000000522, + "30714": 0.0000000522, + "30715": 0.0000000522, + "30716": 0.0000000522, + "30717": 0.0000000523, + "30718": 0.0000000525, + "30719": 0.0000000527, + "30720": 0.0000000529, + "30721": 0.0000000532, + "30722": 0.0000000536, + "30723": 0.000000054, + "30724": 0.0000000545, + "30725": 0.0000000551, + "30726": 0.0000000557, + "30727": 0.0000000564, + "30728": 0.0000000572, + "30729": 0.0000000581, + "30730": 0.000000059, + "30731": 0.00000006, + "30732": 0.0000000612, + "30733": 0.0000000623, + "30734": -0.0000000034, + "30735": 0.0, + "30736": -0.0000000006, + "30737": 0.000000043, + "30738": -0.0000000025, + "30739": 0.0000000435, + "30740": -0.0000000025, + "30741": 0.0000000439, + "30742": -0.0000000025, + "30743": 0.0000000443, + "30744": -0.0000000025, + "30745": 0.0000000446, + "30746": -0.0000000025, + "30747": 0.0000000448, + "30748": -0.0000000025, + "30749": 0.0000000449, + "30750": -0.0000000025, + "30751": 0.0000000448, + "30752": -0.0000000025, + "30753": 0.0000000445, + "30754": -0.0000000025, + "30755": 0.0000000439, + "30756": -0.0000000025, + "30757": 0.0000000431, + "30758": -0.0000000024, + "30759": 0.0000000418, + "30760": -0.0000000024, + "30761": 0.0000000402, + "30762": -0.0000000023, + "30763": 0.0000000381, + "30764": -0.0000000022, + "30765": 0.0000000355, + "30766": -0.0000000021, + "30767": 0.0000000324, + "30768": -0.0000000019, + "30769": 0.0000000287, + "30770": -0.0000000017, + "30771": 0.0000000246, + "30772": -0.0000000015, + "30773": 0.0000000199, + "30774": -0.0000000013, + "30775": 0.0000000147, + "30776": -0.0000000011, + "30777": 0.0000000091, + "30778": -0.0000000008, + "30779": 0.0000000032, + "30780": -0.0000000004, + "30781": 0.0, + "30782": -0.0000000004, + "30783": 0.0, + "30784": -0.0000000004, + "30785": 8.796065598e-16, + "30786": -0.0000000004, + "30787": 0.0, + "30788": -0.0000000004, + "30789": -0.0, + "30790": -0.0000000992, + "30791": 0.0, + "30792": -0.0000000004, + "30793": -0.0, + "30794": -0.0000001147, + "30795": 0.0, + "30796": -0.0000000003, + "30797": 0.0, + "30798": -0.0000000003, + "30799": 5.768341163e-16, + "30800": -0.0000000003, + "30801": 6.76676493e-16, + "30802": -0.0000000003, + "30803": -0.0, + "30804": -0.0000001454, + "30805": 0.0, + "30806": -0.0000000003, + "30807": 6.681441491e-16, + "30808": -0.0000000003, + "30809": 0.0, + "30810": -0.0000000003, + "30811": -0.0, + "30812": -0.0000001575, + "30813": 0.0, + "30814": -0.0000000002, + "30815": -0.0, + "30816": -0.0000001589, + "30817": -0.0, + "30818": -0.0, + "30819": -5.278898145e-16, + "30820": 0.0, + "30821": 0.0, + "30822": -0.0000000002, + "30823": -0.0, + "30824": -0.0000001527, + "30825": 0.0, + "30826": -0.0000000002, + "30827": 0.0, + "30828": -0.0000000002, + "30829": 0.0, + "30830": -0.0000000002, + "30831": -3.543561019e-16, + "30832": -0.000000136, + "30833": -0.0, + "30834": -0.0, + "30835": 0.0, + "30836": -0.0000000002, + "30837": -0.0, + "30838": -0.0000001183, + "30839": 0.0, + "30840": -0.0000000001, + "30841": -0.0, + "30842": -0.0000001048, + "30843": -0.0, + "30844": -0.0, + "30845": -0.0, + "30846": -0.0, + "30847": 0.0, + "30848": -0.0000000001, + "30849": -0.0, + "30850": -0.000000076, + "30851": -1.422937463e-16, + "30852": 9.478903718e-16, + "30853": -0.0000000001, + "30854": 0.0000000107, + "30855": -0.0000000006, + "30856": 0.0000000171, + "30857": -0.0000000009, + "30858": 0.0000000232, + "30859": -0.0000000011, + "30860": 0.0000000291, + "30861": -0.0000000014, + "30862": 0.0000000346, + "30863": -0.0000000016, + "30864": 0.0000000397, + "30865": -0.0000000019, + "30866": 0.0000000445, + "30867": -0.0000000021, + "30868": 0.0000000487, + "30869": -0.0000000023, + "30870": 0.0000000525, + "30871": -0.0000000024, + "30872": 0.0000000559, + "30873": -0.0000000026, + "30874": 0.0000000588, + "30875": -0.0000000027, + "30876": 0.0000000613, + "30877": -0.0000000028, + "30878": 0.0000000634, + "30879": -0.0000000029, + "30880": 0.0000000651, + "30881": -0.000000003, + "30882": 0.0000000664, + "30883": -0.0000000031, + "30884": 0.0000000675, + "30885": -0.0000000031, + "30886": 0.0000000683, + "30887": -0.0000000031, + "30888": 0.0000000688, + "30889": -0.0000000032, + "30890": 0.0000000692, + "30891": -0.0000000032, + "30892": 0.0000000695, + "30893": -0.0000000032, + "30894": 0.0000000697, + "30895": -0.0000000032, + "30896": 0.0000000698, + "30897": -0.0000000032, + "30898": 0.0000000698, + "30899": -0.0000000032, + "30900": 0.0000000698, + "30901": 0.0000047636, + "30902": -0.000000163, + "30903": 0.000016057, + "30904": -0.0000006576, + "30905": 0.0000164213, + "30906": -0.0000006743, + "30907": 0.0000168261, + "30908": -0.0000006929, + "30909": 0.0000173009, + "30910": -0.0000007148, + "30911": 0.0000178515, + "30912": -0.0000007401, + "30913": 0.000018483, + "30914": -0.0000007691, + "30915": 0.000019199, + "30916": -0.0000008021, + "30917": 0.0000200016, + "30918": -0.000000839, + "30919": 0.0000208911, + "30920": 0.000129777, + "30921": -0.0000059012, + "30922": 0.0009689864, + "30923": -0.0000443105, + "30924": 0.0010696873, + "30925": -0.0000489202, + "30926": 0.0011793447, + "30927": -0.00005394, + "30928": 0.0012992724, + "30929": -0.0000594302, + "30930": 0.0014289468, + "30931": -0.0000653668, + "30932": 0.0015675636, + "30933": -0.0000717131, + "30934": 0.0017140265, + "30935": -0.0000784189, + "30936": 0.0018669426, + "30937": -0.0000854205, + "30938": 0.0020246297, + "30939": -0.0000926408, + "30940": 0.0021851393, + "30941": -0.0000999906, + "30942": 0.002346294, + "30943": -0.0001073703, + "30944": 0.0025057408, + "30945": -0.0001146719, + "30946": 0.0026610192, + "30947": -0.0001217829, + "30948": 0.0028096411, + "30949": -0.0001285891, + "30950": 0.0029491799, + "30951": -0.0001349795, + "30952": 0.0030773646, + "30953": -0.0001408498, + "30954": 0.0031921748, + "30955": -0.0001461076, + "30956": 0.0032919306, + "30957": -0.0001506759, + "30958": 0.0033753749, + "30959": -0.0001544969, + "30960": 0.0034417417, + "30961": -0.0001575356, + "30962": 0.003490809, + "30963": -0.0001597819, + "30964": 0.0035229328, + "30965": -0.0001612519, + "30966": 0.0035390618, + "30967": -0.0001619893, + "30968": 0.0035407338, + "30969": -0.0001620643, + "30970": 0.0035300536, + "30971": -0.0001615736, + "30972": 0.0035096573, + "30973": -0.0001606378, + "30974": 0.0034826661, + "30975": -0.0001594, + "30976": 0.0034526349, + "30977": -0.000158023, + "30978": 0.0034235022, + "30979": -0.0001566872, + "30980": 0.0033995469, + "30981": -0.0001555886, + "30982": 0.0033853603, + "30983": -0.0001549375, + "30984": 0.0033858383, + "30985": -0.0001549582, + "30986": 0.0034062029, + "30987": -0.0001558897, + "30988": 0.0034520552, + "30989": -0.0001579886, + "30990": 0.0035294668, + "30991": -0.0001615331, + "30992": 0.0036451099, + "30993": -0.0001668287, + "30994": 0.0038064271, + "30995": -0.0001742166, + "30996": 0.0040218351, + "30997": -0.0001840825, + "30998": 0.0043009586, + "30999": -0.0001968677, + "31000": 10.4907966946, + "31001": 10.4690804341, + "31002": 10.4469779111, + "31003": 10.4244932066, + "31004": 10.4016270908, + "31005": 10.3783840637, + "31006": 10.3547649273, + "31007": 10.3310862316, + "31008": 10.3080500291, + "31009": 10.28644374, + "31010": 10.2669823025, + "31011": 10.2503070637, + "31012": 10.2369974102, + "31013": 10.227578161, + "31014": 10.2225262238, + "31015": 10.222276054, + "31016": 10.2272241879, + "31017": 10.2377329564, + "31018": 10.2541335009, + "31019": 10.2767281875, + "31020": 10.3057925101, + "31021": 10.3415765582, + "31022": 10.384306118, + "31023": 10.4341834667, + "31024": 10.4913879138, + "31025": 10.5560761363, + "31026": 10.6283823488, + "31027": 10.7084183482, + "31028": 10.7962734639, + "31029": 10.8920144448, + "31030": 10.9956853087, + "31031": 11.1073071788, + "31032": 11.2268781262, + "31033": 11.354373039, + "31034": 11.4897435334, + "31035": 11.6329179199, + "31036": 11.7838012386, + "31037": 11.9422753722, + "31038": 12.1081992464, + "31039": 12.2814091228, + "31040": 12.4617189913, + "31041": 12.6489210642, + "31042": 12.8427863741, + "31043": 13.0430654768, + "31044": 13.2494892577, + "31045": 13.4617698395, + "31046": 13.6796015894, + "31047": 13.9026622184, + "31048": 14.1306139701, + "31049": 14.3631048908, + "31050": 14.5997701741, + "31051": 14.8402335718, + "31052": 15.0841088624, + "31053": 15.3310013676, + "31054": 15.5805095075, + "31055": 15.8322263847, + "31056": 16.0857413853, + "31057": 16.3406417896, + "31058": 16.5965143786, + "31059": 16.8529470289, + "31060": 17.1095302847, + "31061": 17.3658588972, + "31062": 17.6215333225, + "31063": 17.8761611693, + "31064": 18.1293585879, + "31065": 18.3807515926, + "31066": 18.6299773113, + "31067": 18.8766851558, + "31068": 19.1205379071, + "31069": 19.361212711, + "31070": 19.598401981, + "31071": 19.8318142041, + "31072": 20.0611746487, + "31073": 20.2862259718, + "31074": 20.5067287258, + "31075": 20.7224617651, + "31076": 20.933222552, + "31077": 21.1388273655, + "31078": 21.3391114128, + "31079": 21.5339288486, + "31080": 21.7231527034, + "31081": 21.9066747265, + "31082": 22.0844051458, + "31083": 22.2562723514, + "31084": 22.4222225059, + "31085": 22.5822190872, + "31086": 22.7362423704, + "31087": 22.8842888517, + "31088": 23.0263706229, + "31089": 23.1625147002, + "31090": 23.2927623131, + "31091": 23.4171681602, + "31092": 23.5357996364, + "31093": 23.6487360371, + "31094": 23.7560677451, + "31095": 23.8578954049, + "31096": 23.9543290891, + "31097": 24.0454874625, + "31098": 24.1314969471, + "31099": 24.2124908933, + "31100": 24.2886087596, + "31101": 24.3599953073, + "31102": 24.4267998096, + "31103": 24.4891752819, + "31104": 24.5472777338, + "31105": 24.601265446, + "31106": 24.6512982745, + "31107": 24.6975369841, + "31108": 24.7401426119, + "31109": 24.7792758641, + "31110": 24.815096546, + "31111": 24.8477630261, + "31112": 24.8774308844, + "31113": 24.9042443737, + "31114": 24.9283401509, + "31115": 24.9498515992, + "31116": 24.9689087306, + "31117": 24.9856378675, + "31118": 25.0001614013, + "31119": 25.0125975679, + "31120": 25.0230602549, + "31121": 25.0316588346, + "31122": 25.0384980272, + "31123": 25.0436777904, + "31124": 25.0472932372, + "31125": 25.0494345801, + "31126": 25.0501871016, + "31127": 25.0496311495, + "31128": 25.0478421562, + "31129": 25.044890681, + "31130": 25.0408424745, + "31131": 25.035758562, + "31132": 25.0296953475, + "31133": 25.0227047343, + "31134": 25.0148342618, + "31135": 25.0061272571, + "31136": 24.9966229993, + "31137": 24.9863568959, + "31138": 24.975360669, + "31139": 24.9636625498, + "31140": 24.9512874804, + "31141": 24.9382573212, + "31142": 24.9245910621, + "31143": 24.9103050373, + "31144": 24.8954131401, + "31145": 24.8799270396, + "31146": 24.8638563943, + "31147": 24.8472090651, + "31148": 24.8299913241, + "31149": 24.8122080584, + "31150": 24.7938629696, + "31151": 24.7749587661, + "31152": 24.755497348, + "31153": 24.7354799849, + "31154": 24.7149074841, + "31155": 24.6937803499, + "31156": 24.672098933, + "31157": 24.6498635695, + "31158": 24.6270747091, + "31159": 24.6037330325, + "31160": 24.5798395572, + "31161": 24.5553957324, + "31162": 24.5304035212, + "31163": 24.5048654726, + "31164": 24.478784781, + "31165": 24.4521653345, + "31166": 24.4250117522, + "31167": 24.3973294098, + "31168": 24.3691244555, + "31169": 24.3404038142, + "31170": 24.3111751831, + "31171": 24.2814470166, + "31172": 24.2512285033, + "31173": 24.2205295336, + "31174": 24.1893606601, + "31175": 24.1577330506, + "31176": 24.1256584347, + "31177": 24.0931490445, + "31178": 24.0602175505, + "31179": 24.0268769927, + "31180": 23.9931407088, + "31181": 23.959022259, + "31182": 23.9245353495, + "31183": 23.889693754, + "31184": 23.8545112359, + "31185": 23.8190014693, + "31186": 23.7831779627, + "31187": 23.7470539835, + "31188": 23.7106424849, + "31189": 23.6739560369, + "31190": 23.6370067598, + "31191": 23.5998062631, + "31192": 23.5623655883, + "31193": 23.5246951582, + "31194": 23.4868047304, + "31195": 23.4487033583, + "31196": 23.4103993573, + "31197": 23.3719002786, + "31198": 23.333212889, + "31199": 23.2943431578, + "31200": 23.2552962507, + "31201": 23.2160765303, + "31202": 23.1766875633, + "31203": 23.137132135, + "31204": 23.097412269, + "31205": 23.057529254, + "31206": 23.0174836756, + "31207": 22.9772754542, + "31208": 22.9369038876, + "31209": 22.8963676974, + "31210": 22.8556650811, + "31211": 22.8147937657, + "31212": 22.7737510659, + "31213": 22.7325339441, + "31214": 22.6911390716, + "31215": 22.6495628926, + "31216": 22.6078016874, + "31217": 22.5658516363, + "31218": 22.5237088837, + "31219": 22.4813696, + "31220": 22.4388300431, + "31221": 22.3960866172, + "31222": 22.3531359297, + "31223": 22.3099748446, + "31224": 22.2666005332, + "31225": 22.2230105206, + "31226": 22.1792027285, + "31227": 22.1351755138, + "31228": 22.0909277021, + "31229": 22.0464586169, + "31230": 22.0017681038, + "31231": 21.9568565493, + "31232": 21.9117248949, + "31233": 21.8663746453, + "31234": 21.820807872, + "31235": 21.775027211, + "31236": 21.729035856, + "31237": 21.6828375458, + "31238": 21.636436547, + "31239": 21.589837632, + "31240": 21.5430460519, + "31241": 21.4960675053, + "31242": 21.4489081025, + "31243": 21.4015743259, + "31244": 21.3540729861, + "31245": 21.3064111758, + "31246": 21.2585962187, + "31247": 21.2106356169, + "31248": 21.1625369953, + "31249": 21.1143080439, + "31250": 21.0659564579, + "31251": 21.0174898765, + "31252": 20.9689158213, + "31253": 20.9202416325, + "31254": 20.8714744063, + "31255": 20.8226209311, + "31256": 20.773687625, + "31257": 20.724680474, + "31258": 20.6756049706, + "31259": 20.6264660554, + "31260": 20.5772680595, + "31261": 20.5280146498, + "31262": 20.4787087773, + "31263": 20.4293526278, + "31264": 20.3799475767, + "31265": 20.3304941473, + "31266": 20.2809919729, + "31267": 20.2314397638, + "31268": 20.1818352787, + "31269": 20.1321753003, + "31270": 20.0824556174, + "31271": 20.0326710102, + "31272": 19.9828152429, + "31273": 19.9328810605, + "31274": 19.8828601914, + "31275": 19.8327433553, + "31276": 19.7825202773, + "31277": 19.7321797066, + "31278": 19.6817094406, + "31279": 19.6310963548, + "31280": 19.5803264371, + "31281": 19.529384827, + "31282": 19.4782558593, + "31283": 19.4269231123, + "31284": 19.3753694593, + "31285": 19.3235771242, + "31286": 19.2715277401, + "31287": 19.2192024106, + "31288": 19.1665817732, + "31289": 19.1136460652, + "31290": 19.0603751907, + "31291": 19.0067487886, + "31292": 18.9527463013, + "31293": 18.8983470437, + "31294": 18.8435302716, + "31295": 18.7882752497, + "31296": 18.7325613183, + "31297": 18.6763679589, + "31298": 18.6196748576, + "31299": 18.5624619664, + "31300": 18.5047095626, + "31301": 18.4463983047, + "31302": 18.3875092863, + "31303": 18.3280240863, + "31304": 18.267924815, + "31305": 18.2071941587, + "31306": 18.1458154217, + "31307": 18.0837725639, + "31308": 18.0210502314, + "31309": 17.9576337877, + "31310": 17.8935093413, + "31311": 17.8286637687, + "31312": 17.763084735, + "31313": 17.6967607122, + "31314": 17.6296809929, + "31315": 17.5618357035, + "31316": 17.493215813, + "31317": 17.423813141, + "31318": 17.3536203627, + "31319": 17.2826310132, + "31320": 17.2108394893, + "31321": 17.1387141412, + "31322": 17.0669030457, + "31323": 16.9957867249, + "31324": 16.9253103439, + "31325": 16.8554988393, + "31326": 16.7863024047, + "31327": 16.7177594939, + "31328": 16.6498207898, + "31329": 16.5825231216, + "31330": 16.515819233, + "31331": 16.4497440608, + "31332": 16.3842524731, + "31333": 16.3193774889, + "31334": 16.2550761094, + "31335": 16.1913794301, + "31336": 16.1282465811, + "31337": 16.0657067405, + "31338": 16.0037211517, + "31339": 15.9423170924, + "31340": 15.8814578927, + "31341": 15.8211689576, + "31342": 15.7614156678, + "31343": 15.7022215923, + "31344": 15.6435541166, + "31345": 15.5854350198, + "31346": 15.5278336383, + "31347": 15.4707700148, + "31348": 15.4142153756, + "31349": 15.3581880873, + "31350": 15.3026611985, + "31351": 15.2476514661, + "31352": 15.1931336884, + "31353": 15.1391230834, + "31354": 15.0855961224, + "31355": 15.032566559, + "31356": 14.9800124576, + "31357": 14.9279461848, + "31358": 14.8763473162, + "31359": 14.82522691, + "31360": 14.7745659703, + "31361": 14.7243743266, + "31362": 14.6746343281, + "31363": 14.6253546551, + "31364": 14.5765189193, + "31365": 14.5281347306, + "31366": 14.4801868821, + "31367": 14.43268199, + "31368": 14.38560595, + "31369": 14.3389644592, + "31370": 14.2927444392, + "31371": 14.2469507403, + "31372": 14.2015712367, + "31373": 14.1566100005, + "31374": 14.1120557884, + "31375": 14.0679119605, + "31376": 14.0241680887, + "31377": 13.9808268833, + "31378": 13.937878669, + "31379": 13.8953255643, + "31380": 13.8531585878, + "31381": 13.8113793209, + "31382": 13.7699794209, + "31383": 13.728959983, + "31384": 13.6883132517, + "31385": 13.6480398834, + "31386": 13.6081326623, + "31387": 13.5685918491, + "31388": 13.5294107241, + "31389": 13.4905891923, + "31390": 13.4521209896, + "31391": 13.414005702, + "31392": 13.3762374839, + "31393": 13.3388156358, + "31394": 13.3017346966, + "31395": 13.2649937117, + "31396": 13.2285875736, + "31397": 13.1925151005, + "31398": 13.1567715097, + "31399": 13.1213554176, + "31400": 13.0862623408, + "31401": 13.0514907162, + "31402": 13.0170363361, + "31403": 12.9828974791, + "31404": 12.9490701915, + "31405": 12.9155526083, + "31406": 12.882341008, + "31407": 12.8494333174, + "31408": 12.8168260019, + "31409": 12.7845169516, + "31410": 12.7525028807, + "31411": 12.7207815957, + "31412": 12.6893499937, + "31413": 12.6582058015, + "31414": 12.6273460864, + "31415": 12.5967685071, + "31416": 12.566470288, + "31417": 12.5364490308, + "31418": 12.5067021055, + "31419": 12.4772270651, + "31420": 12.4480214186, + "31421": 12.4190826715, + "31422": 12.3904084864, + "31423": 12.3619964718, + "31424": 12.3338442439, + "31425": 12.3059494171, + "31426": 12.2783096409, + "31427": 12.2509225732, + "31428": 12.2237859082, + "31429": 12.196897347, + "31430": 12.1702546254, + "31431": 12.1438554872, + "31432": 12.1176977088, + "31433": 12.0917790756, + "31434": 12.0660974043, + "31435": 12.0406505211, + "31436": 12.0154362823, + "31437": 11.990452554, + "31438": 11.9656972311, + "31439": 11.9411682193, + "31440": 11.9168634032, + "31441": 11.8927805665, + "31442": 11.8689171667, + "31443": 11.8452701592, + "31444": 11.8218359719, + "31445": 11.7986105358, + "31446": 11.7755893176, + "31447": 11.752767352, + "31448": 11.7301392732, + "31449": 11.7076993469, + "31450": 11.6854415013, + "31451": 11.6633593584, + "31452": 11.6414462639, + "31453": 11.6196953178, + "31454": 11.598099403, + "31455": 11.5766512148, + "31456": 11.5553432884, + "31457": 11.5341680266, + "31458": 11.5131177264, + "31459": 11.4921846046, + "31460": 11.4713608232, + "31461": 11.4506385133, + "31462": 11.4300097983, + "31463": 11.4094668165, + "31464": 11.3890017426, + "31465": 11.3686068077, + "31466": 11.3482743191, + "31467": 11.327996679, + "31468": 11.3077664016, + "31469": 11.2875761298, + "31470": 11.2674186506, + "31471": 11.2472869096, + "31472": 11.2271740245, + "31473": 11.2070732973, + "31474": 11.1869782259, + "31475": 11.1668825144, + "31476": 11.1467800826, + "31477": 11.1266650743, + "31478": 11.1065318651, + "31479": 11.0863750682, + "31480": 11.066189541, + "31481": 11.0459703891, + "31482": 11.0257129704, + "31483": 11.0054128981, + "31484": 10.9850660428, + "31485": 10.9646685342, + "31486": 10.9442167613, + "31487": 10.923707373, + "31488": 10.9031372767, + "31489": 10.8825036377, + "31490": 10.8618038765, + "31491": 10.841035667, + "31492": 10.8201969331, + "31493": 10.7992858454, + "31494": 10.7783008173, + "31495": 10.7572405005, + "31496": 10.7361037807, + "31497": 10.7148897724, + "31498": 10.6935978141, + "31499": 10.6722274623, + "31500": 10.6507784861, + "31501": 10.6292508618, + "31502": 10.6076447665, + "31503": 10.5859605725, + "31504": 10.564198841, + "31505": 10.5423603165, + "31506": 10.5204459202, + "31507": 10.4984567445, + "31508": 10.4763940469, + "31509": 10.4542592444, + "31510": 10.4320539072, + "31511": 10.409779754, + "31512": 10.3874386455, + "31513": 10.3650325801, + "31514": 10.3425636878, + "31515": 10.320034226, + "31516": 10.2974465744, + "31517": 10.2748032301, + "31518": 10.2521068034, + "31519": 10.2293600137, + "31520": 10.206565685, + "31521": 10.183726742, + "31522": 10.1608462067, + "31523": 10.1379271942, + "31524": 10.1149729096, + "31525": 10.0919866445, + "31526": 10.0689717737, + "31527": 10.0459317522, + "31528": 10.0228701117, + "31529": 9.9997904583, + "31530": 9.976696469, + "31531": 9.9535918888, + "31532": 9.9304805282, + "31533": 9.9073662601, + "31534": 9.8842530168, + "31535": 9.8611447873, + "31536": 9.8380456144, + "31537": 9.8149595913, + "31538": 9.7918908593, + "31539": 9.7688436036, + "31540": 9.7458220512, + "31541": 9.7228304666, + "31542": 9.699873149, + "31543": 9.6769544285, + "31544": 9.6540786621, + "31545": 9.6312502305, + "31546": 9.6084735336, + "31547": 9.5857529866, + "31548": 9.5630930156, + "31549": 9.5404980535, + "31550": 9.5179725353, + "31551": 9.4955208931, + "31552": 9.4731475522, + "31553": 9.450856925, + "31554": 9.4286534072, + "31555": 9.4065413716, + "31556": 9.3845251638, + "31557": 9.3626090962, + "31558": 9.3407974431, + "31559": 9.3190944352, + "31560": 9.2975042543, + "31561": 9.2760310275, + "31562": 9.2546788224, + "31563": 9.2334516411, + "31564": 9.2123534155, + "31565": 9.1913880017, + "31566": 9.170559175, + "31567": 9.1498706249, + "31568": 9.12932595, + "31569": 9.1089286538, + "31570": 9.0886821398, + "31571": 9.0685897074, + "31572": 9.0486545477, + "31573": 9.0288797399, + "31574": 9.0092682476, + "31575": 8.9898229157, + "31576": 8.9705464673, + "31577": 8.9514415013, + "31578": 8.9325095878, + "31579": 8.9137505197, + "31580": 8.8951629888, + "31581": 8.8767454309, + "31582": 8.8584962927, + "31583": 8.8404140315, + "31584": 8.8224971237, + "31585": 8.8047440541, + "31586": 8.787153327, + "31587": 8.7697234548, + "31588": 8.752452969, + "31589": 8.7353404092, + "31590": 8.7183843335, + "31591": 8.7015833082, + "31592": 8.6849359176, + "31593": 8.6684407541, + "31594": 8.6520964279, + "31595": 8.635901557, + "31596": 8.6198547769, + "31597": 8.6039547307, + "31598": 8.588200079, + "31599": 8.5725894895, + "31600": 8.557121647, + "31601": 8.5417952438, + "31602": 8.5266089886, + "31603": 8.5115615973, + "31604": 8.4966518025, + "31605": 8.4818783433, + "31606": 8.4672399754, + "31607": 8.4527354609, + "31608": 8.4383635782, + "31609": 8.4241231119, + "31610": 8.4100128629, + "31611": 8.3960316377, + "31612": 8.3821782591, + "31613": 8.3684515554, + "31614": 8.3548503709, + "31615": 8.3413735552, + "31616": 8.3280199737, + "31617": 8.3147884969, + "31618": 8.301678011, + "31619": 8.2886874069, + "31620": 8.2758155912, + "31621": 8.263061475, + "31622": 8.2504239848, + "31623": 8.2379020515, + "31624": 8.2254946213, + "31625": 8.2132006444, + "31626": 8.2010190863, + "31627": 8.1889489163, + "31628": 8.1769891186, + "31629": 8.1651386822, + "31630": 8.1533966104, + "31631": 8.1417619097, + "31632": 8.130233592, + "31633": 8.1188106753, + "31634": 8.1074922053, + "31635": 8.0962772315, + "31636": 8.0851648022, + "31637": 8.0741539704, + "31638": 8.0632438072, + "31639": 8.05243339, + "31640": 8.0417218085, + "31641": 8.0311081569, + "31642": 8.0205915415, + "31643": 8.010171073, + "31644": 7.999845874, + "31645": 7.9896150713, + "31646": 7.9794778037, + "31647": 7.9694332137, + "31648": 7.9594804559, + "31649": 7.9496186884, + "31650": 7.9398470905, + "31651": 7.9301648421, + "31652": 7.9205711211, + "31653": 7.911065109, + "31654": 7.9016460125, + "31655": 7.892313041, + "31656": 7.8830654109, + "31657": 7.8739023388, + "31658": 7.8648230537, + "31659": 7.8558267857, + "31660": 7.8469127772, + "31661": 7.8380802731, + "31662": 7.8293285299, + "31663": 7.8206568064, + "31664": 7.8120643728, + "31665": 7.8035505013, + "31666": 7.7951144751, + "31667": 7.7867555799, + "31668": 7.778473112, + "31669": 7.7702663699, + "31670": 7.7621346627, + "31671": 7.7540773018, + "31672": 7.7460936089, + "31673": 7.7381829079, + "31674": 7.7303445326, + "31675": 7.7225778196, + "31676": 7.7148821148, + "31677": 7.7072567666, + "31678": 7.699701133, + "31679": 7.6922145744, + "31680": 7.6847964604, + "31681": 7.6774461631, + "31682": 7.6701630635, + "31683": 7.6629465452, + "31684": 7.6557960006, + "31685": 7.6487108246, + "31686": 7.6416904055, + "31687": 7.6347341413, + "31688": 7.6278414442, + "31689": 7.6210117329, + "31690": 7.6142444309, + "31691": 7.6075389673, + "31692": 7.6008947762, + "31693": 7.5943112971, + "31694": 7.5877879747, + "31695": 7.5813242587, + "31696": 7.5749196039, + "31697": 7.5685734702, + "31698": 7.5622853224, + "31699": 7.5560546302, + "31700": 7.5498808684, + "31701": 7.5437635165, + "31702": 7.5377020587, + "31703": 7.5316959842, + "31704": 7.5257457374, + "31705": 7.5198611276, + "31706": 7.5140568066, + "31707": 7.5083474331, + "31708": 7.502747492, + "31709": 7.497271328, + "31710": 7.4919331362, + "31711": 7.486746961, + "31712": 7.4817266938, + "31713": 7.4768860704, + "31714": 7.4722386692, + "31715": 7.4677979089, + "31716": 7.4635770463, + "31717": 7.4595891741, + "31718": 7.4558472187, + "31719": 7.4523639387, + "31720": 7.449151922, + "31721": 7.4462235845, + "31722": 7.4435911678, + "31723": 7.4412667373, + "31724": 7.4392621805, + "31725": 7.4375892045, + "31726": 7.436259335, + "31727": 7.4352839138, + "31728": 7.4346740975, + "31729": 7.4344408555, + "31730": 7.4345949682, + "31731": 7.4351470258, + "31732": 7.436107426, + "31733": 7.4374863732, + "31734": 7.4392938576, + "31735": 7.4415396081, + "31736": 7.4442330452, + "31737": 7.4473832584, + "31738": 7.4509989945, + "31739": 7.4550886487, + "31740": 7.4596602552, + "31741": 7.4647214776, + "31742": 7.4702796004, + "31743": 7.4763415196, + "31744": 7.4829137347, + "31745": 7.49000234, + "31746": 7.4976130167, + "31747": 7.5057510256, + "31748": 7.5144211993, + "31749": 7.5236279358, + "31750": 7.533375192, + "31751": 7.5436664778, + "31752": 7.5545048505, + "31753": 7.56589291, + "31754": 7.5778327944, + "31755": 7.5903261762, + "31756": 7.6033742589, + "31757": 7.6169777745, + "31758": 7.6311369815, + "31759": 7.645851663, + "31760": 7.6611211264, + "31761": 7.676944203, + "31762": 7.6933192486, + "31763": 7.710244144, + "31764": 7.7277162976, + "31765": 7.745732647, + "31766": 7.7642896624, + "31767": 7.78338335, + "31768": 7.8030092562, + "31769": 7.8231624725, + "31770": 7.8438376407, + "31771": 7.8650289591, + "31772": 7.8867301886, + "31773": 7.9089346602, + "31774": 7.9316352819, + "31775": 7.9548245472, + "31776": 7.9784945433, + "31777": 8.00263696, + "31778": 8.027243099, + "31779": 8.0523038837, + "31780": 8.0778098689, + "31781": 8.1037512514, + "31782": 8.1301178802, + "31783": 8.1568992683, + "31784": 8.1840846026, + "31785": 8.2116627561, + "31786": 8.2396222993, + "31787": 8.2679515114, + "31788": 8.2966383924, + "31789": 8.325670675, + "31790": 8.3550358366, + "31791": 8.3847211107, + "31792": 8.4147134997, + "31793": 8.4449997864, + "31794": 8.4755665461, + "31795": 8.5064001584, + "31796": 8.5374868192, + "31797": 8.5688125527, + "31798": 8.6003632224, + "31799": 8.6321245434, + "31800": 8.6640820937, + "31801": 8.6962213253, + "31802": 8.7285275757, + "31803": 8.7609860789, + "31804": 8.7935819764, + "31805": 8.8263003282, + "31806": 8.8591261234, + "31807": 8.892044291, + "31808": 8.9250397104, + "31809": 8.9580972218, + "31810": 8.991201637, + "31811": 9.0243377494, + "31812": 9.0574903447, + "31813": 9.090644211, + "31814": 9.1237841497, + "31815": 9.1568949856, + "31816": 9.1899615778, + "31817": 9.2229688304, + "31818": 9.2559017033, + "31819": 9.2887452235, + "31820": 9.3214844964, + "31821": 9.3541047173, + "31822": 9.3865911835, + "31823": 9.4189293065, + "31824": 9.4511046247, + "31825": 9.4831028161, + "31826": 9.514909712, + "31827": 9.5465113107, + "31828": 9.5778937917, + "31829": 9.6090435307, + "31830": 9.6399471144, + "31831": 9.6705913567, + "31832": 9.7009633142, + "31833": 9.7310503033, + "31834": 9.7608399167, + "31835": 9.7903200414, + "31836": 9.8194788762, + "31837": 9.8483049497, + "31838": 9.876787139, + "31839": 9.9049146885, + "31840": 9.9326772284, + "31841": 9.9600647942, + "31842": 9.9870678457, + "31843": 10.0136772856, + "31844": 10.0398844793, + "31845": 10.065681273, + "31846": 10.0910600128, + "31847": 10.1160135623, + "31848": 10.1405353209, + "31849": 10.1646192402, + "31850": 10.1882598412, + "31851": 10.2114522294, + "31852": 10.2341921097, + "31853": 10.2564758004, + "31854": 10.2783002455, + "31855": 10.2996630265, + "31856": 10.3205623724, + "31857": 10.3409971686, + "31858": 10.3609669641, + "31859": 10.3804719774, + "31860": 10.3995131005, + "31861": 10.4180919014, + "31862": 10.436210625, + "31863": 10.4538721914, + "31864": 10.4710801936, + "31865": 10.4878388919, + "31866": 10.504153208, + "31867": 10.5200287153, + "31868": 10.5354716294, + "31869": 10.5504887945, + "31870": 10.5650876701, + "31871": 10.5792763138, + "31872": 10.5930633642, + "31873": 10.6064580203, + "31874": 10.6194700207, + "31875": 10.6321096205, + "31876": 10.6443875664, + "31877": 10.6563150711, + "31878": 10.6679037861, + "31879": 10.6791657731, + "31880": 10.6901134745, + "31881": 10.7007596832, + "31882": 10.7111175113, + "31883": 10.7212003581, + "31884": 10.7310218779, + "31885": 10.7405959472, + "31886": 10.7499366315, + "31887": 10.7590581531, + "31888": 10.7679748571, + "31889": 10.7767011796, + "31890": 10.7852516153, + "31891": 10.7936406855, + "31892": 10.8018829075, + "31893": 10.8099927644, + "31894": 10.8179846756, + "31895": 10.8258729694, + "31896": 10.8336718555, + "31897": 10.8413954001, + "31898": 10.8490575014, + "31899": 10.8566718671, + "31900": 10.8642519938, + "31901": 10.8718086883, + "31902": 10.8793448166, + "31903": 10.8868551479, + "31904": 10.8943311422, + "31905": 10.9017639911, + "31906": 10.9091449949, + "31907": 10.9164655412, + "31908": 10.9237170783, + "31909": 10.9308911498, + "31910": 10.9379793625, + "31911": 10.9449734219, + "31912": 10.951865099, + "31913": 10.9586462667, + "31914": 10.965308866, + "31915": 10.9718449426, + "31916": 10.978246613, + "31917": 10.9845061015, + "31918": 10.9906157049, + "31919": 10.9965678316, + "31920": 11.0023550275, + "31921": 11.0079698003, + "31922": 11.0134052787, + "31923": 11.0186537035, + "31924": 11.0237082624, + "31925": 11.028561584, + "31926": 11.0332071298, + "31927": 11.0376376833, + "31928": 11.041846953, + "31929": 11.045827889, + "31930": 11.0495744524, + "31931": 11.0530797617, + "31932": 11.0563380376, + "31933": 11.0593425687, + "31934": 11.0620878415, + "31935": 11.064567317, + "31936": 11.0667757532, + "31937": 11.0687067855, + "31938": 11.0703554486, + "31939": 11.0717155553, + "31940": 11.0727824211, + "31941": 11.0735500389, + "31942": 11.074014009, + "31943": 11.0741685081, + "31944": 11.0740094232, + "31945": 11.0735311195, + "31946": 11.0727297723, + "31947": 11.0715999398, + "31948": 11.0701380863, + "31949": 11.0683389686, + "31950": 11.0661993392, + "31951": 11.0637141598, + "31952": 11.0608804698, + "31953": 11.0576934423, + "31954": 11.0541504012, + "31955": 11.0502467378, + "31956": 11.0459800578, + "31957": 11.041345978, + "31958": 11.0363423822, + "31959": 11.0309651198, + "31960": 11.025212349, + "31961": 11.0190801589, + "31962": 11.0125669779, + "31963": 11.0056691416, + "31964": 10.9983853446, + "31965": 10.990712175, + "31966": 10.9826485899, + "31967": 10.9741914356, + "31968": 10.9653399276, + "31969": 10.9560911755, + "31970": 10.9464446501, + "31971": 10.9363977277, + "31972": 10.9259501322, + "31973": 10.9150995089, + "31974": 10.9038458331, + "31975": 10.8921870206, + "31976": 10.8801232971, + "31977": 10.8676528485, + "31978": 10.8547761514, + "31979": 10.84149166, + "31980": 10.8278001032, + "31981": 10.8137001998, + "31982": 10.7991929338, + "31983": 10.7842772836, + "31984": 10.7689544922, + "31985": 10.7532237902, + "31986": 10.7370866855, + "31987": 10.7205426517, + "31988": 10.7035934686, + "31989": 10.6862388418, + "31990": 10.6684808319, + "31991": 10.6503193628, + "31992": 10.6317567869, + "31993": 10.6127932305, + "31994": 10.5934313509, + "31995": 10.5736714578, + "31996": 10.5535165292, + "31997": 10.5329670366, + "31998": 10.512026297, + "31999": 10.4906949181, + "32000": 8.1479412736, + "32001": 8.084134765, + "32002": 8.0201974342, + "32003": 7.9561449148, + "32004": 7.8919920604, + "32005": 7.8277545932, + "32006": 7.7634473704, + "32007": 7.69915672, + "32008": 7.6350536229, + "32009": 7.5713241895, + "32010": 7.508134349, + "32011": 7.4456301136, + "32012": 7.383940594, + "32013": 7.3231800164, + "32014": 7.2634495277, + "32015": 7.2048386945, + "32016": 7.1474267689, + "32017": 7.0912837472, + "32018": 7.0364712592, + "32019": 6.9830433101, + "32020": 6.9310469027, + "32021": 6.880522556, + "32022": 6.8315047435, + "32023": 6.7840222584, + "32024": 6.7380985287, + "32025": 6.6937518822, + "32026": 6.6509957836, + "32027": 6.6098390382, + "32028": 6.5702859841, + "32029": 6.5323366627, + "32030": 6.4959869901, + "32031": 6.4612289147, + "32032": 6.4280505843, + "32033": 6.3964365083, + "32034": 6.3663677203, + "32035": 6.3378219561, + "32036": 6.3107738342, + "32037": 6.2851950429, + "32038": 6.2610545351, + "32039": 6.2383187317, + "32040": 6.2169517316, + "32041": 6.1969155294, + "32042": 6.1781702386, + "32043": 6.1606743207, + "32044": 6.1443848178, + "32045": 6.1292575892, + "32046": 6.1152475485, + "32047": 6.1023089031, + "32048": 6.0903953912, + "32049": 6.0794605181, + "32050": 6.0694577887, + "32051": 6.0603409349, + "32052": 6.0520641387, + "32053": 6.0445822468, + "32054": 6.0378509784, + "32055": 6.0318271231, + "32056": 6.0264687299, + "32057": 6.021735285, + "32058": 6.0175878782, + "32059": 6.0139893575, + "32060": 6.0109044715, + "32061": 6.0082999985, + "32062": 6.0061448627, + "32063": 6.0044102375, + "32064": 6.0030696346, + "32065": 6.0020989801, + "32066": 6.0014766777, + "32067": 6.0011836577, + "32068": 6.0012034139, + "32069": 6.0015220279, + "32070": 6.0021281801, + "32071": 6.00301315, + "32072": 6.0041708042, + "32073": 6.0055975742, + "32074": 6.0072924234, + "32075": 6.009256804, + "32076": 6.0114946057, + "32077": 6.0140120947, + "32078": 6.0168178456, + "32079": 6.0199226657, + "32080": 6.0233395124, + "32081": 6.0270834053, + "32082": 6.0311713325, + "32083": 6.0356221524, + "32084": 6.0404564915, + "32085": 6.0456966389, + "32086": 6.051366438, + "32087": 6.0574911761, + "32088": 6.0640974725, + "32089": 6.0712131654, + "32090": 6.0788671985, + "32091": 6.0870895076, + "32092": 6.0959109079, + "32093": 6.1053629819, + "32094": 6.1154779688, + "32095": 6.1262886559, + "32096": 6.1378282717, + "32097": 6.1501303819, + "32098": 6.1632287875, + "32099": 6.1771574264, + "32100": 6.191950278, + "32101": 6.207641271, + "32102": 6.2242641948, + "32103": 6.2418526147, + "32104": 6.2604397908, + "32105": 6.2800586005, + "32106": 6.3007414651, + "32107": 6.3225202806, + "32108": 6.3454263516, + "32109": 6.3694903301, + "32110": 6.3947421573, + "32111": 6.4212110102, + "32112": 6.4487503748, + "32113": 6.4756926786, + "32114": 6.5024307637, + "32115": 6.5287887665, + "32116": 6.5548749048, + "32117": 6.5806550108, + "32118": 6.606165695, + "32119": 6.6314077008, + "32120": 6.6563991682, + "32121": 6.6811489489, + "32122": 6.7056699011, + "32123": 6.7299722001, + "32124": 6.7540666466, + "32125": 6.7779629818, + "32126": 6.8016707046, + "32127": 6.8251986432, + "32128": 6.8485551549, + "32129": 6.8717480169, + "32130": 6.8947844765, + "32131": 6.9176712266, + "32132": 6.9404144228, + "32133": 6.9630196844, + "32134": 6.9854921071, + "32135": 7.0078362741, + "32136": 7.0300562708, + "32137": 7.0521557016, + "32138": 7.0741377087, + "32139": 7.0960049916, + "32140": 7.1177598294, + "32141": 7.1394041036, + "32142": 7.1609393225, + "32143": 7.1823666455, + "32144": 7.2036869096, + "32145": 7.2249006552, + "32146": 7.2460081529, + "32147": 7.2670094301, + "32148": 7.2879042977, + "32149": 7.3086923769, + "32150": 7.3293731251, + "32151": 7.3499458619, + "32152": 7.3704097943, + "32153": 7.3907640407, + "32154": 7.4110076547, + "32155": 7.4311396475, + "32156": 7.4511590096, + "32157": 7.4710647305, + "32158": 7.490855818, + "32159": 7.5105313157, + "32160": 7.5300903193, + "32161": 7.5495319912, + "32162": 7.5688555736, + "32163": 7.5880604005, + "32164": 7.6071459075, + "32165": 7.6261116404, + "32166": 7.6449572623, + "32167": 7.6636825588, + "32168": 7.6822874416, + "32169": 7.7007719514, + "32170": 7.7191362581, + "32171": 7.7373806604, + "32172": 7.755505584, + "32173": 7.7735115776, + "32174": 7.7913993091, + "32175": 7.8091695593, + "32176": 7.826823215, + "32177": 7.8443612616, + "32178": 7.8617847739, + "32179": 7.8790949069, + "32180": 7.8962928853, + "32181": 7.9133799929, + "32182": 7.9303575615, + "32183": 7.9472269589, + "32184": 7.9639895773, + "32185": 7.9806468215, + "32186": 7.9972000969, + "32187": 8.0136507975, + "32188": 8.0300002945, + "32189": 8.0462499253, + "32190": 8.062400982, + "32191": 8.0784547017, + "32192": 8.0944122566, + "32193": 8.1102747452, + "32194": 8.1260431838, + "32195": 8.1417184994, + "32196": 8.1573015231, + "32197": 8.1727929846, + "32198": 8.1881935078, + "32199": 8.2035036074, + "32200": 8.218723686, + "32201": 8.2338540331, + "32202": 8.2488948245, + "32203": 8.2638461231, + "32204": 8.2787078806, + "32205": 8.29347994, + "32206": 8.3081620393, + "32207": 8.3227538162, + "32208": 8.3372548132, + "32209": 8.3516644839, + "32210": 8.3659822, + "32211": 8.3802072586, + "32212": 8.3943388904, + "32213": 8.4083762685, + "32214": 8.422318517, + "32215": 8.4361647209, + "32216": 8.449913935, + "32217": 8.4635651942, + "32218": 8.4771175231, + "32219": 8.4905699454, + "32220": 8.503921494, + "32221": 8.5171712204, + "32222": 8.5303182036, + "32223": 8.5433615589, + "32224": 8.5563004467, + "32225": 8.5691340801, + "32226": 8.5818617324, + "32227": 8.5944827436, + "32228": 8.6069965271, + "32229": 8.6194025745, + "32230": 8.6317004607, + "32231": 8.6438898476, + "32232": 8.6559704874, + "32233": 8.6679422248, + "32234": 8.6798049988, + "32235": 8.691558843, + "32236": 8.7032038854, + "32237": 8.7147403479, + "32238": 8.7261685442, + "32239": 8.7374888769, + "32240": 8.7487018345, + "32241": 8.7598079872, + "32242": 8.7708079817, + "32243": 8.7817025356, + "32244": 8.7924924313, + "32245": 8.8031785091, + "32246": 8.813761659, + "32247": 8.8242428137, + "32248": 8.8346229387, + "32249": 8.8449030246, + "32250": 8.8550840764, + "32251": 8.8651671045, + "32252": 8.8751531144, + "32253": 8.8850430964, + "32254": 8.894838015, + "32255": 8.9045387985, + "32256": 8.9141463283, + "32257": 8.9236614284, + "32258": 8.9330848547, + "32259": 8.942417285, + "32260": 8.9516593087, + "32261": 8.960811417, + "32262": 8.9698739934, + "32263": 8.9788473048, + "32264": 8.9877314927, + "32265": 8.9965265655, + "32266": 9.0052323906, + "32267": 9.0138486881, + "32268": 9.0223750244, + "32269": 9.0308108068, + "32270": 9.0391552791, + "32271": 9.0474075178, + "32272": 9.0555664292, + "32273": 9.063630747, + "32274": 9.0715990318, + "32275": 9.0794696702, + "32276": 9.087240876, + "32277": 9.0949106915, + "32278": 9.10247699, + "32279": 9.1099374791, + "32280": 9.1172897053, + "32281": 9.1245310586, + "32282": 9.1316587789, + "32283": 9.1386699621, + "32284": 9.1455615682, + "32285": 9.1523304286, + "32286": 9.1589732554, + "32287": 9.1654866504, + "32288": 9.1718671148, + "32289": 9.1781110596, + "32290": 9.1842148158, + "32291": 9.1901746454, + "32292": 9.1959867525, + "32293": 9.2016472946, + "32294": 9.2071523933, + "32295": 9.2124981464, + "32296": 9.2176806383, + "32297": 9.2226959516, + "32298": 9.2275401781, + "32299": 9.2322094288, + "32300": 9.236699845, + "32301": 9.2410076078, + "32302": 9.2451289482, + "32303": 9.2490601557, + "32304": 9.2527973752, + "32305": 9.2563370828, + "32306": 9.2596760706, + "32307": 9.2628110162, + "32308": 9.2657383124, + "32309": 9.2684549343, + "32310": 9.2709577531, + "32311": 9.2732438137, + "32312": 9.2753102249, + "32313": 9.2771543577, + "32314": 9.2787735509, + "32315": 9.2801654072, + "32316": 9.281327533, + "32317": 9.2822577996, + "32318": 9.282954092, + "32319": 9.2834145585, + "32320": 9.2836373706, + "32321": 9.2836982113, + "32322": 9.2837025775, + "32323": 9.2837131885, + "32324": 9.2837220504, + "32325": 9.2837342498, + "32326": 9.2837425896, + "32327": 9.2837543242, + "32328": 9.2837623221, + "32329": 9.2837735528, + "32330": 9.2837812062, + "32331": 9.2837919238, + "32332": 9.2837992273, + "32333": 9.2838094264, + "32334": 9.2838163763, + "32335": 9.2838260546, + "32336": 9.2838326495, + "32337": 9.2838418075, + "32338": 9.2838480477, + "32339": 9.283856689, + "32340": 9.2838625769, + "32341": 9.2838707076, + "32342": 9.2838762475, + "32343": 9.2838838763, + "32344": 9.2838890741, + "32345": 9.2838962121, + "32346": 9.2839010754, + "32347": 9.2839077358, + "32348": 9.2839122736, + "32349": 9.2839184715, + "32350": 9.2839226941, + "32351": 9.2839284461, + "32352": 9.2839323648, + "32353": 9.283937689, + "32354": 9.2839413162, + "32355": 9.2839462316, + "32356": 9.2839495802, + "32357": 9.2839541068, + "32358": 9.2839571904, + "32359": 9.2839613486, + "32360": 9.2839641812, + "32361": 9.2839679917, + "32362": 9.2839705874, + "32363": 9.2839740711, + "32364": 9.283976444, + "32365": 9.2839796216, + "32366": 9.2839817859, + "32367": 9.2839846776, + "32368": 9.2839866471, + "32369": 9.2839892729, + "32370": 9.2839910613, + "32371": 9.2839934404, + "32372": 9.2839950606, + "32373": 9.2839972115, + "32374": 9.2839986763, + "32375": 9.2840006167, + "32376": 9.284001938, + "32377": 9.2840036847, + "32378": 9.2840048741, + "32379": 9.2840064429, + "32380": 9.2840075111, + "32381": 9.284008917, + "32382": 9.284009874, + "32383": 9.2840111308, + "32384": 9.2840119863, + "32385": 9.284013107, + "32386": 9.2840138696, + "32387": 9.2840148661, + "32388": 9.2840155442, + "32389": 9.2840164276, + "32390": 9.2840170285, + "32391": 9.2840178089, + "32392": 9.2840183397, + "32393": 9.2840190265, + "32394": 9.2840194934, + "32395": 9.2840200951, + "32396": 9.284020504, + "32397": 9.2840210284, + "32398": 9.2840213846, + "32399": 9.2840218388, + "32400": 9.2840221471, + "32401": 9.2840225375, + "32402": 9.2840228023, + "32403": 9.284023135, + "32404": 9.2840233603, + "32405": 9.2840228616, + "32406": 9.2840224314, + "32407": 9.2840058457, + "32408": 9.283992688, + "32409": 9.2839751414, + "32410": 9.2839626207, + "32411": 9.2839454798, + "32412": 9.2839333041, + "32413": 9.2839166248, + "32414": 9.2839047805, + "32415": 9.2838885619, + "32416": 9.2838770462, + "32417": 9.2838612844, + "32418": 9.2838500943, + "32419": 9.2838347843, + "32420": 9.2838239167, + "32421": 9.2838090527, + "32422": 9.2838048094, + "32423": 9.2837954212, + "32424": 9.2837911495, + "32425": 9.2837809589, + "32426": 9.2837757502, + "32427": 9.2837652826, + "32428": 9.2837594894, + "32429": 9.2837488069, + "32430": 9.2837424533, + "32431": 9.2837315742, + "32432": 9.2837246909, + "32433": 9.2837136311, + "32434": 9.2837062482, + "32435": 9.2836950225, + "32436": 9.2836871695, + "32437": 9.2836757916, + "32438": 9.2836674972, + "32439": 9.2836559803, + "32440": 9.2836373395, + "32441": 9.2835907807, + "32442": 9.283462043, + "32443": 9.2831886682, + "32444": 9.2827112937, + "32445": 9.2819735581, + "32446": 9.2809221455, + "32447": 9.2795067944, + "32448": 9.277680303, + "32449": 9.2753985283, + "32450": 9.2726203763, + "32451": 9.2693077868, + "32452": 9.2654257108, + "32453": 9.2609420816, + "32454": 9.25582778, + "32455": 9.2500565932, + "32456": 9.2436051683, + "32457": 9.2364529603, + "32458": 9.2285821749, + "32459": 9.2199777066, + "32460": 9.2106270724, + "32461": 9.2005203403, + "32462": 9.1896500554, + "32463": 9.178011161, + "32464": 9.1656009169, + "32465": 9.1524188143, + "32466": 9.1384664889, + "32467": 9.1237476299, + "32468": 9.1082678888, + "32469": 9.0920347848, + "32470": 9.0750576098, + "32471": 9.0573473314, + "32472": 9.0389164958, + "32473": 9.0197791298, + "32474": 8.9999506422, + "32475": 8.9794477262, + "32476": 8.9582882611, + "32477": 8.9364912158, + "32478": 8.9140765525, + "32479": 8.8910651318, + "32480": 8.8674786198, + "32481": 8.8433393963, + "32482": 8.8186704662, + "32483": 8.7934953721, + "32484": 8.7678381101, + "32485": 8.7417230487, + "32486": 8.7151748499, + "32487": 8.6882183945, + "32488": 8.6608787104, + "32489": 8.633180904, + "32490": 8.6051500966, + "32491": 8.5768113631, + "32492": 8.548189676, + "32493": 8.5193098528, + "32494": 8.4901965073, + "32495": 8.4608740057, + "32496": 8.4313664262, + "32497": 8.401697523, + "32498": 8.3718906946, + "32499": 8.3419689555, + "32500": 8.3119549124, + "32501": 8.2818707443, + "32502": 8.2517381858, + "32503": 8.2215785141, + "32504": 8.1914125402, + "32505": 8.161260602, + "32506": 8.1311425613, + "32507": 8.1010778037, + "32508": 8.0710852406, + "32509": 8.0411833135, + "32510": 8.0113900014, + "32511": 7.9817228287, + "32512": 7.9521988758, + "32513": 7.9228347905, + "32514": 7.8936468008, + "32515": 7.8646507283, + "32516": 7.8358620024, + "32517": 7.8072956751, + "32518": 7.7789664353, + "32519": 7.7508886234, + "32520": 7.723076246, + "32521": 7.6955429891, + "32522": 7.6683022313, + "32523": 7.6413670564, + "32524": 7.6147502637, + "32525": 7.5884643785, + "32526": 7.5625216607, + "32527": 7.5369341115, + "32528": 7.5117134793, + "32529": 7.4868712637, + "32530": 7.4624187176, + "32531": 7.4383668479, + "32532": 7.4147264146, + "32533": 7.3915079275, + "32534": 7.3687216416, + "32535": 7.3463775511, + "32536": 7.324485381, + "32537": 7.3030545779, + "32538": 7.2820942983, + "32539": 7.2616133966, + "32540": 7.2416204109, + "32541": 7.2221235477, + "32542": 7.203130666, + "32543": 7.18464926, + "32544": 7.1666864412, + "32545": 7.1492489194, + "32546": 7.1323429843, + "32547": 7.1159744852, + "32548": 7.1001488123, + "32549": 7.0848708766, + "32550": 7.0701450908, + "32551": 7.0559753507, + "32552": 7.0423650164, + "32553": 7.0293168956, + "32554": 7.0168332263, + "32555": 7.0049156621, + "32556": 6.9935652581, + "32557": 6.9827824579, + "32558": 6.9725670837, + "32559": 6.9629183262, + "32560": 6.9538347386, + "32561": 6.9453142308, + "32562": 6.9373540673, + "32563": 6.9299508661, + "32564": 6.9231006016, + "32565": 6.9167986081, + "32566": 6.9110395875, + "32567": 6.9058176185, + "32568": 6.9011261693, + "32569": 6.8969581119, + "32570": 6.8933057398, + "32571": 6.890160788, + "32572": 6.8875144555, + "32573": 6.8853574302, + "32574": 6.8836799163, + "32575": 6.8824716636, + "32576": 6.8817219995, + "32577": 6.8814198621, + "32578": 6.8813687687, + "32579": 6.8813653487, + "32580": 6.8813637724, + "32581": 6.8813604783, + "32582": 6.8813589195, + "32583": 6.8813556044, + "32584": 6.881354015, + "32585": 6.8813506883, + "32586": 6.8813490671, + "32587": 6.8813457292, + "32588": 6.8813440776, + "32589": 6.8813407294, + "32590": 6.8813390499, + "32591": 6.8813356926, + "32592": 6.8813339888, + "32593": 6.8813306241, + "32594": 6.8813289004, + "32595": 6.8813255308, + "32596": 6.8813237925, + "32597": 6.8813204207, + "32598": 6.8813186739, + "32599": 6.8813153032, + "32600": 6.8813135544, + "32601": 6.8813101884, + "32602": 6.8813084449, + "32603": 6.8813050875, + "32604": 6.8813033565, + "32605": 6.881300012, + "32606": 6.881298301, + "32607": 6.8812949735, + "32608": 6.88129329, + "32609": 6.8812899838, + "32610": 6.881288335, + "32611": 6.8812850541, + "32612": 6.8812834469, + "32613": 6.8812801953, + "32614": 6.8812786358, + "32615": 6.8812754172, + "32616": 6.8812739108, + "32617": 6.8812707283, + "32618": 6.8812692795, + "32619": 6.8812661359, + "32620": 6.881264748, + "32621": 6.8812616455, + "32622": 6.8812603209, + "32623": 6.8812572608, + "32624": 6.8812560004, + "32625": 6.8812529835, + "32626": 6.881251787, + "32627": 6.8812488133, + "32628": 6.8812476788, + "32629": 6.8812449242, + "32630": 6.8812439914, + "32631": 6.8812412932, + "32632": 6.881238519, + "32633": 6.8812341787, + "32634": 6.8812330385, + "32635": 6.8812304295, + "32636": 6.8812276577, + "32637": 6.8812233195, + "32638": 6.8812202482, + "32639": 6.881215935, + "32640": 6.8812128639, + "32641": 6.8812085594, + "32642": 6.881205494, + "32643": 6.8812012005, + "32644": 6.8811981431, + "32645": 6.8811938635, + "32646": 6.8811908163, + "32647": 6.8811865538, + "32648": 6.8811835191, + "32649": 6.8811792768, + "32650": 6.8811781725, + "32651": 6.8811756458, + "32652": 6.881172942, + "32653": 6.8811687289, + "32654": 6.8811675358, + "32655": 6.8811649612, + "32656": 6.8811639931, + "32657": 6.8811613691, + "32658": 6.8811603274, + "32659": 6.8811574974, + "32660": 6.8811562346, + "32661": 6.8811533453, + "32662": 6.8811519916, + "32663": 6.8811490538, + "32664": 6.8811476003, + "32665": 6.8811446109, + "32666": 6.8811430527, + "32667": 6.8811400087, + "32668": 6.8811383428, + "32669": 6.8811352424, + "32670": 6.8811334675, + "32671": 6.8811303095, + "32672": 6.881128426, + "32673": 6.8811252106, + "32674": 6.8811232204, + "32675": 6.8811199485, + "32676": 6.8811178555, + "32677": 6.881114529, + "32678": 6.8811123384, + "32679": 6.8811089602, + "32680": 6.8811066788, + "32681": 6.8811032527, + "32682": 6.8811008885, + "32683": 6.881097419, + "32684": 6.8810949814, + "32685": 6.8810914737, + "32686": 6.8810858762, + "32687": 6.8810800906, + "32688": 6.8810743717, + "32689": 6.8810685972, + "32690": 6.8810627964, + "32691": 6.8810569691, + "32692": 6.8810511211, + "32693": 6.8810452572, + "32694": 6.881039382, + "32695": 6.8810335006, + "32696": 6.8810276177, + "32697": 6.8810217381, + "32698": 6.8810158665, + "32699": 6.8810100074, + "32700": 6.8810041655, + "32701": 6.8809983451, + "32702": 6.8809925504, + "32703": 6.8809867856, + "32704": 6.8811760374, + "32705": 6.8833255461, + "32706": 6.8870164505, + "32707": 6.8924570374, + "32708": 6.8995414185, + "32709": 6.9083201925, + "32710": 6.9187651144, + "32711": 6.930886762, + "32712": 6.9446757033, + "32713": 6.9601319136, + "32714": 6.9772500683, + "32715": 6.9960268976, + "32716": 7.0164575106, + "32717": 7.0385372348, + "32718": 7.0622606982, + "32719": 7.0876222896, + "32720": 7.1146159311, + "32721": 7.1432351933, + "32722": 7.1734732405, + "32723": 7.2053228601, + "32724": 7.2387764505, + "32725": 7.2738260301, + "32726": 7.3104632353, + "32727": 7.3486793245, + "32728": 7.3884651794, + "32729": 7.4298113072, + "32730": 7.4727078432, + "32731": 7.5171445528, + "32732": 7.5631108342, + "32733": 7.6105957207, + "32734": 7.6595840974, + "32735": 7.7100539452, + "32736": 7.7619791809, + "32737": 7.8153321301, + "32738": 7.870083778, + "32739": 7.9262037208, + "32740": 7.9836601812, + "32741": 8.0424200162, + "32742": 8.1024487301, + "32743": 8.1637104917, + "32744": 8.2261681544, + "32745": 8.2897832813, + "32746": 8.3545161729, + "32747": 8.4203258993, + "32748": 8.4871703358, + "32749": 8.5550062024, + "32750": 8.6237891062, + "32751": 8.6934735875, + "32752": 8.7640131695, + "32753": 8.8353604102, + "32754": 8.9074669578, + "32755": 8.9802836083, + "32756": 9.0537603662, + "32757": 9.1278465063, + "32758": 9.2024906388, + "32759": 9.2776407748, + "32760": 9.3532443943, + "32761": 9.4292485147, + "32762": 9.5055997606, + "32763": 9.5822444339, + "32764": 9.659128585, + "32765": 9.7361980828, + "32766": 9.8133986863, + "32767": 9.8906761143, + "32768": 9.9679761151, + "32769": 10.0452445356, + "32770": 10.1224273884, + "32771": 10.1994709187, + "32772": 10.2763216685, + "32773": 10.3529265402, + "32774": 10.4292328571, + "32775": 10.5051884227, + "32776": 10.5807415777, + "32777": 10.6558412539, + "32778": 10.7304370262, + "32779": 10.8044791621, + "32780": 10.877918668, + "32781": 10.9507073328, + "32782": 11.0227977691, + "32783": 11.0941434511, + "32784": 11.1646987495, + "32785": 11.2344189638, + "32786": 11.3032603517, + "32787": 11.3711801549, + "32788": 11.438136623, + "32789": 11.5040890342, + "32790": 11.568997713, + "32791": 11.6328240457, + "32792": 11.6955304929, + "32793": 11.7570806006, + "32794": 11.8174390076, + "32795": 11.8765714521, + "32796": 11.9344447761, + "32797": 11.9910269274, + "32798": 12.0462869612, + "32799": 12.1001950401, + "32800": 12.1527224323, + "32801": 12.2038415109, + "32802": 12.2535257507, + "32803": 12.3017497266, + "32804": 12.3484891111, + "32805": 12.3937206727, + "32806": 12.4374222751, + "32807": 12.4795728774, + "32808": 12.5201525359, + "32809": 12.5591424072, + "32810": 12.596524754, + "32811": 12.6322829529, + "32812": 12.6664015047, + "32813": 12.6988660478, + "32814": 12.7296633748, + "32815": 12.7587814521, + "32816": 12.7862094435, + "32817": 12.811937737, + "32818": 12.8359579759, + "32819": 12.8582630929, + "32820": 12.8788473493, + "32821": 12.8977063768, + "32822": 12.9148372239, + "32823": 12.9302384052, + "32824": 12.9439099548, + "32825": 12.9558534824, + "32826": 12.9660722321, + "32827": 12.9745711443, + "32828": 12.9813569184, + "32829": 12.9864380788, + "32830": 12.98982504, + "32831": 12.9915301733, + "32832": 12.9915678728, + "32833": 12.9899546206, + "32834": 12.9867090502, + "32835": 12.9818520073, + "32836": 12.9754066079, + "32837": 12.9673982921, + "32838": 12.9578548729, + "32839": 12.9468065797, + "32840": 12.9342860954, + "32841": 12.9203285861, + "32842": 12.9049717231, + "32843": 12.8882556958, + "32844": 12.8702232161, + "32845": 12.8509195119, + "32846": 12.8303923103, + "32847": 12.8086918107, + "32848": 12.7858706446, + "32849": 12.7619838254, + "32850": 12.7370886852, + "32851": 12.7112447991, + "32852": 12.6845138976, + "32853": 12.6569597672, + "32854": 12.6286481373, + "32855": 12.5996465566, + "32856": 12.570024257, + "32857": 12.5398520064, + "32858": 12.509201951, + "32859": 12.4781474473, + "32860": 12.4467628845, + "32861": 12.4151234988, + "32862": 12.3833051792, + "32863": 12.3513842672, + "32864": 12.3194373503, + "32865": 12.2875410509, + "32866": 12.2557718115, + "32867": 12.2242056777, + "32868": 12.1929180797, + "32869": 12.1619836139, + "32870": 12.1314758262, + "32871": 12.1014669969, + "32872": 12.0720279303, + "32873": 12.0432277489, + "32874": 12.0151336939, + "32875": 11.9878109329, + "32876": 11.961322377, + "32877": 11.9357285065, + "32878": 11.9110872088, + "32879": 11.8874536263, + "32880": 11.8648800192, + "32881": 11.8434156397, + "32882": 11.8231066225, + "32883": 11.8039958886, + "32884": 11.7861230664, + "32885": 11.7695244277, + "32886": 11.7542328405, + "32887": 11.740277739, + "32888": 11.7276851102, + "32889": 11.716477497, + "32890": 11.706674019, + "32891": 11.6982904094, + "32892": 11.6913390683, + "32893": 11.6858291317, + "32894": 11.6817665557, + "32895": 11.6791542154, + "32896": 11.677992017, + "32897": 11.6782770228, + "32898": 11.6800035875, + "32899": 11.6831635048, + "32900": 11.6877461632, + "32901": 11.6932339907, + "32902": 11.6984348729, + "32903": 11.7026924121, + "32904": 11.7059448317, + "32905": 11.7082074946, + "32906": 11.7094735355, + "32907": 11.709747011, + "32908": 11.709023892, + "32909": 11.7073082341, + "32910": 11.7045965802, + "32911": 11.7008934368, + "32912": 11.6961958286, + "32913": 11.6905087301, + "32914": 11.6838296437, + "32915": 11.6761640108, + "32916": 11.6675098113, + "32917": 11.6578729509, + "32918": 11.6472518859, + "32919": 11.6356529837, + "32920": 11.6230751968, + "32921": 11.609525321, + "32922": 11.5950034243, + "32923": 11.5795159849, + "32924": 11.5630632241, + "32925": 11.545652462, + "32926": 11.5272844698, + "32927": 11.5079669933, + "32928": 11.4877012761, + "32929": 11.4664955, + "32930": 11.4443513754, + "32931": 11.421277514, + "32932": 11.3972760907, + "32933": 11.3723561392, + "32934": 11.3465202961, + "32935": 11.3197780093, + "32936": 11.292132374, + "32937": 11.2635932439, + "32938": 11.2341641691, + "32939": 11.2038554002, + "32940": 11.1726709383, + "32941": 11.1406214218, + "32942": 11.1077112982, + "32943": 11.0739515843, + "32944": 11.0393471687, + "32945": 11.0039094375, + "32946": 10.9676437143, + "32947": 10.9305617448, + "32948": 10.8926692813, + "32949": 10.8539784196, + "32950": 10.8144953329, + "32951": 10.774232458, + "32952": 10.7331963811, + "32953": 10.69139987, + "32954": 10.6488499153, + "32955": 10.6055596065, + "32956": 10.5615363289, + "32957": 10.5167934844, + "32958": 10.4713388429, + "32959": 10.4251861085, + "32960": 10.378343426, + "32961": 10.3308247916, + "32962": 10.2826387137, + "32963": 10.2337994708, + "32964": 10.1843159235, + "32965": 10.1342026222, + "32966": 10.0834687684, + "32967": 10.0321291732, + "32968": 9.9801933674, + "32969": 9.9276764117, + "32970": 9.8745881545, + "32971": 9.820943894, + "32972": 9.7667537844, + "32973": 9.7120333496, + "32974": 9.6567930372, + "32975": 9.6010485842, + "32976": 9.5448107199, + "32977": 9.4880953811, + "32978": 9.4309135667, + "32979": 9.3732814001, + "32980": 9.3152101372, + "32981": 9.2567160747, + "32982": 9.1978107128, + "32983": 9.1385105076, + "32984": 9.0788271914, + "32985": 9.0187773653, + "32986": 8.9583729808, + "32987": 8.89763077, + "32988": 8.8365628907, + "32989": 8.7751861913, + "32990": 8.7135130232, + "32991": 8.6515603362, + "32992": 8.5893406624, + "32993": 8.5268710379, + "32994": 8.4641641633, + "32995": 8.4012371445, + "32996": 8.3381028391, + "32997": 8.274778406, + "32998": 8.2112768488, + "32999": 8.1476153611, + "33000": 47.9863408775, + "33001": 47.9863434891, + "33002": 47.9863453058, + "33003": 47.986348162, + "33004": 47.9863501508, + "33005": 47.9863533085, + "33006": 47.9863555092, + "33007": 47.9867002699, + "33008": 47.9881555057, + "33009": 47.9915878625, + "33010": 47.9977906513, + "33011": 48.0074821322, + "33012": 48.0213177112, + "33013": 48.0398975744, + "33014": 48.0637735829, + "33015": 48.0934548923, + "33016": 48.1294126116, + "33017": 48.1720835849, + "33018": 48.221873449, + "33019": 48.2791590388, + "33020": 48.344290267, + "33021": 48.4175915207, + "33022": 48.4993626876, + "33023": 48.5898798292, + "33024": 48.6893956078, + "33025": 48.7981394599, + "33026": 48.9163176237, + "33027": 49.0441129912, + "33028": 49.1816848954, + "33029": 49.3291687826, + "33030": 49.4866758884, + "33031": 49.6542928429, + "33032": 49.8320813385, + "33033": 50.0200777826, + "33034": 50.2182929757, + "33035": 50.4267118969, + "33036": 50.6452935485, + "33037": 50.8739708698, + "33038": 51.1126507527, + "33039": 51.3612141591, + "33040": 51.6195163483, + "33041": 51.8873872171, + "33042": 52.1646317572, + "33043": 52.4510306306, + "33044": 52.746340864, + "33045": 53.0502966597, + "33046": 53.362610321, + "33047": 53.6829732889, + "33048": 54.0110572828, + "33049": 54.3465155417, + "33050": 54.6889841564, + "33051": 55.0380834862, + "33052": 55.3934196499, + "33053": 55.7545860827, + "33054": 56.1211651484, + "33055": 56.4927297958, + "33056": 56.8688452498, + "33057": 57.2490707244, + "33058": 57.6329611484, + "33059": 58.020068891, + "33060": 58.4099454772, + "33061": 58.8021432823, + "33062": 59.1962171946, + "33063": 59.5917262378, + "33064": 59.9882351409, + "33065": 60.3853158506, + "33066": 60.7825489745, + "33067": 61.1795251502, + "33068": 61.5758463321, + "33069": 61.9711269914, + "33070": 62.3649952231, + "33071": 62.7570937562, + "33072": 63.147080865, + "33073": 63.5346311763, + "33074": 63.9194363746, + "33075": 64.3012058006, + "33076": 64.6796669466, + "33077": 65.0545658463, + "33078": 65.4256673636, + "33079": 65.7927553793, + "33080": 66.1556328815, + "33081": 66.5141219609, + "33082": 66.8680637155, + "33083": 67.2173180693, + "33084": 67.5617635093, + "33085": 67.9012967453, + "33086": 68.2358322993, + "33087": 68.5653020277, + "33088": 68.8896545843, + "33089": 69.2088548279, + "33090": 69.5228831815, + "33091": 69.8317349479, + "33092": 70.135419589, + "33093": 70.4339599721, + "33094": 70.727391591, + "33095": 71.0157617663, + "33096": 71.2991288297, + "33097": 71.5775612982, + "33098": 71.8511370421, + "33099": 72.119942453, + "33100": 72.3840716133, + "33101": 72.6436254738, + "33102": 72.8987110425, + "33103": 73.1494405873, + "33104": 73.3959308561, + "33105": 73.6383023183, + "33106": 73.876678429, + "33107": 74.1111849187, + "33108": 74.3419491115, + "33109": 74.5690992721, + "33110": 74.7927639847, + "33111": 75.0130715643, + "33112": 75.2301495031, + "33113": 75.4441239655, + "33114": 75.6551193425, + "33115": 75.8632578563, + "33116": 76.0686591976, + "33117": 76.2714401905, + "33118": 76.4717144842, + "33119": 76.6695922731, + "33120": 76.865180046, + "33121": 77.0585803645, + "33122": 77.2498916712, + "33123": 77.4392081273, + "33124": 77.6266194787, + "33125": 77.8122109522, + "33126": 77.9960631783, + "33127": 78.1782521423, + "33128": 78.3588491615, + "33129": 78.5379208878, + "33130": 78.7155293341, + "33131": 78.8917319241, + "33132": 79.0665815639, + "33133": 79.2401267328, + "33134": 79.4124115944, + "33135": 79.583476123, + "33136": 79.7533562479, + "33137": 79.9220840099, + "33138": 80.0896877319, + "33139": 80.2561921993, + "33140": 80.4216188511, + "33141": 80.5859859775, + "33142": 80.7493089254, + "33143": 80.9116003075, + "33144": 81.0728702154, + "33145": 81.2331264352, + "33146": 81.3923746625, + "33147": 81.5506187181, + "33148": 81.7078607607, + "33149": 81.8641014975, + "33150": 82.0193403896, + "33151": 82.1735758528, + "33152": 82.3268054518, + "33153": 82.4790260877, + "33154": 82.6302341768, + "33155": 82.7804258211, + "33156": 82.9295969694, + "33157": 83.0777435681, + "33158": 83.2248617017, + "33159": 83.3709477221, + "33160": 83.5159983665, + "33161": 83.6600108641, + "33162": 83.8029830301, + "33163": 83.9449133485, + "33164": 84.0858010423, + "33165": 84.2256461323, + "33166": 84.364449483, + "33167": 84.5022128375, + "33168": 84.6389388407, + "33169": 84.774631051, + "33170": 84.9092939412, + "33171": 85.0429328891, + "33172": 85.1755541581, + "33173": 85.307164868, + "33174": 85.4377729576, + "33175": 85.5673871381, + "33176": 85.6960168404, + "33177": 85.823672154, + "33178": 85.9503637614, + "33179": 86.0761028658, + "33180": 86.2009011153, + "33181": 86.3247705231, + "33182": 86.4477233852, + "33183": 86.5697721956, + "33184": 86.6909295607, + "33185": 86.8112081135, + "33186": 86.9306204283, + "33187": 87.0491789362, + "33188": 87.1668958435, + "33189": 87.2837830525, + "33190": 87.3998520856, + "33191": 87.5151140139, + "33192": 87.6295793906, + "33193": 87.7432581897, + "33194": 87.8561597503, + "33195": 87.9682927276, + "33196": 88.0796650501, + "33197": 88.190283884, + "33198": 88.3001556048, + "33199": 88.4092857761, + "33200": 88.5176791358, + "33201": 88.6253395901, + "33202": 88.7322702146, + "33203": 88.8384732622, + "33204": 88.9439501797, + "33205": 89.0487016291, + "33206": 89.1527275173, + "33207": 89.256027031, + "33208": 89.3585986776, + "33209": 89.4604403315, + "33210": 89.5615492852, + "33211": 89.6619223047, + "33212": 89.7615556884, + "33213": 89.8604453294, + "33214": 89.9585867807, + "33215": 90.0559753212, + "33216": 90.1526060242, + "33217": 90.2484738257, + "33218": 90.3435735939, + "33219": 90.4379001963, + "33220": 90.5314485681, + "33221": 90.6242137767, + "33222": 90.7161910855, + "33223": 90.8073760144, + "33224": 90.8977643972, + "33225": 90.9873524351, + "33226": 91.0761367473, + "33227": 91.1641144153, + "33228": 91.2512830248, + "33229": 91.3376407007, + "33230": 91.4231861378, + "33231": 91.5079186263, + "33232": 91.5918380713, + "33233": 91.6749450068, + "33234": 91.7572406039, + "33235": 91.8387266737, + "33236": 91.9194056638, + "33237": 91.9992806495, + "33238": 92.0783553197, + "33239": 92.1566339564, + "33240": 92.23412141, + "33241": 92.3108230685, + "33242": 92.3867448219, + "33243": 92.4618930227, + "33244": 92.5362744409, + "33245": 92.6098962149, + "33246": 92.6827657994, + "33247": 92.7548909088, + "33248": 92.8262794576, + "33249": 92.8969394983, + "33250": 92.966879156, + "33251": 93.036106562, + "33252": 93.1046297845, + "33253": 93.1724567586, + "33254": 93.2395952157, + "33255": 93.3060526116, + "33256": 93.371836055, + "33257": 93.4369522367, + "33258": 93.5014073591, + "33259": 93.5652070672, + "33260": 93.6283563813, + "33261": 93.6908596317, + "33262": 93.7527203965, + "33263": 93.8139414414, + "33264": 93.8745246637, + "33265": 93.9344710398, + "33266": 93.9937805766, + "33267": 94.0524522679, + "33268": 94.1104840548, + "33269": 94.167872792, + "33270": 94.2246142185, + "33271": 94.280702935, + "33272": 94.336132386, + "33273": 94.3908948481, + "33274": 94.4449814249, + "33275": 94.4983820468, + "33276": 94.551085478, + "33277": 94.6030793288, + "33278": 94.6543500744, + "33279": 94.7048830791, + "33280": 94.7546626268, + "33281": 94.8036719564, + "33282": 94.8518933029, + "33283": 94.8993079434, + "33284": 94.9458962476, + "33285": 94.9916377332, + "33286": 95.036511124, + "33287": 95.0804944133, + "33288": 95.1235649286, + "33289": 95.1656994004, + "33290": 95.206874032, + "33291": 95.247064572, + "33292": 95.2862463872, + "33293": 95.3243945369, + "33294": 95.3614838471, + "33295": 95.3974889845, + "33296": 95.4323845301, + "33297": 95.4661450518, + "33298": 95.4987451753, + "33299": 95.5301596533, + "33300": 95.5603634327, + "33301": 95.5893317193, + "33302": 95.6170400396, + "33303": 95.6434643003, + "33304": 95.6685794153, + "33305": 95.6923625058, + "33306": 95.7147927894, + "33307": 95.7358486862, + "33308": 95.7555066738, + "33309": 95.7737471086, + "33310": 95.7905496118, + "33311": 95.8058949337, + "33312": 95.8197642101, + "33313": 95.8321402943, + "33314": 95.8430057771, + "33315": 95.8523449693, + "33316": 95.8601421583, + "33317": 95.8663833526, + "33318": 95.8710545991, + "33319": 95.8741436529, + "33320": 95.8756383671, + "33321": 95.8760465091, + "33322": 95.8760757992, + "33323": 95.8761469819, + "33324": 95.8762064307, + "33325": 95.8762882684, + "33326": 95.8763442147, + "33327": 95.8764229343, + "33328": 95.8764765869, + "33329": 95.8765519267, + "33330": 95.8766032682, + "33331": 95.8766751656, + "33332": 95.8767241596, + "33333": 95.8767925787, + "33334": 95.876839201, + "33335": 95.876904126, + "33336": 95.8769483663, + "33337": 95.8770098014, + "33338": 95.8770516625, + "33339": 95.8771096309, + "33340": 95.8771491289, + "33341": 95.877203672, + "33342": 95.8772408352, + "33343": 95.8772920116, + "33344": 95.8773268801, + "33345": 95.8773747641, + "33346": 95.8774073886, + "33347": 95.8774520686, + "33348": 95.8774825095, + "33349": 95.8775240867, + "33350": 95.8775524129, + "33351": 95.8775909991, + "33352": 95.877617287, + "33353": 95.8776530031, + "33354": 95.877677335, + "33355": 95.8777103092, + "33356": 95.8777327726, + "33357": 95.8777631382, + "33358": 95.877783824, + "33359": 95.8778117183, + "33360": 95.8778307199, + "33361": 95.877856282, + "33362": 95.8778736944, + "33363": 95.8778970639, + "33364": 95.8779129822, + "33365": 95.8779342979, + "33366": 95.8779488166, + "33367": 95.877968215, + "33368": 95.8779814273, + "33369": 95.8779990417, + "33370": 95.8780110384, + "33371": 95.878026998, + "33372": 95.878037867, + "33373": 95.8780522959, + "33374": 95.8780621219, + "33375": 95.8780751388, + "33376": 95.8780840026, + "33377": 95.87809572, + "33378": 95.8781036984, + "33379": 95.8781142227, + "33380": 95.878121388, + "33381": 95.878130819, + "33382": 95.8781372393, + "33383": 95.8781456703, + "33384": 95.878151409, + "33385": 95.8781589267, + "33386": 95.8781640429, + "33387": 95.8781707277, + "33388": 95.8781752761, + "33389": 95.8781812021, + "33390": 95.8781852333, + "33391": 95.8781904687, + "33392": 95.8781940291, + "33393": 95.8781986363, + "33394": 95.8782017685, + "33395": 95.8782058049, + "33396": 95.8782085479, + "33397": 95.8782120656, + "33398": 95.8782144549, + "33399": 95.8782175018, + "33400": 95.8782195699, + "33401": 95.8782221892, + "33402": 95.8782239656, + "33403": 95.8782261969, + "33404": 95.8782277087, + "33405": 95.878224363, + "33406": 95.878221477, + "33407": 95.8781102161, + "33408": 95.8780219513, + "33409": 95.8779042439, + "33410": 95.8778202518, + "33411": 95.8777052658, + "33412": 95.8776235876, + "33413": 95.8775116981, + "33414": 95.8774322434, + "33415": 95.8773234444, + "33416": 95.8772461937, + "33417": 95.8771404585, + "33418": 95.8770653918, + "33419": 95.8769626876, + "33420": 95.8768897845, + "33421": 95.8767900718, + "33422": 95.8767616061, + "33423": 95.8766986273, + "33424": 95.8766699711, + "33425": 95.876601609, + "33426": 95.8765666673, + "33427": 95.8764964474, + "33428": 95.8764575846, + "33429": 95.8763859227, + "33430": 95.8763433003, + "33431": 95.8762703198, + "33432": 95.8762241439, + "33433": 95.8761499508, + "33434": 95.876100424, + "33435": 95.8760251173, + "33436": 95.8759724369, + "33437": 95.8758961098, + "33438": 95.8758404678, + "33439": 95.8757632076, + "33440": 95.8756381585, + "33441": 95.8753258235, + "33442": 95.8744621966, + "33443": 95.8726282644, + "33444": 95.8694257398, + "33445": 95.8644763911, + "33446": 95.8574222981, + "33447": 95.8479258549, + "33448": 95.8356697567, + "33449": 95.8203569272, + "33450": 95.8017104002, + "33451": 95.7794731548, + "33452": 95.7534079084, + "33453": 95.7232968705, + "33454": 95.6889414596, + "33455": 95.6501619852, + "33456": 95.6067972994, + "33457": 95.5587044183, + "33458": 95.505758117, + "33459": 95.4478504998, + "33460": 95.3848905475, + "33461": 95.3168036457, + "33462": 95.2435310924, + "33463": 95.165029591, + "33464": 95.081270727, + "33465": 94.9922404327, + "33466": 94.8979384392, + "33467": 94.7983777197, + "33468": 94.6935839238, + "33469": 94.5835948051, + "33470": 94.4684596432, + "33471": 94.3482386624, + "33472": 94.223002447, + "33473": 94.0928313562, + "33474": 93.9578149391, + "33475": 93.8180513508, + "33476": 93.6736467723, + "33477": 93.5247148339, + "33478": 93.3713760452, + "33479": 93.2137572312, + "33480": 93.0519909777, + "33481": 92.8862150856, + "33482": 92.7165720369, + "33483": 92.5432084722, + "33484": 92.366274683, + "33485": 92.1859241175, + "33486": 92.0023129033, + "33487": 91.8155993869, + "33488": 91.6259436911, + "33489": 91.4335072928, + "33490": 91.2384526193, + "33491": 91.0409426672, + "33492": 90.8411406418, + "33493": 90.6392096201, + "33494": 90.435312236, + "33495": 90.2296103889, + "33496": 90.0222649765, + "33497": 89.8134356513, + "33498": 89.6032806007, + "33499": 89.3919563512, + "33500": 89.1796175962, + "33501": 88.9664170467, + "33502": 88.7525053052, + "33503": 88.5380307607, + "33504": 88.323139506, + "33505": 88.1079752745, + "33506": 87.8926793963, + "33507": 87.6773907732, + "33508": 87.4622458691, + "33509": 87.2473787177, + "33510": 87.0329209423, + "33511": 86.81900179, + "33512": 86.6057481755, + "33513": 86.393284735, + "33514": 86.1817338878, + "33515": 85.9712159033, + "33516": 85.7618489735, + "33517": 85.5537492875, + "33518": 85.3470311072, + "33519": 85.1418068424, + "33520": 84.9381871247, + "33521": 84.7362808768, + "33522": 84.5361953771, + "33523": 84.3380363188, + "33524": 84.1419078605, + "33525": 83.9479126687, + "33526": 83.7561519503, + "33527": 83.5667254747, + "33528": 83.3797315841, + "33529": 83.1952671928, + "33530": 83.0134277719, + "33531": 82.8343073233, + "33532": 82.6579983384, + "33533": 82.4845917449, + "33534": 82.3141768393, + "33535": 82.1468412062, + "33536": 81.9826706251, + "33537": 81.8217489646, + "33538": 81.6641580638, + "33539": 81.5099776034, + "33540": 81.3592849656, + "33541": 81.2121550848, + "33542": 81.068660289, + "33543": 80.9288701347, + "33544": 80.7928512343, + "33545": 80.6606670799, + "33546": 80.5323778621, + "33547": 80.4080402876, + "33548": 80.2877073956, + "33549": 80.1714283755, + "33550": 80.0592483863, + "33551": 79.9512083808, + "33552": 79.8473449352, + "33553": 79.7476900858, + "33554": 79.6522711745, + "33555": 79.5611107051, + "33556": 79.4742262113, + "33557": 79.3916301382, + "33558": 79.3133297384, + "33559": 79.2393269849, + "33560": 79.1696185006, + "33561": 79.104195507, + "33562": 79.0430437922, + "33563": 78.9861436994, + "33564": 78.9334701366, + "33565": 78.8849926083, + "33566": 78.8406752693, + "33567": 78.8004770011, + "33568": 78.7643515113, + "33569": 78.7322474555, + "33570": 78.7041085814, + "33571": 78.6798738955, + "33572": 78.6594778509, + "33573": 78.6428505563, + "33574": 78.6299180042, + "33575": 78.6206023188, + "33576": 78.6148220203, + "33577": 78.6124923069, + "33578": 78.6120983372, + "33579": 78.6120719655, + "33580": 78.6120598113, + "33581": 78.612034411, + "33582": 78.6120223912, + "33583": 78.6119968288, + "33584": 78.6119845737, + "33585": 78.6119589219, + "33586": 78.6119464209, + "33587": 78.6119206836, + "33588": 78.6119079481, + "33589": 78.6118821307, + "33590": 78.6118691805, + "33591": 78.6118432926, + "33592": 78.6118301549, + "33593": 78.6118042105, + "33594": 78.6117909195, + "33595": 78.6117649366, + "33596": 78.6117515332, + "33597": 78.6117255336, + "33598": 78.6117120643, + "33599": 78.6116860731, + "33600": 78.611672589, + "33601": 78.6116466343, + "33602": 78.61163319, + "33603": 78.6116073021, + "33604": 78.6115939545, + "33605": 78.6115681652, + "33606": 78.6115549723, + "33607": 78.6115293142, + "33608": 78.6115163334, + "33609": 78.6114908392, + "33610": 78.6114781261, + "33611": 78.6114528276, + "33612": 78.6114404346, + "33613": 78.6114153622, + "33614": 78.6114033369, + "33615": 78.6113785185, + "33616": 78.6113669027, + "33617": 78.6113423631, + "33618": 78.6113311913, + "33619": 78.6113069516, + "33620": 78.6112962502, + "33621": 78.6112723266, + "33622": 78.611262113, + "33623": 78.611238517, + "33624": 78.6112287985, + "33625": 78.6112055358, + "33626": 78.6111963095, + "33627": 78.6111733798, + "33628": 78.6111646318, + "33629": 78.6111433916, + "33630": 78.6111361985, + "33631": 78.6111153933, + "33632": 78.6110940016, + "33633": 78.6110605341, + "33634": 78.6110517418, + "33635": 78.6110316242, + "33636": 78.6110102514, + "33637": 78.6109767998, + "33638": 78.6109531177, + "33639": 78.6109198587, + "33640": 78.6108961778, + "33641": 78.6108629863, + "33642": 78.6108393498, + "33643": 78.6108062426, + "33644": 78.6107826677, + "33645": 78.610749668, + "33646": 78.6107261717, + "33647": 78.6106933038, + "33648": 78.6106699032, + "33649": 78.6106371914, + "33650": 78.6106286766, + "33651": 78.6106091933, + "33652": 78.6105883447, + "33653": 78.6105558576, + "33654": 78.6105466575, + "33655": 78.6105268053, + "33656": 78.61051934, + "33657": 78.6104991065, + "33658": 78.6104910739, + "33659": 78.6104692528, + "33660": 78.6104595154, + "33661": 78.610437236, + "33662": 78.6104267978, + "33663": 78.6104041448, + "33664": 78.6103929367, + "33665": 78.6103698853, + "33666": 78.6103578703, + "33667": 78.6103343984, + "33668": 78.6103215532, + "33669": 78.6102976456, + "33670": 78.6102839597, + "33671": 78.6102596089, + "33672": 78.610245085, + "33673": 78.6102202911, + "33674": 78.6102049452, + "33675": 78.6101797157, + "33676": 78.6101635763, + "33677": 78.6101379263, + "33678": 78.6101210345, + "33679": 78.610094986, + "33680": 78.6100773938, + "33681": 78.6100509756, + "33682": 78.6100327455, + "33683": 78.6100059924, + "33684": 78.6099871959, + "33685": 78.609960148, + "33686": 78.6099169861, + "33687": 78.6098723734, + "33688": 78.6098282757, + "33689": 78.6097837484, + "33690": 78.6097390186, + "33691": 78.6096940847, + "33692": 78.6096489914, + "33693": 78.6096037745, + "33694": 78.6095584716, + "33695": 78.6095131201, + "33696": 78.6094677572, + "33697": 78.6094224195, + "33698": 78.6093771434, + "33699": 78.6093319645, + "33700": 78.6092869175, + "33701": 78.6092420363, + "33702": 78.6091973537, + "33703": 78.6091529012, + "33704": 78.6091087077, + "33705": 78.6090647874, + "33706": 78.6090211361, + "33707": 78.6089777413, + "33708": 78.6089345883, + "33709": 78.6088916607, + "33710": 78.6088489405, + "33711": 78.6088064074, + "33712": 78.6087640396, + "33713": 78.6087218131, + "33714": 78.6086797022, + "33715": 78.6086376789, + "33716": 78.6085957135, + "33717": 78.6085537744, + "33718": 78.6085118279, + "33719": 78.6084698384, + "33720": 78.6084277688, + "33721": 78.6083855798, + "33722": 78.6083432306, + "33723": 78.6083006788, + "33724": 78.6082578803, + "33725": 78.6082147897, + "33726": 78.6081713602, + "33727": 78.6081275436, + "33728": 78.6080832908, + "33729": 78.6080385515, + "33730": 78.6079932748, + "33731": 78.6079474088, + "33732": 78.6079009011, + "33733": 78.6078536989, + "33734": 78.6077785203, + "33735": 78.6076017644, + "33736": 78.6072248344, + "33737": 78.6065422877, + "33738": 78.6054438547, + "33739": 78.6038143239, + "33740": 78.6015338803, + "33741": 78.5984783804, + "33742": 78.5945196642, + "33743": 78.5895258837, + "33744": 78.5833618488, + "33745": 78.5758893892, + "33746": 78.5669677303, + "33747": 78.556453881, + "33748": 78.5442030317, + "33749": 78.5300689606, + "33750": 78.513904446, + "33751": 78.4955616828, + "33752": 78.4748927013, + "33753": 78.4517497854, + "33754": 78.4259858901, + "33755": 78.3974550535, + "33756": 78.366012805, + "33757": 78.3315165641, + "33758": 78.2938260313, + "33759": 78.2528035672, + "33760": 78.2083145594, + "33761": 78.1602277755, + "33762": 78.1084157003, + "33763": 78.0527548574, + "33764": 77.9931261117, + "33765": 77.9294149548, + "33766": 77.86151177, + "33767": 77.7893120768, + "33768": 77.7127167555, + "33769": 77.6316322494, + "33770": 77.5459707463, + "33771": 77.4556503369, + "33772": 77.3605951524, + "33773": 77.2607354786, + "33774": 77.1560078491, + "33775": 77.046355116, + "33776": 76.9317264993, + "33777": 76.8120776149, + "33778": 76.6873704823, + "33779": 76.5575735113, + "33780": 76.42266147, + "33781": 76.2826154334, + "33782": 76.1374227138, + "33783": 75.9870767745, + "33784": 75.8315771263, + "33785": 75.6709292091, + "33786": 75.5051442586, + "33787": 75.3342391596, + "33788": 75.1582362871, + "33789": 74.9771633362, + "33790": 74.791053141, + "33791": 74.5999434862, + "33792": 74.4038769092, + "33793": 74.2029004974, + "33794": 73.9970656791, + "33795": 73.7864280115, + "33796": 73.5710469656, + "33797": 73.3509857108, + "33798": 73.1263108988, + "33799": 72.8970924498, + "33800": 72.6634033421, + "33801": 72.4253194051, + "33802": 72.182919119, + "33803": 71.9362834216, + "33804": 71.6854955234, + "33805": 71.4306407325, + "33806": 71.1718062911, + "33807": 70.9090812233, + "33808": 70.6425561979, + "33809": 70.3723234041, + "33810": 70.0984764434, + "33811": 69.8211102383, + "33812": 69.5403209571, + "33813": 69.2562059575, + "33814": 68.9688637472, + "33815": 68.6783939644, + "33816": 68.3848973762, + "33817": 68.0884758962, + "33818": 67.7892326203, + "33819": 67.4872718817, + "33820": 67.1826993229, + "33821": 66.8756219852, + "33822": 66.5661484145, + "33823": 66.254388782, + "33824": 65.9404550194, + "33825": 65.6244609658, + "33826": 65.3065225262, + "33827": 64.9867578384, + "33828": 64.6652874477, + "33829": 64.3422344863, + "33830": 64.0177248557, + "33831": 63.6918874095, + "33832": 63.3648541351, + "33833": 63.0367603301, + "33834": 62.7077447728, + "33835": 62.3779498834, + "33836": 62.0475218731, + "33837": 61.7166108795, + "33838": 61.3853710849, + "33839": 61.0539608163, + "33840": 60.7225426236, + "33841": 60.3912833356, + "33842": 60.0603540898, + "33843": 59.7299303362, + "33844": 59.4001918125, + "33845": 59.0713224895, + "33846": 58.7435104857, + "33847": 58.4169479508, + "33848": 58.0918309167, + "33849": 57.7683591159, + "33850": 57.4467357679, + "33851": 57.127167333, + "33852": 56.8098632352, + "33853": 56.495035553, + "33854": 56.1828986822, + "33855": 55.8736689689, + "33856": 55.5675643167, + "33857": 55.2648037688, + "33858": 54.9656070673, + "33859": 54.6701941924, + "33860": 54.3787848831, + "33861": 54.0915981435, + "33862": 53.8088517361, + "33863": 53.5307616655, + "33864": 53.2575416563, + "33865": 52.9894026273, + "33866": 52.7265521656, + "33867": 52.4691940035, + "33868": 52.2175275027, + "33869": 51.9717471471, + "33870": 51.7320420484, + "33871": 51.4985954678, + "33872": 51.2715843565, + "33873": 51.0511789175, + "33874": 50.8375421927, + "33875": 50.6308296761, + "33876": 50.4311889582, + "33877": 50.2387594007, + "33878": 50.0536718473, + "33879": 49.8760483691, + "33880": 49.7060020489, + "33881": 49.543636805, + "33882": 49.3890472553, + "33883": 49.242318624, + "33884": 49.1035266903, + "33885": 48.9727377814, + "33886": 48.8500088084, + "33887": 48.7353873457, + "33888": 48.6289117553, + "33889": 48.5306113519, + "33890": 48.4405066118, + "33891": 48.3586094223, + "33892": 48.2849233703, + "33893": 48.2194440692, + "33894": 48.1621595216, + "33895": 48.1130505155, + "33896": 48.0720910516, + "33897": 48.039248798, + "33898": 48.014485571, + "33899": 47.997757836, + "33900": 47.9890172267, + "33901": 47.986543527, + "33902": 47.9863953025, + "33903": 47.9864075691, + "33904": 47.9863797231, + "33905": 47.9863650355, + "33906": 47.9863426255, + "33907": 47.9863268766, + "33908": 47.986304709, + "33909": 47.9862889353, + "33910": 47.9862667997, + "33911": 47.9862510409, + "33912": 47.9862289263, + "33913": 47.9862131822, + "33914": 47.986191086, + "33915": 47.9861753549, + "33916": 47.9861532749, + "33917": 47.9861375555, + "33918": 47.9861154901, + "33919": 47.9860997812, + "33920": 47.9860777982, + "33921": 47.9860621397, + "33922": 47.9860423173, + "33923": 47.9860283601, + "33924": 47.9860087254, + "33925": 47.9859947359, + "33926": 47.9859751267, + "33927": 47.9859611466, + "33928": 47.9859415602, + "33929": 47.9859275951, + "33930": 47.9859080378, + "33931": 47.9858940923, + "33932": 47.9858745719, + "33933": 47.9858606515, + "33934": 47.9858411765, + "33935": 47.9858272873, + "33936": 47.985807867, + "33937": 47.9857940155, + "33938": 47.9857746592, + "33939": 47.9857608522, + "33940": 47.9857415692, + "33941": 47.9857278133, + "33942": 47.9857086125, + "33943": 47.9856949139, + "33944": 47.9856758032, + "33945": 47.9856621675, + "33946": 47.9856431538, + "33947": 47.9856295858, + "33948": 47.9856106741, + "33949": 47.9855971775, + "33950": 47.9855783716, + "33951": 47.985564949, + "33952": 47.9855462507, + "33953": 47.9855329035, + "33954": 47.9855143131, + "33955": 47.9855010414, + "33956": 47.9854825574, + "33957": 47.9854693604, + "33958": 47.9854509801, + "33959": 47.9854378559, + "33960": 47.9854195756, + "33961": 47.9854065217, + "33962": 47.9853883371, + "33963": 47.9853753505, + "33964": 47.985357257, + "33965": 47.9853443346, + "33966": 47.9853263277, + "33967": 47.9853134666, + "33968": 47.9852955424, + "33969": 47.9852827399, + "33970": 47.9852648951, + "33971": 47.9852521492, + "33972": 47.9852343817, + "33973": 47.9852216909, + "33974": 47.9852039995, + "33975": 47.9851913633, + "33976": 47.985173748, + "33977": 47.9851611664, + "33978": 47.9851436282, + "33979": 47.9851311019, + "33980": 47.9851136425, + "33981": 47.9851011727, + "33982": 47.9850837947, + "33983": 47.9850713831, + "33984": 47.9850540893, + "33985": 47.9850417378, + "33986": 47.9850245317, + "33987": 47.9850122425, + "33988": 47.9849951281, + "33989": 47.9849829037, + "33990": 47.9849658862, + "33991": 47.9849537301, + "33992": 47.9849368166, + "33993": 47.9849247333, + "33994": 47.9849079341, + "33995": 47.9848959308, + "33996": 47.9848792617, + "33997": 47.9848673491, + "33998": 47.9848508334, + "33999": 47.9848390282, + "34000": 0.0000015587, + "34001": 0.0000037637, + "34002": 0.0000016985, + "34003": 0.0000041471, + "34004": 0.0000018798, + "34005": 0.0000046361, + "34006": 0.0000021118, + "34007": 0.0000042415, + "34008": 0.0000019375, + "34009": 0.0000049074, + "34010": 0.0000022461, + "34011": 0.0000057424, + "34012": 0.0000026337, + "34013": 0.0000067874, + "34014": 0.0000031186, + "34015": 0.0000080897, + "34016": 0.0000037223, + "34017": 0.0000097054, + "34018": 0.0000044707, + "34019": 0.0000117008, + "34020": 0.000005394, + "34021": 0.0000141524, + "34022": 0.000006527, + "34023": 0.0000171474, + "34024": 0.0000079094, + "34025": 0.0000207837, + "34026": 0.0000095853, + "34027": 0.0000251692, + "34028": 0.0000116036, + "34029": 0.0000304207, + "34030": 0.0000140165, + "34031": 0.0000366621, + "34032": 0.0000168797, + "34033": 0.0000005871, + "34034": 0.0000007112, + "34035": 0.0000007692, + "34036": 0.0000008308, + "34037": 0.0000008956, + "34038": 0.0000009635, + "34039": 0.0000010342, + "34040": 0.0000011078, + "34041": 0.000001184, + "34042": 0.0000012628, + "34043": 0.0000013438, + "34044": 0.0000014271, + "34045": 0.0000015123, + "34046": 0.0000015993, + "34047": 0.0000016879, + "34048": 0.000001778, + "34049": 0.0000018693, + "34050": 0.0000019616, + "34051": 0.0000020547, + "34052": 0.0000021484, + "34053": 0.0000022426, + "34054": 0.000002337, + "34055": 0.0000024315, + "34056": 0.0000025259, + "34057": 0.00000262, + "34058": 0.0000027136, + "34059": 0.0000028066, + "34060": 0.0000028988, + "34061": 0.0000029902, + "34062": 0.0000030805, + "34063": 0.0000031697, + "34064": 0.0000032576, + "34065": 0.0000033442, + "34066": 0.0000034293, + "34067": 0.0000035129, + "34068": 0.0000035949, + "34069": 0.0000036752, + "34070": 0.0000037538, + "34071": 0.0000038307, + "34072": 0.0000039057, + "34073": 0.0000039789, + "34074": 0.0000040503, + "34075": 0.0000041199, + "34076": 0.0000041875, + "34077": 0.0000042533, + "34078": 0.0000043173, + "34079": 0.0000043793, + "34080": 0.0000044395, + "34081": 0.0000044979, + "34082": 0.0000045545, + "34083": 0.0000046094, + "34084": 0.0000046624, + "34085": 0.0000047138, + "34086": 0.0000047634, + "34087": 0.0000048115, + "34088": 0.0000048579, + "34089": 0.0000049027, + "34090": 0.000004946, + "34091": 0.0000049879, + "34092": 0.0000050283, + "34093": 0.0000050672, + "34094": 0.0000051049, + "34095": 0.0000051411, + "34096": 0.0000051761, + "34097": 0.0000052099, + "34098": 0.0000052424, + "34099": 0.0000052737, + "34100": 0.0000053038, + "34101": 0.0000053328, + "34102": 0.0000053607, + "34103": 0.0000053874, + "34104": 0.0000054131, + "34105": 0.0000054378, + "34106": 0.0000054614, + "34107": 0.0000054839, + "34108": 0.0000055055, + "34109": 0.0000055261, + "34110": 0.0000055457, + "34111": 0.0000055643, + "34112": 0.000005582, + "34113": 0.0000055994, + "34114": 0.0000056168, + "34115": 0.0000056341, + "34116": 0.0000056514, + "34117": 0.0000056687, + "34118": 0.0000056859, + "34119": 0.0000057031, + "34120": 0.0000057202, + "34121": 0.0000057373, + "34122": 0.0000057543, + "34123": 0.0000057712, + "34124": 0.000005788, + "34125": 0.0000058047, + "34126": 0.0000058213, + "34127": 0.0000058378, + "34128": 0.0000058541, + "34129": 0.0000058703, + "34130": 0.0000058864, + "34131": 0.0000059023, + "34132": 0.000005918, + "34133": 0.0000059335, + "34134": 0.0000059489, + "34135": 0.000005964, + "34136": 0.000005979, + "34137": 0.0000059937, + "34138": 0.0000060082, + "34139": 0.0000060225, + "34140": 0.0000060365, + "34141": 0.0000060503, + "34142": 0.0000060639, + "34143": 0.0000060772, + "34144": 0.0000060902, + "34145": 0.000006103, + "34146": 0.0000061156, + "34147": 0.0000061279, + "34148": 0.0000061399, + "34149": 0.0000061518, + "34150": 0.0000061634, + "34151": 0.0000061747, + "34152": 0.0000061859, + "34153": 0.0000061969, + "34154": 0.0000062077, + "34155": 0.0000062183, + "34156": 0.0000062287, + "34157": 0.000006239, + "34158": 0.0000062491, + "34159": 0.0000062592, + "34160": 0.0000062691, + "34161": 0.0000062789, + "34162": 0.0000062887, + "34163": 0.0000062984, + "34164": 0.000006308, + "34165": 0.0000063176, + "34166": 0.0000063272, + "34167": 0.0000063368, + "34168": 0.0000063464, + "34169": 0.000006356, + "34170": 0.0000063656, + "34171": 0.0000063753, + "34172": 0.0000063851, + "34173": 0.0000063949, + "34174": 0.0000064047, + "34175": 0.0000064147, + "34176": 0.0000064248, + "34177": 0.0000064349, + "34178": 0.0000064451, + "34179": 0.0000064555, + "34180": 0.000006466, + "34181": 0.0000064765, + "34182": 0.0000064872, + "34183": 0.000006498, + "34184": 0.0000065089, + "34185": 0.0000065199, + "34186": 0.000006531, + "34187": 0.0000065422, + "34188": 0.0000065535, + "34189": 0.0000065649, + "34190": 0.0000065763, + "34191": 0.0000065878, + "34192": 0.0000065993, + "34193": 0.0000066109, + "34194": 0.0000066224, + "34195": 0.000006634, + "34196": 0.0000066455, + "34197": 0.0000066571, + "34198": 0.0000066685, + "34199": 0.00000668, + "34200": 0.0000066913, + "34201": 0.0000067026, + "34202": 0.0000067138, + "34203": 0.0000067248, + "34204": 0.0000067358, + "34205": 0.0000067466, + "34206": 0.0000067572, + "34207": 0.0000067677, + "34208": 0.000006778, + "34209": 0.0000067882, + "34210": 0.0000067981, + "34211": 0.0000068078, + "34212": 0.0000068173, + "34213": 0.0000068265, + "34214": 0.0000068356, + "34215": 0.0000068443, + "34216": 0.0000068529, + "34217": 0.0000068611, + "34218": 0.0000068691, + "34219": 0.0000068769, + "34220": 0.0000068844, + "34221": 0.0000068916, + "34222": 0.0000068986, + "34223": 0.0000069053, + "34224": 0.0000069118, + "34225": 0.000006918, + "34226": 0.000006924, + "34227": 0.0000069297, + "34228": 0.0000069352, + "34229": 0.0000069404, + "34230": 0.0000069454, + "34231": 0.0000069502, + "34232": 0.0000069548, + "34233": 0.0000069591, + "34234": 0.0000069632, + "34235": 0.0000069671, + "34236": 0.0000069708, + "34237": 0.0000069743, + "34238": 0.0000069776, + "34239": 0.0000069807, + "34240": 0.0000069836, + "34241": 0.0000069864, + "34242": 0.0000069889, + "34243": 0.0000069913, + "34244": 0.0000069935, + "34245": 0.0000069955, + "34246": 0.0000069974, + "34247": 0.000006999, + "34248": 0.0000070005, + "34249": 0.0000070018, + "34250": 0.0000070029, + "34251": 0.0000070038, + "34252": 0.0000070046, + "34253": 0.0000070051, + "34254": 0.0000070053, + "34255": 0.0000070054, + "34256": 0.0000070052, + "34257": 0.0000070047, + "34258": 0.000007004, + "34259": 0.0000070029, + "34260": 0.0000070016, + "34261": 0.0000069999, + "34262": 0.0000069979, + "34263": 0.0000069954, + "34264": 0.0000069926, + "34265": 0.0000069893, + "34266": 0.0000069856, + "34267": 0.0000069814, + "34268": 0.0000069767, + "34269": 0.0000069714, + "34270": 0.0000069655, + "34271": 0.0000069591, + "34272": 0.000006952, + "34273": 0.0000069442, + "34274": 0.0000069357, + "34275": 0.0000069265, + "34276": 0.0000069165, + "34277": 0.0000069058, + "34278": 0.0000068941, + "34279": 0.0000068817, + "34280": 0.0000068683, + "34281": 0.000006854, + "34282": 0.0000068387, + "34283": 0.0000068224, + "34284": 0.0000068051, + "34285": 0.0000067867, + "34286": 0.0000067673, + "34287": 0.0000067467, + "34288": 0.000006725, + "34289": 0.0000067022, + "34290": 0.0000066782, + "34291": 0.000006653, + "34292": 0.0000066266, + "34293": 0.0000065989, + "34294": 0.00000657, + "34295": 0.0000065399, + "34296": 0.0000065085, + "34297": 0.0000064758, + "34298": 0.0000064418, + "34299": 0.0000064065, + "34300": 0.0000063699, + "34301": 0.000006332, + "34302": 0.0000062928, + "34303": 0.0000062523, + "34304": 0.0027086036, + "34305": 0.0027002741, + "34306": 0.0011190384, + "34307": 0.0002043876, + "34308": 0.0028152063, + "34309": 0.0004246999, + "34310": 0.0023456358, + "34311": 0.0011914553, + "34312": 0.0025827199, + "34313": 0.0011294564, + "34314": 0.0024964167, + "34315": 0.0010903751, + "34316": 0.0024027227, + "34317": 0.0010490704, + "34318": 0.0023042076, + "34319": 0.0010056979, + "34320": 0.0022016195, + "34321": 0.0010086288, + "34322": 0.0020963791, + "34323": 0.0009310486, + "34324": 0.0019954289, + "34325": 0.000883496, + "34326": 0.0018850573, + "34327": 0.0008345748, + "34328": 0.0017739389, + "34329": 0.0007853389, + "34330": 0.0016628852, + "34331": 0.0007361629, + "34332": 0.0015527168, + "34333": 0.0006874064, + "34334": 0.0014442106, + "34335": 0.0006394098, + "34336": 0.0013380872, + "34337": 0.0005924878, + "34338": 0.0012349988, + "34339": 0.0005469252, + "34340": 0.0011355205, + "34341": 0.0005029721, + "34342": 0.0010401437, + "34343": 0.0004608422, + "34344": 0.0009492721, + "34345": 0.0004207102, + "34346": 0.0008632203, + "34347": 0.0003827119, + "34348": 0.000782215, + "34349": 0.0003469445, + "34350": 0.0007063978, + "34351": 0.000313468, + "34352": 0.0006358306, + "34353": 0.0002823076, + "34354": 0.0005705024, + "34355": 0.0002534566, + "34356": 0.0005103368, + "34357": 0.0002268801, + "34358": 0.0004552008, + "34359": 0.0002025183, + "34360": 0.0004049139, + "34361": 0.0001802911, + "34362": 0.0003592573, + "34363": 0.0001601016, + "34364": 0.0003179828, + "34365": 0.0001418402, + "34366": 0.000280821, + "34367": 0.0001253883, + "34368": 0.0002474896, + "34369": 0.0001106217, + "34370": 0.0002177, + "34371": 0.0000974136, + "34372": 0.0001911633, + "34373": 0.0000856374, + "34374": 0.0001675958, + "34375": 0.0000751683, + "34376": 0.0001467226, + "34377": 0.0000658859, + "34378": 0.0001282814, + "34379": 0.0000576752, + "34380": 0.0001120245, + "34381": 0.0000504277, + "34382": 0.0000977208, + "34383": 0.0000440418, + "34384": 0.0000851562, + "34385": 0.0000384238, + "34386": 0.0000741347, + "34387": 0.0000334878, + "34388": 0.0000644778, + "34389": 0.0000291553, + "34390": 0.0000560241, + "34391": 0.0000253556, + "34392": 0.0000486291, + "34393": 0.0000220252, + "34394": 0.0000421633, + "34395": 0.0000191072, + "34396": 0.0000365123, + "34397": 0.0000165513, + "34398": 0.0000315745, + "34399": 0.0000143129, + "34400": 0.0000272609, + "34401": 0.0000123526, + "34402": 0.0000234933, + "34403": 0.000010636, + "34404": 0.0000202031, + "34405": 0.0098949134, + "34406": -0.0000249681, + "34407": 0.2125924101, + "34408": -0.0008927013, + "34409": 0.2066543177, + "34410": -0.0008675975, + "34411": 0.2007760744, + "34412": -0.0008426533, + "34413": 0.1949691041, + "34414": -0.0008179353, + "34415": 0.1892402423, + "34416": -0.0007934918, + "34417": 0.1835958388, + "34418": -0.000769366, + "34419": 0.1780424532, + "34420": -0.0007455984, + "34421": 0.1725869203, + "34422": -0.0807827113, + "34423": 0.1675732534, + "34424": -0.0693270017, + "34425": 0.1676218243, + "34426": -0.0583097924, + "34427": 0.1624859893, + "34428": -0.0478062898, + "34429": 0.1574784579, + "34430": -0.0377655933, + "34431": 0.152607326, + "34432": -0.0281824815, + "34433": 0.147881027, + "34434": -0.019052997, + "34435": 0.1433079724, + "34436": -0.0103739833, + "34437": 0.1388963623, + "34438": -0.0021426411, + "34439": 0.1346539519, + "34440": 0.1317165818, + "34441": 0.4728918671, + "34442": 1.2463907606, + "34443": 2.4320738166, + "34444": 4.009627237, + "34445": 5.9586116556, + "34446": 8.2585247942, + "34447": 10.8888574301, + "34448": 13.8291468876, + "34449": 17.0590272602, + "34450": 20.5582766059, + "34451": 24.3068611548, + "34452": 28.2849766213, + "34453": 32.4730867075, + "34454": 36.851958897, + "34455": 41.402697636, + "34456": 46.1067750053, + "34457": 50.9460589848, + "34458": 55.9028394137, + "34459": 60.9598517453, + "34460": 66.100298696, + "34461": 71.3078698792, + "34462": 76.5667595149, + "34463": 81.8616822957, + "34464": 87.1778874864, + "34465": 92.5011713256, + "34466": 97.8178877908, + "34467": 103.1149577832, + "34468": 108.3798767758, + "34469": 113.6007209682, + "34470": 118.7661519785, + "34471": 123.8654200983, + "34472": 128.8883661345, + "34473": 133.8254218494, + "34474": 138.6676090138, + "34475": 143.4065370805, + "34476": 148.034399484, + "34477": 152.5439685723, + "34478": 156.9285891764, + "34479": 161.1821708227, + "34480": 165.2991786005, + "34481": 169.2746226958, + "34482": 173.10404661, + "34483": 176.7835140864, + "34484": 180.3095947746, + "34485": 183.6793486709, + "34486": 186.8903093809, + "34487": 189.9404662566, + "34488": 192.8282454746, + "34489": 195.5524901253, + "34490": 198.1124393966, + "34491": 200.5077069432, + "34492": 202.7382585405, + "34493": 204.8043891335, + "34494": 206.706699396, + "34495": 208.446071921, + "34496": 210.0236471744, + "34497": 211.440799346, + "34498": 212.699112234, + "34499": 213.8003553036, + "34500": 214.7464600625, + "34501": 215.5394968916, + "34502": 216.1816524735, + "34503": 216.6752079531, + "34504": 217.0225179626, + "34505": 217.2259906366, + "34506": 217.2880687358, + "34507": 217.2112119883, + "34508": 216.9978807511, + "34509": 216.650521079, + "34510": 216.1715512813, + "34511": 215.5633500292, + "34512": 214.8282460709, + "34513": 213.9685095896, + "34514": 212.9863452331, + "34515": 211.8838868254, + "34516": 210.6631937593, + "34517": 209.3262490534, + "34518": 207.8749590438, + "34519": 206.3111546708, + "34520": 204.6365943024, + "34521": 202.8529680297, + "34522": 200.9619033553, + "34523": 198.9649721875, + "34524": 196.863699041, + "34525": 194.659570339, + "34526": 192.3540447011, + "34527": 189.9485640974, + "34528": 187.4445657411, + "34529": 184.8434945902, + "34530": 182.1468163217, + "34531": 179.3560306437, + "34532": 176.4726848043, + "34533": 173.4983871594, + "34534": 170.4348206602, + "34535": 167.2837561211, + "34536": 164.0470651345, + "34537": 160.7267324982, + "34538": 157.3248680273, + "34539": 153.843717626, + "34540": 150.2856735007, + "34541": 146.6532833997, + "34542": 142.9492587761, + "34543": 139.1764817722, + "34544": 135.3380109373, + "34545": 131.4370855954, + "34546": 127.477128791, + "34547": 123.4617487506, + "34548": 119.3947388073, + "34549": 115.2800757475, + "34550": 111.1219165508, + "34551": 106.9245935059, + "34552": 102.6926076962, + "34553": 98.4306208635, + "34554": 94.1434456702, + "34555": 89.8360343928, + "34556": 85.5134660961, + "34557": 81.1809323443, + "34558": 76.8437215255, + "34559": 72.5072018748, + "34560": 68.176803294, + "34561": 63.8579980797, + "34562": 59.5562806805, + "34563": 55.2771466186, + "34564": 51.026070716, + "34565": 46.8084847792, + "34566": 42.6297549004, + "34567": 38.4951585418, + "34568": 34.4098615737, + "34569": 30.3788954415, + "34570": 26.4071346376, + "34571": 22.4992746568, + "34572": 18.6598106103, + "34573": 14.893016672, + "34574": 11.2029265272, + "34575": 7.5933149847, + "34576": 4.067680909, + "34577": 0.6292316179, + "34578": -0.0191582472, + "34579": 0.0608286817, + "34580": -0.0230632937, + "34581": 0.0605138742, + "34582": -0.0223941867, + "34583": 0.0601793473, + "34584": -0.0217205934, + "34585": 0.0598476332, + "34586": -0.0210580869, + "34587": 0.0595228512, + "34588": -0.0204229166, + "34589": 0.0592091508, + "34590": -0.0198313564, + "34591": 0.0589105975, + "34592": -0.0192992349, + "34593": 0.0586310461, + "34594": -0.0188414732, + "34595": 0.0583740203, + "34596": -0.0184716443, + "34597": 0.0581425975, + "34598": -0.018201563, + "34599": 0.0579393057, + "34600": -0.0180409217, + "34601": 0.0577660511, + "34602": -0.017996979, + "34603": 0.0576240451, + "34604": -0.0180743103, + "34605": 0.0575137534, + "34606": -0.018274626, + "34607": 0.0574348688, + "34608": -0.0185966604, + "34609": 0.0573863052, + "34610": -0.0190361329, + "34611": 0.0573662144, + "34612": -0.0195857824, + "34613": 0.0573720218, + "34614": -0.0202354697, + "34615": 0.057400482, + "34616": -0.0209723481, + "34617": 0.0574477506, + "34618": -0.0217810946, + "34619": 0.0575094699, + "34620": -0.0226441965, + "34621": 0.0575808659, + "34622": -0.0235422887, + "34623": 0.0576568527, + "34624": -0.0244545319, + "34625": 0.0577321425, + "34626": -0.025359027, + "34627": 0.0578013581, + "34628": -0.0262332568, + "34629": 0.0552808247, + "34630": -0.0270752793, + "34631": 0.0553414267, + "34632": -0.0002256573, + "34633": 0.0578071837, + "34634": -0.0284508869, + "34635": 0.0553895871, + "34636": -0.0002258704, + "34637": 0.0577582005, + "34638": -0.0002355475, + "34639": 0.0576850215, + "34640": -0.0002352524, + "34641": 0.0575750264, + "34642": -0.0002348045, + "34643": 0.0574258098, + "34644": -0.0002341941, + "34645": 0.0572356098, + "34646": -0.0002334137, + "34647": 0.0570033894, + "34648": -0.0002324592, + "34649": 0.056728867, + "34650": -0.0281818738, + "34651": 0.0540851077, + "34652": -0.0002205249, + "34653": 0.0560556199, + "34654": -0.0262999788, + "34655": 0.0533288561, + "34656": -0.0251169625, + "34657": 0.0528925432, + "34658": -0.0237587802, + "34659": 0.0548618884, + "34660": -0.0222413527, + "34661": 0.0543643342, + "34662": -0.0206237272, + "34663": 0.0538430835, + "34664": -0.0189086334, + "34665": 0.0533034159, + "34666": -0.0171204631, + "34667": 0.0527511182, + "34668": -0.0152851543, + "34669": 0.0521922843, + "34670": -0.0134296478, + "34671": 0.0516332144, + "34672": -0.0115813223, + "34673": 0.0510802862, + "34674": -0.0097674235, + "34675": 0.0505398139, + "34676": -0.0080145019, + "34677": 0.0500179136, + "34678": -0.0063478744, + "34679": 0.0495203718, + "34680": -0.0047911215, + "34681": 0.0490525166, + "34682": -0.0033656345, + "34683": 0.0486191012, + "34684": -0.0020902211, + "34685": 0.0482242041, + "34686": 0.0441978816, + "34687": 0.0444883183, + "34688": 0.0447789707, + "34689": 0.0450337824, + "34690": 0.0452519297, + "34691": 0.0454328676, + "34692": 0.04557625, + "34693": 0.045681888, + "34694": 0.0457497566, + "34695": 0.0457799914, + "34696": 0.0457728862, + "34697": 0.0457288892, + "34698": 0.045648599, + "34699": 0.0455327606, + "34700": 0.0453822603, + "34701": 0.0451981198, + "34702": 0.0449814894, + "34703": 0.0447336418, + "34704": 0.0444583597, + "34705": 0.0441807489, + "34706": 0.0439149317, + "34707": 0.0436630444, + "34708": 0.0434267641, + "34709": 0.0432079138, + "34710": 0.0430083529, + "34711": 0.0428299875, + "34712": 0.0426747566, + "34713": 0.0425446222, + "34714": 0.0424415592, + "34715": 0.0423675442, + "34716": 0.0423245453, + "34717": 0.0423145113, + "34718": 0.042339362, + "34719": 0.0424009761, + "34720": 0.0425011803, + "34721": 0.0426417393, + "34722": 0.0428243464, + "34723": 0.0430506132, + "34724": 0.0433220606, + "34725": 0.0436401095, + "34726": 0.0440060726, + "34727": 0.0444211469, + "34728": 0.0448864061, + "34729": 0.0454027942, + "34730": 0.0459711191, + "34731": 0.0465920479, + "34732": 0.047266103, + "34733": 0.0479936589, + "34734": 0.100292844, + "34735": 0.2505871448, + "34736": 0.5043945161, + "34737": 0.8670019048, + "34738": 1.3434664868, + "34739": 1.9385864233, + "34740": 2.6568791426, + "34741": 3.5025596491, + "34742": 4.4795205344, + "34743": 5.5913135027, + "34744": 6.8411325822, + "34745": 8.2317991079, + "34746": 9.7657485619, + "34747": 11.4450193393, + "34748": 13.2712434944, + "34749": 15.2456395057, + "34750": 17.3690070837, + "34751": 19.6417240295, + "34752": 22.0637451379, + "34753": 24.6346031226, + "34754": 27.3534115297, + "34755": 30.2188695885, + "34756": 33.2292689395, + "34757": 36.3825021661, + "34758": 39.6760730451, + "34759": 43.1071084244, + "34760": 46.6723716249, + "34761": 50.3682772573, + "34762": 54.1909073409, + "34763": 58.1360286032, + "34764": 62.1991108379, + "34765": 66.3753461966, + "34766": 70.6596692871, + "34767": 75.0467779523, + "34768": 79.5311546041, + "34769": 84.1070879881, + "34770": 88.7686952582, + "34771": 93.509944243, + "34772": 98.3246757899, + "34773": 103.2066260766, + "34774": 108.1494487857, + "34775": 113.1467370413, + "34776": 118.192045013, + "34777": 123.2789090977, + "34778": 128.4008685936, + "34779": 133.5514857881, + "34780": 138.7243653829, + "34781": 143.9131731894, + "34782": 149.1116540256, + "34783": 154.3136487559, + "34784": 159.5131104146, + "34785": 164.7041193607, + "34786": 169.8808974126, + "34787": 175.0378209163, + "34788": 180.1694327018, + "34789": 185.2704528868, + "34790": 190.3357884873, + "34791": 195.3605418011, + "34792": 200.3400175275, + "34793": 205.2697285937, + "34794": 210.1454006594, + "34795": 214.9629752746, + "34796": 219.7186116707, + "34797": 224.4086871658, + "34798": 229.0297961727, + "34799": 233.5787478039, + "34800": 238.0525620712, + "34801": 242.4484646852, + "34802": 246.7638804692, + "34803": 250.9964254077, + "34804": 255.1438973593, + "34805": 259.2042654758, + "34806": 263.1756583745, + "34807": 267.0563511267, + "34808": 270.8447511337, + "34809": 274.5393829739, + "34810": 278.1388723181, + "34811": 281.641929019, + "34812": 285.0473294954, + "34813": 288.3538985432, + "34814": 291.5604907145, + "34815": 294.6659714182, + "34816": 297.6691979042, + "34817": 300.5690003051, + "34818": 303.3641629102, + "34819": 306.0534058592, + "34820": 308.635367442, + "34821": 311.1085871965, + "34822": 313.4714899968, + "34823": 315.7223713174, + "34824": 317.8593838638, + "34825": 319.880525746, + "34826": 321.7836303673, + "34827": 323.5663581871, + "34828": 325.2261905068, + "34829": 326.7604254108, + "34830": 328.1661759769, + "34831": 329.4403708533, + "34832": 330.5797572764, + "34833": 331.5809065833, + "34834": 332.4402222483, + "34835": 333.1539504464, + "34836": 333.7181931255, + "34837": 334.1289235385, + "34838": 334.3820041639, + "34839": 334.4732069173, + "34840": 334.3982355283, + "34841": 334.1527499363, + "34842": 333.7323925327, + "34843": 333.1328160582, + "34844": 332.3497129417, + "34845": 331.3788458484, + "34846": 330.2160791926, + "34847": 328.8574113535, + "34848": 327.2990073256, + "34849": 325.5372315228, + "34850": 323.5686804551, + "34851": 321.3902149919, + "34852": 318.9989919283, + "34853": 316.3924945718, + "34854": 313.568562078, + "34855": 310.5254172693, + "34856": 307.2616926846, + "34857": 303.7764546219, + "34858": 300.0692249515, + "34859": 296.140000498, + "34860": 291.9892698058, + "34861": 287.6180271283, + "34862": 283.0277835017, + "34863": 278.2205747871, + "34864": 273.1989665906, + "34865": 267.9660559934, + "34866": 262.5254700493, + "34867": 256.8813610317, + "34868": 251.0383984337, + "34869": 245.0017577508, + "34870": 238.7771060952, + "34871": 232.3705847129, + "34872": 225.7887884968, + "34873": 219.0387426048, + "34874": 212.1278763125, + "34875": 205.0639942462, + "34876": 197.8552451567, + "34877": 190.5100884115, + "34878": 183.0372583932, + "34879": 175.4457270086, + "34880": 167.7446645203, + "34881": 159.9433989294, + "34882": 152.051374142, + "34883": 144.0781071676, + "34884": 136.0331446021, + "34885": 127.9260186603, + "34886": 119.7662030279, + "34887": 111.5630688131, + "34888": 103.3258408815, + "34889": 95.0635548665, + "34890": 86.7850151517, + "34891": 78.4987541243, + "34892": 70.2129930043, + "34893": 61.9356045517, + "34894": 53.6740779563, + "34895": 45.4354862127, + "34896": 37.2264562744, + "34897": 29.0531422807, + "34898": 20.9212021333, + "34899": 12.8357776936, + "34900": 4.801478851, + "34901": -0.0225401003, + "34902": 0.0386929248, + "34903": -0.0001601748, + "34904": 0.038546288, + "34905": -0.0001595753, + "34906": 0.0384972224, + "34907": -0.0001593689, + "34908": 0.0384527579, + "34909": -0.0001591785, + "34910": 0.0384129656, + "34911": -0.0001590043, + "34912": 0.038377728, + "34913": -0.0001588454, + "34914": 0.0383467122, + "34915": -0.0001587001, + "34916": 0.0383193557, + "34917": -0.0001585659, + "34918": 0.038294864, + "34919": -0.0001584389, + "34920": 0.0382722578, + "34921": -0.0001583057, + "34922": 0.0350160218, + "34923": -0.0001446401, + "34924": 0.0350894302, + "34925": -0.0001448918, + "34926": 0.0351657441, + "34927": -0.0001451486, + "34928": 0.0352424355, + "34929": -0.0001453997, + "34930": 0.0353168906, + "34931": -0.0001456342, + "34932": 0.0353864646, + "34933": -0.0001458412, + "34934": 0.035448598, + "34935": -0.0001460103, + "34936": 0.0355009349, + "34937": -0.0001461324, + "34938": 0.0355414284, + "34939": -0.0001461998, + "34940": 0.0355684364, + "34941": -0.0001462065, + "34942": 0.0355807985, + "34943": -0.0001461493, + "34944": 0.0355778006, + "34945": -0.0001460265, + "34946": 0.0355591877, + "34947": -0.0001458388, + "34948": 0.0355251342, + "34949": -0.0001455888, + "34950": 0.0354761784, + "34951": -0.0001452805, + "34952": 0.0354131358, + "34953": -0.000144919, + "34954": 0.0353369985, + "34955": -0.00014451, + "34956": 0.0352488368, + "34957": -0.0001440595, + "34958": 0.0351497105, + "34959": -0.0001435727, + "34960": 0.0350406001, + "34961": -0.0001430544, + "34962": 0.0349223673, + "34963": -0.0001425083, + "34964": 0.0347957418, + "34965": -0.0001419373, + "34966": 0.0346613517, + "34967": -0.0001413433, + "34968": 0.0345197888, + "34969": -0.0001407275, + "34970": 0.0343717053, + "34971": -0.0001400913, + "34972": 0.0342179331, + "34973": -0.0001394363, + "34974": 0.0340596156, + "34975": -0.0001387652, + "34976": 0.0338983357, + "34977": -0.0001380824, + "34978": 0.033736223, + "34979": -0.0001373943, + "34980": 0.0335760199, + "34981": -0.0001367098, + "34982": 0.0334210804, + "34983": -0.0001360404, + "34984": 0.0332753024, + "34985": -0.0001353995, + "34986": 0.0331429438, + "34987": -0.0001348019, + "34988": 0.0330283178, + "34989": -0.0001342621, + "34990": 0.0329353585, + "34991": -0.0001337926, + "34992": 0.0328670502, + "34993": -0.0001334014, + "34994": 0.0328247041, + "34995": -0.0001330881, + "34996": 0.0328071189, + "34997": -0.0001328407, + "34998": 0.0328096362, + "34999": -0.0001326307, + "35000": 18.3157522481, + "35001": 18.5113839742, + "35002": 18.7307867229, + "35003": 18.974871823, + "35004": 19.2445143364, + "35005": 19.5405425843, + "35006": 19.8637409674, + "35007": 20.2148388702, + "35008": 20.5945146821, + "35009": 21.0033839635, + "35010": 21.4420050195, + "35011": 21.9108661573, + "35012": 22.410393215, + "35013": 22.940935669, + "35014": 23.5027765779, + "35015": 24.0961172084, + "35016": 24.7210899254, + "35017": 25.3777408948, + "35018": 26.0660465329, + "35019": 26.7858937172, + "35020": 27.5371005034, + "35021": 28.3193931275, + "35022": 29.1324318146, + "35023": 29.9757836841, + "35024": 30.8489546102, + "35025": 31.7513569541, + "35026": 32.6823485903, + "35027": 33.6411941827, + "35028": 34.6271126673, + "35029": 35.6392305672, + "35030": 36.6766394177, + "35031": 37.7383393797, + "35032": 38.823308308, + "35033": 39.9297749451, + "35034": 41.0535473015, + "35035": 42.1892219303, + "35036": 43.3318470144, + "35037": 44.477071997, + "35038": 45.6210156337, + "35039": 46.7602086594, + "35040": 47.8915389041, + "35041": 49.01220874, + "35042": 50.1196987941, + "35043": 51.2117379244, + "35044": 52.2862805105, + "35045": 53.3414897148, + "35046": 54.375724244, + "35047": 55.3875273166, + "35048": 56.3756172547, + "35049": 57.3388792405, + "35050": 58.2763578645, + "35051": 59.1872501359, + "35052": 60.0708985907, + "35053": 60.9267844435, + "35054": 61.7545209624, + "35055": 62.5538469864, + "35056": 63.3246203773, + "35057": 64.0668113288, + "35058": 64.7804955369, + "35059": 65.465847252, + "35060": 66.1231322427, + "35061": 66.7527004784, + "35062": 67.3549769384, + "35063": 67.9304514422, + "35064": 68.4796705778, + "35065": 69.0032318584, + "35066": 69.5017784482, + "35067": 69.975993851, + "35068": 70.4265966396, + "35069": 70.8543352924, + "35070": 71.2599831811, + "35071": 71.6443337385, + "35072": 72.0081955783, + "35073": 72.3523876778, + "35074": 72.6777351059, + "35075": 72.9850653338, + "35076": 73.2752048776, + "35077": 73.5489761745, + "35078": 73.8071946927, + "35079": 74.0506662784, + "35080": 74.2801847293, + "35081": 74.4965295888, + "35082": 74.700466071, + "35083": 74.8927466265, + "35084": 75.0741107015, + "35085": 75.2452822259, + "35086": 75.4069666939, + "35087": 75.5598486755, + "35088": 75.7045897386, + "35089": 75.8418267157, + "35090": 75.9721702733, + "35091": 76.0962037472, + "35092": 76.2144825223, + "35093": 76.3275338827, + "35094": 76.4358567352, + "35095": 76.5399210533, + "35096": 76.640167331, + "35097": 76.7370062071, + "35098": 76.8308182595, + "35099": 76.9219539494, + "35100": 77.0107337031, + "35101": 77.0974481172, + "35102": 77.1823621286, + "35103": 77.265723086, + "35104": 77.3477654981, + "35105": 77.4287099163, + "35106": 77.508759665, + "35107": 77.58809809, + "35108": 77.6668866595, + "35109": 77.7452637519, + "35110": 77.8233440236, + "35111": 77.9012182627, + "35112": 77.9789546382, + "35113": 78.0566014347, + "35114": 78.1341892943, + "35115": 78.2117319456, + "35116": 78.2892263187, + "35117": 78.3666528726, + "35118": 78.4439762543, + "35119": 78.521146212, + "35120": 78.5980987036, + "35121": 78.674757154, + "35122": 78.7510366726, + "35123": 78.8268523416, + "35124": 78.9021257726, + "35125": 78.9767859189, + "35126": 79.0507667874, + "35127": 79.1240052133, + "35128": 79.19643938, + "35129": 79.2680079142, + "35130": 79.3386494313, + "35131": 79.4083024362, + "35132": 79.4769058699, + "35133": 79.5444005032, + "35134": 79.6107303196, + "35135": 79.675843099, + "35136": 79.7396905019, + "35137": 79.8022281587, + "35138": 79.863415877, + "35139": 79.9232179215, + "35140": 79.9816033304, + "35141": 80.0385462444, + "35142": 80.0940269589, + "35143": 80.1480345656, + "35144": 80.2005694841, + "35145": 80.2516438021, + "35146": 80.3012800582, + "35147": 80.3495098716, + "35148": 80.3963728209, + "35149": 80.4419155122, + "35150": 80.4861907909, + "35151": 80.5292570668, + "35152": 80.5711778365, + "35153": 80.6120216057, + "35154": 80.6518618978, + "35155": 80.6907768604, + "35156": 80.7288485485, + "35157": 80.7661621827, + "35158": 80.8028054702, + "35159": 80.8388679721, + "35160": 80.8744405048, + "35161": 80.9096145669, + "35162": 80.9444816453, + "35163": 80.9791319214, + "35164": 81.0136528062, + "35165": 81.0481282408, + "35166": 81.0826386629, + "35167": 81.117261062, + "35168": 81.1520689318, + "35169": 81.1871321411, + "35170": 81.2225167464, + "35171": 81.2582847592, + "35172": 81.2944938633, + "35173": 81.3311969525, + "35174": 81.3684415904, + "35175": 81.4062696696, + "35176": 81.4447172722, + "35177": 81.4838145809, + "35178": 81.5235857913, + "35179": 81.564049038, + "35180": 81.6052163433, + "35181": 81.647093596, + "35182": 81.6896805098, + "35183": 81.7329687734, + "35184": 81.7769391333, + "35185": 81.8215606316, + "35186": 81.86679208, + "35187": 81.9125839259, + "35188": 81.958879823, + "35189": 82.005617961, + "35190": 82.0527322081, + "35191": 82.1001530951, + "35192": 82.1478086696, + "35193": 82.1956247168, + "35194": 82.2435245183, + "35195": 82.2914291215, + "35196": 82.3392582334, + "35197": 82.386931219, + "35198": 82.4343679746, + "35199": 82.4814896842, + "35200": 82.5282194818, + "35201": 82.5744830292, + "35202": 82.6202090227, + "35203": 82.6653279652, + "35204": 82.7097695045, + "35205": 82.7534614182, + "35206": 82.7963309084, + "35207": 82.8383065439, + "35208": 82.8793199117, + "35209": 82.9193069155, + "35210": 82.9582087792, + "35211": 82.9959727945, + "35212": 83.0325528475, + "35213": 83.0679094331, + "35214": 83.1020091966, + "35215": 83.134824644, + "35216": 83.166334254, + "35217": 83.1965226873, + "35218": 83.2253808812, + "35219": 83.2529060138, + "35220": 83.2791013596, + "35221": 83.3039760576, + "35222": 83.327544807, + "35223": 83.3498263629, + "35224": 83.3708406822, + "35225": 83.3906069677, + "35226": 83.4091437186, + "35227": 83.4264696751, + "35228": 83.4426046462, + "35229": 83.4575700373, + "35230": 83.4713891315, + "35231": 83.4840871647, + "35232": 83.4956912261, + "35233": 83.5062297824, + "35234": 83.5157317598, + "35235": 83.5242256996, + "35236": 83.5317393328, + "35237": 83.5382993665, + "35238": 83.5439312266, + "35239": 83.5486587111, + "35240": 83.5525035775, + "35241": 83.5554850817, + "35242": 83.5576194862, + "35243": 83.5589193405, + "35244": 83.5593924007, + "35245": 83.5590406519, + "35246": 83.5578598515, + "35247": 83.5558394029, + "35248": 83.552962258, + "35249": 83.5492047751, + "35250": 83.5445365481, + "35251": 83.5389202219, + "35252": 83.5323113039, + "35253": 83.5246579242, + "35254": 83.515900484, + "35255": 83.5059713382, + "35256": 83.494794685, + "35257": 83.4822866114, + "35258": 83.4683551868, + "35259": 83.4529005728, + "35260": 83.435815156, + "35261": 83.4169837107, + "35262": 83.3962835929, + "35263": 83.3735850842, + "35264": 83.3487521094, + "35265": 83.3216430247, + "35266": 83.2921109973, + "35267": 83.2600040795, + "35268": 83.225165287, + "35269": 83.1874327823, + "35270": 83.1466401458, + "35271": 83.1026167222, + "35272": 83.0551880334, + "35273": 83.0041762751, + "35274": 82.9494009998, + "35275": 82.8906798688, + "35276": 82.8278292437, + "35277": 82.7606646376, + "35278": 82.6890011531, + "35279": 82.6126539469, + "35280": 82.5314387108, + "35281": 82.4451721571, + "35282": 82.3536725018, + "35283": 82.2567600995, + "35284": 82.1542593339, + "35285": 82.0460010187, + "35286": 81.9318232019, + "35287": 81.8115704873, + "35288": 81.6850931425, + "35289": 81.5522464418, + "35290": 81.4128902027, + "35291": 81.2668884805, + "35292": 81.1141093931, + "35293": 80.9544250698, + "35294": 80.7877122749, + "35295": 80.6138534238, + "35296": 80.432736927, + "35297": 80.2442568534, + "35298": 80.0483125101, + "35299": 79.8448081577, + "35300": 79.6336528335, + "35301": 79.4147602584, + "35302": 79.188048815, + "35303": 78.9534415783, + "35304": 78.7029575331, + "35305": 78.4338416448, + "35306": 78.1473833166, + "35307": 77.8432330401, + "35308": 77.5187307634, + "35309": 77.1764835474, + "35310": 76.814685133, + "35311": 76.4342969791, + "35312": 76.0344576278, + "35313": 75.6164551226, + "35314": 75.1791800928, + "35315": 74.7239102847, + "35316": 74.2496619091, + "35317": 73.7577316757, + "35318": 73.2472495658, + "35319": 72.7195320974, + "35320": 72.1738234257, + "35321": 71.6114569994, + "35322": 71.031790908, + "35323": 70.4361717831, + "35324": 69.8240704612, + "35325": 69.1968427628, + "35326": 68.5540694994, + "35327": 67.8971111458, + "35328": 67.2256546806, + "35329": 66.5410603347, + "35330": 65.8431162519, + "35331": 65.1331771961, + "35332": 64.4111264073, + "35333": 63.6783076949, + "35334": 62.9346923595, + "35335": 62.1816075757, + "35336": 61.4191048265, + "35337": 60.648488852, + "35338": 59.8698827379, + "35339": 59.0845629519, + "35340": 58.2927150539, + "35341": 57.4955814462, + "35342": 56.6934006482, + "35343": 55.8873753352, + "35344": 55.0777872523, + "35345": 54.265793902, + "35346": 53.4517104716, + "35347": 52.6366441444, + "35348": 51.8209338807, + "35349": 51.0056317772, + "35350": 50.1910911697, + "35351": 49.3783047541, + "35352": 48.5676312614, + "35353": 47.7600001911, + "35354": 46.9557672386, + "35355": 46.1557954877, + "35356": 45.3604298308, + "35357": 44.5704643396, + "35358": 43.7862260959, + "35359": 43.0084382218, + "35360": 42.2374038171, + "35361": 41.4737737995, + "35362": 40.7178220069, + "35363": 39.9701265945, + "35364": 39.2309277858, + "35365": 38.5007311123, + "35366": 37.7797397753, + "35367": 37.0683875086, + "35368": 36.3668380266, + "35369": 35.6754547595, + "35370": 34.9943603944, + "35371": 34.3238501907, + "35372": 33.66400516, + "35373": 33.0150551241, + "35374": 32.3770396178, + "35375": 31.7501263134, + "35376": 31.134314257, + "35377": 30.529712763, + "35378": 29.9362820995, + "35379": 29.3540774599, + "35380": 28.7830226939, + "35381": 28.2231234921, + "35382": 27.674270214, + "35383": 27.1364239802, + "35384": 26.6094450694, + "35385": 26.0932552081, + "35386": 25.5876883962, + "35387": 25.0926323102, + "35388": 24.6078987729, + "35389": 24.1333468457, + "35390": 23.6687704819, + "35391": 23.2140055751, + "35392": 22.7688326276, + "35393": 22.3330697459, + "35394": 21.9064884159, + "35395": 21.4888941928, + "35396": 21.0800539059, + "35397": 20.6797655721, + "35398": 20.2877955607, + "35399": 19.9039390672, + "35400": 19.5279659518, + "35401": 19.1596729406, + "35402": 18.7988370135, + "35403": 18.4452603531, + "35404": 18.0987302979, + "35405": 17.7590615022, + "35406": 17.4260500086, + "35407": 17.0995910033, + "35408": 16.7794105021, + "35409": 16.4653812643, + "35410": 16.157294951, + "35411": 15.8550465083, + "35412": 15.5584470295, + "35413": 15.2674062624, + "35414": 14.9817570267, + "35415": 14.701424321, + "35416": 14.4262627514, + "35417": 14.1562127878, + "35418": 13.8911503115, + "35419": 13.6310309695, + "35420": 13.3757509345, + "35421": 13.1252802546, + "35422": 12.8795130133, + "35423": 12.6384586259, + "35424": 12.4020415349, + "35425": 12.1702668231, + "35426": 11.9430714664, + "35427": 11.720468275, + "35428": 11.5024095982, + "35429": 11.2889143262, + "35430": 11.0799467842, + "35431": 10.8755297232, + "35432": 10.6756367413, + "35433": 10.4802923305, + "35434": 10.2894766239, + "35435": 10.1032137256, + "35436": 9.9214876282, + "35437": 9.7443199712, + "35438": 9.5716960543, + "35439": 9.4036330858, + "35440": 9.2401389755, + "35441": 9.0812586234, + "35442": 8.9271075137, + "35443": 8.7778079077, + "35444": 8.6334628681, + "35445": 8.4941573879, + "35446": 8.3599591849, + "35447": 8.2309195645, + "35448": 8.1070742582, + "35449": 7.988444256, + "35450": 7.8750366168, + "35451": 7.7668452639, + "35452": 7.6638517551, + "35453": 7.5660260302, + "35454": 7.47332713, + "35455": 7.3857038895, + "35456": 7.3030956, + "35457": 7.2254326441, + "35458": 7.1526370998, + "35459": 7.0846233189, + "35460": 7.0212984746, + "35461": 6.9625630867, + "35462": 6.9083115197, + "35463": 6.8584324612, + "35464": 6.8128093786, + "35465": 6.7713209604, + "35466": 6.7338415406, + "35467": 6.7002415134, + "35468": 6.6703877367, + "35469": 6.6441439304, + "35470": 6.6213710692, + "35471": 6.6019277748, + "35472": 6.5856707074, + "35473": 6.5724549603, + "35474": 6.5621344574, + "35475": 6.5545623555, + "35476": 6.5495914535, + "35477": 6.5470746069, + "35478": 6.546865148, + "35479": 6.5488173133, + "35480": 6.552786674, + "35481": 6.5586305714, + "35482": 6.5662085531, + "35483": 6.57538281, + "35484": 6.5860186097, + "35485": 6.5979847259, + "35486": 6.6111538572, + "35487": 6.6254030365, + "35488": 6.6406140237, + "35489": 6.656673681, + "35490": 6.6734743244, + "35491": 6.6909140513, + "35492": 6.7088970375, + "35493": 6.7273338014, + "35494": 6.7461414331, + "35495": 6.7652437853, + "35496": 6.7845716206, + "35497": 6.8040627167, + "35498": 6.823661926, + "35499": 6.8433211877, + "35500": 6.8629994917, + "35501": 6.8826627951, + "35502": 6.9022838888, + "35503": 6.9218422168, + "35504": 6.9413236483, + "35505": 6.9607202048, + "35506": 6.9800297424, + "35507": 6.9992555949, + "35508": 7.0184061766, + "35509": 7.037494552, + "35510": 7.0565379724, + "35511": 7.0755573867, + "35512": 7.0945769271, + "35513": 7.1136233776, + "35514": 7.1327256263, + "35515": 7.1519141096, + "35516": 7.17122025, + "35517": 7.1906758938, + "35518": 7.2103127535, + "35519": 7.230161858, + "35520": 7.2502530167, + "35521": 7.2706143011, + "35522": 7.2912715476, + "35523": 7.3122478856, + "35524": 7.3335632946, + "35525": 7.3552341934, + "35526": 7.3772730652, + "35527": 7.3996881196, + "35528": 7.4224829957, + "35529": 7.4456565076, + "35530": 7.4692024333, + "35531": 7.49310935, + "35532": 7.5173605155, + "35533": 7.5419337974, + "35534": 7.5668016497, + "35535": 7.5919311387, + "35536": 7.6172840153, + "35537": 7.6428168356, + "35538": 7.6684811285, + "35539": 7.6942236081, + "35540": 7.719986432, + "35541": 7.745707501, + "35542": 7.7713208013, + "35543": 7.7967567846, + "35544": 7.821942785, + "35545": 7.8468034705, + "35546": 7.8712613248, + "35547": 7.8952371578, + "35548": 7.9186506398, + "35549": 7.9414208576, + "35550": 7.9634668875, + "35551": 7.9847083804, + "35552": 8.0050661573, + "35553": 8.0244628085, + "35554": 8.0428232922, + "35555": 8.0600755294, + "35556": 8.0761509881, + "35557": 8.0909852544, + "35558": 8.1045185823, + "35559": 8.1166964217, + "35560": 8.1274699159, + "35561": 8.1367963661, + "35562": 8.144639658, + "35563": 8.150970646, + "35564": 8.1557674911, + "35565": 8.1590159489, + "35566": 8.160709604, + "35567": 8.1608500491, + "35568": 8.1594470039, + "35569": 8.1565183751, + "35570": 8.1520902531, + "35571": 8.1461968465, + "35572": 8.1388803526, + "35573": 8.1301907663, + "35574": 8.1201856251, + "35575": 8.1089296954, + "35576": 8.096494599, + "35577": 8.0829583845, + "35578": 8.0686704847, + "35579": 8.0539932268, + "35580": 8.0390659127, + "35581": 8.0239712678, + "35582": 8.0087851821, + "35583": 7.9935964568, + "35584": 7.9784860398, + "35585": 7.963546574, + "35586": 7.9488617709, + "35587": 7.934525634, + "35588": 7.9206221237, + "35589": 7.9072440599, + "35590": 7.8944730861, + "35591": 7.8823982887, + "35592": 7.8710964564, + "35593": 7.8606504625, + "35594": 7.8511298075, + "35595": 7.8426088149, + "35596": 7.8351474392, + "35597": 7.8288093287, + "35598": 7.8236428737, + "35599": 7.8196991927, + "35600": 7.8170133885, + "35601": 7.8156225157, + "35602": 7.815547006, + "35603": 7.8168086743, + "35604": 7.8194122702, + "35605": 7.8233635776, + "35606": 7.828651046, + "35607": 7.8352640364, + "35608": 7.8431744816, + "35609": 7.8523553287, + "35610": 7.8627621769, + "35611": 7.8743519619, + "35612": 7.8870645191, + "35613": 7.9008415509, + "35614": 7.9156080649, + "35615": 7.9312916593, + "35616": 7.9478037881, + "35617": 7.9650593938, + "35618": 7.982957956, + "35619": 8.0014034943, + "35620": 8.0202853617, + "35621": 8.0394986318, + "35622": 8.0589246075, + "35623": 8.0784515979, + "35624": 8.097955119, + "35625": 8.1173190588, + "35626": 8.1364155543, + "35627": 8.1551265337, + "35628": 8.1733232643, + "35629": 8.1908879932, + "35630": 8.2076939894, + "35631": 8.2236267763, + "35632": 8.2385665099, + "35633": 8.252401302, + "35634": 8.2650136523, + "35635": 8.2763044485, + "35636": 8.2861705885, + "35637": 8.2945186945, + "35638": 8.3012550393, + "35639": 8.3063006068, + "35640": 8.3095759442, + "35641": 8.3110167426, + "35642": 8.3105592262, + "35643": 8.3081555874, + "35644": 8.3037593403, + "35645": 8.2973406285, + "35646": 8.2888715477, + "35647": 8.2783412912, + "35648": 8.2657414582, + "35649": 8.2510810006, + "35650": 8.234368733, + "35651": 8.2156368008, + "35652": 8.1949186232, + "35653": 8.1722615165, + "35654": 8.1477138446, + "35655": 8.1213467178, + "35656": 8.0932296141, + "35657": 8.0634502193, + "35658": 8.0320952624, + "35659": 7.9992693195, + "35660": 7.9650748615, + "35661": 7.9296310398, + "35662": 7.8930544176, + "35663": 7.8554765893, + "35664": 7.817025629, + "35665": 7.7778429481, + "35666": 7.7380654207, + "35667": 7.6978414344, + "35668": 7.6573137322, + "35669": 7.6166346691, + "35670": 7.57594979, + "35671": 7.5354123185, + "35672": 7.4951674815, + "35673": 7.4553662661, + "35674": 7.4161504911, + "35675": 7.3776658787, + "35676": 7.340047861, + "35677": 7.3034340214, + "35678": 7.2679506152, + "35679": 7.2337244401, + "35680": 7.2008700401, + "35681": 7.1695010705, + "35682": 7.1397181438, + "35683": 7.1116197573, + "35684": 7.0852907321, + "35685": 7.0608127726, + "35686": 7.0382573309, + "35687": 7.0176831068, + "35688": 6.9991415871, + "35689": 6.9826752767, + "35690": 6.968316937, + "35691": 6.9560897643, + "35692": 6.946007348, + "35693": 6.9380737321, + "35694": 6.9322835145, + "35695": 6.9286219956, + "35696": 6.9270653718, + "35697": 6.9275809719, + "35698": 6.9301275348, + "35699": 6.9346555263, + "35700": 6.9411074923, + "35701": 6.9494184463, + "35702": 6.9595162894, + "35703": 6.9713222587, + "35704": 6.9847514043, + "35705": 6.9997130918, + "35706": 7.0161115263, + "35707": 7.0338462934, + "35708": 7.0528129188, + "35709": 7.072903443, + "35710": 7.0940070094, + "35711": 7.1160104614, + "35712": 7.1387989475, + "35713": 7.1622565312, + "35714": 7.1862668024, + "35715": 7.2107134898, + "35716": 7.2354810684, + "35717": 7.2604553624, + "35718": 7.2855241386, + "35719": 7.3105776888, + "35720": 7.3355093962, + "35721": 7.360216286, + "35722": 7.3845995535, + "35723": 7.40856507, + "35724": 7.4320238604, + "35725": 7.4548925523, + "35726": 7.4770937912, + "35727": 7.498556621, + "35728": 7.519216825, + "35729": 7.5390172265, + "35730": 7.5579079454, + "35731": 7.5758466094, + "35732": 7.5927985171, + "35733": 7.6087367517, + "35734": 7.6236470275, + "35735": 7.6375311027, + "35736": 7.6504030455, + "35737": 7.6622859509, + "35738": 7.6732114212, + "35739": 7.6832193701, + "35740": 7.6923576955, + "35741": 7.7006819164, + "35742": 7.7082547558, + "35743": 7.7151456797, + "35744": 7.7214303928, + "35745": 7.7271902975, + "35746": 7.7325119186, + "35747": 7.7374863007, + "35748": 7.742208381, + "35749": 7.7467763456, + "35750": 7.7512909704, + "35751": 7.7558549569, + "35752": 7.760572263, + "35753": 7.7655474378, + "35754": 7.7708849632, + "35755": 7.7766886075, + "35756": 7.7830607958, + "35757": 7.7901020006, + "35758": 7.7979101571, + "35759": 7.8065801062, + "35760": 7.8162030686, + "35761": 7.8268661519, + "35762": 7.8386518937, + "35763": 7.8516378423, + "35764": 7.8658961761, + "35765": 7.8814933633, + "35766": 7.8984898615, + "35767": 7.9169398586, + "35768": 7.9368910546, + "35769": 7.9583844833, + "35770": 7.9814543741, + "35771": 8.0061280528, + "35772": 8.0324258797, + "35773": 8.0603612254, + "35774": 8.0899404802, + "35775": 8.1211630994, + "35776": 8.1540216791, + "35777": 8.188502064, + "35778": 8.2245834839, + "35779": 8.2622387187, + "35780": 8.3014342889, + "35781": 8.3421306724, + "35782": 8.3842825437, + "35783": 8.4278390376, + "35784": 8.4727440326, + "35785": 8.5189364565, + "35786": 8.5663506109, + "35787": 8.6149165152, + "35788": 8.6645602686, + "35789": 8.7152044302, + "35790": 8.7667684154, + "35791": 8.8191689097, + "35792": 8.872320297, + "35793": 8.9261351043, + "35794": 8.9805244597, + "35795": 9.0353985636, + "35796": 9.0906671726, + "35797": 9.1462400945, + "35798": 9.2020276919, + "35799": 9.2579413944, + "35800": 9.3138942161, + "35801": 9.3698012767, + "35802": 9.4255803231, + "35803": 9.4811522502, + "35804": 9.5364416155, + "35805": 9.5913771456, + "35806": 9.6458922304, + "35807": 9.6999254017, + "35808": 9.7534207907, + "35809": 9.8063285613, + "35810": 9.858605314, + "35811": 9.9102144567, + "35812": 9.9611265366, + "35813": 10.0113195296, + "35814": 10.0607790826, + "35815": 10.1094987053, + "35816": 10.1574799052, + "35817": 10.2047322646, + "35818": 10.2512734559, + "35819": 10.2971291915, + "35820": 10.3423331074, + "35821": 10.3869265776, + "35822": 10.43095846, + "35823": 10.4744847727, + "35824": 10.5175683008, + "35825": 10.560278136, + "35826": 10.6026891514, + "35827": 10.6448814137, + "35828": 10.6869395358, + "35829": 10.7289519773, + "35830": 10.7710102939, + "35831": 10.8132083464, + "35832": 10.8556414718, + "35833": 10.898405626, + "35834": 10.9415965059, + "35835": 10.9853086577, + "35836": 11.0296345808, + "35837": 11.0746638364, + "35838": 11.1204821677, + "35839": 11.1671706431, + "35840": 11.2148048286, + "35841": 11.2634540008, + "35842": 11.3131804049, + "35843": 11.3640385686, + "35844": 11.416074678, + "35845": 11.469326022, + "35846": 11.523820511, + "35847": 11.5795762755, + "35848": 11.636601348, + "35849": 11.6948934335, + "35850": 11.7544397683, + "35851": 11.8152170704, + "35852": 11.8771915831, + "35853": 11.9403192085, + "35854": 12.004545732, + "35855": 12.0698071353, + "35856": 12.1360299932, + "35857": 12.2031319533, + "35858": 12.2710222907, + "35859": 12.3396025351, + "35860": 12.4087671646, + "35861": 12.4784043566, + "35862": 12.5483967942, + "35863": 12.6186225167, + "35864": 12.6889558106, + "35865": 12.7592681306, + "35866": 12.8294290472, + "35867": 12.8993072092, + "35868": 12.9687713181, + "35869": 13.0376911045, + "35870": 13.1059383023, + "35871": 13.1733876106, + "35872": 13.239917642, + "35873": 13.3054118462, + "35874": 13.3697594078, + "35875": 13.4328561092, + "35876": 13.4946051565, + "35877": 13.5549179612, + "35878": 13.6137148752, + "35879": 13.670925872, + "35880": 13.7264911735, + "35881": 13.7803618144, + "35882": 13.8325001424, + "35883": 13.8828802505, + "35884": 13.9314883356, + "35885": 13.9783229814, + "35886": 14.0233953609, + "35887": 14.0667293547, + "35888": 14.1083615825, + "35889": 14.1483413426, + "35890": 14.1867304578, + "35891": 14.2236030235, + "35892": 14.2590450569, + "35893": 14.2931540418, + "35894": 14.326038372, + "35895": 14.3578166872, + "35896": 14.3886171052, + "35897": 14.4185763471, + "35898": 14.4478387604, + "35899": 14.4765552387, + "35900": 14.5048820443, + "35901": 14.5333066388, + "35902": 14.5627584879, + "35903": 14.5938242072, + "35904": 14.6267064973, + "35905": 14.6615563997, + "35906": 14.6985376652, + "35907": 14.7378027553, + "35908": 14.7795047806, + "35909": 14.8237843905, + "35910": 14.8707795292, + "35911": 14.9206126523, + "35912": 14.9734004886, + "35913": 15.0292411954, + "35914": 15.0882242833, + "35915": 15.1504177351, + "35916": 15.2158781758, + "35917": 15.284637996, + "35918": 15.3567158472, + "35919": 15.4321038121, + "35920": 15.5107783039, + "35921": 15.5926873195, + "35922": 15.6777614574, + "35923": 15.7659024349, + "35924": 15.8569936244, + "35925": 15.9508885182, + "35926": 16.0474224685, + "35927": 16.146401156, + "35928": 16.2476129207, + "35929": 16.3508173583, + "35930": 16.455758334, + "35931": 16.5621526716, + "35932": 16.6697038606, + "35933": 16.7780908041, + "35934": 16.8869822082, + "35935": 16.9960253423, + "35936": 17.1048610834, + "35937": 17.2131126331, + "35938": 17.320401171, + "35939": 17.4263344672, + "35940": 17.5305230856, + "35941": 17.6325688263, + "35942": 17.7320814087, + "35943": 17.8286666785, + "35944": 17.9219436916, + "35945": 18.0115326261, + "35946": 18.0970721833, + "35947": 18.178207151, + "35948": 18.2546060372, + "35949": 18.3259482433, + "35950": 18.3919418456, + "35951": 18.4523103514, + "35952": 18.5068105468, + "35953": 18.555218823, + "35954": 18.5973490164, + "35955": 18.6330383065, + "35956": 18.6621649798, + "35957": 18.6846339178, + "35958": 18.700394223, + "35959": 18.7094243269, + "35960": 18.7117494255, + "35961": 18.7074262474, + "35962": 18.6965602521, + "35963": 18.6792901059, + "35964": 18.655804602, + "35965": 18.6263268947, + "35966": 18.5911311057, + "35967": 18.5505263669, + "35968": 18.5048730791, + "35969": 18.4545668101, + "35970": 18.4000541745, + "35971": 18.3418166262, + "35972": 18.28038593, + "35973": 18.2163278761, + "35974": 18.1502573169, + "35975": 18.0828218185, + "35976": 18.0147162387, + "35977": 17.9466663173, + "35978": 17.8794427747, + "35979": 17.8138448302, + "35980": 17.7507138065, + "35981": 17.6909165519, + "35982": 17.6353585458, + "35983": 17.5849671901, + "35984": 17.540704423, + "35985": 17.5035498352, + "35986": 17.4745128159, + "35987": 17.4546154438, + "35988": 17.4449042082, + "35989": 17.4464326211, + "35990": 17.4602725796, + "35991": 17.4874966433, + "35992": 17.5291891323, + "35993": 17.5864280122, + "35994": 17.6602958513, + "35995": 17.7518612566, + "35996": 17.8621898455, + "35997": 17.9923251738, + "35998": 18.1432999114, + "35999": 18.3161161998, + "36000": 79.6172633529, + "36001": 79.6172548551, + "36002": 79.6172490744, + "36003": 79.6172398957, + "36004": 79.6172336468, + "36005": 79.6172236259, + "36006": 79.6172167983, + "36007": 79.6172057473, + "36008": 79.6171982124, + "36009": 79.6171859157, + "36010": 79.6171775263, + "36011": 79.6171637367, + "36012": 79.6171543237, + "36013": 79.6171387585, + "36014": 79.6171281289, + "36015": 79.6171104673, + "36016": 79.6170984019, + "36017": 79.6170782817, + "36018": 79.6170645333, + "36019": 79.6170415486, + "36020": 79.6170258403, + "36021": 79.6169995403, + "36022": 79.6169815646, + "36023": 79.6169514526, + "36024": 79.616930871, + "36025": 79.6168964048, + "36026": 79.6168728483, + "36027": 79.6168334423, + "36028": 79.6168065123, + "36029": 79.6167615402, + "36030": 79.616730811, + "36031": 79.6166796099, + "36032": 79.6166446314, + "36033": 79.6153541627, + "36034": 79.6073804917, + "36035": 79.5858762355, + "36036": 79.5455984849, + "36037": 79.4829472159, + "36038": 79.3955466857, + "36039": 79.2819952524, + "36040": 79.1416504723, + "36041": 78.9744598581, + "36042": 78.7808226165, + "36043": 78.561478517, + "36044": 78.317421875, + "36045": 78.0498354288, + "36046": 77.7600381713, + "36047": 77.4494436296, + "36048": 77.119526494, + "36049": 76.7717959225, + "36050": 76.407774177, + "36051": 76.0289794775, + "36052": 75.6369120617, + "36053": 75.2330429399, + "36054": 74.8188051448, + "36055": 74.395587013, + "36056": 73.9647269577, + "36057": 73.5275094019, + "36058": 73.0851616734, + "36059": 72.6388517007, + "36060": 72.1896863835, + "36061": 71.738710305, + "36062": 71.2869031283, + "36063": 70.8351766351, + "36064": 70.3843742908, + "36065": 69.9352731249, + "36066": 69.488586122, + "36067": 69.0449644939, + "36068": 68.6049998819, + "36069": 68.1692265277, + "36070": 67.7381234286, + "36071": 67.3121164819, + "36072": 66.8915804072, + "36073": 66.4768405473, + "36074": 66.0681749412, + "36075": 65.6658166728, + "36076": 65.2699562604, + "36077": 64.8807440034, + "36078": 64.4982922888, + "36079": 64.1226778611, + "36080": 63.753944053, + "36081": 63.3921029759, + "36082": 63.037139149, + "36083": 62.6890141032, + "36084": 62.3476693013, + "36085": 62.0130271455, + "36086": 61.684991569, + "36087": 61.3634488503, + "36088": 61.0482686215, + "36089": 60.7393050122, + "36090": 60.4363978916, + "36091": 60.1393741783, + "36092": 59.8480494126, + "36093": 59.5622295269, + "36094": 59.2817123847, + "36095": 59.0062889936, + "36096": 58.7357446078, + "36097": 58.4698598327, + "36098": 58.2084117304, + "36099": 57.9511749104, + "36100": 57.6979225952, + "36101": 57.4484276522, + "36102": 57.2024661622, + "36103": 56.9598233723, + "36104": 56.7202971565, + "36105": 56.4836974225, + "36106": 56.2498440509, + "36107": 56.0185651545, + "36108": 55.7896958578, + "36109": 55.5630774688, + "36110": 55.3385569618, + "36111": 55.1159866999, + "36112": 54.895224966, + "36113": 54.6761373298, + "36114": 54.4585975836, + "36115": 54.2424876331, + "36116": 54.0276969441, + "36117": 53.814122073, + "36118": 53.6016663563, + "36119": 53.3902397099, + "36120": 53.1797585045, + "36121": 52.9701454915, + "36122": 52.761331469, + "36123": 52.5532592865, + "36124": 52.3458866614, + "36125": 52.1391854965, + "36126": 51.9331393865, + "36127": 51.7277412295, + "36128": 51.5229913406, + "36129": 51.3188959553, + "36130": 51.1154660431, + "36131": 50.9127163704, + "36132": 50.7106649729, + "36133": 50.5093331393, + "36134": 50.3087454085, + "36135": 50.1089291439, + "36136": 49.9099138676, + "36137": 49.7117306485, + "36138": 49.5144116024, + "36139": 49.3179894806, + "36140": 49.1224973229, + "36141": 48.9279681632, + "36142": 48.7344351695, + "36143": 48.5419326668, + "36144": 48.3504971054, + "36145": 48.1601668737, + "36146": 47.9709813323, + "36147": 47.7829798359, + "36148": 47.5962009522, + "36149": 47.4106818387, + "36150": 47.2264577503, + "36151": 47.0435616554, + "36152": 46.8620240009, + "36153": 46.6818727224, + "36154": 46.5031333324, + "36155": 46.3258288361, + "36156": 46.1499795198, + "36157": 45.9756027642, + "36158": 45.8027129241, + "36159": 45.6313212634, + "36160": 45.4614359349, + "36161": 45.293061999, + "36162": 45.1262014059, + "36163": 44.9608527086, + "36164": 44.7970107202, + "36165": 44.6346665673, + "36166": 44.4738080759, + "36167": 44.3144202019, + "36168": 44.1564854099, + "36169": 43.9999840129, + "36170": 43.8448944788, + "36171": 43.6911937108, + "36172": 43.5388572959, + "36173": 43.3878596606, + "36174": 43.2381741802, + "36175": 43.0897733695, + "36176": 42.9426291487, + "36177": 42.7967131124, + "36178": 42.6519967753, + "36179": 42.5084518003, + "36180": 42.3660502103, + "36181": 42.2247645849, + "36182": 42.0845682199, + "36183": 41.9454344518, + "36184": 41.8073355015, + "36185": 41.670242272, + "36186": 41.534125105, + "36187": 41.3989546591, + "36188": 41.2647026085, + "36189": 41.1313421917, + "36190": 40.9988486352, + "36191": 40.8671994726, + "36192": 40.7363747713, + "36193": 40.6063570586, + "36194": 40.4771310292, + "36195": 40.3486834534, + "36196": 40.221003329, + "36197": 40.0940820536, + "36198": 39.9679135233, + "36199": 39.842494166, + "36200": 39.7178229211, + "36201": 39.593901176, + "36202": 39.470732666, + "36203": 39.3483226626, + "36204": 39.2266765965, + "36205": 39.1057993814, + "36206": 38.9856956869, + "36207": 38.8663704665, + "36208": 38.7478293623, + "36209": 38.6300789656, + "36210": 38.5131269641, + "36211": 38.3969821939, + "36212": 38.2816546166, + "36213": 38.1671551089, + "36214": 38.0534950877, + "36215": 37.940686226, + "36216": 37.8287403471, + "36217": 37.7176693768, + "36218": 37.6074852708, + "36219": 37.498199912, + "36220": 37.3898249884, + "36221": 37.2823718599, + "36222": 37.1758514196, + "36223": 37.0702735252, + "36224": 36.9656459541, + "36225": 36.861973738, + "36226": 36.7592592793, + "36227": 36.6575028166, + "36228": 36.5567028544, + "36229": 36.456856491, + "36230": 36.3579596673, + "36231": 36.2600073513, + "36232": 36.1629936723, + "36233": 36.0669119312, + "36234": 35.9717544655, + "36235": 35.8775125582, + "36236": 35.7841765144, + "36237": 35.6917358254, + "36238": 35.600179326, + "36239": 35.5094953288, + "36240": 35.4196717419, + "36241": 35.3306961768, + "36242": 35.2425560515, + "36243": 35.1552386171, + "36244": 35.0687308626, + "36245": 34.9830194615, + "36246": 34.8980909033, + "36247": 34.8139317405, + "36248": 34.7305288386, + "36249": 34.6478696054, + "36250": 34.5659422013, + "36251": 34.4847357359, + "36252": 34.4042404527, + "36253": 34.3244478831, + "36254": 34.2453509493, + "36255": 34.1669440642, + "36256": 34.0892232861, + "36257": 34.012186508, + "36258": 33.9358336434, + "36259": 33.8601667948, + "36260": 33.7851904091, + "36261": 33.7109114179, + "36262": 33.6373393654, + "36263": 33.5644865614, + "36264": 33.4923683339, + "36265": 33.4210032773, + "36266": 33.3504133375, + "36267": 33.2806237707, + "36268": 33.2116630794, + "36269": 33.1435629619, + "36270": 33.0763582667, + "36271": 33.0100869521, + "36272": 32.9447900452, + "36273": 32.8805116093, + "36274": 32.8172987546, + "36275": 32.7552016523, + "36276": 32.6942734826, + "36277": 32.6345703212, + "36278": 32.5761510119, + "36279": 32.519077038, + "36280": 32.463412391, + "36281": 32.4092234361, + "36282": 32.3565787727, + "36283": 32.3055491415, + "36284": 32.2562077398, + "36285": 32.208630701, + "36286": 32.1628970609, + "36287": 32.1190882493, + "36288": 32.0772875223, + "36289": 32.0375794799, + "36290": 32.0000496553, + "36291": 31.9647841658, + "36292": 31.9318694142, + "36293": 31.9013918412, + "36294": 31.8734379065, + "36295": 31.8480942081, + "36296": 31.8254473969, + "36297": 31.8055838794, + "36298": 31.7885895042, + "36299": 31.7745492999, + "36300": 31.7635472576, + "36301": 31.7556661469, + "36302": 31.7509873627, + "36303": 31.7495907953, + "36304": 31.7489303808, + "36305": 31.7481573732, + "36306": 31.7477579284, + "36307": 31.7476662252, + "36308": 31.7470268144, + "36309": 31.7467396436, + "36310": 31.7462144872, + "36311": 31.7457788539, + "36312": 31.7451346093, + "36313": 31.7447036512, + "36314": 31.744077565, + "36315": 31.7436558462, + "36316": 31.7430459203, + "36317": 31.742634994, + "36318": 31.7420421046, + "36319": 31.7416427111, + "36320": 31.7410678179, + "36321": 31.7406806326, + "36322": 31.740124631, + "36323": 31.7397502011, + "36324": 31.7392138389, + "36325": 31.7388527005, + "36326": 31.7383366559, + "36327": 31.7379892526, + "36328": 31.7374940753, + "36329": 31.7371607738, + "36330": 31.7366868919, + "36331": 31.736367976, + "36332": 31.7359156927, + "36333": 31.7356113617, + "36334": 31.7351808545, + "36335": 31.7348912229, + "36336": 31.7344825444, + "36337": 31.7342076428, + "36338": 31.7338207238, + "36339": 31.7335605005, + "36340": 31.733195155, + "36341": 31.7329494798, + "36342": 31.7326054108, + "36343": 31.7323740791, + "36344": 31.7320508866, + "36345": 31.7318336245, + "36346": 31.7315308146, + "36347": 31.7313272851, + "36348": 31.7310442796, + "36349": 31.7308540894, + "36350": 31.7305902365, + "36351": 31.730412943, + "36352": 31.7301675284, + "36353": 31.7300026473, + "36354": 31.7297749055, + "36355": 31.7296219182, + "36356": 31.7294110436, + "36357": 31.7292694052, + "36358": 31.7290745631, + "36359": 31.7289437092, + "36360": 31.7287640463, + "36361": 31.7286434007, + "36362": 31.7284780551, + "36363": 31.728367036, + "36364": 31.7282151462, + "36365": 31.7281131724, + "36366": 31.7279738856, + "36367": 31.727880382, + "36368": 31.7277528614, + "36369": 31.7276672643, + "36370": 31.7275506952, + "36371": 31.7274724558, + "36372": 31.7273660514, + "36373": 31.7272946398, + "36374": 31.7271976449, + "36375": 31.727132553, + "36376": 31.7270442478, + "36377": 31.7269849912, + "36378": 31.7269046932, + "36379": 31.7268508132, + "36380": 31.7267778795, + "36381": 31.7267289438, + "36382": 31.7266627713, + "36383": 31.7266183746, + "36384": 31.7265584006, + "36385": 31.7265181648, + "36386": 31.7264638662, + "36387": 31.7264274401, + "36388": 31.7263783329, + "36389": 31.7263453913, + "36390": 31.7263010289, + "36391": 31.7262712721, + "36392": 31.7262312437, + "36393": 31.7262043961, + "36394": 31.7261683252, + "36395": 31.7261441339, + "36396": 31.7261116759, + "36397": 31.7260899096, + "36398": 31.7260607494, + "36399": 31.7260411969, + "36400": 31.7260150473, + "36401": 31.7259975158, + "36402": 31.7259741147, + "36403": 31.7259584284, + "36404": 31.7259375371, + "36405": 31.7259287529, + "36406": 31.725914313, + "36407": 31.7260145055, + "36408": 31.7260873484, + "36409": 31.7261952156, + "36410": 31.7262655071, + "36411": 31.7263716743, + "36412": 31.7264412172, + "36413": 31.7265452264, + "36414": 31.7266139752, + "36415": 31.7267157531, + "36416": 31.7267836032, + "36417": 31.7268831035, + "36418": 31.7269499611, + "36419": 31.7270471492, + "36420": 31.7271129333, + "36421": 31.7272077853, + "36422": 31.7272301575, + "36423": 31.7272890414, + "36424": 31.7273125994, + "36425": 31.727377523, + "36426": 31.7274082574, + "36427": 31.7274756396, + "36428": 31.7275110993, + "36429": 31.7275804643, + "36430": 31.7276204083, + "36431": 31.7276915795, + "36432": 31.7277357278, + "36433": 31.7278085496, + "36434": 31.7278566319, + "36435": 31.7279309594, + "36436": 31.7279827156, + "36437": 31.7280584136, + "36438": 31.728113594, + "36439": 31.7281905362, + "36440": 31.728315447, + "36441": 31.7286277299, + "36442": 31.7294913504, + "36443": 31.731325284, + "36444": 31.7345278083, + "36445": 31.7394771572, + "36446": 31.7465312502, + "36447": 31.7560276934, + "36448": 31.7682837898, + "36449": 31.7835966179, + "36450": 31.8022431429, + "36451": 31.8244803871, + "36452": 31.8505456316, + "36453": 31.8806566682, + "36454": 31.9150120774, + "36455": 31.9537915506, + "36456": 31.9971562346, + "36457": 32.0452491145, + "36458": 32.0981954141, + "36459": 32.1561030302, + "36460": 32.2190629808, + "36461": 32.2871498815, + "36462": 32.3604224331, + "36463": 32.4389239335, + "36464": 32.5226827958, + "36465": 32.6117130891, + "36466": 32.7060150811, + "36467": 32.8055757995, + "36468": 32.9103695938, + "36469": 33.0203587115, + "36470": 33.1354938719, + "36471": 33.2557148517, + "36472": 33.3809510657, + "36473": 33.5111221554, + "36474": 33.6461385724, + "36475": 33.7859021607, + "36476": 33.9303067393, + "36477": 34.0792386776, + "36478": 34.232577465, + "36479": 34.390196278, + "36480": 34.5519625301, + "36481": 34.7177384213, + "36482": 34.8873814687, + "36483": 35.0607450325, + "36484": 35.2376788204, + "36485": 35.418029385, + "36486": 35.6016405979, + "36487": 35.7883541135, + "36488": 35.9780098079, + "36489": 36.1704462054, + "36490": 36.3655008776, + "36491": 36.5630108289, + "36492": 36.7628128542, + "36493": 36.9647438759, + "36494": 37.1686412588, + "36495": 37.3743431051, + "36496": 37.5816885174, + "36497": 37.7905178426, + "36498": 38.0006728932, + "36499": 38.2119971427, + "36500": 38.4243358967, + "36501": 38.6375364453, + "36502": 38.8514481858, + "36503": 39.0659227295, + "36504": 39.2808139831, + "36505": 39.4959782138, + "36506": 39.7112740909, + "36507": 39.9265627133, + "36508": 40.1417076163, + "36509": 40.356574767, + "36510": 40.5710325414, + "36511": 40.784951693, + "36512": 40.9982053064, + "36513": 41.2106687462, + "36514": 41.4222195925, + "36515": 41.6327375763, + "36516": 41.842104505, + "36517": 42.0502041903, + "36518": 42.2569223706, + "36519": 42.4621466354, + "36520": 42.6657663521, + "36521": 42.8676725995, + "36522": 43.0677580982, + "36523": 43.2659171559, + "36524": 43.4620456141, + "36525": 43.6560408059, + "36526": 43.8478015243, + "36527": 44.0372279999, + "36528": 44.2242218896, + "36529": 44.4086862803, + "36530": 44.5905257003, + "36531": 44.7696461483, + "36532": 44.9459551331, + "36533": 45.1193617266, + "36534": 45.2897766314, + "36535": 45.457112264, + "36536": 45.6212828441, + "36537": 45.7822045041, + "36538": 45.9397954048, + "36539": 46.0939758652, + "36540": 46.244668503, + "36541": 46.3917983838, + "36542": 46.5352931796, + "36543": 46.675083334, + "36544": 46.8111022343, + "36545": 46.9432863888, + "36546": 47.0715756066, + "36547": 47.195913181, + "36548": 47.3162460722, + "36549": 47.4325250918, + "36550": 47.544705081, + "36551": 47.6527450865, + "36552": 47.756608532, + "36553": 47.8562633815, + "36554": 47.9516822928, + "36555": 48.0428427622, + "36556": 48.1297272553, + "36557": 48.2123233279, + "36558": 48.2906237269, + "36559": 48.3646264799, + "36560": 48.4343349635, + "36561": 48.4997579566, + "36562": 48.5609096706, + "36563": 48.617809763, + "36564": 48.6704833251, + "36565": 48.7189608529, + "36566": 48.7632781912, + "36567": 48.803476459, + "36568": 48.839601948, + "36569": 48.8717060034, + "36570": 48.8998448768, + "36571": 48.9240795623, + "36572": 48.9444756061, + "36573": 48.9611029003, + "36574": 48.9740354517, + "36575": 48.9833511368, + "36576": 48.9891314345, + "36577": 48.9914611475, + "36578": 48.9918545438, + "36579": 48.9918804872, + "36580": 48.9918919407, + "36581": 48.9919168535, + "36582": 48.9919281867, + "36583": 48.9919532788, + "36584": 48.9919648673, + "36585": 48.9919900633, + "36586": 48.9920019182, + "36587": 48.9920272134, + "36588": 48.9920393224, + "36589": 48.9920647109, + "36590": 48.9920770527, + "36591": 48.9921025239, + "36592": 48.9921150695, + "36593": 48.9921406082, + "36594": 48.992153321, + "36595": 48.9921789076, + "36596": 48.9921917443, + "36597": 48.9922173552, + "36598": 48.9922302664, + "36599": 48.9922558744, + "36600": 48.9922688057, + "36601": 48.9922943807, + "36602": 48.9923072741, + "36603": 48.9923327835, + "36604": 48.9923455787, + "36605": 48.9923709883, + "36606": 48.9923836236, + "36607": 48.9924088984, + "36608": 48.9924213129, + "36609": 48.9924464178, + "36610": 48.9924585525, + "36611": 48.9924834532, + "36612": 48.9924952525, + "36613": 48.9925199165, + "36614": 48.9925313296, + "36615": 48.992555727, + "36616": 48.9925667095, + "36617": 48.9925908136, + "36618": 48.9926013286, + "36619": 48.992625117, + "36620": 48.9926351362, + "36621": 48.9926585911, + "36622": 48.992668096, + "36623": 48.9926912053, + "36624": 48.9927001878, + "36625": 48.9927229453, + "36626": 48.9927314083, + "36627": 48.9927538144, + "36628": 48.9927617724, + "36629": 48.9927824716, + "36630": 48.9927888494, + "36631": 48.9928090962, + "36632": 48.9928296436, + "36633": 48.9928625294, + "36634": 48.9928704609, + "36635": 48.9928899915, + "36636": 48.992910483, + "36637": 48.9929433281, + "36638": 48.9929661141, + "36639": 48.9929987586, + "36640": 48.9930215358, + "36641": 48.993054108, + "36642": 48.9930768384, + "36643": 48.9931093251, + "36644": 48.9931319973, + "36645": 48.9931643791, + "36646": 48.9931869821, + "36647": 48.9932192388, + "36648": 48.9932417614, + "36649": 48.9932738728, + "36650": 48.993281537, + "36651": 48.9933004427, + "36652": 48.9933204642, + "36653": 48.9933523841, + "36654": 48.993360793, + "36655": 48.9933801083, + "36656": 48.9933868218, + "36657": 48.9934065435, + "36658": 48.9934138659, + "36659": 48.9934352031, + "36660": 48.9934442756, + "36661": 48.9934661023, + "36662": 48.9934759238, + "36663": 48.9934981568, + "36664": 48.9935087986, + "36665": 48.9935314641, + "36666": 48.9935429642, + "36667": 48.9935660852, + "36668": 48.9935784676, + "36669": 48.9936020594, + "36670": 48.9936153341, + "36671": 48.993639404, + "36672": 48.993653567, + "36673": 48.9936781143, + "36674": 48.9936931479, + "36675": 48.9937181636, + "36676": 48.9937340367, + "36677": 48.9937595039, + "36678": 48.9937761726, + "36679": 48.9938020673, + "36680": 48.9938194759, + "36681": 48.9938457669, + "36682": 48.993863849, + "36683": 48.9938904989, + "36684": 48.9939091788, + "36685": 48.9939361447, + "36686": 48.9939792831, + "36687": 48.9940238763, + "36688": 48.9940679519, + "36689": 48.9941124578, + "36690": 48.9941571659, + "36691": 48.9942020781, + "36692": 48.9942471497, + "36693": 48.9942923448, + "36694": 48.9943376259, + "36695": 48.9943829556, + "36696": 48.9944282967, + "36697": 48.9944736126, + "36698": 48.9945188669, + "36699": 48.9945640241, + "36700": 48.9946090493, + "36701": 48.9946539089, + "36702": 48.9946985699, + "36703": 48.994743001, + "36704": 48.994787173, + "36705": 48.994831072, + "36706": 48.994874702, + "36707": 48.9949180757, + "36708": 48.9949612076, + "36709": 48.995004114, + "36710": 48.9950468133, + "36711": 48.9950893254, + "36712": 48.9951316722, + "36713": 48.9951738777, + "36714": 48.9952159677, + "36715": 48.99525797, + "36716": 48.9952999144, + "36717": 48.9953418324, + "36718": 48.9953837578, + "36719": 48.995425726, + "36720": 48.9954677743, + "36721": 48.9955099418, + "36722": 48.9955522693, + "36723": 48.9955947994, + "36724": 48.9956375758, + "36725": 48.9956806442, + "36726": 48.9957240514, + "36727": 48.9957678453, + "36728": 48.9958120751, + "36729": 48.995856791, + "36730": 48.9959020442, + "36731": 48.9959478862, + "36732": 48.9959943695, + "36733": 48.9960415469, + "36734": 48.9961167148, + "36735": 48.9962934699, + "36736": 48.9966704002, + "36737": 48.9973529469, + "36738": 48.9984513798, + "36739": 49.0000809107, + "36740": 49.0023613538, + "36741": 49.0054168534, + "36742": 49.0093755691, + "36743": 49.0143693493, + "36744": 49.0205333837, + "36745": 49.0280058429, + "36746": 49.0369275013, + "36747": 49.0474413503, + "36748": 49.0596921991, + "36749": 49.0738262699, + "36750": 49.089990784, + "36751": 49.1083335469, + "36752": 49.1290025279, + "36753": 49.1521454434, + "36754": 49.1779093382, + "36755": 49.2064401744, + "36756": 49.2378824225, + "36757": 49.272378663, + "36758": 49.3100691953, + "36759": 49.351091659, + "36760": 49.3955806662, + "36761": 49.4436674498, + "36762": 49.4954795244, + "36763": 49.551140367, + "36764": 49.6107691121, + "36765": 49.6744802686, + "36766": 49.7423834528, + "36767": 49.8145831456, + "36768": 49.8911784664, + "36769": 49.9722629721, + "36770": 50.0579244746, + "36771": 50.1482448835, + "36772": 50.2433000675, + "36773": 50.3431597409, + "36774": 50.4478873698, + "36775": 50.5575401025, + "36776": 50.6721687185, + "36777": 50.7918176024, + "36778": 50.9165247344, + "36779": 51.0463217049, + "36780": 51.1812337456, + "36781": 51.3212797818, + "36782": 51.4664725007, + "36783": 51.6168184396, + "36784": 51.772318087, + "36785": 51.9329660038, + "36786": 52.0987509536, + "36787": 52.2696560521, + "36788": 52.4456589239, + "36789": 52.6267318744, + "36790": 52.8128420695, + "36791": 53.0039517244, + "36792": 53.2000183006, + "36793": 53.4009947119, + "36794": 53.6068295302, + "36795": 53.8174671978, + "36796": 54.0328482429, + "36797": 54.2529094972, + "36798": 54.4775843085, + "36799": 54.7068027569, + "36800": 54.9404918639, + "36801": 55.1785758004, + "36802": 55.4209760857, + "36803": 55.6676117826, + "36804": 55.9183996807, + "36805": 56.1732544716, + "36806": 56.4320889123, + "36807": 56.6948139794, + "36808": 56.961339004, + "36809": 57.2315717974, + "36810": 57.5054187572, + "36811": 57.7827849618, + "36812": 58.0635742429, + "36813": 58.3476892425, + "36814": 58.635031452, + "36815": 58.9255012342, + "36816": 59.2189978223, + "36817": 59.5154193024, + "36818": 59.8146625782, + "36819": 60.1166233168, + "36820": 60.4211958756, + "36821": 60.7282732133, + "36822": 61.0377467832, + "36823": 61.3495064151, + "36824": 61.6634401776, + "36825": 61.9794342312, + "36826": 62.29737267, + "36827": 62.6171373572, + "36828": 62.9386077469, + "36829": 63.2616607077, + "36830": 63.5861703374, + "36831": 63.9120077829, + "36832": 64.2390410573, + "36833": 64.5671348623, + "36834": 64.8961504196, + "36835": 65.225945309, + "36836": 65.5563733184, + "36837": 65.8872843113, + "36838": 66.2185241059, + "36839": 66.5499343745, + "36840": 66.8813525663, + "36841": 67.2126118537, + "36842": 67.5435410994, + "36843": 67.873964853, + "36844": 68.2037033767, + "36845": 68.5325726997, + "36846": 68.8603847035, + "36847": 69.1869472383, + "36848": 69.5120642715, + "36849": 69.8355360716, + "36850": 70.1571594196, + "36851": 70.4767278545, + "36852": 70.7940319523, + "36853": 71.1088596345, + "36854": 71.4209965053, + "36855": 71.7302262186, + "36856": 72.0363308708, + "36857": 72.3390914187, + "36858": 72.6382881202, + "36859": 72.9337009942, + "36860": 73.2251103028, + "36861": 73.5122970414, + "36862": 73.7950434482, + "36863": 74.0731335179, + "36864": 74.3463535264, + "36865": 74.6144925544, + "36866": 74.8773430155, + "36867": 75.1347011766, + "36868": 75.3863676767, + "36869": 75.6321480314, + "36870": 75.8718531294, + "36871": 76.1052997091, + "36872": 76.3323108198, + "36873": 76.5527162578, + "36874": 76.766352982, + "36875": 76.9730654976, + "36876": 77.1727062149, + "36877": 77.3651357714, + "36878": 77.5502233242, + "36879": 77.7278468015, + "36880": 77.8978931211, + "36881": 78.0602583641, + "36882": 78.2148479131, + "36883": 78.3615765436, + "36884": 78.5003684766, + "36885": 78.6311573846, + "36886": 78.753886357, + "36887": 78.8685078187, + "36888": 78.9749834086, + "36889": 79.0732838111, + "36890": 79.1633885506, + "36891": 79.2452857392, + "36892": 79.3189717906, + "36893": 79.3844510908, + "36894": 79.4417356378, + "36895": 79.490844643, + "36896": 79.5318041063, + "36897": 79.564646359, + "36898": 79.5894095854, + "36899": 79.6061373196, + "36900": 79.6148779282, + "36901": 79.6173509236, + "36902": 79.6174986294, + "36903": 79.6174845428, + "36904": 79.6175110925, + "36905": 79.6175238687, + "36906": 79.6175449724, + "36907": 79.617558748, + "36908": 79.6175795718, + "36909": 79.6175933049, + "36910": 79.6176140507, + "36911": 79.6176276901, + "36912": 79.6176483608, + "36913": 79.6176618936, + "36914": 79.6176824831, + "36915": 79.6176958971, + "36916": 79.617716398, + "36917": 79.6177296797, + "36918": 79.6177500834, + "36919": 79.617763218, + "36920": 79.617783515, + "36921": 79.6177964863, + "36922": 79.6178149566, + "36923": 79.6178263883, + "36924": 79.6178446317, + "36925": 79.6178559391, + "36926": 79.6178740926, + "36927": 79.6178852296, + "36928": 79.6179032885, + "36929": 79.6179142384, + "36930": 79.6179321914, + "36931": 79.6179429387, + "36932": 79.6179607734, + "36933": 79.6179713034, + "36934": 79.6179890071, + "36935": 79.6179993061, + "36936": 79.6180168662, + "36937": 79.6180269221, + "36938": 79.6180443267, + "36939": 79.6180541298, + "36940": 79.6180713679, + "36941": 79.6180809113, + "36942": 79.6180979738, + "36943": 79.6181072538, + "36944": 79.6181241338, + "36945": 79.6181331504, + "36946": 79.6181498435, + "36947": 79.6181586008, + "36948": 79.6181751054, + "36949": 79.6181836118, + "36950": 79.6181999293, + "36951": 79.6182081971, + "36952": 79.6182243321, + "36953": 79.6182323775, + "36954": 79.6182483375, + "36955": 79.6182561803, + "36956": 79.6182719755, + "36957": 79.6182796381, + "36958": 79.6182952808, + "36959": 79.6183027879, + "36960": 79.6183182921, + "36961": 79.6183256694, + "36962": 79.6183410501, + "36963": 79.6183483237, + "36964": 79.6183635961, + "36965": 79.6183707912, + "36966": 79.6183859703, + "36967": 79.6183931103, + "36968": 79.6184082097, + "36969": 79.6184153151, + "36970": 79.6184303468, + "36971": 79.6184374347, + "36972": 79.6184524085, + "36973": 79.6184594912, + "36974": 79.6184744142, + "36975": 79.6184814992, + "36976": 79.6184963755, + "36977": 79.6185034646, + "36978": 79.6185182954, + "36979": 79.6185253845, + "36980": 79.6185401677, + "36981": 79.6185472465, + "36982": 79.6185619772, + "36983": 79.6185690288, + "36984": 79.6185836987, + "36985": 79.6185906997, + "36986": 79.6186052973, + "36987": 79.6186122169, + "36988": 79.6186267274, + "36989": 79.6186335272, + "36990": 79.6186479312, + "36991": 79.6186545642, + "36992": 79.6186688373, + "36993": 79.6186752463, + "36994": 79.6186893574, + "36995": 79.6186954732, + "36996": 79.6187093816, + "36997": 79.6187151204, + "36998": 79.6187287737, + "36999": 79.6187340335, + "37000": -0.0010509593, + "37001": 0.0155448685, + "37002": -0.0011231372, + "37003": 0.0167975948, + "37004": -0.0012137523, + "37005": 0.0183465917, + "37006": -0.0013258164, + "37007": 0.0202391855, + "37008": -0.0014627647, + "37009": 0.0225280019, + "37010": -0.0016284187, + "37011": 0.0252709189, + "37012": -0.0018269866, + "37013": 0.0285321315, + "37014": -0.00206314, + "37015": 0.0323819472, + "37016": -0.0023420004, + "37017": 0.0368960032, + "37018": -0.0026690843, + "37019": 0.0421541579, + "37020": -0.003050224, + "37021": 0.0482390723, + "37022": -0.0034914664, + "37023": 0.0552344757, + "37024": -0.0039989485, + "37025": 0.0632231741, + "37026": -0.0045787532, + "37027": 0.0722848527, + "37028": -0.0052367509, + "37029": 0.0824937497, + "37030": -0.00597843, + "37031": 0.0939162899, + "37032": -0.0068087247, + "37033": 2.4382178484, + "37034": 13.1383628943, + "37035": 29.9564241271, + "37036": 51.1037279495, + "37037": 75.1876835685, + "37038": 101.109972128, + "37039": 128.0107377487, + "37040": 155.2193695097, + "37041": 182.2179308648, + "37042": 208.6141405804, + "37043": 234.1144786838, + "37044": 258.5000507037, + "37045": 281.6103040444, + "37046": 303.331414403, + "37047": 323.5869208894, + "37048": 342.3302443853, + "37049": 359.5387200011, + "37050": 375.2088214765, + "37051": 389.3524302564, + "37052": 401.9940988656, + "37053": 413.1684089585, + "37054": 422.9175560226, + "37055": 431.2896371028, + "37056": 438.3373771635, + "37057": 444.1170700899, + "37058": 448.6876984331, + "37059": 452.1101972762, + "37060": 454.4468323437, + "37061": 455.7611037367, + "37062": 456.1203577232, + "37063": 455.5943744862, + "37064": 454.2514813715, + "37065": 452.1574572664, + "37066": 449.3757572966, + "37067": 445.9675938438, + "37068": 441.9919762019, + "37069": 437.5057362722, + "37070": 432.5635358587, + "37071": 427.2178776446, + "37072": 421.5195170069, + "37073": 415.5173629306, + "37074": 409.2580025536, + "37075": 402.7855792357, + "37076": 396.1418499515, + "37077": 389.36622527, + "37078": 382.4958063327, + "37079": 375.5654232769, + "37080": 368.6076747581, + "37081": 361.6529698568, + "37082": 354.7267698323, + "37083": 347.8499474637, + "37084": 341.0419334193, + "37085": 334.3217362419, + "37086": 327.7076465105, + "37087": 321.2170138761, + "37088": 314.866092383, + "37089": 308.6699216187, + "37090": 302.6422455139, + "37091": 296.7954600601, + "37092": 291.1401619357, + "37093": 285.6851396051, + "37094": 280.437858278, + "37095": 275.4046803402, + "37096": 270.5908571876, + "37097": 266.0005196534, + "37098": 261.6366873702, + "37099": 257.5012892553, + "37100": 253.5951938095, + "37101": 249.9182470506, + "37102": 246.4644402266, + "37103": 243.2212616385, + "37104": 240.1753657871, + "37105": 237.3156797575, + "37106": 234.6331901415, + "37107": 232.12032858, + "37108": 229.7705357706, + "37109": 227.5779098332, + "37110": 225.5369318919, + "37111": 223.6422563552, + "37112": 221.8873689158, + "37113": 220.2640927502, + "37114": 218.763918818, + "37115": 217.3789377388, + "37116": 216.10181206, + "37117": 214.925579658, + "37118": 213.8435259266, + "37119": 212.8490919668, + "37120": 211.9358123661, + "37121": 211.0972775446, + "37122": 210.32387406, + "37123": 209.6009711605, + "37124": 208.9129115154, + "37125": 208.2465447627, + "37126": 207.5914461635, + "37127": 206.9393011389, + "37128": 206.283476902, + "37129": 205.6186764068, + "37130": 204.9406575583, + "37131": 204.2460113564, + "37132": 203.5315850796, + "37133": 202.7939917753, + "37134": 202.030025646, + "37135": 201.2371658869, + "37136": 200.4135809807, + "37137": 199.5579897749, + "37138": 198.6695644143, + "37139": 197.7478552533, + "37140": 196.7927321451, + "37141": 195.8043396443, + "37142": 194.7823146129, + "37143": 193.7247435958, + "37144": 192.6291721314, + "37145": 191.4940622253, + "37146": 190.3189921871, + "37147": 189.1044113254, + "37148": 187.8514677079, + "37149": 186.5618663554, + "37150": 185.2377487485, + "37151": 183.8815933284, + "37152": 182.4960223852, + "37153": 181.0834996658, + "37154": 179.6464405927, + "37155": 178.1874748544, + "37156": 176.7094618657, + "37157": 175.2154112034, + "37158": 173.7084229319, + "37159": 172.1916380708, + "37160": 170.6681964028, + "37161": 169.1412011261, + "37162": 167.6138186736, + "37163": 166.089711675, + "37164": 164.5727874827, + "37165": 163.066613256, + "37166": 161.574284741, + "37167": 160.0984942873, + "37168": 158.6415746327, + "37169": 157.2055339789, + "37170": 155.7920859761, + "37171": 154.4026738587, + "37172": 153.0385082659, + "37173": 151.7007115727, + "37174": 150.3902865147, + "37175": 149.107975905, + "37176": 147.8542367408, + "37177": 146.6292678564, + "37178": 145.4330299466, + "37179": 144.2652625184, + "37180": 143.125499181, + "37181": 142.0130813396, + "37182": 140.9272185903, + "37183": 139.8685181972, + "37184": 138.838665742, + "37185": 137.838739224, + "37186": 136.8688004759, + "37187": 135.9281306943, + "37188": 135.0153914504, + "37189": 134.1287576148, + "37190": 133.2660346135, + "37191": 132.4247567838, + "37192": 131.6022707783, + "37193": 130.7962334598, + "37194": 130.0046196624, + "37195": 129.2252931321, + "37196": 128.4558963326, + "37197": 127.6939373801, + "37198": 126.9368621539, + "37199": 126.1821123235, + "37200": 125.427174375, + "37201": 124.669619559, + "37202": 123.9071363328, + "37203": 123.1388482677, + "37204": 122.3653274002, + "37205": 121.5871383971, + "37206": 120.8042313507, + "37207": 120.0160699578, + "37208": 119.2217929903, + "37209": 118.4203389653, + "37210": 117.610551471, + "37211": 116.791264204, + "37212": 115.9613686056, + "37213": 115.120107524, + "37214": 114.2671467758, + "37215": 113.4023210182, + "37216": 112.5254978333, + "37217": 111.6366000494, + "37218": 110.7356427053, + "37219": 109.8227565208, + "37220": 108.8982031252, + "37221": 107.9623829892, + "37222": 107.0158372602, + "37223": 106.060060633, + "37224": 105.0977509269, + "37225": 104.1318188666, + "37226": 103.1646927428, + "37227": 102.1983057502, + "37228": 101.2342175631, + "37229": 100.2737016437, + "37230": 99.3178168727, + "37231": 98.3674648231, + "37232": 97.4234337844, + "37233": 96.4865952106, + "37234": 95.5580167453, + "37235": 94.6387725762, + "37236": 93.7297708036, + "37237": 92.8317447778, + "37238": 91.9452838246, + "37239": 91.0708520662, + "37240": 90.2088009857, + "37241": 89.3593769818, + "37242": 88.5227246268, + "37243": 87.6990264327, + "37244": 86.88862271, + "37245": 86.0918241678, + "37246": 85.3087016971, + "37247": 84.5390580037, + "37248": 83.7824559898, + "37249": 83.0382380018, + "37250": 82.3055415989, + "37251": 81.5833128106, + "37252": 80.8703169907, + "37253": 80.1651861263, + "37254": 79.4664782013, + "37255": 78.7726303943, + "37256": 78.0818889686, + "37257": 77.3923039436, + "37258": 76.7017472024, + "37259": 76.0079275123, + "37260": 75.3084046272, + "37261": 74.6006029423, + "37262": 73.8818247311, + "37263": 73.1491903093, + "37264": 72.3994970751, + "37265": 71.6293450615, + "37266": 70.8353572107, + "37267": 70.0142299254, + "37268": 69.1627154177, + "37269": 68.2776131846, + "37270": 67.3557652548, + "37271": 66.3940541809, + "37272": 65.389404043, + "37273": 64.3387635825, + "37274": 63.2390400391, + "37275": 62.087143622, + "37276": 60.8800865221, + "37277": 59.61501155, + "37278": 58.2891899569, + "37279": 56.9000234121, + "37280": 55.4450475287, + "37281": 53.9219361917, + "37282": 52.328506632, + "37283": 50.6626256332, + "37284": 48.9215143382, + "37285": 47.1019995074, + "37286": 45.2013470189, + "37287": 43.2174563151, + "37288": 41.1487500783, + "37289": 38.9940972882, + "37290": 36.7527484483, + "37291": 34.4242782451, + "37292": 32.0085375961, + "37293": 29.5056023264, + "37294": 26.9153838883, + "37295": 24.2376826108, + "37296": 21.4725682098, + "37297": 18.6204629984, + "37298": 15.6820755574, + "37299": 12.6583538302, + "37300": 9.5504467763, + "37301": 6.3596716019, + "37302": 3.0874871792, + "37303": -0.2645274721, + "37304": 1.2733802558, + "37305": 0.5106344027, + "37306": 0.2237977558, + "37307": -0.0247976904, + "37308": 1.2166432321, + "37309": -0.4218538093, + "37310": 1.2234549779, + "37311": -0.0913862419, + "37312": 1.1736707939, + "37313": -0.0876339419, + "37314": 1.1461498471, + "37315": -0.0855442826, + "37316": 1.1167137404, + "37317": -0.083310551, + "37318": 1.0853580407, + "37319": -0.08093288, + "37320": 1.0522348341, + "37321": -0.0784228341, + "37322": 1.0175141846, + "37323": -0.0757943629, + "37324": 0.9813756905, + "37325": -0.0730607095, + "37326": 0.9440220717, + "37327": -0.0702377252, + "37328": 0.9056705833, + "37329": -0.0673420631, + "37330": 0.8665465453, + "37331": -0.0643909667, + "37332": 0.8268800922, + "37333": -0.0614019898, + "37334": 0.7869026094, + "37335": -0.0583927225, + "37336": 0.7468432034, + "37337": -0.0553805205, + "37338": 0.7069252914, + "37339": -0.0523822471, + "37340": 0.6673633948, + "37341": -0.0494140306, + "37342": 0.6283602134, + "37343": -0.046491047, + "37344": 0.5901040479, + "37345": -0.0436273296, + "37346": 0.5527666232, + "37347": -0.0408356109, + "37348": 0.5165013513, + "37349": -0.0381271989, + "37350": 0.4814420573, + "37351": -0.0355118899, + "37352": 0.4477021763, + "37353": -0.0329979166, + "37354": 0.4153744128, + "37355": -0.0305919322, + "37356": 0.3845308403, + "37357": -0.0282990266, + "37358": 0.3552234084, + "37359": -0.0261227739, + "37360": 0.3274848109, + "37361": -0.0240653054, + "37362": 0.3013296643, + "37363": -0.022127406, + "37364": 0.2767559379, + "37365": -0.0203086273, + "37366": 0.2537465774, + "37367": -0.018607415, + "37368": 0.2322712607, + "37369": -0.0170212446, + "37370": 0.2122882292, + "37371": -0.0155467612, + "37372": 0.1937461409, + "37373": -0.0141799206, + "37374": 0.1765858973, + "37375": -0.0129161263, + "37376": 0.1607424027, + "37377": -0.0117503617, + "37378": 0.1461462229, + "37379": -0.0106773128, + "37380": 0.1327251152, + "37381": -0.0096914814, + "37382": 0.1204054121, + "37383": -0.0087872866, + "37384": 0.1091132454, + "37385": -0.0079591541, + "37386": 0.0987756055, + "37387": -0.0072015925, + "37388": 0.0893212353, + "37389": -0.0065092581, + "37390": 0.0806813629, + "37391": -0.0058770068, + "37392": 0.0727902802, + "37393": -0.0052999346, + "37394": 0.0655857798, + "37395": -0.0047734084, + "37396": 0.0590094597, + "37397": -0.0042930864, + "37398": 0.0530069125, + "37399": -0.0038549302, + "37400": 0.0475278108, + "37401": -0.0034552099, + "37402": 0.0425259031, + "37403": -0.003090502, + "37404": 0.0379589353, + "37405": -0.0027431037, + "37406": 0.0337733201, + "37407": -0.0021509665, + "37408": 0.0296653124, + "37409": -0.0018718463, + "37410": 0.0262063328, + "37411": -0.0016383077, + "37412": 0.0230501694, + "37413": -0.0014258598, + "37414": 0.0201699883, + "37415": -0.0012325799, + "37416": 0.0175432271, + "37417": -0.0010568561, + "37418": 0.0151496526, + "37419": -0.0008972445, + "37420": 0.0129710675, + "37421": -0.0007524486, + "37422": 0.0109053842, + "37423": -0.0006567651, + "37424": 0.0091259782, + "37425": -0.0005267664, + "37426": 0.0075070404, + "37427": -0.0004139551, + "37428": 0.0060499578, + "37429": -0.0003128683, + "37430": 0.0047374939, + "37431": -0.0002222033, + "37432": 0.0035587934, + "37433": -0.0001411457, + "37434": 0.0025036549, + "37435": -0.0000689317, + "37436": 0.0015624062, + "37437": -0.0000048393, + "37438": 0.0007258377, + "37439": 0.0000518168, + "37440": 0.0001490016, + "37441": -0.0000107787, + "37442": 0.0, + "37443": 0.0, + "37444": 0.0000000003, + "37445": 0.0, + "37446": 0.0000000003, + "37447": -0.0, + "37448": 0.0000036854, + "37449": -0.0000002665, + "37450": 0.0000035902, + "37451": -0.0000002596, + "37452": 0.0000034814, + "37453": -0.0000002517, + "37454": 0.0000033786, + "37455": -0.0000002442, + "37456": 0.0000032817, + "37457": -0.0000002372, + "37458": 0.0000031907, + "37459": -0.0000002306, + "37460": 0.0000031053, + "37461": -0.0000002244, + "37462": 0.0000030252, + "37463": -0.0000002186, + "37464": 0.0000029503, + "37465": -0.0000002132, + "37466": 0.0000028801, + "37467": -0.0000002081, + "37468": 0.0000028144, + "37469": -0.0000002033, + "37470": 0.0000027526, + "37471": -0.0000001988, + "37472": 0.0000026946, + "37473": -0.0000001946, + "37474": 0.0000000063, + "37475": -0.0000000005, + "37476": 0.0000000062, + "37477": -0.0000000003, + "37478": 0.000002525, + "37479": -0.0000001824, + "37480": 0.0000024911, + "37481": -0.0000001799, + "37482": 0.0000024459, + "37483": -0.0000001767, + "37484": 0.0000024021, + "37485": -0.0000001735, + "37486": 0.0000023596, + "37487": -0.0000001704, + "37488": 0.0000023182, + "37489": -0.0000001674, + "37490": 0.0000022778, + "37491": -0.0000001645, + "37492": 0.0000000125, + "37493": -0.0000000009, + "37494": 0.0000021874, + "37495": -0.000000158, + "37496": 0.0000000131, + "37497": -0.0000000009, + "37498": 0.0000000115, + "37499": -0.0000000007, + "37500": 0.0000020744, + "37501": -0.0000001498, + "37502": 0.0000020486, + "37503": -0.0000001479, + "37504": 0.0000020125, + "37505": -0.0000001453, + "37506": 0.0000019769, + "37507": -0.0000001427, + "37508": 0.000001942, + "37509": -0.0000001402, + "37510": 0.0000019079, + "37511": -0.0000001378, + "37512": 0.0000018745, + "37513": -0.0000001353, + "37514": 0.0000018421, + "37515": -0.000000133, + "37516": 0.0000018106, + "37517": -0.0000001307, + "37518": 0.0000000117, + "37519": -0.0000000008, + "37520": 0.0000017413, + "37521": -0.0000001257, + "37522": 0.0000017221, + "37523": -0.0000001243, + "37524": 0.0000000102, + "37525": -0.0000000007, + "37526": 0.0000000084, + "37527": -0.0000000005, + "37528": 0.0000016348, + "37529": -0.000000118, + "37530": 0.0000016194, + "37531": -0.0000001169, + "37532": 0.0000000081, + "37533": -0.0000000006, + "37534": 0.0000015662, + "37535": -0.0000001131, + "37536": 0.0000015534, + "37537": -0.0000001122, + "37538": 0.0000000063, + "37539": -0.0000000005, + "37540": 0.000000005, + "37541": -0.0000000003, + "37542": 0.0000000045, + "37543": -0.0000000003, + "37544": 0.000000004, + "37545": -0.0000000003, + "37546": 0.0000000036, + "37547": -0.0000000003, + "37548": 0.0000014367, + "37549": -0.0000001037, + "37550": 0.0000000032, + "37551": -0.0000000002, + "37552": 0.0000000023, + "37553": 0.0, + "37554": 0.0000000001, + "37555": -0.0, + "37556": 0.0000013754, + "37557": -0.0000000993, + "37558": 0.0000013681, + "37559": -0.0000000988, + "37560": 0.0000013539, + "37561": -0.0000000977, + "37562": 0.0000013398, + "37563": -0.0000000967, + "37564": 0.000001326, + "37565": -0.0000000957, + "37566": 0.0000013125, + "37567": -0.0000000948, + "37568": 0.0000012991, + "37569": -0.0000000938, + "37570": 0.0000012859, + "37571": -0.0000000928, + "37572": 0.000001273, + "37573": -0.0000000919, + "37574": 0.0000012603, + "37575": -0.000000091, + "37576": 0.0000012479, + "37577": -0.0000000901, + "37578": 0.0010852687, + "37579": -0.0000578063, + "37580": 0.0012744857, + "37581": -0.0000724466, + "37582": 0.001237593, + "37583": -0.0000698564, + "37584": 0.0011994936, + "37585": -0.0000671767, + "37586": 0.0011622689, + "37587": -0.0000645574, + "37588": 0.0011267869, + "37589": -0.0000620611, + "37590": 0.0010938895, + "37591": -0.0000597484, + "37592": 0.0010643769, + "37593": -0.0000576771, + "37594": 0.0010389879, + "37595": -0.0000559004, + "37596": 0.0010183831, + "37597": -0.0000544662, + "37598": 0.0010031309, + "37599": -0.0000534157, + "37600": 0.0009936954, + "37601": -0.0000527826, + "37602": 0.0009904271, + "37603": -0.0000525926, + "37604": 0.0009935548, + "37605": -0.0000528628, + "37606": 0.0010031795, + "37607": -0.000053601, + "37608": 0.0010192686, + "37609": -0.0000548056, + "37610": 0.0010416519, + "37611": -0.000056465, + "37612": 0.0010700185, + "37613": -0.0000585577, + "37614": 0.0011039142, + "37615": -0.0000610515, + "37616": 0.001142742, + "37617": -0.0000639042, + "37618": 0.0011857638, + "37619": -0.0000670631, + "37620": 0.0012321053, + "37621": -0.0000704656, + "37622": 0.0012807649, + "37623": -0.0000740398, + "37624": 0.0013306266, + "37625": -0.0000777053, + "37626": 0.0013804771, + "37627": -0.0000813744, + "37628": 0.0014290286, + "37629": -0.0000860034, + "37630": 0.001476049, + "37631": -0.0000894765, + "37632": 0.0015292816, + "37633": -0.0000867417, + "37634": 0.0015532161, + "37635": -0.0000951998, + "37636": 0.0015964736, + "37637": -0.0000914883, + "37638": 0.0016175321, + "37639": -0.0000930044, + "37640": 0.001631109, + "37641": -0.0000940133, + "37642": 0.0016349501, + "37643": -0.0000943567, + "37644": 0.0016283866, + "37645": -0.0000939879, + "37646": 0.0016109928, + "37647": -0.0000928771, + "37648": 0.0015825995, + "37649": -0.0000910121, + "37650": 0.0015318524, + "37651": -0.000094238, + "37652": 0.0014948206, + "37653": -0.0000851583, + "37654": 0.0014231675, + "37655": -0.0000864966, + "37656": 0.0013562401, + "37657": -0.0000817144, + "37658": 0.0012801125, + "37659": -0.0000752886, + "37660": 0.0011963247, + "37661": -0.0000692821, + "37662": 0.0011083053, + "37663": -0.0000629718, + "37664": 0.0010165192, + "37665": -0.0000563882, + "37666": 0.0009224828, + "37667": -0.0000496412, + "37668": 0.0008277171, + "37669": -0.0000428413, + "37670": 0.0007336996, + "37671": -0.0000360953, + "37672": 0.0006418274, + "37673": -0.0000295043, + "37674": 0.0005533869, + "37675": -0.0000231612, + "37676": 0.0004695306, + "37677": -0.000017149, + "37678": 0.000391262, + "37679": -0.0000115397, + "37680": 0.0003194278, + "37681": -0.0000063941, + "37682": 0.000254717, + "37683": -0.0000017614, + "37684": 0.0001976657, + "37685": 0.0000023202, + "37686": 0.0000237678, + "37687": 0.000021546, + "37688": 0.0000217946, + "37689": 0.0000218585, + "37690": 0.0000219232, + "37691": 0.0000219753, + "37692": 0.0000220158, + "37693": 0.0000220447, + "37694": 0.0000220621, + "37695": 0.000022068, + "37696": 0.0000220626, + "37697": 0.000022046, + "37698": 0.0000220183, + "37699": 0.0000219797, + "37700": 0.0000219303, + "37701": 0.0000218703, + "37702": 0.0000217998, + "37703": 0.0000217192, + "37704": 0.0000216295, + "37705": 0.0000215395, + "37706": 0.0000214575, + "37707": 0.0000213856, + "37708": 0.0000213244, + "37709": 0.0000212743, + "37710": 0.000021236, + "37711": 0.0000212101, + "37712": 0.0000211973, + "37713": 0.0000211983, + "37714": 0.0000212139, + "37715": 0.0000212447, + "37716": 0.0000212917, + "37717": 0.0000213555, + "37718": 0.000021437, + "37719": 0.0000215371, + "37720": 0.0000216565, + "37721": 0.000021796, + "37722": 0.0000219565, + "37723": 0.0000221386, + "37724": 0.0000223431, + "37725": 0.0000225707, + "37726": 0.000022822, + "37727": 0.0000230977, + "37728": 0.0000233982, + "37729": 0.000023724, + "37730": 0.0000240756, + "37731": 0.0000244532, + "37732": 0.0000248571, + "37733": 0.0000252875, + "37734": -0.0000018252, + "37735": 0.0, + "37736": 0.0, + "37737": 0.0, + "37738": 0.0, + "37739": -0.0, + "37740": 0.0000009053, + "37741": -0.0000000653, + "37742": 0.0000009192, + "37743": -0.0000000663, + "37744": 0.0000009289, + "37745": -0.0000000671, + "37746": 0.0000009393, + "37747": -0.0000000678, + "37748": 0.0000009502, + "37749": -0.0000000686, + "37750": 0.0000009618, + "37751": -0.0000000694, + "37752": 0.0000009739, + "37753": -0.0000000703, + "37754": 0.0000009866, + "37755": -0.0000000712, + "37756": 0.000001, + "37757": -0.0000000722, + "37758": 0.0000010139, + "37759": -0.0000000732, + "37760": 0.0000010285, + "37761": -0.0000000742, + "37762": 0.0000010437, + "37763": -0.0000000753, + "37764": 0.0000010594, + "37765": -0.0000000765, + "37766": 0.0000010758, + "37767": -0.0000000777, + "37768": 0.0000010927, + "37769": -0.0000000789, + "37770": 0.0000011101, + "37771": -0.0000000801, + "37772": 0.000001128, + "37773": -0.0000000814, + "37774": 0.0000011465, + "37775": -0.0000000828, + "37776": 0.0000011653, + "37777": -0.0000000841, + "37778": 0.0000011845, + "37779": -0.0000000855, + "37780": 0.0000012041, + "37781": -0.0000000869, + "37782": 0.0000012239, + "37783": -0.0000000884, + "37784": 0.000001244, + "37785": -0.0000000898, + "37786": 0.0000012642, + "37787": -0.0000000913, + "37788": 0.0000012845, + "37789": -0.0000000927, + "37790": 0.000000005, + "37791": -0.0000000004, + "37792": 0.0000013183, + "37793": -0.0000000952, + "37794": 0.0000000059, + "37795": -0.0000000004, + "37796": 0.0000013585, + "37797": -0.0000000981, + "37798": 0.0000013855, + "37799": -0.0000001, + "37800": 0.0000014054, + "37801": -0.0000001015, + "37802": 0.000001425, + "37803": -0.0000001029, + "37804": 0.0000000076, + "37805": -0.0000000005, + "37806": 0.0000014562, + "37807": -0.0000001051, + "37808": 0.0000014826, + "37809": -0.000000107, + "37810": 0.0000015014, + "37811": -0.0000001084, + "37812": 0.0000000082, + "37813": -0.0000000006, + "37814": 0.0000015302, + "37815": -0.0000001105, + "37816": 0.0000000083, + "37817": -0.0000000006, + "37818": 0.0000000071, + "37819": -0.0000000005, + "37820": 0.000000007, + "37821": -0.0000000005, + "37822": 0.0000015999, + "37823": -0.0000001155, + "37824": 0.0000000079, + "37825": -0.0000000006, + "37826": 0.0000016328, + "37827": -0.0000001179, + "37828": 0.000001657, + "37829": -0.0000001196, + "37830": 0.0000016724, + "37831": -0.0000001207, + "37832": 0.0000000069, + "37833": -0.0000000005, + "37834": 0.0000000057, + "37835": -0.0000000004, + "37836": 0.0000017063, + "37837": -0.0000001232, + "37838": 0.000000006, + "37839": -0.0000000004, + "37840": 0.0000017311, + "37841": -0.000000125, + "37842": 0.0000000052, + "37843": -0.0000000004, + "37844": 0.0000000042, + "37845": -0.0000000003, + "37846": 0.0000000039, + "37847": -0.0000000003, + "37848": 0.0000017699, + "37849": -0.0000001278, + "37850": 0.0000000038, + "37851": -0.0000000003, + "37852": 0.000000003, + "37853": 0.0, + "37854": 0.0, + "37855": 0.0, + "37856": 0.0, + "37857": 0.0, + "37858": -0.0, + "37859": 0.0000017935, + "37860": -0.0000001295, + "37861": 0.000001803, + "37862": -0.0000001302, + "37863": 0.0000018018, + "37864": -0.0000001301, + "37865": 0.0000017994, + "37866": -0.0000001299, + "37867": 0.0000017958, + "37868": -0.0000001296, + "37869": 0.000001791, + "37870": -0.0000001293, + "37871": 0.0000017853, + "37872": -0.0000001289, + "37873": 0.0000017787, + "37874": -0.0000001284, + "37875": 0.0000017713, + "37876": -0.0000001279, + "37877": 0.0000017632, + "37878": -0.0000001273, + "37879": 0.0000017547, + "37880": -0.0000001267, + "37881": 0.0000017458, + "37882": -0.000000126, + "37883": 0.0000017367, + "37884": -0.0000001254, + "37885": 0.0000017274, + "37886": -0.0000001247, + "37887": 0.0000017181, + "37888": -0.000000124, + "37889": 0.0000017088, + "37890": -0.0000001234, + "37891": 0.0000016996, + "37892": -0.0000001227, + "37893": 0.0000016904, + "37894": -0.000000122, + "37895": 0.0000016812, + "37896": -0.0000001214, + "37897": 0.0000016721, + "37898": -0.0000001207, + "37899": 0.0000016628, + "37900": -0.0000001201, + "37901": 0.0013375144, + "37902": -0.000084935, + "37903": 0.0034075131, + "37904": -0.0002296366, + "37905": 0.003504478, + "37906": -0.0002365826, + "37907": 0.0036085533, + "37908": -0.0002440308, + "37909": 0.0037320835, + "37910": -0.0002528713, + "37911": 0.0038772889, + "37912": -0.0002632635, + "37913": 0.0040462522, + "37914": -0.000275357, + "37915": 0.0042409116, + "37916": -0.0002892915, + "37917": 0.0044629895, + "37918": -0.0003051915, + "37919": 0.0047139133, + "37920": -0.0003231607, + "37921": 0.0049962171, + "37922": -0.0003448587, + "37923": 0.0053090511, + "37924": -0.000367244, + "37925": 0.00565075, + "37926": -0.0003917054, + "37927": 0.0060222562, + "37928": -0.0004183107, + "37929": 0.0064221846, + "37930": -0.0004469629, + "37931": 0.0068483283, + "37932": -0.0004775062, + "37933": 0.0072976164, + "37934": -0.0005097228, + "37935": 0.0077660916, + "37936": -0.0005433307, + "37937": 0.0082489235, + "37938": -0.0005779853, + "37939": 0.0087404618, + "37940": -0.0006132823, + "37941": 0.0092343342, + "37942": -0.0006487651, + "37943": 0.0097235887, + "37944": -0.0006839349, + "37945": 0.010200881, + "37946": -0.000718264, + "37947": 0.0106586979, + "37948": -0.0007512119, + "37949": 0.0110896126, + "37950": -0.000782244, + "37951": 0.0114865584, + "37952": -0.000810851, + "37953": 0.01184311, + "37954": -0.0008365692, + "37955": 0.0121537574, + "37956": -0.0008590009, + "37957": 0.01241416, + "37958": -0.0008778321, + "37959": 0.0126213685, + "37960": -0.000892849, + "37961": 0.0127740023, + "37962": -0.0009039507, + "37963": 0.0128723769, + "37964": -0.0009111585, + "37965": 0.0129185751, + "37966": -0.0009146208, + "37967": 0.0129164615, + "37968": -0.0009146144, + "37969": 0.0128716432, + "37970": -0.0009115415, + "37971": 0.0127913832, + "37972": -0.0009059233, + "37973": 0.0126844771, + "37974": -0.0008983909, + "37975": 0.012561105, + "37976": -0.0008896749, + "37977": 0.0124326763, + "37978": -0.0008805937, + "37979": 0.0123116826, + "37980": -0.0008720434, + "37981": 0.0122115812, + "37982": -0.0008649887, + "37983": 0.0121467252, + "37984": -0.0008604587, + "37985": 0.0121323621, + "37986": -0.0008595466, + "37987": 0.0121847152, + "37988": -0.0008634158, + "37989": 0.0123211645, + "37990": -0.0008733135, + "37991": 0.0125605334, + "37992": -0.0008905917, + "37993": 0.0129234857, + "37994": -0.0009167364, + "37995": 0.013433028, + "37996": -0.0009534048, + "37997": 0.0141151023, + "37998": -0.0010024691, + "37999": 0.0149992462 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_CStenosis_steadyPressure.json b/tests/cases/results/result_pulsatileFlow_CStenosis_steadyPressure.json index 41027b2a9..55d283afd 100644 --- a/tests/cases/results/result_pulsatileFlow_CStenosis_steadyPressure.json +++ b/tests/cases/results/result_pulsatileFlow_CStenosis_steadyPressure.json @@ -1 +1,3020 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0","101":"branch0_seg0","102":"branch0_seg0","103":"branch0_seg0","104":"branch0_seg0","105":"branch0_seg0","106":"branch0_seg0","107":"branch0_seg0","108":"branch0_seg0","109":"branch0_seg0","110":"branch0_seg0","111":"branch0_seg0","112":"branch0_seg0","113":"branch0_seg0","114":"branch0_seg0","115":"branch0_seg0","116":"branch0_seg0","117":"branch0_seg0","118":"branch0_seg0","119":"branch0_seg0","120":"branch0_seg0","121":"branch0_seg0","122":"branch0_seg0","123":"branch0_seg0","124":"branch0_seg0","125":"branch0_seg0","126":"branch0_seg0","127":"branch0_seg0","128":"branch0_seg0","129":"branch0_seg0","130":"branch0_seg0","131":"branch0_seg0","132":"branch0_seg0","133":"branch0_seg0","134":"branch0_seg0","135":"branch0_seg0","136":"branch0_seg0","137":"branch0_seg0","138":"branch0_seg0","139":"branch0_seg0","140":"branch0_seg0","141":"branch0_seg0","142":"branch0_seg0","143":"branch0_seg0","144":"branch0_seg0","145":"branch0_seg0","146":"branch0_seg0","147":"branch0_seg0","148":"branch0_seg0","149":"branch0_seg0","150":"branch0_seg0","151":"branch0_seg0","152":"branch0_seg0","153":"branch0_seg0","154":"branch0_seg0","155":"branch0_seg0","156":"branch0_seg0","157":"branch0_seg0","158":"branch0_seg0","159":"branch0_seg0","160":"branch0_seg0","161":"branch0_seg0","162":"branch0_seg0","163":"branch0_seg0","164":"branch0_seg0","165":"branch0_seg0","166":"branch0_seg0","167":"branch0_seg0","168":"branch0_seg0","169":"branch0_seg0","170":"branch0_seg0","171":"branch0_seg0","172":"branch0_seg0","173":"branch0_seg0","174":"branch0_seg0","175":"branch0_seg0","176":"branch0_seg0","177":"branch0_seg0","178":"branch0_seg0","179":"branch0_seg0","180":"branch0_seg0","181":"branch0_seg0","182":"branch0_seg0","183":"branch0_seg0","184":"branch0_seg0","185":"branch0_seg0","186":"branch0_seg0","187":"branch0_seg0","188":"branch0_seg0","189":"branch0_seg0","190":"branch0_seg0","191":"branch0_seg0","192":"branch0_seg0","193":"branch0_seg0","194":"branch0_seg0","195":"branch0_seg0","196":"branch0_seg0","197":"branch0_seg0","198":"branch0_seg0","199":"branch0_seg0","200":"branch0_seg0","201":"branch0_seg0","202":"branch0_seg0","203":"branch0_seg0","204":"branch0_seg0","205":"branch0_seg0","206":"branch0_seg0","207":"branch0_seg0","208":"branch0_seg0","209":"branch0_seg0","210":"branch0_seg0","211":"branch0_seg0","212":"branch0_seg0","213":"branch0_seg0","214":"branch0_seg0","215":"branch0_seg0","216":"branch0_seg0","217":"branch0_seg0","218":"branch0_seg0","219":"branch0_seg0","220":"branch0_seg0","221":"branch0_seg0","222":"branch0_seg0","223":"branch0_seg0","224":"branch0_seg0","225":"branch0_seg0","226":"branch0_seg0","227":"branch0_seg0","228":"branch0_seg0","229":"branch0_seg0","230":"branch0_seg0","231":"branch0_seg0","232":"branch0_seg0","233":"branch0_seg0","234":"branch0_seg0","235":"branch0_seg0","236":"branch0_seg0","237":"branch0_seg0","238":"branch0_seg0","239":"branch0_seg0","240":"branch0_seg0","241":"branch0_seg0","242":"branch0_seg0","243":"branch0_seg0","244":"branch0_seg0","245":"branch0_seg0","246":"branch0_seg0","247":"branch0_seg0","248":"branch0_seg0","249":"branch0_seg0","250":"branch0_seg0","251":"branch0_seg0","252":"branch0_seg0","253":"branch0_seg0","254":"branch0_seg0","255":"branch0_seg0","256":"branch0_seg0","257":"branch0_seg0","258":"branch0_seg0","259":"branch0_seg0","260":"branch0_seg0","261":"branch0_seg0","262":"branch0_seg0","263":"branch0_seg0","264":"branch0_seg0","265":"branch0_seg0","266":"branch0_seg0","267":"branch0_seg0","268":"branch0_seg0","269":"branch0_seg0","270":"branch0_seg0","271":"branch0_seg0","272":"branch0_seg0","273":"branch0_seg0","274":"branch0_seg0","275":"branch0_seg0","276":"branch0_seg0","277":"branch0_seg0","278":"branch0_seg0","279":"branch0_seg0","280":"branch0_seg0","281":"branch0_seg0","282":"branch0_seg0","283":"branch0_seg0","284":"branch0_seg0","285":"branch0_seg0","286":"branch0_seg0","287":"branch0_seg0","288":"branch0_seg0","289":"branch0_seg0","290":"branch0_seg0","291":"branch0_seg0","292":"branch0_seg0","293":"branch0_seg0","294":"branch0_seg0","295":"branch0_seg0","296":"branch0_seg0","297":"branch0_seg0","298":"branch0_seg0","299":"branch0_seg0","300":"branch0_seg0","301":"branch0_seg0","302":"branch0_seg0","303":"branch0_seg0","304":"branch0_seg0","305":"branch0_seg0","306":"branch0_seg0","307":"branch0_seg0","308":"branch0_seg0","309":"branch0_seg0","310":"branch0_seg0","311":"branch0_seg0","312":"branch0_seg0","313":"branch0_seg0","314":"branch0_seg0","315":"branch0_seg0","316":"branch0_seg0","317":"branch0_seg0","318":"branch0_seg0","319":"branch0_seg0","320":"branch0_seg0","321":"branch0_seg0","322":"branch0_seg0","323":"branch0_seg0","324":"branch0_seg0","325":"branch0_seg0","326":"branch0_seg0","327":"branch0_seg0","328":"branch0_seg0","329":"branch0_seg0","330":"branch0_seg0","331":"branch0_seg0","332":"branch0_seg0","333":"branch0_seg0","334":"branch0_seg0","335":"branch0_seg0","336":"branch0_seg0","337":"branch0_seg0","338":"branch0_seg0","339":"branch0_seg0","340":"branch0_seg0","341":"branch0_seg0","342":"branch0_seg0","343":"branch0_seg0","344":"branch0_seg0","345":"branch0_seg0","346":"branch0_seg0","347":"branch0_seg0","348":"branch0_seg0","349":"branch0_seg0","350":"branch0_seg0","351":"branch0_seg0","352":"branch0_seg0","353":"branch0_seg0","354":"branch0_seg0","355":"branch0_seg0","356":"branch0_seg0","357":"branch0_seg0","358":"branch0_seg0","359":"branch0_seg0","360":"branch0_seg0","361":"branch0_seg0","362":"branch0_seg0","363":"branch0_seg0","364":"branch0_seg0","365":"branch0_seg0","366":"branch0_seg0","367":"branch0_seg0","368":"branch0_seg0","369":"branch0_seg0","370":"branch0_seg0","371":"branch0_seg0","372":"branch0_seg0","373":"branch0_seg0","374":"branch0_seg0","375":"branch0_seg0","376":"branch0_seg0","377":"branch0_seg0","378":"branch0_seg0","379":"branch0_seg0","380":"branch0_seg0","381":"branch0_seg0","382":"branch0_seg0","383":"branch0_seg0","384":"branch0_seg0","385":"branch0_seg0","386":"branch0_seg0","387":"branch0_seg0","388":"branch0_seg0","389":"branch0_seg0","390":"branch0_seg0","391":"branch0_seg0","392":"branch0_seg0","393":"branch0_seg0","394":"branch0_seg0","395":"branch0_seg0","396":"branch0_seg0","397":"branch0_seg0","398":"branch0_seg0","399":"branch0_seg0","400":"branch0_seg0","401":"branch0_seg0","402":"branch0_seg0","403":"branch0_seg0","404":"branch0_seg0","405":"branch0_seg0","406":"branch0_seg0","407":"branch0_seg0","408":"branch0_seg0","409":"branch0_seg0","410":"branch0_seg0","411":"branch0_seg0","412":"branch0_seg0","413":"branch0_seg0","414":"branch0_seg0","415":"branch0_seg0","416":"branch0_seg0","417":"branch0_seg0","418":"branch0_seg0","419":"branch0_seg0","420":"branch0_seg0","421":"branch0_seg0","422":"branch0_seg0","423":"branch0_seg0","424":"branch0_seg0","425":"branch0_seg0","426":"branch0_seg0","427":"branch0_seg0","428":"branch0_seg0","429":"branch0_seg0","430":"branch0_seg0","431":"branch0_seg0","432":"branch0_seg0","433":"branch0_seg0","434":"branch0_seg0","435":"branch0_seg0","436":"branch0_seg0","437":"branch0_seg0","438":"branch0_seg0","439":"branch0_seg0","440":"branch0_seg0","441":"branch0_seg0","442":"branch0_seg0","443":"branch0_seg0","444":"branch0_seg0","445":"branch0_seg0","446":"branch0_seg0","447":"branch0_seg0","448":"branch0_seg0","449":"branch0_seg0","450":"branch0_seg0","451":"branch0_seg0","452":"branch0_seg0","453":"branch0_seg0","454":"branch0_seg0","455":"branch0_seg0","456":"branch0_seg0","457":"branch0_seg0","458":"branch0_seg0","459":"branch0_seg0","460":"branch0_seg0","461":"branch0_seg0","462":"branch0_seg0","463":"branch0_seg0","464":"branch0_seg0","465":"branch0_seg0","466":"branch0_seg0","467":"branch0_seg0","468":"branch0_seg0","469":"branch0_seg0","470":"branch0_seg0","471":"branch0_seg0","472":"branch0_seg0","473":"branch0_seg0","474":"branch0_seg0","475":"branch0_seg0","476":"branch0_seg0","477":"branch0_seg0","478":"branch0_seg0","479":"branch0_seg0","480":"branch0_seg0","481":"branch0_seg0","482":"branch0_seg0","483":"branch0_seg0","484":"branch0_seg0","485":"branch0_seg0","486":"branch0_seg0","487":"branch0_seg0","488":"branch0_seg0","489":"branch0_seg0","490":"branch0_seg0","491":"branch0_seg0","492":"branch0_seg0","493":"branch0_seg0","494":"branch0_seg0","495":"branch0_seg0","496":"branch0_seg0","497":"branch0_seg0","498":"branch0_seg0","499":"branch0_seg0","500":"branch0_seg0"},"time":{"0":0.0,"1":0.0125663706,"2":0.0251327412,"3":0.0376991118,"4":0.0502654825,"5":0.0628318531,"6":0.0753982237,"7":0.0879645943,"8":0.1005309649,"9":0.1130973355,"10":0.1256637061,"11":0.1382300768,"12":0.1507964474,"13":0.163362818,"14":0.1759291886,"15":0.1884955592,"16":0.2010619298,"17":0.2136283004,"18":0.2261946711,"19":0.2387610417,"20":0.2513274123,"21":0.2638937829,"22":0.2764601535,"23":0.2890265241,"24":0.3015928947,"25":0.3141592653,"26":0.326725636,"27":0.3392920066,"28":0.3518583772,"29":0.3644247478,"30":0.3769911184,"31":0.389557489,"32":0.4021238596,"33":0.4146902303,"34":0.4272566009,"35":0.4398229715,"36":0.4523893421,"37":0.4649557127,"38":0.4775220833,"39":0.4900884539,"40":0.5026548246,"41":0.5152211952,"42":0.5277875658,"43":0.5403539364,"44":0.552920307,"45":0.5654866776,"46":0.5780530482,"47":0.5906194189,"48":0.6031857895,"49":0.6157521601,"50":0.6283185307,"51":0.6408849013,"52":0.6534512719,"53":0.6660176425,"54":0.6785840132,"55":0.6911503838,"56":0.7037167544,"57":0.716283125,"58":0.7288494956,"59":0.7414158662,"60":0.7539822368,"61":0.7665486075,"62":0.7791149781,"63":0.7916813487,"64":0.8042477193,"65":0.8168140899,"66":0.8293804605,"67":0.8419468311,"68":0.8545132018,"69":0.8670795724,"70":0.879645943,"71":0.8922123136,"72":0.9047786842,"73":0.9173450548,"74":0.9299114254,"75":0.942477796,"76":0.9550441667,"77":0.9676105373,"78":0.9801769079,"79":0.9927432785,"80":1.0053096491,"81":1.0178760197,"82":1.0304423903,"83":1.043008761,"84":1.0555751316,"85":1.0681415022,"86":1.0807078728,"87":1.0932742434,"88":1.105840614,"89":1.1184069846,"90":1.1309733553,"91":1.1435397259,"92":1.1561060965,"93":1.1686724671,"94":1.1812388377,"95":1.1938052083,"96":1.2063715789,"97":1.2189379496,"98":1.2315043202,"99":1.2440706908,"100":1.2566370614,"101":1.269203432,"102":1.2817698026,"103":1.2943361732,"104":1.3069025439,"105":1.3194689145,"106":1.3320352851,"107":1.3446016557,"108":1.3571680263,"109":1.3697343969,"110":1.3823007675,"111":1.3948671382,"112":1.4074335088,"113":1.4199998794,"114":1.43256625,"115":1.4451326206,"116":1.4576989912,"117":1.4702653618,"118":1.4828317325,"119":1.4953981031,"120":1.5079644737,"121":1.5205308443,"122":1.5330972149,"123":1.5456635855,"124":1.5582299561,"125":1.5707963267,"126":1.5833626974,"127":1.595929068,"128":1.6084954386,"129":1.6210618092,"130":1.6336281798,"131":1.6461945504,"132":1.658760921,"133":1.6713272917,"134":1.6838936623,"135":1.6964600329,"136":1.7090264035,"137":1.7215927741,"138":1.7341591447,"139":1.7467255153,"140":1.759291886,"141":1.7718582566,"142":1.7844246272,"143":1.7969909978,"144":1.8095573684,"145":1.822123739,"146":1.8346901096,"147":1.8472564803,"148":1.8598228509,"149":1.8723892215,"150":1.8849555921,"151":1.8975219627,"152":1.9100883333,"153":1.9226547039,"154":1.9352210746,"155":1.9477874452,"156":1.9603538158,"157":1.9729201864,"158":1.985486557,"159":1.9980529276,"160":2.0106192982,"161":2.0231856689,"162":2.0357520395,"163":2.0483184101,"164":2.0608847807,"165":2.0734511513,"166":2.0860175219,"167":2.0985838925,"168":2.1111502632,"169":2.1237166338,"170":2.1362830044,"171":2.148849375,"172":2.1614157456,"173":2.1739821162,"174":2.1865484868,"175":2.1991148574,"176":2.2116812281,"177":2.2242475987,"178":2.2368139693,"179":2.2493803399,"180":2.2619467105,"181":2.2745130811,"182":2.2870794517,"183":2.2996458224,"184":2.312212193,"185":2.3247785636,"186":2.3373449342,"187":2.3499113048,"188":2.3624776754,"189":2.375044046,"190":2.3876104167,"191":2.4001767873,"192":2.4127431579,"193":2.4253095285,"194":2.4378758991,"195":2.4504422697,"196":2.4630086403,"197":2.475575011,"198":2.4881413816,"199":2.5007077522,"200":2.5132741228,"201":2.5258404934,"202":2.538406864,"203":2.5509732346,"204":2.5635396053,"205":2.5761059759,"206":2.5886723465,"207":2.6012387171,"208":2.6138050877,"209":2.6263714583,"210":2.6389378289,"211":2.6515041996,"212":2.6640705702,"213":2.6766369408,"214":2.6892033114,"215":2.701769682,"216":2.7143360526,"217":2.7269024232,"218":2.7394687939,"219":2.7520351645,"220":2.7646015351,"221":2.7771679057,"222":2.7897342763,"223":2.8023006469,"224":2.8148670175,"225":2.8274333881,"226":2.8399997588,"227":2.8525661294,"228":2.8651325,"229":2.8776988706,"230":2.8902652412,"231":2.9028316118,"232":2.9153979824,"233":2.9279643531,"234":2.9405307237,"235":2.9530970943,"236":2.9656634649,"237":2.9782298355,"238":2.9907962061,"239":3.0033625767,"240":3.0159289474,"241":3.028495318,"242":3.0410616886,"243":3.0536280592,"244":3.0661944298,"245":3.0787608004,"246":3.091327171,"247":3.1038935417,"248":3.1164599123,"249":3.1290262829,"250":3.1415926535,"251":3.1541590241,"252":3.1667253947,"253":3.1792917653,"254":3.191858136,"255":3.2044245066,"256":3.2169908772,"257":3.2295572478,"258":3.2421236184,"259":3.254689989,"260":3.2672563596,"261":3.2798227303,"262":3.2923891009,"263":3.3049554715,"264":3.3175218421,"265":3.3300882127,"266":3.3426545833,"267":3.3552209539,"268":3.3677873246,"269":3.3803536952,"270":3.3929200658,"271":3.4054864364,"272":3.418052807,"273":3.4306191776,"274":3.4431855482,"275":3.4557519188,"276":3.4683182895,"277":3.4808846601,"278":3.4934510307,"279":3.5060174013,"280":3.5185837719,"281":3.5311501425,"282":3.5437165131,"283":3.5562828838,"284":3.5688492544,"285":3.581415625,"286":3.5939819956,"287":3.6065483662,"288":3.6191147368,"289":3.6316811074,"290":3.6442474781,"291":3.6568138487,"292":3.6693802193,"293":3.6819465899,"294":3.6945129605,"295":3.7070793311,"296":3.7196457017,"297":3.7322120724,"298":3.744778443,"299":3.7573448136,"300":3.7699111842,"301":3.7824775548,"302":3.7950439254,"303":3.807610296,"304":3.8201766667,"305":3.8327430373,"306":3.8453094079,"307":3.8578757785,"308":3.8704421491,"309":3.8830085197,"310":3.8955748903,"311":3.908141261,"312":3.9207076316,"313":3.9332740022,"314":3.9458403728,"315":3.9584067434,"316":3.970973114,"317":3.9835394846,"318":3.9961058553,"319":4.0086722259,"320":4.0212385965,"321":4.0338049671,"322":4.0463713377,"323":4.0589377083,"324":4.0715040789,"325":4.0840704495,"326":4.0966368202,"327":4.1092031908,"328":4.1217695614,"329":4.134335932,"330":4.1469023026,"331":4.1594686732,"332":4.1720350438,"333":4.1846014145,"334":4.1971677851,"335":4.2097341557,"336":4.2223005263,"337":4.2348668969,"338":4.2474332675,"339":4.2599996381,"340":4.2725660088,"341":4.2851323794,"342":4.29769875,"343":4.3102651206,"344":4.3228314912,"345":4.3353978618,"346":4.3479642324,"347":4.3605306031,"348":4.3730969737,"349":4.3856633443,"350":4.3982297149,"351":4.4107960855,"352":4.4233624561,"353":4.4359288267,"354":4.4484951974,"355":4.461061568,"356":4.4736279386,"357":4.4861943092,"358":4.4987606798,"359":4.5113270504,"360":4.523893421,"361":4.5364597917,"362":4.5490261623,"363":4.5615925329,"364":4.5741589035,"365":4.5867252741,"366":4.5992916447,"367":4.6118580153,"368":4.624424386,"369":4.6369907566,"370":4.6495571272,"371":4.6621234978,"372":4.6746898684,"373":4.687256239,"374":4.6998226096,"375":4.7123889802,"376":4.7249553509,"377":4.7375217215,"378":4.7500880921,"379":4.7626544627,"380":4.7752208333,"381":4.7877872039,"382":4.8003535745,"383":4.8129199452,"384":4.8254863158,"385":4.8380526864,"386":4.850619057,"387":4.8631854276,"388":4.8757517982,"389":4.8883181688,"390":4.9008845395,"391":4.9134509101,"392":4.9260172807,"393":4.9385836513,"394":4.9511500219,"395":4.9637163925,"396":4.9762827631,"397":4.9888491338,"398":5.0014155044,"399":5.013981875,"400":5.0265482456,"401":5.0391146162,"402":5.0516809868,"403":5.0642473574,"404":5.0768137281,"405":5.0893800987,"406":5.1019464693,"407":5.1145128399,"408":5.1270792105,"409":5.1396455811,"410":5.1522119517,"411":5.1647783224,"412":5.177344693,"413":5.1899110636,"414":5.2024774342,"415":5.2150438048,"416":5.2276101754,"417":5.240176546,"418":5.2527429167,"419":5.2653092873,"420":5.2778756579,"421":5.2904420285,"422":5.3030083991,"423":5.3155747697,"424":5.3281411403,"425":5.3407075109,"426":5.3532738816,"427":5.3658402522,"428":5.3784066228,"429":5.3909729934,"430":5.403539364,"431":5.4161057346,"432":5.4286721052,"433":5.4412384759,"434":5.4538048465,"435":5.4663712171,"436":5.4789375877,"437":5.4915039583,"438":5.5040703289,"439":5.5166366995,"440":5.5292030702,"441":5.5417694408,"442":5.5543358114,"443":5.566902182,"444":5.5794685526,"445":5.5920349232,"446":5.6046012938,"447":5.6171676645,"448":5.6297340351,"449":5.6423004057,"450":5.6548667763,"451":5.6674331469,"452":5.6799995175,"453":5.6925658881,"454":5.7051322588,"455":5.7176986294,"456":5.730265,"457":5.7428313706,"458":5.7553977412,"459":5.7679641118,"460":5.7805304824,"461":5.7930968531,"462":5.8056632237,"463":5.8182295943,"464":5.8307959649,"465":5.8433623355,"466":5.8559287061,"467":5.8684950767,"468":5.8810614474,"469":5.893627818,"470":5.9061941886,"471":5.9187605592,"472":5.9313269298,"473":5.9438933004,"474":5.956459671,"475":5.9690260416,"476":5.9815924123,"477":5.9941587829,"478":6.0067251535,"479":6.0192915241,"480":6.0318578947,"481":6.0444242653,"482":6.0569906359,"483":6.0695570066,"484":6.0821233772,"485":6.0946897478,"486":6.1072561184,"487":6.119822489,"488":6.1323888596,"489":6.1449552302,"490":6.1575216009,"491":6.1700879715,"492":6.1826543421,"493":6.1952207127,"494":6.2077870833,"495":6.2203534539,"496":6.2329198245,"497":6.2454861952,"498":6.2580525658,"499":6.2706189364,"500":6.283185307},"flow_in":{"0":0.0000000705,"1":0.012557901,"2":0.02511589,"3":0.0376737998,"4":0.0502317492,"5":0.0627896788,"6":0.0753008825,"7":0.0878063351,"8":0.1003146632,"9":0.1128215535,"10":0.1253291627,"11":0.1377507757,"12":0.1501496299,"13":0.1625598635,"14":0.1749644074,"15":0.1873717961,"16":0.1996611693,"17":0.2118998155,"18":0.2241638251,"19":0.236415153,"20":0.2486728218,"21":0.260787763,"22":0.2728132738,"23":0.2848834998,"24":0.2969313682,"25":0.3089904154,"26":0.3208893298,"27":0.3326496884,"28":0.3444793249,"29":0.3562743224,"30":0.3680866394,"31":0.3797286689,"32":0.3911729936,"33":0.4027161708,"34":0.4142099217,"35":0.4257283858,"36":0.4370735445,"37":0.4481523069,"38":0.4593642675,"39":0.470509629,"40":0.48168829,"41":0.4926975973,"42":0.5033628358,"43":0.5142001087,"44":0.5249513644,"45":0.5357456287,"46":0.5463812395,"47":0.5565867662,"48":0.5670073349,"49":0.5773203826,"50":0.5876871909,"51":0.5979125222,"52":0.6076141219,"53":0.6175775873,"54":0.6274101199,"55":0.6373081189,"56":0.6470879715,"57":0.6562435914,"58":0.6657113276,"59":0.6750230056,"60":0.6844127128,"61":0.6937133887,"62":0.7022833221,"63":0.7112186268,"64":0.7199712458,"65":0.7288152076,"66":0.7376046242,"67":0.745551678,"68":0.7539199132,"69":0.7620775577,"70":0.7703404975,"71":0.7785507897,"72":0.7858967048,"73":0.7936373053,"74":0.801180563,"75":0.8088224921,"76":0.8164150856,"77":0.8231467441,"78":0.8302203099,"79":0.837122922,"80":0.8441110109,"81":0.8510563615,"82":0.8571505872,"83":0.8635266705,"84":0.869761825,"85":0.8760674439,"86":0.8823378306,"87":0.887774001,"88":0.8934249694,"89":0.8989685388,"90":0.9045658077,"91":0.9101362269,"92":0.9148959485,"93":0.9197972996,"94":0.924627836,"95":0.9294937797,"96":0.9343420198,"97":0.9384092,"98":0.9425396611,"99":0.9466384817,"100":0.9507531226,"101":0.9548598534,"102":0.9582207536,"103":0.9615623736,"104":0.9649136338,"105":0.9682600738,"106":0.9716089239,"107":0.9742522034,"108":0.9767904306,"109":0.9793811839,"110":0.9819456741,"111":0.9845232959,"112":0.9864400488,"113":0.9881637935,"114":0.9899840423,"115":0.9917560391,"116":0.9935521619,"117":0.9947359463,"118":0.99563763,"119":0.996680364,"120":0.9976525729,"121":0.9986600443,"122":0.9991069029,"123":0.9991824899,"124":0.9994437127,"125":0.9996121177,"126":0.9998269315,"127":0.999535404,"128":0.9987844202,"129":0.9982631646,"130":0.9976270449,"131":0.9970483572,"132":0.9960194854,"133":0.9944450211,"134":0.993143353,"135":0.9917052869,"136":0.9903354197,"137":0.9885727435,"138":0.9861814398,"139":0.9841044498,"140":0.981870303,"141":0.9797147346,"142":0.9772242801,"143":0.9740263021,"144":0.9711820859,"145":0.9681609887,"146":0.965228332,"147":0.9620185919,"148":0.9580275841,"149":0.9544272101,"150":0.9506315192,"151":0.9469334867,"152":0.9430153917,"153":0.9382484213,"154":0.9339058886,"155":0.929351137,"156":0.9249024948,"157":0.9202893781,"158":0.914766862,"159":0.9096990456,"160":0.9044038793,"161":0.899222388,"162":0.8939299414,"163":0.8876755588,"164":0.8819021442,"165":0.8758882455,"166":0.8699945889,"167":0.8640408113,"168":0.8570814022,"169":0.8506248088,"170":0.8439168075,"171":0.8373345102,"172":0.8306893609,"173":0.8231302424,"174":0.8159778215,"175":0.8086220517,"176":0.8013679564,"177":0.7940630239,"178":0.7859279744,"179":0.7781118558,"180":0.7701362717,"181":0.7622404204,"182":0.7543047027,"183":0.7456220479,"184":0.7371759206,"185":0.7286115295,"186":0.7201062703,"187":0.7115714452,"188":0.7023712684,"189":0.6933315814,"190":0.6842116496,"191":0.6751318402,"192":0.6660319696,"193":0.6563460938,"194":0.6467518572,"195":0.637111801,"196":0.6274946546,"197":0.6178660533,"198":0.6077279343,"199":0.5976205545,"200":0.5874978051,"201":0.5773827405,"202":0.5672638335,"203":0.5567084445,"204":0.5461315447,"205":0.5355654004,"206":0.5249938783,"207":0.5144250451,"208":0.5034887611,"209":0.4924879949,"210":0.4815194698,"211":0.4705348242,"212":0.4595582388,"213":0.4482787142,"214":0.4369015683,"215":0.425573233,"216":0.4142204925,"217":0.4028799545,"218":0.3912959978,"219":0.3795915897,"220":0.3679474072,"221":0.3562731119,"222":0.3446138731,"223":0.3327653164,"224":0.3207841816,"225":0.3088693359,"226":0.2969213457,"227":0.2849899277,"228":0.2729174944,"229":0.2607113701,"230":0.2485720914,"231":0.2363993898,"232":0.2242433997,"233":0.2119885682,"234":0.1996101702,"235":0.1872935554,"236":0.1749460491,"237":0.1626139885,"238":0.1502188542,"239":0.1377216514,"240":0.1252754829,"241":0.1128037973,"242":0.1003448702,"243":0.0878520053,"244":0.075289989,"245":0.0627625484,"246":0.0502178199,"247":0.0376817354,"248":0.0251340469,"249":0.0125614992,"250":0.0000013811,"251":-0.0125649519,"252":-0.0251281774,"253":-0.0376875909,"254":-0.0502163329,"255":-0.0627604106,"256":-0.0752968205,"257":-0.0878370643,"258":-0.1003650567,"259":-0.1127958304,"260":-0.1252752135,"261":-0.1377302919,"262":-0.1501975226,"263":-0.1626510425,"264":-0.1749300963,"265":-0.1872963832,"266":-0.1996190535,"267":-0.2119635321,"268":-0.2242971066,"269":-0.2363753216,"270":-0.248578555,"271":-0.2607192792,"272":-0.272891258,"273":-0.2850476095,"274":-0.2968952668,"275":-0.3088768513,"276":-0.3207914721,"277":-0.3327395748,"278":-0.3446709366,"279":-0.3562470896,"280":-0.3679553996,"281":-0.3795976311,"282":-0.3912729018,"283":-0.402931653,"284":-0.414196677,"285":-0.4255810732,"286":-0.4369057833,"287":-0.4482603365,"288":-0.4595999681,"289":-0.4705153029,"290":-0.4815265437,"291":-0.4924898315,"292":-0.5034770958,"293":-0.5144523718,"294":-0.5249806631,"295":-0.5355711117,"296":-0.5461304816,"297":-0.5567053909,"298":-0.5672725305,"299":-0.5773777516,"300":-0.5875015803,"301":-0.5976161052,"302":-0.6077352821,"303":-0.6178521329,"304":-0.6274997054,"305":-0.6371130935,"306":-0.6467435737,"307":-0.6563655079,"308":-0.6659917151,"309":-0.6751486229,"310":-0.6842099446,"311":-0.6933190593,"312":-0.7024042775,"313":-0.7115014439,"314":-0.7201363433,"315":-0.7286063483,"316":-0.7371588006,"317":-0.7456700292,"318":-0.7542018696,"319":-0.7622851926,"320":-0.7701271744,"321":-0.7780898269,"322":-0.785992144,"323":-0.7939246288,"324":-0.801428681,"325":-0.8086086349,"326":-0.815950638,"327":-0.8232116165,"328":-0.8305131073,"329":-0.837412161,"330":-0.8438989322,"331":-0.8505918447,"332":-0.8571816866,"333":-0.8638230637,"334":-0.8700934425,"335":-0.8758588591,"336":-0.8818767567,"337":-0.8877684138,"338":-0.8937231912,"339":-0.899343349,"340":-0.9043623446,"341":-0.9096819213,"342":-0.9148512074,"343":-0.9200956388,"344":-0.9250462319,"345":-0.9292969532,"346":-0.9338976104,"347":-0.9383232996,"348":-0.9428364729,"349":-0.9471004242,"350":-0.9505643265,"351":-0.9544282534,"352":-0.9580921679,"353":-0.9618560886,"354":-0.9654186453,"355":-0.9680805722,"356":-0.971192814,"357":-0.9740798984,"358":-0.9770795614,"359":-0.9799283442,"360":-0.9817765946,"361":-0.9841251112,"362":-0.9862234947,"363":-0.9884469448,"364":-0.9905719906,"365":-0.9915983679,"366":-0.9931740794,"367":-0.9944751238,"368":-0.9959135018,"369":-0.997283213,"370":-0.9975191889,"371":-0.9982979485,"372":-0.9988053162,"373":-0.9994483799,"374":-1.0000235956,"375":-0.9995215204,"376":-0.9994735417,"377":-0.9991985147,"378":-0.9990370119,"379":-0.998818747,"380":-0.9975790986,"381":-0.9967053469,"382":-0.9956486469,"383":-0.994683421,"384":-0.9936724581,"385":-0.991699912,"386":-0.9900040639,"387":-0.9881698668,"388":-0.9864048443,"389":-0.9846052344,"390":-0.9819068937,"391":-0.9793961971,"392":-0.9767916785,"393":-0.9742340708,"394":-0.9716530077,"395":-0.9682384336,"396":-0.9649236505,"397":-0.9615589719,"398":-0.9582192411,"399":-0.9548670364,"400":-0.9507482127,"401":-0.9466435734,"402":-0.9425318419,"403":-0.9384236564,"404":-0.934313698,"405":-0.9295049901,"406":-0.9246281322,"407":-0.9197853493,"408":-0.9149255289,"409":-0.9100742273,"410":-0.9045923331,"411":-0.8989642265,"412":-0.8934092261,"413":-0.8878176725,"414":-0.8822443956,"415":-0.8761082894,"416":-0.8697531463,"417":-0.8635075217,"418":-0.8572071379,"419":-0.8509341337,"420":-0.8441650018,"421":-0.8371101727,"422":-0.8301981922,"423":-0.8232147875,"424":-0.8162670948,"425":-0.808888265,"426":-0.8011641221,"427":-0.7936126357,"428":-0.7859748211,"429":-0.7783801706,"430":-0.7704170334,"431":-0.7620568397,"432":-0.7538951743,"433":-0.7456342447,"434":-0.7374229472,"435":-0.7289028712,"436":-0.7199426378,"437":-0.7112024831,"438":-0.7023522891,"439":-0.6935571148,"440":-0.6845093557,"441":-0.6749876891,"442":-0.6657029762,"443":-0.6562997865,"444":-0.6469558352,"445":-0.6374114382,"446":-0.6273693716,"447":-0.6175761399,"448":-0.6076584907,"449":-0.5978030502,"450":-0.5877947463,"451":-0.5772755659,"452":-0.5670118238,"453":-0.5566203625,"454":-0.5462927609,"455":-0.5358548585,"456":-0.5249039176,"457":-0.5142094959,"458":-0.5033868146,"459":-0.4926282631,"460":-0.4817965341,"461":-0.4704610568,"462":-0.4593774537,"463":-0.4481679135,"464":-0.4370213418,"465":-0.425832902,"466":-0.4141617827,"467":-0.4027320031,"468":-0.3911815537,"469":-0.3796914392,"470":-0.3681711572,"471":-0.3562349512,"472":-0.3444932382,"473":-0.3326542786,"474":-0.3208639423,"475":-0.3090492944,"476":-0.2969037918,"477":-0.2848935617,"478":-0.2728156954,"479":-0.2607716471,"480":-0.2487106899,"481":-0.2363972758,"482":-0.2241706501,"483":-0.2119006302,"484":-0.1996523074,"485":-0.1873931361,"486":-0.1749542118,"487":-0.1625640135,"488":-0.1501494523,"489":-0.1377470725,"490":-0.125338602,"491":-0.112816955,"492":-0.1003167238,"493":-0.0878057847,"494":-0.0753001996,"495":-0.0627919375,"496":-0.0502306166,"497":-0.0376743727,"498":-0.0251155904,"499":-0.0125580772,"500":0.0000000705},"flow_out":{"0":-0.0000728938,"1":0.0314351679,"2":0.0015511959,"3":0.0588718925,"4":0.033748532,"5":0.0745614923,"6":0.0672626367,"7":0.0930721294,"8":0.0969774726,"9":0.1148806279,"10":0.1240862931,"11":0.1383176493,"12":0.1499077451,"13":0.1626697459,"14":0.1749017122,"15":0.1874178757,"16":0.1993943925,"17":0.2121451092,"18":0.2240273114,"19":0.2364507483,"20":0.2487004285,"21":0.2604618997,"22":0.273070288,"23":0.2848032701,"24":0.2968675124,"25":0.3091303307,"26":0.3204353817,"27":0.332934365,"28":0.3444729152,"29":0.3560783561,"30":0.3683742198,"31":0.3791320757,"32":0.3914735508,"33":0.4028126488,"34":0.4138464526,"35":0.4261976153,"36":0.4363214596,"37":0.4484592038,"38":0.4595868892,"39":0.4699507559,"40":0.4823656606,"41":0.4917821813,"42":0.5036675044,"43":0.5145663633,"44":0.5241772245,"45":0.5366494056,"46":0.5452999977,"47":0.5568818539,"48":0.5675283057,"49":0.5763199443,"50":0.5888266451,"51":0.5966686422,"52":0.6078936267,"53":0.6182575173,"54":0.626181727,"55":0.638683,"56":0.6456905132,"57":0.6565029626,"58":0.6665473597,"59":0.6735746838,"60":0.686012964,"61":0.6921773292,"62":0.7025195224,"63":0.7122007232,"64":0.7183207666,"65":0.7306209251,"66":0.7359507574,"67":0.7457631907,"68":0.7550309829,"69":0.7602522253,"70":0.772322168,"71":0.7767566929,"72":0.7862614446,"73":0.7945344093,"74":0.7996063755,"75":0.8105549724,"76":0.8148400581,"77":0.8234283233,"78":0.8310203041,"79":0.8357666065,"80":0.8455813001,"81":0.8497326606,"82":0.857324514,"83":0.8642471364,"84":0.8686104648,"85":0.8772852333,"86":0.8812581887,"87":0.8878531729,"88":0.8940574889,"89":0.8980238094,"90":0.9055343789,"91":0.9092949705,"92":0.914890641,"93":0.9203405307,"94":0.9238810954,"95":0.9302276464,"96":0.9337231134,"97":0.9383349603,"98":0.9429938899,"99":0.9460746614,"100":0.9512752216,"101":0.9544389115,"102":0.9580971303,"103":0.9619298218,"104":0.9645116493,"105":0.9686009909,"106":0.9713540687,"107":0.9741021832,"108":0.9770750422,"109":0.9791147723,"110":0.9821425184,"111":0.9843962952,"112":0.9862893428,"113":0.9883710195,"114":0.9898227054,"115":0.9918511645,"116":0.9935097226,"117":0.9946121967,"118":0.9957741864,"119":0.9965904109,"120":0.9976921716,"121":0.9986552327,"122":0.9990388295,"123":0.9992560965,"124":0.9993893765,"125":0.9996447176,"126":0.9998106872,"127":0.9995519088,"128":0.9988035254,"129":0.9982077651,"130":0.9977019489,"131":0.9969710642,"132":0.9961487384,"133":0.9944185202,"134":0.9930504794,"135":0.9918709896,"136":0.9901484967,"137":0.9888412704,"138":0.9861183935,"139":0.9839391332,"140":0.9821729249,"141":0.9793722059,"142":0.9776560758,"143":0.9739356598,"144":0.9709119358,"145":0.9686427624,"146":0.9646883437,"147":0.96263428,"148":0.9579179213,"149":0.9540234853,"150":0.9513293683,"151":0.9461597267,"152":0.9438314529,"153":0.9381276924,"154":0.9333444802,"155":0.9302953764,"156":0.923865489,"157":0.9213174641,"158":0.914642179,"159":0.9089613452,"160":0.9056170744,"161":0.8979006345,"162":0.8951762957,"163":0.8875529975,"164":0.8809757757,"165":0.8773842567,"166":0.8683755027,"167":0.8655058113,"168":0.85696584,"169":0.8495042086,"170":0.8457000439,"171":0.8354151562,"172":0.8324207371,"173":0.822802053,"174":0.8150711894,"175":0.810188621,"176":0.7996506497,"177":0.7956216113,"178":0.7857190091,"179":0.7771977867,"180":0.7716200776,"181":0.7606509832,"182":0.7557279632,"183":0.7454958256,"184":0.7362996895,"185":0.7299629798,"186":0.7186918738,"187":0.7128190672,"188":0.7023423937,"189":0.6925011118,"190":0.6854101567,"191":0.6739169914,"192":0.6670809459,"193":0.6564190602,"194":0.6459761985,"195":0.638142083,"196":0.6264955343,"197":0.6187021397,"198":0.6079023742,"199":0.596906594,"200":0.5883519669,"201":0.5766058821,"202":0.5678823852,"203":0.5569787676,"204":0.5454841718,"205":0.5362428288,"206":0.5244362599,"207":0.5148309306,"208":0.5038443055,"209":0.4919101134,"210":0.4820266444,"211":0.4701841573,"212":0.4597655299,"213":0.4487040352,"214":0.4363941463,"215":0.4259233664,"216":0.4140557426,"217":0.4029113827,"218":0.3917712784,"219":0.3791537624,"220":0.3681599058,"221":0.3562652511,"222":0.3445000555,"223":0.3332669102,"224":0.3204133873,"225":0.3089691062,"226":0.2970343134,"227":0.2847683844,"228":0.2734185754,"229":0.2604035238,"230":0.2485887048,"231":0.2365912384,"232":0.2239573879,"233":0.2124598801,"234":0.1993598673,"235":0.1872602925,"236":0.1751702491,"237":0.1623111772,"238":0.1506295386,"239":0.1375223945,"240":0.1252282837,"241":0.1130106647,"242":0.1000758949,"243":0.088170489,"244":0.075134438,"245":0.0627388836,"246":0.0503560452,"247":0.0374986524,"248":0.0253289744,"249":0.0124417275,"250":0.0000390871,"251":-0.0314134927,"252":-0.0015704904,"253":-0.0588840305,"254":-0.033671704,"255":-0.0746476885,"256":-0.0672133436,"257":-0.0931206382,"258":-0.0969929164,"259":-0.1147057963,"260":-0.1243512384,"261":-0.13806914,"262":-0.1501615648,"263":-0.1625421741,"264":-0.1747317075,"265":-0.1878085759,"266":-0.1989489329,"267":-0.212641483,"268":-0.2237026887,"269":-0.2363445261,"270":-0.249166,"271":-0.2598447674,"272":-0.2738116632,"273":-0.2842267692,"274":-0.2969535078,"275":-0.3094710449,"276":-0.3198636916,"277":-0.3337260274,"278":-0.3437889653,"279":-0.3562796302,"280":-0.3686072687,"281":-0.3786136661,"282":-0.392301881,"283":-0.4020216737,"284":-0.41419323,"285":-0.4262659932,"286":-0.4359139114,"287":-0.4492752976,"288":-0.4587156093,"289":-0.4704526903,"290":-0.4822304674,"291":-0.4915286052,"292":-0.5044302415,"293":-0.5136398713,"294":-0.524840536,"295":-0.536280136,"296":-0.545234392,"297":-0.5575548785,"298":-0.5665719355,"299":-0.5771457436,"300":-0.5882030583,"301":-0.5968142323,"302":-0.6084466021,"303":-0.6172960637,"304":-0.6271660433,"305":-0.6377957737,"306":-0.6460589455,"307":-0.6569123294,"308":-0.6656045281,"309":-0.6747084946,"310":-0.6848641444,"311":-0.6927681296,"312":-0.7027691003,"313":-0.7112986007,"314":-0.7195901482,"315":-0.7292240731,"316":-0.7367511129,"317":-0.7458445927,"318":-0.7541895489,"319":-0.7616386457,"320":-0.7707021955,"321":-0.7778278601,"322":-0.7859775894,"323":-0.7940995867,"324":-0.8006927753,"325":-0.8091365216,"326":-0.8158298404,"327":-0.8230183995,"328":-0.8308627883,"329":-0.8366029861,"330":-0.8443770392,"331":-0.8506008524,"332":-0.8568292432,"333":-0.8643259589,"334":-0.86923186,"335":-0.8762862723,"336":-0.8819977912,"337":-0.8872845853,"338":-0.8943494387,"339":-0.8984545349,"340":-0.9047397855,"341":-0.9098913571,"342":-0.9142714411,"343":-0.9208078482,"344":-0.9241590938,"345":-0.9296266444,"346":-0.9341667005,"347":-0.9376896386,"348":-0.9435907603,"349":-0.9462469037,"350":-0.9508498266,"351":-0.9547239908,"352":-0.9574520601,"353":-0.9626032931,"354":-0.9646329252,"355":-0.9683265785,"356":-0.9714789159,"357":-0.9734848448,"358":-0.97776662,"359":-0.9792459733,"360":-0.9819887236,"361":-0.9843630973,"362":-0.9857275735,"363":-0.9890183919,"364":-0.9900289485,"365":-0.9917829154,"366":-0.9933244244,"367":-0.9941334183,"368":-0.9963130619,"369":-0.9969099445,"370":-0.9976932132,"371":-0.9983044306,"372":-0.9986923666,"373":-0.9996008731,"374":-0.9998739161,"375":-0.9996544713,"376":-0.9993549943,"377":-0.9993007351,"378":-0.9989532716,"379":-0.9988838611,"380":-0.9976650063,"381":-0.9964967123,"382":-0.9959107731,"383":-0.994425097,"384":-0.9938948648,"385":-0.9917702235,"386":-0.9897145461,"387":-0.9885531379,"388":-0.9860235228,"389":-0.9849333352,"390":-0.9819883328,"391":-0.9790385919,"392":-0.9772548125,"393":-0.9737829846,"394":-0.9720341917,"395":-0.9683573646,"396":-0.9645108753,"397":-0.962061229,"398":-0.9577506004,"399":-0.9552498867,"400":-0.9509294344,"401":-0.9461885281,"402":-0.9430341161,"403":-0.937987137,"404":-0.9346495219,"405":-0.9297709146,"406":-0.9241433916,"407":-0.9202512951,"408":-0.914566797,"409":-0.9103185225,"410":-0.9049622148,"411":-0.8984617574,"412":-0.8938062936,"413":-0.8875770318,"414":-0.8823581927,"415":-0.8765975346,"416":-0.8692440513,"417":-0.8638078807,"418":-0.8571183276,"419":-0.8508851855,"420":-0.8447845776,"421":-0.8366044646,"422":-0.830379521,"423":-0.8233039636,"424":-0.8160308801,"425":-0.8096442211,"426":-0.800670534,"427":-0.7936587603,"428":-0.7862597395,"429":-0.7779406938,"430":-0.7713101513,"431":-0.761582673,"432":-0.7537965407,"433":-0.7461236702,"434":-0.73677331,"435":-0.7299284503,"436":-0.7194936494,"437":-0.7109564555,"438":-0.7030456398,"439":-0.6926998504,"440":-0.685657139,"441":-0.6745680234,"442":-0.6653139499,"443":-0.6571870249,"444":-0.6459029941,"445":-0.6386656874,"446":-0.6269815372,"447":-0.6170554629,"448":-0.6087202741,"449":-0.5965760252,"450":-0.5891344675,"451":-0.576920445,"452":-0.5663775476,"453":-0.5578284248,"454":-0.5449218785,"455":-0.5372541613,"456":-0.5245808295,"457":-0.5134859327,"458":-0.5047046019,"459":-0.491152121,"460":-0.4832251368,"461":-0.470167856,"462":-0.4585945652,"463":-0.4495514494,"464":-0.4354859155,"465":-0.4272567666,"466":-0.4138949841,"467":-0.4019246465,"468":-0.3925804969,"469":-0.3781489957,"470":-0.3695779828,"471":-0.3558921458,"472":-0.34387723,"473":-0.3337965914,"474":-0.3195868051,"475":-0.3102195292,"476":-0.2966014196,"477":-0.2844486583,"478":-0.2736608788,"479":-0.2598266818,"480":-0.2495741953,"481":-0.2361996563,"482":-0.2238295996,"483":-0.2125159638,"484":-0.1989780568,"485":-0.1880015135,"486":-0.1748267853,"487":-0.1623311218,"488":-0.1505543919,"489":-0.1373122204,"490":-0.1257253066,"491":-0.1127386276,"492":-0.1001839716,"493":-0.0880313069,"494":-0.0750632781,"495":-0.0629987686,"496":-0.0501764255,"497":-0.0376332303,"498":-0.0251958987,"499":-0.012473343,"500":-0.0000728938},"pressure_in":{"0":0.1000350609,"1":0.1000876041,"2":0.1006132886,"3":0.1013755078,"4":0.102492565,"5":0.1039053084,"6":0.1056366639,"7":0.1076746032,"8":0.1100285535,"9":0.1126938012,"10":0.1156727031,"11":0.118941192,"12":0.1225107096,"13":0.1263914721,"14":0.1305783715,"15":0.1350739617,"16":0.1398313538,"17":0.144868218,"18":0.1502159421,"19":0.1558588321,"20":0.1618047351,"21":0.167978052,"22":0.1743949807,"23":0.1811260958,"24":0.18813611,"25":0.195442667,"26":0.2029389722,"27":0.2106252081,"28":0.218634662,"29":0.2269006904,"30":0.235456615,"31":0.2441642626,"32":0.2529874531,"33":0.2621503281,"34":0.2715408168,"35":0.2812149546,"36":0.291005231,"37":0.3008136033,"38":0.310987071,"39":0.3213521342,"40":0.331995543,"41":0.3427245537,"42":0.3533494131,"43":0.3643749687,"44":0.3755487967,"45":0.386997109,"46":0.3985078883,"47":0.409766396,"48":0.4214723379,"49":0.4332758612,"50":0.4453518922,"51":0.4574767028,"52":0.4691748881,"53":0.4813790027,"54":0.4936227692,"55":0.5061393264,"56":0.5187021171,"57":0.5306380723,"58":0.5431504818,"59":0.5556377007,"60":0.5684005513,"61":0.5812195365,"62":0.5931867478,"63":0.6058128802,"64":0.6183425861,"65":0.6311535393,"66":0.6440438642,"67":0.6558346115,"68":0.6683782396,"69":0.6807485195,"70":0.6934085657,"71":0.7061268208,"72":0.7176228989,"73":0.7298455659,"74":0.7418786309,"75":0.7541801893,"76":0.7665211934,"77":0.7775616566,"78":0.7892535374,"79":0.8007650173,"80":0.8125120056,"81":0.8242865477,"82":0.8346999407,"83":0.8456683534,"84":0.8564776518,"85":0.8674849029,"86":0.8785115731,"87":0.8881370633,"88":0.8982003382,"89":0.9081381089,"90":0.9182320198,"91":0.9283412486,"92":0.9370303963,"93":0.9460211647,"94":0.9549318108,"95":0.9639532062,"96":0.9729899149,"97":0.9806088602,"98":0.9883768091,"99":0.9961209168,"100":1.0039276059,"101":1.0117536649,"102":1.0181850848,"103":1.0245994402,"104":1.0310559561,"105":1.03752502,"106":1.0440214381,"107":1.0491662583,"108":1.0541179465,"109":1.0591860654,"110":1.0642158337,"111":1.0692846421,"112":1.0730634842,"113":1.0764669352,"114":1.0800676734,"115":1.0835793597,"116":1.0871451637,"117":1.0894995031,"118":1.0912940691,"119":1.0933714961,"120":1.095310467,"121":1.0973216404,"122":1.0982146587,"123":1.0983656186,"124":1.0988877269,"125":1.0992243803,"126":1.0996538804,"127":1.0990710018,"128":1.0975701411,"129":1.0965293437,"130":1.0952595868,"131":1.0941053818,"132":1.0920544848,"133":1.0889202389,"134":1.0863334854,"135":1.0834788038,"136":1.0807639042,"137":1.0772752033,"138":1.0725523591,"139":1.0684608668,"140":1.0640679788,"141":1.0598400689,"142":1.0549656724,"143":1.0487246389,"144":1.0431932466,"145":1.0373333564,"146":1.031664038,"147":1.0254771846,"148":1.0178128358,"149":1.0109289865,"150":1.0036966393,"151":0.9966802928,"152":0.9892742796,"153":0.9803044001,"154":0.9721767728,"155":0.9636883385,"156":0.9554406268,"157":0.9469274449,"158":0.936790793,"159":0.927547602,"160":0.9179394064,"161":0.908595439,"162":0.8991041355,"163":0.8879581608,"164":0.8777451495,"165":0.8671712842,"166":0.8568834736,"167":0.8465582633,"168":0.8345765156,"169":0.8235546766,"170":0.8121845233,"171":0.8011201672,"172":0.7900345525,"173":0.7775294802,"174":0.7658097107,"175":0.753856634,"176":0.7421795552,"177":0.7305238217,"178":0.7176668533,"179":0.70544566,"180":0.6930948738,"181":0.6809971787,"182":0.6689612326,"183":0.6559342849,"184":0.6434135356,"185":0.6308577125,"186":0.6185374516,"187":0.606317435,"188":0.5933054275,"189":0.5806914287,"190":0.5681264836,"191":0.5557850696,"192":0.543579948,"193":0.5307682411,"194":0.5182682585,"195":0.5058903232,"196":0.4937292736,"197":0.4817376904,"198":0.4693093663,"199":0.457128212,"200":0.4451305718,"201":0.4333482737,"202":0.4217654037,"203":0.40989858,"204":0.39823523,"205":0.3868053007,"206":0.3755938186,"207":0.3646082704,"208":0.3534734934,"209":0.3425178057,"210":0.3318342067,"211":0.3213761965,"212":0.3111670252,"213":0.3009247712,"214":0.2908543511,"215":0.2810841143,"216":0.271549886,"217":0.2622837537,"218":0.2530820806,"219":0.2440593492,"220":0.2353553117,"221":0.226900092,"222":0.2187286281,"223":0.2107010064,"224":0.2028705167,"225":0.1953689327,"226":0.1881303676,"227":0.1811877649,"228":0.1744511245,"229":0.1679371725,"230":0.1617555869,"231":0.1558515288,"232":0.1502524176,"233":0.1449054351,"234":0.1398100041,"235":0.1350454175,"236":0.130572029,"237":0.1264096616,"238":0.1225313149,"239":0.1189323879,"240":0.1156597436,"241":0.1126899505,"242":0.1100347244,"243":0.1076831352,"244":0.1056334008,"245":0.103904416,"246":0.1024867334,"247":0.1013850767,"248":0.1005966571,"249":0.1001226332,"250":0.0999649935,"251":0.0999122628,"252":0.0993861158,"253":0.0986234546,"254":0.0975087385,"255":0.0960983729,"256":0.094364155,"257":0.0923201863,"258":0.0899614042,"259":0.0873113343,"260":0.0843409157,"261":0.0810646789,"262":0.0774753587,"263":0.0735790078,"264":0.069432535,"265":0.064954503,"266":0.0601856304,"267":0.0551055579,"268":0.0497244652,"269":0.0441585065,"270":0.0382424421,"271":0.0320577198,"272":0.0255636158,"273":0.018780492,"274":0.0118836737,"275":0.004627707,"276":-0.0028761573,"277":-0.0106835446,"278":-0.0187666421,"279":-0.026883026,"280":-0.0353599627,"281":-0.0440647877,"282":-0.0530638333,"283":-0.0623239333,"284":-0.0715315788,"285":-0.0810897026,"286":-0.0908586875,"287":-0.100908342,"288":-0.1112037619,"289":-0.1213591198,"290":-0.1318401617,"291":-0.1425199949,"292":-0.1534620656,"293":-0.1646346508,"294":-0.1755810443,"295":-0.1868108559,"296":-0.1982341161,"297":-0.2098958095,"298":-0.2217734438,"299":-0.2333433695,"300":-0.2451347921,"301":-0.2571225654,"302":-0.2693192624,"303":-0.2817185966,"304":-0.2937361859,"305":-0.3058921354,"306":-0.318256814,"307":-0.3307950375,"308":-0.3435243979,"309":-0.3558079967,"310":-0.3681247122,"311":-0.3806729273,"312":-0.3933534506,"313":-0.4062158777,"314":-0.4185807126,"315":-0.4308511174,"316":-0.4433867625,"317":-0.4560078128,"318":-0.4688041859,"319":-0.4810650719,"320":-0.4930821874,"321":-0.5054094828,"322":-0.5177699828,"323":-0.5303021752,"324":-0.542276231,"325":-0.5538365904,"326":-0.5657631423,"327":-0.5776659422,"328":-0.5897399624,"329":-0.6012492912,"330":-0.6121562998,"331":-0.6234961086,"332":-0.6347511573,"333":-0.646180226,"334":-0.6570545226,"335":-0.6671216991,"336":-0.6776980633,"337":-0.6881254614,"338":-0.6987329703,"339":-0.7088120168,"340":-0.7178660749,"341":-0.727514353,"342":-0.736947247,"343":-0.7465695589,"344":-0.7557055745,"345":-0.7635892827,"346":-0.7721594636,"347":-0.7804467273,"348":-0.7889357687,"349":-0.796995576,"350":-0.8035703581,"351":-0.8109294046,"352":-0.8179380706,"353":-0.8251636787,"354":-0.8320306583,"355":-0.8371788835,"356":-0.8432128087,"357":-0.8488302066,"358":-0.8546821909,"359":-0.8602579937,"360":-0.8638849261,"361":-0.8685005739,"362":-0.8726361442,"363":-0.8770260335,"364":-0.881232028,"365":-0.8832673924,"366":-0.8863938898,"367":-0.8889806388,"368":-0.89184308,"369":-0.8945734931,"370":-0.8950446706,"371":-0.8965985226,"372":-0.8976121096,"373":-0.8988969013,"374":-0.9000471629,"375":-0.8990432002,"376":-0.8989473946,"377":-0.8983976296,"378":-0.8980749635,"379":-0.8976388672,"380":-0.8951635569,"381":-0.8934215447,"382":-0.8913158578,"383":-0.8893949827,"384":-0.887384676,"385":-0.8834675575,"386":-0.880107667,"387":-0.8764787541,"388":-0.8729939441,"389":-0.8694466744,"390":-0.8641391175,"391":-0.8592158249,"392":-0.8541202649,"393":-0.8491307034,"394":-0.8441080074,"395":-0.8374825579,"396":-0.831075542,"397":-0.8245929375,"398":-0.8181817556,"399":-0.8117684906,"400":-0.8039177924,"401":-0.7961306248,"402":-0.7883623526,"403":-0.7806352934,"404":-0.7729382884,"405":-0.7639737176,"406":-0.7549321594,"407":-0.745999783,"408":-0.7370835038,"409":-0.728229864,"410":-0.7182798897,"411":-0.7081298217,"412":-0.6981731886,"413":-0.6882132261,"414":-0.6783483164,"415":-0.6675566126,"416":-0.656461634,"417":-0.6456366882,"418":-0.6347951215,"419":-0.6240802608,"420":-0.612603596,"421":-0.6007423282,"422":-0.5892186698,"423":-0.5776715146,"424":-0.5662814158,"425":-0.5542873533,"426":-0.541850499,"427":-0.529808733,"428":-0.5177431153,"429":-0.5058631158,"430":-0.4935275552,"431":-0.4807147544,"432":-0.4683436658,"433":-0.4559548132,"434":-0.4437779348,"435":-0.4312825325,"436":-0.4182990714,"437":-0.4057926738,"438":-0.3932807785,"439":-0.3810046662,"440":-0.3685341733,"441":-0.355587602,"442":-0.3431421064,"443":-0.3307091095,"444":-0.3185328997,"445":-0.3062724529,"446":-0.2935691584,"447":-0.2813799044,"448":-0.2692262467,"449":-0.2573474075,"450":-0.2454798148,"451":-0.2332216192,"452":-0.2214800235,"453":-0.2098014263,"454":-0.1984126283,"455":-0.1871156889,"456":-0.1754965185,"457":-0.1643870842,"458":-0.1533714024,"459":-0.1426574649,"460":-0.1321013619,"461":-0.1213040442,"462":-0.1110014771,"463":-0.100825678,"464":-0.0909606382,"465":-0.0813054409,"466":-0.071498687,"467":-0.0621651674,"468":-0.0529924865,"469":-0.0441368421,"470":-0.0355201355,"471":-0.0268707822,"472":-0.0186459143,"473":-0.0106269872,"474":-0.0029232731,"475":0.004519864,"476":0.0118816443,"477":0.0188669874,"478":0.0256045568,"479":0.0320300208,"480":0.0381755453,"481":0.0441505918,"482":0.0497802179,"483":0.0551319583,"484":0.0601720456,"485":0.0649173636,"486":0.0694258239,"487":0.0736067138,"488":0.0774896296,"489":0.0810597732,"490":0.0843245436,"491":0.0873074442,"492":0.0899710854,"493":0.0923250534,"494":0.0943645552,"495":0.0960919872,"496":0.0975120735,"497":0.0986156006,"498":0.099404302,"499":0.099877311,"500":0.1000350609},"pressure_out":{"0":0.1,"1":0.1,"2":0.1,"3":0.1,"4":0.1,"5":0.1,"6":0.1,"7":0.1,"8":0.1,"9":0.1,"10":0.1,"11":0.1,"12":0.1,"13":0.1,"14":0.1,"15":0.1,"16":0.1,"17":0.1,"18":0.1,"19":0.1,"20":0.1,"21":0.1,"22":0.1,"23":0.1,"24":0.1,"25":0.1,"26":0.1,"27":0.1,"28":0.1,"29":0.1,"30":0.1,"31":0.1,"32":0.1,"33":0.1,"34":0.1,"35":0.1,"36":0.1,"37":0.1,"38":0.1,"39":0.1,"40":0.1,"41":0.1,"42":0.1,"43":0.1,"44":0.1,"45":0.1,"46":0.1,"47":0.1,"48":0.1,"49":0.1,"50":0.1,"51":0.1,"52":0.1,"53":0.1,"54":0.1,"55":0.1,"56":0.1,"57":0.1,"58":0.1,"59":0.1,"60":0.1,"61":0.1,"62":0.1,"63":0.1,"64":0.1,"65":0.1,"66":0.1,"67":0.1,"68":0.1,"69":0.1,"70":0.1,"71":0.1,"72":0.1,"73":0.1,"74":0.1,"75":0.1,"76":0.1,"77":0.1,"78":0.1,"79":0.1,"80":0.1,"81":0.1,"82":0.1,"83":0.1,"84":0.1,"85":0.1,"86":0.1,"87":0.1,"88":0.1,"89":0.1,"90":0.1,"91":0.1,"92":0.1,"93":0.1,"94":0.1,"95":0.1,"96":0.1,"97":0.1,"98":0.1,"99":0.1,"100":0.1,"101":0.1,"102":0.1,"103":0.1,"104":0.1,"105":0.1,"106":0.1,"107":0.1,"108":0.1,"109":0.1,"110":0.1,"111":0.1,"112":0.1,"113":0.1,"114":0.1,"115":0.1,"116":0.1,"117":0.1,"118":0.1,"119":0.1,"120":0.1,"121":0.1,"122":0.1,"123":0.1,"124":0.1,"125":0.1,"126":0.1,"127":0.1,"128":0.1,"129":0.1,"130":0.1,"131":0.1,"132":0.1,"133":0.1,"134":0.1,"135":0.1,"136":0.1,"137":0.1,"138":0.1,"139":0.1,"140":0.1,"141":0.1,"142":0.1,"143":0.1,"144":0.1,"145":0.1,"146":0.1,"147":0.1,"148":0.1,"149":0.1,"150":0.1,"151":0.1,"152":0.1,"153":0.1,"154":0.1,"155":0.1,"156":0.1,"157":0.1,"158":0.1,"159":0.1,"160":0.1,"161":0.1,"162":0.1,"163":0.1,"164":0.1,"165":0.1,"166":0.1,"167":0.1,"168":0.1,"169":0.1,"170":0.1,"171":0.1,"172":0.1,"173":0.1,"174":0.1,"175":0.1,"176":0.1,"177":0.1,"178":0.1,"179":0.1,"180":0.1,"181":0.1,"182":0.1,"183":0.1,"184":0.1,"185":0.1,"186":0.1,"187":0.1,"188":0.1,"189":0.1,"190":0.1,"191":0.1,"192":0.1,"193":0.1,"194":0.1,"195":0.1,"196":0.1,"197":0.1,"198":0.1,"199":0.1,"200":0.1,"201":0.1,"202":0.1,"203":0.1,"204":0.1,"205":0.1,"206":0.1,"207":0.1,"208":0.1,"209":0.1,"210":0.1,"211":0.1,"212":0.1,"213":0.1,"214":0.1,"215":0.1,"216":0.1,"217":0.1,"218":0.1,"219":0.1,"220":0.1,"221":0.1,"222":0.1,"223":0.1,"224":0.1,"225":0.1,"226":0.1,"227":0.1,"228":0.1,"229":0.1,"230":0.1,"231":0.1,"232":0.1,"233":0.1,"234":0.1,"235":0.1,"236":0.1,"237":0.1,"238":0.1,"239":0.1,"240":0.1,"241":0.1,"242":0.1,"243":0.1,"244":0.1,"245":0.1,"246":0.1,"247":0.1,"248":0.1,"249":0.1,"250":0.1,"251":0.1,"252":0.1,"253":0.1,"254":0.1,"255":0.1,"256":0.1,"257":0.1,"258":0.1,"259":0.1,"260":0.1,"261":0.1,"262":0.1,"263":0.1,"264":0.1,"265":0.1,"266":0.1,"267":0.1,"268":0.1,"269":0.1,"270":0.1,"271":0.1,"272":0.1,"273":0.1,"274":0.1,"275":0.1,"276":0.1,"277":0.1,"278":0.1,"279":0.1,"280":0.1,"281":0.1,"282":0.1,"283":0.1,"284":0.1,"285":0.1,"286":0.1,"287":0.1,"288":0.1,"289":0.1,"290":0.1,"291":0.1,"292":0.1,"293":0.1,"294":0.1,"295":0.1,"296":0.1,"297":0.1,"298":0.1,"299":0.1,"300":0.1,"301":0.1,"302":0.1,"303":0.1,"304":0.1,"305":0.1,"306":0.1,"307":0.1,"308":0.1,"309":0.1,"310":0.1,"311":0.1,"312":0.1,"313":0.1,"314":0.1,"315":0.1,"316":0.1,"317":0.1,"318":0.1,"319":0.1,"320":0.1,"321":0.1,"322":0.1,"323":0.1,"324":0.1,"325":0.1,"326":0.1,"327":0.1,"328":0.1,"329":0.1,"330":0.1,"331":0.1,"332":0.1,"333":0.1,"334":0.1,"335":0.1,"336":0.1,"337":0.1,"338":0.1,"339":0.1,"340":0.1,"341":0.1,"342":0.1,"343":0.1,"344":0.1,"345":0.1,"346":0.1,"347":0.1,"348":0.1,"349":0.1,"350":0.1,"351":0.1,"352":0.1,"353":0.1,"354":0.1,"355":0.1,"356":0.1,"357":0.1,"358":0.1,"359":0.1,"360":0.1,"361":0.1,"362":0.1,"363":0.1,"364":0.1,"365":0.1,"366":0.1,"367":0.1,"368":0.1,"369":0.1,"370":0.1,"371":0.1,"372":0.1,"373":0.1,"374":0.1,"375":0.1,"376":0.1,"377":0.1,"378":0.1,"379":0.1,"380":0.1,"381":0.1,"382":0.1,"383":0.1,"384":0.1,"385":0.1,"386":0.1,"387":0.1,"388":0.1,"389":0.1,"390":0.1,"391":0.1,"392":0.1,"393":0.1,"394":0.1,"395":0.1,"396":0.1,"397":0.1,"398":0.1,"399":0.1,"400":0.1,"401":0.1,"402":0.1,"403":0.1,"404":0.1,"405":0.1,"406":0.1,"407":0.1,"408":0.1,"409":0.1,"410":0.1,"411":0.1,"412":0.1,"413":0.1,"414":0.1,"415":0.1,"416":0.1,"417":0.1,"418":0.1,"419":0.1,"420":0.1,"421":0.1,"422":0.1,"423":0.1,"424":0.1,"425":0.1,"426":0.1,"427":0.1,"428":0.1,"429":0.1,"430":0.1,"431":0.1,"432":0.1,"433":0.1,"434":0.1,"435":0.1,"436":0.1,"437":0.1,"438":0.1,"439":0.1,"440":0.1,"441":0.1,"442":0.1,"443":0.1,"444":0.1,"445":0.1,"446":0.1,"447":0.1,"448":0.1,"449":0.1,"450":0.1,"451":0.1,"452":0.1,"453":0.1,"454":0.1,"455":0.1,"456":0.1,"457":0.1,"458":0.1,"459":0.1,"460":0.1,"461":0.1,"462":0.1,"463":0.1,"464":0.1,"465":0.1,"466":0.1,"467":0.1,"468":0.1,"469":0.1,"470":0.1,"471":0.1,"472":0.1,"473":0.1,"474":0.1,"475":0.1,"476":0.1,"477":0.1,"478":0.1,"479":0.1,"480":0.1,"481":0.1,"482":0.1,"483":0.1,"484":0.1,"485":0.1,"486":0.1,"487":0.1,"488":0.1,"489":0.1,"490":0.1,"491":0.1,"492":0.1,"493":0.1,"494":0.1,"495":0.1,"496":0.1,"497":0.1,"498":0.1,"499":0.1,"500":0.1}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0", + "101": "branch0_seg0", + "102": "branch0_seg0", + "103": "branch0_seg0", + "104": "branch0_seg0", + "105": "branch0_seg0", + "106": "branch0_seg0", + "107": "branch0_seg0", + "108": "branch0_seg0", + "109": "branch0_seg0", + "110": "branch0_seg0", + "111": "branch0_seg0", + "112": "branch0_seg0", + "113": "branch0_seg0", + "114": "branch0_seg0", + "115": "branch0_seg0", + "116": "branch0_seg0", + "117": "branch0_seg0", + "118": "branch0_seg0", + "119": "branch0_seg0", + "120": "branch0_seg0", + "121": "branch0_seg0", + "122": "branch0_seg0", + "123": "branch0_seg0", + "124": "branch0_seg0", + "125": "branch0_seg0", + "126": "branch0_seg0", + "127": "branch0_seg0", + "128": "branch0_seg0", + "129": "branch0_seg0", + "130": "branch0_seg0", + "131": "branch0_seg0", + "132": "branch0_seg0", + "133": "branch0_seg0", + "134": "branch0_seg0", + "135": "branch0_seg0", + "136": "branch0_seg0", + "137": "branch0_seg0", + "138": "branch0_seg0", + "139": "branch0_seg0", + "140": "branch0_seg0", + "141": "branch0_seg0", + "142": "branch0_seg0", + "143": "branch0_seg0", + "144": "branch0_seg0", + "145": "branch0_seg0", + "146": "branch0_seg0", + "147": "branch0_seg0", + "148": "branch0_seg0", + "149": "branch0_seg0", + "150": "branch0_seg0", + "151": "branch0_seg0", + "152": "branch0_seg0", + "153": "branch0_seg0", + "154": "branch0_seg0", + "155": "branch0_seg0", + "156": "branch0_seg0", + "157": "branch0_seg0", + "158": "branch0_seg0", + "159": "branch0_seg0", + "160": "branch0_seg0", + "161": "branch0_seg0", + "162": "branch0_seg0", + "163": "branch0_seg0", + "164": "branch0_seg0", + "165": "branch0_seg0", + "166": "branch0_seg0", + "167": "branch0_seg0", + "168": "branch0_seg0", + "169": "branch0_seg0", + "170": "branch0_seg0", + "171": "branch0_seg0", + "172": "branch0_seg0", + "173": "branch0_seg0", + "174": "branch0_seg0", + "175": "branch0_seg0", + "176": "branch0_seg0", + "177": "branch0_seg0", + "178": "branch0_seg0", + "179": "branch0_seg0", + "180": "branch0_seg0", + "181": "branch0_seg0", + "182": "branch0_seg0", + "183": "branch0_seg0", + "184": "branch0_seg0", + "185": "branch0_seg0", + "186": "branch0_seg0", + "187": "branch0_seg0", + "188": "branch0_seg0", + "189": "branch0_seg0", + "190": "branch0_seg0", + "191": "branch0_seg0", + "192": "branch0_seg0", + "193": "branch0_seg0", + "194": "branch0_seg0", + "195": "branch0_seg0", + "196": "branch0_seg0", + "197": "branch0_seg0", + "198": "branch0_seg0", + "199": "branch0_seg0", + "200": "branch0_seg0", + "201": "branch0_seg0", + "202": "branch0_seg0", + "203": "branch0_seg0", + "204": "branch0_seg0", + "205": "branch0_seg0", + "206": "branch0_seg0", + "207": "branch0_seg0", + "208": "branch0_seg0", + "209": "branch0_seg0", + "210": "branch0_seg0", + "211": "branch0_seg0", + "212": "branch0_seg0", + "213": "branch0_seg0", + "214": "branch0_seg0", + "215": "branch0_seg0", + "216": "branch0_seg0", + "217": "branch0_seg0", + "218": "branch0_seg0", + "219": "branch0_seg0", + "220": "branch0_seg0", + "221": "branch0_seg0", + "222": "branch0_seg0", + "223": "branch0_seg0", + "224": "branch0_seg0", + "225": "branch0_seg0", + "226": "branch0_seg0", + "227": "branch0_seg0", + "228": "branch0_seg0", + "229": "branch0_seg0", + "230": "branch0_seg0", + "231": "branch0_seg0", + "232": "branch0_seg0", + "233": "branch0_seg0", + "234": "branch0_seg0", + "235": "branch0_seg0", + "236": "branch0_seg0", + "237": "branch0_seg0", + "238": "branch0_seg0", + "239": "branch0_seg0", + "240": "branch0_seg0", + "241": "branch0_seg0", + "242": "branch0_seg0", + "243": "branch0_seg0", + "244": "branch0_seg0", + "245": "branch0_seg0", + "246": "branch0_seg0", + "247": "branch0_seg0", + "248": "branch0_seg0", + "249": "branch0_seg0", + "250": "branch0_seg0", + "251": "branch0_seg0", + "252": "branch0_seg0", + "253": "branch0_seg0", + "254": "branch0_seg0", + "255": "branch0_seg0", + "256": "branch0_seg0", + "257": "branch0_seg0", + "258": "branch0_seg0", + "259": "branch0_seg0", + "260": "branch0_seg0", + "261": "branch0_seg0", + "262": "branch0_seg0", + "263": "branch0_seg0", + "264": "branch0_seg0", + "265": "branch0_seg0", + "266": "branch0_seg0", + "267": "branch0_seg0", + "268": "branch0_seg0", + "269": "branch0_seg0", + "270": "branch0_seg0", + "271": "branch0_seg0", + "272": "branch0_seg0", + "273": "branch0_seg0", + "274": "branch0_seg0", + "275": "branch0_seg0", + "276": "branch0_seg0", + "277": "branch0_seg0", + "278": "branch0_seg0", + "279": "branch0_seg0", + "280": "branch0_seg0", + "281": "branch0_seg0", + "282": "branch0_seg0", + "283": "branch0_seg0", + "284": "branch0_seg0", + "285": "branch0_seg0", + "286": "branch0_seg0", + "287": "branch0_seg0", + "288": "branch0_seg0", + "289": "branch0_seg0", + "290": "branch0_seg0", + "291": "branch0_seg0", + "292": "branch0_seg0", + "293": "branch0_seg0", + "294": "branch0_seg0", + "295": "branch0_seg0", + "296": "branch0_seg0", + "297": "branch0_seg0", + "298": "branch0_seg0", + "299": "branch0_seg0", + "300": "branch0_seg0", + "301": "branch0_seg0", + "302": "branch0_seg0", + "303": "branch0_seg0", + "304": "branch0_seg0", + "305": "branch0_seg0", + "306": "branch0_seg0", + "307": "branch0_seg0", + "308": "branch0_seg0", + "309": "branch0_seg0", + "310": "branch0_seg0", + "311": "branch0_seg0", + "312": "branch0_seg0", + "313": "branch0_seg0", + "314": "branch0_seg0", + "315": "branch0_seg0", + "316": "branch0_seg0", + "317": "branch0_seg0", + "318": "branch0_seg0", + "319": "branch0_seg0", + "320": "branch0_seg0", + "321": "branch0_seg0", + "322": "branch0_seg0", + "323": "branch0_seg0", + "324": "branch0_seg0", + "325": "branch0_seg0", + "326": "branch0_seg0", + "327": "branch0_seg0", + "328": "branch0_seg0", + "329": "branch0_seg0", + "330": "branch0_seg0", + "331": "branch0_seg0", + "332": "branch0_seg0", + "333": "branch0_seg0", + "334": "branch0_seg0", + "335": "branch0_seg0", + "336": "branch0_seg0", + "337": "branch0_seg0", + "338": "branch0_seg0", + "339": "branch0_seg0", + "340": "branch0_seg0", + "341": "branch0_seg0", + "342": "branch0_seg0", + "343": "branch0_seg0", + "344": "branch0_seg0", + "345": "branch0_seg0", + "346": "branch0_seg0", + "347": "branch0_seg0", + "348": "branch0_seg0", + "349": "branch0_seg0", + "350": "branch0_seg0", + "351": "branch0_seg0", + "352": "branch0_seg0", + "353": "branch0_seg0", + "354": "branch0_seg0", + "355": "branch0_seg0", + "356": "branch0_seg0", + "357": "branch0_seg0", + "358": "branch0_seg0", + "359": "branch0_seg0", + "360": "branch0_seg0", + "361": "branch0_seg0", + "362": "branch0_seg0", + "363": "branch0_seg0", + "364": "branch0_seg0", + "365": "branch0_seg0", + "366": "branch0_seg0", + "367": "branch0_seg0", + "368": "branch0_seg0", + "369": "branch0_seg0", + "370": "branch0_seg0", + "371": "branch0_seg0", + "372": "branch0_seg0", + "373": "branch0_seg0", + "374": "branch0_seg0", + "375": "branch0_seg0", + "376": "branch0_seg0", + "377": "branch0_seg0", + "378": "branch0_seg0", + "379": "branch0_seg0", + "380": "branch0_seg0", + "381": "branch0_seg0", + "382": "branch0_seg0", + "383": "branch0_seg0", + "384": "branch0_seg0", + "385": "branch0_seg0", + "386": "branch0_seg0", + "387": "branch0_seg0", + "388": "branch0_seg0", + "389": "branch0_seg0", + "390": "branch0_seg0", + "391": "branch0_seg0", + "392": "branch0_seg0", + "393": "branch0_seg0", + "394": "branch0_seg0", + "395": "branch0_seg0", + "396": "branch0_seg0", + "397": "branch0_seg0", + "398": "branch0_seg0", + "399": "branch0_seg0", + "400": "branch0_seg0", + "401": "branch0_seg0", + "402": "branch0_seg0", + "403": "branch0_seg0", + "404": "branch0_seg0", + "405": "branch0_seg0", + "406": "branch0_seg0", + "407": "branch0_seg0", + "408": "branch0_seg0", + "409": "branch0_seg0", + "410": "branch0_seg0", + "411": "branch0_seg0", + "412": "branch0_seg0", + "413": "branch0_seg0", + "414": "branch0_seg0", + "415": "branch0_seg0", + "416": "branch0_seg0", + "417": "branch0_seg0", + "418": "branch0_seg0", + "419": "branch0_seg0", + "420": "branch0_seg0", + "421": "branch0_seg0", + "422": "branch0_seg0", + "423": "branch0_seg0", + "424": "branch0_seg0", + "425": "branch0_seg0", + "426": "branch0_seg0", + "427": "branch0_seg0", + "428": "branch0_seg0", + "429": "branch0_seg0", + "430": "branch0_seg0", + "431": "branch0_seg0", + "432": "branch0_seg0", + "433": "branch0_seg0", + "434": "branch0_seg0", + "435": "branch0_seg0", + "436": "branch0_seg0", + "437": "branch0_seg0", + "438": "branch0_seg0", + "439": "branch0_seg0", + "440": "branch0_seg0", + "441": "branch0_seg0", + "442": "branch0_seg0", + "443": "branch0_seg0", + "444": "branch0_seg0", + "445": "branch0_seg0", + "446": "branch0_seg0", + "447": "branch0_seg0", + "448": "branch0_seg0", + "449": "branch0_seg0", + "450": "branch0_seg0", + "451": "branch0_seg0", + "452": "branch0_seg0", + "453": "branch0_seg0", + "454": "branch0_seg0", + "455": "branch0_seg0", + "456": "branch0_seg0", + "457": "branch0_seg0", + "458": "branch0_seg0", + "459": "branch0_seg0", + "460": "branch0_seg0", + "461": "branch0_seg0", + "462": "branch0_seg0", + "463": "branch0_seg0", + "464": "branch0_seg0", + "465": "branch0_seg0", + "466": "branch0_seg0", + "467": "branch0_seg0", + "468": "branch0_seg0", + "469": "branch0_seg0", + "470": "branch0_seg0", + "471": "branch0_seg0", + "472": "branch0_seg0", + "473": "branch0_seg0", + "474": "branch0_seg0", + "475": "branch0_seg0", + "476": "branch0_seg0", + "477": "branch0_seg0", + "478": "branch0_seg0", + "479": "branch0_seg0", + "480": "branch0_seg0", + "481": "branch0_seg0", + "482": "branch0_seg0", + "483": "branch0_seg0", + "484": "branch0_seg0", + "485": "branch0_seg0", + "486": "branch0_seg0", + "487": "branch0_seg0", + "488": "branch0_seg0", + "489": "branch0_seg0", + "490": "branch0_seg0", + "491": "branch0_seg0", + "492": "branch0_seg0", + "493": "branch0_seg0", + "494": "branch0_seg0", + "495": "branch0_seg0", + "496": "branch0_seg0", + "497": "branch0_seg0", + "498": "branch0_seg0", + "499": "branch0_seg0", + "500": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.0125663706, + "2": 0.0251327412, + "3": 0.0376991118, + "4": 0.0502654825, + "5": 0.0628318531, + "6": 0.0753982237, + "7": 0.0879645943, + "8": 0.1005309649, + "9": 0.1130973355, + "10": 0.1256637061, + "11": 0.1382300768, + "12": 0.1507964474, + "13": 0.163362818, + "14": 0.1759291886, + "15": 0.1884955592, + "16": 0.2010619298, + "17": 0.2136283004, + "18": 0.2261946711, + "19": 0.2387610417, + "20": 0.2513274123, + "21": 0.2638937829, + "22": 0.2764601535, + "23": 0.2890265241, + "24": 0.3015928947, + "25": 0.3141592653, + "26": 0.326725636, + "27": 0.3392920066, + "28": 0.3518583772, + "29": 0.3644247478, + "30": 0.3769911184, + "31": 0.389557489, + "32": 0.4021238596, + "33": 0.4146902303, + "34": 0.4272566009, + "35": 0.4398229715, + "36": 0.4523893421, + "37": 0.4649557127, + "38": 0.4775220833, + "39": 0.4900884539, + "40": 0.5026548246, + "41": 0.5152211952, + "42": 0.5277875658, + "43": 0.5403539364, + "44": 0.552920307, + "45": 0.5654866776, + "46": 0.5780530482, + "47": 0.5906194189, + "48": 0.6031857895, + "49": 0.6157521601, + "50": 0.6283185307, + "51": 0.6408849013, + "52": 0.6534512719, + "53": 0.6660176425, + "54": 0.6785840132, + "55": 0.6911503838, + "56": 0.7037167544, + "57": 0.716283125, + "58": 0.7288494956, + "59": 0.7414158662, + "60": 0.7539822368, + "61": 0.7665486075, + "62": 0.7791149781, + "63": 0.7916813487, + "64": 0.8042477193, + "65": 0.8168140899, + "66": 0.8293804605, + "67": 0.8419468311, + "68": 0.8545132018, + "69": 0.8670795724, + "70": 0.879645943, + "71": 0.8922123136, + "72": 0.9047786842, + "73": 0.9173450548, + "74": 0.9299114254, + "75": 0.942477796, + "76": 0.9550441667, + "77": 0.9676105373, + "78": 0.9801769079, + "79": 0.9927432785, + "80": 1.0053096491, + "81": 1.0178760197, + "82": 1.0304423903, + "83": 1.043008761, + "84": 1.0555751316, + "85": 1.0681415022, + "86": 1.0807078728, + "87": 1.0932742434, + "88": 1.105840614, + "89": 1.1184069846, + "90": 1.1309733553, + "91": 1.1435397259, + "92": 1.1561060965, + "93": 1.1686724671, + "94": 1.1812388377, + "95": 1.1938052083, + "96": 1.2063715789, + "97": 1.2189379496, + "98": 1.2315043202, + "99": 1.2440706908, + "100": 1.2566370614, + "101": 1.269203432, + "102": 1.2817698026, + "103": 1.2943361732, + "104": 1.3069025439, + "105": 1.3194689145, + "106": 1.3320352851, + "107": 1.3446016557, + "108": 1.3571680263, + "109": 1.3697343969, + "110": 1.3823007675, + "111": 1.3948671382, + "112": 1.4074335088, + "113": 1.4199998794, + "114": 1.43256625, + "115": 1.4451326206, + "116": 1.4576989912, + "117": 1.4702653618, + "118": 1.4828317325, + "119": 1.4953981031, + "120": 1.5079644737, + "121": 1.5205308443, + "122": 1.5330972149, + "123": 1.5456635855, + "124": 1.5582299561, + "125": 1.5707963267, + "126": 1.5833626974, + "127": 1.595929068, + "128": 1.6084954386, + "129": 1.6210618092, + "130": 1.6336281798, + "131": 1.6461945504, + "132": 1.658760921, + "133": 1.6713272917, + "134": 1.6838936623, + "135": 1.6964600329, + "136": 1.7090264035, + "137": 1.7215927741, + "138": 1.7341591447, + "139": 1.7467255153, + "140": 1.759291886, + "141": 1.7718582566, + "142": 1.7844246272, + "143": 1.7969909978, + "144": 1.8095573684, + "145": 1.822123739, + "146": 1.8346901096, + "147": 1.8472564803, + "148": 1.8598228509, + "149": 1.8723892215, + "150": 1.8849555921, + "151": 1.8975219627, + "152": 1.9100883333, + "153": 1.9226547039, + "154": 1.9352210746, + "155": 1.9477874452, + "156": 1.9603538158, + "157": 1.9729201864, + "158": 1.985486557, + "159": 1.9980529276, + "160": 2.0106192982, + "161": 2.0231856689, + "162": 2.0357520395, + "163": 2.0483184101, + "164": 2.0608847807, + "165": 2.0734511513, + "166": 2.0860175219, + "167": 2.0985838925, + "168": 2.1111502632, + "169": 2.1237166338, + "170": 2.1362830044, + "171": 2.148849375, + "172": 2.1614157456, + "173": 2.1739821162, + "174": 2.1865484868, + "175": 2.1991148574, + "176": 2.2116812281, + "177": 2.2242475987, + "178": 2.2368139693, + "179": 2.2493803399, + "180": 2.2619467105, + "181": 2.2745130811, + "182": 2.2870794517, + "183": 2.2996458224, + "184": 2.312212193, + "185": 2.3247785636, + "186": 2.3373449342, + "187": 2.3499113048, + "188": 2.3624776754, + "189": 2.375044046, + "190": 2.3876104167, + "191": 2.4001767873, + "192": 2.4127431579, + "193": 2.4253095285, + "194": 2.4378758991, + "195": 2.4504422697, + "196": 2.4630086403, + "197": 2.475575011, + "198": 2.4881413816, + "199": 2.5007077522, + "200": 2.5132741228, + "201": 2.5258404934, + "202": 2.538406864, + "203": 2.5509732346, + "204": 2.5635396053, + "205": 2.5761059759, + "206": 2.5886723465, + "207": 2.6012387171, + "208": 2.6138050877, + "209": 2.6263714583, + "210": 2.6389378289, + "211": 2.6515041996, + "212": 2.6640705702, + "213": 2.6766369408, + "214": 2.6892033114, + "215": 2.701769682, + "216": 2.7143360526, + "217": 2.7269024232, + "218": 2.7394687939, + "219": 2.7520351645, + "220": 2.7646015351, + "221": 2.7771679057, + "222": 2.7897342763, + "223": 2.8023006469, + "224": 2.8148670175, + "225": 2.8274333881, + "226": 2.8399997588, + "227": 2.8525661294, + "228": 2.8651325, + "229": 2.8776988706, + "230": 2.8902652412, + "231": 2.9028316118, + "232": 2.9153979824, + "233": 2.9279643531, + "234": 2.9405307237, + "235": 2.9530970943, + "236": 2.9656634649, + "237": 2.9782298355, + "238": 2.9907962061, + "239": 3.0033625767, + "240": 3.0159289474, + "241": 3.028495318, + "242": 3.0410616886, + "243": 3.0536280592, + "244": 3.0661944298, + "245": 3.0787608004, + "246": 3.091327171, + "247": 3.1038935417, + "248": 3.1164599123, + "249": 3.1290262829, + "250": 3.1415926535, + "251": 3.1541590241, + "252": 3.1667253947, + "253": 3.1792917653, + "254": 3.191858136, + "255": 3.2044245066, + "256": 3.2169908772, + "257": 3.2295572478, + "258": 3.2421236184, + "259": 3.254689989, + "260": 3.2672563596, + "261": 3.2798227303, + "262": 3.2923891009, + "263": 3.3049554715, + "264": 3.3175218421, + "265": 3.3300882127, + "266": 3.3426545833, + "267": 3.3552209539, + "268": 3.3677873246, + "269": 3.3803536952, + "270": 3.3929200658, + "271": 3.4054864364, + "272": 3.418052807, + "273": 3.4306191776, + "274": 3.4431855482, + "275": 3.4557519188, + "276": 3.4683182895, + "277": 3.4808846601, + "278": 3.4934510307, + "279": 3.5060174013, + "280": 3.5185837719, + "281": 3.5311501425, + "282": 3.5437165131, + "283": 3.5562828838, + "284": 3.5688492544, + "285": 3.581415625, + "286": 3.5939819956, + "287": 3.6065483662, + "288": 3.6191147368, + "289": 3.6316811074, + "290": 3.6442474781, + "291": 3.6568138487, + "292": 3.6693802193, + "293": 3.6819465899, + "294": 3.6945129605, + "295": 3.7070793311, + "296": 3.7196457017, + "297": 3.7322120724, + "298": 3.744778443, + "299": 3.7573448136, + "300": 3.7699111842, + "301": 3.7824775548, + "302": 3.7950439254, + "303": 3.807610296, + "304": 3.8201766667, + "305": 3.8327430373, + "306": 3.8453094079, + "307": 3.8578757785, + "308": 3.8704421491, + "309": 3.8830085197, + "310": 3.8955748903, + "311": 3.908141261, + "312": 3.9207076316, + "313": 3.9332740022, + "314": 3.9458403728, + "315": 3.9584067434, + "316": 3.970973114, + "317": 3.9835394846, + "318": 3.9961058553, + "319": 4.0086722259, + "320": 4.0212385965, + "321": 4.0338049671, + "322": 4.0463713377, + "323": 4.0589377083, + "324": 4.0715040789, + "325": 4.0840704495, + "326": 4.0966368202, + "327": 4.1092031908, + "328": 4.1217695614, + "329": 4.134335932, + "330": 4.1469023026, + "331": 4.1594686732, + "332": 4.1720350438, + "333": 4.1846014145, + "334": 4.1971677851, + "335": 4.2097341557, + "336": 4.2223005263, + "337": 4.2348668969, + "338": 4.2474332675, + "339": 4.2599996381, + "340": 4.2725660088, + "341": 4.2851323794, + "342": 4.29769875, + "343": 4.3102651206, + "344": 4.3228314912, + "345": 4.3353978618, + "346": 4.3479642324, + "347": 4.3605306031, + "348": 4.3730969737, + "349": 4.3856633443, + "350": 4.3982297149, + "351": 4.4107960855, + "352": 4.4233624561, + "353": 4.4359288267, + "354": 4.4484951974, + "355": 4.461061568, + "356": 4.4736279386, + "357": 4.4861943092, + "358": 4.4987606798, + "359": 4.5113270504, + "360": 4.523893421, + "361": 4.5364597917, + "362": 4.5490261623, + "363": 4.5615925329, + "364": 4.5741589035, + "365": 4.5867252741, + "366": 4.5992916447, + "367": 4.6118580153, + "368": 4.624424386, + "369": 4.6369907566, + "370": 4.6495571272, + "371": 4.6621234978, + "372": 4.6746898684, + "373": 4.687256239, + "374": 4.6998226096, + "375": 4.7123889802, + "376": 4.7249553509, + "377": 4.7375217215, + "378": 4.7500880921, + "379": 4.7626544627, + "380": 4.7752208333, + "381": 4.7877872039, + "382": 4.8003535745, + "383": 4.8129199452, + "384": 4.8254863158, + "385": 4.8380526864, + "386": 4.850619057, + "387": 4.8631854276, + "388": 4.8757517982, + "389": 4.8883181688, + "390": 4.9008845395, + "391": 4.9134509101, + "392": 4.9260172807, + "393": 4.9385836513, + "394": 4.9511500219, + "395": 4.9637163925, + "396": 4.9762827631, + "397": 4.9888491338, + "398": 5.0014155044, + "399": 5.013981875, + "400": 5.0265482456, + "401": 5.0391146162, + "402": 5.0516809868, + "403": 5.0642473574, + "404": 5.0768137281, + "405": 5.0893800987, + "406": 5.1019464693, + "407": 5.1145128399, + "408": 5.1270792105, + "409": 5.1396455811, + "410": 5.1522119517, + "411": 5.1647783224, + "412": 5.177344693, + "413": 5.1899110636, + "414": 5.2024774342, + "415": 5.2150438048, + "416": 5.2276101754, + "417": 5.240176546, + "418": 5.2527429167, + "419": 5.2653092873, + "420": 5.2778756579, + "421": 5.2904420285, + "422": 5.3030083991, + "423": 5.3155747697, + "424": 5.3281411403, + "425": 5.3407075109, + "426": 5.3532738816, + "427": 5.3658402522, + "428": 5.3784066228, + "429": 5.3909729934, + "430": 5.403539364, + "431": 5.4161057346, + "432": 5.4286721052, + "433": 5.4412384759, + "434": 5.4538048465, + "435": 5.4663712171, + "436": 5.4789375877, + "437": 5.4915039583, + "438": 5.5040703289, + "439": 5.5166366995, + "440": 5.5292030702, + "441": 5.5417694408, + "442": 5.5543358114, + "443": 5.566902182, + "444": 5.5794685526, + "445": 5.5920349232, + "446": 5.6046012938, + "447": 5.6171676645, + "448": 5.6297340351, + "449": 5.6423004057, + "450": 5.6548667763, + "451": 5.6674331469, + "452": 5.6799995175, + "453": 5.6925658881, + "454": 5.7051322588, + "455": 5.7176986294, + "456": 5.730265, + "457": 5.7428313706, + "458": 5.7553977412, + "459": 5.7679641118, + "460": 5.7805304824, + "461": 5.7930968531, + "462": 5.8056632237, + "463": 5.8182295943, + "464": 5.8307959649, + "465": 5.8433623355, + "466": 5.8559287061, + "467": 5.8684950767, + "468": 5.8810614474, + "469": 5.893627818, + "470": 5.9061941886, + "471": 5.9187605592, + "472": 5.9313269298, + "473": 5.9438933004, + "474": 5.956459671, + "475": 5.9690260416, + "476": 5.9815924123, + "477": 5.9941587829, + "478": 6.0067251535, + "479": 6.0192915241, + "480": 6.0318578947, + "481": 6.0444242653, + "482": 6.0569906359, + "483": 6.0695570066, + "484": 6.0821233772, + "485": 6.0946897478, + "486": 6.1072561184, + "487": 6.119822489, + "488": 6.1323888596, + "489": 6.1449552302, + "490": 6.1575216009, + "491": 6.1700879715, + "492": 6.1826543421, + "493": 6.1952207127, + "494": 6.2077870833, + "495": 6.2203534539, + "496": 6.2329198245, + "497": 6.2454861952, + "498": 6.2580525658, + "499": 6.2706189364, + "500": 6.283185307 + }, + "flow_in": { + "0": 0.0000000705, + "1": 0.012557901, + "2": 0.02511589, + "3": 0.0376737998, + "4": 0.0502317492, + "5": 0.0627896788, + "6": 0.0753008825, + "7": 0.0878063351, + "8": 0.1003146632, + "9": 0.1128215535, + "10": 0.1253291627, + "11": 0.1377507757, + "12": 0.1501496299, + "13": 0.1625598635, + "14": 0.1749644074, + "15": 0.1873717961, + "16": 0.1996611693, + "17": 0.2118998155, + "18": 0.2241638251, + "19": 0.236415153, + "20": 0.2486728218, + "21": 0.260787763, + "22": 0.2728132738, + "23": 0.2848834998, + "24": 0.2969313682, + "25": 0.3089904154, + "26": 0.3208893298, + "27": 0.3326496884, + "28": 0.3444793249, + "29": 0.3562743224, + "30": 0.3680866394, + "31": 0.3797286689, + "32": 0.3911729936, + "33": 0.4027161708, + "34": 0.4142099217, + "35": 0.4257283858, + "36": 0.4370735445, + "37": 0.4481523069, + "38": 0.4593642675, + "39": 0.470509629, + "40": 0.48168829, + "41": 0.4926975973, + "42": 0.5033628358, + "43": 0.5142001087, + "44": 0.5249513644, + "45": 0.5357456287, + "46": 0.5463812395, + "47": 0.5565867662, + "48": 0.5670073349, + "49": 0.5773203826, + "50": 0.5876871909, + "51": 0.5979125222, + "52": 0.6076141219, + "53": 0.6175775873, + "54": 0.6274101199, + "55": 0.6373081189, + "56": 0.6470879715, + "57": 0.6562435914, + "58": 0.6657113276, + "59": 0.6750230056, + "60": 0.6844127128, + "61": 0.6937133887, + "62": 0.7022833221, + "63": 0.7112186268, + "64": 0.7199712458, + "65": 0.7288152076, + "66": 0.7376046242, + "67": 0.745551678, + "68": 0.7539199132, + "69": 0.7620775577, + "70": 0.7703404975, + "71": 0.7785507897, + "72": 0.7858967048, + "73": 0.7936373053, + "74": 0.801180563, + "75": 0.8088224921, + "76": 0.8164150856, + "77": 0.8231467441, + "78": 0.8302203099, + "79": 0.837122922, + "80": 0.8441110109, + "81": 0.8510563615, + "82": 0.8571505872, + "83": 0.8635266705, + "84": 0.869761825, + "85": 0.8760674439, + "86": 0.8823378306, + "87": 0.887774001, + "88": 0.8934249694, + "89": 0.8989685388, + "90": 0.9045658077, + "91": 0.9101362269, + "92": 0.9148959485, + "93": 0.9197972996, + "94": 0.924627836, + "95": 0.9294937797, + "96": 0.9343420198, + "97": 0.9384092, + "98": 0.9425396611, + "99": 0.9466384817, + "100": 0.9507531226, + "101": 0.9548598534, + "102": 0.9582207536, + "103": 0.9615623736, + "104": 0.9649136338, + "105": 0.9682600738, + "106": 0.9716089239, + "107": 0.9742522034, + "108": 0.9767904306, + "109": 0.9793811839, + "110": 0.9819456741, + "111": 0.9845232959, + "112": 0.9864400488, + "113": 0.9881637935, + "114": 0.9899840423, + "115": 0.9917560391, + "116": 0.9935521619, + "117": 0.9947359463, + "118": 0.99563763, + "119": 0.996680364, + "120": 0.9976525729, + "121": 0.9986600443, + "122": 0.9991069029, + "123": 0.9991824899, + "124": 0.9994437127, + "125": 0.9996121177, + "126": 0.9998269315, + "127": 0.999535404, + "128": 0.9987844202, + "129": 0.9982631646, + "130": 0.9976270449, + "131": 0.9970483572, + "132": 0.9960194854, + "133": 0.9944450211, + "134": 0.993143353, + "135": 0.9917052869, + "136": 0.9903354197, + "137": 0.9885727435, + "138": 0.9861814398, + "139": 0.9841044498, + "140": 0.981870303, + "141": 0.9797147346, + "142": 0.9772242801, + "143": 0.9740263021, + "144": 0.9711820859, + "145": 0.9681609887, + "146": 0.965228332, + "147": 0.9620185919, + "148": 0.9580275841, + "149": 0.9544272101, + "150": 0.9506315192, + "151": 0.9469334867, + "152": 0.9430153917, + "153": 0.9382484213, + "154": 0.9339058886, + "155": 0.929351137, + "156": 0.9249024948, + "157": 0.9202893781, + "158": 0.914766862, + "159": 0.9096990456, + "160": 0.9044038793, + "161": 0.899222388, + "162": 0.8939299414, + "163": 0.8876755588, + "164": 0.8819021442, + "165": 0.8758882455, + "166": 0.8699945889, + "167": 0.8640408113, + "168": 0.8570814022, + "169": 0.8506248088, + "170": 0.8439168075, + "171": 0.8373345102, + "172": 0.8306893609, + "173": 0.8231302424, + "174": 0.8159778215, + "175": 0.8086220517, + "176": 0.8013679564, + "177": 0.7940630239, + "178": 0.7859279744, + "179": 0.7781118558, + "180": 0.7701362717, + "181": 0.7622404204, + "182": 0.7543047027, + "183": 0.7456220479, + "184": 0.7371759206, + "185": 0.7286115295, + "186": 0.7201062703, + "187": 0.7115714452, + "188": 0.7023712684, + "189": 0.6933315814, + "190": 0.6842116496, + "191": 0.6751318402, + "192": 0.6660319696, + "193": 0.6563460938, + "194": 0.6467518572, + "195": 0.637111801, + "196": 0.6274946546, + "197": 0.6178660533, + "198": 0.6077279343, + "199": 0.5976205545, + "200": 0.5874978051, + "201": 0.5773827405, + "202": 0.5672638335, + "203": 0.5567084445, + "204": 0.5461315447, + "205": 0.5355654004, + "206": 0.5249938783, + "207": 0.5144250451, + "208": 0.5034887611, + "209": 0.4924879949, + "210": 0.4815194698, + "211": 0.4705348242, + "212": 0.4595582388, + "213": 0.4482787142, + "214": 0.4369015683, + "215": 0.425573233, + "216": 0.4142204925, + "217": 0.4028799545, + "218": 0.3912959978, + "219": 0.3795915897, + "220": 0.3679474072, + "221": 0.3562731119, + "222": 0.3446138731, + "223": 0.3327653164, + "224": 0.3207841816, + "225": 0.3088693359, + "226": 0.2969213457, + "227": 0.2849899277, + "228": 0.2729174944, + "229": 0.2607113701, + "230": 0.2485720914, + "231": 0.2363993898, + "232": 0.2242433997, + "233": 0.2119885682, + "234": 0.1996101702, + "235": 0.1872935554, + "236": 0.1749460491, + "237": 0.1626139885, + "238": 0.1502188542, + "239": 0.1377216514, + "240": 0.1252754829, + "241": 0.1128037973, + "242": 0.1003448702, + "243": 0.0878520053, + "244": 0.075289989, + "245": 0.0627625484, + "246": 0.0502178199, + "247": 0.0376817354, + "248": 0.0251340469, + "249": 0.0125614992, + "250": 0.0000013811, + "251": -0.0125649519, + "252": -0.0251281774, + "253": -0.0376875909, + "254": -0.0502163329, + "255": -0.0627604106, + "256": -0.0752968205, + "257": -0.0878370643, + "258": -0.1003650567, + "259": -0.1127958304, + "260": -0.1252752135, + "261": -0.1377302919, + "262": -0.1501975226, + "263": -0.1626510425, + "264": -0.1749300963, + "265": -0.1872963832, + "266": -0.1996190535, + "267": -0.2119635321, + "268": -0.2242971066, + "269": -0.2363753216, + "270": -0.248578555, + "271": -0.2607192792, + "272": -0.272891258, + "273": -0.2850476095, + "274": -0.2968952668, + "275": -0.3088768513, + "276": -0.3207914721, + "277": -0.3327395748, + "278": -0.3446709366, + "279": -0.3562470896, + "280": -0.3679553996, + "281": -0.3795976311, + "282": -0.3912729018, + "283": -0.402931653, + "284": -0.414196677, + "285": -0.4255810732, + "286": -0.4369057833, + "287": -0.4482603365, + "288": -0.4595999681, + "289": -0.4705153029, + "290": -0.4815265437, + "291": -0.4924898315, + "292": -0.5034770958, + "293": -0.5144523718, + "294": -0.5249806631, + "295": -0.5355711117, + "296": -0.5461304816, + "297": -0.5567053909, + "298": -0.5672725305, + "299": -0.5773777516, + "300": -0.5875015803, + "301": -0.5976161052, + "302": -0.6077352821, + "303": -0.6178521329, + "304": -0.6274997054, + "305": -0.6371130935, + "306": -0.6467435737, + "307": -0.6563655079, + "308": -0.6659917151, + "309": -0.6751486229, + "310": -0.6842099446, + "311": -0.6933190593, + "312": -0.7024042775, + "313": -0.7115014439, + "314": -0.7201363433, + "315": -0.7286063483, + "316": -0.7371588006, + "317": -0.7456700292, + "318": -0.7542018696, + "319": -0.7622851926, + "320": -0.7701271744, + "321": -0.7780898269, + "322": -0.785992144, + "323": -0.7939246288, + "324": -0.801428681, + "325": -0.8086086349, + "326": -0.815950638, + "327": -0.8232116165, + "328": -0.8305131073, + "329": -0.837412161, + "330": -0.8438989322, + "331": -0.8505918447, + "332": -0.8571816866, + "333": -0.8638230637, + "334": -0.8700934425, + "335": -0.8758588591, + "336": -0.8818767567, + "337": -0.8877684138, + "338": -0.8937231912, + "339": -0.899343349, + "340": -0.9043623446, + "341": -0.9096819213, + "342": -0.9148512074, + "343": -0.9200956388, + "344": -0.9250462319, + "345": -0.9292969532, + "346": -0.9338976104, + "347": -0.9383232996, + "348": -0.9428364729, + "349": -0.9471004242, + "350": -0.9505643265, + "351": -0.9544282534, + "352": -0.9580921679, + "353": -0.9618560886, + "354": -0.9654186453, + "355": -0.9680805722, + "356": -0.971192814, + "357": -0.9740798984, + "358": -0.9770795614, + "359": -0.9799283442, + "360": -0.9817765946, + "361": -0.9841251112, + "362": -0.9862234947, + "363": -0.9884469448, + "364": -0.9905719906, + "365": -0.9915983679, + "366": -0.9931740794, + "367": -0.9944751238, + "368": -0.9959135018, + "369": -0.997283213, + "370": -0.9975191889, + "371": -0.9982979485, + "372": -0.9988053162, + "373": -0.9994483799, + "374": -1.0000235956, + "375": -0.9995215204, + "376": -0.9994735417, + "377": -0.9991985147, + "378": -0.9990370119, + "379": -0.998818747, + "380": -0.9975790986, + "381": -0.9967053469, + "382": -0.9956486469, + "383": -0.994683421, + "384": -0.9936724581, + "385": -0.991699912, + "386": -0.9900040639, + "387": -0.9881698668, + "388": -0.9864048443, + "389": -0.9846052344, + "390": -0.9819068937, + "391": -0.9793961971, + "392": -0.9767916785, + "393": -0.9742340708, + "394": -0.9716530077, + "395": -0.9682384336, + "396": -0.9649236505, + "397": -0.9615589719, + "398": -0.9582192411, + "399": -0.9548670364, + "400": -0.9507482127, + "401": -0.9466435734, + "402": -0.9425318419, + "403": -0.9384236564, + "404": -0.934313698, + "405": -0.9295049901, + "406": -0.9246281322, + "407": -0.9197853493, + "408": -0.9149255289, + "409": -0.9100742273, + "410": -0.9045923331, + "411": -0.8989642265, + "412": -0.8934092261, + "413": -0.8878176725, + "414": -0.8822443956, + "415": -0.8761082894, + "416": -0.8697531463, + "417": -0.8635075217, + "418": -0.8572071379, + "419": -0.8509341337, + "420": -0.8441650018, + "421": -0.8371101727, + "422": -0.8301981922, + "423": -0.8232147875, + "424": -0.8162670948, + "425": -0.808888265, + "426": -0.8011641221, + "427": -0.7936126357, + "428": -0.7859748211, + "429": -0.7783801706, + "430": -0.7704170334, + "431": -0.7620568397, + "432": -0.7538951743, + "433": -0.7456342447, + "434": -0.7374229472, + "435": -0.7289028712, + "436": -0.7199426378, + "437": -0.7112024831, + "438": -0.7023522891, + "439": -0.6935571148, + "440": -0.6845093557, + "441": -0.6749876891, + "442": -0.6657029762, + "443": -0.6562997865, + "444": -0.6469558352, + "445": -0.6374114382, + "446": -0.6273693716, + "447": -0.6175761399, + "448": -0.6076584907, + "449": -0.5978030502, + "450": -0.5877947463, + "451": -0.5772755659, + "452": -0.5670118238, + "453": -0.5566203625, + "454": -0.5462927609, + "455": -0.5358548585, + "456": -0.5249039176, + "457": -0.5142094959, + "458": -0.5033868146, + "459": -0.4926282631, + "460": -0.4817965341, + "461": -0.4704610568, + "462": -0.4593774537, + "463": -0.4481679135, + "464": -0.4370213418, + "465": -0.425832902, + "466": -0.4141617827, + "467": -0.4027320031, + "468": -0.3911815537, + "469": -0.3796914392, + "470": -0.3681711572, + "471": -0.3562349512, + "472": -0.3444932382, + "473": -0.3326542786, + "474": -0.3208639423, + "475": -0.3090492944, + "476": -0.2969037918, + "477": -0.2848935617, + "478": -0.2728156954, + "479": -0.2607716471, + "480": -0.2487106899, + "481": -0.2363972758, + "482": -0.2241706501, + "483": -0.2119006302, + "484": -0.1996523074, + "485": -0.1873931361, + "486": -0.1749542118, + "487": -0.1625640135, + "488": -0.1501494523, + "489": -0.1377470725, + "490": -0.125338602, + "491": -0.112816955, + "492": -0.1003167238, + "493": -0.0878057847, + "494": -0.0753001996, + "495": -0.0627919375, + "496": -0.0502306166, + "497": -0.0376743727, + "498": -0.0251155904, + "499": -0.0125580772, + "500": 0.0000000705 + }, + "flow_out": { + "0": -0.0000728938, + "1": 0.0314351679, + "2": 0.0015511959, + "3": 0.0588718925, + "4": 0.033748532, + "5": 0.0745614923, + "6": 0.0672626367, + "7": 0.0930721294, + "8": 0.0969774726, + "9": 0.1148806279, + "10": 0.1240862931, + "11": 0.1383176493, + "12": 0.1499077451, + "13": 0.1626697459, + "14": 0.1749017122, + "15": 0.1874178757, + "16": 0.1993943925, + "17": 0.2121451092, + "18": 0.2240273114, + "19": 0.2364507483, + "20": 0.2487004285, + "21": 0.2604618997, + "22": 0.273070288, + "23": 0.2848032701, + "24": 0.2968675124, + "25": 0.3091303307, + "26": 0.3204353817, + "27": 0.332934365, + "28": 0.3444729152, + "29": 0.3560783561, + "30": 0.3683742198, + "31": 0.3791320757, + "32": 0.3914735508, + "33": 0.4028126488, + "34": 0.4138464526, + "35": 0.4261976153, + "36": 0.4363214596, + "37": 0.4484592038, + "38": 0.4595868892, + "39": 0.4699507559, + "40": 0.4823656606, + "41": 0.4917821813, + "42": 0.5036675044, + "43": 0.5145663633, + "44": 0.5241772245, + "45": 0.5366494056, + "46": 0.5452999977, + "47": 0.5568818539, + "48": 0.5675283057, + "49": 0.5763199443, + "50": 0.5888266451, + "51": 0.5966686422, + "52": 0.6078936267, + "53": 0.6182575173, + "54": 0.626181727, + "55": 0.638683, + "56": 0.6456905132, + "57": 0.6565029626, + "58": 0.6665473597, + "59": 0.6735746838, + "60": 0.686012964, + "61": 0.6921773292, + "62": 0.7025195224, + "63": 0.7122007232, + "64": 0.7183207666, + "65": 0.7306209251, + "66": 0.7359507574, + "67": 0.7457631907, + "68": 0.7550309829, + "69": 0.7602522253, + "70": 0.772322168, + "71": 0.7767566929, + "72": 0.7862614446, + "73": 0.7945344093, + "74": 0.7996063755, + "75": 0.8105549724, + "76": 0.8148400581, + "77": 0.8234283233, + "78": 0.8310203041, + "79": 0.8357666065, + "80": 0.8455813001, + "81": 0.8497326606, + "82": 0.857324514, + "83": 0.8642471364, + "84": 0.8686104648, + "85": 0.8772852333, + "86": 0.8812581887, + "87": 0.8878531729, + "88": 0.8940574889, + "89": 0.8980238094, + "90": 0.9055343789, + "91": 0.9092949705, + "92": 0.914890641, + "93": 0.9203405307, + "94": 0.9238810954, + "95": 0.9302276464, + "96": 0.9337231134, + "97": 0.9383349603, + "98": 0.9429938899, + "99": 0.9460746614, + "100": 0.9512752216, + "101": 0.9544389115, + "102": 0.9580971303, + "103": 0.9619298218, + "104": 0.9645116493, + "105": 0.9686009909, + "106": 0.9713540687, + "107": 0.9741021832, + "108": 0.9770750422, + "109": 0.9791147723, + "110": 0.9821425184, + "111": 0.9843962952, + "112": 0.9862893428, + "113": 0.9883710195, + "114": 0.9898227054, + "115": 0.9918511645, + "116": 0.9935097226, + "117": 0.9946121967, + "118": 0.9957741864, + "119": 0.9965904109, + "120": 0.9976921716, + "121": 0.9986552327, + "122": 0.9990388295, + "123": 0.9992560965, + "124": 0.9993893765, + "125": 0.9996447176, + "126": 0.9998106872, + "127": 0.9995519088, + "128": 0.9988035254, + "129": 0.9982077651, + "130": 0.9977019489, + "131": 0.9969710642, + "132": 0.9961487384, + "133": 0.9944185202, + "134": 0.9930504794, + "135": 0.9918709896, + "136": 0.9901484967, + "137": 0.9888412704, + "138": 0.9861183935, + "139": 0.9839391332, + "140": 0.9821729249, + "141": 0.9793722059, + "142": 0.9776560758, + "143": 0.9739356598, + "144": 0.9709119358, + "145": 0.9686427624, + "146": 0.9646883437, + "147": 0.96263428, + "148": 0.9579179213, + "149": 0.9540234853, + "150": 0.9513293683, + "151": 0.9461597267, + "152": 0.9438314529, + "153": 0.9381276924, + "154": 0.9333444802, + "155": 0.9302953764, + "156": 0.923865489, + "157": 0.9213174641, + "158": 0.914642179, + "159": 0.9089613452, + "160": 0.9056170744, + "161": 0.8979006345, + "162": 0.8951762957, + "163": 0.8875529975, + "164": 0.8809757757, + "165": 0.8773842567, + "166": 0.8683755027, + "167": 0.8655058113, + "168": 0.85696584, + "169": 0.8495042086, + "170": 0.8457000439, + "171": 0.8354151562, + "172": 0.8324207371, + "173": 0.822802053, + "174": 0.8150711894, + "175": 0.810188621, + "176": 0.7996506497, + "177": 0.7956216113, + "178": 0.7857190091, + "179": 0.7771977867, + "180": 0.7716200776, + "181": 0.7606509832, + "182": 0.7557279632, + "183": 0.7454958256, + "184": 0.7362996895, + "185": 0.7299629798, + "186": 0.7186918738, + "187": 0.7128190672, + "188": 0.7023423937, + "189": 0.6925011118, + "190": 0.6854101567, + "191": 0.6739169914, + "192": 0.6670809459, + "193": 0.6564190602, + "194": 0.6459761985, + "195": 0.638142083, + "196": 0.6264955343, + "197": 0.6187021397, + "198": 0.6079023742, + "199": 0.596906594, + "200": 0.5883519669, + "201": 0.5766058821, + "202": 0.5678823852, + "203": 0.5569787676, + "204": 0.5454841718, + "205": 0.5362428288, + "206": 0.5244362599, + "207": 0.5148309306, + "208": 0.5038443055, + "209": 0.4919101134, + "210": 0.4820266444, + "211": 0.4701841573, + "212": 0.4597655299, + "213": 0.4487040352, + "214": 0.4363941463, + "215": 0.4259233664, + "216": 0.4140557426, + "217": 0.4029113827, + "218": 0.3917712784, + "219": 0.3791537624, + "220": 0.3681599058, + "221": 0.3562652511, + "222": 0.3445000555, + "223": 0.3332669102, + "224": 0.3204133873, + "225": 0.3089691062, + "226": 0.2970343134, + "227": 0.2847683844, + "228": 0.2734185754, + "229": 0.2604035238, + "230": 0.2485887048, + "231": 0.2365912384, + "232": 0.2239573879, + "233": 0.2124598801, + "234": 0.1993598673, + "235": 0.1872602925, + "236": 0.1751702491, + "237": 0.1623111772, + "238": 0.1506295386, + "239": 0.1375223945, + "240": 0.1252282837, + "241": 0.1130106647, + "242": 0.1000758949, + "243": 0.088170489, + "244": 0.075134438, + "245": 0.0627388836, + "246": 0.0503560452, + "247": 0.0374986524, + "248": 0.0253289744, + "249": 0.0124417275, + "250": 0.0000390871, + "251": -0.0314134927, + "252": -0.0015704904, + "253": -0.0588840305, + "254": -0.033671704, + "255": -0.0746476885, + "256": -0.0672133436, + "257": -0.0931206382, + "258": -0.0969929164, + "259": -0.1147057963, + "260": -0.1243512384, + "261": -0.13806914, + "262": -0.1501615648, + "263": -0.1625421741, + "264": -0.1747317075, + "265": -0.1878085759, + "266": -0.1989489329, + "267": -0.212641483, + "268": -0.2237026887, + "269": -0.2363445261, + "270": -0.249166, + "271": -0.2598447674, + "272": -0.2738116632, + "273": -0.2842267692, + "274": -0.2969535078, + "275": -0.3094710449, + "276": -0.3198636916, + "277": -0.3337260274, + "278": -0.3437889653, + "279": -0.3562796302, + "280": -0.3686072687, + "281": -0.3786136661, + "282": -0.392301881, + "283": -0.4020216737, + "284": -0.41419323, + "285": -0.4262659932, + "286": -0.4359139114, + "287": -0.4492752976, + "288": -0.4587156093, + "289": -0.4704526903, + "290": -0.4822304674, + "291": -0.4915286052, + "292": -0.5044302415, + "293": -0.5136398713, + "294": -0.524840536, + "295": -0.536280136, + "296": -0.545234392, + "297": -0.5575548785, + "298": -0.5665719355, + "299": -0.5771457436, + "300": -0.5882030583, + "301": -0.5968142323, + "302": -0.6084466021, + "303": -0.6172960637, + "304": -0.6271660433, + "305": -0.6377957737, + "306": -0.6460589455, + "307": -0.6569123294, + "308": -0.6656045281, + "309": -0.6747084946, + "310": -0.6848641444, + "311": -0.6927681296, + "312": -0.7027691003, + "313": -0.7112986007, + "314": -0.7195901482, + "315": -0.7292240731, + "316": -0.7367511129, + "317": -0.7458445927, + "318": -0.7541895489, + "319": -0.7616386457, + "320": -0.7707021955, + "321": -0.7778278601, + "322": -0.7859775894, + "323": -0.7940995867, + "324": -0.8006927753, + "325": -0.8091365216, + "326": -0.8158298404, + "327": -0.8230183995, + "328": -0.8308627883, + "329": -0.8366029861, + "330": -0.8443770392, + "331": -0.8506008524, + "332": -0.8568292432, + "333": -0.8643259589, + "334": -0.86923186, + "335": -0.8762862723, + "336": -0.8819977912, + "337": -0.8872845853, + "338": -0.8943494387, + "339": -0.8984545349, + "340": -0.9047397855, + "341": -0.9098913571, + "342": -0.9142714411, + "343": -0.9208078482, + "344": -0.9241590938, + "345": -0.9296266444, + "346": -0.9341667005, + "347": -0.9376896386, + "348": -0.9435907603, + "349": -0.9462469037, + "350": -0.9508498266, + "351": -0.9547239908, + "352": -0.9574520601, + "353": -0.9626032931, + "354": -0.9646329252, + "355": -0.9683265785, + "356": -0.9714789159, + "357": -0.9734848448, + "358": -0.97776662, + "359": -0.9792459733, + "360": -0.9819887236, + "361": -0.9843630973, + "362": -0.9857275735, + "363": -0.9890183919, + "364": -0.9900289485, + "365": -0.9917829154, + "366": -0.9933244244, + "367": -0.9941334183, + "368": -0.9963130619, + "369": -0.9969099445, + "370": -0.9976932132, + "371": -0.9983044306, + "372": -0.9986923666, + "373": -0.9996008731, + "374": -0.9998739161, + "375": -0.9996544713, + "376": -0.9993549943, + "377": -0.9993007351, + "378": -0.9989532716, + "379": -0.9988838611, + "380": -0.9976650063, + "381": -0.9964967123, + "382": -0.9959107731, + "383": -0.994425097, + "384": -0.9938948648, + "385": -0.9917702235, + "386": -0.9897145461, + "387": -0.9885531379, + "388": -0.9860235228, + "389": -0.9849333352, + "390": -0.9819883328, + "391": -0.9790385919, + "392": -0.9772548125, + "393": -0.9737829846, + "394": -0.9720341917, + "395": -0.9683573646, + "396": -0.9645108753, + "397": -0.962061229, + "398": -0.9577506004, + "399": -0.9552498867, + "400": -0.9509294344, + "401": -0.9461885281, + "402": -0.9430341161, + "403": -0.937987137, + "404": -0.9346495219, + "405": -0.9297709146, + "406": -0.9241433916, + "407": -0.9202512951, + "408": -0.914566797, + "409": -0.9103185225, + "410": -0.9049622148, + "411": -0.8984617574, + "412": -0.8938062936, + "413": -0.8875770318, + "414": -0.8823581927, + "415": -0.8765975346, + "416": -0.8692440513, + "417": -0.8638078807, + "418": -0.8571183276, + "419": -0.8508851855, + "420": -0.8447845776, + "421": -0.8366044646, + "422": -0.830379521, + "423": -0.8233039636, + "424": -0.8160308801, + "425": -0.8096442211, + "426": -0.800670534, + "427": -0.7936587603, + "428": -0.7862597395, + "429": -0.7779406938, + "430": -0.7713101513, + "431": -0.761582673, + "432": -0.7537965407, + "433": -0.7461236702, + "434": -0.73677331, + "435": -0.7299284503, + "436": -0.7194936494, + "437": -0.7109564555, + "438": -0.7030456398, + "439": -0.6926998504, + "440": -0.685657139, + "441": -0.6745680234, + "442": -0.6653139499, + "443": -0.6571870249, + "444": -0.6459029941, + "445": -0.6386656874, + "446": -0.6269815372, + "447": -0.6170554629, + "448": -0.6087202741, + "449": -0.5965760252, + "450": -0.5891344675, + "451": -0.576920445, + "452": -0.5663775476, + "453": -0.5578284248, + "454": -0.5449218785, + "455": -0.5372541613, + "456": -0.5245808295, + "457": -0.5134859327, + "458": -0.5047046019, + "459": -0.491152121, + "460": -0.4832251368, + "461": -0.470167856, + "462": -0.4585945652, + "463": -0.4495514494, + "464": -0.4354859155, + "465": -0.4272567666, + "466": -0.4138949841, + "467": -0.4019246465, + "468": -0.3925804969, + "469": -0.3781489957, + "470": -0.3695779828, + "471": -0.3558921458, + "472": -0.34387723, + "473": -0.3337965914, + "474": -0.3195868051, + "475": -0.3102195292, + "476": -0.2966014196, + "477": -0.2844486583, + "478": -0.2736608788, + "479": -0.2598266818, + "480": -0.2495741953, + "481": -0.2361996563, + "482": -0.2238295996, + "483": -0.2125159638, + "484": -0.1989780568, + "485": -0.1880015135, + "486": -0.1748267853, + "487": -0.1623311218, + "488": -0.1505543919, + "489": -0.1373122204, + "490": -0.1257253066, + "491": -0.1127386276, + "492": -0.1001839716, + "493": -0.0880313069, + "494": -0.0750632781, + "495": -0.0629987686, + "496": -0.0501764255, + "497": -0.0376332303, + "498": -0.0251958987, + "499": -0.012473343, + "500": -0.0000728938 + }, + "pressure_in": { + "0": 0.1000350609, + "1": 0.1000876041, + "2": 0.1006132886, + "3": 0.1013755078, + "4": 0.102492565, + "5": 0.1039053084, + "6": 0.1056366639, + "7": 0.1076746032, + "8": 0.1100285535, + "9": 0.1126938012, + "10": 0.1156727031, + "11": 0.118941192, + "12": 0.1225107096, + "13": 0.1263914721, + "14": 0.1305783715, + "15": 0.1350739617, + "16": 0.1398313538, + "17": 0.144868218, + "18": 0.1502159421, + "19": 0.1558588321, + "20": 0.1618047351, + "21": 0.167978052, + "22": 0.1743949807, + "23": 0.1811260958, + "24": 0.18813611, + "25": 0.195442667, + "26": 0.2029389722, + "27": 0.2106252081, + "28": 0.218634662, + "29": 0.2269006904, + "30": 0.235456615, + "31": 0.2441642626, + "32": 0.2529874531, + "33": 0.2621503281, + "34": 0.2715408168, + "35": 0.2812149546, + "36": 0.291005231, + "37": 0.3008136033, + "38": 0.310987071, + "39": 0.3213521342, + "40": 0.331995543, + "41": 0.3427245537, + "42": 0.3533494131, + "43": 0.3643749687, + "44": 0.3755487967, + "45": 0.386997109, + "46": 0.3985078883, + "47": 0.409766396, + "48": 0.4214723379, + "49": 0.4332758612, + "50": 0.4453518922, + "51": 0.4574767028, + "52": 0.4691748881, + "53": 0.4813790027, + "54": 0.4936227692, + "55": 0.5061393264, + "56": 0.5187021171, + "57": 0.5306380723, + "58": 0.5431504818, + "59": 0.5556377007, + "60": 0.5684005513, + "61": 0.5812195365, + "62": 0.5931867478, + "63": 0.6058128802, + "64": 0.6183425861, + "65": 0.6311535393, + "66": 0.6440438642, + "67": 0.6558346115, + "68": 0.6683782396, + "69": 0.6807485195, + "70": 0.6934085657, + "71": 0.7061268208, + "72": 0.7176228989, + "73": 0.7298455659, + "74": 0.7418786309, + "75": 0.7541801893, + "76": 0.7665211934, + "77": 0.7775616566, + "78": 0.7892535374, + "79": 0.8007650173, + "80": 0.8125120056, + "81": 0.8242865477, + "82": 0.8346999407, + "83": 0.8456683534, + "84": 0.8564776518, + "85": 0.8674849029, + "86": 0.8785115731, + "87": 0.8881370633, + "88": 0.8982003382, + "89": 0.9081381089, + "90": 0.9182320198, + "91": 0.9283412486, + "92": 0.9370303963, + "93": 0.9460211647, + "94": 0.9549318108, + "95": 0.9639532062, + "96": 0.9729899149, + "97": 0.9806088602, + "98": 0.9883768091, + "99": 0.9961209168, + "100": 1.0039276059, + "101": 1.0117536649, + "102": 1.0181850848, + "103": 1.0245994402, + "104": 1.0310559561, + "105": 1.03752502, + "106": 1.0440214381, + "107": 1.0491662583, + "108": 1.0541179465, + "109": 1.0591860654, + "110": 1.0642158337, + "111": 1.0692846421, + "112": 1.0730634842, + "113": 1.0764669352, + "114": 1.0800676734, + "115": 1.0835793597, + "116": 1.0871451637, + "117": 1.0894995031, + "118": 1.0912940691, + "119": 1.0933714961, + "120": 1.095310467, + "121": 1.0973216404, + "122": 1.0982146587, + "123": 1.0983656186, + "124": 1.0988877269, + "125": 1.0992243803, + "126": 1.0996538804, + "127": 1.0990710018, + "128": 1.0975701411, + "129": 1.0965293437, + "130": 1.0952595868, + "131": 1.0941053818, + "132": 1.0920544848, + "133": 1.0889202389, + "134": 1.0863334854, + "135": 1.0834788038, + "136": 1.0807639042, + "137": 1.0772752033, + "138": 1.0725523591, + "139": 1.0684608668, + "140": 1.0640679788, + "141": 1.0598400689, + "142": 1.0549656724, + "143": 1.0487246389, + "144": 1.0431932466, + "145": 1.0373333564, + "146": 1.031664038, + "147": 1.0254771846, + "148": 1.0178128358, + "149": 1.0109289865, + "150": 1.0036966393, + "151": 0.9966802928, + "152": 0.9892742796, + "153": 0.9803044001, + "154": 0.9721767728, + "155": 0.9636883385, + "156": 0.9554406268, + "157": 0.9469274449, + "158": 0.936790793, + "159": 0.927547602, + "160": 0.9179394064, + "161": 0.908595439, + "162": 0.8991041355, + "163": 0.8879581608, + "164": 0.8777451495, + "165": 0.8671712842, + "166": 0.8568834736, + "167": 0.8465582633, + "168": 0.8345765156, + "169": 0.8235546766, + "170": 0.8121845233, + "171": 0.8011201672, + "172": 0.7900345525, + "173": 0.7775294802, + "174": 0.7658097107, + "175": 0.753856634, + "176": 0.7421795552, + "177": 0.7305238217, + "178": 0.7176668533, + "179": 0.70544566, + "180": 0.6930948738, + "181": 0.6809971787, + "182": 0.6689612326, + "183": 0.6559342849, + "184": 0.6434135356, + "185": 0.6308577125, + "186": 0.6185374516, + "187": 0.606317435, + "188": 0.5933054275, + "189": 0.5806914287, + "190": 0.5681264836, + "191": 0.5557850696, + "192": 0.543579948, + "193": 0.5307682411, + "194": 0.5182682585, + "195": 0.5058903232, + "196": 0.4937292736, + "197": 0.4817376904, + "198": 0.4693093663, + "199": 0.457128212, + "200": 0.4451305718, + "201": 0.4333482737, + "202": 0.4217654037, + "203": 0.40989858, + "204": 0.39823523, + "205": 0.3868053007, + "206": 0.3755938186, + "207": 0.3646082704, + "208": 0.3534734934, + "209": 0.3425178057, + "210": 0.3318342067, + "211": 0.3213761965, + "212": 0.3111670252, + "213": 0.3009247712, + "214": 0.2908543511, + "215": 0.2810841143, + "216": 0.271549886, + "217": 0.2622837537, + "218": 0.2530820806, + "219": 0.2440593492, + "220": 0.2353553117, + "221": 0.226900092, + "222": 0.2187286281, + "223": 0.2107010064, + "224": 0.2028705167, + "225": 0.1953689327, + "226": 0.1881303676, + "227": 0.1811877649, + "228": 0.1744511245, + "229": 0.1679371725, + "230": 0.1617555869, + "231": 0.1558515288, + "232": 0.1502524176, + "233": 0.1449054351, + "234": 0.1398100041, + "235": 0.1350454175, + "236": 0.130572029, + "237": 0.1264096616, + "238": 0.1225313149, + "239": 0.1189323879, + "240": 0.1156597436, + "241": 0.1126899505, + "242": 0.1100347244, + "243": 0.1076831352, + "244": 0.1056334008, + "245": 0.103904416, + "246": 0.1024867334, + "247": 0.1013850767, + "248": 0.1005966571, + "249": 0.1001226332, + "250": 0.0999649935, + "251": 0.0999122628, + "252": 0.0993861158, + "253": 0.0986234546, + "254": 0.0975087385, + "255": 0.0960983729, + "256": 0.094364155, + "257": 0.0923201863, + "258": 0.0899614042, + "259": 0.0873113343, + "260": 0.0843409157, + "261": 0.0810646789, + "262": 0.0774753587, + "263": 0.0735790078, + "264": 0.069432535, + "265": 0.064954503, + "266": 0.0601856304, + "267": 0.0551055579, + "268": 0.0497244652, + "269": 0.0441585065, + "270": 0.0382424421, + "271": 0.0320577198, + "272": 0.0255636158, + "273": 0.018780492, + "274": 0.0118836737, + "275": 0.004627707, + "276": -0.0028761573, + "277": -0.0106835446, + "278": -0.0187666421, + "279": -0.026883026, + "280": -0.0353599627, + "281": -0.0440647877, + "282": -0.0530638333, + "283": -0.0623239333, + "284": -0.0715315788, + "285": -0.0810897026, + "286": -0.0908586875, + "287": -0.100908342, + "288": -0.1112037619, + "289": -0.1213591198, + "290": -0.1318401617, + "291": -0.1425199949, + "292": -0.1534620656, + "293": -0.1646346508, + "294": -0.1755810443, + "295": -0.1868108559, + "296": -0.1982341161, + "297": -0.2098958095, + "298": -0.2217734438, + "299": -0.2333433695, + "300": -0.2451347921, + "301": -0.2571225654, + "302": -0.2693192624, + "303": -0.2817185966, + "304": -0.2937361859, + "305": -0.3058921354, + "306": -0.318256814, + "307": -0.3307950375, + "308": -0.3435243979, + "309": -0.3558079967, + "310": -0.3681247122, + "311": -0.3806729273, + "312": -0.3933534506, + "313": -0.4062158777, + "314": -0.4185807126, + "315": -0.4308511174, + "316": -0.4433867625, + "317": -0.4560078128, + "318": -0.4688041859, + "319": -0.4810650719, + "320": -0.4930821874, + "321": -0.5054094828, + "322": -0.5177699828, + "323": -0.5303021752, + "324": -0.542276231, + "325": -0.5538365904, + "326": -0.5657631423, + "327": -0.5776659422, + "328": -0.5897399624, + "329": -0.6012492912, + "330": -0.6121562998, + "331": -0.6234961086, + "332": -0.6347511573, + "333": -0.646180226, + "334": -0.6570545226, + "335": -0.6671216991, + "336": -0.6776980633, + "337": -0.6881254614, + "338": -0.6987329703, + "339": -0.7088120168, + "340": -0.7178660749, + "341": -0.727514353, + "342": -0.736947247, + "343": -0.7465695589, + "344": -0.7557055745, + "345": -0.7635892827, + "346": -0.7721594636, + "347": -0.7804467273, + "348": -0.7889357687, + "349": -0.796995576, + "350": -0.8035703581, + "351": -0.8109294046, + "352": -0.8179380706, + "353": -0.8251636787, + "354": -0.8320306583, + "355": -0.8371788835, + "356": -0.8432128087, + "357": -0.8488302066, + "358": -0.8546821909, + "359": -0.8602579937, + "360": -0.8638849261, + "361": -0.8685005739, + "362": -0.8726361442, + "363": -0.8770260335, + "364": -0.881232028, + "365": -0.8832673924, + "366": -0.8863938898, + "367": -0.8889806388, + "368": -0.89184308, + "369": -0.8945734931, + "370": -0.8950446706, + "371": -0.8965985226, + "372": -0.8976121096, + "373": -0.8988969013, + "374": -0.9000471629, + "375": -0.8990432002, + "376": -0.8989473946, + "377": -0.8983976296, + "378": -0.8980749635, + "379": -0.8976388672, + "380": -0.8951635569, + "381": -0.8934215447, + "382": -0.8913158578, + "383": -0.8893949827, + "384": -0.887384676, + "385": -0.8834675575, + "386": -0.880107667, + "387": -0.8764787541, + "388": -0.8729939441, + "389": -0.8694466744, + "390": -0.8641391175, + "391": -0.8592158249, + "392": -0.8541202649, + "393": -0.8491307034, + "394": -0.8441080074, + "395": -0.8374825579, + "396": -0.831075542, + "397": -0.8245929375, + "398": -0.8181817556, + "399": -0.8117684906, + "400": -0.8039177924, + "401": -0.7961306248, + "402": -0.7883623526, + "403": -0.7806352934, + "404": -0.7729382884, + "405": -0.7639737176, + "406": -0.7549321594, + "407": -0.745999783, + "408": -0.7370835038, + "409": -0.728229864, + "410": -0.7182798897, + "411": -0.7081298217, + "412": -0.6981731886, + "413": -0.6882132261, + "414": -0.6783483164, + "415": -0.6675566126, + "416": -0.656461634, + "417": -0.6456366882, + "418": -0.6347951215, + "419": -0.6240802608, + "420": -0.612603596, + "421": -0.6007423282, + "422": -0.5892186698, + "423": -0.5776715146, + "424": -0.5662814158, + "425": -0.5542873533, + "426": -0.541850499, + "427": -0.529808733, + "428": -0.5177431153, + "429": -0.5058631158, + "430": -0.4935275552, + "431": -0.4807147544, + "432": -0.4683436658, + "433": -0.4559548132, + "434": -0.4437779348, + "435": -0.4312825325, + "436": -0.4182990714, + "437": -0.4057926738, + "438": -0.3932807785, + "439": -0.3810046662, + "440": -0.3685341733, + "441": -0.355587602, + "442": -0.3431421064, + "443": -0.3307091095, + "444": -0.3185328997, + "445": -0.3062724529, + "446": -0.2935691584, + "447": -0.2813799044, + "448": -0.2692262467, + "449": -0.2573474075, + "450": -0.2454798148, + "451": -0.2332216192, + "452": -0.2214800235, + "453": -0.2098014263, + "454": -0.1984126283, + "455": -0.1871156889, + "456": -0.1754965185, + "457": -0.1643870842, + "458": -0.1533714024, + "459": -0.1426574649, + "460": -0.1321013619, + "461": -0.1213040442, + "462": -0.1110014771, + "463": -0.100825678, + "464": -0.0909606382, + "465": -0.0813054409, + "466": -0.071498687, + "467": -0.0621651674, + "468": -0.0529924865, + "469": -0.0441368421, + "470": -0.0355201355, + "471": -0.0268707822, + "472": -0.0186459143, + "473": -0.0106269872, + "474": -0.0029232731, + "475": 0.004519864, + "476": 0.0118816443, + "477": 0.0188669874, + "478": 0.0256045568, + "479": 0.0320300208, + "480": 0.0381755453, + "481": 0.0441505918, + "482": 0.0497802179, + "483": 0.0551319583, + "484": 0.0601720456, + "485": 0.0649173636, + "486": 0.0694258239, + "487": 0.0736067138, + "488": 0.0774896296, + "489": 0.0810597732, + "490": 0.0843245436, + "491": 0.0873074442, + "492": 0.0899710854, + "493": 0.0923250534, + "494": 0.0943645552, + "495": 0.0960919872, + "496": 0.0975120735, + "497": 0.0986156006, + "498": 0.099404302, + "499": 0.099877311, + "500": 0.1000350609 + }, + "pressure_out": { + "0": 0.1, + "1": 0.1, + "2": 0.1, + "3": 0.1, + "4": 0.1, + "5": 0.1, + "6": 0.1, + "7": 0.1, + "8": 0.1, + "9": 0.1, + "10": 0.1, + "11": 0.1, + "12": 0.1, + "13": 0.1, + "14": 0.1, + "15": 0.1, + "16": 0.1, + "17": 0.1, + "18": 0.1, + "19": 0.1, + "20": 0.1, + "21": 0.1, + "22": 0.1, + "23": 0.1, + "24": 0.1, + "25": 0.1, + "26": 0.1, + "27": 0.1, + "28": 0.1, + "29": 0.1, + "30": 0.1, + "31": 0.1, + "32": 0.1, + "33": 0.1, + "34": 0.1, + "35": 0.1, + "36": 0.1, + "37": 0.1, + "38": 0.1, + "39": 0.1, + "40": 0.1, + "41": 0.1, + "42": 0.1, + "43": 0.1, + "44": 0.1, + "45": 0.1, + "46": 0.1, + "47": 0.1, + "48": 0.1, + "49": 0.1, + "50": 0.1, + "51": 0.1, + "52": 0.1, + "53": 0.1, + "54": 0.1, + "55": 0.1, + "56": 0.1, + "57": 0.1, + "58": 0.1, + "59": 0.1, + "60": 0.1, + "61": 0.1, + "62": 0.1, + "63": 0.1, + "64": 0.1, + "65": 0.1, + "66": 0.1, + "67": 0.1, + "68": 0.1, + "69": 0.1, + "70": 0.1, + "71": 0.1, + "72": 0.1, + "73": 0.1, + "74": 0.1, + "75": 0.1, + "76": 0.1, + "77": 0.1, + "78": 0.1, + "79": 0.1, + "80": 0.1, + "81": 0.1, + "82": 0.1, + "83": 0.1, + "84": 0.1, + "85": 0.1, + "86": 0.1, + "87": 0.1, + "88": 0.1, + "89": 0.1, + "90": 0.1, + "91": 0.1, + "92": 0.1, + "93": 0.1, + "94": 0.1, + "95": 0.1, + "96": 0.1, + "97": 0.1, + "98": 0.1, + "99": 0.1, + "100": 0.1, + "101": 0.1, + "102": 0.1, + "103": 0.1, + "104": 0.1, + "105": 0.1, + "106": 0.1, + "107": 0.1, + "108": 0.1, + "109": 0.1, + "110": 0.1, + "111": 0.1, + "112": 0.1, + "113": 0.1, + "114": 0.1, + "115": 0.1, + "116": 0.1, + "117": 0.1, + "118": 0.1, + "119": 0.1, + "120": 0.1, + "121": 0.1, + "122": 0.1, + "123": 0.1, + "124": 0.1, + "125": 0.1, + "126": 0.1, + "127": 0.1, + "128": 0.1, + "129": 0.1, + "130": 0.1, + "131": 0.1, + "132": 0.1, + "133": 0.1, + "134": 0.1, + "135": 0.1, + "136": 0.1, + "137": 0.1, + "138": 0.1, + "139": 0.1, + "140": 0.1, + "141": 0.1, + "142": 0.1, + "143": 0.1, + "144": 0.1, + "145": 0.1, + "146": 0.1, + "147": 0.1, + "148": 0.1, + "149": 0.1, + "150": 0.1, + "151": 0.1, + "152": 0.1, + "153": 0.1, + "154": 0.1, + "155": 0.1, + "156": 0.1, + "157": 0.1, + "158": 0.1, + "159": 0.1, + "160": 0.1, + "161": 0.1, + "162": 0.1, + "163": 0.1, + "164": 0.1, + "165": 0.1, + "166": 0.1, + "167": 0.1, + "168": 0.1, + "169": 0.1, + "170": 0.1, + "171": 0.1, + "172": 0.1, + "173": 0.1, + "174": 0.1, + "175": 0.1, + "176": 0.1, + "177": 0.1, + "178": 0.1, + "179": 0.1, + "180": 0.1, + "181": 0.1, + "182": 0.1, + "183": 0.1, + "184": 0.1, + "185": 0.1, + "186": 0.1, + "187": 0.1, + "188": 0.1, + "189": 0.1, + "190": 0.1, + "191": 0.1, + "192": 0.1, + "193": 0.1, + "194": 0.1, + "195": 0.1, + "196": 0.1, + "197": 0.1, + "198": 0.1, + "199": 0.1, + "200": 0.1, + "201": 0.1, + "202": 0.1, + "203": 0.1, + "204": 0.1, + "205": 0.1, + "206": 0.1, + "207": 0.1, + "208": 0.1, + "209": 0.1, + "210": 0.1, + "211": 0.1, + "212": 0.1, + "213": 0.1, + "214": 0.1, + "215": 0.1, + "216": 0.1, + "217": 0.1, + "218": 0.1, + "219": 0.1, + "220": 0.1, + "221": 0.1, + "222": 0.1, + "223": 0.1, + "224": 0.1, + "225": 0.1, + "226": 0.1, + "227": 0.1, + "228": 0.1, + "229": 0.1, + "230": 0.1, + "231": 0.1, + "232": 0.1, + "233": 0.1, + "234": 0.1, + "235": 0.1, + "236": 0.1, + "237": 0.1, + "238": 0.1, + "239": 0.1, + "240": 0.1, + "241": 0.1, + "242": 0.1, + "243": 0.1, + "244": 0.1, + "245": 0.1, + "246": 0.1, + "247": 0.1, + "248": 0.1, + "249": 0.1, + "250": 0.1, + "251": 0.1, + "252": 0.1, + "253": 0.1, + "254": 0.1, + "255": 0.1, + "256": 0.1, + "257": 0.1, + "258": 0.1, + "259": 0.1, + "260": 0.1, + "261": 0.1, + "262": 0.1, + "263": 0.1, + "264": 0.1, + "265": 0.1, + "266": 0.1, + "267": 0.1, + "268": 0.1, + "269": 0.1, + "270": 0.1, + "271": 0.1, + "272": 0.1, + "273": 0.1, + "274": 0.1, + "275": 0.1, + "276": 0.1, + "277": 0.1, + "278": 0.1, + "279": 0.1, + "280": 0.1, + "281": 0.1, + "282": 0.1, + "283": 0.1, + "284": 0.1, + "285": 0.1, + "286": 0.1, + "287": 0.1, + "288": 0.1, + "289": 0.1, + "290": 0.1, + "291": 0.1, + "292": 0.1, + "293": 0.1, + "294": 0.1, + "295": 0.1, + "296": 0.1, + "297": 0.1, + "298": 0.1, + "299": 0.1, + "300": 0.1, + "301": 0.1, + "302": 0.1, + "303": 0.1, + "304": 0.1, + "305": 0.1, + "306": 0.1, + "307": 0.1, + "308": 0.1, + "309": 0.1, + "310": 0.1, + "311": 0.1, + "312": 0.1, + "313": 0.1, + "314": 0.1, + "315": 0.1, + "316": 0.1, + "317": 0.1, + "318": 0.1, + "319": 0.1, + "320": 0.1, + "321": 0.1, + "322": 0.1, + "323": 0.1, + "324": 0.1, + "325": 0.1, + "326": 0.1, + "327": 0.1, + "328": 0.1, + "329": 0.1, + "330": 0.1, + "331": 0.1, + "332": 0.1, + "333": 0.1, + "334": 0.1, + "335": 0.1, + "336": 0.1, + "337": 0.1, + "338": 0.1, + "339": 0.1, + "340": 0.1, + "341": 0.1, + "342": 0.1, + "343": 0.1, + "344": 0.1, + "345": 0.1, + "346": 0.1, + "347": 0.1, + "348": 0.1, + "349": 0.1, + "350": 0.1, + "351": 0.1, + "352": 0.1, + "353": 0.1, + "354": 0.1, + "355": 0.1, + "356": 0.1, + "357": 0.1, + "358": 0.1, + "359": 0.1, + "360": 0.1, + "361": 0.1, + "362": 0.1, + "363": 0.1, + "364": 0.1, + "365": 0.1, + "366": 0.1, + "367": 0.1, + "368": 0.1, + "369": 0.1, + "370": 0.1, + "371": 0.1, + "372": 0.1, + "373": 0.1, + "374": 0.1, + "375": 0.1, + "376": 0.1, + "377": 0.1, + "378": 0.1, + "379": 0.1, + "380": 0.1, + "381": 0.1, + "382": 0.1, + "383": 0.1, + "384": 0.1, + "385": 0.1, + "386": 0.1, + "387": 0.1, + "388": 0.1, + "389": 0.1, + "390": 0.1, + "391": 0.1, + "392": 0.1, + "393": 0.1, + "394": 0.1, + "395": 0.1, + "396": 0.1, + "397": 0.1, + "398": 0.1, + "399": 0.1, + "400": 0.1, + "401": 0.1, + "402": 0.1, + "403": 0.1, + "404": 0.1, + "405": 0.1, + "406": 0.1, + "407": 0.1, + "408": 0.1, + "409": 0.1, + "410": 0.1, + "411": 0.1, + "412": 0.1, + "413": 0.1, + "414": 0.1, + "415": 0.1, + "416": 0.1, + "417": 0.1, + "418": 0.1, + "419": 0.1, + "420": 0.1, + "421": 0.1, + "422": 0.1, + "423": 0.1, + "424": 0.1, + "425": 0.1, + "426": 0.1, + "427": 0.1, + "428": 0.1, + "429": 0.1, + "430": 0.1, + "431": 0.1, + "432": 0.1, + "433": 0.1, + "434": 0.1, + "435": 0.1, + "436": 0.1, + "437": 0.1, + "438": 0.1, + "439": 0.1, + "440": 0.1, + "441": 0.1, + "442": 0.1, + "443": 0.1, + "444": 0.1, + "445": 0.1, + "446": 0.1, + "447": 0.1, + "448": 0.1, + "449": 0.1, + "450": 0.1, + "451": 0.1, + "452": 0.1, + "453": 0.1, + "454": 0.1, + "455": 0.1, + "456": 0.1, + "457": 0.1, + "458": 0.1, + "459": 0.1, + "460": 0.1, + "461": 0.1, + "462": 0.1, + "463": 0.1, + "464": 0.1, + "465": 0.1, + "466": 0.1, + "467": 0.1, + "468": 0.1, + "469": 0.1, + "470": 0.1, + "471": 0.1, + "472": 0.1, + "473": 0.1, + "474": 0.1, + "475": 0.1, + "476": 0.1, + "477": 0.1, + "478": 0.1, + "479": 0.1, + "480": 0.1, + "481": 0.1, + "482": 0.1, + "483": 0.1, + "484": 0.1, + "485": 0.1, + "486": 0.1, + "487": 0.1, + "488": 0.1, + "489": 0.1, + "490": 0.1, + "491": 0.1, + "492": 0.1, + "493": 0.1, + "494": 0.1, + "495": 0.1, + "496": 0.1, + "497": 0.1, + "498": 0.1, + "499": 0.1, + "500": 0.1 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_CStenosis_steadyPressure_definedPeriod.json b/tests/cases/results/result_pulsatileFlow_CStenosis_steadyPressure_definedPeriod.json index 41027b2a9..55d283afd 100644 --- a/tests/cases/results/result_pulsatileFlow_CStenosis_steadyPressure_definedPeriod.json +++ b/tests/cases/results/result_pulsatileFlow_CStenosis_steadyPressure_definedPeriod.json @@ -1 +1,3020 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0","101":"branch0_seg0","102":"branch0_seg0","103":"branch0_seg0","104":"branch0_seg0","105":"branch0_seg0","106":"branch0_seg0","107":"branch0_seg0","108":"branch0_seg0","109":"branch0_seg0","110":"branch0_seg0","111":"branch0_seg0","112":"branch0_seg0","113":"branch0_seg0","114":"branch0_seg0","115":"branch0_seg0","116":"branch0_seg0","117":"branch0_seg0","118":"branch0_seg0","119":"branch0_seg0","120":"branch0_seg0","121":"branch0_seg0","122":"branch0_seg0","123":"branch0_seg0","124":"branch0_seg0","125":"branch0_seg0","126":"branch0_seg0","127":"branch0_seg0","128":"branch0_seg0","129":"branch0_seg0","130":"branch0_seg0","131":"branch0_seg0","132":"branch0_seg0","133":"branch0_seg0","134":"branch0_seg0","135":"branch0_seg0","136":"branch0_seg0","137":"branch0_seg0","138":"branch0_seg0","139":"branch0_seg0","140":"branch0_seg0","141":"branch0_seg0","142":"branch0_seg0","143":"branch0_seg0","144":"branch0_seg0","145":"branch0_seg0","146":"branch0_seg0","147":"branch0_seg0","148":"branch0_seg0","149":"branch0_seg0","150":"branch0_seg0","151":"branch0_seg0","152":"branch0_seg0","153":"branch0_seg0","154":"branch0_seg0","155":"branch0_seg0","156":"branch0_seg0","157":"branch0_seg0","158":"branch0_seg0","159":"branch0_seg0","160":"branch0_seg0","161":"branch0_seg0","162":"branch0_seg0","163":"branch0_seg0","164":"branch0_seg0","165":"branch0_seg0","166":"branch0_seg0","167":"branch0_seg0","168":"branch0_seg0","169":"branch0_seg0","170":"branch0_seg0","171":"branch0_seg0","172":"branch0_seg0","173":"branch0_seg0","174":"branch0_seg0","175":"branch0_seg0","176":"branch0_seg0","177":"branch0_seg0","178":"branch0_seg0","179":"branch0_seg0","180":"branch0_seg0","181":"branch0_seg0","182":"branch0_seg0","183":"branch0_seg0","184":"branch0_seg0","185":"branch0_seg0","186":"branch0_seg0","187":"branch0_seg0","188":"branch0_seg0","189":"branch0_seg0","190":"branch0_seg0","191":"branch0_seg0","192":"branch0_seg0","193":"branch0_seg0","194":"branch0_seg0","195":"branch0_seg0","196":"branch0_seg0","197":"branch0_seg0","198":"branch0_seg0","199":"branch0_seg0","200":"branch0_seg0","201":"branch0_seg0","202":"branch0_seg0","203":"branch0_seg0","204":"branch0_seg0","205":"branch0_seg0","206":"branch0_seg0","207":"branch0_seg0","208":"branch0_seg0","209":"branch0_seg0","210":"branch0_seg0","211":"branch0_seg0","212":"branch0_seg0","213":"branch0_seg0","214":"branch0_seg0","215":"branch0_seg0","216":"branch0_seg0","217":"branch0_seg0","218":"branch0_seg0","219":"branch0_seg0","220":"branch0_seg0","221":"branch0_seg0","222":"branch0_seg0","223":"branch0_seg0","224":"branch0_seg0","225":"branch0_seg0","226":"branch0_seg0","227":"branch0_seg0","228":"branch0_seg0","229":"branch0_seg0","230":"branch0_seg0","231":"branch0_seg0","232":"branch0_seg0","233":"branch0_seg0","234":"branch0_seg0","235":"branch0_seg0","236":"branch0_seg0","237":"branch0_seg0","238":"branch0_seg0","239":"branch0_seg0","240":"branch0_seg0","241":"branch0_seg0","242":"branch0_seg0","243":"branch0_seg0","244":"branch0_seg0","245":"branch0_seg0","246":"branch0_seg0","247":"branch0_seg0","248":"branch0_seg0","249":"branch0_seg0","250":"branch0_seg0","251":"branch0_seg0","252":"branch0_seg0","253":"branch0_seg0","254":"branch0_seg0","255":"branch0_seg0","256":"branch0_seg0","257":"branch0_seg0","258":"branch0_seg0","259":"branch0_seg0","260":"branch0_seg0","261":"branch0_seg0","262":"branch0_seg0","263":"branch0_seg0","264":"branch0_seg0","265":"branch0_seg0","266":"branch0_seg0","267":"branch0_seg0","268":"branch0_seg0","269":"branch0_seg0","270":"branch0_seg0","271":"branch0_seg0","272":"branch0_seg0","273":"branch0_seg0","274":"branch0_seg0","275":"branch0_seg0","276":"branch0_seg0","277":"branch0_seg0","278":"branch0_seg0","279":"branch0_seg0","280":"branch0_seg0","281":"branch0_seg0","282":"branch0_seg0","283":"branch0_seg0","284":"branch0_seg0","285":"branch0_seg0","286":"branch0_seg0","287":"branch0_seg0","288":"branch0_seg0","289":"branch0_seg0","290":"branch0_seg0","291":"branch0_seg0","292":"branch0_seg0","293":"branch0_seg0","294":"branch0_seg0","295":"branch0_seg0","296":"branch0_seg0","297":"branch0_seg0","298":"branch0_seg0","299":"branch0_seg0","300":"branch0_seg0","301":"branch0_seg0","302":"branch0_seg0","303":"branch0_seg0","304":"branch0_seg0","305":"branch0_seg0","306":"branch0_seg0","307":"branch0_seg0","308":"branch0_seg0","309":"branch0_seg0","310":"branch0_seg0","311":"branch0_seg0","312":"branch0_seg0","313":"branch0_seg0","314":"branch0_seg0","315":"branch0_seg0","316":"branch0_seg0","317":"branch0_seg0","318":"branch0_seg0","319":"branch0_seg0","320":"branch0_seg0","321":"branch0_seg0","322":"branch0_seg0","323":"branch0_seg0","324":"branch0_seg0","325":"branch0_seg0","326":"branch0_seg0","327":"branch0_seg0","328":"branch0_seg0","329":"branch0_seg0","330":"branch0_seg0","331":"branch0_seg0","332":"branch0_seg0","333":"branch0_seg0","334":"branch0_seg0","335":"branch0_seg0","336":"branch0_seg0","337":"branch0_seg0","338":"branch0_seg0","339":"branch0_seg0","340":"branch0_seg0","341":"branch0_seg0","342":"branch0_seg0","343":"branch0_seg0","344":"branch0_seg0","345":"branch0_seg0","346":"branch0_seg0","347":"branch0_seg0","348":"branch0_seg0","349":"branch0_seg0","350":"branch0_seg0","351":"branch0_seg0","352":"branch0_seg0","353":"branch0_seg0","354":"branch0_seg0","355":"branch0_seg0","356":"branch0_seg0","357":"branch0_seg0","358":"branch0_seg0","359":"branch0_seg0","360":"branch0_seg0","361":"branch0_seg0","362":"branch0_seg0","363":"branch0_seg0","364":"branch0_seg0","365":"branch0_seg0","366":"branch0_seg0","367":"branch0_seg0","368":"branch0_seg0","369":"branch0_seg0","370":"branch0_seg0","371":"branch0_seg0","372":"branch0_seg0","373":"branch0_seg0","374":"branch0_seg0","375":"branch0_seg0","376":"branch0_seg0","377":"branch0_seg0","378":"branch0_seg0","379":"branch0_seg0","380":"branch0_seg0","381":"branch0_seg0","382":"branch0_seg0","383":"branch0_seg0","384":"branch0_seg0","385":"branch0_seg0","386":"branch0_seg0","387":"branch0_seg0","388":"branch0_seg0","389":"branch0_seg0","390":"branch0_seg0","391":"branch0_seg0","392":"branch0_seg0","393":"branch0_seg0","394":"branch0_seg0","395":"branch0_seg0","396":"branch0_seg0","397":"branch0_seg0","398":"branch0_seg0","399":"branch0_seg0","400":"branch0_seg0","401":"branch0_seg0","402":"branch0_seg0","403":"branch0_seg0","404":"branch0_seg0","405":"branch0_seg0","406":"branch0_seg0","407":"branch0_seg0","408":"branch0_seg0","409":"branch0_seg0","410":"branch0_seg0","411":"branch0_seg0","412":"branch0_seg0","413":"branch0_seg0","414":"branch0_seg0","415":"branch0_seg0","416":"branch0_seg0","417":"branch0_seg0","418":"branch0_seg0","419":"branch0_seg0","420":"branch0_seg0","421":"branch0_seg0","422":"branch0_seg0","423":"branch0_seg0","424":"branch0_seg0","425":"branch0_seg0","426":"branch0_seg0","427":"branch0_seg0","428":"branch0_seg0","429":"branch0_seg0","430":"branch0_seg0","431":"branch0_seg0","432":"branch0_seg0","433":"branch0_seg0","434":"branch0_seg0","435":"branch0_seg0","436":"branch0_seg0","437":"branch0_seg0","438":"branch0_seg0","439":"branch0_seg0","440":"branch0_seg0","441":"branch0_seg0","442":"branch0_seg0","443":"branch0_seg0","444":"branch0_seg0","445":"branch0_seg0","446":"branch0_seg0","447":"branch0_seg0","448":"branch0_seg0","449":"branch0_seg0","450":"branch0_seg0","451":"branch0_seg0","452":"branch0_seg0","453":"branch0_seg0","454":"branch0_seg0","455":"branch0_seg0","456":"branch0_seg0","457":"branch0_seg0","458":"branch0_seg0","459":"branch0_seg0","460":"branch0_seg0","461":"branch0_seg0","462":"branch0_seg0","463":"branch0_seg0","464":"branch0_seg0","465":"branch0_seg0","466":"branch0_seg0","467":"branch0_seg0","468":"branch0_seg0","469":"branch0_seg0","470":"branch0_seg0","471":"branch0_seg0","472":"branch0_seg0","473":"branch0_seg0","474":"branch0_seg0","475":"branch0_seg0","476":"branch0_seg0","477":"branch0_seg0","478":"branch0_seg0","479":"branch0_seg0","480":"branch0_seg0","481":"branch0_seg0","482":"branch0_seg0","483":"branch0_seg0","484":"branch0_seg0","485":"branch0_seg0","486":"branch0_seg0","487":"branch0_seg0","488":"branch0_seg0","489":"branch0_seg0","490":"branch0_seg0","491":"branch0_seg0","492":"branch0_seg0","493":"branch0_seg0","494":"branch0_seg0","495":"branch0_seg0","496":"branch0_seg0","497":"branch0_seg0","498":"branch0_seg0","499":"branch0_seg0","500":"branch0_seg0"},"time":{"0":0.0,"1":0.0125663706,"2":0.0251327412,"3":0.0376991118,"4":0.0502654825,"5":0.0628318531,"6":0.0753982237,"7":0.0879645943,"8":0.1005309649,"9":0.1130973355,"10":0.1256637061,"11":0.1382300768,"12":0.1507964474,"13":0.163362818,"14":0.1759291886,"15":0.1884955592,"16":0.2010619298,"17":0.2136283004,"18":0.2261946711,"19":0.2387610417,"20":0.2513274123,"21":0.2638937829,"22":0.2764601535,"23":0.2890265241,"24":0.3015928947,"25":0.3141592653,"26":0.326725636,"27":0.3392920066,"28":0.3518583772,"29":0.3644247478,"30":0.3769911184,"31":0.389557489,"32":0.4021238596,"33":0.4146902303,"34":0.4272566009,"35":0.4398229715,"36":0.4523893421,"37":0.4649557127,"38":0.4775220833,"39":0.4900884539,"40":0.5026548246,"41":0.5152211952,"42":0.5277875658,"43":0.5403539364,"44":0.552920307,"45":0.5654866776,"46":0.5780530482,"47":0.5906194189,"48":0.6031857895,"49":0.6157521601,"50":0.6283185307,"51":0.6408849013,"52":0.6534512719,"53":0.6660176425,"54":0.6785840132,"55":0.6911503838,"56":0.7037167544,"57":0.716283125,"58":0.7288494956,"59":0.7414158662,"60":0.7539822368,"61":0.7665486075,"62":0.7791149781,"63":0.7916813487,"64":0.8042477193,"65":0.8168140899,"66":0.8293804605,"67":0.8419468311,"68":0.8545132018,"69":0.8670795724,"70":0.879645943,"71":0.8922123136,"72":0.9047786842,"73":0.9173450548,"74":0.9299114254,"75":0.942477796,"76":0.9550441667,"77":0.9676105373,"78":0.9801769079,"79":0.9927432785,"80":1.0053096491,"81":1.0178760197,"82":1.0304423903,"83":1.043008761,"84":1.0555751316,"85":1.0681415022,"86":1.0807078728,"87":1.0932742434,"88":1.105840614,"89":1.1184069846,"90":1.1309733553,"91":1.1435397259,"92":1.1561060965,"93":1.1686724671,"94":1.1812388377,"95":1.1938052083,"96":1.2063715789,"97":1.2189379496,"98":1.2315043202,"99":1.2440706908,"100":1.2566370614,"101":1.269203432,"102":1.2817698026,"103":1.2943361732,"104":1.3069025439,"105":1.3194689145,"106":1.3320352851,"107":1.3446016557,"108":1.3571680263,"109":1.3697343969,"110":1.3823007675,"111":1.3948671382,"112":1.4074335088,"113":1.4199998794,"114":1.43256625,"115":1.4451326206,"116":1.4576989912,"117":1.4702653618,"118":1.4828317325,"119":1.4953981031,"120":1.5079644737,"121":1.5205308443,"122":1.5330972149,"123":1.5456635855,"124":1.5582299561,"125":1.5707963267,"126":1.5833626974,"127":1.595929068,"128":1.6084954386,"129":1.6210618092,"130":1.6336281798,"131":1.6461945504,"132":1.658760921,"133":1.6713272917,"134":1.6838936623,"135":1.6964600329,"136":1.7090264035,"137":1.7215927741,"138":1.7341591447,"139":1.7467255153,"140":1.759291886,"141":1.7718582566,"142":1.7844246272,"143":1.7969909978,"144":1.8095573684,"145":1.822123739,"146":1.8346901096,"147":1.8472564803,"148":1.8598228509,"149":1.8723892215,"150":1.8849555921,"151":1.8975219627,"152":1.9100883333,"153":1.9226547039,"154":1.9352210746,"155":1.9477874452,"156":1.9603538158,"157":1.9729201864,"158":1.985486557,"159":1.9980529276,"160":2.0106192982,"161":2.0231856689,"162":2.0357520395,"163":2.0483184101,"164":2.0608847807,"165":2.0734511513,"166":2.0860175219,"167":2.0985838925,"168":2.1111502632,"169":2.1237166338,"170":2.1362830044,"171":2.148849375,"172":2.1614157456,"173":2.1739821162,"174":2.1865484868,"175":2.1991148574,"176":2.2116812281,"177":2.2242475987,"178":2.2368139693,"179":2.2493803399,"180":2.2619467105,"181":2.2745130811,"182":2.2870794517,"183":2.2996458224,"184":2.312212193,"185":2.3247785636,"186":2.3373449342,"187":2.3499113048,"188":2.3624776754,"189":2.375044046,"190":2.3876104167,"191":2.4001767873,"192":2.4127431579,"193":2.4253095285,"194":2.4378758991,"195":2.4504422697,"196":2.4630086403,"197":2.475575011,"198":2.4881413816,"199":2.5007077522,"200":2.5132741228,"201":2.5258404934,"202":2.538406864,"203":2.5509732346,"204":2.5635396053,"205":2.5761059759,"206":2.5886723465,"207":2.6012387171,"208":2.6138050877,"209":2.6263714583,"210":2.6389378289,"211":2.6515041996,"212":2.6640705702,"213":2.6766369408,"214":2.6892033114,"215":2.701769682,"216":2.7143360526,"217":2.7269024232,"218":2.7394687939,"219":2.7520351645,"220":2.7646015351,"221":2.7771679057,"222":2.7897342763,"223":2.8023006469,"224":2.8148670175,"225":2.8274333881,"226":2.8399997588,"227":2.8525661294,"228":2.8651325,"229":2.8776988706,"230":2.8902652412,"231":2.9028316118,"232":2.9153979824,"233":2.9279643531,"234":2.9405307237,"235":2.9530970943,"236":2.9656634649,"237":2.9782298355,"238":2.9907962061,"239":3.0033625767,"240":3.0159289474,"241":3.028495318,"242":3.0410616886,"243":3.0536280592,"244":3.0661944298,"245":3.0787608004,"246":3.091327171,"247":3.1038935417,"248":3.1164599123,"249":3.1290262829,"250":3.1415926535,"251":3.1541590241,"252":3.1667253947,"253":3.1792917653,"254":3.191858136,"255":3.2044245066,"256":3.2169908772,"257":3.2295572478,"258":3.2421236184,"259":3.254689989,"260":3.2672563596,"261":3.2798227303,"262":3.2923891009,"263":3.3049554715,"264":3.3175218421,"265":3.3300882127,"266":3.3426545833,"267":3.3552209539,"268":3.3677873246,"269":3.3803536952,"270":3.3929200658,"271":3.4054864364,"272":3.418052807,"273":3.4306191776,"274":3.4431855482,"275":3.4557519188,"276":3.4683182895,"277":3.4808846601,"278":3.4934510307,"279":3.5060174013,"280":3.5185837719,"281":3.5311501425,"282":3.5437165131,"283":3.5562828838,"284":3.5688492544,"285":3.581415625,"286":3.5939819956,"287":3.6065483662,"288":3.6191147368,"289":3.6316811074,"290":3.6442474781,"291":3.6568138487,"292":3.6693802193,"293":3.6819465899,"294":3.6945129605,"295":3.7070793311,"296":3.7196457017,"297":3.7322120724,"298":3.744778443,"299":3.7573448136,"300":3.7699111842,"301":3.7824775548,"302":3.7950439254,"303":3.807610296,"304":3.8201766667,"305":3.8327430373,"306":3.8453094079,"307":3.8578757785,"308":3.8704421491,"309":3.8830085197,"310":3.8955748903,"311":3.908141261,"312":3.9207076316,"313":3.9332740022,"314":3.9458403728,"315":3.9584067434,"316":3.970973114,"317":3.9835394846,"318":3.9961058553,"319":4.0086722259,"320":4.0212385965,"321":4.0338049671,"322":4.0463713377,"323":4.0589377083,"324":4.0715040789,"325":4.0840704495,"326":4.0966368202,"327":4.1092031908,"328":4.1217695614,"329":4.134335932,"330":4.1469023026,"331":4.1594686732,"332":4.1720350438,"333":4.1846014145,"334":4.1971677851,"335":4.2097341557,"336":4.2223005263,"337":4.2348668969,"338":4.2474332675,"339":4.2599996381,"340":4.2725660088,"341":4.2851323794,"342":4.29769875,"343":4.3102651206,"344":4.3228314912,"345":4.3353978618,"346":4.3479642324,"347":4.3605306031,"348":4.3730969737,"349":4.3856633443,"350":4.3982297149,"351":4.4107960855,"352":4.4233624561,"353":4.4359288267,"354":4.4484951974,"355":4.461061568,"356":4.4736279386,"357":4.4861943092,"358":4.4987606798,"359":4.5113270504,"360":4.523893421,"361":4.5364597917,"362":4.5490261623,"363":4.5615925329,"364":4.5741589035,"365":4.5867252741,"366":4.5992916447,"367":4.6118580153,"368":4.624424386,"369":4.6369907566,"370":4.6495571272,"371":4.6621234978,"372":4.6746898684,"373":4.687256239,"374":4.6998226096,"375":4.7123889802,"376":4.7249553509,"377":4.7375217215,"378":4.7500880921,"379":4.7626544627,"380":4.7752208333,"381":4.7877872039,"382":4.8003535745,"383":4.8129199452,"384":4.8254863158,"385":4.8380526864,"386":4.850619057,"387":4.8631854276,"388":4.8757517982,"389":4.8883181688,"390":4.9008845395,"391":4.9134509101,"392":4.9260172807,"393":4.9385836513,"394":4.9511500219,"395":4.9637163925,"396":4.9762827631,"397":4.9888491338,"398":5.0014155044,"399":5.013981875,"400":5.0265482456,"401":5.0391146162,"402":5.0516809868,"403":5.0642473574,"404":5.0768137281,"405":5.0893800987,"406":5.1019464693,"407":5.1145128399,"408":5.1270792105,"409":5.1396455811,"410":5.1522119517,"411":5.1647783224,"412":5.177344693,"413":5.1899110636,"414":5.2024774342,"415":5.2150438048,"416":5.2276101754,"417":5.240176546,"418":5.2527429167,"419":5.2653092873,"420":5.2778756579,"421":5.2904420285,"422":5.3030083991,"423":5.3155747697,"424":5.3281411403,"425":5.3407075109,"426":5.3532738816,"427":5.3658402522,"428":5.3784066228,"429":5.3909729934,"430":5.403539364,"431":5.4161057346,"432":5.4286721052,"433":5.4412384759,"434":5.4538048465,"435":5.4663712171,"436":5.4789375877,"437":5.4915039583,"438":5.5040703289,"439":5.5166366995,"440":5.5292030702,"441":5.5417694408,"442":5.5543358114,"443":5.566902182,"444":5.5794685526,"445":5.5920349232,"446":5.6046012938,"447":5.6171676645,"448":5.6297340351,"449":5.6423004057,"450":5.6548667763,"451":5.6674331469,"452":5.6799995175,"453":5.6925658881,"454":5.7051322588,"455":5.7176986294,"456":5.730265,"457":5.7428313706,"458":5.7553977412,"459":5.7679641118,"460":5.7805304824,"461":5.7930968531,"462":5.8056632237,"463":5.8182295943,"464":5.8307959649,"465":5.8433623355,"466":5.8559287061,"467":5.8684950767,"468":5.8810614474,"469":5.893627818,"470":5.9061941886,"471":5.9187605592,"472":5.9313269298,"473":5.9438933004,"474":5.956459671,"475":5.9690260416,"476":5.9815924123,"477":5.9941587829,"478":6.0067251535,"479":6.0192915241,"480":6.0318578947,"481":6.0444242653,"482":6.0569906359,"483":6.0695570066,"484":6.0821233772,"485":6.0946897478,"486":6.1072561184,"487":6.119822489,"488":6.1323888596,"489":6.1449552302,"490":6.1575216009,"491":6.1700879715,"492":6.1826543421,"493":6.1952207127,"494":6.2077870833,"495":6.2203534539,"496":6.2329198245,"497":6.2454861952,"498":6.2580525658,"499":6.2706189364,"500":6.283185307},"flow_in":{"0":0.0000000705,"1":0.012557901,"2":0.02511589,"3":0.0376737998,"4":0.0502317492,"5":0.0627896788,"6":0.0753008825,"7":0.0878063351,"8":0.1003146632,"9":0.1128215535,"10":0.1253291627,"11":0.1377507757,"12":0.1501496299,"13":0.1625598635,"14":0.1749644074,"15":0.1873717961,"16":0.1996611693,"17":0.2118998155,"18":0.2241638251,"19":0.236415153,"20":0.2486728218,"21":0.260787763,"22":0.2728132738,"23":0.2848834998,"24":0.2969313682,"25":0.3089904154,"26":0.3208893298,"27":0.3326496884,"28":0.3444793249,"29":0.3562743224,"30":0.3680866394,"31":0.3797286689,"32":0.3911729936,"33":0.4027161708,"34":0.4142099217,"35":0.4257283858,"36":0.4370735445,"37":0.4481523069,"38":0.4593642675,"39":0.470509629,"40":0.48168829,"41":0.4926975973,"42":0.5033628358,"43":0.5142001087,"44":0.5249513644,"45":0.5357456287,"46":0.5463812395,"47":0.5565867662,"48":0.5670073349,"49":0.5773203826,"50":0.5876871909,"51":0.5979125222,"52":0.6076141219,"53":0.6175775873,"54":0.6274101199,"55":0.6373081189,"56":0.6470879715,"57":0.6562435914,"58":0.6657113276,"59":0.6750230056,"60":0.6844127128,"61":0.6937133887,"62":0.7022833221,"63":0.7112186268,"64":0.7199712458,"65":0.7288152076,"66":0.7376046242,"67":0.745551678,"68":0.7539199132,"69":0.7620775577,"70":0.7703404975,"71":0.7785507897,"72":0.7858967048,"73":0.7936373053,"74":0.801180563,"75":0.8088224921,"76":0.8164150856,"77":0.8231467441,"78":0.8302203099,"79":0.837122922,"80":0.8441110109,"81":0.8510563615,"82":0.8571505872,"83":0.8635266705,"84":0.869761825,"85":0.8760674439,"86":0.8823378306,"87":0.887774001,"88":0.8934249694,"89":0.8989685388,"90":0.9045658077,"91":0.9101362269,"92":0.9148959485,"93":0.9197972996,"94":0.924627836,"95":0.9294937797,"96":0.9343420198,"97":0.9384092,"98":0.9425396611,"99":0.9466384817,"100":0.9507531226,"101":0.9548598534,"102":0.9582207536,"103":0.9615623736,"104":0.9649136338,"105":0.9682600738,"106":0.9716089239,"107":0.9742522034,"108":0.9767904306,"109":0.9793811839,"110":0.9819456741,"111":0.9845232959,"112":0.9864400488,"113":0.9881637935,"114":0.9899840423,"115":0.9917560391,"116":0.9935521619,"117":0.9947359463,"118":0.99563763,"119":0.996680364,"120":0.9976525729,"121":0.9986600443,"122":0.9991069029,"123":0.9991824899,"124":0.9994437127,"125":0.9996121177,"126":0.9998269315,"127":0.999535404,"128":0.9987844202,"129":0.9982631646,"130":0.9976270449,"131":0.9970483572,"132":0.9960194854,"133":0.9944450211,"134":0.993143353,"135":0.9917052869,"136":0.9903354197,"137":0.9885727435,"138":0.9861814398,"139":0.9841044498,"140":0.981870303,"141":0.9797147346,"142":0.9772242801,"143":0.9740263021,"144":0.9711820859,"145":0.9681609887,"146":0.965228332,"147":0.9620185919,"148":0.9580275841,"149":0.9544272101,"150":0.9506315192,"151":0.9469334867,"152":0.9430153917,"153":0.9382484213,"154":0.9339058886,"155":0.929351137,"156":0.9249024948,"157":0.9202893781,"158":0.914766862,"159":0.9096990456,"160":0.9044038793,"161":0.899222388,"162":0.8939299414,"163":0.8876755588,"164":0.8819021442,"165":0.8758882455,"166":0.8699945889,"167":0.8640408113,"168":0.8570814022,"169":0.8506248088,"170":0.8439168075,"171":0.8373345102,"172":0.8306893609,"173":0.8231302424,"174":0.8159778215,"175":0.8086220517,"176":0.8013679564,"177":0.7940630239,"178":0.7859279744,"179":0.7781118558,"180":0.7701362717,"181":0.7622404204,"182":0.7543047027,"183":0.7456220479,"184":0.7371759206,"185":0.7286115295,"186":0.7201062703,"187":0.7115714452,"188":0.7023712684,"189":0.6933315814,"190":0.6842116496,"191":0.6751318402,"192":0.6660319696,"193":0.6563460938,"194":0.6467518572,"195":0.637111801,"196":0.6274946546,"197":0.6178660533,"198":0.6077279343,"199":0.5976205545,"200":0.5874978051,"201":0.5773827405,"202":0.5672638335,"203":0.5567084445,"204":0.5461315447,"205":0.5355654004,"206":0.5249938783,"207":0.5144250451,"208":0.5034887611,"209":0.4924879949,"210":0.4815194698,"211":0.4705348242,"212":0.4595582388,"213":0.4482787142,"214":0.4369015683,"215":0.425573233,"216":0.4142204925,"217":0.4028799545,"218":0.3912959978,"219":0.3795915897,"220":0.3679474072,"221":0.3562731119,"222":0.3446138731,"223":0.3327653164,"224":0.3207841816,"225":0.3088693359,"226":0.2969213457,"227":0.2849899277,"228":0.2729174944,"229":0.2607113701,"230":0.2485720914,"231":0.2363993898,"232":0.2242433997,"233":0.2119885682,"234":0.1996101702,"235":0.1872935554,"236":0.1749460491,"237":0.1626139885,"238":0.1502188542,"239":0.1377216514,"240":0.1252754829,"241":0.1128037973,"242":0.1003448702,"243":0.0878520053,"244":0.075289989,"245":0.0627625484,"246":0.0502178199,"247":0.0376817354,"248":0.0251340469,"249":0.0125614992,"250":0.0000013811,"251":-0.0125649519,"252":-0.0251281774,"253":-0.0376875909,"254":-0.0502163329,"255":-0.0627604106,"256":-0.0752968205,"257":-0.0878370643,"258":-0.1003650567,"259":-0.1127958304,"260":-0.1252752135,"261":-0.1377302919,"262":-0.1501975226,"263":-0.1626510425,"264":-0.1749300963,"265":-0.1872963832,"266":-0.1996190535,"267":-0.2119635321,"268":-0.2242971066,"269":-0.2363753216,"270":-0.248578555,"271":-0.2607192792,"272":-0.272891258,"273":-0.2850476095,"274":-0.2968952668,"275":-0.3088768513,"276":-0.3207914721,"277":-0.3327395748,"278":-0.3446709366,"279":-0.3562470896,"280":-0.3679553996,"281":-0.3795976311,"282":-0.3912729018,"283":-0.402931653,"284":-0.414196677,"285":-0.4255810732,"286":-0.4369057833,"287":-0.4482603365,"288":-0.4595999681,"289":-0.4705153029,"290":-0.4815265437,"291":-0.4924898315,"292":-0.5034770958,"293":-0.5144523718,"294":-0.5249806631,"295":-0.5355711117,"296":-0.5461304816,"297":-0.5567053909,"298":-0.5672725305,"299":-0.5773777516,"300":-0.5875015803,"301":-0.5976161052,"302":-0.6077352821,"303":-0.6178521329,"304":-0.6274997054,"305":-0.6371130935,"306":-0.6467435737,"307":-0.6563655079,"308":-0.6659917151,"309":-0.6751486229,"310":-0.6842099446,"311":-0.6933190593,"312":-0.7024042775,"313":-0.7115014439,"314":-0.7201363433,"315":-0.7286063483,"316":-0.7371588006,"317":-0.7456700292,"318":-0.7542018696,"319":-0.7622851926,"320":-0.7701271744,"321":-0.7780898269,"322":-0.785992144,"323":-0.7939246288,"324":-0.801428681,"325":-0.8086086349,"326":-0.815950638,"327":-0.8232116165,"328":-0.8305131073,"329":-0.837412161,"330":-0.8438989322,"331":-0.8505918447,"332":-0.8571816866,"333":-0.8638230637,"334":-0.8700934425,"335":-0.8758588591,"336":-0.8818767567,"337":-0.8877684138,"338":-0.8937231912,"339":-0.899343349,"340":-0.9043623446,"341":-0.9096819213,"342":-0.9148512074,"343":-0.9200956388,"344":-0.9250462319,"345":-0.9292969532,"346":-0.9338976104,"347":-0.9383232996,"348":-0.9428364729,"349":-0.9471004242,"350":-0.9505643265,"351":-0.9544282534,"352":-0.9580921679,"353":-0.9618560886,"354":-0.9654186453,"355":-0.9680805722,"356":-0.971192814,"357":-0.9740798984,"358":-0.9770795614,"359":-0.9799283442,"360":-0.9817765946,"361":-0.9841251112,"362":-0.9862234947,"363":-0.9884469448,"364":-0.9905719906,"365":-0.9915983679,"366":-0.9931740794,"367":-0.9944751238,"368":-0.9959135018,"369":-0.997283213,"370":-0.9975191889,"371":-0.9982979485,"372":-0.9988053162,"373":-0.9994483799,"374":-1.0000235956,"375":-0.9995215204,"376":-0.9994735417,"377":-0.9991985147,"378":-0.9990370119,"379":-0.998818747,"380":-0.9975790986,"381":-0.9967053469,"382":-0.9956486469,"383":-0.994683421,"384":-0.9936724581,"385":-0.991699912,"386":-0.9900040639,"387":-0.9881698668,"388":-0.9864048443,"389":-0.9846052344,"390":-0.9819068937,"391":-0.9793961971,"392":-0.9767916785,"393":-0.9742340708,"394":-0.9716530077,"395":-0.9682384336,"396":-0.9649236505,"397":-0.9615589719,"398":-0.9582192411,"399":-0.9548670364,"400":-0.9507482127,"401":-0.9466435734,"402":-0.9425318419,"403":-0.9384236564,"404":-0.934313698,"405":-0.9295049901,"406":-0.9246281322,"407":-0.9197853493,"408":-0.9149255289,"409":-0.9100742273,"410":-0.9045923331,"411":-0.8989642265,"412":-0.8934092261,"413":-0.8878176725,"414":-0.8822443956,"415":-0.8761082894,"416":-0.8697531463,"417":-0.8635075217,"418":-0.8572071379,"419":-0.8509341337,"420":-0.8441650018,"421":-0.8371101727,"422":-0.8301981922,"423":-0.8232147875,"424":-0.8162670948,"425":-0.808888265,"426":-0.8011641221,"427":-0.7936126357,"428":-0.7859748211,"429":-0.7783801706,"430":-0.7704170334,"431":-0.7620568397,"432":-0.7538951743,"433":-0.7456342447,"434":-0.7374229472,"435":-0.7289028712,"436":-0.7199426378,"437":-0.7112024831,"438":-0.7023522891,"439":-0.6935571148,"440":-0.6845093557,"441":-0.6749876891,"442":-0.6657029762,"443":-0.6562997865,"444":-0.6469558352,"445":-0.6374114382,"446":-0.6273693716,"447":-0.6175761399,"448":-0.6076584907,"449":-0.5978030502,"450":-0.5877947463,"451":-0.5772755659,"452":-0.5670118238,"453":-0.5566203625,"454":-0.5462927609,"455":-0.5358548585,"456":-0.5249039176,"457":-0.5142094959,"458":-0.5033868146,"459":-0.4926282631,"460":-0.4817965341,"461":-0.4704610568,"462":-0.4593774537,"463":-0.4481679135,"464":-0.4370213418,"465":-0.425832902,"466":-0.4141617827,"467":-0.4027320031,"468":-0.3911815537,"469":-0.3796914392,"470":-0.3681711572,"471":-0.3562349512,"472":-0.3444932382,"473":-0.3326542786,"474":-0.3208639423,"475":-0.3090492944,"476":-0.2969037918,"477":-0.2848935617,"478":-0.2728156954,"479":-0.2607716471,"480":-0.2487106899,"481":-0.2363972758,"482":-0.2241706501,"483":-0.2119006302,"484":-0.1996523074,"485":-0.1873931361,"486":-0.1749542118,"487":-0.1625640135,"488":-0.1501494523,"489":-0.1377470725,"490":-0.125338602,"491":-0.112816955,"492":-0.1003167238,"493":-0.0878057847,"494":-0.0753001996,"495":-0.0627919375,"496":-0.0502306166,"497":-0.0376743727,"498":-0.0251155904,"499":-0.0125580772,"500":0.0000000705},"flow_out":{"0":-0.0000728938,"1":0.0314351679,"2":0.0015511959,"3":0.0588718925,"4":0.033748532,"5":0.0745614923,"6":0.0672626367,"7":0.0930721294,"8":0.0969774726,"9":0.1148806279,"10":0.1240862931,"11":0.1383176493,"12":0.1499077451,"13":0.1626697459,"14":0.1749017122,"15":0.1874178757,"16":0.1993943925,"17":0.2121451092,"18":0.2240273114,"19":0.2364507483,"20":0.2487004285,"21":0.2604618997,"22":0.273070288,"23":0.2848032701,"24":0.2968675124,"25":0.3091303307,"26":0.3204353817,"27":0.332934365,"28":0.3444729152,"29":0.3560783561,"30":0.3683742198,"31":0.3791320757,"32":0.3914735508,"33":0.4028126488,"34":0.4138464526,"35":0.4261976153,"36":0.4363214596,"37":0.4484592038,"38":0.4595868892,"39":0.4699507559,"40":0.4823656606,"41":0.4917821813,"42":0.5036675044,"43":0.5145663633,"44":0.5241772245,"45":0.5366494056,"46":0.5452999977,"47":0.5568818539,"48":0.5675283057,"49":0.5763199443,"50":0.5888266451,"51":0.5966686422,"52":0.6078936267,"53":0.6182575173,"54":0.626181727,"55":0.638683,"56":0.6456905132,"57":0.6565029626,"58":0.6665473597,"59":0.6735746838,"60":0.686012964,"61":0.6921773292,"62":0.7025195224,"63":0.7122007232,"64":0.7183207666,"65":0.7306209251,"66":0.7359507574,"67":0.7457631907,"68":0.7550309829,"69":0.7602522253,"70":0.772322168,"71":0.7767566929,"72":0.7862614446,"73":0.7945344093,"74":0.7996063755,"75":0.8105549724,"76":0.8148400581,"77":0.8234283233,"78":0.8310203041,"79":0.8357666065,"80":0.8455813001,"81":0.8497326606,"82":0.857324514,"83":0.8642471364,"84":0.8686104648,"85":0.8772852333,"86":0.8812581887,"87":0.8878531729,"88":0.8940574889,"89":0.8980238094,"90":0.9055343789,"91":0.9092949705,"92":0.914890641,"93":0.9203405307,"94":0.9238810954,"95":0.9302276464,"96":0.9337231134,"97":0.9383349603,"98":0.9429938899,"99":0.9460746614,"100":0.9512752216,"101":0.9544389115,"102":0.9580971303,"103":0.9619298218,"104":0.9645116493,"105":0.9686009909,"106":0.9713540687,"107":0.9741021832,"108":0.9770750422,"109":0.9791147723,"110":0.9821425184,"111":0.9843962952,"112":0.9862893428,"113":0.9883710195,"114":0.9898227054,"115":0.9918511645,"116":0.9935097226,"117":0.9946121967,"118":0.9957741864,"119":0.9965904109,"120":0.9976921716,"121":0.9986552327,"122":0.9990388295,"123":0.9992560965,"124":0.9993893765,"125":0.9996447176,"126":0.9998106872,"127":0.9995519088,"128":0.9988035254,"129":0.9982077651,"130":0.9977019489,"131":0.9969710642,"132":0.9961487384,"133":0.9944185202,"134":0.9930504794,"135":0.9918709896,"136":0.9901484967,"137":0.9888412704,"138":0.9861183935,"139":0.9839391332,"140":0.9821729249,"141":0.9793722059,"142":0.9776560758,"143":0.9739356598,"144":0.9709119358,"145":0.9686427624,"146":0.9646883437,"147":0.96263428,"148":0.9579179213,"149":0.9540234853,"150":0.9513293683,"151":0.9461597267,"152":0.9438314529,"153":0.9381276924,"154":0.9333444802,"155":0.9302953764,"156":0.923865489,"157":0.9213174641,"158":0.914642179,"159":0.9089613452,"160":0.9056170744,"161":0.8979006345,"162":0.8951762957,"163":0.8875529975,"164":0.8809757757,"165":0.8773842567,"166":0.8683755027,"167":0.8655058113,"168":0.85696584,"169":0.8495042086,"170":0.8457000439,"171":0.8354151562,"172":0.8324207371,"173":0.822802053,"174":0.8150711894,"175":0.810188621,"176":0.7996506497,"177":0.7956216113,"178":0.7857190091,"179":0.7771977867,"180":0.7716200776,"181":0.7606509832,"182":0.7557279632,"183":0.7454958256,"184":0.7362996895,"185":0.7299629798,"186":0.7186918738,"187":0.7128190672,"188":0.7023423937,"189":0.6925011118,"190":0.6854101567,"191":0.6739169914,"192":0.6670809459,"193":0.6564190602,"194":0.6459761985,"195":0.638142083,"196":0.6264955343,"197":0.6187021397,"198":0.6079023742,"199":0.596906594,"200":0.5883519669,"201":0.5766058821,"202":0.5678823852,"203":0.5569787676,"204":0.5454841718,"205":0.5362428288,"206":0.5244362599,"207":0.5148309306,"208":0.5038443055,"209":0.4919101134,"210":0.4820266444,"211":0.4701841573,"212":0.4597655299,"213":0.4487040352,"214":0.4363941463,"215":0.4259233664,"216":0.4140557426,"217":0.4029113827,"218":0.3917712784,"219":0.3791537624,"220":0.3681599058,"221":0.3562652511,"222":0.3445000555,"223":0.3332669102,"224":0.3204133873,"225":0.3089691062,"226":0.2970343134,"227":0.2847683844,"228":0.2734185754,"229":0.2604035238,"230":0.2485887048,"231":0.2365912384,"232":0.2239573879,"233":0.2124598801,"234":0.1993598673,"235":0.1872602925,"236":0.1751702491,"237":0.1623111772,"238":0.1506295386,"239":0.1375223945,"240":0.1252282837,"241":0.1130106647,"242":0.1000758949,"243":0.088170489,"244":0.075134438,"245":0.0627388836,"246":0.0503560452,"247":0.0374986524,"248":0.0253289744,"249":0.0124417275,"250":0.0000390871,"251":-0.0314134927,"252":-0.0015704904,"253":-0.0588840305,"254":-0.033671704,"255":-0.0746476885,"256":-0.0672133436,"257":-0.0931206382,"258":-0.0969929164,"259":-0.1147057963,"260":-0.1243512384,"261":-0.13806914,"262":-0.1501615648,"263":-0.1625421741,"264":-0.1747317075,"265":-0.1878085759,"266":-0.1989489329,"267":-0.212641483,"268":-0.2237026887,"269":-0.2363445261,"270":-0.249166,"271":-0.2598447674,"272":-0.2738116632,"273":-0.2842267692,"274":-0.2969535078,"275":-0.3094710449,"276":-0.3198636916,"277":-0.3337260274,"278":-0.3437889653,"279":-0.3562796302,"280":-0.3686072687,"281":-0.3786136661,"282":-0.392301881,"283":-0.4020216737,"284":-0.41419323,"285":-0.4262659932,"286":-0.4359139114,"287":-0.4492752976,"288":-0.4587156093,"289":-0.4704526903,"290":-0.4822304674,"291":-0.4915286052,"292":-0.5044302415,"293":-0.5136398713,"294":-0.524840536,"295":-0.536280136,"296":-0.545234392,"297":-0.5575548785,"298":-0.5665719355,"299":-0.5771457436,"300":-0.5882030583,"301":-0.5968142323,"302":-0.6084466021,"303":-0.6172960637,"304":-0.6271660433,"305":-0.6377957737,"306":-0.6460589455,"307":-0.6569123294,"308":-0.6656045281,"309":-0.6747084946,"310":-0.6848641444,"311":-0.6927681296,"312":-0.7027691003,"313":-0.7112986007,"314":-0.7195901482,"315":-0.7292240731,"316":-0.7367511129,"317":-0.7458445927,"318":-0.7541895489,"319":-0.7616386457,"320":-0.7707021955,"321":-0.7778278601,"322":-0.7859775894,"323":-0.7940995867,"324":-0.8006927753,"325":-0.8091365216,"326":-0.8158298404,"327":-0.8230183995,"328":-0.8308627883,"329":-0.8366029861,"330":-0.8443770392,"331":-0.8506008524,"332":-0.8568292432,"333":-0.8643259589,"334":-0.86923186,"335":-0.8762862723,"336":-0.8819977912,"337":-0.8872845853,"338":-0.8943494387,"339":-0.8984545349,"340":-0.9047397855,"341":-0.9098913571,"342":-0.9142714411,"343":-0.9208078482,"344":-0.9241590938,"345":-0.9296266444,"346":-0.9341667005,"347":-0.9376896386,"348":-0.9435907603,"349":-0.9462469037,"350":-0.9508498266,"351":-0.9547239908,"352":-0.9574520601,"353":-0.9626032931,"354":-0.9646329252,"355":-0.9683265785,"356":-0.9714789159,"357":-0.9734848448,"358":-0.97776662,"359":-0.9792459733,"360":-0.9819887236,"361":-0.9843630973,"362":-0.9857275735,"363":-0.9890183919,"364":-0.9900289485,"365":-0.9917829154,"366":-0.9933244244,"367":-0.9941334183,"368":-0.9963130619,"369":-0.9969099445,"370":-0.9976932132,"371":-0.9983044306,"372":-0.9986923666,"373":-0.9996008731,"374":-0.9998739161,"375":-0.9996544713,"376":-0.9993549943,"377":-0.9993007351,"378":-0.9989532716,"379":-0.9988838611,"380":-0.9976650063,"381":-0.9964967123,"382":-0.9959107731,"383":-0.994425097,"384":-0.9938948648,"385":-0.9917702235,"386":-0.9897145461,"387":-0.9885531379,"388":-0.9860235228,"389":-0.9849333352,"390":-0.9819883328,"391":-0.9790385919,"392":-0.9772548125,"393":-0.9737829846,"394":-0.9720341917,"395":-0.9683573646,"396":-0.9645108753,"397":-0.962061229,"398":-0.9577506004,"399":-0.9552498867,"400":-0.9509294344,"401":-0.9461885281,"402":-0.9430341161,"403":-0.937987137,"404":-0.9346495219,"405":-0.9297709146,"406":-0.9241433916,"407":-0.9202512951,"408":-0.914566797,"409":-0.9103185225,"410":-0.9049622148,"411":-0.8984617574,"412":-0.8938062936,"413":-0.8875770318,"414":-0.8823581927,"415":-0.8765975346,"416":-0.8692440513,"417":-0.8638078807,"418":-0.8571183276,"419":-0.8508851855,"420":-0.8447845776,"421":-0.8366044646,"422":-0.830379521,"423":-0.8233039636,"424":-0.8160308801,"425":-0.8096442211,"426":-0.800670534,"427":-0.7936587603,"428":-0.7862597395,"429":-0.7779406938,"430":-0.7713101513,"431":-0.761582673,"432":-0.7537965407,"433":-0.7461236702,"434":-0.73677331,"435":-0.7299284503,"436":-0.7194936494,"437":-0.7109564555,"438":-0.7030456398,"439":-0.6926998504,"440":-0.685657139,"441":-0.6745680234,"442":-0.6653139499,"443":-0.6571870249,"444":-0.6459029941,"445":-0.6386656874,"446":-0.6269815372,"447":-0.6170554629,"448":-0.6087202741,"449":-0.5965760252,"450":-0.5891344675,"451":-0.576920445,"452":-0.5663775476,"453":-0.5578284248,"454":-0.5449218785,"455":-0.5372541613,"456":-0.5245808295,"457":-0.5134859327,"458":-0.5047046019,"459":-0.491152121,"460":-0.4832251368,"461":-0.470167856,"462":-0.4585945652,"463":-0.4495514494,"464":-0.4354859155,"465":-0.4272567666,"466":-0.4138949841,"467":-0.4019246465,"468":-0.3925804969,"469":-0.3781489957,"470":-0.3695779828,"471":-0.3558921458,"472":-0.34387723,"473":-0.3337965914,"474":-0.3195868051,"475":-0.3102195292,"476":-0.2966014196,"477":-0.2844486583,"478":-0.2736608788,"479":-0.2598266818,"480":-0.2495741953,"481":-0.2361996563,"482":-0.2238295996,"483":-0.2125159638,"484":-0.1989780568,"485":-0.1880015135,"486":-0.1748267853,"487":-0.1623311218,"488":-0.1505543919,"489":-0.1373122204,"490":-0.1257253066,"491":-0.1127386276,"492":-0.1001839716,"493":-0.0880313069,"494":-0.0750632781,"495":-0.0629987686,"496":-0.0501764255,"497":-0.0376332303,"498":-0.0251958987,"499":-0.012473343,"500":-0.0000728938},"pressure_in":{"0":0.1000350609,"1":0.1000876041,"2":0.1006132886,"3":0.1013755078,"4":0.102492565,"5":0.1039053084,"6":0.1056366639,"7":0.1076746032,"8":0.1100285535,"9":0.1126938012,"10":0.1156727031,"11":0.118941192,"12":0.1225107096,"13":0.1263914721,"14":0.1305783715,"15":0.1350739617,"16":0.1398313538,"17":0.144868218,"18":0.1502159421,"19":0.1558588321,"20":0.1618047351,"21":0.167978052,"22":0.1743949807,"23":0.1811260958,"24":0.18813611,"25":0.195442667,"26":0.2029389722,"27":0.2106252081,"28":0.218634662,"29":0.2269006904,"30":0.235456615,"31":0.2441642626,"32":0.2529874531,"33":0.2621503281,"34":0.2715408168,"35":0.2812149546,"36":0.291005231,"37":0.3008136033,"38":0.310987071,"39":0.3213521342,"40":0.331995543,"41":0.3427245537,"42":0.3533494131,"43":0.3643749687,"44":0.3755487967,"45":0.386997109,"46":0.3985078883,"47":0.409766396,"48":0.4214723379,"49":0.4332758612,"50":0.4453518922,"51":0.4574767028,"52":0.4691748881,"53":0.4813790027,"54":0.4936227692,"55":0.5061393264,"56":0.5187021171,"57":0.5306380723,"58":0.5431504818,"59":0.5556377007,"60":0.5684005513,"61":0.5812195365,"62":0.5931867478,"63":0.6058128802,"64":0.6183425861,"65":0.6311535393,"66":0.6440438642,"67":0.6558346115,"68":0.6683782396,"69":0.6807485195,"70":0.6934085657,"71":0.7061268208,"72":0.7176228989,"73":0.7298455659,"74":0.7418786309,"75":0.7541801893,"76":0.7665211934,"77":0.7775616566,"78":0.7892535374,"79":0.8007650173,"80":0.8125120056,"81":0.8242865477,"82":0.8346999407,"83":0.8456683534,"84":0.8564776518,"85":0.8674849029,"86":0.8785115731,"87":0.8881370633,"88":0.8982003382,"89":0.9081381089,"90":0.9182320198,"91":0.9283412486,"92":0.9370303963,"93":0.9460211647,"94":0.9549318108,"95":0.9639532062,"96":0.9729899149,"97":0.9806088602,"98":0.9883768091,"99":0.9961209168,"100":1.0039276059,"101":1.0117536649,"102":1.0181850848,"103":1.0245994402,"104":1.0310559561,"105":1.03752502,"106":1.0440214381,"107":1.0491662583,"108":1.0541179465,"109":1.0591860654,"110":1.0642158337,"111":1.0692846421,"112":1.0730634842,"113":1.0764669352,"114":1.0800676734,"115":1.0835793597,"116":1.0871451637,"117":1.0894995031,"118":1.0912940691,"119":1.0933714961,"120":1.095310467,"121":1.0973216404,"122":1.0982146587,"123":1.0983656186,"124":1.0988877269,"125":1.0992243803,"126":1.0996538804,"127":1.0990710018,"128":1.0975701411,"129":1.0965293437,"130":1.0952595868,"131":1.0941053818,"132":1.0920544848,"133":1.0889202389,"134":1.0863334854,"135":1.0834788038,"136":1.0807639042,"137":1.0772752033,"138":1.0725523591,"139":1.0684608668,"140":1.0640679788,"141":1.0598400689,"142":1.0549656724,"143":1.0487246389,"144":1.0431932466,"145":1.0373333564,"146":1.031664038,"147":1.0254771846,"148":1.0178128358,"149":1.0109289865,"150":1.0036966393,"151":0.9966802928,"152":0.9892742796,"153":0.9803044001,"154":0.9721767728,"155":0.9636883385,"156":0.9554406268,"157":0.9469274449,"158":0.936790793,"159":0.927547602,"160":0.9179394064,"161":0.908595439,"162":0.8991041355,"163":0.8879581608,"164":0.8777451495,"165":0.8671712842,"166":0.8568834736,"167":0.8465582633,"168":0.8345765156,"169":0.8235546766,"170":0.8121845233,"171":0.8011201672,"172":0.7900345525,"173":0.7775294802,"174":0.7658097107,"175":0.753856634,"176":0.7421795552,"177":0.7305238217,"178":0.7176668533,"179":0.70544566,"180":0.6930948738,"181":0.6809971787,"182":0.6689612326,"183":0.6559342849,"184":0.6434135356,"185":0.6308577125,"186":0.6185374516,"187":0.606317435,"188":0.5933054275,"189":0.5806914287,"190":0.5681264836,"191":0.5557850696,"192":0.543579948,"193":0.5307682411,"194":0.5182682585,"195":0.5058903232,"196":0.4937292736,"197":0.4817376904,"198":0.4693093663,"199":0.457128212,"200":0.4451305718,"201":0.4333482737,"202":0.4217654037,"203":0.40989858,"204":0.39823523,"205":0.3868053007,"206":0.3755938186,"207":0.3646082704,"208":0.3534734934,"209":0.3425178057,"210":0.3318342067,"211":0.3213761965,"212":0.3111670252,"213":0.3009247712,"214":0.2908543511,"215":0.2810841143,"216":0.271549886,"217":0.2622837537,"218":0.2530820806,"219":0.2440593492,"220":0.2353553117,"221":0.226900092,"222":0.2187286281,"223":0.2107010064,"224":0.2028705167,"225":0.1953689327,"226":0.1881303676,"227":0.1811877649,"228":0.1744511245,"229":0.1679371725,"230":0.1617555869,"231":0.1558515288,"232":0.1502524176,"233":0.1449054351,"234":0.1398100041,"235":0.1350454175,"236":0.130572029,"237":0.1264096616,"238":0.1225313149,"239":0.1189323879,"240":0.1156597436,"241":0.1126899505,"242":0.1100347244,"243":0.1076831352,"244":0.1056334008,"245":0.103904416,"246":0.1024867334,"247":0.1013850767,"248":0.1005966571,"249":0.1001226332,"250":0.0999649935,"251":0.0999122628,"252":0.0993861158,"253":0.0986234546,"254":0.0975087385,"255":0.0960983729,"256":0.094364155,"257":0.0923201863,"258":0.0899614042,"259":0.0873113343,"260":0.0843409157,"261":0.0810646789,"262":0.0774753587,"263":0.0735790078,"264":0.069432535,"265":0.064954503,"266":0.0601856304,"267":0.0551055579,"268":0.0497244652,"269":0.0441585065,"270":0.0382424421,"271":0.0320577198,"272":0.0255636158,"273":0.018780492,"274":0.0118836737,"275":0.004627707,"276":-0.0028761573,"277":-0.0106835446,"278":-0.0187666421,"279":-0.026883026,"280":-0.0353599627,"281":-0.0440647877,"282":-0.0530638333,"283":-0.0623239333,"284":-0.0715315788,"285":-0.0810897026,"286":-0.0908586875,"287":-0.100908342,"288":-0.1112037619,"289":-0.1213591198,"290":-0.1318401617,"291":-0.1425199949,"292":-0.1534620656,"293":-0.1646346508,"294":-0.1755810443,"295":-0.1868108559,"296":-0.1982341161,"297":-0.2098958095,"298":-0.2217734438,"299":-0.2333433695,"300":-0.2451347921,"301":-0.2571225654,"302":-0.2693192624,"303":-0.2817185966,"304":-0.2937361859,"305":-0.3058921354,"306":-0.318256814,"307":-0.3307950375,"308":-0.3435243979,"309":-0.3558079967,"310":-0.3681247122,"311":-0.3806729273,"312":-0.3933534506,"313":-0.4062158777,"314":-0.4185807126,"315":-0.4308511174,"316":-0.4433867625,"317":-0.4560078128,"318":-0.4688041859,"319":-0.4810650719,"320":-0.4930821874,"321":-0.5054094828,"322":-0.5177699828,"323":-0.5303021752,"324":-0.542276231,"325":-0.5538365904,"326":-0.5657631423,"327":-0.5776659422,"328":-0.5897399624,"329":-0.6012492912,"330":-0.6121562998,"331":-0.6234961086,"332":-0.6347511573,"333":-0.646180226,"334":-0.6570545226,"335":-0.6671216991,"336":-0.6776980633,"337":-0.6881254614,"338":-0.6987329703,"339":-0.7088120168,"340":-0.7178660749,"341":-0.727514353,"342":-0.736947247,"343":-0.7465695589,"344":-0.7557055745,"345":-0.7635892827,"346":-0.7721594636,"347":-0.7804467273,"348":-0.7889357687,"349":-0.796995576,"350":-0.8035703581,"351":-0.8109294046,"352":-0.8179380706,"353":-0.8251636787,"354":-0.8320306583,"355":-0.8371788835,"356":-0.8432128087,"357":-0.8488302066,"358":-0.8546821909,"359":-0.8602579937,"360":-0.8638849261,"361":-0.8685005739,"362":-0.8726361442,"363":-0.8770260335,"364":-0.881232028,"365":-0.8832673924,"366":-0.8863938898,"367":-0.8889806388,"368":-0.89184308,"369":-0.8945734931,"370":-0.8950446706,"371":-0.8965985226,"372":-0.8976121096,"373":-0.8988969013,"374":-0.9000471629,"375":-0.8990432002,"376":-0.8989473946,"377":-0.8983976296,"378":-0.8980749635,"379":-0.8976388672,"380":-0.8951635569,"381":-0.8934215447,"382":-0.8913158578,"383":-0.8893949827,"384":-0.887384676,"385":-0.8834675575,"386":-0.880107667,"387":-0.8764787541,"388":-0.8729939441,"389":-0.8694466744,"390":-0.8641391175,"391":-0.8592158249,"392":-0.8541202649,"393":-0.8491307034,"394":-0.8441080074,"395":-0.8374825579,"396":-0.831075542,"397":-0.8245929375,"398":-0.8181817556,"399":-0.8117684906,"400":-0.8039177924,"401":-0.7961306248,"402":-0.7883623526,"403":-0.7806352934,"404":-0.7729382884,"405":-0.7639737176,"406":-0.7549321594,"407":-0.745999783,"408":-0.7370835038,"409":-0.728229864,"410":-0.7182798897,"411":-0.7081298217,"412":-0.6981731886,"413":-0.6882132261,"414":-0.6783483164,"415":-0.6675566126,"416":-0.656461634,"417":-0.6456366882,"418":-0.6347951215,"419":-0.6240802608,"420":-0.612603596,"421":-0.6007423282,"422":-0.5892186698,"423":-0.5776715146,"424":-0.5662814158,"425":-0.5542873533,"426":-0.541850499,"427":-0.529808733,"428":-0.5177431153,"429":-0.5058631158,"430":-0.4935275552,"431":-0.4807147544,"432":-0.4683436658,"433":-0.4559548132,"434":-0.4437779348,"435":-0.4312825325,"436":-0.4182990714,"437":-0.4057926738,"438":-0.3932807785,"439":-0.3810046662,"440":-0.3685341733,"441":-0.355587602,"442":-0.3431421064,"443":-0.3307091095,"444":-0.3185328997,"445":-0.3062724529,"446":-0.2935691584,"447":-0.2813799044,"448":-0.2692262467,"449":-0.2573474075,"450":-0.2454798148,"451":-0.2332216192,"452":-0.2214800235,"453":-0.2098014263,"454":-0.1984126283,"455":-0.1871156889,"456":-0.1754965185,"457":-0.1643870842,"458":-0.1533714024,"459":-0.1426574649,"460":-0.1321013619,"461":-0.1213040442,"462":-0.1110014771,"463":-0.100825678,"464":-0.0909606382,"465":-0.0813054409,"466":-0.071498687,"467":-0.0621651674,"468":-0.0529924865,"469":-0.0441368421,"470":-0.0355201355,"471":-0.0268707822,"472":-0.0186459143,"473":-0.0106269872,"474":-0.0029232731,"475":0.004519864,"476":0.0118816443,"477":0.0188669874,"478":0.0256045568,"479":0.0320300208,"480":0.0381755453,"481":0.0441505918,"482":0.0497802179,"483":0.0551319583,"484":0.0601720456,"485":0.0649173636,"486":0.0694258239,"487":0.0736067138,"488":0.0774896296,"489":0.0810597732,"490":0.0843245436,"491":0.0873074442,"492":0.0899710854,"493":0.0923250534,"494":0.0943645552,"495":0.0960919872,"496":0.0975120735,"497":0.0986156006,"498":0.099404302,"499":0.099877311,"500":0.1000350609},"pressure_out":{"0":0.1,"1":0.1,"2":0.1,"3":0.1,"4":0.1,"5":0.1,"6":0.1,"7":0.1,"8":0.1,"9":0.1,"10":0.1,"11":0.1,"12":0.1,"13":0.1,"14":0.1,"15":0.1,"16":0.1,"17":0.1,"18":0.1,"19":0.1,"20":0.1,"21":0.1,"22":0.1,"23":0.1,"24":0.1,"25":0.1,"26":0.1,"27":0.1,"28":0.1,"29":0.1,"30":0.1,"31":0.1,"32":0.1,"33":0.1,"34":0.1,"35":0.1,"36":0.1,"37":0.1,"38":0.1,"39":0.1,"40":0.1,"41":0.1,"42":0.1,"43":0.1,"44":0.1,"45":0.1,"46":0.1,"47":0.1,"48":0.1,"49":0.1,"50":0.1,"51":0.1,"52":0.1,"53":0.1,"54":0.1,"55":0.1,"56":0.1,"57":0.1,"58":0.1,"59":0.1,"60":0.1,"61":0.1,"62":0.1,"63":0.1,"64":0.1,"65":0.1,"66":0.1,"67":0.1,"68":0.1,"69":0.1,"70":0.1,"71":0.1,"72":0.1,"73":0.1,"74":0.1,"75":0.1,"76":0.1,"77":0.1,"78":0.1,"79":0.1,"80":0.1,"81":0.1,"82":0.1,"83":0.1,"84":0.1,"85":0.1,"86":0.1,"87":0.1,"88":0.1,"89":0.1,"90":0.1,"91":0.1,"92":0.1,"93":0.1,"94":0.1,"95":0.1,"96":0.1,"97":0.1,"98":0.1,"99":0.1,"100":0.1,"101":0.1,"102":0.1,"103":0.1,"104":0.1,"105":0.1,"106":0.1,"107":0.1,"108":0.1,"109":0.1,"110":0.1,"111":0.1,"112":0.1,"113":0.1,"114":0.1,"115":0.1,"116":0.1,"117":0.1,"118":0.1,"119":0.1,"120":0.1,"121":0.1,"122":0.1,"123":0.1,"124":0.1,"125":0.1,"126":0.1,"127":0.1,"128":0.1,"129":0.1,"130":0.1,"131":0.1,"132":0.1,"133":0.1,"134":0.1,"135":0.1,"136":0.1,"137":0.1,"138":0.1,"139":0.1,"140":0.1,"141":0.1,"142":0.1,"143":0.1,"144":0.1,"145":0.1,"146":0.1,"147":0.1,"148":0.1,"149":0.1,"150":0.1,"151":0.1,"152":0.1,"153":0.1,"154":0.1,"155":0.1,"156":0.1,"157":0.1,"158":0.1,"159":0.1,"160":0.1,"161":0.1,"162":0.1,"163":0.1,"164":0.1,"165":0.1,"166":0.1,"167":0.1,"168":0.1,"169":0.1,"170":0.1,"171":0.1,"172":0.1,"173":0.1,"174":0.1,"175":0.1,"176":0.1,"177":0.1,"178":0.1,"179":0.1,"180":0.1,"181":0.1,"182":0.1,"183":0.1,"184":0.1,"185":0.1,"186":0.1,"187":0.1,"188":0.1,"189":0.1,"190":0.1,"191":0.1,"192":0.1,"193":0.1,"194":0.1,"195":0.1,"196":0.1,"197":0.1,"198":0.1,"199":0.1,"200":0.1,"201":0.1,"202":0.1,"203":0.1,"204":0.1,"205":0.1,"206":0.1,"207":0.1,"208":0.1,"209":0.1,"210":0.1,"211":0.1,"212":0.1,"213":0.1,"214":0.1,"215":0.1,"216":0.1,"217":0.1,"218":0.1,"219":0.1,"220":0.1,"221":0.1,"222":0.1,"223":0.1,"224":0.1,"225":0.1,"226":0.1,"227":0.1,"228":0.1,"229":0.1,"230":0.1,"231":0.1,"232":0.1,"233":0.1,"234":0.1,"235":0.1,"236":0.1,"237":0.1,"238":0.1,"239":0.1,"240":0.1,"241":0.1,"242":0.1,"243":0.1,"244":0.1,"245":0.1,"246":0.1,"247":0.1,"248":0.1,"249":0.1,"250":0.1,"251":0.1,"252":0.1,"253":0.1,"254":0.1,"255":0.1,"256":0.1,"257":0.1,"258":0.1,"259":0.1,"260":0.1,"261":0.1,"262":0.1,"263":0.1,"264":0.1,"265":0.1,"266":0.1,"267":0.1,"268":0.1,"269":0.1,"270":0.1,"271":0.1,"272":0.1,"273":0.1,"274":0.1,"275":0.1,"276":0.1,"277":0.1,"278":0.1,"279":0.1,"280":0.1,"281":0.1,"282":0.1,"283":0.1,"284":0.1,"285":0.1,"286":0.1,"287":0.1,"288":0.1,"289":0.1,"290":0.1,"291":0.1,"292":0.1,"293":0.1,"294":0.1,"295":0.1,"296":0.1,"297":0.1,"298":0.1,"299":0.1,"300":0.1,"301":0.1,"302":0.1,"303":0.1,"304":0.1,"305":0.1,"306":0.1,"307":0.1,"308":0.1,"309":0.1,"310":0.1,"311":0.1,"312":0.1,"313":0.1,"314":0.1,"315":0.1,"316":0.1,"317":0.1,"318":0.1,"319":0.1,"320":0.1,"321":0.1,"322":0.1,"323":0.1,"324":0.1,"325":0.1,"326":0.1,"327":0.1,"328":0.1,"329":0.1,"330":0.1,"331":0.1,"332":0.1,"333":0.1,"334":0.1,"335":0.1,"336":0.1,"337":0.1,"338":0.1,"339":0.1,"340":0.1,"341":0.1,"342":0.1,"343":0.1,"344":0.1,"345":0.1,"346":0.1,"347":0.1,"348":0.1,"349":0.1,"350":0.1,"351":0.1,"352":0.1,"353":0.1,"354":0.1,"355":0.1,"356":0.1,"357":0.1,"358":0.1,"359":0.1,"360":0.1,"361":0.1,"362":0.1,"363":0.1,"364":0.1,"365":0.1,"366":0.1,"367":0.1,"368":0.1,"369":0.1,"370":0.1,"371":0.1,"372":0.1,"373":0.1,"374":0.1,"375":0.1,"376":0.1,"377":0.1,"378":0.1,"379":0.1,"380":0.1,"381":0.1,"382":0.1,"383":0.1,"384":0.1,"385":0.1,"386":0.1,"387":0.1,"388":0.1,"389":0.1,"390":0.1,"391":0.1,"392":0.1,"393":0.1,"394":0.1,"395":0.1,"396":0.1,"397":0.1,"398":0.1,"399":0.1,"400":0.1,"401":0.1,"402":0.1,"403":0.1,"404":0.1,"405":0.1,"406":0.1,"407":0.1,"408":0.1,"409":0.1,"410":0.1,"411":0.1,"412":0.1,"413":0.1,"414":0.1,"415":0.1,"416":0.1,"417":0.1,"418":0.1,"419":0.1,"420":0.1,"421":0.1,"422":0.1,"423":0.1,"424":0.1,"425":0.1,"426":0.1,"427":0.1,"428":0.1,"429":0.1,"430":0.1,"431":0.1,"432":0.1,"433":0.1,"434":0.1,"435":0.1,"436":0.1,"437":0.1,"438":0.1,"439":0.1,"440":0.1,"441":0.1,"442":0.1,"443":0.1,"444":0.1,"445":0.1,"446":0.1,"447":0.1,"448":0.1,"449":0.1,"450":0.1,"451":0.1,"452":0.1,"453":0.1,"454":0.1,"455":0.1,"456":0.1,"457":0.1,"458":0.1,"459":0.1,"460":0.1,"461":0.1,"462":0.1,"463":0.1,"464":0.1,"465":0.1,"466":0.1,"467":0.1,"468":0.1,"469":0.1,"470":0.1,"471":0.1,"472":0.1,"473":0.1,"474":0.1,"475":0.1,"476":0.1,"477":0.1,"478":0.1,"479":0.1,"480":0.1,"481":0.1,"482":0.1,"483":0.1,"484":0.1,"485":0.1,"486":0.1,"487":0.1,"488":0.1,"489":0.1,"490":0.1,"491":0.1,"492":0.1,"493":0.1,"494":0.1,"495":0.1,"496":0.1,"497":0.1,"498":0.1,"499":0.1,"500":0.1}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0", + "101": "branch0_seg0", + "102": "branch0_seg0", + "103": "branch0_seg0", + "104": "branch0_seg0", + "105": "branch0_seg0", + "106": "branch0_seg0", + "107": "branch0_seg0", + "108": "branch0_seg0", + "109": "branch0_seg0", + "110": "branch0_seg0", + "111": "branch0_seg0", + "112": "branch0_seg0", + "113": "branch0_seg0", + "114": "branch0_seg0", + "115": "branch0_seg0", + "116": "branch0_seg0", + "117": "branch0_seg0", + "118": "branch0_seg0", + "119": "branch0_seg0", + "120": "branch0_seg0", + "121": "branch0_seg0", + "122": "branch0_seg0", + "123": "branch0_seg0", + "124": "branch0_seg0", + "125": "branch0_seg0", + "126": "branch0_seg0", + "127": "branch0_seg0", + "128": "branch0_seg0", + "129": "branch0_seg0", + "130": "branch0_seg0", + "131": "branch0_seg0", + "132": "branch0_seg0", + "133": "branch0_seg0", + "134": "branch0_seg0", + "135": "branch0_seg0", + "136": "branch0_seg0", + "137": "branch0_seg0", + "138": "branch0_seg0", + "139": "branch0_seg0", + "140": "branch0_seg0", + "141": "branch0_seg0", + "142": "branch0_seg0", + "143": "branch0_seg0", + "144": "branch0_seg0", + "145": "branch0_seg0", + "146": "branch0_seg0", + "147": "branch0_seg0", + "148": "branch0_seg0", + "149": "branch0_seg0", + "150": "branch0_seg0", + "151": "branch0_seg0", + "152": "branch0_seg0", + "153": "branch0_seg0", + "154": "branch0_seg0", + "155": "branch0_seg0", + "156": "branch0_seg0", + "157": "branch0_seg0", + "158": "branch0_seg0", + "159": "branch0_seg0", + "160": "branch0_seg0", + "161": "branch0_seg0", + "162": "branch0_seg0", + "163": "branch0_seg0", + "164": "branch0_seg0", + "165": "branch0_seg0", + "166": "branch0_seg0", + "167": "branch0_seg0", + "168": "branch0_seg0", + "169": "branch0_seg0", + "170": "branch0_seg0", + "171": "branch0_seg0", + "172": "branch0_seg0", + "173": "branch0_seg0", + "174": "branch0_seg0", + "175": "branch0_seg0", + "176": "branch0_seg0", + "177": "branch0_seg0", + "178": "branch0_seg0", + "179": "branch0_seg0", + "180": "branch0_seg0", + "181": "branch0_seg0", + "182": "branch0_seg0", + "183": "branch0_seg0", + "184": "branch0_seg0", + "185": "branch0_seg0", + "186": "branch0_seg0", + "187": "branch0_seg0", + "188": "branch0_seg0", + "189": "branch0_seg0", + "190": "branch0_seg0", + "191": "branch0_seg0", + "192": "branch0_seg0", + "193": "branch0_seg0", + "194": "branch0_seg0", + "195": "branch0_seg0", + "196": "branch0_seg0", + "197": "branch0_seg0", + "198": "branch0_seg0", + "199": "branch0_seg0", + "200": "branch0_seg0", + "201": "branch0_seg0", + "202": "branch0_seg0", + "203": "branch0_seg0", + "204": "branch0_seg0", + "205": "branch0_seg0", + "206": "branch0_seg0", + "207": "branch0_seg0", + "208": "branch0_seg0", + "209": "branch0_seg0", + "210": "branch0_seg0", + "211": "branch0_seg0", + "212": "branch0_seg0", + "213": "branch0_seg0", + "214": "branch0_seg0", + "215": "branch0_seg0", + "216": "branch0_seg0", + "217": "branch0_seg0", + "218": "branch0_seg0", + "219": "branch0_seg0", + "220": "branch0_seg0", + "221": "branch0_seg0", + "222": "branch0_seg0", + "223": "branch0_seg0", + "224": "branch0_seg0", + "225": "branch0_seg0", + "226": "branch0_seg0", + "227": "branch0_seg0", + "228": "branch0_seg0", + "229": "branch0_seg0", + "230": "branch0_seg0", + "231": "branch0_seg0", + "232": "branch0_seg0", + "233": "branch0_seg0", + "234": "branch0_seg0", + "235": "branch0_seg0", + "236": "branch0_seg0", + "237": "branch0_seg0", + "238": "branch0_seg0", + "239": "branch0_seg0", + "240": "branch0_seg0", + "241": "branch0_seg0", + "242": "branch0_seg0", + "243": "branch0_seg0", + "244": "branch0_seg0", + "245": "branch0_seg0", + "246": "branch0_seg0", + "247": "branch0_seg0", + "248": "branch0_seg0", + "249": "branch0_seg0", + "250": "branch0_seg0", + "251": "branch0_seg0", + "252": "branch0_seg0", + "253": "branch0_seg0", + "254": "branch0_seg0", + "255": "branch0_seg0", + "256": "branch0_seg0", + "257": "branch0_seg0", + "258": "branch0_seg0", + "259": "branch0_seg0", + "260": "branch0_seg0", + "261": "branch0_seg0", + "262": "branch0_seg0", + "263": "branch0_seg0", + "264": "branch0_seg0", + "265": "branch0_seg0", + "266": "branch0_seg0", + "267": "branch0_seg0", + "268": "branch0_seg0", + "269": "branch0_seg0", + "270": "branch0_seg0", + "271": "branch0_seg0", + "272": "branch0_seg0", + "273": "branch0_seg0", + "274": "branch0_seg0", + "275": "branch0_seg0", + "276": "branch0_seg0", + "277": "branch0_seg0", + "278": "branch0_seg0", + "279": "branch0_seg0", + "280": "branch0_seg0", + "281": "branch0_seg0", + "282": "branch0_seg0", + "283": "branch0_seg0", + "284": "branch0_seg0", + "285": "branch0_seg0", + "286": "branch0_seg0", + "287": "branch0_seg0", + "288": "branch0_seg0", + "289": "branch0_seg0", + "290": "branch0_seg0", + "291": "branch0_seg0", + "292": "branch0_seg0", + "293": "branch0_seg0", + "294": "branch0_seg0", + "295": "branch0_seg0", + "296": "branch0_seg0", + "297": "branch0_seg0", + "298": "branch0_seg0", + "299": "branch0_seg0", + "300": "branch0_seg0", + "301": "branch0_seg0", + "302": "branch0_seg0", + "303": "branch0_seg0", + "304": "branch0_seg0", + "305": "branch0_seg0", + "306": "branch0_seg0", + "307": "branch0_seg0", + "308": "branch0_seg0", + "309": "branch0_seg0", + "310": "branch0_seg0", + "311": "branch0_seg0", + "312": "branch0_seg0", + "313": "branch0_seg0", + "314": "branch0_seg0", + "315": "branch0_seg0", + "316": "branch0_seg0", + "317": "branch0_seg0", + "318": "branch0_seg0", + "319": "branch0_seg0", + "320": "branch0_seg0", + "321": "branch0_seg0", + "322": "branch0_seg0", + "323": "branch0_seg0", + "324": "branch0_seg0", + "325": "branch0_seg0", + "326": "branch0_seg0", + "327": "branch0_seg0", + "328": "branch0_seg0", + "329": "branch0_seg0", + "330": "branch0_seg0", + "331": "branch0_seg0", + "332": "branch0_seg0", + "333": "branch0_seg0", + "334": "branch0_seg0", + "335": "branch0_seg0", + "336": "branch0_seg0", + "337": "branch0_seg0", + "338": "branch0_seg0", + "339": "branch0_seg0", + "340": "branch0_seg0", + "341": "branch0_seg0", + "342": "branch0_seg0", + "343": "branch0_seg0", + "344": "branch0_seg0", + "345": "branch0_seg0", + "346": "branch0_seg0", + "347": "branch0_seg0", + "348": "branch0_seg0", + "349": "branch0_seg0", + "350": "branch0_seg0", + "351": "branch0_seg0", + "352": "branch0_seg0", + "353": "branch0_seg0", + "354": "branch0_seg0", + "355": "branch0_seg0", + "356": "branch0_seg0", + "357": "branch0_seg0", + "358": "branch0_seg0", + "359": "branch0_seg0", + "360": "branch0_seg0", + "361": "branch0_seg0", + "362": "branch0_seg0", + "363": "branch0_seg0", + "364": "branch0_seg0", + "365": "branch0_seg0", + "366": "branch0_seg0", + "367": "branch0_seg0", + "368": "branch0_seg0", + "369": "branch0_seg0", + "370": "branch0_seg0", + "371": "branch0_seg0", + "372": "branch0_seg0", + "373": "branch0_seg0", + "374": "branch0_seg0", + "375": "branch0_seg0", + "376": "branch0_seg0", + "377": "branch0_seg0", + "378": "branch0_seg0", + "379": "branch0_seg0", + "380": "branch0_seg0", + "381": "branch0_seg0", + "382": "branch0_seg0", + "383": "branch0_seg0", + "384": "branch0_seg0", + "385": "branch0_seg0", + "386": "branch0_seg0", + "387": "branch0_seg0", + "388": "branch0_seg0", + "389": "branch0_seg0", + "390": "branch0_seg0", + "391": "branch0_seg0", + "392": "branch0_seg0", + "393": "branch0_seg0", + "394": "branch0_seg0", + "395": "branch0_seg0", + "396": "branch0_seg0", + "397": "branch0_seg0", + "398": "branch0_seg0", + "399": "branch0_seg0", + "400": "branch0_seg0", + "401": "branch0_seg0", + "402": "branch0_seg0", + "403": "branch0_seg0", + "404": "branch0_seg0", + "405": "branch0_seg0", + "406": "branch0_seg0", + "407": "branch0_seg0", + "408": "branch0_seg0", + "409": "branch0_seg0", + "410": "branch0_seg0", + "411": "branch0_seg0", + "412": "branch0_seg0", + "413": "branch0_seg0", + "414": "branch0_seg0", + "415": "branch0_seg0", + "416": "branch0_seg0", + "417": "branch0_seg0", + "418": "branch0_seg0", + "419": "branch0_seg0", + "420": "branch0_seg0", + "421": "branch0_seg0", + "422": "branch0_seg0", + "423": "branch0_seg0", + "424": "branch0_seg0", + "425": "branch0_seg0", + "426": "branch0_seg0", + "427": "branch0_seg0", + "428": "branch0_seg0", + "429": "branch0_seg0", + "430": "branch0_seg0", + "431": "branch0_seg0", + "432": "branch0_seg0", + "433": "branch0_seg0", + "434": "branch0_seg0", + "435": "branch0_seg0", + "436": "branch0_seg0", + "437": "branch0_seg0", + "438": "branch0_seg0", + "439": "branch0_seg0", + "440": "branch0_seg0", + "441": "branch0_seg0", + "442": "branch0_seg0", + "443": "branch0_seg0", + "444": "branch0_seg0", + "445": "branch0_seg0", + "446": "branch0_seg0", + "447": "branch0_seg0", + "448": "branch0_seg0", + "449": "branch0_seg0", + "450": "branch0_seg0", + "451": "branch0_seg0", + "452": "branch0_seg0", + "453": "branch0_seg0", + "454": "branch0_seg0", + "455": "branch0_seg0", + "456": "branch0_seg0", + "457": "branch0_seg0", + "458": "branch0_seg0", + "459": "branch0_seg0", + "460": "branch0_seg0", + "461": "branch0_seg0", + "462": "branch0_seg0", + "463": "branch0_seg0", + "464": "branch0_seg0", + "465": "branch0_seg0", + "466": "branch0_seg0", + "467": "branch0_seg0", + "468": "branch0_seg0", + "469": "branch0_seg0", + "470": "branch0_seg0", + "471": "branch0_seg0", + "472": "branch0_seg0", + "473": "branch0_seg0", + "474": "branch0_seg0", + "475": "branch0_seg0", + "476": "branch0_seg0", + "477": "branch0_seg0", + "478": "branch0_seg0", + "479": "branch0_seg0", + "480": "branch0_seg0", + "481": "branch0_seg0", + "482": "branch0_seg0", + "483": "branch0_seg0", + "484": "branch0_seg0", + "485": "branch0_seg0", + "486": "branch0_seg0", + "487": "branch0_seg0", + "488": "branch0_seg0", + "489": "branch0_seg0", + "490": "branch0_seg0", + "491": "branch0_seg0", + "492": "branch0_seg0", + "493": "branch0_seg0", + "494": "branch0_seg0", + "495": "branch0_seg0", + "496": "branch0_seg0", + "497": "branch0_seg0", + "498": "branch0_seg0", + "499": "branch0_seg0", + "500": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.0125663706, + "2": 0.0251327412, + "3": 0.0376991118, + "4": 0.0502654825, + "5": 0.0628318531, + "6": 0.0753982237, + "7": 0.0879645943, + "8": 0.1005309649, + "9": 0.1130973355, + "10": 0.1256637061, + "11": 0.1382300768, + "12": 0.1507964474, + "13": 0.163362818, + "14": 0.1759291886, + "15": 0.1884955592, + "16": 0.2010619298, + "17": 0.2136283004, + "18": 0.2261946711, + "19": 0.2387610417, + "20": 0.2513274123, + "21": 0.2638937829, + "22": 0.2764601535, + "23": 0.2890265241, + "24": 0.3015928947, + "25": 0.3141592653, + "26": 0.326725636, + "27": 0.3392920066, + "28": 0.3518583772, + "29": 0.3644247478, + "30": 0.3769911184, + "31": 0.389557489, + "32": 0.4021238596, + "33": 0.4146902303, + "34": 0.4272566009, + "35": 0.4398229715, + "36": 0.4523893421, + "37": 0.4649557127, + "38": 0.4775220833, + "39": 0.4900884539, + "40": 0.5026548246, + "41": 0.5152211952, + "42": 0.5277875658, + "43": 0.5403539364, + "44": 0.552920307, + "45": 0.5654866776, + "46": 0.5780530482, + "47": 0.5906194189, + "48": 0.6031857895, + "49": 0.6157521601, + "50": 0.6283185307, + "51": 0.6408849013, + "52": 0.6534512719, + "53": 0.6660176425, + "54": 0.6785840132, + "55": 0.6911503838, + "56": 0.7037167544, + "57": 0.716283125, + "58": 0.7288494956, + "59": 0.7414158662, + "60": 0.7539822368, + "61": 0.7665486075, + "62": 0.7791149781, + "63": 0.7916813487, + "64": 0.8042477193, + "65": 0.8168140899, + "66": 0.8293804605, + "67": 0.8419468311, + "68": 0.8545132018, + "69": 0.8670795724, + "70": 0.879645943, + "71": 0.8922123136, + "72": 0.9047786842, + "73": 0.9173450548, + "74": 0.9299114254, + "75": 0.942477796, + "76": 0.9550441667, + "77": 0.9676105373, + "78": 0.9801769079, + "79": 0.9927432785, + "80": 1.0053096491, + "81": 1.0178760197, + "82": 1.0304423903, + "83": 1.043008761, + "84": 1.0555751316, + "85": 1.0681415022, + "86": 1.0807078728, + "87": 1.0932742434, + "88": 1.105840614, + "89": 1.1184069846, + "90": 1.1309733553, + "91": 1.1435397259, + "92": 1.1561060965, + "93": 1.1686724671, + "94": 1.1812388377, + "95": 1.1938052083, + "96": 1.2063715789, + "97": 1.2189379496, + "98": 1.2315043202, + "99": 1.2440706908, + "100": 1.2566370614, + "101": 1.269203432, + "102": 1.2817698026, + "103": 1.2943361732, + "104": 1.3069025439, + "105": 1.3194689145, + "106": 1.3320352851, + "107": 1.3446016557, + "108": 1.3571680263, + "109": 1.3697343969, + "110": 1.3823007675, + "111": 1.3948671382, + "112": 1.4074335088, + "113": 1.4199998794, + "114": 1.43256625, + "115": 1.4451326206, + "116": 1.4576989912, + "117": 1.4702653618, + "118": 1.4828317325, + "119": 1.4953981031, + "120": 1.5079644737, + "121": 1.5205308443, + "122": 1.5330972149, + "123": 1.5456635855, + "124": 1.5582299561, + "125": 1.5707963267, + "126": 1.5833626974, + "127": 1.595929068, + "128": 1.6084954386, + "129": 1.6210618092, + "130": 1.6336281798, + "131": 1.6461945504, + "132": 1.658760921, + "133": 1.6713272917, + "134": 1.6838936623, + "135": 1.6964600329, + "136": 1.7090264035, + "137": 1.7215927741, + "138": 1.7341591447, + "139": 1.7467255153, + "140": 1.759291886, + "141": 1.7718582566, + "142": 1.7844246272, + "143": 1.7969909978, + "144": 1.8095573684, + "145": 1.822123739, + "146": 1.8346901096, + "147": 1.8472564803, + "148": 1.8598228509, + "149": 1.8723892215, + "150": 1.8849555921, + "151": 1.8975219627, + "152": 1.9100883333, + "153": 1.9226547039, + "154": 1.9352210746, + "155": 1.9477874452, + "156": 1.9603538158, + "157": 1.9729201864, + "158": 1.985486557, + "159": 1.9980529276, + "160": 2.0106192982, + "161": 2.0231856689, + "162": 2.0357520395, + "163": 2.0483184101, + "164": 2.0608847807, + "165": 2.0734511513, + "166": 2.0860175219, + "167": 2.0985838925, + "168": 2.1111502632, + "169": 2.1237166338, + "170": 2.1362830044, + "171": 2.148849375, + "172": 2.1614157456, + "173": 2.1739821162, + "174": 2.1865484868, + "175": 2.1991148574, + "176": 2.2116812281, + "177": 2.2242475987, + "178": 2.2368139693, + "179": 2.2493803399, + "180": 2.2619467105, + "181": 2.2745130811, + "182": 2.2870794517, + "183": 2.2996458224, + "184": 2.312212193, + "185": 2.3247785636, + "186": 2.3373449342, + "187": 2.3499113048, + "188": 2.3624776754, + "189": 2.375044046, + "190": 2.3876104167, + "191": 2.4001767873, + "192": 2.4127431579, + "193": 2.4253095285, + "194": 2.4378758991, + "195": 2.4504422697, + "196": 2.4630086403, + "197": 2.475575011, + "198": 2.4881413816, + "199": 2.5007077522, + "200": 2.5132741228, + "201": 2.5258404934, + "202": 2.538406864, + "203": 2.5509732346, + "204": 2.5635396053, + "205": 2.5761059759, + "206": 2.5886723465, + "207": 2.6012387171, + "208": 2.6138050877, + "209": 2.6263714583, + "210": 2.6389378289, + "211": 2.6515041996, + "212": 2.6640705702, + "213": 2.6766369408, + "214": 2.6892033114, + "215": 2.701769682, + "216": 2.7143360526, + "217": 2.7269024232, + "218": 2.7394687939, + "219": 2.7520351645, + "220": 2.7646015351, + "221": 2.7771679057, + "222": 2.7897342763, + "223": 2.8023006469, + "224": 2.8148670175, + "225": 2.8274333881, + "226": 2.8399997588, + "227": 2.8525661294, + "228": 2.8651325, + "229": 2.8776988706, + "230": 2.8902652412, + "231": 2.9028316118, + "232": 2.9153979824, + "233": 2.9279643531, + "234": 2.9405307237, + "235": 2.9530970943, + "236": 2.9656634649, + "237": 2.9782298355, + "238": 2.9907962061, + "239": 3.0033625767, + "240": 3.0159289474, + "241": 3.028495318, + "242": 3.0410616886, + "243": 3.0536280592, + "244": 3.0661944298, + "245": 3.0787608004, + "246": 3.091327171, + "247": 3.1038935417, + "248": 3.1164599123, + "249": 3.1290262829, + "250": 3.1415926535, + "251": 3.1541590241, + "252": 3.1667253947, + "253": 3.1792917653, + "254": 3.191858136, + "255": 3.2044245066, + "256": 3.2169908772, + "257": 3.2295572478, + "258": 3.2421236184, + "259": 3.254689989, + "260": 3.2672563596, + "261": 3.2798227303, + "262": 3.2923891009, + "263": 3.3049554715, + "264": 3.3175218421, + "265": 3.3300882127, + "266": 3.3426545833, + "267": 3.3552209539, + "268": 3.3677873246, + "269": 3.3803536952, + "270": 3.3929200658, + "271": 3.4054864364, + "272": 3.418052807, + "273": 3.4306191776, + "274": 3.4431855482, + "275": 3.4557519188, + "276": 3.4683182895, + "277": 3.4808846601, + "278": 3.4934510307, + "279": 3.5060174013, + "280": 3.5185837719, + "281": 3.5311501425, + "282": 3.5437165131, + "283": 3.5562828838, + "284": 3.5688492544, + "285": 3.581415625, + "286": 3.5939819956, + "287": 3.6065483662, + "288": 3.6191147368, + "289": 3.6316811074, + "290": 3.6442474781, + "291": 3.6568138487, + "292": 3.6693802193, + "293": 3.6819465899, + "294": 3.6945129605, + "295": 3.7070793311, + "296": 3.7196457017, + "297": 3.7322120724, + "298": 3.744778443, + "299": 3.7573448136, + "300": 3.7699111842, + "301": 3.7824775548, + "302": 3.7950439254, + "303": 3.807610296, + "304": 3.8201766667, + "305": 3.8327430373, + "306": 3.8453094079, + "307": 3.8578757785, + "308": 3.8704421491, + "309": 3.8830085197, + "310": 3.8955748903, + "311": 3.908141261, + "312": 3.9207076316, + "313": 3.9332740022, + "314": 3.9458403728, + "315": 3.9584067434, + "316": 3.970973114, + "317": 3.9835394846, + "318": 3.9961058553, + "319": 4.0086722259, + "320": 4.0212385965, + "321": 4.0338049671, + "322": 4.0463713377, + "323": 4.0589377083, + "324": 4.0715040789, + "325": 4.0840704495, + "326": 4.0966368202, + "327": 4.1092031908, + "328": 4.1217695614, + "329": 4.134335932, + "330": 4.1469023026, + "331": 4.1594686732, + "332": 4.1720350438, + "333": 4.1846014145, + "334": 4.1971677851, + "335": 4.2097341557, + "336": 4.2223005263, + "337": 4.2348668969, + "338": 4.2474332675, + "339": 4.2599996381, + "340": 4.2725660088, + "341": 4.2851323794, + "342": 4.29769875, + "343": 4.3102651206, + "344": 4.3228314912, + "345": 4.3353978618, + "346": 4.3479642324, + "347": 4.3605306031, + "348": 4.3730969737, + "349": 4.3856633443, + "350": 4.3982297149, + "351": 4.4107960855, + "352": 4.4233624561, + "353": 4.4359288267, + "354": 4.4484951974, + "355": 4.461061568, + "356": 4.4736279386, + "357": 4.4861943092, + "358": 4.4987606798, + "359": 4.5113270504, + "360": 4.523893421, + "361": 4.5364597917, + "362": 4.5490261623, + "363": 4.5615925329, + "364": 4.5741589035, + "365": 4.5867252741, + "366": 4.5992916447, + "367": 4.6118580153, + "368": 4.624424386, + "369": 4.6369907566, + "370": 4.6495571272, + "371": 4.6621234978, + "372": 4.6746898684, + "373": 4.687256239, + "374": 4.6998226096, + "375": 4.7123889802, + "376": 4.7249553509, + "377": 4.7375217215, + "378": 4.7500880921, + "379": 4.7626544627, + "380": 4.7752208333, + "381": 4.7877872039, + "382": 4.8003535745, + "383": 4.8129199452, + "384": 4.8254863158, + "385": 4.8380526864, + "386": 4.850619057, + "387": 4.8631854276, + "388": 4.8757517982, + "389": 4.8883181688, + "390": 4.9008845395, + "391": 4.9134509101, + "392": 4.9260172807, + "393": 4.9385836513, + "394": 4.9511500219, + "395": 4.9637163925, + "396": 4.9762827631, + "397": 4.9888491338, + "398": 5.0014155044, + "399": 5.013981875, + "400": 5.0265482456, + "401": 5.0391146162, + "402": 5.0516809868, + "403": 5.0642473574, + "404": 5.0768137281, + "405": 5.0893800987, + "406": 5.1019464693, + "407": 5.1145128399, + "408": 5.1270792105, + "409": 5.1396455811, + "410": 5.1522119517, + "411": 5.1647783224, + "412": 5.177344693, + "413": 5.1899110636, + "414": 5.2024774342, + "415": 5.2150438048, + "416": 5.2276101754, + "417": 5.240176546, + "418": 5.2527429167, + "419": 5.2653092873, + "420": 5.2778756579, + "421": 5.2904420285, + "422": 5.3030083991, + "423": 5.3155747697, + "424": 5.3281411403, + "425": 5.3407075109, + "426": 5.3532738816, + "427": 5.3658402522, + "428": 5.3784066228, + "429": 5.3909729934, + "430": 5.403539364, + "431": 5.4161057346, + "432": 5.4286721052, + "433": 5.4412384759, + "434": 5.4538048465, + "435": 5.4663712171, + "436": 5.4789375877, + "437": 5.4915039583, + "438": 5.5040703289, + "439": 5.5166366995, + "440": 5.5292030702, + "441": 5.5417694408, + "442": 5.5543358114, + "443": 5.566902182, + "444": 5.5794685526, + "445": 5.5920349232, + "446": 5.6046012938, + "447": 5.6171676645, + "448": 5.6297340351, + "449": 5.6423004057, + "450": 5.6548667763, + "451": 5.6674331469, + "452": 5.6799995175, + "453": 5.6925658881, + "454": 5.7051322588, + "455": 5.7176986294, + "456": 5.730265, + "457": 5.7428313706, + "458": 5.7553977412, + "459": 5.7679641118, + "460": 5.7805304824, + "461": 5.7930968531, + "462": 5.8056632237, + "463": 5.8182295943, + "464": 5.8307959649, + "465": 5.8433623355, + "466": 5.8559287061, + "467": 5.8684950767, + "468": 5.8810614474, + "469": 5.893627818, + "470": 5.9061941886, + "471": 5.9187605592, + "472": 5.9313269298, + "473": 5.9438933004, + "474": 5.956459671, + "475": 5.9690260416, + "476": 5.9815924123, + "477": 5.9941587829, + "478": 6.0067251535, + "479": 6.0192915241, + "480": 6.0318578947, + "481": 6.0444242653, + "482": 6.0569906359, + "483": 6.0695570066, + "484": 6.0821233772, + "485": 6.0946897478, + "486": 6.1072561184, + "487": 6.119822489, + "488": 6.1323888596, + "489": 6.1449552302, + "490": 6.1575216009, + "491": 6.1700879715, + "492": 6.1826543421, + "493": 6.1952207127, + "494": 6.2077870833, + "495": 6.2203534539, + "496": 6.2329198245, + "497": 6.2454861952, + "498": 6.2580525658, + "499": 6.2706189364, + "500": 6.283185307 + }, + "flow_in": { + "0": 0.0000000705, + "1": 0.012557901, + "2": 0.02511589, + "3": 0.0376737998, + "4": 0.0502317492, + "5": 0.0627896788, + "6": 0.0753008825, + "7": 0.0878063351, + "8": 0.1003146632, + "9": 0.1128215535, + "10": 0.1253291627, + "11": 0.1377507757, + "12": 0.1501496299, + "13": 0.1625598635, + "14": 0.1749644074, + "15": 0.1873717961, + "16": 0.1996611693, + "17": 0.2118998155, + "18": 0.2241638251, + "19": 0.236415153, + "20": 0.2486728218, + "21": 0.260787763, + "22": 0.2728132738, + "23": 0.2848834998, + "24": 0.2969313682, + "25": 0.3089904154, + "26": 0.3208893298, + "27": 0.3326496884, + "28": 0.3444793249, + "29": 0.3562743224, + "30": 0.3680866394, + "31": 0.3797286689, + "32": 0.3911729936, + "33": 0.4027161708, + "34": 0.4142099217, + "35": 0.4257283858, + "36": 0.4370735445, + "37": 0.4481523069, + "38": 0.4593642675, + "39": 0.470509629, + "40": 0.48168829, + "41": 0.4926975973, + "42": 0.5033628358, + "43": 0.5142001087, + "44": 0.5249513644, + "45": 0.5357456287, + "46": 0.5463812395, + "47": 0.5565867662, + "48": 0.5670073349, + "49": 0.5773203826, + "50": 0.5876871909, + "51": 0.5979125222, + "52": 0.6076141219, + "53": 0.6175775873, + "54": 0.6274101199, + "55": 0.6373081189, + "56": 0.6470879715, + "57": 0.6562435914, + "58": 0.6657113276, + "59": 0.6750230056, + "60": 0.6844127128, + "61": 0.6937133887, + "62": 0.7022833221, + "63": 0.7112186268, + "64": 0.7199712458, + "65": 0.7288152076, + "66": 0.7376046242, + "67": 0.745551678, + "68": 0.7539199132, + "69": 0.7620775577, + "70": 0.7703404975, + "71": 0.7785507897, + "72": 0.7858967048, + "73": 0.7936373053, + "74": 0.801180563, + "75": 0.8088224921, + "76": 0.8164150856, + "77": 0.8231467441, + "78": 0.8302203099, + "79": 0.837122922, + "80": 0.8441110109, + "81": 0.8510563615, + "82": 0.8571505872, + "83": 0.8635266705, + "84": 0.869761825, + "85": 0.8760674439, + "86": 0.8823378306, + "87": 0.887774001, + "88": 0.8934249694, + "89": 0.8989685388, + "90": 0.9045658077, + "91": 0.9101362269, + "92": 0.9148959485, + "93": 0.9197972996, + "94": 0.924627836, + "95": 0.9294937797, + "96": 0.9343420198, + "97": 0.9384092, + "98": 0.9425396611, + "99": 0.9466384817, + "100": 0.9507531226, + "101": 0.9548598534, + "102": 0.9582207536, + "103": 0.9615623736, + "104": 0.9649136338, + "105": 0.9682600738, + "106": 0.9716089239, + "107": 0.9742522034, + "108": 0.9767904306, + "109": 0.9793811839, + "110": 0.9819456741, + "111": 0.9845232959, + "112": 0.9864400488, + "113": 0.9881637935, + "114": 0.9899840423, + "115": 0.9917560391, + "116": 0.9935521619, + "117": 0.9947359463, + "118": 0.99563763, + "119": 0.996680364, + "120": 0.9976525729, + "121": 0.9986600443, + "122": 0.9991069029, + "123": 0.9991824899, + "124": 0.9994437127, + "125": 0.9996121177, + "126": 0.9998269315, + "127": 0.999535404, + "128": 0.9987844202, + "129": 0.9982631646, + "130": 0.9976270449, + "131": 0.9970483572, + "132": 0.9960194854, + "133": 0.9944450211, + "134": 0.993143353, + "135": 0.9917052869, + "136": 0.9903354197, + "137": 0.9885727435, + "138": 0.9861814398, + "139": 0.9841044498, + "140": 0.981870303, + "141": 0.9797147346, + "142": 0.9772242801, + "143": 0.9740263021, + "144": 0.9711820859, + "145": 0.9681609887, + "146": 0.965228332, + "147": 0.9620185919, + "148": 0.9580275841, + "149": 0.9544272101, + "150": 0.9506315192, + "151": 0.9469334867, + "152": 0.9430153917, + "153": 0.9382484213, + "154": 0.9339058886, + "155": 0.929351137, + "156": 0.9249024948, + "157": 0.9202893781, + "158": 0.914766862, + "159": 0.9096990456, + "160": 0.9044038793, + "161": 0.899222388, + "162": 0.8939299414, + "163": 0.8876755588, + "164": 0.8819021442, + "165": 0.8758882455, + "166": 0.8699945889, + "167": 0.8640408113, + "168": 0.8570814022, + "169": 0.8506248088, + "170": 0.8439168075, + "171": 0.8373345102, + "172": 0.8306893609, + "173": 0.8231302424, + "174": 0.8159778215, + "175": 0.8086220517, + "176": 0.8013679564, + "177": 0.7940630239, + "178": 0.7859279744, + "179": 0.7781118558, + "180": 0.7701362717, + "181": 0.7622404204, + "182": 0.7543047027, + "183": 0.7456220479, + "184": 0.7371759206, + "185": 0.7286115295, + "186": 0.7201062703, + "187": 0.7115714452, + "188": 0.7023712684, + "189": 0.6933315814, + "190": 0.6842116496, + "191": 0.6751318402, + "192": 0.6660319696, + "193": 0.6563460938, + "194": 0.6467518572, + "195": 0.637111801, + "196": 0.6274946546, + "197": 0.6178660533, + "198": 0.6077279343, + "199": 0.5976205545, + "200": 0.5874978051, + "201": 0.5773827405, + "202": 0.5672638335, + "203": 0.5567084445, + "204": 0.5461315447, + "205": 0.5355654004, + "206": 0.5249938783, + "207": 0.5144250451, + "208": 0.5034887611, + "209": 0.4924879949, + "210": 0.4815194698, + "211": 0.4705348242, + "212": 0.4595582388, + "213": 0.4482787142, + "214": 0.4369015683, + "215": 0.425573233, + "216": 0.4142204925, + "217": 0.4028799545, + "218": 0.3912959978, + "219": 0.3795915897, + "220": 0.3679474072, + "221": 0.3562731119, + "222": 0.3446138731, + "223": 0.3327653164, + "224": 0.3207841816, + "225": 0.3088693359, + "226": 0.2969213457, + "227": 0.2849899277, + "228": 0.2729174944, + "229": 0.2607113701, + "230": 0.2485720914, + "231": 0.2363993898, + "232": 0.2242433997, + "233": 0.2119885682, + "234": 0.1996101702, + "235": 0.1872935554, + "236": 0.1749460491, + "237": 0.1626139885, + "238": 0.1502188542, + "239": 0.1377216514, + "240": 0.1252754829, + "241": 0.1128037973, + "242": 0.1003448702, + "243": 0.0878520053, + "244": 0.075289989, + "245": 0.0627625484, + "246": 0.0502178199, + "247": 0.0376817354, + "248": 0.0251340469, + "249": 0.0125614992, + "250": 0.0000013811, + "251": -0.0125649519, + "252": -0.0251281774, + "253": -0.0376875909, + "254": -0.0502163329, + "255": -0.0627604106, + "256": -0.0752968205, + "257": -0.0878370643, + "258": -0.1003650567, + "259": -0.1127958304, + "260": -0.1252752135, + "261": -0.1377302919, + "262": -0.1501975226, + "263": -0.1626510425, + "264": -0.1749300963, + "265": -0.1872963832, + "266": -0.1996190535, + "267": -0.2119635321, + "268": -0.2242971066, + "269": -0.2363753216, + "270": -0.248578555, + "271": -0.2607192792, + "272": -0.272891258, + "273": -0.2850476095, + "274": -0.2968952668, + "275": -0.3088768513, + "276": -0.3207914721, + "277": -0.3327395748, + "278": -0.3446709366, + "279": -0.3562470896, + "280": -0.3679553996, + "281": -0.3795976311, + "282": -0.3912729018, + "283": -0.402931653, + "284": -0.414196677, + "285": -0.4255810732, + "286": -0.4369057833, + "287": -0.4482603365, + "288": -0.4595999681, + "289": -0.4705153029, + "290": -0.4815265437, + "291": -0.4924898315, + "292": -0.5034770958, + "293": -0.5144523718, + "294": -0.5249806631, + "295": -0.5355711117, + "296": -0.5461304816, + "297": -0.5567053909, + "298": -0.5672725305, + "299": -0.5773777516, + "300": -0.5875015803, + "301": -0.5976161052, + "302": -0.6077352821, + "303": -0.6178521329, + "304": -0.6274997054, + "305": -0.6371130935, + "306": -0.6467435737, + "307": -0.6563655079, + "308": -0.6659917151, + "309": -0.6751486229, + "310": -0.6842099446, + "311": -0.6933190593, + "312": -0.7024042775, + "313": -0.7115014439, + "314": -0.7201363433, + "315": -0.7286063483, + "316": -0.7371588006, + "317": -0.7456700292, + "318": -0.7542018696, + "319": -0.7622851926, + "320": -0.7701271744, + "321": -0.7780898269, + "322": -0.785992144, + "323": -0.7939246288, + "324": -0.801428681, + "325": -0.8086086349, + "326": -0.815950638, + "327": -0.8232116165, + "328": -0.8305131073, + "329": -0.837412161, + "330": -0.8438989322, + "331": -0.8505918447, + "332": -0.8571816866, + "333": -0.8638230637, + "334": -0.8700934425, + "335": -0.8758588591, + "336": -0.8818767567, + "337": -0.8877684138, + "338": -0.8937231912, + "339": -0.899343349, + "340": -0.9043623446, + "341": -0.9096819213, + "342": -0.9148512074, + "343": -0.9200956388, + "344": -0.9250462319, + "345": -0.9292969532, + "346": -0.9338976104, + "347": -0.9383232996, + "348": -0.9428364729, + "349": -0.9471004242, + "350": -0.9505643265, + "351": -0.9544282534, + "352": -0.9580921679, + "353": -0.9618560886, + "354": -0.9654186453, + "355": -0.9680805722, + "356": -0.971192814, + "357": -0.9740798984, + "358": -0.9770795614, + "359": -0.9799283442, + "360": -0.9817765946, + "361": -0.9841251112, + "362": -0.9862234947, + "363": -0.9884469448, + "364": -0.9905719906, + "365": -0.9915983679, + "366": -0.9931740794, + "367": -0.9944751238, + "368": -0.9959135018, + "369": -0.997283213, + "370": -0.9975191889, + "371": -0.9982979485, + "372": -0.9988053162, + "373": -0.9994483799, + "374": -1.0000235956, + "375": -0.9995215204, + "376": -0.9994735417, + "377": -0.9991985147, + "378": -0.9990370119, + "379": -0.998818747, + "380": -0.9975790986, + "381": -0.9967053469, + "382": -0.9956486469, + "383": -0.994683421, + "384": -0.9936724581, + "385": -0.991699912, + "386": -0.9900040639, + "387": -0.9881698668, + "388": -0.9864048443, + "389": -0.9846052344, + "390": -0.9819068937, + "391": -0.9793961971, + "392": -0.9767916785, + "393": -0.9742340708, + "394": -0.9716530077, + "395": -0.9682384336, + "396": -0.9649236505, + "397": -0.9615589719, + "398": -0.9582192411, + "399": -0.9548670364, + "400": -0.9507482127, + "401": -0.9466435734, + "402": -0.9425318419, + "403": -0.9384236564, + "404": -0.934313698, + "405": -0.9295049901, + "406": -0.9246281322, + "407": -0.9197853493, + "408": -0.9149255289, + "409": -0.9100742273, + "410": -0.9045923331, + "411": -0.8989642265, + "412": -0.8934092261, + "413": -0.8878176725, + "414": -0.8822443956, + "415": -0.8761082894, + "416": -0.8697531463, + "417": -0.8635075217, + "418": -0.8572071379, + "419": -0.8509341337, + "420": -0.8441650018, + "421": -0.8371101727, + "422": -0.8301981922, + "423": -0.8232147875, + "424": -0.8162670948, + "425": -0.808888265, + "426": -0.8011641221, + "427": -0.7936126357, + "428": -0.7859748211, + "429": -0.7783801706, + "430": -0.7704170334, + "431": -0.7620568397, + "432": -0.7538951743, + "433": -0.7456342447, + "434": -0.7374229472, + "435": -0.7289028712, + "436": -0.7199426378, + "437": -0.7112024831, + "438": -0.7023522891, + "439": -0.6935571148, + "440": -0.6845093557, + "441": -0.6749876891, + "442": -0.6657029762, + "443": -0.6562997865, + "444": -0.6469558352, + "445": -0.6374114382, + "446": -0.6273693716, + "447": -0.6175761399, + "448": -0.6076584907, + "449": -0.5978030502, + "450": -0.5877947463, + "451": -0.5772755659, + "452": -0.5670118238, + "453": -0.5566203625, + "454": -0.5462927609, + "455": -0.5358548585, + "456": -0.5249039176, + "457": -0.5142094959, + "458": -0.5033868146, + "459": -0.4926282631, + "460": -0.4817965341, + "461": -0.4704610568, + "462": -0.4593774537, + "463": -0.4481679135, + "464": -0.4370213418, + "465": -0.425832902, + "466": -0.4141617827, + "467": -0.4027320031, + "468": -0.3911815537, + "469": -0.3796914392, + "470": -0.3681711572, + "471": -0.3562349512, + "472": -0.3444932382, + "473": -0.3326542786, + "474": -0.3208639423, + "475": -0.3090492944, + "476": -0.2969037918, + "477": -0.2848935617, + "478": -0.2728156954, + "479": -0.2607716471, + "480": -0.2487106899, + "481": -0.2363972758, + "482": -0.2241706501, + "483": -0.2119006302, + "484": -0.1996523074, + "485": -0.1873931361, + "486": -0.1749542118, + "487": -0.1625640135, + "488": -0.1501494523, + "489": -0.1377470725, + "490": -0.125338602, + "491": -0.112816955, + "492": -0.1003167238, + "493": -0.0878057847, + "494": -0.0753001996, + "495": -0.0627919375, + "496": -0.0502306166, + "497": -0.0376743727, + "498": -0.0251155904, + "499": -0.0125580772, + "500": 0.0000000705 + }, + "flow_out": { + "0": -0.0000728938, + "1": 0.0314351679, + "2": 0.0015511959, + "3": 0.0588718925, + "4": 0.033748532, + "5": 0.0745614923, + "6": 0.0672626367, + "7": 0.0930721294, + "8": 0.0969774726, + "9": 0.1148806279, + "10": 0.1240862931, + "11": 0.1383176493, + "12": 0.1499077451, + "13": 0.1626697459, + "14": 0.1749017122, + "15": 0.1874178757, + "16": 0.1993943925, + "17": 0.2121451092, + "18": 0.2240273114, + "19": 0.2364507483, + "20": 0.2487004285, + "21": 0.2604618997, + "22": 0.273070288, + "23": 0.2848032701, + "24": 0.2968675124, + "25": 0.3091303307, + "26": 0.3204353817, + "27": 0.332934365, + "28": 0.3444729152, + "29": 0.3560783561, + "30": 0.3683742198, + "31": 0.3791320757, + "32": 0.3914735508, + "33": 0.4028126488, + "34": 0.4138464526, + "35": 0.4261976153, + "36": 0.4363214596, + "37": 0.4484592038, + "38": 0.4595868892, + "39": 0.4699507559, + "40": 0.4823656606, + "41": 0.4917821813, + "42": 0.5036675044, + "43": 0.5145663633, + "44": 0.5241772245, + "45": 0.5366494056, + "46": 0.5452999977, + "47": 0.5568818539, + "48": 0.5675283057, + "49": 0.5763199443, + "50": 0.5888266451, + "51": 0.5966686422, + "52": 0.6078936267, + "53": 0.6182575173, + "54": 0.626181727, + "55": 0.638683, + "56": 0.6456905132, + "57": 0.6565029626, + "58": 0.6665473597, + "59": 0.6735746838, + "60": 0.686012964, + "61": 0.6921773292, + "62": 0.7025195224, + "63": 0.7122007232, + "64": 0.7183207666, + "65": 0.7306209251, + "66": 0.7359507574, + "67": 0.7457631907, + "68": 0.7550309829, + "69": 0.7602522253, + "70": 0.772322168, + "71": 0.7767566929, + "72": 0.7862614446, + "73": 0.7945344093, + "74": 0.7996063755, + "75": 0.8105549724, + "76": 0.8148400581, + "77": 0.8234283233, + "78": 0.8310203041, + "79": 0.8357666065, + "80": 0.8455813001, + "81": 0.8497326606, + "82": 0.857324514, + "83": 0.8642471364, + "84": 0.8686104648, + "85": 0.8772852333, + "86": 0.8812581887, + "87": 0.8878531729, + "88": 0.8940574889, + "89": 0.8980238094, + "90": 0.9055343789, + "91": 0.9092949705, + "92": 0.914890641, + "93": 0.9203405307, + "94": 0.9238810954, + "95": 0.9302276464, + "96": 0.9337231134, + "97": 0.9383349603, + "98": 0.9429938899, + "99": 0.9460746614, + "100": 0.9512752216, + "101": 0.9544389115, + "102": 0.9580971303, + "103": 0.9619298218, + "104": 0.9645116493, + "105": 0.9686009909, + "106": 0.9713540687, + "107": 0.9741021832, + "108": 0.9770750422, + "109": 0.9791147723, + "110": 0.9821425184, + "111": 0.9843962952, + "112": 0.9862893428, + "113": 0.9883710195, + "114": 0.9898227054, + "115": 0.9918511645, + "116": 0.9935097226, + "117": 0.9946121967, + "118": 0.9957741864, + "119": 0.9965904109, + "120": 0.9976921716, + "121": 0.9986552327, + "122": 0.9990388295, + "123": 0.9992560965, + "124": 0.9993893765, + "125": 0.9996447176, + "126": 0.9998106872, + "127": 0.9995519088, + "128": 0.9988035254, + "129": 0.9982077651, + "130": 0.9977019489, + "131": 0.9969710642, + "132": 0.9961487384, + "133": 0.9944185202, + "134": 0.9930504794, + "135": 0.9918709896, + "136": 0.9901484967, + "137": 0.9888412704, + "138": 0.9861183935, + "139": 0.9839391332, + "140": 0.9821729249, + "141": 0.9793722059, + "142": 0.9776560758, + "143": 0.9739356598, + "144": 0.9709119358, + "145": 0.9686427624, + "146": 0.9646883437, + "147": 0.96263428, + "148": 0.9579179213, + "149": 0.9540234853, + "150": 0.9513293683, + "151": 0.9461597267, + "152": 0.9438314529, + "153": 0.9381276924, + "154": 0.9333444802, + "155": 0.9302953764, + "156": 0.923865489, + "157": 0.9213174641, + "158": 0.914642179, + "159": 0.9089613452, + "160": 0.9056170744, + "161": 0.8979006345, + "162": 0.8951762957, + "163": 0.8875529975, + "164": 0.8809757757, + "165": 0.8773842567, + "166": 0.8683755027, + "167": 0.8655058113, + "168": 0.85696584, + "169": 0.8495042086, + "170": 0.8457000439, + "171": 0.8354151562, + "172": 0.8324207371, + "173": 0.822802053, + "174": 0.8150711894, + "175": 0.810188621, + "176": 0.7996506497, + "177": 0.7956216113, + "178": 0.7857190091, + "179": 0.7771977867, + "180": 0.7716200776, + "181": 0.7606509832, + "182": 0.7557279632, + "183": 0.7454958256, + "184": 0.7362996895, + "185": 0.7299629798, + "186": 0.7186918738, + "187": 0.7128190672, + "188": 0.7023423937, + "189": 0.6925011118, + "190": 0.6854101567, + "191": 0.6739169914, + "192": 0.6670809459, + "193": 0.6564190602, + "194": 0.6459761985, + "195": 0.638142083, + "196": 0.6264955343, + "197": 0.6187021397, + "198": 0.6079023742, + "199": 0.596906594, + "200": 0.5883519669, + "201": 0.5766058821, + "202": 0.5678823852, + "203": 0.5569787676, + "204": 0.5454841718, + "205": 0.5362428288, + "206": 0.5244362599, + "207": 0.5148309306, + "208": 0.5038443055, + "209": 0.4919101134, + "210": 0.4820266444, + "211": 0.4701841573, + "212": 0.4597655299, + "213": 0.4487040352, + "214": 0.4363941463, + "215": 0.4259233664, + "216": 0.4140557426, + "217": 0.4029113827, + "218": 0.3917712784, + "219": 0.3791537624, + "220": 0.3681599058, + "221": 0.3562652511, + "222": 0.3445000555, + "223": 0.3332669102, + "224": 0.3204133873, + "225": 0.3089691062, + "226": 0.2970343134, + "227": 0.2847683844, + "228": 0.2734185754, + "229": 0.2604035238, + "230": 0.2485887048, + "231": 0.2365912384, + "232": 0.2239573879, + "233": 0.2124598801, + "234": 0.1993598673, + "235": 0.1872602925, + "236": 0.1751702491, + "237": 0.1623111772, + "238": 0.1506295386, + "239": 0.1375223945, + "240": 0.1252282837, + "241": 0.1130106647, + "242": 0.1000758949, + "243": 0.088170489, + "244": 0.075134438, + "245": 0.0627388836, + "246": 0.0503560452, + "247": 0.0374986524, + "248": 0.0253289744, + "249": 0.0124417275, + "250": 0.0000390871, + "251": -0.0314134927, + "252": -0.0015704904, + "253": -0.0588840305, + "254": -0.033671704, + "255": -0.0746476885, + "256": -0.0672133436, + "257": -0.0931206382, + "258": -0.0969929164, + "259": -0.1147057963, + "260": -0.1243512384, + "261": -0.13806914, + "262": -0.1501615648, + "263": -0.1625421741, + "264": -0.1747317075, + "265": -0.1878085759, + "266": -0.1989489329, + "267": -0.212641483, + "268": -0.2237026887, + "269": -0.2363445261, + "270": -0.249166, + "271": -0.2598447674, + "272": -0.2738116632, + "273": -0.2842267692, + "274": -0.2969535078, + "275": -0.3094710449, + "276": -0.3198636916, + "277": -0.3337260274, + "278": -0.3437889653, + "279": -0.3562796302, + "280": -0.3686072687, + "281": -0.3786136661, + "282": -0.392301881, + "283": -0.4020216737, + "284": -0.41419323, + "285": -0.4262659932, + "286": -0.4359139114, + "287": -0.4492752976, + "288": -0.4587156093, + "289": -0.4704526903, + "290": -0.4822304674, + "291": -0.4915286052, + "292": -0.5044302415, + "293": -0.5136398713, + "294": -0.524840536, + "295": -0.536280136, + "296": -0.545234392, + "297": -0.5575548785, + "298": -0.5665719355, + "299": -0.5771457436, + "300": -0.5882030583, + "301": -0.5968142323, + "302": -0.6084466021, + "303": -0.6172960637, + "304": -0.6271660433, + "305": -0.6377957737, + "306": -0.6460589455, + "307": -0.6569123294, + "308": -0.6656045281, + "309": -0.6747084946, + "310": -0.6848641444, + "311": -0.6927681296, + "312": -0.7027691003, + "313": -0.7112986007, + "314": -0.7195901482, + "315": -0.7292240731, + "316": -0.7367511129, + "317": -0.7458445927, + "318": -0.7541895489, + "319": -0.7616386457, + "320": -0.7707021955, + "321": -0.7778278601, + "322": -0.7859775894, + "323": -0.7940995867, + "324": -0.8006927753, + "325": -0.8091365216, + "326": -0.8158298404, + "327": -0.8230183995, + "328": -0.8308627883, + "329": -0.8366029861, + "330": -0.8443770392, + "331": -0.8506008524, + "332": -0.8568292432, + "333": -0.8643259589, + "334": -0.86923186, + "335": -0.8762862723, + "336": -0.8819977912, + "337": -0.8872845853, + "338": -0.8943494387, + "339": -0.8984545349, + "340": -0.9047397855, + "341": -0.9098913571, + "342": -0.9142714411, + "343": -0.9208078482, + "344": -0.9241590938, + "345": -0.9296266444, + "346": -0.9341667005, + "347": -0.9376896386, + "348": -0.9435907603, + "349": -0.9462469037, + "350": -0.9508498266, + "351": -0.9547239908, + "352": -0.9574520601, + "353": -0.9626032931, + "354": -0.9646329252, + "355": -0.9683265785, + "356": -0.9714789159, + "357": -0.9734848448, + "358": -0.97776662, + "359": -0.9792459733, + "360": -0.9819887236, + "361": -0.9843630973, + "362": -0.9857275735, + "363": -0.9890183919, + "364": -0.9900289485, + "365": -0.9917829154, + "366": -0.9933244244, + "367": -0.9941334183, + "368": -0.9963130619, + "369": -0.9969099445, + "370": -0.9976932132, + "371": -0.9983044306, + "372": -0.9986923666, + "373": -0.9996008731, + "374": -0.9998739161, + "375": -0.9996544713, + "376": -0.9993549943, + "377": -0.9993007351, + "378": -0.9989532716, + "379": -0.9988838611, + "380": -0.9976650063, + "381": -0.9964967123, + "382": -0.9959107731, + "383": -0.994425097, + "384": -0.9938948648, + "385": -0.9917702235, + "386": -0.9897145461, + "387": -0.9885531379, + "388": -0.9860235228, + "389": -0.9849333352, + "390": -0.9819883328, + "391": -0.9790385919, + "392": -0.9772548125, + "393": -0.9737829846, + "394": -0.9720341917, + "395": -0.9683573646, + "396": -0.9645108753, + "397": -0.962061229, + "398": -0.9577506004, + "399": -0.9552498867, + "400": -0.9509294344, + "401": -0.9461885281, + "402": -0.9430341161, + "403": -0.937987137, + "404": -0.9346495219, + "405": -0.9297709146, + "406": -0.9241433916, + "407": -0.9202512951, + "408": -0.914566797, + "409": -0.9103185225, + "410": -0.9049622148, + "411": -0.8984617574, + "412": -0.8938062936, + "413": -0.8875770318, + "414": -0.8823581927, + "415": -0.8765975346, + "416": -0.8692440513, + "417": -0.8638078807, + "418": -0.8571183276, + "419": -0.8508851855, + "420": -0.8447845776, + "421": -0.8366044646, + "422": -0.830379521, + "423": -0.8233039636, + "424": -0.8160308801, + "425": -0.8096442211, + "426": -0.800670534, + "427": -0.7936587603, + "428": -0.7862597395, + "429": -0.7779406938, + "430": -0.7713101513, + "431": -0.761582673, + "432": -0.7537965407, + "433": -0.7461236702, + "434": -0.73677331, + "435": -0.7299284503, + "436": -0.7194936494, + "437": -0.7109564555, + "438": -0.7030456398, + "439": -0.6926998504, + "440": -0.685657139, + "441": -0.6745680234, + "442": -0.6653139499, + "443": -0.6571870249, + "444": -0.6459029941, + "445": -0.6386656874, + "446": -0.6269815372, + "447": -0.6170554629, + "448": -0.6087202741, + "449": -0.5965760252, + "450": -0.5891344675, + "451": -0.576920445, + "452": -0.5663775476, + "453": -0.5578284248, + "454": -0.5449218785, + "455": -0.5372541613, + "456": -0.5245808295, + "457": -0.5134859327, + "458": -0.5047046019, + "459": -0.491152121, + "460": -0.4832251368, + "461": -0.470167856, + "462": -0.4585945652, + "463": -0.4495514494, + "464": -0.4354859155, + "465": -0.4272567666, + "466": -0.4138949841, + "467": -0.4019246465, + "468": -0.3925804969, + "469": -0.3781489957, + "470": -0.3695779828, + "471": -0.3558921458, + "472": -0.34387723, + "473": -0.3337965914, + "474": -0.3195868051, + "475": -0.3102195292, + "476": -0.2966014196, + "477": -0.2844486583, + "478": -0.2736608788, + "479": -0.2598266818, + "480": -0.2495741953, + "481": -0.2361996563, + "482": -0.2238295996, + "483": -0.2125159638, + "484": -0.1989780568, + "485": -0.1880015135, + "486": -0.1748267853, + "487": -0.1623311218, + "488": -0.1505543919, + "489": -0.1373122204, + "490": -0.1257253066, + "491": -0.1127386276, + "492": -0.1001839716, + "493": -0.0880313069, + "494": -0.0750632781, + "495": -0.0629987686, + "496": -0.0501764255, + "497": -0.0376332303, + "498": -0.0251958987, + "499": -0.012473343, + "500": -0.0000728938 + }, + "pressure_in": { + "0": 0.1000350609, + "1": 0.1000876041, + "2": 0.1006132886, + "3": 0.1013755078, + "4": 0.102492565, + "5": 0.1039053084, + "6": 0.1056366639, + "7": 0.1076746032, + "8": 0.1100285535, + "9": 0.1126938012, + "10": 0.1156727031, + "11": 0.118941192, + "12": 0.1225107096, + "13": 0.1263914721, + "14": 0.1305783715, + "15": 0.1350739617, + "16": 0.1398313538, + "17": 0.144868218, + "18": 0.1502159421, + "19": 0.1558588321, + "20": 0.1618047351, + "21": 0.167978052, + "22": 0.1743949807, + "23": 0.1811260958, + "24": 0.18813611, + "25": 0.195442667, + "26": 0.2029389722, + "27": 0.2106252081, + "28": 0.218634662, + "29": 0.2269006904, + "30": 0.235456615, + "31": 0.2441642626, + "32": 0.2529874531, + "33": 0.2621503281, + "34": 0.2715408168, + "35": 0.2812149546, + "36": 0.291005231, + "37": 0.3008136033, + "38": 0.310987071, + "39": 0.3213521342, + "40": 0.331995543, + "41": 0.3427245537, + "42": 0.3533494131, + "43": 0.3643749687, + "44": 0.3755487967, + "45": 0.386997109, + "46": 0.3985078883, + "47": 0.409766396, + "48": 0.4214723379, + "49": 0.4332758612, + "50": 0.4453518922, + "51": 0.4574767028, + "52": 0.4691748881, + "53": 0.4813790027, + "54": 0.4936227692, + "55": 0.5061393264, + "56": 0.5187021171, + "57": 0.5306380723, + "58": 0.5431504818, + "59": 0.5556377007, + "60": 0.5684005513, + "61": 0.5812195365, + "62": 0.5931867478, + "63": 0.6058128802, + "64": 0.6183425861, + "65": 0.6311535393, + "66": 0.6440438642, + "67": 0.6558346115, + "68": 0.6683782396, + "69": 0.6807485195, + "70": 0.6934085657, + "71": 0.7061268208, + "72": 0.7176228989, + "73": 0.7298455659, + "74": 0.7418786309, + "75": 0.7541801893, + "76": 0.7665211934, + "77": 0.7775616566, + "78": 0.7892535374, + "79": 0.8007650173, + "80": 0.8125120056, + "81": 0.8242865477, + "82": 0.8346999407, + "83": 0.8456683534, + "84": 0.8564776518, + "85": 0.8674849029, + "86": 0.8785115731, + "87": 0.8881370633, + "88": 0.8982003382, + "89": 0.9081381089, + "90": 0.9182320198, + "91": 0.9283412486, + "92": 0.9370303963, + "93": 0.9460211647, + "94": 0.9549318108, + "95": 0.9639532062, + "96": 0.9729899149, + "97": 0.9806088602, + "98": 0.9883768091, + "99": 0.9961209168, + "100": 1.0039276059, + "101": 1.0117536649, + "102": 1.0181850848, + "103": 1.0245994402, + "104": 1.0310559561, + "105": 1.03752502, + "106": 1.0440214381, + "107": 1.0491662583, + "108": 1.0541179465, + "109": 1.0591860654, + "110": 1.0642158337, + "111": 1.0692846421, + "112": 1.0730634842, + "113": 1.0764669352, + "114": 1.0800676734, + "115": 1.0835793597, + "116": 1.0871451637, + "117": 1.0894995031, + "118": 1.0912940691, + "119": 1.0933714961, + "120": 1.095310467, + "121": 1.0973216404, + "122": 1.0982146587, + "123": 1.0983656186, + "124": 1.0988877269, + "125": 1.0992243803, + "126": 1.0996538804, + "127": 1.0990710018, + "128": 1.0975701411, + "129": 1.0965293437, + "130": 1.0952595868, + "131": 1.0941053818, + "132": 1.0920544848, + "133": 1.0889202389, + "134": 1.0863334854, + "135": 1.0834788038, + "136": 1.0807639042, + "137": 1.0772752033, + "138": 1.0725523591, + "139": 1.0684608668, + "140": 1.0640679788, + "141": 1.0598400689, + "142": 1.0549656724, + "143": 1.0487246389, + "144": 1.0431932466, + "145": 1.0373333564, + "146": 1.031664038, + "147": 1.0254771846, + "148": 1.0178128358, + "149": 1.0109289865, + "150": 1.0036966393, + "151": 0.9966802928, + "152": 0.9892742796, + "153": 0.9803044001, + "154": 0.9721767728, + "155": 0.9636883385, + "156": 0.9554406268, + "157": 0.9469274449, + "158": 0.936790793, + "159": 0.927547602, + "160": 0.9179394064, + "161": 0.908595439, + "162": 0.8991041355, + "163": 0.8879581608, + "164": 0.8777451495, + "165": 0.8671712842, + "166": 0.8568834736, + "167": 0.8465582633, + "168": 0.8345765156, + "169": 0.8235546766, + "170": 0.8121845233, + "171": 0.8011201672, + "172": 0.7900345525, + "173": 0.7775294802, + "174": 0.7658097107, + "175": 0.753856634, + "176": 0.7421795552, + "177": 0.7305238217, + "178": 0.7176668533, + "179": 0.70544566, + "180": 0.6930948738, + "181": 0.6809971787, + "182": 0.6689612326, + "183": 0.6559342849, + "184": 0.6434135356, + "185": 0.6308577125, + "186": 0.6185374516, + "187": 0.606317435, + "188": 0.5933054275, + "189": 0.5806914287, + "190": 0.5681264836, + "191": 0.5557850696, + "192": 0.543579948, + "193": 0.5307682411, + "194": 0.5182682585, + "195": 0.5058903232, + "196": 0.4937292736, + "197": 0.4817376904, + "198": 0.4693093663, + "199": 0.457128212, + "200": 0.4451305718, + "201": 0.4333482737, + "202": 0.4217654037, + "203": 0.40989858, + "204": 0.39823523, + "205": 0.3868053007, + "206": 0.3755938186, + "207": 0.3646082704, + "208": 0.3534734934, + "209": 0.3425178057, + "210": 0.3318342067, + "211": 0.3213761965, + "212": 0.3111670252, + "213": 0.3009247712, + "214": 0.2908543511, + "215": 0.2810841143, + "216": 0.271549886, + "217": 0.2622837537, + "218": 0.2530820806, + "219": 0.2440593492, + "220": 0.2353553117, + "221": 0.226900092, + "222": 0.2187286281, + "223": 0.2107010064, + "224": 0.2028705167, + "225": 0.1953689327, + "226": 0.1881303676, + "227": 0.1811877649, + "228": 0.1744511245, + "229": 0.1679371725, + "230": 0.1617555869, + "231": 0.1558515288, + "232": 0.1502524176, + "233": 0.1449054351, + "234": 0.1398100041, + "235": 0.1350454175, + "236": 0.130572029, + "237": 0.1264096616, + "238": 0.1225313149, + "239": 0.1189323879, + "240": 0.1156597436, + "241": 0.1126899505, + "242": 0.1100347244, + "243": 0.1076831352, + "244": 0.1056334008, + "245": 0.103904416, + "246": 0.1024867334, + "247": 0.1013850767, + "248": 0.1005966571, + "249": 0.1001226332, + "250": 0.0999649935, + "251": 0.0999122628, + "252": 0.0993861158, + "253": 0.0986234546, + "254": 0.0975087385, + "255": 0.0960983729, + "256": 0.094364155, + "257": 0.0923201863, + "258": 0.0899614042, + "259": 0.0873113343, + "260": 0.0843409157, + "261": 0.0810646789, + "262": 0.0774753587, + "263": 0.0735790078, + "264": 0.069432535, + "265": 0.064954503, + "266": 0.0601856304, + "267": 0.0551055579, + "268": 0.0497244652, + "269": 0.0441585065, + "270": 0.0382424421, + "271": 0.0320577198, + "272": 0.0255636158, + "273": 0.018780492, + "274": 0.0118836737, + "275": 0.004627707, + "276": -0.0028761573, + "277": -0.0106835446, + "278": -0.0187666421, + "279": -0.026883026, + "280": -0.0353599627, + "281": -0.0440647877, + "282": -0.0530638333, + "283": -0.0623239333, + "284": -0.0715315788, + "285": -0.0810897026, + "286": -0.0908586875, + "287": -0.100908342, + "288": -0.1112037619, + "289": -0.1213591198, + "290": -0.1318401617, + "291": -0.1425199949, + "292": -0.1534620656, + "293": -0.1646346508, + "294": -0.1755810443, + "295": -0.1868108559, + "296": -0.1982341161, + "297": -0.2098958095, + "298": -0.2217734438, + "299": -0.2333433695, + "300": -0.2451347921, + "301": -0.2571225654, + "302": -0.2693192624, + "303": -0.2817185966, + "304": -0.2937361859, + "305": -0.3058921354, + "306": -0.318256814, + "307": -0.3307950375, + "308": -0.3435243979, + "309": -0.3558079967, + "310": -0.3681247122, + "311": -0.3806729273, + "312": -0.3933534506, + "313": -0.4062158777, + "314": -0.4185807126, + "315": -0.4308511174, + "316": -0.4433867625, + "317": -0.4560078128, + "318": -0.4688041859, + "319": -0.4810650719, + "320": -0.4930821874, + "321": -0.5054094828, + "322": -0.5177699828, + "323": -0.5303021752, + "324": -0.542276231, + "325": -0.5538365904, + "326": -0.5657631423, + "327": -0.5776659422, + "328": -0.5897399624, + "329": -0.6012492912, + "330": -0.6121562998, + "331": -0.6234961086, + "332": -0.6347511573, + "333": -0.646180226, + "334": -0.6570545226, + "335": -0.6671216991, + "336": -0.6776980633, + "337": -0.6881254614, + "338": -0.6987329703, + "339": -0.7088120168, + "340": -0.7178660749, + "341": -0.727514353, + "342": -0.736947247, + "343": -0.7465695589, + "344": -0.7557055745, + "345": -0.7635892827, + "346": -0.7721594636, + "347": -0.7804467273, + "348": -0.7889357687, + "349": -0.796995576, + "350": -0.8035703581, + "351": -0.8109294046, + "352": -0.8179380706, + "353": -0.8251636787, + "354": -0.8320306583, + "355": -0.8371788835, + "356": -0.8432128087, + "357": -0.8488302066, + "358": -0.8546821909, + "359": -0.8602579937, + "360": -0.8638849261, + "361": -0.8685005739, + "362": -0.8726361442, + "363": -0.8770260335, + "364": -0.881232028, + "365": -0.8832673924, + "366": -0.8863938898, + "367": -0.8889806388, + "368": -0.89184308, + "369": -0.8945734931, + "370": -0.8950446706, + "371": -0.8965985226, + "372": -0.8976121096, + "373": -0.8988969013, + "374": -0.9000471629, + "375": -0.8990432002, + "376": -0.8989473946, + "377": -0.8983976296, + "378": -0.8980749635, + "379": -0.8976388672, + "380": -0.8951635569, + "381": -0.8934215447, + "382": -0.8913158578, + "383": -0.8893949827, + "384": -0.887384676, + "385": -0.8834675575, + "386": -0.880107667, + "387": -0.8764787541, + "388": -0.8729939441, + "389": -0.8694466744, + "390": -0.8641391175, + "391": -0.8592158249, + "392": -0.8541202649, + "393": -0.8491307034, + "394": -0.8441080074, + "395": -0.8374825579, + "396": -0.831075542, + "397": -0.8245929375, + "398": -0.8181817556, + "399": -0.8117684906, + "400": -0.8039177924, + "401": -0.7961306248, + "402": -0.7883623526, + "403": -0.7806352934, + "404": -0.7729382884, + "405": -0.7639737176, + "406": -0.7549321594, + "407": -0.745999783, + "408": -0.7370835038, + "409": -0.728229864, + "410": -0.7182798897, + "411": -0.7081298217, + "412": -0.6981731886, + "413": -0.6882132261, + "414": -0.6783483164, + "415": -0.6675566126, + "416": -0.656461634, + "417": -0.6456366882, + "418": -0.6347951215, + "419": -0.6240802608, + "420": -0.612603596, + "421": -0.6007423282, + "422": -0.5892186698, + "423": -0.5776715146, + "424": -0.5662814158, + "425": -0.5542873533, + "426": -0.541850499, + "427": -0.529808733, + "428": -0.5177431153, + "429": -0.5058631158, + "430": -0.4935275552, + "431": -0.4807147544, + "432": -0.4683436658, + "433": -0.4559548132, + "434": -0.4437779348, + "435": -0.4312825325, + "436": -0.4182990714, + "437": -0.4057926738, + "438": -0.3932807785, + "439": -0.3810046662, + "440": -0.3685341733, + "441": -0.355587602, + "442": -0.3431421064, + "443": -0.3307091095, + "444": -0.3185328997, + "445": -0.3062724529, + "446": -0.2935691584, + "447": -0.2813799044, + "448": -0.2692262467, + "449": -0.2573474075, + "450": -0.2454798148, + "451": -0.2332216192, + "452": -0.2214800235, + "453": -0.2098014263, + "454": -0.1984126283, + "455": -0.1871156889, + "456": -0.1754965185, + "457": -0.1643870842, + "458": -0.1533714024, + "459": -0.1426574649, + "460": -0.1321013619, + "461": -0.1213040442, + "462": -0.1110014771, + "463": -0.100825678, + "464": -0.0909606382, + "465": -0.0813054409, + "466": -0.071498687, + "467": -0.0621651674, + "468": -0.0529924865, + "469": -0.0441368421, + "470": -0.0355201355, + "471": -0.0268707822, + "472": -0.0186459143, + "473": -0.0106269872, + "474": -0.0029232731, + "475": 0.004519864, + "476": 0.0118816443, + "477": 0.0188669874, + "478": 0.0256045568, + "479": 0.0320300208, + "480": 0.0381755453, + "481": 0.0441505918, + "482": 0.0497802179, + "483": 0.0551319583, + "484": 0.0601720456, + "485": 0.0649173636, + "486": 0.0694258239, + "487": 0.0736067138, + "488": 0.0774896296, + "489": 0.0810597732, + "490": 0.0843245436, + "491": 0.0873074442, + "492": 0.0899710854, + "493": 0.0923250534, + "494": 0.0943645552, + "495": 0.0960919872, + "496": 0.0975120735, + "497": 0.0986156006, + "498": 0.099404302, + "499": 0.099877311, + "500": 0.1000350609 + }, + "pressure_out": { + "0": 0.1, + "1": 0.1, + "2": 0.1, + "3": 0.1, + "4": 0.1, + "5": 0.1, + "6": 0.1, + "7": 0.1, + "8": 0.1, + "9": 0.1, + "10": 0.1, + "11": 0.1, + "12": 0.1, + "13": 0.1, + "14": 0.1, + "15": 0.1, + "16": 0.1, + "17": 0.1, + "18": 0.1, + "19": 0.1, + "20": 0.1, + "21": 0.1, + "22": 0.1, + "23": 0.1, + "24": 0.1, + "25": 0.1, + "26": 0.1, + "27": 0.1, + "28": 0.1, + "29": 0.1, + "30": 0.1, + "31": 0.1, + "32": 0.1, + "33": 0.1, + "34": 0.1, + "35": 0.1, + "36": 0.1, + "37": 0.1, + "38": 0.1, + "39": 0.1, + "40": 0.1, + "41": 0.1, + "42": 0.1, + "43": 0.1, + "44": 0.1, + "45": 0.1, + "46": 0.1, + "47": 0.1, + "48": 0.1, + "49": 0.1, + "50": 0.1, + "51": 0.1, + "52": 0.1, + "53": 0.1, + "54": 0.1, + "55": 0.1, + "56": 0.1, + "57": 0.1, + "58": 0.1, + "59": 0.1, + "60": 0.1, + "61": 0.1, + "62": 0.1, + "63": 0.1, + "64": 0.1, + "65": 0.1, + "66": 0.1, + "67": 0.1, + "68": 0.1, + "69": 0.1, + "70": 0.1, + "71": 0.1, + "72": 0.1, + "73": 0.1, + "74": 0.1, + "75": 0.1, + "76": 0.1, + "77": 0.1, + "78": 0.1, + "79": 0.1, + "80": 0.1, + "81": 0.1, + "82": 0.1, + "83": 0.1, + "84": 0.1, + "85": 0.1, + "86": 0.1, + "87": 0.1, + "88": 0.1, + "89": 0.1, + "90": 0.1, + "91": 0.1, + "92": 0.1, + "93": 0.1, + "94": 0.1, + "95": 0.1, + "96": 0.1, + "97": 0.1, + "98": 0.1, + "99": 0.1, + "100": 0.1, + "101": 0.1, + "102": 0.1, + "103": 0.1, + "104": 0.1, + "105": 0.1, + "106": 0.1, + "107": 0.1, + "108": 0.1, + "109": 0.1, + "110": 0.1, + "111": 0.1, + "112": 0.1, + "113": 0.1, + "114": 0.1, + "115": 0.1, + "116": 0.1, + "117": 0.1, + "118": 0.1, + "119": 0.1, + "120": 0.1, + "121": 0.1, + "122": 0.1, + "123": 0.1, + "124": 0.1, + "125": 0.1, + "126": 0.1, + "127": 0.1, + "128": 0.1, + "129": 0.1, + "130": 0.1, + "131": 0.1, + "132": 0.1, + "133": 0.1, + "134": 0.1, + "135": 0.1, + "136": 0.1, + "137": 0.1, + "138": 0.1, + "139": 0.1, + "140": 0.1, + "141": 0.1, + "142": 0.1, + "143": 0.1, + "144": 0.1, + "145": 0.1, + "146": 0.1, + "147": 0.1, + "148": 0.1, + "149": 0.1, + "150": 0.1, + "151": 0.1, + "152": 0.1, + "153": 0.1, + "154": 0.1, + "155": 0.1, + "156": 0.1, + "157": 0.1, + "158": 0.1, + "159": 0.1, + "160": 0.1, + "161": 0.1, + "162": 0.1, + "163": 0.1, + "164": 0.1, + "165": 0.1, + "166": 0.1, + "167": 0.1, + "168": 0.1, + "169": 0.1, + "170": 0.1, + "171": 0.1, + "172": 0.1, + "173": 0.1, + "174": 0.1, + "175": 0.1, + "176": 0.1, + "177": 0.1, + "178": 0.1, + "179": 0.1, + "180": 0.1, + "181": 0.1, + "182": 0.1, + "183": 0.1, + "184": 0.1, + "185": 0.1, + "186": 0.1, + "187": 0.1, + "188": 0.1, + "189": 0.1, + "190": 0.1, + "191": 0.1, + "192": 0.1, + "193": 0.1, + "194": 0.1, + "195": 0.1, + "196": 0.1, + "197": 0.1, + "198": 0.1, + "199": 0.1, + "200": 0.1, + "201": 0.1, + "202": 0.1, + "203": 0.1, + "204": 0.1, + "205": 0.1, + "206": 0.1, + "207": 0.1, + "208": 0.1, + "209": 0.1, + "210": 0.1, + "211": 0.1, + "212": 0.1, + "213": 0.1, + "214": 0.1, + "215": 0.1, + "216": 0.1, + "217": 0.1, + "218": 0.1, + "219": 0.1, + "220": 0.1, + "221": 0.1, + "222": 0.1, + "223": 0.1, + "224": 0.1, + "225": 0.1, + "226": 0.1, + "227": 0.1, + "228": 0.1, + "229": 0.1, + "230": 0.1, + "231": 0.1, + "232": 0.1, + "233": 0.1, + "234": 0.1, + "235": 0.1, + "236": 0.1, + "237": 0.1, + "238": 0.1, + "239": 0.1, + "240": 0.1, + "241": 0.1, + "242": 0.1, + "243": 0.1, + "244": 0.1, + "245": 0.1, + "246": 0.1, + "247": 0.1, + "248": 0.1, + "249": 0.1, + "250": 0.1, + "251": 0.1, + "252": 0.1, + "253": 0.1, + "254": 0.1, + "255": 0.1, + "256": 0.1, + "257": 0.1, + "258": 0.1, + "259": 0.1, + "260": 0.1, + "261": 0.1, + "262": 0.1, + "263": 0.1, + "264": 0.1, + "265": 0.1, + "266": 0.1, + "267": 0.1, + "268": 0.1, + "269": 0.1, + "270": 0.1, + "271": 0.1, + "272": 0.1, + "273": 0.1, + "274": 0.1, + "275": 0.1, + "276": 0.1, + "277": 0.1, + "278": 0.1, + "279": 0.1, + "280": 0.1, + "281": 0.1, + "282": 0.1, + "283": 0.1, + "284": 0.1, + "285": 0.1, + "286": 0.1, + "287": 0.1, + "288": 0.1, + "289": 0.1, + "290": 0.1, + "291": 0.1, + "292": 0.1, + "293": 0.1, + "294": 0.1, + "295": 0.1, + "296": 0.1, + "297": 0.1, + "298": 0.1, + "299": 0.1, + "300": 0.1, + "301": 0.1, + "302": 0.1, + "303": 0.1, + "304": 0.1, + "305": 0.1, + "306": 0.1, + "307": 0.1, + "308": 0.1, + "309": 0.1, + "310": 0.1, + "311": 0.1, + "312": 0.1, + "313": 0.1, + "314": 0.1, + "315": 0.1, + "316": 0.1, + "317": 0.1, + "318": 0.1, + "319": 0.1, + "320": 0.1, + "321": 0.1, + "322": 0.1, + "323": 0.1, + "324": 0.1, + "325": 0.1, + "326": 0.1, + "327": 0.1, + "328": 0.1, + "329": 0.1, + "330": 0.1, + "331": 0.1, + "332": 0.1, + "333": 0.1, + "334": 0.1, + "335": 0.1, + "336": 0.1, + "337": 0.1, + "338": 0.1, + "339": 0.1, + "340": 0.1, + "341": 0.1, + "342": 0.1, + "343": 0.1, + "344": 0.1, + "345": 0.1, + "346": 0.1, + "347": 0.1, + "348": 0.1, + "349": 0.1, + "350": 0.1, + "351": 0.1, + "352": 0.1, + "353": 0.1, + "354": 0.1, + "355": 0.1, + "356": 0.1, + "357": 0.1, + "358": 0.1, + "359": 0.1, + "360": 0.1, + "361": 0.1, + "362": 0.1, + "363": 0.1, + "364": 0.1, + "365": 0.1, + "366": 0.1, + "367": 0.1, + "368": 0.1, + "369": 0.1, + "370": 0.1, + "371": 0.1, + "372": 0.1, + "373": 0.1, + "374": 0.1, + "375": 0.1, + "376": 0.1, + "377": 0.1, + "378": 0.1, + "379": 0.1, + "380": 0.1, + "381": 0.1, + "382": 0.1, + "383": 0.1, + "384": 0.1, + "385": 0.1, + "386": 0.1, + "387": 0.1, + "388": 0.1, + "389": 0.1, + "390": 0.1, + "391": 0.1, + "392": 0.1, + "393": 0.1, + "394": 0.1, + "395": 0.1, + "396": 0.1, + "397": 0.1, + "398": 0.1, + "399": 0.1, + "400": 0.1, + "401": 0.1, + "402": 0.1, + "403": 0.1, + "404": 0.1, + "405": 0.1, + "406": 0.1, + "407": 0.1, + "408": 0.1, + "409": 0.1, + "410": 0.1, + "411": 0.1, + "412": 0.1, + "413": 0.1, + "414": 0.1, + "415": 0.1, + "416": 0.1, + "417": 0.1, + "418": 0.1, + "419": 0.1, + "420": 0.1, + "421": 0.1, + "422": 0.1, + "423": 0.1, + "424": 0.1, + "425": 0.1, + "426": 0.1, + "427": 0.1, + "428": 0.1, + "429": 0.1, + "430": 0.1, + "431": 0.1, + "432": 0.1, + "433": 0.1, + "434": 0.1, + "435": 0.1, + "436": 0.1, + "437": 0.1, + "438": 0.1, + "439": 0.1, + "440": 0.1, + "441": 0.1, + "442": 0.1, + "443": 0.1, + "444": 0.1, + "445": 0.1, + "446": 0.1, + "447": 0.1, + "448": 0.1, + "449": 0.1, + "450": 0.1, + "451": 0.1, + "452": 0.1, + "453": 0.1, + "454": 0.1, + "455": 0.1, + "456": 0.1, + "457": 0.1, + "458": 0.1, + "459": 0.1, + "460": 0.1, + "461": 0.1, + "462": 0.1, + "463": 0.1, + "464": 0.1, + "465": 0.1, + "466": 0.1, + "467": 0.1, + "468": 0.1, + "469": 0.1, + "470": 0.1, + "471": 0.1, + "472": 0.1, + "473": 0.1, + "474": 0.1, + "475": 0.1, + "476": 0.1, + "477": 0.1, + "478": 0.1, + "479": 0.1, + "480": 0.1, + "481": 0.1, + "482": 0.1, + "483": 0.1, + "484": 0.1, + "485": 0.1, + "486": 0.1, + "487": 0.1, + "488": 0.1, + "489": 0.1, + "490": 0.1, + "491": 0.1, + "492": 0.1, + "493": 0.1, + "494": 0.1, + "495": 0.1, + "496": 0.1, + "497": 0.1, + "498": 0.1, + "499": 0.1, + "500": 0.1 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_R_RCR.json b/tests/cases/results/result_pulsatileFlow_R_RCR.json index 7b13598fa..82ba4cf81 100644 --- a/tests/cases/results/result_pulsatileFlow_R_RCR.json +++ b/tests/cases/results/result_pulsatileFlow_R_RCR.json @@ -1 +1,12020 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0","101":"branch0_seg0","102":"branch0_seg0","103":"branch0_seg0","104":"branch0_seg0","105":"branch0_seg0","106":"branch0_seg0","107":"branch0_seg0","108":"branch0_seg0","109":"branch0_seg0","110":"branch0_seg0","111":"branch0_seg0","112":"branch0_seg0","113":"branch0_seg0","114":"branch0_seg0","115":"branch0_seg0","116":"branch0_seg0","117":"branch0_seg0","118":"branch0_seg0","119":"branch0_seg0","120":"branch0_seg0","121":"branch0_seg0","122":"branch0_seg0","123":"branch0_seg0","124":"branch0_seg0","125":"branch0_seg0","126":"branch0_seg0","127":"branch0_seg0","128":"branch0_seg0","129":"branch0_seg0","130":"branch0_seg0","131":"branch0_seg0","132":"branch0_seg0","133":"branch0_seg0","134":"branch0_seg0","135":"branch0_seg0","136":"branch0_seg0","137":"branch0_seg0","138":"branch0_seg0","139":"branch0_seg0","140":"branch0_seg0","141":"branch0_seg0","142":"branch0_seg0","143":"branch0_seg0","144":"branch0_seg0","145":"branch0_seg0","146":"branch0_seg0","147":"branch0_seg0","148":"branch0_seg0","149":"branch0_seg0","150":"branch0_seg0","151":"branch0_seg0","152":"branch0_seg0","153":"branch0_seg0","154":"branch0_seg0","155":"branch0_seg0","156":"branch0_seg0","157":"branch0_seg0","158":"branch0_seg0","159":"branch0_seg0","160":"branch0_seg0","161":"branch0_seg0","162":"branch0_seg0","163":"branch0_seg0","164":"branch0_seg0","165":"branch0_seg0","166":"branch0_seg0","167":"branch0_seg0","168":"branch0_seg0","169":"branch0_seg0","170":"branch0_seg0","171":"branch0_seg0","172":"branch0_seg0","173":"branch0_seg0","174":"branch0_seg0","175":"branch0_seg0","176":"branch0_seg0","177":"branch0_seg0","178":"branch0_seg0","179":"branch0_seg0","180":"branch0_seg0","181":"branch0_seg0","182":"branch0_seg0","183":"branch0_seg0","184":"branch0_seg0","185":"branch0_seg0","186":"branch0_seg0","187":"branch0_seg0","188":"branch0_seg0","189":"branch0_seg0","190":"branch0_seg0","191":"branch0_seg0","192":"branch0_seg0","193":"branch0_seg0","194":"branch0_seg0","195":"branch0_seg0","196":"branch0_seg0","197":"branch0_seg0","198":"branch0_seg0","199":"branch0_seg0","200":"branch0_seg0","201":"branch0_seg0","202":"branch0_seg0","203":"branch0_seg0","204":"branch0_seg0","205":"branch0_seg0","206":"branch0_seg0","207":"branch0_seg0","208":"branch0_seg0","209":"branch0_seg0","210":"branch0_seg0","211":"branch0_seg0","212":"branch0_seg0","213":"branch0_seg0","214":"branch0_seg0","215":"branch0_seg0","216":"branch0_seg0","217":"branch0_seg0","218":"branch0_seg0","219":"branch0_seg0","220":"branch0_seg0","221":"branch0_seg0","222":"branch0_seg0","223":"branch0_seg0","224":"branch0_seg0","225":"branch0_seg0","226":"branch0_seg0","227":"branch0_seg0","228":"branch0_seg0","229":"branch0_seg0","230":"branch0_seg0","231":"branch0_seg0","232":"branch0_seg0","233":"branch0_seg0","234":"branch0_seg0","235":"branch0_seg0","236":"branch0_seg0","237":"branch0_seg0","238":"branch0_seg0","239":"branch0_seg0","240":"branch0_seg0","241":"branch0_seg0","242":"branch0_seg0","243":"branch0_seg0","244":"branch0_seg0","245":"branch0_seg0","246":"branch0_seg0","247":"branch0_seg0","248":"branch0_seg0","249":"branch0_seg0","250":"branch0_seg0","251":"branch0_seg0","252":"branch0_seg0","253":"branch0_seg0","254":"branch0_seg0","255":"branch0_seg0","256":"branch0_seg0","257":"branch0_seg0","258":"branch0_seg0","259":"branch0_seg0","260":"branch0_seg0","261":"branch0_seg0","262":"branch0_seg0","263":"branch0_seg0","264":"branch0_seg0","265":"branch0_seg0","266":"branch0_seg0","267":"branch0_seg0","268":"branch0_seg0","269":"branch0_seg0","270":"branch0_seg0","271":"branch0_seg0","272":"branch0_seg0","273":"branch0_seg0","274":"branch0_seg0","275":"branch0_seg0","276":"branch0_seg0","277":"branch0_seg0","278":"branch0_seg0","279":"branch0_seg0","280":"branch0_seg0","281":"branch0_seg0","282":"branch0_seg0","283":"branch0_seg0","284":"branch0_seg0","285":"branch0_seg0","286":"branch0_seg0","287":"branch0_seg0","288":"branch0_seg0","289":"branch0_seg0","290":"branch0_seg0","291":"branch0_seg0","292":"branch0_seg0","293":"branch0_seg0","294":"branch0_seg0","295":"branch0_seg0","296":"branch0_seg0","297":"branch0_seg0","298":"branch0_seg0","299":"branch0_seg0","300":"branch0_seg0","301":"branch0_seg0","302":"branch0_seg0","303":"branch0_seg0","304":"branch0_seg0","305":"branch0_seg0","306":"branch0_seg0","307":"branch0_seg0","308":"branch0_seg0","309":"branch0_seg0","310":"branch0_seg0","311":"branch0_seg0","312":"branch0_seg0","313":"branch0_seg0","314":"branch0_seg0","315":"branch0_seg0","316":"branch0_seg0","317":"branch0_seg0","318":"branch0_seg0","319":"branch0_seg0","320":"branch0_seg0","321":"branch0_seg0","322":"branch0_seg0","323":"branch0_seg0","324":"branch0_seg0","325":"branch0_seg0","326":"branch0_seg0","327":"branch0_seg0","328":"branch0_seg0","329":"branch0_seg0","330":"branch0_seg0","331":"branch0_seg0","332":"branch0_seg0","333":"branch0_seg0","334":"branch0_seg0","335":"branch0_seg0","336":"branch0_seg0","337":"branch0_seg0","338":"branch0_seg0","339":"branch0_seg0","340":"branch0_seg0","341":"branch0_seg0","342":"branch0_seg0","343":"branch0_seg0","344":"branch0_seg0","345":"branch0_seg0","346":"branch0_seg0","347":"branch0_seg0","348":"branch0_seg0","349":"branch0_seg0","350":"branch0_seg0","351":"branch0_seg0","352":"branch0_seg0","353":"branch0_seg0","354":"branch0_seg0","355":"branch0_seg0","356":"branch0_seg0","357":"branch0_seg0","358":"branch0_seg0","359":"branch0_seg0","360":"branch0_seg0","361":"branch0_seg0","362":"branch0_seg0","363":"branch0_seg0","364":"branch0_seg0","365":"branch0_seg0","366":"branch0_seg0","367":"branch0_seg0","368":"branch0_seg0","369":"branch0_seg0","370":"branch0_seg0","371":"branch0_seg0","372":"branch0_seg0","373":"branch0_seg0","374":"branch0_seg0","375":"branch0_seg0","376":"branch0_seg0","377":"branch0_seg0","378":"branch0_seg0","379":"branch0_seg0","380":"branch0_seg0","381":"branch0_seg0","382":"branch0_seg0","383":"branch0_seg0","384":"branch0_seg0","385":"branch0_seg0","386":"branch0_seg0","387":"branch0_seg0","388":"branch0_seg0","389":"branch0_seg0","390":"branch0_seg0","391":"branch0_seg0","392":"branch0_seg0","393":"branch0_seg0","394":"branch0_seg0","395":"branch0_seg0","396":"branch0_seg0","397":"branch0_seg0","398":"branch0_seg0","399":"branch0_seg0","400":"branch0_seg0","401":"branch0_seg0","402":"branch0_seg0","403":"branch0_seg0","404":"branch0_seg0","405":"branch0_seg0","406":"branch0_seg0","407":"branch0_seg0","408":"branch0_seg0","409":"branch0_seg0","410":"branch0_seg0","411":"branch0_seg0","412":"branch0_seg0","413":"branch0_seg0","414":"branch0_seg0","415":"branch0_seg0","416":"branch0_seg0","417":"branch0_seg0","418":"branch0_seg0","419":"branch0_seg0","420":"branch0_seg0","421":"branch0_seg0","422":"branch0_seg0","423":"branch0_seg0","424":"branch0_seg0","425":"branch0_seg0","426":"branch0_seg0","427":"branch0_seg0","428":"branch0_seg0","429":"branch0_seg0","430":"branch0_seg0","431":"branch0_seg0","432":"branch0_seg0","433":"branch0_seg0","434":"branch0_seg0","435":"branch0_seg0","436":"branch0_seg0","437":"branch0_seg0","438":"branch0_seg0","439":"branch0_seg0","440":"branch0_seg0","441":"branch0_seg0","442":"branch0_seg0","443":"branch0_seg0","444":"branch0_seg0","445":"branch0_seg0","446":"branch0_seg0","447":"branch0_seg0","448":"branch0_seg0","449":"branch0_seg0","450":"branch0_seg0","451":"branch0_seg0","452":"branch0_seg0","453":"branch0_seg0","454":"branch0_seg0","455":"branch0_seg0","456":"branch0_seg0","457":"branch0_seg0","458":"branch0_seg0","459":"branch0_seg0","460":"branch0_seg0","461":"branch0_seg0","462":"branch0_seg0","463":"branch0_seg0","464":"branch0_seg0","465":"branch0_seg0","466":"branch0_seg0","467":"branch0_seg0","468":"branch0_seg0","469":"branch0_seg0","470":"branch0_seg0","471":"branch0_seg0","472":"branch0_seg0","473":"branch0_seg0","474":"branch0_seg0","475":"branch0_seg0","476":"branch0_seg0","477":"branch0_seg0","478":"branch0_seg0","479":"branch0_seg0","480":"branch0_seg0","481":"branch0_seg0","482":"branch0_seg0","483":"branch0_seg0","484":"branch0_seg0","485":"branch0_seg0","486":"branch0_seg0","487":"branch0_seg0","488":"branch0_seg0","489":"branch0_seg0","490":"branch0_seg0","491":"branch0_seg0","492":"branch0_seg0","493":"branch0_seg0","494":"branch0_seg0","495":"branch0_seg0","496":"branch0_seg0","497":"branch0_seg0","498":"branch0_seg0","499":"branch0_seg0","500":"branch0_seg0","501":"branch0_seg0","502":"branch0_seg0","503":"branch0_seg0","504":"branch0_seg0","505":"branch0_seg0","506":"branch0_seg0","507":"branch0_seg0","508":"branch0_seg0","509":"branch0_seg0","510":"branch0_seg0","511":"branch0_seg0","512":"branch0_seg0","513":"branch0_seg0","514":"branch0_seg0","515":"branch0_seg0","516":"branch0_seg0","517":"branch0_seg0","518":"branch0_seg0","519":"branch0_seg0","520":"branch0_seg0","521":"branch0_seg0","522":"branch0_seg0","523":"branch0_seg0","524":"branch0_seg0","525":"branch0_seg0","526":"branch0_seg0","527":"branch0_seg0","528":"branch0_seg0","529":"branch0_seg0","530":"branch0_seg0","531":"branch0_seg0","532":"branch0_seg0","533":"branch0_seg0","534":"branch0_seg0","535":"branch0_seg0","536":"branch0_seg0","537":"branch0_seg0","538":"branch0_seg0","539":"branch0_seg0","540":"branch0_seg0","541":"branch0_seg0","542":"branch0_seg0","543":"branch0_seg0","544":"branch0_seg0","545":"branch0_seg0","546":"branch0_seg0","547":"branch0_seg0","548":"branch0_seg0","549":"branch0_seg0","550":"branch0_seg0","551":"branch0_seg0","552":"branch0_seg0","553":"branch0_seg0","554":"branch0_seg0","555":"branch0_seg0","556":"branch0_seg0","557":"branch0_seg0","558":"branch0_seg0","559":"branch0_seg0","560":"branch0_seg0","561":"branch0_seg0","562":"branch0_seg0","563":"branch0_seg0","564":"branch0_seg0","565":"branch0_seg0","566":"branch0_seg0","567":"branch0_seg0","568":"branch0_seg0","569":"branch0_seg0","570":"branch0_seg0","571":"branch0_seg0","572":"branch0_seg0","573":"branch0_seg0","574":"branch0_seg0","575":"branch0_seg0","576":"branch0_seg0","577":"branch0_seg0","578":"branch0_seg0","579":"branch0_seg0","580":"branch0_seg0","581":"branch0_seg0","582":"branch0_seg0","583":"branch0_seg0","584":"branch0_seg0","585":"branch0_seg0","586":"branch0_seg0","587":"branch0_seg0","588":"branch0_seg0","589":"branch0_seg0","590":"branch0_seg0","591":"branch0_seg0","592":"branch0_seg0","593":"branch0_seg0","594":"branch0_seg0","595":"branch0_seg0","596":"branch0_seg0","597":"branch0_seg0","598":"branch0_seg0","599":"branch0_seg0","600":"branch0_seg0","601":"branch0_seg0","602":"branch0_seg0","603":"branch0_seg0","604":"branch0_seg0","605":"branch0_seg0","606":"branch0_seg0","607":"branch0_seg0","608":"branch0_seg0","609":"branch0_seg0","610":"branch0_seg0","611":"branch0_seg0","612":"branch0_seg0","613":"branch0_seg0","614":"branch0_seg0","615":"branch0_seg0","616":"branch0_seg0","617":"branch0_seg0","618":"branch0_seg0","619":"branch0_seg0","620":"branch0_seg0","621":"branch0_seg0","622":"branch0_seg0","623":"branch0_seg0","624":"branch0_seg0","625":"branch0_seg0","626":"branch0_seg0","627":"branch0_seg0","628":"branch0_seg0","629":"branch0_seg0","630":"branch0_seg0","631":"branch0_seg0","632":"branch0_seg0","633":"branch0_seg0","634":"branch0_seg0","635":"branch0_seg0","636":"branch0_seg0","637":"branch0_seg0","638":"branch0_seg0","639":"branch0_seg0","640":"branch0_seg0","641":"branch0_seg0","642":"branch0_seg0","643":"branch0_seg0","644":"branch0_seg0","645":"branch0_seg0","646":"branch0_seg0","647":"branch0_seg0","648":"branch0_seg0","649":"branch0_seg0","650":"branch0_seg0","651":"branch0_seg0","652":"branch0_seg0","653":"branch0_seg0","654":"branch0_seg0","655":"branch0_seg0","656":"branch0_seg0","657":"branch0_seg0","658":"branch0_seg0","659":"branch0_seg0","660":"branch0_seg0","661":"branch0_seg0","662":"branch0_seg0","663":"branch0_seg0","664":"branch0_seg0","665":"branch0_seg0","666":"branch0_seg0","667":"branch0_seg0","668":"branch0_seg0","669":"branch0_seg0","670":"branch0_seg0","671":"branch0_seg0","672":"branch0_seg0","673":"branch0_seg0","674":"branch0_seg0","675":"branch0_seg0","676":"branch0_seg0","677":"branch0_seg0","678":"branch0_seg0","679":"branch0_seg0","680":"branch0_seg0","681":"branch0_seg0","682":"branch0_seg0","683":"branch0_seg0","684":"branch0_seg0","685":"branch0_seg0","686":"branch0_seg0","687":"branch0_seg0","688":"branch0_seg0","689":"branch0_seg0","690":"branch0_seg0","691":"branch0_seg0","692":"branch0_seg0","693":"branch0_seg0","694":"branch0_seg0","695":"branch0_seg0","696":"branch0_seg0","697":"branch0_seg0","698":"branch0_seg0","699":"branch0_seg0","700":"branch0_seg0","701":"branch0_seg0","702":"branch0_seg0","703":"branch0_seg0","704":"branch0_seg0","705":"branch0_seg0","706":"branch0_seg0","707":"branch0_seg0","708":"branch0_seg0","709":"branch0_seg0","710":"branch0_seg0","711":"branch0_seg0","712":"branch0_seg0","713":"branch0_seg0","714":"branch0_seg0","715":"branch0_seg0","716":"branch0_seg0","717":"branch0_seg0","718":"branch0_seg0","719":"branch0_seg0","720":"branch0_seg0","721":"branch0_seg0","722":"branch0_seg0","723":"branch0_seg0","724":"branch0_seg0","725":"branch0_seg0","726":"branch0_seg0","727":"branch0_seg0","728":"branch0_seg0","729":"branch0_seg0","730":"branch0_seg0","731":"branch0_seg0","732":"branch0_seg0","733":"branch0_seg0","734":"branch0_seg0","735":"branch0_seg0","736":"branch0_seg0","737":"branch0_seg0","738":"branch0_seg0","739":"branch0_seg0","740":"branch0_seg0","741":"branch0_seg0","742":"branch0_seg0","743":"branch0_seg0","744":"branch0_seg0","745":"branch0_seg0","746":"branch0_seg0","747":"branch0_seg0","748":"branch0_seg0","749":"branch0_seg0","750":"branch0_seg0","751":"branch0_seg0","752":"branch0_seg0","753":"branch0_seg0","754":"branch0_seg0","755":"branch0_seg0","756":"branch0_seg0","757":"branch0_seg0","758":"branch0_seg0","759":"branch0_seg0","760":"branch0_seg0","761":"branch0_seg0","762":"branch0_seg0","763":"branch0_seg0","764":"branch0_seg0","765":"branch0_seg0","766":"branch0_seg0","767":"branch0_seg0","768":"branch0_seg0","769":"branch0_seg0","770":"branch0_seg0","771":"branch0_seg0","772":"branch0_seg0","773":"branch0_seg0","774":"branch0_seg0","775":"branch0_seg0","776":"branch0_seg0","777":"branch0_seg0","778":"branch0_seg0","779":"branch0_seg0","780":"branch0_seg0","781":"branch0_seg0","782":"branch0_seg0","783":"branch0_seg0","784":"branch0_seg0","785":"branch0_seg0","786":"branch0_seg0","787":"branch0_seg0","788":"branch0_seg0","789":"branch0_seg0","790":"branch0_seg0","791":"branch0_seg0","792":"branch0_seg0","793":"branch0_seg0","794":"branch0_seg0","795":"branch0_seg0","796":"branch0_seg0","797":"branch0_seg0","798":"branch0_seg0","799":"branch0_seg0","800":"branch0_seg0","801":"branch0_seg0","802":"branch0_seg0","803":"branch0_seg0","804":"branch0_seg0","805":"branch0_seg0","806":"branch0_seg0","807":"branch0_seg0","808":"branch0_seg0","809":"branch0_seg0","810":"branch0_seg0","811":"branch0_seg0","812":"branch0_seg0","813":"branch0_seg0","814":"branch0_seg0","815":"branch0_seg0","816":"branch0_seg0","817":"branch0_seg0","818":"branch0_seg0","819":"branch0_seg0","820":"branch0_seg0","821":"branch0_seg0","822":"branch0_seg0","823":"branch0_seg0","824":"branch0_seg0","825":"branch0_seg0","826":"branch0_seg0","827":"branch0_seg0","828":"branch0_seg0","829":"branch0_seg0","830":"branch0_seg0","831":"branch0_seg0","832":"branch0_seg0","833":"branch0_seg0","834":"branch0_seg0","835":"branch0_seg0","836":"branch0_seg0","837":"branch0_seg0","838":"branch0_seg0","839":"branch0_seg0","840":"branch0_seg0","841":"branch0_seg0","842":"branch0_seg0","843":"branch0_seg0","844":"branch0_seg0","845":"branch0_seg0","846":"branch0_seg0","847":"branch0_seg0","848":"branch0_seg0","849":"branch0_seg0","850":"branch0_seg0","851":"branch0_seg0","852":"branch0_seg0","853":"branch0_seg0","854":"branch0_seg0","855":"branch0_seg0","856":"branch0_seg0","857":"branch0_seg0","858":"branch0_seg0","859":"branch0_seg0","860":"branch0_seg0","861":"branch0_seg0","862":"branch0_seg0","863":"branch0_seg0","864":"branch0_seg0","865":"branch0_seg0","866":"branch0_seg0","867":"branch0_seg0","868":"branch0_seg0","869":"branch0_seg0","870":"branch0_seg0","871":"branch0_seg0","872":"branch0_seg0","873":"branch0_seg0","874":"branch0_seg0","875":"branch0_seg0","876":"branch0_seg0","877":"branch0_seg0","878":"branch0_seg0","879":"branch0_seg0","880":"branch0_seg0","881":"branch0_seg0","882":"branch0_seg0","883":"branch0_seg0","884":"branch0_seg0","885":"branch0_seg0","886":"branch0_seg0","887":"branch0_seg0","888":"branch0_seg0","889":"branch0_seg0","890":"branch0_seg0","891":"branch0_seg0","892":"branch0_seg0","893":"branch0_seg0","894":"branch0_seg0","895":"branch0_seg0","896":"branch0_seg0","897":"branch0_seg0","898":"branch0_seg0","899":"branch0_seg0","900":"branch0_seg0","901":"branch0_seg0","902":"branch0_seg0","903":"branch0_seg0","904":"branch0_seg0","905":"branch0_seg0","906":"branch0_seg0","907":"branch0_seg0","908":"branch0_seg0","909":"branch0_seg0","910":"branch0_seg0","911":"branch0_seg0","912":"branch0_seg0","913":"branch0_seg0","914":"branch0_seg0","915":"branch0_seg0","916":"branch0_seg0","917":"branch0_seg0","918":"branch0_seg0","919":"branch0_seg0","920":"branch0_seg0","921":"branch0_seg0","922":"branch0_seg0","923":"branch0_seg0","924":"branch0_seg0","925":"branch0_seg0","926":"branch0_seg0","927":"branch0_seg0","928":"branch0_seg0","929":"branch0_seg0","930":"branch0_seg0","931":"branch0_seg0","932":"branch0_seg0","933":"branch0_seg0","934":"branch0_seg0","935":"branch0_seg0","936":"branch0_seg0","937":"branch0_seg0","938":"branch0_seg0","939":"branch0_seg0","940":"branch0_seg0","941":"branch0_seg0","942":"branch0_seg0","943":"branch0_seg0","944":"branch0_seg0","945":"branch0_seg0","946":"branch0_seg0","947":"branch0_seg0","948":"branch0_seg0","949":"branch0_seg0","950":"branch0_seg0","951":"branch0_seg0","952":"branch0_seg0","953":"branch0_seg0","954":"branch0_seg0","955":"branch0_seg0","956":"branch0_seg0","957":"branch0_seg0","958":"branch0_seg0","959":"branch0_seg0","960":"branch0_seg0","961":"branch0_seg0","962":"branch0_seg0","963":"branch0_seg0","964":"branch0_seg0","965":"branch0_seg0","966":"branch0_seg0","967":"branch0_seg0","968":"branch0_seg0","969":"branch0_seg0","970":"branch0_seg0","971":"branch0_seg0","972":"branch0_seg0","973":"branch0_seg0","974":"branch0_seg0","975":"branch0_seg0","976":"branch0_seg0","977":"branch0_seg0","978":"branch0_seg0","979":"branch0_seg0","980":"branch0_seg0","981":"branch0_seg0","982":"branch0_seg0","983":"branch0_seg0","984":"branch0_seg0","985":"branch0_seg0","986":"branch0_seg0","987":"branch0_seg0","988":"branch0_seg0","989":"branch0_seg0","990":"branch0_seg0","991":"branch0_seg0","992":"branch0_seg0","993":"branch0_seg0","994":"branch0_seg0","995":"branch0_seg0","996":"branch0_seg0","997":"branch0_seg0","998":"branch0_seg0","999":"branch0_seg0","1000":"branch0_seg0","1001":"branch0_seg0","1002":"branch0_seg0","1003":"branch0_seg0","1004":"branch0_seg0","1005":"branch0_seg0","1006":"branch0_seg0","1007":"branch0_seg0","1008":"branch0_seg0","1009":"branch0_seg0","1010":"branch0_seg0","1011":"branch0_seg0","1012":"branch0_seg0","1013":"branch0_seg0","1014":"branch0_seg0","1015":"branch0_seg0","1016":"branch0_seg0","1017":"branch0_seg0","1018":"branch0_seg0","1019":"branch0_seg0","1020":"branch0_seg0","1021":"branch0_seg0","1022":"branch0_seg0","1023":"branch0_seg0","1024":"branch0_seg0","1025":"branch0_seg0","1026":"branch0_seg0","1027":"branch0_seg0","1028":"branch0_seg0","1029":"branch0_seg0","1030":"branch0_seg0","1031":"branch0_seg0","1032":"branch0_seg0","1033":"branch0_seg0","1034":"branch0_seg0","1035":"branch0_seg0","1036":"branch0_seg0","1037":"branch0_seg0","1038":"branch0_seg0","1039":"branch0_seg0","1040":"branch0_seg0","1041":"branch0_seg0","1042":"branch0_seg0","1043":"branch0_seg0","1044":"branch0_seg0","1045":"branch0_seg0","1046":"branch0_seg0","1047":"branch0_seg0","1048":"branch0_seg0","1049":"branch0_seg0","1050":"branch0_seg0","1051":"branch0_seg0","1052":"branch0_seg0","1053":"branch0_seg0","1054":"branch0_seg0","1055":"branch0_seg0","1056":"branch0_seg0","1057":"branch0_seg0","1058":"branch0_seg0","1059":"branch0_seg0","1060":"branch0_seg0","1061":"branch0_seg0","1062":"branch0_seg0","1063":"branch0_seg0","1064":"branch0_seg0","1065":"branch0_seg0","1066":"branch0_seg0","1067":"branch0_seg0","1068":"branch0_seg0","1069":"branch0_seg0","1070":"branch0_seg0","1071":"branch0_seg0","1072":"branch0_seg0","1073":"branch0_seg0","1074":"branch0_seg0","1075":"branch0_seg0","1076":"branch0_seg0","1077":"branch0_seg0","1078":"branch0_seg0","1079":"branch0_seg0","1080":"branch0_seg0","1081":"branch0_seg0","1082":"branch0_seg0","1083":"branch0_seg0","1084":"branch0_seg0","1085":"branch0_seg0","1086":"branch0_seg0","1087":"branch0_seg0","1088":"branch0_seg0","1089":"branch0_seg0","1090":"branch0_seg0","1091":"branch0_seg0","1092":"branch0_seg0","1093":"branch0_seg0","1094":"branch0_seg0","1095":"branch0_seg0","1096":"branch0_seg0","1097":"branch0_seg0","1098":"branch0_seg0","1099":"branch0_seg0","1100":"branch0_seg0","1101":"branch0_seg0","1102":"branch0_seg0","1103":"branch0_seg0","1104":"branch0_seg0","1105":"branch0_seg0","1106":"branch0_seg0","1107":"branch0_seg0","1108":"branch0_seg0","1109":"branch0_seg0","1110":"branch0_seg0","1111":"branch0_seg0","1112":"branch0_seg0","1113":"branch0_seg0","1114":"branch0_seg0","1115":"branch0_seg0","1116":"branch0_seg0","1117":"branch0_seg0","1118":"branch0_seg0","1119":"branch0_seg0","1120":"branch0_seg0","1121":"branch0_seg0","1122":"branch0_seg0","1123":"branch0_seg0","1124":"branch0_seg0","1125":"branch0_seg0","1126":"branch0_seg0","1127":"branch0_seg0","1128":"branch0_seg0","1129":"branch0_seg0","1130":"branch0_seg0","1131":"branch0_seg0","1132":"branch0_seg0","1133":"branch0_seg0","1134":"branch0_seg0","1135":"branch0_seg0","1136":"branch0_seg0","1137":"branch0_seg0","1138":"branch0_seg0","1139":"branch0_seg0","1140":"branch0_seg0","1141":"branch0_seg0","1142":"branch0_seg0","1143":"branch0_seg0","1144":"branch0_seg0","1145":"branch0_seg0","1146":"branch0_seg0","1147":"branch0_seg0","1148":"branch0_seg0","1149":"branch0_seg0","1150":"branch0_seg0","1151":"branch0_seg0","1152":"branch0_seg0","1153":"branch0_seg0","1154":"branch0_seg0","1155":"branch0_seg0","1156":"branch0_seg0","1157":"branch0_seg0","1158":"branch0_seg0","1159":"branch0_seg0","1160":"branch0_seg0","1161":"branch0_seg0","1162":"branch0_seg0","1163":"branch0_seg0","1164":"branch0_seg0","1165":"branch0_seg0","1166":"branch0_seg0","1167":"branch0_seg0","1168":"branch0_seg0","1169":"branch0_seg0","1170":"branch0_seg0","1171":"branch0_seg0","1172":"branch0_seg0","1173":"branch0_seg0","1174":"branch0_seg0","1175":"branch0_seg0","1176":"branch0_seg0","1177":"branch0_seg0","1178":"branch0_seg0","1179":"branch0_seg0","1180":"branch0_seg0","1181":"branch0_seg0","1182":"branch0_seg0","1183":"branch0_seg0","1184":"branch0_seg0","1185":"branch0_seg0","1186":"branch0_seg0","1187":"branch0_seg0","1188":"branch0_seg0","1189":"branch0_seg0","1190":"branch0_seg0","1191":"branch0_seg0","1192":"branch0_seg0","1193":"branch0_seg0","1194":"branch0_seg0","1195":"branch0_seg0","1196":"branch0_seg0","1197":"branch0_seg0","1198":"branch0_seg0","1199":"branch0_seg0","1200":"branch0_seg0","1201":"branch0_seg0","1202":"branch0_seg0","1203":"branch0_seg0","1204":"branch0_seg0","1205":"branch0_seg0","1206":"branch0_seg0","1207":"branch0_seg0","1208":"branch0_seg0","1209":"branch0_seg0","1210":"branch0_seg0","1211":"branch0_seg0","1212":"branch0_seg0","1213":"branch0_seg0","1214":"branch0_seg0","1215":"branch0_seg0","1216":"branch0_seg0","1217":"branch0_seg0","1218":"branch0_seg0","1219":"branch0_seg0","1220":"branch0_seg0","1221":"branch0_seg0","1222":"branch0_seg0","1223":"branch0_seg0","1224":"branch0_seg0","1225":"branch0_seg0","1226":"branch0_seg0","1227":"branch0_seg0","1228":"branch0_seg0","1229":"branch0_seg0","1230":"branch0_seg0","1231":"branch0_seg0","1232":"branch0_seg0","1233":"branch0_seg0","1234":"branch0_seg0","1235":"branch0_seg0","1236":"branch0_seg0","1237":"branch0_seg0","1238":"branch0_seg0","1239":"branch0_seg0","1240":"branch0_seg0","1241":"branch0_seg0","1242":"branch0_seg0","1243":"branch0_seg0","1244":"branch0_seg0","1245":"branch0_seg0","1246":"branch0_seg0","1247":"branch0_seg0","1248":"branch0_seg0","1249":"branch0_seg0","1250":"branch0_seg0","1251":"branch0_seg0","1252":"branch0_seg0","1253":"branch0_seg0","1254":"branch0_seg0","1255":"branch0_seg0","1256":"branch0_seg0","1257":"branch0_seg0","1258":"branch0_seg0","1259":"branch0_seg0","1260":"branch0_seg0","1261":"branch0_seg0","1262":"branch0_seg0","1263":"branch0_seg0","1264":"branch0_seg0","1265":"branch0_seg0","1266":"branch0_seg0","1267":"branch0_seg0","1268":"branch0_seg0","1269":"branch0_seg0","1270":"branch0_seg0","1271":"branch0_seg0","1272":"branch0_seg0","1273":"branch0_seg0","1274":"branch0_seg0","1275":"branch0_seg0","1276":"branch0_seg0","1277":"branch0_seg0","1278":"branch0_seg0","1279":"branch0_seg0","1280":"branch0_seg0","1281":"branch0_seg0","1282":"branch0_seg0","1283":"branch0_seg0","1284":"branch0_seg0","1285":"branch0_seg0","1286":"branch0_seg0","1287":"branch0_seg0","1288":"branch0_seg0","1289":"branch0_seg0","1290":"branch0_seg0","1291":"branch0_seg0","1292":"branch0_seg0","1293":"branch0_seg0","1294":"branch0_seg0","1295":"branch0_seg0","1296":"branch0_seg0","1297":"branch0_seg0","1298":"branch0_seg0","1299":"branch0_seg0","1300":"branch0_seg0","1301":"branch0_seg0","1302":"branch0_seg0","1303":"branch0_seg0","1304":"branch0_seg0","1305":"branch0_seg0","1306":"branch0_seg0","1307":"branch0_seg0","1308":"branch0_seg0","1309":"branch0_seg0","1310":"branch0_seg0","1311":"branch0_seg0","1312":"branch0_seg0","1313":"branch0_seg0","1314":"branch0_seg0","1315":"branch0_seg0","1316":"branch0_seg0","1317":"branch0_seg0","1318":"branch0_seg0","1319":"branch0_seg0","1320":"branch0_seg0","1321":"branch0_seg0","1322":"branch0_seg0","1323":"branch0_seg0","1324":"branch0_seg0","1325":"branch0_seg0","1326":"branch0_seg0","1327":"branch0_seg0","1328":"branch0_seg0","1329":"branch0_seg0","1330":"branch0_seg0","1331":"branch0_seg0","1332":"branch0_seg0","1333":"branch0_seg0","1334":"branch0_seg0","1335":"branch0_seg0","1336":"branch0_seg0","1337":"branch0_seg0","1338":"branch0_seg0","1339":"branch0_seg0","1340":"branch0_seg0","1341":"branch0_seg0","1342":"branch0_seg0","1343":"branch0_seg0","1344":"branch0_seg0","1345":"branch0_seg0","1346":"branch0_seg0","1347":"branch0_seg0","1348":"branch0_seg0","1349":"branch0_seg0","1350":"branch0_seg0","1351":"branch0_seg0","1352":"branch0_seg0","1353":"branch0_seg0","1354":"branch0_seg0","1355":"branch0_seg0","1356":"branch0_seg0","1357":"branch0_seg0","1358":"branch0_seg0","1359":"branch0_seg0","1360":"branch0_seg0","1361":"branch0_seg0","1362":"branch0_seg0","1363":"branch0_seg0","1364":"branch0_seg0","1365":"branch0_seg0","1366":"branch0_seg0","1367":"branch0_seg0","1368":"branch0_seg0","1369":"branch0_seg0","1370":"branch0_seg0","1371":"branch0_seg0","1372":"branch0_seg0","1373":"branch0_seg0","1374":"branch0_seg0","1375":"branch0_seg0","1376":"branch0_seg0","1377":"branch0_seg0","1378":"branch0_seg0","1379":"branch0_seg0","1380":"branch0_seg0","1381":"branch0_seg0","1382":"branch0_seg0","1383":"branch0_seg0","1384":"branch0_seg0","1385":"branch0_seg0","1386":"branch0_seg0","1387":"branch0_seg0","1388":"branch0_seg0","1389":"branch0_seg0","1390":"branch0_seg0","1391":"branch0_seg0","1392":"branch0_seg0","1393":"branch0_seg0","1394":"branch0_seg0","1395":"branch0_seg0","1396":"branch0_seg0","1397":"branch0_seg0","1398":"branch0_seg0","1399":"branch0_seg0","1400":"branch0_seg0","1401":"branch0_seg0","1402":"branch0_seg0","1403":"branch0_seg0","1404":"branch0_seg0","1405":"branch0_seg0","1406":"branch0_seg0","1407":"branch0_seg0","1408":"branch0_seg0","1409":"branch0_seg0","1410":"branch0_seg0","1411":"branch0_seg0","1412":"branch0_seg0","1413":"branch0_seg0","1414":"branch0_seg0","1415":"branch0_seg0","1416":"branch0_seg0","1417":"branch0_seg0","1418":"branch0_seg0","1419":"branch0_seg0","1420":"branch0_seg0","1421":"branch0_seg0","1422":"branch0_seg0","1423":"branch0_seg0","1424":"branch0_seg0","1425":"branch0_seg0","1426":"branch0_seg0","1427":"branch0_seg0","1428":"branch0_seg0","1429":"branch0_seg0","1430":"branch0_seg0","1431":"branch0_seg0","1432":"branch0_seg0","1433":"branch0_seg0","1434":"branch0_seg0","1435":"branch0_seg0","1436":"branch0_seg0","1437":"branch0_seg0","1438":"branch0_seg0","1439":"branch0_seg0","1440":"branch0_seg0","1441":"branch0_seg0","1442":"branch0_seg0","1443":"branch0_seg0","1444":"branch0_seg0","1445":"branch0_seg0","1446":"branch0_seg0","1447":"branch0_seg0","1448":"branch0_seg0","1449":"branch0_seg0","1450":"branch0_seg0","1451":"branch0_seg0","1452":"branch0_seg0","1453":"branch0_seg0","1454":"branch0_seg0","1455":"branch0_seg0","1456":"branch0_seg0","1457":"branch0_seg0","1458":"branch0_seg0","1459":"branch0_seg0","1460":"branch0_seg0","1461":"branch0_seg0","1462":"branch0_seg0","1463":"branch0_seg0","1464":"branch0_seg0","1465":"branch0_seg0","1466":"branch0_seg0","1467":"branch0_seg0","1468":"branch0_seg0","1469":"branch0_seg0","1470":"branch0_seg0","1471":"branch0_seg0","1472":"branch0_seg0","1473":"branch0_seg0","1474":"branch0_seg0","1475":"branch0_seg0","1476":"branch0_seg0","1477":"branch0_seg0","1478":"branch0_seg0","1479":"branch0_seg0","1480":"branch0_seg0","1481":"branch0_seg0","1482":"branch0_seg0","1483":"branch0_seg0","1484":"branch0_seg0","1485":"branch0_seg0","1486":"branch0_seg0","1487":"branch0_seg0","1488":"branch0_seg0","1489":"branch0_seg0","1490":"branch0_seg0","1491":"branch0_seg0","1492":"branch0_seg0","1493":"branch0_seg0","1494":"branch0_seg0","1495":"branch0_seg0","1496":"branch0_seg0","1497":"branch0_seg0","1498":"branch0_seg0","1499":"branch0_seg0","1500":"branch0_seg0","1501":"branch0_seg0","1502":"branch0_seg0","1503":"branch0_seg0","1504":"branch0_seg0","1505":"branch0_seg0","1506":"branch0_seg0","1507":"branch0_seg0","1508":"branch0_seg0","1509":"branch0_seg0","1510":"branch0_seg0","1511":"branch0_seg0","1512":"branch0_seg0","1513":"branch0_seg0","1514":"branch0_seg0","1515":"branch0_seg0","1516":"branch0_seg0","1517":"branch0_seg0","1518":"branch0_seg0","1519":"branch0_seg0","1520":"branch0_seg0","1521":"branch0_seg0","1522":"branch0_seg0","1523":"branch0_seg0","1524":"branch0_seg0","1525":"branch0_seg0","1526":"branch0_seg0","1527":"branch0_seg0","1528":"branch0_seg0","1529":"branch0_seg0","1530":"branch0_seg0","1531":"branch0_seg0","1532":"branch0_seg0","1533":"branch0_seg0","1534":"branch0_seg0","1535":"branch0_seg0","1536":"branch0_seg0","1537":"branch0_seg0","1538":"branch0_seg0","1539":"branch0_seg0","1540":"branch0_seg0","1541":"branch0_seg0","1542":"branch0_seg0","1543":"branch0_seg0","1544":"branch0_seg0","1545":"branch0_seg0","1546":"branch0_seg0","1547":"branch0_seg0","1548":"branch0_seg0","1549":"branch0_seg0","1550":"branch0_seg0","1551":"branch0_seg0","1552":"branch0_seg0","1553":"branch0_seg0","1554":"branch0_seg0","1555":"branch0_seg0","1556":"branch0_seg0","1557":"branch0_seg0","1558":"branch0_seg0","1559":"branch0_seg0","1560":"branch0_seg0","1561":"branch0_seg0","1562":"branch0_seg0","1563":"branch0_seg0","1564":"branch0_seg0","1565":"branch0_seg0","1566":"branch0_seg0","1567":"branch0_seg0","1568":"branch0_seg0","1569":"branch0_seg0","1570":"branch0_seg0","1571":"branch0_seg0","1572":"branch0_seg0","1573":"branch0_seg0","1574":"branch0_seg0","1575":"branch0_seg0","1576":"branch0_seg0","1577":"branch0_seg0","1578":"branch0_seg0","1579":"branch0_seg0","1580":"branch0_seg0","1581":"branch0_seg0","1582":"branch0_seg0","1583":"branch0_seg0","1584":"branch0_seg0","1585":"branch0_seg0","1586":"branch0_seg0","1587":"branch0_seg0","1588":"branch0_seg0","1589":"branch0_seg0","1590":"branch0_seg0","1591":"branch0_seg0","1592":"branch0_seg0","1593":"branch0_seg0","1594":"branch0_seg0","1595":"branch0_seg0","1596":"branch0_seg0","1597":"branch0_seg0","1598":"branch0_seg0","1599":"branch0_seg0","1600":"branch0_seg0","1601":"branch0_seg0","1602":"branch0_seg0","1603":"branch0_seg0","1604":"branch0_seg0","1605":"branch0_seg0","1606":"branch0_seg0","1607":"branch0_seg0","1608":"branch0_seg0","1609":"branch0_seg0","1610":"branch0_seg0","1611":"branch0_seg0","1612":"branch0_seg0","1613":"branch0_seg0","1614":"branch0_seg0","1615":"branch0_seg0","1616":"branch0_seg0","1617":"branch0_seg0","1618":"branch0_seg0","1619":"branch0_seg0","1620":"branch0_seg0","1621":"branch0_seg0","1622":"branch0_seg0","1623":"branch0_seg0","1624":"branch0_seg0","1625":"branch0_seg0","1626":"branch0_seg0","1627":"branch0_seg0","1628":"branch0_seg0","1629":"branch0_seg0","1630":"branch0_seg0","1631":"branch0_seg0","1632":"branch0_seg0","1633":"branch0_seg0","1634":"branch0_seg0","1635":"branch0_seg0","1636":"branch0_seg0","1637":"branch0_seg0","1638":"branch0_seg0","1639":"branch0_seg0","1640":"branch0_seg0","1641":"branch0_seg0","1642":"branch0_seg0","1643":"branch0_seg0","1644":"branch0_seg0","1645":"branch0_seg0","1646":"branch0_seg0","1647":"branch0_seg0","1648":"branch0_seg0","1649":"branch0_seg0","1650":"branch0_seg0","1651":"branch0_seg0","1652":"branch0_seg0","1653":"branch0_seg0","1654":"branch0_seg0","1655":"branch0_seg0","1656":"branch0_seg0","1657":"branch0_seg0","1658":"branch0_seg0","1659":"branch0_seg0","1660":"branch0_seg0","1661":"branch0_seg0","1662":"branch0_seg0","1663":"branch0_seg0","1664":"branch0_seg0","1665":"branch0_seg0","1666":"branch0_seg0","1667":"branch0_seg0","1668":"branch0_seg0","1669":"branch0_seg0","1670":"branch0_seg0","1671":"branch0_seg0","1672":"branch0_seg0","1673":"branch0_seg0","1674":"branch0_seg0","1675":"branch0_seg0","1676":"branch0_seg0","1677":"branch0_seg0","1678":"branch0_seg0","1679":"branch0_seg0","1680":"branch0_seg0","1681":"branch0_seg0","1682":"branch0_seg0","1683":"branch0_seg0","1684":"branch0_seg0","1685":"branch0_seg0","1686":"branch0_seg0","1687":"branch0_seg0","1688":"branch0_seg0","1689":"branch0_seg0","1690":"branch0_seg0","1691":"branch0_seg0","1692":"branch0_seg0","1693":"branch0_seg0","1694":"branch0_seg0","1695":"branch0_seg0","1696":"branch0_seg0","1697":"branch0_seg0","1698":"branch0_seg0","1699":"branch0_seg0","1700":"branch0_seg0","1701":"branch0_seg0","1702":"branch0_seg0","1703":"branch0_seg0","1704":"branch0_seg0","1705":"branch0_seg0","1706":"branch0_seg0","1707":"branch0_seg0","1708":"branch0_seg0","1709":"branch0_seg0","1710":"branch0_seg0","1711":"branch0_seg0","1712":"branch0_seg0","1713":"branch0_seg0","1714":"branch0_seg0","1715":"branch0_seg0","1716":"branch0_seg0","1717":"branch0_seg0","1718":"branch0_seg0","1719":"branch0_seg0","1720":"branch0_seg0","1721":"branch0_seg0","1722":"branch0_seg0","1723":"branch0_seg0","1724":"branch0_seg0","1725":"branch0_seg0","1726":"branch0_seg0","1727":"branch0_seg0","1728":"branch0_seg0","1729":"branch0_seg0","1730":"branch0_seg0","1731":"branch0_seg0","1732":"branch0_seg0","1733":"branch0_seg0","1734":"branch0_seg0","1735":"branch0_seg0","1736":"branch0_seg0","1737":"branch0_seg0","1738":"branch0_seg0","1739":"branch0_seg0","1740":"branch0_seg0","1741":"branch0_seg0","1742":"branch0_seg0","1743":"branch0_seg0","1744":"branch0_seg0","1745":"branch0_seg0","1746":"branch0_seg0","1747":"branch0_seg0","1748":"branch0_seg0","1749":"branch0_seg0","1750":"branch0_seg0","1751":"branch0_seg0","1752":"branch0_seg0","1753":"branch0_seg0","1754":"branch0_seg0","1755":"branch0_seg0","1756":"branch0_seg0","1757":"branch0_seg0","1758":"branch0_seg0","1759":"branch0_seg0","1760":"branch0_seg0","1761":"branch0_seg0","1762":"branch0_seg0","1763":"branch0_seg0","1764":"branch0_seg0","1765":"branch0_seg0","1766":"branch0_seg0","1767":"branch0_seg0","1768":"branch0_seg0","1769":"branch0_seg0","1770":"branch0_seg0","1771":"branch0_seg0","1772":"branch0_seg0","1773":"branch0_seg0","1774":"branch0_seg0","1775":"branch0_seg0","1776":"branch0_seg0","1777":"branch0_seg0","1778":"branch0_seg0","1779":"branch0_seg0","1780":"branch0_seg0","1781":"branch0_seg0","1782":"branch0_seg0","1783":"branch0_seg0","1784":"branch0_seg0","1785":"branch0_seg0","1786":"branch0_seg0","1787":"branch0_seg0","1788":"branch0_seg0","1789":"branch0_seg0","1790":"branch0_seg0","1791":"branch0_seg0","1792":"branch0_seg0","1793":"branch0_seg0","1794":"branch0_seg0","1795":"branch0_seg0","1796":"branch0_seg0","1797":"branch0_seg0","1798":"branch0_seg0","1799":"branch0_seg0","1800":"branch0_seg0","1801":"branch0_seg0","1802":"branch0_seg0","1803":"branch0_seg0","1804":"branch0_seg0","1805":"branch0_seg0","1806":"branch0_seg0","1807":"branch0_seg0","1808":"branch0_seg0","1809":"branch0_seg0","1810":"branch0_seg0","1811":"branch0_seg0","1812":"branch0_seg0","1813":"branch0_seg0","1814":"branch0_seg0","1815":"branch0_seg0","1816":"branch0_seg0","1817":"branch0_seg0","1818":"branch0_seg0","1819":"branch0_seg0","1820":"branch0_seg0","1821":"branch0_seg0","1822":"branch0_seg0","1823":"branch0_seg0","1824":"branch0_seg0","1825":"branch0_seg0","1826":"branch0_seg0","1827":"branch0_seg0","1828":"branch0_seg0","1829":"branch0_seg0","1830":"branch0_seg0","1831":"branch0_seg0","1832":"branch0_seg0","1833":"branch0_seg0","1834":"branch0_seg0","1835":"branch0_seg0","1836":"branch0_seg0","1837":"branch0_seg0","1838":"branch0_seg0","1839":"branch0_seg0","1840":"branch0_seg0","1841":"branch0_seg0","1842":"branch0_seg0","1843":"branch0_seg0","1844":"branch0_seg0","1845":"branch0_seg0","1846":"branch0_seg0","1847":"branch0_seg0","1848":"branch0_seg0","1849":"branch0_seg0","1850":"branch0_seg0","1851":"branch0_seg0","1852":"branch0_seg0","1853":"branch0_seg0","1854":"branch0_seg0","1855":"branch0_seg0","1856":"branch0_seg0","1857":"branch0_seg0","1858":"branch0_seg0","1859":"branch0_seg0","1860":"branch0_seg0","1861":"branch0_seg0","1862":"branch0_seg0","1863":"branch0_seg0","1864":"branch0_seg0","1865":"branch0_seg0","1866":"branch0_seg0","1867":"branch0_seg0","1868":"branch0_seg0","1869":"branch0_seg0","1870":"branch0_seg0","1871":"branch0_seg0","1872":"branch0_seg0","1873":"branch0_seg0","1874":"branch0_seg0","1875":"branch0_seg0","1876":"branch0_seg0","1877":"branch0_seg0","1878":"branch0_seg0","1879":"branch0_seg0","1880":"branch0_seg0","1881":"branch0_seg0","1882":"branch0_seg0","1883":"branch0_seg0","1884":"branch0_seg0","1885":"branch0_seg0","1886":"branch0_seg0","1887":"branch0_seg0","1888":"branch0_seg0","1889":"branch0_seg0","1890":"branch0_seg0","1891":"branch0_seg0","1892":"branch0_seg0","1893":"branch0_seg0","1894":"branch0_seg0","1895":"branch0_seg0","1896":"branch0_seg0","1897":"branch0_seg0","1898":"branch0_seg0","1899":"branch0_seg0","1900":"branch0_seg0","1901":"branch0_seg0","1902":"branch0_seg0","1903":"branch0_seg0","1904":"branch0_seg0","1905":"branch0_seg0","1906":"branch0_seg0","1907":"branch0_seg0","1908":"branch0_seg0","1909":"branch0_seg0","1910":"branch0_seg0","1911":"branch0_seg0","1912":"branch0_seg0","1913":"branch0_seg0","1914":"branch0_seg0","1915":"branch0_seg0","1916":"branch0_seg0","1917":"branch0_seg0","1918":"branch0_seg0","1919":"branch0_seg0","1920":"branch0_seg0","1921":"branch0_seg0","1922":"branch0_seg0","1923":"branch0_seg0","1924":"branch0_seg0","1925":"branch0_seg0","1926":"branch0_seg0","1927":"branch0_seg0","1928":"branch0_seg0","1929":"branch0_seg0","1930":"branch0_seg0","1931":"branch0_seg0","1932":"branch0_seg0","1933":"branch0_seg0","1934":"branch0_seg0","1935":"branch0_seg0","1936":"branch0_seg0","1937":"branch0_seg0","1938":"branch0_seg0","1939":"branch0_seg0","1940":"branch0_seg0","1941":"branch0_seg0","1942":"branch0_seg0","1943":"branch0_seg0","1944":"branch0_seg0","1945":"branch0_seg0","1946":"branch0_seg0","1947":"branch0_seg0","1948":"branch0_seg0","1949":"branch0_seg0","1950":"branch0_seg0","1951":"branch0_seg0","1952":"branch0_seg0","1953":"branch0_seg0","1954":"branch0_seg0","1955":"branch0_seg0","1956":"branch0_seg0","1957":"branch0_seg0","1958":"branch0_seg0","1959":"branch0_seg0","1960":"branch0_seg0","1961":"branch0_seg0","1962":"branch0_seg0","1963":"branch0_seg0","1964":"branch0_seg0","1965":"branch0_seg0","1966":"branch0_seg0","1967":"branch0_seg0","1968":"branch0_seg0","1969":"branch0_seg0","1970":"branch0_seg0","1971":"branch0_seg0","1972":"branch0_seg0","1973":"branch0_seg0","1974":"branch0_seg0","1975":"branch0_seg0","1976":"branch0_seg0","1977":"branch0_seg0","1978":"branch0_seg0","1979":"branch0_seg0","1980":"branch0_seg0","1981":"branch0_seg0","1982":"branch0_seg0","1983":"branch0_seg0","1984":"branch0_seg0","1985":"branch0_seg0","1986":"branch0_seg0","1987":"branch0_seg0","1988":"branch0_seg0","1989":"branch0_seg0","1990":"branch0_seg0","1991":"branch0_seg0","1992":"branch0_seg0","1993":"branch0_seg0","1994":"branch0_seg0","1995":"branch0_seg0","1996":"branch0_seg0","1997":"branch0_seg0","1998":"branch0_seg0","1999":"branch0_seg0","2000":"branch0_seg0"},"time":{"0":0.0,"1":0.005,"2":0.01,"3":0.015,"4":0.02,"5":0.025,"6":0.03,"7":0.035,"8":0.04,"9":0.045,"10":0.05,"11":0.055,"12":0.06,"13":0.065,"14":0.07,"15":0.075,"16":0.08,"17":0.085,"18":0.09,"19":0.095,"20":0.1,"21":0.105,"22":0.11,"23":0.115,"24":0.12,"25":0.125,"26":0.13,"27":0.135,"28":0.14,"29":0.145,"30":0.15,"31":0.155,"32":0.16,"33":0.165,"34":0.17,"35":0.175,"36":0.18,"37":0.185,"38":0.19,"39":0.195,"40":0.2,"41":0.205,"42":0.21,"43":0.215,"44":0.22,"45":0.225,"46":0.23,"47":0.235,"48":0.24,"49":0.245,"50":0.25,"51":0.255,"52":0.26,"53":0.265,"54":0.27,"55":0.275,"56":0.28,"57":0.285,"58":0.29,"59":0.295,"60":0.3,"61":0.305,"62":0.31,"63":0.315,"64":0.32,"65":0.325,"66":0.33,"67":0.335,"68":0.34,"69":0.345,"70":0.35,"71":0.355,"72":0.36,"73":0.365,"74":0.37,"75":0.375,"76":0.38,"77":0.385,"78":0.39,"79":0.395,"80":0.4,"81":0.405,"82":0.41,"83":0.415,"84":0.42,"85":0.425,"86":0.43,"87":0.435,"88":0.44,"89":0.445,"90":0.45,"91":0.455,"92":0.46,"93":0.465,"94":0.47,"95":0.475,"96":0.48,"97":0.485,"98":0.49,"99":0.495,"100":0.5,"101":0.505,"102":0.51,"103":0.515,"104":0.52,"105":0.525,"106":0.53,"107":0.535,"108":0.54,"109":0.545,"110":0.55,"111":0.555,"112":0.56,"113":0.565,"114":0.57,"115":0.575,"116":0.58,"117":0.585,"118":0.59,"119":0.595,"120":0.6,"121":0.605,"122":0.61,"123":0.615,"124":0.62,"125":0.625,"126":0.63,"127":0.635,"128":0.64,"129":0.645,"130":0.65,"131":0.655,"132":0.66,"133":0.665,"134":0.67,"135":0.675,"136":0.68,"137":0.685,"138":0.69,"139":0.695,"140":0.7,"141":0.705,"142":0.71,"143":0.715,"144":0.72,"145":0.725,"146":0.73,"147":0.735,"148":0.74,"149":0.745,"150":0.75,"151":0.755,"152":0.76,"153":0.765,"154":0.77,"155":0.775,"156":0.78,"157":0.785,"158":0.79,"159":0.795,"160":0.8,"161":0.805,"162":0.81,"163":0.815,"164":0.82,"165":0.825,"166":0.83,"167":0.835,"168":0.84,"169":0.845,"170":0.85,"171":0.855,"172":0.86,"173":0.865,"174":0.87,"175":0.875,"176":0.88,"177":0.885,"178":0.89,"179":0.895,"180":0.9,"181":0.905,"182":0.91,"183":0.915,"184":0.92,"185":0.925,"186":0.93,"187":0.935,"188":0.94,"189":0.945,"190":0.95,"191":0.955,"192":0.96,"193":0.965,"194":0.97,"195":0.975,"196":0.98,"197":0.985,"198":0.99,"199":0.995,"200":1.0,"201":1.005,"202":1.01,"203":1.015,"204":1.02,"205":1.025,"206":1.03,"207":1.035,"208":1.04,"209":1.045,"210":1.05,"211":1.055,"212":1.06,"213":1.065,"214":1.07,"215":1.075,"216":1.08,"217":1.085,"218":1.09,"219":1.095,"220":1.1,"221":1.105,"222":1.11,"223":1.115,"224":1.12,"225":1.125,"226":1.13,"227":1.135,"228":1.14,"229":1.145,"230":1.15,"231":1.155,"232":1.16,"233":1.165,"234":1.17,"235":1.175,"236":1.18,"237":1.185,"238":1.19,"239":1.195,"240":1.2,"241":1.205,"242":1.21,"243":1.215,"244":1.22,"245":1.225,"246":1.23,"247":1.235,"248":1.24,"249":1.245,"250":1.25,"251":1.255,"252":1.26,"253":1.265,"254":1.27,"255":1.275,"256":1.28,"257":1.285,"258":1.29,"259":1.295,"260":1.3,"261":1.305,"262":1.31,"263":1.315,"264":1.32,"265":1.325,"266":1.33,"267":1.335,"268":1.34,"269":1.345,"270":1.35,"271":1.355,"272":1.36,"273":1.365,"274":1.37,"275":1.375,"276":1.38,"277":1.385,"278":1.39,"279":1.395,"280":1.4,"281":1.405,"282":1.41,"283":1.415,"284":1.42,"285":1.425,"286":1.43,"287":1.435,"288":1.44,"289":1.445,"290":1.45,"291":1.455,"292":1.46,"293":1.465,"294":1.47,"295":1.475,"296":1.48,"297":1.485,"298":1.49,"299":1.495,"300":1.5,"301":1.505,"302":1.51,"303":1.515,"304":1.52,"305":1.525,"306":1.53,"307":1.535,"308":1.54,"309":1.545,"310":1.55,"311":1.555,"312":1.56,"313":1.565,"314":1.57,"315":1.575,"316":1.58,"317":1.585,"318":1.59,"319":1.595,"320":1.6,"321":1.605,"322":1.61,"323":1.615,"324":1.62,"325":1.625,"326":1.63,"327":1.635,"328":1.64,"329":1.645,"330":1.65,"331":1.655,"332":1.66,"333":1.665,"334":1.67,"335":1.675,"336":1.68,"337":1.685,"338":1.69,"339":1.695,"340":1.7,"341":1.705,"342":1.71,"343":1.715,"344":1.72,"345":1.725,"346":1.73,"347":1.735,"348":1.74,"349":1.745,"350":1.75,"351":1.755,"352":1.76,"353":1.765,"354":1.77,"355":1.775,"356":1.78,"357":1.785,"358":1.79,"359":1.795,"360":1.8,"361":1.805,"362":1.81,"363":1.815,"364":1.82,"365":1.825,"366":1.83,"367":1.835,"368":1.84,"369":1.845,"370":1.85,"371":1.855,"372":1.86,"373":1.865,"374":1.87,"375":1.875,"376":1.88,"377":1.885,"378":1.89,"379":1.895,"380":1.9,"381":1.905,"382":1.91,"383":1.915,"384":1.92,"385":1.925,"386":1.93,"387":1.935,"388":1.94,"389":1.945,"390":1.95,"391":1.955,"392":1.96,"393":1.965,"394":1.97,"395":1.975,"396":1.98,"397":1.985,"398":1.99,"399":1.995,"400":2.0,"401":2.005,"402":2.01,"403":2.015,"404":2.02,"405":2.025,"406":2.03,"407":2.035,"408":2.04,"409":2.045,"410":2.05,"411":2.055,"412":2.06,"413":2.065,"414":2.07,"415":2.075,"416":2.08,"417":2.085,"418":2.09,"419":2.095,"420":2.1,"421":2.105,"422":2.11,"423":2.115,"424":2.12,"425":2.125,"426":2.13,"427":2.135,"428":2.14,"429":2.145,"430":2.15,"431":2.155,"432":2.16,"433":2.165,"434":2.17,"435":2.175,"436":2.18,"437":2.185,"438":2.19,"439":2.195,"440":2.2,"441":2.205,"442":2.21,"443":2.215,"444":2.22,"445":2.225,"446":2.23,"447":2.235,"448":2.24,"449":2.245,"450":2.25,"451":2.255,"452":2.26,"453":2.265,"454":2.27,"455":2.275,"456":2.28,"457":2.285,"458":2.29,"459":2.295,"460":2.3,"461":2.305,"462":2.31,"463":2.315,"464":2.32,"465":2.325,"466":2.33,"467":2.335,"468":2.34,"469":2.345,"470":2.35,"471":2.355,"472":2.36,"473":2.365,"474":2.37,"475":2.375,"476":2.38,"477":2.385,"478":2.39,"479":2.395,"480":2.4,"481":2.405,"482":2.41,"483":2.415,"484":2.42,"485":2.425,"486":2.43,"487":2.435,"488":2.44,"489":2.445,"490":2.45,"491":2.455,"492":2.46,"493":2.465,"494":2.47,"495":2.475,"496":2.48,"497":2.485,"498":2.49,"499":2.495,"500":2.5,"501":2.505,"502":2.51,"503":2.515,"504":2.52,"505":2.525,"506":2.53,"507":2.535,"508":2.54,"509":2.545,"510":2.55,"511":2.555,"512":2.56,"513":2.565,"514":2.57,"515":2.575,"516":2.58,"517":2.585,"518":2.59,"519":2.595,"520":2.6,"521":2.605,"522":2.61,"523":2.615,"524":2.62,"525":2.625,"526":2.63,"527":2.635,"528":2.64,"529":2.645,"530":2.65,"531":2.655,"532":2.66,"533":2.665,"534":2.67,"535":2.675,"536":2.68,"537":2.685,"538":2.69,"539":2.695,"540":2.7,"541":2.705,"542":2.71,"543":2.715,"544":2.72,"545":2.725,"546":2.73,"547":2.735,"548":2.74,"549":2.745,"550":2.75,"551":2.755,"552":2.76,"553":2.765,"554":2.77,"555":2.775,"556":2.78,"557":2.785,"558":2.79,"559":2.795,"560":2.8,"561":2.805,"562":2.81,"563":2.815,"564":2.82,"565":2.825,"566":2.83,"567":2.835,"568":2.84,"569":2.845,"570":2.85,"571":2.855,"572":2.86,"573":2.865,"574":2.87,"575":2.875,"576":2.88,"577":2.885,"578":2.89,"579":2.895,"580":2.9,"581":2.905,"582":2.91,"583":2.915,"584":2.92,"585":2.925,"586":2.93,"587":2.935,"588":2.94,"589":2.945,"590":2.95,"591":2.955,"592":2.96,"593":2.965,"594":2.97,"595":2.975,"596":2.98,"597":2.985,"598":2.99,"599":2.995,"600":3.0,"601":3.005,"602":3.01,"603":3.015,"604":3.02,"605":3.025,"606":3.03,"607":3.035,"608":3.04,"609":3.045,"610":3.05,"611":3.055,"612":3.06,"613":3.065,"614":3.07,"615":3.075,"616":3.08,"617":3.085,"618":3.09,"619":3.095,"620":3.1,"621":3.105,"622":3.11,"623":3.115,"624":3.12,"625":3.125,"626":3.13,"627":3.135,"628":3.14,"629":3.145,"630":3.15,"631":3.155,"632":3.16,"633":3.165,"634":3.17,"635":3.175,"636":3.18,"637":3.185,"638":3.19,"639":3.195,"640":3.2,"641":3.205,"642":3.21,"643":3.215,"644":3.22,"645":3.225,"646":3.23,"647":3.235,"648":3.24,"649":3.245,"650":3.25,"651":3.255,"652":3.26,"653":3.265,"654":3.27,"655":3.275,"656":3.28,"657":3.285,"658":3.29,"659":3.295,"660":3.3,"661":3.305,"662":3.31,"663":3.315,"664":3.32,"665":3.325,"666":3.33,"667":3.335,"668":3.34,"669":3.345,"670":3.35,"671":3.355,"672":3.36,"673":3.365,"674":3.37,"675":3.375,"676":3.38,"677":3.385,"678":3.39,"679":3.395,"680":3.4,"681":3.405,"682":3.41,"683":3.415,"684":3.42,"685":3.425,"686":3.43,"687":3.435,"688":3.44,"689":3.445,"690":3.45,"691":3.455,"692":3.46,"693":3.465,"694":3.47,"695":3.475,"696":3.48,"697":3.485,"698":3.49,"699":3.495,"700":3.5,"701":3.505,"702":3.51,"703":3.515,"704":3.52,"705":3.525,"706":3.53,"707":3.535,"708":3.54,"709":3.545,"710":3.55,"711":3.555,"712":3.56,"713":3.565,"714":3.57,"715":3.575,"716":3.58,"717":3.585,"718":3.59,"719":3.595,"720":3.6,"721":3.605,"722":3.61,"723":3.615,"724":3.62,"725":3.625,"726":3.63,"727":3.635,"728":3.64,"729":3.645,"730":3.65,"731":3.655,"732":3.66,"733":3.665,"734":3.67,"735":3.675,"736":3.68,"737":3.685,"738":3.69,"739":3.695,"740":3.7,"741":3.705,"742":3.71,"743":3.715,"744":3.72,"745":3.725,"746":3.73,"747":3.735,"748":3.74,"749":3.745,"750":3.75,"751":3.755,"752":3.76,"753":3.765,"754":3.77,"755":3.775,"756":3.78,"757":3.785,"758":3.79,"759":3.795,"760":3.8,"761":3.805,"762":3.81,"763":3.815,"764":3.82,"765":3.825,"766":3.83,"767":3.835,"768":3.84,"769":3.845,"770":3.85,"771":3.855,"772":3.86,"773":3.865,"774":3.87,"775":3.875,"776":3.88,"777":3.885,"778":3.89,"779":3.895,"780":3.9,"781":3.905,"782":3.91,"783":3.915,"784":3.92,"785":3.925,"786":3.93,"787":3.935,"788":3.94,"789":3.945,"790":3.95,"791":3.955,"792":3.96,"793":3.965,"794":3.97,"795":3.975,"796":3.98,"797":3.985,"798":3.99,"799":3.995,"800":4.0,"801":4.005,"802":4.01,"803":4.015,"804":4.02,"805":4.025,"806":4.03,"807":4.035,"808":4.04,"809":4.045,"810":4.05,"811":4.055,"812":4.06,"813":4.065,"814":4.07,"815":4.075,"816":4.08,"817":4.085,"818":4.09,"819":4.095,"820":4.1,"821":4.105,"822":4.11,"823":4.115,"824":4.12,"825":4.125,"826":4.13,"827":4.135,"828":4.14,"829":4.145,"830":4.15,"831":4.155,"832":4.16,"833":4.165,"834":4.17,"835":4.175,"836":4.18,"837":4.185,"838":4.19,"839":4.195,"840":4.2,"841":4.205,"842":4.21,"843":4.215,"844":4.22,"845":4.225,"846":4.23,"847":4.235,"848":4.24,"849":4.245,"850":4.25,"851":4.255,"852":4.26,"853":4.265,"854":4.27,"855":4.275,"856":4.28,"857":4.285,"858":4.29,"859":4.295,"860":4.3,"861":4.305,"862":4.31,"863":4.315,"864":4.32,"865":4.325,"866":4.33,"867":4.335,"868":4.34,"869":4.345,"870":4.35,"871":4.355,"872":4.36,"873":4.365,"874":4.37,"875":4.375,"876":4.38,"877":4.385,"878":4.39,"879":4.395,"880":4.4,"881":4.405,"882":4.41,"883":4.415,"884":4.42,"885":4.425,"886":4.43,"887":4.435,"888":4.44,"889":4.445,"890":4.45,"891":4.455,"892":4.46,"893":4.465,"894":4.47,"895":4.475,"896":4.48,"897":4.485,"898":4.49,"899":4.495,"900":4.5,"901":4.505,"902":4.51,"903":4.515,"904":4.52,"905":4.525,"906":4.53,"907":4.535,"908":4.54,"909":4.545,"910":4.55,"911":4.555,"912":4.56,"913":4.565,"914":4.57,"915":4.575,"916":4.58,"917":4.585,"918":4.59,"919":4.595,"920":4.6,"921":4.605,"922":4.61,"923":4.615,"924":4.62,"925":4.625,"926":4.63,"927":4.635,"928":4.64,"929":4.645,"930":4.65,"931":4.655,"932":4.66,"933":4.665,"934":4.67,"935":4.675,"936":4.68,"937":4.685,"938":4.69,"939":4.695,"940":4.7,"941":4.705,"942":4.71,"943":4.715,"944":4.72,"945":4.725,"946":4.73,"947":4.735,"948":4.74,"949":4.745,"950":4.75,"951":4.755,"952":4.76,"953":4.765,"954":4.77,"955":4.775,"956":4.78,"957":4.785,"958":4.79,"959":4.795,"960":4.8,"961":4.805,"962":4.81,"963":4.815,"964":4.82,"965":4.825,"966":4.83,"967":4.835,"968":4.84,"969":4.845,"970":4.85,"971":4.855,"972":4.86,"973":4.865,"974":4.87,"975":4.875,"976":4.88,"977":4.885,"978":4.89,"979":4.895,"980":4.9,"981":4.905,"982":4.91,"983":4.915,"984":4.92,"985":4.925,"986":4.93,"987":4.935,"988":4.94,"989":4.945,"990":4.95,"991":4.955,"992":4.96,"993":4.965,"994":4.97,"995":4.975,"996":4.98,"997":4.985,"998":4.99,"999":4.995,"1000":5.0,"1001":5.005,"1002":5.01,"1003":5.015,"1004":5.02,"1005":5.025,"1006":5.03,"1007":5.035,"1008":5.04,"1009":5.045,"1010":5.05,"1011":5.055,"1012":5.06,"1013":5.065,"1014":5.07,"1015":5.075,"1016":5.08,"1017":5.085,"1018":5.09,"1019":5.095,"1020":5.1,"1021":5.105,"1022":5.11,"1023":5.115,"1024":5.12,"1025":5.125,"1026":5.13,"1027":5.135,"1028":5.14,"1029":5.145,"1030":5.15,"1031":5.155,"1032":5.16,"1033":5.165,"1034":5.17,"1035":5.175,"1036":5.18,"1037":5.185,"1038":5.19,"1039":5.195,"1040":5.2,"1041":5.205,"1042":5.21,"1043":5.215,"1044":5.22,"1045":5.225,"1046":5.23,"1047":5.235,"1048":5.24,"1049":5.245,"1050":5.25,"1051":5.255,"1052":5.26,"1053":5.265,"1054":5.27,"1055":5.275,"1056":5.28,"1057":5.285,"1058":5.29,"1059":5.295,"1060":5.3,"1061":5.305,"1062":5.31,"1063":5.315,"1064":5.32,"1065":5.325,"1066":5.33,"1067":5.335,"1068":5.34,"1069":5.345,"1070":5.35,"1071":5.355,"1072":5.36,"1073":5.365,"1074":5.37,"1075":5.375,"1076":5.38,"1077":5.385,"1078":5.39,"1079":5.395,"1080":5.4,"1081":5.405,"1082":5.41,"1083":5.415,"1084":5.42,"1085":5.425,"1086":5.43,"1087":5.435,"1088":5.44,"1089":5.445,"1090":5.45,"1091":5.455,"1092":5.46,"1093":5.465,"1094":5.47,"1095":5.475,"1096":5.48,"1097":5.485,"1098":5.49,"1099":5.495,"1100":5.5,"1101":5.505,"1102":5.51,"1103":5.515,"1104":5.52,"1105":5.525,"1106":5.53,"1107":5.535,"1108":5.54,"1109":5.545,"1110":5.55,"1111":5.555,"1112":5.56,"1113":5.565,"1114":5.57,"1115":5.575,"1116":5.58,"1117":5.585,"1118":5.59,"1119":5.595,"1120":5.6,"1121":5.605,"1122":5.61,"1123":5.615,"1124":5.62,"1125":5.625,"1126":5.63,"1127":5.635,"1128":5.64,"1129":5.645,"1130":5.65,"1131":5.655,"1132":5.66,"1133":5.665,"1134":5.67,"1135":5.675,"1136":5.68,"1137":5.685,"1138":5.69,"1139":5.695,"1140":5.7,"1141":5.705,"1142":5.71,"1143":5.715,"1144":5.72,"1145":5.725,"1146":5.73,"1147":5.735,"1148":5.74,"1149":5.745,"1150":5.75,"1151":5.755,"1152":5.76,"1153":5.765,"1154":5.77,"1155":5.775,"1156":5.78,"1157":5.785,"1158":5.79,"1159":5.795,"1160":5.8,"1161":5.805,"1162":5.81,"1163":5.815,"1164":5.82,"1165":5.825,"1166":5.83,"1167":5.835,"1168":5.84,"1169":5.845,"1170":5.85,"1171":5.855,"1172":5.86,"1173":5.865,"1174":5.87,"1175":5.875,"1176":5.88,"1177":5.885,"1178":5.89,"1179":5.895,"1180":5.9,"1181":5.905,"1182":5.91,"1183":5.915,"1184":5.92,"1185":5.925,"1186":5.93,"1187":5.935,"1188":5.94,"1189":5.945,"1190":5.95,"1191":5.955,"1192":5.96,"1193":5.965,"1194":5.97,"1195":5.975,"1196":5.98,"1197":5.985,"1198":5.99,"1199":5.995,"1200":6.0,"1201":6.005,"1202":6.01,"1203":6.015,"1204":6.02,"1205":6.025,"1206":6.03,"1207":6.035,"1208":6.04,"1209":6.045,"1210":6.05,"1211":6.055,"1212":6.06,"1213":6.065,"1214":6.07,"1215":6.075,"1216":6.08,"1217":6.085,"1218":6.09,"1219":6.095,"1220":6.1,"1221":6.105,"1222":6.11,"1223":6.115,"1224":6.12,"1225":6.125,"1226":6.13,"1227":6.135,"1228":6.14,"1229":6.145,"1230":6.15,"1231":6.155,"1232":6.16,"1233":6.165,"1234":6.17,"1235":6.175,"1236":6.18,"1237":6.185,"1238":6.19,"1239":6.195,"1240":6.2,"1241":6.205,"1242":6.21,"1243":6.215,"1244":6.22,"1245":6.225,"1246":6.23,"1247":6.235,"1248":6.24,"1249":6.245,"1250":6.25,"1251":6.255,"1252":6.26,"1253":6.265,"1254":6.27,"1255":6.275,"1256":6.28,"1257":6.285,"1258":6.29,"1259":6.295,"1260":6.3,"1261":6.305,"1262":6.31,"1263":6.315,"1264":6.32,"1265":6.325,"1266":6.33,"1267":6.335,"1268":6.34,"1269":6.345,"1270":6.35,"1271":6.355,"1272":6.36,"1273":6.365,"1274":6.37,"1275":6.375,"1276":6.38,"1277":6.385,"1278":6.39,"1279":6.395,"1280":6.4,"1281":6.405,"1282":6.41,"1283":6.415,"1284":6.42,"1285":6.425,"1286":6.43,"1287":6.435,"1288":6.44,"1289":6.445,"1290":6.45,"1291":6.455,"1292":6.46,"1293":6.465,"1294":6.47,"1295":6.475,"1296":6.48,"1297":6.485,"1298":6.49,"1299":6.495,"1300":6.5,"1301":6.505,"1302":6.51,"1303":6.515,"1304":6.52,"1305":6.525,"1306":6.53,"1307":6.535,"1308":6.54,"1309":6.545,"1310":6.55,"1311":6.555,"1312":6.56,"1313":6.565,"1314":6.57,"1315":6.575,"1316":6.58,"1317":6.585,"1318":6.59,"1319":6.595,"1320":6.6,"1321":6.605,"1322":6.61,"1323":6.615,"1324":6.62,"1325":6.625,"1326":6.63,"1327":6.635,"1328":6.64,"1329":6.645,"1330":6.65,"1331":6.655,"1332":6.66,"1333":6.665,"1334":6.67,"1335":6.675,"1336":6.68,"1337":6.685,"1338":6.69,"1339":6.695,"1340":6.7,"1341":6.705,"1342":6.71,"1343":6.715,"1344":6.72,"1345":6.725,"1346":6.73,"1347":6.735,"1348":6.74,"1349":6.745,"1350":6.75,"1351":6.755,"1352":6.76,"1353":6.765,"1354":6.77,"1355":6.775,"1356":6.78,"1357":6.785,"1358":6.79,"1359":6.795,"1360":6.8,"1361":6.805,"1362":6.81,"1363":6.815,"1364":6.82,"1365":6.825,"1366":6.83,"1367":6.835,"1368":6.84,"1369":6.845,"1370":6.85,"1371":6.855,"1372":6.86,"1373":6.865,"1374":6.87,"1375":6.875,"1376":6.88,"1377":6.885,"1378":6.89,"1379":6.895,"1380":6.9,"1381":6.905,"1382":6.91,"1383":6.915,"1384":6.92,"1385":6.925,"1386":6.93,"1387":6.935,"1388":6.94,"1389":6.945,"1390":6.95,"1391":6.955,"1392":6.96,"1393":6.965,"1394":6.97,"1395":6.975,"1396":6.98,"1397":6.985,"1398":6.99,"1399":6.995,"1400":7.0,"1401":7.005,"1402":7.01,"1403":7.015,"1404":7.02,"1405":7.025,"1406":7.03,"1407":7.035,"1408":7.04,"1409":7.045,"1410":7.05,"1411":7.055,"1412":7.06,"1413":7.065,"1414":7.07,"1415":7.075,"1416":7.08,"1417":7.085,"1418":7.09,"1419":7.095,"1420":7.1,"1421":7.105,"1422":7.11,"1423":7.115,"1424":7.12,"1425":7.125,"1426":7.13,"1427":7.135,"1428":7.14,"1429":7.145,"1430":7.15,"1431":7.155,"1432":7.16,"1433":7.165,"1434":7.17,"1435":7.175,"1436":7.18,"1437":7.185,"1438":7.19,"1439":7.195,"1440":7.2,"1441":7.205,"1442":7.21,"1443":7.215,"1444":7.22,"1445":7.225,"1446":7.23,"1447":7.235,"1448":7.24,"1449":7.245,"1450":7.25,"1451":7.255,"1452":7.26,"1453":7.265,"1454":7.27,"1455":7.275,"1456":7.28,"1457":7.285,"1458":7.29,"1459":7.295,"1460":7.3,"1461":7.305,"1462":7.31,"1463":7.315,"1464":7.32,"1465":7.325,"1466":7.33,"1467":7.335,"1468":7.34,"1469":7.345,"1470":7.35,"1471":7.355,"1472":7.36,"1473":7.365,"1474":7.37,"1475":7.375,"1476":7.38,"1477":7.385,"1478":7.39,"1479":7.395,"1480":7.4,"1481":7.405,"1482":7.41,"1483":7.415,"1484":7.42,"1485":7.425,"1486":7.43,"1487":7.435,"1488":7.44,"1489":7.445,"1490":7.45,"1491":7.455,"1492":7.46,"1493":7.465,"1494":7.47,"1495":7.475,"1496":7.48,"1497":7.485,"1498":7.49,"1499":7.495,"1500":7.5,"1501":7.505,"1502":7.51,"1503":7.515,"1504":7.52,"1505":7.525,"1506":7.53,"1507":7.535,"1508":7.54,"1509":7.545,"1510":7.55,"1511":7.555,"1512":7.56,"1513":7.565,"1514":7.57,"1515":7.575,"1516":7.58,"1517":7.585,"1518":7.59,"1519":7.595,"1520":7.6,"1521":7.605,"1522":7.61,"1523":7.615,"1524":7.62,"1525":7.625,"1526":7.63,"1527":7.635,"1528":7.64,"1529":7.645,"1530":7.65,"1531":7.655,"1532":7.66,"1533":7.665,"1534":7.67,"1535":7.675,"1536":7.68,"1537":7.685,"1538":7.69,"1539":7.695,"1540":7.7,"1541":7.705,"1542":7.71,"1543":7.715,"1544":7.72,"1545":7.725,"1546":7.73,"1547":7.735,"1548":7.74,"1549":7.745,"1550":7.75,"1551":7.755,"1552":7.76,"1553":7.765,"1554":7.77,"1555":7.775,"1556":7.78,"1557":7.785,"1558":7.79,"1559":7.795,"1560":7.8,"1561":7.805,"1562":7.81,"1563":7.815,"1564":7.82,"1565":7.825,"1566":7.83,"1567":7.835,"1568":7.84,"1569":7.845,"1570":7.85,"1571":7.855,"1572":7.86,"1573":7.865,"1574":7.87,"1575":7.875,"1576":7.88,"1577":7.885,"1578":7.89,"1579":7.895,"1580":7.9,"1581":7.905,"1582":7.91,"1583":7.915,"1584":7.92,"1585":7.925,"1586":7.93,"1587":7.935,"1588":7.94,"1589":7.945,"1590":7.95,"1591":7.955,"1592":7.96,"1593":7.965,"1594":7.97,"1595":7.975,"1596":7.98,"1597":7.985,"1598":7.99,"1599":7.995,"1600":8.0,"1601":8.005,"1602":8.01,"1603":8.015,"1604":8.02,"1605":8.025,"1606":8.03,"1607":8.035,"1608":8.04,"1609":8.045,"1610":8.05,"1611":8.055,"1612":8.06,"1613":8.065,"1614":8.07,"1615":8.075,"1616":8.08,"1617":8.085,"1618":8.09,"1619":8.095,"1620":8.1,"1621":8.105,"1622":8.11,"1623":8.115,"1624":8.12,"1625":8.125,"1626":8.13,"1627":8.135,"1628":8.14,"1629":8.145,"1630":8.15,"1631":8.155,"1632":8.16,"1633":8.165,"1634":8.17,"1635":8.175,"1636":8.18,"1637":8.185,"1638":8.19,"1639":8.195,"1640":8.2,"1641":8.205,"1642":8.21,"1643":8.215,"1644":8.22,"1645":8.225,"1646":8.23,"1647":8.235,"1648":8.24,"1649":8.245,"1650":8.25,"1651":8.255,"1652":8.26,"1653":8.265,"1654":8.27,"1655":8.275,"1656":8.28,"1657":8.285,"1658":8.29,"1659":8.295,"1660":8.3,"1661":8.305,"1662":8.31,"1663":8.315,"1664":8.32,"1665":8.325,"1666":8.33,"1667":8.335,"1668":8.34,"1669":8.345,"1670":8.35,"1671":8.355,"1672":8.36,"1673":8.365,"1674":8.37,"1675":8.375,"1676":8.38,"1677":8.385,"1678":8.39,"1679":8.395,"1680":8.4,"1681":8.405,"1682":8.41,"1683":8.415,"1684":8.42,"1685":8.425,"1686":8.43,"1687":8.435,"1688":8.44,"1689":8.445,"1690":8.45,"1691":8.455,"1692":8.46,"1693":8.465,"1694":8.47,"1695":8.475,"1696":8.48,"1697":8.485,"1698":8.49,"1699":8.495,"1700":8.5,"1701":8.505,"1702":8.51,"1703":8.515,"1704":8.52,"1705":8.525,"1706":8.53,"1707":8.535,"1708":8.54,"1709":8.545,"1710":8.55,"1711":8.555,"1712":8.56,"1713":8.565,"1714":8.57,"1715":8.575,"1716":8.58,"1717":8.585,"1718":8.59,"1719":8.595,"1720":8.6,"1721":8.605,"1722":8.61,"1723":8.615,"1724":8.62,"1725":8.625,"1726":8.63,"1727":8.635,"1728":8.64,"1729":8.645,"1730":8.65,"1731":8.655,"1732":8.66,"1733":8.665,"1734":8.67,"1735":8.675,"1736":8.68,"1737":8.685,"1738":8.69,"1739":8.695,"1740":8.7,"1741":8.705,"1742":8.71,"1743":8.715,"1744":8.72,"1745":8.725,"1746":8.73,"1747":8.735,"1748":8.74,"1749":8.745,"1750":8.75,"1751":8.755,"1752":8.76,"1753":8.765,"1754":8.77,"1755":8.775,"1756":8.78,"1757":8.785,"1758":8.79,"1759":8.795,"1760":8.8,"1761":8.805,"1762":8.81,"1763":8.815,"1764":8.82,"1765":8.825,"1766":8.83,"1767":8.835,"1768":8.84,"1769":8.845,"1770":8.85,"1771":8.855,"1772":8.86,"1773":8.865,"1774":8.87,"1775":8.875,"1776":8.88,"1777":8.885,"1778":8.89,"1779":8.895,"1780":8.9,"1781":8.905,"1782":8.91,"1783":8.915,"1784":8.92,"1785":8.925,"1786":8.93,"1787":8.935,"1788":8.94,"1789":8.945,"1790":8.95,"1791":8.955,"1792":8.96,"1793":8.965,"1794":8.97,"1795":8.975,"1796":8.98,"1797":8.985,"1798":8.99,"1799":8.995,"1800":9.0,"1801":9.005,"1802":9.01,"1803":9.015,"1804":9.02,"1805":9.025,"1806":9.03,"1807":9.035,"1808":9.04,"1809":9.045,"1810":9.05,"1811":9.055,"1812":9.06,"1813":9.065,"1814":9.07,"1815":9.075,"1816":9.08,"1817":9.085,"1818":9.09,"1819":9.095,"1820":9.1,"1821":9.105,"1822":9.11,"1823":9.115,"1824":9.12,"1825":9.125,"1826":9.13,"1827":9.135,"1828":9.14,"1829":9.145,"1830":9.15,"1831":9.155,"1832":9.16,"1833":9.165,"1834":9.17,"1835":9.175,"1836":9.18,"1837":9.185,"1838":9.19,"1839":9.195,"1840":9.2,"1841":9.205,"1842":9.21,"1843":9.215,"1844":9.22,"1845":9.225,"1846":9.23,"1847":9.235,"1848":9.24,"1849":9.245,"1850":9.25,"1851":9.255,"1852":9.26,"1853":9.265,"1854":9.27,"1855":9.275,"1856":9.28,"1857":9.285,"1858":9.29,"1859":9.295,"1860":9.3,"1861":9.305,"1862":9.31,"1863":9.315,"1864":9.32,"1865":9.325,"1866":9.33,"1867":9.335,"1868":9.34,"1869":9.345,"1870":9.35,"1871":9.355,"1872":9.36,"1873":9.365,"1874":9.37,"1875":9.375,"1876":9.38,"1877":9.385,"1878":9.39,"1879":9.395,"1880":9.4,"1881":9.405,"1882":9.41,"1883":9.415,"1884":9.42,"1885":9.425,"1886":9.43,"1887":9.435,"1888":9.44,"1889":9.445,"1890":9.45,"1891":9.455,"1892":9.46,"1893":9.465,"1894":9.47,"1895":9.475,"1896":9.48,"1897":9.485,"1898":9.49,"1899":9.495,"1900":9.5,"1901":9.505,"1902":9.51,"1903":9.515,"1904":9.52,"1905":9.525,"1906":9.53,"1907":9.535,"1908":9.54,"1909":9.545,"1910":9.55,"1911":9.555,"1912":9.56,"1913":9.565,"1914":9.57,"1915":9.575,"1916":9.58,"1917":9.585,"1918":9.59,"1919":9.595,"1920":9.6,"1921":9.605,"1922":9.61,"1923":9.615,"1924":9.62,"1925":9.625,"1926":9.63,"1927":9.635,"1928":9.64,"1929":9.645,"1930":9.65,"1931":9.655,"1932":9.66,"1933":9.665,"1934":9.67,"1935":9.675,"1936":9.68,"1937":9.685,"1938":9.69,"1939":9.695,"1940":9.7,"1941":9.705,"1942":9.71,"1943":9.715,"1944":9.72,"1945":9.725,"1946":9.73,"1947":9.735,"1948":9.74,"1949":9.745,"1950":9.75,"1951":9.755,"1952":9.76,"1953":9.765,"1954":9.77,"1955":9.775,"1956":9.78,"1957":9.785,"1958":9.79,"1959":9.795,"1960":9.8,"1961":9.805,"1962":9.81,"1963":9.815,"1964":9.82,"1965":9.825,"1966":9.83,"1967":9.835,"1968":9.84,"1969":9.845,"1970":9.85,"1971":9.855,"1972":9.86,"1973":9.865,"1974":9.87,"1975":9.875,"1976":9.88,"1977":9.885,"1978":9.89,"1979":9.895,"1980":9.9,"1981":9.905,"1982":9.91,"1983":9.915,"1984":9.92,"1985":9.925,"1986":9.93,"1987":9.935,"1988":9.94,"1989":9.945,"1990":9.95,"1991":9.955,"1992":9.96,"1993":9.965,"1994":9.97,"1995":9.975,"1996":9.98,"1997":9.985,"1998":9.99,"1999":9.995,"2000":10.0},"flow_in":{"0":2.200000001,"1":2.2784881489,"2":2.3569762991,"3":2.4351546912,"4":2.513333084,"5":2.5908931852,"6":2.6684532865,"7":2.7450890022,"8":2.8217247179,"9":2.8971336019,"10":2.9725424859,"11":3.0464269338,"12":3.1203113817,"13":3.1923798053,"14":3.2644482289,"15":3.3344162071,"16":3.4043841853,"17":3.4719755864,"18":3.5395669874,"19":3.6045150591,"20":3.6694631307,"21":3.7315115526,"22":3.7935599744,"23":3.8524638696,"24":3.9113677648,"25":3.9668946667,"26":4.0224215686,"27":4.0743523377,"28":4.1262831069,"29":4.1744127964,"30":4.2225424859,"31":4.2666811498,"32":4.3108198138,"33":4.3507932569,"34":4.3907667001,"35":4.4264171656,"36":4.4620676312,"37":4.4932544229,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2,"201":2.2784881494,"202":2.3569762988,"203":2.4351546914,"204":2.5133330839,"205":2.5908931852,"206":2.6684532865,"207":2.7450890022,"208":2.8217247179,"209":2.8971336019,"210":2.9725424859,"211":3.0464269338,"212":3.1203113817,"213":3.1923798053,"214":3.2644482289,"215":3.3344162071,"216":3.4043841853,"217":3.4719755864,"218":3.5395669874,"219":3.6045150591,"220":3.6694631307,"221":3.7315115526,"222":3.7935599744,"223":3.8524638696,"224":3.9113677648,"225":3.9668946667,"226":4.0224215686,"227":4.0743523377,"228":4.1262831069,"229":4.1744127964,"230":4.2225424859,"231":4.2666811498,"232":4.3108198138,"233":4.3507932569,"234":4.3907667001,"235":4.4264171656,"236":4.4620676312,"237":4.4932544229,"238":4.5244412147,"239":4.5510412527,"240":4.5776412907,"241":4.5995495968,"242":4.6214579028,"243":4.6385880148,"244":4.6557181268,"245":4.6680024401,"246":4.6802867533,"247":4.6876767872,"248":4.6950668211,"249":4.6975334105,"250":4.7,"251":4.6975334105,"252":4.6950668211,"253":4.6876767872,"254":4.6802867533,"255":4.6680024401,"256":4.6557181268,"257":4.6385880148,"258":4.6214579028,"259":4.5995495968,"260":4.5776412907,"261":4.5510412527,"262":4.5244412147,"263":4.4932544229,"264":4.4620676312,"265":4.4264171656,"266":4.3907667001,"267":4.3507932569,"268":4.3108198138,"269":4.2666811498,"270":4.2225424859,"271":4.1744127964,"272":4.1262831069,"273":4.0743523377,"274":4.0224215686,"275":3.9668946667,"276":3.9113677648,"277":3.8524638696,"278":3.7935599744,"279":3.7315115526,"280":3.6694631307,"281":3.6045150591,"282":3.5395669874,"283":3.4719755864,"284":3.4043841853,"285":3.3344162071,"286":3.2644482289,"287":3.1923798053,"288":3.1203113817,"289":3.0464269338,"290":2.9725424859,"291":2.8971336019,"292":2.8217247179,"293":2.7450890022,"294":2.6684532865,"295":2.5908931852,"296":2.5133330839,"297":2.4351546914,"298":2.3569762988,"299":2.2784881494,"300":2.2,"301":2.1215118506,"302":2.0430237012,"303":1.9648453086,"304":1.8866669161,"305":1.8091068148,"306":1.7315467135,"307":1.6549109978,"308":1.5782752821,"309":1.5028663981,"310":1.4274575141,"311":1.3535730662,"312":1.2796886183,"313":1.2076201947,"314":1.1355517711,"315":1.0655837929,"316":0.9956158147,"317":0.9280244136,"318":0.8604330126,"319":0.7954849409,"320":0.7305368693,"321":0.6684884474,"322":0.6064400256,"323":0.5475361304,"324":0.4886322352,"325":0.4331053333,"326":0.3775784314,"327":0.3256476623,"328":0.2737168931,"329":0.2255872036,"330":0.1774575141,"331":0.1333188502,"332":0.0891801862,"333":0.0492067431,"334":0.0092332999,"335":-0.0264171656,"336":-0.0620676312,"337":-0.0932544229,"338":-0.1244412147,"339":-0.1510412527,"340":-0.1776412907,"341":-0.1995495968,"342":-0.2214579028,"343":-0.2385880148,"344":-0.2557181268,"345":-0.2680024401,"346":-0.2802867533,"347":-0.2876767872,"348":-0.2950668211,"349":-0.2975334105,"350":-0.3,"351":-0.2975334105,"352":-0.2950668211,"353":-0.2876767872,"354":-0.2802867533,"355":-0.2680024401,"356":-0.2557181268,"357":-0.2385880148,"358":-0.2214579028,"359":-0.1995495968,"360":-0.1776412907,"361":-0.1510412527,"362":-0.1244412147,"363":-0.0932544229,"364":-0.0620676312,"365":-0.0264171656,"366":0.0092332999,"367":0.0492067431,"368":0.0891801862,"369":0.1333188502,"370":0.1774575141,"371":0.2255872036,"372":0.2737168931,"373":0.3256476623,"374":0.3775784314,"375":0.4331053333,"376":0.4886322352,"377":0.5475361304,"378":0.6064400256,"379":0.6684884474,"380":0.7305368693,"381":0.7954849409,"382":0.8604330126,"383":0.9280244136,"384":0.9956158147,"385":1.0655837929,"386":1.1355517711,"387":1.2076201947,"388":1.2796886183,"389":1.3535730662,"390":1.4274575141,"391":1.5028663981,"392":1.5782752821,"393":1.6549109978,"394":1.7315467135,"395":1.8091068148,"396":1.8866669161,"397":1.9648453086,"398":2.0430237012,"399":2.1215118506,"400":2.2,"401":2.2784881494,"402":2.3569762988,"403":2.4351546914,"404":2.5133330839,"405":2.5908931852,"406":2.6684532865,"407":2.7450890022,"408":2.8217247179,"409":2.8971336019,"410":2.9725424859,"411":3.0464269338,"412":3.1203113817,"413":3.1923798053,"414":3.2644482289,"415":3.3344162071,"416":3.4043841853,"417":3.4719755864,"418":3.5395669874,"419":3.6045150591,"420":3.6694631307,"421":3.7315115526,"422":3.7935599744,"423":3.8524638696,"424":3.9113677648,"425":3.9668946667,"426":4.0224215686,"427":4.0743523377,"428":4.1262831069,"429":4.1744127964,"430":4.2225424859,"431":4.2666811498,"432":4.3108198138,"433":4.3507932569,"434":4.3907667001,"435":4.4264171656,"436":4.4620676312,"437":4.4932544229,"438":4.5244412147,"439":4.5510412527,"440":4.5776412907,"441":4.5995495968,"442":4.6214579028,"443":4.6385880148,"444":4.6557181268,"445":4.6680024401,"446":4.6802867533,"447":4.6876767872,"448":4.6950668211,"449":4.6975334105,"450":4.7,"451":4.6975334105,"452":4.6950668211,"453":4.6876767872,"454":4.6802867533,"455":4.6680024401,"456":4.6557181268,"457":4.6385880148,"458":4.6214579028,"459":4.5995495968,"460":4.5776412907,"461":4.5510412527,"462":4.5244412147,"463":4.4932544229,"464":4.4620676312,"465":4.4264171656,"466":4.3907667001,"467":4.3507932569,"468":4.3108198138,"469":4.2666811498,"470":4.2225424859,"471":4.1744127964,"472":4.1262831069,"473":4.0743523377,"474":4.0224215686,"475":3.9668946667,"476":3.9113677648,"477":3.8524638696,"478":3.7935599744,"479":3.7315115526,"480":3.6694631307,"481":3.6045150591,"482":3.5395669874,"483":3.4719755864,"484":3.4043841853,"485":3.3344162071,"486":3.2644482289,"487":3.1923798053,"488":3.1203113817,"489":3.0464269338,"490":2.9725424859,"491":2.8971336019,"492":2.8217247179,"493":2.7450890022,"494":2.6684532865,"495":2.5908931852,"496":2.5133330839,"497":2.4351546914,"498":2.3569762988,"499":2.2784881494,"500":2.2,"501":2.1215118506,"502":2.0430237012,"503":1.9648453086,"504":1.8866669161,"505":1.8091068148,"506":1.7315467135,"507":1.6549109978,"508":1.5782752821,"509":1.5028663981,"510":1.4274575141,"511":1.3535730662,"512":1.2796886183,"513":1.2076201947,"514":1.1355517711,"515":1.0655837929,"516":0.9956158147,"517":0.9280244136,"518":0.8604330126,"519":0.7954849409,"520":0.7305368693,"521":0.6684884474,"522":0.6064400256,"523":0.5475361304,"524":0.4886322352,"525":0.4331053333,"526":0.3775784314,"527":0.3256476623,"528":0.2737168931,"529":0.2255872036,"530":0.1774575141,"531":0.1333188502,"532":0.0891801862,"533":0.0492067431,"534":0.0092332999,"535":-0.0264171656,"536":-0.0620676312,"537":-0.0932544229,"538":-0.1244412147,"539":-0.1510412527,"540":-0.1776412907,"541":-0.1995495968,"542":-0.2214579028,"543":-0.2385880148,"544":-0.2557181268,"545":-0.2680024401,"546":-0.2802867533,"547":-0.2876767872,"548":-0.2950668211,"549":-0.2975334105,"550":-0.3,"551":-0.2975334105,"552":-0.2950668211,"553":-0.2876767872,"554":-0.2802867533,"555":-0.2680024401,"556":-0.2557181268,"557":-0.2385880148,"558":-0.2214579028,"559":-0.1995495968,"560":-0.1776412907,"561":-0.1510412527,"562":-0.1244412147,"563":-0.0932544229,"564":-0.0620676312,"565":-0.0264171656,"566":0.0092332999,"567":0.0492067431,"568":0.0891801862,"569":0.1333188502,"570":0.1774575141,"571":0.2255872036,"572":0.2737168931,"573":0.3256476623,"574":0.3775784314,"575":0.4331053333,"576":0.4886322352,"577":0.5475361304,"578":0.6064400256,"579":0.6684884474,"580":0.7305368693,"581":0.7954849409,"582":0.8604330126,"583":0.9280244136,"584":0.9956158147,"585":1.0655837929,"586":1.1355517711,"587":1.2076201947,"588":1.2796886183,"589":1.3535730662,"590":1.4274575141,"591":1.5028663981,"592":1.5782752821,"593":1.6549109978,"594":1.7315467135,"595":1.8091068148,"596":1.8866669161,"597":1.9648453086,"598":2.0430237012,"599":2.1215118506,"600":2.2,"601":2.2784881494,"602":2.3569762988,"603":2.4351546914,"604":2.5133330839,"605":2.5908931852,"606":2.6684532865,"607":2.7450890022,"608":2.8217247179,"609":2.8971336019,"610":2.9725424859,"611":3.0464269338,"612":3.1203113817,"613":3.1923798053,"614":3.2644482289,"615":3.3344162071,"616":3.4043841853,"617":3.4719755864,"618":3.5395669874,"619":3.6045150591,"620":3.6694631307,"621":3.7315115526,"622":3.7935599744,"623":3.8524638696,"624":3.9113677648,"625":3.9668946667,"626":4.0224215686,"627":4.0743523377,"628":4.1262831069,"629":4.1744127964,"630":4.2225424859,"631":4.2666811498,"632":4.3108198138,"633":4.3507932569,"634":4.3907667001,"635":4.4264171656,"636":4.4620676312,"637":4.4932544229,"638":4.5244412147,"639":4.5510412527,"640":4.5776412907,"641":4.5995495968,"642":4.6214579028,"643":4.6385880148,"644":4.6557181268,"645":4.6680024401,"646":4.6802867533,"647":4.6876767872,"648":4.6950668211,"649":4.6975334105,"650":4.7,"651":4.6975334105,"652":4.6950668211,"653":4.6876767872,"654":4.6802867533,"655":4.6680024401,"656":4.6557181268,"657":4.6385880148,"658":4.6214579028,"659":4.5995495968,"660":4.5776412907,"661":4.5510412527,"662":4.5244412147,"663":4.4932544229,"664":4.4620676312,"665":4.4264171656,"666":4.3907667001,"667":4.3507932569,"668":4.3108198138,"669":4.2666811498,"670":4.2225424859,"671":4.1744127964,"672":4.1262831069,"673":4.0743523377,"674":4.0224215686,"675":3.9668946667,"676":3.9113677648,"677":3.8524638696,"678":3.7935599744,"679":3.7315115526,"680":3.6694631307,"681":3.6045150591,"682":3.5395669874,"683":3.4719755864,"684":3.4043841853,"685":3.3344162071,"686":3.2644482289,"687":3.1923798053,"688":3.1203113817,"689":3.0464269338,"690":2.9725424859,"691":2.8971336019,"692":2.8217247179,"693":2.7450890022,"694":2.6684532865,"695":2.5908931852,"696":2.5133330839,"697":2.4351546914,"698":2.3569762988,"699":2.2784881494,"700":2.2,"701":2.1215118506,"702":2.0430237012,"703":1.9648453086,"704":1.8866669161,"705":1.8091068148,"706":1.7315467135,"707":1.6549109978,"708":1.5782752821,"709":1.5028663981,"710":1.4274575141,"711":1.3535730662,"712":1.2796886183,"713":1.2076201947,"714":1.1355517711,"715":1.0655837929,"716":0.9956158147,"717":0.9280244136,"718":0.8604330126,"719":0.7954849409,"720":0.7305368693,"721":0.6684884474,"722":0.6064400256,"723":0.5475361304,"724":0.4886322352,"725":0.4331053333,"726":0.3775784314,"727":0.3256476623,"728":0.2737168931,"729":0.2255872036,"730":0.1774575141,"731":0.1333188502,"732":0.0891801862,"733":0.0492067431,"734":0.0092332999,"735":-0.0264171656,"736":-0.0620676312,"737":-0.0932544229,"738":-0.1244412147,"739":-0.1510412527,"740":-0.1776412907,"741":-0.1995495968,"742":-0.2214579028,"743":-0.2385880148,"744":-0.2557181268,"745":-0.2680024401,"746":-0.2802867533,"747":-0.2876767872,"748":-0.2950668211,"749":-0.2975334105,"750":-0.3,"751":-0.2975334105,"752":-0.2950668211,"753":-0.2876767872,"754":-0.2802867533,"755":-0.2680024401,"756":-0.2557181268,"757":-0.2385880148,"758":-0.2214579028,"759":-0.1995495968,"760":-0.1776412907,"761":-0.1510412527,"762":-0.1244412147,"763":-0.0932544229,"764":-0.0620676312,"765":-0.0264171656,"766":0.0092332999,"767":0.0492067431,"768":0.0891801862,"769":0.1333188502,"770":0.1774575141,"771":0.2255872036,"772":0.2737168931,"773":0.3256476623,"774":0.3775784314,"775":0.4331053333,"776":0.4886322352,"777":0.5475361304,"778":0.6064400256,"779":0.6684884474,"780":0.7305368693,"781":0.7954849409,"782":0.8604330126,"783":0.9280244136,"784":0.9956158147,"785":1.0655837929,"786":1.1355517711,"787":1.2076201947,"788":1.2796886183,"789":1.3535730662,"790":1.4274575141,"791":1.5028663981,"792":1.5782752821,"793":1.6549109978,"794":1.7315467135,"795":1.8091068148,"796":1.8866669161,"797":1.9648453086,"798":2.0430237012,"799":2.1215118506,"800":2.2,"801":2.2784881494,"802":2.3569762988,"803":2.4351546914,"804":2.5133330839,"805":2.5908931852,"806":2.6684532865,"807":2.7450890022,"808":2.8217247179,"809":2.8971336019,"810":2.9725424859,"811":3.0464269338,"812":3.1203113817,"813":3.1923798053,"814":3.2644482289,"815":3.3344162071,"816":3.4043841853,"817":3.4719755864,"818":3.5395669874,"819":3.6045150591,"820":3.6694631307,"821":3.7315115526,"822":3.7935599744,"823":3.8524638696,"824":3.9113677648,"825":3.9668946667,"826":4.0224215686,"827":4.0743523377,"828":4.1262831069,"829":4.1744127964,"830":4.2225424859,"831":4.2666811498,"832":4.3108198138,"833":4.3507932569,"834":4.3907667001,"835":4.4264171656,"836":4.4620676312,"837":4.4932544229,"838":4.5244412147,"839":4.5510412527,"840":4.5776412907,"841":4.5995495968,"842":4.6214579028,"843":4.6385880148,"844":4.6557181268,"845":4.6680024401,"846":4.6802867533,"847":4.6876767872,"848":4.6950668211,"849":4.6975334105,"850":4.7,"851":4.6975334105,"852":4.6950668211,"853":4.6876767872,"854":4.6802867533,"855":4.6680024401,"856":4.6557181268,"857":4.6385880148,"858":4.6214579028,"859":4.5995495968,"860":4.5776412907,"861":4.5510412527,"862":4.5244412147,"863":4.4932544229,"864":4.4620676312,"865":4.4264171656,"866":4.3907667001,"867":4.3507932569,"868":4.3108198138,"869":4.2666811498,"870":4.2225424859,"871":4.1744127964,"872":4.1262831069,"873":4.0743523377,"874":4.0224215686,"875":3.9668946667,"876":3.9113677648,"877":3.8524638696,"878":3.7935599744,"879":3.7315115526,"880":3.6694631307,"881":3.6045150591,"882":3.5395669874,"883":3.4719755864,"884":3.4043841853,"885":3.3344162071,"886":3.2644482289,"887":3.1923798053,"888":3.1203113817,"889":3.0464269338,"890":2.9725424859,"891":2.8971336019,"892":2.8217247179,"893":2.7450890022,"894":2.6684532865,"895":2.5908931852,"896":2.5133330839,"897":2.4351546914,"898":2.3569762988,"899":2.2784881494,"900":2.2,"901":2.1215118506,"902":2.0430237012,"903":1.9648453086,"904":1.8866669161,"905":1.8091068148,"906":1.7315467135,"907":1.6549109978,"908":1.5782752821,"909":1.5028663981,"910":1.4274575141,"911":1.3535730662,"912":1.2796886183,"913":1.2076201947,"914":1.1355517711,"915":1.0655837929,"916":0.9956158147,"917":0.9280244136,"918":0.8604330126,"919":0.7954849409,"920":0.7305368693,"921":0.6684884474,"922":0.6064400256,"923":0.5475361304,"924":0.4886322352,"925":0.4331053333,"926":0.3775784314,"927":0.3256476623,"928":0.2737168931,"929":0.2255872036,"930":0.1774575141,"931":0.1333188502,"932":0.0891801862,"933":0.0492067431,"934":0.0092332999,"935":-0.0264171656,"936":-0.0620676312,"937":-0.0932544229,"938":-0.1244412147,"939":-0.1510412527,"940":-0.1776412907,"941":-0.1995495968,"942":-0.2214579028,"943":-0.2385880148,"944":-0.2557181268,"945":-0.2680024401,"946":-0.2802867533,"947":-0.2876767872,"948":-0.2950668211,"949":-0.2975334105,"950":-0.3,"951":-0.2975334105,"952":-0.2950668211,"953":-0.2876767872,"954":-0.2802867533,"955":-0.2680024401,"956":-0.2557181268,"957":-0.2385880148,"958":-0.2214579028,"959":-0.1995495968,"960":-0.1776412907,"961":-0.1510412527,"962":-0.1244412147,"963":-0.0932544229,"964":-0.0620676312,"965":-0.0264171656,"966":0.0092332999,"967":0.0492067431,"968":0.0891801862,"969":0.1333188502,"970":0.1774575141,"971":0.2255872036,"972":0.2737168931,"973":0.3256476623,"974":0.3775784314,"975":0.4331053333,"976":0.4886322352,"977":0.5475361304,"978":0.6064400256,"979":0.6684884474,"980":0.7305368693,"981":0.7954849409,"982":0.8604330126,"983":0.9280244136,"984":0.9956158147,"985":1.0655837929,"986":1.1355517711,"987":1.2076201947,"988":1.2796886183,"989":1.3535730662,"990":1.4274575141,"991":1.5028663981,"992":1.5782752821,"993":1.6549109978,"994":1.7315467135,"995":1.8091068148,"996":1.8866669161,"997":1.9648453086,"998":2.0430237012,"999":2.1215118506,"1000":2.2,"1001":2.2784881494,"1002":2.3569762988,"1003":2.4351546914,"1004":2.5133330839,"1005":2.5908931852,"1006":2.6684532865,"1007":2.7450890022,"1008":2.8217247179,"1009":2.8971336019,"1010":2.9725424859,"1011":3.0464269338,"1012":3.1203113817,"1013":3.1923798053,"1014":3.2644482289,"1015":3.3344162071,"1016":3.4043841853,"1017":3.4719755864,"1018":3.5395669874,"1019":3.6045150591,"1020":3.6694631307,"1021":3.7315115526,"1022":3.7935599744,"1023":3.8524638696,"1024":3.9113677648,"1025":3.9668946667,"1026":4.0224215686,"1027":4.0743523377,"1028":4.1262831069,"1029":4.1744127964,"1030":4.2225424859,"1031":4.2666811498,"1032":4.3108198138,"1033":4.3507932569,"1034":4.3907667001,"1035":4.4264171656,"1036":4.4620676312,"1037":4.4932544229,"1038":4.5244412147,"1039":4.5510412527,"1040":4.5776412907,"1041":4.5995495968,"1042":4.6214579028,"1043":4.6385880148,"1044":4.6557181268,"1045":4.6680024401,"1046":4.6802867533,"1047":4.6876767872,"1048":4.6950668211,"1049":4.6975334105,"1050":4.7,"1051":4.6975334105,"1052":4.6950668211,"1053":4.6876767872,"1054":4.6802867533,"1055":4.6680024401,"1056":4.6557181268,"1057":4.6385880148,"1058":4.6214579028,"1059":4.5995495968,"1060":4.5776412907,"1061":4.5510412527,"1062":4.5244412147,"1063":4.4932544229,"1064":4.4620676312,"1065":4.4264171656,"1066":4.3907667001,"1067":4.3507932569,"1068":4.3108198138,"1069":4.2666811498,"1070":4.2225424859,"1071":4.1744127964,"1072":4.1262831069,"1073":4.0743523377,"1074":4.0224215686,"1075":3.9668946667,"1076":3.9113677648,"1077":3.8524638696,"1078":3.7935599744,"1079":3.7315115526,"1080":3.6694631307,"1081":3.6045150591,"1082":3.5395669874,"1083":3.4719755864,"1084":3.4043841853,"1085":3.3344162071,"1086":3.2644482289,"1087":3.1923798053,"1088":3.1203113817,"1089":3.0464269338,"1090":2.9725424859,"1091":2.8971336019,"1092":2.8217247179,"1093":2.7450890022,"1094":2.6684532865,"1095":2.5908931852,"1096":2.5133330839,"1097":2.4351546914,"1098":2.3569762988,"1099":2.2784881494,"1100":2.2,"1101":2.1215118506,"1102":2.0430237012,"1103":1.9648453086,"1104":1.8866669161,"1105":1.8091068148,"1106":1.7315467135,"1107":1.6549109978,"1108":1.5782752821,"1109":1.5028663981,"1110":1.4274575141,"1111":1.3535730662,"1112":1.2796886183,"1113":1.2076201947,"1114":1.1355517711,"1115":1.0655837929,"1116":0.9956158147,"1117":0.9280244136,"1118":0.8604330126,"1119":0.7954849409,"1120":0.7305368693,"1121":0.6684884474,"1122":0.6064400256,"1123":0.5475361304,"1124":0.4886322352,"1125":0.4331053333,"1126":0.3775784314,"1127":0.3256476623,"1128":0.2737168931,"1129":0.2255872036,"1130":0.1774575141,"1131":0.1333188502,"1132":0.0891801862,"1133":0.0492067431,"1134":0.0092332999,"1135":-0.0264171656,"1136":-0.0620676312,"1137":-0.0932544229,"1138":-0.1244412147,"1139":-0.1510412527,"1140":-0.1776412907,"1141":-0.1995495968,"1142":-0.2214579028,"1143":-0.2385880148,"1144":-0.2557181268,"1145":-0.2680024401,"1146":-0.2802867533,"1147":-0.2876767872,"1148":-0.2950668211,"1149":-0.2975334105,"1150":-0.3,"1151":-0.2975334105,"1152":-0.2950668211,"1153":-0.2876767872,"1154":-0.2802867533,"1155":-0.2680024401,"1156":-0.2557181268,"1157":-0.2385880148,"1158":-0.2214579028,"1159":-0.1995495968,"1160":-0.1776412907,"1161":-0.1510412527,"1162":-0.1244412147,"1163":-0.0932544229,"1164":-0.0620676312,"1165":-0.0264171656,"1166":0.0092332999,"1167":0.0492067431,"1168":0.0891801862,"1169":0.1333188502,"1170":0.1774575141,"1171":0.2255872036,"1172":0.2737168931,"1173":0.3256476623,"1174":0.3775784314,"1175":0.4331053333,"1176":0.4886322352,"1177":0.5475361304,"1178":0.6064400256,"1179":0.6684884474,"1180":0.7305368693,"1181":0.7954849409,"1182":0.8604330126,"1183":0.9280244136,"1184":0.9956158147,"1185":1.0655837929,"1186":1.1355517711,"1187":1.2076201947,"1188":1.2796886183,"1189":1.3535730662,"1190":1.4274575141,"1191":1.5028663981,"1192":1.5782752821,"1193":1.6549109978,"1194":1.7315467135,"1195":1.8091068148,"1196":1.8866669161,"1197":1.9648453086,"1198":2.0430237012,"1199":2.1215118506,"1200":2.2,"1201":2.2784881494,"1202":2.3569762988,"1203":2.4351546914,"1204":2.5133330839,"1205":2.5908931852,"1206":2.6684532865,"1207":2.7450890022,"1208":2.8217247179,"1209":2.8971336019,"1210":2.9725424859,"1211":3.0464269338,"1212":3.1203113817,"1213":3.1923798053,"1214":3.2644482289,"1215":3.3344162071,"1216":3.4043841853,"1217":3.4719755864,"1218":3.5395669874,"1219":3.6045150591,"1220":3.6694631307,"1221":3.7315115526,"1222":3.7935599744,"1223":3.8524638696,"1224":3.9113677648,"1225":3.9668946667,"1226":4.0224215686,"1227":4.0743523377,"1228":4.1262831069,"1229":4.1744127964,"1230":4.2225424859,"1231":4.2666811498,"1232":4.3108198138,"1233":4.3507932569,"1234":4.3907667001,"1235":4.4264171656,"1236":4.4620676312,"1237":4.4932544229,"1238":4.5244412147,"1239":4.5510412527,"1240":4.5776412907,"1241":4.5995495968,"1242":4.6214579028,"1243":4.6385880148,"1244":4.6557181268,"1245":4.6680024401,"1246":4.6802867533,"1247":4.6876767872,"1248":4.6950668211,"1249":4.6975334105,"1250":4.7,"1251":4.6975334105,"1252":4.6950668211,"1253":4.6876767872,"1254":4.6802867533,"1255":4.6680024401,"1256":4.6557181268,"1257":4.6385880148,"1258":4.6214579028,"1259":4.5995495968,"1260":4.5776412907,"1261":4.5510412527,"1262":4.5244412147,"1263":4.4932544229,"1264":4.4620676312,"1265":4.4264171656,"1266":4.3907667001,"1267":4.3507932569,"1268":4.3108198138,"1269":4.2666811498,"1270":4.2225424859,"1271":4.1744127964,"1272":4.1262831069,"1273":4.0743523377,"1274":4.0224215686,"1275":3.9668946667,"1276":3.9113677648,"1277":3.8524638696,"1278":3.7935599744,"1279":3.7315115526,"1280":3.6694631307,"1281":3.6045150591,"1282":3.5395669874,"1283":3.4719755864,"1284":3.4043841853,"1285":3.3344162071,"1286":3.2644482289,"1287":3.1923798053,"1288":3.1203113817,"1289":3.0464269338,"1290":2.9725424859,"1291":2.8971336019,"1292":2.8217247179,"1293":2.7450890022,"1294":2.6684532865,"1295":2.5908931852,"1296":2.5133330839,"1297":2.4351546914,"1298":2.3569762988,"1299":2.2784881494,"1300":2.2,"1301":2.1215118506,"1302":2.0430237012,"1303":1.9648453086,"1304":1.8866669161,"1305":1.8091068148,"1306":1.7315467135,"1307":1.6549109978,"1308":1.5782752821,"1309":1.5028663981,"1310":1.4274575141,"1311":1.3535730662,"1312":1.2796886183,"1313":1.2076201947,"1314":1.1355517711,"1315":1.0655837929,"1316":0.9956158147,"1317":0.9280244136,"1318":0.8604330126,"1319":0.7954849409,"1320":0.7305368693,"1321":0.6684884474,"1322":0.6064400256,"1323":0.5475361304,"1324":0.4886322352,"1325":0.4331053333,"1326":0.3775784314,"1327":0.3256476623,"1328":0.2737168931,"1329":0.2255872036,"1330":0.1774575141,"1331":0.1333188502,"1332":0.0891801862,"1333":0.0492067431,"1334":0.0092332999,"1335":-0.0264171656,"1336":-0.0620676312,"1337":-0.0932544229,"1338":-0.1244412147,"1339":-0.1510412527,"1340":-0.1776412907,"1341":-0.1995495968,"1342":-0.2214579028,"1343":-0.2385880148,"1344":-0.2557181268,"1345":-0.2680024401,"1346":-0.2802867533,"1347":-0.2876767872,"1348":-0.2950668211,"1349":-0.2975334105,"1350":-0.3,"1351":-0.2975334105,"1352":-0.2950668211,"1353":-0.2876767872,"1354":-0.2802867533,"1355":-0.2680024401,"1356":-0.2557181268,"1357":-0.2385880148,"1358":-0.2214579028,"1359":-0.1995495968,"1360":-0.1776412907,"1361":-0.1510412527,"1362":-0.1244412147,"1363":-0.0932544229,"1364":-0.0620676312,"1365":-0.0264171656,"1366":0.0092332999,"1367":0.0492067431,"1368":0.0891801862,"1369":0.1333188502,"1370":0.1774575141,"1371":0.2255872036,"1372":0.2737168931,"1373":0.3256476623,"1374":0.3775784314,"1375":0.4331053333,"1376":0.4886322352,"1377":0.5475361304,"1378":0.6064400256,"1379":0.6684884474,"1380":0.7305368693,"1381":0.7954849409,"1382":0.8604330126,"1383":0.9280244136,"1384":0.9956158147,"1385":1.0655837929,"1386":1.1355517711,"1387":1.2076201947,"1388":1.2796886183,"1389":1.3535730662,"1390":1.4274575141,"1391":1.5028663981,"1392":1.5782752821,"1393":1.6549109978,"1394":1.7315467135,"1395":1.8091068148,"1396":1.8866669161,"1397":1.9648453086,"1398":2.0430237012,"1399":2.1215118506,"1400":2.2,"1401":2.2784881494,"1402":2.3569762988,"1403":2.4351546914,"1404":2.5133330839,"1405":2.5908931852,"1406":2.6684532865,"1407":2.7450890022,"1408":2.8217247179,"1409":2.8971336019,"1410":2.9725424859,"1411":3.0464269338,"1412":3.1203113817,"1413":3.1923798053,"1414":3.2644482289,"1415":3.3344162071,"1416":3.4043841853,"1417":3.4719755864,"1418":3.5395669874,"1419":3.6045150591,"1420":3.6694631307,"1421":3.7315115526,"1422":3.7935599744,"1423":3.8524638696,"1424":3.9113677648,"1425":3.9668946667,"1426":4.0224215686,"1427":4.0743523377,"1428":4.1262831069,"1429":4.1744127964,"1430":4.2225424859,"1431":4.2666811498,"1432":4.3108198138,"1433":4.3507932569,"1434":4.3907667001,"1435":4.4264171656,"1436":4.4620676312,"1437":4.4932544229,"1438":4.5244412147,"1439":4.5510412527,"1440":4.5776412907,"1441":4.5995495968,"1442":4.6214579028,"1443":4.6385880148,"1444":4.6557181268,"1445":4.6680024401,"1446":4.6802867533,"1447":4.6876767872,"1448":4.6950668211,"1449":4.6975334105,"1450":4.7,"1451":4.6975334105,"1452":4.6950668211,"1453":4.6876767872,"1454":4.6802867533,"1455":4.6680024401,"1456":4.6557181268,"1457":4.6385880148,"1458":4.6214579028,"1459":4.5995495968,"1460":4.5776412907,"1461":4.5510412527,"1462":4.5244412147,"1463":4.4932544229,"1464":4.4620676312,"1465":4.4264171656,"1466":4.3907667001,"1467":4.3507932569,"1468":4.3108198138,"1469":4.2666811498,"1470":4.2225424859,"1471":4.1744127964,"1472":4.1262831069,"1473":4.0743523377,"1474":4.0224215686,"1475":3.9668946667,"1476":3.9113677648,"1477":3.8524638696,"1478":3.7935599744,"1479":3.7315115526,"1480":3.6694631307,"1481":3.6045150591,"1482":3.5395669874,"1483":3.4719755864,"1484":3.4043841853,"1485":3.3344162071,"1486":3.2644482289,"1487":3.1923798053,"1488":3.1203113817,"1489":3.0464269338,"1490":2.9725424859,"1491":2.8971336019,"1492":2.8217247179,"1493":2.7450890022,"1494":2.6684532865,"1495":2.5908931852,"1496":2.5133330839,"1497":2.4351546914,"1498":2.3569762988,"1499":2.2784881494,"1500":2.2,"1501":2.1215118506,"1502":2.0430237012,"1503":1.9648453086,"1504":1.8866669161,"1505":1.8091068148,"1506":1.7315467135,"1507":1.6549109978,"1508":1.5782752821,"1509":1.5028663981,"1510":1.4274575141,"1511":1.3535730662,"1512":1.2796886183,"1513":1.2076201947,"1514":1.1355517711,"1515":1.0655837929,"1516":0.9956158147,"1517":0.9280244136,"1518":0.8604330126,"1519":0.7954849409,"1520":0.7305368693,"1521":0.6684884474,"1522":0.6064400256,"1523":0.5475361304,"1524":0.4886322352,"1525":0.4331053333,"1526":0.3775784314,"1527":0.3256476623,"1528":0.2737168931,"1529":0.2255872036,"1530":0.1774575141,"1531":0.1333188502,"1532":0.0891801862,"1533":0.0492067431,"1534":0.0092332999,"1535":-0.0264171656,"1536":-0.0620676312,"1537":-0.0932544229,"1538":-0.1244412147,"1539":-0.1510412527,"1540":-0.1776412907,"1541":-0.1995495968,"1542":-0.2214579028,"1543":-0.2385880148,"1544":-0.2557181268,"1545":-0.2680024401,"1546":-0.2802867533,"1547":-0.2876767872,"1548":-0.2950668211,"1549":-0.2975334105,"1550":-0.3,"1551":-0.2975334105,"1552":-0.2950668211,"1553":-0.2876767872,"1554":-0.2802867533,"1555":-0.2680024401,"1556":-0.2557181268,"1557":-0.2385880148,"1558":-0.2214579028,"1559":-0.1995495968,"1560":-0.1776412907,"1561":-0.1510412527,"1562":-0.1244412147,"1563":-0.0932544229,"1564":-0.0620676312,"1565":-0.0264171656,"1566":0.0092332999,"1567":0.0492067431,"1568":0.0891801862,"1569":0.1333188502,"1570":0.1774575141,"1571":0.2255872036,"1572":0.2737168931,"1573":0.3256476623,"1574":0.3775784314,"1575":0.4331053333,"1576":0.4886322352,"1577":0.5475361304,"1578":0.6064400256,"1579":0.6684884474,"1580":0.7305368693,"1581":0.7954849409,"1582":0.8604330126,"1583":0.9280244136,"1584":0.9956158147,"1585":1.0655837929,"1586":1.1355517711,"1587":1.2076201947,"1588":1.2796886183,"1589":1.3535730662,"1590":1.4274575141,"1591":1.5028663981,"1592":1.5782752821,"1593":1.6549109978,"1594":1.7315467135,"1595":1.8091068148,"1596":1.8866669161,"1597":1.9648453086,"1598":2.0430237012,"1599":2.1215118506,"1600":2.2,"1601":2.2784881494,"1602":2.3569762988,"1603":2.4351546914,"1604":2.5133330839,"1605":2.5908931852,"1606":2.6684532865,"1607":2.7450890022,"1608":2.8217247179,"1609":2.8971336019,"1610":2.9725424859,"1611":3.0464269338,"1612":3.1203113817,"1613":3.1923798053,"1614":3.2644482289,"1615":3.3344162071,"1616":3.4043841853,"1617":3.4719755864,"1618":3.5395669874,"1619":3.6045150591,"1620":3.6694631307,"1621":3.7315115526,"1622":3.7935599744,"1623":3.8524638696,"1624":3.9113677648,"1625":3.9668946667,"1626":4.0224215686,"1627":4.0743523377,"1628":4.1262831069,"1629":4.1744127964,"1630":4.2225424859,"1631":4.2666811498,"1632":4.3108198138,"1633":4.3507932569,"1634":4.3907667001,"1635":4.4264171656,"1636":4.4620676312,"1637":4.4932544229,"1638":4.5244412147,"1639":4.5510412527,"1640":4.5776412907,"1641":4.5995495968,"1642":4.6214579028,"1643":4.6385880148,"1644":4.6557181268,"1645":4.6680024401,"1646":4.6802867533,"1647":4.6876767872,"1648":4.6950668211,"1649":4.6975334105,"1650":4.7,"1651":4.6975334105,"1652":4.6950668211,"1653":4.6876767872,"1654":4.6802867533,"1655":4.6680024401,"1656":4.6557181268,"1657":4.6385880148,"1658":4.6214579028,"1659":4.5995495968,"1660":4.5776412907,"1661":4.5510412527,"1662":4.5244412147,"1663":4.4932544229,"1664":4.4620676312,"1665":4.4264171656,"1666":4.3907667001,"1667":4.3507932569,"1668":4.3108198138,"1669":4.2666811498,"1670":4.2225424859,"1671":4.1744127964,"1672":4.1262831069,"1673":4.0743523377,"1674":4.0224215686,"1675":3.9668946667,"1676":3.9113677648,"1677":3.8524638696,"1678":3.7935599744,"1679":3.7315115526,"1680":3.6694631307,"1681":3.6045150591,"1682":3.5395669874,"1683":3.4719755864,"1684":3.4043841853,"1685":3.3344162071,"1686":3.2644482289,"1687":3.1923798053,"1688":3.1203113817,"1689":3.0464269338,"1690":2.9725424859,"1691":2.8971336019,"1692":2.8217247179,"1693":2.7450890022,"1694":2.6684532865,"1695":2.5908931852,"1696":2.5133330839,"1697":2.4351546914,"1698":2.3569762988,"1699":2.2784881494,"1700":2.2,"1701":2.1215118506,"1702":2.0430237012,"1703":1.9648453086,"1704":1.8866669161,"1705":1.8091068148,"1706":1.7315467135,"1707":1.6549109978,"1708":1.5782752821,"1709":1.5028663981,"1710":1.4274575141,"1711":1.3535730662,"1712":1.2796886183,"1713":1.2076201947,"1714":1.1355517711,"1715":1.0655837929,"1716":0.9956158147,"1717":0.9280244136,"1718":0.8604330126,"1719":0.7954849409,"1720":0.7305368693,"1721":0.6684884474,"1722":0.6064400256,"1723":0.5475361304,"1724":0.4886322352,"1725":0.4331053333,"1726":0.3775784314,"1727":0.3256476623,"1728":0.2737168931,"1729":0.2255872036,"1730":0.1774575141,"1731":0.1333188502,"1732":0.0891801862,"1733":0.0492067431,"1734":0.0092332999,"1735":-0.0264171656,"1736":-0.0620676312,"1737":-0.0932544229,"1738":-0.1244412147,"1739":-0.1510412527,"1740":-0.1776412907,"1741":-0.1995495968,"1742":-0.2214579028,"1743":-0.2385880148,"1744":-0.2557181268,"1745":-0.2680024401,"1746":-0.2802867533,"1747":-0.2876767872,"1748":-0.2950668211,"1749":-0.2975334105,"1750":-0.3,"1751":-0.2975334105,"1752":-0.2950668211,"1753":-0.2876767872,"1754":-0.2802867533,"1755":-0.2680024401,"1756":-0.2557181268,"1757":-0.2385880148,"1758":-0.2214579028,"1759":-0.1995495968,"1760":-0.1776412907,"1761":-0.1510412527,"1762":-0.1244412147,"1763":-0.0932544229,"1764":-0.0620676312,"1765":-0.0264171656,"1766":0.0092332999,"1767":0.0492067431,"1768":0.0891801862,"1769":0.1333188502,"1770":0.1774575141,"1771":0.2255872036,"1772":0.2737168931,"1773":0.3256476623,"1774":0.3775784314,"1775":0.4331053333,"1776":0.4886322352,"1777":0.5475361304,"1778":0.6064400256,"1779":0.6684884474,"1780":0.7305368693,"1781":0.7954849409,"1782":0.8604330126,"1783":0.9280244136,"1784":0.9956158147,"1785":1.0655837929,"1786":1.1355517711,"1787":1.2076201947,"1788":1.2796886183,"1789":1.3535730662,"1790":1.4274575141,"1791":1.5028663981,"1792":1.5782752821,"1793":1.6549109978,"1794":1.7315467135,"1795":1.8091068148,"1796":1.8866669161,"1797":1.9648453086,"1798":2.0430237012,"1799":2.1215118506,"1800":2.2,"1801":2.2784881494,"1802":2.3569762988,"1803":2.4351546914,"1804":2.5133330839,"1805":2.5908931852,"1806":2.6684532865,"1807":2.7450890022,"1808":2.8217247179,"1809":2.8971336019,"1810":2.9725424859,"1811":3.0464269338,"1812":3.1203113817,"1813":3.1923798053,"1814":3.2644482289,"1815":3.3344162071,"1816":3.4043841853,"1817":3.4719755864,"1818":3.5395669874,"1819":3.6045150591,"1820":3.6694631307,"1821":3.7315115526,"1822":3.7935599744,"1823":3.8524638696,"1824":3.9113677648,"1825":3.9668946667,"1826":4.0224215686,"1827":4.0743523377,"1828":4.1262831069,"1829":4.1744127964,"1830":4.2225424859,"1831":4.2666811498,"1832":4.3108198138,"1833":4.3507932569,"1834":4.3907667001,"1835":4.4264171656,"1836":4.4620676312,"1837":4.4932544229,"1838":4.5244412147,"1839":4.5510412527,"1840":4.5776412907,"1841":4.5995495968,"1842":4.6214579028,"1843":4.6385880148,"1844":4.6557181268,"1845":4.6680024401,"1846":4.6802867533,"1847":4.6876767872,"1848":4.6950668211,"1849":4.6975334105,"1850":4.7,"1851":4.6975334105,"1852":4.6950668211,"1853":4.6876767872,"1854":4.6802867533,"1855":4.6680024401,"1856":4.6557181268,"1857":4.6385880148,"1858":4.6214579028,"1859":4.5995495968,"1860":4.5776412907,"1861":4.5510412527,"1862":4.5244412147,"1863":4.4932544229,"1864":4.4620676312,"1865":4.4264171656,"1866":4.3907667001,"1867":4.3507932569,"1868":4.3108198138,"1869":4.2666811498,"1870":4.2225424859,"1871":4.1744127964,"1872":4.1262831069,"1873":4.0743523377,"1874":4.0224215686,"1875":3.9668946667,"1876":3.9113677648,"1877":3.8524638696,"1878":3.7935599744,"1879":3.7315115526,"1880":3.6694631307,"1881":3.6045150591,"1882":3.5395669874,"1883":3.4719755864,"1884":3.4043841853,"1885":3.3344162071,"1886":3.2644482289,"1887":3.1923798053,"1888":3.1203113817,"1889":3.0464269338,"1890":2.9725424859,"1891":2.8971336019,"1892":2.8217247179,"1893":2.7450890022,"1894":2.6684532865,"1895":2.5908931852,"1896":2.5133330839,"1897":2.4351546914,"1898":2.3569762988,"1899":2.2784881494,"1900":2.2,"1901":2.1215118506,"1902":2.0430237012,"1903":1.9648453086,"1904":1.8866669161,"1905":1.8091068148,"1906":1.7315467135,"1907":1.6549109978,"1908":1.5782752821,"1909":1.5028663981,"1910":1.4274575141,"1911":1.3535730662,"1912":1.2796886183,"1913":1.2076201947,"1914":1.1355517711,"1915":1.0655837929,"1916":0.9956158147,"1917":0.9280244136,"1918":0.8604330126,"1919":0.7954849409,"1920":0.7305368693,"1921":0.6684884474,"1922":0.6064400256,"1923":0.5475361304,"1924":0.4886322352,"1925":0.4331053333,"1926":0.3775784314,"1927":0.3256476623,"1928":0.2737168931,"1929":0.2255872036,"1930":0.1774575141,"1931":0.1333188502,"1932":0.0891801862,"1933":0.0492067431,"1934":0.0092332999,"1935":-0.0264171656,"1936":-0.0620676312,"1937":-0.0932544229,"1938":-0.1244412147,"1939":-0.1510412527,"1940":-0.1776412907,"1941":-0.1995495968,"1942":-0.2214579028,"1943":-0.2385880148,"1944":-0.2557181268,"1945":-0.2680024401,"1946":-0.2802867533,"1947":-0.2876767872,"1948":-0.2950668211,"1949":-0.2975334105,"1950":-0.3,"1951":-0.2975334105,"1952":-0.2950668211,"1953":-0.2876767872,"1954":-0.2802867533,"1955":-0.2680024401,"1956":-0.2557181268,"1957":-0.2385880148,"1958":-0.2214579028,"1959":-0.1995495968,"1960":-0.1776412907,"1961":-0.1510412527,"1962":-0.1244412147,"1963":-0.0932544229,"1964":-0.0620676312,"1965":-0.0264171656,"1966":0.0092332999,"1967":0.0492067431,"1968":0.0891801862,"1969":0.1333188502,"1970":0.1774575141,"1971":0.2255872036,"1972":0.2737168931,"1973":0.3256476623,"1974":0.3775784314,"1975":0.4331053333,"1976":0.4886322352,"1977":0.5475361304,"1978":0.6064400256,"1979":0.6684884474,"1980":0.7305368693,"1981":0.7954849409,"1982":0.8604330126,"1983":0.9280244136,"1984":0.9956158147,"1985":1.0655837929,"1986":1.1355517711,"1987":1.2076201947,"1988":1.2796886183,"1989":1.3535730662,"1990":1.4274575141,"1991":1.5028663981,"1992":1.5782752821,"1993":1.6549109978,"1994":1.7315467135,"1995":1.8091068148,"1996":1.8866669161,"1997":1.9648453086,"1998":2.0430237012,"1999":2.1215118506,"2000":2.2},"flow_out":{"0":2.200000001,"1":2.2784881489,"2":2.3569762991,"3":2.4351546912,"4":2.513333084,"5":2.5908931852,"6":2.6684532865,"7":2.7450890022,"8":2.8217247179,"9":2.8971336019,"10":2.9725424859,"11":3.0464269338,"12":3.1203113817,"13":3.1923798053,"14":3.2644482289,"15":3.3344162071,"16":3.4043841853,"17":3.4719755864,"18":3.5395669874,"19":3.6045150591,"20":3.6694631307,"21":3.7315115526,"22":3.7935599744,"23":3.8524638696,"24":3.9113677648,"25":3.9668946667,"26":4.0224215686,"27":4.0743523377,"28":4.1262831069,"29":4.1744127964,"30":4.2225424859,"31":4.2666811498,"32":4.3108198138,"33":4.3507932569,"34":4.3907667001,"35":4.4264171656,"36":4.4620676312,"37":4.4932544229,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2,"201":2.2784881494,"202":2.3569762988,"203":2.4351546914,"204":2.5133330839,"205":2.5908931852,"206":2.6684532865,"207":2.7450890022,"208":2.8217247179,"209":2.8971336019,"210":2.9725424859,"211":3.0464269338,"212":3.1203113817,"213":3.1923798053,"214":3.2644482289,"215":3.3344162071,"216":3.4043841853,"217":3.4719755864,"218":3.5395669874,"219":3.6045150591,"220":3.6694631307,"221":3.7315115526,"222":3.7935599744,"223":3.8524638696,"224":3.9113677648,"225":3.9668946667,"226":4.0224215686,"227":4.0743523377,"228":4.1262831069,"229":4.1744127964,"230":4.2225424859,"231":4.2666811498,"232":4.3108198138,"233":4.3507932569,"234":4.3907667001,"235":4.4264171656,"236":4.4620676312,"237":4.4932544229,"238":4.5244412147,"239":4.5510412527,"240":4.5776412907,"241":4.5995495968,"242":4.6214579028,"243":4.6385880148,"244":4.6557181268,"245":4.6680024401,"246":4.6802867533,"247":4.6876767872,"248":4.6950668211,"249":4.6975334105,"250":4.7,"251":4.6975334105,"252":4.6950668211,"253":4.6876767872,"254":4.6802867533,"255":4.6680024401,"256":4.6557181268,"257":4.6385880148,"258":4.6214579028,"259":4.5995495968,"260":4.5776412907,"261":4.5510412527,"262":4.5244412147,"263":4.4932544229,"264":4.4620676312,"265":4.4264171656,"266":4.3907667001,"267":4.3507932569,"268":4.3108198138,"269":4.2666811498,"270":4.2225424859,"271":4.1744127964,"272":4.1262831069,"273":4.0743523377,"274":4.0224215686,"275":3.9668946667,"276":3.9113677648,"277":3.8524638696,"278":3.7935599744,"279":3.7315115526,"280":3.6694631307,"281":3.6045150591,"282":3.5395669874,"283":3.4719755864,"284":3.4043841853,"285":3.3344162071,"286":3.2644482289,"287":3.1923798053,"288":3.1203113817,"289":3.0464269338,"290":2.9725424859,"291":2.8971336019,"292":2.8217247179,"293":2.7450890022,"294":2.6684532865,"295":2.5908931852,"296":2.5133330839,"297":2.4351546914,"298":2.3569762988,"299":2.2784881494,"300":2.2,"301":2.1215118506,"302":2.0430237012,"303":1.9648453086,"304":1.8866669161,"305":1.8091068148,"306":1.7315467135,"307":1.6549109978,"308":1.5782752821,"309":1.5028663981,"310":1.4274575141,"311":1.3535730662,"312":1.2796886183,"313":1.2076201947,"314":1.1355517711,"315":1.0655837929,"316":0.9956158147,"317":0.9280244136,"318":0.8604330126,"319":0.7954849409,"320":0.7305368693,"321":0.6684884474,"322":0.6064400256,"323":0.5475361304,"324":0.4886322352,"325":0.4331053333,"326":0.3775784314,"327":0.3256476623,"328":0.2737168931,"329":0.2255872036,"330":0.1774575141,"331":0.1333188502,"332":0.0891801862,"333":0.0492067431,"334":0.0092332999,"335":-0.0264171656,"336":-0.0620676312,"337":-0.0932544229,"338":-0.1244412147,"339":-0.1510412527,"340":-0.1776412907,"341":-0.1995495968,"342":-0.2214579028,"343":-0.2385880148,"344":-0.2557181268,"345":-0.2680024401,"346":-0.2802867533,"347":-0.2876767872,"348":-0.2950668211,"349":-0.2975334105,"350":-0.3,"351":-0.2975334105,"352":-0.2950668211,"353":-0.2876767872,"354":-0.2802867533,"355":-0.2680024401,"356":-0.2557181268,"357":-0.2385880148,"358":-0.2214579028,"359":-0.1995495968,"360":-0.1776412907,"361":-0.1510412527,"362":-0.1244412147,"363":-0.0932544229,"364":-0.0620676312,"365":-0.0264171656,"366":0.0092332999,"367":0.0492067431,"368":0.0891801862,"369":0.1333188502,"370":0.1774575141,"371":0.2255872036,"372":0.2737168931,"373":0.3256476623,"374":0.3775784314,"375":0.4331053333,"376":0.4886322352,"377":0.5475361304,"378":0.6064400256,"379":0.6684884474,"380":0.7305368693,"381":0.7954849409,"382":0.8604330126,"383":0.9280244136,"384":0.9956158147,"385":1.0655837929,"386":1.1355517711,"387":1.2076201947,"388":1.2796886183,"389":1.3535730662,"390":1.4274575141,"391":1.5028663981,"392":1.5782752821,"393":1.6549109978,"394":1.7315467135,"395":1.8091068148,"396":1.8866669161,"397":1.9648453086,"398":2.0430237012,"399":2.1215118506,"400":2.2,"401":2.2784881494,"402":2.3569762988,"403":2.4351546914,"404":2.5133330839,"405":2.5908931852,"406":2.6684532865,"407":2.7450890022,"408":2.8217247179,"409":2.8971336019,"410":2.9725424859,"411":3.0464269338,"412":3.1203113817,"413":3.1923798053,"414":3.2644482289,"415":3.3344162071,"416":3.4043841853,"417":3.4719755864,"418":3.5395669874,"419":3.6045150591,"420":3.6694631307,"421":3.7315115526,"422":3.7935599744,"423":3.8524638696,"424":3.9113677648,"425":3.9668946667,"426":4.0224215686,"427":4.0743523377,"428":4.1262831069,"429":4.1744127964,"430":4.2225424859,"431":4.2666811498,"432":4.3108198138,"433":4.3507932569,"434":4.3907667001,"435":4.4264171656,"436":4.4620676312,"437":4.4932544229,"438":4.5244412147,"439":4.5510412527,"440":4.5776412907,"441":4.5995495968,"442":4.6214579028,"443":4.6385880148,"444":4.6557181268,"445":4.6680024401,"446":4.6802867533,"447":4.6876767872,"448":4.6950668211,"449":4.6975334105,"450":4.7,"451":4.6975334105,"452":4.6950668211,"453":4.6876767872,"454":4.6802867533,"455":4.6680024401,"456":4.6557181268,"457":4.6385880148,"458":4.6214579028,"459":4.5995495968,"460":4.5776412907,"461":4.5510412527,"462":4.5244412147,"463":4.4932544229,"464":4.4620676312,"465":4.4264171656,"466":4.3907667001,"467":4.3507932569,"468":4.3108198138,"469":4.2666811498,"470":4.2225424859,"471":4.1744127964,"472":4.1262831069,"473":4.0743523377,"474":4.0224215686,"475":3.9668946667,"476":3.9113677648,"477":3.8524638696,"478":3.7935599744,"479":3.7315115526,"480":3.6694631307,"481":3.6045150591,"482":3.5395669874,"483":3.4719755864,"484":3.4043841853,"485":3.3344162071,"486":3.2644482289,"487":3.1923798053,"488":3.1203113817,"489":3.0464269338,"490":2.9725424859,"491":2.8971336019,"492":2.8217247179,"493":2.7450890022,"494":2.6684532865,"495":2.5908931852,"496":2.5133330839,"497":2.4351546914,"498":2.3569762988,"499":2.2784881494,"500":2.2,"501":2.1215118506,"502":2.0430237012,"503":1.9648453086,"504":1.8866669161,"505":1.8091068148,"506":1.7315467135,"507":1.6549109978,"508":1.5782752821,"509":1.5028663981,"510":1.4274575141,"511":1.3535730662,"512":1.2796886183,"513":1.2076201947,"514":1.1355517711,"515":1.0655837929,"516":0.9956158147,"517":0.9280244136,"518":0.8604330126,"519":0.7954849409,"520":0.7305368693,"521":0.6684884474,"522":0.6064400256,"523":0.5475361304,"524":0.4886322352,"525":0.4331053333,"526":0.3775784314,"527":0.3256476623,"528":0.2737168931,"529":0.2255872036,"530":0.1774575141,"531":0.1333188502,"532":0.0891801862,"533":0.0492067431,"534":0.0092332999,"535":-0.0264171656,"536":-0.0620676312,"537":-0.0932544229,"538":-0.1244412147,"539":-0.1510412527,"540":-0.1776412907,"541":-0.1995495968,"542":-0.2214579028,"543":-0.2385880148,"544":-0.2557181268,"545":-0.2680024401,"546":-0.2802867533,"547":-0.2876767872,"548":-0.2950668211,"549":-0.2975334105,"550":-0.3,"551":-0.2975334105,"552":-0.2950668211,"553":-0.2876767872,"554":-0.2802867533,"555":-0.2680024401,"556":-0.2557181268,"557":-0.2385880148,"558":-0.2214579028,"559":-0.1995495968,"560":-0.1776412907,"561":-0.1510412527,"562":-0.1244412147,"563":-0.0932544229,"564":-0.0620676312,"565":-0.0264171656,"566":0.0092332999,"567":0.0492067431,"568":0.0891801862,"569":0.1333188502,"570":0.1774575141,"571":0.2255872036,"572":0.2737168931,"573":0.3256476623,"574":0.3775784314,"575":0.4331053333,"576":0.4886322352,"577":0.5475361304,"578":0.6064400256,"579":0.6684884474,"580":0.7305368693,"581":0.7954849409,"582":0.8604330126,"583":0.9280244136,"584":0.9956158147,"585":1.0655837929,"586":1.1355517711,"587":1.2076201947,"588":1.2796886183,"589":1.3535730662,"590":1.4274575141,"591":1.5028663981,"592":1.5782752821,"593":1.6549109978,"594":1.7315467135,"595":1.8091068148,"596":1.8866669161,"597":1.9648453086,"598":2.0430237012,"599":2.1215118506,"600":2.2,"601":2.2784881494,"602":2.3569762988,"603":2.4351546914,"604":2.5133330839,"605":2.5908931852,"606":2.6684532865,"607":2.7450890022,"608":2.8217247179,"609":2.8971336019,"610":2.9725424859,"611":3.0464269338,"612":3.1203113817,"613":3.1923798053,"614":3.2644482289,"615":3.3344162071,"616":3.4043841853,"617":3.4719755864,"618":3.5395669874,"619":3.6045150591,"620":3.6694631307,"621":3.7315115526,"622":3.7935599744,"623":3.8524638696,"624":3.9113677648,"625":3.9668946667,"626":4.0224215686,"627":4.0743523377,"628":4.1262831069,"629":4.1744127964,"630":4.2225424859,"631":4.2666811498,"632":4.3108198138,"633":4.3507932569,"634":4.3907667001,"635":4.4264171656,"636":4.4620676312,"637":4.4932544229,"638":4.5244412147,"639":4.5510412527,"640":4.5776412907,"641":4.5995495968,"642":4.6214579028,"643":4.6385880148,"644":4.6557181268,"645":4.6680024401,"646":4.6802867533,"647":4.6876767872,"648":4.6950668211,"649":4.6975334105,"650":4.7,"651":4.6975334105,"652":4.6950668211,"653":4.6876767872,"654":4.6802867533,"655":4.6680024401,"656":4.6557181268,"657":4.6385880148,"658":4.6214579028,"659":4.5995495968,"660":4.5776412907,"661":4.5510412527,"662":4.5244412147,"663":4.4932544229,"664":4.4620676312,"665":4.4264171656,"666":4.3907667001,"667":4.3507932569,"668":4.3108198138,"669":4.2666811498,"670":4.2225424859,"671":4.1744127964,"672":4.1262831069,"673":4.0743523377,"674":4.0224215686,"675":3.9668946667,"676":3.9113677648,"677":3.8524638696,"678":3.7935599744,"679":3.7315115526,"680":3.6694631307,"681":3.6045150591,"682":3.5395669874,"683":3.4719755864,"684":3.4043841853,"685":3.3344162071,"686":3.2644482289,"687":3.1923798053,"688":3.1203113817,"689":3.0464269338,"690":2.9725424859,"691":2.8971336019,"692":2.8217247179,"693":2.7450890022,"694":2.6684532865,"695":2.5908931852,"696":2.5133330839,"697":2.4351546914,"698":2.3569762988,"699":2.2784881494,"700":2.2,"701":2.1215118506,"702":2.0430237012,"703":1.9648453086,"704":1.8866669161,"705":1.8091068148,"706":1.7315467135,"707":1.6549109978,"708":1.5782752821,"709":1.5028663981,"710":1.4274575141,"711":1.3535730662,"712":1.2796886183,"713":1.2076201947,"714":1.1355517711,"715":1.0655837929,"716":0.9956158147,"717":0.9280244136,"718":0.8604330126,"719":0.7954849409,"720":0.7305368693,"721":0.6684884474,"722":0.6064400256,"723":0.5475361304,"724":0.4886322352,"725":0.4331053333,"726":0.3775784314,"727":0.3256476623,"728":0.2737168931,"729":0.2255872036,"730":0.1774575141,"731":0.1333188502,"732":0.0891801862,"733":0.0492067431,"734":0.0092332999,"735":-0.0264171656,"736":-0.0620676312,"737":-0.0932544229,"738":-0.1244412147,"739":-0.1510412527,"740":-0.1776412907,"741":-0.1995495968,"742":-0.2214579028,"743":-0.2385880148,"744":-0.2557181268,"745":-0.2680024401,"746":-0.2802867533,"747":-0.2876767872,"748":-0.2950668211,"749":-0.2975334105,"750":-0.3,"751":-0.2975334105,"752":-0.2950668211,"753":-0.2876767872,"754":-0.2802867533,"755":-0.2680024401,"756":-0.2557181268,"757":-0.2385880148,"758":-0.2214579028,"759":-0.1995495968,"760":-0.1776412907,"761":-0.1510412527,"762":-0.1244412147,"763":-0.0932544229,"764":-0.0620676312,"765":-0.0264171656,"766":0.0092332999,"767":0.0492067431,"768":0.0891801862,"769":0.1333188502,"770":0.1774575141,"771":0.2255872036,"772":0.2737168931,"773":0.3256476623,"774":0.3775784314,"775":0.4331053333,"776":0.4886322352,"777":0.5475361304,"778":0.6064400256,"779":0.6684884474,"780":0.7305368693,"781":0.7954849409,"782":0.8604330126,"783":0.9280244136,"784":0.9956158147,"785":1.0655837929,"786":1.1355517711,"787":1.2076201947,"788":1.2796886183,"789":1.3535730662,"790":1.4274575141,"791":1.5028663981,"792":1.5782752821,"793":1.6549109978,"794":1.7315467135,"795":1.8091068148,"796":1.8866669161,"797":1.9648453086,"798":2.0430237012,"799":2.1215118506,"800":2.2,"801":2.2784881494,"802":2.3569762988,"803":2.4351546914,"804":2.5133330839,"805":2.5908931852,"806":2.6684532865,"807":2.7450890022,"808":2.8217247179,"809":2.8971336019,"810":2.9725424859,"811":3.0464269338,"812":3.1203113817,"813":3.1923798053,"814":3.2644482289,"815":3.3344162071,"816":3.4043841853,"817":3.4719755864,"818":3.5395669874,"819":3.6045150591,"820":3.6694631307,"821":3.7315115526,"822":3.7935599744,"823":3.8524638696,"824":3.9113677648,"825":3.9668946667,"826":4.0224215686,"827":4.0743523377,"828":4.1262831069,"829":4.1744127964,"830":4.2225424859,"831":4.2666811498,"832":4.3108198138,"833":4.3507932569,"834":4.3907667001,"835":4.4264171656,"836":4.4620676312,"837":4.4932544229,"838":4.5244412147,"839":4.5510412527,"840":4.5776412907,"841":4.5995495968,"842":4.6214579028,"843":4.6385880148,"844":4.6557181268,"845":4.6680024401,"846":4.6802867533,"847":4.6876767872,"848":4.6950668211,"849":4.6975334105,"850":4.7,"851":4.6975334105,"852":4.6950668211,"853":4.6876767872,"854":4.6802867533,"855":4.6680024401,"856":4.6557181268,"857":4.6385880148,"858":4.6214579028,"859":4.5995495968,"860":4.5776412907,"861":4.5510412527,"862":4.5244412147,"863":4.4932544229,"864":4.4620676312,"865":4.4264171656,"866":4.3907667001,"867":4.3507932569,"868":4.3108198138,"869":4.2666811498,"870":4.2225424859,"871":4.1744127964,"872":4.1262831069,"873":4.0743523377,"874":4.0224215686,"875":3.9668946667,"876":3.9113677648,"877":3.8524638696,"878":3.7935599744,"879":3.7315115526,"880":3.6694631307,"881":3.6045150591,"882":3.5395669874,"883":3.4719755864,"884":3.4043841853,"885":3.3344162071,"886":3.2644482289,"887":3.1923798053,"888":3.1203113817,"889":3.0464269338,"890":2.9725424859,"891":2.8971336019,"892":2.8217247179,"893":2.7450890022,"894":2.6684532865,"895":2.5908931852,"896":2.5133330839,"897":2.4351546914,"898":2.3569762988,"899":2.2784881494,"900":2.2,"901":2.1215118506,"902":2.0430237012,"903":1.9648453086,"904":1.8866669161,"905":1.8091068148,"906":1.7315467135,"907":1.6549109978,"908":1.5782752821,"909":1.5028663981,"910":1.4274575141,"911":1.3535730662,"912":1.2796886183,"913":1.2076201947,"914":1.1355517711,"915":1.0655837929,"916":0.9956158147,"917":0.9280244136,"918":0.8604330126,"919":0.7954849409,"920":0.7305368693,"921":0.6684884474,"922":0.6064400256,"923":0.5475361304,"924":0.4886322352,"925":0.4331053333,"926":0.3775784314,"927":0.3256476623,"928":0.2737168931,"929":0.2255872036,"930":0.1774575141,"931":0.1333188502,"932":0.0891801862,"933":0.0492067431,"934":0.0092332999,"935":-0.0264171656,"936":-0.0620676312,"937":-0.0932544229,"938":-0.1244412147,"939":-0.1510412527,"940":-0.1776412907,"941":-0.1995495968,"942":-0.2214579028,"943":-0.2385880148,"944":-0.2557181268,"945":-0.2680024401,"946":-0.2802867533,"947":-0.2876767872,"948":-0.2950668211,"949":-0.2975334105,"950":-0.3,"951":-0.2975334105,"952":-0.2950668211,"953":-0.2876767872,"954":-0.2802867533,"955":-0.2680024401,"956":-0.2557181268,"957":-0.2385880148,"958":-0.2214579028,"959":-0.1995495968,"960":-0.1776412907,"961":-0.1510412527,"962":-0.1244412147,"963":-0.0932544229,"964":-0.0620676312,"965":-0.0264171656,"966":0.0092332999,"967":0.0492067431,"968":0.0891801862,"969":0.1333188502,"970":0.1774575141,"971":0.2255872036,"972":0.2737168931,"973":0.3256476623,"974":0.3775784314,"975":0.4331053333,"976":0.4886322352,"977":0.5475361304,"978":0.6064400256,"979":0.6684884474,"980":0.7305368693,"981":0.7954849409,"982":0.8604330126,"983":0.9280244136,"984":0.9956158147,"985":1.0655837929,"986":1.1355517711,"987":1.2076201947,"988":1.2796886183,"989":1.3535730662,"990":1.4274575141,"991":1.5028663981,"992":1.5782752821,"993":1.6549109978,"994":1.7315467135,"995":1.8091068148,"996":1.8866669161,"997":1.9648453086,"998":2.0430237012,"999":2.1215118506,"1000":2.2,"1001":2.2784881494,"1002":2.3569762988,"1003":2.4351546914,"1004":2.5133330839,"1005":2.5908931852,"1006":2.6684532865,"1007":2.7450890022,"1008":2.8217247179,"1009":2.8971336019,"1010":2.9725424859,"1011":3.0464269338,"1012":3.1203113817,"1013":3.1923798053,"1014":3.2644482289,"1015":3.3344162071,"1016":3.4043841853,"1017":3.4719755864,"1018":3.5395669874,"1019":3.6045150591,"1020":3.6694631307,"1021":3.7315115526,"1022":3.7935599744,"1023":3.8524638696,"1024":3.9113677648,"1025":3.9668946667,"1026":4.0224215686,"1027":4.0743523377,"1028":4.1262831069,"1029":4.1744127964,"1030":4.2225424859,"1031":4.2666811498,"1032":4.3108198138,"1033":4.3507932569,"1034":4.3907667001,"1035":4.4264171656,"1036":4.4620676312,"1037":4.4932544229,"1038":4.5244412147,"1039":4.5510412527,"1040":4.5776412907,"1041":4.5995495968,"1042":4.6214579028,"1043":4.6385880148,"1044":4.6557181268,"1045":4.6680024401,"1046":4.6802867533,"1047":4.6876767872,"1048":4.6950668211,"1049":4.6975334105,"1050":4.7,"1051":4.6975334105,"1052":4.6950668211,"1053":4.6876767872,"1054":4.6802867533,"1055":4.6680024401,"1056":4.6557181268,"1057":4.6385880148,"1058":4.6214579028,"1059":4.5995495968,"1060":4.5776412907,"1061":4.5510412527,"1062":4.5244412147,"1063":4.4932544229,"1064":4.4620676312,"1065":4.4264171656,"1066":4.3907667001,"1067":4.3507932569,"1068":4.3108198138,"1069":4.2666811498,"1070":4.2225424859,"1071":4.1744127964,"1072":4.1262831069,"1073":4.0743523377,"1074":4.0224215686,"1075":3.9668946667,"1076":3.9113677648,"1077":3.8524638696,"1078":3.7935599744,"1079":3.7315115526,"1080":3.6694631307,"1081":3.6045150591,"1082":3.5395669874,"1083":3.4719755864,"1084":3.4043841853,"1085":3.3344162071,"1086":3.2644482289,"1087":3.1923798053,"1088":3.1203113817,"1089":3.0464269338,"1090":2.9725424859,"1091":2.8971336019,"1092":2.8217247179,"1093":2.7450890022,"1094":2.6684532865,"1095":2.5908931852,"1096":2.5133330839,"1097":2.4351546914,"1098":2.3569762988,"1099":2.2784881494,"1100":2.2,"1101":2.1215118506,"1102":2.0430237012,"1103":1.9648453086,"1104":1.8866669161,"1105":1.8091068148,"1106":1.7315467135,"1107":1.6549109978,"1108":1.5782752821,"1109":1.5028663981,"1110":1.4274575141,"1111":1.3535730662,"1112":1.2796886183,"1113":1.2076201947,"1114":1.1355517711,"1115":1.0655837929,"1116":0.9956158147,"1117":0.9280244136,"1118":0.8604330126,"1119":0.7954849409,"1120":0.7305368693,"1121":0.6684884474,"1122":0.6064400256,"1123":0.5475361304,"1124":0.4886322352,"1125":0.4331053333,"1126":0.3775784314,"1127":0.3256476623,"1128":0.2737168931,"1129":0.2255872036,"1130":0.1774575141,"1131":0.1333188502,"1132":0.0891801862,"1133":0.0492067431,"1134":0.0092332999,"1135":-0.0264171656,"1136":-0.0620676312,"1137":-0.0932544229,"1138":-0.1244412147,"1139":-0.1510412527,"1140":-0.1776412907,"1141":-0.1995495968,"1142":-0.2214579028,"1143":-0.2385880148,"1144":-0.2557181268,"1145":-0.2680024401,"1146":-0.2802867533,"1147":-0.2876767872,"1148":-0.2950668211,"1149":-0.2975334105,"1150":-0.3,"1151":-0.2975334105,"1152":-0.2950668211,"1153":-0.2876767872,"1154":-0.2802867533,"1155":-0.2680024401,"1156":-0.2557181268,"1157":-0.2385880148,"1158":-0.2214579028,"1159":-0.1995495968,"1160":-0.1776412907,"1161":-0.1510412527,"1162":-0.1244412147,"1163":-0.0932544229,"1164":-0.0620676312,"1165":-0.0264171656,"1166":0.0092332999,"1167":0.0492067431,"1168":0.0891801862,"1169":0.1333188502,"1170":0.1774575141,"1171":0.2255872036,"1172":0.2737168931,"1173":0.3256476623,"1174":0.3775784314,"1175":0.4331053333,"1176":0.4886322352,"1177":0.5475361304,"1178":0.6064400256,"1179":0.6684884474,"1180":0.7305368693,"1181":0.7954849409,"1182":0.8604330126,"1183":0.9280244136,"1184":0.9956158147,"1185":1.0655837929,"1186":1.1355517711,"1187":1.2076201947,"1188":1.2796886183,"1189":1.3535730662,"1190":1.4274575141,"1191":1.5028663981,"1192":1.5782752821,"1193":1.6549109978,"1194":1.7315467135,"1195":1.8091068148,"1196":1.8866669161,"1197":1.9648453086,"1198":2.0430237012,"1199":2.1215118506,"1200":2.2,"1201":2.2784881494,"1202":2.3569762988,"1203":2.4351546914,"1204":2.5133330839,"1205":2.5908931852,"1206":2.6684532865,"1207":2.7450890022,"1208":2.8217247179,"1209":2.8971336019,"1210":2.9725424859,"1211":3.0464269338,"1212":3.1203113817,"1213":3.1923798053,"1214":3.2644482289,"1215":3.3344162071,"1216":3.4043841853,"1217":3.4719755864,"1218":3.5395669874,"1219":3.6045150591,"1220":3.6694631307,"1221":3.7315115526,"1222":3.7935599744,"1223":3.8524638696,"1224":3.9113677648,"1225":3.9668946667,"1226":4.0224215686,"1227":4.0743523377,"1228":4.1262831069,"1229":4.1744127964,"1230":4.2225424859,"1231":4.2666811498,"1232":4.3108198138,"1233":4.3507932569,"1234":4.3907667001,"1235":4.4264171656,"1236":4.4620676312,"1237":4.4932544229,"1238":4.5244412147,"1239":4.5510412527,"1240":4.5776412907,"1241":4.5995495968,"1242":4.6214579028,"1243":4.6385880148,"1244":4.6557181268,"1245":4.6680024401,"1246":4.6802867533,"1247":4.6876767872,"1248":4.6950668211,"1249":4.6975334105,"1250":4.7,"1251":4.6975334105,"1252":4.6950668211,"1253":4.6876767872,"1254":4.6802867533,"1255":4.6680024401,"1256":4.6557181268,"1257":4.6385880148,"1258":4.6214579028,"1259":4.5995495968,"1260":4.5776412907,"1261":4.5510412527,"1262":4.5244412147,"1263":4.4932544229,"1264":4.4620676312,"1265":4.4264171656,"1266":4.3907667001,"1267":4.3507932569,"1268":4.3108198138,"1269":4.2666811498,"1270":4.2225424859,"1271":4.1744127964,"1272":4.1262831069,"1273":4.0743523377,"1274":4.0224215686,"1275":3.9668946667,"1276":3.9113677648,"1277":3.8524638696,"1278":3.7935599744,"1279":3.7315115526,"1280":3.6694631307,"1281":3.6045150591,"1282":3.5395669874,"1283":3.4719755864,"1284":3.4043841853,"1285":3.3344162071,"1286":3.2644482289,"1287":3.1923798053,"1288":3.1203113817,"1289":3.0464269338,"1290":2.9725424859,"1291":2.8971336019,"1292":2.8217247179,"1293":2.7450890022,"1294":2.6684532865,"1295":2.5908931852,"1296":2.5133330839,"1297":2.4351546914,"1298":2.3569762988,"1299":2.2784881494,"1300":2.2,"1301":2.1215118506,"1302":2.0430237012,"1303":1.9648453086,"1304":1.8866669161,"1305":1.8091068148,"1306":1.7315467135,"1307":1.6549109978,"1308":1.5782752821,"1309":1.5028663981,"1310":1.4274575141,"1311":1.3535730662,"1312":1.2796886183,"1313":1.2076201947,"1314":1.1355517711,"1315":1.0655837929,"1316":0.9956158147,"1317":0.9280244136,"1318":0.8604330126,"1319":0.7954849409,"1320":0.7305368693,"1321":0.6684884474,"1322":0.6064400256,"1323":0.5475361304,"1324":0.4886322352,"1325":0.4331053333,"1326":0.3775784314,"1327":0.3256476623,"1328":0.2737168931,"1329":0.2255872036,"1330":0.1774575141,"1331":0.1333188502,"1332":0.0891801862,"1333":0.0492067431,"1334":0.0092332999,"1335":-0.0264171656,"1336":-0.0620676312,"1337":-0.0932544229,"1338":-0.1244412147,"1339":-0.1510412527,"1340":-0.1776412907,"1341":-0.1995495968,"1342":-0.2214579028,"1343":-0.2385880148,"1344":-0.2557181268,"1345":-0.2680024401,"1346":-0.2802867533,"1347":-0.2876767872,"1348":-0.2950668211,"1349":-0.2975334105,"1350":-0.3,"1351":-0.2975334105,"1352":-0.2950668211,"1353":-0.2876767872,"1354":-0.2802867533,"1355":-0.2680024401,"1356":-0.2557181268,"1357":-0.2385880148,"1358":-0.2214579028,"1359":-0.1995495968,"1360":-0.1776412907,"1361":-0.1510412527,"1362":-0.1244412147,"1363":-0.0932544229,"1364":-0.0620676312,"1365":-0.0264171656,"1366":0.0092332999,"1367":0.0492067431,"1368":0.0891801862,"1369":0.1333188502,"1370":0.1774575141,"1371":0.2255872036,"1372":0.2737168931,"1373":0.3256476623,"1374":0.3775784314,"1375":0.4331053333,"1376":0.4886322352,"1377":0.5475361304,"1378":0.6064400256,"1379":0.6684884474,"1380":0.7305368693,"1381":0.7954849409,"1382":0.8604330126,"1383":0.9280244136,"1384":0.9956158147,"1385":1.0655837929,"1386":1.1355517711,"1387":1.2076201947,"1388":1.2796886183,"1389":1.3535730662,"1390":1.4274575141,"1391":1.5028663981,"1392":1.5782752821,"1393":1.6549109978,"1394":1.7315467135,"1395":1.8091068148,"1396":1.8866669161,"1397":1.9648453086,"1398":2.0430237012,"1399":2.1215118506,"1400":2.2,"1401":2.2784881494,"1402":2.3569762988,"1403":2.4351546914,"1404":2.5133330839,"1405":2.5908931852,"1406":2.6684532865,"1407":2.7450890022,"1408":2.8217247179,"1409":2.8971336019,"1410":2.9725424859,"1411":3.0464269338,"1412":3.1203113817,"1413":3.1923798053,"1414":3.2644482289,"1415":3.3344162071,"1416":3.4043841853,"1417":3.4719755864,"1418":3.5395669874,"1419":3.6045150591,"1420":3.6694631307,"1421":3.7315115526,"1422":3.7935599744,"1423":3.8524638696,"1424":3.9113677648,"1425":3.9668946667,"1426":4.0224215686,"1427":4.0743523377,"1428":4.1262831069,"1429":4.1744127964,"1430":4.2225424859,"1431":4.2666811498,"1432":4.3108198138,"1433":4.3507932569,"1434":4.3907667001,"1435":4.4264171656,"1436":4.4620676312,"1437":4.4932544229,"1438":4.5244412147,"1439":4.5510412527,"1440":4.5776412907,"1441":4.5995495968,"1442":4.6214579028,"1443":4.6385880148,"1444":4.6557181268,"1445":4.6680024401,"1446":4.6802867533,"1447":4.6876767872,"1448":4.6950668211,"1449":4.6975334105,"1450":4.7,"1451":4.6975334105,"1452":4.6950668211,"1453":4.6876767872,"1454":4.6802867533,"1455":4.6680024401,"1456":4.6557181268,"1457":4.6385880148,"1458":4.6214579028,"1459":4.5995495968,"1460":4.5776412907,"1461":4.5510412527,"1462":4.5244412147,"1463":4.4932544229,"1464":4.4620676312,"1465":4.4264171656,"1466":4.3907667001,"1467":4.3507932569,"1468":4.3108198138,"1469":4.2666811498,"1470":4.2225424859,"1471":4.1744127964,"1472":4.1262831069,"1473":4.0743523377,"1474":4.0224215686,"1475":3.9668946667,"1476":3.9113677648,"1477":3.8524638696,"1478":3.7935599744,"1479":3.7315115526,"1480":3.6694631307,"1481":3.6045150591,"1482":3.5395669874,"1483":3.4719755864,"1484":3.4043841853,"1485":3.3344162071,"1486":3.2644482289,"1487":3.1923798053,"1488":3.1203113817,"1489":3.0464269338,"1490":2.9725424859,"1491":2.8971336019,"1492":2.8217247179,"1493":2.7450890022,"1494":2.6684532865,"1495":2.5908931852,"1496":2.5133330839,"1497":2.4351546914,"1498":2.3569762988,"1499":2.2784881494,"1500":2.2,"1501":2.1215118506,"1502":2.0430237012,"1503":1.9648453086,"1504":1.8866669161,"1505":1.8091068148,"1506":1.7315467135,"1507":1.6549109978,"1508":1.5782752821,"1509":1.5028663981,"1510":1.4274575141,"1511":1.3535730662,"1512":1.2796886183,"1513":1.2076201947,"1514":1.1355517711,"1515":1.0655837929,"1516":0.9956158147,"1517":0.9280244136,"1518":0.8604330126,"1519":0.7954849409,"1520":0.7305368693,"1521":0.6684884474,"1522":0.6064400256,"1523":0.5475361304,"1524":0.4886322352,"1525":0.4331053333,"1526":0.3775784314,"1527":0.3256476623,"1528":0.2737168931,"1529":0.2255872036,"1530":0.1774575141,"1531":0.1333188502,"1532":0.0891801862,"1533":0.0492067431,"1534":0.0092332999,"1535":-0.0264171656,"1536":-0.0620676312,"1537":-0.0932544229,"1538":-0.1244412147,"1539":-0.1510412527,"1540":-0.1776412907,"1541":-0.1995495968,"1542":-0.2214579028,"1543":-0.2385880148,"1544":-0.2557181268,"1545":-0.2680024401,"1546":-0.2802867533,"1547":-0.2876767872,"1548":-0.2950668211,"1549":-0.2975334105,"1550":-0.3,"1551":-0.2975334105,"1552":-0.2950668211,"1553":-0.2876767872,"1554":-0.2802867533,"1555":-0.2680024401,"1556":-0.2557181268,"1557":-0.2385880148,"1558":-0.2214579028,"1559":-0.1995495968,"1560":-0.1776412907,"1561":-0.1510412527,"1562":-0.1244412147,"1563":-0.0932544229,"1564":-0.0620676312,"1565":-0.0264171656,"1566":0.0092332999,"1567":0.0492067431,"1568":0.0891801862,"1569":0.1333188502,"1570":0.1774575141,"1571":0.2255872036,"1572":0.2737168931,"1573":0.3256476623,"1574":0.3775784314,"1575":0.4331053333,"1576":0.4886322352,"1577":0.5475361304,"1578":0.6064400256,"1579":0.6684884474,"1580":0.7305368693,"1581":0.7954849409,"1582":0.8604330126,"1583":0.9280244136,"1584":0.9956158147,"1585":1.0655837929,"1586":1.1355517711,"1587":1.2076201947,"1588":1.2796886183,"1589":1.3535730662,"1590":1.4274575141,"1591":1.5028663981,"1592":1.5782752821,"1593":1.6549109978,"1594":1.7315467135,"1595":1.8091068148,"1596":1.8866669161,"1597":1.9648453086,"1598":2.0430237012,"1599":2.1215118506,"1600":2.2,"1601":2.2784881494,"1602":2.3569762988,"1603":2.4351546914,"1604":2.5133330839,"1605":2.5908931852,"1606":2.6684532865,"1607":2.7450890022,"1608":2.8217247179,"1609":2.8971336019,"1610":2.9725424859,"1611":3.0464269338,"1612":3.1203113817,"1613":3.1923798053,"1614":3.2644482289,"1615":3.3344162071,"1616":3.4043841853,"1617":3.4719755864,"1618":3.5395669874,"1619":3.6045150591,"1620":3.6694631307,"1621":3.7315115526,"1622":3.7935599744,"1623":3.8524638696,"1624":3.9113677648,"1625":3.9668946667,"1626":4.0224215686,"1627":4.0743523377,"1628":4.1262831069,"1629":4.1744127964,"1630":4.2225424859,"1631":4.2666811498,"1632":4.3108198138,"1633":4.3507932569,"1634":4.3907667001,"1635":4.4264171656,"1636":4.4620676312,"1637":4.4932544229,"1638":4.5244412147,"1639":4.5510412527,"1640":4.5776412907,"1641":4.5995495968,"1642":4.6214579028,"1643":4.6385880148,"1644":4.6557181268,"1645":4.6680024401,"1646":4.6802867533,"1647":4.6876767872,"1648":4.6950668211,"1649":4.6975334105,"1650":4.7,"1651":4.6975334105,"1652":4.6950668211,"1653":4.6876767872,"1654":4.6802867533,"1655":4.6680024401,"1656":4.6557181268,"1657":4.6385880148,"1658":4.6214579028,"1659":4.5995495968,"1660":4.5776412907,"1661":4.5510412527,"1662":4.5244412147,"1663":4.4932544229,"1664":4.4620676312,"1665":4.4264171656,"1666":4.3907667001,"1667":4.3507932569,"1668":4.3108198138,"1669":4.2666811498,"1670":4.2225424859,"1671":4.1744127964,"1672":4.1262831069,"1673":4.0743523377,"1674":4.0224215686,"1675":3.9668946667,"1676":3.9113677648,"1677":3.8524638696,"1678":3.7935599744,"1679":3.7315115526,"1680":3.6694631307,"1681":3.6045150591,"1682":3.5395669874,"1683":3.4719755864,"1684":3.4043841853,"1685":3.3344162071,"1686":3.2644482289,"1687":3.1923798053,"1688":3.1203113817,"1689":3.0464269338,"1690":2.9725424859,"1691":2.8971336019,"1692":2.8217247179,"1693":2.7450890022,"1694":2.6684532865,"1695":2.5908931852,"1696":2.5133330839,"1697":2.4351546914,"1698":2.3569762988,"1699":2.2784881494,"1700":2.2,"1701":2.1215118506,"1702":2.0430237012,"1703":1.9648453086,"1704":1.8866669161,"1705":1.8091068148,"1706":1.7315467135,"1707":1.6549109978,"1708":1.5782752821,"1709":1.5028663981,"1710":1.4274575141,"1711":1.3535730662,"1712":1.2796886183,"1713":1.2076201947,"1714":1.1355517711,"1715":1.0655837929,"1716":0.9956158147,"1717":0.9280244136,"1718":0.8604330126,"1719":0.7954849409,"1720":0.7305368693,"1721":0.6684884474,"1722":0.6064400256,"1723":0.5475361304,"1724":0.4886322352,"1725":0.4331053333,"1726":0.3775784314,"1727":0.3256476623,"1728":0.2737168931,"1729":0.2255872036,"1730":0.1774575141,"1731":0.1333188502,"1732":0.0891801862,"1733":0.0492067431,"1734":0.0092332999,"1735":-0.0264171656,"1736":-0.0620676312,"1737":-0.0932544229,"1738":-0.1244412147,"1739":-0.1510412527,"1740":-0.1776412907,"1741":-0.1995495968,"1742":-0.2214579028,"1743":-0.2385880148,"1744":-0.2557181268,"1745":-0.2680024401,"1746":-0.2802867533,"1747":-0.2876767872,"1748":-0.2950668211,"1749":-0.2975334105,"1750":-0.3,"1751":-0.2975334105,"1752":-0.2950668211,"1753":-0.2876767872,"1754":-0.2802867533,"1755":-0.2680024401,"1756":-0.2557181268,"1757":-0.2385880148,"1758":-0.2214579028,"1759":-0.1995495968,"1760":-0.1776412907,"1761":-0.1510412527,"1762":-0.1244412147,"1763":-0.0932544229,"1764":-0.0620676312,"1765":-0.0264171656,"1766":0.0092332999,"1767":0.0492067431,"1768":0.0891801862,"1769":0.1333188502,"1770":0.1774575141,"1771":0.2255872036,"1772":0.2737168931,"1773":0.3256476623,"1774":0.3775784314,"1775":0.4331053333,"1776":0.4886322352,"1777":0.5475361304,"1778":0.6064400256,"1779":0.6684884474,"1780":0.7305368693,"1781":0.7954849409,"1782":0.8604330126,"1783":0.9280244136,"1784":0.9956158147,"1785":1.0655837929,"1786":1.1355517711,"1787":1.2076201947,"1788":1.2796886183,"1789":1.3535730662,"1790":1.4274575141,"1791":1.5028663981,"1792":1.5782752821,"1793":1.6549109978,"1794":1.7315467135,"1795":1.8091068148,"1796":1.8866669161,"1797":1.9648453086,"1798":2.0430237012,"1799":2.1215118506,"1800":2.2,"1801":2.2784881494,"1802":2.3569762988,"1803":2.4351546914,"1804":2.5133330839,"1805":2.5908931852,"1806":2.6684532865,"1807":2.7450890022,"1808":2.8217247179,"1809":2.8971336019,"1810":2.9725424859,"1811":3.0464269338,"1812":3.1203113817,"1813":3.1923798053,"1814":3.2644482289,"1815":3.3344162071,"1816":3.4043841853,"1817":3.4719755864,"1818":3.5395669874,"1819":3.6045150591,"1820":3.6694631307,"1821":3.7315115526,"1822":3.7935599744,"1823":3.8524638696,"1824":3.9113677648,"1825":3.9668946667,"1826":4.0224215686,"1827":4.0743523377,"1828":4.1262831069,"1829":4.1744127964,"1830":4.2225424859,"1831":4.2666811498,"1832":4.3108198138,"1833":4.3507932569,"1834":4.3907667001,"1835":4.4264171656,"1836":4.4620676312,"1837":4.4932544229,"1838":4.5244412147,"1839":4.5510412527,"1840":4.5776412907,"1841":4.5995495968,"1842":4.6214579028,"1843":4.6385880148,"1844":4.6557181268,"1845":4.6680024401,"1846":4.6802867533,"1847":4.6876767872,"1848":4.6950668211,"1849":4.6975334105,"1850":4.7,"1851":4.6975334105,"1852":4.6950668211,"1853":4.6876767872,"1854":4.6802867533,"1855":4.6680024401,"1856":4.6557181268,"1857":4.6385880148,"1858":4.6214579028,"1859":4.5995495968,"1860":4.5776412907,"1861":4.5510412527,"1862":4.5244412147,"1863":4.4932544229,"1864":4.4620676312,"1865":4.4264171656,"1866":4.3907667001,"1867":4.3507932569,"1868":4.3108198138,"1869":4.2666811498,"1870":4.2225424859,"1871":4.1744127964,"1872":4.1262831069,"1873":4.0743523377,"1874":4.0224215686,"1875":3.9668946667,"1876":3.9113677648,"1877":3.8524638696,"1878":3.7935599744,"1879":3.7315115526,"1880":3.6694631307,"1881":3.6045150591,"1882":3.5395669874,"1883":3.4719755864,"1884":3.4043841853,"1885":3.3344162071,"1886":3.2644482289,"1887":3.1923798053,"1888":3.1203113817,"1889":3.0464269338,"1890":2.9725424859,"1891":2.8971336019,"1892":2.8217247179,"1893":2.7450890022,"1894":2.6684532865,"1895":2.5908931852,"1896":2.5133330839,"1897":2.4351546914,"1898":2.3569762988,"1899":2.2784881494,"1900":2.2,"1901":2.1215118506,"1902":2.0430237012,"1903":1.9648453086,"1904":1.8866669161,"1905":1.8091068148,"1906":1.7315467135,"1907":1.6549109978,"1908":1.5782752821,"1909":1.5028663981,"1910":1.4274575141,"1911":1.3535730662,"1912":1.2796886183,"1913":1.2076201947,"1914":1.1355517711,"1915":1.0655837929,"1916":0.9956158147,"1917":0.9280244136,"1918":0.8604330126,"1919":0.7954849409,"1920":0.7305368693,"1921":0.6684884474,"1922":0.6064400256,"1923":0.5475361304,"1924":0.4886322352,"1925":0.4331053333,"1926":0.3775784314,"1927":0.3256476623,"1928":0.2737168931,"1929":0.2255872036,"1930":0.1774575141,"1931":0.1333188502,"1932":0.0891801862,"1933":0.0492067431,"1934":0.0092332999,"1935":-0.0264171656,"1936":-0.0620676312,"1937":-0.0932544229,"1938":-0.1244412147,"1939":-0.1510412527,"1940":-0.1776412907,"1941":-0.1995495968,"1942":-0.2214579028,"1943":-0.2385880148,"1944":-0.2557181268,"1945":-0.2680024401,"1946":-0.2802867533,"1947":-0.2876767872,"1948":-0.2950668211,"1949":-0.2975334105,"1950":-0.3,"1951":-0.2975334105,"1952":-0.2950668211,"1953":-0.2876767872,"1954":-0.2802867533,"1955":-0.2680024401,"1956":-0.2557181268,"1957":-0.2385880148,"1958":-0.2214579028,"1959":-0.1995495968,"1960":-0.1776412907,"1961":-0.1510412527,"1962":-0.1244412147,"1963":-0.0932544229,"1964":-0.0620676312,"1965":-0.0264171656,"1966":0.0092332999,"1967":0.0492067431,"1968":0.0891801862,"1969":0.1333188502,"1970":0.1774575141,"1971":0.2255872036,"1972":0.2737168931,"1973":0.3256476623,"1974":0.3775784314,"1975":0.4331053333,"1976":0.4886322352,"1977":0.5475361304,"1978":0.6064400256,"1979":0.6684884474,"1980":0.7305368693,"1981":0.7954849409,"1982":0.8604330126,"1983":0.9280244136,"1984":0.9956158147,"1985":1.0655837929,"1986":1.1355517711,"1987":1.2076201947,"1988":1.2796886183,"1989":1.3535730662,"1990":1.4274575141,"1991":1.5028663981,"1992":1.5782752821,"1993":1.6549109978,"1994":1.7315467135,"1995":1.8091068148,"1996":1.8866669161,"1997":1.9648453086,"1998":2.0430237012,"1999":2.1215118506,"2000":2.2},"pressure_in":{"0":4620.0000021514,"1":4708.3756193974,"2":4800.3254995924,"3":4895.5124675901,"4":4994.0594481245,"5":5095.112900714,"6":5199.1833141173,"7":5305.0814669227,"8":5413.666396996,"9":5523.4234147006,"10":5635.5539071338,"11":5748.2226169969,"12":5862.9671989041,"13":5977.6378582606,"14":6094.1012830419,"15":6209.9005191749,"16":6327.2228680953,"17":6443.3129112471,"18":6560.6689786072,"19":6676.2471553502,"20":6792.8460782692,"21":6907.1445293024,"22":7022.2296272077,"23":7134.5152161542,"24":7247.3640077452,"25":7356.9383900522,"26":7466.8627579368,"27":7573.0625813218,"28":7679.409056773,"29":7781.6062668333,"30":7883.7564091974,"31":7981.358635822,"32":8078.7294830568,"33":8171.1804851632,"34":8263.2250537969,"35":8350.0052016813,"36":8436.2130161883,"37":8516.8397924331,"38":8596.7374256203,"39":8670.7659270608,"40":8743.91753457,"41":8810.9409592984,"42":8876.9487927574,"43":8936.5988975347,"44":8995.103782245,"45":9047.0512970203,"46":9097.7330613625,"47":9141.6880488607,"48":9184.265893826,"49":9219.9780433731,"50":9254.2108418116,"51":9281.4696877224,"52":9307.1562040248,"53":9325.791259985,"54":9342.770282003,"55":9352.6510839434,"56":9360.8014599948,"57":9361.8375109805,"58":9361.0780857929,"59":9353.2186974368,"60":9343.5081418536,"61":9326.7421677159,"62":9308.0786979235,"63":9282.4341552751,"64":9254.855138215,"65":9220.3987154318,"66":9183.9801579323,"67":9140.8166056363,"68":9095.6725256412,"69":9043.9439305313,"70":8990.2256096152,"71":8930.1105507214,"72":8868.0056678609,"73":8799.7182557166,"74":8729.4499030414,"75":8653.2387030041,"76":8575.0642849732,"77":8491.2111266199,"78":8405.42114476,"79":8314.239819959,"80":8221.1565459651,"81":8122.9913988613,"82":8022.9674394887,"83":7918.1918522502,"84":7811.6086100272,"85":7700.6233887729,"86":7587.88942313,"87":7471.1210890009,"88":7352.6703829461,"89":7230.5693737937,"90":7106.8595117626,"91":6979.8983003974,"92":6851.4085633754,"93":6720.0796987604,"94":6587.3090832016,"95":6452.1231613789,"96":6315.5883288442,"97":6177.0719007486,"98":6037.305065542,"99":5895.9984891868,"100":5753.5452515939,"101":5610.000496406,"102":5465.4176294197,"103":5320.1960407584,"104":5174.0492384261,"105":5027.7192705358,"106":4880.5808662703,"107":4733.7157920957,"108":4586.1624554623,"109":4439.3380618974,"110":4291.9484825218,"111":4145.7407597643,"112":3999.0933270985,"113":3854.0761608454,"114":3708.7466485841,"115":3565.4895238295,"116":3422.0487877856,"117":3281.1145129692,"118":3140.1262111957,"119":3002.0686713992,"120":2864.0870152842,"121":2729.4489630867,"122":2595.0165080532,"123":2464.3274005312,"124":2333.9728848397,"125":2207.7467750369,"126":2081.9830150197,"127":1960.7165060193,"128":1840.0383558719,"129":1724.2086253725,"130":1609.0910093907,"131":1499.153912426,"132":1390.0499373057,"133":1286.4381944553,"134":1183.777348971,"135":1086.898827085,"136":991.0852761309,"137":901.3213682374,"138":812.732347854,"139":730.4364585396,"140":649.4207781598,"141":574.916920306,"142":501.7935780431,"143":435.3750863704,"144":370.4320027303,"145":312.360369151,"146":255.8532440931,"147":206.3570793979,"148":158.5083771883,"149":117.782503102,"150":78.7805689061,"151":46.9852440375,"152":16.9835556827,"153":-5.7561616271,"154":-26.6396038145,"155":-40.2343532795,"156":-51.9174961994,"157":-56.3139720875,"158":-58.7510373406,"159":-53.9322023176,"160":-47.1138701722,"161":-33.0990256801,"162":-17.0524748397,"163":6.1028122363,"164":31.3140091925,"165":63.5181232506,"166":97.7942483144,"167":138.9198842755,"168":182.1254653388,"169":232.0101289564,"170":283.9744724562,"171":342.4211197035,"172":402.9389824596,"173":469.716795449,"174":538.5491930268,"175":613.3944893836,"176":690.2696377733,"177":772.8869098595,"178":857.5012967417,"179":947.5643766131,"180":1039.5839579694,"181":1136.7373034569,"182":1235.7988207906,"183":1339.6589176174,"184":1445.371330575,"185":1555.5282049675,"186":1667.4742336969,"187":1783.4930695082,"188":1901.230840658,"189":2022.6536946143,"190":2145.7184844702,"191":2272.0660927639,"192":2399.9721606341,"193":2530.7458297252,"194":2662.9883343348,"195":2797.6719084932,"196":2933.7288998163,"197":3071.7907976339,"198":3211.1252762991,"199":3352.0205881292,"200":3494.0826242635,"201":3637.2552623059,"202":3781.4841654533,"203":3926.3690579943,"204":4072.195589539,"205":4218.2209106835,"206":4365.0695300442,"207":4511.658956137,"208":4658.9500918632,"209":4805.5250756903,"210":4952.6774124952,"211":5098.6594662877,"212":5245.0922389894,"213":5389.9052172175,"214":5535.0405025318,"215":5678.1128754774,"216":5821.3778726167,"217":5962.1449817488,"218":6102.9742728235,"219":6240.8805590752,"220":6378.7183403755,"221":6513.2195365255,"222":6647.5218118763,"223":6778.0870903816,"224":6908.3238179125,"225":7034.4378857146,"226":7160.0950695712,"227":7281.2602016062,"228":7401.8419203469,"229":7517.5799237348,"230":7632.6102874066,"231":7742.4643885649,"232":7851.4894167337,"233":7955.0260639688,"234":8057.6154772909,"235":8154.4260517506,"236":8250.1749700153,"237":8339.8773982509,"238":8428.4079381907,"239":8510.6481999627,"240":8591.6109665256,"241":8666.0644919023,"242":8739.1399571,"243":8805.5129073351,"244":8870.4126712241,"245":8928.4430983566,"246":8984.9110271768,"247":9034.3699077776,"248":9082.1831447545,"249":9122.8752837386,"250":9161.8451285604,"251":9193.6099294982,"252":9223.5825829969,"253":9246.2946818828,"254":9267.1518529793,"255":9280.7216129582,"256":9292.3809854755,"257":9296.7548505726,"258":9299.1704080762,"259":9294.3311145345,"260":9287.4933219156,"261":9273.4599663069,"262":9257.3958073933,"263":9234.2237712338,"264":9208.9966422789,"265":9176.7773734462,"266":9142.4868329161,"267":9101.3474847307,"268":9058.1288603781,"269":9008.2317897731,"270":8956.2556445465,"271":8897.797771306,"272":8837.2692302039,"273":8770.4812597994,"274":8701.6392003242,"275":8626.7847134145,"276":8549.9008228226,"277":8467.2752350123,"278":8382.6529380792,"279":8292.5823340395,"280":8200.5555955729,"281":8103.3954421265,"282":8004.3274489522,"283":7900.4611922013,"284":7794.7429198244,"285":7684.5804718576,"286":7572.6291414544,"287":7456.6052626054,"288":7338.8626944365,"289":7217.4352774782,"290":7094.3661472212,"291":6968.0144102678,"292":6840.1044151499,"293":6709.3270103973,"294":6577.0809523662,"295":6442.3939981358,"296":6306.3337916336,"297":6168.2688354858,"298":6028.9314476875,"299":5888.033368643,"300":5745.9687002896,"301":5602.793558438,"302":5458.5622736268,"303":5313.6751156087,"304":5167.8464291056,"305":5021.8190581299,"306":4874.9684889366,"307":4728.3772081315,"308":4581.0843081732,"309":4434.5076461799,"310":4287.3537130762,"311":4141.3701408585,"312":3994.9359238063,"313":3850.1215716886,"314":3704.9849795083,"315":3561.9113634507,"316":3418.6451838432,"317":3277.8769499282,"318":3137.0465889419,"319":2999.139284973,"320":2861.3005356037,"321":2726.7984186107,"322":2592.4952673393,"323":2461.929155644,"324":2331.6916355695,"325":2205.5768138871,"326":2079.9189129274,"327":1958.7530987722,"328":1838.1707311879,"329":1722.4321106094,"330":1607.401159856,"331":1497.5465002561,"332":1388.5209408887,"333":1284.983788369,"334":1182.3938944119,"335":1085.5828627644,"336":989.8335096154,"337":900.1306677108,"338":811.5997342823,"339":729.3590982176,"340":648.3959756213,"341":573.9421115799,"342":500.866324239,"343":434.493067576,"344":369.5930122078,"345":311.5623078157,"346":255.0941152615,"347":205.6349837928,"348":157.8215081863,"349":117.1291422138,"350":78.159081477,"351":46.3940751574,"352":16.4212262962,"353":-6.2910584217,"354":-27.1484062845,"355":-40.7183344065,"356":-52.3778668642,"357":-56.7518840992,"358":-59.1675863187,"359":-54.3284304332,"360":-47.4907687551,"361":-33.4575376994,"362":-17.3934972627,"363":5.7784261998,"364":31.0054479554,"365":63.2246148185,"366":97.5150583533,"367":138.6543142753,"368":181.8728508655,"369":231.7698379895,"370":283.7459038075,"371":342.2037015133,"372":402.7321707657,"373":469.5200728255,"374":538.3620672901,"375":613.2164923607,"376":690.1003241303,"377":772.7258559877,"378":857.3480996977,"379":947.4186531106,"380":1039.4453434203,"381":1136.605451059,"382":1235.6734006602,"383":1339.5396159638,"384":1445.2578489152,"385":1555.42025938,"386":1667.3715541106,"387":1783.3953990273,"388":1901.1379349192,"389":2022.565321175,"390":2145.6344222274,"391":2271.9861314009,"392":2399.8961000942,"393":2530.6734797112,"394":2662.9195138329,"395":2797.6064453203,"396":2933.6666301891,"397":3071.7315657587,"398":3211.0689339828,"399":3351.9669944079,"400":3494.0316450503,"401":3637.2067700549,"402":3781.4380388409,"403":3926.3251816156,"404":4072.153853619,"405":4218.1812108024,"406":4365.0317668761,"407":4511.6230352016,"408":4658.9159232893,"409":4805.4925739909,"410":4952.6464963538,"411":5098.6300583547,"412":5245.0642656885,"413":5389.878608562,"414":5535.0151919489,"415":5678.0887996422,"416":5821.3549712934,"417":5962.1231976402,"418":6102.9535514275,"419":6240.8608485487,"420":6378.6995914043,"421":6513.2017022013,"422":6647.5048475791,"423":6778.0709536682,"424":6908.3084684101,"425":7034.42328502,"426":7160.0811811546,"427":7281.2469907201,"428":7401.8293539386,"429":7517.5679703643,"430":7632.5989171675,"431":7742.4535730099,"432":7851.4791288031,"433":7955.016277923,"434":8057.6061686461,"435":8154.4171972173,"436":8250.1665474403,"437":8339.8693865615,"438":8428.4003173423,"439":8510.6409508886,"440":8591.6040710893,"441":8666.0579328519,"442":8739.1337180253,"443":8805.5069726265,"444":8870.4070260334,"445":8928.4377285601,"446":8984.9059193396,"447":9034.3650491204,"448":9082.1785231212,"449":9122.8708875664,"450":9161.8409468505,"451":9193.6059517881,"452":9223.5787993349,"453":9246.2910828024,"454":9267.1484294758,"455":9280.7183564664,"456":9292.3778878479,"457":9296.7519040592,"458":9299.167605305,"459":9294.3284484933,"460":9287.4907859341,"461":9273.4575540404,"462":9257.3935128065,"463":9234.2215885858,"464":9208.9945661088,"465":9176.7753985597,"466":9142.4849543722,"467":9101.3456978294,"468":9058.1271606487,"469":9008.230172963,"470":8956.2541066106,"471":8897.7963083966,"472":8837.2678386608,"473":8770.4799361411,"474":8701.6379412391,"475":8626.7835157524,"476":8549.8996835871,"477":8467.2741513531,"478":8382.651907285,"479":8292.5813535315,"480":8200.5546628978,"481":8103.3945549508,"482":8004.3266050564,"483":7900.460389474,"484":7794.7421562573,"485":7684.5797455402,"486":7572.6284505695,"487":7456.6046054245,"488":7338.8620693155,"489":7217.434682853,"490":7094.3655816041,"491":6968.0138722437,"492":6840.1039033727,"493":6709.3265235865,"494":6577.0804893039,"495":6442.3935576635,"496":6306.3333726492,"497":6168.2684369411,"498":6028.9310685853,"499":5888.0330080349,"500":5745.9683572734,"501":5602.7932321554,"502":5458.5619632615,"503":5313.6748203843,"504":5167.8461482833,"505":5021.8187910072,"506":4874.9682348452,"507":4728.3769664357,"508":4581.0840782682,"509":4434.5074274906,"510":4287.3535050554,"511":4141.3699429858,"512":3994.9357355865,"513":3850.1213926509,"514":3704.9848092047,"515":3561.9112014552,"516":3418.6450297504,"517":3277.8768033527,"518":3137.0464495169,"519":2999.1391523497,"520":2861.3004094503,"521":2726.7982986116,"522":2592.4951531941,"523":2461.9290470673,"524":2331.6915322896,"525":2205.5767156455,"526":2079.9188194784,"527":1958.7530098821,"528":1838.1706466342,"529":1722.4320301806,"530":1607.4010833508,"531":1497.5464274831,"532":1388.5208716659,"533":1284.9837225231,"534":1182.3938317782,"535":1085.5828031863,"536":989.8334529436,"537":900.1306138037,"538":811.599683005,"539":729.3590494418,"540":648.395929225,"541":573.942067447,"542":500.8662822591,"543":434.493027644,"544":369.5929742239,"545":311.5622716847,"546":255.0940808932,"547":205.6349511011,"548":157.8214770894,"549":117.1291126339,"550":78.1590533401,"551":46.3940483932,"552":16.4212008376,"553":-6.2910826383,"554":-27.1484293197,"555":-40.718356318,"556":-52.3778877067,"557":-56.7519039249,"558":-59.1676051773,"559":-54.3284483718,"560":-47.4907858186,"561":-33.4575539305,"562":-17.3935127019,"563":5.7784115137,"564":31.0054339858,"565":63.2246015303,"566":97.5150457134,"567":138.6543022521,"568":181.8728394288,"569":231.7698271107,"570":283.7458934595,"571":342.2036916701,"572":402.7321614026,"573":469.5200639192,"574":538.3620588183,"575":613.2164843021,"576":690.1003164649,"577":772.7258486963,"578":857.3480927619,"579":947.4186465132,"580":1039.4453371447,"581":1136.6054450896,"582":1235.673394982,"583":1339.5396105626,"584":1445.2578437775,"585":1555.4202544929,"586":1667.371549462,"587":1783.3953946054,"588":1901.137930713,"589":2022.5653171741,"590":2145.6344184216,"591":2271.9861277808,"592":2399.8960966507,"593":2530.6734764357,"594":2662.9195107172,"595":2797.6064423566,"596":2933.6666273699,"597":3071.7315630771,"598":3211.0689314319,"599":3351.9669919816,"600":3494.0316427423,"601":3637.2067678595,"602":3781.4380367526,"603":3926.3251796292,"604":4072.1538517295,"605":4218.181209005,"606":4365.0317651664,"607":4511.6230335753,"608":4658.9159217423,"609":4805.4925725194,"610":4952.6464949541,"611":5098.6300570233,"612":5245.0642644221,"613":5389.8786073573,"614":5535.015190803,"615":5678.0887985522,"616":5821.3549702566,"617":5962.123196654,"618":6102.9535504894,"619":6240.8608476563,"620":6378.6995905555,"621":6513.2017013939,"622":6647.5048468111,"623":6778.0709529376,"624":6908.3084677151,"625":7034.4232843589,"626":7160.0811805258,"627":7281.246990122,"628":7401.8293533697,"629":7517.5679698231,"630":7632.5989166527,"631":7742.4535725202,"632":7851.4791283373,"633":7955.0162774799,"634":8057.6061682247,"635":8154.4171968165,"636":8250.166547059,"637":8339.8693861988,"638":8428.4003169973,"639":8510.6409505604,"640":8591.6040707771,"641":8666.057932555,"642":8739.1337177429,"643":8805.5069723578,"644":8870.4070257779,"645":8928.4377283169,"646":8984.9059191084,"647":9034.3650489004,"648":9082.178522912,"649":9122.8708873674,"650":9161.8409466611,"651":9193.605951608,"652":9223.5787991636,"653":9246.2910826394,"654":9267.1484293208,"655":9280.718356319,"656":9292.3778877077,"657":9296.7519039258,"658":9299.1676051782,"659":9294.3284483726,"660":9287.4907858193,"661":9273.4575539312,"662":9257.3935127026,"663":9234.221588487,"664":9208.9945660148,"665":9176.7753984703,"666":9142.4849542871,"667":9101.3456977485,"668":9058.1271605718,"669":9008.2301728898,"670":8956.254106541,"671":8897.7963083304,"672":8837.2678385978,"673":8770.4799360812,"674":8701.6379411821,"675":8626.7835156982,"676":8549.8996835355,"677":8467.2741513041,"678":8382.6519072384,"679":8292.5813534871,"680":8200.5546628555,"681":8103.3945549107,"682":8004.3266050182,"683":7900.4603894377,"684":7794.7421562227,"685":7684.5797455073,"686":7572.6284505382,"687":7456.6046053948,"688":7338.8620692872,"689":7217.4346828261,"690":7094.3655815785,"691":6968.0138722194,"692":6840.1039033495,"693":6709.3265235645,"694":6577.080489283,"695":6442.3935576435,"696":6306.3333726302,"697":6168.268436923,"698":6028.9310685682,"699":5888.0330080185,"700":5745.9683572579,"701":5602.7932321406,"702":5458.5619632475,"703":5313.6748203709,"704":5167.8461482706,"705":5021.8187909951,"706":4874.9682348337,"707":4728.3769664247,"708":4581.0840782577,"709":4434.5074274807,"710":4287.3535050459,"711":4141.3699429768,"712":3994.935735578,"713":3850.1213926428,"714":3704.984809197,"715":3561.9112014479,"716":3418.6450297435,"717":3277.8768033461,"718":3137.0464495106,"719":2999.1391523437,"720":2861.3004094445,"721":2726.7982986062,"722":2592.495153189,"723":2461.9290470624,"724":2331.6915322849,"725":2205.5767156411,"726":2079.9188194742,"727":1958.7530098781,"728":1838.1706466303,"729":1722.4320301769,"730":1607.4010833473,"731":1497.5464274798,"732":1388.5208716627,"733":1284.9837225201,"734":1182.3938317753,"735":1085.5828031836,"736":989.8334529411,"737":900.1306138013,"738":811.5996830027,"739":729.3590494396,"740":648.3959292229,"741":573.942067445,"742":500.8662822572,"743":434.4930276422,"744":369.5929742222,"745":311.5622716831,"746":255.0940808916,"747":205.6349510996,"748":157.821477088,"749":117.1291126326,"750":78.1590533389,"751":46.394048392,"752":16.4212008364,"753":-6.2910826394,"754":-27.1484293208,"755":-40.718356319,"756":-52.3778877077,"757":-56.7519039258,"758":-59.1676051781,"759":-54.3284483726,"760":-47.4907858193,"761":-33.4575539312,"762":-17.3935127026,"763":5.778411513,"764":31.0054339852,"765":63.2246015297,"766":97.5150457129,"767":138.6543022515,"768":181.8728394283,"769":231.7698271102,"770":283.745893459,"771":342.2036916696,"772":402.7321614022,"773":469.5200639188,"774":538.3620588179,"775":613.2164843018,"776":690.1003164645,"777":772.7258486959,"778":857.3480927616,"779":947.4186465129,"780":1039.4453371445,"781":1136.6054450893,"782":1235.6733949818,"783":1339.5396105623,"784":1445.2578437773,"785":1555.4202544927,"786":1667.3715494618,"787":1783.3953946052,"788":1901.1379307128,"789":2022.5653171739,"790":2145.6344184215,"791":2271.9861277806,"792":2399.8960966505,"793":2530.6734764355,"794":2662.9195107171,"795":2797.6064423565,"796":2933.6666273698,"797":3071.731563077,"798":3211.0689314318,"799":3351.9669919815,"800":3494.0316427421,"801":3637.2067678594,"802":3781.4380367525,"803":3926.3251796291,"804":4072.1538517294,"805":4218.1812090049,"806":4365.0317651663,"807":4511.6230335753,"808":4658.9159217422,"809":4805.4925725193,"810":4952.646494954,"811":5098.6300570232,"812":5245.064264422,"813":5389.8786073573,"814":5535.015190803,"815":5678.0887985521,"816":5821.3549702565,"817":5962.1231966539,"818":6102.9535504894,"819":6240.8608476563,"820":6378.6995905554,"821":6513.2017013938,"822":6647.504846811,"823":6778.0709529376,"824":6908.3084677151,"825":7034.4232843589,"826":7160.0811805258,"827":7281.2469901219,"828":7401.8293533696,"829":7517.567969823,"830":7632.5989166527,"831":7742.4535725202,"832":7851.4791283373,"833":7955.0162774799,"834":8057.6061682246,"835":8154.4171968164,"836":8250.1665470589,"837":8339.8693861987,"838":8428.4003169973,"839":8510.6409505604,"840":8591.6040707771,"841":8666.057932555,"842":8739.1337177428,"843":8805.5069723578,"844":8870.4070257778,"845":8928.4377283169,"846":8984.9059191084,"847":9034.3650489004,"848":9082.178522912,"849":9122.8708873674,"850":9161.8409466611,"851":9193.605951608,"852":9223.5787991636,"853":9246.2910826394,"854":9267.1484293208,"855":9280.718356319,"856":9292.3778877076,"857":9296.7519039258,"858":9299.1676051781,"859":9294.3284483726,"860":9287.4907858193,"861":9273.4575539312,"862":9257.3935127026,"863":9234.221588487,"864":9208.9945660148,"865":9176.7753984703,"866":9142.4849542871,"867":9101.3456977485,"868":9058.1271605718,"869":9008.2301728898,"870":8956.254106541,"871":8897.7963083304,"872":8837.2678385978,"873":8770.4799360812,"874":8701.6379411821,"875":8626.7835156982,"876":8549.8996835355,"877":8467.2741513041,"878":8382.6519072384,"879":8292.5813534871,"880":8200.5546628555,"881":8103.3945549107,"882":8004.3266050182,"883":7900.4603894377,"884":7794.7421562227,"885":7684.5797455073,"886":7572.6284505383,"887":7456.6046053948,"888":7338.8620692872,"889":7217.4346828261,"890":7094.3655815785,"891":6968.0138722194,"892":6840.1039033495,"893":6709.3265235645,"894":6577.080489283,"895":6442.3935576436,"896":6306.3333726302,"897":6168.268436923,"898":6028.9310685682,"899":5888.0330080186,"900":5745.9683572579,"901":5602.7932321406,"902":5458.5619632475,"903":5313.6748203709,"904":5167.8461482707,"905":5021.8187909951,"906":4874.9682348337,"907":4728.3769664247,"908":4581.0840782578,"909":4434.5074274807,"910":4287.353505046,"911":4141.3699429768,"912":3994.935735578,"913":3850.1213926428,"914":3704.984809197,"915":3561.9112014479,"916":3418.6450297435,"917":3277.8768033461,"918":3137.0464495106,"919":2999.1391523437,"920":2861.3004094446,"921":2726.7982986062,"922":2592.495153189,"923":2461.9290470624,"924":2331.6915322849,"925":2205.5767156411,"926":2079.9188194742,"927":1958.7530098781,"928":1838.1706466304,"929":1722.4320301769,"930":1607.4010833473,"931":1497.5464274798,"932":1388.5208716627,"933":1284.9837225201,"934":1182.3938317754,"935":1085.5828031836,"936":989.8334529411,"937":900.1306138013,"938":811.5996830027,"939":729.3590494396,"940":648.3959292229,"941":573.942067445,"942":500.8662822572,"943":434.4930276422,"944":369.5929742222,"945":311.5622716831,"946":255.0940808916,"947":205.6349510996,"948":157.821477088,"949":117.1291126326,"950":78.1590533389,"951":46.394048392,"952":16.4212008364,"953":-6.2910826394,"954":-27.1484293208,"955":-40.718356319,"956":-52.3778877077,"957":-56.7519039258,"958":-59.1676051781,"959":-54.3284483726,"960":-47.4907858193,"961":-33.4575539312,"962":-17.3935127026,"963":5.778411513,"964":31.0054339852,"965":63.2246015297,"966":97.5150457129,"967":138.6543022515,"968":181.8728394283,"969":231.7698271102,"970":283.745893459,"971":342.2036916696,"972":402.7321614022,"973":469.5200639188,"974":538.3620588179,"975":613.2164843018,"976":690.1003164645,"977":772.7258486959,"978":857.3480927616,"979":947.4186465129,"980":1039.4453371445,"981":1136.6054450893,"982":1235.6733949818,"983":1339.5396105623,"984":1445.2578437773,"985":1555.4202544927,"986":1667.3715494617,"987":1783.3953946052,"988":1901.1379307129,"989":2022.5653171739,"990":2145.6344184215,"991":2271.9861277806,"992":2399.8960966505,"993":2530.6734764355,"994":2662.919510717,"995":2797.6064423564,"996":2933.6666273698,"997":3071.731563077,"998":3211.0689314318,"999":3351.9669919815,"1000":3494.0316427421,"1001":3637.2067678594,"1002":3781.4380367525,"1003":3926.3251796291,"1004":4072.1538517294,"1005":4218.1812090049,"1006":4365.0317651663,"1007":4511.6230335753,"1008":4658.9159217422,"1009":4805.4925725193,"1010":4952.646494954,"1011":5098.6300570232,"1012":5245.064264422,"1013":5389.8786073572,"1014":5535.015190803,"1015":5678.0887985521,"1016":5821.3549702565,"1017":5962.1231966539,"1018":6102.9535504894,"1019":6240.8608476563,"1020":6378.6995905554,"1021":6513.2017013938,"1022":6647.504846811,"1023":6778.0709529376,"1024":6908.3084677151,"1025":7034.4232843589,"1026":7160.0811805258,"1027":7281.2469901219,"1028":7401.8293533696,"1029":7517.567969823,"1030":7632.5989166527,"1031":7742.4535725202,"1032":7851.4791283373,"1033":7955.0162774799,"1034":8057.6061682246,"1035":8154.4171968164,"1036":8250.1665470589,"1037":8339.8693861987,"1038":8428.4003169973,"1039":8510.6409505604,"1040":8591.6040707771,"1041":8666.057932555,"1042":8739.1337177428,"1043":8805.5069723578,"1044":8870.4070257778,"1045":8928.4377283169,"1046":8984.9059191084,"1047":9034.3650489004,"1048":9082.178522912,"1049":9122.8708873674,"1050":9161.8409466611,"1051":9193.605951608,"1052":9223.5787991636,"1053":9246.2910826394,"1054":9267.1484293208,"1055":9280.718356319,"1056":9292.3778877076,"1057":9296.7519039258,"1058":9299.1676051781,"1059":9294.3284483726,"1060":9287.4907858193,"1061":9273.4575539312,"1062":9257.3935127026,"1063":9234.221588487,"1064":9208.9945660148,"1065":9176.7753984703,"1066":9142.4849542871,"1067":9101.3456977485,"1068":9058.1271605718,"1069":9008.2301728898,"1070":8956.254106541,"1071":8897.7963083304,"1072":8837.2678385978,"1073":8770.4799360812,"1074":8701.6379411821,"1075":8626.7835156982,"1076":8549.8996835355,"1077":8467.2741513041,"1078":8382.6519072384,"1079":8292.5813534871,"1080":8200.5546628555,"1081":8103.3945549107,"1082":8004.3266050182,"1083":7900.4603894377,"1084":7794.7421562227,"1085":7684.5797455073,"1086":7572.6284505383,"1087":7456.6046053948,"1088":7338.8620692872,"1089":7217.4346828261,"1090":7094.3655815785,"1091":6968.0138722194,"1092":6840.1039033495,"1093":6709.3265235645,"1094":6577.080489283,"1095":6442.3935576436,"1096":6306.3333726302,"1097":6168.268436923,"1098":6028.9310685682,"1099":5888.0330080186,"1100":5745.9683572579,"1101":5602.7932321406,"1102":5458.5619632475,"1103":5313.6748203709,"1104":5167.8461482707,"1105":5021.8187909951,"1106":4874.9682348337,"1107":4728.3769664247,"1108":4581.0840782578,"1109":4434.5074274807,"1110":4287.353505046,"1111":4141.3699429768,"1112":3994.935735578,"1113":3850.1213926428,"1114":3704.984809197,"1115":3561.9112014479,"1116":3418.6450297435,"1117":3277.8768033461,"1118":3137.0464495106,"1119":2999.1391523437,"1120":2861.3004094446,"1121":2726.7982986062,"1122":2592.495153189,"1123":2461.9290470624,"1124":2331.6915322849,"1125":2205.5767156411,"1126":2079.9188194742,"1127":1958.7530098781,"1128":1838.1706466304,"1129":1722.4320301769,"1130":1607.4010833473,"1131":1497.5464274798,"1132":1388.5208716627,"1133":1284.9837225201,"1134":1182.3938317754,"1135":1085.5828031836,"1136":989.8334529411,"1137":900.1306138013,"1138":811.5996830027,"1139":729.3590494396,"1140":648.3959292229,"1141":573.942067445,"1142":500.8662822572,"1143":434.4930276422,"1144":369.5929742222,"1145":311.5622716831,"1146":255.0940808916,"1147":205.6349510996,"1148":157.821477088,"1149":117.1291126326,"1150":78.1590533389,"1151":46.394048392,"1152":16.4212008364,"1153":-6.2910826394,"1154":-27.1484293208,"1155":-40.718356319,"1156":-52.3778877077,"1157":-56.7519039258,"1158":-59.1676051781,"1159":-54.3284483726,"1160":-47.4907858193,"1161":-33.4575539312,"1162":-17.3935127026,"1163":5.778411513,"1164":31.0054339852,"1165":63.2246015297,"1166":97.5150457129,"1167":138.6543022515,"1168":181.8728394283,"1169":231.7698271102,"1170":283.745893459,"1171":342.2036916696,"1172":402.7321614022,"1173":469.5200639188,"1174":538.3620588179,"1175":613.2164843018,"1176":690.1003164645,"1177":772.7258486959,"1178":857.3480927616,"1179":947.4186465129,"1180":1039.4453371445,"1181":1136.6054450893,"1182":1235.6733949818,"1183":1339.5396105623,"1184":1445.2578437773,"1185":1555.4202544927,"1186":1667.3715494617,"1187":1783.3953946052,"1188":1901.1379307129,"1189":2022.5653171739,"1190":2145.6344184215,"1191":2271.9861277806,"1192":2399.8960966505,"1193":2530.6734764355,"1194":2662.919510717,"1195":2797.6064423564,"1196":2933.6666273698,"1197":3071.731563077,"1198":3211.0689314318,"1199":3351.9669919815,"1200":3494.0316427421,"1201":3637.2067678594,"1202":3781.4380367525,"1203":3926.3251796291,"1204":4072.1538517294,"1205":4218.1812090049,"1206":4365.0317651663,"1207":4511.6230335753,"1208":4658.9159217422,"1209":4805.4925725193,"1210":4952.646494954,"1211":5098.6300570232,"1212":5245.064264422,"1213":5389.8786073572,"1214":5535.015190803,"1215":5678.0887985521,"1216":5821.3549702565,"1217":5962.1231966539,"1218":6102.9535504894,"1219":6240.8608476563,"1220":6378.6995905554,"1221":6513.2017013938,"1222":6647.504846811,"1223":6778.0709529376,"1224":6908.3084677151,"1225":7034.4232843589,"1226":7160.0811805258,"1227":7281.2469901219,"1228":7401.8293533696,"1229":7517.5679698231,"1230":7632.5989166527,"1231":7742.4535725202,"1232":7851.4791283373,"1233":7955.0162774799,"1234":8057.6061682246,"1235":8154.4171968164,"1236":8250.1665470589,"1237":8339.8693861987,"1238":8428.4003169973,"1239":8510.6409505604,"1240":8591.6040707771,"1241":8666.057932555,"1242":8739.1337177428,"1243":8805.5069723578,"1244":8870.4070257778,"1245":8928.4377283169,"1246":8984.9059191084,"1247":9034.3650489004,"1248":9082.178522912,"1249":9122.8708873674,"1250":9161.8409466611,"1251":9193.605951608,"1252":9223.5787991636,"1253":9246.2910826394,"1254":9267.1484293208,"1255":9280.718356319,"1256":9292.3778877076,"1257":9296.7519039258,"1258":9299.1676051781,"1259":9294.3284483726,"1260":9287.4907858193,"1261":9273.4575539312,"1262":9257.3935127026,"1263":9234.221588487,"1264":9208.9945660148,"1265":9176.7753984703,"1266":9142.4849542871,"1267":9101.3456977485,"1268":9058.1271605718,"1269":9008.2301728898,"1270":8956.254106541,"1271":8897.7963083304,"1272":8837.2678385978,"1273":8770.4799360812,"1274":8701.6379411821,"1275":8626.7835156982,"1276":8549.8996835355,"1277":8467.2741513041,"1278":8382.6519072384,"1279":8292.5813534871,"1280":8200.5546628555,"1281":8103.3945549107,"1282":8004.3266050182,"1283":7900.4603894377,"1284":7794.7421562227,"1285":7684.5797455073,"1286":7572.6284505383,"1287":7456.6046053948,"1288":7338.8620692872,"1289":7217.4346828261,"1290":7094.3655815785,"1291":6968.0138722194,"1292":6840.1039033495,"1293":6709.3265235645,"1294":6577.080489283,"1295":6442.3935576436,"1296":6306.3333726302,"1297":6168.268436923,"1298":6028.9310685682,"1299":5888.0330080186,"1300":5745.9683572579,"1301":5602.7932321406,"1302":5458.5619632475,"1303":5313.6748203709,"1304":5167.8461482706,"1305":5021.8187909951,"1306":4874.9682348337,"1307":4728.3769664247,"1308":4581.0840782578,"1309":4434.5074274807,"1310":4287.353505046,"1311":4141.3699429768,"1312":3994.935735578,"1313":3850.1213926428,"1314":3704.984809197,"1315":3561.9112014479,"1316":3418.6450297435,"1317":3277.8768033461,"1318":3137.0464495106,"1319":2999.1391523437,"1320":2861.3004094446,"1321":2726.7982986062,"1322":2592.495153189,"1323":2461.9290470624,"1324":2331.6915322849,"1325":2205.5767156411,"1326":2079.9188194742,"1327":1958.7530098781,"1328":1838.1706466304,"1329":1722.4320301769,"1330":1607.4010833473,"1331":1497.5464274798,"1332":1388.5208716627,"1333":1284.9837225201,"1334":1182.3938317754,"1335":1085.5828031836,"1336":989.8334529411,"1337":900.1306138013,"1338":811.5996830027,"1339":729.3590494396,"1340":648.3959292229,"1341":573.942067445,"1342":500.8662822572,"1343":434.4930276422,"1344":369.5929742222,"1345":311.5622716831,"1346":255.0940808916,"1347":205.6349510996,"1348":157.821477088,"1349":117.1291126326,"1350":78.1590533389,"1351":46.394048392,"1352":16.4212008364,"1353":-6.2910826394,"1354":-27.1484293208,"1355":-40.718356319,"1356":-52.3778877077,"1357":-56.7519039258,"1358":-59.1676051781,"1359":-54.3284483726,"1360":-47.4907858193,"1361":-33.4575539312,"1362":-17.3935127026,"1363":5.778411513,"1364":31.0054339852,"1365":63.2246015297,"1366":97.5150457129,"1367":138.6543022515,"1368":181.8728394283,"1369":231.7698271102,"1370":283.745893459,"1371":342.2036916696,"1372":402.7321614022,"1373":469.5200639188,"1374":538.3620588179,"1375":613.2164843018,"1376":690.1003164645,"1377":772.7258486959,"1378":857.3480927616,"1379":947.4186465129,"1380":1039.4453371445,"1381":1136.6054450893,"1382":1235.6733949818,"1383":1339.5396105623,"1384":1445.2578437773,"1385":1555.4202544927,"1386":1667.3715494617,"1387":1783.3953946052,"1388":1901.1379307129,"1389":2022.5653171739,"1390":2145.6344184215,"1391":2271.9861277806,"1392":2399.8960966505,"1393":2530.6734764355,"1394":2662.919510717,"1395":2797.6064423564,"1396":2933.6666273698,"1397":3071.731563077,"1398":3211.0689314318,"1399":3351.9669919815,"1400":3494.0316427421,"1401":3637.2067678594,"1402":3781.4380367525,"1403":3926.3251796291,"1404":4072.1538517294,"1405":4218.1812090049,"1406":4365.0317651663,"1407":4511.6230335753,"1408":4658.9159217422,"1409":4805.4925725193,"1410":4952.646494954,"1411":5098.6300570232,"1412":5245.064264422,"1413":5389.8786073572,"1414":5535.015190803,"1415":5678.0887985521,"1416":5821.3549702565,"1417":5962.1231966539,"1418":6102.9535504894,"1419":6240.8608476563,"1420":6378.6995905554,"1421":6513.2017013938,"1422":6647.504846811,"1423":6778.0709529376,"1424":6908.3084677151,"1425":7034.4232843589,"1426":7160.0811805258,"1427":7281.2469901219,"1428":7401.8293533696,"1429":7517.5679698231,"1430":7632.5989166527,"1431":7742.4535725202,"1432":7851.4791283373,"1433":7955.0162774799,"1434":8057.6061682246,"1435":8154.4171968164,"1436":8250.1665470589,"1437":8339.8693861987,"1438":8428.4003169973,"1439":8510.6409505604,"1440":8591.6040707771,"1441":8666.057932555,"1442":8739.1337177428,"1443":8805.5069723578,"1444":8870.4070257778,"1445":8928.4377283169,"1446":8984.9059191084,"1447":9034.3650489004,"1448":9082.178522912,"1449":9122.8708873674,"1450":9161.8409466611,"1451":9193.605951608,"1452":9223.5787991636,"1453":9246.2910826394,"1454":9267.1484293208,"1455":9280.718356319,"1456":9292.3778877076,"1457":9296.7519039258,"1458":9299.1676051781,"1459":9294.3284483726,"1460":9287.4907858193,"1461":9273.4575539312,"1462":9257.3935127026,"1463":9234.221588487,"1464":9208.9945660148,"1465":9176.7753984703,"1466":9142.4849542871,"1467":9101.3456977485,"1468":9058.1271605718,"1469":9008.2301728898,"1470":8956.254106541,"1471":8897.7963083304,"1472":8837.2678385978,"1473":8770.4799360812,"1474":8701.6379411821,"1475":8626.7835156982,"1476":8549.8996835355,"1477":8467.2741513041,"1478":8382.6519072384,"1479":8292.5813534871,"1480":8200.5546628555,"1481":8103.3945549107,"1482":8004.3266050182,"1483":7900.4603894377,"1484":7794.7421562227,"1485":7684.5797455073,"1486":7572.6284505383,"1487":7456.6046053948,"1488":7338.8620692872,"1489":7217.4346828261,"1490":7094.3655815785,"1491":6968.0138722194,"1492":6840.1039033495,"1493":6709.3265235645,"1494":6577.080489283,"1495":6442.3935576436,"1496":6306.3333726302,"1497":6168.268436923,"1498":6028.9310685682,"1499":5888.0330080186,"1500":5745.9683572579,"1501":5602.7932321406,"1502":5458.5619632475,"1503":5313.6748203709,"1504":5167.8461482706,"1505":5021.8187909951,"1506":4874.9682348337,"1507":4728.3769664247,"1508":4581.0840782578,"1509":4434.5074274807,"1510":4287.353505046,"1511":4141.3699429768,"1512":3994.935735578,"1513":3850.1213926428,"1514":3704.984809197,"1515":3561.9112014479,"1516":3418.6450297435,"1517":3277.8768033461,"1518":3137.0464495106,"1519":2999.1391523437,"1520":2861.3004094446,"1521":2726.7982986062,"1522":2592.495153189,"1523":2461.9290470624,"1524":2331.6915322849,"1525":2205.5767156411,"1526":2079.9188194742,"1527":1958.7530098781,"1528":1838.1706466304,"1529":1722.4320301769,"1530":1607.4010833473,"1531":1497.5464274798,"1532":1388.5208716627,"1533":1284.9837225201,"1534":1182.3938317754,"1535":1085.5828031836,"1536":989.8334529411,"1537":900.1306138013,"1538":811.5996830027,"1539":729.3590494396,"1540":648.3959292229,"1541":573.942067445,"1542":500.8662822572,"1543":434.4930276422,"1544":369.5929742222,"1545":311.5622716831,"1546":255.0940808916,"1547":205.6349510996,"1548":157.821477088,"1549":117.1291126326,"1550":78.1590533389,"1551":46.394048392,"1552":16.4212008364,"1553":-6.2910826394,"1554":-27.1484293208,"1555":-40.718356319,"1556":-52.3778877077,"1557":-56.7519039258,"1558":-59.1676051781,"1559":-54.3284483726,"1560":-47.4907858193,"1561":-33.4575539312,"1562":-17.3935127026,"1563":5.778411513,"1564":31.0054339852,"1565":63.2246015297,"1566":97.5150457129,"1567":138.6543022515,"1568":181.8728394283,"1569":231.7698271102,"1570":283.745893459,"1571":342.2036916696,"1572":402.7321614022,"1573":469.5200639188,"1574":538.3620588179,"1575":613.2164843018,"1576":690.1003164645,"1577":772.7258486959,"1578":857.3480927616,"1579":947.4186465129,"1580":1039.4453371445,"1581":1136.6054450893,"1582":1235.6733949818,"1583":1339.5396105623,"1584":1445.2578437773,"1585":1555.4202544927,"1586":1667.3715494617,"1587":1783.3953946052,"1588":1901.1379307128,"1589":2022.5653171739,"1590":2145.6344184215,"1591":2271.9861277806,"1592":2399.8960966505,"1593":2530.6734764355,"1594":2662.919510717,"1595":2797.6064423564,"1596":2933.6666273698,"1597":3071.731563077,"1598":3211.0689314318,"1599":3351.9669919815,"1600":3494.0316427421,"1601":3637.2067678594,"1602":3781.4380367526,"1603":3926.3251796291,"1604":4072.1538517294,"1605":4218.1812090049,"1606":4365.0317651663,"1607":4511.6230335752,"1608":4658.9159217423,"1609":4805.4925725194,"1610":4952.6464949541,"1611":5098.6300570232,"1612":5245.064264422,"1613":5389.8786073573,"1614":5535.015190803,"1615":5678.0887985522,"1616":5821.3549702565,"1617":5962.123196654,"1618":6102.9535504894,"1619":6240.8608476563,"1620":6378.6995905555,"1621":6513.2017013938,"1622":6647.504846811,"1623":6778.0709529376,"1624":6908.3084677151,"1625":7034.4232843589,"1626":7160.0811805258,"1627":7281.246990122,"1628":7401.8293533696,"1629":7517.5679698231,"1630":7632.5989166527,"1631":7742.4535725202,"1632":7851.4791283373,"1633":7955.0162774799,"1634":8057.6061682247,"1635":8154.4171968164,"1636":8250.166547059,"1637":8339.8693861987,"1638":8428.4003169973,"1639":8510.6409505604,"1640":8591.6040707771,"1641":8666.057932555,"1642":8739.1337177429,"1643":8805.5069723578,"1644":8870.4070257778,"1645":8928.4377283169,"1646":8984.9059191084,"1647":9034.3650489004,"1648":9082.178522912,"1649":9122.8708873674,"1650":9161.8409466611,"1651":9193.605951608,"1652":9223.5787991636,"1653":9246.2910826394,"1654":9267.1484293208,"1655":9280.718356319,"1656":9292.3778877076,"1657":9296.7519039259,"1658":9299.1676051781,"1659":9294.3284483726,"1660":9287.4907858193,"1661":9273.4575539312,"1662":9257.3935127026,"1663":9234.221588487,"1664":9208.9945660148,"1665":9176.7753984703,"1666":9142.4849542871,"1667":9101.3456977485,"1668":9058.1271605717,"1669":9008.2301728898,"1670":8956.254106541,"1671":8897.7963083304,"1672":8837.2678385978,"1673":8770.4799360812,"1674":8701.6379411821,"1675":8626.7835156982,"1676":8549.8996835355,"1677":8467.274151304,"1678":8382.6519072384,"1679":8292.581353487,"1680":8200.5546628556,"1681":8103.3945549107,"1682":8004.3266050183,"1683":7900.4603894376,"1684":7794.7421562227,"1685":7684.5797455073,"1686":7572.6284505382,"1687":7456.6046053948,"1688":7338.8620692871,"1689":7217.4346828261,"1690":7094.3655815785,"1691":6968.0138722194,"1692":6840.1039033495,"1693":6709.3265235644,"1694":6577.0804892829,"1695":6442.3935576435,"1696":6306.3333726302,"1697":6168.268436923,"1698":6028.9310685682,"1699":5888.0330080185,"1700":5745.9683572578,"1701":5602.7932321406,"1702":5458.5619632474,"1703":5313.6748203709,"1704":5167.8461482706,"1705":5021.8187909951,"1706":4874.9682348336,"1707":4728.3769664248,"1708":4581.0840782577,"1709":4434.5074274806,"1710":4287.3535050459,"1711":4141.3699429768,"1712":3994.935735578,"1713":3850.1213926427,"1714":3704.984809197,"1715":3561.9112014478,"1716":3418.6450297434,"1717":3277.8768033461,"1718":3137.0464495106,"1719":2999.1391523437,"1720":2861.3004094445,"1721":2726.7982986062,"1722":2592.4951531889,"1723":2461.9290470624,"1724":2331.6915322849,"1725":2205.5767156411,"1726":2079.9188194742,"1727":1958.753009878,"1728":1838.1706466303,"1729":1722.4320301769,"1730":1607.4010833473,"1731":1497.5464274798,"1732":1388.5208716627,"1733":1284.9837225201,"1734":1182.3938317753,"1735":1085.5828031836,"1736":989.833452941,"1737":900.1306138013,"1738":811.5996830027,"1739":729.3590494396,"1740":648.3959292229,"1741":573.942067445,"1742":500.8662822572,"1743":434.4930276422,"1744":369.5929742222,"1745":311.5622716831,"1746":255.0940808916,"1747":205.6349510996,"1748":157.821477088,"1749":117.1291126326,"1750":78.1590533389,"1751":46.394048392,"1752":16.4212008364,"1753":-6.2910826394,"1754":-27.1484293208,"1755":-40.718356319,"1756":-52.3778877077,"1757":-56.7519039259,"1758":-59.1676051781,"1759":-54.3284483726,"1760":-47.4907858193,"1761":-33.4575539312,"1762":-17.3935127026,"1763":5.7784115131,"1764":31.0054339852,"1765":63.2246015297,"1766":97.5150457129,"1767":138.6543022515,"1768":181.8728394283,"1769":231.7698271102,"1770":283.745893459,"1771":342.2036916696,"1772":402.7321614022,"1773":469.5200639188,"1774":538.3620588179,"1775":613.2164843018,"1776":690.1003164645,"1777":772.725848696,"1778":857.3480927616,"1779":947.418646513,"1780":1039.4453371444,"1781":1136.6054450893,"1782":1235.6733949817,"1783":1339.5396105624,"1784":1445.2578437773,"1785":1555.4202544927,"1786":1667.3715494618,"1787":1783.3953946052,"1788":1901.1379307129,"1789":2022.5653171739,"1790":2145.6344184215,"1791":2271.9861277807,"1792":2399.8960966505,"1793":2530.6734764356,"1794":2662.919510717,"1795":2797.6064423565,"1796":2933.6666273698,"1797":3071.731563077,"1798":3211.0689314318,"1799":3351.9669919815,"1800":3494.0316427422,"1801":3637.2067678594,"1802":3781.4380367526,"1803":3926.3251796291,"1804":4072.1538517294,"1805":4218.1812090049,"1806":4365.0317651664,"1807":4511.6230335753,"1808":4658.9159217423,"1809":4805.4925725194,"1810":4952.6464949541,"1811":5098.6300570232,"1812":5245.064264422,"1813":5389.8786073573,"1814":5535.015190803,"1815":5678.0887985522,"1816":5821.3549702566,"1817":5962.1231966539,"1818":6102.9535504894,"1819":6240.8608476563,"1820":6378.6995905555,"1821":6513.2017013938,"1822":6647.5048468111,"1823":6778.0709529376,"1824":6908.3084677151,"1825":7034.4232843589,"1826":7160.0811805258,"1827":7281.246990122,"1828":7401.8293533696,"1829":7517.5679698231,"1830":7632.5989166527,"1831":7742.4535725202,"1832":7851.4791283373,"1833":7955.0162774799,"1834":8057.6061682247,"1835":8154.4171968164,"1836":8250.166547059,"1837":8339.8693861987,"1838":8428.4003169973,"1839":8510.6409505604,"1840":8591.6040707771,"1841":8666.057932555,"1842":8739.1337177428,"1843":8805.5069723578,"1844":8870.4070257778,"1845":8928.4377283169,"1846":8984.9059191084,"1847":9034.3650489004,"1848":9082.178522912,"1849":9122.8708873674,"1850":9161.8409466611,"1851":9193.605951608,"1852":9223.5787991636,"1853":9246.2910826394,"1854":9267.1484293208,"1855":9280.718356319,"1856":9292.3778877076,"1857":9296.7519039259,"1858":9299.1676051781,"1859":9294.3284483726,"1860":9287.4907858193,"1861":9273.4575539312,"1862":9257.3935127026,"1863":9234.221588487,"1864":9208.9945660148,"1865":9176.7753984703,"1866":9142.4849542871,"1867":9101.3456977485,"1868":9058.1271605717,"1869":9008.2301728898,"1870":8956.254106541,"1871":8897.7963083304,"1872":8837.2678385978,"1873":8770.4799360812,"1874":8701.6379411821,"1875":8626.7835156982,"1876":8549.8996835355,"1877":8467.274151304,"1878":8382.6519072384,"1879":8292.581353487,"1880":8200.5546628555,"1881":8103.3945549107,"1882":8004.3266050183,"1883":7900.4603894376,"1884":7794.7421562227,"1885":7684.5797455073,"1886":7572.6284505382,"1887":7456.6046053948,"1888":7338.8620692871,"1889":7217.4346828261,"1890":7094.3655815785,"1891":6968.0138722193,"1892":6840.1039033495,"1893":6709.3265235644,"1894":6577.080489283,"1895":6442.3935576435,"1896":6306.3333726302,"1897":6168.268436923,"1898":6028.9310685682,"1899":5888.0330080185,"1900":5745.9683572578,"1901":5602.7932321406,"1902":5458.5619632474,"1903":5313.6748203709,"1904":5167.8461482706,"1905":5021.8187909951,"1906":4874.9682348336,"1907":4728.3769664247,"1908":4581.0840782577,"1909":4434.5074274806,"1910":4287.3535050459,"1911":4141.3699429768,"1912":3994.935735578,"1913":3850.1213926427,"1914":3704.984809197,"1915":3561.9112014478,"1916":3418.6450297434,"1917":3277.8768033461,"1918":3137.0464495106,"1919":2999.1391523437,"1920":2861.3004094445,"1921":2726.7982986062,"1922":2592.4951531889,"1923":2461.9290470624,"1924":2331.6915322849,"1925":2205.5767156411,"1926":2079.9188194742,"1927":1958.753009878,"1928":1838.1706466303,"1929":1722.4320301769,"1930":1607.4010833473,"1931":1497.5464274798,"1932":1388.5208716627,"1933":1284.9837225201,"1934":1182.3938317753,"1935":1085.5828031836,"1936":989.833452941,"1937":900.1306138013,"1938":811.5996830027,"1939":729.3590494396,"1940":648.3959292229,"1941":573.942067445,"1942":500.8662822572,"1943":434.4930276422,"1944":369.5929742222,"1945":311.5622716831,"1946":255.0940808916,"1947":205.6349510996,"1948":157.821477088,"1949":117.1291126326,"1950":78.1590533389,"1951":46.394048392,"1952":16.4212008364,"1953":-6.2910826394,"1954":-27.1484293208,"1955":-40.718356319,"1956":-52.3778877077,"1957":-56.7519039259,"1958":-59.1676051781,"1959":-54.3284483726,"1960":-47.4907858193,"1961":-33.4575539312,"1962":-17.3935127026,"1963":5.7784115131,"1964":31.0054339852,"1965":63.2246015297,"1966":97.5150457129,"1967":138.6543022515,"1968":181.8728394283,"1969":231.7698271102,"1970":283.745893459,"1971":342.2036916696,"1972":402.7321614022,"1973":469.5200639188,"1974":538.3620588179,"1975":613.2164843018,"1976":690.1003164645,"1977":772.725848696,"1978":857.3480927616,"1979":947.418646513,"1980":1039.4453371444,"1981":1136.6054450893,"1982":1235.6733949817,"1983":1339.5396105624,"1984":1445.2578437773,"1985":1555.4202544927,"1986":1667.3715494618,"1987":1783.3953946052,"1988":1901.1379307129,"1989":2022.5653171739,"1990":2145.6344184215,"1991":2271.9861277807,"1992":2399.8960966505,"1993":2530.6734764356,"1994":2662.919510717,"1995":2797.6064423565,"1996":2933.6666273698,"1997":3071.731563077,"1998":3211.0689314318,"1999":3351.9669919815,"2000":3494.0316427422},"pressure_out":{"0":4400.0000020489,"1":4480.5268045074,"2":4564.6278696844,"3":4651.9969984662,"4":4742.726139727,"5":4836.0235821984,"6":4932.3379854693,"7":5030.5725667047,"8":5131.4939252043,"9":5233.7100545083,"10":5338.29965854,"11":5443.5799236145,"12":5550.9360607329,"13":5658.3998777294,"14":5767.6564601506,"15":5876.4588984665,"16":5986.7844495699,"17":6096.1153526121,"18":6206.7122798624,"19":6315.7956494413,"20":6425.899765196,"21":6533.9933740472,"22":6642.8736297705,"23":6749.2688291945,"24":6856.227231263,"25":6960.2489233835,"26":7064.6206010815,"27":7165.6273475472,"28":7266.780746079,"29":7364.1649871895,"30":7461.5021606037,"31":7554.6905208374,"32":7647.6475016813,"33":7736.1011594699,"34":7824.1483837859,"35":7907.3634851176,"36":7990.0062530718,"37":8067.5143501388,"38":8144.2933041482,"39":8215.6618017879,"40":8286.1534054962,"41":8350.9859996204,"42":8414.8030024752,"43":8472.7400960525,"44":8529.5319695628,"45":8580.2510530149,"46":8629.7043860339,"47":8672.9203701428,"48":8714.7592117189,"49":8750.2247023195,"50":8784.2108418116,"51":8811.7163466688,"52":8837.6495219177,"53":8857.0235812671,"54":8874.7416066744,"55":8885.850839938,"56":8895.2296473126,"57":8897.9787094983,"58":8898.9322955107,"59":8893.2637377589,"60":8885.7440127798,"61":8871.6380424429,"62":8855.6345764514,"63":8833.1087129808,"64":8808.6483750985,"65":8777.7569988681,"66":8744.9034879213,"67":8705.737279943,"68":8664.5905442657,"69":8617.2758155467,"70":8567.9713610215,"71":8512.6692710775,"72":8455.3773571669,"73":8392.283021942,"74":8327.2077461861,"75":8256.5492363354,"76":8183.927508491,"77":8105.9647396603,"78":8026.0651473229,"79":7941.0886647038,"80":7854.210232892,"81":7762.5398929523,"82":7669.0107407439,"83":7570.9942936151,"84":7471.1701915018,"85":7367.1817680645,"86":7261.4446002388,"87":7151.8831084697,"88":7040.6392447749,"89":6925.9266804113,"90":6809.6052631689,"91":6690.1849402049,"92":6569.2360915842,"93":6445.5707985415,"94":6320.4637545552,"95":6193.0338428602,"96":6064.2550204531,"97":5933.5564316119,"98":5801.6074356597,"99":5668.1496742456,"100":5533.5452515939,"101":5397.8493113471,"102":5261.115259302,"103":5123.7115098951,"104":4985.3825468172,"105":4846.8085890546,"106":4707.4261949167,"107":4568.2246923145,"108":4428.3349272535,"109":4289.0514220899,"110":4149.2027311155,"111":4010.3834531468,"112":3871.1244652696,"113":3733.3141413767,"114":3595.1914714753,"115":3458.9311445379,"116":3322.4872063111,"117":3188.3120716043,"118":3054.0829099405,"119":2922.5201773081,"120":2791.0333283573,"121":2662.6001183419,"122":2534.3725054904,"123":2409.5737874908,"124":2285.1096613219,"125":2164.4362417056,"126":2044.225171875,"127":1928.1517397939,"128":1812.6666665659,"129":1701.6499050163,"130":1591.3452579845,"131":1485.8220274106,"132":1381.1319186812,"133":1281.5175201485,"134":1182.854018982,"135":1089.5405436487,"136":997.2920392474,"137":910.6468105317,"138":825.176469326,"139":745.5405838125,"140":667.1849072336,"141":594.8718799839,"142":523.9393683253,"143":459.2338878526,"144":396.0038154125,"145":339.1606131564,"146":283.8819194217,"147":235.1247581157,"148":188.0150592954,"149":147.5358441555,"150":108.7805689061,"151":76.7385850911,"152":46.4902377898,"153":23.0115170907,"154":1.3890715141,"155":-13.4341092741,"156":-26.3456835173,"157":-32.4551706054,"158":-36.6052470584,"159":-33.9772426397,"160":-29.3497410984,"161":-17.9949004072,"162":-4.6083533676,"163":15.4282545306,"164":37.520772309,"165":66.1598398144,"166":96.8709183254,"167":133.9992099687,"168":173.2074467143,"169":218.678243941,"170":266.2287210499,"171":319.8623993473,"172":375.5672931536,"173":437.1520292236,"174":500.7913498821,"175":570.0839560524,"176":641.4064142554,"177":718.1332968192,"178":796.8572941788,"179":880.7155318683,"180":966.5302710425,"181":1057.1888093658,"182":1149.7555195353,"183":1246.8564762525,"184":1345.8097491004,"185":1448.9698256759,"186":1553.9190565882,"187":1662.7310500394,"188":1773.2619788292,"189":1887.2963879968,"190":2002.9727330639,"191":2121.7794529564,"192":2242.1446324253,"193":2365.254729944,"194":2489.8336629812,"195":2616.7612270119,"196":2745.0622082074,"197":2875.3062667706,"198":3006.8229061814,"199":3139.8694030704,"200":3274.0826242635,"201":3409.4064473647,"202":3545.7865355709,"203":3682.8535888576,"204":3820.8622811479,"205":3959.1315921648,"206":4098.2242013978,"207":4237.1500559182,"208":4376.777620072,"209":4515.8117154978,"210":4655.4231639014,"211":4794.0167729052,"212":4933.0611008182,"213":5070.6672366863,"214":5208.5956796406,"215":5344.6712547691,"216":5480.9394540913,"217":5614.9474231138,"218":5749.0175740787,"219":5880.4290531663,"220":6011.7720273023,"221":6140.0683812703,"222":6268.1658144391,"223":6392.840703422,"224":6517.1870414303,"225":6637.7484190459,"226":6757.8529127158,"227":6873.8249678316,"228":6989.2136096529,"229":7100.1386440909,"230":7210.3560388128,"231":7315.7962735803,"232":7420.4074353582,"233":7519.9467382755,"234":7618.5388072799,"235":7711.7843351869,"236":7803.9682068988,"237":7890.5519559566,"238":7975.9638167187,"239":8055.5440746897,"240":8133.8468374518,"241":8206.1095322244,"242":8276.9941668178,"243":8341.6541058529,"244":8404.8408585419,"245":8461.6428543512,"246":8516.8823518482,"247":8565.6022290598,"248":8612.6764626474,"249":8653.1219426851,"250":8691.8451285604,"251":8723.8565884446,"252":8754.0759008899,"253":8777.527003165,"254":8799.1231776506,"255":8813.9213689528,"256":8826.8091727933,"257":8832.8960490905,"258":8837.024617794,"259":8834.3761548565,"260":8829.7291928418,"261":8818.355841034,"262":8804.9516859213,"263":8784.8983289395,"264":8762.7898791624,"265":8734.1356568825,"266":8703.4101629052,"267":8666.2681590375,"268":8627.0468790026,"269":8581.5636747884,"270":8534.0013959528,"271":8480.3564916622,"272":8424.6409195099,"273":8363.0460260247,"274":8299.3970434688,"275":8230.0952467458,"276":8158.7640463404,"277":8082.0288480527,"278":8003.296940642,"279":7919.4311787844,"280":7833.6092824997,"281":7742.9439362175,"282":7650.3707502075,"283":7553.2636335662,"284":7454.304501299,"285":7351.1388511493,"286":7246.1843185631,"287":7137.3672820741,"288":7026.8315562653,"289":6912.7925840958,"290":6797.1118986275,"291":6678.3010500754,"292":6557.9319433587,"293":6434.8181101785,"294":6310.2356237198,"295":6183.304679617,"296":6055.0004832425,"297":5924.7533663491,"298":5793.2338178052,"299":5660.1845537018,"300":5525.9687002896,"301":5390.6423733791,"302":5254.2599035091,"303":5117.1905847454,"304":4979.1797374967,"305":4840.9083766486,"306":4701.813817583,"307":4562.8861083504,"308":4423.2567799644,"309":4284.2210063724,"310":4144.6079616699,"311":4006.012834241,"312":3866.9670619775,"313":3729.3595522198,"314":3591.4298023995,"315":3455.352984159,"316":3319.0836023686,"317":3185.0745085633,"318":3051.0032876867,"319":2919.5907908819,"320":2788.2468486768,"321":2659.9495738659,"322":2531.8512647765,"323":2407.1755426037,"324":2282.8284120517,"325":2162.2662805558,"326":2042.1610697827,"327":1926.1883325469,"328":1810.7990418818,"329":1699.8733902533,"330":1589.6554084497,"331":1484.2146152407,"332":1379.6029222642,"333":1280.0631140622,"334":1181.4705644228,"335":1088.2245793282,"336":996.0402727319,"337":909.456110005,"338":824.0438557543,"339":744.4632234905,"340":666.1601046951,"341":593.8970712579,"342":523.0121145212,"343":458.3518690582,"344":395.16482489,"345":338.3625518211,"346":283.1227905902,"347":234.4026625107,"348":187.3281902934,"349":146.8824832673,"350":108.159081477,"351":76.147416211,"352":45.9279084032,"353":22.4766202961,"354":0.8802690441,"355":-13.9180904011,"356":-26.806054182,"357":-32.893082617,"358":-37.0217960365,"359":-34.3734707552,"360":-29.7266396813,"361":-18.3534124265,"362":-4.9493757906,"363":15.1038684941,"364":37.2122110719,"365":65.8663313822,"366":96.5917283643,"367":133.7336399686,"368":172.954832241,"369":218.4379529741,"370":266.0001524013,"371":319.6449811572,"372":375.3604814596,"373":436.9553066002,"374":500.6042241455,"375":569.9059590294,"376":641.2371006124,"377":717.9722429474,"378":796.7040971349,"379":880.5698083658,"380":966.3916564934,"381":1057.0569569679,"382":1149.630099405,"383":1246.7371745989,"384":1345.6962674407,"385":1448.8618800883,"386":1553.8163770019,"387":1662.6333795585,"388":1773.1690730904,"389":1887.2080145575,"390":2002.8886708212,"391":2121.6994915934,"392":2242.0685718854,"393":2365.18237993,"394":2489.7648424794,"395":2616.6957638391,"396":2744.9999385801,"397":2875.2470348954,"398":3006.7665638651,"399":3139.8158093491,"400":3274.0316450503,"401":3409.3579551138,"402":3545.7404089586,"403":3682.8097124789,"404":3820.8205452279,"405":3959.0918922836,"406":4098.1864382296,"407":4237.1141349828,"408":4376.743451498,"409":4515.7792137984,"410":4655.3922477601,"411":4793.9873649722,"412":4933.0331275174,"413":5070.6406280307,"414":5208.5703690577,"415":5344.6471789338,"416":5480.916552768,"417":5614.9256390051,"418":5748.9968526828,"419":5880.4093426398,"420":6011.7532783312,"421":6140.0505469462,"422":6268.1488501419,"423":6392.8245667085,"424":6517.1716919279,"425":6637.7338183512,"426":6757.8390242992,"427":6873.8117569454,"428":6989.2010432447,"429":7100.1266907204,"430":7210.3446685738,"431":7315.7854580252,"432":7420.3971474276,"433":7519.9369522297,"434":7618.5294986351,"435":7711.7754806536,"436":7803.9597843238,"437":7890.5439442672,"438":7975.9561958703,"439":8055.5368256157,"440":8133.8399420155,"441":8206.102973174,"442":8276.9879277432,"443":8341.6481711443,"444":8404.8352133513,"445":8461.6374845547,"446":8516.877244011,"447":8565.5973704025,"448":8612.6718410142,"449":8653.1175465129,"450":8691.8409468505,"451":8723.8526107346,"452":8754.0721172278,"453":8777.5234040845,"454":8799.1197541472,"455":8813.918112461,"456":8826.8060751657,"457":8832.8931025771,"458":8837.0218150229,"459":8834.3734888154,"460":8829.7266568604,"461":8818.3534287675,"462":8804.9493913344,"463":8784.8961462915,"464":8762.7878029923,"465":8734.133681996,"466":8703.4082843612,"467":8666.2663721362,"468":8627.0451792732,"469":8581.5620579784,"470":8533.9998580169,"471":8480.3550287528,"472":8424.6395279669,"473":8363.0447023665,"474":8299.3957843837,"475":8230.0940490837,"476":8158.7629071049,"477":8082.0277643934,"478":8003.2959098479,"479":7919.4301982763,"480":7833.6083498247,"481":7742.9430490419,"482":7650.3699063117,"483":7553.2628308389,"484":7454.3037377318,"485":7351.1381248319,"486":7246.1836276783,"487":7137.3666248933,"488":7026.8309311443,"489":6912.7919894706,"490":6797.1113330104,"491":6678.3005120512,"492":6557.9314315815,"493":6434.8176233677,"494":6310.2351606575,"495":6183.3042391447,"496":6055.0000642581,"497":5924.7529678044,"498":5793.233438703,"499":5660.1841930937,"500":5525.9683572734,"501":5390.6420470965,"502":5254.2595931438,"503":5117.190289521,"504":4979.1794566744,"505":4840.9081095259,"506":4701.8135634916,"507":4562.8858666545,"508":4423.2565500594,"509":4284.220787683,"510":4144.6077536491,"511":4006.0126363682,"512":3866.9668737577,"513":3729.3593731821,"514":3591.429632096,"515":3455.3528221636,"516":3319.0834482759,"517":3185.0743619878,"518":3051.0031482617,"519":2919.5906582586,"520":2788.2467225234,"521":2659.9494538667,"522":2531.8511506313,"523":2407.175434027,"524":2282.8283087717,"525":2162.2661823143,"526":2042.1609763338,"527":1926.1882436567,"528":1810.7989573281,"529":1699.8733098244,"530":1589.6553319445,"531":1484.2145424677,"532":1379.6028530414,"533":1280.0630482163,"534":1181.4705017892,"535":1088.22451975,"536":996.0402160601,"537":909.456056098,"538":824.0438044771,"539":744.4631747147,"540":666.1600582988,"541":593.897027125,"542":523.0120725412,"543":458.3518291262,"544":395.1647869061,"545":338.3625156901,"546":283.1227562218,"547":234.4026298189,"548":187.3281591965,"549":146.8824536875,"550":108.1590533401,"551":76.1473894467,"552":45.9278829447,"553":22.4765960795,"554":0.8802460089,"555":-13.9181123126,"556":-26.8060750245,"557":-32.8931024428,"558":-37.0218148951,"559":-34.3734886938,"560":-29.7266567448,"561":-18.3534286575,"562":-4.9493912298,"563":15.103853808,"564":37.2121971023,"565":65.8663180941,"566":96.5917157244,"567":133.7336279453,"568":172.9548208043,"569":218.4379420953,"570":266.0001420532,"571":319.6449713139,"572":375.3604720966,"573":436.9552976939,"574":500.6042156737,"575":569.9059509709,"576":641.237092947,"577":717.9722356559,"578":796.7040901991,"579":880.5698017684,"580":966.3916502179,"581":1057.0569509985,"582":1149.6300937268,"583":1246.7371691977,"584":1345.696262303,"585":1448.8618752012,"586":1553.8163723532,"587":1662.6333751366,"588":1773.1690688842,"589":1887.2080105565,"590":2002.8886670154,"591":2121.6994879733,"592":2242.0685684419,"593":2365.1823766545,"594":2489.7648393636,"595":2616.6957608754,"596":2744.999935761,"597":2875.2470322138,"598":3006.7665613143,"599":3139.8158069227,"600":3274.0316427423,"601":3409.3579529183,"602":3545.7404068703,"603":3682.8097104925,"604":3820.8205433384,"605":3959.0918904863,"606":4098.18643652,"607":4237.1141333565,"608":4376.7434499511,"609":4515.7792123269,"610":4655.3922463604,"611":4793.9873636408,"612":4933.0331262509,"613":5070.6406268261,"614":5208.5703679118,"615":5344.6471778438,"616":5480.9165517312,"617":5614.9256380189,"618":5748.9968517447,"619":5880.4093417474,"620":6011.7532774824,"621":6140.0505461387,"622":6268.1488493739,"623":6392.8245659779,"624":6517.171691233,"625":6637.7338176902,"626":6757.8390236705,"627":6873.8117563473,"628":6989.2010426757,"629":7100.1266901792,"630":7210.344668059,"631":7315.7854575356,"632":7420.3971469618,"633":7519.9369517867,"634":7618.5294982137,"635":7711.7754802527,"636":7803.9597839424,"637":7890.5439439045,"638":7975.9561955253,"639":8055.5368252875,"640":8133.8399417033,"641":8206.102972877,"642":8276.9879274607,"643":8341.6481708756,"644":8404.8352130957,"645":8461.6374843115,"646":8516.8772437798,"647":8565.5973701826,"648":8612.6718408049,"649":8653.1175463139,"650":8691.8409466611,"651":8723.8526105545,"652":8754.0721170565,"653":8777.5234039216,"654":8799.1197539922,"655":8813.9181123136,"656":8826.8060750255,"657":8832.8931024437,"658":8837.021814896,"659":8834.3734886947,"660":8829.7266567455,"661":8818.3534286583,"662":8804.9493912305,"663":8784.8961461927,"664":8762.7878028983,"665":8734.1336819065,"666":8703.4082842762,"667":8666.2663720553,"668":8627.0451791962,"669":8581.5620579052,"670":8533.9998579473,"671":8480.3550286865,"672":8424.6395279039,"673":8363.0447023065,"674":8299.3957843267,"675":8230.0940490295,"676":8158.7629070533,"677":8082.0277643444,"678":8003.2959098012,"679":7919.4301982319,"680":7833.6083497824,"681":7742.9430490017,"682":7650.3699062735,"683":7553.2628308026,"684":7454.3037376973,"685":7351.138124799,"686":7246.183627647,"687":7137.3666248636,"688":7026.830931116,"689":6912.7919894437,"690":6797.1113329848,"691":6678.3005120269,"692":6557.9314315583,"693":6434.8176233456,"694":6310.2351606365,"695":6183.3042391248,"696":6055.0000642392,"697":5924.7529677863,"698":5793.2334386858,"699":5660.1841930774,"700":5525.9683572579,"701":5390.6420470818,"702":5254.2595931298,"703":5117.1902895076,"704":4979.1794566617,"705":4840.9081095138,"706":4701.8135634801,"707":4562.8858666436,"708":4423.256550049,"709":4284.2207876731,"710":4144.6077536397,"711":4006.0126363592,"712":3866.9668737492,"713":3729.359373174,"714":3591.4296320883,"715":3455.3528221562,"716":3319.0834482689,"717":3185.0743619812,"718":3051.0031482554,"719":2919.5906582526,"720":2788.2467225177,"721":2659.9494538613,"722":2531.8511506261,"723":2407.1754340221,"724":2282.8283087671,"725":2162.2661823099,"726":2042.1609763296,"727":1926.1882436527,"728":1810.7989573243,"729":1699.8733098208,"730":1589.655331941,"731":1484.2145424644,"732":1379.6028530382,"733":1280.0630482133,"734":1181.4705017863,"735":1088.2245197473,"736":996.0402160576,"737":909.4560560955,"738":824.0438044748,"739":744.4631747125,"740":666.1600582967,"741":593.897027123,"742":523.0120725393,"743":458.3518291244,"744":395.1647869043,"745":338.3625156885,"746":283.1227562203,"747":234.4026298175,"748":187.3281591951,"749":146.8824536861,"750":108.1590533389,"751":76.1473894455,"752":45.9278829435,"753":22.4765960784,"754":0.8802460078,"755":-13.9181123136,"756":-26.8060750255,"757":-32.8931024437,"758":-37.021814896,"759":-34.3734886946,"760":-29.7266567455,"761":-18.3534286583,"762":-4.9493912305,"763":15.1038538073,"764":37.2121971017,"765":65.8663180935,"766":96.5917157238,"767":133.7336279447,"768":172.9548208038,"769":218.4379420948,"770":266.0001420527,"771":319.6449713135,"772":375.3604720961,"773":436.9552976935,"774":500.6042156733,"775":569.9059509705,"776":641.2370929467,"777":717.9722356556,"778":796.7040901988,"779":880.5698017681,"780":966.3916502176,"781":1057.0569509983,"782":1149.6300937265,"783":1246.7371691974,"784":1345.6962623027,"785":1448.861875201,"786":1553.816372353,"787":1662.6333751364,"788":1773.169068884,"789":1887.2080105563,"790":2002.8886670152,"791":2121.6994879731,"792":2242.0685684417,"793":2365.1823766544,"794":2489.7648393635,"795":2616.6957608752,"796":2744.9999357608,"797":2875.2470322137,"798":3006.7665613142,"799":3139.8158069226,"800":3274.0316427421,"801":3409.3579529182,"802":3545.7404068702,"803":3682.8097104924,"804":3820.8205433383,"805":3959.0918904862,"806":4098.1864365199,"807":4237.1141333564,"808":4376.743449951,"809":4515.7792123269,"810":4655.3922463603,"811":4793.9873636407,"812":4933.0331262508,"813":5070.640626826,"814":5208.5703679117,"815":5344.6471778438,"816":5480.9165517311,"817":5614.9256380188,"818":5748.9968517446,"819":5880.4093417473,"820":6011.7532774823,"821":6140.0505461387,"822":6268.1488493738,"823":6392.8245659779,"824":6517.1716912329,"825":6637.7338176901,"826":6757.8390236704,"827":6873.8117563473,"828":6989.2010426757,"829":7100.1266901792,"830":7210.344668059,"831":7315.7854575356,"832":7420.3971469618,"833":7519.9369517867,"834":7618.5294982137,"835":7711.7754802527,"836":7803.9597839424,"837":7890.5439439045,"838":7975.9561955252,"839":8055.5368252875,"840":8133.8399417033,"841":8206.102972877,"842":8276.9879274607,"843":8341.6481708756,"844":8404.8352130957,"845":8461.6374843115,"846":8516.8772437797,"847":8565.5973701826,"848":8612.6718408049,"849":8653.1175463139,"850":8691.8409466611,"851":8723.8526105545,"852":8754.0721170565,"853":8777.5234039216,"854":8799.1197539922,"855":8813.9181123136,"856":8826.8060750255,"857":8832.8931024437,"858":8837.021814896,"859":8834.3734886946,"860":8829.7266567455,"861":8818.3534286583,"862":8804.9493912305,"863":8784.8961461927,"864":8762.7878028983,"865":8734.1336819065,"866":8703.4082842762,"867":8666.2663720553,"868":8627.0451791962,"869":8581.5620579052,"870":8533.9998579473,"871":8480.3550286865,"872":8424.6395279039,"873":8363.0447023065,"874":8299.3957843267,"875":8230.0940490295,"876":8158.7629070533,"877":8082.0277643444,"878":8003.2959098012,"879":7919.4301982319,"880":7833.6083497824,"881":7742.9430490018,"882":7650.3699062735,"883":7553.2628308026,"884":7454.3037376973,"885":7351.138124799,"886":7246.183627647,"887":7137.3666248636,"888":7026.830931116,"889":6912.7919894437,"890":6797.1113329848,"891":6678.3005120269,"892":6557.9314315583,"893":6434.8176233456,"894":6310.2351606365,"895":6183.3042391248,"896":6055.0000642392,"897":5924.7529677863,"898":5793.2334386858,"899":5660.1841930774,"900":5525.9683572579,"901":5390.6420470818,"902":5254.2595931298,"903":5117.1902895076,"904":4979.1794566617,"905":4840.9081095138,"906":4701.8135634801,"907":4562.8858666436,"908":4423.256550049,"909":4284.2207876731,"910":4144.6077536397,"911":4006.0126363593,"912":3866.9668737492,"913":3729.359373174,"914":3591.4296320883,"915":3455.3528221562,"916":3319.0834482689,"917":3185.0743619812,"918":3051.0031482554,"919":2919.5906582527,"920":2788.2467225177,"921":2659.9494538613,"922":2531.8511506262,"923":2407.1754340221,"924":2282.8283087671,"925":2162.2661823099,"926":2042.1609763296,"927":1926.1882436527,"928":1810.7989573243,"929":1699.8733098208,"930":1589.655331941,"931":1484.2145424644,"932":1379.6028530383,"933":1280.0630482133,"934":1181.4705017863,"935":1088.2245197473,"936":996.0402160576,"937":909.4560560956,"938":824.0438044748,"939":744.4631747125,"940":666.1600582967,"941":593.897027123,"942":523.0120725393,"943":458.3518291244,"944":395.1647869043,"945":338.3625156885,"946":283.1227562203,"947":234.4026298175,"948":187.3281591951,"949":146.8824536861,"950":108.1590533389,"951":76.1473894455,"952":45.9278829435,"953":22.4765960784,"954":0.8802460078,"955":-13.9181123136,"956":-26.8060750255,"957":-32.8931024437,"958":-37.021814896,"959":-34.3734886946,"960":-29.7266567455,"961":-18.3534286583,"962":-4.9493912305,"963":15.1038538073,"964":37.2121971017,"965":65.8663180935,"966":96.5917157238,"967":133.7336279447,"968":172.9548208038,"969":218.4379420948,"970":266.0001420527,"971":319.6449713135,"972":375.3604720961,"973":436.9552976935,"974":500.6042156733,"975":569.9059509705,"976":641.2370929467,"977":717.9722356556,"978":796.7040901988,"979":880.5698017681,"980":966.3916502176,"981":1057.0569509982,"982":1149.6300937265,"983":1246.7371691974,"984":1345.6962623027,"985":1448.861875201,"986":1553.816372353,"987":1662.6333751364,"988":1773.169068884,"989":1887.2080105563,"990":2002.8886670152,"991":2121.6994879731,"992":2242.0685684417,"993":2365.1823766544,"994":2489.7648393635,"995":2616.6957608752,"996":2744.9999357609,"997":2875.2470322137,"998":3006.7665613142,"999":3139.8158069226,"1000":3274.0316427421,"1001":3409.3579529182,"1002":3545.7404068702,"1003":3682.8097104924,"1004":3820.8205433383,"1005":3959.0918904862,"1006":4098.1864365199,"1007":4237.1141333564,"1008":4376.743449951,"1009":4515.7792123269,"1010":4655.3922463603,"1011":4793.9873636407,"1012":4933.0331262508,"1013":5070.640626826,"1014":5208.5703679117,"1015":5344.6471778438,"1016":5480.9165517311,"1017":5614.9256380188,"1018":5748.9968517446,"1019":5880.4093417473,"1020":6011.7532774823,"1021":6140.0505461387,"1022":6268.1488493738,"1023":6392.8245659779,"1024":6517.1716912329,"1025":6637.7338176901,"1026":6757.8390236704,"1027":6873.8117563473,"1028":6989.2010426757,"1029":7100.1266901792,"1030":7210.344668059,"1031":7315.7854575356,"1032":7420.3971469617,"1033":7519.9369517867,"1034":7618.5294982137,"1035":7711.7754802527,"1036":7803.9597839424,"1037":7890.5439439044,"1038":7975.9561955252,"1039":8055.5368252875,"1040":8133.8399417033,"1041":8206.102972877,"1042":8276.9879274607,"1043":8341.6481708756,"1044":8404.8352130957,"1045":8461.6374843115,"1046":8516.8772437797,"1047":8565.5973701825,"1048":8612.6718408049,"1049":8653.1175463139,"1050":8691.8409466611,"1051":8723.8526105545,"1052":8754.0721170565,"1053":8777.5234039216,"1054":8799.1197539922,"1055":8813.9181123136,"1056":8826.8060750255,"1057":8832.8931024437,"1058":8837.021814896,"1059":8834.3734886946,"1060":8829.7266567455,"1061":8818.3534286583,"1062":8804.9493912305,"1063":8784.8961461927,"1064":8762.7878028983,"1065":8734.1336819065,"1066":8703.4082842762,"1067":8666.2663720553,"1068":8627.0451791962,"1069":8581.5620579052,"1070":8533.9998579473,"1071":8480.3550286865,"1072":8424.6395279039,"1073":8363.0447023065,"1074":8299.3957843267,"1075":8230.0940490295,"1076":8158.7629070533,"1077":8082.0277643444,"1078":8003.2959098012,"1079":7919.4301982319,"1080":7833.6083497824,"1081":7742.9430490018,"1082":7650.3699062735,"1083":7553.2628308026,"1084":7454.3037376973,"1085":7351.138124799,"1086":7246.183627647,"1087":7137.3666248636,"1088":7026.830931116,"1089":6912.7919894437,"1090":6797.1113329848,"1091":6678.3005120269,"1092":6557.9314315583,"1093":6434.8176233456,"1094":6310.2351606365,"1095":6183.3042391248,"1096":6055.0000642392,"1097":5924.7529677863,"1098":5793.2334386858,"1099":5660.1841930774,"1100":5525.9683572579,"1101":5390.6420470818,"1102":5254.2595931298,"1103":5117.1902895076,"1104":4979.1794566617,"1105":4840.9081095138,"1106":4701.8135634801,"1107":4562.8858666436,"1108":4423.256550049,"1109":4284.2207876731,"1110":4144.6077536397,"1111":4006.0126363593,"1112":3866.9668737492,"1113":3729.359373174,"1114":3591.4296320883,"1115":3455.3528221562,"1116":3319.0834482689,"1117":3185.0743619812,"1118":3051.0031482554,"1119":2919.5906582527,"1120":2788.2467225177,"1121":2659.9494538613,"1122":2531.8511506262,"1123":2407.1754340221,"1124":2282.8283087671,"1125":2162.2661823099,"1126":2042.1609763296,"1127":1926.1882436527,"1128":1810.7989573243,"1129":1699.8733098208,"1130":1589.655331941,"1131":1484.2145424644,"1132":1379.6028530383,"1133":1280.0630482133,"1134":1181.4705017863,"1135":1088.2245197473,"1136":996.0402160576,"1137":909.4560560956,"1138":824.0438044748,"1139":744.4631747125,"1140":666.1600582967,"1141":593.897027123,"1142":523.0120725393,"1143":458.3518291244,"1144":395.1647869043,"1145":338.3625156885,"1146":283.1227562203,"1147":234.4026298175,"1148":187.3281591951,"1149":146.8824536861,"1150":108.1590533389,"1151":76.1473894455,"1152":45.9278829435,"1153":22.4765960784,"1154":0.8802460078,"1155":-13.9181123136,"1156":-26.8060750255,"1157":-32.8931024437,"1158":-37.021814896,"1159":-34.3734886946,"1160":-29.7266567455,"1161":-18.3534286583,"1162":-4.9493912305,"1163":15.1038538073,"1164":37.2121971017,"1165":65.8663180935,"1166":96.5917157238,"1167":133.7336279447,"1168":172.9548208038,"1169":218.4379420948,"1170":266.0001420527,"1171":319.6449713135,"1172":375.3604720961,"1173":436.9552976935,"1174":500.6042156733,"1175":569.9059509705,"1176":641.2370929467,"1177":717.9722356556,"1178":796.7040901988,"1179":880.5698017681,"1180":966.3916502176,"1181":1057.0569509982,"1182":1149.6300937265,"1183":1246.7371691974,"1184":1345.6962623027,"1185":1448.861875201,"1186":1553.816372353,"1187":1662.6333751364,"1188":1773.169068884,"1189":1887.2080105563,"1190":2002.8886670152,"1191":2121.6994879731,"1192":2242.0685684417,"1193":2365.1823766544,"1194":2489.7648393635,"1195":2616.6957608752,"1196":2744.9999357609,"1197":2875.2470322137,"1198":3006.7665613142,"1199":3139.8158069226,"1200":3274.0316427421,"1201":3409.3579529182,"1202":3545.7404068702,"1203":3682.8097104924,"1204":3820.8205433383,"1205":3959.0918904862,"1206":4098.1864365199,"1207":4237.1141333564,"1208":4376.743449951,"1209":4515.7792123269,"1210":4655.3922463603,"1211":4793.9873636407,"1212":4933.0331262508,"1213":5070.640626826,"1214":5208.5703679117,"1215":5344.6471778438,"1216":5480.9165517311,"1217":5614.9256380188,"1218":5748.9968517446,"1219":5880.4093417473,"1220":6011.7532774823,"1221":6140.0505461387,"1222":6268.1488493738,"1223":6392.8245659779,"1224":6517.1716912329,"1225":6637.7338176901,"1226":6757.8390236704,"1227":6873.8117563473,"1228":6989.2010426757,"1229":7100.1266901792,"1230":7210.344668059,"1231":7315.7854575356,"1232":7420.3971469617,"1233":7519.9369517867,"1234":7618.5294982137,"1235":7711.7754802527,"1236":7803.9597839424,"1237":7890.5439439044,"1238":7975.9561955252,"1239":8055.5368252875,"1240":8133.8399417033,"1241":8206.102972877,"1242":8276.9879274607,"1243":8341.6481708756,"1244":8404.8352130957,"1245":8461.6374843115,"1246":8516.8772437797,"1247":8565.5973701825,"1248":8612.6718408049,"1249":8653.1175463139,"1250":8691.8409466611,"1251":8723.8526105545,"1252":8754.0721170565,"1253":8777.5234039216,"1254":8799.1197539922,"1255":8813.9181123136,"1256":8826.8060750255,"1257":8832.8931024437,"1258":8837.021814896,"1259":8834.3734886946,"1260":8829.7266567455,"1261":8818.3534286583,"1262":8804.9493912305,"1263":8784.8961461927,"1264":8762.7878028983,"1265":8734.1336819065,"1266":8703.4082842762,"1267":8666.2663720553,"1268":8627.0451791962,"1269":8581.5620579052,"1270":8533.9998579473,"1271":8480.3550286865,"1272":8424.6395279039,"1273":8363.0447023065,"1274":8299.3957843267,"1275":8230.0940490295,"1276":8158.7629070533,"1277":8082.0277643444,"1278":8003.2959098012,"1279":7919.4301982319,"1280":7833.6083497824,"1281":7742.9430490017,"1282":7650.3699062735,"1283":7553.2628308026,"1284":7454.3037376973,"1285":7351.138124799,"1286":7246.183627647,"1287":7137.3666248636,"1288":7026.830931116,"1289":6912.7919894437,"1290":6797.1113329848,"1291":6678.3005120269,"1292":6557.9314315583,"1293":6434.8176233456,"1294":6310.2351606365,"1295":6183.3042391248,"1296":6055.0000642391,"1297":5924.7529677863,"1298":5793.2334386858,"1299":5660.1841930774,"1300":5525.9683572579,"1301":5390.6420470818,"1302":5254.2595931298,"1303":5117.1902895076,"1304":4979.1794566617,"1305":4840.9081095138,"1306":4701.8135634801,"1307":4562.8858666436,"1308":4423.256550049,"1309":4284.2207876731,"1310":4144.6077536397,"1311":4006.0126363593,"1312":3866.9668737492,"1313":3729.359373174,"1314":3591.4296320883,"1315":3455.3528221562,"1316":3319.0834482689,"1317":3185.0743619812,"1318":3051.0031482554,"1319":2919.5906582527,"1320":2788.2467225177,"1321":2659.9494538613,"1322":2531.8511506262,"1323":2407.1754340221,"1324":2282.8283087671,"1325":2162.2661823099,"1326":2042.1609763296,"1327":1926.1882436527,"1328":1810.7989573243,"1329":1699.8733098208,"1330":1589.655331941,"1331":1484.2145424644,"1332":1379.6028530383,"1333":1280.0630482133,"1334":1181.4705017863,"1335":1088.2245197473,"1336":996.0402160576,"1337":909.4560560956,"1338":824.0438044748,"1339":744.4631747125,"1340":666.1600582967,"1341":593.897027123,"1342":523.0120725393,"1343":458.3518291244,"1344":395.1647869043,"1345":338.3625156885,"1346":283.1227562203,"1347":234.4026298175,"1348":187.3281591951,"1349":146.8824536861,"1350":108.1590533389,"1351":76.1473894455,"1352":45.9278829435,"1353":22.4765960784,"1354":0.8802460078,"1355":-13.9181123136,"1356":-26.8060750255,"1357":-32.8931024437,"1358":-37.021814896,"1359":-34.3734886946,"1360":-29.7266567455,"1361":-18.3534286583,"1362":-4.9493912305,"1363":15.1038538073,"1364":37.2121971017,"1365":65.8663180935,"1366":96.5917157238,"1367":133.7336279447,"1368":172.9548208038,"1369":218.4379420948,"1370":266.0001420527,"1371":319.6449713135,"1372":375.3604720961,"1373":436.9552976935,"1374":500.6042156733,"1375":569.9059509705,"1376":641.2370929467,"1377":717.9722356556,"1378":796.7040901988,"1379":880.5698017681,"1380":966.3916502176,"1381":1057.0569509983,"1382":1149.6300937265,"1383":1246.7371691974,"1384":1345.6962623027,"1385":1448.861875201,"1386":1553.816372353,"1387":1662.6333751364,"1388":1773.169068884,"1389":1887.2080105563,"1390":2002.8886670152,"1391":2121.6994879731,"1392":2242.0685684417,"1393":2365.1823766544,"1394":2489.7648393635,"1395":2616.6957608752,"1396":2744.9999357609,"1397":2875.2470322137,"1398":3006.7665613142,"1399":3139.8158069226,"1400":3274.0316427421,"1401":3409.3579529182,"1402":3545.7404068702,"1403":3682.8097104924,"1404":3820.8205433383,"1405":3959.0918904862,"1406":4098.1864365199,"1407":4237.1141333564,"1408":4376.743449951,"1409":4515.7792123269,"1410":4655.3922463603,"1411":4793.9873636407,"1412":4933.0331262508,"1413":5070.640626826,"1414":5208.5703679117,"1415":5344.6471778438,"1416":5480.9165517311,"1417":5614.9256380188,"1418":5748.9968517446,"1419":5880.4093417473,"1420":6011.7532774823,"1421":6140.0505461387,"1422":6268.1488493738,"1423":6392.8245659779,"1424":6517.1716912329,"1425":6637.7338176901,"1426":6757.8390236704,"1427":6873.8117563473,"1428":6989.2010426757,"1429":7100.1266901792,"1430":7210.344668059,"1431":7315.7854575356,"1432":7420.3971469617,"1433":7519.9369517867,"1434":7618.5294982137,"1435":7711.7754802527,"1436":7803.9597839424,"1437":7890.5439439044,"1438":7975.9561955252,"1439":8055.5368252875,"1440":8133.8399417033,"1441":8206.102972877,"1442":8276.9879274607,"1443":8341.6481708756,"1444":8404.8352130957,"1445":8461.6374843115,"1446":8516.8772437797,"1447":8565.5973701825,"1448":8612.6718408049,"1449":8653.1175463139,"1450":8691.8409466611,"1451":8723.8526105545,"1452":8754.0721170565,"1453":8777.5234039216,"1454":8799.1197539922,"1455":8813.9181123136,"1456":8826.8060750255,"1457":8832.8931024437,"1458":8837.021814896,"1459":8834.3734886946,"1460":8829.7266567455,"1461":8818.3534286583,"1462":8804.9493912305,"1463":8784.8961461927,"1464":8762.7878028983,"1465":8734.1336819065,"1466":8703.4082842762,"1467":8666.2663720553,"1468":8627.0451791962,"1469":8581.5620579052,"1470":8533.9998579473,"1471":8480.3550286865,"1472":8424.6395279039,"1473":8363.0447023065,"1474":8299.3957843267,"1475":8230.0940490295,"1476":8158.7629070533,"1477":8082.0277643444,"1478":8003.2959098012,"1479":7919.4301982319,"1480":7833.6083497824,"1481":7742.9430490017,"1482":7650.3699062735,"1483":7553.2628308026,"1484":7454.3037376973,"1485":7351.138124799,"1486":7246.183627647,"1487":7137.3666248636,"1488":7026.830931116,"1489":6912.7919894437,"1490":6797.1113329848,"1491":6678.3005120269,"1492":6557.9314315583,"1493":6434.8176233456,"1494":6310.2351606365,"1495":6183.3042391248,"1496":6055.0000642391,"1497":5924.7529677863,"1498":5793.2334386858,"1499":5660.1841930774,"1500":5525.9683572579,"1501":5390.6420470818,"1502":5254.2595931298,"1503":5117.1902895076,"1504":4979.1794566617,"1505":4840.9081095138,"1506":4701.8135634801,"1507":4562.8858666436,"1508":4423.256550049,"1509":4284.2207876731,"1510":4144.6077536397,"1511":4006.0126363593,"1512":3866.9668737492,"1513":3729.359373174,"1514":3591.4296320883,"1515":3455.3528221562,"1516":3319.0834482689,"1517":3185.0743619812,"1518":3051.0031482554,"1519":2919.5906582527,"1520":2788.2467225177,"1521":2659.9494538613,"1522":2531.8511506262,"1523":2407.1754340221,"1524":2282.8283087671,"1525":2162.2661823099,"1526":2042.1609763296,"1527":1926.1882436527,"1528":1810.7989573243,"1529":1699.8733098208,"1530":1589.655331941,"1531":1484.2145424644,"1532":1379.6028530383,"1533":1280.0630482133,"1534":1181.4705017863,"1535":1088.2245197473,"1536":996.0402160576,"1537":909.4560560956,"1538":824.0438044748,"1539":744.4631747125,"1540":666.1600582967,"1541":593.897027123,"1542":523.0120725393,"1543":458.3518291244,"1544":395.1647869043,"1545":338.3625156885,"1546":283.1227562203,"1547":234.4026298175,"1548":187.3281591951,"1549":146.8824536861,"1550":108.1590533389,"1551":76.1473894455,"1552":45.9278829435,"1553":22.4765960784,"1554":0.8802460078,"1555":-13.9181123136,"1556":-26.8060750255,"1557":-32.8931024437,"1558":-37.021814896,"1559":-34.3734886946,"1560":-29.7266567455,"1561":-18.3534286583,"1562":-4.9493912305,"1563":15.1038538073,"1564":37.2121971017,"1565":65.8663180935,"1566":96.5917157238,"1567":133.7336279447,"1568":172.9548208038,"1569":218.4379420948,"1570":266.0001420527,"1571":319.6449713135,"1572":375.3604720961,"1573":436.9552976935,"1574":500.6042156733,"1575":569.9059509705,"1576":641.2370929467,"1577":717.9722356556,"1578":796.7040901988,"1579":880.5698017681,"1580":966.3916502176,"1581":1057.0569509983,"1582":1149.6300937265,"1583":1246.7371691974,"1584":1345.6962623027,"1585":1448.861875201,"1586":1553.816372353,"1587":1662.6333751365,"1588":1773.169068884,"1589":1887.2080105563,"1590":2002.8886670152,"1591":2121.6994879731,"1592":2242.0685684417,"1593":2365.1823766544,"1594":2489.7648393635,"1595":2616.6957608752,"1596":2744.9999357609,"1597":2875.2470322137,"1598":3006.7665613142,"1599":3139.8158069226,"1600":3274.0316427421,"1601":3409.3579529183,"1602":3545.7404068702,"1603":3682.8097104924,"1604":3820.8205433383,"1605":3959.0918904862,"1606":4098.1864365199,"1607":4237.1141333564,"1608":4376.7434499511,"1609":4515.7792123269,"1610":4655.3922463603,"1611":4793.9873636408,"1612":4933.0331262508,"1613":5070.6406268261,"1614":5208.5703679117,"1615":5344.6471778438,"1616":5480.9165517311,"1617":5614.9256380189,"1618":5748.9968517446,"1619":5880.4093417474,"1620":6011.7532774824,"1621":6140.0505461387,"1622":6268.1488493739,"1623":6392.8245659779,"1624":6517.1716912329,"1625":6637.7338176902,"1626":6757.8390236704,"1627":6873.8117563473,"1628":6989.2010426757,"1629":7100.1266901792,"1630":7210.344668059,"1631":7315.7854575356,"1632":7420.3971469618,"1633":7519.9369517867,"1634":7618.5294982137,"1635":7711.7754802527,"1636":7803.9597839424,"1637":7890.5439439045,"1638":7975.9561955253,"1639":8055.5368252875,"1640":8133.8399417033,"1641":8206.102972877,"1642":8276.9879274607,"1643":8341.6481708756,"1644":8404.8352130957,"1645":8461.6374843115,"1646":8516.8772437797,"1647":8565.5973701826,"1648":8612.6718408049,"1649":8653.1175463139,"1650":8691.8409466611,"1651":8723.8526105545,"1652":8754.0721170565,"1653":8777.5234039216,"1654":8799.1197539922,"1655":8813.9181123136,"1656":8826.8060750255,"1657":8832.8931024437,"1658":8837.021814896,"1659":8834.3734886946,"1660":8829.7266567455,"1661":8818.3534286583,"1662":8804.9493912305,"1663":8784.8961461927,"1664":8762.7878028983,"1665":8734.1336819065,"1666":8703.4082842762,"1667":8666.2663720552,"1668":8627.0451791962,"1669":8581.5620579052,"1670":8533.9998579473,"1671":8480.3550286865,"1672":8424.6395279038,"1673":8363.0447023065,"1674":8299.3957843267,"1675":8230.0940490294,"1676":8158.7629070533,"1677":8082.0277643444,"1678":8003.2959098012,"1679":7919.4301982319,"1680":7833.6083497824,"1681":7742.9430490017,"1682":7650.3699062735,"1683":7553.2628308025,"1684":7454.3037376972,"1685":7351.138124799,"1686":7246.1836276469,"1687":7137.3666248636,"1688":7026.830931116,"1689":6912.7919894437,"1690":6797.1113329848,"1691":6678.3005120269,"1692":6557.9314315583,"1693":6434.8176233456,"1694":6310.2351606365,"1695":6183.3042391248,"1696":6055.0000642392,"1697":5924.7529677863,"1698":5793.2334386859,"1699":5660.1841930773,"1700":5525.9683572578,"1701":5390.6420470817,"1702":5254.2595931297,"1703":5117.1902895076,"1704":4979.1794566617,"1705":4840.9081095138,"1706":4701.8135634801,"1707":4562.8858666436,"1708":4423.2565500489,"1709":4284.2207876731,"1710":4144.6077536397,"1711":4006.0126363592,"1712":3866.9668737492,"1713":3729.3593731739,"1714":3591.4296320883,"1715":3455.3528221562,"1716":3319.0834482689,"1717":3185.0743619812,"1718":3051.0031482553,"1719":2919.5906582526,"1720":2788.2467225176,"1721":2659.9494538613,"1722":2531.8511506261,"1723":2407.1754340221,"1724":2282.8283087671,"1725":2162.2661823098,"1726":2042.1609763296,"1727":1926.1882436527,"1728":1810.7989573243,"1729":1699.8733098208,"1730":1589.655331941,"1731":1484.2145424644,"1732":1379.6028530382,"1733":1280.0630482133,"1734":1181.4705017863,"1735":1088.2245197473,"1736":996.0402160576,"1737":909.4560560955,"1738":824.0438044747,"1739":744.4631747125,"1740":666.1600582967,"1741":593.897027123,"1742":523.0120725393,"1743":458.3518291244,"1744":395.1647869043,"1745":338.3625156885,"1746":283.1227562203,"1747":234.4026298174,"1748":187.3281591951,"1749":146.8824536861,"1750":108.1590533389,"1751":76.1473894455,"1752":45.9278829435,"1753":22.4765960784,"1754":0.8802460078,"1755":-13.9181123136,"1756":-26.8060750255,"1757":-32.8931024437,"1758":-37.021814896,"1759":-34.3734886946,"1760":-29.7266567456,"1761":-18.3534286583,"1762":-4.9493912305,"1763":15.1038538073,"1764":37.2121971017,"1765":65.8663180935,"1766":96.5917157238,"1767":133.7336279447,"1768":172.9548208038,"1769":218.4379420948,"1770":266.0001420528,"1771":319.6449713135,"1772":375.3604720962,"1773":436.9552976934,"1774":500.6042156733,"1775":569.9059509706,"1776":641.2370929467,"1777":717.9722356556,"1778":796.7040901988,"1779":880.5698017681,"1780":966.3916502176,"1781":1057.0569509983,"1782":1149.6300937265,"1783":1246.7371691975,"1784":1345.6962623028,"1785":1448.861875201,"1786":1553.8163723531,"1787":1662.6333751364,"1788":1773.169068884,"1789":1887.2080105563,"1790":2002.8886670152,"1791":2121.6994879731,"1792":2242.0685684417,"1793":2365.1823766544,"1794":2489.7648393635,"1795":2616.6957608753,"1796":2744.9999357608,"1797":2875.2470322137,"1798":3006.7665613141,"1799":3139.8158069227,"1800":3274.0316427422,"1801":3409.3579529183,"1802":3545.7404068703,"1803":3682.8097104924,"1804":3820.8205433383,"1805":3959.0918904862,"1806":4098.1864365199,"1807":4237.1141333564,"1808":4376.7434499511,"1809":4515.7792123269,"1810":4655.3922463603,"1811":4793.9873636408,"1812":4933.0331262508,"1813":5070.6406268261,"1814":5208.5703679117,"1815":5344.6471778438,"1816":5480.9165517311,"1817":5614.9256380188,"1818":5748.9968517447,"1819":5880.4093417474,"1820":6011.7532774824,"1821":6140.0505461387,"1822":6268.1488493739,"1823":6392.8245659779,"1824":6517.1716912329,"1825":6637.7338176902,"1826":6757.8390236704,"1827":6873.8117563473,"1828":6989.2010426757,"1829":7100.1266901792,"1830":7210.344668059,"1831":7315.7854575356,"1832":7420.3971469618,"1833":7519.9369517867,"1834":7618.5294982137,"1835":7711.7754802527,"1836":7803.9597839424,"1837":7890.5439439045,"1838":7975.9561955253,"1839":8055.5368252875,"1840":8133.8399417033,"1841":8206.102972877,"1842":8276.9879274607,"1843":8341.6481708756,"1844":8404.8352130957,"1845":8461.6374843115,"1846":8516.8772437797,"1847":8565.5973701826,"1848":8612.6718408049,"1849":8653.1175463139,"1850":8691.8409466611,"1851":8723.8526105545,"1852":8754.0721170565,"1853":8777.5234039216,"1854":8799.1197539922,"1855":8813.9181123136,"1856":8826.8060750255,"1857":8832.8931024437,"1858":8837.021814896,"1859":8834.3734886946,"1860":8829.7266567455,"1861":8818.3534286583,"1862":8804.9493912305,"1863":8784.8961461927,"1864":8762.7878028983,"1865":8734.1336819065,"1866":8703.4082842762,"1867":8666.2663720553,"1868":8627.0451791962,"1869":8581.5620579052,"1870":8533.9998579473,"1871":8480.3550286865,"1872":8424.6395279038,"1873":8363.0447023065,"1874":8299.3957843267,"1875":8230.0940490294,"1876":8158.7629070533,"1877":8082.0277643444,"1878":8003.2959098012,"1879":7919.4301982319,"1880":7833.6083497824,"1881":7742.9430490017,"1882":7650.3699062735,"1883":7553.2628308025,"1884":7454.3037376972,"1885":7351.138124799,"1886":7246.1836276469,"1887":7137.3666248636,"1888":7026.830931116,"1889":6912.7919894437,"1890":6797.1113329848,"1891":6678.3005120269,"1892":6557.9314315583,"1893":6434.8176233456,"1894":6310.2351606365,"1895":6183.3042391247,"1896":6055.0000642392,"1897":5924.7529677863,"1898":5793.2334386859,"1899":5660.1841930773,"1900":5525.9683572578,"1901":5390.6420470817,"1902":5254.2595931297,"1903":5117.1902895076,"1904":4979.1794566617,"1905":4840.9081095138,"1906":4701.8135634801,"1907":4562.8858666436,"1908":4423.2565500489,"1909":4284.2207876731,"1910":4144.6077536397,"1911":4006.0126363592,"1912":3866.9668737492,"1913":3729.3593731739,"1914":3591.4296320883,"1915":3455.3528221562,"1916":3319.0834482689,"1917":3185.0743619812,"1918":3051.0031482553,"1919":2919.5906582526,"1920":2788.2467225176,"1921":2659.9494538613,"1922":2531.8511506261,"1923":2407.1754340221,"1924":2282.8283087671,"1925":2162.2661823098,"1926":2042.1609763296,"1927":1926.1882436527,"1928":1810.7989573243,"1929":1699.8733098208,"1930":1589.655331941,"1931":1484.2145424644,"1932":1379.6028530382,"1933":1280.0630482133,"1934":1181.4705017863,"1935":1088.2245197473,"1936":996.0402160576,"1937":909.4560560955,"1938":824.0438044747,"1939":744.4631747125,"1940":666.1600582967,"1941":593.897027123,"1942":523.0120725393,"1943":458.3518291244,"1944":395.1647869043,"1945":338.3625156885,"1946":283.1227562203,"1947":234.4026298174,"1948":187.3281591951,"1949":146.8824536861,"1950":108.1590533389,"1951":76.1473894455,"1952":45.9278829435,"1953":22.4765960784,"1954":0.8802460078,"1955":-13.9181123136,"1956":-26.8060750255,"1957":-32.8931024437,"1958":-37.021814896,"1959":-34.3734886946,"1960":-29.7266567456,"1961":-18.3534286583,"1962":-4.9493912305,"1963":15.1038538073,"1964":37.2121971017,"1965":65.8663180935,"1966":96.5917157238,"1967":133.7336279447,"1968":172.9548208038,"1969":218.4379420948,"1970":266.0001420528,"1971":319.6449713135,"1972":375.3604720962,"1973":436.9552976934,"1974":500.6042156733,"1975":569.9059509706,"1976":641.2370929467,"1977":717.9722356556,"1978":796.7040901988,"1979":880.5698017681,"1980":966.3916502176,"1981":1057.0569509983,"1982":1149.6300937265,"1983":1246.7371691975,"1984":1345.6962623028,"1985":1448.861875201,"1986":1553.8163723531,"1987":1662.6333751364,"1988":1773.169068884,"1989":1887.2080105563,"1990":2002.8886670152,"1991":2121.6994879731,"1992":2242.0685684417,"1993":2365.1823766544,"1994":2489.7648393635,"1995":2616.6957608753,"1996":2744.9999357608,"1997":2875.2470322137,"1998":3006.7665613141,"1999":3139.8158069227,"2000":3274.0316427422}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0", + "101": "branch0_seg0", + "102": "branch0_seg0", + "103": "branch0_seg0", + "104": "branch0_seg0", + "105": "branch0_seg0", + "106": "branch0_seg0", + "107": "branch0_seg0", + "108": "branch0_seg0", + "109": "branch0_seg0", + "110": "branch0_seg0", + "111": "branch0_seg0", + "112": "branch0_seg0", + "113": "branch0_seg0", + "114": "branch0_seg0", + "115": "branch0_seg0", + "116": "branch0_seg0", + "117": "branch0_seg0", + "118": "branch0_seg0", + "119": "branch0_seg0", + "120": "branch0_seg0", + "121": "branch0_seg0", + "122": "branch0_seg0", + "123": "branch0_seg0", + "124": "branch0_seg0", + "125": "branch0_seg0", + "126": "branch0_seg0", + "127": "branch0_seg0", + "128": "branch0_seg0", + "129": "branch0_seg0", + "130": "branch0_seg0", + "131": "branch0_seg0", + "132": "branch0_seg0", + "133": "branch0_seg0", + "134": "branch0_seg0", + "135": "branch0_seg0", + "136": "branch0_seg0", + "137": "branch0_seg0", + "138": "branch0_seg0", + "139": "branch0_seg0", + "140": "branch0_seg0", + "141": "branch0_seg0", + "142": "branch0_seg0", + "143": "branch0_seg0", + "144": "branch0_seg0", + "145": "branch0_seg0", + "146": "branch0_seg0", + "147": "branch0_seg0", + "148": "branch0_seg0", + "149": "branch0_seg0", + "150": "branch0_seg0", + "151": "branch0_seg0", + "152": "branch0_seg0", + "153": "branch0_seg0", + "154": "branch0_seg0", + "155": "branch0_seg0", + "156": "branch0_seg0", + "157": "branch0_seg0", + "158": "branch0_seg0", + "159": "branch0_seg0", + "160": "branch0_seg0", + "161": "branch0_seg0", + "162": "branch0_seg0", + "163": "branch0_seg0", + "164": "branch0_seg0", + "165": "branch0_seg0", + "166": "branch0_seg0", + "167": "branch0_seg0", + "168": "branch0_seg0", + "169": "branch0_seg0", + "170": "branch0_seg0", + "171": "branch0_seg0", + "172": "branch0_seg0", + "173": "branch0_seg0", + "174": "branch0_seg0", + "175": "branch0_seg0", + "176": "branch0_seg0", + "177": "branch0_seg0", + "178": "branch0_seg0", + "179": "branch0_seg0", + "180": "branch0_seg0", + "181": "branch0_seg0", + "182": "branch0_seg0", + "183": "branch0_seg0", + "184": "branch0_seg0", + "185": "branch0_seg0", + "186": "branch0_seg0", + "187": "branch0_seg0", + "188": "branch0_seg0", + "189": "branch0_seg0", + "190": "branch0_seg0", + "191": "branch0_seg0", + "192": "branch0_seg0", + "193": "branch0_seg0", + "194": "branch0_seg0", + "195": "branch0_seg0", + "196": "branch0_seg0", + "197": "branch0_seg0", + "198": "branch0_seg0", + "199": "branch0_seg0", + "200": "branch0_seg0", + "201": "branch0_seg0", + "202": "branch0_seg0", + "203": "branch0_seg0", + "204": "branch0_seg0", + "205": "branch0_seg0", + "206": "branch0_seg0", + "207": "branch0_seg0", + "208": "branch0_seg0", + "209": "branch0_seg0", + "210": "branch0_seg0", + "211": "branch0_seg0", + "212": "branch0_seg0", + "213": "branch0_seg0", + "214": "branch0_seg0", + "215": "branch0_seg0", + "216": "branch0_seg0", + "217": "branch0_seg0", + "218": "branch0_seg0", + "219": "branch0_seg0", + "220": "branch0_seg0", + "221": "branch0_seg0", + "222": "branch0_seg0", + "223": "branch0_seg0", + "224": "branch0_seg0", + "225": "branch0_seg0", + "226": "branch0_seg0", + "227": "branch0_seg0", + "228": "branch0_seg0", + "229": "branch0_seg0", + "230": "branch0_seg0", + "231": "branch0_seg0", + "232": "branch0_seg0", + "233": "branch0_seg0", + "234": "branch0_seg0", + "235": "branch0_seg0", + "236": "branch0_seg0", + "237": "branch0_seg0", + "238": "branch0_seg0", + "239": "branch0_seg0", + "240": "branch0_seg0", + "241": "branch0_seg0", + "242": "branch0_seg0", + "243": "branch0_seg0", + "244": "branch0_seg0", + "245": "branch0_seg0", + "246": "branch0_seg0", + "247": "branch0_seg0", + "248": "branch0_seg0", + "249": "branch0_seg0", + "250": "branch0_seg0", + "251": "branch0_seg0", + "252": "branch0_seg0", + "253": "branch0_seg0", + "254": "branch0_seg0", + "255": "branch0_seg0", + "256": "branch0_seg0", + "257": "branch0_seg0", + "258": "branch0_seg0", + "259": "branch0_seg0", + "260": "branch0_seg0", + "261": "branch0_seg0", + "262": "branch0_seg0", + "263": "branch0_seg0", + "264": "branch0_seg0", + "265": "branch0_seg0", + "266": "branch0_seg0", + "267": "branch0_seg0", + "268": "branch0_seg0", + "269": "branch0_seg0", + "270": "branch0_seg0", + "271": "branch0_seg0", + "272": "branch0_seg0", + "273": "branch0_seg0", + "274": "branch0_seg0", + "275": "branch0_seg0", + "276": "branch0_seg0", + "277": "branch0_seg0", + "278": "branch0_seg0", + "279": "branch0_seg0", + "280": "branch0_seg0", + "281": "branch0_seg0", + "282": "branch0_seg0", + "283": "branch0_seg0", + "284": "branch0_seg0", + "285": "branch0_seg0", + "286": "branch0_seg0", + "287": "branch0_seg0", + "288": "branch0_seg0", + "289": "branch0_seg0", + "290": "branch0_seg0", + "291": "branch0_seg0", + "292": "branch0_seg0", + "293": "branch0_seg0", + "294": "branch0_seg0", + "295": "branch0_seg0", + "296": "branch0_seg0", + "297": "branch0_seg0", + "298": "branch0_seg0", + "299": "branch0_seg0", + "300": "branch0_seg0", + "301": "branch0_seg0", + "302": "branch0_seg0", + "303": "branch0_seg0", + "304": "branch0_seg0", + "305": "branch0_seg0", + "306": "branch0_seg0", + "307": "branch0_seg0", + "308": "branch0_seg0", + "309": "branch0_seg0", + "310": "branch0_seg0", + "311": "branch0_seg0", + "312": "branch0_seg0", + "313": "branch0_seg0", + "314": "branch0_seg0", + "315": "branch0_seg0", + "316": "branch0_seg0", + "317": "branch0_seg0", + "318": "branch0_seg0", + "319": "branch0_seg0", + "320": "branch0_seg0", + "321": "branch0_seg0", + "322": "branch0_seg0", + "323": "branch0_seg0", + "324": "branch0_seg0", + "325": "branch0_seg0", + "326": "branch0_seg0", + "327": "branch0_seg0", + "328": "branch0_seg0", + "329": "branch0_seg0", + "330": "branch0_seg0", + "331": "branch0_seg0", + "332": "branch0_seg0", + "333": "branch0_seg0", + "334": "branch0_seg0", + "335": "branch0_seg0", + "336": "branch0_seg0", + "337": "branch0_seg0", + "338": "branch0_seg0", + "339": "branch0_seg0", + "340": "branch0_seg0", + "341": "branch0_seg0", + "342": "branch0_seg0", + "343": "branch0_seg0", + "344": "branch0_seg0", + "345": "branch0_seg0", + "346": "branch0_seg0", + "347": "branch0_seg0", + "348": "branch0_seg0", + "349": "branch0_seg0", + "350": "branch0_seg0", + "351": "branch0_seg0", + "352": "branch0_seg0", + "353": "branch0_seg0", + "354": "branch0_seg0", + "355": "branch0_seg0", + "356": "branch0_seg0", + "357": "branch0_seg0", + "358": "branch0_seg0", + "359": "branch0_seg0", + "360": "branch0_seg0", + "361": "branch0_seg0", + "362": "branch0_seg0", + "363": "branch0_seg0", + "364": "branch0_seg0", + "365": "branch0_seg0", + "366": "branch0_seg0", + "367": "branch0_seg0", + "368": "branch0_seg0", + "369": "branch0_seg0", + "370": "branch0_seg0", + "371": "branch0_seg0", + "372": "branch0_seg0", + "373": "branch0_seg0", + "374": "branch0_seg0", + "375": "branch0_seg0", + "376": "branch0_seg0", + "377": "branch0_seg0", + "378": "branch0_seg0", + "379": "branch0_seg0", + "380": "branch0_seg0", + "381": "branch0_seg0", + "382": "branch0_seg0", + "383": "branch0_seg0", + "384": "branch0_seg0", + "385": "branch0_seg0", + "386": "branch0_seg0", + "387": "branch0_seg0", + "388": "branch0_seg0", + "389": "branch0_seg0", + "390": "branch0_seg0", + "391": "branch0_seg0", + "392": "branch0_seg0", + "393": "branch0_seg0", + "394": "branch0_seg0", + "395": "branch0_seg0", + "396": "branch0_seg0", + "397": "branch0_seg0", + "398": "branch0_seg0", + "399": "branch0_seg0", + "400": "branch0_seg0", + "401": "branch0_seg0", + "402": "branch0_seg0", + "403": "branch0_seg0", + "404": "branch0_seg0", + "405": "branch0_seg0", + "406": "branch0_seg0", + "407": "branch0_seg0", + "408": "branch0_seg0", + "409": "branch0_seg0", + "410": "branch0_seg0", + "411": "branch0_seg0", + "412": "branch0_seg0", + "413": "branch0_seg0", + "414": "branch0_seg0", + "415": "branch0_seg0", + "416": "branch0_seg0", + "417": "branch0_seg0", + "418": "branch0_seg0", + "419": "branch0_seg0", + "420": "branch0_seg0", + "421": "branch0_seg0", + "422": "branch0_seg0", + "423": "branch0_seg0", + "424": "branch0_seg0", + "425": "branch0_seg0", + "426": "branch0_seg0", + "427": "branch0_seg0", + "428": "branch0_seg0", + "429": "branch0_seg0", + "430": "branch0_seg0", + "431": "branch0_seg0", + "432": "branch0_seg0", + "433": "branch0_seg0", + "434": "branch0_seg0", + "435": "branch0_seg0", + "436": "branch0_seg0", + "437": "branch0_seg0", + "438": "branch0_seg0", + "439": "branch0_seg0", + "440": "branch0_seg0", + "441": "branch0_seg0", + "442": "branch0_seg0", + "443": "branch0_seg0", + "444": "branch0_seg0", + "445": "branch0_seg0", + "446": "branch0_seg0", + "447": "branch0_seg0", + "448": "branch0_seg0", + "449": "branch0_seg0", + "450": "branch0_seg0", + "451": "branch0_seg0", + "452": "branch0_seg0", + "453": "branch0_seg0", + "454": "branch0_seg0", + "455": "branch0_seg0", + "456": "branch0_seg0", + "457": "branch0_seg0", + "458": "branch0_seg0", + "459": "branch0_seg0", + "460": "branch0_seg0", + "461": "branch0_seg0", + "462": "branch0_seg0", + "463": "branch0_seg0", + "464": "branch0_seg0", + "465": "branch0_seg0", + "466": "branch0_seg0", + "467": "branch0_seg0", + "468": "branch0_seg0", + "469": "branch0_seg0", + "470": "branch0_seg0", + "471": "branch0_seg0", + "472": "branch0_seg0", + "473": "branch0_seg0", + "474": "branch0_seg0", + "475": "branch0_seg0", + "476": "branch0_seg0", + "477": "branch0_seg0", + "478": "branch0_seg0", + "479": "branch0_seg0", + "480": "branch0_seg0", + "481": "branch0_seg0", + "482": "branch0_seg0", + "483": "branch0_seg0", + "484": "branch0_seg0", + "485": "branch0_seg0", + "486": "branch0_seg0", + "487": "branch0_seg0", + "488": "branch0_seg0", + "489": "branch0_seg0", + "490": "branch0_seg0", + "491": "branch0_seg0", + "492": "branch0_seg0", + "493": "branch0_seg0", + "494": "branch0_seg0", + "495": "branch0_seg0", + "496": "branch0_seg0", + "497": "branch0_seg0", + "498": "branch0_seg0", + "499": "branch0_seg0", + "500": "branch0_seg0", + "501": "branch0_seg0", + "502": "branch0_seg0", + "503": "branch0_seg0", + "504": "branch0_seg0", + "505": "branch0_seg0", + "506": "branch0_seg0", + "507": "branch0_seg0", + "508": "branch0_seg0", + "509": "branch0_seg0", + "510": "branch0_seg0", + "511": "branch0_seg0", + "512": "branch0_seg0", + "513": "branch0_seg0", + "514": "branch0_seg0", + "515": "branch0_seg0", + "516": "branch0_seg0", + "517": "branch0_seg0", + "518": "branch0_seg0", + "519": "branch0_seg0", + "520": "branch0_seg0", + "521": "branch0_seg0", + "522": "branch0_seg0", + "523": "branch0_seg0", + "524": "branch0_seg0", + "525": "branch0_seg0", + "526": "branch0_seg0", + "527": "branch0_seg0", + "528": "branch0_seg0", + "529": "branch0_seg0", + "530": "branch0_seg0", + "531": "branch0_seg0", + "532": "branch0_seg0", + "533": "branch0_seg0", + "534": "branch0_seg0", + "535": "branch0_seg0", + "536": "branch0_seg0", + "537": "branch0_seg0", + "538": "branch0_seg0", + "539": "branch0_seg0", + "540": "branch0_seg0", + "541": "branch0_seg0", + "542": "branch0_seg0", + "543": "branch0_seg0", + "544": "branch0_seg0", + "545": "branch0_seg0", + "546": "branch0_seg0", + "547": "branch0_seg0", + "548": "branch0_seg0", + "549": "branch0_seg0", + "550": "branch0_seg0", + "551": "branch0_seg0", + "552": "branch0_seg0", + "553": "branch0_seg0", + "554": "branch0_seg0", + "555": "branch0_seg0", + "556": "branch0_seg0", + "557": "branch0_seg0", + "558": "branch0_seg0", + "559": "branch0_seg0", + "560": "branch0_seg0", + "561": "branch0_seg0", + "562": "branch0_seg0", + "563": "branch0_seg0", + "564": "branch0_seg0", + "565": "branch0_seg0", + "566": "branch0_seg0", + "567": "branch0_seg0", + "568": "branch0_seg0", + "569": "branch0_seg0", + "570": "branch0_seg0", + "571": "branch0_seg0", + "572": "branch0_seg0", + "573": "branch0_seg0", + "574": "branch0_seg0", + "575": "branch0_seg0", + "576": "branch0_seg0", + "577": "branch0_seg0", + "578": "branch0_seg0", + "579": "branch0_seg0", + "580": "branch0_seg0", + "581": "branch0_seg0", + "582": "branch0_seg0", + "583": "branch0_seg0", + "584": "branch0_seg0", + "585": "branch0_seg0", + "586": "branch0_seg0", + "587": "branch0_seg0", + "588": "branch0_seg0", + "589": "branch0_seg0", + "590": "branch0_seg0", + "591": "branch0_seg0", + "592": "branch0_seg0", + "593": "branch0_seg0", + "594": "branch0_seg0", + "595": "branch0_seg0", + "596": "branch0_seg0", + "597": "branch0_seg0", + "598": "branch0_seg0", + "599": "branch0_seg0", + "600": "branch0_seg0", + "601": "branch0_seg0", + "602": "branch0_seg0", + "603": "branch0_seg0", + "604": "branch0_seg0", + "605": "branch0_seg0", + "606": "branch0_seg0", + "607": "branch0_seg0", + "608": "branch0_seg0", + "609": "branch0_seg0", + "610": "branch0_seg0", + "611": "branch0_seg0", + "612": "branch0_seg0", + "613": "branch0_seg0", + "614": "branch0_seg0", + "615": "branch0_seg0", + "616": "branch0_seg0", + "617": "branch0_seg0", + "618": "branch0_seg0", + "619": "branch0_seg0", + "620": "branch0_seg0", + "621": "branch0_seg0", + "622": "branch0_seg0", + "623": "branch0_seg0", + "624": "branch0_seg0", + "625": "branch0_seg0", + "626": "branch0_seg0", + "627": "branch0_seg0", + "628": "branch0_seg0", + "629": "branch0_seg0", + "630": "branch0_seg0", + "631": "branch0_seg0", + "632": "branch0_seg0", + "633": "branch0_seg0", + "634": "branch0_seg0", + "635": "branch0_seg0", + "636": "branch0_seg0", + "637": "branch0_seg0", + "638": "branch0_seg0", + "639": "branch0_seg0", + "640": "branch0_seg0", + "641": "branch0_seg0", + "642": "branch0_seg0", + "643": "branch0_seg0", + "644": "branch0_seg0", + "645": "branch0_seg0", + "646": "branch0_seg0", + "647": "branch0_seg0", + "648": "branch0_seg0", + "649": "branch0_seg0", + "650": "branch0_seg0", + "651": "branch0_seg0", + "652": "branch0_seg0", + "653": "branch0_seg0", + "654": "branch0_seg0", + "655": "branch0_seg0", + "656": "branch0_seg0", + "657": "branch0_seg0", + "658": "branch0_seg0", + "659": "branch0_seg0", + "660": "branch0_seg0", + "661": "branch0_seg0", + "662": "branch0_seg0", + "663": "branch0_seg0", + "664": "branch0_seg0", + "665": "branch0_seg0", + "666": "branch0_seg0", + "667": "branch0_seg0", + "668": "branch0_seg0", + "669": "branch0_seg0", + "670": "branch0_seg0", + "671": "branch0_seg0", + "672": "branch0_seg0", + "673": "branch0_seg0", + "674": "branch0_seg0", + "675": "branch0_seg0", + "676": "branch0_seg0", + "677": "branch0_seg0", + "678": "branch0_seg0", + "679": "branch0_seg0", + "680": "branch0_seg0", + "681": "branch0_seg0", + "682": "branch0_seg0", + "683": "branch0_seg0", + "684": "branch0_seg0", + "685": "branch0_seg0", + "686": "branch0_seg0", + "687": "branch0_seg0", + "688": "branch0_seg0", + "689": "branch0_seg0", + "690": "branch0_seg0", + "691": "branch0_seg0", + "692": "branch0_seg0", + "693": "branch0_seg0", + "694": "branch0_seg0", + "695": "branch0_seg0", + "696": "branch0_seg0", + "697": "branch0_seg0", + "698": "branch0_seg0", + "699": "branch0_seg0", + "700": "branch0_seg0", + "701": "branch0_seg0", + "702": "branch0_seg0", + "703": "branch0_seg0", + "704": "branch0_seg0", + "705": "branch0_seg0", + "706": "branch0_seg0", + "707": "branch0_seg0", + "708": "branch0_seg0", + "709": "branch0_seg0", + "710": "branch0_seg0", + "711": "branch0_seg0", + "712": "branch0_seg0", + "713": "branch0_seg0", + "714": "branch0_seg0", + "715": "branch0_seg0", + "716": "branch0_seg0", + "717": "branch0_seg0", + "718": "branch0_seg0", + "719": "branch0_seg0", + "720": "branch0_seg0", + "721": "branch0_seg0", + "722": "branch0_seg0", + "723": "branch0_seg0", + "724": "branch0_seg0", + "725": "branch0_seg0", + "726": "branch0_seg0", + "727": "branch0_seg0", + "728": "branch0_seg0", + "729": "branch0_seg0", + "730": "branch0_seg0", + "731": "branch0_seg0", + "732": "branch0_seg0", + "733": "branch0_seg0", + "734": "branch0_seg0", + "735": "branch0_seg0", + "736": "branch0_seg0", + "737": "branch0_seg0", + "738": "branch0_seg0", + "739": "branch0_seg0", + "740": "branch0_seg0", + "741": "branch0_seg0", + "742": "branch0_seg0", + "743": "branch0_seg0", + "744": "branch0_seg0", + "745": "branch0_seg0", + "746": "branch0_seg0", + "747": "branch0_seg0", + "748": "branch0_seg0", + "749": "branch0_seg0", + "750": "branch0_seg0", + "751": "branch0_seg0", + "752": "branch0_seg0", + "753": "branch0_seg0", + "754": "branch0_seg0", + "755": "branch0_seg0", + "756": "branch0_seg0", + "757": "branch0_seg0", + "758": "branch0_seg0", + "759": "branch0_seg0", + "760": "branch0_seg0", + "761": "branch0_seg0", + "762": "branch0_seg0", + "763": "branch0_seg0", + "764": "branch0_seg0", + "765": "branch0_seg0", + "766": "branch0_seg0", + "767": "branch0_seg0", + "768": "branch0_seg0", + "769": "branch0_seg0", + "770": "branch0_seg0", + "771": "branch0_seg0", + "772": "branch0_seg0", + "773": "branch0_seg0", + "774": "branch0_seg0", + "775": "branch0_seg0", + "776": "branch0_seg0", + "777": "branch0_seg0", + "778": "branch0_seg0", + "779": "branch0_seg0", + "780": "branch0_seg0", + "781": "branch0_seg0", + "782": "branch0_seg0", + "783": "branch0_seg0", + "784": "branch0_seg0", + "785": "branch0_seg0", + "786": "branch0_seg0", + "787": "branch0_seg0", + "788": "branch0_seg0", + "789": "branch0_seg0", + "790": "branch0_seg0", + "791": "branch0_seg0", + "792": "branch0_seg0", + "793": "branch0_seg0", + "794": "branch0_seg0", + "795": "branch0_seg0", + "796": "branch0_seg0", + "797": "branch0_seg0", + "798": "branch0_seg0", + "799": "branch0_seg0", + "800": "branch0_seg0", + "801": "branch0_seg0", + "802": "branch0_seg0", + "803": "branch0_seg0", + "804": "branch0_seg0", + "805": "branch0_seg0", + "806": "branch0_seg0", + "807": "branch0_seg0", + "808": "branch0_seg0", + "809": "branch0_seg0", + "810": "branch0_seg0", + "811": "branch0_seg0", + "812": "branch0_seg0", + "813": "branch0_seg0", + "814": "branch0_seg0", + "815": "branch0_seg0", + "816": "branch0_seg0", + "817": "branch0_seg0", + "818": "branch0_seg0", + "819": "branch0_seg0", + "820": "branch0_seg0", + "821": "branch0_seg0", + "822": "branch0_seg0", + "823": "branch0_seg0", + "824": "branch0_seg0", + "825": "branch0_seg0", + "826": "branch0_seg0", + "827": "branch0_seg0", + "828": "branch0_seg0", + "829": "branch0_seg0", + "830": "branch0_seg0", + "831": "branch0_seg0", + "832": "branch0_seg0", + "833": "branch0_seg0", + "834": "branch0_seg0", + "835": "branch0_seg0", + "836": "branch0_seg0", + "837": "branch0_seg0", + "838": "branch0_seg0", + "839": "branch0_seg0", + "840": "branch0_seg0", + "841": "branch0_seg0", + "842": "branch0_seg0", + "843": "branch0_seg0", + "844": "branch0_seg0", + "845": "branch0_seg0", + "846": "branch0_seg0", + "847": "branch0_seg0", + "848": "branch0_seg0", + "849": "branch0_seg0", + "850": "branch0_seg0", + "851": "branch0_seg0", + "852": "branch0_seg0", + "853": "branch0_seg0", + "854": "branch0_seg0", + "855": "branch0_seg0", + "856": "branch0_seg0", + "857": "branch0_seg0", + "858": "branch0_seg0", + "859": "branch0_seg0", + "860": "branch0_seg0", + "861": "branch0_seg0", + "862": "branch0_seg0", + "863": "branch0_seg0", + "864": "branch0_seg0", + "865": "branch0_seg0", + "866": "branch0_seg0", + "867": "branch0_seg0", + "868": "branch0_seg0", + "869": "branch0_seg0", + "870": "branch0_seg0", + "871": "branch0_seg0", + "872": "branch0_seg0", + "873": "branch0_seg0", + "874": "branch0_seg0", + "875": "branch0_seg0", + "876": "branch0_seg0", + "877": "branch0_seg0", + "878": "branch0_seg0", + "879": "branch0_seg0", + "880": "branch0_seg0", + "881": "branch0_seg0", + "882": "branch0_seg0", + "883": "branch0_seg0", + "884": "branch0_seg0", + "885": "branch0_seg0", + "886": "branch0_seg0", + "887": "branch0_seg0", + "888": "branch0_seg0", + "889": "branch0_seg0", + "890": "branch0_seg0", + "891": "branch0_seg0", + "892": "branch0_seg0", + "893": "branch0_seg0", + "894": "branch0_seg0", + "895": "branch0_seg0", + "896": "branch0_seg0", + "897": "branch0_seg0", + "898": "branch0_seg0", + "899": "branch0_seg0", + "900": "branch0_seg0", + "901": "branch0_seg0", + "902": "branch0_seg0", + "903": "branch0_seg0", + "904": "branch0_seg0", + "905": "branch0_seg0", + "906": "branch0_seg0", + "907": "branch0_seg0", + "908": "branch0_seg0", + "909": "branch0_seg0", + "910": "branch0_seg0", + "911": "branch0_seg0", + "912": "branch0_seg0", + "913": "branch0_seg0", + "914": "branch0_seg0", + "915": "branch0_seg0", + "916": "branch0_seg0", + "917": "branch0_seg0", + "918": "branch0_seg0", + "919": "branch0_seg0", + "920": "branch0_seg0", + "921": "branch0_seg0", + "922": "branch0_seg0", + "923": "branch0_seg0", + "924": "branch0_seg0", + "925": "branch0_seg0", + "926": "branch0_seg0", + "927": "branch0_seg0", + "928": "branch0_seg0", + "929": "branch0_seg0", + "930": "branch0_seg0", + "931": "branch0_seg0", + "932": "branch0_seg0", + "933": "branch0_seg0", + "934": "branch0_seg0", + "935": "branch0_seg0", + "936": "branch0_seg0", + "937": "branch0_seg0", + "938": "branch0_seg0", + "939": "branch0_seg0", + "940": "branch0_seg0", + "941": "branch0_seg0", + "942": "branch0_seg0", + "943": "branch0_seg0", + "944": "branch0_seg0", + "945": "branch0_seg0", + "946": "branch0_seg0", + "947": "branch0_seg0", + "948": "branch0_seg0", + "949": "branch0_seg0", + "950": "branch0_seg0", + "951": "branch0_seg0", + "952": "branch0_seg0", + "953": "branch0_seg0", + "954": "branch0_seg0", + "955": "branch0_seg0", + "956": "branch0_seg0", + "957": "branch0_seg0", + "958": "branch0_seg0", + "959": "branch0_seg0", + "960": "branch0_seg0", + "961": "branch0_seg0", + "962": "branch0_seg0", + "963": "branch0_seg0", + "964": "branch0_seg0", + "965": "branch0_seg0", + "966": "branch0_seg0", + "967": "branch0_seg0", + "968": "branch0_seg0", + "969": "branch0_seg0", + "970": "branch0_seg0", + "971": "branch0_seg0", + "972": "branch0_seg0", + "973": "branch0_seg0", + "974": "branch0_seg0", + "975": "branch0_seg0", + "976": "branch0_seg0", + "977": "branch0_seg0", + "978": "branch0_seg0", + "979": "branch0_seg0", + "980": "branch0_seg0", + "981": "branch0_seg0", + "982": "branch0_seg0", + "983": "branch0_seg0", + "984": "branch0_seg0", + "985": "branch0_seg0", + "986": "branch0_seg0", + "987": "branch0_seg0", + "988": "branch0_seg0", + "989": "branch0_seg0", + "990": "branch0_seg0", + "991": "branch0_seg0", + "992": "branch0_seg0", + "993": "branch0_seg0", + "994": "branch0_seg0", + "995": "branch0_seg0", + "996": "branch0_seg0", + "997": "branch0_seg0", + "998": "branch0_seg0", + "999": "branch0_seg0", + "1000": "branch0_seg0", + "1001": "branch0_seg0", + "1002": "branch0_seg0", + "1003": "branch0_seg0", + "1004": "branch0_seg0", + "1005": "branch0_seg0", + "1006": "branch0_seg0", + "1007": "branch0_seg0", + "1008": "branch0_seg0", + "1009": "branch0_seg0", + "1010": "branch0_seg0", + "1011": "branch0_seg0", + "1012": "branch0_seg0", + "1013": "branch0_seg0", + "1014": "branch0_seg0", + "1015": "branch0_seg0", + "1016": "branch0_seg0", + "1017": "branch0_seg0", + "1018": "branch0_seg0", + "1019": "branch0_seg0", + "1020": "branch0_seg0", + "1021": "branch0_seg0", + "1022": "branch0_seg0", + "1023": "branch0_seg0", + "1024": "branch0_seg0", + "1025": "branch0_seg0", + "1026": "branch0_seg0", + "1027": "branch0_seg0", + "1028": "branch0_seg0", + "1029": "branch0_seg0", + "1030": "branch0_seg0", + "1031": "branch0_seg0", + "1032": "branch0_seg0", + "1033": "branch0_seg0", + "1034": "branch0_seg0", + "1035": "branch0_seg0", + "1036": "branch0_seg0", + "1037": "branch0_seg0", + "1038": "branch0_seg0", + "1039": "branch0_seg0", + "1040": "branch0_seg0", + "1041": "branch0_seg0", + "1042": "branch0_seg0", + "1043": "branch0_seg0", + "1044": "branch0_seg0", + "1045": "branch0_seg0", + "1046": "branch0_seg0", + "1047": "branch0_seg0", + "1048": "branch0_seg0", + "1049": "branch0_seg0", + "1050": "branch0_seg0", + "1051": "branch0_seg0", + "1052": "branch0_seg0", + "1053": "branch0_seg0", + "1054": "branch0_seg0", + "1055": "branch0_seg0", + "1056": "branch0_seg0", + "1057": "branch0_seg0", + "1058": "branch0_seg0", + "1059": "branch0_seg0", + "1060": "branch0_seg0", + "1061": "branch0_seg0", + "1062": "branch0_seg0", + "1063": "branch0_seg0", + "1064": "branch0_seg0", + "1065": "branch0_seg0", + "1066": "branch0_seg0", + "1067": "branch0_seg0", + "1068": "branch0_seg0", + "1069": "branch0_seg0", + "1070": "branch0_seg0", + "1071": "branch0_seg0", + "1072": "branch0_seg0", + "1073": "branch0_seg0", + "1074": "branch0_seg0", + "1075": "branch0_seg0", + "1076": "branch0_seg0", + "1077": "branch0_seg0", + "1078": "branch0_seg0", + "1079": "branch0_seg0", + "1080": "branch0_seg0", + "1081": "branch0_seg0", + "1082": "branch0_seg0", + "1083": "branch0_seg0", + "1084": "branch0_seg0", + "1085": "branch0_seg0", + "1086": "branch0_seg0", + "1087": "branch0_seg0", + "1088": "branch0_seg0", + "1089": "branch0_seg0", + "1090": "branch0_seg0", + "1091": "branch0_seg0", + "1092": "branch0_seg0", + "1093": "branch0_seg0", + "1094": "branch0_seg0", + "1095": "branch0_seg0", + "1096": "branch0_seg0", + "1097": "branch0_seg0", + "1098": "branch0_seg0", + "1099": "branch0_seg0", + "1100": "branch0_seg0", + "1101": "branch0_seg0", + "1102": "branch0_seg0", + "1103": "branch0_seg0", + "1104": "branch0_seg0", + "1105": "branch0_seg0", + "1106": "branch0_seg0", + "1107": "branch0_seg0", + "1108": "branch0_seg0", + "1109": "branch0_seg0", + "1110": "branch0_seg0", + "1111": "branch0_seg0", + "1112": "branch0_seg0", + "1113": "branch0_seg0", + "1114": "branch0_seg0", + "1115": "branch0_seg0", + "1116": "branch0_seg0", + "1117": "branch0_seg0", + "1118": "branch0_seg0", + "1119": "branch0_seg0", + "1120": "branch0_seg0", + "1121": "branch0_seg0", + "1122": "branch0_seg0", + "1123": "branch0_seg0", + "1124": "branch0_seg0", + "1125": "branch0_seg0", + "1126": "branch0_seg0", + "1127": "branch0_seg0", + "1128": "branch0_seg0", + "1129": "branch0_seg0", + "1130": "branch0_seg0", + "1131": "branch0_seg0", + "1132": "branch0_seg0", + "1133": "branch0_seg0", + "1134": "branch0_seg0", + "1135": "branch0_seg0", + "1136": "branch0_seg0", + "1137": "branch0_seg0", + "1138": "branch0_seg0", + "1139": "branch0_seg0", + "1140": "branch0_seg0", + "1141": "branch0_seg0", + "1142": "branch0_seg0", + "1143": "branch0_seg0", + "1144": "branch0_seg0", + "1145": "branch0_seg0", + "1146": "branch0_seg0", + "1147": "branch0_seg0", + "1148": "branch0_seg0", + "1149": "branch0_seg0", + "1150": "branch0_seg0", + "1151": "branch0_seg0", + "1152": "branch0_seg0", + "1153": "branch0_seg0", + "1154": "branch0_seg0", + "1155": "branch0_seg0", + "1156": "branch0_seg0", + "1157": "branch0_seg0", + "1158": "branch0_seg0", + "1159": "branch0_seg0", + "1160": "branch0_seg0", + "1161": "branch0_seg0", + "1162": "branch0_seg0", + "1163": "branch0_seg0", + "1164": "branch0_seg0", + "1165": "branch0_seg0", + "1166": "branch0_seg0", + "1167": "branch0_seg0", + "1168": "branch0_seg0", + "1169": "branch0_seg0", + "1170": "branch0_seg0", + "1171": "branch0_seg0", + "1172": "branch0_seg0", + "1173": "branch0_seg0", + "1174": "branch0_seg0", + "1175": "branch0_seg0", + "1176": "branch0_seg0", + "1177": "branch0_seg0", + "1178": "branch0_seg0", + "1179": "branch0_seg0", + "1180": "branch0_seg0", + "1181": "branch0_seg0", + "1182": "branch0_seg0", + "1183": "branch0_seg0", + "1184": "branch0_seg0", + "1185": "branch0_seg0", + "1186": "branch0_seg0", + "1187": "branch0_seg0", + "1188": "branch0_seg0", + "1189": "branch0_seg0", + "1190": "branch0_seg0", + "1191": "branch0_seg0", + "1192": "branch0_seg0", + "1193": "branch0_seg0", + "1194": "branch0_seg0", + "1195": "branch0_seg0", + "1196": "branch0_seg0", + "1197": "branch0_seg0", + "1198": "branch0_seg0", + "1199": "branch0_seg0", + "1200": "branch0_seg0", + "1201": "branch0_seg0", + "1202": "branch0_seg0", + "1203": "branch0_seg0", + "1204": "branch0_seg0", + "1205": "branch0_seg0", + "1206": "branch0_seg0", + "1207": "branch0_seg0", + "1208": "branch0_seg0", + "1209": "branch0_seg0", + "1210": "branch0_seg0", + "1211": "branch0_seg0", + "1212": "branch0_seg0", + "1213": "branch0_seg0", + "1214": "branch0_seg0", + "1215": "branch0_seg0", + "1216": "branch0_seg0", + "1217": "branch0_seg0", + "1218": "branch0_seg0", + "1219": "branch0_seg0", + "1220": "branch0_seg0", + "1221": "branch0_seg0", + "1222": "branch0_seg0", + "1223": "branch0_seg0", + "1224": "branch0_seg0", + "1225": "branch0_seg0", + "1226": "branch0_seg0", + "1227": "branch0_seg0", + "1228": "branch0_seg0", + "1229": "branch0_seg0", + "1230": "branch0_seg0", + "1231": "branch0_seg0", + "1232": "branch0_seg0", + "1233": "branch0_seg0", + "1234": "branch0_seg0", + "1235": "branch0_seg0", + "1236": "branch0_seg0", + "1237": "branch0_seg0", + "1238": "branch0_seg0", + "1239": "branch0_seg0", + "1240": "branch0_seg0", + "1241": "branch0_seg0", + "1242": "branch0_seg0", + "1243": "branch0_seg0", + "1244": "branch0_seg0", + "1245": "branch0_seg0", + "1246": "branch0_seg0", + "1247": "branch0_seg0", + "1248": "branch0_seg0", + "1249": "branch0_seg0", + "1250": "branch0_seg0", + "1251": "branch0_seg0", + "1252": "branch0_seg0", + "1253": "branch0_seg0", + "1254": "branch0_seg0", + "1255": "branch0_seg0", + "1256": "branch0_seg0", + "1257": "branch0_seg0", + "1258": "branch0_seg0", + "1259": "branch0_seg0", + "1260": "branch0_seg0", + "1261": "branch0_seg0", + "1262": "branch0_seg0", + "1263": "branch0_seg0", + "1264": "branch0_seg0", + "1265": "branch0_seg0", + "1266": "branch0_seg0", + "1267": "branch0_seg0", + "1268": "branch0_seg0", + "1269": "branch0_seg0", + "1270": "branch0_seg0", + "1271": "branch0_seg0", + "1272": "branch0_seg0", + "1273": "branch0_seg0", + "1274": "branch0_seg0", + "1275": "branch0_seg0", + "1276": "branch0_seg0", + "1277": "branch0_seg0", + "1278": "branch0_seg0", + "1279": "branch0_seg0", + "1280": "branch0_seg0", + "1281": "branch0_seg0", + "1282": "branch0_seg0", + "1283": "branch0_seg0", + "1284": "branch0_seg0", + "1285": "branch0_seg0", + "1286": "branch0_seg0", + "1287": "branch0_seg0", + "1288": "branch0_seg0", + "1289": "branch0_seg0", + "1290": "branch0_seg0", + "1291": "branch0_seg0", + "1292": "branch0_seg0", + "1293": "branch0_seg0", + "1294": "branch0_seg0", + "1295": "branch0_seg0", + "1296": "branch0_seg0", + "1297": "branch0_seg0", + "1298": "branch0_seg0", + "1299": "branch0_seg0", + "1300": "branch0_seg0", + "1301": "branch0_seg0", + "1302": "branch0_seg0", + "1303": "branch0_seg0", + "1304": "branch0_seg0", + "1305": "branch0_seg0", + "1306": "branch0_seg0", + "1307": "branch0_seg0", + "1308": "branch0_seg0", + "1309": "branch0_seg0", + "1310": "branch0_seg0", + "1311": "branch0_seg0", + "1312": "branch0_seg0", + "1313": "branch0_seg0", + "1314": "branch0_seg0", + "1315": "branch0_seg0", + "1316": "branch0_seg0", + "1317": "branch0_seg0", + "1318": "branch0_seg0", + "1319": "branch0_seg0", + "1320": "branch0_seg0", + "1321": "branch0_seg0", + "1322": "branch0_seg0", + "1323": "branch0_seg0", + "1324": "branch0_seg0", + "1325": "branch0_seg0", + "1326": "branch0_seg0", + "1327": "branch0_seg0", + "1328": "branch0_seg0", + "1329": "branch0_seg0", + "1330": "branch0_seg0", + "1331": "branch0_seg0", + "1332": "branch0_seg0", + "1333": "branch0_seg0", + "1334": "branch0_seg0", + "1335": "branch0_seg0", + "1336": "branch0_seg0", + "1337": "branch0_seg0", + "1338": "branch0_seg0", + "1339": "branch0_seg0", + "1340": "branch0_seg0", + "1341": "branch0_seg0", + "1342": "branch0_seg0", + "1343": "branch0_seg0", + "1344": "branch0_seg0", + "1345": "branch0_seg0", + "1346": "branch0_seg0", + "1347": "branch0_seg0", + "1348": "branch0_seg0", + "1349": "branch0_seg0", + "1350": "branch0_seg0", + "1351": "branch0_seg0", + "1352": "branch0_seg0", + "1353": "branch0_seg0", + "1354": "branch0_seg0", + "1355": "branch0_seg0", + "1356": "branch0_seg0", + "1357": "branch0_seg0", + "1358": "branch0_seg0", + "1359": "branch0_seg0", + "1360": "branch0_seg0", + "1361": "branch0_seg0", + "1362": "branch0_seg0", + "1363": "branch0_seg0", + "1364": "branch0_seg0", + "1365": "branch0_seg0", + "1366": "branch0_seg0", + "1367": "branch0_seg0", + "1368": "branch0_seg0", + "1369": "branch0_seg0", + "1370": "branch0_seg0", + "1371": "branch0_seg0", + "1372": "branch0_seg0", + "1373": "branch0_seg0", + "1374": "branch0_seg0", + "1375": "branch0_seg0", + "1376": "branch0_seg0", + "1377": "branch0_seg0", + "1378": "branch0_seg0", + "1379": "branch0_seg0", + "1380": "branch0_seg0", + "1381": "branch0_seg0", + "1382": "branch0_seg0", + "1383": "branch0_seg0", + "1384": "branch0_seg0", + "1385": "branch0_seg0", + "1386": "branch0_seg0", + "1387": "branch0_seg0", + "1388": "branch0_seg0", + "1389": "branch0_seg0", + "1390": "branch0_seg0", + "1391": "branch0_seg0", + "1392": "branch0_seg0", + "1393": "branch0_seg0", + "1394": "branch0_seg0", + "1395": "branch0_seg0", + "1396": "branch0_seg0", + "1397": "branch0_seg0", + "1398": "branch0_seg0", + "1399": "branch0_seg0", + "1400": "branch0_seg0", + "1401": "branch0_seg0", + "1402": "branch0_seg0", + "1403": "branch0_seg0", + "1404": "branch0_seg0", + "1405": "branch0_seg0", + "1406": "branch0_seg0", + "1407": "branch0_seg0", + "1408": "branch0_seg0", + "1409": "branch0_seg0", + "1410": "branch0_seg0", + "1411": "branch0_seg0", + "1412": "branch0_seg0", + "1413": "branch0_seg0", + "1414": "branch0_seg0", + "1415": "branch0_seg0", + "1416": "branch0_seg0", + "1417": "branch0_seg0", + "1418": "branch0_seg0", + "1419": "branch0_seg0", + "1420": "branch0_seg0", + "1421": "branch0_seg0", + "1422": "branch0_seg0", + "1423": "branch0_seg0", + "1424": "branch0_seg0", + "1425": "branch0_seg0", + "1426": "branch0_seg0", + "1427": "branch0_seg0", + "1428": "branch0_seg0", + "1429": "branch0_seg0", + "1430": "branch0_seg0", + "1431": "branch0_seg0", + "1432": "branch0_seg0", + "1433": "branch0_seg0", + "1434": "branch0_seg0", + "1435": "branch0_seg0", + "1436": "branch0_seg0", + "1437": "branch0_seg0", + "1438": "branch0_seg0", + "1439": "branch0_seg0", + "1440": "branch0_seg0", + "1441": "branch0_seg0", + "1442": "branch0_seg0", + "1443": "branch0_seg0", + "1444": "branch0_seg0", + "1445": "branch0_seg0", + "1446": "branch0_seg0", + "1447": "branch0_seg0", + "1448": "branch0_seg0", + "1449": "branch0_seg0", + "1450": "branch0_seg0", + "1451": "branch0_seg0", + "1452": "branch0_seg0", + "1453": "branch0_seg0", + "1454": "branch0_seg0", + "1455": "branch0_seg0", + "1456": "branch0_seg0", + "1457": "branch0_seg0", + "1458": "branch0_seg0", + "1459": "branch0_seg0", + "1460": "branch0_seg0", + "1461": "branch0_seg0", + "1462": "branch0_seg0", + "1463": "branch0_seg0", + "1464": "branch0_seg0", + "1465": "branch0_seg0", + "1466": "branch0_seg0", + "1467": "branch0_seg0", + "1468": "branch0_seg0", + "1469": "branch0_seg0", + "1470": "branch0_seg0", + "1471": "branch0_seg0", + "1472": "branch0_seg0", + "1473": "branch0_seg0", + "1474": "branch0_seg0", + "1475": "branch0_seg0", + "1476": "branch0_seg0", + "1477": "branch0_seg0", + "1478": "branch0_seg0", + "1479": "branch0_seg0", + "1480": "branch0_seg0", + "1481": "branch0_seg0", + "1482": "branch0_seg0", + "1483": "branch0_seg0", + "1484": "branch0_seg0", + "1485": "branch0_seg0", + "1486": "branch0_seg0", + "1487": "branch0_seg0", + "1488": "branch0_seg0", + "1489": "branch0_seg0", + "1490": "branch0_seg0", + "1491": "branch0_seg0", + "1492": "branch0_seg0", + "1493": "branch0_seg0", + "1494": "branch0_seg0", + "1495": "branch0_seg0", + "1496": "branch0_seg0", + "1497": "branch0_seg0", + "1498": "branch0_seg0", + "1499": "branch0_seg0", + "1500": "branch0_seg0", + "1501": "branch0_seg0", + "1502": "branch0_seg0", + "1503": "branch0_seg0", + "1504": "branch0_seg0", + "1505": "branch0_seg0", + "1506": "branch0_seg0", + "1507": "branch0_seg0", + "1508": "branch0_seg0", + "1509": "branch0_seg0", + "1510": "branch0_seg0", + "1511": "branch0_seg0", + "1512": "branch0_seg0", + "1513": "branch0_seg0", + "1514": "branch0_seg0", + "1515": "branch0_seg0", + "1516": "branch0_seg0", + "1517": "branch0_seg0", + "1518": "branch0_seg0", + "1519": "branch0_seg0", + "1520": "branch0_seg0", + "1521": "branch0_seg0", + "1522": "branch0_seg0", + "1523": "branch0_seg0", + "1524": "branch0_seg0", + "1525": "branch0_seg0", + "1526": "branch0_seg0", + "1527": "branch0_seg0", + "1528": "branch0_seg0", + "1529": "branch0_seg0", + "1530": "branch0_seg0", + "1531": "branch0_seg0", + "1532": "branch0_seg0", + "1533": "branch0_seg0", + "1534": "branch0_seg0", + "1535": "branch0_seg0", + "1536": "branch0_seg0", + "1537": "branch0_seg0", + "1538": "branch0_seg0", + "1539": "branch0_seg0", + "1540": "branch0_seg0", + "1541": "branch0_seg0", + "1542": "branch0_seg0", + "1543": "branch0_seg0", + "1544": "branch0_seg0", + "1545": "branch0_seg0", + "1546": "branch0_seg0", + "1547": "branch0_seg0", + "1548": "branch0_seg0", + "1549": "branch0_seg0", + "1550": "branch0_seg0", + "1551": "branch0_seg0", + "1552": "branch0_seg0", + "1553": "branch0_seg0", + "1554": "branch0_seg0", + "1555": "branch0_seg0", + "1556": "branch0_seg0", + "1557": "branch0_seg0", + "1558": "branch0_seg0", + "1559": "branch0_seg0", + "1560": "branch0_seg0", + "1561": "branch0_seg0", + "1562": "branch0_seg0", + "1563": "branch0_seg0", + "1564": "branch0_seg0", + "1565": "branch0_seg0", + "1566": "branch0_seg0", + "1567": "branch0_seg0", + "1568": "branch0_seg0", + "1569": "branch0_seg0", + "1570": "branch0_seg0", + "1571": "branch0_seg0", + "1572": "branch0_seg0", + "1573": "branch0_seg0", + "1574": "branch0_seg0", + "1575": "branch0_seg0", + "1576": "branch0_seg0", + "1577": "branch0_seg0", + "1578": "branch0_seg0", + "1579": "branch0_seg0", + "1580": "branch0_seg0", + "1581": "branch0_seg0", + "1582": "branch0_seg0", + "1583": "branch0_seg0", + "1584": "branch0_seg0", + "1585": "branch0_seg0", + "1586": "branch0_seg0", + "1587": "branch0_seg0", + "1588": "branch0_seg0", + "1589": "branch0_seg0", + "1590": "branch0_seg0", + "1591": "branch0_seg0", + "1592": "branch0_seg0", + "1593": "branch0_seg0", + "1594": "branch0_seg0", + "1595": "branch0_seg0", + "1596": "branch0_seg0", + "1597": "branch0_seg0", + "1598": "branch0_seg0", + "1599": "branch0_seg0", + "1600": "branch0_seg0", + "1601": "branch0_seg0", + "1602": "branch0_seg0", + "1603": "branch0_seg0", + "1604": "branch0_seg0", + "1605": "branch0_seg0", + "1606": "branch0_seg0", + "1607": "branch0_seg0", + "1608": "branch0_seg0", + "1609": "branch0_seg0", + "1610": "branch0_seg0", + "1611": "branch0_seg0", + "1612": "branch0_seg0", + "1613": "branch0_seg0", + "1614": "branch0_seg0", + "1615": "branch0_seg0", + "1616": "branch0_seg0", + "1617": "branch0_seg0", + "1618": "branch0_seg0", + "1619": "branch0_seg0", + "1620": "branch0_seg0", + "1621": "branch0_seg0", + "1622": "branch0_seg0", + "1623": "branch0_seg0", + "1624": "branch0_seg0", + "1625": "branch0_seg0", + "1626": "branch0_seg0", + "1627": "branch0_seg0", + "1628": "branch0_seg0", + "1629": "branch0_seg0", + "1630": "branch0_seg0", + "1631": "branch0_seg0", + "1632": "branch0_seg0", + "1633": "branch0_seg0", + "1634": "branch0_seg0", + "1635": "branch0_seg0", + "1636": "branch0_seg0", + "1637": "branch0_seg0", + "1638": "branch0_seg0", + "1639": "branch0_seg0", + "1640": "branch0_seg0", + "1641": "branch0_seg0", + "1642": "branch0_seg0", + "1643": "branch0_seg0", + "1644": "branch0_seg0", + "1645": "branch0_seg0", + "1646": "branch0_seg0", + "1647": "branch0_seg0", + "1648": "branch0_seg0", + "1649": "branch0_seg0", + "1650": "branch0_seg0", + "1651": "branch0_seg0", + "1652": "branch0_seg0", + "1653": "branch0_seg0", + "1654": "branch0_seg0", + "1655": "branch0_seg0", + "1656": "branch0_seg0", + "1657": "branch0_seg0", + "1658": "branch0_seg0", + "1659": "branch0_seg0", + "1660": "branch0_seg0", + "1661": "branch0_seg0", + "1662": "branch0_seg0", + "1663": "branch0_seg0", + "1664": "branch0_seg0", + "1665": "branch0_seg0", + "1666": "branch0_seg0", + "1667": "branch0_seg0", + "1668": "branch0_seg0", + "1669": "branch0_seg0", + "1670": "branch0_seg0", + "1671": "branch0_seg0", + "1672": "branch0_seg0", + "1673": "branch0_seg0", + "1674": "branch0_seg0", + "1675": "branch0_seg0", + "1676": "branch0_seg0", + "1677": "branch0_seg0", + "1678": "branch0_seg0", + "1679": "branch0_seg0", + "1680": "branch0_seg0", + "1681": "branch0_seg0", + "1682": "branch0_seg0", + "1683": "branch0_seg0", + "1684": "branch0_seg0", + "1685": "branch0_seg0", + "1686": "branch0_seg0", + "1687": "branch0_seg0", + "1688": "branch0_seg0", + "1689": "branch0_seg0", + "1690": "branch0_seg0", + "1691": "branch0_seg0", + "1692": "branch0_seg0", + "1693": "branch0_seg0", + "1694": "branch0_seg0", + "1695": "branch0_seg0", + "1696": "branch0_seg0", + "1697": "branch0_seg0", + "1698": "branch0_seg0", + "1699": "branch0_seg0", + "1700": "branch0_seg0", + "1701": "branch0_seg0", + "1702": "branch0_seg0", + "1703": "branch0_seg0", + "1704": "branch0_seg0", + "1705": "branch0_seg0", + "1706": "branch0_seg0", + "1707": "branch0_seg0", + "1708": "branch0_seg0", + "1709": "branch0_seg0", + "1710": "branch0_seg0", + "1711": "branch0_seg0", + "1712": "branch0_seg0", + "1713": "branch0_seg0", + "1714": "branch0_seg0", + "1715": "branch0_seg0", + "1716": "branch0_seg0", + "1717": "branch0_seg0", + "1718": "branch0_seg0", + "1719": "branch0_seg0", + "1720": "branch0_seg0", + "1721": "branch0_seg0", + "1722": "branch0_seg0", + "1723": "branch0_seg0", + "1724": "branch0_seg0", + "1725": "branch0_seg0", + "1726": "branch0_seg0", + "1727": "branch0_seg0", + "1728": "branch0_seg0", + "1729": "branch0_seg0", + "1730": "branch0_seg0", + "1731": "branch0_seg0", + "1732": "branch0_seg0", + "1733": "branch0_seg0", + "1734": "branch0_seg0", + "1735": "branch0_seg0", + "1736": "branch0_seg0", + "1737": "branch0_seg0", + "1738": "branch0_seg0", + "1739": "branch0_seg0", + "1740": "branch0_seg0", + "1741": "branch0_seg0", + "1742": "branch0_seg0", + "1743": "branch0_seg0", + "1744": "branch0_seg0", + "1745": "branch0_seg0", + "1746": "branch0_seg0", + "1747": "branch0_seg0", + "1748": "branch0_seg0", + "1749": "branch0_seg0", + "1750": "branch0_seg0", + "1751": "branch0_seg0", + "1752": "branch0_seg0", + "1753": "branch0_seg0", + "1754": "branch0_seg0", + "1755": "branch0_seg0", + "1756": "branch0_seg0", + "1757": "branch0_seg0", + "1758": "branch0_seg0", + "1759": "branch0_seg0", + "1760": "branch0_seg0", + "1761": "branch0_seg0", + "1762": "branch0_seg0", + "1763": "branch0_seg0", + "1764": "branch0_seg0", + "1765": "branch0_seg0", + "1766": "branch0_seg0", + "1767": "branch0_seg0", + "1768": "branch0_seg0", + "1769": "branch0_seg0", + "1770": "branch0_seg0", + "1771": "branch0_seg0", + "1772": "branch0_seg0", + "1773": "branch0_seg0", + "1774": "branch0_seg0", + "1775": "branch0_seg0", + "1776": "branch0_seg0", + "1777": "branch0_seg0", + "1778": "branch0_seg0", + "1779": "branch0_seg0", + "1780": "branch0_seg0", + "1781": "branch0_seg0", + "1782": "branch0_seg0", + "1783": "branch0_seg0", + "1784": "branch0_seg0", + "1785": "branch0_seg0", + "1786": "branch0_seg0", + "1787": "branch0_seg0", + "1788": "branch0_seg0", + "1789": "branch0_seg0", + "1790": "branch0_seg0", + "1791": "branch0_seg0", + "1792": "branch0_seg0", + "1793": "branch0_seg0", + "1794": "branch0_seg0", + "1795": "branch0_seg0", + "1796": "branch0_seg0", + "1797": "branch0_seg0", + "1798": "branch0_seg0", + "1799": "branch0_seg0", + "1800": "branch0_seg0", + "1801": "branch0_seg0", + "1802": "branch0_seg0", + "1803": "branch0_seg0", + "1804": "branch0_seg0", + "1805": "branch0_seg0", + "1806": "branch0_seg0", + "1807": "branch0_seg0", + "1808": "branch0_seg0", + "1809": "branch0_seg0", + "1810": "branch0_seg0", + "1811": "branch0_seg0", + "1812": "branch0_seg0", + "1813": "branch0_seg0", + "1814": "branch0_seg0", + "1815": "branch0_seg0", + "1816": "branch0_seg0", + "1817": "branch0_seg0", + "1818": "branch0_seg0", + "1819": "branch0_seg0", + "1820": "branch0_seg0", + "1821": "branch0_seg0", + "1822": "branch0_seg0", + "1823": "branch0_seg0", + "1824": "branch0_seg0", + "1825": "branch0_seg0", + "1826": "branch0_seg0", + "1827": "branch0_seg0", + "1828": "branch0_seg0", + "1829": "branch0_seg0", + "1830": "branch0_seg0", + "1831": "branch0_seg0", + "1832": "branch0_seg0", + "1833": "branch0_seg0", + "1834": "branch0_seg0", + "1835": "branch0_seg0", + "1836": "branch0_seg0", + "1837": "branch0_seg0", + "1838": "branch0_seg0", + "1839": "branch0_seg0", + "1840": "branch0_seg0", + "1841": "branch0_seg0", + "1842": "branch0_seg0", + "1843": "branch0_seg0", + "1844": "branch0_seg0", + "1845": "branch0_seg0", + "1846": "branch0_seg0", + "1847": "branch0_seg0", + "1848": "branch0_seg0", + "1849": "branch0_seg0", + "1850": "branch0_seg0", + "1851": "branch0_seg0", + "1852": "branch0_seg0", + "1853": "branch0_seg0", + "1854": "branch0_seg0", + "1855": "branch0_seg0", + "1856": "branch0_seg0", + "1857": "branch0_seg0", + "1858": "branch0_seg0", + "1859": "branch0_seg0", + "1860": "branch0_seg0", + "1861": "branch0_seg0", + "1862": "branch0_seg0", + "1863": "branch0_seg0", + "1864": "branch0_seg0", + "1865": "branch0_seg0", + "1866": "branch0_seg0", + "1867": "branch0_seg0", + "1868": "branch0_seg0", + "1869": "branch0_seg0", + "1870": "branch0_seg0", + "1871": "branch0_seg0", + "1872": "branch0_seg0", + "1873": "branch0_seg0", + "1874": "branch0_seg0", + "1875": "branch0_seg0", + "1876": "branch0_seg0", + "1877": "branch0_seg0", + "1878": "branch0_seg0", + "1879": "branch0_seg0", + "1880": "branch0_seg0", + "1881": "branch0_seg0", + "1882": "branch0_seg0", + "1883": "branch0_seg0", + "1884": "branch0_seg0", + "1885": "branch0_seg0", + "1886": "branch0_seg0", + "1887": "branch0_seg0", + "1888": "branch0_seg0", + "1889": "branch0_seg0", + "1890": "branch0_seg0", + "1891": "branch0_seg0", + "1892": "branch0_seg0", + "1893": "branch0_seg0", + "1894": "branch0_seg0", + "1895": "branch0_seg0", + "1896": "branch0_seg0", + "1897": "branch0_seg0", + "1898": "branch0_seg0", + "1899": "branch0_seg0", + "1900": "branch0_seg0", + "1901": "branch0_seg0", + "1902": "branch0_seg0", + "1903": "branch0_seg0", + "1904": "branch0_seg0", + "1905": "branch0_seg0", + "1906": "branch0_seg0", + "1907": "branch0_seg0", + "1908": "branch0_seg0", + "1909": "branch0_seg0", + "1910": "branch0_seg0", + "1911": "branch0_seg0", + "1912": "branch0_seg0", + "1913": "branch0_seg0", + "1914": "branch0_seg0", + "1915": "branch0_seg0", + "1916": "branch0_seg0", + "1917": "branch0_seg0", + "1918": "branch0_seg0", + "1919": "branch0_seg0", + "1920": "branch0_seg0", + "1921": "branch0_seg0", + "1922": "branch0_seg0", + "1923": "branch0_seg0", + "1924": "branch0_seg0", + "1925": "branch0_seg0", + "1926": "branch0_seg0", + "1927": "branch0_seg0", + "1928": "branch0_seg0", + "1929": "branch0_seg0", + "1930": "branch0_seg0", + "1931": "branch0_seg0", + "1932": "branch0_seg0", + "1933": "branch0_seg0", + "1934": "branch0_seg0", + "1935": "branch0_seg0", + "1936": "branch0_seg0", + "1937": "branch0_seg0", + "1938": "branch0_seg0", + "1939": "branch0_seg0", + "1940": "branch0_seg0", + "1941": "branch0_seg0", + "1942": "branch0_seg0", + "1943": "branch0_seg0", + "1944": "branch0_seg0", + "1945": "branch0_seg0", + "1946": "branch0_seg0", + "1947": "branch0_seg0", + "1948": "branch0_seg0", + "1949": "branch0_seg0", + "1950": "branch0_seg0", + "1951": "branch0_seg0", + "1952": "branch0_seg0", + "1953": "branch0_seg0", + "1954": "branch0_seg0", + "1955": "branch0_seg0", + "1956": "branch0_seg0", + "1957": "branch0_seg0", + "1958": "branch0_seg0", + "1959": "branch0_seg0", + "1960": "branch0_seg0", + "1961": "branch0_seg0", + "1962": "branch0_seg0", + "1963": "branch0_seg0", + "1964": "branch0_seg0", + "1965": "branch0_seg0", + "1966": "branch0_seg0", + "1967": "branch0_seg0", + "1968": "branch0_seg0", + "1969": "branch0_seg0", + "1970": "branch0_seg0", + "1971": "branch0_seg0", + "1972": "branch0_seg0", + "1973": "branch0_seg0", + "1974": "branch0_seg0", + "1975": "branch0_seg0", + "1976": "branch0_seg0", + "1977": "branch0_seg0", + "1978": "branch0_seg0", + "1979": "branch0_seg0", + "1980": "branch0_seg0", + "1981": "branch0_seg0", + "1982": "branch0_seg0", + "1983": "branch0_seg0", + "1984": "branch0_seg0", + "1985": "branch0_seg0", + "1986": "branch0_seg0", + "1987": "branch0_seg0", + "1988": "branch0_seg0", + "1989": "branch0_seg0", + "1990": "branch0_seg0", + "1991": "branch0_seg0", + "1992": "branch0_seg0", + "1993": "branch0_seg0", + "1994": "branch0_seg0", + "1995": "branch0_seg0", + "1996": "branch0_seg0", + "1997": "branch0_seg0", + "1998": "branch0_seg0", + "1999": "branch0_seg0", + "2000": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.005, + "2": 0.01, + "3": 0.015, + "4": 0.02, + "5": 0.025, + "6": 0.03, + "7": 0.035, + "8": 0.04, + "9": 0.045, + "10": 0.05, + "11": 0.055, + "12": 0.06, + "13": 0.065, + "14": 0.07, + "15": 0.075, + "16": 0.08, + "17": 0.085, + "18": 0.09, + "19": 0.095, + "20": 0.1, + "21": 0.105, + "22": 0.11, + "23": 0.115, + "24": 0.12, + "25": 0.125, + "26": 0.13, + "27": 0.135, + "28": 0.14, + "29": 0.145, + "30": 0.15, + "31": 0.155, + "32": 0.16, + "33": 0.165, + "34": 0.17, + "35": 0.175, + "36": 0.18, + "37": 0.185, + "38": 0.19, + "39": 0.195, + "40": 0.2, + "41": 0.205, + "42": 0.21, + "43": 0.215, + "44": 0.22, + "45": 0.225, + "46": 0.23, + "47": 0.235, + "48": 0.24, + "49": 0.245, + "50": 0.25, + "51": 0.255, + "52": 0.26, + "53": 0.265, + "54": 0.27, + "55": 0.275, + "56": 0.28, + "57": 0.285, + "58": 0.29, + "59": 0.295, + "60": 0.3, + "61": 0.305, + "62": 0.31, + "63": 0.315, + "64": 0.32, + "65": 0.325, + "66": 0.33, + "67": 0.335, + "68": 0.34, + "69": 0.345, + "70": 0.35, + "71": 0.355, + "72": 0.36, + "73": 0.365, + "74": 0.37, + "75": 0.375, + "76": 0.38, + "77": 0.385, + "78": 0.39, + "79": 0.395, + "80": 0.4, + "81": 0.405, + "82": 0.41, + "83": 0.415, + "84": 0.42, + "85": 0.425, + "86": 0.43, + "87": 0.435, + "88": 0.44, + "89": 0.445, + "90": 0.45, + "91": 0.455, + "92": 0.46, + "93": 0.465, + "94": 0.47, + "95": 0.475, + "96": 0.48, + "97": 0.485, + "98": 0.49, + "99": 0.495, + "100": 0.5, + "101": 0.505, + "102": 0.51, + "103": 0.515, + "104": 0.52, + "105": 0.525, + "106": 0.53, + "107": 0.535, + "108": 0.54, + "109": 0.545, + "110": 0.55, + "111": 0.555, + "112": 0.56, + "113": 0.565, + "114": 0.57, + "115": 0.575, + "116": 0.58, + "117": 0.585, + "118": 0.59, + "119": 0.595, + "120": 0.6, + "121": 0.605, + "122": 0.61, + "123": 0.615, + "124": 0.62, + "125": 0.625, + "126": 0.63, + "127": 0.635, + "128": 0.64, + "129": 0.645, + "130": 0.65, + "131": 0.655, + "132": 0.66, + "133": 0.665, + "134": 0.67, + "135": 0.675, + "136": 0.68, + "137": 0.685, + "138": 0.69, + "139": 0.695, + "140": 0.7, + "141": 0.705, + "142": 0.71, + "143": 0.715, + "144": 0.72, + "145": 0.725, + "146": 0.73, + "147": 0.735, + "148": 0.74, + "149": 0.745, + "150": 0.75, + "151": 0.755, + "152": 0.76, + "153": 0.765, + "154": 0.77, + "155": 0.775, + "156": 0.78, + "157": 0.785, + "158": 0.79, + "159": 0.795, + "160": 0.8, + "161": 0.805, + "162": 0.81, + "163": 0.815, + "164": 0.82, + "165": 0.825, + "166": 0.83, + "167": 0.835, + "168": 0.84, + "169": 0.845, + "170": 0.85, + "171": 0.855, + "172": 0.86, + "173": 0.865, + "174": 0.87, + "175": 0.875, + "176": 0.88, + "177": 0.885, + "178": 0.89, + "179": 0.895, + "180": 0.9, + "181": 0.905, + "182": 0.91, + "183": 0.915, + "184": 0.92, + "185": 0.925, + "186": 0.93, + "187": 0.935, + "188": 0.94, + "189": 0.945, + "190": 0.95, + "191": 0.955, + "192": 0.96, + "193": 0.965, + "194": 0.97, + "195": 0.975, + "196": 0.98, + "197": 0.985, + "198": 0.99, + "199": 0.995, + "200": 1.0, + "201": 1.005, + "202": 1.01, + "203": 1.015, + "204": 1.02, + "205": 1.025, + "206": 1.03, + "207": 1.035, + "208": 1.04, + "209": 1.045, + "210": 1.05, + "211": 1.055, + "212": 1.06, + "213": 1.065, + "214": 1.07, + "215": 1.075, + "216": 1.08, + "217": 1.085, + "218": 1.09, + "219": 1.095, + "220": 1.1, + "221": 1.105, + "222": 1.11, + "223": 1.115, + "224": 1.12, + "225": 1.125, + "226": 1.13, + "227": 1.135, + "228": 1.14, + "229": 1.145, + "230": 1.15, + "231": 1.155, + "232": 1.16, + "233": 1.165, + "234": 1.17, + "235": 1.175, + "236": 1.18, + "237": 1.185, + "238": 1.19, + "239": 1.195, + "240": 1.2, + "241": 1.205, + "242": 1.21, + "243": 1.215, + "244": 1.22, + "245": 1.225, + "246": 1.23, + "247": 1.235, + "248": 1.24, + "249": 1.245, + "250": 1.25, + "251": 1.255, + "252": 1.26, + "253": 1.265, + "254": 1.27, + "255": 1.275, + "256": 1.28, + "257": 1.285, + "258": 1.29, + "259": 1.295, + "260": 1.3, + "261": 1.305, + "262": 1.31, + "263": 1.315, + "264": 1.32, + "265": 1.325, + "266": 1.33, + "267": 1.335, + "268": 1.34, + "269": 1.345, + "270": 1.35, + "271": 1.355, + "272": 1.36, + "273": 1.365, + "274": 1.37, + "275": 1.375, + "276": 1.38, + "277": 1.385, + "278": 1.39, + "279": 1.395, + "280": 1.4, + "281": 1.405, + "282": 1.41, + "283": 1.415, + "284": 1.42, + "285": 1.425, + "286": 1.43, + "287": 1.435, + "288": 1.44, + "289": 1.445, + "290": 1.45, + "291": 1.455, + "292": 1.46, + "293": 1.465, + "294": 1.47, + "295": 1.475, + "296": 1.48, + "297": 1.485, + "298": 1.49, + "299": 1.495, + "300": 1.5, + "301": 1.505, + "302": 1.51, + "303": 1.515, + "304": 1.52, + "305": 1.525, + "306": 1.53, + "307": 1.535, + "308": 1.54, + "309": 1.545, + "310": 1.55, + "311": 1.555, + "312": 1.56, + "313": 1.565, + "314": 1.57, + "315": 1.575, + "316": 1.58, + "317": 1.585, + "318": 1.59, + "319": 1.595, + "320": 1.6, + "321": 1.605, + "322": 1.61, + "323": 1.615, + "324": 1.62, + "325": 1.625, + "326": 1.63, + "327": 1.635, + "328": 1.64, + "329": 1.645, + "330": 1.65, + "331": 1.655, + "332": 1.66, + "333": 1.665, + "334": 1.67, + "335": 1.675, + "336": 1.68, + "337": 1.685, + "338": 1.69, + "339": 1.695, + "340": 1.7, + "341": 1.705, + "342": 1.71, + "343": 1.715, + "344": 1.72, + "345": 1.725, + "346": 1.73, + "347": 1.735, + "348": 1.74, + "349": 1.745, + "350": 1.75, + "351": 1.755, + "352": 1.76, + "353": 1.765, + "354": 1.77, + "355": 1.775, + "356": 1.78, + "357": 1.785, + "358": 1.79, + "359": 1.795, + "360": 1.8, + "361": 1.805, + "362": 1.81, + "363": 1.815, + "364": 1.82, + "365": 1.825, + "366": 1.83, + "367": 1.835, + "368": 1.84, + "369": 1.845, + "370": 1.85, + "371": 1.855, + "372": 1.86, + "373": 1.865, + "374": 1.87, + "375": 1.875, + "376": 1.88, + "377": 1.885, + "378": 1.89, + "379": 1.895, + "380": 1.9, + "381": 1.905, + "382": 1.91, + "383": 1.915, + "384": 1.92, + "385": 1.925, + "386": 1.93, + "387": 1.935, + "388": 1.94, + "389": 1.945, + "390": 1.95, + "391": 1.955, + "392": 1.96, + "393": 1.965, + "394": 1.97, + "395": 1.975, + "396": 1.98, + "397": 1.985, + "398": 1.99, + "399": 1.995, + "400": 2.0, + "401": 2.005, + "402": 2.01, + "403": 2.015, + "404": 2.02, + "405": 2.025, + "406": 2.03, + "407": 2.035, + "408": 2.04, + "409": 2.045, + "410": 2.05, + "411": 2.055, + "412": 2.06, + "413": 2.065, + "414": 2.07, + "415": 2.075, + "416": 2.08, + "417": 2.085, + "418": 2.09, + "419": 2.095, + "420": 2.1, + "421": 2.105, + "422": 2.11, + "423": 2.115, + "424": 2.12, + "425": 2.125, + "426": 2.13, + "427": 2.135, + "428": 2.14, + "429": 2.145, + "430": 2.15, + "431": 2.155, + "432": 2.16, + "433": 2.165, + "434": 2.17, + "435": 2.175, + "436": 2.18, + "437": 2.185, + "438": 2.19, + "439": 2.195, + "440": 2.2, + "441": 2.205, + "442": 2.21, + "443": 2.215, + "444": 2.22, + "445": 2.225, + "446": 2.23, + "447": 2.235, + "448": 2.24, + "449": 2.245, + "450": 2.25, + "451": 2.255, + "452": 2.26, + "453": 2.265, + "454": 2.27, + "455": 2.275, + "456": 2.28, + "457": 2.285, + "458": 2.29, + "459": 2.295, + "460": 2.3, + "461": 2.305, + "462": 2.31, + "463": 2.315, + "464": 2.32, + "465": 2.325, + "466": 2.33, + "467": 2.335, + "468": 2.34, + "469": 2.345, + "470": 2.35, + "471": 2.355, + "472": 2.36, + "473": 2.365, + "474": 2.37, + "475": 2.375, + "476": 2.38, + "477": 2.385, + "478": 2.39, + "479": 2.395, + "480": 2.4, + "481": 2.405, + "482": 2.41, + "483": 2.415, + "484": 2.42, + "485": 2.425, + "486": 2.43, + "487": 2.435, + "488": 2.44, + "489": 2.445, + "490": 2.45, + "491": 2.455, + "492": 2.46, + "493": 2.465, + "494": 2.47, + "495": 2.475, + "496": 2.48, + "497": 2.485, + "498": 2.49, + "499": 2.495, + "500": 2.5, + "501": 2.505, + "502": 2.51, + "503": 2.515, + "504": 2.52, + "505": 2.525, + "506": 2.53, + "507": 2.535, + "508": 2.54, + "509": 2.545, + "510": 2.55, + "511": 2.555, + "512": 2.56, + "513": 2.565, + "514": 2.57, + "515": 2.575, + "516": 2.58, + "517": 2.585, + "518": 2.59, + "519": 2.595, + "520": 2.6, + "521": 2.605, + "522": 2.61, + "523": 2.615, + "524": 2.62, + "525": 2.625, + "526": 2.63, + "527": 2.635, + "528": 2.64, + "529": 2.645, + "530": 2.65, + "531": 2.655, + "532": 2.66, + "533": 2.665, + "534": 2.67, + "535": 2.675, + "536": 2.68, + "537": 2.685, + "538": 2.69, + "539": 2.695, + "540": 2.7, + "541": 2.705, + "542": 2.71, + "543": 2.715, + "544": 2.72, + "545": 2.725, + "546": 2.73, + "547": 2.735, + "548": 2.74, + "549": 2.745, + "550": 2.75, + "551": 2.755, + "552": 2.76, + "553": 2.765, + "554": 2.77, + "555": 2.775, + "556": 2.78, + "557": 2.785, + "558": 2.79, + "559": 2.795, + "560": 2.8, + "561": 2.805, + "562": 2.81, + "563": 2.815, + "564": 2.82, + "565": 2.825, + "566": 2.83, + "567": 2.835, + "568": 2.84, + "569": 2.845, + "570": 2.85, + "571": 2.855, + "572": 2.86, + "573": 2.865, + "574": 2.87, + "575": 2.875, + "576": 2.88, + "577": 2.885, + "578": 2.89, + "579": 2.895, + "580": 2.9, + "581": 2.905, + "582": 2.91, + "583": 2.915, + "584": 2.92, + "585": 2.925, + "586": 2.93, + "587": 2.935, + "588": 2.94, + "589": 2.945, + "590": 2.95, + "591": 2.955, + "592": 2.96, + "593": 2.965, + "594": 2.97, + "595": 2.975, + "596": 2.98, + "597": 2.985, + "598": 2.99, + "599": 2.995, + "600": 3.0, + "601": 3.005, + "602": 3.01, + "603": 3.015, + "604": 3.02, + "605": 3.025, + "606": 3.03, + "607": 3.035, + "608": 3.04, + "609": 3.045, + "610": 3.05, + "611": 3.055, + "612": 3.06, + "613": 3.065, + "614": 3.07, + "615": 3.075, + "616": 3.08, + "617": 3.085, + "618": 3.09, + "619": 3.095, + "620": 3.1, + "621": 3.105, + "622": 3.11, + "623": 3.115, + "624": 3.12, + "625": 3.125, + "626": 3.13, + "627": 3.135, + "628": 3.14, + "629": 3.145, + "630": 3.15, + "631": 3.155, + "632": 3.16, + "633": 3.165, + "634": 3.17, + "635": 3.175, + "636": 3.18, + "637": 3.185, + "638": 3.19, + "639": 3.195, + "640": 3.2, + "641": 3.205, + "642": 3.21, + "643": 3.215, + "644": 3.22, + "645": 3.225, + "646": 3.23, + "647": 3.235, + "648": 3.24, + "649": 3.245, + "650": 3.25, + "651": 3.255, + "652": 3.26, + "653": 3.265, + "654": 3.27, + "655": 3.275, + "656": 3.28, + "657": 3.285, + "658": 3.29, + "659": 3.295, + "660": 3.3, + "661": 3.305, + "662": 3.31, + "663": 3.315, + "664": 3.32, + "665": 3.325, + "666": 3.33, + "667": 3.335, + "668": 3.34, + "669": 3.345, + "670": 3.35, + "671": 3.355, + "672": 3.36, + "673": 3.365, + "674": 3.37, + "675": 3.375, + "676": 3.38, + "677": 3.385, + "678": 3.39, + "679": 3.395, + "680": 3.4, + "681": 3.405, + "682": 3.41, + "683": 3.415, + "684": 3.42, + "685": 3.425, + "686": 3.43, + "687": 3.435, + "688": 3.44, + "689": 3.445, + "690": 3.45, + "691": 3.455, + "692": 3.46, + "693": 3.465, + "694": 3.47, + "695": 3.475, + "696": 3.48, + "697": 3.485, + "698": 3.49, + "699": 3.495, + "700": 3.5, + "701": 3.505, + "702": 3.51, + "703": 3.515, + "704": 3.52, + "705": 3.525, + "706": 3.53, + "707": 3.535, + "708": 3.54, + "709": 3.545, + "710": 3.55, + "711": 3.555, + "712": 3.56, + "713": 3.565, + "714": 3.57, + "715": 3.575, + "716": 3.58, + "717": 3.585, + "718": 3.59, + "719": 3.595, + "720": 3.6, + "721": 3.605, + "722": 3.61, + "723": 3.615, + "724": 3.62, + "725": 3.625, + "726": 3.63, + "727": 3.635, + "728": 3.64, + "729": 3.645, + "730": 3.65, + "731": 3.655, + "732": 3.66, + "733": 3.665, + "734": 3.67, + "735": 3.675, + "736": 3.68, + "737": 3.685, + "738": 3.69, + "739": 3.695, + "740": 3.7, + "741": 3.705, + "742": 3.71, + "743": 3.715, + "744": 3.72, + "745": 3.725, + "746": 3.73, + "747": 3.735, + "748": 3.74, + "749": 3.745, + "750": 3.75, + "751": 3.755, + "752": 3.76, + "753": 3.765, + "754": 3.77, + "755": 3.775, + "756": 3.78, + "757": 3.785, + "758": 3.79, + "759": 3.795, + "760": 3.8, + "761": 3.805, + "762": 3.81, + "763": 3.815, + "764": 3.82, + "765": 3.825, + "766": 3.83, + "767": 3.835, + "768": 3.84, + "769": 3.845, + "770": 3.85, + "771": 3.855, + "772": 3.86, + "773": 3.865, + "774": 3.87, + "775": 3.875, + "776": 3.88, + "777": 3.885, + "778": 3.89, + "779": 3.895, + "780": 3.9, + "781": 3.905, + "782": 3.91, + "783": 3.915, + "784": 3.92, + "785": 3.925, + "786": 3.93, + "787": 3.935, + "788": 3.94, + "789": 3.945, + "790": 3.95, + "791": 3.955, + "792": 3.96, + "793": 3.965, + "794": 3.97, + "795": 3.975, + "796": 3.98, + "797": 3.985, + "798": 3.99, + "799": 3.995, + "800": 4.0, + "801": 4.005, + "802": 4.01, + "803": 4.015, + "804": 4.02, + "805": 4.025, + "806": 4.03, + "807": 4.035, + "808": 4.04, + "809": 4.045, + "810": 4.05, + "811": 4.055, + "812": 4.06, + "813": 4.065, + "814": 4.07, + "815": 4.075, + "816": 4.08, + "817": 4.085, + "818": 4.09, + "819": 4.095, + "820": 4.1, + "821": 4.105, + "822": 4.11, + "823": 4.115, + "824": 4.12, + "825": 4.125, + "826": 4.13, + "827": 4.135, + "828": 4.14, + "829": 4.145, + "830": 4.15, + "831": 4.155, + "832": 4.16, + "833": 4.165, + "834": 4.17, + "835": 4.175, + "836": 4.18, + "837": 4.185, + "838": 4.19, + "839": 4.195, + "840": 4.2, + "841": 4.205, + "842": 4.21, + "843": 4.215, + "844": 4.22, + "845": 4.225, + "846": 4.23, + "847": 4.235, + "848": 4.24, + "849": 4.245, + "850": 4.25, + "851": 4.255, + "852": 4.26, + "853": 4.265, + "854": 4.27, + "855": 4.275, + "856": 4.28, + "857": 4.285, + "858": 4.29, + "859": 4.295, + "860": 4.3, + "861": 4.305, + "862": 4.31, + "863": 4.315, + "864": 4.32, + "865": 4.325, + "866": 4.33, + "867": 4.335, + "868": 4.34, + "869": 4.345, + "870": 4.35, + "871": 4.355, + "872": 4.36, + "873": 4.365, + "874": 4.37, + "875": 4.375, + "876": 4.38, + "877": 4.385, + "878": 4.39, + "879": 4.395, + "880": 4.4, + "881": 4.405, + "882": 4.41, + "883": 4.415, + "884": 4.42, + "885": 4.425, + "886": 4.43, + "887": 4.435, + "888": 4.44, + "889": 4.445, + "890": 4.45, + "891": 4.455, + "892": 4.46, + "893": 4.465, + "894": 4.47, + "895": 4.475, + "896": 4.48, + "897": 4.485, + "898": 4.49, + "899": 4.495, + "900": 4.5, + "901": 4.505, + "902": 4.51, + "903": 4.515, + "904": 4.52, + "905": 4.525, + "906": 4.53, + "907": 4.535, + "908": 4.54, + "909": 4.545, + "910": 4.55, + "911": 4.555, + "912": 4.56, + "913": 4.565, + "914": 4.57, + "915": 4.575, + "916": 4.58, + "917": 4.585, + "918": 4.59, + "919": 4.595, + "920": 4.6, + "921": 4.605, + "922": 4.61, + "923": 4.615, + "924": 4.62, + "925": 4.625, + "926": 4.63, + "927": 4.635, + "928": 4.64, + "929": 4.645, + "930": 4.65, + "931": 4.655, + "932": 4.66, + "933": 4.665, + "934": 4.67, + "935": 4.675, + "936": 4.68, + "937": 4.685, + "938": 4.69, + "939": 4.695, + "940": 4.7, + "941": 4.705, + "942": 4.71, + "943": 4.715, + "944": 4.72, + "945": 4.725, + "946": 4.73, + "947": 4.735, + "948": 4.74, + "949": 4.745, + "950": 4.75, + "951": 4.755, + "952": 4.76, + "953": 4.765, + "954": 4.77, + "955": 4.775, + "956": 4.78, + "957": 4.785, + "958": 4.79, + "959": 4.795, + "960": 4.8, + "961": 4.805, + "962": 4.81, + "963": 4.815, + "964": 4.82, + "965": 4.825, + "966": 4.83, + "967": 4.835, + "968": 4.84, + "969": 4.845, + "970": 4.85, + "971": 4.855, + "972": 4.86, + "973": 4.865, + "974": 4.87, + "975": 4.875, + "976": 4.88, + "977": 4.885, + "978": 4.89, + "979": 4.895, + "980": 4.9, + "981": 4.905, + "982": 4.91, + "983": 4.915, + "984": 4.92, + "985": 4.925, + "986": 4.93, + "987": 4.935, + "988": 4.94, + "989": 4.945, + "990": 4.95, + "991": 4.955, + "992": 4.96, + "993": 4.965, + "994": 4.97, + "995": 4.975, + "996": 4.98, + "997": 4.985, + "998": 4.99, + "999": 4.995, + "1000": 5.0, + "1001": 5.005, + "1002": 5.01, + "1003": 5.015, + "1004": 5.02, + "1005": 5.025, + "1006": 5.03, + "1007": 5.035, + "1008": 5.04, + "1009": 5.045, + "1010": 5.05, + "1011": 5.055, + "1012": 5.06, + "1013": 5.065, + "1014": 5.07, + "1015": 5.075, + "1016": 5.08, + "1017": 5.085, + "1018": 5.09, + "1019": 5.095, + "1020": 5.1, + "1021": 5.105, + "1022": 5.11, + "1023": 5.115, + "1024": 5.12, + "1025": 5.125, + "1026": 5.13, + "1027": 5.135, + "1028": 5.14, + "1029": 5.145, + "1030": 5.15, + "1031": 5.155, + "1032": 5.16, + "1033": 5.165, + "1034": 5.17, + "1035": 5.175, + "1036": 5.18, + "1037": 5.185, + "1038": 5.19, + "1039": 5.195, + "1040": 5.2, + "1041": 5.205, + "1042": 5.21, + "1043": 5.215, + "1044": 5.22, + "1045": 5.225, + "1046": 5.23, + "1047": 5.235, + "1048": 5.24, + "1049": 5.245, + "1050": 5.25, + "1051": 5.255, + "1052": 5.26, + "1053": 5.265, + "1054": 5.27, + "1055": 5.275, + "1056": 5.28, + "1057": 5.285, + "1058": 5.29, + "1059": 5.295, + "1060": 5.3, + "1061": 5.305, + "1062": 5.31, + "1063": 5.315, + "1064": 5.32, + "1065": 5.325, + "1066": 5.33, + "1067": 5.335, + "1068": 5.34, + "1069": 5.345, + "1070": 5.35, + "1071": 5.355, + "1072": 5.36, + "1073": 5.365, + "1074": 5.37, + "1075": 5.375, + "1076": 5.38, + "1077": 5.385, + "1078": 5.39, + "1079": 5.395, + "1080": 5.4, + "1081": 5.405, + "1082": 5.41, + "1083": 5.415, + "1084": 5.42, + "1085": 5.425, + "1086": 5.43, + "1087": 5.435, + "1088": 5.44, + "1089": 5.445, + "1090": 5.45, + "1091": 5.455, + "1092": 5.46, + "1093": 5.465, + "1094": 5.47, + "1095": 5.475, + "1096": 5.48, + "1097": 5.485, + "1098": 5.49, + "1099": 5.495, + "1100": 5.5, + "1101": 5.505, + "1102": 5.51, + "1103": 5.515, + "1104": 5.52, + "1105": 5.525, + "1106": 5.53, + "1107": 5.535, + "1108": 5.54, + "1109": 5.545, + "1110": 5.55, + "1111": 5.555, + "1112": 5.56, + "1113": 5.565, + "1114": 5.57, + "1115": 5.575, + "1116": 5.58, + "1117": 5.585, + "1118": 5.59, + "1119": 5.595, + "1120": 5.6, + "1121": 5.605, + "1122": 5.61, + "1123": 5.615, + "1124": 5.62, + "1125": 5.625, + "1126": 5.63, + "1127": 5.635, + "1128": 5.64, + "1129": 5.645, + "1130": 5.65, + "1131": 5.655, + "1132": 5.66, + "1133": 5.665, + "1134": 5.67, + "1135": 5.675, + "1136": 5.68, + "1137": 5.685, + "1138": 5.69, + "1139": 5.695, + "1140": 5.7, + "1141": 5.705, + "1142": 5.71, + "1143": 5.715, + "1144": 5.72, + "1145": 5.725, + "1146": 5.73, + "1147": 5.735, + "1148": 5.74, + "1149": 5.745, + "1150": 5.75, + "1151": 5.755, + "1152": 5.76, + "1153": 5.765, + "1154": 5.77, + "1155": 5.775, + "1156": 5.78, + "1157": 5.785, + "1158": 5.79, + "1159": 5.795, + "1160": 5.8, + "1161": 5.805, + "1162": 5.81, + "1163": 5.815, + "1164": 5.82, + "1165": 5.825, + "1166": 5.83, + "1167": 5.835, + "1168": 5.84, + "1169": 5.845, + "1170": 5.85, + "1171": 5.855, + "1172": 5.86, + "1173": 5.865, + "1174": 5.87, + "1175": 5.875, + "1176": 5.88, + "1177": 5.885, + "1178": 5.89, + "1179": 5.895, + "1180": 5.9, + "1181": 5.905, + "1182": 5.91, + "1183": 5.915, + "1184": 5.92, + "1185": 5.925, + "1186": 5.93, + "1187": 5.935, + "1188": 5.94, + "1189": 5.945, + "1190": 5.95, + "1191": 5.955, + "1192": 5.96, + "1193": 5.965, + "1194": 5.97, + "1195": 5.975, + "1196": 5.98, + "1197": 5.985, + "1198": 5.99, + "1199": 5.995, + "1200": 6.0, + "1201": 6.005, + "1202": 6.01, + "1203": 6.015, + "1204": 6.02, + "1205": 6.025, + "1206": 6.03, + "1207": 6.035, + "1208": 6.04, + "1209": 6.045, + "1210": 6.05, + "1211": 6.055, + "1212": 6.06, + "1213": 6.065, + "1214": 6.07, + "1215": 6.075, + "1216": 6.08, + "1217": 6.085, + "1218": 6.09, + "1219": 6.095, + "1220": 6.1, + "1221": 6.105, + "1222": 6.11, + "1223": 6.115, + "1224": 6.12, + "1225": 6.125, + "1226": 6.13, + "1227": 6.135, + "1228": 6.14, + "1229": 6.145, + "1230": 6.15, + "1231": 6.155, + "1232": 6.16, + "1233": 6.165, + "1234": 6.17, + "1235": 6.175, + "1236": 6.18, + "1237": 6.185, + "1238": 6.19, + "1239": 6.195, + "1240": 6.2, + "1241": 6.205, + "1242": 6.21, + "1243": 6.215, + "1244": 6.22, + "1245": 6.225, + "1246": 6.23, + "1247": 6.235, + "1248": 6.24, + "1249": 6.245, + "1250": 6.25, + "1251": 6.255, + "1252": 6.26, + "1253": 6.265, + "1254": 6.27, + "1255": 6.275, + "1256": 6.28, + "1257": 6.285, + "1258": 6.29, + "1259": 6.295, + "1260": 6.3, + "1261": 6.305, + "1262": 6.31, + "1263": 6.315, + "1264": 6.32, + "1265": 6.325, + "1266": 6.33, + "1267": 6.335, + "1268": 6.34, + "1269": 6.345, + "1270": 6.35, + "1271": 6.355, + "1272": 6.36, + "1273": 6.365, + "1274": 6.37, + "1275": 6.375, + "1276": 6.38, + "1277": 6.385, + "1278": 6.39, + "1279": 6.395, + "1280": 6.4, + "1281": 6.405, + "1282": 6.41, + "1283": 6.415, + "1284": 6.42, + "1285": 6.425, + "1286": 6.43, + "1287": 6.435, + "1288": 6.44, + "1289": 6.445, + "1290": 6.45, + "1291": 6.455, + "1292": 6.46, + "1293": 6.465, + "1294": 6.47, + "1295": 6.475, + "1296": 6.48, + "1297": 6.485, + "1298": 6.49, + "1299": 6.495, + "1300": 6.5, + "1301": 6.505, + "1302": 6.51, + "1303": 6.515, + "1304": 6.52, + "1305": 6.525, + "1306": 6.53, + "1307": 6.535, + "1308": 6.54, + "1309": 6.545, + "1310": 6.55, + "1311": 6.555, + "1312": 6.56, + "1313": 6.565, + "1314": 6.57, + "1315": 6.575, + "1316": 6.58, + "1317": 6.585, + "1318": 6.59, + "1319": 6.595, + "1320": 6.6, + "1321": 6.605, + "1322": 6.61, + "1323": 6.615, + "1324": 6.62, + "1325": 6.625, + "1326": 6.63, + "1327": 6.635, + "1328": 6.64, + "1329": 6.645, + "1330": 6.65, + "1331": 6.655, + "1332": 6.66, + "1333": 6.665, + "1334": 6.67, + "1335": 6.675, + "1336": 6.68, + "1337": 6.685, + "1338": 6.69, + "1339": 6.695, + "1340": 6.7, + "1341": 6.705, + "1342": 6.71, + "1343": 6.715, + "1344": 6.72, + "1345": 6.725, + "1346": 6.73, + "1347": 6.735, + "1348": 6.74, + "1349": 6.745, + "1350": 6.75, + "1351": 6.755, + "1352": 6.76, + "1353": 6.765, + "1354": 6.77, + "1355": 6.775, + "1356": 6.78, + "1357": 6.785, + "1358": 6.79, + "1359": 6.795, + "1360": 6.8, + "1361": 6.805, + "1362": 6.81, + "1363": 6.815, + "1364": 6.82, + "1365": 6.825, + "1366": 6.83, + "1367": 6.835, + "1368": 6.84, + "1369": 6.845, + "1370": 6.85, + "1371": 6.855, + "1372": 6.86, + "1373": 6.865, + "1374": 6.87, + "1375": 6.875, + "1376": 6.88, + "1377": 6.885, + "1378": 6.89, + "1379": 6.895, + "1380": 6.9, + "1381": 6.905, + "1382": 6.91, + "1383": 6.915, + "1384": 6.92, + "1385": 6.925, + "1386": 6.93, + "1387": 6.935, + "1388": 6.94, + "1389": 6.945, + "1390": 6.95, + "1391": 6.955, + "1392": 6.96, + "1393": 6.965, + "1394": 6.97, + "1395": 6.975, + "1396": 6.98, + "1397": 6.985, + "1398": 6.99, + "1399": 6.995, + "1400": 7.0, + "1401": 7.005, + "1402": 7.01, + "1403": 7.015, + "1404": 7.02, + "1405": 7.025, + "1406": 7.03, + "1407": 7.035, + "1408": 7.04, + "1409": 7.045, + "1410": 7.05, + "1411": 7.055, + "1412": 7.06, + "1413": 7.065, + "1414": 7.07, + "1415": 7.075, + "1416": 7.08, + "1417": 7.085, + "1418": 7.09, + "1419": 7.095, + "1420": 7.1, + "1421": 7.105, + "1422": 7.11, + "1423": 7.115, + "1424": 7.12, + "1425": 7.125, + "1426": 7.13, + "1427": 7.135, + "1428": 7.14, + "1429": 7.145, + "1430": 7.15, + "1431": 7.155, + "1432": 7.16, + "1433": 7.165, + "1434": 7.17, + "1435": 7.175, + "1436": 7.18, + "1437": 7.185, + "1438": 7.19, + "1439": 7.195, + "1440": 7.2, + "1441": 7.205, + "1442": 7.21, + "1443": 7.215, + "1444": 7.22, + "1445": 7.225, + "1446": 7.23, + "1447": 7.235, + "1448": 7.24, + "1449": 7.245, + "1450": 7.25, + "1451": 7.255, + "1452": 7.26, + "1453": 7.265, + "1454": 7.27, + "1455": 7.275, + "1456": 7.28, + "1457": 7.285, + "1458": 7.29, + "1459": 7.295, + "1460": 7.3, + "1461": 7.305, + "1462": 7.31, + "1463": 7.315, + "1464": 7.32, + "1465": 7.325, + "1466": 7.33, + "1467": 7.335, + "1468": 7.34, + "1469": 7.345, + "1470": 7.35, + "1471": 7.355, + "1472": 7.36, + "1473": 7.365, + "1474": 7.37, + "1475": 7.375, + "1476": 7.38, + "1477": 7.385, + "1478": 7.39, + "1479": 7.395, + "1480": 7.4, + "1481": 7.405, + "1482": 7.41, + "1483": 7.415, + "1484": 7.42, + "1485": 7.425, + "1486": 7.43, + "1487": 7.435, + "1488": 7.44, + "1489": 7.445, + "1490": 7.45, + "1491": 7.455, + "1492": 7.46, + "1493": 7.465, + "1494": 7.47, + "1495": 7.475, + "1496": 7.48, + "1497": 7.485, + "1498": 7.49, + "1499": 7.495, + "1500": 7.5, + "1501": 7.505, + "1502": 7.51, + "1503": 7.515, + "1504": 7.52, + "1505": 7.525, + "1506": 7.53, + "1507": 7.535, + "1508": 7.54, + "1509": 7.545, + "1510": 7.55, + "1511": 7.555, + "1512": 7.56, + "1513": 7.565, + "1514": 7.57, + "1515": 7.575, + "1516": 7.58, + "1517": 7.585, + "1518": 7.59, + "1519": 7.595, + "1520": 7.6, + "1521": 7.605, + "1522": 7.61, + "1523": 7.615, + "1524": 7.62, + "1525": 7.625, + "1526": 7.63, + "1527": 7.635, + "1528": 7.64, + "1529": 7.645, + "1530": 7.65, + "1531": 7.655, + "1532": 7.66, + "1533": 7.665, + "1534": 7.67, + "1535": 7.675, + "1536": 7.68, + "1537": 7.685, + "1538": 7.69, + "1539": 7.695, + "1540": 7.7, + "1541": 7.705, + "1542": 7.71, + "1543": 7.715, + "1544": 7.72, + "1545": 7.725, + "1546": 7.73, + "1547": 7.735, + "1548": 7.74, + "1549": 7.745, + "1550": 7.75, + "1551": 7.755, + "1552": 7.76, + "1553": 7.765, + "1554": 7.77, + "1555": 7.775, + "1556": 7.78, + "1557": 7.785, + "1558": 7.79, + "1559": 7.795, + "1560": 7.8, + "1561": 7.805, + "1562": 7.81, + "1563": 7.815, + "1564": 7.82, + "1565": 7.825, + "1566": 7.83, + "1567": 7.835, + "1568": 7.84, + "1569": 7.845, + "1570": 7.85, + "1571": 7.855, + "1572": 7.86, + "1573": 7.865, + "1574": 7.87, + "1575": 7.875, + "1576": 7.88, + "1577": 7.885, + "1578": 7.89, + "1579": 7.895, + "1580": 7.9, + "1581": 7.905, + "1582": 7.91, + "1583": 7.915, + "1584": 7.92, + "1585": 7.925, + "1586": 7.93, + "1587": 7.935, + "1588": 7.94, + "1589": 7.945, + "1590": 7.95, + "1591": 7.955, + "1592": 7.96, + "1593": 7.965, + "1594": 7.97, + "1595": 7.975, + "1596": 7.98, + "1597": 7.985, + "1598": 7.99, + "1599": 7.995, + "1600": 8.0, + "1601": 8.005, + "1602": 8.01, + "1603": 8.015, + "1604": 8.02, + "1605": 8.025, + "1606": 8.03, + "1607": 8.035, + "1608": 8.04, + "1609": 8.045, + "1610": 8.05, + "1611": 8.055, + "1612": 8.06, + "1613": 8.065, + "1614": 8.07, + "1615": 8.075, + "1616": 8.08, + "1617": 8.085, + "1618": 8.09, + "1619": 8.095, + "1620": 8.1, + "1621": 8.105, + "1622": 8.11, + "1623": 8.115, + "1624": 8.12, + "1625": 8.125, + "1626": 8.13, + "1627": 8.135, + "1628": 8.14, + "1629": 8.145, + "1630": 8.15, + "1631": 8.155, + "1632": 8.16, + "1633": 8.165, + "1634": 8.17, + "1635": 8.175, + "1636": 8.18, + "1637": 8.185, + "1638": 8.19, + "1639": 8.195, + "1640": 8.2, + "1641": 8.205, + "1642": 8.21, + "1643": 8.215, + "1644": 8.22, + "1645": 8.225, + "1646": 8.23, + "1647": 8.235, + "1648": 8.24, + "1649": 8.245, + "1650": 8.25, + "1651": 8.255, + "1652": 8.26, + "1653": 8.265, + "1654": 8.27, + "1655": 8.275, + "1656": 8.28, + "1657": 8.285, + "1658": 8.29, + "1659": 8.295, + "1660": 8.3, + "1661": 8.305, + "1662": 8.31, + "1663": 8.315, + "1664": 8.32, + "1665": 8.325, + "1666": 8.33, + "1667": 8.335, + "1668": 8.34, + "1669": 8.345, + "1670": 8.35, + "1671": 8.355, + "1672": 8.36, + "1673": 8.365, + "1674": 8.37, + "1675": 8.375, + "1676": 8.38, + "1677": 8.385, + "1678": 8.39, + "1679": 8.395, + "1680": 8.4, + "1681": 8.405, + "1682": 8.41, + "1683": 8.415, + "1684": 8.42, + "1685": 8.425, + "1686": 8.43, + "1687": 8.435, + "1688": 8.44, + "1689": 8.445, + "1690": 8.45, + "1691": 8.455, + "1692": 8.46, + "1693": 8.465, + "1694": 8.47, + "1695": 8.475, + "1696": 8.48, + "1697": 8.485, + "1698": 8.49, + "1699": 8.495, + "1700": 8.5, + "1701": 8.505, + "1702": 8.51, + "1703": 8.515, + "1704": 8.52, + "1705": 8.525, + "1706": 8.53, + "1707": 8.535, + "1708": 8.54, + "1709": 8.545, + "1710": 8.55, + "1711": 8.555, + "1712": 8.56, + "1713": 8.565, + "1714": 8.57, + "1715": 8.575, + "1716": 8.58, + "1717": 8.585, + "1718": 8.59, + "1719": 8.595, + "1720": 8.6, + "1721": 8.605, + "1722": 8.61, + "1723": 8.615, + "1724": 8.62, + "1725": 8.625, + "1726": 8.63, + "1727": 8.635, + "1728": 8.64, + "1729": 8.645, + "1730": 8.65, + "1731": 8.655, + "1732": 8.66, + "1733": 8.665, + "1734": 8.67, + "1735": 8.675, + "1736": 8.68, + "1737": 8.685, + "1738": 8.69, + "1739": 8.695, + "1740": 8.7, + "1741": 8.705, + "1742": 8.71, + "1743": 8.715, + "1744": 8.72, + "1745": 8.725, + "1746": 8.73, + "1747": 8.735, + "1748": 8.74, + "1749": 8.745, + "1750": 8.75, + "1751": 8.755, + "1752": 8.76, + "1753": 8.765, + "1754": 8.77, + "1755": 8.775, + "1756": 8.78, + "1757": 8.785, + "1758": 8.79, + "1759": 8.795, + "1760": 8.8, + "1761": 8.805, + "1762": 8.81, + "1763": 8.815, + "1764": 8.82, + "1765": 8.825, + "1766": 8.83, + "1767": 8.835, + "1768": 8.84, + "1769": 8.845, + "1770": 8.85, + "1771": 8.855, + "1772": 8.86, + "1773": 8.865, + "1774": 8.87, + "1775": 8.875, + "1776": 8.88, + "1777": 8.885, + "1778": 8.89, + "1779": 8.895, + "1780": 8.9, + "1781": 8.905, + "1782": 8.91, + "1783": 8.915, + "1784": 8.92, + "1785": 8.925, + "1786": 8.93, + "1787": 8.935, + "1788": 8.94, + "1789": 8.945, + "1790": 8.95, + "1791": 8.955, + "1792": 8.96, + "1793": 8.965, + "1794": 8.97, + "1795": 8.975, + "1796": 8.98, + "1797": 8.985, + "1798": 8.99, + "1799": 8.995, + "1800": 9.0, + "1801": 9.005, + "1802": 9.01, + "1803": 9.015, + "1804": 9.02, + "1805": 9.025, + "1806": 9.03, + "1807": 9.035, + "1808": 9.04, + "1809": 9.045, + "1810": 9.05, + "1811": 9.055, + "1812": 9.06, + "1813": 9.065, + "1814": 9.07, + "1815": 9.075, + "1816": 9.08, + "1817": 9.085, + "1818": 9.09, + "1819": 9.095, + "1820": 9.1, + "1821": 9.105, + "1822": 9.11, + "1823": 9.115, + "1824": 9.12, + "1825": 9.125, + "1826": 9.13, + "1827": 9.135, + "1828": 9.14, + "1829": 9.145, + "1830": 9.15, + "1831": 9.155, + "1832": 9.16, + "1833": 9.165, + "1834": 9.17, + "1835": 9.175, + "1836": 9.18, + "1837": 9.185, + "1838": 9.19, + "1839": 9.195, + "1840": 9.2, + "1841": 9.205, + "1842": 9.21, + "1843": 9.215, + "1844": 9.22, + "1845": 9.225, + "1846": 9.23, + "1847": 9.235, + "1848": 9.24, + "1849": 9.245, + "1850": 9.25, + "1851": 9.255, + "1852": 9.26, + "1853": 9.265, + "1854": 9.27, + "1855": 9.275, + "1856": 9.28, + "1857": 9.285, + "1858": 9.29, + "1859": 9.295, + "1860": 9.3, + "1861": 9.305, + "1862": 9.31, + "1863": 9.315, + "1864": 9.32, + "1865": 9.325, + "1866": 9.33, + "1867": 9.335, + "1868": 9.34, + "1869": 9.345, + "1870": 9.35, + "1871": 9.355, + "1872": 9.36, + "1873": 9.365, + "1874": 9.37, + "1875": 9.375, + "1876": 9.38, + "1877": 9.385, + "1878": 9.39, + "1879": 9.395, + "1880": 9.4, + "1881": 9.405, + "1882": 9.41, + "1883": 9.415, + "1884": 9.42, + "1885": 9.425, + "1886": 9.43, + "1887": 9.435, + "1888": 9.44, + "1889": 9.445, + "1890": 9.45, + "1891": 9.455, + "1892": 9.46, + "1893": 9.465, + "1894": 9.47, + "1895": 9.475, + "1896": 9.48, + "1897": 9.485, + "1898": 9.49, + "1899": 9.495, + "1900": 9.5, + "1901": 9.505, + "1902": 9.51, + "1903": 9.515, + "1904": 9.52, + "1905": 9.525, + "1906": 9.53, + "1907": 9.535, + "1908": 9.54, + "1909": 9.545, + "1910": 9.55, + "1911": 9.555, + "1912": 9.56, + "1913": 9.565, + "1914": 9.57, + "1915": 9.575, + "1916": 9.58, + "1917": 9.585, + "1918": 9.59, + "1919": 9.595, + "1920": 9.6, + "1921": 9.605, + "1922": 9.61, + "1923": 9.615, + "1924": 9.62, + "1925": 9.625, + "1926": 9.63, + "1927": 9.635, + "1928": 9.64, + "1929": 9.645, + "1930": 9.65, + "1931": 9.655, + "1932": 9.66, + "1933": 9.665, + "1934": 9.67, + "1935": 9.675, + "1936": 9.68, + "1937": 9.685, + "1938": 9.69, + "1939": 9.695, + "1940": 9.7, + "1941": 9.705, + "1942": 9.71, + "1943": 9.715, + "1944": 9.72, + "1945": 9.725, + "1946": 9.73, + "1947": 9.735, + "1948": 9.74, + "1949": 9.745, + "1950": 9.75, + "1951": 9.755, + "1952": 9.76, + "1953": 9.765, + "1954": 9.77, + "1955": 9.775, + "1956": 9.78, + "1957": 9.785, + "1958": 9.79, + "1959": 9.795, + "1960": 9.8, + "1961": 9.805, + "1962": 9.81, + "1963": 9.815, + "1964": 9.82, + "1965": 9.825, + "1966": 9.83, + "1967": 9.835, + "1968": 9.84, + "1969": 9.845, + "1970": 9.85, + "1971": 9.855, + "1972": 9.86, + "1973": 9.865, + "1974": 9.87, + "1975": 9.875, + "1976": 9.88, + "1977": 9.885, + "1978": 9.89, + "1979": 9.895, + "1980": 9.9, + "1981": 9.905, + "1982": 9.91, + "1983": 9.915, + "1984": 9.92, + "1985": 9.925, + "1986": 9.93, + "1987": 9.935, + "1988": 9.94, + "1989": 9.945, + "1990": 9.95, + "1991": 9.955, + "1992": 9.96, + "1993": 9.965, + "1994": 9.97, + "1995": 9.975, + "1996": 9.98, + "1997": 9.985, + "1998": 9.99, + "1999": 9.995, + "2000": 10.0 + }, + "flow_in": { + "0": 2.200000001, + "1": 2.2784881489, + "2": 2.3569762991, + "3": 2.4351546912, + "4": 2.513333084, + "5": 2.5908931852, + "6": 2.6684532865, + "7": 2.7450890022, + "8": 2.8217247179, + "9": 2.8971336019, + "10": 2.9725424859, + "11": 3.0464269338, + "12": 3.1203113817, + "13": 3.1923798053, + "14": 3.2644482289, + "15": 3.3344162071, + "16": 3.4043841853, + "17": 3.4719755864, + "18": 3.5395669874, + "19": 3.6045150591, + "20": 3.6694631307, + "21": 3.7315115526, + "22": 3.7935599744, + "23": 3.8524638696, + "24": 3.9113677648, + "25": 3.9668946667, + "26": 4.0224215686, + "27": 4.0743523377, + "28": 4.1262831069, + "29": 4.1744127964, + "30": 4.2225424859, + "31": 4.2666811498, + "32": 4.3108198138, + "33": 4.3507932569, + "34": 4.3907667001, + "35": 4.4264171656, + "36": 4.4620676312, + "37": 4.4932544229, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2, + "201": 2.2784881494, + "202": 2.3569762988, + "203": 2.4351546914, + "204": 2.5133330839, + "205": 2.5908931852, + "206": 2.6684532865, + "207": 2.7450890022, + "208": 2.8217247179, + "209": 2.8971336019, + "210": 2.9725424859, + "211": 3.0464269338, + "212": 3.1203113817, + "213": 3.1923798053, + "214": 3.2644482289, + "215": 3.3344162071, + "216": 3.4043841853, + "217": 3.4719755864, + "218": 3.5395669874, + "219": 3.6045150591, + "220": 3.6694631307, + "221": 3.7315115526, + "222": 3.7935599744, + "223": 3.8524638696, + "224": 3.9113677648, + "225": 3.9668946667, + "226": 4.0224215686, + "227": 4.0743523377, + "228": 4.1262831069, + "229": 4.1744127964, + "230": 4.2225424859, + "231": 4.2666811498, + "232": 4.3108198138, + "233": 4.3507932569, + "234": 4.3907667001, + "235": 4.4264171656, + "236": 4.4620676312, + "237": 4.4932544229, + "238": 4.5244412147, + "239": 4.5510412527, + "240": 4.5776412907, + "241": 4.5995495968, + "242": 4.6214579028, + "243": 4.6385880148, + "244": 4.6557181268, + "245": 4.6680024401, + "246": 4.6802867533, + "247": 4.6876767872, + "248": 4.6950668211, + "249": 4.6975334105, + "250": 4.7, + "251": 4.6975334105, + "252": 4.6950668211, + "253": 4.6876767872, + "254": 4.6802867533, + "255": 4.6680024401, + "256": 4.6557181268, + "257": 4.6385880148, + "258": 4.6214579028, + "259": 4.5995495968, + "260": 4.5776412907, + "261": 4.5510412527, + "262": 4.5244412147, + "263": 4.4932544229, + "264": 4.4620676312, + "265": 4.4264171656, + "266": 4.3907667001, + "267": 4.3507932569, + "268": 4.3108198138, + "269": 4.2666811498, + "270": 4.2225424859, + "271": 4.1744127964, + "272": 4.1262831069, + "273": 4.0743523377, + "274": 4.0224215686, + "275": 3.9668946667, + "276": 3.9113677648, + "277": 3.8524638696, + "278": 3.7935599744, + "279": 3.7315115526, + "280": 3.6694631307, + "281": 3.6045150591, + "282": 3.5395669874, + "283": 3.4719755864, + "284": 3.4043841853, + "285": 3.3344162071, + "286": 3.2644482289, + "287": 3.1923798053, + "288": 3.1203113817, + "289": 3.0464269338, + "290": 2.9725424859, + "291": 2.8971336019, + "292": 2.8217247179, + "293": 2.7450890022, + "294": 2.6684532865, + "295": 2.5908931852, + "296": 2.5133330839, + "297": 2.4351546914, + "298": 2.3569762988, + "299": 2.2784881494, + "300": 2.2, + "301": 2.1215118506, + "302": 2.0430237012, + "303": 1.9648453086, + "304": 1.8866669161, + "305": 1.8091068148, + "306": 1.7315467135, + "307": 1.6549109978, + "308": 1.5782752821, + "309": 1.5028663981, + "310": 1.4274575141, + "311": 1.3535730662, + "312": 1.2796886183, + "313": 1.2076201947, + "314": 1.1355517711, + "315": 1.0655837929, + "316": 0.9956158147, + "317": 0.9280244136, + "318": 0.8604330126, + "319": 0.7954849409, + "320": 0.7305368693, + "321": 0.6684884474, + "322": 0.6064400256, + "323": 0.5475361304, + "324": 0.4886322352, + "325": 0.4331053333, + "326": 0.3775784314, + "327": 0.3256476623, + "328": 0.2737168931, + "329": 0.2255872036, + "330": 0.1774575141, + "331": 0.1333188502, + "332": 0.0891801862, + "333": 0.0492067431, + "334": 0.0092332999, + "335": -0.0264171656, + "336": -0.0620676312, + "337": -0.0932544229, + "338": -0.1244412147, + "339": -0.1510412527, + "340": -0.1776412907, + "341": -0.1995495968, + "342": -0.2214579028, + "343": -0.2385880148, + "344": -0.2557181268, + "345": -0.2680024401, + "346": -0.2802867533, + "347": -0.2876767872, + "348": -0.2950668211, + "349": -0.2975334105, + "350": -0.3, + "351": -0.2975334105, + "352": -0.2950668211, + "353": -0.2876767872, + "354": -0.2802867533, + "355": -0.2680024401, + "356": -0.2557181268, + "357": -0.2385880148, + "358": -0.2214579028, + "359": -0.1995495968, + "360": -0.1776412907, + "361": -0.1510412527, + "362": -0.1244412147, + "363": -0.0932544229, + "364": -0.0620676312, + "365": -0.0264171656, + "366": 0.0092332999, + "367": 0.0492067431, + "368": 0.0891801862, + "369": 0.1333188502, + "370": 0.1774575141, + "371": 0.2255872036, + "372": 0.2737168931, + "373": 0.3256476623, + "374": 0.3775784314, + "375": 0.4331053333, + "376": 0.4886322352, + "377": 0.5475361304, + "378": 0.6064400256, + "379": 0.6684884474, + "380": 0.7305368693, + "381": 0.7954849409, + "382": 0.8604330126, + "383": 0.9280244136, + "384": 0.9956158147, + "385": 1.0655837929, + "386": 1.1355517711, + "387": 1.2076201947, + "388": 1.2796886183, + "389": 1.3535730662, + "390": 1.4274575141, + "391": 1.5028663981, + "392": 1.5782752821, + "393": 1.6549109978, + "394": 1.7315467135, + "395": 1.8091068148, + "396": 1.8866669161, + "397": 1.9648453086, + "398": 2.0430237012, + "399": 2.1215118506, + "400": 2.2, + "401": 2.2784881494, + "402": 2.3569762988, + "403": 2.4351546914, + "404": 2.5133330839, + "405": 2.5908931852, + "406": 2.6684532865, + "407": 2.7450890022, + "408": 2.8217247179, + "409": 2.8971336019, + "410": 2.9725424859, + "411": 3.0464269338, + "412": 3.1203113817, + "413": 3.1923798053, + "414": 3.2644482289, + "415": 3.3344162071, + "416": 3.4043841853, + "417": 3.4719755864, + "418": 3.5395669874, + "419": 3.6045150591, + "420": 3.6694631307, + "421": 3.7315115526, + "422": 3.7935599744, + "423": 3.8524638696, + "424": 3.9113677648, + "425": 3.9668946667, + "426": 4.0224215686, + "427": 4.0743523377, + "428": 4.1262831069, + "429": 4.1744127964, + "430": 4.2225424859, + "431": 4.2666811498, + "432": 4.3108198138, + "433": 4.3507932569, + "434": 4.3907667001, + "435": 4.4264171656, + "436": 4.4620676312, + "437": 4.4932544229, + "438": 4.5244412147, + "439": 4.5510412527, + "440": 4.5776412907, + "441": 4.5995495968, + "442": 4.6214579028, + "443": 4.6385880148, + "444": 4.6557181268, + "445": 4.6680024401, + "446": 4.6802867533, + "447": 4.6876767872, + "448": 4.6950668211, + "449": 4.6975334105, + "450": 4.7, + "451": 4.6975334105, + "452": 4.6950668211, + "453": 4.6876767872, + "454": 4.6802867533, + "455": 4.6680024401, + "456": 4.6557181268, + "457": 4.6385880148, + "458": 4.6214579028, + "459": 4.5995495968, + "460": 4.5776412907, + "461": 4.5510412527, + "462": 4.5244412147, + "463": 4.4932544229, + "464": 4.4620676312, + "465": 4.4264171656, + "466": 4.3907667001, + "467": 4.3507932569, + "468": 4.3108198138, + "469": 4.2666811498, + "470": 4.2225424859, + "471": 4.1744127964, + "472": 4.1262831069, + "473": 4.0743523377, + "474": 4.0224215686, + "475": 3.9668946667, + "476": 3.9113677648, + "477": 3.8524638696, + "478": 3.7935599744, + "479": 3.7315115526, + "480": 3.6694631307, + "481": 3.6045150591, + "482": 3.5395669874, + "483": 3.4719755864, + "484": 3.4043841853, + "485": 3.3344162071, + "486": 3.2644482289, + "487": 3.1923798053, + "488": 3.1203113817, + "489": 3.0464269338, + "490": 2.9725424859, + "491": 2.8971336019, + "492": 2.8217247179, + "493": 2.7450890022, + "494": 2.6684532865, + "495": 2.5908931852, + "496": 2.5133330839, + "497": 2.4351546914, + "498": 2.3569762988, + "499": 2.2784881494, + "500": 2.2, + "501": 2.1215118506, + "502": 2.0430237012, + "503": 1.9648453086, + "504": 1.8866669161, + "505": 1.8091068148, + "506": 1.7315467135, + "507": 1.6549109978, + "508": 1.5782752821, + "509": 1.5028663981, + "510": 1.4274575141, + "511": 1.3535730662, + "512": 1.2796886183, + "513": 1.2076201947, + "514": 1.1355517711, + "515": 1.0655837929, + "516": 0.9956158147, + "517": 0.9280244136, + "518": 0.8604330126, + "519": 0.7954849409, + "520": 0.7305368693, + "521": 0.6684884474, + "522": 0.6064400256, + "523": 0.5475361304, + "524": 0.4886322352, + "525": 0.4331053333, + "526": 0.3775784314, + "527": 0.3256476623, + "528": 0.2737168931, + "529": 0.2255872036, + "530": 0.1774575141, + "531": 0.1333188502, + "532": 0.0891801862, + "533": 0.0492067431, + "534": 0.0092332999, + "535": -0.0264171656, + "536": -0.0620676312, + "537": -0.0932544229, + "538": -0.1244412147, + "539": -0.1510412527, + "540": -0.1776412907, + "541": -0.1995495968, + "542": -0.2214579028, + "543": -0.2385880148, + "544": -0.2557181268, + "545": -0.2680024401, + "546": -0.2802867533, + "547": -0.2876767872, + "548": -0.2950668211, + "549": -0.2975334105, + "550": -0.3, + "551": -0.2975334105, + "552": -0.2950668211, + "553": -0.2876767872, + "554": -0.2802867533, + "555": -0.2680024401, + "556": -0.2557181268, + "557": -0.2385880148, + "558": -0.2214579028, + "559": -0.1995495968, + "560": -0.1776412907, + "561": -0.1510412527, + "562": -0.1244412147, + "563": -0.0932544229, + "564": -0.0620676312, + "565": -0.0264171656, + "566": 0.0092332999, + "567": 0.0492067431, + "568": 0.0891801862, + "569": 0.1333188502, + "570": 0.1774575141, + "571": 0.2255872036, + "572": 0.2737168931, + "573": 0.3256476623, + "574": 0.3775784314, + "575": 0.4331053333, + "576": 0.4886322352, + "577": 0.5475361304, + "578": 0.6064400256, + "579": 0.6684884474, + "580": 0.7305368693, + "581": 0.7954849409, + "582": 0.8604330126, + "583": 0.9280244136, + "584": 0.9956158147, + "585": 1.0655837929, + "586": 1.1355517711, + "587": 1.2076201947, + "588": 1.2796886183, + "589": 1.3535730662, + "590": 1.4274575141, + "591": 1.5028663981, + "592": 1.5782752821, + "593": 1.6549109978, + "594": 1.7315467135, + "595": 1.8091068148, + "596": 1.8866669161, + "597": 1.9648453086, + "598": 2.0430237012, + "599": 2.1215118506, + "600": 2.2, + "601": 2.2784881494, + "602": 2.3569762988, + "603": 2.4351546914, + "604": 2.5133330839, + "605": 2.5908931852, + "606": 2.6684532865, + "607": 2.7450890022, + "608": 2.8217247179, + "609": 2.8971336019, + "610": 2.9725424859, + "611": 3.0464269338, + "612": 3.1203113817, + "613": 3.1923798053, + "614": 3.2644482289, + "615": 3.3344162071, + "616": 3.4043841853, + "617": 3.4719755864, + "618": 3.5395669874, + "619": 3.6045150591, + "620": 3.6694631307, + "621": 3.7315115526, + "622": 3.7935599744, + "623": 3.8524638696, + "624": 3.9113677648, + "625": 3.9668946667, + "626": 4.0224215686, + "627": 4.0743523377, + "628": 4.1262831069, + "629": 4.1744127964, + "630": 4.2225424859, + "631": 4.2666811498, + "632": 4.3108198138, + "633": 4.3507932569, + "634": 4.3907667001, + "635": 4.4264171656, + "636": 4.4620676312, + "637": 4.4932544229, + "638": 4.5244412147, + "639": 4.5510412527, + "640": 4.5776412907, + "641": 4.5995495968, + "642": 4.6214579028, + "643": 4.6385880148, + "644": 4.6557181268, + "645": 4.6680024401, + "646": 4.6802867533, + "647": 4.6876767872, + "648": 4.6950668211, + "649": 4.6975334105, + "650": 4.7, + "651": 4.6975334105, + "652": 4.6950668211, + "653": 4.6876767872, + "654": 4.6802867533, + "655": 4.6680024401, + "656": 4.6557181268, + "657": 4.6385880148, + "658": 4.6214579028, + "659": 4.5995495968, + "660": 4.5776412907, + "661": 4.5510412527, + "662": 4.5244412147, + "663": 4.4932544229, + "664": 4.4620676312, + "665": 4.4264171656, + "666": 4.3907667001, + "667": 4.3507932569, + "668": 4.3108198138, + "669": 4.2666811498, + "670": 4.2225424859, + "671": 4.1744127964, + "672": 4.1262831069, + "673": 4.0743523377, + "674": 4.0224215686, + "675": 3.9668946667, + "676": 3.9113677648, + "677": 3.8524638696, + "678": 3.7935599744, + "679": 3.7315115526, + "680": 3.6694631307, + "681": 3.6045150591, + "682": 3.5395669874, + "683": 3.4719755864, + "684": 3.4043841853, + "685": 3.3344162071, + "686": 3.2644482289, + "687": 3.1923798053, + "688": 3.1203113817, + "689": 3.0464269338, + "690": 2.9725424859, + "691": 2.8971336019, + "692": 2.8217247179, + "693": 2.7450890022, + "694": 2.6684532865, + "695": 2.5908931852, + "696": 2.5133330839, + "697": 2.4351546914, + "698": 2.3569762988, + "699": 2.2784881494, + "700": 2.2, + "701": 2.1215118506, + "702": 2.0430237012, + "703": 1.9648453086, + "704": 1.8866669161, + "705": 1.8091068148, + "706": 1.7315467135, + "707": 1.6549109978, + "708": 1.5782752821, + "709": 1.5028663981, + "710": 1.4274575141, + "711": 1.3535730662, + "712": 1.2796886183, + "713": 1.2076201947, + "714": 1.1355517711, + "715": 1.0655837929, + "716": 0.9956158147, + "717": 0.9280244136, + "718": 0.8604330126, + "719": 0.7954849409, + "720": 0.7305368693, + "721": 0.6684884474, + "722": 0.6064400256, + "723": 0.5475361304, + "724": 0.4886322352, + "725": 0.4331053333, + "726": 0.3775784314, + "727": 0.3256476623, + "728": 0.2737168931, + "729": 0.2255872036, + "730": 0.1774575141, + "731": 0.1333188502, + "732": 0.0891801862, + "733": 0.0492067431, + "734": 0.0092332999, + "735": -0.0264171656, + "736": -0.0620676312, + "737": -0.0932544229, + "738": -0.1244412147, + "739": -0.1510412527, + "740": -0.1776412907, + "741": -0.1995495968, + "742": -0.2214579028, + "743": -0.2385880148, + "744": -0.2557181268, + "745": -0.2680024401, + "746": -0.2802867533, + "747": -0.2876767872, + "748": -0.2950668211, + "749": -0.2975334105, + "750": -0.3, + "751": -0.2975334105, + "752": -0.2950668211, + "753": -0.2876767872, + "754": -0.2802867533, + "755": -0.2680024401, + "756": -0.2557181268, + "757": -0.2385880148, + "758": -0.2214579028, + "759": -0.1995495968, + "760": -0.1776412907, + "761": -0.1510412527, + "762": -0.1244412147, + "763": -0.0932544229, + "764": -0.0620676312, + "765": -0.0264171656, + "766": 0.0092332999, + "767": 0.0492067431, + "768": 0.0891801862, + "769": 0.1333188502, + "770": 0.1774575141, + "771": 0.2255872036, + "772": 0.2737168931, + "773": 0.3256476623, + "774": 0.3775784314, + "775": 0.4331053333, + "776": 0.4886322352, + "777": 0.5475361304, + "778": 0.6064400256, + "779": 0.6684884474, + "780": 0.7305368693, + "781": 0.7954849409, + "782": 0.8604330126, + "783": 0.9280244136, + "784": 0.9956158147, + "785": 1.0655837929, + "786": 1.1355517711, + "787": 1.2076201947, + "788": 1.2796886183, + "789": 1.3535730662, + "790": 1.4274575141, + "791": 1.5028663981, + "792": 1.5782752821, + "793": 1.6549109978, + "794": 1.7315467135, + "795": 1.8091068148, + "796": 1.8866669161, + "797": 1.9648453086, + "798": 2.0430237012, + "799": 2.1215118506, + "800": 2.2, + "801": 2.2784881494, + "802": 2.3569762988, + "803": 2.4351546914, + "804": 2.5133330839, + "805": 2.5908931852, + "806": 2.6684532865, + "807": 2.7450890022, + "808": 2.8217247179, + "809": 2.8971336019, + "810": 2.9725424859, + "811": 3.0464269338, + "812": 3.1203113817, + "813": 3.1923798053, + "814": 3.2644482289, + "815": 3.3344162071, + "816": 3.4043841853, + "817": 3.4719755864, + "818": 3.5395669874, + "819": 3.6045150591, + "820": 3.6694631307, + "821": 3.7315115526, + "822": 3.7935599744, + "823": 3.8524638696, + "824": 3.9113677648, + "825": 3.9668946667, + "826": 4.0224215686, + "827": 4.0743523377, + "828": 4.1262831069, + "829": 4.1744127964, + "830": 4.2225424859, + "831": 4.2666811498, + "832": 4.3108198138, + "833": 4.3507932569, + "834": 4.3907667001, + "835": 4.4264171656, + "836": 4.4620676312, + "837": 4.4932544229, + "838": 4.5244412147, + "839": 4.5510412527, + "840": 4.5776412907, + "841": 4.5995495968, + "842": 4.6214579028, + "843": 4.6385880148, + "844": 4.6557181268, + "845": 4.6680024401, + "846": 4.6802867533, + "847": 4.6876767872, + "848": 4.6950668211, + "849": 4.6975334105, + "850": 4.7, + "851": 4.6975334105, + "852": 4.6950668211, + "853": 4.6876767872, + "854": 4.6802867533, + "855": 4.6680024401, + "856": 4.6557181268, + "857": 4.6385880148, + "858": 4.6214579028, + "859": 4.5995495968, + "860": 4.5776412907, + "861": 4.5510412527, + "862": 4.5244412147, + "863": 4.4932544229, + "864": 4.4620676312, + "865": 4.4264171656, + "866": 4.3907667001, + "867": 4.3507932569, + "868": 4.3108198138, + "869": 4.2666811498, + "870": 4.2225424859, + "871": 4.1744127964, + "872": 4.1262831069, + "873": 4.0743523377, + "874": 4.0224215686, + "875": 3.9668946667, + "876": 3.9113677648, + "877": 3.8524638696, + "878": 3.7935599744, + "879": 3.7315115526, + "880": 3.6694631307, + "881": 3.6045150591, + "882": 3.5395669874, + "883": 3.4719755864, + "884": 3.4043841853, + "885": 3.3344162071, + "886": 3.2644482289, + "887": 3.1923798053, + "888": 3.1203113817, + "889": 3.0464269338, + "890": 2.9725424859, + "891": 2.8971336019, + "892": 2.8217247179, + "893": 2.7450890022, + "894": 2.6684532865, + "895": 2.5908931852, + "896": 2.5133330839, + "897": 2.4351546914, + "898": 2.3569762988, + "899": 2.2784881494, + "900": 2.2, + "901": 2.1215118506, + "902": 2.0430237012, + "903": 1.9648453086, + "904": 1.8866669161, + "905": 1.8091068148, + "906": 1.7315467135, + "907": 1.6549109978, + "908": 1.5782752821, + "909": 1.5028663981, + "910": 1.4274575141, + "911": 1.3535730662, + "912": 1.2796886183, + "913": 1.2076201947, + "914": 1.1355517711, + "915": 1.0655837929, + "916": 0.9956158147, + "917": 0.9280244136, + "918": 0.8604330126, + "919": 0.7954849409, + "920": 0.7305368693, + "921": 0.6684884474, + "922": 0.6064400256, + "923": 0.5475361304, + "924": 0.4886322352, + "925": 0.4331053333, + "926": 0.3775784314, + "927": 0.3256476623, + "928": 0.2737168931, + "929": 0.2255872036, + "930": 0.1774575141, + "931": 0.1333188502, + "932": 0.0891801862, + "933": 0.0492067431, + "934": 0.0092332999, + "935": -0.0264171656, + "936": -0.0620676312, + "937": -0.0932544229, + "938": -0.1244412147, + "939": -0.1510412527, + "940": -0.1776412907, + "941": -0.1995495968, + "942": -0.2214579028, + "943": -0.2385880148, + "944": -0.2557181268, + "945": -0.2680024401, + "946": -0.2802867533, + "947": -0.2876767872, + "948": -0.2950668211, + "949": -0.2975334105, + "950": -0.3, + "951": -0.2975334105, + "952": -0.2950668211, + "953": -0.2876767872, + "954": -0.2802867533, + "955": -0.2680024401, + "956": -0.2557181268, + "957": -0.2385880148, + "958": -0.2214579028, + "959": -0.1995495968, + "960": -0.1776412907, + "961": -0.1510412527, + "962": -0.1244412147, + "963": -0.0932544229, + "964": -0.0620676312, + "965": -0.0264171656, + "966": 0.0092332999, + "967": 0.0492067431, + "968": 0.0891801862, + "969": 0.1333188502, + "970": 0.1774575141, + "971": 0.2255872036, + "972": 0.2737168931, + "973": 0.3256476623, + "974": 0.3775784314, + "975": 0.4331053333, + "976": 0.4886322352, + "977": 0.5475361304, + "978": 0.6064400256, + "979": 0.6684884474, + "980": 0.7305368693, + "981": 0.7954849409, + "982": 0.8604330126, + "983": 0.9280244136, + "984": 0.9956158147, + "985": 1.0655837929, + "986": 1.1355517711, + "987": 1.2076201947, + "988": 1.2796886183, + "989": 1.3535730662, + "990": 1.4274575141, + "991": 1.5028663981, + "992": 1.5782752821, + "993": 1.6549109978, + "994": 1.7315467135, + "995": 1.8091068148, + "996": 1.8866669161, + "997": 1.9648453086, + "998": 2.0430237012, + "999": 2.1215118506, + "1000": 2.2, + "1001": 2.2784881494, + "1002": 2.3569762988, + "1003": 2.4351546914, + "1004": 2.5133330839, + "1005": 2.5908931852, + "1006": 2.6684532865, + "1007": 2.7450890022, + "1008": 2.8217247179, + "1009": 2.8971336019, + "1010": 2.9725424859, + "1011": 3.0464269338, + "1012": 3.1203113817, + "1013": 3.1923798053, + "1014": 3.2644482289, + "1015": 3.3344162071, + "1016": 3.4043841853, + "1017": 3.4719755864, + "1018": 3.5395669874, + "1019": 3.6045150591, + "1020": 3.6694631307, + "1021": 3.7315115526, + "1022": 3.7935599744, + "1023": 3.8524638696, + "1024": 3.9113677648, + "1025": 3.9668946667, + "1026": 4.0224215686, + "1027": 4.0743523377, + "1028": 4.1262831069, + "1029": 4.1744127964, + "1030": 4.2225424859, + "1031": 4.2666811498, + "1032": 4.3108198138, + "1033": 4.3507932569, + "1034": 4.3907667001, + "1035": 4.4264171656, + "1036": 4.4620676312, + "1037": 4.4932544229, + "1038": 4.5244412147, + "1039": 4.5510412527, + "1040": 4.5776412907, + "1041": 4.5995495968, + "1042": 4.6214579028, + "1043": 4.6385880148, + "1044": 4.6557181268, + "1045": 4.6680024401, + "1046": 4.6802867533, + "1047": 4.6876767872, + "1048": 4.6950668211, + "1049": 4.6975334105, + "1050": 4.7, + "1051": 4.6975334105, + "1052": 4.6950668211, + "1053": 4.6876767872, + "1054": 4.6802867533, + "1055": 4.6680024401, + "1056": 4.6557181268, + "1057": 4.6385880148, + "1058": 4.6214579028, + "1059": 4.5995495968, + "1060": 4.5776412907, + "1061": 4.5510412527, + "1062": 4.5244412147, + "1063": 4.4932544229, + "1064": 4.4620676312, + "1065": 4.4264171656, + "1066": 4.3907667001, + "1067": 4.3507932569, + "1068": 4.3108198138, + "1069": 4.2666811498, + "1070": 4.2225424859, + "1071": 4.1744127964, + "1072": 4.1262831069, + "1073": 4.0743523377, + "1074": 4.0224215686, + "1075": 3.9668946667, + "1076": 3.9113677648, + "1077": 3.8524638696, + "1078": 3.7935599744, + "1079": 3.7315115526, + "1080": 3.6694631307, + "1081": 3.6045150591, + "1082": 3.5395669874, + "1083": 3.4719755864, + "1084": 3.4043841853, + "1085": 3.3344162071, + "1086": 3.2644482289, + "1087": 3.1923798053, + "1088": 3.1203113817, + "1089": 3.0464269338, + "1090": 2.9725424859, + "1091": 2.8971336019, + "1092": 2.8217247179, + "1093": 2.7450890022, + "1094": 2.6684532865, + "1095": 2.5908931852, + "1096": 2.5133330839, + "1097": 2.4351546914, + "1098": 2.3569762988, + "1099": 2.2784881494, + "1100": 2.2, + "1101": 2.1215118506, + "1102": 2.0430237012, + "1103": 1.9648453086, + "1104": 1.8866669161, + "1105": 1.8091068148, + "1106": 1.7315467135, + "1107": 1.6549109978, + "1108": 1.5782752821, + "1109": 1.5028663981, + "1110": 1.4274575141, + "1111": 1.3535730662, + "1112": 1.2796886183, + "1113": 1.2076201947, + "1114": 1.1355517711, + "1115": 1.0655837929, + "1116": 0.9956158147, + "1117": 0.9280244136, + "1118": 0.8604330126, + "1119": 0.7954849409, + "1120": 0.7305368693, + "1121": 0.6684884474, + "1122": 0.6064400256, + "1123": 0.5475361304, + "1124": 0.4886322352, + "1125": 0.4331053333, + "1126": 0.3775784314, + "1127": 0.3256476623, + "1128": 0.2737168931, + "1129": 0.2255872036, + "1130": 0.1774575141, + "1131": 0.1333188502, + "1132": 0.0891801862, + "1133": 0.0492067431, + "1134": 0.0092332999, + "1135": -0.0264171656, + "1136": -0.0620676312, + "1137": -0.0932544229, + "1138": -0.1244412147, + "1139": -0.1510412527, + "1140": -0.1776412907, + "1141": -0.1995495968, + "1142": -0.2214579028, + "1143": -0.2385880148, + "1144": -0.2557181268, + "1145": -0.2680024401, + "1146": -0.2802867533, + "1147": -0.2876767872, + "1148": -0.2950668211, + "1149": -0.2975334105, + "1150": -0.3, + "1151": -0.2975334105, + "1152": -0.2950668211, + "1153": -0.2876767872, + "1154": -0.2802867533, + "1155": -0.2680024401, + "1156": -0.2557181268, + "1157": -0.2385880148, + "1158": -0.2214579028, + "1159": -0.1995495968, + "1160": -0.1776412907, + "1161": -0.1510412527, + "1162": -0.1244412147, + "1163": -0.0932544229, + "1164": -0.0620676312, + "1165": -0.0264171656, + "1166": 0.0092332999, + "1167": 0.0492067431, + "1168": 0.0891801862, + "1169": 0.1333188502, + "1170": 0.1774575141, + "1171": 0.2255872036, + "1172": 0.2737168931, + "1173": 0.3256476623, + "1174": 0.3775784314, + "1175": 0.4331053333, + "1176": 0.4886322352, + "1177": 0.5475361304, + "1178": 0.6064400256, + "1179": 0.6684884474, + "1180": 0.7305368693, + "1181": 0.7954849409, + "1182": 0.8604330126, + "1183": 0.9280244136, + "1184": 0.9956158147, + "1185": 1.0655837929, + "1186": 1.1355517711, + "1187": 1.2076201947, + "1188": 1.2796886183, + "1189": 1.3535730662, + "1190": 1.4274575141, + "1191": 1.5028663981, + "1192": 1.5782752821, + "1193": 1.6549109978, + "1194": 1.7315467135, + "1195": 1.8091068148, + "1196": 1.8866669161, + "1197": 1.9648453086, + "1198": 2.0430237012, + "1199": 2.1215118506, + "1200": 2.2, + "1201": 2.2784881494, + "1202": 2.3569762988, + "1203": 2.4351546914, + "1204": 2.5133330839, + "1205": 2.5908931852, + "1206": 2.6684532865, + "1207": 2.7450890022, + "1208": 2.8217247179, + "1209": 2.8971336019, + "1210": 2.9725424859, + "1211": 3.0464269338, + "1212": 3.1203113817, + "1213": 3.1923798053, + "1214": 3.2644482289, + "1215": 3.3344162071, + "1216": 3.4043841853, + "1217": 3.4719755864, + "1218": 3.5395669874, + "1219": 3.6045150591, + "1220": 3.6694631307, + "1221": 3.7315115526, + "1222": 3.7935599744, + "1223": 3.8524638696, + "1224": 3.9113677648, + "1225": 3.9668946667, + "1226": 4.0224215686, + "1227": 4.0743523377, + "1228": 4.1262831069, + "1229": 4.1744127964, + "1230": 4.2225424859, + "1231": 4.2666811498, + "1232": 4.3108198138, + "1233": 4.3507932569, + "1234": 4.3907667001, + "1235": 4.4264171656, + "1236": 4.4620676312, + "1237": 4.4932544229, + "1238": 4.5244412147, + "1239": 4.5510412527, + "1240": 4.5776412907, + "1241": 4.5995495968, + "1242": 4.6214579028, + "1243": 4.6385880148, + "1244": 4.6557181268, + "1245": 4.6680024401, + "1246": 4.6802867533, + "1247": 4.6876767872, + "1248": 4.6950668211, + "1249": 4.6975334105, + "1250": 4.7, + "1251": 4.6975334105, + "1252": 4.6950668211, + "1253": 4.6876767872, + "1254": 4.6802867533, + "1255": 4.6680024401, + "1256": 4.6557181268, + "1257": 4.6385880148, + "1258": 4.6214579028, + "1259": 4.5995495968, + "1260": 4.5776412907, + "1261": 4.5510412527, + "1262": 4.5244412147, + "1263": 4.4932544229, + "1264": 4.4620676312, + "1265": 4.4264171656, + "1266": 4.3907667001, + "1267": 4.3507932569, + "1268": 4.3108198138, + "1269": 4.2666811498, + "1270": 4.2225424859, + "1271": 4.1744127964, + "1272": 4.1262831069, + "1273": 4.0743523377, + "1274": 4.0224215686, + "1275": 3.9668946667, + "1276": 3.9113677648, + "1277": 3.8524638696, + "1278": 3.7935599744, + "1279": 3.7315115526, + "1280": 3.6694631307, + "1281": 3.6045150591, + "1282": 3.5395669874, + "1283": 3.4719755864, + "1284": 3.4043841853, + "1285": 3.3344162071, + "1286": 3.2644482289, + "1287": 3.1923798053, + "1288": 3.1203113817, + "1289": 3.0464269338, + "1290": 2.9725424859, + "1291": 2.8971336019, + "1292": 2.8217247179, + "1293": 2.7450890022, + "1294": 2.6684532865, + "1295": 2.5908931852, + "1296": 2.5133330839, + "1297": 2.4351546914, + "1298": 2.3569762988, + "1299": 2.2784881494, + "1300": 2.2, + "1301": 2.1215118506, + "1302": 2.0430237012, + "1303": 1.9648453086, + "1304": 1.8866669161, + "1305": 1.8091068148, + "1306": 1.7315467135, + "1307": 1.6549109978, + "1308": 1.5782752821, + "1309": 1.5028663981, + "1310": 1.4274575141, + "1311": 1.3535730662, + "1312": 1.2796886183, + "1313": 1.2076201947, + "1314": 1.1355517711, + "1315": 1.0655837929, + "1316": 0.9956158147, + "1317": 0.9280244136, + "1318": 0.8604330126, + "1319": 0.7954849409, + "1320": 0.7305368693, + "1321": 0.6684884474, + "1322": 0.6064400256, + "1323": 0.5475361304, + "1324": 0.4886322352, + "1325": 0.4331053333, + "1326": 0.3775784314, + "1327": 0.3256476623, + "1328": 0.2737168931, + "1329": 0.2255872036, + "1330": 0.1774575141, + "1331": 0.1333188502, + "1332": 0.0891801862, + "1333": 0.0492067431, + "1334": 0.0092332999, + "1335": -0.0264171656, + "1336": -0.0620676312, + "1337": -0.0932544229, + "1338": -0.1244412147, + "1339": -0.1510412527, + "1340": -0.1776412907, + "1341": -0.1995495968, + "1342": -0.2214579028, + "1343": -0.2385880148, + "1344": -0.2557181268, + "1345": -0.2680024401, + "1346": -0.2802867533, + "1347": -0.2876767872, + "1348": -0.2950668211, + "1349": -0.2975334105, + "1350": -0.3, + "1351": -0.2975334105, + "1352": -0.2950668211, + "1353": -0.2876767872, + "1354": -0.2802867533, + "1355": -0.2680024401, + "1356": -0.2557181268, + "1357": -0.2385880148, + "1358": -0.2214579028, + "1359": -0.1995495968, + "1360": -0.1776412907, + "1361": -0.1510412527, + "1362": -0.1244412147, + "1363": -0.0932544229, + "1364": -0.0620676312, + "1365": -0.0264171656, + "1366": 0.0092332999, + "1367": 0.0492067431, + "1368": 0.0891801862, + "1369": 0.1333188502, + "1370": 0.1774575141, + "1371": 0.2255872036, + "1372": 0.2737168931, + "1373": 0.3256476623, + "1374": 0.3775784314, + "1375": 0.4331053333, + "1376": 0.4886322352, + "1377": 0.5475361304, + "1378": 0.6064400256, + "1379": 0.6684884474, + "1380": 0.7305368693, + "1381": 0.7954849409, + "1382": 0.8604330126, + "1383": 0.9280244136, + "1384": 0.9956158147, + "1385": 1.0655837929, + "1386": 1.1355517711, + "1387": 1.2076201947, + "1388": 1.2796886183, + "1389": 1.3535730662, + "1390": 1.4274575141, + "1391": 1.5028663981, + "1392": 1.5782752821, + "1393": 1.6549109978, + "1394": 1.7315467135, + "1395": 1.8091068148, + "1396": 1.8866669161, + "1397": 1.9648453086, + "1398": 2.0430237012, + "1399": 2.1215118506, + "1400": 2.2, + "1401": 2.2784881494, + "1402": 2.3569762988, + "1403": 2.4351546914, + "1404": 2.5133330839, + "1405": 2.5908931852, + "1406": 2.6684532865, + "1407": 2.7450890022, + "1408": 2.8217247179, + "1409": 2.8971336019, + "1410": 2.9725424859, + "1411": 3.0464269338, + "1412": 3.1203113817, + "1413": 3.1923798053, + "1414": 3.2644482289, + "1415": 3.3344162071, + "1416": 3.4043841853, + "1417": 3.4719755864, + "1418": 3.5395669874, + "1419": 3.6045150591, + "1420": 3.6694631307, + "1421": 3.7315115526, + "1422": 3.7935599744, + "1423": 3.8524638696, + "1424": 3.9113677648, + "1425": 3.9668946667, + "1426": 4.0224215686, + "1427": 4.0743523377, + "1428": 4.1262831069, + "1429": 4.1744127964, + "1430": 4.2225424859, + "1431": 4.2666811498, + "1432": 4.3108198138, + "1433": 4.3507932569, + "1434": 4.3907667001, + "1435": 4.4264171656, + "1436": 4.4620676312, + "1437": 4.4932544229, + "1438": 4.5244412147, + "1439": 4.5510412527, + "1440": 4.5776412907, + "1441": 4.5995495968, + "1442": 4.6214579028, + "1443": 4.6385880148, + "1444": 4.6557181268, + "1445": 4.6680024401, + "1446": 4.6802867533, + "1447": 4.6876767872, + "1448": 4.6950668211, + "1449": 4.6975334105, + "1450": 4.7, + "1451": 4.6975334105, + "1452": 4.6950668211, + "1453": 4.6876767872, + "1454": 4.6802867533, + "1455": 4.6680024401, + "1456": 4.6557181268, + "1457": 4.6385880148, + "1458": 4.6214579028, + "1459": 4.5995495968, + "1460": 4.5776412907, + "1461": 4.5510412527, + "1462": 4.5244412147, + "1463": 4.4932544229, + "1464": 4.4620676312, + "1465": 4.4264171656, + "1466": 4.3907667001, + "1467": 4.3507932569, + "1468": 4.3108198138, + "1469": 4.2666811498, + "1470": 4.2225424859, + "1471": 4.1744127964, + "1472": 4.1262831069, + "1473": 4.0743523377, + "1474": 4.0224215686, + "1475": 3.9668946667, + "1476": 3.9113677648, + "1477": 3.8524638696, + "1478": 3.7935599744, + "1479": 3.7315115526, + "1480": 3.6694631307, + "1481": 3.6045150591, + "1482": 3.5395669874, + "1483": 3.4719755864, + "1484": 3.4043841853, + "1485": 3.3344162071, + "1486": 3.2644482289, + "1487": 3.1923798053, + "1488": 3.1203113817, + "1489": 3.0464269338, + "1490": 2.9725424859, + "1491": 2.8971336019, + "1492": 2.8217247179, + "1493": 2.7450890022, + "1494": 2.6684532865, + "1495": 2.5908931852, + "1496": 2.5133330839, + "1497": 2.4351546914, + "1498": 2.3569762988, + "1499": 2.2784881494, + "1500": 2.2, + "1501": 2.1215118506, + "1502": 2.0430237012, + "1503": 1.9648453086, + "1504": 1.8866669161, + "1505": 1.8091068148, + "1506": 1.7315467135, + "1507": 1.6549109978, + "1508": 1.5782752821, + "1509": 1.5028663981, + "1510": 1.4274575141, + "1511": 1.3535730662, + "1512": 1.2796886183, + "1513": 1.2076201947, + "1514": 1.1355517711, + "1515": 1.0655837929, + "1516": 0.9956158147, + "1517": 0.9280244136, + "1518": 0.8604330126, + "1519": 0.7954849409, + "1520": 0.7305368693, + "1521": 0.6684884474, + "1522": 0.6064400256, + "1523": 0.5475361304, + "1524": 0.4886322352, + "1525": 0.4331053333, + "1526": 0.3775784314, + "1527": 0.3256476623, + "1528": 0.2737168931, + "1529": 0.2255872036, + "1530": 0.1774575141, + "1531": 0.1333188502, + "1532": 0.0891801862, + "1533": 0.0492067431, + "1534": 0.0092332999, + "1535": -0.0264171656, + "1536": -0.0620676312, + "1537": -0.0932544229, + "1538": -0.1244412147, + "1539": -0.1510412527, + "1540": -0.1776412907, + "1541": -0.1995495968, + "1542": -0.2214579028, + "1543": -0.2385880148, + "1544": -0.2557181268, + "1545": -0.2680024401, + "1546": -0.2802867533, + "1547": -0.2876767872, + "1548": -0.2950668211, + "1549": -0.2975334105, + "1550": -0.3, + "1551": -0.2975334105, + "1552": -0.2950668211, + "1553": -0.2876767872, + "1554": -0.2802867533, + "1555": -0.2680024401, + "1556": -0.2557181268, + "1557": -0.2385880148, + "1558": -0.2214579028, + "1559": -0.1995495968, + "1560": -0.1776412907, + "1561": -0.1510412527, + "1562": -0.1244412147, + "1563": -0.0932544229, + "1564": -0.0620676312, + "1565": -0.0264171656, + "1566": 0.0092332999, + "1567": 0.0492067431, + "1568": 0.0891801862, + "1569": 0.1333188502, + "1570": 0.1774575141, + "1571": 0.2255872036, + "1572": 0.2737168931, + "1573": 0.3256476623, + "1574": 0.3775784314, + "1575": 0.4331053333, + "1576": 0.4886322352, + "1577": 0.5475361304, + "1578": 0.6064400256, + "1579": 0.6684884474, + "1580": 0.7305368693, + "1581": 0.7954849409, + "1582": 0.8604330126, + "1583": 0.9280244136, + "1584": 0.9956158147, + "1585": 1.0655837929, + "1586": 1.1355517711, + "1587": 1.2076201947, + "1588": 1.2796886183, + "1589": 1.3535730662, + "1590": 1.4274575141, + "1591": 1.5028663981, + "1592": 1.5782752821, + "1593": 1.6549109978, + "1594": 1.7315467135, + "1595": 1.8091068148, + "1596": 1.8866669161, + "1597": 1.9648453086, + "1598": 2.0430237012, + "1599": 2.1215118506, + "1600": 2.2, + "1601": 2.2784881494, + "1602": 2.3569762988, + "1603": 2.4351546914, + "1604": 2.5133330839, + "1605": 2.5908931852, + "1606": 2.6684532865, + "1607": 2.7450890022, + "1608": 2.8217247179, + "1609": 2.8971336019, + "1610": 2.9725424859, + "1611": 3.0464269338, + "1612": 3.1203113817, + "1613": 3.1923798053, + "1614": 3.2644482289, + "1615": 3.3344162071, + "1616": 3.4043841853, + "1617": 3.4719755864, + "1618": 3.5395669874, + "1619": 3.6045150591, + "1620": 3.6694631307, + "1621": 3.7315115526, + "1622": 3.7935599744, + "1623": 3.8524638696, + "1624": 3.9113677648, + "1625": 3.9668946667, + "1626": 4.0224215686, + "1627": 4.0743523377, + "1628": 4.1262831069, + "1629": 4.1744127964, + "1630": 4.2225424859, + "1631": 4.2666811498, + "1632": 4.3108198138, + "1633": 4.3507932569, + "1634": 4.3907667001, + "1635": 4.4264171656, + "1636": 4.4620676312, + "1637": 4.4932544229, + "1638": 4.5244412147, + "1639": 4.5510412527, + "1640": 4.5776412907, + "1641": 4.5995495968, + "1642": 4.6214579028, + "1643": 4.6385880148, + "1644": 4.6557181268, + "1645": 4.6680024401, + "1646": 4.6802867533, + "1647": 4.6876767872, + "1648": 4.6950668211, + "1649": 4.6975334105, + "1650": 4.7, + "1651": 4.6975334105, + "1652": 4.6950668211, + "1653": 4.6876767872, + "1654": 4.6802867533, + "1655": 4.6680024401, + "1656": 4.6557181268, + "1657": 4.6385880148, + "1658": 4.6214579028, + "1659": 4.5995495968, + "1660": 4.5776412907, + "1661": 4.5510412527, + "1662": 4.5244412147, + "1663": 4.4932544229, + "1664": 4.4620676312, + "1665": 4.4264171656, + "1666": 4.3907667001, + "1667": 4.3507932569, + "1668": 4.3108198138, + "1669": 4.2666811498, + "1670": 4.2225424859, + "1671": 4.1744127964, + "1672": 4.1262831069, + "1673": 4.0743523377, + "1674": 4.0224215686, + "1675": 3.9668946667, + "1676": 3.9113677648, + "1677": 3.8524638696, + "1678": 3.7935599744, + "1679": 3.7315115526, + "1680": 3.6694631307, + "1681": 3.6045150591, + "1682": 3.5395669874, + "1683": 3.4719755864, + "1684": 3.4043841853, + "1685": 3.3344162071, + "1686": 3.2644482289, + "1687": 3.1923798053, + "1688": 3.1203113817, + "1689": 3.0464269338, + "1690": 2.9725424859, + "1691": 2.8971336019, + "1692": 2.8217247179, + "1693": 2.7450890022, + "1694": 2.6684532865, + "1695": 2.5908931852, + "1696": 2.5133330839, + "1697": 2.4351546914, + "1698": 2.3569762988, + "1699": 2.2784881494, + "1700": 2.2, + "1701": 2.1215118506, + "1702": 2.0430237012, + "1703": 1.9648453086, + "1704": 1.8866669161, + "1705": 1.8091068148, + "1706": 1.7315467135, + "1707": 1.6549109978, + "1708": 1.5782752821, + "1709": 1.5028663981, + "1710": 1.4274575141, + "1711": 1.3535730662, + "1712": 1.2796886183, + "1713": 1.2076201947, + "1714": 1.1355517711, + "1715": 1.0655837929, + "1716": 0.9956158147, + "1717": 0.9280244136, + "1718": 0.8604330126, + "1719": 0.7954849409, + "1720": 0.7305368693, + "1721": 0.6684884474, + "1722": 0.6064400256, + "1723": 0.5475361304, + "1724": 0.4886322352, + "1725": 0.4331053333, + "1726": 0.3775784314, + "1727": 0.3256476623, + "1728": 0.2737168931, + "1729": 0.2255872036, + "1730": 0.1774575141, + "1731": 0.1333188502, + "1732": 0.0891801862, + "1733": 0.0492067431, + "1734": 0.0092332999, + "1735": -0.0264171656, + "1736": -0.0620676312, + "1737": -0.0932544229, + "1738": -0.1244412147, + "1739": -0.1510412527, + "1740": -0.1776412907, + "1741": -0.1995495968, + "1742": -0.2214579028, + "1743": -0.2385880148, + "1744": -0.2557181268, + "1745": -0.2680024401, + "1746": -0.2802867533, + "1747": -0.2876767872, + "1748": -0.2950668211, + "1749": -0.2975334105, + "1750": -0.3, + "1751": -0.2975334105, + "1752": -0.2950668211, + "1753": -0.2876767872, + "1754": -0.2802867533, + "1755": -0.2680024401, + "1756": -0.2557181268, + "1757": -0.2385880148, + "1758": -0.2214579028, + "1759": -0.1995495968, + "1760": -0.1776412907, + "1761": -0.1510412527, + "1762": -0.1244412147, + "1763": -0.0932544229, + "1764": -0.0620676312, + "1765": -0.0264171656, + "1766": 0.0092332999, + "1767": 0.0492067431, + "1768": 0.0891801862, + "1769": 0.1333188502, + "1770": 0.1774575141, + "1771": 0.2255872036, + "1772": 0.2737168931, + "1773": 0.3256476623, + "1774": 0.3775784314, + "1775": 0.4331053333, + "1776": 0.4886322352, + "1777": 0.5475361304, + "1778": 0.6064400256, + "1779": 0.6684884474, + "1780": 0.7305368693, + "1781": 0.7954849409, + "1782": 0.8604330126, + "1783": 0.9280244136, + "1784": 0.9956158147, + "1785": 1.0655837929, + "1786": 1.1355517711, + "1787": 1.2076201947, + "1788": 1.2796886183, + "1789": 1.3535730662, + "1790": 1.4274575141, + "1791": 1.5028663981, + "1792": 1.5782752821, + "1793": 1.6549109978, + "1794": 1.7315467135, + "1795": 1.8091068148, + "1796": 1.8866669161, + "1797": 1.9648453086, + "1798": 2.0430237012, + "1799": 2.1215118506, + "1800": 2.2, + "1801": 2.2784881494, + "1802": 2.3569762988, + "1803": 2.4351546914, + "1804": 2.5133330839, + "1805": 2.5908931852, + "1806": 2.6684532865, + "1807": 2.7450890022, + "1808": 2.8217247179, + "1809": 2.8971336019, + "1810": 2.9725424859, + "1811": 3.0464269338, + "1812": 3.1203113817, + "1813": 3.1923798053, + "1814": 3.2644482289, + "1815": 3.3344162071, + "1816": 3.4043841853, + "1817": 3.4719755864, + "1818": 3.5395669874, + "1819": 3.6045150591, + "1820": 3.6694631307, + "1821": 3.7315115526, + "1822": 3.7935599744, + "1823": 3.8524638696, + "1824": 3.9113677648, + "1825": 3.9668946667, + "1826": 4.0224215686, + "1827": 4.0743523377, + "1828": 4.1262831069, + "1829": 4.1744127964, + "1830": 4.2225424859, + "1831": 4.2666811498, + "1832": 4.3108198138, + "1833": 4.3507932569, + "1834": 4.3907667001, + "1835": 4.4264171656, + "1836": 4.4620676312, + "1837": 4.4932544229, + "1838": 4.5244412147, + "1839": 4.5510412527, + "1840": 4.5776412907, + "1841": 4.5995495968, + "1842": 4.6214579028, + "1843": 4.6385880148, + "1844": 4.6557181268, + "1845": 4.6680024401, + "1846": 4.6802867533, + "1847": 4.6876767872, + "1848": 4.6950668211, + "1849": 4.6975334105, + "1850": 4.7, + "1851": 4.6975334105, + "1852": 4.6950668211, + "1853": 4.6876767872, + "1854": 4.6802867533, + "1855": 4.6680024401, + "1856": 4.6557181268, + "1857": 4.6385880148, + "1858": 4.6214579028, + "1859": 4.5995495968, + "1860": 4.5776412907, + "1861": 4.5510412527, + "1862": 4.5244412147, + "1863": 4.4932544229, + "1864": 4.4620676312, + "1865": 4.4264171656, + "1866": 4.3907667001, + "1867": 4.3507932569, + "1868": 4.3108198138, + "1869": 4.2666811498, + "1870": 4.2225424859, + "1871": 4.1744127964, + "1872": 4.1262831069, + "1873": 4.0743523377, + "1874": 4.0224215686, + "1875": 3.9668946667, + "1876": 3.9113677648, + "1877": 3.8524638696, + "1878": 3.7935599744, + "1879": 3.7315115526, + "1880": 3.6694631307, + "1881": 3.6045150591, + "1882": 3.5395669874, + "1883": 3.4719755864, + "1884": 3.4043841853, + "1885": 3.3344162071, + "1886": 3.2644482289, + "1887": 3.1923798053, + "1888": 3.1203113817, + "1889": 3.0464269338, + "1890": 2.9725424859, + "1891": 2.8971336019, + "1892": 2.8217247179, + "1893": 2.7450890022, + "1894": 2.6684532865, + "1895": 2.5908931852, + "1896": 2.5133330839, + "1897": 2.4351546914, + "1898": 2.3569762988, + "1899": 2.2784881494, + "1900": 2.2, + "1901": 2.1215118506, + "1902": 2.0430237012, + "1903": 1.9648453086, + "1904": 1.8866669161, + "1905": 1.8091068148, + "1906": 1.7315467135, + "1907": 1.6549109978, + "1908": 1.5782752821, + "1909": 1.5028663981, + "1910": 1.4274575141, + "1911": 1.3535730662, + "1912": 1.2796886183, + "1913": 1.2076201947, + "1914": 1.1355517711, + "1915": 1.0655837929, + "1916": 0.9956158147, + "1917": 0.9280244136, + "1918": 0.8604330126, + "1919": 0.7954849409, + "1920": 0.7305368693, + "1921": 0.6684884474, + "1922": 0.6064400256, + "1923": 0.5475361304, + "1924": 0.4886322352, + "1925": 0.4331053333, + "1926": 0.3775784314, + "1927": 0.3256476623, + "1928": 0.2737168931, + "1929": 0.2255872036, + "1930": 0.1774575141, + "1931": 0.1333188502, + "1932": 0.0891801862, + "1933": 0.0492067431, + "1934": 0.0092332999, + "1935": -0.0264171656, + "1936": -0.0620676312, + "1937": -0.0932544229, + "1938": -0.1244412147, + "1939": -0.1510412527, + "1940": -0.1776412907, + "1941": -0.1995495968, + "1942": -0.2214579028, + "1943": -0.2385880148, + "1944": -0.2557181268, + "1945": -0.2680024401, + "1946": -0.2802867533, + "1947": -0.2876767872, + "1948": -0.2950668211, + "1949": -0.2975334105, + "1950": -0.3, + "1951": -0.2975334105, + "1952": -0.2950668211, + "1953": -0.2876767872, + "1954": -0.2802867533, + "1955": -0.2680024401, + "1956": -0.2557181268, + "1957": -0.2385880148, + "1958": -0.2214579028, + "1959": -0.1995495968, + "1960": -0.1776412907, + "1961": -0.1510412527, + "1962": -0.1244412147, + "1963": -0.0932544229, + "1964": -0.0620676312, + "1965": -0.0264171656, + "1966": 0.0092332999, + "1967": 0.0492067431, + "1968": 0.0891801862, + "1969": 0.1333188502, + "1970": 0.1774575141, + "1971": 0.2255872036, + "1972": 0.2737168931, + "1973": 0.3256476623, + "1974": 0.3775784314, + "1975": 0.4331053333, + "1976": 0.4886322352, + "1977": 0.5475361304, + "1978": 0.6064400256, + "1979": 0.6684884474, + "1980": 0.7305368693, + "1981": 0.7954849409, + "1982": 0.8604330126, + "1983": 0.9280244136, + "1984": 0.9956158147, + "1985": 1.0655837929, + "1986": 1.1355517711, + "1987": 1.2076201947, + "1988": 1.2796886183, + "1989": 1.3535730662, + "1990": 1.4274575141, + "1991": 1.5028663981, + "1992": 1.5782752821, + "1993": 1.6549109978, + "1994": 1.7315467135, + "1995": 1.8091068148, + "1996": 1.8866669161, + "1997": 1.9648453086, + "1998": 2.0430237012, + "1999": 2.1215118506, + "2000": 2.2 + }, + "flow_out": { + "0": 2.200000001, + "1": 2.2784881489, + "2": 2.3569762991, + "3": 2.4351546912, + "4": 2.513333084, + "5": 2.5908931852, + "6": 2.6684532865, + "7": 2.7450890022, + "8": 2.8217247179, + "9": 2.8971336019, + "10": 2.9725424859, + "11": 3.0464269338, + "12": 3.1203113817, + "13": 3.1923798053, + "14": 3.2644482289, + "15": 3.3344162071, + "16": 3.4043841853, + "17": 3.4719755864, + "18": 3.5395669874, + "19": 3.6045150591, + "20": 3.6694631307, + "21": 3.7315115526, + "22": 3.7935599744, + "23": 3.8524638696, + "24": 3.9113677648, + "25": 3.9668946667, + "26": 4.0224215686, + "27": 4.0743523377, + "28": 4.1262831069, + "29": 4.1744127964, + "30": 4.2225424859, + "31": 4.2666811498, + "32": 4.3108198138, + "33": 4.3507932569, + "34": 4.3907667001, + "35": 4.4264171656, + "36": 4.4620676312, + "37": 4.4932544229, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2, + "201": 2.2784881494, + "202": 2.3569762988, + "203": 2.4351546914, + "204": 2.5133330839, + "205": 2.5908931852, + "206": 2.6684532865, + "207": 2.7450890022, + "208": 2.8217247179, + "209": 2.8971336019, + "210": 2.9725424859, + "211": 3.0464269338, + "212": 3.1203113817, + "213": 3.1923798053, + "214": 3.2644482289, + "215": 3.3344162071, + "216": 3.4043841853, + "217": 3.4719755864, + "218": 3.5395669874, + "219": 3.6045150591, + "220": 3.6694631307, + "221": 3.7315115526, + "222": 3.7935599744, + "223": 3.8524638696, + "224": 3.9113677648, + "225": 3.9668946667, + "226": 4.0224215686, + "227": 4.0743523377, + "228": 4.1262831069, + "229": 4.1744127964, + "230": 4.2225424859, + "231": 4.2666811498, + "232": 4.3108198138, + "233": 4.3507932569, + "234": 4.3907667001, + "235": 4.4264171656, + "236": 4.4620676312, + "237": 4.4932544229, + "238": 4.5244412147, + "239": 4.5510412527, + "240": 4.5776412907, + "241": 4.5995495968, + "242": 4.6214579028, + "243": 4.6385880148, + "244": 4.6557181268, + "245": 4.6680024401, + "246": 4.6802867533, + "247": 4.6876767872, + "248": 4.6950668211, + "249": 4.6975334105, + "250": 4.7, + "251": 4.6975334105, + "252": 4.6950668211, + "253": 4.6876767872, + "254": 4.6802867533, + "255": 4.6680024401, + "256": 4.6557181268, + "257": 4.6385880148, + "258": 4.6214579028, + "259": 4.5995495968, + "260": 4.5776412907, + "261": 4.5510412527, + "262": 4.5244412147, + "263": 4.4932544229, + "264": 4.4620676312, + "265": 4.4264171656, + "266": 4.3907667001, + "267": 4.3507932569, + "268": 4.3108198138, + "269": 4.2666811498, + "270": 4.2225424859, + "271": 4.1744127964, + "272": 4.1262831069, + "273": 4.0743523377, + "274": 4.0224215686, + "275": 3.9668946667, + "276": 3.9113677648, + "277": 3.8524638696, + "278": 3.7935599744, + "279": 3.7315115526, + "280": 3.6694631307, + "281": 3.6045150591, + "282": 3.5395669874, + "283": 3.4719755864, + "284": 3.4043841853, + "285": 3.3344162071, + "286": 3.2644482289, + "287": 3.1923798053, + "288": 3.1203113817, + "289": 3.0464269338, + "290": 2.9725424859, + "291": 2.8971336019, + "292": 2.8217247179, + "293": 2.7450890022, + "294": 2.6684532865, + "295": 2.5908931852, + "296": 2.5133330839, + "297": 2.4351546914, + "298": 2.3569762988, + "299": 2.2784881494, + "300": 2.2, + "301": 2.1215118506, + "302": 2.0430237012, + "303": 1.9648453086, + "304": 1.8866669161, + "305": 1.8091068148, + "306": 1.7315467135, + "307": 1.6549109978, + "308": 1.5782752821, + "309": 1.5028663981, + "310": 1.4274575141, + "311": 1.3535730662, + "312": 1.2796886183, + "313": 1.2076201947, + "314": 1.1355517711, + "315": 1.0655837929, + "316": 0.9956158147, + "317": 0.9280244136, + "318": 0.8604330126, + "319": 0.7954849409, + "320": 0.7305368693, + "321": 0.6684884474, + "322": 0.6064400256, + "323": 0.5475361304, + "324": 0.4886322352, + "325": 0.4331053333, + "326": 0.3775784314, + "327": 0.3256476623, + "328": 0.2737168931, + "329": 0.2255872036, + "330": 0.1774575141, + "331": 0.1333188502, + "332": 0.0891801862, + "333": 0.0492067431, + "334": 0.0092332999, + "335": -0.0264171656, + "336": -0.0620676312, + "337": -0.0932544229, + "338": -0.1244412147, + "339": -0.1510412527, + "340": -0.1776412907, + "341": -0.1995495968, + "342": -0.2214579028, + "343": -0.2385880148, + "344": -0.2557181268, + "345": -0.2680024401, + "346": -0.2802867533, + "347": -0.2876767872, + "348": -0.2950668211, + "349": -0.2975334105, + "350": -0.3, + "351": -0.2975334105, + "352": -0.2950668211, + "353": -0.2876767872, + "354": -0.2802867533, + "355": -0.2680024401, + "356": -0.2557181268, + "357": -0.2385880148, + "358": -0.2214579028, + "359": -0.1995495968, + "360": -0.1776412907, + "361": -0.1510412527, + "362": -0.1244412147, + "363": -0.0932544229, + "364": -0.0620676312, + "365": -0.0264171656, + "366": 0.0092332999, + "367": 0.0492067431, + "368": 0.0891801862, + "369": 0.1333188502, + "370": 0.1774575141, + "371": 0.2255872036, + "372": 0.2737168931, + "373": 0.3256476623, + "374": 0.3775784314, + "375": 0.4331053333, + "376": 0.4886322352, + "377": 0.5475361304, + "378": 0.6064400256, + "379": 0.6684884474, + "380": 0.7305368693, + "381": 0.7954849409, + "382": 0.8604330126, + "383": 0.9280244136, + "384": 0.9956158147, + "385": 1.0655837929, + "386": 1.1355517711, + "387": 1.2076201947, + "388": 1.2796886183, + "389": 1.3535730662, + "390": 1.4274575141, + "391": 1.5028663981, + "392": 1.5782752821, + "393": 1.6549109978, + "394": 1.7315467135, + "395": 1.8091068148, + "396": 1.8866669161, + "397": 1.9648453086, + "398": 2.0430237012, + "399": 2.1215118506, + "400": 2.2, + "401": 2.2784881494, + "402": 2.3569762988, + "403": 2.4351546914, + "404": 2.5133330839, + "405": 2.5908931852, + "406": 2.6684532865, + "407": 2.7450890022, + "408": 2.8217247179, + "409": 2.8971336019, + "410": 2.9725424859, + "411": 3.0464269338, + "412": 3.1203113817, + "413": 3.1923798053, + "414": 3.2644482289, + "415": 3.3344162071, + "416": 3.4043841853, + "417": 3.4719755864, + "418": 3.5395669874, + "419": 3.6045150591, + "420": 3.6694631307, + "421": 3.7315115526, + "422": 3.7935599744, + "423": 3.8524638696, + "424": 3.9113677648, + "425": 3.9668946667, + "426": 4.0224215686, + "427": 4.0743523377, + "428": 4.1262831069, + "429": 4.1744127964, + "430": 4.2225424859, + "431": 4.2666811498, + "432": 4.3108198138, + "433": 4.3507932569, + "434": 4.3907667001, + "435": 4.4264171656, + "436": 4.4620676312, + "437": 4.4932544229, + "438": 4.5244412147, + "439": 4.5510412527, + "440": 4.5776412907, + "441": 4.5995495968, + "442": 4.6214579028, + "443": 4.6385880148, + "444": 4.6557181268, + "445": 4.6680024401, + "446": 4.6802867533, + "447": 4.6876767872, + "448": 4.6950668211, + "449": 4.6975334105, + "450": 4.7, + "451": 4.6975334105, + "452": 4.6950668211, + "453": 4.6876767872, + "454": 4.6802867533, + "455": 4.6680024401, + "456": 4.6557181268, + "457": 4.6385880148, + "458": 4.6214579028, + "459": 4.5995495968, + "460": 4.5776412907, + "461": 4.5510412527, + "462": 4.5244412147, + "463": 4.4932544229, + "464": 4.4620676312, + "465": 4.4264171656, + "466": 4.3907667001, + "467": 4.3507932569, + "468": 4.3108198138, + "469": 4.2666811498, + "470": 4.2225424859, + "471": 4.1744127964, + "472": 4.1262831069, + "473": 4.0743523377, + "474": 4.0224215686, + "475": 3.9668946667, + "476": 3.9113677648, + "477": 3.8524638696, + "478": 3.7935599744, + "479": 3.7315115526, + "480": 3.6694631307, + "481": 3.6045150591, + "482": 3.5395669874, + "483": 3.4719755864, + "484": 3.4043841853, + "485": 3.3344162071, + "486": 3.2644482289, + "487": 3.1923798053, + "488": 3.1203113817, + "489": 3.0464269338, + "490": 2.9725424859, + "491": 2.8971336019, + "492": 2.8217247179, + "493": 2.7450890022, + "494": 2.6684532865, + "495": 2.5908931852, + "496": 2.5133330839, + "497": 2.4351546914, + "498": 2.3569762988, + "499": 2.2784881494, + "500": 2.2, + "501": 2.1215118506, + "502": 2.0430237012, + "503": 1.9648453086, + "504": 1.8866669161, + "505": 1.8091068148, + "506": 1.7315467135, + "507": 1.6549109978, + "508": 1.5782752821, + "509": 1.5028663981, + "510": 1.4274575141, + "511": 1.3535730662, + "512": 1.2796886183, + "513": 1.2076201947, + "514": 1.1355517711, + "515": 1.0655837929, + "516": 0.9956158147, + "517": 0.9280244136, + "518": 0.8604330126, + "519": 0.7954849409, + "520": 0.7305368693, + "521": 0.6684884474, + "522": 0.6064400256, + "523": 0.5475361304, + "524": 0.4886322352, + "525": 0.4331053333, + "526": 0.3775784314, + "527": 0.3256476623, + "528": 0.2737168931, + "529": 0.2255872036, + "530": 0.1774575141, + "531": 0.1333188502, + "532": 0.0891801862, + "533": 0.0492067431, + "534": 0.0092332999, + "535": -0.0264171656, + "536": -0.0620676312, + "537": -0.0932544229, + "538": -0.1244412147, + "539": -0.1510412527, + "540": -0.1776412907, + "541": -0.1995495968, + "542": -0.2214579028, + "543": -0.2385880148, + "544": -0.2557181268, + "545": -0.2680024401, + "546": -0.2802867533, + "547": -0.2876767872, + "548": -0.2950668211, + "549": -0.2975334105, + "550": -0.3, + "551": -0.2975334105, + "552": -0.2950668211, + "553": -0.2876767872, + "554": -0.2802867533, + "555": -0.2680024401, + "556": -0.2557181268, + "557": -0.2385880148, + "558": -0.2214579028, + "559": -0.1995495968, + "560": -0.1776412907, + "561": -0.1510412527, + "562": -0.1244412147, + "563": -0.0932544229, + "564": -0.0620676312, + "565": -0.0264171656, + "566": 0.0092332999, + "567": 0.0492067431, + "568": 0.0891801862, + "569": 0.1333188502, + "570": 0.1774575141, + "571": 0.2255872036, + "572": 0.2737168931, + "573": 0.3256476623, + "574": 0.3775784314, + "575": 0.4331053333, + "576": 0.4886322352, + "577": 0.5475361304, + "578": 0.6064400256, + "579": 0.6684884474, + "580": 0.7305368693, + "581": 0.7954849409, + "582": 0.8604330126, + "583": 0.9280244136, + "584": 0.9956158147, + "585": 1.0655837929, + "586": 1.1355517711, + "587": 1.2076201947, + "588": 1.2796886183, + "589": 1.3535730662, + "590": 1.4274575141, + "591": 1.5028663981, + "592": 1.5782752821, + "593": 1.6549109978, + "594": 1.7315467135, + "595": 1.8091068148, + "596": 1.8866669161, + "597": 1.9648453086, + "598": 2.0430237012, + "599": 2.1215118506, + "600": 2.2, + "601": 2.2784881494, + "602": 2.3569762988, + "603": 2.4351546914, + "604": 2.5133330839, + "605": 2.5908931852, + "606": 2.6684532865, + "607": 2.7450890022, + "608": 2.8217247179, + "609": 2.8971336019, + "610": 2.9725424859, + "611": 3.0464269338, + "612": 3.1203113817, + "613": 3.1923798053, + "614": 3.2644482289, + "615": 3.3344162071, + "616": 3.4043841853, + "617": 3.4719755864, + "618": 3.5395669874, + "619": 3.6045150591, + "620": 3.6694631307, + "621": 3.7315115526, + "622": 3.7935599744, + "623": 3.8524638696, + "624": 3.9113677648, + "625": 3.9668946667, + "626": 4.0224215686, + "627": 4.0743523377, + "628": 4.1262831069, + "629": 4.1744127964, + "630": 4.2225424859, + "631": 4.2666811498, + "632": 4.3108198138, + "633": 4.3507932569, + "634": 4.3907667001, + "635": 4.4264171656, + "636": 4.4620676312, + "637": 4.4932544229, + "638": 4.5244412147, + "639": 4.5510412527, + "640": 4.5776412907, + "641": 4.5995495968, + "642": 4.6214579028, + "643": 4.6385880148, + "644": 4.6557181268, + "645": 4.6680024401, + "646": 4.6802867533, + "647": 4.6876767872, + "648": 4.6950668211, + "649": 4.6975334105, + "650": 4.7, + "651": 4.6975334105, + "652": 4.6950668211, + "653": 4.6876767872, + "654": 4.6802867533, + "655": 4.6680024401, + "656": 4.6557181268, + "657": 4.6385880148, + "658": 4.6214579028, + "659": 4.5995495968, + "660": 4.5776412907, + "661": 4.5510412527, + "662": 4.5244412147, + "663": 4.4932544229, + "664": 4.4620676312, + "665": 4.4264171656, + "666": 4.3907667001, + "667": 4.3507932569, + "668": 4.3108198138, + "669": 4.2666811498, + "670": 4.2225424859, + "671": 4.1744127964, + "672": 4.1262831069, + "673": 4.0743523377, + "674": 4.0224215686, + "675": 3.9668946667, + "676": 3.9113677648, + "677": 3.8524638696, + "678": 3.7935599744, + "679": 3.7315115526, + "680": 3.6694631307, + "681": 3.6045150591, + "682": 3.5395669874, + "683": 3.4719755864, + "684": 3.4043841853, + "685": 3.3344162071, + "686": 3.2644482289, + "687": 3.1923798053, + "688": 3.1203113817, + "689": 3.0464269338, + "690": 2.9725424859, + "691": 2.8971336019, + "692": 2.8217247179, + "693": 2.7450890022, + "694": 2.6684532865, + "695": 2.5908931852, + "696": 2.5133330839, + "697": 2.4351546914, + "698": 2.3569762988, + "699": 2.2784881494, + "700": 2.2, + "701": 2.1215118506, + "702": 2.0430237012, + "703": 1.9648453086, + "704": 1.8866669161, + "705": 1.8091068148, + "706": 1.7315467135, + "707": 1.6549109978, + "708": 1.5782752821, + "709": 1.5028663981, + "710": 1.4274575141, + "711": 1.3535730662, + "712": 1.2796886183, + "713": 1.2076201947, + "714": 1.1355517711, + "715": 1.0655837929, + "716": 0.9956158147, + "717": 0.9280244136, + "718": 0.8604330126, + "719": 0.7954849409, + "720": 0.7305368693, + "721": 0.6684884474, + "722": 0.6064400256, + "723": 0.5475361304, + "724": 0.4886322352, + "725": 0.4331053333, + "726": 0.3775784314, + "727": 0.3256476623, + "728": 0.2737168931, + "729": 0.2255872036, + "730": 0.1774575141, + "731": 0.1333188502, + "732": 0.0891801862, + "733": 0.0492067431, + "734": 0.0092332999, + "735": -0.0264171656, + "736": -0.0620676312, + "737": -0.0932544229, + "738": -0.1244412147, + "739": -0.1510412527, + "740": -0.1776412907, + "741": -0.1995495968, + "742": -0.2214579028, + "743": -0.2385880148, + "744": -0.2557181268, + "745": -0.2680024401, + "746": -0.2802867533, + "747": -0.2876767872, + "748": -0.2950668211, + "749": -0.2975334105, + "750": -0.3, + "751": -0.2975334105, + "752": -0.2950668211, + "753": -0.2876767872, + "754": -0.2802867533, + "755": -0.2680024401, + "756": -0.2557181268, + "757": -0.2385880148, + "758": -0.2214579028, + "759": -0.1995495968, + "760": -0.1776412907, + "761": -0.1510412527, + "762": -0.1244412147, + "763": -0.0932544229, + "764": -0.0620676312, + "765": -0.0264171656, + "766": 0.0092332999, + "767": 0.0492067431, + "768": 0.0891801862, + "769": 0.1333188502, + "770": 0.1774575141, + "771": 0.2255872036, + "772": 0.2737168931, + "773": 0.3256476623, + "774": 0.3775784314, + "775": 0.4331053333, + "776": 0.4886322352, + "777": 0.5475361304, + "778": 0.6064400256, + "779": 0.6684884474, + "780": 0.7305368693, + "781": 0.7954849409, + "782": 0.8604330126, + "783": 0.9280244136, + "784": 0.9956158147, + "785": 1.0655837929, + "786": 1.1355517711, + "787": 1.2076201947, + "788": 1.2796886183, + "789": 1.3535730662, + "790": 1.4274575141, + "791": 1.5028663981, + "792": 1.5782752821, + "793": 1.6549109978, + "794": 1.7315467135, + "795": 1.8091068148, + "796": 1.8866669161, + "797": 1.9648453086, + "798": 2.0430237012, + "799": 2.1215118506, + "800": 2.2, + "801": 2.2784881494, + "802": 2.3569762988, + "803": 2.4351546914, + "804": 2.5133330839, + "805": 2.5908931852, + "806": 2.6684532865, + "807": 2.7450890022, + "808": 2.8217247179, + "809": 2.8971336019, + "810": 2.9725424859, + "811": 3.0464269338, + "812": 3.1203113817, + "813": 3.1923798053, + "814": 3.2644482289, + "815": 3.3344162071, + "816": 3.4043841853, + "817": 3.4719755864, + "818": 3.5395669874, + "819": 3.6045150591, + "820": 3.6694631307, + "821": 3.7315115526, + "822": 3.7935599744, + "823": 3.8524638696, + "824": 3.9113677648, + "825": 3.9668946667, + "826": 4.0224215686, + "827": 4.0743523377, + "828": 4.1262831069, + "829": 4.1744127964, + "830": 4.2225424859, + "831": 4.2666811498, + "832": 4.3108198138, + "833": 4.3507932569, + "834": 4.3907667001, + "835": 4.4264171656, + "836": 4.4620676312, + "837": 4.4932544229, + "838": 4.5244412147, + "839": 4.5510412527, + "840": 4.5776412907, + "841": 4.5995495968, + "842": 4.6214579028, + "843": 4.6385880148, + "844": 4.6557181268, + "845": 4.6680024401, + "846": 4.6802867533, + "847": 4.6876767872, + "848": 4.6950668211, + "849": 4.6975334105, + "850": 4.7, + "851": 4.6975334105, + "852": 4.6950668211, + "853": 4.6876767872, + "854": 4.6802867533, + "855": 4.6680024401, + "856": 4.6557181268, + "857": 4.6385880148, + "858": 4.6214579028, + "859": 4.5995495968, + "860": 4.5776412907, + "861": 4.5510412527, + "862": 4.5244412147, + "863": 4.4932544229, + "864": 4.4620676312, + "865": 4.4264171656, + "866": 4.3907667001, + "867": 4.3507932569, + "868": 4.3108198138, + "869": 4.2666811498, + "870": 4.2225424859, + "871": 4.1744127964, + "872": 4.1262831069, + "873": 4.0743523377, + "874": 4.0224215686, + "875": 3.9668946667, + "876": 3.9113677648, + "877": 3.8524638696, + "878": 3.7935599744, + "879": 3.7315115526, + "880": 3.6694631307, + "881": 3.6045150591, + "882": 3.5395669874, + "883": 3.4719755864, + "884": 3.4043841853, + "885": 3.3344162071, + "886": 3.2644482289, + "887": 3.1923798053, + "888": 3.1203113817, + "889": 3.0464269338, + "890": 2.9725424859, + "891": 2.8971336019, + "892": 2.8217247179, + "893": 2.7450890022, + "894": 2.6684532865, + "895": 2.5908931852, + "896": 2.5133330839, + "897": 2.4351546914, + "898": 2.3569762988, + "899": 2.2784881494, + "900": 2.2, + "901": 2.1215118506, + "902": 2.0430237012, + "903": 1.9648453086, + "904": 1.8866669161, + "905": 1.8091068148, + "906": 1.7315467135, + "907": 1.6549109978, + "908": 1.5782752821, + "909": 1.5028663981, + "910": 1.4274575141, + "911": 1.3535730662, + "912": 1.2796886183, + "913": 1.2076201947, + "914": 1.1355517711, + "915": 1.0655837929, + "916": 0.9956158147, + "917": 0.9280244136, + "918": 0.8604330126, + "919": 0.7954849409, + "920": 0.7305368693, + "921": 0.6684884474, + "922": 0.6064400256, + "923": 0.5475361304, + "924": 0.4886322352, + "925": 0.4331053333, + "926": 0.3775784314, + "927": 0.3256476623, + "928": 0.2737168931, + "929": 0.2255872036, + "930": 0.1774575141, + "931": 0.1333188502, + "932": 0.0891801862, + "933": 0.0492067431, + "934": 0.0092332999, + "935": -0.0264171656, + "936": -0.0620676312, + "937": -0.0932544229, + "938": -0.1244412147, + "939": -0.1510412527, + "940": -0.1776412907, + "941": -0.1995495968, + "942": -0.2214579028, + "943": -0.2385880148, + "944": -0.2557181268, + "945": -0.2680024401, + "946": -0.2802867533, + "947": -0.2876767872, + "948": -0.2950668211, + "949": -0.2975334105, + "950": -0.3, + "951": -0.2975334105, + "952": -0.2950668211, + "953": -0.2876767872, + "954": -0.2802867533, + "955": -0.2680024401, + "956": -0.2557181268, + "957": -0.2385880148, + "958": -0.2214579028, + "959": -0.1995495968, + "960": -0.1776412907, + "961": -0.1510412527, + "962": -0.1244412147, + "963": -0.0932544229, + "964": -0.0620676312, + "965": -0.0264171656, + "966": 0.0092332999, + "967": 0.0492067431, + "968": 0.0891801862, + "969": 0.1333188502, + "970": 0.1774575141, + "971": 0.2255872036, + "972": 0.2737168931, + "973": 0.3256476623, + "974": 0.3775784314, + "975": 0.4331053333, + "976": 0.4886322352, + "977": 0.5475361304, + "978": 0.6064400256, + "979": 0.6684884474, + "980": 0.7305368693, + "981": 0.7954849409, + "982": 0.8604330126, + "983": 0.9280244136, + "984": 0.9956158147, + "985": 1.0655837929, + "986": 1.1355517711, + "987": 1.2076201947, + "988": 1.2796886183, + "989": 1.3535730662, + "990": 1.4274575141, + "991": 1.5028663981, + "992": 1.5782752821, + "993": 1.6549109978, + "994": 1.7315467135, + "995": 1.8091068148, + "996": 1.8866669161, + "997": 1.9648453086, + "998": 2.0430237012, + "999": 2.1215118506, + "1000": 2.2, + "1001": 2.2784881494, + "1002": 2.3569762988, + "1003": 2.4351546914, + "1004": 2.5133330839, + "1005": 2.5908931852, + "1006": 2.6684532865, + "1007": 2.7450890022, + "1008": 2.8217247179, + "1009": 2.8971336019, + "1010": 2.9725424859, + "1011": 3.0464269338, + "1012": 3.1203113817, + "1013": 3.1923798053, + "1014": 3.2644482289, + "1015": 3.3344162071, + "1016": 3.4043841853, + "1017": 3.4719755864, + "1018": 3.5395669874, + "1019": 3.6045150591, + "1020": 3.6694631307, + "1021": 3.7315115526, + "1022": 3.7935599744, + "1023": 3.8524638696, + "1024": 3.9113677648, + "1025": 3.9668946667, + "1026": 4.0224215686, + "1027": 4.0743523377, + "1028": 4.1262831069, + "1029": 4.1744127964, + "1030": 4.2225424859, + "1031": 4.2666811498, + "1032": 4.3108198138, + "1033": 4.3507932569, + "1034": 4.3907667001, + "1035": 4.4264171656, + "1036": 4.4620676312, + "1037": 4.4932544229, + "1038": 4.5244412147, + "1039": 4.5510412527, + "1040": 4.5776412907, + "1041": 4.5995495968, + "1042": 4.6214579028, + "1043": 4.6385880148, + "1044": 4.6557181268, + "1045": 4.6680024401, + "1046": 4.6802867533, + "1047": 4.6876767872, + "1048": 4.6950668211, + "1049": 4.6975334105, + "1050": 4.7, + "1051": 4.6975334105, + "1052": 4.6950668211, + "1053": 4.6876767872, + "1054": 4.6802867533, + "1055": 4.6680024401, + "1056": 4.6557181268, + "1057": 4.6385880148, + "1058": 4.6214579028, + "1059": 4.5995495968, + "1060": 4.5776412907, + "1061": 4.5510412527, + "1062": 4.5244412147, + "1063": 4.4932544229, + "1064": 4.4620676312, + "1065": 4.4264171656, + "1066": 4.3907667001, + "1067": 4.3507932569, + "1068": 4.3108198138, + "1069": 4.2666811498, + "1070": 4.2225424859, + "1071": 4.1744127964, + "1072": 4.1262831069, + "1073": 4.0743523377, + "1074": 4.0224215686, + "1075": 3.9668946667, + "1076": 3.9113677648, + "1077": 3.8524638696, + "1078": 3.7935599744, + "1079": 3.7315115526, + "1080": 3.6694631307, + "1081": 3.6045150591, + "1082": 3.5395669874, + "1083": 3.4719755864, + "1084": 3.4043841853, + "1085": 3.3344162071, + "1086": 3.2644482289, + "1087": 3.1923798053, + "1088": 3.1203113817, + "1089": 3.0464269338, + "1090": 2.9725424859, + "1091": 2.8971336019, + "1092": 2.8217247179, + "1093": 2.7450890022, + "1094": 2.6684532865, + "1095": 2.5908931852, + "1096": 2.5133330839, + "1097": 2.4351546914, + "1098": 2.3569762988, + "1099": 2.2784881494, + "1100": 2.2, + "1101": 2.1215118506, + "1102": 2.0430237012, + "1103": 1.9648453086, + "1104": 1.8866669161, + "1105": 1.8091068148, + "1106": 1.7315467135, + "1107": 1.6549109978, + "1108": 1.5782752821, + "1109": 1.5028663981, + "1110": 1.4274575141, + "1111": 1.3535730662, + "1112": 1.2796886183, + "1113": 1.2076201947, + "1114": 1.1355517711, + "1115": 1.0655837929, + "1116": 0.9956158147, + "1117": 0.9280244136, + "1118": 0.8604330126, + "1119": 0.7954849409, + "1120": 0.7305368693, + "1121": 0.6684884474, + "1122": 0.6064400256, + "1123": 0.5475361304, + "1124": 0.4886322352, + "1125": 0.4331053333, + "1126": 0.3775784314, + "1127": 0.3256476623, + "1128": 0.2737168931, + "1129": 0.2255872036, + "1130": 0.1774575141, + "1131": 0.1333188502, + "1132": 0.0891801862, + "1133": 0.0492067431, + "1134": 0.0092332999, + "1135": -0.0264171656, + "1136": -0.0620676312, + "1137": -0.0932544229, + "1138": -0.1244412147, + "1139": -0.1510412527, + "1140": -0.1776412907, + "1141": -0.1995495968, + "1142": -0.2214579028, + "1143": -0.2385880148, + "1144": -0.2557181268, + "1145": -0.2680024401, + "1146": -0.2802867533, + "1147": -0.2876767872, + "1148": -0.2950668211, + "1149": -0.2975334105, + "1150": -0.3, + "1151": -0.2975334105, + "1152": -0.2950668211, + "1153": -0.2876767872, + "1154": -0.2802867533, + "1155": -0.2680024401, + "1156": -0.2557181268, + "1157": -0.2385880148, + "1158": -0.2214579028, + "1159": -0.1995495968, + "1160": -0.1776412907, + "1161": -0.1510412527, + "1162": -0.1244412147, + "1163": -0.0932544229, + "1164": -0.0620676312, + "1165": -0.0264171656, + "1166": 0.0092332999, + "1167": 0.0492067431, + "1168": 0.0891801862, + "1169": 0.1333188502, + "1170": 0.1774575141, + "1171": 0.2255872036, + "1172": 0.2737168931, + "1173": 0.3256476623, + "1174": 0.3775784314, + "1175": 0.4331053333, + "1176": 0.4886322352, + "1177": 0.5475361304, + "1178": 0.6064400256, + "1179": 0.6684884474, + "1180": 0.7305368693, + "1181": 0.7954849409, + "1182": 0.8604330126, + "1183": 0.9280244136, + "1184": 0.9956158147, + "1185": 1.0655837929, + "1186": 1.1355517711, + "1187": 1.2076201947, + "1188": 1.2796886183, + "1189": 1.3535730662, + "1190": 1.4274575141, + "1191": 1.5028663981, + "1192": 1.5782752821, + "1193": 1.6549109978, + "1194": 1.7315467135, + "1195": 1.8091068148, + "1196": 1.8866669161, + "1197": 1.9648453086, + "1198": 2.0430237012, + "1199": 2.1215118506, + "1200": 2.2, + "1201": 2.2784881494, + "1202": 2.3569762988, + "1203": 2.4351546914, + "1204": 2.5133330839, + "1205": 2.5908931852, + "1206": 2.6684532865, + "1207": 2.7450890022, + "1208": 2.8217247179, + "1209": 2.8971336019, + "1210": 2.9725424859, + "1211": 3.0464269338, + "1212": 3.1203113817, + "1213": 3.1923798053, + "1214": 3.2644482289, + "1215": 3.3344162071, + "1216": 3.4043841853, + "1217": 3.4719755864, + "1218": 3.5395669874, + "1219": 3.6045150591, + "1220": 3.6694631307, + "1221": 3.7315115526, + "1222": 3.7935599744, + "1223": 3.8524638696, + "1224": 3.9113677648, + "1225": 3.9668946667, + "1226": 4.0224215686, + "1227": 4.0743523377, + "1228": 4.1262831069, + "1229": 4.1744127964, + "1230": 4.2225424859, + "1231": 4.2666811498, + "1232": 4.3108198138, + "1233": 4.3507932569, + "1234": 4.3907667001, + "1235": 4.4264171656, + "1236": 4.4620676312, + "1237": 4.4932544229, + "1238": 4.5244412147, + "1239": 4.5510412527, + "1240": 4.5776412907, + "1241": 4.5995495968, + "1242": 4.6214579028, + "1243": 4.6385880148, + "1244": 4.6557181268, + "1245": 4.6680024401, + "1246": 4.6802867533, + "1247": 4.6876767872, + "1248": 4.6950668211, + "1249": 4.6975334105, + "1250": 4.7, + "1251": 4.6975334105, + "1252": 4.6950668211, + "1253": 4.6876767872, + "1254": 4.6802867533, + "1255": 4.6680024401, + "1256": 4.6557181268, + "1257": 4.6385880148, + "1258": 4.6214579028, + "1259": 4.5995495968, + "1260": 4.5776412907, + "1261": 4.5510412527, + "1262": 4.5244412147, + "1263": 4.4932544229, + "1264": 4.4620676312, + "1265": 4.4264171656, + "1266": 4.3907667001, + "1267": 4.3507932569, + "1268": 4.3108198138, + "1269": 4.2666811498, + "1270": 4.2225424859, + "1271": 4.1744127964, + "1272": 4.1262831069, + "1273": 4.0743523377, + "1274": 4.0224215686, + "1275": 3.9668946667, + "1276": 3.9113677648, + "1277": 3.8524638696, + "1278": 3.7935599744, + "1279": 3.7315115526, + "1280": 3.6694631307, + "1281": 3.6045150591, + "1282": 3.5395669874, + "1283": 3.4719755864, + "1284": 3.4043841853, + "1285": 3.3344162071, + "1286": 3.2644482289, + "1287": 3.1923798053, + "1288": 3.1203113817, + "1289": 3.0464269338, + "1290": 2.9725424859, + "1291": 2.8971336019, + "1292": 2.8217247179, + "1293": 2.7450890022, + "1294": 2.6684532865, + "1295": 2.5908931852, + "1296": 2.5133330839, + "1297": 2.4351546914, + "1298": 2.3569762988, + "1299": 2.2784881494, + "1300": 2.2, + "1301": 2.1215118506, + "1302": 2.0430237012, + "1303": 1.9648453086, + "1304": 1.8866669161, + "1305": 1.8091068148, + "1306": 1.7315467135, + "1307": 1.6549109978, + "1308": 1.5782752821, + "1309": 1.5028663981, + "1310": 1.4274575141, + "1311": 1.3535730662, + "1312": 1.2796886183, + "1313": 1.2076201947, + "1314": 1.1355517711, + "1315": 1.0655837929, + "1316": 0.9956158147, + "1317": 0.9280244136, + "1318": 0.8604330126, + "1319": 0.7954849409, + "1320": 0.7305368693, + "1321": 0.6684884474, + "1322": 0.6064400256, + "1323": 0.5475361304, + "1324": 0.4886322352, + "1325": 0.4331053333, + "1326": 0.3775784314, + "1327": 0.3256476623, + "1328": 0.2737168931, + "1329": 0.2255872036, + "1330": 0.1774575141, + "1331": 0.1333188502, + "1332": 0.0891801862, + "1333": 0.0492067431, + "1334": 0.0092332999, + "1335": -0.0264171656, + "1336": -0.0620676312, + "1337": -0.0932544229, + "1338": -0.1244412147, + "1339": -0.1510412527, + "1340": -0.1776412907, + "1341": -0.1995495968, + "1342": -0.2214579028, + "1343": -0.2385880148, + "1344": -0.2557181268, + "1345": -0.2680024401, + "1346": -0.2802867533, + "1347": -0.2876767872, + "1348": -0.2950668211, + "1349": -0.2975334105, + "1350": -0.3, + "1351": -0.2975334105, + "1352": -0.2950668211, + "1353": -0.2876767872, + "1354": -0.2802867533, + "1355": -0.2680024401, + "1356": -0.2557181268, + "1357": -0.2385880148, + "1358": -0.2214579028, + "1359": -0.1995495968, + "1360": -0.1776412907, + "1361": -0.1510412527, + "1362": -0.1244412147, + "1363": -0.0932544229, + "1364": -0.0620676312, + "1365": -0.0264171656, + "1366": 0.0092332999, + "1367": 0.0492067431, + "1368": 0.0891801862, + "1369": 0.1333188502, + "1370": 0.1774575141, + "1371": 0.2255872036, + "1372": 0.2737168931, + "1373": 0.3256476623, + "1374": 0.3775784314, + "1375": 0.4331053333, + "1376": 0.4886322352, + "1377": 0.5475361304, + "1378": 0.6064400256, + "1379": 0.6684884474, + "1380": 0.7305368693, + "1381": 0.7954849409, + "1382": 0.8604330126, + "1383": 0.9280244136, + "1384": 0.9956158147, + "1385": 1.0655837929, + "1386": 1.1355517711, + "1387": 1.2076201947, + "1388": 1.2796886183, + "1389": 1.3535730662, + "1390": 1.4274575141, + "1391": 1.5028663981, + "1392": 1.5782752821, + "1393": 1.6549109978, + "1394": 1.7315467135, + "1395": 1.8091068148, + "1396": 1.8866669161, + "1397": 1.9648453086, + "1398": 2.0430237012, + "1399": 2.1215118506, + "1400": 2.2, + "1401": 2.2784881494, + "1402": 2.3569762988, + "1403": 2.4351546914, + "1404": 2.5133330839, + "1405": 2.5908931852, + "1406": 2.6684532865, + "1407": 2.7450890022, + "1408": 2.8217247179, + "1409": 2.8971336019, + "1410": 2.9725424859, + "1411": 3.0464269338, + "1412": 3.1203113817, + "1413": 3.1923798053, + "1414": 3.2644482289, + "1415": 3.3344162071, + "1416": 3.4043841853, + "1417": 3.4719755864, + "1418": 3.5395669874, + "1419": 3.6045150591, + "1420": 3.6694631307, + "1421": 3.7315115526, + "1422": 3.7935599744, + "1423": 3.8524638696, + "1424": 3.9113677648, + "1425": 3.9668946667, + "1426": 4.0224215686, + "1427": 4.0743523377, + "1428": 4.1262831069, + "1429": 4.1744127964, + "1430": 4.2225424859, + "1431": 4.2666811498, + "1432": 4.3108198138, + "1433": 4.3507932569, + "1434": 4.3907667001, + "1435": 4.4264171656, + "1436": 4.4620676312, + "1437": 4.4932544229, + "1438": 4.5244412147, + "1439": 4.5510412527, + "1440": 4.5776412907, + "1441": 4.5995495968, + "1442": 4.6214579028, + "1443": 4.6385880148, + "1444": 4.6557181268, + "1445": 4.6680024401, + "1446": 4.6802867533, + "1447": 4.6876767872, + "1448": 4.6950668211, + "1449": 4.6975334105, + "1450": 4.7, + "1451": 4.6975334105, + "1452": 4.6950668211, + "1453": 4.6876767872, + "1454": 4.6802867533, + "1455": 4.6680024401, + "1456": 4.6557181268, + "1457": 4.6385880148, + "1458": 4.6214579028, + "1459": 4.5995495968, + "1460": 4.5776412907, + "1461": 4.5510412527, + "1462": 4.5244412147, + "1463": 4.4932544229, + "1464": 4.4620676312, + "1465": 4.4264171656, + "1466": 4.3907667001, + "1467": 4.3507932569, + "1468": 4.3108198138, + "1469": 4.2666811498, + "1470": 4.2225424859, + "1471": 4.1744127964, + "1472": 4.1262831069, + "1473": 4.0743523377, + "1474": 4.0224215686, + "1475": 3.9668946667, + "1476": 3.9113677648, + "1477": 3.8524638696, + "1478": 3.7935599744, + "1479": 3.7315115526, + "1480": 3.6694631307, + "1481": 3.6045150591, + "1482": 3.5395669874, + "1483": 3.4719755864, + "1484": 3.4043841853, + "1485": 3.3344162071, + "1486": 3.2644482289, + "1487": 3.1923798053, + "1488": 3.1203113817, + "1489": 3.0464269338, + "1490": 2.9725424859, + "1491": 2.8971336019, + "1492": 2.8217247179, + "1493": 2.7450890022, + "1494": 2.6684532865, + "1495": 2.5908931852, + "1496": 2.5133330839, + "1497": 2.4351546914, + "1498": 2.3569762988, + "1499": 2.2784881494, + "1500": 2.2, + "1501": 2.1215118506, + "1502": 2.0430237012, + "1503": 1.9648453086, + "1504": 1.8866669161, + "1505": 1.8091068148, + "1506": 1.7315467135, + "1507": 1.6549109978, + "1508": 1.5782752821, + "1509": 1.5028663981, + "1510": 1.4274575141, + "1511": 1.3535730662, + "1512": 1.2796886183, + "1513": 1.2076201947, + "1514": 1.1355517711, + "1515": 1.0655837929, + "1516": 0.9956158147, + "1517": 0.9280244136, + "1518": 0.8604330126, + "1519": 0.7954849409, + "1520": 0.7305368693, + "1521": 0.6684884474, + "1522": 0.6064400256, + "1523": 0.5475361304, + "1524": 0.4886322352, + "1525": 0.4331053333, + "1526": 0.3775784314, + "1527": 0.3256476623, + "1528": 0.2737168931, + "1529": 0.2255872036, + "1530": 0.1774575141, + "1531": 0.1333188502, + "1532": 0.0891801862, + "1533": 0.0492067431, + "1534": 0.0092332999, + "1535": -0.0264171656, + "1536": -0.0620676312, + "1537": -0.0932544229, + "1538": -0.1244412147, + "1539": -0.1510412527, + "1540": -0.1776412907, + "1541": -0.1995495968, + "1542": -0.2214579028, + "1543": -0.2385880148, + "1544": -0.2557181268, + "1545": -0.2680024401, + "1546": -0.2802867533, + "1547": -0.2876767872, + "1548": -0.2950668211, + "1549": -0.2975334105, + "1550": -0.3, + "1551": -0.2975334105, + "1552": -0.2950668211, + "1553": -0.2876767872, + "1554": -0.2802867533, + "1555": -0.2680024401, + "1556": -0.2557181268, + "1557": -0.2385880148, + "1558": -0.2214579028, + "1559": -0.1995495968, + "1560": -0.1776412907, + "1561": -0.1510412527, + "1562": -0.1244412147, + "1563": -0.0932544229, + "1564": -0.0620676312, + "1565": -0.0264171656, + "1566": 0.0092332999, + "1567": 0.0492067431, + "1568": 0.0891801862, + "1569": 0.1333188502, + "1570": 0.1774575141, + "1571": 0.2255872036, + "1572": 0.2737168931, + "1573": 0.3256476623, + "1574": 0.3775784314, + "1575": 0.4331053333, + "1576": 0.4886322352, + "1577": 0.5475361304, + "1578": 0.6064400256, + "1579": 0.6684884474, + "1580": 0.7305368693, + "1581": 0.7954849409, + "1582": 0.8604330126, + "1583": 0.9280244136, + "1584": 0.9956158147, + "1585": 1.0655837929, + "1586": 1.1355517711, + "1587": 1.2076201947, + "1588": 1.2796886183, + "1589": 1.3535730662, + "1590": 1.4274575141, + "1591": 1.5028663981, + "1592": 1.5782752821, + "1593": 1.6549109978, + "1594": 1.7315467135, + "1595": 1.8091068148, + "1596": 1.8866669161, + "1597": 1.9648453086, + "1598": 2.0430237012, + "1599": 2.1215118506, + "1600": 2.2, + "1601": 2.2784881494, + "1602": 2.3569762988, + "1603": 2.4351546914, + "1604": 2.5133330839, + "1605": 2.5908931852, + "1606": 2.6684532865, + "1607": 2.7450890022, + "1608": 2.8217247179, + "1609": 2.8971336019, + "1610": 2.9725424859, + "1611": 3.0464269338, + "1612": 3.1203113817, + "1613": 3.1923798053, + "1614": 3.2644482289, + "1615": 3.3344162071, + "1616": 3.4043841853, + "1617": 3.4719755864, + "1618": 3.5395669874, + "1619": 3.6045150591, + "1620": 3.6694631307, + "1621": 3.7315115526, + "1622": 3.7935599744, + "1623": 3.8524638696, + "1624": 3.9113677648, + "1625": 3.9668946667, + "1626": 4.0224215686, + "1627": 4.0743523377, + "1628": 4.1262831069, + "1629": 4.1744127964, + "1630": 4.2225424859, + "1631": 4.2666811498, + "1632": 4.3108198138, + "1633": 4.3507932569, + "1634": 4.3907667001, + "1635": 4.4264171656, + "1636": 4.4620676312, + "1637": 4.4932544229, + "1638": 4.5244412147, + "1639": 4.5510412527, + "1640": 4.5776412907, + "1641": 4.5995495968, + "1642": 4.6214579028, + "1643": 4.6385880148, + "1644": 4.6557181268, + "1645": 4.6680024401, + "1646": 4.6802867533, + "1647": 4.6876767872, + "1648": 4.6950668211, + "1649": 4.6975334105, + "1650": 4.7, + "1651": 4.6975334105, + "1652": 4.6950668211, + "1653": 4.6876767872, + "1654": 4.6802867533, + "1655": 4.6680024401, + "1656": 4.6557181268, + "1657": 4.6385880148, + "1658": 4.6214579028, + "1659": 4.5995495968, + "1660": 4.5776412907, + "1661": 4.5510412527, + "1662": 4.5244412147, + "1663": 4.4932544229, + "1664": 4.4620676312, + "1665": 4.4264171656, + "1666": 4.3907667001, + "1667": 4.3507932569, + "1668": 4.3108198138, + "1669": 4.2666811498, + "1670": 4.2225424859, + "1671": 4.1744127964, + "1672": 4.1262831069, + "1673": 4.0743523377, + "1674": 4.0224215686, + "1675": 3.9668946667, + "1676": 3.9113677648, + "1677": 3.8524638696, + "1678": 3.7935599744, + "1679": 3.7315115526, + "1680": 3.6694631307, + "1681": 3.6045150591, + "1682": 3.5395669874, + "1683": 3.4719755864, + "1684": 3.4043841853, + "1685": 3.3344162071, + "1686": 3.2644482289, + "1687": 3.1923798053, + "1688": 3.1203113817, + "1689": 3.0464269338, + "1690": 2.9725424859, + "1691": 2.8971336019, + "1692": 2.8217247179, + "1693": 2.7450890022, + "1694": 2.6684532865, + "1695": 2.5908931852, + "1696": 2.5133330839, + "1697": 2.4351546914, + "1698": 2.3569762988, + "1699": 2.2784881494, + "1700": 2.2, + "1701": 2.1215118506, + "1702": 2.0430237012, + "1703": 1.9648453086, + "1704": 1.8866669161, + "1705": 1.8091068148, + "1706": 1.7315467135, + "1707": 1.6549109978, + "1708": 1.5782752821, + "1709": 1.5028663981, + "1710": 1.4274575141, + "1711": 1.3535730662, + "1712": 1.2796886183, + "1713": 1.2076201947, + "1714": 1.1355517711, + "1715": 1.0655837929, + "1716": 0.9956158147, + "1717": 0.9280244136, + "1718": 0.8604330126, + "1719": 0.7954849409, + "1720": 0.7305368693, + "1721": 0.6684884474, + "1722": 0.6064400256, + "1723": 0.5475361304, + "1724": 0.4886322352, + "1725": 0.4331053333, + "1726": 0.3775784314, + "1727": 0.3256476623, + "1728": 0.2737168931, + "1729": 0.2255872036, + "1730": 0.1774575141, + "1731": 0.1333188502, + "1732": 0.0891801862, + "1733": 0.0492067431, + "1734": 0.0092332999, + "1735": -0.0264171656, + "1736": -0.0620676312, + "1737": -0.0932544229, + "1738": -0.1244412147, + "1739": -0.1510412527, + "1740": -0.1776412907, + "1741": -0.1995495968, + "1742": -0.2214579028, + "1743": -0.2385880148, + "1744": -0.2557181268, + "1745": -0.2680024401, + "1746": -0.2802867533, + "1747": -0.2876767872, + "1748": -0.2950668211, + "1749": -0.2975334105, + "1750": -0.3, + "1751": -0.2975334105, + "1752": -0.2950668211, + "1753": -0.2876767872, + "1754": -0.2802867533, + "1755": -0.2680024401, + "1756": -0.2557181268, + "1757": -0.2385880148, + "1758": -0.2214579028, + "1759": -0.1995495968, + "1760": -0.1776412907, + "1761": -0.1510412527, + "1762": -0.1244412147, + "1763": -0.0932544229, + "1764": -0.0620676312, + "1765": -0.0264171656, + "1766": 0.0092332999, + "1767": 0.0492067431, + "1768": 0.0891801862, + "1769": 0.1333188502, + "1770": 0.1774575141, + "1771": 0.2255872036, + "1772": 0.2737168931, + "1773": 0.3256476623, + "1774": 0.3775784314, + "1775": 0.4331053333, + "1776": 0.4886322352, + "1777": 0.5475361304, + "1778": 0.6064400256, + "1779": 0.6684884474, + "1780": 0.7305368693, + "1781": 0.7954849409, + "1782": 0.8604330126, + "1783": 0.9280244136, + "1784": 0.9956158147, + "1785": 1.0655837929, + "1786": 1.1355517711, + "1787": 1.2076201947, + "1788": 1.2796886183, + "1789": 1.3535730662, + "1790": 1.4274575141, + "1791": 1.5028663981, + "1792": 1.5782752821, + "1793": 1.6549109978, + "1794": 1.7315467135, + "1795": 1.8091068148, + "1796": 1.8866669161, + "1797": 1.9648453086, + "1798": 2.0430237012, + "1799": 2.1215118506, + "1800": 2.2, + "1801": 2.2784881494, + "1802": 2.3569762988, + "1803": 2.4351546914, + "1804": 2.5133330839, + "1805": 2.5908931852, + "1806": 2.6684532865, + "1807": 2.7450890022, + "1808": 2.8217247179, + "1809": 2.8971336019, + "1810": 2.9725424859, + "1811": 3.0464269338, + "1812": 3.1203113817, + "1813": 3.1923798053, + "1814": 3.2644482289, + "1815": 3.3344162071, + "1816": 3.4043841853, + "1817": 3.4719755864, + "1818": 3.5395669874, + "1819": 3.6045150591, + "1820": 3.6694631307, + "1821": 3.7315115526, + "1822": 3.7935599744, + "1823": 3.8524638696, + "1824": 3.9113677648, + "1825": 3.9668946667, + "1826": 4.0224215686, + "1827": 4.0743523377, + "1828": 4.1262831069, + "1829": 4.1744127964, + "1830": 4.2225424859, + "1831": 4.2666811498, + "1832": 4.3108198138, + "1833": 4.3507932569, + "1834": 4.3907667001, + "1835": 4.4264171656, + "1836": 4.4620676312, + "1837": 4.4932544229, + "1838": 4.5244412147, + "1839": 4.5510412527, + "1840": 4.5776412907, + "1841": 4.5995495968, + "1842": 4.6214579028, + "1843": 4.6385880148, + "1844": 4.6557181268, + "1845": 4.6680024401, + "1846": 4.6802867533, + "1847": 4.6876767872, + "1848": 4.6950668211, + "1849": 4.6975334105, + "1850": 4.7, + "1851": 4.6975334105, + "1852": 4.6950668211, + "1853": 4.6876767872, + "1854": 4.6802867533, + "1855": 4.6680024401, + "1856": 4.6557181268, + "1857": 4.6385880148, + "1858": 4.6214579028, + "1859": 4.5995495968, + "1860": 4.5776412907, + "1861": 4.5510412527, + "1862": 4.5244412147, + "1863": 4.4932544229, + "1864": 4.4620676312, + "1865": 4.4264171656, + "1866": 4.3907667001, + "1867": 4.3507932569, + "1868": 4.3108198138, + "1869": 4.2666811498, + "1870": 4.2225424859, + "1871": 4.1744127964, + "1872": 4.1262831069, + "1873": 4.0743523377, + "1874": 4.0224215686, + "1875": 3.9668946667, + "1876": 3.9113677648, + "1877": 3.8524638696, + "1878": 3.7935599744, + "1879": 3.7315115526, + "1880": 3.6694631307, + "1881": 3.6045150591, + "1882": 3.5395669874, + "1883": 3.4719755864, + "1884": 3.4043841853, + "1885": 3.3344162071, + "1886": 3.2644482289, + "1887": 3.1923798053, + "1888": 3.1203113817, + "1889": 3.0464269338, + "1890": 2.9725424859, + "1891": 2.8971336019, + "1892": 2.8217247179, + "1893": 2.7450890022, + "1894": 2.6684532865, + "1895": 2.5908931852, + "1896": 2.5133330839, + "1897": 2.4351546914, + "1898": 2.3569762988, + "1899": 2.2784881494, + "1900": 2.2, + "1901": 2.1215118506, + "1902": 2.0430237012, + "1903": 1.9648453086, + "1904": 1.8866669161, + "1905": 1.8091068148, + "1906": 1.7315467135, + "1907": 1.6549109978, + "1908": 1.5782752821, + "1909": 1.5028663981, + "1910": 1.4274575141, + "1911": 1.3535730662, + "1912": 1.2796886183, + "1913": 1.2076201947, + "1914": 1.1355517711, + "1915": 1.0655837929, + "1916": 0.9956158147, + "1917": 0.9280244136, + "1918": 0.8604330126, + "1919": 0.7954849409, + "1920": 0.7305368693, + "1921": 0.6684884474, + "1922": 0.6064400256, + "1923": 0.5475361304, + "1924": 0.4886322352, + "1925": 0.4331053333, + "1926": 0.3775784314, + "1927": 0.3256476623, + "1928": 0.2737168931, + "1929": 0.2255872036, + "1930": 0.1774575141, + "1931": 0.1333188502, + "1932": 0.0891801862, + "1933": 0.0492067431, + "1934": 0.0092332999, + "1935": -0.0264171656, + "1936": -0.0620676312, + "1937": -0.0932544229, + "1938": -0.1244412147, + "1939": -0.1510412527, + "1940": -0.1776412907, + "1941": -0.1995495968, + "1942": -0.2214579028, + "1943": -0.2385880148, + "1944": -0.2557181268, + "1945": -0.2680024401, + "1946": -0.2802867533, + "1947": -0.2876767872, + "1948": -0.2950668211, + "1949": -0.2975334105, + "1950": -0.3, + "1951": -0.2975334105, + "1952": -0.2950668211, + "1953": -0.2876767872, + "1954": -0.2802867533, + "1955": -0.2680024401, + "1956": -0.2557181268, + "1957": -0.2385880148, + "1958": -0.2214579028, + "1959": -0.1995495968, + "1960": -0.1776412907, + "1961": -0.1510412527, + "1962": -0.1244412147, + "1963": -0.0932544229, + "1964": -0.0620676312, + "1965": -0.0264171656, + "1966": 0.0092332999, + "1967": 0.0492067431, + "1968": 0.0891801862, + "1969": 0.1333188502, + "1970": 0.1774575141, + "1971": 0.2255872036, + "1972": 0.2737168931, + "1973": 0.3256476623, + "1974": 0.3775784314, + "1975": 0.4331053333, + "1976": 0.4886322352, + "1977": 0.5475361304, + "1978": 0.6064400256, + "1979": 0.6684884474, + "1980": 0.7305368693, + "1981": 0.7954849409, + "1982": 0.8604330126, + "1983": 0.9280244136, + "1984": 0.9956158147, + "1985": 1.0655837929, + "1986": 1.1355517711, + "1987": 1.2076201947, + "1988": 1.2796886183, + "1989": 1.3535730662, + "1990": 1.4274575141, + "1991": 1.5028663981, + "1992": 1.5782752821, + "1993": 1.6549109978, + "1994": 1.7315467135, + "1995": 1.8091068148, + "1996": 1.8866669161, + "1997": 1.9648453086, + "1998": 2.0430237012, + "1999": 2.1215118506, + "2000": 2.2 + }, + "pressure_in": { + "0": 4620.0000021514, + "1": 4708.3756193974, + "2": 4800.3254995924, + "3": 4895.5124675901, + "4": 4994.0594481245, + "5": 5095.112900714, + "6": 5199.1833141173, + "7": 5305.0814669227, + "8": 5413.666396996, + "9": 5523.4234147006, + "10": 5635.5539071338, + "11": 5748.2226169969, + "12": 5862.9671989041, + "13": 5977.6378582606, + "14": 6094.1012830419, + "15": 6209.9005191749, + "16": 6327.2228680953, + "17": 6443.3129112471, + "18": 6560.6689786072, + "19": 6676.2471553502, + "20": 6792.8460782692, + "21": 6907.1445293024, + "22": 7022.2296272077, + "23": 7134.5152161542, + "24": 7247.3640077452, + "25": 7356.9383900522, + "26": 7466.8627579368, + "27": 7573.0625813218, + "28": 7679.409056773, + "29": 7781.6062668333, + "30": 7883.7564091974, + "31": 7981.358635822, + "32": 8078.7294830568, + "33": 8171.1804851632, + "34": 8263.2250537969, + "35": 8350.0052016813, + "36": 8436.2130161883, + "37": 8516.8397924331, + "38": 8596.7374256203, + "39": 8670.7659270608, + "40": 8743.91753457, + "41": 8810.9409592984, + "42": 8876.9487927574, + "43": 8936.5988975347, + "44": 8995.103782245, + "45": 9047.0512970203, + "46": 9097.7330613625, + "47": 9141.6880488607, + "48": 9184.265893826, + "49": 9219.9780433731, + "50": 9254.2108418116, + "51": 9281.4696877224, + "52": 9307.1562040248, + "53": 9325.791259985, + "54": 9342.770282003, + "55": 9352.6510839434, + "56": 9360.8014599948, + "57": 9361.8375109805, + "58": 9361.0780857929, + "59": 9353.2186974368, + "60": 9343.5081418536, + "61": 9326.7421677159, + "62": 9308.0786979235, + "63": 9282.4341552751, + "64": 9254.855138215, + "65": 9220.3987154318, + "66": 9183.9801579323, + "67": 9140.8166056363, + "68": 9095.6725256412, + "69": 9043.9439305313, + "70": 8990.2256096152, + "71": 8930.1105507214, + "72": 8868.0056678609, + "73": 8799.7182557166, + "74": 8729.4499030414, + "75": 8653.2387030041, + "76": 8575.0642849732, + "77": 8491.2111266199, + "78": 8405.42114476, + "79": 8314.239819959, + "80": 8221.1565459651, + "81": 8122.9913988613, + "82": 8022.9674394887, + "83": 7918.1918522502, + "84": 7811.6086100272, + "85": 7700.6233887729, + "86": 7587.88942313, + "87": 7471.1210890009, + "88": 7352.6703829461, + "89": 7230.5693737937, + "90": 7106.8595117626, + "91": 6979.8983003974, + "92": 6851.4085633754, + "93": 6720.0796987604, + "94": 6587.3090832016, + "95": 6452.1231613789, + "96": 6315.5883288442, + "97": 6177.0719007486, + "98": 6037.305065542, + "99": 5895.9984891868, + "100": 5753.5452515939, + "101": 5610.000496406, + "102": 5465.4176294197, + "103": 5320.1960407584, + "104": 5174.0492384261, + "105": 5027.7192705358, + "106": 4880.5808662703, + "107": 4733.7157920957, + "108": 4586.1624554623, + "109": 4439.3380618974, + "110": 4291.9484825218, + "111": 4145.7407597643, + "112": 3999.0933270985, + "113": 3854.0761608454, + "114": 3708.7466485841, + "115": 3565.4895238295, + "116": 3422.0487877856, + "117": 3281.1145129692, + "118": 3140.1262111957, + "119": 3002.0686713992, + "120": 2864.0870152842, + "121": 2729.4489630867, + "122": 2595.0165080532, + "123": 2464.3274005312, + "124": 2333.9728848397, + "125": 2207.7467750369, + "126": 2081.9830150197, + "127": 1960.7165060193, + "128": 1840.0383558719, + "129": 1724.2086253725, + "130": 1609.0910093907, + "131": 1499.153912426, + "132": 1390.0499373057, + "133": 1286.4381944553, + "134": 1183.777348971, + "135": 1086.898827085, + "136": 991.0852761309, + "137": 901.3213682374, + "138": 812.732347854, + "139": 730.4364585396, + "140": 649.4207781598, + "141": 574.916920306, + "142": 501.7935780431, + "143": 435.3750863704, + "144": 370.4320027303, + "145": 312.360369151, + "146": 255.8532440931, + "147": 206.3570793979, + "148": 158.5083771883, + "149": 117.782503102, + "150": 78.7805689061, + "151": 46.9852440375, + "152": 16.9835556827, + "153": -5.7561616271, + "154": -26.6396038145, + "155": -40.2343532795, + "156": -51.9174961994, + "157": -56.3139720875, + "158": -58.7510373406, + "159": -53.9322023176, + "160": -47.1138701722, + "161": -33.0990256801, + "162": -17.0524748397, + "163": 6.1028122363, + "164": 31.3140091925, + "165": 63.5181232506, + "166": 97.7942483144, + "167": 138.9198842755, + "168": 182.1254653388, + "169": 232.0101289564, + "170": 283.9744724562, + "171": 342.4211197035, + "172": 402.9389824596, + "173": 469.716795449, + "174": 538.5491930268, + "175": 613.3944893836, + "176": 690.2696377733, + "177": 772.8869098595, + "178": 857.5012967417, + "179": 947.5643766131, + "180": 1039.5839579694, + "181": 1136.7373034569, + "182": 1235.7988207906, + "183": 1339.6589176174, + "184": 1445.371330575, + "185": 1555.5282049675, + "186": 1667.4742336969, + "187": 1783.4930695082, + "188": 1901.230840658, + "189": 2022.6536946143, + "190": 2145.7184844702, + "191": 2272.0660927639, + "192": 2399.9721606341, + "193": 2530.7458297252, + "194": 2662.9883343348, + "195": 2797.6719084932, + "196": 2933.7288998163, + "197": 3071.7907976339, + "198": 3211.1252762991, + "199": 3352.0205881292, + "200": 3494.0826242635, + "201": 3637.2552623059, + "202": 3781.4841654533, + "203": 3926.3690579943, + "204": 4072.195589539, + "205": 4218.2209106835, + "206": 4365.0695300442, + "207": 4511.658956137, + "208": 4658.9500918632, + "209": 4805.5250756903, + "210": 4952.6774124952, + "211": 5098.6594662877, + "212": 5245.0922389894, + "213": 5389.9052172175, + "214": 5535.0405025318, + "215": 5678.1128754774, + "216": 5821.3778726167, + "217": 5962.1449817488, + "218": 6102.9742728235, + "219": 6240.8805590752, + "220": 6378.7183403755, + "221": 6513.2195365255, + "222": 6647.5218118763, + "223": 6778.0870903816, + "224": 6908.3238179125, + "225": 7034.4378857146, + "226": 7160.0950695712, + "227": 7281.2602016062, + "228": 7401.8419203469, + "229": 7517.5799237348, + "230": 7632.6102874066, + "231": 7742.4643885649, + "232": 7851.4894167337, + "233": 7955.0260639688, + "234": 8057.6154772909, + "235": 8154.4260517506, + "236": 8250.1749700153, + "237": 8339.8773982509, + "238": 8428.4079381907, + "239": 8510.6481999627, + "240": 8591.6109665256, + "241": 8666.0644919023, + "242": 8739.1399571, + "243": 8805.5129073351, + "244": 8870.4126712241, + "245": 8928.4430983566, + "246": 8984.9110271768, + "247": 9034.3699077776, + "248": 9082.1831447545, + "249": 9122.8752837386, + "250": 9161.8451285604, + "251": 9193.6099294982, + "252": 9223.5825829969, + "253": 9246.2946818828, + "254": 9267.1518529793, + "255": 9280.7216129582, + "256": 9292.3809854755, + "257": 9296.7548505726, + "258": 9299.1704080762, + "259": 9294.3311145345, + "260": 9287.4933219156, + "261": 9273.4599663069, + "262": 9257.3958073933, + "263": 9234.2237712338, + "264": 9208.9966422789, + "265": 9176.7773734462, + "266": 9142.4868329161, + "267": 9101.3474847307, + "268": 9058.1288603781, + "269": 9008.2317897731, + "270": 8956.2556445465, + "271": 8897.797771306, + "272": 8837.2692302039, + "273": 8770.4812597994, + "274": 8701.6392003242, + "275": 8626.7847134145, + "276": 8549.9008228226, + "277": 8467.2752350123, + "278": 8382.6529380792, + "279": 8292.5823340395, + "280": 8200.5555955729, + "281": 8103.3954421265, + "282": 8004.3274489522, + "283": 7900.4611922013, + "284": 7794.7429198244, + "285": 7684.5804718576, + "286": 7572.6291414544, + "287": 7456.6052626054, + "288": 7338.8626944365, + "289": 7217.4352774782, + "290": 7094.3661472212, + "291": 6968.0144102678, + "292": 6840.1044151499, + "293": 6709.3270103973, + "294": 6577.0809523662, + "295": 6442.3939981358, + "296": 6306.3337916336, + "297": 6168.2688354858, + "298": 6028.9314476875, + "299": 5888.033368643, + "300": 5745.9687002896, + "301": 5602.793558438, + "302": 5458.5622736268, + "303": 5313.6751156087, + "304": 5167.8464291056, + "305": 5021.8190581299, + "306": 4874.9684889366, + "307": 4728.3772081315, + "308": 4581.0843081732, + "309": 4434.5076461799, + "310": 4287.3537130762, + "311": 4141.3701408585, + "312": 3994.9359238063, + "313": 3850.1215716886, + "314": 3704.9849795083, + "315": 3561.9113634507, + "316": 3418.6451838432, + "317": 3277.8769499282, + "318": 3137.0465889419, + "319": 2999.139284973, + "320": 2861.3005356037, + "321": 2726.7984186107, + "322": 2592.4952673393, + "323": 2461.929155644, + "324": 2331.6916355695, + "325": 2205.5768138871, + "326": 2079.9189129274, + "327": 1958.7530987722, + "328": 1838.1707311879, + "329": 1722.4321106094, + "330": 1607.401159856, + "331": 1497.5465002561, + "332": 1388.5209408887, + "333": 1284.983788369, + "334": 1182.3938944119, + "335": 1085.5828627644, + "336": 989.8335096154, + "337": 900.1306677108, + "338": 811.5997342823, + "339": 729.3590982176, + "340": 648.3959756213, + "341": 573.9421115799, + "342": 500.866324239, + "343": 434.493067576, + "344": 369.5930122078, + "345": 311.5623078157, + "346": 255.0941152615, + "347": 205.6349837928, + "348": 157.8215081863, + "349": 117.1291422138, + "350": 78.159081477, + "351": 46.3940751574, + "352": 16.4212262962, + "353": -6.2910584217, + "354": -27.1484062845, + "355": -40.7183344065, + "356": -52.3778668642, + "357": -56.7518840992, + "358": -59.1675863187, + "359": -54.3284304332, + "360": -47.4907687551, + "361": -33.4575376994, + "362": -17.3934972627, + "363": 5.7784261998, + "364": 31.0054479554, + "365": 63.2246148185, + "366": 97.5150583533, + "367": 138.6543142753, + "368": 181.8728508655, + "369": 231.7698379895, + "370": 283.7459038075, + "371": 342.2037015133, + "372": 402.7321707657, + "373": 469.5200728255, + "374": 538.3620672901, + "375": 613.2164923607, + "376": 690.1003241303, + "377": 772.7258559877, + "378": 857.3480996977, + "379": 947.4186531106, + "380": 1039.4453434203, + "381": 1136.605451059, + "382": 1235.6734006602, + "383": 1339.5396159638, + "384": 1445.2578489152, + "385": 1555.42025938, + "386": 1667.3715541106, + "387": 1783.3953990273, + "388": 1901.1379349192, + "389": 2022.565321175, + "390": 2145.6344222274, + "391": 2271.9861314009, + "392": 2399.8961000942, + "393": 2530.6734797112, + "394": 2662.9195138329, + "395": 2797.6064453203, + "396": 2933.6666301891, + "397": 3071.7315657587, + "398": 3211.0689339828, + "399": 3351.9669944079, + "400": 3494.0316450503, + "401": 3637.2067700549, + "402": 3781.4380388409, + "403": 3926.3251816156, + "404": 4072.153853619, + "405": 4218.1812108024, + "406": 4365.0317668761, + "407": 4511.6230352016, + "408": 4658.9159232893, + "409": 4805.4925739909, + "410": 4952.6464963538, + "411": 5098.6300583547, + "412": 5245.0642656885, + "413": 5389.878608562, + "414": 5535.0151919489, + "415": 5678.0887996422, + "416": 5821.3549712934, + "417": 5962.1231976402, + "418": 6102.9535514275, + "419": 6240.8608485487, + "420": 6378.6995914043, + "421": 6513.2017022013, + "422": 6647.5048475791, + "423": 6778.0709536682, + "424": 6908.3084684101, + "425": 7034.42328502, + "426": 7160.0811811546, + "427": 7281.2469907201, + "428": 7401.8293539386, + "429": 7517.5679703643, + "430": 7632.5989171675, + "431": 7742.4535730099, + "432": 7851.4791288031, + "433": 7955.016277923, + "434": 8057.6061686461, + "435": 8154.4171972173, + "436": 8250.1665474403, + "437": 8339.8693865615, + "438": 8428.4003173423, + "439": 8510.6409508886, + "440": 8591.6040710893, + "441": 8666.0579328519, + "442": 8739.1337180253, + "443": 8805.5069726265, + "444": 8870.4070260334, + "445": 8928.4377285601, + "446": 8984.9059193396, + "447": 9034.3650491204, + "448": 9082.1785231212, + "449": 9122.8708875664, + "450": 9161.8409468505, + "451": 9193.6059517881, + "452": 9223.5787993349, + "453": 9246.2910828024, + "454": 9267.1484294758, + "455": 9280.7183564664, + "456": 9292.3778878479, + "457": 9296.7519040592, + "458": 9299.167605305, + "459": 9294.3284484933, + "460": 9287.4907859341, + "461": 9273.4575540404, + "462": 9257.3935128065, + "463": 9234.2215885858, + "464": 9208.9945661088, + "465": 9176.7753985597, + "466": 9142.4849543722, + "467": 9101.3456978294, + "468": 9058.1271606487, + "469": 9008.230172963, + "470": 8956.2541066106, + "471": 8897.7963083966, + "472": 8837.2678386608, + "473": 8770.4799361411, + "474": 8701.6379412391, + "475": 8626.7835157524, + "476": 8549.8996835871, + "477": 8467.2741513531, + "478": 8382.651907285, + "479": 8292.5813535315, + "480": 8200.5546628978, + "481": 8103.3945549508, + "482": 8004.3266050564, + "483": 7900.460389474, + "484": 7794.7421562573, + "485": 7684.5797455402, + "486": 7572.6284505695, + "487": 7456.6046054245, + "488": 7338.8620693155, + "489": 7217.434682853, + "490": 7094.3655816041, + "491": 6968.0138722437, + "492": 6840.1039033727, + "493": 6709.3265235865, + "494": 6577.0804893039, + "495": 6442.3935576635, + "496": 6306.3333726492, + "497": 6168.2684369411, + "498": 6028.9310685853, + "499": 5888.0330080349, + "500": 5745.9683572734, + "501": 5602.7932321554, + "502": 5458.5619632615, + "503": 5313.6748203843, + "504": 5167.8461482833, + "505": 5021.8187910072, + "506": 4874.9682348452, + "507": 4728.3769664357, + "508": 4581.0840782682, + "509": 4434.5074274906, + "510": 4287.3535050554, + "511": 4141.3699429858, + "512": 3994.9357355865, + "513": 3850.1213926509, + "514": 3704.9848092047, + "515": 3561.9112014552, + "516": 3418.6450297504, + "517": 3277.8768033527, + "518": 3137.0464495169, + "519": 2999.1391523497, + "520": 2861.3004094503, + "521": 2726.7982986116, + "522": 2592.4951531941, + "523": 2461.9290470673, + "524": 2331.6915322896, + "525": 2205.5767156455, + "526": 2079.9188194784, + "527": 1958.7530098821, + "528": 1838.1706466342, + "529": 1722.4320301806, + "530": 1607.4010833508, + "531": 1497.5464274831, + "532": 1388.5208716659, + "533": 1284.9837225231, + "534": 1182.3938317782, + "535": 1085.5828031863, + "536": 989.8334529436, + "537": 900.1306138037, + "538": 811.599683005, + "539": 729.3590494418, + "540": 648.395929225, + "541": 573.942067447, + "542": 500.8662822591, + "543": 434.493027644, + "544": 369.5929742239, + "545": 311.5622716847, + "546": 255.0940808932, + "547": 205.6349511011, + "548": 157.8214770894, + "549": 117.1291126339, + "550": 78.1590533401, + "551": 46.3940483932, + "552": 16.4212008376, + "553": -6.2910826383, + "554": -27.1484293197, + "555": -40.718356318, + "556": -52.3778877067, + "557": -56.7519039249, + "558": -59.1676051773, + "559": -54.3284483718, + "560": -47.4907858186, + "561": -33.4575539305, + "562": -17.3935127019, + "563": 5.7784115137, + "564": 31.0054339858, + "565": 63.2246015303, + "566": 97.5150457134, + "567": 138.6543022521, + "568": 181.8728394288, + "569": 231.7698271107, + "570": 283.7458934595, + "571": 342.2036916701, + "572": 402.7321614026, + "573": 469.5200639192, + "574": 538.3620588183, + "575": 613.2164843021, + "576": 690.1003164649, + "577": 772.7258486963, + "578": 857.3480927619, + "579": 947.4186465132, + "580": 1039.4453371447, + "581": 1136.6054450896, + "582": 1235.673394982, + "583": 1339.5396105626, + "584": 1445.2578437775, + "585": 1555.4202544929, + "586": 1667.371549462, + "587": 1783.3953946054, + "588": 1901.137930713, + "589": 2022.5653171741, + "590": 2145.6344184216, + "591": 2271.9861277808, + "592": 2399.8960966507, + "593": 2530.6734764357, + "594": 2662.9195107172, + "595": 2797.6064423566, + "596": 2933.6666273699, + "597": 3071.7315630771, + "598": 3211.0689314319, + "599": 3351.9669919816, + "600": 3494.0316427423, + "601": 3637.2067678595, + "602": 3781.4380367526, + "603": 3926.3251796292, + "604": 4072.1538517295, + "605": 4218.181209005, + "606": 4365.0317651664, + "607": 4511.6230335753, + "608": 4658.9159217423, + "609": 4805.4925725194, + "610": 4952.6464949541, + "611": 5098.6300570233, + "612": 5245.0642644221, + "613": 5389.8786073573, + "614": 5535.015190803, + "615": 5678.0887985522, + "616": 5821.3549702566, + "617": 5962.123196654, + "618": 6102.9535504894, + "619": 6240.8608476563, + "620": 6378.6995905555, + "621": 6513.2017013939, + "622": 6647.5048468111, + "623": 6778.0709529376, + "624": 6908.3084677151, + "625": 7034.4232843589, + "626": 7160.0811805258, + "627": 7281.246990122, + "628": 7401.8293533697, + "629": 7517.5679698231, + "630": 7632.5989166527, + "631": 7742.4535725202, + "632": 7851.4791283373, + "633": 7955.0162774799, + "634": 8057.6061682247, + "635": 8154.4171968165, + "636": 8250.166547059, + "637": 8339.8693861988, + "638": 8428.4003169973, + "639": 8510.6409505604, + "640": 8591.6040707771, + "641": 8666.057932555, + "642": 8739.1337177429, + "643": 8805.5069723578, + "644": 8870.4070257779, + "645": 8928.4377283169, + "646": 8984.9059191084, + "647": 9034.3650489004, + "648": 9082.178522912, + "649": 9122.8708873674, + "650": 9161.8409466611, + "651": 9193.605951608, + "652": 9223.5787991636, + "653": 9246.2910826394, + "654": 9267.1484293208, + "655": 9280.718356319, + "656": 9292.3778877077, + "657": 9296.7519039258, + "658": 9299.1676051782, + "659": 9294.3284483726, + "660": 9287.4907858193, + "661": 9273.4575539312, + "662": 9257.3935127026, + "663": 9234.221588487, + "664": 9208.9945660148, + "665": 9176.7753984703, + "666": 9142.4849542871, + "667": 9101.3456977485, + "668": 9058.1271605718, + "669": 9008.2301728898, + "670": 8956.254106541, + "671": 8897.7963083304, + "672": 8837.2678385978, + "673": 8770.4799360812, + "674": 8701.6379411821, + "675": 8626.7835156982, + "676": 8549.8996835355, + "677": 8467.2741513041, + "678": 8382.6519072384, + "679": 8292.5813534871, + "680": 8200.5546628555, + "681": 8103.3945549107, + "682": 8004.3266050182, + "683": 7900.4603894377, + "684": 7794.7421562227, + "685": 7684.5797455073, + "686": 7572.6284505382, + "687": 7456.6046053948, + "688": 7338.8620692872, + "689": 7217.4346828261, + "690": 7094.3655815785, + "691": 6968.0138722194, + "692": 6840.1039033495, + "693": 6709.3265235645, + "694": 6577.080489283, + "695": 6442.3935576435, + "696": 6306.3333726302, + "697": 6168.268436923, + "698": 6028.9310685682, + "699": 5888.0330080185, + "700": 5745.9683572579, + "701": 5602.7932321406, + "702": 5458.5619632475, + "703": 5313.6748203709, + "704": 5167.8461482706, + "705": 5021.8187909951, + "706": 4874.9682348337, + "707": 4728.3769664247, + "708": 4581.0840782577, + "709": 4434.5074274807, + "710": 4287.3535050459, + "711": 4141.3699429768, + "712": 3994.935735578, + "713": 3850.1213926428, + "714": 3704.984809197, + "715": 3561.9112014479, + "716": 3418.6450297435, + "717": 3277.8768033461, + "718": 3137.0464495106, + "719": 2999.1391523437, + "720": 2861.3004094445, + "721": 2726.7982986062, + "722": 2592.495153189, + "723": 2461.9290470624, + "724": 2331.6915322849, + "725": 2205.5767156411, + "726": 2079.9188194742, + "727": 1958.7530098781, + "728": 1838.1706466303, + "729": 1722.4320301769, + "730": 1607.4010833473, + "731": 1497.5464274798, + "732": 1388.5208716627, + "733": 1284.9837225201, + "734": 1182.3938317753, + "735": 1085.5828031836, + "736": 989.8334529411, + "737": 900.1306138013, + "738": 811.5996830027, + "739": 729.3590494396, + "740": 648.3959292229, + "741": 573.942067445, + "742": 500.8662822572, + "743": 434.4930276422, + "744": 369.5929742222, + "745": 311.5622716831, + "746": 255.0940808916, + "747": 205.6349510996, + "748": 157.821477088, + "749": 117.1291126326, + "750": 78.1590533389, + "751": 46.394048392, + "752": 16.4212008364, + "753": -6.2910826394, + "754": -27.1484293208, + "755": -40.718356319, + "756": -52.3778877077, + "757": -56.7519039258, + "758": -59.1676051781, + "759": -54.3284483726, + "760": -47.4907858193, + "761": -33.4575539312, + "762": -17.3935127026, + "763": 5.778411513, + "764": 31.0054339852, + "765": 63.2246015297, + "766": 97.5150457129, + "767": 138.6543022515, + "768": 181.8728394283, + "769": 231.7698271102, + "770": 283.745893459, + "771": 342.2036916696, + "772": 402.7321614022, + "773": 469.5200639188, + "774": 538.3620588179, + "775": 613.2164843018, + "776": 690.1003164645, + "777": 772.7258486959, + "778": 857.3480927616, + "779": 947.4186465129, + "780": 1039.4453371445, + "781": 1136.6054450893, + "782": 1235.6733949818, + "783": 1339.5396105623, + "784": 1445.2578437773, + "785": 1555.4202544927, + "786": 1667.3715494618, + "787": 1783.3953946052, + "788": 1901.1379307128, + "789": 2022.5653171739, + "790": 2145.6344184215, + "791": 2271.9861277806, + "792": 2399.8960966505, + "793": 2530.6734764355, + "794": 2662.9195107171, + "795": 2797.6064423565, + "796": 2933.6666273698, + "797": 3071.731563077, + "798": 3211.0689314318, + "799": 3351.9669919815, + "800": 3494.0316427421, + "801": 3637.2067678594, + "802": 3781.4380367525, + "803": 3926.3251796291, + "804": 4072.1538517294, + "805": 4218.1812090049, + "806": 4365.0317651663, + "807": 4511.6230335753, + "808": 4658.9159217422, + "809": 4805.4925725193, + "810": 4952.646494954, + "811": 5098.6300570232, + "812": 5245.064264422, + "813": 5389.8786073573, + "814": 5535.015190803, + "815": 5678.0887985521, + "816": 5821.3549702565, + "817": 5962.1231966539, + "818": 6102.9535504894, + "819": 6240.8608476563, + "820": 6378.6995905554, + "821": 6513.2017013938, + "822": 6647.504846811, + "823": 6778.0709529376, + "824": 6908.3084677151, + "825": 7034.4232843589, + "826": 7160.0811805258, + "827": 7281.2469901219, + "828": 7401.8293533696, + "829": 7517.567969823, + "830": 7632.5989166527, + "831": 7742.4535725202, + "832": 7851.4791283373, + "833": 7955.0162774799, + "834": 8057.6061682246, + "835": 8154.4171968164, + "836": 8250.1665470589, + "837": 8339.8693861987, + "838": 8428.4003169973, + "839": 8510.6409505604, + "840": 8591.6040707771, + "841": 8666.057932555, + "842": 8739.1337177428, + "843": 8805.5069723578, + "844": 8870.4070257778, + "845": 8928.4377283169, + "846": 8984.9059191084, + "847": 9034.3650489004, + "848": 9082.178522912, + "849": 9122.8708873674, + "850": 9161.8409466611, + "851": 9193.605951608, + "852": 9223.5787991636, + "853": 9246.2910826394, + "854": 9267.1484293208, + "855": 9280.718356319, + "856": 9292.3778877076, + "857": 9296.7519039258, + "858": 9299.1676051781, + "859": 9294.3284483726, + "860": 9287.4907858193, + "861": 9273.4575539312, + "862": 9257.3935127026, + "863": 9234.221588487, + "864": 9208.9945660148, + "865": 9176.7753984703, + "866": 9142.4849542871, + "867": 9101.3456977485, + "868": 9058.1271605718, + "869": 9008.2301728898, + "870": 8956.254106541, + "871": 8897.7963083304, + "872": 8837.2678385978, + "873": 8770.4799360812, + "874": 8701.6379411821, + "875": 8626.7835156982, + "876": 8549.8996835355, + "877": 8467.2741513041, + "878": 8382.6519072384, + "879": 8292.5813534871, + "880": 8200.5546628555, + "881": 8103.3945549107, + "882": 8004.3266050182, + "883": 7900.4603894377, + "884": 7794.7421562227, + "885": 7684.5797455073, + "886": 7572.6284505383, + "887": 7456.6046053948, + "888": 7338.8620692872, + "889": 7217.4346828261, + "890": 7094.3655815785, + "891": 6968.0138722194, + "892": 6840.1039033495, + "893": 6709.3265235645, + "894": 6577.080489283, + "895": 6442.3935576436, + "896": 6306.3333726302, + "897": 6168.268436923, + "898": 6028.9310685682, + "899": 5888.0330080186, + "900": 5745.9683572579, + "901": 5602.7932321406, + "902": 5458.5619632475, + "903": 5313.6748203709, + "904": 5167.8461482707, + "905": 5021.8187909951, + "906": 4874.9682348337, + "907": 4728.3769664247, + "908": 4581.0840782578, + "909": 4434.5074274807, + "910": 4287.353505046, + "911": 4141.3699429768, + "912": 3994.935735578, + "913": 3850.1213926428, + "914": 3704.984809197, + "915": 3561.9112014479, + "916": 3418.6450297435, + "917": 3277.8768033461, + "918": 3137.0464495106, + "919": 2999.1391523437, + "920": 2861.3004094446, + "921": 2726.7982986062, + "922": 2592.495153189, + "923": 2461.9290470624, + "924": 2331.6915322849, + "925": 2205.5767156411, + "926": 2079.9188194742, + "927": 1958.7530098781, + "928": 1838.1706466304, + "929": 1722.4320301769, + "930": 1607.4010833473, + "931": 1497.5464274798, + "932": 1388.5208716627, + "933": 1284.9837225201, + "934": 1182.3938317754, + "935": 1085.5828031836, + "936": 989.8334529411, + "937": 900.1306138013, + "938": 811.5996830027, + "939": 729.3590494396, + "940": 648.3959292229, + "941": 573.942067445, + "942": 500.8662822572, + "943": 434.4930276422, + "944": 369.5929742222, + "945": 311.5622716831, + "946": 255.0940808916, + "947": 205.6349510996, + "948": 157.821477088, + "949": 117.1291126326, + "950": 78.1590533389, + "951": 46.394048392, + "952": 16.4212008364, + "953": -6.2910826394, + "954": -27.1484293208, + "955": -40.718356319, + "956": -52.3778877077, + "957": -56.7519039258, + "958": -59.1676051781, + "959": -54.3284483726, + "960": -47.4907858193, + "961": -33.4575539312, + "962": -17.3935127026, + "963": 5.778411513, + "964": 31.0054339852, + "965": 63.2246015297, + "966": 97.5150457129, + "967": 138.6543022515, + "968": 181.8728394283, + "969": 231.7698271102, + "970": 283.745893459, + "971": 342.2036916696, + "972": 402.7321614022, + "973": 469.5200639188, + "974": 538.3620588179, + "975": 613.2164843018, + "976": 690.1003164645, + "977": 772.7258486959, + "978": 857.3480927616, + "979": 947.4186465129, + "980": 1039.4453371445, + "981": 1136.6054450893, + "982": 1235.6733949818, + "983": 1339.5396105623, + "984": 1445.2578437773, + "985": 1555.4202544927, + "986": 1667.3715494617, + "987": 1783.3953946052, + "988": 1901.1379307129, + "989": 2022.5653171739, + "990": 2145.6344184215, + "991": 2271.9861277806, + "992": 2399.8960966505, + "993": 2530.6734764355, + "994": 2662.919510717, + "995": 2797.6064423564, + "996": 2933.6666273698, + "997": 3071.731563077, + "998": 3211.0689314318, + "999": 3351.9669919815, + "1000": 3494.0316427421, + "1001": 3637.2067678594, + "1002": 3781.4380367525, + "1003": 3926.3251796291, + "1004": 4072.1538517294, + "1005": 4218.1812090049, + "1006": 4365.0317651663, + "1007": 4511.6230335753, + "1008": 4658.9159217422, + "1009": 4805.4925725193, + "1010": 4952.646494954, + "1011": 5098.6300570232, + "1012": 5245.064264422, + "1013": 5389.8786073572, + "1014": 5535.015190803, + "1015": 5678.0887985521, + "1016": 5821.3549702565, + "1017": 5962.1231966539, + "1018": 6102.9535504894, + "1019": 6240.8608476563, + "1020": 6378.6995905554, + "1021": 6513.2017013938, + "1022": 6647.504846811, + "1023": 6778.0709529376, + "1024": 6908.3084677151, + "1025": 7034.4232843589, + "1026": 7160.0811805258, + "1027": 7281.2469901219, + "1028": 7401.8293533696, + "1029": 7517.567969823, + "1030": 7632.5989166527, + "1031": 7742.4535725202, + "1032": 7851.4791283373, + "1033": 7955.0162774799, + "1034": 8057.6061682246, + "1035": 8154.4171968164, + "1036": 8250.1665470589, + "1037": 8339.8693861987, + "1038": 8428.4003169973, + "1039": 8510.6409505604, + "1040": 8591.6040707771, + "1041": 8666.057932555, + "1042": 8739.1337177428, + "1043": 8805.5069723578, + "1044": 8870.4070257778, + "1045": 8928.4377283169, + "1046": 8984.9059191084, + "1047": 9034.3650489004, + "1048": 9082.178522912, + "1049": 9122.8708873674, + "1050": 9161.8409466611, + "1051": 9193.605951608, + "1052": 9223.5787991636, + "1053": 9246.2910826394, + "1054": 9267.1484293208, + "1055": 9280.718356319, + "1056": 9292.3778877076, + "1057": 9296.7519039258, + "1058": 9299.1676051781, + "1059": 9294.3284483726, + "1060": 9287.4907858193, + "1061": 9273.4575539312, + "1062": 9257.3935127026, + "1063": 9234.221588487, + "1064": 9208.9945660148, + "1065": 9176.7753984703, + "1066": 9142.4849542871, + "1067": 9101.3456977485, + "1068": 9058.1271605718, + "1069": 9008.2301728898, + "1070": 8956.254106541, + "1071": 8897.7963083304, + "1072": 8837.2678385978, + "1073": 8770.4799360812, + "1074": 8701.6379411821, + "1075": 8626.7835156982, + "1076": 8549.8996835355, + "1077": 8467.2741513041, + "1078": 8382.6519072384, + "1079": 8292.5813534871, + "1080": 8200.5546628555, + "1081": 8103.3945549107, + "1082": 8004.3266050182, + "1083": 7900.4603894377, + "1084": 7794.7421562227, + "1085": 7684.5797455073, + "1086": 7572.6284505383, + "1087": 7456.6046053948, + "1088": 7338.8620692872, + "1089": 7217.4346828261, + "1090": 7094.3655815785, + "1091": 6968.0138722194, + "1092": 6840.1039033495, + "1093": 6709.3265235645, + "1094": 6577.080489283, + "1095": 6442.3935576436, + "1096": 6306.3333726302, + "1097": 6168.268436923, + "1098": 6028.9310685682, + "1099": 5888.0330080186, + "1100": 5745.9683572579, + "1101": 5602.7932321406, + "1102": 5458.5619632475, + "1103": 5313.6748203709, + "1104": 5167.8461482707, + "1105": 5021.8187909951, + "1106": 4874.9682348337, + "1107": 4728.3769664247, + "1108": 4581.0840782578, + "1109": 4434.5074274807, + "1110": 4287.353505046, + "1111": 4141.3699429768, + "1112": 3994.935735578, + "1113": 3850.1213926428, + "1114": 3704.984809197, + "1115": 3561.9112014479, + "1116": 3418.6450297435, + "1117": 3277.8768033461, + "1118": 3137.0464495106, + "1119": 2999.1391523437, + "1120": 2861.3004094446, + "1121": 2726.7982986062, + "1122": 2592.495153189, + "1123": 2461.9290470624, + "1124": 2331.6915322849, + "1125": 2205.5767156411, + "1126": 2079.9188194742, + "1127": 1958.7530098781, + "1128": 1838.1706466304, + "1129": 1722.4320301769, + "1130": 1607.4010833473, + "1131": 1497.5464274798, + "1132": 1388.5208716627, + "1133": 1284.9837225201, + "1134": 1182.3938317754, + "1135": 1085.5828031836, + "1136": 989.8334529411, + "1137": 900.1306138013, + "1138": 811.5996830027, + "1139": 729.3590494396, + "1140": 648.3959292229, + "1141": 573.942067445, + "1142": 500.8662822572, + "1143": 434.4930276422, + "1144": 369.5929742222, + "1145": 311.5622716831, + "1146": 255.0940808916, + "1147": 205.6349510996, + "1148": 157.821477088, + "1149": 117.1291126326, + "1150": 78.1590533389, + "1151": 46.394048392, + "1152": 16.4212008364, + "1153": -6.2910826394, + "1154": -27.1484293208, + "1155": -40.718356319, + "1156": -52.3778877077, + "1157": -56.7519039258, + "1158": -59.1676051781, + "1159": -54.3284483726, + "1160": -47.4907858193, + "1161": -33.4575539312, + "1162": -17.3935127026, + "1163": 5.778411513, + "1164": 31.0054339852, + "1165": 63.2246015297, + "1166": 97.5150457129, + "1167": 138.6543022515, + "1168": 181.8728394283, + "1169": 231.7698271102, + "1170": 283.745893459, + "1171": 342.2036916696, + "1172": 402.7321614022, + "1173": 469.5200639188, + "1174": 538.3620588179, + "1175": 613.2164843018, + "1176": 690.1003164645, + "1177": 772.7258486959, + "1178": 857.3480927616, + "1179": 947.4186465129, + "1180": 1039.4453371445, + "1181": 1136.6054450893, + "1182": 1235.6733949818, + "1183": 1339.5396105623, + "1184": 1445.2578437773, + "1185": 1555.4202544927, + "1186": 1667.3715494617, + "1187": 1783.3953946052, + "1188": 1901.1379307129, + "1189": 2022.5653171739, + "1190": 2145.6344184215, + "1191": 2271.9861277806, + "1192": 2399.8960966505, + "1193": 2530.6734764355, + "1194": 2662.919510717, + "1195": 2797.6064423564, + "1196": 2933.6666273698, + "1197": 3071.731563077, + "1198": 3211.0689314318, + "1199": 3351.9669919815, + "1200": 3494.0316427421, + "1201": 3637.2067678594, + "1202": 3781.4380367525, + "1203": 3926.3251796291, + "1204": 4072.1538517294, + "1205": 4218.1812090049, + "1206": 4365.0317651663, + "1207": 4511.6230335753, + "1208": 4658.9159217422, + "1209": 4805.4925725193, + "1210": 4952.646494954, + "1211": 5098.6300570232, + "1212": 5245.064264422, + "1213": 5389.8786073572, + "1214": 5535.015190803, + "1215": 5678.0887985521, + "1216": 5821.3549702565, + "1217": 5962.1231966539, + "1218": 6102.9535504894, + "1219": 6240.8608476563, + "1220": 6378.6995905554, + "1221": 6513.2017013938, + "1222": 6647.504846811, + "1223": 6778.0709529376, + "1224": 6908.3084677151, + "1225": 7034.4232843589, + "1226": 7160.0811805258, + "1227": 7281.2469901219, + "1228": 7401.8293533696, + "1229": 7517.5679698231, + "1230": 7632.5989166527, + "1231": 7742.4535725202, + "1232": 7851.4791283373, + "1233": 7955.0162774799, + "1234": 8057.6061682246, + "1235": 8154.4171968164, + "1236": 8250.1665470589, + "1237": 8339.8693861987, + "1238": 8428.4003169973, + "1239": 8510.6409505604, + "1240": 8591.6040707771, + "1241": 8666.057932555, + "1242": 8739.1337177428, + "1243": 8805.5069723578, + "1244": 8870.4070257778, + "1245": 8928.4377283169, + "1246": 8984.9059191084, + "1247": 9034.3650489004, + "1248": 9082.178522912, + "1249": 9122.8708873674, + "1250": 9161.8409466611, + "1251": 9193.605951608, + "1252": 9223.5787991636, + "1253": 9246.2910826394, + "1254": 9267.1484293208, + "1255": 9280.718356319, + "1256": 9292.3778877076, + "1257": 9296.7519039258, + "1258": 9299.1676051781, + "1259": 9294.3284483726, + "1260": 9287.4907858193, + "1261": 9273.4575539312, + "1262": 9257.3935127026, + "1263": 9234.221588487, + "1264": 9208.9945660148, + "1265": 9176.7753984703, + "1266": 9142.4849542871, + "1267": 9101.3456977485, + "1268": 9058.1271605718, + "1269": 9008.2301728898, + "1270": 8956.254106541, + "1271": 8897.7963083304, + "1272": 8837.2678385978, + "1273": 8770.4799360812, + "1274": 8701.6379411821, + "1275": 8626.7835156982, + "1276": 8549.8996835355, + "1277": 8467.2741513041, + "1278": 8382.6519072384, + "1279": 8292.5813534871, + "1280": 8200.5546628555, + "1281": 8103.3945549107, + "1282": 8004.3266050182, + "1283": 7900.4603894377, + "1284": 7794.7421562227, + "1285": 7684.5797455073, + "1286": 7572.6284505383, + "1287": 7456.6046053948, + "1288": 7338.8620692872, + "1289": 7217.4346828261, + "1290": 7094.3655815785, + "1291": 6968.0138722194, + "1292": 6840.1039033495, + "1293": 6709.3265235645, + "1294": 6577.080489283, + "1295": 6442.3935576436, + "1296": 6306.3333726302, + "1297": 6168.268436923, + "1298": 6028.9310685682, + "1299": 5888.0330080186, + "1300": 5745.9683572579, + "1301": 5602.7932321406, + "1302": 5458.5619632475, + "1303": 5313.6748203709, + "1304": 5167.8461482706, + "1305": 5021.8187909951, + "1306": 4874.9682348337, + "1307": 4728.3769664247, + "1308": 4581.0840782578, + "1309": 4434.5074274807, + "1310": 4287.353505046, + "1311": 4141.3699429768, + "1312": 3994.935735578, + "1313": 3850.1213926428, + "1314": 3704.984809197, + "1315": 3561.9112014479, + "1316": 3418.6450297435, + "1317": 3277.8768033461, + "1318": 3137.0464495106, + "1319": 2999.1391523437, + "1320": 2861.3004094446, + "1321": 2726.7982986062, + "1322": 2592.495153189, + "1323": 2461.9290470624, + "1324": 2331.6915322849, + "1325": 2205.5767156411, + "1326": 2079.9188194742, + "1327": 1958.7530098781, + "1328": 1838.1706466304, + "1329": 1722.4320301769, + "1330": 1607.4010833473, + "1331": 1497.5464274798, + "1332": 1388.5208716627, + "1333": 1284.9837225201, + "1334": 1182.3938317754, + "1335": 1085.5828031836, + "1336": 989.8334529411, + "1337": 900.1306138013, + "1338": 811.5996830027, + "1339": 729.3590494396, + "1340": 648.3959292229, + "1341": 573.942067445, + "1342": 500.8662822572, + "1343": 434.4930276422, + "1344": 369.5929742222, + "1345": 311.5622716831, + "1346": 255.0940808916, + "1347": 205.6349510996, + "1348": 157.821477088, + "1349": 117.1291126326, + "1350": 78.1590533389, + "1351": 46.394048392, + "1352": 16.4212008364, + "1353": -6.2910826394, + "1354": -27.1484293208, + "1355": -40.718356319, + "1356": -52.3778877077, + "1357": -56.7519039258, + "1358": -59.1676051781, + "1359": -54.3284483726, + "1360": -47.4907858193, + "1361": -33.4575539312, + "1362": -17.3935127026, + "1363": 5.778411513, + "1364": 31.0054339852, + "1365": 63.2246015297, + "1366": 97.5150457129, + "1367": 138.6543022515, + "1368": 181.8728394283, + "1369": 231.7698271102, + "1370": 283.745893459, + "1371": 342.2036916696, + "1372": 402.7321614022, + "1373": 469.5200639188, + "1374": 538.3620588179, + "1375": 613.2164843018, + "1376": 690.1003164645, + "1377": 772.7258486959, + "1378": 857.3480927616, + "1379": 947.4186465129, + "1380": 1039.4453371445, + "1381": 1136.6054450893, + "1382": 1235.6733949818, + "1383": 1339.5396105623, + "1384": 1445.2578437773, + "1385": 1555.4202544927, + "1386": 1667.3715494617, + "1387": 1783.3953946052, + "1388": 1901.1379307129, + "1389": 2022.5653171739, + "1390": 2145.6344184215, + "1391": 2271.9861277806, + "1392": 2399.8960966505, + "1393": 2530.6734764355, + "1394": 2662.919510717, + "1395": 2797.6064423564, + "1396": 2933.6666273698, + "1397": 3071.731563077, + "1398": 3211.0689314318, + "1399": 3351.9669919815, + "1400": 3494.0316427421, + "1401": 3637.2067678594, + "1402": 3781.4380367525, + "1403": 3926.3251796291, + "1404": 4072.1538517294, + "1405": 4218.1812090049, + "1406": 4365.0317651663, + "1407": 4511.6230335753, + "1408": 4658.9159217422, + "1409": 4805.4925725193, + "1410": 4952.646494954, + "1411": 5098.6300570232, + "1412": 5245.064264422, + "1413": 5389.8786073572, + "1414": 5535.015190803, + "1415": 5678.0887985521, + "1416": 5821.3549702565, + "1417": 5962.1231966539, + "1418": 6102.9535504894, + "1419": 6240.8608476563, + "1420": 6378.6995905554, + "1421": 6513.2017013938, + "1422": 6647.504846811, + "1423": 6778.0709529376, + "1424": 6908.3084677151, + "1425": 7034.4232843589, + "1426": 7160.0811805258, + "1427": 7281.2469901219, + "1428": 7401.8293533696, + "1429": 7517.5679698231, + "1430": 7632.5989166527, + "1431": 7742.4535725202, + "1432": 7851.4791283373, + "1433": 7955.0162774799, + "1434": 8057.6061682246, + "1435": 8154.4171968164, + "1436": 8250.1665470589, + "1437": 8339.8693861987, + "1438": 8428.4003169973, + "1439": 8510.6409505604, + "1440": 8591.6040707771, + "1441": 8666.057932555, + "1442": 8739.1337177428, + "1443": 8805.5069723578, + "1444": 8870.4070257778, + "1445": 8928.4377283169, + "1446": 8984.9059191084, + "1447": 9034.3650489004, + "1448": 9082.178522912, + "1449": 9122.8708873674, + "1450": 9161.8409466611, + "1451": 9193.605951608, + "1452": 9223.5787991636, + "1453": 9246.2910826394, + "1454": 9267.1484293208, + "1455": 9280.718356319, + "1456": 9292.3778877076, + "1457": 9296.7519039258, + "1458": 9299.1676051781, + "1459": 9294.3284483726, + "1460": 9287.4907858193, + "1461": 9273.4575539312, + "1462": 9257.3935127026, + "1463": 9234.221588487, + "1464": 9208.9945660148, + "1465": 9176.7753984703, + "1466": 9142.4849542871, + "1467": 9101.3456977485, + "1468": 9058.1271605718, + "1469": 9008.2301728898, + "1470": 8956.254106541, + "1471": 8897.7963083304, + "1472": 8837.2678385978, + "1473": 8770.4799360812, + "1474": 8701.6379411821, + "1475": 8626.7835156982, + "1476": 8549.8996835355, + "1477": 8467.2741513041, + "1478": 8382.6519072384, + "1479": 8292.5813534871, + "1480": 8200.5546628555, + "1481": 8103.3945549107, + "1482": 8004.3266050182, + "1483": 7900.4603894377, + "1484": 7794.7421562227, + "1485": 7684.5797455073, + "1486": 7572.6284505383, + "1487": 7456.6046053948, + "1488": 7338.8620692872, + "1489": 7217.4346828261, + "1490": 7094.3655815785, + "1491": 6968.0138722194, + "1492": 6840.1039033495, + "1493": 6709.3265235645, + "1494": 6577.080489283, + "1495": 6442.3935576436, + "1496": 6306.3333726302, + "1497": 6168.268436923, + "1498": 6028.9310685682, + "1499": 5888.0330080186, + "1500": 5745.9683572579, + "1501": 5602.7932321406, + "1502": 5458.5619632475, + "1503": 5313.6748203709, + "1504": 5167.8461482706, + "1505": 5021.8187909951, + "1506": 4874.9682348337, + "1507": 4728.3769664247, + "1508": 4581.0840782578, + "1509": 4434.5074274807, + "1510": 4287.353505046, + "1511": 4141.3699429768, + "1512": 3994.935735578, + "1513": 3850.1213926428, + "1514": 3704.984809197, + "1515": 3561.9112014479, + "1516": 3418.6450297435, + "1517": 3277.8768033461, + "1518": 3137.0464495106, + "1519": 2999.1391523437, + "1520": 2861.3004094446, + "1521": 2726.7982986062, + "1522": 2592.495153189, + "1523": 2461.9290470624, + "1524": 2331.6915322849, + "1525": 2205.5767156411, + "1526": 2079.9188194742, + "1527": 1958.7530098781, + "1528": 1838.1706466304, + "1529": 1722.4320301769, + "1530": 1607.4010833473, + "1531": 1497.5464274798, + "1532": 1388.5208716627, + "1533": 1284.9837225201, + "1534": 1182.3938317754, + "1535": 1085.5828031836, + "1536": 989.8334529411, + "1537": 900.1306138013, + "1538": 811.5996830027, + "1539": 729.3590494396, + "1540": 648.3959292229, + "1541": 573.942067445, + "1542": 500.8662822572, + "1543": 434.4930276422, + "1544": 369.5929742222, + "1545": 311.5622716831, + "1546": 255.0940808916, + "1547": 205.6349510996, + "1548": 157.821477088, + "1549": 117.1291126326, + "1550": 78.1590533389, + "1551": 46.394048392, + "1552": 16.4212008364, + "1553": -6.2910826394, + "1554": -27.1484293208, + "1555": -40.718356319, + "1556": -52.3778877077, + "1557": -56.7519039258, + "1558": -59.1676051781, + "1559": -54.3284483726, + "1560": -47.4907858193, + "1561": -33.4575539312, + "1562": -17.3935127026, + "1563": 5.778411513, + "1564": 31.0054339852, + "1565": 63.2246015297, + "1566": 97.5150457129, + "1567": 138.6543022515, + "1568": 181.8728394283, + "1569": 231.7698271102, + "1570": 283.745893459, + "1571": 342.2036916696, + "1572": 402.7321614022, + "1573": 469.5200639188, + "1574": 538.3620588179, + "1575": 613.2164843018, + "1576": 690.1003164645, + "1577": 772.7258486959, + "1578": 857.3480927616, + "1579": 947.4186465129, + "1580": 1039.4453371445, + "1581": 1136.6054450893, + "1582": 1235.6733949818, + "1583": 1339.5396105623, + "1584": 1445.2578437773, + "1585": 1555.4202544927, + "1586": 1667.3715494617, + "1587": 1783.3953946052, + "1588": 1901.1379307128, + "1589": 2022.5653171739, + "1590": 2145.6344184215, + "1591": 2271.9861277806, + "1592": 2399.8960966505, + "1593": 2530.6734764355, + "1594": 2662.919510717, + "1595": 2797.6064423564, + "1596": 2933.6666273698, + "1597": 3071.731563077, + "1598": 3211.0689314318, + "1599": 3351.9669919815, + "1600": 3494.0316427421, + "1601": 3637.2067678594, + "1602": 3781.4380367526, + "1603": 3926.3251796291, + "1604": 4072.1538517294, + "1605": 4218.1812090049, + "1606": 4365.0317651663, + "1607": 4511.6230335752, + "1608": 4658.9159217423, + "1609": 4805.4925725194, + "1610": 4952.6464949541, + "1611": 5098.6300570232, + "1612": 5245.064264422, + "1613": 5389.8786073573, + "1614": 5535.015190803, + "1615": 5678.0887985522, + "1616": 5821.3549702565, + "1617": 5962.123196654, + "1618": 6102.9535504894, + "1619": 6240.8608476563, + "1620": 6378.6995905555, + "1621": 6513.2017013938, + "1622": 6647.504846811, + "1623": 6778.0709529376, + "1624": 6908.3084677151, + "1625": 7034.4232843589, + "1626": 7160.0811805258, + "1627": 7281.246990122, + "1628": 7401.8293533696, + "1629": 7517.5679698231, + "1630": 7632.5989166527, + "1631": 7742.4535725202, + "1632": 7851.4791283373, + "1633": 7955.0162774799, + "1634": 8057.6061682247, + "1635": 8154.4171968164, + "1636": 8250.166547059, + "1637": 8339.8693861987, + "1638": 8428.4003169973, + "1639": 8510.6409505604, + "1640": 8591.6040707771, + "1641": 8666.057932555, + "1642": 8739.1337177429, + "1643": 8805.5069723578, + "1644": 8870.4070257778, + "1645": 8928.4377283169, + "1646": 8984.9059191084, + "1647": 9034.3650489004, + "1648": 9082.178522912, + "1649": 9122.8708873674, + "1650": 9161.8409466611, + "1651": 9193.605951608, + "1652": 9223.5787991636, + "1653": 9246.2910826394, + "1654": 9267.1484293208, + "1655": 9280.718356319, + "1656": 9292.3778877076, + "1657": 9296.7519039259, + "1658": 9299.1676051781, + "1659": 9294.3284483726, + "1660": 9287.4907858193, + "1661": 9273.4575539312, + "1662": 9257.3935127026, + "1663": 9234.221588487, + "1664": 9208.9945660148, + "1665": 9176.7753984703, + "1666": 9142.4849542871, + "1667": 9101.3456977485, + "1668": 9058.1271605717, + "1669": 9008.2301728898, + "1670": 8956.254106541, + "1671": 8897.7963083304, + "1672": 8837.2678385978, + "1673": 8770.4799360812, + "1674": 8701.6379411821, + "1675": 8626.7835156982, + "1676": 8549.8996835355, + "1677": 8467.274151304, + "1678": 8382.6519072384, + "1679": 8292.581353487, + "1680": 8200.5546628556, + "1681": 8103.3945549107, + "1682": 8004.3266050183, + "1683": 7900.4603894376, + "1684": 7794.7421562227, + "1685": 7684.5797455073, + "1686": 7572.6284505382, + "1687": 7456.6046053948, + "1688": 7338.8620692871, + "1689": 7217.4346828261, + "1690": 7094.3655815785, + "1691": 6968.0138722194, + "1692": 6840.1039033495, + "1693": 6709.3265235644, + "1694": 6577.0804892829, + "1695": 6442.3935576435, + "1696": 6306.3333726302, + "1697": 6168.268436923, + "1698": 6028.9310685682, + "1699": 5888.0330080185, + "1700": 5745.9683572578, + "1701": 5602.7932321406, + "1702": 5458.5619632474, + "1703": 5313.6748203709, + "1704": 5167.8461482706, + "1705": 5021.8187909951, + "1706": 4874.9682348336, + "1707": 4728.3769664248, + "1708": 4581.0840782577, + "1709": 4434.5074274806, + "1710": 4287.3535050459, + "1711": 4141.3699429768, + "1712": 3994.935735578, + "1713": 3850.1213926427, + "1714": 3704.984809197, + "1715": 3561.9112014478, + "1716": 3418.6450297434, + "1717": 3277.8768033461, + "1718": 3137.0464495106, + "1719": 2999.1391523437, + "1720": 2861.3004094445, + "1721": 2726.7982986062, + "1722": 2592.4951531889, + "1723": 2461.9290470624, + "1724": 2331.6915322849, + "1725": 2205.5767156411, + "1726": 2079.9188194742, + "1727": 1958.753009878, + "1728": 1838.1706466303, + "1729": 1722.4320301769, + "1730": 1607.4010833473, + "1731": 1497.5464274798, + "1732": 1388.5208716627, + "1733": 1284.9837225201, + "1734": 1182.3938317753, + "1735": 1085.5828031836, + "1736": 989.833452941, + "1737": 900.1306138013, + "1738": 811.5996830027, + "1739": 729.3590494396, + "1740": 648.3959292229, + "1741": 573.942067445, + "1742": 500.8662822572, + "1743": 434.4930276422, + "1744": 369.5929742222, + "1745": 311.5622716831, + "1746": 255.0940808916, + "1747": 205.6349510996, + "1748": 157.821477088, + "1749": 117.1291126326, + "1750": 78.1590533389, + "1751": 46.394048392, + "1752": 16.4212008364, + "1753": -6.2910826394, + "1754": -27.1484293208, + "1755": -40.718356319, + "1756": -52.3778877077, + "1757": -56.7519039259, + "1758": -59.1676051781, + "1759": -54.3284483726, + "1760": -47.4907858193, + "1761": -33.4575539312, + "1762": -17.3935127026, + "1763": 5.7784115131, + "1764": 31.0054339852, + "1765": 63.2246015297, + "1766": 97.5150457129, + "1767": 138.6543022515, + "1768": 181.8728394283, + "1769": 231.7698271102, + "1770": 283.745893459, + "1771": 342.2036916696, + "1772": 402.7321614022, + "1773": 469.5200639188, + "1774": 538.3620588179, + "1775": 613.2164843018, + "1776": 690.1003164645, + "1777": 772.725848696, + "1778": 857.3480927616, + "1779": 947.418646513, + "1780": 1039.4453371444, + "1781": 1136.6054450893, + "1782": 1235.6733949817, + "1783": 1339.5396105624, + "1784": 1445.2578437773, + "1785": 1555.4202544927, + "1786": 1667.3715494618, + "1787": 1783.3953946052, + "1788": 1901.1379307129, + "1789": 2022.5653171739, + "1790": 2145.6344184215, + "1791": 2271.9861277807, + "1792": 2399.8960966505, + "1793": 2530.6734764356, + "1794": 2662.919510717, + "1795": 2797.6064423565, + "1796": 2933.6666273698, + "1797": 3071.731563077, + "1798": 3211.0689314318, + "1799": 3351.9669919815, + "1800": 3494.0316427422, + "1801": 3637.2067678594, + "1802": 3781.4380367526, + "1803": 3926.3251796291, + "1804": 4072.1538517294, + "1805": 4218.1812090049, + "1806": 4365.0317651664, + "1807": 4511.6230335753, + "1808": 4658.9159217423, + "1809": 4805.4925725194, + "1810": 4952.6464949541, + "1811": 5098.6300570232, + "1812": 5245.064264422, + "1813": 5389.8786073573, + "1814": 5535.015190803, + "1815": 5678.0887985522, + "1816": 5821.3549702566, + "1817": 5962.1231966539, + "1818": 6102.9535504894, + "1819": 6240.8608476563, + "1820": 6378.6995905555, + "1821": 6513.2017013938, + "1822": 6647.5048468111, + "1823": 6778.0709529376, + "1824": 6908.3084677151, + "1825": 7034.4232843589, + "1826": 7160.0811805258, + "1827": 7281.246990122, + "1828": 7401.8293533696, + "1829": 7517.5679698231, + "1830": 7632.5989166527, + "1831": 7742.4535725202, + "1832": 7851.4791283373, + "1833": 7955.0162774799, + "1834": 8057.6061682247, + "1835": 8154.4171968164, + "1836": 8250.166547059, + "1837": 8339.8693861987, + "1838": 8428.4003169973, + "1839": 8510.6409505604, + "1840": 8591.6040707771, + "1841": 8666.057932555, + "1842": 8739.1337177428, + "1843": 8805.5069723578, + "1844": 8870.4070257778, + "1845": 8928.4377283169, + "1846": 8984.9059191084, + "1847": 9034.3650489004, + "1848": 9082.178522912, + "1849": 9122.8708873674, + "1850": 9161.8409466611, + "1851": 9193.605951608, + "1852": 9223.5787991636, + "1853": 9246.2910826394, + "1854": 9267.1484293208, + "1855": 9280.718356319, + "1856": 9292.3778877076, + "1857": 9296.7519039259, + "1858": 9299.1676051781, + "1859": 9294.3284483726, + "1860": 9287.4907858193, + "1861": 9273.4575539312, + "1862": 9257.3935127026, + "1863": 9234.221588487, + "1864": 9208.9945660148, + "1865": 9176.7753984703, + "1866": 9142.4849542871, + "1867": 9101.3456977485, + "1868": 9058.1271605717, + "1869": 9008.2301728898, + "1870": 8956.254106541, + "1871": 8897.7963083304, + "1872": 8837.2678385978, + "1873": 8770.4799360812, + "1874": 8701.6379411821, + "1875": 8626.7835156982, + "1876": 8549.8996835355, + "1877": 8467.274151304, + "1878": 8382.6519072384, + "1879": 8292.581353487, + "1880": 8200.5546628555, + "1881": 8103.3945549107, + "1882": 8004.3266050183, + "1883": 7900.4603894376, + "1884": 7794.7421562227, + "1885": 7684.5797455073, + "1886": 7572.6284505382, + "1887": 7456.6046053948, + "1888": 7338.8620692871, + "1889": 7217.4346828261, + "1890": 7094.3655815785, + "1891": 6968.0138722193, + "1892": 6840.1039033495, + "1893": 6709.3265235644, + "1894": 6577.080489283, + "1895": 6442.3935576435, + "1896": 6306.3333726302, + "1897": 6168.268436923, + "1898": 6028.9310685682, + "1899": 5888.0330080185, + "1900": 5745.9683572578, + "1901": 5602.7932321406, + "1902": 5458.5619632474, + "1903": 5313.6748203709, + "1904": 5167.8461482706, + "1905": 5021.8187909951, + "1906": 4874.9682348336, + "1907": 4728.3769664247, + "1908": 4581.0840782577, + "1909": 4434.5074274806, + "1910": 4287.3535050459, + "1911": 4141.3699429768, + "1912": 3994.935735578, + "1913": 3850.1213926427, + "1914": 3704.984809197, + "1915": 3561.9112014478, + "1916": 3418.6450297434, + "1917": 3277.8768033461, + "1918": 3137.0464495106, + "1919": 2999.1391523437, + "1920": 2861.3004094445, + "1921": 2726.7982986062, + "1922": 2592.4951531889, + "1923": 2461.9290470624, + "1924": 2331.6915322849, + "1925": 2205.5767156411, + "1926": 2079.9188194742, + "1927": 1958.753009878, + "1928": 1838.1706466303, + "1929": 1722.4320301769, + "1930": 1607.4010833473, + "1931": 1497.5464274798, + "1932": 1388.5208716627, + "1933": 1284.9837225201, + "1934": 1182.3938317753, + "1935": 1085.5828031836, + "1936": 989.833452941, + "1937": 900.1306138013, + "1938": 811.5996830027, + "1939": 729.3590494396, + "1940": 648.3959292229, + "1941": 573.942067445, + "1942": 500.8662822572, + "1943": 434.4930276422, + "1944": 369.5929742222, + "1945": 311.5622716831, + "1946": 255.0940808916, + "1947": 205.6349510996, + "1948": 157.821477088, + "1949": 117.1291126326, + "1950": 78.1590533389, + "1951": 46.394048392, + "1952": 16.4212008364, + "1953": -6.2910826394, + "1954": -27.1484293208, + "1955": -40.718356319, + "1956": -52.3778877077, + "1957": -56.7519039259, + "1958": -59.1676051781, + "1959": -54.3284483726, + "1960": -47.4907858193, + "1961": -33.4575539312, + "1962": -17.3935127026, + "1963": 5.7784115131, + "1964": 31.0054339852, + "1965": 63.2246015297, + "1966": 97.5150457129, + "1967": 138.6543022515, + "1968": 181.8728394283, + "1969": 231.7698271102, + "1970": 283.745893459, + "1971": 342.2036916696, + "1972": 402.7321614022, + "1973": 469.5200639188, + "1974": 538.3620588179, + "1975": 613.2164843018, + "1976": 690.1003164645, + "1977": 772.725848696, + "1978": 857.3480927616, + "1979": 947.418646513, + "1980": 1039.4453371444, + "1981": 1136.6054450893, + "1982": 1235.6733949817, + "1983": 1339.5396105624, + "1984": 1445.2578437773, + "1985": 1555.4202544927, + "1986": 1667.3715494618, + "1987": 1783.3953946052, + "1988": 1901.1379307129, + "1989": 2022.5653171739, + "1990": 2145.6344184215, + "1991": 2271.9861277807, + "1992": 2399.8960966505, + "1993": 2530.6734764356, + "1994": 2662.919510717, + "1995": 2797.6064423565, + "1996": 2933.6666273698, + "1997": 3071.731563077, + "1998": 3211.0689314318, + "1999": 3351.9669919815, + "2000": 3494.0316427422 + }, + "pressure_out": { + "0": 4400.0000020489, + "1": 4480.5268045074, + "2": 4564.6278696844, + "3": 4651.9969984662, + "4": 4742.726139727, + "5": 4836.0235821984, + "6": 4932.3379854693, + "7": 5030.5725667047, + "8": 5131.4939252043, + "9": 5233.7100545083, + "10": 5338.29965854, + "11": 5443.5799236145, + "12": 5550.9360607329, + "13": 5658.3998777294, + "14": 5767.6564601506, + "15": 5876.4588984665, + "16": 5986.7844495699, + "17": 6096.1153526121, + "18": 6206.7122798624, + "19": 6315.7956494413, + "20": 6425.899765196, + "21": 6533.9933740472, + "22": 6642.8736297705, + "23": 6749.2688291945, + "24": 6856.227231263, + "25": 6960.2489233835, + "26": 7064.6206010815, + "27": 7165.6273475472, + "28": 7266.780746079, + "29": 7364.1649871895, + "30": 7461.5021606037, + "31": 7554.6905208374, + "32": 7647.6475016813, + "33": 7736.1011594699, + "34": 7824.1483837859, + "35": 7907.3634851176, + "36": 7990.0062530718, + "37": 8067.5143501388, + "38": 8144.2933041482, + "39": 8215.6618017879, + "40": 8286.1534054962, + "41": 8350.9859996204, + "42": 8414.8030024752, + "43": 8472.7400960525, + "44": 8529.5319695628, + "45": 8580.2510530149, + "46": 8629.7043860339, + "47": 8672.9203701428, + "48": 8714.7592117189, + "49": 8750.2247023195, + "50": 8784.2108418116, + "51": 8811.7163466688, + "52": 8837.6495219177, + "53": 8857.0235812671, + "54": 8874.7416066744, + "55": 8885.850839938, + "56": 8895.2296473126, + "57": 8897.9787094983, + "58": 8898.9322955107, + "59": 8893.2637377589, + "60": 8885.7440127798, + "61": 8871.6380424429, + "62": 8855.6345764514, + "63": 8833.1087129808, + "64": 8808.6483750985, + "65": 8777.7569988681, + "66": 8744.9034879213, + "67": 8705.737279943, + "68": 8664.5905442657, + "69": 8617.2758155467, + "70": 8567.9713610215, + "71": 8512.6692710775, + "72": 8455.3773571669, + "73": 8392.283021942, + "74": 8327.2077461861, + "75": 8256.5492363354, + "76": 8183.927508491, + "77": 8105.9647396603, + "78": 8026.0651473229, + "79": 7941.0886647038, + "80": 7854.210232892, + "81": 7762.5398929523, + "82": 7669.0107407439, + "83": 7570.9942936151, + "84": 7471.1701915018, + "85": 7367.1817680645, + "86": 7261.4446002388, + "87": 7151.8831084697, + "88": 7040.6392447749, + "89": 6925.9266804113, + "90": 6809.6052631689, + "91": 6690.1849402049, + "92": 6569.2360915842, + "93": 6445.5707985415, + "94": 6320.4637545552, + "95": 6193.0338428602, + "96": 6064.2550204531, + "97": 5933.5564316119, + "98": 5801.6074356597, + "99": 5668.1496742456, + "100": 5533.5452515939, + "101": 5397.8493113471, + "102": 5261.115259302, + "103": 5123.7115098951, + "104": 4985.3825468172, + "105": 4846.8085890546, + "106": 4707.4261949167, + "107": 4568.2246923145, + "108": 4428.3349272535, + "109": 4289.0514220899, + "110": 4149.2027311155, + "111": 4010.3834531468, + "112": 3871.1244652696, + "113": 3733.3141413767, + "114": 3595.1914714753, + "115": 3458.9311445379, + "116": 3322.4872063111, + "117": 3188.3120716043, + "118": 3054.0829099405, + "119": 2922.5201773081, + "120": 2791.0333283573, + "121": 2662.6001183419, + "122": 2534.3725054904, + "123": 2409.5737874908, + "124": 2285.1096613219, + "125": 2164.4362417056, + "126": 2044.225171875, + "127": 1928.1517397939, + "128": 1812.6666665659, + "129": 1701.6499050163, + "130": 1591.3452579845, + "131": 1485.8220274106, + "132": 1381.1319186812, + "133": 1281.5175201485, + "134": 1182.854018982, + "135": 1089.5405436487, + "136": 997.2920392474, + "137": 910.6468105317, + "138": 825.176469326, + "139": 745.5405838125, + "140": 667.1849072336, + "141": 594.8718799839, + "142": 523.9393683253, + "143": 459.2338878526, + "144": 396.0038154125, + "145": 339.1606131564, + "146": 283.8819194217, + "147": 235.1247581157, + "148": 188.0150592954, + "149": 147.5358441555, + "150": 108.7805689061, + "151": 76.7385850911, + "152": 46.4902377898, + "153": 23.0115170907, + "154": 1.3890715141, + "155": -13.4341092741, + "156": -26.3456835173, + "157": -32.4551706054, + "158": -36.6052470584, + "159": -33.9772426397, + "160": -29.3497410984, + "161": -17.9949004072, + "162": -4.6083533676, + "163": 15.4282545306, + "164": 37.520772309, + "165": 66.1598398144, + "166": 96.8709183254, + "167": 133.9992099687, + "168": 173.2074467143, + "169": 218.678243941, + "170": 266.2287210499, + "171": 319.8623993473, + "172": 375.5672931536, + "173": 437.1520292236, + "174": 500.7913498821, + "175": 570.0839560524, + "176": 641.4064142554, + "177": 718.1332968192, + "178": 796.8572941788, + "179": 880.7155318683, + "180": 966.5302710425, + "181": 1057.1888093658, + "182": 1149.7555195353, + "183": 1246.8564762525, + "184": 1345.8097491004, + "185": 1448.9698256759, + "186": 1553.9190565882, + "187": 1662.7310500394, + "188": 1773.2619788292, + "189": 1887.2963879968, + "190": 2002.9727330639, + "191": 2121.7794529564, + "192": 2242.1446324253, + "193": 2365.254729944, + "194": 2489.8336629812, + "195": 2616.7612270119, + "196": 2745.0622082074, + "197": 2875.3062667706, + "198": 3006.8229061814, + "199": 3139.8694030704, + "200": 3274.0826242635, + "201": 3409.4064473647, + "202": 3545.7865355709, + "203": 3682.8535888576, + "204": 3820.8622811479, + "205": 3959.1315921648, + "206": 4098.2242013978, + "207": 4237.1500559182, + "208": 4376.777620072, + "209": 4515.8117154978, + "210": 4655.4231639014, + "211": 4794.0167729052, + "212": 4933.0611008182, + "213": 5070.6672366863, + "214": 5208.5956796406, + "215": 5344.6712547691, + "216": 5480.9394540913, + "217": 5614.9474231138, + "218": 5749.0175740787, + "219": 5880.4290531663, + "220": 6011.7720273023, + "221": 6140.0683812703, + "222": 6268.1658144391, + "223": 6392.840703422, + "224": 6517.1870414303, + "225": 6637.7484190459, + "226": 6757.8529127158, + "227": 6873.8249678316, + "228": 6989.2136096529, + "229": 7100.1386440909, + "230": 7210.3560388128, + "231": 7315.7962735803, + "232": 7420.4074353582, + "233": 7519.9467382755, + "234": 7618.5388072799, + "235": 7711.7843351869, + "236": 7803.9682068988, + "237": 7890.5519559566, + "238": 7975.9638167187, + "239": 8055.5440746897, + "240": 8133.8468374518, + "241": 8206.1095322244, + "242": 8276.9941668178, + "243": 8341.6541058529, + "244": 8404.8408585419, + "245": 8461.6428543512, + "246": 8516.8823518482, + "247": 8565.6022290598, + "248": 8612.6764626474, + "249": 8653.1219426851, + "250": 8691.8451285604, + "251": 8723.8565884446, + "252": 8754.0759008899, + "253": 8777.527003165, + "254": 8799.1231776506, + "255": 8813.9213689528, + "256": 8826.8091727933, + "257": 8832.8960490905, + "258": 8837.024617794, + "259": 8834.3761548565, + "260": 8829.7291928418, + "261": 8818.355841034, + "262": 8804.9516859213, + "263": 8784.8983289395, + "264": 8762.7898791624, + "265": 8734.1356568825, + "266": 8703.4101629052, + "267": 8666.2681590375, + "268": 8627.0468790026, + "269": 8581.5636747884, + "270": 8534.0013959528, + "271": 8480.3564916622, + "272": 8424.6409195099, + "273": 8363.0460260247, + "274": 8299.3970434688, + "275": 8230.0952467458, + "276": 8158.7640463404, + "277": 8082.0288480527, + "278": 8003.296940642, + "279": 7919.4311787844, + "280": 7833.6092824997, + "281": 7742.9439362175, + "282": 7650.3707502075, + "283": 7553.2636335662, + "284": 7454.304501299, + "285": 7351.1388511493, + "286": 7246.1843185631, + "287": 7137.3672820741, + "288": 7026.8315562653, + "289": 6912.7925840958, + "290": 6797.1118986275, + "291": 6678.3010500754, + "292": 6557.9319433587, + "293": 6434.8181101785, + "294": 6310.2356237198, + "295": 6183.304679617, + "296": 6055.0004832425, + "297": 5924.7533663491, + "298": 5793.2338178052, + "299": 5660.1845537018, + "300": 5525.9687002896, + "301": 5390.6423733791, + "302": 5254.2599035091, + "303": 5117.1905847454, + "304": 4979.1797374967, + "305": 4840.9083766486, + "306": 4701.813817583, + "307": 4562.8861083504, + "308": 4423.2567799644, + "309": 4284.2210063724, + "310": 4144.6079616699, + "311": 4006.012834241, + "312": 3866.9670619775, + "313": 3729.3595522198, + "314": 3591.4298023995, + "315": 3455.352984159, + "316": 3319.0836023686, + "317": 3185.0745085633, + "318": 3051.0032876867, + "319": 2919.5907908819, + "320": 2788.2468486768, + "321": 2659.9495738659, + "322": 2531.8512647765, + "323": 2407.1755426037, + "324": 2282.8284120517, + "325": 2162.2662805558, + "326": 2042.1610697827, + "327": 1926.1883325469, + "328": 1810.7990418818, + "329": 1699.8733902533, + "330": 1589.6554084497, + "331": 1484.2146152407, + "332": 1379.6029222642, + "333": 1280.0631140622, + "334": 1181.4705644228, + "335": 1088.2245793282, + "336": 996.0402727319, + "337": 909.456110005, + "338": 824.0438557543, + "339": 744.4632234905, + "340": 666.1601046951, + "341": 593.8970712579, + "342": 523.0121145212, + "343": 458.3518690582, + "344": 395.16482489, + "345": 338.3625518211, + "346": 283.1227905902, + "347": 234.4026625107, + "348": 187.3281902934, + "349": 146.8824832673, + "350": 108.159081477, + "351": 76.147416211, + "352": 45.9279084032, + "353": 22.4766202961, + "354": 0.8802690441, + "355": -13.9180904011, + "356": -26.806054182, + "357": -32.893082617, + "358": -37.0217960365, + "359": -34.3734707552, + "360": -29.7266396813, + "361": -18.3534124265, + "362": -4.9493757906, + "363": 15.1038684941, + "364": 37.2122110719, + "365": 65.8663313822, + "366": 96.5917283643, + "367": 133.7336399686, + "368": 172.954832241, + "369": 218.4379529741, + "370": 266.0001524013, + "371": 319.6449811572, + "372": 375.3604814596, + "373": 436.9553066002, + "374": 500.6042241455, + "375": 569.9059590294, + "376": 641.2371006124, + "377": 717.9722429474, + "378": 796.7040971349, + "379": 880.5698083658, + "380": 966.3916564934, + "381": 1057.0569569679, + "382": 1149.630099405, + "383": 1246.7371745989, + "384": 1345.6962674407, + "385": 1448.8618800883, + "386": 1553.8163770019, + "387": 1662.6333795585, + "388": 1773.1690730904, + "389": 1887.2080145575, + "390": 2002.8886708212, + "391": 2121.6994915934, + "392": 2242.0685718854, + "393": 2365.18237993, + "394": 2489.7648424794, + "395": 2616.6957638391, + "396": 2744.9999385801, + "397": 2875.2470348954, + "398": 3006.7665638651, + "399": 3139.8158093491, + "400": 3274.0316450503, + "401": 3409.3579551138, + "402": 3545.7404089586, + "403": 3682.8097124789, + "404": 3820.8205452279, + "405": 3959.0918922836, + "406": 4098.1864382296, + "407": 4237.1141349828, + "408": 4376.743451498, + "409": 4515.7792137984, + "410": 4655.3922477601, + "411": 4793.9873649722, + "412": 4933.0331275174, + "413": 5070.6406280307, + "414": 5208.5703690577, + "415": 5344.6471789338, + "416": 5480.916552768, + "417": 5614.9256390051, + "418": 5748.9968526828, + "419": 5880.4093426398, + "420": 6011.7532783312, + "421": 6140.0505469462, + "422": 6268.1488501419, + "423": 6392.8245667085, + "424": 6517.1716919279, + "425": 6637.7338183512, + "426": 6757.8390242992, + "427": 6873.8117569454, + "428": 6989.2010432447, + "429": 7100.1266907204, + "430": 7210.3446685738, + "431": 7315.7854580252, + "432": 7420.3971474276, + "433": 7519.9369522297, + "434": 7618.5294986351, + "435": 7711.7754806536, + "436": 7803.9597843238, + "437": 7890.5439442672, + "438": 7975.9561958703, + "439": 8055.5368256157, + "440": 8133.8399420155, + "441": 8206.102973174, + "442": 8276.9879277432, + "443": 8341.6481711443, + "444": 8404.8352133513, + "445": 8461.6374845547, + "446": 8516.877244011, + "447": 8565.5973704025, + "448": 8612.6718410142, + "449": 8653.1175465129, + "450": 8691.8409468505, + "451": 8723.8526107346, + "452": 8754.0721172278, + "453": 8777.5234040845, + "454": 8799.1197541472, + "455": 8813.918112461, + "456": 8826.8060751657, + "457": 8832.8931025771, + "458": 8837.0218150229, + "459": 8834.3734888154, + "460": 8829.7266568604, + "461": 8818.3534287675, + "462": 8804.9493913344, + "463": 8784.8961462915, + "464": 8762.7878029923, + "465": 8734.133681996, + "466": 8703.4082843612, + "467": 8666.2663721362, + "468": 8627.0451792732, + "469": 8581.5620579784, + "470": 8533.9998580169, + "471": 8480.3550287528, + "472": 8424.6395279669, + "473": 8363.0447023665, + "474": 8299.3957843837, + "475": 8230.0940490837, + "476": 8158.7629071049, + "477": 8082.0277643934, + "478": 8003.2959098479, + "479": 7919.4301982763, + "480": 7833.6083498247, + "481": 7742.9430490419, + "482": 7650.3699063117, + "483": 7553.2628308389, + "484": 7454.3037377318, + "485": 7351.1381248319, + "486": 7246.1836276783, + "487": 7137.3666248933, + "488": 7026.8309311443, + "489": 6912.7919894706, + "490": 6797.1113330104, + "491": 6678.3005120512, + "492": 6557.9314315815, + "493": 6434.8176233677, + "494": 6310.2351606575, + "495": 6183.3042391447, + "496": 6055.0000642581, + "497": 5924.7529678044, + "498": 5793.233438703, + "499": 5660.1841930937, + "500": 5525.9683572734, + "501": 5390.6420470965, + "502": 5254.2595931438, + "503": 5117.190289521, + "504": 4979.1794566744, + "505": 4840.9081095259, + "506": 4701.8135634916, + "507": 4562.8858666545, + "508": 4423.2565500594, + "509": 4284.220787683, + "510": 4144.6077536491, + "511": 4006.0126363682, + "512": 3866.9668737577, + "513": 3729.3593731821, + "514": 3591.429632096, + "515": 3455.3528221636, + "516": 3319.0834482759, + "517": 3185.0743619878, + "518": 3051.0031482617, + "519": 2919.5906582586, + "520": 2788.2467225234, + "521": 2659.9494538667, + "522": 2531.8511506313, + "523": 2407.175434027, + "524": 2282.8283087717, + "525": 2162.2661823143, + "526": 2042.1609763338, + "527": 1926.1882436567, + "528": 1810.7989573281, + "529": 1699.8733098244, + "530": 1589.6553319445, + "531": 1484.2145424677, + "532": 1379.6028530414, + "533": 1280.0630482163, + "534": 1181.4705017892, + "535": 1088.22451975, + "536": 996.0402160601, + "537": 909.456056098, + "538": 824.0438044771, + "539": 744.4631747147, + "540": 666.1600582988, + "541": 593.897027125, + "542": 523.0120725412, + "543": 458.3518291262, + "544": 395.1647869061, + "545": 338.3625156901, + "546": 283.1227562218, + "547": 234.4026298189, + "548": 187.3281591965, + "549": 146.8824536875, + "550": 108.1590533401, + "551": 76.1473894467, + "552": 45.9278829447, + "553": 22.4765960795, + "554": 0.8802460089, + "555": -13.9181123126, + "556": -26.8060750245, + "557": -32.8931024428, + "558": -37.0218148951, + "559": -34.3734886938, + "560": -29.7266567448, + "561": -18.3534286575, + "562": -4.9493912298, + "563": 15.103853808, + "564": 37.2121971023, + "565": 65.8663180941, + "566": 96.5917157244, + "567": 133.7336279453, + "568": 172.9548208043, + "569": 218.4379420953, + "570": 266.0001420532, + "571": 319.6449713139, + "572": 375.3604720966, + "573": 436.9552976939, + "574": 500.6042156737, + "575": 569.9059509709, + "576": 641.237092947, + "577": 717.9722356559, + "578": 796.7040901991, + "579": 880.5698017684, + "580": 966.3916502179, + "581": 1057.0569509985, + "582": 1149.6300937268, + "583": 1246.7371691977, + "584": 1345.696262303, + "585": 1448.8618752012, + "586": 1553.8163723532, + "587": 1662.6333751366, + "588": 1773.1690688842, + "589": 1887.2080105565, + "590": 2002.8886670154, + "591": 2121.6994879733, + "592": 2242.0685684419, + "593": 2365.1823766545, + "594": 2489.7648393636, + "595": 2616.6957608754, + "596": 2744.999935761, + "597": 2875.2470322138, + "598": 3006.7665613143, + "599": 3139.8158069227, + "600": 3274.0316427423, + "601": 3409.3579529183, + "602": 3545.7404068703, + "603": 3682.8097104925, + "604": 3820.8205433384, + "605": 3959.0918904863, + "606": 4098.18643652, + "607": 4237.1141333565, + "608": 4376.7434499511, + "609": 4515.7792123269, + "610": 4655.3922463604, + "611": 4793.9873636408, + "612": 4933.0331262509, + "613": 5070.6406268261, + "614": 5208.5703679118, + "615": 5344.6471778438, + "616": 5480.9165517312, + "617": 5614.9256380189, + "618": 5748.9968517447, + "619": 5880.4093417474, + "620": 6011.7532774824, + "621": 6140.0505461387, + "622": 6268.1488493739, + "623": 6392.8245659779, + "624": 6517.171691233, + "625": 6637.7338176902, + "626": 6757.8390236705, + "627": 6873.8117563473, + "628": 6989.2010426757, + "629": 7100.1266901792, + "630": 7210.344668059, + "631": 7315.7854575356, + "632": 7420.3971469618, + "633": 7519.9369517867, + "634": 7618.5294982137, + "635": 7711.7754802527, + "636": 7803.9597839424, + "637": 7890.5439439045, + "638": 7975.9561955253, + "639": 8055.5368252875, + "640": 8133.8399417033, + "641": 8206.102972877, + "642": 8276.9879274607, + "643": 8341.6481708756, + "644": 8404.8352130957, + "645": 8461.6374843115, + "646": 8516.8772437798, + "647": 8565.5973701826, + "648": 8612.6718408049, + "649": 8653.1175463139, + "650": 8691.8409466611, + "651": 8723.8526105545, + "652": 8754.0721170565, + "653": 8777.5234039216, + "654": 8799.1197539922, + "655": 8813.9181123136, + "656": 8826.8060750255, + "657": 8832.8931024437, + "658": 8837.021814896, + "659": 8834.3734886947, + "660": 8829.7266567455, + "661": 8818.3534286583, + "662": 8804.9493912305, + "663": 8784.8961461927, + "664": 8762.7878028983, + "665": 8734.1336819065, + "666": 8703.4082842762, + "667": 8666.2663720553, + "668": 8627.0451791962, + "669": 8581.5620579052, + "670": 8533.9998579473, + "671": 8480.3550286865, + "672": 8424.6395279039, + "673": 8363.0447023065, + "674": 8299.3957843267, + "675": 8230.0940490295, + "676": 8158.7629070533, + "677": 8082.0277643444, + "678": 8003.2959098012, + "679": 7919.4301982319, + "680": 7833.6083497824, + "681": 7742.9430490017, + "682": 7650.3699062735, + "683": 7553.2628308026, + "684": 7454.3037376973, + "685": 7351.138124799, + "686": 7246.183627647, + "687": 7137.3666248636, + "688": 7026.830931116, + "689": 6912.7919894437, + "690": 6797.1113329848, + "691": 6678.3005120269, + "692": 6557.9314315583, + "693": 6434.8176233456, + "694": 6310.2351606365, + "695": 6183.3042391248, + "696": 6055.0000642392, + "697": 5924.7529677863, + "698": 5793.2334386858, + "699": 5660.1841930774, + "700": 5525.9683572579, + "701": 5390.6420470818, + "702": 5254.2595931298, + "703": 5117.1902895076, + "704": 4979.1794566617, + "705": 4840.9081095138, + "706": 4701.8135634801, + "707": 4562.8858666436, + "708": 4423.256550049, + "709": 4284.2207876731, + "710": 4144.6077536397, + "711": 4006.0126363592, + "712": 3866.9668737492, + "713": 3729.359373174, + "714": 3591.4296320883, + "715": 3455.3528221562, + "716": 3319.0834482689, + "717": 3185.0743619812, + "718": 3051.0031482554, + "719": 2919.5906582526, + "720": 2788.2467225177, + "721": 2659.9494538613, + "722": 2531.8511506261, + "723": 2407.1754340221, + "724": 2282.8283087671, + "725": 2162.2661823099, + "726": 2042.1609763296, + "727": 1926.1882436527, + "728": 1810.7989573243, + "729": 1699.8733098208, + "730": 1589.655331941, + "731": 1484.2145424644, + "732": 1379.6028530382, + "733": 1280.0630482133, + "734": 1181.4705017863, + "735": 1088.2245197473, + "736": 996.0402160576, + "737": 909.4560560955, + "738": 824.0438044748, + "739": 744.4631747125, + "740": 666.1600582967, + "741": 593.897027123, + "742": 523.0120725393, + "743": 458.3518291244, + "744": 395.1647869043, + "745": 338.3625156885, + "746": 283.1227562203, + "747": 234.4026298175, + "748": 187.3281591951, + "749": 146.8824536861, + "750": 108.1590533389, + "751": 76.1473894455, + "752": 45.9278829435, + "753": 22.4765960784, + "754": 0.8802460078, + "755": -13.9181123136, + "756": -26.8060750255, + "757": -32.8931024437, + "758": -37.021814896, + "759": -34.3734886946, + "760": -29.7266567455, + "761": -18.3534286583, + "762": -4.9493912305, + "763": 15.1038538073, + "764": 37.2121971017, + "765": 65.8663180935, + "766": 96.5917157238, + "767": 133.7336279447, + "768": 172.9548208038, + "769": 218.4379420948, + "770": 266.0001420527, + "771": 319.6449713135, + "772": 375.3604720961, + "773": 436.9552976935, + "774": 500.6042156733, + "775": 569.9059509705, + "776": 641.2370929467, + "777": 717.9722356556, + "778": 796.7040901988, + "779": 880.5698017681, + "780": 966.3916502176, + "781": 1057.0569509983, + "782": 1149.6300937265, + "783": 1246.7371691974, + "784": 1345.6962623027, + "785": 1448.861875201, + "786": 1553.816372353, + "787": 1662.6333751364, + "788": 1773.169068884, + "789": 1887.2080105563, + "790": 2002.8886670152, + "791": 2121.6994879731, + "792": 2242.0685684417, + "793": 2365.1823766544, + "794": 2489.7648393635, + "795": 2616.6957608752, + "796": 2744.9999357608, + "797": 2875.2470322137, + "798": 3006.7665613142, + "799": 3139.8158069226, + "800": 3274.0316427421, + "801": 3409.3579529182, + "802": 3545.7404068702, + "803": 3682.8097104924, + "804": 3820.8205433383, + "805": 3959.0918904862, + "806": 4098.1864365199, + "807": 4237.1141333564, + "808": 4376.743449951, + "809": 4515.7792123269, + "810": 4655.3922463603, + "811": 4793.9873636407, + "812": 4933.0331262508, + "813": 5070.640626826, + "814": 5208.5703679117, + "815": 5344.6471778438, + "816": 5480.9165517311, + "817": 5614.9256380188, + "818": 5748.9968517446, + "819": 5880.4093417473, + "820": 6011.7532774823, + "821": 6140.0505461387, + "822": 6268.1488493738, + "823": 6392.8245659779, + "824": 6517.1716912329, + "825": 6637.7338176901, + "826": 6757.8390236704, + "827": 6873.8117563473, + "828": 6989.2010426757, + "829": 7100.1266901792, + "830": 7210.344668059, + "831": 7315.7854575356, + "832": 7420.3971469618, + "833": 7519.9369517867, + "834": 7618.5294982137, + "835": 7711.7754802527, + "836": 7803.9597839424, + "837": 7890.5439439045, + "838": 7975.9561955252, + "839": 8055.5368252875, + "840": 8133.8399417033, + "841": 8206.102972877, + "842": 8276.9879274607, + "843": 8341.6481708756, + "844": 8404.8352130957, + "845": 8461.6374843115, + "846": 8516.8772437797, + "847": 8565.5973701826, + "848": 8612.6718408049, + "849": 8653.1175463139, + "850": 8691.8409466611, + "851": 8723.8526105545, + "852": 8754.0721170565, + "853": 8777.5234039216, + "854": 8799.1197539922, + "855": 8813.9181123136, + "856": 8826.8060750255, + "857": 8832.8931024437, + "858": 8837.021814896, + "859": 8834.3734886946, + "860": 8829.7266567455, + "861": 8818.3534286583, + "862": 8804.9493912305, + "863": 8784.8961461927, + "864": 8762.7878028983, + "865": 8734.1336819065, + "866": 8703.4082842762, + "867": 8666.2663720553, + "868": 8627.0451791962, + "869": 8581.5620579052, + "870": 8533.9998579473, + "871": 8480.3550286865, + "872": 8424.6395279039, + "873": 8363.0447023065, + "874": 8299.3957843267, + "875": 8230.0940490295, + "876": 8158.7629070533, + "877": 8082.0277643444, + "878": 8003.2959098012, + "879": 7919.4301982319, + "880": 7833.6083497824, + "881": 7742.9430490018, + "882": 7650.3699062735, + "883": 7553.2628308026, + "884": 7454.3037376973, + "885": 7351.138124799, + "886": 7246.183627647, + "887": 7137.3666248636, + "888": 7026.830931116, + "889": 6912.7919894437, + "890": 6797.1113329848, + "891": 6678.3005120269, + "892": 6557.9314315583, + "893": 6434.8176233456, + "894": 6310.2351606365, + "895": 6183.3042391248, + "896": 6055.0000642392, + "897": 5924.7529677863, + "898": 5793.2334386858, + "899": 5660.1841930774, + "900": 5525.9683572579, + "901": 5390.6420470818, + "902": 5254.2595931298, + "903": 5117.1902895076, + "904": 4979.1794566617, + "905": 4840.9081095138, + "906": 4701.8135634801, + "907": 4562.8858666436, + "908": 4423.256550049, + "909": 4284.2207876731, + "910": 4144.6077536397, + "911": 4006.0126363593, + "912": 3866.9668737492, + "913": 3729.359373174, + "914": 3591.4296320883, + "915": 3455.3528221562, + "916": 3319.0834482689, + "917": 3185.0743619812, + "918": 3051.0031482554, + "919": 2919.5906582527, + "920": 2788.2467225177, + "921": 2659.9494538613, + "922": 2531.8511506262, + "923": 2407.1754340221, + "924": 2282.8283087671, + "925": 2162.2661823099, + "926": 2042.1609763296, + "927": 1926.1882436527, + "928": 1810.7989573243, + "929": 1699.8733098208, + "930": 1589.655331941, + "931": 1484.2145424644, + "932": 1379.6028530383, + "933": 1280.0630482133, + "934": 1181.4705017863, + "935": 1088.2245197473, + "936": 996.0402160576, + "937": 909.4560560956, + "938": 824.0438044748, + "939": 744.4631747125, + "940": 666.1600582967, + "941": 593.897027123, + "942": 523.0120725393, + "943": 458.3518291244, + "944": 395.1647869043, + "945": 338.3625156885, + "946": 283.1227562203, + "947": 234.4026298175, + "948": 187.3281591951, + "949": 146.8824536861, + "950": 108.1590533389, + "951": 76.1473894455, + "952": 45.9278829435, + "953": 22.4765960784, + "954": 0.8802460078, + "955": -13.9181123136, + "956": -26.8060750255, + "957": -32.8931024437, + "958": -37.021814896, + "959": -34.3734886946, + "960": -29.7266567455, + "961": -18.3534286583, + "962": -4.9493912305, + "963": 15.1038538073, + "964": 37.2121971017, + "965": 65.8663180935, + "966": 96.5917157238, + "967": 133.7336279447, + "968": 172.9548208038, + "969": 218.4379420948, + "970": 266.0001420527, + "971": 319.6449713135, + "972": 375.3604720961, + "973": 436.9552976935, + "974": 500.6042156733, + "975": 569.9059509705, + "976": 641.2370929467, + "977": 717.9722356556, + "978": 796.7040901988, + "979": 880.5698017681, + "980": 966.3916502176, + "981": 1057.0569509982, + "982": 1149.6300937265, + "983": 1246.7371691974, + "984": 1345.6962623027, + "985": 1448.861875201, + "986": 1553.816372353, + "987": 1662.6333751364, + "988": 1773.169068884, + "989": 1887.2080105563, + "990": 2002.8886670152, + "991": 2121.6994879731, + "992": 2242.0685684417, + "993": 2365.1823766544, + "994": 2489.7648393635, + "995": 2616.6957608752, + "996": 2744.9999357609, + "997": 2875.2470322137, + "998": 3006.7665613142, + "999": 3139.8158069226, + "1000": 3274.0316427421, + "1001": 3409.3579529182, + "1002": 3545.7404068702, + "1003": 3682.8097104924, + "1004": 3820.8205433383, + "1005": 3959.0918904862, + "1006": 4098.1864365199, + "1007": 4237.1141333564, + "1008": 4376.743449951, + "1009": 4515.7792123269, + "1010": 4655.3922463603, + "1011": 4793.9873636407, + "1012": 4933.0331262508, + "1013": 5070.640626826, + "1014": 5208.5703679117, + "1015": 5344.6471778438, + "1016": 5480.9165517311, + "1017": 5614.9256380188, + "1018": 5748.9968517446, + "1019": 5880.4093417473, + "1020": 6011.7532774823, + "1021": 6140.0505461387, + "1022": 6268.1488493738, + "1023": 6392.8245659779, + "1024": 6517.1716912329, + "1025": 6637.7338176901, + "1026": 6757.8390236704, + "1027": 6873.8117563473, + "1028": 6989.2010426757, + "1029": 7100.1266901792, + "1030": 7210.344668059, + "1031": 7315.7854575356, + "1032": 7420.3971469617, + "1033": 7519.9369517867, + "1034": 7618.5294982137, + "1035": 7711.7754802527, + "1036": 7803.9597839424, + "1037": 7890.5439439044, + "1038": 7975.9561955252, + "1039": 8055.5368252875, + "1040": 8133.8399417033, + "1041": 8206.102972877, + "1042": 8276.9879274607, + "1043": 8341.6481708756, + "1044": 8404.8352130957, + "1045": 8461.6374843115, + "1046": 8516.8772437797, + "1047": 8565.5973701825, + "1048": 8612.6718408049, + "1049": 8653.1175463139, + "1050": 8691.8409466611, + "1051": 8723.8526105545, + "1052": 8754.0721170565, + "1053": 8777.5234039216, + "1054": 8799.1197539922, + "1055": 8813.9181123136, + "1056": 8826.8060750255, + "1057": 8832.8931024437, + "1058": 8837.021814896, + "1059": 8834.3734886946, + "1060": 8829.7266567455, + "1061": 8818.3534286583, + "1062": 8804.9493912305, + "1063": 8784.8961461927, + "1064": 8762.7878028983, + "1065": 8734.1336819065, + "1066": 8703.4082842762, + "1067": 8666.2663720553, + "1068": 8627.0451791962, + "1069": 8581.5620579052, + "1070": 8533.9998579473, + "1071": 8480.3550286865, + "1072": 8424.6395279039, + "1073": 8363.0447023065, + "1074": 8299.3957843267, + "1075": 8230.0940490295, + "1076": 8158.7629070533, + "1077": 8082.0277643444, + "1078": 8003.2959098012, + "1079": 7919.4301982319, + "1080": 7833.6083497824, + "1081": 7742.9430490018, + "1082": 7650.3699062735, + "1083": 7553.2628308026, + "1084": 7454.3037376973, + "1085": 7351.138124799, + "1086": 7246.183627647, + "1087": 7137.3666248636, + "1088": 7026.830931116, + "1089": 6912.7919894437, + "1090": 6797.1113329848, + "1091": 6678.3005120269, + "1092": 6557.9314315583, + "1093": 6434.8176233456, + "1094": 6310.2351606365, + "1095": 6183.3042391248, + "1096": 6055.0000642392, + "1097": 5924.7529677863, + "1098": 5793.2334386858, + "1099": 5660.1841930774, + "1100": 5525.9683572579, + "1101": 5390.6420470818, + "1102": 5254.2595931298, + "1103": 5117.1902895076, + "1104": 4979.1794566617, + "1105": 4840.9081095138, + "1106": 4701.8135634801, + "1107": 4562.8858666436, + "1108": 4423.256550049, + "1109": 4284.2207876731, + "1110": 4144.6077536397, + "1111": 4006.0126363593, + "1112": 3866.9668737492, + "1113": 3729.359373174, + "1114": 3591.4296320883, + "1115": 3455.3528221562, + "1116": 3319.0834482689, + "1117": 3185.0743619812, + "1118": 3051.0031482554, + "1119": 2919.5906582527, + "1120": 2788.2467225177, + "1121": 2659.9494538613, + "1122": 2531.8511506262, + "1123": 2407.1754340221, + "1124": 2282.8283087671, + "1125": 2162.2661823099, + "1126": 2042.1609763296, + "1127": 1926.1882436527, + "1128": 1810.7989573243, + "1129": 1699.8733098208, + "1130": 1589.655331941, + "1131": 1484.2145424644, + "1132": 1379.6028530383, + "1133": 1280.0630482133, + "1134": 1181.4705017863, + "1135": 1088.2245197473, + "1136": 996.0402160576, + "1137": 909.4560560956, + "1138": 824.0438044748, + "1139": 744.4631747125, + "1140": 666.1600582967, + "1141": 593.897027123, + "1142": 523.0120725393, + "1143": 458.3518291244, + "1144": 395.1647869043, + "1145": 338.3625156885, + "1146": 283.1227562203, + "1147": 234.4026298175, + "1148": 187.3281591951, + "1149": 146.8824536861, + "1150": 108.1590533389, + "1151": 76.1473894455, + "1152": 45.9278829435, + "1153": 22.4765960784, + "1154": 0.8802460078, + "1155": -13.9181123136, + "1156": -26.8060750255, + "1157": -32.8931024437, + "1158": -37.021814896, + "1159": -34.3734886946, + "1160": -29.7266567455, + "1161": -18.3534286583, + "1162": -4.9493912305, + "1163": 15.1038538073, + "1164": 37.2121971017, + "1165": 65.8663180935, + "1166": 96.5917157238, + "1167": 133.7336279447, + "1168": 172.9548208038, + "1169": 218.4379420948, + "1170": 266.0001420527, + "1171": 319.6449713135, + "1172": 375.3604720961, + "1173": 436.9552976935, + "1174": 500.6042156733, + "1175": 569.9059509705, + "1176": 641.2370929467, + "1177": 717.9722356556, + "1178": 796.7040901988, + "1179": 880.5698017681, + "1180": 966.3916502176, + "1181": 1057.0569509982, + "1182": 1149.6300937265, + "1183": 1246.7371691974, + "1184": 1345.6962623027, + "1185": 1448.861875201, + "1186": 1553.816372353, + "1187": 1662.6333751364, + "1188": 1773.169068884, + "1189": 1887.2080105563, + "1190": 2002.8886670152, + "1191": 2121.6994879731, + "1192": 2242.0685684417, + "1193": 2365.1823766544, + "1194": 2489.7648393635, + "1195": 2616.6957608752, + "1196": 2744.9999357609, + "1197": 2875.2470322137, + "1198": 3006.7665613142, + "1199": 3139.8158069226, + "1200": 3274.0316427421, + "1201": 3409.3579529182, + "1202": 3545.7404068702, + "1203": 3682.8097104924, + "1204": 3820.8205433383, + "1205": 3959.0918904862, + "1206": 4098.1864365199, + "1207": 4237.1141333564, + "1208": 4376.743449951, + "1209": 4515.7792123269, + "1210": 4655.3922463603, + "1211": 4793.9873636407, + "1212": 4933.0331262508, + "1213": 5070.640626826, + "1214": 5208.5703679117, + "1215": 5344.6471778438, + "1216": 5480.9165517311, + "1217": 5614.9256380188, + "1218": 5748.9968517446, + "1219": 5880.4093417473, + "1220": 6011.7532774823, + "1221": 6140.0505461387, + "1222": 6268.1488493738, + "1223": 6392.8245659779, + "1224": 6517.1716912329, + "1225": 6637.7338176901, + "1226": 6757.8390236704, + "1227": 6873.8117563473, + "1228": 6989.2010426757, + "1229": 7100.1266901792, + "1230": 7210.344668059, + "1231": 7315.7854575356, + "1232": 7420.3971469617, + "1233": 7519.9369517867, + "1234": 7618.5294982137, + "1235": 7711.7754802527, + "1236": 7803.9597839424, + "1237": 7890.5439439044, + "1238": 7975.9561955252, + "1239": 8055.5368252875, + "1240": 8133.8399417033, + "1241": 8206.102972877, + "1242": 8276.9879274607, + "1243": 8341.6481708756, + "1244": 8404.8352130957, + "1245": 8461.6374843115, + "1246": 8516.8772437797, + "1247": 8565.5973701825, + "1248": 8612.6718408049, + "1249": 8653.1175463139, + "1250": 8691.8409466611, + "1251": 8723.8526105545, + "1252": 8754.0721170565, + "1253": 8777.5234039216, + "1254": 8799.1197539922, + "1255": 8813.9181123136, + "1256": 8826.8060750255, + "1257": 8832.8931024437, + "1258": 8837.021814896, + "1259": 8834.3734886946, + "1260": 8829.7266567455, + "1261": 8818.3534286583, + "1262": 8804.9493912305, + "1263": 8784.8961461927, + "1264": 8762.7878028983, + "1265": 8734.1336819065, + "1266": 8703.4082842762, + "1267": 8666.2663720553, + "1268": 8627.0451791962, + "1269": 8581.5620579052, + "1270": 8533.9998579473, + "1271": 8480.3550286865, + "1272": 8424.6395279039, + "1273": 8363.0447023065, + "1274": 8299.3957843267, + "1275": 8230.0940490295, + "1276": 8158.7629070533, + "1277": 8082.0277643444, + "1278": 8003.2959098012, + "1279": 7919.4301982319, + "1280": 7833.6083497824, + "1281": 7742.9430490017, + "1282": 7650.3699062735, + "1283": 7553.2628308026, + "1284": 7454.3037376973, + "1285": 7351.138124799, + "1286": 7246.183627647, + "1287": 7137.3666248636, + "1288": 7026.830931116, + "1289": 6912.7919894437, + "1290": 6797.1113329848, + "1291": 6678.3005120269, + "1292": 6557.9314315583, + "1293": 6434.8176233456, + "1294": 6310.2351606365, + "1295": 6183.3042391248, + "1296": 6055.0000642391, + "1297": 5924.7529677863, + "1298": 5793.2334386858, + "1299": 5660.1841930774, + "1300": 5525.9683572579, + "1301": 5390.6420470818, + "1302": 5254.2595931298, + "1303": 5117.1902895076, + "1304": 4979.1794566617, + "1305": 4840.9081095138, + "1306": 4701.8135634801, + "1307": 4562.8858666436, + "1308": 4423.256550049, + "1309": 4284.2207876731, + "1310": 4144.6077536397, + "1311": 4006.0126363593, + "1312": 3866.9668737492, + "1313": 3729.359373174, + "1314": 3591.4296320883, + "1315": 3455.3528221562, + "1316": 3319.0834482689, + "1317": 3185.0743619812, + "1318": 3051.0031482554, + "1319": 2919.5906582527, + "1320": 2788.2467225177, + "1321": 2659.9494538613, + "1322": 2531.8511506262, + "1323": 2407.1754340221, + "1324": 2282.8283087671, + "1325": 2162.2661823099, + "1326": 2042.1609763296, + "1327": 1926.1882436527, + "1328": 1810.7989573243, + "1329": 1699.8733098208, + "1330": 1589.655331941, + "1331": 1484.2145424644, + "1332": 1379.6028530383, + "1333": 1280.0630482133, + "1334": 1181.4705017863, + "1335": 1088.2245197473, + "1336": 996.0402160576, + "1337": 909.4560560956, + "1338": 824.0438044748, + "1339": 744.4631747125, + "1340": 666.1600582967, + "1341": 593.897027123, + "1342": 523.0120725393, + "1343": 458.3518291244, + "1344": 395.1647869043, + "1345": 338.3625156885, + "1346": 283.1227562203, + "1347": 234.4026298175, + "1348": 187.3281591951, + "1349": 146.8824536861, + "1350": 108.1590533389, + "1351": 76.1473894455, + "1352": 45.9278829435, + "1353": 22.4765960784, + "1354": 0.8802460078, + "1355": -13.9181123136, + "1356": -26.8060750255, + "1357": -32.8931024437, + "1358": -37.021814896, + "1359": -34.3734886946, + "1360": -29.7266567455, + "1361": -18.3534286583, + "1362": -4.9493912305, + "1363": 15.1038538073, + "1364": 37.2121971017, + "1365": 65.8663180935, + "1366": 96.5917157238, + "1367": 133.7336279447, + "1368": 172.9548208038, + "1369": 218.4379420948, + "1370": 266.0001420527, + "1371": 319.6449713135, + "1372": 375.3604720961, + "1373": 436.9552976935, + "1374": 500.6042156733, + "1375": 569.9059509705, + "1376": 641.2370929467, + "1377": 717.9722356556, + "1378": 796.7040901988, + "1379": 880.5698017681, + "1380": 966.3916502176, + "1381": 1057.0569509983, + "1382": 1149.6300937265, + "1383": 1246.7371691974, + "1384": 1345.6962623027, + "1385": 1448.861875201, + "1386": 1553.816372353, + "1387": 1662.6333751364, + "1388": 1773.169068884, + "1389": 1887.2080105563, + "1390": 2002.8886670152, + "1391": 2121.6994879731, + "1392": 2242.0685684417, + "1393": 2365.1823766544, + "1394": 2489.7648393635, + "1395": 2616.6957608752, + "1396": 2744.9999357609, + "1397": 2875.2470322137, + "1398": 3006.7665613142, + "1399": 3139.8158069226, + "1400": 3274.0316427421, + "1401": 3409.3579529182, + "1402": 3545.7404068702, + "1403": 3682.8097104924, + "1404": 3820.8205433383, + "1405": 3959.0918904862, + "1406": 4098.1864365199, + "1407": 4237.1141333564, + "1408": 4376.743449951, + "1409": 4515.7792123269, + "1410": 4655.3922463603, + "1411": 4793.9873636407, + "1412": 4933.0331262508, + "1413": 5070.640626826, + "1414": 5208.5703679117, + "1415": 5344.6471778438, + "1416": 5480.9165517311, + "1417": 5614.9256380188, + "1418": 5748.9968517446, + "1419": 5880.4093417473, + "1420": 6011.7532774823, + "1421": 6140.0505461387, + "1422": 6268.1488493738, + "1423": 6392.8245659779, + "1424": 6517.1716912329, + "1425": 6637.7338176901, + "1426": 6757.8390236704, + "1427": 6873.8117563473, + "1428": 6989.2010426757, + "1429": 7100.1266901792, + "1430": 7210.344668059, + "1431": 7315.7854575356, + "1432": 7420.3971469617, + "1433": 7519.9369517867, + "1434": 7618.5294982137, + "1435": 7711.7754802527, + "1436": 7803.9597839424, + "1437": 7890.5439439044, + "1438": 7975.9561955252, + "1439": 8055.5368252875, + "1440": 8133.8399417033, + "1441": 8206.102972877, + "1442": 8276.9879274607, + "1443": 8341.6481708756, + "1444": 8404.8352130957, + "1445": 8461.6374843115, + "1446": 8516.8772437797, + "1447": 8565.5973701825, + "1448": 8612.6718408049, + "1449": 8653.1175463139, + "1450": 8691.8409466611, + "1451": 8723.8526105545, + "1452": 8754.0721170565, + "1453": 8777.5234039216, + "1454": 8799.1197539922, + "1455": 8813.9181123136, + "1456": 8826.8060750255, + "1457": 8832.8931024437, + "1458": 8837.021814896, + "1459": 8834.3734886946, + "1460": 8829.7266567455, + "1461": 8818.3534286583, + "1462": 8804.9493912305, + "1463": 8784.8961461927, + "1464": 8762.7878028983, + "1465": 8734.1336819065, + "1466": 8703.4082842762, + "1467": 8666.2663720553, + "1468": 8627.0451791962, + "1469": 8581.5620579052, + "1470": 8533.9998579473, + "1471": 8480.3550286865, + "1472": 8424.6395279039, + "1473": 8363.0447023065, + "1474": 8299.3957843267, + "1475": 8230.0940490295, + "1476": 8158.7629070533, + "1477": 8082.0277643444, + "1478": 8003.2959098012, + "1479": 7919.4301982319, + "1480": 7833.6083497824, + "1481": 7742.9430490017, + "1482": 7650.3699062735, + "1483": 7553.2628308026, + "1484": 7454.3037376973, + "1485": 7351.138124799, + "1486": 7246.183627647, + "1487": 7137.3666248636, + "1488": 7026.830931116, + "1489": 6912.7919894437, + "1490": 6797.1113329848, + "1491": 6678.3005120269, + "1492": 6557.9314315583, + "1493": 6434.8176233456, + "1494": 6310.2351606365, + "1495": 6183.3042391248, + "1496": 6055.0000642391, + "1497": 5924.7529677863, + "1498": 5793.2334386858, + "1499": 5660.1841930774, + "1500": 5525.9683572579, + "1501": 5390.6420470818, + "1502": 5254.2595931298, + "1503": 5117.1902895076, + "1504": 4979.1794566617, + "1505": 4840.9081095138, + "1506": 4701.8135634801, + "1507": 4562.8858666436, + "1508": 4423.256550049, + "1509": 4284.2207876731, + "1510": 4144.6077536397, + "1511": 4006.0126363593, + "1512": 3866.9668737492, + "1513": 3729.359373174, + "1514": 3591.4296320883, + "1515": 3455.3528221562, + "1516": 3319.0834482689, + "1517": 3185.0743619812, + "1518": 3051.0031482554, + "1519": 2919.5906582527, + "1520": 2788.2467225177, + "1521": 2659.9494538613, + "1522": 2531.8511506262, + "1523": 2407.1754340221, + "1524": 2282.8283087671, + "1525": 2162.2661823099, + "1526": 2042.1609763296, + "1527": 1926.1882436527, + "1528": 1810.7989573243, + "1529": 1699.8733098208, + "1530": 1589.655331941, + "1531": 1484.2145424644, + "1532": 1379.6028530383, + "1533": 1280.0630482133, + "1534": 1181.4705017863, + "1535": 1088.2245197473, + "1536": 996.0402160576, + "1537": 909.4560560956, + "1538": 824.0438044748, + "1539": 744.4631747125, + "1540": 666.1600582967, + "1541": 593.897027123, + "1542": 523.0120725393, + "1543": 458.3518291244, + "1544": 395.1647869043, + "1545": 338.3625156885, + "1546": 283.1227562203, + "1547": 234.4026298175, + "1548": 187.3281591951, + "1549": 146.8824536861, + "1550": 108.1590533389, + "1551": 76.1473894455, + "1552": 45.9278829435, + "1553": 22.4765960784, + "1554": 0.8802460078, + "1555": -13.9181123136, + "1556": -26.8060750255, + "1557": -32.8931024437, + "1558": -37.021814896, + "1559": -34.3734886946, + "1560": -29.7266567455, + "1561": -18.3534286583, + "1562": -4.9493912305, + "1563": 15.1038538073, + "1564": 37.2121971017, + "1565": 65.8663180935, + "1566": 96.5917157238, + "1567": 133.7336279447, + "1568": 172.9548208038, + "1569": 218.4379420948, + "1570": 266.0001420527, + "1571": 319.6449713135, + "1572": 375.3604720961, + "1573": 436.9552976935, + "1574": 500.6042156733, + "1575": 569.9059509705, + "1576": 641.2370929467, + "1577": 717.9722356556, + "1578": 796.7040901988, + "1579": 880.5698017681, + "1580": 966.3916502176, + "1581": 1057.0569509983, + "1582": 1149.6300937265, + "1583": 1246.7371691974, + "1584": 1345.6962623027, + "1585": 1448.861875201, + "1586": 1553.816372353, + "1587": 1662.6333751365, + "1588": 1773.169068884, + "1589": 1887.2080105563, + "1590": 2002.8886670152, + "1591": 2121.6994879731, + "1592": 2242.0685684417, + "1593": 2365.1823766544, + "1594": 2489.7648393635, + "1595": 2616.6957608752, + "1596": 2744.9999357609, + "1597": 2875.2470322137, + "1598": 3006.7665613142, + "1599": 3139.8158069226, + "1600": 3274.0316427421, + "1601": 3409.3579529183, + "1602": 3545.7404068702, + "1603": 3682.8097104924, + "1604": 3820.8205433383, + "1605": 3959.0918904862, + "1606": 4098.1864365199, + "1607": 4237.1141333564, + "1608": 4376.7434499511, + "1609": 4515.7792123269, + "1610": 4655.3922463603, + "1611": 4793.9873636408, + "1612": 4933.0331262508, + "1613": 5070.6406268261, + "1614": 5208.5703679117, + "1615": 5344.6471778438, + "1616": 5480.9165517311, + "1617": 5614.9256380189, + "1618": 5748.9968517446, + "1619": 5880.4093417474, + "1620": 6011.7532774824, + "1621": 6140.0505461387, + "1622": 6268.1488493739, + "1623": 6392.8245659779, + "1624": 6517.1716912329, + "1625": 6637.7338176902, + "1626": 6757.8390236704, + "1627": 6873.8117563473, + "1628": 6989.2010426757, + "1629": 7100.1266901792, + "1630": 7210.344668059, + "1631": 7315.7854575356, + "1632": 7420.3971469618, + "1633": 7519.9369517867, + "1634": 7618.5294982137, + "1635": 7711.7754802527, + "1636": 7803.9597839424, + "1637": 7890.5439439045, + "1638": 7975.9561955253, + "1639": 8055.5368252875, + "1640": 8133.8399417033, + "1641": 8206.102972877, + "1642": 8276.9879274607, + "1643": 8341.6481708756, + "1644": 8404.8352130957, + "1645": 8461.6374843115, + "1646": 8516.8772437797, + "1647": 8565.5973701826, + "1648": 8612.6718408049, + "1649": 8653.1175463139, + "1650": 8691.8409466611, + "1651": 8723.8526105545, + "1652": 8754.0721170565, + "1653": 8777.5234039216, + "1654": 8799.1197539922, + "1655": 8813.9181123136, + "1656": 8826.8060750255, + "1657": 8832.8931024437, + "1658": 8837.021814896, + "1659": 8834.3734886946, + "1660": 8829.7266567455, + "1661": 8818.3534286583, + "1662": 8804.9493912305, + "1663": 8784.8961461927, + "1664": 8762.7878028983, + "1665": 8734.1336819065, + "1666": 8703.4082842762, + "1667": 8666.2663720552, + "1668": 8627.0451791962, + "1669": 8581.5620579052, + "1670": 8533.9998579473, + "1671": 8480.3550286865, + "1672": 8424.6395279038, + "1673": 8363.0447023065, + "1674": 8299.3957843267, + "1675": 8230.0940490294, + "1676": 8158.7629070533, + "1677": 8082.0277643444, + "1678": 8003.2959098012, + "1679": 7919.4301982319, + "1680": 7833.6083497824, + "1681": 7742.9430490017, + "1682": 7650.3699062735, + "1683": 7553.2628308025, + "1684": 7454.3037376972, + "1685": 7351.138124799, + "1686": 7246.1836276469, + "1687": 7137.3666248636, + "1688": 7026.830931116, + "1689": 6912.7919894437, + "1690": 6797.1113329848, + "1691": 6678.3005120269, + "1692": 6557.9314315583, + "1693": 6434.8176233456, + "1694": 6310.2351606365, + "1695": 6183.3042391248, + "1696": 6055.0000642392, + "1697": 5924.7529677863, + "1698": 5793.2334386859, + "1699": 5660.1841930773, + "1700": 5525.9683572578, + "1701": 5390.6420470817, + "1702": 5254.2595931297, + "1703": 5117.1902895076, + "1704": 4979.1794566617, + "1705": 4840.9081095138, + "1706": 4701.8135634801, + "1707": 4562.8858666436, + "1708": 4423.2565500489, + "1709": 4284.2207876731, + "1710": 4144.6077536397, + "1711": 4006.0126363592, + "1712": 3866.9668737492, + "1713": 3729.3593731739, + "1714": 3591.4296320883, + "1715": 3455.3528221562, + "1716": 3319.0834482689, + "1717": 3185.0743619812, + "1718": 3051.0031482553, + "1719": 2919.5906582526, + "1720": 2788.2467225176, + "1721": 2659.9494538613, + "1722": 2531.8511506261, + "1723": 2407.1754340221, + "1724": 2282.8283087671, + "1725": 2162.2661823098, + "1726": 2042.1609763296, + "1727": 1926.1882436527, + "1728": 1810.7989573243, + "1729": 1699.8733098208, + "1730": 1589.655331941, + "1731": 1484.2145424644, + "1732": 1379.6028530382, + "1733": 1280.0630482133, + "1734": 1181.4705017863, + "1735": 1088.2245197473, + "1736": 996.0402160576, + "1737": 909.4560560955, + "1738": 824.0438044747, + "1739": 744.4631747125, + "1740": 666.1600582967, + "1741": 593.897027123, + "1742": 523.0120725393, + "1743": 458.3518291244, + "1744": 395.1647869043, + "1745": 338.3625156885, + "1746": 283.1227562203, + "1747": 234.4026298174, + "1748": 187.3281591951, + "1749": 146.8824536861, + "1750": 108.1590533389, + "1751": 76.1473894455, + "1752": 45.9278829435, + "1753": 22.4765960784, + "1754": 0.8802460078, + "1755": -13.9181123136, + "1756": -26.8060750255, + "1757": -32.8931024437, + "1758": -37.021814896, + "1759": -34.3734886946, + "1760": -29.7266567456, + "1761": -18.3534286583, + "1762": -4.9493912305, + "1763": 15.1038538073, + "1764": 37.2121971017, + "1765": 65.8663180935, + "1766": 96.5917157238, + "1767": 133.7336279447, + "1768": 172.9548208038, + "1769": 218.4379420948, + "1770": 266.0001420528, + "1771": 319.6449713135, + "1772": 375.3604720962, + "1773": 436.9552976934, + "1774": 500.6042156733, + "1775": 569.9059509706, + "1776": 641.2370929467, + "1777": 717.9722356556, + "1778": 796.7040901988, + "1779": 880.5698017681, + "1780": 966.3916502176, + "1781": 1057.0569509983, + "1782": 1149.6300937265, + "1783": 1246.7371691975, + "1784": 1345.6962623028, + "1785": 1448.861875201, + "1786": 1553.8163723531, + "1787": 1662.6333751364, + "1788": 1773.169068884, + "1789": 1887.2080105563, + "1790": 2002.8886670152, + "1791": 2121.6994879731, + "1792": 2242.0685684417, + "1793": 2365.1823766544, + "1794": 2489.7648393635, + "1795": 2616.6957608753, + "1796": 2744.9999357608, + "1797": 2875.2470322137, + "1798": 3006.7665613141, + "1799": 3139.8158069227, + "1800": 3274.0316427422, + "1801": 3409.3579529183, + "1802": 3545.7404068703, + "1803": 3682.8097104924, + "1804": 3820.8205433383, + "1805": 3959.0918904862, + "1806": 4098.1864365199, + "1807": 4237.1141333564, + "1808": 4376.7434499511, + "1809": 4515.7792123269, + "1810": 4655.3922463603, + "1811": 4793.9873636408, + "1812": 4933.0331262508, + "1813": 5070.6406268261, + "1814": 5208.5703679117, + "1815": 5344.6471778438, + "1816": 5480.9165517311, + "1817": 5614.9256380188, + "1818": 5748.9968517447, + "1819": 5880.4093417474, + "1820": 6011.7532774824, + "1821": 6140.0505461387, + "1822": 6268.1488493739, + "1823": 6392.8245659779, + "1824": 6517.1716912329, + "1825": 6637.7338176902, + "1826": 6757.8390236704, + "1827": 6873.8117563473, + "1828": 6989.2010426757, + "1829": 7100.1266901792, + "1830": 7210.344668059, + "1831": 7315.7854575356, + "1832": 7420.3971469618, + "1833": 7519.9369517867, + "1834": 7618.5294982137, + "1835": 7711.7754802527, + "1836": 7803.9597839424, + "1837": 7890.5439439045, + "1838": 7975.9561955253, + "1839": 8055.5368252875, + "1840": 8133.8399417033, + "1841": 8206.102972877, + "1842": 8276.9879274607, + "1843": 8341.6481708756, + "1844": 8404.8352130957, + "1845": 8461.6374843115, + "1846": 8516.8772437797, + "1847": 8565.5973701826, + "1848": 8612.6718408049, + "1849": 8653.1175463139, + "1850": 8691.8409466611, + "1851": 8723.8526105545, + "1852": 8754.0721170565, + "1853": 8777.5234039216, + "1854": 8799.1197539922, + "1855": 8813.9181123136, + "1856": 8826.8060750255, + "1857": 8832.8931024437, + "1858": 8837.021814896, + "1859": 8834.3734886946, + "1860": 8829.7266567455, + "1861": 8818.3534286583, + "1862": 8804.9493912305, + "1863": 8784.8961461927, + "1864": 8762.7878028983, + "1865": 8734.1336819065, + "1866": 8703.4082842762, + "1867": 8666.2663720553, + "1868": 8627.0451791962, + "1869": 8581.5620579052, + "1870": 8533.9998579473, + "1871": 8480.3550286865, + "1872": 8424.6395279038, + "1873": 8363.0447023065, + "1874": 8299.3957843267, + "1875": 8230.0940490294, + "1876": 8158.7629070533, + "1877": 8082.0277643444, + "1878": 8003.2959098012, + "1879": 7919.4301982319, + "1880": 7833.6083497824, + "1881": 7742.9430490017, + "1882": 7650.3699062735, + "1883": 7553.2628308025, + "1884": 7454.3037376972, + "1885": 7351.138124799, + "1886": 7246.1836276469, + "1887": 7137.3666248636, + "1888": 7026.830931116, + "1889": 6912.7919894437, + "1890": 6797.1113329848, + "1891": 6678.3005120269, + "1892": 6557.9314315583, + "1893": 6434.8176233456, + "1894": 6310.2351606365, + "1895": 6183.3042391247, + "1896": 6055.0000642392, + "1897": 5924.7529677863, + "1898": 5793.2334386859, + "1899": 5660.1841930773, + "1900": 5525.9683572578, + "1901": 5390.6420470817, + "1902": 5254.2595931297, + "1903": 5117.1902895076, + "1904": 4979.1794566617, + "1905": 4840.9081095138, + "1906": 4701.8135634801, + "1907": 4562.8858666436, + "1908": 4423.2565500489, + "1909": 4284.2207876731, + "1910": 4144.6077536397, + "1911": 4006.0126363592, + "1912": 3866.9668737492, + "1913": 3729.3593731739, + "1914": 3591.4296320883, + "1915": 3455.3528221562, + "1916": 3319.0834482689, + "1917": 3185.0743619812, + "1918": 3051.0031482553, + "1919": 2919.5906582526, + "1920": 2788.2467225176, + "1921": 2659.9494538613, + "1922": 2531.8511506261, + "1923": 2407.1754340221, + "1924": 2282.8283087671, + "1925": 2162.2661823098, + "1926": 2042.1609763296, + "1927": 1926.1882436527, + "1928": 1810.7989573243, + "1929": 1699.8733098208, + "1930": 1589.655331941, + "1931": 1484.2145424644, + "1932": 1379.6028530382, + "1933": 1280.0630482133, + "1934": 1181.4705017863, + "1935": 1088.2245197473, + "1936": 996.0402160576, + "1937": 909.4560560955, + "1938": 824.0438044747, + "1939": 744.4631747125, + "1940": 666.1600582967, + "1941": 593.897027123, + "1942": 523.0120725393, + "1943": 458.3518291244, + "1944": 395.1647869043, + "1945": 338.3625156885, + "1946": 283.1227562203, + "1947": 234.4026298174, + "1948": 187.3281591951, + "1949": 146.8824536861, + "1950": 108.1590533389, + "1951": 76.1473894455, + "1952": 45.9278829435, + "1953": 22.4765960784, + "1954": 0.8802460078, + "1955": -13.9181123136, + "1956": -26.8060750255, + "1957": -32.8931024437, + "1958": -37.021814896, + "1959": -34.3734886946, + "1960": -29.7266567456, + "1961": -18.3534286583, + "1962": -4.9493912305, + "1963": 15.1038538073, + "1964": 37.2121971017, + "1965": 65.8663180935, + "1966": 96.5917157238, + "1967": 133.7336279447, + "1968": 172.9548208038, + "1969": 218.4379420948, + "1970": 266.0001420528, + "1971": 319.6449713135, + "1972": 375.3604720962, + "1973": 436.9552976934, + "1974": 500.6042156733, + "1975": 569.9059509706, + "1976": 641.2370929467, + "1977": 717.9722356556, + "1978": 796.7040901988, + "1979": 880.5698017681, + "1980": 966.3916502176, + "1981": 1057.0569509983, + "1982": 1149.6300937265, + "1983": 1246.7371691975, + "1984": 1345.6962623028, + "1985": 1448.861875201, + "1986": 1553.8163723531, + "1987": 1662.6333751364, + "1988": 1773.169068884, + "1989": 1887.2080105563, + "1990": 2002.8886670152, + "1991": 2121.6994879731, + "1992": 2242.0685684417, + "1993": 2365.1823766544, + "1994": 2489.7648393635, + "1995": 2616.6957608753, + "1996": 2744.9999357608, + "1997": 2875.2470322137, + "1998": 3006.7665613141, + "1999": 3139.8158069227, + "2000": 3274.0316427422 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_R_RCR_derivative.json b/tests/cases/results/result_pulsatileFlow_R_RCR_derivative.json index 763ef64f9..d4e03a587 100644 --- a/tests/cases/results/result_pulsatileFlow_R_RCR_derivative.json +++ b/tests/cases/results/result_pulsatileFlow_R_RCR_derivative.json @@ -1 +1,2032 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0","101":"branch0_seg0","102":"branch0_seg0","103":"branch0_seg0","104":"branch0_seg0","105":"branch0_seg0","106":"branch0_seg0","107":"branch0_seg0","108":"branch0_seg0","109":"branch0_seg0","110":"branch0_seg0","111":"branch0_seg0","112":"branch0_seg0","113":"branch0_seg0","114":"branch0_seg0","115":"branch0_seg0","116":"branch0_seg0","117":"branch0_seg0","118":"branch0_seg0","119":"branch0_seg0","120":"branch0_seg0","121":"branch0_seg0","122":"branch0_seg0","123":"branch0_seg0","124":"branch0_seg0","125":"branch0_seg0","126":"branch0_seg0","127":"branch0_seg0","128":"branch0_seg0","129":"branch0_seg0","130":"branch0_seg0","131":"branch0_seg0","132":"branch0_seg0","133":"branch0_seg0","134":"branch0_seg0","135":"branch0_seg0","136":"branch0_seg0","137":"branch0_seg0","138":"branch0_seg0","139":"branch0_seg0","140":"branch0_seg0","141":"branch0_seg0","142":"branch0_seg0","143":"branch0_seg0","144":"branch0_seg0","145":"branch0_seg0","146":"branch0_seg0","147":"branch0_seg0","148":"branch0_seg0","149":"branch0_seg0","150":"branch0_seg0","151":"branch0_seg0","152":"branch0_seg0","153":"branch0_seg0","154":"branch0_seg0","155":"branch0_seg0","156":"branch0_seg0","157":"branch0_seg0","158":"branch0_seg0","159":"branch0_seg0","160":"branch0_seg0","161":"branch0_seg0","162":"branch0_seg0","163":"branch0_seg0","164":"branch0_seg0","165":"branch0_seg0","166":"branch0_seg0","167":"branch0_seg0","168":"branch0_seg0","169":"branch0_seg0","170":"branch0_seg0","171":"branch0_seg0","172":"branch0_seg0","173":"branch0_seg0","174":"branch0_seg0","175":"branch0_seg0","176":"branch0_seg0","177":"branch0_seg0","178":"branch0_seg0","179":"branch0_seg0","180":"branch0_seg0","181":"branch0_seg0","182":"branch0_seg0","183":"branch0_seg0","184":"branch0_seg0","185":"branch0_seg0","186":"branch0_seg0","187":"branch0_seg0","188":"branch0_seg0","189":"branch0_seg0","190":"branch0_seg0","191":"branch0_seg0","192":"branch0_seg0","193":"branch0_seg0","194":"branch0_seg0","195":"branch0_seg0","196":"branch0_seg0","197":"branch0_seg0","198":"branch0_seg0","199":"branch0_seg0","200":"branch0_seg0"},"time":{"0":0.0,"1":0.005,"2":0.01,"3":0.015,"4":0.02,"5":0.025,"6":0.03,"7":0.035,"8":0.04,"9":0.045,"10":0.05,"11":0.055,"12":0.06,"13":0.065,"14":0.07,"15":0.075,"16":0.08,"17":0.085,"18":0.09,"19":0.095,"20":0.1,"21":0.105,"22":0.11,"23":0.115,"24":0.12,"25":0.125,"26":0.13,"27":0.135,"28":0.14,"29":0.145,"30":0.15,"31":0.155,"32":0.16,"33":0.165,"34":0.17,"35":0.175,"36":0.18,"37":0.185,"38":0.19,"39":0.195,"40":0.2,"41":0.205,"42":0.21,"43":0.215,"44":0.22,"45":0.225,"46":0.23,"47":0.235,"48":0.24,"49":0.245,"50":0.25,"51":0.255,"52":0.26,"53":0.265,"54":0.27,"55":0.275,"56":0.28,"57":0.285,"58":0.29,"59":0.295,"60":0.3,"61":0.305,"62":0.31,"63":0.315,"64":0.32,"65":0.325,"66":0.33,"67":0.335,"68":0.34,"69":0.345,"70":0.35,"71":0.355,"72":0.36,"73":0.365,"74":0.37,"75":0.375,"76":0.38,"77":0.385,"78":0.39,"79":0.395,"80":0.4,"81":0.405,"82":0.41,"83":0.415,"84":0.42,"85":0.425,"86":0.43,"87":0.435,"88":0.44,"89":0.445,"90":0.45,"91":0.455,"92":0.46,"93":0.465,"94":0.47,"95":0.475,"96":0.48,"97":0.485,"98":0.49,"99":0.495,"100":0.5,"101":0.505,"102":0.51,"103":0.515,"104":0.52,"105":0.525,"106":0.53,"107":0.535,"108":0.54,"109":0.545,"110":0.55,"111":0.555,"112":0.56,"113":0.565,"114":0.57,"115":0.575,"116":0.58,"117":0.585,"118":0.59,"119":0.595,"120":0.6,"121":0.605,"122":0.61,"123":0.615,"124":0.62,"125":0.625,"126":0.63,"127":0.635,"128":0.64,"129":0.645,"130":0.65,"131":0.655,"132":0.66,"133":0.665,"134":0.67,"135":0.675,"136":0.68,"137":0.685,"138":0.69,"139":0.695,"140":0.7,"141":0.705,"142":0.71,"143":0.715,"144":0.72,"145":0.725,"146":0.73,"147":0.735,"148":0.74,"149":0.745,"150":0.75,"151":0.755,"152":0.76,"153":0.765,"154":0.77,"155":0.775,"156":0.78,"157":0.785,"158":0.79,"159":0.795,"160":0.8,"161":0.805,"162":0.81,"163":0.815,"164":0.82,"165":0.825,"166":0.83,"167":0.835,"168":0.84,"169":0.845,"170":0.85,"171":0.855,"172":0.86,"173":0.865,"174":0.87,"175":0.875,"176":0.88,"177":0.885,"178":0.89,"179":0.895,"180":0.9,"181":0.905,"182":0.91,"183":0.915,"184":0.92,"185":0.925,"186":0.93,"187":0.935,"188":0.94,"189":0.945,"190":0.95,"191":0.955,"192":0.96,"193":0.965,"194":0.97,"195":0.975,"196":0.98,"197":0.985,"198":0.99,"199":0.995,"200":1.0},"flow_in":{"0":2.2,"1":2.2784881494,"2":2.3569762988,"3":2.4351546914,"4":2.5133330839,"5":2.5908931852,"6":2.6684532865,"7":2.7450890022,"8":2.8217247179,"9":2.8971336019,"10":2.9725424859,"11":3.0464269338,"12":3.1203113817,"13":3.1923798053,"14":3.2644482289,"15":3.3344162071,"16":3.4043841853,"17":3.4719755864,"18":3.5395669874,"19":3.6045150591,"20":3.6694631307,"21":3.7315115526,"22":3.7935599744,"23":3.8524638696,"24":3.9113677648,"25":3.9668946667,"26":4.0224215686,"27":4.0743523377,"28":4.1262831069,"29":4.1744127964,"30":4.2225424859,"31":4.2666811498,"32":4.3108198138,"33":4.3507932569,"34":4.3907667001,"35":4.4264171656,"36":4.4620676312,"37":4.4932544229,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2},"flow_out":{"0":2.2,"1":2.2784881494,"2":2.3569762988,"3":2.4351546914,"4":2.5133330839,"5":2.5908931852,"6":2.6684532865,"7":2.7450890022,"8":2.8217247179,"9":2.8971336019,"10":2.9725424859,"11":3.0464269338,"12":3.1203113817,"13":3.1923798053,"14":3.2644482289,"15":3.3344162071,"16":3.4043841853,"17":3.4719755864,"18":3.5395669874,"19":3.6045150591,"20":3.6694631307,"21":3.7315115526,"22":3.7935599744,"23":3.8524638696,"24":3.9113677648,"25":3.9668946667,"26":4.0224215686,"27":4.0743523377,"28":4.1262831069,"29":4.1744127964,"30":4.2225424859,"31":4.2666811498,"32":4.3108198138,"33":4.3507932569,"34":4.3907667001,"35":4.4264171656,"36":4.4620676312,"37":4.4932544229,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2},"pressure_in":{"0":3493.9321778673,"1":3637.1001006528,"2":3781.3248955491,"3":3926.2044186362,"4":4072.027480714,"5":4218.0468308143,"6":4364.8926630676,"7":4511.4755685161,"8":4658.7646375326,"9":4805.332602569,"10":4952.4836256832,"11":5098.45821351,"12":5244.8904528606,"13":5389.6955684689,"14":5534.8311229057,"15":5677.8952866596,"16":5821.1613724554,"17":5961.9199754602,"18":6102.7511868264,"19":6240.6487191826,"20":6378.4892596676,"21":6512.9815028144,"22":6647.2873787782,"23":6777.8435532755,"24":6908.0847207843,"25":7034.1895810568,"26":7159.8520377239,"27":7281.0079055,"28":7401.5957190187,"29":7517.324447439,"30":7632.3617128006,"31":7742.2065734457,"32":7851.2392911194,"33":7954.7667765074,"34":8057.3646441688,"35":8154.1661786123,"36":8249.9242893503,"37":8339.6178414172,"38":8428.1582817164,"39":8510.3898719337,"40":8591.3632131265,"41":8665.8083109758,"42":8738.8949882778,"43":8805.2597929684,"44":8870.1713666544,"45":8928.1939666215,"46":8984.6742603654,"47":9034.125666915,"48":9081.9517788008,"49":9122.6368298234,"50":9161.6200120371,"51":9193.3781422235,"52":9223.3645459547,"53":9246.070420474,"54":9266.9417030866,"55":9280.5057122254,"56":9292.1795043022,"57":9296.5481171133,"58":9298.9783475301,"59":9294.1343230944,"60":9287.3114008421,"61":9273.2738563112,"62":9257.2247083468,"63":9234.0490434957,"64":9208.8370084741,"65":9176.614687064,"66":9142.3392653691,"67":9101.1974541818,"68":9057.993915244,"69":9008.0949822122,"70":8956.133830662,"71":8897.6747040778,"72":8837.1610068415,"73":8770.37239817,"74":8701.5449751646,"75":8626.6904685315,"76":8549.8209501513,"77":8467.1959620964,"78":8382.5877172121,"79":8292.5183308156,"80":8200.5052695159,"81":8103.346947497,"82":8004.2922032982,"83":7900.4283851666,"84":7794.72288189,"85":7684.5634706851,"86":7572.62437966,"87":7456.6041242506,"88":7338.8732179293,"89":7217.4499972589,"90":7094.3919057424,"91":6968.04492179,"92":6840.1452991456,"93":6709.3731857345,"94":6577.1367933411,"95":6442.4556482587,"96":6306.404362744,"97":6168.3457109401,"98":6029.016464572,"99":5888.1251604722,"100":5746.0678221327,"101":5602.8998993472,"102":5458.6751044509,"103":5313.7955813638,"104":5167.972519286,"105":5021.9531691857,"106":4875.1073369324,"107":4728.5244314839,"108":4581.2353624674,"109":4434.667397431,"110":4287.5163743168,"111":4141.54178649,"112":3995.1095471394,"113":3850.3044315311,"114":3705.1688770943,"115":3562.1047133404,"116":3418.8386275446,"117":3278.0800245398,"118":3137.2488131736,"119":2999.3512808174,"120":2861.5107403324,"121":2727.0184971856,"122":2592.7126212218,"123":2462.1564467245,"124":2331.9152792157,"125":2205.8104189432,"126":2080.1479622761,"127":1958.9920945,"128":1838.4042809813,"129":1722.675552561,"130":1607.6382871994,"131":1497.7934265543,"132":1388.7607088806,"133":1285.2332234926,"134":1182.6353558312,"135":1085.8338213877,"136":990.0757106497,"137":900.3821585829,"138":811.8417182836,"139":729.6101280663,"140":648.6367868735,"141":574.1916890242,"142":501.1050117222,"143":434.7402070316,"144":369.8286333456,"145":311.8060333785,"146":255.3257396346,"147":205.874333085,"148":158.0482211992,"149":117.3631701766,"150":78.3799879629,"151":46.6218577765,"152":16.6354540453,"153":-6.070420474,"154":-26.9417030866,"155":-40.5057122254,"156":-52.1795043022,"157":-56.5481171133,"158":-58.9783475301,"159":-54.1343230944,"160":-47.3114008421,"161":-33.2738563112,"162":-17.2247083468,"163":5.9509565043,"164":31.1629915259,"165":63.385312936,"166":97.6607346309,"167":138.8025458182,"168":182.006084756,"169":231.9050177878,"170":283.866169338,"171":342.3252959222,"172":402.8389931585,"173":469.62760183,"174":538.4550248354,"175":613.3095314685,"176":690.1790498487,"177":772.8040379036,"178":857.4122827879,"179":947.4816691844,"180":1039.4947304841,"181":1136.6530525029,"182":1235.7077967018,"183":1339.5716148334,"184":1445.27711811,"185":1555.4365293149,"186":1667.37562034,"187":1783.3958757494,"188":1901.1267820707,"189":2022.5500027411,"190":2145.6080942576,"191":2271.95507821,"192":2399.8547008544,"193":2530.6268142655,"194":2662.8632066589,"195":2797.5443517413,"196":2933.595637256,"197":3071.6542890599,"198":3210.983535428,"199":3351.8748395278,"200":3493.9321778673},"pressure_out":{"0":3273.9321778673,"1":3409.2512857116,"2":3545.6272656668,"3":3682.6889494995,"4":3820.6941723229,"5":3958.9575122955,"6":4098.0473344212,"7":4236.9666682973,"8":4376.5921657414,"9":4515.6192423766,"10":4655.2293770895,"11":4793.8155201275,"12":4932.8593146894,"13":5070.4575879377,"14":5208.3863000145,"15":5344.4536659513,"16":5480.72295393,"17":5614.7224168251,"18":5748.7944880817,"19":5880.1972132737,"20":6011.5429465945,"21":6139.8303475592,"22":6267.9313813411,"23":6392.5971663158,"24":6516.9479443021,"25":6637.5001143881,"26":6757.6098808686,"27":6873.5726717253,"28":6988.9674083247,"29":7099.8831677952,"30":7210.1074642069,"31":7315.538458461,"32":7420.1573097438,"33":7519.6874508142,"34":7618.2879741579,"35":7711.5244620486,"36":7803.7175262338,"37":7890.2923991229,"38":7975.7141602443,"39":8055.2857466607,"40":8133.5990840527,"41":8205.8533512978,"42":8276.7491979956,"43":8341.4009914862,"44":8404.5995539722,"45":8461.3937226161,"46":8516.6455850368,"47":8565.3579881972,"48":8612.4450966937,"49":8652.8834887698,"50":8691.6200120371,"51":8723.62480117,"52":8753.8578638476,"53":8777.3027417562,"54":8798.913027758,"55":8813.70546822,"56":8826.60769162,"57":8832.6893156311,"58":8836.8325572479,"59":8834.1793634164,"60":8829.5472717683,"61":8818.1697310383,"62":8804.7805868747,"63":8784.7236012014,"64":8762.6302453576,"65":8733.9729705003,"66":8703.2625953581,"67":8666.1181284885,"68":8626.9119338685,"69":8581.4268672276,"70":8533.8795820683,"71":8480.233424434,"72":8424.5326961476,"73":8362.9371643954,"74":8299.3028183093,"75":8230.0010018627,"76":8158.6841736691,"77":8081.9495751367,"78":8003.2317197749,"79":7919.3671755604,"80":7833.5589564428,"81":7742.8954415881,"82":7650.3355045534,"83":7553.2308265315,"84":7454.2844633646,"85":7351.1218499767,"86":7246.1795567688,"87":7137.3661437194,"88":7026.8420797581,"89":6912.8073038765,"90":6797.1376571486,"91":6678.3315615975,"92":6557.9728273544,"93":6434.8642855157,"94":6310.2914646947,"95":6183.36632974,"96":6055.0710543529,"97":5924.8302418034,"98":5793.3188346896,"99":5660.2763455311,"100":5526.0678221327,"101":5390.7487142884,"102":5254.3727343332,"103":5117.3110505005,"104":4979.3058276771,"105":4841.0424877045,"106":4701.9526655788,"107":4563.0333317027,"108":4423.4078342586,"109":4284.3807576234,"110":4144.7706229105,"111":4006.1844798725,"112":3867.1406853106,"113":3729.5424120623,"114":3591.6136999855,"115":3455.5463340488,"116":3319.27704607,"117":3185.2775831749,"118":3051.2055119183,"119":2919.8027867263,"120":2788.4570534055,"121":2660.1696524408,"122":2532.0686186589,"123":2407.4028336842,"124":2283.0520556979,"125":2162.4998856119,"126":2042.3901191314,"127":1926.4273282747,"128":1811.0325916753,"129":1700.1168322048,"130":1589.8925357931,"131":1484.461541539,"132":1379.8426902562,"133":1280.3125491858,"134":1181.7120258421,"135":1088.4755379514,"136":996.2824737662,"137":909.7076008771,"138":824.2858397557,"139":744.7142533393,"140":666.4009159472,"141":594.1466487022,"142":523.2508020044,"143":458.5990085138,"144":395.4004460278,"145":338.6062773839,"146":283.3544149632,"147":234.6420118028,"148":187.5549033063,"149":147.1165112302,"150":108.3799879629,"151":76.37519883,"152":46.1421361524,"153":22.6972582438,"154":1.086972242,"155":-13.70546822,"156":-26.60769162,"157":-32.6893156311,"158":-36.8325572479,"159":-34.1793634164,"160":-29.5472717683,"161":-18.1697310383,"162":-4.7805868747,"163":15.2763987986,"164":37.3697546424,"165":66.0270294997,"166":96.7374046419,"167":133.8818715115,"168":173.0880661315,"169":218.5731327724,"170":266.1204179317,"171":319.766575566,"172":375.4673038524,"173":437.0628356046,"174":500.6971816907,"175":569.9989981373,"176":641.3158263309,"177":718.0504248633,"178":796.7682802251,"179":880.6328244396,"180":966.4410435572,"181":1057.1045584119,"182":1149.6644954466,"183":1246.7691734685,"184":1345.7155366354,"185":1448.8781500233,"186":1553.8204432312,"187":1662.6338562806,"188":1773.1579202419,"189":1887.1926961236,"190":2002.8623428514,"191":2121.6684384025,"192":2242.0271726456,"193":2365.1357144843,"194":2489.7085353053,"195":2616.63367026,"196":2744.9289456471,"197":2875.1697581966,"198":3006.6811653104,"199":3139.7236544689,"200":3273.9321778673},"d_flow_in":{"0":15.6976298823,"1":15.6976298823,"2":15.6976298823,"3":15.6356785087,"4":15.6356785088,"5":15.5120202554,"6":15.5120202554,"7":15.3271431448,"8":15.3271431448,"9":15.0817768025,"10":15.0817768025,"11":14.7768895774,"12":14.7768895774,"13":14.4136847201,"14":14.4136847201,"15":13.9935956342,"16":13.9935956342,"17":13.5182802193,"18":13.5182802193,"19":12.9896143284,"20":12.9896143284,"21":12.4096843641,"22":12.4096843641,"23":11.780779045,"24":11.780779045,"25":11.1053803732,"26":11.1053803732,"27":10.3861538386,"28":10.3861538386,"29":9.6259378998,"30":9.6259378998,"31":8.8277327818,"32":8.8277327818,"33":7.9946886355,"34":7.9946886355,"35":7.1300931055,"36":7.1300931055,"37":6.2373583556,"38":6.2373583556,"39":5.3200076017,"40":5.3200076017,"41":4.3816612084,"42":4.3816612084,"43":3.4260224,"44":3.4260224,"45":2.4568626464,"46":2.4568626464,"47":1.4780067784,"48":1.4780067784,"49":0.4933178929,"50":0.4933178929,"51":-0.4933178929,"52":-0.4933178929,"53":-1.4780067784,"54":-1.4780067784,"55":-2.4568626464,"56":-2.4568626464,"57":-3.4260224,"58":-3.4260224,"59":-4.3816612084,"60":-4.3816612084,"61":-5.3200076017,"62":-5.3200076017,"63":-6.2373583556,"64":-6.2373583556,"65":-7.1300931055,"66":-7.1300931055,"67":-7.9946886355,"68":-7.9946886355,"69":-8.8277327818,"70":-8.8277327818,"71":-9.6259378998,"72":-9.6259378998,"73":-10.3861538386,"74":-10.3861538386,"75":-11.1053803732,"76":-11.1053803732,"77":-11.780779045,"78":-11.780779045,"79":-12.4096843641,"80":-12.4096843641,"81":-12.9896143284,"82":-12.9896143284,"83":-13.5182802193,"84":-13.5182802193,"85":-13.9935956342,"86":-13.9935956342,"87":-14.4136847201,"88":-14.4136847201,"89":-14.7768895774,"90":-14.7768895774,"91":-15.0817768025,"92":-15.0817768025,"93":-15.3271431448,"94":-15.3271431448,"95":-15.5120202554,"96":-15.5120202554,"97":-15.6356785088,"98":-15.6356785087,"99":-15.6976298823,"100":-15.6976298823,"101":-15.6976298823,"102":-15.6976298823,"103":-15.6356785087,"104":-15.6356785088,"105":-15.5120202554,"106":-15.5120202554,"107":-15.3271431448,"108":-15.3271431448,"109":-15.0817768025,"110":-15.0817768025,"111":-14.7768895774,"112":-14.7768895774,"113":-14.4136847201,"114":-14.4136847201,"115":-13.9935956342,"116":-13.9935956342,"117":-13.5182802193,"118":-13.5182802193,"119":-12.9896143284,"120":-12.9896143284,"121":-12.4096843641,"122":-12.4096843641,"123":-11.780779045,"124":-11.780779045,"125":-11.1053803732,"126":-11.1053803732,"127":-10.3861538386,"128":-10.3861538386,"129":-9.6259378998,"130":-9.6259378998,"131":-8.8277327818,"132":-8.8277327818,"133":-7.9946886355,"134":-7.9946886355,"135":-7.1300931055,"136":-7.1300931055,"137":-6.2373583556,"138":-6.2373583556,"139":-5.3200076017,"140":-5.3200076017,"141":-4.3816612084,"142":-4.3816612084,"143":-3.4260224,"144":-3.4260224,"145":-2.4568626464,"146":-2.4568626464,"147":-1.4780067784,"148":-1.4780067784,"149":-0.4933178929,"150":-0.4933178929,"151":0.4933178929,"152":0.4933178929,"153":1.4780067784,"154":1.4780067784,"155":2.4568626464,"156":2.4568626464,"157":3.4260224,"158":3.4260224,"159":4.3816612084,"160":4.3816612084,"161":5.3200076017,"162":5.3200076017,"163":6.2373583556,"164":6.2373583556,"165":7.1300931055,"166":7.1300931055,"167":7.9946886355,"168":7.9946886355,"169":8.8277327818,"170":8.8277327818,"171":9.6259378998,"172":9.6259378998,"173":10.3861538386,"174":10.3861538386,"175":11.1053803732,"176":11.1053803732,"177":11.780779045,"178":11.780779045,"179":12.4096843641,"180":12.4096843641,"181":12.9896143284,"182":12.9896143284,"183":13.5182802193,"184":13.5182802193,"185":13.9935956342,"186":13.9935956342,"187":14.4136847201,"188":14.4136847201,"189":14.7768895774,"190":14.7768895774,"191":15.0817768025,"192":15.0817768025,"193":15.3271431448,"194":15.3271431448,"195":15.5120202554,"196":15.5120202554,"197":15.6356785088,"198":15.6356785087,"199":15.6976298823,"200":15.6976298823},"d_flow_out":{"0":15.6976298823,"1":15.6976298823,"2":15.6976298823,"3":15.6356785087,"4":15.6356785088,"5":15.5120202554,"6":15.5120202554,"7":15.3271431448,"8":15.3271431448,"9":15.0817768025,"10":15.0817768025,"11":14.7768895774,"12":14.7768895774,"13":14.4136847201,"14":14.4136847201,"15":13.9935956342,"16":13.9935956342,"17":13.5182802193,"18":13.5182802193,"19":12.9896143284,"20":12.9896143284,"21":12.4096843641,"22":12.4096843641,"23":11.780779045,"24":11.780779045,"25":11.1053803732,"26":11.1053803732,"27":10.3861538386,"28":10.3861538386,"29":9.6259378998,"30":9.6259378998,"31":8.8277327818,"32":8.8277327818,"33":7.9946886355,"34":7.9946886355,"35":7.1300931055,"36":7.1300931055,"37":6.2373583556,"38":6.2373583556,"39":5.3200076017,"40":5.3200076017,"41":4.3816612084,"42":4.3816612084,"43":3.4260224,"44":3.4260224,"45":2.4568626464,"46":2.4568626464,"47":1.4780067784,"48":1.4780067784,"49":0.4933178929,"50":0.4933178929,"51":-0.4933178929,"52":-0.4933178929,"53":-1.4780067784,"54":-1.4780067784,"55":-2.4568626464,"56":-2.4568626464,"57":-3.4260224,"58":-3.4260224,"59":-4.3816612084,"60":-4.3816612084,"61":-5.3200076017,"62":-5.3200076017,"63":-6.2373583556,"64":-6.2373583556,"65":-7.1300931055,"66":-7.1300931055,"67":-7.9946886355,"68":-7.9946886355,"69":-8.8277327818,"70":-8.8277327818,"71":-9.6259378998,"72":-9.6259378998,"73":-10.3861538386,"74":-10.3861538386,"75":-11.1053803732,"76":-11.1053803732,"77":-11.780779045,"78":-11.780779045,"79":-12.4096843641,"80":-12.4096843641,"81":-12.9896143284,"82":-12.9896143284,"83":-13.5182802193,"84":-13.5182802193,"85":-13.9935956342,"86":-13.9935956342,"87":-14.4136847201,"88":-14.4136847201,"89":-14.7768895774,"90":-14.7768895774,"91":-15.0817768025,"92":-15.0817768025,"93":-15.3271431448,"94":-15.3271431448,"95":-15.5120202554,"96":-15.5120202554,"97":-15.6356785088,"98":-15.6356785087,"99":-15.6976298823,"100":-15.6976298823,"101":-15.6976298823,"102":-15.6976298823,"103":-15.6356785087,"104":-15.6356785088,"105":-15.5120202554,"106":-15.5120202554,"107":-15.3271431448,"108":-15.3271431448,"109":-15.0817768025,"110":-15.0817768025,"111":-14.7768895774,"112":-14.7768895774,"113":-14.4136847201,"114":-14.4136847201,"115":-13.9935956342,"116":-13.9935956342,"117":-13.5182802193,"118":-13.5182802193,"119":-12.9896143284,"120":-12.9896143284,"121":-12.4096843641,"122":-12.4096843641,"123":-11.780779045,"124":-11.780779045,"125":-11.1053803732,"126":-11.1053803732,"127":-10.3861538386,"128":-10.3861538386,"129":-9.6259378998,"130":-9.6259378998,"131":-8.8277327818,"132":-8.8277327818,"133":-7.9946886355,"134":-7.9946886355,"135":-7.1300931055,"136":-7.1300931055,"137":-6.2373583556,"138":-6.2373583556,"139":-5.3200076017,"140":-5.3200076017,"141":-4.3816612084,"142":-4.3816612084,"143":-3.4260224,"144":-3.4260224,"145":-2.4568626464,"146":-2.4568626464,"147":-1.4780067784,"148":-1.4780067784,"149":-0.4933178929,"150":-0.4933178929,"151":0.4933178929,"152":0.4933178929,"153":1.4780067784,"154":1.4780067784,"155":2.4568626464,"156":2.4568626464,"157":3.4260224,"158":3.4260224,"159":4.3816612084,"160":4.3816612084,"161":5.3200076017,"162":5.3200076017,"163":6.2373583556,"164":6.2373583556,"165":7.1300931055,"166":7.1300931055,"167":7.9946886355,"168":7.9946886355,"169":8.8277327818,"170":8.8277327818,"171":9.6259378998,"172":9.6259378998,"173":10.3861538386,"174":10.3861538386,"175":11.1053803732,"176":11.1053803732,"177":11.780779045,"178":11.780779045,"179":12.4096843641,"180":12.4096843641,"181":12.9896143284,"182":12.9896143284,"183":13.5182802193,"184":13.5182802193,"185":13.9935956342,"186":13.9935956342,"187":14.4136847201,"188":14.4136847201,"189":14.7768895774,"190":14.7768895774,"191":15.0817768025,"192":15.0817768025,"193":15.3271431448,"194":15.3271431448,"195":15.5120202554,"196":15.5120202554,"197":15.6356785088,"198":15.6356785087,"199":15.6976298823,"200":15.6976298823},"d_pressure_in":{"0":28411.4676679106,"1":28633.5845570844,"2":28844.9589792712,"3":28975.904617419,"4":29164.6124155498,"5":29203.870020059,"6":29369.1664506672,"7":29316.5810897101,"8":29457.8138033004,"9":29313.593007277,"10":29430.2046228401,"11":29194.9175653455,"12":29286.447870122,"13":28961.0231216714,"14":29027.1108873643,"15":28612.832750771,"16":28653.2171591672,"17":28151.7206009562,"18":28166.2422732454,"19":27579.5064712335,"20":27568.1080970038,"21":26898.4486293466,"22":26861.1751927741,"23":26111.2348994523,"24":26048.2335017623,"25":25220.9720545028,"26":25132.4913334204,"27":24231.1735552144,"28":24117.5627037321,"29":23145.7456840757,"30":23007.453072321,"31":21968.9721290054,"32":21806.5435347368,"33":20705.4970776116,"34":20519.5735322864,"35":19360.3068886913,"36":19151.6221476026,"37":17938.7104133677,"38":17708.0880598461,"39":16446.3180434585,"40":16194.6682385722,"41":14889.019569844,"42":14617.3354604014,"43":13272.9609381286,"44":12982.3147371934,"45":11604.5199934314,"46":11296.0587487761,"47":9890.281309919,"48":9565.2223771521,"49":8137.0102045179,"50":7796.6364427418,"51":6351.6260372853,"52":5997.280746236,"53":4541.1749038664,"54":4174.2565225224,"55":2712.8018277654,"56":2334.7584153484,"57":873.7225622142,"58":486.0460833614,"59":-968.8048871286,"60":-1364.5844504632,"61":-2807.5089061825,"62":-3209.829592881,"63":-4635.1329702149,"64":-5042.407004329,"65":-6444.4642820037,"66":-6855.0843389901,"67":-8228.3622374638,"68":-8640.7077875524,"69":-9979.7866063572,"70":-10392.2303100416,"71":-11691.825316846,"72":-12102.7394472553,"73":-13357.721734295,"74":-13765.4846010849,"75":-14970.9013266271,"76":-15373.9036760439,"77":-16524.9976109731,"78":-16921.6489768642,"79":-18013.877279301,"80":-18402.6122599392,"81":-19431.6644037657,"82":-19810.9488397784,"83":-20772.7636263112,"84":-21141.1006553139,"85":-22031.8822409924,"86":-22387.8182050085,"87":-23204.0510818812,"88":-23546.1812642675,"89":-24284.6441340748,"90":-24611.6183033058,"91":-25269.3967904739,"92":-25579.9245288722,"93":-26154.4226822259,"94":-26447.2784786858,"95":-26936.2290164688,"96":-27210.2571029551,"97":-27611.7303607773,"98":-27865.8492736241,"99":-28178.2608199503,"100":-28411.4676679105,"101":-28633.5845570845,"102":-28844.9589792714,"103":-28975.9046174189,"104":-29164.6124155498,"105":-29203.8700200592,"106":-29369.1664506671,"107":-29316.58108971,"108":-29457.8138033004,"109":-29313.5930072768,"110":-29430.2046228398,"111":-29194.9175653457,"112":-29286.447870122,"113":-28961.0231216715,"114":-29027.1108873643,"115":-28612.8327507706,"116":-28653.2171591671,"117":-28151.7206009565,"118":-28166.2422732458,"119":-27579.5064712336,"120":-27568.1080970041,"121":-26898.4486293469,"122":-26861.1751927743,"123":-26111.2348994522,"124":-26048.2335017622,"125":-25220.9720545022,"126":-25132.4913334199,"127":-24231.1735552149,"128":-24117.5627037329,"129":-23145.7456840751,"130":-23007.4530723201,"131":-21968.9721290057,"132":-21806.5435347367,"133":-20705.4970776116,"134":-20519.5735322865,"135":-19360.3068886915,"136":-19151.6221476027,"137":-17938.7104133674,"138":-17708.0880598458,"139":-16446.3180434591,"140":-16194.6682385729,"141":-14889.0195698432,"142":-14617.3354604009,"143":-13272.9609381288,"144":-12982.314737194,"145":-11604.5199934308,"146":-11296.0587487748,"147":-9890.2813099195,"148":-9565.2223771527,"149":-8137.0102045177,"150":-7796.636442742,"151":-6351.6260372853,"152":-5997.2807462361,"153":-4541.1749038658,"154":-4174.2565225218,"155":-2712.8018277661,"156":-2334.7584153492,"157":-873.7225622138,"158":-486.0460833614,"159":968.8048871278,"160":1364.5844504628,"161":2807.5089061833,"162":3209.8295928816,"163":4635.1329702148,"164":5042.4070043289,"165":6444.4642820038,"166":6855.0843389901,"167":8228.362237464,"168":8640.7077875521,"169":9979.7866063572,"170":10392.230310041,"171":11691.8253168457,"172":12102.7394472544,"173":13357.7217342957,"174":13765.4846010854,"175":14970.9013266272,"176":15373.9036760431,"177":16524.9976109728,"178":16921.6489768641,"179":18013.877279301,"180":18402.6122599393,"181":19431.6644037657,"182":19810.9488397786,"183":20772.7636263114,"184":21141.1006553143,"185":22031.8822409921,"186":22387.8182050084,"187":23204.0510818825,"188":23546.181264269,"189":24284.6441340737,"190":24611.6183033046,"191":25269.396790474,"192":25579.924528872,"193":26154.4226822259,"194":26447.2784786856,"195":26936.2290164689,"196":27210.2571029549,"197":27611.7303607774,"198":27865.8492736238,"199":28178.2608199504,"200":28411.4676679106},"d_pressure_out":{"0":26841.7046796776,"1":27063.8215688519,"2":27275.1959910382,"3":27412.3367665445,"4":27601.0445646747,"5":27652.6679945239,"6":27817.9644251314,"7":27783.8667752321,"8":27925.0994888219,"9":27805.4153270242,"10":27922.0269425881,"11":27717.228607602,"12":27808.758912379,"13":27519.6546496614,"14":27585.7424153546,"15":27213.4731873547,"16":27253.8575957511,"17":26799.8925790245,"18":26814.4142513132,"19":26280.5450383967,"20":26269.1466641669,"21":25657.4801929415,"22":25620.2067563685,"23":24933.1569949526,"24":24870.1555972623,"25":24110.4340171843,"26":24021.9532961025,"27":23192.5581713549,"28":23078.947319873,"29":22183.1518940966,"30":22044.859282342,"31":21086.1988508286,"32":20923.7702565603,"33":19906.0282140654,"34":19720.1046687401,"35":18647.2975781376,"36":18438.6128370487,"37":17314.974577812,"38":17084.35222429,"39":15914.3172832861,"40":15662.6674783996,"41":14450.8534490069,"42":14179.1693395645,"43":12930.3586981271,"44":12639.7124971925,"45":11358.8337287866,"46":11050.372484131,"47":9742.4806320742,"48":9417.4216993073,"49":8087.6784152247,"50":7747.3046534486,"51":6400.9578265785,"52":6046.6125355293,"53":4688.9755817115,"54":4322.0572003669,"55":2958.4880924101,"56":2580.4446799936,"57":1216.3248022156,"58":828.6483233629,"59":-530.6387662915,"60":-926.4183296263,"61":-2275.5081460103,"62":-2677.8288327086,"63":-4011.397134659,"64":-4418.6711687733,"65":-5731.4549714496,"66":-6142.0750284357,"67":-7428.8933739181,"68":-7841.238924006,"69":-9097.0133281807,"70":-9509.4570318644,"71":-10729.2315268672,"72":-11140.1456572761,"73":-12319.1063504361,"74":-12726.8692172254,"75":-13860.3632893092,"76":-14263.3656387256,"77":-15346.9197064729,"78":-15743.5710723646,"79":-16772.9088428953,"80":-17161.643823534,"81":-18132.7029709286,"82":-18511.9874069418,"83":-19420.935604379,"84":-19789.2726333817,"85":-20632.5226775764,"86":-20988.4586415923,"87":-21762.6826098717,"88":-22104.8127922575,"89":-22806.9551763318,"90":-23133.9293455622,"91":-23761.2191102214,"92":-24071.7468486202,"93":-24621.7083677473,"94":-24914.5641642078,"95":-25385.0269909332,"96":-25659.0550774199,"97":-26048.1625099022,"98":-26302.2814227494,"99":-26608.4978317173,"100":-26841.7046796775,"101":-27063.821568852,"102":-27275.1959910383,"103":-27412.3367665444,"104":-27601.0445646748,"105":-27652.667994524,"106":-27817.9644251314,"107":-27783.866775232,"108":-27925.0994888221,"109":-27805.4153270241,"110":-27922.026942588,"111":-27717.2286076022,"112":-27808.758912379,"113":-27519.6546496615,"114":-27585.7424153549,"115":-27213.4731873543,"116":-27253.8575957508,"117":-26799.8925790248,"118":-26814.4142513136,"119":-26280.545038397,"120":-26269.146664167,"121":-25657.4801929417,"122":-25620.2067563687,"123":-24933.1569949525,"124":-24870.155597262,"125":-24110.434017184,"126":-24021.9532961022,"127":-23192.5581713553,"128":-23078.9473198737,"129":-22183.1518940959,"130":-22044.8592823414,"131":-21086.1988508288,"132":-20923.7702565602,"133":-19906.0282140653,"134":-19720.1046687401,"135":-18647.2975781377,"136":-18438.6128370487,"137":-17314.9745778117,"138":-17084.35222429,"139":-15914.3172832867,"140":-15662.6674784004,"141":-14450.8534490061,"142":-14179.1693395641,"143":-12930.3586981273,"144":-12639.7124971927,"145":-11358.833728786,"146":-11050.3724841302,"147":-9742.4806320747,"148":-9417.4216993079,"149":-8087.6784152245,"150":-7747.3046534488,"151":-6400.9578265785,"152":-6046.6125355294,"153":-4688.9755817106,"154":-4322.0572003667,"155":-2958.4880924108,"156":-2580.444679994,"157":-1216.3248022151,"158":-828.6483233629,"159":530.6387662908,"160":926.4183296259,"161":2275.5081460106,"162":2677.8288327091,"163":4011.3971346589,"164":4418.6711687732,"165":5731.4549714498,"166":6142.075028436,"167":7428.893373918,"168":7841.2389240058,"169":9097.0133281806,"170":9509.4570318642,"171":10729.2315268669,"172":11140.1456572753,"173":12319.1063504365,"174":12726.8692172258,"175":13860.363289309,"176":14263.3656387252,"177":15346.9197064727,"178":15743.5710723643,"179":16772.9088428954,"180":17161.6438235341,"181":18132.7029709285,"182":18511.987406942,"183":19420.9356043792,"184":19789.272633382,"185":20632.5226775763,"186":20988.4586415922,"187":21762.6826098729,"188":22104.8127922588,"189":22806.9551763307,"190":23133.9293455612,"191":23761.2191102215,"192":24071.7468486199,"193":24621.7083677473,"194":24914.5641642077,"195":25385.0269909332,"196":25659.0550774197,"197":26048.1625099023,"198":26302.2814227494,"199":26608.4978317172,"200":26841.7046796776}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0", + "101": "branch0_seg0", + "102": "branch0_seg0", + "103": "branch0_seg0", + "104": "branch0_seg0", + "105": "branch0_seg0", + "106": "branch0_seg0", + "107": "branch0_seg0", + "108": "branch0_seg0", + "109": "branch0_seg0", + "110": "branch0_seg0", + "111": "branch0_seg0", + "112": "branch0_seg0", + "113": "branch0_seg0", + "114": "branch0_seg0", + "115": "branch0_seg0", + "116": "branch0_seg0", + "117": "branch0_seg0", + "118": "branch0_seg0", + "119": "branch0_seg0", + "120": "branch0_seg0", + "121": "branch0_seg0", + "122": "branch0_seg0", + "123": "branch0_seg0", + "124": "branch0_seg0", + "125": "branch0_seg0", + "126": "branch0_seg0", + "127": "branch0_seg0", + "128": "branch0_seg0", + "129": "branch0_seg0", + "130": "branch0_seg0", + "131": "branch0_seg0", + "132": "branch0_seg0", + "133": "branch0_seg0", + "134": "branch0_seg0", + "135": "branch0_seg0", + "136": "branch0_seg0", + "137": "branch0_seg0", + "138": "branch0_seg0", + "139": "branch0_seg0", + "140": "branch0_seg0", + "141": "branch0_seg0", + "142": "branch0_seg0", + "143": "branch0_seg0", + "144": "branch0_seg0", + "145": "branch0_seg0", + "146": "branch0_seg0", + "147": "branch0_seg0", + "148": "branch0_seg0", + "149": "branch0_seg0", + "150": "branch0_seg0", + "151": "branch0_seg0", + "152": "branch0_seg0", + "153": "branch0_seg0", + "154": "branch0_seg0", + "155": "branch0_seg0", + "156": "branch0_seg0", + "157": "branch0_seg0", + "158": "branch0_seg0", + "159": "branch0_seg0", + "160": "branch0_seg0", + "161": "branch0_seg0", + "162": "branch0_seg0", + "163": "branch0_seg0", + "164": "branch0_seg0", + "165": "branch0_seg0", + "166": "branch0_seg0", + "167": "branch0_seg0", + "168": "branch0_seg0", + "169": "branch0_seg0", + "170": "branch0_seg0", + "171": "branch0_seg0", + "172": "branch0_seg0", + "173": "branch0_seg0", + "174": "branch0_seg0", + "175": "branch0_seg0", + "176": "branch0_seg0", + "177": "branch0_seg0", + "178": "branch0_seg0", + "179": "branch0_seg0", + "180": "branch0_seg0", + "181": "branch0_seg0", + "182": "branch0_seg0", + "183": "branch0_seg0", + "184": "branch0_seg0", + "185": "branch0_seg0", + "186": "branch0_seg0", + "187": "branch0_seg0", + "188": "branch0_seg0", + "189": "branch0_seg0", + "190": "branch0_seg0", + "191": "branch0_seg0", + "192": "branch0_seg0", + "193": "branch0_seg0", + "194": "branch0_seg0", + "195": "branch0_seg0", + "196": "branch0_seg0", + "197": "branch0_seg0", + "198": "branch0_seg0", + "199": "branch0_seg0", + "200": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.005, + "2": 0.01, + "3": 0.015, + "4": 0.02, + "5": 0.025, + "6": 0.03, + "7": 0.035, + "8": 0.04, + "9": 0.045, + "10": 0.05, + "11": 0.055, + "12": 0.06, + "13": 0.065, + "14": 0.07, + "15": 0.075, + "16": 0.08, + "17": 0.085, + "18": 0.09, + "19": 0.095, + "20": 0.1, + "21": 0.105, + "22": 0.11, + "23": 0.115, + "24": 0.12, + "25": 0.125, + "26": 0.13, + "27": 0.135, + "28": 0.14, + "29": 0.145, + "30": 0.15, + "31": 0.155, + "32": 0.16, + "33": 0.165, + "34": 0.17, + "35": 0.175, + "36": 0.18, + "37": 0.185, + "38": 0.19, + "39": 0.195, + "40": 0.2, + "41": 0.205, + "42": 0.21, + "43": 0.215, + "44": 0.22, + "45": 0.225, + "46": 0.23, + "47": 0.235, + "48": 0.24, + "49": 0.245, + "50": 0.25, + "51": 0.255, + "52": 0.26, + "53": 0.265, + "54": 0.27, + "55": 0.275, + "56": 0.28, + "57": 0.285, + "58": 0.29, + "59": 0.295, + "60": 0.3, + "61": 0.305, + "62": 0.31, + "63": 0.315, + "64": 0.32, + "65": 0.325, + "66": 0.33, + "67": 0.335, + "68": 0.34, + "69": 0.345, + "70": 0.35, + "71": 0.355, + "72": 0.36, + "73": 0.365, + "74": 0.37, + "75": 0.375, + "76": 0.38, + "77": 0.385, + "78": 0.39, + "79": 0.395, + "80": 0.4, + "81": 0.405, + "82": 0.41, + "83": 0.415, + "84": 0.42, + "85": 0.425, + "86": 0.43, + "87": 0.435, + "88": 0.44, + "89": 0.445, + "90": 0.45, + "91": 0.455, + "92": 0.46, + "93": 0.465, + "94": 0.47, + "95": 0.475, + "96": 0.48, + "97": 0.485, + "98": 0.49, + "99": 0.495, + "100": 0.5, + "101": 0.505, + "102": 0.51, + "103": 0.515, + "104": 0.52, + "105": 0.525, + "106": 0.53, + "107": 0.535, + "108": 0.54, + "109": 0.545, + "110": 0.55, + "111": 0.555, + "112": 0.56, + "113": 0.565, + "114": 0.57, + "115": 0.575, + "116": 0.58, + "117": 0.585, + "118": 0.59, + "119": 0.595, + "120": 0.6, + "121": 0.605, + "122": 0.61, + "123": 0.615, + "124": 0.62, + "125": 0.625, + "126": 0.63, + "127": 0.635, + "128": 0.64, + "129": 0.645, + "130": 0.65, + "131": 0.655, + "132": 0.66, + "133": 0.665, + "134": 0.67, + "135": 0.675, + "136": 0.68, + "137": 0.685, + "138": 0.69, + "139": 0.695, + "140": 0.7, + "141": 0.705, + "142": 0.71, + "143": 0.715, + "144": 0.72, + "145": 0.725, + "146": 0.73, + "147": 0.735, + "148": 0.74, + "149": 0.745, + "150": 0.75, + "151": 0.755, + "152": 0.76, + "153": 0.765, + "154": 0.77, + "155": 0.775, + "156": 0.78, + "157": 0.785, + "158": 0.79, + "159": 0.795, + "160": 0.8, + "161": 0.805, + "162": 0.81, + "163": 0.815, + "164": 0.82, + "165": 0.825, + "166": 0.83, + "167": 0.835, + "168": 0.84, + "169": 0.845, + "170": 0.85, + "171": 0.855, + "172": 0.86, + "173": 0.865, + "174": 0.87, + "175": 0.875, + "176": 0.88, + "177": 0.885, + "178": 0.89, + "179": 0.895, + "180": 0.9, + "181": 0.905, + "182": 0.91, + "183": 0.915, + "184": 0.92, + "185": 0.925, + "186": 0.93, + "187": 0.935, + "188": 0.94, + "189": 0.945, + "190": 0.95, + "191": 0.955, + "192": 0.96, + "193": 0.965, + "194": 0.97, + "195": 0.975, + "196": 0.98, + "197": 0.985, + "198": 0.99, + "199": 0.995, + "200": 1.0 + }, + "flow_in": { + "0": 2.2, + "1": 2.2784881494, + "2": 2.3569762988, + "3": 2.4351546914, + "4": 2.5133330839, + "5": 2.5908931852, + "6": 2.6684532865, + "7": 2.7450890022, + "8": 2.8217247179, + "9": 2.8971336019, + "10": 2.9725424859, + "11": 3.0464269338, + "12": 3.1203113817, + "13": 3.1923798053, + "14": 3.2644482289, + "15": 3.3344162071, + "16": 3.4043841853, + "17": 3.4719755864, + "18": 3.5395669874, + "19": 3.6045150591, + "20": 3.6694631307, + "21": 3.7315115526, + "22": 3.7935599744, + "23": 3.8524638696, + "24": 3.9113677648, + "25": 3.9668946667, + "26": 4.0224215686, + "27": 4.0743523377, + "28": 4.1262831069, + "29": 4.1744127964, + "30": 4.2225424859, + "31": 4.2666811498, + "32": 4.3108198138, + "33": 4.3507932569, + "34": 4.3907667001, + "35": 4.4264171656, + "36": 4.4620676312, + "37": 4.4932544229, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2 + }, + "flow_out": { + "0": 2.2, + "1": 2.2784881494, + "2": 2.3569762988, + "3": 2.4351546914, + "4": 2.5133330839, + "5": 2.5908931852, + "6": 2.6684532865, + "7": 2.7450890022, + "8": 2.8217247179, + "9": 2.8971336019, + "10": 2.9725424859, + "11": 3.0464269338, + "12": 3.1203113817, + "13": 3.1923798053, + "14": 3.2644482289, + "15": 3.3344162071, + "16": 3.4043841853, + "17": 3.4719755864, + "18": 3.5395669874, + "19": 3.6045150591, + "20": 3.6694631307, + "21": 3.7315115526, + "22": 3.7935599744, + "23": 3.8524638696, + "24": 3.9113677648, + "25": 3.9668946667, + "26": 4.0224215686, + "27": 4.0743523377, + "28": 4.1262831069, + "29": 4.1744127964, + "30": 4.2225424859, + "31": 4.2666811498, + "32": 4.3108198138, + "33": 4.3507932569, + "34": 4.3907667001, + "35": 4.4264171656, + "36": 4.4620676312, + "37": 4.4932544229, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2 + }, + "pressure_in": { + "0": 3493.9321778673, + "1": 3637.1001006528, + "2": 3781.3248955491, + "3": 3926.2044186362, + "4": 4072.027480714, + "5": 4218.0468308143, + "6": 4364.8926630676, + "7": 4511.4755685161, + "8": 4658.7646375326, + "9": 4805.332602569, + "10": 4952.4836256832, + "11": 5098.45821351, + "12": 5244.8904528606, + "13": 5389.6955684689, + "14": 5534.8311229057, + "15": 5677.8952866596, + "16": 5821.1613724554, + "17": 5961.9199754602, + "18": 6102.7511868264, + "19": 6240.6487191826, + "20": 6378.4892596676, + "21": 6512.9815028144, + "22": 6647.2873787782, + "23": 6777.8435532755, + "24": 6908.0847207843, + "25": 7034.1895810568, + "26": 7159.8520377239, + "27": 7281.0079055, + "28": 7401.5957190187, + "29": 7517.324447439, + "30": 7632.3617128006, + "31": 7742.2065734457, + "32": 7851.2392911194, + "33": 7954.7667765074, + "34": 8057.3646441688, + "35": 8154.1661786123, + "36": 8249.9242893503, + "37": 8339.6178414172, + "38": 8428.1582817164, + "39": 8510.3898719337, + "40": 8591.3632131265, + "41": 8665.8083109758, + "42": 8738.8949882778, + "43": 8805.2597929684, + "44": 8870.1713666544, + "45": 8928.1939666215, + "46": 8984.6742603654, + "47": 9034.125666915, + "48": 9081.9517788008, + "49": 9122.6368298234, + "50": 9161.6200120371, + "51": 9193.3781422235, + "52": 9223.3645459547, + "53": 9246.070420474, + "54": 9266.9417030866, + "55": 9280.5057122254, + "56": 9292.1795043022, + "57": 9296.5481171133, + "58": 9298.9783475301, + "59": 9294.1343230944, + "60": 9287.3114008421, + "61": 9273.2738563112, + "62": 9257.2247083468, + "63": 9234.0490434957, + "64": 9208.8370084741, + "65": 9176.614687064, + "66": 9142.3392653691, + "67": 9101.1974541818, + "68": 9057.993915244, + "69": 9008.0949822122, + "70": 8956.133830662, + "71": 8897.6747040778, + "72": 8837.1610068415, + "73": 8770.37239817, + "74": 8701.5449751646, + "75": 8626.6904685315, + "76": 8549.8209501513, + "77": 8467.1959620964, + "78": 8382.5877172121, + "79": 8292.5183308156, + "80": 8200.5052695159, + "81": 8103.346947497, + "82": 8004.2922032982, + "83": 7900.4283851666, + "84": 7794.72288189, + "85": 7684.5634706851, + "86": 7572.62437966, + "87": 7456.6041242506, + "88": 7338.8732179293, + "89": 7217.4499972589, + "90": 7094.3919057424, + "91": 6968.04492179, + "92": 6840.1452991456, + "93": 6709.3731857345, + "94": 6577.1367933411, + "95": 6442.4556482587, + "96": 6306.404362744, + "97": 6168.3457109401, + "98": 6029.016464572, + "99": 5888.1251604722, + "100": 5746.0678221327, + "101": 5602.8998993472, + "102": 5458.6751044509, + "103": 5313.7955813638, + "104": 5167.972519286, + "105": 5021.9531691857, + "106": 4875.1073369324, + "107": 4728.5244314839, + "108": 4581.2353624674, + "109": 4434.667397431, + "110": 4287.5163743168, + "111": 4141.54178649, + "112": 3995.1095471394, + "113": 3850.3044315311, + "114": 3705.1688770943, + "115": 3562.1047133404, + "116": 3418.8386275446, + "117": 3278.0800245398, + "118": 3137.2488131736, + "119": 2999.3512808174, + "120": 2861.5107403324, + "121": 2727.0184971856, + "122": 2592.7126212218, + "123": 2462.1564467245, + "124": 2331.9152792157, + "125": 2205.8104189432, + "126": 2080.1479622761, + "127": 1958.9920945, + "128": 1838.4042809813, + "129": 1722.675552561, + "130": 1607.6382871994, + "131": 1497.7934265543, + "132": 1388.7607088806, + "133": 1285.2332234926, + "134": 1182.6353558312, + "135": 1085.8338213877, + "136": 990.0757106497, + "137": 900.3821585829, + "138": 811.8417182836, + "139": 729.6101280663, + "140": 648.6367868735, + "141": 574.1916890242, + "142": 501.1050117222, + "143": 434.7402070316, + "144": 369.8286333456, + "145": 311.8060333785, + "146": 255.3257396346, + "147": 205.874333085, + "148": 158.0482211992, + "149": 117.3631701766, + "150": 78.3799879629, + "151": 46.6218577765, + "152": 16.6354540453, + "153": -6.070420474, + "154": -26.9417030866, + "155": -40.5057122254, + "156": -52.1795043022, + "157": -56.5481171133, + "158": -58.9783475301, + "159": -54.1343230944, + "160": -47.3114008421, + "161": -33.2738563112, + "162": -17.2247083468, + "163": 5.9509565043, + "164": 31.1629915259, + "165": 63.385312936, + "166": 97.6607346309, + "167": 138.8025458182, + "168": 182.006084756, + "169": 231.9050177878, + "170": 283.866169338, + "171": 342.3252959222, + "172": 402.8389931585, + "173": 469.62760183, + "174": 538.4550248354, + "175": 613.3095314685, + "176": 690.1790498487, + "177": 772.8040379036, + "178": 857.4122827879, + "179": 947.4816691844, + "180": 1039.4947304841, + "181": 1136.6530525029, + "182": 1235.7077967018, + "183": 1339.5716148334, + "184": 1445.27711811, + "185": 1555.4365293149, + "186": 1667.37562034, + "187": 1783.3958757494, + "188": 1901.1267820707, + "189": 2022.5500027411, + "190": 2145.6080942576, + "191": 2271.95507821, + "192": 2399.8547008544, + "193": 2530.6268142655, + "194": 2662.8632066589, + "195": 2797.5443517413, + "196": 2933.595637256, + "197": 3071.6542890599, + "198": 3210.983535428, + "199": 3351.8748395278, + "200": 3493.9321778673 + }, + "pressure_out": { + "0": 3273.9321778673, + "1": 3409.2512857116, + "2": 3545.6272656668, + "3": 3682.6889494995, + "4": 3820.6941723229, + "5": 3958.9575122955, + "6": 4098.0473344212, + "7": 4236.9666682973, + "8": 4376.5921657414, + "9": 4515.6192423766, + "10": 4655.2293770895, + "11": 4793.8155201275, + "12": 4932.8593146894, + "13": 5070.4575879377, + "14": 5208.3863000145, + "15": 5344.4536659513, + "16": 5480.72295393, + "17": 5614.7224168251, + "18": 5748.7944880817, + "19": 5880.1972132737, + "20": 6011.5429465945, + "21": 6139.8303475592, + "22": 6267.9313813411, + "23": 6392.5971663158, + "24": 6516.9479443021, + "25": 6637.5001143881, + "26": 6757.6098808686, + "27": 6873.5726717253, + "28": 6988.9674083247, + "29": 7099.8831677952, + "30": 7210.1074642069, + "31": 7315.538458461, + "32": 7420.1573097438, + "33": 7519.6874508142, + "34": 7618.2879741579, + "35": 7711.5244620486, + "36": 7803.7175262338, + "37": 7890.2923991229, + "38": 7975.7141602443, + "39": 8055.2857466607, + "40": 8133.5990840527, + "41": 8205.8533512978, + "42": 8276.7491979956, + "43": 8341.4009914862, + "44": 8404.5995539722, + "45": 8461.3937226161, + "46": 8516.6455850368, + "47": 8565.3579881972, + "48": 8612.4450966937, + "49": 8652.8834887698, + "50": 8691.6200120371, + "51": 8723.62480117, + "52": 8753.8578638476, + "53": 8777.3027417562, + "54": 8798.913027758, + "55": 8813.70546822, + "56": 8826.60769162, + "57": 8832.6893156311, + "58": 8836.8325572479, + "59": 8834.1793634164, + "60": 8829.5472717683, + "61": 8818.1697310383, + "62": 8804.7805868747, + "63": 8784.7236012014, + "64": 8762.6302453576, + "65": 8733.9729705003, + "66": 8703.2625953581, + "67": 8666.1181284885, + "68": 8626.9119338685, + "69": 8581.4268672276, + "70": 8533.8795820683, + "71": 8480.233424434, + "72": 8424.5326961476, + "73": 8362.9371643954, + "74": 8299.3028183093, + "75": 8230.0010018627, + "76": 8158.6841736691, + "77": 8081.9495751367, + "78": 8003.2317197749, + "79": 7919.3671755604, + "80": 7833.5589564428, + "81": 7742.8954415881, + "82": 7650.3355045534, + "83": 7553.2308265315, + "84": 7454.2844633646, + "85": 7351.1218499767, + "86": 7246.1795567688, + "87": 7137.3661437194, + "88": 7026.8420797581, + "89": 6912.8073038765, + "90": 6797.1376571486, + "91": 6678.3315615975, + "92": 6557.9728273544, + "93": 6434.8642855157, + "94": 6310.2914646947, + "95": 6183.36632974, + "96": 6055.0710543529, + "97": 5924.8302418034, + "98": 5793.3188346896, + "99": 5660.2763455311, + "100": 5526.0678221327, + "101": 5390.7487142884, + "102": 5254.3727343332, + "103": 5117.3110505005, + "104": 4979.3058276771, + "105": 4841.0424877045, + "106": 4701.9526655788, + "107": 4563.0333317027, + "108": 4423.4078342586, + "109": 4284.3807576234, + "110": 4144.7706229105, + "111": 4006.1844798725, + "112": 3867.1406853106, + "113": 3729.5424120623, + "114": 3591.6136999855, + "115": 3455.5463340488, + "116": 3319.27704607, + "117": 3185.2775831749, + "118": 3051.2055119183, + "119": 2919.8027867263, + "120": 2788.4570534055, + "121": 2660.1696524408, + "122": 2532.0686186589, + "123": 2407.4028336842, + "124": 2283.0520556979, + "125": 2162.4998856119, + "126": 2042.3901191314, + "127": 1926.4273282747, + "128": 1811.0325916753, + "129": 1700.1168322048, + "130": 1589.8925357931, + "131": 1484.461541539, + "132": 1379.8426902562, + "133": 1280.3125491858, + "134": 1181.7120258421, + "135": 1088.4755379514, + "136": 996.2824737662, + "137": 909.7076008771, + "138": 824.2858397557, + "139": 744.7142533393, + "140": 666.4009159472, + "141": 594.1466487022, + "142": 523.2508020044, + "143": 458.5990085138, + "144": 395.4004460278, + "145": 338.6062773839, + "146": 283.3544149632, + "147": 234.6420118028, + "148": 187.5549033063, + "149": 147.1165112302, + "150": 108.3799879629, + "151": 76.37519883, + "152": 46.1421361524, + "153": 22.6972582438, + "154": 1.086972242, + "155": -13.70546822, + "156": -26.60769162, + "157": -32.6893156311, + "158": -36.8325572479, + "159": -34.1793634164, + "160": -29.5472717683, + "161": -18.1697310383, + "162": -4.7805868747, + "163": 15.2763987986, + "164": 37.3697546424, + "165": 66.0270294997, + "166": 96.7374046419, + "167": 133.8818715115, + "168": 173.0880661315, + "169": 218.5731327724, + "170": 266.1204179317, + "171": 319.766575566, + "172": 375.4673038524, + "173": 437.0628356046, + "174": 500.6971816907, + "175": 569.9989981373, + "176": 641.3158263309, + "177": 718.0504248633, + "178": 796.7682802251, + "179": 880.6328244396, + "180": 966.4410435572, + "181": 1057.1045584119, + "182": 1149.6644954466, + "183": 1246.7691734685, + "184": 1345.7155366354, + "185": 1448.8781500233, + "186": 1553.8204432312, + "187": 1662.6338562806, + "188": 1773.1579202419, + "189": 1887.1926961236, + "190": 2002.8623428514, + "191": 2121.6684384025, + "192": 2242.0271726456, + "193": 2365.1357144843, + "194": 2489.7085353053, + "195": 2616.63367026, + "196": 2744.9289456471, + "197": 2875.1697581966, + "198": 3006.6811653104, + "199": 3139.7236544689, + "200": 3273.9321778673 + }, + "d_flow_in": { + "0": 15.6976298823, + "1": 15.6976298823, + "2": 15.6976298823, + "3": 15.6356785087, + "4": 15.6356785088, + "5": 15.5120202554, + "6": 15.5120202554, + "7": 15.3271431448, + "8": 15.3271431448, + "9": 15.0817768025, + "10": 15.0817768025, + "11": 14.7768895774, + "12": 14.7768895774, + "13": 14.4136847201, + "14": 14.4136847201, + "15": 13.9935956342, + "16": 13.9935956342, + "17": 13.5182802193, + "18": 13.5182802193, + "19": 12.9896143284, + "20": 12.9896143284, + "21": 12.4096843641, + "22": 12.4096843641, + "23": 11.780779045, + "24": 11.780779045, + "25": 11.1053803732, + "26": 11.1053803732, + "27": 10.3861538386, + "28": 10.3861538386, + "29": 9.6259378998, + "30": 9.6259378998, + "31": 8.8277327818, + "32": 8.8277327818, + "33": 7.9946886355, + "34": 7.9946886355, + "35": 7.1300931055, + "36": 7.1300931055, + "37": 6.2373583556, + "38": 6.2373583556, + "39": 5.3200076017, + "40": 5.3200076017, + "41": 4.3816612084, + "42": 4.3816612084, + "43": 3.4260224, + "44": 3.4260224, + "45": 2.4568626464, + "46": 2.4568626464, + "47": 1.4780067784, + "48": 1.4780067784, + "49": 0.4933178929, + "50": 0.4933178929, + "51": -0.4933178929, + "52": -0.4933178929, + "53": -1.4780067784, + "54": -1.4780067784, + "55": -2.4568626464, + "56": -2.4568626464, + "57": -3.4260224, + "58": -3.4260224, + "59": -4.3816612084, + "60": -4.3816612084, + "61": -5.3200076017, + "62": -5.3200076017, + "63": -6.2373583556, + "64": -6.2373583556, + "65": -7.1300931055, + "66": -7.1300931055, + "67": -7.9946886355, + "68": -7.9946886355, + "69": -8.8277327818, + "70": -8.8277327818, + "71": -9.6259378998, + "72": -9.6259378998, + "73": -10.3861538386, + "74": -10.3861538386, + "75": -11.1053803732, + "76": -11.1053803732, + "77": -11.780779045, + "78": -11.780779045, + "79": -12.4096843641, + "80": -12.4096843641, + "81": -12.9896143284, + "82": -12.9896143284, + "83": -13.5182802193, + "84": -13.5182802193, + "85": -13.9935956342, + "86": -13.9935956342, + "87": -14.4136847201, + "88": -14.4136847201, + "89": -14.7768895774, + "90": -14.7768895774, + "91": -15.0817768025, + "92": -15.0817768025, + "93": -15.3271431448, + "94": -15.3271431448, + "95": -15.5120202554, + "96": -15.5120202554, + "97": -15.6356785088, + "98": -15.6356785087, + "99": -15.6976298823, + "100": -15.6976298823, + "101": -15.6976298823, + "102": -15.6976298823, + "103": -15.6356785087, + "104": -15.6356785088, + "105": -15.5120202554, + "106": -15.5120202554, + "107": -15.3271431448, + "108": -15.3271431448, + "109": -15.0817768025, + "110": -15.0817768025, + "111": -14.7768895774, + "112": -14.7768895774, + "113": -14.4136847201, + "114": -14.4136847201, + "115": -13.9935956342, + "116": -13.9935956342, + "117": -13.5182802193, + "118": -13.5182802193, + "119": -12.9896143284, + "120": -12.9896143284, + "121": -12.4096843641, + "122": -12.4096843641, + "123": -11.780779045, + "124": -11.780779045, + "125": -11.1053803732, + "126": -11.1053803732, + "127": -10.3861538386, + "128": -10.3861538386, + "129": -9.6259378998, + "130": -9.6259378998, + "131": -8.8277327818, + "132": -8.8277327818, + "133": -7.9946886355, + "134": -7.9946886355, + "135": -7.1300931055, + "136": -7.1300931055, + "137": -6.2373583556, + "138": -6.2373583556, + "139": -5.3200076017, + "140": -5.3200076017, + "141": -4.3816612084, + "142": -4.3816612084, + "143": -3.4260224, + "144": -3.4260224, + "145": -2.4568626464, + "146": -2.4568626464, + "147": -1.4780067784, + "148": -1.4780067784, + "149": -0.4933178929, + "150": -0.4933178929, + "151": 0.4933178929, + "152": 0.4933178929, + "153": 1.4780067784, + "154": 1.4780067784, + "155": 2.4568626464, + "156": 2.4568626464, + "157": 3.4260224, + "158": 3.4260224, + "159": 4.3816612084, + "160": 4.3816612084, + "161": 5.3200076017, + "162": 5.3200076017, + "163": 6.2373583556, + "164": 6.2373583556, + "165": 7.1300931055, + "166": 7.1300931055, + "167": 7.9946886355, + "168": 7.9946886355, + "169": 8.8277327818, + "170": 8.8277327818, + "171": 9.6259378998, + "172": 9.6259378998, + "173": 10.3861538386, + "174": 10.3861538386, + "175": 11.1053803732, + "176": 11.1053803732, + "177": 11.780779045, + "178": 11.780779045, + "179": 12.4096843641, + "180": 12.4096843641, + "181": 12.9896143284, + "182": 12.9896143284, + "183": 13.5182802193, + "184": 13.5182802193, + "185": 13.9935956342, + "186": 13.9935956342, + "187": 14.4136847201, + "188": 14.4136847201, + "189": 14.7768895774, + "190": 14.7768895774, + "191": 15.0817768025, + "192": 15.0817768025, + "193": 15.3271431448, + "194": 15.3271431448, + "195": 15.5120202554, + "196": 15.5120202554, + "197": 15.6356785088, + "198": 15.6356785087, + "199": 15.6976298823, + "200": 15.6976298823 + }, + "d_flow_out": { + "0": 15.6976298823, + "1": 15.6976298823, + "2": 15.6976298823, + "3": 15.6356785087, + "4": 15.6356785088, + "5": 15.5120202554, + "6": 15.5120202554, + "7": 15.3271431448, + "8": 15.3271431448, + "9": 15.0817768025, + "10": 15.0817768025, + "11": 14.7768895774, + "12": 14.7768895774, + "13": 14.4136847201, + "14": 14.4136847201, + "15": 13.9935956342, + "16": 13.9935956342, + "17": 13.5182802193, + "18": 13.5182802193, + "19": 12.9896143284, + "20": 12.9896143284, + "21": 12.4096843641, + "22": 12.4096843641, + "23": 11.780779045, + "24": 11.780779045, + "25": 11.1053803732, + "26": 11.1053803732, + "27": 10.3861538386, + "28": 10.3861538386, + "29": 9.6259378998, + "30": 9.6259378998, + "31": 8.8277327818, + "32": 8.8277327818, + "33": 7.9946886355, + "34": 7.9946886355, + "35": 7.1300931055, + "36": 7.1300931055, + "37": 6.2373583556, + "38": 6.2373583556, + "39": 5.3200076017, + "40": 5.3200076017, + "41": 4.3816612084, + "42": 4.3816612084, + "43": 3.4260224, + "44": 3.4260224, + "45": 2.4568626464, + "46": 2.4568626464, + "47": 1.4780067784, + "48": 1.4780067784, + "49": 0.4933178929, + "50": 0.4933178929, + "51": -0.4933178929, + "52": -0.4933178929, + "53": -1.4780067784, + "54": -1.4780067784, + "55": -2.4568626464, + "56": -2.4568626464, + "57": -3.4260224, + "58": -3.4260224, + "59": -4.3816612084, + "60": -4.3816612084, + "61": -5.3200076017, + "62": -5.3200076017, + "63": -6.2373583556, + "64": -6.2373583556, + "65": -7.1300931055, + "66": -7.1300931055, + "67": -7.9946886355, + "68": -7.9946886355, + "69": -8.8277327818, + "70": -8.8277327818, + "71": -9.6259378998, + "72": -9.6259378998, + "73": -10.3861538386, + "74": -10.3861538386, + "75": -11.1053803732, + "76": -11.1053803732, + "77": -11.780779045, + "78": -11.780779045, + "79": -12.4096843641, + "80": -12.4096843641, + "81": -12.9896143284, + "82": -12.9896143284, + "83": -13.5182802193, + "84": -13.5182802193, + "85": -13.9935956342, + "86": -13.9935956342, + "87": -14.4136847201, + "88": -14.4136847201, + "89": -14.7768895774, + "90": -14.7768895774, + "91": -15.0817768025, + "92": -15.0817768025, + "93": -15.3271431448, + "94": -15.3271431448, + "95": -15.5120202554, + "96": -15.5120202554, + "97": -15.6356785088, + "98": -15.6356785087, + "99": -15.6976298823, + "100": -15.6976298823, + "101": -15.6976298823, + "102": -15.6976298823, + "103": -15.6356785087, + "104": -15.6356785088, + "105": -15.5120202554, + "106": -15.5120202554, + "107": -15.3271431448, + "108": -15.3271431448, + "109": -15.0817768025, + "110": -15.0817768025, + "111": -14.7768895774, + "112": -14.7768895774, + "113": -14.4136847201, + "114": -14.4136847201, + "115": -13.9935956342, + "116": -13.9935956342, + "117": -13.5182802193, + "118": -13.5182802193, + "119": -12.9896143284, + "120": -12.9896143284, + "121": -12.4096843641, + "122": -12.4096843641, + "123": -11.780779045, + "124": -11.780779045, + "125": -11.1053803732, + "126": -11.1053803732, + "127": -10.3861538386, + "128": -10.3861538386, + "129": -9.6259378998, + "130": -9.6259378998, + "131": -8.8277327818, + "132": -8.8277327818, + "133": -7.9946886355, + "134": -7.9946886355, + "135": -7.1300931055, + "136": -7.1300931055, + "137": -6.2373583556, + "138": -6.2373583556, + "139": -5.3200076017, + "140": -5.3200076017, + "141": -4.3816612084, + "142": -4.3816612084, + "143": -3.4260224, + "144": -3.4260224, + "145": -2.4568626464, + "146": -2.4568626464, + "147": -1.4780067784, + "148": -1.4780067784, + "149": -0.4933178929, + "150": -0.4933178929, + "151": 0.4933178929, + "152": 0.4933178929, + "153": 1.4780067784, + "154": 1.4780067784, + "155": 2.4568626464, + "156": 2.4568626464, + "157": 3.4260224, + "158": 3.4260224, + "159": 4.3816612084, + "160": 4.3816612084, + "161": 5.3200076017, + "162": 5.3200076017, + "163": 6.2373583556, + "164": 6.2373583556, + "165": 7.1300931055, + "166": 7.1300931055, + "167": 7.9946886355, + "168": 7.9946886355, + "169": 8.8277327818, + "170": 8.8277327818, + "171": 9.6259378998, + "172": 9.6259378998, + "173": 10.3861538386, + "174": 10.3861538386, + "175": 11.1053803732, + "176": 11.1053803732, + "177": 11.780779045, + "178": 11.780779045, + "179": 12.4096843641, + "180": 12.4096843641, + "181": 12.9896143284, + "182": 12.9896143284, + "183": 13.5182802193, + "184": 13.5182802193, + "185": 13.9935956342, + "186": 13.9935956342, + "187": 14.4136847201, + "188": 14.4136847201, + "189": 14.7768895774, + "190": 14.7768895774, + "191": 15.0817768025, + "192": 15.0817768025, + "193": 15.3271431448, + "194": 15.3271431448, + "195": 15.5120202554, + "196": 15.5120202554, + "197": 15.6356785088, + "198": 15.6356785087, + "199": 15.6976298823, + "200": 15.6976298823 + }, + "d_pressure_in": { + "0": 28411.4676679106, + "1": 28633.5845570844, + "2": 28844.9589792712, + "3": 28975.904617419, + "4": 29164.6124155498, + "5": 29203.870020059, + "6": 29369.1664506672, + "7": 29316.5810897101, + "8": 29457.8138033004, + "9": 29313.593007277, + "10": 29430.2046228401, + "11": 29194.9175653455, + "12": 29286.447870122, + "13": 28961.0231216714, + "14": 29027.1108873643, + "15": 28612.832750771, + "16": 28653.2171591672, + "17": 28151.7206009562, + "18": 28166.2422732454, + "19": 27579.5064712335, + "20": 27568.1080970038, + "21": 26898.4486293466, + "22": 26861.1751927741, + "23": 26111.2348994523, + "24": 26048.2335017623, + "25": 25220.9720545028, + "26": 25132.4913334204, + "27": 24231.1735552144, + "28": 24117.5627037321, + "29": 23145.7456840757, + "30": 23007.453072321, + "31": 21968.9721290054, + "32": 21806.5435347368, + "33": 20705.4970776116, + "34": 20519.5735322864, + "35": 19360.3068886913, + "36": 19151.6221476026, + "37": 17938.7104133677, + "38": 17708.0880598461, + "39": 16446.3180434585, + "40": 16194.6682385722, + "41": 14889.019569844, + "42": 14617.3354604014, + "43": 13272.9609381286, + "44": 12982.3147371934, + "45": 11604.5199934314, + "46": 11296.0587487761, + "47": 9890.281309919, + "48": 9565.2223771521, + "49": 8137.0102045179, + "50": 7796.6364427418, + "51": 6351.6260372853, + "52": 5997.280746236, + "53": 4541.1749038664, + "54": 4174.2565225224, + "55": 2712.8018277654, + "56": 2334.7584153484, + "57": 873.7225622142, + "58": 486.0460833614, + "59": -968.8048871286, + "60": -1364.5844504632, + "61": -2807.5089061825, + "62": -3209.829592881, + "63": -4635.1329702149, + "64": -5042.407004329, + "65": -6444.4642820037, + "66": -6855.0843389901, + "67": -8228.3622374638, + "68": -8640.7077875524, + "69": -9979.7866063572, + "70": -10392.2303100416, + "71": -11691.825316846, + "72": -12102.7394472553, + "73": -13357.721734295, + "74": -13765.4846010849, + "75": -14970.9013266271, + "76": -15373.9036760439, + "77": -16524.9976109731, + "78": -16921.6489768642, + "79": -18013.877279301, + "80": -18402.6122599392, + "81": -19431.6644037657, + "82": -19810.9488397784, + "83": -20772.7636263112, + "84": -21141.1006553139, + "85": -22031.8822409924, + "86": -22387.8182050085, + "87": -23204.0510818812, + "88": -23546.1812642675, + "89": -24284.6441340748, + "90": -24611.6183033058, + "91": -25269.3967904739, + "92": -25579.9245288722, + "93": -26154.4226822259, + "94": -26447.2784786858, + "95": -26936.2290164688, + "96": -27210.2571029551, + "97": -27611.7303607773, + "98": -27865.8492736241, + "99": -28178.2608199503, + "100": -28411.4676679105, + "101": -28633.5845570845, + "102": -28844.9589792714, + "103": -28975.9046174189, + "104": -29164.6124155498, + "105": -29203.8700200592, + "106": -29369.1664506671, + "107": -29316.58108971, + "108": -29457.8138033004, + "109": -29313.5930072768, + "110": -29430.2046228398, + "111": -29194.9175653457, + "112": -29286.447870122, + "113": -28961.0231216715, + "114": -29027.1108873643, + "115": -28612.8327507706, + "116": -28653.2171591671, + "117": -28151.7206009565, + "118": -28166.2422732458, + "119": -27579.5064712336, + "120": -27568.1080970041, + "121": -26898.4486293469, + "122": -26861.1751927743, + "123": -26111.2348994522, + "124": -26048.2335017622, + "125": -25220.9720545022, + "126": -25132.4913334199, + "127": -24231.1735552149, + "128": -24117.5627037329, + "129": -23145.7456840751, + "130": -23007.4530723201, + "131": -21968.9721290057, + "132": -21806.5435347367, + "133": -20705.4970776116, + "134": -20519.5735322865, + "135": -19360.3068886915, + "136": -19151.6221476027, + "137": -17938.7104133674, + "138": -17708.0880598458, + "139": -16446.3180434591, + "140": -16194.6682385729, + "141": -14889.0195698432, + "142": -14617.3354604009, + "143": -13272.9609381288, + "144": -12982.314737194, + "145": -11604.5199934308, + "146": -11296.0587487748, + "147": -9890.2813099195, + "148": -9565.2223771527, + "149": -8137.0102045177, + "150": -7796.636442742, + "151": -6351.6260372853, + "152": -5997.2807462361, + "153": -4541.1749038658, + "154": -4174.2565225218, + "155": -2712.8018277661, + "156": -2334.7584153492, + "157": -873.7225622138, + "158": -486.0460833614, + "159": 968.8048871278, + "160": 1364.5844504628, + "161": 2807.5089061833, + "162": 3209.8295928816, + "163": 4635.1329702148, + "164": 5042.4070043289, + "165": 6444.4642820038, + "166": 6855.0843389901, + "167": 8228.362237464, + "168": 8640.7077875521, + "169": 9979.7866063572, + "170": 10392.230310041, + "171": 11691.8253168457, + "172": 12102.7394472544, + "173": 13357.7217342957, + "174": 13765.4846010854, + "175": 14970.9013266272, + "176": 15373.9036760431, + "177": 16524.9976109728, + "178": 16921.6489768641, + "179": 18013.877279301, + "180": 18402.6122599393, + "181": 19431.6644037657, + "182": 19810.9488397786, + "183": 20772.7636263114, + "184": 21141.1006553143, + "185": 22031.8822409921, + "186": 22387.8182050084, + "187": 23204.0510818825, + "188": 23546.181264269, + "189": 24284.6441340737, + "190": 24611.6183033046, + "191": 25269.396790474, + "192": 25579.924528872, + "193": 26154.4226822259, + "194": 26447.2784786856, + "195": 26936.2290164689, + "196": 27210.2571029549, + "197": 27611.7303607774, + "198": 27865.8492736238, + "199": 28178.2608199504, + "200": 28411.4676679106 + }, + "d_pressure_out": { + "0": 26841.7046796776, + "1": 27063.8215688519, + "2": 27275.1959910382, + "3": 27412.3367665445, + "4": 27601.0445646747, + "5": 27652.6679945239, + "6": 27817.9644251314, + "7": 27783.8667752321, + "8": 27925.0994888219, + "9": 27805.4153270242, + "10": 27922.0269425881, + "11": 27717.228607602, + "12": 27808.758912379, + "13": 27519.6546496614, + "14": 27585.7424153546, + "15": 27213.4731873547, + "16": 27253.8575957511, + "17": 26799.8925790245, + "18": 26814.4142513132, + "19": 26280.5450383967, + "20": 26269.1466641669, + "21": 25657.4801929415, + "22": 25620.2067563685, + "23": 24933.1569949526, + "24": 24870.1555972623, + "25": 24110.4340171843, + "26": 24021.9532961025, + "27": 23192.5581713549, + "28": 23078.947319873, + "29": 22183.1518940966, + "30": 22044.859282342, + "31": 21086.1988508286, + "32": 20923.7702565603, + "33": 19906.0282140654, + "34": 19720.1046687401, + "35": 18647.2975781376, + "36": 18438.6128370487, + "37": 17314.974577812, + "38": 17084.35222429, + "39": 15914.3172832861, + "40": 15662.6674783996, + "41": 14450.8534490069, + "42": 14179.1693395645, + "43": 12930.3586981271, + "44": 12639.7124971925, + "45": 11358.8337287866, + "46": 11050.372484131, + "47": 9742.4806320742, + "48": 9417.4216993073, + "49": 8087.6784152247, + "50": 7747.3046534486, + "51": 6400.9578265785, + "52": 6046.6125355293, + "53": 4688.9755817115, + "54": 4322.0572003669, + "55": 2958.4880924101, + "56": 2580.4446799936, + "57": 1216.3248022156, + "58": 828.6483233629, + "59": -530.6387662915, + "60": -926.4183296263, + "61": -2275.5081460103, + "62": -2677.8288327086, + "63": -4011.397134659, + "64": -4418.6711687733, + "65": -5731.4549714496, + "66": -6142.0750284357, + "67": -7428.8933739181, + "68": -7841.238924006, + "69": -9097.0133281807, + "70": -9509.4570318644, + "71": -10729.2315268672, + "72": -11140.1456572761, + "73": -12319.1063504361, + "74": -12726.8692172254, + "75": -13860.3632893092, + "76": -14263.3656387256, + "77": -15346.9197064729, + "78": -15743.5710723646, + "79": -16772.9088428953, + "80": -17161.643823534, + "81": -18132.7029709286, + "82": -18511.9874069418, + "83": -19420.935604379, + "84": -19789.2726333817, + "85": -20632.5226775764, + "86": -20988.4586415923, + "87": -21762.6826098717, + "88": -22104.8127922575, + "89": -22806.9551763318, + "90": -23133.9293455622, + "91": -23761.2191102214, + "92": -24071.7468486202, + "93": -24621.7083677473, + "94": -24914.5641642078, + "95": -25385.0269909332, + "96": -25659.0550774199, + "97": -26048.1625099022, + "98": -26302.2814227494, + "99": -26608.4978317173, + "100": -26841.7046796775, + "101": -27063.821568852, + "102": -27275.1959910383, + "103": -27412.3367665444, + "104": -27601.0445646748, + "105": -27652.667994524, + "106": -27817.9644251314, + "107": -27783.866775232, + "108": -27925.0994888221, + "109": -27805.4153270241, + "110": -27922.026942588, + "111": -27717.2286076022, + "112": -27808.758912379, + "113": -27519.6546496615, + "114": -27585.7424153549, + "115": -27213.4731873543, + "116": -27253.8575957508, + "117": -26799.8925790248, + "118": -26814.4142513136, + "119": -26280.545038397, + "120": -26269.146664167, + "121": -25657.4801929417, + "122": -25620.2067563687, + "123": -24933.1569949525, + "124": -24870.155597262, + "125": -24110.434017184, + "126": -24021.9532961022, + "127": -23192.5581713553, + "128": -23078.9473198737, + "129": -22183.1518940959, + "130": -22044.8592823414, + "131": -21086.1988508288, + "132": -20923.7702565602, + "133": -19906.0282140653, + "134": -19720.1046687401, + "135": -18647.2975781377, + "136": -18438.6128370487, + "137": -17314.9745778117, + "138": -17084.35222429, + "139": -15914.3172832867, + "140": -15662.6674784004, + "141": -14450.8534490061, + "142": -14179.1693395641, + "143": -12930.3586981273, + "144": -12639.7124971927, + "145": -11358.833728786, + "146": -11050.3724841302, + "147": -9742.4806320747, + "148": -9417.4216993079, + "149": -8087.6784152245, + "150": -7747.3046534488, + "151": -6400.9578265785, + "152": -6046.6125355294, + "153": -4688.9755817106, + "154": -4322.0572003667, + "155": -2958.4880924108, + "156": -2580.444679994, + "157": -1216.3248022151, + "158": -828.6483233629, + "159": 530.6387662908, + "160": 926.4183296259, + "161": 2275.5081460106, + "162": 2677.8288327091, + "163": 4011.3971346589, + "164": 4418.6711687732, + "165": 5731.4549714498, + "166": 6142.075028436, + "167": 7428.893373918, + "168": 7841.2389240058, + "169": 9097.0133281806, + "170": 9509.4570318642, + "171": 10729.2315268669, + "172": 11140.1456572753, + "173": 12319.1063504365, + "174": 12726.8692172258, + "175": 13860.363289309, + "176": 14263.3656387252, + "177": 15346.9197064727, + "178": 15743.5710723643, + "179": 16772.9088428954, + "180": 17161.6438235341, + "181": 18132.7029709285, + "182": 18511.987406942, + "183": 19420.9356043792, + "184": 19789.272633382, + "185": 20632.5226775763, + "186": 20988.4586415922, + "187": 21762.6826098729, + "188": 22104.8127922588, + "189": 22806.9551763307, + "190": 23133.9293455612, + "191": 23761.2191102215, + "192": 24071.7468486199, + "193": 24621.7083677473, + "194": 24914.5641642077, + "195": 25385.0269909332, + "196": 25659.0550774197, + "197": 26048.1625099023, + "198": 26302.2814227494, + "199": 26608.4978317172, + "200": 26841.7046796776 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_R_RCR_derivative_variable.json b/tests/cases/results/result_pulsatileFlow_R_RCR_derivative_variable.json index 2c9f7ac79..9089a0833 100644 --- a/tests/cases/results/result_pulsatileFlow_R_RCR_derivative_variable.json +++ b/tests/cases/results/result_pulsatileFlow_R_RCR_derivative_variable.json @@ -1 +1,4030 @@ -{"name":{"0":"flow:INFLOW:branch0_seg0","1":"flow:INFLOW:branch0_seg0","2":"flow:INFLOW:branch0_seg0","3":"flow:INFLOW:branch0_seg0","4":"flow:INFLOW:branch0_seg0","5":"flow:INFLOW:branch0_seg0","6":"flow:INFLOW:branch0_seg0","7":"flow:INFLOW:branch0_seg0","8":"flow:INFLOW:branch0_seg0","9":"flow:INFLOW:branch0_seg0","10":"flow:INFLOW:branch0_seg0","11":"flow:INFLOW:branch0_seg0","12":"flow:INFLOW:branch0_seg0","13":"flow:INFLOW:branch0_seg0","14":"flow:INFLOW:branch0_seg0","15":"flow:INFLOW:branch0_seg0","16":"flow:INFLOW:branch0_seg0","17":"flow:INFLOW:branch0_seg0","18":"flow:INFLOW:branch0_seg0","19":"flow:INFLOW:branch0_seg0","20":"flow:INFLOW:branch0_seg0","21":"flow:INFLOW:branch0_seg0","22":"flow:INFLOW:branch0_seg0","23":"flow:INFLOW:branch0_seg0","24":"flow:INFLOW:branch0_seg0","25":"flow:INFLOW:branch0_seg0","26":"flow:INFLOW:branch0_seg0","27":"flow:INFLOW:branch0_seg0","28":"flow:INFLOW:branch0_seg0","29":"flow:INFLOW:branch0_seg0","30":"flow:INFLOW:branch0_seg0","31":"flow:INFLOW:branch0_seg0","32":"flow:INFLOW:branch0_seg0","33":"flow:INFLOW:branch0_seg0","34":"flow:INFLOW:branch0_seg0","35":"flow:INFLOW:branch0_seg0","36":"flow:INFLOW:branch0_seg0","37":"flow:INFLOW:branch0_seg0","38":"flow:INFLOW:branch0_seg0","39":"flow:INFLOW:branch0_seg0","40":"flow:INFLOW:branch0_seg0","41":"flow:INFLOW:branch0_seg0","42":"flow:INFLOW:branch0_seg0","43":"flow:INFLOW:branch0_seg0","44":"flow:INFLOW:branch0_seg0","45":"flow:INFLOW:branch0_seg0","46":"flow:INFLOW:branch0_seg0","47":"flow:INFLOW:branch0_seg0","48":"flow:INFLOW:branch0_seg0","49":"flow:INFLOW:branch0_seg0","50":"flow:INFLOW:branch0_seg0","51":"flow:INFLOW:branch0_seg0","52":"flow:INFLOW:branch0_seg0","53":"flow:INFLOW:branch0_seg0","54":"flow:INFLOW:branch0_seg0","55":"flow:INFLOW:branch0_seg0","56":"flow:INFLOW:branch0_seg0","57":"flow:INFLOW:branch0_seg0","58":"flow:INFLOW:branch0_seg0","59":"flow:INFLOW:branch0_seg0","60":"flow:INFLOW:branch0_seg0","61":"flow:INFLOW:branch0_seg0","62":"flow:INFLOW:branch0_seg0","63":"flow:INFLOW:branch0_seg0","64":"flow:INFLOW:branch0_seg0","65":"flow:INFLOW:branch0_seg0","66":"flow:INFLOW:branch0_seg0","67":"flow:INFLOW:branch0_seg0","68":"flow:INFLOW:branch0_seg0","69":"flow:INFLOW:branch0_seg0","70":"flow:INFLOW:branch0_seg0","71":"flow:INFLOW:branch0_seg0","72":"flow:INFLOW:branch0_seg0","73":"flow:INFLOW:branch0_seg0","74":"flow:INFLOW:branch0_seg0","75":"flow:INFLOW:branch0_seg0","76":"flow:INFLOW:branch0_seg0","77":"flow:INFLOW:branch0_seg0","78":"flow:INFLOW:branch0_seg0","79":"flow:INFLOW:branch0_seg0","80":"flow:INFLOW:branch0_seg0","81":"flow:INFLOW:branch0_seg0","82":"flow:INFLOW:branch0_seg0","83":"flow:INFLOW:branch0_seg0","84":"flow:INFLOW:branch0_seg0","85":"flow:INFLOW:branch0_seg0","86":"flow:INFLOW:branch0_seg0","87":"flow:INFLOW:branch0_seg0","88":"flow:INFLOW:branch0_seg0","89":"flow:INFLOW:branch0_seg0","90":"flow:INFLOW:branch0_seg0","91":"flow:INFLOW:branch0_seg0","92":"flow:INFLOW:branch0_seg0","93":"flow:INFLOW:branch0_seg0","94":"flow:INFLOW:branch0_seg0","95":"flow:INFLOW:branch0_seg0","96":"flow:INFLOW:branch0_seg0","97":"flow:INFLOW:branch0_seg0","98":"flow:INFLOW:branch0_seg0","99":"flow:INFLOW:branch0_seg0","100":"flow:INFLOW:branch0_seg0","101":"flow:INFLOW:branch0_seg0","102":"flow:INFLOW:branch0_seg0","103":"flow:INFLOW:branch0_seg0","104":"flow:INFLOW:branch0_seg0","105":"flow:INFLOW:branch0_seg0","106":"flow:INFLOW:branch0_seg0","107":"flow:INFLOW:branch0_seg0","108":"flow:INFLOW:branch0_seg0","109":"flow:INFLOW:branch0_seg0","110":"flow:INFLOW:branch0_seg0","111":"flow:INFLOW:branch0_seg0","112":"flow:INFLOW:branch0_seg0","113":"flow:INFLOW:branch0_seg0","114":"flow:INFLOW:branch0_seg0","115":"flow:INFLOW:branch0_seg0","116":"flow:INFLOW:branch0_seg0","117":"flow:INFLOW:branch0_seg0","118":"flow:INFLOW:branch0_seg0","119":"flow:INFLOW:branch0_seg0","120":"flow:INFLOW:branch0_seg0","121":"flow:INFLOW:branch0_seg0","122":"flow:INFLOW:branch0_seg0","123":"flow:INFLOW:branch0_seg0","124":"flow:INFLOW:branch0_seg0","125":"flow:INFLOW:branch0_seg0","126":"flow:INFLOW:branch0_seg0","127":"flow:INFLOW:branch0_seg0","128":"flow:INFLOW:branch0_seg0","129":"flow:INFLOW:branch0_seg0","130":"flow:INFLOW:branch0_seg0","131":"flow:INFLOW:branch0_seg0","132":"flow:INFLOW:branch0_seg0","133":"flow:INFLOW:branch0_seg0","134":"flow:INFLOW:branch0_seg0","135":"flow:INFLOW:branch0_seg0","136":"flow:INFLOW:branch0_seg0","137":"flow:INFLOW:branch0_seg0","138":"flow:INFLOW:branch0_seg0","139":"flow:INFLOW:branch0_seg0","140":"flow:INFLOW:branch0_seg0","141":"flow:INFLOW:branch0_seg0","142":"flow:INFLOW:branch0_seg0","143":"flow:INFLOW:branch0_seg0","144":"flow:INFLOW:branch0_seg0","145":"flow:INFLOW:branch0_seg0","146":"flow:INFLOW:branch0_seg0","147":"flow:INFLOW:branch0_seg0","148":"flow:INFLOW:branch0_seg0","149":"flow:INFLOW:branch0_seg0","150":"flow:INFLOW:branch0_seg0","151":"flow:INFLOW:branch0_seg0","152":"flow:INFLOW:branch0_seg0","153":"flow:INFLOW:branch0_seg0","154":"flow:INFLOW:branch0_seg0","155":"flow:INFLOW:branch0_seg0","156":"flow:INFLOW:branch0_seg0","157":"flow:INFLOW:branch0_seg0","158":"flow:INFLOW:branch0_seg0","159":"flow:INFLOW:branch0_seg0","160":"flow:INFLOW:branch0_seg0","161":"flow:INFLOW:branch0_seg0","162":"flow:INFLOW:branch0_seg0","163":"flow:INFLOW:branch0_seg0","164":"flow:INFLOW:branch0_seg0","165":"flow:INFLOW:branch0_seg0","166":"flow:INFLOW:branch0_seg0","167":"flow:INFLOW:branch0_seg0","168":"flow:INFLOW:branch0_seg0","169":"flow:INFLOW:branch0_seg0","170":"flow:INFLOW:branch0_seg0","171":"flow:INFLOW:branch0_seg0","172":"flow:INFLOW:branch0_seg0","173":"flow:INFLOW:branch0_seg0","174":"flow:INFLOW:branch0_seg0","175":"flow:INFLOW:branch0_seg0","176":"flow:INFLOW:branch0_seg0","177":"flow:INFLOW:branch0_seg0","178":"flow:INFLOW:branch0_seg0","179":"flow:INFLOW:branch0_seg0","180":"flow:INFLOW:branch0_seg0","181":"flow:INFLOW:branch0_seg0","182":"flow:INFLOW:branch0_seg0","183":"flow:INFLOW:branch0_seg0","184":"flow:INFLOW:branch0_seg0","185":"flow:INFLOW:branch0_seg0","186":"flow:INFLOW:branch0_seg0","187":"flow:INFLOW:branch0_seg0","188":"flow:INFLOW:branch0_seg0","189":"flow:INFLOW:branch0_seg0","190":"flow:INFLOW:branch0_seg0","191":"flow:INFLOW:branch0_seg0","192":"flow:INFLOW:branch0_seg0","193":"flow:INFLOW:branch0_seg0","194":"flow:INFLOW:branch0_seg0","195":"flow:INFLOW:branch0_seg0","196":"flow:INFLOW:branch0_seg0","197":"flow:INFLOW:branch0_seg0","198":"flow:INFLOW:branch0_seg0","199":"flow:INFLOW:branch0_seg0","200":"flow:INFLOW:branch0_seg0","201":"pressure:INFLOW:branch0_seg0","202":"pressure:INFLOW:branch0_seg0","203":"pressure:INFLOW:branch0_seg0","204":"pressure:INFLOW:branch0_seg0","205":"pressure:INFLOW:branch0_seg0","206":"pressure:INFLOW:branch0_seg0","207":"pressure:INFLOW:branch0_seg0","208":"pressure:INFLOW:branch0_seg0","209":"pressure:INFLOW:branch0_seg0","210":"pressure:INFLOW:branch0_seg0","211":"pressure:INFLOW:branch0_seg0","212":"pressure:INFLOW:branch0_seg0","213":"pressure:INFLOW:branch0_seg0","214":"pressure:INFLOW:branch0_seg0","215":"pressure:INFLOW:branch0_seg0","216":"pressure:INFLOW:branch0_seg0","217":"pressure:INFLOW:branch0_seg0","218":"pressure:INFLOW:branch0_seg0","219":"pressure:INFLOW:branch0_seg0","220":"pressure:INFLOW:branch0_seg0","221":"pressure:INFLOW:branch0_seg0","222":"pressure:INFLOW:branch0_seg0","223":"pressure:INFLOW:branch0_seg0","224":"pressure:INFLOW:branch0_seg0","225":"pressure:INFLOW:branch0_seg0","226":"pressure:INFLOW:branch0_seg0","227":"pressure:INFLOW:branch0_seg0","228":"pressure:INFLOW:branch0_seg0","229":"pressure:INFLOW:branch0_seg0","230":"pressure:INFLOW:branch0_seg0","231":"pressure:INFLOW:branch0_seg0","232":"pressure:INFLOW:branch0_seg0","233":"pressure:INFLOW:branch0_seg0","234":"pressure:INFLOW:branch0_seg0","235":"pressure:INFLOW:branch0_seg0","236":"pressure:INFLOW:branch0_seg0","237":"pressure:INFLOW:branch0_seg0","238":"pressure:INFLOW:branch0_seg0","239":"pressure:INFLOW:branch0_seg0","240":"pressure:INFLOW:branch0_seg0","241":"pressure:INFLOW:branch0_seg0","242":"pressure:INFLOW:branch0_seg0","243":"pressure:INFLOW:branch0_seg0","244":"pressure:INFLOW:branch0_seg0","245":"pressure:INFLOW:branch0_seg0","246":"pressure:INFLOW:branch0_seg0","247":"pressure:INFLOW:branch0_seg0","248":"pressure:INFLOW:branch0_seg0","249":"pressure:INFLOW:branch0_seg0","250":"pressure:INFLOW:branch0_seg0","251":"pressure:INFLOW:branch0_seg0","252":"pressure:INFLOW:branch0_seg0","253":"pressure:INFLOW:branch0_seg0","254":"pressure:INFLOW:branch0_seg0","255":"pressure:INFLOW:branch0_seg0","256":"pressure:INFLOW:branch0_seg0","257":"pressure:INFLOW:branch0_seg0","258":"pressure:INFLOW:branch0_seg0","259":"pressure:INFLOW:branch0_seg0","260":"pressure:INFLOW:branch0_seg0","261":"pressure:INFLOW:branch0_seg0","262":"pressure:INFLOW:branch0_seg0","263":"pressure:INFLOW:branch0_seg0","264":"pressure:INFLOW:branch0_seg0","265":"pressure:INFLOW:branch0_seg0","266":"pressure:INFLOW:branch0_seg0","267":"pressure:INFLOW:branch0_seg0","268":"pressure:INFLOW:branch0_seg0","269":"pressure:INFLOW:branch0_seg0","270":"pressure:INFLOW:branch0_seg0","271":"pressure:INFLOW:branch0_seg0","272":"pressure:INFLOW:branch0_seg0","273":"pressure:INFLOW:branch0_seg0","274":"pressure:INFLOW:branch0_seg0","275":"pressure:INFLOW:branch0_seg0","276":"pressure:INFLOW:branch0_seg0","277":"pressure:INFLOW:branch0_seg0","278":"pressure:INFLOW:branch0_seg0","279":"pressure:INFLOW:branch0_seg0","280":"pressure:INFLOW:branch0_seg0","281":"pressure:INFLOW:branch0_seg0","282":"pressure:INFLOW:branch0_seg0","283":"pressure:INFLOW:branch0_seg0","284":"pressure:INFLOW:branch0_seg0","285":"pressure:INFLOW:branch0_seg0","286":"pressure:INFLOW:branch0_seg0","287":"pressure:INFLOW:branch0_seg0","288":"pressure:INFLOW:branch0_seg0","289":"pressure:INFLOW:branch0_seg0","290":"pressure:INFLOW:branch0_seg0","291":"pressure:INFLOW:branch0_seg0","292":"pressure:INFLOW:branch0_seg0","293":"pressure:INFLOW:branch0_seg0","294":"pressure:INFLOW:branch0_seg0","295":"pressure:INFLOW:branch0_seg0","296":"pressure:INFLOW:branch0_seg0","297":"pressure:INFLOW:branch0_seg0","298":"pressure:INFLOW:branch0_seg0","299":"pressure:INFLOW:branch0_seg0","300":"pressure:INFLOW:branch0_seg0","301":"pressure:INFLOW:branch0_seg0","302":"pressure:INFLOW:branch0_seg0","303":"pressure:INFLOW:branch0_seg0","304":"pressure:INFLOW:branch0_seg0","305":"pressure:INFLOW:branch0_seg0","306":"pressure:INFLOW:branch0_seg0","307":"pressure:INFLOW:branch0_seg0","308":"pressure:INFLOW:branch0_seg0","309":"pressure:INFLOW:branch0_seg0","310":"pressure:INFLOW:branch0_seg0","311":"pressure:INFLOW:branch0_seg0","312":"pressure:INFLOW:branch0_seg0","313":"pressure:INFLOW:branch0_seg0","314":"pressure:INFLOW:branch0_seg0","315":"pressure:INFLOW:branch0_seg0","316":"pressure:INFLOW:branch0_seg0","317":"pressure:INFLOW:branch0_seg0","318":"pressure:INFLOW:branch0_seg0","319":"pressure:INFLOW:branch0_seg0","320":"pressure:INFLOW:branch0_seg0","321":"pressure:INFLOW:branch0_seg0","322":"pressure:INFLOW:branch0_seg0","323":"pressure:INFLOW:branch0_seg0","324":"pressure:INFLOW:branch0_seg0","325":"pressure:INFLOW:branch0_seg0","326":"pressure:INFLOW:branch0_seg0","327":"pressure:INFLOW:branch0_seg0","328":"pressure:INFLOW:branch0_seg0","329":"pressure:INFLOW:branch0_seg0","330":"pressure:INFLOW:branch0_seg0","331":"pressure:INFLOW:branch0_seg0","332":"pressure:INFLOW:branch0_seg0","333":"pressure:INFLOW:branch0_seg0","334":"pressure:INFLOW:branch0_seg0","335":"pressure:INFLOW:branch0_seg0","336":"pressure:INFLOW:branch0_seg0","337":"pressure:INFLOW:branch0_seg0","338":"pressure:INFLOW:branch0_seg0","339":"pressure:INFLOW:branch0_seg0","340":"pressure:INFLOW:branch0_seg0","341":"pressure:INFLOW:branch0_seg0","342":"pressure:INFLOW:branch0_seg0","343":"pressure:INFLOW:branch0_seg0","344":"pressure:INFLOW:branch0_seg0","345":"pressure:INFLOW:branch0_seg0","346":"pressure:INFLOW:branch0_seg0","347":"pressure:INFLOW:branch0_seg0","348":"pressure:INFLOW:branch0_seg0","349":"pressure:INFLOW:branch0_seg0","350":"pressure:INFLOW:branch0_seg0","351":"pressure:INFLOW:branch0_seg0","352":"pressure:INFLOW:branch0_seg0","353":"pressure:INFLOW:branch0_seg0","354":"pressure:INFLOW:branch0_seg0","355":"pressure:INFLOW:branch0_seg0","356":"pressure:INFLOW:branch0_seg0","357":"pressure:INFLOW:branch0_seg0","358":"pressure:INFLOW:branch0_seg0","359":"pressure:INFLOW:branch0_seg0","360":"pressure:INFLOW:branch0_seg0","361":"pressure:INFLOW:branch0_seg0","362":"pressure:INFLOW:branch0_seg0","363":"pressure:INFLOW:branch0_seg0","364":"pressure:INFLOW:branch0_seg0","365":"pressure:INFLOW:branch0_seg0","366":"pressure:INFLOW:branch0_seg0","367":"pressure:INFLOW:branch0_seg0","368":"pressure:INFLOW:branch0_seg0","369":"pressure:INFLOW:branch0_seg0","370":"pressure:INFLOW:branch0_seg0","371":"pressure:INFLOW:branch0_seg0","372":"pressure:INFLOW:branch0_seg0","373":"pressure:INFLOW:branch0_seg0","374":"pressure:INFLOW:branch0_seg0","375":"pressure:INFLOW:branch0_seg0","376":"pressure:INFLOW:branch0_seg0","377":"pressure:INFLOW:branch0_seg0","378":"pressure:INFLOW:branch0_seg0","379":"pressure:INFLOW:branch0_seg0","380":"pressure:INFLOW:branch0_seg0","381":"pressure:INFLOW:branch0_seg0","382":"pressure:INFLOW:branch0_seg0","383":"pressure:INFLOW:branch0_seg0","384":"pressure:INFLOW:branch0_seg0","385":"pressure:INFLOW:branch0_seg0","386":"pressure:INFLOW:branch0_seg0","387":"pressure:INFLOW:branch0_seg0","388":"pressure:INFLOW:branch0_seg0","389":"pressure:INFLOW:branch0_seg0","390":"pressure:INFLOW:branch0_seg0","391":"pressure:INFLOW:branch0_seg0","392":"pressure:INFLOW:branch0_seg0","393":"pressure:INFLOW:branch0_seg0","394":"pressure:INFLOW:branch0_seg0","395":"pressure:INFLOW:branch0_seg0","396":"pressure:INFLOW:branch0_seg0","397":"pressure:INFLOW:branch0_seg0","398":"pressure:INFLOW:branch0_seg0","399":"pressure:INFLOW:branch0_seg0","400":"pressure:INFLOW:branch0_seg0","401":"pressure:INFLOW:branch0_seg0","402":"flow:branch0_seg0:OUT","403":"flow:branch0_seg0:OUT","404":"flow:branch0_seg0:OUT","405":"flow:branch0_seg0:OUT","406":"flow:branch0_seg0:OUT","407":"flow:branch0_seg0:OUT","408":"flow:branch0_seg0:OUT","409":"flow:branch0_seg0:OUT","410":"flow:branch0_seg0:OUT","411":"flow:branch0_seg0:OUT","412":"flow:branch0_seg0:OUT","413":"flow:branch0_seg0:OUT","414":"flow:branch0_seg0:OUT","415":"flow:branch0_seg0:OUT","416":"flow:branch0_seg0:OUT","417":"flow:branch0_seg0:OUT","418":"flow:branch0_seg0:OUT","419":"flow:branch0_seg0:OUT","420":"flow:branch0_seg0:OUT","421":"flow:branch0_seg0:OUT","422":"flow:branch0_seg0:OUT","423":"flow:branch0_seg0:OUT","424":"flow:branch0_seg0:OUT","425":"flow:branch0_seg0:OUT","426":"flow:branch0_seg0:OUT","427":"flow:branch0_seg0:OUT","428":"flow:branch0_seg0:OUT","429":"flow:branch0_seg0:OUT","430":"flow:branch0_seg0:OUT","431":"flow:branch0_seg0:OUT","432":"flow:branch0_seg0:OUT","433":"flow:branch0_seg0:OUT","434":"flow:branch0_seg0:OUT","435":"flow:branch0_seg0:OUT","436":"flow:branch0_seg0:OUT","437":"flow:branch0_seg0:OUT","438":"flow:branch0_seg0:OUT","439":"flow:branch0_seg0:OUT","440":"flow:branch0_seg0:OUT","441":"flow:branch0_seg0:OUT","442":"flow:branch0_seg0:OUT","443":"flow:branch0_seg0:OUT","444":"flow:branch0_seg0:OUT","445":"flow:branch0_seg0:OUT","446":"flow:branch0_seg0:OUT","447":"flow:branch0_seg0:OUT","448":"flow:branch0_seg0:OUT","449":"flow:branch0_seg0:OUT","450":"flow:branch0_seg0:OUT","451":"flow:branch0_seg0:OUT","452":"flow:branch0_seg0:OUT","453":"flow:branch0_seg0:OUT","454":"flow:branch0_seg0:OUT","455":"flow:branch0_seg0:OUT","456":"flow:branch0_seg0:OUT","457":"flow:branch0_seg0:OUT","458":"flow:branch0_seg0:OUT","459":"flow:branch0_seg0:OUT","460":"flow:branch0_seg0:OUT","461":"flow:branch0_seg0:OUT","462":"flow:branch0_seg0:OUT","463":"flow:branch0_seg0:OUT","464":"flow:branch0_seg0:OUT","465":"flow:branch0_seg0:OUT","466":"flow:branch0_seg0:OUT","467":"flow:branch0_seg0:OUT","468":"flow:branch0_seg0:OUT","469":"flow:branch0_seg0:OUT","470":"flow:branch0_seg0:OUT","471":"flow:branch0_seg0:OUT","472":"flow:branch0_seg0:OUT","473":"flow:branch0_seg0:OUT","474":"flow:branch0_seg0:OUT","475":"flow:branch0_seg0:OUT","476":"flow:branch0_seg0:OUT","477":"flow:branch0_seg0:OUT","478":"flow:branch0_seg0:OUT","479":"flow:branch0_seg0:OUT","480":"flow:branch0_seg0:OUT","481":"flow:branch0_seg0:OUT","482":"flow:branch0_seg0:OUT","483":"flow:branch0_seg0:OUT","484":"flow:branch0_seg0:OUT","485":"flow:branch0_seg0:OUT","486":"flow:branch0_seg0:OUT","487":"flow:branch0_seg0:OUT","488":"flow:branch0_seg0:OUT","489":"flow:branch0_seg0:OUT","490":"flow:branch0_seg0:OUT","491":"flow:branch0_seg0:OUT","492":"flow:branch0_seg0:OUT","493":"flow:branch0_seg0:OUT","494":"flow:branch0_seg0:OUT","495":"flow:branch0_seg0:OUT","496":"flow:branch0_seg0:OUT","497":"flow:branch0_seg0:OUT","498":"flow:branch0_seg0:OUT","499":"flow:branch0_seg0:OUT","500":"flow:branch0_seg0:OUT","501":"flow:branch0_seg0:OUT","502":"flow:branch0_seg0:OUT","503":"flow:branch0_seg0:OUT","504":"flow:branch0_seg0:OUT","505":"flow:branch0_seg0:OUT","506":"flow:branch0_seg0:OUT","507":"flow:branch0_seg0:OUT","508":"flow:branch0_seg0:OUT","509":"flow:branch0_seg0:OUT","510":"flow:branch0_seg0:OUT","511":"flow:branch0_seg0:OUT","512":"flow:branch0_seg0:OUT","513":"flow:branch0_seg0:OUT","514":"flow:branch0_seg0:OUT","515":"flow:branch0_seg0:OUT","516":"flow:branch0_seg0:OUT","517":"flow:branch0_seg0:OUT","518":"flow:branch0_seg0:OUT","519":"flow:branch0_seg0:OUT","520":"flow:branch0_seg0:OUT","521":"flow:branch0_seg0:OUT","522":"flow:branch0_seg0:OUT","523":"flow:branch0_seg0:OUT","524":"flow:branch0_seg0:OUT","525":"flow:branch0_seg0:OUT","526":"flow:branch0_seg0:OUT","527":"flow:branch0_seg0:OUT","528":"flow:branch0_seg0:OUT","529":"flow:branch0_seg0:OUT","530":"flow:branch0_seg0:OUT","531":"flow:branch0_seg0:OUT","532":"flow:branch0_seg0:OUT","533":"flow:branch0_seg0:OUT","534":"flow:branch0_seg0:OUT","535":"flow:branch0_seg0:OUT","536":"flow:branch0_seg0:OUT","537":"flow:branch0_seg0:OUT","538":"flow:branch0_seg0:OUT","539":"flow:branch0_seg0:OUT","540":"flow:branch0_seg0:OUT","541":"flow:branch0_seg0:OUT","542":"flow:branch0_seg0:OUT","543":"flow:branch0_seg0:OUT","544":"flow:branch0_seg0:OUT","545":"flow:branch0_seg0:OUT","546":"flow:branch0_seg0:OUT","547":"flow:branch0_seg0:OUT","548":"flow:branch0_seg0:OUT","549":"flow:branch0_seg0:OUT","550":"flow:branch0_seg0:OUT","551":"flow:branch0_seg0:OUT","552":"flow:branch0_seg0:OUT","553":"flow:branch0_seg0:OUT","554":"flow:branch0_seg0:OUT","555":"flow:branch0_seg0:OUT","556":"flow:branch0_seg0:OUT","557":"flow:branch0_seg0:OUT","558":"flow:branch0_seg0:OUT","559":"flow:branch0_seg0:OUT","560":"flow:branch0_seg0:OUT","561":"flow:branch0_seg0:OUT","562":"flow:branch0_seg0:OUT","563":"flow:branch0_seg0:OUT","564":"flow:branch0_seg0:OUT","565":"flow:branch0_seg0:OUT","566":"flow:branch0_seg0:OUT","567":"flow:branch0_seg0:OUT","568":"flow:branch0_seg0:OUT","569":"flow:branch0_seg0:OUT","570":"flow:branch0_seg0:OUT","571":"flow:branch0_seg0:OUT","572":"flow:branch0_seg0:OUT","573":"flow:branch0_seg0:OUT","574":"flow:branch0_seg0:OUT","575":"flow:branch0_seg0:OUT","576":"flow:branch0_seg0:OUT","577":"flow:branch0_seg0:OUT","578":"flow:branch0_seg0:OUT","579":"flow:branch0_seg0:OUT","580":"flow:branch0_seg0:OUT","581":"flow:branch0_seg0:OUT","582":"flow:branch0_seg0:OUT","583":"flow:branch0_seg0:OUT","584":"flow:branch0_seg0:OUT","585":"flow:branch0_seg0:OUT","586":"flow:branch0_seg0:OUT","587":"flow:branch0_seg0:OUT","588":"flow:branch0_seg0:OUT","589":"flow:branch0_seg0:OUT","590":"flow:branch0_seg0:OUT","591":"flow:branch0_seg0:OUT","592":"flow:branch0_seg0:OUT","593":"flow:branch0_seg0:OUT","594":"flow:branch0_seg0:OUT","595":"flow:branch0_seg0:OUT","596":"flow:branch0_seg0:OUT","597":"flow:branch0_seg0:OUT","598":"flow:branch0_seg0:OUT","599":"flow:branch0_seg0:OUT","600":"flow:branch0_seg0:OUT","601":"flow:branch0_seg0:OUT","602":"flow:branch0_seg0:OUT","603":"pressure:branch0_seg0:OUT","604":"pressure:branch0_seg0:OUT","605":"pressure:branch0_seg0:OUT","606":"pressure:branch0_seg0:OUT","607":"pressure:branch0_seg0:OUT","608":"pressure:branch0_seg0:OUT","609":"pressure:branch0_seg0:OUT","610":"pressure:branch0_seg0:OUT","611":"pressure:branch0_seg0:OUT","612":"pressure:branch0_seg0:OUT","613":"pressure:branch0_seg0:OUT","614":"pressure:branch0_seg0:OUT","615":"pressure:branch0_seg0:OUT","616":"pressure:branch0_seg0:OUT","617":"pressure:branch0_seg0:OUT","618":"pressure:branch0_seg0:OUT","619":"pressure:branch0_seg0:OUT","620":"pressure:branch0_seg0:OUT","621":"pressure:branch0_seg0:OUT","622":"pressure:branch0_seg0:OUT","623":"pressure:branch0_seg0:OUT","624":"pressure:branch0_seg0:OUT","625":"pressure:branch0_seg0:OUT","626":"pressure:branch0_seg0:OUT","627":"pressure:branch0_seg0:OUT","628":"pressure:branch0_seg0:OUT","629":"pressure:branch0_seg0:OUT","630":"pressure:branch0_seg0:OUT","631":"pressure:branch0_seg0:OUT","632":"pressure:branch0_seg0:OUT","633":"pressure:branch0_seg0:OUT","634":"pressure:branch0_seg0:OUT","635":"pressure:branch0_seg0:OUT","636":"pressure:branch0_seg0:OUT","637":"pressure:branch0_seg0:OUT","638":"pressure:branch0_seg0:OUT","639":"pressure:branch0_seg0:OUT","640":"pressure:branch0_seg0:OUT","641":"pressure:branch0_seg0:OUT","642":"pressure:branch0_seg0:OUT","643":"pressure:branch0_seg0:OUT","644":"pressure:branch0_seg0:OUT","645":"pressure:branch0_seg0:OUT","646":"pressure:branch0_seg0:OUT","647":"pressure:branch0_seg0:OUT","648":"pressure:branch0_seg0:OUT","649":"pressure:branch0_seg0:OUT","650":"pressure:branch0_seg0:OUT","651":"pressure:branch0_seg0:OUT","652":"pressure:branch0_seg0:OUT","653":"pressure:branch0_seg0:OUT","654":"pressure:branch0_seg0:OUT","655":"pressure:branch0_seg0:OUT","656":"pressure:branch0_seg0:OUT","657":"pressure:branch0_seg0:OUT","658":"pressure:branch0_seg0:OUT","659":"pressure:branch0_seg0:OUT","660":"pressure:branch0_seg0:OUT","661":"pressure:branch0_seg0:OUT","662":"pressure:branch0_seg0:OUT","663":"pressure:branch0_seg0:OUT","664":"pressure:branch0_seg0:OUT","665":"pressure:branch0_seg0:OUT","666":"pressure:branch0_seg0:OUT","667":"pressure:branch0_seg0:OUT","668":"pressure:branch0_seg0:OUT","669":"pressure:branch0_seg0:OUT","670":"pressure:branch0_seg0:OUT","671":"pressure:branch0_seg0:OUT","672":"pressure:branch0_seg0:OUT","673":"pressure:branch0_seg0:OUT","674":"pressure:branch0_seg0:OUT","675":"pressure:branch0_seg0:OUT","676":"pressure:branch0_seg0:OUT","677":"pressure:branch0_seg0:OUT","678":"pressure:branch0_seg0:OUT","679":"pressure:branch0_seg0:OUT","680":"pressure:branch0_seg0:OUT","681":"pressure:branch0_seg0:OUT","682":"pressure:branch0_seg0:OUT","683":"pressure:branch0_seg0:OUT","684":"pressure:branch0_seg0:OUT","685":"pressure:branch0_seg0:OUT","686":"pressure:branch0_seg0:OUT","687":"pressure:branch0_seg0:OUT","688":"pressure:branch0_seg0:OUT","689":"pressure:branch0_seg0:OUT","690":"pressure:branch0_seg0:OUT","691":"pressure:branch0_seg0:OUT","692":"pressure:branch0_seg0:OUT","693":"pressure:branch0_seg0:OUT","694":"pressure:branch0_seg0:OUT","695":"pressure:branch0_seg0:OUT","696":"pressure:branch0_seg0:OUT","697":"pressure:branch0_seg0:OUT","698":"pressure:branch0_seg0:OUT","699":"pressure:branch0_seg0:OUT","700":"pressure:branch0_seg0:OUT","701":"pressure:branch0_seg0:OUT","702":"pressure:branch0_seg0:OUT","703":"pressure:branch0_seg0:OUT","704":"pressure:branch0_seg0:OUT","705":"pressure:branch0_seg0:OUT","706":"pressure:branch0_seg0:OUT","707":"pressure:branch0_seg0:OUT","708":"pressure:branch0_seg0:OUT","709":"pressure:branch0_seg0:OUT","710":"pressure:branch0_seg0:OUT","711":"pressure:branch0_seg0:OUT","712":"pressure:branch0_seg0:OUT","713":"pressure:branch0_seg0:OUT","714":"pressure:branch0_seg0:OUT","715":"pressure:branch0_seg0:OUT","716":"pressure:branch0_seg0:OUT","717":"pressure:branch0_seg0:OUT","718":"pressure:branch0_seg0:OUT","719":"pressure:branch0_seg0:OUT","720":"pressure:branch0_seg0:OUT","721":"pressure:branch0_seg0:OUT","722":"pressure:branch0_seg0:OUT","723":"pressure:branch0_seg0:OUT","724":"pressure:branch0_seg0:OUT","725":"pressure:branch0_seg0:OUT","726":"pressure:branch0_seg0:OUT","727":"pressure:branch0_seg0:OUT","728":"pressure:branch0_seg0:OUT","729":"pressure:branch0_seg0:OUT","730":"pressure:branch0_seg0:OUT","731":"pressure:branch0_seg0:OUT","732":"pressure:branch0_seg0:OUT","733":"pressure:branch0_seg0:OUT","734":"pressure:branch0_seg0:OUT","735":"pressure:branch0_seg0:OUT","736":"pressure:branch0_seg0:OUT","737":"pressure:branch0_seg0:OUT","738":"pressure:branch0_seg0:OUT","739":"pressure:branch0_seg0:OUT","740":"pressure:branch0_seg0:OUT","741":"pressure:branch0_seg0:OUT","742":"pressure:branch0_seg0:OUT","743":"pressure:branch0_seg0:OUT","744":"pressure:branch0_seg0:OUT","745":"pressure:branch0_seg0:OUT","746":"pressure:branch0_seg0:OUT","747":"pressure:branch0_seg0:OUT","748":"pressure:branch0_seg0:OUT","749":"pressure:branch0_seg0:OUT","750":"pressure:branch0_seg0:OUT","751":"pressure:branch0_seg0:OUT","752":"pressure:branch0_seg0:OUT","753":"pressure:branch0_seg0:OUT","754":"pressure:branch0_seg0:OUT","755":"pressure:branch0_seg0:OUT","756":"pressure:branch0_seg0:OUT","757":"pressure:branch0_seg0:OUT","758":"pressure:branch0_seg0:OUT","759":"pressure:branch0_seg0:OUT","760":"pressure:branch0_seg0:OUT","761":"pressure:branch0_seg0:OUT","762":"pressure:branch0_seg0:OUT","763":"pressure:branch0_seg0:OUT","764":"pressure:branch0_seg0:OUT","765":"pressure:branch0_seg0:OUT","766":"pressure:branch0_seg0:OUT","767":"pressure:branch0_seg0:OUT","768":"pressure:branch0_seg0:OUT","769":"pressure:branch0_seg0:OUT","770":"pressure:branch0_seg0:OUT","771":"pressure:branch0_seg0:OUT","772":"pressure:branch0_seg0:OUT","773":"pressure:branch0_seg0:OUT","774":"pressure:branch0_seg0:OUT","775":"pressure:branch0_seg0:OUT","776":"pressure:branch0_seg0:OUT","777":"pressure:branch0_seg0:OUT","778":"pressure:branch0_seg0:OUT","779":"pressure:branch0_seg0:OUT","780":"pressure:branch0_seg0:OUT","781":"pressure:branch0_seg0:OUT","782":"pressure:branch0_seg0:OUT","783":"pressure:branch0_seg0:OUT","784":"pressure:branch0_seg0:OUT","785":"pressure:branch0_seg0:OUT","786":"pressure:branch0_seg0:OUT","787":"pressure:branch0_seg0:OUT","788":"pressure:branch0_seg0:OUT","789":"pressure:branch0_seg0:OUT","790":"pressure:branch0_seg0:OUT","791":"pressure:branch0_seg0:OUT","792":"pressure:branch0_seg0:OUT","793":"pressure:branch0_seg0:OUT","794":"pressure:branch0_seg0:OUT","795":"pressure:branch0_seg0:OUT","796":"pressure:branch0_seg0:OUT","797":"pressure:branch0_seg0:OUT","798":"pressure:branch0_seg0:OUT","799":"pressure:branch0_seg0:OUT","800":"pressure:branch0_seg0:OUT","801":"pressure:branch0_seg0:OUT","802":"pressure:branch0_seg0:OUT","803":"pressure:branch0_seg0:OUT","804":"pressure_c:OUT","805":"pressure_c:OUT","806":"pressure_c:OUT","807":"pressure_c:OUT","808":"pressure_c:OUT","809":"pressure_c:OUT","810":"pressure_c:OUT","811":"pressure_c:OUT","812":"pressure_c:OUT","813":"pressure_c:OUT","814":"pressure_c:OUT","815":"pressure_c:OUT","816":"pressure_c:OUT","817":"pressure_c:OUT","818":"pressure_c:OUT","819":"pressure_c:OUT","820":"pressure_c:OUT","821":"pressure_c:OUT","822":"pressure_c:OUT","823":"pressure_c:OUT","824":"pressure_c:OUT","825":"pressure_c:OUT","826":"pressure_c:OUT","827":"pressure_c:OUT","828":"pressure_c:OUT","829":"pressure_c:OUT","830":"pressure_c:OUT","831":"pressure_c:OUT","832":"pressure_c:OUT","833":"pressure_c:OUT","834":"pressure_c:OUT","835":"pressure_c:OUT","836":"pressure_c:OUT","837":"pressure_c:OUT","838":"pressure_c:OUT","839":"pressure_c:OUT","840":"pressure_c:OUT","841":"pressure_c:OUT","842":"pressure_c:OUT","843":"pressure_c:OUT","844":"pressure_c:OUT","845":"pressure_c:OUT","846":"pressure_c:OUT","847":"pressure_c:OUT","848":"pressure_c:OUT","849":"pressure_c:OUT","850":"pressure_c:OUT","851":"pressure_c:OUT","852":"pressure_c:OUT","853":"pressure_c:OUT","854":"pressure_c:OUT","855":"pressure_c:OUT","856":"pressure_c:OUT","857":"pressure_c:OUT","858":"pressure_c:OUT","859":"pressure_c:OUT","860":"pressure_c:OUT","861":"pressure_c:OUT","862":"pressure_c:OUT","863":"pressure_c:OUT","864":"pressure_c:OUT","865":"pressure_c:OUT","866":"pressure_c:OUT","867":"pressure_c:OUT","868":"pressure_c:OUT","869":"pressure_c:OUT","870":"pressure_c:OUT","871":"pressure_c:OUT","872":"pressure_c:OUT","873":"pressure_c:OUT","874":"pressure_c:OUT","875":"pressure_c:OUT","876":"pressure_c:OUT","877":"pressure_c:OUT","878":"pressure_c:OUT","879":"pressure_c:OUT","880":"pressure_c:OUT","881":"pressure_c:OUT","882":"pressure_c:OUT","883":"pressure_c:OUT","884":"pressure_c:OUT","885":"pressure_c:OUT","886":"pressure_c:OUT","887":"pressure_c:OUT","888":"pressure_c:OUT","889":"pressure_c:OUT","890":"pressure_c:OUT","891":"pressure_c:OUT","892":"pressure_c:OUT","893":"pressure_c:OUT","894":"pressure_c:OUT","895":"pressure_c:OUT","896":"pressure_c:OUT","897":"pressure_c:OUT","898":"pressure_c:OUT","899":"pressure_c:OUT","900":"pressure_c:OUT","901":"pressure_c:OUT","902":"pressure_c:OUT","903":"pressure_c:OUT","904":"pressure_c:OUT","905":"pressure_c:OUT","906":"pressure_c:OUT","907":"pressure_c:OUT","908":"pressure_c:OUT","909":"pressure_c:OUT","910":"pressure_c:OUT","911":"pressure_c:OUT","912":"pressure_c:OUT","913":"pressure_c:OUT","914":"pressure_c:OUT","915":"pressure_c:OUT","916":"pressure_c:OUT","917":"pressure_c:OUT","918":"pressure_c:OUT","919":"pressure_c:OUT","920":"pressure_c:OUT","921":"pressure_c:OUT","922":"pressure_c:OUT","923":"pressure_c:OUT","924":"pressure_c:OUT","925":"pressure_c:OUT","926":"pressure_c:OUT","927":"pressure_c:OUT","928":"pressure_c:OUT","929":"pressure_c:OUT","930":"pressure_c:OUT","931":"pressure_c:OUT","932":"pressure_c:OUT","933":"pressure_c:OUT","934":"pressure_c:OUT","935":"pressure_c:OUT","936":"pressure_c:OUT","937":"pressure_c:OUT","938":"pressure_c:OUT","939":"pressure_c:OUT","940":"pressure_c:OUT","941":"pressure_c:OUT","942":"pressure_c:OUT","943":"pressure_c:OUT","944":"pressure_c:OUT","945":"pressure_c:OUT","946":"pressure_c:OUT","947":"pressure_c:OUT","948":"pressure_c:OUT","949":"pressure_c:OUT","950":"pressure_c:OUT","951":"pressure_c:OUT","952":"pressure_c:OUT","953":"pressure_c:OUT","954":"pressure_c:OUT","955":"pressure_c:OUT","956":"pressure_c:OUT","957":"pressure_c:OUT","958":"pressure_c:OUT","959":"pressure_c:OUT","960":"pressure_c:OUT","961":"pressure_c:OUT","962":"pressure_c:OUT","963":"pressure_c:OUT","964":"pressure_c:OUT","965":"pressure_c:OUT","966":"pressure_c:OUT","967":"pressure_c:OUT","968":"pressure_c:OUT","969":"pressure_c:OUT","970":"pressure_c:OUT","971":"pressure_c:OUT","972":"pressure_c:OUT","973":"pressure_c:OUT","974":"pressure_c:OUT","975":"pressure_c:OUT","976":"pressure_c:OUT","977":"pressure_c:OUT","978":"pressure_c:OUT","979":"pressure_c:OUT","980":"pressure_c:OUT","981":"pressure_c:OUT","982":"pressure_c:OUT","983":"pressure_c:OUT","984":"pressure_c:OUT","985":"pressure_c:OUT","986":"pressure_c:OUT","987":"pressure_c:OUT","988":"pressure_c:OUT","989":"pressure_c:OUT","990":"pressure_c:OUT","991":"pressure_c:OUT","992":"pressure_c:OUT","993":"pressure_c:OUT","994":"pressure_c:OUT","995":"pressure_c:OUT","996":"pressure_c:OUT","997":"pressure_c:OUT","998":"pressure_c:OUT","999":"pressure_c:OUT","1000":"pressure_c:OUT","1001":"pressure_c:OUT","1002":"pressure_c:OUT","1003":"pressure_c:OUT","1004":"pressure_c:OUT"},"time":{"0":0.0,"1":0.005,"2":0.01,"3":0.015,"4":0.02,"5":0.025,"6":0.03,"7":0.035,"8":0.04,"9":0.045,"10":0.05,"11":0.055,"12":0.06,"13":0.065,"14":0.07,"15":0.075,"16":0.08,"17":0.085,"18":0.09,"19":0.095,"20":0.1,"21":0.105,"22":0.11,"23":0.115,"24":0.12,"25":0.125,"26":0.13,"27":0.135,"28":0.14,"29":0.145,"30":0.15,"31":0.155,"32":0.16,"33":0.165,"34":0.17,"35":0.175,"36":0.18,"37":0.185,"38":0.19,"39":0.195,"40":0.2,"41":0.205,"42":0.21,"43":0.215,"44":0.22,"45":0.225,"46":0.23,"47":0.235,"48":0.24,"49":0.245,"50":0.25,"51":0.255,"52":0.26,"53":0.265,"54":0.27,"55":0.275,"56":0.28,"57":0.285,"58":0.29,"59":0.295,"60":0.3,"61":0.305,"62":0.31,"63":0.315,"64":0.32,"65":0.325,"66":0.33,"67":0.335,"68":0.34,"69":0.345,"70":0.35,"71":0.355,"72":0.36,"73":0.365,"74":0.37,"75":0.375,"76":0.38,"77":0.385,"78":0.39,"79":0.395,"80":0.4,"81":0.405,"82":0.41,"83":0.415,"84":0.42,"85":0.425,"86":0.43,"87":0.435,"88":0.44,"89":0.445,"90":0.45,"91":0.455,"92":0.46,"93":0.465,"94":0.47,"95":0.475,"96":0.48,"97":0.485,"98":0.49,"99":0.495,"100":0.5,"101":0.505,"102":0.51,"103":0.515,"104":0.52,"105":0.525,"106":0.53,"107":0.535,"108":0.54,"109":0.545,"110":0.55,"111":0.555,"112":0.56,"113":0.565,"114":0.57,"115":0.575,"116":0.58,"117":0.585,"118":0.59,"119":0.595,"120":0.6,"121":0.605,"122":0.61,"123":0.615,"124":0.62,"125":0.625,"126":0.63,"127":0.635,"128":0.64,"129":0.645,"130":0.65,"131":0.655,"132":0.66,"133":0.665,"134":0.67,"135":0.675,"136":0.68,"137":0.685,"138":0.69,"139":0.695,"140":0.7,"141":0.705,"142":0.71,"143":0.715,"144":0.72,"145":0.725,"146":0.73,"147":0.735,"148":0.74,"149":0.745,"150":0.75,"151":0.755,"152":0.76,"153":0.765,"154":0.77,"155":0.775,"156":0.78,"157":0.785,"158":0.79,"159":0.795,"160":0.8,"161":0.805,"162":0.81,"163":0.815,"164":0.82,"165":0.825,"166":0.83,"167":0.835,"168":0.84,"169":0.845,"170":0.85,"171":0.855,"172":0.86,"173":0.865,"174":0.87,"175":0.875,"176":0.88,"177":0.885,"178":0.89,"179":0.895,"180":0.9,"181":0.905,"182":0.91,"183":0.915,"184":0.92,"185":0.925,"186":0.93,"187":0.935,"188":0.94,"189":0.945,"190":0.95,"191":0.955,"192":0.96,"193":0.965,"194":0.97,"195":0.975,"196":0.98,"197":0.985,"198":0.99,"199":0.995,"200":1.0,"201":0.0,"202":0.005,"203":0.01,"204":0.015,"205":0.02,"206":0.025,"207":0.03,"208":0.035,"209":0.04,"210":0.045,"211":0.05,"212":0.055,"213":0.06,"214":0.065,"215":0.07,"216":0.075,"217":0.08,"218":0.085,"219":0.09,"220":0.095,"221":0.1,"222":0.105,"223":0.11,"224":0.115,"225":0.12,"226":0.125,"227":0.13,"228":0.135,"229":0.14,"230":0.145,"231":0.15,"232":0.155,"233":0.16,"234":0.165,"235":0.17,"236":0.175,"237":0.18,"238":0.185,"239":0.19,"240":0.195,"241":0.2,"242":0.205,"243":0.21,"244":0.215,"245":0.22,"246":0.225,"247":0.23,"248":0.235,"249":0.24,"250":0.245,"251":0.25,"252":0.255,"253":0.26,"254":0.265,"255":0.27,"256":0.275,"257":0.28,"258":0.285,"259":0.29,"260":0.295,"261":0.3,"262":0.305,"263":0.31,"264":0.315,"265":0.32,"266":0.325,"267":0.33,"268":0.335,"269":0.34,"270":0.345,"271":0.35,"272":0.355,"273":0.36,"274":0.365,"275":0.37,"276":0.375,"277":0.38,"278":0.385,"279":0.39,"280":0.395,"281":0.4,"282":0.405,"283":0.41,"284":0.415,"285":0.42,"286":0.425,"287":0.43,"288":0.435,"289":0.44,"290":0.445,"291":0.45,"292":0.455,"293":0.46,"294":0.465,"295":0.47,"296":0.475,"297":0.48,"298":0.485,"299":0.49,"300":0.495,"301":0.5,"302":0.505,"303":0.51,"304":0.515,"305":0.52,"306":0.525,"307":0.53,"308":0.535,"309":0.54,"310":0.545,"311":0.55,"312":0.555,"313":0.56,"314":0.565,"315":0.57,"316":0.575,"317":0.58,"318":0.585,"319":0.59,"320":0.595,"321":0.6,"322":0.605,"323":0.61,"324":0.615,"325":0.62,"326":0.625,"327":0.63,"328":0.635,"329":0.64,"330":0.645,"331":0.65,"332":0.655,"333":0.66,"334":0.665,"335":0.67,"336":0.675,"337":0.68,"338":0.685,"339":0.69,"340":0.695,"341":0.7,"342":0.705,"343":0.71,"344":0.715,"345":0.72,"346":0.725,"347":0.73,"348":0.735,"349":0.74,"350":0.745,"351":0.75,"352":0.755,"353":0.76,"354":0.765,"355":0.77,"356":0.775,"357":0.78,"358":0.785,"359":0.79,"360":0.795,"361":0.8,"362":0.805,"363":0.81,"364":0.815,"365":0.82,"366":0.825,"367":0.83,"368":0.835,"369":0.84,"370":0.845,"371":0.85,"372":0.855,"373":0.86,"374":0.865,"375":0.87,"376":0.875,"377":0.88,"378":0.885,"379":0.89,"380":0.895,"381":0.9,"382":0.905,"383":0.91,"384":0.915,"385":0.92,"386":0.925,"387":0.93,"388":0.935,"389":0.94,"390":0.945,"391":0.95,"392":0.955,"393":0.96,"394":0.965,"395":0.97,"396":0.975,"397":0.98,"398":0.985,"399":0.99,"400":0.995,"401":1.0,"402":0.0,"403":0.005,"404":0.01,"405":0.015,"406":0.02,"407":0.025,"408":0.03,"409":0.035,"410":0.04,"411":0.045,"412":0.05,"413":0.055,"414":0.06,"415":0.065,"416":0.07,"417":0.075,"418":0.08,"419":0.085,"420":0.09,"421":0.095,"422":0.1,"423":0.105,"424":0.11,"425":0.115,"426":0.12,"427":0.125,"428":0.13,"429":0.135,"430":0.14,"431":0.145,"432":0.15,"433":0.155,"434":0.16,"435":0.165,"436":0.17,"437":0.175,"438":0.18,"439":0.185,"440":0.19,"441":0.195,"442":0.2,"443":0.205,"444":0.21,"445":0.215,"446":0.22,"447":0.225,"448":0.23,"449":0.235,"450":0.24,"451":0.245,"452":0.25,"453":0.255,"454":0.26,"455":0.265,"456":0.27,"457":0.275,"458":0.28,"459":0.285,"460":0.29,"461":0.295,"462":0.3,"463":0.305,"464":0.31,"465":0.315,"466":0.32,"467":0.325,"468":0.33,"469":0.335,"470":0.34,"471":0.345,"472":0.35,"473":0.355,"474":0.36,"475":0.365,"476":0.37,"477":0.375,"478":0.38,"479":0.385,"480":0.39,"481":0.395,"482":0.4,"483":0.405,"484":0.41,"485":0.415,"486":0.42,"487":0.425,"488":0.43,"489":0.435,"490":0.44,"491":0.445,"492":0.45,"493":0.455,"494":0.46,"495":0.465,"496":0.47,"497":0.475,"498":0.48,"499":0.485,"500":0.49,"501":0.495,"502":0.5,"503":0.505,"504":0.51,"505":0.515,"506":0.52,"507":0.525,"508":0.53,"509":0.535,"510":0.54,"511":0.545,"512":0.55,"513":0.555,"514":0.56,"515":0.565,"516":0.57,"517":0.575,"518":0.58,"519":0.585,"520":0.59,"521":0.595,"522":0.6,"523":0.605,"524":0.61,"525":0.615,"526":0.62,"527":0.625,"528":0.63,"529":0.635,"530":0.64,"531":0.645,"532":0.65,"533":0.655,"534":0.66,"535":0.665,"536":0.67,"537":0.675,"538":0.68,"539":0.685,"540":0.69,"541":0.695,"542":0.7,"543":0.705,"544":0.71,"545":0.715,"546":0.72,"547":0.725,"548":0.73,"549":0.735,"550":0.74,"551":0.745,"552":0.75,"553":0.755,"554":0.76,"555":0.765,"556":0.77,"557":0.775,"558":0.78,"559":0.785,"560":0.79,"561":0.795,"562":0.8,"563":0.805,"564":0.81,"565":0.815,"566":0.82,"567":0.825,"568":0.83,"569":0.835,"570":0.84,"571":0.845,"572":0.85,"573":0.855,"574":0.86,"575":0.865,"576":0.87,"577":0.875,"578":0.88,"579":0.885,"580":0.89,"581":0.895,"582":0.9,"583":0.905,"584":0.91,"585":0.915,"586":0.92,"587":0.925,"588":0.93,"589":0.935,"590":0.94,"591":0.945,"592":0.95,"593":0.955,"594":0.96,"595":0.965,"596":0.97,"597":0.975,"598":0.98,"599":0.985,"600":0.99,"601":0.995,"602":1.0,"603":0.0,"604":0.005,"605":0.01,"606":0.015,"607":0.02,"608":0.025,"609":0.03,"610":0.035,"611":0.04,"612":0.045,"613":0.05,"614":0.055,"615":0.06,"616":0.065,"617":0.07,"618":0.075,"619":0.08,"620":0.085,"621":0.09,"622":0.095,"623":0.1,"624":0.105,"625":0.11,"626":0.115,"627":0.12,"628":0.125,"629":0.13,"630":0.135,"631":0.14,"632":0.145,"633":0.15,"634":0.155,"635":0.16,"636":0.165,"637":0.17,"638":0.175,"639":0.18,"640":0.185,"641":0.19,"642":0.195,"643":0.2,"644":0.205,"645":0.21,"646":0.215,"647":0.22,"648":0.225,"649":0.23,"650":0.235,"651":0.24,"652":0.245,"653":0.25,"654":0.255,"655":0.26,"656":0.265,"657":0.27,"658":0.275,"659":0.28,"660":0.285,"661":0.29,"662":0.295,"663":0.3,"664":0.305,"665":0.31,"666":0.315,"667":0.32,"668":0.325,"669":0.33,"670":0.335,"671":0.34,"672":0.345,"673":0.35,"674":0.355,"675":0.36,"676":0.365,"677":0.37,"678":0.375,"679":0.38,"680":0.385,"681":0.39,"682":0.395,"683":0.4,"684":0.405,"685":0.41,"686":0.415,"687":0.42,"688":0.425,"689":0.43,"690":0.435,"691":0.44,"692":0.445,"693":0.45,"694":0.455,"695":0.46,"696":0.465,"697":0.47,"698":0.475,"699":0.48,"700":0.485,"701":0.49,"702":0.495,"703":0.5,"704":0.505,"705":0.51,"706":0.515,"707":0.52,"708":0.525,"709":0.53,"710":0.535,"711":0.54,"712":0.545,"713":0.55,"714":0.555,"715":0.56,"716":0.565,"717":0.57,"718":0.575,"719":0.58,"720":0.585,"721":0.59,"722":0.595,"723":0.6,"724":0.605,"725":0.61,"726":0.615,"727":0.62,"728":0.625,"729":0.63,"730":0.635,"731":0.64,"732":0.645,"733":0.65,"734":0.655,"735":0.66,"736":0.665,"737":0.67,"738":0.675,"739":0.68,"740":0.685,"741":0.69,"742":0.695,"743":0.7,"744":0.705,"745":0.71,"746":0.715,"747":0.72,"748":0.725,"749":0.73,"750":0.735,"751":0.74,"752":0.745,"753":0.75,"754":0.755,"755":0.76,"756":0.765,"757":0.77,"758":0.775,"759":0.78,"760":0.785,"761":0.79,"762":0.795,"763":0.8,"764":0.805,"765":0.81,"766":0.815,"767":0.82,"768":0.825,"769":0.83,"770":0.835,"771":0.84,"772":0.845,"773":0.85,"774":0.855,"775":0.86,"776":0.865,"777":0.87,"778":0.875,"779":0.88,"780":0.885,"781":0.89,"782":0.895,"783":0.9,"784":0.905,"785":0.91,"786":0.915,"787":0.92,"788":0.925,"789":0.93,"790":0.935,"791":0.94,"792":0.945,"793":0.95,"794":0.955,"795":0.96,"796":0.965,"797":0.97,"798":0.975,"799":0.98,"800":0.985,"801":0.99,"802":0.995,"803":1.0,"804":0.0,"805":0.005,"806":0.01,"807":0.015,"808":0.02,"809":0.025,"810":0.03,"811":0.035,"812":0.04,"813":0.045,"814":0.05,"815":0.055,"816":0.06,"817":0.065,"818":0.07,"819":0.075,"820":0.08,"821":0.085,"822":0.09,"823":0.095,"824":0.1,"825":0.105,"826":0.11,"827":0.115,"828":0.12,"829":0.125,"830":0.13,"831":0.135,"832":0.14,"833":0.145,"834":0.15,"835":0.155,"836":0.16,"837":0.165,"838":0.17,"839":0.175,"840":0.18,"841":0.185,"842":0.19,"843":0.195,"844":0.2,"845":0.205,"846":0.21,"847":0.215,"848":0.22,"849":0.225,"850":0.23,"851":0.235,"852":0.24,"853":0.245,"854":0.25,"855":0.255,"856":0.26,"857":0.265,"858":0.27,"859":0.275,"860":0.28,"861":0.285,"862":0.29,"863":0.295,"864":0.3,"865":0.305,"866":0.31,"867":0.315,"868":0.32,"869":0.325,"870":0.33,"871":0.335,"872":0.34,"873":0.345,"874":0.35,"875":0.355,"876":0.36,"877":0.365,"878":0.37,"879":0.375,"880":0.38,"881":0.385,"882":0.39,"883":0.395,"884":0.4,"885":0.405,"886":0.41,"887":0.415,"888":0.42,"889":0.425,"890":0.43,"891":0.435,"892":0.44,"893":0.445,"894":0.45,"895":0.455,"896":0.46,"897":0.465,"898":0.47,"899":0.475,"900":0.48,"901":0.485,"902":0.49,"903":0.495,"904":0.5,"905":0.505,"906":0.51,"907":0.515,"908":0.52,"909":0.525,"910":0.53,"911":0.535,"912":0.54,"913":0.545,"914":0.55,"915":0.555,"916":0.56,"917":0.565,"918":0.57,"919":0.575,"920":0.58,"921":0.585,"922":0.59,"923":0.595,"924":0.6,"925":0.605,"926":0.61,"927":0.615,"928":0.62,"929":0.625,"930":0.63,"931":0.635,"932":0.64,"933":0.645,"934":0.65,"935":0.655,"936":0.66,"937":0.665,"938":0.67,"939":0.675,"940":0.68,"941":0.685,"942":0.69,"943":0.695,"944":0.7,"945":0.705,"946":0.71,"947":0.715,"948":0.72,"949":0.725,"950":0.73,"951":0.735,"952":0.74,"953":0.745,"954":0.75,"955":0.755,"956":0.76,"957":0.765,"958":0.77,"959":0.775,"960":0.78,"961":0.785,"962":0.79,"963":0.795,"964":0.8,"965":0.805,"966":0.81,"967":0.815,"968":0.82,"969":0.825,"970":0.83,"971":0.835,"972":0.84,"973":0.845,"974":0.85,"975":0.855,"976":0.86,"977":0.865,"978":0.87,"979":0.875,"980":0.88,"981":0.885,"982":0.89,"983":0.895,"984":0.9,"985":0.905,"986":0.91,"987":0.915,"988":0.92,"989":0.925,"990":0.93,"991":0.935,"992":0.94,"993":0.945,"994":0.95,"995":0.955,"996":0.96,"997":0.965,"998":0.97,"999":0.975,"1000":0.98,"1001":0.985,"1002":0.99,"1003":0.995,"1004":1.0},"y":{"0":2.2,"1":2.2784881494,"2":2.3569762988,"3":2.4351546914,"4":2.5133330839,"5":2.5908931852,"6":2.6684532865,"7":2.7450890022,"8":2.8217247179,"9":2.8971336019,"10":2.9725424859,"11":3.0464269338,"12":3.1203113817,"13":3.1923798053,"14":3.2644482289,"15":3.3344162071,"16":3.4043841853,"17":3.4719755864,"18":3.5395669874,"19":3.6045150591,"20":3.6694631307,"21":3.7315115526,"22":3.7935599744,"23":3.8524638696,"24":3.9113677648,"25":3.9668946667,"26":4.0224215686,"27":4.0743523377,"28":4.1262831069,"29":4.1744127964,"30":4.2225424859,"31":4.2666811498,"32":4.3108198138,"33":4.3507932569,"34":4.3907667001,"35":4.4264171656,"36":4.4620676312,"37":4.4932544229,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2,"201":3493.9321778673,"202":3637.1001006528,"203":3781.3248955491,"204":3926.2044186362,"205":4072.027480714,"206":4218.0468308143,"207":4364.8926630676,"208":4511.4755685161,"209":4658.7646375326,"210":4805.332602569,"211":4952.4836256832,"212":5098.45821351,"213":5244.8904528606,"214":5389.6955684689,"215":5534.8311229057,"216":5677.8952866596,"217":5821.1613724554,"218":5961.9199754602,"219":6102.7511868264,"220":6240.6487191826,"221":6378.4892596676,"222":6512.9815028144,"223":6647.2873787782,"224":6777.8435532755,"225":6908.0847207843,"226":7034.1895810568,"227":7159.8520377239,"228":7281.0079055,"229":7401.5957190187,"230":7517.324447439,"231":7632.3617128006,"232":7742.2065734457,"233":7851.2392911194,"234":7954.7667765074,"235":8057.3646441688,"236":8154.1661786123,"237":8249.9242893503,"238":8339.6178414172,"239":8428.1582817164,"240":8510.3898719337,"241":8591.3632131265,"242":8665.8083109758,"243":8738.8949882778,"244":8805.2597929684,"245":8870.1713666544,"246":8928.1939666215,"247":8984.6742603654,"248":9034.125666915,"249":9081.9517788008,"250":9122.6368298234,"251":9161.6200120371,"252":9193.3781422235,"253":9223.3645459547,"254":9246.070420474,"255":9266.9417030866,"256":9280.5057122254,"257":9292.1795043022,"258":9296.5481171133,"259":9298.9783475301,"260":9294.1343230944,"261":9287.3114008421,"262":9273.2738563112,"263":9257.2247083468,"264":9234.0490434957,"265":9208.8370084741,"266":9176.614687064,"267":9142.3392653691,"268":9101.1974541818,"269":9057.993915244,"270":9008.0949822122,"271":8956.133830662,"272":8897.6747040778,"273":8837.1610068415,"274":8770.37239817,"275":8701.5449751646,"276":8626.6904685315,"277":8549.8209501513,"278":8467.1959620964,"279":8382.5877172121,"280":8292.5183308156,"281":8200.5052695159,"282":8103.346947497,"283":8004.2922032982,"284":7900.4283851666,"285":7794.72288189,"286":7684.5634706851,"287":7572.62437966,"288":7456.6041242506,"289":7338.8732179293,"290":7217.4499972589,"291":7094.3919057424,"292":6968.04492179,"293":6840.1452991456,"294":6709.3731857345,"295":6577.1367933411,"296":6442.4556482587,"297":6306.404362744,"298":6168.3457109401,"299":6029.016464572,"300":5888.1251604722,"301":5746.0678221327,"302":5602.8998993472,"303":5458.6751044509,"304":5313.7955813638,"305":5167.972519286,"306":5021.9531691857,"307":4875.1073369324,"308":4728.5244314839,"309":4581.2353624674,"310":4434.667397431,"311":4287.5163743168,"312":4141.54178649,"313":3995.1095471394,"314":3850.3044315311,"315":3705.1688770943,"316":3562.1047133404,"317":3418.8386275446,"318":3278.0800245398,"319":3137.2488131736,"320":2999.3512808174,"321":2861.5107403324,"322":2727.0184971856,"323":2592.7126212218,"324":2462.1564467245,"325":2331.9152792157,"326":2205.8104189432,"327":2080.1479622761,"328":1958.9920945,"329":1838.4042809813,"330":1722.675552561,"331":1607.6382871994,"332":1497.7934265543,"333":1388.7607088806,"334":1285.2332234926,"335":1182.6353558312,"336":1085.8338213877,"337":990.0757106497,"338":900.3821585829,"339":811.8417182836,"340":729.6101280663,"341":648.6367868735,"342":574.1916890242,"343":501.1050117222,"344":434.7402070316,"345":369.8286333456,"346":311.8060333785,"347":255.3257396346,"348":205.874333085,"349":158.0482211992,"350":117.3631701766,"351":78.3799879629,"352":46.6218577765,"353":16.6354540453,"354":-6.070420474,"355":-26.9417030866,"356":-40.5057122254,"357":-52.1795043022,"358":-56.5481171133,"359":-58.9783475301,"360":-54.1343230944,"361":-47.3114008421,"362":-33.2738563112,"363":-17.2247083468,"364":5.9509565043,"365":31.1629915259,"366":63.385312936,"367":97.6607346309,"368":138.8025458182,"369":182.006084756,"370":231.9050177878,"371":283.866169338,"372":342.3252959222,"373":402.8389931585,"374":469.62760183,"375":538.4550248354,"376":613.3095314685,"377":690.1790498487,"378":772.8040379036,"379":857.4122827879,"380":947.4816691844,"381":1039.4947304841,"382":1136.6530525029,"383":1235.7077967018,"384":1339.5716148334,"385":1445.27711811,"386":1555.4365293149,"387":1667.37562034,"388":1783.3958757494,"389":1901.1267820707,"390":2022.5500027411,"391":2145.6080942576,"392":2271.95507821,"393":2399.8547008544,"394":2530.6268142655,"395":2662.8632066589,"396":2797.5443517413,"397":2933.595637256,"398":3071.6542890599,"399":3210.983535428,"400":3351.8748395278,"401":3493.9321778673,"402":2.2,"403":2.2784881494,"404":2.3569762988,"405":2.4351546914,"406":2.5133330839,"407":2.5908931852,"408":2.6684532865,"409":2.7450890022,"410":2.8217247179,"411":2.8971336019,"412":2.9725424859,"413":3.0464269338,"414":3.1203113817,"415":3.1923798053,"416":3.2644482289,"417":3.3344162071,"418":3.4043841853,"419":3.4719755864,"420":3.5395669874,"421":3.6045150591,"422":3.6694631307,"423":3.7315115526,"424":3.7935599744,"425":3.8524638696,"426":3.9113677648,"427":3.9668946667,"428":4.0224215686,"429":4.0743523377,"430":4.1262831069,"431":4.1744127964,"432":4.2225424859,"433":4.2666811498,"434":4.3108198138,"435":4.3507932569,"436":4.3907667001,"437":4.4264171656,"438":4.4620676312,"439":4.4932544229,"440":4.5244412147,"441":4.5510412527,"442":4.5776412907,"443":4.5995495968,"444":4.6214579028,"445":4.6385880148,"446":4.6557181268,"447":4.6680024401,"448":4.6802867533,"449":4.6876767872,"450":4.6950668211,"451":4.6975334105,"452":4.7,"453":4.6975334105,"454":4.6950668211,"455":4.6876767872,"456":4.6802867533,"457":4.6680024401,"458":4.6557181268,"459":4.6385880148,"460":4.6214579028,"461":4.5995495968,"462":4.5776412907,"463":4.5510412527,"464":4.5244412147,"465":4.4932544229,"466":4.4620676312,"467":4.4264171656,"468":4.3907667001,"469":4.3507932569,"470":4.3108198138,"471":4.2666811498,"472":4.2225424859,"473":4.1744127964,"474":4.1262831069,"475":4.0743523377,"476":4.0224215686,"477":3.9668946667,"478":3.9113677648,"479":3.8524638696,"480":3.7935599744,"481":3.7315115526,"482":3.6694631307,"483":3.6045150591,"484":3.5395669874,"485":3.4719755864,"486":3.4043841853,"487":3.3344162071,"488":3.2644482289,"489":3.1923798053,"490":3.1203113817,"491":3.0464269338,"492":2.9725424859,"493":2.8971336019,"494":2.8217247179,"495":2.7450890022,"496":2.6684532865,"497":2.5908931852,"498":2.5133330839,"499":2.4351546914,"500":2.3569762988,"501":2.2784881494,"502":2.2,"503":2.1215118506,"504":2.0430237012,"505":1.9648453086,"506":1.8866669161,"507":1.8091068148,"508":1.7315467135,"509":1.6549109978,"510":1.5782752821,"511":1.5028663981,"512":1.4274575141,"513":1.3535730662,"514":1.2796886183,"515":1.2076201947,"516":1.1355517711,"517":1.0655837929,"518":0.9956158147,"519":0.9280244136,"520":0.8604330126,"521":0.7954849409,"522":0.7305368693,"523":0.6684884474,"524":0.6064400256,"525":0.5475361304,"526":0.4886322352,"527":0.4331053333,"528":0.3775784314,"529":0.3256476623,"530":0.2737168931,"531":0.2255872036,"532":0.1774575141,"533":0.1333188502,"534":0.0891801862,"535":0.0492067431,"536":0.0092332999,"537":-0.0264171656,"538":-0.0620676312,"539":-0.0932544229,"540":-0.1244412147,"541":-0.1510412527,"542":-0.1776412907,"543":-0.1995495968,"544":-0.2214579028,"545":-0.2385880148,"546":-0.2557181268,"547":-0.2680024401,"548":-0.2802867533,"549":-0.2876767872,"550":-0.2950668211,"551":-0.2975334105,"552":-0.3,"553":-0.2975334105,"554":-0.2950668211,"555":-0.2876767872,"556":-0.2802867533,"557":-0.2680024401,"558":-0.2557181268,"559":-0.2385880148,"560":-0.2214579028,"561":-0.1995495968,"562":-0.1776412907,"563":-0.1510412527,"564":-0.1244412147,"565":-0.0932544229,"566":-0.0620676312,"567":-0.0264171656,"568":0.0092332999,"569":0.0492067431,"570":0.0891801862,"571":0.1333188502,"572":0.1774575141,"573":0.2255872036,"574":0.2737168931,"575":0.3256476623,"576":0.3775784314,"577":0.4331053333,"578":0.4886322352,"579":0.5475361304,"580":0.6064400256,"581":0.6684884474,"582":0.7305368693,"583":0.7954849409,"584":0.8604330126,"585":0.9280244136,"586":0.9956158147,"587":1.0655837929,"588":1.1355517711,"589":1.2076201947,"590":1.2796886183,"591":1.3535730662,"592":1.4274575141,"593":1.5028663981,"594":1.5782752821,"595":1.6549109978,"596":1.7315467135,"597":1.8091068148,"598":1.8866669161,"599":1.9648453086,"600":2.0430237012,"601":2.1215118506,"602":2.2,"603":3273.9321778673,"604":3409.2512857116,"605":3545.6272656668,"606":3682.6889494995,"607":3820.6941723229,"608":3958.9575122955,"609":4098.0473344212,"610":4236.9666682973,"611":4376.5921657414,"612":4515.6192423766,"613":4655.2293770895,"614":4793.8155201275,"615":4932.8593146894,"616":5070.4575879377,"617":5208.3863000145,"618":5344.4536659513,"619":5480.72295393,"620":5614.7224168251,"621":5748.7944880817,"622":5880.1972132737,"623":6011.5429465945,"624":6139.8303475592,"625":6267.9313813411,"626":6392.5971663158,"627":6516.9479443021,"628":6637.5001143881,"629":6757.6098808686,"630":6873.5726717253,"631":6988.9674083247,"632":7099.8831677952,"633":7210.1074642069,"634":7315.538458461,"635":7420.1573097438,"636":7519.6874508142,"637":7618.2879741579,"638":7711.5244620486,"639":7803.7175262338,"640":7890.2923991229,"641":7975.7141602443,"642":8055.2857466607,"643":8133.5990840527,"644":8205.8533512978,"645":8276.7491979956,"646":8341.4009914862,"647":8404.5995539722,"648":8461.3937226161,"649":8516.6455850368,"650":8565.3579881972,"651":8612.4450966937,"652":8652.8834887698,"653":8691.6200120371,"654":8723.62480117,"655":8753.8578638476,"656":8777.3027417562,"657":8798.913027758,"658":8813.70546822,"659":8826.60769162,"660":8832.6893156311,"661":8836.8325572479,"662":8834.1793634164,"663":8829.5472717683,"664":8818.1697310383,"665":8804.7805868747,"666":8784.7236012014,"667":8762.6302453576,"668":8733.9729705003,"669":8703.2625953581,"670":8666.1181284885,"671":8626.9119338685,"672":8581.4268672276,"673":8533.8795820683,"674":8480.233424434,"675":8424.5326961476,"676":8362.9371643954,"677":8299.3028183093,"678":8230.0010018627,"679":8158.6841736691,"680":8081.9495751367,"681":8003.2317197749,"682":7919.3671755604,"683":7833.5589564428,"684":7742.8954415881,"685":7650.3355045534,"686":7553.2308265315,"687":7454.2844633646,"688":7351.1218499767,"689":7246.1795567688,"690":7137.3661437194,"691":7026.8420797581,"692":6912.8073038765,"693":6797.1376571486,"694":6678.3315615975,"695":6557.9728273544,"696":6434.8642855157,"697":6310.2914646947,"698":6183.36632974,"699":6055.0710543529,"700":5924.8302418034,"701":5793.3188346896,"702":5660.2763455311,"703":5526.0678221327,"704":5390.7487142884,"705":5254.3727343332,"706":5117.3110505005,"707":4979.3058276771,"708":4841.0424877045,"709":4701.9526655788,"710":4563.0333317027,"711":4423.4078342586,"712":4284.3807576234,"713":4144.7706229105,"714":4006.1844798725,"715":3867.1406853106,"716":3729.5424120623,"717":3591.6136999855,"718":3455.5463340488,"719":3319.27704607,"720":3185.2775831749,"721":3051.2055119183,"722":2919.8027867263,"723":2788.4570534055,"724":2660.1696524408,"725":2532.0686186589,"726":2407.4028336842,"727":2283.0520556979,"728":2162.4998856119,"729":2042.3901191314,"730":1926.4273282747,"731":1811.0325916753,"732":1700.1168322048,"733":1589.8925357931,"734":1484.461541539,"735":1379.8426902562,"736":1280.3125491858,"737":1181.7120258421,"738":1088.4755379514,"739":996.2824737662,"740":909.7076008771,"741":824.2858397557,"742":744.7142533393,"743":666.4009159472,"744":594.1466487022,"745":523.2508020044,"746":458.5990085138,"747":395.4004460278,"748":338.6062773839,"749":283.3544149632,"750":234.6420118028,"751":187.5549033063,"752":147.1165112302,"753":108.3799879629,"754":76.37519883,"755":46.1421361524,"756":22.6972582438,"757":1.086972242,"758":-13.70546822,"759":-26.60769162,"760":-32.6893156311,"761":-36.8325572479,"762":-34.1793634164,"763":-29.5472717683,"764":-18.1697310383,"765":-4.7805868747,"766":15.2763987986,"767":37.3697546424,"768":66.0270294997,"769":96.7374046419,"770":133.8818715115,"771":173.0880661315,"772":218.5731327724,"773":266.1204179317,"774":319.766575566,"775":375.4673038524,"776":437.0628356046,"777":500.6971816907,"778":569.9989981373,"779":641.3158263309,"780":718.0504248633,"781":796.7682802251,"782":880.6328244396,"783":966.4410435572,"784":1057.1045584119,"785":1149.6644954466,"786":1246.7691734685,"787":1345.7155366354,"788":1448.8781500233,"789":1553.8204432312,"790":1662.6338562806,"791":1773.1579202419,"792":1887.1926961236,"793":2002.8623428514,"794":2121.6684384025,"795":2242.0271726456,"796":2365.1357144843,"797":2489.7085353053,"798":2616.63367026,"799":2744.9289456471,"800":2875.1697581966,"801":3006.6811653104,"802":3139.7236544689,"803":3273.9321778673,"804":1073.9321778673,"805":1130.7631362999,"806":1188.6509668435,"807":1247.5342581325,"808":1307.3610884121,"809":1368.064327108,"810":1429.5940479568,"811":1491.8776661091,"812":1554.8674478293,"813":1618.4856404518,"814":1682.6868911521,"815":1747.3885863029,"816":1812.5479329777,"817":1878.0777826255,"818":1943.9380711018,"819":2010.0374588678,"820":2076.3387686757,"821":2142.7468304742,"822":2209.2275006342,"823":2275.6821541843,"824":2342.0798158633,"825":2408.3187950078,"826":2474.3714069693,"827":2540.1332967191,"828":2605.5801794804,"829":2670.6054477004,"830":2735.188312315,"831":2799.2203339788,"832":2862.6843013852,"833":2925.4703713568,"834":2987.5649782695,"835":3048.8573086148,"836":3109.3374959888,"837":3168.8941938818,"838":3227.5212740482,"839":3285.1072964112,"840":3341.6498950687,"841":3397.03797618,"842":3451.2729455237,"843":3504.2444939315,"844":3555.9577933149,"845":3606.303754518,"846":3655.291295174,"847":3702.8129766646,"848":3748.8814271505,"849":3793.3912825622,"850":3836.3588317506,"851":3877.6812010187,"852":3917.378275623,"853":3955.3500782345,"854":3991.6200120371,"855":4026.0913906346,"856":4058.7910427769,"857":4089.6259545777,"858":4118.6262744718,"859":4145.7030281661,"860":4170.8895647983,"861":4194.1013008094,"862":4215.3746544263,"863":4234.6297666367,"864":4251.9059810304,"865":4267.128478309,"866":4280.3393721541,"867":4291.4691782586,"868":4300.5626141925,"869":4307.555804863,"870":4312.4958952485,"871":4315.3248715562,"872":4316.0921201135,"873":4314.7457173814,"874":4311.3370961309,"875":4305.8206279955,"876":4298.2495892081,"877":4288.5848266489,"878":4276.8812497557,"879":4263.1063351751,"880":4247.3164088474,"881":4229.48570554,"882":4209.6717454032,"883":4187.855623009,"884":4164.0958257116,"885":4138.3803824988,"886":4110.7685171059,"887":4081.2552401806,"888":4049.9002781103,"889":4016.7056428932,"890":3981.7313278561,"891":3944.9863384072,"892":3906.5306980464,"893":3866.3803700519,"894":3824.5951712113,"895":3781.1979596728,"896":3736.2481094423,"897":3689.7752833275,"898":3641.8381782304,"899":3592.4731445525,"900":3541.7379704421,"901":3489.6755504364,"902":3436.3425358664,"903":3381.7881961194,"904":3326.0678221327,"905":3269.2368637001,"906":3211.3490331565,"907":3152.4657418675,"908":3092.6389115879,"909":3031.935672892,"910":2970.4059520432,"911":2908.1223338909,"912":2845.1325521707,"913":2781.5143595482,"914":2717.3131088479,"915":2652.6114136971,"916":2587.4520670223,"917":2521.9222173745,"918":2456.0619288982,"919":2389.9625411322,"920":2323.6612313243,"921":2257.2531695258,"922":2190.7724993658,"923":2124.3178458157,"924":2057.9201841367,"925":1991.6812049922,"926":1925.6285930307,"927":1859.8667032809,"928":1794.4198205196,"929":1729.3945522996,"930":1664.811687685,"931":1600.7796660212,"932":1537.3156986148,"933":1474.5296286432,"934":1412.4350217305,"935":1351.1426913852,"936":1290.6625040112,"937":1231.1058061182,"938":1172.4787259518,"939":1114.8927035888,"940":1058.3501049313,"941":1002.96202382,"942":948.7270544763,"943":895.7555060685,"944":844.0422066851,"945":793.696245482,"946":744.708704826,"947":697.1870233354,"948":651.1185728495,"949":606.6087174378,"950":563.6411682494,"951":522.3187989813,"952":482.621724377,"953":444.6499217655,"954":408.3799879629,"955":373.9086093654,"956":341.2089572231,"957":310.3740454223,"958":281.3737255282,"959":254.2969718339,"960":229.1104352017,"961":205.8986991906,"962":184.6253455737,"963":165.3702333633,"964":148.0940189696,"965":132.871521691,"966":119.6606278459,"967":108.5308217414,"968":99.4373858075,"969":92.444195137,"970":87.5041047515,"971":84.6751284438,"972":83.9078798865,"973":85.2542826186,"974":88.6629038691,"975":94.1793720045,"976":101.7504107919,"977":111.4151733511,"978":123.1187502443,"979":136.8936648249,"980":152.6835911526,"981":170.51429446,"982":190.3282545968,"983":212.144376991,"984":235.9041742884,"985":261.6196175012,"986":289.2314828941,"987":318.7447598194,"988":350.0997218897,"989":383.2943571068,"990":418.2686721439,"991":455.0136615928,"992":493.4693019536,"993":533.6196299481,"994":575.4048287887,"995":618.8020403272,"996":663.7518905577,"997":710.2247166725,"998":758.1618217696,"999":807.5268554475,"1000":858.2620295579,"1001":910.3244495636,"1002":963.6574641336,"1003":1018.2118038806,"1004":1073.9321778673},"ydot":{"0":15.6976298823,"1":15.6976298823,"2":15.6976298823,"3":15.6356785087,"4":15.6356785088,"5":15.5120202554,"6":15.5120202554,"7":15.3271431448,"8":15.3271431448,"9":15.0817768025,"10":15.0817768025,"11":14.7768895774,"12":14.7768895774,"13":14.4136847201,"14":14.4136847201,"15":13.9935956342,"16":13.9935956342,"17":13.5182802193,"18":13.5182802193,"19":12.9896143284,"20":12.9896143284,"21":12.4096843641,"22":12.4096843641,"23":11.780779045,"24":11.780779045,"25":11.1053803732,"26":11.1053803732,"27":10.3861538386,"28":10.3861538386,"29":9.6259378998,"30":9.6259378998,"31":8.8277327818,"32":8.8277327818,"33":7.9946886355,"34":7.9946886355,"35":7.1300931055,"36":7.1300931055,"37":6.2373583556,"38":6.2373583556,"39":5.3200076017,"40":5.3200076017,"41":4.3816612084,"42":4.3816612084,"43":3.4260224,"44":3.4260224,"45":2.4568626464,"46":2.4568626464,"47":1.4780067784,"48":1.4780067784,"49":0.4933178929,"50":0.4933178929,"51":-0.4933178929,"52":-0.4933178929,"53":-1.4780067784,"54":-1.4780067784,"55":-2.4568626464,"56":-2.4568626464,"57":-3.4260224,"58":-3.4260224,"59":-4.3816612084,"60":-4.3816612084,"61":-5.3200076017,"62":-5.3200076017,"63":-6.2373583556,"64":-6.2373583556,"65":-7.1300931055,"66":-7.1300931055,"67":-7.9946886355,"68":-7.9946886355,"69":-8.8277327818,"70":-8.8277327818,"71":-9.6259378998,"72":-9.6259378998,"73":-10.3861538386,"74":-10.3861538386,"75":-11.1053803732,"76":-11.1053803732,"77":-11.780779045,"78":-11.780779045,"79":-12.4096843641,"80":-12.4096843641,"81":-12.9896143284,"82":-12.9896143284,"83":-13.5182802193,"84":-13.5182802193,"85":-13.9935956342,"86":-13.9935956342,"87":-14.4136847201,"88":-14.4136847201,"89":-14.7768895774,"90":-14.7768895774,"91":-15.0817768025,"92":-15.0817768025,"93":-15.3271431448,"94":-15.3271431448,"95":-15.5120202554,"96":-15.5120202554,"97":-15.6356785088,"98":-15.6356785087,"99":-15.6976298823,"100":-15.6976298823,"101":-15.6976298823,"102":-15.6976298823,"103":-15.6356785087,"104":-15.6356785088,"105":-15.5120202554,"106":-15.5120202554,"107":-15.3271431448,"108":-15.3271431448,"109":-15.0817768025,"110":-15.0817768025,"111":-14.7768895774,"112":-14.7768895774,"113":-14.4136847201,"114":-14.4136847201,"115":-13.9935956342,"116":-13.9935956342,"117":-13.5182802193,"118":-13.5182802193,"119":-12.9896143284,"120":-12.9896143284,"121":-12.4096843641,"122":-12.4096843641,"123":-11.780779045,"124":-11.780779045,"125":-11.1053803732,"126":-11.1053803732,"127":-10.3861538386,"128":-10.3861538386,"129":-9.6259378998,"130":-9.6259378998,"131":-8.8277327818,"132":-8.8277327818,"133":-7.9946886355,"134":-7.9946886355,"135":-7.1300931055,"136":-7.1300931055,"137":-6.2373583556,"138":-6.2373583556,"139":-5.3200076017,"140":-5.3200076017,"141":-4.3816612084,"142":-4.3816612084,"143":-3.4260224,"144":-3.4260224,"145":-2.4568626464,"146":-2.4568626464,"147":-1.4780067784,"148":-1.4780067784,"149":-0.4933178929,"150":-0.4933178929,"151":0.4933178929,"152":0.4933178929,"153":1.4780067784,"154":1.4780067784,"155":2.4568626464,"156":2.4568626464,"157":3.4260224,"158":3.4260224,"159":4.3816612084,"160":4.3816612084,"161":5.3200076017,"162":5.3200076017,"163":6.2373583556,"164":6.2373583556,"165":7.1300931055,"166":7.1300931055,"167":7.9946886355,"168":7.9946886355,"169":8.8277327818,"170":8.8277327818,"171":9.6259378998,"172":9.6259378998,"173":10.3861538386,"174":10.3861538386,"175":11.1053803732,"176":11.1053803732,"177":11.780779045,"178":11.780779045,"179":12.4096843641,"180":12.4096843641,"181":12.9896143284,"182":12.9896143284,"183":13.5182802193,"184":13.5182802193,"185":13.9935956342,"186":13.9935956342,"187":14.4136847201,"188":14.4136847201,"189":14.7768895774,"190":14.7768895774,"191":15.0817768025,"192":15.0817768025,"193":15.3271431448,"194":15.3271431448,"195":15.5120202554,"196":15.5120202554,"197":15.6356785088,"198":15.6356785087,"199":15.6976298823,"200":15.6976298823,"201":28411.4676679106,"202":28633.5845570844,"203":28844.9589792712,"204":28975.904617419,"205":29164.6124155498,"206":29203.870020059,"207":29369.1664506672,"208":29316.5810897101,"209":29457.8138033004,"210":29313.593007277,"211":29430.2046228401,"212":29194.9175653455,"213":29286.447870122,"214":28961.0231216714,"215":29027.1108873643,"216":28612.832750771,"217":28653.2171591672,"218":28151.7206009562,"219":28166.2422732454,"220":27579.5064712335,"221":27568.1080970038,"222":26898.4486293466,"223":26861.1751927741,"224":26111.2348994523,"225":26048.2335017623,"226":25220.9720545028,"227":25132.4913334204,"228":24231.1735552144,"229":24117.5627037321,"230":23145.7456840757,"231":23007.453072321,"232":21968.9721290054,"233":21806.5435347368,"234":20705.4970776116,"235":20519.5735322864,"236":19360.3068886913,"237":19151.6221476026,"238":17938.7104133677,"239":17708.0880598461,"240":16446.3180434585,"241":16194.6682385722,"242":14889.019569844,"243":14617.3354604014,"244":13272.9609381286,"245":12982.3147371934,"246":11604.5199934314,"247":11296.0587487761,"248":9890.281309919,"249":9565.2223771521,"250":8137.0102045179,"251":7796.6364427418,"252":6351.6260372853,"253":5997.280746236,"254":4541.1749038664,"255":4174.2565225224,"256":2712.8018277654,"257":2334.7584153484,"258":873.7225622142,"259":486.0460833614,"260":-968.8048871286,"261":-1364.5844504632,"262":-2807.5089061825,"263":-3209.829592881,"264":-4635.1329702149,"265":-5042.407004329,"266":-6444.4642820037,"267":-6855.0843389901,"268":-8228.3622374638,"269":-8640.7077875524,"270":-9979.7866063572,"271":-10392.2303100416,"272":-11691.825316846,"273":-12102.7394472553,"274":-13357.721734295,"275":-13765.4846010849,"276":-14970.9013266271,"277":-15373.9036760439,"278":-16524.9976109731,"279":-16921.6489768642,"280":-18013.877279301,"281":-18402.6122599392,"282":-19431.6644037657,"283":-19810.9488397784,"284":-20772.7636263112,"285":-21141.1006553139,"286":-22031.8822409924,"287":-22387.8182050085,"288":-23204.0510818812,"289":-23546.1812642675,"290":-24284.6441340748,"291":-24611.6183033058,"292":-25269.3967904739,"293":-25579.9245288722,"294":-26154.4226822259,"295":-26447.2784786858,"296":-26936.2290164688,"297":-27210.2571029551,"298":-27611.7303607773,"299":-27865.8492736241,"300":-28178.2608199503,"301":-28411.4676679105,"302":-28633.5845570845,"303":-28844.9589792714,"304":-28975.9046174189,"305":-29164.6124155498,"306":-29203.8700200592,"307":-29369.1664506671,"308":-29316.58108971,"309":-29457.8138033004,"310":-29313.5930072768,"311":-29430.2046228398,"312":-29194.9175653457,"313":-29286.447870122,"314":-28961.0231216715,"315":-29027.1108873643,"316":-28612.8327507706,"317":-28653.2171591671,"318":-28151.7206009565,"319":-28166.2422732458,"320":-27579.5064712336,"321":-27568.1080970041,"322":-26898.4486293469,"323":-26861.1751927743,"324":-26111.2348994522,"325":-26048.2335017622,"326":-25220.9720545022,"327":-25132.4913334199,"328":-24231.1735552149,"329":-24117.5627037329,"330":-23145.7456840751,"331":-23007.4530723201,"332":-21968.9721290057,"333":-21806.5435347367,"334":-20705.4970776116,"335":-20519.5735322865,"336":-19360.3068886915,"337":-19151.6221476027,"338":-17938.7104133674,"339":-17708.0880598458,"340":-16446.3180434591,"341":-16194.6682385729,"342":-14889.0195698432,"343":-14617.3354604009,"344":-13272.9609381288,"345":-12982.314737194,"346":-11604.5199934308,"347":-11296.0587487748,"348":-9890.2813099195,"349":-9565.2223771527,"350":-8137.0102045177,"351":-7796.636442742,"352":-6351.6260372853,"353":-5997.2807462361,"354":-4541.1749038658,"355":-4174.2565225218,"356":-2712.8018277661,"357":-2334.7584153492,"358":-873.7225622138,"359":-486.0460833614,"360":968.8048871278,"361":1364.5844504628,"362":2807.5089061833,"363":3209.8295928816,"364":4635.1329702148,"365":5042.4070043289,"366":6444.4642820038,"367":6855.0843389901,"368":8228.362237464,"369":8640.7077875521,"370":9979.7866063572,"371":10392.230310041,"372":11691.8253168457,"373":12102.7394472544,"374":13357.7217342957,"375":13765.4846010854,"376":14970.9013266272,"377":15373.9036760431,"378":16524.9976109728,"379":16921.6489768641,"380":18013.877279301,"381":18402.6122599393,"382":19431.6644037657,"383":19810.9488397786,"384":20772.7636263114,"385":21141.1006553143,"386":22031.8822409921,"387":22387.8182050084,"388":23204.0510818825,"389":23546.181264269,"390":24284.6441340737,"391":24611.6183033046,"392":25269.396790474,"393":25579.924528872,"394":26154.4226822259,"395":26447.2784786856,"396":26936.2290164689,"397":27210.2571029549,"398":27611.7303607774,"399":27865.8492736238,"400":28178.2608199504,"401":28411.4676679106,"402":15.6976298823,"403":15.6976298823,"404":15.6976298823,"405":15.6356785087,"406":15.6356785088,"407":15.5120202554,"408":15.5120202554,"409":15.3271431448,"410":15.3271431448,"411":15.0817768025,"412":15.0817768025,"413":14.7768895774,"414":14.7768895774,"415":14.4136847201,"416":14.4136847201,"417":13.9935956342,"418":13.9935956342,"419":13.5182802193,"420":13.5182802193,"421":12.9896143284,"422":12.9896143284,"423":12.4096843641,"424":12.4096843641,"425":11.780779045,"426":11.780779045,"427":11.1053803732,"428":11.1053803732,"429":10.3861538386,"430":10.3861538386,"431":9.6259378998,"432":9.6259378998,"433":8.8277327818,"434":8.8277327818,"435":7.9946886355,"436":7.9946886355,"437":7.1300931055,"438":7.1300931055,"439":6.2373583556,"440":6.2373583556,"441":5.3200076017,"442":5.3200076017,"443":4.3816612084,"444":4.3816612084,"445":3.4260224,"446":3.4260224,"447":2.4568626464,"448":2.4568626464,"449":1.4780067784,"450":1.4780067784,"451":0.4933178929,"452":0.4933178929,"453":-0.4933178929,"454":-0.4933178929,"455":-1.4780067784,"456":-1.4780067784,"457":-2.4568626464,"458":-2.4568626464,"459":-3.4260224,"460":-3.4260224,"461":-4.3816612084,"462":-4.3816612084,"463":-5.3200076017,"464":-5.3200076017,"465":-6.2373583556,"466":-6.2373583556,"467":-7.1300931055,"468":-7.1300931055,"469":-7.9946886355,"470":-7.9946886355,"471":-8.8277327818,"472":-8.8277327818,"473":-9.6259378998,"474":-9.6259378998,"475":-10.3861538386,"476":-10.3861538386,"477":-11.1053803732,"478":-11.1053803732,"479":-11.780779045,"480":-11.780779045,"481":-12.4096843641,"482":-12.4096843641,"483":-12.9896143284,"484":-12.9896143284,"485":-13.5182802193,"486":-13.5182802193,"487":-13.9935956342,"488":-13.9935956342,"489":-14.4136847201,"490":-14.4136847201,"491":-14.7768895774,"492":-14.7768895774,"493":-15.0817768025,"494":-15.0817768025,"495":-15.3271431448,"496":-15.3271431448,"497":-15.5120202554,"498":-15.5120202554,"499":-15.6356785088,"500":-15.6356785087,"501":-15.6976298823,"502":-15.6976298823,"503":-15.6976298823,"504":-15.6976298823,"505":-15.6356785087,"506":-15.6356785088,"507":-15.5120202554,"508":-15.5120202554,"509":-15.3271431448,"510":-15.3271431448,"511":-15.0817768025,"512":-15.0817768025,"513":-14.7768895774,"514":-14.7768895774,"515":-14.4136847201,"516":-14.4136847201,"517":-13.9935956342,"518":-13.9935956342,"519":-13.5182802193,"520":-13.5182802193,"521":-12.9896143284,"522":-12.9896143284,"523":-12.4096843641,"524":-12.4096843641,"525":-11.780779045,"526":-11.780779045,"527":-11.1053803732,"528":-11.1053803732,"529":-10.3861538386,"530":-10.3861538386,"531":-9.6259378998,"532":-9.6259378998,"533":-8.8277327818,"534":-8.8277327818,"535":-7.9946886355,"536":-7.9946886355,"537":-7.1300931055,"538":-7.1300931055,"539":-6.2373583556,"540":-6.2373583556,"541":-5.3200076017,"542":-5.3200076017,"543":-4.3816612084,"544":-4.3816612084,"545":-3.4260224,"546":-3.4260224,"547":-2.4568626464,"548":-2.4568626464,"549":-1.4780067784,"550":-1.4780067784,"551":-0.4933178929,"552":-0.4933178929,"553":0.4933178929,"554":0.4933178929,"555":1.4780067784,"556":1.4780067784,"557":2.4568626464,"558":2.4568626464,"559":3.4260224,"560":3.4260224,"561":4.3816612084,"562":4.3816612084,"563":5.3200076017,"564":5.3200076017,"565":6.2373583556,"566":6.2373583556,"567":7.1300931055,"568":7.1300931055,"569":7.9946886355,"570":7.9946886355,"571":8.8277327818,"572":8.8277327818,"573":9.6259378998,"574":9.6259378998,"575":10.3861538386,"576":10.3861538386,"577":11.1053803732,"578":11.1053803732,"579":11.780779045,"580":11.780779045,"581":12.4096843641,"582":12.4096843641,"583":12.9896143284,"584":12.9896143284,"585":13.5182802193,"586":13.5182802193,"587":13.9935956342,"588":13.9935956342,"589":14.4136847201,"590":14.4136847201,"591":14.7768895774,"592":14.7768895774,"593":15.0817768025,"594":15.0817768025,"595":15.3271431448,"596":15.3271431448,"597":15.5120202554,"598":15.5120202554,"599":15.6356785088,"600":15.6356785087,"601":15.6976298823,"602":15.6976298823,"603":26841.7046796776,"604":27063.8215688519,"605":27275.1959910382,"606":27412.3367665445,"607":27601.0445646747,"608":27652.6679945239,"609":27817.9644251314,"610":27783.8667752321,"611":27925.0994888219,"612":27805.4153270242,"613":27922.0269425881,"614":27717.228607602,"615":27808.758912379,"616":27519.6546496614,"617":27585.7424153546,"618":27213.4731873547,"619":27253.8575957511,"620":26799.8925790245,"621":26814.4142513132,"622":26280.5450383967,"623":26269.1466641669,"624":25657.4801929415,"625":25620.2067563685,"626":24933.1569949526,"627":24870.1555972623,"628":24110.4340171843,"629":24021.9532961025,"630":23192.5581713549,"631":23078.947319873,"632":22183.1518940966,"633":22044.859282342,"634":21086.1988508286,"635":20923.7702565603,"636":19906.0282140654,"637":19720.1046687401,"638":18647.2975781376,"639":18438.6128370487,"640":17314.974577812,"641":17084.35222429,"642":15914.3172832861,"643":15662.6674783996,"644":14450.8534490069,"645":14179.1693395645,"646":12930.3586981271,"647":12639.7124971925,"648":11358.8337287866,"649":11050.372484131,"650":9742.4806320742,"651":9417.4216993073,"652":8087.6784152247,"653":7747.3046534486,"654":6400.9578265785,"655":6046.6125355293,"656":4688.9755817115,"657":4322.0572003669,"658":2958.4880924101,"659":2580.4446799936,"660":1216.3248022156,"661":828.6483233629,"662":-530.6387662915,"663":-926.4183296263,"664":-2275.5081460103,"665":-2677.8288327086,"666":-4011.397134659,"667":-4418.6711687733,"668":-5731.4549714496,"669":-6142.0750284357,"670":-7428.8933739181,"671":-7841.238924006,"672":-9097.0133281807,"673":-9509.4570318644,"674":-10729.2315268672,"675":-11140.1456572761,"676":-12319.1063504361,"677":-12726.8692172254,"678":-13860.3632893092,"679":-14263.3656387256,"680":-15346.9197064729,"681":-15743.5710723646,"682":-16772.9088428953,"683":-17161.643823534,"684":-18132.7029709286,"685":-18511.9874069418,"686":-19420.935604379,"687":-19789.2726333817,"688":-20632.5226775764,"689":-20988.4586415923,"690":-21762.6826098717,"691":-22104.8127922575,"692":-22806.9551763318,"693":-23133.9293455622,"694":-23761.2191102214,"695":-24071.7468486202,"696":-24621.7083677473,"697":-24914.5641642078,"698":-25385.0269909332,"699":-25659.0550774199,"700":-26048.1625099022,"701":-26302.2814227494,"702":-26608.4978317173,"703":-26841.7046796775,"704":-27063.821568852,"705":-27275.1959910383,"706":-27412.3367665444,"707":-27601.0445646748,"708":-27652.667994524,"709":-27817.9644251314,"710":-27783.866775232,"711":-27925.0994888221,"712":-27805.4153270241,"713":-27922.026942588,"714":-27717.2286076022,"715":-27808.758912379,"716":-27519.6546496615,"717":-27585.7424153549,"718":-27213.4731873543,"719":-27253.8575957508,"720":-26799.8925790248,"721":-26814.4142513136,"722":-26280.545038397,"723":-26269.146664167,"724":-25657.4801929417,"725":-25620.2067563687,"726":-24933.1569949525,"727":-24870.155597262,"728":-24110.434017184,"729":-24021.9532961022,"730":-23192.5581713553,"731":-23078.9473198737,"732":-22183.1518940959,"733":-22044.8592823414,"734":-21086.1988508288,"735":-20923.7702565602,"736":-19906.0282140653,"737":-19720.1046687401,"738":-18647.2975781377,"739":-18438.6128370487,"740":-17314.9745778117,"741":-17084.35222429,"742":-15914.3172832867,"743":-15662.6674784004,"744":-14450.8534490061,"745":-14179.1693395641,"746":-12930.3586981273,"747":-12639.7124971927,"748":-11358.833728786,"749":-11050.3724841302,"750":-9742.4806320747,"751":-9417.4216993079,"752":-8087.6784152245,"753":-7747.3046534488,"754":-6400.9578265785,"755":-6046.6125355294,"756":-4688.9755817106,"757":-4322.0572003667,"758":-2958.4880924108,"759":-2580.444679994,"760":-1216.3248022151,"761":-828.6483233629,"762":530.6387662908,"763":926.4183296259,"764":2275.5081460106,"765":2677.8288327091,"766":4011.3971346589,"767":4418.6711687732,"768":5731.4549714498,"769":6142.075028436,"770":7428.893373918,"771":7841.2389240058,"772":9097.0133281806,"773":9509.4570318642,"774":10729.2315268669,"775":11140.1456572753,"776":12319.1063504365,"777":12726.8692172258,"778":13860.363289309,"779":14263.3656387252,"780":15346.9197064727,"781":15743.5710723643,"782":16772.9088428954,"783":17161.6438235341,"784":18132.7029709285,"785":18511.987406942,"786":19420.9356043792,"787":19789.272633382,"788":20632.5226775763,"789":20988.4586415922,"790":21762.6826098729,"791":22104.8127922588,"792":22806.9551763307,"793":23133.9293455612,"794":23761.2191102215,"795":24071.7468486199,"796":24621.7083677473,"797":24914.5641642077,"798":25385.0269909332,"799":25659.0550774197,"800":26048.1625099023,"801":26302.2814227494,"802":26608.4978317172,"803":26841.7046796776,"804":11144.0747973471,"805":11366.1916865271,"806":11577.5661087078,"807":11776.6582577996,"808":11965.3660559244,"809":12140.647739172,"810":12305.944169774,"811":12456.7236304522,"812":12597.9563440366,"813":12723.6385244989,"814":12840.2501400681,"815":12940.3390301668,"816":13031.869334949,"817":13105.9699295611,"818":13172.0576952596,"819":13219.8775531915,"820":13260.261961588,"821":13281.6123597072,"822":13296.1340319912,"823":13290.9307100305,"824":13279.532335796,"825":13247.7958288899,"826":13210.5223923127,"827":13152.377949955,"828":13089.3765522605,"829":13005.0536440017,"830":12916.5729229239,"831":12806.4043327592,"832":12692.7934812813,"833":12557.2139943049,"834":12418.9213825539,"835":12258.4660690605,"836":12096.037474795,"837":11911.3395786019,"838":11725.4160332771,"839":11517.2044726001,"840":11308.5197315088,"841":11077.6162222551,"842":10846.9938687314,"843":10594.3096815622,"844":10342.6598766742,"845":10069.192240636,"846":9797.5081311958,"847":9504.3362981124,"848":9213.6900971791,"849":8901.9710823383,"850":8593.5098376835,"851":8264.473853626,"852":7939.4149208597,"853":7594.3605222923,"854":7253.986760517,"855":6894.2757195105,"856":6539.9304284618,"857":6166.9823601587,"858":5800.0639788156,"859":5415.3507388577,"860":5037.307326442,"861":4642.3472022287,"862":4254.6707233779,"863":3851.0224420793,"864":3455.2428787427,"865":3044.4994557158,"866":2642.1787690155,"867":2225.9612209001,"868":1818.6871867836,"869":1398.6381340904,"870":988.0180771045,"871":565.7952615425,"872":153.4497114577,"873":-269.2805464155,"874":-681.7242500957,"875":-1103.2936270794,"876":-1514.2077574842,"877":-1932.952511844,"878":-2340.7153786295,"879":-2754.9829161266,"880":-3157.9852655467,"881":-3566.1406614711,"882":-3962.7920273669,"883":-4363.2244788394,"884":-4751.9594594825,"885":-5143.0886425573,"886":-5522.3730785753,"887":-5902.6553850568,"888":-6270.9924140594,"889":-6638.9270434183,"890":-6994.863007429,"891":-7348.9978897766,"892":-7691.1280721572,"893":-8030.0655989017,"894":-8357.0397681268,"895":-8679.4423076961,"896":-8989.9700460999,"897":-9294.565222962,"898":-9587.4210194277,"899":-9873.0067355757,"900":-10147.0348220678,"901":-10412.4840011518,"902":-10666.6029140045,"903":-10910.8679493869,"904":-11144.0747973471,"905":-11366.1916865271,"906":-11577.5661087078,"907":-11776.6582577996,"908":-11965.3660559244,"909":-12140.647739172,"910":-12305.944169774,"911":-12456.7236304522,"912":-12597.9563440366,"913":-12723.6385244989,"914":-12840.2501400681,"915":-12940.3390301668,"916":-13031.869334949,"917":-13105.9699295611,"918":-13172.0576952596,"919":-13219.8775531915,"920":-13260.261961588,"921":-13281.6123597072,"922":-13296.1340319912,"923":-13290.9307100305,"924":-13279.532335796,"925":-13247.79582889,"926":-13210.5223923127,"927":-13152.377949955,"928":-13089.3765522605,"929":-13005.0536440017,"930":-12916.5729229239,"931":-12806.4043327592,"932":-12692.7934812813,"933":-12557.2139943049,"934":-12418.9213825539,"935":-12258.4660690605,"936":-12096.037474795,"937":-11911.3395786019,"938":-11725.4160332771,"939":-11517.2044726001,"940":-11308.5197315088,"941":-11077.616222255,"942":-10846.9938687314,"943":-10594.3096815622,"944":-10342.6598766742,"945":-10069.192240636,"946":-9797.5081311957,"947":-9504.3362981124,"948":-9213.6900971791,"949":-8901.9710823383,"950":-8593.5098376835,"951":-8264.473853626,"952":-7939.4149208597,"953":-7594.3605222923,"954":-7253.986760517,"955":-6894.2757195105,"956":-6539.9304284618,"957":-6166.9823601587,"958":-5800.0639788155,"959":-5415.3507388577,"960":-5037.307326442,"961":-4642.3472022288,"962":-4254.6707233779,"963":-3851.0224420793,"964":-3455.2428787427,"965":-3044.4994557158,"966":-2642.1787690155,"967":-2225.9612209001,"968":-1818.6871867836,"969":-1398.6381340904,"970":-988.0180771045,"971":-565.7952615424,"972":-153.4497114577,"973":269.2805464155,"974":681.7242500957,"975":1103.2936270793,"976":1514.2077574841,"977":1932.952511844,"978":2340.7153786295,"979":2754.9829161266,"980":3157.9852655466,"981":3566.140661471,"982":3962.7920273668,"983":4363.2244788393,"984":4751.9594594825,"985":5143.0886425573,"986":5522.3730785753,"987":5902.6553850568,"988":6270.9924140594,"989":6638.9270434183,"990":6994.863007429,"991":7348.9978897766,"992":7691.1280721573,"993":8030.0655989017,"994":8357.0397681268,"995":8679.4423076962,"996":8989.9700460999,"997":9294.565222962,"998":9587.4210194277,"999":9873.0067355757,"1000":10147.0348220678,"1001":10412.4840011518,"1002":10666.6029140045,"1003":10910.8679493868,"1004":11144.0747973471}} \ No newline at end of file +{ + "name": { + "0": "flow:INFLOW:branch0_seg0", + "1": "flow:INFLOW:branch0_seg0", + "2": "flow:INFLOW:branch0_seg0", + "3": "flow:INFLOW:branch0_seg0", + "4": "flow:INFLOW:branch0_seg0", + "5": "flow:INFLOW:branch0_seg0", + "6": "flow:INFLOW:branch0_seg0", + "7": "flow:INFLOW:branch0_seg0", + "8": "flow:INFLOW:branch0_seg0", + "9": "flow:INFLOW:branch0_seg0", + "10": "flow:INFLOW:branch0_seg0", + "11": "flow:INFLOW:branch0_seg0", + "12": "flow:INFLOW:branch0_seg0", + "13": "flow:INFLOW:branch0_seg0", + "14": "flow:INFLOW:branch0_seg0", + "15": "flow:INFLOW:branch0_seg0", + "16": "flow:INFLOW:branch0_seg0", + "17": "flow:INFLOW:branch0_seg0", + "18": "flow:INFLOW:branch0_seg0", + "19": "flow:INFLOW:branch0_seg0", + "20": "flow:INFLOW:branch0_seg0", + "21": "flow:INFLOW:branch0_seg0", + "22": "flow:INFLOW:branch0_seg0", + "23": "flow:INFLOW:branch0_seg0", + "24": "flow:INFLOW:branch0_seg0", + "25": "flow:INFLOW:branch0_seg0", + "26": "flow:INFLOW:branch0_seg0", + "27": "flow:INFLOW:branch0_seg0", + "28": "flow:INFLOW:branch0_seg0", + "29": "flow:INFLOW:branch0_seg0", + "30": "flow:INFLOW:branch0_seg0", + "31": "flow:INFLOW:branch0_seg0", + "32": "flow:INFLOW:branch0_seg0", + "33": "flow:INFLOW:branch0_seg0", + "34": "flow:INFLOW:branch0_seg0", + "35": "flow:INFLOW:branch0_seg0", + "36": "flow:INFLOW:branch0_seg0", + "37": "flow:INFLOW:branch0_seg0", + "38": "flow:INFLOW:branch0_seg0", + "39": "flow:INFLOW:branch0_seg0", + "40": "flow:INFLOW:branch0_seg0", + "41": "flow:INFLOW:branch0_seg0", + "42": "flow:INFLOW:branch0_seg0", + "43": "flow:INFLOW:branch0_seg0", + "44": "flow:INFLOW:branch0_seg0", + "45": "flow:INFLOW:branch0_seg0", + "46": "flow:INFLOW:branch0_seg0", + "47": "flow:INFLOW:branch0_seg0", + "48": "flow:INFLOW:branch0_seg0", + "49": "flow:INFLOW:branch0_seg0", + "50": "flow:INFLOW:branch0_seg0", + "51": "flow:INFLOW:branch0_seg0", + "52": "flow:INFLOW:branch0_seg0", + "53": "flow:INFLOW:branch0_seg0", + "54": "flow:INFLOW:branch0_seg0", + "55": "flow:INFLOW:branch0_seg0", + "56": "flow:INFLOW:branch0_seg0", + "57": "flow:INFLOW:branch0_seg0", + "58": "flow:INFLOW:branch0_seg0", + "59": "flow:INFLOW:branch0_seg0", + "60": "flow:INFLOW:branch0_seg0", + "61": "flow:INFLOW:branch0_seg0", + "62": "flow:INFLOW:branch0_seg0", + "63": "flow:INFLOW:branch0_seg0", + "64": "flow:INFLOW:branch0_seg0", + "65": "flow:INFLOW:branch0_seg0", + "66": "flow:INFLOW:branch0_seg0", + "67": "flow:INFLOW:branch0_seg0", + "68": "flow:INFLOW:branch0_seg0", + "69": "flow:INFLOW:branch0_seg0", + "70": "flow:INFLOW:branch0_seg0", + "71": "flow:INFLOW:branch0_seg0", + "72": "flow:INFLOW:branch0_seg0", + "73": "flow:INFLOW:branch0_seg0", + "74": "flow:INFLOW:branch0_seg0", + "75": "flow:INFLOW:branch0_seg0", + "76": "flow:INFLOW:branch0_seg0", + "77": "flow:INFLOW:branch0_seg0", + "78": "flow:INFLOW:branch0_seg0", + "79": "flow:INFLOW:branch0_seg0", + "80": "flow:INFLOW:branch0_seg0", + "81": "flow:INFLOW:branch0_seg0", + "82": "flow:INFLOW:branch0_seg0", + "83": "flow:INFLOW:branch0_seg0", + "84": "flow:INFLOW:branch0_seg0", + "85": "flow:INFLOW:branch0_seg0", + "86": "flow:INFLOW:branch0_seg0", + "87": "flow:INFLOW:branch0_seg0", + "88": "flow:INFLOW:branch0_seg0", + "89": "flow:INFLOW:branch0_seg0", + "90": "flow:INFLOW:branch0_seg0", + "91": "flow:INFLOW:branch0_seg0", + "92": "flow:INFLOW:branch0_seg0", + "93": "flow:INFLOW:branch0_seg0", + "94": "flow:INFLOW:branch0_seg0", + "95": "flow:INFLOW:branch0_seg0", + "96": "flow:INFLOW:branch0_seg0", + "97": "flow:INFLOW:branch0_seg0", + "98": "flow:INFLOW:branch0_seg0", + "99": "flow:INFLOW:branch0_seg0", + "100": "flow:INFLOW:branch0_seg0", + "101": "flow:INFLOW:branch0_seg0", + "102": "flow:INFLOW:branch0_seg0", + "103": "flow:INFLOW:branch0_seg0", + "104": "flow:INFLOW:branch0_seg0", + "105": "flow:INFLOW:branch0_seg0", + "106": "flow:INFLOW:branch0_seg0", + "107": "flow:INFLOW:branch0_seg0", + "108": "flow:INFLOW:branch0_seg0", + "109": "flow:INFLOW:branch0_seg0", + "110": "flow:INFLOW:branch0_seg0", + "111": "flow:INFLOW:branch0_seg0", + "112": "flow:INFLOW:branch0_seg0", + "113": "flow:INFLOW:branch0_seg0", + "114": "flow:INFLOW:branch0_seg0", + "115": "flow:INFLOW:branch0_seg0", + "116": "flow:INFLOW:branch0_seg0", + "117": "flow:INFLOW:branch0_seg0", + "118": "flow:INFLOW:branch0_seg0", + "119": "flow:INFLOW:branch0_seg0", + "120": "flow:INFLOW:branch0_seg0", + "121": "flow:INFLOW:branch0_seg0", + "122": "flow:INFLOW:branch0_seg0", + "123": "flow:INFLOW:branch0_seg0", + "124": "flow:INFLOW:branch0_seg0", + "125": "flow:INFLOW:branch0_seg0", + "126": "flow:INFLOW:branch0_seg0", + "127": "flow:INFLOW:branch0_seg0", + "128": "flow:INFLOW:branch0_seg0", + "129": "flow:INFLOW:branch0_seg0", + "130": "flow:INFLOW:branch0_seg0", + "131": "flow:INFLOW:branch0_seg0", + "132": "flow:INFLOW:branch0_seg0", + "133": "flow:INFLOW:branch0_seg0", + "134": "flow:INFLOW:branch0_seg0", + "135": "flow:INFLOW:branch0_seg0", + "136": "flow:INFLOW:branch0_seg0", + "137": "flow:INFLOW:branch0_seg0", + "138": "flow:INFLOW:branch0_seg0", + "139": "flow:INFLOW:branch0_seg0", + "140": "flow:INFLOW:branch0_seg0", + "141": "flow:INFLOW:branch0_seg0", + "142": "flow:INFLOW:branch0_seg0", + "143": "flow:INFLOW:branch0_seg0", + "144": "flow:INFLOW:branch0_seg0", + "145": "flow:INFLOW:branch0_seg0", + "146": "flow:INFLOW:branch0_seg0", + "147": "flow:INFLOW:branch0_seg0", + "148": "flow:INFLOW:branch0_seg0", + "149": "flow:INFLOW:branch0_seg0", + "150": "flow:INFLOW:branch0_seg0", + "151": "flow:INFLOW:branch0_seg0", + "152": "flow:INFLOW:branch0_seg0", + "153": "flow:INFLOW:branch0_seg0", + "154": "flow:INFLOW:branch0_seg0", + "155": "flow:INFLOW:branch0_seg0", + "156": "flow:INFLOW:branch0_seg0", + "157": "flow:INFLOW:branch0_seg0", + "158": "flow:INFLOW:branch0_seg0", + "159": "flow:INFLOW:branch0_seg0", + "160": "flow:INFLOW:branch0_seg0", + "161": "flow:INFLOW:branch0_seg0", + "162": "flow:INFLOW:branch0_seg0", + "163": "flow:INFLOW:branch0_seg0", + "164": "flow:INFLOW:branch0_seg0", + "165": "flow:INFLOW:branch0_seg0", + "166": "flow:INFLOW:branch0_seg0", + "167": "flow:INFLOW:branch0_seg0", + "168": "flow:INFLOW:branch0_seg0", + "169": "flow:INFLOW:branch0_seg0", + "170": "flow:INFLOW:branch0_seg0", + "171": "flow:INFLOW:branch0_seg0", + "172": "flow:INFLOW:branch0_seg0", + "173": "flow:INFLOW:branch0_seg0", + "174": "flow:INFLOW:branch0_seg0", + "175": "flow:INFLOW:branch0_seg0", + "176": "flow:INFLOW:branch0_seg0", + "177": "flow:INFLOW:branch0_seg0", + "178": "flow:INFLOW:branch0_seg0", + "179": "flow:INFLOW:branch0_seg0", + "180": "flow:INFLOW:branch0_seg0", + "181": "flow:INFLOW:branch0_seg0", + "182": "flow:INFLOW:branch0_seg0", + "183": "flow:INFLOW:branch0_seg0", + "184": "flow:INFLOW:branch0_seg0", + "185": "flow:INFLOW:branch0_seg0", + "186": "flow:INFLOW:branch0_seg0", + "187": "flow:INFLOW:branch0_seg0", + "188": "flow:INFLOW:branch0_seg0", + "189": "flow:INFLOW:branch0_seg0", + "190": "flow:INFLOW:branch0_seg0", + "191": "flow:INFLOW:branch0_seg0", + "192": "flow:INFLOW:branch0_seg0", + "193": "flow:INFLOW:branch0_seg0", + "194": "flow:INFLOW:branch0_seg0", + "195": "flow:INFLOW:branch0_seg0", + "196": "flow:INFLOW:branch0_seg0", + "197": "flow:INFLOW:branch0_seg0", + "198": "flow:INFLOW:branch0_seg0", + "199": "flow:INFLOW:branch0_seg0", + "200": "flow:INFLOW:branch0_seg0", + "201": "pressure:INFLOW:branch0_seg0", + "202": "pressure:INFLOW:branch0_seg0", + "203": "pressure:INFLOW:branch0_seg0", + "204": "pressure:INFLOW:branch0_seg0", + "205": "pressure:INFLOW:branch0_seg0", + "206": "pressure:INFLOW:branch0_seg0", + "207": "pressure:INFLOW:branch0_seg0", + "208": "pressure:INFLOW:branch0_seg0", + "209": "pressure:INFLOW:branch0_seg0", + "210": "pressure:INFLOW:branch0_seg0", + "211": "pressure:INFLOW:branch0_seg0", + "212": "pressure:INFLOW:branch0_seg0", + "213": "pressure:INFLOW:branch0_seg0", + "214": "pressure:INFLOW:branch0_seg0", + "215": "pressure:INFLOW:branch0_seg0", + "216": "pressure:INFLOW:branch0_seg0", + "217": "pressure:INFLOW:branch0_seg0", + "218": "pressure:INFLOW:branch0_seg0", + "219": "pressure:INFLOW:branch0_seg0", + "220": "pressure:INFLOW:branch0_seg0", + "221": "pressure:INFLOW:branch0_seg0", + "222": "pressure:INFLOW:branch0_seg0", + "223": "pressure:INFLOW:branch0_seg0", + "224": "pressure:INFLOW:branch0_seg0", + "225": "pressure:INFLOW:branch0_seg0", + "226": "pressure:INFLOW:branch0_seg0", + "227": "pressure:INFLOW:branch0_seg0", + "228": "pressure:INFLOW:branch0_seg0", + "229": "pressure:INFLOW:branch0_seg0", + "230": "pressure:INFLOW:branch0_seg0", + "231": "pressure:INFLOW:branch0_seg0", + "232": "pressure:INFLOW:branch0_seg0", + "233": "pressure:INFLOW:branch0_seg0", + "234": "pressure:INFLOW:branch0_seg0", + "235": "pressure:INFLOW:branch0_seg0", + "236": "pressure:INFLOW:branch0_seg0", + "237": "pressure:INFLOW:branch0_seg0", + "238": "pressure:INFLOW:branch0_seg0", + "239": "pressure:INFLOW:branch0_seg0", + "240": "pressure:INFLOW:branch0_seg0", + "241": "pressure:INFLOW:branch0_seg0", + "242": "pressure:INFLOW:branch0_seg0", + "243": "pressure:INFLOW:branch0_seg0", + "244": "pressure:INFLOW:branch0_seg0", + "245": "pressure:INFLOW:branch0_seg0", + "246": "pressure:INFLOW:branch0_seg0", + "247": "pressure:INFLOW:branch0_seg0", + "248": "pressure:INFLOW:branch0_seg0", + "249": "pressure:INFLOW:branch0_seg0", + "250": "pressure:INFLOW:branch0_seg0", + "251": "pressure:INFLOW:branch0_seg0", + "252": "pressure:INFLOW:branch0_seg0", + "253": "pressure:INFLOW:branch0_seg0", + "254": "pressure:INFLOW:branch0_seg0", + "255": "pressure:INFLOW:branch0_seg0", + "256": "pressure:INFLOW:branch0_seg0", + "257": "pressure:INFLOW:branch0_seg0", + "258": "pressure:INFLOW:branch0_seg0", + "259": "pressure:INFLOW:branch0_seg0", + "260": "pressure:INFLOW:branch0_seg0", + "261": "pressure:INFLOW:branch0_seg0", + "262": "pressure:INFLOW:branch0_seg0", + "263": "pressure:INFLOW:branch0_seg0", + "264": "pressure:INFLOW:branch0_seg0", + "265": "pressure:INFLOW:branch0_seg0", + "266": "pressure:INFLOW:branch0_seg0", + "267": "pressure:INFLOW:branch0_seg0", + "268": "pressure:INFLOW:branch0_seg0", + "269": "pressure:INFLOW:branch0_seg0", + "270": "pressure:INFLOW:branch0_seg0", + "271": "pressure:INFLOW:branch0_seg0", + "272": "pressure:INFLOW:branch0_seg0", + "273": "pressure:INFLOW:branch0_seg0", + "274": "pressure:INFLOW:branch0_seg0", + "275": "pressure:INFLOW:branch0_seg0", + "276": "pressure:INFLOW:branch0_seg0", + "277": "pressure:INFLOW:branch0_seg0", + "278": "pressure:INFLOW:branch0_seg0", + "279": "pressure:INFLOW:branch0_seg0", + "280": "pressure:INFLOW:branch0_seg0", + "281": "pressure:INFLOW:branch0_seg0", + "282": "pressure:INFLOW:branch0_seg0", + "283": "pressure:INFLOW:branch0_seg0", + "284": "pressure:INFLOW:branch0_seg0", + "285": "pressure:INFLOW:branch0_seg0", + "286": "pressure:INFLOW:branch0_seg0", + "287": "pressure:INFLOW:branch0_seg0", + "288": "pressure:INFLOW:branch0_seg0", + "289": "pressure:INFLOW:branch0_seg0", + "290": "pressure:INFLOW:branch0_seg0", + "291": "pressure:INFLOW:branch0_seg0", + "292": "pressure:INFLOW:branch0_seg0", + "293": "pressure:INFLOW:branch0_seg0", + "294": "pressure:INFLOW:branch0_seg0", + "295": "pressure:INFLOW:branch0_seg0", + "296": "pressure:INFLOW:branch0_seg0", + "297": "pressure:INFLOW:branch0_seg0", + "298": "pressure:INFLOW:branch0_seg0", + "299": "pressure:INFLOW:branch0_seg0", + "300": "pressure:INFLOW:branch0_seg0", + "301": "pressure:INFLOW:branch0_seg0", + "302": "pressure:INFLOW:branch0_seg0", + "303": "pressure:INFLOW:branch0_seg0", + "304": "pressure:INFLOW:branch0_seg0", + "305": "pressure:INFLOW:branch0_seg0", + "306": "pressure:INFLOW:branch0_seg0", + "307": "pressure:INFLOW:branch0_seg0", + "308": "pressure:INFLOW:branch0_seg0", + "309": "pressure:INFLOW:branch0_seg0", + "310": "pressure:INFLOW:branch0_seg0", + "311": "pressure:INFLOW:branch0_seg0", + "312": "pressure:INFLOW:branch0_seg0", + "313": "pressure:INFLOW:branch0_seg0", + "314": "pressure:INFLOW:branch0_seg0", + "315": "pressure:INFLOW:branch0_seg0", + "316": "pressure:INFLOW:branch0_seg0", + "317": "pressure:INFLOW:branch0_seg0", + "318": "pressure:INFLOW:branch0_seg0", + "319": "pressure:INFLOW:branch0_seg0", + "320": "pressure:INFLOW:branch0_seg0", + "321": "pressure:INFLOW:branch0_seg0", + "322": "pressure:INFLOW:branch0_seg0", + "323": "pressure:INFLOW:branch0_seg0", + "324": "pressure:INFLOW:branch0_seg0", + "325": "pressure:INFLOW:branch0_seg0", + "326": "pressure:INFLOW:branch0_seg0", + "327": "pressure:INFLOW:branch0_seg0", + "328": "pressure:INFLOW:branch0_seg0", + "329": "pressure:INFLOW:branch0_seg0", + "330": "pressure:INFLOW:branch0_seg0", + "331": "pressure:INFLOW:branch0_seg0", + "332": "pressure:INFLOW:branch0_seg0", + "333": "pressure:INFLOW:branch0_seg0", + "334": "pressure:INFLOW:branch0_seg0", + "335": "pressure:INFLOW:branch0_seg0", + "336": "pressure:INFLOW:branch0_seg0", + "337": "pressure:INFLOW:branch0_seg0", + "338": "pressure:INFLOW:branch0_seg0", + "339": "pressure:INFLOW:branch0_seg0", + "340": "pressure:INFLOW:branch0_seg0", + "341": "pressure:INFLOW:branch0_seg0", + "342": "pressure:INFLOW:branch0_seg0", + "343": "pressure:INFLOW:branch0_seg0", + "344": "pressure:INFLOW:branch0_seg0", + "345": "pressure:INFLOW:branch0_seg0", + "346": "pressure:INFLOW:branch0_seg0", + "347": "pressure:INFLOW:branch0_seg0", + "348": "pressure:INFLOW:branch0_seg0", + "349": "pressure:INFLOW:branch0_seg0", + "350": "pressure:INFLOW:branch0_seg0", + "351": "pressure:INFLOW:branch0_seg0", + "352": "pressure:INFLOW:branch0_seg0", + "353": "pressure:INFLOW:branch0_seg0", + "354": "pressure:INFLOW:branch0_seg0", + "355": "pressure:INFLOW:branch0_seg0", + "356": "pressure:INFLOW:branch0_seg0", + "357": "pressure:INFLOW:branch0_seg0", + "358": "pressure:INFLOW:branch0_seg0", + "359": "pressure:INFLOW:branch0_seg0", + "360": "pressure:INFLOW:branch0_seg0", + "361": "pressure:INFLOW:branch0_seg0", + "362": "pressure:INFLOW:branch0_seg0", + "363": "pressure:INFLOW:branch0_seg0", + "364": "pressure:INFLOW:branch0_seg0", + "365": "pressure:INFLOW:branch0_seg0", + "366": "pressure:INFLOW:branch0_seg0", + "367": "pressure:INFLOW:branch0_seg0", + "368": "pressure:INFLOW:branch0_seg0", + "369": "pressure:INFLOW:branch0_seg0", + "370": "pressure:INFLOW:branch0_seg0", + "371": "pressure:INFLOW:branch0_seg0", + "372": "pressure:INFLOW:branch0_seg0", + "373": "pressure:INFLOW:branch0_seg0", + "374": "pressure:INFLOW:branch0_seg0", + "375": "pressure:INFLOW:branch0_seg0", + "376": "pressure:INFLOW:branch0_seg0", + "377": "pressure:INFLOW:branch0_seg0", + "378": "pressure:INFLOW:branch0_seg0", + "379": "pressure:INFLOW:branch0_seg0", + "380": "pressure:INFLOW:branch0_seg0", + "381": "pressure:INFLOW:branch0_seg0", + "382": "pressure:INFLOW:branch0_seg0", + "383": "pressure:INFLOW:branch0_seg0", + "384": "pressure:INFLOW:branch0_seg0", + "385": "pressure:INFLOW:branch0_seg0", + "386": "pressure:INFLOW:branch0_seg0", + "387": "pressure:INFLOW:branch0_seg0", + "388": "pressure:INFLOW:branch0_seg0", + "389": "pressure:INFLOW:branch0_seg0", + "390": "pressure:INFLOW:branch0_seg0", + "391": "pressure:INFLOW:branch0_seg0", + "392": "pressure:INFLOW:branch0_seg0", + "393": "pressure:INFLOW:branch0_seg0", + "394": "pressure:INFLOW:branch0_seg0", + "395": "pressure:INFLOW:branch0_seg0", + "396": "pressure:INFLOW:branch0_seg0", + "397": "pressure:INFLOW:branch0_seg0", + "398": "pressure:INFLOW:branch0_seg0", + "399": "pressure:INFLOW:branch0_seg0", + "400": "pressure:INFLOW:branch0_seg0", + "401": "pressure:INFLOW:branch0_seg0", + "402": "flow:branch0_seg0:OUT", + "403": "flow:branch0_seg0:OUT", + "404": "flow:branch0_seg0:OUT", + "405": "flow:branch0_seg0:OUT", + "406": "flow:branch0_seg0:OUT", + "407": "flow:branch0_seg0:OUT", + "408": "flow:branch0_seg0:OUT", + "409": "flow:branch0_seg0:OUT", + "410": "flow:branch0_seg0:OUT", + "411": "flow:branch0_seg0:OUT", + "412": "flow:branch0_seg0:OUT", + "413": "flow:branch0_seg0:OUT", + "414": "flow:branch0_seg0:OUT", + "415": "flow:branch0_seg0:OUT", + "416": "flow:branch0_seg0:OUT", + "417": "flow:branch0_seg0:OUT", + "418": "flow:branch0_seg0:OUT", + "419": "flow:branch0_seg0:OUT", + "420": "flow:branch0_seg0:OUT", + "421": "flow:branch0_seg0:OUT", + "422": "flow:branch0_seg0:OUT", + "423": "flow:branch0_seg0:OUT", + "424": "flow:branch0_seg0:OUT", + "425": "flow:branch0_seg0:OUT", + "426": "flow:branch0_seg0:OUT", + "427": "flow:branch0_seg0:OUT", + "428": "flow:branch0_seg0:OUT", + "429": "flow:branch0_seg0:OUT", + "430": "flow:branch0_seg0:OUT", + "431": "flow:branch0_seg0:OUT", + "432": "flow:branch0_seg0:OUT", + "433": "flow:branch0_seg0:OUT", + "434": "flow:branch0_seg0:OUT", + "435": "flow:branch0_seg0:OUT", + "436": "flow:branch0_seg0:OUT", + "437": "flow:branch0_seg0:OUT", + "438": "flow:branch0_seg0:OUT", + "439": "flow:branch0_seg0:OUT", + "440": "flow:branch0_seg0:OUT", + "441": "flow:branch0_seg0:OUT", + "442": "flow:branch0_seg0:OUT", + "443": "flow:branch0_seg0:OUT", + "444": "flow:branch0_seg0:OUT", + "445": "flow:branch0_seg0:OUT", + "446": "flow:branch0_seg0:OUT", + "447": "flow:branch0_seg0:OUT", + "448": "flow:branch0_seg0:OUT", + "449": "flow:branch0_seg0:OUT", + "450": "flow:branch0_seg0:OUT", + "451": "flow:branch0_seg0:OUT", + "452": "flow:branch0_seg0:OUT", + "453": "flow:branch0_seg0:OUT", + "454": "flow:branch0_seg0:OUT", + "455": "flow:branch0_seg0:OUT", + "456": "flow:branch0_seg0:OUT", + "457": "flow:branch0_seg0:OUT", + "458": "flow:branch0_seg0:OUT", + "459": "flow:branch0_seg0:OUT", + "460": "flow:branch0_seg0:OUT", + "461": "flow:branch0_seg0:OUT", + "462": "flow:branch0_seg0:OUT", + "463": "flow:branch0_seg0:OUT", + "464": "flow:branch0_seg0:OUT", + "465": "flow:branch0_seg0:OUT", + "466": "flow:branch0_seg0:OUT", + "467": "flow:branch0_seg0:OUT", + "468": "flow:branch0_seg0:OUT", + "469": "flow:branch0_seg0:OUT", + "470": "flow:branch0_seg0:OUT", + "471": "flow:branch0_seg0:OUT", + "472": "flow:branch0_seg0:OUT", + "473": "flow:branch0_seg0:OUT", + "474": "flow:branch0_seg0:OUT", + "475": "flow:branch0_seg0:OUT", + "476": "flow:branch0_seg0:OUT", + "477": "flow:branch0_seg0:OUT", + "478": "flow:branch0_seg0:OUT", + "479": "flow:branch0_seg0:OUT", + "480": "flow:branch0_seg0:OUT", + "481": "flow:branch0_seg0:OUT", + "482": "flow:branch0_seg0:OUT", + "483": "flow:branch0_seg0:OUT", + "484": "flow:branch0_seg0:OUT", + "485": "flow:branch0_seg0:OUT", + "486": "flow:branch0_seg0:OUT", + "487": "flow:branch0_seg0:OUT", + "488": "flow:branch0_seg0:OUT", + "489": "flow:branch0_seg0:OUT", + "490": "flow:branch0_seg0:OUT", + "491": "flow:branch0_seg0:OUT", + "492": "flow:branch0_seg0:OUT", + "493": "flow:branch0_seg0:OUT", + "494": "flow:branch0_seg0:OUT", + "495": "flow:branch0_seg0:OUT", + "496": "flow:branch0_seg0:OUT", + "497": "flow:branch0_seg0:OUT", + "498": "flow:branch0_seg0:OUT", + "499": "flow:branch0_seg0:OUT", + "500": "flow:branch0_seg0:OUT", + "501": "flow:branch0_seg0:OUT", + "502": "flow:branch0_seg0:OUT", + "503": "flow:branch0_seg0:OUT", + "504": "flow:branch0_seg0:OUT", + "505": "flow:branch0_seg0:OUT", + "506": "flow:branch0_seg0:OUT", + "507": "flow:branch0_seg0:OUT", + "508": "flow:branch0_seg0:OUT", + "509": "flow:branch0_seg0:OUT", + "510": "flow:branch0_seg0:OUT", + "511": "flow:branch0_seg0:OUT", + "512": "flow:branch0_seg0:OUT", + "513": "flow:branch0_seg0:OUT", + "514": "flow:branch0_seg0:OUT", + "515": "flow:branch0_seg0:OUT", + "516": "flow:branch0_seg0:OUT", + "517": "flow:branch0_seg0:OUT", + "518": "flow:branch0_seg0:OUT", + "519": "flow:branch0_seg0:OUT", + "520": "flow:branch0_seg0:OUT", + "521": "flow:branch0_seg0:OUT", + "522": "flow:branch0_seg0:OUT", + "523": "flow:branch0_seg0:OUT", + "524": "flow:branch0_seg0:OUT", + "525": "flow:branch0_seg0:OUT", + "526": "flow:branch0_seg0:OUT", + "527": "flow:branch0_seg0:OUT", + "528": "flow:branch0_seg0:OUT", + "529": "flow:branch0_seg0:OUT", + "530": "flow:branch0_seg0:OUT", + "531": "flow:branch0_seg0:OUT", + "532": "flow:branch0_seg0:OUT", + "533": "flow:branch0_seg0:OUT", + "534": "flow:branch0_seg0:OUT", + "535": "flow:branch0_seg0:OUT", + "536": "flow:branch0_seg0:OUT", + "537": "flow:branch0_seg0:OUT", + "538": "flow:branch0_seg0:OUT", + "539": "flow:branch0_seg0:OUT", + "540": "flow:branch0_seg0:OUT", + "541": "flow:branch0_seg0:OUT", + "542": "flow:branch0_seg0:OUT", + "543": "flow:branch0_seg0:OUT", + "544": "flow:branch0_seg0:OUT", + "545": "flow:branch0_seg0:OUT", + "546": "flow:branch0_seg0:OUT", + "547": "flow:branch0_seg0:OUT", + "548": "flow:branch0_seg0:OUT", + "549": "flow:branch0_seg0:OUT", + "550": "flow:branch0_seg0:OUT", + "551": "flow:branch0_seg0:OUT", + "552": "flow:branch0_seg0:OUT", + "553": "flow:branch0_seg0:OUT", + "554": "flow:branch0_seg0:OUT", + "555": "flow:branch0_seg0:OUT", + "556": "flow:branch0_seg0:OUT", + "557": "flow:branch0_seg0:OUT", + "558": "flow:branch0_seg0:OUT", + "559": "flow:branch0_seg0:OUT", + "560": "flow:branch0_seg0:OUT", + "561": "flow:branch0_seg0:OUT", + "562": "flow:branch0_seg0:OUT", + "563": "flow:branch0_seg0:OUT", + "564": "flow:branch0_seg0:OUT", + "565": "flow:branch0_seg0:OUT", + "566": "flow:branch0_seg0:OUT", + "567": "flow:branch0_seg0:OUT", + "568": "flow:branch0_seg0:OUT", + "569": "flow:branch0_seg0:OUT", + "570": "flow:branch0_seg0:OUT", + "571": "flow:branch0_seg0:OUT", + "572": "flow:branch0_seg0:OUT", + "573": "flow:branch0_seg0:OUT", + "574": "flow:branch0_seg0:OUT", + "575": "flow:branch0_seg0:OUT", + "576": "flow:branch0_seg0:OUT", + "577": "flow:branch0_seg0:OUT", + "578": "flow:branch0_seg0:OUT", + "579": "flow:branch0_seg0:OUT", + "580": "flow:branch0_seg0:OUT", + "581": "flow:branch0_seg0:OUT", + "582": "flow:branch0_seg0:OUT", + "583": "flow:branch0_seg0:OUT", + "584": "flow:branch0_seg0:OUT", + "585": "flow:branch0_seg0:OUT", + "586": "flow:branch0_seg0:OUT", + "587": "flow:branch0_seg0:OUT", + "588": "flow:branch0_seg0:OUT", + "589": "flow:branch0_seg0:OUT", + "590": "flow:branch0_seg0:OUT", + "591": "flow:branch0_seg0:OUT", + "592": "flow:branch0_seg0:OUT", + "593": "flow:branch0_seg0:OUT", + "594": "flow:branch0_seg0:OUT", + "595": "flow:branch0_seg0:OUT", + "596": "flow:branch0_seg0:OUT", + "597": "flow:branch0_seg0:OUT", + "598": "flow:branch0_seg0:OUT", + "599": "flow:branch0_seg0:OUT", + "600": "flow:branch0_seg0:OUT", + "601": "flow:branch0_seg0:OUT", + "602": "flow:branch0_seg0:OUT", + "603": "pressure:branch0_seg0:OUT", + "604": "pressure:branch0_seg0:OUT", + "605": "pressure:branch0_seg0:OUT", + "606": "pressure:branch0_seg0:OUT", + "607": "pressure:branch0_seg0:OUT", + "608": "pressure:branch0_seg0:OUT", + "609": "pressure:branch0_seg0:OUT", + "610": "pressure:branch0_seg0:OUT", + "611": "pressure:branch0_seg0:OUT", + "612": "pressure:branch0_seg0:OUT", + "613": "pressure:branch0_seg0:OUT", + "614": "pressure:branch0_seg0:OUT", + "615": "pressure:branch0_seg0:OUT", + "616": "pressure:branch0_seg0:OUT", + "617": "pressure:branch0_seg0:OUT", + "618": "pressure:branch0_seg0:OUT", + "619": "pressure:branch0_seg0:OUT", + "620": "pressure:branch0_seg0:OUT", + "621": "pressure:branch0_seg0:OUT", + "622": "pressure:branch0_seg0:OUT", + "623": "pressure:branch0_seg0:OUT", + "624": "pressure:branch0_seg0:OUT", + "625": "pressure:branch0_seg0:OUT", + "626": "pressure:branch0_seg0:OUT", + "627": "pressure:branch0_seg0:OUT", + "628": "pressure:branch0_seg0:OUT", + "629": "pressure:branch0_seg0:OUT", + "630": "pressure:branch0_seg0:OUT", + "631": "pressure:branch0_seg0:OUT", + "632": "pressure:branch0_seg0:OUT", + "633": "pressure:branch0_seg0:OUT", + "634": "pressure:branch0_seg0:OUT", + "635": "pressure:branch0_seg0:OUT", + "636": "pressure:branch0_seg0:OUT", + "637": "pressure:branch0_seg0:OUT", + "638": "pressure:branch0_seg0:OUT", + "639": "pressure:branch0_seg0:OUT", + "640": "pressure:branch0_seg0:OUT", + "641": "pressure:branch0_seg0:OUT", + "642": "pressure:branch0_seg0:OUT", + "643": "pressure:branch0_seg0:OUT", + "644": "pressure:branch0_seg0:OUT", + "645": "pressure:branch0_seg0:OUT", + "646": "pressure:branch0_seg0:OUT", + "647": "pressure:branch0_seg0:OUT", + "648": "pressure:branch0_seg0:OUT", + "649": "pressure:branch0_seg0:OUT", + "650": "pressure:branch0_seg0:OUT", + "651": "pressure:branch0_seg0:OUT", + "652": "pressure:branch0_seg0:OUT", + "653": "pressure:branch0_seg0:OUT", + "654": "pressure:branch0_seg0:OUT", + "655": "pressure:branch0_seg0:OUT", + "656": "pressure:branch0_seg0:OUT", + "657": "pressure:branch0_seg0:OUT", + "658": "pressure:branch0_seg0:OUT", + "659": "pressure:branch0_seg0:OUT", + "660": "pressure:branch0_seg0:OUT", + "661": "pressure:branch0_seg0:OUT", + "662": "pressure:branch0_seg0:OUT", + "663": "pressure:branch0_seg0:OUT", + "664": "pressure:branch0_seg0:OUT", + "665": "pressure:branch0_seg0:OUT", + "666": "pressure:branch0_seg0:OUT", + "667": "pressure:branch0_seg0:OUT", + "668": "pressure:branch0_seg0:OUT", + "669": "pressure:branch0_seg0:OUT", + "670": "pressure:branch0_seg0:OUT", + "671": "pressure:branch0_seg0:OUT", + "672": "pressure:branch0_seg0:OUT", + "673": "pressure:branch0_seg0:OUT", + "674": "pressure:branch0_seg0:OUT", + "675": "pressure:branch0_seg0:OUT", + "676": "pressure:branch0_seg0:OUT", + "677": "pressure:branch0_seg0:OUT", + "678": "pressure:branch0_seg0:OUT", + "679": "pressure:branch0_seg0:OUT", + "680": "pressure:branch0_seg0:OUT", + "681": "pressure:branch0_seg0:OUT", + "682": "pressure:branch0_seg0:OUT", + "683": "pressure:branch0_seg0:OUT", + "684": "pressure:branch0_seg0:OUT", + "685": "pressure:branch0_seg0:OUT", + "686": "pressure:branch0_seg0:OUT", + "687": "pressure:branch0_seg0:OUT", + "688": "pressure:branch0_seg0:OUT", + "689": "pressure:branch0_seg0:OUT", + "690": "pressure:branch0_seg0:OUT", + "691": "pressure:branch0_seg0:OUT", + "692": "pressure:branch0_seg0:OUT", + "693": "pressure:branch0_seg0:OUT", + "694": "pressure:branch0_seg0:OUT", + "695": "pressure:branch0_seg0:OUT", + "696": "pressure:branch0_seg0:OUT", + "697": "pressure:branch0_seg0:OUT", + "698": "pressure:branch0_seg0:OUT", + "699": "pressure:branch0_seg0:OUT", + "700": "pressure:branch0_seg0:OUT", + "701": "pressure:branch0_seg0:OUT", + "702": "pressure:branch0_seg0:OUT", + "703": "pressure:branch0_seg0:OUT", + "704": "pressure:branch0_seg0:OUT", + "705": "pressure:branch0_seg0:OUT", + "706": "pressure:branch0_seg0:OUT", + "707": "pressure:branch0_seg0:OUT", + "708": "pressure:branch0_seg0:OUT", + "709": "pressure:branch0_seg0:OUT", + "710": "pressure:branch0_seg0:OUT", + "711": "pressure:branch0_seg0:OUT", + "712": "pressure:branch0_seg0:OUT", + "713": "pressure:branch0_seg0:OUT", + "714": "pressure:branch0_seg0:OUT", + "715": "pressure:branch0_seg0:OUT", + "716": "pressure:branch0_seg0:OUT", + "717": "pressure:branch0_seg0:OUT", + "718": "pressure:branch0_seg0:OUT", + "719": "pressure:branch0_seg0:OUT", + "720": "pressure:branch0_seg0:OUT", + "721": "pressure:branch0_seg0:OUT", + "722": "pressure:branch0_seg0:OUT", + "723": "pressure:branch0_seg0:OUT", + "724": "pressure:branch0_seg0:OUT", + "725": "pressure:branch0_seg0:OUT", + "726": "pressure:branch0_seg0:OUT", + "727": "pressure:branch0_seg0:OUT", + "728": "pressure:branch0_seg0:OUT", + "729": "pressure:branch0_seg0:OUT", + "730": "pressure:branch0_seg0:OUT", + "731": "pressure:branch0_seg0:OUT", + "732": "pressure:branch0_seg0:OUT", + "733": "pressure:branch0_seg0:OUT", + "734": "pressure:branch0_seg0:OUT", + "735": "pressure:branch0_seg0:OUT", + "736": "pressure:branch0_seg0:OUT", + "737": "pressure:branch0_seg0:OUT", + "738": "pressure:branch0_seg0:OUT", + "739": "pressure:branch0_seg0:OUT", + "740": "pressure:branch0_seg0:OUT", + "741": "pressure:branch0_seg0:OUT", + "742": "pressure:branch0_seg0:OUT", + "743": "pressure:branch0_seg0:OUT", + "744": "pressure:branch0_seg0:OUT", + "745": "pressure:branch0_seg0:OUT", + "746": "pressure:branch0_seg0:OUT", + "747": "pressure:branch0_seg0:OUT", + "748": "pressure:branch0_seg0:OUT", + "749": "pressure:branch0_seg0:OUT", + "750": "pressure:branch0_seg0:OUT", + "751": "pressure:branch0_seg0:OUT", + "752": "pressure:branch0_seg0:OUT", + "753": "pressure:branch0_seg0:OUT", + "754": "pressure:branch0_seg0:OUT", + "755": "pressure:branch0_seg0:OUT", + "756": "pressure:branch0_seg0:OUT", + "757": "pressure:branch0_seg0:OUT", + "758": "pressure:branch0_seg0:OUT", + "759": "pressure:branch0_seg0:OUT", + "760": "pressure:branch0_seg0:OUT", + "761": "pressure:branch0_seg0:OUT", + "762": "pressure:branch0_seg0:OUT", + "763": "pressure:branch0_seg0:OUT", + "764": "pressure:branch0_seg0:OUT", + "765": "pressure:branch0_seg0:OUT", + "766": "pressure:branch0_seg0:OUT", + "767": "pressure:branch0_seg0:OUT", + "768": "pressure:branch0_seg0:OUT", + "769": "pressure:branch0_seg0:OUT", + "770": "pressure:branch0_seg0:OUT", + "771": "pressure:branch0_seg0:OUT", + "772": "pressure:branch0_seg0:OUT", + "773": "pressure:branch0_seg0:OUT", + "774": "pressure:branch0_seg0:OUT", + "775": "pressure:branch0_seg0:OUT", + "776": "pressure:branch0_seg0:OUT", + "777": "pressure:branch0_seg0:OUT", + "778": "pressure:branch0_seg0:OUT", + "779": "pressure:branch0_seg0:OUT", + "780": "pressure:branch0_seg0:OUT", + "781": "pressure:branch0_seg0:OUT", + "782": "pressure:branch0_seg0:OUT", + "783": "pressure:branch0_seg0:OUT", + "784": "pressure:branch0_seg0:OUT", + "785": "pressure:branch0_seg0:OUT", + "786": "pressure:branch0_seg0:OUT", + "787": "pressure:branch0_seg0:OUT", + "788": "pressure:branch0_seg0:OUT", + "789": "pressure:branch0_seg0:OUT", + "790": "pressure:branch0_seg0:OUT", + "791": "pressure:branch0_seg0:OUT", + "792": "pressure:branch0_seg0:OUT", + "793": "pressure:branch0_seg0:OUT", + "794": "pressure:branch0_seg0:OUT", + "795": "pressure:branch0_seg0:OUT", + "796": "pressure:branch0_seg0:OUT", + "797": "pressure:branch0_seg0:OUT", + "798": "pressure:branch0_seg0:OUT", + "799": "pressure:branch0_seg0:OUT", + "800": "pressure:branch0_seg0:OUT", + "801": "pressure:branch0_seg0:OUT", + "802": "pressure:branch0_seg0:OUT", + "803": "pressure:branch0_seg0:OUT", + "804": "pressure_c:OUT", + "805": "pressure_c:OUT", + "806": "pressure_c:OUT", + "807": "pressure_c:OUT", + "808": "pressure_c:OUT", + "809": "pressure_c:OUT", + "810": "pressure_c:OUT", + "811": "pressure_c:OUT", + "812": "pressure_c:OUT", + "813": "pressure_c:OUT", + "814": "pressure_c:OUT", + "815": "pressure_c:OUT", + "816": "pressure_c:OUT", + "817": "pressure_c:OUT", + "818": "pressure_c:OUT", + "819": "pressure_c:OUT", + "820": "pressure_c:OUT", + "821": "pressure_c:OUT", + "822": "pressure_c:OUT", + "823": "pressure_c:OUT", + "824": "pressure_c:OUT", + "825": "pressure_c:OUT", + "826": "pressure_c:OUT", + "827": "pressure_c:OUT", + "828": "pressure_c:OUT", + "829": "pressure_c:OUT", + "830": "pressure_c:OUT", + "831": "pressure_c:OUT", + "832": "pressure_c:OUT", + "833": "pressure_c:OUT", + "834": "pressure_c:OUT", + "835": "pressure_c:OUT", + "836": "pressure_c:OUT", + "837": "pressure_c:OUT", + "838": "pressure_c:OUT", + "839": "pressure_c:OUT", + "840": "pressure_c:OUT", + "841": "pressure_c:OUT", + "842": "pressure_c:OUT", + "843": "pressure_c:OUT", + "844": "pressure_c:OUT", + "845": "pressure_c:OUT", + "846": "pressure_c:OUT", + "847": "pressure_c:OUT", + "848": "pressure_c:OUT", + "849": "pressure_c:OUT", + "850": "pressure_c:OUT", + "851": "pressure_c:OUT", + "852": "pressure_c:OUT", + "853": "pressure_c:OUT", + "854": "pressure_c:OUT", + "855": "pressure_c:OUT", + "856": "pressure_c:OUT", + "857": "pressure_c:OUT", + "858": "pressure_c:OUT", + "859": "pressure_c:OUT", + "860": "pressure_c:OUT", + "861": "pressure_c:OUT", + "862": "pressure_c:OUT", + "863": "pressure_c:OUT", + "864": "pressure_c:OUT", + "865": "pressure_c:OUT", + "866": "pressure_c:OUT", + "867": "pressure_c:OUT", + "868": "pressure_c:OUT", + "869": "pressure_c:OUT", + "870": "pressure_c:OUT", + "871": "pressure_c:OUT", + "872": "pressure_c:OUT", + "873": "pressure_c:OUT", + "874": "pressure_c:OUT", + "875": "pressure_c:OUT", + "876": "pressure_c:OUT", + "877": "pressure_c:OUT", + "878": "pressure_c:OUT", + "879": "pressure_c:OUT", + "880": "pressure_c:OUT", + "881": "pressure_c:OUT", + "882": "pressure_c:OUT", + "883": "pressure_c:OUT", + "884": "pressure_c:OUT", + "885": "pressure_c:OUT", + "886": "pressure_c:OUT", + "887": "pressure_c:OUT", + "888": "pressure_c:OUT", + "889": "pressure_c:OUT", + "890": "pressure_c:OUT", + "891": "pressure_c:OUT", + "892": "pressure_c:OUT", + "893": "pressure_c:OUT", + "894": "pressure_c:OUT", + "895": "pressure_c:OUT", + "896": "pressure_c:OUT", + "897": "pressure_c:OUT", + "898": "pressure_c:OUT", + "899": "pressure_c:OUT", + "900": "pressure_c:OUT", + "901": "pressure_c:OUT", + "902": "pressure_c:OUT", + "903": "pressure_c:OUT", + "904": "pressure_c:OUT", + "905": "pressure_c:OUT", + "906": "pressure_c:OUT", + "907": "pressure_c:OUT", + "908": "pressure_c:OUT", + "909": "pressure_c:OUT", + "910": "pressure_c:OUT", + "911": "pressure_c:OUT", + "912": "pressure_c:OUT", + "913": "pressure_c:OUT", + "914": "pressure_c:OUT", + "915": "pressure_c:OUT", + "916": "pressure_c:OUT", + "917": "pressure_c:OUT", + "918": "pressure_c:OUT", + "919": "pressure_c:OUT", + "920": "pressure_c:OUT", + "921": "pressure_c:OUT", + "922": "pressure_c:OUT", + "923": "pressure_c:OUT", + "924": "pressure_c:OUT", + "925": "pressure_c:OUT", + "926": "pressure_c:OUT", + "927": "pressure_c:OUT", + "928": "pressure_c:OUT", + "929": "pressure_c:OUT", + "930": "pressure_c:OUT", + "931": "pressure_c:OUT", + "932": "pressure_c:OUT", + "933": "pressure_c:OUT", + "934": "pressure_c:OUT", + "935": "pressure_c:OUT", + "936": "pressure_c:OUT", + "937": "pressure_c:OUT", + "938": "pressure_c:OUT", + "939": "pressure_c:OUT", + "940": "pressure_c:OUT", + "941": "pressure_c:OUT", + "942": "pressure_c:OUT", + "943": "pressure_c:OUT", + "944": "pressure_c:OUT", + "945": "pressure_c:OUT", + "946": "pressure_c:OUT", + "947": "pressure_c:OUT", + "948": "pressure_c:OUT", + "949": "pressure_c:OUT", + "950": "pressure_c:OUT", + "951": "pressure_c:OUT", + "952": "pressure_c:OUT", + "953": "pressure_c:OUT", + "954": "pressure_c:OUT", + "955": "pressure_c:OUT", + "956": "pressure_c:OUT", + "957": "pressure_c:OUT", + "958": "pressure_c:OUT", + "959": "pressure_c:OUT", + "960": "pressure_c:OUT", + "961": "pressure_c:OUT", + "962": "pressure_c:OUT", + "963": "pressure_c:OUT", + "964": "pressure_c:OUT", + "965": "pressure_c:OUT", + "966": "pressure_c:OUT", + "967": "pressure_c:OUT", + "968": "pressure_c:OUT", + "969": "pressure_c:OUT", + "970": "pressure_c:OUT", + "971": "pressure_c:OUT", + "972": "pressure_c:OUT", + "973": "pressure_c:OUT", + "974": "pressure_c:OUT", + "975": "pressure_c:OUT", + "976": "pressure_c:OUT", + "977": "pressure_c:OUT", + "978": "pressure_c:OUT", + "979": "pressure_c:OUT", + "980": "pressure_c:OUT", + "981": "pressure_c:OUT", + "982": "pressure_c:OUT", + "983": "pressure_c:OUT", + "984": "pressure_c:OUT", + "985": "pressure_c:OUT", + "986": "pressure_c:OUT", + "987": "pressure_c:OUT", + "988": "pressure_c:OUT", + "989": "pressure_c:OUT", + "990": "pressure_c:OUT", + "991": "pressure_c:OUT", + "992": "pressure_c:OUT", + "993": "pressure_c:OUT", + "994": "pressure_c:OUT", + "995": "pressure_c:OUT", + "996": "pressure_c:OUT", + "997": "pressure_c:OUT", + "998": "pressure_c:OUT", + "999": "pressure_c:OUT", + "1000": "pressure_c:OUT", + "1001": "pressure_c:OUT", + "1002": "pressure_c:OUT", + "1003": "pressure_c:OUT", + "1004": "pressure_c:OUT" + }, + "time": { + "0": 0.0, + "1": 0.005, + "2": 0.01, + "3": 0.015, + "4": 0.02, + "5": 0.025, + "6": 0.03, + "7": 0.035, + "8": 0.04, + "9": 0.045, + "10": 0.05, + "11": 0.055, + "12": 0.06, + "13": 0.065, + "14": 0.07, + "15": 0.075, + "16": 0.08, + "17": 0.085, + "18": 0.09, + "19": 0.095, + "20": 0.1, + "21": 0.105, + "22": 0.11, + "23": 0.115, + "24": 0.12, + "25": 0.125, + "26": 0.13, + "27": 0.135, + "28": 0.14, + "29": 0.145, + "30": 0.15, + "31": 0.155, + "32": 0.16, + "33": 0.165, + "34": 0.17, + "35": 0.175, + "36": 0.18, + "37": 0.185, + "38": 0.19, + "39": 0.195, + "40": 0.2, + "41": 0.205, + "42": 0.21, + "43": 0.215, + "44": 0.22, + "45": 0.225, + "46": 0.23, + "47": 0.235, + "48": 0.24, + "49": 0.245, + "50": 0.25, + "51": 0.255, + "52": 0.26, + "53": 0.265, + "54": 0.27, + "55": 0.275, + "56": 0.28, + "57": 0.285, + "58": 0.29, + "59": 0.295, + "60": 0.3, + "61": 0.305, + "62": 0.31, + "63": 0.315, + "64": 0.32, + "65": 0.325, + "66": 0.33, + "67": 0.335, + "68": 0.34, + "69": 0.345, + "70": 0.35, + "71": 0.355, + "72": 0.36, + "73": 0.365, + "74": 0.37, + "75": 0.375, + "76": 0.38, + "77": 0.385, + "78": 0.39, + "79": 0.395, + "80": 0.4, + "81": 0.405, + "82": 0.41, + "83": 0.415, + "84": 0.42, + "85": 0.425, + "86": 0.43, + "87": 0.435, + "88": 0.44, + "89": 0.445, + "90": 0.45, + "91": 0.455, + "92": 0.46, + "93": 0.465, + "94": 0.47, + "95": 0.475, + "96": 0.48, + "97": 0.485, + "98": 0.49, + "99": 0.495, + "100": 0.5, + "101": 0.505, + "102": 0.51, + "103": 0.515, + "104": 0.52, + "105": 0.525, + "106": 0.53, + "107": 0.535, + "108": 0.54, + "109": 0.545, + "110": 0.55, + "111": 0.555, + "112": 0.56, + "113": 0.565, + "114": 0.57, + "115": 0.575, + "116": 0.58, + "117": 0.585, + "118": 0.59, + "119": 0.595, + "120": 0.6, + "121": 0.605, + "122": 0.61, + "123": 0.615, + "124": 0.62, + "125": 0.625, + "126": 0.63, + "127": 0.635, + "128": 0.64, + "129": 0.645, + "130": 0.65, + "131": 0.655, + "132": 0.66, + "133": 0.665, + "134": 0.67, + "135": 0.675, + "136": 0.68, + "137": 0.685, + "138": 0.69, + "139": 0.695, + "140": 0.7, + "141": 0.705, + "142": 0.71, + "143": 0.715, + "144": 0.72, + "145": 0.725, + "146": 0.73, + "147": 0.735, + "148": 0.74, + "149": 0.745, + "150": 0.75, + "151": 0.755, + "152": 0.76, + "153": 0.765, + "154": 0.77, + "155": 0.775, + "156": 0.78, + "157": 0.785, + "158": 0.79, + "159": 0.795, + "160": 0.8, + "161": 0.805, + "162": 0.81, + "163": 0.815, + "164": 0.82, + "165": 0.825, + "166": 0.83, + "167": 0.835, + "168": 0.84, + "169": 0.845, + "170": 0.85, + "171": 0.855, + "172": 0.86, + "173": 0.865, + "174": 0.87, + "175": 0.875, + "176": 0.88, + "177": 0.885, + "178": 0.89, + "179": 0.895, + "180": 0.9, + "181": 0.905, + "182": 0.91, + "183": 0.915, + "184": 0.92, + "185": 0.925, + "186": 0.93, + "187": 0.935, + "188": 0.94, + "189": 0.945, + "190": 0.95, + "191": 0.955, + "192": 0.96, + "193": 0.965, + "194": 0.97, + "195": 0.975, + "196": 0.98, + "197": 0.985, + "198": 0.99, + "199": 0.995, + "200": 1.0, + "201": 0.0, + "202": 0.005, + "203": 0.01, + "204": 0.015, + "205": 0.02, + "206": 0.025, + "207": 0.03, + "208": 0.035, + "209": 0.04, + "210": 0.045, + "211": 0.05, + "212": 0.055, + "213": 0.06, + "214": 0.065, + "215": 0.07, + "216": 0.075, + "217": 0.08, + "218": 0.085, + "219": 0.09, + "220": 0.095, + "221": 0.1, + "222": 0.105, + "223": 0.11, + "224": 0.115, + "225": 0.12, + "226": 0.125, + "227": 0.13, + "228": 0.135, + "229": 0.14, + "230": 0.145, + "231": 0.15, + "232": 0.155, + "233": 0.16, + "234": 0.165, + "235": 0.17, + "236": 0.175, + "237": 0.18, + "238": 0.185, + "239": 0.19, + "240": 0.195, + "241": 0.2, + "242": 0.205, + "243": 0.21, + "244": 0.215, + "245": 0.22, + "246": 0.225, + "247": 0.23, + "248": 0.235, + "249": 0.24, + "250": 0.245, + "251": 0.25, + "252": 0.255, + "253": 0.26, + "254": 0.265, + "255": 0.27, + "256": 0.275, + "257": 0.28, + "258": 0.285, + "259": 0.29, + "260": 0.295, + "261": 0.3, + "262": 0.305, + "263": 0.31, + "264": 0.315, + "265": 0.32, + "266": 0.325, + "267": 0.33, + "268": 0.335, + "269": 0.34, + "270": 0.345, + "271": 0.35, + "272": 0.355, + "273": 0.36, + "274": 0.365, + "275": 0.37, + "276": 0.375, + "277": 0.38, + "278": 0.385, + "279": 0.39, + "280": 0.395, + "281": 0.4, + "282": 0.405, + "283": 0.41, + "284": 0.415, + "285": 0.42, + "286": 0.425, + "287": 0.43, + "288": 0.435, + "289": 0.44, + "290": 0.445, + "291": 0.45, + "292": 0.455, + "293": 0.46, + "294": 0.465, + "295": 0.47, + "296": 0.475, + "297": 0.48, + "298": 0.485, + "299": 0.49, + "300": 0.495, + "301": 0.5, + "302": 0.505, + "303": 0.51, + "304": 0.515, + "305": 0.52, + "306": 0.525, + "307": 0.53, + "308": 0.535, + "309": 0.54, + "310": 0.545, + "311": 0.55, + "312": 0.555, + "313": 0.56, + "314": 0.565, + "315": 0.57, + "316": 0.575, + "317": 0.58, + "318": 0.585, + "319": 0.59, + "320": 0.595, + "321": 0.6, + "322": 0.605, + "323": 0.61, + "324": 0.615, + "325": 0.62, + "326": 0.625, + "327": 0.63, + "328": 0.635, + "329": 0.64, + "330": 0.645, + "331": 0.65, + "332": 0.655, + "333": 0.66, + "334": 0.665, + "335": 0.67, + "336": 0.675, + "337": 0.68, + "338": 0.685, + "339": 0.69, + "340": 0.695, + "341": 0.7, + "342": 0.705, + "343": 0.71, + "344": 0.715, + "345": 0.72, + "346": 0.725, + "347": 0.73, + "348": 0.735, + "349": 0.74, + "350": 0.745, + "351": 0.75, + "352": 0.755, + "353": 0.76, + "354": 0.765, + "355": 0.77, + "356": 0.775, + "357": 0.78, + "358": 0.785, + "359": 0.79, + "360": 0.795, + "361": 0.8, + "362": 0.805, + "363": 0.81, + "364": 0.815, + "365": 0.82, + "366": 0.825, + "367": 0.83, + "368": 0.835, + "369": 0.84, + "370": 0.845, + "371": 0.85, + "372": 0.855, + "373": 0.86, + "374": 0.865, + "375": 0.87, + "376": 0.875, + "377": 0.88, + "378": 0.885, + "379": 0.89, + "380": 0.895, + "381": 0.9, + "382": 0.905, + "383": 0.91, + "384": 0.915, + "385": 0.92, + "386": 0.925, + "387": 0.93, + "388": 0.935, + "389": 0.94, + "390": 0.945, + "391": 0.95, + "392": 0.955, + "393": 0.96, + "394": 0.965, + "395": 0.97, + "396": 0.975, + "397": 0.98, + "398": 0.985, + "399": 0.99, + "400": 0.995, + "401": 1.0, + "402": 0.0, + "403": 0.005, + "404": 0.01, + "405": 0.015, + "406": 0.02, + "407": 0.025, + "408": 0.03, + "409": 0.035, + "410": 0.04, + "411": 0.045, + "412": 0.05, + "413": 0.055, + "414": 0.06, + "415": 0.065, + "416": 0.07, + "417": 0.075, + "418": 0.08, + "419": 0.085, + "420": 0.09, + "421": 0.095, + "422": 0.1, + "423": 0.105, + "424": 0.11, + "425": 0.115, + "426": 0.12, + "427": 0.125, + "428": 0.13, + "429": 0.135, + "430": 0.14, + "431": 0.145, + "432": 0.15, + "433": 0.155, + "434": 0.16, + "435": 0.165, + "436": 0.17, + "437": 0.175, + "438": 0.18, + "439": 0.185, + "440": 0.19, + "441": 0.195, + "442": 0.2, + "443": 0.205, + "444": 0.21, + "445": 0.215, + "446": 0.22, + "447": 0.225, + "448": 0.23, + "449": 0.235, + "450": 0.24, + "451": 0.245, + "452": 0.25, + "453": 0.255, + "454": 0.26, + "455": 0.265, + "456": 0.27, + "457": 0.275, + "458": 0.28, + "459": 0.285, + "460": 0.29, + "461": 0.295, + "462": 0.3, + "463": 0.305, + "464": 0.31, + "465": 0.315, + "466": 0.32, + "467": 0.325, + "468": 0.33, + "469": 0.335, + "470": 0.34, + "471": 0.345, + "472": 0.35, + "473": 0.355, + "474": 0.36, + "475": 0.365, + "476": 0.37, + "477": 0.375, + "478": 0.38, + "479": 0.385, + "480": 0.39, + "481": 0.395, + "482": 0.4, + "483": 0.405, + "484": 0.41, + "485": 0.415, + "486": 0.42, + "487": 0.425, + "488": 0.43, + "489": 0.435, + "490": 0.44, + "491": 0.445, + "492": 0.45, + "493": 0.455, + "494": 0.46, + "495": 0.465, + "496": 0.47, + "497": 0.475, + "498": 0.48, + "499": 0.485, + "500": 0.49, + "501": 0.495, + "502": 0.5, + "503": 0.505, + "504": 0.51, + "505": 0.515, + "506": 0.52, + "507": 0.525, + "508": 0.53, + "509": 0.535, + "510": 0.54, + "511": 0.545, + "512": 0.55, + "513": 0.555, + "514": 0.56, + "515": 0.565, + "516": 0.57, + "517": 0.575, + "518": 0.58, + "519": 0.585, + "520": 0.59, + "521": 0.595, + "522": 0.6, + "523": 0.605, + "524": 0.61, + "525": 0.615, + "526": 0.62, + "527": 0.625, + "528": 0.63, + "529": 0.635, + "530": 0.64, + "531": 0.645, + "532": 0.65, + "533": 0.655, + "534": 0.66, + "535": 0.665, + "536": 0.67, + "537": 0.675, + "538": 0.68, + "539": 0.685, + "540": 0.69, + "541": 0.695, + "542": 0.7, + "543": 0.705, + "544": 0.71, + "545": 0.715, + "546": 0.72, + "547": 0.725, + "548": 0.73, + "549": 0.735, + "550": 0.74, + "551": 0.745, + "552": 0.75, + "553": 0.755, + "554": 0.76, + "555": 0.765, + "556": 0.77, + "557": 0.775, + "558": 0.78, + "559": 0.785, + "560": 0.79, + "561": 0.795, + "562": 0.8, + "563": 0.805, + "564": 0.81, + "565": 0.815, + "566": 0.82, + "567": 0.825, + "568": 0.83, + "569": 0.835, + "570": 0.84, + "571": 0.845, + "572": 0.85, + "573": 0.855, + "574": 0.86, + "575": 0.865, + "576": 0.87, + "577": 0.875, + "578": 0.88, + "579": 0.885, + "580": 0.89, + "581": 0.895, + "582": 0.9, + "583": 0.905, + "584": 0.91, + "585": 0.915, + "586": 0.92, + "587": 0.925, + "588": 0.93, + "589": 0.935, + "590": 0.94, + "591": 0.945, + "592": 0.95, + "593": 0.955, + "594": 0.96, + "595": 0.965, + "596": 0.97, + "597": 0.975, + "598": 0.98, + "599": 0.985, + "600": 0.99, + "601": 0.995, + "602": 1.0, + "603": 0.0, + "604": 0.005, + "605": 0.01, + "606": 0.015, + "607": 0.02, + "608": 0.025, + "609": 0.03, + "610": 0.035, + "611": 0.04, + "612": 0.045, + "613": 0.05, + "614": 0.055, + "615": 0.06, + "616": 0.065, + "617": 0.07, + "618": 0.075, + "619": 0.08, + "620": 0.085, + "621": 0.09, + "622": 0.095, + "623": 0.1, + "624": 0.105, + "625": 0.11, + "626": 0.115, + "627": 0.12, + "628": 0.125, + "629": 0.13, + "630": 0.135, + "631": 0.14, + "632": 0.145, + "633": 0.15, + "634": 0.155, + "635": 0.16, + "636": 0.165, + "637": 0.17, + "638": 0.175, + "639": 0.18, + "640": 0.185, + "641": 0.19, + "642": 0.195, + "643": 0.2, + "644": 0.205, + "645": 0.21, + "646": 0.215, + "647": 0.22, + "648": 0.225, + "649": 0.23, + "650": 0.235, + "651": 0.24, + "652": 0.245, + "653": 0.25, + "654": 0.255, + "655": 0.26, + "656": 0.265, + "657": 0.27, + "658": 0.275, + "659": 0.28, + "660": 0.285, + "661": 0.29, + "662": 0.295, + "663": 0.3, + "664": 0.305, + "665": 0.31, + "666": 0.315, + "667": 0.32, + "668": 0.325, + "669": 0.33, + "670": 0.335, + "671": 0.34, + "672": 0.345, + "673": 0.35, + "674": 0.355, + "675": 0.36, + "676": 0.365, + "677": 0.37, + "678": 0.375, + "679": 0.38, + "680": 0.385, + "681": 0.39, + "682": 0.395, + "683": 0.4, + "684": 0.405, + "685": 0.41, + "686": 0.415, + "687": 0.42, + "688": 0.425, + "689": 0.43, + "690": 0.435, + "691": 0.44, + "692": 0.445, + "693": 0.45, + "694": 0.455, + "695": 0.46, + "696": 0.465, + "697": 0.47, + "698": 0.475, + "699": 0.48, + "700": 0.485, + "701": 0.49, + "702": 0.495, + "703": 0.5, + "704": 0.505, + "705": 0.51, + "706": 0.515, + "707": 0.52, + "708": 0.525, + "709": 0.53, + "710": 0.535, + "711": 0.54, + "712": 0.545, + "713": 0.55, + "714": 0.555, + "715": 0.56, + "716": 0.565, + "717": 0.57, + "718": 0.575, + "719": 0.58, + "720": 0.585, + "721": 0.59, + "722": 0.595, + "723": 0.6, + "724": 0.605, + "725": 0.61, + "726": 0.615, + "727": 0.62, + "728": 0.625, + "729": 0.63, + "730": 0.635, + "731": 0.64, + "732": 0.645, + "733": 0.65, + "734": 0.655, + "735": 0.66, + "736": 0.665, + "737": 0.67, + "738": 0.675, + "739": 0.68, + "740": 0.685, + "741": 0.69, + "742": 0.695, + "743": 0.7, + "744": 0.705, + "745": 0.71, + "746": 0.715, + "747": 0.72, + "748": 0.725, + "749": 0.73, + "750": 0.735, + "751": 0.74, + "752": 0.745, + "753": 0.75, + "754": 0.755, + "755": 0.76, + "756": 0.765, + "757": 0.77, + "758": 0.775, + "759": 0.78, + "760": 0.785, + "761": 0.79, + "762": 0.795, + "763": 0.8, + "764": 0.805, + "765": 0.81, + "766": 0.815, + "767": 0.82, + "768": 0.825, + "769": 0.83, + "770": 0.835, + "771": 0.84, + "772": 0.845, + "773": 0.85, + "774": 0.855, + "775": 0.86, + "776": 0.865, + "777": 0.87, + "778": 0.875, + "779": 0.88, + "780": 0.885, + "781": 0.89, + "782": 0.895, + "783": 0.9, + "784": 0.905, + "785": 0.91, + "786": 0.915, + "787": 0.92, + "788": 0.925, + "789": 0.93, + "790": 0.935, + "791": 0.94, + "792": 0.945, + "793": 0.95, + "794": 0.955, + "795": 0.96, + "796": 0.965, + "797": 0.97, + "798": 0.975, + "799": 0.98, + "800": 0.985, + "801": 0.99, + "802": 0.995, + "803": 1.0, + "804": 0.0, + "805": 0.005, + "806": 0.01, + "807": 0.015, + "808": 0.02, + "809": 0.025, + "810": 0.03, + "811": 0.035, + "812": 0.04, + "813": 0.045, + "814": 0.05, + "815": 0.055, + "816": 0.06, + "817": 0.065, + "818": 0.07, + "819": 0.075, + "820": 0.08, + "821": 0.085, + "822": 0.09, + "823": 0.095, + "824": 0.1, + "825": 0.105, + "826": 0.11, + "827": 0.115, + "828": 0.12, + "829": 0.125, + "830": 0.13, + "831": 0.135, + "832": 0.14, + "833": 0.145, + "834": 0.15, + "835": 0.155, + "836": 0.16, + "837": 0.165, + "838": 0.17, + "839": 0.175, + "840": 0.18, + "841": 0.185, + "842": 0.19, + "843": 0.195, + "844": 0.2, + "845": 0.205, + "846": 0.21, + "847": 0.215, + "848": 0.22, + "849": 0.225, + "850": 0.23, + "851": 0.235, + "852": 0.24, + "853": 0.245, + "854": 0.25, + "855": 0.255, + "856": 0.26, + "857": 0.265, + "858": 0.27, + "859": 0.275, + "860": 0.28, + "861": 0.285, + "862": 0.29, + "863": 0.295, + "864": 0.3, + "865": 0.305, + "866": 0.31, + "867": 0.315, + "868": 0.32, + "869": 0.325, + "870": 0.33, + "871": 0.335, + "872": 0.34, + "873": 0.345, + "874": 0.35, + "875": 0.355, + "876": 0.36, + "877": 0.365, + "878": 0.37, + "879": 0.375, + "880": 0.38, + "881": 0.385, + "882": 0.39, + "883": 0.395, + "884": 0.4, + "885": 0.405, + "886": 0.41, + "887": 0.415, + "888": 0.42, + "889": 0.425, + "890": 0.43, + "891": 0.435, + "892": 0.44, + "893": 0.445, + "894": 0.45, + "895": 0.455, + "896": 0.46, + "897": 0.465, + "898": 0.47, + "899": 0.475, + "900": 0.48, + "901": 0.485, + "902": 0.49, + "903": 0.495, + "904": 0.5, + "905": 0.505, + "906": 0.51, + "907": 0.515, + "908": 0.52, + "909": 0.525, + "910": 0.53, + "911": 0.535, + "912": 0.54, + "913": 0.545, + "914": 0.55, + "915": 0.555, + "916": 0.56, + "917": 0.565, + "918": 0.57, + "919": 0.575, + "920": 0.58, + "921": 0.585, + "922": 0.59, + "923": 0.595, + "924": 0.6, + "925": 0.605, + "926": 0.61, + "927": 0.615, + "928": 0.62, + "929": 0.625, + "930": 0.63, + "931": 0.635, + "932": 0.64, + "933": 0.645, + "934": 0.65, + "935": 0.655, + "936": 0.66, + "937": 0.665, + "938": 0.67, + "939": 0.675, + "940": 0.68, + "941": 0.685, + "942": 0.69, + "943": 0.695, + "944": 0.7, + "945": 0.705, + "946": 0.71, + "947": 0.715, + "948": 0.72, + "949": 0.725, + "950": 0.73, + "951": 0.735, + "952": 0.74, + "953": 0.745, + "954": 0.75, + "955": 0.755, + "956": 0.76, + "957": 0.765, + "958": 0.77, + "959": 0.775, + "960": 0.78, + "961": 0.785, + "962": 0.79, + "963": 0.795, + "964": 0.8, + "965": 0.805, + "966": 0.81, + "967": 0.815, + "968": 0.82, + "969": 0.825, + "970": 0.83, + "971": 0.835, + "972": 0.84, + "973": 0.845, + "974": 0.85, + "975": 0.855, + "976": 0.86, + "977": 0.865, + "978": 0.87, + "979": 0.875, + "980": 0.88, + "981": 0.885, + "982": 0.89, + "983": 0.895, + "984": 0.9, + "985": 0.905, + "986": 0.91, + "987": 0.915, + "988": 0.92, + "989": 0.925, + "990": 0.93, + "991": 0.935, + "992": 0.94, + "993": 0.945, + "994": 0.95, + "995": 0.955, + "996": 0.96, + "997": 0.965, + "998": 0.97, + "999": 0.975, + "1000": 0.98, + "1001": 0.985, + "1002": 0.99, + "1003": 0.995, + "1004": 1.0 + }, + "y": { + "0": 2.2, + "1": 2.2784881494, + "2": 2.3569762988, + "3": 2.4351546914, + "4": 2.5133330839, + "5": 2.5908931852, + "6": 2.6684532865, + "7": 2.7450890022, + "8": 2.8217247179, + "9": 2.8971336019, + "10": 2.9725424859, + "11": 3.0464269338, + "12": 3.1203113817, + "13": 3.1923798053, + "14": 3.2644482289, + "15": 3.3344162071, + "16": 3.4043841853, + "17": 3.4719755864, + "18": 3.5395669874, + "19": 3.6045150591, + "20": 3.6694631307, + "21": 3.7315115526, + "22": 3.7935599744, + "23": 3.8524638696, + "24": 3.9113677648, + "25": 3.9668946667, + "26": 4.0224215686, + "27": 4.0743523377, + "28": 4.1262831069, + "29": 4.1744127964, + "30": 4.2225424859, + "31": 4.2666811498, + "32": 4.3108198138, + "33": 4.3507932569, + "34": 4.3907667001, + "35": 4.4264171656, + "36": 4.4620676312, + "37": 4.4932544229, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2, + "201": 3493.9321778673, + "202": 3637.1001006528, + "203": 3781.3248955491, + "204": 3926.2044186362, + "205": 4072.027480714, + "206": 4218.0468308143, + "207": 4364.8926630676, + "208": 4511.4755685161, + "209": 4658.7646375326, + "210": 4805.332602569, + "211": 4952.4836256832, + "212": 5098.45821351, + "213": 5244.8904528606, + "214": 5389.6955684689, + "215": 5534.8311229057, + "216": 5677.8952866596, + "217": 5821.1613724554, + "218": 5961.9199754602, + "219": 6102.7511868264, + "220": 6240.6487191826, + "221": 6378.4892596676, + "222": 6512.9815028144, + "223": 6647.2873787782, + "224": 6777.8435532755, + "225": 6908.0847207843, + "226": 7034.1895810568, + "227": 7159.8520377239, + "228": 7281.0079055, + "229": 7401.5957190187, + "230": 7517.324447439, + "231": 7632.3617128006, + "232": 7742.2065734457, + "233": 7851.2392911194, + "234": 7954.7667765074, + "235": 8057.3646441688, + "236": 8154.1661786123, + "237": 8249.9242893503, + "238": 8339.6178414172, + "239": 8428.1582817164, + "240": 8510.3898719337, + "241": 8591.3632131265, + "242": 8665.8083109758, + "243": 8738.8949882778, + "244": 8805.2597929684, + "245": 8870.1713666544, + "246": 8928.1939666215, + "247": 8984.6742603654, + "248": 9034.125666915, + "249": 9081.9517788008, + "250": 9122.6368298234, + "251": 9161.6200120371, + "252": 9193.3781422235, + "253": 9223.3645459547, + "254": 9246.070420474, + "255": 9266.9417030866, + "256": 9280.5057122254, + "257": 9292.1795043022, + "258": 9296.5481171133, + "259": 9298.9783475301, + "260": 9294.1343230944, + "261": 9287.3114008421, + "262": 9273.2738563112, + "263": 9257.2247083468, + "264": 9234.0490434957, + "265": 9208.8370084741, + "266": 9176.614687064, + "267": 9142.3392653691, + "268": 9101.1974541818, + "269": 9057.993915244, + "270": 9008.0949822122, + "271": 8956.133830662, + "272": 8897.6747040778, + "273": 8837.1610068415, + "274": 8770.37239817, + "275": 8701.5449751646, + "276": 8626.6904685315, + "277": 8549.8209501513, + "278": 8467.1959620964, + "279": 8382.5877172121, + "280": 8292.5183308156, + "281": 8200.5052695159, + "282": 8103.346947497, + "283": 8004.2922032982, + "284": 7900.4283851666, + "285": 7794.72288189, + "286": 7684.5634706851, + "287": 7572.62437966, + "288": 7456.6041242506, + "289": 7338.8732179293, + "290": 7217.4499972589, + "291": 7094.3919057424, + "292": 6968.04492179, + "293": 6840.1452991456, + "294": 6709.3731857345, + "295": 6577.1367933411, + "296": 6442.4556482587, + "297": 6306.404362744, + "298": 6168.3457109401, + "299": 6029.016464572, + "300": 5888.1251604722, + "301": 5746.0678221327, + "302": 5602.8998993472, + "303": 5458.6751044509, + "304": 5313.7955813638, + "305": 5167.972519286, + "306": 5021.9531691857, + "307": 4875.1073369324, + "308": 4728.5244314839, + "309": 4581.2353624674, + "310": 4434.667397431, + "311": 4287.5163743168, + "312": 4141.54178649, + "313": 3995.1095471394, + "314": 3850.3044315311, + "315": 3705.1688770943, + "316": 3562.1047133404, + "317": 3418.8386275446, + "318": 3278.0800245398, + "319": 3137.2488131736, + "320": 2999.3512808174, + "321": 2861.5107403324, + "322": 2727.0184971856, + "323": 2592.7126212218, + "324": 2462.1564467245, + "325": 2331.9152792157, + "326": 2205.8104189432, + "327": 2080.1479622761, + "328": 1958.9920945, + "329": 1838.4042809813, + "330": 1722.675552561, + "331": 1607.6382871994, + "332": 1497.7934265543, + "333": 1388.7607088806, + "334": 1285.2332234926, + "335": 1182.6353558312, + "336": 1085.8338213877, + "337": 990.0757106497, + "338": 900.3821585829, + "339": 811.8417182836, + "340": 729.6101280663, + "341": 648.6367868735, + "342": 574.1916890242, + "343": 501.1050117222, + "344": 434.7402070316, + "345": 369.8286333456, + "346": 311.8060333785, + "347": 255.3257396346, + "348": 205.874333085, + "349": 158.0482211992, + "350": 117.3631701766, + "351": 78.3799879629, + "352": 46.6218577765, + "353": 16.6354540453, + "354": -6.070420474, + "355": -26.9417030866, + "356": -40.5057122254, + "357": -52.1795043022, + "358": -56.5481171133, + "359": -58.9783475301, + "360": -54.1343230944, + "361": -47.3114008421, + "362": -33.2738563112, + "363": -17.2247083468, + "364": 5.9509565043, + "365": 31.1629915259, + "366": 63.385312936, + "367": 97.6607346309, + "368": 138.8025458182, + "369": 182.006084756, + "370": 231.9050177878, + "371": 283.866169338, + "372": 342.3252959222, + "373": 402.8389931585, + "374": 469.62760183, + "375": 538.4550248354, + "376": 613.3095314685, + "377": 690.1790498487, + "378": 772.8040379036, + "379": 857.4122827879, + "380": 947.4816691844, + "381": 1039.4947304841, + "382": 1136.6530525029, + "383": 1235.7077967018, + "384": 1339.5716148334, + "385": 1445.27711811, + "386": 1555.4365293149, + "387": 1667.37562034, + "388": 1783.3958757494, + "389": 1901.1267820707, + "390": 2022.5500027411, + "391": 2145.6080942576, + "392": 2271.95507821, + "393": 2399.8547008544, + "394": 2530.6268142655, + "395": 2662.8632066589, + "396": 2797.5443517413, + "397": 2933.595637256, + "398": 3071.6542890599, + "399": 3210.983535428, + "400": 3351.8748395278, + "401": 3493.9321778673, + "402": 2.2, + "403": 2.2784881494, + "404": 2.3569762988, + "405": 2.4351546914, + "406": 2.5133330839, + "407": 2.5908931852, + "408": 2.6684532865, + "409": 2.7450890022, + "410": 2.8217247179, + "411": 2.8971336019, + "412": 2.9725424859, + "413": 3.0464269338, + "414": 3.1203113817, + "415": 3.1923798053, + "416": 3.2644482289, + "417": 3.3344162071, + "418": 3.4043841853, + "419": 3.4719755864, + "420": 3.5395669874, + "421": 3.6045150591, + "422": 3.6694631307, + "423": 3.7315115526, + "424": 3.7935599744, + "425": 3.8524638696, + "426": 3.9113677648, + "427": 3.9668946667, + "428": 4.0224215686, + "429": 4.0743523377, + "430": 4.1262831069, + "431": 4.1744127964, + "432": 4.2225424859, + "433": 4.2666811498, + "434": 4.3108198138, + "435": 4.3507932569, + "436": 4.3907667001, + "437": 4.4264171656, + "438": 4.4620676312, + "439": 4.4932544229, + "440": 4.5244412147, + "441": 4.5510412527, + "442": 4.5776412907, + "443": 4.5995495968, + "444": 4.6214579028, + "445": 4.6385880148, + "446": 4.6557181268, + "447": 4.6680024401, + "448": 4.6802867533, + "449": 4.6876767872, + "450": 4.6950668211, + "451": 4.6975334105, + "452": 4.7, + "453": 4.6975334105, + "454": 4.6950668211, + "455": 4.6876767872, + "456": 4.6802867533, + "457": 4.6680024401, + "458": 4.6557181268, + "459": 4.6385880148, + "460": 4.6214579028, + "461": 4.5995495968, + "462": 4.5776412907, + "463": 4.5510412527, + "464": 4.5244412147, + "465": 4.4932544229, + "466": 4.4620676312, + "467": 4.4264171656, + "468": 4.3907667001, + "469": 4.3507932569, + "470": 4.3108198138, + "471": 4.2666811498, + "472": 4.2225424859, + "473": 4.1744127964, + "474": 4.1262831069, + "475": 4.0743523377, + "476": 4.0224215686, + "477": 3.9668946667, + "478": 3.9113677648, + "479": 3.8524638696, + "480": 3.7935599744, + "481": 3.7315115526, + "482": 3.6694631307, + "483": 3.6045150591, + "484": 3.5395669874, + "485": 3.4719755864, + "486": 3.4043841853, + "487": 3.3344162071, + "488": 3.2644482289, + "489": 3.1923798053, + "490": 3.1203113817, + "491": 3.0464269338, + "492": 2.9725424859, + "493": 2.8971336019, + "494": 2.8217247179, + "495": 2.7450890022, + "496": 2.6684532865, + "497": 2.5908931852, + "498": 2.5133330839, + "499": 2.4351546914, + "500": 2.3569762988, + "501": 2.2784881494, + "502": 2.2, + "503": 2.1215118506, + "504": 2.0430237012, + "505": 1.9648453086, + "506": 1.8866669161, + "507": 1.8091068148, + "508": 1.7315467135, + "509": 1.6549109978, + "510": 1.5782752821, + "511": 1.5028663981, + "512": 1.4274575141, + "513": 1.3535730662, + "514": 1.2796886183, + "515": 1.2076201947, + "516": 1.1355517711, + "517": 1.0655837929, + "518": 0.9956158147, + "519": 0.9280244136, + "520": 0.8604330126, + "521": 0.7954849409, + "522": 0.7305368693, + "523": 0.6684884474, + "524": 0.6064400256, + "525": 0.5475361304, + "526": 0.4886322352, + "527": 0.4331053333, + "528": 0.3775784314, + "529": 0.3256476623, + "530": 0.2737168931, + "531": 0.2255872036, + "532": 0.1774575141, + "533": 0.1333188502, + "534": 0.0891801862, + "535": 0.0492067431, + "536": 0.0092332999, + "537": -0.0264171656, + "538": -0.0620676312, + "539": -0.0932544229, + "540": -0.1244412147, + "541": -0.1510412527, + "542": -0.1776412907, + "543": -0.1995495968, + "544": -0.2214579028, + "545": -0.2385880148, + "546": -0.2557181268, + "547": -0.2680024401, + "548": -0.2802867533, + "549": -0.2876767872, + "550": -0.2950668211, + "551": -0.2975334105, + "552": -0.3, + "553": -0.2975334105, + "554": -0.2950668211, + "555": -0.2876767872, + "556": -0.2802867533, + "557": -0.2680024401, + "558": -0.2557181268, + "559": -0.2385880148, + "560": -0.2214579028, + "561": -0.1995495968, + "562": -0.1776412907, + "563": -0.1510412527, + "564": -0.1244412147, + "565": -0.0932544229, + "566": -0.0620676312, + "567": -0.0264171656, + "568": 0.0092332999, + "569": 0.0492067431, + "570": 0.0891801862, + "571": 0.1333188502, + "572": 0.1774575141, + "573": 0.2255872036, + "574": 0.2737168931, + "575": 0.3256476623, + "576": 0.3775784314, + "577": 0.4331053333, + "578": 0.4886322352, + "579": 0.5475361304, + "580": 0.6064400256, + "581": 0.6684884474, + "582": 0.7305368693, + "583": 0.7954849409, + "584": 0.8604330126, + "585": 0.9280244136, + "586": 0.9956158147, + "587": 1.0655837929, + "588": 1.1355517711, + "589": 1.2076201947, + "590": 1.2796886183, + "591": 1.3535730662, + "592": 1.4274575141, + "593": 1.5028663981, + "594": 1.5782752821, + "595": 1.6549109978, + "596": 1.7315467135, + "597": 1.8091068148, + "598": 1.8866669161, + "599": 1.9648453086, + "600": 2.0430237012, + "601": 2.1215118506, + "602": 2.2, + "603": 3273.9321778673, + "604": 3409.2512857116, + "605": 3545.6272656668, + "606": 3682.6889494995, + "607": 3820.6941723229, + "608": 3958.9575122955, + "609": 4098.0473344212, + "610": 4236.9666682973, + "611": 4376.5921657414, + "612": 4515.6192423766, + "613": 4655.2293770895, + "614": 4793.8155201275, + "615": 4932.8593146894, + "616": 5070.4575879377, + "617": 5208.3863000145, + "618": 5344.4536659513, + "619": 5480.72295393, + "620": 5614.7224168251, + "621": 5748.7944880817, + "622": 5880.1972132737, + "623": 6011.5429465945, + "624": 6139.8303475592, + "625": 6267.9313813411, + "626": 6392.5971663158, + "627": 6516.9479443021, + "628": 6637.5001143881, + "629": 6757.6098808686, + "630": 6873.5726717253, + "631": 6988.9674083247, + "632": 7099.8831677952, + "633": 7210.1074642069, + "634": 7315.538458461, + "635": 7420.1573097438, + "636": 7519.6874508142, + "637": 7618.2879741579, + "638": 7711.5244620486, + "639": 7803.7175262338, + "640": 7890.2923991229, + "641": 7975.7141602443, + "642": 8055.2857466607, + "643": 8133.5990840527, + "644": 8205.8533512978, + "645": 8276.7491979956, + "646": 8341.4009914862, + "647": 8404.5995539722, + "648": 8461.3937226161, + "649": 8516.6455850368, + "650": 8565.3579881972, + "651": 8612.4450966937, + "652": 8652.8834887698, + "653": 8691.6200120371, + "654": 8723.62480117, + "655": 8753.8578638476, + "656": 8777.3027417562, + "657": 8798.913027758, + "658": 8813.70546822, + "659": 8826.60769162, + "660": 8832.6893156311, + "661": 8836.8325572479, + "662": 8834.1793634164, + "663": 8829.5472717683, + "664": 8818.1697310383, + "665": 8804.7805868747, + "666": 8784.7236012014, + "667": 8762.6302453576, + "668": 8733.9729705003, + "669": 8703.2625953581, + "670": 8666.1181284885, + "671": 8626.9119338685, + "672": 8581.4268672276, + "673": 8533.8795820683, + "674": 8480.233424434, + "675": 8424.5326961476, + "676": 8362.9371643954, + "677": 8299.3028183093, + "678": 8230.0010018627, + "679": 8158.6841736691, + "680": 8081.9495751367, + "681": 8003.2317197749, + "682": 7919.3671755604, + "683": 7833.5589564428, + "684": 7742.8954415881, + "685": 7650.3355045534, + "686": 7553.2308265315, + "687": 7454.2844633646, + "688": 7351.1218499767, + "689": 7246.1795567688, + "690": 7137.3661437194, + "691": 7026.8420797581, + "692": 6912.8073038765, + "693": 6797.1376571486, + "694": 6678.3315615975, + "695": 6557.9728273544, + "696": 6434.8642855157, + "697": 6310.2914646947, + "698": 6183.36632974, + "699": 6055.0710543529, + "700": 5924.8302418034, + "701": 5793.3188346896, + "702": 5660.2763455311, + "703": 5526.0678221327, + "704": 5390.7487142884, + "705": 5254.3727343332, + "706": 5117.3110505005, + "707": 4979.3058276771, + "708": 4841.0424877045, + "709": 4701.9526655788, + "710": 4563.0333317027, + "711": 4423.4078342586, + "712": 4284.3807576234, + "713": 4144.7706229105, + "714": 4006.1844798725, + "715": 3867.1406853106, + "716": 3729.5424120623, + "717": 3591.6136999855, + "718": 3455.5463340488, + "719": 3319.27704607, + "720": 3185.2775831749, + "721": 3051.2055119183, + "722": 2919.8027867263, + "723": 2788.4570534055, + "724": 2660.1696524408, + "725": 2532.0686186589, + "726": 2407.4028336842, + "727": 2283.0520556979, + "728": 2162.4998856119, + "729": 2042.3901191314, + "730": 1926.4273282747, + "731": 1811.0325916753, + "732": 1700.1168322048, + "733": 1589.8925357931, + "734": 1484.461541539, + "735": 1379.8426902562, + "736": 1280.3125491858, + "737": 1181.7120258421, + "738": 1088.4755379514, + "739": 996.2824737662, + "740": 909.7076008771, + "741": 824.2858397557, + "742": 744.7142533393, + "743": 666.4009159472, + "744": 594.1466487022, + "745": 523.2508020044, + "746": 458.5990085138, + "747": 395.4004460278, + "748": 338.6062773839, + "749": 283.3544149632, + "750": 234.6420118028, + "751": 187.5549033063, + "752": 147.1165112302, + "753": 108.3799879629, + "754": 76.37519883, + "755": 46.1421361524, + "756": 22.6972582438, + "757": 1.086972242, + "758": -13.70546822, + "759": -26.60769162, + "760": -32.6893156311, + "761": -36.8325572479, + "762": -34.1793634164, + "763": -29.5472717683, + "764": -18.1697310383, + "765": -4.7805868747, + "766": 15.2763987986, + "767": 37.3697546424, + "768": 66.0270294997, + "769": 96.7374046419, + "770": 133.8818715115, + "771": 173.0880661315, + "772": 218.5731327724, + "773": 266.1204179317, + "774": 319.766575566, + "775": 375.4673038524, + "776": 437.0628356046, + "777": 500.6971816907, + "778": 569.9989981373, + "779": 641.3158263309, + "780": 718.0504248633, + "781": 796.7682802251, + "782": 880.6328244396, + "783": 966.4410435572, + "784": 1057.1045584119, + "785": 1149.6644954466, + "786": 1246.7691734685, + "787": 1345.7155366354, + "788": 1448.8781500233, + "789": 1553.8204432312, + "790": 1662.6338562806, + "791": 1773.1579202419, + "792": 1887.1926961236, + "793": 2002.8623428514, + "794": 2121.6684384025, + "795": 2242.0271726456, + "796": 2365.1357144843, + "797": 2489.7085353053, + "798": 2616.63367026, + "799": 2744.9289456471, + "800": 2875.1697581966, + "801": 3006.6811653104, + "802": 3139.7236544689, + "803": 3273.9321778673, + "804": 1073.9321778673, + "805": 1130.7631362999, + "806": 1188.6509668435, + "807": 1247.5342581325, + "808": 1307.3610884121, + "809": 1368.064327108, + "810": 1429.5940479568, + "811": 1491.8776661091, + "812": 1554.8674478293, + "813": 1618.4856404518, + "814": 1682.6868911521, + "815": 1747.3885863029, + "816": 1812.5479329777, + "817": 1878.0777826255, + "818": 1943.9380711018, + "819": 2010.0374588678, + "820": 2076.3387686757, + "821": 2142.7468304742, + "822": 2209.2275006342, + "823": 2275.6821541843, + "824": 2342.0798158633, + "825": 2408.3187950078, + "826": 2474.3714069693, + "827": 2540.1332967191, + "828": 2605.5801794804, + "829": 2670.6054477004, + "830": 2735.188312315, + "831": 2799.2203339788, + "832": 2862.6843013852, + "833": 2925.4703713568, + "834": 2987.5649782695, + "835": 3048.8573086148, + "836": 3109.3374959888, + "837": 3168.8941938818, + "838": 3227.5212740482, + "839": 3285.1072964112, + "840": 3341.6498950687, + "841": 3397.03797618, + "842": 3451.2729455237, + "843": 3504.2444939315, + "844": 3555.9577933149, + "845": 3606.303754518, + "846": 3655.291295174, + "847": 3702.8129766646, + "848": 3748.8814271505, + "849": 3793.3912825622, + "850": 3836.3588317506, + "851": 3877.6812010187, + "852": 3917.378275623, + "853": 3955.3500782345, + "854": 3991.6200120371, + "855": 4026.0913906346, + "856": 4058.7910427769, + "857": 4089.6259545777, + "858": 4118.6262744718, + "859": 4145.7030281661, + "860": 4170.8895647983, + "861": 4194.1013008094, + "862": 4215.3746544263, + "863": 4234.6297666367, + "864": 4251.9059810304, + "865": 4267.128478309, + "866": 4280.3393721541, + "867": 4291.4691782586, + "868": 4300.5626141925, + "869": 4307.555804863, + "870": 4312.4958952485, + "871": 4315.3248715562, + "872": 4316.0921201135, + "873": 4314.7457173814, + "874": 4311.3370961309, + "875": 4305.8206279955, + "876": 4298.2495892081, + "877": 4288.5848266489, + "878": 4276.8812497557, + "879": 4263.1063351751, + "880": 4247.3164088474, + "881": 4229.48570554, + "882": 4209.6717454032, + "883": 4187.855623009, + "884": 4164.0958257116, + "885": 4138.3803824988, + "886": 4110.7685171059, + "887": 4081.2552401806, + "888": 4049.9002781103, + "889": 4016.7056428932, + "890": 3981.7313278561, + "891": 3944.9863384072, + "892": 3906.5306980464, + "893": 3866.3803700519, + "894": 3824.5951712113, + "895": 3781.1979596728, + "896": 3736.2481094423, + "897": 3689.7752833275, + "898": 3641.8381782304, + "899": 3592.4731445525, + "900": 3541.7379704421, + "901": 3489.6755504364, + "902": 3436.3425358664, + "903": 3381.7881961194, + "904": 3326.0678221327, + "905": 3269.2368637001, + "906": 3211.3490331565, + "907": 3152.4657418675, + "908": 3092.6389115879, + "909": 3031.935672892, + "910": 2970.4059520432, + "911": 2908.1223338909, + "912": 2845.1325521707, + "913": 2781.5143595482, + "914": 2717.3131088479, + "915": 2652.6114136971, + "916": 2587.4520670223, + "917": 2521.9222173745, + "918": 2456.0619288982, + "919": 2389.9625411322, + "920": 2323.6612313243, + "921": 2257.2531695258, + "922": 2190.7724993658, + "923": 2124.3178458157, + "924": 2057.9201841367, + "925": 1991.6812049922, + "926": 1925.6285930307, + "927": 1859.8667032809, + "928": 1794.4198205196, + "929": 1729.3945522996, + "930": 1664.811687685, + "931": 1600.7796660212, + "932": 1537.3156986148, + "933": 1474.5296286432, + "934": 1412.4350217305, + "935": 1351.1426913852, + "936": 1290.6625040112, + "937": 1231.1058061182, + "938": 1172.4787259518, + "939": 1114.8927035888, + "940": 1058.3501049313, + "941": 1002.96202382, + "942": 948.7270544763, + "943": 895.7555060685, + "944": 844.0422066851, + "945": 793.696245482, + "946": 744.708704826, + "947": 697.1870233354, + "948": 651.1185728495, + "949": 606.6087174378, + "950": 563.6411682494, + "951": 522.3187989813, + "952": 482.621724377, + "953": 444.6499217655, + "954": 408.3799879629, + "955": 373.9086093654, + "956": 341.2089572231, + "957": 310.3740454223, + "958": 281.3737255282, + "959": 254.2969718339, + "960": 229.1104352017, + "961": 205.8986991906, + "962": 184.6253455737, + "963": 165.3702333633, + "964": 148.0940189696, + "965": 132.871521691, + "966": 119.6606278459, + "967": 108.5308217414, + "968": 99.4373858075, + "969": 92.444195137, + "970": 87.5041047515, + "971": 84.6751284438, + "972": 83.9078798865, + "973": 85.2542826186, + "974": 88.6629038691, + "975": 94.1793720045, + "976": 101.7504107919, + "977": 111.4151733511, + "978": 123.1187502443, + "979": 136.8936648249, + "980": 152.6835911526, + "981": 170.51429446, + "982": 190.3282545968, + "983": 212.144376991, + "984": 235.9041742884, + "985": 261.6196175012, + "986": 289.2314828941, + "987": 318.7447598194, + "988": 350.0997218897, + "989": 383.2943571068, + "990": 418.2686721439, + "991": 455.0136615928, + "992": 493.4693019536, + "993": 533.6196299481, + "994": 575.4048287887, + "995": 618.8020403272, + "996": 663.7518905577, + "997": 710.2247166725, + "998": 758.1618217696, + "999": 807.5268554475, + "1000": 858.2620295579, + "1001": 910.3244495636, + "1002": 963.6574641336, + "1003": 1018.2118038806, + "1004": 1073.9321778673 + }, + "ydot": { + "0": 15.6976298823, + "1": 15.6976298823, + "2": 15.6976298823, + "3": 15.6356785087, + "4": 15.6356785088, + "5": 15.5120202554, + "6": 15.5120202554, + "7": 15.3271431448, + "8": 15.3271431448, + "9": 15.0817768025, + "10": 15.0817768025, + "11": 14.7768895774, + "12": 14.7768895774, + "13": 14.4136847201, + "14": 14.4136847201, + "15": 13.9935956342, + "16": 13.9935956342, + "17": 13.5182802193, + "18": 13.5182802193, + "19": 12.9896143284, + "20": 12.9896143284, + "21": 12.4096843641, + "22": 12.4096843641, + "23": 11.780779045, + "24": 11.780779045, + "25": 11.1053803732, + "26": 11.1053803732, + "27": 10.3861538386, + "28": 10.3861538386, + "29": 9.6259378998, + "30": 9.6259378998, + "31": 8.8277327818, + "32": 8.8277327818, + "33": 7.9946886355, + "34": 7.9946886355, + "35": 7.1300931055, + "36": 7.1300931055, + "37": 6.2373583556, + "38": 6.2373583556, + "39": 5.3200076017, + "40": 5.3200076017, + "41": 4.3816612084, + "42": 4.3816612084, + "43": 3.4260224, + "44": 3.4260224, + "45": 2.4568626464, + "46": 2.4568626464, + "47": 1.4780067784, + "48": 1.4780067784, + "49": 0.4933178929, + "50": 0.4933178929, + "51": -0.4933178929, + "52": -0.4933178929, + "53": -1.4780067784, + "54": -1.4780067784, + "55": -2.4568626464, + "56": -2.4568626464, + "57": -3.4260224, + "58": -3.4260224, + "59": -4.3816612084, + "60": -4.3816612084, + "61": -5.3200076017, + "62": -5.3200076017, + "63": -6.2373583556, + "64": -6.2373583556, + "65": -7.1300931055, + "66": -7.1300931055, + "67": -7.9946886355, + "68": -7.9946886355, + "69": -8.8277327818, + "70": -8.8277327818, + "71": -9.6259378998, + "72": -9.6259378998, + "73": -10.3861538386, + "74": -10.3861538386, + "75": -11.1053803732, + "76": -11.1053803732, + "77": -11.780779045, + "78": -11.780779045, + "79": -12.4096843641, + "80": -12.4096843641, + "81": -12.9896143284, + "82": -12.9896143284, + "83": -13.5182802193, + "84": -13.5182802193, + "85": -13.9935956342, + "86": -13.9935956342, + "87": -14.4136847201, + "88": -14.4136847201, + "89": -14.7768895774, + "90": -14.7768895774, + "91": -15.0817768025, + "92": -15.0817768025, + "93": -15.3271431448, + "94": -15.3271431448, + "95": -15.5120202554, + "96": -15.5120202554, + "97": -15.6356785088, + "98": -15.6356785087, + "99": -15.6976298823, + "100": -15.6976298823, + "101": -15.6976298823, + "102": -15.6976298823, + "103": -15.6356785087, + "104": -15.6356785088, + "105": -15.5120202554, + "106": -15.5120202554, + "107": -15.3271431448, + "108": -15.3271431448, + "109": -15.0817768025, + "110": -15.0817768025, + "111": -14.7768895774, + "112": -14.7768895774, + "113": -14.4136847201, + "114": -14.4136847201, + "115": -13.9935956342, + "116": -13.9935956342, + "117": -13.5182802193, + "118": -13.5182802193, + "119": -12.9896143284, + "120": -12.9896143284, + "121": -12.4096843641, + "122": -12.4096843641, + "123": -11.780779045, + "124": -11.780779045, + "125": -11.1053803732, + "126": -11.1053803732, + "127": -10.3861538386, + "128": -10.3861538386, + "129": -9.6259378998, + "130": -9.6259378998, + "131": -8.8277327818, + "132": -8.8277327818, + "133": -7.9946886355, + "134": -7.9946886355, + "135": -7.1300931055, + "136": -7.1300931055, + "137": -6.2373583556, + "138": -6.2373583556, + "139": -5.3200076017, + "140": -5.3200076017, + "141": -4.3816612084, + "142": -4.3816612084, + "143": -3.4260224, + "144": -3.4260224, + "145": -2.4568626464, + "146": -2.4568626464, + "147": -1.4780067784, + "148": -1.4780067784, + "149": -0.4933178929, + "150": -0.4933178929, + "151": 0.4933178929, + "152": 0.4933178929, + "153": 1.4780067784, + "154": 1.4780067784, + "155": 2.4568626464, + "156": 2.4568626464, + "157": 3.4260224, + "158": 3.4260224, + "159": 4.3816612084, + "160": 4.3816612084, + "161": 5.3200076017, + "162": 5.3200076017, + "163": 6.2373583556, + "164": 6.2373583556, + "165": 7.1300931055, + "166": 7.1300931055, + "167": 7.9946886355, + "168": 7.9946886355, + "169": 8.8277327818, + "170": 8.8277327818, + "171": 9.6259378998, + "172": 9.6259378998, + "173": 10.3861538386, + "174": 10.3861538386, + "175": 11.1053803732, + "176": 11.1053803732, + "177": 11.780779045, + "178": 11.780779045, + "179": 12.4096843641, + "180": 12.4096843641, + "181": 12.9896143284, + "182": 12.9896143284, + "183": 13.5182802193, + "184": 13.5182802193, + "185": 13.9935956342, + "186": 13.9935956342, + "187": 14.4136847201, + "188": 14.4136847201, + "189": 14.7768895774, + "190": 14.7768895774, + "191": 15.0817768025, + "192": 15.0817768025, + "193": 15.3271431448, + "194": 15.3271431448, + "195": 15.5120202554, + "196": 15.5120202554, + "197": 15.6356785088, + "198": 15.6356785087, + "199": 15.6976298823, + "200": 15.6976298823, + "201": 28411.4676679106, + "202": 28633.5845570844, + "203": 28844.9589792712, + "204": 28975.904617419, + "205": 29164.6124155498, + "206": 29203.870020059, + "207": 29369.1664506672, + "208": 29316.5810897101, + "209": 29457.8138033004, + "210": 29313.593007277, + "211": 29430.2046228401, + "212": 29194.9175653455, + "213": 29286.447870122, + "214": 28961.0231216714, + "215": 29027.1108873643, + "216": 28612.832750771, + "217": 28653.2171591672, + "218": 28151.7206009562, + "219": 28166.2422732454, + "220": 27579.5064712335, + "221": 27568.1080970038, + "222": 26898.4486293466, + "223": 26861.1751927741, + "224": 26111.2348994523, + "225": 26048.2335017623, + "226": 25220.9720545028, + "227": 25132.4913334204, + "228": 24231.1735552144, + "229": 24117.5627037321, + "230": 23145.7456840757, + "231": 23007.453072321, + "232": 21968.9721290054, + "233": 21806.5435347368, + "234": 20705.4970776116, + "235": 20519.5735322864, + "236": 19360.3068886913, + "237": 19151.6221476026, + "238": 17938.7104133677, + "239": 17708.0880598461, + "240": 16446.3180434585, + "241": 16194.6682385722, + "242": 14889.019569844, + "243": 14617.3354604014, + "244": 13272.9609381286, + "245": 12982.3147371934, + "246": 11604.5199934314, + "247": 11296.0587487761, + "248": 9890.281309919, + "249": 9565.2223771521, + "250": 8137.0102045179, + "251": 7796.6364427418, + "252": 6351.6260372853, + "253": 5997.280746236, + "254": 4541.1749038664, + "255": 4174.2565225224, + "256": 2712.8018277654, + "257": 2334.7584153484, + "258": 873.7225622142, + "259": 486.0460833614, + "260": -968.8048871286, + "261": -1364.5844504632, + "262": -2807.5089061825, + "263": -3209.829592881, + "264": -4635.1329702149, + "265": -5042.407004329, + "266": -6444.4642820037, + "267": -6855.0843389901, + "268": -8228.3622374638, + "269": -8640.7077875524, + "270": -9979.7866063572, + "271": -10392.2303100416, + "272": -11691.825316846, + "273": -12102.7394472553, + "274": -13357.721734295, + "275": -13765.4846010849, + "276": -14970.9013266271, + "277": -15373.9036760439, + "278": -16524.9976109731, + "279": -16921.6489768642, + "280": -18013.877279301, + "281": -18402.6122599392, + "282": -19431.6644037657, + "283": -19810.9488397784, + "284": -20772.7636263112, + "285": -21141.1006553139, + "286": -22031.8822409924, + "287": -22387.8182050085, + "288": -23204.0510818812, + "289": -23546.1812642675, + "290": -24284.6441340748, + "291": -24611.6183033058, + "292": -25269.3967904739, + "293": -25579.9245288722, + "294": -26154.4226822259, + "295": -26447.2784786858, + "296": -26936.2290164688, + "297": -27210.2571029551, + "298": -27611.7303607773, + "299": -27865.8492736241, + "300": -28178.2608199503, + "301": -28411.4676679105, + "302": -28633.5845570845, + "303": -28844.9589792714, + "304": -28975.9046174189, + "305": -29164.6124155498, + "306": -29203.8700200592, + "307": -29369.1664506671, + "308": -29316.58108971, + "309": -29457.8138033004, + "310": -29313.5930072768, + "311": -29430.2046228398, + "312": -29194.9175653457, + "313": -29286.447870122, + "314": -28961.0231216715, + "315": -29027.1108873643, + "316": -28612.8327507706, + "317": -28653.2171591671, + "318": -28151.7206009565, + "319": -28166.2422732458, + "320": -27579.5064712336, + "321": -27568.1080970041, + "322": -26898.4486293469, + "323": -26861.1751927743, + "324": -26111.2348994522, + "325": -26048.2335017622, + "326": -25220.9720545022, + "327": -25132.4913334199, + "328": -24231.1735552149, + "329": -24117.5627037329, + "330": -23145.7456840751, + "331": -23007.4530723201, + "332": -21968.9721290057, + "333": -21806.5435347367, + "334": -20705.4970776116, + "335": -20519.5735322865, + "336": -19360.3068886915, + "337": -19151.6221476027, + "338": -17938.7104133674, + "339": -17708.0880598458, + "340": -16446.3180434591, + "341": -16194.6682385729, + "342": -14889.0195698432, + "343": -14617.3354604009, + "344": -13272.9609381288, + "345": -12982.314737194, + "346": -11604.5199934308, + "347": -11296.0587487748, + "348": -9890.2813099195, + "349": -9565.2223771527, + "350": -8137.0102045177, + "351": -7796.636442742, + "352": -6351.6260372853, + "353": -5997.2807462361, + "354": -4541.1749038658, + "355": -4174.2565225218, + "356": -2712.8018277661, + "357": -2334.7584153492, + "358": -873.7225622138, + "359": -486.0460833614, + "360": 968.8048871278, + "361": 1364.5844504628, + "362": 2807.5089061833, + "363": 3209.8295928816, + "364": 4635.1329702148, + "365": 5042.4070043289, + "366": 6444.4642820038, + "367": 6855.0843389901, + "368": 8228.362237464, + "369": 8640.7077875521, + "370": 9979.7866063572, + "371": 10392.230310041, + "372": 11691.8253168457, + "373": 12102.7394472544, + "374": 13357.7217342957, + "375": 13765.4846010854, + "376": 14970.9013266272, + "377": 15373.9036760431, + "378": 16524.9976109728, + "379": 16921.6489768641, + "380": 18013.877279301, + "381": 18402.6122599393, + "382": 19431.6644037657, + "383": 19810.9488397786, + "384": 20772.7636263114, + "385": 21141.1006553143, + "386": 22031.8822409921, + "387": 22387.8182050084, + "388": 23204.0510818825, + "389": 23546.181264269, + "390": 24284.6441340737, + "391": 24611.6183033046, + "392": 25269.396790474, + "393": 25579.924528872, + "394": 26154.4226822259, + "395": 26447.2784786856, + "396": 26936.2290164689, + "397": 27210.2571029549, + "398": 27611.7303607774, + "399": 27865.8492736238, + "400": 28178.2608199504, + "401": 28411.4676679106, + "402": 15.6976298823, + "403": 15.6976298823, + "404": 15.6976298823, + "405": 15.6356785087, + "406": 15.6356785088, + "407": 15.5120202554, + "408": 15.5120202554, + "409": 15.3271431448, + "410": 15.3271431448, + "411": 15.0817768025, + "412": 15.0817768025, + "413": 14.7768895774, + "414": 14.7768895774, + "415": 14.4136847201, + "416": 14.4136847201, + "417": 13.9935956342, + "418": 13.9935956342, + "419": 13.5182802193, + "420": 13.5182802193, + "421": 12.9896143284, + "422": 12.9896143284, + "423": 12.4096843641, + "424": 12.4096843641, + "425": 11.780779045, + "426": 11.780779045, + "427": 11.1053803732, + "428": 11.1053803732, + "429": 10.3861538386, + "430": 10.3861538386, + "431": 9.6259378998, + "432": 9.6259378998, + "433": 8.8277327818, + "434": 8.8277327818, + "435": 7.9946886355, + "436": 7.9946886355, + "437": 7.1300931055, + "438": 7.1300931055, + "439": 6.2373583556, + "440": 6.2373583556, + "441": 5.3200076017, + "442": 5.3200076017, + "443": 4.3816612084, + "444": 4.3816612084, + "445": 3.4260224, + "446": 3.4260224, + "447": 2.4568626464, + "448": 2.4568626464, + "449": 1.4780067784, + "450": 1.4780067784, + "451": 0.4933178929, + "452": 0.4933178929, + "453": -0.4933178929, + "454": -0.4933178929, + "455": -1.4780067784, + "456": -1.4780067784, + "457": -2.4568626464, + "458": -2.4568626464, + "459": -3.4260224, + "460": -3.4260224, + "461": -4.3816612084, + "462": -4.3816612084, + "463": -5.3200076017, + "464": -5.3200076017, + "465": -6.2373583556, + "466": -6.2373583556, + "467": -7.1300931055, + "468": -7.1300931055, + "469": -7.9946886355, + "470": -7.9946886355, + "471": -8.8277327818, + "472": -8.8277327818, + "473": -9.6259378998, + "474": -9.6259378998, + "475": -10.3861538386, + "476": -10.3861538386, + "477": -11.1053803732, + "478": -11.1053803732, + "479": -11.780779045, + "480": -11.780779045, + "481": -12.4096843641, + "482": -12.4096843641, + "483": -12.9896143284, + "484": -12.9896143284, + "485": -13.5182802193, + "486": -13.5182802193, + "487": -13.9935956342, + "488": -13.9935956342, + "489": -14.4136847201, + "490": -14.4136847201, + "491": -14.7768895774, + "492": -14.7768895774, + "493": -15.0817768025, + "494": -15.0817768025, + "495": -15.3271431448, + "496": -15.3271431448, + "497": -15.5120202554, + "498": -15.5120202554, + "499": -15.6356785088, + "500": -15.6356785087, + "501": -15.6976298823, + "502": -15.6976298823, + "503": -15.6976298823, + "504": -15.6976298823, + "505": -15.6356785087, + "506": -15.6356785088, + "507": -15.5120202554, + "508": -15.5120202554, + "509": -15.3271431448, + "510": -15.3271431448, + "511": -15.0817768025, + "512": -15.0817768025, + "513": -14.7768895774, + "514": -14.7768895774, + "515": -14.4136847201, + "516": -14.4136847201, + "517": -13.9935956342, + "518": -13.9935956342, + "519": -13.5182802193, + "520": -13.5182802193, + "521": -12.9896143284, + "522": -12.9896143284, + "523": -12.4096843641, + "524": -12.4096843641, + "525": -11.780779045, + "526": -11.780779045, + "527": -11.1053803732, + "528": -11.1053803732, + "529": -10.3861538386, + "530": -10.3861538386, + "531": -9.6259378998, + "532": -9.6259378998, + "533": -8.8277327818, + "534": -8.8277327818, + "535": -7.9946886355, + "536": -7.9946886355, + "537": -7.1300931055, + "538": -7.1300931055, + "539": -6.2373583556, + "540": -6.2373583556, + "541": -5.3200076017, + "542": -5.3200076017, + "543": -4.3816612084, + "544": -4.3816612084, + "545": -3.4260224, + "546": -3.4260224, + "547": -2.4568626464, + "548": -2.4568626464, + "549": -1.4780067784, + "550": -1.4780067784, + "551": -0.4933178929, + "552": -0.4933178929, + "553": 0.4933178929, + "554": 0.4933178929, + "555": 1.4780067784, + "556": 1.4780067784, + "557": 2.4568626464, + "558": 2.4568626464, + "559": 3.4260224, + "560": 3.4260224, + "561": 4.3816612084, + "562": 4.3816612084, + "563": 5.3200076017, + "564": 5.3200076017, + "565": 6.2373583556, + "566": 6.2373583556, + "567": 7.1300931055, + "568": 7.1300931055, + "569": 7.9946886355, + "570": 7.9946886355, + "571": 8.8277327818, + "572": 8.8277327818, + "573": 9.6259378998, + "574": 9.6259378998, + "575": 10.3861538386, + "576": 10.3861538386, + "577": 11.1053803732, + "578": 11.1053803732, + "579": 11.780779045, + "580": 11.780779045, + "581": 12.4096843641, + "582": 12.4096843641, + "583": 12.9896143284, + "584": 12.9896143284, + "585": 13.5182802193, + "586": 13.5182802193, + "587": 13.9935956342, + "588": 13.9935956342, + "589": 14.4136847201, + "590": 14.4136847201, + "591": 14.7768895774, + "592": 14.7768895774, + "593": 15.0817768025, + "594": 15.0817768025, + "595": 15.3271431448, + "596": 15.3271431448, + "597": 15.5120202554, + "598": 15.5120202554, + "599": 15.6356785088, + "600": 15.6356785087, + "601": 15.6976298823, + "602": 15.6976298823, + "603": 26841.7046796776, + "604": 27063.8215688519, + "605": 27275.1959910382, + "606": 27412.3367665445, + "607": 27601.0445646747, + "608": 27652.6679945239, + "609": 27817.9644251314, + "610": 27783.8667752321, + "611": 27925.0994888219, + "612": 27805.4153270242, + "613": 27922.0269425881, + "614": 27717.228607602, + "615": 27808.758912379, + "616": 27519.6546496614, + "617": 27585.7424153546, + "618": 27213.4731873547, + "619": 27253.8575957511, + "620": 26799.8925790245, + "621": 26814.4142513132, + "622": 26280.5450383967, + "623": 26269.1466641669, + "624": 25657.4801929415, + "625": 25620.2067563685, + "626": 24933.1569949526, + "627": 24870.1555972623, + "628": 24110.4340171843, + "629": 24021.9532961025, + "630": 23192.5581713549, + "631": 23078.947319873, + "632": 22183.1518940966, + "633": 22044.859282342, + "634": 21086.1988508286, + "635": 20923.7702565603, + "636": 19906.0282140654, + "637": 19720.1046687401, + "638": 18647.2975781376, + "639": 18438.6128370487, + "640": 17314.974577812, + "641": 17084.35222429, + "642": 15914.3172832861, + "643": 15662.6674783996, + "644": 14450.8534490069, + "645": 14179.1693395645, + "646": 12930.3586981271, + "647": 12639.7124971925, + "648": 11358.8337287866, + "649": 11050.372484131, + "650": 9742.4806320742, + "651": 9417.4216993073, + "652": 8087.6784152247, + "653": 7747.3046534486, + "654": 6400.9578265785, + "655": 6046.6125355293, + "656": 4688.9755817115, + "657": 4322.0572003669, + "658": 2958.4880924101, + "659": 2580.4446799936, + "660": 1216.3248022156, + "661": 828.6483233629, + "662": -530.6387662915, + "663": -926.4183296263, + "664": -2275.5081460103, + "665": -2677.8288327086, + "666": -4011.397134659, + "667": -4418.6711687733, + "668": -5731.4549714496, + "669": -6142.0750284357, + "670": -7428.8933739181, + "671": -7841.238924006, + "672": -9097.0133281807, + "673": -9509.4570318644, + "674": -10729.2315268672, + "675": -11140.1456572761, + "676": -12319.1063504361, + "677": -12726.8692172254, + "678": -13860.3632893092, + "679": -14263.3656387256, + "680": -15346.9197064729, + "681": -15743.5710723646, + "682": -16772.9088428953, + "683": -17161.643823534, + "684": -18132.7029709286, + "685": -18511.9874069418, + "686": -19420.935604379, + "687": -19789.2726333817, + "688": -20632.5226775764, + "689": -20988.4586415923, + "690": -21762.6826098717, + "691": -22104.8127922575, + "692": -22806.9551763318, + "693": -23133.9293455622, + "694": -23761.2191102214, + "695": -24071.7468486202, + "696": -24621.7083677473, + "697": -24914.5641642078, + "698": -25385.0269909332, + "699": -25659.0550774199, + "700": -26048.1625099022, + "701": -26302.2814227494, + "702": -26608.4978317173, + "703": -26841.7046796775, + "704": -27063.821568852, + "705": -27275.1959910383, + "706": -27412.3367665444, + "707": -27601.0445646748, + "708": -27652.667994524, + "709": -27817.9644251314, + "710": -27783.866775232, + "711": -27925.0994888221, + "712": -27805.4153270241, + "713": -27922.026942588, + "714": -27717.2286076022, + "715": -27808.758912379, + "716": -27519.6546496615, + "717": -27585.7424153549, + "718": -27213.4731873543, + "719": -27253.8575957508, + "720": -26799.8925790248, + "721": -26814.4142513136, + "722": -26280.545038397, + "723": -26269.146664167, + "724": -25657.4801929417, + "725": -25620.2067563687, + "726": -24933.1569949525, + "727": -24870.155597262, + "728": -24110.434017184, + "729": -24021.9532961022, + "730": -23192.5581713553, + "731": -23078.9473198737, + "732": -22183.1518940959, + "733": -22044.8592823414, + "734": -21086.1988508288, + "735": -20923.7702565602, + "736": -19906.0282140653, + "737": -19720.1046687401, + "738": -18647.2975781377, + "739": -18438.6128370487, + "740": -17314.9745778117, + "741": -17084.35222429, + "742": -15914.3172832867, + "743": -15662.6674784004, + "744": -14450.8534490061, + "745": -14179.1693395641, + "746": -12930.3586981273, + "747": -12639.7124971927, + "748": -11358.833728786, + "749": -11050.3724841302, + "750": -9742.4806320747, + "751": -9417.4216993079, + "752": -8087.6784152245, + "753": -7747.3046534488, + "754": -6400.9578265785, + "755": -6046.6125355294, + "756": -4688.9755817106, + "757": -4322.0572003667, + "758": -2958.4880924108, + "759": -2580.444679994, + "760": -1216.3248022151, + "761": -828.6483233629, + "762": 530.6387662908, + "763": 926.4183296259, + "764": 2275.5081460106, + "765": 2677.8288327091, + "766": 4011.3971346589, + "767": 4418.6711687732, + "768": 5731.4549714498, + "769": 6142.075028436, + "770": 7428.893373918, + "771": 7841.2389240058, + "772": 9097.0133281806, + "773": 9509.4570318642, + "774": 10729.2315268669, + "775": 11140.1456572753, + "776": 12319.1063504365, + "777": 12726.8692172258, + "778": 13860.363289309, + "779": 14263.3656387252, + "780": 15346.9197064727, + "781": 15743.5710723643, + "782": 16772.9088428954, + "783": 17161.6438235341, + "784": 18132.7029709285, + "785": 18511.987406942, + "786": 19420.9356043792, + "787": 19789.272633382, + "788": 20632.5226775763, + "789": 20988.4586415922, + "790": 21762.6826098729, + "791": 22104.8127922588, + "792": 22806.9551763307, + "793": 23133.9293455612, + "794": 23761.2191102215, + "795": 24071.7468486199, + "796": 24621.7083677473, + "797": 24914.5641642077, + "798": 25385.0269909332, + "799": 25659.0550774197, + "800": 26048.1625099023, + "801": 26302.2814227494, + "802": 26608.4978317172, + "803": 26841.7046796776, + "804": 11144.0747973471, + "805": 11366.1916865271, + "806": 11577.5661087078, + "807": 11776.6582577996, + "808": 11965.3660559244, + "809": 12140.647739172, + "810": 12305.944169774, + "811": 12456.7236304522, + "812": 12597.9563440366, + "813": 12723.6385244989, + "814": 12840.2501400681, + "815": 12940.3390301668, + "816": 13031.869334949, + "817": 13105.9699295611, + "818": 13172.0576952596, + "819": 13219.8775531915, + "820": 13260.261961588, + "821": 13281.6123597072, + "822": 13296.1340319912, + "823": 13290.9307100305, + "824": 13279.532335796, + "825": 13247.7958288899, + "826": 13210.5223923127, + "827": 13152.377949955, + "828": 13089.3765522605, + "829": 13005.0536440017, + "830": 12916.5729229239, + "831": 12806.4043327592, + "832": 12692.7934812813, + "833": 12557.2139943049, + "834": 12418.9213825539, + "835": 12258.4660690605, + "836": 12096.037474795, + "837": 11911.3395786019, + "838": 11725.4160332771, + "839": 11517.2044726001, + "840": 11308.5197315088, + "841": 11077.6162222551, + "842": 10846.9938687314, + "843": 10594.3096815622, + "844": 10342.6598766742, + "845": 10069.192240636, + "846": 9797.5081311958, + "847": 9504.3362981124, + "848": 9213.6900971791, + "849": 8901.9710823383, + "850": 8593.5098376835, + "851": 8264.473853626, + "852": 7939.4149208597, + "853": 7594.3605222923, + "854": 7253.986760517, + "855": 6894.2757195105, + "856": 6539.9304284618, + "857": 6166.9823601587, + "858": 5800.0639788156, + "859": 5415.3507388577, + "860": 5037.307326442, + "861": 4642.3472022287, + "862": 4254.6707233779, + "863": 3851.0224420793, + "864": 3455.2428787427, + "865": 3044.4994557158, + "866": 2642.1787690155, + "867": 2225.9612209001, + "868": 1818.6871867836, + "869": 1398.6381340904, + "870": 988.0180771045, + "871": 565.7952615425, + "872": 153.4497114577, + "873": -269.2805464155, + "874": -681.7242500957, + "875": -1103.2936270794, + "876": -1514.2077574842, + "877": -1932.952511844, + "878": -2340.7153786295, + "879": -2754.9829161266, + "880": -3157.9852655467, + "881": -3566.1406614711, + "882": -3962.7920273669, + "883": -4363.2244788394, + "884": -4751.9594594825, + "885": -5143.0886425573, + "886": -5522.3730785753, + "887": -5902.6553850568, + "888": -6270.9924140594, + "889": -6638.9270434183, + "890": -6994.863007429, + "891": -7348.9978897766, + "892": -7691.1280721572, + "893": -8030.0655989017, + "894": -8357.0397681268, + "895": -8679.4423076961, + "896": -8989.9700460999, + "897": -9294.565222962, + "898": -9587.4210194277, + "899": -9873.0067355757, + "900": -10147.0348220678, + "901": -10412.4840011518, + "902": -10666.6029140045, + "903": -10910.8679493869, + "904": -11144.0747973471, + "905": -11366.1916865271, + "906": -11577.5661087078, + "907": -11776.6582577996, + "908": -11965.3660559244, + "909": -12140.647739172, + "910": -12305.944169774, + "911": -12456.7236304522, + "912": -12597.9563440366, + "913": -12723.6385244989, + "914": -12840.2501400681, + "915": -12940.3390301668, + "916": -13031.869334949, + "917": -13105.9699295611, + "918": -13172.0576952596, + "919": -13219.8775531915, + "920": -13260.261961588, + "921": -13281.6123597072, + "922": -13296.1340319912, + "923": -13290.9307100305, + "924": -13279.532335796, + "925": -13247.79582889, + "926": -13210.5223923127, + "927": -13152.377949955, + "928": -13089.3765522605, + "929": -13005.0536440017, + "930": -12916.5729229239, + "931": -12806.4043327592, + "932": -12692.7934812813, + "933": -12557.2139943049, + "934": -12418.9213825539, + "935": -12258.4660690605, + "936": -12096.037474795, + "937": -11911.3395786019, + "938": -11725.4160332771, + "939": -11517.2044726001, + "940": -11308.5197315088, + "941": -11077.616222255, + "942": -10846.9938687314, + "943": -10594.3096815622, + "944": -10342.6598766742, + "945": -10069.192240636, + "946": -9797.5081311957, + "947": -9504.3362981124, + "948": -9213.6900971791, + "949": -8901.9710823383, + "950": -8593.5098376835, + "951": -8264.473853626, + "952": -7939.4149208597, + "953": -7594.3605222923, + "954": -7253.986760517, + "955": -6894.2757195105, + "956": -6539.9304284618, + "957": -6166.9823601587, + "958": -5800.0639788155, + "959": -5415.3507388577, + "960": -5037.307326442, + "961": -4642.3472022288, + "962": -4254.6707233779, + "963": -3851.0224420793, + "964": -3455.2428787427, + "965": -3044.4994557158, + "966": -2642.1787690155, + "967": -2225.9612209001, + "968": -1818.6871867836, + "969": -1398.6381340904, + "970": -988.0180771045, + "971": -565.7952615424, + "972": -153.4497114577, + "973": 269.2805464155, + "974": 681.7242500957, + "975": 1103.2936270793, + "976": 1514.2077574841, + "977": 1932.952511844, + "978": 2340.7153786295, + "979": 2754.9829161266, + "980": 3157.9852655466, + "981": 3566.140661471, + "982": 3962.7920273668, + "983": 4363.2244788393, + "984": 4751.9594594825, + "985": 5143.0886425573, + "986": 5522.3730785753, + "987": 5902.6553850568, + "988": 6270.9924140594, + "989": 6638.9270434183, + "990": 6994.863007429, + "991": 7348.9978897766, + "992": 7691.1280721573, + "993": 8030.0655989017, + "994": 8357.0397681268, + "995": 8679.4423076962, + "996": 8989.9700460999, + "997": 9294.565222962, + "998": 9587.4210194277, + "999": 9873.0067355757, + "1000": 10147.0348220678, + "1001": 10412.4840011518, + "1002": 10666.6029140045, + "1003": 10910.8679493868, + "1004": 11144.0747973471 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_R_RCR_mean.json b/tests/cases/results/result_pulsatileFlow_R_RCR_mean.json index de34f3930..aadd0950a 100644 --- a/tests/cases/results/result_pulsatileFlow_R_RCR_mean.json +++ b/tests/cases/results/result_pulsatileFlow_R_RCR_mean.json @@ -1 +1,8 @@ -{"name":{"0":"branch0_seg0"},"time":{"0":null},"flow_in":{"0":2.2},"flow_out":{"0":2.2},"pressure_in":{"0":4630.9730182481},"pressure_out":{"0":4410.9730182481}} \ No newline at end of file +{ + "name": { "0": "branch0_seg0" }, + "time": { "0": null }, + "flow_in": { "0": 2.2 }, + "flow_out": { "0": 2.2 }, + "pressure_in": { "0": 4630.9730182481 }, + "pressure_out": { "0": 4410.9730182481 } +} diff --git a/tests/cases/results/result_pulsatileFlow_R_RCR_mean_derivative.json b/tests/cases/results/result_pulsatileFlow_R_RCR_mean_derivative.json index 460b73121..b5e01de24 100644 --- a/tests/cases/results/result_pulsatileFlow_R_RCR_mean_derivative.json +++ b/tests/cases/results/result_pulsatileFlow_R_RCR_mean_derivative.json @@ -1 +1,12 @@ -{"name":{"0":"branch0_seg0"},"time":{"0":null},"flow_in":{"0":2.2},"flow_out":{"0":2.2},"pressure_in":{"0":4630.9730182481},"pressure_out":{"0":4410.9730182481},"d_flow_in":{"0":0.0026103859},"d_flow_out":{"0":0.0026103859},"d_pressure_in":{"0":-107.7997264094},"d_pressure_out":{"0":-108.0607649967}} \ No newline at end of file +{ + "name": { "0": "branch0_seg0" }, + "time": { "0": null }, + "flow_in": { "0": 2.2 }, + "flow_out": { "0": 2.2 }, + "pressure_in": { "0": 4630.9730182481 }, + "pressure_out": { "0": 4410.9730182481 }, + "d_flow_in": { "0": 0.0026103859 }, + "d_flow_out": { "0": 0.0026103859 }, + "d_pressure_in": { "0": -107.7997264094 }, + "d_pressure_out": { "0": -108.0607649967 } +} diff --git a/tests/cases/results/result_pulsatileFlow_R_RCR_mean_derivative_variable.json b/tests/cases/results/result_pulsatileFlow_R_RCR_mean_derivative_variable.json index 41ae3801b..9c0e9d1c2 100644 --- a/tests/cases/results/result_pulsatileFlow_R_RCR_mean_derivative_variable.json +++ b/tests/cases/results/result_pulsatileFlow_R_RCR_mean_derivative_variable.json @@ -1 +1,24 @@ -{"name":{"0":"flow:INFLOW:branch0_seg0","1":"pressure:INFLOW:branch0_seg0","2":"flow:branch0_seg0:OUT","3":"pressure:branch0_seg0:OUT","4":"pressure_c:OUT"},"time":{"0":null,"1":null,"2":null,"3":null,"4":null},"y":{"0":2.2,"1":4630.9730182481,"2":2.2,"3":4410.9730182481,"4":2210.9730182477},"ydot":{"0":0.0026103859,"1":-107.7997264094,"2":0.0026103859,"3":-108.0607649967,"4":-110.6711508692}} \ No newline at end of file +{ + "name": { + "0": "flow:INFLOW:branch0_seg0", + "1": "pressure:INFLOW:branch0_seg0", + "2": "flow:branch0_seg0:OUT", + "3": "pressure:branch0_seg0:OUT", + "4": "pressure_c:OUT" + }, + "time": { "0": null, "1": null, "2": null, "3": null, "4": null }, + "y": { + "0": 2.2, + "1": 4630.9730182481, + "2": 2.2, + "3": 4410.9730182481, + "4": 2210.9730182477 + }, + "ydot": { + "0": 0.0026103859, + "1": -107.7997264094, + "2": 0.0026103859, + "3": -108.0607649967, + "4": -110.6711508692 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_R_RCR_mean_variable.json b/tests/cases/results/result_pulsatileFlow_R_RCR_mean_variable.json index 355b61e36..1c0d77c1f 100644 --- a/tests/cases/results/result_pulsatileFlow_R_RCR_mean_variable.json +++ b/tests/cases/results/result_pulsatileFlow_R_RCR_mean_variable.json @@ -1 +1,17 @@ -{"name":{"0":"flow:INFLOW:branch0_seg0","1":"pressure:INFLOW:branch0_seg0","2":"flow:branch0_seg0:OUT","3":"pressure:branch0_seg0:OUT","4":"pressure_c:OUT"},"time":{"0":null,"1":null,"2":null,"3":null,"4":null},"y":{"0":2.2,"1":4630.9730182481,"2":2.2,"3":4410.9730182481,"4":2210.9730182477}} \ No newline at end of file +{ + "name": { + "0": "flow:INFLOW:branch0_seg0", + "1": "pressure:INFLOW:branch0_seg0", + "2": "flow:branch0_seg0:OUT", + "3": "pressure:branch0_seg0:OUT", + "4": "pressure_c:OUT" + }, + "time": { "0": null, "1": null, "2": null, "3": null, "4": null }, + "y": { + "0": 2.2, + "1": 4630.9730182481, + "2": 2.2, + "3": 4410.9730182481, + "4": 2210.9730182477 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_R_RCR_variable.json b/tests/cases/results/result_pulsatileFlow_R_RCR_variable.json index 7b13598fa..82ba4cf81 100644 --- a/tests/cases/results/result_pulsatileFlow_R_RCR_variable.json +++ b/tests/cases/results/result_pulsatileFlow_R_RCR_variable.json @@ -1 +1,12020 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0","101":"branch0_seg0","102":"branch0_seg0","103":"branch0_seg0","104":"branch0_seg0","105":"branch0_seg0","106":"branch0_seg0","107":"branch0_seg0","108":"branch0_seg0","109":"branch0_seg0","110":"branch0_seg0","111":"branch0_seg0","112":"branch0_seg0","113":"branch0_seg0","114":"branch0_seg0","115":"branch0_seg0","116":"branch0_seg0","117":"branch0_seg0","118":"branch0_seg0","119":"branch0_seg0","120":"branch0_seg0","121":"branch0_seg0","122":"branch0_seg0","123":"branch0_seg0","124":"branch0_seg0","125":"branch0_seg0","126":"branch0_seg0","127":"branch0_seg0","128":"branch0_seg0","129":"branch0_seg0","130":"branch0_seg0","131":"branch0_seg0","132":"branch0_seg0","133":"branch0_seg0","134":"branch0_seg0","135":"branch0_seg0","136":"branch0_seg0","137":"branch0_seg0","138":"branch0_seg0","139":"branch0_seg0","140":"branch0_seg0","141":"branch0_seg0","142":"branch0_seg0","143":"branch0_seg0","144":"branch0_seg0","145":"branch0_seg0","146":"branch0_seg0","147":"branch0_seg0","148":"branch0_seg0","149":"branch0_seg0","150":"branch0_seg0","151":"branch0_seg0","152":"branch0_seg0","153":"branch0_seg0","154":"branch0_seg0","155":"branch0_seg0","156":"branch0_seg0","157":"branch0_seg0","158":"branch0_seg0","159":"branch0_seg0","160":"branch0_seg0","161":"branch0_seg0","162":"branch0_seg0","163":"branch0_seg0","164":"branch0_seg0","165":"branch0_seg0","166":"branch0_seg0","167":"branch0_seg0","168":"branch0_seg0","169":"branch0_seg0","170":"branch0_seg0","171":"branch0_seg0","172":"branch0_seg0","173":"branch0_seg0","174":"branch0_seg0","175":"branch0_seg0","176":"branch0_seg0","177":"branch0_seg0","178":"branch0_seg0","179":"branch0_seg0","180":"branch0_seg0","181":"branch0_seg0","182":"branch0_seg0","183":"branch0_seg0","184":"branch0_seg0","185":"branch0_seg0","186":"branch0_seg0","187":"branch0_seg0","188":"branch0_seg0","189":"branch0_seg0","190":"branch0_seg0","191":"branch0_seg0","192":"branch0_seg0","193":"branch0_seg0","194":"branch0_seg0","195":"branch0_seg0","196":"branch0_seg0","197":"branch0_seg0","198":"branch0_seg0","199":"branch0_seg0","200":"branch0_seg0","201":"branch0_seg0","202":"branch0_seg0","203":"branch0_seg0","204":"branch0_seg0","205":"branch0_seg0","206":"branch0_seg0","207":"branch0_seg0","208":"branch0_seg0","209":"branch0_seg0","210":"branch0_seg0","211":"branch0_seg0","212":"branch0_seg0","213":"branch0_seg0","214":"branch0_seg0","215":"branch0_seg0","216":"branch0_seg0","217":"branch0_seg0","218":"branch0_seg0","219":"branch0_seg0","220":"branch0_seg0","221":"branch0_seg0","222":"branch0_seg0","223":"branch0_seg0","224":"branch0_seg0","225":"branch0_seg0","226":"branch0_seg0","227":"branch0_seg0","228":"branch0_seg0","229":"branch0_seg0","230":"branch0_seg0","231":"branch0_seg0","232":"branch0_seg0","233":"branch0_seg0","234":"branch0_seg0","235":"branch0_seg0","236":"branch0_seg0","237":"branch0_seg0","238":"branch0_seg0","239":"branch0_seg0","240":"branch0_seg0","241":"branch0_seg0","242":"branch0_seg0","243":"branch0_seg0","244":"branch0_seg0","245":"branch0_seg0","246":"branch0_seg0","247":"branch0_seg0","248":"branch0_seg0","249":"branch0_seg0","250":"branch0_seg0","251":"branch0_seg0","252":"branch0_seg0","253":"branch0_seg0","254":"branch0_seg0","255":"branch0_seg0","256":"branch0_seg0","257":"branch0_seg0","258":"branch0_seg0","259":"branch0_seg0","260":"branch0_seg0","261":"branch0_seg0","262":"branch0_seg0","263":"branch0_seg0","264":"branch0_seg0","265":"branch0_seg0","266":"branch0_seg0","267":"branch0_seg0","268":"branch0_seg0","269":"branch0_seg0","270":"branch0_seg0","271":"branch0_seg0","272":"branch0_seg0","273":"branch0_seg0","274":"branch0_seg0","275":"branch0_seg0","276":"branch0_seg0","277":"branch0_seg0","278":"branch0_seg0","279":"branch0_seg0","280":"branch0_seg0","281":"branch0_seg0","282":"branch0_seg0","283":"branch0_seg0","284":"branch0_seg0","285":"branch0_seg0","286":"branch0_seg0","287":"branch0_seg0","288":"branch0_seg0","289":"branch0_seg0","290":"branch0_seg0","291":"branch0_seg0","292":"branch0_seg0","293":"branch0_seg0","294":"branch0_seg0","295":"branch0_seg0","296":"branch0_seg0","297":"branch0_seg0","298":"branch0_seg0","299":"branch0_seg0","300":"branch0_seg0","301":"branch0_seg0","302":"branch0_seg0","303":"branch0_seg0","304":"branch0_seg0","305":"branch0_seg0","306":"branch0_seg0","307":"branch0_seg0","308":"branch0_seg0","309":"branch0_seg0","310":"branch0_seg0","311":"branch0_seg0","312":"branch0_seg0","313":"branch0_seg0","314":"branch0_seg0","315":"branch0_seg0","316":"branch0_seg0","317":"branch0_seg0","318":"branch0_seg0","319":"branch0_seg0","320":"branch0_seg0","321":"branch0_seg0","322":"branch0_seg0","323":"branch0_seg0","324":"branch0_seg0","325":"branch0_seg0","326":"branch0_seg0","327":"branch0_seg0","328":"branch0_seg0","329":"branch0_seg0","330":"branch0_seg0","331":"branch0_seg0","332":"branch0_seg0","333":"branch0_seg0","334":"branch0_seg0","335":"branch0_seg0","336":"branch0_seg0","337":"branch0_seg0","338":"branch0_seg0","339":"branch0_seg0","340":"branch0_seg0","341":"branch0_seg0","342":"branch0_seg0","343":"branch0_seg0","344":"branch0_seg0","345":"branch0_seg0","346":"branch0_seg0","347":"branch0_seg0","348":"branch0_seg0","349":"branch0_seg0","350":"branch0_seg0","351":"branch0_seg0","352":"branch0_seg0","353":"branch0_seg0","354":"branch0_seg0","355":"branch0_seg0","356":"branch0_seg0","357":"branch0_seg0","358":"branch0_seg0","359":"branch0_seg0","360":"branch0_seg0","361":"branch0_seg0","362":"branch0_seg0","363":"branch0_seg0","364":"branch0_seg0","365":"branch0_seg0","366":"branch0_seg0","367":"branch0_seg0","368":"branch0_seg0","369":"branch0_seg0","370":"branch0_seg0","371":"branch0_seg0","372":"branch0_seg0","373":"branch0_seg0","374":"branch0_seg0","375":"branch0_seg0","376":"branch0_seg0","377":"branch0_seg0","378":"branch0_seg0","379":"branch0_seg0","380":"branch0_seg0","381":"branch0_seg0","382":"branch0_seg0","383":"branch0_seg0","384":"branch0_seg0","385":"branch0_seg0","386":"branch0_seg0","387":"branch0_seg0","388":"branch0_seg0","389":"branch0_seg0","390":"branch0_seg0","391":"branch0_seg0","392":"branch0_seg0","393":"branch0_seg0","394":"branch0_seg0","395":"branch0_seg0","396":"branch0_seg0","397":"branch0_seg0","398":"branch0_seg0","399":"branch0_seg0","400":"branch0_seg0","401":"branch0_seg0","402":"branch0_seg0","403":"branch0_seg0","404":"branch0_seg0","405":"branch0_seg0","406":"branch0_seg0","407":"branch0_seg0","408":"branch0_seg0","409":"branch0_seg0","410":"branch0_seg0","411":"branch0_seg0","412":"branch0_seg0","413":"branch0_seg0","414":"branch0_seg0","415":"branch0_seg0","416":"branch0_seg0","417":"branch0_seg0","418":"branch0_seg0","419":"branch0_seg0","420":"branch0_seg0","421":"branch0_seg0","422":"branch0_seg0","423":"branch0_seg0","424":"branch0_seg0","425":"branch0_seg0","426":"branch0_seg0","427":"branch0_seg0","428":"branch0_seg0","429":"branch0_seg0","430":"branch0_seg0","431":"branch0_seg0","432":"branch0_seg0","433":"branch0_seg0","434":"branch0_seg0","435":"branch0_seg0","436":"branch0_seg0","437":"branch0_seg0","438":"branch0_seg0","439":"branch0_seg0","440":"branch0_seg0","441":"branch0_seg0","442":"branch0_seg0","443":"branch0_seg0","444":"branch0_seg0","445":"branch0_seg0","446":"branch0_seg0","447":"branch0_seg0","448":"branch0_seg0","449":"branch0_seg0","450":"branch0_seg0","451":"branch0_seg0","452":"branch0_seg0","453":"branch0_seg0","454":"branch0_seg0","455":"branch0_seg0","456":"branch0_seg0","457":"branch0_seg0","458":"branch0_seg0","459":"branch0_seg0","460":"branch0_seg0","461":"branch0_seg0","462":"branch0_seg0","463":"branch0_seg0","464":"branch0_seg0","465":"branch0_seg0","466":"branch0_seg0","467":"branch0_seg0","468":"branch0_seg0","469":"branch0_seg0","470":"branch0_seg0","471":"branch0_seg0","472":"branch0_seg0","473":"branch0_seg0","474":"branch0_seg0","475":"branch0_seg0","476":"branch0_seg0","477":"branch0_seg0","478":"branch0_seg0","479":"branch0_seg0","480":"branch0_seg0","481":"branch0_seg0","482":"branch0_seg0","483":"branch0_seg0","484":"branch0_seg0","485":"branch0_seg0","486":"branch0_seg0","487":"branch0_seg0","488":"branch0_seg0","489":"branch0_seg0","490":"branch0_seg0","491":"branch0_seg0","492":"branch0_seg0","493":"branch0_seg0","494":"branch0_seg0","495":"branch0_seg0","496":"branch0_seg0","497":"branch0_seg0","498":"branch0_seg0","499":"branch0_seg0","500":"branch0_seg0","501":"branch0_seg0","502":"branch0_seg0","503":"branch0_seg0","504":"branch0_seg0","505":"branch0_seg0","506":"branch0_seg0","507":"branch0_seg0","508":"branch0_seg0","509":"branch0_seg0","510":"branch0_seg0","511":"branch0_seg0","512":"branch0_seg0","513":"branch0_seg0","514":"branch0_seg0","515":"branch0_seg0","516":"branch0_seg0","517":"branch0_seg0","518":"branch0_seg0","519":"branch0_seg0","520":"branch0_seg0","521":"branch0_seg0","522":"branch0_seg0","523":"branch0_seg0","524":"branch0_seg0","525":"branch0_seg0","526":"branch0_seg0","527":"branch0_seg0","528":"branch0_seg0","529":"branch0_seg0","530":"branch0_seg0","531":"branch0_seg0","532":"branch0_seg0","533":"branch0_seg0","534":"branch0_seg0","535":"branch0_seg0","536":"branch0_seg0","537":"branch0_seg0","538":"branch0_seg0","539":"branch0_seg0","540":"branch0_seg0","541":"branch0_seg0","542":"branch0_seg0","543":"branch0_seg0","544":"branch0_seg0","545":"branch0_seg0","546":"branch0_seg0","547":"branch0_seg0","548":"branch0_seg0","549":"branch0_seg0","550":"branch0_seg0","551":"branch0_seg0","552":"branch0_seg0","553":"branch0_seg0","554":"branch0_seg0","555":"branch0_seg0","556":"branch0_seg0","557":"branch0_seg0","558":"branch0_seg0","559":"branch0_seg0","560":"branch0_seg0","561":"branch0_seg0","562":"branch0_seg0","563":"branch0_seg0","564":"branch0_seg0","565":"branch0_seg0","566":"branch0_seg0","567":"branch0_seg0","568":"branch0_seg0","569":"branch0_seg0","570":"branch0_seg0","571":"branch0_seg0","572":"branch0_seg0","573":"branch0_seg0","574":"branch0_seg0","575":"branch0_seg0","576":"branch0_seg0","577":"branch0_seg0","578":"branch0_seg0","579":"branch0_seg0","580":"branch0_seg0","581":"branch0_seg0","582":"branch0_seg0","583":"branch0_seg0","584":"branch0_seg0","585":"branch0_seg0","586":"branch0_seg0","587":"branch0_seg0","588":"branch0_seg0","589":"branch0_seg0","590":"branch0_seg0","591":"branch0_seg0","592":"branch0_seg0","593":"branch0_seg0","594":"branch0_seg0","595":"branch0_seg0","596":"branch0_seg0","597":"branch0_seg0","598":"branch0_seg0","599":"branch0_seg0","600":"branch0_seg0","601":"branch0_seg0","602":"branch0_seg0","603":"branch0_seg0","604":"branch0_seg0","605":"branch0_seg0","606":"branch0_seg0","607":"branch0_seg0","608":"branch0_seg0","609":"branch0_seg0","610":"branch0_seg0","611":"branch0_seg0","612":"branch0_seg0","613":"branch0_seg0","614":"branch0_seg0","615":"branch0_seg0","616":"branch0_seg0","617":"branch0_seg0","618":"branch0_seg0","619":"branch0_seg0","620":"branch0_seg0","621":"branch0_seg0","622":"branch0_seg0","623":"branch0_seg0","624":"branch0_seg0","625":"branch0_seg0","626":"branch0_seg0","627":"branch0_seg0","628":"branch0_seg0","629":"branch0_seg0","630":"branch0_seg0","631":"branch0_seg0","632":"branch0_seg0","633":"branch0_seg0","634":"branch0_seg0","635":"branch0_seg0","636":"branch0_seg0","637":"branch0_seg0","638":"branch0_seg0","639":"branch0_seg0","640":"branch0_seg0","641":"branch0_seg0","642":"branch0_seg0","643":"branch0_seg0","644":"branch0_seg0","645":"branch0_seg0","646":"branch0_seg0","647":"branch0_seg0","648":"branch0_seg0","649":"branch0_seg0","650":"branch0_seg0","651":"branch0_seg0","652":"branch0_seg0","653":"branch0_seg0","654":"branch0_seg0","655":"branch0_seg0","656":"branch0_seg0","657":"branch0_seg0","658":"branch0_seg0","659":"branch0_seg0","660":"branch0_seg0","661":"branch0_seg0","662":"branch0_seg0","663":"branch0_seg0","664":"branch0_seg0","665":"branch0_seg0","666":"branch0_seg0","667":"branch0_seg0","668":"branch0_seg0","669":"branch0_seg0","670":"branch0_seg0","671":"branch0_seg0","672":"branch0_seg0","673":"branch0_seg0","674":"branch0_seg0","675":"branch0_seg0","676":"branch0_seg0","677":"branch0_seg0","678":"branch0_seg0","679":"branch0_seg0","680":"branch0_seg0","681":"branch0_seg0","682":"branch0_seg0","683":"branch0_seg0","684":"branch0_seg0","685":"branch0_seg0","686":"branch0_seg0","687":"branch0_seg0","688":"branch0_seg0","689":"branch0_seg0","690":"branch0_seg0","691":"branch0_seg0","692":"branch0_seg0","693":"branch0_seg0","694":"branch0_seg0","695":"branch0_seg0","696":"branch0_seg0","697":"branch0_seg0","698":"branch0_seg0","699":"branch0_seg0","700":"branch0_seg0","701":"branch0_seg0","702":"branch0_seg0","703":"branch0_seg0","704":"branch0_seg0","705":"branch0_seg0","706":"branch0_seg0","707":"branch0_seg0","708":"branch0_seg0","709":"branch0_seg0","710":"branch0_seg0","711":"branch0_seg0","712":"branch0_seg0","713":"branch0_seg0","714":"branch0_seg0","715":"branch0_seg0","716":"branch0_seg0","717":"branch0_seg0","718":"branch0_seg0","719":"branch0_seg0","720":"branch0_seg0","721":"branch0_seg0","722":"branch0_seg0","723":"branch0_seg0","724":"branch0_seg0","725":"branch0_seg0","726":"branch0_seg0","727":"branch0_seg0","728":"branch0_seg0","729":"branch0_seg0","730":"branch0_seg0","731":"branch0_seg0","732":"branch0_seg0","733":"branch0_seg0","734":"branch0_seg0","735":"branch0_seg0","736":"branch0_seg0","737":"branch0_seg0","738":"branch0_seg0","739":"branch0_seg0","740":"branch0_seg0","741":"branch0_seg0","742":"branch0_seg0","743":"branch0_seg0","744":"branch0_seg0","745":"branch0_seg0","746":"branch0_seg0","747":"branch0_seg0","748":"branch0_seg0","749":"branch0_seg0","750":"branch0_seg0","751":"branch0_seg0","752":"branch0_seg0","753":"branch0_seg0","754":"branch0_seg0","755":"branch0_seg0","756":"branch0_seg0","757":"branch0_seg0","758":"branch0_seg0","759":"branch0_seg0","760":"branch0_seg0","761":"branch0_seg0","762":"branch0_seg0","763":"branch0_seg0","764":"branch0_seg0","765":"branch0_seg0","766":"branch0_seg0","767":"branch0_seg0","768":"branch0_seg0","769":"branch0_seg0","770":"branch0_seg0","771":"branch0_seg0","772":"branch0_seg0","773":"branch0_seg0","774":"branch0_seg0","775":"branch0_seg0","776":"branch0_seg0","777":"branch0_seg0","778":"branch0_seg0","779":"branch0_seg0","780":"branch0_seg0","781":"branch0_seg0","782":"branch0_seg0","783":"branch0_seg0","784":"branch0_seg0","785":"branch0_seg0","786":"branch0_seg0","787":"branch0_seg0","788":"branch0_seg0","789":"branch0_seg0","790":"branch0_seg0","791":"branch0_seg0","792":"branch0_seg0","793":"branch0_seg0","794":"branch0_seg0","795":"branch0_seg0","796":"branch0_seg0","797":"branch0_seg0","798":"branch0_seg0","799":"branch0_seg0","800":"branch0_seg0","801":"branch0_seg0","802":"branch0_seg0","803":"branch0_seg0","804":"branch0_seg0","805":"branch0_seg0","806":"branch0_seg0","807":"branch0_seg0","808":"branch0_seg0","809":"branch0_seg0","810":"branch0_seg0","811":"branch0_seg0","812":"branch0_seg0","813":"branch0_seg0","814":"branch0_seg0","815":"branch0_seg0","816":"branch0_seg0","817":"branch0_seg0","818":"branch0_seg0","819":"branch0_seg0","820":"branch0_seg0","821":"branch0_seg0","822":"branch0_seg0","823":"branch0_seg0","824":"branch0_seg0","825":"branch0_seg0","826":"branch0_seg0","827":"branch0_seg0","828":"branch0_seg0","829":"branch0_seg0","830":"branch0_seg0","831":"branch0_seg0","832":"branch0_seg0","833":"branch0_seg0","834":"branch0_seg0","835":"branch0_seg0","836":"branch0_seg0","837":"branch0_seg0","838":"branch0_seg0","839":"branch0_seg0","840":"branch0_seg0","841":"branch0_seg0","842":"branch0_seg0","843":"branch0_seg0","844":"branch0_seg0","845":"branch0_seg0","846":"branch0_seg0","847":"branch0_seg0","848":"branch0_seg0","849":"branch0_seg0","850":"branch0_seg0","851":"branch0_seg0","852":"branch0_seg0","853":"branch0_seg0","854":"branch0_seg0","855":"branch0_seg0","856":"branch0_seg0","857":"branch0_seg0","858":"branch0_seg0","859":"branch0_seg0","860":"branch0_seg0","861":"branch0_seg0","862":"branch0_seg0","863":"branch0_seg0","864":"branch0_seg0","865":"branch0_seg0","866":"branch0_seg0","867":"branch0_seg0","868":"branch0_seg0","869":"branch0_seg0","870":"branch0_seg0","871":"branch0_seg0","872":"branch0_seg0","873":"branch0_seg0","874":"branch0_seg0","875":"branch0_seg0","876":"branch0_seg0","877":"branch0_seg0","878":"branch0_seg0","879":"branch0_seg0","880":"branch0_seg0","881":"branch0_seg0","882":"branch0_seg0","883":"branch0_seg0","884":"branch0_seg0","885":"branch0_seg0","886":"branch0_seg0","887":"branch0_seg0","888":"branch0_seg0","889":"branch0_seg0","890":"branch0_seg0","891":"branch0_seg0","892":"branch0_seg0","893":"branch0_seg0","894":"branch0_seg0","895":"branch0_seg0","896":"branch0_seg0","897":"branch0_seg0","898":"branch0_seg0","899":"branch0_seg0","900":"branch0_seg0","901":"branch0_seg0","902":"branch0_seg0","903":"branch0_seg0","904":"branch0_seg0","905":"branch0_seg0","906":"branch0_seg0","907":"branch0_seg0","908":"branch0_seg0","909":"branch0_seg0","910":"branch0_seg0","911":"branch0_seg0","912":"branch0_seg0","913":"branch0_seg0","914":"branch0_seg0","915":"branch0_seg0","916":"branch0_seg0","917":"branch0_seg0","918":"branch0_seg0","919":"branch0_seg0","920":"branch0_seg0","921":"branch0_seg0","922":"branch0_seg0","923":"branch0_seg0","924":"branch0_seg0","925":"branch0_seg0","926":"branch0_seg0","927":"branch0_seg0","928":"branch0_seg0","929":"branch0_seg0","930":"branch0_seg0","931":"branch0_seg0","932":"branch0_seg0","933":"branch0_seg0","934":"branch0_seg0","935":"branch0_seg0","936":"branch0_seg0","937":"branch0_seg0","938":"branch0_seg0","939":"branch0_seg0","940":"branch0_seg0","941":"branch0_seg0","942":"branch0_seg0","943":"branch0_seg0","944":"branch0_seg0","945":"branch0_seg0","946":"branch0_seg0","947":"branch0_seg0","948":"branch0_seg0","949":"branch0_seg0","950":"branch0_seg0","951":"branch0_seg0","952":"branch0_seg0","953":"branch0_seg0","954":"branch0_seg0","955":"branch0_seg0","956":"branch0_seg0","957":"branch0_seg0","958":"branch0_seg0","959":"branch0_seg0","960":"branch0_seg0","961":"branch0_seg0","962":"branch0_seg0","963":"branch0_seg0","964":"branch0_seg0","965":"branch0_seg0","966":"branch0_seg0","967":"branch0_seg0","968":"branch0_seg0","969":"branch0_seg0","970":"branch0_seg0","971":"branch0_seg0","972":"branch0_seg0","973":"branch0_seg0","974":"branch0_seg0","975":"branch0_seg0","976":"branch0_seg0","977":"branch0_seg0","978":"branch0_seg0","979":"branch0_seg0","980":"branch0_seg0","981":"branch0_seg0","982":"branch0_seg0","983":"branch0_seg0","984":"branch0_seg0","985":"branch0_seg0","986":"branch0_seg0","987":"branch0_seg0","988":"branch0_seg0","989":"branch0_seg0","990":"branch0_seg0","991":"branch0_seg0","992":"branch0_seg0","993":"branch0_seg0","994":"branch0_seg0","995":"branch0_seg0","996":"branch0_seg0","997":"branch0_seg0","998":"branch0_seg0","999":"branch0_seg0","1000":"branch0_seg0","1001":"branch0_seg0","1002":"branch0_seg0","1003":"branch0_seg0","1004":"branch0_seg0","1005":"branch0_seg0","1006":"branch0_seg0","1007":"branch0_seg0","1008":"branch0_seg0","1009":"branch0_seg0","1010":"branch0_seg0","1011":"branch0_seg0","1012":"branch0_seg0","1013":"branch0_seg0","1014":"branch0_seg0","1015":"branch0_seg0","1016":"branch0_seg0","1017":"branch0_seg0","1018":"branch0_seg0","1019":"branch0_seg0","1020":"branch0_seg0","1021":"branch0_seg0","1022":"branch0_seg0","1023":"branch0_seg0","1024":"branch0_seg0","1025":"branch0_seg0","1026":"branch0_seg0","1027":"branch0_seg0","1028":"branch0_seg0","1029":"branch0_seg0","1030":"branch0_seg0","1031":"branch0_seg0","1032":"branch0_seg0","1033":"branch0_seg0","1034":"branch0_seg0","1035":"branch0_seg0","1036":"branch0_seg0","1037":"branch0_seg0","1038":"branch0_seg0","1039":"branch0_seg0","1040":"branch0_seg0","1041":"branch0_seg0","1042":"branch0_seg0","1043":"branch0_seg0","1044":"branch0_seg0","1045":"branch0_seg0","1046":"branch0_seg0","1047":"branch0_seg0","1048":"branch0_seg0","1049":"branch0_seg0","1050":"branch0_seg0","1051":"branch0_seg0","1052":"branch0_seg0","1053":"branch0_seg0","1054":"branch0_seg0","1055":"branch0_seg0","1056":"branch0_seg0","1057":"branch0_seg0","1058":"branch0_seg0","1059":"branch0_seg0","1060":"branch0_seg0","1061":"branch0_seg0","1062":"branch0_seg0","1063":"branch0_seg0","1064":"branch0_seg0","1065":"branch0_seg0","1066":"branch0_seg0","1067":"branch0_seg0","1068":"branch0_seg0","1069":"branch0_seg0","1070":"branch0_seg0","1071":"branch0_seg0","1072":"branch0_seg0","1073":"branch0_seg0","1074":"branch0_seg0","1075":"branch0_seg0","1076":"branch0_seg0","1077":"branch0_seg0","1078":"branch0_seg0","1079":"branch0_seg0","1080":"branch0_seg0","1081":"branch0_seg0","1082":"branch0_seg0","1083":"branch0_seg0","1084":"branch0_seg0","1085":"branch0_seg0","1086":"branch0_seg0","1087":"branch0_seg0","1088":"branch0_seg0","1089":"branch0_seg0","1090":"branch0_seg0","1091":"branch0_seg0","1092":"branch0_seg0","1093":"branch0_seg0","1094":"branch0_seg0","1095":"branch0_seg0","1096":"branch0_seg0","1097":"branch0_seg0","1098":"branch0_seg0","1099":"branch0_seg0","1100":"branch0_seg0","1101":"branch0_seg0","1102":"branch0_seg0","1103":"branch0_seg0","1104":"branch0_seg0","1105":"branch0_seg0","1106":"branch0_seg0","1107":"branch0_seg0","1108":"branch0_seg0","1109":"branch0_seg0","1110":"branch0_seg0","1111":"branch0_seg0","1112":"branch0_seg0","1113":"branch0_seg0","1114":"branch0_seg0","1115":"branch0_seg0","1116":"branch0_seg0","1117":"branch0_seg0","1118":"branch0_seg0","1119":"branch0_seg0","1120":"branch0_seg0","1121":"branch0_seg0","1122":"branch0_seg0","1123":"branch0_seg0","1124":"branch0_seg0","1125":"branch0_seg0","1126":"branch0_seg0","1127":"branch0_seg0","1128":"branch0_seg0","1129":"branch0_seg0","1130":"branch0_seg0","1131":"branch0_seg0","1132":"branch0_seg0","1133":"branch0_seg0","1134":"branch0_seg0","1135":"branch0_seg0","1136":"branch0_seg0","1137":"branch0_seg0","1138":"branch0_seg0","1139":"branch0_seg0","1140":"branch0_seg0","1141":"branch0_seg0","1142":"branch0_seg0","1143":"branch0_seg0","1144":"branch0_seg0","1145":"branch0_seg0","1146":"branch0_seg0","1147":"branch0_seg0","1148":"branch0_seg0","1149":"branch0_seg0","1150":"branch0_seg0","1151":"branch0_seg0","1152":"branch0_seg0","1153":"branch0_seg0","1154":"branch0_seg0","1155":"branch0_seg0","1156":"branch0_seg0","1157":"branch0_seg0","1158":"branch0_seg0","1159":"branch0_seg0","1160":"branch0_seg0","1161":"branch0_seg0","1162":"branch0_seg0","1163":"branch0_seg0","1164":"branch0_seg0","1165":"branch0_seg0","1166":"branch0_seg0","1167":"branch0_seg0","1168":"branch0_seg0","1169":"branch0_seg0","1170":"branch0_seg0","1171":"branch0_seg0","1172":"branch0_seg0","1173":"branch0_seg0","1174":"branch0_seg0","1175":"branch0_seg0","1176":"branch0_seg0","1177":"branch0_seg0","1178":"branch0_seg0","1179":"branch0_seg0","1180":"branch0_seg0","1181":"branch0_seg0","1182":"branch0_seg0","1183":"branch0_seg0","1184":"branch0_seg0","1185":"branch0_seg0","1186":"branch0_seg0","1187":"branch0_seg0","1188":"branch0_seg0","1189":"branch0_seg0","1190":"branch0_seg0","1191":"branch0_seg0","1192":"branch0_seg0","1193":"branch0_seg0","1194":"branch0_seg0","1195":"branch0_seg0","1196":"branch0_seg0","1197":"branch0_seg0","1198":"branch0_seg0","1199":"branch0_seg0","1200":"branch0_seg0","1201":"branch0_seg0","1202":"branch0_seg0","1203":"branch0_seg0","1204":"branch0_seg0","1205":"branch0_seg0","1206":"branch0_seg0","1207":"branch0_seg0","1208":"branch0_seg0","1209":"branch0_seg0","1210":"branch0_seg0","1211":"branch0_seg0","1212":"branch0_seg0","1213":"branch0_seg0","1214":"branch0_seg0","1215":"branch0_seg0","1216":"branch0_seg0","1217":"branch0_seg0","1218":"branch0_seg0","1219":"branch0_seg0","1220":"branch0_seg0","1221":"branch0_seg0","1222":"branch0_seg0","1223":"branch0_seg0","1224":"branch0_seg0","1225":"branch0_seg0","1226":"branch0_seg0","1227":"branch0_seg0","1228":"branch0_seg0","1229":"branch0_seg0","1230":"branch0_seg0","1231":"branch0_seg0","1232":"branch0_seg0","1233":"branch0_seg0","1234":"branch0_seg0","1235":"branch0_seg0","1236":"branch0_seg0","1237":"branch0_seg0","1238":"branch0_seg0","1239":"branch0_seg0","1240":"branch0_seg0","1241":"branch0_seg0","1242":"branch0_seg0","1243":"branch0_seg0","1244":"branch0_seg0","1245":"branch0_seg0","1246":"branch0_seg0","1247":"branch0_seg0","1248":"branch0_seg0","1249":"branch0_seg0","1250":"branch0_seg0","1251":"branch0_seg0","1252":"branch0_seg0","1253":"branch0_seg0","1254":"branch0_seg0","1255":"branch0_seg0","1256":"branch0_seg0","1257":"branch0_seg0","1258":"branch0_seg0","1259":"branch0_seg0","1260":"branch0_seg0","1261":"branch0_seg0","1262":"branch0_seg0","1263":"branch0_seg0","1264":"branch0_seg0","1265":"branch0_seg0","1266":"branch0_seg0","1267":"branch0_seg0","1268":"branch0_seg0","1269":"branch0_seg0","1270":"branch0_seg0","1271":"branch0_seg0","1272":"branch0_seg0","1273":"branch0_seg0","1274":"branch0_seg0","1275":"branch0_seg0","1276":"branch0_seg0","1277":"branch0_seg0","1278":"branch0_seg0","1279":"branch0_seg0","1280":"branch0_seg0","1281":"branch0_seg0","1282":"branch0_seg0","1283":"branch0_seg0","1284":"branch0_seg0","1285":"branch0_seg0","1286":"branch0_seg0","1287":"branch0_seg0","1288":"branch0_seg0","1289":"branch0_seg0","1290":"branch0_seg0","1291":"branch0_seg0","1292":"branch0_seg0","1293":"branch0_seg0","1294":"branch0_seg0","1295":"branch0_seg0","1296":"branch0_seg0","1297":"branch0_seg0","1298":"branch0_seg0","1299":"branch0_seg0","1300":"branch0_seg0","1301":"branch0_seg0","1302":"branch0_seg0","1303":"branch0_seg0","1304":"branch0_seg0","1305":"branch0_seg0","1306":"branch0_seg0","1307":"branch0_seg0","1308":"branch0_seg0","1309":"branch0_seg0","1310":"branch0_seg0","1311":"branch0_seg0","1312":"branch0_seg0","1313":"branch0_seg0","1314":"branch0_seg0","1315":"branch0_seg0","1316":"branch0_seg0","1317":"branch0_seg0","1318":"branch0_seg0","1319":"branch0_seg0","1320":"branch0_seg0","1321":"branch0_seg0","1322":"branch0_seg0","1323":"branch0_seg0","1324":"branch0_seg0","1325":"branch0_seg0","1326":"branch0_seg0","1327":"branch0_seg0","1328":"branch0_seg0","1329":"branch0_seg0","1330":"branch0_seg0","1331":"branch0_seg0","1332":"branch0_seg0","1333":"branch0_seg0","1334":"branch0_seg0","1335":"branch0_seg0","1336":"branch0_seg0","1337":"branch0_seg0","1338":"branch0_seg0","1339":"branch0_seg0","1340":"branch0_seg0","1341":"branch0_seg0","1342":"branch0_seg0","1343":"branch0_seg0","1344":"branch0_seg0","1345":"branch0_seg0","1346":"branch0_seg0","1347":"branch0_seg0","1348":"branch0_seg0","1349":"branch0_seg0","1350":"branch0_seg0","1351":"branch0_seg0","1352":"branch0_seg0","1353":"branch0_seg0","1354":"branch0_seg0","1355":"branch0_seg0","1356":"branch0_seg0","1357":"branch0_seg0","1358":"branch0_seg0","1359":"branch0_seg0","1360":"branch0_seg0","1361":"branch0_seg0","1362":"branch0_seg0","1363":"branch0_seg0","1364":"branch0_seg0","1365":"branch0_seg0","1366":"branch0_seg0","1367":"branch0_seg0","1368":"branch0_seg0","1369":"branch0_seg0","1370":"branch0_seg0","1371":"branch0_seg0","1372":"branch0_seg0","1373":"branch0_seg0","1374":"branch0_seg0","1375":"branch0_seg0","1376":"branch0_seg0","1377":"branch0_seg0","1378":"branch0_seg0","1379":"branch0_seg0","1380":"branch0_seg0","1381":"branch0_seg0","1382":"branch0_seg0","1383":"branch0_seg0","1384":"branch0_seg0","1385":"branch0_seg0","1386":"branch0_seg0","1387":"branch0_seg0","1388":"branch0_seg0","1389":"branch0_seg0","1390":"branch0_seg0","1391":"branch0_seg0","1392":"branch0_seg0","1393":"branch0_seg0","1394":"branch0_seg0","1395":"branch0_seg0","1396":"branch0_seg0","1397":"branch0_seg0","1398":"branch0_seg0","1399":"branch0_seg0","1400":"branch0_seg0","1401":"branch0_seg0","1402":"branch0_seg0","1403":"branch0_seg0","1404":"branch0_seg0","1405":"branch0_seg0","1406":"branch0_seg0","1407":"branch0_seg0","1408":"branch0_seg0","1409":"branch0_seg0","1410":"branch0_seg0","1411":"branch0_seg0","1412":"branch0_seg0","1413":"branch0_seg0","1414":"branch0_seg0","1415":"branch0_seg0","1416":"branch0_seg0","1417":"branch0_seg0","1418":"branch0_seg0","1419":"branch0_seg0","1420":"branch0_seg0","1421":"branch0_seg0","1422":"branch0_seg0","1423":"branch0_seg0","1424":"branch0_seg0","1425":"branch0_seg0","1426":"branch0_seg0","1427":"branch0_seg0","1428":"branch0_seg0","1429":"branch0_seg0","1430":"branch0_seg0","1431":"branch0_seg0","1432":"branch0_seg0","1433":"branch0_seg0","1434":"branch0_seg0","1435":"branch0_seg0","1436":"branch0_seg0","1437":"branch0_seg0","1438":"branch0_seg0","1439":"branch0_seg0","1440":"branch0_seg0","1441":"branch0_seg0","1442":"branch0_seg0","1443":"branch0_seg0","1444":"branch0_seg0","1445":"branch0_seg0","1446":"branch0_seg0","1447":"branch0_seg0","1448":"branch0_seg0","1449":"branch0_seg0","1450":"branch0_seg0","1451":"branch0_seg0","1452":"branch0_seg0","1453":"branch0_seg0","1454":"branch0_seg0","1455":"branch0_seg0","1456":"branch0_seg0","1457":"branch0_seg0","1458":"branch0_seg0","1459":"branch0_seg0","1460":"branch0_seg0","1461":"branch0_seg0","1462":"branch0_seg0","1463":"branch0_seg0","1464":"branch0_seg0","1465":"branch0_seg0","1466":"branch0_seg0","1467":"branch0_seg0","1468":"branch0_seg0","1469":"branch0_seg0","1470":"branch0_seg0","1471":"branch0_seg0","1472":"branch0_seg0","1473":"branch0_seg0","1474":"branch0_seg0","1475":"branch0_seg0","1476":"branch0_seg0","1477":"branch0_seg0","1478":"branch0_seg0","1479":"branch0_seg0","1480":"branch0_seg0","1481":"branch0_seg0","1482":"branch0_seg0","1483":"branch0_seg0","1484":"branch0_seg0","1485":"branch0_seg0","1486":"branch0_seg0","1487":"branch0_seg0","1488":"branch0_seg0","1489":"branch0_seg0","1490":"branch0_seg0","1491":"branch0_seg0","1492":"branch0_seg0","1493":"branch0_seg0","1494":"branch0_seg0","1495":"branch0_seg0","1496":"branch0_seg0","1497":"branch0_seg0","1498":"branch0_seg0","1499":"branch0_seg0","1500":"branch0_seg0","1501":"branch0_seg0","1502":"branch0_seg0","1503":"branch0_seg0","1504":"branch0_seg0","1505":"branch0_seg0","1506":"branch0_seg0","1507":"branch0_seg0","1508":"branch0_seg0","1509":"branch0_seg0","1510":"branch0_seg0","1511":"branch0_seg0","1512":"branch0_seg0","1513":"branch0_seg0","1514":"branch0_seg0","1515":"branch0_seg0","1516":"branch0_seg0","1517":"branch0_seg0","1518":"branch0_seg0","1519":"branch0_seg0","1520":"branch0_seg0","1521":"branch0_seg0","1522":"branch0_seg0","1523":"branch0_seg0","1524":"branch0_seg0","1525":"branch0_seg0","1526":"branch0_seg0","1527":"branch0_seg0","1528":"branch0_seg0","1529":"branch0_seg0","1530":"branch0_seg0","1531":"branch0_seg0","1532":"branch0_seg0","1533":"branch0_seg0","1534":"branch0_seg0","1535":"branch0_seg0","1536":"branch0_seg0","1537":"branch0_seg0","1538":"branch0_seg0","1539":"branch0_seg0","1540":"branch0_seg0","1541":"branch0_seg0","1542":"branch0_seg0","1543":"branch0_seg0","1544":"branch0_seg0","1545":"branch0_seg0","1546":"branch0_seg0","1547":"branch0_seg0","1548":"branch0_seg0","1549":"branch0_seg0","1550":"branch0_seg0","1551":"branch0_seg0","1552":"branch0_seg0","1553":"branch0_seg0","1554":"branch0_seg0","1555":"branch0_seg0","1556":"branch0_seg0","1557":"branch0_seg0","1558":"branch0_seg0","1559":"branch0_seg0","1560":"branch0_seg0","1561":"branch0_seg0","1562":"branch0_seg0","1563":"branch0_seg0","1564":"branch0_seg0","1565":"branch0_seg0","1566":"branch0_seg0","1567":"branch0_seg0","1568":"branch0_seg0","1569":"branch0_seg0","1570":"branch0_seg0","1571":"branch0_seg0","1572":"branch0_seg0","1573":"branch0_seg0","1574":"branch0_seg0","1575":"branch0_seg0","1576":"branch0_seg0","1577":"branch0_seg0","1578":"branch0_seg0","1579":"branch0_seg0","1580":"branch0_seg0","1581":"branch0_seg0","1582":"branch0_seg0","1583":"branch0_seg0","1584":"branch0_seg0","1585":"branch0_seg0","1586":"branch0_seg0","1587":"branch0_seg0","1588":"branch0_seg0","1589":"branch0_seg0","1590":"branch0_seg0","1591":"branch0_seg0","1592":"branch0_seg0","1593":"branch0_seg0","1594":"branch0_seg0","1595":"branch0_seg0","1596":"branch0_seg0","1597":"branch0_seg0","1598":"branch0_seg0","1599":"branch0_seg0","1600":"branch0_seg0","1601":"branch0_seg0","1602":"branch0_seg0","1603":"branch0_seg0","1604":"branch0_seg0","1605":"branch0_seg0","1606":"branch0_seg0","1607":"branch0_seg0","1608":"branch0_seg0","1609":"branch0_seg0","1610":"branch0_seg0","1611":"branch0_seg0","1612":"branch0_seg0","1613":"branch0_seg0","1614":"branch0_seg0","1615":"branch0_seg0","1616":"branch0_seg0","1617":"branch0_seg0","1618":"branch0_seg0","1619":"branch0_seg0","1620":"branch0_seg0","1621":"branch0_seg0","1622":"branch0_seg0","1623":"branch0_seg0","1624":"branch0_seg0","1625":"branch0_seg0","1626":"branch0_seg0","1627":"branch0_seg0","1628":"branch0_seg0","1629":"branch0_seg0","1630":"branch0_seg0","1631":"branch0_seg0","1632":"branch0_seg0","1633":"branch0_seg0","1634":"branch0_seg0","1635":"branch0_seg0","1636":"branch0_seg0","1637":"branch0_seg0","1638":"branch0_seg0","1639":"branch0_seg0","1640":"branch0_seg0","1641":"branch0_seg0","1642":"branch0_seg0","1643":"branch0_seg0","1644":"branch0_seg0","1645":"branch0_seg0","1646":"branch0_seg0","1647":"branch0_seg0","1648":"branch0_seg0","1649":"branch0_seg0","1650":"branch0_seg0","1651":"branch0_seg0","1652":"branch0_seg0","1653":"branch0_seg0","1654":"branch0_seg0","1655":"branch0_seg0","1656":"branch0_seg0","1657":"branch0_seg0","1658":"branch0_seg0","1659":"branch0_seg0","1660":"branch0_seg0","1661":"branch0_seg0","1662":"branch0_seg0","1663":"branch0_seg0","1664":"branch0_seg0","1665":"branch0_seg0","1666":"branch0_seg0","1667":"branch0_seg0","1668":"branch0_seg0","1669":"branch0_seg0","1670":"branch0_seg0","1671":"branch0_seg0","1672":"branch0_seg0","1673":"branch0_seg0","1674":"branch0_seg0","1675":"branch0_seg0","1676":"branch0_seg0","1677":"branch0_seg0","1678":"branch0_seg0","1679":"branch0_seg0","1680":"branch0_seg0","1681":"branch0_seg0","1682":"branch0_seg0","1683":"branch0_seg0","1684":"branch0_seg0","1685":"branch0_seg0","1686":"branch0_seg0","1687":"branch0_seg0","1688":"branch0_seg0","1689":"branch0_seg0","1690":"branch0_seg0","1691":"branch0_seg0","1692":"branch0_seg0","1693":"branch0_seg0","1694":"branch0_seg0","1695":"branch0_seg0","1696":"branch0_seg0","1697":"branch0_seg0","1698":"branch0_seg0","1699":"branch0_seg0","1700":"branch0_seg0","1701":"branch0_seg0","1702":"branch0_seg0","1703":"branch0_seg0","1704":"branch0_seg0","1705":"branch0_seg0","1706":"branch0_seg0","1707":"branch0_seg0","1708":"branch0_seg0","1709":"branch0_seg0","1710":"branch0_seg0","1711":"branch0_seg0","1712":"branch0_seg0","1713":"branch0_seg0","1714":"branch0_seg0","1715":"branch0_seg0","1716":"branch0_seg0","1717":"branch0_seg0","1718":"branch0_seg0","1719":"branch0_seg0","1720":"branch0_seg0","1721":"branch0_seg0","1722":"branch0_seg0","1723":"branch0_seg0","1724":"branch0_seg0","1725":"branch0_seg0","1726":"branch0_seg0","1727":"branch0_seg0","1728":"branch0_seg0","1729":"branch0_seg0","1730":"branch0_seg0","1731":"branch0_seg0","1732":"branch0_seg0","1733":"branch0_seg0","1734":"branch0_seg0","1735":"branch0_seg0","1736":"branch0_seg0","1737":"branch0_seg0","1738":"branch0_seg0","1739":"branch0_seg0","1740":"branch0_seg0","1741":"branch0_seg0","1742":"branch0_seg0","1743":"branch0_seg0","1744":"branch0_seg0","1745":"branch0_seg0","1746":"branch0_seg0","1747":"branch0_seg0","1748":"branch0_seg0","1749":"branch0_seg0","1750":"branch0_seg0","1751":"branch0_seg0","1752":"branch0_seg0","1753":"branch0_seg0","1754":"branch0_seg0","1755":"branch0_seg0","1756":"branch0_seg0","1757":"branch0_seg0","1758":"branch0_seg0","1759":"branch0_seg0","1760":"branch0_seg0","1761":"branch0_seg0","1762":"branch0_seg0","1763":"branch0_seg0","1764":"branch0_seg0","1765":"branch0_seg0","1766":"branch0_seg0","1767":"branch0_seg0","1768":"branch0_seg0","1769":"branch0_seg0","1770":"branch0_seg0","1771":"branch0_seg0","1772":"branch0_seg0","1773":"branch0_seg0","1774":"branch0_seg0","1775":"branch0_seg0","1776":"branch0_seg0","1777":"branch0_seg0","1778":"branch0_seg0","1779":"branch0_seg0","1780":"branch0_seg0","1781":"branch0_seg0","1782":"branch0_seg0","1783":"branch0_seg0","1784":"branch0_seg0","1785":"branch0_seg0","1786":"branch0_seg0","1787":"branch0_seg0","1788":"branch0_seg0","1789":"branch0_seg0","1790":"branch0_seg0","1791":"branch0_seg0","1792":"branch0_seg0","1793":"branch0_seg0","1794":"branch0_seg0","1795":"branch0_seg0","1796":"branch0_seg0","1797":"branch0_seg0","1798":"branch0_seg0","1799":"branch0_seg0","1800":"branch0_seg0","1801":"branch0_seg0","1802":"branch0_seg0","1803":"branch0_seg0","1804":"branch0_seg0","1805":"branch0_seg0","1806":"branch0_seg0","1807":"branch0_seg0","1808":"branch0_seg0","1809":"branch0_seg0","1810":"branch0_seg0","1811":"branch0_seg0","1812":"branch0_seg0","1813":"branch0_seg0","1814":"branch0_seg0","1815":"branch0_seg0","1816":"branch0_seg0","1817":"branch0_seg0","1818":"branch0_seg0","1819":"branch0_seg0","1820":"branch0_seg0","1821":"branch0_seg0","1822":"branch0_seg0","1823":"branch0_seg0","1824":"branch0_seg0","1825":"branch0_seg0","1826":"branch0_seg0","1827":"branch0_seg0","1828":"branch0_seg0","1829":"branch0_seg0","1830":"branch0_seg0","1831":"branch0_seg0","1832":"branch0_seg0","1833":"branch0_seg0","1834":"branch0_seg0","1835":"branch0_seg0","1836":"branch0_seg0","1837":"branch0_seg0","1838":"branch0_seg0","1839":"branch0_seg0","1840":"branch0_seg0","1841":"branch0_seg0","1842":"branch0_seg0","1843":"branch0_seg0","1844":"branch0_seg0","1845":"branch0_seg0","1846":"branch0_seg0","1847":"branch0_seg0","1848":"branch0_seg0","1849":"branch0_seg0","1850":"branch0_seg0","1851":"branch0_seg0","1852":"branch0_seg0","1853":"branch0_seg0","1854":"branch0_seg0","1855":"branch0_seg0","1856":"branch0_seg0","1857":"branch0_seg0","1858":"branch0_seg0","1859":"branch0_seg0","1860":"branch0_seg0","1861":"branch0_seg0","1862":"branch0_seg0","1863":"branch0_seg0","1864":"branch0_seg0","1865":"branch0_seg0","1866":"branch0_seg0","1867":"branch0_seg0","1868":"branch0_seg0","1869":"branch0_seg0","1870":"branch0_seg0","1871":"branch0_seg0","1872":"branch0_seg0","1873":"branch0_seg0","1874":"branch0_seg0","1875":"branch0_seg0","1876":"branch0_seg0","1877":"branch0_seg0","1878":"branch0_seg0","1879":"branch0_seg0","1880":"branch0_seg0","1881":"branch0_seg0","1882":"branch0_seg0","1883":"branch0_seg0","1884":"branch0_seg0","1885":"branch0_seg0","1886":"branch0_seg0","1887":"branch0_seg0","1888":"branch0_seg0","1889":"branch0_seg0","1890":"branch0_seg0","1891":"branch0_seg0","1892":"branch0_seg0","1893":"branch0_seg0","1894":"branch0_seg0","1895":"branch0_seg0","1896":"branch0_seg0","1897":"branch0_seg0","1898":"branch0_seg0","1899":"branch0_seg0","1900":"branch0_seg0","1901":"branch0_seg0","1902":"branch0_seg0","1903":"branch0_seg0","1904":"branch0_seg0","1905":"branch0_seg0","1906":"branch0_seg0","1907":"branch0_seg0","1908":"branch0_seg0","1909":"branch0_seg0","1910":"branch0_seg0","1911":"branch0_seg0","1912":"branch0_seg0","1913":"branch0_seg0","1914":"branch0_seg0","1915":"branch0_seg0","1916":"branch0_seg0","1917":"branch0_seg0","1918":"branch0_seg0","1919":"branch0_seg0","1920":"branch0_seg0","1921":"branch0_seg0","1922":"branch0_seg0","1923":"branch0_seg0","1924":"branch0_seg0","1925":"branch0_seg0","1926":"branch0_seg0","1927":"branch0_seg0","1928":"branch0_seg0","1929":"branch0_seg0","1930":"branch0_seg0","1931":"branch0_seg0","1932":"branch0_seg0","1933":"branch0_seg0","1934":"branch0_seg0","1935":"branch0_seg0","1936":"branch0_seg0","1937":"branch0_seg0","1938":"branch0_seg0","1939":"branch0_seg0","1940":"branch0_seg0","1941":"branch0_seg0","1942":"branch0_seg0","1943":"branch0_seg0","1944":"branch0_seg0","1945":"branch0_seg0","1946":"branch0_seg0","1947":"branch0_seg0","1948":"branch0_seg0","1949":"branch0_seg0","1950":"branch0_seg0","1951":"branch0_seg0","1952":"branch0_seg0","1953":"branch0_seg0","1954":"branch0_seg0","1955":"branch0_seg0","1956":"branch0_seg0","1957":"branch0_seg0","1958":"branch0_seg0","1959":"branch0_seg0","1960":"branch0_seg0","1961":"branch0_seg0","1962":"branch0_seg0","1963":"branch0_seg0","1964":"branch0_seg0","1965":"branch0_seg0","1966":"branch0_seg0","1967":"branch0_seg0","1968":"branch0_seg0","1969":"branch0_seg0","1970":"branch0_seg0","1971":"branch0_seg0","1972":"branch0_seg0","1973":"branch0_seg0","1974":"branch0_seg0","1975":"branch0_seg0","1976":"branch0_seg0","1977":"branch0_seg0","1978":"branch0_seg0","1979":"branch0_seg0","1980":"branch0_seg0","1981":"branch0_seg0","1982":"branch0_seg0","1983":"branch0_seg0","1984":"branch0_seg0","1985":"branch0_seg0","1986":"branch0_seg0","1987":"branch0_seg0","1988":"branch0_seg0","1989":"branch0_seg0","1990":"branch0_seg0","1991":"branch0_seg0","1992":"branch0_seg0","1993":"branch0_seg0","1994":"branch0_seg0","1995":"branch0_seg0","1996":"branch0_seg0","1997":"branch0_seg0","1998":"branch0_seg0","1999":"branch0_seg0","2000":"branch0_seg0"},"time":{"0":0.0,"1":0.005,"2":0.01,"3":0.015,"4":0.02,"5":0.025,"6":0.03,"7":0.035,"8":0.04,"9":0.045,"10":0.05,"11":0.055,"12":0.06,"13":0.065,"14":0.07,"15":0.075,"16":0.08,"17":0.085,"18":0.09,"19":0.095,"20":0.1,"21":0.105,"22":0.11,"23":0.115,"24":0.12,"25":0.125,"26":0.13,"27":0.135,"28":0.14,"29":0.145,"30":0.15,"31":0.155,"32":0.16,"33":0.165,"34":0.17,"35":0.175,"36":0.18,"37":0.185,"38":0.19,"39":0.195,"40":0.2,"41":0.205,"42":0.21,"43":0.215,"44":0.22,"45":0.225,"46":0.23,"47":0.235,"48":0.24,"49":0.245,"50":0.25,"51":0.255,"52":0.26,"53":0.265,"54":0.27,"55":0.275,"56":0.28,"57":0.285,"58":0.29,"59":0.295,"60":0.3,"61":0.305,"62":0.31,"63":0.315,"64":0.32,"65":0.325,"66":0.33,"67":0.335,"68":0.34,"69":0.345,"70":0.35,"71":0.355,"72":0.36,"73":0.365,"74":0.37,"75":0.375,"76":0.38,"77":0.385,"78":0.39,"79":0.395,"80":0.4,"81":0.405,"82":0.41,"83":0.415,"84":0.42,"85":0.425,"86":0.43,"87":0.435,"88":0.44,"89":0.445,"90":0.45,"91":0.455,"92":0.46,"93":0.465,"94":0.47,"95":0.475,"96":0.48,"97":0.485,"98":0.49,"99":0.495,"100":0.5,"101":0.505,"102":0.51,"103":0.515,"104":0.52,"105":0.525,"106":0.53,"107":0.535,"108":0.54,"109":0.545,"110":0.55,"111":0.555,"112":0.56,"113":0.565,"114":0.57,"115":0.575,"116":0.58,"117":0.585,"118":0.59,"119":0.595,"120":0.6,"121":0.605,"122":0.61,"123":0.615,"124":0.62,"125":0.625,"126":0.63,"127":0.635,"128":0.64,"129":0.645,"130":0.65,"131":0.655,"132":0.66,"133":0.665,"134":0.67,"135":0.675,"136":0.68,"137":0.685,"138":0.69,"139":0.695,"140":0.7,"141":0.705,"142":0.71,"143":0.715,"144":0.72,"145":0.725,"146":0.73,"147":0.735,"148":0.74,"149":0.745,"150":0.75,"151":0.755,"152":0.76,"153":0.765,"154":0.77,"155":0.775,"156":0.78,"157":0.785,"158":0.79,"159":0.795,"160":0.8,"161":0.805,"162":0.81,"163":0.815,"164":0.82,"165":0.825,"166":0.83,"167":0.835,"168":0.84,"169":0.845,"170":0.85,"171":0.855,"172":0.86,"173":0.865,"174":0.87,"175":0.875,"176":0.88,"177":0.885,"178":0.89,"179":0.895,"180":0.9,"181":0.905,"182":0.91,"183":0.915,"184":0.92,"185":0.925,"186":0.93,"187":0.935,"188":0.94,"189":0.945,"190":0.95,"191":0.955,"192":0.96,"193":0.965,"194":0.97,"195":0.975,"196":0.98,"197":0.985,"198":0.99,"199":0.995,"200":1.0,"201":1.005,"202":1.01,"203":1.015,"204":1.02,"205":1.025,"206":1.03,"207":1.035,"208":1.04,"209":1.045,"210":1.05,"211":1.055,"212":1.06,"213":1.065,"214":1.07,"215":1.075,"216":1.08,"217":1.085,"218":1.09,"219":1.095,"220":1.1,"221":1.105,"222":1.11,"223":1.115,"224":1.12,"225":1.125,"226":1.13,"227":1.135,"228":1.14,"229":1.145,"230":1.15,"231":1.155,"232":1.16,"233":1.165,"234":1.17,"235":1.175,"236":1.18,"237":1.185,"238":1.19,"239":1.195,"240":1.2,"241":1.205,"242":1.21,"243":1.215,"244":1.22,"245":1.225,"246":1.23,"247":1.235,"248":1.24,"249":1.245,"250":1.25,"251":1.255,"252":1.26,"253":1.265,"254":1.27,"255":1.275,"256":1.28,"257":1.285,"258":1.29,"259":1.295,"260":1.3,"261":1.305,"262":1.31,"263":1.315,"264":1.32,"265":1.325,"266":1.33,"267":1.335,"268":1.34,"269":1.345,"270":1.35,"271":1.355,"272":1.36,"273":1.365,"274":1.37,"275":1.375,"276":1.38,"277":1.385,"278":1.39,"279":1.395,"280":1.4,"281":1.405,"282":1.41,"283":1.415,"284":1.42,"285":1.425,"286":1.43,"287":1.435,"288":1.44,"289":1.445,"290":1.45,"291":1.455,"292":1.46,"293":1.465,"294":1.47,"295":1.475,"296":1.48,"297":1.485,"298":1.49,"299":1.495,"300":1.5,"301":1.505,"302":1.51,"303":1.515,"304":1.52,"305":1.525,"306":1.53,"307":1.535,"308":1.54,"309":1.545,"310":1.55,"311":1.555,"312":1.56,"313":1.565,"314":1.57,"315":1.575,"316":1.58,"317":1.585,"318":1.59,"319":1.595,"320":1.6,"321":1.605,"322":1.61,"323":1.615,"324":1.62,"325":1.625,"326":1.63,"327":1.635,"328":1.64,"329":1.645,"330":1.65,"331":1.655,"332":1.66,"333":1.665,"334":1.67,"335":1.675,"336":1.68,"337":1.685,"338":1.69,"339":1.695,"340":1.7,"341":1.705,"342":1.71,"343":1.715,"344":1.72,"345":1.725,"346":1.73,"347":1.735,"348":1.74,"349":1.745,"350":1.75,"351":1.755,"352":1.76,"353":1.765,"354":1.77,"355":1.775,"356":1.78,"357":1.785,"358":1.79,"359":1.795,"360":1.8,"361":1.805,"362":1.81,"363":1.815,"364":1.82,"365":1.825,"366":1.83,"367":1.835,"368":1.84,"369":1.845,"370":1.85,"371":1.855,"372":1.86,"373":1.865,"374":1.87,"375":1.875,"376":1.88,"377":1.885,"378":1.89,"379":1.895,"380":1.9,"381":1.905,"382":1.91,"383":1.915,"384":1.92,"385":1.925,"386":1.93,"387":1.935,"388":1.94,"389":1.945,"390":1.95,"391":1.955,"392":1.96,"393":1.965,"394":1.97,"395":1.975,"396":1.98,"397":1.985,"398":1.99,"399":1.995,"400":2.0,"401":2.005,"402":2.01,"403":2.015,"404":2.02,"405":2.025,"406":2.03,"407":2.035,"408":2.04,"409":2.045,"410":2.05,"411":2.055,"412":2.06,"413":2.065,"414":2.07,"415":2.075,"416":2.08,"417":2.085,"418":2.09,"419":2.095,"420":2.1,"421":2.105,"422":2.11,"423":2.115,"424":2.12,"425":2.125,"426":2.13,"427":2.135,"428":2.14,"429":2.145,"430":2.15,"431":2.155,"432":2.16,"433":2.165,"434":2.17,"435":2.175,"436":2.18,"437":2.185,"438":2.19,"439":2.195,"440":2.2,"441":2.205,"442":2.21,"443":2.215,"444":2.22,"445":2.225,"446":2.23,"447":2.235,"448":2.24,"449":2.245,"450":2.25,"451":2.255,"452":2.26,"453":2.265,"454":2.27,"455":2.275,"456":2.28,"457":2.285,"458":2.29,"459":2.295,"460":2.3,"461":2.305,"462":2.31,"463":2.315,"464":2.32,"465":2.325,"466":2.33,"467":2.335,"468":2.34,"469":2.345,"470":2.35,"471":2.355,"472":2.36,"473":2.365,"474":2.37,"475":2.375,"476":2.38,"477":2.385,"478":2.39,"479":2.395,"480":2.4,"481":2.405,"482":2.41,"483":2.415,"484":2.42,"485":2.425,"486":2.43,"487":2.435,"488":2.44,"489":2.445,"490":2.45,"491":2.455,"492":2.46,"493":2.465,"494":2.47,"495":2.475,"496":2.48,"497":2.485,"498":2.49,"499":2.495,"500":2.5,"501":2.505,"502":2.51,"503":2.515,"504":2.52,"505":2.525,"506":2.53,"507":2.535,"508":2.54,"509":2.545,"510":2.55,"511":2.555,"512":2.56,"513":2.565,"514":2.57,"515":2.575,"516":2.58,"517":2.585,"518":2.59,"519":2.595,"520":2.6,"521":2.605,"522":2.61,"523":2.615,"524":2.62,"525":2.625,"526":2.63,"527":2.635,"528":2.64,"529":2.645,"530":2.65,"531":2.655,"532":2.66,"533":2.665,"534":2.67,"535":2.675,"536":2.68,"537":2.685,"538":2.69,"539":2.695,"540":2.7,"541":2.705,"542":2.71,"543":2.715,"544":2.72,"545":2.725,"546":2.73,"547":2.735,"548":2.74,"549":2.745,"550":2.75,"551":2.755,"552":2.76,"553":2.765,"554":2.77,"555":2.775,"556":2.78,"557":2.785,"558":2.79,"559":2.795,"560":2.8,"561":2.805,"562":2.81,"563":2.815,"564":2.82,"565":2.825,"566":2.83,"567":2.835,"568":2.84,"569":2.845,"570":2.85,"571":2.855,"572":2.86,"573":2.865,"574":2.87,"575":2.875,"576":2.88,"577":2.885,"578":2.89,"579":2.895,"580":2.9,"581":2.905,"582":2.91,"583":2.915,"584":2.92,"585":2.925,"586":2.93,"587":2.935,"588":2.94,"589":2.945,"590":2.95,"591":2.955,"592":2.96,"593":2.965,"594":2.97,"595":2.975,"596":2.98,"597":2.985,"598":2.99,"599":2.995,"600":3.0,"601":3.005,"602":3.01,"603":3.015,"604":3.02,"605":3.025,"606":3.03,"607":3.035,"608":3.04,"609":3.045,"610":3.05,"611":3.055,"612":3.06,"613":3.065,"614":3.07,"615":3.075,"616":3.08,"617":3.085,"618":3.09,"619":3.095,"620":3.1,"621":3.105,"622":3.11,"623":3.115,"624":3.12,"625":3.125,"626":3.13,"627":3.135,"628":3.14,"629":3.145,"630":3.15,"631":3.155,"632":3.16,"633":3.165,"634":3.17,"635":3.175,"636":3.18,"637":3.185,"638":3.19,"639":3.195,"640":3.2,"641":3.205,"642":3.21,"643":3.215,"644":3.22,"645":3.225,"646":3.23,"647":3.235,"648":3.24,"649":3.245,"650":3.25,"651":3.255,"652":3.26,"653":3.265,"654":3.27,"655":3.275,"656":3.28,"657":3.285,"658":3.29,"659":3.295,"660":3.3,"661":3.305,"662":3.31,"663":3.315,"664":3.32,"665":3.325,"666":3.33,"667":3.335,"668":3.34,"669":3.345,"670":3.35,"671":3.355,"672":3.36,"673":3.365,"674":3.37,"675":3.375,"676":3.38,"677":3.385,"678":3.39,"679":3.395,"680":3.4,"681":3.405,"682":3.41,"683":3.415,"684":3.42,"685":3.425,"686":3.43,"687":3.435,"688":3.44,"689":3.445,"690":3.45,"691":3.455,"692":3.46,"693":3.465,"694":3.47,"695":3.475,"696":3.48,"697":3.485,"698":3.49,"699":3.495,"700":3.5,"701":3.505,"702":3.51,"703":3.515,"704":3.52,"705":3.525,"706":3.53,"707":3.535,"708":3.54,"709":3.545,"710":3.55,"711":3.555,"712":3.56,"713":3.565,"714":3.57,"715":3.575,"716":3.58,"717":3.585,"718":3.59,"719":3.595,"720":3.6,"721":3.605,"722":3.61,"723":3.615,"724":3.62,"725":3.625,"726":3.63,"727":3.635,"728":3.64,"729":3.645,"730":3.65,"731":3.655,"732":3.66,"733":3.665,"734":3.67,"735":3.675,"736":3.68,"737":3.685,"738":3.69,"739":3.695,"740":3.7,"741":3.705,"742":3.71,"743":3.715,"744":3.72,"745":3.725,"746":3.73,"747":3.735,"748":3.74,"749":3.745,"750":3.75,"751":3.755,"752":3.76,"753":3.765,"754":3.77,"755":3.775,"756":3.78,"757":3.785,"758":3.79,"759":3.795,"760":3.8,"761":3.805,"762":3.81,"763":3.815,"764":3.82,"765":3.825,"766":3.83,"767":3.835,"768":3.84,"769":3.845,"770":3.85,"771":3.855,"772":3.86,"773":3.865,"774":3.87,"775":3.875,"776":3.88,"777":3.885,"778":3.89,"779":3.895,"780":3.9,"781":3.905,"782":3.91,"783":3.915,"784":3.92,"785":3.925,"786":3.93,"787":3.935,"788":3.94,"789":3.945,"790":3.95,"791":3.955,"792":3.96,"793":3.965,"794":3.97,"795":3.975,"796":3.98,"797":3.985,"798":3.99,"799":3.995,"800":4.0,"801":4.005,"802":4.01,"803":4.015,"804":4.02,"805":4.025,"806":4.03,"807":4.035,"808":4.04,"809":4.045,"810":4.05,"811":4.055,"812":4.06,"813":4.065,"814":4.07,"815":4.075,"816":4.08,"817":4.085,"818":4.09,"819":4.095,"820":4.1,"821":4.105,"822":4.11,"823":4.115,"824":4.12,"825":4.125,"826":4.13,"827":4.135,"828":4.14,"829":4.145,"830":4.15,"831":4.155,"832":4.16,"833":4.165,"834":4.17,"835":4.175,"836":4.18,"837":4.185,"838":4.19,"839":4.195,"840":4.2,"841":4.205,"842":4.21,"843":4.215,"844":4.22,"845":4.225,"846":4.23,"847":4.235,"848":4.24,"849":4.245,"850":4.25,"851":4.255,"852":4.26,"853":4.265,"854":4.27,"855":4.275,"856":4.28,"857":4.285,"858":4.29,"859":4.295,"860":4.3,"861":4.305,"862":4.31,"863":4.315,"864":4.32,"865":4.325,"866":4.33,"867":4.335,"868":4.34,"869":4.345,"870":4.35,"871":4.355,"872":4.36,"873":4.365,"874":4.37,"875":4.375,"876":4.38,"877":4.385,"878":4.39,"879":4.395,"880":4.4,"881":4.405,"882":4.41,"883":4.415,"884":4.42,"885":4.425,"886":4.43,"887":4.435,"888":4.44,"889":4.445,"890":4.45,"891":4.455,"892":4.46,"893":4.465,"894":4.47,"895":4.475,"896":4.48,"897":4.485,"898":4.49,"899":4.495,"900":4.5,"901":4.505,"902":4.51,"903":4.515,"904":4.52,"905":4.525,"906":4.53,"907":4.535,"908":4.54,"909":4.545,"910":4.55,"911":4.555,"912":4.56,"913":4.565,"914":4.57,"915":4.575,"916":4.58,"917":4.585,"918":4.59,"919":4.595,"920":4.6,"921":4.605,"922":4.61,"923":4.615,"924":4.62,"925":4.625,"926":4.63,"927":4.635,"928":4.64,"929":4.645,"930":4.65,"931":4.655,"932":4.66,"933":4.665,"934":4.67,"935":4.675,"936":4.68,"937":4.685,"938":4.69,"939":4.695,"940":4.7,"941":4.705,"942":4.71,"943":4.715,"944":4.72,"945":4.725,"946":4.73,"947":4.735,"948":4.74,"949":4.745,"950":4.75,"951":4.755,"952":4.76,"953":4.765,"954":4.77,"955":4.775,"956":4.78,"957":4.785,"958":4.79,"959":4.795,"960":4.8,"961":4.805,"962":4.81,"963":4.815,"964":4.82,"965":4.825,"966":4.83,"967":4.835,"968":4.84,"969":4.845,"970":4.85,"971":4.855,"972":4.86,"973":4.865,"974":4.87,"975":4.875,"976":4.88,"977":4.885,"978":4.89,"979":4.895,"980":4.9,"981":4.905,"982":4.91,"983":4.915,"984":4.92,"985":4.925,"986":4.93,"987":4.935,"988":4.94,"989":4.945,"990":4.95,"991":4.955,"992":4.96,"993":4.965,"994":4.97,"995":4.975,"996":4.98,"997":4.985,"998":4.99,"999":4.995,"1000":5.0,"1001":5.005,"1002":5.01,"1003":5.015,"1004":5.02,"1005":5.025,"1006":5.03,"1007":5.035,"1008":5.04,"1009":5.045,"1010":5.05,"1011":5.055,"1012":5.06,"1013":5.065,"1014":5.07,"1015":5.075,"1016":5.08,"1017":5.085,"1018":5.09,"1019":5.095,"1020":5.1,"1021":5.105,"1022":5.11,"1023":5.115,"1024":5.12,"1025":5.125,"1026":5.13,"1027":5.135,"1028":5.14,"1029":5.145,"1030":5.15,"1031":5.155,"1032":5.16,"1033":5.165,"1034":5.17,"1035":5.175,"1036":5.18,"1037":5.185,"1038":5.19,"1039":5.195,"1040":5.2,"1041":5.205,"1042":5.21,"1043":5.215,"1044":5.22,"1045":5.225,"1046":5.23,"1047":5.235,"1048":5.24,"1049":5.245,"1050":5.25,"1051":5.255,"1052":5.26,"1053":5.265,"1054":5.27,"1055":5.275,"1056":5.28,"1057":5.285,"1058":5.29,"1059":5.295,"1060":5.3,"1061":5.305,"1062":5.31,"1063":5.315,"1064":5.32,"1065":5.325,"1066":5.33,"1067":5.335,"1068":5.34,"1069":5.345,"1070":5.35,"1071":5.355,"1072":5.36,"1073":5.365,"1074":5.37,"1075":5.375,"1076":5.38,"1077":5.385,"1078":5.39,"1079":5.395,"1080":5.4,"1081":5.405,"1082":5.41,"1083":5.415,"1084":5.42,"1085":5.425,"1086":5.43,"1087":5.435,"1088":5.44,"1089":5.445,"1090":5.45,"1091":5.455,"1092":5.46,"1093":5.465,"1094":5.47,"1095":5.475,"1096":5.48,"1097":5.485,"1098":5.49,"1099":5.495,"1100":5.5,"1101":5.505,"1102":5.51,"1103":5.515,"1104":5.52,"1105":5.525,"1106":5.53,"1107":5.535,"1108":5.54,"1109":5.545,"1110":5.55,"1111":5.555,"1112":5.56,"1113":5.565,"1114":5.57,"1115":5.575,"1116":5.58,"1117":5.585,"1118":5.59,"1119":5.595,"1120":5.6,"1121":5.605,"1122":5.61,"1123":5.615,"1124":5.62,"1125":5.625,"1126":5.63,"1127":5.635,"1128":5.64,"1129":5.645,"1130":5.65,"1131":5.655,"1132":5.66,"1133":5.665,"1134":5.67,"1135":5.675,"1136":5.68,"1137":5.685,"1138":5.69,"1139":5.695,"1140":5.7,"1141":5.705,"1142":5.71,"1143":5.715,"1144":5.72,"1145":5.725,"1146":5.73,"1147":5.735,"1148":5.74,"1149":5.745,"1150":5.75,"1151":5.755,"1152":5.76,"1153":5.765,"1154":5.77,"1155":5.775,"1156":5.78,"1157":5.785,"1158":5.79,"1159":5.795,"1160":5.8,"1161":5.805,"1162":5.81,"1163":5.815,"1164":5.82,"1165":5.825,"1166":5.83,"1167":5.835,"1168":5.84,"1169":5.845,"1170":5.85,"1171":5.855,"1172":5.86,"1173":5.865,"1174":5.87,"1175":5.875,"1176":5.88,"1177":5.885,"1178":5.89,"1179":5.895,"1180":5.9,"1181":5.905,"1182":5.91,"1183":5.915,"1184":5.92,"1185":5.925,"1186":5.93,"1187":5.935,"1188":5.94,"1189":5.945,"1190":5.95,"1191":5.955,"1192":5.96,"1193":5.965,"1194":5.97,"1195":5.975,"1196":5.98,"1197":5.985,"1198":5.99,"1199":5.995,"1200":6.0,"1201":6.005,"1202":6.01,"1203":6.015,"1204":6.02,"1205":6.025,"1206":6.03,"1207":6.035,"1208":6.04,"1209":6.045,"1210":6.05,"1211":6.055,"1212":6.06,"1213":6.065,"1214":6.07,"1215":6.075,"1216":6.08,"1217":6.085,"1218":6.09,"1219":6.095,"1220":6.1,"1221":6.105,"1222":6.11,"1223":6.115,"1224":6.12,"1225":6.125,"1226":6.13,"1227":6.135,"1228":6.14,"1229":6.145,"1230":6.15,"1231":6.155,"1232":6.16,"1233":6.165,"1234":6.17,"1235":6.175,"1236":6.18,"1237":6.185,"1238":6.19,"1239":6.195,"1240":6.2,"1241":6.205,"1242":6.21,"1243":6.215,"1244":6.22,"1245":6.225,"1246":6.23,"1247":6.235,"1248":6.24,"1249":6.245,"1250":6.25,"1251":6.255,"1252":6.26,"1253":6.265,"1254":6.27,"1255":6.275,"1256":6.28,"1257":6.285,"1258":6.29,"1259":6.295,"1260":6.3,"1261":6.305,"1262":6.31,"1263":6.315,"1264":6.32,"1265":6.325,"1266":6.33,"1267":6.335,"1268":6.34,"1269":6.345,"1270":6.35,"1271":6.355,"1272":6.36,"1273":6.365,"1274":6.37,"1275":6.375,"1276":6.38,"1277":6.385,"1278":6.39,"1279":6.395,"1280":6.4,"1281":6.405,"1282":6.41,"1283":6.415,"1284":6.42,"1285":6.425,"1286":6.43,"1287":6.435,"1288":6.44,"1289":6.445,"1290":6.45,"1291":6.455,"1292":6.46,"1293":6.465,"1294":6.47,"1295":6.475,"1296":6.48,"1297":6.485,"1298":6.49,"1299":6.495,"1300":6.5,"1301":6.505,"1302":6.51,"1303":6.515,"1304":6.52,"1305":6.525,"1306":6.53,"1307":6.535,"1308":6.54,"1309":6.545,"1310":6.55,"1311":6.555,"1312":6.56,"1313":6.565,"1314":6.57,"1315":6.575,"1316":6.58,"1317":6.585,"1318":6.59,"1319":6.595,"1320":6.6,"1321":6.605,"1322":6.61,"1323":6.615,"1324":6.62,"1325":6.625,"1326":6.63,"1327":6.635,"1328":6.64,"1329":6.645,"1330":6.65,"1331":6.655,"1332":6.66,"1333":6.665,"1334":6.67,"1335":6.675,"1336":6.68,"1337":6.685,"1338":6.69,"1339":6.695,"1340":6.7,"1341":6.705,"1342":6.71,"1343":6.715,"1344":6.72,"1345":6.725,"1346":6.73,"1347":6.735,"1348":6.74,"1349":6.745,"1350":6.75,"1351":6.755,"1352":6.76,"1353":6.765,"1354":6.77,"1355":6.775,"1356":6.78,"1357":6.785,"1358":6.79,"1359":6.795,"1360":6.8,"1361":6.805,"1362":6.81,"1363":6.815,"1364":6.82,"1365":6.825,"1366":6.83,"1367":6.835,"1368":6.84,"1369":6.845,"1370":6.85,"1371":6.855,"1372":6.86,"1373":6.865,"1374":6.87,"1375":6.875,"1376":6.88,"1377":6.885,"1378":6.89,"1379":6.895,"1380":6.9,"1381":6.905,"1382":6.91,"1383":6.915,"1384":6.92,"1385":6.925,"1386":6.93,"1387":6.935,"1388":6.94,"1389":6.945,"1390":6.95,"1391":6.955,"1392":6.96,"1393":6.965,"1394":6.97,"1395":6.975,"1396":6.98,"1397":6.985,"1398":6.99,"1399":6.995,"1400":7.0,"1401":7.005,"1402":7.01,"1403":7.015,"1404":7.02,"1405":7.025,"1406":7.03,"1407":7.035,"1408":7.04,"1409":7.045,"1410":7.05,"1411":7.055,"1412":7.06,"1413":7.065,"1414":7.07,"1415":7.075,"1416":7.08,"1417":7.085,"1418":7.09,"1419":7.095,"1420":7.1,"1421":7.105,"1422":7.11,"1423":7.115,"1424":7.12,"1425":7.125,"1426":7.13,"1427":7.135,"1428":7.14,"1429":7.145,"1430":7.15,"1431":7.155,"1432":7.16,"1433":7.165,"1434":7.17,"1435":7.175,"1436":7.18,"1437":7.185,"1438":7.19,"1439":7.195,"1440":7.2,"1441":7.205,"1442":7.21,"1443":7.215,"1444":7.22,"1445":7.225,"1446":7.23,"1447":7.235,"1448":7.24,"1449":7.245,"1450":7.25,"1451":7.255,"1452":7.26,"1453":7.265,"1454":7.27,"1455":7.275,"1456":7.28,"1457":7.285,"1458":7.29,"1459":7.295,"1460":7.3,"1461":7.305,"1462":7.31,"1463":7.315,"1464":7.32,"1465":7.325,"1466":7.33,"1467":7.335,"1468":7.34,"1469":7.345,"1470":7.35,"1471":7.355,"1472":7.36,"1473":7.365,"1474":7.37,"1475":7.375,"1476":7.38,"1477":7.385,"1478":7.39,"1479":7.395,"1480":7.4,"1481":7.405,"1482":7.41,"1483":7.415,"1484":7.42,"1485":7.425,"1486":7.43,"1487":7.435,"1488":7.44,"1489":7.445,"1490":7.45,"1491":7.455,"1492":7.46,"1493":7.465,"1494":7.47,"1495":7.475,"1496":7.48,"1497":7.485,"1498":7.49,"1499":7.495,"1500":7.5,"1501":7.505,"1502":7.51,"1503":7.515,"1504":7.52,"1505":7.525,"1506":7.53,"1507":7.535,"1508":7.54,"1509":7.545,"1510":7.55,"1511":7.555,"1512":7.56,"1513":7.565,"1514":7.57,"1515":7.575,"1516":7.58,"1517":7.585,"1518":7.59,"1519":7.595,"1520":7.6,"1521":7.605,"1522":7.61,"1523":7.615,"1524":7.62,"1525":7.625,"1526":7.63,"1527":7.635,"1528":7.64,"1529":7.645,"1530":7.65,"1531":7.655,"1532":7.66,"1533":7.665,"1534":7.67,"1535":7.675,"1536":7.68,"1537":7.685,"1538":7.69,"1539":7.695,"1540":7.7,"1541":7.705,"1542":7.71,"1543":7.715,"1544":7.72,"1545":7.725,"1546":7.73,"1547":7.735,"1548":7.74,"1549":7.745,"1550":7.75,"1551":7.755,"1552":7.76,"1553":7.765,"1554":7.77,"1555":7.775,"1556":7.78,"1557":7.785,"1558":7.79,"1559":7.795,"1560":7.8,"1561":7.805,"1562":7.81,"1563":7.815,"1564":7.82,"1565":7.825,"1566":7.83,"1567":7.835,"1568":7.84,"1569":7.845,"1570":7.85,"1571":7.855,"1572":7.86,"1573":7.865,"1574":7.87,"1575":7.875,"1576":7.88,"1577":7.885,"1578":7.89,"1579":7.895,"1580":7.9,"1581":7.905,"1582":7.91,"1583":7.915,"1584":7.92,"1585":7.925,"1586":7.93,"1587":7.935,"1588":7.94,"1589":7.945,"1590":7.95,"1591":7.955,"1592":7.96,"1593":7.965,"1594":7.97,"1595":7.975,"1596":7.98,"1597":7.985,"1598":7.99,"1599":7.995,"1600":8.0,"1601":8.005,"1602":8.01,"1603":8.015,"1604":8.02,"1605":8.025,"1606":8.03,"1607":8.035,"1608":8.04,"1609":8.045,"1610":8.05,"1611":8.055,"1612":8.06,"1613":8.065,"1614":8.07,"1615":8.075,"1616":8.08,"1617":8.085,"1618":8.09,"1619":8.095,"1620":8.1,"1621":8.105,"1622":8.11,"1623":8.115,"1624":8.12,"1625":8.125,"1626":8.13,"1627":8.135,"1628":8.14,"1629":8.145,"1630":8.15,"1631":8.155,"1632":8.16,"1633":8.165,"1634":8.17,"1635":8.175,"1636":8.18,"1637":8.185,"1638":8.19,"1639":8.195,"1640":8.2,"1641":8.205,"1642":8.21,"1643":8.215,"1644":8.22,"1645":8.225,"1646":8.23,"1647":8.235,"1648":8.24,"1649":8.245,"1650":8.25,"1651":8.255,"1652":8.26,"1653":8.265,"1654":8.27,"1655":8.275,"1656":8.28,"1657":8.285,"1658":8.29,"1659":8.295,"1660":8.3,"1661":8.305,"1662":8.31,"1663":8.315,"1664":8.32,"1665":8.325,"1666":8.33,"1667":8.335,"1668":8.34,"1669":8.345,"1670":8.35,"1671":8.355,"1672":8.36,"1673":8.365,"1674":8.37,"1675":8.375,"1676":8.38,"1677":8.385,"1678":8.39,"1679":8.395,"1680":8.4,"1681":8.405,"1682":8.41,"1683":8.415,"1684":8.42,"1685":8.425,"1686":8.43,"1687":8.435,"1688":8.44,"1689":8.445,"1690":8.45,"1691":8.455,"1692":8.46,"1693":8.465,"1694":8.47,"1695":8.475,"1696":8.48,"1697":8.485,"1698":8.49,"1699":8.495,"1700":8.5,"1701":8.505,"1702":8.51,"1703":8.515,"1704":8.52,"1705":8.525,"1706":8.53,"1707":8.535,"1708":8.54,"1709":8.545,"1710":8.55,"1711":8.555,"1712":8.56,"1713":8.565,"1714":8.57,"1715":8.575,"1716":8.58,"1717":8.585,"1718":8.59,"1719":8.595,"1720":8.6,"1721":8.605,"1722":8.61,"1723":8.615,"1724":8.62,"1725":8.625,"1726":8.63,"1727":8.635,"1728":8.64,"1729":8.645,"1730":8.65,"1731":8.655,"1732":8.66,"1733":8.665,"1734":8.67,"1735":8.675,"1736":8.68,"1737":8.685,"1738":8.69,"1739":8.695,"1740":8.7,"1741":8.705,"1742":8.71,"1743":8.715,"1744":8.72,"1745":8.725,"1746":8.73,"1747":8.735,"1748":8.74,"1749":8.745,"1750":8.75,"1751":8.755,"1752":8.76,"1753":8.765,"1754":8.77,"1755":8.775,"1756":8.78,"1757":8.785,"1758":8.79,"1759":8.795,"1760":8.8,"1761":8.805,"1762":8.81,"1763":8.815,"1764":8.82,"1765":8.825,"1766":8.83,"1767":8.835,"1768":8.84,"1769":8.845,"1770":8.85,"1771":8.855,"1772":8.86,"1773":8.865,"1774":8.87,"1775":8.875,"1776":8.88,"1777":8.885,"1778":8.89,"1779":8.895,"1780":8.9,"1781":8.905,"1782":8.91,"1783":8.915,"1784":8.92,"1785":8.925,"1786":8.93,"1787":8.935,"1788":8.94,"1789":8.945,"1790":8.95,"1791":8.955,"1792":8.96,"1793":8.965,"1794":8.97,"1795":8.975,"1796":8.98,"1797":8.985,"1798":8.99,"1799":8.995,"1800":9.0,"1801":9.005,"1802":9.01,"1803":9.015,"1804":9.02,"1805":9.025,"1806":9.03,"1807":9.035,"1808":9.04,"1809":9.045,"1810":9.05,"1811":9.055,"1812":9.06,"1813":9.065,"1814":9.07,"1815":9.075,"1816":9.08,"1817":9.085,"1818":9.09,"1819":9.095,"1820":9.1,"1821":9.105,"1822":9.11,"1823":9.115,"1824":9.12,"1825":9.125,"1826":9.13,"1827":9.135,"1828":9.14,"1829":9.145,"1830":9.15,"1831":9.155,"1832":9.16,"1833":9.165,"1834":9.17,"1835":9.175,"1836":9.18,"1837":9.185,"1838":9.19,"1839":9.195,"1840":9.2,"1841":9.205,"1842":9.21,"1843":9.215,"1844":9.22,"1845":9.225,"1846":9.23,"1847":9.235,"1848":9.24,"1849":9.245,"1850":9.25,"1851":9.255,"1852":9.26,"1853":9.265,"1854":9.27,"1855":9.275,"1856":9.28,"1857":9.285,"1858":9.29,"1859":9.295,"1860":9.3,"1861":9.305,"1862":9.31,"1863":9.315,"1864":9.32,"1865":9.325,"1866":9.33,"1867":9.335,"1868":9.34,"1869":9.345,"1870":9.35,"1871":9.355,"1872":9.36,"1873":9.365,"1874":9.37,"1875":9.375,"1876":9.38,"1877":9.385,"1878":9.39,"1879":9.395,"1880":9.4,"1881":9.405,"1882":9.41,"1883":9.415,"1884":9.42,"1885":9.425,"1886":9.43,"1887":9.435,"1888":9.44,"1889":9.445,"1890":9.45,"1891":9.455,"1892":9.46,"1893":9.465,"1894":9.47,"1895":9.475,"1896":9.48,"1897":9.485,"1898":9.49,"1899":9.495,"1900":9.5,"1901":9.505,"1902":9.51,"1903":9.515,"1904":9.52,"1905":9.525,"1906":9.53,"1907":9.535,"1908":9.54,"1909":9.545,"1910":9.55,"1911":9.555,"1912":9.56,"1913":9.565,"1914":9.57,"1915":9.575,"1916":9.58,"1917":9.585,"1918":9.59,"1919":9.595,"1920":9.6,"1921":9.605,"1922":9.61,"1923":9.615,"1924":9.62,"1925":9.625,"1926":9.63,"1927":9.635,"1928":9.64,"1929":9.645,"1930":9.65,"1931":9.655,"1932":9.66,"1933":9.665,"1934":9.67,"1935":9.675,"1936":9.68,"1937":9.685,"1938":9.69,"1939":9.695,"1940":9.7,"1941":9.705,"1942":9.71,"1943":9.715,"1944":9.72,"1945":9.725,"1946":9.73,"1947":9.735,"1948":9.74,"1949":9.745,"1950":9.75,"1951":9.755,"1952":9.76,"1953":9.765,"1954":9.77,"1955":9.775,"1956":9.78,"1957":9.785,"1958":9.79,"1959":9.795,"1960":9.8,"1961":9.805,"1962":9.81,"1963":9.815,"1964":9.82,"1965":9.825,"1966":9.83,"1967":9.835,"1968":9.84,"1969":9.845,"1970":9.85,"1971":9.855,"1972":9.86,"1973":9.865,"1974":9.87,"1975":9.875,"1976":9.88,"1977":9.885,"1978":9.89,"1979":9.895,"1980":9.9,"1981":9.905,"1982":9.91,"1983":9.915,"1984":9.92,"1985":9.925,"1986":9.93,"1987":9.935,"1988":9.94,"1989":9.945,"1990":9.95,"1991":9.955,"1992":9.96,"1993":9.965,"1994":9.97,"1995":9.975,"1996":9.98,"1997":9.985,"1998":9.99,"1999":9.995,"2000":10.0},"flow_in":{"0":2.200000001,"1":2.2784881489,"2":2.3569762991,"3":2.4351546912,"4":2.513333084,"5":2.5908931852,"6":2.6684532865,"7":2.7450890022,"8":2.8217247179,"9":2.8971336019,"10":2.9725424859,"11":3.0464269338,"12":3.1203113817,"13":3.1923798053,"14":3.2644482289,"15":3.3344162071,"16":3.4043841853,"17":3.4719755864,"18":3.5395669874,"19":3.6045150591,"20":3.6694631307,"21":3.7315115526,"22":3.7935599744,"23":3.8524638696,"24":3.9113677648,"25":3.9668946667,"26":4.0224215686,"27":4.0743523377,"28":4.1262831069,"29":4.1744127964,"30":4.2225424859,"31":4.2666811498,"32":4.3108198138,"33":4.3507932569,"34":4.3907667001,"35":4.4264171656,"36":4.4620676312,"37":4.4932544229,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2,"201":2.2784881494,"202":2.3569762988,"203":2.4351546914,"204":2.5133330839,"205":2.5908931852,"206":2.6684532865,"207":2.7450890022,"208":2.8217247179,"209":2.8971336019,"210":2.9725424859,"211":3.0464269338,"212":3.1203113817,"213":3.1923798053,"214":3.2644482289,"215":3.3344162071,"216":3.4043841853,"217":3.4719755864,"218":3.5395669874,"219":3.6045150591,"220":3.6694631307,"221":3.7315115526,"222":3.7935599744,"223":3.8524638696,"224":3.9113677648,"225":3.9668946667,"226":4.0224215686,"227":4.0743523377,"228":4.1262831069,"229":4.1744127964,"230":4.2225424859,"231":4.2666811498,"232":4.3108198138,"233":4.3507932569,"234":4.3907667001,"235":4.4264171656,"236":4.4620676312,"237":4.4932544229,"238":4.5244412147,"239":4.5510412527,"240":4.5776412907,"241":4.5995495968,"242":4.6214579028,"243":4.6385880148,"244":4.6557181268,"245":4.6680024401,"246":4.6802867533,"247":4.6876767872,"248":4.6950668211,"249":4.6975334105,"250":4.7,"251":4.6975334105,"252":4.6950668211,"253":4.6876767872,"254":4.6802867533,"255":4.6680024401,"256":4.6557181268,"257":4.6385880148,"258":4.6214579028,"259":4.5995495968,"260":4.5776412907,"261":4.5510412527,"262":4.5244412147,"263":4.4932544229,"264":4.4620676312,"265":4.4264171656,"266":4.3907667001,"267":4.3507932569,"268":4.3108198138,"269":4.2666811498,"270":4.2225424859,"271":4.1744127964,"272":4.1262831069,"273":4.0743523377,"274":4.0224215686,"275":3.9668946667,"276":3.9113677648,"277":3.8524638696,"278":3.7935599744,"279":3.7315115526,"280":3.6694631307,"281":3.6045150591,"282":3.5395669874,"283":3.4719755864,"284":3.4043841853,"285":3.3344162071,"286":3.2644482289,"287":3.1923798053,"288":3.1203113817,"289":3.0464269338,"290":2.9725424859,"291":2.8971336019,"292":2.8217247179,"293":2.7450890022,"294":2.6684532865,"295":2.5908931852,"296":2.5133330839,"297":2.4351546914,"298":2.3569762988,"299":2.2784881494,"300":2.2,"301":2.1215118506,"302":2.0430237012,"303":1.9648453086,"304":1.8866669161,"305":1.8091068148,"306":1.7315467135,"307":1.6549109978,"308":1.5782752821,"309":1.5028663981,"310":1.4274575141,"311":1.3535730662,"312":1.2796886183,"313":1.2076201947,"314":1.1355517711,"315":1.0655837929,"316":0.9956158147,"317":0.9280244136,"318":0.8604330126,"319":0.7954849409,"320":0.7305368693,"321":0.6684884474,"322":0.6064400256,"323":0.5475361304,"324":0.4886322352,"325":0.4331053333,"326":0.3775784314,"327":0.3256476623,"328":0.2737168931,"329":0.2255872036,"330":0.1774575141,"331":0.1333188502,"332":0.0891801862,"333":0.0492067431,"334":0.0092332999,"335":-0.0264171656,"336":-0.0620676312,"337":-0.0932544229,"338":-0.1244412147,"339":-0.1510412527,"340":-0.1776412907,"341":-0.1995495968,"342":-0.2214579028,"343":-0.2385880148,"344":-0.2557181268,"345":-0.2680024401,"346":-0.2802867533,"347":-0.2876767872,"348":-0.2950668211,"349":-0.2975334105,"350":-0.3,"351":-0.2975334105,"352":-0.2950668211,"353":-0.2876767872,"354":-0.2802867533,"355":-0.2680024401,"356":-0.2557181268,"357":-0.2385880148,"358":-0.2214579028,"359":-0.1995495968,"360":-0.1776412907,"361":-0.1510412527,"362":-0.1244412147,"363":-0.0932544229,"364":-0.0620676312,"365":-0.0264171656,"366":0.0092332999,"367":0.0492067431,"368":0.0891801862,"369":0.1333188502,"370":0.1774575141,"371":0.2255872036,"372":0.2737168931,"373":0.3256476623,"374":0.3775784314,"375":0.4331053333,"376":0.4886322352,"377":0.5475361304,"378":0.6064400256,"379":0.6684884474,"380":0.7305368693,"381":0.7954849409,"382":0.8604330126,"383":0.9280244136,"384":0.9956158147,"385":1.0655837929,"386":1.1355517711,"387":1.2076201947,"388":1.2796886183,"389":1.3535730662,"390":1.4274575141,"391":1.5028663981,"392":1.5782752821,"393":1.6549109978,"394":1.7315467135,"395":1.8091068148,"396":1.8866669161,"397":1.9648453086,"398":2.0430237012,"399":2.1215118506,"400":2.2,"401":2.2784881494,"402":2.3569762988,"403":2.4351546914,"404":2.5133330839,"405":2.5908931852,"406":2.6684532865,"407":2.7450890022,"408":2.8217247179,"409":2.8971336019,"410":2.9725424859,"411":3.0464269338,"412":3.1203113817,"413":3.1923798053,"414":3.2644482289,"415":3.3344162071,"416":3.4043841853,"417":3.4719755864,"418":3.5395669874,"419":3.6045150591,"420":3.6694631307,"421":3.7315115526,"422":3.7935599744,"423":3.8524638696,"424":3.9113677648,"425":3.9668946667,"426":4.0224215686,"427":4.0743523377,"428":4.1262831069,"429":4.1744127964,"430":4.2225424859,"431":4.2666811498,"432":4.3108198138,"433":4.3507932569,"434":4.3907667001,"435":4.4264171656,"436":4.4620676312,"437":4.4932544229,"438":4.5244412147,"439":4.5510412527,"440":4.5776412907,"441":4.5995495968,"442":4.6214579028,"443":4.6385880148,"444":4.6557181268,"445":4.6680024401,"446":4.6802867533,"447":4.6876767872,"448":4.6950668211,"449":4.6975334105,"450":4.7,"451":4.6975334105,"452":4.6950668211,"453":4.6876767872,"454":4.6802867533,"455":4.6680024401,"456":4.6557181268,"457":4.6385880148,"458":4.6214579028,"459":4.5995495968,"460":4.5776412907,"461":4.5510412527,"462":4.5244412147,"463":4.4932544229,"464":4.4620676312,"465":4.4264171656,"466":4.3907667001,"467":4.3507932569,"468":4.3108198138,"469":4.2666811498,"470":4.2225424859,"471":4.1744127964,"472":4.1262831069,"473":4.0743523377,"474":4.0224215686,"475":3.9668946667,"476":3.9113677648,"477":3.8524638696,"478":3.7935599744,"479":3.7315115526,"480":3.6694631307,"481":3.6045150591,"482":3.5395669874,"483":3.4719755864,"484":3.4043841853,"485":3.3344162071,"486":3.2644482289,"487":3.1923798053,"488":3.1203113817,"489":3.0464269338,"490":2.9725424859,"491":2.8971336019,"492":2.8217247179,"493":2.7450890022,"494":2.6684532865,"495":2.5908931852,"496":2.5133330839,"497":2.4351546914,"498":2.3569762988,"499":2.2784881494,"500":2.2,"501":2.1215118506,"502":2.0430237012,"503":1.9648453086,"504":1.8866669161,"505":1.8091068148,"506":1.7315467135,"507":1.6549109978,"508":1.5782752821,"509":1.5028663981,"510":1.4274575141,"511":1.3535730662,"512":1.2796886183,"513":1.2076201947,"514":1.1355517711,"515":1.0655837929,"516":0.9956158147,"517":0.9280244136,"518":0.8604330126,"519":0.7954849409,"520":0.7305368693,"521":0.6684884474,"522":0.6064400256,"523":0.5475361304,"524":0.4886322352,"525":0.4331053333,"526":0.3775784314,"527":0.3256476623,"528":0.2737168931,"529":0.2255872036,"530":0.1774575141,"531":0.1333188502,"532":0.0891801862,"533":0.0492067431,"534":0.0092332999,"535":-0.0264171656,"536":-0.0620676312,"537":-0.0932544229,"538":-0.1244412147,"539":-0.1510412527,"540":-0.1776412907,"541":-0.1995495968,"542":-0.2214579028,"543":-0.2385880148,"544":-0.2557181268,"545":-0.2680024401,"546":-0.2802867533,"547":-0.2876767872,"548":-0.2950668211,"549":-0.2975334105,"550":-0.3,"551":-0.2975334105,"552":-0.2950668211,"553":-0.2876767872,"554":-0.2802867533,"555":-0.2680024401,"556":-0.2557181268,"557":-0.2385880148,"558":-0.2214579028,"559":-0.1995495968,"560":-0.1776412907,"561":-0.1510412527,"562":-0.1244412147,"563":-0.0932544229,"564":-0.0620676312,"565":-0.0264171656,"566":0.0092332999,"567":0.0492067431,"568":0.0891801862,"569":0.1333188502,"570":0.1774575141,"571":0.2255872036,"572":0.2737168931,"573":0.3256476623,"574":0.3775784314,"575":0.4331053333,"576":0.4886322352,"577":0.5475361304,"578":0.6064400256,"579":0.6684884474,"580":0.7305368693,"581":0.7954849409,"582":0.8604330126,"583":0.9280244136,"584":0.9956158147,"585":1.0655837929,"586":1.1355517711,"587":1.2076201947,"588":1.2796886183,"589":1.3535730662,"590":1.4274575141,"591":1.5028663981,"592":1.5782752821,"593":1.6549109978,"594":1.7315467135,"595":1.8091068148,"596":1.8866669161,"597":1.9648453086,"598":2.0430237012,"599":2.1215118506,"600":2.2,"601":2.2784881494,"602":2.3569762988,"603":2.4351546914,"604":2.5133330839,"605":2.5908931852,"606":2.6684532865,"607":2.7450890022,"608":2.8217247179,"609":2.8971336019,"610":2.9725424859,"611":3.0464269338,"612":3.1203113817,"613":3.1923798053,"614":3.2644482289,"615":3.3344162071,"616":3.4043841853,"617":3.4719755864,"618":3.5395669874,"619":3.6045150591,"620":3.6694631307,"621":3.7315115526,"622":3.7935599744,"623":3.8524638696,"624":3.9113677648,"625":3.9668946667,"626":4.0224215686,"627":4.0743523377,"628":4.1262831069,"629":4.1744127964,"630":4.2225424859,"631":4.2666811498,"632":4.3108198138,"633":4.3507932569,"634":4.3907667001,"635":4.4264171656,"636":4.4620676312,"637":4.4932544229,"638":4.5244412147,"639":4.5510412527,"640":4.5776412907,"641":4.5995495968,"642":4.6214579028,"643":4.6385880148,"644":4.6557181268,"645":4.6680024401,"646":4.6802867533,"647":4.6876767872,"648":4.6950668211,"649":4.6975334105,"650":4.7,"651":4.6975334105,"652":4.6950668211,"653":4.6876767872,"654":4.6802867533,"655":4.6680024401,"656":4.6557181268,"657":4.6385880148,"658":4.6214579028,"659":4.5995495968,"660":4.5776412907,"661":4.5510412527,"662":4.5244412147,"663":4.4932544229,"664":4.4620676312,"665":4.4264171656,"666":4.3907667001,"667":4.3507932569,"668":4.3108198138,"669":4.2666811498,"670":4.2225424859,"671":4.1744127964,"672":4.1262831069,"673":4.0743523377,"674":4.0224215686,"675":3.9668946667,"676":3.9113677648,"677":3.8524638696,"678":3.7935599744,"679":3.7315115526,"680":3.6694631307,"681":3.6045150591,"682":3.5395669874,"683":3.4719755864,"684":3.4043841853,"685":3.3344162071,"686":3.2644482289,"687":3.1923798053,"688":3.1203113817,"689":3.0464269338,"690":2.9725424859,"691":2.8971336019,"692":2.8217247179,"693":2.7450890022,"694":2.6684532865,"695":2.5908931852,"696":2.5133330839,"697":2.4351546914,"698":2.3569762988,"699":2.2784881494,"700":2.2,"701":2.1215118506,"702":2.0430237012,"703":1.9648453086,"704":1.8866669161,"705":1.8091068148,"706":1.7315467135,"707":1.6549109978,"708":1.5782752821,"709":1.5028663981,"710":1.4274575141,"711":1.3535730662,"712":1.2796886183,"713":1.2076201947,"714":1.1355517711,"715":1.0655837929,"716":0.9956158147,"717":0.9280244136,"718":0.8604330126,"719":0.7954849409,"720":0.7305368693,"721":0.6684884474,"722":0.6064400256,"723":0.5475361304,"724":0.4886322352,"725":0.4331053333,"726":0.3775784314,"727":0.3256476623,"728":0.2737168931,"729":0.2255872036,"730":0.1774575141,"731":0.1333188502,"732":0.0891801862,"733":0.0492067431,"734":0.0092332999,"735":-0.0264171656,"736":-0.0620676312,"737":-0.0932544229,"738":-0.1244412147,"739":-0.1510412527,"740":-0.1776412907,"741":-0.1995495968,"742":-0.2214579028,"743":-0.2385880148,"744":-0.2557181268,"745":-0.2680024401,"746":-0.2802867533,"747":-0.2876767872,"748":-0.2950668211,"749":-0.2975334105,"750":-0.3,"751":-0.2975334105,"752":-0.2950668211,"753":-0.2876767872,"754":-0.2802867533,"755":-0.2680024401,"756":-0.2557181268,"757":-0.2385880148,"758":-0.2214579028,"759":-0.1995495968,"760":-0.1776412907,"761":-0.1510412527,"762":-0.1244412147,"763":-0.0932544229,"764":-0.0620676312,"765":-0.0264171656,"766":0.0092332999,"767":0.0492067431,"768":0.0891801862,"769":0.1333188502,"770":0.1774575141,"771":0.2255872036,"772":0.2737168931,"773":0.3256476623,"774":0.3775784314,"775":0.4331053333,"776":0.4886322352,"777":0.5475361304,"778":0.6064400256,"779":0.6684884474,"780":0.7305368693,"781":0.7954849409,"782":0.8604330126,"783":0.9280244136,"784":0.9956158147,"785":1.0655837929,"786":1.1355517711,"787":1.2076201947,"788":1.2796886183,"789":1.3535730662,"790":1.4274575141,"791":1.5028663981,"792":1.5782752821,"793":1.6549109978,"794":1.7315467135,"795":1.8091068148,"796":1.8866669161,"797":1.9648453086,"798":2.0430237012,"799":2.1215118506,"800":2.2,"801":2.2784881494,"802":2.3569762988,"803":2.4351546914,"804":2.5133330839,"805":2.5908931852,"806":2.6684532865,"807":2.7450890022,"808":2.8217247179,"809":2.8971336019,"810":2.9725424859,"811":3.0464269338,"812":3.1203113817,"813":3.1923798053,"814":3.2644482289,"815":3.3344162071,"816":3.4043841853,"817":3.4719755864,"818":3.5395669874,"819":3.6045150591,"820":3.6694631307,"821":3.7315115526,"822":3.7935599744,"823":3.8524638696,"824":3.9113677648,"825":3.9668946667,"826":4.0224215686,"827":4.0743523377,"828":4.1262831069,"829":4.1744127964,"830":4.2225424859,"831":4.2666811498,"832":4.3108198138,"833":4.3507932569,"834":4.3907667001,"835":4.4264171656,"836":4.4620676312,"837":4.4932544229,"838":4.5244412147,"839":4.5510412527,"840":4.5776412907,"841":4.5995495968,"842":4.6214579028,"843":4.6385880148,"844":4.6557181268,"845":4.6680024401,"846":4.6802867533,"847":4.6876767872,"848":4.6950668211,"849":4.6975334105,"850":4.7,"851":4.6975334105,"852":4.6950668211,"853":4.6876767872,"854":4.6802867533,"855":4.6680024401,"856":4.6557181268,"857":4.6385880148,"858":4.6214579028,"859":4.5995495968,"860":4.5776412907,"861":4.5510412527,"862":4.5244412147,"863":4.4932544229,"864":4.4620676312,"865":4.4264171656,"866":4.3907667001,"867":4.3507932569,"868":4.3108198138,"869":4.2666811498,"870":4.2225424859,"871":4.1744127964,"872":4.1262831069,"873":4.0743523377,"874":4.0224215686,"875":3.9668946667,"876":3.9113677648,"877":3.8524638696,"878":3.7935599744,"879":3.7315115526,"880":3.6694631307,"881":3.6045150591,"882":3.5395669874,"883":3.4719755864,"884":3.4043841853,"885":3.3344162071,"886":3.2644482289,"887":3.1923798053,"888":3.1203113817,"889":3.0464269338,"890":2.9725424859,"891":2.8971336019,"892":2.8217247179,"893":2.7450890022,"894":2.6684532865,"895":2.5908931852,"896":2.5133330839,"897":2.4351546914,"898":2.3569762988,"899":2.2784881494,"900":2.2,"901":2.1215118506,"902":2.0430237012,"903":1.9648453086,"904":1.8866669161,"905":1.8091068148,"906":1.7315467135,"907":1.6549109978,"908":1.5782752821,"909":1.5028663981,"910":1.4274575141,"911":1.3535730662,"912":1.2796886183,"913":1.2076201947,"914":1.1355517711,"915":1.0655837929,"916":0.9956158147,"917":0.9280244136,"918":0.8604330126,"919":0.7954849409,"920":0.7305368693,"921":0.6684884474,"922":0.6064400256,"923":0.5475361304,"924":0.4886322352,"925":0.4331053333,"926":0.3775784314,"927":0.3256476623,"928":0.2737168931,"929":0.2255872036,"930":0.1774575141,"931":0.1333188502,"932":0.0891801862,"933":0.0492067431,"934":0.0092332999,"935":-0.0264171656,"936":-0.0620676312,"937":-0.0932544229,"938":-0.1244412147,"939":-0.1510412527,"940":-0.1776412907,"941":-0.1995495968,"942":-0.2214579028,"943":-0.2385880148,"944":-0.2557181268,"945":-0.2680024401,"946":-0.2802867533,"947":-0.2876767872,"948":-0.2950668211,"949":-0.2975334105,"950":-0.3,"951":-0.2975334105,"952":-0.2950668211,"953":-0.2876767872,"954":-0.2802867533,"955":-0.2680024401,"956":-0.2557181268,"957":-0.2385880148,"958":-0.2214579028,"959":-0.1995495968,"960":-0.1776412907,"961":-0.1510412527,"962":-0.1244412147,"963":-0.0932544229,"964":-0.0620676312,"965":-0.0264171656,"966":0.0092332999,"967":0.0492067431,"968":0.0891801862,"969":0.1333188502,"970":0.1774575141,"971":0.2255872036,"972":0.2737168931,"973":0.3256476623,"974":0.3775784314,"975":0.4331053333,"976":0.4886322352,"977":0.5475361304,"978":0.6064400256,"979":0.6684884474,"980":0.7305368693,"981":0.7954849409,"982":0.8604330126,"983":0.9280244136,"984":0.9956158147,"985":1.0655837929,"986":1.1355517711,"987":1.2076201947,"988":1.2796886183,"989":1.3535730662,"990":1.4274575141,"991":1.5028663981,"992":1.5782752821,"993":1.6549109978,"994":1.7315467135,"995":1.8091068148,"996":1.8866669161,"997":1.9648453086,"998":2.0430237012,"999":2.1215118506,"1000":2.2,"1001":2.2784881494,"1002":2.3569762988,"1003":2.4351546914,"1004":2.5133330839,"1005":2.5908931852,"1006":2.6684532865,"1007":2.7450890022,"1008":2.8217247179,"1009":2.8971336019,"1010":2.9725424859,"1011":3.0464269338,"1012":3.1203113817,"1013":3.1923798053,"1014":3.2644482289,"1015":3.3344162071,"1016":3.4043841853,"1017":3.4719755864,"1018":3.5395669874,"1019":3.6045150591,"1020":3.6694631307,"1021":3.7315115526,"1022":3.7935599744,"1023":3.8524638696,"1024":3.9113677648,"1025":3.9668946667,"1026":4.0224215686,"1027":4.0743523377,"1028":4.1262831069,"1029":4.1744127964,"1030":4.2225424859,"1031":4.2666811498,"1032":4.3108198138,"1033":4.3507932569,"1034":4.3907667001,"1035":4.4264171656,"1036":4.4620676312,"1037":4.4932544229,"1038":4.5244412147,"1039":4.5510412527,"1040":4.5776412907,"1041":4.5995495968,"1042":4.6214579028,"1043":4.6385880148,"1044":4.6557181268,"1045":4.6680024401,"1046":4.6802867533,"1047":4.6876767872,"1048":4.6950668211,"1049":4.6975334105,"1050":4.7,"1051":4.6975334105,"1052":4.6950668211,"1053":4.6876767872,"1054":4.6802867533,"1055":4.6680024401,"1056":4.6557181268,"1057":4.6385880148,"1058":4.6214579028,"1059":4.5995495968,"1060":4.5776412907,"1061":4.5510412527,"1062":4.5244412147,"1063":4.4932544229,"1064":4.4620676312,"1065":4.4264171656,"1066":4.3907667001,"1067":4.3507932569,"1068":4.3108198138,"1069":4.2666811498,"1070":4.2225424859,"1071":4.1744127964,"1072":4.1262831069,"1073":4.0743523377,"1074":4.0224215686,"1075":3.9668946667,"1076":3.9113677648,"1077":3.8524638696,"1078":3.7935599744,"1079":3.7315115526,"1080":3.6694631307,"1081":3.6045150591,"1082":3.5395669874,"1083":3.4719755864,"1084":3.4043841853,"1085":3.3344162071,"1086":3.2644482289,"1087":3.1923798053,"1088":3.1203113817,"1089":3.0464269338,"1090":2.9725424859,"1091":2.8971336019,"1092":2.8217247179,"1093":2.7450890022,"1094":2.6684532865,"1095":2.5908931852,"1096":2.5133330839,"1097":2.4351546914,"1098":2.3569762988,"1099":2.2784881494,"1100":2.2,"1101":2.1215118506,"1102":2.0430237012,"1103":1.9648453086,"1104":1.8866669161,"1105":1.8091068148,"1106":1.7315467135,"1107":1.6549109978,"1108":1.5782752821,"1109":1.5028663981,"1110":1.4274575141,"1111":1.3535730662,"1112":1.2796886183,"1113":1.2076201947,"1114":1.1355517711,"1115":1.0655837929,"1116":0.9956158147,"1117":0.9280244136,"1118":0.8604330126,"1119":0.7954849409,"1120":0.7305368693,"1121":0.6684884474,"1122":0.6064400256,"1123":0.5475361304,"1124":0.4886322352,"1125":0.4331053333,"1126":0.3775784314,"1127":0.3256476623,"1128":0.2737168931,"1129":0.2255872036,"1130":0.1774575141,"1131":0.1333188502,"1132":0.0891801862,"1133":0.0492067431,"1134":0.0092332999,"1135":-0.0264171656,"1136":-0.0620676312,"1137":-0.0932544229,"1138":-0.1244412147,"1139":-0.1510412527,"1140":-0.1776412907,"1141":-0.1995495968,"1142":-0.2214579028,"1143":-0.2385880148,"1144":-0.2557181268,"1145":-0.2680024401,"1146":-0.2802867533,"1147":-0.2876767872,"1148":-0.2950668211,"1149":-0.2975334105,"1150":-0.3,"1151":-0.2975334105,"1152":-0.2950668211,"1153":-0.2876767872,"1154":-0.2802867533,"1155":-0.2680024401,"1156":-0.2557181268,"1157":-0.2385880148,"1158":-0.2214579028,"1159":-0.1995495968,"1160":-0.1776412907,"1161":-0.1510412527,"1162":-0.1244412147,"1163":-0.0932544229,"1164":-0.0620676312,"1165":-0.0264171656,"1166":0.0092332999,"1167":0.0492067431,"1168":0.0891801862,"1169":0.1333188502,"1170":0.1774575141,"1171":0.2255872036,"1172":0.2737168931,"1173":0.3256476623,"1174":0.3775784314,"1175":0.4331053333,"1176":0.4886322352,"1177":0.5475361304,"1178":0.6064400256,"1179":0.6684884474,"1180":0.7305368693,"1181":0.7954849409,"1182":0.8604330126,"1183":0.9280244136,"1184":0.9956158147,"1185":1.0655837929,"1186":1.1355517711,"1187":1.2076201947,"1188":1.2796886183,"1189":1.3535730662,"1190":1.4274575141,"1191":1.5028663981,"1192":1.5782752821,"1193":1.6549109978,"1194":1.7315467135,"1195":1.8091068148,"1196":1.8866669161,"1197":1.9648453086,"1198":2.0430237012,"1199":2.1215118506,"1200":2.2,"1201":2.2784881494,"1202":2.3569762988,"1203":2.4351546914,"1204":2.5133330839,"1205":2.5908931852,"1206":2.6684532865,"1207":2.7450890022,"1208":2.8217247179,"1209":2.8971336019,"1210":2.9725424859,"1211":3.0464269338,"1212":3.1203113817,"1213":3.1923798053,"1214":3.2644482289,"1215":3.3344162071,"1216":3.4043841853,"1217":3.4719755864,"1218":3.5395669874,"1219":3.6045150591,"1220":3.6694631307,"1221":3.7315115526,"1222":3.7935599744,"1223":3.8524638696,"1224":3.9113677648,"1225":3.9668946667,"1226":4.0224215686,"1227":4.0743523377,"1228":4.1262831069,"1229":4.1744127964,"1230":4.2225424859,"1231":4.2666811498,"1232":4.3108198138,"1233":4.3507932569,"1234":4.3907667001,"1235":4.4264171656,"1236":4.4620676312,"1237":4.4932544229,"1238":4.5244412147,"1239":4.5510412527,"1240":4.5776412907,"1241":4.5995495968,"1242":4.6214579028,"1243":4.6385880148,"1244":4.6557181268,"1245":4.6680024401,"1246":4.6802867533,"1247":4.6876767872,"1248":4.6950668211,"1249":4.6975334105,"1250":4.7,"1251":4.6975334105,"1252":4.6950668211,"1253":4.6876767872,"1254":4.6802867533,"1255":4.6680024401,"1256":4.6557181268,"1257":4.6385880148,"1258":4.6214579028,"1259":4.5995495968,"1260":4.5776412907,"1261":4.5510412527,"1262":4.5244412147,"1263":4.4932544229,"1264":4.4620676312,"1265":4.4264171656,"1266":4.3907667001,"1267":4.3507932569,"1268":4.3108198138,"1269":4.2666811498,"1270":4.2225424859,"1271":4.1744127964,"1272":4.1262831069,"1273":4.0743523377,"1274":4.0224215686,"1275":3.9668946667,"1276":3.9113677648,"1277":3.8524638696,"1278":3.7935599744,"1279":3.7315115526,"1280":3.6694631307,"1281":3.6045150591,"1282":3.5395669874,"1283":3.4719755864,"1284":3.4043841853,"1285":3.3344162071,"1286":3.2644482289,"1287":3.1923798053,"1288":3.1203113817,"1289":3.0464269338,"1290":2.9725424859,"1291":2.8971336019,"1292":2.8217247179,"1293":2.7450890022,"1294":2.6684532865,"1295":2.5908931852,"1296":2.5133330839,"1297":2.4351546914,"1298":2.3569762988,"1299":2.2784881494,"1300":2.2,"1301":2.1215118506,"1302":2.0430237012,"1303":1.9648453086,"1304":1.8866669161,"1305":1.8091068148,"1306":1.7315467135,"1307":1.6549109978,"1308":1.5782752821,"1309":1.5028663981,"1310":1.4274575141,"1311":1.3535730662,"1312":1.2796886183,"1313":1.2076201947,"1314":1.1355517711,"1315":1.0655837929,"1316":0.9956158147,"1317":0.9280244136,"1318":0.8604330126,"1319":0.7954849409,"1320":0.7305368693,"1321":0.6684884474,"1322":0.6064400256,"1323":0.5475361304,"1324":0.4886322352,"1325":0.4331053333,"1326":0.3775784314,"1327":0.3256476623,"1328":0.2737168931,"1329":0.2255872036,"1330":0.1774575141,"1331":0.1333188502,"1332":0.0891801862,"1333":0.0492067431,"1334":0.0092332999,"1335":-0.0264171656,"1336":-0.0620676312,"1337":-0.0932544229,"1338":-0.1244412147,"1339":-0.1510412527,"1340":-0.1776412907,"1341":-0.1995495968,"1342":-0.2214579028,"1343":-0.2385880148,"1344":-0.2557181268,"1345":-0.2680024401,"1346":-0.2802867533,"1347":-0.2876767872,"1348":-0.2950668211,"1349":-0.2975334105,"1350":-0.3,"1351":-0.2975334105,"1352":-0.2950668211,"1353":-0.2876767872,"1354":-0.2802867533,"1355":-0.2680024401,"1356":-0.2557181268,"1357":-0.2385880148,"1358":-0.2214579028,"1359":-0.1995495968,"1360":-0.1776412907,"1361":-0.1510412527,"1362":-0.1244412147,"1363":-0.0932544229,"1364":-0.0620676312,"1365":-0.0264171656,"1366":0.0092332999,"1367":0.0492067431,"1368":0.0891801862,"1369":0.1333188502,"1370":0.1774575141,"1371":0.2255872036,"1372":0.2737168931,"1373":0.3256476623,"1374":0.3775784314,"1375":0.4331053333,"1376":0.4886322352,"1377":0.5475361304,"1378":0.6064400256,"1379":0.6684884474,"1380":0.7305368693,"1381":0.7954849409,"1382":0.8604330126,"1383":0.9280244136,"1384":0.9956158147,"1385":1.0655837929,"1386":1.1355517711,"1387":1.2076201947,"1388":1.2796886183,"1389":1.3535730662,"1390":1.4274575141,"1391":1.5028663981,"1392":1.5782752821,"1393":1.6549109978,"1394":1.7315467135,"1395":1.8091068148,"1396":1.8866669161,"1397":1.9648453086,"1398":2.0430237012,"1399":2.1215118506,"1400":2.2,"1401":2.2784881494,"1402":2.3569762988,"1403":2.4351546914,"1404":2.5133330839,"1405":2.5908931852,"1406":2.6684532865,"1407":2.7450890022,"1408":2.8217247179,"1409":2.8971336019,"1410":2.9725424859,"1411":3.0464269338,"1412":3.1203113817,"1413":3.1923798053,"1414":3.2644482289,"1415":3.3344162071,"1416":3.4043841853,"1417":3.4719755864,"1418":3.5395669874,"1419":3.6045150591,"1420":3.6694631307,"1421":3.7315115526,"1422":3.7935599744,"1423":3.8524638696,"1424":3.9113677648,"1425":3.9668946667,"1426":4.0224215686,"1427":4.0743523377,"1428":4.1262831069,"1429":4.1744127964,"1430":4.2225424859,"1431":4.2666811498,"1432":4.3108198138,"1433":4.3507932569,"1434":4.3907667001,"1435":4.4264171656,"1436":4.4620676312,"1437":4.4932544229,"1438":4.5244412147,"1439":4.5510412527,"1440":4.5776412907,"1441":4.5995495968,"1442":4.6214579028,"1443":4.6385880148,"1444":4.6557181268,"1445":4.6680024401,"1446":4.6802867533,"1447":4.6876767872,"1448":4.6950668211,"1449":4.6975334105,"1450":4.7,"1451":4.6975334105,"1452":4.6950668211,"1453":4.6876767872,"1454":4.6802867533,"1455":4.6680024401,"1456":4.6557181268,"1457":4.6385880148,"1458":4.6214579028,"1459":4.5995495968,"1460":4.5776412907,"1461":4.5510412527,"1462":4.5244412147,"1463":4.4932544229,"1464":4.4620676312,"1465":4.4264171656,"1466":4.3907667001,"1467":4.3507932569,"1468":4.3108198138,"1469":4.2666811498,"1470":4.2225424859,"1471":4.1744127964,"1472":4.1262831069,"1473":4.0743523377,"1474":4.0224215686,"1475":3.9668946667,"1476":3.9113677648,"1477":3.8524638696,"1478":3.7935599744,"1479":3.7315115526,"1480":3.6694631307,"1481":3.6045150591,"1482":3.5395669874,"1483":3.4719755864,"1484":3.4043841853,"1485":3.3344162071,"1486":3.2644482289,"1487":3.1923798053,"1488":3.1203113817,"1489":3.0464269338,"1490":2.9725424859,"1491":2.8971336019,"1492":2.8217247179,"1493":2.7450890022,"1494":2.6684532865,"1495":2.5908931852,"1496":2.5133330839,"1497":2.4351546914,"1498":2.3569762988,"1499":2.2784881494,"1500":2.2,"1501":2.1215118506,"1502":2.0430237012,"1503":1.9648453086,"1504":1.8866669161,"1505":1.8091068148,"1506":1.7315467135,"1507":1.6549109978,"1508":1.5782752821,"1509":1.5028663981,"1510":1.4274575141,"1511":1.3535730662,"1512":1.2796886183,"1513":1.2076201947,"1514":1.1355517711,"1515":1.0655837929,"1516":0.9956158147,"1517":0.9280244136,"1518":0.8604330126,"1519":0.7954849409,"1520":0.7305368693,"1521":0.6684884474,"1522":0.6064400256,"1523":0.5475361304,"1524":0.4886322352,"1525":0.4331053333,"1526":0.3775784314,"1527":0.3256476623,"1528":0.2737168931,"1529":0.2255872036,"1530":0.1774575141,"1531":0.1333188502,"1532":0.0891801862,"1533":0.0492067431,"1534":0.0092332999,"1535":-0.0264171656,"1536":-0.0620676312,"1537":-0.0932544229,"1538":-0.1244412147,"1539":-0.1510412527,"1540":-0.1776412907,"1541":-0.1995495968,"1542":-0.2214579028,"1543":-0.2385880148,"1544":-0.2557181268,"1545":-0.2680024401,"1546":-0.2802867533,"1547":-0.2876767872,"1548":-0.2950668211,"1549":-0.2975334105,"1550":-0.3,"1551":-0.2975334105,"1552":-0.2950668211,"1553":-0.2876767872,"1554":-0.2802867533,"1555":-0.2680024401,"1556":-0.2557181268,"1557":-0.2385880148,"1558":-0.2214579028,"1559":-0.1995495968,"1560":-0.1776412907,"1561":-0.1510412527,"1562":-0.1244412147,"1563":-0.0932544229,"1564":-0.0620676312,"1565":-0.0264171656,"1566":0.0092332999,"1567":0.0492067431,"1568":0.0891801862,"1569":0.1333188502,"1570":0.1774575141,"1571":0.2255872036,"1572":0.2737168931,"1573":0.3256476623,"1574":0.3775784314,"1575":0.4331053333,"1576":0.4886322352,"1577":0.5475361304,"1578":0.6064400256,"1579":0.6684884474,"1580":0.7305368693,"1581":0.7954849409,"1582":0.8604330126,"1583":0.9280244136,"1584":0.9956158147,"1585":1.0655837929,"1586":1.1355517711,"1587":1.2076201947,"1588":1.2796886183,"1589":1.3535730662,"1590":1.4274575141,"1591":1.5028663981,"1592":1.5782752821,"1593":1.6549109978,"1594":1.7315467135,"1595":1.8091068148,"1596":1.8866669161,"1597":1.9648453086,"1598":2.0430237012,"1599":2.1215118506,"1600":2.2,"1601":2.2784881494,"1602":2.3569762988,"1603":2.4351546914,"1604":2.5133330839,"1605":2.5908931852,"1606":2.6684532865,"1607":2.7450890022,"1608":2.8217247179,"1609":2.8971336019,"1610":2.9725424859,"1611":3.0464269338,"1612":3.1203113817,"1613":3.1923798053,"1614":3.2644482289,"1615":3.3344162071,"1616":3.4043841853,"1617":3.4719755864,"1618":3.5395669874,"1619":3.6045150591,"1620":3.6694631307,"1621":3.7315115526,"1622":3.7935599744,"1623":3.8524638696,"1624":3.9113677648,"1625":3.9668946667,"1626":4.0224215686,"1627":4.0743523377,"1628":4.1262831069,"1629":4.1744127964,"1630":4.2225424859,"1631":4.2666811498,"1632":4.3108198138,"1633":4.3507932569,"1634":4.3907667001,"1635":4.4264171656,"1636":4.4620676312,"1637":4.4932544229,"1638":4.5244412147,"1639":4.5510412527,"1640":4.5776412907,"1641":4.5995495968,"1642":4.6214579028,"1643":4.6385880148,"1644":4.6557181268,"1645":4.6680024401,"1646":4.6802867533,"1647":4.6876767872,"1648":4.6950668211,"1649":4.6975334105,"1650":4.7,"1651":4.6975334105,"1652":4.6950668211,"1653":4.6876767872,"1654":4.6802867533,"1655":4.6680024401,"1656":4.6557181268,"1657":4.6385880148,"1658":4.6214579028,"1659":4.5995495968,"1660":4.5776412907,"1661":4.5510412527,"1662":4.5244412147,"1663":4.4932544229,"1664":4.4620676312,"1665":4.4264171656,"1666":4.3907667001,"1667":4.3507932569,"1668":4.3108198138,"1669":4.2666811498,"1670":4.2225424859,"1671":4.1744127964,"1672":4.1262831069,"1673":4.0743523377,"1674":4.0224215686,"1675":3.9668946667,"1676":3.9113677648,"1677":3.8524638696,"1678":3.7935599744,"1679":3.7315115526,"1680":3.6694631307,"1681":3.6045150591,"1682":3.5395669874,"1683":3.4719755864,"1684":3.4043841853,"1685":3.3344162071,"1686":3.2644482289,"1687":3.1923798053,"1688":3.1203113817,"1689":3.0464269338,"1690":2.9725424859,"1691":2.8971336019,"1692":2.8217247179,"1693":2.7450890022,"1694":2.6684532865,"1695":2.5908931852,"1696":2.5133330839,"1697":2.4351546914,"1698":2.3569762988,"1699":2.2784881494,"1700":2.2,"1701":2.1215118506,"1702":2.0430237012,"1703":1.9648453086,"1704":1.8866669161,"1705":1.8091068148,"1706":1.7315467135,"1707":1.6549109978,"1708":1.5782752821,"1709":1.5028663981,"1710":1.4274575141,"1711":1.3535730662,"1712":1.2796886183,"1713":1.2076201947,"1714":1.1355517711,"1715":1.0655837929,"1716":0.9956158147,"1717":0.9280244136,"1718":0.8604330126,"1719":0.7954849409,"1720":0.7305368693,"1721":0.6684884474,"1722":0.6064400256,"1723":0.5475361304,"1724":0.4886322352,"1725":0.4331053333,"1726":0.3775784314,"1727":0.3256476623,"1728":0.2737168931,"1729":0.2255872036,"1730":0.1774575141,"1731":0.1333188502,"1732":0.0891801862,"1733":0.0492067431,"1734":0.0092332999,"1735":-0.0264171656,"1736":-0.0620676312,"1737":-0.0932544229,"1738":-0.1244412147,"1739":-0.1510412527,"1740":-0.1776412907,"1741":-0.1995495968,"1742":-0.2214579028,"1743":-0.2385880148,"1744":-0.2557181268,"1745":-0.2680024401,"1746":-0.2802867533,"1747":-0.2876767872,"1748":-0.2950668211,"1749":-0.2975334105,"1750":-0.3,"1751":-0.2975334105,"1752":-0.2950668211,"1753":-0.2876767872,"1754":-0.2802867533,"1755":-0.2680024401,"1756":-0.2557181268,"1757":-0.2385880148,"1758":-0.2214579028,"1759":-0.1995495968,"1760":-0.1776412907,"1761":-0.1510412527,"1762":-0.1244412147,"1763":-0.0932544229,"1764":-0.0620676312,"1765":-0.0264171656,"1766":0.0092332999,"1767":0.0492067431,"1768":0.0891801862,"1769":0.1333188502,"1770":0.1774575141,"1771":0.2255872036,"1772":0.2737168931,"1773":0.3256476623,"1774":0.3775784314,"1775":0.4331053333,"1776":0.4886322352,"1777":0.5475361304,"1778":0.6064400256,"1779":0.6684884474,"1780":0.7305368693,"1781":0.7954849409,"1782":0.8604330126,"1783":0.9280244136,"1784":0.9956158147,"1785":1.0655837929,"1786":1.1355517711,"1787":1.2076201947,"1788":1.2796886183,"1789":1.3535730662,"1790":1.4274575141,"1791":1.5028663981,"1792":1.5782752821,"1793":1.6549109978,"1794":1.7315467135,"1795":1.8091068148,"1796":1.8866669161,"1797":1.9648453086,"1798":2.0430237012,"1799":2.1215118506,"1800":2.2,"1801":2.2784881494,"1802":2.3569762988,"1803":2.4351546914,"1804":2.5133330839,"1805":2.5908931852,"1806":2.6684532865,"1807":2.7450890022,"1808":2.8217247179,"1809":2.8971336019,"1810":2.9725424859,"1811":3.0464269338,"1812":3.1203113817,"1813":3.1923798053,"1814":3.2644482289,"1815":3.3344162071,"1816":3.4043841853,"1817":3.4719755864,"1818":3.5395669874,"1819":3.6045150591,"1820":3.6694631307,"1821":3.7315115526,"1822":3.7935599744,"1823":3.8524638696,"1824":3.9113677648,"1825":3.9668946667,"1826":4.0224215686,"1827":4.0743523377,"1828":4.1262831069,"1829":4.1744127964,"1830":4.2225424859,"1831":4.2666811498,"1832":4.3108198138,"1833":4.3507932569,"1834":4.3907667001,"1835":4.4264171656,"1836":4.4620676312,"1837":4.4932544229,"1838":4.5244412147,"1839":4.5510412527,"1840":4.5776412907,"1841":4.5995495968,"1842":4.6214579028,"1843":4.6385880148,"1844":4.6557181268,"1845":4.6680024401,"1846":4.6802867533,"1847":4.6876767872,"1848":4.6950668211,"1849":4.6975334105,"1850":4.7,"1851":4.6975334105,"1852":4.6950668211,"1853":4.6876767872,"1854":4.6802867533,"1855":4.6680024401,"1856":4.6557181268,"1857":4.6385880148,"1858":4.6214579028,"1859":4.5995495968,"1860":4.5776412907,"1861":4.5510412527,"1862":4.5244412147,"1863":4.4932544229,"1864":4.4620676312,"1865":4.4264171656,"1866":4.3907667001,"1867":4.3507932569,"1868":4.3108198138,"1869":4.2666811498,"1870":4.2225424859,"1871":4.1744127964,"1872":4.1262831069,"1873":4.0743523377,"1874":4.0224215686,"1875":3.9668946667,"1876":3.9113677648,"1877":3.8524638696,"1878":3.7935599744,"1879":3.7315115526,"1880":3.6694631307,"1881":3.6045150591,"1882":3.5395669874,"1883":3.4719755864,"1884":3.4043841853,"1885":3.3344162071,"1886":3.2644482289,"1887":3.1923798053,"1888":3.1203113817,"1889":3.0464269338,"1890":2.9725424859,"1891":2.8971336019,"1892":2.8217247179,"1893":2.7450890022,"1894":2.6684532865,"1895":2.5908931852,"1896":2.5133330839,"1897":2.4351546914,"1898":2.3569762988,"1899":2.2784881494,"1900":2.2,"1901":2.1215118506,"1902":2.0430237012,"1903":1.9648453086,"1904":1.8866669161,"1905":1.8091068148,"1906":1.7315467135,"1907":1.6549109978,"1908":1.5782752821,"1909":1.5028663981,"1910":1.4274575141,"1911":1.3535730662,"1912":1.2796886183,"1913":1.2076201947,"1914":1.1355517711,"1915":1.0655837929,"1916":0.9956158147,"1917":0.9280244136,"1918":0.8604330126,"1919":0.7954849409,"1920":0.7305368693,"1921":0.6684884474,"1922":0.6064400256,"1923":0.5475361304,"1924":0.4886322352,"1925":0.4331053333,"1926":0.3775784314,"1927":0.3256476623,"1928":0.2737168931,"1929":0.2255872036,"1930":0.1774575141,"1931":0.1333188502,"1932":0.0891801862,"1933":0.0492067431,"1934":0.0092332999,"1935":-0.0264171656,"1936":-0.0620676312,"1937":-0.0932544229,"1938":-0.1244412147,"1939":-0.1510412527,"1940":-0.1776412907,"1941":-0.1995495968,"1942":-0.2214579028,"1943":-0.2385880148,"1944":-0.2557181268,"1945":-0.2680024401,"1946":-0.2802867533,"1947":-0.2876767872,"1948":-0.2950668211,"1949":-0.2975334105,"1950":-0.3,"1951":-0.2975334105,"1952":-0.2950668211,"1953":-0.2876767872,"1954":-0.2802867533,"1955":-0.2680024401,"1956":-0.2557181268,"1957":-0.2385880148,"1958":-0.2214579028,"1959":-0.1995495968,"1960":-0.1776412907,"1961":-0.1510412527,"1962":-0.1244412147,"1963":-0.0932544229,"1964":-0.0620676312,"1965":-0.0264171656,"1966":0.0092332999,"1967":0.0492067431,"1968":0.0891801862,"1969":0.1333188502,"1970":0.1774575141,"1971":0.2255872036,"1972":0.2737168931,"1973":0.3256476623,"1974":0.3775784314,"1975":0.4331053333,"1976":0.4886322352,"1977":0.5475361304,"1978":0.6064400256,"1979":0.6684884474,"1980":0.7305368693,"1981":0.7954849409,"1982":0.8604330126,"1983":0.9280244136,"1984":0.9956158147,"1985":1.0655837929,"1986":1.1355517711,"1987":1.2076201947,"1988":1.2796886183,"1989":1.3535730662,"1990":1.4274575141,"1991":1.5028663981,"1992":1.5782752821,"1993":1.6549109978,"1994":1.7315467135,"1995":1.8091068148,"1996":1.8866669161,"1997":1.9648453086,"1998":2.0430237012,"1999":2.1215118506,"2000":2.2},"flow_out":{"0":2.200000001,"1":2.2784881489,"2":2.3569762991,"3":2.4351546912,"4":2.513333084,"5":2.5908931852,"6":2.6684532865,"7":2.7450890022,"8":2.8217247179,"9":2.8971336019,"10":2.9725424859,"11":3.0464269338,"12":3.1203113817,"13":3.1923798053,"14":3.2644482289,"15":3.3344162071,"16":3.4043841853,"17":3.4719755864,"18":3.5395669874,"19":3.6045150591,"20":3.6694631307,"21":3.7315115526,"22":3.7935599744,"23":3.8524638696,"24":3.9113677648,"25":3.9668946667,"26":4.0224215686,"27":4.0743523377,"28":4.1262831069,"29":4.1744127964,"30":4.2225424859,"31":4.2666811498,"32":4.3108198138,"33":4.3507932569,"34":4.3907667001,"35":4.4264171656,"36":4.4620676312,"37":4.4932544229,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2,"201":2.2784881494,"202":2.3569762988,"203":2.4351546914,"204":2.5133330839,"205":2.5908931852,"206":2.6684532865,"207":2.7450890022,"208":2.8217247179,"209":2.8971336019,"210":2.9725424859,"211":3.0464269338,"212":3.1203113817,"213":3.1923798053,"214":3.2644482289,"215":3.3344162071,"216":3.4043841853,"217":3.4719755864,"218":3.5395669874,"219":3.6045150591,"220":3.6694631307,"221":3.7315115526,"222":3.7935599744,"223":3.8524638696,"224":3.9113677648,"225":3.9668946667,"226":4.0224215686,"227":4.0743523377,"228":4.1262831069,"229":4.1744127964,"230":4.2225424859,"231":4.2666811498,"232":4.3108198138,"233":4.3507932569,"234":4.3907667001,"235":4.4264171656,"236":4.4620676312,"237":4.4932544229,"238":4.5244412147,"239":4.5510412527,"240":4.5776412907,"241":4.5995495968,"242":4.6214579028,"243":4.6385880148,"244":4.6557181268,"245":4.6680024401,"246":4.6802867533,"247":4.6876767872,"248":4.6950668211,"249":4.6975334105,"250":4.7,"251":4.6975334105,"252":4.6950668211,"253":4.6876767872,"254":4.6802867533,"255":4.6680024401,"256":4.6557181268,"257":4.6385880148,"258":4.6214579028,"259":4.5995495968,"260":4.5776412907,"261":4.5510412527,"262":4.5244412147,"263":4.4932544229,"264":4.4620676312,"265":4.4264171656,"266":4.3907667001,"267":4.3507932569,"268":4.3108198138,"269":4.2666811498,"270":4.2225424859,"271":4.1744127964,"272":4.1262831069,"273":4.0743523377,"274":4.0224215686,"275":3.9668946667,"276":3.9113677648,"277":3.8524638696,"278":3.7935599744,"279":3.7315115526,"280":3.6694631307,"281":3.6045150591,"282":3.5395669874,"283":3.4719755864,"284":3.4043841853,"285":3.3344162071,"286":3.2644482289,"287":3.1923798053,"288":3.1203113817,"289":3.0464269338,"290":2.9725424859,"291":2.8971336019,"292":2.8217247179,"293":2.7450890022,"294":2.6684532865,"295":2.5908931852,"296":2.5133330839,"297":2.4351546914,"298":2.3569762988,"299":2.2784881494,"300":2.2,"301":2.1215118506,"302":2.0430237012,"303":1.9648453086,"304":1.8866669161,"305":1.8091068148,"306":1.7315467135,"307":1.6549109978,"308":1.5782752821,"309":1.5028663981,"310":1.4274575141,"311":1.3535730662,"312":1.2796886183,"313":1.2076201947,"314":1.1355517711,"315":1.0655837929,"316":0.9956158147,"317":0.9280244136,"318":0.8604330126,"319":0.7954849409,"320":0.7305368693,"321":0.6684884474,"322":0.6064400256,"323":0.5475361304,"324":0.4886322352,"325":0.4331053333,"326":0.3775784314,"327":0.3256476623,"328":0.2737168931,"329":0.2255872036,"330":0.1774575141,"331":0.1333188502,"332":0.0891801862,"333":0.0492067431,"334":0.0092332999,"335":-0.0264171656,"336":-0.0620676312,"337":-0.0932544229,"338":-0.1244412147,"339":-0.1510412527,"340":-0.1776412907,"341":-0.1995495968,"342":-0.2214579028,"343":-0.2385880148,"344":-0.2557181268,"345":-0.2680024401,"346":-0.2802867533,"347":-0.2876767872,"348":-0.2950668211,"349":-0.2975334105,"350":-0.3,"351":-0.2975334105,"352":-0.2950668211,"353":-0.2876767872,"354":-0.2802867533,"355":-0.2680024401,"356":-0.2557181268,"357":-0.2385880148,"358":-0.2214579028,"359":-0.1995495968,"360":-0.1776412907,"361":-0.1510412527,"362":-0.1244412147,"363":-0.0932544229,"364":-0.0620676312,"365":-0.0264171656,"366":0.0092332999,"367":0.0492067431,"368":0.0891801862,"369":0.1333188502,"370":0.1774575141,"371":0.2255872036,"372":0.2737168931,"373":0.3256476623,"374":0.3775784314,"375":0.4331053333,"376":0.4886322352,"377":0.5475361304,"378":0.6064400256,"379":0.6684884474,"380":0.7305368693,"381":0.7954849409,"382":0.8604330126,"383":0.9280244136,"384":0.9956158147,"385":1.0655837929,"386":1.1355517711,"387":1.2076201947,"388":1.2796886183,"389":1.3535730662,"390":1.4274575141,"391":1.5028663981,"392":1.5782752821,"393":1.6549109978,"394":1.7315467135,"395":1.8091068148,"396":1.8866669161,"397":1.9648453086,"398":2.0430237012,"399":2.1215118506,"400":2.2,"401":2.2784881494,"402":2.3569762988,"403":2.4351546914,"404":2.5133330839,"405":2.5908931852,"406":2.6684532865,"407":2.7450890022,"408":2.8217247179,"409":2.8971336019,"410":2.9725424859,"411":3.0464269338,"412":3.1203113817,"413":3.1923798053,"414":3.2644482289,"415":3.3344162071,"416":3.4043841853,"417":3.4719755864,"418":3.5395669874,"419":3.6045150591,"420":3.6694631307,"421":3.7315115526,"422":3.7935599744,"423":3.8524638696,"424":3.9113677648,"425":3.9668946667,"426":4.0224215686,"427":4.0743523377,"428":4.1262831069,"429":4.1744127964,"430":4.2225424859,"431":4.2666811498,"432":4.3108198138,"433":4.3507932569,"434":4.3907667001,"435":4.4264171656,"436":4.4620676312,"437":4.4932544229,"438":4.5244412147,"439":4.5510412527,"440":4.5776412907,"441":4.5995495968,"442":4.6214579028,"443":4.6385880148,"444":4.6557181268,"445":4.6680024401,"446":4.6802867533,"447":4.6876767872,"448":4.6950668211,"449":4.6975334105,"450":4.7,"451":4.6975334105,"452":4.6950668211,"453":4.6876767872,"454":4.6802867533,"455":4.6680024401,"456":4.6557181268,"457":4.6385880148,"458":4.6214579028,"459":4.5995495968,"460":4.5776412907,"461":4.5510412527,"462":4.5244412147,"463":4.4932544229,"464":4.4620676312,"465":4.4264171656,"466":4.3907667001,"467":4.3507932569,"468":4.3108198138,"469":4.2666811498,"470":4.2225424859,"471":4.1744127964,"472":4.1262831069,"473":4.0743523377,"474":4.0224215686,"475":3.9668946667,"476":3.9113677648,"477":3.8524638696,"478":3.7935599744,"479":3.7315115526,"480":3.6694631307,"481":3.6045150591,"482":3.5395669874,"483":3.4719755864,"484":3.4043841853,"485":3.3344162071,"486":3.2644482289,"487":3.1923798053,"488":3.1203113817,"489":3.0464269338,"490":2.9725424859,"491":2.8971336019,"492":2.8217247179,"493":2.7450890022,"494":2.6684532865,"495":2.5908931852,"496":2.5133330839,"497":2.4351546914,"498":2.3569762988,"499":2.2784881494,"500":2.2,"501":2.1215118506,"502":2.0430237012,"503":1.9648453086,"504":1.8866669161,"505":1.8091068148,"506":1.7315467135,"507":1.6549109978,"508":1.5782752821,"509":1.5028663981,"510":1.4274575141,"511":1.3535730662,"512":1.2796886183,"513":1.2076201947,"514":1.1355517711,"515":1.0655837929,"516":0.9956158147,"517":0.9280244136,"518":0.8604330126,"519":0.7954849409,"520":0.7305368693,"521":0.6684884474,"522":0.6064400256,"523":0.5475361304,"524":0.4886322352,"525":0.4331053333,"526":0.3775784314,"527":0.3256476623,"528":0.2737168931,"529":0.2255872036,"530":0.1774575141,"531":0.1333188502,"532":0.0891801862,"533":0.0492067431,"534":0.0092332999,"535":-0.0264171656,"536":-0.0620676312,"537":-0.0932544229,"538":-0.1244412147,"539":-0.1510412527,"540":-0.1776412907,"541":-0.1995495968,"542":-0.2214579028,"543":-0.2385880148,"544":-0.2557181268,"545":-0.2680024401,"546":-0.2802867533,"547":-0.2876767872,"548":-0.2950668211,"549":-0.2975334105,"550":-0.3,"551":-0.2975334105,"552":-0.2950668211,"553":-0.2876767872,"554":-0.2802867533,"555":-0.2680024401,"556":-0.2557181268,"557":-0.2385880148,"558":-0.2214579028,"559":-0.1995495968,"560":-0.1776412907,"561":-0.1510412527,"562":-0.1244412147,"563":-0.0932544229,"564":-0.0620676312,"565":-0.0264171656,"566":0.0092332999,"567":0.0492067431,"568":0.0891801862,"569":0.1333188502,"570":0.1774575141,"571":0.2255872036,"572":0.2737168931,"573":0.3256476623,"574":0.3775784314,"575":0.4331053333,"576":0.4886322352,"577":0.5475361304,"578":0.6064400256,"579":0.6684884474,"580":0.7305368693,"581":0.7954849409,"582":0.8604330126,"583":0.9280244136,"584":0.9956158147,"585":1.0655837929,"586":1.1355517711,"587":1.2076201947,"588":1.2796886183,"589":1.3535730662,"590":1.4274575141,"591":1.5028663981,"592":1.5782752821,"593":1.6549109978,"594":1.7315467135,"595":1.8091068148,"596":1.8866669161,"597":1.9648453086,"598":2.0430237012,"599":2.1215118506,"600":2.2,"601":2.2784881494,"602":2.3569762988,"603":2.4351546914,"604":2.5133330839,"605":2.5908931852,"606":2.6684532865,"607":2.7450890022,"608":2.8217247179,"609":2.8971336019,"610":2.9725424859,"611":3.0464269338,"612":3.1203113817,"613":3.1923798053,"614":3.2644482289,"615":3.3344162071,"616":3.4043841853,"617":3.4719755864,"618":3.5395669874,"619":3.6045150591,"620":3.6694631307,"621":3.7315115526,"622":3.7935599744,"623":3.8524638696,"624":3.9113677648,"625":3.9668946667,"626":4.0224215686,"627":4.0743523377,"628":4.1262831069,"629":4.1744127964,"630":4.2225424859,"631":4.2666811498,"632":4.3108198138,"633":4.3507932569,"634":4.3907667001,"635":4.4264171656,"636":4.4620676312,"637":4.4932544229,"638":4.5244412147,"639":4.5510412527,"640":4.5776412907,"641":4.5995495968,"642":4.6214579028,"643":4.6385880148,"644":4.6557181268,"645":4.6680024401,"646":4.6802867533,"647":4.6876767872,"648":4.6950668211,"649":4.6975334105,"650":4.7,"651":4.6975334105,"652":4.6950668211,"653":4.6876767872,"654":4.6802867533,"655":4.6680024401,"656":4.6557181268,"657":4.6385880148,"658":4.6214579028,"659":4.5995495968,"660":4.5776412907,"661":4.5510412527,"662":4.5244412147,"663":4.4932544229,"664":4.4620676312,"665":4.4264171656,"666":4.3907667001,"667":4.3507932569,"668":4.3108198138,"669":4.2666811498,"670":4.2225424859,"671":4.1744127964,"672":4.1262831069,"673":4.0743523377,"674":4.0224215686,"675":3.9668946667,"676":3.9113677648,"677":3.8524638696,"678":3.7935599744,"679":3.7315115526,"680":3.6694631307,"681":3.6045150591,"682":3.5395669874,"683":3.4719755864,"684":3.4043841853,"685":3.3344162071,"686":3.2644482289,"687":3.1923798053,"688":3.1203113817,"689":3.0464269338,"690":2.9725424859,"691":2.8971336019,"692":2.8217247179,"693":2.7450890022,"694":2.6684532865,"695":2.5908931852,"696":2.5133330839,"697":2.4351546914,"698":2.3569762988,"699":2.2784881494,"700":2.2,"701":2.1215118506,"702":2.0430237012,"703":1.9648453086,"704":1.8866669161,"705":1.8091068148,"706":1.7315467135,"707":1.6549109978,"708":1.5782752821,"709":1.5028663981,"710":1.4274575141,"711":1.3535730662,"712":1.2796886183,"713":1.2076201947,"714":1.1355517711,"715":1.0655837929,"716":0.9956158147,"717":0.9280244136,"718":0.8604330126,"719":0.7954849409,"720":0.7305368693,"721":0.6684884474,"722":0.6064400256,"723":0.5475361304,"724":0.4886322352,"725":0.4331053333,"726":0.3775784314,"727":0.3256476623,"728":0.2737168931,"729":0.2255872036,"730":0.1774575141,"731":0.1333188502,"732":0.0891801862,"733":0.0492067431,"734":0.0092332999,"735":-0.0264171656,"736":-0.0620676312,"737":-0.0932544229,"738":-0.1244412147,"739":-0.1510412527,"740":-0.1776412907,"741":-0.1995495968,"742":-0.2214579028,"743":-0.2385880148,"744":-0.2557181268,"745":-0.2680024401,"746":-0.2802867533,"747":-0.2876767872,"748":-0.2950668211,"749":-0.2975334105,"750":-0.3,"751":-0.2975334105,"752":-0.2950668211,"753":-0.2876767872,"754":-0.2802867533,"755":-0.2680024401,"756":-0.2557181268,"757":-0.2385880148,"758":-0.2214579028,"759":-0.1995495968,"760":-0.1776412907,"761":-0.1510412527,"762":-0.1244412147,"763":-0.0932544229,"764":-0.0620676312,"765":-0.0264171656,"766":0.0092332999,"767":0.0492067431,"768":0.0891801862,"769":0.1333188502,"770":0.1774575141,"771":0.2255872036,"772":0.2737168931,"773":0.3256476623,"774":0.3775784314,"775":0.4331053333,"776":0.4886322352,"777":0.5475361304,"778":0.6064400256,"779":0.6684884474,"780":0.7305368693,"781":0.7954849409,"782":0.8604330126,"783":0.9280244136,"784":0.9956158147,"785":1.0655837929,"786":1.1355517711,"787":1.2076201947,"788":1.2796886183,"789":1.3535730662,"790":1.4274575141,"791":1.5028663981,"792":1.5782752821,"793":1.6549109978,"794":1.7315467135,"795":1.8091068148,"796":1.8866669161,"797":1.9648453086,"798":2.0430237012,"799":2.1215118506,"800":2.2,"801":2.2784881494,"802":2.3569762988,"803":2.4351546914,"804":2.5133330839,"805":2.5908931852,"806":2.6684532865,"807":2.7450890022,"808":2.8217247179,"809":2.8971336019,"810":2.9725424859,"811":3.0464269338,"812":3.1203113817,"813":3.1923798053,"814":3.2644482289,"815":3.3344162071,"816":3.4043841853,"817":3.4719755864,"818":3.5395669874,"819":3.6045150591,"820":3.6694631307,"821":3.7315115526,"822":3.7935599744,"823":3.8524638696,"824":3.9113677648,"825":3.9668946667,"826":4.0224215686,"827":4.0743523377,"828":4.1262831069,"829":4.1744127964,"830":4.2225424859,"831":4.2666811498,"832":4.3108198138,"833":4.3507932569,"834":4.3907667001,"835":4.4264171656,"836":4.4620676312,"837":4.4932544229,"838":4.5244412147,"839":4.5510412527,"840":4.5776412907,"841":4.5995495968,"842":4.6214579028,"843":4.6385880148,"844":4.6557181268,"845":4.6680024401,"846":4.6802867533,"847":4.6876767872,"848":4.6950668211,"849":4.6975334105,"850":4.7,"851":4.6975334105,"852":4.6950668211,"853":4.6876767872,"854":4.6802867533,"855":4.6680024401,"856":4.6557181268,"857":4.6385880148,"858":4.6214579028,"859":4.5995495968,"860":4.5776412907,"861":4.5510412527,"862":4.5244412147,"863":4.4932544229,"864":4.4620676312,"865":4.4264171656,"866":4.3907667001,"867":4.3507932569,"868":4.3108198138,"869":4.2666811498,"870":4.2225424859,"871":4.1744127964,"872":4.1262831069,"873":4.0743523377,"874":4.0224215686,"875":3.9668946667,"876":3.9113677648,"877":3.8524638696,"878":3.7935599744,"879":3.7315115526,"880":3.6694631307,"881":3.6045150591,"882":3.5395669874,"883":3.4719755864,"884":3.4043841853,"885":3.3344162071,"886":3.2644482289,"887":3.1923798053,"888":3.1203113817,"889":3.0464269338,"890":2.9725424859,"891":2.8971336019,"892":2.8217247179,"893":2.7450890022,"894":2.6684532865,"895":2.5908931852,"896":2.5133330839,"897":2.4351546914,"898":2.3569762988,"899":2.2784881494,"900":2.2,"901":2.1215118506,"902":2.0430237012,"903":1.9648453086,"904":1.8866669161,"905":1.8091068148,"906":1.7315467135,"907":1.6549109978,"908":1.5782752821,"909":1.5028663981,"910":1.4274575141,"911":1.3535730662,"912":1.2796886183,"913":1.2076201947,"914":1.1355517711,"915":1.0655837929,"916":0.9956158147,"917":0.9280244136,"918":0.8604330126,"919":0.7954849409,"920":0.7305368693,"921":0.6684884474,"922":0.6064400256,"923":0.5475361304,"924":0.4886322352,"925":0.4331053333,"926":0.3775784314,"927":0.3256476623,"928":0.2737168931,"929":0.2255872036,"930":0.1774575141,"931":0.1333188502,"932":0.0891801862,"933":0.0492067431,"934":0.0092332999,"935":-0.0264171656,"936":-0.0620676312,"937":-0.0932544229,"938":-0.1244412147,"939":-0.1510412527,"940":-0.1776412907,"941":-0.1995495968,"942":-0.2214579028,"943":-0.2385880148,"944":-0.2557181268,"945":-0.2680024401,"946":-0.2802867533,"947":-0.2876767872,"948":-0.2950668211,"949":-0.2975334105,"950":-0.3,"951":-0.2975334105,"952":-0.2950668211,"953":-0.2876767872,"954":-0.2802867533,"955":-0.2680024401,"956":-0.2557181268,"957":-0.2385880148,"958":-0.2214579028,"959":-0.1995495968,"960":-0.1776412907,"961":-0.1510412527,"962":-0.1244412147,"963":-0.0932544229,"964":-0.0620676312,"965":-0.0264171656,"966":0.0092332999,"967":0.0492067431,"968":0.0891801862,"969":0.1333188502,"970":0.1774575141,"971":0.2255872036,"972":0.2737168931,"973":0.3256476623,"974":0.3775784314,"975":0.4331053333,"976":0.4886322352,"977":0.5475361304,"978":0.6064400256,"979":0.6684884474,"980":0.7305368693,"981":0.7954849409,"982":0.8604330126,"983":0.9280244136,"984":0.9956158147,"985":1.0655837929,"986":1.1355517711,"987":1.2076201947,"988":1.2796886183,"989":1.3535730662,"990":1.4274575141,"991":1.5028663981,"992":1.5782752821,"993":1.6549109978,"994":1.7315467135,"995":1.8091068148,"996":1.8866669161,"997":1.9648453086,"998":2.0430237012,"999":2.1215118506,"1000":2.2,"1001":2.2784881494,"1002":2.3569762988,"1003":2.4351546914,"1004":2.5133330839,"1005":2.5908931852,"1006":2.6684532865,"1007":2.7450890022,"1008":2.8217247179,"1009":2.8971336019,"1010":2.9725424859,"1011":3.0464269338,"1012":3.1203113817,"1013":3.1923798053,"1014":3.2644482289,"1015":3.3344162071,"1016":3.4043841853,"1017":3.4719755864,"1018":3.5395669874,"1019":3.6045150591,"1020":3.6694631307,"1021":3.7315115526,"1022":3.7935599744,"1023":3.8524638696,"1024":3.9113677648,"1025":3.9668946667,"1026":4.0224215686,"1027":4.0743523377,"1028":4.1262831069,"1029":4.1744127964,"1030":4.2225424859,"1031":4.2666811498,"1032":4.3108198138,"1033":4.3507932569,"1034":4.3907667001,"1035":4.4264171656,"1036":4.4620676312,"1037":4.4932544229,"1038":4.5244412147,"1039":4.5510412527,"1040":4.5776412907,"1041":4.5995495968,"1042":4.6214579028,"1043":4.6385880148,"1044":4.6557181268,"1045":4.6680024401,"1046":4.6802867533,"1047":4.6876767872,"1048":4.6950668211,"1049":4.6975334105,"1050":4.7,"1051":4.6975334105,"1052":4.6950668211,"1053":4.6876767872,"1054":4.6802867533,"1055":4.6680024401,"1056":4.6557181268,"1057":4.6385880148,"1058":4.6214579028,"1059":4.5995495968,"1060":4.5776412907,"1061":4.5510412527,"1062":4.5244412147,"1063":4.4932544229,"1064":4.4620676312,"1065":4.4264171656,"1066":4.3907667001,"1067":4.3507932569,"1068":4.3108198138,"1069":4.2666811498,"1070":4.2225424859,"1071":4.1744127964,"1072":4.1262831069,"1073":4.0743523377,"1074":4.0224215686,"1075":3.9668946667,"1076":3.9113677648,"1077":3.8524638696,"1078":3.7935599744,"1079":3.7315115526,"1080":3.6694631307,"1081":3.6045150591,"1082":3.5395669874,"1083":3.4719755864,"1084":3.4043841853,"1085":3.3344162071,"1086":3.2644482289,"1087":3.1923798053,"1088":3.1203113817,"1089":3.0464269338,"1090":2.9725424859,"1091":2.8971336019,"1092":2.8217247179,"1093":2.7450890022,"1094":2.6684532865,"1095":2.5908931852,"1096":2.5133330839,"1097":2.4351546914,"1098":2.3569762988,"1099":2.2784881494,"1100":2.2,"1101":2.1215118506,"1102":2.0430237012,"1103":1.9648453086,"1104":1.8866669161,"1105":1.8091068148,"1106":1.7315467135,"1107":1.6549109978,"1108":1.5782752821,"1109":1.5028663981,"1110":1.4274575141,"1111":1.3535730662,"1112":1.2796886183,"1113":1.2076201947,"1114":1.1355517711,"1115":1.0655837929,"1116":0.9956158147,"1117":0.9280244136,"1118":0.8604330126,"1119":0.7954849409,"1120":0.7305368693,"1121":0.6684884474,"1122":0.6064400256,"1123":0.5475361304,"1124":0.4886322352,"1125":0.4331053333,"1126":0.3775784314,"1127":0.3256476623,"1128":0.2737168931,"1129":0.2255872036,"1130":0.1774575141,"1131":0.1333188502,"1132":0.0891801862,"1133":0.0492067431,"1134":0.0092332999,"1135":-0.0264171656,"1136":-0.0620676312,"1137":-0.0932544229,"1138":-0.1244412147,"1139":-0.1510412527,"1140":-0.1776412907,"1141":-0.1995495968,"1142":-0.2214579028,"1143":-0.2385880148,"1144":-0.2557181268,"1145":-0.2680024401,"1146":-0.2802867533,"1147":-0.2876767872,"1148":-0.2950668211,"1149":-0.2975334105,"1150":-0.3,"1151":-0.2975334105,"1152":-0.2950668211,"1153":-0.2876767872,"1154":-0.2802867533,"1155":-0.2680024401,"1156":-0.2557181268,"1157":-0.2385880148,"1158":-0.2214579028,"1159":-0.1995495968,"1160":-0.1776412907,"1161":-0.1510412527,"1162":-0.1244412147,"1163":-0.0932544229,"1164":-0.0620676312,"1165":-0.0264171656,"1166":0.0092332999,"1167":0.0492067431,"1168":0.0891801862,"1169":0.1333188502,"1170":0.1774575141,"1171":0.2255872036,"1172":0.2737168931,"1173":0.3256476623,"1174":0.3775784314,"1175":0.4331053333,"1176":0.4886322352,"1177":0.5475361304,"1178":0.6064400256,"1179":0.6684884474,"1180":0.7305368693,"1181":0.7954849409,"1182":0.8604330126,"1183":0.9280244136,"1184":0.9956158147,"1185":1.0655837929,"1186":1.1355517711,"1187":1.2076201947,"1188":1.2796886183,"1189":1.3535730662,"1190":1.4274575141,"1191":1.5028663981,"1192":1.5782752821,"1193":1.6549109978,"1194":1.7315467135,"1195":1.8091068148,"1196":1.8866669161,"1197":1.9648453086,"1198":2.0430237012,"1199":2.1215118506,"1200":2.2,"1201":2.2784881494,"1202":2.3569762988,"1203":2.4351546914,"1204":2.5133330839,"1205":2.5908931852,"1206":2.6684532865,"1207":2.7450890022,"1208":2.8217247179,"1209":2.8971336019,"1210":2.9725424859,"1211":3.0464269338,"1212":3.1203113817,"1213":3.1923798053,"1214":3.2644482289,"1215":3.3344162071,"1216":3.4043841853,"1217":3.4719755864,"1218":3.5395669874,"1219":3.6045150591,"1220":3.6694631307,"1221":3.7315115526,"1222":3.7935599744,"1223":3.8524638696,"1224":3.9113677648,"1225":3.9668946667,"1226":4.0224215686,"1227":4.0743523377,"1228":4.1262831069,"1229":4.1744127964,"1230":4.2225424859,"1231":4.2666811498,"1232":4.3108198138,"1233":4.3507932569,"1234":4.3907667001,"1235":4.4264171656,"1236":4.4620676312,"1237":4.4932544229,"1238":4.5244412147,"1239":4.5510412527,"1240":4.5776412907,"1241":4.5995495968,"1242":4.6214579028,"1243":4.6385880148,"1244":4.6557181268,"1245":4.6680024401,"1246":4.6802867533,"1247":4.6876767872,"1248":4.6950668211,"1249":4.6975334105,"1250":4.7,"1251":4.6975334105,"1252":4.6950668211,"1253":4.6876767872,"1254":4.6802867533,"1255":4.6680024401,"1256":4.6557181268,"1257":4.6385880148,"1258":4.6214579028,"1259":4.5995495968,"1260":4.5776412907,"1261":4.5510412527,"1262":4.5244412147,"1263":4.4932544229,"1264":4.4620676312,"1265":4.4264171656,"1266":4.3907667001,"1267":4.3507932569,"1268":4.3108198138,"1269":4.2666811498,"1270":4.2225424859,"1271":4.1744127964,"1272":4.1262831069,"1273":4.0743523377,"1274":4.0224215686,"1275":3.9668946667,"1276":3.9113677648,"1277":3.8524638696,"1278":3.7935599744,"1279":3.7315115526,"1280":3.6694631307,"1281":3.6045150591,"1282":3.5395669874,"1283":3.4719755864,"1284":3.4043841853,"1285":3.3344162071,"1286":3.2644482289,"1287":3.1923798053,"1288":3.1203113817,"1289":3.0464269338,"1290":2.9725424859,"1291":2.8971336019,"1292":2.8217247179,"1293":2.7450890022,"1294":2.6684532865,"1295":2.5908931852,"1296":2.5133330839,"1297":2.4351546914,"1298":2.3569762988,"1299":2.2784881494,"1300":2.2,"1301":2.1215118506,"1302":2.0430237012,"1303":1.9648453086,"1304":1.8866669161,"1305":1.8091068148,"1306":1.7315467135,"1307":1.6549109978,"1308":1.5782752821,"1309":1.5028663981,"1310":1.4274575141,"1311":1.3535730662,"1312":1.2796886183,"1313":1.2076201947,"1314":1.1355517711,"1315":1.0655837929,"1316":0.9956158147,"1317":0.9280244136,"1318":0.8604330126,"1319":0.7954849409,"1320":0.7305368693,"1321":0.6684884474,"1322":0.6064400256,"1323":0.5475361304,"1324":0.4886322352,"1325":0.4331053333,"1326":0.3775784314,"1327":0.3256476623,"1328":0.2737168931,"1329":0.2255872036,"1330":0.1774575141,"1331":0.1333188502,"1332":0.0891801862,"1333":0.0492067431,"1334":0.0092332999,"1335":-0.0264171656,"1336":-0.0620676312,"1337":-0.0932544229,"1338":-0.1244412147,"1339":-0.1510412527,"1340":-0.1776412907,"1341":-0.1995495968,"1342":-0.2214579028,"1343":-0.2385880148,"1344":-0.2557181268,"1345":-0.2680024401,"1346":-0.2802867533,"1347":-0.2876767872,"1348":-0.2950668211,"1349":-0.2975334105,"1350":-0.3,"1351":-0.2975334105,"1352":-0.2950668211,"1353":-0.2876767872,"1354":-0.2802867533,"1355":-0.2680024401,"1356":-0.2557181268,"1357":-0.2385880148,"1358":-0.2214579028,"1359":-0.1995495968,"1360":-0.1776412907,"1361":-0.1510412527,"1362":-0.1244412147,"1363":-0.0932544229,"1364":-0.0620676312,"1365":-0.0264171656,"1366":0.0092332999,"1367":0.0492067431,"1368":0.0891801862,"1369":0.1333188502,"1370":0.1774575141,"1371":0.2255872036,"1372":0.2737168931,"1373":0.3256476623,"1374":0.3775784314,"1375":0.4331053333,"1376":0.4886322352,"1377":0.5475361304,"1378":0.6064400256,"1379":0.6684884474,"1380":0.7305368693,"1381":0.7954849409,"1382":0.8604330126,"1383":0.9280244136,"1384":0.9956158147,"1385":1.0655837929,"1386":1.1355517711,"1387":1.2076201947,"1388":1.2796886183,"1389":1.3535730662,"1390":1.4274575141,"1391":1.5028663981,"1392":1.5782752821,"1393":1.6549109978,"1394":1.7315467135,"1395":1.8091068148,"1396":1.8866669161,"1397":1.9648453086,"1398":2.0430237012,"1399":2.1215118506,"1400":2.2,"1401":2.2784881494,"1402":2.3569762988,"1403":2.4351546914,"1404":2.5133330839,"1405":2.5908931852,"1406":2.6684532865,"1407":2.7450890022,"1408":2.8217247179,"1409":2.8971336019,"1410":2.9725424859,"1411":3.0464269338,"1412":3.1203113817,"1413":3.1923798053,"1414":3.2644482289,"1415":3.3344162071,"1416":3.4043841853,"1417":3.4719755864,"1418":3.5395669874,"1419":3.6045150591,"1420":3.6694631307,"1421":3.7315115526,"1422":3.7935599744,"1423":3.8524638696,"1424":3.9113677648,"1425":3.9668946667,"1426":4.0224215686,"1427":4.0743523377,"1428":4.1262831069,"1429":4.1744127964,"1430":4.2225424859,"1431":4.2666811498,"1432":4.3108198138,"1433":4.3507932569,"1434":4.3907667001,"1435":4.4264171656,"1436":4.4620676312,"1437":4.4932544229,"1438":4.5244412147,"1439":4.5510412527,"1440":4.5776412907,"1441":4.5995495968,"1442":4.6214579028,"1443":4.6385880148,"1444":4.6557181268,"1445":4.6680024401,"1446":4.6802867533,"1447":4.6876767872,"1448":4.6950668211,"1449":4.6975334105,"1450":4.7,"1451":4.6975334105,"1452":4.6950668211,"1453":4.6876767872,"1454":4.6802867533,"1455":4.6680024401,"1456":4.6557181268,"1457":4.6385880148,"1458":4.6214579028,"1459":4.5995495968,"1460":4.5776412907,"1461":4.5510412527,"1462":4.5244412147,"1463":4.4932544229,"1464":4.4620676312,"1465":4.4264171656,"1466":4.3907667001,"1467":4.3507932569,"1468":4.3108198138,"1469":4.2666811498,"1470":4.2225424859,"1471":4.1744127964,"1472":4.1262831069,"1473":4.0743523377,"1474":4.0224215686,"1475":3.9668946667,"1476":3.9113677648,"1477":3.8524638696,"1478":3.7935599744,"1479":3.7315115526,"1480":3.6694631307,"1481":3.6045150591,"1482":3.5395669874,"1483":3.4719755864,"1484":3.4043841853,"1485":3.3344162071,"1486":3.2644482289,"1487":3.1923798053,"1488":3.1203113817,"1489":3.0464269338,"1490":2.9725424859,"1491":2.8971336019,"1492":2.8217247179,"1493":2.7450890022,"1494":2.6684532865,"1495":2.5908931852,"1496":2.5133330839,"1497":2.4351546914,"1498":2.3569762988,"1499":2.2784881494,"1500":2.2,"1501":2.1215118506,"1502":2.0430237012,"1503":1.9648453086,"1504":1.8866669161,"1505":1.8091068148,"1506":1.7315467135,"1507":1.6549109978,"1508":1.5782752821,"1509":1.5028663981,"1510":1.4274575141,"1511":1.3535730662,"1512":1.2796886183,"1513":1.2076201947,"1514":1.1355517711,"1515":1.0655837929,"1516":0.9956158147,"1517":0.9280244136,"1518":0.8604330126,"1519":0.7954849409,"1520":0.7305368693,"1521":0.6684884474,"1522":0.6064400256,"1523":0.5475361304,"1524":0.4886322352,"1525":0.4331053333,"1526":0.3775784314,"1527":0.3256476623,"1528":0.2737168931,"1529":0.2255872036,"1530":0.1774575141,"1531":0.1333188502,"1532":0.0891801862,"1533":0.0492067431,"1534":0.0092332999,"1535":-0.0264171656,"1536":-0.0620676312,"1537":-0.0932544229,"1538":-0.1244412147,"1539":-0.1510412527,"1540":-0.1776412907,"1541":-0.1995495968,"1542":-0.2214579028,"1543":-0.2385880148,"1544":-0.2557181268,"1545":-0.2680024401,"1546":-0.2802867533,"1547":-0.2876767872,"1548":-0.2950668211,"1549":-0.2975334105,"1550":-0.3,"1551":-0.2975334105,"1552":-0.2950668211,"1553":-0.2876767872,"1554":-0.2802867533,"1555":-0.2680024401,"1556":-0.2557181268,"1557":-0.2385880148,"1558":-0.2214579028,"1559":-0.1995495968,"1560":-0.1776412907,"1561":-0.1510412527,"1562":-0.1244412147,"1563":-0.0932544229,"1564":-0.0620676312,"1565":-0.0264171656,"1566":0.0092332999,"1567":0.0492067431,"1568":0.0891801862,"1569":0.1333188502,"1570":0.1774575141,"1571":0.2255872036,"1572":0.2737168931,"1573":0.3256476623,"1574":0.3775784314,"1575":0.4331053333,"1576":0.4886322352,"1577":0.5475361304,"1578":0.6064400256,"1579":0.6684884474,"1580":0.7305368693,"1581":0.7954849409,"1582":0.8604330126,"1583":0.9280244136,"1584":0.9956158147,"1585":1.0655837929,"1586":1.1355517711,"1587":1.2076201947,"1588":1.2796886183,"1589":1.3535730662,"1590":1.4274575141,"1591":1.5028663981,"1592":1.5782752821,"1593":1.6549109978,"1594":1.7315467135,"1595":1.8091068148,"1596":1.8866669161,"1597":1.9648453086,"1598":2.0430237012,"1599":2.1215118506,"1600":2.2,"1601":2.2784881494,"1602":2.3569762988,"1603":2.4351546914,"1604":2.5133330839,"1605":2.5908931852,"1606":2.6684532865,"1607":2.7450890022,"1608":2.8217247179,"1609":2.8971336019,"1610":2.9725424859,"1611":3.0464269338,"1612":3.1203113817,"1613":3.1923798053,"1614":3.2644482289,"1615":3.3344162071,"1616":3.4043841853,"1617":3.4719755864,"1618":3.5395669874,"1619":3.6045150591,"1620":3.6694631307,"1621":3.7315115526,"1622":3.7935599744,"1623":3.8524638696,"1624":3.9113677648,"1625":3.9668946667,"1626":4.0224215686,"1627":4.0743523377,"1628":4.1262831069,"1629":4.1744127964,"1630":4.2225424859,"1631":4.2666811498,"1632":4.3108198138,"1633":4.3507932569,"1634":4.3907667001,"1635":4.4264171656,"1636":4.4620676312,"1637":4.4932544229,"1638":4.5244412147,"1639":4.5510412527,"1640":4.5776412907,"1641":4.5995495968,"1642":4.6214579028,"1643":4.6385880148,"1644":4.6557181268,"1645":4.6680024401,"1646":4.6802867533,"1647":4.6876767872,"1648":4.6950668211,"1649":4.6975334105,"1650":4.7,"1651":4.6975334105,"1652":4.6950668211,"1653":4.6876767872,"1654":4.6802867533,"1655":4.6680024401,"1656":4.6557181268,"1657":4.6385880148,"1658":4.6214579028,"1659":4.5995495968,"1660":4.5776412907,"1661":4.5510412527,"1662":4.5244412147,"1663":4.4932544229,"1664":4.4620676312,"1665":4.4264171656,"1666":4.3907667001,"1667":4.3507932569,"1668":4.3108198138,"1669":4.2666811498,"1670":4.2225424859,"1671":4.1744127964,"1672":4.1262831069,"1673":4.0743523377,"1674":4.0224215686,"1675":3.9668946667,"1676":3.9113677648,"1677":3.8524638696,"1678":3.7935599744,"1679":3.7315115526,"1680":3.6694631307,"1681":3.6045150591,"1682":3.5395669874,"1683":3.4719755864,"1684":3.4043841853,"1685":3.3344162071,"1686":3.2644482289,"1687":3.1923798053,"1688":3.1203113817,"1689":3.0464269338,"1690":2.9725424859,"1691":2.8971336019,"1692":2.8217247179,"1693":2.7450890022,"1694":2.6684532865,"1695":2.5908931852,"1696":2.5133330839,"1697":2.4351546914,"1698":2.3569762988,"1699":2.2784881494,"1700":2.2,"1701":2.1215118506,"1702":2.0430237012,"1703":1.9648453086,"1704":1.8866669161,"1705":1.8091068148,"1706":1.7315467135,"1707":1.6549109978,"1708":1.5782752821,"1709":1.5028663981,"1710":1.4274575141,"1711":1.3535730662,"1712":1.2796886183,"1713":1.2076201947,"1714":1.1355517711,"1715":1.0655837929,"1716":0.9956158147,"1717":0.9280244136,"1718":0.8604330126,"1719":0.7954849409,"1720":0.7305368693,"1721":0.6684884474,"1722":0.6064400256,"1723":0.5475361304,"1724":0.4886322352,"1725":0.4331053333,"1726":0.3775784314,"1727":0.3256476623,"1728":0.2737168931,"1729":0.2255872036,"1730":0.1774575141,"1731":0.1333188502,"1732":0.0891801862,"1733":0.0492067431,"1734":0.0092332999,"1735":-0.0264171656,"1736":-0.0620676312,"1737":-0.0932544229,"1738":-0.1244412147,"1739":-0.1510412527,"1740":-0.1776412907,"1741":-0.1995495968,"1742":-0.2214579028,"1743":-0.2385880148,"1744":-0.2557181268,"1745":-0.2680024401,"1746":-0.2802867533,"1747":-0.2876767872,"1748":-0.2950668211,"1749":-0.2975334105,"1750":-0.3,"1751":-0.2975334105,"1752":-0.2950668211,"1753":-0.2876767872,"1754":-0.2802867533,"1755":-0.2680024401,"1756":-0.2557181268,"1757":-0.2385880148,"1758":-0.2214579028,"1759":-0.1995495968,"1760":-0.1776412907,"1761":-0.1510412527,"1762":-0.1244412147,"1763":-0.0932544229,"1764":-0.0620676312,"1765":-0.0264171656,"1766":0.0092332999,"1767":0.0492067431,"1768":0.0891801862,"1769":0.1333188502,"1770":0.1774575141,"1771":0.2255872036,"1772":0.2737168931,"1773":0.3256476623,"1774":0.3775784314,"1775":0.4331053333,"1776":0.4886322352,"1777":0.5475361304,"1778":0.6064400256,"1779":0.6684884474,"1780":0.7305368693,"1781":0.7954849409,"1782":0.8604330126,"1783":0.9280244136,"1784":0.9956158147,"1785":1.0655837929,"1786":1.1355517711,"1787":1.2076201947,"1788":1.2796886183,"1789":1.3535730662,"1790":1.4274575141,"1791":1.5028663981,"1792":1.5782752821,"1793":1.6549109978,"1794":1.7315467135,"1795":1.8091068148,"1796":1.8866669161,"1797":1.9648453086,"1798":2.0430237012,"1799":2.1215118506,"1800":2.2,"1801":2.2784881494,"1802":2.3569762988,"1803":2.4351546914,"1804":2.5133330839,"1805":2.5908931852,"1806":2.6684532865,"1807":2.7450890022,"1808":2.8217247179,"1809":2.8971336019,"1810":2.9725424859,"1811":3.0464269338,"1812":3.1203113817,"1813":3.1923798053,"1814":3.2644482289,"1815":3.3344162071,"1816":3.4043841853,"1817":3.4719755864,"1818":3.5395669874,"1819":3.6045150591,"1820":3.6694631307,"1821":3.7315115526,"1822":3.7935599744,"1823":3.8524638696,"1824":3.9113677648,"1825":3.9668946667,"1826":4.0224215686,"1827":4.0743523377,"1828":4.1262831069,"1829":4.1744127964,"1830":4.2225424859,"1831":4.2666811498,"1832":4.3108198138,"1833":4.3507932569,"1834":4.3907667001,"1835":4.4264171656,"1836":4.4620676312,"1837":4.4932544229,"1838":4.5244412147,"1839":4.5510412527,"1840":4.5776412907,"1841":4.5995495968,"1842":4.6214579028,"1843":4.6385880148,"1844":4.6557181268,"1845":4.6680024401,"1846":4.6802867533,"1847":4.6876767872,"1848":4.6950668211,"1849":4.6975334105,"1850":4.7,"1851":4.6975334105,"1852":4.6950668211,"1853":4.6876767872,"1854":4.6802867533,"1855":4.6680024401,"1856":4.6557181268,"1857":4.6385880148,"1858":4.6214579028,"1859":4.5995495968,"1860":4.5776412907,"1861":4.5510412527,"1862":4.5244412147,"1863":4.4932544229,"1864":4.4620676312,"1865":4.4264171656,"1866":4.3907667001,"1867":4.3507932569,"1868":4.3108198138,"1869":4.2666811498,"1870":4.2225424859,"1871":4.1744127964,"1872":4.1262831069,"1873":4.0743523377,"1874":4.0224215686,"1875":3.9668946667,"1876":3.9113677648,"1877":3.8524638696,"1878":3.7935599744,"1879":3.7315115526,"1880":3.6694631307,"1881":3.6045150591,"1882":3.5395669874,"1883":3.4719755864,"1884":3.4043841853,"1885":3.3344162071,"1886":3.2644482289,"1887":3.1923798053,"1888":3.1203113817,"1889":3.0464269338,"1890":2.9725424859,"1891":2.8971336019,"1892":2.8217247179,"1893":2.7450890022,"1894":2.6684532865,"1895":2.5908931852,"1896":2.5133330839,"1897":2.4351546914,"1898":2.3569762988,"1899":2.2784881494,"1900":2.2,"1901":2.1215118506,"1902":2.0430237012,"1903":1.9648453086,"1904":1.8866669161,"1905":1.8091068148,"1906":1.7315467135,"1907":1.6549109978,"1908":1.5782752821,"1909":1.5028663981,"1910":1.4274575141,"1911":1.3535730662,"1912":1.2796886183,"1913":1.2076201947,"1914":1.1355517711,"1915":1.0655837929,"1916":0.9956158147,"1917":0.9280244136,"1918":0.8604330126,"1919":0.7954849409,"1920":0.7305368693,"1921":0.6684884474,"1922":0.6064400256,"1923":0.5475361304,"1924":0.4886322352,"1925":0.4331053333,"1926":0.3775784314,"1927":0.3256476623,"1928":0.2737168931,"1929":0.2255872036,"1930":0.1774575141,"1931":0.1333188502,"1932":0.0891801862,"1933":0.0492067431,"1934":0.0092332999,"1935":-0.0264171656,"1936":-0.0620676312,"1937":-0.0932544229,"1938":-0.1244412147,"1939":-0.1510412527,"1940":-0.1776412907,"1941":-0.1995495968,"1942":-0.2214579028,"1943":-0.2385880148,"1944":-0.2557181268,"1945":-0.2680024401,"1946":-0.2802867533,"1947":-0.2876767872,"1948":-0.2950668211,"1949":-0.2975334105,"1950":-0.3,"1951":-0.2975334105,"1952":-0.2950668211,"1953":-0.2876767872,"1954":-0.2802867533,"1955":-0.2680024401,"1956":-0.2557181268,"1957":-0.2385880148,"1958":-0.2214579028,"1959":-0.1995495968,"1960":-0.1776412907,"1961":-0.1510412527,"1962":-0.1244412147,"1963":-0.0932544229,"1964":-0.0620676312,"1965":-0.0264171656,"1966":0.0092332999,"1967":0.0492067431,"1968":0.0891801862,"1969":0.1333188502,"1970":0.1774575141,"1971":0.2255872036,"1972":0.2737168931,"1973":0.3256476623,"1974":0.3775784314,"1975":0.4331053333,"1976":0.4886322352,"1977":0.5475361304,"1978":0.6064400256,"1979":0.6684884474,"1980":0.7305368693,"1981":0.7954849409,"1982":0.8604330126,"1983":0.9280244136,"1984":0.9956158147,"1985":1.0655837929,"1986":1.1355517711,"1987":1.2076201947,"1988":1.2796886183,"1989":1.3535730662,"1990":1.4274575141,"1991":1.5028663981,"1992":1.5782752821,"1993":1.6549109978,"1994":1.7315467135,"1995":1.8091068148,"1996":1.8866669161,"1997":1.9648453086,"1998":2.0430237012,"1999":2.1215118506,"2000":2.2},"pressure_in":{"0":4620.0000021514,"1":4708.3756193974,"2":4800.3254995924,"3":4895.5124675901,"4":4994.0594481245,"5":5095.112900714,"6":5199.1833141173,"7":5305.0814669227,"8":5413.666396996,"9":5523.4234147006,"10":5635.5539071338,"11":5748.2226169969,"12":5862.9671989041,"13":5977.6378582606,"14":6094.1012830419,"15":6209.9005191749,"16":6327.2228680953,"17":6443.3129112471,"18":6560.6689786072,"19":6676.2471553502,"20":6792.8460782692,"21":6907.1445293024,"22":7022.2296272077,"23":7134.5152161542,"24":7247.3640077452,"25":7356.9383900522,"26":7466.8627579368,"27":7573.0625813218,"28":7679.409056773,"29":7781.6062668333,"30":7883.7564091974,"31":7981.358635822,"32":8078.7294830568,"33":8171.1804851632,"34":8263.2250537969,"35":8350.0052016813,"36":8436.2130161883,"37":8516.8397924331,"38":8596.7374256203,"39":8670.7659270608,"40":8743.91753457,"41":8810.9409592984,"42":8876.9487927574,"43":8936.5988975347,"44":8995.103782245,"45":9047.0512970203,"46":9097.7330613625,"47":9141.6880488607,"48":9184.265893826,"49":9219.9780433731,"50":9254.2108418116,"51":9281.4696877224,"52":9307.1562040248,"53":9325.791259985,"54":9342.770282003,"55":9352.6510839434,"56":9360.8014599948,"57":9361.8375109805,"58":9361.0780857929,"59":9353.2186974368,"60":9343.5081418536,"61":9326.7421677159,"62":9308.0786979235,"63":9282.4341552751,"64":9254.855138215,"65":9220.3987154318,"66":9183.9801579323,"67":9140.8166056363,"68":9095.6725256412,"69":9043.9439305313,"70":8990.2256096152,"71":8930.1105507214,"72":8868.0056678609,"73":8799.7182557166,"74":8729.4499030414,"75":8653.2387030041,"76":8575.0642849732,"77":8491.2111266199,"78":8405.42114476,"79":8314.239819959,"80":8221.1565459651,"81":8122.9913988613,"82":8022.9674394887,"83":7918.1918522502,"84":7811.6086100272,"85":7700.6233887729,"86":7587.88942313,"87":7471.1210890009,"88":7352.6703829461,"89":7230.5693737937,"90":7106.8595117626,"91":6979.8983003974,"92":6851.4085633754,"93":6720.0796987604,"94":6587.3090832016,"95":6452.1231613789,"96":6315.5883288442,"97":6177.0719007486,"98":6037.305065542,"99":5895.9984891868,"100":5753.5452515939,"101":5610.000496406,"102":5465.4176294197,"103":5320.1960407584,"104":5174.0492384261,"105":5027.7192705358,"106":4880.5808662703,"107":4733.7157920957,"108":4586.1624554623,"109":4439.3380618974,"110":4291.9484825218,"111":4145.7407597643,"112":3999.0933270985,"113":3854.0761608454,"114":3708.7466485841,"115":3565.4895238295,"116":3422.0487877856,"117":3281.1145129692,"118":3140.1262111957,"119":3002.0686713992,"120":2864.0870152842,"121":2729.4489630867,"122":2595.0165080532,"123":2464.3274005312,"124":2333.9728848397,"125":2207.7467750369,"126":2081.9830150197,"127":1960.7165060193,"128":1840.0383558719,"129":1724.2086253725,"130":1609.0910093907,"131":1499.153912426,"132":1390.0499373057,"133":1286.4381944553,"134":1183.777348971,"135":1086.898827085,"136":991.0852761309,"137":901.3213682374,"138":812.732347854,"139":730.4364585396,"140":649.4207781598,"141":574.916920306,"142":501.7935780431,"143":435.3750863704,"144":370.4320027303,"145":312.360369151,"146":255.8532440931,"147":206.3570793979,"148":158.5083771883,"149":117.782503102,"150":78.7805689061,"151":46.9852440375,"152":16.9835556827,"153":-5.7561616271,"154":-26.6396038145,"155":-40.2343532795,"156":-51.9174961994,"157":-56.3139720875,"158":-58.7510373406,"159":-53.9322023176,"160":-47.1138701722,"161":-33.0990256801,"162":-17.0524748397,"163":6.1028122363,"164":31.3140091925,"165":63.5181232506,"166":97.7942483144,"167":138.9198842755,"168":182.1254653388,"169":232.0101289564,"170":283.9744724562,"171":342.4211197035,"172":402.9389824596,"173":469.716795449,"174":538.5491930268,"175":613.3944893836,"176":690.2696377733,"177":772.8869098595,"178":857.5012967417,"179":947.5643766131,"180":1039.5839579694,"181":1136.7373034569,"182":1235.7988207906,"183":1339.6589176174,"184":1445.371330575,"185":1555.5282049675,"186":1667.4742336969,"187":1783.4930695082,"188":1901.230840658,"189":2022.6536946143,"190":2145.7184844702,"191":2272.0660927639,"192":2399.9721606341,"193":2530.7458297252,"194":2662.9883343348,"195":2797.6719084932,"196":2933.7288998163,"197":3071.7907976339,"198":3211.1252762991,"199":3352.0205881292,"200":3494.0826242635,"201":3637.2552623059,"202":3781.4841654533,"203":3926.3690579943,"204":4072.195589539,"205":4218.2209106835,"206":4365.0695300442,"207":4511.658956137,"208":4658.9500918632,"209":4805.5250756903,"210":4952.6774124952,"211":5098.6594662877,"212":5245.0922389894,"213":5389.9052172175,"214":5535.0405025318,"215":5678.1128754774,"216":5821.3778726167,"217":5962.1449817488,"218":6102.9742728235,"219":6240.8805590752,"220":6378.7183403755,"221":6513.2195365255,"222":6647.5218118763,"223":6778.0870903816,"224":6908.3238179125,"225":7034.4378857146,"226":7160.0950695712,"227":7281.2602016062,"228":7401.8419203469,"229":7517.5799237348,"230":7632.6102874066,"231":7742.4643885649,"232":7851.4894167337,"233":7955.0260639688,"234":8057.6154772909,"235":8154.4260517506,"236":8250.1749700153,"237":8339.8773982509,"238":8428.4079381907,"239":8510.6481999627,"240":8591.6109665256,"241":8666.0644919023,"242":8739.1399571,"243":8805.5129073351,"244":8870.4126712241,"245":8928.4430983566,"246":8984.9110271768,"247":9034.3699077776,"248":9082.1831447545,"249":9122.8752837386,"250":9161.8451285604,"251":9193.6099294982,"252":9223.5825829969,"253":9246.2946818828,"254":9267.1518529793,"255":9280.7216129582,"256":9292.3809854755,"257":9296.7548505726,"258":9299.1704080762,"259":9294.3311145345,"260":9287.4933219156,"261":9273.4599663069,"262":9257.3958073933,"263":9234.2237712338,"264":9208.9966422789,"265":9176.7773734462,"266":9142.4868329161,"267":9101.3474847307,"268":9058.1288603781,"269":9008.2317897731,"270":8956.2556445465,"271":8897.797771306,"272":8837.2692302039,"273":8770.4812597994,"274":8701.6392003242,"275":8626.7847134145,"276":8549.9008228226,"277":8467.2752350123,"278":8382.6529380792,"279":8292.5823340395,"280":8200.5555955729,"281":8103.3954421265,"282":8004.3274489522,"283":7900.4611922013,"284":7794.7429198244,"285":7684.5804718576,"286":7572.6291414544,"287":7456.6052626054,"288":7338.8626944365,"289":7217.4352774782,"290":7094.3661472212,"291":6968.0144102678,"292":6840.1044151499,"293":6709.3270103973,"294":6577.0809523662,"295":6442.3939981358,"296":6306.3337916336,"297":6168.2688354858,"298":6028.9314476875,"299":5888.033368643,"300":5745.9687002896,"301":5602.793558438,"302":5458.5622736268,"303":5313.6751156087,"304":5167.8464291056,"305":5021.8190581299,"306":4874.9684889366,"307":4728.3772081315,"308":4581.0843081732,"309":4434.5076461799,"310":4287.3537130762,"311":4141.3701408585,"312":3994.9359238063,"313":3850.1215716886,"314":3704.9849795083,"315":3561.9113634507,"316":3418.6451838432,"317":3277.8769499282,"318":3137.0465889419,"319":2999.139284973,"320":2861.3005356037,"321":2726.7984186107,"322":2592.4952673393,"323":2461.929155644,"324":2331.6916355695,"325":2205.5768138871,"326":2079.9189129274,"327":1958.7530987722,"328":1838.1707311879,"329":1722.4321106094,"330":1607.401159856,"331":1497.5465002561,"332":1388.5209408887,"333":1284.983788369,"334":1182.3938944119,"335":1085.5828627644,"336":989.8335096154,"337":900.1306677108,"338":811.5997342823,"339":729.3590982176,"340":648.3959756213,"341":573.9421115799,"342":500.866324239,"343":434.493067576,"344":369.5930122078,"345":311.5623078157,"346":255.0941152615,"347":205.6349837928,"348":157.8215081863,"349":117.1291422138,"350":78.159081477,"351":46.3940751574,"352":16.4212262962,"353":-6.2910584217,"354":-27.1484062845,"355":-40.7183344065,"356":-52.3778668642,"357":-56.7518840992,"358":-59.1675863187,"359":-54.3284304332,"360":-47.4907687551,"361":-33.4575376994,"362":-17.3934972627,"363":5.7784261998,"364":31.0054479554,"365":63.2246148185,"366":97.5150583533,"367":138.6543142753,"368":181.8728508655,"369":231.7698379895,"370":283.7459038075,"371":342.2037015133,"372":402.7321707657,"373":469.5200728255,"374":538.3620672901,"375":613.2164923607,"376":690.1003241303,"377":772.7258559877,"378":857.3480996977,"379":947.4186531106,"380":1039.4453434203,"381":1136.605451059,"382":1235.6734006602,"383":1339.5396159638,"384":1445.2578489152,"385":1555.42025938,"386":1667.3715541106,"387":1783.3953990273,"388":1901.1379349192,"389":2022.565321175,"390":2145.6344222274,"391":2271.9861314009,"392":2399.8961000942,"393":2530.6734797112,"394":2662.9195138329,"395":2797.6064453203,"396":2933.6666301891,"397":3071.7315657587,"398":3211.0689339828,"399":3351.9669944079,"400":3494.0316450503,"401":3637.2067700549,"402":3781.4380388409,"403":3926.3251816156,"404":4072.153853619,"405":4218.1812108024,"406":4365.0317668761,"407":4511.6230352016,"408":4658.9159232893,"409":4805.4925739909,"410":4952.6464963538,"411":5098.6300583547,"412":5245.0642656885,"413":5389.878608562,"414":5535.0151919489,"415":5678.0887996422,"416":5821.3549712934,"417":5962.1231976402,"418":6102.9535514275,"419":6240.8608485487,"420":6378.6995914043,"421":6513.2017022013,"422":6647.5048475791,"423":6778.0709536682,"424":6908.3084684101,"425":7034.42328502,"426":7160.0811811546,"427":7281.2469907201,"428":7401.8293539386,"429":7517.5679703643,"430":7632.5989171675,"431":7742.4535730099,"432":7851.4791288031,"433":7955.016277923,"434":8057.6061686461,"435":8154.4171972173,"436":8250.1665474403,"437":8339.8693865615,"438":8428.4003173423,"439":8510.6409508886,"440":8591.6040710893,"441":8666.0579328519,"442":8739.1337180253,"443":8805.5069726265,"444":8870.4070260334,"445":8928.4377285601,"446":8984.9059193396,"447":9034.3650491204,"448":9082.1785231212,"449":9122.8708875664,"450":9161.8409468505,"451":9193.6059517881,"452":9223.5787993349,"453":9246.2910828024,"454":9267.1484294758,"455":9280.7183564664,"456":9292.3778878479,"457":9296.7519040592,"458":9299.167605305,"459":9294.3284484933,"460":9287.4907859341,"461":9273.4575540404,"462":9257.3935128065,"463":9234.2215885858,"464":9208.9945661088,"465":9176.7753985597,"466":9142.4849543722,"467":9101.3456978294,"468":9058.1271606487,"469":9008.230172963,"470":8956.2541066106,"471":8897.7963083966,"472":8837.2678386608,"473":8770.4799361411,"474":8701.6379412391,"475":8626.7835157524,"476":8549.8996835871,"477":8467.2741513531,"478":8382.651907285,"479":8292.5813535315,"480":8200.5546628978,"481":8103.3945549508,"482":8004.3266050564,"483":7900.460389474,"484":7794.7421562573,"485":7684.5797455402,"486":7572.6284505695,"487":7456.6046054245,"488":7338.8620693155,"489":7217.434682853,"490":7094.3655816041,"491":6968.0138722437,"492":6840.1039033727,"493":6709.3265235865,"494":6577.0804893039,"495":6442.3935576635,"496":6306.3333726492,"497":6168.2684369411,"498":6028.9310685853,"499":5888.0330080349,"500":5745.9683572734,"501":5602.7932321554,"502":5458.5619632615,"503":5313.6748203843,"504":5167.8461482833,"505":5021.8187910072,"506":4874.9682348452,"507":4728.3769664357,"508":4581.0840782682,"509":4434.5074274906,"510":4287.3535050554,"511":4141.3699429858,"512":3994.9357355865,"513":3850.1213926509,"514":3704.9848092047,"515":3561.9112014552,"516":3418.6450297504,"517":3277.8768033527,"518":3137.0464495169,"519":2999.1391523497,"520":2861.3004094503,"521":2726.7982986116,"522":2592.4951531941,"523":2461.9290470673,"524":2331.6915322896,"525":2205.5767156455,"526":2079.9188194784,"527":1958.7530098821,"528":1838.1706466342,"529":1722.4320301806,"530":1607.4010833508,"531":1497.5464274831,"532":1388.5208716659,"533":1284.9837225231,"534":1182.3938317782,"535":1085.5828031863,"536":989.8334529436,"537":900.1306138037,"538":811.599683005,"539":729.3590494418,"540":648.395929225,"541":573.942067447,"542":500.8662822591,"543":434.493027644,"544":369.5929742239,"545":311.5622716847,"546":255.0940808932,"547":205.6349511011,"548":157.8214770894,"549":117.1291126339,"550":78.1590533401,"551":46.3940483932,"552":16.4212008376,"553":-6.2910826383,"554":-27.1484293197,"555":-40.718356318,"556":-52.3778877067,"557":-56.7519039249,"558":-59.1676051773,"559":-54.3284483718,"560":-47.4907858186,"561":-33.4575539305,"562":-17.3935127019,"563":5.7784115137,"564":31.0054339858,"565":63.2246015303,"566":97.5150457134,"567":138.6543022521,"568":181.8728394288,"569":231.7698271107,"570":283.7458934595,"571":342.2036916701,"572":402.7321614026,"573":469.5200639192,"574":538.3620588183,"575":613.2164843021,"576":690.1003164649,"577":772.7258486963,"578":857.3480927619,"579":947.4186465132,"580":1039.4453371447,"581":1136.6054450896,"582":1235.673394982,"583":1339.5396105626,"584":1445.2578437775,"585":1555.4202544929,"586":1667.371549462,"587":1783.3953946054,"588":1901.137930713,"589":2022.5653171741,"590":2145.6344184216,"591":2271.9861277808,"592":2399.8960966507,"593":2530.6734764357,"594":2662.9195107172,"595":2797.6064423566,"596":2933.6666273699,"597":3071.7315630771,"598":3211.0689314319,"599":3351.9669919816,"600":3494.0316427423,"601":3637.2067678595,"602":3781.4380367526,"603":3926.3251796292,"604":4072.1538517295,"605":4218.181209005,"606":4365.0317651664,"607":4511.6230335753,"608":4658.9159217423,"609":4805.4925725194,"610":4952.6464949541,"611":5098.6300570233,"612":5245.0642644221,"613":5389.8786073573,"614":5535.015190803,"615":5678.0887985522,"616":5821.3549702566,"617":5962.123196654,"618":6102.9535504894,"619":6240.8608476563,"620":6378.6995905555,"621":6513.2017013939,"622":6647.5048468111,"623":6778.0709529376,"624":6908.3084677151,"625":7034.4232843589,"626":7160.0811805258,"627":7281.246990122,"628":7401.8293533697,"629":7517.5679698231,"630":7632.5989166527,"631":7742.4535725202,"632":7851.4791283373,"633":7955.0162774799,"634":8057.6061682247,"635":8154.4171968165,"636":8250.166547059,"637":8339.8693861988,"638":8428.4003169973,"639":8510.6409505604,"640":8591.6040707771,"641":8666.057932555,"642":8739.1337177429,"643":8805.5069723578,"644":8870.4070257779,"645":8928.4377283169,"646":8984.9059191084,"647":9034.3650489004,"648":9082.178522912,"649":9122.8708873674,"650":9161.8409466611,"651":9193.605951608,"652":9223.5787991636,"653":9246.2910826394,"654":9267.1484293208,"655":9280.718356319,"656":9292.3778877077,"657":9296.7519039258,"658":9299.1676051782,"659":9294.3284483726,"660":9287.4907858193,"661":9273.4575539312,"662":9257.3935127026,"663":9234.221588487,"664":9208.9945660148,"665":9176.7753984703,"666":9142.4849542871,"667":9101.3456977485,"668":9058.1271605718,"669":9008.2301728898,"670":8956.254106541,"671":8897.7963083304,"672":8837.2678385978,"673":8770.4799360812,"674":8701.6379411821,"675":8626.7835156982,"676":8549.8996835355,"677":8467.2741513041,"678":8382.6519072384,"679":8292.5813534871,"680":8200.5546628555,"681":8103.3945549107,"682":8004.3266050182,"683":7900.4603894377,"684":7794.7421562227,"685":7684.5797455073,"686":7572.6284505382,"687":7456.6046053948,"688":7338.8620692872,"689":7217.4346828261,"690":7094.3655815785,"691":6968.0138722194,"692":6840.1039033495,"693":6709.3265235645,"694":6577.080489283,"695":6442.3935576435,"696":6306.3333726302,"697":6168.268436923,"698":6028.9310685682,"699":5888.0330080185,"700":5745.9683572579,"701":5602.7932321406,"702":5458.5619632475,"703":5313.6748203709,"704":5167.8461482706,"705":5021.8187909951,"706":4874.9682348337,"707":4728.3769664247,"708":4581.0840782577,"709":4434.5074274807,"710":4287.3535050459,"711":4141.3699429768,"712":3994.935735578,"713":3850.1213926428,"714":3704.984809197,"715":3561.9112014479,"716":3418.6450297435,"717":3277.8768033461,"718":3137.0464495106,"719":2999.1391523437,"720":2861.3004094445,"721":2726.7982986062,"722":2592.495153189,"723":2461.9290470624,"724":2331.6915322849,"725":2205.5767156411,"726":2079.9188194742,"727":1958.7530098781,"728":1838.1706466303,"729":1722.4320301769,"730":1607.4010833473,"731":1497.5464274798,"732":1388.5208716627,"733":1284.9837225201,"734":1182.3938317753,"735":1085.5828031836,"736":989.8334529411,"737":900.1306138013,"738":811.5996830027,"739":729.3590494396,"740":648.3959292229,"741":573.942067445,"742":500.8662822572,"743":434.4930276422,"744":369.5929742222,"745":311.5622716831,"746":255.0940808916,"747":205.6349510996,"748":157.821477088,"749":117.1291126326,"750":78.1590533389,"751":46.394048392,"752":16.4212008364,"753":-6.2910826394,"754":-27.1484293208,"755":-40.718356319,"756":-52.3778877077,"757":-56.7519039258,"758":-59.1676051781,"759":-54.3284483726,"760":-47.4907858193,"761":-33.4575539312,"762":-17.3935127026,"763":5.778411513,"764":31.0054339852,"765":63.2246015297,"766":97.5150457129,"767":138.6543022515,"768":181.8728394283,"769":231.7698271102,"770":283.745893459,"771":342.2036916696,"772":402.7321614022,"773":469.5200639188,"774":538.3620588179,"775":613.2164843018,"776":690.1003164645,"777":772.7258486959,"778":857.3480927616,"779":947.4186465129,"780":1039.4453371445,"781":1136.6054450893,"782":1235.6733949818,"783":1339.5396105623,"784":1445.2578437773,"785":1555.4202544927,"786":1667.3715494618,"787":1783.3953946052,"788":1901.1379307128,"789":2022.5653171739,"790":2145.6344184215,"791":2271.9861277806,"792":2399.8960966505,"793":2530.6734764355,"794":2662.9195107171,"795":2797.6064423565,"796":2933.6666273698,"797":3071.731563077,"798":3211.0689314318,"799":3351.9669919815,"800":3494.0316427421,"801":3637.2067678594,"802":3781.4380367525,"803":3926.3251796291,"804":4072.1538517294,"805":4218.1812090049,"806":4365.0317651663,"807":4511.6230335753,"808":4658.9159217422,"809":4805.4925725193,"810":4952.646494954,"811":5098.6300570232,"812":5245.064264422,"813":5389.8786073573,"814":5535.015190803,"815":5678.0887985521,"816":5821.3549702565,"817":5962.1231966539,"818":6102.9535504894,"819":6240.8608476563,"820":6378.6995905554,"821":6513.2017013938,"822":6647.504846811,"823":6778.0709529376,"824":6908.3084677151,"825":7034.4232843589,"826":7160.0811805258,"827":7281.2469901219,"828":7401.8293533696,"829":7517.567969823,"830":7632.5989166527,"831":7742.4535725202,"832":7851.4791283373,"833":7955.0162774799,"834":8057.6061682246,"835":8154.4171968164,"836":8250.1665470589,"837":8339.8693861987,"838":8428.4003169973,"839":8510.6409505604,"840":8591.6040707771,"841":8666.057932555,"842":8739.1337177428,"843":8805.5069723578,"844":8870.4070257778,"845":8928.4377283169,"846":8984.9059191084,"847":9034.3650489004,"848":9082.178522912,"849":9122.8708873674,"850":9161.8409466611,"851":9193.605951608,"852":9223.5787991636,"853":9246.2910826394,"854":9267.1484293208,"855":9280.718356319,"856":9292.3778877076,"857":9296.7519039258,"858":9299.1676051781,"859":9294.3284483726,"860":9287.4907858193,"861":9273.4575539312,"862":9257.3935127026,"863":9234.221588487,"864":9208.9945660148,"865":9176.7753984703,"866":9142.4849542871,"867":9101.3456977485,"868":9058.1271605718,"869":9008.2301728898,"870":8956.254106541,"871":8897.7963083304,"872":8837.2678385978,"873":8770.4799360812,"874":8701.6379411821,"875":8626.7835156982,"876":8549.8996835355,"877":8467.2741513041,"878":8382.6519072384,"879":8292.5813534871,"880":8200.5546628555,"881":8103.3945549107,"882":8004.3266050182,"883":7900.4603894377,"884":7794.7421562227,"885":7684.5797455073,"886":7572.6284505383,"887":7456.6046053948,"888":7338.8620692872,"889":7217.4346828261,"890":7094.3655815785,"891":6968.0138722194,"892":6840.1039033495,"893":6709.3265235645,"894":6577.080489283,"895":6442.3935576436,"896":6306.3333726302,"897":6168.268436923,"898":6028.9310685682,"899":5888.0330080186,"900":5745.9683572579,"901":5602.7932321406,"902":5458.5619632475,"903":5313.6748203709,"904":5167.8461482707,"905":5021.8187909951,"906":4874.9682348337,"907":4728.3769664247,"908":4581.0840782578,"909":4434.5074274807,"910":4287.353505046,"911":4141.3699429768,"912":3994.935735578,"913":3850.1213926428,"914":3704.984809197,"915":3561.9112014479,"916":3418.6450297435,"917":3277.8768033461,"918":3137.0464495106,"919":2999.1391523437,"920":2861.3004094446,"921":2726.7982986062,"922":2592.495153189,"923":2461.9290470624,"924":2331.6915322849,"925":2205.5767156411,"926":2079.9188194742,"927":1958.7530098781,"928":1838.1706466304,"929":1722.4320301769,"930":1607.4010833473,"931":1497.5464274798,"932":1388.5208716627,"933":1284.9837225201,"934":1182.3938317754,"935":1085.5828031836,"936":989.8334529411,"937":900.1306138013,"938":811.5996830027,"939":729.3590494396,"940":648.3959292229,"941":573.942067445,"942":500.8662822572,"943":434.4930276422,"944":369.5929742222,"945":311.5622716831,"946":255.0940808916,"947":205.6349510996,"948":157.821477088,"949":117.1291126326,"950":78.1590533389,"951":46.394048392,"952":16.4212008364,"953":-6.2910826394,"954":-27.1484293208,"955":-40.718356319,"956":-52.3778877077,"957":-56.7519039258,"958":-59.1676051781,"959":-54.3284483726,"960":-47.4907858193,"961":-33.4575539312,"962":-17.3935127026,"963":5.778411513,"964":31.0054339852,"965":63.2246015297,"966":97.5150457129,"967":138.6543022515,"968":181.8728394283,"969":231.7698271102,"970":283.745893459,"971":342.2036916696,"972":402.7321614022,"973":469.5200639188,"974":538.3620588179,"975":613.2164843018,"976":690.1003164645,"977":772.7258486959,"978":857.3480927616,"979":947.4186465129,"980":1039.4453371445,"981":1136.6054450893,"982":1235.6733949818,"983":1339.5396105623,"984":1445.2578437773,"985":1555.4202544927,"986":1667.3715494617,"987":1783.3953946052,"988":1901.1379307129,"989":2022.5653171739,"990":2145.6344184215,"991":2271.9861277806,"992":2399.8960966505,"993":2530.6734764355,"994":2662.919510717,"995":2797.6064423564,"996":2933.6666273698,"997":3071.731563077,"998":3211.0689314318,"999":3351.9669919815,"1000":3494.0316427421,"1001":3637.2067678594,"1002":3781.4380367525,"1003":3926.3251796291,"1004":4072.1538517294,"1005":4218.1812090049,"1006":4365.0317651663,"1007":4511.6230335753,"1008":4658.9159217422,"1009":4805.4925725193,"1010":4952.646494954,"1011":5098.6300570232,"1012":5245.064264422,"1013":5389.8786073572,"1014":5535.015190803,"1015":5678.0887985521,"1016":5821.3549702565,"1017":5962.1231966539,"1018":6102.9535504894,"1019":6240.8608476563,"1020":6378.6995905554,"1021":6513.2017013938,"1022":6647.504846811,"1023":6778.0709529376,"1024":6908.3084677151,"1025":7034.4232843589,"1026":7160.0811805258,"1027":7281.2469901219,"1028":7401.8293533696,"1029":7517.567969823,"1030":7632.5989166527,"1031":7742.4535725202,"1032":7851.4791283373,"1033":7955.0162774799,"1034":8057.6061682246,"1035":8154.4171968164,"1036":8250.1665470589,"1037":8339.8693861987,"1038":8428.4003169973,"1039":8510.6409505604,"1040":8591.6040707771,"1041":8666.057932555,"1042":8739.1337177428,"1043":8805.5069723578,"1044":8870.4070257778,"1045":8928.4377283169,"1046":8984.9059191084,"1047":9034.3650489004,"1048":9082.178522912,"1049":9122.8708873674,"1050":9161.8409466611,"1051":9193.605951608,"1052":9223.5787991636,"1053":9246.2910826394,"1054":9267.1484293208,"1055":9280.718356319,"1056":9292.3778877076,"1057":9296.7519039258,"1058":9299.1676051781,"1059":9294.3284483726,"1060":9287.4907858193,"1061":9273.4575539312,"1062":9257.3935127026,"1063":9234.221588487,"1064":9208.9945660148,"1065":9176.7753984703,"1066":9142.4849542871,"1067":9101.3456977485,"1068":9058.1271605718,"1069":9008.2301728898,"1070":8956.254106541,"1071":8897.7963083304,"1072":8837.2678385978,"1073":8770.4799360812,"1074":8701.6379411821,"1075":8626.7835156982,"1076":8549.8996835355,"1077":8467.2741513041,"1078":8382.6519072384,"1079":8292.5813534871,"1080":8200.5546628555,"1081":8103.3945549107,"1082":8004.3266050182,"1083":7900.4603894377,"1084":7794.7421562227,"1085":7684.5797455073,"1086":7572.6284505383,"1087":7456.6046053948,"1088":7338.8620692872,"1089":7217.4346828261,"1090":7094.3655815785,"1091":6968.0138722194,"1092":6840.1039033495,"1093":6709.3265235645,"1094":6577.080489283,"1095":6442.3935576436,"1096":6306.3333726302,"1097":6168.268436923,"1098":6028.9310685682,"1099":5888.0330080186,"1100":5745.9683572579,"1101":5602.7932321406,"1102":5458.5619632475,"1103":5313.6748203709,"1104":5167.8461482707,"1105":5021.8187909951,"1106":4874.9682348337,"1107":4728.3769664247,"1108":4581.0840782578,"1109":4434.5074274807,"1110":4287.353505046,"1111":4141.3699429768,"1112":3994.935735578,"1113":3850.1213926428,"1114":3704.984809197,"1115":3561.9112014479,"1116":3418.6450297435,"1117":3277.8768033461,"1118":3137.0464495106,"1119":2999.1391523437,"1120":2861.3004094446,"1121":2726.7982986062,"1122":2592.495153189,"1123":2461.9290470624,"1124":2331.6915322849,"1125":2205.5767156411,"1126":2079.9188194742,"1127":1958.7530098781,"1128":1838.1706466304,"1129":1722.4320301769,"1130":1607.4010833473,"1131":1497.5464274798,"1132":1388.5208716627,"1133":1284.9837225201,"1134":1182.3938317754,"1135":1085.5828031836,"1136":989.8334529411,"1137":900.1306138013,"1138":811.5996830027,"1139":729.3590494396,"1140":648.3959292229,"1141":573.942067445,"1142":500.8662822572,"1143":434.4930276422,"1144":369.5929742222,"1145":311.5622716831,"1146":255.0940808916,"1147":205.6349510996,"1148":157.821477088,"1149":117.1291126326,"1150":78.1590533389,"1151":46.394048392,"1152":16.4212008364,"1153":-6.2910826394,"1154":-27.1484293208,"1155":-40.718356319,"1156":-52.3778877077,"1157":-56.7519039258,"1158":-59.1676051781,"1159":-54.3284483726,"1160":-47.4907858193,"1161":-33.4575539312,"1162":-17.3935127026,"1163":5.778411513,"1164":31.0054339852,"1165":63.2246015297,"1166":97.5150457129,"1167":138.6543022515,"1168":181.8728394283,"1169":231.7698271102,"1170":283.745893459,"1171":342.2036916696,"1172":402.7321614022,"1173":469.5200639188,"1174":538.3620588179,"1175":613.2164843018,"1176":690.1003164645,"1177":772.7258486959,"1178":857.3480927616,"1179":947.4186465129,"1180":1039.4453371445,"1181":1136.6054450893,"1182":1235.6733949818,"1183":1339.5396105623,"1184":1445.2578437773,"1185":1555.4202544927,"1186":1667.3715494617,"1187":1783.3953946052,"1188":1901.1379307129,"1189":2022.5653171739,"1190":2145.6344184215,"1191":2271.9861277806,"1192":2399.8960966505,"1193":2530.6734764355,"1194":2662.919510717,"1195":2797.6064423564,"1196":2933.6666273698,"1197":3071.731563077,"1198":3211.0689314318,"1199":3351.9669919815,"1200":3494.0316427421,"1201":3637.2067678594,"1202":3781.4380367525,"1203":3926.3251796291,"1204":4072.1538517294,"1205":4218.1812090049,"1206":4365.0317651663,"1207":4511.6230335753,"1208":4658.9159217422,"1209":4805.4925725193,"1210":4952.646494954,"1211":5098.6300570232,"1212":5245.064264422,"1213":5389.8786073572,"1214":5535.015190803,"1215":5678.0887985521,"1216":5821.3549702565,"1217":5962.1231966539,"1218":6102.9535504894,"1219":6240.8608476563,"1220":6378.6995905554,"1221":6513.2017013938,"1222":6647.504846811,"1223":6778.0709529376,"1224":6908.3084677151,"1225":7034.4232843589,"1226":7160.0811805258,"1227":7281.2469901219,"1228":7401.8293533696,"1229":7517.5679698231,"1230":7632.5989166527,"1231":7742.4535725202,"1232":7851.4791283373,"1233":7955.0162774799,"1234":8057.6061682246,"1235":8154.4171968164,"1236":8250.1665470589,"1237":8339.8693861987,"1238":8428.4003169973,"1239":8510.6409505604,"1240":8591.6040707771,"1241":8666.057932555,"1242":8739.1337177428,"1243":8805.5069723578,"1244":8870.4070257778,"1245":8928.4377283169,"1246":8984.9059191084,"1247":9034.3650489004,"1248":9082.178522912,"1249":9122.8708873674,"1250":9161.8409466611,"1251":9193.605951608,"1252":9223.5787991636,"1253":9246.2910826394,"1254":9267.1484293208,"1255":9280.718356319,"1256":9292.3778877076,"1257":9296.7519039258,"1258":9299.1676051781,"1259":9294.3284483726,"1260":9287.4907858193,"1261":9273.4575539312,"1262":9257.3935127026,"1263":9234.221588487,"1264":9208.9945660148,"1265":9176.7753984703,"1266":9142.4849542871,"1267":9101.3456977485,"1268":9058.1271605718,"1269":9008.2301728898,"1270":8956.254106541,"1271":8897.7963083304,"1272":8837.2678385978,"1273":8770.4799360812,"1274":8701.6379411821,"1275":8626.7835156982,"1276":8549.8996835355,"1277":8467.2741513041,"1278":8382.6519072384,"1279":8292.5813534871,"1280":8200.5546628555,"1281":8103.3945549107,"1282":8004.3266050182,"1283":7900.4603894377,"1284":7794.7421562227,"1285":7684.5797455073,"1286":7572.6284505383,"1287":7456.6046053948,"1288":7338.8620692872,"1289":7217.4346828261,"1290":7094.3655815785,"1291":6968.0138722194,"1292":6840.1039033495,"1293":6709.3265235645,"1294":6577.080489283,"1295":6442.3935576436,"1296":6306.3333726302,"1297":6168.268436923,"1298":6028.9310685682,"1299":5888.0330080186,"1300":5745.9683572579,"1301":5602.7932321406,"1302":5458.5619632475,"1303":5313.6748203709,"1304":5167.8461482706,"1305":5021.8187909951,"1306":4874.9682348337,"1307":4728.3769664247,"1308":4581.0840782578,"1309":4434.5074274807,"1310":4287.353505046,"1311":4141.3699429768,"1312":3994.935735578,"1313":3850.1213926428,"1314":3704.984809197,"1315":3561.9112014479,"1316":3418.6450297435,"1317":3277.8768033461,"1318":3137.0464495106,"1319":2999.1391523437,"1320":2861.3004094446,"1321":2726.7982986062,"1322":2592.495153189,"1323":2461.9290470624,"1324":2331.6915322849,"1325":2205.5767156411,"1326":2079.9188194742,"1327":1958.7530098781,"1328":1838.1706466304,"1329":1722.4320301769,"1330":1607.4010833473,"1331":1497.5464274798,"1332":1388.5208716627,"1333":1284.9837225201,"1334":1182.3938317754,"1335":1085.5828031836,"1336":989.8334529411,"1337":900.1306138013,"1338":811.5996830027,"1339":729.3590494396,"1340":648.3959292229,"1341":573.942067445,"1342":500.8662822572,"1343":434.4930276422,"1344":369.5929742222,"1345":311.5622716831,"1346":255.0940808916,"1347":205.6349510996,"1348":157.821477088,"1349":117.1291126326,"1350":78.1590533389,"1351":46.394048392,"1352":16.4212008364,"1353":-6.2910826394,"1354":-27.1484293208,"1355":-40.718356319,"1356":-52.3778877077,"1357":-56.7519039258,"1358":-59.1676051781,"1359":-54.3284483726,"1360":-47.4907858193,"1361":-33.4575539312,"1362":-17.3935127026,"1363":5.778411513,"1364":31.0054339852,"1365":63.2246015297,"1366":97.5150457129,"1367":138.6543022515,"1368":181.8728394283,"1369":231.7698271102,"1370":283.745893459,"1371":342.2036916696,"1372":402.7321614022,"1373":469.5200639188,"1374":538.3620588179,"1375":613.2164843018,"1376":690.1003164645,"1377":772.7258486959,"1378":857.3480927616,"1379":947.4186465129,"1380":1039.4453371445,"1381":1136.6054450893,"1382":1235.6733949818,"1383":1339.5396105623,"1384":1445.2578437773,"1385":1555.4202544927,"1386":1667.3715494617,"1387":1783.3953946052,"1388":1901.1379307129,"1389":2022.5653171739,"1390":2145.6344184215,"1391":2271.9861277806,"1392":2399.8960966505,"1393":2530.6734764355,"1394":2662.919510717,"1395":2797.6064423564,"1396":2933.6666273698,"1397":3071.731563077,"1398":3211.0689314318,"1399":3351.9669919815,"1400":3494.0316427421,"1401":3637.2067678594,"1402":3781.4380367525,"1403":3926.3251796291,"1404":4072.1538517294,"1405":4218.1812090049,"1406":4365.0317651663,"1407":4511.6230335753,"1408":4658.9159217422,"1409":4805.4925725193,"1410":4952.646494954,"1411":5098.6300570232,"1412":5245.064264422,"1413":5389.8786073572,"1414":5535.015190803,"1415":5678.0887985521,"1416":5821.3549702565,"1417":5962.1231966539,"1418":6102.9535504894,"1419":6240.8608476563,"1420":6378.6995905554,"1421":6513.2017013938,"1422":6647.504846811,"1423":6778.0709529376,"1424":6908.3084677151,"1425":7034.4232843589,"1426":7160.0811805258,"1427":7281.2469901219,"1428":7401.8293533696,"1429":7517.5679698231,"1430":7632.5989166527,"1431":7742.4535725202,"1432":7851.4791283373,"1433":7955.0162774799,"1434":8057.6061682246,"1435":8154.4171968164,"1436":8250.1665470589,"1437":8339.8693861987,"1438":8428.4003169973,"1439":8510.6409505604,"1440":8591.6040707771,"1441":8666.057932555,"1442":8739.1337177428,"1443":8805.5069723578,"1444":8870.4070257778,"1445":8928.4377283169,"1446":8984.9059191084,"1447":9034.3650489004,"1448":9082.178522912,"1449":9122.8708873674,"1450":9161.8409466611,"1451":9193.605951608,"1452":9223.5787991636,"1453":9246.2910826394,"1454":9267.1484293208,"1455":9280.718356319,"1456":9292.3778877076,"1457":9296.7519039258,"1458":9299.1676051781,"1459":9294.3284483726,"1460":9287.4907858193,"1461":9273.4575539312,"1462":9257.3935127026,"1463":9234.221588487,"1464":9208.9945660148,"1465":9176.7753984703,"1466":9142.4849542871,"1467":9101.3456977485,"1468":9058.1271605718,"1469":9008.2301728898,"1470":8956.254106541,"1471":8897.7963083304,"1472":8837.2678385978,"1473":8770.4799360812,"1474":8701.6379411821,"1475":8626.7835156982,"1476":8549.8996835355,"1477":8467.2741513041,"1478":8382.6519072384,"1479":8292.5813534871,"1480":8200.5546628555,"1481":8103.3945549107,"1482":8004.3266050182,"1483":7900.4603894377,"1484":7794.7421562227,"1485":7684.5797455073,"1486":7572.6284505383,"1487":7456.6046053948,"1488":7338.8620692872,"1489":7217.4346828261,"1490":7094.3655815785,"1491":6968.0138722194,"1492":6840.1039033495,"1493":6709.3265235645,"1494":6577.080489283,"1495":6442.3935576436,"1496":6306.3333726302,"1497":6168.268436923,"1498":6028.9310685682,"1499":5888.0330080186,"1500":5745.9683572579,"1501":5602.7932321406,"1502":5458.5619632475,"1503":5313.6748203709,"1504":5167.8461482706,"1505":5021.8187909951,"1506":4874.9682348337,"1507":4728.3769664247,"1508":4581.0840782578,"1509":4434.5074274807,"1510":4287.353505046,"1511":4141.3699429768,"1512":3994.935735578,"1513":3850.1213926428,"1514":3704.984809197,"1515":3561.9112014479,"1516":3418.6450297435,"1517":3277.8768033461,"1518":3137.0464495106,"1519":2999.1391523437,"1520":2861.3004094446,"1521":2726.7982986062,"1522":2592.495153189,"1523":2461.9290470624,"1524":2331.6915322849,"1525":2205.5767156411,"1526":2079.9188194742,"1527":1958.7530098781,"1528":1838.1706466304,"1529":1722.4320301769,"1530":1607.4010833473,"1531":1497.5464274798,"1532":1388.5208716627,"1533":1284.9837225201,"1534":1182.3938317754,"1535":1085.5828031836,"1536":989.8334529411,"1537":900.1306138013,"1538":811.5996830027,"1539":729.3590494396,"1540":648.3959292229,"1541":573.942067445,"1542":500.8662822572,"1543":434.4930276422,"1544":369.5929742222,"1545":311.5622716831,"1546":255.0940808916,"1547":205.6349510996,"1548":157.821477088,"1549":117.1291126326,"1550":78.1590533389,"1551":46.394048392,"1552":16.4212008364,"1553":-6.2910826394,"1554":-27.1484293208,"1555":-40.718356319,"1556":-52.3778877077,"1557":-56.7519039258,"1558":-59.1676051781,"1559":-54.3284483726,"1560":-47.4907858193,"1561":-33.4575539312,"1562":-17.3935127026,"1563":5.778411513,"1564":31.0054339852,"1565":63.2246015297,"1566":97.5150457129,"1567":138.6543022515,"1568":181.8728394283,"1569":231.7698271102,"1570":283.745893459,"1571":342.2036916696,"1572":402.7321614022,"1573":469.5200639188,"1574":538.3620588179,"1575":613.2164843018,"1576":690.1003164645,"1577":772.7258486959,"1578":857.3480927616,"1579":947.4186465129,"1580":1039.4453371445,"1581":1136.6054450893,"1582":1235.6733949818,"1583":1339.5396105623,"1584":1445.2578437773,"1585":1555.4202544927,"1586":1667.3715494617,"1587":1783.3953946052,"1588":1901.1379307128,"1589":2022.5653171739,"1590":2145.6344184215,"1591":2271.9861277806,"1592":2399.8960966505,"1593":2530.6734764355,"1594":2662.919510717,"1595":2797.6064423564,"1596":2933.6666273698,"1597":3071.731563077,"1598":3211.0689314318,"1599":3351.9669919815,"1600":3494.0316427421,"1601":3637.2067678594,"1602":3781.4380367526,"1603":3926.3251796291,"1604":4072.1538517294,"1605":4218.1812090049,"1606":4365.0317651663,"1607":4511.6230335752,"1608":4658.9159217423,"1609":4805.4925725194,"1610":4952.6464949541,"1611":5098.6300570232,"1612":5245.064264422,"1613":5389.8786073573,"1614":5535.015190803,"1615":5678.0887985522,"1616":5821.3549702565,"1617":5962.123196654,"1618":6102.9535504894,"1619":6240.8608476563,"1620":6378.6995905555,"1621":6513.2017013938,"1622":6647.504846811,"1623":6778.0709529376,"1624":6908.3084677151,"1625":7034.4232843589,"1626":7160.0811805258,"1627":7281.246990122,"1628":7401.8293533696,"1629":7517.5679698231,"1630":7632.5989166527,"1631":7742.4535725202,"1632":7851.4791283373,"1633":7955.0162774799,"1634":8057.6061682247,"1635":8154.4171968164,"1636":8250.166547059,"1637":8339.8693861987,"1638":8428.4003169973,"1639":8510.6409505604,"1640":8591.6040707771,"1641":8666.057932555,"1642":8739.1337177429,"1643":8805.5069723578,"1644":8870.4070257778,"1645":8928.4377283169,"1646":8984.9059191084,"1647":9034.3650489004,"1648":9082.178522912,"1649":9122.8708873674,"1650":9161.8409466611,"1651":9193.605951608,"1652":9223.5787991636,"1653":9246.2910826394,"1654":9267.1484293208,"1655":9280.718356319,"1656":9292.3778877076,"1657":9296.7519039259,"1658":9299.1676051781,"1659":9294.3284483726,"1660":9287.4907858193,"1661":9273.4575539312,"1662":9257.3935127026,"1663":9234.221588487,"1664":9208.9945660148,"1665":9176.7753984703,"1666":9142.4849542871,"1667":9101.3456977485,"1668":9058.1271605717,"1669":9008.2301728898,"1670":8956.254106541,"1671":8897.7963083304,"1672":8837.2678385978,"1673":8770.4799360812,"1674":8701.6379411821,"1675":8626.7835156982,"1676":8549.8996835355,"1677":8467.274151304,"1678":8382.6519072384,"1679":8292.581353487,"1680":8200.5546628556,"1681":8103.3945549107,"1682":8004.3266050183,"1683":7900.4603894376,"1684":7794.7421562227,"1685":7684.5797455073,"1686":7572.6284505382,"1687":7456.6046053948,"1688":7338.8620692871,"1689":7217.4346828261,"1690":7094.3655815785,"1691":6968.0138722194,"1692":6840.1039033495,"1693":6709.3265235644,"1694":6577.0804892829,"1695":6442.3935576435,"1696":6306.3333726302,"1697":6168.268436923,"1698":6028.9310685682,"1699":5888.0330080185,"1700":5745.9683572578,"1701":5602.7932321406,"1702":5458.5619632474,"1703":5313.6748203709,"1704":5167.8461482706,"1705":5021.8187909951,"1706":4874.9682348336,"1707":4728.3769664248,"1708":4581.0840782577,"1709":4434.5074274806,"1710":4287.3535050459,"1711":4141.3699429768,"1712":3994.935735578,"1713":3850.1213926427,"1714":3704.984809197,"1715":3561.9112014478,"1716":3418.6450297434,"1717":3277.8768033461,"1718":3137.0464495106,"1719":2999.1391523437,"1720":2861.3004094445,"1721":2726.7982986062,"1722":2592.4951531889,"1723":2461.9290470624,"1724":2331.6915322849,"1725":2205.5767156411,"1726":2079.9188194742,"1727":1958.753009878,"1728":1838.1706466303,"1729":1722.4320301769,"1730":1607.4010833473,"1731":1497.5464274798,"1732":1388.5208716627,"1733":1284.9837225201,"1734":1182.3938317753,"1735":1085.5828031836,"1736":989.833452941,"1737":900.1306138013,"1738":811.5996830027,"1739":729.3590494396,"1740":648.3959292229,"1741":573.942067445,"1742":500.8662822572,"1743":434.4930276422,"1744":369.5929742222,"1745":311.5622716831,"1746":255.0940808916,"1747":205.6349510996,"1748":157.821477088,"1749":117.1291126326,"1750":78.1590533389,"1751":46.394048392,"1752":16.4212008364,"1753":-6.2910826394,"1754":-27.1484293208,"1755":-40.718356319,"1756":-52.3778877077,"1757":-56.7519039259,"1758":-59.1676051781,"1759":-54.3284483726,"1760":-47.4907858193,"1761":-33.4575539312,"1762":-17.3935127026,"1763":5.7784115131,"1764":31.0054339852,"1765":63.2246015297,"1766":97.5150457129,"1767":138.6543022515,"1768":181.8728394283,"1769":231.7698271102,"1770":283.745893459,"1771":342.2036916696,"1772":402.7321614022,"1773":469.5200639188,"1774":538.3620588179,"1775":613.2164843018,"1776":690.1003164645,"1777":772.725848696,"1778":857.3480927616,"1779":947.418646513,"1780":1039.4453371444,"1781":1136.6054450893,"1782":1235.6733949817,"1783":1339.5396105624,"1784":1445.2578437773,"1785":1555.4202544927,"1786":1667.3715494618,"1787":1783.3953946052,"1788":1901.1379307129,"1789":2022.5653171739,"1790":2145.6344184215,"1791":2271.9861277807,"1792":2399.8960966505,"1793":2530.6734764356,"1794":2662.919510717,"1795":2797.6064423565,"1796":2933.6666273698,"1797":3071.731563077,"1798":3211.0689314318,"1799":3351.9669919815,"1800":3494.0316427422,"1801":3637.2067678594,"1802":3781.4380367526,"1803":3926.3251796291,"1804":4072.1538517294,"1805":4218.1812090049,"1806":4365.0317651664,"1807":4511.6230335753,"1808":4658.9159217423,"1809":4805.4925725194,"1810":4952.6464949541,"1811":5098.6300570232,"1812":5245.064264422,"1813":5389.8786073573,"1814":5535.015190803,"1815":5678.0887985522,"1816":5821.3549702566,"1817":5962.1231966539,"1818":6102.9535504894,"1819":6240.8608476563,"1820":6378.6995905555,"1821":6513.2017013938,"1822":6647.5048468111,"1823":6778.0709529376,"1824":6908.3084677151,"1825":7034.4232843589,"1826":7160.0811805258,"1827":7281.246990122,"1828":7401.8293533696,"1829":7517.5679698231,"1830":7632.5989166527,"1831":7742.4535725202,"1832":7851.4791283373,"1833":7955.0162774799,"1834":8057.6061682247,"1835":8154.4171968164,"1836":8250.166547059,"1837":8339.8693861987,"1838":8428.4003169973,"1839":8510.6409505604,"1840":8591.6040707771,"1841":8666.057932555,"1842":8739.1337177428,"1843":8805.5069723578,"1844":8870.4070257778,"1845":8928.4377283169,"1846":8984.9059191084,"1847":9034.3650489004,"1848":9082.178522912,"1849":9122.8708873674,"1850":9161.8409466611,"1851":9193.605951608,"1852":9223.5787991636,"1853":9246.2910826394,"1854":9267.1484293208,"1855":9280.718356319,"1856":9292.3778877076,"1857":9296.7519039259,"1858":9299.1676051781,"1859":9294.3284483726,"1860":9287.4907858193,"1861":9273.4575539312,"1862":9257.3935127026,"1863":9234.221588487,"1864":9208.9945660148,"1865":9176.7753984703,"1866":9142.4849542871,"1867":9101.3456977485,"1868":9058.1271605717,"1869":9008.2301728898,"1870":8956.254106541,"1871":8897.7963083304,"1872":8837.2678385978,"1873":8770.4799360812,"1874":8701.6379411821,"1875":8626.7835156982,"1876":8549.8996835355,"1877":8467.274151304,"1878":8382.6519072384,"1879":8292.581353487,"1880":8200.5546628555,"1881":8103.3945549107,"1882":8004.3266050183,"1883":7900.4603894376,"1884":7794.7421562227,"1885":7684.5797455073,"1886":7572.6284505382,"1887":7456.6046053948,"1888":7338.8620692871,"1889":7217.4346828261,"1890":7094.3655815785,"1891":6968.0138722193,"1892":6840.1039033495,"1893":6709.3265235644,"1894":6577.080489283,"1895":6442.3935576435,"1896":6306.3333726302,"1897":6168.268436923,"1898":6028.9310685682,"1899":5888.0330080185,"1900":5745.9683572578,"1901":5602.7932321406,"1902":5458.5619632474,"1903":5313.6748203709,"1904":5167.8461482706,"1905":5021.8187909951,"1906":4874.9682348336,"1907":4728.3769664247,"1908":4581.0840782577,"1909":4434.5074274806,"1910":4287.3535050459,"1911":4141.3699429768,"1912":3994.935735578,"1913":3850.1213926427,"1914":3704.984809197,"1915":3561.9112014478,"1916":3418.6450297434,"1917":3277.8768033461,"1918":3137.0464495106,"1919":2999.1391523437,"1920":2861.3004094445,"1921":2726.7982986062,"1922":2592.4951531889,"1923":2461.9290470624,"1924":2331.6915322849,"1925":2205.5767156411,"1926":2079.9188194742,"1927":1958.753009878,"1928":1838.1706466303,"1929":1722.4320301769,"1930":1607.4010833473,"1931":1497.5464274798,"1932":1388.5208716627,"1933":1284.9837225201,"1934":1182.3938317753,"1935":1085.5828031836,"1936":989.833452941,"1937":900.1306138013,"1938":811.5996830027,"1939":729.3590494396,"1940":648.3959292229,"1941":573.942067445,"1942":500.8662822572,"1943":434.4930276422,"1944":369.5929742222,"1945":311.5622716831,"1946":255.0940808916,"1947":205.6349510996,"1948":157.821477088,"1949":117.1291126326,"1950":78.1590533389,"1951":46.394048392,"1952":16.4212008364,"1953":-6.2910826394,"1954":-27.1484293208,"1955":-40.718356319,"1956":-52.3778877077,"1957":-56.7519039259,"1958":-59.1676051781,"1959":-54.3284483726,"1960":-47.4907858193,"1961":-33.4575539312,"1962":-17.3935127026,"1963":5.7784115131,"1964":31.0054339852,"1965":63.2246015297,"1966":97.5150457129,"1967":138.6543022515,"1968":181.8728394283,"1969":231.7698271102,"1970":283.745893459,"1971":342.2036916696,"1972":402.7321614022,"1973":469.5200639188,"1974":538.3620588179,"1975":613.2164843018,"1976":690.1003164645,"1977":772.725848696,"1978":857.3480927616,"1979":947.418646513,"1980":1039.4453371444,"1981":1136.6054450893,"1982":1235.6733949817,"1983":1339.5396105624,"1984":1445.2578437773,"1985":1555.4202544927,"1986":1667.3715494618,"1987":1783.3953946052,"1988":1901.1379307129,"1989":2022.5653171739,"1990":2145.6344184215,"1991":2271.9861277807,"1992":2399.8960966505,"1993":2530.6734764356,"1994":2662.919510717,"1995":2797.6064423565,"1996":2933.6666273698,"1997":3071.731563077,"1998":3211.0689314318,"1999":3351.9669919815,"2000":3494.0316427422},"pressure_out":{"0":4400.0000020489,"1":4480.5268045074,"2":4564.6278696844,"3":4651.9969984662,"4":4742.726139727,"5":4836.0235821984,"6":4932.3379854693,"7":5030.5725667047,"8":5131.4939252043,"9":5233.7100545083,"10":5338.29965854,"11":5443.5799236145,"12":5550.9360607329,"13":5658.3998777294,"14":5767.6564601506,"15":5876.4588984665,"16":5986.7844495699,"17":6096.1153526121,"18":6206.7122798624,"19":6315.7956494413,"20":6425.899765196,"21":6533.9933740472,"22":6642.8736297705,"23":6749.2688291945,"24":6856.227231263,"25":6960.2489233835,"26":7064.6206010815,"27":7165.6273475472,"28":7266.780746079,"29":7364.1649871895,"30":7461.5021606037,"31":7554.6905208374,"32":7647.6475016813,"33":7736.1011594699,"34":7824.1483837859,"35":7907.3634851176,"36":7990.0062530718,"37":8067.5143501388,"38":8144.2933041482,"39":8215.6618017879,"40":8286.1534054962,"41":8350.9859996204,"42":8414.8030024752,"43":8472.7400960525,"44":8529.5319695628,"45":8580.2510530149,"46":8629.7043860339,"47":8672.9203701428,"48":8714.7592117189,"49":8750.2247023195,"50":8784.2108418116,"51":8811.7163466688,"52":8837.6495219177,"53":8857.0235812671,"54":8874.7416066744,"55":8885.850839938,"56":8895.2296473126,"57":8897.9787094983,"58":8898.9322955107,"59":8893.2637377589,"60":8885.7440127798,"61":8871.6380424429,"62":8855.6345764514,"63":8833.1087129808,"64":8808.6483750985,"65":8777.7569988681,"66":8744.9034879213,"67":8705.737279943,"68":8664.5905442657,"69":8617.2758155467,"70":8567.9713610215,"71":8512.6692710775,"72":8455.3773571669,"73":8392.283021942,"74":8327.2077461861,"75":8256.5492363354,"76":8183.927508491,"77":8105.9647396603,"78":8026.0651473229,"79":7941.0886647038,"80":7854.210232892,"81":7762.5398929523,"82":7669.0107407439,"83":7570.9942936151,"84":7471.1701915018,"85":7367.1817680645,"86":7261.4446002388,"87":7151.8831084697,"88":7040.6392447749,"89":6925.9266804113,"90":6809.6052631689,"91":6690.1849402049,"92":6569.2360915842,"93":6445.5707985415,"94":6320.4637545552,"95":6193.0338428602,"96":6064.2550204531,"97":5933.5564316119,"98":5801.6074356597,"99":5668.1496742456,"100":5533.5452515939,"101":5397.8493113471,"102":5261.115259302,"103":5123.7115098951,"104":4985.3825468172,"105":4846.8085890546,"106":4707.4261949167,"107":4568.2246923145,"108":4428.3349272535,"109":4289.0514220899,"110":4149.2027311155,"111":4010.3834531468,"112":3871.1244652696,"113":3733.3141413767,"114":3595.1914714753,"115":3458.9311445379,"116":3322.4872063111,"117":3188.3120716043,"118":3054.0829099405,"119":2922.5201773081,"120":2791.0333283573,"121":2662.6001183419,"122":2534.3725054904,"123":2409.5737874908,"124":2285.1096613219,"125":2164.4362417056,"126":2044.225171875,"127":1928.1517397939,"128":1812.6666665659,"129":1701.6499050163,"130":1591.3452579845,"131":1485.8220274106,"132":1381.1319186812,"133":1281.5175201485,"134":1182.854018982,"135":1089.5405436487,"136":997.2920392474,"137":910.6468105317,"138":825.176469326,"139":745.5405838125,"140":667.1849072336,"141":594.8718799839,"142":523.9393683253,"143":459.2338878526,"144":396.0038154125,"145":339.1606131564,"146":283.8819194217,"147":235.1247581157,"148":188.0150592954,"149":147.5358441555,"150":108.7805689061,"151":76.7385850911,"152":46.4902377898,"153":23.0115170907,"154":1.3890715141,"155":-13.4341092741,"156":-26.3456835173,"157":-32.4551706054,"158":-36.6052470584,"159":-33.9772426397,"160":-29.3497410984,"161":-17.9949004072,"162":-4.6083533676,"163":15.4282545306,"164":37.520772309,"165":66.1598398144,"166":96.8709183254,"167":133.9992099687,"168":173.2074467143,"169":218.678243941,"170":266.2287210499,"171":319.8623993473,"172":375.5672931536,"173":437.1520292236,"174":500.7913498821,"175":570.0839560524,"176":641.4064142554,"177":718.1332968192,"178":796.8572941788,"179":880.7155318683,"180":966.5302710425,"181":1057.1888093658,"182":1149.7555195353,"183":1246.8564762525,"184":1345.8097491004,"185":1448.9698256759,"186":1553.9190565882,"187":1662.7310500394,"188":1773.2619788292,"189":1887.2963879968,"190":2002.9727330639,"191":2121.7794529564,"192":2242.1446324253,"193":2365.254729944,"194":2489.8336629812,"195":2616.7612270119,"196":2745.0622082074,"197":2875.3062667706,"198":3006.8229061814,"199":3139.8694030704,"200":3274.0826242635,"201":3409.4064473647,"202":3545.7865355709,"203":3682.8535888576,"204":3820.8622811479,"205":3959.1315921648,"206":4098.2242013978,"207":4237.1500559182,"208":4376.777620072,"209":4515.8117154978,"210":4655.4231639014,"211":4794.0167729052,"212":4933.0611008182,"213":5070.6672366863,"214":5208.5956796406,"215":5344.6712547691,"216":5480.9394540913,"217":5614.9474231138,"218":5749.0175740787,"219":5880.4290531663,"220":6011.7720273023,"221":6140.0683812703,"222":6268.1658144391,"223":6392.840703422,"224":6517.1870414303,"225":6637.7484190459,"226":6757.8529127158,"227":6873.8249678316,"228":6989.2136096529,"229":7100.1386440909,"230":7210.3560388128,"231":7315.7962735803,"232":7420.4074353582,"233":7519.9467382755,"234":7618.5388072799,"235":7711.7843351869,"236":7803.9682068988,"237":7890.5519559566,"238":7975.9638167187,"239":8055.5440746897,"240":8133.8468374518,"241":8206.1095322244,"242":8276.9941668178,"243":8341.6541058529,"244":8404.8408585419,"245":8461.6428543512,"246":8516.8823518482,"247":8565.6022290598,"248":8612.6764626474,"249":8653.1219426851,"250":8691.8451285604,"251":8723.8565884446,"252":8754.0759008899,"253":8777.527003165,"254":8799.1231776506,"255":8813.9213689528,"256":8826.8091727933,"257":8832.8960490905,"258":8837.024617794,"259":8834.3761548565,"260":8829.7291928418,"261":8818.355841034,"262":8804.9516859213,"263":8784.8983289395,"264":8762.7898791624,"265":8734.1356568825,"266":8703.4101629052,"267":8666.2681590375,"268":8627.0468790026,"269":8581.5636747884,"270":8534.0013959528,"271":8480.3564916622,"272":8424.6409195099,"273":8363.0460260247,"274":8299.3970434688,"275":8230.0952467458,"276":8158.7640463404,"277":8082.0288480527,"278":8003.296940642,"279":7919.4311787844,"280":7833.6092824997,"281":7742.9439362175,"282":7650.3707502075,"283":7553.2636335662,"284":7454.304501299,"285":7351.1388511493,"286":7246.1843185631,"287":7137.3672820741,"288":7026.8315562653,"289":6912.7925840958,"290":6797.1118986275,"291":6678.3010500754,"292":6557.9319433587,"293":6434.8181101785,"294":6310.2356237198,"295":6183.304679617,"296":6055.0004832425,"297":5924.7533663491,"298":5793.2338178052,"299":5660.1845537018,"300":5525.9687002896,"301":5390.6423733791,"302":5254.2599035091,"303":5117.1905847454,"304":4979.1797374967,"305":4840.9083766486,"306":4701.813817583,"307":4562.8861083504,"308":4423.2567799644,"309":4284.2210063724,"310":4144.6079616699,"311":4006.012834241,"312":3866.9670619775,"313":3729.3595522198,"314":3591.4298023995,"315":3455.352984159,"316":3319.0836023686,"317":3185.0745085633,"318":3051.0032876867,"319":2919.5907908819,"320":2788.2468486768,"321":2659.9495738659,"322":2531.8512647765,"323":2407.1755426037,"324":2282.8284120517,"325":2162.2662805558,"326":2042.1610697827,"327":1926.1883325469,"328":1810.7990418818,"329":1699.8733902533,"330":1589.6554084497,"331":1484.2146152407,"332":1379.6029222642,"333":1280.0631140622,"334":1181.4705644228,"335":1088.2245793282,"336":996.0402727319,"337":909.456110005,"338":824.0438557543,"339":744.4632234905,"340":666.1601046951,"341":593.8970712579,"342":523.0121145212,"343":458.3518690582,"344":395.16482489,"345":338.3625518211,"346":283.1227905902,"347":234.4026625107,"348":187.3281902934,"349":146.8824832673,"350":108.159081477,"351":76.147416211,"352":45.9279084032,"353":22.4766202961,"354":0.8802690441,"355":-13.9180904011,"356":-26.806054182,"357":-32.893082617,"358":-37.0217960365,"359":-34.3734707552,"360":-29.7266396813,"361":-18.3534124265,"362":-4.9493757906,"363":15.1038684941,"364":37.2122110719,"365":65.8663313822,"366":96.5917283643,"367":133.7336399686,"368":172.954832241,"369":218.4379529741,"370":266.0001524013,"371":319.6449811572,"372":375.3604814596,"373":436.9553066002,"374":500.6042241455,"375":569.9059590294,"376":641.2371006124,"377":717.9722429474,"378":796.7040971349,"379":880.5698083658,"380":966.3916564934,"381":1057.0569569679,"382":1149.630099405,"383":1246.7371745989,"384":1345.6962674407,"385":1448.8618800883,"386":1553.8163770019,"387":1662.6333795585,"388":1773.1690730904,"389":1887.2080145575,"390":2002.8886708212,"391":2121.6994915934,"392":2242.0685718854,"393":2365.18237993,"394":2489.7648424794,"395":2616.6957638391,"396":2744.9999385801,"397":2875.2470348954,"398":3006.7665638651,"399":3139.8158093491,"400":3274.0316450503,"401":3409.3579551138,"402":3545.7404089586,"403":3682.8097124789,"404":3820.8205452279,"405":3959.0918922836,"406":4098.1864382296,"407":4237.1141349828,"408":4376.743451498,"409":4515.7792137984,"410":4655.3922477601,"411":4793.9873649722,"412":4933.0331275174,"413":5070.6406280307,"414":5208.5703690577,"415":5344.6471789338,"416":5480.916552768,"417":5614.9256390051,"418":5748.9968526828,"419":5880.4093426398,"420":6011.7532783312,"421":6140.0505469462,"422":6268.1488501419,"423":6392.8245667085,"424":6517.1716919279,"425":6637.7338183512,"426":6757.8390242992,"427":6873.8117569454,"428":6989.2010432447,"429":7100.1266907204,"430":7210.3446685738,"431":7315.7854580252,"432":7420.3971474276,"433":7519.9369522297,"434":7618.5294986351,"435":7711.7754806536,"436":7803.9597843238,"437":7890.5439442672,"438":7975.9561958703,"439":8055.5368256157,"440":8133.8399420155,"441":8206.102973174,"442":8276.9879277432,"443":8341.6481711443,"444":8404.8352133513,"445":8461.6374845547,"446":8516.877244011,"447":8565.5973704025,"448":8612.6718410142,"449":8653.1175465129,"450":8691.8409468505,"451":8723.8526107346,"452":8754.0721172278,"453":8777.5234040845,"454":8799.1197541472,"455":8813.918112461,"456":8826.8060751657,"457":8832.8931025771,"458":8837.0218150229,"459":8834.3734888154,"460":8829.7266568604,"461":8818.3534287675,"462":8804.9493913344,"463":8784.8961462915,"464":8762.7878029923,"465":8734.133681996,"466":8703.4082843612,"467":8666.2663721362,"468":8627.0451792732,"469":8581.5620579784,"470":8533.9998580169,"471":8480.3550287528,"472":8424.6395279669,"473":8363.0447023665,"474":8299.3957843837,"475":8230.0940490837,"476":8158.7629071049,"477":8082.0277643934,"478":8003.2959098479,"479":7919.4301982763,"480":7833.6083498247,"481":7742.9430490419,"482":7650.3699063117,"483":7553.2628308389,"484":7454.3037377318,"485":7351.1381248319,"486":7246.1836276783,"487":7137.3666248933,"488":7026.8309311443,"489":6912.7919894706,"490":6797.1113330104,"491":6678.3005120512,"492":6557.9314315815,"493":6434.8176233677,"494":6310.2351606575,"495":6183.3042391447,"496":6055.0000642581,"497":5924.7529678044,"498":5793.233438703,"499":5660.1841930937,"500":5525.9683572734,"501":5390.6420470965,"502":5254.2595931438,"503":5117.190289521,"504":4979.1794566744,"505":4840.9081095259,"506":4701.8135634916,"507":4562.8858666545,"508":4423.2565500594,"509":4284.220787683,"510":4144.6077536491,"511":4006.0126363682,"512":3866.9668737577,"513":3729.3593731821,"514":3591.429632096,"515":3455.3528221636,"516":3319.0834482759,"517":3185.0743619878,"518":3051.0031482617,"519":2919.5906582586,"520":2788.2467225234,"521":2659.9494538667,"522":2531.8511506313,"523":2407.175434027,"524":2282.8283087717,"525":2162.2661823143,"526":2042.1609763338,"527":1926.1882436567,"528":1810.7989573281,"529":1699.8733098244,"530":1589.6553319445,"531":1484.2145424677,"532":1379.6028530414,"533":1280.0630482163,"534":1181.4705017892,"535":1088.22451975,"536":996.0402160601,"537":909.456056098,"538":824.0438044771,"539":744.4631747147,"540":666.1600582988,"541":593.897027125,"542":523.0120725412,"543":458.3518291262,"544":395.1647869061,"545":338.3625156901,"546":283.1227562218,"547":234.4026298189,"548":187.3281591965,"549":146.8824536875,"550":108.1590533401,"551":76.1473894467,"552":45.9278829447,"553":22.4765960795,"554":0.8802460089,"555":-13.9181123126,"556":-26.8060750245,"557":-32.8931024428,"558":-37.0218148951,"559":-34.3734886938,"560":-29.7266567448,"561":-18.3534286575,"562":-4.9493912298,"563":15.103853808,"564":37.2121971023,"565":65.8663180941,"566":96.5917157244,"567":133.7336279453,"568":172.9548208043,"569":218.4379420953,"570":266.0001420532,"571":319.6449713139,"572":375.3604720966,"573":436.9552976939,"574":500.6042156737,"575":569.9059509709,"576":641.237092947,"577":717.9722356559,"578":796.7040901991,"579":880.5698017684,"580":966.3916502179,"581":1057.0569509985,"582":1149.6300937268,"583":1246.7371691977,"584":1345.696262303,"585":1448.8618752012,"586":1553.8163723532,"587":1662.6333751366,"588":1773.1690688842,"589":1887.2080105565,"590":2002.8886670154,"591":2121.6994879733,"592":2242.0685684419,"593":2365.1823766545,"594":2489.7648393636,"595":2616.6957608754,"596":2744.999935761,"597":2875.2470322138,"598":3006.7665613143,"599":3139.8158069227,"600":3274.0316427423,"601":3409.3579529183,"602":3545.7404068703,"603":3682.8097104925,"604":3820.8205433384,"605":3959.0918904863,"606":4098.18643652,"607":4237.1141333565,"608":4376.7434499511,"609":4515.7792123269,"610":4655.3922463604,"611":4793.9873636408,"612":4933.0331262509,"613":5070.6406268261,"614":5208.5703679118,"615":5344.6471778438,"616":5480.9165517312,"617":5614.9256380189,"618":5748.9968517447,"619":5880.4093417474,"620":6011.7532774824,"621":6140.0505461387,"622":6268.1488493739,"623":6392.8245659779,"624":6517.171691233,"625":6637.7338176902,"626":6757.8390236705,"627":6873.8117563473,"628":6989.2010426757,"629":7100.1266901792,"630":7210.344668059,"631":7315.7854575356,"632":7420.3971469618,"633":7519.9369517867,"634":7618.5294982137,"635":7711.7754802527,"636":7803.9597839424,"637":7890.5439439045,"638":7975.9561955253,"639":8055.5368252875,"640":8133.8399417033,"641":8206.102972877,"642":8276.9879274607,"643":8341.6481708756,"644":8404.8352130957,"645":8461.6374843115,"646":8516.8772437798,"647":8565.5973701826,"648":8612.6718408049,"649":8653.1175463139,"650":8691.8409466611,"651":8723.8526105545,"652":8754.0721170565,"653":8777.5234039216,"654":8799.1197539922,"655":8813.9181123136,"656":8826.8060750255,"657":8832.8931024437,"658":8837.021814896,"659":8834.3734886947,"660":8829.7266567455,"661":8818.3534286583,"662":8804.9493912305,"663":8784.8961461927,"664":8762.7878028983,"665":8734.1336819065,"666":8703.4082842762,"667":8666.2663720553,"668":8627.0451791962,"669":8581.5620579052,"670":8533.9998579473,"671":8480.3550286865,"672":8424.6395279039,"673":8363.0447023065,"674":8299.3957843267,"675":8230.0940490295,"676":8158.7629070533,"677":8082.0277643444,"678":8003.2959098012,"679":7919.4301982319,"680":7833.6083497824,"681":7742.9430490017,"682":7650.3699062735,"683":7553.2628308026,"684":7454.3037376973,"685":7351.138124799,"686":7246.183627647,"687":7137.3666248636,"688":7026.830931116,"689":6912.7919894437,"690":6797.1113329848,"691":6678.3005120269,"692":6557.9314315583,"693":6434.8176233456,"694":6310.2351606365,"695":6183.3042391248,"696":6055.0000642392,"697":5924.7529677863,"698":5793.2334386858,"699":5660.1841930774,"700":5525.9683572579,"701":5390.6420470818,"702":5254.2595931298,"703":5117.1902895076,"704":4979.1794566617,"705":4840.9081095138,"706":4701.8135634801,"707":4562.8858666436,"708":4423.256550049,"709":4284.2207876731,"710":4144.6077536397,"711":4006.0126363592,"712":3866.9668737492,"713":3729.359373174,"714":3591.4296320883,"715":3455.3528221562,"716":3319.0834482689,"717":3185.0743619812,"718":3051.0031482554,"719":2919.5906582526,"720":2788.2467225177,"721":2659.9494538613,"722":2531.8511506261,"723":2407.1754340221,"724":2282.8283087671,"725":2162.2661823099,"726":2042.1609763296,"727":1926.1882436527,"728":1810.7989573243,"729":1699.8733098208,"730":1589.655331941,"731":1484.2145424644,"732":1379.6028530382,"733":1280.0630482133,"734":1181.4705017863,"735":1088.2245197473,"736":996.0402160576,"737":909.4560560955,"738":824.0438044748,"739":744.4631747125,"740":666.1600582967,"741":593.897027123,"742":523.0120725393,"743":458.3518291244,"744":395.1647869043,"745":338.3625156885,"746":283.1227562203,"747":234.4026298175,"748":187.3281591951,"749":146.8824536861,"750":108.1590533389,"751":76.1473894455,"752":45.9278829435,"753":22.4765960784,"754":0.8802460078,"755":-13.9181123136,"756":-26.8060750255,"757":-32.8931024437,"758":-37.021814896,"759":-34.3734886946,"760":-29.7266567455,"761":-18.3534286583,"762":-4.9493912305,"763":15.1038538073,"764":37.2121971017,"765":65.8663180935,"766":96.5917157238,"767":133.7336279447,"768":172.9548208038,"769":218.4379420948,"770":266.0001420527,"771":319.6449713135,"772":375.3604720961,"773":436.9552976935,"774":500.6042156733,"775":569.9059509705,"776":641.2370929467,"777":717.9722356556,"778":796.7040901988,"779":880.5698017681,"780":966.3916502176,"781":1057.0569509983,"782":1149.6300937265,"783":1246.7371691974,"784":1345.6962623027,"785":1448.861875201,"786":1553.816372353,"787":1662.6333751364,"788":1773.169068884,"789":1887.2080105563,"790":2002.8886670152,"791":2121.6994879731,"792":2242.0685684417,"793":2365.1823766544,"794":2489.7648393635,"795":2616.6957608752,"796":2744.9999357608,"797":2875.2470322137,"798":3006.7665613142,"799":3139.8158069226,"800":3274.0316427421,"801":3409.3579529182,"802":3545.7404068702,"803":3682.8097104924,"804":3820.8205433383,"805":3959.0918904862,"806":4098.1864365199,"807":4237.1141333564,"808":4376.743449951,"809":4515.7792123269,"810":4655.3922463603,"811":4793.9873636407,"812":4933.0331262508,"813":5070.640626826,"814":5208.5703679117,"815":5344.6471778438,"816":5480.9165517311,"817":5614.9256380188,"818":5748.9968517446,"819":5880.4093417473,"820":6011.7532774823,"821":6140.0505461387,"822":6268.1488493738,"823":6392.8245659779,"824":6517.1716912329,"825":6637.7338176901,"826":6757.8390236704,"827":6873.8117563473,"828":6989.2010426757,"829":7100.1266901792,"830":7210.344668059,"831":7315.7854575356,"832":7420.3971469618,"833":7519.9369517867,"834":7618.5294982137,"835":7711.7754802527,"836":7803.9597839424,"837":7890.5439439045,"838":7975.9561955252,"839":8055.5368252875,"840":8133.8399417033,"841":8206.102972877,"842":8276.9879274607,"843":8341.6481708756,"844":8404.8352130957,"845":8461.6374843115,"846":8516.8772437797,"847":8565.5973701826,"848":8612.6718408049,"849":8653.1175463139,"850":8691.8409466611,"851":8723.8526105545,"852":8754.0721170565,"853":8777.5234039216,"854":8799.1197539922,"855":8813.9181123136,"856":8826.8060750255,"857":8832.8931024437,"858":8837.021814896,"859":8834.3734886946,"860":8829.7266567455,"861":8818.3534286583,"862":8804.9493912305,"863":8784.8961461927,"864":8762.7878028983,"865":8734.1336819065,"866":8703.4082842762,"867":8666.2663720553,"868":8627.0451791962,"869":8581.5620579052,"870":8533.9998579473,"871":8480.3550286865,"872":8424.6395279039,"873":8363.0447023065,"874":8299.3957843267,"875":8230.0940490295,"876":8158.7629070533,"877":8082.0277643444,"878":8003.2959098012,"879":7919.4301982319,"880":7833.6083497824,"881":7742.9430490018,"882":7650.3699062735,"883":7553.2628308026,"884":7454.3037376973,"885":7351.138124799,"886":7246.183627647,"887":7137.3666248636,"888":7026.830931116,"889":6912.7919894437,"890":6797.1113329848,"891":6678.3005120269,"892":6557.9314315583,"893":6434.8176233456,"894":6310.2351606365,"895":6183.3042391248,"896":6055.0000642392,"897":5924.7529677863,"898":5793.2334386858,"899":5660.1841930774,"900":5525.9683572579,"901":5390.6420470818,"902":5254.2595931298,"903":5117.1902895076,"904":4979.1794566617,"905":4840.9081095138,"906":4701.8135634801,"907":4562.8858666436,"908":4423.256550049,"909":4284.2207876731,"910":4144.6077536397,"911":4006.0126363593,"912":3866.9668737492,"913":3729.359373174,"914":3591.4296320883,"915":3455.3528221562,"916":3319.0834482689,"917":3185.0743619812,"918":3051.0031482554,"919":2919.5906582527,"920":2788.2467225177,"921":2659.9494538613,"922":2531.8511506262,"923":2407.1754340221,"924":2282.8283087671,"925":2162.2661823099,"926":2042.1609763296,"927":1926.1882436527,"928":1810.7989573243,"929":1699.8733098208,"930":1589.655331941,"931":1484.2145424644,"932":1379.6028530383,"933":1280.0630482133,"934":1181.4705017863,"935":1088.2245197473,"936":996.0402160576,"937":909.4560560956,"938":824.0438044748,"939":744.4631747125,"940":666.1600582967,"941":593.897027123,"942":523.0120725393,"943":458.3518291244,"944":395.1647869043,"945":338.3625156885,"946":283.1227562203,"947":234.4026298175,"948":187.3281591951,"949":146.8824536861,"950":108.1590533389,"951":76.1473894455,"952":45.9278829435,"953":22.4765960784,"954":0.8802460078,"955":-13.9181123136,"956":-26.8060750255,"957":-32.8931024437,"958":-37.021814896,"959":-34.3734886946,"960":-29.7266567455,"961":-18.3534286583,"962":-4.9493912305,"963":15.1038538073,"964":37.2121971017,"965":65.8663180935,"966":96.5917157238,"967":133.7336279447,"968":172.9548208038,"969":218.4379420948,"970":266.0001420527,"971":319.6449713135,"972":375.3604720961,"973":436.9552976935,"974":500.6042156733,"975":569.9059509705,"976":641.2370929467,"977":717.9722356556,"978":796.7040901988,"979":880.5698017681,"980":966.3916502176,"981":1057.0569509982,"982":1149.6300937265,"983":1246.7371691974,"984":1345.6962623027,"985":1448.861875201,"986":1553.816372353,"987":1662.6333751364,"988":1773.169068884,"989":1887.2080105563,"990":2002.8886670152,"991":2121.6994879731,"992":2242.0685684417,"993":2365.1823766544,"994":2489.7648393635,"995":2616.6957608752,"996":2744.9999357609,"997":2875.2470322137,"998":3006.7665613142,"999":3139.8158069226,"1000":3274.0316427421,"1001":3409.3579529182,"1002":3545.7404068702,"1003":3682.8097104924,"1004":3820.8205433383,"1005":3959.0918904862,"1006":4098.1864365199,"1007":4237.1141333564,"1008":4376.743449951,"1009":4515.7792123269,"1010":4655.3922463603,"1011":4793.9873636407,"1012":4933.0331262508,"1013":5070.640626826,"1014":5208.5703679117,"1015":5344.6471778438,"1016":5480.9165517311,"1017":5614.9256380188,"1018":5748.9968517446,"1019":5880.4093417473,"1020":6011.7532774823,"1021":6140.0505461387,"1022":6268.1488493738,"1023":6392.8245659779,"1024":6517.1716912329,"1025":6637.7338176901,"1026":6757.8390236704,"1027":6873.8117563473,"1028":6989.2010426757,"1029":7100.1266901792,"1030":7210.344668059,"1031":7315.7854575356,"1032":7420.3971469617,"1033":7519.9369517867,"1034":7618.5294982137,"1035":7711.7754802527,"1036":7803.9597839424,"1037":7890.5439439044,"1038":7975.9561955252,"1039":8055.5368252875,"1040":8133.8399417033,"1041":8206.102972877,"1042":8276.9879274607,"1043":8341.6481708756,"1044":8404.8352130957,"1045":8461.6374843115,"1046":8516.8772437797,"1047":8565.5973701825,"1048":8612.6718408049,"1049":8653.1175463139,"1050":8691.8409466611,"1051":8723.8526105545,"1052":8754.0721170565,"1053":8777.5234039216,"1054":8799.1197539922,"1055":8813.9181123136,"1056":8826.8060750255,"1057":8832.8931024437,"1058":8837.021814896,"1059":8834.3734886946,"1060":8829.7266567455,"1061":8818.3534286583,"1062":8804.9493912305,"1063":8784.8961461927,"1064":8762.7878028983,"1065":8734.1336819065,"1066":8703.4082842762,"1067":8666.2663720553,"1068":8627.0451791962,"1069":8581.5620579052,"1070":8533.9998579473,"1071":8480.3550286865,"1072":8424.6395279039,"1073":8363.0447023065,"1074":8299.3957843267,"1075":8230.0940490295,"1076":8158.7629070533,"1077":8082.0277643444,"1078":8003.2959098012,"1079":7919.4301982319,"1080":7833.6083497824,"1081":7742.9430490018,"1082":7650.3699062735,"1083":7553.2628308026,"1084":7454.3037376973,"1085":7351.138124799,"1086":7246.183627647,"1087":7137.3666248636,"1088":7026.830931116,"1089":6912.7919894437,"1090":6797.1113329848,"1091":6678.3005120269,"1092":6557.9314315583,"1093":6434.8176233456,"1094":6310.2351606365,"1095":6183.3042391248,"1096":6055.0000642392,"1097":5924.7529677863,"1098":5793.2334386858,"1099":5660.1841930774,"1100":5525.9683572579,"1101":5390.6420470818,"1102":5254.2595931298,"1103":5117.1902895076,"1104":4979.1794566617,"1105":4840.9081095138,"1106":4701.8135634801,"1107":4562.8858666436,"1108":4423.256550049,"1109":4284.2207876731,"1110":4144.6077536397,"1111":4006.0126363593,"1112":3866.9668737492,"1113":3729.359373174,"1114":3591.4296320883,"1115":3455.3528221562,"1116":3319.0834482689,"1117":3185.0743619812,"1118":3051.0031482554,"1119":2919.5906582527,"1120":2788.2467225177,"1121":2659.9494538613,"1122":2531.8511506262,"1123":2407.1754340221,"1124":2282.8283087671,"1125":2162.2661823099,"1126":2042.1609763296,"1127":1926.1882436527,"1128":1810.7989573243,"1129":1699.8733098208,"1130":1589.655331941,"1131":1484.2145424644,"1132":1379.6028530383,"1133":1280.0630482133,"1134":1181.4705017863,"1135":1088.2245197473,"1136":996.0402160576,"1137":909.4560560956,"1138":824.0438044748,"1139":744.4631747125,"1140":666.1600582967,"1141":593.897027123,"1142":523.0120725393,"1143":458.3518291244,"1144":395.1647869043,"1145":338.3625156885,"1146":283.1227562203,"1147":234.4026298175,"1148":187.3281591951,"1149":146.8824536861,"1150":108.1590533389,"1151":76.1473894455,"1152":45.9278829435,"1153":22.4765960784,"1154":0.8802460078,"1155":-13.9181123136,"1156":-26.8060750255,"1157":-32.8931024437,"1158":-37.021814896,"1159":-34.3734886946,"1160":-29.7266567455,"1161":-18.3534286583,"1162":-4.9493912305,"1163":15.1038538073,"1164":37.2121971017,"1165":65.8663180935,"1166":96.5917157238,"1167":133.7336279447,"1168":172.9548208038,"1169":218.4379420948,"1170":266.0001420527,"1171":319.6449713135,"1172":375.3604720961,"1173":436.9552976935,"1174":500.6042156733,"1175":569.9059509705,"1176":641.2370929467,"1177":717.9722356556,"1178":796.7040901988,"1179":880.5698017681,"1180":966.3916502176,"1181":1057.0569509982,"1182":1149.6300937265,"1183":1246.7371691974,"1184":1345.6962623027,"1185":1448.861875201,"1186":1553.816372353,"1187":1662.6333751364,"1188":1773.169068884,"1189":1887.2080105563,"1190":2002.8886670152,"1191":2121.6994879731,"1192":2242.0685684417,"1193":2365.1823766544,"1194":2489.7648393635,"1195":2616.6957608752,"1196":2744.9999357609,"1197":2875.2470322137,"1198":3006.7665613142,"1199":3139.8158069226,"1200":3274.0316427421,"1201":3409.3579529182,"1202":3545.7404068702,"1203":3682.8097104924,"1204":3820.8205433383,"1205":3959.0918904862,"1206":4098.1864365199,"1207":4237.1141333564,"1208":4376.743449951,"1209":4515.7792123269,"1210":4655.3922463603,"1211":4793.9873636407,"1212":4933.0331262508,"1213":5070.640626826,"1214":5208.5703679117,"1215":5344.6471778438,"1216":5480.9165517311,"1217":5614.9256380188,"1218":5748.9968517446,"1219":5880.4093417473,"1220":6011.7532774823,"1221":6140.0505461387,"1222":6268.1488493738,"1223":6392.8245659779,"1224":6517.1716912329,"1225":6637.7338176901,"1226":6757.8390236704,"1227":6873.8117563473,"1228":6989.2010426757,"1229":7100.1266901792,"1230":7210.344668059,"1231":7315.7854575356,"1232":7420.3971469617,"1233":7519.9369517867,"1234":7618.5294982137,"1235":7711.7754802527,"1236":7803.9597839424,"1237":7890.5439439044,"1238":7975.9561955252,"1239":8055.5368252875,"1240":8133.8399417033,"1241":8206.102972877,"1242":8276.9879274607,"1243":8341.6481708756,"1244":8404.8352130957,"1245":8461.6374843115,"1246":8516.8772437797,"1247":8565.5973701825,"1248":8612.6718408049,"1249":8653.1175463139,"1250":8691.8409466611,"1251":8723.8526105545,"1252":8754.0721170565,"1253":8777.5234039216,"1254":8799.1197539922,"1255":8813.9181123136,"1256":8826.8060750255,"1257":8832.8931024437,"1258":8837.021814896,"1259":8834.3734886946,"1260":8829.7266567455,"1261":8818.3534286583,"1262":8804.9493912305,"1263":8784.8961461927,"1264":8762.7878028983,"1265":8734.1336819065,"1266":8703.4082842762,"1267":8666.2663720553,"1268":8627.0451791962,"1269":8581.5620579052,"1270":8533.9998579473,"1271":8480.3550286865,"1272":8424.6395279039,"1273":8363.0447023065,"1274":8299.3957843267,"1275":8230.0940490295,"1276":8158.7629070533,"1277":8082.0277643444,"1278":8003.2959098012,"1279":7919.4301982319,"1280":7833.6083497824,"1281":7742.9430490017,"1282":7650.3699062735,"1283":7553.2628308026,"1284":7454.3037376973,"1285":7351.138124799,"1286":7246.183627647,"1287":7137.3666248636,"1288":7026.830931116,"1289":6912.7919894437,"1290":6797.1113329848,"1291":6678.3005120269,"1292":6557.9314315583,"1293":6434.8176233456,"1294":6310.2351606365,"1295":6183.3042391248,"1296":6055.0000642391,"1297":5924.7529677863,"1298":5793.2334386858,"1299":5660.1841930774,"1300":5525.9683572579,"1301":5390.6420470818,"1302":5254.2595931298,"1303":5117.1902895076,"1304":4979.1794566617,"1305":4840.9081095138,"1306":4701.8135634801,"1307":4562.8858666436,"1308":4423.256550049,"1309":4284.2207876731,"1310":4144.6077536397,"1311":4006.0126363593,"1312":3866.9668737492,"1313":3729.359373174,"1314":3591.4296320883,"1315":3455.3528221562,"1316":3319.0834482689,"1317":3185.0743619812,"1318":3051.0031482554,"1319":2919.5906582527,"1320":2788.2467225177,"1321":2659.9494538613,"1322":2531.8511506262,"1323":2407.1754340221,"1324":2282.8283087671,"1325":2162.2661823099,"1326":2042.1609763296,"1327":1926.1882436527,"1328":1810.7989573243,"1329":1699.8733098208,"1330":1589.655331941,"1331":1484.2145424644,"1332":1379.6028530383,"1333":1280.0630482133,"1334":1181.4705017863,"1335":1088.2245197473,"1336":996.0402160576,"1337":909.4560560956,"1338":824.0438044748,"1339":744.4631747125,"1340":666.1600582967,"1341":593.897027123,"1342":523.0120725393,"1343":458.3518291244,"1344":395.1647869043,"1345":338.3625156885,"1346":283.1227562203,"1347":234.4026298175,"1348":187.3281591951,"1349":146.8824536861,"1350":108.1590533389,"1351":76.1473894455,"1352":45.9278829435,"1353":22.4765960784,"1354":0.8802460078,"1355":-13.9181123136,"1356":-26.8060750255,"1357":-32.8931024437,"1358":-37.021814896,"1359":-34.3734886946,"1360":-29.7266567455,"1361":-18.3534286583,"1362":-4.9493912305,"1363":15.1038538073,"1364":37.2121971017,"1365":65.8663180935,"1366":96.5917157238,"1367":133.7336279447,"1368":172.9548208038,"1369":218.4379420948,"1370":266.0001420527,"1371":319.6449713135,"1372":375.3604720961,"1373":436.9552976935,"1374":500.6042156733,"1375":569.9059509705,"1376":641.2370929467,"1377":717.9722356556,"1378":796.7040901988,"1379":880.5698017681,"1380":966.3916502176,"1381":1057.0569509983,"1382":1149.6300937265,"1383":1246.7371691974,"1384":1345.6962623027,"1385":1448.861875201,"1386":1553.816372353,"1387":1662.6333751364,"1388":1773.169068884,"1389":1887.2080105563,"1390":2002.8886670152,"1391":2121.6994879731,"1392":2242.0685684417,"1393":2365.1823766544,"1394":2489.7648393635,"1395":2616.6957608752,"1396":2744.9999357609,"1397":2875.2470322137,"1398":3006.7665613142,"1399":3139.8158069226,"1400":3274.0316427421,"1401":3409.3579529182,"1402":3545.7404068702,"1403":3682.8097104924,"1404":3820.8205433383,"1405":3959.0918904862,"1406":4098.1864365199,"1407":4237.1141333564,"1408":4376.743449951,"1409":4515.7792123269,"1410":4655.3922463603,"1411":4793.9873636407,"1412":4933.0331262508,"1413":5070.640626826,"1414":5208.5703679117,"1415":5344.6471778438,"1416":5480.9165517311,"1417":5614.9256380188,"1418":5748.9968517446,"1419":5880.4093417473,"1420":6011.7532774823,"1421":6140.0505461387,"1422":6268.1488493738,"1423":6392.8245659779,"1424":6517.1716912329,"1425":6637.7338176901,"1426":6757.8390236704,"1427":6873.8117563473,"1428":6989.2010426757,"1429":7100.1266901792,"1430":7210.344668059,"1431":7315.7854575356,"1432":7420.3971469617,"1433":7519.9369517867,"1434":7618.5294982137,"1435":7711.7754802527,"1436":7803.9597839424,"1437":7890.5439439044,"1438":7975.9561955252,"1439":8055.5368252875,"1440":8133.8399417033,"1441":8206.102972877,"1442":8276.9879274607,"1443":8341.6481708756,"1444":8404.8352130957,"1445":8461.6374843115,"1446":8516.8772437797,"1447":8565.5973701825,"1448":8612.6718408049,"1449":8653.1175463139,"1450":8691.8409466611,"1451":8723.8526105545,"1452":8754.0721170565,"1453":8777.5234039216,"1454":8799.1197539922,"1455":8813.9181123136,"1456":8826.8060750255,"1457":8832.8931024437,"1458":8837.021814896,"1459":8834.3734886946,"1460":8829.7266567455,"1461":8818.3534286583,"1462":8804.9493912305,"1463":8784.8961461927,"1464":8762.7878028983,"1465":8734.1336819065,"1466":8703.4082842762,"1467":8666.2663720553,"1468":8627.0451791962,"1469":8581.5620579052,"1470":8533.9998579473,"1471":8480.3550286865,"1472":8424.6395279039,"1473":8363.0447023065,"1474":8299.3957843267,"1475":8230.0940490295,"1476":8158.7629070533,"1477":8082.0277643444,"1478":8003.2959098012,"1479":7919.4301982319,"1480":7833.6083497824,"1481":7742.9430490017,"1482":7650.3699062735,"1483":7553.2628308026,"1484":7454.3037376973,"1485":7351.138124799,"1486":7246.183627647,"1487":7137.3666248636,"1488":7026.830931116,"1489":6912.7919894437,"1490":6797.1113329848,"1491":6678.3005120269,"1492":6557.9314315583,"1493":6434.8176233456,"1494":6310.2351606365,"1495":6183.3042391248,"1496":6055.0000642391,"1497":5924.7529677863,"1498":5793.2334386858,"1499":5660.1841930774,"1500":5525.9683572579,"1501":5390.6420470818,"1502":5254.2595931298,"1503":5117.1902895076,"1504":4979.1794566617,"1505":4840.9081095138,"1506":4701.8135634801,"1507":4562.8858666436,"1508":4423.256550049,"1509":4284.2207876731,"1510":4144.6077536397,"1511":4006.0126363593,"1512":3866.9668737492,"1513":3729.359373174,"1514":3591.4296320883,"1515":3455.3528221562,"1516":3319.0834482689,"1517":3185.0743619812,"1518":3051.0031482554,"1519":2919.5906582527,"1520":2788.2467225177,"1521":2659.9494538613,"1522":2531.8511506262,"1523":2407.1754340221,"1524":2282.8283087671,"1525":2162.2661823099,"1526":2042.1609763296,"1527":1926.1882436527,"1528":1810.7989573243,"1529":1699.8733098208,"1530":1589.655331941,"1531":1484.2145424644,"1532":1379.6028530383,"1533":1280.0630482133,"1534":1181.4705017863,"1535":1088.2245197473,"1536":996.0402160576,"1537":909.4560560956,"1538":824.0438044748,"1539":744.4631747125,"1540":666.1600582967,"1541":593.897027123,"1542":523.0120725393,"1543":458.3518291244,"1544":395.1647869043,"1545":338.3625156885,"1546":283.1227562203,"1547":234.4026298175,"1548":187.3281591951,"1549":146.8824536861,"1550":108.1590533389,"1551":76.1473894455,"1552":45.9278829435,"1553":22.4765960784,"1554":0.8802460078,"1555":-13.9181123136,"1556":-26.8060750255,"1557":-32.8931024437,"1558":-37.021814896,"1559":-34.3734886946,"1560":-29.7266567455,"1561":-18.3534286583,"1562":-4.9493912305,"1563":15.1038538073,"1564":37.2121971017,"1565":65.8663180935,"1566":96.5917157238,"1567":133.7336279447,"1568":172.9548208038,"1569":218.4379420948,"1570":266.0001420527,"1571":319.6449713135,"1572":375.3604720961,"1573":436.9552976935,"1574":500.6042156733,"1575":569.9059509705,"1576":641.2370929467,"1577":717.9722356556,"1578":796.7040901988,"1579":880.5698017681,"1580":966.3916502176,"1581":1057.0569509983,"1582":1149.6300937265,"1583":1246.7371691974,"1584":1345.6962623027,"1585":1448.861875201,"1586":1553.816372353,"1587":1662.6333751365,"1588":1773.169068884,"1589":1887.2080105563,"1590":2002.8886670152,"1591":2121.6994879731,"1592":2242.0685684417,"1593":2365.1823766544,"1594":2489.7648393635,"1595":2616.6957608752,"1596":2744.9999357609,"1597":2875.2470322137,"1598":3006.7665613142,"1599":3139.8158069226,"1600":3274.0316427421,"1601":3409.3579529183,"1602":3545.7404068702,"1603":3682.8097104924,"1604":3820.8205433383,"1605":3959.0918904862,"1606":4098.1864365199,"1607":4237.1141333564,"1608":4376.7434499511,"1609":4515.7792123269,"1610":4655.3922463603,"1611":4793.9873636408,"1612":4933.0331262508,"1613":5070.6406268261,"1614":5208.5703679117,"1615":5344.6471778438,"1616":5480.9165517311,"1617":5614.9256380189,"1618":5748.9968517446,"1619":5880.4093417474,"1620":6011.7532774824,"1621":6140.0505461387,"1622":6268.1488493739,"1623":6392.8245659779,"1624":6517.1716912329,"1625":6637.7338176902,"1626":6757.8390236704,"1627":6873.8117563473,"1628":6989.2010426757,"1629":7100.1266901792,"1630":7210.344668059,"1631":7315.7854575356,"1632":7420.3971469618,"1633":7519.9369517867,"1634":7618.5294982137,"1635":7711.7754802527,"1636":7803.9597839424,"1637":7890.5439439045,"1638":7975.9561955253,"1639":8055.5368252875,"1640":8133.8399417033,"1641":8206.102972877,"1642":8276.9879274607,"1643":8341.6481708756,"1644":8404.8352130957,"1645":8461.6374843115,"1646":8516.8772437797,"1647":8565.5973701826,"1648":8612.6718408049,"1649":8653.1175463139,"1650":8691.8409466611,"1651":8723.8526105545,"1652":8754.0721170565,"1653":8777.5234039216,"1654":8799.1197539922,"1655":8813.9181123136,"1656":8826.8060750255,"1657":8832.8931024437,"1658":8837.021814896,"1659":8834.3734886946,"1660":8829.7266567455,"1661":8818.3534286583,"1662":8804.9493912305,"1663":8784.8961461927,"1664":8762.7878028983,"1665":8734.1336819065,"1666":8703.4082842762,"1667":8666.2663720552,"1668":8627.0451791962,"1669":8581.5620579052,"1670":8533.9998579473,"1671":8480.3550286865,"1672":8424.6395279038,"1673":8363.0447023065,"1674":8299.3957843267,"1675":8230.0940490294,"1676":8158.7629070533,"1677":8082.0277643444,"1678":8003.2959098012,"1679":7919.4301982319,"1680":7833.6083497824,"1681":7742.9430490017,"1682":7650.3699062735,"1683":7553.2628308025,"1684":7454.3037376972,"1685":7351.138124799,"1686":7246.1836276469,"1687":7137.3666248636,"1688":7026.830931116,"1689":6912.7919894437,"1690":6797.1113329848,"1691":6678.3005120269,"1692":6557.9314315583,"1693":6434.8176233456,"1694":6310.2351606365,"1695":6183.3042391248,"1696":6055.0000642392,"1697":5924.7529677863,"1698":5793.2334386859,"1699":5660.1841930773,"1700":5525.9683572578,"1701":5390.6420470817,"1702":5254.2595931297,"1703":5117.1902895076,"1704":4979.1794566617,"1705":4840.9081095138,"1706":4701.8135634801,"1707":4562.8858666436,"1708":4423.2565500489,"1709":4284.2207876731,"1710":4144.6077536397,"1711":4006.0126363592,"1712":3866.9668737492,"1713":3729.3593731739,"1714":3591.4296320883,"1715":3455.3528221562,"1716":3319.0834482689,"1717":3185.0743619812,"1718":3051.0031482553,"1719":2919.5906582526,"1720":2788.2467225176,"1721":2659.9494538613,"1722":2531.8511506261,"1723":2407.1754340221,"1724":2282.8283087671,"1725":2162.2661823098,"1726":2042.1609763296,"1727":1926.1882436527,"1728":1810.7989573243,"1729":1699.8733098208,"1730":1589.655331941,"1731":1484.2145424644,"1732":1379.6028530382,"1733":1280.0630482133,"1734":1181.4705017863,"1735":1088.2245197473,"1736":996.0402160576,"1737":909.4560560955,"1738":824.0438044747,"1739":744.4631747125,"1740":666.1600582967,"1741":593.897027123,"1742":523.0120725393,"1743":458.3518291244,"1744":395.1647869043,"1745":338.3625156885,"1746":283.1227562203,"1747":234.4026298174,"1748":187.3281591951,"1749":146.8824536861,"1750":108.1590533389,"1751":76.1473894455,"1752":45.9278829435,"1753":22.4765960784,"1754":0.8802460078,"1755":-13.9181123136,"1756":-26.8060750255,"1757":-32.8931024437,"1758":-37.021814896,"1759":-34.3734886946,"1760":-29.7266567456,"1761":-18.3534286583,"1762":-4.9493912305,"1763":15.1038538073,"1764":37.2121971017,"1765":65.8663180935,"1766":96.5917157238,"1767":133.7336279447,"1768":172.9548208038,"1769":218.4379420948,"1770":266.0001420528,"1771":319.6449713135,"1772":375.3604720962,"1773":436.9552976934,"1774":500.6042156733,"1775":569.9059509706,"1776":641.2370929467,"1777":717.9722356556,"1778":796.7040901988,"1779":880.5698017681,"1780":966.3916502176,"1781":1057.0569509983,"1782":1149.6300937265,"1783":1246.7371691975,"1784":1345.6962623028,"1785":1448.861875201,"1786":1553.8163723531,"1787":1662.6333751364,"1788":1773.169068884,"1789":1887.2080105563,"1790":2002.8886670152,"1791":2121.6994879731,"1792":2242.0685684417,"1793":2365.1823766544,"1794":2489.7648393635,"1795":2616.6957608753,"1796":2744.9999357608,"1797":2875.2470322137,"1798":3006.7665613141,"1799":3139.8158069227,"1800":3274.0316427422,"1801":3409.3579529183,"1802":3545.7404068703,"1803":3682.8097104924,"1804":3820.8205433383,"1805":3959.0918904862,"1806":4098.1864365199,"1807":4237.1141333564,"1808":4376.7434499511,"1809":4515.7792123269,"1810":4655.3922463603,"1811":4793.9873636408,"1812":4933.0331262508,"1813":5070.6406268261,"1814":5208.5703679117,"1815":5344.6471778438,"1816":5480.9165517311,"1817":5614.9256380188,"1818":5748.9968517447,"1819":5880.4093417474,"1820":6011.7532774824,"1821":6140.0505461387,"1822":6268.1488493739,"1823":6392.8245659779,"1824":6517.1716912329,"1825":6637.7338176902,"1826":6757.8390236704,"1827":6873.8117563473,"1828":6989.2010426757,"1829":7100.1266901792,"1830":7210.344668059,"1831":7315.7854575356,"1832":7420.3971469618,"1833":7519.9369517867,"1834":7618.5294982137,"1835":7711.7754802527,"1836":7803.9597839424,"1837":7890.5439439045,"1838":7975.9561955253,"1839":8055.5368252875,"1840":8133.8399417033,"1841":8206.102972877,"1842":8276.9879274607,"1843":8341.6481708756,"1844":8404.8352130957,"1845":8461.6374843115,"1846":8516.8772437797,"1847":8565.5973701826,"1848":8612.6718408049,"1849":8653.1175463139,"1850":8691.8409466611,"1851":8723.8526105545,"1852":8754.0721170565,"1853":8777.5234039216,"1854":8799.1197539922,"1855":8813.9181123136,"1856":8826.8060750255,"1857":8832.8931024437,"1858":8837.021814896,"1859":8834.3734886946,"1860":8829.7266567455,"1861":8818.3534286583,"1862":8804.9493912305,"1863":8784.8961461927,"1864":8762.7878028983,"1865":8734.1336819065,"1866":8703.4082842762,"1867":8666.2663720553,"1868":8627.0451791962,"1869":8581.5620579052,"1870":8533.9998579473,"1871":8480.3550286865,"1872":8424.6395279038,"1873":8363.0447023065,"1874":8299.3957843267,"1875":8230.0940490294,"1876":8158.7629070533,"1877":8082.0277643444,"1878":8003.2959098012,"1879":7919.4301982319,"1880":7833.6083497824,"1881":7742.9430490017,"1882":7650.3699062735,"1883":7553.2628308025,"1884":7454.3037376972,"1885":7351.138124799,"1886":7246.1836276469,"1887":7137.3666248636,"1888":7026.830931116,"1889":6912.7919894437,"1890":6797.1113329848,"1891":6678.3005120269,"1892":6557.9314315583,"1893":6434.8176233456,"1894":6310.2351606365,"1895":6183.3042391247,"1896":6055.0000642392,"1897":5924.7529677863,"1898":5793.2334386859,"1899":5660.1841930773,"1900":5525.9683572578,"1901":5390.6420470817,"1902":5254.2595931297,"1903":5117.1902895076,"1904":4979.1794566617,"1905":4840.9081095138,"1906":4701.8135634801,"1907":4562.8858666436,"1908":4423.2565500489,"1909":4284.2207876731,"1910":4144.6077536397,"1911":4006.0126363592,"1912":3866.9668737492,"1913":3729.3593731739,"1914":3591.4296320883,"1915":3455.3528221562,"1916":3319.0834482689,"1917":3185.0743619812,"1918":3051.0031482553,"1919":2919.5906582526,"1920":2788.2467225176,"1921":2659.9494538613,"1922":2531.8511506261,"1923":2407.1754340221,"1924":2282.8283087671,"1925":2162.2661823098,"1926":2042.1609763296,"1927":1926.1882436527,"1928":1810.7989573243,"1929":1699.8733098208,"1930":1589.655331941,"1931":1484.2145424644,"1932":1379.6028530382,"1933":1280.0630482133,"1934":1181.4705017863,"1935":1088.2245197473,"1936":996.0402160576,"1937":909.4560560955,"1938":824.0438044747,"1939":744.4631747125,"1940":666.1600582967,"1941":593.897027123,"1942":523.0120725393,"1943":458.3518291244,"1944":395.1647869043,"1945":338.3625156885,"1946":283.1227562203,"1947":234.4026298174,"1948":187.3281591951,"1949":146.8824536861,"1950":108.1590533389,"1951":76.1473894455,"1952":45.9278829435,"1953":22.4765960784,"1954":0.8802460078,"1955":-13.9181123136,"1956":-26.8060750255,"1957":-32.8931024437,"1958":-37.021814896,"1959":-34.3734886946,"1960":-29.7266567456,"1961":-18.3534286583,"1962":-4.9493912305,"1963":15.1038538073,"1964":37.2121971017,"1965":65.8663180935,"1966":96.5917157238,"1967":133.7336279447,"1968":172.9548208038,"1969":218.4379420948,"1970":266.0001420528,"1971":319.6449713135,"1972":375.3604720962,"1973":436.9552976934,"1974":500.6042156733,"1975":569.9059509706,"1976":641.2370929467,"1977":717.9722356556,"1978":796.7040901988,"1979":880.5698017681,"1980":966.3916502176,"1981":1057.0569509983,"1982":1149.6300937265,"1983":1246.7371691975,"1984":1345.6962623028,"1985":1448.861875201,"1986":1553.8163723531,"1987":1662.6333751364,"1988":1773.169068884,"1989":1887.2080105563,"1990":2002.8886670152,"1991":2121.6994879731,"1992":2242.0685684417,"1993":2365.1823766544,"1994":2489.7648393635,"1995":2616.6957608753,"1996":2744.9999357608,"1997":2875.2470322137,"1998":3006.7665613141,"1999":3139.8158069227,"2000":3274.0316427422}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0", + "101": "branch0_seg0", + "102": "branch0_seg0", + "103": "branch0_seg0", + "104": "branch0_seg0", + "105": "branch0_seg0", + "106": "branch0_seg0", + "107": "branch0_seg0", + "108": "branch0_seg0", + "109": "branch0_seg0", + "110": "branch0_seg0", + "111": "branch0_seg0", + "112": "branch0_seg0", + "113": "branch0_seg0", + "114": "branch0_seg0", + "115": "branch0_seg0", + "116": "branch0_seg0", + "117": "branch0_seg0", + "118": "branch0_seg0", + "119": "branch0_seg0", + "120": "branch0_seg0", + "121": "branch0_seg0", + "122": "branch0_seg0", + "123": "branch0_seg0", + "124": "branch0_seg0", + "125": "branch0_seg0", + "126": "branch0_seg0", + "127": "branch0_seg0", + "128": "branch0_seg0", + "129": "branch0_seg0", + "130": "branch0_seg0", + "131": "branch0_seg0", + "132": "branch0_seg0", + "133": "branch0_seg0", + "134": "branch0_seg0", + "135": "branch0_seg0", + "136": "branch0_seg0", + "137": "branch0_seg0", + "138": "branch0_seg0", + "139": "branch0_seg0", + "140": "branch0_seg0", + "141": "branch0_seg0", + "142": "branch0_seg0", + "143": "branch0_seg0", + "144": "branch0_seg0", + "145": "branch0_seg0", + "146": "branch0_seg0", + "147": "branch0_seg0", + "148": "branch0_seg0", + "149": "branch0_seg0", + "150": "branch0_seg0", + "151": "branch0_seg0", + "152": "branch0_seg0", + "153": "branch0_seg0", + "154": "branch0_seg0", + "155": "branch0_seg0", + "156": "branch0_seg0", + "157": "branch0_seg0", + "158": "branch0_seg0", + "159": "branch0_seg0", + "160": "branch0_seg0", + "161": "branch0_seg0", + "162": "branch0_seg0", + "163": "branch0_seg0", + "164": "branch0_seg0", + "165": "branch0_seg0", + "166": "branch0_seg0", + "167": "branch0_seg0", + "168": "branch0_seg0", + "169": "branch0_seg0", + "170": "branch0_seg0", + "171": "branch0_seg0", + "172": "branch0_seg0", + "173": "branch0_seg0", + "174": "branch0_seg0", + "175": "branch0_seg0", + "176": "branch0_seg0", + "177": "branch0_seg0", + "178": "branch0_seg0", + "179": "branch0_seg0", + "180": "branch0_seg0", + "181": "branch0_seg0", + "182": "branch0_seg0", + "183": "branch0_seg0", + "184": "branch0_seg0", + "185": "branch0_seg0", + "186": "branch0_seg0", + "187": "branch0_seg0", + "188": "branch0_seg0", + "189": "branch0_seg0", + "190": "branch0_seg0", + "191": "branch0_seg0", + "192": "branch0_seg0", + "193": "branch0_seg0", + "194": "branch0_seg0", + "195": "branch0_seg0", + "196": "branch0_seg0", + "197": "branch0_seg0", + "198": "branch0_seg0", + "199": "branch0_seg0", + "200": "branch0_seg0", + "201": "branch0_seg0", + "202": "branch0_seg0", + "203": "branch0_seg0", + "204": "branch0_seg0", + "205": "branch0_seg0", + "206": "branch0_seg0", + "207": "branch0_seg0", + "208": "branch0_seg0", + "209": "branch0_seg0", + "210": "branch0_seg0", + "211": "branch0_seg0", + "212": "branch0_seg0", + "213": "branch0_seg0", + "214": "branch0_seg0", + "215": "branch0_seg0", + "216": "branch0_seg0", + "217": "branch0_seg0", + "218": "branch0_seg0", + "219": "branch0_seg0", + "220": "branch0_seg0", + "221": "branch0_seg0", + "222": "branch0_seg0", + "223": "branch0_seg0", + "224": "branch0_seg0", + "225": "branch0_seg0", + "226": "branch0_seg0", + "227": "branch0_seg0", + "228": "branch0_seg0", + "229": "branch0_seg0", + "230": "branch0_seg0", + "231": "branch0_seg0", + "232": "branch0_seg0", + "233": "branch0_seg0", + "234": "branch0_seg0", + "235": "branch0_seg0", + "236": "branch0_seg0", + "237": "branch0_seg0", + "238": "branch0_seg0", + "239": "branch0_seg0", + "240": "branch0_seg0", + "241": "branch0_seg0", + "242": "branch0_seg0", + "243": "branch0_seg0", + "244": "branch0_seg0", + "245": "branch0_seg0", + "246": "branch0_seg0", + "247": "branch0_seg0", + "248": "branch0_seg0", + "249": "branch0_seg0", + "250": "branch0_seg0", + "251": "branch0_seg0", + "252": "branch0_seg0", + "253": "branch0_seg0", + "254": "branch0_seg0", + "255": "branch0_seg0", + "256": "branch0_seg0", + "257": "branch0_seg0", + "258": "branch0_seg0", + "259": "branch0_seg0", + "260": "branch0_seg0", + "261": "branch0_seg0", + "262": "branch0_seg0", + "263": "branch0_seg0", + "264": "branch0_seg0", + "265": "branch0_seg0", + "266": "branch0_seg0", + "267": "branch0_seg0", + "268": "branch0_seg0", + "269": "branch0_seg0", + "270": "branch0_seg0", + "271": "branch0_seg0", + "272": "branch0_seg0", + "273": "branch0_seg0", + "274": "branch0_seg0", + "275": "branch0_seg0", + "276": "branch0_seg0", + "277": "branch0_seg0", + "278": "branch0_seg0", + "279": "branch0_seg0", + "280": "branch0_seg0", + "281": "branch0_seg0", + "282": "branch0_seg0", + "283": "branch0_seg0", + "284": "branch0_seg0", + "285": "branch0_seg0", + "286": "branch0_seg0", + "287": "branch0_seg0", + "288": "branch0_seg0", + "289": "branch0_seg0", + "290": "branch0_seg0", + "291": "branch0_seg0", + "292": "branch0_seg0", + "293": "branch0_seg0", + "294": "branch0_seg0", + "295": "branch0_seg0", + "296": "branch0_seg0", + "297": "branch0_seg0", + "298": "branch0_seg0", + "299": "branch0_seg0", + "300": "branch0_seg0", + "301": "branch0_seg0", + "302": "branch0_seg0", + "303": "branch0_seg0", + "304": "branch0_seg0", + "305": "branch0_seg0", + "306": "branch0_seg0", + "307": "branch0_seg0", + "308": "branch0_seg0", + "309": "branch0_seg0", + "310": "branch0_seg0", + "311": "branch0_seg0", + "312": "branch0_seg0", + "313": "branch0_seg0", + "314": "branch0_seg0", + "315": "branch0_seg0", + "316": "branch0_seg0", + "317": "branch0_seg0", + "318": "branch0_seg0", + "319": "branch0_seg0", + "320": "branch0_seg0", + "321": "branch0_seg0", + "322": "branch0_seg0", + "323": "branch0_seg0", + "324": "branch0_seg0", + "325": "branch0_seg0", + "326": "branch0_seg0", + "327": "branch0_seg0", + "328": "branch0_seg0", + "329": "branch0_seg0", + "330": "branch0_seg0", + "331": "branch0_seg0", + "332": "branch0_seg0", + "333": "branch0_seg0", + "334": "branch0_seg0", + "335": "branch0_seg0", + "336": "branch0_seg0", + "337": "branch0_seg0", + "338": "branch0_seg0", + "339": "branch0_seg0", + "340": "branch0_seg0", + "341": "branch0_seg0", + "342": "branch0_seg0", + "343": "branch0_seg0", + "344": "branch0_seg0", + "345": "branch0_seg0", + "346": "branch0_seg0", + "347": "branch0_seg0", + "348": "branch0_seg0", + "349": "branch0_seg0", + "350": "branch0_seg0", + "351": "branch0_seg0", + "352": "branch0_seg0", + "353": "branch0_seg0", + "354": "branch0_seg0", + "355": "branch0_seg0", + "356": "branch0_seg0", + "357": "branch0_seg0", + "358": "branch0_seg0", + "359": "branch0_seg0", + "360": "branch0_seg0", + "361": "branch0_seg0", + "362": "branch0_seg0", + "363": "branch0_seg0", + "364": "branch0_seg0", + "365": "branch0_seg0", + "366": "branch0_seg0", + "367": "branch0_seg0", + "368": "branch0_seg0", + "369": "branch0_seg0", + "370": "branch0_seg0", + "371": "branch0_seg0", + "372": "branch0_seg0", + "373": "branch0_seg0", + "374": "branch0_seg0", + "375": "branch0_seg0", + "376": "branch0_seg0", + "377": "branch0_seg0", + "378": "branch0_seg0", + "379": "branch0_seg0", + "380": "branch0_seg0", + "381": "branch0_seg0", + "382": "branch0_seg0", + "383": "branch0_seg0", + "384": "branch0_seg0", + "385": "branch0_seg0", + "386": "branch0_seg0", + "387": "branch0_seg0", + "388": "branch0_seg0", + "389": "branch0_seg0", + "390": "branch0_seg0", + "391": "branch0_seg0", + "392": "branch0_seg0", + "393": "branch0_seg0", + "394": "branch0_seg0", + "395": "branch0_seg0", + "396": "branch0_seg0", + "397": "branch0_seg0", + "398": "branch0_seg0", + "399": "branch0_seg0", + "400": "branch0_seg0", + "401": "branch0_seg0", + "402": "branch0_seg0", + "403": "branch0_seg0", + "404": "branch0_seg0", + "405": "branch0_seg0", + "406": "branch0_seg0", + "407": "branch0_seg0", + "408": "branch0_seg0", + "409": "branch0_seg0", + "410": "branch0_seg0", + "411": "branch0_seg0", + "412": "branch0_seg0", + "413": "branch0_seg0", + "414": "branch0_seg0", + "415": "branch0_seg0", + "416": "branch0_seg0", + "417": "branch0_seg0", + "418": "branch0_seg0", + "419": "branch0_seg0", + "420": "branch0_seg0", + "421": "branch0_seg0", + "422": "branch0_seg0", + "423": "branch0_seg0", + "424": "branch0_seg0", + "425": "branch0_seg0", + "426": "branch0_seg0", + "427": "branch0_seg0", + "428": "branch0_seg0", + "429": "branch0_seg0", + "430": "branch0_seg0", + "431": "branch0_seg0", + "432": "branch0_seg0", + "433": "branch0_seg0", + "434": "branch0_seg0", + "435": "branch0_seg0", + "436": "branch0_seg0", + "437": "branch0_seg0", + "438": "branch0_seg0", + "439": "branch0_seg0", + "440": "branch0_seg0", + "441": "branch0_seg0", + "442": "branch0_seg0", + "443": "branch0_seg0", + "444": "branch0_seg0", + "445": "branch0_seg0", + "446": "branch0_seg0", + "447": "branch0_seg0", + "448": "branch0_seg0", + "449": "branch0_seg0", + "450": "branch0_seg0", + "451": "branch0_seg0", + "452": "branch0_seg0", + "453": "branch0_seg0", + "454": "branch0_seg0", + "455": "branch0_seg0", + "456": "branch0_seg0", + "457": "branch0_seg0", + "458": "branch0_seg0", + "459": "branch0_seg0", + "460": "branch0_seg0", + "461": "branch0_seg0", + "462": "branch0_seg0", + "463": "branch0_seg0", + "464": "branch0_seg0", + "465": "branch0_seg0", + "466": "branch0_seg0", + "467": "branch0_seg0", + "468": "branch0_seg0", + "469": "branch0_seg0", + "470": "branch0_seg0", + "471": "branch0_seg0", + "472": "branch0_seg0", + "473": "branch0_seg0", + "474": "branch0_seg0", + "475": "branch0_seg0", + "476": "branch0_seg0", + "477": "branch0_seg0", + "478": "branch0_seg0", + "479": "branch0_seg0", + "480": "branch0_seg0", + "481": "branch0_seg0", + "482": "branch0_seg0", + "483": "branch0_seg0", + "484": "branch0_seg0", + "485": "branch0_seg0", + "486": "branch0_seg0", + "487": "branch0_seg0", + "488": "branch0_seg0", + "489": "branch0_seg0", + "490": "branch0_seg0", + "491": "branch0_seg0", + "492": "branch0_seg0", + "493": "branch0_seg0", + "494": "branch0_seg0", + "495": "branch0_seg0", + "496": "branch0_seg0", + "497": "branch0_seg0", + "498": "branch0_seg0", + "499": "branch0_seg0", + "500": "branch0_seg0", + "501": "branch0_seg0", + "502": "branch0_seg0", + "503": "branch0_seg0", + "504": "branch0_seg0", + "505": "branch0_seg0", + "506": "branch0_seg0", + "507": "branch0_seg0", + "508": "branch0_seg0", + "509": "branch0_seg0", + "510": "branch0_seg0", + "511": "branch0_seg0", + "512": "branch0_seg0", + "513": "branch0_seg0", + "514": "branch0_seg0", + "515": "branch0_seg0", + "516": "branch0_seg0", + "517": "branch0_seg0", + "518": "branch0_seg0", + "519": "branch0_seg0", + "520": "branch0_seg0", + "521": "branch0_seg0", + "522": "branch0_seg0", + "523": "branch0_seg0", + "524": "branch0_seg0", + "525": "branch0_seg0", + "526": "branch0_seg0", + "527": "branch0_seg0", + "528": "branch0_seg0", + "529": "branch0_seg0", + "530": "branch0_seg0", + "531": "branch0_seg0", + "532": "branch0_seg0", + "533": "branch0_seg0", + "534": "branch0_seg0", + "535": "branch0_seg0", + "536": "branch0_seg0", + "537": "branch0_seg0", + "538": "branch0_seg0", + "539": "branch0_seg0", + "540": "branch0_seg0", + "541": "branch0_seg0", + "542": "branch0_seg0", + "543": "branch0_seg0", + "544": "branch0_seg0", + "545": "branch0_seg0", + "546": "branch0_seg0", + "547": "branch0_seg0", + "548": "branch0_seg0", + "549": "branch0_seg0", + "550": "branch0_seg0", + "551": "branch0_seg0", + "552": "branch0_seg0", + "553": "branch0_seg0", + "554": "branch0_seg0", + "555": "branch0_seg0", + "556": "branch0_seg0", + "557": "branch0_seg0", + "558": "branch0_seg0", + "559": "branch0_seg0", + "560": "branch0_seg0", + "561": "branch0_seg0", + "562": "branch0_seg0", + "563": "branch0_seg0", + "564": "branch0_seg0", + "565": "branch0_seg0", + "566": "branch0_seg0", + "567": "branch0_seg0", + "568": "branch0_seg0", + "569": "branch0_seg0", + "570": "branch0_seg0", + "571": "branch0_seg0", + "572": "branch0_seg0", + "573": "branch0_seg0", + "574": "branch0_seg0", + "575": "branch0_seg0", + "576": "branch0_seg0", + "577": "branch0_seg0", + "578": "branch0_seg0", + "579": "branch0_seg0", + "580": "branch0_seg0", + "581": "branch0_seg0", + "582": "branch0_seg0", + "583": "branch0_seg0", + "584": "branch0_seg0", + "585": "branch0_seg0", + "586": "branch0_seg0", + "587": "branch0_seg0", + "588": "branch0_seg0", + "589": "branch0_seg0", + "590": "branch0_seg0", + "591": "branch0_seg0", + "592": "branch0_seg0", + "593": "branch0_seg0", + "594": "branch0_seg0", + "595": "branch0_seg0", + "596": "branch0_seg0", + "597": "branch0_seg0", + "598": "branch0_seg0", + "599": "branch0_seg0", + "600": "branch0_seg0", + "601": "branch0_seg0", + "602": "branch0_seg0", + "603": "branch0_seg0", + "604": "branch0_seg0", + "605": "branch0_seg0", + "606": "branch0_seg0", + "607": "branch0_seg0", + "608": "branch0_seg0", + "609": "branch0_seg0", + "610": "branch0_seg0", + "611": "branch0_seg0", + "612": "branch0_seg0", + "613": "branch0_seg0", + "614": "branch0_seg0", + "615": "branch0_seg0", + "616": "branch0_seg0", + "617": "branch0_seg0", + "618": "branch0_seg0", + "619": "branch0_seg0", + "620": "branch0_seg0", + "621": "branch0_seg0", + "622": "branch0_seg0", + "623": "branch0_seg0", + "624": "branch0_seg0", + "625": "branch0_seg0", + "626": "branch0_seg0", + "627": "branch0_seg0", + "628": "branch0_seg0", + "629": "branch0_seg0", + "630": "branch0_seg0", + "631": "branch0_seg0", + "632": "branch0_seg0", + "633": "branch0_seg0", + "634": "branch0_seg0", + "635": "branch0_seg0", + "636": "branch0_seg0", + "637": "branch0_seg0", + "638": "branch0_seg0", + "639": "branch0_seg0", + "640": "branch0_seg0", + "641": "branch0_seg0", + "642": "branch0_seg0", + "643": "branch0_seg0", + "644": "branch0_seg0", + "645": "branch0_seg0", + "646": "branch0_seg0", + "647": "branch0_seg0", + "648": "branch0_seg0", + "649": "branch0_seg0", + "650": "branch0_seg0", + "651": "branch0_seg0", + "652": "branch0_seg0", + "653": "branch0_seg0", + "654": "branch0_seg0", + "655": "branch0_seg0", + "656": "branch0_seg0", + "657": "branch0_seg0", + "658": "branch0_seg0", + "659": "branch0_seg0", + "660": "branch0_seg0", + "661": "branch0_seg0", + "662": "branch0_seg0", + "663": "branch0_seg0", + "664": "branch0_seg0", + "665": "branch0_seg0", + "666": "branch0_seg0", + "667": "branch0_seg0", + "668": "branch0_seg0", + "669": "branch0_seg0", + "670": "branch0_seg0", + "671": "branch0_seg0", + "672": "branch0_seg0", + "673": "branch0_seg0", + "674": "branch0_seg0", + "675": "branch0_seg0", + "676": "branch0_seg0", + "677": "branch0_seg0", + "678": "branch0_seg0", + "679": "branch0_seg0", + "680": "branch0_seg0", + "681": "branch0_seg0", + "682": "branch0_seg0", + "683": "branch0_seg0", + "684": "branch0_seg0", + "685": "branch0_seg0", + "686": "branch0_seg0", + "687": "branch0_seg0", + "688": "branch0_seg0", + "689": "branch0_seg0", + "690": "branch0_seg0", + "691": "branch0_seg0", + "692": "branch0_seg0", + "693": "branch0_seg0", + "694": "branch0_seg0", + "695": "branch0_seg0", + "696": "branch0_seg0", + "697": "branch0_seg0", + "698": "branch0_seg0", + "699": "branch0_seg0", + "700": "branch0_seg0", + "701": "branch0_seg0", + "702": "branch0_seg0", + "703": "branch0_seg0", + "704": "branch0_seg0", + "705": "branch0_seg0", + "706": "branch0_seg0", + "707": "branch0_seg0", + "708": "branch0_seg0", + "709": "branch0_seg0", + "710": "branch0_seg0", + "711": "branch0_seg0", + "712": "branch0_seg0", + "713": "branch0_seg0", + "714": "branch0_seg0", + "715": "branch0_seg0", + "716": "branch0_seg0", + "717": "branch0_seg0", + "718": "branch0_seg0", + "719": "branch0_seg0", + "720": "branch0_seg0", + "721": "branch0_seg0", + "722": "branch0_seg0", + "723": "branch0_seg0", + "724": "branch0_seg0", + "725": "branch0_seg0", + "726": "branch0_seg0", + "727": "branch0_seg0", + "728": "branch0_seg0", + "729": "branch0_seg0", + "730": "branch0_seg0", + "731": "branch0_seg0", + "732": "branch0_seg0", + "733": "branch0_seg0", + "734": "branch0_seg0", + "735": "branch0_seg0", + "736": "branch0_seg0", + "737": "branch0_seg0", + "738": "branch0_seg0", + "739": "branch0_seg0", + "740": "branch0_seg0", + "741": "branch0_seg0", + "742": "branch0_seg0", + "743": "branch0_seg0", + "744": "branch0_seg0", + "745": "branch0_seg0", + "746": "branch0_seg0", + "747": "branch0_seg0", + "748": "branch0_seg0", + "749": "branch0_seg0", + "750": "branch0_seg0", + "751": "branch0_seg0", + "752": "branch0_seg0", + "753": "branch0_seg0", + "754": "branch0_seg0", + "755": "branch0_seg0", + "756": "branch0_seg0", + "757": "branch0_seg0", + "758": "branch0_seg0", + "759": "branch0_seg0", + "760": "branch0_seg0", + "761": "branch0_seg0", + "762": "branch0_seg0", + "763": "branch0_seg0", + "764": "branch0_seg0", + "765": "branch0_seg0", + "766": "branch0_seg0", + "767": "branch0_seg0", + "768": "branch0_seg0", + "769": "branch0_seg0", + "770": "branch0_seg0", + "771": "branch0_seg0", + "772": "branch0_seg0", + "773": "branch0_seg0", + "774": "branch0_seg0", + "775": "branch0_seg0", + "776": "branch0_seg0", + "777": "branch0_seg0", + "778": "branch0_seg0", + "779": "branch0_seg0", + "780": "branch0_seg0", + "781": "branch0_seg0", + "782": "branch0_seg0", + "783": "branch0_seg0", + "784": "branch0_seg0", + "785": "branch0_seg0", + "786": "branch0_seg0", + "787": "branch0_seg0", + "788": "branch0_seg0", + "789": "branch0_seg0", + "790": "branch0_seg0", + "791": "branch0_seg0", + "792": "branch0_seg0", + "793": "branch0_seg0", + "794": "branch0_seg0", + "795": "branch0_seg0", + "796": "branch0_seg0", + "797": "branch0_seg0", + "798": "branch0_seg0", + "799": "branch0_seg0", + "800": "branch0_seg0", + "801": "branch0_seg0", + "802": "branch0_seg0", + "803": "branch0_seg0", + "804": "branch0_seg0", + "805": "branch0_seg0", + "806": "branch0_seg0", + "807": "branch0_seg0", + "808": "branch0_seg0", + "809": "branch0_seg0", + "810": "branch0_seg0", + "811": "branch0_seg0", + "812": "branch0_seg0", + "813": "branch0_seg0", + "814": "branch0_seg0", + "815": "branch0_seg0", + "816": "branch0_seg0", + "817": "branch0_seg0", + "818": "branch0_seg0", + "819": "branch0_seg0", + "820": "branch0_seg0", + "821": "branch0_seg0", + "822": "branch0_seg0", + "823": "branch0_seg0", + "824": "branch0_seg0", + "825": "branch0_seg0", + "826": "branch0_seg0", + "827": "branch0_seg0", + "828": "branch0_seg0", + "829": "branch0_seg0", + "830": "branch0_seg0", + "831": "branch0_seg0", + "832": "branch0_seg0", + "833": "branch0_seg0", + "834": "branch0_seg0", + "835": "branch0_seg0", + "836": "branch0_seg0", + "837": "branch0_seg0", + "838": "branch0_seg0", + "839": "branch0_seg0", + "840": "branch0_seg0", + "841": "branch0_seg0", + "842": "branch0_seg0", + "843": "branch0_seg0", + "844": "branch0_seg0", + "845": "branch0_seg0", + "846": "branch0_seg0", + "847": "branch0_seg0", + "848": "branch0_seg0", + "849": "branch0_seg0", + "850": "branch0_seg0", + "851": "branch0_seg0", + "852": "branch0_seg0", + "853": "branch0_seg0", + "854": "branch0_seg0", + "855": "branch0_seg0", + "856": "branch0_seg0", + "857": "branch0_seg0", + "858": "branch0_seg0", + "859": "branch0_seg0", + "860": "branch0_seg0", + "861": "branch0_seg0", + "862": "branch0_seg0", + "863": "branch0_seg0", + "864": "branch0_seg0", + "865": "branch0_seg0", + "866": "branch0_seg0", + "867": "branch0_seg0", + "868": "branch0_seg0", + "869": "branch0_seg0", + "870": "branch0_seg0", + "871": "branch0_seg0", + "872": "branch0_seg0", + "873": "branch0_seg0", + "874": "branch0_seg0", + "875": "branch0_seg0", + "876": "branch0_seg0", + "877": "branch0_seg0", + "878": "branch0_seg0", + "879": "branch0_seg0", + "880": "branch0_seg0", + "881": "branch0_seg0", + "882": "branch0_seg0", + "883": "branch0_seg0", + "884": "branch0_seg0", + "885": "branch0_seg0", + "886": "branch0_seg0", + "887": "branch0_seg0", + "888": "branch0_seg0", + "889": "branch0_seg0", + "890": "branch0_seg0", + "891": "branch0_seg0", + "892": "branch0_seg0", + "893": "branch0_seg0", + "894": "branch0_seg0", + "895": "branch0_seg0", + "896": "branch0_seg0", + "897": "branch0_seg0", + "898": "branch0_seg0", + "899": "branch0_seg0", + "900": "branch0_seg0", + "901": "branch0_seg0", + "902": "branch0_seg0", + "903": "branch0_seg0", + "904": "branch0_seg0", + "905": "branch0_seg0", + "906": "branch0_seg0", + "907": "branch0_seg0", + "908": "branch0_seg0", + "909": "branch0_seg0", + "910": "branch0_seg0", + "911": "branch0_seg0", + "912": "branch0_seg0", + "913": "branch0_seg0", + "914": "branch0_seg0", + "915": "branch0_seg0", + "916": "branch0_seg0", + "917": "branch0_seg0", + "918": "branch0_seg0", + "919": "branch0_seg0", + "920": "branch0_seg0", + "921": "branch0_seg0", + "922": "branch0_seg0", + "923": "branch0_seg0", + "924": "branch0_seg0", + "925": "branch0_seg0", + "926": "branch0_seg0", + "927": "branch0_seg0", + "928": "branch0_seg0", + "929": "branch0_seg0", + "930": "branch0_seg0", + "931": "branch0_seg0", + "932": "branch0_seg0", + "933": "branch0_seg0", + "934": "branch0_seg0", + "935": "branch0_seg0", + "936": "branch0_seg0", + "937": "branch0_seg0", + "938": "branch0_seg0", + "939": "branch0_seg0", + "940": "branch0_seg0", + "941": "branch0_seg0", + "942": "branch0_seg0", + "943": "branch0_seg0", + "944": "branch0_seg0", + "945": "branch0_seg0", + "946": "branch0_seg0", + "947": "branch0_seg0", + "948": "branch0_seg0", + "949": "branch0_seg0", + "950": "branch0_seg0", + "951": "branch0_seg0", + "952": "branch0_seg0", + "953": "branch0_seg0", + "954": "branch0_seg0", + "955": "branch0_seg0", + "956": "branch0_seg0", + "957": "branch0_seg0", + "958": "branch0_seg0", + "959": "branch0_seg0", + "960": "branch0_seg0", + "961": "branch0_seg0", + "962": "branch0_seg0", + "963": "branch0_seg0", + "964": "branch0_seg0", + "965": "branch0_seg0", + "966": "branch0_seg0", + "967": "branch0_seg0", + "968": "branch0_seg0", + "969": "branch0_seg0", + "970": "branch0_seg0", + "971": "branch0_seg0", + "972": "branch0_seg0", + "973": "branch0_seg0", + "974": "branch0_seg0", + "975": "branch0_seg0", + "976": "branch0_seg0", + "977": "branch0_seg0", + "978": "branch0_seg0", + "979": "branch0_seg0", + "980": "branch0_seg0", + "981": "branch0_seg0", + "982": "branch0_seg0", + "983": "branch0_seg0", + "984": "branch0_seg0", + "985": "branch0_seg0", + "986": "branch0_seg0", + "987": "branch0_seg0", + "988": "branch0_seg0", + "989": "branch0_seg0", + "990": "branch0_seg0", + "991": "branch0_seg0", + "992": "branch0_seg0", + "993": "branch0_seg0", + "994": "branch0_seg0", + "995": "branch0_seg0", + "996": "branch0_seg0", + "997": "branch0_seg0", + "998": "branch0_seg0", + "999": "branch0_seg0", + "1000": "branch0_seg0", + "1001": "branch0_seg0", + "1002": "branch0_seg0", + "1003": "branch0_seg0", + "1004": "branch0_seg0", + "1005": "branch0_seg0", + "1006": "branch0_seg0", + "1007": "branch0_seg0", + "1008": "branch0_seg0", + "1009": "branch0_seg0", + "1010": "branch0_seg0", + "1011": "branch0_seg0", + "1012": "branch0_seg0", + "1013": "branch0_seg0", + "1014": "branch0_seg0", + "1015": "branch0_seg0", + "1016": "branch0_seg0", + "1017": "branch0_seg0", + "1018": "branch0_seg0", + "1019": "branch0_seg0", + "1020": "branch0_seg0", + "1021": "branch0_seg0", + "1022": "branch0_seg0", + "1023": "branch0_seg0", + "1024": "branch0_seg0", + "1025": "branch0_seg0", + "1026": "branch0_seg0", + "1027": "branch0_seg0", + "1028": "branch0_seg0", + "1029": "branch0_seg0", + "1030": "branch0_seg0", + "1031": "branch0_seg0", + "1032": "branch0_seg0", + "1033": "branch0_seg0", + "1034": "branch0_seg0", + "1035": "branch0_seg0", + "1036": "branch0_seg0", + "1037": "branch0_seg0", + "1038": "branch0_seg0", + "1039": "branch0_seg0", + "1040": "branch0_seg0", + "1041": "branch0_seg0", + "1042": "branch0_seg0", + "1043": "branch0_seg0", + "1044": "branch0_seg0", + "1045": "branch0_seg0", + "1046": "branch0_seg0", + "1047": "branch0_seg0", + "1048": "branch0_seg0", + "1049": "branch0_seg0", + "1050": "branch0_seg0", + "1051": "branch0_seg0", + "1052": "branch0_seg0", + "1053": "branch0_seg0", + "1054": "branch0_seg0", + "1055": "branch0_seg0", + "1056": "branch0_seg0", + "1057": "branch0_seg0", + "1058": "branch0_seg0", + "1059": "branch0_seg0", + "1060": "branch0_seg0", + "1061": "branch0_seg0", + "1062": "branch0_seg0", + "1063": "branch0_seg0", + "1064": "branch0_seg0", + "1065": "branch0_seg0", + "1066": "branch0_seg0", + "1067": "branch0_seg0", + "1068": "branch0_seg0", + "1069": "branch0_seg0", + "1070": "branch0_seg0", + "1071": "branch0_seg0", + "1072": "branch0_seg0", + "1073": "branch0_seg0", + "1074": "branch0_seg0", + "1075": "branch0_seg0", + "1076": "branch0_seg0", + "1077": "branch0_seg0", + "1078": "branch0_seg0", + "1079": "branch0_seg0", + "1080": "branch0_seg0", + "1081": "branch0_seg0", + "1082": "branch0_seg0", + "1083": "branch0_seg0", + "1084": "branch0_seg0", + "1085": "branch0_seg0", + "1086": "branch0_seg0", + "1087": "branch0_seg0", + "1088": "branch0_seg0", + "1089": "branch0_seg0", + "1090": "branch0_seg0", + "1091": "branch0_seg0", + "1092": "branch0_seg0", + "1093": "branch0_seg0", + "1094": "branch0_seg0", + "1095": "branch0_seg0", + "1096": "branch0_seg0", + "1097": "branch0_seg0", + "1098": "branch0_seg0", + "1099": "branch0_seg0", + "1100": "branch0_seg0", + "1101": "branch0_seg0", + "1102": "branch0_seg0", + "1103": "branch0_seg0", + "1104": "branch0_seg0", + "1105": "branch0_seg0", + "1106": "branch0_seg0", + "1107": "branch0_seg0", + "1108": "branch0_seg0", + "1109": "branch0_seg0", + "1110": "branch0_seg0", + "1111": "branch0_seg0", + "1112": "branch0_seg0", + "1113": "branch0_seg0", + "1114": "branch0_seg0", + "1115": "branch0_seg0", + "1116": "branch0_seg0", + "1117": "branch0_seg0", + "1118": "branch0_seg0", + "1119": "branch0_seg0", + "1120": "branch0_seg0", + "1121": "branch0_seg0", + "1122": "branch0_seg0", + "1123": "branch0_seg0", + "1124": "branch0_seg0", + "1125": "branch0_seg0", + "1126": "branch0_seg0", + "1127": "branch0_seg0", + "1128": "branch0_seg0", + "1129": "branch0_seg0", + "1130": "branch0_seg0", + "1131": "branch0_seg0", + "1132": "branch0_seg0", + "1133": "branch0_seg0", + "1134": "branch0_seg0", + "1135": "branch0_seg0", + "1136": "branch0_seg0", + "1137": "branch0_seg0", + "1138": "branch0_seg0", + "1139": "branch0_seg0", + "1140": "branch0_seg0", + "1141": "branch0_seg0", + "1142": "branch0_seg0", + "1143": "branch0_seg0", + "1144": "branch0_seg0", + "1145": "branch0_seg0", + "1146": "branch0_seg0", + "1147": "branch0_seg0", + "1148": "branch0_seg0", + "1149": "branch0_seg0", + "1150": "branch0_seg0", + "1151": "branch0_seg0", + "1152": "branch0_seg0", + "1153": "branch0_seg0", + "1154": "branch0_seg0", + "1155": "branch0_seg0", + "1156": "branch0_seg0", + "1157": "branch0_seg0", + "1158": "branch0_seg0", + "1159": "branch0_seg0", + "1160": "branch0_seg0", + "1161": "branch0_seg0", + "1162": "branch0_seg0", + "1163": "branch0_seg0", + "1164": "branch0_seg0", + "1165": "branch0_seg0", + "1166": "branch0_seg0", + "1167": "branch0_seg0", + "1168": "branch0_seg0", + "1169": "branch0_seg0", + "1170": "branch0_seg0", + "1171": "branch0_seg0", + "1172": "branch0_seg0", + "1173": "branch0_seg0", + "1174": "branch0_seg0", + "1175": "branch0_seg0", + "1176": "branch0_seg0", + "1177": "branch0_seg0", + "1178": "branch0_seg0", + "1179": "branch0_seg0", + "1180": "branch0_seg0", + "1181": "branch0_seg0", + "1182": "branch0_seg0", + "1183": "branch0_seg0", + "1184": "branch0_seg0", + "1185": "branch0_seg0", + "1186": "branch0_seg0", + "1187": "branch0_seg0", + "1188": "branch0_seg0", + "1189": "branch0_seg0", + "1190": "branch0_seg0", + "1191": "branch0_seg0", + "1192": "branch0_seg0", + "1193": "branch0_seg0", + "1194": "branch0_seg0", + "1195": "branch0_seg0", + "1196": "branch0_seg0", + "1197": "branch0_seg0", + "1198": "branch0_seg0", + "1199": "branch0_seg0", + "1200": "branch0_seg0", + "1201": "branch0_seg0", + "1202": "branch0_seg0", + "1203": "branch0_seg0", + "1204": "branch0_seg0", + "1205": "branch0_seg0", + "1206": "branch0_seg0", + "1207": "branch0_seg0", + "1208": "branch0_seg0", + "1209": "branch0_seg0", + "1210": "branch0_seg0", + "1211": "branch0_seg0", + "1212": "branch0_seg0", + "1213": "branch0_seg0", + "1214": "branch0_seg0", + "1215": "branch0_seg0", + "1216": "branch0_seg0", + "1217": "branch0_seg0", + "1218": "branch0_seg0", + "1219": "branch0_seg0", + "1220": "branch0_seg0", + "1221": "branch0_seg0", + "1222": "branch0_seg0", + "1223": "branch0_seg0", + "1224": "branch0_seg0", + "1225": "branch0_seg0", + "1226": "branch0_seg0", + "1227": "branch0_seg0", + "1228": "branch0_seg0", + "1229": "branch0_seg0", + "1230": "branch0_seg0", + "1231": "branch0_seg0", + "1232": "branch0_seg0", + "1233": "branch0_seg0", + "1234": "branch0_seg0", + "1235": "branch0_seg0", + "1236": "branch0_seg0", + "1237": "branch0_seg0", + "1238": "branch0_seg0", + "1239": "branch0_seg0", + "1240": "branch0_seg0", + "1241": "branch0_seg0", + "1242": "branch0_seg0", + "1243": "branch0_seg0", + "1244": "branch0_seg0", + "1245": "branch0_seg0", + "1246": "branch0_seg0", + "1247": "branch0_seg0", + "1248": "branch0_seg0", + "1249": "branch0_seg0", + "1250": "branch0_seg0", + "1251": "branch0_seg0", + "1252": "branch0_seg0", + "1253": "branch0_seg0", + "1254": "branch0_seg0", + "1255": "branch0_seg0", + "1256": "branch0_seg0", + "1257": "branch0_seg0", + "1258": "branch0_seg0", + "1259": "branch0_seg0", + "1260": "branch0_seg0", + "1261": "branch0_seg0", + "1262": "branch0_seg0", + "1263": "branch0_seg0", + "1264": "branch0_seg0", + "1265": "branch0_seg0", + "1266": "branch0_seg0", + "1267": "branch0_seg0", + "1268": "branch0_seg0", + "1269": "branch0_seg0", + "1270": "branch0_seg0", + "1271": "branch0_seg0", + "1272": "branch0_seg0", + "1273": "branch0_seg0", + "1274": "branch0_seg0", + "1275": "branch0_seg0", + "1276": "branch0_seg0", + "1277": "branch0_seg0", + "1278": "branch0_seg0", + "1279": "branch0_seg0", + "1280": "branch0_seg0", + "1281": "branch0_seg0", + "1282": "branch0_seg0", + "1283": "branch0_seg0", + "1284": "branch0_seg0", + "1285": "branch0_seg0", + "1286": "branch0_seg0", + "1287": "branch0_seg0", + "1288": "branch0_seg0", + "1289": "branch0_seg0", + "1290": "branch0_seg0", + "1291": "branch0_seg0", + "1292": "branch0_seg0", + "1293": "branch0_seg0", + "1294": "branch0_seg0", + "1295": "branch0_seg0", + "1296": "branch0_seg0", + "1297": "branch0_seg0", + "1298": "branch0_seg0", + "1299": "branch0_seg0", + "1300": "branch0_seg0", + "1301": "branch0_seg0", + "1302": "branch0_seg0", + "1303": "branch0_seg0", + "1304": "branch0_seg0", + "1305": "branch0_seg0", + "1306": "branch0_seg0", + "1307": "branch0_seg0", + "1308": "branch0_seg0", + "1309": "branch0_seg0", + "1310": "branch0_seg0", + "1311": "branch0_seg0", + "1312": "branch0_seg0", + "1313": "branch0_seg0", + "1314": "branch0_seg0", + "1315": "branch0_seg0", + "1316": "branch0_seg0", + "1317": "branch0_seg0", + "1318": "branch0_seg0", + "1319": "branch0_seg0", + "1320": "branch0_seg0", + "1321": "branch0_seg0", + "1322": "branch0_seg0", + "1323": "branch0_seg0", + "1324": "branch0_seg0", + "1325": "branch0_seg0", + "1326": "branch0_seg0", + "1327": "branch0_seg0", + "1328": "branch0_seg0", + "1329": "branch0_seg0", + "1330": "branch0_seg0", + "1331": "branch0_seg0", + "1332": "branch0_seg0", + "1333": "branch0_seg0", + "1334": "branch0_seg0", + "1335": "branch0_seg0", + "1336": "branch0_seg0", + "1337": "branch0_seg0", + "1338": "branch0_seg0", + "1339": "branch0_seg0", + "1340": "branch0_seg0", + "1341": "branch0_seg0", + "1342": "branch0_seg0", + "1343": "branch0_seg0", + "1344": "branch0_seg0", + "1345": "branch0_seg0", + "1346": "branch0_seg0", + "1347": "branch0_seg0", + "1348": "branch0_seg0", + "1349": "branch0_seg0", + "1350": "branch0_seg0", + "1351": "branch0_seg0", + "1352": "branch0_seg0", + "1353": "branch0_seg0", + "1354": "branch0_seg0", + "1355": "branch0_seg0", + "1356": "branch0_seg0", + "1357": "branch0_seg0", + "1358": "branch0_seg0", + "1359": "branch0_seg0", + "1360": "branch0_seg0", + "1361": "branch0_seg0", + "1362": "branch0_seg0", + "1363": "branch0_seg0", + "1364": "branch0_seg0", + "1365": "branch0_seg0", + "1366": "branch0_seg0", + "1367": "branch0_seg0", + "1368": "branch0_seg0", + "1369": "branch0_seg0", + "1370": "branch0_seg0", + "1371": "branch0_seg0", + "1372": "branch0_seg0", + "1373": "branch0_seg0", + "1374": "branch0_seg0", + "1375": "branch0_seg0", + "1376": "branch0_seg0", + "1377": "branch0_seg0", + "1378": "branch0_seg0", + "1379": "branch0_seg0", + "1380": "branch0_seg0", + "1381": "branch0_seg0", + "1382": "branch0_seg0", + "1383": "branch0_seg0", + "1384": "branch0_seg0", + "1385": "branch0_seg0", + "1386": "branch0_seg0", + "1387": "branch0_seg0", + "1388": "branch0_seg0", + "1389": "branch0_seg0", + "1390": "branch0_seg0", + "1391": "branch0_seg0", + "1392": "branch0_seg0", + "1393": "branch0_seg0", + "1394": "branch0_seg0", + "1395": "branch0_seg0", + "1396": "branch0_seg0", + "1397": "branch0_seg0", + "1398": "branch0_seg0", + "1399": "branch0_seg0", + "1400": "branch0_seg0", + "1401": "branch0_seg0", + "1402": "branch0_seg0", + "1403": "branch0_seg0", + "1404": "branch0_seg0", + "1405": "branch0_seg0", + "1406": "branch0_seg0", + "1407": "branch0_seg0", + "1408": "branch0_seg0", + "1409": "branch0_seg0", + "1410": "branch0_seg0", + "1411": "branch0_seg0", + "1412": "branch0_seg0", + "1413": "branch0_seg0", + "1414": "branch0_seg0", + "1415": "branch0_seg0", + "1416": "branch0_seg0", + "1417": "branch0_seg0", + "1418": "branch0_seg0", + "1419": "branch0_seg0", + "1420": "branch0_seg0", + "1421": "branch0_seg0", + "1422": "branch0_seg0", + "1423": "branch0_seg0", + "1424": "branch0_seg0", + "1425": "branch0_seg0", + "1426": "branch0_seg0", + "1427": "branch0_seg0", + "1428": "branch0_seg0", + "1429": "branch0_seg0", + "1430": "branch0_seg0", + "1431": "branch0_seg0", + "1432": "branch0_seg0", + "1433": "branch0_seg0", + "1434": "branch0_seg0", + "1435": "branch0_seg0", + "1436": "branch0_seg0", + "1437": "branch0_seg0", + "1438": "branch0_seg0", + "1439": "branch0_seg0", + "1440": "branch0_seg0", + "1441": "branch0_seg0", + "1442": "branch0_seg0", + "1443": "branch0_seg0", + "1444": "branch0_seg0", + "1445": "branch0_seg0", + "1446": "branch0_seg0", + "1447": "branch0_seg0", + "1448": "branch0_seg0", + "1449": "branch0_seg0", + "1450": "branch0_seg0", + "1451": "branch0_seg0", + "1452": "branch0_seg0", + "1453": "branch0_seg0", + "1454": "branch0_seg0", + "1455": "branch0_seg0", + "1456": "branch0_seg0", + "1457": "branch0_seg0", + "1458": "branch0_seg0", + "1459": "branch0_seg0", + "1460": "branch0_seg0", + "1461": "branch0_seg0", + "1462": "branch0_seg0", + "1463": "branch0_seg0", + "1464": "branch0_seg0", + "1465": "branch0_seg0", + "1466": "branch0_seg0", + "1467": "branch0_seg0", + "1468": "branch0_seg0", + "1469": "branch0_seg0", + "1470": "branch0_seg0", + "1471": "branch0_seg0", + "1472": "branch0_seg0", + "1473": "branch0_seg0", + "1474": "branch0_seg0", + "1475": "branch0_seg0", + "1476": "branch0_seg0", + "1477": "branch0_seg0", + "1478": "branch0_seg0", + "1479": "branch0_seg0", + "1480": "branch0_seg0", + "1481": "branch0_seg0", + "1482": "branch0_seg0", + "1483": "branch0_seg0", + "1484": "branch0_seg0", + "1485": "branch0_seg0", + "1486": "branch0_seg0", + "1487": "branch0_seg0", + "1488": "branch0_seg0", + "1489": "branch0_seg0", + "1490": "branch0_seg0", + "1491": "branch0_seg0", + "1492": "branch0_seg0", + "1493": "branch0_seg0", + "1494": "branch0_seg0", + "1495": "branch0_seg0", + "1496": "branch0_seg0", + "1497": "branch0_seg0", + "1498": "branch0_seg0", + "1499": "branch0_seg0", + "1500": "branch0_seg0", + "1501": "branch0_seg0", + "1502": "branch0_seg0", + "1503": "branch0_seg0", + "1504": "branch0_seg0", + "1505": "branch0_seg0", + "1506": "branch0_seg0", + "1507": "branch0_seg0", + "1508": "branch0_seg0", + "1509": "branch0_seg0", + "1510": "branch0_seg0", + "1511": "branch0_seg0", + "1512": "branch0_seg0", + "1513": "branch0_seg0", + "1514": "branch0_seg0", + "1515": "branch0_seg0", + "1516": "branch0_seg0", + "1517": "branch0_seg0", + "1518": "branch0_seg0", + "1519": "branch0_seg0", + "1520": "branch0_seg0", + "1521": "branch0_seg0", + "1522": "branch0_seg0", + "1523": "branch0_seg0", + "1524": "branch0_seg0", + "1525": "branch0_seg0", + "1526": "branch0_seg0", + "1527": "branch0_seg0", + "1528": "branch0_seg0", + "1529": "branch0_seg0", + "1530": "branch0_seg0", + "1531": "branch0_seg0", + "1532": "branch0_seg0", + "1533": "branch0_seg0", + "1534": "branch0_seg0", + "1535": "branch0_seg0", + "1536": "branch0_seg0", + "1537": "branch0_seg0", + "1538": "branch0_seg0", + "1539": "branch0_seg0", + "1540": "branch0_seg0", + "1541": "branch0_seg0", + "1542": "branch0_seg0", + "1543": "branch0_seg0", + "1544": "branch0_seg0", + "1545": "branch0_seg0", + "1546": "branch0_seg0", + "1547": "branch0_seg0", + "1548": "branch0_seg0", + "1549": "branch0_seg0", + "1550": "branch0_seg0", + "1551": "branch0_seg0", + "1552": "branch0_seg0", + "1553": "branch0_seg0", + "1554": "branch0_seg0", + "1555": "branch0_seg0", + "1556": "branch0_seg0", + "1557": "branch0_seg0", + "1558": "branch0_seg0", + "1559": "branch0_seg0", + "1560": "branch0_seg0", + "1561": "branch0_seg0", + "1562": "branch0_seg0", + "1563": "branch0_seg0", + "1564": "branch0_seg0", + "1565": "branch0_seg0", + "1566": "branch0_seg0", + "1567": "branch0_seg0", + "1568": "branch0_seg0", + "1569": "branch0_seg0", + "1570": "branch0_seg0", + "1571": "branch0_seg0", + "1572": "branch0_seg0", + "1573": "branch0_seg0", + "1574": "branch0_seg0", + "1575": "branch0_seg0", + "1576": "branch0_seg0", + "1577": "branch0_seg0", + "1578": "branch0_seg0", + "1579": "branch0_seg0", + "1580": "branch0_seg0", + "1581": "branch0_seg0", + "1582": "branch0_seg0", + "1583": "branch0_seg0", + "1584": "branch0_seg0", + "1585": "branch0_seg0", + "1586": "branch0_seg0", + "1587": "branch0_seg0", + "1588": "branch0_seg0", + "1589": "branch0_seg0", + "1590": "branch0_seg0", + "1591": "branch0_seg0", + "1592": "branch0_seg0", + "1593": "branch0_seg0", + "1594": "branch0_seg0", + "1595": "branch0_seg0", + "1596": "branch0_seg0", + "1597": "branch0_seg0", + "1598": "branch0_seg0", + "1599": "branch0_seg0", + "1600": "branch0_seg0", + "1601": "branch0_seg0", + "1602": "branch0_seg0", + "1603": "branch0_seg0", + "1604": "branch0_seg0", + "1605": "branch0_seg0", + "1606": "branch0_seg0", + "1607": "branch0_seg0", + "1608": "branch0_seg0", + "1609": "branch0_seg0", + "1610": "branch0_seg0", + "1611": "branch0_seg0", + "1612": "branch0_seg0", + "1613": "branch0_seg0", + "1614": "branch0_seg0", + "1615": "branch0_seg0", + "1616": "branch0_seg0", + "1617": "branch0_seg0", + "1618": "branch0_seg0", + "1619": "branch0_seg0", + "1620": "branch0_seg0", + "1621": "branch0_seg0", + "1622": "branch0_seg0", + "1623": "branch0_seg0", + "1624": "branch0_seg0", + "1625": "branch0_seg0", + "1626": "branch0_seg0", + "1627": "branch0_seg0", + "1628": "branch0_seg0", + "1629": "branch0_seg0", + "1630": "branch0_seg0", + "1631": "branch0_seg0", + "1632": "branch0_seg0", + "1633": "branch0_seg0", + "1634": "branch0_seg0", + "1635": "branch0_seg0", + "1636": "branch0_seg0", + "1637": "branch0_seg0", + "1638": "branch0_seg0", + "1639": "branch0_seg0", + "1640": "branch0_seg0", + "1641": "branch0_seg0", + "1642": "branch0_seg0", + "1643": "branch0_seg0", + "1644": "branch0_seg0", + "1645": "branch0_seg0", + "1646": "branch0_seg0", + "1647": "branch0_seg0", + "1648": "branch0_seg0", + "1649": "branch0_seg0", + "1650": "branch0_seg0", + "1651": "branch0_seg0", + "1652": "branch0_seg0", + "1653": "branch0_seg0", + "1654": "branch0_seg0", + "1655": "branch0_seg0", + "1656": "branch0_seg0", + "1657": "branch0_seg0", + "1658": "branch0_seg0", + "1659": "branch0_seg0", + "1660": "branch0_seg0", + "1661": "branch0_seg0", + "1662": "branch0_seg0", + "1663": "branch0_seg0", + "1664": "branch0_seg0", + "1665": "branch0_seg0", + "1666": "branch0_seg0", + "1667": "branch0_seg0", + "1668": "branch0_seg0", + "1669": "branch0_seg0", + "1670": "branch0_seg0", + "1671": "branch0_seg0", + "1672": "branch0_seg0", + "1673": "branch0_seg0", + "1674": "branch0_seg0", + "1675": "branch0_seg0", + "1676": "branch0_seg0", + "1677": "branch0_seg0", + "1678": "branch0_seg0", + "1679": "branch0_seg0", + "1680": "branch0_seg0", + "1681": "branch0_seg0", + "1682": "branch0_seg0", + "1683": "branch0_seg0", + "1684": "branch0_seg0", + "1685": "branch0_seg0", + "1686": "branch0_seg0", + "1687": "branch0_seg0", + "1688": "branch0_seg0", + "1689": "branch0_seg0", + "1690": "branch0_seg0", + "1691": "branch0_seg0", + "1692": "branch0_seg0", + "1693": "branch0_seg0", + "1694": "branch0_seg0", + "1695": "branch0_seg0", + "1696": "branch0_seg0", + "1697": "branch0_seg0", + "1698": "branch0_seg0", + "1699": "branch0_seg0", + "1700": "branch0_seg0", + "1701": "branch0_seg0", + "1702": "branch0_seg0", + "1703": "branch0_seg0", + "1704": "branch0_seg0", + "1705": "branch0_seg0", + "1706": "branch0_seg0", + "1707": "branch0_seg0", + "1708": "branch0_seg0", + "1709": "branch0_seg0", + "1710": "branch0_seg0", + "1711": "branch0_seg0", + "1712": "branch0_seg0", + "1713": "branch0_seg0", + "1714": "branch0_seg0", + "1715": "branch0_seg0", + "1716": "branch0_seg0", + "1717": "branch0_seg0", + "1718": "branch0_seg0", + "1719": "branch0_seg0", + "1720": "branch0_seg0", + "1721": "branch0_seg0", + "1722": "branch0_seg0", + "1723": "branch0_seg0", + "1724": "branch0_seg0", + "1725": "branch0_seg0", + "1726": "branch0_seg0", + "1727": "branch0_seg0", + "1728": "branch0_seg0", + "1729": "branch0_seg0", + "1730": "branch0_seg0", + "1731": "branch0_seg0", + "1732": "branch0_seg0", + "1733": "branch0_seg0", + "1734": "branch0_seg0", + "1735": "branch0_seg0", + "1736": "branch0_seg0", + "1737": "branch0_seg0", + "1738": "branch0_seg0", + "1739": "branch0_seg0", + "1740": "branch0_seg0", + "1741": "branch0_seg0", + "1742": "branch0_seg0", + "1743": "branch0_seg0", + "1744": "branch0_seg0", + "1745": "branch0_seg0", + "1746": "branch0_seg0", + "1747": "branch0_seg0", + "1748": "branch0_seg0", + "1749": "branch0_seg0", + "1750": "branch0_seg0", + "1751": "branch0_seg0", + "1752": "branch0_seg0", + "1753": "branch0_seg0", + "1754": "branch0_seg0", + "1755": "branch0_seg0", + "1756": "branch0_seg0", + "1757": "branch0_seg0", + "1758": "branch0_seg0", + "1759": "branch0_seg0", + "1760": "branch0_seg0", + "1761": "branch0_seg0", + "1762": "branch0_seg0", + "1763": "branch0_seg0", + "1764": "branch0_seg0", + "1765": "branch0_seg0", + "1766": "branch0_seg0", + "1767": "branch0_seg0", + "1768": "branch0_seg0", + "1769": "branch0_seg0", + "1770": "branch0_seg0", + "1771": "branch0_seg0", + "1772": "branch0_seg0", + "1773": "branch0_seg0", + "1774": "branch0_seg0", + "1775": "branch0_seg0", + "1776": "branch0_seg0", + "1777": "branch0_seg0", + "1778": "branch0_seg0", + "1779": "branch0_seg0", + "1780": "branch0_seg0", + "1781": "branch0_seg0", + "1782": "branch0_seg0", + "1783": "branch0_seg0", + "1784": "branch0_seg0", + "1785": "branch0_seg0", + "1786": "branch0_seg0", + "1787": "branch0_seg0", + "1788": "branch0_seg0", + "1789": "branch0_seg0", + "1790": "branch0_seg0", + "1791": "branch0_seg0", + "1792": "branch0_seg0", + "1793": "branch0_seg0", + "1794": "branch0_seg0", + "1795": "branch0_seg0", + "1796": "branch0_seg0", + "1797": "branch0_seg0", + "1798": "branch0_seg0", + "1799": "branch0_seg0", + "1800": "branch0_seg0", + "1801": "branch0_seg0", + "1802": "branch0_seg0", + "1803": "branch0_seg0", + "1804": "branch0_seg0", + "1805": "branch0_seg0", + "1806": "branch0_seg0", + "1807": "branch0_seg0", + "1808": "branch0_seg0", + "1809": "branch0_seg0", + "1810": "branch0_seg0", + "1811": "branch0_seg0", + "1812": "branch0_seg0", + "1813": "branch0_seg0", + "1814": "branch0_seg0", + "1815": "branch0_seg0", + "1816": "branch0_seg0", + "1817": "branch0_seg0", + "1818": "branch0_seg0", + "1819": "branch0_seg0", + "1820": "branch0_seg0", + "1821": "branch0_seg0", + "1822": "branch0_seg0", + "1823": "branch0_seg0", + "1824": "branch0_seg0", + "1825": "branch0_seg0", + "1826": "branch0_seg0", + "1827": "branch0_seg0", + "1828": "branch0_seg0", + "1829": "branch0_seg0", + "1830": "branch0_seg0", + "1831": "branch0_seg0", + "1832": "branch0_seg0", + "1833": "branch0_seg0", + "1834": "branch0_seg0", + "1835": "branch0_seg0", + "1836": "branch0_seg0", + "1837": "branch0_seg0", + "1838": "branch0_seg0", + "1839": "branch0_seg0", + "1840": "branch0_seg0", + "1841": "branch0_seg0", + "1842": "branch0_seg0", + "1843": "branch0_seg0", + "1844": "branch0_seg0", + "1845": "branch0_seg0", + "1846": "branch0_seg0", + "1847": "branch0_seg0", + "1848": "branch0_seg0", + "1849": "branch0_seg0", + "1850": "branch0_seg0", + "1851": "branch0_seg0", + "1852": "branch0_seg0", + "1853": "branch0_seg0", + "1854": "branch0_seg0", + "1855": "branch0_seg0", + "1856": "branch0_seg0", + "1857": "branch0_seg0", + "1858": "branch0_seg0", + "1859": "branch0_seg0", + "1860": "branch0_seg0", + "1861": "branch0_seg0", + "1862": "branch0_seg0", + "1863": "branch0_seg0", + "1864": "branch0_seg0", + "1865": "branch0_seg0", + "1866": "branch0_seg0", + "1867": "branch0_seg0", + "1868": "branch0_seg0", + "1869": "branch0_seg0", + "1870": "branch0_seg0", + "1871": "branch0_seg0", + "1872": "branch0_seg0", + "1873": "branch0_seg0", + "1874": "branch0_seg0", + "1875": "branch0_seg0", + "1876": "branch0_seg0", + "1877": "branch0_seg0", + "1878": "branch0_seg0", + "1879": "branch0_seg0", + "1880": "branch0_seg0", + "1881": "branch0_seg0", + "1882": "branch0_seg0", + "1883": "branch0_seg0", + "1884": "branch0_seg0", + "1885": "branch0_seg0", + "1886": "branch0_seg0", + "1887": "branch0_seg0", + "1888": "branch0_seg0", + "1889": "branch0_seg0", + "1890": "branch0_seg0", + "1891": "branch0_seg0", + "1892": "branch0_seg0", + "1893": "branch0_seg0", + "1894": "branch0_seg0", + "1895": "branch0_seg0", + "1896": "branch0_seg0", + "1897": "branch0_seg0", + "1898": "branch0_seg0", + "1899": "branch0_seg0", + "1900": "branch0_seg0", + "1901": "branch0_seg0", + "1902": "branch0_seg0", + "1903": "branch0_seg0", + "1904": "branch0_seg0", + "1905": "branch0_seg0", + "1906": "branch0_seg0", + "1907": "branch0_seg0", + "1908": "branch0_seg0", + "1909": "branch0_seg0", + "1910": "branch0_seg0", + "1911": "branch0_seg0", + "1912": "branch0_seg0", + "1913": "branch0_seg0", + "1914": "branch0_seg0", + "1915": "branch0_seg0", + "1916": "branch0_seg0", + "1917": "branch0_seg0", + "1918": "branch0_seg0", + "1919": "branch0_seg0", + "1920": "branch0_seg0", + "1921": "branch0_seg0", + "1922": "branch0_seg0", + "1923": "branch0_seg0", + "1924": "branch0_seg0", + "1925": "branch0_seg0", + "1926": "branch0_seg0", + "1927": "branch0_seg0", + "1928": "branch0_seg0", + "1929": "branch0_seg0", + "1930": "branch0_seg0", + "1931": "branch0_seg0", + "1932": "branch0_seg0", + "1933": "branch0_seg0", + "1934": "branch0_seg0", + "1935": "branch0_seg0", + "1936": "branch0_seg0", + "1937": "branch0_seg0", + "1938": "branch0_seg0", + "1939": "branch0_seg0", + "1940": "branch0_seg0", + "1941": "branch0_seg0", + "1942": "branch0_seg0", + "1943": "branch0_seg0", + "1944": "branch0_seg0", + "1945": "branch0_seg0", + "1946": "branch0_seg0", + "1947": "branch0_seg0", + "1948": "branch0_seg0", + "1949": "branch0_seg0", + "1950": "branch0_seg0", + "1951": "branch0_seg0", + "1952": "branch0_seg0", + "1953": "branch0_seg0", + "1954": "branch0_seg0", + "1955": "branch0_seg0", + "1956": "branch0_seg0", + "1957": "branch0_seg0", + "1958": "branch0_seg0", + "1959": "branch0_seg0", + "1960": "branch0_seg0", + "1961": "branch0_seg0", + "1962": "branch0_seg0", + "1963": "branch0_seg0", + "1964": "branch0_seg0", + "1965": "branch0_seg0", + "1966": "branch0_seg0", + "1967": "branch0_seg0", + "1968": "branch0_seg0", + "1969": "branch0_seg0", + "1970": "branch0_seg0", + "1971": "branch0_seg0", + "1972": "branch0_seg0", + "1973": "branch0_seg0", + "1974": "branch0_seg0", + "1975": "branch0_seg0", + "1976": "branch0_seg0", + "1977": "branch0_seg0", + "1978": "branch0_seg0", + "1979": "branch0_seg0", + "1980": "branch0_seg0", + "1981": "branch0_seg0", + "1982": "branch0_seg0", + "1983": "branch0_seg0", + "1984": "branch0_seg0", + "1985": "branch0_seg0", + "1986": "branch0_seg0", + "1987": "branch0_seg0", + "1988": "branch0_seg0", + "1989": "branch0_seg0", + "1990": "branch0_seg0", + "1991": "branch0_seg0", + "1992": "branch0_seg0", + "1993": "branch0_seg0", + "1994": "branch0_seg0", + "1995": "branch0_seg0", + "1996": "branch0_seg0", + "1997": "branch0_seg0", + "1998": "branch0_seg0", + "1999": "branch0_seg0", + "2000": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.005, + "2": 0.01, + "3": 0.015, + "4": 0.02, + "5": 0.025, + "6": 0.03, + "7": 0.035, + "8": 0.04, + "9": 0.045, + "10": 0.05, + "11": 0.055, + "12": 0.06, + "13": 0.065, + "14": 0.07, + "15": 0.075, + "16": 0.08, + "17": 0.085, + "18": 0.09, + "19": 0.095, + "20": 0.1, + "21": 0.105, + "22": 0.11, + "23": 0.115, + "24": 0.12, + "25": 0.125, + "26": 0.13, + "27": 0.135, + "28": 0.14, + "29": 0.145, + "30": 0.15, + "31": 0.155, + "32": 0.16, + "33": 0.165, + "34": 0.17, + "35": 0.175, + "36": 0.18, + "37": 0.185, + "38": 0.19, + "39": 0.195, + "40": 0.2, + "41": 0.205, + "42": 0.21, + "43": 0.215, + "44": 0.22, + "45": 0.225, + "46": 0.23, + "47": 0.235, + "48": 0.24, + "49": 0.245, + "50": 0.25, + "51": 0.255, + "52": 0.26, + "53": 0.265, + "54": 0.27, + "55": 0.275, + "56": 0.28, + "57": 0.285, + "58": 0.29, + "59": 0.295, + "60": 0.3, + "61": 0.305, + "62": 0.31, + "63": 0.315, + "64": 0.32, + "65": 0.325, + "66": 0.33, + "67": 0.335, + "68": 0.34, + "69": 0.345, + "70": 0.35, + "71": 0.355, + "72": 0.36, + "73": 0.365, + "74": 0.37, + "75": 0.375, + "76": 0.38, + "77": 0.385, + "78": 0.39, + "79": 0.395, + "80": 0.4, + "81": 0.405, + "82": 0.41, + "83": 0.415, + "84": 0.42, + "85": 0.425, + "86": 0.43, + "87": 0.435, + "88": 0.44, + "89": 0.445, + "90": 0.45, + "91": 0.455, + "92": 0.46, + "93": 0.465, + "94": 0.47, + "95": 0.475, + "96": 0.48, + "97": 0.485, + "98": 0.49, + "99": 0.495, + "100": 0.5, + "101": 0.505, + "102": 0.51, + "103": 0.515, + "104": 0.52, + "105": 0.525, + "106": 0.53, + "107": 0.535, + "108": 0.54, + "109": 0.545, + "110": 0.55, + "111": 0.555, + "112": 0.56, + "113": 0.565, + "114": 0.57, + "115": 0.575, + "116": 0.58, + "117": 0.585, + "118": 0.59, + "119": 0.595, + "120": 0.6, + "121": 0.605, + "122": 0.61, + "123": 0.615, + "124": 0.62, + "125": 0.625, + "126": 0.63, + "127": 0.635, + "128": 0.64, + "129": 0.645, + "130": 0.65, + "131": 0.655, + "132": 0.66, + "133": 0.665, + "134": 0.67, + "135": 0.675, + "136": 0.68, + "137": 0.685, + "138": 0.69, + "139": 0.695, + "140": 0.7, + "141": 0.705, + "142": 0.71, + "143": 0.715, + "144": 0.72, + "145": 0.725, + "146": 0.73, + "147": 0.735, + "148": 0.74, + "149": 0.745, + "150": 0.75, + "151": 0.755, + "152": 0.76, + "153": 0.765, + "154": 0.77, + "155": 0.775, + "156": 0.78, + "157": 0.785, + "158": 0.79, + "159": 0.795, + "160": 0.8, + "161": 0.805, + "162": 0.81, + "163": 0.815, + "164": 0.82, + "165": 0.825, + "166": 0.83, + "167": 0.835, + "168": 0.84, + "169": 0.845, + "170": 0.85, + "171": 0.855, + "172": 0.86, + "173": 0.865, + "174": 0.87, + "175": 0.875, + "176": 0.88, + "177": 0.885, + "178": 0.89, + "179": 0.895, + "180": 0.9, + "181": 0.905, + "182": 0.91, + "183": 0.915, + "184": 0.92, + "185": 0.925, + "186": 0.93, + "187": 0.935, + "188": 0.94, + "189": 0.945, + "190": 0.95, + "191": 0.955, + "192": 0.96, + "193": 0.965, + "194": 0.97, + "195": 0.975, + "196": 0.98, + "197": 0.985, + "198": 0.99, + "199": 0.995, + "200": 1.0, + "201": 1.005, + "202": 1.01, + "203": 1.015, + "204": 1.02, + "205": 1.025, + "206": 1.03, + "207": 1.035, + "208": 1.04, + "209": 1.045, + "210": 1.05, + "211": 1.055, + "212": 1.06, + "213": 1.065, + "214": 1.07, + "215": 1.075, + "216": 1.08, + "217": 1.085, + "218": 1.09, + "219": 1.095, + "220": 1.1, + "221": 1.105, + "222": 1.11, + "223": 1.115, + "224": 1.12, + "225": 1.125, + "226": 1.13, + "227": 1.135, + "228": 1.14, + "229": 1.145, + "230": 1.15, + "231": 1.155, + "232": 1.16, + "233": 1.165, + "234": 1.17, + "235": 1.175, + "236": 1.18, + "237": 1.185, + "238": 1.19, + "239": 1.195, + "240": 1.2, + "241": 1.205, + "242": 1.21, + "243": 1.215, + "244": 1.22, + "245": 1.225, + "246": 1.23, + "247": 1.235, + "248": 1.24, + "249": 1.245, + "250": 1.25, + "251": 1.255, + "252": 1.26, + "253": 1.265, + "254": 1.27, + "255": 1.275, + "256": 1.28, + "257": 1.285, + "258": 1.29, + "259": 1.295, + "260": 1.3, + "261": 1.305, + "262": 1.31, + "263": 1.315, + "264": 1.32, + "265": 1.325, + "266": 1.33, + "267": 1.335, + "268": 1.34, + "269": 1.345, + "270": 1.35, + "271": 1.355, + "272": 1.36, + "273": 1.365, + "274": 1.37, + "275": 1.375, + "276": 1.38, + "277": 1.385, + "278": 1.39, + "279": 1.395, + "280": 1.4, + "281": 1.405, + "282": 1.41, + "283": 1.415, + "284": 1.42, + "285": 1.425, + "286": 1.43, + "287": 1.435, + "288": 1.44, + "289": 1.445, + "290": 1.45, + "291": 1.455, + "292": 1.46, + "293": 1.465, + "294": 1.47, + "295": 1.475, + "296": 1.48, + "297": 1.485, + "298": 1.49, + "299": 1.495, + "300": 1.5, + "301": 1.505, + "302": 1.51, + "303": 1.515, + "304": 1.52, + "305": 1.525, + "306": 1.53, + "307": 1.535, + "308": 1.54, + "309": 1.545, + "310": 1.55, + "311": 1.555, + "312": 1.56, + "313": 1.565, + "314": 1.57, + "315": 1.575, + "316": 1.58, + "317": 1.585, + "318": 1.59, + "319": 1.595, + "320": 1.6, + "321": 1.605, + "322": 1.61, + "323": 1.615, + "324": 1.62, + "325": 1.625, + "326": 1.63, + "327": 1.635, + "328": 1.64, + "329": 1.645, + "330": 1.65, + "331": 1.655, + "332": 1.66, + "333": 1.665, + "334": 1.67, + "335": 1.675, + "336": 1.68, + "337": 1.685, + "338": 1.69, + "339": 1.695, + "340": 1.7, + "341": 1.705, + "342": 1.71, + "343": 1.715, + "344": 1.72, + "345": 1.725, + "346": 1.73, + "347": 1.735, + "348": 1.74, + "349": 1.745, + "350": 1.75, + "351": 1.755, + "352": 1.76, + "353": 1.765, + "354": 1.77, + "355": 1.775, + "356": 1.78, + "357": 1.785, + "358": 1.79, + "359": 1.795, + "360": 1.8, + "361": 1.805, + "362": 1.81, + "363": 1.815, + "364": 1.82, + "365": 1.825, + "366": 1.83, + "367": 1.835, + "368": 1.84, + "369": 1.845, + "370": 1.85, + "371": 1.855, + "372": 1.86, + "373": 1.865, + "374": 1.87, + "375": 1.875, + "376": 1.88, + "377": 1.885, + "378": 1.89, + "379": 1.895, + "380": 1.9, + "381": 1.905, + "382": 1.91, + "383": 1.915, + "384": 1.92, + "385": 1.925, + "386": 1.93, + "387": 1.935, + "388": 1.94, + "389": 1.945, + "390": 1.95, + "391": 1.955, + "392": 1.96, + "393": 1.965, + "394": 1.97, + "395": 1.975, + "396": 1.98, + "397": 1.985, + "398": 1.99, + "399": 1.995, + "400": 2.0, + "401": 2.005, + "402": 2.01, + "403": 2.015, + "404": 2.02, + "405": 2.025, + "406": 2.03, + "407": 2.035, + "408": 2.04, + "409": 2.045, + "410": 2.05, + "411": 2.055, + "412": 2.06, + "413": 2.065, + "414": 2.07, + "415": 2.075, + "416": 2.08, + "417": 2.085, + "418": 2.09, + "419": 2.095, + "420": 2.1, + "421": 2.105, + "422": 2.11, + "423": 2.115, + "424": 2.12, + "425": 2.125, + "426": 2.13, + "427": 2.135, + "428": 2.14, + "429": 2.145, + "430": 2.15, + "431": 2.155, + "432": 2.16, + "433": 2.165, + "434": 2.17, + "435": 2.175, + "436": 2.18, + "437": 2.185, + "438": 2.19, + "439": 2.195, + "440": 2.2, + "441": 2.205, + "442": 2.21, + "443": 2.215, + "444": 2.22, + "445": 2.225, + "446": 2.23, + "447": 2.235, + "448": 2.24, + "449": 2.245, + "450": 2.25, + "451": 2.255, + "452": 2.26, + "453": 2.265, + "454": 2.27, + "455": 2.275, + "456": 2.28, + "457": 2.285, + "458": 2.29, + "459": 2.295, + "460": 2.3, + "461": 2.305, + "462": 2.31, + "463": 2.315, + "464": 2.32, + "465": 2.325, + "466": 2.33, + "467": 2.335, + "468": 2.34, + "469": 2.345, + "470": 2.35, + "471": 2.355, + "472": 2.36, + "473": 2.365, + "474": 2.37, + "475": 2.375, + "476": 2.38, + "477": 2.385, + "478": 2.39, + "479": 2.395, + "480": 2.4, + "481": 2.405, + "482": 2.41, + "483": 2.415, + "484": 2.42, + "485": 2.425, + "486": 2.43, + "487": 2.435, + "488": 2.44, + "489": 2.445, + "490": 2.45, + "491": 2.455, + "492": 2.46, + "493": 2.465, + "494": 2.47, + "495": 2.475, + "496": 2.48, + "497": 2.485, + "498": 2.49, + "499": 2.495, + "500": 2.5, + "501": 2.505, + "502": 2.51, + "503": 2.515, + "504": 2.52, + "505": 2.525, + "506": 2.53, + "507": 2.535, + "508": 2.54, + "509": 2.545, + "510": 2.55, + "511": 2.555, + "512": 2.56, + "513": 2.565, + "514": 2.57, + "515": 2.575, + "516": 2.58, + "517": 2.585, + "518": 2.59, + "519": 2.595, + "520": 2.6, + "521": 2.605, + "522": 2.61, + "523": 2.615, + "524": 2.62, + "525": 2.625, + "526": 2.63, + "527": 2.635, + "528": 2.64, + "529": 2.645, + "530": 2.65, + "531": 2.655, + "532": 2.66, + "533": 2.665, + "534": 2.67, + "535": 2.675, + "536": 2.68, + "537": 2.685, + "538": 2.69, + "539": 2.695, + "540": 2.7, + "541": 2.705, + "542": 2.71, + "543": 2.715, + "544": 2.72, + "545": 2.725, + "546": 2.73, + "547": 2.735, + "548": 2.74, + "549": 2.745, + "550": 2.75, + "551": 2.755, + "552": 2.76, + "553": 2.765, + "554": 2.77, + "555": 2.775, + "556": 2.78, + "557": 2.785, + "558": 2.79, + "559": 2.795, + "560": 2.8, + "561": 2.805, + "562": 2.81, + "563": 2.815, + "564": 2.82, + "565": 2.825, + "566": 2.83, + "567": 2.835, + "568": 2.84, + "569": 2.845, + "570": 2.85, + "571": 2.855, + "572": 2.86, + "573": 2.865, + "574": 2.87, + "575": 2.875, + "576": 2.88, + "577": 2.885, + "578": 2.89, + "579": 2.895, + "580": 2.9, + "581": 2.905, + "582": 2.91, + "583": 2.915, + "584": 2.92, + "585": 2.925, + "586": 2.93, + "587": 2.935, + "588": 2.94, + "589": 2.945, + "590": 2.95, + "591": 2.955, + "592": 2.96, + "593": 2.965, + "594": 2.97, + "595": 2.975, + "596": 2.98, + "597": 2.985, + "598": 2.99, + "599": 2.995, + "600": 3.0, + "601": 3.005, + "602": 3.01, + "603": 3.015, + "604": 3.02, + "605": 3.025, + "606": 3.03, + "607": 3.035, + "608": 3.04, + "609": 3.045, + "610": 3.05, + "611": 3.055, + "612": 3.06, + "613": 3.065, + "614": 3.07, + "615": 3.075, + "616": 3.08, + "617": 3.085, + "618": 3.09, + "619": 3.095, + "620": 3.1, + "621": 3.105, + "622": 3.11, + "623": 3.115, + "624": 3.12, + "625": 3.125, + "626": 3.13, + "627": 3.135, + "628": 3.14, + "629": 3.145, + "630": 3.15, + "631": 3.155, + "632": 3.16, + "633": 3.165, + "634": 3.17, + "635": 3.175, + "636": 3.18, + "637": 3.185, + "638": 3.19, + "639": 3.195, + "640": 3.2, + "641": 3.205, + "642": 3.21, + "643": 3.215, + "644": 3.22, + "645": 3.225, + "646": 3.23, + "647": 3.235, + "648": 3.24, + "649": 3.245, + "650": 3.25, + "651": 3.255, + "652": 3.26, + "653": 3.265, + "654": 3.27, + "655": 3.275, + "656": 3.28, + "657": 3.285, + "658": 3.29, + "659": 3.295, + "660": 3.3, + "661": 3.305, + "662": 3.31, + "663": 3.315, + "664": 3.32, + "665": 3.325, + "666": 3.33, + "667": 3.335, + "668": 3.34, + "669": 3.345, + "670": 3.35, + "671": 3.355, + "672": 3.36, + "673": 3.365, + "674": 3.37, + "675": 3.375, + "676": 3.38, + "677": 3.385, + "678": 3.39, + "679": 3.395, + "680": 3.4, + "681": 3.405, + "682": 3.41, + "683": 3.415, + "684": 3.42, + "685": 3.425, + "686": 3.43, + "687": 3.435, + "688": 3.44, + "689": 3.445, + "690": 3.45, + "691": 3.455, + "692": 3.46, + "693": 3.465, + "694": 3.47, + "695": 3.475, + "696": 3.48, + "697": 3.485, + "698": 3.49, + "699": 3.495, + "700": 3.5, + "701": 3.505, + "702": 3.51, + "703": 3.515, + "704": 3.52, + "705": 3.525, + "706": 3.53, + "707": 3.535, + "708": 3.54, + "709": 3.545, + "710": 3.55, + "711": 3.555, + "712": 3.56, + "713": 3.565, + "714": 3.57, + "715": 3.575, + "716": 3.58, + "717": 3.585, + "718": 3.59, + "719": 3.595, + "720": 3.6, + "721": 3.605, + "722": 3.61, + "723": 3.615, + "724": 3.62, + "725": 3.625, + "726": 3.63, + "727": 3.635, + "728": 3.64, + "729": 3.645, + "730": 3.65, + "731": 3.655, + "732": 3.66, + "733": 3.665, + "734": 3.67, + "735": 3.675, + "736": 3.68, + "737": 3.685, + "738": 3.69, + "739": 3.695, + "740": 3.7, + "741": 3.705, + "742": 3.71, + "743": 3.715, + "744": 3.72, + "745": 3.725, + "746": 3.73, + "747": 3.735, + "748": 3.74, + "749": 3.745, + "750": 3.75, + "751": 3.755, + "752": 3.76, + "753": 3.765, + "754": 3.77, + "755": 3.775, + "756": 3.78, + "757": 3.785, + "758": 3.79, + "759": 3.795, + "760": 3.8, + "761": 3.805, + "762": 3.81, + "763": 3.815, + "764": 3.82, + "765": 3.825, + "766": 3.83, + "767": 3.835, + "768": 3.84, + "769": 3.845, + "770": 3.85, + "771": 3.855, + "772": 3.86, + "773": 3.865, + "774": 3.87, + "775": 3.875, + "776": 3.88, + "777": 3.885, + "778": 3.89, + "779": 3.895, + "780": 3.9, + "781": 3.905, + "782": 3.91, + "783": 3.915, + "784": 3.92, + "785": 3.925, + "786": 3.93, + "787": 3.935, + "788": 3.94, + "789": 3.945, + "790": 3.95, + "791": 3.955, + "792": 3.96, + "793": 3.965, + "794": 3.97, + "795": 3.975, + "796": 3.98, + "797": 3.985, + "798": 3.99, + "799": 3.995, + "800": 4.0, + "801": 4.005, + "802": 4.01, + "803": 4.015, + "804": 4.02, + "805": 4.025, + "806": 4.03, + "807": 4.035, + "808": 4.04, + "809": 4.045, + "810": 4.05, + "811": 4.055, + "812": 4.06, + "813": 4.065, + "814": 4.07, + "815": 4.075, + "816": 4.08, + "817": 4.085, + "818": 4.09, + "819": 4.095, + "820": 4.1, + "821": 4.105, + "822": 4.11, + "823": 4.115, + "824": 4.12, + "825": 4.125, + "826": 4.13, + "827": 4.135, + "828": 4.14, + "829": 4.145, + "830": 4.15, + "831": 4.155, + "832": 4.16, + "833": 4.165, + "834": 4.17, + "835": 4.175, + "836": 4.18, + "837": 4.185, + "838": 4.19, + "839": 4.195, + "840": 4.2, + "841": 4.205, + "842": 4.21, + "843": 4.215, + "844": 4.22, + "845": 4.225, + "846": 4.23, + "847": 4.235, + "848": 4.24, + "849": 4.245, + "850": 4.25, + "851": 4.255, + "852": 4.26, + "853": 4.265, + "854": 4.27, + "855": 4.275, + "856": 4.28, + "857": 4.285, + "858": 4.29, + "859": 4.295, + "860": 4.3, + "861": 4.305, + "862": 4.31, + "863": 4.315, + "864": 4.32, + "865": 4.325, + "866": 4.33, + "867": 4.335, + "868": 4.34, + "869": 4.345, + "870": 4.35, + "871": 4.355, + "872": 4.36, + "873": 4.365, + "874": 4.37, + "875": 4.375, + "876": 4.38, + "877": 4.385, + "878": 4.39, + "879": 4.395, + "880": 4.4, + "881": 4.405, + "882": 4.41, + "883": 4.415, + "884": 4.42, + "885": 4.425, + "886": 4.43, + "887": 4.435, + "888": 4.44, + "889": 4.445, + "890": 4.45, + "891": 4.455, + "892": 4.46, + "893": 4.465, + "894": 4.47, + "895": 4.475, + "896": 4.48, + "897": 4.485, + "898": 4.49, + "899": 4.495, + "900": 4.5, + "901": 4.505, + "902": 4.51, + "903": 4.515, + "904": 4.52, + "905": 4.525, + "906": 4.53, + "907": 4.535, + "908": 4.54, + "909": 4.545, + "910": 4.55, + "911": 4.555, + "912": 4.56, + "913": 4.565, + "914": 4.57, + "915": 4.575, + "916": 4.58, + "917": 4.585, + "918": 4.59, + "919": 4.595, + "920": 4.6, + "921": 4.605, + "922": 4.61, + "923": 4.615, + "924": 4.62, + "925": 4.625, + "926": 4.63, + "927": 4.635, + "928": 4.64, + "929": 4.645, + "930": 4.65, + "931": 4.655, + "932": 4.66, + "933": 4.665, + "934": 4.67, + "935": 4.675, + "936": 4.68, + "937": 4.685, + "938": 4.69, + "939": 4.695, + "940": 4.7, + "941": 4.705, + "942": 4.71, + "943": 4.715, + "944": 4.72, + "945": 4.725, + "946": 4.73, + "947": 4.735, + "948": 4.74, + "949": 4.745, + "950": 4.75, + "951": 4.755, + "952": 4.76, + "953": 4.765, + "954": 4.77, + "955": 4.775, + "956": 4.78, + "957": 4.785, + "958": 4.79, + "959": 4.795, + "960": 4.8, + "961": 4.805, + "962": 4.81, + "963": 4.815, + "964": 4.82, + "965": 4.825, + "966": 4.83, + "967": 4.835, + "968": 4.84, + "969": 4.845, + "970": 4.85, + "971": 4.855, + "972": 4.86, + "973": 4.865, + "974": 4.87, + "975": 4.875, + "976": 4.88, + "977": 4.885, + "978": 4.89, + "979": 4.895, + "980": 4.9, + "981": 4.905, + "982": 4.91, + "983": 4.915, + "984": 4.92, + "985": 4.925, + "986": 4.93, + "987": 4.935, + "988": 4.94, + "989": 4.945, + "990": 4.95, + "991": 4.955, + "992": 4.96, + "993": 4.965, + "994": 4.97, + "995": 4.975, + "996": 4.98, + "997": 4.985, + "998": 4.99, + "999": 4.995, + "1000": 5.0, + "1001": 5.005, + "1002": 5.01, + "1003": 5.015, + "1004": 5.02, + "1005": 5.025, + "1006": 5.03, + "1007": 5.035, + "1008": 5.04, + "1009": 5.045, + "1010": 5.05, + "1011": 5.055, + "1012": 5.06, + "1013": 5.065, + "1014": 5.07, + "1015": 5.075, + "1016": 5.08, + "1017": 5.085, + "1018": 5.09, + "1019": 5.095, + "1020": 5.1, + "1021": 5.105, + "1022": 5.11, + "1023": 5.115, + "1024": 5.12, + "1025": 5.125, + "1026": 5.13, + "1027": 5.135, + "1028": 5.14, + "1029": 5.145, + "1030": 5.15, + "1031": 5.155, + "1032": 5.16, + "1033": 5.165, + "1034": 5.17, + "1035": 5.175, + "1036": 5.18, + "1037": 5.185, + "1038": 5.19, + "1039": 5.195, + "1040": 5.2, + "1041": 5.205, + "1042": 5.21, + "1043": 5.215, + "1044": 5.22, + "1045": 5.225, + "1046": 5.23, + "1047": 5.235, + "1048": 5.24, + "1049": 5.245, + "1050": 5.25, + "1051": 5.255, + "1052": 5.26, + "1053": 5.265, + "1054": 5.27, + "1055": 5.275, + "1056": 5.28, + "1057": 5.285, + "1058": 5.29, + "1059": 5.295, + "1060": 5.3, + "1061": 5.305, + "1062": 5.31, + "1063": 5.315, + "1064": 5.32, + "1065": 5.325, + "1066": 5.33, + "1067": 5.335, + "1068": 5.34, + "1069": 5.345, + "1070": 5.35, + "1071": 5.355, + "1072": 5.36, + "1073": 5.365, + "1074": 5.37, + "1075": 5.375, + "1076": 5.38, + "1077": 5.385, + "1078": 5.39, + "1079": 5.395, + "1080": 5.4, + "1081": 5.405, + "1082": 5.41, + "1083": 5.415, + "1084": 5.42, + "1085": 5.425, + "1086": 5.43, + "1087": 5.435, + "1088": 5.44, + "1089": 5.445, + "1090": 5.45, + "1091": 5.455, + "1092": 5.46, + "1093": 5.465, + "1094": 5.47, + "1095": 5.475, + "1096": 5.48, + "1097": 5.485, + "1098": 5.49, + "1099": 5.495, + "1100": 5.5, + "1101": 5.505, + "1102": 5.51, + "1103": 5.515, + "1104": 5.52, + "1105": 5.525, + "1106": 5.53, + "1107": 5.535, + "1108": 5.54, + "1109": 5.545, + "1110": 5.55, + "1111": 5.555, + "1112": 5.56, + "1113": 5.565, + "1114": 5.57, + "1115": 5.575, + "1116": 5.58, + "1117": 5.585, + "1118": 5.59, + "1119": 5.595, + "1120": 5.6, + "1121": 5.605, + "1122": 5.61, + "1123": 5.615, + "1124": 5.62, + "1125": 5.625, + "1126": 5.63, + "1127": 5.635, + "1128": 5.64, + "1129": 5.645, + "1130": 5.65, + "1131": 5.655, + "1132": 5.66, + "1133": 5.665, + "1134": 5.67, + "1135": 5.675, + "1136": 5.68, + "1137": 5.685, + "1138": 5.69, + "1139": 5.695, + "1140": 5.7, + "1141": 5.705, + "1142": 5.71, + "1143": 5.715, + "1144": 5.72, + "1145": 5.725, + "1146": 5.73, + "1147": 5.735, + "1148": 5.74, + "1149": 5.745, + "1150": 5.75, + "1151": 5.755, + "1152": 5.76, + "1153": 5.765, + "1154": 5.77, + "1155": 5.775, + "1156": 5.78, + "1157": 5.785, + "1158": 5.79, + "1159": 5.795, + "1160": 5.8, + "1161": 5.805, + "1162": 5.81, + "1163": 5.815, + "1164": 5.82, + "1165": 5.825, + "1166": 5.83, + "1167": 5.835, + "1168": 5.84, + "1169": 5.845, + "1170": 5.85, + "1171": 5.855, + "1172": 5.86, + "1173": 5.865, + "1174": 5.87, + "1175": 5.875, + "1176": 5.88, + "1177": 5.885, + "1178": 5.89, + "1179": 5.895, + "1180": 5.9, + "1181": 5.905, + "1182": 5.91, + "1183": 5.915, + "1184": 5.92, + "1185": 5.925, + "1186": 5.93, + "1187": 5.935, + "1188": 5.94, + "1189": 5.945, + "1190": 5.95, + "1191": 5.955, + "1192": 5.96, + "1193": 5.965, + "1194": 5.97, + "1195": 5.975, + "1196": 5.98, + "1197": 5.985, + "1198": 5.99, + "1199": 5.995, + "1200": 6.0, + "1201": 6.005, + "1202": 6.01, + "1203": 6.015, + "1204": 6.02, + "1205": 6.025, + "1206": 6.03, + "1207": 6.035, + "1208": 6.04, + "1209": 6.045, + "1210": 6.05, + "1211": 6.055, + "1212": 6.06, + "1213": 6.065, + "1214": 6.07, + "1215": 6.075, + "1216": 6.08, + "1217": 6.085, + "1218": 6.09, + "1219": 6.095, + "1220": 6.1, + "1221": 6.105, + "1222": 6.11, + "1223": 6.115, + "1224": 6.12, + "1225": 6.125, + "1226": 6.13, + "1227": 6.135, + "1228": 6.14, + "1229": 6.145, + "1230": 6.15, + "1231": 6.155, + "1232": 6.16, + "1233": 6.165, + "1234": 6.17, + "1235": 6.175, + "1236": 6.18, + "1237": 6.185, + "1238": 6.19, + "1239": 6.195, + "1240": 6.2, + "1241": 6.205, + "1242": 6.21, + "1243": 6.215, + "1244": 6.22, + "1245": 6.225, + "1246": 6.23, + "1247": 6.235, + "1248": 6.24, + "1249": 6.245, + "1250": 6.25, + "1251": 6.255, + "1252": 6.26, + "1253": 6.265, + "1254": 6.27, + "1255": 6.275, + "1256": 6.28, + "1257": 6.285, + "1258": 6.29, + "1259": 6.295, + "1260": 6.3, + "1261": 6.305, + "1262": 6.31, + "1263": 6.315, + "1264": 6.32, + "1265": 6.325, + "1266": 6.33, + "1267": 6.335, + "1268": 6.34, + "1269": 6.345, + "1270": 6.35, + "1271": 6.355, + "1272": 6.36, + "1273": 6.365, + "1274": 6.37, + "1275": 6.375, + "1276": 6.38, + "1277": 6.385, + "1278": 6.39, + "1279": 6.395, + "1280": 6.4, + "1281": 6.405, + "1282": 6.41, + "1283": 6.415, + "1284": 6.42, + "1285": 6.425, + "1286": 6.43, + "1287": 6.435, + "1288": 6.44, + "1289": 6.445, + "1290": 6.45, + "1291": 6.455, + "1292": 6.46, + "1293": 6.465, + "1294": 6.47, + "1295": 6.475, + "1296": 6.48, + "1297": 6.485, + "1298": 6.49, + "1299": 6.495, + "1300": 6.5, + "1301": 6.505, + "1302": 6.51, + "1303": 6.515, + "1304": 6.52, + "1305": 6.525, + "1306": 6.53, + "1307": 6.535, + "1308": 6.54, + "1309": 6.545, + "1310": 6.55, + "1311": 6.555, + "1312": 6.56, + "1313": 6.565, + "1314": 6.57, + "1315": 6.575, + "1316": 6.58, + "1317": 6.585, + "1318": 6.59, + "1319": 6.595, + "1320": 6.6, + "1321": 6.605, + "1322": 6.61, + "1323": 6.615, + "1324": 6.62, + "1325": 6.625, + "1326": 6.63, + "1327": 6.635, + "1328": 6.64, + "1329": 6.645, + "1330": 6.65, + "1331": 6.655, + "1332": 6.66, + "1333": 6.665, + "1334": 6.67, + "1335": 6.675, + "1336": 6.68, + "1337": 6.685, + "1338": 6.69, + "1339": 6.695, + "1340": 6.7, + "1341": 6.705, + "1342": 6.71, + "1343": 6.715, + "1344": 6.72, + "1345": 6.725, + "1346": 6.73, + "1347": 6.735, + "1348": 6.74, + "1349": 6.745, + "1350": 6.75, + "1351": 6.755, + "1352": 6.76, + "1353": 6.765, + "1354": 6.77, + "1355": 6.775, + "1356": 6.78, + "1357": 6.785, + "1358": 6.79, + "1359": 6.795, + "1360": 6.8, + "1361": 6.805, + "1362": 6.81, + "1363": 6.815, + "1364": 6.82, + "1365": 6.825, + "1366": 6.83, + "1367": 6.835, + "1368": 6.84, + "1369": 6.845, + "1370": 6.85, + "1371": 6.855, + "1372": 6.86, + "1373": 6.865, + "1374": 6.87, + "1375": 6.875, + "1376": 6.88, + "1377": 6.885, + "1378": 6.89, + "1379": 6.895, + "1380": 6.9, + "1381": 6.905, + "1382": 6.91, + "1383": 6.915, + "1384": 6.92, + "1385": 6.925, + "1386": 6.93, + "1387": 6.935, + "1388": 6.94, + "1389": 6.945, + "1390": 6.95, + "1391": 6.955, + "1392": 6.96, + "1393": 6.965, + "1394": 6.97, + "1395": 6.975, + "1396": 6.98, + "1397": 6.985, + "1398": 6.99, + "1399": 6.995, + "1400": 7.0, + "1401": 7.005, + "1402": 7.01, + "1403": 7.015, + "1404": 7.02, + "1405": 7.025, + "1406": 7.03, + "1407": 7.035, + "1408": 7.04, + "1409": 7.045, + "1410": 7.05, + "1411": 7.055, + "1412": 7.06, + "1413": 7.065, + "1414": 7.07, + "1415": 7.075, + "1416": 7.08, + "1417": 7.085, + "1418": 7.09, + "1419": 7.095, + "1420": 7.1, + "1421": 7.105, + "1422": 7.11, + "1423": 7.115, + "1424": 7.12, + "1425": 7.125, + "1426": 7.13, + "1427": 7.135, + "1428": 7.14, + "1429": 7.145, + "1430": 7.15, + "1431": 7.155, + "1432": 7.16, + "1433": 7.165, + "1434": 7.17, + "1435": 7.175, + "1436": 7.18, + "1437": 7.185, + "1438": 7.19, + "1439": 7.195, + "1440": 7.2, + "1441": 7.205, + "1442": 7.21, + "1443": 7.215, + "1444": 7.22, + "1445": 7.225, + "1446": 7.23, + "1447": 7.235, + "1448": 7.24, + "1449": 7.245, + "1450": 7.25, + "1451": 7.255, + "1452": 7.26, + "1453": 7.265, + "1454": 7.27, + "1455": 7.275, + "1456": 7.28, + "1457": 7.285, + "1458": 7.29, + "1459": 7.295, + "1460": 7.3, + "1461": 7.305, + "1462": 7.31, + "1463": 7.315, + "1464": 7.32, + "1465": 7.325, + "1466": 7.33, + "1467": 7.335, + "1468": 7.34, + "1469": 7.345, + "1470": 7.35, + "1471": 7.355, + "1472": 7.36, + "1473": 7.365, + "1474": 7.37, + "1475": 7.375, + "1476": 7.38, + "1477": 7.385, + "1478": 7.39, + "1479": 7.395, + "1480": 7.4, + "1481": 7.405, + "1482": 7.41, + "1483": 7.415, + "1484": 7.42, + "1485": 7.425, + "1486": 7.43, + "1487": 7.435, + "1488": 7.44, + "1489": 7.445, + "1490": 7.45, + "1491": 7.455, + "1492": 7.46, + "1493": 7.465, + "1494": 7.47, + "1495": 7.475, + "1496": 7.48, + "1497": 7.485, + "1498": 7.49, + "1499": 7.495, + "1500": 7.5, + "1501": 7.505, + "1502": 7.51, + "1503": 7.515, + "1504": 7.52, + "1505": 7.525, + "1506": 7.53, + "1507": 7.535, + "1508": 7.54, + "1509": 7.545, + "1510": 7.55, + "1511": 7.555, + "1512": 7.56, + "1513": 7.565, + "1514": 7.57, + "1515": 7.575, + "1516": 7.58, + "1517": 7.585, + "1518": 7.59, + "1519": 7.595, + "1520": 7.6, + "1521": 7.605, + "1522": 7.61, + "1523": 7.615, + "1524": 7.62, + "1525": 7.625, + "1526": 7.63, + "1527": 7.635, + "1528": 7.64, + "1529": 7.645, + "1530": 7.65, + "1531": 7.655, + "1532": 7.66, + "1533": 7.665, + "1534": 7.67, + "1535": 7.675, + "1536": 7.68, + "1537": 7.685, + "1538": 7.69, + "1539": 7.695, + "1540": 7.7, + "1541": 7.705, + "1542": 7.71, + "1543": 7.715, + "1544": 7.72, + "1545": 7.725, + "1546": 7.73, + "1547": 7.735, + "1548": 7.74, + "1549": 7.745, + "1550": 7.75, + "1551": 7.755, + "1552": 7.76, + "1553": 7.765, + "1554": 7.77, + "1555": 7.775, + "1556": 7.78, + "1557": 7.785, + "1558": 7.79, + "1559": 7.795, + "1560": 7.8, + "1561": 7.805, + "1562": 7.81, + "1563": 7.815, + "1564": 7.82, + "1565": 7.825, + "1566": 7.83, + "1567": 7.835, + "1568": 7.84, + "1569": 7.845, + "1570": 7.85, + "1571": 7.855, + "1572": 7.86, + "1573": 7.865, + "1574": 7.87, + "1575": 7.875, + "1576": 7.88, + "1577": 7.885, + "1578": 7.89, + "1579": 7.895, + "1580": 7.9, + "1581": 7.905, + "1582": 7.91, + "1583": 7.915, + "1584": 7.92, + "1585": 7.925, + "1586": 7.93, + "1587": 7.935, + "1588": 7.94, + "1589": 7.945, + "1590": 7.95, + "1591": 7.955, + "1592": 7.96, + "1593": 7.965, + "1594": 7.97, + "1595": 7.975, + "1596": 7.98, + "1597": 7.985, + "1598": 7.99, + "1599": 7.995, + "1600": 8.0, + "1601": 8.005, + "1602": 8.01, + "1603": 8.015, + "1604": 8.02, + "1605": 8.025, + "1606": 8.03, + "1607": 8.035, + "1608": 8.04, + "1609": 8.045, + "1610": 8.05, + "1611": 8.055, + "1612": 8.06, + "1613": 8.065, + "1614": 8.07, + "1615": 8.075, + "1616": 8.08, + "1617": 8.085, + "1618": 8.09, + "1619": 8.095, + "1620": 8.1, + "1621": 8.105, + "1622": 8.11, + "1623": 8.115, + "1624": 8.12, + "1625": 8.125, + "1626": 8.13, + "1627": 8.135, + "1628": 8.14, + "1629": 8.145, + "1630": 8.15, + "1631": 8.155, + "1632": 8.16, + "1633": 8.165, + "1634": 8.17, + "1635": 8.175, + "1636": 8.18, + "1637": 8.185, + "1638": 8.19, + "1639": 8.195, + "1640": 8.2, + "1641": 8.205, + "1642": 8.21, + "1643": 8.215, + "1644": 8.22, + "1645": 8.225, + "1646": 8.23, + "1647": 8.235, + "1648": 8.24, + "1649": 8.245, + "1650": 8.25, + "1651": 8.255, + "1652": 8.26, + "1653": 8.265, + "1654": 8.27, + "1655": 8.275, + "1656": 8.28, + "1657": 8.285, + "1658": 8.29, + "1659": 8.295, + "1660": 8.3, + "1661": 8.305, + "1662": 8.31, + "1663": 8.315, + "1664": 8.32, + "1665": 8.325, + "1666": 8.33, + "1667": 8.335, + "1668": 8.34, + "1669": 8.345, + "1670": 8.35, + "1671": 8.355, + "1672": 8.36, + "1673": 8.365, + "1674": 8.37, + "1675": 8.375, + "1676": 8.38, + "1677": 8.385, + "1678": 8.39, + "1679": 8.395, + "1680": 8.4, + "1681": 8.405, + "1682": 8.41, + "1683": 8.415, + "1684": 8.42, + "1685": 8.425, + "1686": 8.43, + "1687": 8.435, + "1688": 8.44, + "1689": 8.445, + "1690": 8.45, + "1691": 8.455, + "1692": 8.46, + "1693": 8.465, + "1694": 8.47, + "1695": 8.475, + "1696": 8.48, + "1697": 8.485, + "1698": 8.49, + "1699": 8.495, + "1700": 8.5, + "1701": 8.505, + "1702": 8.51, + "1703": 8.515, + "1704": 8.52, + "1705": 8.525, + "1706": 8.53, + "1707": 8.535, + "1708": 8.54, + "1709": 8.545, + "1710": 8.55, + "1711": 8.555, + "1712": 8.56, + "1713": 8.565, + "1714": 8.57, + "1715": 8.575, + "1716": 8.58, + "1717": 8.585, + "1718": 8.59, + "1719": 8.595, + "1720": 8.6, + "1721": 8.605, + "1722": 8.61, + "1723": 8.615, + "1724": 8.62, + "1725": 8.625, + "1726": 8.63, + "1727": 8.635, + "1728": 8.64, + "1729": 8.645, + "1730": 8.65, + "1731": 8.655, + "1732": 8.66, + "1733": 8.665, + "1734": 8.67, + "1735": 8.675, + "1736": 8.68, + "1737": 8.685, + "1738": 8.69, + "1739": 8.695, + "1740": 8.7, + "1741": 8.705, + "1742": 8.71, + "1743": 8.715, + "1744": 8.72, + "1745": 8.725, + "1746": 8.73, + "1747": 8.735, + "1748": 8.74, + "1749": 8.745, + "1750": 8.75, + "1751": 8.755, + "1752": 8.76, + "1753": 8.765, + "1754": 8.77, + "1755": 8.775, + "1756": 8.78, + "1757": 8.785, + "1758": 8.79, + "1759": 8.795, + "1760": 8.8, + "1761": 8.805, + "1762": 8.81, + "1763": 8.815, + "1764": 8.82, + "1765": 8.825, + "1766": 8.83, + "1767": 8.835, + "1768": 8.84, + "1769": 8.845, + "1770": 8.85, + "1771": 8.855, + "1772": 8.86, + "1773": 8.865, + "1774": 8.87, + "1775": 8.875, + "1776": 8.88, + "1777": 8.885, + "1778": 8.89, + "1779": 8.895, + "1780": 8.9, + "1781": 8.905, + "1782": 8.91, + "1783": 8.915, + "1784": 8.92, + "1785": 8.925, + "1786": 8.93, + "1787": 8.935, + "1788": 8.94, + "1789": 8.945, + "1790": 8.95, + "1791": 8.955, + "1792": 8.96, + "1793": 8.965, + "1794": 8.97, + "1795": 8.975, + "1796": 8.98, + "1797": 8.985, + "1798": 8.99, + "1799": 8.995, + "1800": 9.0, + "1801": 9.005, + "1802": 9.01, + "1803": 9.015, + "1804": 9.02, + "1805": 9.025, + "1806": 9.03, + "1807": 9.035, + "1808": 9.04, + "1809": 9.045, + "1810": 9.05, + "1811": 9.055, + "1812": 9.06, + "1813": 9.065, + "1814": 9.07, + "1815": 9.075, + "1816": 9.08, + "1817": 9.085, + "1818": 9.09, + "1819": 9.095, + "1820": 9.1, + "1821": 9.105, + "1822": 9.11, + "1823": 9.115, + "1824": 9.12, + "1825": 9.125, + "1826": 9.13, + "1827": 9.135, + "1828": 9.14, + "1829": 9.145, + "1830": 9.15, + "1831": 9.155, + "1832": 9.16, + "1833": 9.165, + "1834": 9.17, + "1835": 9.175, + "1836": 9.18, + "1837": 9.185, + "1838": 9.19, + "1839": 9.195, + "1840": 9.2, + "1841": 9.205, + "1842": 9.21, + "1843": 9.215, + "1844": 9.22, + "1845": 9.225, + "1846": 9.23, + "1847": 9.235, + "1848": 9.24, + "1849": 9.245, + "1850": 9.25, + "1851": 9.255, + "1852": 9.26, + "1853": 9.265, + "1854": 9.27, + "1855": 9.275, + "1856": 9.28, + "1857": 9.285, + "1858": 9.29, + "1859": 9.295, + "1860": 9.3, + "1861": 9.305, + "1862": 9.31, + "1863": 9.315, + "1864": 9.32, + "1865": 9.325, + "1866": 9.33, + "1867": 9.335, + "1868": 9.34, + "1869": 9.345, + "1870": 9.35, + "1871": 9.355, + "1872": 9.36, + "1873": 9.365, + "1874": 9.37, + "1875": 9.375, + "1876": 9.38, + "1877": 9.385, + "1878": 9.39, + "1879": 9.395, + "1880": 9.4, + "1881": 9.405, + "1882": 9.41, + "1883": 9.415, + "1884": 9.42, + "1885": 9.425, + "1886": 9.43, + "1887": 9.435, + "1888": 9.44, + "1889": 9.445, + "1890": 9.45, + "1891": 9.455, + "1892": 9.46, + "1893": 9.465, + "1894": 9.47, + "1895": 9.475, + "1896": 9.48, + "1897": 9.485, + "1898": 9.49, + "1899": 9.495, + "1900": 9.5, + "1901": 9.505, + "1902": 9.51, + "1903": 9.515, + "1904": 9.52, + "1905": 9.525, + "1906": 9.53, + "1907": 9.535, + "1908": 9.54, + "1909": 9.545, + "1910": 9.55, + "1911": 9.555, + "1912": 9.56, + "1913": 9.565, + "1914": 9.57, + "1915": 9.575, + "1916": 9.58, + "1917": 9.585, + "1918": 9.59, + "1919": 9.595, + "1920": 9.6, + "1921": 9.605, + "1922": 9.61, + "1923": 9.615, + "1924": 9.62, + "1925": 9.625, + "1926": 9.63, + "1927": 9.635, + "1928": 9.64, + "1929": 9.645, + "1930": 9.65, + "1931": 9.655, + "1932": 9.66, + "1933": 9.665, + "1934": 9.67, + "1935": 9.675, + "1936": 9.68, + "1937": 9.685, + "1938": 9.69, + "1939": 9.695, + "1940": 9.7, + "1941": 9.705, + "1942": 9.71, + "1943": 9.715, + "1944": 9.72, + "1945": 9.725, + "1946": 9.73, + "1947": 9.735, + "1948": 9.74, + "1949": 9.745, + "1950": 9.75, + "1951": 9.755, + "1952": 9.76, + "1953": 9.765, + "1954": 9.77, + "1955": 9.775, + "1956": 9.78, + "1957": 9.785, + "1958": 9.79, + "1959": 9.795, + "1960": 9.8, + "1961": 9.805, + "1962": 9.81, + "1963": 9.815, + "1964": 9.82, + "1965": 9.825, + "1966": 9.83, + "1967": 9.835, + "1968": 9.84, + "1969": 9.845, + "1970": 9.85, + "1971": 9.855, + "1972": 9.86, + "1973": 9.865, + "1974": 9.87, + "1975": 9.875, + "1976": 9.88, + "1977": 9.885, + "1978": 9.89, + "1979": 9.895, + "1980": 9.9, + "1981": 9.905, + "1982": 9.91, + "1983": 9.915, + "1984": 9.92, + "1985": 9.925, + "1986": 9.93, + "1987": 9.935, + "1988": 9.94, + "1989": 9.945, + "1990": 9.95, + "1991": 9.955, + "1992": 9.96, + "1993": 9.965, + "1994": 9.97, + "1995": 9.975, + "1996": 9.98, + "1997": 9.985, + "1998": 9.99, + "1999": 9.995, + "2000": 10.0 + }, + "flow_in": { + "0": 2.200000001, + "1": 2.2784881489, + "2": 2.3569762991, + "3": 2.4351546912, + "4": 2.513333084, + "5": 2.5908931852, + "6": 2.6684532865, + "7": 2.7450890022, + "8": 2.8217247179, + "9": 2.8971336019, + "10": 2.9725424859, + "11": 3.0464269338, + "12": 3.1203113817, + "13": 3.1923798053, + "14": 3.2644482289, + "15": 3.3344162071, + "16": 3.4043841853, + "17": 3.4719755864, + "18": 3.5395669874, + "19": 3.6045150591, + "20": 3.6694631307, + "21": 3.7315115526, + "22": 3.7935599744, + "23": 3.8524638696, + "24": 3.9113677648, + "25": 3.9668946667, + "26": 4.0224215686, + "27": 4.0743523377, + "28": 4.1262831069, + "29": 4.1744127964, + "30": 4.2225424859, + "31": 4.2666811498, + "32": 4.3108198138, + "33": 4.3507932569, + "34": 4.3907667001, + "35": 4.4264171656, + "36": 4.4620676312, + "37": 4.4932544229, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2, + "201": 2.2784881494, + "202": 2.3569762988, + "203": 2.4351546914, + "204": 2.5133330839, + "205": 2.5908931852, + "206": 2.6684532865, + "207": 2.7450890022, + "208": 2.8217247179, + "209": 2.8971336019, + "210": 2.9725424859, + "211": 3.0464269338, + "212": 3.1203113817, + "213": 3.1923798053, + "214": 3.2644482289, + "215": 3.3344162071, + "216": 3.4043841853, + "217": 3.4719755864, + "218": 3.5395669874, + "219": 3.6045150591, + "220": 3.6694631307, + "221": 3.7315115526, + "222": 3.7935599744, + "223": 3.8524638696, + "224": 3.9113677648, + "225": 3.9668946667, + "226": 4.0224215686, + "227": 4.0743523377, + "228": 4.1262831069, + "229": 4.1744127964, + "230": 4.2225424859, + "231": 4.2666811498, + "232": 4.3108198138, + "233": 4.3507932569, + "234": 4.3907667001, + "235": 4.4264171656, + "236": 4.4620676312, + "237": 4.4932544229, + "238": 4.5244412147, + "239": 4.5510412527, + "240": 4.5776412907, + "241": 4.5995495968, + "242": 4.6214579028, + "243": 4.6385880148, + "244": 4.6557181268, + "245": 4.6680024401, + "246": 4.6802867533, + "247": 4.6876767872, + "248": 4.6950668211, + "249": 4.6975334105, + "250": 4.7, + "251": 4.6975334105, + "252": 4.6950668211, + "253": 4.6876767872, + "254": 4.6802867533, + "255": 4.6680024401, + "256": 4.6557181268, + "257": 4.6385880148, + "258": 4.6214579028, + "259": 4.5995495968, + "260": 4.5776412907, + "261": 4.5510412527, + "262": 4.5244412147, + "263": 4.4932544229, + "264": 4.4620676312, + "265": 4.4264171656, + "266": 4.3907667001, + "267": 4.3507932569, + "268": 4.3108198138, + "269": 4.2666811498, + "270": 4.2225424859, + "271": 4.1744127964, + "272": 4.1262831069, + "273": 4.0743523377, + "274": 4.0224215686, + "275": 3.9668946667, + "276": 3.9113677648, + "277": 3.8524638696, + "278": 3.7935599744, + "279": 3.7315115526, + "280": 3.6694631307, + "281": 3.6045150591, + "282": 3.5395669874, + "283": 3.4719755864, + "284": 3.4043841853, + "285": 3.3344162071, + "286": 3.2644482289, + "287": 3.1923798053, + "288": 3.1203113817, + "289": 3.0464269338, + "290": 2.9725424859, + "291": 2.8971336019, + "292": 2.8217247179, + "293": 2.7450890022, + "294": 2.6684532865, + "295": 2.5908931852, + "296": 2.5133330839, + "297": 2.4351546914, + "298": 2.3569762988, + "299": 2.2784881494, + "300": 2.2, + "301": 2.1215118506, + "302": 2.0430237012, + "303": 1.9648453086, + "304": 1.8866669161, + "305": 1.8091068148, + "306": 1.7315467135, + "307": 1.6549109978, + "308": 1.5782752821, + "309": 1.5028663981, + "310": 1.4274575141, + "311": 1.3535730662, + "312": 1.2796886183, + "313": 1.2076201947, + "314": 1.1355517711, + "315": 1.0655837929, + "316": 0.9956158147, + "317": 0.9280244136, + "318": 0.8604330126, + "319": 0.7954849409, + "320": 0.7305368693, + "321": 0.6684884474, + "322": 0.6064400256, + "323": 0.5475361304, + "324": 0.4886322352, + "325": 0.4331053333, + "326": 0.3775784314, + "327": 0.3256476623, + "328": 0.2737168931, + "329": 0.2255872036, + "330": 0.1774575141, + "331": 0.1333188502, + "332": 0.0891801862, + "333": 0.0492067431, + "334": 0.0092332999, + "335": -0.0264171656, + "336": -0.0620676312, + "337": -0.0932544229, + "338": -0.1244412147, + "339": -0.1510412527, + "340": -0.1776412907, + "341": -0.1995495968, + "342": -0.2214579028, + "343": -0.2385880148, + "344": -0.2557181268, + "345": -0.2680024401, + "346": -0.2802867533, + "347": -0.2876767872, + "348": -0.2950668211, + "349": -0.2975334105, + "350": -0.3, + "351": -0.2975334105, + "352": -0.2950668211, + "353": -0.2876767872, + "354": -0.2802867533, + "355": -0.2680024401, + "356": -0.2557181268, + "357": -0.2385880148, + "358": -0.2214579028, + "359": -0.1995495968, + "360": -0.1776412907, + "361": -0.1510412527, + "362": -0.1244412147, + "363": -0.0932544229, + "364": -0.0620676312, + "365": -0.0264171656, + "366": 0.0092332999, + "367": 0.0492067431, + "368": 0.0891801862, + "369": 0.1333188502, + "370": 0.1774575141, + "371": 0.2255872036, + "372": 0.2737168931, + "373": 0.3256476623, + "374": 0.3775784314, + "375": 0.4331053333, + "376": 0.4886322352, + "377": 0.5475361304, + "378": 0.6064400256, + "379": 0.6684884474, + "380": 0.7305368693, + "381": 0.7954849409, + "382": 0.8604330126, + "383": 0.9280244136, + "384": 0.9956158147, + "385": 1.0655837929, + "386": 1.1355517711, + "387": 1.2076201947, + "388": 1.2796886183, + "389": 1.3535730662, + "390": 1.4274575141, + "391": 1.5028663981, + "392": 1.5782752821, + "393": 1.6549109978, + "394": 1.7315467135, + "395": 1.8091068148, + "396": 1.8866669161, + "397": 1.9648453086, + "398": 2.0430237012, + "399": 2.1215118506, + "400": 2.2, + "401": 2.2784881494, + "402": 2.3569762988, + "403": 2.4351546914, + "404": 2.5133330839, + "405": 2.5908931852, + "406": 2.6684532865, + "407": 2.7450890022, + "408": 2.8217247179, + "409": 2.8971336019, + "410": 2.9725424859, + "411": 3.0464269338, + "412": 3.1203113817, + "413": 3.1923798053, + "414": 3.2644482289, + "415": 3.3344162071, + "416": 3.4043841853, + "417": 3.4719755864, + "418": 3.5395669874, + "419": 3.6045150591, + "420": 3.6694631307, + "421": 3.7315115526, + "422": 3.7935599744, + "423": 3.8524638696, + "424": 3.9113677648, + "425": 3.9668946667, + "426": 4.0224215686, + "427": 4.0743523377, + "428": 4.1262831069, + "429": 4.1744127964, + "430": 4.2225424859, + "431": 4.2666811498, + "432": 4.3108198138, + "433": 4.3507932569, + "434": 4.3907667001, + "435": 4.4264171656, + "436": 4.4620676312, + "437": 4.4932544229, + "438": 4.5244412147, + "439": 4.5510412527, + "440": 4.5776412907, + "441": 4.5995495968, + "442": 4.6214579028, + "443": 4.6385880148, + "444": 4.6557181268, + "445": 4.6680024401, + "446": 4.6802867533, + "447": 4.6876767872, + "448": 4.6950668211, + "449": 4.6975334105, + "450": 4.7, + "451": 4.6975334105, + "452": 4.6950668211, + "453": 4.6876767872, + "454": 4.6802867533, + "455": 4.6680024401, + "456": 4.6557181268, + "457": 4.6385880148, + "458": 4.6214579028, + "459": 4.5995495968, + "460": 4.5776412907, + "461": 4.5510412527, + "462": 4.5244412147, + "463": 4.4932544229, + "464": 4.4620676312, + "465": 4.4264171656, + "466": 4.3907667001, + "467": 4.3507932569, + "468": 4.3108198138, + "469": 4.2666811498, + "470": 4.2225424859, + "471": 4.1744127964, + "472": 4.1262831069, + "473": 4.0743523377, + "474": 4.0224215686, + "475": 3.9668946667, + "476": 3.9113677648, + "477": 3.8524638696, + "478": 3.7935599744, + "479": 3.7315115526, + "480": 3.6694631307, + "481": 3.6045150591, + "482": 3.5395669874, + "483": 3.4719755864, + "484": 3.4043841853, + "485": 3.3344162071, + "486": 3.2644482289, + "487": 3.1923798053, + "488": 3.1203113817, + "489": 3.0464269338, + "490": 2.9725424859, + "491": 2.8971336019, + "492": 2.8217247179, + "493": 2.7450890022, + "494": 2.6684532865, + "495": 2.5908931852, + "496": 2.5133330839, + "497": 2.4351546914, + "498": 2.3569762988, + "499": 2.2784881494, + "500": 2.2, + "501": 2.1215118506, + "502": 2.0430237012, + "503": 1.9648453086, + "504": 1.8866669161, + "505": 1.8091068148, + "506": 1.7315467135, + "507": 1.6549109978, + "508": 1.5782752821, + "509": 1.5028663981, + "510": 1.4274575141, + "511": 1.3535730662, + "512": 1.2796886183, + "513": 1.2076201947, + "514": 1.1355517711, + "515": 1.0655837929, + "516": 0.9956158147, + "517": 0.9280244136, + "518": 0.8604330126, + "519": 0.7954849409, + "520": 0.7305368693, + "521": 0.6684884474, + "522": 0.6064400256, + "523": 0.5475361304, + "524": 0.4886322352, + "525": 0.4331053333, + "526": 0.3775784314, + "527": 0.3256476623, + "528": 0.2737168931, + "529": 0.2255872036, + "530": 0.1774575141, + "531": 0.1333188502, + "532": 0.0891801862, + "533": 0.0492067431, + "534": 0.0092332999, + "535": -0.0264171656, + "536": -0.0620676312, + "537": -0.0932544229, + "538": -0.1244412147, + "539": -0.1510412527, + "540": -0.1776412907, + "541": -0.1995495968, + "542": -0.2214579028, + "543": -0.2385880148, + "544": -0.2557181268, + "545": -0.2680024401, + "546": -0.2802867533, + "547": -0.2876767872, + "548": -0.2950668211, + "549": -0.2975334105, + "550": -0.3, + "551": -0.2975334105, + "552": -0.2950668211, + "553": -0.2876767872, + "554": -0.2802867533, + "555": -0.2680024401, + "556": -0.2557181268, + "557": -0.2385880148, + "558": -0.2214579028, + "559": -0.1995495968, + "560": -0.1776412907, + "561": -0.1510412527, + "562": -0.1244412147, + "563": -0.0932544229, + "564": -0.0620676312, + "565": -0.0264171656, + "566": 0.0092332999, + "567": 0.0492067431, + "568": 0.0891801862, + "569": 0.1333188502, + "570": 0.1774575141, + "571": 0.2255872036, + "572": 0.2737168931, + "573": 0.3256476623, + "574": 0.3775784314, + "575": 0.4331053333, + "576": 0.4886322352, + "577": 0.5475361304, + "578": 0.6064400256, + "579": 0.6684884474, + "580": 0.7305368693, + "581": 0.7954849409, + "582": 0.8604330126, + "583": 0.9280244136, + "584": 0.9956158147, + "585": 1.0655837929, + "586": 1.1355517711, + "587": 1.2076201947, + "588": 1.2796886183, + "589": 1.3535730662, + "590": 1.4274575141, + "591": 1.5028663981, + "592": 1.5782752821, + "593": 1.6549109978, + "594": 1.7315467135, + "595": 1.8091068148, + "596": 1.8866669161, + "597": 1.9648453086, + "598": 2.0430237012, + "599": 2.1215118506, + "600": 2.2, + "601": 2.2784881494, + "602": 2.3569762988, + "603": 2.4351546914, + "604": 2.5133330839, + "605": 2.5908931852, + "606": 2.6684532865, + "607": 2.7450890022, + "608": 2.8217247179, + "609": 2.8971336019, + "610": 2.9725424859, + "611": 3.0464269338, + "612": 3.1203113817, + "613": 3.1923798053, + "614": 3.2644482289, + "615": 3.3344162071, + "616": 3.4043841853, + "617": 3.4719755864, + "618": 3.5395669874, + "619": 3.6045150591, + "620": 3.6694631307, + "621": 3.7315115526, + "622": 3.7935599744, + "623": 3.8524638696, + "624": 3.9113677648, + "625": 3.9668946667, + "626": 4.0224215686, + "627": 4.0743523377, + "628": 4.1262831069, + "629": 4.1744127964, + "630": 4.2225424859, + "631": 4.2666811498, + "632": 4.3108198138, + "633": 4.3507932569, + "634": 4.3907667001, + "635": 4.4264171656, + "636": 4.4620676312, + "637": 4.4932544229, + "638": 4.5244412147, + "639": 4.5510412527, + "640": 4.5776412907, + "641": 4.5995495968, + "642": 4.6214579028, + "643": 4.6385880148, + "644": 4.6557181268, + "645": 4.6680024401, + "646": 4.6802867533, + "647": 4.6876767872, + "648": 4.6950668211, + "649": 4.6975334105, + "650": 4.7, + "651": 4.6975334105, + "652": 4.6950668211, + "653": 4.6876767872, + "654": 4.6802867533, + "655": 4.6680024401, + "656": 4.6557181268, + "657": 4.6385880148, + "658": 4.6214579028, + "659": 4.5995495968, + "660": 4.5776412907, + "661": 4.5510412527, + "662": 4.5244412147, + "663": 4.4932544229, + "664": 4.4620676312, + "665": 4.4264171656, + "666": 4.3907667001, + "667": 4.3507932569, + "668": 4.3108198138, + "669": 4.2666811498, + "670": 4.2225424859, + "671": 4.1744127964, + "672": 4.1262831069, + "673": 4.0743523377, + "674": 4.0224215686, + "675": 3.9668946667, + "676": 3.9113677648, + "677": 3.8524638696, + "678": 3.7935599744, + "679": 3.7315115526, + "680": 3.6694631307, + "681": 3.6045150591, + "682": 3.5395669874, + "683": 3.4719755864, + "684": 3.4043841853, + "685": 3.3344162071, + "686": 3.2644482289, + "687": 3.1923798053, + "688": 3.1203113817, + "689": 3.0464269338, + "690": 2.9725424859, + "691": 2.8971336019, + "692": 2.8217247179, + "693": 2.7450890022, + "694": 2.6684532865, + "695": 2.5908931852, + "696": 2.5133330839, + "697": 2.4351546914, + "698": 2.3569762988, + "699": 2.2784881494, + "700": 2.2, + "701": 2.1215118506, + "702": 2.0430237012, + "703": 1.9648453086, + "704": 1.8866669161, + "705": 1.8091068148, + "706": 1.7315467135, + "707": 1.6549109978, + "708": 1.5782752821, + "709": 1.5028663981, + "710": 1.4274575141, + "711": 1.3535730662, + "712": 1.2796886183, + "713": 1.2076201947, + "714": 1.1355517711, + "715": 1.0655837929, + "716": 0.9956158147, + "717": 0.9280244136, + "718": 0.8604330126, + "719": 0.7954849409, + "720": 0.7305368693, + "721": 0.6684884474, + "722": 0.6064400256, + "723": 0.5475361304, + "724": 0.4886322352, + "725": 0.4331053333, + "726": 0.3775784314, + "727": 0.3256476623, + "728": 0.2737168931, + "729": 0.2255872036, + "730": 0.1774575141, + "731": 0.1333188502, + "732": 0.0891801862, + "733": 0.0492067431, + "734": 0.0092332999, + "735": -0.0264171656, + "736": -0.0620676312, + "737": -0.0932544229, + "738": -0.1244412147, + "739": -0.1510412527, + "740": -0.1776412907, + "741": -0.1995495968, + "742": -0.2214579028, + "743": -0.2385880148, + "744": -0.2557181268, + "745": -0.2680024401, + "746": -0.2802867533, + "747": -0.2876767872, + "748": -0.2950668211, + "749": -0.2975334105, + "750": -0.3, + "751": -0.2975334105, + "752": -0.2950668211, + "753": -0.2876767872, + "754": -0.2802867533, + "755": -0.2680024401, + "756": -0.2557181268, + "757": -0.2385880148, + "758": -0.2214579028, + "759": -0.1995495968, + "760": -0.1776412907, + "761": -0.1510412527, + "762": -0.1244412147, + "763": -0.0932544229, + "764": -0.0620676312, + "765": -0.0264171656, + "766": 0.0092332999, + "767": 0.0492067431, + "768": 0.0891801862, + "769": 0.1333188502, + "770": 0.1774575141, + "771": 0.2255872036, + "772": 0.2737168931, + "773": 0.3256476623, + "774": 0.3775784314, + "775": 0.4331053333, + "776": 0.4886322352, + "777": 0.5475361304, + "778": 0.6064400256, + "779": 0.6684884474, + "780": 0.7305368693, + "781": 0.7954849409, + "782": 0.8604330126, + "783": 0.9280244136, + "784": 0.9956158147, + "785": 1.0655837929, + "786": 1.1355517711, + "787": 1.2076201947, + "788": 1.2796886183, + "789": 1.3535730662, + "790": 1.4274575141, + "791": 1.5028663981, + "792": 1.5782752821, + "793": 1.6549109978, + "794": 1.7315467135, + "795": 1.8091068148, + "796": 1.8866669161, + "797": 1.9648453086, + "798": 2.0430237012, + "799": 2.1215118506, + "800": 2.2, + "801": 2.2784881494, + "802": 2.3569762988, + "803": 2.4351546914, + "804": 2.5133330839, + "805": 2.5908931852, + "806": 2.6684532865, + "807": 2.7450890022, + "808": 2.8217247179, + "809": 2.8971336019, + "810": 2.9725424859, + "811": 3.0464269338, + "812": 3.1203113817, + "813": 3.1923798053, + "814": 3.2644482289, + "815": 3.3344162071, + "816": 3.4043841853, + "817": 3.4719755864, + "818": 3.5395669874, + "819": 3.6045150591, + "820": 3.6694631307, + "821": 3.7315115526, + "822": 3.7935599744, + "823": 3.8524638696, + "824": 3.9113677648, + "825": 3.9668946667, + "826": 4.0224215686, + "827": 4.0743523377, + "828": 4.1262831069, + "829": 4.1744127964, + "830": 4.2225424859, + "831": 4.2666811498, + "832": 4.3108198138, + "833": 4.3507932569, + "834": 4.3907667001, + "835": 4.4264171656, + "836": 4.4620676312, + "837": 4.4932544229, + "838": 4.5244412147, + "839": 4.5510412527, + "840": 4.5776412907, + "841": 4.5995495968, + "842": 4.6214579028, + "843": 4.6385880148, + "844": 4.6557181268, + "845": 4.6680024401, + "846": 4.6802867533, + "847": 4.6876767872, + "848": 4.6950668211, + "849": 4.6975334105, + "850": 4.7, + "851": 4.6975334105, + "852": 4.6950668211, + "853": 4.6876767872, + "854": 4.6802867533, + "855": 4.6680024401, + "856": 4.6557181268, + "857": 4.6385880148, + "858": 4.6214579028, + "859": 4.5995495968, + "860": 4.5776412907, + "861": 4.5510412527, + "862": 4.5244412147, + "863": 4.4932544229, + "864": 4.4620676312, + "865": 4.4264171656, + "866": 4.3907667001, + "867": 4.3507932569, + "868": 4.3108198138, + "869": 4.2666811498, + "870": 4.2225424859, + "871": 4.1744127964, + "872": 4.1262831069, + "873": 4.0743523377, + "874": 4.0224215686, + "875": 3.9668946667, + "876": 3.9113677648, + "877": 3.8524638696, + "878": 3.7935599744, + "879": 3.7315115526, + "880": 3.6694631307, + "881": 3.6045150591, + "882": 3.5395669874, + "883": 3.4719755864, + "884": 3.4043841853, + "885": 3.3344162071, + "886": 3.2644482289, + "887": 3.1923798053, + "888": 3.1203113817, + "889": 3.0464269338, + "890": 2.9725424859, + "891": 2.8971336019, + "892": 2.8217247179, + "893": 2.7450890022, + "894": 2.6684532865, + "895": 2.5908931852, + "896": 2.5133330839, + "897": 2.4351546914, + "898": 2.3569762988, + "899": 2.2784881494, + "900": 2.2, + "901": 2.1215118506, + "902": 2.0430237012, + "903": 1.9648453086, + "904": 1.8866669161, + "905": 1.8091068148, + "906": 1.7315467135, + "907": 1.6549109978, + "908": 1.5782752821, + "909": 1.5028663981, + "910": 1.4274575141, + "911": 1.3535730662, + "912": 1.2796886183, + "913": 1.2076201947, + "914": 1.1355517711, + "915": 1.0655837929, + "916": 0.9956158147, + "917": 0.9280244136, + "918": 0.8604330126, + "919": 0.7954849409, + "920": 0.7305368693, + "921": 0.6684884474, + "922": 0.6064400256, + "923": 0.5475361304, + "924": 0.4886322352, + "925": 0.4331053333, + "926": 0.3775784314, + "927": 0.3256476623, + "928": 0.2737168931, + "929": 0.2255872036, + "930": 0.1774575141, + "931": 0.1333188502, + "932": 0.0891801862, + "933": 0.0492067431, + "934": 0.0092332999, + "935": -0.0264171656, + "936": -0.0620676312, + "937": -0.0932544229, + "938": -0.1244412147, + "939": -0.1510412527, + "940": -0.1776412907, + "941": -0.1995495968, + "942": -0.2214579028, + "943": -0.2385880148, + "944": -0.2557181268, + "945": -0.2680024401, + "946": -0.2802867533, + "947": -0.2876767872, + "948": -0.2950668211, + "949": -0.2975334105, + "950": -0.3, + "951": -0.2975334105, + "952": -0.2950668211, + "953": -0.2876767872, + "954": -0.2802867533, + "955": -0.2680024401, + "956": -0.2557181268, + "957": -0.2385880148, + "958": -0.2214579028, + "959": -0.1995495968, + "960": -0.1776412907, + "961": -0.1510412527, + "962": -0.1244412147, + "963": -0.0932544229, + "964": -0.0620676312, + "965": -0.0264171656, + "966": 0.0092332999, + "967": 0.0492067431, + "968": 0.0891801862, + "969": 0.1333188502, + "970": 0.1774575141, + "971": 0.2255872036, + "972": 0.2737168931, + "973": 0.3256476623, + "974": 0.3775784314, + "975": 0.4331053333, + "976": 0.4886322352, + "977": 0.5475361304, + "978": 0.6064400256, + "979": 0.6684884474, + "980": 0.7305368693, + "981": 0.7954849409, + "982": 0.8604330126, + "983": 0.9280244136, + "984": 0.9956158147, + "985": 1.0655837929, + "986": 1.1355517711, + "987": 1.2076201947, + "988": 1.2796886183, + "989": 1.3535730662, + "990": 1.4274575141, + "991": 1.5028663981, + "992": 1.5782752821, + "993": 1.6549109978, + "994": 1.7315467135, + "995": 1.8091068148, + "996": 1.8866669161, + "997": 1.9648453086, + "998": 2.0430237012, + "999": 2.1215118506, + "1000": 2.2, + "1001": 2.2784881494, + "1002": 2.3569762988, + "1003": 2.4351546914, + "1004": 2.5133330839, + "1005": 2.5908931852, + "1006": 2.6684532865, + "1007": 2.7450890022, + "1008": 2.8217247179, + "1009": 2.8971336019, + "1010": 2.9725424859, + "1011": 3.0464269338, + "1012": 3.1203113817, + "1013": 3.1923798053, + "1014": 3.2644482289, + "1015": 3.3344162071, + "1016": 3.4043841853, + "1017": 3.4719755864, + "1018": 3.5395669874, + "1019": 3.6045150591, + "1020": 3.6694631307, + "1021": 3.7315115526, + "1022": 3.7935599744, + "1023": 3.8524638696, + "1024": 3.9113677648, + "1025": 3.9668946667, + "1026": 4.0224215686, + "1027": 4.0743523377, + "1028": 4.1262831069, + "1029": 4.1744127964, + "1030": 4.2225424859, + "1031": 4.2666811498, + "1032": 4.3108198138, + "1033": 4.3507932569, + "1034": 4.3907667001, + "1035": 4.4264171656, + "1036": 4.4620676312, + "1037": 4.4932544229, + "1038": 4.5244412147, + "1039": 4.5510412527, + "1040": 4.5776412907, + "1041": 4.5995495968, + "1042": 4.6214579028, + "1043": 4.6385880148, + "1044": 4.6557181268, + "1045": 4.6680024401, + "1046": 4.6802867533, + "1047": 4.6876767872, + "1048": 4.6950668211, + "1049": 4.6975334105, + "1050": 4.7, + "1051": 4.6975334105, + "1052": 4.6950668211, + "1053": 4.6876767872, + "1054": 4.6802867533, + "1055": 4.6680024401, + "1056": 4.6557181268, + "1057": 4.6385880148, + "1058": 4.6214579028, + "1059": 4.5995495968, + "1060": 4.5776412907, + "1061": 4.5510412527, + "1062": 4.5244412147, + "1063": 4.4932544229, + "1064": 4.4620676312, + "1065": 4.4264171656, + "1066": 4.3907667001, + "1067": 4.3507932569, + "1068": 4.3108198138, + "1069": 4.2666811498, + "1070": 4.2225424859, + "1071": 4.1744127964, + "1072": 4.1262831069, + "1073": 4.0743523377, + "1074": 4.0224215686, + "1075": 3.9668946667, + "1076": 3.9113677648, + "1077": 3.8524638696, + "1078": 3.7935599744, + "1079": 3.7315115526, + "1080": 3.6694631307, + "1081": 3.6045150591, + "1082": 3.5395669874, + "1083": 3.4719755864, + "1084": 3.4043841853, + "1085": 3.3344162071, + "1086": 3.2644482289, + "1087": 3.1923798053, + "1088": 3.1203113817, + "1089": 3.0464269338, + "1090": 2.9725424859, + "1091": 2.8971336019, + "1092": 2.8217247179, + "1093": 2.7450890022, + "1094": 2.6684532865, + "1095": 2.5908931852, + "1096": 2.5133330839, + "1097": 2.4351546914, + "1098": 2.3569762988, + "1099": 2.2784881494, + "1100": 2.2, + "1101": 2.1215118506, + "1102": 2.0430237012, + "1103": 1.9648453086, + "1104": 1.8866669161, + "1105": 1.8091068148, + "1106": 1.7315467135, + "1107": 1.6549109978, + "1108": 1.5782752821, + "1109": 1.5028663981, + "1110": 1.4274575141, + "1111": 1.3535730662, + "1112": 1.2796886183, + "1113": 1.2076201947, + "1114": 1.1355517711, + "1115": 1.0655837929, + "1116": 0.9956158147, + "1117": 0.9280244136, + "1118": 0.8604330126, + "1119": 0.7954849409, + "1120": 0.7305368693, + "1121": 0.6684884474, + "1122": 0.6064400256, + "1123": 0.5475361304, + "1124": 0.4886322352, + "1125": 0.4331053333, + "1126": 0.3775784314, + "1127": 0.3256476623, + "1128": 0.2737168931, + "1129": 0.2255872036, + "1130": 0.1774575141, + "1131": 0.1333188502, + "1132": 0.0891801862, + "1133": 0.0492067431, + "1134": 0.0092332999, + "1135": -0.0264171656, + "1136": -0.0620676312, + "1137": -0.0932544229, + "1138": -0.1244412147, + "1139": -0.1510412527, + "1140": -0.1776412907, + "1141": -0.1995495968, + "1142": -0.2214579028, + "1143": -0.2385880148, + "1144": -0.2557181268, + "1145": -0.2680024401, + "1146": -0.2802867533, + "1147": -0.2876767872, + "1148": -0.2950668211, + "1149": -0.2975334105, + "1150": -0.3, + "1151": -0.2975334105, + "1152": -0.2950668211, + "1153": -0.2876767872, + "1154": -0.2802867533, + "1155": -0.2680024401, + "1156": -0.2557181268, + "1157": -0.2385880148, + "1158": -0.2214579028, + "1159": -0.1995495968, + "1160": -0.1776412907, + "1161": -0.1510412527, + "1162": -0.1244412147, + "1163": -0.0932544229, + "1164": -0.0620676312, + "1165": -0.0264171656, + "1166": 0.0092332999, + "1167": 0.0492067431, + "1168": 0.0891801862, + "1169": 0.1333188502, + "1170": 0.1774575141, + "1171": 0.2255872036, + "1172": 0.2737168931, + "1173": 0.3256476623, + "1174": 0.3775784314, + "1175": 0.4331053333, + "1176": 0.4886322352, + "1177": 0.5475361304, + "1178": 0.6064400256, + "1179": 0.6684884474, + "1180": 0.7305368693, + "1181": 0.7954849409, + "1182": 0.8604330126, + "1183": 0.9280244136, + "1184": 0.9956158147, + "1185": 1.0655837929, + "1186": 1.1355517711, + "1187": 1.2076201947, + "1188": 1.2796886183, + "1189": 1.3535730662, + "1190": 1.4274575141, + "1191": 1.5028663981, + "1192": 1.5782752821, + "1193": 1.6549109978, + "1194": 1.7315467135, + "1195": 1.8091068148, + "1196": 1.8866669161, + "1197": 1.9648453086, + "1198": 2.0430237012, + "1199": 2.1215118506, + "1200": 2.2, + "1201": 2.2784881494, + "1202": 2.3569762988, + "1203": 2.4351546914, + "1204": 2.5133330839, + "1205": 2.5908931852, + "1206": 2.6684532865, + "1207": 2.7450890022, + "1208": 2.8217247179, + "1209": 2.8971336019, + "1210": 2.9725424859, + "1211": 3.0464269338, + "1212": 3.1203113817, + "1213": 3.1923798053, + "1214": 3.2644482289, + "1215": 3.3344162071, + "1216": 3.4043841853, + "1217": 3.4719755864, + "1218": 3.5395669874, + "1219": 3.6045150591, + "1220": 3.6694631307, + "1221": 3.7315115526, + "1222": 3.7935599744, + "1223": 3.8524638696, + "1224": 3.9113677648, + "1225": 3.9668946667, + "1226": 4.0224215686, + "1227": 4.0743523377, + "1228": 4.1262831069, + "1229": 4.1744127964, + "1230": 4.2225424859, + "1231": 4.2666811498, + "1232": 4.3108198138, + "1233": 4.3507932569, + "1234": 4.3907667001, + "1235": 4.4264171656, + "1236": 4.4620676312, + "1237": 4.4932544229, + "1238": 4.5244412147, + "1239": 4.5510412527, + "1240": 4.5776412907, + "1241": 4.5995495968, + "1242": 4.6214579028, + "1243": 4.6385880148, + "1244": 4.6557181268, + "1245": 4.6680024401, + "1246": 4.6802867533, + "1247": 4.6876767872, + "1248": 4.6950668211, + "1249": 4.6975334105, + "1250": 4.7, + "1251": 4.6975334105, + "1252": 4.6950668211, + "1253": 4.6876767872, + "1254": 4.6802867533, + "1255": 4.6680024401, + "1256": 4.6557181268, + "1257": 4.6385880148, + "1258": 4.6214579028, + "1259": 4.5995495968, + "1260": 4.5776412907, + "1261": 4.5510412527, + "1262": 4.5244412147, + "1263": 4.4932544229, + "1264": 4.4620676312, + "1265": 4.4264171656, + "1266": 4.3907667001, + "1267": 4.3507932569, + "1268": 4.3108198138, + "1269": 4.2666811498, + "1270": 4.2225424859, + "1271": 4.1744127964, + "1272": 4.1262831069, + "1273": 4.0743523377, + "1274": 4.0224215686, + "1275": 3.9668946667, + "1276": 3.9113677648, + "1277": 3.8524638696, + "1278": 3.7935599744, + "1279": 3.7315115526, + "1280": 3.6694631307, + "1281": 3.6045150591, + "1282": 3.5395669874, + "1283": 3.4719755864, + "1284": 3.4043841853, + "1285": 3.3344162071, + "1286": 3.2644482289, + "1287": 3.1923798053, + "1288": 3.1203113817, + "1289": 3.0464269338, + "1290": 2.9725424859, + "1291": 2.8971336019, + "1292": 2.8217247179, + "1293": 2.7450890022, + "1294": 2.6684532865, + "1295": 2.5908931852, + "1296": 2.5133330839, + "1297": 2.4351546914, + "1298": 2.3569762988, + "1299": 2.2784881494, + "1300": 2.2, + "1301": 2.1215118506, + "1302": 2.0430237012, + "1303": 1.9648453086, + "1304": 1.8866669161, + "1305": 1.8091068148, + "1306": 1.7315467135, + "1307": 1.6549109978, + "1308": 1.5782752821, + "1309": 1.5028663981, + "1310": 1.4274575141, + "1311": 1.3535730662, + "1312": 1.2796886183, + "1313": 1.2076201947, + "1314": 1.1355517711, + "1315": 1.0655837929, + "1316": 0.9956158147, + "1317": 0.9280244136, + "1318": 0.8604330126, + "1319": 0.7954849409, + "1320": 0.7305368693, + "1321": 0.6684884474, + "1322": 0.6064400256, + "1323": 0.5475361304, + "1324": 0.4886322352, + "1325": 0.4331053333, + "1326": 0.3775784314, + "1327": 0.3256476623, + "1328": 0.2737168931, + "1329": 0.2255872036, + "1330": 0.1774575141, + "1331": 0.1333188502, + "1332": 0.0891801862, + "1333": 0.0492067431, + "1334": 0.0092332999, + "1335": -0.0264171656, + "1336": -0.0620676312, + "1337": -0.0932544229, + "1338": -0.1244412147, + "1339": -0.1510412527, + "1340": -0.1776412907, + "1341": -0.1995495968, + "1342": -0.2214579028, + "1343": -0.2385880148, + "1344": -0.2557181268, + "1345": -0.2680024401, + "1346": -0.2802867533, + "1347": -0.2876767872, + "1348": -0.2950668211, + "1349": -0.2975334105, + "1350": -0.3, + "1351": -0.2975334105, + "1352": -0.2950668211, + "1353": -0.2876767872, + "1354": -0.2802867533, + "1355": -0.2680024401, + "1356": -0.2557181268, + "1357": -0.2385880148, + "1358": -0.2214579028, + "1359": -0.1995495968, + "1360": -0.1776412907, + "1361": -0.1510412527, + "1362": -0.1244412147, + "1363": -0.0932544229, + "1364": -0.0620676312, + "1365": -0.0264171656, + "1366": 0.0092332999, + "1367": 0.0492067431, + "1368": 0.0891801862, + "1369": 0.1333188502, + "1370": 0.1774575141, + "1371": 0.2255872036, + "1372": 0.2737168931, + "1373": 0.3256476623, + "1374": 0.3775784314, + "1375": 0.4331053333, + "1376": 0.4886322352, + "1377": 0.5475361304, + "1378": 0.6064400256, + "1379": 0.6684884474, + "1380": 0.7305368693, + "1381": 0.7954849409, + "1382": 0.8604330126, + "1383": 0.9280244136, + "1384": 0.9956158147, + "1385": 1.0655837929, + "1386": 1.1355517711, + "1387": 1.2076201947, + "1388": 1.2796886183, + "1389": 1.3535730662, + "1390": 1.4274575141, + "1391": 1.5028663981, + "1392": 1.5782752821, + "1393": 1.6549109978, + "1394": 1.7315467135, + "1395": 1.8091068148, + "1396": 1.8866669161, + "1397": 1.9648453086, + "1398": 2.0430237012, + "1399": 2.1215118506, + "1400": 2.2, + "1401": 2.2784881494, + "1402": 2.3569762988, + "1403": 2.4351546914, + "1404": 2.5133330839, + "1405": 2.5908931852, + "1406": 2.6684532865, + "1407": 2.7450890022, + "1408": 2.8217247179, + "1409": 2.8971336019, + "1410": 2.9725424859, + "1411": 3.0464269338, + "1412": 3.1203113817, + "1413": 3.1923798053, + "1414": 3.2644482289, + "1415": 3.3344162071, + "1416": 3.4043841853, + "1417": 3.4719755864, + "1418": 3.5395669874, + "1419": 3.6045150591, + "1420": 3.6694631307, + "1421": 3.7315115526, + "1422": 3.7935599744, + "1423": 3.8524638696, + "1424": 3.9113677648, + "1425": 3.9668946667, + "1426": 4.0224215686, + "1427": 4.0743523377, + "1428": 4.1262831069, + "1429": 4.1744127964, + "1430": 4.2225424859, + "1431": 4.2666811498, + "1432": 4.3108198138, + "1433": 4.3507932569, + "1434": 4.3907667001, + "1435": 4.4264171656, + "1436": 4.4620676312, + "1437": 4.4932544229, + "1438": 4.5244412147, + "1439": 4.5510412527, + "1440": 4.5776412907, + "1441": 4.5995495968, + "1442": 4.6214579028, + "1443": 4.6385880148, + "1444": 4.6557181268, + "1445": 4.6680024401, + "1446": 4.6802867533, + "1447": 4.6876767872, + "1448": 4.6950668211, + "1449": 4.6975334105, + "1450": 4.7, + "1451": 4.6975334105, + "1452": 4.6950668211, + "1453": 4.6876767872, + "1454": 4.6802867533, + "1455": 4.6680024401, + "1456": 4.6557181268, + "1457": 4.6385880148, + "1458": 4.6214579028, + "1459": 4.5995495968, + "1460": 4.5776412907, + "1461": 4.5510412527, + "1462": 4.5244412147, + "1463": 4.4932544229, + "1464": 4.4620676312, + "1465": 4.4264171656, + "1466": 4.3907667001, + "1467": 4.3507932569, + "1468": 4.3108198138, + "1469": 4.2666811498, + "1470": 4.2225424859, + "1471": 4.1744127964, + "1472": 4.1262831069, + "1473": 4.0743523377, + "1474": 4.0224215686, + "1475": 3.9668946667, + "1476": 3.9113677648, + "1477": 3.8524638696, + "1478": 3.7935599744, + "1479": 3.7315115526, + "1480": 3.6694631307, + "1481": 3.6045150591, + "1482": 3.5395669874, + "1483": 3.4719755864, + "1484": 3.4043841853, + "1485": 3.3344162071, + "1486": 3.2644482289, + "1487": 3.1923798053, + "1488": 3.1203113817, + "1489": 3.0464269338, + "1490": 2.9725424859, + "1491": 2.8971336019, + "1492": 2.8217247179, + "1493": 2.7450890022, + "1494": 2.6684532865, + "1495": 2.5908931852, + "1496": 2.5133330839, + "1497": 2.4351546914, + "1498": 2.3569762988, + "1499": 2.2784881494, + "1500": 2.2, + "1501": 2.1215118506, + "1502": 2.0430237012, + "1503": 1.9648453086, + "1504": 1.8866669161, + "1505": 1.8091068148, + "1506": 1.7315467135, + "1507": 1.6549109978, + "1508": 1.5782752821, + "1509": 1.5028663981, + "1510": 1.4274575141, + "1511": 1.3535730662, + "1512": 1.2796886183, + "1513": 1.2076201947, + "1514": 1.1355517711, + "1515": 1.0655837929, + "1516": 0.9956158147, + "1517": 0.9280244136, + "1518": 0.8604330126, + "1519": 0.7954849409, + "1520": 0.7305368693, + "1521": 0.6684884474, + "1522": 0.6064400256, + "1523": 0.5475361304, + "1524": 0.4886322352, + "1525": 0.4331053333, + "1526": 0.3775784314, + "1527": 0.3256476623, + "1528": 0.2737168931, + "1529": 0.2255872036, + "1530": 0.1774575141, + "1531": 0.1333188502, + "1532": 0.0891801862, + "1533": 0.0492067431, + "1534": 0.0092332999, + "1535": -0.0264171656, + "1536": -0.0620676312, + "1537": -0.0932544229, + "1538": -0.1244412147, + "1539": -0.1510412527, + "1540": -0.1776412907, + "1541": -0.1995495968, + "1542": -0.2214579028, + "1543": -0.2385880148, + "1544": -0.2557181268, + "1545": -0.2680024401, + "1546": -0.2802867533, + "1547": -0.2876767872, + "1548": -0.2950668211, + "1549": -0.2975334105, + "1550": -0.3, + "1551": -0.2975334105, + "1552": -0.2950668211, + "1553": -0.2876767872, + "1554": -0.2802867533, + "1555": -0.2680024401, + "1556": -0.2557181268, + "1557": -0.2385880148, + "1558": -0.2214579028, + "1559": -0.1995495968, + "1560": -0.1776412907, + "1561": -0.1510412527, + "1562": -0.1244412147, + "1563": -0.0932544229, + "1564": -0.0620676312, + "1565": -0.0264171656, + "1566": 0.0092332999, + "1567": 0.0492067431, + "1568": 0.0891801862, + "1569": 0.1333188502, + "1570": 0.1774575141, + "1571": 0.2255872036, + "1572": 0.2737168931, + "1573": 0.3256476623, + "1574": 0.3775784314, + "1575": 0.4331053333, + "1576": 0.4886322352, + "1577": 0.5475361304, + "1578": 0.6064400256, + "1579": 0.6684884474, + "1580": 0.7305368693, + "1581": 0.7954849409, + "1582": 0.8604330126, + "1583": 0.9280244136, + "1584": 0.9956158147, + "1585": 1.0655837929, + "1586": 1.1355517711, + "1587": 1.2076201947, + "1588": 1.2796886183, + "1589": 1.3535730662, + "1590": 1.4274575141, + "1591": 1.5028663981, + "1592": 1.5782752821, + "1593": 1.6549109978, + "1594": 1.7315467135, + "1595": 1.8091068148, + "1596": 1.8866669161, + "1597": 1.9648453086, + "1598": 2.0430237012, + "1599": 2.1215118506, + "1600": 2.2, + "1601": 2.2784881494, + "1602": 2.3569762988, + "1603": 2.4351546914, + "1604": 2.5133330839, + "1605": 2.5908931852, + "1606": 2.6684532865, + "1607": 2.7450890022, + "1608": 2.8217247179, + "1609": 2.8971336019, + "1610": 2.9725424859, + "1611": 3.0464269338, + "1612": 3.1203113817, + "1613": 3.1923798053, + "1614": 3.2644482289, + "1615": 3.3344162071, + "1616": 3.4043841853, + "1617": 3.4719755864, + "1618": 3.5395669874, + "1619": 3.6045150591, + "1620": 3.6694631307, + "1621": 3.7315115526, + "1622": 3.7935599744, + "1623": 3.8524638696, + "1624": 3.9113677648, + "1625": 3.9668946667, + "1626": 4.0224215686, + "1627": 4.0743523377, + "1628": 4.1262831069, + "1629": 4.1744127964, + "1630": 4.2225424859, + "1631": 4.2666811498, + "1632": 4.3108198138, + "1633": 4.3507932569, + "1634": 4.3907667001, + "1635": 4.4264171656, + "1636": 4.4620676312, + "1637": 4.4932544229, + "1638": 4.5244412147, + "1639": 4.5510412527, + "1640": 4.5776412907, + "1641": 4.5995495968, + "1642": 4.6214579028, + "1643": 4.6385880148, + "1644": 4.6557181268, + "1645": 4.6680024401, + "1646": 4.6802867533, + "1647": 4.6876767872, + "1648": 4.6950668211, + "1649": 4.6975334105, + "1650": 4.7, + "1651": 4.6975334105, + "1652": 4.6950668211, + "1653": 4.6876767872, + "1654": 4.6802867533, + "1655": 4.6680024401, + "1656": 4.6557181268, + "1657": 4.6385880148, + "1658": 4.6214579028, + "1659": 4.5995495968, + "1660": 4.5776412907, + "1661": 4.5510412527, + "1662": 4.5244412147, + "1663": 4.4932544229, + "1664": 4.4620676312, + "1665": 4.4264171656, + "1666": 4.3907667001, + "1667": 4.3507932569, + "1668": 4.3108198138, + "1669": 4.2666811498, + "1670": 4.2225424859, + "1671": 4.1744127964, + "1672": 4.1262831069, + "1673": 4.0743523377, + "1674": 4.0224215686, + "1675": 3.9668946667, + "1676": 3.9113677648, + "1677": 3.8524638696, + "1678": 3.7935599744, + "1679": 3.7315115526, + "1680": 3.6694631307, + "1681": 3.6045150591, + "1682": 3.5395669874, + "1683": 3.4719755864, + "1684": 3.4043841853, + "1685": 3.3344162071, + "1686": 3.2644482289, + "1687": 3.1923798053, + "1688": 3.1203113817, + "1689": 3.0464269338, + "1690": 2.9725424859, + "1691": 2.8971336019, + "1692": 2.8217247179, + "1693": 2.7450890022, + "1694": 2.6684532865, + "1695": 2.5908931852, + "1696": 2.5133330839, + "1697": 2.4351546914, + "1698": 2.3569762988, + "1699": 2.2784881494, + "1700": 2.2, + "1701": 2.1215118506, + "1702": 2.0430237012, + "1703": 1.9648453086, + "1704": 1.8866669161, + "1705": 1.8091068148, + "1706": 1.7315467135, + "1707": 1.6549109978, + "1708": 1.5782752821, + "1709": 1.5028663981, + "1710": 1.4274575141, + "1711": 1.3535730662, + "1712": 1.2796886183, + "1713": 1.2076201947, + "1714": 1.1355517711, + "1715": 1.0655837929, + "1716": 0.9956158147, + "1717": 0.9280244136, + "1718": 0.8604330126, + "1719": 0.7954849409, + "1720": 0.7305368693, + "1721": 0.6684884474, + "1722": 0.6064400256, + "1723": 0.5475361304, + "1724": 0.4886322352, + "1725": 0.4331053333, + "1726": 0.3775784314, + "1727": 0.3256476623, + "1728": 0.2737168931, + "1729": 0.2255872036, + "1730": 0.1774575141, + "1731": 0.1333188502, + "1732": 0.0891801862, + "1733": 0.0492067431, + "1734": 0.0092332999, + "1735": -0.0264171656, + "1736": -0.0620676312, + "1737": -0.0932544229, + "1738": -0.1244412147, + "1739": -0.1510412527, + "1740": -0.1776412907, + "1741": -0.1995495968, + "1742": -0.2214579028, + "1743": -0.2385880148, + "1744": -0.2557181268, + "1745": -0.2680024401, + "1746": -0.2802867533, + "1747": -0.2876767872, + "1748": -0.2950668211, + "1749": -0.2975334105, + "1750": -0.3, + "1751": -0.2975334105, + "1752": -0.2950668211, + "1753": -0.2876767872, + "1754": -0.2802867533, + "1755": -0.2680024401, + "1756": -0.2557181268, + "1757": -0.2385880148, + "1758": -0.2214579028, + "1759": -0.1995495968, + "1760": -0.1776412907, + "1761": -0.1510412527, + "1762": -0.1244412147, + "1763": -0.0932544229, + "1764": -0.0620676312, + "1765": -0.0264171656, + "1766": 0.0092332999, + "1767": 0.0492067431, + "1768": 0.0891801862, + "1769": 0.1333188502, + "1770": 0.1774575141, + "1771": 0.2255872036, + "1772": 0.2737168931, + "1773": 0.3256476623, + "1774": 0.3775784314, + "1775": 0.4331053333, + "1776": 0.4886322352, + "1777": 0.5475361304, + "1778": 0.6064400256, + "1779": 0.6684884474, + "1780": 0.7305368693, + "1781": 0.7954849409, + "1782": 0.8604330126, + "1783": 0.9280244136, + "1784": 0.9956158147, + "1785": 1.0655837929, + "1786": 1.1355517711, + "1787": 1.2076201947, + "1788": 1.2796886183, + "1789": 1.3535730662, + "1790": 1.4274575141, + "1791": 1.5028663981, + "1792": 1.5782752821, + "1793": 1.6549109978, + "1794": 1.7315467135, + "1795": 1.8091068148, + "1796": 1.8866669161, + "1797": 1.9648453086, + "1798": 2.0430237012, + "1799": 2.1215118506, + "1800": 2.2, + "1801": 2.2784881494, + "1802": 2.3569762988, + "1803": 2.4351546914, + "1804": 2.5133330839, + "1805": 2.5908931852, + "1806": 2.6684532865, + "1807": 2.7450890022, + "1808": 2.8217247179, + "1809": 2.8971336019, + "1810": 2.9725424859, + "1811": 3.0464269338, + "1812": 3.1203113817, + "1813": 3.1923798053, + "1814": 3.2644482289, + "1815": 3.3344162071, + "1816": 3.4043841853, + "1817": 3.4719755864, + "1818": 3.5395669874, + "1819": 3.6045150591, + "1820": 3.6694631307, + "1821": 3.7315115526, + "1822": 3.7935599744, + "1823": 3.8524638696, + "1824": 3.9113677648, + "1825": 3.9668946667, + "1826": 4.0224215686, + "1827": 4.0743523377, + "1828": 4.1262831069, + "1829": 4.1744127964, + "1830": 4.2225424859, + "1831": 4.2666811498, + "1832": 4.3108198138, + "1833": 4.3507932569, + "1834": 4.3907667001, + "1835": 4.4264171656, + "1836": 4.4620676312, + "1837": 4.4932544229, + "1838": 4.5244412147, + "1839": 4.5510412527, + "1840": 4.5776412907, + "1841": 4.5995495968, + "1842": 4.6214579028, + "1843": 4.6385880148, + "1844": 4.6557181268, + "1845": 4.6680024401, + "1846": 4.6802867533, + "1847": 4.6876767872, + "1848": 4.6950668211, + "1849": 4.6975334105, + "1850": 4.7, + "1851": 4.6975334105, + "1852": 4.6950668211, + "1853": 4.6876767872, + "1854": 4.6802867533, + "1855": 4.6680024401, + "1856": 4.6557181268, + "1857": 4.6385880148, + "1858": 4.6214579028, + "1859": 4.5995495968, + "1860": 4.5776412907, + "1861": 4.5510412527, + "1862": 4.5244412147, + "1863": 4.4932544229, + "1864": 4.4620676312, + "1865": 4.4264171656, + "1866": 4.3907667001, + "1867": 4.3507932569, + "1868": 4.3108198138, + "1869": 4.2666811498, + "1870": 4.2225424859, + "1871": 4.1744127964, + "1872": 4.1262831069, + "1873": 4.0743523377, + "1874": 4.0224215686, + "1875": 3.9668946667, + "1876": 3.9113677648, + "1877": 3.8524638696, + "1878": 3.7935599744, + "1879": 3.7315115526, + "1880": 3.6694631307, + "1881": 3.6045150591, + "1882": 3.5395669874, + "1883": 3.4719755864, + "1884": 3.4043841853, + "1885": 3.3344162071, + "1886": 3.2644482289, + "1887": 3.1923798053, + "1888": 3.1203113817, + "1889": 3.0464269338, + "1890": 2.9725424859, + "1891": 2.8971336019, + "1892": 2.8217247179, + "1893": 2.7450890022, + "1894": 2.6684532865, + "1895": 2.5908931852, + "1896": 2.5133330839, + "1897": 2.4351546914, + "1898": 2.3569762988, + "1899": 2.2784881494, + "1900": 2.2, + "1901": 2.1215118506, + "1902": 2.0430237012, + "1903": 1.9648453086, + "1904": 1.8866669161, + "1905": 1.8091068148, + "1906": 1.7315467135, + "1907": 1.6549109978, + "1908": 1.5782752821, + "1909": 1.5028663981, + "1910": 1.4274575141, + "1911": 1.3535730662, + "1912": 1.2796886183, + "1913": 1.2076201947, + "1914": 1.1355517711, + "1915": 1.0655837929, + "1916": 0.9956158147, + "1917": 0.9280244136, + "1918": 0.8604330126, + "1919": 0.7954849409, + "1920": 0.7305368693, + "1921": 0.6684884474, + "1922": 0.6064400256, + "1923": 0.5475361304, + "1924": 0.4886322352, + "1925": 0.4331053333, + "1926": 0.3775784314, + "1927": 0.3256476623, + "1928": 0.2737168931, + "1929": 0.2255872036, + "1930": 0.1774575141, + "1931": 0.1333188502, + "1932": 0.0891801862, + "1933": 0.0492067431, + "1934": 0.0092332999, + "1935": -0.0264171656, + "1936": -0.0620676312, + "1937": -0.0932544229, + "1938": -0.1244412147, + "1939": -0.1510412527, + "1940": -0.1776412907, + "1941": -0.1995495968, + "1942": -0.2214579028, + "1943": -0.2385880148, + "1944": -0.2557181268, + "1945": -0.2680024401, + "1946": -0.2802867533, + "1947": -0.2876767872, + "1948": -0.2950668211, + "1949": -0.2975334105, + "1950": -0.3, + "1951": -0.2975334105, + "1952": -0.2950668211, + "1953": -0.2876767872, + "1954": -0.2802867533, + "1955": -0.2680024401, + "1956": -0.2557181268, + "1957": -0.2385880148, + "1958": -0.2214579028, + "1959": -0.1995495968, + "1960": -0.1776412907, + "1961": -0.1510412527, + "1962": -0.1244412147, + "1963": -0.0932544229, + "1964": -0.0620676312, + "1965": -0.0264171656, + "1966": 0.0092332999, + "1967": 0.0492067431, + "1968": 0.0891801862, + "1969": 0.1333188502, + "1970": 0.1774575141, + "1971": 0.2255872036, + "1972": 0.2737168931, + "1973": 0.3256476623, + "1974": 0.3775784314, + "1975": 0.4331053333, + "1976": 0.4886322352, + "1977": 0.5475361304, + "1978": 0.6064400256, + "1979": 0.6684884474, + "1980": 0.7305368693, + "1981": 0.7954849409, + "1982": 0.8604330126, + "1983": 0.9280244136, + "1984": 0.9956158147, + "1985": 1.0655837929, + "1986": 1.1355517711, + "1987": 1.2076201947, + "1988": 1.2796886183, + "1989": 1.3535730662, + "1990": 1.4274575141, + "1991": 1.5028663981, + "1992": 1.5782752821, + "1993": 1.6549109978, + "1994": 1.7315467135, + "1995": 1.8091068148, + "1996": 1.8866669161, + "1997": 1.9648453086, + "1998": 2.0430237012, + "1999": 2.1215118506, + "2000": 2.2 + }, + "flow_out": { + "0": 2.200000001, + "1": 2.2784881489, + "2": 2.3569762991, + "3": 2.4351546912, + "4": 2.513333084, + "5": 2.5908931852, + "6": 2.6684532865, + "7": 2.7450890022, + "8": 2.8217247179, + "9": 2.8971336019, + "10": 2.9725424859, + "11": 3.0464269338, + "12": 3.1203113817, + "13": 3.1923798053, + "14": 3.2644482289, + "15": 3.3344162071, + "16": 3.4043841853, + "17": 3.4719755864, + "18": 3.5395669874, + "19": 3.6045150591, + "20": 3.6694631307, + "21": 3.7315115526, + "22": 3.7935599744, + "23": 3.8524638696, + "24": 3.9113677648, + "25": 3.9668946667, + "26": 4.0224215686, + "27": 4.0743523377, + "28": 4.1262831069, + "29": 4.1744127964, + "30": 4.2225424859, + "31": 4.2666811498, + "32": 4.3108198138, + "33": 4.3507932569, + "34": 4.3907667001, + "35": 4.4264171656, + "36": 4.4620676312, + "37": 4.4932544229, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2, + "201": 2.2784881494, + "202": 2.3569762988, + "203": 2.4351546914, + "204": 2.5133330839, + "205": 2.5908931852, + "206": 2.6684532865, + "207": 2.7450890022, + "208": 2.8217247179, + "209": 2.8971336019, + "210": 2.9725424859, + "211": 3.0464269338, + "212": 3.1203113817, + "213": 3.1923798053, + "214": 3.2644482289, + "215": 3.3344162071, + "216": 3.4043841853, + "217": 3.4719755864, + "218": 3.5395669874, + "219": 3.6045150591, + "220": 3.6694631307, + "221": 3.7315115526, + "222": 3.7935599744, + "223": 3.8524638696, + "224": 3.9113677648, + "225": 3.9668946667, + "226": 4.0224215686, + "227": 4.0743523377, + "228": 4.1262831069, + "229": 4.1744127964, + "230": 4.2225424859, + "231": 4.2666811498, + "232": 4.3108198138, + "233": 4.3507932569, + "234": 4.3907667001, + "235": 4.4264171656, + "236": 4.4620676312, + "237": 4.4932544229, + "238": 4.5244412147, + "239": 4.5510412527, + "240": 4.5776412907, + "241": 4.5995495968, + "242": 4.6214579028, + "243": 4.6385880148, + "244": 4.6557181268, + "245": 4.6680024401, + "246": 4.6802867533, + "247": 4.6876767872, + "248": 4.6950668211, + "249": 4.6975334105, + "250": 4.7, + "251": 4.6975334105, + "252": 4.6950668211, + "253": 4.6876767872, + "254": 4.6802867533, + "255": 4.6680024401, + "256": 4.6557181268, + "257": 4.6385880148, + "258": 4.6214579028, + "259": 4.5995495968, + "260": 4.5776412907, + "261": 4.5510412527, + "262": 4.5244412147, + "263": 4.4932544229, + "264": 4.4620676312, + "265": 4.4264171656, + "266": 4.3907667001, + "267": 4.3507932569, + "268": 4.3108198138, + "269": 4.2666811498, + "270": 4.2225424859, + "271": 4.1744127964, + "272": 4.1262831069, + "273": 4.0743523377, + "274": 4.0224215686, + "275": 3.9668946667, + "276": 3.9113677648, + "277": 3.8524638696, + "278": 3.7935599744, + "279": 3.7315115526, + "280": 3.6694631307, + "281": 3.6045150591, + "282": 3.5395669874, + "283": 3.4719755864, + "284": 3.4043841853, + "285": 3.3344162071, + "286": 3.2644482289, + "287": 3.1923798053, + "288": 3.1203113817, + "289": 3.0464269338, + "290": 2.9725424859, + "291": 2.8971336019, + "292": 2.8217247179, + "293": 2.7450890022, + "294": 2.6684532865, + "295": 2.5908931852, + "296": 2.5133330839, + "297": 2.4351546914, + "298": 2.3569762988, + "299": 2.2784881494, + "300": 2.2, + "301": 2.1215118506, + "302": 2.0430237012, + "303": 1.9648453086, + "304": 1.8866669161, + "305": 1.8091068148, + "306": 1.7315467135, + "307": 1.6549109978, + "308": 1.5782752821, + "309": 1.5028663981, + "310": 1.4274575141, + "311": 1.3535730662, + "312": 1.2796886183, + "313": 1.2076201947, + "314": 1.1355517711, + "315": 1.0655837929, + "316": 0.9956158147, + "317": 0.9280244136, + "318": 0.8604330126, + "319": 0.7954849409, + "320": 0.7305368693, + "321": 0.6684884474, + "322": 0.6064400256, + "323": 0.5475361304, + "324": 0.4886322352, + "325": 0.4331053333, + "326": 0.3775784314, + "327": 0.3256476623, + "328": 0.2737168931, + "329": 0.2255872036, + "330": 0.1774575141, + "331": 0.1333188502, + "332": 0.0891801862, + "333": 0.0492067431, + "334": 0.0092332999, + "335": -0.0264171656, + "336": -0.0620676312, + "337": -0.0932544229, + "338": -0.1244412147, + "339": -0.1510412527, + "340": -0.1776412907, + "341": -0.1995495968, + "342": -0.2214579028, + "343": -0.2385880148, + "344": -0.2557181268, + "345": -0.2680024401, + "346": -0.2802867533, + "347": -0.2876767872, + "348": -0.2950668211, + "349": -0.2975334105, + "350": -0.3, + "351": -0.2975334105, + "352": -0.2950668211, + "353": -0.2876767872, + "354": -0.2802867533, + "355": -0.2680024401, + "356": -0.2557181268, + "357": -0.2385880148, + "358": -0.2214579028, + "359": -0.1995495968, + "360": -0.1776412907, + "361": -0.1510412527, + "362": -0.1244412147, + "363": -0.0932544229, + "364": -0.0620676312, + "365": -0.0264171656, + "366": 0.0092332999, + "367": 0.0492067431, + "368": 0.0891801862, + "369": 0.1333188502, + "370": 0.1774575141, + "371": 0.2255872036, + "372": 0.2737168931, + "373": 0.3256476623, + "374": 0.3775784314, + "375": 0.4331053333, + "376": 0.4886322352, + "377": 0.5475361304, + "378": 0.6064400256, + "379": 0.6684884474, + "380": 0.7305368693, + "381": 0.7954849409, + "382": 0.8604330126, + "383": 0.9280244136, + "384": 0.9956158147, + "385": 1.0655837929, + "386": 1.1355517711, + "387": 1.2076201947, + "388": 1.2796886183, + "389": 1.3535730662, + "390": 1.4274575141, + "391": 1.5028663981, + "392": 1.5782752821, + "393": 1.6549109978, + "394": 1.7315467135, + "395": 1.8091068148, + "396": 1.8866669161, + "397": 1.9648453086, + "398": 2.0430237012, + "399": 2.1215118506, + "400": 2.2, + "401": 2.2784881494, + "402": 2.3569762988, + "403": 2.4351546914, + "404": 2.5133330839, + "405": 2.5908931852, + "406": 2.6684532865, + "407": 2.7450890022, + "408": 2.8217247179, + "409": 2.8971336019, + "410": 2.9725424859, + "411": 3.0464269338, + "412": 3.1203113817, + "413": 3.1923798053, + "414": 3.2644482289, + "415": 3.3344162071, + "416": 3.4043841853, + "417": 3.4719755864, + "418": 3.5395669874, + "419": 3.6045150591, + "420": 3.6694631307, + "421": 3.7315115526, + "422": 3.7935599744, + "423": 3.8524638696, + "424": 3.9113677648, + "425": 3.9668946667, + "426": 4.0224215686, + "427": 4.0743523377, + "428": 4.1262831069, + "429": 4.1744127964, + "430": 4.2225424859, + "431": 4.2666811498, + "432": 4.3108198138, + "433": 4.3507932569, + "434": 4.3907667001, + "435": 4.4264171656, + "436": 4.4620676312, + "437": 4.4932544229, + "438": 4.5244412147, + "439": 4.5510412527, + "440": 4.5776412907, + "441": 4.5995495968, + "442": 4.6214579028, + "443": 4.6385880148, + "444": 4.6557181268, + "445": 4.6680024401, + "446": 4.6802867533, + "447": 4.6876767872, + "448": 4.6950668211, + "449": 4.6975334105, + "450": 4.7, + "451": 4.6975334105, + "452": 4.6950668211, + "453": 4.6876767872, + "454": 4.6802867533, + "455": 4.6680024401, + "456": 4.6557181268, + "457": 4.6385880148, + "458": 4.6214579028, + "459": 4.5995495968, + "460": 4.5776412907, + "461": 4.5510412527, + "462": 4.5244412147, + "463": 4.4932544229, + "464": 4.4620676312, + "465": 4.4264171656, + "466": 4.3907667001, + "467": 4.3507932569, + "468": 4.3108198138, + "469": 4.2666811498, + "470": 4.2225424859, + "471": 4.1744127964, + "472": 4.1262831069, + "473": 4.0743523377, + "474": 4.0224215686, + "475": 3.9668946667, + "476": 3.9113677648, + "477": 3.8524638696, + "478": 3.7935599744, + "479": 3.7315115526, + "480": 3.6694631307, + "481": 3.6045150591, + "482": 3.5395669874, + "483": 3.4719755864, + "484": 3.4043841853, + "485": 3.3344162071, + "486": 3.2644482289, + "487": 3.1923798053, + "488": 3.1203113817, + "489": 3.0464269338, + "490": 2.9725424859, + "491": 2.8971336019, + "492": 2.8217247179, + "493": 2.7450890022, + "494": 2.6684532865, + "495": 2.5908931852, + "496": 2.5133330839, + "497": 2.4351546914, + "498": 2.3569762988, + "499": 2.2784881494, + "500": 2.2, + "501": 2.1215118506, + "502": 2.0430237012, + "503": 1.9648453086, + "504": 1.8866669161, + "505": 1.8091068148, + "506": 1.7315467135, + "507": 1.6549109978, + "508": 1.5782752821, + "509": 1.5028663981, + "510": 1.4274575141, + "511": 1.3535730662, + "512": 1.2796886183, + "513": 1.2076201947, + "514": 1.1355517711, + "515": 1.0655837929, + "516": 0.9956158147, + "517": 0.9280244136, + "518": 0.8604330126, + "519": 0.7954849409, + "520": 0.7305368693, + "521": 0.6684884474, + "522": 0.6064400256, + "523": 0.5475361304, + "524": 0.4886322352, + "525": 0.4331053333, + "526": 0.3775784314, + "527": 0.3256476623, + "528": 0.2737168931, + "529": 0.2255872036, + "530": 0.1774575141, + "531": 0.1333188502, + "532": 0.0891801862, + "533": 0.0492067431, + "534": 0.0092332999, + "535": -0.0264171656, + "536": -0.0620676312, + "537": -0.0932544229, + "538": -0.1244412147, + "539": -0.1510412527, + "540": -0.1776412907, + "541": -0.1995495968, + "542": -0.2214579028, + "543": -0.2385880148, + "544": -0.2557181268, + "545": -0.2680024401, + "546": -0.2802867533, + "547": -0.2876767872, + "548": -0.2950668211, + "549": -0.2975334105, + "550": -0.3, + "551": -0.2975334105, + "552": -0.2950668211, + "553": -0.2876767872, + "554": -0.2802867533, + "555": -0.2680024401, + "556": -0.2557181268, + "557": -0.2385880148, + "558": -0.2214579028, + "559": -0.1995495968, + "560": -0.1776412907, + "561": -0.1510412527, + "562": -0.1244412147, + "563": -0.0932544229, + "564": -0.0620676312, + "565": -0.0264171656, + "566": 0.0092332999, + "567": 0.0492067431, + "568": 0.0891801862, + "569": 0.1333188502, + "570": 0.1774575141, + "571": 0.2255872036, + "572": 0.2737168931, + "573": 0.3256476623, + "574": 0.3775784314, + "575": 0.4331053333, + "576": 0.4886322352, + "577": 0.5475361304, + "578": 0.6064400256, + "579": 0.6684884474, + "580": 0.7305368693, + "581": 0.7954849409, + "582": 0.8604330126, + "583": 0.9280244136, + "584": 0.9956158147, + "585": 1.0655837929, + "586": 1.1355517711, + "587": 1.2076201947, + "588": 1.2796886183, + "589": 1.3535730662, + "590": 1.4274575141, + "591": 1.5028663981, + "592": 1.5782752821, + "593": 1.6549109978, + "594": 1.7315467135, + "595": 1.8091068148, + "596": 1.8866669161, + "597": 1.9648453086, + "598": 2.0430237012, + "599": 2.1215118506, + "600": 2.2, + "601": 2.2784881494, + "602": 2.3569762988, + "603": 2.4351546914, + "604": 2.5133330839, + "605": 2.5908931852, + "606": 2.6684532865, + "607": 2.7450890022, + "608": 2.8217247179, + "609": 2.8971336019, + "610": 2.9725424859, + "611": 3.0464269338, + "612": 3.1203113817, + "613": 3.1923798053, + "614": 3.2644482289, + "615": 3.3344162071, + "616": 3.4043841853, + "617": 3.4719755864, + "618": 3.5395669874, + "619": 3.6045150591, + "620": 3.6694631307, + "621": 3.7315115526, + "622": 3.7935599744, + "623": 3.8524638696, + "624": 3.9113677648, + "625": 3.9668946667, + "626": 4.0224215686, + "627": 4.0743523377, + "628": 4.1262831069, + "629": 4.1744127964, + "630": 4.2225424859, + "631": 4.2666811498, + "632": 4.3108198138, + "633": 4.3507932569, + "634": 4.3907667001, + "635": 4.4264171656, + "636": 4.4620676312, + "637": 4.4932544229, + "638": 4.5244412147, + "639": 4.5510412527, + "640": 4.5776412907, + "641": 4.5995495968, + "642": 4.6214579028, + "643": 4.6385880148, + "644": 4.6557181268, + "645": 4.6680024401, + "646": 4.6802867533, + "647": 4.6876767872, + "648": 4.6950668211, + "649": 4.6975334105, + "650": 4.7, + "651": 4.6975334105, + "652": 4.6950668211, + "653": 4.6876767872, + "654": 4.6802867533, + "655": 4.6680024401, + "656": 4.6557181268, + "657": 4.6385880148, + "658": 4.6214579028, + "659": 4.5995495968, + "660": 4.5776412907, + "661": 4.5510412527, + "662": 4.5244412147, + "663": 4.4932544229, + "664": 4.4620676312, + "665": 4.4264171656, + "666": 4.3907667001, + "667": 4.3507932569, + "668": 4.3108198138, + "669": 4.2666811498, + "670": 4.2225424859, + "671": 4.1744127964, + "672": 4.1262831069, + "673": 4.0743523377, + "674": 4.0224215686, + "675": 3.9668946667, + "676": 3.9113677648, + "677": 3.8524638696, + "678": 3.7935599744, + "679": 3.7315115526, + "680": 3.6694631307, + "681": 3.6045150591, + "682": 3.5395669874, + "683": 3.4719755864, + "684": 3.4043841853, + "685": 3.3344162071, + "686": 3.2644482289, + "687": 3.1923798053, + "688": 3.1203113817, + "689": 3.0464269338, + "690": 2.9725424859, + "691": 2.8971336019, + "692": 2.8217247179, + "693": 2.7450890022, + "694": 2.6684532865, + "695": 2.5908931852, + "696": 2.5133330839, + "697": 2.4351546914, + "698": 2.3569762988, + "699": 2.2784881494, + "700": 2.2, + "701": 2.1215118506, + "702": 2.0430237012, + "703": 1.9648453086, + "704": 1.8866669161, + "705": 1.8091068148, + "706": 1.7315467135, + "707": 1.6549109978, + "708": 1.5782752821, + "709": 1.5028663981, + "710": 1.4274575141, + "711": 1.3535730662, + "712": 1.2796886183, + "713": 1.2076201947, + "714": 1.1355517711, + "715": 1.0655837929, + "716": 0.9956158147, + "717": 0.9280244136, + "718": 0.8604330126, + "719": 0.7954849409, + "720": 0.7305368693, + "721": 0.6684884474, + "722": 0.6064400256, + "723": 0.5475361304, + "724": 0.4886322352, + "725": 0.4331053333, + "726": 0.3775784314, + "727": 0.3256476623, + "728": 0.2737168931, + "729": 0.2255872036, + "730": 0.1774575141, + "731": 0.1333188502, + "732": 0.0891801862, + "733": 0.0492067431, + "734": 0.0092332999, + "735": -0.0264171656, + "736": -0.0620676312, + "737": -0.0932544229, + "738": -0.1244412147, + "739": -0.1510412527, + "740": -0.1776412907, + "741": -0.1995495968, + "742": -0.2214579028, + "743": -0.2385880148, + "744": -0.2557181268, + "745": -0.2680024401, + "746": -0.2802867533, + "747": -0.2876767872, + "748": -0.2950668211, + "749": -0.2975334105, + "750": -0.3, + "751": -0.2975334105, + "752": -0.2950668211, + "753": -0.2876767872, + "754": -0.2802867533, + "755": -0.2680024401, + "756": -0.2557181268, + "757": -0.2385880148, + "758": -0.2214579028, + "759": -0.1995495968, + "760": -0.1776412907, + "761": -0.1510412527, + "762": -0.1244412147, + "763": -0.0932544229, + "764": -0.0620676312, + "765": -0.0264171656, + "766": 0.0092332999, + "767": 0.0492067431, + "768": 0.0891801862, + "769": 0.1333188502, + "770": 0.1774575141, + "771": 0.2255872036, + "772": 0.2737168931, + "773": 0.3256476623, + "774": 0.3775784314, + "775": 0.4331053333, + "776": 0.4886322352, + "777": 0.5475361304, + "778": 0.6064400256, + "779": 0.6684884474, + "780": 0.7305368693, + "781": 0.7954849409, + "782": 0.8604330126, + "783": 0.9280244136, + "784": 0.9956158147, + "785": 1.0655837929, + "786": 1.1355517711, + "787": 1.2076201947, + "788": 1.2796886183, + "789": 1.3535730662, + "790": 1.4274575141, + "791": 1.5028663981, + "792": 1.5782752821, + "793": 1.6549109978, + "794": 1.7315467135, + "795": 1.8091068148, + "796": 1.8866669161, + "797": 1.9648453086, + "798": 2.0430237012, + "799": 2.1215118506, + "800": 2.2, + "801": 2.2784881494, + "802": 2.3569762988, + "803": 2.4351546914, + "804": 2.5133330839, + "805": 2.5908931852, + "806": 2.6684532865, + "807": 2.7450890022, + "808": 2.8217247179, + "809": 2.8971336019, + "810": 2.9725424859, + "811": 3.0464269338, + "812": 3.1203113817, + "813": 3.1923798053, + "814": 3.2644482289, + "815": 3.3344162071, + "816": 3.4043841853, + "817": 3.4719755864, + "818": 3.5395669874, + "819": 3.6045150591, + "820": 3.6694631307, + "821": 3.7315115526, + "822": 3.7935599744, + "823": 3.8524638696, + "824": 3.9113677648, + "825": 3.9668946667, + "826": 4.0224215686, + "827": 4.0743523377, + "828": 4.1262831069, + "829": 4.1744127964, + "830": 4.2225424859, + "831": 4.2666811498, + "832": 4.3108198138, + "833": 4.3507932569, + "834": 4.3907667001, + "835": 4.4264171656, + "836": 4.4620676312, + "837": 4.4932544229, + "838": 4.5244412147, + "839": 4.5510412527, + "840": 4.5776412907, + "841": 4.5995495968, + "842": 4.6214579028, + "843": 4.6385880148, + "844": 4.6557181268, + "845": 4.6680024401, + "846": 4.6802867533, + "847": 4.6876767872, + "848": 4.6950668211, + "849": 4.6975334105, + "850": 4.7, + "851": 4.6975334105, + "852": 4.6950668211, + "853": 4.6876767872, + "854": 4.6802867533, + "855": 4.6680024401, + "856": 4.6557181268, + "857": 4.6385880148, + "858": 4.6214579028, + "859": 4.5995495968, + "860": 4.5776412907, + "861": 4.5510412527, + "862": 4.5244412147, + "863": 4.4932544229, + "864": 4.4620676312, + "865": 4.4264171656, + "866": 4.3907667001, + "867": 4.3507932569, + "868": 4.3108198138, + "869": 4.2666811498, + "870": 4.2225424859, + "871": 4.1744127964, + "872": 4.1262831069, + "873": 4.0743523377, + "874": 4.0224215686, + "875": 3.9668946667, + "876": 3.9113677648, + "877": 3.8524638696, + "878": 3.7935599744, + "879": 3.7315115526, + "880": 3.6694631307, + "881": 3.6045150591, + "882": 3.5395669874, + "883": 3.4719755864, + "884": 3.4043841853, + "885": 3.3344162071, + "886": 3.2644482289, + "887": 3.1923798053, + "888": 3.1203113817, + "889": 3.0464269338, + "890": 2.9725424859, + "891": 2.8971336019, + "892": 2.8217247179, + "893": 2.7450890022, + "894": 2.6684532865, + "895": 2.5908931852, + "896": 2.5133330839, + "897": 2.4351546914, + "898": 2.3569762988, + "899": 2.2784881494, + "900": 2.2, + "901": 2.1215118506, + "902": 2.0430237012, + "903": 1.9648453086, + "904": 1.8866669161, + "905": 1.8091068148, + "906": 1.7315467135, + "907": 1.6549109978, + "908": 1.5782752821, + "909": 1.5028663981, + "910": 1.4274575141, + "911": 1.3535730662, + "912": 1.2796886183, + "913": 1.2076201947, + "914": 1.1355517711, + "915": 1.0655837929, + "916": 0.9956158147, + "917": 0.9280244136, + "918": 0.8604330126, + "919": 0.7954849409, + "920": 0.7305368693, + "921": 0.6684884474, + "922": 0.6064400256, + "923": 0.5475361304, + "924": 0.4886322352, + "925": 0.4331053333, + "926": 0.3775784314, + "927": 0.3256476623, + "928": 0.2737168931, + "929": 0.2255872036, + "930": 0.1774575141, + "931": 0.1333188502, + "932": 0.0891801862, + "933": 0.0492067431, + "934": 0.0092332999, + "935": -0.0264171656, + "936": -0.0620676312, + "937": -0.0932544229, + "938": -0.1244412147, + "939": -0.1510412527, + "940": -0.1776412907, + "941": -0.1995495968, + "942": -0.2214579028, + "943": -0.2385880148, + "944": -0.2557181268, + "945": -0.2680024401, + "946": -0.2802867533, + "947": -0.2876767872, + "948": -0.2950668211, + "949": -0.2975334105, + "950": -0.3, + "951": -0.2975334105, + "952": -0.2950668211, + "953": -0.2876767872, + "954": -0.2802867533, + "955": -0.2680024401, + "956": -0.2557181268, + "957": -0.2385880148, + "958": -0.2214579028, + "959": -0.1995495968, + "960": -0.1776412907, + "961": -0.1510412527, + "962": -0.1244412147, + "963": -0.0932544229, + "964": -0.0620676312, + "965": -0.0264171656, + "966": 0.0092332999, + "967": 0.0492067431, + "968": 0.0891801862, + "969": 0.1333188502, + "970": 0.1774575141, + "971": 0.2255872036, + "972": 0.2737168931, + "973": 0.3256476623, + "974": 0.3775784314, + "975": 0.4331053333, + "976": 0.4886322352, + "977": 0.5475361304, + "978": 0.6064400256, + "979": 0.6684884474, + "980": 0.7305368693, + "981": 0.7954849409, + "982": 0.8604330126, + "983": 0.9280244136, + "984": 0.9956158147, + "985": 1.0655837929, + "986": 1.1355517711, + "987": 1.2076201947, + "988": 1.2796886183, + "989": 1.3535730662, + "990": 1.4274575141, + "991": 1.5028663981, + "992": 1.5782752821, + "993": 1.6549109978, + "994": 1.7315467135, + "995": 1.8091068148, + "996": 1.8866669161, + "997": 1.9648453086, + "998": 2.0430237012, + "999": 2.1215118506, + "1000": 2.2, + "1001": 2.2784881494, + "1002": 2.3569762988, + "1003": 2.4351546914, + "1004": 2.5133330839, + "1005": 2.5908931852, + "1006": 2.6684532865, + "1007": 2.7450890022, + "1008": 2.8217247179, + "1009": 2.8971336019, + "1010": 2.9725424859, + "1011": 3.0464269338, + "1012": 3.1203113817, + "1013": 3.1923798053, + "1014": 3.2644482289, + "1015": 3.3344162071, + "1016": 3.4043841853, + "1017": 3.4719755864, + "1018": 3.5395669874, + "1019": 3.6045150591, + "1020": 3.6694631307, + "1021": 3.7315115526, + "1022": 3.7935599744, + "1023": 3.8524638696, + "1024": 3.9113677648, + "1025": 3.9668946667, + "1026": 4.0224215686, + "1027": 4.0743523377, + "1028": 4.1262831069, + "1029": 4.1744127964, + "1030": 4.2225424859, + "1031": 4.2666811498, + "1032": 4.3108198138, + "1033": 4.3507932569, + "1034": 4.3907667001, + "1035": 4.4264171656, + "1036": 4.4620676312, + "1037": 4.4932544229, + "1038": 4.5244412147, + "1039": 4.5510412527, + "1040": 4.5776412907, + "1041": 4.5995495968, + "1042": 4.6214579028, + "1043": 4.6385880148, + "1044": 4.6557181268, + "1045": 4.6680024401, + "1046": 4.6802867533, + "1047": 4.6876767872, + "1048": 4.6950668211, + "1049": 4.6975334105, + "1050": 4.7, + "1051": 4.6975334105, + "1052": 4.6950668211, + "1053": 4.6876767872, + "1054": 4.6802867533, + "1055": 4.6680024401, + "1056": 4.6557181268, + "1057": 4.6385880148, + "1058": 4.6214579028, + "1059": 4.5995495968, + "1060": 4.5776412907, + "1061": 4.5510412527, + "1062": 4.5244412147, + "1063": 4.4932544229, + "1064": 4.4620676312, + "1065": 4.4264171656, + "1066": 4.3907667001, + "1067": 4.3507932569, + "1068": 4.3108198138, + "1069": 4.2666811498, + "1070": 4.2225424859, + "1071": 4.1744127964, + "1072": 4.1262831069, + "1073": 4.0743523377, + "1074": 4.0224215686, + "1075": 3.9668946667, + "1076": 3.9113677648, + "1077": 3.8524638696, + "1078": 3.7935599744, + "1079": 3.7315115526, + "1080": 3.6694631307, + "1081": 3.6045150591, + "1082": 3.5395669874, + "1083": 3.4719755864, + "1084": 3.4043841853, + "1085": 3.3344162071, + "1086": 3.2644482289, + "1087": 3.1923798053, + "1088": 3.1203113817, + "1089": 3.0464269338, + "1090": 2.9725424859, + "1091": 2.8971336019, + "1092": 2.8217247179, + "1093": 2.7450890022, + "1094": 2.6684532865, + "1095": 2.5908931852, + "1096": 2.5133330839, + "1097": 2.4351546914, + "1098": 2.3569762988, + "1099": 2.2784881494, + "1100": 2.2, + "1101": 2.1215118506, + "1102": 2.0430237012, + "1103": 1.9648453086, + "1104": 1.8866669161, + "1105": 1.8091068148, + "1106": 1.7315467135, + "1107": 1.6549109978, + "1108": 1.5782752821, + "1109": 1.5028663981, + "1110": 1.4274575141, + "1111": 1.3535730662, + "1112": 1.2796886183, + "1113": 1.2076201947, + "1114": 1.1355517711, + "1115": 1.0655837929, + "1116": 0.9956158147, + "1117": 0.9280244136, + "1118": 0.8604330126, + "1119": 0.7954849409, + "1120": 0.7305368693, + "1121": 0.6684884474, + "1122": 0.6064400256, + "1123": 0.5475361304, + "1124": 0.4886322352, + "1125": 0.4331053333, + "1126": 0.3775784314, + "1127": 0.3256476623, + "1128": 0.2737168931, + "1129": 0.2255872036, + "1130": 0.1774575141, + "1131": 0.1333188502, + "1132": 0.0891801862, + "1133": 0.0492067431, + "1134": 0.0092332999, + "1135": -0.0264171656, + "1136": -0.0620676312, + "1137": -0.0932544229, + "1138": -0.1244412147, + "1139": -0.1510412527, + "1140": -0.1776412907, + "1141": -0.1995495968, + "1142": -0.2214579028, + "1143": -0.2385880148, + "1144": -0.2557181268, + "1145": -0.2680024401, + "1146": -0.2802867533, + "1147": -0.2876767872, + "1148": -0.2950668211, + "1149": -0.2975334105, + "1150": -0.3, + "1151": -0.2975334105, + "1152": -0.2950668211, + "1153": -0.2876767872, + "1154": -0.2802867533, + "1155": -0.2680024401, + "1156": -0.2557181268, + "1157": -0.2385880148, + "1158": -0.2214579028, + "1159": -0.1995495968, + "1160": -0.1776412907, + "1161": -0.1510412527, + "1162": -0.1244412147, + "1163": -0.0932544229, + "1164": -0.0620676312, + "1165": -0.0264171656, + "1166": 0.0092332999, + "1167": 0.0492067431, + "1168": 0.0891801862, + "1169": 0.1333188502, + "1170": 0.1774575141, + "1171": 0.2255872036, + "1172": 0.2737168931, + "1173": 0.3256476623, + "1174": 0.3775784314, + "1175": 0.4331053333, + "1176": 0.4886322352, + "1177": 0.5475361304, + "1178": 0.6064400256, + "1179": 0.6684884474, + "1180": 0.7305368693, + "1181": 0.7954849409, + "1182": 0.8604330126, + "1183": 0.9280244136, + "1184": 0.9956158147, + "1185": 1.0655837929, + "1186": 1.1355517711, + "1187": 1.2076201947, + "1188": 1.2796886183, + "1189": 1.3535730662, + "1190": 1.4274575141, + "1191": 1.5028663981, + "1192": 1.5782752821, + "1193": 1.6549109978, + "1194": 1.7315467135, + "1195": 1.8091068148, + "1196": 1.8866669161, + "1197": 1.9648453086, + "1198": 2.0430237012, + "1199": 2.1215118506, + "1200": 2.2, + "1201": 2.2784881494, + "1202": 2.3569762988, + "1203": 2.4351546914, + "1204": 2.5133330839, + "1205": 2.5908931852, + "1206": 2.6684532865, + "1207": 2.7450890022, + "1208": 2.8217247179, + "1209": 2.8971336019, + "1210": 2.9725424859, + "1211": 3.0464269338, + "1212": 3.1203113817, + "1213": 3.1923798053, + "1214": 3.2644482289, + "1215": 3.3344162071, + "1216": 3.4043841853, + "1217": 3.4719755864, + "1218": 3.5395669874, + "1219": 3.6045150591, + "1220": 3.6694631307, + "1221": 3.7315115526, + "1222": 3.7935599744, + "1223": 3.8524638696, + "1224": 3.9113677648, + "1225": 3.9668946667, + "1226": 4.0224215686, + "1227": 4.0743523377, + "1228": 4.1262831069, + "1229": 4.1744127964, + "1230": 4.2225424859, + "1231": 4.2666811498, + "1232": 4.3108198138, + "1233": 4.3507932569, + "1234": 4.3907667001, + "1235": 4.4264171656, + "1236": 4.4620676312, + "1237": 4.4932544229, + "1238": 4.5244412147, + "1239": 4.5510412527, + "1240": 4.5776412907, + "1241": 4.5995495968, + "1242": 4.6214579028, + "1243": 4.6385880148, + "1244": 4.6557181268, + "1245": 4.6680024401, + "1246": 4.6802867533, + "1247": 4.6876767872, + "1248": 4.6950668211, + "1249": 4.6975334105, + "1250": 4.7, + "1251": 4.6975334105, + "1252": 4.6950668211, + "1253": 4.6876767872, + "1254": 4.6802867533, + "1255": 4.6680024401, + "1256": 4.6557181268, + "1257": 4.6385880148, + "1258": 4.6214579028, + "1259": 4.5995495968, + "1260": 4.5776412907, + "1261": 4.5510412527, + "1262": 4.5244412147, + "1263": 4.4932544229, + "1264": 4.4620676312, + "1265": 4.4264171656, + "1266": 4.3907667001, + "1267": 4.3507932569, + "1268": 4.3108198138, + "1269": 4.2666811498, + "1270": 4.2225424859, + "1271": 4.1744127964, + "1272": 4.1262831069, + "1273": 4.0743523377, + "1274": 4.0224215686, + "1275": 3.9668946667, + "1276": 3.9113677648, + "1277": 3.8524638696, + "1278": 3.7935599744, + "1279": 3.7315115526, + "1280": 3.6694631307, + "1281": 3.6045150591, + "1282": 3.5395669874, + "1283": 3.4719755864, + "1284": 3.4043841853, + "1285": 3.3344162071, + "1286": 3.2644482289, + "1287": 3.1923798053, + "1288": 3.1203113817, + "1289": 3.0464269338, + "1290": 2.9725424859, + "1291": 2.8971336019, + "1292": 2.8217247179, + "1293": 2.7450890022, + "1294": 2.6684532865, + "1295": 2.5908931852, + "1296": 2.5133330839, + "1297": 2.4351546914, + "1298": 2.3569762988, + "1299": 2.2784881494, + "1300": 2.2, + "1301": 2.1215118506, + "1302": 2.0430237012, + "1303": 1.9648453086, + "1304": 1.8866669161, + "1305": 1.8091068148, + "1306": 1.7315467135, + "1307": 1.6549109978, + "1308": 1.5782752821, + "1309": 1.5028663981, + "1310": 1.4274575141, + "1311": 1.3535730662, + "1312": 1.2796886183, + "1313": 1.2076201947, + "1314": 1.1355517711, + "1315": 1.0655837929, + "1316": 0.9956158147, + "1317": 0.9280244136, + "1318": 0.8604330126, + "1319": 0.7954849409, + "1320": 0.7305368693, + "1321": 0.6684884474, + "1322": 0.6064400256, + "1323": 0.5475361304, + "1324": 0.4886322352, + "1325": 0.4331053333, + "1326": 0.3775784314, + "1327": 0.3256476623, + "1328": 0.2737168931, + "1329": 0.2255872036, + "1330": 0.1774575141, + "1331": 0.1333188502, + "1332": 0.0891801862, + "1333": 0.0492067431, + "1334": 0.0092332999, + "1335": -0.0264171656, + "1336": -0.0620676312, + "1337": -0.0932544229, + "1338": -0.1244412147, + "1339": -0.1510412527, + "1340": -0.1776412907, + "1341": -0.1995495968, + "1342": -0.2214579028, + "1343": -0.2385880148, + "1344": -0.2557181268, + "1345": -0.2680024401, + "1346": -0.2802867533, + "1347": -0.2876767872, + "1348": -0.2950668211, + "1349": -0.2975334105, + "1350": -0.3, + "1351": -0.2975334105, + "1352": -0.2950668211, + "1353": -0.2876767872, + "1354": -0.2802867533, + "1355": -0.2680024401, + "1356": -0.2557181268, + "1357": -0.2385880148, + "1358": -0.2214579028, + "1359": -0.1995495968, + "1360": -0.1776412907, + "1361": -0.1510412527, + "1362": -0.1244412147, + "1363": -0.0932544229, + "1364": -0.0620676312, + "1365": -0.0264171656, + "1366": 0.0092332999, + "1367": 0.0492067431, + "1368": 0.0891801862, + "1369": 0.1333188502, + "1370": 0.1774575141, + "1371": 0.2255872036, + "1372": 0.2737168931, + "1373": 0.3256476623, + "1374": 0.3775784314, + "1375": 0.4331053333, + "1376": 0.4886322352, + "1377": 0.5475361304, + "1378": 0.6064400256, + "1379": 0.6684884474, + "1380": 0.7305368693, + "1381": 0.7954849409, + "1382": 0.8604330126, + "1383": 0.9280244136, + "1384": 0.9956158147, + "1385": 1.0655837929, + "1386": 1.1355517711, + "1387": 1.2076201947, + "1388": 1.2796886183, + "1389": 1.3535730662, + "1390": 1.4274575141, + "1391": 1.5028663981, + "1392": 1.5782752821, + "1393": 1.6549109978, + "1394": 1.7315467135, + "1395": 1.8091068148, + "1396": 1.8866669161, + "1397": 1.9648453086, + "1398": 2.0430237012, + "1399": 2.1215118506, + "1400": 2.2, + "1401": 2.2784881494, + "1402": 2.3569762988, + "1403": 2.4351546914, + "1404": 2.5133330839, + "1405": 2.5908931852, + "1406": 2.6684532865, + "1407": 2.7450890022, + "1408": 2.8217247179, + "1409": 2.8971336019, + "1410": 2.9725424859, + "1411": 3.0464269338, + "1412": 3.1203113817, + "1413": 3.1923798053, + "1414": 3.2644482289, + "1415": 3.3344162071, + "1416": 3.4043841853, + "1417": 3.4719755864, + "1418": 3.5395669874, + "1419": 3.6045150591, + "1420": 3.6694631307, + "1421": 3.7315115526, + "1422": 3.7935599744, + "1423": 3.8524638696, + "1424": 3.9113677648, + "1425": 3.9668946667, + "1426": 4.0224215686, + "1427": 4.0743523377, + "1428": 4.1262831069, + "1429": 4.1744127964, + "1430": 4.2225424859, + "1431": 4.2666811498, + "1432": 4.3108198138, + "1433": 4.3507932569, + "1434": 4.3907667001, + "1435": 4.4264171656, + "1436": 4.4620676312, + "1437": 4.4932544229, + "1438": 4.5244412147, + "1439": 4.5510412527, + "1440": 4.5776412907, + "1441": 4.5995495968, + "1442": 4.6214579028, + "1443": 4.6385880148, + "1444": 4.6557181268, + "1445": 4.6680024401, + "1446": 4.6802867533, + "1447": 4.6876767872, + "1448": 4.6950668211, + "1449": 4.6975334105, + "1450": 4.7, + "1451": 4.6975334105, + "1452": 4.6950668211, + "1453": 4.6876767872, + "1454": 4.6802867533, + "1455": 4.6680024401, + "1456": 4.6557181268, + "1457": 4.6385880148, + "1458": 4.6214579028, + "1459": 4.5995495968, + "1460": 4.5776412907, + "1461": 4.5510412527, + "1462": 4.5244412147, + "1463": 4.4932544229, + "1464": 4.4620676312, + "1465": 4.4264171656, + "1466": 4.3907667001, + "1467": 4.3507932569, + "1468": 4.3108198138, + "1469": 4.2666811498, + "1470": 4.2225424859, + "1471": 4.1744127964, + "1472": 4.1262831069, + "1473": 4.0743523377, + "1474": 4.0224215686, + "1475": 3.9668946667, + "1476": 3.9113677648, + "1477": 3.8524638696, + "1478": 3.7935599744, + "1479": 3.7315115526, + "1480": 3.6694631307, + "1481": 3.6045150591, + "1482": 3.5395669874, + "1483": 3.4719755864, + "1484": 3.4043841853, + "1485": 3.3344162071, + "1486": 3.2644482289, + "1487": 3.1923798053, + "1488": 3.1203113817, + "1489": 3.0464269338, + "1490": 2.9725424859, + "1491": 2.8971336019, + "1492": 2.8217247179, + "1493": 2.7450890022, + "1494": 2.6684532865, + "1495": 2.5908931852, + "1496": 2.5133330839, + "1497": 2.4351546914, + "1498": 2.3569762988, + "1499": 2.2784881494, + "1500": 2.2, + "1501": 2.1215118506, + "1502": 2.0430237012, + "1503": 1.9648453086, + "1504": 1.8866669161, + "1505": 1.8091068148, + "1506": 1.7315467135, + "1507": 1.6549109978, + "1508": 1.5782752821, + "1509": 1.5028663981, + "1510": 1.4274575141, + "1511": 1.3535730662, + "1512": 1.2796886183, + "1513": 1.2076201947, + "1514": 1.1355517711, + "1515": 1.0655837929, + "1516": 0.9956158147, + "1517": 0.9280244136, + "1518": 0.8604330126, + "1519": 0.7954849409, + "1520": 0.7305368693, + "1521": 0.6684884474, + "1522": 0.6064400256, + "1523": 0.5475361304, + "1524": 0.4886322352, + "1525": 0.4331053333, + "1526": 0.3775784314, + "1527": 0.3256476623, + "1528": 0.2737168931, + "1529": 0.2255872036, + "1530": 0.1774575141, + "1531": 0.1333188502, + "1532": 0.0891801862, + "1533": 0.0492067431, + "1534": 0.0092332999, + "1535": -0.0264171656, + "1536": -0.0620676312, + "1537": -0.0932544229, + "1538": -0.1244412147, + "1539": -0.1510412527, + "1540": -0.1776412907, + "1541": -0.1995495968, + "1542": -0.2214579028, + "1543": -0.2385880148, + "1544": -0.2557181268, + "1545": -0.2680024401, + "1546": -0.2802867533, + "1547": -0.2876767872, + "1548": -0.2950668211, + "1549": -0.2975334105, + "1550": -0.3, + "1551": -0.2975334105, + "1552": -0.2950668211, + "1553": -0.2876767872, + "1554": -0.2802867533, + "1555": -0.2680024401, + "1556": -0.2557181268, + "1557": -0.2385880148, + "1558": -0.2214579028, + "1559": -0.1995495968, + "1560": -0.1776412907, + "1561": -0.1510412527, + "1562": -0.1244412147, + "1563": -0.0932544229, + "1564": -0.0620676312, + "1565": -0.0264171656, + "1566": 0.0092332999, + "1567": 0.0492067431, + "1568": 0.0891801862, + "1569": 0.1333188502, + "1570": 0.1774575141, + "1571": 0.2255872036, + "1572": 0.2737168931, + "1573": 0.3256476623, + "1574": 0.3775784314, + "1575": 0.4331053333, + "1576": 0.4886322352, + "1577": 0.5475361304, + "1578": 0.6064400256, + "1579": 0.6684884474, + "1580": 0.7305368693, + "1581": 0.7954849409, + "1582": 0.8604330126, + "1583": 0.9280244136, + "1584": 0.9956158147, + "1585": 1.0655837929, + "1586": 1.1355517711, + "1587": 1.2076201947, + "1588": 1.2796886183, + "1589": 1.3535730662, + "1590": 1.4274575141, + "1591": 1.5028663981, + "1592": 1.5782752821, + "1593": 1.6549109978, + "1594": 1.7315467135, + "1595": 1.8091068148, + "1596": 1.8866669161, + "1597": 1.9648453086, + "1598": 2.0430237012, + "1599": 2.1215118506, + "1600": 2.2, + "1601": 2.2784881494, + "1602": 2.3569762988, + "1603": 2.4351546914, + "1604": 2.5133330839, + "1605": 2.5908931852, + "1606": 2.6684532865, + "1607": 2.7450890022, + "1608": 2.8217247179, + "1609": 2.8971336019, + "1610": 2.9725424859, + "1611": 3.0464269338, + "1612": 3.1203113817, + "1613": 3.1923798053, + "1614": 3.2644482289, + "1615": 3.3344162071, + "1616": 3.4043841853, + "1617": 3.4719755864, + "1618": 3.5395669874, + "1619": 3.6045150591, + "1620": 3.6694631307, + "1621": 3.7315115526, + "1622": 3.7935599744, + "1623": 3.8524638696, + "1624": 3.9113677648, + "1625": 3.9668946667, + "1626": 4.0224215686, + "1627": 4.0743523377, + "1628": 4.1262831069, + "1629": 4.1744127964, + "1630": 4.2225424859, + "1631": 4.2666811498, + "1632": 4.3108198138, + "1633": 4.3507932569, + "1634": 4.3907667001, + "1635": 4.4264171656, + "1636": 4.4620676312, + "1637": 4.4932544229, + "1638": 4.5244412147, + "1639": 4.5510412527, + "1640": 4.5776412907, + "1641": 4.5995495968, + "1642": 4.6214579028, + "1643": 4.6385880148, + "1644": 4.6557181268, + "1645": 4.6680024401, + "1646": 4.6802867533, + "1647": 4.6876767872, + "1648": 4.6950668211, + "1649": 4.6975334105, + "1650": 4.7, + "1651": 4.6975334105, + "1652": 4.6950668211, + "1653": 4.6876767872, + "1654": 4.6802867533, + "1655": 4.6680024401, + "1656": 4.6557181268, + "1657": 4.6385880148, + "1658": 4.6214579028, + "1659": 4.5995495968, + "1660": 4.5776412907, + "1661": 4.5510412527, + "1662": 4.5244412147, + "1663": 4.4932544229, + "1664": 4.4620676312, + "1665": 4.4264171656, + "1666": 4.3907667001, + "1667": 4.3507932569, + "1668": 4.3108198138, + "1669": 4.2666811498, + "1670": 4.2225424859, + "1671": 4.1744127964, + "1672": 4.1262831069, + "1673": 4.0743523377, + "1674": 4.0224215686, + "1675": 3.9668946667, + "1676": 3.9113677648, + "1677": 3.8524638696, + "1678": 3.7935599744, + "1679": 3.7315115526, + "1680": 3.6694631307, + "1681": 3.6045150591, + "1682": 3.5395669874, + "1683": 3.4719755864, + "1684": 3.4043841853, + "1685": 3.3344162071, + "1686": 3.2644482289, + "1687": 3.1923798053, + "1688": 3.1203113817, + "1689": 3.0464269338, + "1690": 2.9725424859, + "1691": 2.8971336019, + "1692": 2.8217247179, + "1693": 2.7450890022, + "1694": 2.6684532865, + "1695": 2.5908931852, + "1696": 2.5133330839, + "1697": 2.4351546914, + "1698": 2.3569762988, + "1699": 2.2784881494, + "1700": 2.2, + "1701": 2.1215118506, + "1702": 2.0430237012, + "1703": 1.9648453086, + "1704": 1.8866669161, + "1705": 1.8091068148, + "1706": 1.7315467135, + "1707": 1.6549109978, + "1708": 1.5782752821, + "1709": 1.5028663981, + "1710": 1.4274575141, + "1711": 1.3535730662, + "1712": 1.2796886183, + "1713": 1.2076201947, + "1714": 1.1355517711, + "1715": 1.0655837929, + "1716": 0.9956158147, + "1717": 0.9280244136, + "1718": 0.8604330126, + "1719": 0.7954849409, + "1720": 0.7305368693, + "1721": 0.6684884474, + "1722": 0.6064400256, + "1723": 0.5475361304, + "1724": 0.4886322352, + "1725": 0.4331053333, + "1726": 0.3775784314, + "1727": 0.3256476623, + "1728": 0.2737168931, + "1729": 0.2255872036, + "1730": 0.1774575141, + "1731": 0.1333188502, + "1732": 0.0891801862, + "1733": 0.0492067431, + "1734": 0.0092332999, + "1735": -0.0264171656, + "1736": -0.0620676312, + "1737": -0.0932544229, + "1738": -0.1244412147, + "1739": -0.1510412527, + "1740": -0.1776412907, + "1741": -0.1995495968, + "1742": -0.2214579028, + "1743": -0.2385880148, + "1744": -0.2557181268, + "1745": -0.2680024401, + "1746": -0.2802867533, + "1747": -0.2876767872, + "1748": -0.2950668211, + "1749": -0.2975334105, + "1750": -0.3, + "1751": -0.2975334105, + "1752": -0.2950668211, + "1753": -0.2876767872, + "1754": -0.2802867533, + "1755": -0.2680024401, + "1756": -0.2557181268, + "1757": -0.2385880148, + "1758": -0.2214579028, + "1759": -0.1995495968, + "1760": -0.1776412907, + "1761": -0.1510412527, + "1762": -0.1244412147, + "1763": -0.0932544229, + "1764": -0.0620676312, + "1765": -0.0264171656, + "1766": 0.0092332999, + "1767": 0.0492067431, + "1768": 0.0891801862, + "1769": 0.1333188502, + "1770": 0.1774575141, + "1771": 0.2255872036, + "1772": 0.2737168931, + "1773": 0.3256476623, + "1774": 0.3775784314, + "1775": 0.4331053333, + "1776": 0.4886322352, + "1777": 0.5475361304, + "1778": 0.6064400256, + "1779": 0.6684884474, + "1780": 0.7305368693, + "1781": 0.7954849409, + "1782": 0.8604330126, + "1783": 0.9280244136, + "1784": 0.9956158147, + "1785": 1.0655837929, + "1786": 1.1355517711, + "1787": 1.2076201947, + "1788": 1.2796886183, + "1789": 1.3535730662, + "1790": 1.4274575141, + "1791": 1.5028663981, + "1792": 1.5782752821, + "1793": 1.6549109978, + "1794": 1.7315467135, + "1795": 1.8091068148, + "1796": 1.8866669161, + "1797": 1.9648453086, + "1798": 2.0430237012, + "1799": 2.1215118506, + "1800": 2.2, + "1801": 2.2784881494, + "1802": 2.3569762988, + "1803": 2.4351546914, + "1804": 2.5133330839, + "1805": 2.5908931852, + "1806": 2.6684532865, + "1807": 2.7450890022, + "1808": 2.8217247179, + "1809": 2.8971336019, + "1810": 2.9725424859, + "1811": 3.0464269338, + "1812": 3.1203113817, + "1813": 3.1923798053, + "1814": 3.2644482289, + "1815": 3.3344162071, + "1816": 3.4043841853, + "1817": 3.4719755864, + "1818": 3.5395669874, + "1819": 3.6045150591, + "1820": 3.6694631307, + "1821": 3.7315115526, + "1822": 3.7935599744, + "1823": 3.8524638696, + "1824": 3.9113677648, + "1825": 3.9668946667, + "1826": 4.0224215686, + "1827": 4.0743523377, + "1828": 4.1262831069, + "1829": 4.1744127964, + "1830": 4.2225424859, + "1831": 4.2666811498, + "1832": 4.3108198138, + "1833": 4.3507932569, + "1834": 4.3907667001, + "1835": 4.4264171656, + "1836": 4.4620676312, + "1837": 4.4932544229, + "1838": 4.5244412147, + "1839": 4.5510412527, + "1840": 4.5776412907, + "1841": 4.5995495968, + "1842": 4.6214579028, + "1843": 4.6385880148, + "1844": 4.6557181268, + "1845": 4.6680024401, + "1846": 4.6802867533, + "1847": 4.6876767872, + "1848": 4.6950668211, + "1849": 4.6975334105, + "1850": 4.7, + "1851": 4.6975334105, + "1852": 4.6950668211, + "1853": 4.6876767872, + "1854": 4.6802867533, + "1855": 4.6680024401, + "1856": 4.6557181268, + "1857": 4.6385880148, + "1858": 4.6214579028, + "1859": 4.5995495968, + "1860": 4.5776412907, + "1861": 4.5510412527, + "1862": 4.5244412147, + "1863": 4.4932544229, + "1864": 4.4620676312, + "1865": 4.4264171656, + "1866": 4.3907667001, + "1867": 4.3507932569, + "1868": 4.3108198138, + "1869": 4.2666811498, + "1870": 4.2225424859, + "1871": 4.1744127964, + "1872": 4.1262831069, + "1873": 4.0743523377, + "1874": 4.0224215686, + "1875": 3.9668946667, + "1876": 3.9113677648, + "1877": 3.8524638696, + "1878": 3.7935599744, + "1879": 3.7315115526, + "1880": 3.6694631307, + "1881": 3.6045150591, + "1882": 3.5395669874, + "1883": 3.4719755864, + "1884": 3.4043841853, + "1885": 3.3344162071, + "1886": 3.2644482289, + "1887": 3.1923798053, + "1888": 3.1203113817, + "1889": 3.0464269338, + "1890": 2.9725424859, + "1891": 2.8971336019, + "1892": 2.8217247179, + "1893": 2.7450890022, + "1894": 2.6684532865, + "1895": 2.5908931852, + "1896": 2.5133330839, + "1897": 2.4351546914, + "1898": 2.3569762988, + "1899": 2.2784881494, + "1900": 2.2, + "1901": 2.1215118506, + "1902": 2.0430237012, + "1903": 1.9648453086, + "1904": 1.8866669161, + "1905": 1.8091068148, + "1906": 1.7315467135, + "1907": 1.6549109978, + "1908": 1.5782752821, + "1909": 1.5028663981, + "1910": 1.4274575141, + "1911": 1.3535730662, + "1912": 1.2796886183, + "1913": 1.2076201947, + "1914": 1.1355517711, + "1915": 1.0655837929, + "1916": 0.9956158147, + "1917": 0.9280244136, + "1918": 0.8604330126, + "1919": 0.7954849409, + "1920": 0.7305368693, + "1921": 0.6684884474, + "1922": 0.6064400256, + "1923": 0.5475361304, + "1924": 0.4886322352, + "1925": 0.4331053333, + "1926": 0.3775784314, + "1927": 0.3256476623, + "1928": 0.2737168931, + "1929": 0.2255872036, + "1930": 0.1774575141, + "1931": 0.1333188502, + "1932": 0.0891801862, + "1933": 0.0492067431, + "1934": 0.0092332999, + "1935": -0.0264171656, + "1936": -0.0620676312, + "1937": -0.0932544229, + "1938": -0.1244412147, + "1939": -0.1510412527, + "1940": -0.1776412907, + "1941": -0.1995495968, + "1942": -0.2214579028, + "1943": -0.2385880148, + "1944": -0.2557181268, + "1945": -0.2680024401, + "1946": -0.2802867533, + "1947": -0.2876767872, + "1948": -0.2950668211, + "1949": -0.2975334105, + "1950": -0.3, + "1951": -0.2975334105, + "1952": -0.2950668211, + "1953": -0.2876767872, + "1954": -0.2802867533, + "1955": -0.2680024401, + "1956": -0.2557181268, + "1957": -0.2385880148, + "1958": -0.2214579028, + "1959": -0.1995495968, + "1960": -0.1776412907, + "1961": -0.1510412527, + "1962": -0.1244412147, + "1963": -0.0932544229, + "1964": -0.0620676312, + "1965": -0.0264171656, + "1966": 0.0092332999, + "1967": 0.0492067431, + "1968": 0.0891801862, + "1969": 0.1333188502, + "1970": 0.1774575141, + "1971": 0.2255872036, + "1972": 0.2737168931, + "1973": 0.3256476623, + "1974": 0.3775784314, + "1975": 0.4331053333, + "1976": 0.4886322352, + "1977": 0.5475361304, + "1978": 0.6064400256, + "1979": 0.6684884474, + "1980": 0.7305368693, + "1981": 0.7954849409, + "1982": 0.8604330126, + "1983": 0.9280244136, + "1984": 0.9956158147, + "1985": 1.0655837929, + "1986": 1.1355517711, + "1987": 1.2076201947, + "1988": 1.2796886183, + "1989": 1.3535730662, + "1990": 1.4274575141, + "1991": 1.5028663981, + "1992": 1.5782752821, + "1993": 1.6549109978, + "1994": 1.7315467135, + "1995": 1.8091068148, + "1996": 1.8866669161, + "1997": 1.9648453086, + "1998": 2.0430237012, + "1999": 2.1215118506, + "2000": 2.2 + }, + "pressure_in": { + "0": 4620.0000021514, + "1": 4708.3756193974, + "2": 4800.3254995924, + "3": 4895.5124675901, + "4": 4994.0594481245, + "5": 5095.112900714, + "6": 5199.1833141173, + "7": 5305.0814669227, + "8": 5413.666396996, + "9": 5523.4234147006, + "10": 5635.5539071338, + "11": 5748.2226169969, + "12": 5862.9671989041, + "13": 5977.6378582606, + "14": 6094.1012830419, + "15": 6209.9005191749, + "16": 6327.2228680953, + "17": 6443.3129112471, + "18": 6560.6689786072, + "19": 6676.2471553502, + "20": 6792.8460782692, + "21": 6907.1445293024, + "22": 7022.2296272077, + "23": 7134.5152161542, + "24": 7247.3640077452, + "25": 7356.9383900522, + "26": 7466.8627579368, + "27": 7573.0625813218, + "28": 7679.409056773, + "29": 7781.6062668333, + "30": 7883.7564091974, + "31": 7981.358635822, + "32": 8078.7294830568, + "33": 8171.1804851632, + "34": 8263.2250537969, + "35": 8350.0052016813, + "36": 8436.2130161883, + "37": 8516.8397924331, + "38": 8596.7374256203, + "39": 8670.7659270608, + "40": 8743.91753457, + "41": 8810.9409592984, + "42": 8876.9487927574, + "43": 8936.5988975347, + "44": 8995.103782245, + "45": 9047.0512970203, + "46": 9097.7330613625, + "47": 9141.6880488607, + "48": 9184.265893826, + "49": 9219.9780433731, + "50": 9254.2108418116, + "51": 9281.4696877224, + "52": 9307.1562040248, + "53": 9325.791259985, + "54": 9342.770282003, + "55": 9352.6510839434, + "56": 9360.8014599948, + "57": 9361.8375109805, + "58": 9361.0780857929, + "59": 9353.2186974368, + "60": 9343.5081418536, + "61": 9326.7421677159, + "62": 9308.0786979235, + "63": 9282.4341552751, + "64": 9254.855138215, + "65": 9220.3987154318, + "66": 9183.9801579323, + "67": 9140.8166056363, + "68": 9095.6725256412, + "69": 9043.9439305313, + "70": 8990.2256096152, + "71": 8930.1105507214, + "72": 8868.0056678609, + "73": 8799.7182557166, + "74": 8729.4499030414, + "75": 8653.2387030041, + "76": 8575.0642849732, + "77": 8491.2111266199, + "78": 8405.42114476, + "79": 8314.239819959, + "80": 8221.1565459651, + "81": 8122.9913988613, + "82": 8022.9674394887, + "83": 7918.1918522502, + "84": 7811.6086100272, + "85": 7700.6233887729, + "86": 7587.88942313, + "87": 7471.1210890009, + "88": 7352.6703829461, + "89": 7230.5693737937, + "90": 7106.8595117626, + "91": 6979.8983003974, + "92": 6851.4085633754, + "93": 6720.0796987604, + "94": 6587.3090832016, + "95": 6452.1231613789, + "96": 6315.5883288442, + "97": 6177.0719007486, + "98": 6037.305065542, + "99": 5895.9984891868, + "100": 5753.5452515939, + "101": 5610.000496406, + "102": 5465.4176294197, + "103": 5320.1960407584, + "104": 5174.0492384261, + "105": 5027.7192705358, + "106": 4880.5808662703, + "107": 4733.7157920957, + "108": 4586.1624554623, + "109": 4439.3380618974, + "110": 4291.9484825218, + "111": 4145.7407597643, + "112": 3999.0933270985, + "113": 3854.0761608454, + "114": 3708.7466485841, + "115": 3565.4895238295, + "116": 3422.0487877856, + "117": 3281.1145129692, + "118": 3140.1262111957, + "119": 3002.0686713992, + "120": 2864.0870152842, + "121": 2729.4489630867, + "122": 2595.0165080532, + "123": 2464.3274005312, + "124": 2333.9728848397, + "125": 2207.7467750369, + "126": 2081.9830150197, + "127": 1960.7165060193, + "128": 1840.0383558719, + "129": 1724.2086253725, + "130": 1609.0910093907, + "131": 1499.153912426, + "132": 1390.0499373057, + "133": 1286.4381944553, + "134": 1183.777348971, + "135": 1086.898827085, + "136": 991.0852761309, + "137": 901.3213682374, + "138": 812.732347854, + "139": 730.4364585396, + "140": 649.4207781598, + "141": 574.916920306, + "142": 501.7935780431, + "143": 435.3750863704, + "144": 370.4320027303, + "145": 312.360369151, + "146": 255.8532440931, + "147": 206.3570793979, + "148": 158.5083771883, + "149": 117.782503102, + "150": 78.7805689061, + "151": 46.9852440375, + "152": 16.9835556827, + "153": -5.7561616271, + "154": -26.6396038145, + "155": -40.2343532795, + "156": -51.9174961994, + "157": -56.3139720875, + "158": -58.7510373406, + "159": -53.9322023176, + "160": -47.1138701722, + "161": -33.0990256801, + "162": -17.0524748397, + "163": 6.1028122363, + "164": 31.3140091925, + "165": 63.5181232506, + "166": 97.7942483144, + "167": 138.9198842755, + "168": 182.1254653388, + "169": 232.0101289564, + "170": 283.9744724562, + "171": 342.4211197035, + "172": 402.9389824596, + "173": 469.716795449, + "174": 538.5491930268, + "175": 613.3944893836, + "176": 690.2696377733, + "177": 772.8869098595, + "178": 857.5012967417, + "179": 947.5643766131, + "180": 1039.5839579694, + "181": 1136.7373034569, + "182": 1235.7988207906, + "183": 1339.6589176174, + "184": 1445.371330575, + "185": 1555.5282049675, + "186": 1667.4742336969, + "187": 1783.4930695082, + "188": 1901.230840658, + "189": 2022.6536946143, + "190": 2145.7184844702, + "191": 2272.0660927639, + "192": 2399.9721606341, + "193": 2530.7458297252, + "194": 2662.9883343348, + "195": 2797.6719084932, + "196": 2933.7288998163, + "197": 3071.7907976339, + "198": 3211.1252762991, + "199": 3352.0205881292, + "200": 3494.0826242635, + "201": 3637.2552623059, + "202": 3781.4841654533, + "203": 3926.3690579943, + "204": 4072.195589539, + "205": 4218.2209106835, + "206": 4365.0695300442, + "207": 4511.658956137, + "208": 4658.9500918632, + "209": 4805.5250756903, + "210": 4952.6774124952, + "211": 5098.6594662877, + "212": 5245.0922389894, + "213": 5389.9052172175, + "214": 5535.0405025318, + "215": 5678.1128754774, + "216": 5821.3778726167, + "217": 5962.1449817488, + "218": 6102.9742728235, + "219": 6240.8805590752, + "220": 6378.7183403755, + "221": 6513.2195365255, + "222": 6647.5218118763, + "223": 6778.0870903816, + "224": 6908.3238179125, + "225": 7034.4378857146, + "226": 7160.0950695712, + "227": 7281.2602016062, + "228": 7401.8419203469, + "229": 7517.5799237348, + "230": 7632.6102874066, + "231": 7742.4643885649, + "232": 7851.4894167337, + "233": 7955.0260639688, + "234": 8057.6154772909, + "235": 8154.4260517506, + "236": 8250.1749700153, + "237": 8339.8773982509, + "238": 8428.4079381907, + "239": 8510.6481999627, + "240": 8591.6109665256, + "241": 8666.0644919023, + "242": 8739.1399571, + "243": 8805.5129073351, + "244": 8870.4126712241, + "245": 8928.4430983566, + "246": 8984.9110271768, + "247": 9034.3699077776, + "248": 9082.1831447545, + "249": 9122.8752837386, + "250": 9161.8451285604, + "251": 9193.6099294982, + "252": 9223.5825829969, + "253": 9246.2946818828, + "254": 9267.1518529793, + "255": 9280.7216129582, + "256": 9292.3809854755, + "257": 9296.7548505726, + "258": 9299.1704080762, + "259": 9294.3311145345, + "260": 9287.4933219156, + "261": 9273.4599663069, + "262": 9257.3958073933, + "263": 9234.2237712338, + "264": 9208.9966422789, + "265": 9176.7773734462, + "266": 9142.4868329161, + "267": 9101.3474847307, + "268": 9058.1288603781, + "269": 9008.2317897731, + "270": 8956.2556445465, + "271": 8897.797771306, + "272": 8837.2692302039, + "273": 8770.4812597994, + "274": 8701.6392003242, + "275": 8626.7847134145, + "276": 8549.9008228226, + "277": 8467.2752350123, + "278": 8382.6529380792, + "279": 8292.5823340395, + "280": 8200.5555955729, + "281": 8103.3954421265, + "282": 8004.3274489522, + "283": 7900.4611922013, + "284": 7794.7429198244, + "285": 7684.5804718576, + "286": 7572.6291414544, + "287": 7456.6052626054, + "288": 7338.8626944365, + "289": 7217.4352774782, + "290": 7094.3661472212, + "291": 6968.0144102678, + "292": 6840.1044151499, + "293": 6709.3270103973, + "294": 6577.0809523662, + "295": 6442.3939981358, + "296": 6306.3337916336, + "297": 6168.2688354858, + "298": 6028.9314476875, + "299": 5888.033368643, + "300": 5745.9687002896, + "301": 5602.793558438, + "302": 5458.5622736268, + "303": 5313.6751156087, + "304": 5167.8464291056, + "305": 5021.8190581299, + "306": 4874.9684889366, + "307": 4728.3772081315, + "308": 4581.0843081732, + "309": 4434.5076461799, + "310": 4287.3537130762, + "311": 4141.3701408585, + "312": 3994.9359238063, + "313": 3850.1215716886, + "314": 3704.9849795083, + "315": 3561.9113634507, + "316": 3418.6451838432, + "317": 3277.8769499282, + "318": 3137.0465889419, + "319": 2999.139284973, + "320": 2861.3005356037, + "321": 2726.7984186107, + "322": 2592.4952673393, + "323": 2461.929155644, + "324": 2331.6916355695, + "325": 2205.5768138871, + "326": 2079.9189129274, + "327": 1958.7530987722, + "328": 1838.1707311879, + "329": 1722.4321106094, + "330": 1607.401159856, + "331": 1497.5465002561, + "332": 1388.5209408887, + "333": 1284.983788369, + "334": 1182.3938944119, + "335": 1085.5828627644, + "336": 989.8335096154, + "337": 900.1306677108, + "338": 811.5997342823, + "339": 729.3590982176, + "340": 648.3959756213, + "341": 573.9421115799, + "342": 500.866324239, + "343": 434.493067576, + "344": 369.5930122078, + "345": 311.5623078157, + "346": 255.0941152615, + "347": 205.6349837928, + "348": 157.8215081863, + "349": 117.1291422138, + "350": 78.159081477, + "351": 46.3940751574, + "352": 16.4212262962, + "353": -6.2910584217, + "354": -27.1484062845, + "355": -40.7183344065, + "356": -52.3778668642, + "357": -56.7518840992, + "358": -59.1675863187, + "359": -54.3284304332, + "360": -47.4907687551, + "361": -33.4575376994, + "362": -17.3934972627, + "363": 5.7784261998, + "364": 31.0054479554, + "365": 63.2246148185, + "366": 97.5150583533, + "367": 138.6543142753, + "368": 181.8728508655, + "369": 231.7698379895, + "370": 283.7459038075, + "371": 342.2037015133, + "372": 402.7321707657, + "373": 469.5200728255, + "374": 538.3620672901, + "375": 613.2164923607, + "376": 690.1003241303, + "377": 772.7258559877, + "378": 857.3480996977, + "379": 947.4186531106, + "380": 1039.4453434203, + "381": 1136.605451059, + "382": 1235.6734006602, + "383": 1339.5396159638, + "384": 1445.2578489152, + "385": 1555.42025938, + "386": 1667.3715541106, + "387": 1783.3953990273, + "388": 1901.1379349192, + "389": 2022.565321175, + "390": 2145.6344222274, + "391": 2271.9861314009, + "392": 2399.8961000942, + "393": 2530.6734797112, + "394": 2662.9195138329, + "395": 2797.6064453203, + "396": 2933.6666301891, + "397": 3071.7315657587, + "398": 3211.0689339828, + "399": 3351.9669944079, + "400": 3494.0316450503, + "401": 3637.2067700549, + "402": 3781.4380388409, + "403": 3926.3251816156, + "404": 4072.153853619, + "405": 4218.1812108024, + "406": 4365.0317668761, + "407": 4511.6230352016, + "408": 4658.9159232893, + "409": 4805.4925739909, + "410": 4952.6464963538, + "411": 5098.6300583547, + "412": 5245.0642656885, + "413": 5389.878608562, + "414": 5535.0151919489, + "415": 5678.0887996422, + "416": 5821.3549712934, + "417": 5962.1231976402, + "418": 6102.9535514275, + "419": 6240.8608485487, + "420": 6378.6995914043, + "421": 6513.2017022013, + "422": 6647.5048475791, + "423": 6778.0709536682, + "424": 6908.3084684101, + "425": 7034.42328502, + "426": 7160.0811811546, + "427": 7281.2469907201, + "428": 7401.8293539386, + "429": 7517.5679703643, + "430": 7632.5989171675, + "431": 7742.4535730099, + "432": 7851.4791288031, + "433": 7955.016277923, + "434": 8057.6061686461, + "435": 8154.4171972173, + "436": 8250.1665474403, + "437": 8339.8693865615, + "438": 8428.4003173423, + "439": 8510.6409508886, + "440": 8591.6040710893, + "441": 8666.0579328519, + "442": 8739.1337180253, + "443": 8805.5069726265, + "444": 8870.4070260334, + "445": 8928.4377285601, + "446": 8984.9059193396, + "447": 9034.3650491204, + "448": 9082.1785231212, + "449": 9122.8708875664, + "450": 9161.8409468505, + "451": 9193.6059517881, + "452": 9223.5787993349, + "453": 9246.2910828024, + "454": 9267.1484294758, + "455": 9280.7183564664, + "456": 9292.3778878479, + "457": 9296.7519040592, + "458": 9299.167605305, + "459": 9294.3284484933, + "460": 9287.4907859341, + "461": 9273.4575540404, + "462": 9257.3935128065, + "463": 9234.2215885858, + "464": 9208.9945661088, + "465": 9176.7753985597, + "466": 9142.4849543722, + "467": 9101.3456978294, + "468": 9058.1271606487, + "469": 9008.230172963, + "470": 8956.2541066106, + "471": 8897.7963083966, + "472": 8837.2678386608, + "473": 8770.4799361411, + "474": 8701.6379412391, + "475": 8626.7835157524, + "476": 8549.8996835871, + "477": 8467.2741513531, + "478": 8382.651907285, + "479": 8292.5813535315, + "480": 8200.5546628978, + "481": 8103.3945549508, + "482": 8004.3266050564, + "483": 7900.460389474, + "484": 7794.7421562573, + "485": 7684.5797455402, + "486": 7572.6284505695, + "487": 7456.6046054245, + "488": 7338.8620693155, + "489": 7217.434682853, + "490": 7094.3655816041, + "491": 6968.0138722437, + "492": 6840.1039033727, + "493": 6709.3265235865, + "494": 6577.0804893039, + "495": 6442.3935576635, + "496": 6306.3333726492, + "497": 6168.2684369411, + "498": 6028.9310685853, + "499": 5888.0330080349, + "500": 5745.9683572734, + "501": 5602.7932321554, + "502": 5458.5619632615, + "503": 5313.6748203843, + "504": 5167.8461482833, + "505": 5021.8187910072, + "506": 4874.9682348452, + "507": 4728.3769664357, + "508": 4581.0840782682, + "509": 4434.5074274906, + "510": 4287.3535050554, + "511": 4141.3699429858, + "512": 3994.9357355865, + "513": 3850.1213926509, + "514": 3704.9848092047, + "515": 3561.9112014552, + "516": 3418.6450297504, + "517": 3277.8768033527, + "518": 3137.0464495169, + "519": 2999.1391523497, + "520": 2861.3004094503, + "521": 2726.7982986116, + "522": 2592.4951531941, + "523": 2461.9290470673, + "524": 2331.6915322896, + "525": 2205.5767156455, + "526": 2079.9188194784, + "527": 1958.7530098821, + "528": 1838.1706466342, + "529": 1722.4320301806, + "530": 1607.4010833508, + "531": 1497.5464274831, + "532": 1388.5208716659, + "533": 1284.9837225231, + "534": 1182.3938317782, + "535": 1085.5828031863, + "536": 989.8334529436, + "537": 900.1306138037, + "538": 811.599683005, + "539": 729.3590494418, + "540": 648.395929225, + "541": 573.942067447, + "542": 500.8662822591, + "543": 434.493027644, + "544": 369.5929742239, + "545": 311.5622716847, + "546": 255.0940808932, + "547": 205.6349511011, + "548": 157.8214770894, + "549": 117.1291126339, + "550": 78.1590533401, + "551": 46.3940483932, + "552": 16.4212008376, + "553": -6.2910826383, + "554": -27.1484293197, + "555": -40.718356318, + "556": -52.3778877067, + "557": -56.7519039249, + "558": -59.1676051773, + "559": -54.3284483718, + "560": -47.4907858186, + "561": -33.4575539305, + "562": -17.3935127019, + "563": 5.7784115137, + "564": 31.0054339858, + "565": 63.2246015303, + "566": 97.5150457134, + "567": 138.6543022521, + "568": 181.8728394288, + "569": 231.7698271107, + "570": 283.7458934595, + "571": 342.2036916701, + "572": 402.7321614026, + "573": 469.5200639192, + "574": 538.3620588183, + "575": 613.2164843021, + "576": 690.1003164649, + "577": 772.7258486963, + "578": 857.3480927619, + "579": 947.4186465132, + "580": 1039.4453371447, + "581": 1136.6054450896, + "582": 1235.673394982, + "583": 1339.5396105626, + "584": 1445.2578437775, + "585": 1555.4202544929, + "586": 1667.371549462, + "587": 1783.3953946054, + "588": 1901.137930713, + "589": 2022.5653171741, + "590": 2145.6344184216, + "591": 2271.9861277808, + "592": 2399.8960966507, + "593": 2530.6734764357, + "594": 2662.9195107172, + "595": 2797.6064423566, + "596": 2933.6666273699, + "597": 3071.7315630771, + "598": 3211.0689314319, + "599": 3351.9669919816, + "600": 3494.0316427423, + "601": 3637.2067678595, + "602": 3781.4380367526, + "603": 3926.3251796292, + "604": 4072.1538517295, + "605": 4218.181209005, + "606": 4365.0317651664, + "607": 4511.6230335753, + "608": 4658.9159217423, + "609": 4805.4925725194, + "610": 4952.6464949541, + "611": 5098.6300570233, + "612": 5245.0642644221, + "613": 5389.8786073573, + "614": 5535.015190803, + "615": 5678.0887985522, + "616": 5821.3549702566, + "617": 5962.123196654, + "618": 6102.9535504894, + "619": 6240.8608476563, + "620": 6378.6995905555, + "621": 6513.2017013939, + "622": 6647.5048468111, + "623": 6778.0709529376, + "624": 6908.3084677151, + "625": 7034.4232843589, + "626": 7160.0811805258, + "627": 7281.246990122, + "628": 7401.8293533697, + "629": 7517.5679698231, + "630": 7632.5989166527, + "631": 7742.4535725202, + "632": 7851.4791283373, + "633": 7955.0162774799, + "634": 8057.6061682247, + "635": 8154.4171968165, + "636": 8250.166547059, + "637": 8339.8693861988, + "638": 8428.4003169973, + "639": 8510.6409505604, + "640": 8591.6040707771, + "641": 8666.057932555, + "642": 8739.1337177429, + "643": 8805.5069723578, + "644": 8870.4070257779, + "645": 8928.4377283169, + "646": 8984.9059191084, + "647": 9034.3650489004, + "648": 9082.178522912, + "649": 9122.8708873674, + "650": 9161.8409466611, + "651": 9193.605951608, + "652": 9223.5787991636, + "653": 9246.2910826394, + "654": 9267.1484293208, + "655": 9280.718356319, + "656": 9292.3778877077, + "657": 9296.7519039258, + "658": 9299.1676051782, + "659": 9294.3284483726, + "660": 9287.4907858193, + "661": 9273.4575539312, + "662": 9257.3935127026, + "663": 9234.221588487, + "664": 9208.9945660148, + "665": 9176.7753984703, + "666": 9142.4849542871, + "667": 9101.3456977485, + "668": 9058.1271605718, + "669": 9008.2301728898, + "670": 8956.254106541, + "671": 8897.7963083304, + "672": 8837.2678385978, + "673": 8770.4799360812, + "674": 8701.6379411821, + "675": 8626.7835156982, + "676": 8549.8996835355, + "677": 8467.2741513041, + "678": 8382.6519072384, + "679": 8292.5813534871, + "680": 8200.5546628555, + "681": 8103.3945549107, + "682": 8004.3266050182, + "683": 7900.4603894377, + "684": 7794.7421562227, + "685": 7684.5797455073, + "686": 7572.6284505382, + "687": 7456.6046053948, + "688": 7338.8620692872, + "689": 7217.4346828261, + "690": 7094.3655815785, + "691": 6968.0138722194, + "692": 6840.1039033495, + "693": 6709.3265235645, + "694": 6577.080489283, + "695": 6442.3935576435, + "696": 6306.3333726302, + "697": 6168.268436923, + "698": 6028.9310685682, + "699": 5888.0330080185, + "700": 5745.9683572579, + "701": 5602.7932321406, + "702": 5458.5619632475, + "703": 5313.6748203709, + "704": 5167.8461482706, + "705": 5021.8187909951, + "706": 4874.9682348337, + "707": 4728.3769664247, + "708": 4581.0840782577, + "709": 4434.5074274807, + "710": 4287.3535050459, + "711": 4141.3699429768, + "712": 3994.935735578, + "713": 3850.1213926428, + "714": 3704.984809197, + "715": 3561.9112014479, + "716": 3418.6450297435, + "717": 3277.8768033461, + "718": 3137.0464495106, + "719": 2999.1391523437, + "720": 2861.3004094445, + "721": 2726.7982986062, + "722": 2592.495153189, + "723": 2461.9290470624, + "724": 2331.6915322849, + "725": 2205.5767156411, + "726": 2079.9188194742, + "727": 1958.7530098781, + "728": 1838.1706466303, + "729": 1722.4320301769, + "730": 1607.4010833473, + "731": 1497.5464274798, + "732": 1388.5208716627, + "733": 1284.9837225201, + "734": 1182.3938317753, + "735": 1085.5828031836, + "736": 989.8334529411, + "737": 900.1306138013, + "738": 811.5996830027, + "739": 729.3590494396, + "740": 648.3959292229, + "741": 573.942067445, + "742": 500.8662822572, + "743": 434.4930276422, + "744": 369.5929742222, + "745": 311.5622716831, + "746": 255.0940808916, + "747": 205.6349510996, + "748": 157.821477088, + "749": 117.1291126326, + "750": 78.1590533389, + "751": 46.394048392, + "752": 16.4212008364, + "753": -6.2910826394, + "754": -27.1484293208, + "755": -40.718356319, + "756": -52.3778877077, + "757": -56.7519039258, + "758": -59.1676051781, + "759": -54.3284483726, + "760": -47.4907858193, + "761": -33.4575539312, + "762": -17.3935127026, + "763": 5.778411513, + "764": 31.0054339852, + "765": 63.2246015297, + "766": 97.5150457129, + "767": 138.6543022515, + "768": 181.8728394283, + "769": 231.7698271102, + "770": 283.745893459, + "771": 342.2036916696, + "772": 402.7321614022, + "773": 469.5200639188, + "774": 538.3620588179, + "775": 613.2164843018, + "776": 690.1003164645, + "777": 772.7258486959, + "778": 857.3480927616, + "779": 947.4186465129, + "780": 1039.4453371445, + "781": 1136.6054450893, + "782": 1235.6733949818, + "783": 1339.5396105623, + "784": 1445.2578437773, + "785": 1555.4202544927, + "786": 1667.3715494618, + "787": 1783.3953946052, + "788": 1901.1379307128, + "789": 2022.5653171739, + "790": 2145.6344184215, + "791": 2271.9861277806, + "792": 2399.8960966505, + "793": 2530.6734764355, + "794": 2662.9195107171, + "795": 2797.6064423565, + "796": 2933.6666273698, + "797": 3071.731563077, + "798": 3211.0689314318, + "799": 3351.9669919815, + "800": 3494.0316427421, + "801": 3637.2067678594, + "802": 3781.4380367525, + "803": 3926.3251796291, + "804": 4072.1538517294, + "805": 4218.1812090049, + "806": 4365.0317651663, + "807": 4511.6230335753, + "808": 4658.9159217422, + "809": 4805.4925725193, + "810": 4952.646494954, + "811": 5098.6300570232, + "812": 5245.064264422, + "813": 5389.8786073573, + "814": 5535.015190803, + "815": 5678.0887985521, + "816": 5821.3549702565, + "817": 5962.1231966539, + "818": 6102.9535504894, + "819": 6240.8608476563, + "820": 6378.6995905554, + "821": 6513.2017013938, + "822": 6647.504846811, + "823": 6778.0709529376, + "824": 6908.3084677151, + "825": 7034.4232843589, + "826": 7160.0811805258, + "827": 7281.2469901219, + "828": 7401.8293533696, + "829": 7517.567969823, + "830": 7632.5989166527, + "831": 7742.4535725202, + "832": 7851.4791283373, + "833": 7955.0162774799, + "834": 8057.6061682246, + "835": 8154.4171968164, + "836": 8250.1665470589, + "837": 8339.8693861987, + "838": 8428.4003169973, + "839": 8510.6409505604, + "840": 8591.6040707771, + "841": 8666.057932555, + "842": 8739.1337177428, + "843": 8805.5069723578, + "844": 8870.4070257778, + "845": 8928.4377283169, + "846": 8984.9059191084, + "847": 9034.3650489004, + "848": 9082.178522912, + "849": 9122.8708873674, + "850": 9161.8409466611, + "851": 9193.605951608, + "852": 9223.5787991636, + "853": 9246.2910826394, + "854": 9267.1484293208, + "855": 9280.718356319, + "856": 9292.3778877076, + "857": 9296.7519039258, + "858": 9299.1676051781, + "859": 9294.3284483726, + "860": 9287.4907858193, + "861": 9273.4575539312, + "862": 9257.3935127026, + "863": 9234.221588487, + "864": 9208.9945660148, + "865": 9176.7753984703, + "866": 9142.4849542871, + "867": 9101.3456977485, + "868": 9058.1271605718, + "869": 9008.2301728898, + "870": 8956.254106541, + "871": 8897.7963083304, + "872": 8837.2678385978, + "873": 8770.4799360812, + "874": 8701.6379411821, + "875": 8626.7835156982, + "876": 8549.8996835355, + "877": 8467.2741513041, + "878": 8382.6519072384, + "879": 8292.5813534871, + "880": 8200.5546628555, + "881": 8103.3945549107, + "882": 8004.3266050182, + "883": 7900.4603894377, + "884": 7794.7421562227, + "885": 7684.5797455073, + "886": 7572.6284505383, + "887": 7456.6046053948, + "888": 7338.8620692872, + "889": 7217.4346828261, + "890": 7094.3655815785, + "891": 6968.0138722194, + "892": 6840.1039033495, + "893": 6709.3265235645, + "894": 6577.080489283, + "895": 6442.3935576436, + "896": 6306.3333726302, + "897": 6168.268436923, + "898": 6028.9310685682, + "899": 5888.0330080186, + "900": 5745.9683572579, + "901": 5602.7932321406, + "902": 5458.5619632475, + "903": 5313.6748203709, + "904": 5167.8461482707, + "905": 5021.8187909951, + "906": 4874.9682348337, + "907": 4728.3769664247, + "908": 4581.0840782578, + "909": 4434.5074274807, + "910": 4287.353505046, + "911": 4141.3699429768, + "912": 3994.935735578, + "913": 3850.1213926428, + "914": 3704.984809197, + "915": 3561.9112014479, + "916": 3418.6450297435, + "917": 3277.8768033461, + "918": 3137.0464495106, + "919": 2999.1391523437, + "920": 2861.3004094446, + "921": 2726.7982986062, + "922": 2592.495153189, + "923": 2461.9290470624, + "924": 2331.6915322849, + "925": 2205.5767156411, + "926": 2079.9188194742, + "927": 1958.7530098781, + "928": 1838.1706466304, + "929": 1722.4320301769, + "930": 1607.4010833473, + "931": 1497.5464274798, + "932": 1388.5208716627, + "933": 1284.9837225201, + "934": 1182.3938317754, + "935": 1085.5828031836, + "936": 989.8334529411, + "937": 900.1306138013, + "938": 811.5996830027, + "939": 729.3590494396, + "940": 648.3959292229, + "941": 573.942067445, + "942": 500.8662822572, + "943": 434.4930276422, + "944": 369.5929742222, + "945": 311.5622716831, + "946": 255.0940808916, + "947": 205.6349510996, + "948": 157.821477088, + "949": 117.1291126326, + "950": 78.1590533389, + "951": 46.394048392, + "952": 16.4212008364, + "953": -6.2910826394, + "954": -27.1484293208, + "955": -40.718356319, + "956": -52.3778877077, + "957": -56.7519039258, + "958": -59.1676051781, + "959": -54.3284483726, + "960": -47.4907858193, + "961": -33.4575539312, + "962": -17.3935127026, + "963": 5.778411513, + "964": 31.0054339852, + "965": 63.2246015297, + "966": 97.5150457129, + "967": 138.6543022515, + "968": 181.8728394283, + "969": 231.7698271102, + "970": 283.745893459, + "971": 342.2036916696, + "972": 402.7321614022, + "973": 469.5200639188, + "974": 538.3620588179, + "975": 613.2164843018, + "976": 690.1003164645, + "977": 772.7258486959, + "978": 857.3480927616, + "979": 947.4186465129, + "980": 1039.4453371445, + "981": 1136.6054450893, + "982": 1235.6733949818, + "983": 1339.5396105623, + "984": 1445.2578437773, + "985": 1555.4202544927, + "986": 1667.3715494617, + "987": 1783.3953946052, + "988": 1901.1379307129, + "989": 2022.5653171739, + "990": 2145.6344184215, + "991": 2271.9861277806, + "992": 2399.8960966505, + "993": 2530.6734764355, + "994": 2662.919510717, + "995": 2797.6064423564, + "996": 2933.6666273698, + "997": 3071.731563077, + "998": 3211.0689314318, + "999": 3351.9669919815, + "1000": 3494.0316427421, + "1001": 3637.2067678594, + "1002": 3781.4380367525, + "1003": 3926.3251796291, + "1004": 4072.1538517294, + "1005": 4218.1812090049, + "1006": 4365.0317651663, + "1007": 4511.6230335753, + "1008": 4658.9159217422, + "1009": 4805.4925725193, + "1010": 4952.646494954, + "1011": 5098.6300570232, + "1012": 5245.064264422, + "1013": 5389.8786073572, + "1014": 5535.015190803, + "1015": 5678.0887985521, + "1016": 5821.3549702565, + "1017": 5962.1231966539, + "1018": 6102.9535504894, + "1019": 6240.8608476563, + "1020": 6378.6995905554, + "1021": 6513.2017013938, + "1022": 6647.504846811, + "1023": 6778.0709529376, + "1024": 6908.3084677151, + "1025": 7034.4232843589, + "1026": 7160.0811805258, + "1027": 7281.2469901219, + "1028": 7401.8293533696, + "1029": 7517.567969823, + "1030": 7632.5989166527, + "1031": 7742.4535725202, + "1032": 7851.4791283373, + "1033": 7955.0162774799, + "1034": 8057.6061682246, + "1035": 8154.4171968164, + "1036": 8250.1665470589, + "1037": 8339.8693861987, + "1038": 8428.4003169973, + "1039": 8510.6409505604, + "1040": 8591.6040707771, + "1041": 8666.057932555, + "1042": 8739.1337177428, + "1043": 8805.5069723578, + "1044": 8870.4070257778, + "1045": 8928.4377283169, + "1046": 8984.9059191084, + "1047": 9034.3650489004, + "1048": 9082.178522912, + "1049": 9122.8708873674, + "1050": 9161.8409466611, + "1051": 9193.605951608, + "1052": 9223.5787991636, + "1053": 9246.2910826394, + "1054": 9267.1484293208, + "1055": 9280.718356319, + "1056": 9292.3778877076, + "1057": 9296.7519039258, + "1058": 9299.1676051781, + "1059": 9294.3284483726, + "1060": 9287.4907858193, + "1061": 9273.4575539312, + "1062": 9257.3935127026, + "1063": 9234.221588487, + "1064": 9208.9945660148, + "1065": 9176.7753984703, + "1066": 9142.4849542871, + "1067": 9101.3456977485, + "1068": 9058.1271605718, + "1069": 9008.2301728898, + "1070": 8956.254106541, + "1071": 8897.7963083304, + "1072": 8837.2678385978, + "1073": 8770.4799360812, + "1074": 8701.6379411821, + "1075": 8626.7835156982, + "1076": 8549.8996835355, + "1077": 8467.2741513041, + "1078": 8382.6519072384, + "1079": 8292.5813534871, + "1080": 8200.5546628555, + "1081": 8103.3945549107, + "1082": 8004.3266050182, + "1083": 7900.4603894377, + "1084": 7794.7421562227, + "1085": 7684.5797455073, + "1086": 7572.6284505383, + "1087": 7456.6046053948, + "1088": 7338.8620692872, + "1089": 7217.4346828261, + "1090": 7094.3655815785, + "1091": 6968.0138722194, + "1092": 6840.1039033495, + "1093": 6709.3265235645, + "1094": 6577.080489283, + "1095": 6442.3935576436, + "1096": 6306.3333726302, + "1097": 6168.268436923, + "1098": 6028.9310685682, + "1099": 5888.0330080186, + "1100": 5745.9683572579, + "1101": 5602.7932321406, + "1102": 5458.5619632475, + "1103": 5313.6748203709, + "1104": 5167.8461482707, + "1105": 5021.8187909951, + "1106": 4874.9682348337, + "1107": 4728.3769664247, + "1108": 4581.0840782578, + "1109": 4434.5074274807, + "1110": 4287.353505046, + "1111": 4141.3699429768, + "1112": 3994.935735578, + "1113": 3850.1213926428, + "1114": 3704.984809197, + "1115": 3561.9112014479, + "1116": 3418.6450297435, + "1117": 3277.8768033461, + "1118": 3137.0464495106, + "1119": 2999.1391523437, + "1120": 2861.3004094446, + "1121": 2726.7982986062, + "1122": 2592.495153189, + "1123": 2461.9290470624, + "1124": 2331.6915322849, + "1125": 2205.5767156411, + "1126": 2079.9188194742, + "1127": 1958.7530098781, + "1128": 1838.1706466304, + "1129": 1722.4320301769, + "1130": 1607.4010833473, + "1131": 1497.5464274798, + "1132": 1388.5208716627, + "1133": 1284.9837225201, + "1134": 1182.3938317754, + "1135": 1085.5828031836, + "1136": 989.8334529411, + "1137": 900.1306138013, + "1138": 811.5996830027, + "1139": 729.3590494396, + "1140": 648.3959292229, + "1141": 573.942067445, + "1142": 500.8662822572, + "1143": 434.4930276422, + "1144": 369.5929742222, + "1145": 311.5622716831, + "1146": 255.0940808916, + "1147": 205.6349510996, + "1148": 157.821477088, + "1149": 117.1291126326, + "1150": 78.1590533389, + "1151": 46.394048392, + "1152": 16.4212008364, + "1153": -6.2910826394, + "1154": -27.1484293208, + "1155": -40.718356319, + "1156": -52.3778877077, + "1157": -56.7519039258, + "1158": -59.1676051781, + "1159": -54.3284483726, + "1160": -47.4907858193, + "1161": -33.4575539312, + "1162": -17.3935127026, + "1163": 5.778411513, + "1164": 31.0054339852, + "1165": 63.2246015297, + "1166": 97.5150457129, + "1167": 138.6543022515, + "1168": 181.8728394283, + "1169": 231.7698271102, + "1170": 283.745893459, + "1171": 342.2036916696, + "1172": 402.7321614022, + "1173": 469.5200639188, + "1174": 538.3620588179, + "1175": 613.2164843018, + "1176": 690.1003164645, + "1177": 772.7258486959, + "1178": 857.3480927616, + "1179": 947.4186465129, + "1180": 1039.4453371445, + "1181": 1136.6054450893, + "1182": 1235.6733949818, + "1183": 1339.5396105623, + "1184": 1445.2578437773, + "1185": 1555.4202544927, + "1186": 1667.3715494617, + "1187": 1783.3953946052, + "1188": 1901.1379307129, + "1189": 2022.5653171739, + "1190": 2145.6344184215, + "1191": 2271.9861277806, + "1192": 2399.8960966505, + "1193": 2530.6734764355, + "1194": 2662.919510717, + "1195": 2797.6064423564, + "1196": 2933.6666273698, + "1197": 3071.731563077, + "1198": 3211.0689314318, + "1199": 3351.9669919815, + "1200": 3494.0316427421, + "1201": 3637.2067678594, + "1202": 3781.4380367525, + "1203": 3926.3251796291, + "1204": 4072.1538517294, + "1205": 4218.1812090049, + "1206": 4365.0317651663, + "1207": 4511.6230335753, + "1208": 4658.9159217422, + "1209": 4805.4925725193, + "1210": 4952.646494954, + "1211": 5098.6300570232, + "1212": 5245.064264422, + "1213": 5389.8786073572, + "1214": 5535.015190803, + "1215": 5678.0887985521, + "1216": 5821.3549702565, + "1217": 5962.1231966539, + "1218": 6102.9535504894, + "1219": 6240.8608476563, + "1220": 6378.6995905554, + "1221": 6513.2017013938, + "1222": 6647.504846811, + "1223": 6778.0709529376, + "1224": 6908.3084677151, + "1225": 7034.4232843589, + "1226": 7160.0811805258, + "1227": 7281.2469901219, + "1228": 7401.8293533696, + "1229": 7517.5679698231, + "1230": 7632.5989166527, + "1231": 7742.4535725202, + "1232": 7851.4791283373, + "1233": 7955.0162774799, + "1234": 8057.6061682246, + "1235": 8154.4171968164, + "1236": 8250.1665470589, + "1237": 8339.8693861987, + "1238": 8428.4003169973, + "1239": 8510.6409505604, + "1240": 8591.6040707771, + "1241": 8666.057932555, + "1242": 8739.1337177428, + "1243": 8805.5069723578, + "1244": 8870.4070257778, + "1245": 8928.4377283169, + "1246": 8984.9059191084, + "1247": 9034.3650489004, + "1248": 9082.178522912, + "1249": 9122.8708873674, + "1250": 9161.8409466611, + "1251": 9193.605951608, + "1252": 9223.5787991636, + "1253": 9246.2910826394, + "1254": 9267.1484293208, + "1255": 9280.718356319, + "1256": 9292.3778877076, + "1257": 9296.7519039258, + "1258": 9299.1676051781, + "1259": 9294.3284483726, + "1260": 9287.4907858193, + "1261": 9273.4575539312, + "1262": 9257.3935127026, + "1263": 9234.221588487, + "1264": 9208.9945660148, + "1265": 9176.7753984703, + "1266": 9142.4849542871, + "1267": 9101.3456977485, + "1268": 9058.1271605718, + "1269": 9008.2301728898, + "1270": 8956.254106541, + "1271": 8897.7963083304, + "1272": 8837.2678385978, + "1273": 8770.4799360812, + "1274": 8701.6379411821, + "1275": 8626.7835156982, + "1276": 8549.8996835355, + "1277": 8467.2741513041, + "1278": 8382.6519072384, + "1279": 8292.5813534871, + "1280": 8200.5546628555, + "1281": 8103.3945549107, + "1282": 8004.3266050182, + "1283": 7900.4603894377, + "1284": 7794.7421562227, + "1285": 7684.5797455073, + "1286": 7572.6284505383, + "1287": 7456.6046053948, + "1288": 7338.8620692872, + "1289": 7217.4346828261, + "1290": 7094.3655815785, + "1291": 6968.0138722194, + "1292": 6840.1039033495, + "1293": 6709.3265235645, + "1294": 6577.080489283, + "1295": 6442.3935576436, + "1296": 6306.3333726302, + "1297": 6168.268436923, + "1298": 6028.9310685682, + "1299": 5888.0330080186, + "1300": 5745.9683572579, + "1301": 5602.7932321406, + "1302": 5458.5619632475, + "1303": 5313.6748203709, + "1304": 5167.8461482706, + "1305": 5021.8187909951, + "1306": 4874.9682348337, + "1307": 4728.3769664247, + "1308": 4581.0840782578, + "1309": 4434.5074274807, + "1310": 4287.353505046, + "1311": 4141.3699429768, + "1312": 3994.935735578, + "1313": 3850.1213926428, + "1314": 3704.984809197, + "1315": 3561.9112014479, + "1316": 3418.6450297435, + "1317": 3277.8768033461, + "1318": 3137.0464495106, + "1319": 2999.1391523437, + "1320": 2861.3004094446, + "1321": 2726.7982986062, + "1322": 2592.495153189, + "1323": 2461.9290470624, + "1324": 2331.6915322849, + "1325": 2205.5767156411, + "1326": 2079.9188194742, + "1327": 1958.7530098781, + "1328": 1838.1706466304, + "1329": 1722.4320301769, + "1330": 1607.4010833473, + "1331": 1497.5464274798, + "1332": 1388.5208716627, + "1333": 1284.9837225201, + "1334": 1182.3938317754, + "1335": 1085.5828031836, + "1336": 989.8334529411, + "1337": 900.1306138013, + "1338": 811.5996830027, + "1339": 729.3590494396, + "1340": 648.3959292229, + "1341": 573.942067445, + "1342": 500.8662822572, + "1343": 434.4930276422, + "1344": 369.5929742222, + "1345": 311.5622716831, + "1346": 255.0940808916, + "1347": 205.6349510996, + "1348": 157.821477088, + "1349": 117.1291126326, + "1350": 78.1590533389, + "1351": 46.394048392, + "1352": 16.4212008364, + "1353": -6.2910826394, + "1354": -27.1484293208, + "1355": -40.718356319, + "1356": -52.3778877077, + "1357": -56.7519039258, + "1358": -59.1676051781, + "1359": -54.3284483726, + "1360": -47.4907858193, + "1361": -33.4575539312, + "1362": -17.3935127026, + "1363": 5.778411513, + "1364": 31.0054339852, + "1365": 63.2246015297, + "1366": 97.5150457129, + "1367": 138.6543022515, + "1368": 181.8728394283, + "1369": 231.7698271102, + "1370": 283.745893459, + "1371": 342.2036916696, + "1372": 402.7321614022, + "1373": 469.5200639188, + "1374": 538.3620588179, + "1375": 613.2164843018, + "1376": 690.1003164645, + "1377": 772.7258486959, + "1378": 857.3480927616, + "1379": 947.4186465129, + "1380": 1039.4453371445, + "1381": 1136.6054450893, + "1382": 1235.6733949818, + "1383": 1339.5396105623, + "1384": 1445.2578437773, + "1385": 1555.4202544927, + "1386": 1667.3715494617, + "1387": 1783.3953946052, + "1388": 1901.1379307129, + "1389": 2022.5653171739, + "1390": 2145.6344184215, + "1391": 2271.9861277806, + "1392": 2399.8960966505, + "1393": 2530.6734764355, + "1394": 2662.919510717, + "1395": 2797.6064423564, + "1396": 2933.6666273698, + "1397": 3071.731563077, + "1398": 3211.0689314318, + "1399": 3351.9669919815, + "1400": 3494.0316427421, + "1401": 3637.2067678594, + "1402": 3781.4380367525, + "1403": 3926.3251796291, + "1404": 4072.1538517294, + "1405": 4218.1812090049, + "1406": 4365.0317651663, + "1407": 4511.6230335753, + "1408": 4658.9159217422, + "1409": 4805.4925725193, + "1410": 4952.646494954, + "1411": 5098.6300570232, + "1412": 5245.064264422, + "1413": 5389.8786073572, + "1414": 5535.015190803, + "1415": 5678.0887985521, + "1416": 5821.3549702565, + "1417": 5962.1231966539, + "1418": 6102.9535504894, + "1419": 6240.8608476563, + "1420": 6378.6995905554, + "1421": 6513.2017013938, + "1422": 6647.504846811, + "1423": 6778.0709529376, + "1424": 6908.3084677151, + "1425": 7034.4232843589, + "1426": 7160.0811805258, + "1427": 7281.2469901219, + "1428": 7401.8293533696, + "1429": 7517.5679698231, + "1430": 7632.5989166527, + "1431": 7742.4535725202, + "1432": 7851.4791283373, + "1433": 7955.0162774799, + "1434": 8057.6061682246, + "1435": 8154.4171968164, + "1436": 8250.1665470589, + "1437": 8339.8693861987, + "1438": 8428.4003169973, + "1439": 8510.6409505604, + "1440": 8591.6040707771, + "1441": 8666.057932555, + "1442": 8739.1337177428, + "1443": 8805.5069723578, + "1444": 8870.4070257778, + "1445": 8928.4377283169, + "1446": 8984.9059191084, + "1447": 9034.3650489004, + "1448": 9082.178522912, + "1449": 9122.8708873674, + "1450": 9161.8409466611, + "1451": 9193.605951608, + "1452": 9223.5787991636, + "1453": 9246.2910826394, + "1454": 9267.1484293208, + "1455": 9280.718356319, + "1456": 9292.3778877076, + "1457": 9296.7519039258, + "1458": 9299.1676051781, + "1459": 9294.3284483726, + "1460": 9287.4907858193, + "1461": 9273.4575539312, + "1462": 9257.3935127026, + "1463": 9234.221588487, + "1464": 9208.9945660148, + "1465": 9176.7753984703, + "1466": 9142.4849542871, + "1467": 9101.3456977485, + "1468": 9058.1271605718, + "1469": 9008.2301728898, + "1470": 8956.254106541, + "1471": 8897.7963083304, + "1472": 8837.2678385978, + "1473": 8770.4799360812, + "1474": 8701.6379411821, + "1475": 8626.7835156982, + "1476": 8549.8996835355, + "1477": 8467.2741513041, + "1478": 8382.6519072384, + "1479": 8292.5813534871, + "1480": 8200.5546628555, + "1481": 8103.3945549107, + "1482": 8004.3266050182, + "1483": 7900.4603894377, + "1484": 7794.7421562227, + "1485": 7684.5797455073, + "1486": 7572.6284505383, + "1487": 7456.6046053948, + "1488": 7338.8620692872, + "1489": 7217.4346828261, + "1490": 7094.3655815785, + "1491": 6968.0138722194, + "1492": 6840.1039033495, + "1493": 6709.3265235645, + "1494": 6577.080489283, + "1495": 6442.3935576436, + "1496": 6306.3333726302, + "1497": 6168.268436923, + "1498": 6028.9310685682, + "1499": 5888.0330080186, + "1500": 5745.9683572579, + "1501": 5602.7932321406, + "1502": 5458.5619632475, + "1503": 5313.6748203709, + "1504": 5167.8461482706, + "1505": 5021.8187909951, + "1506": 4874.9682348337, + "1507": 4728.3769664247, + "1508": 4581.0840782578, + "1509": 4434.5074274807, + "1510": 4287.353505046, + "1511": 4141.3699429768, + "1512": 3994.935735578, + "1513": 3850.1213926428, + "1514": 3704.984809197, + "1515": 3561.9112014479, + "1516": 3418.6450297435, + "1517": 3277.8768033461, + "1518": 3137.0464495106, + "1519": 2999.1391523437, + "1520": 2861.3004094446, + "1521": 2726.7982986062, + "1522": 2592.495153189, + "1523": 2461.9290470624, + "1524": 2331.6915322849, + "1525": 2205.5767156411, + "1526": 2079.9188194742, + "1527": 1958.7530098781, + "1528": 1838.1706466304, + "1529": 1722.4320301769, + "1530": 1607.4010833473, + "1531": 1497.5464274798, + "1532": 1388.5208716627, + "1533": 1284.9837225201, + "1534": 1182.3938317754, + "1535": 1085.5828031836, + "1536": 989.8334529411, + "1537": 900.1306138013, + "1538": 811.5996830027, + "1539": 729.3590494396, + "1540": 648.3959292229, + "1541": 573.942067445, + "1542": 500.8662822572, + "1543": 434.4930276422, + "1544": 369.5929742222, + "1545": 311.5622716831, + "1546": 255.0940808916, + "1547": 205.6349510996, + "1548": 157.821477088, + "1549": 117.1291126326, + "1550": 78.1590533389, + "1551": 46.394048392, + "1552": 16.4212008364, + "1553": -6.2910826394, + "1554": -27.1484293208, + "1555": -40.718356319, + "1556": -52.3778877077, + "1557": -56.7519039258, + "1558": -59.1676051781, + "1559": -54.3284483726, + "1560": -47.4907858193, + "1561": -33.4575539312, + "1562": -17.3935127026, + "1563": 5.778411513, + "1564": 31.0054339852, + "1565": 63.2246015297, + "1566": 97.5150457129, + "1567": 138.6543022515, + "1568": 181.8728394283, + "1569": 231.7698271102, + "1570": 283.745893459, + "1571": 342.2036916696, + "1572": 402.7321614022, + "1573": 469.5200639188, + "1574": 538.3620588179, + "1575": 613.2164843018, + "1576": 690.1003164645, + "1577": 772.7258486959, + "1578": 857.3480927616, + "1579": 947.4186465129, + "1580": 1039.4453371445, + "1581": 1136.6054450893, + "1582": 1235.6733949818, + "1583": 1339.5396105623, + "1584": 1445.2578437773, + "1585": 1555.4202544927, + "1586": 1667.3715494617, + "1587": 1783.3953946052, + "1588": 1901.1379307128, + "1589": 2022.5653171739, + "1590": 2145.6344184215, + "1591": 2271.9861277806, + "1592": 2399.8960966505, + "1593": 2530.6734764355, + "1594": 2662.919510717, + "1595": 2797.6064423564, + "1596": 2933.6666273698, + "1597": 3071.731563077, + "1598": 3211.0689314318, + "1599": 3351.9669919815, + "1600": 3494.0316427421, + "1601": 3637.2067678594, + "1602": 3781.4380367526, + "1603": 3926.3251796291, + "1604": 4072.1538517294, + "1605": 4218.1812090049, + "1606": 4365.0317651663, + "1607": 4511.6230335752, + "1608": 4658.9159217423, + "1609": 4805.4925725194, + "1610": 4952.6464949541, + "1611": 5098.6300570232, + "1612": 5245.064264422, + "1613": 5389.8786073573, + "1614": 5535.015190803, + "1615": 5678.0887985522, + "1616": 5821.3549702565, + "1617": 5962.123196654, + "1618": 6102.9535504894, + "1619": 6240.8608476563, + "1620": 6378.6995905555, + "1621": 6513.2017013938, + "1622": 6647.504846811, + "1623": 6778.0709529376, + "1624": 6908.3084677151, + "1625": 7034.4232843589, + "1626": 7160.0811805258, + "1627": 7281.246990122, + "1628": 7401.8293533696, + "1629": 7517.5679698231, + "1630": 7632.5989166527, + "1631": 7742.4535725202, + "1632": 7851.4791283373, + "1633": 7955.0162774799, + "1634": 8057.6061682247, + "1635": 8154.4171968164, + "1636": 8250.166547059, + "1637": 8339.8693861987, + "1638": 8428.4003169973, + "1639": 8510.6409505604, + "1640": 8591.6040707771, + "1641": 8666.057932555, + "1642": 8739.1337177429, + "1643": 8805.5069723578, + "1644": 8870.4070257778, + "1645": 8928.4377283169, + "1646": 8984.9059191084, + "1647": 9034.3650489004, + "1648": 9082.178522912, + "1649": 9122.8708873674, + "1650": 9161.8409466611, + "1651": 9193.605951608, + "1652": 9223.5787991636, + "1653": 9246.2910826394, + "1654": 9267.1484293208, + "1655": 9280.718356319, + "1656": 9292.3778877076, + "1657": 9296.7519039259, + "1658": 9299.1676051781, + "1659": 9294.3284483726, + "1660": 9287.4907858193, + "1661": 9273.4575539312, + "1662": 9257.3935127026, + "1663": 9234.221588487, + "1664": 9208.9945660148, + "1665": 9176.7753984703, + "1666": 9142.4849542871, + "1667": 9101.3456977485, + "1668": 9058.1271605717, + "1669": 9008.2301728898, + "1670": 8956.254106541, + "1671": 8897.7963083304, + "1672": 8837.2678385978, + "1673": 8770.4799360812, + "1674": 8701.6379411821, + "1675": 8626.7835156982, + "1676": 8549.8996835355, + "1677": 8467.274151304, + "1678": 8382.6519072384, + "1679": 8292.581353487, + "1680": 8200.5546628556, + "1681": 8103.3945549107, + "1682": 8004.3266050183, + "1683": 7900.4603894376, + "1684": 7794.7421562227, + "1685": 7684.5797455073, + "1686": 7572.6284505382, + "1687": 7456.6046053948, + "1688": 7338.8620692871, + "1689": 7217.4346828261, + "1690": 7094.3655815785, + "1691": 6968.0138722194, + "1692": 6840.1039033495, + "1693": 6709.3265235644, + "1694": 6577.0804892829, + "1695": 6442.3935576435, + "1696": 6306.3333726302, + "1697": 6168.268436923, + "1698": 6028.9310685682, + "1699": 5888.0330080185, + "1700": 5745.9683572578, + "1701": 5602.7932321406, + "1702": 5458.5619632474, + "1703": 5313.6748203709, + "1704": 5167.8461482706, + "1705": 5021.8187909951, + "1706": 4874.9682348336, + "1707": 4728.3769664248, + "1708": 4581.0840782577, + "1709": 4434.5074274806, + "1710": 4287.3535050459, + "1711": 4141.3699429768, + "1712": 3994.935735578, + "1713": 3850.1213926427, + "1714": 3704.984809197, + "1715": 3561.9112014478, + "1716": 3418.6450297434, + "1717": 3277.8768033461, + "1718": 3137.0464495106, + "1719": 2999.1391523437, + "1720": 2861.3004094445, + "1721": 2726.7982986062, + "1722": 2592.4951531889, + "1723": 2461.9290470624, + "1724": 2331.6915322849, + "1725": 2205.5767156411, + "1726": 2079.9188194742, + "1727": 1958.753009878, + "1728": 1838.1706466303, + "1729": 1722.4320301769, + "1730": 1607.4010833473, + "1731": 1497.5464274798, + "1732": 1388.5208716627, + "1733": 1284.9837225201, + "1734": 1182.3938317753, + "1735": 1085.5828031836, + "1736": 989.833452941, + "1737": 900.1306138013, + "1738": 811.5996830027, + "1739": 729.3590494396, + "1740": 648.3959292229, + "1741": 573.942067445, + "1742": 500.8662822572, + "1743": 434.4930276422, + "1744": 369.5929742222, + "1745": 311.5622716831, + "1746": 255.0940808916, + "1747": 205.6349510996, + "1748": 157.821477088, + "1749": 117.1291126326, + "1750": 78.1590533389, + "1751": 46.394048392, + "1752": 16.4212008364, + "1753": -6.2910826394, + "1754": -27.1484293208, + "1755": -40.718356319, + "1756": -52.3778877077, + "1757": -56.7519039259, + "1758": -59.1676051781, + "1759": -54.3284483726, + "1760": -47.4907858193, + "1761": -33.4575539312, + "1762": -17.3935127026, + "1763": 5.7784115131, + "1764": 31.0054339852, + "1765": 63.2246015297, + "1766": 97.5150457129, + "1767": 138.6543022515, + "1768": 181.8728394283, + "1769": 231.7698271102, + "1770": 283.745893459, + "1771": 342.2036916696, + "1772": 402.7321614022, + "1773": 469.5200639188, + "1774": 538.3620588179, + "1775": 613.2164843018, + "1776": 690.1003164645, + "1777": 772.725848696, + "1778": 857.3480927616, + "1779": 947.418646513, + "1780": 1039.4453371444, + "1781": 1136.6054450893, + "1782": 1235.6733949817, + "1783": 1339.5396105624, + "1784": 1445.2578437773, + "1785": 1555.4202544927, + "1786": 1667.3715494618, + "1787": 1783.3953946052, + "1788": 1901.1379307129, + "1789": 2022.5653171739, + "1790": 2145.6344184215, + "1791": 2271.9861277807, + "1792": 2399.8960966505, + "1793": 2530.6734764356, + "1794": 2662.919510717, + "1795": 2797.6064423565, + "1796": 2933.6666273698, + "1797": 3071.731563077, + "1798": 3211.0689314318, + "1799": 3351.9669919815, + "1800": 3494.0316427422, + "1801": 3637.2067678594, + "1802": 3781.4380367526, + "1803": 3926.3251796291, + "1804": 4072.1538517294, + "1805": 4218.1812090049, + "1806": 4365.0317651664, + "1807": 4511.6230335753, + "1808": 4658.9159217423, + "1809": 4805.4925725194, + "1810": 4952.6464949541, + "1811": 5098.6300570232, + "1812": 5245.064264422, + "1813": 5389.8786073573, + "1814": 5535.015190803, + "1815": 5678.0887985522, + "1816": 5821.3549702566, + "1817": 5962.1231966539, + "1818": 6102.9535504894, + "1819": 6240.8608476563, + "1820": 6378.6995905555, + "1821": 6513.2017013938, + "1822": 6647.5048468111, + "1823": 6778.0709529376, + "1824": 6908.3084677151, + "1825": 7034.4232843589, + "1826": 7160.0811805258, + "1827": 7281.246990122, + "1828": 7401.8293533696, + "1829": 7517.5679698231, + "1830": 7632.5989166527, + "1831": 7742.4535725202, + "1832": 7851.4791283373, + "1833": 7955.0162774799, + "1834": 8057.6061682247, + "1835": 8154.4171968164, + "1836": 8250.166547059, + "1837": 8339.8693861987, + "1838": 8428.4003169973, + "1839": 8510.6409505604, + "1840": 8591.6040707771, + "1841": 8666.057932555, + "1842": 8739.1337177428, + "1843": 8805.5069723578, + "1844": 8870.4070257778, + "1845": 8928.4377283169, + "1846": 8984.9059191084, + "1847": 9034.3650489004, + "1848": 9082.178522912, + "1849": 9122.8708873674, + "1850": 9161.8409466611, + "1851": 9193.605951608, + "1852": 9223.5787991636, + "1853": 9246.2910826394, + "1854": 9267.1484293208, + "1855": 9280.718356319, + "1856": 9292.3778877076, + "1857": 9296.7519039259, + "1858": 9299.1676051781, + "1859": 9294.3284483726, + "1860": 9287.4907858193, + "1861": 9273.4575539312, + "1862": 9257.3935127026, + "1863": 9234.221588487, + "1864": 9208.9945660148, + "1865": 9176.7753984703, + "1866": 9142.4849542871, + "1867": 9101.3456977485, + "1868": 9058.1271605717, + "1869": 9008.2301728898, + "1870": 8956.254106541, + "1871": 8897.7963083304, + "1872": 8837.2678385978, + "1873": 8770.4799360812, + "1874": 8701.6379411821, + "1875": 8626.7835156982, + "1876": 8549.8996835355, + "1877": 8467.274151304, + "1878": 8382.6519072384, + "1879": 8292.581353487, + "1880": 8200.5546628555, + "1881": 8103.3945549107, + "1882": 8004.3266050183, + "1883": 7900.4603894376, + "1884": 7794.7421562227, + "1885": 7684.5797455073, + "1886": 7572.6284505382, + "1887": 7456.6046053948, + "1888": 7338.8620692871, + "1889": 7217.4346828261, + "1890": 7094.3655815785, + "1891": 6968.0138722193, + "1892": 6840.1039033495, + "1893": 6709.3265235644, + "1894": 6577.080489283, + "1895": 6442.3935576435, + "1896": 6306.3333726302, + "1897": 6168.268436923, + "1898": 6028.9310685682, + "1899": 5888.0330080185, + "1900": 5745.9683572578, + "1901": 5602.7932321406, + "1902": 5458.5619632474, + "1903": 5313.6748203709, + "1904": 5167.8461482706, + "1905": 5021.8187909951, + "1906": 4874.9682348336, + "1907": 4728.3769664247, + "1908": 4581.0840782577, + "1909": 4434.5074274806, + "1910": 4287.3535050459, + "1911": 4141.3699429768, + "1912": 3994.935735578, + "1913": 3850.1213926427, + "1914": 3704.984809197, + "1915": 3561.9112014478, + "1916": 3418.6450297434, + "1917": 3277.8768033461, + "1918": 3137.0464495106, + "1919": 2999.1391523437, + "1920": 2861.3004094445, + "1921": 2726.7982986062, + "1922": 2592.4951531889, + "1923": 2461.9290470624, + "1924": 2331.6915322849, + "1925": 2205.5767156411, + "1926": 2079.9188194742, + "1927": 1958.753009878, + "1928": 1838.1706466303, + "1929": 1722.4320301769, + "1930": 1607.4010833473, + "1931": 1497.5464274798, + "1932": 1388.5208716627, + "1933": 1284.9837225201, + "1934": 1182.3938317753, + "1935": 1085.5828031836, + "1936": 989.833452941, + "1937": 900.1306138013, + "1938": 811.5996830027, + "1939": 729.3590494396, + "1940": 648.3959292229, + "1941": 573.942067445, + "1942": 500.8662822572, + "1943": 434.4930276422, + "1944": 369.5929742222, + "1945": 311.5622716831, + "1946": 255.0940808916, + "1947": 205.6349510996, + "1948": 157.821477088, + "1949": 117.1291126326, + "1950": 78.1590533389, + "1951": 46.394048392, + "1952": 16.4212008364, + "1953": -6.2910826394, + "1954": -27.1484293208, + "1955": -40.718356319, + "1956": -52.3778877077, + "1957": -56.7519039259, + "1958": -59.1676051781, + "1959": -54.3284483726, + "1960": -47.4907858193, + "1961": -33.4575539312, + "1962": -17.3935127026, + "1963": 5.7784115131, + "1964": 31.0054339852, + "1965": 63.2246015297, + "1966": 97.5150457129, + "1967": 138.6543022515, + "1968": 181.8728394283, + "1969": 231.7698271102, + "1970": 283.745893459, + "1971": 342.2036916696, + "1972": 402.7321614022, + "1973": 469.5200639188, + "1974": 538.3620588179, + "1975": 613.2164843018, + "1976": 690.1003164645, + "1977": 772.725848696, + "1978": 857.3480927616, + "1979": 947.418646513, + "1980": 1039.4453371444, + "1981": 1136.6054450893, + "1982": 1235.6733949817, + "1983": 1339.5396105624, + "1984": 1445.2578437773, + "1985": 1555.4202544927, + "1986": 1667.3715494618, + "1987": 1783.3953946052, + "1988": 1901.1379307129, + "1989": 2022.5653171739, + "1990": 2145.6344184215, + "1991": 2271.9861277807, + "1992": 2399.8960966505, + "1993": 2530.6734764356, + "1994": 2662.919510717, + "1995": 2797.6064423565, + "1996": 2933.6666273698, + "1997": 3071.731563077, + "1998": 3211.0689314318, + "1999": 3351.9669919815, + "2000": 3494.0316427422 + }, + "pressure_out": { + "0": 4400.0000020489, + "1": 4480.5268045074, + "2": 4564.6278696844, + "3": 4651.9969984662, + "4": 4742.726139727, + "5": 4836.0235821984, + "6": 4932.3379854693, + "7": 5030.5725667047, + "8": 5131.4939252043, + "9": 5233.7100545083, + "10": 5338.29965854, + "11": 5443.5799236145, + "12": 5550.9360607329, + "13": 5658.3998777294, + "14": 5767.6564601506, + "15": 5876.4588984665, + "16": 5986.7844495699, + "17": 6096.1153526121, + "18": 6206.7122798624, + "19": 6315.7956494413, + "20": 6425.899765196, + "21": 6533.9933740472, + "22": 6642.8736297705, + "23": 6749.2688291945, + "24": 6856.227231263, + "25": 6960.2489233835, + "26": 7064.6206010815, + "27": 7165.6273475472, + "28": 7266.780746079, + "29": 7364.1649871895, + "30": 7461.5021606037, + "31": 7554.6905208374, + "32": 7647.6475016813, + "33": 7736.1011594699, + "34": 7824.1483837859, + "35": 7907.3634851176, + "36": 7990.0062530718, + "37": 8067.5143501388, + "38": 8144.2933041482, + "39": 8215.6618017879, + "40": 8286.1534054962, + "41": 8350.9859996204, + "42": 8414.8030024752, + "43": 8472.7400960525, + "44": 8529.5319695628, + "45": 8580.2510530149, + "46": 8629.7043860339, + "47": 8672.9203701428, + "48": 8714.7592117189, + "49": 8750.2247023195, + "50": 8784.2108418116, + "51": 8811.7163466688, + "52": 8837.6495219177, + "53": 8857.0235812671, + "54": 8874.7416066744, + "55": 8885.850839938, + "56": 8895.2296473126, + "57": 8897.9787094983, + "58": 8898.9322955107, + "59": 8893.2637377589, + "60": 8885.7440127798, + "61": 8871.6380424429, + "62": 8855.6345764514, + "63": 8833.1087129808, + "64": 8808.6483750985, + "65": 8777.7569988681, + "66": 8744.9034879213, + "67": 8705.737279943, + "68": 8664.5905442657, + "69": 8617.2758155467, + "70": 8567.9713610215, + "71": 8512.6692710775, + "72": 8455.3773571669, + "73": 8392.283021942, + "74": 8327.2077461861, + "75": 8256.5492363354, + "76": 8183.927508491, + "77": 8105.9647396603, + "78": 8026.0651473229, + "79": 7941.0886647038, + "80": 7854.210232892, + "81": 7762.5398929523, + "82": 7669.0107407439, + "83": 7570.9942936151, + "84": 7471.1701915018, + "85": 7367.1817680645, + "86": 7261.4446002388, + "87": 7151.8831084697, + "88": 7040.6392447749, + "89": 6925.9266804113, + "90": 6809.6052631689, + "91": 6690.1849402049, + "92": 6569.2360915842, + "93": 6445.5707985415, + "94": 6320.4637545552, + "95": 6193.0338428602, + "96": 6064.2550204531, + "97": 5933.5564316119, + "98": 5801.6074356597, + "99": 5668.1496742456, + "100": 5533.5452515939, + "101": 5397.8493113471, + "102": 5261.115259302, + "103": 5123.7115098951, + "104": 4985.3825468172, + "105": 4846.8085890546, + "106": 4707.4261949167, + "107": 4568.2246923145, + "108": 4428.3349272535, + "109": 4289.0514220899, + "110": 4149.2027311155, + "111": 4010.3834531468, + "112": 3871.1244652696, + "113": 3733.3141413767, + "114": 3595.1914714753, + "115": 3458.9311445379, + "116": 3322.4872063111, + "117": 3188.3120716043, + "118": 3054.0829099405, + "119": 2922.5201773081, + "120": 2791.0333283573, + "121": 2662.6001183419, + "122": 2534.3725054904, + "123": 2409.5737874908, + "124": 2285.1096613219, + "125": 2164.4362417056, + "126": 2044.225171875, + "127": 1928.1517397939, + "128": 1812.6666665659, + "129": 1701.6499050163, + "130": 1591.3452579845, + "131": 1485.8220274106, + "132": 1381.1319186812, + "133": 1281.5175201485, + "134": 1182.854018982, + "135": 1089.5405436487, + "136": 997.2920392474, + "137": 910.6468105317, + "138": 825.176469326, + "139": 745.5405838125, + "140": 667.1849072336, + "141": 594.8718799839, + "142": 523.9393683253, + "143": 459.2338878526, + "144": 396.0038154125, + "145": 339.1606131564, + "146": 283.8819194217, + "147": 235.1247581157, + "148": 188.0150592954, + "149": 147.5358441555, + "150": 108.7805689061, + "151": 76.7385850911, + "152": 46.4902377898, + "153": 23.0115170907, + "154": 1.3890715141, + "155": -13.4341092741, + "156": -26.3456835173, + "157": -32.4551706054, + "158": -36.6052470584, + "159": -33.9772426397, + "160": -29.3497410984, + "161": -17.9949004072, + "162": -4.6083533676, + "163": 15.4282545306, + "164": 37.520772309, + "165": 66.1598398144, + "166": 96.8709183254, + "167": 133.9992099687, + "168": 173.2074467143, + "169": 218.678243941, + "170": 266.2287210499, + "171": 319.8623993473, + "172": 375.5672931536, + "173": 437.1520292236, + "174": 500.7913498821, + "175": 570.0839560524, + "176": 641.4064142554, + "177": 718.1332968192, + "178": 796.8572941788, + "179": 880.7155318683, + "180": 966.5302710425, + "181": 1057.1888093658, + "182": 1149.7555195353, + "183": 1246.8564762525, + "184": 1345.8097491004, + "185": 1448.9698256759, + "186": 1553.9190565882, + "187": 1662.7310500394, + "188": 1773.2619788292, + "189": 1887.2963879968, + "190": 2002.9727330639, + "191": 2121.7794529564, + "192": 2242.1446324253, + "193": 2365.254729944, + "194": 2489.8336629812, + "195": 2616.7612270119, + "196": 2745.0622082074, + "197": 2875.3062667706, + "198": 3006.8229061814, + "199": 3139.8694030704, + "200": 3274.0826242635, + "201": 3409.4064473647, + "202": 3545.7865355709, + "203": 3682.8535888576, + "204": 3820.8622811479, + "205": 3959.1315921648, + "206": 4098.2242013978, + "207": 4237.1500559182, + "208": 4376.777620072, + "209": 4515.8117154978, + "210": 4655.4231639014, + "211": 4794.0167729052, + "212": 4933.0611008182, + "213": 5070.6672366863, + "214": 5208.5956796406, + "215": 5344.6712547691, + "216": 5480.9394540913, + "217": 5614.9474231138, + "218": 5749.0175740787, + "219": 5880.4290531663, + "220": 6011.7720273023, + "221": 6140.0683812703, + "222": 6268.1658144391, + "223": 6392.840703422, + "224": 6517.1870414303, + "225": 6637.7484190459, + "226": 6757.8529127158, + "227": 6873.8249678316, + "228": 6989.2136096529, + "229": 7100.1386440909, + "230": 7210.3560388128, + "231": 7315.7962735803, + "232": 7420.4074353582, + "233": 7519.9467382755, + "234": 7618.5388072799, + "235": 7711.7843351869, + "236": 7803.9682068988, + "237": 7890.5519559566, + "238": 7975.9638167187, + "239": 8055.5440746897, + "240": 8133.8468374518, + "241": 8206.1095322244, + "242": 8276.9941668178, + "243": 8341.6541058529, + "244": 8404.8408585419, + "245": 8461.6428543512, + "246": 8516.8823518482, + "247": 8565.6022290598, + "248": 8612.6764626474, + "249": 8653.1219426851, + "250": 8691.8451285604, + "251": 8723.8565884446, + "252": 8754.0759008899, + "253": 8777.527003165, + "254": 8799.1231776506, + "255": 8813.9213689528, + "256": 8826.8091727933, + "257": 8832.8960490905, + "258": 8837.024617794, + "259": 8834.3761548565, + "260": 8829.7291928418, + "261": 8818.355841034, + "262": 8804.9516859213, + "263": 8784.8983289395, + "264": 8762.7898791624, + "265": 8734.1356568825, + "266": 8703.4101629052, + "267": 8666.2681590375, + "268": 8627.0468790026, + "269": 8581.5636747884, + "270": 8534.0013959528, + "271": 8480.3564916622, + "272": 8424.6409195099, + "273": 8363.0460260247, + "274": 8299.3970434688, + "275": 8230.0952467458, + "276": 8158.7640463404, + "277": 8082.0288480527, + "278": 8003.296940642, + "279": 7919.4311787844, + "280": 7833.6092824997, + "281": 7742.9439362175, + "282": 7650.3707502075, + "283": 7553.2636335662, + "284": 7454.304501299, + "285": 7351.1388511493, + "286": 7246.1843185631, + "287": 7137.3672820741, + "288": 7026.8315562653, + "289": 6912.7925840958, + "290": 6797.1118986275, + "291": 6678.3010500754, + "292": 6557.9319433587, + "293": 6434.8181101785, + "294": 6310.2356237198, + "295": 6183.304679617, + "296": 6055.0004832425, + "297": 5924.7533663491, + "298": 5793.2338178052, + "299": 5660.1845537018, + "300": 5525.9687002896, + "301": 5390.6423733791, + "302": 5254.2599035091, + "303": 5117.1905847454, + "304": 4979.1797374967, + "305": 4840.9083766486, + "306": 4701.813817583, + "307": 4562.8861083504, + "308": 4423.2567799644, + "309": 4284.2210063724, + "310": 4144.6079616699, + "311": 4006.012834241, + "312": 3866.9670619775, + "313": 3729.3595522198, + "314": 3591.4298023995, + "315": 3455.352984159, + "316": 3319.0836023686, + "317": 3185.0745085633, + "318": 3051.0032876867, + "319": 2919.5907908819, + "320": 2788.2468486768, + "321": 2659.9495738659, + "322": 2531.8512647765, + "323": 2407.1755426037, + "324": 2282.8284120517, + "325": 2162.2662805558, + "326": 2042.1610697827, + "327": 1926.1883325469, + "328": 1810.7990418818, + "329": 1699.8733902533, + "330": 1589.6554084497, + "331": 1484.2146152407, + "332": 1379.6029222642, + "333": 1280.0631140622, + "334": 1181.4705644228, + "335": 1088.2245793282, + "336": 996.0402727319, + "337": 909.456110005, + "338": 824.0438557543, + "339": 744.4632234905, + "340": 666.1601046951, + "341": 593.8970712579, + "342": 523.0121145212, + "343": 458.3518690582, + "344": 395.16482489, + "345": 338.3625518211, + "346": 283.1227905902, + "347": 234.4026625107, + "348": 187.3281902934, + "349": 146.8824832673, + "350": 108.159081477, + "351": 76.147416211, + "352": 45.9279084032, + "353": 22.4766202961, + "354": 0.8802690441, + "355": -13.9180904011, + "356": -26.806054182, + "357": -32.893082617, + "358": -37.0217960365, + "359": -34.3734707552, + "360": -29.7266396813, + "361": -18.3534124265, + "362": -4.9493757906, + "363": 15.1038684941, + "364": 37.2122110719, + "365": 65.8663313822, + "366": 96.5917283643, + "367": 133.7336399686, + "368": 172.954832241, + "369": 218.4379529741, + "370": 266.0001524013, + "371": 319.6449811572, + "372": 375.3604814596, + "373": 436.9553066002, + "374": 500.6042241455, + "375": 569.9059590294, + "376": 641.2371006124, + "377": 717.9722429474, + "378": 796.7040971349, + "379": 880.5698083658, + "380": 966.3916564934, + "381": 1057.0569569679, + "382": 1149.630099405, + "383": 1246.7371745989, + "384": 1345.6962674407, + "385": 1448.8618800883, + "386": 1553.8163770019, + "387": 1662.6333795585, + "388": 1773.1690730904, + "389": 1887.2080145575, + "390": 2002.8886708212, + "391": 2121.6994915934, + "392": 2242.0685718854, + "393": 2365.18237993, + "394": 2489.7648424794, + "395": 2616.6957638391, + "396": 2744.9999385801, + "397": 2875.2470348954, + "398": 3006.7665638651, + "399": 3139.8158093491, + "400": 3274.0316450503, + "401": 3409.3579551138, + "402": 3545.7404089586, + "403": 3682.8097124789, + "404": 3820.8205452279, + "405": 3959.0918922836, + "406": 4098.1864382296, + "407": 4237.1141349828, + "408": 4376.743451498, + "409": 4515.7792137984, + "410": 4655.3922477601, + "411": 4793.9873649722, + "412": 4933.0331275174, + "413": 5070.6406280307, + "414": 5208.5703690577, + "415": 5344.6471789338, + "416": 5480.916552768, + "417": 5614.9256390051, + "418": 5748.9968526828, + "419": 5880.4093426398, + "420": 6011.7532783312, + "421": 6140.0505469462, + "422": 6268.1488501419, + "423": 6392.8245667085, + "424": 6517.1716919279, + "425": 6637.7338183512, + "426": 6757.8390242992, + "427": 6873.8117569454, + "428": 6989.2010432447, + "429": 7100.1266907204, + "430": 7210.3446685738, + "431": 7315.7854580252, + "432": 7420.3971474276, + "433": 7519.9369522297, + "434": 7618.5294986351, + "435": 7711.7754806536, + "436": 7803.9597843238, + "437": 7890.5439442672, + "438": 7975.9561958703, + "439": 8055.5368256157, + "440": 8133.8399420155, + "441": 8206.102973174, + "442": 8276.9879277432, + "443": 8341.6481711443, + "444": 8404.8352133513, + "445": 8461.6374845547, + "446": 8516.877244011, + "447": 8565.5973704025, + "448": 8612.6718410142, + "449": 8653.1175465129, + "450": 8691.8409468505, + "451": 8723.8526107346, + "452": 8754.0721172278, + "453": 8777.5234040845, + "454": 8799.1197541472, + "455": 8813.918112461, + "456": 8826.8060751657, + "457": 8832.8931025771, + "458": 8837.0218150229, + "459": 8834.3734888154, + "460": 8829.7266568604, + "461": 8818.3534287675, + "462": 8804.9493913344, + "463": 8784.8961462915, + "464": 8762.7878029923, + "465": 8734.133681996, + "466": 8703.4082843612, + "467": 8666.2663721362, + "468": 8627.0451792732, + "469": 8581.5620579784, + "470": 8533.9998580169, + "471": 8480.3550287528, + "472": 8424.6395279669, + "473": 8363.0447023665, + "474": 8299.3957843837, + "475": 8230.0940490837, + "476": 8158.7629071049, + "477": 8082.0277643934, + "478": 8003.2959098479, + "479": 7919.4301982763, + "480": 7833.6083498247, + "481": 7742.9430490419, + "482": 7650.3699063117, + "483": 7553.2628308389, + "484": 7454.3037377318, + "485": 7351.1381248319, + "486": 7246.1836276783, + "487": 7137.3666248933, + "488": 7026.8309311443, + "489": 6912.7919894706, + "490": 6797.1113330104, + "491": 6678.3005120512, + "492": 6557.9314315815, + "493": 6434.8176233677, + "494": 6310.2351606575, + "495": 6183.3042391447, + "496": 6055.0000642581, + "497": 5924.7529678044, + "498": 5793.233438703, + "499": 5660.1841930937, + "500": 5525.9683572734, + "501": 5390.6420470965, + "502": 5254.2595931438, + "503": 5117.190289521, + "504": 4979.1794566744, + "505": 4840.9081095259, + "506": 4701.8135634916, + "507": 4562.8858666545, + "508": 4423.2565500594, + "509": 4284.220787683, + "510": 4144.6077536491, + "511": 4006.0126363682, + "512": 3866.9668737577, + "513": 3729.3593731821, + "514": 3591.429632096, + "515": 3455.3528221636, + "516": 3319.0834482759, + "517": 3185.0743619878, + "518": 3051.0031482617, + "519": 2919.5906582586, + "520": 2788.2467225234, + "521": 2659.9494538667, + "522": 2531.8511506313, + "523": 2407.175434027, + "524": 2282.8283087717, + "525": 2162.2661823143, + "526": 2042.1609763338, + "527": 1926.1882436567, + "528": 1810.7989573281, + "529": 1699.8733098244, + "530": 1589.6553319445, + "531": 1484.2145424677, + "532": 1379.6028530414, + "533": 1280.0630482163, + "534": 1181.4705017892, + "535": 1088.22451975, + "536": 996.0402160601, + "537": 909.456056098, + "538": 824.0438044771, + "539": 744.4631747147, + "540": 666.1600582988, + "541": 593.897027125, + "542": 523.0120725412, + "543": 458.3518291262, + "544": 395.1647869061, + "545": 338.3625156901, + "546": 283.1227562218, + "547": 234.4026298189, + "548": 187.3281591965, + "549": 146.8824536875, + "550": 108.1590533401, + "551": 76.1473894467, + "552": 45.9278829447, + "553": 22.4765960795, + "554": 0.8802460089, + "555": -13.9181123126, + "556": -26.8060750245, + "557": -32.8931024428, + "558": -37.0218148951, + "559": -34.3734886938, + "560": -29.7266567448, + "561": -18.3534286575, + "562": -4.9493912298, + "563": 15.103853808, + "564": 37.2121971023, + "565": 65.8663180941, + "566": 96.5917157244, + "567": 133.7336279453, + "568": 172.9548208043, + "569": 218.4379420953, + "570": 266.0001420532, + "571": 319.6449713139, + "572": 375.3604720966, + "573": 436.9552976939, + "574": 500.6042156737, + "575": 569.9059509709, + "576": 641.237092947, + "577": 717.9722356559, + "578": 796.7040901991, + "579": 880.5698017684, + "580": 966.3916502179, + "581": 1057.0569509985, + "582": 1149.6300937268, + "583": 1246.7371691977, + "584": 1345.696262303, + "585": 1448.8618752012, + "586": 1553.8163723532, + "587": 1662.6333751366, + "588": 1773.1690688842, + "589": 1887.2080105565, + "590": 2002.8886670154, + "591": 2121.6994879733, + "592": 2242.0685684419, + "593": 2365.1823766545, + "594": 2489.7648393636, + "595": 2616.6957608754, + "596": 2744.999935761, + "597": 2875.2470322138, + "598": 3006.7665613143, + "599": 3139.8158069227, + "600": 3274.0316427423, + "601": 3409.3579529183, + "602": 3545.7404068703, + "603": 3682.8097104925, + "604": 3820.8205433384, + "605": 3959.0918904863, + "606": 4098.18643652, + "607": 4237.1141333565, + "608": 4376.7434499511, + "609": 4515.7792123269, + "610": 4655.3922463604, + "611": 4793.9873636408, + "612": 4933.0331262509, + "613": 5070.6406268261, + "614": 5208.5703679118, + "615": 5344.6471778438, + "616": 5480.9165517312, + "617": 5614.9256380189, + "618": 5748.9968517447, + "619": 5880.4093417474, + "620": 6011.7532774824, + "621": 6140.0505461387, + "622": 6268.1488493739, + "623": 6392.8245659779, + "624": 6517.171691233, + "625": 6637.7338176902, + "626": 6757.8390236705, + "627": 6873.8117563473, + "628": 6989.2010426757, + "629": 7100.1266901792, + "630": 7210.344668059, + "631": 7315.7854575356, + "632": 7420.3971469618, + "633": 7519.9369517867, + "634": 7618.5294982137, + "635": 7711.7754802527, + "636": 7803.9597839424, + "637": 7890.5439439045, + "638": 7975.9561955253, + "639": 8055.5368252875, + "640": 8133.8399417033, + "641": 8206.102972877, + "642": 8276.9879274607, + "643": 8341.6481708756, + "644": 8404.8352130957, + "645": 8461.6374843115, + "646": 8516.8772437798, + "647": 8565.5973701826, + "648": 8612.6718408049, + "649": 8653.1175463139, + "650": 8691.8409466611, + "651": 8723.8526105545, + "652": 8754.0721170565, + "653": 8777.5234039216, + "654": 8799.1197539922, + "655": 8813.9181123136, + "656": 8826.8060750255, + "657": 8832.8931024437, + "658": 8837.021814896, + "659": 8834.3734886947, + "660": 8829.7266567455, + "661": 8818.3534286583, + "662": 8804.9493912305, + "663": 8784.8961461927, + "664": 8762.7878028983, + "665": 8734.1336819065, + "666": 8703.4082842762, + "667": 8666.2663720553, + "668": 8627.0451791962, + "669": 8581.5620579052, + "670": 8533.9998579473, + "671": 8480.3550286865, + "672": 8424.6395279039, + "673": 8363.0447023065, + "674": 8299.3957843267, + "675": 8230.0940490295, + "676": 8158.7629070533, + "677": 8082.0277643444, + "678": 8003.2959098012, + "679": 7919.4301982319, + "680": 7833.6083497824, + "681": 7742.9430490017, + "682": 7650.3699062735, + "683": 7553.2628308026, + "684": 7454.3037376973, + "685": 7351.138124799, + "686": 7246.183627647, + "687": 7137.3666248636, + "688": 7026.830931116, + "689": 6912.7919894437, + "690": 6797.1113329848, + "691": 6678.3005120269, + "692": 6557.9314315583, + "693": 6434.8176233456, + "694": 6310.2351606365, + "695": 6183.3042391248, + "696": 6055.0000642392, + "697": 5924.7529677863, + "698": 5793.2334386858, + "699": 5660.1841930774, + "700": 5525.9683572579, + "701": 5390.6420470818, + "702": 5254.2595931298, + "703": 5117.1902895076, + "704": 4979.1794566617, + "705": 4840.9081095138, + "706": 4701.8135634801, + "707": 4562.8858666436, + "708": 4423.256550049, + "709": 4284.2207876731, + "710": 4144.6077536397, + "711": 4006.0126363592, + "712": 3866.9668737492, + "713": 3729.359373174, + "714": 3591.4296320883, + "715": 3455.3528221562, + "716": 3319.0834482689, + "717": 3185.0743619812, + "718": 3051.0031482554, + "719": 2919.5906582526, + "720": 2788.2467225177, + "721": 2659.9494538613, + "722": 2531.8511506261, + "723": 2407.1754340221, + "724": 2282.8283087671, + "725": 2162.2661823099, + "726": 2042.1609763296, + "727": 1926.1882436527, + "728": 1810.7989573243, + "729": 1699.8733098208, + "730": 1589.655331941, + "731": 1484.2145424644, + "732": 1379.6028530382, + "733": 1280.0630482133, + "734": 1181.4705017863, + "735": 1088.2245197473, + "736": 996.0402160576, + "737": 909.4560560955, + "738": 824.0438044748, + "739": 744.4631747125, + "740": 666.1600582967, + "741": 593.897027123, + "742": 523.0120725393, + "743": 458.3518291244, + "744": 395.1647869043, + "745": 338.3625156885, + "746": 283.1227562203, + "747": 234.4026298175, + "748": 187.3281591951, + "749": 146.8824536861, + "750": 108.1590533389, + "751": 76.1473894455, + "752": 45.9278829435, + "753": 22.4765960784, + "754": 0.8802460078, + "755": -13.9181123136, + "756": -26.8060750255, + "757": -32.8931024437, + "758": -37.021814896, + "759": -34.3734886946, + "760": -29.7266567455, + "761": -18.3534286583, + "762": -4.9493912305, + "763": 15.1038538073, + "764": 37.2121971017, + "765": 65.8663180935, + "766": 96.5917157238, + "767": 133.7336279447, + "768": 172.9548208038, + "769": 218.4379420948, + "770": 266.0001420527, + "771": 319.6449713135, + "772": 375.3604720961, + "773": 436.9552976935, + "774": 500.6042156733, + "775": 569.9059509705, + "776": 641.2370929467, + "777": 717.9722356556, + "778": 796.7040901988, + "779": 880.5698017681, + "780": 966.3916502176, + "781": 1057.0569509983, + "782": 1149.6300937265, + "783": 1246.7371691974, + "784": 1345.6962623027, + "785": 1448.861875201, + "786": 1553.816372353, + "787": 1662.6333751364, + "788": 1773.169068884, + "789": 1887.2080105563, + "790": 2002.8886670152, + "791": 2121.6994879731, + "792": 2242.0685684417, + "793": 2365.1823766544, + "794": 2489.7648393635, + "795": 2616.6957608752, + "796": 2744.9999357608, + "797": 2875.2470322137, + "798": 3006.7665613142, + "799": 3139.8158069226, + "800": 3274.0316427421, + "801": 3409.3579529182, + "802": 3545.7404068702, + "803": 3682.8097104924, + "804": 3820.8205433383, + "805": 3959.0918904862, + "806": 4098.1864365199, + "807": 4237.1141333564, + "808": 4376.743449951, + "809": 4515.7792123269, + "810": 4655.3922463603, + "811": 4793.9873636407, + "812": 4933.0331262508, + "813": 5070.640626826, + "814": 5208.5703679117, + "815": 5344.6471778438, + "816": 5480.9165517311, + "817": 5614.9256380188, + "818": 5748.9968517446, + "819": 5880.4093417473, + "820": 6011.7532774823, + "821": 6140.0505461387, + "822": 6268.1488493738, + "823": 6392.8245659779, + "824": 6517.1716912329, + "825": 6637.7338176901, + "826": 6757.8390236704, + "827": 6873.8117563473, + "828": 6989.2010426757, + "829": 7100.1266901792, + "830": 7210.344668059, + "831": 7315.7854575356, + "832": 7420.3971469618, + "833": 7519.9369517867, + "834": 7618.5294982137, + "835": 7711.7754802527, + "836": 7803.9597839424, + "837": 7890.5439439045, + "838": 7975.9561955252, + "839": 8055.5368252875, + "840": 8133.8399417033, + "841": 8206.102972877, + "842": 8276.9879274607, + "843": 8341.6481708756, + "844": 8404.8352130957, + "845": 8461.6374843115, + "846": 8516.8772437797, + "847": 8565.5973701826, + "848": 8612.6718408049, + "849": 8653.1175463139, + "850": 8691.8409466611, + "851": 8723.8526105545, + "852": 8754.0721170565, + "853": 8777.5234039216, + "854": 8799.1197539922, + "855": 8813.9181123136, + "856": 8826.8060750255, + "857": 8832.8931024437, + "858": 8837.021814896, + "859": 8834.3734886946, + "860": 8829.7266567455, + "861": 8818.3534286583, + "862": 8804.9493912305, + "863": 8784.8961461927, + "864": 8762.7878028983, + "865": 8734.1336819065, + "866": 8703.4082842762, + "867": 8666.2663720553, + "868": 8627.0451791962, + "869": 8581.5620579052, + "870": 8533.9998579473, + "871": 8480.3550286865, + "872": 8424.6395279039, + "873": 8363.0447023065, + "874": 8299.3957843267, + "875": 8230.0940490295, + "876": 8158.7629070533, + "877": 8082.0277643444, + "878": 8003.2959098012, + "879": 7919.4301982319, + "880": 7833.6083497824, + "881": 7742.9430490018, + "882": 7650.3699062735, + "883": 7553.2628308026, + "884": 7454.3037376973, + "885": 7351.138124799, + "886": 7246.183627647, + "887": 7137.3666248636, + "888": 7026.830931116, + "889": 6912.7919894437, + "890": 6797.1113329848, + "891": 6678.3005120269, + "892": 6557.9314315583, + "893": 6434.8176233456, + "894": 6310.2351606365, + "895": 6183.3042391248, + "896": 6055.0000642392, + "897": 5924.7529677863, + "898": 5793.2334386858, + "899": 5660.1841930774, + "900": 5525.9683572579, + "901": 5390.6420470818, + "902": 5254.2595931298, + "903": 5117.1902895076, + "904": 4979.1794566617, + "905": 4840.9081095138, + "906": 4701.8135634801, + "907": 4562.8858666436, + "908": 4423.256550049, + "909": 4284.2207876731, + "910": 4144.6077536397, + "911": 4006.0126363593, + "912": 3866.9668737492, + "913": 3729.359373174, + "914": 3591.4296320883, + "915": 3455.3528221562, + "916": 3319.0834482689, + "917": 3185.0743619812, + "918": 3051.0031482554, + "919": 2919.5906582527, + "920": 2788.2467225177, + "921": 2659.9494538613, + "922": 2531.8511506262, + "923": 2407.1754340221, + "924": 2282.8283087671, + "925": 2162.2661823099, + "926": 2042.1609763296, + "927": 1926.1882436527, + "928": 1810.7989573243, + "929": 1699.8733098208, + "930": 1589.655331941, + "931": 1484.2145424644, + "932": 1379.6028530383, + "933": 1280.0630482133, + "934": 1181.4705017863, + "935": 1088.2245197473, + "936": 996.0402160576, + "937": 909.4560560956, + "938": 824.0438044748, + "939": 744.4631747125, + "940": 666.1600582967, + "941": 593.897027123, + "942": 523.0120725393, + "943": 458.3518291244, + "944": 395.1647869043, + "945": 338.3625156885, + "946": 283.1227562203, + "947": 234.4026298175, + "948": 187.3281591951, + "949": 146.8824536861, + "950": 108.1590533389, + "951": 76.1473894455, + "952": 45.9278829435, + "953": 22.4765960784, + "954": 0.8802460078, + "955": -13.9181123136, + "956": -26.8060750255, + "957": -32.8931024437, + "958": -37.021814896, + "959": -34.3734886946, + "960": -29.7266567455, + "961": -18.3534286583, + "962": -4.9493912305, + "963": 15.1038538073, + "964": 37.2121971017, + "965": 65.8663180935, + "966": 96.5917157238, + "967": 133.7336279447, + "968": 172.9548208038, + "969": 218.4379420948, + "970": 266.0001420527, + "971": 319.6449713135, + "972": 375.3604720961, + "973": 436.9552976935, + "974": 500.6042156733, + "975": 569.9059509705, + "976": 641.2370929467, + "977": 717.9722356556, + "978": 796.7040901988, + "979": 880.5698017681, + "980": 966.3916502176, + "981": 1057.0569509982, + "982": 1149.6300937265, + "983": 1246.7371691974, + "984": 1345.6962623027, + "985": 1448.861875201, + "986": 1553.816372353, + "987": 1662.6333751364, + "988": 1773.169068884, + "989": 1887.2080105563, + "990": 2002.8886670152, + "991": 2121.6994879731, + "992": 2242.0685684417, + "993": 2365.1823766544, + "994": 2489.7648393635, + "995": 2616.6957608752, + "996": 2744.9999357609, + "997": 2875.2470322137, + "998": 3006.7665613142, + "999": 3139.8158069226, + "1000": 3274.0316427421, + "1001": 3409.3579529182, + "1002": 3545.7404068702, + "1003": 3682.8097104924, + "1004": 3820.8205433383, + "1005": 3959.0918904862, + "1006": 4098.1864365199, + "1007": 4237.1141333564, + "1008": 4376.743449951, + "1009": 4515.7792123269, + "1010": 4655.3922463603, + "1011": 4793.9873636407, + "1012": 4933.0331262508, + "1013": 5070.640626826, + "1014": 5208.5703679117, + "1015": 5344.6471778438, + "1016": 5480.9165517311, + "1017": 5614.9256380188, + "1018": 5748.9968517446, + "1019": 5880.4093417473, + "1020": 6011.7532774823, + "1021": 6140.0505461387, + "1022": 6268.1488493738, + "1023": 6392.8245659779, + "1024": 6517.1716912329, + "1025": 6637.7338176901, + "1026": 6757.8390236704, + "1027": 6873.8117563473, + "1028": 6989.2010426757, + "1029": 7100.1266901792, + "1030": 7210.344668059, + "1031": 7315.7854575356, + "1032": 7420.3971469617, + "1033": 7519.9369517867, + "1034": 7618.5294982137, + "1035": 7711.7754802527, + "1036": 7803.9597839424, + "1037": 7890.5439439044, + "1038": 7975.9561955252, + "1039": 8055.5368252875, + "1040": 8133.8399417033, + "1041": 8206.102972877, + "1042": 8276.9879274607, + "1043": 8341.6481708756, + "1044": 8404.8352130957, + "1045": 8461.6374843115, + "1046": 8516.8772437797, + "1047": 8565.5973701825, + "1048": 8612.6718408049, + "1049": 8653.1175463139, + "1050": 8691.8409466611, + "1051": 8723.8526105545, + "1052": 8754.0721170565, + "1053": 8777.5234039216, + "1054": 8799.1197539922, + "1055": 8813.9181123136, + "1056": 8826.8060750255, + "1057": 8832.8931024437, + "1058": 8837.021814896, + "1059": 8834.3734886946, + "1060": 8829.7266567455, + "1061": 8818.3534286583, + "1062": 8804.9493912305, + "1063": 8784.8961461927, + "1064": 8762.7878028983, + "1065": 8734.1336819065, + "1066": 8703.4082842762, + "1067": 8666.2663720553, + "1068": 8627.0451791962, + "1069": 8581.5620579052, + "1070": 8533.9998579473, + "1071": 8480.3550286865, + "1072": 8424.6395279039, + "1073": 8363.0447023065, + "1074": 8299.3957843267, + "1075": 8230.0940490295, + "1076": 8158.7629070533, + "1077": 8082.0277643444, + "1078": 8003.2959098012, + "1079": 7919.4301982319, + "1080": 7833.6083497824, + "1081": 7742.9430490018, + "1082": 7650.3699062735, + "1083": 7553.2628308026, + "1084": 7454.3037376973, + "1085": 7351.138124799, + "1086": 7246.183627647, + "1087": 7137.3666248636, + "1088": 7026.830931116, + "1089": 6912.7919894437, + "1090": 6797.1113329848, + "1091": 6678.3005120269, + "1092": 6557.9314315583, + "1093": 6434.8176233456, + "1094": 6310.2351606365, + "1095": 6183.3042391248, + "1096": 6055.0000642392, + "1097": 5924.7529677863, + "1098": 5793.2334386858, + "1099": 5660.1841930774, + "1100": 5525.9683572579, + "1101": 5390.6420470818, + "1102": 5254.2595931298, + "1103": 5117.1902895076, + "1104": 4979.1794566617, + "1105": 4840.9081095138, + "1106": 4701.8135634801, + "1107": 4562.8858666436, + "1108": 4423.256550049, + "1109": 4284.2207876731, + "1110": 4144.6077536397, + "1111": 4006.0126363593, + "1112": 3866.9668737492, + "1113": 3729.359373174, + "1114": 3591.4296320883, + "1115": 3455.3528221562, + "1116": 3319.0834482689, + "1117": 3185.0743619812, + "1118": 3051.0031482554, + "1119": 2919.5906582527, + "1120": 2788.2467225177, + "1121": 2659.9494538613, + "1122": 2531.8511506262, + "1123": 2407.1754340221, + "1124": 2282.8283087671, + "1125": 2162.2661823099, + "1126": 2042.1609763296, + "1127": 1926.1882436527, + "1128": 1810.7989573243, + "1129": 1699.8733098208, + "1130": 1589.655331941, + "1131": 1484.2145424644, + "1132": 1379.6028530383, + "1133": 1280.0630482133, + "1134": 1181.4705017863, + "1135": 1088.2245197473, + "1136": 996.0402160576, + "1137": 909.4560560956, + "1138": 824.0438044748, + "1139": 744.4631747125, + "1140": 666.1600582967, + "1141": 593.897027123, + "1142": 523.0120725393, + "1143": 458.3518291244, + "1144": 395.1647869043, + "1145": 338.3625156885, + "1146": 283.1227562203, + "1147": 234.4026298175, + "1148": 187.3281591951, + "1149": 146.8824536861, + "1150": 108.1590533389, + "1151": 76.1473894455, + "1152": 45.9278829435, + "1153": 22.4765960784, + "1154": 0.8802460078, + "1155": -13.9181123136, + "1156": -26.8060750255, + "1157": -32.8931024437, + "1158": -37.021814896, + "1159": -34.3734886946, + "1160": -29.7266567455, + "1161": -18.3534286583, + "1162": -4.9493912305, + "1163": 15.1038538073, + "1164": 37.2121971017, + "1165": 65.8663180935, + "1166": 96.5917157238, + "1167": 133.7336279447, + "1168": 172.9548208038, + "1169": 218.4379420948, + "1170": 266.0001420527, + "1171": 319.6449713135, + "1172": 375.3604720961, + "1173": 436.9552976935, + "1174": 500.6042156733, + "1175": 569.9059509705, + "1176": 641.2370929467, + "1177": 717.9722356556, + "1178": 796.7040901988, + "1179": 880.5698017681, + "1180": 966.3916502176, + "1181": 1057.0569509982, + "1182": 1149.6300937265, + "1183": 1246.7371691974, + "1184": 1345.6962623027, + "1185": 1448.861875201, + "1186": 1553.816372353, + "1187": 1662.6333751364, + "1188": 1773.169068884, + "1189": 1887.2080105563, + "1190": 2002.8886670152, + "1191": 2121.6994879731, + "1192": 2242.0685684417, + "1193": 2365.1823766544, + "1194": 2489.7648393635, + "1195": 2616.6957608752, + "1196": 2744.9999357609, + "1197": 2875.2470322137, + "1198": 3006.7665613142, + "1199": 3139.8158069226, + "1200": 3274.0316427421, + "1201": 3409.3579529182, + "1202": 3545.7404068702, + "1203": 3682.8097104924, + "1204": 3820.8205433383, + "1205": 3959.0918904862, + "1206": 4098.1864365199, + "1207": 4237.1141333564, + "1208": 4376.743449951, + "1209": 4515.7792123269, + "1210": 4655.3922463603, + "1211": 4793.9873636407, + "1212": 4933.0331262508, + "1213": 5070.640626826, + "1214": 5208.5703679117, + "1215": 5344.6471778438, + "1216": 5480.9165517311, + "1217": 5614.9256380188, + "1218": 5748.9968517446, + "1219": 5880.4093417473, + "1220": 6011.7532774823, + "1221": 6140.0505461387, + "1222": 6268.1488493738, + "1223": 6392.8245659779, + "1224": 6517.1716912329, + "1225": 6637.7338176901, + "1226": 6757.8390236704, + "1227": 6873.8117563473, + "1228": 6989.2010426757, + "1229": 7100.1266901792, + "1230": 7210.344668059, + "1231": 7315.7854575356, + "1232": 7420.3971469617, + "1233": 7519.9369517867, + "1234": 7618.5294982137, + "1235": 7711.7754802527, + "1236": 7803.9597839424, + "1237": 7890.5439439044, + "1238": 7975.9561955252, + "1239": 8055.5368252875, + "1240": 8133.8399417033, + "1241": 8206.102972877, + "1242": 8276.9879274607, + "1243": 8341.6481708756, + "1244": 8404.8352130957, + "1245": 8461.6374843115, + "1246": 8516.8772437797, + "1247": 8565.5973701825, + "1248": 8612.6718408049, + "1249": 8653.1175463139, + "1250": 8691.8409466611, + "1251": 8723.8526105545, + "1252": 8754.0721170565, + "1253": 8777.5234039216, + "1254": 8799.1197539922, + "1255": 8813.9181123136, + "1256": 8826.8060750255, + "1257": 8832.8931024437, + "1258": 8837.021814896, + "1259": 8834.3734886946, + "1260": 8829.7266567455, + "1261": 8818.3534286583, + "1262": 8804.9493912305, + "1263": 8784.8961461927, + "1264": 8762.7878028983, + "1265": 8734.1336819065, + "1266": 8703.4082842762, + "1267": 8666.2663720553, + "1268": 8627.0451791962, + "1269": 8581.5620579052, + "1270": 8533.9998579473, + "1271": 8480.3550286865, + "1272": 8424.6395279039, + "1273": 8363.0447023065, + "1274": 8299.3957843267, + "1275": 8230.0940490295, + "1276": 8158.7629070533, + "1277": 8082.0277643444, + "1278": 8003.2959098012, + "1279": 7919.4301982319, + "1280": 7833.6083497824, + "1281": 7742.9430490017, + "1282": 7650.3699062735, + "1283": 7553.2628308026, + "1284": 7454.3037376973, + "1285": 7351.138124799, + "1286": 7246.183627647, + "1287": 7137.3666248636, + "1288": 7026.830931116, + "1289": 6912.7919894437, + "1290": 6797.1113329848, + "1291": 6678.3005120269, + "1292": 6557.9314315583, + "1293": 6434.8176233456, + "1294": 6310.2351606365, + "1295": 6183.3042391248, + "1296": 6055.0000642391, + "1297": 5924.7529677863, + "1298": 5793.2334386858, + "1299": 5660.1841930774, + "1300": 5525.9683572579, + "1301": 5390.6420470818, + "1302": 5254.2595931298, + "1303": 5117.1902895076, + "1304": 4979.1794566617, + "1305": 4840.9081095138, + "1306": 4701.8135634801, + "1307": 4562.8858666436, + "1308": 4423.256550049, + "1309": 4284.2207876731, + "1310": 4144.6077536397, + "1311": 4006.0126363593, + "1312": 3866.9668737492, + "1313": 3729.359373174, + "1314": 3591.4296320883, + "1315": 3455.3528221562, + "1316": 3319.0834482689, + "1317": 3185.0743619812, + "1318": 3051.0031482554, + "1319": 2919.5906582527, + "1320": 2788.2467225177, + "1321": 2659.9494538613, + "1322": 2531.8511506262, + "1323": 2407.1754340221, + "1324": 2282.8283087671, + "1325": 2162.2661823099, + "1326": 2042.1609763296, + "1327": 1926.1882436527, + "1328": 1810.7989573243, + "1329": 1699.8733098208, + "1330": 1589.655331941, + "1331": 1484.2145424644, + "1332": 1379.6028530383, + "1333": 1280.0630482133, + "1334": 1181.4705017863, + "1335": 1088.2245197473, + "1336": 996.0402160576, + "1337": 909.4560560956, + "1338": 824.0438044748, + "1339": 744.4631747125, + "1340": 666.1600582967, + "1341": 593.897027123, + "1342": 523.0120725393, + "1343": 458.3518291244, + "1344": 395.1647869043, + "1345": 338.3625156885, + "1346": 283.1227562203, + "1347": 234.4026298175, + "1348": 187.3281591951, + "1349": 146.8824536861, + "1350": 108.1590533389, + "1351": 76.1473894455, + "1352": 45.9278829435, + "1353": 22.4765960784, + "1354": 0.8802460078, + "1355": -13.9181123136, + "1356": -26.8060750255, + "1357": -32.8931024437, + "1358": -37.021814896, + "1359": -34.3734886946, + "1360": -29.7266567455, + "1361": -18.3534286583, + "1362": -4.9493912305, + "1363": 15.1038538073, + "1364": 37.2121971017, + "1365": 65.8663180935, + "1366": 96.5917157238, + "1367": 133.7336279447, + "1368": 172.9548208038, + "1369": 218.4379420948, + "1370": 266.0001420527, + "1371": 319.6449713135, + "1372": 375.3604720961, + "1373": 436.9552976935, + "1374": 500.6042156733, + "1375": 569.9059509705, + "1376": 641.2370929467, + "1377": 717.9722356556, + "1378": 796.7040901988, + "1379": 880.5698017681, + "1380": 966.3916502176, + "1381": 1057.0569509983, + "1382": 1149.6300937265, + "1383": 1246.7371691974, + "1384": 1345.6962623027, + "1385": 1448.861875201, + "1386": 1553.816372353, + "1387": 1662.6333751364, + "1388": 1773.169068884, + "1389": 1887.2080105563, + "1390": 2002.8886670152, + "1391": 2121.6994879731, + "1392": 2242.0685684417, + "1393": 2365.1823766544, + "1394": 2489.7648393635, + "1395": 2616.6957608752, + "1396": 2744.9999357609, + "1397": 2875.2470322137, + "1398": 3006.7665613142, + "1399": 3139.8158069226, + "1400": 3274.0316427421, + "1401": 3409.3579529182, + "1402": 3545.7404068702, + "1403": 3682.8097104924, + "1404": 3820.8205433383, + "1405": 3959.0918904862, + "1406": 4098.1864365199, + "1407": 4237.1141333564, + "1408": 4376.743449951, + "1409": 4515.7792123269, + "1410": 4655.3922463603, + "1411": 4793.9873636407, + "1412": 4933.0331262508, + "1413": 5070.640626826, + "1414": 5208.5703679117, + "1415": 5344.6471778438, + "1416": 5480.9165517311, + "1417": 5614.9256380188, + "1418": 5748.9968517446, + "1419": 5880.4093417473, + "1420": 6011.7532774823, + "1421": 6140.0505461387, + "1422": 6268.1488493738, + "1423": 6392.8245659779, + "1424": 6517.1716912329, + "1425": 6637.7338176901, + "1426": 6757.8390236704, + "1427": 6873.8117563473, + "1428": 6989.2010426757, + "1429": 7100.1266901792, + "1430": 7210.344668059, + "1431": 7315.7854575356, + "1432": 7420.3971469617, + "1433": 7519.9369517867, + "1434": 7618.5294982137, + "1435": 7711.7754802527, + "1436": 7803.9597839424, + "1437": 7890.5439439044, + "1438": 7975.9561955252, + "1439": 8055.5368252875, + "1440": 8133.8399417033, + "1441": 8206.102972877, + "1442": 8276.9879274607, + "1443": 8341.6481708756, + "1444": 8404.8352130957, + "1445": 8461.6374843115, + "1446": 8516.8772437797, + "1447": 8565.5973701825, + "1448": 8612.6718408049, + "1449": 8653.1175463139, + "1450": 8691.8409466611, + "1451": 8723.8526105545, + "1452": 8754.0721170565, + "1453": 8777.5234039216, + "1454": 8799.1197539922, + "1455": 8813.9181123136, + "1456": 8826.8060750255, + "1457": 8832.8931024437, + "1458": 8837.021814896, + "1459": 8834.3734886946, + "1460": 8829.7266567455, + "1461": 8818.3534286583, + "1462": 8804.9493912305, + "1463": 8784.8961461927, + "1464": 8762.7878028983, + "1465": 8734.1336819065, + "1466": 8703.4082842762, + "1467": 8666.2663720553, + "1468": 8627.0451791962, + "1469": 8581.5620579052, + "1470": 8533.9998579473, + "1471": 8480.3550286865, + "1472": 8424.6395279039, + "1473": 8363.0447023065, + "1474": 8299.3957843267, + "1475": 8230.0940490295, + "1476": 8158.7629070533, + "1477": 8082.0277643444, + "1478": 8003.2959098012, + "1479": 7919.4301982319, + "1480": 7833.6083497824, + "1481": 7742.9430490017, + "1482": 7650.3699062735, + "1483": 7553.2628308026, + "1484": 7454.3037376973, + "1485": 7351.138124799, + "1486": 7246.183627647, + "1487": 7137.3666248636, + "1488": 7026.830931116, + "1489": 6912.7919894437, + "1490": 6797.1113329848, + "1491": 6678.3005120269, + "1492": 6557.9314315583, + "1493": 6434.8176233456, + "1494": 6310.2351606365, + "1495": 6183.3042391248, + "1496": 6055.0000642391, + "1497": 5924.7529677863, + "1498": 5793.2334386858, + "1499": 5660.1841930774, + "1500": 5525.9683572579, + "1501": 5390.6420470818, + "1502": 5254.2595931298, + "1503": 5117.1902895076, + "1504": 4979.1794566617, + "1505": 4840.9081095138, + "1506": 4701.8135634801, + "1507": 4562.8858666436, + "1508": 4423.256550049, + "1509": 4284.2207876731, + "1510": 4144.6077536397, + "1511": 4006.0126363593, + "1512": 3866.9668737492, + "1513": 3729.359373174, + "1514": 3591.4296320883, + "1515": 3455.3528221562, + "1516": 3319.0834482689, + "1517": 3185.0743619812, + "1518": 3051.0031482554, + "1519": 2919.5906582527, + "1520": 2788.2467225177, + "1521": 2659.9494538613, + "1522": 2531.8511506262, + "1523": 2407.1754340221, + "1524": 2282.8283087671, + "1525": 2162.2661823099, + "1526": 2042.1609763296, + "1527": 1926.1882436527, + "1528": 1810.7989573243, + "1529": 1699.8733098208, + "1530": 1589.655331941, + "1531": 1484.2145424644, + "1532": 1379.6028530383, + "1533": 1280.0630482133, + "1534": 1181.4705017863, + "1535": 1088.2245197473, + "1536": 996.0402160576, + "1537": 909.4560560956, + "1538": 824.0438044748, + "1539": 744.4631747125, + "1540": 666.1600582967, + "1541": 593.897027123, + "1542": 523.0120725393, + "1543": 458.3518291244, + "1544": 395.1647869043, + "1545": 338.3625156885, + "1546": 283.1227562203, + "1547": 234.4026298175, + "1548": 187.3281591951, + "1549": 146.8824536861, + "1550": 108.1590533389, + "1551": 76.1473894455, + "1552": 45.9278829435, + "1553": 22.4765960784, + "1554": 0.8802460078, + "1555": -13.9181123136, + "1556": -26.8060750255, + "1557": -32.8931024437, + "1558": -37.021814896, + "1559": -34.3734886946, + "1560": -29.7266567455, + "1561": -18.3534286583, + "1562": -4.9493912305, + "1563": 15.1038538073, + "1564": 37.2121971017, + "1565": 65.8663180935, + "1566": 96.5917157238, + "1567": 133.7336279447, + "1568": 172.9548208038, + "1569": 218.4379420948, + "1570": 266.0001420527, + "1571": 319.6449713135, + "1572": 375.3604720961, + "1573": 436.9552976935, + "1574": 500.6042156733, + "1575": 569.9059509705, + "1576": 641.2370929467, + "1577": 717.9722356556, + "1578": 796.7040901988, + "1579": 880.5698017681, + "1580": 966.3916502176, + "1581": 1057.0569509983, + "1582": 1149.6300937265, + "1583": 1246.7371691974, + "1584": 1345.6962623027, + "1585": 1448.861875201, + "1586": 1553.816372353, + "1587": 1662.6333751365, + "1588": 1773.169068884, + "1589": 1887.2080105563, + "1590": 2002.8886670152, + "1591": 2121.6994879731, + "1592": 2242.0685684417, + "1593": 2365.1823766544, + "1594": 2489.7648393635, + "1595": 2616.6957608752, + "1596": 2744.9999357609, + "1597": 2875.2470322137, + "1598": 3006.7665613142, + "1599": 3139.8158069226, + "1600": 3274.0316427421, + "1601": 3409.3579529183, + "1602": 3545.7404068702, + "1603": 3682.8097104924, + "1604": 3820.8205433383, + "1605": 3959.0918904862, + "1606": 4098.1864365199, + "1607": 4237.1141333564, + "1608": 4376.7434499511, + "1609": 4515.7792123269, + "1610": 4655.3922463603, + "1611": 4793.9873636408, + "1612": 4933.0331262508, + "1613": 5070.6406268261, + "1614": 5208.5703679117, + "1615": 5344.6471778438, + "1616": 5480.9165517311, + "1617": 5614.9256380189, + "1618": 5748.9968517446, + "1619": 5880.4093417474, + "1620": 6011.7532774824, + "1621": 6140.0505461387, + "1622": 6268.1488493739, + "1623": 6392.8245659779, + "1624": 6517.1716912329, + "1625": 6637.7338176902, + "1626": 6757.8390236704, + "1627": 6873.8117563473, + "1628": 6989.2010426757, + "1629": 7100.1266901792, + "1630": 7210.344668059, + "1631": 7315.7854575356, + "1632": 7420.3971469618, + "1633": 7519.9369517867, + "1634": 7618.5294982137, + "1635": 7711.7754802527, + "1636": 7803.9597839424, + "1637": 7890.5439439045, + "1638": 7975.9561955253, + "1639": 8055.5368252875, + "1640": 8133.8399417033, + "1641": 8206.102972877, + "1642": 8276.9879274607, + "1643": 8341.6481708756, + "1644": 8404.8352130957, + "1645": 8461.6374843115, + "1646": 8516.8772437797, + "1647": 8565.5973701826, + "1648": 8612.6718408049, + "1649": 8653.1175463139, + "1650": 8691.8409466611, + "1651": 8723.8526105545, + "1652": 8754.0721170565, + "1653": 8777.5234039216, + "1654": 8799.1197539922, + "1655": 8813.9181123136, + "1656": 8826.8060750255, + "1657": 8832.8931024437, + "1658": 8837.021814896, + "1659": 8834.3734886946, + "1660": 8829.7266567455, + "1661": 8818.3534286583, + "1662": 8804.9493912305, + "1663": 8784.8961461927, + "1664": 8762.7878028983, + "1665": 8734.1336819065, + "1666": 8703.4082842762, + "1667": 8666.2663720552, + "1668": 8627.0451791962, + "1669": 8581.5620579052, + "1670": 8533.9998579473, + "1671": 8480.3550286865, + "1672": 8424.6395279038, + "1673": 8363.0447023065, + "1674": 8299.3957843267, + "1675": 8230.0940490294, + "1676": 8158.7629070533, + "1677": 8082.0277643444, + "1678": 8003.2959098012, + "1679": 7919.4301982319, + "1680": 7833.6083497824, + "1681": 7742.9430490017, + "1682": 7650.3699062735, + "1683": 7553.2628308025, + "1684": 7454.3037376972, + "1685": 7351.138124799, + "1686": 7246.1836276469, + "1687": 7137.3666248636, + "1688": 7026.830931116, + "1689": 6912.7919894437, + "1690": 6797.1113329848, + "1691": 6678.3005120269, + "1692": 6557.9314315583, + "1693": 6434.8176233456, + "1694": 6310.2351606365, + "1695": 6183.3042391248, + "1696": 6055.0000642392, + "1697": 5924.7529677863, + "1698": 5793.2334386859, + "1699": 5660.1841930773, + "1700": 5525.9683572578, + "1701": 5390.6420470817, + "1702": 5254.2595931297, + "1703": 5117.1902895076, + "1704": 4979.1794566617, + "1705": 4840.9081095138, + "1706": 4701.8135634801, + "1707": 4562.8858666436, + "1708": 4423.2565500489, + "1709": 4284.2207876731, + "1710": 4144.6077536397, + "1711": 4006.0126363592, + "1712": 3866.9668737492, + "1713": 3729.3593731739, + "1714": 3591.4296320883, + "1715": 3455.3528221562, + "1716": 3319.0834482689, + "1717": 3185.0743619812, + "1718": 3051.0031482553, + "1719": 2919.5906582526, + "1720": 2788.2467225176, + "1721": 2659.9494538613, + "1722": 2531.8511506261, + "1723": 2407.1754340221, + "1724": 2282.8283087671, + "1725": 2162.2661823098, + "1726": 2042.1609763296, + "1727": 1926.1882436527, + "1728": 1810.7989573243, + "1729": 1699.8733098208, + "1730": 1589.655331941, + "1731": 1484.2145424644, + "1732": 1379.6028530382, + "1733": 1280.0630482133, + "1734": 1181.4705017863, + "1735": 1088.2245197473, + "1736": 996.0402160576, + "1737": 909.4560560955, + "1738": 824.0438044747, + "1739": 744.4631747125, + "1740": 666.1600582967, + "1741": 593.897027123, + "1742": 523.0120725393, + "1743": 458.3518291244, + "1744": 395.1647869043, + "1745": 338.3625156885, + "1746": 283.1227562203, + "1747": 234.4026298174, + "1748": 187.3281591951, + "1749": 146.8824536861, + "1750": 108.1590533389, + "1751": 76.1473894455, + "1752": 45.9278829435, + "1753": 22.4765960784, + "1754": 0.8802460078, + "1755": -13.9181123136, + "1756": -26.8060750255, + "1757": -32.8931024437, + "1758": -37.021814896, + "1759": -34.3734886946, + "1760": -29.7266567456, + "1761": -18.3534286583, + "1762": -4.9493912305, + "1763": 15.1038538073, + "1764": 37.2121971017, + "1765": 65.8663180935, + "1766": 96.5917157238, + "1767": 133.7336279447, + "1768": 172.9548208038, + "1769": 218.4379420948, + "1770": 266.0001420528, + "1771": 319.6449713135, + "1772": 375.3604720962, + "1773": 436.9552976934, + "1774": 500.6042156733, + "1775": 569.9059509706, + "1776": 641.2370929467, + "1777": 717.9722356556, + "1778": 796.7040901988, + "1779": 880.5698017681, + "1780": 966.3916502176, + "1781": 1057.0569509983, + "1782": 1149.6300937265, + "1783": 1246.7371691975, + "1784": 1345.6962623028, + "1785": 1448.861875201, + "1786": 1553.8163723531, + "1787": 1662.6333751364, + "1788": 1773.169068884, + "1789": 1887.2080105563, + "1790": 2002.8886670152, + "1791": 2121.6994879731, + "1792": 2242.0685684417, + "1793": 2365.1823766544, + "1794": 2489.7648393635, + "1795": 2616.6957608753, + "1796": 2744.9999357608, + "1797": 2875.2470322137, + "1798": 3006.7665613141, + "1799": 3139.8158069227, + "1800": 3274.0316427422, + "1801": 3409.3579529183, + "1802": 3545.7404068703, + "1803": 3682.8097104924, + "1804": 3820.8205433383, + "1805": 3959.0918904862, + "1806": 4098.1864365199, + "1807": 4237.1141333564, + "1808": 4376.7434499511, + "1809": 4515.7792123269, + "1810": 4655.3922463603, + "1811": 4793.9873636408, + "1812": 4933.0331262508, + "1813": 5070.6406268261, + "1814": 5208.5703679117, + "1815": 5344.6471778438, + "1816": 5480.9165517311, + "1817": 5614.9256380188, + "1818": 5748.9968517447, + "1819": 5880.4093417474, + "1820": 6011.7532774824, + "1821": 6140.0505461387, + "1822": 6268.1488493739, + "1823": 6392.8245659779, + "1824": 6517.1716912329, + "1825": 6637.7338176902, + "1826": 6757.8390236704, + "1827": 6873.8117563473, + "1828": 6989.2010426757, + "1829": 7100.1266901792, + "1830": 7210.344668059, + "1831": 7315.7854575356, + "1832": 7420.3971469618, + "1833": 7519.9369517867, + "1834": 7618.5294982137, + "1835": 7711.7754802527, + "1836": 7803.9597839424, + "1837": 7890.5439439045, + "1838": 7975.9561955253, + "1839": 8055.5368252875, + "1840": 8133.8399417033, + "1841": 8206.102972877, + "1842": 8276.9879274607, + "1843": 8341.6481708756, + "1844": 8404.8352130957, + "1845": 8461.6374843115, + "1846": 8516.8772437797, + "1847": 8565.5973701826, + "1848": 8612.6718408049, + "1849": 8653.1175463139, + "1850": 8691.8409466611, + "1851": 8723.8526105545, + "1852": 8754.0721170565, + "1853": 8777.5234039216, + "1854": 8799.1197539922, + "1855": 8813.9181123136, + "1856": 8826.8060750255, + "1857": 8832.8931024437, + "1858": 8837.021814896, + "1859": 8834.3734886946, + "1860": 8829.7266567455, + "1861": 8818.3534286583, + "1862": 8804.9493912305, + "1863": 8784.8961461927, + "1864": 8762.7878028983, + "1865": 8734.1336819065, + "1866": 8703.4082842762, + "1867": 8666.2663720553, + "1868": 8627.0451791962, + "1869": 8581.5620579052, + "1870": 8533.9998579473, + "1871": 8480.3550286865, + "1872": 8424.6395279038, + "1873": 8363.0447023065, + "1874": 8299.3957843267, + "1875": 8230.0940490294, + "1876": 8158.7629070533, + "1877": 8082.0277643444, + "1878": 8003.2959098012, + "1879": 7919.4301982319, + "1880": 7833.6083497824, + "1881": 7742.9430490017, + "1882": 7650.3699062735, + "1883": 7553.2628308025, + "1884": 7454.3037376972, + "1885": 7351.138124799, + "1886": 7246.1836276469, + "1887": 7137.3666248636, + "1888": 7026.830931116, + "1889": 6912.7919894437, + "1890": 6797.1113329848, + "1891": 6678.3005120269, + "1892": 6557.9314315583, + "1893": 6434.8176233456, + "1894": 6310.2351606365, + "1895": 6183.3042391247, + "1896": 6055.0000642392, + "1897": 5924.7529677863, + "1898": 5793.2334386859, + "1899": 5660.1841930773, + "1900": 5525.9683572578, + "1901": 5390.6420470817, + "1902": 5254.2595931297, + "1903": 5117.1902895076, + "1904": 4979.1794566617, + "1905": 4840.9081095138, + "1906": 4701.8135634801, + "1907": 4562.8858666436, + "1908": 4423.2565500489, + "1909": 4284.2207876731, + "1910": 4144.6077536397, + "1911": 4006.0126363592, + "1912": 3866.9668737492, + "1913": 3729.3593731739, + "1914": 3591.4296320883, + "1915": 3455.3528221562, + "1916": 3319.0834482689, + "1917": 3185.0743619812, + "1918": 3051.0031482553, + "1919": 2919.5906582526, + "1920": 2788.2467225176, + "1921": 2659.9494538613, + "1922": 2531.8511506261, + "1923": 2407.1754340221, + "1924": 2282.8283087671, + "1925": 2162.2661823098, + "1926": 2042.1609763296, + "1927": 1926.1882436527, + "1928": 1810.7989573243, + "1929": 1699.8733098208, + "1930": 1589.655331941, + "1931": 1484.2145424644, + "1932": 1379.6028530382, + "1933": 1280.0630482133, + "1934": 1181.4705017863, + "1935": 1088.2245197473, + "1936": 996.0402160576, + "1937": 909.4560560955, + "1938": 824.0438044747, + "1939": 744.4631747125, + "1940": 666.1600582967, + "1941": 593.897027123, + "1942": 523.0120725393, + "1943": 458.3518291244, + "1944": 395.1647869043, + "1945": 338.3625156885, + "1946": 283.1227562203, + "1947": 234.4026298174, + "1948": 187.3281591951, + "1949": 146.8824536861, + "1950": 108.1590533389, + "1951": 76.1473894455, + "1952": 45.9278829435, + "1953": 22.4765960784, + "1954": 0.8802460078, + "1955": -13.9181123136, + "1956": -26.8060750255, + "1957": -32.8931024437, + "1958": -37.021814896, + "1959": -34.3734886946, + "1960": -29.7266567456, + "1961": -18.3534286583, + "1962": -4.9493912305, + "1963": 15.1038538073, + "1964": 37.2121971017, + "1965": 65.8663180935, + "1966": 96.5917157238, + "1967": 133.7336279447, + "1968": 172.9548208038, + "1969": 218.4379420948, + "1970": 266.0001420528, + "1971": 319.6449713135, + "1972": 375.3604720962, + "1973": 436.9552976934, + "1974": 500.6042156733, + "1975": 569.9059509706, + "1976": 641.2370929467, + "1977": 717.9722356556, + "1978": 796.7040901988, + "1979": 880.5698017681, + "1980": 966.3916502176, + "1981": 1057.0569509983, + "1982": 1149.6300937265, + "1983": 1246.7371691975, + "1984": 1345.6962623028, + "1985": 1448.861875201, + "1986": 1553.8163723531, + "1987": 1662.6333751364, + "1988": 1773.169068884, + "1989": 1887.2080105563, + "1990": 2002.8886670152, + "1991": 2121.6994879731, + "1992": 2242.0685684417, + "1993": 2365.1823766544, + "1994": 2489.7648393635, + "1995": 2616.6957608753, + "1996": 2744.9999357608, + "1997": 2875.2470322137, + "1998": 3006.7665613141, + "1999": 3139.8158069227, + "2000": 3274.0316427422 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_R_coronary.json b/tests/cases/results/result_pulsatileFlow_R_coronary.json index baf6533b2..410ff92ef 100644 --- a/tests/cases/results/result_pulsatileFlow_R_coronary.json +++ b/tests/cases/results/result_pulsatileFlow_R_coronary.json @@ -1 +1,36020 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0","101":"branch0_seg0","102":"branch0_seg0","103":"branch0_seg0","104":"branch0_seg0","105":"branch0_seg0","106":"branch0_seg0","107":"branch0_seg0","108":"branch0_seg0","109":"branch0_seg0","110":"branch0_seg0","111":"branch0_seg0","112":"branch0_seg0","113":"branch0_seg0","114":"branch0_seg0","115":"branch0_seg0","116":"branch0_seg0","117":"branch0_seg0","118":"branch0_seg0","119":"branch0_seg0","120":"branch0_seg0","121":"branch0_seg0","122":"branch0_seg0","123":"branch0_seg0","124":"branch0_seg0","125":"branch0_seg0","126":"branch0_seg0","127":"branch0_seg0","128":"branch0_seg0","129":"branch0_seg0","130":"branch0_seg0","131":"branch0_seg0","132":"branch0_seg0","133":"branch0_seg0","134":"branch0_seg0","135":"branch0_seg0","136":"branch0_seg0","137":"branch0_seg0","138":"branch0_seg0","139":"branch0_seg0","140":"branch0_seg0","141":"branch0_seg0","142":"branch0_seg0","143":"branch0_seg0","144":"branch0_seg0","145":"branch0_seg0","146":"branch0_seg0","147":"branch0_seg0","148":"branch0_seg0","149":"branch0_seg0","150":"branch0_seg0","151":"branch0_seg0","152":"branch0_seg0","153":"branch0_seg0","154":"branch0_seg0","155":"branch0_seg0","156":"branch0_seg0","157":"branch0_seg0","158":"branch0_seg0","159":"branch0_seg0","160":"branch0_seg0","161":"branch0_seg0","162":"branch0_seg0","163":"branch0_seg0","164":"branch0_seg0","165":"branch0_seg0","166":"branch0_seg0","167":"branch0_seg0","168":"branch0_seg0","169":"branch0_seg0","170":"branch0_seg0","171":"branch0_seg0","172":"branch0_seg0","173":"branch0_seg0","174":"branch0_seg0","175":"branch0_seg0","176":"branch0_seg0","177":"branch0_seg0","178":"branch0_seg0","179":"branch0_seg0","180":"branch0_seg0","181":"branch0_seg0","182":"branch0_seg0","183":"branch0_seg0","184":"branch0_seg0","185":"branch0_seg0","186":"branch0_seg0","187":"branch0_seg0","188":"branch0_seg0","189":"branch0_seg0","190":"branch0_seg0","191":"branch0_seg0","192":"branch0_seg0","193":"branch0_seg0","194":"branch0_seg0","195":"branch0_seg0","196":"branch0_seg0","197":"branch0_seg0","198":"branch0_seg0","199":"branch0_seg0","200":"branch0_seg0","201":"branch0_seg0","202":"branch0_seg0","203":"branch0_seg0","204":"branch0_seg0","205":"branch0_seg0","206":"branch0_seg0","207":"branch0_seg0","208":"branch0_seg0","209":"branch0_seg0","210":"branch0_seg0","211":"branch0_seg0","212":"branch0_seg0","213":"branch0_seg0","214":"branch0_seg0","215":"branch0_seg0","216":"branch0_seg0","217":"branch0_seg0","218":"branch0_seg0","219":"branch0_seg0","220":"branch0_seg0","221":"branch0_seg0","222":"branch0_seg0","223":"branch0_seg0","224":"branch0_seg0","225":"branch0_seg0","226":"branch0_seg0","227":"branch0_seg0","228":"branch0_seg0","229":"branch0_seg0","230":"branch0_seg0","231":"branch0_seg0","232":"branch0_seg0","233":"branch0_seg0","234":"branch0_seg0","235":"branch0_seg0","236":"branch0_seg0","237":"branch0_seg0","238":"branch0_seg0","239":"branch0_seg0","240":"branch0_seg0","241":"branch0_seg0","242":"branch0_seg0","243":"branch0_seg0","244":"branch0_seg0","245":"branch0_seg0","246":"branch0_seg0","247":"branch0_seg0","248":"branch0_seg0","249":"branch0_seg0","250":"branch0_seg0","251":"branch0_seg0","252":"branch0_seg0","253":"branch0_seg0","254":"branch0_seg0","255":"branch0_seg0","256":"branch0_seg0","257":"branch0_seg0","258":"branch0_seg0","259":"branch0_seg0","260":"branch0_seg0","261":"branch0_seg0","262":"branch0_seg0","263":"branch0_seg0","264":"branch0_seg0","265":"branch0_seg0","266":"branch0_seg0","267":"branch0_seg0","268":"branch0_seg0","269":"branch0_seg0","270":"branch0_seg0","271":"branch0_seg0","272":"branch0_seg0","273":"branch0_seg0","274":"branch0_seg0","275":"branch0_seg0","276":"branch0_seg0","277":"branch0_seg0","278":"branch0_seg0","279":"branch0_seg0","280":"branch0_seg0","281":"branch0_seg0","282":"branch0_seg0","283":"branch0_seg0","284":"branch0_seg0","285":"branch0_seg0","286":"branch0_seg0","287":"branch0_seg0","288":"branch0_seg0","289":"branch0_seg0","290":"branch0_seg0","291":"branch0_seg0","292":"branch0_seg0","293":"branch0_seg0","294":"branch0_seg0","295":"branch0_seg0","296":"branch0_seg0","297":"branch0_seg0","298":"branch0_seg0","299":"branch0_seg0","300":"branch0_seg0","301":"branch0_seg0","302":"branch0_seg0","303":"branch0_seg0","304":"branch0_seg0","305":"branch0_seg0","306":"branch0_seg0","307":"branch0_seg0","308":"branch0_seg0","309":"branch0_seg0","310":"branch0_seg0","311":"branch0_seg0","312":"branch0_seg0","313":"branch0_seg0","314":"branch0_seg0","315":"branch0_seg0","316":"branch0_seg0","317":"branch0_seg0","318":"branch0_seg0","319":"branch0_seg0","320":"branch0_seg0","321":"branch0_seg0","322":"branch0_seg0","323":"branch0_seg0","324":"branch0_seg0","325":"branch0_seg0","326":"branch0_seg0","327":"branch0_seg0","328":"branch0_seg0","329":"branch0_seg0","330":"branch0_seg0","331":"branch0_seg0","332":"branch0_seg0","333":"branch0_seg0","334":"branch0_seg0","335":"branch0_seg0","336":"branch0_seg0","337":"branch0_seg0","338":"branch0_seg0","339":"branch0_seg0","340":"branch0_seg0","341":"branch0_seg0","342":"branch0_seg0","343":"branch0_seg0","344":"branch0_seg0","345":"branch0_seg0","346":"branch0_seg0","347":"branch0_seg0","348":"branch0_seg0","349":"branch0_seg0","350":"branch0_seg0","351":"branch0_seg0","352":"branch0_seg0","353":"branch0_seg0","354":"branch0_seg0","355":"branch0_seg0","356":"branch0_seg0","357":"branch0_seg0","358":"branch0_seg0","359":"branch0_seg0","360":"branch0_seg0","361":"branch0_seg0","362":"branch0_seg0","363":"branch0_seg0","364":"branch0_seg0","365":"branch0_seg0","366":"branch0_seg0","367":"branch0_seg0","368":"branch0_seg0","369":"branch0_seg0","370":"branch0_seg0","371":"branch0_seg0","372":"branch0_seg0","373":"branch0_seg0","374":"branch0_seg0","375":"branch0_seg0","376":"branch0_seg0","377":"branch0_seg0","378":"branch0_seg0","379":"branch0_seg0","380":"branch0_seg0","381":"branch0_seg0","382":"branch0_seg0","383":"branch0_seg0","384":"branch0_seg0","385":"branch0_seg0","386":"branch0_seg0","387":"branch0_seg0","388":"branch0_seg0","389":"branch0_seg0","390":"branch0_seg0","391":"branch0_seg0","392":"branch0_seg0","393":"branch0_seg0","394":"branch0_seg0","395":"branch0_seg0","396":"branch0_seg0","397":"branch0_seg0","398":"branch0_seg0","399":"branch0_seg0","400":"branch0_seg0","401":"branch0_seg0","402":"branch0_seg0","403":"branch0_seg0","404":"branch0_seg0","405":"branch0_seg0","406":"branch0_seg0","407":"branch0_seg0","408":"branch0_seg0","409":"branch0_seg0","410":"branch0_seg0","411":"branch0_seg0","412":"branch0_seg0","413":"branch0_seg0","414":"branch0_seg0","415":"branch0_seg0","416":"branch0_seg0","417":"branch0_seg0","418":"branch0_seg0","419":"branch0_seg0","420":"branch0_seg0","421":"branch0_seg0","422":"branch0_seg0","423":"branch0_seg0","424":"branch0_seg0","425":"branch0_seg0","426":"branch0_seg0","427":"branch0_seg0","428":"branch0_seg0","429":"branch0_seg0","430":"branch0_seg0","431":"branch0_seg0","432":"branch0_seg0","433":"branch0_seg0","434":"branch0_seg0","435":"branch0_seg0","436":"branch0_seg0","437":"branch0_seg0","438":"branch0_seg0","439":"branch0_seg0","440":"branch0_seg0","441":"branch0_seg0","442":"branch0_seg0","443":"branch0_seg0","444":"branch0_seg0","445":"branch0_seg0","446":"branch0_seg0","447":"branch0_seg0","448":"branch0_seg0","449":"branch0_seg0","450":"branch0_seg0","451":"branch0_seg0","452":"branch0_seg0","453":"branch0_seg0","454":"branch0_seg0","455":"branch0_seg0","456":"branch0_seg0","457":"branch0_seg0","458":"branch0_seg0","459":"branch0_seg0","460":"branch0_seg0","461":"branch0_seg0","462":"branch0_seg0","463":"branch0_seg0","464":"branch0_seg0","465":"branch0_seg0","466":"branch0_seg0","467":"branch0_seg0","468":"branch0_seg0","469":"branch0_seg0","470":"branch0_seg0","471":"branch0_seg0","472":"branch0_seg0","473":"branch0_seg0","474":"branch0_seg0","475":"branch0_seg0","476":"branch0_seg0","477":"branch0_seg0","478":"branch0_seg0","479":"branch0_seg0","480":"branch0_seg0","481":"branch0_seg0","482":"branch0_seg0","483":"branch0_seg0","484":"branch0_seg0","485":"branch0_seg0","486":"branch0_seg0","487":"branch0_seg0","488":"branch0_seg0","489":"branch0_seg0","490":"branch0_seg0","491":"branch0_seg0","492":"branch0_seg0","493":"branch0_seg0","494":"branch0_seg0","495":"branch0_seg0","496":"branch0_seg0","497":"branch0_seg0","498":"branch0_seg0","499":"branch0_seg0","500":"branch0_seg0","501":"branch0_seg0","502":"branch0_seg0","503":"branch0_seg0","504":"branch0_seg0","505":"branch0_seg0","506":"branch0_seg0","507":"branch0_seg0","508":"branch0_seg0","509":"branch0_seg0","510":"branch0_seg0","511":"branch0_seg0","512":"branch0_seg0","513":"branch0_seg0","514":"branch0_seg0","515":"branch0_seg0","516":"branch0_seg0","517":"branch0_seg0","518":"branch0_seg0","519":"branch0_seg0","520":"branch0_seg0","521":"branch0_seg0","522":"branch0_seg0","523":"branch0_seg0","524":"branch0_seg0","525":"branch0_seg0","526":"branch0_seg0","527":"branch0_seg0","528":"branch0_seg0","529":"branch0_seg0","530":"branch0_seg0","531":"branch0_seg0","532":"branch0_seg0","533":"branch0_seg0","534":"branch0_seg0","535":"branch0_seg0","536":"branch0_seg0","537":"branch0_seg0","538":"branch0_seg0","539":"branch0_seg0","540":"branch0_seg0","541":"branch0_seg0","542":"branch0_seg0","543":"branch0_seg0","544":"branch0_seg0","545":"branch0_seg0","546":"branch0_seg0","547":"branch0_seg0","548":"branch0_seg0","549":"branch0_seg0","550":"branch0_seg0","551":"branch0_seg0","552":"branch0_seg0","553":"branch0_seg0","554":"branch0_seg0","555":"branch0_seg0","556":"branch0_seg0","557":"branch0_seg0","558":"branch0_seg0","559":"branch0_seg0","560":"branch0_seg0","561":"branch0_seg0","562":"branch0_seg0","563":"branch0_seg0","564":"branch0_seg0","565":"branch0_seg0","566":"branch0_seg0","567":"branch0_seg0","568":"branch0_seg0","569":"branch0_seg0","570":"branch0_seg0","571":"branch0_seg0","572":"branch0_seg0","573":"branch0_seg0","574":"branch0_seg0","575":"branch0_seg0","576":"branch0_seg0","577":"branch0_seg0","578":"branch0_seg0","579":"branch0_seg0","580":"branch0_seg0","581":"branch0_seg0","582":"branch0_seg0","583":"branch0_seg0","584":"branch0_seg0","585":"branch0_seg0","586":"branch0_seg0","587":"branch0_seg0","588":"branch0_seg0","589":"branch0_seg0","590":"branch0_seg0","591":"branch0_seg0","592":"branch0_seg0","593":"branch0_seg0","594":"branch0_seg0","595":"branch0_seg0","596":"branch0_seg0","597":"branch0_seg0","598":"branch0_seg0","599":"branch0_seg0","600":"branch0_seg0","601":"branch0_seg0","602":"branch0_seg0","603":"branch0_seg0","604":"branch0_seg0","605":"branch0_seg0","606":"branch0_seg0","607":"branch0_seg0","608":"branch0_seg0","609":"branch0_seg0","610":"branch0_seg0","611":"branch0_seg0","612":"branch0_seg0","613":"branch0_seg0","614":"branch0_seg0","615":"branch0_seg0","616":"branch0_seg0","617":"branch0_seg0","618":"branch0_seg0","619":"branch0_seg0","620":"branch0_seg0","621":"branch0_seg0","622":"branch0_seg0","623":"branch0_seg0","624":"branch0_seg0","625":"branch0_seg0","626":"branch0_seg0","627":"branch0_seg0","628":"branch0_seg0","629":"branch0_seg0","630":"branch0_seg0","631":"branch0_seg0","632":"branch0_seg0","633":"branch0_seg0","634":"branch0_seg0","635":"branch0_seg0","636":"branch0_seg0","637":"branch0_seg0","638":"branch0_seg0","639":"branch0_seg0","640":"branch0_seg0","641":"branch0_seg0","642":"branch0_seg0","643":"branch0_seg0","644":"branch0_seg0","645":"branch0_seg0","646":"branch0_seg0","647":"branch0_seg0","648":"branch0_seg0","649":"branch0_seg0","650":"branch0_seg0","651":"branch0_seg0","652":"branch0_seg0","653":"branch0_seg0","654":"branch0_seg0","655":"branch0_seg0","656":"branch0_seg0","657":"branch0_seg0","658":"branch0_seg0","659":"branch0_seg0","660":"branch0_seg0","661":"branch0_seg0","662":"branch0_seg0","663":"branch0_seg0","664":"branch0_seg0","665":"branch0_seg0","666":"branch0_seg0","667":"branch0_seg0","668":"branch0_seg0","669":"branch0_seg0","670":"branch0_seg0","671":"branch0_seg0","672":"branch0_seg0","673":"branch0_seg0","674":"branch0_seg0","675":"branch0_seg0","676":"branch0_seg0","677":"branch0_seg0","678":"branch0_seg0","679":"branch0_seg0","680":"branch0_seg0","681":"branch0_seg0","682":"branch0_seg0","683":"branch0_seg0","684":"branch0_seg0","685":"branch0_seg0","686":"branch0_seg0","687":"branch0_seg0","688":"branch0_seg0","689":"branch0_seg0","690":"branch0_seg0","691":"branch0_seg0","692":"branch0_seg0","693":"branch0_seg0","694":"branch0_seg0","695":"branch0_seg0","696":"branch0_seg0","697":"branch0_seg0","698":"branch0_seg0","699":"branch0_seg0","700":"branch0_seg0","701":"branch0_seg0","702":"branch0_seg0","703":"branch0_seg0","704":"branch0_seg0","705":"branch0_seg0","706":"branch0_seg0","707":"branch0_seg0","708":"branch0_seg0","709":"branch0_seg0","710":"branch0_seg0","711":"branch0_seg0","712":"branch0_seg0","713":"branch0_seg0","714":"branch0_seg0","715":"branch0_seg0","716":"branch0_seg0","717":"branch0_seg0","718":"branch0_seg0","719":"branch0_seg0","720":"branch0_seg0","721":"branch0_seg0","722":"branch0_seg0","723":"branch0_seg0","724":"branch0_seg0","725":"branch0_seg0","726":"branch0_seg0","727":"branch0_seg0","728":"branch0_seg0","729":"branch0_seg0","730":"branch0_seg0","731":"branch0_seg0","732":"branch0_seg0","733":"branch0_seg0","734":"branch0_seg0","735":"branch0_seg0","736":"branch0_seg0","737":"branch0_seg0","738":"branch0_seg0","739":"branch0_seg0","740":"branch0_seg0","741":"branch0_seg0","742":"branch0_seg0","743":"branch0_seg0","744":"branch0_seg0","745":"branch0_seg0","746":"branch0_seg0","747":"branch0_seg0","748":"branch0_seg0","749":"branch0_seg0","750":"branch0_seg0","751":"branch0_seg0","752":"branch0_seg0","753":"branch0_seg0","754":"branch0_seg0","755":"branch0_seg0","756":"branch0_seg0","757":"branch0_seg0","758":"branch0_seg0","759":"branch0_seg0","760":"branch0_seg0","761":"branch0_seg0","762":"branch0_seg0","763":"branch0_seg0","764":"branch0_seg0","765":"branch0_seg0","766":"branch0_seg0","767":"branch0_seg0","768":"branch0_seg0","769":"branch0_seg0","770":"branch0_seg0","771":"branch0_seg0","772":"branch0_seg0","773":"branch0_seg0","774":"branch0_seg0","775":"branch0_seg0","776":"branch0_seg0","777":"branch0_seg0","778":"branch0_seg0","779":"branch0_seg0","780":"branch0_seg0","781":"branch0_seg0","782":"branch0_seg0","783":"branch0_seg0","784":"branch0_seg0","785":"branch0_seg0","786":"branch0_seg0","787":"branch0_seg0","788":"branch0_seg0","789":"branch0_seg0","790":"branch0_seg0","791":"branch0_seg0","792":"branch0_seg0","793":"branch0_seg0","794":"branch0_seg0","795":"branch0_seg0","796":"branch0_seg0","797":"branch0_seg0","798":"branch0_seg0","799":"branch0_seg0","800":"branch0_seg0","801":"branch0_seg0","802":"branch0_seg0","803":"branch0_seg0","804":"branch0_seg0","805":"branch0_seg0","806":"branch0_seg0","807":"branch0_seg0","808":"branch0_seg0","809":"branch0_seg0","810":"branch0_seg0","811":"branch0_seg0","812":"branch0_seg0","813":"branch0_seg0","814":"branch0_seg0","815":"branch0_seg0","816":"branch0_seg0","817":"branch0_seg0","818":"branch0_seg0","819":"branch0_seg0","820":"branch0_seg0","821":"branch0_seg0","822":"branch0_seg0","823":"branch0_seg0","824":"branch0_seg0","825":"branch0_seg0","826":"branch0_seg0","827":"branch0_seg0","828":"branch0_seg0","829":"branch0_seg0","830":"branch0_seg0","831":"branch0_seg0","832":"branch0_seg0","833":"branch0_seg0","834":"branch0_seg0","835":"branch0_seg0","836":"branch0_seg0","837":"branch0_seg0","838":"branch0_seg0","839":"branch0_seg0","840":"branch0_seg0","841":"branch0_seg0","842":"branch0_seg0","843":"branch0_seg0","844":"branch0_seg0","845":"branch0_seg0","846":"branch0_seg0","847":"branch0_seg0","848":"branch0_seg0","849":"branch0_seg0","850":"branch0_seg0","851":"branch0_seg0","852":"branch0_seg0","853":"branch0_seg0","854":"branch0_seg0","855":"branch0_seg0","856":"branch0_seg0","857":"branch0_seg0","858":"branch0_seg0","859":"branch0_seg0","860":"branch0_seg0","861":"branch0_seg0","862":"branch0_seg0","863":"branch0_seg0","864":"branch0_seg0","865":"branch0_seg0","866":"branch0_seg0","867":"branch0_seg0","868":"branch0_seg0","869":"branch0_seg0","870":"branch0_seg0","871":"branch0_seg0","872":"branch0_seg0","873":"branch0_seg0","874":"branch0_seg0","875":"branch0_seg0","876":"branch0_seg0","877":"branch0_seg0","878":"branch0_seg0","879":"branch0_seg0","880":"branch0_seg0","881":"branch0_seg0","882":"branch0_seg0","883":"branch0_seg0","884":"branch0_seg0","885":"branch0_seg0","886":"branch0_seg0","887":"branch0_seg0","888":"branch0_seg0","889":"branch0_seg0","890":"branch0_seg0","891":"branch0_seg0","892":"branch0_seg0","893":"branch0_seg0","894":"branch0_seg0","895":"branch0_seg0","896":"branch0_seg0","897":"branch0_seg0","898":"branch0_seg0","899":"branch0_seg0","900":"branch0_seg0","901":"branch0_seg0","902":"branch0_seg0","903":"branch0_seg0","904":"branch0_seg0","905":"branch0_seg0","906":"branch0_seg0","907":"branch0_seg0","908":"branch0_seg0","909":"branch0_seg0","910":"branch0_seg0","911":"branch0_seg0","912":"branch0_seg0","913":"branch0_seg0","914":"branch0_seg0","915":"branch0_seg0","916":"branch0_seg0","917":"branch0_seg0","918":"branch0_seg0","919":"branch0_seg0","920":"branch0_seg0","921":"branch0_seg0","922":"branch0_seg0","923":"branch0_seg0","924":"branch0_seg0","925":"branch0_seg0","926":"branch0_seg0","927":"branch0_seg0","928":"branch0_seg0","929":"branch0_seg0","930":"branch0_seg0","931":"branch0_seg0","932":"branch0_seg0","933":"branch0_seg0","934":"branch0_seg0","935":"branch0_seg0","936":"branch0_seg0","937":"branch0_seg0","938":"branch0_seg0","939":"branch0_seg0","940":"branch0_seg0","941":"branch0_seg0","942":"branch0_seg0","943":"branch0_seg0","944":"branch0_seg0","945":"branch0_seg0","946":"branch0_seg0","947":"branch0_seg0","948":"branch0_seg0","949":"branch0_seg0","950":"branch0_seg0","951":"branch0_seg0","952":"branch0_seg0","953":"branch0_seg0","954":"branch0_seg0","955":"branch0_seg0","956":"branch0_seg0","957":"branch0_seg0","958":"branch0_seg0","959":"branch0_seg0","960":"branch0_seg0","961":"branch0_seg0","962":"branch0_seg0","963":"branch0_seg0","964":"branch0_seg0","965":"branch0_seg0","966":"branch0_seg0","967":"branch0_seg0","968":"branch0_seg0","969":"branch0_seg0","970":"branch0_seg0","971":"branch0_seg0","972":"branch0_seg0","973":"branch0_seg0","974":"branch0_seg0","975":"branch0_seg0","976":"branch0_seg0","977":"branch0_seg0","978":"branch0_seg0","979":"branch0_seg0","980":"branch0_seg0","981":"branch0_seg0","982":"branch0_seg0","983":"branch0_seg0","984":"branch0_seg0","985":"branch0_seg0","986":"branch0_seg0","987":"branch0_seg0","988":"branch0_seg0","989":"branch0_seg0","990":"branch0_seg0","991":"branch0_seg0","992":"branch0_seg0","993":"branch0_seg0","994":"branch0_seg0","995":"branch0_seg0","996":"branch0_seg0","997":"branch0_seg0","998":"branch0_seg0","999":"branch0_seg0","1000":"branch0_seg0","1001":"branch0_seg0","1002":"branch0_seg0","1003":"branch0_seg0","1004":"branch0_seg0","1005":"branch0_seg0","1006":"branch0_seg0","1007":"branch0_seg0","1008":"branch0_seg0","1009":"branch0_seg0","1010":"branch0_seg0","1011":"branch0_seg0","1012":"branch0_seg0","1013":"branch0_seg0","1014":"branch0_seg0","1015":"branch0_seg0","1016":"branch0_seg0","1017":"branch0_seg0","1018":"branch0_seg0","1019":"branch0_seg0","1020":"branch0_seg0","1021":"branch0_seg0","1022":"branch0_seg0","1023":"branch0_seg0","1024":"branch0_seg0","1025":"branch0_seg0","1026":"branch0_seg0","1027":"branch0_seg0","1028":"branch0_seg0","1029":"branch0_seg0","1030":"branch0_seg0","1031":"branch0_seg0","1032":"branch0_seg0","1033":"branch0_seg0","1034":"branch0_seg0","1035":"branch0_seg0","1036":"branch0_seg0","1037":"branch0_seg0","1038":"branch0_seg0","1039":"branch0_seg0","1040":"branch0_seg0","1041":"branch0_seg0","1042":"branch0_seg0","1043":"branch0_seg0","1044":"branch0_seg0","1045":"branch0_seg0","1046":"branch0_seg0","1047":"branch0_seg0","1048":"branch0_seg0","1049":"branch0_seg0","1050":"branch0_seg0","1051":"branch0_seg0","1052":"branch0_seg0","1053":"branch0_seg0","1054":"branch0_seg0","1055":"branch0_seg0","1056":"branch0_seg0","1057":"branch0_seg0","1058":"branch0_seg0","1059":"branch0_seg0","1060":"branch0_seg0","1061":"branch0_seg0","1062":"branch0_seg0","1063":"branch0_seg0","1064":"branch0_seg0","1065":"branch0_seg0","1066":"branch0_seg0","1067":"branch0_seg0","1068":"branch0_seg0","1069":"branch0_seg0","1070":"branch0_seg0","1071":"branch0_seg0","1072":"branch0_seg0","1073":"branch0_seg0","1074":"branch0_seg0","1075":"branch0_seg0","1076":"branch0_seg0","1077":"branch0_seg0","1078":"branch0_seg0","1079":"branch0_seg0","1080":"branch0_seg0","1081":"branch0_seg0","1082":"branch0_seg0","1083":"branch0_seg0","1084":"branch0_seg0","1085":"branch0_seg0","1086":"branch0_seg0","1087":"branch0_seg0","1088":"branch0_seg0","1089":"branch0_seg0","1090":"branch0_seg0","1091":"branch0_seg0","1092":"branch0_seg0","1093":"branch0_seg0","1094":"branch0_seg0","1095":"branch0_seg0","1096":"branch0_seg0","1097":"branch0_seg0","1098":"branch0_seg0","1099":"branch0_seg0","1100":"branch0_seg0","1101":"branch0_seg0","1102":"branch0_seg0","1103":"branch0_seg0","1104":"branch0_seg0","1105":"branch0_seg0","1106":"branch0_seg0","1107":"branch0_seg0","1108":"branch0_seg0","1109":"branch0_seg0","1110":"branch0_seg0","1111":"branch0_seg0","1112":"branch0_seg0","1113":"branch0_seg0","1114":"branch0_seg0","1115":"branch0_seg0","1116":"branch0_seg0","1117":"branch0_seg0","1118":"branch0_seg0","1119":"branch0_seg0","1120":"branch0_seg0","1121":"branch0_seg0","1122":"branch0_seg0","1123":"branch0_seg0","1124":"branch0_seg0","1125":"branch0_seg0","1126":"branch0_seg0","1127":"branch0_seg0","1128":"branch0_seg0","1129":"branch0_seg0","1130":"branch0_seg0","1131":"branch0_seg0","1132":"branch0_seg0","1133":"branch0_seg0","1134":"branch0_seg0","1135":"branch0_seg0","1136":"branch0_seg0","1137":"branch0_seg0","1138":"branch0_seg0","1139":"branch0_seg0","1140":"branch0_seg0","1141":"branch0_seg0","1142":"branch0_seg0","1143":"branch0_seg0","1144":"branch0_seg0","1145":"branch0_seg0","1146":"branch0_seg0","1147":"branch0_seg0","1148":"branch0_seg0","1149":"branch0_seg0","1150":"branch0_seg0","1151":"branch0_seg0","1152":"branch0_seg0","1153":"branch0_seg0","1154":"branch0_seg0","1155":"branch0_seg0","1156":"branch0_seg0","1157":"branch0_seg0","1158":"branch0_seg0","1159":"branch0_seg0","1160":"branch0_seg0","1161":"branch0_seg0","1162":"branch0_seg0","1163":"branch0_seg0","1164":"branch0_seg0","1165":"branch0_seg0","1166":"branch0_seg0","1167":"branch0_seg0","1168":"branch0_seg0","1169":"branch0_seg0","1170":"branch0_seg0","1171":"branch0_seg0","1172":"branch0_seg0","1173":"branch0_seg0","1174":"branch0_seg0","1175":"branch0_seg0","1176":"branch0_seg0","1177":"branch0_seg0","1178":"branch0_seg0","1179":"branch0_seg0","1180":"branch0_seg0","1181":"branch0_seg0","1182":"branch0_seg0","1183":"branch0_seg0","1184":"branch0_seg0","1185":"branch0_seg0","1186":"branch0_seg0","1187":"branch0_seg0","1188":"branch0_seg0","1189":"branch0_seg0","1190":"branch0_seg0","1191":"branch0_seg0","1192":"branch0_seg0","1193":"branch0_seg0","1194":"branch0_seg0","1195":"branch0_seg0","1196":"branch0_seg0","1197":"branch0_seg0","1198":"branch0_seg0","1199":"branch0_seg0","1200":"branch0_seg0","1201":"branch0_seg0","1202":"branch0_seg0","1203":"branch0_seg0","1204":"branch0_seg0","1205":"branch0_seg0","1206":"branch0_seg0","1207":"branch0_seg0","1208":"branch0_seg0","1209":"branch0_seg0","1210":"branch0_seg0","1211":"branch0_seg0","1212":"branch0_seg0","1213":"branch0_seg0","1214":"branch0_seg0","1215":"branch0_seg0","1216":"branch0_seg0","1217":"branch0_seg0","1218":"branch0_seg0","1219":"branch0_seg0","1220":"branch0_seg0","1221":"branch0_seg0","1222":"branch0_seg0","1223":"branch0_seg0","1224":"branch0_seg0","1225":"branch0_seg0","1226":"branch0_seg0","1227":"branch0_seg0","1228":"branch0_seg0","1229":"branch0_seg0","1230":"branch0_seg0","1231":"branch0_seg0","1232":"branch0_seg0","1233":"branch0_seg0","1234":"branch0_seg0","1235":"branch0_seg0","1236":"branch0_seg0","1237":"branch0_seg0","1238":"branch0_seg0","1239":"branch0_seg0","1240":"branch0_seg0","1241":"branch0_seg0","1242":"branch0_seg0","1243":"branch0_seg0","1244":"branch0_seg0","1245":"branch0_seg0","1246":"branch0_seg0","1247":"branch0_seg0","1248":"branch0_seg0","1249":"branch0_seg0","1250":"branch0_seg0","1251":"branch0_seg0","1252":"branch0_seg0","1253":"branch0_seg0","1254":"branch0_seg0","1255":"branch0_seg0","1256":"branch0_seg0","1257":"branch0_seg0","1258":"branch0_seg0","1259":"branch0_seg0","1260":"branch0_seg0","1261":"branch0_seg0","1262":"branch0_seg0","1263":"branch0_seg0","1264":"branch0_seg0","1265":"branch0_seg0","1266":"branch0_seg0","1267":"branch0_seg0","1268":"branch0_seg0","1269":"branch0_seg0","1270":"branch0_seg0","1271":"branch0_seg0","1272":"branch0_seg0","1273":"branch0_seg0","1274":"branch0_seg0","1275":"branch0_seg0","1276":"branch0_seg0","1277":"branch0_seg0","1278":"branch0_seg0","1279":"branch0_seg0","1280":"branch0_seg0","1281":"branch0_seg0","1282":"branch0_seg0","1283":"branch0_seg0","1284":"branch0_seg0","1285":"branch0_seg0","1286":"branch0_seg0","1287":"branch0_seg0","1288":"branch0_seg0","1289":"branch0_seg0","1290":"branch0_seg0","1291":"branch0_seg0","1292":"branch0_seg0","1293":"branch0_seg0","1294":"branch0_seg0","1295":"branch0_seg0","1296":"branch0_seg0","1297":"branch0_seg0","1298":"branch0_seg0","1299":"branch0_seg0","1300":"branch0_seg0","1301":"branch0_seg0","1302":"branch0_seg0","1303":"branch0_seg0","1304":"branch0_seg0","1305":"branch0_seg0","1306":"branch0_seg0","1307":"branch0_seg0","1308":"branch0_seg0","1309":"branch0_seg0","1310":"branch0_seg0","1311":"branch0_seg0","1312":"branch0_seg0","1313":"branch0_seg0","1314":"branch0_seg0","1315":"branch0_seg0","1316":"branch0_seg0","1317":"branch0_seg0","1318":"branch0_seg0","1319":"branch0_seg0","1320":"branch0_seg0","1321":"branch0_seg0","1322":"branch0_seg0","1323":"branch0_seg0","1324":"branch0_seg0","1325":"branch0_seg0","1326":"branch0_seg0","1327":"branch0_seg0","1328":"branch0_seg0","1329":"branch0_seg0","1330":"branch0_seg0","1331":"branch0_seg0","1332":"branch0_seg0","1333":"branch0_seg0","1334":"branch0_seg0","1335":"branch0_seg0","1336":"branch0_seg0","1337":"branch0_seg0","1338":"branch0_seg0","1339":"branch0_seg0","1340":"branch0_seg0","1341":"branch0_seg0","1342":"branch0_seg0","1343":"branch0_seg0","1344":"branch0_seg0","1345":"branch0_seg0","1346":"branch0_seg0","1347":"branch0_seg0","1348":"branch0_seg0","1349":"branch0_seg0","1350":"branch0_seg0","1351":"branch0_seg0","1352":"branch0_seg0","1353":"branch0_seg0","1354":"branch0_seg0","1355":"branch0_seg0","1356":"branch0_seg0","1357":"branch0_seg0","1358":"branch0_seg0","1359":"branch0_seg0","1360":"branch0_seg0","1361":"branch0_seg0","1362":"branch0_seg0","1363":"branch0_seg0","1364":"branch0_seg0","1365":"branch0_seg0","1366":"branch0_seg0","1367":"branch0_seg0","1368":"branch0_seg0","1369":"branch0_seg0","1370":"branch0_seg0","1371":"branch0_seg0","1372":"branch0_seg0","1373":"branch0_seg0","1374":"branch0_seg0","1375":"branch0_seg0","1376":"branch0_seg0","1377":"branch0_seg0","1378":"branch0_seg0","1379":"branch0_seg0","1380":"branch0_seg0","1381":"branch0_seg0","1382":"branch0_seg0","1383":"branch0_seg0","1384":"branch0_seg0","1385":"branch0_seg0","1386":"branch0_seg0","1387":"branch0_seg0","1388":"branch0_seg0","1389":"branch0_seg0","1390":"branch0_seg0","1391":"branch0_seg0","1392":"branch0_seg0","1393":"branch0_seg0","1394":"branch0_seg0","1395":"branch0_seg0","1396":"branch0_seg0","1397":"branch0_seg0","1398":"branch0_seg0","1399":"branch0_seg0","1400":"branch0_seg0","1401":"branch0_seg0","1402":"branch0_seg0","1403":"branch0_seg0","1404":"branch0_seg0","1405":"branch0_seg0","1406":"branch0_seg0","1407":"branch0_seg0","1408":"branch0_seg0","1409":"branch0_seg0","1410":"branch0_seg0","1411":"branch0_seg0","1412":"branch0_seg0","1413":"branch0_seg0","1414":"branch0_seg0","1415":"branch0_seg0","1416":"branch0_seg0","1417":"branch0_seg0","1418":"branch0_seg0","1419":"branch0_seg0","1420":"branch0_seg0","1421":"branch0_seg0","1422":"branch0_seg0","1423":"branch0_seg0","1424":"branch0_seg0","1425":"branch0_seg0","1426":"branch0_seg0","1427":"branch0_seg0","1428":"branch0_seg0","1429":"branch0_seg0","1430":"branch0_seg0","1431":"branch0_seg0","1432":"branch0_seg0","1433":"branch0_seg0","1434":"branch0_seg0","1435":"branch0_seg0","1436":"branch0_seg0","1437":"branch0_seg0","1438":"branch0_seg0","1439":"branch0_seg0","1440":"branch0_seg0","1441":"branch0_seg0","1442":"branch0_seg0","1443":"branch0_seg0","1444":"branch0_seg0","1445":"branch0_seg0","1446":"branch0_seg0","1447":"branch0_seg0","1448":"branch0_seg0","1449":"branch0_seg0","1450":"branch0_seg0","1451":"branch0_seg0","1452":"branch0_seg0","1453":"branch0_seg0","1454":"branch0_seg0","1455":"branch0_seg0","1456":"branch0_seg0","1457":"branch0_seg0","1458":"branch0_seg0","1459":"branch0_seg0","1460":"branch0_seg0","1461":"branch0_seg0","1462":"branch0_seg0","1463":"branch0_seg0","1464":"branch0_seg0","1465":"branch0_seg0","1466":"branch0_seg0","1467":"branch0_seg0","1468":"branch0_seg0","1469":"branch0_seg0","1470":"branch0_seg0","1471":"branch0_seg0","1472":"branch0_seg0","1473":"branch0_seg0","1474":"branch0_seg0","1475":"branch0_seg0","1476":"branch0_seg0","1477":"branch0_seg0","1478":"branch0_seg0","1479":"branch0_seg0","1480":"branch0_seg0","1481":"branch0_seg0","1482":"branch0_seg0","1483":"branch0_seg0","1484":"branch0_seg0","1485":"branch0_seg0","1486":"branch0_seg0","1487":"branch0_seg0","1488":"branch0_seg0","1489":"branch0_seg0","1490":"branch0_seg0","1491":"branch0_seg0","1492":"branch0_seg0","1493":"branch0_seg0","1494":"branch0_seg0","1495":"branch0_seg0","1496":"branch0_seg0","1497":"branch0_seg0","1498":"branch0_seg0","1499":"branch0_seg0","1500":"branch0_seg0","1501":"branch0_seg0","1502":"branch0_seg0","1503":"branch0_seg0","1504":"branch0_seg0","1505":"branch0_seg0","1506":"branch0_seg0","1507":"branch0_seg0","1508":"branch0_seg0","1509":"branch0_seg0","1510":"branch0_seg0","1511":"branch0_seg0","1512":"branch0_seg0","1513":"branch0_seg0","1514":"branch0_seg0","1515":"branch0_seg0","1516":"branch0_seg0","1517":"branch0_seg0","1518":"branch0_seg0","1519":"branch0_seg0","1520":"branch0_seg0","1521":"branch0_seg0","1522":"branch0_seg0","1523":"branch0_seg0","1524":"branch0_seg0","1525":"branch0_seg0","1526":"branch0_seg0","1527":"branch0_seg0","1528":"branch0_seg0","1529":"branch0_seg0","1530":"branch0_seg0","1531":"branch0_seg0","1532":"branch0_seg0","1533":"branch0_seg0","1534":"branch0_seg0","1535":"branch0_seg0","1536":"branch0_seg0","1537":"branch0_seg0","1538":"branch0_seg0","1539":"branch0_seg0","1540":"branch0_seg0","1541":"branch0_seg0","1542":"branch0_seg0","1543":"branch0_seg0","1544":"branch0_seg0","1545":"branch0_seg0","1546":"branch0_seg0","1547":"branch0_seg0","1548":"branch0_seg0","1549":"branch0_seg0","1550":"branch0_seg0","1551":"branch0_seg0","1552":"branch0_seg0","1553":"branch0_seg0","1554":"branch0_seg0","1555":"branch0_seg0","1556":"branch0_seg0","1557":"branch0_seg0","1558":"branch0_seg0","1559":"branch0_seg0","1560":"branch0_seg0","1561":"branch0_seg0","1562":"branch0_seg0","1563":"branch0_seg0","1564":"branch0_seg0","1565":"branch0_seg0","1566":"branch0_seg0","1567":"branch0_seg0","1568":"branch0_seg0","1569":"branch0_seg0","1570":"branch0_seg0","1571":"branch0_seg0","1572":"branch0_seg0","1573":"branch0_seg0","1574":"branch0_seg0","1575":"branch0_seg0","1576":"branch0_seg0","1577":"branch0_seg0","1578":"branch0_seg0","1579":"branch0_seg0","1580":"branch0_seg0","1581":"branch0_seg0","1582":"branch0_seg0","1583":"branch0_seg0","1584":"branch0_seg0","1585":"branch0_seg0","1586":"branch0_seg0","1587":"branch0_seg0","1588":"branch0_seg0","1589":"branch0_seg0","1590":"branch0_seg0","1591":"branch0_seg0","1592":"branch0_seg0","1593":"branch0_seg0","1594":"branch0_seg0","1595":"branch0_seg0","1596":"branch0_seg0","1597":"branch0_seg0","1598":"branch0_seg0","1599":"branch0_seg0","1600":"branch0_seg0","1601":"branch0_seg0","1602":"branch0_seg0","1603":"branch0_seg0","1604":"branch0_seg0","1605":"branch0_seg0","1606":"branch0_seg0","1607":"branch0_seg0","1608":"branch0_seg0","1609":"branch0_seg0","1610":"branch0_seg0","1611":"branch0_seg0","1612":"branch0_seg0","1613":"branch0_seg0","1614":"branch0_seg0","1615":"branch0_seg0","1616":"branch0_seg0","1617":"branch0_seg0","1618":"branch0_seg0","1619":"branch0_seg0","1620":"branch0_seg0","1621":"branch0_seg0","1622":"branch0_seg0","1623":"branch0_seg0","1624":"branch0_seg0","1625":"branch0_seg0","1626":"branch0_seg0","1627":"branch0_seg0","1628":"branch0_seg0","1629":"branch0_seg0","1630":"branch0_seg0","1631":"branch0_seg0","1632":"branch0_seg0","1633":"branch0_seg0","1634":"branch0_seg0","1635":"branch0_seg0","1636":"branch0_seg0","1637":"branch0_seg0","1638":"branch0_seg0","1639":"branch0_seg0","1640":"branch0_seg0","1641":"branch0_seg0","1642":"branch0_seg0","1643":"branch0_seg0","1644":"branch0_seg0","1645":"branch0_seg0","1646":"branch0_seg0","1647":"branch0_seg0","1648":"branch0_seg0","1649":"branch0_seg0","1650":"branch0_seg0","1651":"branch0_seg0","1652":"branch0_seg0","1653":"branch0_seg0","1654":"branch0_seg0","1655":"branch0_seg0","1656":"branch0_seg0","1657":"branch0_seg0","1658":"branch0_seg0","1659":"branch0_seg0","1660":"branch0_seg0","1661":"branch0_seg0","1662":"branch0_seg0","1663":"branch0_seg0","1664":"branch0_seg0","1665":"branch0_seg0","1666":"branch0_seg0","1667":"branch0_seg0","1668":"branch0_seg0","1669":"branch0_seg0","1670":"branch0_seg0","1671":"branch0_seg0","1672":"branch0_seg0","1673":"branch0_seg0","1674":"branch0_seg0","1675":"branch0_seg0","1676":"branch0_seg0","1677":"branch0_seg0","1678":"branch0_seg0","1679":"branch0_seg0","1680":"branch0_seg0","1681":"branch0_seg0","1682":"branch0_seg0","1683":"branch0_seg0","1684":"branch0_seg0","1685":"branch0_seg0","1686":"branch0_seg0","1687":"branch0_seg0","1688":"branch0_seg0","1689":"branch0_seg0","1690":"branch0_seg0","1691":"branch0_seg0","1692":"branch0_seg0","1693":"branch0_seg0","1694":"branch0_seg0","1695":"branch0_seg0","1696":"branch0_seg0","1697":"branch0_seg0","1698":"branch0_seg0","1699":"branch0_seg0","1700":"branch0_seg0","1701":"branch0_seg0","1702":"branch0_seg0","1703":"branch0_seg0","1704":"branch0_seg0","1705":"branch0_seg0","1706":"branch0_seg0","1707":"branch0_seg0","1708":"branch0_seg0","1709":"branch0_seg0","1710":"branch0_seg0","1711":"branch0_seg0","1712":"branch0_seg0","1713":"branch0_seg0","1714":"branch0_seg0","1715":"branch0_seg0","1716":"branch0_seg0","1717":"branch0_seg0","1718":"branch0_seg0","1719":"branch0_seg0","1720":"branch0_seg0","1721":"branch0_seg0","1722":"branch0_seg0","1723":"branch0_seg0","1724":"branch0_seg0","1725":"branch0_seg0","1726":"branch0_seg0","1727":"branch0_seg0","1728":"branch0_seg0","1729":"branch0_seg0","1730":"branch0_seg0","1731":"branch0_seg0","1732":"branch0_seg0","1733":"branch0_seg0","1734":"branch0_seg0","1735":"branch0_seg0","1736":"branch0_seg0","1737":"branch0_seg0","1738":"branch0_seg0","1739":"branch0_seg0","1740":"branch0_seg0","1741":"branch0_seg0","1742":"branch0_seg0","1743":"branch0_seg0","1744":"branch0_seg0","1745":"branch0_seg0","1746":"branch0_seg0","1747":"branch0_seg0","1748":"branch0_seg0","1749":"branch0_seg0","1750":"branch0_seg0","1751":"branch0_seg0","1752":"branch0_seg0","1753":"branch0_seg0","1754":"branch0_seg0","1755":"branch0_seg0","1756":"branch0_seg0","1757":"branch0_seg0","1758":"branch0_seg0","1759":"branch0_seg0","1760":"branch0_seg0","1761":"branch0_seg0","1762":"branch0_seg0","1763":"branch0_seg0","1764":"branch0_seg0","1765":"branch0_seg0","1766":"branch0_seg0","1767":"branch0_seg0","1768":"branch0_seg0","1769":"branch0_seg0","1770":"branch0_seg0","1771":"branch0_seg0","1772":"branch0_seg0","1773":"branch0_seg0","1774":"branch0_seg0","1775":"branch0_seg0","1776":"branch0_seg0","1777":"branch0_seg0","1778":"branch0_seg0","1779":"branch0_seg0","1780":"branch0_seg0","1781":"branch0_seg0","1782":"branch0_seg0","1783":"branch0_seg0","1784":"branch0_seg0","1785":"branch0_seg0","1786":"branch0_seg0","1787":"branch0_seg0","1788":"branch0_seg0","1789":"branch0_seg0","1790":"branch0_seg0","1791":"branch0_seg0","1792":"branch0_seg0","1793":"branch0_seg0","1794":"branch0_seg0","1795":"branch0_seg0","1796":"branch0_seg0","1797":"branch0_seg0","1798":"branch0_seg0","1799":"branch0_seg0","1800":"branch0_seg0","1801":"branch0_seg0","1802":"branch0_seg0","1803":"branch0_seg0","1804":"branch0_seg0","1805":"branch0_seg0","1806":"branch0_seg0","1807":"branch0_seg0","1808":"branch0_seg0","1809":"branch0_seg0","1810":"branch0_seg0","1811":"branch0_seg0","1812":"branch0_seg0","1813":"branch0_seg0","1814":"branch0_seg0","1815":"branch0_seg0","1816":"branch0_seg0","1817":"branch0_seg0","1818":"branch0_seg0","1819":"branch0_seg0","1820":"branch0_seg0","1821":"branch0_seg0","1822":"branch0_seg0","1823":"branch0_seg0","1824":"branch0_seg0","1825":"branch0_seg0","1826":"branch0_seg0","1827":"branch0_seg0","1828":"branch0_seg0","1829":"branch0_seg0","1830":"branch0_seg0","1831":"branch0_seg0","1832":"branch0_seg0","1833":"branch0_seg0","1834":"branch0_seg0","1835":"branch0_seg0","1836":"branch0_seg0","1837":"branch0_seg0","1838":"branch0_seg0","1839":"branch0_seg0","1840":"branch0_seg0","1841":"branch0_seg0","1842":"branch0_seg0","1843":"branch0_seg0","1844":"branch0_seg0","1845":"branch0_seg0","1846":"branch0_seg0","1847":"branch0_seg0","1848":"branch0_seg0","1849":"branch0_seg0","1850":"branch0_seg0","1851":"branch0_seg0","1852":"branch0_seg0","1853":"branch0_seg0","1854":"branch0_seg0","1855":"branch0_seg0","1856":"branch0_seg0","1857":"branch0_seg0","1858":"branch0_seg0","1859":"branch0_seg0","1860":"branch0_seg0","1861":"branch0_seg0","1862":"branch0_seg0","1863":"branch0_seg0","1864":"branch0_seg0","1865":"branch0_seg0","1866":"branch0_seg0","1867":"branch0_seg0","1868":"branch0_seg0","1869":"branch0_seg0","1870":"branch0_seg0","1871":"branch0_seg0","1872":"branch0_seg0","1873":"branch0_seg0","1874":"branch0_seg0","1875":"branch0_seg0","1876":"branch0_seg0","1877":"branch0_seg0","1878":"branch0_seg0","1879":"branch0_seg0","1880":"branch0_seg0","1881":"branch0_seg0","1882":"branch0_seg0","1883":"branch0_seg0","1884":"branch0_seg0","1885":"branch0_seg0","1886":"branch0_seg0","1887":"branch0_seg0","1888":"branch0_seg0","1889":"branch0_seg0","1890":"branch0_seg0","1891":"branch0_seg0","1892":"branch0_seg0","1893":"branch0_seg0","1894":"branch0_seg0","1895":"branch0_seg0","1896":"branch0_seg0","1897":"branch0_seg0","1898":"branch0_seg0","1899":"branch0_seg0","1900":"branch0_seg0","1901":"branch0_seg0","1902":"branch0_seg0","1903":"branch0_seg0","1904":"branch0_seg0","1905":"branch0_seg0","1906":"branch0_seg0","1907":"branch0_seg0","1908":"branch0_seg0","1909":"branch0_seg0","1910":"branch0_seg0","1911":"branch0_seg0","1912":"branch0_seg0","1913":"branch0_seg0","1914":"branch0_seg0","1915":"branch0_seg0","1916":"branch0_seg0","1917":"branch0_seg0","1918":"branch0_seg0","1919":"branch0_seg0","1920":"branch0_seg0","1921":"branch0_seg0","1922":"branch0_seg0","1923":"branch0_seg0","1924":"branch0_seg0","1925":"branch0_seg0","1926":"branch0_seg0","1927":"branch0_seg0","1928":"branch0_seg0","1929":"branch0_seg0","1930":"branch0_seg0","1931":"branch0_seg0","1932":"branch0_seg0","1933":"branch0_seg0","1934":"branch0_seg0","1935":"branch0_seg0","1936":"branch0_seg0","1937":"branch0_seg0","1938":"branch0_seg0","1939":"branch0_seg0","1940":"branch0_seg0","1941":"branch0_seg0","1942":"branch0_seg0","1943":"branch0_seg0","1944":"branch0_seg0","1945":"branch0_seg0","1946":"branch0_seg0","1947":"branch0_seg0","1948":"branch0_seg0","1949":"branch0_seg0","1950":"branch0_seg0","1951":"branch0_seg0","1952":"branch0_seg0","1953":"branch0_seg0","1954":"branch0_seg0","1955":"branch0_seg0","1956":"branch0_seg0","1957":"branch0_seg0","1958":"branch0_seg0","1959":"branch0_seg0","1960":"branch0_seg0","1961":"branch0_seg0","1962":"branch0_seg0","1963":"branch0_seg0","1964":"branch0_seg0","1965":"branch0_seg0","1966":"branch0_seg0","1967":"branch0_seg0","1968":"branch0_seg0","1969":"branch0_seg0","1970":"branch0_seg0","1971":"branch0_seg0","1972":"branch0_seg0","1973":"branch0_seg0","1974":"branch0_seg0","1975":"branch0_seg0","1976":"branch0_seg0","1977":"branch0_seg0","1978":"branch0_seg0","1979":"branch0_seg0","1980":"branch0_seg0","1981":"branch0_seg0","1982":"branch0_seg0","1983":"branch0_seg0","1984":"branch0_seg0","1985":"branch0_seg0","1986":"branch0_seg0","1987":"branch0_seg0","1988":"branch0_seg0","1989":"branch0_seg0","1990":"branch0_seg0","1991":"branch0_seg0","1992":"branch0_seg0","1993":"branch0_seg0","1994":"branch0_seg0","1995":"branch0_seg0","1996":"branch0_seg0","1997":"branch0_seg0","1998":"branch0_seg0","1999":"branch0_seg0","2000":"branch0_seg0","2001":"branch0_seg0","2002":"branch0_seg0","2003":"branch0_seg0","2004":"branch0_seg0","2005":"branch0_seg0","2006":"branch0_seg0","2007":"branch0_seg0","2008":"branch0_seg0","2009":"branch0_seg0","2010":"branch0_seg0","2011":"branch0_seg0","2012":"branch0_seg0","2013":"branch0_seg0","2014":"branch0_seg0","2015":"branch0_seg0","2016":"branch0_seg0","2017":"branch0_seg0","2018":"branch0_seg0","2019":"branch0_seg0","2020":"branch0_seg0","2021":"branch0_seg0","2022":"branch0_seg0","2023":"branch0_seg0","2024":"branch0_seg0","2025":"branch0_seg0","2026":"branch0_seg0","2027":"branch0_seg0","2028":"branch0_seg0","2029":"branch0_seg0","2030":"branch0_seg0","2031":"branch0_seg0","2032":"branch0_seg0","2033":"branch0_seg0","2034":"branch0_seg0","2035":"branch0_seg0","2036":"branch0_seg0","2037":"branch0_seg0","2038":"branch0_seg0","2039":"branch0_seg0","2040":"branch0_seg0","2041":"branch0_seg0","2042":"branch0_seg0","2043":"branch0_seg0","2044":"branch0_seg0","2045":"branch0_seg0","2046":"branch0_seg0","2047":"branch0_seg0","2048":"branch0_seg0","2049":"branch0_seg0","2050":"branch0_seg0","2051":"branch0_seg0","2052":"branch0_seg0","2053":"branch0_seg0","2054":"branch0_seg0","2055":"branch0_seg0","2056":"branch0_seg0","2057":"branch0_seg0","2058":"branch0_seg0","2059":"branch0_seg0","2060":"branch0_seg0","2061":"branch0_seg0","2062":"branch0_seg0","2063":"branch0_seg0","2064":"branch0_seg0","2065":"branch0_seg0","2066":"branch0_seg0","2067":"branch0_seg0","2068":"branch0_seg0","2069":"branch0_seg0","2070":"branch0_seg0","2071":"branch0_seg0","2072":"branch0_seg0","2073":"branch0_seg0","2074":"branch0_seg0","2075":"branch0_seg0","2076":"branch0_seg0","2077":"branch0_seg0","2078":"branch0_seg0","2079":"branch0_seg0","2080":"branch0_seg0","2081":"branch0_seg0","2082":"branch0_seg0","2083":"branch0_seg0","2084":"branch0_seg0","2085":"branch0_seg0","2086":"branch0_seg0","2087":"branch0_seg0","2088":"branch0_seg0","2089":"branch0_seg0","2090":"branch0_seg0","2091":"branch0_seg0","2092":"branch0_seg0","2093":"branch0_seg0","2094":"branch0_seg0","2095":"branch0_seg0","2096":"branch0_seg0","2097":"branch0_seg0","2098":"branch0_seg0","2099":"branch0_seg0","2100":"branch0_seg0","2101":"branch0_seg0","2102":"branch0_seg0","2103":"branch0_seg0","2104":"branch0_seg0","2105":"branch0_seg0","2106":"branch0_seg0","2107":"branch0_seg0","2108":"branch0_seg0","2109":"branch0_seg0","2110":"branch0_seg0","2111":"branch0_seg0","2112":"branch0_seg0","2113":"branch0_seg0","2114":"branch0_seg0","2115":"branch0_seg0","2116":"branch0_seg0","2117":"branch0_seg0","2118":"branch0_seg0","2119":"branch0_seg0","2120":"branch0_seg0","2121":"branch0_seg0","2122":"branch0_seg0","2123":"branch0_seg0","2124":"branch0_seg0","2125":"branch0_seg0","2126":"branch0_seg0","2127":"branch0_seg0","2128":"branch0_seg0","2129":"branch0_seg0","2130":"branch0_seg0","2131":"branch0_seg0","2132":"branch0_seg0","2133":"branch0_seg0","2134":"branch0_seg0","2135":"branch0_seg0","2136":"branch0_seg0","2137":"branch0_seg0","2138":"branch0_seg0","2139":"branch0_seg0","2140":"branch0_seg0","2141":"branch0_seg0","2142":"branch0_seg0","2143":"branch0_seg0","2144":"branch0_seg0","2145":"branch0_seg0","2146":"branch0_seg0","2147":"branch0_seg0","2148":"branch0_seg0","2149":"branch0_seg0","2150":"branch0_seg0","2151":"branch0_seg0","2152":"branch0_seg0","2153":"branch0_seg0","2154":"branch0_seg0","2155":"branch0_seg0","2156":"branch0_seg0","2157":"branch0_seg0","2158":"branch0_seg0","2159":"branch0_seg0","2160":"branch0_seg0","2161":"branch0_seg0","2162":"branch0_seg0","2163":"branch0_seg0","2164":"branch0_seg0","2165":"branch0_seg0","2166":"branch0_seg0","2167":"branch0_seg0","2168":"branch0_seg0","2169":"branch0_seg0","2170":"branch0_seg0","2171":"branch0_seg0","2172":"branch0_seg0","2173":"branch0_seg0","2174":"branch0_seg0","2175":"branch0_seg0","2176":"branch0_seg0","2177":"branch0_seg0","2178":"branch0_seg0","2179":"branch0_seg0","2180":"branch0_seg0","2181":"branch0_seg0","2182":"branch0_seg0","2183":"branch0_seg0","2184":"branch0_seg0","2185":"branch0_seg0","2186":"branch0_seg0","2187":"branch0_seg0","2188":"branch0_seg0","2189":"branch0_seg0","2190":"branch0_seg0","2191":"branch0_seg0","2192":"branch0_seg0","2193":"branch0_seg0","2194":"branch0_seg0","2195":"branch0_seg0","2196":"branch0_seg0","2197":"branch0_seg0","2198":"branch0_seg0","2199":"branch0_seg0","2200":"branch0_seg0","2201":"branch0_seg0","2202":"branch0_seg0","2203":"branch0_seg0","2204":"branch0_seg0","2205":"branch0_seg0","2206":"branch0_seg0","2207":"branch0_seg0","2208":"branch0_seg0","2209":"branch0_seg0","2210":"branch0_seg0","2211":"branch0_seg0","2212":"branch0_seg0","2213":"branch0_seg0","2214":"branch0_seg0","2215":"branch0_seg0","2216":"branch0_seg0","2217":"branch0_seg0","2218":"branch0_seg0","2219":"branch0_seg0","2220":"branch0_seg0","2221":"branch0_seg0","2222":"branch0_seg0","2223":"branch0_seg0","2224":"branch0_seg0","2225":"branch0_seg0","2226":"branch0_seg0","2227":"branch0_seg0","2228":"branch0_seg0","2229":"branch0_seg0","2230":"branch0_seg0","2231":"branch0_seg0","2232":"branch0_seg0","2233":"branch0_seg0","2234":"branch0_seg0","2235":"branch0_seg0","2236":"branch0_seg0","2237":"branch0_seg0","2238":"branch0_seg0","2239":"branch0_seg0","2240":"branch0_seg0","2241":"branch0_seg0","2242":"branch0_seg0","2243":"branch0_seg0","2244":"branch0_seg0","2245":"branch0_seg0","2246":"branch0_seg0","2247":"branch0_seg0","2248":"branch0_seg0","2249":"branch0_seg0","2250":"branch0_seg0","2251":"branch0_seg0","2252":"branch0_seg0","2253":"branch0_seg0","2254":"branch0_seg0","2255":"branch0_seg0","2256":"branch0_seg0","2257":"branch0_seg0","2258":"branch0_seg0","2259":"branch0_seg0","2260":"branch0_seg0","2261":"branch0_seg0","2262":"branch0_seg0","2263":"branch0_seg0","2264":"branch0_seg0","2265":"branch0_seg0","2266":"branch0_seg0","2267":"branch0_seg0","2268":"branch0_seg0","2269":"branch0_seg0","2270":"branch0_seg0","2271":"branch0_seg0","2272":"branch0_seg0","2273":"branch0_seg0","2274":"branch0_seg0","2275":"branch0_seg0","2276":"branch0_seg0","2277":"branch0_seg0","2278":"branch0_seg0","2279":"branch0_seg0","2280":"branch0_seg0","2281":"branch0_seg0","2282":"branch0_seg0","2283":"branch0_seg0","2284":"branch0_seg0","2285":"branch0_seg0","2286":"branch0_seg0","2287":"branch0_seg0","2288":"branch0_seg0","2289":"branch0_seg0","2290":"branch0_seg0","2291":"branch0_seg0","2292":"branch0_seg0","2293":"branch0_seg0","2294":"branch0_seg0","2295":"branch0_seg0","2296":"branch0_seg0","2297":"branch0_seg0","2298":"branch0_seg0","2299":"branch0_seg0","2300":"branch0_seg0","2301":"branch0_seg0","2302":"branch0_seg0","2303":"branch0_seg0","2304":"branch0_seg0","2305":"branch0_seg0","2306":"branch0_seg0","2307":"branch0_seg0","2308":"branch0_seg0","2309":"branch0_seg0","2310":"branch0_seg0","2311":"branch0_seg0","2312":"branch0_seg0","2313":"branch0_seg0","2314":"branch0_seg0","2315":"branch0_seg0","2316":"branch0_seg0","2317":"branch0_seg0","2318":"branch0_seg0","2319":"branch0_seg0","2320":"branch0_seg0","2321":"branch0_seg0","2322":"branch0_seg0","2323":"branch0_seg0","2324":"branch0_seg0","2325":"branch0_seg0","2326":"branch0_seg0","2327":"branch0_seg0","2328":"branch0_seg0","2329":"branch0_seg0","2330":"branch0_seg0","2331":"branch0_seg0","2332":"branch0_seg0","2333":"branch0_seg0","2334":"branch0_seg0","2335":"branch0_seg0","2336":"branch0_seg0","2337":"branch0_seg0","2338":"branch0_seg0","2339":"branch0_seg0","2340":"branch0_seg0","2341":"branch0_seg0","2342":"branch0_seg0","2343":"branch0_seg0","2344":"branch0_seg0","2345":"branch0_seg0","2346":"branch0_seg0","2347":"branch0_seg0","2348":"branch0_seg0","2349":"branch0_seg0","2350":"branch0_seg0","2351":"branch0_seg0","2352":"branch0_seg0","2353":"branch0_seg0","2354":"branch0_seg0","2355":"branch0_seg0","2356":"branch0_seg0","2357":"branch0_seg0","2358":"branch0_seg0","2359":"branch0_seg0","2360":"branch0_seg0","2361":"branch0_seg0","2362":"branch0_seg0","2363":"branch0_seg0","2364":"branch0_seg0","2365":"branch0_seg0","2366":"branch0_seg0","2367":"branch0_seg0","2368":"branch0_seg0","2369":"branch0_seg0","2370":"branch0_seg0","2371":"branch0_seg0","2372":"branch0_seg0","2373":"branch0_seg0","2374":"branch0_seg0","2375":"branch0_seg0","2376":"branch0_seg0","2377":"branch0_seg0","2378":"branch0_seg0","2379":"branch0_seg0","2380":"branch0_seg0","2381":"branch0_seg0","2382":"branch0_seg0","2383":"branch0_seg0","2384":"branch0_seg0","2385":"branch0_seg0","2386":"branch0_seg0","2387":"branch0_seg0","2388":"branch0_seg0","2389":"branch0_seg0","2390":"branch0_seg0","2391":"branch0_seg0","2392":"branch0_seg0","2393":"branch0_seg0","2394":"branch0_seg0","2395":"branch0_seg0","2396":"branch0_seg0","2397":"branch0_seg0","2398":"branch0_seg0","2399":"branch0_seg0","2400":"branch0_seg0","2401":"branch0_seg0","2402":"branch0_seg0","2403":"branch0_seg0","2404":"branch0_seg0","2405":"branch0_seg0","2406":"branch0_seg0","2407":"branch0_seg0","2408":"branch0_seg0","2409":"branch0_seg0","2410":"branch0_seg0","2411":"branch0_seg0","2412":"branch0_seg0","2413":"branch0_seg0","2414":"branch0_seg0","2415":"branch0_seg0","2416":"branch0_seg0","2417":"branch0_seg0","2418":"branch0_seg0","2419":"branch0_seg0","2420":"branch0_seg0","2421":"branch0_seg0","2422":"branch0_seg0","2423":"branch0_seg0","2424":"branch0_seg0","2425":"branch0_seg0","2426":"branch0_seg0","2427":"branch0_seg0","2428":"branch0_seg0","2429":"branch0_seg0","2430":"branch0_seg0","2431":"branch0_seg0","2432":"branch0_seg0","2433":"branch0_seg0","2434":"branch0_seg0","2435":"branch0_seg0","2436":"branch0_seg0","2437":"branch0_seg0","2438":"branch0_seg0","2439":"branch0_seg0","2440":"branch0_seg0","2441":"branch0_seg0","2442":"branch0_seg0","2443":"branch0_seg0","2444":"branch0_seg0","2445":"branch0_seg0","2446":"branch0_seg0","2447":"branch0_seg0","2448":"branch0_seg0","2449":"branch0_seg0","2450":"branch0_seg0","2451":"branch0_seg0","2452":"branch0_seg0","2453":"branch0_seg0","2454":"branch0_seg0","2455":"branch0_seg0","2456":"branch0_seg0","2457":"branch0_seg0","2458":"branch0_seg0","2459":"branch0_seg0","2460":"branch0_seg0","2461":"branch0_seg0","2462":"branch0_seg0","2463":"branch0_seg0","2464":"branch0_seg0","2465":"branch0_seg0","2466":"branch0_seg0","2467":"branch0_seg0","2468":"branch0_seg0","2469":"branch0_seg0","2470":"branch0_seg0","2471":"branch0_seg0","2472":"branch0_seg0","2473":"branch0_seg0","2474":"branch0_seg0","2475":"branch0_seg0","2476":"branch0_seg0","2477":"branch0_seg0","2478":"branch0_seg0","2479":"branch0_seg0","2480":"branch0_seg0","2481":"branch0_seg0","2482":"branch0_seg0","2483":"branch0_seg0","2484":"branch0_seg0","2485":"branch0_seg0","2486":"branch0_seg0","2487":"branch0_seg0","2488":"branch0_seg0","2489":"branch0_seg0","2490":"branch0_seg0","2491":"branch0_seg0","2492":"branch0_seg0","2493":"branch0_seg0","2494":"branch0_seg0","2495":"branch0_seg0","2496":"branch0_seg0","2497":"branch0_seg0","2498":"branch0_seg0","2499":"branch0_seg0","2500":"branch0_seg0","2501":"branch0_seg0","2502":"branch0_seg0","2503":"branch0_seg0","2504":"branch0_seg0","2505":"branch0_seg0","2506":"branch0_seg0","2507":"branch0_seg0","2508":"branch0_seg0","2509":"branch0_seg0","2510":"branch0_seg0","2511":"branch0_seg0","2512":"branch0_seg0","2513":"branch0_seg0","2514":"branch0_seg0","2515":"branch0_seg0","2516":"branch0_seg0","2517":"branch0_seg0","2518":"branch0_seg0","2519":"branch0_seg0","2520":"branch0_seg0","2521":"branch0_seg0","2522":"branch0_seg0","2523":"branch0_seg0","2524":"branch0_seg0","2525":"branch0_seg0","2526":"branch0_seg0","2527":"branch0_seg0","2528":"branch0_seg0","2529":"branch0_seg0","2530":"branch0_seg0","2531":"branch0_seg0","2532":"branch0_seg0","2533":"branch0_seg0","2534":"branch0_seg0","2535":"branch0_seg0","2536":"branch0_seg0","2537":"branch0_seg0","2538":"branch0_seg0","2539":"branch0_seg0","2540":"branch0_seg0","2541":"branch0_seg0","2542":"branch0_seg0","2543":"branch0_seg0","2544":"branch0_seg0","2545":"branch0_seg0","2546":"branch0_seg0","2547":"branch0_seg0","2548":"branch0_seg0","2549":"branch0_seg0","2550":"branch0_seg0","2551":"branch0_seg0","2552":"branch0_seg0","2553":"branch0_seg0","2554":"branch0_seg0","2555":"branch0_seg0","2556":"branch0_seg0","2557":"branch0_seg0","2558":"branch0_seg0","2559":"branch0_seg0","2560":"branch0_seg0","2561":"branch0_seg0","2562":"branch0_seg0","2563":"branch0_seg0","2564":"branch0_seg0","2565":"branch0_seg0","2566":"branch0_seg0","2567":"branch0_seg0","2568":"branch0_seg0","2569":"branch0_seg0","2570":"branch0_seg0","2571":"branch0_seg0","2572":"branch0_seg0","2573":"branch0_seg0","2574":"branch0_seg0","2575":"branch0_seg0","2576":"branch0_seg0","2577":"branch0_seg0","2578":"branch0_seg0","2579":"branch0_seg0","2580":"branch0_seg0","2581":"branch0_seg0","2582":"branch0_seg0","2583":"branch0_seg0","2584":"branch0_seg0","2585":"branch0_seg0","2586":"branch0_seg0","2587":"branch0_seg0","2588":"branch0_seg0","2589":"branch0_seg0","2590":"branch0_seg0","2591":"branch0_seg0","2592":"branch0_seg0","2593":"branch0_seg0","2594":"branch0_seg0","2595":"branch0_seg0","2596":"branch0_seg0","2597":"branch0_seg0","2598":"branch0_seg0","2599":"branch0_seg0","2600":"branch0_seg0","2601":"branch0_seg0","2602":"branch0_seg0","2603":"branch0_seg0","2604":"branch0_seg0","2605":"branch0_seg0","2606":"branch0_seg0","2607":"branch0_seg0","2608":"branch0_seg0","2609":"branch0_seg0","2610":"branch0_seg0","2611":"branch0_seg0","2612":"branch0_seg0","2613":"branch0_seg0","2614":"branch0_seg0","2615":"branch0_seg0","2616":"branch0_seg0","2617":"branch0_seg0","2618":"branch0_seg0","2619":"branch0_seg0","2620":"branch0_seg0","2621":"branch0_seg0","2622":"branch0_seg0","2623":"branch0_seg0","2624":"branch0_seg0","2625":"branch0_seg0","2626":"branch0_seg0","2627":"branch0_seg0","2628":"branch0_seg0","2629":"branch0_seg0","2630":"branch0_seg0","2631":"branch0_seg0","2632":"branch0_seg0","2633":"branch0_seg0","2634":"branch0_seg0","2635":"branch0_seg0","2636":"branch0_seg0","2637":"branch0_seg0","2638":"branch0_seg0","2639":"branch0_seg0","2640":"branch0_seg0","2641":"branch0_seg0","2642":"branch0_seg0","2643":"branch0_seg0","2644":"branch0_seg0","2645":"branch0_seg0","2646":"branch0_seg0","2647":"branch0_seg0","2648":"branch0_seg0","2649":"branch0_seg0","2650":"branch0_seg0","2651":"branch0_seg0","2652":"branch0_seg0","2653":"branch0_seg0","2654":"branch0_seg0","2655":"branch0_seg0","2656":"branch0_seg0","2657":"branch0_seg0","2658":"branch0_seg0","2659":"branch0_seg0","2660":"branch0_seg0","2661":"branch0_seg0","2662":"branch0_seg0","2663":"branch0_seg0","2664":"branch0_seg0","2665":"branch0_seg0","2666":"branch0_seg0","2667":"branch0_seg0","2668":"branch0_seg0","2669":"branch0_seg0","2670":"branch0_seg0","2671":"branch0_seg0","2672":"branch0_seg0","2673":"branch0_seg0","2674":"branch0_seg0","2675":"branch0_seg0","2676":"branch0_seg0","2677":"branch0_seg0","2678":"branch0_seg0","2679":"branch0_seg0","2680":"branch0_seg0","2681":"branch0_seg0","2682":"branch0_seg0","2683":"branch0_seg0","2684":"branch0_seg0","2685":"branch0_seg0","2686":"branch0_seg0","2687":"branch0_seg0","2688":"branch0_seg0","2689":"branch0_seg0","2690":"branch0_seg0","2691":"branch0_seg0","2692":"branch0_seg0","2693":"branch0_seg0","2694":"branch0_seg0","2695":"branch0_seg0","2696":"branch0_seg0","2697":"branch0_seg0","2698":"branch0_seg0","2699":"branch0_seg0","2700":"branch0_seg0","2701":"branch0_seg0","2702":"branch0_seg0","2703":"branch0_seg0","2704":"branch0_seg0","2705":"branch0_seg0","2706":"branch0_seg0","2707":"branch0_seg0","2708":"branch0_seg0","2709":"branch0_seg0","2710":"branch0_seg0","2711":"branch0_seg0","2712":"branch0_seg0","2713":"branch0_seg0","2714":"branch0_seg0","2715":"branch0_seg0","2716":"branch0_seg0","2717":"branch0_seg0","2718":"branch0_seg0","2719":"branch0_seg0","2720":"branch0_seg0","2721":"branch0_seg0","2722":"branch0_seg0","2723":"branch0_seg0","2724":"branch0_seg0","2725":"branch0_seg0","2726":"branch0_seg0","2727":"branch0_seg0","2728":"branch0_seg0","2729":"branch0_seg0","2730":"branch0_seg0","2731":"branch0_seg0","2732":"branch0_seg0","2733":"branch0_seg0","2734":"branch0_seg0","2735":"branch0_seg0","2736":"branch0_seg0","2737":"branch0_seg0","2738":"branch0_seg0","2739":"branch0_seg0","2740":"branch0_seg0","2741":"branch0_seg0","2742":"branch0_seg0","2743":"branch0_seg0","2744":"branch0_seg0","2745":"branch0_seg0","2746":"branch0_seg0","2747":"branch0_seg0","2748":"branch0_seg0","2749":"branch0_seg0","2750":"branch0_seg0","2751":"branch0_seg0","2752":"branch0_seg0","2753":"branch0_seg0","2754":"branch0_seg0","2755":"branch0_seg0","2756":"branch0_seg0","2757":"branch0_seg0","2758":"branch0_seg0","2759":"branch0_seg0","2760":"branch0_seg0","2761":"branch0_seg0","2762":"branch0_seg0","2763":"branch0_seg0","2764":"branch0_seg0","2765":"branch0_seg0","2766":"branch0_seg0","2767":"branch0_seg0","2768":"branch0_seg0","2769":"branch0_seg0","2770":"branch0_seg0","2771":"branch0_seg0","2772":"branch0_seg0","2773":"branch0_seg0","2774":"branch0_seg0","2775":"branch0_seg0","2776":"branch0_seg0","2777":"branch0_seg0","2778":"branch0_seg0","2779":"branch0_seg0","2780":"branch0_seg0","2781":"branch0_seg0","2782":"branch0_seg0","2783":"branch0_seg0","2784":"branch0_seg0","2785":"branch0_seg0","2786":"branch0_seg0","2787":"branch0_seg0","2788":"branch0_seg0","2789":"branch0_seg0","2790":"branch0_seg0","2791":"branch0_seg0","2792":"branch0_seg0","2793":"branch0_seg0","2794":"branch0_seg0","2795":"branch0_seg0","2796":"branch0_seg0","2797":"branch0_seg0","2798":"branch0_seg0","2799":"branch0_seg0","2800":"branch0_seg0","2801":"branch0_seg0","2802":"branch0_seg0","2803":"branch0_seg0","2804":"branch0_seg0","2805":"branch0_seg0","2806":"branch0_seg0","2807":"branch0_seg0","2808":"branch0_seg0","2809":"branch0_seg0","2810":"branch0_seg0","2811":"branch0_seg0","2812":"branch0_seg0","2813":"branch0_seg0","2814":"branch0_seg0","2815":"branch0_seg0","2816":"branch0_seg0","2817":"branch0_seg0","2818":"branch0_seg0","2819":"branch0_seg0","2820":"branch0_seg0","2821":"branch0_seg0","2822":"branch0_seg0","2823":"branch0_seg0","2824":"branch0_seg0","2825":"branch0_seg0","2826":"branch0_seg0","2827":"branch0_seg0","2828":"branch0_seg0","2829":"branch0_seg0","2830":"branch0_seg0","2831":"branch0_seg0","2832":"branch0_seg0","2833":"branch0_seg0","2834":"branch0_seg0","2835":"branch0_seg0","2836":"branch0_seg0","2837":"branch0_seg0","2838":"branch0_seg0","2839":"branch0_seg0","2840":"branch0_seg0","2841":"branch0_seg0","2842":"branch0_seg0","2843":"branch0_seg0","2844":"branch0_seg0","2845":"branch0_seg0","2846":"branch0_seg0","2847":"branch0_seg0","2848":"branch0_seg0","2849":"branch0_seg0","2850":"branch0_seg0","2851":"branch0_seg0","2852":"branch0_seg0","2853":"branch0_seg0","2854":"branch0_seg0","2855":"branch0_seg0","2856":"branch0_seg0","2857":"branch0_seg0","2858":"branch0_seg0","2859":"branch0_seg0","2860":"branch0_seg0","2861":"branch0_seg0","2862":"branch0_seg0","2863":"branch0_seg0","2864":"branch0_seg0","2865":"branch0_seg0","2866":"branch0_seg0","2867":"branch0_seg0","2868":"branch0_seg0","2869":"branch0_seg0","2870":"branch0_seg0","2871":"branch0_seg0","2872":"branch0_seg0","2873":"branch0_seg0","2874":"branch0_seg0","2875":"branch0_seg0","2876":"branch0_seg0","2877":"branch0_seg0","2878":"branch0_seg0","2879":"branch0_seg0","2880":"branch0_seg0","2881":"branch0_seg0","2882":"branch0_seg0","2883":"branch0_seg0","2884":"branch0_seg0","2885":"branch0_seg0","2886":"branch0_seg0","2887":"branch0_seg0","2888":"branch0_seg0","2889":"branch0_seg0","2890":"branch0_seg0","2891":"branch0_seg0","2892":"branch0_seg0","2893":"branch0_seg0","2894":"branch0_seg0","2895":"branch0_seg0","2896":"branch0_seg0","2897":"branch0_seg0","2898":"branch0_seg0","2899":"branch0_seg0","2900":"branch0_seg0","2901":"branch0_seg0","2902":"branch0_seg0","2903":"branch0_seg0","2904":"branch0_seg0","2905":"branch0_seg0","2906":"branch0_seg0","2907":"branch0_seg0","2908":"branch0_seg0","2909":"branch0_seg0","2910":"branch0_seg0","2911":"branch0_seg0","2912":"branch0_seg0","2913":"branch0_seg0","2914":"branch0_seg0","2915":"branch0_seg0","2916":"branch0_seg0","2917":"branch0_seg0","2918":"branch0_seg0","2919":"branch0_seg0","2920":"branch0_seg0","2921":"branch0_seg0","2922":"branch0_seg0","2923":"branch0_seg0","2924":"branch0_seg0","2925":"branch0_seg0","2926":"branch0_seg0","2927":"branch0_seg0","2928":"branch0_seg0","2929":"branch0_seg0","2930":"branch0_seg0","2931":"branch0_seg0","2932":"branch0_seg0","2933":"branch0_seg0","2934":"branch0_seg0","2935":"branch0_seg0","2936":"branch0_seg0","2937":"branch0_seg0","2938":"branch0_seg0","2939":"branch0_seg0","2940":"branch0_seg0","2941":"branch0_seg0","2942":"branch0_seg0","2943":"branch0_seg0","2944":"branch0_seg0","2945":"branch0_seg0","2946":"branch0_seg0","2947":"branch0_seg0","2948":"branch0_seg0","2949":"branch0_seg0","2950":"branch0_seg0","2951":"branch0_seg0","2952":"branch0_seg0","2953":"branch0_seg0","2954":"branch0_seg0","2955":"branch0_seg0","2956":"branch0_seg0","2957":"branch0_seg0","2958":"branch0_seg0","2959":"branch0_seg0","2960":"branch0_seg0","2961":"branch0_seg0","2962":"branch0_seg0","2963":"branch0_seg0","2964":"branch0_seg0","2965":"branch0_seg0","2966":"branch0_seg0","2967":"branch0_seg0","2968":"branch0_seg0","2969":"branch0_seg0","2970":"branch0_seg0","2971":"branch0_seg0","2972":"branch0_seg0","2973":"branch0_seg0","2974":"branch0_seg0","2975":"branch0_seg0","2976":"branch0_seg0","2977":"branch0_seg0","2978":"branch0_seg0","2979":"branch0_seg0","2980":"branch0_seg0","2981":"branch0_seg0","2982":"branch0_seg0","2983":"branch0_seg0","2984":"branch0_seg0","2985":"branch0_seg0","2986":"branch0_seg0","2987":"branch0_seg0","2988":"branch0_seg0","2989":"branch0_seg0","2990":"branch0_seg0","2991":"branch0_seg0","2992":"branch0_seg0","2993":"branch0_seg0","2994":"branch0_seg0","2995":"branch0_seg0","2996":"branch0_seg0","2997":"branch0_seg0","2998":"branch0_seg0","2999":"branch0_seg0","3000":"branch0_seg0","3001":"branch0_seg0","3002":"branch0_seg0","3003":"branch0_seg0","3004":"branch0_seg0","3005":"branch0_seg0","3006":"branch0_seg0","3007":"branch0_seg0","3008":"branch0_seg0","3009":"branch0_seg0","3010":"branch0_seg0","3011":"branch0_seg0","3012":"branch0_seg0","3013":"branch0_seg0","3014":"branch0_seg0","3015":"branch0_seg0","3016":"branch0_seg0","3017":"branch0_seg0","3018":"branch0_seg0","3019":"branch0_seg0","3020":"branch0_seg0","3021":"branch0_seg0","3022":"branch0_seg0","3023":"branch0_seg0","3024":"branch0_seg0","3025":"branch0_seg0","3026":"branch0_seg0","3027":"branch0_seg0","3028":"branch0_seg0","3029":"branch0_seg0","3030":"branch0_seg0","3031":"branch0_seg0","3032":"branch0_seg0","3033":"branch0_seg0","3034":"branch0_seg0","3035":"branch0_seg0","3036":"branch0_seg0","3037":"branch0_seg0","3038":"branch0_seg0","3039":"branch0_seg0","3040":"branch0_seg0","3041":"branch0_seg0","3042":"branch0_seg0","3043":"branch0_seg0","3044":"branch0_seg0","3045":"branch0_seg0","3046":"branch0_seg0","3047":"branch0_seg0","3048":"branch0_seg0","3049":"branch0_seg0","3050":"branch0_seg0","3051":"branch0_seg0","3052":"branch0_seg0","3053":"branch0_seg0","3054":"branch0_seg0","3055":"branch0_seg0","3056":"branch0_seg0","3057":"branch0_seg0","3058":"branch0_seg0","3059":"branch0_seg0","3060":"branch0_seg0","3061":"branch0_seg0","3062":"branch0_seg0","3063":"branch0_seg0","3064":"branch0_seg0","3065":"branch0_seg0","3066":"branch0_seg0","3067":"branch0_seg0","3068":"branch0_seg0","3069":"branch0_seg0","3070":"branch0_seg0","3071":"branch0_seg0","3072":"branch0_seg0","3073":"branch0_seg0","3074":"branch0_seg0","3075":"branch0_seg0","3076":"branch0_seg0","3077":"branch0_seg0","3078":"branch0_seg0","3079":"branch0_seg0","3080":"branch0_seg0","3081":"branch0_seg0","3082":"branch0_seg0","3083":"branch0_seg0","3084":"branch0_seg0","3085":"branch0_seg0","3086":"branch0_seg0","3087":"branch0_seg0","3088":"branch0_seg0","3089":"branch0_seg0","3090":"branch0_seg0","3091":"branch0_seg0","3092":"branch0_seg0","3093":"branch0_seg0","3094":"branch0_seg0","3095":"branch0_seg0","3096":"branch0_seg0","3097":"branch0_seg0","3098":"branch0_seg0","3099":"branch0_seg0","3100":"branch0_seg0","3101":"branch0_seg0","3102":"branch0_seg0","3103":"branch0_seg0","3104":"branch0_seg0","3105":"branch0_seg0","3106":"branch0_seg0","3107":"branch0_seg0","3108":"branch0_seg0","3109":"branch0_seg0","3110":"branch0_seg0","3111":"branch0_seg0","3112":"branch0_seg0","3113":"branch0_seg0","3114":"branch0_seg0","3115":"branch0_seg0","3116":"branch0_seg0","3117":"branch0_seg0","3118":"branch0_seg0","3119":"branch0_seg0","3120":"branch0_seg0","3121":"branch0_seg0","3122":"branch0_seg0","3123":"branch0_seg0","3124":"branch0_seg0","3125":"branch0_seg0","3126":"branch0_seg0","3127":"branch0_seg0","3128":"branch0_seg0","3129":"branch0_seg0","3130":"branch0_seg0","3131":"branch0_seg0","3132":"branch0_seg0","3133":"branch0_seg0","3134":"branch0_seg0","3135":"branch0_seg0","3136":"branch0_seg0","3137":"branch0_seg0","3138":"branch0_seg0","3139":"branch0_seg0","3140":"branch0_seg0","3141":"branch0_seg0","3142":"branch0_seg0","3143":"branch0_seg0","3144":"branch0_seg0","3145":"branch0_seg0","3146":"branch0_seg0","3147":"branch0_seg0","3148":"branch0_seg0","3149":"branch0_seg0","3150":"branch0_seg0","3151":"branch0_seg0","3152":"branch0_seg0","3153":"branch0_seg0","3154":"branch0_seg0","3155":"branch0_seg0","3156":"branch0_seg0","3157":"branch0_seg0","3158":"branch0_seg0","3159":"branch0_seg0","3160":"branch0_seg0","3161":"branch0_seg0","3162":"branch0_seg0","3163":"branch0_seg0","3164":"branch0_seg0","3165":"branch0_seg0","3166":"branch0_seg0","3167":"branch0_seg0","3168":"branch0_seg0","3169":"branch0_seg0","3170":"branch0_seg0","3171":"branch0_seg0","3172":"branch0_seg0","3173":"branch0_seg0","3174":"branch0_seg0","3175":"branch0_seg0","3176":"branch0_seg0","3177":"branch0_seg0","3178":"branch0_seg0","3179":"branch0_seg0","3180":"branch0_seg0","3181":"branch0_seg0","3182":"branch0_seg0","3183":"branch0_seg0","3184":"branch0_seg0","3185":"branch0_seg0","3186":"branch0_seg0","3187":"branch0_seg0","3188":"branch0_seg0","3189":"branch0_seg0","3190":"branch0_seg0","3191":"branch0_seg0","3192":"branch0_seg0","3193":"branch0_seg0","3194":"branch0_seg0","3195":"branch0_seg0","3196":"branch0_seg0","3197":"branch0_seg0","3198":"branch0_seg0","3199":"branch0_seg0","3200":"branch0_seg0","3201":"branch0_seg0","3202":"branch0_seg0","3203":"branch0_seg0","3204":"branch0_seg0","3205":"branch0_seg0","3206":"branch0_seg0","3207":"branch0_seg0","3208":"branch0_seg0","3209":"branch0_seg0","3210":"branch0_seg0","3211":"branch0_seg0","3212":"branch0_seg0","3213":"branch0_seg0","3214":"branch0_seg0","3215":"branch0_seg0","3216":"branch0_seg0","3217":"branch0_seg0","3218":"branch0_seg0","3219":"branch0_seg0","3220":"branch0_seg0","3221":"branch0_seg0","3222":"branch0_seg0","3223":"branch0_seg0","3224":"branch0_seg0","3225":"branch0_seg0","3226":"branch0_seg0","3227":"branch0_seg0","3228":"branch0_seg0","3229":"branch0_seg0","3230":"branch0_seg0","3231":"branch0_seg0","3232":"branch0_seg0","3233":"branch0_seg0","3234":"branch0_seg0","3235":"branch0_seg0","3236":"branch0_seg0","3237":"branch0_seg0","3238":"branch0_seg0","3239":"branch0_seg0","3240":"branch0_seg0","3241":"branch0_seg0","3242":"branch0_seg0","3243":"branch0_seg0","3244":"branch0_seg0","3245":"branch0_seg0","3246":"branch0_seg0","3247":"branch0_seg0","3248":"branch0_seg0","3249":"branch0_seg0","3250":"branch0_seg0","3251":"branch0_seg0","3252":"branch0_seg0","3253":"branch0_seg0","3254":"branch0_seg0","3255":"branch0_seg0","3256":"branch0_seg0","3257":"branch0_seg0","3258":"branch0_seg0","3259":"branch0_seg0","3260":"branch0_seg0","3261":"branch0_seg0","3262":"branch0_seg0","3263":"branch0_seg0","3264":"branch0_seg0","3265":"branch0_seg0","3266":"branch0_seg0","3267":"branch0_seg0","3268":"branch0_seg0","3269":"branch0_seg0","3270":"branch0_seg0","3271":"branch0_seg0","3272":"branch0_seg0","3273":"branch0_seg0","3274":"branch0_seg0","3275":"branch0_seg0","3276":"branch0_seg0","3277":"branch0_seg0","3278":"branch0_seg0","3279":"branch0_seg0","3280":"branch0_seg0","3281":"branch0_seg0","3282":"branch0_seg0","3283":"branch0_seg0","3284":"branch0_seg0","3285":"branch0_seg0","3286":"branch0_seg0","3287":"branch0_seg0","3288":"branch0_seg0","3289":"branch0_seg0","3290":"branch0_seg0","3291":"branch0_seg0","3292":"branch0_seg0","3293":"branch0_seg0","3294":"branch0_seg0","3295":"branch0_seg0","3296":"branch0_seg0","3297":"branch0_seg0","3298":"branch0_seg0","3299":"branch0_seg0","3300":"branch0_seg0","3301":"branch0_seg0","3302":"branch0_seg0","3303":"branch0_seg0","3304":"branch0_seg0","3305":"branch0_seg0","3306":"branch0_seg0","3307":"branch0_seg0","3308":"branch0_seg0","3309":"branch0_seg0","3310":"branch0_seg0","3311":"branch0_seg0","3312":"branch0_seg0","3313":"branch0_seg0","3314":"branch0_seg0","3315":"branch0_seg0","3316":"branch0_seg0","3317":"branch0_seg0","3318":"branch0_seg0","3319":"branch0_seg0","3320":"branch0_seg0","3321":"branch0_seg0","3322":"branch0_seg0","3323":"branch0_seg0","3324":"branch0_seg0","3325":"branch0_seg0","3326":"branch0_seg0","3327":"branch0_seg0","3328":"branch0_seg0","3329":"branch0_seg0","3330":"branch0_seg0","3331":"branch0_seg0","3332":"branch0_seg0","3333":"branch0_seg0","3334":"branch0_seg0","3335":"branch0_seg0","3336":"branch0_seg0","3337":"branch0_seg0","3338":"branch0_seg0","3339":"branch0_seg0","3340":"branch0_seg0","3341":"branch0_seg0","3342":"branch0_seg0","3343":"branch0_seg0","3344":"branch0_seg0","3345":"branch0_seg0","3346":"branch0_seg0","3347":"branch0_seg0","3348":"branch0_seg0","3349":"branch0_seg0","3350":"branch0_seg0","3351":"branch0_seg0","3352":"branch0_seg0","3353":"branch0_seg0","3354":"branch0_seg0","3355":"branch0_seg0","3356":"branch0_seg0","3357":"branch0_seg0","3358":"branch0_seg0","3359":"branch0_seg0","3360":"branch0_seg0","3361":"branch0_seg0","3362":"branch0_seg0","3363":"branch0_seg0","3364":"branch0_seg0","3365":"branch0_seg0","3366":"branch0_seg0","3367":"branch0_seg0","3368":"branch0_seg0","3369":"branch0_seg0","3370":"branch0_seg0","3371":"branch0_seg0","3372":"branch0_seg0","3373":"branch0_seg0","3374":"branch0_seg0","3375":"branch0_seg0","3376":"branch0_seg0","3377":"branch0_seg0","3378":"branch0_seg0","3379":"branch0_seg0","3380":"branch0_seg0","3381":"branch0_seg0","3382":"branch0_seg0","3383":"branch0_seg0","3384":"branch0_seg0","3385":"branch0_seg0","3386":"branch0_seg0","3387":"branch0_seg0","3388":"branch0_seg0","3389":"branch0_seg0","3390":"branch0_seg0","3391":"branch0_seg0","3392":"branch0_seg0","3393":"branch0_seg0","3394":"branch0_seg0","3395":"branch0_seg0","3396":"branch0_seg0","3397":"branch0_seg0","3398":"branch0_seg0","3399":"branch0_seg0","3400":"branch0_seg0","3401":"branch0_seg0","3402":"branch0_seg0","3403":"branch0_seg0","3404":"branch0_seg0","3405":"branch0_seg0","3406":"branch0_seg0","3407":"branch0_seg0","3408":"branch0_seg0","3409":"branch0_seg0","3410":"branch0_seg0","3411":"branch0_seg0","3412":"branch0_seg0","3413":"branch0_seg0","3414":"branch0_seg0","3415":"branch0_seg0","3416":"branch0_seg0","3417":"branch0_seg0","3418":"branch0_seg0","3419":"branch0_seg0","3420":"branch0_seg0","3421":"branch0_seg0","3422":"branch0_seg0","3423":"branch0_seg0","3424":"branch0_seg0","3425":"branch0_seg0","3426":"branch0_seg0","3427":"branch0_seg0","3428":"branch0_seg0","3429":"branch0_seg0","3430":"branch0_seg0","3431":"branch0_seg0","3432":"branch0_seg0","3433":"branch0_seg0","3434":"branch0_seg0","3435":"branch0_seg0","3436":"branch0_seg0","3437":"branch0_seg0","3438":"branch0_seg0","3439":"branch0_seg0","3440":"branch0_seg0","3441":"branch0_seg0","3442":"branch0_seg0","3443":"branch0_seg0","3444":"branch0_seg0","3445":"branch0_seg0","3446":"branch0_seg0","3447":"branch0_seg0","3448":"branch0_seg0","3449":"branch0_seg0","3450":"branch0_seg0","3451":"branch0_seg0","3452":"branch0_seg0","3453":"branch0_seg0","3454":"branch0_seg0","3455":"branch0_seg0","3456":"branch0_seg0","3457":"branch0_seg0","3458":"branch0_seg0","3459":"branch0_seg0","3460":"branch0_seg0","3461":"branch0_seg0","3462":"branch0_seg0","3463":"branch0_seg0","3464":"branch0_seg0","3465":"branch0_seg0","3466":"branch0_seg0","3467":"branch0_seg0","3468":"branch0_seg0","3469":"branch0_seg0","3470":"branch0_seg0","3471":"branch0_seg0","3472":"branch0_seg0","3473":"branch0_seg0","3474":"branch0_seg0","3475":"branch0_seg0","3476":"branch0_seg0","3477":"branch0_seg0","3478":"branch0_seg0","3479":"branch0_seg0","3480":"branch0_seg0","3481":"branch0_seg0","3482":"branch0_seg0","3483":"branch0_seg0","3484":"branch0_seg0","3485":"branch0_seg0","3486":"branch0_seg0","3487":"branch0_seg0","3488":"branch0_seg0","3489":"branch0_seg0","3490":"branch0_seg0","3491":"branch0_seg0","3492":"branch0_seg0","3493":"branch0_seg0","3494":"branch0_seg0","3495":"branch0_seg0","3496":"branch0_seg0","3497":"branch0_seg0","3498":"branch0_seg0","3499":"branch0_seg0","3500":"branch0_seg0","3501":"branch0_seg0","3502":"branch0_seg0","3503":"branch0_seg0","3504":"branch0_seg0","3505":"branch0_seg0","3506":"branch0_seg0","3507":"branch0_seg0","3508":"branch0_seg0","3509":"branch0_seg0","3510":"branch0_seg0","3511":"branch0_seg0","3512":"branch0_seg0","3513":"branch0_seg0","3514":"branch0_seg0","3515":"branch0_seg0","3516":"branch0_seg0","3517":"branch0_seg0","3518":"branch0_seg0","3519":"branch0_seg0","3520":"branch0_seg0","3521":"branch0_seg0","3522":"branch0_seg0","3523":"branch0_seg0","3524":"branch0_seg0","3525":"branch0_seg0","3526":"branch0_seg0","3527":"branch0_seg0","3528":"branch0_seg0","3529":"branch0_seg0","3530":"branch0_seg0","3531":"branch0_seg0","3532":"branch0_seg0","3533":"branch0_seg0","3534":"branch0_seg0","3535":"branch0_seg0","3536":"branch0_seg0","3537":"branch0_seg0","3538":"branch0_seg0","3539":"branch0_seg0","3540":"branch0_seg0","3541":"branch0_seg0","3542":"branch0_seg0","3543":"branch0_seg0","3544":"branch0_seg0","3545":"branch0_seg0","3546":"branch0_seg0","3547":"branch0_seg0","3548":"branch0_seg0","3549":"branch0_seg0","3550":"branch0_seg0","3551":"branch0_seg0","3552":"branch0_seg0","3553":"branch0_seg0","3554":"branch0_seg0","3555":"branch0_seg0","3556":"branch0_seg0","3557":"branch0_seg0","3558":"branch0_seg0","3559":"branch0_seg0","3560":"branch0_seg0","3561":"branch0_seg0","3562":"branch0_seg0","3563":"branch0_seg0","3564":"branch0_seg0","3565":"branch0_seg0","3566":"branch0_seg0","3567":"branch0_seg0","3568":"branch0_seg0","3569":"branch0_seg0","3570":"branch0_seg0","3571":"branch0_seg0","3572":"branch0_seg0","3573":"branch0_seg0","3574":"branch0_seg0","3575":"branch0_seg0","3576":"branch0_seg0","3577":"branch0_seg0","3578":"branch0_seg0","3579":"branch0_seg0","3580":"branch0_seg0","3581":"branch0_seg0","3582":"branch0_seg0","3583":"branch0_seg0","3584":"branch0_seg0","3585":"branch0_seg0","3586":"branch0_seg0","3587":"branch0_seg0","3588":"branch0_seg0","3589":"branch0_seg0","3590":"branch0_seg0","3591":"branch0_seg0","3592":"branch0_seg0","3593":"branch0_seg0","3594":"branch0_seg0","3595":"branch0_seg0","3596":"branch0_seg0","3597":"branch0_seg0","3598":"branch0_seg0","3599":"branch0_seg0","3600":"branch0_seg0","3601":"branch0_seg0","3602":"branch0_seg0","3603":"branch0_seg0","3604":"branch0_seg0","3605":"branch0_seg0","3606":"branch0_seg0","3607":"branch0_seg0","3608":"branch0_seg0","3609":"branch0_seg0","3610":"branch0_seg0","3611":"branch0_seg0","3612":"branch0_seg0","3613":"branch0_seg0","3614":"branch0_seg0","3615":"branch0_seg0","3616":"branch0_seg0","3617":"branch0_seg0","3618":"branch0_seg0","3619":"branch0_seg0","3620":"branch0_seg0","3621":"branch0_seg0","3622":"branch0_seg0","3623":"branch0_seg0","3624":"branch0_seg0","3625":"branch0_seg0","3626":"branch0_seg0","3627":"branch0_seg0","3628":"branch0_seg0","3629":"branch0_seg0","3630":"branch0_seg0","3631":"branch0_seg0","3632":"branch0_seg0","3633":"branch0_seg0","3634":"branch0_seg0","3635":"branch0_seg0","3636":"branch0_seg0","3637":"branch0_seg0","3638":"branch0_seg0","3639":"branch0_seg0","3640":"branch0_seg0","3641":"branch0_seg0","3642":"branch0_seg0","3643":"branch0_seg0","3644":"branch0_seg0","3645":"branch0_seg0","3646":"branch0_seg0","3647":"branch0_seg0","3648":"branch0_seg0","3649":"branch0_seg0","3650":"branch0_seg0","3651":"branch0_seg0","3652":"branch0_seg0","3653":"branch0_seg0","3654":"branch0_seg0","3655":"branch0_seg0","3656":"branch0_seg0","3657":"branch0_seg0","3658":"branch0_seg0","3659":"branch0_seg0","3660":"branch0_seg0","3661":"branch0_seg0","3662":"branch0_seg0","3663":"branch0_seg0","3664":"branch0_seg0","3665":"branch0_seg0","3666":"branch0_seg0","3667":"branch0_seg0","3668":"branch0_seg0","3669":"branch0_seg0","3670":"branch0_seg0","3671":"branch0_seg0","3672":"branch0_seg0","3673":"branch0_seg0","3674":"branch0_seg0","3675":"branch0_seg0","3676":"branch0_seg0","3677":"branch0_seg0","3678":"branch0_seg0","3679":"branch0_seg0","3680":"branch0_seg0","3681":"branch0_seg0","3682":"branch0_seg0","3683":"branch0_seg0","3684":"branch0_seg0","3685":"branch0_seg0","3686":"branch0_seg0","3687":"branch0_seg0","3688":"branch0_seg0","3689":"branch0_seg0","3690":"branch0_seg0","3691":"branch0_seg0","3692":"branch0_seg0","3693":"branch0_seg0","3694":"branch0_seg0","3695":"branch0_seg0","3696":"branch0_seg0","3697":"branch0_seg0","3698":"branch0_seg0","3699":"branch0_seg0","3700":"branch0_seg0","3701":"branch0_seg0","3702":"branch0_seg0","3703":"branch0_seg0","3704":"branch0_seg0","3705":"branch0_seg0","3706":"branch0_seg0","3707":"branch0_seg0","3708":"branch0_seg0","3709":"branch0_seg0","3710":"branch0_seg0","3711":"branch0_seg0","3712":"branch0_seg0","3713":"branch0_seg0","3714":"branch0_seg0","3715":"branch0_seg0","3716":"branch0_seg0","3717":"branch0_seg0","3718":"branch0_seg0","3719":"branch0_seg0","3720":"branch0_seg0","3721":"branch0_seg0","3722":"branch0_seg0","3723":"branch0_seg0","3724":"branch0_seg0","3725":"branch0_seg0","3726":"branch0_seg0","3727":"branch0_seg0","3728":"branch0_seg0","3729":"branch0_seg0","3730":"branch0_seg0","3731":"branch0_seg0","3732":"branch0_seg0","3733":"branch0_seg0","3734":"branch0_seg0","3735":"branch0_seg0","3736":"branch0_seg0","3737":"branch0_seg0","3738":"branch0_seg0","3739":"branch0_seg0","3740":"branch0_seg0","3741":"branch0_seg0","3742":"branch0_seg0","3743":"branch0_seg0","3744":"branch0_seg0","3745":"branch0_seg0","3746":"branch0_seg0","3747":"branch0_seg0","3748":"branch0_seg0","3749":"branch0_seg0","3750":"branch0_seg0","3751":"branch0_seg0","3752":"branch0_seg0","3753":"branch0_seg0","3754":"branch0_seg0","3755":"branch0_seg0","3756":"branch0_seg0","3757":"branch0_seg0","3758":"branch0_seg0","3759":"branch0_seg0","3760":"branch0_seg0","3761":"branch0_seg0","3762":"branch0_seg0","3763":"branch0_seg0","3764":"branch0_seg0","3765":"branch0_seg0","3766":"branch0_seg0","3767":"branch0_seg0","3768":"branch0_seg0","3769":"branch0_seg0","3770":"branch0_seg0","3771":"branch0_seg0","3772":"branch0_seg0","3773":"branch0_seg0","3774":"branch0_seg0","3775":"branch0_seg0","3776":"branch0_seg0","3777":"branch0_seg0","3778":"branch0_seg0","3779":"branch0_seg0","3780":"branch0_seg0","3781":"branch0_seg0","3782":"branch0_seg0","3783":"branch0_seg0","3784":"branch0_seg0","3785":"branch0_seg0","3786":"branch0_seg0","3787":"branch0_seg0","3788":"branch0_seg0","3789":"branch0_seg0","3790":"branch0_seg0","3791":"branch0_seg0","3792":"branch0_seg0","3793":"branch0_seg0","3794":"branch0_seg0","3795":"branch0_seg0","3796":"branch0_seg0","3797":"branch0_seg0","3798":"branch0_seg0","3799":"branch0_seg0","3800":"branch0_seg0","3801":"branch0_seg0","3802":"branch0_seg0","3803":"branch0_seg0","3804":"branch0_seg0","3805":"branch0_seg0","3806":"branch0_seg0","3807":"branch0_seg0","3808":"branch0_seg0","3809":"branch0_seg0","3810":"branch0_seg0","3811":"branch0_seg0","3812":"branch0_seg0","3813":"branch0_seg0","3814":"branch0_seg0","3815":"branch0_seg0","3816":"branch0_seg0","3817":"branch0_seg0","3818":"branch0_seg0","3819":"branch0_seg0","3820":"branch0_seg0","3821":"branch0_seg0","3822":"branch0_seg0","3823":"branch0_seg0","3824":"branch0_seg0","3825":"branch0_seg0","3826":"branch0_seg0","3827":"branch0_seg0","3828":"branch0_seg0","3829":"branch0_seg0","3830":"branch0_seg0","3831":"branch0_seg0","3832":"branch0_seg0","3833":"branch0_seg0","3834":"branch0_seg0","3835":"branch0_seg0","3836":"branch0_seg0","3837":"branch0_seg0","3838":"branch0_seg0","3839":"branch0_seg0","3840":"branch0_seg0","3841":"branch0_seg0","3842":"branch0_seg0","3843":"branch0_seg0","3844":"branch0_seg0","3845":"branch0_seg0","3846":"branch0_seg0","3847":"branch0_seg0","3848":"branch0_seg0","3849":"branch0_seg0","3850":"branch0_seg0","3851":"branch0_seg0","3852":"branch0_seg0","3853":"branch0_seg0","3854":"branch0_seg0","3855":"branch0_seg0","3856":"branch0_seg0","3857":"branch0_seg0","3858":"branch0_seg0","3859":"branch0_seg0","3860":"branch0_seg0","3861":"branch0_seg0","3862":"branch0_seg0","3863":"branch0_seg0","3864":"branch0_seg0","3865":"branch0_seg0","3866":"branch0_seg0","3867":"branch0_seg0","3868":"branch0_seg0","3869":"branch0_seg0","3870":"branch0_seg0","3871":"branch0_seg0","3872":"branch0_seg0","3873":"branch0_seg0","3874":"branch0_seg0","3875":"branch0_seg0","3876":"branch0_seg0","3877":"branch0_seg0","3878":"branch0_seg0","3879":"branch0_seg0","3880":"branch0_seg0","3881":"branch0_seg0","3882":"branch0_seg0","3883":"branch0_seg0","3884":"branch0_seg0","3885":"branch0_seg0","3886":"branch0_seg0","3887":"branch0_seg0","3888":"branch0_seg0","3889":"branch0_seg0","3890":"branch0_seg0","3891":"branch0_seg0","3892":"branch0_seg0","3893":"branch0_seg0","3894":"branch0_seg0","3895":"branch0_seg0","3896":"branch0_seg0","3897":"branch0_seg0","3898":"branch0_seg0","3899":"branch0_seg0","3900":"branch0_seg0","3901":"branch0_seg0","3902":"branch0_seg0","3903":"branch0_seg0","3904":"branch0_seg0","3905":"branch0_seg0","3906":"branch0_seg0","3907":"branch0_seg0","3908":"branch0_seg0","3909":"branch0_seg0","3910":"branch0_seg0","3911":"branch0_seg0","3912":"branch0_seg0","3913":"branch0_seg0","3914":"branch0_seg0","3915":"branch0_seg0","3916":"branch0_seg0","3917":"branch0_seg0","3918":"branch0_seg0","3919":"branch0_seg0","3920":"branch0_seg0","3921":"branch0_seg0","3922":"branch0_seg0","3923":"branch0_seg0","3924":"branch0_seg0","3925":"branch0_seg0","3926":"branch0_seg0","3927":"branch0_seg0","3928":"branch0_seg0","3929":"branch0_seg0","3930":"branch0_seg0","3931":"branch0_seg0","3932":"branch0_seg0","3933":"branch0_seg0","3934":"branch0_seg0","3935":"branch0_seg0","3936":"branch0_seg0","3937":"branch0_seg0","3938":"branch0_seg0","3939":"branch0_seg0","3940":"branch0_seg0","3941":"branch0_seg0","3942":"branch0_seg0","3943":"branch0_seg0","3944":"branch0_seg0","3945":"branch0_seg0","3946":"branch0_seg0","3947":"branch0_seg0","3948":"branch0_seg0","3949":"branch0_seg0","3950":"branch0_seg0","3951":"branch0_seg0","3952":"branch0_seg0","3953":"branch0_seg0","3954":"branch0_seg0","3955":"branch0_seg0","3956":"branch0_seg0","3957":"branch0_seg0","3958":"branch0_seg0","3959":"branch0_seg0","3960":"branch0_seg0","3961":"branch0_seg0","3962":"branch0_seg0","3963":"branch0_seg0","3964":"branch0_seg0","3965":"branch0_seg0","3966":"branch0_seg0","3967":"branch0_seg0","3968":"branch0_seg0","3969":"branch0_seg0","3970":"branch0_seg0","3971":"branch0_seg0","3972":"branch0_seg0","3973":"branch0_seg0","3974":"branch0_seg0","3975":"branch0_seg0","3976":"branch0_seg0","3977":"branch0_seg0","3978":"branch0_seg0","3979":"branch0_seg0","3980":"branch0_seg0","3981":"branch0_seg0","3982":"branch0_seg0","3983":"branch0_seg0","3984":"branch0_seg0","3985":"branch0_seg0","3986":"branch0_seg0","3987":"branch0_seg0","3988":"branch0_seg0","3989":"branch0_seg0","3990":"branch0_seg0","3991":"branch0_seg0","3992":"branch0_seg0","3993":"branch0_seg0","3994":"branch0_seg0","3995":"branch0_seg0","3996":"branch0_seg0","3997":"branch0_seg0","3998":"branch0_seg0","3999":"branch0_seg0","4000":"branch0_seg0","4001":"branch0_seg0","4002":"branch0_seg0","4003":"branch0_seg0","4004":"branch0_seg0","4005":"branch0_seg0","4006":"branch0_seg0","4007":"branch0_seg0","4008":"branch0_seg0","4009":"branch0_seg0","4010":"branch0_seg0","4011":"branch0_seg0","4012":"branch0_seg0","4013":"branch0_seg0","4014":"branch0_seg0","4015":"branch0_seg0","4016":"branch0_seg0","4017":"branch0_seg0","4018":"branch0_seg0","4019":"branch0_seg0","4020":"branch0_seg0","4021":"branch0_seg0","4022":"branch0_seg0","4023":"branch0_seg0","4024":"branch0_seg0","4025":"branch0_seg0","4026":"branch0_seg0","4027":"branch0_seg0","4028":"branch0_seg0","4029":"branch0_seg0","4030":"branch0_seg0","4031":"branch0_seg0","4032":"branch0_seg0","4033":"branch0_seg0","4034":"branch0_seg0","4035":"branch0_seg0","4036":"branch0_seg0","4037":"branch0_seg0","4038":"branch0_seg0","4039":"branch0_seg0","4040":"branch0_seg0","4041":"branch0_seg0","4042":"branch0_seg0","4043":"branch0_seg0","4044":"branch0_seg0","4045":"branch0_seg0","4046":"branch0_seg0","4047":"branch0_seg0","4048":"branch0_seg0","4049":"branch0_seg0","4050":"branch0_seg0","4051":"branch0_seg0","4052":"branch0_seg0","4053":"branch0_seg0","4054":"branch0_seg0","4055":"branch0_seg0","4056":"branch0_seg0","4057":"branch0_seg0","4058":"branch0_seg0","4059":"branch0_seg0","4060":"branch0_seg0","4061":"branch0_seg0","4062":"branch0_seg0","4063":"branch0_seg0","4064":"branch0_seg0","4065":"branch0_seg0","4066":"branch0_seg0","4067":"branch0_seg0","4068":"branch0_seg0","4069":"branch0_seg0","4070":"branch0_seg0","4071":"branch0_seg0","4072":"branch0_seg0","4073":"branch0_seg0","4074":"branch0_seg0","4075":"branch0_seg0","4076":"branch0_seg0","4077":"branch0_seg0","4078":"branch0_seg0","4079":"branch0_seg0","4080":"branch0_seg0","4081":"branch0_seg0","4082":"branch0_seg0","4083":"branch0_seg0","4084":"branch0_seg0","4085":"branch0_seg0","4086":"branch0_seg0","4087":"branch0_seg0","4088":"branch0_seg0","4089":"branch0_seg0","4090":"branch0_seg0","4091":"branch0_seg0","4092":"branch0_seg0","4093":"branch0_seg0","4094":"branch0_seg0","4095":"branch0_seg0","4096":"branch0_seg0","4097":"branch0_seg0","4098":"branch0_seg0","4099":"branch0_seg0","4100":"branch0_seg0","4101":"branch0_seg0","4102":"branch0_seg0","4103":"branch0_seg0","4104":"branch0_seg0","4105":"branch0_seg0","4106":"branch0_seg0","4107":"branch0_seg0","4108":"branch0_seg0","4109":"branch0_seg0","4110":"branch0_seg0","4111":"branch0_seg0","4112":"branch0_seg0","4113":"branch0_seg0","4114":"branch0_seg0","4115":"branch0_seg0","4116":"branch0_seg0","4117":"branch0_seg0","4118":"branch0_seg0","4119":"branch0_seg0","4120":"branch0_seg0","4121":"branch0_seg0","4122":"branch0_seg0","4123":"branch0_seg0","4124":"branch0_seg0","4125":"branch0_seg0","4126":"branch0_seg0","4127":"branch0_seg0","4128":"branch0_seg0","4129":"branch0_seg0","4130":"branch0_seg0","4131":"branch0_seg0","4132":"branch0_seg0","4133":"branch0_seg0","4134":"branch0_seg0","4135":"branch0_seg0","4136":"branch0_seg0","4137":"branch0_seg0","4138":"branch0_seg0","4139":"branch0_seg0","4140":"branch0_seg0","4141":"branch0_seg0","4142":"branch0_seg0","4143":"branch0_seg0","4144":"branch0_seg0","4145":"branch0_seg0","4146":"branch0_seg0","4147":"branch0_seg0","4148":"branch0_seg0","4149":"branch0_seg0","4150":"branch0_seg0","4151":"branch0_seg0","4152":"branch0_seg0","4153":"branch0_seg0","4154":"branch0_seg0","4155":"branch0_seg0","4156":"branch0_seg0","4157":"branch0_seg0","4158":"branch0_seg0","4159":"branch0_seg0","4160":"branch0_seg0","4161":"branch0_seg0","4162":"branch0_seg0","4163":"branch0_seg0","4164":"branch0_seg0","4165":"branch0_seg0","4166":"branch0_seg0","4167":"branch0_seg0","4168":"branch0_seg0","4169":"branch0_seg0","4170":"branch0_seg0","4171":"branch0_seg0","4172":"branch0_seg0","4173":"branch0_seg0","4174":"branch0_seg0","4175":"branch0_seg0","4176":"branch0_seg0","4177":"branch0_seg0","4178":"branch0_seg0","4179":"branch0_seg0","4180":"branch0_seg0","4181":"branch0_seg0","4182":"branch0_seg0","4183":"branch0_seg0","4184":"branch0_seg0","4185":"branch0_seg0","4186":"branch0_seg0","4187":"branch0_seg0","4188":"branch0_seg0","4189":"branch0_seg0","4190":"branch0_seg0","4191":"branch0_seg0","4192":"branch0_seg0","4193":"branch0_seg0","4194":"branch0_seg0","4195":"branch0_seg0","4196":"branch0_seg0","4197":"branch0_seg0","4198":"branch0_seg0","4199":"branch0_seg0","4200":"branch0_seg0","4201":"branch0_seg0","4202":"branch0_seg0","4203":"branch0_seg0","4204":"branch0_seg0","4205":"branch0_seg0","4206":"branch0_seg0","4207":"branch0_seg0","4208":"branch0_seg0","4209":"branch0_seg0","4210":"branch0_seg0","4211":"branch0_seg0","4212":"branch0_seg0","4213":"branch0_seg0","4214":"branch0_seg0","4215":"branch0_seg0","4216":"branch0_seg0","4217":"branch0_seg0","4218":"branch0_seg0","4219":"branch0_seg0","4220":"branch0_seg0","4221":"branch0_seg0","4222":"branch0_seg0","4223":"branch0_seg0","4224":"branch0_seg0","4225":"branch0_seg0","4226":"branch0_seg0","4227":"branch0_seg0","4228":"branch0_seg0","4229":"branch0_seg0","4230":"branch0_seg0","4231":"branch0_seg0","4232":"branch0_seg0","4233":"branch0_seg0","4234":"branch0_seg0","4235":"branch0_seg0","4236":"branch0_seg0","4237":"branch0_seg0","4238":"branch0_seg0","4239":"branch0_seg0","4240":"branch0_seg0","4241":"branch0_seg0","4242":"branch0_seg0","4243":"branch0_seg0","4244":"branch0_seg0","4245":"branch0_seg0","4246":"branch0_seg0","4247":"branch0_seg0","4248":"branch0_seg0","4249":"branch0_seg0","4250":"branch0_seg0","4251":"branch0_seg0","4252":"branch0_seg0","4253":"branch0_seg0","4254":"branch0_seg0","4255":"branch0_seg0","4256":"branch0_seg0","4257":"branch0_seg0","4258":"branch0_seg0","4259":"branch0_seg0","4260":"branch0_seg0","4261":"branch0_seg0","4262":"branch0_seg0","4263":"branch0_seg0","4264":"branch0_seg0","4265":"branch0_seg0","4266":"branch0_seg0","4267":"branch0_seg0","4268":"branch0_seg0","4269":"branch0_seg0","4270":"branch0_seg0","4271":"branch0_seg0","4272":"branch0_seg0","4273":"branch0_seg0","4274":"branch0_seg0","4275":"branch0_seg0","4276":"branch0_seg0","4277":"branch0_seg0","4278":"branch0_seg0","4279":"branch0_seg0","4280":"branch0_seg0","4281":"branch0_seg0","4282":"branch0_seg0","4283":"branch0_seg0","4284":"branch0_seg0","4285":"branch0_seg0","4286":"branch0_seg0","4287":"branch0_seg0","4288":"branch0_seg0","4289":"branch0_seg0","4290":"branch0_seg0","4291":"branch0_seg0","4292":"branch0_seg0","4293":"branch0_seg0","4294":"branch0_seg0","4295":"branch0_seg0","4296":"branch0_seg0","4297":"branch0_seg0","4298":"branch0_seg0","4299":"branch0_seg0","4300":"branch0_seg0","4301":"branch0_seg0","4302":"branch0_seg0","4303":"branch0_seg0","4304":"branch0_seg0","4305":"branch0_seg0","4306":"branch0_seg0","4307":"branch0_seg0","4308":"branch0_seg0","4309":"branch0_seg0","4310":"branch0_seg0","4311":"branch0_seg0","4312":"branch0_seg0","4313":"branch0_seg0","4314":"branch0_seg0","4315":"branch0_seg0","4316":"branch0_seg0","4317":"branch0_seg0","4318":"branch0_seg0","4319":"branch0_seg0","4320":"branch0_seg0","4321":"branch0_seg0","4322":"branch0_seg0","4323":"branch0_seg0","4324":"branch0_seg0","4325":"branch0_seg0","4326":"branch0_seg0","4327":"branch0_seg0","4328":"branch0_seg0","4329":"branch0_seg0","4330":"branch0_seg0","4331":"branch0_seg0","4332":"branch0_seg0","4333":"branch0_seg0","4334":"branch0_seg0","4335":"branch0_seg0","4336":"branch0_seg0","4337":"branch0_seg0","4338":"branch0_seg0","4339":"branch0_seg0","4340":"branch0_seg0","4341":"branch0_seg0","4342":"branch0_seg0","4343":"branch0_seg0","4344":"branch0_seg0","4345":"branch0_seg0","4346":"branch0_seg0","4347":"branch0_seg0","4348":"branch0_seg0","4349":"branch0_seg0","4350":"branch0_seg0","4351":"branch0_seg0","4352":"branch0_seg0","4353":"branch0_seg0","4354":"branch0_seg0","4355":"branch0_seg0","4356":"branch0_seg0","4357":"branch0_seg0","4358":"branch0_seg0","4359":"branch0_seg0","4360":"branch0_seg0","4361":"branch0_seg0","4362":"branch0_seg0","4363":"branch0_seg0","4364":"branch0_seg0","4365":"branch0_seg0","4366":"branch0_seg0","4367":"branch0_seg0","4368":"branch0_seg0","4369":"branch0_seg0","4370":"branch0_seg0","4371":"branch0_seg0","4372":"branch0_seg0","4373":"branch0_seg0","4374":"branch0_seg0","4375":"branch0_seg0","4376":"branch0_seg0","4377":"branch0_seg0","4378":"branch0_seg0","4379":"branch0_seg0","4380":"branch0_seg0","4381":"branch0_seg0","4382":"branch0_seg0","4383":"branch0_seg0","4384":"branch0_seg0","4385":"branch0_seg0","4386":"branch0_seg0","4387":"branch0_seg0","4388":"branch0_seg0","4389":"branch0_seg0","4390":"branch0_seg0","4391":"branch0_seg0","4392":"branch0_seg0","4393":"branch0_seg0","4394":"branch0_seg0","4395":"branch0_seg0","4396":"branch0_seg0","4397":"branch0_seg0","4398":"branch0_seg0","4399":"branch0_seg0","4400":"branch0_seg0","4401":"branch0_seg0","4402":"branch0_seg0","4403":"branch0_seg0","4404":"branch0_seg0","4405":"branch0_seg0","4406":"branch0_seg0","4407":"branch0_seg0","4408":"branch0_seg0","4409":"branch0_seg0","4410":"branch0_seg0","4411":"branch0_seg0","4412":"branch0_seg0","4413":"branch0_seg0","4414":"branch0_seg0","4415":"branch0_seg0","4416":"branch0_seg0","4417":"branch0_seg0","4418":"branch0_seg0","4419":"branch0_seg0","4420":"branch0_seg0","4421":"branch0_seg0","4422":"branch0_seg0","4423":"branch0_seg0","4424":"branch0_seg0","4425":"branch0_seg0","4426":"branch0_seg0","4427":"branch0_seg0","4428":"branch0_seg0","4429":"branch0_seg0","4430":"branch0_seg0","4431":"branch0_seg0","4432":"branch0_seg0","4433":"branch0_seg0","4434":"branch0_seg0","4435":"branch0_seg0","4436":"branch0_seg0","4437":"branch0_seg0","4438":"branch0_seg0","4439":"branch0_seg0","4440":"branch0_seg0","4441":"branch0_seg0","4442":"branch0_seg0","4443":"branch0_seg0","4444":"branch0_seg0","4445":"branch0_seg0","4446":"branch0_seg0","4447":"branch0_seg0","4448":"branch0_seg0","4449":"branch0_seg0","4450":"branch0_seg0","4451":"branch0_seg0","4452":"branch0_seg0","4453":"branch0_seg0","4454":"branch0_seg0","4455":"branch0_seg0","4456":"branch0_seg0","4457":"branch0_seg0","4458":"branch0_seg0","4459":"branch0_seg0","4460":"branch0_seg0","4461":"branch0_seg0","4462":"branch0_seg0","4463":"branch0_seg0","4464":"branch0_seg0","4465":"branch0_seg0","4466":"branch0_seg0","4467":"branch0_seg0","4468":"branch0_seg0","4469":"branch0_seg0","4470":"branch0_seg0","4471":"branch0_seg0","4472":"branch0_seg0","4473":"branch0_seg0","4474":"branch0_seg0","4475":"branch0_seg0","4476":"branch0_seg0","4477":"branch0_seg0","4478":"branch0_seg0","4479":"branch0_seg0","4480":"branch0_seg0","4481":"branch0_seg0","4482":"branch0_seg0","4483":"branch0_seg0","4484":"branch0_seg0","4485":"branch0_seg0","4486":"branch0_seg0","4487":"branch0_seg0","4488":"branch0_seg0","4489":"branch0_seg0","4490":"branch0_seg0","4491":"branch0_seg0","4492":"branch0_seg0","4493":"branch0_seg0","4494":"branch0_seg0","4495":"branch0_seg0","4496":"branch0_seg0","4497":"branch0_seg0","4498":"branch0_seg0","4499":"branch0_seg0","4500":"branch0_seg0","4501":"branch0_seg0","4502":"branch0_seg0","4503":"branch0_seg0","4504":"branch0_seg0","4505":"branch0_seg0","4506":"branch0_seg0","4507":"branch0_seg0","4508":"branch0_seg0","4509":"branch0_seg0","4510":"branch0_seg0","4511":"branch0_seg0","4512":"branch0_seg0","4513":"branch0_seg0","4514":"branch0_seg0","4515":"branch0_seg0","4516":"branch0_seg0","4517":"branch0_seg0","4518":"branch0_seg0","4519":"branch0_seg0","4520":"branch0_seg0","4521":"branch0_seg0","4522":"branch0_seg0","4523":"branch0_seg0","4524":"branch0_seg0","4525":"branch0_seg0","4526":"branch0_seg0","4527":"branch0_seg0","4528":"branch0_seg0","4529":"branch0_seg0","4530":"branch0_seg0","4531":"branch0_seg0","4532":"branch0_seg0","4533":"branch0_seg0","4534":"branch0_seg0","4535":"branch0_seg0","4536":"branch0_seg0","4537":"branch0_seg0","4538":"branch0_seg0","4539":"branch0_seg0","4540":"branch0_seg0","4541":"branch0_seg0","4542":"branch0_seg0","4543":"branch0_seg0","4544":"branch0_seg0","4545":"branch0_seg0","4546":"branch0_seg0","4547":"branch0_seg0","4548":"branch0_seg0","4549":"branch0_seg0","4550":"branch0_seg0","4551":"branch0_seg0","4552":"branch0_seg0","4553":"branch0_seg0","4554":"branch0_seg0","4555":"branch0_seg0","4556":"branch0_seg0","4557":"branch0_seg0","4558":"branch0_seg0","4559":"branch0_seg0","4560":"branch0_seg0","4561":"branch0_seg0","4562":"branch0_seg0","4563":"branch0_seg0","4564":"branch0_seg0","4565":"branch0_seg0","4566":"branch0_seg0","4567":"branch0_seg0","4568":"branch0_seg0","4569":"branch0_seg0","4570":"branch0_seg0","4571":"branch0_seg0","4572":"branch0_seg0","4573":"branch0_seg0","4574":"branch0_seg0","4575":"branch0_seg0","4576":"branch0_seg0","4577":"branch0_seg0","4578":"branch0_seg0","4579":"branch0_seg0","4580":"branch0_seg0","4581":"branch0_seg0","4582":"branch0_seg0","4583":"branch0_seg0","4584":"branch0_seg0","4585":"branch0_seg0","4586":"branch0_seg0","4587":"branch0_seg0","4588":"branch0_seg0","4589":"branch0_seg0","4590":"branch0_seg0","4591":"branch0_seg0","4592":"branch0_seg0","4593":"branch0_seg0","4594":"branch0_seg0","4595":"branch0_seg0","4596":"branch0_seg0","4597":"branch0_seg0","4598":"branch0_seg0","4599":"branch0_seg0","4600":"branch0_seg0","4601":"branch0_seg0","4602":"branch0_seg0","4603":"branch0_seg0","4604":"branch0_seg0","4605":"branch0_seg0","4606":"branch0_seg0","4607":"branch0_seg0","4608":"branch0_seg0","4609":"branch0_seg0","4610":"branch0_seg0","4611":"branch0_seg0","4612":"branch0_seg0","4613":"branch0_seg0","4614":"branch0_seg0","4615":"branch0_seg0","4616":"branch0_seg0","4617":"branch0_seg0","4618":"branch0_seg0","4619":"branch0_seg0","4620":"branch0_seg0","4621":"branch0_seg0","4622":"branch0_seg0","4623":"branch0_seg0","4624":"branch0_seg0","4625":"branch0_seg0","4626":"branch0_seg0","4627":"branch0_seg0","4628":"branch0_seg0","4629":"branch0_seg0","4630":"branch0_seg0","4631":"branch0_seg0","4632":"branch0_seg0","4633":"branch0_seg0","4634":"branch0_seg0","4635":"branch0_seg0","4636":"branch0_seg0","4637":"branch0_seg0","4638":"branch0_seg0","4639":"branch0_seg0","4640":"branch0_seg0","4641":"branch0_seg0","4642":"branch0_seg0","4643":"branch0_seg0","4644":"branch0_seg0","4645":"branch0_seg0","4646":"branch0_seg0","4647":"branch0_seg0","4648":"branch0_seg0","4649":"branch0_seg0","4650":"branch0_seg0","4651":"branch0_seg0","4652":"branch0_seg0","4653":"branch0_seg0","4654":"branch0_seg0","4655":"branch0_seg0","4656":"branch0_seg0","4657":"branch0_seg0","4658":"branch0_seg0","4659":"branch0_seg0","4660":"branch0_seg0","4661":"branch0_seg0","4662":"branch0_seg0","4663":"branch0_seg0","4664":"branch0_seg0","4665":"branch0_seg0","4666":"branch0_seg0","4667":"branch0_seg0","4668":"branch0_seg0","4669":"branch0_seg0","4670":"branch0_seg0","4671":"branch0_seg0","4672":"branch0_seg0","4673":"branch0_seg0","4674":"branch0_seg0","4675":"branch0_seg0","4676":"branch0_seg0","4677":"branch0_seg0","4678":"branch0_seg0","4679":"branch0_seg0","4680":"branch0_seg0","4681":"branch0_seg0","4682":"branch0_seg0","4683":"branch0_seg0","4684":"branch0_seg0","4685":"branch0_seg0","4686":"branch0_seg0","4687":"branch0_seg0","4688":"branch0_seg0","4689":"branch0_seg0","4690":"branch0_seg0","4691":"branch0_seg0","4692":"branch0_seg0","4693":"branch0_seg0","4694":"branch0_seg0","4695":"branch0_seg0","4696":"branch0_seg0","4697":"branch0_seg0","4698":"branch0_seg0","4699":"branch0_seg0","4700":"branch0_seg0","4701":"branch0_seg0","4702":"branch0_seg0","4703":"branch0_seg0","4704":"branch0_seg0","4705":"branch0_seg0","4706":"branch0_seg0","4707":"branch0_seg0","4708":"branch0_seg0","4709":"branch0_seg0","4710":"branch0_seg0","4711":"branch0_seg0","4712":"branch0_seg0","4713":"branch0_seg0","4714":"branch0_seg0","4715":"branch0_seg0","4716":"branch0_seg0","4717":"branch0_seg0","4718":"branch0_seg0","4719":"branch0_seg0","4720":"branch0_seg0","4721":"branch0_seg0","4722":"branch0_seg0","4723":"branch0_seg0","4724":"branch0_seg0","4725":"branch0_seg0","4726":"branch0_seg0","4727":"branch0_seg0","4728":"branch0_seg0","4729":"branch0_seg0","4730":"branch0_seg0","4731":"branch0_seg0","4732":"branch0_seg0","4733":"branch0_seg0","4734":"branch0_seg0","4735":"branch0_seg0","4736":"branch0_seg0","4737":"branch0_seg0","4738":"branch0_seg0","4739":"branch0_seg0","4740":"branch0_seg0","4741":"branch0_seg0","4742":"branch0_seg0","4743":"branch0_seg0","4744":"branch0_seg0","4745":"branch0_seg0","4746":"branch0_seg0","4747":"branch0_seg0","4748":"branch0_seg0","4749":"branch0_seg0","4750":"branch0_seg0","4751":"branch0_seg0","4752":"branch0_seg0","4753":"branch0_seg0","4754":"branch0_seg0","4755":"branch0_seg0","4756":"branch0_seg0","4757":"branch0_seg0","4758":"branch0_seg0","4759":"branch0_seg0","4760":"branch0_seg0","4761":"branch0_seg0","4762":"branch0_seg0","4763":"branch0_seg0","4764":"branch0_seg0","4765":"branch0_seg0","4766":"branch0_seg0","4767":"branch0_seg0","4768":"branch0_seg0","4769":"branch0_seg0","4770":"branch0_seg0","4771":"branch0_seg0","4772":"branch0_seg0","4773":"branch0_seg0","4774":"branch0_seg0","4775":"branch0_seg0","4776":"branch0_seg0","4777":"branch0_seg0","4778":"branch0_seg0","4779":"branch0_seg0","4780":"branch0_seg0","4781":"branch0_seg0","4782":"branch0_seg0","4783":"branch0_seg0","4784":"branch0_seg0","4785":"branch0_seg0","4786":"branch0_seg0","4787":"branch0_seg0","4788":"branch0_seg0","4789":"branch0_seg0","4790":"branch0_seg0","4791":"branch0_seg0","4792":"branch0_seg0","4793":"branch0_seg0","4794":"branch0_seg0","4795":"branch0_seg0","4796":"branch0_seg0","4797":"branch0_seg0","4798":"branch0_seg0","4799":"branch0_seg0","4800":"branch0_seg0","4801":"branch0_seg0","4802":"branch0_seg0","4803":"branch0_seg0","4804":"branch0_seg0","4805":"branch0_seg0","4806":"branch0_seg0","4807":"branch0_seg0","4808":"branch0_seg0","4809":"branch0_seg0","4810":"branch0_seg0","4811":"branch0_seg0","4812":"branch0_seg0","4813":"branch0_seg0","4814":"branch0_seg0","4815":"branch0_seg0","4816":"branch0_seg0","4817":"branch0_seg0","4818":"branch0_seg0","4819":"branch0_seg0","4820":"branch0_seg0","4821":"branch0_seg0","4822":"branch0_seg0","4823":"branch0_seg0","4824":"branch0_seg0","4825":"branch0_seg0","4826":"branch0_seg0","4827":"branch0_seg0","4828":"branch0_seg0","4829":"branch0_seg0","4830":"branch0_seg0","4831":"branch0_seg0","4832":"branch0_seg0","4833":"branch0_seg0","4834":"branch0_seg0","4835":"branch0_seg0","4836":"branch0_seg0","4837":"branch0_seg0","4838":"branch0_seg0","4839":"branch0_seg0","4840":"branch0_seg0","4841":"branch0_seg0","4842":"branch0_seg0","4843":"branch0_seg0","4844":"branch0_seg0","4845":"branch0_seg0","4846":"branch0_seg0","4847":"branch0_seg0","4848":"branch0_seg0","4849":"branch0_seg0","4850":"branch0_seg0","4851":"branch0_seg0","4852":"branch0_seg0","4853":"branch0_seg0","4854":"branch0_seg0","4855":"branch0_seg0","4856":"branch0_seg0","4857":"branch0_seg0","4858":"branch0_seg0","4859":"branch0_seg0","4860":"branch0_seg0","4861":"branch0_seg0","4862":"branch0_seg0","4863":"branch0_seg0","4864":"branch0_seg0","4865":"branch0_seg0","4866":"branch0_seg0","4867":"branch0_seg0","4868":"branch0_seg0","4869":"branch0_seg0","4870":"branch0_seg0","4871":"branch0_seg0","4872":"branch0_seg0","4873":"branch0_seg0","4874":"branch0_seg0","4875":"branch0_seg0","4876":"branch0_seg0","4877":"branch0_seg0","4878":"branch0_seg0","4879":"branch0_seg0","4880":"branch0_seg0","4881":"branch0_seg0","4882":"branch0_seg0","4883":"branch0_seg0","4884":"branch0_seg0","4885":"branch0_seg0","4886":"branch0_seg0","4887":"branch0_seg0","4888":"branch0_seg0","4889":"branch0_seg0","4890":"branch0_seg0","4891":"branch0_seg0","4892":"branch0_seg0","4893":"branch0_seg0","4894":"branch0_seg0","4895":"branch0_seg0","4896":"branch0_seg0","4897":"branch0_seg0","4898":"branch0_seg0","4899":"branch0_seg0","4900":"branch0_seg0","4901":"branch0_seg0","4902":"branch0_seg0","4903":"branch0_seg0","4904":"branch0_seg0","4905":"branch0_seg0","4906":"branch0_seg0","4907":"branch0_seg0","4908":"branch0_seg0","4909":"branch0_seg0","4910":"branch0_seg0","4911":"branch0_seg0","4912":"branch0_seg0","4913":"branch0_seg0","4914":"branch0_seg0","4915":"branch0_seg0","4916":"branch0_seg0","4917":"branch0_seg0","4918":"branch0_seg0","4919":"branch0_seg0","4920":"branch0_seg0","4921":"branch0_seg0","4922":"branch0_seg0","4923":"branch0_seg0","4924":"branch0_seg0","4925":"branch0_seg0","4926":"branch0_seg0","4927":"branch0_seg0","4928":"branch0_seg0","4929":"branch0_seg0","4930":"branch0_seg0","4931":"branch0_seg0","4932":"branch0_seg0","4933":"branch0_seg0","4934":"branch0_seg0","4935":"branch0_seg0","4936":"branch0_seg0","4937":"branch0_seg0","4938":"branch0_seg0","4939":"branch0_seg0","4940":"branch0_seg0","4941":"branch0_seg0","4942":"branch0_seg0","4943":"branch0_seg0","4944":"branch0_seg0","4945":"branch0_seg0","4946":"branch0_seg0","4947":"branch0_seg0","4948":"branch0_seg0","4949":"branch0_seg0","4950":"branch0_seg0","4951":"branch0_seg0","4952":"branch0_seg0","4953":"branch0_seg0","4954":"branch0_seg0","4955":"branch0_seg0","4956":"branch0_seg0","4957":"branch0_seg0","4958":"branch0_seg0","4959":"branch0_seg0","4960":"branch0_seg0","4961":"branch0_seg0","4962":"branch0_seg0","4963":"branch0_seg0","4964":"branch0_seg0","4965":"branch0_seg0","4966":"branch0_seg0","4967":"branch0_seg0","4968":"branch0_seg0","4969":"branch0_seg0","4970":"branch0_seg0","4971":"branch0_seg0","4972":"branch0_seg0","4973":"branch0_seg0","4974":"branch0_seg0","4975":"branch0_seg0","4976":"branch0_seg0","4977":"branch0_seg0","4978":"branch0_seg0","4979":"branch0_seg0","4980":"branch0_seg0","4981":"branch0_seg0","4982":"branch0_seg0","4983":"branch0_seg0","4984":"branch0_seg0","4985":"branch0_seg0","4986":"branch0_seg0","4987":"branch0_seg0","4988":"branch0_seg0","4989":"branch0_seg0","4990":"branch0_seg0","4991":"branch0_seg0","4992":"branch0_seg0","4993":"branch0_seg0","4994":"branch0_seg0","4995":"branch0_seg0","4996":"branch0_seg0","4997":"branch0_seg0","4998":"branch0_seg0","4999":"branch0_seg0","5000":"branch0_seg0","5001":"branch0_seg0","5002":"branch0_seg0","5003":"branch0_seg0","5004":"branch0_seg0","5005":"branch0_seg0","5006":"branch0_seg0","5007":"branch0_seg0","5008":"branch0_seg0","5009":"branch0_seg0","5010":"branch0_seg0","5011":"branch0_seg0","5012":"branch0_seg0","5013":"branch0_seg0","5014":"branch0_seg0","5015":"branch0_seg0","5016":"branch0_seg0","5017":"branch0_seg0","5018":"branch0_seg0","5019":"branch0_seg0","5020":"branch0_seg0","5021":"branch0_seg0","5022":"branch0_seg0","5023":"branch0_seg0","5024":"branch0_seg0","5025":"branch0_seg0","5026":"branch0_seg0","5027":"branch0_seg0","5028":"branch0_seg0","5029":"branch0_seg0","5030":"branch0_seg0","5031":"branch0_seg0","5032":"branch0_seg0","5033":"branch0_seg0","5034":"branch0_seg0","5035":"branch0_seg0","5036":"branch0_seg0","5037":"branch0_seg0","5038":"branch0_seg0","5039":"branch0_seg0","5040":"branch0_seg0","5041":"branch0_seg0","5042":"branch0_seg0","5043":"branch0_seg0","5044":"branch0_seg0","5045":"branch0_seg0","5046":"branch0_seg0","5047":"branch0_seg0","5048":"branch0_seg0","5049":"branch0_seg0","5050":"branch0_seg0","5051":"branch0_seg0","5052":"branch0_seg0","5053":"branch0_seg0","5054":"branch0_seg0","5055":"branch0_seg0","5056":"branch0_seg0","5057":"branch0_seg0","5058":"branch0_seg0","5059":"branch0_seg0","5060":"branch0_seg0","5061":"branch0_seg0","5062":"branch0_seg0","5063":"branch0_seg0","5064":"branch0_seg0","5065":"branch0_seg0","5066":"branch0_seg0","5067":"branch0_seg0","5068":"branch0_seg0","5069":"branch0_seg0","5070":"branch0_seg0","5071":"branch0_seg0","5072":"branch0_seg0","5073":"branch0_seg0","5074":"branch0_seg0","5075":"branch0_seg0","5076":"branch0_seg0","5077":"branch0_seg0","5078":"branch0_seg0","5079":"branch0_seg0","5080":"branch0_seg0","5081":"branch0_seg0","5082":"branch0_seg0","5083":"branch0_seg0","5084":"branch0_seg0","5085":"branch0_seg0","5086":"branch0_seg0","5087":"branch0_seg0","5088":"branch0_seg0","5089":"branch0_seg0","5090":"branch0_seg0","5091":"branch0_seg0","5092":"branch0_seg0","5093":"branch0_seg0","5094":"branch0_seg0","5095":"branch0_seg0","5096":"branch0_seg0","5097":"branch0_seg0","5098":"branch0_seg0","5099":"branch0_seg0","5100":"branch0_seg0","5101":"branch0_seg0","5102":"branch0_seg0","5103":"branch0_seg0","5104":"branch0_seg0","5105":"branch0_seg0","5106":"branch0_seg0","5107":"branch0_seg0","5108":"branch0_seg0","5109":"branch0_seg0","5110":"branch0_seg0","5111":"branch0_seg0","5112":"branch0_seg0","5113":"branch0_seg0","5114":"branch0_seg0","5115":"branch0_seg0","5116":"branch0_seg0","5117":"branch0_seg0","5118":"branch0_seg0","5119":"branch0_seg0","5120":"branch0_seg0","5121":"branch0_seg0","5122":"branch0_seg0","5123":"branch0_seg0","5124":"branch0_seg0","5125":"branch0_seg0","5126":"branch0_seg0","5127":"branch0_seg0","5128":"branch0_seg0","5129":"branch0_seg0","5130":"branch0_seg0","5131":"branch0_seg0","5132":"branch0_seg0","5133":"branch0_seg0","5134":"branch0_seg0","5135":"branch0_seg0","5136":"branch0_seg0","5137":"branch0_seg0","5138":"branch0_seg0","5139":"branch0_seg0","5140":"branch0_seg0","5141":"branch0_seg0","5142":"branch0_seg0","5143":"branch0_seg0","5144":"branch0_seg0","5145":"branch0_seg0","5146":"branch0_seg0","5147":"branch0_seg0","5148":"branch0_seg0","5149":"branch0_seg0","5150":"branch0_seg0","5151":"branch0_seg0","5152":"branch0_seg0","5153":"branch0_seg0","5154":"branch0_seg0","5155":"branch0_seg0","5156":"branch0_seg0","5157":"branch0_seg0","5158":"branch0_seg0","5159":"branch0_seg0","5160":"branch0_seg0","5161":"branch0_seg0","5162":"branch0_seg0","5163":"branch0_seg0","5164":"branch0_seg0","5165":"branch0_seg0","5166":"branch0_seg0","5167":"branch0_seg0","5168":"branch0_seg0","5169":"branch0_seg0","5170":"branch0_seg0","5171":"branch0_seg0","5172":"branch0_seg0","5173":"branch0_seg0","5174":"branch0_seg0","5175":"branch0_seg0","5176":"branch0_seg0","5177":"branch0_seg0","5178":"branch0_seg0","5179":"branch0_seg0","5180":"branch0_seg0","5181":"branch0_seg0","5182":"branch0_seg0","5183":"branch0_seg0","5184":"branch0_seg0","5185":"branch0_seg0","5186":"branch0_seg0","5187":"branch0_seg0","5188":"branch0_seg0","5189":"branch0_seg0","5190":"branch0_seg0","5191":"branch0_seg0","5192":"branch0_seg0","5193":"branch0_seg0","5194":"branch0_seg0","5195":"branch0_seg0","5196":"branch0_seg0","5197":"branch0_seg0","5198":"branch0_seg0","5199":"branch0_seg0","5200":"branch0_seg0","5201":"branch0_seg0","5202":"branch0_seg0","5203":"branch0_seg0","5204":"branch0_seg0","5205":"branch0_seg0","5206":"branch0_seg0","5207":"branch0_seg0","5208":"branch0_seg0","5209":"branch0_seg0","5210":"branch0_seg0","5211":"branch0_seg0","5212":"branch0_seg0","5213":"branch0_seg0","5214":"branch0_seg0","5215":"branch0_seg0","5216":"branch0_seg0","5217":"branch0_seg0","5218":"branch0_seg0","5219":"branch0_seg0","5220":"branch0_seg0","5221":"branch0_seg0","5222":"branch0_seg0","5223":"branch0_seg0","5224":"branch0_seg0","5225":"branch0_seg0","5226":"branch0_seg0","5227":"branch0_seg0","5228":"branch0_seg0","5229":"branch0_seg0","5230":"branch0_seg0","5231":"branch0_seg0","5232":"branch0_seg0","5233":"branch0_seg0","5234":"branch0_seg0","5235":"branch0_seg0","5236":"branch0_seg0","5237":"branch0_seg0","5238":"branch0_seg0","5239":"branch0_seg0","5240":"branch0_seg0","5241":"branch0_seg0","5242":"branch0_seg0","5243":"branch0_seg0","5244":"branch0_seg0","5245":"branch0_seg0","5246":"branch0_seg0","5247":"branch0_seg0","5248":"branch0_seg0","5249":"branch0_seg0","5250":"branch0_seg0","5251":"branch0_seg0","5252":"branch0_seg0","5253":"branch0_seg0","5254":"branch0_seg0","5255":"branch0_seg0","5256":"branch0_seg0","5257":"branch0_seg0","5258":"branch0_seg0","5259":"branch0_seg0","5260":"branch0_seg0","5261":"branch0_seg0","5262":"branch0_seg0","5263":"branch0_seg0","5264":"branch0_seg0","5265":"branch0_seg0","5266":"branch0_seg0","5267":"branch0_seg0","5268":"branch0_seg0","5269":"branch0_seg0","5270":"branch0_seg0","5271":"branch0_seg0","5272":"branch0_seg0","5273":"branch0_seg0","5274":"branch0_seg0","5275":"branch0_seg0","5276":"branch0_seg0","5277":"branch0_seg0","5278":"branch0_seg0","5279":"branch0_seg0","5280":"branch0_seg0","5281":"branch0_seg0","5282":"branch0_seg0","5283":"branch0_seg0","5284":"branch0_seg0","5285":"branch0_seg0","5286":"branch0_seg0","5287":"branch0_seg0","5288":"branch0_seg0","5289":"branch0_seg0","5290":"branch0_seg0","5291":"branch0_seg0","5292":"branch0_seg0","5293":"branch0_seg0","5294":"branch0_seg0","5295":"branch0_seg0","5296":"branch0_seg0","5297":"branch0_seg0","5298":"branch0_seg0","5299":"branch0_seg0","5300":"branch0_seg0","5301":"branch0_seg0","5302":"branch0_seg0","5303":"branch0_seg0","5304":"branch0_seg0","5305":"branch0_seg0","5306":"branch0_seg0","5307":"branch0_seg0","5308":"branch0_seg0","5309":"branch0_seg0","5310":"branch0_seg0","5311":"branch0_seg0","5312":"branch0_seg0","5313":"branch0_seg0","5314":"branch0_seg0","5315":"branch0_seg0","5316":"branch0_seg0","5317":"branch0_seg0","5318":"branch0_seg0","5319":"branch0_seg0","5320":"branch0_seg0","5321":"branch0_seg0","5322":"branch0_seg0","5323":"branch0_seg0","5324":"branch0_seg0","5325":"branch0_seg0","5326":"branch0_seg0","5327":"branch0_seg0","5328":"branch0_seg0","5329":"branch0_seg0","5330":"branch0_seg0","5331":"branch0_seg0","5332":"branch0_seg0","5333":"branch0_seg0","5334":"branch0_seg0","5335":"branch0_seg0","5336":"branch0_seg0","5337":"branch0_seg0","5338":"branch0_seg0","5339":"branch0_seg0","5340":"branch0_seg0","5341":"branch0_seg0","5342":"branch0_seg0","5343":"branch0_seg0","5344":"branch0_seg0","5345":"branch0_seg0","5346":"branch0_seg0","5347":"branch0_seg0","5348":"branch0_seg0","5349":"branch0_seg0","5350":"branch0_seg0","5351":"branch0_seg0","5352":"branch0_seg0","5353":"branch0_seg0","5354":"branch0_seg0","5355":"branch0_seg0","5356":"branch0_seg0","5357":"branch0_seg0","5358":"branch0_seg0","5359":"branch0_seg0","5360":"branch0_seg0","5361":"branch0_seg0","5362":"branch0_seg0","5363":"branch0_seg0","5364":"branch0_seg0","5365":"branch0_seg0","5366":"branch0_seg0","5367":"branch0_seg0","5368":"branch0_seg0","5369":"branch0_seg0","5370":"branch0_seg0","5371":"branch0_seg0","5372":"branch0_seg0","5373":"branch0_seg0","5374":"branch0_seg0","5375":"branch0_seg0","5376":"branch0_seg0","5377":"branch0_seg0","5378":"branch0_seg0","5379":"branch0_seg0","5380":"branch0_seg0","5381":"branch0_seg0","5382":"branch0_seg0","5383":"branch0_seg0","5384":"branch0_seg0","5385":"branch0_seg0","5386":"branch0_seg0","5387":"branch0_seg0","5388":"branch0_seg0","5389":"branch0_seg0","5390":"branch0_seg0","5391":"branch0_seg0","5392":"branch0_seg0","5393":"branch0_seg0","5394":"branch0_seg0","5395":"branch0_seg0","5396":"branch0_seg0","5397":"branch0_seg0","5398":"branch0_seg0","5399":"branch0_seg0","5400":"branch0_seg0","5401":"branch0_seg0","5402":"branch0_seg0","5403":"branch0_seg0","5404":"branch0_seg0","5405":"branch0_seg0","5406":"branch0_seg0","5407":"branch0_seg0","5408":"branch0_seg0","5409":"branch0_seg0","5410":"branch0_seg0","5411":"branch0_seg0","5412":"branch0_seg0","5413":"branch0_seg0","5414":"branch0_seg0","5415":"branch0_seg0","5416":"branch0_seg0","5417":"branch0_seg0","5418":"branch0_seg0","5419":"branch0_seg0","5420":"branch0_seg0","5421":"branch0_seg0","5422":"branch0_seg0","5423":"branch0_seg0","5424":"branch0_seg0","5425":"branch0_seg0","5426":"branch0_seg0","5427":"branch0_seg0","5428":"branch0_seg0","5429":"branch0_seg0","5430":"branch0_seg0","5431":"branch0_seg0","5432":"branch0_seg0","5433":"branch0_seg0","5434":"branch0_seg0","5435":"branch0_seg0","5436":"branch0_seg0","5437":"branch0_seg0","5438":"branch0_seg0","5439":"branch0_seg0","5440":"branch0_seg0","5441":"branch0_seg0","5442":"branch0_seg0","5443":"branch0_seg0","5444":"branch0_seg0","5445":"branch0_seg0","5446":"branch0_seg0","5447":"branch0_seg0","5448":"branch0_seg0","5449":"branch0_seg0","5450":"branch0_seg0","5451":"branch0_seg0","5452":"branch0_seg0","5453":"branch0_seg0","5454":"branch0_seg0","5455":"branch0_seg0","5456":"branch0_seg0","5457":"branch0_seg0","5458":"branch0_seg0","5459":"branch0_seg0","5460":"branch0_seg0","5461":"branch0_seg0","5462":"branch0_seg0","5463":"branch0_seg0","5464":"branch0_seg0","5465":"branch0_seg0","5466":"branch0_seg0","5467":"branch0_seg0","5468":"branch0_seg0","5469":"branch0_seg0","5470":"branch0_seg0","5471":"branch0_seg0","5472":"branch0_seg0","5473":"branch0_seg0","5474":"branch0_seg0","5475":"branch0_seg0","5476":"branch0_seg0","5477":"branch0_seg0","5478":"branch0_seg0","5479":"branch0_seg0","5480":"branch0_seg0","5481":"branch0_seg0","5482":"branch0_seg0","5483":"branch0_seg0","5484":"branch0_seg0","5485":"branch0_seg0","5486":"branch0_seg0","5487":"branch0_seg0","5488":"branch0_seg0","5489":"branch0_seg0","5490":"branch0_seg0","5491":"branch0_seg0","5492":"branch0_seg0","5493":"branch0_seg0","5494":"branch0_seg0","5495":"branch0_seg0","5496":"branch0_seg0","5497":"branch0_seg0","5498":"branch0_seg0","5499":"branch0_seg0","5500":"branch0_seg0","5501":"branch0_seg0","5502":"branch0_seg0","5503":"branch0_seg0","5504":"branch0_seg0","5505":"branch0_seg0","5506":"branch0_seg0","5507":"branch0_seg0","5508":"branch0_seg0","5509":"branch0_seg0","5510":"branch0_seg0","5511":"branch0_seg0","5512":"branch0_seg0","5513":"branch0_seg0","5514":"branch0_seg0","5515":"branch0_seg0","5516":"branch0_seg0","5517":"branch0_seg0","5518":"branch0_seg0","5519":"branch0_seg0","5520":"branch0_seg0","5521":"branch0_seg0","5522":"branch0_seg0","5523":"branch0_seg0","5524":"branch0_seg0","5525":"branch0_seg0","5526":"branch0_seg0","5527":"branch0_seg0","5528":"branch0_seg0","5529":"branch0_seg0","5530":"branch0_seg0","5531":"branch0_seg0","5532":"branch0_seg0","5533":"branch0_seg0","5534":"branch0_seg0","5535":"branch0_seg0","5536":"branch0_seg0","5537":"branch0_seg0","5538":"branch0_seg0","5539":"branch0_seg0","5540":"branch0_seg0","5541":"branch0_seg0","5542":"branch0_seg0","5543":"branch0_seg0","5544":"branch0_seg0","5545":"branch0_seg0","5546":"branch0_seg0","5547":"branch0_seg0","5548":"branch0_seg0","5549":"branch0_seg0","5550":"branch0_seg0","5551":"branch0_seg0","5552":"branch0_seg0","5553":"branch0_seg0","5554":"branch0_seg0","5555":"branch0_seg0","5556":"branch0_seg0","5557":"branch0_seg0","5558":"branch0_seg0","5559":"branch0_seg0","5560":"branch0_seg0","5561":"branch0_seg0","5562":"branch0_seg0","5563":"branch0_seg0","5564":"branch0_seg0","5565":"branch0_seg0","5566":"branch0_seg0","5567":"branch0_seg0","5568":"branch0_seg0","5569":"branch0_seg0","5570":"branch0_seg0","5571":"branch0_seg0","5572":"branch0_seg0","5573":"branch0_seg0","5574":"branch0_seg0","5575":"branch0_seg0","5576":"branch0_seg0","5577":"branch0_seg0","5578":"branch0_seg0","5579":"branch0_seg0","5580":"branch0_seg0","5581":"branch0_seg0","5582":"branch0_seg0","5583":"branch0_seg0","5584":"branch0_seg0","5585":"branch0_seg0","5586":"branch0_seg0","5587":"branch0_seg0","5588":"branch0_seg0","5589":"branch0_seg0","5590":"branch0_seg0","5591":"branch0_seg0","5592":"branch0_seg0","5593":"branch0_seg0","5594":"branch0_seg0","5595":"branch0_seg0","5596":"branch0_seg0","5597":"branch0_seg0","5598":"branch0_seg0","5599":"branch0_seg0","5600":"branch0_seg0","5601":"branch0_seg0","5602":"branch0_seg0","5603":"branch0_seg0","5604":"branch0_seg0","5605":"branch0_seg0","5606":"branch0_seg0","5607":"branch0_seg0","5608":"branch0_seg0","5609":"branch0_seg0","5610":"branch0_seg0","5611":"branch0_seg0","5612":"branch0_seg0","5613":"branch0_seg0","5614":"branch0_seg0","5615":"branch0_seg0","5616":"branch0_seg0","5617":"branch0_seg0","5618":"branch0_seg0","5619":"branch0_seg0","5620":"branch0_seg0","5621":"branch0_seg0","5622":"branch0_seg0","5623":"branch0_seg0","5624":"branch0_seg0","5625":"branch0_seg0","5626":"branch0_seg0","5627":"branch0_seg0","5628":"branch0_seg0","5629":"branch0_seg0","5630":"branch0_seg0","5631":"branch0_seg0","5632":"branch0_seg0","5633":"branch0_seg0","5634":"branch0_seg0","5635":"branch0_seg0","5636":"branch0_seg0","5637":"branch0_seg0","5638":"branch0_seg0","5639":"branch0_seg0","5640":"branch0_seg0","5641":"branch0_seg0","5642":"branch0_seg0","5643":"branch0_seg0","5644":"branch0_seg0","5645":"branch0_seg0","5646":"branch0_seg0","5647":"branch0_seg0","5648":"branch0_seg0","5649":"branch0_seg0","5650":"branch0_seg0","5651":"branch0_seg0","5652":"branch0_seg0","5653":"branch0_seg0","5654":"branch0_seg0","5655":"branch0_seg0","5656":"branch0_seg0","5657":"branch0_seg0","5658":"branch0_seg0","5659":"branch0_seg0","5660":"branch0_seg0","5661":"branch0_seg0","5662":"branch0_seg0","5663":"branch0_seg0","5664":"branch0_seg0","5665":"branch0_seg0","5666":"branch0_seg0","5667":"branch0_seg0","5668":"branch0_seg0","5669":"branch0_seg0","5670":"branch0_seg0","5671":"branch0_seg0","5672":"branch0_seg0","5673":"branch0_seg0","5674":"branch0_seg0","5675":"branch0_seg0","5676":"branch0_seg0","5677":"branch0_seg0","5678":"branch0_seg0","5679":"branch0_seg0","5680":"branch0_seg0","5681":"branch0_seg0","5682":"branch0_seg0","5683":"branch0_seg0","5684":"branch0_seg0","5685":"branch0_seg0","5686":"branch0_seg0","5687":"branch0_seg0","5688":"branch0_seg0","5689":"branch0_seg0","5690":"branch0_seg0","5691":"branch0_seg0","5692":"branch0_seg0","5693":"branch0_seg0","5694":"branch0_seg0","5695":"branch0_seg0","5696":"branch0_seg0","5697":"branch0_seg0","5698":"branch0_seg0","5699":"branch0_seg0","5700":"branch0_seg0","5701":"branch0_seg0","5702":"branch0_seg0","5703":"branch0_seg0","5704":"branch0_seg0","5705":"branch0_seg0","5706":"branch0_seg0","5707":"branch0_seg0","5708":"branch0_seg0","5709":"branch0_seg0","5710":"branch0_seg0","5711":"branch0_seg0","5712":"branch0_seg0","5713":"branch0_seg0","5714":"branch0_seg0","5715":"branch0_seg0","5716":"branch0_seg0","5717":"branch0_seg0","5718":"branch0_seg0","5719":"branch0_seg0","5720":"branch0_seg0","5721":"branch0_seg0","5722":"branch0_seg0","5723":"branch0_seg0","5724":"branch0_seg0","5725":"branch0_seg0","5726":"branch0_seg0","5727":"branch0_seg0","5728":"branch0_seg0","5729":"branch0_seg0","5730":"branch0_seg0","5731":"branch0_seg0","5732":"branch0_seg0","5733":"branch0_seg0","5734":"branch0_seg0","5735":"branch0_seg0","5736":"branch0_seg0","5737":"branch0_seg0","5738":"branch0_seg0","5739":"branch0_seg0","5740":"branch0_seg0","5741":"branch0_seg0","5742":"branch0_seg0","5743":"branch0_seg0","5744":"branch0_seg0","5745":"branch0_seg0","5746":"branch0_seg0","5747":"branch0_seg0","5748":"branch0_seg0","5749":"branch0_seg0","5750":"branch0_seg0","5751":"branch0_seg0","5752":"branch0_seg0","5753":"branch0_seg0","5754":"branch0_seg0","5755":"branch0_seg0","5756":"branch0_seg0","5757":"branch0_seg0","5758":"branch0_seg0","5759":"branch0_seg0","5760":"branch0_seg0","5761":"branch0_seg0","5762":"branch0_seg0","5763":"branch0_seg0","5764":"branch0_seg0","5765":"branch0_seg0","5766":"branch0_seg0","5767":"branch0_seg0","5768":"branch0_seg0","5769":"branch0_seg0","5770":"branch0_seg0","5771":"branch0_seg0","5772":"branch0_seg0","5773":"branch0_seg0","5774":"branch0_seg0","5775":"branch0_seg0","5776":"branch0_seg0","5777":"branch0_seg0","5778":"branch0_seg0","5779":"branch0_seg0","5780":"branch0_seg0","5781":"branch0_seg0","5782":"branch0_seg0","5783":"branch0_seg0","5784":"branch0_seg0","5785":"branch0_seg0","5786":"branch0_seg0","5787":"branch0_seg0","5788":"branch0_seg0","5789":"branch0_seg0","5790":"branch0_seg0","5791":"branch0_seg0","5792":"branch0_seg0","5793":"branch0_seg0","5794":"branch0_seg0","5795":"branch0_seg0","5796":"branch0_seg0","5797":"branch0_seg0","5798":"branch0_seg0","5799":"branch0_seg0","5800":"branch0_seg0","5801":"branch0_seg0","5802":"branch0_seg0","5803":"branch0_seg0","5804":"branch0_seg0","5805":"branch0_seg0","5806":"branch0_seg0","5807":"branch0_seg0","5808":"branch0_seg0","5809":"branch0_seg0","5810":"branch0_seg0","5811":"branch0_seg0","5812":"branch0_seg0","5813":"branch0_seg0","5814":"branch0_seg0","5815":"branch0_seg0","5816":"branch0_seg0","5817":"branch0_seg0","5818":"branch0_seg0","5819":"branch0_seg0","5820":"branch0_seg0","5821":"branch0_seg0","5822":"branch0_seg0","5823":"branch0_seg0","5824":"branch0_seg0","5825":"branch0_seg0","5826":"branch0_seg0","5827":"branch0_seg0","5828":"branch0_seg0","5829":"branch0_seg0","5830":"branch0_seg0","5831":"branch0_seg0","5832":"branch0_seg0","5833":"branch0_seg0","5834":"branch0_seg0","5835":"branch0_seg0","5836":"branch0_seg0","5837":"branch0_seg0","5838":"branch0_seg0","5839":"branch0_seg0","5840":"branch0_seg0","5841":"branch0_seg0","5842":"branch0_seg0","5843":"branch0_seg0","5844":"branch0_seg0","5845":"branch0_seg0","5846":"branch0_seg0","5847":"branch0_seg0","5848":"branch0_seg0","5849":"branch0_seg0","5850":"branch0_seg0","5851":"branch0_seg0","5852":"branch0_seg0","5853":"branch0_seg0","5854":"branch0_seg0","5855":"branch0_seg0","5856":"branch0_seg0","5857":"branch0_seg0","5858":"branch0_seg0","5859":"branch0_seg0","5860":"branch0_seg0","5861":"branch0_seg0","5862":"branch0_seg0","5863":"branch0_seg0","5864":"branch0_seg0","5865":"branch0_seg0","5866":"branch0_seg0","5867":"branch0_seg0","5868":"branch0_seg0","5869":"branch0_seg0","5870":"branch0_seg0","5871":"branch0_seg0","5872":"branch0_seg0","5873":"branch0_seg0","5874":"branch0_seg0","5875":"branch0_seg0","5876":"branch0_seg0","5877":"branch0_seg0","5878":"branch0_seg0","5879":"branch0_seg0","5880":"branch0_seg0","5881":"branch0_seg0","5882":"branch0_seg0","5883":"branch0_seg0","5884":"branch0_seg0","5885":"branch0_seg0","5886":"branch0_seg0","5887":"branch0_seg0","5888":"branch0_seg0","5889":"branch0_seg0","5890":"branch0_seg0","5891":"branch0_seg0","5892":"branch0_seg0","5893":"branch0_seg0","5894":"branch0_seg0","5895":"branch0_seg0","5896":"branch0_seg0","5897":"branch0_seg0","5898":"branch0_seg0","5899":"branch0_seg0","5900":"branch0_seg0","5901":"branch0_seg0","5902":"branch0_seg0","5903":"branch0_seg0","5904":"branch0_seg0","5905":"branch0_seg0","5906":"branch0_seg0","5907":"branch0_seg0","5908":"branch0_seg0","5909":"branch0_seg0","5910":"branch0_seg0","5911":"branch0_seg0","5912":"branch0_seg0","5913":"branch0_seg0","5914":"branch0_seg0","5915":"branch0_seg0","5916":"branch0_seg0","5917":"branch0_seg0","5918":"branch0_seg0","5919":"branch0_seg0","5920":"branch0_seg0","5921":"branch0_seg0","5922":"branch0_seg0","5923":"branch0_seg0","5924":"branch0_seg0","5925":"branch0_seg0","5926":"branch0_seg0","5927":"branch0_seg0","5928":"branch0_seg0","5929":"branch0_seg0","5930":"branch0_seg0","5931":"branch0_seg0","5932":"branch0_seg0","5933":"branch0_seg0","5934":"branch0_seg0","5935":"branch0_seg0","5936":"branch0_seg0","5937":"branch0_seg0","5938":"branch0_seg0","5939":"branch0_seg0","5940":"branch0_seg0","5941":"branch0_seg0","5942":"branch0_seg0","5943":"branch0_seg0","5944":"branch0_seg0","5945":"branch0_seg0","5946":"branch0_seg0","5947":"branch0_seg0","5948":"branch0_seg0","5949":"branch0_seg0","5950":"branch0_seg0","5951":"branch0_seg0","5952":"branch0_seg0","5953":"branch0_seg0","5954":"branch0_seg0","5955":"branch0_seg0","5956":"branch0_seg0","5957":"branch0_seg0","5958":"branch0_seg0","5959":"branch0_seg0","5960":"branch0_seg0","5961":"branch0_seg0","5962":"branch0_seg0","5963":"branch0_seg0","5964":"branch0_seg0","5965":"branch0_seg0","5966":"branch0_seg0","5967":"branch0_seg0","5968":"branch0_seg0","5969":"branch0_seg0","5970":"branch0_seg0","5971":"branch0_seg0","5972":"branch0_seg0","5973":"branch0_seg0","5974":"branch0_seg0","5975":"branch0_seg0","5976":"branch0_seg0","5977":"branch0_seg0","5978":"branch0_seg0","5979":"branch0_seg0","5980":"branch0_seg0","5981":"branch0_seg0","5982":"branch0_seg0","5983":"branch0_seg0","5984":"branch0_seg0","5985":"branch0_seg0","5986":"branch0_seg0","5987":"branch0_seg0","5988":"branch0_seg0","5989":"branch0_seg0","5990":"branch0_seg0","5991":"branch0_seg0","5992":"branch0_seg0","5993":"branch0_seg0","5994":"branch0_seg0","5995":"branch0_seg0","5996":"branch0_seg0","5997":"branch0_seg0","5998":"branch0_seg0","5999":"branch0_seg0","6000":"branch0_seg0"},"time":{"0":0.0,"1":0.005,"2":0.01,"3":0.015,"4":0.02,"5":0.025,"6":0.03,"7":0.035,"8":0.04,"9":0.045,"10":0.05,"11":0.055,"12":0.06,"13":0.065,"14":0.07,"15":0.075,"16":0.08,"17":0.085,"18":0.09,"19":0.095,"20":0.1,"21":0.105,"22":0.11,"23":0.115,"24":0.12,"25":0.125,"26":0.13,"27":0.135,"28":0.14,"29":0.145,"30":0.15,"31":0.155,"32":0.16,"33":0.165,"34":0.17,"35":0.175,"36":0.18,"37":0.185,"38":0.19,"39":0.195,"40":0.2,"41":0.205,"42":0.21,"43":0.215,"44":0.22,"45":0.225,"46":0.23,"47":0.235,"48":0.24,"49":0.245,"50":0.25,"51":0.255,"52":0.26,"53":0.265,"54":0.27,"55":0.275,"56":0.28,"57":0.285,"58":0.29,"59":0.295,"60":0.3,"61":0.305,"62":0.31,"63":0.315,"64":0.32,"65":0.325,"66":0.33,"67":0.335,"68":0.34,"69":0.345,"70":0.35,"71":0.355,"72":0.36,"73":0.365,"74":0.37,"75":0.375,"76":0.38,"77":0.385,"78":0.39,"79":0.395,"80":0.4,"81":0.405,"82":0.41,"83":0.415,"84":0.42,"85":0.425,"86":0.43,"87":0.435,"88":0.44,"89":0.445,"90":0.45,"91":0.455,"92":0.46,"93":0.465,"94":0.47,"95":0.475,"96":0.48,"97":0.485,"98":0.49,"99":0.495,"100":0.5,"101":0.505,"102":0.51,"103":0.515,"104":0.52,"105":0.525,"106":0.53,"107":0.535,"108":0.54,"109":0.545,"110":0.55,"111":0.555,"112":0.56,"113":0.565,"114":0.57,"115":0.575,"116":0.58,"117":0.585,"118":0.59,"119":0.595,"120":0.6,"121":0.605,"122":0.61,"123":0.615,"124":0.62,"125":0.625,"126":0.63,"127":0.635,"128":0.64,"129":0.645,"130":0.65,"131":0.655,"132":0.66,"133":0.665,"134":0.67,"135":0.675,"136":0.68,"137":0.685,"138":0.69,"139":0.695,"140":0.7,"141":0.705,"142":0.71,"143":0.715,"144":0.72,"145":0.725,"146":0.73,"147":0.735,"148":0.74,"149":0.745,"150":0.75,"151":0.755,"152":0.76,"153":0.765,"154":0.77,"155":0.775,"156":0.78,"157":0.785,"158":0.79,"159":0.795,"160":0.8,"161":0.805,"162":0.81,"163":0.815,"164":0.82,"165":0.825,"166":0.83,"167":0.835,"168":0.84,"169":0.845,"170":0.85,"171":0.855,"172":0.86,"173":0.865,"174":0.87,"175":0.875,"176":0.88,"177":0.885,"178":0.89,"179":0.895,"180":0.9,"181":0.905,"182":0.91,"183":0.915,"184":0.92,"185":0.925,"186":0.93,"187":0.935,"188":0.94,"189":0.945,"190":0.95,"191":0.955,"192":0.96,"193":0.965,"194":0.97,"195":0.975,"196":0.98,"197":0.985,"198":0.99,"199":0.995,"200":1.0,"201":1.005,"202":1.01,"203":1.015,"204":1.02,"205":1.025,"206":1.03,"207":1.035,"208":1.04,"209":1.045,"210":1.05,"211":1.055,"212":1.06,"213":1.065,"214":1.07,"215":1.075,"216":1.08,"217":1.085,"218":1.09,"219":1.095,"220":1.1,"221":1.105,"222":1.11,"223":1.115,"224":1.12,"225":1.125,"226":1.13,"227":1.135,"228":1.14,"229":1.145,"230":1.15,"231":1.155,"232":1.16,"233":1.165,"234":1.17,"235":1.175,"236":1.18,"237":1.185,"238":1.19,"239":1.195,"240":1.2,"241":1.205,"242":1.21,"243":1.215,"244":1.22,"245":1.225,"246":1.23,"247":1.235,"248":1.24,"249":1.245,"250":1.25,"251":1.255,"252":1.26,"253":1.265,"254":1.27,"255":1.275,"256":1.28,"257":1.285,"258":1.29,"259":1.295,"260":1.3,"261":1.305,"262":1.31,"263":1.315,"264":1.32,"265":1.325,"266":1.33,"267":1.335,"268":1.34,"269":1.345,"270":1.35,"271":1.355,"272":1.36,"273":1.365,"274":1.37,"275":1.375,"276":1.38,"277":1.385,"278":1.39,"279":1.395,"280":1.4,"281":1.405,"282":1.41,"283":1.415,"284":1.42,"285":1.425,"286":1.43,"287":1.435,"288":1.44,"289":1.445,"290":1.45,"291":1.455,"292":1.46,"293":1.465,"294":1.47,"295":1.475,"296":1.48,"297":1.485,"298":1.49,"299":1.495,"300":1.5,"301":1.505,"302":1.51,"303":1.515,"304":1.52,"305":1.525,"306":1.53,"307":1.535,"308":1.54,"309":1.545,"310":1.55,"311":1.555,"312":1.56,"313":1.565,"314":1.57,"315":1.575,"316":1.58,"317":1.585,"318":1.59,"319":1.595,"320":1.6,"321":1.605,"322":1.61,"323":1.615,"324":1.62,"325":1.625,"326":1.63,"327":1.635,"328":1.64,"329":1.645,"330":1.65,"331":1.655,"332":1.66,"333":1.665,"334":1.67,"335":1.675,"336":1.68,"337":1.685,"338":1.69,"339":1.695,"340":1.7,"341":1.705,"342":1.71,"343":1.715,"344":1.72,"345":1.725,"346":1.73,"347":1.735,"348":1.74,"349":1.745,"350":1.75,"351":1.755,"352":1.76,"353":1.765,"354":1.77,"355":1.775,"356":1.78,"357":1.785,"358":1.79,"359":1.795,"360":1.8,"361":1.805,"362":1.81,"363":1.815,"364":1.82,"365":1.825,"366":1.83,"367":1.835,"368":1.84,"369":1.845,"370":1.85,"371":1.855,"372":1.86,"373":1.865,"374":1.87,"375":1.875,"376":1.88,"377":1.885,"378":1.89,"379":1.895,"380":1.9,"381":1.905,"382":1.91,"383":1.915,"384":1.92,"385":1.925,"386":1.93,"387":1.935,"388":1.94,"389":1.945,"390":1.95,"391":1.955,"392":1.96,"393":1.965,"394":1.97,"395":1.975,"396":1.98,"397":1.985,"398":1.99,"399":1.995,"400":2.0,"401":2.005,"402":2.01,"403":2.015,"404":2.02,"405":2.025,"406":2.03,"407":2.035,"408":2.04,"409":2.045,"410":2.05,"411":2.055,"412":2.06,"413":2.065,"414":2.07,"415":2.075,"416":2.08,"417":2.085,"418":2.09,"419":2.095,"420":2.1,"421":2.105,"422":2.11,"423":2.115,"424":2.12,"425":2.125,"426":2.13,"427":2.135,"428":2.14,"429":2.145,"430":2.15,"431":2.155,"432":2.16,"433":2.165,"434":2.17,"435":2.175,"436":2.18,"437":2.185,"438":2.19,"439":2.195,"440":2.2,"441":2.205,"442":2.21,"443":2.215,"444":2.22,"445":2.225,"446":2.23,"447":2.235,"448":2.24,"449":2.245,"450":2.25,"451":2.255,"452":2.26,"453":2.265,"454":2.27,"455":2.275,"456":2.28,"457":2.285,"458":2.29,"459":2.295,"460":2.3,"461":2.305,"462":2.31,"463":2.315,"464":2.32,"465":2.325,"466":2.33,"467":2.335,"468":2.34,"469":2.345,"470":2.35,"471":2.355,"472":2.36,"473":2.365,"474":2.37,"475":2.375,"476":2.38,"477":2.385,"478":2.39,"479":2.395,"480":2.4,"481":2.405,"482":2.41,"483":2.415,"484":2.42,"485":2.425,"486":2.43,"487":2.435,"488":2.44,"489":2.445,"490":2.45,"491":2.455,"492":2.46,"493":2.465,"494":2.47,"495":2.475,"496":2.48,"497":2.485,"498":2.49,"499":2.495,"500":2.5,"501":2.505,"502":2.51,"503":2.515,"504":2.52,"505":2.525,"506":2.53,"507":2.535,"508":2.54,"509":2.545,"510":2.55,"511":2.555,"512":2.56,"513":2.565,"514":2.57,"515":2.575,"516":2.58,"517":2.585,"518":2.59,"519":2.595,"520":2.6,"521":2.605,"522":2.61,"523":2.615,"524":2.62,"525":2.625,"526":2.63,"527":2.635,"528":2.64,"529":2.645,"530":2.65,"531":2.655,"532":2.66,"533":2.665,"534":2.67,"535":2.675,"536":2.68,"537":2.685,"538":2.69,"539":2.695,"540":2.7,"541":2.705,"542":2.71,"543":2.715,"544":2.72,"545":2.725,"546":2.73,"547":2.735,"548":2.74,"549":2.745,"550":2.75,"551":2.755,"552":2.76,"553":2.765,"554":2.77,"555":2.775,"556":2.78,"557":2.785,"558":2.79,"559":2.795,"560":2.8,"561":2.805,"562":2.81,"563":2.815,"564":2.82,"565":2.825,"566":2.83,"567":2.835,"568":2.84,"569":2.845,"570":2.85,"571":2.855,"572":2.86,"573":2.865,"574":2.87,"575":2.875,"576":2.88,"577":2.885,"578":2.89,"579":2.895,"580":2.9,"581":2.905,"582":2.91,"583":2.915,"584":2.92,"585":2.925,"586":2.93,"587":2.935,"588":2.94,"589":2.945,"590":2.95,"591":2.955,"592":2.96,"593":2.965,"594":2.97,"595":2.975,"596":2.98,"597":2.985,"598":2.99,"599":2.995,"600":3.0,"601":3.005,"602":3.01,"603":3.015,"604":3.02,"605":3.025,"606":3.03,"607":3.035,"608":3.04,"609":3.045,"610":3.05,"611":3.055,"612":3.06,"613":3.065,"614":3.07,"615":3.075,"616":3.08,"617":3.085,"618":3.09,"619":3.095,"620":3.1,"621":3.105,"622":3.11,"623":3.115,"624":3.12,"625":3.125,"626":3.13,"627":3.135,"628":3.14,"629":3.145,"630":3.15,"631":3.155,"632":3.16,"633":3.165,"634":3.17,"635":3.175,"636":3.18,"637":3.185,"638":3.19,"639":3.195,"640":3.2,"641":3.205,"642":3.21,"643":3.215,"644":3.22,"645":3.225,"646":3.23,"647":3.235,"648":3.24,"649":3.245,"650":3.25,"651":3.255,"652":3.26,"653":3.265,"654":3.27,"655":3.275,"656":3.28,"657":3.285,"658":3.29,"659":3.295,"660":3.3,"661":3.305,"662":3.31,"663":3.315,"664":3.32,"665":3.325,"666":3.33,"667":3.335,"668":3.34,"669":3.345,"670":3.35,"671":3.355,"672":3.36,"673":3.365,"674":3.37,"675":3.375,"676":3.38,"677":3.385,"678":3.39,"679":3.395,"680":3.4,"681":3.405,"682":3.41,"683":3.415,"684":3.42,"685":3.425,"686":3.43,"687":3.435,"688":3.44,"689":3.445,"690":3.45,"691":3.455,"692":3.46,"693":3.465,"694":3.47,"695":3.475,"696":3.48,"697":3.485,"698":3.49,"699":3.495,"700":3.5,"701":3.505,"702":3.51,"703":3.515,"704":3.52,"705":3.525,"706":3.53,"707":3.535,"708":3.54,"709":3.545,"710":3.55,"711":3.555,"712":3.56,"713":3.565,"714":3.57,"715":3.575,"716":3.58,"717":3.585,"718":3.59,"719":3.595,"720":3.6,"721":3.605,"722":3.61,"723":3.615,"724":3.62,"725":3.625,"726":3.63,"727":3.635,"728":3.64,"729":3.645,"730":3.65,"731":3.655,"732":3.66,"733":3.665,"734":3.67,"735":3.675,"736":3.68,"737":3.685,"738":3.69,"739":3.695,"740":3.7,"741":3.705,"742":3.71,"743":3.715,"744":3.72,"745":3.725,"746":3.73,"747":3.735,"748":3.74,"749":3.745,"750":3.75,"751":3.755,"752":3.76,"753":3.765,"754":3.77,"755":3.775,"756":3.78,"757":3.785,"758":3.79,"759":3.795,"760":3.8,"761":3.805,"762":3.81,"763":3.815,"764":3.82,"765":3.825,"766":3.83,"767":3.835,"768":3.84,"769":3.845,"770":3.85,"771":3.855,"772":3.86,"773":3.865,"774":3.87,"775":3.875,"776":3.88,"777":3.885,"778":3.89,"779":3.895,"780":3.9,"781":3.905,"782":3.91,"783":3.915,"784":3.92,"785":3.925,"786":3.93,"787":3.935,"788":3.94,"789":3.945,"790":3.95,"791":3.955,"792":3.96,"793":3.965,"794":3.97,"795":3.975,"796":3.98,"797":3.985,"798":3.99,"799":3.995,"800":4.0,"801":4.005,"802":4.01,"803":4.015,"804":4.02,"805":4.025,"806":4.03,"807":4.035,"808":4.04,"809":4.045,"810":4.05,"811":4.055,"812":4.06,"813":4.065,"814":4.07,"815":4.075,"816":4.08,"817":4.085,"818":4.09,"819":4.095,"820":4.1,"821":4.105,"822":4.11,"823":4.115,"824":4.12,"825":4.125,"826":4.13,"827":4.135,"828":4.14,"829":4.145,"830":4.15,"831":4.155,"832":4.16,"833":4.165,"834":4.17,"835":4.175,"836":4.18,"837":4.185,"838":4.19,"839":4.195,"840":4.2,"841":4.205,"842":4.21,"843":4.215,"844":4.22,"845":4.225,"846":4.23,"847":4.235,"848":4.24,"849":4.245,"850":4.25,"851":4.255,"852":4.26,"853":4.265,"854":4.27,"855":4.275,"856":4.28,"857":4.285,"858":4.29,"859":4.295,"860":4.3,"861":4.305,"862":4.31,"863":4.315,"864":4.32,"865":4.325,"866":4.33,"867":4.335,"868":4.34,"869":4.345,"870":4.35,"871":4.355,"872":4.36,"873":4.365,"874":4.37,"875":4.375,"876":4.38,"877":4.385,"878":4.39,"879":4.395,"880":4.4,"881":4.405,"882":4.41,"883":4.415,"884":4.42,"885":4.425,"886":4.43,"887":4.435,"888":4.44,"889":4.445,"890":4.45,"891":4.455,"892":4.46,"893":4.465,"894":4.47,"895":4.475,"896":4.48,"897":4.485,"898":4.49,"899":4.495,"900":4.5,"901":4.505,"902":4.51,"903":4.515,"904":4.52,"905":4.525,"906":4.53,"907":4.535,"908":4.54,"909":4.545,"910":4.55,"911":4.555,"912":4.56,"913":4.565,"914":4.57,"915":4.575,"916":4.58,"917":4.585,"918":4.59,"919":4.595,"920":4.6,"921":4.605,"922":4.61,"923":4.615,"924":4.62,"925":4.625,"926":4.63,"927":4.635,"928":4.64,"929":4.645,"930":4.65,"931":4.655,"932":4.66,"933":4.665,"934":4.67,"935":4.675,"936":4.68,"937":4.685,"938":4.69,"939":4.695,"940":4.7,"941":4.705,"942":4.71,"943":4.715,"944":4.72,"945":4.725,"946":4.73,"947":4.735,"948":4.74,"949":4.745,"950":4.75,"951":4.755,"952":4.76,"953":4.765,"954":4.77,"955":4.775,"956":4.78,"957":4.785,"958":4.79,"959":4.795,"960":4.8,"961":4.805,"962":4.81,"963":4.815,"964":4.82,"965":4.825,"966":4.83,"967":4.835,"968":4.84,"969":4.845,"970":4.85,"971":4.855,"972":4.86,"973":4.865,"974":4.87,"975":4.875,"976":4.88,"977":4.885,"978":4.89,"979":4.895,"980":4.9,"981":4.905,"982":4.91,"983":4.915,"984":4.92,"985":4.925,"986":4.93,"987":4.935,"988":4.94,"989":4.945,"990":4.95,"991":4.955,"992":4.96,"993":4.965,"994":4.97,"995":4.975,"996":4.98,"997":4.985,"998":4.99,"999":4.995,"1000":5.0,"1001":5.005,"1002":5.01,"1003":5.015,"1004":5.02,"1005":5.025,"1006":5.03,"1007":5.035,"1008":5.04,"1009":5.045,"1010":5.05,"1011":5.055,"1012":5.06,"1013":5.065,"1014":5.07,"1015":5.075,"1016":5.08,"1017":5.085,"1018":5.09,"1019":5.095,"1020":5.1,"1021":5.105,"1022":5.11,"1023":5.115,"1024":5.12,"1025":5.125,"1026":5.13,"1027":5.135,"1028":5.14,"1029":5.145,"1030":5.15,"1031":5.155,"1032":5.16,"1033":5.165,"1034":5.17,"1035":5.175,"1036":5.18,"1037":5.185,"1038":5.19,"1039":5.195,"1040":5.2,"1041":5.205,"1042":5.21,"1043":5.215,"1044":5.22,"1045":5.225,"1046":5.23,"1047":5.235,"1048":5.24,"1049":5.245,"1050":5.25,"1051":5.255,"1052":5.26,"1053":5.265,"1054":5.27,"1055":5.275,"1056":5.28,"1057":5.285,"1058":5.29,"1059":5.295,"1060":5.3,"1061":5.305,"1062":5.31,"1063":5.315,"1064":5.32,"1065":5.325,"1066":5.33,"1067":5.335,"1068":5.34,"1069":5.345,"1070":5.35,"1071":5.355,"1072":5.36,"1073":5.365,"1074":5.37,"1075":5.375,"1076":5.38,"1077":5.385,"1078":5.39,"1079":5.395,"1080":5.4,"1081":5.405,"1082":5.41,"1083":5.415,"1084":5.42,"1085":5.425,"1086":5.43,"1087":5.435,"1088":5.44,"1089":5.445,"1090":5.45,"1091":5.455,"1092":5.46,"1093":5.465,"1094":5.47,"1095":5.475,"1096":5.48,"1097":5.485,"1098":5.49,"1099":5.495,"1100":5.5,"1101":5.505,"1102":5.51,"1103":5.515,"1104":5.52,"1105":5.525,"1106":5.53,"1107":5.535,"1108":5.54,"1109":5.545,"1110":5.55,"1111":5.555,"1112":5.56,"1113":5.565,"1114":5.57,"1115":5.575,"1116":5.58,"1117":5.585,"1118":5.59,"1119":5.595,"1120":5.6,"1121":5.605,"1122":5.61,"1123":5.615,"1124":5.62,"1125":5.625,"1126":5.63,"1127":5.635,"1128":5.64,"1129":5.645,"1130":5.65,"1131":5.655,"1132":5.66,"1133":5.665,"1134":5.67,"1135":5.675,"1136":5.68,"1137":5.685,"1138":5.69,"1139":5.695,"1140":5.7,"1141":5.705,"1142":5.71,"1143":5.715,"1144":5.72,"1145":5.725,"1146":5.73,"1147":5.735,"1148":5.74,"1149":5.745,"1150":5.75,"1151":5.755,"1152":5.76,"1153":5.765,"1154":5.77,"1155":5.775,"1156":5.78,"1157":5.785,"1158":5.79,"1159":5.795,"1160":5.8,"1161":5.805,"1162":5.81,"1163":5.815,"1164":5.82,"1165":5.825,"1166":5.83,"1167":5.835,"1168":5.84,"1169":5.845,"1170":5.85,"1171":5.855,"1172":5.86,"1173":5.865,"1174":5.87,"1175":5.875,"1176":5.88,"1177":5.885,"1178":5.89,"1179":5.895,"1180":5.9,"1181":5.905,"1182":5.91,"1183":5.915,"1184":5.92,"1185":5.925,"1186":5.93,"1187":5.935,"1188":5.94,"1189":5.945,"1190":5.95,"1191":5.955,"1192":5.96,"1193":5.965,"1194":5.97,"1195":5.975,"1196":5.98,"1197":5.985,"1198":5.99,"1199":5.995,"1200":6.0,"1201":6.005,"1202":6.01,"1203":6.015,"1204":6.02,"1205":6.025,"1206":6.03,"1207":6.035,"1208":6.04,"1209":6.045,"1210":6.05,"1211":6.055,"1212":6.06,"1213":6.065,"1214":6.07,"1215":6.075,"1216":6.08,"1217":6.085,"1218":6.09,"1219":6.095,"1220":6.1,"1221":6.105,"1222":6.11,"1223":6.115,"1224":6.12,"1225":6.125,"1226":6.13,"1227":6.135,"1228":6.14,"1229":6.145,"1230":6.15,"1231":6.155,"1232":6.16,"1233":6.165,"1234":6.17,"1235":6.175,"1236":6.18,"1237":6.185,"1238":6.19,"1239":6.195,"1240":6.2,"1241":6.205,"1242":6.21,"1243":6.215,"1244":6.22,"1245":6.225,"1246":6.23,"1247":6.235,"1248":6.24,"1249":6.245,"1250":6.25,"1251":6.255,"1252":6.26,"1253":6.265,"1254":6.27,"1255":6.275,"1256":6.28,"1257":6.285,"1258":6.29,"1259":6.295,"1260":6.3,"1261":6.305,"1262":6.31,"1263":6.315,"1264":6.32,"1265":6.325,"1266":6.33,"1267":6.335,"1268":6.34,"1269":6.345,"1270":6.35,"1271":6.355,"1272":6.36,"1273":6.365,"1274":6.37,"1275":6.375,"1276":6.38,"1277":6.385,"1278":6.39,"1279":6.395,"1280":6.4,"1281":6.405,"1282":6.41,"1283":6.415,"1284":6.42,"1285":6.425,"1286":6.43,"1287":6.435,"1288":6.44,"1289":6.445,"1290":6.45,"1291":6.455,"1292":6.46,"1293":6.465,"1294":6.47,"1295":6.475,"1296":6.48,"1297":6.485,"1298":6.49,"1299":6.495,"1300":6.5,"1301":6.505,"1302":6.51,"1303":6.515,"1304":6.52,"1305":6.525,"1306":6.53,"1307":6.535,"1308":6.54,"1309":6.545,"1310":6.55,"1311":6.555,"1312":6.56,"1313":6.565,"1314":6.57,"1315":6.575,"1316":6.58,"1317":6.585,"1318":6.59,"1319":6.595,"1320":6.6,"1321":6.605,"1322":6.61,"1323":6.615,"1324":6.62,"1325":6.625,"1326":6.63,"1327":6.635,"1328":6.64,"1329":6.645,"1330":6.65,"1331":6.655,"1332":6.66,"1333":6.665,"1334":6.67,"1335":6.675,"1336":6.68,"1337":6.685,"1338":6.69,"1339":6.695,"1340":6.7,"1341":6.705,"1342":6.71,"1343":6.715,"1344":6.72,"1345":6.725,"1346":6.73,"1347":6.735,"1348":6.74,"1349":6.745,"1350":6.75,"1351":6.755,"1352":6.76,"1353":6.765,"1354":6.77,"1355":6.775,"1356":6.78,"1357":6.785,"1358":6.79,"1359":6.795,"1360":6.8,"1361":6.805,"1362":6.81,"1363":6.815,"1364":6.82,"1365":6.825,"1366":6.83,"1367":6.835,"1368":6.84,"1369":6.845,"1370":6.85,"1371":6.855,"1372":6.86,"1373":6.865,"1374":6.87,"1375":6.875,"1376":6.88,"1377":6.885,"1378":6.89,"1379":6.895,"1380":6.9,"1381":6.905,"1382":6.91,"1383":6.915,"1384":6.92,"1385":6.925,"1386":6.93,"1387":6.935,"1388":6.94,"1389":6.945,"1390":6.95,"1391":6.955,"1392":6.96,"1393":6.965,"1394":6.97,"1395":6.975,"1396":6.98,"1397":6.985,"1398":6.99,"1399":6.995,"1400":7.0,"1401":7.005,"1402":7.01,"1403":7.015,"1404":7.02,"1405":7.025,"1406":7.03,"1407":7.035,"1408":7.04,"1409":7.045,"1410":7.05,"1411":7.055,"1412":7.06,"1413":7.065,"1414":7.07,"1415":7.075,"1416":7.08,"1417":7.085,"1418":7.09,"1419":7.095,"1420":7.1,"1421":7.105,"1422":7.11,"1423":7.115,"1424":7.12,"1425":7.125,"1426":7.13,"1427":7.135,"1428":7.14,"1429":7.145,"1430":7.15,"1431":7.155,"1432":7.16,"1433":7.165,"1434":7.17,"1435":7.175,"1436":7.18,"1437":7.185,"1438":7.19,"1439":7.195,"1440":7.2,"1441":7.205,"1442":7.21,"1443":7.215,"1444":7.22,"1445":7.225,"1446":7.23,"1447":7.235,"1448":7.24,"1449":7.245,"1450":7.25,"1451":7.255,"1452":7.26,"1453":7.265,"1454":7.27,"1455":7.275,"1456":7.28,"1457":7.285,"1458":7.29,"1459":7.295,"1460":7.3,"1461":7.305,"1462":7.31,"1463":7.315,"1464":7.32,"1465":7.325,"1466":7.33,"1467":7.335,"1468":7.34,"1469":7.345,"1470":7.35,"1471":7.355,"1472":7.36,"1473":7.365,"1474":7.37,"1475":7.375,"1476":7.38,"1477":7.385,"1478":7.39,"1479":7.395,"1480":7.4,"1481":7.405,"1482":7.41,"1483":7.415,"1484":7.42,"1485":7.425,"1486":7.43,"1487":7.435,"1488":7.44,"1489":7.445,"1490":7.45,"1491":7.455,"1492":7.46,"1493":7.465,"1494":7.47,"1495":7.475,"1496":7.48,"1497":7.485,"1498":7.49,"1499":7.495,"1500":7.5,"1501":7.505,"1502":7.51,"1503":7.515,"1504":7.52,"1505":7.525,"1506":7.53,"1507":7.535,"1508":7.54,"1509":7.545,"1510":7.55,"1511":7.555,"1512":7.56,"1513":7.565,"1514":7.57,"1515":7.575,"1516":7.58,"1517":7.585,"1518":7.59,"1519":7.595,"1520":7.6,"1521":7.605,"1522":7.61,"1523":7.615,"1524":7.62,"1525":7.625,"1526":7.63,"1527":7.635,"1528":7.64,"1529":7.645,"1530":7.65,"1531":7.655,"1532":7.66,"1533":7.665,"1534":7.67,"1535":7.675,"1536":7.68,"1537":7.685,"1538":7.69,"1539":7.695,"1540":7.7,"1541":7.705,"1542":7.71,"1543":7.715,"1544":7.72,"1545":7.725,"1546":7.73,"1547":7.735,"1548":7.74,"1549":7.745,"1550":7.75,"1551":7.755,"1552":7.76,"1553":7.765,"1554":7.77,"1555":7.775,"1556":7.78,"1557":7.785,"1558":7.79,"1559":7.795,"1560":7.8,"1561":7.805,"1562":7.81,"1563":7.815,"1564":7.82,"1565":7.825,"1566":7.83,"1567":7.835,"1568":7.84,"1569":7.845,"1570":7.85,"1571":7.855,"1572":7.86,"1573":7.865,"1574":7.87,"1575":7.875,"1576":7.88,"1577":7.885,"1578":7.89,"1579":7.895,"1580":7.9,"1581":7.905,"1582":7.91,"1583":7.915,"1584":7.92,"1585":7.925,"1586":7.93,"1587":7.935,"1588":7.94,"1589":7.945,"1590":7.95,"1591":7.955,"1592":7.96,"1593":7.965,"1594":7.97,"1595":7.975,"1596":7.98,"1597":7.985,"1598":7.99,"1599":7.995,"1600":8.0,"1601":8.005,"1602":8.01,"1603":8.015,"1604":8.02,"1605":8.025,"1606":8.03,"1607":8.035,"1608":8.04,"1609":8.045,"1610":8.05,"1611":8.055,"1612":8.06,"1613":8.065,"1614":8.07,"1615":8.075,"1616":8.08,"1617":8.085,"1618":8.09,"1619":8.095,"1620":8.1,"1621":8.105,"1622":8.11,"1623":8.115,"1624":8.12,"1625":8.125,"1626":8.13,"1627":8.135,"1628":8.14,"1629":8.145,"1630":8.15,"1631":8.155,"1632":8.16,"1633":8.165,"1634":8.17,"1635":8.175,"1636":8.18,"1637":8.185,"1638":8.19,"1639":8.195,"1640":8.2,"1641":8.205,"1642":8.21,"1643":8.215,"1644":8.22,"1645":8.225,"1646":8.23,"1647":8.235,"1648":8.24,"1649":8.245,"1650":8.25,"1651":8.255,"1652":8.26,"1653":8.265,"1654":8.27,"1655":8.275,"1656":8.28,"1657":8.285,"1658":8.29,"1659":8.295,"1660":8.3,"1661":8.305,"1662":8.31,"1663":8.315,"1664":8.32,"1665":8.325,"1666":8.33,"1667":8.335,"1668":8.34,"1669":8.345,"1670":8.35,"1671":8.355,"1672":8.36,"1673":8.365,"1674":8.37,"1675":8.375,"1676":8.38,"1677":8.385,"1678":8.39,"1679":8.395,"1680":8.4,"1681":8.405,"1682":8.41,"1683":8.415,"1684":8.42,"1685":8.425,"1686":8.43,"1687":8.435,"1688":8.44,"1689":8.445,"1690":8.45,"1691":8.455,"1692":8.46,"1693":8.465,"1694":8.47,"1695":8.475,"1696":8.48,"1697":8.485,"1698":8.49,"1699":8.495,"1700":8.5,"1701":8.505,"1702":8.51,"1703":8.515,"1704":8.52,"1705":8.525,"1706":8.53,"1707":8.535,"1708":8.54,"1709":8.545,"1710":8.55,"1711":8.555,"1712":8.56,"1713":8.565,"1714":8.57,"1715":8.575,"1716":8.58,"1717":8.585,"1718":8.59,"1719":8.595,"1720":8.6,"1721":8.605,"1722":8.61,"1723":8.615,"1724":8.62,"1725":8.625,"1726":8.63,"1727":8.635,"1728":8.64,"1729":8.645,"1730":8.65,"1731":8.655,"1732":8.66,"1733":8.665,"1734":8.67,"1735":8.675,"1736":8.68,"1737":8.685,"1738":8.69,"1739":8.695,"1740":8.7,"1741":8.705,"1742":8.71,"1743":8.715,"1744":8.72,"1745":8.725,"1746":8.73,"1747":8.735,"1748":8.74,"1749":8.745,"1750":8.75,"1751":8.755,"1752":8.76,"1753":8.765,"1754":8.77,"1755":8.775,"1756":8.78,"1757":8.785,"1758":8.79,"1759":8.795,"1760":8.8,"1761":8.805,"1762":8.81,"1763":8.815,"1764":8.82,"1765":8.825,"1766":8.83,"1767":8.835,"1768":8.84,"1769":8.845,"1770":8.85,"1771":8.855,"1772":8.86,"1773":8.865,"1774":8.87,"1775":8.875,"1776":8.88,"1777":8.885,"1778":8.89,"1779":8.895,"1780":8.9,"1781":8.905,"1782":8.91,"1783":8.915,"1784":8.92,"1785":8.925,"1786":8.93,"1787":8.935,"1788":8.94,"1789":8.945,"1790":8.95,"1791":8.955,"1792":8.96,"1793":8.965,"1794":8.97,"1795":8.975,"1796":8.98,"1797":8.985,"1798":8.99,"1799":8.995,"1800":9.0,"1801":9.005,"1802":9.01,"1803":9.015,"1804":9.02,"1805":9.025,"1806":9.03,"1807":9.035,"1808":9.04,"1809":9.045,"1810":9.05,"1811":9.055,"1812":9.06,"1813":9.065,"1814":9.07,"1815":9.075,"1816":9.08,"1817":9.085,"1818":9.09,"1819":9.095,"1820":9.1,"1821":9.105,"1822":9.11,"1823":9.115,"1824":9.12,"1825":9.125,"1826":9.13,"1827":9.135,"1828":9.14,"1829":9.145,"1830":9.15,"1831":9.155,"1832":9.16,"1833":9.165,"1834":9.17,"1835":9.175,"1836":9.18,"1837":9.185,"1838":9.19,"1839":9.195,"1840":9.2,"1841":9.205,"1842":9.21,"1843":9.215,"1844":9.22,"1845":9.225,"1846":9.23,"1847":9.235,"1848":9.24,"1849":9.245,"1850":9.25,"1851":9.255,"1852":9.26,"1853":9.265,"1854":9.27,"1855":9.275,"1856":9.28,"1857":9.285,"1858":9.29,"1859":9.295,"1860":9.3,"1861":9.305,"1862":9.31,"1863":9.315,"1864":9.32,"1865":9.325,"1866":9.33,"1867":9.335,"1868":9.34,"1869":9.345,"1870":9.35,"1871":9.355,"1872":9.36,"1873":9.365,"1874":9.37,"1875":9.375,"1876":9.38,"1877":9.385,"1878":9.39,"1879":9.395,"1880":9.4,"1881":9.405,"1882":9.41,"1883":9.415,"1884":9.42,"1885":9.425,"1886":9.43,"1887":9.435,"1888":9.44,"1889":9.445,"1890":9.45,"1891":9.455,"1892":9.46,"1893":9.465,"1894":9.47,"1895":9.475,"1896":9.48,"1897":9.485,"1898":9.49,"1899":9.495,"1900":9.5,"1901":9.505,"1902":9.51,"1903":9.515,"1904":9.52,"1905":9.525,"1906":9.53,"1907":9.535,"1908":9.54,"1909":9.545,"1910":9.55,"1911":9.555,"1912":9.56,"1913":9.565,"1914":9.57,"1915":9.575,"1916":9.58,"1917":9.585,"1918":9.59,"1919":9.595,"1920":9.6,"1921":9.605,"1922":9.61,"1923":9.615,"1924":9.62,"1925":9.625,"1926":9.63,"1927":9.635,"1928":9.64,"1929":9.645,"1930":9.65,"1931":9.655,"1932":9.66,"1933":9.665,"1934":9.67,"1935":9.675,"1936":9.68,"1937":9.685,"1938":9.69,"1939":9.695,"1940":9.7,"1941":9.705,"1942":9.71,"1943":9.715,"1944":9.72,"1945":9.725,"1946":9.73,"1947":9.735,"1948":9.74,"1949":9.745,"1950":9.75,"1951":9.755,"1952":9.76,"1953":9.765,"1954":9.77,"1955":9.775,"1956":9.78,"1957":9.785,"1958":9.79,"1959":9.795,"1960":9.8,"1961":9.805,"1962":9.81,"1963":9.815,"1964":9.82,"1965":9.825,"1966":9.83,"1967":9.835,"1968":9.84,"1969":9.845,"1970":9.85,"1971":9.855,"1972":9.86,"1973":9.865,"1974":9.87,"1975":9.875,"1976":9.88,"1977":9.885,"1978":9.89,"1979":9.895,"1980":9.9,"1981":9.905,"1982":9.91,"1983":9.915,"1984":9.92,"1985":9.925,"1986":9.93,"1987":9.935,"1988":9.94,"1989":9.945,"1990":9.95,"1991":9.955,"1992":9.96,"1993":9.965,"1994":9.97,"1995":9.975,"1996":9.98,"1997":9.985,"1998":9.99,"1999":9.995,"2000":10.0,"2001":10.005,"2002":10.01,"2003":10.015,"2004":10.02,"2005":10.025,"2006":10.03,"2007":10.035,"2008":10.04,"2009":10.045,"2010":10.05,"2011":10.055,"2012":10.06,"2013":10.065,"2014":10.07,"2015":10.075,"2016":10.08,"2017":10.085,"2018":10.09,"2019":10.095,"2020":10.1,"2021":10.105,"2022":10.11,"2023":10.115,"2024":10.12,"2025":10.125,"2026":10.13,"2027":10.135,"2028":10.14,"2029":10.145,"2030":10.15,"2031":10.155,"2032":10.16,"2033":10.165,"2034":10.17,"2035":10.175,"2036":10.18,"2037":10.185,"2038":10.19,"2039":10.195,"2040":10.2,"2041":10.205,"2042":10.21,"2043":10.215,"2044":10.22,"2045":10.225,"2046":10.23,"2047":10.235,"2048":10.24,"2049":10.245,"2050":10.25,"2051":10.255,"2052":10.26,"2053":10.265,"2054":10.27,"2055":10.275,"2056":10.28,"2057":10.285,"2058":10.29,"2059":10.295,"2060":10.3,"2061":10.305,"2062":10.31,"2063":10.315,"2064":10.32,"2065":10.325,"2066":10.33,"2067":10.335,"2068":10.34,"2069":10.345,"2070":10.35,"2071":10.355,"2072":10.36,"2073":10.365,"2074":10.37,"2075":10.375,"2076":10.38,"2077":10.385,"2078":10.39,"2079":10.395,"2080":10.4,"2081":10.405,"2082":10.41,"2083":10.415,"2084":10.42,"2085":10.425,"2086":10.43,"2087":10.435,"2088":10.44,"2089":10.445,"2090":10.45,"2091":10.455,"2092":10.46,"2093":10.465,"2094":10.47,"2095":10.475,"2096":10.48,"2097":10.485,"2098":10.49,"2099":10.495,"2100":10.5,"2101":10.505,"2102":10.51,"2103":10.515,"2104":10.52,"2105":10.525,"2106":10.53,"2107":10.535,"2108":10.54,"2109":10.545,"2110":10.55,"2111":10.555,"2112":10.56,"2113":10.565,"2114":10.57,"2115":10.575,"2116":10.58,"2117":10.585,"2118":10.59,"2119":10.595,"2120":10.6,"2121":10.605,"2122":10.61,"2123":10.615,"2124":10.62,"2125":10.625,"2126":10.63,"2127":10.635,"2128":10.64,"2129":10.645,"2130":10.65,"2131":10.655,"2132":10.66,"2133":10.665,"2134":10.67,"2135":10.675,"2136":10.68,"2137":10.685,"2138":10.69,"2139":10.695,"2140":10.7,"2141":10.705,"2142":10.71,"2143":10.715,"2144":10.72,"2145":10.725,"2146":10.73,"2147":10.735,"2148":10.74,"2149":10.745,"2150":10.75,"2151":10.755,"2152":10.76,"2153":10.765,"2154":10.77,"2155":10.775,"2156":10.78,"2157":10.785,"2158":10.79,"2159":10.795,"2160":10.8,"2161":10.805,"2162":10.81,"2163":10.815,"2164":10.82,"2165":10.825,"2166":10.83,"2167":10.835,"2168":10.84,"2169":10.845,"2170":10.85,"2171":10.855,"2172":10.86,"2173":10.865,"2174":10.87,"2175":10.875,"2176":10.88,"2177":10.885,"2178":10.89,"2179":10.895,"2180":10.9,"2181":10.905,"2182":10.91,"2183":10.915,"2184":10.92,"2185":10.925,"2186":10.93,"2187":10.935,"2188":10.94,"2189":10.945,"2190":10.95,"2191":10.955,"2192":10.96,"2193":10.965,"2194":10.97,"2195":10.975,"2196":10.98,"2197":10.985,"2198":10.99,"2199":10.995,"2200":11.0,"2201":11.005,"2202":11.01,"2203":11.015,"2204":11.02,"2205":11.025,"2206":11.03,"2207":11.035,"2208":11.04,"2209":11.045,"2210":11.05,"2211":11.055,"2212":11.06,"2213":11.065,"2214":11.07,"2215":11.075,"2216":11.08,"2217":11.085,"2218":11.09,"2219":11.095,"2220":11.1,"2221":11.105,"2222":11.11,"2223":11.115,"2224":11.12,"2225":11.125,"2226":11.13,"2227":11.135,"2228":11.14,"2229":11.145,"2230":11.15,"2231":11.155,"2232":11.16,"2233":11.165,"2234":11.17,"2235":11.175,"2236":11.18,"2237":11.185,"2238":11.19,"2239":11.195,"2240":11.2,"2241":11.205,"2242":11.21,"2243":11.215,"2244":11.22,"2245":11.225,"2246":11.23,"2247":11.235,"2248":11.24,"2249":11.245,"2250":11.25,"2251":11.255,"2252":11.26,"2253":11.265,"2254":11.27,"2255":11.275,"2256":11.28,"2257":11.285,"2258":11.29,"2259":11.295,"2260":11.3,"2261":11.305,"2262":11.31,"2263":11.315,"2264":11.32,"2265":11.325,"2266":11.33,"2267":11.335,"2268":11.34,"2269":11.345,"2270":11.35,"2271":11.355,"2272":11.36,"2273":11.365,"2274":11.37,"2275":11.375,"2276":11.38,"2277":11.385,"2278":11.39,"2279":11.395,"2280":11.4,"2281":11.405,"2282":11.41,"2283":11.415,"2284":11.42,"2285":11.425,"2286":11.43,"2287":11.435,"2288":11.44,"2289":11.445,"2290":11.45,"2291":11.455,"2292":11.46,"2293":11.465,"2294":11.47,"2295":11.475,"2296":11.48,"2297":11.485,"2298":11.49,"2299":11.495,"2300":11.5,"2301":11.505,"2302":11.51,"2303":11.515,"2304":11.52,"2305":11.525,"2306":11.53,"2307":11.535,"2308":11.54,"2309":11.545,"2310":11.55,"2311":11.555,"2312":11.56,"2313":11.565,"2314":11.57,"2315":11.575,"2316":11.58,"2317":11.585,"2318":11.59,"2319":11.595,"2320":11.6,"2321":11.605,"2322":11.61,"2323":11.615,"2324":11.62,"2325":11.625,"2326":11.63,"2327":11.635,"2328":11.64,"2329":11.645,"2330":11.65,"2331":11.655,"2332":11.66,"2333":11.665,"2334":11.67,"2335":11.675,"2336":11.68,"2337":11.685,"2338":11.69,"2339":11.695,"2340":11.7,"2341":11.705,"2342":11.71,"2343":11.715,"2344":11.72,"2345":11.725,"2346":11.73,"2347":11.735,"2348":11.74,"2349":11.745,"2350":11.75,"2351":11.755,"2352":11.76,"2353":11.765,"2354":11.77,"2355":11.775,"2356":11.78,"2357":11.785,"2358":11.79,"2359":11.795,"2360":11.8,"2361":11.805,"2362":11.81,"2363":11.815,"2364":11.82,"2365":11.825,"2366":11.83,"2367":11.835,"2368":11.84,"2369":11.845,"2370":11.85,"2371":11.855,"2372":11.86,"2373":11.865,"2374":11.87,"2375":11.875,"2376":11.88,"2377":11.885,"2378":11.89,"2379":11.895,"2380":11.9,"2381":11.905,"2382":11.91,"2383":11.915,"2384":11.92,"2385":11.925,"2386":11.93,"2387":11.935,"2388":11.94,"2389":11.945,"2390":11.95,"2391":11.955,"2392":11.96,"2393":11.965,"2394":11.97,"2395":11.975,"2396":11.98,"2397":11.985,"2398":11.99,"2399":11.995,"2400":12.0,"2401":12.005,"2402":12.01,"2403":12.015,"2404":12.02,"2405":12.025,"2406":12.03,"2407":12.035,"2408":12.04,"2409":12.045,"2410":12.05,"2411":12.055,"2412":12.06,"2413":12.065,"2414":12.07,"2415":12.075,"2416":12.08,"2417":12.085,"2418":12.09,"2419":12.095,"2420":12.1,"2421":12.105,"2422":12.11,"2423":12.115,"2424":12.12,"2425":12.125,"2426":12.13,"2427":12.135,"2428":12.14,"2429":12.145,"2430":12.15,"2431":12.155,"2432":12.16,"2433":12.165,"2434":12.17,"2435":12.175,"2436":12.18,"2437":12.185,"2438":12.19,"2439":12.195,"2440":12.2,"2441":12.205,"2442":12.21,"2443":12.215,"2444":12.22,"2445":12.225,"2446":12.23,"2447":12.235,"2448":12.24,"2449":12.245,"2450":12.25,"2451":12.255,"2452":12.26,"2453":12.265,"2454":12.27,"2455":12.275,"2456":12.28,"2457":12.285,"2458":12.29,"2459":12.295,"2460":12.3,"2461":12.305,"2462":12.31,"2463":12.315,"2464":12.32,"2465":12.325,"2466":12.33,"2467":12.335,"2468":12.34,"2469":12.345,"2470":12.35,"2471":12.355,"2472":12.36,"2473":12.365,"2474":12.37,"2475":12.375,"2476":12.38,"2477":12.385,"2478":12.39,"2479":12.395,"2480":12.4,"2481":12.405,"2482":12.41,"2483":12.415,"2484":12.42,"2485":12.425,"2486":12.43,"2487":12.435,"2488":12.44,"2489":12.445,"2490":12.45,"2491":12.455,"2492":12.46,"2493":12.465,"2494":12.47,"2495":12.475,"2496":12.48,"2497":12.485,"2498":12.49,"2499":12.495,"2500":12.5,"2501":12.505,"2502":12.51,"2503":12.515,"2504":12.52,"2505":12.525,"2506":12.53,"2507":12.535,"2508":12.54,"2509":12.545,"2510":12.55,"2511":12.555,"2512":12.56,"2513":12.565,"2514":12.57,"2515":12.575,"2516":12.58,"2517":12.585,"2518":12.59,"2519":12.595,"2520":12.6,"2521":12.605,"2522":12.61,"2523":12.615,"2524":12.62,"2525":12.625,"2526":12.63,"2527":12.635,"2528":12.64,"2529":12.645,"2530":12.65,"2531":12.655,"2532":12.66,"2533":12.665,"2534":12.67,"2535":12.675,"2536":12.68,"2537":12.685,"2538":12.69,"2539":12.695,"2540":12.7,"2541":12.705,"2542":12.71,"2543":12.715,"2544":12.72,"2545":12.725,"2546":12.73,"2547":12.735,"2548":12.74,"2549":12.745,"2550":12.75,"2551":12.755,"2552":12.76,"2553":12.765,"2554":12.77,"2555":12.775,"2556":12.78,"2557":12.785,"2558":12.79,"2559":12.795,"2560":12.8,"2561":12.805,"2562":12.81,"2563":12.815,"2564":12.82,"2565":12.825,"2566":12.83,"2567":12.835,"2568":12.84,"2569":12.845,"2570":12.85,"2571":12.855,"2572":12.86,"2573":12.865,"2574":12.87,"2575":12.875,"2576":12.88,"2577":12.885,"2578":12.89,"2579":12.895,"2580":12.9,"2581":12.905,"2582":12.91,"2583":12.915,"2584":12.92,"2585":12.925,"2586":12.93,"2587":12.935,"2588":12.94,"2589":12.945,"2590":12.95,"2591":12.955,"2592":12.96,"2593":12.965,"2594":12.97,"2595":12.975,"2596":12.98,"2597":12.985,"2598":12.99,"2599":12.995,"2600":13.0,"2601":13.005,"2602":13.01,"2603":13.015,"2604":13.02,"2605":13.025,"2606":13.03,"2607":13.035,"2608":13.04,"2609":13.045,"2610":13.05,"2611":13.055,"2612":13.06,"2613":13.065,"2614":13.07,"2615":13.075,"2616":13.08,"2617":13.085,"2618":13.09,"2619":13.095,"2620":13.1,"2621":13.105,"2622":13.11,"2623":13.115,"2624":13.12,"2625":13.125,"2626":13.13,"2627":13.135,"2628":13.14,"2629":13.145,"2630":13.15,"2631":13.155,"2632":13.16,"2633":13.165,"2634":13.17,"2635":13.175,"2636":13.18,"2637":13.185,"2638":13.19,"2639":13.195,"2640":13.2,"2641":13.205,"2642":13.21,"2643":13.215,"2644":13.22,"2645":13.225,"2646":13.23,"2647":13.235,"2648":13.24,"2649":13.245,"2650":13.25,"2651":13.255,"2652":13.26,"2653":13.265,"2654":13.27,"2655":13.275,"2656":13.28,"2657":13.285,"2658":13.29,"2659":13.295,"2660":13.3,"2661":13.305,"2662":13.31,"2663":13.315,"2664":13.32,"2665":13.325,"2666":13.33,"2667":13.335,"2668":13.34,"2669":13.345,"2670":13.35,"2671":13.355,"2672":13.36,"2673":13.365,"2674":13.37,"2675":13.375,"2676":13.38,"2677":13.385,"2678":13.39,"2679":13.395,"2680":13.4,"2681":13.405,"2682":13.41,"2683":13.415,"2684":13.42,"2685":13.425,"2686":13.43,"2687":13.435,"2688":13.44,"2689":13.445,"2690":13.45,"2691":13.455,"2692":13.46,"2693":13.465,"2694":13.47,"2695":13.475,"2696":13.48,"2697":13.485,"2698":13.49,"2699":13.495,"2700":13.5,"2701":13.505,"2702":13.51,"2703":13.515,"2704":13.52,"2705":13.525,"2706":13.53,"2707":13.535,"2708":13.54,"2709":13.545,"2710":13.55,"2711":13.555,"2712":13.56,"2713":13.565,"2714":13.57,"2715":13.575,"2716":13.58,"2717":13.585,"2718":13.59,"2719":13.595,"2720":13.6,"2721":13.605,"2722":13.61,"2723":13.615,"2724":13.62,"2725":13.625,"2726":13.63,"2727":13.635,"2728":13.64,"2729":13.645,"2730":13.65,"2731":13.655,"2732":13.66,"2733":13.665,"2734":13.67,"2735":13.675,"2736":13.68,"2737":13.685,"2738":13.69,"2739":13.695,"2740":13.7,"2741":13.705,"2742":13.71,"2743":13.715,"2744":13.72,"2745":13.725,"2746":13.73,"2747":13.735,"2748":13.74,"2749":13.745,"2750":13.75,"2751":13.755,"2752":13.76,"2753":13.765,"2754":13.77,"2755":13.775,"2756":13.78,"2757":13.785,"2758":13.79,"2759":13.795,"2760":13.8,"2761":13.805,"2762":13.81,"2763":13.815,"2764":13.82,"2765":13.825,"2766":13.83,"2767":13.835,"2768":13.84,"2769":13.845,"2770":13.85,"2771":13.855,"2772":13.86,"2773":13.865,"2774":13.87,"2775":13.875,"2776":13.88,"2777":13.885,"2778":13.89,"2779":13.895,"2780":13.9,"2781":13.905,"2782":13.91,"2783":13.915,"2784":13.92,"2785":13.925,"2786":13.93,"2787":13.935,"2788":13.94,"2789":13.945,"2790":13.95,"2791":13.955,"2792":13.96,"2793":13.965,"2794":13.97,"2795":13.975,"2796":13.98,"2797":13.985,"2798":13.99,"2799":13.995,"2800":14.0,"2801":14.005,"2802":14.01,"2803":14.015,"2804":14.02,"2805":14.025,"2806":14.03,"2807":14.035,"2808":14.04,"2809":14.045,"2810":14.05,"2811":14.055,"2812":14.06,"2813":14.065,"2814":14.07,"2815":14.075,"2816":14.08,"2817":14.085,"2818":14.09,"2819":14.095,"2820":14.1,"2821":14.105,"2822":14.11,"2823":14.115,"2824":14.12,"2825":14.125,"2826":14.13,"2827":14.135,"2828":14.14,"2829":14.145,"2830":14.15,"2831":14.155,"2832":14.16,"2833":14.165,"2834":14.17,"2835":14.175,"2836":14.18,"2837":14.185,"2838":14.19,"2839":14.195,"2840":14.2,"2841":14.205,"2842":14.21,"2843":14.215,"2844":14.22,"2845":14.225,"2846":14.23,"2847":14.235,"2848":14.24,"2849":14.245,"2850":14.25,"2851":14.255,"2852":14.26,"2853":14.265,"2854":14.27,"2855":14.275,"2856":14.28,"2857":14.285,"2858":14.29,"2859":14.295,"2860":14.3,"2861":14.305,"2862":14.31,"2863":14.315,"2864":14.32,"2865":14.325,"2866":14.33,"2867":14.335,"2868":14.34,"2869":14.345,"2870":14.35,"2871":14.355,"2872":14.36,"2873":14.365,"2874":14.37,"2875":14.375,"2876":14.38,"2877":14.385,"2878":14.39,"2879":14.395,"2880":14.4,"2881":14.405,"2882":14.41,"2883":14.415,"2884":14.42,"2885":14.425,"2886":14.43,"2887":14.435,"2888":14.44,"2889":14.445,"2890":14.45,"2891":14.455,"2892":14.46,"2893":14.465,"2894":14.47,"2895":14.475,"2896":14.48,"2897":14.485,"2898":14.49,"2899":14.495,"2900":14.5,"2901":14.505,"2902":14.51,"2903":14.515,"2904":14.52,"2905":14.525,"2906":14.53,"2907":14.535,"2908":14.54,"2909":14.545,"2910":14.55,"2911":14.555,"2912":14.56,"2913":14.565,"2914":14.57,"2915":14.575,"2916":14.58,"2917":14.585,"2918":14.59,"2919":14.595,"2920":14.6,"2921":14.605,"2922":14.61,"2923":14.615,"2924":14.62,"2925":14.625,"2926":14.63,"2927":14.635,"2928":14.64,"2929":14.645,"2930":14.65,"2931":14.655,"2932":14.66,"2933":14.665,"2934":14.67,"2935":14.675,"2936":14.68,"2937":14.685,"2938":14.69,"2939":14.695,"2940":14.7,"2941":14.705,"2942":14.71,"2943":14.715,"2944":14.72,"2945":14.725,"2946":14.73,"2947":14.735,"2948":14.74,"2949":14.745,"2950":14.75,"2951":14.755,"2952":14.76,"2953":14.765,"2954":14.77,"2955":14.775,"2956":14.78,"2957":14.785,"2958":14.79,"2959":14.795,"2960":14.8,"2961":14.805,"2962":14.81,"2963":14.815,"2964":14.82,"2965":14.825,"2966":14.83,"2967":14.835,"2968":14.84,"2969":14.845,"2970":14.85,"2971":14.855,"2972":14.86,"2973":14.865,"2974":14.87,"2975":14.875,"2976":14.88,"2977":14.885,"2978":14.89,"2979":14.895,"2980":14.9,"2981":14.905,"2982":14.91,"2983":14.915,"2984":14.92,"2985":14.925,"2986":14.93,"2987":14.935,"2988":14.94,"2989":14.945,"2990":14.95,"2991":14.955,"2992":14.96,"2993":14.965,"2994":14.97,"2995":14.975,"2996":14.98,"2997":14.985,"2998":14.99,"2999":14.995,"3000":15.0,"3001":15.005,"3002":15.01,"3003":15.015,"3004":15.02,"3005":15.025,"3006":15.03,"3007":15.035,"3008":15.04,"3009":15.045,"3010":15.05,"3011":15.055,"3012":15.06,"3013":15.065,"3014":15.07,"3015":15.075,"3016":15.08,"3017":15.085,"3018":15.09,"3019":15.095,"3020":15.1,"3021":15.105,"3022":15.11,"3023":15.115,"3024":15.12,"3025":15.125,"3026":15.13,"3027":15.135,"3028":15.14,"3029":15.145,"3030":15.15,"3031":15.155,"3032":15.16,"3033":15.165,"3034":15.17,"3035":15.175,"3036":15.18,"3037":15.185,"3038":15.19,"3039":15.195,"3040":15.2,"3041":15.205,"3042":15.21,"3043":15.215,"3044":15.22,"3045":15.225,"3046":15.23,"3047":15.235,"3048":15.24,"3049":15.245,"3050":15.25,"3051":15.255,"3052":15.26,"3053":15.265,"3054":15.27,"3055":15.275,"3056":15.28,"3057":15.285,"3058":15.29,"3059":15.295,"3060":15.3,"3061":15.305,"3062":15.31,"3063":15.315,"3064":15.32,"3065":15.325,"3066":15.33,"3067":15.335,"3068":15.34,"3069":15.345,"3070":15.35,"3071":15.355,"3072":15.36,"3073":15.365,"3074":15.37,"3075":15.375,"3076":15.38,"3077":15.385,"3078":15.39,"3079":15.395,"3080":15.4,"3081":15.405,"3082":15.41,"3083":15.415,"3084":15.42,"3085":15.425,"3086":15.43,"3087":15.435,"3088":15.44,"3089":15.445,"3090":15.45,"3091":15.455,"3092":15.46,"3093":15.465,"3094":15.47,"3095":15.475,"3096":15.48,"3097":15.485,"3098":15.49,"3099":15.495,"3100":15.5,"3101":15.505,"3102":15.51,"3103":15.515,"3104":15.52,"3105":15.525,"3106":15.53,"3107":15.535,"3108":15.54,"3109":15.545,"3110":15.55,"3111":15.555,"3112":15.56,"3113":15.565,"3114":15.57,"3115":15.575,"3116":15.58,"3117":15.585,"3118":15.59,"3119":15.595,"3120":15.6,"3121":15.605,"3122":15.61,"3123":15.615,"3124":15.62,"3125":15.625,"3126":15.63,"3127":15.635,"3128":15.64,"3129":15.645,"3130":15.65,"3131":15.655,"3132":15.66,"3133":15.665,"3134":15.67,"3135":15.675,"3136":15.68,"3137":15.685,"3138":15.69,"3139":15.695,"3140":15.7,"3141":15.705,"3142":15.71,"3143":15.715,"3144":15.72,"3145":15.725,"3146":15.73,"3147":15.735,"3148":15.74,"3149":15.745,"3150":15.75,"3151":15.755,"3152":15.76,"3153":15.765,"3154":15.77,"3155":15.775,"3156":15.78,"3157":15.785,"3158":15.79,"3159":15.795,"3160":15.8,"3161":15.805,"3162":15.81,"3163":15.815,"3164":15.82,"3165":15.825,"3166":15.83,"3167":15.835,"3168":15.84,"3169":15.845,"3170":15.85,"3171":15.855,"3172":15.86,"3173":15.865,"3174":15.87,"3175":15.875,"3176":15.88,"3177":15.885,"3178":15.89,"3179":15.895,"3180":15.9,"3181":15.905,"3182":15.91,"3183":15.915,"3184":15.92,"3185":15.925,"3186":15.93,"3187":15.935,"3188":15.94,"3189":15.945,"3190":15.95,"3191":15.955,"3192":15.96,"3193":15.965,"3194":15.97,"3195":15.975,"3196":15.98,"3197":15.985,"3198":15.99,"3199":15.995,"3200":16.0,"3201":16.005,"3202":16.01,"3203":16.015,"3204":16.02,"3205":16.025,"3206":16.03,"3207":16.035,"3208":16.04,"3209":16.045,"3210":16.05,"3211":16.055,"3212":16.06,"3213":16.065,"3214":16.07,"3215":16.075,"3216":16.08,"3217":16.085,"3218":16.09,"3219":16.095,"3220":16.1,"3221":16.105,"3222":16.11,"3223":16.115,"3224":16.12,"3225":16.125,"3226":16.13,"3227":16.135,"3228":16.14,"3229":16.145,"3230":16.15,"3231":16.155,"3232":16.16,"3233":16.165,"3234":16.17,"3235":16.175,"3236":16.18,"3237":16.185,"3238":16.19,"3239":16.195,"3240":16.2,"3241":16.205,"3242":16.21,"3243":16.215,"3244":16.22,"3245":16.225,"3246":16.23,"3247":16.235,"3248":16.24,"3249":16.245,"3250":16.25,"3251":16.255,"3252":16.26,"3253":16.265,"3254":16.27,"3255":16.275,"3256":16.28,"3257":16.285,"3258":16.29,"3259":16.295,"3260":16.3,"3261":16.305,"3262":16.31,"3263":16.315,"3264":16.32,"3265":16.325,"3266":16.33,"3267":16.335,"3268":16.34,"3269":16.345,"3270":16.35,"3271":16.355,"3272":16.36,"3273":16.365,"3274":16.37,"3275":16.375,"3276":16.38,"3277":16.385,"3278":16.39,"3279":16.395,"3280":16.4,"3281":16.405,"3282":16.41,"3283":16.415,"3284":16.42,"3285":16.425,"3286":16.43,"3287":16.435,"3288":16.44,"3289":16.445,"3290":16.45,"3291":16.455,"3292":16.46,"3293":16.465,"3294":16.47,"3295":16.475,"3296":16.48,"3297":16.485,"3298":16.49,"3299":16.495,"3300":16.5,"3301":16.505,"3302":16.51,"3303":16.515,"3304":16.52,"3305":16.525,"3306":16.53,"3307":16.535,"3308":16.54,"3309":16.545,"3310":16.55,"3311":16.555,"3312":16.56,"3313":16.565,"3314":16.57,"3315":16.575,"3316":16.58,"3317":16.585,"3318":16.59,"3319":16.595,"3320":16.6,"3321":16.605,"3322":16.61,"3323":16.615,"3324":16.62,"3325":16.625,"3326":16.63,"3327":16.635,"3328":16.64,"3329":16.645,"3330":16.65,"3331":16.655,"3332":16.66,"3333":16.665,"3334":16.67,"3335":16.675,"3336":16.68,"3337":16.685,"3338":16.69,"3339":16.695,"3340":16.7,"3341":16.705,"3342":16.71,"3343":16.715,"3344":16.72,"3345":16.725,"3346":16.73,"3347":16.735,"3348":16.74,"3349":16.745,"3350":16.75,"3351":16.755,"3352":16.76,"3353":16.765,"3354":16.77,"3355":16.775,"3356":16.78,"3357":16.785,"3358":16.79,"3359":16.795,"3360":16.8,"3361":16.805,"3362":16.81,"3363":16.815,"3364":16.82,"3365":16.825,"3366":16.83,"3367":16.835,"3368":16.84,"3369":16.845,"3370":16.85,"3371":16.855,"3372":16.86,"3373":16.865,"3374":16.87,"3375":16.875,"3376":16.88,"3377":16.885,"3378":16.89,"3379":16.895,"3380":16.9,"3381":16.905,"3382":16.91,"3383":16.915,"3384":16.92,"3385":16.925,"3386":16.93,"3387":16.935,"3388":16.94,"3389":16.945,"3390":16.95,"3391":16.955,"3392":16.96,"3393":16.965,"3394":16.97,"3395":16.975,"3396":16.98,"3397":16.985,"3398":16.99,"3399":16.995,"3400":17.0,"3401":17.005,"3402":17.01,"3403":17.015,"3404":17.02,"3405":17.025,"3406":17.03,"3407":17.035,"3408":17.04,"3409":17.045,"3410":17.05,"3411":17.055,"3412":17.06,"3413":17.065,"3414":17.07,"3415":17.075,"3416":17.08,"3417":17.085,"3418":17.09,"3419":17.095,"3420":17.1,"3421":17.105,"3422":17.11,"3423":17.115,"3424":17.12,"3425":17.125,"3426":17.13,"3427":17.135,"3428":17.14,"3429":17.145,"3430":17.15,"3431":17.155,"3432":17.16,"3433":17.165,"3434":17.17,"3435":17.175,"3436":17.18,"3437":17.185,"3438":17.19,"3439":17.195,"3440":17.2,"3441":17.205,"3442":17.21,"3443":17.215,"3444":17.22,"3445":17.225,"3446":17.23,"3447":17.235,"3448":17.24,"3449":17.245,"3450":17.25,"3451":17.255,"3452":17.26,"3453":17.265,"3454":17.27,"3455":17.275,"3456":17.28,"3457":17.285,"3458":17.29,"3459":17.295,"3460":17.3,"3461":17.305,"3462":17.31,"3463":17.315,"3464":17.32,"3465":17.325,"3466":17.33,"3467":17.335,"3468":17.34,"3469":17.345,"3470":17.35,"3471":17.355,"3472":17.36,"3473":17.365,"3474":17.37,"3475":17.375,"3476":17.38,"3477":17.385,"3478":17.39,"3479":17.395,"3480":17.4,"3481":17.405,"3482":17.41,"3483":17.415,"3484":17.42,"3485":17.425,"3486":17.43,"3487":17.435,"3488":17.44,"3489":17.445,"3490":17.45,"3491":17.455,"3492":17.46,"3493":17.465,"3494":17.47,"3495":17.475,"3496":17.48,"3497":17.485,"3498":17.49,"3499":17.495,"3500":17.5,"3501":17.505,"3502":17.51,"3503":17.515,"3504":17.52,"3505":17.525,"3506":17.53,"3507":17.535,"3508":17.54,"3509":17.545,"3510":17.55,"3511":17.555,"3512":17.56,"3513":17.565,"3514":17.57,"3515":17.575,"3516":17.58,"3517":17.585,"3518":17.59,"3519":17.595,"3520":17.6,"3521":17.605,"3522":17.61,"3523":17.615,"3524":17.62,"3525":17.625,"3526":17.63,"3527":17.635,"3528":17.64,"3529":17.645,"3530":17.65,"3531":17.655,"3532":17.66,"3533":17.665,"3534":17.67,"3535":17.675,"3536":17.68,"3537":17.685,"3538":17.69,"3539":17.695,"3540":17.7,"3541":17.705,"3542":17.71,"3543":17.715,"3544":17.72,"3545":17.725,"3546":17.73,"3547":17.735,"3548":17.74,"3549":17.745,"3550":17.75,"3551":17.755,"3552":17.76,"3553":17.765,"3554":17.77,"3555":17.775,"3556":17.78,"3557":17.785,"3558":17.79,"3559":17.795,"3560":17.8,"3561":17.805,"3562":17.81,"3563":17.815,"3564":17.82,"3565":17.825,"3566":17.83,"3567":17.835,"3568":17.84,"3569":17.845,"3570":17.85,"3571":17.855,"3572":17.86,"3573":17.865,"3574":17.87,"3575":17.875,"3576":17.88,"3577":17.885,"3578":17.89,"3579":17.895,"3580":17.9,"3581":17.905,"3582":17.91,"3583":17.915,"3584":17.92,"3585":17.925,"3586":17.93,"3587":17.935,"3588":17.94,"3589":17.945,"3590":17.95,"3591":17.955,"3592":17.96,"3593":17.965,"3594":17.97,"3595":17.975,"3596":17.98,"3597":17.985,"3598":17.99,"3599":17.995,"3600":18.0,"3601":18.005,"3602":18.01,"3603":18.015,"3604":18.02,"3605":18.025,"3606":18.03,"3607":18.035,"3608":18.04,"3609":18.045,"3610":18.05,"3611":18.055,"3612":18.06,"3613":18.065,"3614":18.07,"3615":18.075,"3616":18.08,"3617":18.085,"3618":18.09,"3619":18.095,"3620":18.1,"3621":18.105,"3622":18.11,"3623":18.115,"3624":18.12,"3625":18.125,"3626":18.13,"3627":18.135,"3628":18.14,"3629":18.145,"3630":18.15,"3631":18.155,"3632":18.16,"3633":18.165,"3634":18.17,"3635":18.175,"3636":18.18,"3637":18.185,"3638":18.19,"3639":18.195,"3640":18.2,"3641":18.205,"3642":18.21,"3643":18.215,"3644":18.22,"3645":18.225,"3646":18.23,"3647":18.235,"3648":18.24,"3649":18.245,"3650":18.25,"3651":18.255,"3652":18.26,"3653":18.265,"3654":18.27,"3655":18.275,"3656":18.28,"3657":18.285,"3658":18.29,"3659":18.295,"3660":18.3,"3661":18.305,"3662":18.31,"3663":18.315,"3664":18.32,"3665":18.325,"3666":18.33,"3667":18.335,"3668":18.34,"3669":18.345,"3670":18.35,"3671":18.355,"3672":18.36,"3673":18.365,"3674":18.37,"3675":18.375,"3676":18.38,"3677":18.385,"3678":18.39,"3679":18.395,"3680":18.4,"3681":18.405,"3682":18.41,"3683":18.415,"3684":18.42,"3685":18.425,"3686":18.43,"3687":18.435,"3688":18.44,"3689":18.445,"3690":18.45,"3691":18.455,"3692":18.46,"3693":18.465,"3694":18.47,"3695":18.475,"3696":18.48,"3697":18.485,"3698":18.49,"3699":18.495,"3700":18.5,"3701":18.505,"3702":18.51,"3703":18.515,"3704":18.52,"3705":18.525,"3706":18.53,"3707":18.535,"3708":18.54,"3709":18.545,"3710":18.55,"3711":18.555,"3712":18.56,"3713":18.565,"3714":18.57,"3715":18.575,"3716":18.58,"3717":18.585,"3718":18.59,"3719":18.595,"3720":18.6,"3721":18.605,"3722":18.61,"3723":18.615,"3724":18.62,"3725":18.625,"3726":18.63,"3727":18.635,"3728":18.64,"3729":18.645,"3730":18.65,"3731":18.655,"3732":18.66,"3733":18.665,"3734":18.67,"3735":18.675,"3736":18.68,"3737":18.685,"3738":18.69,"3739":18.695,"3740":18.7,"3741":18.705,"3742":18.71,"3743":18.715,"3744":18.72,"3745":18.725,"3746":18.73,"3747":18.735,"3748":18.74,"3749":18.745,"3750":18.75,"3751":18.755,"3752":18.76,"3753":18.765,"3754":18.77,"3755":18.775,"3756":18.78,"3757":18.785,"3758":18.79,"3759":18.795,"3760":18.8,"3761":18.805,"3762":18.81,"3763":18.815,"3764":18.82,"3765":18.825,"3766":18.83,"3767":18.835,"3768":18.84,"3769":18.845,"3770":18.85,"3771":18.855,"3772":18.86,"3773":18.865,"3774":18.87,"3775":18.875,"3776":18.88,"3777":18.885,"3778":18.89,"3779":18.895,"3780":18.9,"3781":18.905,"3782":18.91,"3783":18.915,"3784":18.92,"3785":18.925,"3786":18.93,"3787":18.935,"3788":18.94,"3789":18.945,"3790":18.95,"3791":18.955,"3792":18.96,"3793":18.965,"3794":18.97,"3795":18.975,"3796":18.98,"3797":18.985,"3798":18.99,"3799":18.995,"3800":19.0,"3801":19.005,"3802":19.01,"3803":19.015,"3804":19.02,"3805":19.025,"3806":19.03,"3807":19.035,"3808":19.04,"3809":19.045,"3810":19.05,"3811":19.055,"3812":19.06,"3813":19.065,"3814":19.07,"3815":19.075,"3816":19.08,"3817":19.085,"3818":19.09,"3819":19.095,"3820":19.1,"3821":19.105,"3822":19.11,"3823":19.115,"3824":19.12,"3825":19.125,"3826":19.13,"3827":19.135,"3828":19.14,"3829":19.145,"3830":19.15,"3831":19.155,"3832":19.16,"3833":19.165,"3834":19.17,"3835":19.175,"3836":19.18,"3837":19.185,"3838":19.19,"3839":19.195,"3840":19.2,"3841":19.205,"3842":19.21,"3843":19.215,"3844":19.22,"3845":19.225,"3846":19.23,"3847":19.235,"3848":19.24,"3849":19.245,"3850":19.25,"3851":19.255,"3852":19.26,"3853":19.265,"3854":19.27,"3855":19.275,"3856":19.28,"3857":19.285,"3858":19.29,"3859":19.295,"3860":19.3,"3861":19.305,"3862":19.31,"3863":19.315,"3864":19.32,"3865":19.325,"3866":19.33,"3867":19.335,"3868":19.34,"3869":19.345,"3870":19.35,"3871":19.355,"3872":19.36,"3873":19.365,"3874":19.37,"3875":19.375,"3876":19.38,"3877":19.385,"3878":19.39,"3879":19.395,"3880":19.4,"3881":19.405,"3882":19.41,"3883":19.415,"3884":19.42,"3885":19.425,"3886":19.43,"3887":19.435,"3888":19.44,"3889":19.445,"3890":19.45,"3891":19.455,"3892":19.46,"3893":19.465,"3894":19.47,"3895":19.475,"3896":19.48,"3897":19.485,"3898":19.49,"3899":19.495,"3900":19.5,"3901":19.505,"3902":19.51,"3903":19.515,"3904":19.52,"3905":19.525,"3906":19.53,"3907":19.535,"3908":19.54,"3909":19.545,"3910":19.55,"3911":19.555,"3912":19.56,"3913":19.565,"3914":19.57,"3915":19.575,"3916":19.58,"3917":19.585,"3918":19.59,"3919":19.595,"3920":19.6,"3921":19.605,"3922":19.61,"3923":19.615,"3924":19.62,"3925":19.625,"3926":19.63,"3927":19.635,"3928":19.64,"3929":19.645,"3930":19.65,"3931":19.655,"3932":19.66,"3933":19.665,"3934":19.67,"3935":19.675,"3936":19.68,"3937":19.685,"3938":19.69,"3939":19.695,"3940":19.7,"3941":19.705,"3942":19.71,"3943":19.715,"3944":19.72,"3945":19.725,"3946":19.73,"3947":19.735,"3948":19.74,"3949":19.745,"3950":19.75,"3951":19.755,"3952":19.76,"3953":19.765,"3954":19.77,"3955":19.775,"3956":19.78,"3957":19.785,"3958":19.79,"3959":19.795,"3960":19.8,"3961":19.805,"3962":19.81,"3963":19.815,"3964":19.82,"3965":19.825,"3966":19.83,"3967":19.835,"3968":19.84,"3969":19.845,"3970":19.85,"3971":19.855,"3972":19.86,"3973":19.865,"3974":19.87,"3975":19.875,"3976":19.88,"3977":19.885,"3978":19.89,"3979":19.895,"3980":19.9,"3981":19.905,"3982":19.91,"3983":19.915,"3984":19.92,"3985":19.925,"3986":19.93,"3987":19.935,"3988":19.94,"3989":19.945,"3990":19.95,"3991":19.955,"3992":19.96,"3993":19.965,"3994":19.97,"3995":19.975,"3996":19.98,"3997":19.985,"3998":19.99,"3999":19.995,"4000":20.0,"4001":20.005,"4002":20.01,"4003":20.015,"4004":20.02,"4005":20.025,"4006":20.03,"4007":20.035,"4008":20.04,"4009":20.045,"4010":20.05,"4011":20.055,"4012":20.06,"4013":20.065,"4014":20.07,"4015":20.075,"4016":20.08,"4017":20.085,"4018":20.09,"4019":20.095,"4020":20.1,"4021":20.105,"4022":20.11,"4023":20.115,"4024":20.12,"4025":20.125,"4026":20.13,"4027":20.135,"4028":20.14,"4029":20.145,"4030":20.15,"4031":20.155,"4032":20.16,"4033":20.165,"4034":20.17,"4035":20.175,"4036":20.18,"4037":20.185,"4038":20.19,"4039":20.195,"4040":20.2,"4041":20.205,"4042":20.21,"4043":20.215,"4044":20.22,"4045":20.225,"4046":20.23,"4047":20.235,"4048":20.24,"4049":20.245,"4050":20.25,"4051":20.255,"4052":20.26,"4053":20.265,"4054":20.27,"4055":20.275,"4056":20.28,"4057":20.285,"4058":20.29,"4059":20.295,"4060":20.3,"4061":20.305,"4062":20.31,"4063":20.315,"4064":20.32,"4065":20.325,"4066":20.33,"4067":20.335,"4068":20.34,"4069":20.345,"4070":20.35,"4071":20.355,"4072":20.36,"4073":20.365,"4074":20.37,"4075":20.375,"4076":20.38,"4077":20.385,"4078":20.39,"4079":20.395,"4080":20.4,"4081":20.405,"4082":20.41,"4083":20.415,"4084":20.42,"4085":20.425,"4086":20.43,"4087":20.435,"4088":20.44,"4089":20.445,"4090":20.45,"4091":20.455,"4092":20.46,"4093":20.465,"4094":20.47,"4095":20.475,"4096":20.48,"4097":20.485,"4098":20.49,"4099":20.495,"4100":20.5,"4101":20.505,"4102":20.51,"4103":20.515,"4104":20.52,"4105":20.525,"4106":20.53,"4107":20.535,"4108":20.54,"4109":20.545,"4110":20.55,"4111":20.555,"4112":20.56,"4113":20.565,"4114":20.57,"4115":20.575,"4116":20.58,"4117":20.585,"4118":20.59,"4119":20.595,"4120":20.6,"4121":20.605,"4122":20.61,"4123":20.615,"4124":20.62,"4125":20.625,"4126":20.63,"4127":20.635,"4128":20.64,"4129":20.645,"4130":20.65,"4131":20.655,"4132":20.66,"4133":20.665,"4134":20.67,"4135":20.675,"4136":20.68,"4137":20.685,"4138":20.69,"4139":20.695,"4140":20.7,"4141":20.705,"4142":20.71,"4143":20.715,"4144":20.72,"4145":20.725,"4146":20.73,"4147":20.735,"4148":20.74,"4149":20.745,"4150":20.75,"4151":20.755,"4152":20.76,"4153":20.765,"4154":20.77,"4155":20.775,"4156":20.78,"4157":20.785,"4158":20.79,"4159":20.795,"4160":20.8,"4161":20.805,"4162":20.81,"4163":20.815,"4164":20.82,"4165":20.825,"4166":20.83,"4167":20.835,"4168":20.84,"4169":20.845,"4170":20.85,"4171":20.855,"4172":20.86,"4173":20.865,"4174":20.87,"4175":20.875,"4176":20.88,"4177":20.885,"4178":20.89,"4179":20.895,"4180":20.9,"4181":20.905,"4182":20.91,"4183":20.915,"4184":20.92,"4185":20.925,"4186":20.93,"4187":20.935,"4188":20.94,"4189":20.945,"4190":20.95,"4191":20.955,"4192":20.96,"4193":20.965,"4194":20.97,"4195":20.975,"4196":20.98,"4197":20.985,"4198":20.99,"4199":20.995,"4200":21.0,"4201":21.005,"4202":21.01,"4203":21.015,"4204":21.02,"4205":21.025,"4206":21.03,"4207":21.035,"4208":21.04,"4209":21.045,"4210":21.05,"4211":21.055,"4212":21.06,"4213":21.065,"4214":21.07,"4215":21.075,"4216":21.08,"4217":21.085,"4218":21.09,"4219":21.095,"4220":21.1,"4221":21.105,"4222":21.11,"4223":21.115,"4224":21.12,"4225":21.125,"4226":21.13,"4227":21.135,"4228":21.14,"4229":21.145,"4230":21.15,"4231":21.155,"4232":21.16,"4233":21.165,"4234":21.17,"4235":21.175,"4236":21.18,"4237":21.185,"4238":21.19,"4239":21.195,"4240":21.2,"4241":21.205,"4242":21.21,"4243":21.215,"4244":21.22,"4245":21.225,"4246":21.23,"4247":21.235,"4248":21.24,"4249":21.245,"4250":21.25,"4251":21.255,"4252":21.26,"4253":21.265,"4254":21.27,"4255":21.275,"4256":21.28,"4257":21.285,"4258":21.29,"4259":21.295,"4260":21.3,"4261":21.305,"4262":21.31,"4263":21.315,"4264":21.32,"4265":21.325,"4266":21.33,"4267":21.335,"4268":21.34,"4269":21.345,"4270":21.35,"4271":21.355,"4272":21.36,"4273":21.365,"4274":21.37,"4275":21.375,"4276":21.38,"4277":21.385,"4278":21.39,"4279":21.395,"4280":21.4,"4281":21.405,"4282":21.41,"4283":21.415,"4284":21.42,"4285":21.425,"4286":21.43,"4287":21.435,"4288":21.44,"4289":21.445,"4290":21.45,"4291":21.455,"4292":21.46,"4293":21.465,"4294":21.47,"4295":21.475,"4296":21.48,"4297":21.485,"4298":21.49,"4299":21.495,"4300":21.5,"4301":21.505,"4302":21.51,"4303":21.515,"4304":21.52,"4305":21.525,"4306":21.53,"4307":21.535,"4308":21.54,"4309":21.545,"4310":21.55,"4311":21.555,"4312":21.56,"4313":21.565,"4314":21.57,"4315":21.575,"4316":21.58,"4317":21.585,"4318":21.59,"4319":21.595,"4320":21.6,"4321":21.605,"4322":21.61,"4323":21.615,"4324":21.62,"4325":21.625,"4326":21.63,"4327":21.635,"4328":21.64,"4329":21.645,"4330":21.65,"4331":21.655,"4332":21.66,"4333":21.665,"4334":21.67,"4335":21.675,"4336":21.68,"4337":21.685,"4338":21.69,"4339":21.695,"4340":21.7,"4341":21.705,"4342":21.71,"4343":21.715,"4344":21.72,"4345":21.725,"4346":21.73,"4347":21.735,"4348":21.74,"4349":21.745,"4350":21.75,"4351":21.755,"4352":21.76,"4353":21.765,"4354":21.77,"4355":21.775,"4356":21.78,"4357":21.785,"4358":21.79,"4359":21.795,"4360":21.8,"4361":21.805,"4362":21.81,"4363":21.815,"4364":21.82,"4365":21.825,"4366":21.83,"4367":21.835,"4368":21.84,"4369":21.845,"4370":21.85,"4371":21.855,"4372":21.86,"4373":21.865,"4374":21.87,"4375":21.875,"4376":21.88,"4377":21.885,"4378":21.89,"4379":21.895,"4380":21.9,"4381":21.905,"4382":21.91,"4383":21.915,"4384":21.92,"4385":21.925,"4386":21.93,"4387":21.935,"4388":21.94,"4389":21.945,"4390":21.95,"4391":21.955,"4392":21.96,"4393":21.965,"4394":21.97,"4395":21.975,"4396":21.98,"4397":21.985,"4398":21.99,"4399":21.995,"4400":22.0,"4401":22.005,"4402":22.01,"4403":22.015,"4404":22.02,"4405":22.025,"4406":22.03,"4407":22.035,"4408":22.04,"4409":22.045,"4410":22.05,"4411":22.055,"4412":22.06,"4413":22.065,"4414":22.07,"4415":22.075,"4416":22.08,"4417":22.085,"4418":22.09,"4419":22.095,"4420":22.1,"4421":22.105,"4422":22.11,"4423":22.115,"4424":22.12,"4425":22.125,"4426":22.13,"4427":22.135,"4428":22.14,"4429":22.145,"4430":22.15,"4431":22.155,"4432":22.16,"4433":22.165,"4434":22.17,"4435":22.175,"4436":22.18,"4437":22.185,"4438":22.19,"4439":22.195,"4440":22.2,"4441":22.205,"4442":22.21,"4443":22.215,"4444":22.22,"4445":22.225,"4446":22.23,"4447":22.235,"4448":22.24,"4449":22.245,"4450":22.25,"4451":22.255,"4452":22.26,"4453":22.265,"4454":22.27,"4455":22.275,"4456":22.28,"4457":22.285,"4458":22.29,"4459":22.295,"4460":22.3,"4461":22.305,"4462":22.31,"4463":22.315,"4464":22.32,"4465":22.325,"4466":22.33,"4467":22.335,"4468":22.34,"4469":22.345,"4470":22.35,"4471":22.355,"4472":22.36,"4473":22.365,"4474":22.37,"4475":22.375,"4476":22.38,"4477":22.385,"4478":22.39,"4479":22.395,"4480":22.4,"4481":22.405,"4482":22.41,"4483":22.415,"4484":22.42,"4485":22.425,"4486":22.43,"4487":22.435,"4488":22.44,"4489":22.445,"4490":22.45,"4491":22.455,"4492":22.46,"4493":22.465,"4494":22.47,"4495":22.475,"4496":22.48,"4497":22.485,"4498":22.49,"4499":22.495,"4500":22.5,"4501":22.505,"4502":22.51,"4503":22.515,"4504":22.52,"4505":22.525,"4506":22.53,"4507":22.535,"4508":22.54,"4509":22.545,"4510":22.55,"4511":22.555,"4512":22.56,"4513":22.565,"4514":22.57,"4515":22.575,"4516":22.58,"4517":22.585,"4518":22.59,"4519":22.595,"4520":22.6,"4521":22.605,"4522":22.61,"4523":22.615,"4524":22.62,"4525":22.625,"4526":22.63,"4527":22.635,"4528":22.64,"4529":22.645,"4530":22.65,"4531":22.655,"4532":22.66,"4533":22.665,"4534":22.67,"4535":22.675,"4536":22.68,"4537":22.685,"4538":22.69,"4539":22.695,"4540":22.7,"4541":22.705,"4542":22.71,"4543":22.715,"4544":22.72,"4545":22.725,"4546":22.73,"4547":22.735,"4548":22.74,"4549":22.745,"4550":22.75,"4551":22.755,"4552":22.76,"4553":22.765,"4554":22.77,"4555":22.775,"4556":22.78,"4557":22.785,"4558":22.79,"4559":22.795,"4560":22.8,"4561":22.805,"4562":22.81,"4563":22.815,"4564":22.82,"4565":22.825,"4566":22.83,"4567":22.835,"4568":22.84,"4569":22.845,"4570":22.85,"4571":22.855,"4572":22.86,"4573":22.865,"4574":22.87,"4575":22.875,"4576":22.88,"4577":22.885,"4578":22.89,"4579":22.895,"4580":22.9,"4581":22.905,"4582":22.91,"4583":22.915,"4584":22.92,"4585":22.925,"4586":22.93,"4587":22.935,"4588":22.94,"4589":22.945,"4590":22.95,"4591":22.955,"4592":22.96,"4593":22.965,"4594":22.97,"4595":22.975,"4596":22.98,"4597":22.985,"4598":22.99,"4599":22.995,"4600":23.0,"4601":23.005,"4602":23.01,"4603":23.015,"4604":23.02,"4605":23.025,"4606":23.03,"4607":23.035,"4608":23.04,"4609":23.045,"4610":23.05,"4611":23.055,"4612":23.06,"4613":23.065,"4614":23.07,"4615":23.075,"4616":23.08,"4617":23.085,"4618":23.09,"4619":23.095,"4620":23.1,"4621":23.105,"4622":23.11,"4623":23.115,"4624":23.12,"4625":23.125,"4626":23.13,"4627":23.135,"4628":23.14,"4629":23.145,"4630":23.15,"4631":23.155,"4632":23.16,"4633":23.165,"4634":23.17,"4635":23.175,"4636":23.18,"4637":23.185,"4638":23.19,"4639":23.195,"4640":23.2,"4641":23.205,"4642":23.21,"4643":23.215,"4644":23.22,"4645":23.225,"4646":23.23,"4647":23.235,"4648":23.24,"4649":23.245,"4650":23.25,"4651":23.255,"4652":23.26,"4653":23.265,"4654":23.27,"4655":23.275,"4656":23.28,"4657":23.285,"4658":23.29,"4659":23.295,"4660":23.3,"4661":23.305,"4662":23.31,"4663":23.315,"4664":23.32,"4665":23.325,"4666":23.33,"4667":23.335,"4668":23.34,"4669":23.345,"4670":23.35,"4671":23.355,"4672":23.36,"4673":23.365,"4674":23.37,"4675":23.375,"4676":23.38,"4677":23.385,"4678":23.39,"4679":23.395,"4680":23.4,"4681":23.405,"4682":23.41,"4683":23.415,"4684":23.42,"4685":23.425,"4686":23.43,"4687":23.435,"4688":23.44,"4689":23.445,"4690":23.45,"4691":23.455,"4692":23.46,"4693":23.465,"4694":23.47,"4695":23.475,"4696":23.48,"4697":23.485,"4698":23.49,"4699":23.495,"4700":23.5,"4701":23.505,"4702":23.51,"4703":23.515,"4704":23.52,"4705":23.525,"4706":23.53,"4707":23.535,"4708":23.54,"4709":23.545,"4710":23.55,"4711":23.555,"4712":23.56,"4713":23.565,"4714":23.57,"4715":23.575,"4716":23.58,"4717":23.585,"4718":23.59,"4719":23.595,"4720":23.6,"4721":23.605,"4722":23.61,"4723":23.615,"4724":23.62,"4725":23.625,"4726":23.63,"4727":23.635,"4728":23.64,"4729":23.645,"4730":23.65,"4731":23.655,"4732":23.66,"4733":23.665,"4734":23.67,"4735":23.675,"4736":23.68,"4737":23.685,"4738":23.69,"4739":23.695,"4740":23.7,"4741":23.705,"4742":23.71,"4743":23.715,"4744":23.72,"4745":23.725,"4746":23.73,"4747":23.735,"4748":23.74,"4749":23.745,"4750":23.75,"4751":23.755,"4752":23.76,"4753":23.765,"4754":23.77,"4755":23.775,"4756":23.78,"4757":23.785,"4758":23.79,"4759":23.795,"4760":23.8,"4761":23.805,"4762":23.81,"4763":23.815,"4764":23.82,"4765":23.825,"4766":23.83,"4767":23.835,"4768":23.84,"4769":23.845,"4770":23.85,"4771":23.855,"4772":23.86,"4773":23.865,"4774":23.87,"4775":23.875,"4776":23.88,"4777":23.885,"4778":23.89,"4779":23.895,"4780":23.9,"4781":23.905,"4782":23.91,"4783":23.915,"4784":23.92,"4785":23.925,"4786":23.93,"4787":23.935,"4788":23.94,"4789":23.945,"4790":23.95,"4791":23.955,"4792":23.96,"4793":23.965,"4794":23.97,"4795":23.975,"4796":23.98,"4797":23.985,"4798":23.99,"4799":23.995,"4800":24.0,"4801":24.005,"4802":24.01,"4803":24.015,"4804":24.02,"4805":24.025,"4806":24.03,"4807":24.035,"4808":24.04,"4809":24.045,"4810":24.05,"4811":24.055,"4812":24.06,"4813":24.065,"4814":24.07,"4815":24.075,"4816":24.08,"4817":24.085,"4818":24.09,"4819":24.095,"4820":24.1,"4821":24.105,"4822":24.11,"4823":24.115,"4824":24.12,"4825":24.125,"4826":24.13,"4827":24.135,"4828":24.14,"4829":24.145,"4830":24.15,"4831":24.155,"4832":24.16,"4833":24.165,"4834":24.17,"4835":24.175,"4836":24.18,"4837":24.185,"4838":24.19,"4839":24.195,"4840":24.2,"4841":24.205,"4842":24.21,"4843":24.215,"4844":24.22,"4845":24.225,"4846":24.23,"4847":24.235,"4848":24.24,"4849":24.245,"4850":24.25,"4851":24.255,"4852":24.26,"4853":24.265,"4854":24.27,"4855":24.275,"4856":24.28,"4857":24.285,"4858":24.29,"4859":24.295,"4860":24.3,"4861":24.305,"4862":24.31,"4863":24.315,"4864":24.32,"4865":24.325,"4866":24.33,"4867":24.335,"4868":24.34,"4869":24.345,"4870":24.35,"4871":24.355,"4872":24.36,"4873":24.365,"4874":24.37,"4875":24.375,"4876":24.38,"4877":24.385,"4878":24.39,"4879":24.395,"4880":24.4,"4881":24.405,"4882":24.41,"4883":24.415,"4884":24.42,"4885":24.425,"4886":24.43,"4887":24.435,"4888":24.44,"4889":24.445,"4890":24.45,"4891":24.455,"4892":24.46,"4893":24.465,"4894":24.47,"4895":24.475,"4896":24.48,"4897":24.485,"4898":24.49,"4899":24.495,"4900":24.5,"4901":24.505,"4902":24.51,"4903":24.515,"4904":24.52,"4905":24.525,"4906":24.53,"4907":24.535,"4908":24.54,"4909":24.545,"4910":24.55,"4911":24.555,"4912":24.56,"4913":24.565,"4914":24.57,"4915":24.575,"4916":24.58,"4917":24.585,"4918":24.59,"4919":24.595,"4920":24.6,"4921":24.605,"4922":24.61,"4923":24.615,"4924":24.62,"4925":24.625,"4926":24.63,"4927":24.635,"4928":24.64,"4929":24.645,"4930":24.65,"4931":24.655,"4932":24.66,"4933":24.665,"4934":24.67,"4935":24.675,"4936":24.68,"4937":24.685,"4938":24.69,"4939":24.695,"4940":24.7,"4941":24.705,"4942":24.71,"4943":24.715,"4944":24.72,"4945":24.725,"4946":24.73,"4947":24.735,"4948":24.74,"4949":24.745,"4950":24.75,"4951":24.755,"4952":24.76,"4953":24.765,"4954":24.77,"4955":24.775,"4956":24.78,"4957":24.785,"4958":24.79,"4959":24.795,"4960":24.8,"4961":24.805,"4962":24.81,"4963":24.815,"4964":24.82,"4965":24.825,"4966":24.83,"4967":24.835,"4968":24.84,"4969":24.845,"4970":24.85,"4971":24.855,"4972":24.86,"4973":24.865,"4974":24.87,"4975":24.875,"4976":24.88,"4977":24.885,"4978":24.89,"4979":24.895,"4980":24.9,"4981":24.905,"4982":24.91,"4983":24.915,"4984":24.92,"4985":24.925,"4986":24.93,"4987":24.935,"4988":24.94,"4989":24.945,"4990":24.95,"4991":24.955,"4992":24.96,"4993":24.965,"4994":24.97,"4995":24.975,"4996":24.98,"4997":24.985,"4998":24.99,"4999":24.995,"5000":25.0,"5001":25.005,"5002":25.01,"5003":25.015,"5004":25.02,"5005":25.025,"5006":25.03,"5007":25.035,"5008":25.04,"5009":25.045,"5010":25.05,"5011":25.055,"5012":25.06,"5013":25.065,"5014":25.07,"5015":25.075,"5016":25.08,"5017":25.085,"5018":25.09,"5019":25.095,"5020":25.1,"5021":25.105,"5022":25.11,"5023":25.115,"5024":25.12,"5025":25.125,"5026":25.13,"5027":25.135,"5028":25.14,"5029":25.145,"5030":25.15,"5031":25.155,"5032":25.16,"5033":25.165,"5034":25.17,"5035":25.175,"5036":25.18,"5037":25.185,"5038":25.19,"5039":25.195,"5040":25.2,"5041":25.205,"5042":25.21,"5043":25.215,"5044":25.22,"5045":25.225,"5046":25.23,"5047":25.235,"5048":25.24,"5049":25.245,"5050":25.25,"5051":25.255,"5052":25.26,"5053":25.265,"5054":25.27,"5055":25.275,"5056":25.28,"5057":25.285,"5058":25.29,"5059":25.295,"5060":25.3,"5061":25.305,"5062":25.31,"5063":25.315,"5064":25.32,"5065":25.325,"5066":25.33,"5067":25.335,"5068":25.34,"5069":25.345,"5070":25.35,"5071":25.355,"5072":25.36,"5073":25.365,"5074":25.37,"5075":25.375,"5076":25.38,"5077":25.385,"5078":25.39,"5079":25.395,"5080":25.4,"5081":25.405,"5082":25.41,"5083":25.415,"5084":25.42,"5085":25.425,"5086":25.43,"5087":25.435,"5088":25.44,"5089":25.445,"5090":25.45,"5091":25.455,"5092":25.46,"5093":25.465,"5094":25.47,"5095":25.475,"5096":25.48,"5097":25.485,"5098":25.49,"5099":25.495,"5100":25.5,"5101":25.505,"5102":25.51,"5103":25.515,"5104":25.52,"5105":25.525,"5106":25.53,"5107":25.535,"5108":25.54,"5109":25.545,"5110":25.55,"5111":25.555,"5112":25.56,"5113":25.565,"5114":25.57,"5115":25.575,"5116":25.58,"5117":25.585,"5118":25.59,"5119":25.595,"5120":25.6,"5121":25.605,"5122":25.61,"5123":25.615,"5124":25.62,"5125":25.625,"5126":25.63,"5127":25.635,"5128":25.64,"5129":25.645,"5130":25.65,"5131":25.655,"5132":25.66,"5133":25.665,"5134":25.67,"5135":25.675,"5136":25.68,"5137":25.685,"5138":25.69,"5139":25.695,"5140":25.7,"5141":25.705,"5142":25.71,"5143":25.715,"5144":25.72,"5145":25.725,"5146":25.73,"5147":25.735,"5148":25.74,"5149":25.745,"5150":25.75,"5151":25.755,"5152":25.76,"5153":25.765,"5154":25.77,"5155":25.775,"5156":25.78,"5157":25.785,"5158":25.79,"5159":25.795,"5160":25.8,"5161":25.805,"5162":25.81,"5163":25.815,"5164":25.82,"5165":25.825,"5166":25.83,"5167":25.835,"5168":25.84,"5169":25.845,"5170":25.85,"5171":25.855,"5172":25.86,"5173":25.865,"5174":25.87,"5175":25.875,"5176":25.88,"5177":25.885,"5178":25.89,"5179":25.895,"5180":25.9,"5181":25.905,"5182":25.91,"5183":25.915,"5184":25.92,"5185":25.925,"5186":25.93,"5187":25.935,"5188":25.94,"5189":25.945,"5190":25.95,"5191":25.955,"5192":25.96,"5193":25.965,"5194":25.97,"5195":25.975,"5196":25.98,"5197":25.985,"5198":25.99,"5199":25.995,"5200":26.0,"5201":26.005,"5202":26.01,"5203":26.015,"5204":26.02,"5205":26.025,"5206":26.03,"5207":26.035,"5208":26.04,"5209":26.045,"5210":26.05,"5211":26.055,"5212":26.06,"5213":26.065,"5214":26.07,"5215":26.075,"5216":26.08,"5217":26.085,"5218":26.09,"5219":26.095,"5220":26.1,"5221":26.105,"5222":26.11,"5223":26.115,"5224":26.12,"5225":26.125,"5226":26.13,"5227":26.135,"5228":26.14,"5229":26.145,"5230":26.15,"5231":26.155,"5232":26.16,"5233":26.165,"5234":26.17,"5235":26.175,"5236":26.18,"5237":26.185,"5238":26.19,"5239":26.195,"5240":26.2,"5241":26.205,"5242":26.21,"5243":26.215,"5244":26.22,"5245":26.225,"5246":26.23,"5247":26.235,"5248":26.24,"5249":26.245,"5250":26.25,"5251":26.255,"5252":26.26,"5253":26.265,"5254":26.27,"5255":26.275,"5256":26.28,"5257":26.285,"5258":26.29,"5259":26.295,"5260":26.3,"5261":26.305,"5262":26.31,"5263":26.315,"5264":26.32,"5265":26.325,"5266":26.33,"5267":26.335,"5268":26.34,"5269":26.345,"5270":26.35,"5271":26.355,"5272":26.36,"5273":26.365,"5274":26.37,"5275":26.375,"5276":26.38,"5277":26.385,"5278":26.39,"5279":26.395,"5280":26.4,"5281":26.405,"5282":26.41,"5283":26.415,"5284":26.42,"5285":26.425,"5286":26.43,"5287":26.435,"5288":26.44,"5289":26.445,"5290":26.45,"5291":26.455,"5292":26.46,"5293":26.465,"5294":26.47,"5295":26.475,"5296":26.48,"5297":26.485,"5298":26.49,"5299":26.495,"5300":26.5,"5301":26.505,"5302":26.51,"5303":26.515,"5304":26.52,"5305":26.525,"5306":26.53,"5307":26.535,"5308":26.54,"5309":26.545,"5310":26.55,"5311":26.555,"5312":26.56,"5313":26.565,"5314":26.57,"5315":26.575,"5316":26.58,"5317":26.585,"5318":26.59,"5319":26.595,"5320":26.6,"5321":26.605,"5322":26.61,"5323":26.615,"5324":26.62,"5325":26.625,"5326":26.63,"5327":26.635,"5328":26.64,"5329":26.645,"5330":26.65,"5331":26.655,"5332":26.66,"5333":26.665,"5334":26.67,"5335":26.675,"5336":26.68,"5337":26.685,"5338":26.69,"5339":26.695,"5340":26.7,"5341":26.705,"5342":26.71,"5343":26.715,"5344":26.72,"5345":26.725,"5346":26.73,"5347":26.735,"5348":26.74,"5349":26.745,"5350":26.75,"5351":26.755,"5352":26.76,"5353":26.765,"5354":26.77,"5355":26.775,"5356":26.78,"5357":26.785,"5358":26.79,"5359":26.795,"5360":26.8,"5361":26.805,"5362":26.81,"5363":26.815,"5364":26.82,"5365":26.825,"5366":26.83,"5367":26.835,"5368":26.84,"5369":26.845,"5370":26.85,"5371":26.855,"5372":26.86,"5373":26.865,"5374":26.87,"5375":26.875,"5376":26.88,"5377":26.885,"5378":26.89,"5379":26.895,"5380":26.9,"5381":26.905,"5382":26.91,"5383":26.915,"5384":26.92,"5385":26.925,"5386":26.93,"5387":26.935,"5388":26.94,"5389":26.945,"5390":26.95,"5391":26.955,"5392":26.96,"5393":26.965,"5394":26.97,"5395":26.975,"5396":26.98,"5397":26.985,"5398":26.99,"5399":26.995,"5400":27.0,"5401":27.005,"5402":27.01,"5403":27.015,"5404":27.02,"5405":27.025,"5406":27.03,"5407":27.035,"5408":27.04,"5409":27.045,"5410":27.05,"5411":27.055,"5412":27.06,"5413":27.065,"5414":27.07,"5415":27.075,"5416":27.08,"5417":27.085,"5418":27.09,"5419":27.095,"5420":27.1,"5421":27.105,"5422":27.11,"5423":27.115,"5424":27.12,"5425":27.125,"5426":27.13,"5427":27.135,"5428":27.14,"5429":27.145,"5430":27.15,"5431":27.155,"5432":27.16,"5433":27.165,"5434":27.17,"5435":27.175,"5436":27.18,"5437":27.185,"5438":27.19,"5439":27.195,"5440":27.2,"5441":27.205,"5442":27.21,"5443":27.215,"5444":27.22,"5445":27.225,"5446":27.23,"5447":27.235,"5448":27.24,"5449":27.245,"5450":27.25,"5451":27.255,"5452":27.26,"5453":27.265,"5454":27.27,"5455":27.275,"5456":27.28,"5457":27.285,"5458":27.29,"5459":27.295,"5460":27.3,"5461":27.305,"5462":27.31,"5463":27.315,"5464":27.32,"5465":27.325,"5466":27.33,"5467":27.335,"5468":27.34,"5469":27.345,"5470":27.35,"5471":27.355,"5472":27.36,"5473":27.365,"5474":27.37,"5475":27.375,"5476":27.38,"5477":27.385,"5478":27.39,"5479":27.395,"5480":27.4,"5481":27.405,"5482":27.41,"5483":27.415,"5484":27.42,"5485":27.425,"5486":27.43,"5487":27.435,"5488":27.44,"5489":27.445,"5490":27.45,"5491":27.455,"5492":27.46,"5493":27.465,"5494":27.47,"5495":27.475,"5496":27.48,"5497":27.485,"5498":27.49,"5499":27.495,"5500":27.5,"5501":27.505,"5502":27.51,"5503":27.515,"5504":27.52,"5505":27.525,"5506":27.53,"5507":27.535,"5508":27.54,"5509":27.545,"5510":27.55,"5511":27.555,"5512":27.56,"5513":27.565,"5514":27.57,"5515":27.575,"5516":27.58,"5517":27.585,"5518":27.59,"5519":27.595,"5520":27.6,"5521":27.605,"5522":27.61,"5523":27.615,"5524":27.62,"5525":27.625,"5526":27.63,"5527":27.635,"5528":27.64,"5529":27.645,"5530":27.65,"5531":27.655,"5532":27.66,"5533":27.665,"5534":27.67,"5535":27.675,"5536":27.68,"5537":27.685,"5538":27.69,"5539":27.695,"5540":27.7,"5541":27.705,"5542":27.71,"5543":27.715,"5544":27.72,"5545":27.725,"5546":27.73,"5547":27.735,"5548":27.74,"5549":27.745,"5550":27.75,"5551":27.755,"5552":27.76,"5553":27.765,"5554":27.77,"5555":27.775,"5556":27.78,"5557":27.785,"5558":27.79,"5559":27.795,"5560":27.8,"5561":27.805,"5562":27.81,"5563":27.815,"5564":27.82,"5565":27.825,"5566":27.83,"5567":27.835,"5568":27.84,"5569":27.845,"5570":27.85,"5571":27.855,"5572":27.86,"5573":27.865,"5574":27.87,"5575":27.875,"5576":27.88,"5577":27.885,"5578":27.89,"5579":27.895,"5580":27.9,"5581":27.905,"5582":27.91,"5583":27.915,"5584":27.92,"5585":27.925,"5586":27.93,"5587":27.935,"5588":27.94,"5589":27.945,"5590":27.95,"5591":27.955,"5592":27.96,"5593":27.965,"5594":27.97,"5595":27.975,"5596":27.98,"5597":27.985,"5598":27.99,"5599":27.995,"5600":28.0,"5601":28.005,"5602":28.01,"5603":28.015,"5604":28.02,"5605":28.025,"5606":28.03,"5607":28.035,"5608":28.04,"5609":28.045,"5610":28.05,"5611":28.055,"5612":28.06,"5613":28.065,"5614":28.07,"5615":28.075,"5616":28.08,"5617":28.085,"5618":28.09,"5619":28.095,"5620":28.1,"5621":28.105,"5622":28.11,"5623":28.115,"5624":28.12,"5625":28.125,"5626":28.13,"5627":28.135,"5628":28.14,"5629":28.145,"5630":28.15,"5631":28.155,"5632":28.16,"5633":28.165,"5634":28.17,"5635":28.175,"5636":28.18,"5637":28.185,"5638":28.19,"5639":28.195,"5640":28.2,"5641":28.205,"5642":28.21,"5643":28.215,"5644":28.22,"5645":28.225,"5646":28.23,"5647":28.235,"5648":28.24,"5649":28.245,"5650":28.25,"5651":28.255,"5652":28.26,"5653":28.265,"5654":28.27,"5655":28.275,"5656":28.28,"5657":28.285,"5658":28.29,"5659":28.295,"5660":28.3,"5661":28.305,"5662":28.31,"5663":28.315,"5664":28.32,"5665":28.325,"5666":28.33,"5667":28.335,"5668":28.34,"5669":28.345,"5670":28.35,"5671":28.355,"5672":28.36,"5673":28.365,"5674":28.37,"5675":28.375,"5676":28.38,"5677":28.385,"5678":28.39,"5679":28.395,"5680":28.4,"5681":28.405,"5682":28.41,"5683":28.415,"5684":28.42,"5685":28.425,"5686":28.43,"5687":28.435,"5688":28.44,"5689":28.445,"5690":28.45,"5691":28.455,"5692":28.46,"5693":28.465,"5694":28.47,"5695":28.475,"5696":28.48,"5697":28.485,"5698":28.49,"5699":28.495,"5700":28.5,"5701":28.505,"5702":28.51,"5703":28.515,"5704":28.52,"5705":28.525,"5706":28.53,"5707":28.535,"5708":28.54,"5709":28.545,"5710":28.55,"5711":28.555,"5712":28.56,"5713":28.565,"5714":28.57,"5715":28.575,"5716":28.58,"5717":28.585,"5718":28.59,"5719":28.595,"5720":28.6,"5721":28.605,"5722":28.61,"5723":28.615,"5724":28.62,"5725":28.625,"5726":28.63,"5727":28.635,"5728":28.64,"5729":28.645,"5730":28.65,"5731":28.655,"5732":28.66,"5733":28.665,"5734":28.67,"5735":28.675,"5736":28.68,"5737":28.685,"5738":28.69,"5739":28.695,"5740":28.7,"5741":28.705,"5742":28.71,"5743":28.715,"5744":28.72,"5745":28.725,"5746":28.73,"5747":28.735,"5748":28.74,"5749":28.745,"5750":28.75,"5751":28.755,"5752":28.76,"5753":28.765,"5754":28.77,"5755":28.775,"5756":28.78,"5757":28.785,"5758":28.79,"5759":28.795,"5760":28.8,"5761":28.805,"5762":28.81,"5763":28.815,"5764":28.82,"5765":28.825,"5766":28.83,"5767":28.835,"5768":28.84,"5769":28.845,"5770":28.85,"5771":28.855,"5772":28.86,"5773":28.865,"5774":28.87,"5775":28.875,"5776":28.88,"5777":28.885,"5778":28.89,"5779":28.895,"5780":28.9,"5781":28.905,"5782":28.91,"5783":28.915,"5784":28.92,"5785":28.925,"5786":28.93,"5787":28.935,"5788":28.94,"5789":28.945,"5790":28.95,"5791":28.955,"5792":28.96,"5793":28.965,"5794":28.97,"5795":28.975,"5796":28.98,"5797":28.985,"5798":28.99,"5799":28.995,"5800":29.0,"5801":29.005,"5802":29.01,"5803":29.015,"5804":29.02,"5805":29.025,"5806":29.03,"5807":29.035,"5808":29.04,"5809":29.045,"5810":29.05,"5811":29.055,"5812":29.06,"5813":29.065,"5814":29.07,"5815":29.075,"5816":29.08,"5817":29.085,"5818":29.09,"5819":29.095,"5820":29.1,"5821":29.105,"5822":29.11,"5823":29.115,"5824":29.12,"5825":29.125,"5826":29.13,"5827":29.135,"5828":29.14,"5829":29.145,"5830":29.15,"5831":29.155,"5832":29.16,"5833":29.165,"5834":29.17,"5835":29.175,"5836":29.18,"5837":29.185,"5838":29.19,"5839":29.195,"5840":29.2,"5841":29.205,"5842":29.21,"5843":29.215,"5844":29.22,"5845":29.225,"5846":29.23,"5847":29.235,"5848":29.24,"5849":29.245,"5850":29.25,"5851":29.255,"5852":29.26,"5853":29.265,"5854":29.27,"5855":29.275,"5856":29.28,"5857":29.285,"5858":29.29,"5859":29.295,"5860":29.3,"5861":29.305,"5862":29.31,"5863":29.315,"5864":29.32,"5865":29.325,"5866":29.33,"5867":29.335,"5868":29.34,"5869":29.345,"5870":29.35,"5871":29.355,"5872":29.36,"5873":29.365,"5874":29.37,"5875":29.375,"5876":29.38,"5877":29.385,"5878":29.39,"5879":29.395,"5880":29.4,"5881":29.405,"5882":29.41,"5883":29.415,"5884":29.42,"5885":29.425,"5886":29.43,"5887":29.435,"5888":29.44,"5889":29.445,"5890":29.45,"5891":29.455,"5892":29.46,"5893":29.465,"5894":29.47,"5895":29.475,"5896":29.48,"5897":29.485,"5898":29.49,"5899":29.495,"5900":29.5,"5901":29.505,"5902":29.51,"5903":29.515,"5904":29.52,"5905":29.525,"5906":29.53,"5907":29.535,"5908":29.54,"5909":29.545,"5910":29.55,"5911":29.555,"5912":29.56,"5913":29.565,"5914":29.57,"5915":29.575,"5916":29.58,"5917":29.585,"5918":29.59,"5919":29.595,"5920":29.6,"5921":29.605,"5922":29.61,"5923":29.615,"5924":29.62,"5925":29.625,"5926":29.63,"5927":29.635,"5928":29.64,"5929":29.645,"5930":29.65,"5931":29.655,"5932":29.66,"5933":29.665,"5934":29.67,"5935":29.675,"5936":29.68,"5937":29.685,"5938":29.69,"5939":29.695,"5940":29.7,"5941":29.705,"5942":29.71,"5943":29.715,"5944":29.72,"5945":29.725,"5946":29.73,"5947":29.735,"5948":29.74,"5949":29.745,"5950":29.75,"5951":29.755,"5952":29.76,"5953":29.765,"5954":29.77,"5955":29.775,"5956":29.78,"5957":29.785,"5958":29.79,"5959":29.795,"5960":29.8,"5961":29.805,"5962":29.81,"5963":29.815,"5964":29.82,"5965":29.825,"5966":29.83,"5967":29.835,"5968":29.84,"5969":29.845,"5970":29.85,"5971":29.855,"5972":29.86,"5973":29.865,"5974":29.87,"5975":29.875,"5976":29.88,"5977":29.885,"5978":29.89,"5979":29.895,"5980":29.9,"5981":29.905,"5982":29.91,"5983":29.915,"5984":29.92,"5985":29.925,"5986":29.93,"5987":29.935,"5988":29.94,"5989":29.945,"5990":29.95,"5991":29.955,"5992":29.96,"5993":29.965,"5994":29.97,"5995":29.975,"5996":29.98,"5997":29.985,"5998":29.99,"5999":29.995,"6000":30.0},"flow_in":{"0":2.200000001,"1":2.2784881489,"2":2.3569762991,"3":2.4351546912,"4":2.513333084,"5":2.5908931852,"6":2.6684532865,"7":2.7450890022,"8":2.8217247179,"9":2.8971336019,"10":2.9725424859,"11":3.0464269338,"12":3.1203113817,"13":3.1923798053,"14":3.2644482289,"15":3.3344162071,"16":3.4043841853,"17":3.4719755864,"18":3.5395669874,"19":3.6045150591,"20":3.6694631307,"21":3.7315115526,"22":3.7935599744,"23":3.8524638696,"24":3.9113677648,"25":3.9668946667,"26":4.0224215686,"27":4.0743523377,"28":4.1262831069,"29":4.1744127964,"30":4.2225424859,"31":4.2666811498,"32":4.3108198138,"33":4.3507932569,"34":4.3907667001,"35":4.4264171656,"36":4.4620676312,"37":4.4932544229,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2,"201":2.2784881494,"202":2.3569762988,"203":2.4351546914,"204":2.5133330839,"205":2.5908931852,"206":2.6684532865,"207":2.7450890022,"208":2.8217247179,"209":2.8971336019,"210":2.9725424859,"211":3.0464269338,"212":3.1203113817,"213":3.1923798053,"214":3.2644482289,"215":3.3344162071,"216":3.4043841853,"217":3.4719755864,"218":3.5395669874,"219":3.6045150591,"220":3.6694631307,"221":3.7315115526,"222":3.7935599744,"223":3.8524638696,"224":3.9113677648,"225":3.9668946667,"226":4.0224215686,"227":4.0743523377,"228":4.1262831069,"229":4.1744127964,"230":4.2225424859,"231":4.2666811498,"232":4.3108198138,"233":4.3507932569,"234":4.3907667001,"235":4.4264171656,"236":4.4620676312,"237":4.4932544229,"238":4.5244412147,"239":4.5510412527,"240":4.5776412907,"241":4.5995495968,"242":4.6214579028,"243":4.6385880148,"244":4.6557181268,"245":4.6680024401,"246":4.6802867533,"247":4.6876767872,"248":4.6950668211,"249":4.6975334105,"250":4.7,"251":4.6975334105,"252":4.6950668211,"253":4.6876767872,"254":4.6802867533,"255":4.6680024401,"256":4.6557181268,"257":4.6385880148,"258":4.6214579028,"259":4.5995495968,"260":4.5776412907,"261":4.5510412527,"262":4.5244412147,"263":4.4932544229,"264":4.4620676312,"265":4.4264171656,"266":4.3907667001,"267":4.3507932569,"268":4.3108198138,"269":4.2666811498,"270":4.2225424859,"271":4.1744127964,"272":4.1262831069,"273":4.0743523377,"274":4.0224215686,"275":3.9668946667,"276":3.9113677648,"277":3.8524638696,"278":3.7935599744,"279":3.7315115526,"280":3.6694631307,"281":3.6045150591,"282":3.5395669874,"283":3.4719755864,"284":3.4043841853,"285":3.3344162071,"286":3.2644482289,"287":3.1923798053,"288":3.1203113817,"289":3.0464269338,"290":2.9725424859,"291":2.8971336019,"292":2.8217247179,"293":2.7450890022,"294":2.6684532865,"295":2.5908931852,"296":2.5133330839,"297":2.4351546914,"298":2.3569762988,"299":2.2784881494,"300":2.2,"301":2.1215118506,"302":2.0430237012,"303":1.9648453086,"304":1.8866669161,"305":1.8091068148,"306":1.7315467135,"307":1.6549109978,"308":1.5782752821,"309":1.5028663981,"310":1.4274575141,"311":1.3535730662,"312":1.2796886183,"313":1.2076201947,"314":1.1355517711,"315":1.0655837929,"316":0.9956158147,"317":0.9280244136,"318":0.8604330126,"319":0.7954849409,"320":0.7305368693,"321":0.6684884474,"322":0.6064400256,"323":0.5475361304,"324":0.4886322352,"325":0.4331053333,"326":0.3775784314,"327":0.3256476623,"328":0.2737168931,"329":0.2255872036,"330":0.1774575141,"331":0.1333188502,"332":0.0891801862,"333":0.0492067431,"334":0.0092332999,"335":-0.0264171656,"336":-0.0620676312,"337":-0.0932544229,"338":-0.1244412147,"339":-0.1510412527,"340":-0.1776412907,"341":-0.1995495968,"342":-0.2214579028,"343":-0.2385880148,"344":-0.2557181268,"345":-0.2680024401,"346":-0.2802867533,"347":-0.2876767872,"348":-0.2950668211,"349":-0.2975334105,"350":-0.3,"351":-0.2975334105,"352":-0.2950668211,"353":-0.2876767872,"354":-0.2802867533,"355":-0.2680024401,"356":-0.2557181268,"357":-0.2385880148,"358":-0.2214579028,"359":-0.1995495968,"360":-0.1776412907,"361":-0.1510412527,"362":-0.1244412147,"363":-0.0932544229,"364":-0.0620676312,"365":-0.0264171656,"366":0.0092332999,"367":0.0492067431,"368":0.0891801862,"369":0.1333188502,"370":0.1774575141,"371":0.2255872036,"372":0.2737168931,"373":0.3256476623,"374":0.3775784314,"375":0.4331053333,"376":0.4886322352,"377":0.5475361304,"378":0.6064400256,"379":0.6684884474,"380":0.7305368693,"381":0.7954849409,"382":0.8604330126,"383":0.9280244136,"384":0.9956158147,"385":1.0655837929,"386":1.1355517711,"387":1.2076201947,"388":1.2796886183,"389":1.3535730662,"390":1.4274575141,"391":1.5028663981,"392":1.5782752821,"393":1.6549109978,"394":1.7315467135,"395":1.8091068148,"396":1.8866669161,"397":1.9648453086,"398":2.0430237012,"399":2.1215118506,"400":2.2,"401":2.2784881494,"402":2.3569762988,"403":2.4351546914,"404":2.5133330839,"405":2.5908931852,"406":2.6684532865,"407":2.7450890022,"408":2.8217247179,"409":2.8971336019,"410":2.9725424859,"411":3.0464269338,"412":3.1203113817,"413":3.1923798053,"414":3.2644482289,"415":3.3344162071,"416":3.4043841853,"417":3.4719755864,"418":3.5395669874,"419":3.6045150591,"420":3.6694631307,"421":3.7315115526,"422":3.7935599744,"423":3.8524638696,"424":3.9113677648,"425":3.9668946667,"426":4.0224215686,"427":4.0743523377,"428":4.1262831069,"429":4.1744127964,"430":4.2225424859,"431":4.2666811498,"432":4.3108198138,"433":4.3507932569,"434":4.3907667001,"435":4.4264171656,"436":4.4620676312,"437":4.4932544229,"438":4.5244412147,"439":4.5510412527,"440":4.5776412907,"441":4.5995495968,"442":4.6214579028,"443":4.6385880148,"444":4.6557181268,"445":4.6680024401,"446":4.6802867533,"447":4.6876767872,"448":4.6950668211,"449":4.6975334105,"450":4.7,"451":4.6975334105,"452":4.6950668211,"453":4.6876767872,"454":4.6802867533,"455":4.6680024401,"456":4.6557181268,"457":4.6385880148,"458":4.6214579028,"459":4.5995495968,"460":4.5776412907,"461":4.5510412527,"462":4.5244412147,"463":4.4932544229,"464":4.4620676312,"465":4.4264171656,"466":4.3907667001,"467":4.3507932569,"468":4.3108198138,"469":4.2666811498,"470":4.2225424859,"471":4.1744127964,"472":4.1262831069,"473":4.0743523377,"474":4.0224215686,"475":3.9668946667,"476":3.9113677648,"477":3.8524638696,"478":3.7935599744,"479":3.7315115526,"480":3.6694631307,"481":3.6045150591,"482":3.5395669874,"483":3.4719755864,"484":3.4043841853,"485":3.3344162071,"486":3.2644482289,"487":3.1923798053,"488":3.1203113817,"489":3.0464269338,"490":2.9725424859,"491":2.8971336019,"492":2.8217247179,"493":2.7450890022,"494":2.6684532865,"495":2.5908931852,"496":2.5133330839,"497":2.4351546914,"498":2.3569762988,"499":2.2784881494,"500":2.2,"501":2.1215118506,"502":2.0430237012,"503":1.9648453086,"504":1.8866669161,"505":1.8091068148,"506":1.7315467135,"507":1.6549109978,"508":1.5782752821,"509":1.5028663981,"510":1.4274575141,"511":1.3535730662,"512":1.2796886183,"513":1.2076201947,"514":1.1355517711,"515":1.0655837929,"516":0.9956158147,"517":0.9280244136,"518":0.8604330126,"519":0.7954849409,"520":0.7305368693,"521":0.6684884474,"522":0.6064400256,"523":0.5475361304,"524":0.4886322352,"525":0.4331053333,"526":0.3775784314,"527":0.3256476623,"528":0.2737168931,"529":0.2255872036,"530":0.1774575141,"531":0.1333188502,"532":0.0891801862,"533":0.0492067431,"534":0.0092332999,"535":-0.0264171656,"536":-0.0620676312,"537":-0.0932544229,"538":-0.1244412147,"539":-0.1510412527,"540":-0.1776412907,"541":-0.1995495968,"542":-0.2214579028,"543":-0.2385880148,"544":-0.2557181268,"545":-0.2680024401,"546":-0.2802867533,"547":-0.2876767872,"548":-0.2950668211,"549":-0.2975334105,"550":-0.3,"551":-0.2975334105,"552":-0.2950668211,"553":-0.2876767872,"554":-0.2802867533,"555":-0.2680024401,"556":-0.2557181268,"557":-0.2385880148,"558":-0.2214579028,"559":-0.1995495968,"560":-0.1776412907,"561":-0.1510412527,"562":-0.1244412147,"563":-0.0932544229,"564":-0.0620676312,"565":-0.0264171656,"566":0.0092332999,"567":0.0492067431,"568":0.0891801862,"569":0.1333188502,"570":0.1774575141,"571":0.2255872036,"572":0.2737168931,"573":0.3256476623,"574":0.3775784314,"575":0.4331053333,"576":0.4886322352,"577":0.5475361304,"578":0.6064400256,"579":0.6684884474,"580":0.7305368693,"581":0.7954849409,"582":0.8604330126,"583":0.9280244136,"584":0.9956158147,"585":1.0655837929,"586":1.1355517711,"587":1.2076201947,"588":1.2796886183,"589":1.3535730662,"590":1.4274575141,"591":1.5028663981,"592":1.5782752821,"593":1.6549109978,"594":1.7315467135,"595":1.8091068148,"596":1.8866669161,"597":1.9648453086,"598":2.0430237012,"599":2.1215118506,"600":2.2,"601":2.2784881494,"602":2.3569762988,"603":2.4351546914,"604":2.5133330839,"605":2.5908931852,"606":2.6684532865,"607":2.7450890022,"608":2.8217247179,"609":2.8971336019,"610":2.9725424859,"611":3.0464269338,"612":3.1203113817,"613":3.1923798053,"614":3.2644482289,"615":3.3344162071,"616":3.4043841853,"617":3.4719755864,"618":3.5395669874,"619":3.6045150591,"620":3.6694631307,"621":3.7315115526,"622":3.7935599744,"623":3.8524638696,"624":3.9113677648,"625":3.9668946667,"626":4.0224215686,"627":4.0743523377,"628":4.1262831069,"629":4.1744127964,"630":4.2225424859,"631":4.2666811498,"632":4.3108198138,"633":4.3507932569,"634":4.3907667001,"635":4.4264171656,"636":4.4620676312,"637":4.4932544229,"638":4.5244412147,"639":4.5510412527,"640":4.5776412907,"641":4.5995495968,"642":4.6214579028,"643":4.6385880148,"644":4.6557181268,"645":4.6680024401,"646":4.6802867533,"647":4.6876767872,"648":4.6950668211,"649":4.6975334105,"650":4.7,"651":4.6975334105,"652":4.6950668211,"653":4.6876767872,"654":4.6802867533,"655":4.6680024401,"656":4.6557181268,"657":4.6385880148,"658":4.6214579028,"659":4.5995495968,"660":4.5776412907,"661":4.5510412527,"662":4.5244412147,"663":4.4932544229,"664":4.4620676312,"665":4.4264171656,"666":4.3907667001,"667":4.3507932569,"668":4.3108198138,"669":4.2666811498,"670":4.2225424859,"671":4.1744127964,"672":4.1262831069,"673":4.0743523377,"674":4.0224215686,"675":3.9668946667,"676":3.9113677648,"677":3.8524638696,"678":3.7935599744,"679":3.7315115526,"680":3.6694631307,"681":3.6045150591,"682":3.5395669874,"683":3.4719755864,"684":3.4043841853,"685":3.3344162071,"686":3.2644482289,"687":3.1923798053,"688":3.1203113817,"689":3.0464269338,"690":2.9725424859,"691":2.8971336019,"692":2.8217247179,"693":2.7450890022,"694":2.6684532865,"695":2.5908931852,"696":2.5133330839,"697":2.4351546914,"698":2.3569762988,"699":2.2784881494,"700":2.2,"701":2.1215118506,"702":2.0430237012,"703":1.9648453086,"704":1.8866669161,"705":1.8091068148,"706":1.7315467135,"707":1.6549109978,"708":1.5782752821,"709":1.5028663981,"710":1.4274575141,"711":1.3535730662,"712":1.2796886183,"713":1.2076201947,"714":1.1355517711,"715":1.0655837929,"716":0.9956158147,"717":0.9280244136,"718":0.8604330126,"719":0.7954849409,"720":0.7305368693,"721":0.6684884474,"722":0.6064400256,"723":0.5475361304,"724":0.4886322352,"725":0.4331053333,"726":0.3775784314,"727":0.3256476623,"728":0.2737168931,"729":0.2255872036,"730":0.1774575141,"731":0.1333188502,"732":0.0891801862,"733":0.0492067431,"734":0.0092332999,"735":-0.0264171656,"736":-0.0620676312,"737":-0.0932544229,"738":-0.1244412147,"739":-0.1510412527,"740":-0.1776412907,"741":-0.1995495968,"742":-0.2214579028,"743":-0.2385880148,"744":-0.2557181268,"745":-0.2680024401,"746":-0.2802867533,"747":-0.2876767872,"748":-0.2950668211,"749":-0.2975334105,"750":-0.3,"751":-0.2975334105,"752":-0.2950668211,"753":-0.2876767872,"754":-0.2802867533,"755":-0.2680024401,"756":-0.2557181268,"757":-0.2385880148,"758":-0.2214579028,"759":-0.1995495968,"760":-0.1776412907,"761":-0.1510412527,"762":-0.1244412147,"763":-0.0932544229,"764":-0.0620676312,"765":-0.0264171656,"766":0.0092332999,"767":0.0492067431,"768":0.0891801862,"769":0.1333188502,"770":0.1774575141,"771":0.2255872036,"772":0.2737168931,"773":0.3256476623,"774":0.3775784314,"775":0.4331053333,"776":0.4886322352,"777":0.5475361304,"778":0.6064400256,"779":0.6684884474,"780":0.7305368693,"781":0.7954849409,"782":0.8604330126,"783":0.9280244136,"784":0.9956158147,"785":1.0655837929,"786":1.1355517711,"787":1.2076201947,"788":1.2796886183,"789":1.3535730662,"790":1.4274575141,"791":1.5028663981,"792":1.5782752821,"793":1.6549109978,"794":1.7315467135,"795":1.8091068148,"796":1.8866669161,"797":1.9648453086,"798":2.0430237012,"799":2.1215118506,"800":2.2,"801":2.2784881494,"802":2.3569762988,"803":2.4351546914,"804":2.5133330839,"805":2.5908931852,"806":2.6684532865,"807":2.7450890022,"808":2.8217247179,"809":2.8971336019,"810":2.9725424859,"811":3.0464269338,"812":3.1203113817,"813":3.1923798053,"814":3.2644482289,"815":3.3344162071,"816":3.4043841853,"817":3.4719755864,"818":3.5395669874,"819":3.6045150591,"820":3.6694631307,"821":3.7315115526,"822":3.7935599744,"823":3.8524638696,"824":3.9113677648,"825":3.9668946667,"826":4.0224215686,"827":4.0743523377,"828":4.1262831069,"829":4.1744127964,"830":4.2225424859,"831":4.2666811498,"832":4.3108198138,"833":4.3507932569,"834":4.3907667001,"835":4.4264171656,"836":4.4620676312,"837":4.4932544229,"838":4.5244412147,"839":4.5510412527,"840":4.5776412907,"841":4.5995495968,"842":4.6214579028,"843":4.6385880148,"844":4.6557181268,"845":4.6680024401,"846":4.6802867533,"847":4.6876767872,"848":4.6950668211,"849":4.6975334105,"850":4.7,"851":4.6975334105,"852":4.6950668211,"853":4.6876767872,"854":4.6802867533,"855":4.6680024401,"856":4.6557181268,"857":4.6385880148,"858":4.6214579028,"859":4.5995495968,"860":4.5776412907,"861":4.5510412527,"862":4.5244412147,"863":4.4932544229,"864":4.4620676312,"865":4.4264171656,"866":4.3907667001,"867":4.3507932569,"868":4.3108198138,"869":4.2666811498,"870":4.2225424859,"871":4.1744127964,"872":4.1262831069,"873":4.0743523377,"874":4.0224215686,"875":3.9668946667,"876":3.9113677648,"877":3.8524638696,"878":3.7935599744,"879":3.7315115526,"880":3.6694631307,"881":3.6045150591,"882":3.5395669874,"883":3.4719755864,"884":3.4043841853,"885":3.3344162071,"886":3.2644482289,"887":3.1923798053,"888":3.1203113817,"889":3.0464269338,"890":2.9725424859,"891":2.8971336019,"892":2.8217247179,"893":2.7450890022,"894":2.6684532865,"895":2.5908931852,"896":2.5133330839,"897":2.4351546914,"898":2.3569762988,"899":2.2784881494,"900":2.2,"901":2.1215118506,"902":2.0430237012,"903":1.9648453086,"904":1.8866669161,"905":1.8091068148,"906":1.7315467135,"907":1.6549109978,"908":1.5782752821,"909":1.5028663981,"910":1.4274575141,"911":1.3535730662,"912":1.2796886183,"913":1.2076201947,"914":1.1355517711,"915":1.0655837929,"916":0.9956158147,"917":0.9280244136,"918":0.8604330126,"919":0.7954849409,"920":0.7305368693,"921":0.6684884474,"922":0.6064400256,"923":0.5475361304,"924":0.4886322352,"925":0.4331053333,"926":0.3775784314,"927":0.3256476623,"928":0.2737168931,"929":0.2255872036,"930":0.1774575141,"931":0.1333188502,"932":0.0891801862,"933":0.0492067431,"934":0.0092332999,"935":-0.0264171656,"936":-0.0620676312,"937":-0.0932544229,"938":-0.1244412147,"939":-0.1510412527,"940":-0.1776412907,"941":-0.1995495968,"942":-0.2214579028,"943":-0.2385880148,"944":-0.2557181268,"945":-0.2680024401,"946":-0.2802867533,"947":-0.2876767872,"948":-0.2950668211,"949":-0.2975334105,"950":-0.3,"951":-0.2975334105,"952":-0.2950668211,"953":-0.2876767872,"954":-0.2802867533,"955":-0.2680024401,"956":-0.2557181268,"957":-0.2385880148,"958":-0.2214579028,"959":-0.1995495968,"960":-0.1776412907,"961":-0.1510412527,"962":-0.1244412147,"963":-0.0932544229,"964":-0.0620676312,"965":-0.0264171656,"966":0.0092332999,"967":0.0492067431,"968":0.0891801862,"969":0.1333188502,"970":0.1774575141,"971":0.2255872036,"972":0.2737168931,"973":0.3256476623,"974":0.3775784314,"975":0.4331053333,"976":0.4886322352,"977":0.5475361304,"978":0.6064400256,"979":0.6684884474,"980":0.7305368693,"981":0.7954849409,"982":0.8604330126,"983":0.9280244136,"984":0.9956158147,"985":1.0655837929,"986":1.1355517711,"987":1.2076201947,"988":1.2796886183,"989":1.3535730662,"990":1.4274575141,"991":1.5028663981,"992":1.5782752821,"993":1.6549109978,"994":1.7315467135,"995":1.8091068148,"996":1.8866669161,"997":1.9648453086,"998":2.0430237012,"999":2.1215118506,"1000":2.2,"1001":2.2784881494,"1002":2.3569762988,"1003":2.4351546914,"1004":2.5133330839,"1005":2.5908931852,"1006":2.6684532865,"1007":2.7450890022,"1008":2.8217247179,"1009":2.8971336019,"1010":2.9725424859,"1011":3.0464269338,"1012":3.1203113817,"1013":3.1923798053,"1014":3.2644482289,"1015":3.3344162071,"1016":3.4043841853,"1017":3.4719755864,"1018":3.5395669874,"1019":3.6045150591,"1020":3.6694631307,"1021":3.7315115526,"1022":3.7935599744,"1023":3.8524638696,"1024":3.9113677648,"1025":3.9668946667,"1026":4.0224215686,"1027":4.0743523377,"1028":4.1262831069,"1029":4.1744127964,"1030":4.2225424859,"1031":4.2666811498,"1032":4.3108198138,"1033":4.3507932569,"1034":4.3907667001,"1035":4.4264171656,"1036":4.4620676312,"1037":4.4932544229,"1038":4.5244412147,"1039":4.5510412527,"1040":4.5776412907,"1041":4.5995495968,"1042":4.6214579028,"1043":4.6385880148,"1044":4.6557181268,"1045":4.6680024401,"1046":4.6802867533,"1047":4.6876767872,"1048":4.6950668211,"1049":4.6975334105,"1050":4.7,"1051":4.6975334105,"1052":4.6950668211,"1053":4.6876767872,"1054":4.6802867533,"1055":4.6680024401,"1056":4.6557181268,"1057":4.6385880148,"1058":4.6214579028,"1059":4.5995495968,"1060":4.5776412907,"1061":4.5510412527,"1062":4.5244412147,"1063":4.4932544229,"1064":4.4620676312,"1065":4.4264171656,"1066":4.3907667001,"1067":4.3507932569,"1068":4.3108198138,"1069":4.2666811498,"1070":4.2225424859,"1071":4.1744127964,"1072":4.1262831069,"1073":4.0743523377,"1074":4.0224215686,"1075":3.9668946667,"1076":3.9113677648,"1077":3.8524638696,"1078":3.7935599744,"1079":3.7315115526,"1080":3.6694631307,"1081":3.6045150591,"1082":3.5395669874,"1083":3.4719755864,"1084":3.4043841853,"1085":3.3344162071,"1086":3.2644482289,"1087":3.1923798053,"1088":3.1203113817,"1089":3.0464269338,"1090":2.9725424859,"1091":2.8971336019,"1092":2.8217247179,"1093":2.7450890022,"1094":2.6684532865,"1095":2.5908931852,"1096":2.5133330839,"1097":2.4351546914,"1098":2.3569762988,"1099":2.2784881494,"1100":2.2,"1101":2.1215118506,"1102":2.0430237012,"1103":1.9648453086,"1104":1.8866669161,"1105":1.8091068148,"1106":1.7315467135,"1107":1.6549109978,"1108":1.5782752821,"1109":1.5028663981,"1110":1.4274575141,"1111":1.3535730662,"1112":1.2796886183,"1113":1.2076201947,"1114":1.1355517711,"1115":1.0655837929,"1116":0.9956158147,"1117":0.9280244136,"1118":0.8604330126,"1119":0.7954849409,"1120":0.7305368693,"1121":0.6684884474,"1122":0.6064400256,"1123":0.5475361304,"1124":0.4886322352,"1125":0.4331053333,"1126":0.3775784314,"1127":0.3256476623,"1128":0.2737168931,"1129":0.2255872036,"1130":0.1774575141,"1131":0.1333188502,"1132":0.0891801862,"1133":0.0492067431,"1134":0.0092332999,"1135":-0.0264171656,"1136":-0.0620676312,"1137":-0.0932544229,"1138":-0.1244412147,"1139":-0.1510412527,"1140":-0.1776412907,"1141":-0.1995495968,"1142":-0.2214579028,"1143":-0.2385880148,"1144":-0.2557181268,"1145":-0.2680024401,"1146":-0.2802867533,"1147":-0.2876767872,"1148":-0.2950668211,"1149":-0.2975334105,"1150":-0.3,"1151":-0.2975334105,"1152":-0.2950668211,"1153":-0.2876767872,"1154":-0.2802867533,"1155":-0.2680024401,"1156":-0.2557181268,"1157":-0.2385880148,"1158":-0.2214579028,"1159":-0.1995495968,"1160":-0.1776412907,"1161":-0.1510412527,"1162":-0.1244412147,"1163":-0.0932544229,"1164":-0.0620676312,"1165":-0.0264171656,"1166":0.0092332999,"1167":0.0492067431,"1168":0.0891801862,"1169":0.1333188502,"1170":0.1774575141,"1171":0.2255872036,"1172":0.2737168931,"1173":0.3256476623,"1174":0.3775784314,"1175":0.4331053333,"1176":0.4886322352,"1177":0.5475361304,"1178":0.6064400256,"1179":0.6684884474,"1180":0.7305368693,"1181":0.7954849409,"1182":0.8604330126,"1183":0.9280244136,"1184":0.9956158147,"1185":1.0655837929,"1186":1.1355517711,"1187":1.2076201947,"1188":1.2796886183,"1189":1.3535730662,"1190":1.4274575141,"1191":1.5028663981,"1192":1.5782752821,"1193":1.6549109978,"1194":1.7315467135,"1195":1.8091068148,"1196":1.8866669161,"1197":1.9648453086,"1198":2.0430237012,"1199":2.1215118506,"1200":2.2,"1201":2.2784881494,"1202":2.3569762988,"1203":2.4351546914,"1204":2.5133330839,"1205":2.5908931852,"1206":2.6684532865,"1207":2.7450890022,"1208":2.8217247179,"1209":2.8971336019,"1210":2.9725424859,"1211":3.0464269338,"1212":3.1203113817,"1213":3.1923798053,"1214":3.2644482289,"1215":3.3344162071,"1216":3.4043841853,"1217":3.4719755864,"1218":3.5395669874,"1219":3.6045150591,"1220":3.6694631307,"1221":3.7315115526,"1222":3.7935599744,"1223":3.8524638696,"1224":3.9113677648,"1225":3.9668946667,"1226":4.0224215686,"1227":4.0743523377,"1228":4.1262831069,"1229":4.1744127964,"1230":4.2225424859,"1231":4.2666811498,"1232":4.3108198138,"1233":4.3507932569,"1234":4.3907667001,"1235":4.4264171656,"1236":4.4620676312,"1237":4.4932544229,"1238":4.5244412147,"1239":4.5510412527,"1240":4.5776412907,"1241":4.5995495968,"1242":4.6214579028,"1243":4.6385880148,"1244":4.6557181268,"1245":4.6680024401,"1246":4.6802867533,"1247":4.6876767872,"1248":4.6950668211,"1249":4.6975334105,"1250":4.7,"1251":4.6975334105,"1252":4.6950668211,"1253":4.6876767872,"1254":4.6802867533,"1255":4.6680024401,"1256":4.6557181268,"1257":4.6385880148,"1258":4.6214579028,"1259":4.5995495968,"1260":4.5776412907,"1261":4.5510412527,"1262":4.5244412147,"1263":4.4932544229,"1264":4.4620676312,"1265":4.4264171656,"1266":4.3907667001,"1267":4.3507932569,"1268":4.3108198138,"1269":4.2666811498,"1270":4.2225424859,"1271":4.1744127964,"1272":4.1262831069,"1273":4.0743523377,"1274":4.0224215686,"1275":3.9668946667,"1276":3.9113677648,"1277":3.8524638696,"1278":3.7935599744,"1279":3.7315115526,"1280":3.6694631307,"1281":3.6045150591,"1282":3.5395669874,"1283":3.4719755864,"1284":3.4043841853,"1285":3.3344162071,"1286":3.2644482289,"1287":3.1923798053,"1288":3.1203113817,"1289":3.0464269338,"1290":2.9725424859,"1291":2.8971336019,"1292":2.8217247179,"1293":2.7450890022,"1294":2.6684532865,"1295":2.5908931852,"1296":2.5133330839,"1297":2.4351546914,"1298":2.3569762988,"1299":2.2784881494,"1300":2.2,"1301":2.1215118506,"1302":2.0430237012,"1303":1.9648453086,"1304":1.8866669161,"1305":1.8091068148,"1306":1.7315467135,"1307":1.6549109978,"1308":1.5782752821,"1309":1.5028663981,"1310":1.4274575141,"1311":1.3535730662,"1312":1.2796886183,"1313":1.2076201947,"1314":1.1355517711,"1315":1.0655837929,"1316":0.9956158147,"1317":0.9280244136,"1318":0.8604330126,"1319":0.7954849409,"1320":0.7305368693,"1321":0.6684884474,"1322":0.6064400256,"1323":0.5475361304,"1324":0.4886322352,"1325":0.4331053333,"1326":0.3775784314,"1327":0.3256476623,"1328":0.2737168931,"1329":0.2255872036,"1330":0.1774575141,"1331":0.1333188502,"1332":0.0891801862,"1333":0.0492067431,"1334":0.0092332999,"1335":-0.0264171656,"1336":-0.0620676312,"1337":-0.0932544229,"1338":-0.1244412147,"1339":-0.1510412527,"1340":-0.1776412907,"1341":-0.1995495968,"1342":-0.2214579028,"1343":-0.2385880148,"1344":-0.2557181268,"1345":-0.2680024401,"1346":-0.2802867533,"1347":-0.2876767872,"1348":-0.2950668211,"1349":-0.2975334105,"1350":-0.3,"1351":-0.2975334105,"1352":-0.2950668211,"1353":-0.2876767872,"1354":-0.2802867533,"1355":-0.2680024401,"1356":-0.2557181268,"1357":-0.2385880148,"1358":-0.2214579028,"1359":-0.1995495968,"1360":-0.1776412907,"1361":-0.1510412527,"1362":-0.1244412147,"1363":-0.0932544229,"1364":-0.0620676312,"1365":-0.0264171656,"1366":0.0092332999,"1367":0.0492067431,"1368":0.0891801862,"1369":0.1333188502,"1370":0.1774575141,"1371":0.2255872036,"1372":0.2737168931,"1373":0.3256476623,"1374":0.3775784314,"1375":0.4331053333,"1376":0.4886322352,"1377":0.5475361304,"1378":0.6064400256,"1379":0.6684884474,"1380":0.7305368693,"1381":0.7954849409,"1382":0.8604330126,"1383":0.9280244136,"1384":0.9956158147,"1385":1.0655837929,"1386":1.1355517711,"1387":1.2076201947,"1388":1.2796886183,"1389":1.3535730662,"1390":1.4274575141,"1391":1.5028663981,"1392":1.5782752821,"1393":1.6549109978,"1394":1.7315467135,"1395":1.8091068148,"1396":1.8866669161,"1397":1.9648453086,"1398":2.0430237012,"1399":2.1215118506,"1400":2.2,"1401":2.2784881494,"1402":2.3569762988,"1403":2.4351546914,"1404":2.5133330839,"1405":2.5908931852,"1406":2.6684532865,"1407":2.7450890022,"1408":2.8217247179,"1409":2.8971336019,"1410":2.9725424859,"1411":3.0464269338,"1412":3.1203113817,"1413":3.1923798053,"1414":3.2644482289,"1415":3.3344162071,"1416":3.4043841853,"1417":3.4719755864,"1418":3.5395669874,"1419":3.6045150591,"1420":3.6694631307,"1421":3.7315115526,"1422":3.7935599744,"1423":3.8524638696,"1424":3.9113677648,"1425":3.9668946667,"1426":4.0224215686,"1427":4.0743523377,"1428":4.1262831069,"1429":4.1744127964,"1430":4.2225424859,"1431":4.2666811498,"1432":4.3108198138,"1433":4.3507932569,"1434":4.3907667001,"1435":4.4264171656,"1436":4.4620676312,"1437":4.4932544229,"1438":4.5244412147,"1439":4.5510412527,"1440":4.5776412907,"1441":4.5995495968,"1442":4.6214579028,"1443":4.6385880148,"1444":4.6557181268,"1445":4.6680024401,"1446":4.6802867533,"1447":4.6876767872,"1448":4.6950668211,"1449":4.6975334105,"1450":4.7,"1451":4.6975334105,"1452":4.6950668211,"1453":4.6876767872,"1454":4.6802867533,"1455":4.6680024401,"1456":4.6557181268,"1457":4.6385880148,"1458":4.6214579028,"1459":4.5995495968,"1460":4.5776412907,"1461":4.5510412527,"1462":4.5244412147,"1463":4.4932544229,"1464":4.4620676312,"1465":4.4264171656,"1466":4.3907667001,"1467":4.3507932569,"1468":4.3108198138,"1469":4.2666811498,"1470":4.2225424859,"1471":4.1744127964,"1472":4.1262831069,"1473":4.0743523377,"1474":4.0224215686,"1475":3.9668946667,"1476":3.9113677648,"1477":3.8524638696,"1478":3.7935599744,"1479":3.7315115526,"1480":3.6694631307,"1481":3.6045150591,"1482":3.5395669874,"1483":3.4719755864,"1484":3.4043841853,"1485":3.3344162071,"1486":3.2644482289,"1487":3.1923798053,"1488":3.1203113817,"1489":3.0464269338,"1490":2.9725424859,"1491":2.8971336019,"1492":2.8217247179,"1493":2.7450890022,"1494":2.6684532865,"1495":2.5908931852,"1496":2.5133330839,"1497":2.4351546914,"1498":2.3569762988,"1499":2.2784881494,"1500":2.2,"1501":2.1215118506,"1502":2.0430237012,"1503":1.9648453086,"1504":1.8866669161,"1505":1.8091068148,"1506":1.7315467135,"1507":1.6549109978,"1508":1.5782752821,"1509":1.5028663981,"1510":1.4274575141,"1511":1.3535730662,"1512":1.2796886183,"1513":1.2076201947,"1514":1.1355517711,"1515":1.0655837929,"1516":0.9956158147,"1517":0.9280244136,"1518":0.8604330126,"1519":0.7954849409,"1520":0.7305368693,"1521":0.6684884474,"1522":0.6064400256,"1523":0.5475361304,"1524":0.4886322352,"1525":0.4331053333,"1526":0.3775784314,"1527":0.3256476623,"1528":0.2737168931,"1529":0.2255872036,"1530":0.1774575141,"1531":0.1333188502,"1532":0.0891801862,"1533":0.0492067431,"1534":0.0092332999,"1535":-0.0264171656,"1536":-0.0620676312,"1537":-0.0932544229,"1538":-0.1244412147,"1539":-0.1510412527,"1540":-0.1776412907,"1541":-0.1995495968,"1542":-0.2214579028,"1543":-0.2385880148,"1544":-0.2557181268,"1545":-0.2680024401,"1546":-0.2802867533,"1547":-0.2876767872,"1548":-0.2950668211,"1549":-0.2975334105,"1550":-0.3,"1551":-0.2975334105,"1552":-0.2950668211,"1553":-0.2876767872,"1554":-0.2802867533,"1555":-0.2680024401,"1556":-0.2557181268,"1557":-0.2385880148,"1558":-0.2214579028,"1559":-0.1995495968,"1560":-0.1776412907,"1561":-0.1510412527,"1562":-0.1244412147,"1563":-0.0932544229,"1564":-0.0620676312,"1565":-0.0264171656,"1566":0.0092332999,"1567":0.0492067431,"1568":0.0891801862,"1569":0.1333188502,"1570":0.1774575141,"1571":0.2255872036,"1572":0.2737168931,"1573":0.3256476623,"1574":0.3775784314,"1575":0.4331053333,"1576":0.4886322352,"1577":0.5475361304,"1578":0.6064400256,"1579":0.6684884474,"1580":0.7305368693,"1581":0.7954849409,"1582":0.8604330126,"1583":0.9280244136,"1584":0.9956158147,"1585":1.0655837929,"1586":1.1355517711,"1587":1.2076201947,"1588":1.2796886183,"1589":1.3535730662,"1590":1.4274575141,"1591":1.5028663981,"1592":1.5782752821,"1593":1.6549109978,"1594":1.7315467135,"1595":1.8091068148,"1596":1.8866669161,"1597":1.9648453086,"1598":2.0430237012,"1599":2.1215118506,"1600":2.2,"1601":2.2784881494,"1602":2.3569762988,"1603":2.4351546914,"1604":2.5133330839,"1605":2.5908931852,"1606":2.6684532865,"1607":2.7450890022,"1608":2.8217247179,"1609":2.8971336019,"1610":2.9725424859,"1611":3.0464269338,"1612":3.1203113817,"1613":3.1923798053,"1614":3.2644482289,"1615":3.3344162071,"1616":3.4043841853,"1617":3.4719755864,"1618":3.5395669874,"1619":3.6045150591,"1620":3.6694631307,"1621":3.7315115526,"1622":3.7935599744,"1623":3.8524638696,"1624":3.9113677648,"1625":3.9668946667,"1626":4.0224215686,"1627":4.0743523377,"1628":4.1262831069,"1629":4.1744127964,"1630":4.2225424859,"1631":4.2666811498,"1632":4.3108198138,"1633":4.3507932569,"1634":4.3907667001,"1635":4.4264171656,"1636":4.4620676312,"1637":4.4932544229,"1638":4.5244412147,"1639":4.5510412527,"1640":4.5776412907,"1641":4.5995495968,"1642":4.6214579028,"1643":4.6385880148,"1644":4.6557181268,"1645":4.6680024401,"1646":4.6802867533,"1647":4.6876767872,"1648":4.6950668211,"1649":4.6975334105,"1650":4.7,"1651":4.6975334105,"1652":4.6950668211,"1653":4.6876767872,"1654":4.6802867533,"1655":4.6680024401,"1656":4.6557181268,"1657":4.6385880148,"1658":4.6214579028,"1659":4.5995495968,"1660":4.5776412907,"1661":4.5510412527,"1662":4.5244412147,"1663":4.4932544229,"1664":4.4620676312,"1665":4.4264171656,"1666":4.3907667001,"1667":4.3507932569,"1668":4.3108198138,"1669":4.2666811498,"1670":4.2225424859,"1671":4.1744127964,"1672":4.1262831069,"1673":4.0743523377,"1674":4.0224215686,"1675":3.9668946667,"1676":3.9113677648,"1677":3.8524638696,"1678":3.7935599744,"1679":3.7315115526,"1680":3.6694631307,"1681":3.6045150591,"1682":3.5395669874,"1683":3.4719755864,"1684":3.4043841853,"1685":3.3344162071,"1686":3.2644482289,"1687":3.1923798053,"1688":3.1203113817,"1689":3.0464269338,"1690":2.9725424859,"1691":2.8971336019,"1692":2.8217247179,"1693":2.7450890022,"1694":2.6684532865,"1695":2.5908931852,"1696":2.5133330839,"1697":2.4351546914,"1698":2.3569762988,"1699":2.2784881494,"1700":2.2,"1701":2.1215118506,"1702":2.0430237012,"1703":1.9648453086,"1704":1.8866669161,"1705":1.8091068148,"1706":1.7315467135,"1707":1.6549109978,"1708":1.5782752821,"1709":1.5028663981,"1710":1.4274575141,"1711":1.3535730662,"1712":1.2796886183,"1713":1.2076201947,"1714":1.1355517711,"1715":1.0655837929,"1716":0.9956158147,"1717":0.9280244136,"1718":0.8604330126,"1719":0.7954849409,"1720":0.7305368693,"1721":0.6684884474,"1722":0.6064400256,"1723":0.5475361304,"1724":0.4886322352,"1725":0.4331053333,"1726":0.3775784314,"1727":0.3256476623,"1728":0.2737168931,"1729":0.2255872036,"1730":0.1774575141,"1731":0.1333188502,"1732":0.0891801862,"1733":0.0492067431,"1734":0.0092332999,"1735":-0.0264171656,"1736":-0.0620676312,"1737":-0.0932544229,"1738":-0.1244412147,"1739":-0.1510412527,"1740":-0.1776412907,"1741":-0.1995495968,"1742":-0.2214579028,"1743":-0.2385880148,"1744":-0.2557181268,"1745":-0.2680024401,"1746":-0.2802867533,"1747":-0.2876767872,"1748":-0.2950668211,"1749":-0.2975334105,"1750":-0.3,"1751":-0.2975334105,"1752":-0.2950668211,"1753":-0.2876767872,"1754":-0.2802867533,"1755":-0.2680024401,"1756":-0.2557181268,"1757":-0.2385880148,"1758":-0.2214579028,"1759":-0.1995495968,"1760":-0.1776412907,"1761":-0.1510412527,"1762":-0.1244412147,"1763":-0.0932544229,"1764":-0.0620676312,"1765":-0.0264171656,"1766":0.0092332999,"1767":0.0492067431,"1768":0.0891801862,"1769":0.1333188502,"1770":0.1774575141,"1771":0.2255872036,"1772":0.2737168931,"1773":0.3256476623,"1774":0.3775784314,"1775":0.4331053333,"1776":0.4886322352,"1777":0.5475361304,"1778":0.6064400256,"1779":0.6684884474,"1780":0.7305368693,"1781":0.7954849409,"1782":0.8604330126,"1783":0.9280244136,"1784":0.9956158147,"1785":1.0655837929,"1786":1.1355517711,"1787":1.2076201947,"1788":1.2796886183,"1789":1.3535730662,"1790":1.4274575141,"1791":1.5028663981,"1792":1.5782752821,"1793":1.6549109978,"1794":1.7315467135,"1795":1.8091068148,"1796":1.8866669161,"1797":1.9648453086,"1798":2.0430237012,"1799":2.1215118506,"1800":2.2,"1801":2.2784881494,"1802":2.3569762988,"1803":2.4351546914,"1804":2.5133330839,"1805":2.5908931852,"1806":2.6684532865,"1807":2.7450890022,"1808":2.8217247179,"1809":2.8971336019,"1810":2.9725424859,"1811":3.0464269338,"1812":3.1203113817,"1813":3.1923798053,"1814":3.2644482289,"1815":3.3344162071,"1816":3.4043841853,"1817":3.4719755864,"1818":3.5395669874,"1819":3.6045150591,"1820":3.6694631307,"1821":3.7315115526,"1822":3.7935599744,"1823":3.8524638696,"1824":3.9113677648,"1825":3.9668946667,"1826":4.0224215686,"1827":4.0743523377,"1828":4.1262831069,"1829":4.1744127964,"1830":4.2225424859,"1831":4.2666811498,"1832":4.3108198138,"1833":4.3507932569,"1834":4.3907667001,"1835":4.4264171656,"1836":4.4620676312,"1837":4.4932544229,"1838":4.5244412147,"1839":4.5510412527,"1840":4.5776412907,"1841":4.5995495968,"1842":4.6214579028,"1843":4.6385880148,"1844":4.6557181268,"1845":4.6680024401,"1846":4.6802867533,"1847":4.6876767872,"1848":4.6950668211,"1849":4.6975334105,"1850":4.7,"1851":4.6975334105,"1852":4.6950668211,"1853":4.6876767872,"1854":4.6802867533,"1855":4.6680024401,"1856":4.6557181268,"1857":4.6385880148,"1858":4.6214579028,"1859":4.5995495968,"1860":4.5776412907,"1861":4.5510412527,"1862":4.5244412147,"1863":4.4932544229,"1864":4.4620676312,"1865":4.4264171656,"1866":4.3907667001,"1867":4.3507932569,"1868":4.3108198138,"1869":4.2666811498,"1870":4.2225424859,"1871":4.1744127964,"1872":4.1262831069,"1873":4.0743523377,"1874":4.0224215686,"1875":3.9668946667,"1876":3.9113677648,"1877":3.8524638696,"1878":3.7935599744,"1879":3.7315115526,"1880":3.6694631307,"1881":3.6045150591,"1882":3.5395669874,"1883":3.4719755864,"1884":3.4043841853,"1885":3.3344162071,"1886":3.2644482289,"1887":3.1923798053,"1888":3.1203113817,"1889":3.0464269338,"1890":2.9725424859,"1891":2.8971336019,"1892":2.8217247179,"1893":2.7450890022,"1894":2.6684532865,"1895":2.5908931852,"1896":2.5133330839,"1897":2.4351546914,"1898":2.3569762988,"1899":2.2784881494,"1900":2.2,"1901":2.1215118506,"1902":2.0430237012,"1903":1.9648453086,"1904":1.8866669161,"1905":1.8091068148,"1906":1.7315467135,"1907":1.6549109978,"1908":1.5782752821,"1909":1.5028663981,"1910":1.4274575141,"1911":1.3535730662,"1912":1.2796886183,"1913":1.2076201947,"1914":1.1355517711,"1915":1.0655837929,"1916":0.9956158147,"1917":0.9280244136,"1918":0.8604330126,"1919":0.7954849409,"1920":0.7305368693,"1921":0.6684884474,"1922":0.6064400256,"1923":0.5475361304,"1924":0.4886322352,"1925":0.4331053333,"1926":0.3775784314,"1927":0.3256476623,"1928":0.2737168931,"1929":0.2255872036,"1930":0.1774575141,"1931":0.1333188502,"1932":0.0891801862,"1933":0.0492067431,"1934":0.0092332999,"1935":-0.0264171656,"1936":-0.0620676312,"1937":-0.0932544229,"1938":-0.1244412147,"1939":-0.1510412527,"1940":-0.1776412907,"1941":-0.1995495968,"1942":-0.2214579028,"1943":-0.2385880148,"1944":-0.2557181268,"1945":-0.2680024401,"1946":-0.2802867533,"1947":-0.2876767872,"1948":-0.2950668211,"1949":-0.2975334105,"1950":-0.3,"1951":-0.2975334105,"1952":-0.2950668211,"1953":-0.2876767872,"1954":-0.2802867533,"1955":-0.2680024401,"1956":-0.2557181268,"1957":-0.2385880148,"1958":-0.2214579028,"1959":-0.1995495968,"1960":-0.1776412907,"1961":-0.1510412527,"1962":-0.1244412147,"1963":-0.0932544229,"1964":-0.0620676312,"1965":-0.0264171656,"1966":0.0092332999,"1967":0.0492067431,"1968":0.0891801862,"1969":0.1333188502,"1970":0.1774575141,"1971":0.2255872036,"1972":0.2737168931,"1973":0.3256476623,"1974":0.3775784314,"1975":0.4331053333,"1976":0.4886322352,"1977":0.5475361304,"1978":0.6064400256,"1979":0.6684884474,"1980":0.7305368693,"1981":0.7954849409,"1982":0.8604330126,"1983":0.9280244136,"1984":0.9956158147,"1985":1.0655837929,"1986":1.1355517711,"1987":1.2076201947,"1988":1.2796886183,"1989":1.3535730662,"1990":1.4274575141,"1991":1.5028663981,"1992":1.5782752821,"1993":1.6549109978,"1994":1.7315467135,"1995":1.8091068148,"1996":1.8866669161,"1997":1.9648453086,"1998":2.0430237012,"1999":2.1215118506,"2000":2.2,"2001":2.2784881494,"2002":2.3569762988,"2003":2.4351546914,"2004":2.5133330839,"2005":2.5908931852,"2006":2.6684532865,"2007":2.7450890022,"2008":2.8217247179,"2009":2.8971336019,"2010":2.9725424859,"2011":3.0464269338,"2012":3.1203113817,"2013":3.1923798053,"2014":3.2644482289,"2015":3.3344162071,"2016":3.4043841853,"2017":3.4719755864,"2018":3.5395669874,"2019":3.6045150591,"2020":3.6694631307,"2021":3.7315115526,"2022":3.7935599744,"2023":3.8524638696,"2024":3.9113677648,"2025":3.9668946667,"2026":4.0224215686,"2027":4.0743523377,"2028":4.1262831069,"2029":4.1744127964,"2030":4.2225424859,"2031":4.2666811498,"2032":4.3108198138,"2033":4.3507932569,"2034":4.3907667001,"2035":4.4264171656,"2036":4.4620676312,"2037":4.4932544229,"2038":4.5244412147,"2039":4.5510412527,"2040":4.5776412907,"2041":4.5995495968,"2042":4.6214579028,"2043":4.6385880148,"2044":4.6557181268,"2045":4.6680024401,"2046":4.6802867533,"2047":4.6876767872,"2048":4.6950668211,"2049":4.6975334105,"2050":4.7,"2051":4.6975334105,"2052":4.6950668211,"2053":4.6876767872,"2054":4.6802867533,"2055":4.6680024401,"2056":4.6557181268,"2057":4.6385880148,"2058":4.6214579028,"2059":4.5995495968,"2060":4.5776412907,"2061":4.5510412527,"2062":4.5244412147,"2063":4.4932544229,"2064":4.4620676312,"2065":4.4264171656,"2066":4.3907667001,"2067":4.3507932569,"2068":4.3108198138,"2069":4.2666811498,"2070":4.2225424859,"2071":4.1744127964,"2072":4.1262831069,"2073":4.0743523377,"2074":4.0224215686,"2075":3.9668946667,"2076":3.9113677648,"2077":3.8524638696,"2078":3.7935599744,"2079":3.7315115526,"2080":3.6694631307,"2081":3.6045150591,"2082":3.5395669874,"2083":3.4719755864,"2084":3.4043841853,"2085":3.3344162071,"2086":3.2644482289,"2087":3.1923798053,"2088":3.1203113817,"2089":3.0464269338,"2090":2.9725424859,"2091":2.8971336019,"2092":2.8217247179,"2093":2.7450890022,"2094":2.6684532865,"2095":2.5908931852,"2096":2.5133330839,"2097":2.4351546914,"2098":2.3569762988,"2099":2.2784881494,"2100":2.2,"2101":2.1215118506,"2102":2.0430237012,"2103":1.9648453086,"2104":1.8866669161,"2105":1.8091068148,"2106":1.7315467135,"2107":1.6549109978,"2108":1.5782752821,"2109":1.5028663981,"2110":1.4274575141,"2111":1.3535730662,"2112":1.2796886183,"2113":1.2076201947,"2114":1.1355517711,"2115":1.0655837929,"2116":0.9956158147,"2117":0.9280244136,"2118":0.8604330126,"2119":0.7954849409,"2120":0.7305368693,"2121":0.6684884474,"2122":0.6064400256,"2123":0.5475361304,"2124":0.4886322352,"2125":0.4331053333,"2126":0.3775784314,"2127":0.3256476623,"2128":0.2737168931,"2129":0.2255872036,"2130":0.1774575141,"2131":0.1333188502,"2132":0.0891801862,"2133":0.0492067431,"2134":0.0092332999,"2135":-0.0264171656,"2136":-0.0620676312,"2137":-0.0932544229,"2138":-0.1244412147,"2139":-0.1510412527,"2140":-0.1776412907,"2141":-0.1995495968,"2142":-0.2214579028,"2143":-0.2385880148,"2144":-0.2557181268,"2145":-0.2680024401,"2146":-0.2802867533,"2147":-0.2876767872,"2148":-0.2950668211,"2149":-0.2975334105,"2150":-0.3,"2151":-0.2975334105,"2152":-0.2950668211,"2153":-0.2876767872,"2154":-0.2802867533,"2155":-0.2680024401,"2156":-0.2557181268,"2157":-0.2385880148,"2158":-0.2214579028,"2159":-0.1995495968,"2160":-0.1776412907,"2161":-0.1510412527,"2162":-0.1244412147,"2163":-0.0932544229,"2164":-0.0620676312,"2165":-0.0264171656,"2166":0.0092332999,"2167":0.0492067431,"2168":0.0891801862,"2169":0.1333188502,"2170":0.1774575141,"2171":0.2255872036,"2172":0.2737168931,"2173":0.3256476623,"2174":0.3775784314,"2175":0.4331053333,"2176":0.4886322352,"2177":0.5475361304,"2178":0.6064400256,"2179":0.6684884474,"2180":0.7305368693,"2181":0.7954849409,"2182":0.8604330126,"2183":0.9280244136,"2184":0.9956158147,"2185":1.0655837929,"2186":1.1355517711,"2187":1.2076201947,"2188":1.2796886183,"2189":1.3535730662,"2190":1.4274575141,"2191":1.5028663981,"2192":1.5782752821,"2193":1.6549109978,"2194":1.7315467135,"2195":1.8091068148,"2196":1.8866669161,"2197":1.9648453086,"2198":2.0430237012,"2199":2.1215118506,"2200":2.2,"2201":2.2784881494,"2202":2.3569762988,"2203":2.4351546914,"2204":2.5133330839,"2205":2.5908931852,"2206":2.6684532865,"2207":2.7450890022,"2208":2.8217247179,"2209":2.8971336019,"2210":2.9725424859,"2211":3.0464269338,"2212":3.1203113817,"2213":3.1923798053,"2214":3.2644482289,"2215":3.3344162071,"2216":3.4043841853,"2217":3.4719755864,"2218":3.5395669874,"2219":3.6045150591,"2220":3.6694631307,"2221":3.7315115526,"2222":3.7935599744,"2223":3.8524638696,"2224":3.9113677648,"2225":3.9668946667,"2226":4.0224215686,"2227":4.0743523377,"2228":4.1262831069,"2229":4.1744127964,"2230":4.2225424859,"2231":4.2666811498,"2232":4.3108198138,"2233":4.3507932569,"2234":4.3907667001,"2235":4.4264171656,"2236":4.4620676312,"2237":4.4932544229,"2238":4.5244412147,"2239":4.5510412527,"2240":4.5776412907,"2241":4.5995495968,"2242":4.6214579028,"2243":4.6385880148,"2244":4.6557181268,"2245":4.6680024401,"2246":4.6802867533,"2247":4.6876767872,"2248":4.6950668211,"2249":4.6975334105,"2250":4.7,"2251":4.6975334105,"2252":4.6950668211,"2253":4.6876767872,"2254":4.6802867533,"2255":4.6680024401,"2256":4.6557181268,"2257":4.6385880148,"2258":4.6214579028,"2259":4.5995495968,"2260":4.5776412907,"2261":4.5510412527,"2262":4.5244412147,"2263":4.4932544229,"2264":4.4620676312,"2265":4.4264171656,"2266":4.3907667001,"2267":4.3507932569,"2268":4.3108198138,"2269":4.2666811498,"2270":4.2225424859,"2271":4.1744127964,"2272":4.1262831069,"2273":4.0743523377,"2274":4.0224215686,"2275":3.9668946667,"2276":3.9113677648,"2277":3.8524638696,"2278":3.7935599744,"2279":3.7315115526,"2280":3.6694631307,"2281":3.6045150591,"2282":3.5395669874,"2283":3.4719755864,"2284":3.4043841853,"2285":3.3344162071,"2286":3.2644482289,"2287":3.1923798053,"2288":3.1203113817,"2289":3.0464269338,"2290":2.9725424859,"2291":2.8971336019,"2292":2.8217247179,"2293":2.7450890022,"2294":2.6684532865,"2295":2.5908931852,"2296":2.5133330839,"2297":2.4351546914,"2298":2.3569762988,"2299":2.2784881494,"2300":2.2,"2301":2.1215118506,"2302":2.0430237012,"2303":1.9648453086,"2304":1.8866669161,"2305":1.8091068148,"2306":1.7315467135,"2307":1.6549109978,"2308":1.5782752821,"2309":1.5028663981,"2310":1.4274575141,"2311":1.3535730662,"2312":1.2796886183,"2313":1.2076201947,"2314":1.1355517711,"2315":1.0655837929,"2316":0.9956158147,"2317":0.9280244136,"2318":0.8604330126,"2319":0.7954849409,"2320":0.7305368693,"2321":0.6684884474,"2322":0.6064400256,"2323":0.5475361304,"2324":0.4886322352,"2325":0.4331053333,"2326":0.3775784314,"2327":0.3256476623,"2328":0.2737168931,"2329":0.2255872036,"2330":0.1774575141,"2331":0.1333188502,"2332":0.0891801862,"2333":0.0492067431,"2334":0.0092332999,"2335":-0.0264171656,"2336":-0.0620676312,"2337":-0.0932544229,"2338":-0.1244412147,"2339":-0.1510412527,"2340":-0.1776412907,"2341":-0.1995495968,"2342":-0.2214579028,"2343":-0.2385880148,"2344":-0.2557181268,"2345":-0.2680024401,"2346":-0.2802867533,"2347":-0.2876767872,"2348":-0.2950668211,"2349":-0.2975334105,"2350":-0.3,"2351":-0.2975334105,"2352":-0.2950668211,"2353":-0.2876767872,"2354":-0.2802867533,"2355":-0.2680024401,"2356":-0.2557181268,"2357":-0.2385880148,"2358":-0.2214579028,"2359":-0.1995495968,"2360":-0.1776412907,"2361":-0.1510412527,"2362":-0.1244412147,"2363":-0.0932544229,"2364":-0.0620676312,"2365":-0.0264171656,"2366":0.0092332999,"2367":0.0492067431,"2368":0.0891801862,"2369":0.1333188502,"2370":0.1774575141,"2371":0.2255872036,"2372":0.2737168931,"2373":0.3256476623,"2374":0.3775784314,"2375":0.4331053333,"2376":0.4886322352,"2377":0.5475361304,"2378":0.6064400256,"2379":0.6684884474,"2380":0.7305368693,"2381":0.7954849409,"2382":0.8604330126,"2383":0.9280244136,"2384":0.9956158147,"2385":1.0655837929,"2386":1.1355517711,"2387":1.2076201947,"2388":1.2796886183,"2389":1.3535730662,"2390":1.4274575141,"2391":1.5028663981,"2392":1.5782752821,"2393":1.6549109978,"2394":1.7315467135,"2395":1.8091068148,"2396":1.8866669161,"2397":1.9648453086,"2398":2.0430237012,"2399":2.1215118506,"2400":2.2,"2401":2.2784881494,"2402":2.3569762988,"2403":2.4351546914,"2404":2.5133330839,"2405":2.5908931852,"2406":2.6684532865,"2407":2.7450890022,"2408":2.8217247179,"2409":2.8971336019,"2410":2.9725424859,"2411":3.0464269338,"2412":3.1203113817,"2413":3.1923798053,"2414":3.2644482289,"2415":3.3344162071,"2416":3.4043841853,"2417":3.4719755864,"2418":3.5395669874,"2419":3.6045150591,"2420":3.6694631307,"2421":3.7315115526,"2422":3.7935599744,"2423":3.8524638696,"2424":3.9113677648,"2425":3.9668946667,"2426":4.0224215686,"2427":4.0743523377,"2428":4.1262831069,"2429":4.1744127964,"2430":4.2225424859,"2431":4.2666811498,"2432":4.3108198138,"2433":4.3507932569,"2434":4.3907667001,"2435":4.4264171656,"2436":4.4620676312,"2437":4.4932544229,"2438":4.5244412147,"2439":4.5510412527,"2440":4.5776412907,"2441":4.5995495968,"2442":4.6214579028,"2443":4.6385880148,"2444":4.6557181268,"2445":4.6680024401,"2446":4.6802867533,"2447":4.6876767872,"2448":4.6950668211,"2449":4.6975334105,"2450":4.7,"2451":4.6975334105,"2452":4.6950668211,"2453":4.6876767872,"2454":4.6802867533,"2455":4.6680024401,"2456":4.6557181268,"2457":4.6385880148,"2458":4.6214579028,"2459":4.5995495968,"2460":4.5776412907,"2461":4.5510412527,"2462":4.5244412147,"2463":4.4932544229,"2464":4.4620676312,"2465":4.4264171656,"2466":4.3907667001,"2467":4.3507932569,"2468":4.3108198138,"2469":4.2666811498,"2470":4.2225424859,"2471":4.1744127964,"2472":4.1262831069,"2473":4.0743523377,"2474":4.0224215686,"2475":3.9668946667,"2476":3.9113677648,"2477":3.8524638696,"2478":3.7935599744,"2479":3.7315115526,"2480":3.6694631307,"2481":3.6045150591,"2482":3.5395669874,"2483":3.4719755864,"2484":3.4043841853,"2485":3.3344162071,"2486":3.2644482289,"2487":3.1923798053,"2488":3.1203113817,"2489":3.0464269338,"2490":2.9725424859,"2491":2.8971336019,"2492":2.8217247179,"2493":2.7450890022,"2494":2.6684532865,"2495":2.5908931852,"2496":2.5133330839,"2497":2.4351546914,"2498":2.3569762988,"2499":2.2784881494,"2500":2.2,"2501":2.1215118506,"2502":2.0430237012,"2503":1.9648453086,"2504":1.8866669161,"2505":1.8091068148,"2506":1.7315467135,"2507":1.6549109978,"2508":1.5782752821,"2509":1.5028663981,"2510":1.4274575141,"2511":1.3535730662,"2512":1.2796886183,"2513":1.2076201947,"2514":1.1355517711,"2515":1.0655837929,"2516":0.9956158147,"2517":0.9280244136,"2518":0.8604330126,"2519":0.7954849409,"2520":0.7305368693,"2521":0.6684884474,"2522":0.6064400256,"2523":0.5475361304,"2524":0.4886322352,"2525":0.4331053333,"2526":0.3775784314,"2527":0.3256476623,"2528":0.2737168931,"2529":0.2255872036,"2530":0.1774575141,"2531":0.1333188502,"2532":0.0891801862,"2533":0.0492067431,"2534":0.0092332999,"2535":-0.0264171656,"2536":-0.0620676312,"2537":-0.0932544229,"2538":-0.1244412147,"2539":-0.1510412527,"2540":-0.1776412907,"2541":-0.1995495968,"2542":-0.2214579028,"2543":-0.2385880148,"2544":-0.2557181268,"2545":-0.2680024401,"2546":-0.2802867533,"2547":-0.2876767872,"2548":-0.2950668211,"2549":-0.2975334105,"2550":-0.3,"2551":-0.2975334105,"2552":-0.2950668211,"2553":-0.2876767872,"2554":-0.2802867533,"2555":-0.2680024401,"2556":-0.2557181268,"2557":-0.2385880148,"2558":-0.2214579028,"2559":-0.1995495968,"2560":-0.1776412907,"2561":-0.1510412527,"2562":-0.1244412147,"2563":-0.0932544229,"2564":-0.0620676312,"2565":-0.0264171656,"2566":0.0092332999,"2567":0.0492067431,"2568":0.0891801862,"2569":0.1333188502,"2570":0.1774575141,"2571":0.2255872036,"2572":0.2737168931,"2573":0.3256476623,"2574":0.3775784314,"2575":0.4331053333,"2576":0.4886322352,"2577":0.5475361304,"2578":0.6064400256,"2579":0.6684884474,"2580":0.7305368693,"2581":0.7954849409,"2582":0.8604330126,"2583":0.9280244136,"2584":0.9956158147,"2585":1.0655837929,"2586":1.1355517711,"2587":1.2076201947,"2588":1.2796886183,"2589":1.3535730662,"2590":1.4274575141,"2591":1.5028663981,"2592":1.5782752821,"2593":1.6549109978,"2594":1.7315467135,"2595":1.8091068148,"2596":1.8866669161,"2597":1.9648453086,"2598":2.0430237012,"2599":2.1215118506,"2600":2.2,"2601":2.2784881494,"2602":2.3569762988,"2603":2.4351546914,"2604":2.5133330839,"2605":2.5908931852,"2606":2.6684532865,"2607":2.7450890022,"2608":2.8217247179,"2609":2.8971336019,"2610":2.9725424859,"2611":3.0464269338,"2612":3.1203113817,"2613":3.1923798053,"2614":3.2644482289,"2615":3.3344162071,"2616":3.4043841853,"2617":3.4719755864,"2618":3.5395669874,"2619":3.6045150591,"2620":3.6694631307,"2621":3.7315115526,"2622":3.7935599744,"2623":3.8524638696,"2624":3.9113677648,"2625":3.9668946667,"2626":4.0224215686,"2627":4.0743523377,"2628":4.1262831069,"2629":4.1744127964,"2630":4.2225424859,"2631":4.2666811498,"2632":4.3108198138,"2633":4.3507932569,"2634":4.3907667001,"2635":4.4264171656,"2636":4.4620676312,"2637":4.4932544229,"2638":4.5244412147,"2639":4.5510412527,"2640":4.5776412907,"2641":4.5995495968,"2642":4.6214579028,"2643":4.6385880148,"2644":4.6557181268,"2645":4.6680024401,"2646":4.6802867533,"2647":4.6876767872,"2648":4.6950668211,"2649":4.6975334105,"2650":4.7,"2651":4.6975334105,"2652":4.6950668211,"2653":4.6876767872,"2654":4.6802867533,"2655":4.6680024401,"2656":4.6557181268,"2657":4.6385880148,"2658":4.6214579028,"2659":4.5995495968,"2660":4.5776412907,"2661":4.5510412527,"2662":4.5244412147,"2663":4.4932544229,"2664":4.4620676312,"2665":4.4264171656,"2666":4.3907667001,"2667":4.3507932569,"2668":4.3108198138,"2669":4.2666811498,"2670":4.2225424859,"2671":4.1744127964,"2672":4.1262831069,"2673":4.0743523377,"2674":4.0224215686,"2675":3.9668946667,"2676":3.9113677648,"2677":3.8524638696,"2678":3.7935599744,"2679":3.7315115526,"2680":3.6694631307,"2681":3.6045150591,"2682":3.5395669874,"2683":3.4719755864,"2684":3.4043841853,"2685":3.3344162071,"2686":3.2644482289,"2687":3.1923798053,"2688":3.1203113817,"2689":3.0464269338,"2690":2.9725424859,"2691":2.8971336019,"2692":2.8217247179,"2693":2.7450890022,"2694":2.6684532865,"2695":2.5908931852,"2696":2.5133330839,"2697":2.4351546914,"2698":2.3569762988,"2699":2.2784881494,"2700":2.2,"2701":2.1215118506,"2702":2.0430237012,"2703":1.9648453086,"2704":1.8866669161,"2705":1.8091068148,"2706":1.7315467135,"2707":1.6549109978,"2708":1.5782752821,"2709":1.5028663981,"2710":1.4274575141,"2711":1.3535730662,"2712":1.2796886183,"2713":1.2076201947,"2714":1.1355517711,"2715":1.0655837929,"2716":0.9956158147,"2717":0.9280244136,"2718":0.8604330126,"2719":0.7954849409,"2720":0.7305368693,"2721":0.6684884474,"2722":0.6064400256,"2723":0.5475361304,"2724":0.4886322352,"2725":0.4331053333,"2726":0.3775784314,"2727":0.3256476623,"2728":0.2737168931,"2729":0.2255872036,"2730":0.1774575141,"2731":0.1333188502,"2732":0.0891801862,"2733":0.0492067431,"2734":0.0092332999,"2735":-0.0264171656,"2736":-0.0620676312,"2737":-0.0932544229,"2738":-0.1244412147,"2739":-0.1510412527,"2740":-0.1776412907,"2741":-0.1995495968,"2742":-0.2214579028,"2743":-0.2385880148,"2744":-0.2557181268,"2745":-0.2680024401,"2746":-0.2802867533,"2747":-0.2876767872,"2748":-0.2950668211,"2749":-0.2975334105,"2750":-0.3,"2751":-0.2975334105,"2752":-0.2950668211,"2753":-0.2876767872,"2754":-0.2802867533,"2755":-0.2680024401,"2756":-0.2557181268,"2757":-0.2385880148,"2758":-0.2214579028,"2759":-0.1995495968,"2760":-0.1776412907,"2761":-0.1510412527,"2762":-0.1244412147,"2763":-0.0932544229,"2764":-0.0620676312,"2765":-0.0264171656,"2766":0.0092332999,"2767":0.0492067431,"2768":0.0891801862,"2769":0.1333188502,"2770":0.1774575141,"2771":0.2255872036,"2772":0.2737168931,"2773":0.3256476623,"2774":0.3775784314,"2775":0.4331053333,"2776":0.4886322352,"2777":0.5475361304,"2778":0.6064400256,"2779":0.6684884474,"2780":0.7305368693,"2781":0.7954849409,"2782":0.8604330126,"2783":0.9280244136,"2784":0.9956158147,"2785":1.0655837929,"2786":1.1355517711,"2787":1.2076201947,"2788":1.2796886183,"2789":1.3535730662,"2790":1.4274575141,"2791":1.5028663981,"2792":1.5782752821,"2793":1.6549109978,"2794":1.7315467135,"2795":1.8091068148,"2796":1.8866669161,"2797":1.9648453086,"2798":2.0430237012,"2799":2.1215118506,"2800":2.2,"2801":2.2784881494,"2802":2.3569762988,"2803":2.4351546914,"2804":2.5133330839,"2805":2.5908931852,"2806":2.6684532865,"2807":2.7450890022,"2808":2.8217247179,"2809":2.8971336019,"2810":2.9725424859,"2811":3.0464269338,"2812":3.1203113817,"2813":3.1923798053,"2814":3.2644482289,"2815":3.3344162071,"2816":3.4043841853,"2817":3.4719755864,"2818":3.5395669874,"2819":3.6045150591,"2820":3.6694631307,"2821":3.7315115526,"2822":3.7935599744,"2823":3.8524638696,"2824":3.9113677648,"2825":3.9668946667,"2826":4.0224215686,"2827":4.0743523377,"2828":4.1262831069,"2829":4.1744127964,"2830":4.2225424859,"2831":4.2666811498,"2832":4.3108198138,"2833":4.3507932569,"2834":4.3907667001,"2835":4.4264171656,"2836":4.4620676312,"2837":4.4932544229,"2838":4.5244412147,"2839":4.5510412527,"2840":4.5776412907,"2841":4.5995495968,"2842":4.6214579028,"2843":4.6385880148,"2844":4.6557181268,"2845":4.6680024401,"2846":4.6802867533,"2847":4.6876767872,"2848":4.6950668211,"2849":4.6975334105,"2850":4.7,"2851":4.6975334105,"2852":4.6950668211,"2853":4.6876767872,"2854":4.6802867533,"2855":4.6680024401,"2856":4.6557181268,"2857":4.6385880148,"2858":4.6214579028,"2859":4.5995495968,"2860":4.5776412907,"2861":4.5510412527,"2862":4.5244412147,"2863":4.4932544229,"2864":4.4620676312,"2865":4.4264171656,"2866":4.3907667001,"2867":4.3507932569,"2868":4.3108198138,"2869":4.2666811498,"2870":4.2225424859,"2871":4.1744127964,"2872":4.1262831069,"2873":4.0743523377,"2874":4.0224215686,"2875":3.9668946667,"2876":3.9113677648,"2877":3.8524638696,"2878":3.7935599744,"2879":3.7315115526,"2880":3.6694631307,"2881":3.6045150591,"2882":3.5395669874,"2883":3.4719755864,"2884":3.4043841853,"2885":3.3344162071,"2886":3.2644482289,"2887":3.1923798053,"2888":3.1203113817,"2889":3.0464269338,"2890":2.9725424859,"2891":2.8971336019,"2892":2.8217247179,"2893":2.7450890022,"2894":2.6684532865,"2895":2.5908931852,"2896":2.5133330839,"2897":2.4351546914,"2898":2.3569762988,"2899":2.2784881494,"2900":2.2,"2901":2.1215118506,"2902":2.0430237012,"2903":1.9648453086,"2904":1.8866669161,"2905":1.8091068148,"2906":1.7315467135,"2907":1.6549109978,"2908":1.5782752821,"2909":1.5028663981,"2910":1.4274575141,"2911":1.3535730662,"2912":1.2796886183,"2913":1.2076201947,"2914":1.1355517711,"2915":1.0655837929,"2916":0.9956158147,"2917":0.9280244136,"2918":0.8604330126,"2919":0.7954849409,"2920":0.7305368693,"2921":0.6684884474,"2922":0.6064400256,"2923":0.5475361304,"2924":0.4886322352,"2925":0.4331053333,"2926":0.3775784314,"2927":0.3256476623,"2928":0.2737168931,"2929":0.2255872036,"2930":0.1774575141,"2931":0.1333188502,"2932":0.0891801862,"2933":0.0492067431,"2934":0.0092332999,"2935":-0.0264171656,"2936":-0.0620676312,"2937":-0.0932544229,"2938":-0.1244412147,"2939":-0.1510412527,"2940":-0.1776412907,"2941":-0.1995495968,"2942":-0.2214579028,"2943":-0.2385880148,"2944":-0.2557181268,"2945":-0.2680024401,"2946":-0.2802867533,"2947":-0.2876767872,"2948":-0.2950668211,"2949":-0.2975334105,"2950":-0.3,"2951":-0.2975334105,"2952":-0.2950668211,"2953":-0.2876767872,"2954":-0.2802867533,"2955":-0.2680024401,"2956":-0.2557181268,"2957":-0.2385880148,"2958":-0.2214579028,"2959":-0.1995495968,"2960":-0.1776412907,"2961":-0.1510412527,"2962":-0.1244412147,"2963":-0.0932544229,"2964":-0.0620676312,"2965":-0.0264171656,"2966":0.0092332999,"2967":0.0492067431,"2968":0.0891801862,"2969":0.1333188502,"2970":0.1774575141,"2971":0.2255872036,"2972":0.2737168931,"2973":0.3256476623,"2974":0.3775784314,"2975":0.4331053333,"2976":0.4886322352,"2977":0.5475361304,"2978":0.6064400256,"2979":0.6684884474,"2980":0.7305368693,"2981":0.7954849409,"2982":0.8604330126,"2983":0.9280244136,"2984":0.9956158147,"2985":1.0655837929,"2986":1.1355517711,"2987":1.2076201947,"2988":1.2796886183,"2989":1.3535730662,"2990":1.4274575141,"2991":1.5028663981,"2992":1.5782752821,"2993":1.6549109978,"2994":1.7315467135,"2995":1.8091068148,"2996":1.8866669161,"2997":1.9648453086,"2998":2.0430237012,"2999":2.1215118506,"3000":2.2,"3001":2.2784881494,"3002":2.3569762988,"3003":2.4351546914,"3004":2.5133330839,"3005":2.5908931852,"3006":2.6684532865,"3007":2.7450890022,"3008":2.8217247179,"3009":2.8971336019,"3010":2.9725424859,"3011":3.0464269338,"3012":3.1203113817,"3013":3.1923798053,"3014":3.2644482289,"3015":3.3344162071,"3016":3.4043841853,"3017":3.4719755864,"3018":3.5395669874,"3019":3.6045150591,"3020":3.6694631307,"3021":3.7315115526,"3022":3.7935599744,"3023":3.8524638696,"3024":3.9113677648,"3025":3.9668946667,"3026":4.0224215686,"3027":4.0743523377,"3028":4.1262831069,"3029":4.1744127964,"3030":4.2225424859,"3031":4.2666811498,"3032":4.3108198138,"3033":4.3507932569,"3034":4.3907667001,"3035":4.4264171656,"3036":4.4620676312,"3037":4.4932544229,"3038":4.5244412147,"3039":4.5510412527,"3040":4.5776412907,"3041":4.5995495968,"3042":4.6214579028,"3043":4.6385880148,"3044":4.6557181268,"3045":4.6680024401,"3046":4.6802867533,"3047":4.6876767872,"3048":4.6950668211,"3049":4.6975334105,"3050":4.7,"3051":4.6975334105,"3052":4.6950668211,"3053":4.6876767872,"3054":4.6802867533,"3055":4.6680024401,"3056":4.6557181268,"3057":4.6385880148,"3058":4.6214579028,"3059":4.5995495968,"3060":4.5776412907,"3061":4.5510412527,"3062":4.5244412147,"3063":4.4932544229,"3064":4.4620676312,"3065":4.4264171656,"3066":4.3907667001,"3067":4.3507932569,"3068":4.3108198138,"3069":4.2666811498,"3070":4.2225424859,"3071":4.1744127964,"3072":4.1262831069,"3073":4.0743523377,"3074":4.0224215686,"3075":3.9668946667,"3076":3.9113677648,"3077":3.8524638696,"3078":3.7935599744,"3079":3.7315115526,"3080":3.6694631307,"3081":3.6045150591,"3082":3.5395669874,"3083":3.4719755864,"3084":3.4043841853,"3085":3.3344162071,"3086":3.2644482289,"3087":3.1923798053,"3088":3.1203113817,"3089":3.0464269338,"3090":2.9725424859,"3091":2.8971336019,"3092":2.8217247179,"3093":2.7450890022,"3094":2.6684532865,"3095":2.5908931852,"3096":2.5133330839,"3097":2.4351546914,"3098":2.3569762988,"3099":2.2784881494,"3100":2.2,"3101":2.1215118506,"3102":2.0430237012,"3103":1.9648453086,"3104":1.8866669161,"3105":1.8091068148,"3106":1.7315467135,"3107":1.6549109978,"3108":1.5782752821,"3109":1.5028663981,"3110":1.4274575141,"3111":1.3535730662,"3112":1.2796886183,"3113":1.2076201947,"3114":1.1355517711,"3115":1.0655837929,"3116":0.9956158147,"3117":0.9280244136,"3118":0.8604330126,"3119":0.7954849409,"3120":0.7305368693,"3121":0.6684884474,"3122":0.6064400256,"3123":0.5475361304,"3124":0.4886322352,"3125":0.4331053333,"3126":0.3775784314,"3127":0.3256476623,"3128":0.2737168931,"3129":0.2255872036,"3130":0.1774575141,"3131":0.1333188502,"3132":0.0891801862,"3133":0.0492067431,"3134":0.0092332999,"3135":-0.0264171656,"3136":-0.0620676312,"3137":-0.0932544229,"3138":-0.1244412147,"3139":-0.1510412527,"3140":-0.1776412907,"3141":-0.1995495968,"3142":-0.2214579028,"3143":-0.2385880148,"3144":-0.2557181268,"3145":-0.2680024401,"3146":-0.2802867533,"3147":-0.2876767872,"3148":-0.2950668211,"3149":-0.2975334105,"3150":-0.3,"3151":-0.2975334105,"3152":-0.2950668211,"3153":-0.2876767872,"3154":-0.2802867533,"3155":-0.2680024401,"3156":-0.2557181268,"3157":-0.2385880148,"3158":-0.2214579028,"3159":-0.1995495968,"3160":-0.1776412907,"3161":-0.1510412527,"3162":-0.1244412147,"3163":-0.0932544229,"3164":-0.0620676312,"3165":-0.0264171656,"3166":0.0092332999,"3167":0.0492067431,"3168":0.0891801862,"3169":0.1333188502,"3170":0.1774575141,"3171":0.2255872036,"3172":0.2737168931,"3173":0.3256476623,"3174":0.3775784314,"3175":0.4331053333,"3176":0.4886322352,"3177":0.5475361304,"3178":0.6064400256,"3179":0.6684884474,"3180":0.7305368693,"3181":0.7954849409,"3182":0.8604330126,"3183":0.9280244136,"3184":0.9956158147,"3185":1.0655837929,"3186":1.1355517711,"3187":1.2076201947,"3188":1.2796886183,"3189":1.3535730662,"3190":1.4274575141,"3191":1.5028663981,"3192":1.5782752821,"3193":1.6549109978,"3194":1.7315467135,"3195":1.8091068148,"3196":1.8866669161,"3197":1.9648453086,"3198":2.0430237012,"3199":2.1215118506,"3200":2.2,"3201":2.2784881494,"3202":2.3569762988,"3203":2.4351546914,"3204":2.5133330839,"3205":2.5908931852,"3206":2.6684532865,"3207":2.7450890022,"3208":2.8217247179,"3209":2.8971336019,"3210":2.9725424859,"3211":3.0464269338,"3212":3.1203113817,"3213":3.1923798053,"3214":3.2644482289,"3215":3.3344162071,"3216":3.4043841853,"3217":3.4719755864,"3218":3.5395669874,"3219":3.6045150591,"3220":3.6694631307,"3221":3.7315115526,"3222":3.7935599744,"3223":3.8524638696,"3224":3.9113677648,"3225":3.9668946667,"3226":4.0224215686,"3227":4.0743523377,"3228":4.1262831069,"3229":4.1744127964,"3230":4.2225424859,"3231":4.2666811498,"3232":4.3108198138,"3233":4.3507932569,"3234":4.3907667001,"3235":4.4264171656,"3236":4.4620676312,"3237":4.4932544229,"3238":4.5244412147,"3239":4.5510412527,"3240":4.5776412907,"3241":4.5995495968,"3242":4.6214579028,"3243":4.6385880148,"3244":4.6557181268,"3245":4.6680024401,"3246":4.6802867533,"3247":4.6876767872,"3248":4.6950668211,"3249":4.6975334105,"3250":4.7,"3251":4.6975334105,"3252":4.6950668211,"3253":4.6876767872,"3254":4.6802867533,"3255":4.6680024401,"3256":4.6557181268,"3257":4.6385880148,"3258":4.6214579028,"3259":4.5995495968,"3260":4.5776412907,"3261":4.5510412527,"3262":4.5244412147,"3263":4.4932544229,"3264":4.4620676312,"3265":4.4264171656,"3266":4.3907667001,"3267":4.3507932569,"3268":4.3108198138,"3269":4.2666811498,"3270":4.2225424859,"3271":4.1744127964,"3272":4.1262831069,"3273":4.0743523377,"3274":4.0224215686,"3275":3.9668946667,"3276":3.9113677648,"3277":3.8524638696,"3278":3.7935599744,"3279":3.7315115526,"3280":3.6694631307,"3281":3.6045150591,"3282":3.5395669874,"3283":3.4719755864,"3284":3.4043841853,"3285":3.3344162071,"3286":3.2644482289,"3287":3.1923798053,"3288":3.1203113817,"3289":3.0464269338,"3290":2.9725424859,"3291":2.8971336019,"3292":2.8217247179,"3293":2.7450890022,"3294":2.6684532865,"3295":2.5908931852,"3296":2.5133330839,"3297":2.4351546914,"3298":2.3569762988,"3299":2.2784881494,"3300":2.2,"3301":2.1215118506,"3302":2.0430237012,"3303":1.9648453086,"3304":1.8866669161,"3305":1.8091068148,"3306":1.7315467135,"3307":1.6549109978,"3308":1.5782752821,"3309":1.5028663981,"3310":1.4274575141,"3311":1.3535730662,"3312":1.2796886183,"3313":1.2076201947,"3314":1.1355517711,"3315":1.0655837929,"3316":0.9956158147,"3317":0.9280244136,"3318":0.8604330126,"3319":0.7954849409,"3320":0.7305368693,"3321":0.6684884474,"3322":0.6064400256,"3323":0.5475361304,"3324":0.4886322352,"3325":0.4331053333,"3326":0.3775784314,"3327":0.3256476623,"3328":0.2737168931,"3329":0.2255872036,"3330":0.1774575141,"3331":0.1333188502,"3332":0.0891801862,"3333":0.0492067431,"3334":0.0092332999,"3335":-0.0264171656,"3336":-0.0620676312,"3337":-0.0932544229,"3338":-0.1244412147,"3339":-0.1510412527,"3340":-0.1776412907,"3341":-0.1995495968,"3342":-0.2214579028,"3343":-0.2385880148,"3344":-0.2557181268,"3345":-0.2680024401,"3346":-0.2802867533,"3347":-0.2876767872,"3348":-0.2950668211,"3349":-0.2975334105,"3350":-0.3,"3351":-0.2975334105,"3352":-0.2950668211,"3353":-0.2876767872,"3354":-0.2802867533,"3355":-0.2680024401,"3356":-0.2557181268,"3357":-0.2385880148,"3358":-0.2214579028,"3359":-0.1995495968,"3360":-0.1776412907,"3361":-0.1510412527,"3362":-0.1244412147,"3363":-0.0932544229,"3364":-0.0620676312,"3365":-0.0264171656,"3366":0.0092332999,"3367":0.0492067431,"3368":0.0891801862,"3369":0.1333188502,"3370":0.1774575141,"3371":0.2255872036,"3372":0.2737168931,"3373":0.3256476623,"3374":0.3775784314,"3375":0.4331053333,"3376":0.4886322352,"3377":0.5475361304,"3378":0.6064400256,"3379":0.6684884474,"3380":0.7305368693,"3381":0.7954849409,"3382":0.8604330126,"3383":0.9280244136,"3384":0.9956158147,"3385":1.0655837929,"3386":1.1355517711,"3387":1.2076201947,"3388":1.2796886183,"3389":1.3535730662,"3390":1.4274575141,"3391":1.5028663981,"3392":1.5782752821,"3393":1.6549109978,"3394":1.7315467135,"3395":1.8091068148,"3396":1.8866669161,"3397":1.9648453086,"3398":2.0430237012,"3399":2.1215118506,"3400":2.2,"3401":2.2784881494,"3402":2.3569762988,"3403":2.4351546914,"3404":2.5133330839,"3405":2.5908931852,"3406":2.6684532865,"3407":2.7450890022,"3408":2.8217247179,"3409":2.8971336019,"3410":2.9725424859,"3411":3.0464269338,"3412":3.1203113817,"3413":3.1923798053,"3414":3.2644482289,"3415":3.3344162071,"3416":3.4043841853,"3417":3.4719755864,"3418":3.5395669874,"3419":3.6045150591,"3420":3.6694631307,"3421":3.7315115526,"3422":3.7935599744,"3423":3.8524638696,"3424":3.9113677648,"3425":3.9668946667,"3426":4.0224215686,"3427":4.0743523377,"3428":4.1262831069,"3429":4.1744127964,"3430":4.2225424859,"3431":4.2666811498,"3432":4.3108198138,"3433":4.3507932569,"3434":4.3907667001,"3435":4.4264171656,"3436":4.4620676312,"3437":4.4932544229,"3438":4.5244412147,"3439":4.5510412527,"3440":4.5776412907,"3441":4.5995495968,"3442":4.6214579028,"3443":4.6385880148,"3444":4.6557181268,"3445":4.6680024401,"3446":4.6802867533,"3447":4.6876767872,"3448":4.6950668211,"3449":4.6975334105,"3450":4.7,"3451":4.6975334105,"3452":4.6950668211,"3453":4.6876767872,"3454":4.6802867533,"3455":4.6680024401,"3456":4.6557181268,"3457":4.6385880148,"3458":4.6214579028,"3459":4.5995495968,"3460":4.5776412907,"3461":4.5510412527,"3462":4.5244412147,"3463":4.4932544229,"3464":4.4620676312,"3465":4.4264171656,"3466":4.3907667001,"3467":4.3507932569,"3468":4.3108198138,"3469":4.2666811498,"3470":4.2225424859,"3471":4.1744127964,"3472":4.1262831069,"3473":4.0743523377,"3474":4.0224215686,"3475":3.9668946667,"3476":3.9113677648,"3477":3.8524638696,"3478":3.7935599744,"3479":3.7315115526,"3480":3.6694631307,"3481":3.6045150591,"3482":3.5395669874,"3483":3.4719755864,"3484":3.4043841853,"3485":3.3344162071,"3486":3.2644482289,"3487":3.1923798053,"3488":3.1203113817,"3489":3.0464269338,"3490":2.9725424859,"3491":2.8971336019,"3492":2.8217247179,"3493":2.7450890022,"3494":2.6684532865,"3495":2.5908931852,"3496":2.5133330839,"3497":2.4351546914,"3498":2.3569762988,"3499":2.2784881494,"3500":2.2,"3501":2.1215118506,"3502":2.0430237012,"3503":1.9648453086,"3504":1.8866669161,"3505":1.8091068148,"3506":1.7315467135,"3507":1.6549109978,"3508":1.5782752821,"3509":1.5028663981,"3510":1.4274575141,"3511":1.3535730662,"3512":1.2796886183,"3513":1.2076201947,"3514":1.1355517711,"3515":1.0655837929,"3516":0.9956158147,"3517":0.9280244136,"3518":0.8604330126,"3519":0.7954849409,"3520":0.7305368693,"3521":0.6684884474,"3522":0.6064400256,"3523":0.5475361304,"3524":0.4886322352,"3525":0.4331053333,"3526":0.3775784314,"3527":0.3256476623,"3528":0.2737168931,"3529":0.2255872036,"3530":0.1774575141,"3531":0.1333188502,"3532":0.0891801862,"3533":0.0492067431,"3534":0.0092332999,"3535":-0.0264171656,"3536":-0.0620676312,"3537":-0.0932544229,"3538":-0.1244412147,"3539":-0.1510412527,"3540":-0.1776412907,"3541":-0.1995495968,"3542":-0.2214579028,"3543":-0.2385880148,"3544":-0.2557181268,"3545":-0.2680024401,"3546":-0.2802867533,"3547":-0.2876767872,"3548":-0.2950668211,"3549":-0.2975334105,"3550":-0.3,"3551":-0.2975334105,"3552":-0.2950668211,"3553":-0.2876767872,"3554":-0.2802867533,"3555":-0.2680024401,"3556":-0.2557181268,"3557":-0.2385880148,"3558":-0.2214579028,"3559":-0.1995495968,"3560":-0.1776412907,"3561":-0.1510412527,"3562":-0.1244412147,"3563":-0.0932544229,"3564":-0.0620676312,"3565":-0.0264171656,"3566":0.0092332999,"3567":0.0492067431,"3568":0.0891801862,"3569":0.1333188502,"3570":0.1774575141,"3571":0.2255872036,"3572":0.2737168931,"3573":0.3256476623,"3574":0.3775784314,"3575":0.4331053333,"3576":0.4886322352,"3577":0.5475361304,"3578":0.6064400256,"3579":0.6684884474,"3580":0.7305368693,"3581":0.7954849409,"3582":0.8604330126,"3583":0.9280244136,"3584":0.9956158147,"3585":1.0655837929,"3586":1.1355517711,"3587":1.2076201947,"3588":1.2796886183,"3589":1.3535730662,"3590":1.4274575141,"3591":1.5028663981,"3592":1.5782752821,"3593":1.6549109978,"3594":1.7315467135,"3595":1.8091068148,"3596":1.8866669161,"3597":1.9648453086,"3598":2.0430237012,"3599":2.1215118506,"3600":2.2,"3601":2.2784881494,"3602":2.3569762988,"3603":2.4351546914,"3604":2.5133330839,"3605":2.5908931852,"3606":2.6684532865,"3607":2.7450890022,"3608":2.8217247179,"3609":2.8971336019,"3610":2.9725424859,"3611":3.0464269338,"3612":3.1203113817,"3613":3.1923798053,"3614":3.2644482289,"3615":3.3344162071,"3616":3.4043841853,"3617":3.4719755864,"3618":3.5395669874,"3619":3.6045150591,"3620":3.6694631307,"3621":3.7315115526,"3622":3.7935599744,"3623":3.8524638696,"3624":3.9113677648,"3625":3.9668946667,"3626":4.0224215686,"3627":4.0743523377,"3628":4.1262831069,"3629":4.1744127964,"3630":4.2225424859,"3631":4.2666811498,"3632":4.3108198138,"3633":4.3507932569,"3634":4.3907667001,"3635":4.4264171656,"3636":4.4620676312,"3637":4.4932544229,"3638":4.5244412147,"3639":4.5510412527,"3640":4.5776412907,"3641":4.5995495968,"3642":4.6214579028,"3643":4.6385880148,"3644":4.6557181268,"3645":4.6680024401,"3646":4.6802867533,"3647":4.6876767872,"3648":4.6950668211,"3649":4.6975334105,"3650":4.7,"3651":4.6975334105,"3652":4.6950668211,"3653":4.6876767872,"3654":4.6802867533,"3655":4.6680024401,"3656":4.6557181268,"3657":4.6385880148,"3658":4.6214579028,"3659":4.5995495968,"3660":4.5776412907,"3661":4.5510412527,"3662":4.5244412147,"3663":4.4932544229,"3664":4.4620676312,"3665":4.4264171656,"3666":4.3907667001,"3667":4.3507932569,"3668":4.3108198138,"3669":4.2666811498,"3670":4.2225424859,"3671":4.1744127964,"3672":4.1262831069,"3673":4.0743523377,"3674":4.0224215686,"3675":3.9668946667,"3676":3.9113677648,"3677":3.8524638696,"3678":3.7935599744,"3679":3.7315115526,"3680":3.6694631307,"3681":3.6045150591,"3682":3.5395669874,"3683":3.4719755864,"3684":3.4043841853,"3685":3.3344162071,"3686":3.2644482289,"3687":3.1923798053,"3688":3.1203113817,"3689":3.0464269338,"3690":2.9725424859,"3691":2.8971336019,"3692":2.8217247179,"3693":2.7450890022,"3694":2.6684532865,"3695":2.5908931852,"3696":2.5133330839,"3697":2.4351546914,"3698":2.3569762988,"3699":2.2784881494,"3700":2.2,"3701":2.1215118506,"3702":2.0430237012,"3703":1.9648453086,"3704":1.8866669161,"3705":1.8091068148,"3706":1.7315467135,"3707":1.6549109978,"3708":1.5782752821,"3709":1.5028663981,"3710":1.4274575141,"3711":1.3535730662,"3712":1.2796886183,"3713":1.2076201947,"3714":1.1355517711,"3715":1.0655837929,"3716":0.9956158147,"3717":0.9280244136,"3718":0.8604330126,"3719":0.7954849409,"3720":0.7305368693,"3721":0.6684884474,"3722":0.6064400256,"3723":0.5475361304,"3724":0.4886322352,"3725":0.4331053333,"3726":0.3775784314,"3727":0.3256476623,"3728":0.2737168931,"3729":0.2255872036,"3730":0.1774575141,"3731":0.1333188502,"3732":0.0891801862,"3733":0.0492067431,"3734":0.0092332999,"3735":-0.0264171656,"3736":-0.0620676312,"3737":-0.0932544229,"3738":-0.1244412147,"3739":-0.1510412527,"3740":-0.1776412907,"3741":-0.1995495968,"3742":-0.2214579028,"3743":-0.2385880148,"3744":-0.2557181268,"3745":-0.2680024401,"3746":-0.2802867533,"3747":-0.2876767872,"3748":-0.2950668211,"3749":-0.2975334105,"3750":-0.3,"3751":-0.2975334105,"3752":-0.2950668211,"3753":-0.2876767872,"3754":-0.2802867533,"3755":-0.2680024401,"3756":-0.2557181268,"3757":-0.2385880148,"3758":-0.2214579028,"3759":-0.1995495968,"3760":-0.1776412907,"3761":-0.1510412527,"3762":-0.1244412147,"3763":-0.0932544229,"3764":-0.0620676312,"3765":-0.0264171656,"3766":0.0092332999,"3767":0.0492067431,"3768":0.0891801862,"3769":0.1333188502,"3770":0.1774575141,"3771":0.2255872036,"3772":0.2737168931,"3773":0.3256476623,"3774":0.3775784314,"3775":0.4331053333,"3776":0.4886322352,"3777":0.5475361304,"3778":0.6064400256,"3779":0.6684884474,"3780":0.7305368693,"3781":0.7954849409,"3782":0.8604330126,"3783":0.9280244136,"3784":0.9956158147,"3785":1.0655837929,"3786":1.1355517711,"3787":1.2076201947,"3788":1.2796886183,"3789":1.3535730662,"3790":1.4274575141,"3791":1.5028663981,"3792":1.5782752821,"3793":1.6549109978,"3794":1.7315467135,"3795":1.8091068148,"3796":1.8866669161,"3797":1.9648453086,"3798":2.0430237012,"3799":2.1215118506,"3800":2.2,"3801":2.2784881494,"3802":2.3569762988,"3803":2.4351546914,"3804":2.5133330839,"3805":2.5908931852,"3806":2.6684532865,"3807":2.7450890022,"3808":2.8217247179,"3809":2.8971336019,"3810":2.9725424859,"3811":3.0464269338,"3812":3.1203113817,"3813":3.1923798053,"3814":3.2644482289,"3815":3.3344162071,"3816":3.4043841853,"3817":3.4719755864,"3818":3.5395669874,"3819":3.6045150591,"3820":3.6694631307,"3821":3.7315115526,"3822":3.7935599744,"3823":3.8524638696,"3824":3.9113677648,"3825":3.9668946667,"3826":4.0224215686,"3827":4.0743523377,"3828":4.1262831069,"3829":4.1744127964,"3830":4.2225424859,"3831":4.2666811498,"3832":4.3108198138,"3833":4.3507932569,"3834":4.3907667001,"3835":4.4264171656,"3836":4.4620676312,"3837":4.4932544229,"3838":4.5244412147,"3839":4.5510412527,"3840":4.5776412907,"3841":4.5995495968,"3842":4.6214579028,"3843":4.6385880148,"3844":4.6557181268,"3845":4.6680024401,"3846":4.6802867533,"3847":4.6876767872,"3848":4.6950668211,"3849":4.6975334105,"3850":4.7,"3851":4.6975334105,"3852":4.6950668211,"3853":4.6876767872,"3854":4.6802867533,"3855":4.6680024401,"3856":4.6557181268,"3857":4.6385880148,"3858":4.6214579028,"3859":4.5995495968,"3860":4.5776412907,"3861":4.5510412527,"3862":4.5244412147,"3863":4.4932544229,"3864":4.4620676312,"3865":4.4264171656,"3866":4.3907667001,"3867":4.3507932569,"3868":4.3108198138,"3869":4.2666811498,"3870":4.2225424859,"3871":4.1744127964,"3872":4.1262831069,"3873":4.0743523377,"3874":4.0224215686,"3875":3.9668946667,"3876":3.9113677648,"3877":3.8524638696,"3878":3.7935599744,"3879":3.7315115526,"3880":3.6694631307,"3881":3.6045150591,"3882":3.5395669874,"3883":3.4719755864,"3884":3.4043841853,"3885":3.3344162071,"3886":3.2644482289,"3887":3.1923798053,"3888":3.1203113817,"3889":3.0464269338,"3890":2.9725424859,"3891":2.8971336019,"3892":2.8217247179,"3893":2.7450890022,"3894":2.6684532865,"3895":2.5908931852,"3896":2.5133330839,"3897":2.4351546914,"3898":2.3569762988,"3899":2.2784881494,"3900":2.2,"3901":2.1215118506,"3902":2.0430237012,"3903":1.9648453086,"3904":1.8866669161,"3905":1.8091068148,"3906":1.7315467135,"3907":1.6549109978,"3908":1.5782752821,"3909":1.5028663981,"3910":1.4274575141,"3911":1.3535730662,"3912":1.2796886183,"3913":1.2076201947,"3914":1.1355517711,"3915":1.0655837929,"3916":0.9956158147,"3917":0.9280244136,"3918":0.8604330126,"3919":0.7954849409,"3920":0.7305368693,"3921":0.6684884474,"3922":0.6064400256,"3923":0.5475361304,"3924":0.4886322352,"3925":0.4331053333,"3926":0.3775784314,"3927":0.3256476623,"3928":0.2737168931,"3929":0.2255872036,"3930":0.1774575141,"3931":0.1333188502,"3932":0.0891801862,"3933":0.0492067431,"3934":0.0092332999,"3935":-0.0264171656,"3936":-0.0620676312,"3937":-0.0932544229,"3938":-0.1244412147,"3939":-0.1510412527,"3940":-0.1776412907,"3941":-0.1995495968,"3942":-0.2214579028,"3943":-0.2385880148,"3944":-0.2557181268,"3945":-0.2680024401,"3946":-0.2802867533,"3947":-0.2876767872,"3948":-0.2950668211,"3949":-0.2975334105,"3950":-0.3,"3951":-0.2975334105,"3952":-0.2950668211,"3953":-0.2876767872,"3954":-0.2802867533,"3955":-0.2680024401,"3956":-0.2557181268,"3957":-0.2385880148,"3958":-0.2214579028,"3959":-0.1995495968,"3960":-0.1776412907,"3961":-0.1510412527,"3962":-0.1244412147,"3963":-0.0932544229,"3964":-0.0620676312,"3965":-0.0264171656,"3966":0.0092332999,"3967":0.0492067431,"3968":0.0891801862,"3969":0.1333188502,"3970":0.1774575141,"3971":0.2255872036,"3972":0.2737168931,"3973":0.3256476623,"3974":0.3775784314,"3975":0.4331053333,"3976":0.4886322352,"3977":0.5475361304,"3978":0.6064400256,"3979":0.6684884474,"3980":0.7305368693,"3981":0.7954849409,"3982":0.8604330126,"3983":0.9280244136,"3984":0.9956158147,"3985":1.0655837929,"3986":1.1355517711,"3987":1.2076201947,"3988":1.2796886183,"3989":1.3535730662,"3990":1.4274575141,"3991":1.5028663981,"3992":1.5782752821,"3993":1.6549109978,"3994":1.7315467135,"3995":1.8091068148,"3996":1.8866669161,"3997":1.9648453086,"3998":2.0430237012,"3999":2.1215118506,"4000":2.2,"4001":2.2784881494,"4002":2.3569762988,"4003":2.4351546914,"4004":2.5133330839,"4005":2.5908931852,"4006":2.6684532865,"4007":2.7450890022,"4008":2.8217247179,"4009":2.8971336019,"4010":2.9725424859,"4011":3.0464269338,"4012":3.1203113817,"4013":3.1923798053,"4014":3.2644482289,"4015":3.3344162071,"4016":3.4043841853,"4017":3.4719755864,"4018":3.5395669874,"4019":3.6045150591,"4020":3.6694631307,"4021":3.7315115526,"4022":3.7935599744,"4023":3.8524638696,"4024":3.9113677648,"4025":3.9668946667,"4026":4.0224215686,"4027":4.0743523377,"4028":4.1262831069,"4029":4.1744127964,"4030":4.2225424859,"4031":4.2666811498,"4032":4.3108198138,"4033":4.3507932569,"4034":4.3907667001,"4035":4.4264171656,"4036":4.4620676312,"4037":4.4932544229,"4038":4.5244412147,"4039":4.5510412527,"4040":4.5776412907,"4041":4.5995495968,"4042":4.6214579028,"4043":4.6385880148,"4044":4.6557181268,"4045":4.6680024401,"4046":4.6802867533,"4047":4.6876767872,"4048":4.6950668211,"4049":4.6975334105,"4050":4.7,"4051":4.6975334105,"4052":4.6950668211,"4053":4.6876767872,"4054":4.6802867533,"4055":4.6680024401,"4056":4.6557181268,"4057":4.6385880148,"4058":4.6214579028,"4059":4.5995495968,"4060":4.5776412907,"4061":4.5510412527,"4062":4.5244412147,"4063":4.4932544229,"4064":4.4620676312,"4065":4.4264171656,"4066":4.3907667001,"4067":4.3507932569,"4068":4.3108198138,"4069":4.2666811498,"4070":4.2225424859,"4071":4.1744127964,"4072":4.1262831069,"4073":4.0743523377,"4074":4.0224215686,"4075":3.9668946667,"4076":3.9113677648,"4077":3.8524638696,"4078":3.7935599744,"4079":3.7315115526,"4080":3.6694631307,"4081":3.6045150591,"4082":3.5395669874,"4083":3.4719755864,"4084":3.4043841853,"4085":3.3344162071,"4086":3.2644482289,"4087":3.1923798053,"4088":3.1203113817,"4089":3.0464269338,"4090":2.9725424859,"4091":2.8971336019,"4092":2.8217247179,"4093":2.7450890022,"4094":2.6684532865,"4095":2.5908931852,"4096":2.5133330839,"4097":2.4351546914,"4098":2.3569762988,"4099":2.2784881494,"4100":2.2,"4101":2.1215118506,"4102":2.0430237012,"4103":1.9648453086,"4104":1.8866669161,"4105":1.8091068148,"4106":1.7315467135,"4107":1.6549109978,"4108":1.5782752821,"4109":1.5028663981,"4110":1.4274575141,"4111":1.3535730662,"4112":1.2796886183,"4113":1.2076201947,"4114":1.1355517711,"4115":1.0655837929,"4116":0.9956158147,"4117":0.9280244136,"4118":0.8604330126,"4119":0.7954849409,"4120":0.7305368693,"4121":0.6684884474,"4122":0.6064400256,"4123":0.5475361304,"4124":0.4886322352,"4125":0.4331053333,"4126":0.3775784314,"4127":0.3256476623,"4128":0.2737168931,"4129":0.2255872036,"4130":0.1774575141,"4131":0.1333188502,"4132":0.0891801862,"4133":0.0492067431,"4134":0.0092332999,"4135":-0.0264171656,"4136":-0.0620676312,"4137":-0.0932544229,"4138":-0.1244412147,"4139":-0.1510412527,"4140":-0.1776412907,"4141":-0.1995495968,"4142":-0.2214579028,"4143":-0.2385880148,"4144":-0.2557181268,"4145":-0.2680024401,"4146":-0.2802867533,"4147":-0.2876767872,"4148":-0.2950668211,"4149":-0.2975334105,"4150":-0.3,"4151":-0.2975334105,"4152":-0.2950668211,"4153":-0.2876767872,"4154":-0.2802867533,"4155":-0.2680024401,"4156":-0.2557181268,"4157":-0.2385880148,"4158":-0.2214579028,"4159":-0.1995495968,"4160":-0.1776412907,"4161":-0.1510412527,"4162":-0.1244412147,"4163":-0.0932544229,"4164":-0.0620676312,"4165":-0.0264171656,"4166":0.0092332999,"4167":0.0492067431,"4168":0.0891801862,"4169":0.1333188502,"4170":0.1774575141,"4171":0.2255872036,"4172":0.2737168931,"4173":0.3256476623,"4174":0.3775784314,"4175":0.4331053333,"4176":0.4886322352,"4177":0.5475361304,"4178":0.6064400256,"4179":0.6684884474,"4180":0.7305368693,"4181":0.7954849409,"4182":0.8604330126,"4183":0.9280244136,"4184":0.9956158147,"4185":1.0655837929,"4186":1.1355517711,"4187":1.2076201947,"4188":1.2796886183,"4189":1.3535730662,"4190":1.4274575141,"4191":1.5028663981,"4192":1.5782752821,"4193":1.6549109978,"4194":1.7315467135,"4195":1.8091068148,"4196":1.8866669161,"4197":1.9648453086,"4198":2.0430237012,"4199":2.1215118506,"4200":2.2,"4201":2.2784881494,"4202":2.3569762988,"4203":2.4351546914,"4204":2.5133330839,"4205":2.5908931852,"4206":2.6684532865,"4207":2.7450890022,"4208":2.8217247179,"4209":2.8971336019,"4210":2.9725424859,"4211":3.0464269338,"4212":3.1203113817,"4213":3.1923798053,"4214":3.2644482289,"4215":3.3344162071,"4216":3.4043841853,"4217":3.4719755864,"4218":3.5395669874,"4219":3.6045150591,"4220":3.6694631307,"4221":3.7315115526,"4222":3.7935599744,"4223":3.8524638696,"4224":3.9113677648,"4225":3.9668946667,"4226":4.0224215686,"4227":4.0743523377,"4228":4.1262831069,"4229":4.1744127964,"4230":4.2225424859,"4231":4.2666811498,"4232":4.3108198138,"4233":4.3507932569,"4234":4.3907667001,"4235":4.4264171656,"4236":4.4620676312,"4237":4.4932544229,"4238":4.5244412147,"4239":4.5510412527,"4240":4.5776412907,"4241":4.5995495968,"4242":4.6214579028,"4243":4.6385880148,"4244":4.6557181268,"4245":4.6680024401,"4246":4.6802867533,"4247":4.6876767872,"4248":4.6950668211,"4249":4.6975334105,"4250":4.7,"4251":4.6975334105,"4252":4.6950668211,"4253":4.6876767872,"4254":4.6802867533,"4255":4.6680024401,"4256":4.6557181268,"4257":4.6385880148,"4258":4.6214579028,"4259":4.5995495968,"4260":4.5776412907,"4261":4.5510412527,"4262":4.5244412147,"4263":4.4932544229,"4264":4.4620676312,"4265":4.4264171656,"4266":4.3907667001,"4267":4.3507932569,"4268":4.3108198138,"4269":4.2666811498,"4270":4.2225424859,"4271":4.1744127964,"4272":4.1262831069,"4273":4.0743523377,"4274":4.0224215686,"4275":3.9668946667,"4276":3.9113677648,"4277":3.8524638696,"4278":3.7935599744,"4279":3.7315115526,"4280":3.6694631307,"4281":3.6045150591,"4282":3.5395669874,"4283":3.4719755864,"4284":3.4043841853,"4285":3.3344162071,"4286":3.2644482289,"4287":3.1923798053,"4288":3.1203113817,"4289":3.0464269338,"4290":2.9725424859,"4291":2.8971336019,"4292":2.8217247179,"4293":2.7450890022,"4294":2.6684532865,"4295":2.5908931852,"4296":2.5133330839,"4297":2.4351546914,"4298":2.3569762988,"4299":2.2784881494,"4300":2.2,"4301":2.1215118506,"4302":2.0430237012,"4303":1.9648453086,"4304":1.8866669161,"4305":1.8091068148,"4306":1.7315467135,"4307":1.6549109978,"4308":1.5782752821,"4309":1.5028663981,"4310":1.4274575141,"4311":1.3535730662,"4312":1.2796886183,"4313":1.2076201947,"4314":1.1355517711,"4315":1.0655837929,"4316":0.9956158147,"4317":0.9280244136,"4318":0.8604330126,"4319":0.7954849409,"4320":0.7305368693,"4321":0.6684884474,"4322":0.6064400256,"4323":0.5475361304,"4324":0.4886322352,"4325":0.4331053333,"4326":0.3775784314,"4327":0.3256476623,"4328":0.2737168931,"4329":0.2255872036,"4330":0.1774575141,"4331":0.1333188502,"4332":0.0891801862,"4333":0.0492067431,"4334":0.0092332999,"4335":-0.0264171656,"4336":-0.0620676312,"4337":-0.0932544229,"4338":-0.1244412147,"4339":-0.1510412527,"4340":-0.1776412907,"4341":-0.1995495968,"4342":-0.2214579028,"4343":-0.2385880148,"4344":-0.2557181268,"4345":-0.2680024401,"4346":-0.2802867533,"4347":-0.2876767872,"4348":-0.2950668211,"4349":-0.2975334105,"4350":-0.3,"4351":-0.2975334105,"4352":-0.2950668211,"4353":-0.2876767872,"4354":-0.2802867533,"4355":-0.2680024401,"4356":-0.2557181268,"4357":-0.2385880148,"4358":-0.2214579028,"4359":-0.1995495968,"4360":-0.1776412907,"4361":-0.1510412527,"4362":-0.1244412147,"4363":-0.0932544229,"4364":-0.0620676312,"4365":-0.0264171656,"4366":0.0092332999,"4367":0.0492067431,"4368":0.0891801862,"4369":0.1333188502,"4370":0.1774575141,"4371":0.2255872036,"4372":0.2737168931,"4373":0.3256476623,"4374":0.3775784314,"4375":0.4331053333,"4376":0.4886322352,"4377":0.5475361304,"4378":0.6064400256,"4379":0.6684884474,"4380":0.7305368693,"4381":0.7954849409,"4382":0.8604330126,"4383":0.9280244136,"4384":0.9956158147,"4385":1.0655837929,"4386":1.1355517711,"4387":1.2076201947,"4388":1.2796886183,"4389":1.3535730662,"4390":1.4274575141,"4391":1.5028663981,"4392":1.5782752821,"4393":1.6549109978,"4394":1.7315467135,"4395":1.8091068148,"4396":1.8866669161,"4397":1.9648453086,"4398":2.0430237012,"4399":2.1215118506,"4400":2.2,"4401":2.2784881494,"4402":2.3569762988,"4403":2.4351546914,"4404":2.5133330839,"4405":2.5908931852,"4406":2.6684532865,"4407":2.7450890022,"4408":2.8217247179,"4409":2.8971336019,"4410":2.9725424859,"4411":3.0464269338,"4412":3.1203113817,"4413":3.1923798053,"4414":3.2644482289,"4415":3.3344162071,"4416":3.4043841853,"4417":3.4719755864,"4418":3.5395669874,"4419":3.6045150591,"4420":3.6694631307,"4421":3.7315115526,"4422":3.7935599744,"4423":3.8524638696,"4424":3.9113677648,"4425":3.9668946667,"4426":4.0224215686,"4427":4.0743523377,"4428":4.1262831069,"4429":4.1744127964,"4430":4.2225424859,"4431":4.2666811498,"4432":4.3108198138,"4433":4.3507932569,"4434":4.3907667001,"4435":4.4264171656,"4436":4.4620676312,"4437":4.4932544229,"4438":4.5244412147,"4439":4.5510412527,"4440":4.5776412907,"4441":4.5995495968,"4442":4.6214579028,"4443":4.6385880148,"4444":4.6557181268,"4445":4.6680024401,"4446":4.6802867533,"4447":4.6876767872,"4448":4.6950668211,"4449":4.6975334105,"4450":4.7,"4451":4.6975334105,"4452":4.6950668211,"4453":4.6876767872,"4454":4.6802867533,"4455":4.6680024401,"4456":4.6557181268,"4457":4.6385880148,"4458":4.6214579028,"4459":4.5995495968,"4460":4.5776412907,"4461":4.5510412527,"4462":4.5244412147,"4463":4.4932544229,"4464":4.4620676312,"4465":4.4264171656,"4466":4.3907667001,"4467":4.3507932569,"4468":4.3108198138,"4469":4.2666811498,"4470":4.2225424859,"4471":4.1744127964,"4472":4.1262831069,"4473":4.0743523377,"4474":4.0224215686,"4475":3.9668946667,"4476":3.9113677648,"4477":3.8524638696,"4478":3.7935599744,"4479":3.7315115526,"4480":3.6694631307,"4481":3.6045150591,"4482":3.5395669874,"4483":3.4719755864,"4484":3.4043841853,"4485":3.3344162071,"4486":3.2644482289,"4487":3.1923798053,"4488":3.1203113817,"4489":3.0464269338,"4490":2.9725424859,"4491":2.8971336019,"4492":2.8217247179,"4493":2.7450890022,"4494":2.6684532865,"4495":2.5908931852,"4496":2.5133330839,"4497":2.4351546914,"4498":2.3569762988,"4499":2.2784881494,"4500":2.2,"4501":2.1215118506,"4502":2.0430237012,"4503":1.9648453086,"4504":1.8866669161,"4505":1.8091068148,"4506":1.7315467135,"4507":1.6549109978,"4508":1.5782752821,"4509":1.5028663981,"4510":1.4274575141,"4511":1.3535730662,"4512":1.2796886183,"4513":1.2076201947,"4514":1.1355517711,"4515":1.0655837929,"4516":0.9956158147,"4517":0.9280244136,"4518":0.8604330126,"4519":0.7954849409,"4520":0.7305368693,"4521":0.6684884474,"4522":0.6064400256,"4523":0.5475361304,"4524":0.4886322352,"4525":0.4331053333,"4526":0.3775784314,"4527":0.3256476623,"4528":0.2737168931,"4529":0.2255872036,"4530":0.1774575141,"4531":0.1333188502,"4532":0.0891801862,"4533":0.0492067431,"4534":0.0092332999,"4535":-0.0264171656,"4536":-0.0620676312,"4537":-0.0932544229,"4538":-0.1244412147,"4539":-0.1510412527,"4540":-0.1776412907,"4541":-0.1995495968,"4542":-0.2214579028,"4543":-0.2385880148,"4544":-0.2557181268,"4545":-0.2680024401,"4546":-0.2802867533,"4547":-0.2876767872,"4548":-0.2950668211,"4549":-0.2975334105,"4550":-0.3,"4551":-0.2975334105,"4552":-0.2950668211,"4553":-0.2876767872,"4554":-0.2802867533,"4555":-0.2680024401,"4556":-0.2557181268,"4557":-0.2385880148,"4558":-0.2214579028,"4559":-0.1995495968,"4560":-0.1776412907,"4561":-0.1510412527,"4562":-0.1244412147,"4563":-0.0932544229,"4564":-0.0620676312,"4565":-0.0264171656,"4566":0.0092332999,"4567":0.0492067431,"4568":0.0891801862,"4569":0.1333188502,"4570":0.1774575141,"4571":0.2255872036,"4572":0.2737168931,"4573":0.3256476623,"4574":0.3775784314,"4575":0.4331053333,"4576":0.4886322352,"4577":0.5475361304,"4578":0.6064400256,"4579":0.6684884474,"4580":0.7305368693,"4581":0.7954849409,"4582":0.8604330126,"4583":0.9280244136,"4584":0.9956158147,"4585":1.0655837929,"4586":1.1355517711,"4587":1.2076201947,"4588":1.2796886183,"4589":1.3535730662,"4590":1.4274575141,"4591":1.5028663981,"4592":1.5782752821,"4593":1.6549109978,"4594":1.7315467135,"4595":1.8091068148,"4596":1.8866669161,"4597":1.9648453086,"4598":2.0430237012,"4599":2.1215118506,"4600":2.2,"4601":2.2784881494,"4602":2.3569762988,"4603":2.4351546914,"4604":2.5133330839,"4605":2.5908931852,"4606":2.6684532865,"4607":2.7450890022,"4608":2.8217247179,"4609":2.8971336019,"4610":2.9725424859,"4611":3.0464269338,"4612":3.1203113817,"4613":3.1923798053,"4614":3.2644482289,"4615":3.3344162071,"4616":3.4043841853,"4617":3.4719755864,"4618":3.5395669874,"4619":3.6045150591,"4620":3.6694631307,"4621":3.7315115526,"4622":3.7935599744,"4623":3.8524638696,"4624":3.9113677648,"4625":3.9668946667,"4626":4.0224215686,"4627":4.0743523377,"4628":4.1262831069,"4629":4.1744127964,"4630":4.2225424859,"4631":4.2666811498,"4632":4.3108198138,"4633":4.3507932569,"4634":4.3907667001,"4635":4.4264171656,"4636":4.4620676312,"4637":4.4932544229,"4638":4.5244412147,"4639":4.5510412527,"4640":4.5776412907,"4641":4.5995495968,"4642":4.6214579028,"4643":4.6385880148,"4644":4.6557181268,"4645":4.6680024401,"4646":4.6802867533,"4647":4.6876767872,"4648":4.6950668211,"4649":4.6975334105,"4650":4.7,"4651":4.6975334105,"4652":4.6950668211,"4653":4.6876767872,"4654":4.6802867533,"4655":4.6680024401,"4656":4.6557181268,"4657":4.6385880148,"4658":4.6214579028,"4659":4.5995495968,"4660":4.5776412907,"4661":4.5510412527,"4662":4.5244412147,"4663":4.4932544229,"4664":4.4620676312,"4665":4.4264171656,"4666":4.3907667001,"4667":4.3507932569,"4668":4.3108198138,"4669":4.2666811498,"4670":4.2225424859,"4671":4.1744127964,"4672":4.1262831069,"4673":4.0743523377,"4674":4.0224215686,"4675":3.9668946667,"4676":3.9113677648,"4677":3.8524638696,"4678":3.7935599744,"4679":3.7315115526,"4680":3.6694631307,"4681":3.6045150591,"4682":3.5395669874,"4683":3.4719755864,"4684":3.4043841853,"4685":3.3344162071,"4686":3.2644482289,"4687":3.1923798053,"4688":3.1203113817,"4689":3.0464269338,"4690":2.9725424859,"4691":2.8971336019,"4692":2.8217247179,"4693":2.7450890022,"4694":2.6684532865,"4695":2.5908931852,"4696":2.5133330839,"4697":2.4351546914,"4698":2.3569762988,"4699":2.2784881494,"4700":2.2,"4701":2.1215118506,"4702":2.0430237012,"4703":1.9648453086,"4704":1.8866669161,"4705":1.8091068148,"4706":1.7315467135,"4707":1.6549109978,"4708":1.5782752821,"4709":1.5028663981,"4710":1.4274575141,"4711":1.3535730662,"4712":1.2796886183,"4713":1.2076201947,"4714":1.1355517711,"4715":1.0655837929,"4716":0.9956158147,"4717":0.9280244136,"4718":0.8604330126,"4719":0.7954849409,"4720":0.7305368693,"4721":0.6684884474,"4722":0.6064400256,"4723":0.5475361304,"4724":0.4886322352,"4725":0.4331053333,"4726":0.3775784314,"4727":0.3256476623,"4728":0.2737168931,"4729":0.2255872036,"4730":0.1774575141,"4731":0.1333188502,"4732":0.0891801862,"4733":0.0492067431,"4734":0.0092332999,"4735":-0.0264171656,"4736":-0.0620676312,"4737":-0.0932544229,"4738":-0.1244412147,"4739":-0.1510412527,"4740":-0.1776412907,"4741":-0.1995495968,"4742":-0.2214579028,"4743":-0.2385880148,"4744":-0.2557181268,"4745":-0.2680024401,"4746":-0.2802867533,"4747":-0.2876767872,"4748":-0.2950668211,"4749":-0.2975334105,"4750":-0.3,"4751":-0.2975334105,"4752":-0.2950668211,"4753":-0.2876767872,"4754":-0.2802867533,"4755":-0.2680024401,"4756":-0.2557181268,"4757":-0.2385880148,"4758":-0.2214579028,"4759":-0.1995495968,"4760":-0.1776412907,"4761":-0.1510412527,"4762":-0.1244412147,"4763":-0.0932544229,"4764":-0.0620676312,"4765":-0.0264171656,"4766":0.0092332999,"4767":0.0492067431,"4768":0.0891801862,"4769":0.1333188502,"4770":0.1774575141,"4771":0.2255872036,"4772":0.2737168931,"4773":0.3256476623,"4774":0.3775784314,"4775":0.4331053333,"4776":0.4886322352,"4777":0.5475361304,"4778":0.6064400256,"4779":0.6684884474,"4780":0.7305368693,"4781":0.7954849409,"4782":0.8604330126,"4783":0.9280244136,"4784":0.9956158147,"4785":1.0655837929,"4786":1.1355517711,"4787":1.2076201947,"4788":1.2796886183,"4789":1.3535730662,"4790":1.4274575141,"4791":1.5028663981,"4792":1.5782752821,"4793":1.6549109978,"4794":1.7315467135,"4795":1.8091068148,"4796":1.8866669161,"4797":1.9648453086,"4798":2.0430237012,"4799":2.1215118506,"4800":2.2,"4801":2.2784881494,"4802":2.3569762988,"4803":2.4351546914,"4804":2.5133330839,"4805":2.5908931852,"4806":2.6684532865,"4807":2.7450890022,"4808":2.8217247179,"4809":2.8971336019,"4810":2.9725424859,"4811":3.0464269338,"4812":3.1203113817,"4813":3.1923798053,"4814":3.2644482289,"4815":3.3344162071,"4816":3.4043841853,"4817":3.4719755864,"4818":3.5395669874,"4819":3.6045150591,"4820":3.6694631307,"4821":3.7315115526,"4822":3.7935599744,"4823":3.8524638696,"4824":3.9113677648,"4825":3.9668946667,"4826":4.0224215686,"4827":4.0743523377,"4828":4.1262831069,"4829":4.1744127964,"4830":4.2225424859,"4831":4.2666811498,"4832":4.3108198138,"4833":4.3507932569,"4834":4.3907667001,"4835":4.4264171656,"4836":4.4620676312,"4837":4.4932544229,"4838":4.5244412147,"4839":4.5510412527,"4840":4.5776412907,"4841":4.5995495968,"4842":4.6214579028,"4843":4.6385880148,"4844":4.6557181268,"4845":4.6680024401,"4846":4.6802867533,"4847":4.6876767872,"4848":4.6950668211,"4849":4.6975334105,"4850":4.7,"4851":4.6975334105,"4852":4.6950668211,"4853":4.6876767872,"4854":4.6802867533,"4855":4.6680024401,"4856":4.6557181268,"4857":4.6385880148,"4858":4.6214579028,"4859":4.5995495968,"4860":4.5776412907,"4861":4.5510412527,"4862":4.5244412147,"4863":4.4932544229,"4864":4.4620676312,"4865":4.4264171656,"4866":4.3907667001,"4867":4.3507932569,"4868":4.3108198138,"4869":4.2666811498,"4870":4.2225424859,"4871":4.1744127964,"4872":4.1262831069,"4873":4.0743523377,"4874":4.0224215686,"4875":3.9668946667,"4876":3.9113677648,"4877":3.8524638696,"4878":3.7935599744,"4879":3.7315115526,"4880":3.6694631307,"4881":3.6045150591,"4882":3.5395669874,"4883":3.4719755864,"4884":3.4043841853,"4885":3.3344162071,"4886":3.2644482289,"4887":3.1923798053,"4888":3.1203113817,"4889":3.0464269338,"4890":2.9725424859,"4891":2.8971336019,"4892":2.8217247179,"4893":2.7450890022,"4894":2.6684532865,"4895":2.5908931852,"4896":2.5133330839,"4897":2.4351546914,"4898":2.3569762988,"4899":2.2784881494,"4900":2.2,"4901":2.1215118506,"4902":2.0430237012,"4903":1.9648453086,"4904":1.8866669161,"4905":1.8091068148,"4906":1.7315467135,"4907":1.6549109978,"4908":1.5782752821,"4909":1.5028663981,"4910":1.4274575141,"4911":1.3535730662,"4912":1.2796886183,"4913":1.2076201947,"4914":1.1355517711,"4915":1.0655837929,"4916":0.9956158147,"4917":0.9280244136,"4918":0.8604330126,"4919":0.7954849409,"4920":0.7305368693,"4921":0.6684884474,"4922":0.6064400256,"4923":0.5475361304,"4924":0.4886322352,"4925":0.4331053333,"4926":0.3775784314,"4927":0.3256476623,"4928":0.2737168931,"4929":0.2255872036,"4930":0.1774575141,"4931":0.1333188502,"4932":0.0891801862,"4933":0.0492067431,"4934":0.0092332999,"4935":-0.0264171656,"4936":-0.0620676312,"4937":-0.0932544229,"4938":-0.1244412147,"4939":-0.1510412527,"4940":-0.1776412907,"4941":-0.1995495968,"4942":-0.2214579028,"4943":-0.2385880148,"4944":-0.2557181268,"4945":-0.2680024401,"4946":-0.2802867533,"4947":-0.2876767872,"4948":-0.2950668211,"4949":-0.2975334105,"4950":-0.3,"4951":-0.2975334105,"4952":-0.2950668211,"4953":-0.2876767872,"4954":-0.2802867533,"4955":-0.2680024401,"4956":-0.2557181268,"4957":-0.2385880148,"4958":-0.2214579028,"4959":-0.1995495968,"4960":-0.1776412907,"4961":-0.1510412527,"4962":-0.1244412147,"4963":-0.0932544229,"4964":-0.0620676312,"4965":-0.0264171656,"4966":0.0092332999,"4967":0.0492067431,"4968":0.0891801862,"4969":0.1333188502,"4970":0.1774575141,"4971":0.2255872036,"4972":0.2737168931,"4973":0.3256476623,"4974":0.3775784314,"4975":0.4331053333,"4976":0.4886322352,"4977":0.5475361304,"4978":0.6064400256,"4979":0.6684884474,"4980":0.7305368693,"4981":0.7954849409,"4982":0.8604330126,"4983":0.9280244136,"4984":0.9956158147,"4985":1.0655837929,"4986":1.1355517711,"4987":1.2076201947,"4988":1.2796886183,"4989":1.3535730662,"4990":1.4274575141,"4991":1.5028663981,"4992":1.5782752821,"4993":1.6549109978,"4994":1.7315467135,"4995":1.8091068148,"4996":1.8866669161,"4997":1.9648453086,"4998":2.0430237012,"4999":2.1215118506,"5000":2.2,"5001":2.2784881494,"5002":2.3569762988,"5003":2.4351546914,"5004":2.5133330839,"5005":2.5908931852,"5006":2.6684532865,"5007":2.7450890022,"5008":2.8217247179,"5009":2.8971336019,"5010":2.9725424859,"5011":3.0464269338,"5012":3.1203113817,"5013":3.1923798053,"5014":3.2644482289,"5015":3.3344162071,"5016":3.4043841853,"5017":3.4719755864,"5018":3.5395669874,"5019":3.6045150591,"5020":3.6694631307,"5021":3.7315115526,"5022":3.7935599744,"5023":3.8524638696,"5024":3.9113677648,"5025":3.9668946667,"5026":4.0224215686,"5027":4.0743523377,"5028":4.1262831069,"5029":4.1744127964,"5030":4.2225424859,"5031":4.2666811498,"5032":4.3108198138,"5033":4.3507932569,"5034":4.3907667001,"5035":4.4264171656,"5036":4.4620676312,"5037":4.4932544229,"5038":4.5244412147,"5039":4.5510412527,"5040":4.5776412907,"5041":4.5995495968,"5042":4.6214579028,"5043":4.6385880148,"5044":4.6557181268,"5045":4.6680024401,"5046":4.6802867533,"5047":4.6876767872,"5048":4.6950668211,"5049":4.6975334105,"5050":4.7,"5051":4.6975334105,"5052":4.6950668211,"5053":4.6876767872,"5054":4.6802867533,"5055":4.6680024401,"5056":4.6557181268,"5057":4.6385880148,"5058":4.6214579028,"5059":4.5995495968,"5060":4.5776412907,"5061":4.5510412527,"5062":4.5244412147,"5063":4.4932544229,"5064":4.4620676312,"5065":4.4264171656,"5066":4.3907667001,"5067":4.3507932569,"5068":4.3108198138,"5069":4.2666811498,"5070":4.2225424859,"5071":4.1744127964,"5072":4.1262831069,"5073":4.0743523377,"5074":4.0224215686,"5075":3.9668946667,"5076":3.9113677648,"5077":3.8524638696,"5078":3.7935599744,"5079":3.7315115526,"5080":3.6694631307,"5081":3.6045150591,"5082":3.5395669874,"5083":3.4719755864,"5084":3.4043841853,"5085":3.3344162071,"5086":3.2644482289,"5087":3.1923798053,"5088":3.1203113817,"5089":3.0464269338,"5090":2.9725424859,"5091":2.8971336019,"5092":2.8217247179,"5093":2.7450890022,"5094":2.6684532865,"5095":2.5908931852,"5096":2.5133330839,"5097":2.4351546914,"5098":2.3569762988,"5099":2.2784881494,"5100":2.2,"5101":2.1215118506,"5102":2.0430237012,"5103":1.9648453086,"5104":1.8866669161,"5105":1.8091068148,"5106":1.7315467135,"5107":1.6549109978,"5108":1.5782752821,"5109":1.5028663981,"5110":1.4274575141,"5111":1.3535730662,"5112":1.2796886183,"5113":1.2076201947,"5114":1.1355517711,"5115":1.0655837929,"5116":0.9956158147,"5117":0.9280244136,"5118":0.8604330126,"5119":0.7954849409,"5120":0.7305368693,"5121":0.6684884474,"5122":0.6064400256,"5123":0.5475361304,"5124":0.4886322352,"5125":0.4331053333,"5126":0.3775784314,"5127":0.3256476623,"5128":0.2737168931,"5129":0.2255872036,"5130":0.1774575141,"5131":0.1333188502,"5132":0.0891801862,"5133":0.0492067431,"5134":0.0092332999,"5135":-0.0264171656,"5136":-0.0620676312,"5137":-0.0932544229,"5138":-0.1244412147,"5139":-0.1510412527,"5140":-0.1776412907,"5141":-0.1995495968,"5142":-0.2214579028,"5143":-0.2385880148,"5144":-0.2557181268,"5145":-0.2680024401,"5146":-0.2802867533,"5147":-0.2876767872,"5148":-0.2950668211,"5149":-0.2975334105,"5150":-0.3,"5151":-0.2975334105,"5152":-0.2950668211,"5153":-0.2876767872,"5154":-0.2802867533,"5155":-0.2680024401,"5156":-0.2557181268,"5157":-0.2385880148,"5158":-0.2214579028,"5159":-0.1995495968,"5160":-0.1776412907,"5161":-0.1510412527,"5162":-0.1244412147,"5163":-0.0932544229,"5164":-0.0620676312,"5165":-0.0264171656,"5166":0.0092332999,"5167":0.0492067431,"5168":0.0891801862,"5169":0.1333188502,"5170":0.1774575141,"5171":0.2255872036,"5172":0.2737168931,"5173":0.3256476623,"5174":0.3775784314,"5175":0.4331053333,"5176":0.4886322352,"5177":0.5475361304,"5178":0.6064400256,"5179":0.6684884474,"5180":0.7305368693,"5181":0.7954849409,"5182":0.8604330126,"5183":0.9280244136,"5184":0.9956158147,"5185":1.0655837929,"5186":1.1355517711,"5187":1.2076201947,"5188":1.2796886183,"5189":1.3535730662,"5190":1.4274575141,"5191":1.5028663981,"5192":1.5782752821,"5193":1.6549109978,"5194":1.7315467135,"5195":1.8091068148,"5196":1.8866669161,"5197":1.9648453086,"5198":2.0430237012,"5199":2.1215118506,"5200":2.2,"5201":2.2784881494,"5202":2.3569762988,"5203":2.4351546914,"5204":2.5133330839,"5205":2.5908931852,"5206":2.6684532865,"5207":2.7450890022,"5208":2.8217247179,"5209":2.8971336019,"5210":2.9725424859,"5211":3.0464269338,"5212":3.1203113817,"5213":3.1923798053,"5214":3.2644482289,"5215":3.3344162071,"5216":3.4043841853,"5217":3.4719755864,"5218":3.5395669874,"5219":3.6045150591,"5220":3.6694631307,"5221":3.7315115526,"5222":3.7935599744,"5223":3.8524638696,"5224":3.9113677648,"5225":3.9668946667,"5226":4.0224215686,"5227":4.0743523377,"5228":4.1262831069,"5229":4.1744127964,"5230":4.2225424859,"5231":4.2666811498,"5232":4.3108198138,"5233":4.3507932569,"5234":4.3907667001,"5235":4.4264171656,"5236":4.4620676312,"5237":4.4932544229,"5238":4.5244412147,"5239":4.5510412527,"5240":4.5776412907,"5241":4.5995495968,"5242":4.6214579028,"5243":4.6385880148,"5244":4.6557181268,"5245":4.6680024401,"5246":4.6802867533,"5247":4.6876767872,"5248":4.6950668211,"5249":4.6975334105,"5250":4.7,"5251":4.6975334105,"5252":4.6950668211,"5253":4.6876767872,"5254":4.6802867533,"5255":4.6680024401,"5256":4.6557181268,"5257":4.6385880148,"5258":4.6214579028,"5259":4.5995495968,"5260":4.5776412907,"5261":4.5510412527,"5262":4.5244412147,"5263":4.4932544229,"5264":4.4620676312,"5265":4.4264171656,"5266":4.3907667001,"5267":4.3507932569,"5268":4.3108198138,"5269":4.2666811498,"5270":4.2225424859,"5271":4.1744127964,"5272":4.1262831069,"5273":4.0743523377,"5274":4.0224215686,"5275":3.9668946667,"5276":3.9113677648,"5277":3.8524638696,"5278":3.7935599744,"5279":3.7315115526,"5280":3.6694631307,"5281":3.6045150591,"5282":3.5395669874,"5283":3.4719755864,"5284":3.4043841853,"5285":3.3344162071,"5286":3.2644482289,"5287":3.1923798053,"5288":3.1203113817,"5289":3.0464269338,"5290":2.9725424859,"5291":2.8971336019,"5292":2.8217247179,"5293":2.7450890022,"5294":2.6684532865,"5295":2.5908931852,"5296":2.5133330839,"5297":2.4351546914,"5298":2.3569762988,"5299":2.2784881494,"5300":2.2,"5301":2.1215118506,"5302":2.0430237012,"5303":1.9648453086,"5304":1.8866669161,"5305":1.8091068148,"5306":1.7315467135,"5307":1.6549109978,"5308":1.5782752821,"5309":1.5028663981,"5310":1.4274575141,"5311":1.3535730662,"5312":1.2796886183,"5313":1.2076201947,"5314":1.1355517711,"5315":1.0655837929,"5316":0.9956158147,"5317":0.9280244136,"5318":0.8604330126,"5319":0.7954849409,"5320":0.7305368693,"5321":0.6684884474,"5322":0.6064400256,"5323":0.5475361304,"5324":0.4886322352,"5325":0.4331053333,"5326":0.3775784314,"5327":0.3256476623,"5328":0.2737168931,"5329":0.2255872036,"5330":0.1774575141,"5331":0.1333188502,"5332":0.0891801862,"5333":0.0492067431,"5334":0.0092332999,"5335":-0.0264171656,"5336":-0.0620676312,"5337":-0.0932544229,"5338":-0.1244412147,"5339":-0.1510412527,"5340":-0.1776412907,"5341":-0.1995495968,"5342":-0.2214579028,"5343":-0.2385880148,"5344":-0.2557181268,"5345":-0.2680024401,"5346":-0.2802867533,"5347":-0.2876767872,"5348":-0.2950668211,"5349":-0.2975334105,"5350":-0.3,"5351":-0.2975334105,"5352":-0.2950668211,"5353":-0.2876767872,"5354":-0.2802867533,"5355":-0.2680024401,"5356":-0.2557181268,"5357":-0.2385880148,"5358":-0.2214579028,"5359":-0.1995495968,"5360":-0.1776412907,"5361":-0.1510412527,"5362":-0.1244412147,"5363":-0.0932544229,"5364":-0.0620676312,"5365":-0.0264171656,"5366":0.0092332999,"5367":0.0492067431,"5368":0.0891801862,"5369":0.1333188502,"5370":0.1774575141,"5371":0.2255872036,"5372":0.2737168931,"5373":0.3256476623,"5374":0.3775784314,"5375":0.4331053333,"5376":0.4886322352,"5377":0.5475361304,"5378":0.6064400256,"5379":0.6684884474,"5380":0.7305368693,"5381":0.7954849409,"5382":0.8604330126,"5383":0.9280244136,"5384":0.9956158147,"5385":1.0655837929,"5386":1.1355517711,"5387":1.2076201947,"5388":1.2796886183,"5389":1.3535730662,"5390":1.4274575141,"5391":1.5028663981,"5392":1.5782752821,"5393":1.6549109978,"5394":1.7315467135,"5395":1.8091068148,"5396":1.8866669161,"5397":1.9648453086,"5398":2.0430237012,"5399":2.1215118506,"5400":2.2,"5401":2.2784881494,"5402":2.3569762988,"5403":2.4351546914,"5404":2.5133330839,"5405":2.5908931852,"5406":2.6684532865,"5407":2.7450890022,"5408":2.8217247179,"5409":2.8971336019,"5410":2.9725424859,"5411":3.0464269338,"5412":3.1203113817,"5413":3.1923798053,"5414":3.2644482289,"5415":3.3344162071,"5416":3.4043841853,"5417":3.4719755864,"5418":3.5395669874,"5419":3.6045150591,"5420":3.6694631307,"5421":3.7315115526,"5422":3.7935599744,"5423":3.8524638696,"5424":3.9113677648,"5425":3.9668946667,"5426":4.0224215686,"5427":4.0743523377,"5428":4.1262831069,"5429":4.1744127964,"5430":4.2225424859,"5431":4.2666811498,"5432":4.3108198138,"5433":4.3507932569,"5434":4.3907667001,"5435":4.4264171656,"5436":4.4620676312,"5437":4.4932544229,"5438":4.5244412147,"5439":4.5510412527,"5440":4.5776412907,"5441":4.5995495968,"5442":4.6214579028,"5443":4.6385880148,"5444":4.6557181268,"5445":4.6680024401,"5446":4.6802867533,"5447":4.6876767872,"5448":4.6950668211,"5449":4.6975334105,"5450":4.7,"5451":4.6975334105,"5452":4.6950668211,"5453":4.6876767872,"5454":4.6802867533,"5455":4.6680024401,"5456":4.6557181268,"5457":4.6385880148,"5458":4.6214579028,"5459":4.5995495968,"5460":4.5776412907,"5461":4.5510412527,"5462":4.5244412147,"5463":4.4932544229,"5464":4.4620676312,"5465":4.4264171656,"5466":4.3907667001,"5467":4.3507932569,"5468":4.3108198138,"5469":4.2666811498,"5470":4.2225424859,"5471":4.1744127964,"5472":4.1262831069,"5473":4.0743523377,"5474":4.0224215686,"5475":3.9668946667,"5476":3.9113677648,"5477":3.8524638696,"5478":3.7935599744,"5479":3.7315115526,"5480":3.6694631307,"5481":3.6045150591,"5482":3.5395669874,"5483":3.4719755864,"5484":3.4043841853,"5485":3.3344162071,"5486":3.2644482289,"5487":3.1923798053,"5488":3.1203113817,"5489":3.0464269338,"5490":2.9725424859,"5491":2.8971336019,"5492":2.8217247179,"5493":2.7450890022,"5494":2.6684532865,"5495":2.5908931852,"5496":2.5133330839,"5497":2.4351546914,"5498":2.3569762988,"5499":2.2784881494,"5500":2.2,"5501":2.1215118506,"5502":2.0430237012,"5503":1.9648453086,"5504":1.8866669161,"5505":1.8091068148,"5506":1.7315467135,"5507":1.6549109978,"5508":1.5782752821,"5509":1.5028663981,"5510":1.4274575141,"5511":1.3535730662,"5512":1.2796886183,"5513":1.2076201947,"5514":1.1355517711,"5515":1.0655837929,"5516":0.9956158147,"5517":0.9280244136,"5518":0.8604330126,"5519":0.7954849409,"5520":0.7305368693,"5521":0.6684884474,"5522":0.6064400256,"5523":0.5475361304,"5524":0.4886322352,"5525":0.4331053333,"5526":0.3775784314,"5527":0.3256476623,"5528":0.2737168931,"5529":0.2255872036,"5530":0.1774575141,"5531":0.1333188502,"5532":0.0891801862,"5533":0.0492067431,"5534":0.0092332999,"5535":-0.0264171656,"5536":-0.0620676312,"5537":-0.0932544229,"5538":-0.1244412147,"5539":-0.1510412527,"5540":-0.1776412907,"5541":-0.1995495968,"5542":-0.2214579028,"5543":-0.2385880148,"5544":-0.2557181268,"5545":-0.2680024401,"5546":-0.2802867533,"5547":-0.2876767872,"5548":-0.2950668211,"5549":-0.2975334105,"5550":-0.3,"5551":-0.2975334105,"5552":-0.2950668211,"5553":-0.2876767872,"5554":-0.2802867533,"5555":-0.2680024401,"5556":-0.2557181268,"5557":-0.2385880148,"5558":-0.2214579028,"5559":-0.1995495968,"5560":-0.1776412907,"5561":-0.1510412527,"5562":-0.1244412147,"5563":-0.0932544229,"5564":-0.0620676312,"5565":-0.0264171656,"5566":0.0092332999,"5567":0.0492067431,"5568":0.0891801862,"5569":0.1333188502,"5570":0.1774575141,"5571":0.2255872036,"5572":0.2737168931,"5573":0.3256476623,"5574":0.3775784314,"5575":0.4331053333,"5576":0.4886322352,"5577":0.5475361304,"5578":0.6064400256,"5579":0.6684884474,"5580":0.7305368693,"5581":0.7954849409,"5582":0.8604330126,"5583":0.9280244136,"5584":0.9956158147,"5585":1.0655837929,"5586":1.1355517711,"5587":1.2076201947,"5588":1.2796886183,"5589":1.3535730662,"5590":1.4274575141,"5591":1.5028663981,"5592":1.5782752821,"5593":1.6549109978,"5594":1.7315467135,"5595":1.8091068148,"5596":1.8866669161,"5597":1.9648453086,"5598":2.0430237012,"5599":2.1215118506,"5600":2.2,"5601":2.2784881494,"5602":2.3569762988,"5603":2.4351546914,"5604":2.5133330839,"5605":2.5908931852,"5606":2.6684532865,"5607":2.7450890022,"5608":2.8217247179,"5609":2.8971336019,"5610":2.9725424859,"5611":3.0464269338,"5612":3.1203113817,"5613":3.1923798053,"5614":3.2644482289,"5615":3.3344162071,"5616":3.4043841853,"5617":3.4719755864,"5618":3.5395669874,"5619":3.6045150591,"5620":3.6694631307,"5621":3.7315115526,"5622":3.7935599744,"5623":3.8524638696,"5624":3.9113677648,"5625":3.9668946667,"5626":4.0224215686,"5627":4.0743523377,"5628":4.1262831069,"5629":4.1744127964,"5630":4.2225424859,"5631":4.2666811498,"5632":4.3108198138,"5633":4.3507932569,"5634":4.3907667001,"5635":4.4264171656,"5636":4.4620676312,"5637":4.4932544229,"5638":4.5244412147,"5639":4.5510412527,"5640":4.5776412907,"5641":4.5995495968,"5642":4.6214579028,"5643":4.6385880148,"5644":4.6557181268,"5645":4.6680024401,"5646":4.6802867533,"5647":4.6876767872,"5648":4.6950668211,"5649":4.6975334105,"5650":4.7,"5651":4.6975334105,"5652":4.6950668211,"5653":4.6876767872,"5654":4.6802867533,"5655":4.6680024401,"5656":4.6557181268,"5657":4.6385880148,"5658":4.6214579028,"5659":4.5995495968,"5660":4.5776412907,"5661":4.5510412527,"5662":4.5244412147,"5663":4.4932544229,"5664":4.4620676312,"5665":4.4264171656,"5666":4.3907667001,"5667":4.3507932569,"5668":4.3108198138,"5669":4.2666811498,"5670":4.2225424859,"5671":4.1744127964,"5672":4.1262831069,"5673":4.0743523377,"5674":4.0224215686,"5675":3.9668946667,"5676":3.9113677648,"5677":3.8524638696,"5678":3.7935599744,"5679":3.7315115526,"5680":3.6694631307,"5681":3.6045150591,"5682":3.5395669874,"5683":3.4719755864,"5684":3.4043841853,"5685":3.3344162071,"5686":3.2644482289,"5687":3.1923798053,"5688":3.1203113817,"5689":3.0464269338,"5690":2.9725424859,"5691":2.8971336019,"5692":2.8217247179,"5693":2.7450890022,"5694":2.6684532865,"5695":2.5908931852,"5696":2.5133330839,"5697":2.4351546914,"5698":2.3569762988,"5699":2.2784881494,"5700":2.2,"5701":2.1215118506,"5702":2.0430237012,"5703":1.9648453086,"5704":1.8866669161,"5705":1.8091068148,"5706":1.7315467135,"5707":1.6549109978,"5708":1.5782752821,"5709":1.5028663981,"5710":1.4274575141,"5711":1.3535730662,"5712":1.2796886183,"5713":1.2076201947,"5714":1.1355517711,"5715":1.0655837929,"5716":0.9956158147,"5717":0.9280244136,"5718":0.8604330126,"5719":0.7954849409,"5720":0.7305368693,"5721":0.6684884474,"5722":0.6064400256,"5723":0.5475361304,"5724":0.4886322352,"5725":0.4331053333,"5726":0.3775784314,"5727":0.3256476623,"5728":0.2737168931,"5729":0.2255872036,"5730":0.1774575141,"5731":0.1333188502,"5732":0.0891801862,"5733":0.0492067431,"5734":0.0092332999,"5735":-0.0264171656,"5736":-0.0620676312,"5737":-0.0932544229,"5738":-0.1244412147,"5739":-0.1510412527,"5740":-0.1776412907,"5741":-0.1995495968,"5742":-0.2214579028,"5743":-0.2385880148,"5744":-0.2557181268,"5745":-0.2680024401,"5746":-0.2802867533,"5747":-0.2876767872,"5748":-0.2950668211,"5749":-0.2975334105,"5750":-0.3,"5751":-0.2975334105,"5752":-0.2950668211,"5753":-0.2876767872,"5754":-0.2802867533,"5755":-0.2680024401,"5756":-0.2557181268,"5757":-0.2385880148,"5758":-0.2214579028,"5759":-0.1995495968,"5760":-0.1776412907,"5761":-0.1510412527,"5762":-0.1244412147,"5763":-0.0932544229,"5764":-0.0620676312,"5765":-0.0264171656,"5766":0.0092332999,"5767":0.0492067431,"5768":0.0891801862,"5769":0.1333188502,"5770":0.1774575141,"5771":0.2255872036,"5772":0.2737168931,"5773":0.3256476623,"5774":0.3775784314,"5775":0.4331053333,"5776":0.4886322352,"5777":0.5475361304,"5778":0.6064400256,"5779":0.6684884474,"5780":0.7305368693,"5781":0.7954849409,"5782":0.8604330126,"5783":0.9280244136,"5784":0.9956158147,"5785":1.0655837929,"5786":1.1355517711,"5787":1.2076201947,"5788":1.2796886183,"5789":1.3535730662,"5790":1.4274575141,"5791":1.5028663981,"5792":1.5782752821,"5793":1.6549109978,"5794":1.7315467135,"5795":1.8091068148,"5796":1.8866669161,"5797":1.9648453086,"5798":2.0430237012,"5799":2.1215118506,"5800":2.2,"5801":2.2784881494,"5802":2.3569762988,"5803":2.4351546914,"5804":2.5133330839,"5805":2.5908931852,"5806":2.6684532865,"5807":2.7450890022,"5808":2.8217247179,"5809":2.8971336019,"5810":2.9725424859,"5811":3.0464269338,"5812":3.1203113817,"5813":3.1923798053,"5814":3.2644482289,"5815":3.3344162071,"5816":3.4043841853,"5817":3.4719755864,"5818":3.5395669874,"5819":3.6045150591,"5820":3.6694631307,"5821":3.7315115526,"5822":3.7935599744,"5823":3.8524638696,"5824":3.9113677648,"5825":3.9668946667,"5826":4.0224215686,"5827":4.0743523377,"5828":4.1262831069,"5829":4.1744127964,"5830":4.2225424859,"5831":4.2666811498,"5832":4.3108198138,"5833":4.3507932569,"5834":4.3907667001,"5835":4.4264171656,"5836":4.4620676312,"5837":4.4932544229,"5838":4.5244412147,"5839":4.5510412527,"5840":4.5776412907,"5841":4.5995495968,"5842":4.6214579028,"5843":4.6385880148,"5844":4.6557181268,"5845":4.6680024401,"5846":4.6802867533,"5847":4.6876767872,"5848":4.6950668211,"5849":4.6975334105,"5850":4.7,"5851":4.6975334105,"5852":4.6950668211,"5853":4.6876767872,"5854":4.6802867533,"5855":4.6680024401,"5856":4.6557181268,"5857":4.6385880148,"5858":4.6214579028,"5859":4.5995495968,"5860":4.5776412907,"5861":4.5510412527,"5862":4.5244412147,"5863":4.4932544229,"5864":4.4620676312,"5865":4.4264171656,"5866":4.3907667001,"5867":4.3507932569,"5868":4.3108198138,"5869":4.2666811498,"5870":4.2225424859,"5871":4.1744127964,"5872":4.1262831069,"5873":4.0743523377,"5874":4.0224215686,"5875":3.9668946667,"5876":3.9113677648,"5877":3.8524638696,"5878":3.7935599744,"5879":3.7315115526,"5880":3.6694631307,"5881":3.6045150591,"5882":3.5395669874,"5883":3.4719755864,"5884":3.4043841853,"5885":3.3344162071,"5886":3.2644482289,"5887":3.1923798053,"5888":3.1203113817,"5889":3.0464269338,"5890":2.9725424859,"5891":2.8971336019,"5892":2.8217247179,"5893":2.7450890022,"5894":2.6684532865,"5895":2.5908931852,"5896":2.5133330839,"5897":2.4351546914,"5898":2.3569762988,"5899":2.2784881494,"5900":2.2,"5901":2.1215118506,"5902":2.0430237012,"5903":1.9648453086,"5904":1.8866669161,"5905":1.8091068148,"5906":1.7315467135,"5907":1.6549109978,"5908":1.5782752821,"5909":1.5028663981,"5910":1.4274575141,"5911":1.3535730662,"5912":1.2796886183,"5913":1.2076201947,"5914":1.1355517711,"5915":1.0655837929,"5916":0.9956158147,"5917":0.9280244136,"5918":0.8604330126,"5919":0.7954849409,"5920":0.7305368693,"5921":0.6684884474,"5922":0.6064400256,"5923":0.5475361304,"5924":0.4886322352,"5925":0.4331053333,"5926":0.3775784314,"5927":0.3256476623,"5928":0.2737168931,"5929":0.2255872036,"5930":0.1774575141,"5931":0.1333188502,"5932":0.0891801862,"5933":0.0492067431,"5934":0.0092332999,"5935":-0.0264171656,"5936":-0.0620676312,"5937":-0.0932544229,"5938":-0.1244412147,"5939":-0.1510412527,"5940":-0.1776412907,"5941":-0.1995495968,"5942":-0.2214579028,"5943":-0.2385880148,"5944":-0.2557181268,"5945":-0.2680024401,"5946":-0.2802867533,"5947":-0.2876767872,"5948":-0.2950668211,"5949":-0.2975334105,"5950":-0.3,"5951":-0.2975334105,"5952":-0.2950668211,"5953":-0.2876767872,"5954":-0.2802867533,"5955":-0.2680024401,"5956":-0.2557181268,"5957":-0.2385880148,"5958":-0.2214579028,"5959":-0.1995495968,"5960":-0.1776412907,"5961":-0.1510412527,"5962":-0.1244412147,"5963":-0.0932544229,"5964":-0.0620676312,"5965":-0.0264171656,"5966":0.0092332999,"5967":0.0492067431,"5968":0.0891801862,"5969":0.1333188502,"5970":0.1774575141,"5971":0.2255872036,"5972":0.2737168931,"5973":0.3256476623,"5974":0.3775784314,"5975":0.4331053333,"5976":0.4886322352,"5977":0.5475361304,"5978":0.6064400256,"5979":0.6684884474,"5980":0.7305368693,"5981":0.7954849409,"5982":0.8604330126,"5983":0.9280244136,"5984":0.9956158147,"5985":1.0655837929,"5986":1.1355517711,"5987":1.2076201947,"5988":1.2796886183,"5989":1.3535730662,"5990":1.4274575141,"5991":1.5028663981,"5992":1.5782752821,"5993":1.6549109978,"5994":1.7315467135,"5995":1.8091068148,"5996":1.8866669161,"5997":1.9648453086,"5998":2.0430237012,"5999":2.1215118506,"6000":2.2},"flow_out":{"0":2.200000001,"1":2.2784881489,"2":2.3569762991,"3":2.4351546912,"4":2.513333084,"5":2.5908931852,"6":2.6684532865,"7":2.7450890022,"8":2.8217247179,"9":2.8971336019,"10":2.9725424859,"11":3.0464269338,"12":3.1203113817,"13":3.1923798053,"14":3.2644482289,"15":3.3344162071,"16":3.4043841853,"17":3.4719755864,"18":3.5395669874,"19":3.6045150591,"20":3.6694631307,"21":3.7315115526,"22":3.7935599744,"23":3.8524638696,"24":3.9113677648,"25":3.9668946667,"26":4.0224215686,"27":4.0743523377,"28":4.1262831069,"29":4.1744127964,"30":4.2225424859,"31":4.2666811498,"32":4.3108198138,"33":4.3507932569,"34":4.3907667001,"35":4.4264171656,"36":4.4620676312,"37":4.4932544229,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2,"201":2.2784881494,"202":2.3569762988,"203":2.4351546914,"204":2.5133330839,"205":2.5908931852,"206":2.6684532865,"207":2.7450890022,"208":2.8217247179,"209":2.8971336019,"210":2.9725424859,"211":3.0464269338,"212":3.1203113817,"213":3.1923798053,"214":3.2644482289,"215":3.3344162071,"216":3.4043841853,"217":3.4719755864,"218":3.5395669874,"219":3.6045150591,"220":3.6694631307,"221":3.7315115526,"222":3.7935599744,"223":3.8524638696,"224":3.9113677648,"225":3.9668946667,"226":4.0224215686,"227":4.0743523377,"228":4.1262831069,"229":4.1744127964,"230":4.2225424859,"231":4.2666811498,"232":4.3108198138,"233":4.3507932569,"234":4.3907667001,"235":4.4264171656,"236":4.4620676312,"237":4.4932544229,"238":4.5244412147,"239":4.5510412527,"240":4.5776412907,"241":4.5995495968,"242":4.6214579028,"243":4.6385880148,"244":4.6557181268,"245":4.6680024401,"246":4.6802867533,"247":4.6876767872,"248":4.6950668211,"249":4.6975334105,"250":4.7,"251":4.6975334105,"252":4.6950668211,"253":4.6876767872,"254":4.6802867533,"255":4.6680024401,"256":4.6557181268,"257":4.6385880148,"258":4.6214579028,"259":4.5995495968,"260":4.5776412907,"261":4.5510412527,"262":4.5244412147,"263":4.4932544229,"264":4.4620676312,"265":4.4264171656,"266":4.3907667001,"267":4.3507932569,"268":4.3108198138,"269":4.2666811498,"270":4.2225424859,"271":4.1744127964,"272":4.1262831069,"273":4.0743523377,"274":4.0224215686,"275":3.9668946667,"276":3.9113677648,"277":3.8524638696,"278":3.7935599744,"279":3.7315115526,"280":3.6694631307,"281":3.6045150591,"282":3.5395669874,"283":3.4719755864,"284":3.4043841853,"285":3.3344162071,"286":3.2644482289,"287":3.1923798053,"288":3.1203113817,"289":3.0464269338,"290":2.9725424859,"291":2.8971336019,"292":2.8217247179,"293":2.7450890022,"294":2.6684532865,"295":2.5908931852,"296":2.5133330839,"297":2.4351546914,"298":2.3569762988,"299":2.2784881494,"300":2.2,"301":2.1215118506,"302":2.0430237012,"303":1.9648453086,"304":1.8866669161,"305":1.8091068148,"306":1.7315467135,"307":1.6549109978,"308":1.5782752821,"309":1.5028663981,"310":1.4274575141,"311":1.3535730662,"312":1.2796886183,"313":1.2076201947,"314":1.1355517711,"315":1.0655837929,"316":0.9956158147,"317":0.9280244136,"318":0.8604330126,"319":0.7954849409,"320":0.7305368693,"321":0.6684884474,"322":0.6064400256,"323":0.5475361304,"324":0.4886322352,"325":0.4331053333,"326":0.3775784314,"327":0.3256476623,"328":0.2737168931,"329":0.2255872036,"330":0.1774575141,"331":0.1333188502,"332":0.0891801862,"333":0.0492067431,"334":0.0092332999,"335":-0.0264171656,"336":-0.0620676312,"337":-0.0932544229,"338":-0.1244412147,"339":-0.1510412527,"340":-0.1776412907,"341":-0.1995495968,"342":-0.2214579028,"343":-0.2385880148,"344":-0.2557181268,"345":-0.2680024401,"346":-0.2802867533,"347":-0.2876767872,"348":-0.2950668211,"349":-0.2975334105,"350":-0.3,"351":-0.2975334105,"352":-0.2950668211,"353":-0.2876767872,"354":-0.2802867533,"355":-0.2680024401,"356":-0.2557181268,"357":-0.2385880148,"358":-0.2214579028,"359":-0.1995495968,"360":-0.1776412907,"361":-0.1510412527,"362":-0.1244412147,"363":-0.0932544229,"364":-0.0620676312,"365":-0.0264171656,"366":0.0092332999,"367":0.0492067431,"368":0.0891801862,"369":0.1333188502,"370":0.1774575141,"371":0.2255872036,"372":0.2737168931,"373":0.3256476623,"374":0.3775784314,"375":0.4331053333,"376":0.4886322352,"377":0.5475361304,"378":0.6064400256,"379":0.6684884474,"380":0.7305368693,"381":0.7954849409,"382":0.8604330126,"383":0.9280244136,"384":0.9956158147,"385":1.0655837929,"386":1.1355517711,"387":1.2076201947,"388":1.2796886183,"389":1.3535730662,"390":1.4274575141,"391":1.5028663981,"392":1.5782752821,"393":1.6549109978,"394":1.7315467135,"395":1.8091068148,"396":1.8866669161,"397":1.9648453086,"398":2.0430237012,"399":2.1215118506,"400":2.2,"401":2.2784881494,"402":2.3569762988,"403":2.4351546914,"404":2.5133330839,"405":2.5908931852,"406":2.6684532865,"407":2.7450890022,"408":2.8217247179,"409":2.8971336019,"410":2.9725424859,"411":3.0464269338,"412":3.1203113817,"413":3.1923798053,"414":3.2644482289,"415":3.3344162071,"416":3.4043841853,"417":3.4719755864,"418":3.5395669874,"419":3.6045150591,"420":3.6694631307,"421":3.7315115526,"422":3.7935599744,"423":3.8524638696,"424":3.9113677648,"425":3.9668946667,"426":4.0224215686,"427":4.0743523377,"428":4.1262831069,"429":4.1744127964,"430":4.2225424859,"431":4.2666811498,"432":4.3108198138,"433":4.3507932569,"434":4.3907667001,"435":4.4264171656,"436":4.4620676312,"437":4.4932544229,"438":4.5244412147,"439":4.5510412527,"440":4.5776412907,"441":4.5995495968,"442":4.6214579028,"443":4.6385880148,"444":4.6557181268,"445":4.6680024401,"446":4.6802867533,"447":4.6876767872,"448":4.6950668211,"449":4.6975334105,"450":4.7,"451":4.6975334105,"452":4.6950668211,"453":4.6876767872,"454":4.6802867533,"455":4.6680024401,"456":4.6557181268,"457":4.6385880148,"458":4.6214579028,"459":4.5995495968,"460":4.5776412907,"461":4.5510412527,"462":4.5244412147,"463":4.4932544229,"464":4.4620676312,"465":4.4264171656,"466":4.3907667001,"467":4.3507932569,"468":4.3108198138,"469":4.2666811498,"470":4.2225424859,"471":4.1744127964,"472":4.1262831069,"473":4.0743523377,"474":4.0224215686,"475":3.9668946667,"476":3.9113677648,"477":3.8524638696,"478":3.7935599744,"479":3.7315115526,"480":3.6694631307,"481":3.6045150591,"482":3.5395669874,"483":3.4719755864,"484":3.4043841853,"485":3.3344162071,"486":3.2644482289,"487":3.1923798053,"488":3.1203113817,"489":3.0464269338,"490":2.9725424859,"491":2.8971336019,"492":2.8217247179,"493":2.7450890022,"494":2.6684532865,"495":2.5908931852,"496":2.5133330839,"497":2.4351546914,"498":2.3569762988,"499":2.2784881494,"500":2.2,"501":2.1215118506,"502":2.0430237012,"503":1.9648453086,"504":1.8866669161,"505":1.8091068148,"506":1.7315467135,"507":1.6549109978,"508":1.5782752821,"509":1.5028663981,"510":1.4274575141,"511":1.3535730662,"512":1.2796886183,"513":1.2076201947,"514":1.1355517711,"515":1.0655837929,"516":0.9956158147,"517":0.9280244136,"518":0.8604330126,"519":0.7954849409,"520":0.7305368693,"521":0.6684884474,"522":0.6064400256,"523":0.5475361304,"524":0.4886322352,"525":0.4331053333,"526":0.3775784314,"527":0.3256476623,"528":0.2737168931,"529":0.2255872036,"530":0.1774575141,"531":0.1333188502,"532":0.0891801862,"533":0.0492067431,"534":0.0092332999,"535":-0.0264171656,"536":-0.0620676312,"537":-0.0932544229,"538":-0.1244412147,"539":-0.1510412527,"540":-0.1776412907,"541":-0.1995495968,"542":-0.2214579028,"543":-0.2385880148,"544":-0.2557181268,"545":-0.2680024401,"546":-0.2802867533,"547":-0.2876767872,"548":-0.2950668211,"549":-0.2975334105,"550":-0.3,"551":-0.2975334105,"552":-0.2950668211,"553":-0.2876767872,"554":-0.2802867533,"555":-0.2680024401,"556":-0.2557181268,"557":-0.2385880148,"558":-0.2214579028,"559":-0.1995495968,"560":-0.1776412907,"561":-0.1510412527,"562":-0.1244412147,"563":-0.0932544229,"564":-0.0620676312,"565":-0.0264171656,"566":0.0092332999,"567":0.0492067431,"568":0.0891801862,"569":0.1333188502,"570":0.1774575141,"571":0.2255872036,"572":0.2737168931,"573":0.3256476623,"574":0.3775784314,"575":0.4331053333,"576":0.4886322352,"577":0.5475361304,"578":0.6064400256,"579":0.6684884474,"580":0.7305368693,"581":0.7954849409,"582":0.8604330126,"583":0.9280244136,"584":0.9956158147,"585":1.0655837929,"586":1.1355517711,"587":1.2076201947,"588":1.2796886183,"589":1.3535730662,"590":1.4274575141,"591":1.5028663981,"592":1.5782752821,"593":1.6549109978,"594":1.7315467135,"595":1.8091068148,"596":1.8866669161,"597":1.9648453086,"598":2.0430237012,"599":2.1215118506,"600":2.2,"601":2.2784881494,"602":2.3569762988,"603":2.4351546914,"604":2.5133330839,"605":2.5908931852,"606":2.6684532865,"607":2.7450890022,"608":2.8217247179,"609":2.8971336019,"610":2.9725424859,"611":3.0464269338,"612":3.1203113817,"613":3.1923798053,"614":3.2644482289,"615":3.3344162071,"616":3.4043841853,"617":3.4719755864,"618":3.5395669874,"619":3.6045150591,"620":3.6694631307,"621":3.7315115526,"622":3.7935599744,"623":3.8524638696,"624":3.9113677648,"625":3.9668946667,"626":4.0224215686,"627":4.0743523377,"628":4.1262831069,"629":4.1744127964,"630":4.2225424859,"631":4.2666811498,"632":4.3108198138,"633":4.3507932569,"634":4.3907667001,"635":4.4264171656,"636":4.4620676312,"637":4.4932544229,"638":4.5244412147,"639":4.5510412527,"640":4.5776412907,"641":4.5995495968,"642":4.6214579028,"643":4.6385880148,"644":4.6557181268,"645":4.6680024401,"646":4.6802867533,"647":4.6876767872,"648":4.6950668211,"649":4.6975334105,"650":4.7,"651":4.6975334105,"652":4.6950668211,"653":4.6876767872,"654":4.6802867533,"655":4.6680024401,"656":4.6557181268,"657":4.6385880148,"658":4.6214579028,"659":4.5995495968,"660":4.5776412907,"661":4.5510412527,"662":4.5244412147,"663":4.4932544229,"664":4.4620676312,"665":4.4264171656,"666":4.3907667001,"667":4.3507932569,"668":4.3108198138,"669":4.2666811498,"670":4.2225424859,"671":4.1744127964,"672":4.1262831069,"673":4.0743523377,"674":4.0224215686,"675":3.9668946667,"676":3.9113677648,"677":3.8524638696,"678":3.7935599744,"679":3.7315115526,"680":3.6694631307,"681":3.6045150591,"682":3.5395669874,"683":3.4719755864,"684":3.4043841853,"685":3.3344162071,"686":3.2644482289,"687":3.1923798053,"688":3.1203113817,"689":3.0464269338,"690":2.9725424859,"691":2.8971336019,"692":2.8217247179,"693":2.7450890022,"694":2.6684532865,"695":2.5908931852,"696":2.5133330839,"697":2.4351546914,"698":2.3569762988,"699":2.2784881494,"700":2.2,"701":2.1215118506,"702":2.0430237012,"703":1.9648453086,"704":1.8866669161,"705":1.8091068148,"706":1.7315467135,"707":1.6549109978,"708":1.5782752821,"709":1.5028663981,"710":1.4274575141,"711":1.3535730662,"712":1.2796886183,"713":1.2076201947,"714":1.1355517711,"715":1.0655837929,"716":0.9956158147,"717":0.9280244136,"718":0.8604330126,"719":0.7954849409,"720":0.7305368693,"721":0.6684884474,"722":0.6064400256,"723":0.5475361304,"724":0.4886322352,"725":0.4331053333,"726":0.3775784314,"727":0.3256476623,"728":0.2737168931,"729":0.2255872036,"730":0.1774575141,"731":0.1333188502,"732":0.0891801862,"733":0.0492067431,"734":0.0092332999,"735":-0.0264171656,"736":-0.0620676312,"737":-0.0932544229,"738":-0.1244412147,"739":-0.1510412527,"740":-0.1776412907,"741":-0.1995495968,"742":-0.2214579028,"743":-0.2385880148,"744":-0.2557181268,"745":-0.2680024401,"746":-0.2802867533,"747":-0.2876767872,"748":-0.2950668211,"749":-0.2975334105,"750":-0.3,"751":-0.2975334105,"752":-0.2950668211,"753":-0.2876767872,"754":-0.2802867533,"755":-0.2680024401,"756":-0.2557181268,"757":-0.2385880148,"758":-0.2214579028,"759":-0.1995495968,"760":-0.1776412907,"761":-0.1510412527,"762":-0.1244412147,"763":-0.0932544229,"764":-0.0620676312,"765":-0.0264171656,"766":0.0092332999,"767":0.0492067431,"768":0.0891801862,"769":0.1333188502,"770":0.1774575141,"771":0.2255872036,"772":0.2737168931,"773":0.3256476623,"774":0.3775784314,"775":0.4331053333,"776":0.4886322352,"777":0.5475361304,"778":0.6064400256,"779":0.6684884474,"780":0.7305368693,"781":0.7954849409,"782":0.8604330126,"783":0.9280244136,"784":0.9956158147,"785":1.0655837929,"786":1.1355517711,"787":1.2076201947,"788":1.2796886183,"789":1.3535730662,"790":1.4274575141,"791":1.5028663981,"792":1.5782752821,"793":1.6549109978,"794":1.7315467135,"795":1.8091068148,"796":1.8866669161,"797":1.9648453086,"798":2.0430237012,"799":2.1215118506,"800":2.2,"801":2.2784881494,"802":2.3569762988,"803":2.4351546914,"804":2.5133330839,"805":2.5908931852,"806":2.6684532865,"807":2.7450890022,"808":2.8217247179,"809":2.8971336019,"810":2.9725424859,"811":3.0464269338,"812":3.1203113817,"813":3.1923798053,"814":3.2644482289,"815":3.3344162071,"816":3.4043841853,"817":3.4719755864,"818":3.5395669874,"819":3.6045150591,"820":3.6694631307,"821":3.7315115526,"822":3.7935599744,"823":3.8524638696,"824":3.9113677648,"825":3.9668946667,"826":4.0224215686,"827":4.0743523377,"828":4.1262831069,"829":4.1744127964,"830":4.2225424859,"831":4.2666811498,"832":4.3108198138,"833":4.3507932569,"834":4.3907667001,"835":4.4264171656,"836":4.4620676312,"837":4.4932544229,"838":4.5244412147,"839":4.5510412527,"840":4.5776412907,"841":4.5995495968,"842":4.6214579028,"843":4.6385880148,"844":4.6557181268,"845":4.6680024401,"846":4.6802867533,"847":4.6876767872,"848":4.6950668211,"849":4.6975334105,"850":4.7,"851":4.6975334105,"852":4.6950668211,"853":4.6876767872,"854":4.6802867533,"855":4.6680024401,"856":4.6557181268,"857":4.6385880148,"858":4.6214579028,"859":4.5995495968,"860":4.5776412907,"861":4.5510412527,"862":4.5244412147,"863":4.4932544229,"864":4.4620676312,"865":4.4264171656,"866":4.3907667001,"867":4.3507932569,"868":4.3108198138,"869":4.2666811498,"870":4.2225424859,"871":4.1744127964,"872":4.1262831069,"873":4.0743523377,"874":4.0224215686,"875":3.9668946667,"876":3.9113677648,"877":3.8524638696,"878":3.7935599744,"879":3.7315115526,"880":3.6694631307,"881":3.6045150591,"882":3.5395669874,"883":3.4719755864,"884":3.4043841853,"885":3.3344162071,"886":3.2644482289,"887":3.1923798053,"888":3.1203113817,"889":3.0464269338,"890":2.9725424859,"891":2.8971336019,"892":2.8217247179,"893":2.7450890022,"894":2.6684532865,"895":2.5908931852,"896":2.5133330839,"897":2.4351546914,"898":2.3569762988,"899":2.2784881494,"900":2.2,"901":2.1215118506,"902":2.0430237012,"903":1.9648453086,"904":1.8866669161,"905":1.8091068148,"906":1.7315467135,"907":1.6549109978,"908":1.5782752821,"909":1.5028663981,"910":1.4274575141,"911":1.3535730662,"912":1.2796886183,"913":1.2076201947,"914":1.1355517711,"915":1.0655837929,"916":0.9956158147,"917":0.9280244136,"918":0.8604330126,"919":0.7954849409,"920":0.7305368693,"921":0.6684884474,"922":0.6064400256,"923":0.5475361304,"924":0.4886322352,"925":0.4331053333,"926":0.3775784314,"927":0.3256476623,"928":0.2737168931,"929":0.2255872036,"930":0.1774575141,"931":0.1333188502,"932":0.0891801862,"933":0.0492067431,"934":0.0092332999,"935":-0.0264171656,"936":-0.0620676312,"937":-0.0932544229,"938":-0.1244412147,"939":-0.1510412527,"940":-0.1776412907,"941":-0.1995495968,"942":-0.2214579028,"943":-0.2385880148,"944":-0.2557181268,"945":-0.2680024401,"946":-0.2802867533,"947":-0.2876767872,"948":-0.2950668211,"949":-0.2975334105,"950":-0.3,"951":-0.2975334105,"952":-0.2950668211,"953":-0.2876767872,"954":-0.2802867533,"955":-0.2680024401,"956":-0.2557181268,"957":-0.2385880148,"958":-0.2214579028,"959":-0.1995495968,"960":-0.1776412907,"961":-0.1510412527,"962":-0.1244412147,"963":-0.0932544229,"964":-0.0620676312,"965":-0.0264171656,"966":0.0092332999,"967":0.0492067431,"968":0.0891801862,"969":0.1333188502,"970":0.1774575141,"971":0.2255872036,"972":0.2737168931,"973":0.3256476623,"974":0.3775784314,"975":0.4331053333,"976":0.4886322352,"977":0.5475361304,"978":0.6064400256,"979":0.6684884474,"980":0.7305368693,"981":0.7954849409,"982":0.8604330126,"983":0.9280244136,"984":0.9956158147,"985":1.0655837929,"986":1.1355517711,"987":1.2076201947,"988":1.2796886183,"989":1.3535730662,"990":1.4274575141,"991":1.5028663981,"992":1.5782752821,"993":1.6549109978,"994":1.7315467135,"995":1.8091068148,"996":1.8866669161,"997":1.9648453086,"998":2.0430237012,"999":2.1215118506,"1000":2.2,"1001":2.2784881494,"1002":2.3569762988,"1003":2.4351546914,"1004":2.5133330839,"1005":2.5908931852,"1006":2.6684532865,"1007":2.7450890022,"1008":2.8217247179,"1009":2.8971336019,"1010":2.9725424859,"1011":3.0464269338,"1012":3.1203113817,"1013":3.1923798053,"1014":3.2644482289,"1015":3.3344162071,"1016":3.4043841853,"1017":3.4719755864,"1018":3.5395669874,"1019":3.6045150591,"1020":3.6694631307,"1021":3.7315115526,"1022":3.7935599744,"1023":3.8524638696,"1024":3.9113677648,"1025":3.9668946667,"1026":4.0224215686,"1027":4.0743523377,"1028":4.1262831069,"1029":4.1744127964,"1030":4.2225424859,"1031":4.2666811498,"1032":4.3108198138,"1033":4.3507932569,"1034":4.3907667001,"1035":4.4264171656,"1036":4.4620676312,"1037":4.4932544229,"1038":4.5244412147,"1039":4.5510412527,"1040":4.5776412907,"1041":4.5995495968,"1042":4.6214579028,"1043":4.6385880148,"1044":4.6557181268,"1045":4.6680024401,"1046":4.6802867533,"1047":4.6876767872,"1048":4.6950668211,"1049":4.6975334105,"1050":4.7,"1051":4.6975334105,"1052":4.6950668211,"1053":4.6876767872,"1054":4.6802867533,"1055":4.6680024401,"1056":4.6557181268,"1057":4.6385880148,"1058":4.6214579028,"1059":4.5995495968,"1060":4.5776412907,"1061":4.5510412527,"1062":4.5244412147,"1063":4.4932544229,"1064":4.4620676312,"1065":4.4264171656,"1066":4.3907667001,"1067":4.3507932569,"1068":4.3108198138,"1069":4.2666811498,"1070":4.2225424859,"1071":4.1744127964,"1072":4.1262831069,"1073":4.0743523377,"1074":4.0224215686,"1075":3.9668946667,"1076":3.9113677648,"1077":3.8524638696,"1078":3.7935599744,"1079":3.7315115526,"1080":3.6694631307,"1081":3.6045150591,"1082":3.5395669874,"1083":3.4719755864,"1084":3.4043841853,"1085":3.3344162071,"1086":3.2644482289,"1087":3.1923798053,"1088":3.1203113817,"1089":3.0464269338,"1090":2.9725424859,"1091":2.8971336019,"1092":2.8217247179,"1093":2.7450890022,"1094":2.6684532865,"1095":2.5908931852,"1096":2.5133330839,"1097":2.4351546914,"1098":2.3569762988,"1099":2.2784881494,"1100":2.2,"1101":2.1215118506,"1102":2.0430237012,"1103":1.9648453086,"1104":1.8866669161,"1105":1.8091068148,"1106":1.7315467135,"1107":1.6549109978,"1108":1.5782752821,"1109":1.5028663981,"1110":1.4274575141,"1111":1.3535730662,"1112":1.2796886183,"1113":1.2076201947,"1114":1.1355517711,"1115":1.0655837929,"1116":0.9956158147,"1117":0.9280244136,"1118":0.8604330126,"1119":0.7954849409,"1120":0.7305368693,"1121":0.6684884474,"1122":0.6064400256,"1123":0.5475361304,"1124":0.4886322352,"1125":0.4331053333,"1126":0.3775784314,"1127":0.3256476623,"1128":0.2737168931,"1129":0.2255872036,"1130":0.1774575141,"1131":0.1333188502,"1132":0.0891801862,"1133":0.0492067431,"1134":0.0092332999,"1135":-0.0264171656,"1136":-0.0620676312,"1137":-0.0932544229,"1138":-0.1244412147,"1139":-0.1510412527,"1140":-0.1776412907,"1141":-0.1995495968,"1142":-0.2214579028,"1143":-0.2385880148,"1144":-0.2557181268,"1145":-0.2680024401,"1146":-0.2802867533,"1147":-0.2876767872,"1148":-0.2950668211,"1149":-0.2975334105,"1150":-0.3,"1151":-0.2975334105,"1152":-0.2950668211,"1153":-0.2876767872,"1154":-0.2802867533,"1155":-0.2680024401,"1156":-0.2557181268,"1157":-0.2385880148,"1158":-0.2214579028,"1159":-0.1995495968,"1160":-0.1776412907,"1161":-0.1510412527,"1162":-0.1244412147,"1163":-0.0932544229,"1164":-0.0620676312,"1165":-0.0264171656,"1166":0.0092332999,"1167":0.0492067431,"1168":0.0891801862,"1169":0.1333188502,"1170":0.1774575141,"1171":0.2255872036,"1172":0.2737168931,"1173":0.3256476623,"1174":0.3775784314,"1175":0.4331053333,"1176":0.4886322352,"1177":0.5475361304,"1178":0.6064400256,"1179":0.6684884474,"1180":0.7305368693,"1181":0.7954849409,"1182":0.8604330126,"1183":0.9280244136,"1184":0.9956158147,"1185":1.0655837929,"1186":1.1355517711,"1187":1.2076201947,"1188":1.2796886183,"1189":1.3535730662,"1190":1.4274575141,"1191":1.5028663981,"1192":1.5782752821,"1193":1.6549109978,"1194":1.7315467135,"1195":1.8091068148,"1196":1.8866669161,"1197":1.9648453086,"1198":2.0430237012,"1199":2.1215118506,"1200":2.2,"1201":2.2784881494,"1202":2.3569762988,"1203":2.4351546914,"1204":2.5133330839,"1205":2.5908931852,"1206":2.6684532865,"1207":2.7450890022,"1208":2.8217247179,"1209":2.8971336019,"1210":2.9725424859,"1211":3.0464269338,"1212":3.1203113817,"1213":3.1923798053,"1214":3.2644482289,"1215":3.3344162071,"1216":3.4043841853,"1217":3.4719755864,"1218":3.5395669874,"1219":3.6045150591,"1220":3.6694631307,"1221":3.7315115526,"1222":3.7935599744,"1223":3.8524638696,"1224":3.9113677648,"1225":3.9668946667,"1226":4.0224215686,"1227":4.0743523377,"1228":4.1262831069,"1229":4.1744127964,"1230":4.2225424859,"1231":4.2666811498,"1232":4.3108198138,"1233":4.3507932569,"1234":4.3907667001,"1235":4.4264171656,"1236":4.4620676312,"1237":4.4932544229,"1238":4.5244412147,"1239":4.5510412527,"1240":4.5776412907,"1241":4.5995495968,"1242":4.6214579028,"1243":4.6385880148,"1244":4.6557181268,"1245":4.6680024401,"1246":4.6802867533,"1247":4.6876767872,"1248":4.6950668211,"1249":4.6975334105,"1250":4.7,"1251":4.6975334105,"1252":4.6950668211,"1253":4.6876767872,"1254":4.6802867533,"1255":4.6680024401,"1256":4.6557181268,"1257":4.6385880148,"1258":4.6214579028,"1259":4.5995495968,"1260":4.5776412907,"1261":4.5510412527,"1262":4.5244412147,"1263":4.4932544229,"1264":4.4620676312,"1265":4.4264171656,"1266":4.3907667001,"1267":4.3507932569,"1268":4.3108198138,"1269":4.2666811498,"1270":4.2225424859,"1271":4.1744127964,"1272":4.1262831069,"1273":4.0743523377,"1274":4.0224215686,"1275":3.9668946667,"1276":3.9113677648,"1277":3.8524638696,"1278":3.7935599744,"1279":3.7315115526,"1280":3.6694631307,"1281":3.6045150591,"1282":3.5395669874,"1283":3.4719755864,"1284":3.4043841853,"1285":3.3344162071,"1286":3.2644482289,"1287":3.1923798053,"1288":3.1203113817,"1289":3.0464269338,"1290":2.9725424859,"1291":2.8971336019,"1292":2.8217247179,"1293":2.7450890022,"1294":2.6684532865,"1295":2.5908931852,"1296":2.5133330839,"1297":2.4351546914,"1298":2.3569762988,"1299":2.2784881494,"1300":2.2,"1301":2.1215118506,"1302":2.0430237012,"1303":1.9648453086,"1304":1.8866669161,"1305":1.8091068148,"1306":1.7315467135,"1307":1.6549109978,"1308":1.5782752821,"1309":1.5028663981,"1310":1.4274575141,"1311":1.3535730662,"1312":1.2796886183,"1313":1.2076201947,"1314":1.1355517711,"1315":1.0655837929,"1316":0.9956158147,"1317":0.9280244136,"1318":0.8604330126,"1319":0.7954849409,"1320":0.7305368693,"1321":0.6684884474,"1322":0.6064400256,"1323":0.5475361304,"1324":0.4886322352,"1325":0.4331053333,"1326":0.3775784314,"1327":0.3256476623,"1328":0.2737168931,"1329":0.2255872036,"1330":0.1774575141,"1331":0.1333188502,"1332":0.0891801862,"1333":0.0492067431,"1334":0.0092332999,"1335":-0.0264171656,"1336":-0.0620676312,"1337":-0.0932544229,"1338":-0.1244412147,"1339":-0.1510412527,"1340":-0.1776412907,"1341":-0.1995495968,"1342":-0.2214579028,"1343":-0.2385880148,"1344":-0.2557181268,"1345":-0.2680024401,"1346":-0.2802867533,"1347":-0.2876767872,"1348":-0.2950668211,"1349":-0.2975334105,"1350":-0.3,"1351":-0.2975334105,"1352":-0.2950668211,"1353":-0.2876767872,"1354":-0.2802867533,"1355":-0.2680024401,"1356":-0.2557181268,"1357":-0.2385880148,"1358":-0.2214579028,"1359":-0.1995495968,"1360":-0.1776412907,"1361":-0.1510412527,"1362":-0.1244412147,"1363":-0.0932544229,"1364":-0.0620676312,"1365":-0.0264171656,"1366":0.0092332999,"1367":0.0492067431,"1368":0.0891801862,"1369":0.1333188502,"1370":0.1774575141,"1371":0.2255872036,"1372":0.2737168931,"1373":0.3256476623,"1374":0.3775784314,"1375":0.4331053333,"1376":0.4886322352,"1377":0.5475361304,"1378":0.6064400256,"1379":0.6684884474,"1380":0.7305368693,"1381":0.7954849409,"1382":0.8604330126,"1383":0.9280244136,"1384":0.9956158147,"1385":1.0655837929,"1386":1.1355517711,"1387":1.2076201947,"1388":1.2796886183,"1389":1.3535730662,"1390":1.4274575141,"1391":1.5028663981,"1392":1.5782752821,"1393":1.6549109978,"1394":1.7315467135,"1395":1.8091068148,"1396":1.8866669161,"1397":1.9648453086,"1398":2.0430237012,"1399":2.1215118506,"1400":2.2,"1401":2.2784881494,"1402":2.3569762988,"1403":2.4351546914,"1404":2.5133330839,"1405":2.5908931852,"1406":2.6684532865,"1407":2.7450890022,"1408":2.8217247179,"1409":2.8971336019,"1410":2.9725424859,"1411":3.0464269338,"1412":3.1203113817,"1413":3.1923798053,"1414":3.2644482289,"1415":3.3344162071,"1416":3.4043841853,"1417":3.4719755864,"1418":3.5395669874,"1419":3.6045150591,"1420":3.6694631307,"1421":3.7315115526,"1422":3.7935599744,"1423":3.8524638696,"1424":3.9113677648,"1425":3.9668946667,"1426":4.0224215686,"1427":4.0743523377,"1428":4.1262831069,"1429":4.1744127964,"1430":4.2225424859,"1431":4.2666811498,"1432":4.3108198138,"1433":4.3507932569,"1434":4.3907667001,"1435":4.4264171656,"1436":4.4620676312,"1437":4.4932544229,"1438":4.5244412147,"1439":4.5510412527,"1440":4.5776412907,"1441":4.5995495968,"1442":4.6214579028,"1443":4.6385880148,"1444":4.6557181268,"1445":4.6680024401,"1446":4.6802867533,"1447":4.6876767872,"1448":4.6950668211,"1449":4.6975334105,"1450":4.7,"1451":4.6975334105,"1452":4.6950668211,"1453":4.6876767872,"1454":4.6802867533,"1455":4.6680024401,"1456":4.6557181268,"1457":4.6385880148,"1458":4.6214579028,"1459":4.5995495968,"1460":4.5776412907,"1461":4.5510412527,"1462":4.5244412147,"1463":4.4932544229,"1464":4.4620676312,"1465":4.4264171656,"1466":4.3907667001,"1467":4.3507932569,"1468":4.3108198138,"1469":4.2666811498,"1470":4.2225424859,"1471":4.1744127964,"1472":4.1262831069,"1473":4.0743523377,"1474":4.0224215686,"1475":3.9668946667,"1476":3.9113677648,"1477":3.8524638696,"1478":3.7935599744,"1479":3.7315115526,"1480":3.6694631307,"1481":3.6045150591,"1482":3.5395669874,"1483":3.4719755864,"1484":3.4043841853,"1485":3.3344162071,"1486":3.2644482289,"1487":3.1923798053,"1488":3.1203113817,"1489":3.0464269338,"1490":2.9725424859,"1491":2.8971336019,"1492":2.8217247179,"1493":2.7450890022,"1494":2.6684532865,"1495":2.5908931852,"1496":2.5133330839,"1497":2.4351546914,"1498":2.3569762988,"1499":2.2784881494,"1500":2.2,"1501":2.1215118506,"1502":2.0430237012,"1503":1.9648453086,"1504":1.8866669161,"1505":1.8091068148,"1506":1.7315467135,"1507":1.6549109978,"1508":1.5782752821,"1509":1.5028663981,"1510":1.4274575141,"1511":1.3535730662,"1512":1.2796886183,"1513":1.2076201947,"1514":1.1355517711,"1515":1.0655837929,"1516":0.9956158147,"1517":0.9280244136,"1518":0.8604330126,"1519":0.7954849409,"1520":0.7305368693,"1521":0.6684884474,"1522":0.6064400256,"1523":0.5475361304,"1524":0.4886322352,"1525":0.4331053333,"1526":0.3775784314,"1527":0.3256476623,"1528":0.2737168931,"1529":0.2255872036,"1530":0.1774575141,"1531":0.1333188502,"1532":0.0891801862,"1533":0.0492067431,"1534":0.0092332999,"1535":-0.0264171656,"1536":-0.0620676312,"1537":-0.0932544229,"1538":-0.1244412147,"1539":-0.1510412527,"1540":-0.1776412907,"1541":-0.1995495968,"1542":-0.2214579028,"1543":-0.2385880148,"1544":-0.2557181268,"1545":-0.2680024401,"1546":-0.2802867533,"1547":-0.2876767872,"1548":-0.2950668211,"1549":-0.2975334105,"1550":-0.3,"1551":-0.2975334105,"1552":-0.2950668211,"1553":-0.2876767872,"1554":-0.2802867533,"1555":-0.2680024401,"1556":-0.2557181268,"1557":-0.2385880148,"1558":-0.2214579028,"1559":-0.1995495968,"1560":-0.1776412907,"1561":-0.1510412527,"1562":-0.1244412147,"1563":-0.0932544229,"1564":-0.0620676312,"1565":-0.0264171656,"1566":0.0092332999,"1567":0.0492067431,"1568":0.0891801862,"1569":0.1333188502,"1570":0.1774575141,"1571":0.2255872036,"1572":0.2737168931,"1573":0.3256476623,"1574":0.3775784314,"1575":0.4331053333,"1576":0.4886322352,"1577":0.5475361304,"1578":0.6064400256,"1579":0.6684884474,"1580":0.7305368693,"1581":0.7954849409,"1582":0.8604330126,"1583":0.9280244136,"1584":0.9956158147,"1585":1.0655837929,"1586":1.1355517711,"1587":1.2076201947,"1588":1.2796886183,"1589":1.3535730662,"1590":1.4274575141,"1591":1.5028663981,"1592":1.5782752821,"1593":1.6549109978,"1594":1.7315467135,"1595":1.8091068148,"1596":1.8866669161,"1597":1.9648453086,"1598":2.0430237012,"1599":2.1215118506,"1600":2.2,"1601":2.2784881494,"1602":2.3569762988,"1603":2.4351546914,"1604":2.5133330839,"1605":2.5908931852,"1606":2.6684532865,"1607":2.7450890022,"1608":2.8217247179,"1609":2.8971336019,"1610":2.9725424859,"1611":3.0464269338,"1612":3.1203113817,"1613":3.1923798053,"1614":3.2644482289,"1615":3.3344162071,"1616":3.4043841853,"1617":3.4719755864,"1618":3.5395669874,"1619":3.6045150591,"1620":3.6694631307,"1621":3.7315115526,"1622":3.7935599744,"1623":3.8524638696,"1624":3.9113677648,"1625":3.9668946667,"1626":4.0224215686,"1627":4.0743523377,"1628":4.1262831069,"1629":4.1744127964,"1630":4.2225424859,"1631":4.2666811498,"1632":4.3108198138,"1633":4.3507932569,"1634":4.3907667001,"1635":4.4264171656,"1636":4.4620676312,"1637":4.4932544229,"1638":4.5244412147,"1639":4.5510412527,"1640":4.5776412907,"1641":4.5995495968,"1642":4.6214579028,"1643":4.6385880148,"1644":4.6557181268,"1645":4.6680024401,"1646":4.6802867533,"1647":4.6876767872,"1648":4.6950668211,"1649":4.6975334105,"1650":4.7,"1651":4.6975334105,"1652":4.6950668211,"1653":4.6876767872,"1654":4.6802867533,"1655":4.6680024401,"1656":4.6557181268,"1657":4.6385880148,"1658":4.6214579028,"1659":4.5995495968,"1660":4.5776412907,"1661":4.5510412527,"1662":4.5244412147,"1663":4.4932544229,"1664":4.4620676312,"1665":4.4264171656,"1666":4.3907667001,"1667":4.3507932569,"1668":4.3108198138,"1669":4.2666811498,"1670":4.2225424859,"1671":4.1744127964,"1672":4.1262831069,"1673":4.0743523377,"1674":4.0224215686,"1675":3.9668946667,"1676":3.9113677648,"1677":3.8524638696,"1678":3.7935599744,"1679":3.7315115526,"1680":3.6694631307,"1681":3.6045150591,"1682":3.5395669874,"1683":3.4719755864,"1684":3.4043841853,"1685":3.3344162071,"1686":3.2644482289,"1687":3.1923798053,"1688":3.1203113817,"1689":3.0464269338,"1690":2.9725424859,"1691":2.8971336019,"1692":2.8217247179,"1693":2.7450890022,"1694":2.6684532865,"1695":2.5908931852,"1696":2.5133330839,"1697":2.4351546914,"1698":2.3569762988,"1699":2.2784881494,"1700":2.2,"1701":2.1215118506,"1702":2.0430237012,"1703":1.9648453086,"1704":1.8866669161,"1705":1.8091068148,"1706":1.7315467135,"1707":1.6549109978,"1708":1.5782752821,"1709":1.5028663981,"1710":1.4274575141,"1711":1.3535730662,"1712":1.2796886183,"1713":1.2076201947,"1714":1.1355517711,"1715":1.0655837929,"1716":0.9956158147,"1717":0.9280244136,"1718":0.8604330126,"1719":0.7954849409,"1720":0.7305368693,"1721":0.6684884474,"1722":0.6064400256,"1723":0.5475361304,"1724":0.4886322352,"1725":0.4331053333,"1726":0.3775784314,"1727":0.3256476623,"1728":0.2737168931,"1729":0.2255872036,"1730":0.1774575141,"1731":0.1333188502,"1732":0.0891801862,"1733":0.0492067431,"1734":0.0092332999,"1735":-0.0264171656,"1736":-0.0620676312,"1737":-0.0932544229,"1738":-0.1244412147,"1739":-0.1510412527,"1740":-0.1776412907,"1741":-0.1995495968,"1742":-0.2214579028,"1743":-0.2385880148,"1744":-0.2557181268,"1745":-0.2680024401,"1746":-0.2802867533,"1747":-0.2876767872,"1748":-0.2950668211,"1749":-0.2975334105,"1750":-0.3,"1751":-0.2975334105,"1752":-0.2950668211,"1753":-0.2876767872,"1754":-0.2802867533,"1755":-0.2680024401,"1756":-0.2557181268,"1757":-0.2385880148,"1758":-0.2214579028,"1759":-0.1995495968,"1760":-0.1776412907,"1761":-0.1510412527,"1762":-0.1244412147,"1763":-0.0932544229,"1764":-0.0620676312,"1765":-0.0264171656,"1766":0.0092332999,"1767":0.0492067431,"1768":0.0891801862,"1769":0.1333188502,"1770":0.1774575141,"1771":0.2255872036,"1772":0.2737168931,"1773":0.3256476623,"1774":0.3775784314,"1775":0.4331053333,"1776":0.4886322352,"1777":0.5475361304,"1778":0.6064400256,"1779":0.6684884474,"1780":0.7305368693,"1781":0.7954849409,"1782":0.8604330126,"1783":0.9280244136,"1784":0.9956158147,"1785":1.0655837929,"1786":1.1355517711,"1787":1.2076201947,"1788":1.2796886183,"1789":1.3535730662,"1790":1.4274575141,"1791":1.5028663981,"1792":1.5782752821,"1793":1.6549109978,"1794":1.7315467135,"1795":1.8091068148,"1796":1.8866669161,"1797":1.9648453086,"1798":2.0430237012,"1799":2.1215118506,"1800":2.2,"1801":2.2784881494,"1802":2.3569762988,"1803":2.4351546914,"1804":2.5133330839,"1805":2.5908931852,"1806":2.6684532865,"1807":2.7450890022,"1808":2.8217247179,"1809":2.8971336019,"1810":2.9725424859,"1811":3.0464269338,"1812":3.1203113817,"1813":3.1923798053,"1814":3.2644482289,"1815":3.3344162071,"1816":3.4043841853,"1817":3.4719755864,"1818":3.5395669874,"1819":3.6045150591,"1820":3.6694631307,"1821":3.7315115526,"1822":3.7935599744,"1823":3.8524638696,"1824":3.9113677648,"1825":3.9668946667,"1826":4.0224215686,"1827":4.0743523377,"1828":4.1262831069,"1829":4.1744127964,"1830":4.2225424859,"1831":4.2666811498,"1832":4.3108198138,"1833":4.3507932569,"1834":4.3907667001,"1835":4.4264171656,"1836":4.4620676312,"1837":4.4932544229,"1838":4.5244412147,"1839":4.5510412527,"1840":4.5776412907,"1841":4.5995495968,"1842":4.6214579028,"1843":4.6385880148,"1844":4.6557181268,"1845":4.6680024401,"1846":4.6802867533,"1847":4.6876767872,"1848":4.6950668211,"1849":4.6975334105,"1850":4.7,"1851":4.6975334105,"1852":4.6950668211,"1853":4.6876767872,"1854":4.6802867533,"1855":4.6680024401,"1856":4.6557181268,"1857":4.6385880148,"1858":4.6214579028,"1859":4.5995495968,"1860":4.5776412907,"1861":4.5510412527,"1862":4.5244412147,"1863":4.4932544229,"1864":4.4620676312,"1865":4.4264171656,"1866":4.3907667001,"1867":4.3507932569,"1868":4.3108198138,"1869":4.2666811498,"1870":4.2225424859,"1871":4.1744127964,"1872":4.1262831069,"1873":4.0743523377,"1874":4.0224215686,"1875":3.9668946667,"1876":3.9113677648,"1877":3.8524638696,"1878":3.7935599744,"1879":3.7315115526,"1880":3.6694631307,"1881":3.6045150591,"1882":3.5395669874,"1883":3.4719755864,"1884":3.4043841853,"1885":3.3344162071,"1886":3.2644482289,"1887":3.1923798053,"1888":3.1203113817,"1889":3.0464269338,"1890":2.9725424859,"1891":2.8971336019,"1892":2.8217247179,"1893":2.7450890022,"1894":2.6684532865,"1895":2.5908931852,"1896":2.5133330839,"1897":2.4351546914,"1898":2.3569762988,"1899":2.2784881494,"1900":2.2,"1901":2.1215118506,"1902":2.0430237012,"1903":1.9648453086,"1904":1.8866669161,"1905":1.8091068148,"1906":1.7315467135,"1907":1.6549109978,"1908":1.5782752821,"1909":1.5028663981,"1910":1.4274575141,"1911":1.3535730662,"1912":1.2796886183,"1913":1.2076201947,"1914":1.1355517711,"1915":1.0655837929,"1916":0.9956158147,"1917":0.9280244136,"1918":0.8604330126,"1919":0.7954849409,"1920":0.7305368693,"1921":0.6684884474,"1922":0.6064400256,"1923":0.5475361304,"1924":0.4886322352,"1925":0.4331053333,"1926":0.3775784314,"1927":0.3256476623,"1928":0.2737168931,"1929":0.2255872036,"1930":0.1774575141,"1931":0.1333188502,"1932":0.0891801862,"1933":0.0492067431,"1934":0.0092332999,"1935":-0.0264171656,"1936":-0.0620676312,"1937":-0.0932544229,"1938":-0.1244412147,"1939":-0.1510412527,"1940":-0.1776412907,"1941":-0.1995495968,"1942":-0.2214579028,"1943":-0.2385880148,"1944":-0.2557181268,"1945":-0.2680024401,"1946":-0.2802867533,"1947":-0.2876767872,"1948":-0.2950668211,"1949":-0.2975334105,"1950":-0.3,"1951":-0.2975334105,"1952":-0.2950668211,"1953":-0.2876767872,"1954":-0.2802867533,"1955":-0.2680024401,"1956":-0.2557181268,"1957":-0.2385880148,"1958":-0.2214579028,"1959":-0.1995495968,"1960":-0.1776412907,"1961":-0.1510412527,"1962":-0.1244412147,"1963":-0.0932544229,"1964":-0.0620676312,"1965":-0.0264171656,"1966":0.0092332999,"1967":0.0492067431,"1968":0.0891801862,"1969":0.1333188502,"1970":0.1774575141,"1971":0.2255872036,"1972":0.2737168931,"1973":0.3256476623,"1974":0.3775784314,"1975":0.4331053333,"1976":0.4886322352,"1977":0.5475361304,"1978":0.6064400256,"1979":0.6684884474,"1980":0.7305368693,"1981":0.7954849409,"1982":0.8604330126,"1983":0.9280244136,"1984":0.9956158147,"1985":1.0655837929,"1986":1.1355517711,"1987":1.2076201947,"1988":1.2796886183,"1989":1.3535730662,"1990":1.4274575141,"1991":1.5028663981,"1992":1.5782752821,"1993":1.6549109978,"1994":1.7315467135,"1995":1.8091068148,"1996":1.8866669161,"1997":1.9648453086,"1998":2.0430237012,"1999":2.1215118506,"2000":2.2,"2001":2.2784881494,"2002":2.3569762988,"2003":2.4351546914,"2004":2.5133330839,"2005":2.5908931852,"2006":2.6684532865,"2007":2.7450890022,"2008":2.8217247179,"2009":2.8971336019,"2010":2.9725424859,"2011":3.0464269338,"2012":3.1203113817,"2013":3.1923798053,"2014":3.2644482289,"2015":3.3344162071,"2016":3.4043841853,"2017":3.4719755864,"2018":3.5395669874,"2019":3.6045150591,"2020":3.6694631307,"2021":3.7315115526,"2022":3.7935599744,"2023":3.8524638696,"2024":3.9113677648,"2025":3.9668946667,"2026":4.0224215686,"2027":4.0743523377,"2028":4.1262831069,"2029":4.1744127964,"2030":4.2225424859,"2031":4.2666811498,"2032":4.3108198138,"2033":4.3507932569,"2034":4.3907667001,"2035":4.4264171656,"2036":4.4620676312,"2037":4.4932544229,"2038":4.5244412147,"2039":4.5510412527,"2040":4.5776412907,"2041":4.5995495968,"2042":4.6214579028,"2043":4.6385880148,"2044":4.6557181268,"2045":4.6680024401,"2046":4.6802867533,"2047":4.6876767872,"2048":4.6950668211,"2049":4.6975334105,"2050":4.7,"2051":4.6975334105,"2052":4.6950668211,"2053":4.6876767872,"2054":4.6802867533,"2055":4.6680024401,"2056":4.6557181268,"2057":4.6385880148,"2058":4.6214579028,"2059":4.5995495968,"2060":4.5776412907,"2061":4.5510412527,"2062":4.5244412147,"2063":4.4932544229,"2064":4.4620676312,"2065":4.4264171656,"2066":4.3907667001,"2067":4.3507932569,"2068":4.3108198138,"2069":4.2666811498,"2070":4.2225424859,"2071":4.1744127964,"2072":4.1262831069,"2073":4.0743523377,"2074":4.0224215686,"2075":3.9668946667,"2076":3.9113677648,"2077":3.8524638696,"2078":3.7935599744,"2079":3.7315115526,"2080":3.6694631307,"2081":3.6045150591,"2082":3.5395669874,"2083":3.4719755864,"2084":3.4043841853,"2085":3.3344162071,"2086":3.2644482289,"2087":3.1923798053,"2088":3.1203113817,"2089":3.0464269338,"2090":2.9725424859,"2091":2.8971336019,"2092":2.8217247179,"2093":2.7450890022,"2094":2.6684532865,"2095":2.5908931852,"2096":2.5133330839,"2097":2.4351546914,"2098":2.3569762988,"2099":2.2784881494,"2100":2.2,"2101":2.1215118506,"2102":2.0430237012,"2103":1.9648453086,"2104":1.8866669161,"2105":1.8091068148,"2106":1.7315467135,"2107":1.6549109978,"2108":1.5782752821,"2109":1.5028663981,"2110":1.4274575141,"2111":1.3535730662,"2112":1.2796886183,"2113":1.2076201947,"2114":1.1355517711,"2115":1.0655837929,"2116":0.9956158147,"2117":0.9280244136,"2118":0.8604330126,"2119":0.7954849409,"2120":0.7305368693,"2121":0.6684884474,"2122":0.6064400256,"2123":0.5475361304,"2124":0.4886322352,"2125":0.4331053333,"2126":0.3775784314,"2127":0.3256476623,"2128":0.2737168931,"2129":0.2255872036,"2130":0.1774575141,"2131":0.1333188502,"2132":0.0891801862,"2133":0.0492067431,"2134":0.0092332999,"2135":-0.0264171656,"2136":-0.0620676312,"2137":-0.0932544229,"2138":-0.1244412147,"2139":-0.1510412527,"2140":-0.1776412907,"2141":-0.1995495968,"2142":-0.2214579028,"2143":-0.2385880148,"2144":-0.2557181268,"2145":-0.2680024401,"2146":-0.2802867533,"2147":-0.2876767872,"2148":-0.2950668211,"2149":-0.2975334105,"2150":-0.3,"2151":-0.2975334105,"2152":-0.2950668211,"2153":-0.2876767872,"2154":-0.2802867533,"2155":-0.2680024401,"2156":-0.2557181268,"2157":-0.2385880148,"2158":-0.2214579028,"2159":-0.1995495968,"2160":-0.1776412907,"2161":-0.1510412527,"2162":-0.1244412147,"2163":-0.0932544229,"2164":-0.0620676312,"2165":-0.0264171656,"2166":0.0092332999,"2167":0.0492067431,"2168":0.0891801862,"2169":0.1333188502,"2170":0.1774575141,"2171":0.2255872036,"2172":0.2737168931,"2173":0.3256476623,"2174":0.3775784314,"2175":0.4331053333,"2176":0.4886322352,"2177":0.5475361304,"2178":0.6064400256,"2179":0.6684884474,"2180":0.7305368693,"2181":0.7954849409,"2182":0.8604330126,"2183":0.9280244136,"2184":0.9956158147,"2185":1.0655837929,"2186":1.1355517711,"2187":1.2076201947,"2188":1.2796886183,"2189":1.3535730662,"2190":1.4274575141,"2191":1.5028663981,"2192":1.5782752821,"2193":1.6549109978,"2194":1.7315467135,"2195":1.8091068148,"2196":1.8866669161,"2197":1.9648453086,"2198":2.0430237012,"2199":2.1215118506,"2200":2.2,"2201":2.2784881494,"2202":2.3569762988,"2203":2.4351546914,"2204":2.5133330839,"2205":2.5908931852,"2206":2.6684532865,"2207":2.7450890022,"2208":2.8217247179,"2209":2.8971336019,"2210":2.9725424859,"2211":3.0464269338,"2212":3.1203113817,"2213":3.1923798053,"2214":3.2644482289,"2215":3.3344162071,"2216":3.4043841853,"2217":3.4719755864,"2218":3.5395669874,"2219":3.6045150591,"2220":3.6694631307,"2221":3.7315115526,"2222":3.7935599744,"2223":3.8524638696,"2224":3.9113677648,"2225":3.9668946667,"2226":4.0224215686,"2227":4.0743523377,"2228":4.1262831069,"2229":4.1744127964,"2230":4.2225424859,"2231":4.2666811498,"2232":4.3108198138,"2233":4.3507932569,"2234":4.3907667001,"2235":4.4264171656,"2236":4.4620676312,"2237":4.4932544229,"2238":4.5244412147,"2239":4.5510412527,"2240":4.5776412907,"2241":4.5995495968,"2242":4.6214579028,"2243":4.6385880148,"2244":4.6557181268,"2245":4.6680024401,"2246":4.6802867533,"2247":4.6876767872,"2248":4.6950668211,"2249":4.6975334105,"2250":4.7,"2251":4.6975334105,"2252":4.6950668211,"2253":4.6876767872,"2254":4.6802867533,"2255":4.6680024401,"2256":4.6557181268,"2257":4.6385880148,"2258":4.6214579028,"2259":4.5995495968,"2260":4.5776412907,"2261":4.5510412527,"2262":4.5244412147,"2263":4.4932544229,"2264":4.4620676312,"2265":4.4264171656,"2266":4.3907667001,"2267":4.3507932569,"2268":4.3108198138,"2269":4.2666811498,"2270":4.2225424859,"2271":4.1744127964,"2272":4.1262831069,"2273":4.0743523377,"2274":4.0224215686,"2275":3.9668946667,"2276":3.9113677648,"2277":3.8524638696,"2278":3.7935599744,"2279":3.7315115526,"2280":3.6694631307,"2281":3.6045150591,"2282":3.5395669874,"2283":3.4719755864,"2284":3.4043841853,"2285":3.3344162071,"2286":3.2644482289,"2287":3.1923798053,"2288":3.1203113817,"2289":3.0464269338,"2290":2.9725424859,"2291":2.8971336019,"2292":2.8217247179,"2293":2.7450890022,"2294":2.6684532865,"2295":2.5908931852,"2296":2.5133330839,"2297":2.4351546914,"2298":2.3569762988,"2299":2.2784881494,"2300":2.2,"2301":2.1215118506,"2302":2.0430237012,"2303":1.9648453086,"2304":1.8866669161,"2305":1.8091068148,"2306":1.7315467135,"2307":1.6549109978,"2308":1.5782752821,"2309":1.5028663981,"2310":1.4274575141,"2311":1.3535730662,"2312":1.2796886183,"2313":1.2076201947,"2314":1.1355517711,"2315":1.0655837929,"2316":0.9956158147,"2317":0.9280244136,"2318":0.8604330126,"2319":0.7954849409,"2320":0.7305368693,"2321":0.6684884474,"2322":0.6064400256,"2323":0.5475361304,"2324":0.4886322352,"2325":0.4331053333,"2326":0.3775784314,"2327":0.3256476623,"2328":0.2737168931,"2329":0.2255872036,"2330":0.1774575141,"2331":0.1333188502,"2332":0.0891801862,"2333":0.0492067431,"2334":0.0092332999,"2335":-0.0264171656,"2336":-0.0620676312,"2337":-0.0932544229,"2338":-0.1244412147,"2339":-0.1510412527,"2340":-0.1776412907,"2341":-0.1995495968,"2342":-0.2214579028,"2343":-0.2385880148,"2344":-0.2557181268,"2345":-0.2680024401,"2346":-0.2802867533,"2347":-0.2876767872,"2348":-0.2950668211,"2349":-0.2975334105,"2350":-0.3,"2351":-0.2975334105,"2352":-0.2950668211,"2353":-0.2876767872,"2354":-0.2802867533,"2355":-0.2680024401,"2356":-0.2557181268,"2357":-0.2385880148,"2358":-0.2214579028,"2359":-0.1995495968,"2360":-0.1776412907,"2361":-0.1510412527,"2362":-0.1244412147,"2363":-0.0932544229,"2364":-0.0620676312,"2365":-0.0264171656,"2366":0.0092332999,"2367":0.0492067431,"2368":0.0891801862,"2369":0.1333188502,"2370":0.1774575141,"2371":0.2255872036,"2372":0.2737168931,"2373":0.3256476623,"2374":0.3775784314,"2375":0.4331053333,"2376":0.4886322352,"2377":0.5475361304,"2378":0.6064400256,"2379":0.6684884474,"2380":0.7305368693,"2381":0.7954849409,"2382":0.8604330126,"2383":0.9280244136,"2384":0.9956158147,"2385":1.0655837929,"2386":1.1355517711,"2387":1.2076201947,"2388":1.2796886183,"2389":1.3535730662,"2390":1.4274575141,"2391":1.5028663981,"2392":1.5782752821,"2393":1.6549109978,"2394":1.7315467135,"2395":1.8091068148,"2396":1.8866669161,"2397":1.9648453086,"2398":2.0430237012,"2399":2.1215118506,"2400":2.2,"2401":2.2784881494,"2402":2.3569762988,"2403":2.4351546914,"2404":2.5133330839,"2405":2.5908931852,"2406":2.6684532865,"2407":2.7450890022,"2408":2.8217247179,"2409":2.8971336019,"2410":2.9725424859,"2411":3.0464269338,"2412":3.1203113817,"2413":3.1923798053,"2414":3.2644482289,"2415":3.3344162071,"2416":3.4043841853,"2417":3.4719755864,"2418":3.5395669874,"2419":3.6045150591,"2420":3.6694631307,"2421":3.7315115526,"2422":3.7935599744,"2423":3.8524638696,"2424":3.9113677648,"2425":3.9668946667,"2426":4.0224215686,"2427":4.0743523377,"2428":4.1262831069,"2429":4.1744127964,"2430":4.2225424859,"2431":4.2666811498,"2432":4.3108198138,"2433":4.3507932569,"2434":4.3907667001,"2435":4.4264171656,"2436":4.4620676312,"2437":4.4932544229,"2438":4.5244412147,"2439":4.5510412527,"2440":4.5776412907,"2441":4.5995495968,"2442":4.6214579028,"2443":4.6385880148,"2444":4.6557181268,"2445":4.6680024401,"2446":4.6802867533,"2447":4.6876767872,"2448":4.6950668211,"2449":4.6975334105,"2450":4.7,"2451":4.6975334105,"2452":4.6950668211,"2453":4.6876767872,"2454":4.6802867533,"2455":4.6680024401,"2456":4.6557181268,"2457":4.6385880148,"2458":4.6214579028,"2459":4.5995495968,"2460":4.5776412907,"2461":4.5510412527,"2462":4.5244412147,"2463":4.4932544229,"2464":4.4620676312,"2465":4.4264171656,"2466":4.3907667001,"2467":4.3507932569,"2468":4.3108198138,"2469":4.2666811498,"2470":4.2225424859,"2471":4.1744127964,"2472":4.1262831069,"2473":4.0743523377,"2474":4.0224215686,"2475":3.9668946667,"2476":3.9113677648,"2477":3.8524638696,"2478":3.7935599744,"2479":3.7315115526,"2480":3.6694631307,"2481":3.6045150591,"2482":3.5395669874,"2483":3.4719755864,"2484":3.4043841853,"2485":3.3344162071,"2486":3.2644482289,"2487":3.1923798053,"2488":3.1203113817,"2489":3.0464269338,"2490":2.9725424859,"2491":2.8971336019,"2492":2.8217247179,"2493":2.7450890022,"2494":2.6684532865,"2495":2.5908931852,"2496":2.5133330839,"2497":2.4351546914,"2498":2.3569762988,"2499":2.2784881494,"2500":2.2,"2501":2.1215118506,"2502":2.0430237012,"2503":1.9648453086,"2504":1.8866669161,"2505":1.8091068148,"2506":1.7315467135,"2507":1.6549109978,"2508":1.5782752821,"2509":1.5028663981,"2510":1.4274575141,"2511":1.3535730662,"2512":1.2796886183,"2513":1.2076201947,"2514":1.1355517711,"2515":1.0655837929,"2516":0.9956158147,"2517":0.9280244136,"2518":0.8604330126,"2519":0.7954849409,"2520":0.7305368693,"2521":0.6684884474,"2522":0.6064400256,"2523":0.5475361304,"2524":0.4886322352,"2525":0.4331053333,"2526":0.3775784314,"2527":0.3256476623,"2528":0.2737168931,"2529":0.2255872036,"2530":0.1774575141,"2531":0.1333188502,"2532":0.0891801862,"2533":0.0492067431,"2534":0.0092332999,"2535":-0.0264171656,"2536":-0.0620676312,"2537":-0.0932544229,"2538":-0.1244412147,"2539":-0.1510412527,"2540":-0.1776412907,"2541":-0.1995495968,"2542":-0.2214579028,"2543":-0.2385880148,"2544":-0.2557181268,"2545":-0.2680024401,"2546":-0.2802867533,"2547":-0.2876767872,"2548":-0.2950668211,"2549":-0.2975334105,"2550":-0.3,"2551":-0.2975334105,"2552":-0.2950668211,"2553":-0.2876767872,"2554":-0.2802867533,"2555":-0.2680024401,"2556":-0.2557181268,"2557":-0.2385880148,"2558":-0.2214579028,"2559":-0.1995495968,"2560":-0.1776412907,"2561":-0.1510412527,"2562":-0.1244412147,"2563":-0.0932544229,"2564":-0.0620676312,"2565":-0.0264171656,"2566":0.0092332999,"2567":0.0492067431,"2568":0.0891801862,"2569":0.1333188502,"2570":0.1774575141,"2571":0.2255872036,"2572":0.2737168931,"2573":0.3256476623,"2574":0.3775784314,"2575":0.4331053333,"2576":0.4886322352,"2577":0.5475361304,"2578":0.6064400256,"2579":0.6684884474,"2580":0.7305368693,"2581":0.7954849409,"2582":0.8604330126,"2583":0.9280244136,"2584":0.9956158147,"2585":1.0655837929,"2586":1.1355517711,"2587":1.2076201947,"2588":1.2796886183,"2589":1.3535730662,"2590":1.4274575141,"2591":1.5028663981,"2592":1.5782752821,"2593":1.6549109978,"2594":1.7315467135,"2595":1.8091068148,"2596":1.8866669161,"2597":1.9648453086,"2598":2.0430237012,"2599":2.1215118506,"2600":2.2,"2601":2.2784881494,"2602":2.3569762988,"2603":2.4351546914,"2604":2.5133330839,"2605":2.5908931852,"2606":2.6684532865,"2607":2.7450890022,"2608":2.8217247179,"2609":2.8971336019,"2610":2.9725424859,"2611":3.0464269338,"2612":3.1203113817,"2613":3.1923798053,"2614":3.2644482289,"2615":3.3344162071,"2616":3.4043841853,"2617":3.4719755864,"2618":3.5395669874,"2619":3.6045150591,"2620":3.6694631307,"2621":3.7315115526,"2622":3.7935599744,"2623":3.8524638696,"2624":3.9113677648,"2625":3.9668946667,"2626":4.0224215686,"2627":4.0743523377,"2628":4.1262831069,"2629":4.1744127964,"2630":4.2225424859,"2631":4.2666811498,"2632":4.3108198138,"2633":4.3507932569,"2634":4.3907667001,"2635":4.4264171656,"2636":4.4620676312,"2637":4.4932544229,"2638":4.5244412147,"2639":4.5510412527,"2640":4.5776412907,"2641":4.5995495968,"2642":4.6214579028,"2643":4.6385880148,"2644":4.6557181268,"2645":4.6680024401,"2646":4.6802867533,"2647":4.6876767872,"2648":4.6950668211,"2649":4.6975334105,"2650":4.7,"2651":4.6975334105,"2652":4.6950668211,"2653":4.6876767872,"2654":4.6802867533,"2655":4.6680024401,"2656":4.6557181268,"2657":4.6385880148,"2658":4.6214579028,"2659":4.5995495968,"2660":4.5776412907,"2661":4.5510412527,"2662":4.5244412147,"2663":4.4932544229,"2664":4.4620676312,"2665":4.4264171656,"2666":4.3907667001,"2667":4.3507932569,"2668":4.3108198138,"2669":4.2666811498,"2670":4.2225424859,"2671":4.1744127964,"2672":4.1262831069,"2673":4.0743523377,"2674":4.0224215686,"2675":3.9668946667,"2676":3.9113677648,"2677":3.8524638696,"2678":3.7935599744,"2679":3.7315115526,"2680":3.6694631307,"2681":3.6045150591,"2682":3.5395669874,"2683":3.4719755864,"2684":3.4043841853,"2685":3.3344162071,"2686":3.2644482289,"2687":3.1923798053,"2688":3.1203113817,"2689":3.0464269338,"2690":2.9725424859,"2691":2.8971336019,"2692":2.8217247179,"2693":2.7450890022,"2694":2.6684532865,"2695":2.5908931852,"2696":2.5133330839,"2697":2.4351546914,"2698":2.3569762988,"2699":2.2784881494,"2700":2.2,"2701":2.1215118506,"2702":2.0430237012,"2703":1.9648453086,"2704":1.8866669161,"2705":1.8091068148,"2706":1.7315467135,"2707":1.6549109978,"2708":1.5782752821,"2709":1.5028663981,"2710":1.4274575141,"2711":1.3535730662,"2712":1.2796886183,"2713":1.2076201947,"2714":1.1355517711,"2715":1.0655837929,"2716":0.9956158147,"2717":0.9280244136,"2718":0.8604330126,"2719":0.7954849409,"2720":0.7305368693,"2721":0.6684884474,"2722":0.6064400256,"2723":0.5475361304,"2724":0.4886322352,"2725":0.4331053333,"2726":0.3775784314,"2727":0.3256476623,"2728":0.2737168931,"2729":0.2255872036,"2730":0.1774575141,"2731":0.1333188502,"2732":0.0891801862,"2733":0.0492067431,"2734":0.0092332999,"2735":-0.0264171656,"2736":-0.0620676312,"2737":-0.0932544229,"2738":-0.1244412147,"2739":-0.1510412527,"2740":-0.1776412907,"2741":-0.1995495968,"2742":-0.2214579028,"2743":-0.2385880148,"2744":-0.2557181268,"2745":-0.2680024401,"2746":-0.2802867533,"2747":-0.2876767872,"2748":-0.2950668211,"2749":-0.2975334105,"2750":-0.3,"2751":-0.2975334105,"2752":-0.2950668211,"2753":-0.2876767872,"2754":-0.2802867533,"2755":-0.2680024401,"2756":-0.2557181268,"2757":-0.2385880148,"2758":-0.2214579028,"2759":-0.1995495968,"2760":-0.1776412907,"2761":-0.1510412527,"2762":-0.1244412147,"2763":-0.0932544229,"2764":-0.0620676312,"2765":-0.0264171656,"2766":0.0092332999,"2767":0.0492067431,"2768":0.0891801862,"2769":0.1333188502,"2770":0.1774575141,"2771":0.2255872036,"2772":0.2737168931,"2773":0.3256476623,"2774":0.3775784314,"2775":0.4331053333,"2776":0.4886322352,"2777":0.5475361304,"2778":0.6064400256,"2779":0.6684884474,"2780":0.7305368693,"2781":0.7954849409,"2782":0.8604330126,"2783":0.9280244136,"2784":0.9956158147,"2785":1.0655837929,"2786":1.1355517711,"2787":1.2076201947,"2788":1.2796886183,"2789":1.3535730662,"2790":1.4274575141,"2791":1.5028663981,"2792":1.5782752821,"2793":1.6549109978,"2794":1.7315467135,"2795":1.8091068148,"2796":1.8866669161,"2797":1.9648453086,"2798":2.0430237012,"2799":2.1215118506,"2800":2.2,"2801":2.2784881494,"2802":2.3569762988,"2803":2.4351546914,"2804":2.5133330839,"2805":2.5908931852,"2806":2.6684532865,"2807":2.7450890022,"2808":2.8217247179,"2809":2.8971336019,"2810":2.9725424859,"2811":3.0464269338,"2812":3.1203113817,"2813":3.1923798053,"2814":3.2644482289,"2815":3.3344162071,"2816":3.4043841853,"2817":3.4719755864,"2818":3.5395669874,"2819":3.6045150591,"2820":3.6694631307,"2821":3.7315115526,"2822":3.7935599744,"2823":3.8524638696,"2824":3.9113677648,"2825":3.9668946667,"2826":4.0224215686,"2827":4.0743523377,"2828":4.1262831069,"2829":4.1744127964,"2830":4.2225424859,"2831":4.2666811498,"2832":4.3108198138,"2833":4.3507932569,"2834":4.3907667001,"2835":4.4264171656,"2836":4.4620676312,"2837":4.4932544229,"2838":4.5244412147,"2839":4.5510412527,"2840":4.5776412907,"2841":4.5995495968,"2842":4.6214579028,"2843":4.6385880148,"2844":4.6557181268,"2845":4.6680024401,"2846":4.6802867533,"2847":4.6876767872,"2848":4.6950668211,"2849":4.6975334105,"2850":4.7,"2851":4.6975334105,"2852":4.6950668211,"2853":4.6876767872,"2854":4.6802867533,"2855":4.6680024401,"2856":4.6557181268,"2857":4.6385880148,"2858":4.6214579028,"2859":4.5995495968,"2860":4.5776412907,"2861":4.5510412527,"2862":4.5244412147,"2863":4.4932544229,"2864":4.4620676312,"2865":4.4264171656,"2866":4.3907667001,"2867":4.3507932569,"2868":4.3108198138,"2869":4.2666811498,"2870":4.2225424859,"2871":4.1744127964,"2872":4.1262831069,"2873":4.0743523377,"2874":4.0224215686,"2875":3.9668946667,"2876":3.9113677648,"2877":3.8524638696,"2878":3.7935599744,"2879":3.7315115526,"2880":3.6694631307,"2881":3.6045150591,"2882":3.5395669874,"2883":3.4719755864,"2884":3.4043841853,"2885":3.3344162071,"2886":3.2644482289,"2887":3.1923798053,"2888":3.1203113817,"2889":3.0464269338,"2890":2.9725424859,"2891":2.8971336019,"2892":2.8217247179,"2893":2.7450890022,"2894":2.6684532865,"2895":2.5908931852,"2896":2.5133330839,"2897":2.4351546914,"2898":2.3569762988,"2899":2.2784881494,"2900":2.2,"2901":2.1215118506,"2902":2.0430237012,"2903":1.9648453086,"2904":1.8866669161,"2905":1.8091068148,"2906":1.7315467135,"2907":1.6549109978,"2908":1.5782752821,"2909":1.5028663981,"2910":1.4274575141,"2911":1.3535730662,"2912":1.2796886183,"2913":1.2076201947,"2914":1.1355517711,"2915":1.0655837929,"2916":0.9956158147,"2917":0.9280244136,"2918":0.8604330126,"2919":0.7954849409,"2920":0.7305368693,"2921":0.6684884474,"2922":0.6064400256,"2923":0.5475361304,"2924":0.4886322352,"2925":0.4331053333,"2926":0.3775784314,"2927":0.3256476623,"2928":0.2737168931,"2929":0.2255872036,"2930":0.1774575141,"2931":0.1333188502,"2932":0.0891801862,"2933":0.0492067431,"2934":0.0092332999,"2935":-0.0264171656,"2936":-0.0620676312,"2937":-0.0932544229,"2938":-0.1244412147,"2939":-0.1510412527,"2940":-0.1776412907,"2941":-0.1995495968,"2942":-0.2214579028,"2943":-0.2385880148,"2944":-0.2557181268,"2945":-0.2680024401,"2946":-0.2802867533,"2947":-0.2876767872,"2948":-0.2950668211,"2949":-0.2975334105,"2950":-0.3,"2951":-0.2975334105,"2952":-0.2950668211,"2953":-0.2876767872,"2954":-0.2802867533,"2955":-0.2680024401,"2956":-0.2557181268,"2957":-0.2385880148,"2958":-0.2214579028,"2959":-0.1995495968,"2960":-0.1776412907,"2961":-0.1510412527,"2962":-0.1244412147,"2963":-0.0932544229,"2964":-0.0620676312,"2965":-0.0264171656,"2966":0.0092332999,"2967":0.0492067431,"2968":0.0891801862,"2969":0.1333188502,"2970":0.1774575141,"2971":0.2255872036,"2972":0.2737168931,"2973":0.3256476623,"2974":0.3775784314,"2975":0.4331053333,"2976":0.4886322352,"2977":0.5475361304,"2978":0.6064400256,"2979":0.6684884474,"2980":0.7305368693,"2981":0.7954849409,"2982":0.8604330126,"2983":0.9280244136,"2984":0.9956158147,"2985":1.0655837929,"2986":1.1355517711,"2987":1.2076201947,"2988":1.2796886183,"2989":1.3535730662,"2990":1.4274575141,"2991":1.5028663981,"2992":1.5782752821,"2993":1.6549109978,"2994":1.7315467135,"2995":1.8091068148,"2996":1.8866669161,"2997":1.9648453086,"2998":2.0430237012,"2999":2.1215118506,"3000":2.2,"3001":2.2784881494,"3002":2.3569762988,"3003":2.4351546914,"3004":2.5133330839,"3005":2.5908931852,"3006":2.6684532865,"3007":2.7450890022,"3008":2.8217247179,"3009":2.8971336019,"3010":2.9725424859,"3011":3.0464269338,"3012":3.1203113817,"3013":3.1923798053,"3014":3.2644482289,"3015":3.3344162071,"3016":3.4043841853,"3017":3.4719755864,"3018":3.5395669874,"3019":3.6045150591,"3020":3.6694631307,"3021":3.7315115526,"3022":3.7935599744,"3023":3.8524638696,"3024":3.9113677648,"3025":3.9668946667,"3026":4.0224215686,"3027":4.0743523377,"3028":4.1262831069,"3029":4.1744127964,"3030":4.2225424859,"3031":4.2666811498,"3032":4.3108198138,"3033":4.3507932569,"3034":4.3907667001,"3035":4.4264171656,"3036":4.4620676312,"3037":4.4932544229,"3038":4.5244412147,"3039":4.5510412527,"3040":4.5776412907,"3041":4.5995495968,"3042":4.6214579028,"3043":4.6385880148,"3044":4.6557181268,"3045":4.6680024401,"3046":4.6802867533,"3047":4.6876767872,"3048":4.6950668211,"3049":4.6975334105,"3050":4.7,"3051":4.6975334105,"3052":4.6950668211,"3053":4.6876767872,"3054":4.6802867533,"3055":4.6680024401,"3056":4.6557181268,"3057":4.6385880148,"3058":4.6214579028,"3059":4.5995495968,"3060":4.5776412907,"3061":4.5510412527,"3062":4.5244412147,"3063":4.4932544229,"3064":4.4620676312,"3065":4.4264171656,"3066":4.3907667001,"3067":4.3507932569,"3068":4.3108198138,"3069":4.2666811498,"3070":4.2225424859,"3071":4.1744127964,"3072":4.1262831069,"3073":4.0743523377,"3074":4.0224215686,"3075":3.9668946667,"3076":3.9113677648,"3077":3.8524638696,"3078":3.7935599744,"3079":3.7315115526,"3080":3.6694631307,"3081":3.6045150591,"3082":3.5395669874,"3083":3.4719755864,"3084":3.4043841853,"3085":3.3344162071,"3086":3.2644482289,"3087":3.1923798053,"3088":3.1203113817,"3089":3.0464269338,"3090":2.9725424859,"3091":2.8971336019,"3092":2.8217247179,"3093":2.7450890022,"3094":2.6684532865,"3095":2.5908931852,"3096":2.5133330839,"3097":2.4351546914,"3098":2.3569762988,"3099":2.2784881494,"3100":2.2,"3101":2.1215118506,"3102":2.0430237012,"3103":1.9648453086,"3104":1.8866669161,"3105":1.8091068148,"3106":1.7315467135,"3107":1.6549109978,"3108":1.5782752821,"3109":1.5028663981,"3110":1.4274575141,"3111":1.3535730662,"3112":1.2796886183,"3113":1.2076201947,"3114":1.1355517711,"3115":1.0655837929,"3116":0.9956158147,"3117":0.9280244136,"3118":0.8604330126,"3119":0.7954849409,"3120":0.7305368693,"3121":0.6684884474,"3122":0.6064400256,"3123":0.5475361304,"3124":0.4886322352,"3125":0.4331053333,"3126":0.3775784314,"3127":0.3256476623,"3128":0.2737168931,"3129":0.2255872036,"3130":0.1774575141,"3131":0.1333188502,"3132":0.0891801862,"3133":0.0492067431,"3134":0.0092332999,"3135":-0.0264171656,"3136":-0.0620676312,"3137":-0.0932544229,"3138":-0.1244412147,"3139":-0.1510412527,"3140":-0.1776412907,"3141":-0.1995495968,"3142":-0.2214579028,"3143":-0.2385880148,"3144":-0.2557181268,"3145":-0.2680024401,"3146":-0.2802867533,"3147":-0.2876767872,"3148":-0.2950668211,"3149":-0.2975334105,"3150":-0.3,"3151":-0.2975334105,"3152":-0.2950668211,"3153":-0.2876767872,"3154":-0.2802867533,"3155":-0.2680024401,"3156":-0.2557181268,"3157":-0.2385880148,"3158":-0.2214579028,"3159":-0.1995495968,"3160":-0.1776412907,"3161":-0.1510412527,"3162":-0.1244412147,"3163":-0.0932544229,"3164":-0.0620676312,"3165":-0.0264171656,"3166":0.0092332999,"3167":0.0492067431,"3168":0.0891801862,"3169":0.1333188502,"3170":0.1774575141,"3171":0.2255872036,"3172":0.2737168931,"3173":0.3256476623,"3174":0.3775784314,"3175":0.4331053333,"3176":0.4886322352,"3177":0.5475361304,"3178":0.6064400256,"3179":0.6684884474,"3180":0.7305368693,"3181":0.7954849409,"3182":0.8604330126,"3183":0.9280244136,"3184":0.9956158147,"3185":1.0655837929,"3186":1.1355517711,"3187":1.2076201947,"3188":1.2796886183,"3189":1.3535730662,"3190":1.4274575141,"3191":1.5028663981,"3192":1.5782752821,"3193":1.6549109978,"3194":1.7315467135,"3195":1.8091068148,"3196":1.8866669161,"3197":1.9648453086,"3198":2.0430237012,"3199":2.1215118506,"3200":2.2,"3201":2.2784881494,"3202":2.3569762988,"3203":2.4351546914,"3204":2.5133330839,"3205":2.5908931852,"3206":2.6684532865,"3207":2.7450890022,"3208":2.8217247179,"3209":2.8971336019,"3210":2.9725424859,"3211":3.0464269338,"3212":3.1203113817,"3213":3.1923798053,"3214":3.2644482289,"3215":3.3344162071,"3216":3.4043841853,"3217":3.4719755864,"3218":3.5395669874,"3219":3.6045150591,"3220":3.6694631307,"3221":3.7315115526,"3222":3.7935599744,"3223":3.8524638696,"3224":3.9113677648,"3225":3.9668946667,"3226":4.0224215686,"3227":4.0743523377,"3228":4.1262831069,"3229":4.1744127964,"3230":4.2225424859,"3231":4.2666811498,"3232":4.3108198138,"3233":4.3507932569,"3234":4.3907667001,"3235":4.4264171656,"3236":4.4620676312,"3237":4.4932544229,"3238":4.5244412147,"3239":4.5510412527,"3240":4.5776412907,"3241":4.5995495968,"3242":4.6214579028,"3243":4.6385880148,"3244":4.6557181268,"3245":4.6680024401,"3246":4.6802867533,"3247":4.6876767872,"3248":4.6950668211,"3249":4.6975334105,"3250":4.7,"3251":4.6975334105,"3252":4.6950668211,"3253":4.6876767872,"3254":4.6802867533,"3255":4.6680024401,"3256":4.6557181268,"3257":4.6385880148,"3258":4.6214579028,"3259":4.5995495968,"3260":4.5776412907,"3261":4.5510412527,"3262":4.5244412147,"3263":4.4932544229,"3264":4.4620676312,"3265":4.4264171656,"3266":4.3907667001,"3267":4.3507932569,"3268":4.3108198138,"3269":4.2666811498,"3270":4.2225424859,"3271":4.1744127964,"3272":4.1262831069,"3273":4.0743523377,"3274":4.0224215686,"3275":3.9668946667,"3276":3.9113677648,"3277":3.8524638696,"3278":3.7935599744,"3279":3.7315115526,"3280":3.6694631307,"3281":3.6045150591,"3282":3.5395669874,"3283":3.4719755864,"3284":3.4043841853,"3285":3.3344162071,"3286":3.2644482289,"3287":3.1923798053,"3288":3.1203113817,"3289":3.0464269338,"3290":2.9725424859,"3291":2.8971336019,"3292":2.8217247179,"3293":2.7450890022,"3294":2.6684532865,"3295":2.5908931852,"3296":2.5133330839,"3297":2.4351546914,"3298":2.3569762988,"3299":2.2784881494,"3300":2.2,"3301":2.1215118506,"3302":2.0430237012,"3303":1.9648453086,"3304":1.8866669161,"3305":1.8091068148,"3306":1.7315467135,"3307":1.6549109978,"3308":1.5782752821,"3309":1.5028663981,"3310":1.4274575141,"3311":1.3535730662,"3312":1.2796886183,"3313":1.2076201947,"3314":1.1355517711,"3315":1.0655837929,"3316":0.9956158147,"3317":0.9280244136,"3318":0.8604330126,"3319":0.7954849409,"3320":0.7305368693,"3321":0.6684884474,"3322":0.6064400256,"3323":0.5475361304,"3324":0.4886322352,"3325":0.4331053333,"3326":0.3775784314,"3327":0.3256476623,"3328":0.2737168931,"3329":0.2255872036,"3330":0.1774575141,"3331":0.1333188502,"3332":0.0891801862,"3333":0.0492067431,"3334":0.0092332999,"3335":-0.0264171656,"3336":-0.0620676312,"3337":-0.0932544229,"3338":-0.1244412147,"3339":-0.1510412527,"3340":-0.1776412907,"3341":-0.1995495968,"3342":-0.2214579028,"3343":-0.2385880148,"3344":-0.2557181268,"3345":-0.2680024401,"3346":-0.2802867533,"3347":-0.2876767872,"3348":-0.2950668211,"3349":-0.2975334105,"3350":-0.3,"3351":-0.2975334105,"3352":-0.2950668211,"3353":-0.2876767872,"3354":-0.2802867533,"3355":-0.2680024401,"3356":-0.2557181268,"3357":-0.2385880148,"3358":-0.2214579028,"3359":-0.1995495968,"3360":-0.1776412907,"3361":-0.1510412527,"3362":-0.1244412147,"3363":-0.0932544229,"3364":-0.0620676312,"3365":-0.0264171656,"3366":0.0092332999,"3367":0.0492067431,"3368":0.0891801862,"3369":0.1333188502,"3370":0.1774575141,"3371":0.2255872036,"3372":0.2737168931,"3373":0.3256476623,"3374":0.3775784314,"3375":0.4331053333,"3376":0.4886322352,"3377":0.5475361304,"3378":0.6064400256,"3379":0.6684884474,"3380":0.7305368693,"3381":0.7954849409,"3382":0.8604330126,"3383":0.9280244136,"3384":0.9956158147,"3385":1.0655837929,"3386":1.1355517711,"3387":1.2076201947,"3388":1.2796886183,"3389":1.3535730662,"3390":1.4274575141,"3391":1.5028663981,"3392":1.5782752821,"3393":1.6549109978,"3394":1.7315467135,"3395":1.8091068148,"3396":1.8866669161,"3397":1.9648453086,"3398":2.0430237012,"3399":2.1215118506,"3400":2.2,"3401":2.2784881494,"3402":2.3569762988,"3403":2.4351546914,"3404":2.5133330839,"3405":2.5908931852,"3406":2.6684532865,"3407":2.7450890022,"3408":2.8217247179,"3409":2.8971336019,"3410":2.9725424859,"3411":3.0464269338,"3412":3.1203113817,"3413":3.1923798053,"3414":3.2644482289,"3415":3.3344162071,"3416":3.4043841853,"3417":3.4719755864,"3418":3.5395669874,"3419":3.6045150591,"3420":3.6694631307,"3421":3.7315115526,"3422":3.7935599744,"3423":3.8524638696,"3424":3.9113677648,"3425":3.9668946667,"3426":4.0224215686,"3427":4.0743523377,"3428":4.1262831069,"3429":4.1744127964,"3430":4.2225424859,"3431":4.2666811498,"3432":4.3108198138,"3433":4.3507932569,"3434":4.3907667001,"3435":4.4264171656,"3436":4.4620676312,"3437":4.4932544229,"3438":4.5244412147,"3439":4.5510412527,"3440":4.5776412907,"3441":4.5995495968,"3442":4.6214579028,"3443":4.6385880148,"3444":4.6557181268,"3445":4.6680024401,"3446":4.6802867533,"3447":4.6876767872,"3448":4.6950668211,"3449":4.6975334105,"3450":4.7,"3451":4.6975334105,"3452":4.6950668211,"3453":4.6876767872,"3454":4.6802867533,"3455":4.6680024401,"3456":4.6557181268,"3457":4.6385880148,"3458":4.6214579028,"3459":4.5995495968,"3460":4.5776412907,"3461":4.5510412527,"3462":4.5244412147,"3463":4.4932544229,"3464":4.4620676312,"3465":4.4264171656,"3466":4.3907667001,"3467":4.3507932569,"3468":4.3108198138,"3469":4.2666811498,"3470":4.2225424859,"3471":4.1744127964,"3472":4.1262831069,"3473":4.0743523377,"3474":4.0224215686,"3475":3.9668946667,"3476":3.9113677648,"3477":3.8524638696,"3478":3.7935599744,"3479":3.7315115526,"3480":3.6694631307,"3481":3.6045150591,"3482":3.5395669874,"3483":3.4719755864,"3484":3.4043841853,"3485":3.3344162071,"3486":3.2644482289,"3487":3.1923798053,"3488":3.1203113817,"3489":3.0464269338,"3490":2.9725424859,"3491":2.8971336019,"3492":2.8217247179,"3493":2.7450890022,"3494":2.6684532865,"3495":2.5908931852,"3496":2.5133330839,"3497":2.4351546914,"3498":2.3569762988,"3499":2.2784881494,"3500":2.2,"3501":2.1215118506,"3502":2.0430237012,"3503":1.9648453086,"3504":1.8866669161,"3505":1.8091068148,"3506":1.7315467135,"3507":1.6549109978,"3508":1.5782752821,"3509":1.5028663981,"3510":1.4274575141,"3511":1.3535730662,"3512":1.2796886183,"3513":1.2076201947,"3514":1.1355517711,"3515":1.0655837929,"3516":0.9956158147,"3517":0.9280244136,"3518":0.8604330126,"3519":0.7954849409,"3520":0.7305368693,"3521":0.6684884474,"3522":0.6064400256,"3523":0.5475361304,"3524":0.4886322352,"3525":0.4331053333,"3526":0.3775784314,"3527":0.3256476623,"3528":0.2737168931,"3529":0.2255872036,"3530":0.1774575141,"3531":0.1333188502,"3532":0.0891801862,"3533":0.0492067431,"3534":0.0092332999,"3535":-0.0264171656,"3536":-0.0620676312,"3537":-0.0932544229,"3538":-0.1244412147,"3539":-0.1510412527,"3540":-0.1776412907,"3541":-0.1995495968,"3542":-0.2214579028,"3543":-0.2385880148,"3544":-0.2557181268,"3545":-0.2680024401,"3546":-0.2802867533,"3547":-0.2876767872,"3548":-0.2950668211,"3549":-0.2975334105,"3550":-0.3,"3551":-0.2975334105,"3552":-0.2950668211,"3553":-0.2876767872,"3554":-0.2802867533,"3555":-0.2680024401,"3556":-0.2557181268,"3557":-0.2385880148,"3558":-0.2214579028,"3559":-0.1995495968,"3560":-0.1776412907,"3561":-0.1510412527,"3562":-0.1244412147,"3563":-0.0932544229,"3564":-0.0620676312,"3565":-0.0264171656,"3566":0.0092332999,"3567":0.0492067431,"3568":0.0891801862,"3569":0.1333188502,"3570":0.1774575141,"3571":0.2255872036,"3572":0.2737168931,"3573":0.3256476623,"3574":0.3775784314,"3575":0.4331053333,"3576":0.4886322352,"3577":0.5475361304,"3578":0.6064400256,"3579":0.6684884474,"3580":0.7305368693,"3581":0.7954849409,"3582":0.8604330126,"3583":0.9280244136,"3584":0.9956158147,"3585":1.0655837929,"3586":1.1355517711,"3587":1.2076201947,"3588":1.2796886183,"3589":1.3535730662,"3590":1.4274575141,"3591":1.5028663981,"3592":1.5782752821,"3593":1.6549109978,"3594":1.7315467135,"3595":1.8091068148,"3596":1.8866669161,"3597":1.9648453086,"3598":2.0430237012,"3599":2.1215118506,"3600":2.2,"3601":2.2784881494,"3602":2.3569762988,"3603":2.4351546914,"3604":2.5133330839,"3605":2.5908931852,"3606":2.6684532865,"3607":2.7450890022,"3608":2.8217247179,"3609":2.8971336019,"3610":2.9725424859,"3611":3.0464269338,"3612":3.1203113817,"3613":3.1923798053,"3614":3.2644482289,"3615":3.3344162071,"3616":3.4043841853,"3617":3.4719755864,"3618":3.5395669874,"3619":3.6045150591,"3620":3.6694631307,"3621":3.7315115526,"3622":3.7935599744,"3623":3.8524638696,"3624":3.9113677648,"3625":3.9668946667,"3626":4.0224215686,"3627":4.0743523377,"3628":4.1262831069,"3629":4.1744127964,"3630":4.2225424859,"3631":4.2666811498,"3632":4.3108198138,"3633":4.3507932569,"3634":4.3907667001,"3635":4.4264171656,"3636":4.4620676312,"3637":4.4932544229,"3638":4.5244412147,"3639":4.5510412527,"3640":4.5776412907,"3641":4.5995495968,"3642":4.6214579028,"3643":4.6385880148,"3644":4.6557181268,"3645":4.6680024401,"3646":4.6802867533,"3647":4.6876767872,"3648":4.6950668211,"3649":4.6975334105,"3650":4.7,"3651":4.6975334105,"3652":4.6950668211,"3653":4.6876767872,"3654":4.6802867533,"3655":4.6680024401,"3656":4.6557181268,"3657":4.6385880148,"3658":4.6214579028,"3659":4.5995495968,"3660":4.5776412907,"3661":4.5510412527,"3662":4.5244412147,"3663":4.4932544229,"3664":4.4620676312,"3665":4.4264171656,"3666":4.3907667001,"3667":4.3507932569,"3668":4.3108198138,"3669":4.2666811498,"3670":4.2225424859,"3671":4.1744127964,"3672":4.1262831069,"3673":4.0743523377,"3674":4.0224215686,"3675":3.9668946667,"3676":3.9113677648,"3677":3.8524638696,"3678":3.7935599744,"3679":3.7315115526,"3680":3.6694631307,"3681":3.6045150591,"3682":3.5395669874,"3683":3.4719755864,"3684":3.4043841853,"3685":3.3344162071,"3686":3.2644482289,"3687":3.1923798053,"3688":3.1203113817,"3689":3.0464269338,"3690":2.9725424859,"3691":2.8971336019,"3692":2.8217247179,"3693":2.7450890022,"3694":2.6684532865,"3695":2.5908931852,"3696":2.5133330839,"3697":2.4351546914,"3698":2.3569762988,"3699":2.2784881494,"3700":2.2,"3701":2.1215118506,"3702":2.0430237012,"3703":1.9648453086,"3704":1.8866669161,"3705":1.8091068148,"3706":1.7315467135,"3707":1.6549109978,"3708":1.5782752821,"3709":1.5028663981,"3710":1.4274575141,"3711":1.3535730662,"3712":1.2796886183,"3713":1.2076201947,"3714":1.1355517711,"3715":1.0655837929,"3716":0.9956158147,"3717":0.9280244136,"3718":0.8604330126,"3719":0.7954849409,"3720":0.7305368693,"3721":0.6684884474,"3722":0.6064400256,"3723":0.5475361304,"3724":0.4886322352,"3725":0.4331053333,"3726":0.3775784314,"3727":0.3256476623,"3728":0.2737168931,"3729":0.2255872036,"3730":0.1774575141,"3731":0.1333188502,"3732":0.0891801862,"3733":0.0492067431,"3734":0.0092332999,"3735":-0.0264171656,"3736":-0.0620676312,"3737":-0.0932544229,"3738":-0.1244412147,"3739":-0.1510412527,"3740":-0.1776412907,"3741":-0.1995495968,"3742":-0.2214579028,"3743":-0.2385880148,"3744":-0.2557181268,"3745":-0.2680024401,"3746":-0.2802867533,"3747":-0.2876767872,"3748":-0.2950668211,"3749":-0.2975334105,"3750":-0.3,"3751":-0.2975334105,"3752":-0.2950668211,"3753":-0.2876767872,"3754":-0.2802867533,"3755":-0.2680024401,"3756":-0.2557181268,"3757":-0.2385880148,"3758":-0.2214579028,"3759":-0.1995495968,"3760":-0.1776412907,"3761":-0.1510412527,"3762":-0.1244412147,"3763":-0.0932544229,"3764":-0.0620676312,"3765":-0.0264171656,"3766":0.0092332999,"3767":0.0492067431,"3768":0.0891801862,"3769":0.1333188502,"3770":0.1774575141,"3771":0.2255872036,"3772":0.2737168931,"3773":0.3256476623,"3774":0.3775784314,"3775":0.4331053333,"3776":0.4886322352,"3777":0.5475361304,"3778":0.6064400256,"3779":0.6684884474,"3780":0.7305368693,"3781":0.7954849409,"3782":0.8604330126,"3783":0.9280244136,"3784":0.9956158147,"3785":1.0655837929,"3786":1.1355517711,"3787":1.2076201947,"3788":1.2796886183,"3789":1.3535730662,"3790":1.4274575141,"3791":1.5028663981,"3792":1.5782752821,"3793":1.6549109978,"3794":1.7315467135,"3795":1.8091068148,"3796":1.8866669161,"3797":1.9648453086,"3798":2.0430237012,"3799":2.1215118506,"3800":2.2,"3801":2.2784881494,"3802":2.3569762988,"3803":2.4351546914,"3804":2.5133330839,"3805":2.5908931852,"3806":2.6684532865,"3807":2.7450890022,"3808":2.8217247179,"3809":2.8971336019,"3810":2.9725424859,"3811":3.0464269338,"3812":3.1203113817,"3813":3.1923798053,"3814":3.2644482289,"3815":3.3344162071,"3816":3.4043841853,"3817":3.4719755864,"3818":3.5395669874,"3819":3.6045150591,"3820":3.6694631307,"3821":3.7315115526,"3822":3.7935599744,"3823":3.8524638696,"3824":3.9113677648,"3825":3.9668946667,"3826":4.0224215686,"3827":4.0743523377,"3828":4.1262831069,"3829":4.1744127964,"3830":4.2225424859,"3831":4.2666811498,"3832":4.3108198138,"3833":4.3507932569,"3834":4.3907667001,"3835":4.4264171656,"3836":4.4620676312,"3837":4.4932544229,"3838":4.5244412147,"3839":4.5510412527,"3840":4.5776412907,"3841":4.5995495968,"3842":4.6214579028,"3843":4.6385880148,"3844":4.6557181268,"3845":4.6680024401,"3846":4.6802867533,"3847":4.6876767872,"3848":4.6950668211,"3849":4.6975334105,"3850":4.7,"3851":4.6975334105,"3852":4.6950668211,"3853":4.6876767872,"3854":4.6802867533,"3855":4.6680024401,"3856":4.6557181268,"3857":4.6385880148,"3858":4.6214579028,"3859":4.5995495968,"3860":4.5776412907,"3861":4.5510412527,"3862":4.5244412147,"3863":4.4932544229,"3864":4.4620676312,"3865":4.4264171656,"3866":4.3907667001,"3867":4.3507932569,"3868":4.3108198138,"3869":4.2666811498,"3870":4.2225424859,"3871":4.1744127964,"3872":4.1262831069,"3873":4.0743523377,"3874":4.0224215686,"3875":3.9668946667,"3876":3.9113677648,"3877":3.8524638696,"3878":3.7935599744,"3879":3.7315115526,"3880":3.6694631307,"3881":3.6045150591,"3882":3.5395669874,"3883":3.4719755864,"3884":3.4043841853,"3885":3.3344162071,"3886":3.2644482289,"3887":3.1923798053,"3888":3.1203113817,"3889":3.0464269338,"3890":2.9725424859,"3891":2.8971336019,"3892":2.8217247179,"3893":2.7450890022,"3894":2.6684532865,"3895":2.5908931852,"3896":2.5133330839,"3897":2.4351546914,"3898":2.3569762988,"3899":2.2784881494,"3900":2.2,"3901":2.1215118506,"3902":2.0430237012,"3903":1.9648453086,"3904":1.8866669161,"3905":1.8091068148,"3906":1.7315467135,"3907":1.6549109978,"3908":1.5782752821,"3909":1.5028663981,"3910":1.4274575141,"3911":1.3535730662,"3912":1.2796886183,"3913":1.2076201947,"3914":1.1355517711,"3915":1.0655837929,"3916":0.9956158147,"3917":0.9280244136,"3918":0.8604330126,"3919":0.7954849409,"3920":0.7305368693,"3921":0.6684884474,"3922":0.6064400256,"3923":0.5475361304,"3924":0.4886322352,"3925":0.4331053333,"3926":0.3775784314,"3927":0.3256476623,"3928":0.2737168931,"3929":0.2255872036,"3930":0.1774575141,"3931":0.1333188502,"3932":0.0891801862,"3933":0.0492067431,"3934":0.0092332999,"3935":-0.0264171656,"3936":-0.0620676312,"3937":-0.0932544229,"3938":-0.1244412147,"3939":-0.1510412527,"3940":-0.1776412907,"3941":-0.1995495968,"3942":-0.2214579028,"3943":-0.2385880148,"3944":-0.2557181268,"3945":-0.2680024401,"3946":-0.2802867533,"3947":-0.2876767872,"3948":-0.2950668211,"3949":-0.2975334105,"3950":-0.3,"3951":-0.2975334105,"3952":-0.2950668211,"3953":-0.2876767872,"3954":-0.2802867533,"3955":-0.2680024401,"3956":-0.2557181268,"3957":-0.2385880148,"3958":-0.2214579028,"3959":-0.1995495968,"3960":-0.1776412907,"3961":-0.1510412527,"3962":-0.1244412147,"3963":-0.0932544229,"3964":-0.0620676312,"3965":-0.0264171656,"3966":0.0092332999,"3967":0.0492067431,"3968":0.0891801862,"3969":0.1333188502,"3970":0.1774575141,"3971":0.2255872036,"3972":0.2737168931,"3973":0.3256476623,"3974":0.3775784314,"3975":0.4331053333,"3976":0.4886322352,"3977":0.5475361304,"3978":0.6064400256,"3979":0.6684884474,"3980":0.7305368693,"3981":0.7954849409,"3982":0.8604330126,"3983":0.9280244136,"3984":0.9956158147,"3985":1.0655837929,"3986":1.1355517711,"3987":1.2076201947,"3988":1.2796886183,"3989":1.3535730662,"3990":1.4274575141,"3991":1.5028663981,"3992":1.5782752821,"3993":1.6549109978,"3994":1.7315467135,"3995":1.8091068148,"3996":1.8866669161,"3997":1.9648453086,"3998":2.0430237012,"3999":2.1215118506,"4000":2.2,"4001":2.2784881494,"4002":2.3569762988,"4003":2.4351546914,"4004":2.5133330839,"4005":2.5908931852,"4006":2.6684532865,"4007":2.7450890022,"4008":2.8217247179,"4009":2.8971336019,"4010":2.9725424859,"4011":3.0464269338,"4012":3.1203113817,"4013":3.1923798053,"4014":3.2644482289,"4015":3.3344162071,"4016":3.4043841853,"4017":3.4719755864,"4018":3.5395669874,"4019":3.6045150591,"4020":3.6694631307,"4021":3.7315115526,"4022":3.7935599744,"4023":3.8524638696,"4024":3.9113677648,"4025":3.9668946667,"4026":4.0224215686,"4027":4.0743523377,"4028":4.1262831069,"4029":4.1744127964,"4030":4.2225424859,"4031":4.2666811498,"4032":4.3108198138,"4033":4.3507932569,"4034":4.3907667001,"4035":4.4264171656,"4036":4.4620676312,"4037":4.4932544229,"4038":4.5244412147,"4039":4.5510412527,"4040":4.5776412907,"4041":4.5995495968,"4042":4.6214579028,"4043":4.6385880148,"4044":4.6557181268,"4045":4.6680024401,"4046":4.6802867533,"4047":4.6876767872,"4048":4.6950668211,"4049":4.6975334105,"4050":4.7,"4051":4.6975334105,"4052":4.6950668211,"4053":4.6876767872,"4054":4.6802867533,"4055":4.6680024401,"4056":4.6557181268,"4057":4.6385880148,"4058":4.6214579028,"4059":4.5995495968,"4060":4.5776412907,"4061":4.5510412527,"4062":4.5244412147,"4063":4.4932544229,"4064":4.4620676312,"4065":4.4264171656,"4066":4.3907667001,"4067":4.3507932569,"4068":4.3108198138,"4069":4.2666811498,"4070":4.2225424859,"4071":4.1744127964,"4072":4.1262831069,"4073":4.0743523377,"4074":4.0224215686,"4075":3.9668946667,"4076":3.9113677648,"4077":3.8524638696,"4078":3.7935599744,"4079":3.7315115526,"4080":3.6694631307,"4081":3.6045150591,"4082":3.5395669874,"4083":3.4719755864,"4084":3.4043841853,"4085":3.3344162071,"4086":3.2644482289,"4087":3.1923798053,"4088":3.1203113817,"4089":3.0464269338,"4090":2.9725424859,"4091":2.8971336019,"4092":2.8217247179,"4093":2.7450890022,"4094":2.6684532865,"4095":2.5908931852,"4096":2.5133330839,"4097":2.4351546914,"4098":2.3569762988,"4099":2.2784881494,"4100":2.2,"4101":2.1215118506,"4102":2.0430237012,"4103":1.9648453086,"4104":1.8866669161,"4105":1.8091068148,"4106":1.7315467135,"4107":1.6549109978,"4108":1.5782752821,"4109":1.5028663981,"4110":1.4274575141,"4111":1.3535730662,"4112":1.2796886183,"4113":1.2076201947,"4114":1.1355517711,"4115":1.0655837929,"4116":0.9956158147,"4117":0.9280244136,"4118":0.8604330126,"4119":0.7954849409,"4120":0.7305368693,"4121":0.6684884474,"4122":0.6064400256,"4123":0.5475361304,"4124":0.4886322352,"4125":0.4331053333,"4126":0.3775784314,"4127":0.3256476623,"4128":0.2737168931,"4129":0.2255872036,"4130":0.1774575141,"4131":0.1333188502,"4132":0.0891801862,"4133":0.0492067431,"4134":0.0092332999,"4135":-0.0264171656,"4136":-0.0620676312,"4137":-0.0932544229,"4138":-0.1244412147,"4139":-0.1510412527,"4140":-0.1776412907,"4141":-0.1995495968,"4142":-0.2214579028,"4143":-0.2385880148,"4144":-0.2557181268,"4145":-0.2680024401,"4146":-0.2802867533,"4147":-0.2876767872,"4148":-0.2950668211,"4149":-0.2975334105,"4150":-0.3,"4151":-0.2975334105,"4152":-0.2950668211,"4153":-0.2876767872,"4154":-0.2802867533,"4155":-0.2680024401,"4156":-0.2557181268,"4157":-0.2385880148,"4158":-0.2214579028,"4159":-0.1995495968,"4160":-0.1776412907,"4161":-0.1510412527,"4162":-0.1244412147,"4163":-0.0932544229,"4164":-0.0620676312,"4165":-0.0264171656,"4166":0.0092332999,"4167":0.0492067431,"4168":0.0891801862,"4169":0.1333188502,"4170":0.1774575141,"4171":0.2255872036,"4172":0.2737168931,"4173":0.3256476623,"4174":0.3775784314,"4175":0.4331053333,"4176":0.4886322352,"4177":0.5475361304,"4178":0.6064400256,"4179":0.6684884474,"4180":0.7305368693,"4181":0.7954849409,"4182":0.8604330126,"4183":0.9280244136,"4184":0.9956158147,"4185":1.0655837929,"4186":1.1355517711,"4187":1.2076201947,"4188":1.2796886183,"4189":1.3535730662,"4190":1.4274575141,"4191":1.5028663981,"4192":1.5782752821,"4193":1.6549109978,"4194":1.7315467135,"4195":1.8091068148,"4196":1.8866669161,"4197":1.9648453086,"4198":2.0430237012,"4199":2.1215118506,"4200":2.2,"4201":2.2784881494,"4202":2.3569762988,"4203":2.4351546914,"4204":2.5133330839,"4205":2.5908931852,"4206":2.6684532865,"4207":2.7450890022,"4208":2.8217247179,"4209":2.8971336019,"4210":2.9725424859,"4211":3.0464269338,"4212":3.1203113817,"4213":3.1923798053,"4214":3.2644482289,"4215":3.3344162071,"4216":3.4043841853,"4217":3.4719755864,"4218":3.5395669874,"4219":3.6045150591,"4220":3.6694631307,"4221":3.7315115526,"4222":3.7935599744,"4223":3.8524638696,"4224":3.9113677648,"4225":3.9668946667,"4226":4.0224215686,"4227":4.0743523377,"4228":4.1262831069,"4229":4.1744127964,"4230":4.2225424859,"4231":4.2666811498,"4232":4.3108198138,"4233":4.3507932569,"4234":4.3907667001,"4235":4.4264171656,"4236":4.4620676312,"4237":4.4932544229,"4238":4.5244412147,"4239":4.5510412527,"4240":4.5776412907,"4241":4.5995495968,"4242":4.6214579028,"4243":4.6385880148,"4244":4.6557181268,"4245":4.6680024401,"4246":4.6802867533,"4247":4.6876767872,"4248":4.6950668211,"4249":4.6975334105,"4250":4.7,"4251":4.6975334105,"4252":4.6950668211,"4253":4.6876767872,"4254":4.6802867533,"4255":4.6680024401,"4256":4.6557181268,"4257":4.6385880148,"4258":4.6214579028,"4259":4.5995495968,"4260":4.5776412907,"4261":4.5510412527,"4262":4.5244412147,"4263":4.4932544229,"4264":4.4620676312,"4265":4.4264171656,"4266":4.3907667001,"4267":4.3507932569,"4268":4.3108198138,"4269":4.2666811498,"4270":4.2225424859,"4271":4.1744127964,"4272":4.1262831069,"4273":4.0743523377,"4274":4.0224215686,"4275":3.9668946667,"4276":3.9113677648,"4277":3.8524638696,"4278":3.7935599744,"4279":3.7315115526,"4280":3.6694631307,"4281":3.6045150591,"4282":3.5395669874,"4283":3.4719755864,"4284":3.4043841853,"4285":3.3344162071,"4286":3.2644482289,"4287":3.1923798053,"4288":3.1203113817,"4289":3.0464269338,"4290":2.9725424859,"4291":2.8971336019,"4292":2.8217247179,"4293":2.7450890022,"4294":2.6684532865,"4295":2.5908931852,"4296":2.5133330839,"4297":2.4351546914,"4298":2.3569762988,"4299":2.2784881494,"4300":2.2,"4301":2.1215118506,"4302":2.0430237012,"4303":1.9648453086,"4304":1.8866669161,"4305":1.8091068148,"4306":1.7315467135,"4307":1.6549109978,"4308":1.5782752821,"4309":1.5028663981,"4310":1.4274575141,"4311":1.3535730662,"4312":1.2796886183,"4313":1.2076201947,"4314":1.1355517711,"4315":1.0655837929,"4316":0.9956158147,"4317":0.9280244136,"4318":0.8604330126,"4319":0.7954849409,"4320":0.7305368693,"4321":0.6684884474,"4322":0.6064400256,"4323":0.5475361304,"4324":0.4886322352,"4325":0.4331053333,"4326":0.3775784314,"4327":0.3256476623,"4328":0.2737168931,"4329":0.2255872036,"4330":0.1774575141,"4331":0.1333188502,"4332":0.0891801862,"4333":0.0492067431,"4334":0.0092332999,"4335":-0.0264171656,"4336":-0.0620676312,"4337":-0.0932544229,"4338":-0.1244412147,"4339":-0.1510412527,"4340":-0.1776412907,"4341":-0.1995495968,"4342":-0.2214579028,"4343":-0.2385880148,"4344":-0.2557181268,"4345":-0.2680024401,"4346":-0.2802867533,"4347":-0.2876767872,"4348":-0.2950668211,"4349":-0.2975334105,"4350":-0.3,"4351":-0.2975334105,"4352":-0.2950668211,"4353":-0.2876767872,"4354":-0.2802867533,"4355":-0.2680024401,"4356":-0.2557181268,"4357":-0.2385880148,"4358":-0.2214579028,"4359":-0.1995495968,"4360":-0.1776412907,"4361":-0.1510412527,"4362":-0.1244412147,"4363":-0.0932544229,"4364":-0.0620676312,"4365":-0.0264171656,"4366":0.0092332999,"4367":0.0492067431,"4368":0.0891801862,"4369":0.1333188502,"4370":0.1774575141,"4371":0.2255872036,"4372":0.2737168931,"4373":0.3256476623,"4374":0.3775784314,"4375":0.4331053333,"4376":0.4886322352,"4377":0.5475361304,"4378":0.6064400256,"4379":0.6684884474,"4380":0.7305368693,"4381":0.7954849409,"4382":0.8604330126,"4383":0.9280244136,"4384":0.9956158147,"4385":1.0655837929,"4386":1.1355517711,"4387":1.2076201947,"4388":1.2796886183,"4389":1.3535730662,"4390":1.4274575141,"4391":1.5028663981,"4392":1.5782752821,"4393":1.6549109978,"4394":1.7315467135,"4395":1.8091068148,"4396":1.8866669161,"4397":1.9648453086,"4398":2.0430237012,"4399":2.1215118506,"4400":2.2,"4401":2.2784881494,"4402":2.3569762988,"4403":2.4351546914,"4404":2.5133330839,"4405":2.5908931852,"4406":2.6684532865,"4407":2.7450890022,"4408":2.8217247179,"4409":2.8971336019,"4410":2.9725424859,"4411":3.0464269338,"4412":3.1203113817,"4413":3.1923798053,"4414":3.2644482289,"4415":3.3344162071,"4416":3.4043841853,"4417":3.4719755864,"4418":3.5395669874,"4419":3.6045150591,"4420":3.6694631307,"4421":3.7315115526,"4422":3.7935599744,"4423":3.8524638696,"4424":3.9113677648,"4425":3.9668946667,"4426":4.0224215686,"4427":4.0743523377,"4428":4.1262831069,"4429":4.1744127964,"4430":4.2225424859,"4431":4.2666811498,"4432":4.3108198138,"4433":4.3507932569,"4434":4.3907667001,"4435":4.4264171656,"4436":4.4620676312,"4437":4.4932544229,"4438":4.5244412147,"4439":4.5510412527,"4440":4.5776412907,"4441":4.5995495968,"4442":4.6214579028,"4443":4.6385880148,"4444":4.6557181268,"4445":4.6680024401,"4446":4.6802867533,"4447":4.6876767872,"4448":4.6950668211,"4449":4.6975334105,"4450":4.7,"4451":4.6975334105,"4452":4.6950668211,"4453":4.6876767872,"4454":4.6802867533,"4455":4.6680024401,"4456":4.6557181268,"4457":4.6385880148,"4458":4.6214579028,"4459":4.5995495968,"4460":4.5776412907,"4461":4.5510412527,"4462":4.5244412147,"4463":4.4932544229,"4464":4.4620676312,"4465":4.4264171656,"4466":4.3907667001,"4467":4.3507932569,"4468":4.3108198138,"4469":4.2666811498,"4470":4.2225424859,"4471":4.1744127964,"4472":4.1262831069,"4473":4.0743523377,"4474":4.0224215686,"4475":3.9668946667,"4476":3.9113677648,"4477":3.8524638696,"4478":3.7935599744,"4479":3.7315115526,"4480":3.6694631307,"4481":3.6045150591,"4482":3.5395669874,"4483":3.4719755864,"4484":3.4043841853,"4485":3.3344162071,"4486":3.2644482289,"4487":3.1923798053,"4488":3.1203113817,"4489":3.0464269338,"4490":2.9725424859,"4491":2.8971336019,"4492":2.8217247179,"4493":2.7450890022,"4494":2.6684532865,"4495":2.5908931852,"4496":2.5133330839,"4497":2.4351546914,"4498":2.3569762988,"4499":2.2784881494,"4500":2.2,"4501":2.1215118506,"4502":2.0430237012,"4503":1.9648453086,"4504":1.8866669161,"4505":1.8091068148,"4506":1.7315467135,"4507":1.6549109978,"4508":1.5782752821,"4509":1.5028663981,"4510":1.4274575141,"4511":1.3535730662,"4512":1.2796886183,"4513":1.2076201947,"4514":1.1355517711,"4515":1.0655837929,"4516":0.9956158147,"4517":0.9280244136,"4518":0.8604330126,"4519":0.7954849409,"4520":0.7305368693,"4521":0.6684884474,"4522":0.6064400256,"4523":0.5475361304,"4524":0.4886322352,"4525":0.4331053333,"4526":0.3775784314,"4527":0.3256476623,"4528":0.2737168931,"4529":0.2255872036,"4530":0.1774575141,"4531":0.1333188502,"4532":0.0891801862,"4533":0.0492067431,"4534":0.0092332999,"4535":-0.0264171656,"4536":-0.0620676312,"4537":-0.0932544229,"4538":-0.1244412147,"4539":-0.1510412527,"4540":-0.1776412907,"4541":-0.1995495968,"4542":-0.2214579028,"4543":-0.2385880148,"4544":-0.2557181268,"4545":-0.2680024401,"4546":-0.2802867533,"4547":-0.2876767872,"4548":-0.2950668211,"4549":-0.2975334105,"4550":-0.3,"4551":-0.2975334105,"4552":-0.2950668211,"4553":-0.2876767872,"4554":-0.2802867533,"4555":-0.2680024401,"4556":-0.2557181268,"4557":-0.2385880148,"4558":-0.2214579028,"4559":-0.1995495968,"4560":-0.1776412907,"4561":-0.1510412527,"4562":-0.1244412147,"4563":-0.0932544229,"4564":-0.0620676312,"4565":-0.0264171656,"4566":0.0092332999,"4567":0.0492067431,"4568":0.0891801862,"4569":0.1333188502,"4570":0.1774575141,"4571":0.2255872036,"4572":0.2737168931,"4573":0.3256476623,"4574":0.3775784314,"4575":0.4331053333,"4576":0.4886322352,"4577":0.5475361304,"4578":0.6064400256,"4579":0.6684884474,"4580":0.7305368693,"4581":0.7954849409,"4582":0.8604330126,"4583":0.9280244136,"4584":0.9956158147,"4585":1.0655837929,"4586":1.1355517711,"4587":1.2076201947,"4588":1.2796886183,"4589":1.3535730662,"4590":1.4274575141,"4591":1.5028663981,"4592":1.5782752821,"4593":1.6549109978,"4594":1.7315467135,"4595":1.8091068148,"4596":1.8866669161,"4597":1.9648453086,"4598":2.0430237012,"4599":2.1215118506,"4600":2.2,"4601":2.2784881494,"4602":2.3569762988,"4603":2.4351546914,"4604":2.5133330839,"4605":2.5908931852,"4606":2.6684532865,"4607":2.7450890022,"4608":2.8217247179,"4609":2.8971336019,"4610":2.9725424859,"4611":3.0464269338,"4612":3.1203113817,"4613":3.1923798053,"4614":3.2644482289,"4615":3.3344162071,"4616":3.4043841853,"4617":3.4719755864,"4618":3.5395669874,"4619":3.6045150591,"4620":3.6694631307,"4621":3.7315115526,"4622":3.7935599744,"4623":3.8524638696,"4624":3.9113677648,"4625":3.9668946667,"4626":4.0224215686,"4627":4.0743523377,"4628":4.1262831069,"4629":4.1744127964,"4630":4.2225424859,"4631":4.2666811498,"4632":4.3108198138,"4633":4.3507932569,"4634":4.3907667001,"4635":4.4264171656,"4636":4.4620676312,"4637":4.4932544229,"4638":4.5244412147,"4639":4.5510412527,"4640":4.5776412907,"4641":4.5995495968,"4642":4.6214579028,"4643":4.6385880148,"4644":4.6557181268,"4645":4.6680024401,"4646":4.6802867533,"4647":4.6876767872,"4648":4.6950668211,"4649":4.6975334105,"4650":4.7,"4651":4.6975334105,"4652":4.6950668211,"4653":4.6876767872,"4654":4.6802867533,"4655":4.6680024401,"4656":4.6557181268,"4657":4.6385880148,"4658":4.6214579028,"4659":4.5995495968,"4660":4.5776412907,"4661":4.5510412527,"4662":4.5244412147,"4663":4.4932544229,"4664":4.4620676312,"4665":4.4264171656,"4666":4.3907667001,"4667":4.3507932569,"4668":4.3108198138,"4669":4.2666811498,"4670":4.2225424859,"4671":4.1744127964,"4672":4.1262831069,"4673":4.0743523377,"4674":4.0224215686,"4675":3.9668946667,"4676":3.9113677648,"4677":3.8524638696,"4678":3.7935599744,"4679":3.7315115526,"4680":3.6694631307,"4681":3.6045150591,"4682":3.5395669874,"4683":3.4719755864,"4684":3.4043841853,"4685":3.3344162071,"4686":3.2644482289,"4687":3.1923798053,"4688":3.1203113817,"4689":3.0464269338,"4690":2.9725424859,"4691":2.8971336019,"4692":2.8217247179,"4693":2.7450890022,"4694":2.6684532865,"4695":2.5908931852,"4696":2.5133330839,"4697":2.4351546914,"4698":2.3569762988,"4699":2.2784881494,"4700":2.2,"4701":2.1215118506,"4702":2.0430237012,"4703":1.9648453086,"4704":1.8866669161,"4705":1.8091068148,"4706":1.7315467135,"4707":1.6549109978,"4708":1.5782752821,"4709":1.5028663981,"4710":1.4274575141,"4711":1.3535730662,"4712":1.2796886183,"4713":1.2076201947,"4714":1.1355517711,"4715":1.0655837929,"4716":0.9956158147,"4717":0.9280244136,"4718":0.8604330126,"4719":0.7954849409,"4720":0.7305368693,"4721":0.6684884474,"4722":0.6064400256,"4723":0.5475361304,"4724":0.4886322352,"4725":0.4331053333,"4726":0.3775784314,"4727":0.3256476623,"4728":0.2737168931,"4729":0.2255872036,"4730":0.1774575141,"4731":0.1333188502,"4732":0.0891801862,"4733":0.0492067431,"4734":0.0092332999,"4735":-0.0264171656,"4736":-0.0620676312,"4737":-0.0932544229,"4738":-0.1244412147,"4739":-0.1510412527,"4740":-0.1776412907,"4741":-0.1995495968,"4742":-0.2214579028,"4743":-0.2385880148,"4744":-0.2557181268,"4745":-0.2680024401,"4746":-0.2802867533,"4747":-0.2876767872,"4748":-0.2950668211,"4749":-0.2975334105,"4750":-0.3,"4751":-0.2975334105,"4752":-0.2950668211,"4753":-0.2876767872,"4754":-0.2802867533,"4755":-0.2680024401,"4756":-0.2557181268,"4757":-0.2385880148,"4758":-0.2214579028,"4759":-0.1995495968,"4760":-0.1776412907,"4761":-0.1510412527,"4762":-0.1244412147,"4763":-0.0932544229,"4764":-0.0620676312,"4765":-0.0264171656,"4766":0.0092332999,"4767":0.0492067431,"4768":0.0891801862,"4769":0.1333188502,"4770":0.1774575141,"4771":0.2255872036,"4772":0.2737168931,"4773":0.3256476623,"4774":0.3775784314,"4775":0.4331053333,"4776":0.4886322352,"4777":0.5475361304,"4778":0.6064400256,"4779":0.6684884474,"4780":0.7305368693,"4781":0.7954849409,"4782":0.8604330126,"4783":0.9280244136,"4784":0.9956158147,"4785":1.0655837929,"4786":1.1355517711,"4787":1.2076201947,"4788":1.2796886183,"4789":1.3535730662,"4790":1.4274575141,"4791":1.5028663981,"4792":1.5782752821,"4793":1.6549109978,"4794":1.7315467135,"4795":1.8091068148,"4796":1.8866669161,"4797":1.9648453086,"4798":2.0430237012,"4799":2.1215118506,"4800":2.2,"4801":2.2784881494,"4802":2.3569762988,"4803":2.4351546914,"4804":2.5133330839,"4805":2.5908931852,"4806":2.6684532865,"4807":2.7450890022,"4808":2.8217247179,"4809":2.8971336019,"4810":2.9725424859,"4811":3.0464269338,"4812":3.1203113817,"4813":3.1923798053,"4814":3.2644482289,"4815":3.3344162071,"4816":3.4043841853,"4817":3.4719755864,"4818":3.5395669874,"4819":3.6045150591,"4820":3.6694631307,"4821":3.7315115526,"4822":3.7935599744,"4823":3.8524638696,"4824":3.9113677648,"4825":3.9668946667,"4826":4.0224215686,"4827":4.0743523377,"4828":4.1262831069,"4829":4.1744127964,"4830":4.2225424859,"4831":4.2666811498,"4832":4.3108198138,"4833":4.3507932569,"4834":4.3907667001,"4835":4.4264171656,"4836":4.4620676312,"4837":4.4932544229,"4838":4.5244412147,"4839":4.5510412527,"4840":4.5776412907,"4841":4.5995495968,"4842":4.6214579028,"4843":4.6385880148,"4844":4.6557181268,"4845":4.6680024401,"4846":4.6802867533,"4847":4.6876767872,"4848":4.6950668211,"4849":4.6975334105,"4850":4.7,"4851":4.6975334105,"4852":4.6950668211,"4853":4.6876767872,"4854":4.6802867533,"4855":4.6680024401,"4856":4.6557181268,"4857":4.6385880148,"4858":4.6214579028,"4859":4.5995495968,"4860":4.5776412907,"4861":4.5510412527,"4862":4.5244412147,"4863":4.4932544229,"4864":4.4620676312,"4865":4.4264171656,"4866":4.3907667001,"4867":4.3507932569,"4868":4.3108198138,"4869":4.2666811498,"4870":4.2225424859,"4871":4.1744127964,"4872":4.1262831069,"4873":4.0743523377,"4874":4.0224215686,"4875":3.9668946667,"4876":3.9113677648,"4877":3.8524638696,"4878":3.7935599744,"4879":3.7315115526,"4880":3.6694631307,"4881":3.6045150591,"4882":3.5395669874,"4883":3.4719755864,"4884":3.4043841853,"4885":3.3344162071,"4886":3.2644482289,"4887":3.1923798053,"4888":3.1203113817,"4889":3.0464269338,"4890":2.9725424859,"4891":2.8971336019,"4892":2.8217247179,"4893":2.7450890022,"4894":2.6684532865,"4895":2.5908931852,"4896":2.5133330839,"4897":2.4351546914,"4898":2.3569762988,"4899":2.2784881494,"4900":2.2,"4901":2.1215118506,"4902":2.0430237012,"4903":1.9648453086,"4904":1.8866669161,"4905":1.8091068148,"4906":1.7315467135,"4907":1.6549109978,"4908":1.5782752821,"4909":1.5028663981,"4910":1.4274575141,"4911":1.3535730662,"4912":1.2796886183,"4913":1.2076201947,"4914":1.1355517711,"4915":1.0655837929,"4916":0.9956158147,"4917":0.9280244136,"4918":0.8604330126,"4919":0.7954849409,"4920":0.7305368693,"4921":0.6684884474,"4922":0.6064400256,"4923":0.5475361304,"4924":0.4886322352,"4925":0.4331053333,"4926":0.3775784314,"4927":0.3256476623,"4928":0.2737168931,"4929":0.2255872036,"4930":0.1774575141,"4931":0.1333188502,"4932":0.0891801862,"4933":0.0492067431,"4934":0.0092332999,"4935":-0.0264171656,"4936":-0.0620676312,"4937":-0.0932544229,"4938":-0.1244412147,"4939":-0.1510412527,"4940":-0.1776412907,"4941":-0.1995495968,"4942":-0.2214579028,"4943":-0.2385880148,"4944":-0.2557181268,"4945":-0.2680024401,"4946":-0.2802867533,"4947":-0.2876767872,"4948":-0.2950668211,"4949":-0.2975334105,"4950":-0.3,"4951":-0.2975334105,"4952":-0.2950668211,"4953":-0.2876767872,"4954":-0.2802867533,"4955":-0.2680024401,"4956":-0.2557181268,"4957":-0.2385880148,"4958":-0.2214579028,"4959":-0.1995495968,"4960":-0.1776412907,"4961":-0.1510412527,"4962":-0.1244412147,"4963":-0.0932544229,"4964":-0.0620676312,"4965":-0.0264171656,"4966":0.0092332999,"4967":0.0492067431,"4968":0.0891801862,"4969":0.1333188502,"4970":0.1774575141,"4971":0.2255872036,"4972":0.2737168931,"4973":0.3256476623,"4974":0.3775784314,"4975":0.4331053333,"4976":0.4886322352,"4977":0.5475361304,"4978":0.6064400256,"4979":0.6684884474,"4980":0.7305368693,"4981":0.7954849409,"4982":0.8604330126,"4983":0.9280244136,"4984":0.9956158147,"4985":1.0655837929,"4986":1.1355517711,"4987":1.2076201947,"4988":1.2796886183,"4989":1.3535730662,"4990":1.4274575141,"4991":1.5028663981,"4992":1.5782752821,"4993":1.6549109978,"4994":1.7315467135,"4995":1.8091068148,"4996":1.8866669161,"4997":1.9648453086,"4998":2.0430237012,"4999":2.1215118506,"5000":2.2,"5001":2.2784881494,"5002":2.3569762988,"5003":2.4351546914,"5004":2.5133330839,"5005":2.5908931852,"5006":2.6684532865,"5007":2.7450890022,"5008":2.8217247179,"5009":2.8971336019,"5010":2.9725424859,"5011":3.0464269338,"5012":3.1203113817,"5013":3.1923798053,"5014":3.2644482289,"5015":3.3344162071,"5016":3.4043841853,"5017":3.4719755864,"5018":3.5395669874,"5019":3.6045150591,"5020":3.6694631307,"5021":3.7315115526,"5022":3.7935599744,"5023":3.8524638696,"5024":3.9113677648,"5025":3.9668946667,"5026":4.0224215686,"5027":4.0743523377,"5028":4.1262831069,"5029":4.1744127964,"5030":4.2225424859,"5031":4.2666811498,"5032":4.3108198138,"5033":4.3507932569,"5034":4.3907667001,"5035":4.4264171656,"5036":4.4620676312,"5037":4.4932544229,"5038":4.5244412147,"5039":4.5510412527,"5040":4.5776412907,"5041":4.5995495968,"5042":4.6214579028,"5043":4.6385880148,"5044":4.6557181268,"5045":4.6680024401,"5046":4.6802867533,"5047":4.6876767872,"5048":4.6950668211,"5049":4.6975334105,"5050":4.7,"5051":4.6975334105,"5052":4.6950668211,"5053":4.6876767872,"5054":4.6802867533,"5055":4.6680024401,"5056":4.6557181268,"5057":4.6385880148,"5058":4.6214579028,"5059":4.5995495968,"5060":4.5776412907,"5061":4.5510412527,"5062":4.5244412147,"5063":4.4932544229,"5064":4.4620676312,"5065":4.4264171656,"5066":4.3907667001,"5067":4.3507932569,"5068":4.3108198138,"5069":4.2666811498,"5070":4.2225424859,"5071":4.1744127964,"5072":4.1262831069,"5073":4.0743523377,"5074":4.0224215686,"5075":3.9668946667,"5076":3.9113677648,"5077":3.8524638696,"5078":3.7935599744,"5079":3.7315115526,"5080":3.6694631307,"5081":3.6045150591,"5082":3.5395669874,"5083":3.4719755864,"5084":3.4043841853,"5085":3.3344162071,"5086":3.2644482289,"5087":3.1923798053,"5088":3.1203113817,"5089":3.0464269338,"5090":2.9725424859,"5091":2.8971336019,"5092":2.8217247179,"5093":2.7450890022,"5094":2.6684532865,"5095":2.5908931852,"5096":2.5133330839,"5097":2.4351546914,"5098":2.3569762988,"5099":2.2784881494,"5100":2.2,"5101":2.1215118506,"5102":2.0430237012,"5103":1.9648453086,"5104":1.8866669161,"5105":1.8091068148,"5106":1.7315467135,"5107":1.6549109978,"5108":1.5782752821,"5109":1.5028663981,"5110":1.4274575141,"5111":1.3535730662,"5112":1.2796886183,"5113":1.2076201947,"5114":1.1355517711,"5115":1.0655837929,"5116":0.9956158147,"5117":0.9280244136,"5118":0.8604330126,"5119":0.7954849409,"5120":0.7305368693,"5121":0.6684884474,"5122":0.6064400256,"5123":0.5475361304,"5124":0.4886322352,"5125":0.4331053333,"5126":0.3775784314,"5127":0.3256476623,"5128":0.2737168931,"5129":0.2255872036,"5130":0.1774575141,"5131":0.1333188502,"5132":0.0891801862,"5133":0.0492067431,"5134":0.0092332999,"5135":-0.0264171656,"5136":-0.0620676312,"5137":-0.0932544229,"5138":-0.1244412147,"5139":-0.1510412527,"5140":-0.1776412907,"5141":-0.1995495968,"5142":-0.2214579028,"5143":-0.2385880148,"5144":-0.2557181268,"5145":-0.2680024401,"5146":-0.2802867533,"5147":-0.2876767872,"5148":-0.2950668211,"5149":-0.2975334105,"5150":-0.3,"5151":-0.2975334105,"5152":-0.2950668211,"5153":-0.2876767872,"5154":-0.2802867533,"5155":-0.2680024401,"5156":-0.2557181268,"5157":-0.2385880148,"5158":-0.2214579028,"5159":-0.1995495968,"5160":-0.1776412907,"5161":-0.1510412527,"5162":-0.1244412147,"5163":-0.0932544229,"5164":-0.0620676312,"5165":-0.0264171656,"5166":0.0092332999,"5167":0.0492067431,"5168":0.0891801862,"5169":0.1333188502,"5170":0.1774575141,"5171":0.2255872036,"5172":0.2737168931,"5173":0.3256476623,"5174":0.3775784314,"5175":0.4331053333,"5176":0.4886322352,"5177":0.5475361304,"5178":0.6064400256,"5179":0.6684884474,"5180":0.7305368693,"5181":0.7954849409,"5182":0.8604330126,"5183":0.9280244136,"5184":0.9956158147,"5185":1.0655837929,"5186":1.1355517711,"5187":1.2076201947,"5188":1.2796886183,"5189":1.3535730662,"5190":1.4274575141,"5191":1.5028663981,"5192":1.5782752821,"5193":1.6549109978,"5194":1.7315467135,"5195":1.8091068148,"5196":1.8866669161,"5197":1.9648453086,"5198":2.0430237012,"5199":2.1215118506,"5200":2.2,"5201":2.2784881494,"5202":2.3569762988,"5203":2.4351546914,"5204":2.5133330839,"5205":2.5908931852,"5206":2.6684532865,"5207":2.7450890022,"5208":2.8217247179,"5209":2.8971336019,"5210":2.9725424859,"5211":3.0464269338,"5212":3.1203113817,"5213":3.1923798053,"5214":3.2644482289,"5215":3.3344162071,"5216":3.4043841853,"5217":3.4719755864,"5218":3.5395669874,"5219":3.6045150591,"5220":3.6694631307,"5221":3.7315115526,"5222":3.7935599744,"5223":3.8524638696,"5224":3.9113677648,"5225":3.9668946667,"5226":4.0224215686,"5227":4.0743523377,"5228":4.1262831069,"5229":4.1744127964,"5230":4.2225424859,"5231":4.2666811498,"5232":4.3108198138,"5233":4.3507932569,"5234":4.3907667001,"5235":4.4264171656,"5236":4.4620676312,"5237":4.4932544229,"5238":4.5244412147,"5239":4.5510412527,"5240":4.5776412907,"5241":4.5995495968,"5242":4.6214579028,"5243":4.6385880148,"5244":4.6557181268,"5245":4.6680024401,"5246":4.6802867533,"5247":4.6876767872,"5248":4.6950668211,"5249":4.6975334105,"5250":4.7,"5251":4.6975334105,"5252":4.6950668211,"5253":4.6876767872,"5254":4.6802867533,"5255":4.6680024401,"5256":4.6557181268,"5257":4.6385880148,"5258":4.6214579028,"5259":4.5995495968,"5260":4.5776412907,"5261":4.5510412527,"5262":4.5244412147,"5263":4.4932544229,"5264":4.4620676312,"5265":4.4264171656,"5266":4.3907667001,"5267":4.3507932569,"5268":4.3108198138,"5269":4.2666811498,"5270":4.2225424859,"5271":4.1744127964,"5272":4.1262831069,"5273":4.0743523377,"5274":4.0224215686,"5275":3.9668946667,"5276":3.9113677648,"5277":3.8524638696,"5278":3.7935599744,"5279":3.7315115526,"5280":3.6694631307,"5281":3.6045150591,"5282":3.5395669874,"5283":3.4719755864,"5284":3.4043841853,"5285":3.3344162071,"5286":3.2644482289,"5287":3.1923798053,"5288":3.1203113817,"5289":3.0464269338,"5290":2.9725424859,"5291":2.8971336019,"5292":2.8217247179,"5293":2.7450890022,"5294":2.6684532865,"5295":2.5908931852,"5296":2.5133330839,"5297":2.4351546914,"5298":2.3569762988,"5299":2.2784881494,"5300":2.2,"5301":2.1215118506,"5302":2.0430237012,"5303":1.9648453086,"5304":1.8866669161,"5305":1.8091068148,"5306":1.7315467135,"5307":1.6549109978,"5308":1.5782752821,"5309":1.5028663981,"5310":1.4274575141,"5311":1.3535730662,"5312":1.2796886183,"5313":1.2076201947,"5314":1.1355517711,"5315":1.0655837929,"5316":0.9956158147,"5317":0.9280244136,"5318":0.8604330126,"5319":0.7954849409,"5320":0.7305368693,"5321":0.6684884474,"5322":0.6064400256,"5323":0.5475361304,"5324":0.4886322352,"5325":0.4331053333,"5326":0.3775784314,"5327":0.3256476623,"5328":0.2737168931,"5329":0.2255872036,"5330":0.1774575141,"5331":0.1333188502,"5332":0.0891801862,"5333":0.0492067431,"5334":0.0092332999,"5335":-0.0264171656,"5336":-0.0620676312,"5337":-0.0932544229,"5338":-0.1244412147,"5339":-0.1510412527,"5340":-0.1776412907,"5341":-0.1995495968,"5342":-0.2214579028,"5343":-0.2385880148,"5344":-0.2557181268,"5345":-0.2680024401,"5346":-0.2802867533,"5347":-0.2876767872,"5348":-0.2950668211,"5349":-0.2975334105,"5350":-0.3,"5351":-0.2975334105,"5352":-0.2950668211,"5353":-0.2876767872,"5354":-0.2802867533,"5355":-0.2680024401,"5356":-0.2557181268,"5357":-0.2385880148,"5358":-0.2214579028,"5359":-0.1995495968,"5360":-0.1776412907,"5361":-0.1510412527,"5362":-0.1244412147,"5363":-0.0932544229,"5364":-0.0620676312,"5365":-0.0264171656,"5366":0.0092332999,"5367":0.0492067431,"5368":0.0891801862,"5369":0.1333188502,"5370":0.1774575141,"5371":0.2255872036,"5372":0.2737168931,"5373":0.3256476623,"5374":0.3775784314,"5375":0.4331053333,"5376":0.4886322352,"5377":0.5475361304,"5378":0.6064400256,"5379":0.6684884474,"5380":0.7305368693,"5381":0.7954849409,"5382":0.8604330126,"5383":0.9280244136,"5384":0.9956158147,"5385":1.0655837929,"5386":1.1355517711,"5387":1.2076201947,"5388":1.2796886183,"5389":1.3535730662,"5390":1.4274575141,"5391":1.5028663981,"5392":1.5782752821,"5393":1.6549109978,"5394":1.7315467135,"5395":1.8091068148,"5396":1.8866669161,"5397":1.9648453086,"5398":2.0430237012,"5399":2.1215118506,"5400":2.2,"5401":2.2784881494,"5402":2.3569762988,"5403":2.4351546914,"5404":2.5133330839,"5405":2.5908931852,"5406":2.6684532865,"5407":2.7450890022,"5408":2.8217247179,"5409":2.8971336019,"5410":2.9725424859,"5411":3.0464269338,"5412":3.1203113817,"5413":3.1923798053,"5414":3.2644482289,"5415":3.3344162071,"5416":3.4043841853,"5417":3.4719755864,"5418":3.5395669874,"5419":3.6045150591,"5420":3.6694631307,"5421":3.7315115526,"5422":3.7935599744,"5423":3.8524638696,"5424":3.9113677648,"5425":3.9668946667,"5426":4.0224215686,"5427":4.0743523377,"5428":4.1262831069,"5429":4.1744127964,"5430":4.2225424859,"5431":4.2666811498,"5432":4.3108198138,"5433":4.3507932569,"5434":4.3907667001,"5435":4.4264171656,"5436":4.4620676312,"5437":4.4932544229,"5438":4.5244412147,"5439":4.5510412527,"5440":4.5776412907,"5441":4.5995495968,"5442":4.6214579028,"5443":4.6385880148,"5444":4.6557181268,"5445":4.6680024401,"5446":4.6802867533,"5447":4.6876767872,"5448":4.6950668211,"5449":4.6975334105,"5450":4.7,"5451":4.6975334105,"5452":4.6950668211,"5453":4.6876767872,"5454":4.6802867533,"5455":4.6680024401,"5456":4.6557181268,"5457":4.6385880148,"5458":4.6214579028,"5459":4.5995495968,"5460":4.5776412907,"5461":4.5510412527,"5462":4.5244412147,"5463":4.4932544229,"5464":4.4620676312,"5465":4.4264171656,"5466":4.3907667001,"5467":4.3507932569,"5468":4.3108198138,"5469":4.2666811498,"5470":4.2225424859,"5471":4.1744127964,"5472":4.1262831069,"5473":4.0743523377,"5474":4.0224215686,"5475":3.9668946667,"5476":3.9113677648,"5477":3.8524638696,"5478":3.7935599744,"5479":3.7315115526,"5480":3.6694631307,"5481":3.6045150591,"5482":3.5395669874,"5483":3.4719755864,"5484":3.4043841853,"5485":3.3344162071,"5486":3.2644482289,"5487":3.1923798053,"5488":3.1203113817,"5489":3.0464269338,"5490":2.9725424859,"5491":2.8971336019,"5492":2.8217247179,"5493":2.7450890022,"5494":2.6684532865,"5495":2.5908931852,"5496":2.5133330839,"5497":2.4351546914,"5498":2.3569762988,"5499":2.2784881494,"5500":2.2,"5501":2.1215118506,"5502":2.0430237012,"5503":1.9648453086,"5504":1.8866669161,"5505":1.8091068148,"5506":1.7315467135,"5507":1.6549109978,"5508":1.5782752821,"5509":1.5028663981,"5510":1.4274575141,"5511":1.3535730662,"5512":1.2796886183,"5513":1.2076201947,"5514":1.1355517711,"5515":1.0655837929,"5516":0.9956158147,"5517":0.9280244136,"5518":0.8604330126,"5519":0.7954849409,"5520":0.7305368693,"5521":0.6684884474,"5522":0.6064400256,"5523":0.5475361304,"5524":0.4886322352,"5525":0.4331053333,"5526":0.3775784314,"5527":0.3256476623,"5528":0.2737168931,"5529":0.2255872036,"5530":0.1774575141,"5531":0.1333188502,"5532":0.0891801862,"5533":0.0492067431,"5534":0.0092332999,"5535":-0.0264171656,"5536":-0.0620676312,"5537":-0.0932544229,"5538":-0.1244412147,"5539":-0.1510412527,"5540":-0.1776412907,"5541":-0.1995495968,"5542":-0.2214579028,"5543":-0.2385880148,"5544":-0.2557181268,"5545":-0.2680024401,"5546":-0.2802867533,"5547":-0.2876767872,"5548":-0.2950668211,"5549":-0.2975334105,"5550":-0.3,"5551":-0.2975334105,"5552":-0.2950668211,"5553":-0.2876767872,"5554":-0.2802867533,"5555":-0.2680024401,"5556":-0.2557181268,"5557":-0.2385880148,"5558":-0.2214579028,"5559":-0.1995495968,"5560":-0.1776412907,"5561":-0.1510412527,"5562":-0.1244412147,"5563":-0.0932544229,"5564":-0.0620676312,"5565":-0.0264171656,"5566":0.0092332999,"5567":0.0492067431,"5568":0.0891801862,"5569":0.1333188502,"5570":0.1774575141,"5571":0.2255872036,"5572":0.2737168931,"5573":0.3256476623,"5574":0.3775784314,"5575":0.4331053333,"5576":0.4886322352,"5577":0.5475361304,"5578":0.6064400256,"5579":0.6684884474,"5580":0.7305368693,"5581":0.7954849409,"5582":0.8604330126,"5583":0.9280244136,"5584":0.9956158147,"5585":1.0655837929,"5586":1.1355517711,"5587":1.2076201947,"5588":1.2796886183,"5589":1.3535730662,"5590":1.4274575141,"5591":1.5028663981,"5592":1.5782752821,"5593":1.6549109978,"5594":1.7315467135,"5595":1.8091068148,"5596":1.8866669161,"5597":1.9648453086,"5598":2.0430237012,"5599":2.1215118506,"5600":2.2,"5601":2.2784881494,"5602":2.3569762988,"5603":2.4351546914,"5604":2.5133330839,"5605":2.5908931852,"5606":2.6684532865,"5607":2.7450890022,"5608":2.8217247179,"5609":2.8971336019,"5610":2.9725424859,"5611":3.0464269338,"5612":3.1203113817,"5613":3.1923798053,"5614":3.2644482289,"5615":3.3344162071,"5616":3.4043841853,"5617":3.4719755864,"5618":3.5395669874,"5619":3.6045150591,"5620":3.6694631307,"5621":3.7315115526,"5622":3.7935599744,"5623":3.8524638696,"5624":3.9113677648,"5625":3.9668946667,"5626":4.0224215686,"5627":4.0743523377,"5628":4.1262831069,"5629":4.1744127964,"5630":4.2225424859,"5631":4.2666811498,"5632":4.3108198138,"5633":4.3507932569,"5634":4.3907667001,"5635":4.4264171656,"5636":4.4620676312,"5637":4.4932544229,"5638":4.5244412147,"5639":4.5510412527,"5640":4.5776412907,"5641":4.5995495968,"5642":4.6214579028,"5643":4.6385880148,"5644":4.6557181268,"5645":4.6680024401,"5646":4.6802867533,"5647":4.6876767872,"5648":4.6950668211,"5649":4.6975334105,"5650":4.7,"5651":4.6975334105,"5652":4.6950668211,"5653":4.6876767872,"5654":4.6802867533,"5655":4.6680024401,"5656":4.6557181268,"5657":4.6385880148,"5658":4.6214579028,"5659":4.5995495968,"5660":4.5776412907,"5661":4.5510412527,"5662":4.5244412147,"5663":4.4932544229,"5664":4.4620676312,"5665":4.4264171656,"5666":4.3907667001,"5667":4.3507932569,"5668":4.3108198138,"5669":4.2666811498,"5670":4.2225424859,"5671":4.1744127964,"5672":4.1262831069,"5673":4.0743523377,"5674":4.0224215686,"5675":3.9668946667,"5676":3.9113677648,"5677":3.8524638696,"5678":3.7935599744,"5679":3.7315115526,"5680":3.6694631307,"5681":3.6045150591,"5682":3.5395669874,"5683":3.4719755864,"5684":3.4043841853,"5685":3.3344162071,"5686":3.2644482289,"5687":3.1923798053,"5688":3.1203113817,"5689":3.0464269338,"5690":2.9725424859,"5691":2.8971336019,"5692":2.8217247179,"5693":2.7450890022,"5694":2.6684532865,"5695":2.5908931852,"5696":2.5133330839,"5697":2.4351546914,"5698":2.3569762988,"5699":2.2784881494,"5700":2.2,"5701":2.1215118506,"5702":2.0430237012,"5703":1.9648453086,"5704":1.8866669161,"5705":1.8091068148,"5706":1.7315467135,"5707":1.6549109978,"5708":1.5782752821,"5709":1.5028663981,"5710":1.4274575141,"5711":1.3535730662,"5712":1.2796886183,"5713":1.2076201947,"5714":1.1355517711,"5715":1.0655837929,"5716":0.9956158147,"5717":0.9280244136,"5718":0.8604330126,"5719":0.7954849409,"5720":0.7305368693,"5721":0.6684884474,"5722":0.6064400256,"5723":0.5475361304,"5724":0.4886322352,"5725":0.4331053333,"5726":0.3775784314,"5727":0.3256476623,"5728":0.2737168931,"5729":0.2255872036,"5730":0.1774575141,"5731":0.1333188502,"5732":0.0891801862,"5733":0.0492067431,"5734":0.0092332999,"5735":-0.0264171656,"5736":-0.0620676312,"5737":-0.0932544229,"5738":-0.1244412147,"5739":-0.1510412527,"5740":-0.1776412907,"5741":-0.1995495968,"5742":-0.2214579028,"5743":-0.2385880148,"5744":-0.2557181268,"5745":-0.2680024401,"5746":-0.2802867533,"5747":-0.2876767872,"5748":-0.2950668211,"5749":-0.2975334105,"5750":-0.3,"5751":-0.2975334105,"5752":-0.2950668211,"5753":-0.2876767872,"5754":-0.2802867533,"5755":-0.2680024401,"5756":-0.2557181268,"5757":-0.2385880148,"5758":-0.2214579028,"5759":-0.1995495968,"5760":-0.1776412907,"5761":-0.1510412527,"5762":-0.1244412147,"5763":-0.0932544229,"5764":-0.0620676312,"5765":-0.0264171656,"5766":0.0092332999,"5767":0.0492067431,"5768":0.0891801862,"5769":0.1333188502,"5770":0.1774575141,"5771":0.2255872036,"5772":0.2737168931,"5773":0.3256476623,"5774":0.3775784314,"5775":0.4331053333,"5776":0.4886322352,"5777":0.5475361304,"5778":0.6064400256,"5779":0.6684884474,"5780":0.7305368693,"5781":0.7954849409,"5782":0.8604330126,"5783":0.9280244136,"5784":0.9956158147,"5785":1.0655837929,"5786":1.1355517711,"5787":1.2076201947,"5788":1.2796886183,"5789":1.3535730662,"5790":1.4274575141,"5791":1.5028663981,"5792":1.5782752821,"5793":1.6549109978,"5794":1.7315467135,"5795":1.8091068148,"5796":1.8866669161,"5797":1.9648453086,"5798":2.0430237012,"5799":2.1215118506,"5800":2.2,"5801":2.2784881494,"5802":2.3569762988,"5803":2.4351546914,"5804":2.5133330839,"5805":2.5908931852,"5806":2.6684532865,"5807":2.7450890022,"5808":2.8217247179,"5809":2.8971336019,"5810":2.9725424859,"5811":3.0464269338,"5812":3.1203113817,"5813":3.1923798053,"5814":3.2644482289,"5815":3.3344162071,"5816":3.4043841853,"5817":3.4719755864,"5818":3.5395669874,"5819":3.6045150591,"5820":3.6694631307,"5821":3.7315115526,"5822":3.7935599744,"5823":3.8524638696,"5824":3.9113677648,"5825":3.9668946667,"5826":4.0224215686,"5827":4.0743523377,"5828":4.1262831069,"5829":4.1744127964,"5830":4.2225424859,"5831":4.2666811498,"5832":4.3108198138,"5833":4.3507932569,"5834":4.3907667001,"5835":4.4264171656,"5836":4.4620676312,"5837":4.4932544229,"5838":4.5244412147,"5839":4.5510412527,"5840":4.5776412907,"5841":4.5995495968,"5842":4.6214579028,"5843":4.6385880148,"5844":4.6557181268,"5845":4.6680024401,"5846":4.6802867533,"5847":4.6876767872,"5848":4.6950668211,"5849":4.6975334105,"5850":4.7,"5851":4.6975334105,"5852":4.6950668211,"5853":4.6876767872,"5854":4.6802867533,"5855":4.6680024401,"5856":4.6557181268,"5857":4.6385880148,"5858":4.6214579028,"5859":4.5995495968,"5860":4.5776412907,"5861":4.5510412527,"5862":4.5244412147,"5863":4.4932544229,"5864":4.4620676312,"5865":4.4264171656,"5866":4.3907667001,"5867":4.3507932569,"5868":4.3108198138,"5869":4.2666811498,"5870":4.2225424859,"5871":4.1744127964,"5872":4.1262831069,"5873":4.0743523377,"5874":4.0224215686,"5875":3.9668946667,"5876":3.9113677648,"5877":3.8524638696,"5878":3.7935599744,"5879":3.7315115526,"5880":3.6694631307,"5881":3.6045150591,"5882":3.5395669874,"5883":3.4719755864,"5884":3.4043841853,"5885":3.3344162071,"5886":3.2644482289,"5887":3.1923798053,"5888":3.1203113817,"5889":3.0464269338,"5890":2.9725424859,"5891":2.8971336019,"5892":2.8217247179,"5893":2.7450890022,"5894":2.6684532865,"5895":2.5908931852,"5896":2.5133330839,"5897":2.4351546914,"5898":2.3569762988,"5899":2.2784881494,"5900":2.2,"5901":2.1215118506,"5902":2.0430237012,"5903":1.9648453086,"5904":1.8866669161,"5905":1.8091068148,"5906":1.7315467135,"5907":1.6549109978,"5908":1.5782752821,"5909":1.5028663981,"5910":1.4274575141,"5911":1.3535730662,"5912":1.2796886183,"5913":1.2076201947,"5914":1.1355517711,"5915":1.0655837929,"5916":0.9956158147,"5917":0.9280244136,"5918":0.8604330126,"5919":0.7954849409,"5920":0.7305368693,"5921":0.6684884474,"5922":0.6064400256,"5923":0.5475361304,"5924":0.4886322352,"5925":0.4331053333,"5926":0.3775784314,"5927":0.3256476623,"5928":0.2737168931,"5929":0.2255872036,"5930":0.1774575141,"5931":0.1333188502,"5932":0.0891801862,"5933":0.0492067431,"5934":0.0092332999,"5935":-0.0264171656,"5936":-0.0620676312,"5937":-0.0932544229,"5938":-0.1244412147,"5939":-0.1510412527,"5940":-0.1776412907,"5941":-0.1995495968,"5942":-0.2214579028,"5943":-0.2385880148,"5944":-0.2557181268,"5945":-0.2680024401,"5946":-0.2802867533,"5947":-0.2876767872,"5948":-0.2950668211,"5949":-0.2975334105,"5950":-0.3,"5951":-0.2975334105,"5952":-0.2950668211,"5953":-0.2876767872,"5954":-0.2802867533,"5955":-0.2680024401,"5956":-0.2557181268,"5957":-0.2385880148,"5958":-0.2214579028,"5959":-0.1995495968,"5960":-0.1776412907,"5961":-0.1510412527,"5962":-0.1244412147,"5963":-0.0932544229,"5964":-0.0620676312,"5965":-0.0264171656,"5966":0.0092332999,"5967":0.0492067431,"5968":0.0891801862,"5969":0.1333188502,"5970":0.1774575141,"5971":0.2255872036,"5972":0.2737168931,"5973":0.3256476623,"5974":0.3775784314,"5975":0.4331053333,"5976":0.4886322352,"5977":0.5475361304,"5978":0.6064400256,"5979":0.6684884474,"5980":0.7305368693,"5981":0.7954849409,"5982":0.8604330126,"5983":0.9280244136,"5984":0.9956158147,"5985":1.0655837929,"5986":1.1355517711,"5987":1.2076201947,"5988":1.2796886183,"5989":1.3535730662,"5990":1.4274575141,"5991":1.5028663981,"5992":1.5782752821,"5993":1.6549109978,"5994":1.7315467135,"5995":1.8091068148,"5996":1.8866669161,"5997":1.9648453086,"5998":2.0430237012,"5999":2.1215118506,"6000":2.2},"pressure_in":{"0":880.0000004098,"1":897.4128112586,"2":917.4321364123,"3":939.4787358872,"4":963.1399655388,"5":987.9943078132,"6":1013.924088351,"7":1040.5369698698,"8":1067.8531057699,"9":1095.478275358,"10":1123.5437457402,"11":1151.6353839957,"12":1179.9788572408,"13":1208.1284536092,"14":1236.3923668127,"15":1264.2860009399,"16":1292.1913774847,"17":1319.580752281,"18":1346.9033681272,"19":1373.5862063406,"20":1400.1404835498,"21":1425.9472998112,"22":1451.5754603799,"23":1476.3606720781,"24":1500.9254705578,"25":1524.5614592076,"26":1547.9413477724,"27":1570.3145243454,"28":1592.4004686869,"29":1613.4086974589,"30":1634.1021104469,"31":1653.653051118,"32":1672.8644805702,"33":1690.8745482732,"34":1708.5228706479,"35":1724.9166087983,"36":1740.9285593383,"37":1755.6382852772,"38":1769.948208808,"39":1782.9138365159,"40":1795.463579709,"41":1806.6325541074,"42":1817.371445001,"43":1826.6987430044,"44":1835.5836206346,"45":1843.0317882146,"46":1850.0270568703,"47":1855.5662610455,"48":1860.6439516464,"49":1864.2520329209,"50":1867.3918594953,"51":1869.054374816,"52":1870.2437778286,"53":1869.9540272631,"54":1869.1881981516,"55":1866.9472306678,"56":1864.2291137637,"57":1860.0457090098,"58":1855.3859782949,"59":1849.2766023556,"60":1842.6936114169,"61":1834.6823452911,"62":1826.2020494903,"63":1816.3204895988,"64":1805.9763399602,"65":1794.2634704133,"66":1782.0962791019,"67":1768.5983157781,"68":1754.6560933248,"69":1739.4263000678,"70":1723.7640647297,"71":1706.8625421798,"72":1689.5421020158,"73":1671.0355497654,"74":1652.125258167,"75":1632.0867110817,"76":1611.6611966456,"77":1590.1697363251,"78":1568.3096080769,"79":1545.4500505486,"80":1522.2415796453,"81":1498.1041404933,"82":1473.6389196332,"83":1448.3188578625,"84":1422.6934397319,"85":1396.2906817586,"86":1369.6061979283,"87":1342.2249431715,"88":1314.5867049393,"89":1286.3350145629,"90":1257.8520973136,"91":1228.8414677377,"92":1199.6262804546,"93":1169.9712033158,"94":1140.1390449425,"95":1109.956555238,"96":1079.6251596384,"97":1049.034373836,"98":1018.3234451465,"99":987.4450910817,"100":956.4758312905,"101":925.4317717058,"102":894.3264023214,"103":863.2391539278,"104":832.1204336245,"105":801.1126835826,"106":770.1034237272,"107":739.297545456,"108":708.5201254268,"109":678.0376956508,"110":647.6135798614,"111":617.5748988028,"112":587.624157337,"113":558.1477739452,"114":528.7886086952,"115":499.990852788,"116":471.3391309654,"117":443.3336541283,"118":415.5024509888,"119":388.3997780439,"120":361.4989306311,"121":335.4060234463,"122":309.5416971148,"123":284.5615324738,"124":259.8358019032,"125":236.0669651033,"126":212.577411456,"127":190.1137072369,"128":167.9530330497,"129":146.8831153894,"130":126.1387787189,"131":106.5458009563,"132":87.2996702223,"133":69.2609568894,"134":51.5889877771,"135":35.1757294344,"136":19.1476651322,"137":4.4246374118,"138":-9.8962666329,"139":-22.8709586669,"140":-35.4281843886,"141":-46.6033355543,"142":-57.3473253197,"143":-66.6788324009,"144":-75.5671845911,"145":-83.0182203925,"146":-90.015856742,"147":-95.5570154294,"148":-100.6363194645,"149":-104.245732616,"150":-107.3866586441,"151":-109.050081555,"152":-110.2402337761,"153":-109.9511016762,"154":-109.1857831031,"155":-106.9452370647,"156":-104.2274680602,"157":-100.0443504948,"158":-95.3848568516,"159":-89.2756766132,"160":-82.692847224,"161":-74.681714456,"162":-66.2015287409,"163":-56.3200597244,"164":-45.9759851023,"165":-34.263177481,"166":-22.0960372886,"167":-8.5981161632,"168":5.3440714558,"169":20.5738359572,"170":36.2360475578,"171":53.1375505126,"172":70.4579745011,"173":88.9645133987,"174":107.8747939744,"175":127.9133319606,"176":148.3388388855,"177":169.8302930056,"178":191.6904161353,"179":214.5499694384,"180":237.7584368538,"181":261.8958731266,"182":286.3610916099,"183":311.6811514186,"184":337.3065679295,"185":363.7093245659,"186":390.3938072925,"187":417.7750611383,"188":445.4132986183,"189":473.6649883739,"190":502.1479051107,"191":531.1585342635,"192":560.3737211974,"193":590.028798048,"194":619.8609561832,"195":650.0434456913,"196":680.3748411287,"197":710.9656267973,"198":741.6765553762,"199":772.5549093498,"200":803.5241690657,"201":834.5682285882,"202":865.6735979214,"203":896.7608462725,"204":927.879566541,"205":958.8873165539,"206":989.8965763855,"207":1020.7024546371,"208":1051.47987465,"209":1081.9623044126,"210":1112.386420191,"211":1142.4251012404,"212":1172.3758426987,"213":1201.8522260843,"214":1231.2113913291,"215":1260.0091472321,"216":1288.6608690512,"217":1316.6663458854,"218":1344.4975490225,"219":1371.6002219654,"220":1398.5010693766,"221":1424.59397656,"222":1450.4583028904,"223":1475.4384675306,"224":1500.1641981003,"225":1523.9330348997,"226":1547.4225885464,"227":1569.8862927651,"228":1592.0469669519,"229":1613.116884612,"230":1633.8612212822,"231":1653.4541990446,"232":1672.7003297785,"233":1690.7390431112,"234":1708.4110122234,"235":1724.8242705661,"236":1740.8523348682,"237":1755.5753625885,"238":1769.8962666332,"239":1782.8709586671,"240":1795.4281843887,"241":1806.6033355544,"242":1817.3473253199,"243":1826.678832401,"244":1835.5671845912,"245":1843.0182203926,"246":1850.0158567421,"247":1855.5570154295,"248":1860.6363194645,"249":1864.245732616,"250":1867.3866586441,"251":1869.0500815551,"252":1870.2402337761,"253":1869.9511016762,"254":1869.1857831031,"255":1866.9452370647,"256":1864.2274680602,"257":1860.0443504948,"258":1855.3848568516,"259":1849.2756766132,"260":1842.692847224,"261":1834.681714456,"262":1826.201528741,"263":1816.3200597244,"264":1805.9759851023,"265":1794.263177481,"266":1782.0960372886,"267":1768.5981161632,"268":1754.6559285442,"269":1739.4261640428,"270":1723.7639524422,"271":1706.8624494874,"272":1689.5420254989,"273":1671.0354866013,"274":1652.1252060256,"275":1632.0866680394,"276":1611.6611611145,"277":1590.1697069944,"278":1568.3095838647,"279":1545.4500305616,"280":1522.2415631462,"281":1498.1041268734,"282":1473.6389083901,"283":1448.3188485814,"284":1422.6934320705,"285":1396.2906754341,"286":1369.6061927075,"287":1342.2249388617,"288":1314.5867013817,"289":1286.3350116261,"290":1257.8520948893,"291":1228.8414657365,"292":1199.6262788026,"293":1169.971201952,"294":1140.1390438168,"295":1109.9565543087,"296":1079.6251588713,"297":1049.0343732027,"298":1018.3234446238,"299":987.4450906502,"300":956.4758309343,"301":925.4317714118,"302":894.3264020786,"303":863.2391537275,"304":832.120433459,"305":801.1126834461,"306":770.1034236145,"307":739.2975453629,"308":708.52012535,"309":678.0376955874,"310":647.613579809,"311":617.5748987596,"312":587.6241573013,"313":558.1477739157,"314":528.7886086709,"315":499.9908527679,"316":471.3391309488,"317":443.3336541146,"318":415.5024509775,"319":388.3997780346,"320":361.4989306234,"321":335.40602344,"322":309.5416971096,"323":284.5615324694,"324":259.8358018997,"325":236.0669651003,"326":212.5774114536,"327":190.1137072349,"328":167.9530330481,"329":146.883115388,"330":126.1387787178,"331":106.5458009554,"332":87.2996702215,"333":69.2609568888,"334":51.5889877766,"335":35.1757294339,"336":19.1476651318,"337":4.4246374115,"338":-9.8962666332,"339":-22.8709586671,"340":-35.4281843887,"341":-46.6033355544,"342":-57.3473253199,"343":-66.678832401,"344":-75.5671845912,"345":-83.0182203926,"346":-90.0158567421,"347":-95.5570154295,"348":-100.6363194645,"349":-104.245732616,"350":-107.3866586441,"351":-109.0500815551,"352":-110.2402337761,"353":-109.9511016762,"354":-109.1857831031,"355":-106.9452370647,"356":-104.2274680602,"357":-100.0443504948,"358":-95.3848568516,"359":-89.2756766132,"360":-82.692847224,"361":-74.681714456,"362":-66.201528741,"363":-56.3200597244,"364":-45.9759851023,"365":-34.263177481,"366":-22.0960372886,"367":-8.5981161632,"368":5.3440714558,"369":20.5738359572,"370":36.2360475578,"371":53.1375505127,"372":70.4579745011,"373":88.9645133987,"374":107.8747939744,"375":127.9133319606,"376":148.3388388855,"377":169.8302930056,"378":191.6904161353,"379":214.5499694384,"380":237.7584368538,"381":261.8958731266,"382":286.3610916099,"383":311.6811514186,"384":337.3065679295,"385":363.7093245659,"386":390.3938072925,"387":417.7750611383,"388":445.4132986183,"389":473.6649883739,"390":502.1479051107,"391":531.1585342635,"392":560.3737211974,"393":590.028798048,"394":619.8609561832,"395":650.0434456913,"396":680.3748411287,"397":710.9656267973,"398":741.6765553762,"399":772.5549093498,"400":803.5241690657,"401":834.5682285882,"402":865.6735979214,"403":896.7608462725,"404":927.879566541,"405":958.8873165539,"406":989.8965763855,"407":1020.7024546371,"408":1051.47987465,"409":1081.9623044126,"410":1112.386420191,"411":1142.4251012404,"412":1172.3758426987,"413":1201.8522260843,"414":1231.2113913291,"415":1260.0091472321,"416":1288.6608690512,"417":1316.6663458854,"418":1344.4975490225,"419":1371.6002219654,"420":1398.5010693766,"421":1424.59397656,"422":1450.4583028904,"423":1475.4384675306,"424":1500.1641981003,"425":1523.9330348997,"426":1547.4225885464,"427":1569.8862927651,"428":1592.0469669519,"429":1613.116884612,"430":1633.8612212822,"431":1653.4541990446,"432":1672.7003297785,"433":1690.7390431112,"434":1708.4110122234,"435":1724.8242705661,"436":1740.8523348682,"437":1755.5753625885,"438":1769.8962666332,"439":1782.8709586671,"440":1795.4281843887,"441":1806.6033355544,"442":1817.3473253199,"443":1826.678832401,"444":1835.5671845912,"445":1843.0182203926,"446":1850.0158567421,"447":1855.5570154295,"448":1860.6363194645,"449":1864.245732616,"450":1867.3866586441,"451":1869.0500815551,"452":1870.2402337761,"453":1869.9511016762,"454":1869.1857831031,"455":1866.9452370647,"456":1864.2274680602,"457":1860.0443504948,"458":1855.3848568516,"459":1849.2756766132,"460":1842.692847224,"461":1834.681714456,"462":1826.201528741,"463":1816.3200597244,"464":1805.9759851023,"465":1794.263177481,"466":1782.0960372886,"467":1768.5981161632,"468":1754.6559285442,"469":1739.4261640428,"470":1723.7639524422,"471":1706.8624494874,"472":1689.5420254989,"473":1671.0354866013,"474":1652.1252060256,"475":1632.0866680394,"476":1611.6611611145,"477":1590.1697069944,"478":1568.3095838647,"479":1545.4500305616,"480":1522.2415631462,"481":1498.1041268734,"482":1473.6389083901,"483":1448.3188485814,"484":1422.6934320705,"485":1396.2906754341,"486":1369.6061927075,"487":1342.2249388617,"488":1314.5867013817,"489":1286.3350116261,"490":1257.8520948893,"491":1228.8414657365,"492":1199.6262788026,"493":1169.971201952,"494":1140.1390438168,"495":1109.9565543087,"496":1079.6251588713,"497":1049.0343732027,"498":1018.3234446238,"499":987.4450906502,"500":956.4758309343,"501":925.4317714118,"502":894.3264020786,"503":863.2391537275,"504":832.120433459,"505":801.1126834461,"506":770.1034236145,"507":739.2975453629,"508":708.52012535,"509":678.0376955874,"510":647.613579809,"511":617.5748987596,"512":587.6241573013,"513":558.1477739157,"514":528.7886086709,"515":499.9908527679,"516":471.3391309488,"517":443.3336541146,"518":415.5024509775,"519":388.3997780346,"520":361.4989306234,"521":335.40602344,"522":309.5416971096,"523":284.5615324694,"524":259.8358018997,"525":236.0669651003,"526":212.5774114536,"527":190.1137072349,"528":167.9530330481,"529":146.883115388,"530":126.1387787178,"531":106.5458009554,"532":87.2996702215,"533":69.2609568888,"534":51.5889877766,"535":35.1757294339,"536":19.1476651318,"537":4.4246374115,"538":-9.8962666332,"539":-22.8709586671,"540":-35.4281843887,"541":-46.6033355544,"542":-57.3473253199,"543":-66.678832401,"544":-75.5671845912,"545":-83.0182203926,"546":-90.0158567421,"547":-95.5570154295,"548":-100.6363194645,"549":-104.245732616,"550":-107.3866586441,"551":-109.0500815551,"552":-110.2402337761,"553":-109.9511016762,"554":-109.1857831031,"555":-106.9452370647,"556":-104.2274680602,"557":-100.0443504948,"558":-95.3848568516,"559":-89.2756766132,"560":-82.692847224,"561":-74.681714456,"562":-66.201528741,"563":-56.3200597244,"564":-45.9759851023,"565":-34.263177481,"566":-22.0960372886,"567":-8.5981161632,"568":5.3440714558,"569":20.5738359572,"570":36.2360475578,"571":53.1375505126,"572":70.4579745011,"573":88.9645133987,"574":107.8747939744,"575":127.9133319606,"576":148.3388388855,"577":169.8302930056,"578":191.6904161353,"579":214.5499694384,"580":237.7584368538,"581":261.8958731266,"582":286.3610916099,"583":311.6811514186,"584":337.3065679295,"585":363.7093245659,"586":390.3938072925,"587":417.7750611383,"588":445.4132986183,"589":473.6649883739,"590":502.1479051107,"591":531.1585342635,"592":560.3737211974,"593":590.028798048,"594":619.8609561832,"595":650.0434456913,"596":680.3748411287,"597":710.9656267973,"598":741.6765553762,"599":772.5549093498,"600":803.5241690657,"601":834.5682285882,"602":865.6735979214,"603":896.7608462725,"604":927.879566541,"605":958.8873165539,"606":989.8965763855,"607":1020.7024546371,"608":1051.47987465,"609":1081.9623044126,"610":1112.386420191,"611":1142.4251012404,"612":1172.3758426987,"613":1201.8522260843,"614":1231.2113913291,"615":1260.0091472321,"616":1288.6608690512,"617":1316.6663458854,"618":1344.4975490225,"619":1371.6002219654,"620":1398.5010693766,"621":1424.59397656,"622":1450.4583028904,"623":1475.4384675306,"624":1500.1641981003,"625":1523.9330348997,"626":1547.4225885464,"627":1569.8862927651,"628":1592.0469669519,"629":1613.116884612,"630":1633.8612212822,"631":1653.4541990446,"632":1672.7003297785,"633":1690.7390431112,"634":1708.4110122234,"635":1724.8242705661,"636":1740.8523348682,"637":1755.5753625885,"638":1769.8962666332,"639":1782.8709586671,"640":1795.4281843887,"641":1806.6033355544,"642":1817.3473253199,"643":1826.678832401,"644":1835.5671845912,"645":1843.0182203926,"646":1850.0158567421,"647":1855.5570154295,"648":1860.6363194645,"649":1864.245732616,"650":1867.3866586441,"651":1869.0500815551,"652":1870.2402337761,"653":1869.9511016762,"654":1869.1857831031,"655":1866.9452370647,"656":1864.2274680602,"657":1860.0443504948,"658":1855.3848568516,"659":1849.2756766132,"660":1842.692847224,"661":1834.681714456,"662":1826.201528741,"663":1816.3200597244,"664":1805.9759851023,"665":1794.263177481,"666":1782.0960372886,"667":1768.5981161632,"668":1754.6559285442,"669":1739.4261640428,"670":1723.7639524422,"671":1706.8624494874,"672":1689.5420254989,"673":1671.0354866013,"674":1652.1252060256,"675":1632.0866680394,"676":1611.6611611145,"677":1590.1697069944,"678":1568.3095838647,"679":1545.4500305616,"680":1522.2415631462,"681":1498.1041268734,"682":1473.6389083901,"683":1448.3188485814,"684":1422.6934320705,"685":1396.2906754341,"686":1369.6061927075,"687":1342.2249388617,"688":1314.5867013817,"689":1286.3350116261,"690":1257.8520948893,"691":1228.8414657365,"692":1199.6262788026,"693":1169.971201952,"694":1140.1390438168,"695":1109.9565543087,"696":1079.6251588713,"697":1049.0343732027,"698":1018.3234446238,"699":987.4450906502,"700":956.4758309343,"701":925.4317714118,"702":894.3264020786,"703":863.2391537275,"704":832.120433459,"705":801.1126834461,"706":770.1034236145,"707":739.2975453629,"708":708.52012535,"709":678.0376955874,"710":647.613579809,"711":617.5748987596,"712":587.6241573013,"713":558.1477739157,"714":528.7886086709,"715":499.9908527679,"716":471.3391309488,"717":443.3336541146,"718":415.5024509775,"719":388.3997780346,"720":361.4989306234,"721":335.40602344,"722":309.5416971096,"723":284.5615324694,"724":259.8358018997,"725":236.0669651003,"726":212.5774114536,"727":190.1137072349,"728":167.9530330481,"729":146.883115388,"730":126.1387787178,"731":106.5458009554,"732":87.2996702215,"733":69.2609568888,"734":51.5889877766,"735":35.1757294339,"736":19.1476651318,"737":4.4246374115,"738":-9.8962666332,"739":-22.8709586671,"740":-35.4281843887,"741":-46.6033355544,"742":-57.3473253199,"743":-66.678832401,"744":-75.5671845912,"745":-83.0182203926,"746":-90.0158567421,"747":-95.5570154295,"748":-100.6363194645,"749":-104.245732616,"750":-107.3866586441,"751":-109.0500815551,"752":-110.2402337761,"753":-109.9511016762,"754":-109.1857831031,"755":-106.9452370647,"756":-104.2274680602,"757":-100.0443504948,"758":-95.3848568516,"759":-89.2756766132,"760":-82.692847224,"761":-74.681714456,"762":-66.201528741,"763":-56.3200597244,"764":-45.9759851023,"765":-34.263177481,"766":-22.0960372886,"767":-8.5981161632,"768":5.3440714558,"769":20.5738359572,"770":36.2360475578,"771":53.1375505126,"772":70.4579745011,"773":88.9645133987,"774":107.8747939744,"775":127.9133319606,"776":148.3388388855,"777":169.8302930056,"778":191.6904161353,"779":214.5499694384,"780":237.7584368538,"781":261.8958731266,"782":286.3610916099,"783":311.6811514186,"784":337.3065679295,"785":363.7093245659,"786":390.3938072925,"787":417.7750611383,"788":445.4132986183,"789":473.6649883739,"790":502.1479051107,"791":531.1585342635,"792":560.3737211974,"793":590.028798048,"794":619.8609561832,"795":650.0434456913,"796":680.3748411287,"797":710.9656267973,"798":741.6765553762,"799":772.5549093498,"800":803.5241690657,"801":834.5682285882,"802":865.6735979214,"803":896.7608462725,"804":927.8795665409,"805":958.8873165539,"806":989.8965763855,"807":1020.7024546371,"808":1051.47987465,"809":1081.9623044126,"810":1112.386420191,"811":1142.4251012404,"812":1172.3758426987,"813":1201.8522260843,"814":1231.2113913291,"815":1260.0091472321,"816":1288.6608690512,"817":1316.6663458854,"818":1344.4975490225,"819":1371.6002219654,"820":1398.5010693765,"821":1424.59397656,"822":1450.4583028904,"823":1475.4384675305,"824":1500.1641981003,"825":1523.9330348997,"826":1547.4225885464,"827":1569.8862927651,"828":1592.0469669519,"829":1613.116884612,"830":1633.8612212822,"831":1653.4541990446,"832":1672.7003297785,"833":1690.7390431112,"834":1708.4110122234,"835":1724.8242705661,"836":1740.8523348682,"837":1755.5753625885,"838":1769.8962666332,"839":1782.8709586671,"840":1795.4281843887,"841":1806.6033355544,"842":1817.3473253199,"843":1826.678832401,"844":1835.5671845912,"845":1843.0182203926,"846":1850.0158567421,"847":1855.5570154295,"848":1860.6363194645,"849":1864.245732616,"850":1867.3866586441,"851":1869.0500815551,"852":1870.2402337761,"853":1869.9511016762,"854":1869.1857831031,"855":1866.9452370647,"856":1864.2274680602,"857":1860.0443504948,"858":1855.3848568516,"859":1849.2756766132,"860":1842.692847224,"861":1834.681714456,"862":1826.201528741,"863":1816.3200597244,"864":1805.9759851023,"865":1794.263177481,"866":1782.0960372886,"867":1768.5981161632,"868":1754.6559285442,"869":1739.4261640428,"870":1723.7639524422,"871":1706.8624494873,"872":1689.5420254989,"873":1671.0354866013,"874":1652.1252060256,"875":1632.0866680394,"876":1611.6611611145,"877":1590.1697069944,"878":1568.3095838647,"879":1545.4500305616,"880":1522.2415631462,"881":1498.1041268734,"882":1473.6389083901,"883":1448.3188485814,"884":1422.6934320705,"885":1396.2906754341,"886":1369.6061927075,"887":1342.2249388617,"888":1314.5867013817,"889":1286.3350116261,"890":1257.8520948893,"891":1228.8414657365,"892":1199.6262788026,"893":1169.971201952,"894":1140.1390438168,"895":1109.9565543087,"896":1079.6251588713,"897":1049.0343732027,"898":1018.3234446238,"899":987.4450906502,"900":956.4758309343,"901":925.4317714118,"902":894.3264020786,"903":863.2391537275,"904":832.1204334591,"905":801.1126834461,"906":770.1034236145,"907":739.2975453629,"908":708.52012535,"909":678.0376955874,"910":647.613579809,"911":617.5748987596,"912":587.6241573013,"913":558.1477739157,"914":528.7886086709,"915":499.9908527679,"916":471.3391309488,"917":443.3336541146,"918":415.5024509775,"919":388.3997780346,"920":361.4989306235,"921":335.40602344,"922":309.5416971096,"923":284.5615324694,"924":259.8358018997,"925":236.0669651003,"926":212.5774114536,"927":190.1137072349,"928":167.9530330481,"929":146.883115388,"930":126.1387787178,"931":106.5458009554,"932":87.2996702215,"933":69.2609568888,"934":51.5889877766,"935":35.1757294339,"936":19.1476651318,"937":4.4246374115,"938":-9.8962666332,"939":-22.8709586671,"940":-35.4281843887,"941":-46.6033355544,"942":-57.3473253199,"943":-66.678832401,"944":-75.5671845912,"945":-83.0182203926,"946":-90.0158567421,"947":-95.5570154295,"948":-100.6363194645,"949":-104.245732616,"950":-107.3866586441,"951":-109.0500815551,"952":-110.2402337761,"953":-109.9511016762,"954":-109.1857831031,"955":-106.9452370647,"956":-104.2274680602,"957":-100.0443504948,"958":-95.3848568516,"959":-89.2756766132,"960":-82.692847224,"961":-74.681714456,"962":-66.201528741,"963":-56.3200597244,"964":-45.9759851023,"965":-34.263177481,"966":-22.0960372886,"967":-8.5981161632,"968":5.3440714558,"969":20.5738359572,"970":36.2360475578,"971":53.1375505127,"972":70.4579745011,"973":88.9645133987,"974":107.8747939744,"975":127.9133319606,"976":148.3388388855,"977":169.8302930056,"978":191.6904161353,"979":214.5499694384,"980":237.7584368538,"981":261.8958731266,"982":286.3610916099,"983":311.6811514186,"984":337.3065679295,"985":363.7093245659,"986":390.3938072925,"987":417.7750611383,"988":445.4132986183,"989":473.6649883739,"990":502.1479051107,"991":531.1585342635,"992":560.3737211974,"993":590.028798048,"994":619.8609561832,"995":650.0434456913,"996":680.3748411287,"997":710.9656267973,"998":741.6765553762,"999":772.5549093498,"1000":803.5241690657,"1001":834.5682285882,"1002":865.6735979214,"1003":896.7608462725,"1004":927.8795665409,"1005":958.8873165539,"1006":989.8965763855,"1007":1020.7024546371,"1008":1051.47987465,"1009":1081.9623044126,"1010":1112.386420191,"1011":1142.4251012404,"1012":1172.3758426987,"1013":1201.8522260843,"1014":1231.2113913291,"1015":1260.0091472321,"1016":1288.6608690512,"1017":1316.6663458854,"1018":1344.4975490225,"1019":1371.6002219654,"1020":1398.5010693765,"1021":1424.59397656,"1022":1450.4583028904,"1023":1475.4384675306,"1024":1500.1641981003,"1025":1523.9330348997,"1026":1547.4225885464,"1027":1569.8862927651,"1028":1592.0469669519,"1029":1613.116884612,"1030":1633.8612212822,"1031":1653.4541990446,"1032":1672.7003297785,"1033":1690.7390431112,"1034":1708.4110122234,"1035":1724.8242705661,"1036":1740.8523348682,"1037":1755.5753625885,"1038":1769.8962666332,"1039":1782.8709586671,"1040":1795.4281843887,"1041":1806.6033355544,"1042":1817.3473253199,"1043":1826.678832401,"1044":1835.5671845912,"1045":1843.0182203926,"1046":1850.0158567421,"1047":1855.5570154295,"1048":1860.6363194645,"1049":1864.245732616,"1050":1867.3866586441,"1051":1869.0500815551,"1052":1870.2402337761,"1053":1869.9511016762,"1054":1869.1857831031,"1055":1866.9452370647,"1056":1864.2274680602,"1057":1860.0443504948,"1058":1855.3848568516,"1059":1849.2756766132,"1060":1842.692847224,"1061":1834.681714456,"1062":1826.201528741,"1063":1816.3200597244,"1064":1805.9759851023,"1065":1794.263177481,"1066":1782.0960372886,"1067":1768.5981161632,"1068":1754.6559285442,"1069":1739.4261640428,"1070":1723.7639524422,"1071":1706.8624494873,"1072":1689.5420254989,"1073":1671.0354866013,"1074":1652.1252060256,"1075":1632.0866680394,"1076":1611.6611611145,"1077":1590.1697069944,"1078":1568.3095838647,"1079":1545.4500305616,"1080":1522.2415631462,"1081":1498.1041268734,"1082":1473.6389083901,"1083":1448.3188485814,"1084":1422.6934320705,"1085":1396.2906754341,"1086":1369.6061927075,"1087":1342.2249388617,"1088":1314.5867013817,"1089":1286.3350116261,"1090":1257.8520948893,"1091":1228.8414657365,"1092":1199.6262788026,"1093":1169.971201952,"1094":1140.1390438168,"1095":1109.9565543087,"1096":1079.6251588713,"1097":1049.0343732027,"1098":1018.3234446238,"1099":987.4450906502,"1100":956.4758309343,"1101":925.4317714118,"1102":894.3264020786,"1103":863.2391537275,"1104":832.1204334591,"1105":801.1126834461,"1106":770.1034236145,"1107":739.2975453629,"1108":708.52012535,"1109":678.0376955874,"1110":647.613579809,"1111":617.5748987596,"1112":587.6241573013,"1113":558.1477739157,"1114":528.7886086709,"1115":499.9908527679,"1116":471.3391309488,"1117":443.3336541146,"1118":415.5024509775,"1119":388.3997780346,"1120":361.4989306235,"1121":335.40602344,"1122":309.5416971096,"1123":284.5615324694,"1124":259.8358018997,"1125":236.0669651003,"1126":212.5774114536,"1127":190.1137072349,"1128":167.9530330481,"1129":146.883115388,"1130":126.1387787178,"1131":106.5458009554,"1132":87.2996702215,"1133":69.2609568888,"1134":51.5889877766,"1135":35.1757294339,"1136":19.1476651318,"1137":4.4246374115,"1138":-9.8962666332,"1139":-22.8709586671,"1140":-35.4281843887,"1141":-46.6033355544,"1142":-57.3473253199,"1143":-66.678832401,"1144":-75.5671845912,"1145":-83.0182203926,"1146":-90.0158567421,"1147":-95.5570154295,"1148":-100.6363194645,"1149":-104.245732616,"1150":-107.3866586441,"1151":-109.0500815551,"1152":-110.2402337761,"1153":-109.9511016762,"1154":-109.1857831031,"1155":-106.9452370647,"1156":-104.2274680602,"1157":-100.0443504948,"1158":-95.3848568516,"1159":-89.2756766132,"1160":-82.692847224,"1161":-74.681714456,"1162":-66.201528741,"1163":-56.3200597244,"1164":-45.9759851023,"1165":-34.263177481,"1166":-22.0960372886,"1167":-8.5981161632,"1168":5.3440714558,"1169":20.5738359572,"1170":36.2360475578,"1171":53.1375505127,"1172":70.4579745011,"1173":88.9645133987,"1174":107.8747939744,"1175":127.9133319606,"1176":148.3388388855,"1177":169.8302930056,"1178":191.6904161353,"1179":214.5499694384,"1180":237.7584368538,"1181":261.8958731266,"1182":286.3610916099,"1183":311.6811514186,"1184":337.3065679295,"1185":363.7093245659,"1186":390.3938072925,"1187":417.7750611383,"1188":445.4132986183,"1189":473.6649883739,"1190":502.1479051107,"1191":531.1585342635,"1192":560.3737211974,"1193":590.028798048,"1194":619.8609561832,"1195":650.0434456913,"1196":680.3748411287,"1197":710.9656267973,"1198":741.6765553762,"1199":772.5549093498,"1200":803.5241690657,"1201":834.5682285882,"1202":865.6735979214,"1203":896.7608462725,"1204":927.879566541,"1205":958.8873165539,"1206":989.8965763855,"1207":1020.7024546371,"1208":1051.47987465,"1209":1081.9623044126,"1210":1112.386420191,"1211":1142.4251012404,"1212":1172.3758426987,"1213":1201.8522260843,"1214":1231.2113913291,"1215":1260.0091472321,"1216":1288.6608690512,"1217":1316.6663458854,"1218":1344.4975490225,"1219":1371.6002219654,"1220":1398.5010693765,"1221":1424.59397656,"1222":1450.4583028904,"1223":1475.4384675306,"1224":1500.1641981003,"1225":1523.9330348997,"1226":1547.4225885464,"1227":1569.8862927651,"1228":1592.0469669519,"1229":1613.116884612,"1230":1633.8612212822,"1231":1653.4541990446,"1232":1672.7003297785,"1233":1690.7390431112,"1234":1708.4110122234,"1235":1724.8242705661,"1236":1740.8523348682,"1237":1755.5753625885,"1238":1769.8962666332,"1239":1782.8709586671,"1240":1795.4281843887,"1241":1806.6033355544,"1242":1817.3473253199,"1243":1826.678832401,"1244":1835.5671845912,"1245":1843.0182203926,"1246":1850.0158567421,"1247":1855.5570154295,"1248":1860.6363194645,"1249":1864.245732616,"1250":1867.3866586441,"1251":1869.0500815551,"1252":1870.2402337761,"1253":1869.9511016762,"1254":1869.1857831031,"1255":1866.9452370647,"1256":1864.2274680602,"1257":1860.0443504948,"1258":1855.3848568516,"1259":1849.2756766132,"1260":1842.692847224,"1261":1834.681714456,"1262":1826.201528741,"1263":1816.3200597244,"1264":1805.9759851023,"1265":1794.263177481,"1266":1782.0960372886,"1267":1768.5981161632,"1268":1754.6559285442,"1269":1739.4261640428,"1270":1723.7639524422,"1271":1706.8624494873,"1272":1689.5420254989,"1273":1671.0354866013,"1274":1652.1252060256,"1275":1632.0866680394,"1276":1611.6611611145,"1277":1590.1697069944,"1278":1568.3095838647,"1279":1545.4500305616,"1280":1522.2415631462,"1281":1498.1041268734,"1282":1473.6389083901,"1283":1448.3188485814,"1284":1422.6934320705,"1285":1396.2906754341,"1286":1369.6061927075,"1287":1342.2249388617,"1288":1314.5867013817,"1289":1286.3350116261,"1290":1257.8520948893,"1291":1228.8414657365,"1292":1199.6262788026,"1293":1169.971201952,"1294":1140.1390438168,"1295":1109.9565543087,"1296":1079.6251588713,"1297":1049.0343732027,"1298":1018.3234446238,"1299":987.4450906502,"1300":956.4758309343,"1301":925.4317714118,"1302":894.3264020786,"1303":863.2391537275,"1304":832.120433459,"1305":801.1126834461,"1306":770.1034236145,"1307":739.2975453629,"1308":708.52012535,"1309":678.0376955874,"1310":647.613579809,"1311":617.5748987596,"1312":587.6241573013,"1313":558.1477739157,"1314":528.7886086709,"1315":499.9908527679,"1316":471.3391309488,"1317":443.3336541146,"1318":415.5024509775,"1319":388.3997780346,"1320":361.4989306235,"1321":335.40602344,"1322":309.5416971096,"1323":284.5615324694,"1324":259.8358018997,"1325":236.0669651003,"1326":212.5774114536,"1327":190.1137072349,"1328":167.9530330481,"1329":146.883115388,"1330":126.1387787178,"1331":106.5458009554,"1332":87.2996702215,"1333":69.2609568888,"1334":51.5889877766,"1335":35.1757294339,"1336":19.1476651318,"1337":4.4246374115,"1338":-9.8962666332,"1339":-22.8709586671,"1340":-35.4281843887,"1341":-46.6033355544,"1342":-57.3473253199,"1343":-66.678832401,"1344":-75.5671845912,"1345":-83.0182203926,"1346":-90.0158567421,"1347":-95.5570154295,"1348":-100.6363194645,"1349":-104.245732616,"1350":-107.3866586441,"1351":-109.0500815551,"1352":-110.2402337761,"1353":-109.9511016762,"1354":-109.1857831031,"1355":-106.9452370647,"1356":-104.2274680602,"1357":-100.0443504948,"1358":-95.3848568516,"1359":-89.2756766132,"1360":-82.692847224,"1361":-74.681714456,"1362":-66.201528741,"1363":-56.3200597244,"1364":-45.9759851023,"1365":-34.263177481,"1366":-22.0960372886,"1367":-8.5981161632,"1368":5.3440714558,"1369":20.5738359572,"1370":36.2360475578,"1371":53.1375505127,"1372":70.4579745011,"1373":88.9645133987,"1374":107.8747939744,"1375":127.9133319606,"1376":148.3388388855,"1377":169.8302930056,"1378":191.6904161353,"1379":214.5499694384,"1380":237.7584368538,"1381":261.8958731266,"1382":286.3610916099,"1383":311.6811514186,"1384":337.3065679295,"1385":363.7093245659,"1386":390.3938072925,"1387":417.7750611383,"1388":445.4132986183,"1389":473.6649883739,"1390":502.1479051107,"1391":531.1585342635,"1392":560.3737211974,"1393":590.028798048,"1394":619.8609561832,"1395":650.0434456913,"1396":680.3748411287,"1397":710.9656267973,"1398":741.6765553762,"1399":772.5549093498,"1400":803.5241690657,"1401":834.5682285882,"1402":865.6735979214,"1403":896.7608462725,"1404":927.879566541,"1405":958.8873165539,"1406":989.8965763855,"1407":1020.7024546371,"1408":1051.47987465,"1409":1081.9623044126,"1410":1112.386420191,"1411":1142.4251012404,"1412":1172.3758426987,"1413":1201.8522260843,"1414":1231.2113913291,"1415":1260.0091472321,"1416":1288.6608690512,"1417":1316.6663458854,"1418":1344.4975490225,"1419":1371.6002219654,"1420":1398.5010693765,"1421":1424.59397656,"1422":1450.4583028904,"1423":1475.4384675306,"1424":1500.1641981003,"1425":1523.9330348997,"1426":1547.4225885464,"1427":1569.8862927651,"1428":1592.0469669519,"1429":1613.116884612,"1430":1633.8612212822,"1431":1653.4541990446,"1432":1672.7003297785,"1433":1690.7390431112,"1434":1708.4110122234,"1435":1724.8242705661,"1436":1740.8523348682,"1437":1755.5753625885,"1438":1769.8962666332,"1439":1782.8709586671,"1440":1795.4281843887,"1441":1806.6033355544,"1442":1817.3473253199,"1443":1826.678832401,"1444":1835.5671845912,"1445":1843.0182203926,"1446":1850.0158567421,"1447":1855.5570154295,"1448":1860.6363194645,"1449":1864.245732616,"1450":1867.3866586441,"1451":1869.0500815551,"1452":1870.2402337761,"1453":1869.9511016762,"1454":1869.1857831031,"1455":1866.9452370647,"1456":1864.2274680602,"1457":1860.0443504948,"1458":1855.3848568516,"1459":1849.2756766132,"1460":1842.692847224,"1461":1834.681714456,"1462":1826.201528741,"1463":1816.3200597244,"1464":1805.9759851023,"1465":1794.263177481,"1466":1782.0960372886,"1467":1768.5981161632,"1468":1754.6559285442,"1469":1739.4261640428,"1470":1723.7639524422,"1471":1706.8624494873,"1472":1689.5420254989,"1473":1671.0354866013,"1474":1652.1252060256,"1475":1632.0866680394,"1476":1611.6611611145,"1477":1590.1697069944,"1478":1568.3095838647,"1479":1545.4500305616,"1480":1522.2415631462,"1481":1498.1041268734,"1482":1473.6389083901,"1483":1448.3188485814,"1484":1422.6934320705,"1485":1396.2906754341,"1486":1369.6061927075,"1487":1342.2249388617,"1488":1314.5867013817,"1489":1286.3350116261,"1490":1257.8520948893,"1491":1228.8414657365,"1492":1199.6262788026,"1493":1169.971201952,"1494":1140.1390438168,"1495":1109.9565543087,"1496":1079.6251588713,"1497":1049.0343732027,"1498":1018.3234446238,"1499":987.4450906502,"1500":956.4758309343,"1501":925.4317714118,"1502":894.3264020786,"1503":863.2391537275,"1504":832.120433459,"1505":801.1126834461,"1506":770.1034236145,"1507":739.2975453629,"1508":708.52012535,"1509":678.0376955874,"1510":647.613579809,"1511":617.5748987596,"1512":587.6241573013,"1513":558.1477739157,"1514":528.7886086709,"1515":499.9908527679,"1516":471.3391309488,"1517":443.3336541146,"1518":415.5024509775,"1519":388.3997780346,"1520":361.4989306235,"1521":335.40602344,"1522":309.5416971096,"1523":284.5615324694,"1524":259.8358018997,"1525":236.0669651003,"1526":212.5774114536,"1527":190.1137072349,"1528":167.9530330481,"1529":146.883115388,"1530":126.1387787178,"1531":106.5458009554,"1532":87.2996702215,"1533":69.2609568888,"1534":51.5889877766,"1535":35.1757294339,"1536":19.1476651318,"1537":4.4246374115,"1538":-9.8962666332,"1539":-22.8709586671,"1540":-35.4281843887,"1541":-46.6033355544,"1542":-57.3473253199,"1543":-66.678832401,"1544":-75.5671845912,"1545":-83.0182203926,"1546":-90.0158567421,"1547":-95.5570154295,"1548":-100.6363194645,"1549":-104.245732616,"1550":-107.3866586441,"1551":-109.0500815551,"1552":-110.2402337761,"1553":-109.9511016762,"1554":-109.1857831031,"1555":-106.9452370647,"1556":-104.2274680602,"1557":-100.0443504948,"1558":-95.3848568516,"1559":-89.2756766132,"1560":-82.692847224,"1561":-74.681714456,"1562":-66.201528741,"1563":-56.3200597244,"1564":-45.9759851023,"1565":-34.263177481,"1566":-22.0960372886,"1567":-8.5981161632,"1568":5.3440714558,"1569":20.5738359572,"1570":36.2360475578,"1571":53.1375505127,"1572":70.4579745011,"1573":88.9645133987,"1574":107.8747939744,"1575":127.9133319606,"1576":148.3388388855,"1577":169.8302930056,"1578":191.6904161353,"1579":214.5499694384,"1580":237.7584368538,"1581":261.8958731266,"1582":286.3610916099,"1583":311.6811514186,"1584":337.3065679295,"1585":363.7093245659,"1586":390.3938072925,"1587":417.7750611383,"1588":445.4132986183,"1589":473.6649883739,"1590":502.1479051107,"1591":531.1585342635,"1592":560.3737211974,"1593":590.028798048,"1594":619.8609561832,"1595":650.0434456913,"1596":680.3748411287,"1597":710.9656267973,"1598":741.6765553762,"1599":772.5549093498,"1600":803.5241690657,"1601":834.5682285882,"1602":865.6735979214,"1603":896.7608462725,"1604":927.879566541,"1605":958.8873165539,"1606":989.8965763855,"1607":1020.7024546371,"1608":1051.47987465,"1609":1081.9623044126,"1610":1112.386420191,"1611":1142.4251012404,"1612":1172.3758426987,"1613":1201.8522260843,"1614":1231.2113913291,"1615":1260.0091472321,"1616":1288.6608690512,"1617":1316.6663458854,"1618":1344.4975490225,"1619":1371.6002219654,"1620":1398.5010693766,"1621":1424.59397656,"1622":1450.4583028904,"1623":1475.4384675305,"1624":1500.1641981003,"1625":1523.9330348997,"1626":1547.4225885464,"1627":1569.8862927651,"1628":1592.0469669519,"1629":1613.116884612,"1630":1633.8612212822,"1631":1653.4541990446,"1632":1672.7003297785,"1633":1690.7390431112,"1634":1708.4110122234,"1635":1724.8242705661,"1636":1740.8523348682,"1637":1755.5753625885,"1638":1769.8962666332,"1639":1782.8709586671,"1640":1795.4281843887,"1641":1806.6033355544,"1642":1817.3473253199,"1643":1826.678832401,"1644":1835.5671845912,"1645":1843.0182203926,"1646":1850.0158567421,"1647":1855.5570154295,"1648":1860.6363194645,"1649":1864.245732616,"1650":1867.3866586441,"1651":1869.0500815551,"1652":1870.2402337761,"1653":1869.9511016762,"1654":1869.1857831031,"1655":1866.9452370647,"1656":1864.2274680602,"1657":1860.0443504948,"1658":1855.3848568516,"1659":1849.2756766132,"1660":1842.692847224,"1661":1834.681714456,"1662":1826.201528741,"1663":1816.3200597244,"1664":1805.9759851023,"1665":1794.263177481,"1666":1782.0960372886,"1667":1768.5981161632,"1668":1754.6559285442,"1669":1739.4261640428,"1670":1723.7639524422,"1671":1706.8624494874,"1672":1689.5420254989,"1673":1671.0354866013,"1674":1652.1252060256,"1675":1632.0866680394,"1676":1611.6611611145,"1677":1590.1697069944,"1678":1568.3095838647,"1679":1545.4500305616,"1680":1522.2415631462,"1681":1498.1041268734,"1682":1473.6389083901,"1683":1448.3188485814,"1684":1422.6934320705,"1685":1396.2906754341,"1686":1369.6061927075,"1687":1342.2249388617,"1688":1314.5867013817,"1689":1286.3350116261,"1690":1257.8520948893,"1691":1228.8414657365,"1692":1199.6262788026,"1693":1169.971201952,"1694":1140.1390438168,"1695":1109.9565543087,"1696":1079.6251588713,"1697":1049.0343732027,"1698":1018.3234446238,"1699":987.4450906502,"1700":956.4758309343,"1701":925.4317714118,"1702":894.3264020786,"1703":863.2391537275,"1704":832.120433459,"1705":801.1126834461,"1706":770.1034236145,"1707":739.2975453629,"1708":708.52012535,"1709":678.0376955874,"1710":647.613579809,"1711":617.5748987596,"1712":587.6241573013,"1713":558.1477739157,"1714":528.7886086709,"1715":499.9908527679,"1716":471.3391309488,"1717":443.3336541146,"1718":415.5024509775,"1719":388.3997780346,"1720":361.4989306234,"1721":335.40602344,"1722":309.5416971096,"1723":284.5615324694,"1724":259.8358018997,"1725":236.0669651003,"1726":212.5774114536,"1727":190.1137072349,"1728":167.9530330481,"1729":146.883115388,"1730":126.1387787178,"1731":106.5458009554,"1732":87.2996702215,"1733":69.2609568888,"1734":51.5889877766,"1735":35.1757294339,"1736":19.1476651318,"1737":4.4246374115,"1738":-9.8962666332,"1739":-22.8709586671,"1740":-35.4281843887,"1741":-46.6033355544,"1742":-57.3473253199,"1743":-66.678832401,"1744":-75.5671845912,"1745":-83.0182203926,"1746":-90.0158567421,"1747":-95.5570154295,"1748":-100.6363194645,"1749":-104.245732616,"1750":-107.3866586441,"1751":-109.0500815551,"1752":-110.2402337761,"1753":-109.9511016762,"1754":-109.1857831031,"1755":-106.9452370647,"1756":-104.2274680602,"1757":-100.0443504948,"1758":-95.3848568516,"1759":-89.2756766132,"1760":-82.692847224,"1761":-74.681714456,"1762":-66.201528741,"1763":-56.3200597244,"1764":-45.9759851023,"1765":-34.263177481,"1766":-22.0960372886,"1767":-8.5981161632,"1768":5.3440714558,"1769":20.5738359572,"1770":36.2360475578,"1771":53.1375505126,"1772":70.4579745011,"1773":88.9645133987,"1774":107.8747939744,"1775":127.9133319606,"1776":148.3388388855,"1777":169.8302930056,"1778":191.6904161353,"1779":214.5499694384,"1780":237.7584368538,"1781":261.8958731266,"1782":286.3610916099,"1783":311.6811514186,"1784":337.3065679295,"1785":363.7093245659,"1786":390.3938072925,"1787":417.7750611383,"1788":445.4132986183,"1789":473.6649883739,"1790":502.1479051107,"1791":531.1585342635,"1792":560.3737211974,"1793":590.028798048,"1794":619.8609561832,"1795":650.0434456913,"1796":680.3748411287,"1797":710.9656267973,"1798":741.6765553762,"1799":772.5549093498,"1800":803.5241690657,"1801":834.5682285882,"1802":865.6735979214,"1803":896.7608462725,"1804":927.879566541,"1805":958.8873165539,"1806":989.8965763855,"1807":1020.7024546371,"1808":1051.47987465,"1809":1081.9623044126,"1810":1112.386420191,"1811":1142.4251012404,"1812":1172.3758426987,"1813":1201.8522260843,"1814":1231.2113913291,"1815":1260.0091472321,"1816":1288.6608690512,"1817":1316.6663458854,"1818":1344.4975490225,"1819":1371.6002219654,"1820":1398.5010693766,"1821":1424.59397656,"1822":1450.4583028904,"1823":1475.4384675305,"1824":1500.1641981003,"1825":1523.9330348997,"1826":1547.4225885464,"1827":1569.8862927651,"1828":1592.0469669519,"1829":1613.116884612,"1830":1633.8612212822,"1831":1653.4541990446,"1832":1672.7003297785,"1833":1690.7390431112,"1834":1708.4110122234,"1835":1724.8242705661,"1836":1740.8523348682,"1837":1755.5753625885,"1838":1769.8962666332,"1839":1782.8709586671,"1840":1795.4281843887,"1841":1806.6033355544,"1842":1817.3473253199,"1843":1826.678832401,"1844":1835.5671845912,"1845":1843.0182203926,"1846":1850.0158567421,"1847":1855.5570154295,"1848":1860.6363194645,"1849":1864.245732616,"1850":1867.3866586441,"1851":1869.0500815551,"1852":1870.2402337761,"1853":1869.9511016762,"1854":1869.1857831031,"1855":1866.9452370647,"1856":1864.2274680602,"1857":1860.0443504948,"1858":1855.3848568516,"1859":1849.2756766132,"1860":1842.692847224,"1861":1834.681714456,"1862":1826.201528741,"1863":1816.3200597244,"1864":1805.9759851023,"1865":1794.263177481,"1866":1782.0960372886,"1867":1768.5981161632,"1868":1754.6559285442,"1869":1739.4261640428,"1870":1723.7639524422,"1871":1706.8624494874,"1872":1689.5420254989,"1873":1671.0354866013,"1874":1652.1252060256,"1875":1632.0866680394,"1876":1611.6611611145,"1877":1590.1697069944,"1878":1568.3095838647,"1879":1545.4500305616,"1880":1522.2415631462,"1881":1498.1041268734,"1882":1473.6389083901,"1883":1448.3188485814,"1884":1422.6934320705,"1885":1396.2906754341,"1886":1369.6061927075,"1887":1342.2249388617,"1888":1314.5867013817,"1889":1286.3350116261,"1890":1257.8520948893,"1891":1228.8414657365,"1892":1199.6262788026,"1893":1169.971201952,"1894":1140.1390438168,"1895":1109.9565543087,"1896":1079.6251588713,"1897":1049.0343732027,"1898":1018.3234446238,"1899":987.4450906502,"1900":956.4758309343,"1901":925.4317714118,"1902":894.3264020786,"1903":863.2391537275,"1904":832.120433459,"1905":801.1126834461,"1906":770.1034236145,"1907":739.2975453629,"1908":708.52012535,"1909":678.0376955874,"1910":647.613579809,"1911":617.5748987596,"1912":587.6241573013,"1913":558.1477739157,"1914":528.7886086709,"1915":499.9908527679,"1916":471.3391309488,"1917":443.3336541146,"1918":415.5024509775,"1919":388.3997780346,"1920":361.4989306234,"1921":335.40602344,"1922":309.5416971096,"1923":284.5615324694,"1924":259.8358018997,"1925":236.0669651003,"1926":212.5774114536,"1927":190.1137072349,"1928":167.9530330481,"1929":146.883115388,"1930":126.1387787178,"1931":106.5458009554,"1932":87.2996702215,"1933":69.2609568888,"1934":51.5889877766,"1935":35.1757294339,"1936":19.1476651318,"1937":4.4246374115,"1938":-9.8962666332,"1939":-22.8709586671,"1940":-35.4281843887,"1941":-46.6033355544,"1942":-57.3473253199,"1943":-66.678832401,"1944":-75.5671845912,"1945":-83.0182203926,"1946":-90.0158567421,"1947":-95.5570154295,"1948":-100.6363194645,"1949":-104.245732616,"1950":-107.3866586441,"1951":-109.0500815551,"1952":-110.2402337761,"1953":-109.9511016762,"1954":-109.1857831031,"1955":-106.9452370647,"1956":-104.2274680602,"1957":-100.0443504948,"1958":-95.3848568516,"1959":-89.2756766132,"1960":-82.692847224,"1961":-74.681714456,"1962":-66.201528741,"1963":-56.3200597244,"1964":-45.9759851023,"1965":-34.263177481,"1966":-22.0960372886,"1967":-8.5981161632,"1968":5.3440714558,"1969":20.5738359572,"1970":36.2360475578,"1971":53.1375505126,"1972":70.4579745011,"1973":88.9645133987,"1974":107.8747939744,"1975":127.9133319606,"1976":148.3388388855,"1977":169.8302930056,"1978":191.6904161353,"1979":214.5499694384,"1980":237.7584368538,"1981":261.8958731266,"1982":286.3610916099,"1983":311.6811514186,"1984":337.3065679295,"1985":363.7093245659,"1986":390.3938072925,"1987":417.7750611383,"1988":445.4132986183,"1989":473.6649883739,"1990":502.1479051107,"1991":531.1585342635,"1992":560.3737211974,"1993":590.028798048,"1994":619.8609561832,"1995":650.0434456913,"1996":680.3748411287,"1997":710.9656267973,"1998":741.6765553762,"1999":772.5549093498,"2000":803.5241690657,"2001":834.5682285882,"2002":865.6735979214,"2003":896.7608462725,"2004":927.879566541,"2005":958.8873165539,"2006":989.8965763855,"2007":1020.7024546371,"2008":1051.47987465,"2009":1081.9623044126,"2010":1112.386420191,"2011":1142.4251012404,"2012":1172.3758426987,"2013":1201.8522260843,"2014":1231.2113913291,"2015":1260.0091472321,"2016":1288.6608690512,"2017":1316.6663458854,"2018":1344.4975490225,"2019":1371.6002219654,"2020":1398.5010693766,"2021":1424.59397656,"2022":1450.4583028904,"2023":1475.4384675305,"2024":1500.1641981003,"2025":1523.9330348997,"2026":1547.4225885464,"2027":1569.8862927651,"2028":1592.0469669519,"2029":1613.116884612,"2030":1633.8612212822,"2031":1653.4541990446,"2032":1672.7003297785,"2033":1690.7390431112,"2034":1708.4110122234,"2035":1724.8242705661,"2036":1740.8523348682,"2037":1755.5753625885,"2038":1769.8962666332,"2039":1782.8709586671,"2040":1795.4281843887,"2041":1806.6033355544,"2042":1817.3473253199,"2043":1826.678832401,"2044":1835.5671845912,"2045":1843.0182203926,"2046":1850.0158567421,"2047":1855.5570154295,"2048":1860.6363194645,"2049":1864.245732616,"2050":1867.3866586441,"2051":1869.0500815551,"2052":1870.2402337761,"2053":1869.9511016762,"2054":1869.1857831031,"2055":1866.9452370647,"2056":1864.2274680602,"2057":1860.0443504948,"2058":1855.3848568516,"2059":1849.2756766132,"2060":1842.692847224,"2061":1834.681714456,"2062":1826.201528741,"2063":1816.3200597244,"2064":1805.9759851023,"2065":1794.263177481,"2066":1782.0960372886,"2067":1768.5981161632,"2068":1754.6559285442,"2069":1739.4261640428,"2070":1723.7639524422,"2071":1706.8624494874,"2072":1689.5420254989,"2073":1671.0354866013,"2074":1652.1252060256,"2075":1632.0866680394,"2076":1611.6611611145,"2077":1590.1697069944,"2078":1568.3095838647,"2079":1545.4500305616,"2080":1522.2415631462,"2081":1498.1041268734,"2082":1473.6389083901,"2083":1448.3188485814,"2084":1422.6934320705,"2085":1396.2906754341,"2086":1369.6061927075,"2087":1342.2249388617,"2088":1314.5867013817,"2089":1286.3350116261,"2090":1257.8520948893,"2091":1228.8414657365,"2092":1199.6262788026,"2093":1169.971201952,"2094":1140.1390438168,"2095":1109.9565543087,"2096":1079.6251588713,"2097":1049.0343732027,"2098":1018.3234446238,"2099":987.4450906502,"2100":956.4758309343,"2101":925.4317714118,"2102":894.3264020786,"2103":863.2391537275,"2104":832.120433459,"2105":801.1126834461,"2106":770.1034236145,"2107":739.2975453629,"2108":708.52012535,"2109":678.0376955874,"2110":647.613579809,"2111":617.5748987596,"2112":587.6241573013,"2113":558.1477739157,"2114":528.7886086709,"2115":499.9908527679,"2116":471.3391309488,"2117":443.3336541146,"2118":415.5024509775,"2119":388.3997780346,"2120":361.4989306234,"2121":335.40602344,"2122":309.5416971096,"2123":284.5615324694,"2124":259.8358018997,"2125":236.0669651003,"2126":212.5774114536,"2127":190.1137072349,"2128":167.9530330481,"2129":146.883115388,"2130":126.1387787178,"2131":106.5458009554,"2132":87.2996702215,"2133":69.2609568888,"2134":51.5889877766,"2135":35.1757294339,"2136":19.1476651318,"2137":4.4246374115,"2138":-9.8962666332,"2139":-22.8709586671,"2140":-35.4281843887,"2141":-46.6033355544,"2142":-57.3473253199,"2143":-66.678832401,"2144":-75.5671845912,"2145":-83.0182203926,"2146":-90.0158567421,"2147":-95.5570154295,"2148":-100.6363194645,"2149":-104.245732616,"2150":-107.3866586441,"2151":-109.0500815551,"2152":-110.2402337761,"2153":-109.9511016762,"2154":-109.1857831031,"2155":-106.9452370647,"2156":-104.2274680602,"2157":-100.0443504948,"2158":-95.3848568516,"2159":-89.2756766132,"2160":-82.692847224,"2161":-74.681714456,"2162":-66.201528741,"2163":-56.3200597244,"2164":-45.9759851023,"2165":-34.263177481,"2166":-22.0960372886,"2167":-8.5981161632,"2168":5.3440714558,"2169":20.5738359572,"2170":36.2360475578,"2171":53.1375505126,"2172":70.4579745011,"2173":88.9645133987,"2174":107.8747939744,"2175":127.9133319606,"2176":148.3388388855,"2177":169.8302930056,"2178":191.6904161353,"2179":214.5499694384,"2180":237.7584368538,"2181":261.8958731266,"2182":286.3610916099,"2183":311.6811514186,"2184":337.3065679295,"2185":363.7093245659,"2186":390.3938072925,"2187":417.7750611383,"2188":445.4132986183,"2189":473.6649883739,"2190":502.1479051107,"2191":531.1585342635,"2192":560.3737211974,"2193":590.028798048,"2194":619.8609561832,"2195":650.0434456913,"2196":680.3748411287,"2197":710.9656267973,"2198":741.6765553762,"2199":772.5549093498,"2200":803.5241690657,"2201":834.5682285882,"2202":865.6735979214,"2203":896.7608462725,"2204":927.879566541,"2205":958.8873165539,"2206":989.8965763855,"2207":1020.7024546371,"2208":1051.47987465,"2209":1081.9623044126,"2210":1112.386420191,"2211":1142.4251012404,"2212":1172.3758426987,"2213":1201.8522260843,"2214":1231.2113913291,"2215":1260.0091472321,"2216":1288.6608690512,"2217":1316.6663458854,"2218":1344.4975490225,"2219":1371.6002219654,"2220":1398.5010693766,"2221":1424.59397656,"2222":1450.4583028904,"2223":1475.4384675305,"2224":1500.1641981003,"2225":1523.9330348997,"2226":1547.4225885464,"2227":1569.8862927651,"2228":1592.0469669519,"2229":1613.116884612,"2230":1633.8612212822,"2231":1653.4541990446,"2232":1672.7003297785,"2233":1690.7390431112,"2234":1708.4110122234,"2235":1724.8242705661,"2236":1740.8523348682,"2237":1755.5753625885,"2238":1769.8962666332,"2239":1782.8709586671,"2240":1795.4281843887,"2241":1806.6033355544,"2242":1817.3473253199,"2243":1826.678832401,"2244":1835.5671845912,"2245":1843.0182203926,"2246":1850.0158567421,"2247":1855.5570154295,"2248":1860.6363194645,"2249":1864.245732616,"2250":1867.3866586441,"2251":1869.0500815551,"2252":1870.2402337761,"2253":1869.9511016762,"2254":1869.1857831031,"2255":1866.9452370647,"2256":1864.2274680602,"2257":1860.0443504948,"2258":1855.3848568516,"2259":1849.2756766132,"2260":1842.692847224,"2261":1834.681714456,"2262":1826.201528741,"2263":1816.3200597244,"2264":1805.9759851023,"2265":1794.263177481,"2266":1782.0960372886,"2267":1768.5981161632,"2268":1754.6559285442,"2269":1739.4261640428,"2270":1723.7639524422,"2271":1706.8624494874,"2272":1689.5420254989,"2273":1671.0354866013,"2274":1652.1252060256,"2275":1632.0866680394,"2276":1611.6611611145,"2277":1590.1697069944,"2278":1568.3095838647,"2279":1545.4500305616,"2280":1522.2415631462,"2281":1498.1041268734,"2282":1473.6389083901,"2283":1448.3188485814,"2284":1422.6934320705,"2285":1396.2906754341,"2286":1369.6061927075,"2287":1342.2249388617,"2288":1314.5867013817,"2289":1286.3350116261,"2290":1257.8520948893,"2291":1228.8414657365,"2292":1199.6262788026,"2293":1169.971201952,"2294":1140.1390438168,"2295":1109.9565543087,"2296":1079.6251588713,"2297":1049.0343732027,"2298":1018.3234446238,"2299":987.4450906502,"2300":956.4758309343,"2301":925.4317714118,"2302":894.3264020786,"2303":863.2391537275,"2304":832.120433459,"2305":801.1126834461,"2306":770.1034236145,"2307":739.2975453629,"2308":708.52012535,"2309":678.0376955874,"2310":647.613579809,"2311":617.5748987596,"2312":587.6241573013,"2313":558.1477739157,"2314":528.7886086709,"2315":499.9908527679,"2316":471.3391309488,"2317":443.3336541146,"2318":415.5024509775,"2319":388.3997780346,"2320":361.4989306234,"2321":335.40602344,"2322":309.5416971096,"2323":284.5615324694,"2324":259.8358018997,"2325":236.0669651003,"2326":212.5774114536,"2327":190.1137072349,"2328":167.9530330481,"2329":146.883115388,"2330":126.1387787178,"2331":106.5458009554,"2332":87.2996702215,"2333":69.2609568888,"2334":51.5889877766,"2335":35.1757294339,"2336":19.1476651318,"2337":4.4246374115,"2338":-9.8962666332,"2339":-22.8709586671,"2340":-35.4281843887,"2341":-46.6033355544,"2342":-57.3473253199,"2343":-66.678832401,"2344":-75.5671845912,"2345":-83.0182203926,"2346":-90.0158567421,"2347":-95.5570154295,"2348":-100.6363194645,"2349":-104.245732616,"2350":-107.3866586441,"2351":-109.0500815551,"2352":-110.2402337761,"2353":-109.9511016762,"2354":-109.1857831031,"2355":-106.9452370647,"2356":-104.2274680602,"2357":-100.0443504948,"2358":-95.3848568516,"2359":-89.2756766132,"2360":-82.692847224,"2361":-74.681714456,"2362":-66.201528741,"2363":-56.3200597244,"2364":-45.9759851023,"2365":-34.263177481,"2366":-22.0960372886,"2367":-8.5981161632,"2368":5.3440714558,"2369":20.5738359572,"2370":36.2360475578,"2371":53.1375505126,"2372":70.4579745011,"2373":88.9645133987,"2374":107.8747939744,"2375":127.9133319606,"2376":148.3388388855,"2377":169.8302930056,"2378":191.6904161353,"2379":214.5499694384,"2380":237.7584368538,"2381":261.8958731266,"2382":286.3610916099,"2383":311.6811514186,"2384":337.3065679295,"2385":363.7093245659,"2386":390.3938072925,"2387":417.7750611383,"2388":445.4132986183,"2389":473.6649883739,"2390":502.1479051107,"2391":531.1585342635,"2392":560.3737211974,"2393":590.028798048,"2394":619.8609561832,"2395":650.0434456913,"2396":680.3748411287,"2397":710.9656267973,"2398":741.6765553762,"2399":772.5549093498,"2400":803.5241690657,"2401":834.5682285882,"2402":865.6735979214,"2403":896.7608462725,"2404":927.879566541,"2405":958.8873165539,"2406":989.8965763855,"2407":1020.7024546371,"2408":1051.47987465,"2409":1081.9623044126,"2410":1112.386420191,"2411":1142.4251012404,"2412":1172.3758426987,"2413":1201.8522260843,"2414":1231.2113913291,"2415":1260.0091472321,"2416":1288.6608690512,"2417":1316.6663458854,"2418":1344.4975490225,"2419":1371.6002219654,"2420":1398.5010693766,"2421":1424.59397656,"2422":1450.4583028904,"2423":1475.4384675305,"2424":1500.1641981003,"2425":1523.9330348997,"2426":1547.4225885464,"2427":1569.8862927651,"2428":1592.0469669519,"2429":1613.116884612,"2430":1633.8612212822,"2431":1653.4541990446,"2432":1672.7003297785,"2433":1690.7390431112,"2434":1708.4110122234,"2435":1724.8242705661,"2436":1740.8523348682,"2437":1755.5753625885,"2438":1769.8962666332,"2439":1782.8709586671,"2440":1795.4281843887,"2441":1806.6033355544,"2442":1817.3473253199,"2443":1826.678832401,"2444":1835.5671845912,"2445":1843.0182203926,"2446":1850.0158567421,"2447":1855.5570154295,"2448":1860.6363194645,"2449":1864.245732616,"2450":1867.3866586441,"2451":1869.0500815551,"2452":1870.2402337761,"2453":1869.9511016762,"2454":1869.1857831031,"2455":1866.9452370647,"2456":1864.2274680602,"2457":1860.0443504948,"2458":1855.3848568516,"2459":1849.2756766132,"2460":1842.692847224,"2461":1834.681714456,"2462":1826.201528741,"2463":1816.3200597244,"2464":1805.9759851023,"2465":1794.263177481,"2466":1782.0960372886,"2467":1768.5981161632,"2468":1754.6559285442,"2469":1739.4261640428,"2470":1723.7639524422,"2471":1706.8624494874,"2472":1689.5420254989,"2473":1671.0354866013,"2474":1652.1252060256,"2475":1632.0866680394,"2476":1611.6611611145,"2477":1590.1697069944,"2478":1568.3095838647,"2479":1545.4500305616,"2480":1522.2415631462,"2481":1498.1041268734,"2482":1473.6389083901,"2483":1448.3188485814,"2484":1422.6934320705,"2485":1396.2906754341,"2486":1369.6061927075,"2487":1342.2249388617,"2488":1314.5867013817,"2489":1286.3350116261,"2490":1257.8520948893,"2491":1228.8414657365,"2492":1199.6262788026,"2493":1169.971201952,"2494":1140.1390438168,"2495":1109.9565543087,"2496":1079.6251588713,"2497":1049.0343732027,"2498":1018.3234446238,"2499":987.4450906502,"2500":956.4758309343,"2501":925.4317714118,"2502":894.3264020786,"2503":863.2391537275,"2504":832.120433459,"2505":801.1126834461,"2506":770.1034236145,"2507":739.2975453629,"2508":708.52012535,"2509":678.0376955874,"2510":647.613579809,"2511":617.5748987596,"2512":587.6241573013,"2513":558.1477739157,"2514":528.7886086709,"2515":499.9908527679,"2516":471.3391309488,"2517":443.3336541146,"2518":415.5024509775,"2519":388.3997780346,"2520":361.4989306234,"2521":335.40602344,"2522":309.5416971096,"2523":284.5615324694,"2524":259.8358018997,"2525":236.0669651003,"2526":212.5774114536,"2527":190.1137072349,"2528":167.9530330481,"2529":146.883115388,"2530":126.1387787178,"2531":106.5458009554,"2532":87.2996702215,"2533":69.2609568888,"2534":51.5889877766,"2535":35.1757294339,"2536":19.1476651318,"2537":4.4246374115,"2538":-9.8962666332,"2539":-22.8709586671,"2540":-35.4281843887,"2541":-46.6033355544,"2542":-57.3473253199,"2543":-66.678832401,"2544":-75.5671845912,"2545":-83.0182203926,"2546":-90.0158567421,"2547":-95.5570154295,"2548":-100.6363194645,"2549":-104.245732616,"2550":-107.3866586441,"2551":-109.0500815551,"2552":-110.2402337761,"2553":-109.9511016762,"2554":-109.1857831031,"2555":-106.9452370647,"2556":-104.2274680602,"2557":-100.0443504948,"2558":-95.3848568516,"2559":-89.2756766132,"2560":-82.692847224,"2561":-74.681714456,"2562":-66.201528741,"2563":-56.3200597244,"2564":-45.9759851023,"2565":-34.263177481,"2566":-22.0960372886,"2567":-8.5981161632,"2568":5.3440714558,"2569":20.5738359572,"2570":36.2360475578,"2571":53.1375505126,"2572":70.4579745011,"2573":88.9645133987,"2574":107.8747939744,"2575":127.9133319606,"2576":148.3388388855,"2577":169.8302930056,"2578":191.6904161353,"2579":214.5499694384,"2580":237.7584368538,"2581":261.8958731266,"2582":286.3610916099,"2583":311.6811514186,"2584":337.3065679295,"2585":363.7093245659,"2586":390.3938072925,"2587":417.7750611383,"2588":445.4132986183,"2589":473.6649883739,"2590":502.1479051107,"2591":531.1585342635,"2592":560.3737211974,"2593":590.028798048,"2594":619.8609561832,"2595":650.0434456913,"2596":680.3748411287,"2597":710.9656267973,"2598":741.6765553762,"2599":772.5549093498,"2600":803.5241690657,"2601":834.5682285882,"2602":865.6735979214,"2603":896.7608462725,"2604":927.879566541,"2605":958.8873165539,"2606":989.8965763855,"2607":1020.7024546371,"2608":1051.47987465,"2609":1081.9623044126,"2610":1112.386420191,"2611":1142.4251012404,"2612":1172.3758426987,"2613":1201.8522260843,"2614":1231.2113913291,"2615":1260.0091472321,"2616":1288.6608690512,"2617":1316.6663458854,"2618":1344.4975490225,"2619":1371.6002219654,"2620":1398.5010693766,"2621":1424.59397656,"2622":1450.4583028904,"2623":1475.4384675305,"2624":1500.1641981003,"2625":1523.9330348997,"2626":1547.4225885464,"2627":1569.8862927651,"2628":1592.0469669519,"2629":1613.116884612,"2630":1633.8612212822,"2631":1653.4541990446,"2632":1672.7003297785,"2633":1690.7390431112,"2634":1708.4110122234,"2635":1724.8242705661,"2636":1740.8523348682,"2637":1755.5753625885,"2638":1769.8962666332,"2639":1782.8709586671,"2640":1795.4281843887,"2641":1806.6033355544,"2642":1817.3473253199,"2643":1826.678832401,"2644":1835.5671845912,"2645":1843.0182203926,"2646":1850.0158567421,"2647":1855.5570154295,"2648":1860.6363194645,"2649":1864.245732616,"2650":1867.3866586441,"2651":1869.0500815551,"2652":1870.2402337761,"2653":1869.9511016762,"2654":1869.1857831031,"2655":1866.9452370647,"2656":1864.2274680602,"2657":1860.0443504948,"2658":1855.3848568516,"2659":1849.2756766132,"2660":1842.692847224,"2661":1834.681714456,"2662":1826.201528741,"2663":1816.3200597244,"2664":1805.9759851023,"2665":1794.263177481,"2666":1782.0960372886,"2667":1768.5981161632,"2668":1754.6559285442,"2669":1739.4261640428,"2670":1723.7639524422,"2671":1706.8624494874,"2672":1689.5420254989,"2673":1671.0354866013,"2674":1652.1252060256,"2675":1632.0866680394,"2676":1611.6611611145,"2677":1590.1697069944,"2678":1568.3095838647,"2679":1545.4500305616,"2680":1522.2415631462,"2681":1498.1041268734,"2682":1473.6389083901,"2683":1448.3188485814,"2684":1422.6934320705,"2685":1396.2906754341,"2686":1369.6061927075,"2687":1342.2249388617,"2688":1314.5867013817,"2689":1286.3350116261,"2690":1257.8520948893,"2691":1228.8414657365,"2692":1199.6262788026,"2693":1169.971201952,"2694":1140.1390438168,"2695":1109.9565543087,"2696":1079.6251588713,"2697":1049.0343732027,"2698":1018.3234446238,"2699":987.4450906502,"2700":956.4758309343,"2701":925.4317714118,"2702":894.3264020786,"2703":863.2391537275,"2704":832.120433459,"2705":801.1126834461,"2706":770.1034236145,"2707":739.2975453629,"2708":708.52012535,"2709":678.0376955874,"2710":647.613579809,"2711":617.5748987596,"2712":587.6241573013,"2713":558.1477739157,"2714":528.7886086709,"2715":499.9908527679,"2716":471.3391309488,"2717":443.3336541146,"2718":415.5024509775,"2719":388.3997780346,"2720":361.4989306234,"2721":335.40602344,"2722":309.5416971096,"2723":284.5615324694,"2724":259.8358018997,"2725":236.0669651003,"2726":212.5774114536,"2727":190.1137072349,"2728":167.9530330481,"2729":146.883115388,"2730":126.1387787178,"2731":106.5458009554,"2732":87.2996702215,"2733":69.2609568888,"2734":51.5889877766,"2735":35.1757294339,"2736":19.1476651318,"2737":4.4246374115,"2738":-9.8962666332,"2739":-22.8709586671,"2740":-35.4281843887,"2741":-46.6033355544,"2742":-57.3473253199,"2743":-66.678832401,"2744":-75.5671845912,"2745":-83.0182203926,"2746":-90.0158567421,"2747":-95.5570154295,"2748":-100.6363194645,"2749":-104.245732616,"2750":-107.3866586441,"2751":-109.0500815551,"2752":-110.2402337761,"2753":-109.9511016762,"2754":-109.1857831031,"2755":-106.9452370647,"2756":-104.2274680602,"2757":-100.0443504948,"2758":-95.3848568516,"2759":-89.2756766132,"2760":-82.692847224,"2761":-74.681714456,"2762":-66.201528741,"2763":-56.3200597244,"2764":-45.9759851023,"2765":-34.263177481,"2766":-22.0960372886,"2767":-8.5981161632,"2768":5.3440714558,"2769":20.5738359572,"2770":36.2360475578,"2771":53.1375505126,"2772":70.4579745011,"2773":88.9645133987,"2774":107.8747939744,"2775":127.9133319606,"2776":148.3388388855,"2777":169.8302930056,"2778":191.6904161353,"2779":214.5499694384,"2780":237.7584368538,"2781":261.8958731266,"2782":286.3610916099,"2783":311.6811514186,"2784":337.3065679295,"2785":363.7093245659,"2786":390.3938072925,"2787":417.7750611383,"2788":445.4132986183,"2789":473.6649883739,"2790":502.1479051107,"2791":531.1585342635,"2792":560.3737211974,"2793":590.028798048,"2794":619.8609561832,"2795":650.0434456913,"2796":680.3748411287,"2797":710.9656267973,"2798":741.6765553762,"2799":772.5549093498,"2800":803.5241690657,"2801":834.5682285882,"2802":865.6735979214,"2803":896.7608462725,"2804":927.879566541,"2805":958.8873165539,"2806":989.8965763855,"2807":1020.7024546371,"2808":1051.47987465,"2809":1081.9623044126,"2810":1112.386420191,"2811":1142.4251012404,"2812":1172.3758426987,"2813":1201.8522260843,"2814":1231.2113913291,"2815":1260.0091472321,"2816":1288.6608690512,"2817":1316.6663458854,"2818":1344.4975490225,"2819":1371.6002219654,"2820":1398.5010693766,"2821":1424.59397656,"2822":1450.4583028904,"2823":1475.4384675305,"2824":1500.1641981003,"2825":1523.9330348997,"2826":1547.4225885464,"2827":1569.8862927651,"2828":1592.0469669519,"2829":1613.116884612,"2830":1633.8612212822,"2831":1653.4541990446,"2832":1672.7003297785,"2833":1690.7390431112,"2834":1708.4110122234,"2835":1724.8242705661,"2836":1740.8523348682,"2837":1755.5753625885,"2838":1769.8962666332,"2839":1782.8709586671,"2840":1795.4281843887,"2841":1806.6033355544,"2842":1817.3473253199,"2843":1826.678832401,"2844":1835.5671845912,"2845":1843.0182203926,"2846":1850.0158567421,"2847":1855.5570154295,"2848":1860.6363194645,"2849":1864.245732616,"2850":1867.3866586441,"2851":1869.0500815551,"2852":1870.2402337761,"2853":1869.9511016762,"2854":1869.1857831031,"2855":1866.9452370647,"2856":1864.2274680602,"2857":1860.0443504948,"2858":1855.3848568516,"2859":1849.2756766132,"2860":1842.692847224,"2861":1834.681714456,"2862":1826.201528741,"2863":1816.3200597244,"2864":1805.9759851023,"2865":1794.263177481,"2866":1782.0960372886,"2867":1768.5981161632,"2868":1754.6559285442,"2869":1739.4261640428,"2870":1723.7639524422,"2871":1706.8624494874,"2872":1689.5420254989,"2873":1671.0354866013,"2874":1652.1252060256,"2875":1632.0866680394,"2876":1611.6611611145,"2877":1590.1697069944,"2878":1568.3095838647,"2879":1545.4500305616,"2880":1522.2415631462,"2881":1498.1041268734,"2882":1473.6389083901,"2883":1448.3188485814,"2884":1422.6934320705,"2885":1396.2906754341,"2886":1369.6061927075,"2887":1342.2249388617,"2888":1314.5867013817,"2889":1286.3350116261,"2890":1257.8520948893,"2891":1228.8414657365,"2892":1199.6262788026,"2893":1169.971201952,"2894":1140.1390438168,"2895":1109.9565543087,"2896":1079.6251588713,"2897":1049.0343732027,"2898":1018.3234446238,"2899":987.4450906502,"2900":956.4758309343,"2901":925.4317714118,"2902":894.3264020786,"2903":863.2391537275,"2904":832.120433459,"2905":801.1126834461,"2906":770.1034236145,"2907":739.2975453629,"2908":708.52012535,"2909":678.0376955874,"2910":647.613579809,"2911":617.5748987596,"2912":587.6241573013,"2913":558.1477739157,"2914":528.7886086709,"2915":499.9908527679,"2916":471.3391309488,"2917":443.3336541146,"2918":415.5024509775,"2919":388.3997780346,"2920":361.4989306234,"2921":335.40602344,"2922":309.5416971096,"2923":284.5615324694,"2924":259.8358018997,"2925":236.0669651003,"2926":212.5774114536,"2927":190.1137072349,"2928":167.9530330481,"2929":146.883115388,"2930":126.1387787178,"2931":106.5458009554,"2932":87.2996702215,"2933":69.2609568888,"2934":51.5889877766,"2935":35.1757294339,"2936":19.1476651318,"2937":4.4246374115,"2938":-9.8962666332,"2939":-22.8709586671,"2940":-35.4281843887,"2941":-46.6033355544,"2942":-57.3473253199,"2943":-66.678832401,"2944":-75.5671845912,"2945":-83.0182203926,"2946":-90.0158567421,"2947":-95.5570154295,"2948":-100.6363194645,"2949":-104.245732616,"2950":-107.3866586441,"2951":-109.0500815551,"2952":-110.2402337761,"2953":-109.9511016762,"2954":-109.1857831031,"2955":-106.9452370647,"2956":-104.2274680602,"2957":-100.0443504948,"2958":-95.3848568516,"2959":-89.2756766132,"2960":-82.692847224,"2961":-74.681714456,"2962":-66.201528741,"2963":-56.3200597244,"2964":-45.9759851023,"2965":-34.263177481,"2966":-22.0960372886,"2967":-8.5981161632,"2968":5.3440714558,"2969":20.5738359572,"2970":36.2360475578,"2971":53.1375505126,"2972":70.4579745011,"2973":88.9645133987,"2974":107.8747939744,"2975":127.9133319606,"2976":148.3388388855,"2977":169.8302930056,"2978":191.6904161353,"2979":214.5499694384,"2980":237.7584368538,"2981":261.8958731266,"2982":286.3610916099,"2983":311.6811514186,"2984":337.3065679295,"2985":363.7093245659,"2986":390.3938072925,"2987":417.7750611383,"2988":445.4132986183,"2989":473.6649883739,"2990":502.1479051107,"2991":531.1585342635,"2992":560.3737211974,"2993":590.028798048,"2994":619.8609561832,"2995":650.0434456913,"2996":680.3748411287,"2997":710.9656267973,"2998":741.6765553762,"2999":772.5549093498,"3000":803.5241690657,"3001":834.5682285882,"3002":865.6735979214,"3003":896.7608462725,"3004":927.879566541,"3005":958.8873165539,"3006":989.8965763855,"3007":1020.7024546371,"3008":1051.47987465,"3009":1081.9623044126,"3010":1112.386420191,"3011":1142.4251012404,"3012":1172.3758426987,"3013":1201.8522260843,"3014":1231.2113913291,"3015":1260.0091472321,"3016":1288.6608690512,"3017":1316.6663458854,"3018":1344.4975490225,"3019":1371.6002219654,"3020":1398.5010693766,"3021":1424.59397656,"3022":1450.4583028904,"3023":1475.4384675305,"3024":1500.1641981003,"3025":1523.9330348997,"3026":1547.4225885464,"3027":1569.8862927651,"3028":1592.0469669519,"3029":1613.116884612,"3030":1633.8612212822,"3031":1653.4541990446,"3032":1672.7003297785,"3033":1690.7390431112,"3034":1708.4110122234,"3035":1724.8242705661,"3036":1740.8523348682,"3037":1755.5753625885,"3038":1769.8962666332,"3039":1782.8709586671,"3040":1795.4281843887,"3041":1806.6033355544,"3042":1817.3473253199,"3043":1826.678832401,"3044":1835.5671845912,"3045":1843.0182203926,"3046":1850.0158567421,"3047":1855.5570154295,"3048":1860.6363194645,"3049":1864.245732616,"3050":1867.3866586441,"3051":1869.0500815551,"3052":1870.2402337761,"3053":1869.9511016762,"3054":1869.1857831031,"3055":1866.9452370647,"3056":1864.2274680602,"3057":1860.0443504948,"3058":1855.3848568516,"3059":1849.2756766132,"3060":1842.692847224,"3061":1834.681714456,"3062":1826.201528741,"3063":1816.3200597244,"3064":1805.9759851023,"3065":1794.263177481,"3066":1782.0960372886,"3067":1768.5981161632,"3068":1754.6559285442,"3069":1739.4261640428,"3070":1723.7639524422,"3071":1706.8624494874,"3072":1689.5420254989,"3073":1671.0354866013,"3074":1652.1252060256,"3075":1632.0866680394,"3076":1611.6611611145,"3077":1590.1697069944,"3078":1568.3095838647,"3079":1545.4500305616,"3080":1522.2415631462,"3081":1498.1041268734,"3082":1473.6389083901,"3083":1448.3188485814,"3084":1422.6934320705,"3085":1396.2906754341,"3086":1369.6061927075,"3087":1342.2249388617,"3088":1314.5867013817,"3089":1286.3350116261,"3090":1257.8520948893,"3091":1228.8414657365,"3092":1199.6262788026,"3093":1169.971201952,"3094":1140.1390438168,"3095":1109.9565543087,"3096":1079.6251588713,"3097":1049.0343732027,"3098":1018.3234446238,"3099":987.4450906502,"3100":956.4758309343,"3101":925.4317714118,"3102":894.3264020786,"3103":863.2391537275,"3104":832.120433459,"3105":801.1126834461,"3106":770.1034236145,"3107":739.2975453629,"3108":708.52012535,"3109":678.0376955874,"3110":647.613579809,"3111":617.5748987596,"3112":587.6241573013,"3113":558.1477739157,"3114":528.7886086709,"3115":499.9908527679,"3116":471.3391309488,"3117":443.3336541146,"3118":415.5024509775,"3119":388.3997780346,"3120":361.4989306234,"3121":335.40602344,"3122":309.5416971096,"3123":284.5615324694,"3124":259.8358018997,"3125":236.0669651003,"3126":212.5774114536,"3127":190.1137072349,"3128":167.9530330481,"3129":146.883115388,"3130":126.1387787178,"3131":106.5458009554,"3132":87.2996702215,"3133":69.2609568888,"3134":51.5889877766,"3135":35.1757294339,"3136":19.1476651318,"3137":4.4246374115,"3138":-9.8962666332,"3139":-22.8709586671,"3140":-35.4281843887,"3141":-46.6033355544,"3142":-57.3473253199,"3143":-66.678832401,"3144":-75.5671845912,"3145":-83.0182203926,"3146":-90.0158567421,"3147":-95.5570154295,"3148":-100.6363194645,"3149":-104.245732616,"3150":-107.3866586441,"3151":-109.0500815551,"3152":-110.2402337761,"3153":-109.9511016762,"3154":-109.1857831031,"3155":-106.9452370647,"3156":-104.2274680602,"3157":-100.0443504948,"3158":-95.3848568516,"3159":-89.2756766132,"3160":-82.692847224,"3161":-74.681714456,"3162":-66.201528741,"3163":-56.3200597244,"3164":-45.9759851023,"3165":-34.263177481,"3166":-22.0960372886,"3167":-8.5981161632,"3168":5.3440714558,"3169":20.5738359572,"3170":36.2360475578,"3171":53.1375505126,"3172":70.4579745011,"3173":88.9645133987,"3174":107.8747939744,"3175":127.9133319606,"3176":148.3388388855,"3177":169.8302930056,"3178":191.6904161353,"3179":214.5499694384,"3180":237.7584368538,"3181":261.8958731266,"3182":286.3610916099,"3183":311.6811514186,"3184":337.3065679295,"3185":363.7093245659,"3186":390.3938072925,"3187":417.7750611383,"3188":445.4132986183,"3189":473.6649883739,"3190":502.1479051107,"3191":531.1585342635,"3192":560.3737211974,"3193":590.028798048,"3194":619.8609561832,"3195":650.0434456913,"3196":680.3748411287,"3197":710.9656267973,"3198":741.6765553762,"3199":772.5549093498,"3200":803.5241690657,"3201":834.5682285882,"3202":865.6735979214,"3203":896.7608462726,"3204":927.879566541,"3205":958.8873165539,"3206":989.8965763855,"3207":1020.7024546371,"3208":1051.47987465,"3209":1081.9623044126,"3210":1112.386420191,"3211":1142.4251012404,"3212":1172.3758426987,"3213":1201.8522260843,"3214":1231.2113913291,"3215":1260.0091472321,"3216":1288.6608690512,"3217":1316.6663458854,"3218":1344.4975490225,"3219":1371.6002219654,"3220":1398.5010693766,"3221":1424.5939765601,"3222":1450.4583028904,"3223":1475.4384675306,"3224":1500.1641981003,"3225":1523.9330348997,"3226":1547.4225885464,"3227":1569.8862927651,"3228":1592.0469669519,"3229":1613.116884612,"3230":1633.8612212822,"3231":1653.4541990446,"3232":1672.7003297785,"3233":1690.7390431112,"3234":1708.4110122234,"3235":1724.8242705661,"3236":1740.8523348682,"3237":1755.5753625885,"3238":1769.8962666332,"3239":1782.8709586671,"3240":1795.4281843887,"3241":1806.6033355544,"3242":1817.3473253199,"3243":1826.678832401,"3244":1835.5671845912,"3245":1843.0182203926,"3246":1850.0158567421,"3247":1855.5570154295,"3248":1860.6363194645,"3249":1864.245732616,"3250":1867.3866586441,"3251":1869.0500815551,"3252":1870.2402337761,"3253":1869.9511016762,"3254":1869.1857831031,"3255":1866.9452370647,"3256":1864.2274680602,"3257":1860.0443504948,"3258":1855.3848568516,"3259":1849.2756766132,"3260":1842.692847224,"3261":1834.681714456,"3262":1826.201528741,"3263":1816.3200597244,"3264":1805.9759851023,"3265":1794.263177481,"3266":1782.0960372886,"3267":1768.5981161632,"3268":1754.6559285442,"3269":1739.4261640428,"3270":1723.7639524422,"3271":1706.8624494873,"3272":1689.5420254989,"3273":1671.0354866013,"3274":1652.1252060256,"3275":1632.0866680394,"3276":1611.6611611145,"3277":1590.1697069944,"3278":1568.3095838647,"3279":1545.4500305616,"3280":1522.2415631462,"3281":1498.1041268734,"3282":1473.6389083901,"3283":1448.3188485814,"3284":1422.6934320705,"3285":1396.2906754341,"3286":1369.6061927075,"3287":1342.2249388617,"3288":1314.5867013817,"3289":1286.3350116261,"3290":1257.8520948893,"3291":1228.8414657365,"3292":1199.6262788026,"3293":1169.971201952,"3294":1140.1390438168,"3295":1109.9565543087,"3296":1079.6251588713,"3297":1049.0343732027,"3298":1018.3234446238,"3299":987.4450906501,"3300":956.4758309343,"3301":925.4317714118,"3302":894.3264020786,"3303":863.2391537274,"3304":832.120433459,"3305":801.1126834461,"3306":770.1034236145,"3307":739.2975453629,"3308":708.52012535,"3309":678.0376955874,"3310":647.613579809,"3311":617.5748987596,"3312":587.6241573013,"3313":558.1477739157,"3314":528.7886086709,"3315":499.9908527679,"3316":471.3391309488,"3317":443.3336541146,"3318":415.5024509775,"3319":388.3997780346,"3320":361.4989306234,"3321":335.4060234399,"3322":309.5416971096,"3323":284.5615324694,"3324":259.8358018997,"3325":236.0669651003,"3326":212.5774114536,"3327":190.1137072349,"3328":167.9530330481,"3329":146.883115388,"3330":126.1387787178,"3331":106.5458009554,"3332":87.2996702215,"3333":69.2609568888,"3334":51.5889877766,"3335":35.1757294339,"3336":19.1476651318,"3337":4.4246374115,"3338":-9.8962666332,"3339":-22.8709586671,"3340":-35.4281843887,"3341":-46.6033355544,"3342":-57.3473253199,"3343":-66.678832401,"3344":-75.5671845912,"3345":-83.0182203926,"3346":-90.0158567421,"3347":-95.5570154295,"3348":-100.6363194645,"3349":-104.245732616,"3350":-107.3866586441,"3351":-109.0500815551,"3352":-110.2402337761,"3353":-109.9511016762,"3354":-109.1857831031,"3355":-106.9452370647,"3356":-104.2274680602,"3357":-100.0443504948,"3358":-95.3848568516,"3359":-89.2756766132,"3360":-82.692847224,"3361":-74.681714456,"3362":-66.201528741,"3363":-56.3200597244,"3364":-45.9759851023,"3365":-34.263177481,"3366":-22.0960372886,"3367":-8.5981161632,"3368":5.3440714558,"3369":20.5738359572,"3370":36.2360475578,"3371":53.1375505127,"3372":70.4579745011,"3373":88.9645133987,"3374":107.8747939744,"3375":127.9133319606,"3376":148.3388388855,"3377":169.8302930056,"3378":191.6904161353,"3379":214.5499694384,"3380":237.7584368538,"3381":261.8958731266,"3382":286.3610916099,"3383":311.6811514186,"3384":337.3065679295,"3385":363.7093245659,"3386":390.3938072925,"3387":417.7750611383,"3388":445.4132986183,"3389":473.6649883739,"3390":502.1479051107,"3391":531.1585342635,"3392":560.3737211974,"3393":590.028798048,"3394":619.8609561832,"3395":650.0434456913,"3396":680.3748411287,"3397":710.9656267973,"3398":741.6765553762,"3399":772.5549093499,"3400":803.5241690657,"3401":834.5682285882,"3402":865.6735979214,"3403":896.7608462726,"3404":927.879566541,"3405":958.8873165539,"3406":989.8965763855,"3407":1020.7024546371,"3408":1051.47987465,"3409":1081.9623044126,"3410":1112.386420191,"3411":1142.4251012404,"3412":1172.3758426987,"3413":1201.8522260843,"3414":1231.2113913291,"3415":1260.0091472321,"3416":1288.6608690512,"3417":1316.6663458854,"3418":1344.4975490225,"3419":1371.6002219654,"3420":1398.5010693766,"3421":1424.5939765601,"3422":1450.4583028904,"3423":1475.4384675306,"3424":1500.1641981003,"3425":1523.9330348997,"3426":1547.4225885464,"3427":1569.8862927651,"3428":1592.0469669519,"3429":1613.116884612,"3430":1633.8612212822,"3431":1653.4541990446,"3432":1672.7003297785,"3433":1690.7390431112,"3434":1708.4110122234,"3435":1724.8242705661,"3436":1740.8523348682,"3437":1755.5753625885,"3438":1769.8962666332,"3439":1782.8709586671,"3440":1795.4281843887,"3441":1806.6033355544,"3442":1817.3473253199,"3443":1826.678832401,"3444":1835.5671845912,"3445":1843.0182203926,"3446":1850.0158567421,"3447":1855.5570154295,"3448":1860.6363194645,"3449":1864.245732616,"3450":1867.3866586441,"3451":1869.0500815551,"3452":1870.2402337761,"3453":1869.9511016762,"3454":1869.1857831031,"3455":1866.9452370647,"3456":1864.2274680602,"3457":1860.0443504948,"3458":1855.3848568516,"3459":1849.2756766132,"3460":1842.692847224,"3461":1834.681714456,"3462":1826.201528741,"3463":1816.3200597244,"3464":1805.9759851023,"3465":1794.263177481,"3466":1782.0960372886,"3467":1768.5981161632,"3468":1754.6559285442,"3469":1739.4261640428,"3470":1723.7639524422,"3471":1706.8624494873,"3472":1689.5420254989,"3473":1671.0354866013,"3474":1652.1252060256,"3475":1632.0866680394,"3476":1611.6611611145,"3477":1590.1697069944,"3478":1568.3095838647,"3479":1545.4500305616,"3480":1522.2415631462,"3481":1498.1041268734,"3482":1473.6389083901,"3483":1448.3188485814,"3484":1422.6934320705,"3485":1396.2906754341,"3486":1369.6061927075,"3487":1342.2249388617,"3488":1314.5867013817,"3489":1286.3350116261,"3490":1257.8520948893,"3491":1228.8414657365,"3492":1199.6262788026,"3493":1169.971201952,"3494":1140.1390438168,"3495":1109.9565543087,"3496":1079.6251588713,"3497":1049.0343732027,"3498":1018.3234446238,"3499":987.4450906501,"3500":956.4758309343,"3501":925.4317714118,"3502":894.3264020786,"3503":863.2391537274,"3504":832.120433459,"3505":801.1126834461,"3506":770.1034236145,"3507":739.2975453629,"3508":708.52012535,"3509":678.0376955874,"3510":647.613579809,"3511":617.5748987596,"3512":587.6241573013,"3513":558.1477739157,"3514":528.7886086709,"3515":499.9908527679,"3516":471.3391309488,"3517":443.3336541146,"3518":415.5024509775,"3519":388.3997780346,"3520":361.4989306234,"3521":335.4060234399,"3522":309.5416971096,"3523":284.5615324694,"3524":259.8358018997,"3525":236.0669651003,"3526":212.5774114536,"3527":190.1137072349,"3528":167.9530330481,"3529":146.883115388,"3530":126.1387787178,"3531":106.5458009554,"3532":87.2996702215,"3533":69.2609568888,"3534":51.5889877766,"3535":35.1757294339,"3536":19.1476651318,"3537":4.4246374115,"3538":-9.8962666332,"3539":-22.8709586671,"3540":-35.4281843887,"3541":-46.6033355544,"3542":-57.3473253199,"3543":-66.678832401,"3544":-75.5671845912,"3545":-83.0182203926,"3546":-90.0158567421,"3547":-95.5570154295,"3548":-100.6363194645,"3549":-104.245732616,"3550":-107.3866586441,"3551":-109.0500815551,"3552":-110.2402337761,"3553":-109.9511016762,"3554":-109.1857831031,"3555":-106.9452370647,"3556":-104.2274680602,"3557":-100.0443504948,"3558":-95.3848568516,"3559":-89.2756766132,"3560":-82.692847224,"3561":-74.681714456,"3562":-66.201528741,"3563":-56.3200597244,"3564":-45.9759851023,"3565":-34.263177481,"3566":-22.0960372886,"3567":-8.5981161632,"3568":5.3440714558,"3569":20.5738359572,"3570":36.2360475578,"3571":53.1375505127,"3572":70.4579745011,"3573":88.9645133987,"3574":107.8747939744,"3575":127.9133319606,"3576":148.3388388855,"3577":169.8302930056,"3578":191.6904161353,"3579":214.5499694384,"3580":237.7584368538,"3581":261.8958731266,"3582":286.3610916099,"3583":311.6811514186,"3584":337.3065679295,"3585":363.7093245659,"3586":390.3938072925,"3587":417.7750611383,"3588":445.4132986183,"3589":473.6649883739,"3590":502.1479051107,"3591":531.1585342635,"3592":560.3737211974,"3593":590.028798048,"3594":619.8609561832,"3595":650.0434456913,"3596":680.3748411287,"3597":710.9656267973,"3598":741.6765553762,"3599":772.5549093499,"3600":803.5241690657,"3601":834.5682285882,"3602":865.6735979214,"3603":896.7608462726,"3604":927.879566541,"3605":958.8873165539,"3606":989.8965763855,"3607":1020.7024546371,"3608":1051.47987465,"3609":1081.9623044126,"3610":1112.386420191,"3611":1142.4251012404,"3612":1172.3758426987,"3613":1201.8522260843,"3614":1231.2113913291,"3615":1260.0091472321,"3616":1288.6608690512,"3617":1316.6663458854,"3618":1344.4975490225,"3619":1371.6002219654,"3620":1398.5010693766,"3621":1424.5939765601,"3622":1450.4583028904,"3623":1475.4384675306,"3624":1500.1641981003,"3625":1523.9330348997,"3626":1547.4225885464,"3627":1569.8862927651,"3628":1592.0469669519,"3629":1613.116884612,"3630":1633.8612212822,"3631":1653.4541990446,"3632":1672.7003297785,"3633":1690.7390431112,"3634":1708.4110122234,"3635":1724.8242705661,"3636":1740.8523348682,"3637":1755.5753625885,"3638":1769.8962666332,"3639":1782.8709586671,"3640":1795.4281843887,"3641":1806.6033355544,"3642":1817.3473253199,"3643":1826.678832401,"3644":1835.5671845912,"3645":1843.0182203926,"3646":1850.0158567421,"3647":1855.5570154295,"3648":1860.6363194645,"3649":1864.245732616,"3650":1867.3866586441,"3651":1869.0500815551,"3652":1870.2402337761,"3653":1869.9511016762,"3654":1869.1857831031,"3655":1866.9452370647,"3656":1864.2274680602,"3657":1860.0443504948,"3658":1855.3848568516,"3659":1849.2756766132,"3660":1842.692847224,"3661":1834.681714456,"3662":1826.201528741,"3663":1816.3200597244,"3664":1805.9759851023,"3665":1794.263177481,"3666":1782.0960372886,"3667":1768.5981161632,"3668":1754.6559285442,"3669":1739.4261640428,"3670":1723.7639524422,"3671":1706.8624494873,"3672":1689.5420254989,"3673":1671.0354866013,"3674":1652.1252060256,"3675":1632.0866680394,"3676":1611.6611611145,"3677":1590.1697069944,"3678":1568.3095838647,"3679":1545.4500305616,"3680":1522.2415631462,"3681":1498.1041268734,"3682":1473.6389083901,"3683":1448.3188485814,"3684":1422.6934320705,"3685":1396.2906754341,"3686":1369.6061927075,"3687":1342.2249388617,"3688":1314.5867013817,"3689":1286.3350116261,"3690":1257.8520948893,"3691":1228.8414657365,"3692":1199.6262788026,"3693":1169.971201952,"3694":1140.1390438168,"3695":1109.9565543087,"3696":1079.6251588713,"3697":1049.0343732027,"3698":1018.3234446238,"3699":987.4450906501,"3700":956.4758309343,"3701":925.4317714118,"3702":894.3264020786,"3703":863.2391537274,"3704":832.120433459,"3705":801.1126834461,"3706":770.1034236145,"3707":739.2975453629,"3708":708.52012535,"3709":678.0376955874,"3710":647.613579809,"3711":617.5748987596,"3712":587.6241573013,"3713":558.1477739157,"3714":528.7886086709,"3715":499.9908527679,"3716":471.3391309488,"3717":443.3336541146,"3718":415.5024509775,"3719":388.3997780346,"3720":361.4989306234,"3721":335.4060234399,"3722":309.5416971096,"3723":284.5615324694,"3724":259.8358018997,"3725":236.0669651003,"3726":212.5774114536,"3727":190.1137072349,"3728":167.9530330481,"3729":146.883115388,"3730":126.1387787178,"3731":106.5458009554,"3732":87.2996702215,"3733":69.2609568888,"3734":51.5889877766,"3735":35.1757294339,"3736":19.1476651318,"3737":4.4246374115,"3738":-9.8962666332,"3739":-22.8709586671,"3740":-35.4281843887,"3741":-46.6033355544,"3742":-57.3473253199,"3743":-66.678832401,"3744":-75.5671845912,"3745":-83.0182203926,"3746":-90.0158567421,"3747":-95.5570154295,"3748":-100.6363194645,"3749":-104.245732616,"3750":-107.3866586441,"3751":-109.0500815551,"3752":-110.2402337761,"3753":-109.9511016762,"3754":-109.1857831031,"3755":-106.9452370647,"3756":-104.2274680602,"3757":-100.0443504948,"3758":-95.3848568516,"3759":-89.2756766132,"3760":-82.692847224,"3761":-74.681714456,"3762":-66.201528741,"3763":-56.3200597244,"3764":-45.9759851023,"3765":-34.263177481,"3766":-22.0960372886,"3767":-8.5981161632,"3768":5.3440714558,"3769":20.5738359572,"3770":36.2360475578,"3771":53.1375505127,"3772":70.4579745011,"3773":88.9645133987,"3774":107.8747939744,"3775":127.9133319606,"3776":148.3388388855,"3777":169.8302930056,"3778":191.6904161353,"3779":214.5499694384,"3780":237.7584368538,"3781":261.8958731266,"3782":286.3610916099,"3783":311.6811514186,"3784":337.3065679295,"3785":363.7093245659,"3786":390.3938072925,"3787":417.7750611383,"3788":445.4132986183,"3789":473.6649883739,"3790":502.1479051107,"3791":531.1585342635,"3792":560.3737211974,"3793":590.028798048,"3794":619.8609561832,"3795":650.0434456913,"3796":680.3748411287,"3797":710.9656267973,"3798":741.6765553762,"3799":772.5549093499,"3800":803.5241690657,"3801":834.5682285882,"3802":865.6735979214,"3803":896.7608462726,"3804":927.879566541,"3805":958.8873165539,"3806":989.8965763855,"3807":1020.7024546371,"3808":1051.47987465,"3809":1081.9623044126,"3810":1112.386420191,"3811":1142.4251012404,"3812":1172.3758426987,"3813":1201.8522260843,"3814":1231.2113913291,"3815":1260.0091472321,"3816":1288.6608690512,"3817":1316.6663458854,"3818":1344.4975490225,"3819":1371.6002219654,"3820":1398.5010693766,"3821":1424.5939765601,"3822":1450.4583028904,"3823":1475.4384675306,"3824":1500.1641981003,"3825":1523.9330348997,"3826":1547.4225885464,"3827":1569.8862927651,"3828":1592.0469669519,"3829":1613.116884612,"3830":1633.8612212822,"3831":1653.4541990446,"3832":1672.7003297785,"3833":1690.7390431112,"3834":1708.4110122234,"3835":1724.8242705661,"3836":1740.8523348682,"3837":1755.5753625885,"3838":1769.8962666332,"3839":1782.8709586671,"3840":1795.4281843887,"3841":1806.6033355544,"3842":1817.3473253199,"3843":1826.678832401,"3844":1835.5671845912,"3845":1843.0182203926,"3846":1850.0158567421,"3847":1855.5570154295,"3848":1860.6363194645,"3849":1864.245732616,"3850":1867.3866586441,"3851":1869.0500815551,"3852":1870.2402337761,"3853":1869.9511016762,"3854":1869.1857831031,"3855":1866.9452370647,"3856":1864.2274680602,"3857":1860.0443504948,"3858":1855.3848568516,"3859":1849.2756766132,"3860":1842.692847224,"3861":1834.681714456,"3862":1826.201528741,"3863":1816.3200597244,"3864":1805.9759851023,"3865":1794.263177481,"3866":1782.0960372886,"3867":1768.5981161632,"3868":1754.6559285442,"3869":1739.4261640428,"3870":1723.7639524422,"3871":1706.8624494873,"3872":1689.5420254989,"3873":1671.0354866013,"3874":1652.1252060256,"3875":1632.0866680394,"3876":1611.6611611145,"3877":1590.1697069944,"3878":1568.3095838647,"3879":1545.4500305616,"3880":1522.2415631462,"3881":1498.1041268734,"3882":1473.6389083901,"3883":1448.3188485814,"3884":1422.6934320705,"3885":1396.2906754341,"3886":1369.6061927075,"3887":1342.2249388617,"3888":1314.5867013817,"3889":1286.3350116261,"3890":1257.8520948893,"3891":1228.8414657365,"3892":1199.6262788026,"3893":1169.971201952,"3894":1140.1390438168,"3895":1109.9565543087,"3896":1079.6251588713,"3897":1049.0343732027,"3898":1018.3234446238,"3899":987.4450906501,"3900":956.4758309343,"3901":925.4317714118,"3902":894.3264020786,"3903":863.2391537274,"3904":832.120433459,"3905":801.1126834461,"3906":770.1034236145,"3907":739.2975453629,"3908":708.52012535,"3909":678.0376955874,"3910":647.613579809,"3911":617.5748987596,"3912":587.6241573013,"3913":558.1477739157,"3914":528.7886086709,"3915":499.9908527679,"3916":471.3391309488,"3917":443.3336541146,"3918":415.5024509775,"3919":388.3997780346,"3920":361.4989306234,"3921":335.4060234399,"3922":309.5416971096,"3923":284.5615324694,"3924":259.8358018997,"3925":236.0669651003,"3926":212.5774114536,"3927":190.1137072349,"3928":167.9530330481,"3929":146.883115388,"3930":126.1387787178,"3931":106.5458009554,"3932":87.2996702215,"3933":69.2609568888,"3934":51.5889877766,"3935":35.1757294339,"3936":19.1476651318,"3937":4.4246374115,"3938":-9.8962666332,"3939":-22.8709586671,"3940":-35.4281843887,"3941":-46.6033355544,"3942":-57.3473253199,"3943":-66.678832401,"3944":-75.5671845912,"3945":-83.0182203926,"3946":-90.0158567421,"3947":-95.5570154295,"3948":-100.6363194645,"3949":-104.245732616,"3950":-107.3866586441,"3951":-109.0500815551,"3952":-110.2402337761,"3953":-109.9511016762,"3954":-109.1857831031,"3955":-106.9452370647,"3956":-104.2274680602,"3957":-100.0443504948,"3958":-95.3848568516,"3959":-89.2756766132,"3960":-82.692847224,"3961":-74.681714456,"3962":-66.201528741,"3963":-56.3200597244,"3964":-45.9759851023,"3965":-34.263177481,"3966":-22.0960372886,"3967":-8.5981161632,"3968":5.3440714558,"3969":20.5738359572,"3970":36.2360475578,"3971":53.1375505127,"3972":70.4579745011,"3973":88.9645133987,"3974":107.8747939744,"3975":127.9133319606,"3976":148.3388388855,"3977":169.8302930056,"3978":191.6904161353,"3979":214.5499694384,"3980":237.7584368538,"3981":261.8958731266,"3982":286.3610916099,"3983":311.6811514186,"3984":337.3065679295,"3985":363.7093245659,"3986":390.3938072925,"3987":417.7750611383,"3988":445.4132986183,"3989":473.6649883739,"3990":502.1479051107,"3991":531.1585342635,"3992":560.3737211974,"3993":590.028798048,"3994":619.8609561832,"3995":650.0434456913,"3996":680.3748411287,"3997":710.9656267973,"3998":741.6765553762,"3999":772.5549093499,"4000":803.5241690657,"4001":834.5682285882,"4002":865.6735979214,"4003":896.7608462726,"4004":927.879566541,"4005":958.8873165539,"4006":989.8965763855,"4007":1020.7024546371,"4008":1051.47987465,"4009":1081.9623044126,"4010":1112.386420191,"4011":1142.4251012404,"4012":1172.3758426987,"4013":1201.8522260843,"4014":1231.2113913291,"4015":1260.0091472321,"4016":1288.6608690512,"4017":1316.6663458854,"4018":1344.4975490225,"4019":1371.6002219654,"4020":1398.5010693766,"4021":1424.5939765601,"4022":1450.4583028904,"4023":1475.4384675306,"4024":1500.1641981003,"4025":1523.9330348997,"4026":1547.4225885464,"4027":1569.8862927651,"4028":1592.0469669519,"4029":1613.116884612,"4030":1633.8612212822,"4031":1653.4541990446,"4032":1672.7003297785,"4033":1690.7390431112,"4034":1708.4110122234,"4035":1724.8242705661,"4036":1740.8523348682,"4037":1755.5753625885,"4038":1769.8962666332,"4039":1782.8709586671,"4040":1795.4281843887,"4041":1806.6033355544,"4042":1817.3473253199,"4043":1826.678832401,"4044":1835.5671845912,"4045":1843.0182203926,"4046":1850.0158567421,"4047":1855.5570154295,"4048":1860.6363194645,"4049":1864.245732616,"4050":1867.3866586441,"4051":1869.0500815551,"4052":1870.2402337761,"4053":1869.9511016762,"4054":1869.1857831031,"4055":1866.9452370647,"4056":1864.2274680602,"4057":1860.0443504948,"4058":1855.3848568516,"4059":1849.2756766132,"4060":1842.692847224,"4061":1834.681714456,"4062":1826.201528741,"4063":1816.3200597244,"4064":1805.9759851023,"4065":1794.263177481,"4066":1782.0960372886,"4067":1768.5981161632,"4068":1754.6559285442,"4069":1739.4261640428,"4070":1723.7639524422,"4071":1706.8624494873,"4072":1689.5420254989,"4073":1671.0354866013,"4074":1652.1252060256,"4075":1632.0866680394,"4076":1611.6611611145,"4077":1590.1697069944,"4078":1568.3095838647,"4079":1545.4500305616,"4080":1522.2415631462,"4081":1498.1041268734,"4082":1473.6389083901,"4083":1448.3188485814,"4084":1422.6934320705,"4085":1396.2906754341,"4086":1369.6061927075,"4087":1342.2249388617,"4088":1314.5867013817,"4089":1286.3350116261,"4090":1257.8520948893,"4091":1228.8414657365,"4092":1199.6262788026,"4093":1169.971201952,"4094":1140.1390438168,"4095":1109.9565543087,"4096":1079.6251588713,"4097":1049.0343732027,"4098":1018.3234446238,"4099":987.4450906501,"4100":956.4758309343,"4101":925.4317714118,"4102":894.3264020786,"4103":863.2391537274,"4104":832.120433459,"4105":801.1126834461,"4106":770.1034236145,"4107":739.2975453629,"4108":708.52012535,"4109":678.0376955874,"4110":647.613579809,"4111":617.5748987596,"4112":587.6241573013,"4113":558.1477739157,"4114":528.7886086709,"4115":499.9908527679,"4116":471.3391309488,"4117":443.3336541146,"4118":415.5024509775,"4119":388.3997780346,"4120":361.4989306234,"4121":335.4060234399,"4122":309.5416971096,"4123":284.5615324694,"4124":259.8358018997,"4125":236.0669651003,"4126":212.5774114536,"4127":190.1137072349,"4128":167.9530330481,"4129":146.883115388,"4130":126.1387787178,"4131":106.5458009554,"4132":87.2996702215,"4133":69.2609568888,"4134":51.5889877766,"4135":35.1757294339,"4136":19.1476651318,"4137":4.4246374115,"4138":-9.8962666332,"4139":-22.8709586671,"4140":-35.4281843887,"4141":-46.6033355544,"4142":-57.3473253199,"4143":-66.678832401,"4144":-75.5671845912,"4145":-83.0182203926,"4146":-90.0158567421,"4147":-95.5570154295,"4148":-100.6363194645,"4149":-104.245732616,"4150":-107.3866586441,"4151":-109.0500815551,"4152":-110.2402337761,"4153":-109.9511016762,"4154":-109.1857831031,"4155":-106.9452370647,"4156":-104.2274680602,"4157":-100.0443504948,"4158":-95.3848568516,"4159":-89.2756766132,"4160":-82.692847224,"4161":-74.681714456,"4162":-66.201528741,"4163":-56.3200597244,"4164":-45.9759851023,"4165":-34.263177481,"4166":-22.0960372886,"4167":-8.5981161632,"4168":5.3440714558,"4169":20.5738359572,"4170":36.2360475578,"4171":53.1375505127,"4172":70.4579745011,"4173":88.9645133987,"4174":107.8747939744,"4175":127.9133319606,"4176":148.3388388855,"4177":169.8302930056,"4178":191.6904161353,"4179":214.5499694384,"4180":237.7584368538,"4181":261.8958731266,"4182":286.3610916099,"4183":311.6811514186,"4184":337.3065679295,"4185":363.7093245659,"4186":390.3938072925,"4187":417.7750611383,"4188":445.4132986183,"4189":473.6649883739,"4190":502.1479051107,"4191":531.1585342635,"4192":560.3737211974,"4193":590.028798048,"4194":619.8609561832,"4195":650.0434456913,"4196":680.3748411287,"4197":710.9656267973,"4198":741.6765553762,"4199":772.5549093499,"4200":803.5241690657,"4201":834.5682285882,"4202":865.6735979214,"4203":896.7608462726,"4204":927.879566541,"4205":958.8873165539,"4206":989.8965763855,"4207":1020.7024546371,"4208":1051.47987465,"4209":1081.9623044126,"4210":1112.386420191,"4211":1142.4251012404,"4212":1172.3758426987,"4213":1201.8522260843,"4214":1231.2113913291,"4215":1260.0091472321,"4216":1288.6608690512,"4217":1316.6663458854,"4218":1344.4975490225,"4219":1371.6002219654,"4220":1398.5010693766,"4221":1424.5939765601,"4222":1450.4583028904,"4223":1475.4384675306,"4224":1500.1641981003,"4225":1523.9330348997,"4226":1547.4225885464,"4227":1569.8862927651,"4228":1592.0469669519,"4229":1613.116884612,"4230":1633.8612212822,"4231":1653.4541990446,"4232":1672.7003297785,"4233":1690.7390431112,"4234":1708.4110122234,"4235":1724.8242705661,"4236":1740.8523348682,"4237":1755.5753625885,"4238":1769.8962666332,"4239":1782.8709586671,"4240":1795.4281843887,"4241":1806.6033355544,"4242":1817.3473253199,"4243":1826.678832401,"4244":1835.5671845912,"4245":1843.0182203926,"4246":1850.0158567421,"4247":1855.5570154295,"4248":1860.6363194645,"4249":1864.245732616,"4250":1867.3866586441,"4251":1869.0500815551,"4252":1870.2402337761,"4253":1869.9511016762,"4254":1869.1857831031,"4255":1866.9452370647,"4256":1864.2274680602,"4257":1860.0443504948,"4258":1855.3848568516,"4259":1849.2756766132,"4260":1842.692847224,"4261":1834.681714456,"4262":1826.201528741,"4263":1816.3200597244,"4264":1805.9759851023,"4265":1794.263177481,"4266":1782.0960372886,"4267":1768.5981161632,"4268":1754.6559285442,"4269":1739.4261640428,"4270":1723.7639524422,"4271":1706.8624494873,"4272":1689.5420254989,"4273":1671.0354866013,"4274":1652.1252060256,"4275":1632.0866680394,"4276":1611.6611611145,"4277":1590.1697069944,"4278":1568.3095838647,"4279":1545.4500305616,"4280":1522.2415631462,"4281":1498.1041268734,"4282":1473.6389083901,"4283":1448.3188485814,"4284":1422.6934320705,"4285":1396.2906754341,"4286":1369.6061927075,"4287":1342.2249388617,"4288":1314.5867013817,"4289":1286.3350116261,"4290":1257.8520948893,"4291":1228.8414657365,"4292":1199.6262788026,"4293":1169.971201952,"4294":1140.1390438168,"4295":1109.9565543087,"4296":1079.6251588713,"4297":1049.0343732027,"4298":1018.3234446238,"4299":987.4450906501,"4300":956.4758309343,"4301":925.4317714118,"4302":894.3264020786,"4303":863.2391537274,"4304":832.120433459,"4305":801.1126834461,"4306":770.1034236145,"4307":739.2975453629,"4308":708.52012535,"4309":678.0376955874,"4310":647.613579809,"4311":617.5748987596,"4312":587.6241573013,"4313":558.1477739157,"4314":528.7886086709,"4315":499.9908527679,"4316":471.3391309488,"4317":443.3336541146,"4318":415.5024509775,"4319":388.3997780346,"4320":361.4989306234,"4321":335.4060234399,"4322":309.5416971096,"4323":284.5615324694,"4324":259.8358018997,"4325":236.0669651003,"4326":212.5774114536,"4327":190.1137072349,"4328":167.9530330481,"4329":146.883115388,"4330":126.1387787178,"4331":106.5458009554,"4332":87.2996702215,"4333":69.2609568888,"4334":51.5889877766,"4335":35.1757294339,"4336":19.1476651318,"4337":4.4246374115,"4338":-9.8962666332,"4339":-22.8709586671,"4340":-35.4281843887,"4341":-46.6033355544,"4342":-57.3473253199,"4343":-66.678832401,"4344":-75.5671845912,"4345":-83.0182203926,"4346":-90.0158567421,"4347":-95.5570154295,"4348":-100.6363194645,"4349":-104.245732616,"4350":-107.3866586441,"4351":-109.0500815551,"4352":-110.2402337761,"4353":-109.9511016762,"4354":-109.1857831031,"4355":-106.9452370647,"4356":-104.2274680602,"4357":-100.0443504948,"4358":-95.3848568516,"4359":-89.2756766132,"4360":-82.692847224,"4361":-74.681714456,"4362":-66.201528741,"4363":-56.3200597244,"4364":-45.9759851023,"4365":-34.263177481,"4366":-22.0960372886,"4367":-8.5981161632,"4368":5.3440714558,"4369":20.5738359572,"4370":36.2360475578,"4371":53.1375505127,"4372":70.4579745011,"4373":88.9645133987,"4374":107.8747939744,"4375":127.9133319606,"4376":148.3388388855,"4377":169.8302930056,"4378":191.6904161353,"4379":214.5499694384,"4380":237.7584368538,"4381":261.8958731266,"4382":286.3610916099,"4383":311.6811514186,"4384":337.3065679295,"4385":363.7093245659,"4386":390.3938072925,"4387":417.7750611383,"4388":445.4132986183,"4389":473.6649883739,"4390":502.1479051107,"4391":531.1585342635,"4392":560.3737211974,"4393":590.028798048,"4394":619.8609561832,"4395":650.0434456913,"4396":680.3748411287,"4397":710.9656267973,"4398":741.6765553762,"4399":772.5549093499,"4400":803.5241690657,"4401":834.5682285882,"4402":865.6735979214,"4403":896.7608462726,"4404":927.879566541,"4405":958.8873165539,"4406":989.8965763855,"4407":1020.7024546371,"4408":1051.47987465,"4409":1081.9623044126,"4410":1112.386420191,"4411":1142.4251012404,"4412":1172.3758426987,"4413":1201.8522260843,"4414":1231.2113913291,"4415":1260.0091472321,"4416":1288.6608690512,"4417":1316.6663458854,"4418":1344.4975490225,"4419":1371.6002219654,"4420":1398.5010693766,"4421":1424.5939765601,"4422":1450.4583028904,"4423":1475.4384675306,"4424":1500.1641981003,"4425":1523.9330348997,"4426":1547.4225885464,"4427":1569.8862927651,"4428":1592.0469669519,"4429":1613.116884612,"4430":1633.8612212822,"4431":1653.4541990446,"4432":1672.7003297785,"4433":1690.7390431112,"4434":1708.4110122234,"4435":1724.8242705661,"4436":1740.8523348682,"4437":1755.5753625885,"4438":1769.8962666332,"4439":1782.8709586671,"4440":1795.4281843887,"4441":1806.6033355544,"4442":1817.3473253199,"4443":1826.678832401,"4444":1835.5671845912,"4445":1843.0182203926,"4446":1850.0158567421,"4447":1855.5570154295,"4448":1860.6363194645,"4449":1864.245732616,"4450":1867.3866586441,"4451":1869.0500815551,"4452":1870.2402337761,"4453":1869.9511016762,"4454":1869.1857831031,"4455":1866.9452370647,"4456":1864.2274680602,"4457":1860.0443504948,"4458":1855.3848568516,"4459":1849.2756766132,"4460":1842.692847224,"4461":1834.681714456,"4462":1826.201528741,"4463":1816.3200597244,"4464":1805.9759851023,"4465":1794.263177481,"4466":1782.0960372886,"4467":1768.5981161632,"4468":1754.6559285442,"4469":1739.4261640428,"4470":1723.7639524422,"4471":1706.8624494873,"4472":1689.5420254989,"4473":1671.0354866013,"4474":1652.1252060256,"4475":1632.0866680394,"4476":1611.6611611145,"4477":1590.1697069944,"4478":1568.3095838647,"4479":1545.4500305616,"4480":1522.2415631462,"4481":1498.1041268734,"4482":1473.6389083901,"4483":1448.3188485814,"4484":1422.6934320705,"4485":1396.2906754341,"4486":1369.6061927075,"4487":1342.2249388617,"4488":1314.5867013817,"4489":1286.3350116261,"4490":1257.8520948893,"4491":1228.8414657365,"4492":1199.6262788026,"4493":1169.971201952,"4494":1140.1390438168,"4495":1109.9565543087,"4496":1079.6251588713,"4497":1049.0343732027,"4498":1018.3234446238,"4499":987.4450906501,"4500":956.4758309343,"4501":925.4317714118,"4502":894.3264020786,"4503":863.2391537274,"4504":832.120433459,"4505":801.1126834461,"4506":770.1034236145,"4507":739.2975453629,"4508":708.52012535,"4509":678.0376955874,"4510":647.613579809,"4511":617.5748987596,"4512":587.6241573013,"4513":558.1477739157,"4514":528.7886086709,"4515":499.9908527679,"4516":471.3391309488,"4517":443.3336541146,"4518":415.5024509775,"4519":388.3997780346,"4520":361.4989306234,"4521":335.4060234399,"4522":309.5416971096,"4523":284.5615324694,"4524":259.8358018997,"4525":236.0669651003,"4526":212.5774114536,"4527":190.1137072349,"4528":167.9530330481,"4529":146.883115388,"4530":126.1387787178,"4531":106.5458009554,"4532":87.2996702215,"4533":69.2609568888,"4534":51.5889877766,"4535":35.1757294339,"4536":19.1476651318,"4537":4.4246374115,"4538":-9.8962666332,"4539":-22.8709586671,"4540":-35.4281843887,"4541":-46.6033355544,"4542":-57.3473253199,"4543":-66.678832401,"4544":-75.5671845912,"4545":-83.0182203926,"4546":-90.0158567421,"4547":-95.5570154295,"4548":-100.6363194645,"4549":-104.245732616,"4550":-107.3866586441,"4551":-109.0500815551,"4552":-110.2402337761,"4553":-109.9511016762,"4554":-109.1857831031,"4555":-106.9452370647,"4556":-104.2274680602,"4557":-100.0443504948,"4558":-95.3848568516,"4559":-89.2756766132,"4560":-82.692847224,"4561":-74.681714456,"4562":-66.201528741,"4563":-56.3200597244,"4564":-45.9759851023,"4565":-34.263177481,"4566":-22.0960372886,"4567":-8.5981161632,"4568":5.3440714558,"4569":20.5738359572,"4570":36.2360475578,"4571":53.1375505127,"4572":70.4579745011,"4573":88.9645133987,"4574":107.8747939744,"4575":127.9133319606,"4576":148.3388388855,"4577":169.8302930056,"4578":191.6904161353,"4579":214.5499694384,"4580":237.7584368538,"4581":261.8958731266,"4582":286.3610916099,"4583":311.6811514186,"4584":337.3065679295,"4585":363.7093245659,"4586":390.3938072925,"4587":417.7750611383,"4588":445.4132986183,"4589":473.6649883739,"4590":502.1479051107,"4591":531.1585342635,"4592":560.3737211974,"4593":590.028798048,"4594":619.8609561832,"4595":650.0434456913,"4596":680.3748411287,"4597":710.9656267973,"4598":741.6765553762,"4599":772.5549093499,"4600":803.5241690657,"4601":834.5682285882,"4602":865.6735979214,"4603":896.7608462726,"4604":927.879566541,"4605":958.8873165539,"4606":989.8965763855,"4607":1020.7024546371,"4608":1051.47987465,"4609":1081.9623044126,"4610":1112.386420191,"4611":1142.4251012404,"4612":1172.3758426987,"4613":1201.8522260843,"4614":1231.2113913291,"4615":1260.0091472321,"4616":1288.6608690512,"4617":1316.6663458854,"4618":1344.4975490225,"4619":1371.6002219654,"4620":1398.5010693766,"4621":1424.5939765601,"4622":1450.4583028904,"4623":1475.4384675306,"4624":1500.1641981003,"4625":1523.9330348997,"4626":1547.4225885464,"4627":1569.8862927651,"4628":1592.0469669519,"4629":1613.116884612,"4630":1633.8612212822,"4631":1653.4541990446,"4632":1672.7003297785,"4633":1690.7390431112,"4634":1708.4110122234,"4635":1724.8242705661,"4636":1740.8523348682,"4637":1755.5753625885,"4638":1769.8962666332,"4639":1782.8709586671,"4640":1795.4281843887,"4641":1806.6033355544,"4642":1817.3473253199,"4643":1826.678832401,"4644":1835.5671845912,"4645":1843.0182203926,"4646":1850.0158567421,"4647":1855.5570154295,"4648":1860.6363194645,"4649":1864.245732616,"4650":1867.3866586441,"4651":1869.0500815551,"4652":1870.2402337761,"4653":1869.9511016762,"4654":1869.1857831031,"4655":1866.9452370647,"4656":1864.2274680602,"4657":1860.0443504948,"4658":1855.3848568516,"4659":1849.2756766132,"4660":1842.692847224,"4661":1834.681714456,"4662":1826.201528741,"4663":1816.3200597244,"4664":1805.9759851023,"4665":1794.263177481,"4666":1782.0960372886,"4667":1768.5981161632,"4668":1754.6559285442,"4669":1739.4261640428,"4670":1723.7639524422,"4671":1706.8624494873,"4672":1689.5420254989,"4673":1671.0354866013,"4674":1652.1252060256,"4675":1632.0866680394,"4676":1611.6611611145,"4677":1590.1697069944,"4678":1568.3095838647,"4679":1545.4500305616,"4680":1522.2415631462,"4681":1498.1041268734,"4682":1473.6389083901,"4683":1448.3188485814,"4684":1422.6934320705,"4685":1396.2906754341,"4686":1369.6061927075,"4687":1342.2249388617,"4688":1314.5867013817,"4689":1286.3350116261,"4690":1257.8520948893,"4691":1228.8414657365,"4692":1199.6262788026,"4693":1169.971201952,"4694":1140.1390438168,"4695":1109.9565543087,"4696":1079.6251588713,"4697":1049.0343732027,"4698":1018.3234446238,"4699":987.4450906501,"4700":956.4758309343,"4701":925.4317714118,"4702":894.3264020786,"4703":863.2391537274,"4704":832.120433459,"4705":801.1126834461,"4706":770.1034236145,"4707":739.2975453629,"4708":708.52012535,"4709":678.0376955874,"4710":647.613579809,"4711":617.5748987596,"4712":587.6241573013,"4713":558.1477739157,"4714":528.7886086709,"4715":499.9908527679,"4716":471.3391309488,"4717":443.3336541146,"4718":415.5024509775,"4719":388.3997780346,"4720":361.4989306234,"4721":335.4060234399,"4722":309.5416971096,"4723":284.5615324694,"4724":259.8358018997,"4725":236.0669651003,"4726":212.5774114536,"4727":190.1137072349,"4728":167.9530330481,"4729":146.883115388,"4730":126.1387787178,"4731":106.5458009554,"4732":87.2996702215,"4733":69.2609568888,"4734":51.5889877766,"4735":35.1757294339,"4736":19.1476651318,"4737":4.4246374115,"4738":-9.8962666332,"4739":-22.8709586671,"4740":-35.4281843887,"4741":-46.6033355544,"4742":-57.3473253199,"4743":-66.678832401,"4744":-75.5671845912,"4745":-83.0182203926,"4746":-90.0158567421,"4747":-95.5570154295,"4748":-100.6363194645,"4749":-104.245732616,"4750":-107.3866586441,"4751":-109.0500815551,"4752":-110.2402337761,"4753":-109.9511016762,"4754":-109.1857831031,"4755":-106.9452370647,"4756":-104.2274680602,"4757":-100.0443504948,"4758":-95.3848568516,"4759":-89.2756766132,"4760":-82.692847224,"4761":-74.681714456,"4762":-66.201528741,"4763":-56.3200597244,"4764":-45.9759851023,"4765":-34.263177481,"4766":-22.0960372886,"4767":-8.5981161632,"4768":5.3440714558,"4769":20.5738359572,"4770":36.2360475578,"4771":53.1375505127,"4772":70.4579745011,"4773":88.9645133987,"4774":107.8747939744,"4775":127.9133319606,"4776":148.3388388855,"4777":169.8302930056,"4778":191.6904161353,"4779":214.5499694384,"4780":237.7584368538,"4781":261.8958731266,"4782":286.3610916099,"4783":311.6811514186,"4784":337.3065679295,"4785":363.7093245659,"4786":390.3938072925,"4787":417.7750611383,"4788":445.4132986183,"4789":473.6649883739,"4790":502.1479051107,"4791":531.1585342635,"4792":560.3737211974,"4793":590.028798048,"4794":619.8609561832,"4795":650.0434456913,"4796":680.3748411287,"4797":710.9656267973,"4798":741.6765553762,"4799":772.5549093499,"4800":803.5241690657,"4801":834.5682285882,"4802":865.6735979214,"4803":896.7608462726,"4804":927.879566541,"4805":958.8873165539,"4806":989.8965763855,"4807":1020.7024546371,"4808":1051.47987465,"4809":1081.9623044126,"4810":1112.386420191,"4811":1142.4251012404,"4812":1172.3758426987,"4813":1201.8522260843,"4814":1231.2113913291,"4815":1260.0091472321,"4816":1288.6608690512,"4817":1316.6663458854,"4818":1344.4975490225,"4819":1371.6002219654,"4820":1398.5010693766,"4821":1424.5939765601,"4822":1450.4583028904,"4823":1475.4384675306,"4824":1500.1641981003,"4825":1523.9330348997,"4826":1547.4225885464,"4827":1569.8862927651,"4828":1592.0469669519,"4829":1613.116884612,"4830":1633.8612212822,"4831":1653.4541990446,"4832":1672.7003297785,"4833":1690.7390431112,"4834":1708.4110122234,"4835":1724.8242705661,"4836":1740.8523348682,"4837":1755.5753625885,"4838":1769.8962666332,"4839":1782.8709586671,"4840":1795.4281843887,"4841":1806.6033355544,"4842":1817.3473253199,"4843":1826.678832401,"4844":1835.5671845912,"4845":1843.0182203926,"4846":1850.0158567421,"4847":1855.5570154295,"4848":1860.6363194645,"4849":1864.245732616,"4850":1867.3866586441,"4851":1869.0500815551,"4852":1870.2402337761,"4853":1869.9511016762,"4854":1869.1857831031,"4855":1866.9452370647,"4856":1864.2274680602,"4857":1860.0443504948,"4858":1855.3848568516,"4859":1849.2756766132,"4860":1842.692847224,"4861":1834.681714456,"4862":1826.201528741,"4863":1816.3200597244,"4864":1805.9759851023,"4865":1794.263177481,"4866":1782.0960372886,"4867":1768.5981161632,"4868":1754.6559285442,"4869":1739.4261640428,"4870":1723.7639524422,"4871":1706.8624494873,"4872":1689.5420254989,"4873":1671.0354866013,"4874":1652.1252060256,"4875":1632.0866680394,"4876":1611.6611611145,"4877":1590.1697069944,"4878":1568.3095838647,"4879":1545.4500305616,"4880":1522.2415631462,"4881":1498.1041268734,"4882":1473.6389083901,"4883":1448.3188485814,"4884":1422.6934320705,"4885":1396.2906754341,"4886":1369.6061927075,"4887":1342.2249388617,"4888":1314.5867013817,"4889":1286.3350116261,"4890":1257.8520948893,"4891":1228.8414657365,"4892":1199.6262788026,"4893":1169.971201952,"4894":1140.1390438168,"4895":1109.9565543087,"4896":1079.6251588713,"4897":1049.0343732027,"4898":1018.3234446238,"4899":987.4450906501,"4900":956.4758309343,"4901":925.4317714118,"4902":894.3264020786,"4903":863.2391537274,"4904":832.120433459,"4905":801.1126834461,"4906":770.1034236145,"4907":739.2975453629,"4908":708.52012535,"4909":678.0376955874,"4910":647.613579809,"4911":617.5748987596,"4912":587.6241573013,"4913":558.1477739157,"4914":528.7886086709,"4915":499.9908527679,"4916":471.3391309488,"4917":443.3336541146,"4918":415.5024509775,"4919":388.3997780346,"4920":361.4989306234,"4921":335.4060234399,"4922":309.5416971096,"4923":284.5615324694,"4924":259.8358018997,"4925":236.0669651003,"4926":212.5774114536,"4927":190.1137072349,"4928":167.9530330481,"4929":146.883115388,"4930":126.1387787178,"4931":106.5458009554,"4932":87.2996702215,"4933":69.2609568888,"4934":51.5889877766,"4935":35.1757294339,"4936":19.1476651318,"4937":4.4246374115,"4938":-9.8962666332,"4939":-22.8709586671,"4940":-35.4281843887,"4941":-46.6033355544,"4942":-57.3473253199,"4943":-66.678832401,"4944":-75.5671845912,"4945":-83.0182203926,"4946":-90.0158567421,"4947":-95.5570154295,"4948":-100.6363194645,"4949":-104.245732616,"4950":-107.3866586441,"4951":-109.0500815551,"4952":-110.2402337761,"4953":-109.9511016762,"4954":-109.1857831031,"4955":-106.9452370647,"4956":-104.2274680602,"4957":-100.0443504948,"4958":-95.3848568516,"4959":-89.2756766132,"4960":-82.692847224,"4961":-74.681714456,"4962":-66.201528741,"4963":-56.3200597244,"4964":-45.9759851023,"4965":-34.263177481,"4966":-22.0960372886,"4967":-8.5981161632,"4968":5.3440714558,"4969":20.5738359572,"4970":36.2360475578,"4971":53.1375505127,"4972":70.4579745011,"4973":88.9645133987,"4974":107.8747939744,"4975":127.9133319606,"4976":148.3388388855,"4977":169.8302930056,"4978":191.6904161353,"4979":214.5499694384,"4980":237.7584368538,"4981":261.8958731266,"4982":286.3610916099,"4983":311.6811514186,"4984":337.3065679295,"4985":363.7093245659,"4986":390.3938072925,"4987":417.7750611383,"4988":445.4132986183,"4989":473.6649883739,"4990":502.1479051107,"4991":531.1585342635,"4992":560.3737211974,"4993":590.028798048,"4994":619.8609561832,"4995":650.0434456913,"4996":680.3748411287,"4997":710.9656267973,"4998":741.6765553762,"4999":772.5549093499,"5000":803.5241690657,"5001":834.5682285882,"5002":865.6735979214,"5003":896.7608462726,"5004":927.879566541,"5005":958.8873165539,"5006":989.8965763855,"5007":1020.7024546371,"5008":1051.47987465,"5009":1081.9623044126,"5010":1112.386420191,"5011":1142.4251012404,"5012":1172.3758426987,"5013":1201.8522260843,"5014":1231.2113913291,"5015":1260.0091472321,"5016":1288.6608690512,"5017":1316.6663458854,"5018":1344.4975490225,"5019":1371.6002219654,"5020":1398.5010693766,"5021":1424.5939765601,"5022":1450.4583028904,"5023":1475.4384675306,"5024":1500.1641981003,"5025":1523.9330348997,"5026":1547.4225885464,"5027":1569.8862927651,"5028":1592.0469669519,"5029":1613.116884612,"5030":1633.8612212822,"5031":1653.4541990446,"5032":1672.7003297785,"5033":1690.7390431112,"5034":1708.4110122234,"5035":1724.8242705661,"5036":1740.8523348682,"5037":1755.5753625885,"5038":1769.8962666332,"5039":1782.8709586671,"5040":1795.4281843887,"5041":1806.6033355544,"5042":1817.3473253199,"5043":1826.678832401,"5044":1835.5671845912,"5045":1843.0182203926,"5046":1850.0158567421,"5047":1855.5570154295,"5048":1860.6363194645,"5049":1864.245732616,"5050":1867.3866586441,"5051":1869.0500815551,"5052":1870.2402337761,"5053":1869.9511016762,"5054":1869.1857831031,"5055":1866.9452370647,"5056":1864.2274680602,"5057":1860.0443504948,"5058":1855.3848568516,"5059":1849.2756766132,"5060":1842.692847224,"5061":1834.681714456,"5062":1826.201528741,"5063":1816.3200597244,"5064":1805.9759851023,"5065":1794.263177481,"5066":1782.0960372886,"5067":1768.5981161632,"5068":1754.6559285442,"5069":1739.4261640428,"5070":1723.7639524422,"5071":1706.8624494873,"5072":1689.5420254989,"5073":1671.0354866013,"5074":1652.1252060256,"5075":1632.0866680394,"5076":1611.6611611145,"5077":1590.1697069944,"5078":1568.3095838647,"5079":1545.4500305616,"5080":1522.2415631462,"5081":1498.1041268734,"5082":1473.6389083901,"5083":1448.3188485814,"5084":1422.6934320705,"5085":1396.2906754341,"5086":1369.6061927075,"5087":1342.2249388617,"5088":1314.5867013817,"5089":1286.3350116261,"5090":1257.8520948893,"5091":1228.8414657365,"5092":1199.6262788026,"5093":1169.971201952,"5094":1140.1390438168,"5095":1109.9565543087,"5096":1079.6251588713,"5097":1049.0343732027,"5098":1018.3234446238,"5099":987.4450906501,"5100":956.4758309343,"5101":925.4317714118,"5102":894.3264020786,"5103":863.2391537274,"5104":832.120433459,"5105":801.1126834461,"5106":770.1034236145,"5107":739.2975453629,"5108":708.52012535,"5109":678.0376955874,"5110":647.613579809,"5111":617.5748987596,"5112":587.6241573013,"5113":558.1477739157,"5114":528.7886086709,"5115":499.9908527679,"5116":471.3391309488,"5117":443.3336541146,"5118":415.5024509775,"5119":388.3997780346,"5120":361.4989306234,"5121":335.4060234399,"5122":309.5416971096,"5123":284.5615324694,"5124":259.8358018997,"5125":236.0669651003,"5126":212.5774114536,"5127":190.1137072349,"5128":167.9530330481,"5129":146.883115388,"5130":126.1387787178,"5131":106.5458009554,"5132":87.2996702215,"5133":69.2609568888,"5134":51.5889877766,"5135":35.1757294339,"5136":19.1476651318,"5137":4.4246374115,"5138":-9.8962666332,"5139":-22.8709586671,"5140":-35.4281843887,"5141":-46.6033355544,"5142":-57.3473253199,"5143":-66.678832401,"5144":-75.5671845912,"5145":-83.0182203926,"5146":-90.0158567421,"5147":-95.5570154295,"5148":-100.6363194645,"5149":-104.245732616,"5150":-107.3866586441,"5151":-109.0500815551,"5152":-110.2402337761,"5153":-109.9511016762,"5154":-109.1857831031,"5155":-106.9452370647,"5156":-104.2274680602,"5157":-100.0443504948,"5158":-95.3848568516,"5159":-89.2756766132,"5160":-82.692847224,"5161":-74.681714456,"5162":-66.201528741,"5163":-56.3200597244,"5164":-45.9759851023,"5165":-34.263177481,"5166":-22.0960372886,"5167":-8.5981161632,"5168":5.3440714558,"5169":20.5738359572,"5170":36.2360475578,"5171":53.1375505127,"5172":70.4579745011,"5173":88.9645133987,"5174":107.8747939744,"5175":127.9133319606,"5176":148.3388388855,"5177":169.8302930056,"5178":191.6904161353,"5179":214.5499694384,"5180":237.7584368538,"5181":261.8958731266,"5182":286.3610916099,"5183":311.6811514186,"5184":337.3065679295,"5185":363.7093245659,"5186":390.3938072925,"5187":417.7750611383,"5188":445.4132986183,"5189":473.6649883739,"5190":502.1479051107,"5191":531.1585342635,"5192":560.3737211974,"5193":590.028798048,"5194":619.8609561832,"5195":650.0434456913,"5196":680.3748411287,"5197":710.9656267973,"5198":741.6765553762,"5199":772.5549093499,"5200":803.5241690657,"5201":834.5682285882,"5202":865.6735979214,"5203":896.7608462726,"5204":927.879566541,"5205":958.8873165539,"5206":989.8965763855,"5207":1020.7024546371,"5208":1051.47987465,"5209":1081.9623044126,"5210":1112.386420191,"5211":1142.4251012404,"5212":1172.3758426987,"5213":1201.8522260843,"5214":1231.2113913291,"5215":1260.0091472321,"5216":1288.6608690512,"5217":1316.6663458854,"5218":1344.4975490225,"5219":1371.6002219654,"5220":1398.5010693766,"5221":1424.5939765601,"5222":1450.4583028904,"5223":1475.4384675306,"5224":1500.1641981003,"5225":1523.9330348997,"5226":1547.4225885464,"5227":1569.8862927651,"5228":1592.0469669519,"5229":1613.116884612,"5230":1633.8612212822,"5231":1653.4541990446,"5232":1672.7003297785,"5233":1690.7390431112,"5234":1708.4110122234,"5235":1724.8242705661,"5236":1740.8523348682,"5237":1755.5753625885,"5238":1769.8962666332,"5239":1782.8709586671,"5240":1795.4281843887,"5241":1806.6033355544,"5242":1817.3473253199,"5243":1826.678832401,"5244":1835.5671845912,"5245":1843.0182203926,"5246":1850.0158567421,"5247":1855.5570154295,"5248":1860.6363194645,"5249":1864.245732616,"5250":1867.3866586441,"5251":1869.0500815551,"5252":1870.2402337761,"5253":1869.9511016762,"5254":1869.1857831031,"5255":1866.9452370647,"5256":1864.2274680602,"5257":1860.0443504948,"5258":1855.3848568516,"5259":1849.2756766132,"5260":1842.692847224,"5261":1834.681714456,"5262":1826.201528741,"5263":1816.3200597244,"5264":1805.9759851023,"5265":1794.263177481,"5266":1782.0960372886,"5267":1768.5981161632,"5268":1754.6559285442,"5269":1739.4261640428,"5270":1723.7639524422,"5271":1706.8624494873,"5272":1689.5420254989,"5273":1671.0354866013,"5274":1652.1252060256,"5275":1632.0866680394,"5276":1611.6611611145,"5277":1590.1697069944,"5278":1568.3095838647,"5279":1545.4500305616,"5280":1522.2415631462,"5281":1498.1041268734,"5282":1473.6389083901,"5283":1448.3188485814,"5284":1422.6934320705,"5285":1396.2906754341,"5286":1369.6061927075,"5287":1342.2249388617,"5288":1314.5867013817,"5289":1286.3350116261,"5290":1257.8520948893,"5291":1228.8414657365,"5292":1199.6262788026,"5293":1169.971201952,"5294":1140.1390438168,"5295":1109.9565543087,"5296":1079.6251588713,"5297":1049.0343732027,"5298":1018.3234446238,"5299":987.4450906501,"5300":956.4758309343,"5301":925.4317714118,"5302":894.3264020786,"5303":863.2391537274,"5304":832.120433459,"5305":801.1126834461,"5306":770.1034236145,"5307":739.2975453629,"5308":708.52012535,"5309":678.0376955874,"5310":647.613579809,"5311":617.5748987596,"5312":587.6241573013,"5313":558.1477739157,"5314":528.7886086709,"5315":499.9908527679,"5316":471.3391309488,"5317":443.3336541146,"5318":415.5024509775,"5319":388.3997780346,"5320":361.4989306234,"5321":335.4060234399,"5322":309.5416971096,"5323":284.5615324694,"5324":259.8358018997,"5325":236.0669651003,"5326":212.5774114536,"5327":190.1137072349,"5328":167.9530330481,"5329":146.883115388,"5330":126.1387787178,"5331":106.5458009554,"5332":87.2996702215,"5333":69.2609568888,"5334":51.5889877766,"5335":35.1757294339,"5336":19.1476651318,"5337":4.4246374115,"5338":-9.8962666332,"5339":-22.8709586671,"5340":-35.4281843887,"5341":-46.6033355544,"5342":-57.3473253199,"5343":-66.678832401,"5344":-75.5671845912,"5345":-83.0182203926,"5346":-90.0158567421,"5347":-95.5570154295,"5348":-100.6363194645,"5349":-104.245732616,"5350":-107.3866586441,"5351":-109.0500815551,"5352":-110.2402337761,"5353":-109.9511016762,"5354":-109.1857831031,"5355":-106.9452370647,"5356":-104.2274680602,"5357":-100.0443504948,"5358":-95.3848568516,"5359":-89.2756766132,"5360":-82.692847224,"5361":-74.681714456,"5362":-66.201528741,"5363":-56.3200597244,"5364":-45.9759851023,"5365":-34.263177481,"5366":-22.0960372886,"5367":-8.5981161632,"5368":5.3440714558,"5369":20.5738359572,"5370":36.2360475578,"5371":53.1375505127,"5372":70.4579745011,"5373":88.9645133987,"5374":107.8747939744,"5375":127.9133319606,"5376":148.3388388855,"5377":169.8302930056,"5378":191.6904161353,"5379":214.5499694384,"5380":237.7584368538,"5381":261.8958731266,"5382":286.3610916099,"5383":311.6811514186,"5384":337.3065679295,"5385":363.7093245659,"5386":390.3938072925,"5387":417.7750611383,"5388":445.4132986183,"5389":473.6649883739,"5390":502.1479051107,"5391":531.1585342635,"5392":560.3737211974,"5393":590.028798048,"5394":619.8609561832,"5395":650.0434456913,"5396":680.3748411287,"5397":710.9656267973,"5398":741.6765553762,"5399":772.5549093499,"5400":803.5241690657,"5401":834.5682285882,"5402":865.6735979214,"5403":896.7608462726,"5404":927.879566541,"5405":958.8873165539,"5406":989.8965763855,"5407":1020.7024546371,"5408":1051.47987465,"5409":1081.9623044126,"5410":1112.386420191,"5411":1142.4251012404,"5412":1172.3758426987,"5413":1201.8522260843,"5414":1231.2113913291,"5415":1260.0091472321,"5416":1288.6608690512,"5417":1316.6663458854,"5418":1344.4975490225,"5419":1371.6002219654,"5420":1398.5010693766,"5421":1424.5939765601,"5422":1450.4583028904,"5423":1475.4384675306,"5424":1500.1641981003,"5425":1523.9330348997,"5426":1547.4225885464,"5427":1569.8862927651,"5428":1592.0469669519,"5429":1613.116884612,"5430":1633.8612212822,"5431":1653.4541990446,"5432":1672.7003297785,"5433":1690.7390431112,"5434":1708.4110122234,"5435":1724.8242705661,"5436":1740.8523348682,"5437":1755.5753625885,"5438":1769.8962666332,"5439":1782.8709586671,"5440":1795.4281843887,"5441":1806.6033355544,"5442":1817.3473253199,"5443":1826.678832401,"5444":1835.5671845912,"5445":1843.0182203926,"5446":1850.0158567421,"5447":1855.5570154295,"5448":1860.6363194645,"5449":1864.245732616,"5450":1867.3866586441,"5451":1869.0500815551,"5452":1870.2402337761,"5453":1869.9511016762,"5454":1869.1857831031,"5455":1866.9452370647,"5456":1864.2274680602,"5457":1860.0443504948,"5458":1855.3848568516,"5459":1849.2756766132,"5460":1842.692847224,"5461":1834.681714456,"5462":1826.201528741,"5463":1816.3200597244,"5464":1805.9759851023,"5465":1794.263177481,"5466":1782.0960372886,"5467":1768.5981161632,"5468":1754.6559285442,"5469":1739.4261640428,"5470":1723.7639524422,"5471":1706.8624494873,"5472":1689.5420254989,"5473":1671.0354866013,"5474":1652.1252060256,"5475":1632.0866680394,"5476":1611.6611611145,"5477":1590.1697069944,"5478":1568.3095838647,"5479":1545.4500305616,"5480":1522.2415631462,"5481":1498.1041268734,"5482":1473.6389083901,"5483":1448.3188485814,"5484":1422.6934320705,"5485":1396.2906754341,"5486":1369.6061927075,"5487":1342.2249388617,"5488":1314.5867013817,"5489":1286.3350116261,"5490":1257.8520948893,"5491":1228.8414657365,"5492":1199.6262788026,"5493":1169.971201952,"5494":1140.1390438168,"5495":1109.9565543087,"5496":1079.6251588713,"5497":1049.0343732027,"5498":1018.3234446238,"5499":987.4450906501,"5500":956.4758309343,"5501":925.4317714118,"5502":894.3264020786,"5503":863.2391537274,"5504":832.120433459,"5505":801.1126834461,"5506":770.1034236145,"5507":739.2975453629,"5508":708.52012535,"5509":678.0376955874,"5510":647.613579809,"5511":617.5748987596,"5512":587.6241573013,"5513":558.1477739157,"5514":528.7886086709,"5515":499.9908527679,"5516":471.3391309488,"5517":443.3336541146,"5518":415.5024509775,"5519":388.3997780346,"5520":361.4989306234,"5521":335.4060234399,"5522":309.5416971096,"5523":284.5615324694,"5524":259.8358018997,"5525":236.0669651003,"5526":212.5774114536,"5527":190.1137072349,"5528":167.9530330481,"5529":146.883115388,"5530":126.1387787178,"5531":106.5458009554,"5532":87.2996702215,"5533":69.2609568888,"5534":51.5889877766,"5535":35.1757294339,"5536":19.1476651318,"5537":4.4246374115,"5538":-9.8962666332,"5539":-22.8709586671,"5540":-35.4281843887,"5541":-46.6033355544,"5542":-57.3473253199,"5543":-66.678832401,"5544":-75.5671845912,"5545":-83.0182203926,"5546":-90.0158567421,"5547":-95.5570154295,"5548":-100.6363194645,"5549":-104.245732616,"5550":-107.3866586441,"5551":-109.0500815551,"5552":-110.2402337761,"5553":-109.9511016762,"5554":-109.1857831031,"5555":-106.9452370647,"5556":-104.2274680602,"5557":-100.0443504948,"5558":-95.3848568516,"5559":-89.2756766132,"5560":-82.692847224,"5561":-74.681714456,"5562":-66.201528741,"5563":-56.3200597244,"5564":-45.9759851023,"5565":-34.263177481,"5566":-22.0960372886,"5567":-8.5981161632,"5568":5.3440714558,"5569":20.5738359572,"5570":36.2360475578,"5571":53.1375505127,"5572":70.4579745011,"5573":88.9645133987,"5574":107.8747939744,"5575":127.9133319606,"5576":148.3388388855,"5577":169.8302930056,"5578":191.6904161353,"5579":214.5499694384,"5580":237.7584368538,"5581":261.8958731266,"5582":286.3610916099,"5583":311.6811514186,"5584":337.3065679295,"5585":363.7093245659,"5586":390.3938072925,"5587":417.7750611383,"5588":445.4132986183,"5589":473.6649883739,"5590":502.1479051107,"5591":531.1585342635,"5592":560.3737211974,"5593":590.028798048,"5594":619.8609561832,"5595":650.0434456913,"5596":680.3748411287,"5597":710.9656267973,"5598":741.6765553762,"5599":772.5549093499,"5600":803.5241690657,"5601":834.5682285882,"5602":865.6735979214,"5603":896.7608462726,"5604":927.879566541,"5605":958.8873165539,"5606":989.8965763855,"5607":1020.7024546371,"5608":1051.47987465,"5609":1081.9623044126,"5610":1112.386420191,"5611":1142.4251012404,"5612":1172.3758426987,"5613":1201.8522260843,"5614":1231.2113913291,"5615":1260.0091472321,"5616":1288.6608690512,"5617":1316.6663458854,"5618":1344.4975490225,"5619":1371.6002219654,"5620":1398.5010693766,"5621":1424.5939765601,"5622":1450.4583028904,"5623":1475.4384675306,"5624":1500.1641981003,"5625":1523.9330348997,"5626":1547.4225885464,"5627":1569.8862927651,"5628":1592.0469669519,"5629":1613.116884612,"5630":1633.8612212822,"5631":1653.4541990446,"5632":1672.7003297785,"5633":1690.7390431112,"5634":1708.4110122234,"5635":1724.8242705661,"5636":1740.8523348682,"5637":1755.5753625885,"5638":1769.8962666332,"5639":1782.8709586671,"5640":1795.4281843887,"5641":1806.6033355544,"5642":1817.3473253199,"5643":1826.678832401,"5644":1835.5671845912,"5645":1843.0182203926,"5646":1850.0158567421,"5647":1855.5570154295,"5648":1860.6363194645,"5649":1864.245732616,"5650":1867.3866586441,"5651":1869.0500815551,"5652":1870.2402337761,"5653":1869.9511016762,"5654":1869.1857831031,"5655":1866.9452370647,"5656":1864.2274680602,"5657":1860.0443504948,"5658":1855.3848568516,"5659":1849.2756766132,"5660":1842.692847224,"5661":1834.681714456,"5662":1826.201528741,"5663":1816.3200597244,"5664":1805.9759851023,"5665":1794.263177481,"5666":1782.0960372886,"5667":1768.5981161632,"5668":1754.6559285442,"5669":1739.4261640428,"5670":1723.7639524422,"5671":1706.8624494873,"5672":1689.5420254989,"5673":1671.0354866013,"5674":1652.1252060256,"5675":1632.0866680394,"5676":1611.6611611145,"5677":1590.1697069944,"5678":1568.3095838647,"5679":1545.4500305616,"5680":1522.2415631462,"5681":1498.1041268734,"5682":1473.6389083901,"5683":1448.3188485814,"5684":1422.6934320705,"5685":1396.2906754341,"5686":1369.6061927075,"5687":1342.2249388617,"5688":1314.5867013817,"5689":1286.3350116261,"5690":1257.8520948893,"5691":1228.8414657365,"5692":1199.6262788026,"5693":1169.971201952,"5694":1140.1390438168,"5695":1109.9565543087,"5696":1079.6251588713,"5697":1049.0343732027,"5698":1018.3234446238,"5699":987.4450906501,"5700":956.4758309343,"5701":925.4317714118,"5702":894.3264020786,"5703":863.2391537274,"5704":832.120433459,"5705":801.1126834461,"5706":770.1034236145,"5707":739.2975453629,"5708":708.52012535,"5709":678.0376955874,"5710":647.613579809,"5711":617.5748987596,"5712":587.6241573013,"5713":558.1477739157,"5714":528.7886086709,"5715":499.9908527679,"5716":471.3391309488,"5717":443.3336541146,"5718":415.5024509775,"5719":388.3997780346,"5720":361.4989306234,"5721":335.4060234399,"5722":309.5416971096,"5723":284.5615324694,"5724":259.8358018997,"5725":236.0669651003,"5726":212.5774114536,"5727":190.1137072349,"5728":167.9530330481,"5729":146.883115388,"5730":126.1387787178,"5731":106.5458009554,"5732":87.2996702215,"5733":69.2609568888,"5734":51.5889877766,"5735":35.1757294339,"5736":19.1476651318,"5737":4.4246374115,"5738":-9.8962666332,"5739":-22.8709586671,"5740":-35.4281843887,"5741":-46.6033355544,"5742":-57.3473253199,"5743":-66.678832401,"5744":-75.5671845912,"5745":-83.0182203926,"5746":-90.0158567421,"5747":-95.5570154295,"5748":-100.6363194645,"5749":-104.245732616,"5750":-107.3866586441,"5751":-109.0500815551,"5752":-110.2402337761,"5753":-109.9511016762,"5754":-109.1857831031,"5755":-106.9452370647,"5756":-104.2274680602,"5757":-100.0443504948,"5758":-95.3848568516,"5759":-89.2756766132,"5760":-82.692847224,"5761":-74.681714456,"5762":-66.201528741,"5763":-56.3200597244,"5764":-45.9759851023,"5765":-34.263177481,"5766":-22.0960372886,"5767":-8.5981161632,"5768":5.3440714558,"5769":20.5738359572,"5770":36.2360475578,"5771":53.1375505127,"5772":70.4579745011,"5773":88.9645133987,"5774":107.8747939744,"5775":127.9133319606,"5776":148.3388388855,"5777":169.8302930056,"5778":191.6904161353,"5779":214.5499694384,"5780":237.7584368538,"5781":261.8958731266,"5782":286.3610916099,"5783":311.6811514186,"5784":337.3065679295,"5785":363.7093245659,"5786":390.3938072925,"5787":417.7750611383,"5788":445.4132986183,"5789":473.6649883739,"5790":502.1479051107,"5791":531.1585342635,"5792":560.3737211974,"5793":590.028798048,"5794":619.8609561832,"5795":650.0434456913,"5796":680.3748411287,"5797":710.9656267973,"5798":741.6765553762,"5799":772.5549093499,"5800":803.5241690657,"5801":834.5682285882,"5802":865.6735979214,"5803":896.7608462726,"5804":927.879566541,"5805":958.8873165539,"5806":989.8965763855,"5807":1020.7024546371,"5808":1051.47987465,"5809":1081.9623044126,"5810":1112.386420191,"5811":1142.4251012404,"5812":1172.3758426987,"5813":1201.8522260843,"5814":1231.2113913291,"5815":1260.0091472321,"5816":1288.6608690512,"5817":1316.6663458854,"5818":1344.4975490225,"5819":1371.6002219654,"5820":1398.5010693766,"5821":1424.5939765601,"5822":1450.4583028904,"5823":1475.4384675306,"5824":1500.1641981003,"5825":1523.9330348997,"5826":1547.4225885464,"5827":1569.8862927651,"5828":1592.0469669519,"5829":1613.116884612,"5830":1633.8612212822,"5831":1653.4541990446,"5832":1672.7003297785,"5833":1690.7390431112,"5834":1708.4110122234,"5835":1724.8242705661,"5836":1740.8523348682,"5837":1755.5753625885,"5838":1769.8962666332,"5839":1782.8709586671,"5840":1795.4281843887,"5841":1806.6033355544,"5842":1817.3473253199,"5843":1826.678832401,"5844":1835.5671845912,"5845":1843.0182203926,"5846":1850.0158567421,"5847":1855.5570154295,"5848":1860.6363194645,"5849":1864.245732616,"5850":1867.3866586441,"5851":1869.0500815551,"5852":1870.2402337761,"5853":1869.9511016762,"5854":1869.1857831031,"5855":1866.9452370647,"5856":1864.2274680602,"5857":1860.0443504948,"5858":1855.3848568516,"5859":1849.2756766132,"5860":1842.692847224,"5861":1834.681714456,"5862":1826.201528741,"5863":1816.3200597244,"5864":1805.9759851023,"5865":1794.263177481,"5866":1782.0960372886,"5867":1768.5981161632,"5868":1754.6559285442,"5869":1739.4261640428,"5870":1723.7639524422,"5871":1706.8624494873,"5872":1689.5420254989,"5873":1671.0354866013,"5874":1652.1252060256,"5875":1632.0866680394,"5876":1611.6611611145,"5877":1590.1697069944,"5878":1568.3095838647,"5879":1545.4500305616,"5880":1522.2415631462,"5881":1498.1041268734,"5882":1473.6389083901,"5883":1448.3188485814,"5884":1422.6934320705,"5885":1396.2906754341,"5886":1369.6061927075,"5887":1342.2249388617,"5888":1314.5867013817,"5889":1286.3350116261,"5890":1257.8520948893,"5891":1228.8414657365,"5892":1199.6262788026,"5893":1169.971201952,"5894":1140.1390438168,"5895":1109.9565543087,"5896":1079.6251588713,"5897":1049.0343732027,"5898":1018.3234446238,"5899":987.4450906501,"5900":956.4758309343,"5901":925.4317714118,"5902":894.3264020786,"5903":863.2391537274,"5904":832.120433459,"5905":801.1126834461,"5906":770.1034236145,"5907":739.2975453629,"5908":708.52012535,"5909":678.0376955874,"5910":647.613579809,"5911":617.5748987596,"5912":587.6241573013,"5913":558.1477739157,"5914":528.7886086709,"5915":499.9908527679,"5916":471.3391309488,"5917":443.3336541146,"5918":415.5024509775,"5919":388.3997780346,"5920":361.4989306234,"5921":335.4060234399,"5922":309.5416971096,"5923":284.5615324694,"5924":259.8358018997,"5925":236.0669651003,"5926":212.5774114536,"5927":190.1137072349,"5928":167.9530330481,"5929":146.883115388,"5930":126.1387787178,"5931":106.5458009554,"5932":87.2996702215,"5933":69.2609568888,"5934":51.5889877766,"5935":35.1757294339,"5936":19.1476651318,"5937":4.4246374115,"5938":-9.8962666332,"5939":-22.8709586671,"5940":-35.4281843887,"5941":-46.6033355544,"5942":-57.3473253199,"5943":-66.678832401,"5944":-75.5671845912,"5945":-83.0182203926,"5946":-90.0158567421,"5947":-95.5570154295,"5948":-100.6363194645,"5949":-104.245732616,"5950":-107.3866586441,"5951":-109.0500815551,"5952":-110.2402337761,"5953":-109.9511016762,"5954":-109.1857831031,"5955":-106.9452370647,"5956":-104.2274680602,"5957":-100.0443504948,"5958":-95.3848568516,"5959":-89.2756766132,"5960":-82.692847224,"5961":-74.681714456,"5962":-66.201528741,"5963":-56.3200597244,"5964":-45.9759851023,"5965":-34.263177481,"5966":-22.0960372886,"5967":-8.5981161632,"5968":5.3440714558,"5969":20.5738359572,"5970":36.2360475578,"5971":53.1375505127,"5972":70.4579745011,"5973":88.9645133987,"5974":107.8747939744,"5975":127.9133319606,"5976":148.3388388855,"5977":169.8302930056,"5978":191.6904161353,"5979":214.5499694384,"5980":237.7584368538,"5981":261.8958731266,"5982":286.3610916099,"5983":311.6811514186,"5984":337.3065679295,"5985":363.7093245659,"5986":390.3938072925,"5987":417.7750611383,"5988":445.4132986183,"5989":473.6649883739,"5990":502.1479051107,"5991":531.1585342635,"5992":560.3737211974,"5993":590.028798048,"5994":619.8609561832,"5995":650.0434456913,"5996":680.3748411287,"5997":710.9656267973,"5998":741.6765553762,"5999":772.5549093499,"6000":803.5241690657},"pressure_out":{"0":660.0000003073,"1":669.5639963687,"2":681.7345065044,"3":695.9632667633,"4":711.8066571413,"5":728.9049892976,"6":747.078759703,"7":766.0280696517,"8":785.6806339783,"9":805.7649151657,"10":826.2894971463,"11":846.9926906133,"12":867.9477190696,"13":888.8904730779,"14":909.9475439214,"15":930.8443802316,"16":951.7529589593,"17":972.3831936459,"18":992.9466693825,"19":1013.1347004316,"20":1033.1941704767,"21":1052.796144556,"22":1072.2194629428,"23":1091.1142851184,"24":1109.7886940756,"25":1127.8719925388,"26":1145.699190917,"27":1162.8792905707,"28":1179.7721579929,"29":1195.9674178151,"30":1211.8478618531,"31":1226.9849361334,"32":1241.7824991947,"33":1255.7952225799,"34":1269.4462006369,"35":1282.2748922345,"36":1294.7217962217,"37":1306.3128429829,"38":1317.504087336,"39":1327.8097112429,"40":1337.6994506352,"41":1346.6775944294,"42":1355.2256547188,"43":1362.8399415222,"44":1370.0118079524,"45":1376.2315442092,"46":1381.9983815417,"47":1386.7985823276,"48":1391.1372695393,"49":1394.4986918674,"50":1397.3918594953,"51":1399.3010337625,"52":1400.7370957215,"53":1401.1863485452,"54":1401.159522823,"55":1400.1469866624,"56":1398.6573010815,"57":1396.1869075276,"58":1393.2401880127,"59":1389.3216426776,"60":1384.9294823432,"61":1379.5782200182,"62":1373.7579280182,"63":1366.9950473045,"64":1359.7695768437,"65":1351.6217538496,"66":1343.0196090909,"67":1333.5189900849,"68":1323.5741119493,"69":1312.7581850832,"70":1301.509816136,"71":1289.421262536,"72":1276.9137913219,"73":1263.6003159907,"74":1249.8831013117,"75":1235.397244413,"76":1220.5244201635,"77":1204.9233493654,"78":1188.9536106398,"79":1172.2988952935,"80":1155.2952665721,"81":1137.6526345844,"82":1119.6822208885,"83":1101.1212992274,"84":1082.2550212065,"85":1062.8490610503,"86":1043.161375037,"87":1022.9869626402,"88":1002.5555667682,"89":981.6923211805,"90":960.5978487199,"91":939.1281075452,"92":917.4538086634,"93":895.4623030969,"94":873.2937162961,"95":850.8672367193,"96":828.2918512473,"97":805.5189046993,"98":782.6258152642,"99":759.5962761405,"100":736.4758312905,"101":713.280586647,"102":690.0240322037,"103":666.7546230645,"104":643.4537420155,"105":620.2020021014,"106":596.9487523737,"107":573.8064456748,"108":550.692597218,"109":527.7510558433,"110":504.8678284551,"111":482.2175921852,"112":459.6552955081,"113":437.3857544764,"114":415.2334315865,"115":393.4324734964,"116":371.7775494908,"117":350.5312127634,"118":329.4591497335,"119":308.8512839529,"120":288.4452437043,"121":268.5571787015,"122":248.897694552,"123":229.8079194334,"124":210.9725783854,"125":192.756431772,"126":174.8195683113,"127":157.5489410116,"128":140.5813437437,"129":124.3243950332,"130":108.3930273127,"131":93.2139159409,"132":78.3816515978,"133":64.3402825827,"134":50.665657788,"135":37.8174459981,"136":25.3544282487,"137":13.7500797061,"138":2.5478548391,"139":-7.766833394,"140":-17.6640553148,"141":-26.6483758763,"142":-35.2015350376,"143":-42.8200309188,"144":-49.995371909,"145":-56.2179763872,"146":-61.9871814134,"147":-66.7893367116,"148":-71.1296373574,"149":-74.4923915625,"150":-77.3866586441,"151":-79.2967405015,"152":-80.733551669,"153":-81.1834229583,"154":-81.1571077745,"155":-80.1449930593,"156":-78.655655378,"157":-76.1855490126,"158":-73.2390665695,"159":-69.3207169353,"160":-64.9287181502,"161":-59.5775891831,"162":-53.7574072689,"163":-46.9946174301,"164":-39.7692219858,"165":-31.6214609173,"166":-23.0193672776,"167":-13.51879047,"168":-3.5739471687,"169":7.2419509418,"170":18.4902961516,"171":30.5788301565,"172":43.086285195,"173":56.3997471733,"174":70.1169508298,"175":84.6027986294,"176":99.4756153676,"177":115.0766799652,"178":131.0464135724,"179":147.7011246935,"180":164.704749927,"181":182.3473790355,"182":200.3177903546,"183":218.8787100537,"184":237.744986455,"185":257.1509452742,"186":276.8386301838,"187":297.0130416695,"188":317.4444367895,"189":338.3076817563,"190":359.4021537044,"191":380.871894456,"192":402.5461929886,"193":424.5376982668,"194":446.7062848296,"195":469.13276421,"196":491.7081495198,"197":514.481095934,"198":537.3741852585,"199":560.403724291,"200":583.5241690657,"201":606.719413647,"202":629.975968039,"203":653.2453771358,"204":676.5462581499,"205":699.7979980352,"206":723.0512477391,"207":746.1935544183,"208":769.3074028588,"209":792.2489442201,"210":815.1321715972,"211":837.782407858,"212":860.3447045275,"213":882.6142455531,"214":904.7665684378,"215":926.5675265237,"216":948.2224505258,"217":969.4687872503,"218":990.5408502777,"219":1011.1487160564,"220":1031.5547563034,"221":1051.4428213049,"222":1071.1023054532,"223":1090.1920805709,"224":1109.0274216182,"225":1127.2435682309,"226":1145.1804316911,"227":1162.4510589904,"228":1179.418656258,"229":1195.6756049682,"230":1211.6069726884,"231":1226.78608406,"232":1241.618348403,"233":1255.659717418,"234":1269.3343422125,"235":1282.1825540023,"236":1294.6455717517,"237":1306.2499202942,"238":1317.4521451611,"239":1327.7668333942,"240":1337.664055315,"241":1346.6483758764,"242":1355.2015350377,"243":1362.8200309189,"244":1369.995371909,"245":1376.2179763872,"246":1381.9871814135,"247":1386.7893367116,"248":1391.1296373574,"249":1394.4923915625,"250":1397.3866586441,"251":1399.2967405015,"252":1400.733551669,"253":1401.1834229584,"254":1401.1571077745,"255":1400.1449930593,"256":1398.6556553781,"257":1396.1855490126,"258":1393.2390665695,"259":1389.3207169353,"260":1384.9287181502,"261":1379.5775891831,"262":1373.7574072689,"263":1366.9946174301,"264":1359.7692219858,"265":1351.6214609173,"266":1343.0193672776,"267":1333.51879047,"268":1323.5739471687,"269":1312.7580490582,"270":1301.5097038484,"271":1289.4211698435,"272":1276.913714805,"273":1263.6002528267,"274":1249.8830491702,"275":1235.3972013706,"276":1220.5243846324,"277":1204.9233200348,"278":1188.9535864276,"279":1172.2988753065,"280":1155.295250073,"281":1137.6526209645,"282":1119.6822096454,"283":1101.1212899463,"284":1082.255013545,"285":1062.8490547258,"286":1043.1613698162,"287":1022.9869583305,"288":1002.5555632105,"289":981.6923182437,"290":960.5978462956,"291":939.128105544,"292":917.4538070114,"293":895.4623017332,"294":873.2937151704,"295":850.86723579,"296":828.2918504802,"297":805.518904066,"298":782.6258147415,"299":759.596275709,"300":736.4758309343,"301":713.280586353,"302":690.024031961,"303":666.7546228642,"304":643.4537418501,"305":620.2020019648,"306":596.9487522609,"307":573.8064455817,"308":550.6925971412,"309":527.7510557799,"310":504.8678284028,"311":482.217592142,"312":459.6552954725,"313":437.3857544469,"314":415.2334315622,"315":393.4324734763,"316":371.7775494743,"317":350.5312127497,"318":329.4591497223,"319":308.8512839436,"320":288.4452436966,"321":268.5571786951,"322":248.8976945468,"323":229.8079194291,"324":210.9725783818,"325":192.7564317691,"326":174.8195683089,"327":157.5489410096,"328":140.581343742,"329":124.3243950318,"330":108.3930273116,"331":93.21391594,"332":78.381651597,"333":64.340282582,"334":50.6656577875,"335":37.8174459977,"336":25.3544282483,"337":13.7500797058,"338":2.5478548389,"339":-7.7668333942,"340":-17.664055315,"341":-26.6483758764,"342":-35.2015350377,"343":-42.8200309189,"344":-49.995371909,"345":-56.2179763872,"346":-61.9871814135,"347":-66.7893367116,"348":-71.1296373574,"349":-74.4923915625,"350":-77.3866586441,"351":-79.2967405015,"352":-80.733551669,"353":-81.1834229584,"354":-81.1571077745,"355":-80.1449930593,"356":-78.6556553781,"357":-76.1855490126,"358":-73.2390665695,"359":-69.3207169353,"360":-64.9287181502,"361":-59.5775891831,"362":-53.7574072689,"363":-46.9946174301,"364":-39.7692219858,"365":-31.6214609173,"366":-23.0193672776,"367":-13.51879047,"368":-3.5739471687,"369":7.2419509418,"370":18.4902961516,"371":30.5788301565,"372":43.086285195,"373":56.3997471733,"374":70.1169508298,"375":84.6027986294,"376":99.4756153676,"377":115.0766799652,"378":131.0464135724,"379":147.7011246935,"380":164.704749927,"381":182.3473790355,"382":200.3177903546,"383":218.8787100537,"384":237.744986455,"385":257.1509452742,"386":276.8386301838,"387":297.0130416695,"388":317.4444367895,"389":338.3076817563,"390":359.4021537044,"391":380.871894456,"392":402.5461929886,"393":424.5376982668,"394":446.7062848296,"395":469.13276421,"396":491.7081495198,"397":514.481095934,"398":537.3741852585,"399":560.403724291,"400":583.5241690657,"401":606.719413647,"402":629.975968039,"403":653.2453771358,"404":676.5462581499,"405":699.7979980352,"406":723.0512477391,"407":746.1935544183,"408":769.3074028588,"409":792.2489442201,"410":815.1321715972,"411":837.782407858,"412":860.3447045275,"413":882.6142455531,"414":904.7665684378,"415":926.5675265237,"416":948.2224505258,"417":969.4687872503,"418":990.5408502777,"419":1011.1487160564,"420":1031.5547563034,"421":1051.4428213049,"422":1071.1023054532,"423":1090.1920805709,"424":1109.0274216182,"425":1127.2435682309,"426":1145.1804316911,"427":1162.4510589904,"428":1179.418656258,"429":1195.6756049682,"430":1211.6069726884,"431":1226.78608406,"432":1241.618348403,"433":1255.659717418,"434":1269.3343422125,"435":1282.1825540023,"436":1294.6455717517,"437":1306.2499202942,"438":1317.4521451611,"439":1327.7668333942,"440":1337.664055315,"441":1346.6483758764,"442":1355.2015350377,"443":1362.8200309189,"444":1369.995371909,"445":1376.2179763872,"446":1381.9871814135,"447":1386.7893367116,"448":1391.1296373574,"449":1394.4923915625,"450":1397.3866586441,"451":1399.2967405015,"452":1400.733551669,"453":1401.1834229584,"454":1401.1571077745,"455":1400.1449930593,"456":1398.6556553781,"457":1396.1855490126,"458":1393.2390665695,"459":1389.3207169353,"460":1384.9287181502,"461":1379.5775891831,"462":1373.7574072689,"463":1366.9946174301,"464":1359.7692219858,"465":1351.6214609173,"466":1343.0193672776,"467":1333.51879047,"468":1323.5739471687,"469":1312.7580490582,"470":1301.5097038484,"471":1289.4211698435,"472":1276.913714805,"473":1263.6002528267,"474":1249.8830491702,"475":1235.3972013706,"476":1220.5243846324,"477":1204.9233200348,"478":1188.9535864276,"479":1172.2988753065,"480":1155.295250073,"481":1137.6526209645,"482":1119.6822096454,"483":1101.1212899463,"484":1082.255013545,"485":1062.8490547258,"486":1043.1613698162,"487":1022.9869583305,"488":1002.5555632105,"489":981.6923182437,"490":960.5978462956,"491":939.128105544,"492":917.4538070114,"493":895.4623017332,"494":873.2937151704,"495":850.86723579,"496":828.2918504802,"497":805.518904066,"498":782.6258147415,"499":759.596275709,"500":736.4758309343,"501":713.280586353,"502":690.024031961,"503":666.7546228642,"504":643.4537418501,"505":620.2020019648,"506":596.9487522609,"507":573.8064455817,"508":550.6925971412,"509":527.7510557799,"510":504.8678284028,"511":482.217592142,"512":459.6552954725,"513":437.3857544469,"514":415.2334315622,"515":393.4324734763,"516":371.7775494742,"517":350.5312127497,"518":329.4591497223,"519":308.8512839436,"520":288.4452436966,"521":268.5571786951,"522":248.8976945468,"523":229.8079194291,"524":210.9725783818,"525":192.7564317691,"526":174.8195683089,"527":157.5489410096,"528":140.581343742,"529":124.3243950318,"530":108.3930273116,"531":93.21391594,"532":78.381651597,"533":64.340282582,"534":50.6656577875,"535":37.8174459977,"536":25.3544282483,"537":13.7500797058,"538":2.5478548389,"539":-7.7668333942,"540":-17.664055315,"541":-26.6483758764,"542":-35.2015350377,"543":-42.8200309189,"544":-49.995371909,"545":-56.2179763872,"546":-61.9871814135,"547":-66.7893367116,"548":-71.1296373574,"549":-74.4923915625,"550":-77.3866586441,"551":-79.2967405015,"552":-80.733551669,"553":-81.1834229584,"554":-81.1571077745,"555":-80.1449930593,"556":-78.6556553781,"557":-76.1855490126,"558":-73.2390665695,"559":-69.3207169353,"560":-64.9287181502,"561":-59.5775891831,"562":-53.7574072689,"563":-46.9946174301,"564":-39.7692219858,"565":-31.6214609173,"566":-23.0193672776,"567":-13.51879047,"568":-3.5739471687,"569":7.2419509418,"570":18.4902961516,"571":30.5788301565,"572":43.086285195,"573":56.3997471733,"574":70.1169508298,"575":84.6027986294,"576":99.4756153676,"577":115.0766799652,"578":131.0464135724,"579":147.7011246935,"580":164.704749927,"581":182.3473790355,"582":200.3177903546,"583":218.8787100537,"584":237.744986455,"585":257.1509452742,"586":276.8386301838,"587":297.0130416695,"588":317.4444367895,"589":338.3076817563,"590":359.4021537044,"591":380.871894456,"592":402.5461929886,"593":424.5376982668,"594":446.7062848296,"595":469.13276421,"596":491.7081495198,"597":514.481095934,"598":537.3741852585,"599":560.403724291,"600":583.5241690657,"601":606.719413647,"602":629.975968039,"603":653.2453771358,"604":676.5462581499,"605":699.7979980352,"606":723.0512477391,"607":746.1935544183,"608":769.3074028588,"609":792.2489442201,"610":815.1321715972,"611":837.782407858,"612":860.3447045275,"613":882.6142455531,"614":904.7665684378,"615":926.5675265237,"616":948.2224505258,"617":969.4687872503,"618":990.5408502777,"619":1011.1487160564,"620":1031.5547563034,"621":1051.4428213049,"622":1071.1023054532,"623":1090.1920805709,"624":1109.0274216182,"625":1127.2435682309,"626":1145.1804316911,"627":1162.4510589904,"628":1179.418656258,"629":1195.6756049682,"630":1211.6069726884,"631":1226.78608406,"632":1241.618348403,"633":1255.659717418,"634":1269.3343422125,"635":1282.1825540023,"636":1294.6455717517,"637":1306.2499202942,"638":1317.4521451611,"639":1327.7668333942,"640":1337.664055315,"641":1346.6483758764,"642":1355.2015350377,"643":1362.8200309189,"644":1369.995371909,"645":1376.2179763872,"646":1381.9871814135,"647":1386.7893367116,"648":1391.1296373574,"649":1394.4923915625,"650":1397.3866586441,"651":1399.2967405015,"652":1400.733551669,"653":1401.1834229584,"654":1401.1571077745,"655":1400.1449930593,"656":1398.6556553781,"657":1396.1855490126,"658":1393.2390665695,"659":1389.3207169353,"660":1384.9287181502,"661":1379.5775891831,"662":1373.7574072689,"663":1366.9946174301,"664":1359.7692219858,"665":1351.6214609173,"666":1343.0193672776,"667":1333.51879047,"668":1323.5739471687,"669":1312.7580490582,"670":1301.5097038484,"671":1289.4211698435,"672":1276.913714805,"673":1263.6002528267,"674":1249.8830491702,"675":1235.3972013706,"676":1220.5243846324,"677":1204.9233200348,"678":1188.9535864276,"679":1172.2988753065,"680":1155.295250073,"681":1137.6526209645,"682":1119.6822096454,"683":1101.1212899463,"684":1082.255013545,"685":1062.8490547258,"686":1043.1613698162,"687":1022.9869583305,"688":1002.5555632105,"689":981.6923182437,"690":960.5978462956,"691":939.128105544,"692":917.4538070114,"693":895.4623017332,"694":873.2937151704,"695":850.86723579,"696":828.2918504802,"697":805.518904066,"698":782.6258147415,"699":759.596275709,"700":736.4758309343,"701":713.280586353,"702":690.024031961,"703":666.7546228642,"704":643.4537418501,"705":620.2020019648,"706":596.9487522609,"707":573.8064455817,"708":550.6925971412,"709":527.7510557799,"710":504.8678284028,"711":482.217592142,"712":459.6552954725,"713":437.3857544469,"714":415.2334315622,"715":393.4324734763,"716":371.7775494742,"717":350.5312127497,"718":329.4591497223,"719":308.8512839436,"720":288.4452436966,"721":268.5571786951,"722":248.8976945468,"723":229.8079194291,"724":210.9725783818,"725":192.7564317691,"726":174.8195683089,"727":157.5489410096,"728":140.581343742,"729":124.3243950318,"730":108.3930273116,"731":93.21391594,"732":78.381651597,"733":64.340282582,"734":50.6656577875,"735":37.8174459977,"736":25.3544282483,"737":13.7500797058,"738":2.5478548389,"739":-7.7668333942,"740":-17.664055315,"741":-26.6483758764,"742":-35.2015350377,"743":-42.8200309189,"744":-49.995371909,"745":-56.2179763872,"746":-61.9871814135,"747":-66.7893367116,"748":-71.1296373574,"749":-74.4923915625,"750":-77.3866586441,"751":-79.2967405015,"752":-80.733551669,"753":-81.1834229584,"754":-81.1571077745,"755":-80.1449930593,"756":-78.6556553781,"757":-76.1855490126,"758":-73.2390665695,"759":-69.3207169353,"760":-64.9287181502,"761":-59.5775891831,"762":-53.7574072689,"763":-46.9946174301,"764":-39.7692219858,"765":-31.6214609173,"766":-23.0193672776,"767":-13.51879047,"768":-3.5739471687,"769":7.2419509418,"770":18.4902961516,"771":30.5788301565,"772":43.086285195,"773":56.3997471733,"774":70.1169508298,"775":84.6027986294,"776":99.4756153676,"777":115.0766799652,"778":131.0464135724,"779":147.7011246935,"780":164.704749927,"781":182.3473790355,"782":200.3177903546,"783":218.8787100537,"784":237.744986455,"785":257.1509452742,"786":276.8386301838,"787":297.0130416695,"788":317.4444367895,"789":338.3076817563,"790":359.4021537044,"791":380.871894456,"792":402.5461929886,"793":424.5376982668,"794":446.7062848296,"795":469.13276421,"796":491.7081495198,"797":514.481095934,"798":537.3741852585,"799":560.403724291,"800":583.5241690657,"801":606.719413647,"802":629.975968039,"803":653.2453771358,"804":676.5462581499,"805":699.7979980352,"806":723.0512477391,"807":746.1935544183,"808":769.3074028588,"809":792.2489442201,"810":815.1321715972,"811":837.782407858,"812":860.3447045275,"813":882.6142455531,"814":904.7665684378,"815":926.5675265237,"816":948.2224505257,"817":969.4687872503,"818":990.5408502777,"819":1011.1487160564,"820":1031.5547563034,"821":1051.4428213049,"822":1071.1023054532,"823":1090.1920805709,"824":1109.0274216182,"825":1127.2435682309,"826":1145.1804316911,"827":1162.4510589904,"828":1179.418656258,"829":1195.6756049682,"830":1211.6069726884,"831":1226.78608406,"832":1241.618348403,"833":1255.659717418,"834":1269.3343422125,"835":1282.1825540023,"836":1294.6455717517,"837":1306.2499202942,"838":1317.4521451611,"839":1327.7668333942,"840":1337.6640553149,"841":1346.6483758764,"842":1355.2015350377,"843":1362.8200309189,"844":1369.995371909,"845":1376.2179763872,"846":1381.9871814135,"847":1386.7893367116,"848":1391.1296373574,"849":1394.4923915625,"850":1397.3866586441,"851":1399.2967405015,"852":1400.733551669,"853":1401.1834229584,"854":1401.1571077745,"855":1400.1449930593,"856":1398.6556553781,"857":1396.1855490126,"858":1393.2390665695,"859":1389.3207169353,"860":1384.9287181502,"861":1379.5775891831,"862":1373.7574072689,"863":1366.9946174301,"864":1359.7692219858,"865":1351.6214609173,"866":1343.0193672777,"867":1333.51879047,"868":1323.5739471687,"869":1312.7580490582,"870":1301.5097038485,"871":1289.4211698435,"872":1276.913714805,"873":1263.6002528267,"874":1249.8830491702,"875":1235.3972013706,"876":1220.5243846324,"877":1204.9233200348,"878":1188.9535864276,"879":1172.2988753065,"880":1155.295250073,"881":1137.6526209645,"882":1119.6822096454,"883":1101.1212899463,"884":1082.255013545,"885":1062.8490547258,"886":1043.1613698162,"887":1022.9869583305,"888":1002.5555632105,"889":981.6923182437,"890":960.5978462956,"891":939.128105544,"892":917.4538070114,"893":895.4623017332,"894":873.2937151704,"895":850.86723579,"896":828.2918504802,"897":805.518904066,"898":782.6258147415,"899":759.596275709,"900":736.4758309343,"901":713.280586353,"902":690.024031961,"903":666.7546228642,"904":643.4537418501,"905":620.2020019648,"906":596.9487522609,"907":573.8064455817,"908":550.6925971412,"909":527.7510557799,"910":504.8678284028,"911":482.217592142,"912":459.6552954725,"913":437.3857544469,"914":415.2334315622,"915":393.4324734763,"916":371.7775494743,"917":350.5312127497,"918":329.4591497223,"919":308.8512839436,"920":288.4452436966,"921":268.5571786951,"922":248.8976945468,"923":229.8079194291,"924":210.9725783818,"925":192.7564317691,"926":174.8195683089,"927":157.5489410096,"928":140.581343742,"929":124.3243950318,"930":108.3930273116,"931":93.21391594,"932":78.381651597,"933":64.340282582,"934":50.6656577875,"935":37.8174459977,"936":25.3544282483,"937":13.7500797058,"938":2.5478548389,"939":-7.7668333942,"940":-17.6640553149,"941":-26.6483758764,"942":-35.2015350377,"943":-42.8200309189,"944":-49.995371909,"945":-56.2179763872,"946":-61.9871814135,"947":-66.7893367116,"948":-71.1296373574,"949":-74.4923915625,"950":-77.3866586441,"951":-79.2967405015,"952":-80.733551669,"953":-81.1834229584,"954":-81.1571077745,"955":-80.1449930593,"956":-78.6556553781,"957":-76.1855490126,"958":-73.2390665695,"959":-69.3207169353,"960":-64.9287181502,"961":-59.5775891831,"962":-53.7574072689,"963":-46.9946174301,"964":-39.7692219858,"965":-31.6214609173,"966":-23.0193672776,"967":-13.51879047,"968":-3.5739471687,"969":7.2419509418,"970":18.4902961515,"971":30.5788301565,"972":43.086285195,"973":56.3997471733,"974":70.1169508298,"975":84.6027986294,"976":99.4756153676,"977":115.0766799652,"978":131.0464135724,"979":147.7011246935,"980":164.704749927,"981":182.3473790355,"982":200.3177903546,"983":218.8787100537,"984":237.744986455,"985":257.1509452742,"986":276.8386301838,"987":297.0130416695,"988":317.4444367895,"989":338.3076817563,"990":359.4021537044,"991":380.871894456,"992":402.5461929886,"993":424.5376982668,"994":446.7062848296,"995":469.13276421,"996":491.7081495198,"997":514.481095934,"998":537.3741852585,"999":560.403724291,"1000":583.5241690657,"1001":606.719413647,"1002":629.975968039,"1003":653.2453771358,"1004":676.5462581499,"1005":699.7979980352,"1006":723.0512477391,"1007":746.1935544183,"1008":769.3074028588,"1009":792.2489442201,"1010":815.1321715972,"1011":837.782407858,"1012":860.3447045275,"1013":882.6142455531,"1014":904.7665684378,"1015":926.5675265237,"1016":948.2224505257,"1017":969.4687872503,"1018":990.5408502777,"1019":1011.1487160564,"1020":1031.5547563034,"1021":1051.4428213049,"1022":1071.1023054532,"1023":1090.1920805709,"1024":1109.0274216182,"1025":1127.2435682309,"1026":1145.1804316911,"1027":1162.4510589904,"1028":1179.418656258,"1029":1195.6756049682,"1030":1211.6069726884,"1031":1226.78608406,"1032":1241.618348403,"1033":1255.659717418,"1034":1269.3343422125,"1035":1282.1825540023,"1036":1294.6455717517,"1037":1306.2499202942,"1038":1317.4521451611,"1039":1327.7668333942,"1040":1337.6640553149,"1041":1346.6483758764,"1042":1355.2015350377,"1043":1362.8200309189,"1044":1369.995371909,"1045":1376.2179763872,"1046":1381.9871814135,"1047":1386.7893367116,"1048":1391.1296373574,"1049":1394.4923915625,"1050":1397.3866586441,"1051":1399.2967405015,"1052":1400.733551669,"1053":1401.1834229584,"1054":1401.1571077745,"1055":1400.1449930593,"1056":1398.6556553781,"1057":1396.1855490126,"1058":1393.2390665695,"1059":1389.3207169353,"1060":1384.9287181502,"1061":1379.5775891831,"1062":1373.7574072689,"1063":1366.9946174301,"1064":1359.7692219858,"1065":1351.6214609173,"1066":1343.0193672777,"1067":1333.51879047,"1068":1323.5739471687,"1069":1312.7580490582,"1070":1301.5097038485,"1071":1289.4211698435,"1072":1276.913714805,"1073":1263.6002528267,"1074":1249.8830491702,"1075":1235.3972013706,"1076":1220.5243846324,"1077":1204.9233200348,"1078":1188.9535864276,"1079":1172.2988753065,"1080":1155.295250073,"1081":1137.6526209645,"1082":1119.6822096454,"1083":1101.1212899463,"1084":1082.255013545,"1085":1062.8490547258,"1086":1043.1613698162,"1087":1022.9869583305,"1088":1002.5555632105,"1089":981.6923182437,"1090":960.5978462956,"1091":939.128105544,"1092":917.4538070114,"1093":895.4623017332,"1094":873.2937151704,"1095":850.86723579,"1096":828.2918504802,"1097":805.518904066,"1098":782.6258147415,"1099":759.596275709,"1100":736.4758309343,"1101":713.280586353,"1102":690.024031961,"1103":666.7546228642,"1104":643.4537418501,"1105":620.2020019648,"1106":596.9487522609,"1107":573.8064455817,"1108":550.6925971412,"1109":527.7510557799,"1110":504.8678284028,"1111":482.217592142,"1112":459.6552954725,"1113":437.3857544469,"1114":415.2334315622,"1115":393.4324734763,"1116":371.7775494743,"1117":350.5312127497,"1118":329.4591497223,"1119":308.8512839436,"1120":288.4452436966,"1121":268.5571786951,"1122":248.8976945468,"1123":229.8079194291,"1124":210.9725783818,"1125":192.7564317691,"1126":174.8195683089,"1127":157.5489410096,"1128":140.581343742,"1129":124.3243950318,"1130":108.3930273116,"1131":93.21391594,"1132":78.381651597,"1133":64.340282582,"1134":50.6656577875,"1135":37.8174459977,"1136":25.3544282483,"1137":13.7500797058,"1138":2.5478548389,"1139":-7.7668333942,"1140":-17.6640553149,"1141":-26.6483758764,"1142":-35.2015350377,"1143":-42.8200309189,"1144":-49.995371909,"1145":-56.2179763872,"1146":-61.9871814135,"1147":-66.7893367116,"1148":-71.1296373574,"1149":-74.4923915625,"1150":-77.3866586441,"1151":-79.2967405015,"1152":-80.733551669,"1153":-81.1834229584,"1154":-81.1571077745,"1155":-80.1449930593,"1156":-78.6556553781,"1157":-76.1855490126,"1158":-73.2390665695,"1159":-69.3207169353,"1160":-64.9287181502,"1161":-59.5775891831,"1162":-53.7574072689,"1163":-46.9946174301,"1164":-39.7692219858,"1165":-31.6214609173,"1166":-23.0193672776,"1167":-13.51879047,"1168":-3.5739471687,"1169":7.2419509418,"1170":18.4902961515,"1171":30.5788301565,"1172":43.086285195,"1173":56.3997471733,"1174":70.1169508298,"1175":84.6027986294,"1176":99.4756153676,"1177":115.0766799652,"1178":131.0464135724,"1179":147.7011246935,"1180":164.704749927,"1181":182.3473790355,"1182":200.3177903546,"1183":218.8787100537,"1184":237.744986455,"1185":257.1509452742,"1186":276.8386301838,"1187":297.0130416695,"1188":317.4444367895,"1189":338.3076817563,"1190":359.4021537044,"1191":380.871894456,"1192":402.5461929886,"1193":424.5376982668,"1194":446.7062848296,"1195":469.13276421,"1196":491.7081495198,"1197":514.481095934,"1198":537.3741852585,"1199":560.403724291,"1200":583.5241690657,"1201":606.719413647,"1202":629.975968039,"1203":653.2453771358,"1204":676.5462581499,"1205":699.7979980352,"1206":723.0512477391,"1207":746.1935544183,"1208":769.3074028588,"1209":792.2489442201,"1210":815.1321715972,"1211":837.782407858,"1212":860.3447045275,"1213":882.6142455531,"1214":904.7665684378,"1215":926.5675265237,"1216":948.2224505257,"1217":969.4687872503,"1218":990.5408502777,"1219":1011.1487160564,"1220":1031.5547563034,"1221":1051.4428213049,"1222":1071.1023054532,"1223":1090.1920805709,"1224":1109.0274216182,"1225":1127.2435682309,"1226":1145.1804316911,"1227":1162.4510589904,"1228":1179.418656258,"1229":1195.6756049682,"1230":1211.6069726884,"1231":1226.78608406,"1232":1241.618348403,"1233":1255.659717418,"1234":1269.3343422125,"1235":1282.1825540023,"1236":1294.6455717517,"1237":1306.2499202942,"1238":1317.4521451611,"1239":1327.7668333942,"1240":1337.6640553149,"1241":1346.6483758764,"1242":1355.2015350377,"1243":1362.8200309189,"1244":1369.995371909,"1245":1376.2179763872,"1246":1381.9871814135,"1247":1386.7893367116,"1248":1391.1296373574,"1249":1394.4923915625,"1250":1397.3866586441,"1251":1399.2967405015,"1252":1400.733551669,"1253":1401.1834229584,"1254":1401.1571077745,"1255":1400.1449930593,"1256":1398.6556553781,"1257":1396.1855490126,"1258":1393.2390665695,"1259":1389.3207169353,"1260":1384.9287181502,"1261":1379.5775891831,"1262":1373.7574072689,"1263":1366.9946174301,"1264":1359.7692219858,"1265":1351.6214609173,"1266":1343.0193672777,"1267":1333.51879047,"1268":1323.5739471687,"1269":1312.7580490582,"1270":1301.5097038485,"1271":1289.4211698435,"1272":1276.913714805,"1273":1263.6002528267,"1274":1249.8830491702,"1275":1235.3972013706,"1276":1220.5243846324,"1277":1204.9233200348,"1278":1188.9535864276,"1279":1172.2988753065,"1280":1155.295250073,"1281":1137.6526209645,"1282":1119.6822096454,"1283":1101.1212899463,"1284":1082.255013545,"1285":1062.8490547258,"1286":1043.1613698162,"1287":1022.9869583305,"1288":1002.5555632105,"1289":981.6923182437,"1290":960.5978462956,"1291":939.128105544,"1292":917.4538070114,"1293":895.4623017332,"1294":873.2937151704,"1295":850.86723579,"1296":828.2918504802,"1297":805.518904066,"1298":782.6258147415,"1299":759.596275709,"1300":736.4758309343,"1301":713.280586353,"1302":690.024031961,"1303":666.7546228642,"1304":643.4537418501,"1305":620.2020019648,"1306":596.9487522609,"1307":573.8064455817,"1308":550.6925971412,"1309":527.7510557799,"1310":504.8678284028,"1311":482.217592142,"1312":459.6552954725,"1313":437.3857544469,"1314":415.2334315622,"1315":393.4324734763,"1316":371.7775494743,"1317":350.5312127497,"1318":329.4591497223,"1319":308.8512839436,"1320":288.4452436966,"1321":268.5571786951,"1322":248.8976945468,"1323":229.8079194291,"1324":210.9725783818,"1325":192.7564317691,"1326":174.8195683089,"1327":157.5489410096,"1328":140.581343742,"1329":124.3243950318,"1330":108.3930273116,"1331":93.21391594,"1332":78.381651597,"1333":64.340282582,"1334":50.6656577875,"1335":37.8174459977,"1336":25.3544282483,"1337":13.7500797058,"1338":2.5478548389,"1339":-7.7668333942,"1340":-17.6640553149,"1341":-26.6483758764,"1342":-35.2015350377,"1343":-42.8200309189,"1344":-49.995371909,"1345":-56.2179763872,"1346":-61.9871814135,"1347":-66.7893367116,"1348":-71.1296373574,"1349":-74.4923915625,"1350":-77.3866586441,"1351":-79.2967405015,"1352":-80.733551669,"1353":-81.1834229584,"1354":-81.1571077745,"1355":-80.1449930593,"1356":-78.6556553781,"1357":-76.1855490126,"1358":-73.2390665695,"1359":-69.3207169353,"1360":-64.9287181502,"1361":-59.5775891831,"1362":-53.7574072689,"1363":-46.9946174301,"1364":-39.7692219858,"1365":-31.6214609173,"1366":-23.0193672776,"1367":-13.51879047,"1368":-3.5739471687,"1369":7.2419509418,"1370":18.4902961515,"1371":30.5788301565,"1372":43.086285195,"1373":56.3997471733,"1374":70.1169508298,"1375":84.6027986294,"1376":99.4756153676,"1377":115.0766799652,"1378":131.0464135724,"1379":147.7011246935,"1380":164.704749927,"1381":182.3473790355,"1382":200.3177903546,"1383":218.8787100537,"1384":237.744986455,"1385":257.1509452742,"1386":276.8386301838,"1387":297.0130416695,"1388":317.4444367895,"1389":338.3076817563,"1390":359.4021537044,"1391":380.871894456,"1392":402.5461929886,"1393":424.5376982668,"1394":446.7062848296,"1395":469.13276421,"1396":491.7081495198,"1397":514.481095934,"1398":537.3741852585,"1399":560.403724291,"1400":583.5241690657,"1401":606.719413647,"1402":629.975968039,"1403":653.2453771358,"1404":676.5462581499,"1405":699.7979980352,"1406":723.0512477391,"1407":746.1935544183,"1408":769.3074028588,"1409":792.2489442201,"1410":815.1321715972,"1411":837.782407858,"1412":860.3447045275,"1413":882.6142455531,"1414":904.7665684378,"1415":926.5675265237,"1416":948.2224505257,"1417":969.4687872503,"1418":990.5408502777,"1419":1011.1487160564,"1420":1031.5547563034,"1421":1051.4428213049,"1422":1071.1023054532,"1423":1090.1920805709,"1424":1109.0274216182,"1425":1127.2435682309,"1426":1145.1804316911,"1427":1162.4510589904,"1428":1179.418656258,"1429":1195.6756049682,"1430":1211.6069726884,"1431":1226.78608406,"1432":1241.618348403,"1433":1255.659717418,"1434":1269.3343422125,"1435":1282.1825540023,"1436":1294.6455717517,"1437":1306.2499202942,"1438":1317.4521451611,"1439":1327.7668333942,"1440":1337.6640553149,"1441":1346.6483758764,"1442":1355.2015350377,"1443":1362.8200309189,"1444":1369.995371909,"1445":1376.2179763872,"1446":1381.9871814135,"1447":1386.7893367116,"1448":1391.1296373574,"1449":1394.4923915625,"1450":1397.3866586441,"1451":1399.2967405015,"1452":1400.733551669,"1453":1401.1834229584,"1454":1401.1571077745,"1455":1400.1449930593,"1456":1398.6556553781,"1457":1396.1855490126,"1458":1393.2390665695,"1459":1389.3207169353,"1460":1384.9287181502,"1461":1379.5775891831,"1462":1373.7574072689,"1463":1366.9946174301,"1464":1359.7692219858,"1465":1351.6214609173,"1466":1343.0193672777,"1467":1333.51879047,"1468":1323.5739471687,"1469":1312.7580490582,"1470":1301.5097038485,"1471":1289.4211698435,"1472":1276.913714805,"1473":1263.6002528267,"1474":1249.8830491702,"1475":1235.3972013706,"1476":1220.5243846324,"1477":1204.9233200348,"1478":1188.9535864276,"1479":1172.2988753065,"1480":1155.295250073,"1481":1137.6526209645,"1482":1119.6822096454,"1483":1101.1212899463,"1484":1082.255013545,"1485":1062.8490547258,"1486":1043.1613698162,"1487":1022.9869583305,"1488":1002.5555632105,"1489":981.6923182437,"1490":960.5978462956,"1491":939.128105544,"1492":917.4538070114,"1493":895.4623017332,"1494":873.2937151704,"1495":850.86723579,"1496":828.2918504802,"1497":805.518904066,"1498":782.6258147415,"1499":759.596275709,"1500":736.4758309343,"1501":713.280586353,"1502":690.024031961,"1503":666.7546228642,"1504":643.4537418501,"1505":620.2020019648,"1506":596.9487522609,"1507":573.8064455817,"1508":550.6925971412,"1509":527.7510557799,"1510":504.8678284028,"1511":482.217592142,"1512":459.6552954725,"1513":437.3857544469,"1514":415.2334315622,"1515":393.4324734763,"1516":371.7775494743,"1517":350.5312127497,"1518":329.4591497223,"1519":308.8512839436,"1520":288.4452436966,"1521":268.5571786951,"1522":248.8976945468,"1523":229.8079194291,"1524":210.9725783818,"1525":192.7564317691,"1526":174.8195683089,"1527":157.5489410096,"1528":140.581343742,"1529":124.3243950318,"1530":108.3930273116,"1531":93.21391594,"1532":78.381651597,"1533":64.340282582,"1534":50.6656577875,"1535":37.8174459977,"1536":25.3544282483,"1537":13.7500797058,"1538":2.5478548389,"1539":-7.7668333942,"1540":-17.6640553149,"1541":-26.6483758764,"1542":-35.2015350377,"1543":-42.8200309189,"1544":-49.995371909,"1545":-56.2179763872,"1546":-61.9871814135,"1547":-66.7893367116,"1548":-71.1296373574,"1549":-74.4923915625,"1550":-77.3866586441,"1551":-79.2967405015,"1552":-80.733551669,"1553":-81.1834229584,"1554":-81.1571077745,"1555":-80.1449930593,"1556":-78.6556553781,"1557":-76.1855490126,"1558":-73.2390665695,"1559":-69.3207169353,"1560":-64.9287181502,"1561":-59.5775891831,"1562":-53.7574072689,"1563":-46.9946174301,"1564":-39.7692219858,"1565":-31.6214609173,"1566":-23.0193672776,"1567":-13.51879047,"1568":-3.5739471687,"1569":7.2419509418,"1570":18.4902961515,"1571":30.5788301565,"1572":43.086285195,"1573":56.3997471733,"1574":70.1169508298,"1575":84.6027986294,"1576":99.4756153676,"1577":115.0766799652,"1578":131.0464135724,"1579":147.7011246935,"1580":164.704749927,"1581":182.3473790355,"1582":200.3177903546,"1583":218.8787100537,"1584":237.744986455,"1585":257.1509452742,"1586":276.8386301838,"1587":297.0130416695,"1588":317.4444367895,"1589":338.3076817563,"1590":359.4021537044,"1591":380.871894456,"1592":402.5461929886,"1593":424.5376982668,"1594":446.7062848296,"1595":469.13276421,"1596":491.7081495198,"1597":514.481095934,"1598":537.3741852585,"1599":560.403724291,"1600":583.5241690657,"1601":606.719413647,"1602":629.975968039,"1603":653.2453771358,"1604":676.5462581499,"1605":699.7979980352,"1606":723.0512477391,"1607":746.1935544183,"1608":769.3074028588,"1609":792.2489442201,"1610":815.1321715972,"1611":837.782407858,"1612":860.3447045275,"1613":882.6142455531,"1614":904.7665684378,"1615":926.5675265237,"1616":948.2224505257,"1617":969.4687872503,"1618":990.5408502777,"1619":1011.1487160564,"1620":1031.5547563034,"1621":1051.4428213049,"1622":1071.1023054532,"1623":1090.1920805709,"1624":1109.0274216182,"1625":1127.2435682309,"1626":1145.1804316911,"1627":1162.4510589904,"1628":1179.418656258,"1629":1195.6756049682,"1630":1211.6069726884,"1631":1226.78608406,"1632":1241.618348403,"1633":1255.659717418,"1634":1269.3343422125,"1635":1282.1825540023,"1636":1294.6455717517,"1637":1306.2499202942,"1638":1317.4521451611,"1639":1327.7668333942,"1640":1337.664055315,"1641":1346.6483758764,"1642":1355.2015350377,"1643":1362.8200309189,"1644":1369.995371909,"1645":1376.2179763872,"1646":1381.9871814135,"1647":1386.7893367116,"1648":1391.1296373574,"1649":1394.4923915625,"1650":1397.3866586441,"1651":1399.2967405015,"1652":1400.733551669,"1653":1401.1834229584,"1654":1401.1571077745,"1655":1400.1449930593,"1656":1398.6556553781,"1657":1396.1855490126,"1658":1393.2390665695,"1659":1389.3207169353,"1660":1384.9287181502,"1661":1379.5775891831,"1662":1373.7574072689,"1663":1366.9946174301,"1664":1359.7692219858,"1665":1351.6214609173,"1666":1343.0193672777,"1667":1333.51879047,"1668":1323.5739471687,"1669":1312.7580490582,"1670":1301.5097038484,"1671":1289.4211698435,"1672":1276.913714805,"1673":1263.6002528267,"1674":1249.8830491702,"1675":1235.3972013706,"1676":1220.5243846324,"1677":1204.9233200348,"1678":1188.9535864276,"1679":1172.2988753065,"1680":1155.295250073,"1681":1137.6526209645,"1682":1119.6822096454,"1683":1101.1212899463,"1684":1082.255013545,"1685":1062.8490547258,"1686":1043.1613698162,"1687":1022.9869583305,"1688":1002.5555632105,"1689":981.6923182437,"1690":960.5978462955,"1691":939.128105544,"1692":917.4538070114,"1693":895.4623017332,"1694":873.2937151704,"1695":850.86723579,"1696":828.2918504802,"1697":805.518904066,"1698":782.6258147415,"1699":759.596275709,"1700":736.4758309343,"1701":713.280586353,"1702":690.0240319609,"1703":666.7546228642,"1704":643.4537418501,"1705":620.2020019648,"1706":596.9487522609,"1707":573.8064455817,"1708":550.6925971412,"1709":527.7510557799,"1710":504.8678284028,"1711":482.217592142,"1712":459.6552954725,"1713":437.3857544469,"1714":415.2334315622,"1715":393.4324734763,"1716":371.7775494742,"1717":350.5312127497,"1718":329.4591497223,"1719":308.8512839436,"1720":288.4452436966,"1721":268.5571786951,"1722":248.8976945468,"1723":229.8079194291,"1724":210.9725783818,"1725":192.7564317691,"1726":174.8195683089,"1727":157.5489410096,"1728":140.581343742,"1729":124.3243950318,"1730":108.3930273116,"1731":93.21391594,"1732":78.381651597,"1733":64.340282582,"1734":50.6656577875,"1735":37.8174459977,"1736":25.3544282483,"1737":13.7500797058,"1738":2.5478548389,"1739":-7.7668333942,"1740":-17.664055315,"1741":-26.6483758764,"1742":-35.2015350377,"1743":-42.8200309189,"1744":-49.995371909,"1745":-56.2179763872,"1746":-61.9871814135,"1747":-66.7893367116,"1748":-71.1296373574,"1749":-74.4923915625,"1750":-77.3866586441,"1751":-79.2967405015,"1752":-80.733551669,"1753":-81.1834229584,"1754":-81.1571077745,"1755":-80.1449930593,"1756":-78.655655378,"1757":-76.1855490126,"1758":-73.2390665695,"1759":-69.3207169353,"1760":-64.9287181502,"1761":-59.5775891831,"1762":-53.7574072689,"1763":-46.9946174301,"1764":-39.7692219858,"1765":-31.6214609173,"1766":-23.0193672776,"1767":-13.51879047,"1768":-3.5739471687,"1769":7.2419509418,"1770":18.4902961516,"1771":30.5788301565,"1772":43.086285195,"1773":56.3997471733,"1774":70.1169508298,"1775":84.6027986294,"1776":99.4756153676,"1777":115.0766799652,"1778":131.0464135724,"1779":147.7011246935,"1780":164.704749927,"1781":182.3473790355,"1782":200.3177903546,"1783":218.8787100537,"1784":237.744986455,"1785":257.1509452742,"1786":276.8386301838,"1787":297.0130416695,"1788":317.4444367895,"1789":338.3076817563,"1790":359.4021537045,"1791":380.871894456,"1792":402.5461929886,"1793":424.5376982668,"1794":446.7062848296,"1795":469.13276421,"1796":491.7081495198,"1797":514.481095934,"1798":537.3741852585,"1799":560.403724291,"1800":583.5241690657,"1801":606.719413647,"1802":629.9759680391,"1803":653.2453771358,"1804":676.5462581499,"1805":699.7979980352,"1806":723.0512477391,"1807":746.1935544183,"1808":769.3074028588,"1809":792.2489442201,"1810":815.1321715972,"1811":837.782407858,"1812":860.3447045275,"1813":882.6142455531,"1814":904.7665684378,"1815":926.5675265237,"1816":948.2224505258,"1817":969.4687872503,"1818":990.5408502777,"1819":1011.1487160564,"1820":1031.5547563034,"1821":1051.4428213049,"1822":1071.1023054532,"1823":1090.1920805709,"1824":1109.0274216182,"1825":1127.2435682309,"1826":1145.1804316911,"1827":1162.4510589904,"1828":1179.418656258,"1829":1195.6756049682,"1830":1211.6069726884,"1831":1226.78608406,"1832":1241.618348403,"1833":1255.659717418,"1834":1269.3343422125,"1835":1282.1825540023,"1836":1294.6455717517,"1837":1306.2499202942,"1838":1317.4521451611,"1839":1327.7668333942,"1840":1337.664055315,"1841":1346.6483758764,"1842":1355.2015350377,"1843":1362.8200309189,"1844":1369.995371909,"1845":1376.2179763872,"1846":1381.9871814135,"1847":1386.7893367116,"1848":1391.1296373574,"1849":1394.4923915625,"1850":1397.3866586441,"1851":1399.2967405015,"1852":1400.733551669,"1853":1401.1834229584,"1854":1401.1571077745,"1855":1400.1449930593,"1856":1398.6556553781,"1857":1396.1855490126,"1858":1393.2390665695,"1859":1389.3207169353,"1860":1384.9287181502,"1861":1379.5775891831,"1862":1373.7574072689,"1863":1366.9946174301,"1864":1359.7692219858,"1865":1351.6214609173,"1866":1343.0193672776,"1867":1333.51879047,"1868":1323.5739471687,"1869":1312.7580490582,"1870":1301.5097038484,"1871":1289.4211698435,"1872":1276.913714805,"1873":1263.6002528267,"1874":1249.8830491702,"1875":1235.3972013706,"1876":1220.5243846324,"1877":1204.9233200348,"1878":1188.9535864276,"1879":1172.2988753065,"1880":1155.295250073,"1881":1137.6526209645,"1882":1119.6822096454,"1883":1101.1212899463,"1884":1082.255013545,"1885":1062.8490547258,"1886":1043.1613698162,"1887":1022.9869583305,"1888":1002.5555632105,"1889":981.6923182437,"1890":960.5978462955,"1891":939.128105544,"1892":917.4538070114,"1893":895.4623017332,"1894":873.2937151704,"1895":850.86723579,"1896":828.2918504802,"1897":805.518904066,"1898":782.6258147415,"1899":759.596275709,"1900":736.4758309343,"1901":713.280586353,"1902":690.0240319609,"1903":666.7546228642,"1904":643.4537418501,"1905":620.2020019648,"1906":596.9487522609,"1907":573.8064455817,"1908":550.6925971412,"1909":527.7510557799,"1910":504.8678284028,"1911":482.217592142,"1912":459.6552954725,"1913":437.3857544469,"1914":415.2334315622,"1915":393.4324734763,"1916":371.7775494742,"1917":350.5312127497,"1918":329.4591497223,"1919":308.8512839436,"1920":288.4452436966,"1921":268.5571786951,"1922":248.8976945468,"1923":229.8079194291,"1924":210.9725783818,"1925":192.7564317691,"1926":174.8195683089,"1927":157.5489410096,"1928":140.581343742,"1929":124.3243950318,"1930":108.3930273116,"1931":93.21391594,"1932":78.381651597,"1933":64.340282582,"1934":50.6656577875,"1935":37.8174459977,"1936":25.3544282483,"1937":13.7500797058,"1938":2.5478548389,"1939":-7.7668333942,"1940":-17.664055315,"1941":-26.6483758764,"1942":-35.2015350377,"1943":-42.8200309189,"1944":-49.995371909,"1945":-56.2179763872,"1946":-61.9871814135,"1947":-66.7893367116,"1948":-71.1296373574,"1949":-74.4923915625,"1950":-77.3866586441,"1951":-79.2967405015,"1952":-80.733551669,"1953":-81.1834229584,"1954":-81.1571077745,"1955":-80.1449930593,"1956":-78.655655378,"1957":-76.1855490126,"1958":-73.2390665695,"1959":-69.3207169353,"1960":-64.9287181502,"1961":-59.5775891831,"1962":-53.7574072689,"1963":-46.9946174301,"1964":-39.7692219858,"1965":-31.6214609173,"1966":-23.0193672776,"1967":-13.51879047,"1968":-3.5739471687,"1969":7.2419509418,"1970":18.4902961516,"1971":30.5788301565,"1972":43.086285195,"1973":56.3997471733,"1974":70.1169508298,"1975":84.6027986294,"1976":99.4756153676,"1977":115.0766799652,"1978":131.0464135724,"1979":147.7011246935,"1980":164.704749927,"1981":182.3473790355,"1982":200.3177903546,"1983":218.8787100537,"1984":237.744986455,"1985":257.1509452742,"1986":276.8386301838,"1987":297.0130416695,"1988":317.4444367895,"1989":338.3076817563,"1990":359.4021537045,"1991":380.871894456,"1992":402.5461929886,"1993":424.5376982668,"1994":446.7062848296,"1995":469.13276421,"1996":491.7081495198,"1997":514.481095934,"1998":537.3741852585,"1999":560.403724291,"2000":583.5241690657,"2001":606.719413647,"2002":629.9759680391,"2003":653.2453771358,"2004":676.5462581499,"2005":699.7979980352,"2006":723.0512477391,"2007":746.1935544183,"2008":769.3074028588,"2009":792.2489442201,"2010":815.1321715972,"2011":837.782407858,"2012":860.3447045275,"2013":882.6142455531,"2014":904.7665684378,"2015":926.5675265237,"2016":948.2224505258,"2017":969.4687872503,"2018":990.5408502777,"2019":1011.1487160564,"2020":1031.5547563034,"2021":1051.4428213049,"2022":1071.1023054532,"2023":1090.1920805709,"2024":1109.0274216182,"2025":1127.2435682309,"2026":1145.1804316911,"2027":1162.4510589904,"2028":1179.418656258,"2029":1195.6756049682,"2030":1211.6069726884,"2031":1226.78608406,"2032":1241.618348403,"2033":1255.659717418,"2034":1269.3343422125,"2035":1282.1825540023,"2036":1294.6455717517,"2037":1306.2499202942,"2038":1317.4521451611,"2039":1327.7668333942,"2040":1337.664055315,"2041":1346.6483758764,"2042":1355.2015350377,"2043":1362.8200309189,"2044":1369.995371909,"2045":1376.2179763872,"2046":1381.9871814135,"2047":1386.7893367116,"2048":1391.1296373574,"2049":1394.4923915625,"2050":1397.3866586441,"2051":1399.2967405015,"2052":1400.733551669,"2053":1401.1834229584,"2054":1401.1571077745,"2055":1400.1449930593,"2056":1398.6556553781,"2057":1396.1855490126,"2058":1393.2390665695,"2059":1389.3207169353,"2060":1384.9287181502,"2061":1379.5775891831,"2062":1373.7574072689,"2063":1366.9946174301,"2064":1359.7692219858,"2065":1351.6214609173,"2066":1343.0193672776,"2067":1333.51879047,"2068":1323.5739471687,"2069":1312.7580490582,"2070":1301.5097038484,"2071":1289.4211698435,"2072":1276.913714805,"2073":1263.6002528267,"2074":1249.8830491702,"2075":1235.3972013706,"2076":1220.5243846324,"2077":1204.9233200348,"2078":1188.9535864276,"2079":1172.2988753065,"2080":1155.295250073,"2081":1137.6526209645,"2082":1119.6822096454,"2083":1101.1212899463,"2084":1082.255013545,"2085":1062.8490547258,"2086":1043.1613698162,"2087":1022.9869583305,"2088":1002.5555632105,"2089":981.6923182437,"2090":960.5978462955,"2091":939.128105544,"2092":917.4538070114,"2093":895.4623017332,"2094":873.2937151704,"2095":850.86723579,"2096":828.2918504802,"2097":805.518904066,"2098":782.6258147415,"2099":759.596275709,"2100":736.4758309343,"2101":713.280586353,"2102":690.0240319609,"2103":666.7546228642,"2104":643.4537418501,"2105":620.2020019648,"2106":596.9487522609,"2107":573.8064455817,"2108":550.6925971412,"2109":527.7510557799,"2110":504.8678284028,"2111":482.217592142,"2112":459.6552954725,"2113":437.3857544469,"2114":415.2334315622,"2115":393.4324734763,"2116":371.7775494742,"2117":350.5312127497,"2118":329.4591497223,"2119":308.8512839436,"2120":288.4452436966,"2121":268.5571786951,"2122":248.8976945468,"2123":229.8079194291,"2124":210.9725783818,"2125":192.7564317691,"2126":174.8195683089,"2127":157.5489410096,"2128":140.581343742,"2129":124.3243950318,"2130":108.3930273116,"2131":93.21391594,"2132":78.381651597,"2133":64.340282582,"2134":50.6656577875,"2135":37.8174459977,"2136":25.3544282483,"2137":13.7500797058,"2138":2.5478548389,"2139":-7.7668333942,"2140":-17.664055315,"2141":-26.6483758764,"2142":-35.2015350377,"2143":-42.8200309189,"2144":-49.995371909,"2145":-56.2179763872,"2146":-61.9871814135,"2147":-66.7893367116,"2148":-71.1296373574,"2149":-74.4923915625,"2150":-77.3866586441,"2151":-79.2967405015,"2152":-80.733551669,"2153":-81.1834229584,"2154":-81.1571077745,"2155":-80.1449930593,"2156":-78.655655378,"2157":-76.1855490126,"2158":-73.2390665695,"2159":-69.3207169353,"2160":-64.9287181502,"2161":-59.5775891831,"2162":-53.7574072689,"2163":-46.9946174301,"2164":-39.7692219858,"2165":-31.6214609173,"2166":-23.0193672776,"2167":-13.51879047,"2168":-3.5739471687,"2169":7.2419509418,"2170":18.4902961516,"2171":30.5788301565,"2172":43.086285195,"2173":56.3997471733,"2174":70.1169508298,"2175":84.6027986294,"2176":99.4756153676,"2177":115.0766799652,"2178":131.0464135724,"2179":147.7011246935,"2180":164.704749927,"2181":182.3473790355,"2182":200.3177903546,"2183":218.8787100537,"2184":237.744986455,"2185":257.1509452742,"2186":276.8386301838,"2187":297.0130416695,"2188":317.4444367895,"2189":338.3076817563,"2190":359.4021537045,"2191":380.871894456,"2192":402.5461929886,"2193":424.5376982668,"2194":446.7062848296,"2195":469.13276421,"2196":491.7081495198,"2197":514.481095934,"2198":537.3741852585,"2199":560.403724291,"2200":583.5241690657,"2201":606.719413647,"2202":629.9759680391,"2203":653.2453771358,"2204":676.5462581499,"2205":699.7979980352,"2206":723.0512477391,"2207":746.1935544183,"2208":769.3074028588,"2209":792.2489442201,"2210":815.1321715972,"2211":837.782407858,"2212":860.3447045275,"2213":882.6142455531,"2214":904.7665684378,"2215":926.5675265237,"2216":948.2224505258,"2217":969.4687872503,"2218":990.5408502777,"2219":1011.1487160564,"2220":1031.5547563034,"2221":1051.4428213049,"2222":1071.1023054532,"2223":1090.1920805709,"2224":1109.0274216182,"2225":1127.2435682309,"2226":1145.1804316911,"2227":1162.4510589904,"2228":1179.418656258,"2229":1195.6756049682,"2230":1211.6069726884,"2231":1226.78608406,"2232":1241.618348403,"2233":1255.659717418,"2234":1269.3343422125,"2235":1282.1825540023,"2236":1294.6455717517,"2237":1306.2499202942,"2238":1317.4521451611,"2239":1327.7668333942,"2240":1337.664055315,"2241":1346.6483758764,"2242":1355.2015350377,"2243":1362.8200309189,"2244":1369.995371909,"2245":1376.2179763872,"2246":1381.9871814135,"2247":1386.7893367116,"2248":1391.1296373574,"2249":1394.4923915625,"2250":1397.3866586441,"2251":1399.2967405015,"2252":1400.733551669,"2253":1401.1834229584,"2254":1401.1571077745,"2255":1400.1449930593,"2256":1398.6556553781,"2257":1396.1855490126,"2258":1393.2390665695,"2259":1389.3207169353,"2260":1384.9287181502,"2261":1379.5775891831,"2262":1373.7574072689,"2263":1366.9946174301,"2264":1359.7692219858,"2265":1351.6214609173,"2266":1343.0193672776,"2267":1333.51879047,"2268":1323.5739471687,"2269":1312.7580490582,"2270":1301.5097038484,"2271":1289.4211698435,"2272":1276.913714805,"2273":1263.6002528267,"2274":1249.8830491702,"2275":1235.3972013706,"2276":1220.5243846324,"2277":1204.9233200348,"2278":1188.9535864276,"2279":1172.2988753065,"2280":1155.295250073,"2281":1137.6526209645,"2282":1119.6822096454,"2283":1101.1212899463,"2284":1082.255013545,"2285":1062.8490547258,"2286":1043.1613698162,"2287":1022.9869583305,"2288":1002.5555632105,"2289":981.6923182437,"2290":960.5978462955,"2291":939.128105544,"2292":917.4538070114,"2293":895.4623017332,"2294":873.2937151704,"2295":850.86723579,"2296":828.2918504802,"2297":805.518904066,"2298":782.6258147415,"2299":759.596275709,"2300":736.4758309343,"2301":713.280586353,"2302":690.0240319609,"2303":666.7546228642,"2304":643.4537418501,"2305":620.2020019648,"2306":596.9487522609,"2307":573.8064455817,"2308":550.6925971412,"2309":527.7510557799,"2310":504.8678284028,"2311":482.217592142,"2312":459.6552954725,"2313":437.3857544469,"2314":415.2334315622,"2315":393.4324734763,"2316":371.7775494742,"2317":350.5312127497,"2318":329.4591497223,"2319":308.8512839436,"2320":288.4452436966,"2321":268.5571786951,"2322":248.8976945468,"2323":229.8079194291,"2324":210.9725783818,"2325":192.7564317691,"2326":174.8195683089,"2327":157.5489410096,"2328":140.581343742,"2329":124.3243950318,"2330":108.3930273116,"2331":93.21391594,"2332":78.381651597,"2333":64.340282582,"2334":50.6656577875,"2335":37.8174459977,"2336":25.3544282483,"2337":13.7500797058,"2338":2.5478548389,"2339":-7.7668333942,"2340":-17.664055315,"2341":-26.6483758764,"2342":-35.2015350377,"2343":-42.8200309189,"2344":-49.995371909,"2345":-56.2179763872,"2346":-61.9871814135,"2347":-66.7893367116,"2348":-71.1296373574,"2349":-74.4923915625,"2350":-77.3866586441,"2351":-79.2967405015,"2352":-80.733551669,"2353":-81.1834229584,"2354":-81.1571077745,"2355":-80.1449930593,"2356":-78.655655378,"2357":-76.1855490126,"2358":-73.2390665695,"2359":-69.3207169353,"2360":-64.9287181502,"2361":-59.5775891831,"2362":-53.7574072689,"2363":-46.9946174301,"2364":-39.7692219858,"2365":-31.6214609173,"2366":-23.0193672776,"2367":-13.51879047,"2368":-3.5739471687,"2369":7.2419509418,"2370":18.4902961516,"2371":30.5788301565,"2372":43.086285195,"2373":56.3997471733,"2374":70.1169508298,"2375":84.6027986294,"2376":99.4756153676,"2377":115.0766799652,"2378":131.0464135724,"2379":147.7011246935,"2380":164.704749927,"2381":182.3473790355,"2382":200.3177903546,"2383":218.8787100537,"2384":237.744986455,"2385":257.1509452742,"2386":276.8386301838,"2387":297.0130416695,"2388":317.4444367895,"2389":338.3076817563,"2390":359.4021537045,"2391":380.871894456,"2392":402.5461929886,"2393":424.5376982668,"2394":446.7062848296,"2395":469.13276421,"2396":491.7081495198,"2397":514.481095934,"2398":537.3741852585,"2399":560.403724291,"2400":583.5241690657,"2401":606.719413647,"2402":629.9759680391,"2403":653.2453771358,"2404":676.5462581499,"2405":699.7979980352,"2406":723.0512477391,"2407":746.1935544183,"2408":769.3074028588,"2409":792.2489442201,"2410":815.1321715972,"2411":837.782407858,"2412":860.3447045275,"2413":882.6142455531,"2414":904.7665684378,"2415":926.5675265237,"2416":948.2224505258,"2417":969.4687872503,"2418":990.5408502777,"2419":1011.1487160564,"2420":1031.5547563034,"2421":1051.4428213049,"2422":1071.1023054532,"2423":1090.1920805709,"2424":1109.0274216182,"2425":1127.2435682309,"2426":1145.1804316911,"2427":1162.4510589904,"2428":1179.418656258,"2429":1195.6756049682,"2430":1211.6069726884,"2431":1226.78608406,"2432":1241.618348403,"2433":1255.659717418,"2434":1269.3343422125,"2435":1282.1825540023,"2436":1294.6455717517,"2437":1306.2499202942,"2438":1317.4521451611,"2439":1327.7668333942,"2440":1337.664055315,"2441":1346.6483758764,"2442":1355.2015350377,"2443":1362.8200309189,"2444":1369.995371909,"2445":1376.2179763872,"2446":1381.9871814135,"2447":1386.7893367116,"2448":1391.1296373574,"2449":1394.4923915625,"2450":1397.3866586441,"2451":1399.2967405015,"2452":1400.733551669,"2453":1401.1834229584,"2454":1401.1571077745,"2455":1400.1449930593,"2456":1398.6556553781,"2457":1396.1855490126,"2458":1393.2390665695,"2459":1389.3207169353,"2460":1384.9287181502,"2461":1379.5775891831,"2462":1373.7574072689,"2463":1366.9946174301,"2464":1359.7692219858,"2465":1351.6214609173,"2466":1343.0193672776,"2467":1333.51879047,"2468":1323.5739471687,"2469":1312.7580490582,"2470":1301.5097038484,"2471":1289.4211698435,"2472":1276.913714805,"2473":1263.6002528267,"2474":1249.8830491702,"2475":1235.3972013706,"2476":1220.5243846324,"2477":1204.9233200348,"2478":1188.9535864276,"2479":1172.2988753065,"2480":1155.295250073,"2481":1137.6526209645,"2482":1119.6822096454,"2483":1101.1212899463,"2484":1082.255013545,"2485":1062.8490547258,"2486":1043.1613698162,"2487":1022.9869583305,"2488":1002.5555632105,"2489":981.6923182437,"2490":960.5978462955,"2491":939.128105544,"2492":917.4538070114,"2493":895.4623017332,"2494":873.2937151704,"2495":850.86723579,"2496":828.2918504802,"2497":805.518904066,"2498":782.6258147415,"2499":759.596275709,"2500":736.4758309343,"2501":713.280586353,"2502":690.0240319609,"2503":666.7546228642,"2504":643.4537418501,"2505":620.2020019648,"2506":596.9487522609,"2507":573.8064455817,"2508":550.6925971412,"2509":527.7510557799,"2510":504.8678284028,"2511":482.217592142,"2512":459.6552954725,"2513":437.3857544469,"2514":415.2334315622,"2515":393.4324734763,"2516":371.7775494742,"2517":350.5312127497,"2518":329.4591497223,"2519":308.8512839436,"2520":288.4452436966,"2521":268.5571786951,"2522":248.8976945468,"2523":229.8079194291,"2524":210.9725783818,"2525":192.7564317691,"2526":174.8195683089,"2527":157.5489410096,"2528":140.581343742,"2529":124.3243950318,"2530":108.3930273116,"2531":93.21391594,"2532":78.381651597,"2533":64.340282582,"2534":50.6656577875,"2535":37.8174459977,"2536":25.3544282483,"2537":13.7500797058,"2538":2.5478548389,"2539":-7.7668333942,"2540":-17.664055315,"2541":-26.6483758764,"2542":-35.2015350377,"2543":-42.8200309189,"2544":-49.995371909,"2545":-56.2179763872,"2546":-61.9871814135,"2547":-66.7893367116,"2548":-71.1296373574,"2549":-74.4923915625,"2550":-77.3866586441,"2551":-79.2967405015,"2552":-80.733551669,"2553":-81.1834229584,"2554":-81.1571077745,"2555":-80.1449930593,"2556":-78.6556553781,"2557":-76.1855490126,"2558":-73.2390665695,"2559":-69.3207169353,"2560":-64.9287181502,"2561":-59.5775891831,"2562":-53.7574072689,"2563":-46.9946174301,"2564":-39.7692219858,"2565":-31.6214609173,"2566":-23.0193672776,"2567":-13.51879047,"2568":-3.5739471687,"2569":7.2419509418,"2570":18.4902961516,"2571":30.5788301565,"2572":43.086285195,"2573":56.3997471733,"2574":70.1169508298,"2575":84.6027986294,"2576":99.4756153676,"2577":115.0766799652,"2578":131.0464135724,"2579":147.7011246935,"2580":164.704749927,"2581":182.3473790355,"2582":200.3177903546,"2583":218.8787100537,"2584":237.744986455,"2585":257.1509452742,"2586":276.8386301838,"2587":297.0130416695,"2588":317.4444367895,"2589":338.3076817563,"2590":359.4021537045,"2591":380.871894456,"2592":402.5461929886,"2593":424.5376982668,"2594":446.7062848296,"2595":469.13276421,"2596":491.7081495198,"2597":514.481095934,"2598":537.3741852585,"2599":560.403724291,"2600":583.5241690657,"2601":606.719413647,"2602":629.9759680391,"2603":653.2453771358,"2604":676.5462581499,"2605":699.7979980352,"2606":723.0512477391,"2607":746.1935544183,"2608":769.3074028588,"2609":792.2489442201,"2610":815.1321715972,"2611":837.782407858,"2612":860.3447045275,"2613":882.6142455531,"2614":904.7665684378,"2615":926.5675265237,"2616":948.2224505258,"2617":969.4687872503,"2618":990.5408502777,"2619":1011.1487160564,"2620":1031.5547563034,"2621":1051.4428213049,"2622":1071.1023054532,"2623":1090.1920805709,"2624":1109.0274216182,"2625":1127.2435682309,"2626":1145.1804316911,"2627":1162.4510589904,"2628":1179.418656258,"2629":1195.6756049682,"2630":1211.6069726884,"2631":1226.78608406,"2632":1241.618348403,"2633":1255.659717418,"2634":1269.3343422125,"2635":1282.1825540023,"2636":1294.6455717517,"2637":1306.2499202942,"2638":1317.4521451611,"2639":1327.7668333942,"2640":1337.664055315,"2641":1346.6483758764,"2642":1355.2015350377,"2643":1362.8200309189,"2644":1369.995371909,"2645":1376.2179763872,"2646":1381.9871814135,"2647":1386.7893367116,"2648":1391.1296373574,"2649":1394.4923915625,"2650":1397.3866586441,"2651":1399.2967405015,"2652":1400.733551669,"2653":1401.1834229584,"2654":1401.1571077745,"2655":1400.1449930593,"2656":1398.6556553781,"2657":1396.1855490126,"2658":1393.2390665695,"2659":1389.3207169353,"2660":1384.9287181502,"2661":1379.5775891831,"2662":1373.7574072689,"2663":1366.9946174301,"2664":1359.7692219858,"2665":1351.6214609173,"2666":1343.0193672776,"2667":1333.51879047,"2668":1323.5739471687,"2669":1312.7580490582,"2670":1301.5097038484,"2671":1289.4211698435,"2672":1276.913714805,"2673":1263.6002528267,"2674":1249.8830491702,"2675":1235.3972013706,"2676":1220.5243846324,"2677":1204.9233200348,"2678":1188.9535864276,"2679":1172.2988753065,"2680":1155.295250073,"2681":1137.6526209645,"2682":1119.6822096454,"2683":1101.1212899463,"2684":1082.255013545,"2685":1062.8490547258,"2686":1043.1613698162,"2687":1022.9869583305,"2688":1002.5555632105,"2689":981.6923182437,"2690":960.5978462955,"2691":939.128105544,"2692":917.4538070114,"2693":895.4623017332,"2694":873.2937151704,"2695":850.86723579,"2696":828.2918504802,"2697":805.518904066,"2698":782.6258147415,"2699":759.596275709,"2700":736.4758309343,"2701":713.280586353,"2702":690.0240319609,"2703":666.7546228642,"2704":643.4537418501,"2705":620.2020019648,"2706":596.9487522609,"2707":573.8064455817,"2708":550.6925971412,"2709":527.7510557799,"2710":504.8678284028,"2711":482.217592142,"2712":459.6552954725,"2713":437.3857544469,"2714":415.2334315622,"2715":393.4324734763,"2716":371.7775494742,"2717":350.5312127497,"2718":329.4591497223,"2719":308.8512839436,"2720":288.4452436966,"2721":268.5571786951,"2722":248.8976945468,"2723":229.8079194291,"2724":210.9725783818,"2725":192.7564317691,"2726":174.8195683089,"2727":157.5489410096,"2728":140.581343742,"2729":124.3243950318,"2730":108.3930273116,"2731":93.21391594,"2732":78.381651597,"2733":64.340282582,"2734":50.6656577875,"2735":37.8174459977,"2736":25.3544282483,"2737":13.7500797058,"2738":2.5478548389,"2739":-7.7668333942,"2740":-17.664055315,"2741":-26.6483758764,"2742":-35.2015350377,"2743":-42.8200309189,"2744":-49.995371909,"2745":-56.2179763872,"2746":-61.9871814135,"2747":-66.7893367116,"2748":-71.1296373574,"2749":-74.4923915625,"2750":-77.3866586441,"2751":-79.2967405015,"2752":-80.733551669,"2753":-81.1834229584,"2754":-81.1571077745,"2755":-80.1449930593,"2756":-78.6556553781,"2757":-76.1855490126,"2758":-73.2390665695,"2759":-69.3207169353,"2760":-64.9287181502,"2761":-59.5775891831,"2762":-53.7574072689,"2763":-46.9946174301,"2764":-39.7692219858,"2765":-31.6214609173,"2766":-23.0193672776,"2767":-13.51879047,"2768":-3.5739471687,"2769":7.2419509418,"2770":18.4902961516,"2771":30.5788301565,"2772":43.086285195,"2773":56.3997471733,"2774":70.1169508298,"2775":84.6027986294,"2776":99.4756153676,"2777":115.0766799652,"2778":131.0464135724,"2779":147.7011246935,"2780":164.704749927,"2781":182.3473790355,"2782":200.3177903546,"2783":218.8787100537,"2784":237.744986455,"2785":257.1509452742,"2786":276.8386301838,"2787":297.0130416695,"2788":317.4444367895,"2789":338.3076817563,"2790":359.4021537045,"2791":380.871894456,"2792":402.5461929886,"2793":424.5376982668,"2794":446.7062848296,"2795":469.13276421,"2796":491.7081495198,"2797":514.481095934,"2798":537.3741852585,"2799":560.403724291,"2800":583.5241690657,"2801":606.719413647,"2802":629.9759680391,"2803":653.2453771358,"2804":676.5462581499,"2805":699.7979980352,"2806":723.0512477391,"2807":746.1935544183,"2808":769.3074028588,"2809":792.2489442201,"2810":815.1321715972,"2811":837.782407858,"2812":860.3447045275,"2813":882.6142455531,"2814":904.7665684378,"2815":926.5675265237,"2816":948.2224505258,"2817":969.4687872503,"2818":990.5408502777,"2819":1011.1487160564,"2820":1031.5547563034,"2821":1051.4428213049,"2822":1071.1023054532,"2823":1090.1920805709,"2824":1109.0274216182,"2825":1127.2435682309,"2826":1145.1804316911,"2827":1162.4510589904,"2828":1179.418656258,"2829":1195.6756049682,"2830":1211.6069726884,"2831":1226.78608406,"2832":1241.618348403,"2833":1255.659717418,"2834":1269.3343422125,"2835":1282.1825540023,"2836":1294.6455717517,"2837":1306.2499202942,"2838":1317.4521451611,"2839":1327.7668333942,"2840":1337.664055315,"2841":1346.6483758764,"2842":1355.2015350377,"2843":1362.8200309189,"2844":1369.995371909,"2845":1376.2179763872,"2846":1381.9871814135,"2847":1386.7893367116,"2848":1391.1296373574,"2849":1394.4923915625,"2850":1397.3866586441,"2851":1399.2967405015,"2852":1400.733551669,"2853":1401.1834229584,"2854":1401.1571077745,"2855":1400.1449930593,"2856":1398.6556553781,"2857":1396.1855490126,"2858":1393.2390665695,"2859":1389.3207169353,"2860":1384.9287181502,"2861":1379.5775891831,"2862":1373.7574072689,"2863":1366.9946174301,"2864":1359.7692219858,"2865":1351.6214609173,"2866":1343.0193672776,"2867":1333.51879047,"2868":1323.5739471687,"2869":1312.7580490582,"2870":1301.5097038484,"2871":1289.4211698435,"2872":1276.913714805,"2873":1263.6002528267,"2874":1249.8830491702,"2875":1235.3972013706,"2876":1220.5243846324,"2877":1204.9233200348,"2878":1188.9535864276,"2879":1172.2988753065,"2880":1155.295250073,"2881":1137.6526209645,"2882":1119.6822096454,"2883":1101.1212899463,"2884":1082.255013545,"2885":1062.8490547258,"2886":1043.1613698162,"2887":1022.9869583305,"2888":1002.5555632105,"2889":981.6923182437,"2890":960.5978462955,"2891":939.128105544,"2892":917.4538070114,"2893":895.4623017332,"2894":873.2937151704,"2895":850.86723579,"2896":828.2918504802,"2897":805.518904066,"2898":782.6258147415,"2899":759.596275709,"2900":736.4758309343,"2901":713.280586353,"2902":690.0240319609,"2903":666.7546228642,"2904":643.4537418501,"2905":620.2020019648,"2906":596.9487522609,"2907":573.8064455817,"2908":550.6925971412,"2909":527.7510557799,"2910":504.8678284028,"2911":482.217592142,"2912":459.6552954725,"2913":437.3857544469,"2914":415.2334315622,"2915":393.4324734763,"2916":371.7775494742,"2917":350.5312127497,"2918":329.4591497223,"2919":308.8512839436,"2920":288.4452436966,"2921":268.5571786951,"2922":248.8976945468,"2923":229.8079194291,"2924":210.9725783818,"2925":192.7564317691,"2926":174.8195683089,"2927":157.5489410096,"2928":140.581343742,"2929":124.3243950318,"2930":108.3930273116,"2931":93.21391594,"2932":78.381651597,"2933":64.340282582,"2934":50.6656577875,"2935":37.8174459977,"2936":25.3544282483,"2937":13.7500797058,"2938":2.5478548389,"2939":-7.7668333942,"2940":-17.664055315,"2941":-26.6483758764,"2942":-35.2015350377,"2943":-42.8200309189,"2944":-49.995371909,"2945":-56.2179763872,"2946":-61.9871814135,"2947":-66.7893367116,"2948":-71.1296373574,"2949":-74.4923915625,"2950":-77.3866586441,"2951":-79.2967405015,"2952":-80.733551669,"2953":-81.1834229584,"2954":-81.1571077745,"2955":-80.1449930593,"2956":-78.6556553781,"2957":-76.1855490126,"2958":-73.2390665695,"2959":-69.3207169353,"2960":-64.9287181502,"2961":-59.5775891831,"2962":-53.7574072689,"2963":-46.9946174301,"2964":-39.7692219858,"2965":-31.6214609173,"2966":-23.0193672776,"2967":-13.51879047,"2968":-3.5739471687,"2969":7.2419509418,"2970":18.4902961516,"2971":30.5788301565,"2972":43.086285195,"2973":56.3997471733,"2974":70.1169508298,"2975":84.6027986294,"2976":99.4756153676,"2977":115.0766799652,"2978":131.0464135724,"2979":147.7011246935,"2980":164.704749927,"2981":182.3473790355,"2982":200.3177903546,"2983":218.8787100537,"2984":237.744986455,"2985":257.1509452742,"2986":276.8386301838,"2987":297.0130416695,"2988":317.4444367895,"2989":338.3076817563,"2990":359.4021537045,"2991":380.871894456,"2992":402.5461929886,"2993":424.5376982668,"2994":446.7062848296,"2995":469.13276421,"2996":491.7081495198,"2997":514.481095934,"2998":537.3741852585,"2999":560.403724291,"3000":583.5241690657,"3001":606.719413647,"3002":629.9759680391,"3003":653.2453771358,"3004":676.5462581499,"3005":699.7979980352,"3006":723.0512477391,"3007":746.1935544183,"3008":769.3074028588,"3009":792.2489442201,"3010":815.1321715972,"3011":837.782407858,"3012":860.3447045275,"3013":882.6142455531,"3014":904.7665684378,"3015":926.5675265237,"3016":948.2224505258,"3017":969.4687872503,"3018":990.5408502777,"3019":1011.1487160564,"3020":1031.5547563034,"3021":1051.4428213049,"3022":1071.1023054532,"3023":1090.1920805709,"3024":1109.0274216182,"3025":1127.2435682309,"3026":1145.1804316911,"3027":1162.4510589904,"3028":1179.418656258,"3029":1195.6756049682,"3030":1211.6069726884,"3031":1226.78608406,"3032":1241.618348403,"3033":1255.659717418,"3034":1269.3343422125,"3035":1282.1825540023,"3036":1294.6455717517,"3037":1306.2499202942,"3038":1317.4521451611,"3039":1327.7668333942,"3040":1337.664055315,"3041":1346.6483758764,"3042":1355.2015350377,"3043":1362.8200309189,"3044":1369.995371909,"3045":1376.2179763872,"3046":1381.9871814135,"3047":1386.7893367116,"3048":1391.1296373574,"3049":1394.4923915625,"3050":1397.3866586441,"3051":1399.2967405015,"3052":1400.733551669,"3053":1401.1834229584,"3054":1401.1571077745,"3055":1400.1449930593,"3056":1398.6556553781,"3057":1396.1855490126,"3058":1393.2390665695,"3059":1389.3207169353,"3060":1384.9287181502,"3061":1379.5775891831,"3062":1373.7574072689,"3063":1366.9946174301,"3064":1359.7692219858,"3065":1351.6214609173,"3066":1343.0193672776,"3067":1333.51879047,"3068":1323.5739471687,"3069":1312.7580490582,"3070":1301.5097038484,"3071":1289.4211698435,"3072":1276.913714805,"3073":1263.6002528267,"3074":1249.8830491702,"3075":1235.3972013706,"3076":1220.5243846324,"3077":1204.9233200348,"3078":1188.9535864276,"3079":1172.2988753065,"3080":1155.295250073,"3081":1137.6526209645,"3082":1119.6822096454,"3083":1101.1212899463,"3084":1082.255013545,"3085":1062.8490547258,"3086":1043.1613698162,"3087":1022.9869583305,"3088":1002.5555632105,"3089":981.6923182437,"3090":960.5978462955,"3091":939.128105544,"3092":917.4538070114,"3093":895.4623017332,"3094":873.2937151704,"3095":850.86723579,"3096":828.2918504802,"3097":805.518904066,"3098":782.6258147414,"3099":759.596275709,"3100":736.4758309343,"3101":713.280586353,"3102":690.0240319609,"3103":666.7546228642,"3104":643.4537418501,"3105":620.2020019648,"3106":596.9487522609,"3107":573.8064455817,"3108":550.6925971412,"3109":527.7510557799,"3110":504.8678284028,"3111":482.217592142,"3112":459.6552954725,"3113":437.3857544469,"3114":415.2334315622,"3115":393.4324734763,"3116":371.7775494742,"3117":350.5312127497,"3118":329.4591497223,"3119":308.8512839436,"3120":288.4452436966,"3121":268.5571786951,"3122":248.8976945468,"3123":229.8079194291,"3124":210.9725783818,"3125":192.7564317691,"3126":174.8195683089,"3127":157.5489410096,"3128":140.581343742,"3129":124.3243950318,"3130":108.3930273116,"3131":93.21391594,"3132":78.381651597,"3133":64.340282582,"3134":50.6656577875,"3135":37.8174459977,"3136":25.3544282483,"3137":13.7500797058,"3138":2.5478548389,"3139":-7.7668333942,"3140":-17.664055315,"3141":-26.6483758764,"3142":-35.2015350377,"3143":-42.8200309189,"3144":-49.995371909,"3145":-56.2179763872,"3146":-61.9871814135,"3147":-66.7893367116,"3148":-71.1296373574,"3149":-74.4923915625,"3150":-77.3866586441,"3151":-79.2967405015,"3152":-80.733551669,"3153":-81.1834229584,"3154":-81.1571077745,"3155":-80.1449930593,"3156":-78.655655378,"3157":-76.1855490126,"3158":-73.2390665695,"3159":-69.3207169353,"3160":-64.9287181502,"3161":-59.5775891831,"3162":-53.7574072689,"3163":-46.9946174301,"3164":-39.7692219858,"3165":-31.6214609173,"3166":-23.0193672776,"3167":-13.51879047,"3168":-3.5739471687,"3169":7.2419509418,"3170":18.4902961516,"3171":30.5788301565,"3172":43.086285195,"3173":56.3997471733,"3174":70.1169508298,"3175":84.6027986294,"3176":99.4756153676,"3177":115.0766799652,"3178":131.0464135724,"3179":147.7011246935,"3180":164.704749927,"3181":182.3473790355,"3182":200.3177903546,"3183":218.8787100537,"3184":237.744986455,"3185":257.1509452742,"3186":276.8386301838,"3187":297.0130416695,"3188":317.4444367895,"3189":338.3076817563,"3190":359.4021537045,"3191":380.871894456,"3192":402.5461929886,"3193":424.5376982668,"3194":446.7062848296,"3195":469.13276421,"3196":491.7081495198,"3197":514.481095934,"3198":537.3741852586,"3199":560.403724291,"3200":583.5241690657,"3201":606.719413647,"3202":629.975968039,"3203":653.2453771358,"3204":676.5462581499,"3205":699.7979980352,"3206":723.0512477391,"3207":746.1935544183,"3208":769.3074028588,"3209":792.2489442201,"3210":815.1321715972,"3211":837.782407858,"3212":860.3447045275,"3213":882.6142455531,"3214":904.7665684379,"3215":926.5675265237,"3216":948.2224505258,"3217":969.4687872503,"3218":990.5408502777,"3219":1011.1487160564,"3220":1031.5547563034,"3221":1051.4428213049,"3222":1071.1023054532,"3223":1090.1920805709,"3224":1109.0274216182,"3225":1127.2435682309,"3226":1145.1804316911,"3227":1162.4510589904,"3228":1179.418656258,"3229":1195.6756049682,"3230":1211.6069726885,"3231":1226.78608406,"3232":1241.618348403,"3233":1255.659717418,"3234":1269.3343422125,"3235":1282.1825540023,"3236":1294.6455717517,"3237":1306.2499202942,"3238":1317.4521451611,"3239":1327.7668333942,"3240":1337.664055315,"3241":1346.6483758764,"3242":1355.2015350377,"3243":1362.8200309189,"3244":1369.995371909,"3245":1376.2179763872,"3246":1381.9871814135,"3247":1386.7893367116,"3248":1391.1296373574,"3249":1394.4923915625,"3250":1397.3866586441,"3251":1399.2967405015,"3252":1400.733551669,"3253":1401.1834229584,"3254":1401.1571077745,"3255":1400.1449930593,"3256":1398.6556553781,"3257":1396.1855490126,"3258":1393.2390665695,"3259":1389.3207169353,"3260":1384.9287181502,"3261":1379.5775891831,"3262":1373.7574072689,"3263":1366.9946174301,"3264":1359.7692219858,"3265":1351.6214609173,"3266":1343.0193672776,"3267":1333.51879047,"3268":1323.5739471687,"3269":1312.7580490582,"3270":1301.5097038485,"3271":1289.4211698435,"3272":1276.913714805,"3273":1263.6002528267,"3274":1249.8830491702,"3275":1235.3972013706,"3276":1220.5243846323,"3277":1204.9233200348,"3278":1188.9535864276,"3279":1172.2988753065,"3280":1155.295250073,"3281":1137.6526209645,"3282":1119.6822096454,"3283":1101.1212899463,"3284":1082.255013545,"3285":1062.8490547258,"3286":1043.1613698162,"3287":1022.9869583305,"3288":1002.5555632105,"3289":981.6923182437,"3290":960.5978462956,"3291":939.128105544,"3292":917.4538070114,"3293":895.4623017332,"3294":873.2937151704,"3295":850.86723579,"3296":828.2918504802,"3297":805.518904066,"3298":782.6258147414,"3299":759.596275709,"3300":736.4758309343,"3301":713.280586353,"3302":690.024031961,"3303":666.7546228642,"3304":643.4537418501,"3305":620.2020019648,"3306":596.9487522609,"3307":573.8064455817,"3308":550.6925971412,"3309":527.7510557799,"3310":504.8678284028,"3311":482.217592142,"3312":459.6552954725,"3313":437.3857544469,"3314":415.2334315621,"3315":393.4324734763,"3316":371.7775494742,"3317":350.5312127497,"3318":329.4591497223,"3319":308.8512839436,"3320":288.4452436966,"3321":268.5571786951,"3322":248.8976945468,"3323":229.8079194291,"3324":210.9725783818,"3325":192.7564317691,"3326":174.8195683089,"3327":157.5489410096,"3328":140.581343742,"3329":124.3243950318,"3330":108.3930273115,"3331":93.21391594,"3332":78.381651597,"3333":64.340282582,"3334":50.6656577875,"3335":37.8174459977,"3336":25.3544282483,"3337":13.7500797058,"3338":2.5478548389,"3339":-7.7668333942,"3340":-17.664055315,"3341":-26.6483758764,"3342":-35.2015350377,"3343":-42.8200309189,"3344":-49.995371909,"3345":-56.2179763872,"3346":-61.9871814135,"3347":-66.7893367116,"3348":-71.1296373574,"3349":-74.4923915625,"3350":-77.3866586441,"3351":-79.2967405015,"3352":-80.733551669,"3353":-81.1834229584,"3354":-81.1571077745,"3355":-80.1449930593,"3356":-78.6556553781,"3357":-76.1855490126,"3358":-73.2390665695,"3359":-69.3207169353,"3360":-64.9287181502,"3361":-59.5775891831,"3362":-53.7574072689,"3363":-46.9946174301,"3364":-39.7692219858,"3365":-31.6214609173,"3366":-23.0193672776,"3367":-13.51879047,"3368":-3.5739471687,"3369":7.2419509418,"3370":18.4902961516,"3371":30.5788301565,"3372":43.086285195,"3373":56.3997471733,"3374":70.1169508298,"3375":84.6027986294,"3376":99.4756153677,"3377":115.0766799652,"3378":131.0464135724,"3379":147.7011246935,"3380":164.704749927,"3381":182.3473790355,"3382":200.3177903546,"3383":218.8787100537,"3384":237.744986455,"3385":257.1509452742,"3386":276.8386301838,"3387":297.0130416695,"3388":317.4444367895,"3389":338.3076817563,"3390":359.4021537044,"3391":380.871894456,"3392":402.5461929886,"3393":424.5376982668,"3394":446.7062848296,"3395":469.13276421,"3396":491.7081495198,"3397":514.481095934,"3398":537.3741852586,"3399":560.403724291,"3400":583.5241690657,"3401":606.719413647,"3402":629.975968039,"3403":653.2453771358,"3404":676.5462581499,"3405":699.7979980352,"3406":723.0512477391,"3407":746.1935544183,"3408":769.3074028588,"3409":792.2489442201,"3410":815.1321715972,"3411":837.782407858,"3412":860.3447045275,"3413":882.6142455531,"3414":904.7665684379,"3415":926.5675265237,"3416":948.2224505258,"3417":969.4687872503,"3418":990.5408502777,"3419":1011.1487160564,"3420":1031.5547563034,"3421":1051.4428213049,"3422":1071.1023054532,"3423":1090.1920805709,"3424":1109.0274216182,"3425":1127.2435682309,"3426":1145.1804316911,"3427":1162.4510589904,"3428":1179.418656258,"3429":1195.6756049682,"3430":1211.6069726885,"3431":1226.78608406,"3432":1241.618348403,"3433":1255.659717418,"3434":1269.3343422125,"3435":1282.1825540023,"3436":1294.6455717517,"3437":1306.2499202942,"3438":1317.4521451611,"3439":1327.7668333942,"3440":1337.664055315,"3441":1346.6483758764,"3442":1355.2015350377,"3443":1362.8200309189,"3444":1369.995371909,"3445":1376.2179763872,"3446":1381.9871814135,"3447":1386.7893367116,"3448":1391.1296373574,"3449":1394.4923915625,"3450":1397.3866586441,"3451":1399.2967405015,"3452":1400.733551669,"3453":1401.1834229584,"3454":1401.1571077745,"3455":1400.1449930593,"3456":1398.655655378,"3457":1396.1855490126,"3458":1393.2390665695,"3459":1389.3207169353,"3460":1384.9287181502,"3461":1379.5775891831,"3462":1373.7574072689,"3463":1366.9946174301,"3464":1359.7692219858,"3465":1351.6214609173,"3466":1343.0193672776,"3467":1333.51879047,"3468":1323.5739471687,"3469":1312.7580490582,"3470":1301.5097038485,"3471":1289.4211698435,"3472":1276.913714805,"3473":1263.6002528267,"3474":1249.8830491702,"3475":1235.3972013706,"3476":1220.5243846323,"3477":1204.9233200348,"3478":1188.9535864275,"3479":1172.2988753065,"3480":1155.295250073,"3481":1137.6526209645,"3482":1119.6822096454,"3483":1101.1212899463,"3484":1082.255013545,"3485":1062.8490547258,"3486":1043.1613698162,"3487":1022.9869583305,"3488":1002.5555632105,"3489":981.6923182437,"3490":960.5978462956,"3491":939.128105544,"3492":917.4538070114,"3493":895.4623017332,"3494":873.2937151704,"3495":850.86723579,"3496":828.2918504802,"3497":805.518904066,"3498":782.6258147414,"3499":759.596275709,"3500":736.4758309343,"3501":713.280586353,"3502":690.024031961,"3503":666.7546228642,"3504":643.4537418501,"3505":620.2020019648,"3506":596.9487522609,"3507":573.8064455817,"3508":550.6925971412,"3509":527.7510557799,"3510":504.8678284028,"3511":482.217592142,"3512":459.6552954725,"3513":437.3857544469,"3514":415.2334315621,"3515":393.4324734763,"3516":371.7775494742,"3517":350.5312127497,"3518":329.4591497223,"3519":308.8512839436,"3520":288.4452436966,"3521":268.5571786951,"3522":248.8976945468,"3523":229.8079194291,"3524":210.9725783818,"3525":192.7564317691,"3526":174.8195683089,"3527":157.5489410096,"3528":140.581343742,"3529":124.3243950318,"3530":108.3930273115,"3531":93.21391594,"3532":78.381651597,"3533":64.340282582,"3534":50.6656577875,"3535":37.8174459977,"3536":25.3544282483,"3537":13.7500797058,"3538":2.5478548389,"3539":-7.7668333942,"3540":-17.664055315,"3541":-26.6483758764,"3542":-35.2015350377,"3543":-42.8200309189,"3544":-49.995371909,"3545":-56.2179763872,"3546":-61.9871814135,"3547":-66.7893367116,"3548":-71.1296373574,"3549":-74.4923915625,"3550":-77.3866586441,"3551":-79.2967405015,"3552":-80.733551669,"3553":-81.1834229584,"3554":-81.1571077745,"3555":-80.1449930593,"3556":-78.655655378,"3557":-76.1855490126,"3558":-73.2390665695,"3559":-69.3207169353,"3560":-64.9287181502,"3561":-59.5775891831,"3562":-53.7574072689,"3563":-46.9946174301,"3564":-39.7692219858,"3565":-31.6214609173,"3566":-23.0193672776,"3567":-13.51879047,"3568":-3.5739471687,"3569":7.2419509418,"3570":18.4902961516,"3571":30.5788301565,"3572":43.086285195,"3573":56.3997471733,"3574":70.1169508298,"3575":84.6027986294,"3576":99.4756153677,"3577":115.0766799652,"3578":131.0464135724,"3579":147.7011246935,"3580":164.704749927,"3581":182.3473790355,"3582":200.3177903546,"3583":218.8787100537,"3584":237.744986455,"3585":257.1509452742,"3586":276.8386301838,"3587":297.0130416695,"3588":317.4444367895,"3589":338.3076817563,"3590":359.4021537044,"3591":380.871894456,"3592":402.5461929886,"3593":424.5376982668,"3594":446.7062848296,"3595":469.13276421,"3596":491.7081495198,"3597":514.481095934,"3598":537.3741852586,"3599":560.403724291,"3600":583.5241690657,"3601":606.719413647,"3602":629.975968039,"3603":653.2453771358,"3604":676.5462581499,"3605":699.7979980352,"3606":723.0512477391,"3607":746.1935544183,"3608":769.3074028588,"3609":792.2489442201,"3610":815.1321715972,"3611":837.782407858,"3612":860.3447045275,"3613":882.6142455531,"3614":904.7665684379,"3615":926.5675265237,"3616":948.2224505258,"3617":969.4687872503,"3618":990.5408502777,"3619":1011.1487160564,"3620":1031.5547563034,"3621":1051.4428213049,"3622":1071.1023054532,"3623":1090.1920805709,"3624":1109.0274216182,"3625":1127.2435682309,"3626":1145.1804316911,"3627":1162.4510589904,"3628":1179.418656258,"3629":1195.6756049682,"3630":1211.6069726885,"3631":1226.78608406,"3632":1241.618348403,"3633":1255.659717418,"3634":1269.3343422125,"3635":1282.1825540023,"3636":1294.6455717517,"3637":1306.2499202942,"3638":1317.4521451611,"3639":1327.7668333942,"3640":1337.664055315,"3641":1346.6483758764,"3642":1355.2015350377,"3643":1362.8200309189,"3644":1369.995371909,"3645":1376.2179763872,"3646":1381.9871814135,"3647":1386.7893367116,"3648":1391.1296373574,"3649":1394.4923915625,"3650":1397.3866586441,"3651":1399.2967405015,"3652":1400.733551669,"3653":1401.1834229584,"3654":1401.1571077745,"3655":1400.1449930593,"3656":1398.655655378,"3657":1396.1855490126,"3658":1393.2390665695,"3659":1389.3207169353,"3660":1384.9287181502,"3661":1379.5775891831,"3662":1373.7574072689,"3663":1366.9946174301,"3664":1359.7692219858,"3665":1351.6214609173,"3666":1343.0193672776,"3667":1333.51879047,"3668":1323.5739471687,"3669":1312.7580490582,"3670":1301.5097038485,"3671":1289.4211698435,"3672":1276.913714805,"3673":1263.6002528267,"3674":1249.8830491702,"3675":1235.3972013706,"3676":1220.5243846323,"3677":1204.9233200348,"3678":1188.9535864275,"3679":1172.2988753065,"3680":1155.295250073,"3681":1137.6526209645,"3682":1119.6822096454,"3683":1101.1212899463,"3684":1082.255013545,"3685":1062.8490547258,"3686":1043.1613698162,"3687":1022.9869583305,"3688":1002.5555632105,"3689":981.6923182437,"3690":960.5978462956,"3691":939.128105544,"3692":917.4538070114,"3693":895.4623017332,"3694":873.2937151704,"3695":850.86723579,"3696":828.2918504802,"3697":805.518904066,"3698":782.6258147414,"3699":759.596275709,"3700":736.4758309343,"3701":713.280586353,"3702":690.024031961,"3703":666.7546228642,"3704":643.4537418501,"3705":620.2020019648,"3706":596.9487522609,"3707":573.8064455817,"3708":550.6925971412,"3709":527.7510557799,"3710":504.8678284028,"3711":482.217592142,"3712":459.6552954725,"3713":437.3857544469,"3714":415.2334315621,"3715":393.4324734763,"3716":371.7775494742,"3717":350.5312127497,"3718":329.4591497223,"3719":308.8512839436,"3720":288.4452436966,"3721":268.5571786951,"3722":248.8976945468,"3723":229.8079194291,"3724":210.9725783818,"3725":192.7564317691,"3726":174.8195683089,"3727":157.5489410096,"3728":140.581343742,"3729":124.3243950318,"3730":108.3930273115,"3731":93.21391594,"3732":78.381651597,"3733":64.340282582,"3734":50.6656577875,"3735":37.8174459977,"3736":25.3544282483,"3737":13.7500797058,"3738":2.5478548389,"3739":-7.7668333942,"3740":-17.664055315,"3741":-26.6483758764,"3742":-35.2015350377,"3743":-42.8200309189,"3744":-49.995371909,"3745":-56.2179763872,"3746":-61.9871814135,"3747":-66.7893367116,"3748":-71.1296373574,"3749":-74.4923915625,"3750":-77.3866586441,"3751":-79.2967405015,"3752":-80.733551669,"3753":-81.1834229584,"3754":-81.1571077745,"3755":-80.1449930593,"3756":-78.655655378,"3757":-76.1855490126,"3758":-73.2390665695,"3759":-69.3207169353,"3760":-64.9287181502,"3761":-59.5775891831,"3762":-53.7574072689,"3763":-46.9946174301,"3764":-39.7692219858,"3765":-31.6214609173,"3766":-23.0193672776,"3767":-13.51879047,"3768":-3.5739471687,"3769":7.2419509418,"3770":18.4902961516,"3771":30.5788301565,"3772":43.086285195,"3773":56.3997471733,"3774":70.1169508298,"3775":84.6027986294,"3776":99.4756153677,"3777":115.0766799652,"3778":131.0464135724,"3779":147.7011246935,"3780":164.704749927,"3781":182.3473790355,"3782":200.3177903546,"3783":218.8787100537,"3784":237.744986455,"3785":257.1509452742,"3786":276.8386301838,"3787":297.0130416695,"3788":317.4444367895,"3789":338.3076817563,"3790":359.4021537044,"3791":380.871894456,"3792":402.5461929886,"3793":424.5376982668,"3794":446.7062848296,"3795":469.13276421,"3796":491.7081495198,"3797":514.481095934,"3798":537.3741852586,"3799":560.403724291,"3800":583.5241690657,"3801":606.719413647,"3802":629.975968039,"3803":653.2453771358,"3804":676.5462581499,"3805":699.7979980352,"3806":723.0512477391,"3807":746.1935544183,"3808":769.3074028588,"3809":792.2489442201,"3810":815.1321715972,"3811":837.782407858,"3812":860.3447045275,"3813":882.6142455531,"3814":904.7665684379,"3815":926.5675265237,"3816":948.2224505258,"3817":969.4687872503,"3818":990.5408502777,"3819":1011.1487160564,"3820":1031.5547563034,"3821":1051.4428213049,"3822":1071.1023054532,"3823":1090.1920805709,"3824":1109.0274216182,"3825":1127.2435682309,"3826":1145.1804316911,"3827":1162.4510589904,"3828":1179.418656258,"3829":1195.6756049682,"3830":1211.6069726885,"3831":1226.78608406,"3832":1241.618348403,"3833":1255.659717418,"3834":1269.3343422125,"3835":1282.1825540023,"3836":1294.6455717517,"3837":1306.2499202942,"3838":1317.4521451611,"3839":1327.7668333942,"3840":1337.664055315,"3841":1346.6483758764,"3842":1355.2015350377,"3843":1362.8200309189,"3844":1369.995371909,"3845":1376.2179763872,"3846":1381.9871814135,"3847":1386.7893367116,"3848":1391.1296373574,"3849":1394.4923915625,"3850":1397.3866586441,"3851":1399.2967405015,"3852":1400.733551669,"3853":1401.1834229584,"3854":1401.1571077745,"3855":1400.1449930593,"3856":1398.655655378,"3857":1396.1855490126,"3858":1393.2390665695,"3859":1389.3207169353,"3860":1384.9287181502,"3861":1379.5775891831,"3862":1373.7574072689,"3863":1366.9946174301,"3864":1359.7692219858,"3865":1351.6214609173,"3866":1343.0193672776,"3867":1333.51879047,"3868":1323.5739471687,"3869":1312.7580490582,"3870":1301.5097038485,"3871":1289.4211698435,"3872":1276.913714805,"3873":1263.6002528267,"3874":1249.8830491702,"3875":1235.3972013706,"3876":1220.5243846323,"3877":1204.9233200348,"3878":1188.9535864275,"3879":1172.2988753065,"3880":1155.295250073,"3881":1137.6526209645,"3882":1119.6822096454,"3883":1101.1212899463,"3884":1082.255013545,"3885":1062.8490547258,"3886":1043.1613698162,"3887":1022.9869583305,"3888":1002.5555632105,"3889":981.6923182437,"3890":960.5978462956,"3891":939.128105544,"3892":917.4538070114,"3893":895.4623017332,"3894":873.2937151704,"3895":850.86723579,"3896":828.2918504802,"3897":805.518904066,"3898":782.6258147414,"3899":759.596275709,"3900":736.4758309343,"3901":713.280586353,"3902":690.024031961,"3903":666.7546228642,"3904":643.4537418501,"3905":620.2020019648,"3906":596.9487522609,"3907":573.8064455817,"3908":550.6925971412,"3909":527.7510557799,"3910":504.8678284028,"3911":482.217592142,"3912":459.6552954725,"3913":437.3857544469,"3914":415.2334315621,"3915":393.4324734763,"3916":371.7775494742,"3917":350.5312127497,"3918":329.4591497223,"3919":308.8512839436,"3920":288.4452436966,"3921":268.5571786951,"3922":248.8976945468,"3923":229.8079194291,"3924":210.9725783818,"3925":192.7564317691,"3926":174.8195683089,"3927":157.5489410096,"3928":140.581343742,"3929":124.3243950318,"3930":108.3930273115,"3931":93.21391594,"3932":78.381651597,"3933":64.340282582,"3934":50.6656577875,"3935":37.8174459977,"3936":25.3544282483,"3937":13.7500797058,"3938":2.5478548389,"3939":-7.7668333942,"3940":-17.664055315,"3941":-26.6483758764,"3942":-35.2015350377,"3943":-42.8200309189,"3944":-49.995371909,"3945":-56.2179763872,"3946":-61.9871814135,"3947":-66.7893367116,"3948":-71.1296373574,"3949":-74.4923915625,"3950":-77.3866586441,"3951":-79.2967405015,"3952":-80.733551669,"3953":-81.1834229584,"3954":-81.1571077745,"3955":-80.1449930593,"3956":-78.655655378,"3957":-76.1855490126,"3958":-73.2390665695,"3959":-69.3207169353,"3960":-64.9287181502,"3961":-59.5775891831,"3962":-53.7574072689,"3963":-46.9946174301,"3964":-39.7692219858,"3965":-31.6214609173,"3966":-23.0193672776,"3967":-13.51879047,"3968":-3.5739471687,"3969":7.2419509418,"3970":18.4902961516,"3971":30.5788301565,"3972":43.086285195,"3973":56.3997471733,"3974":70.1169508298,"3975":84.6027986294,"3976":99.4756153677,"3977":115.0766799652,"3978":131.0464135724,"3979":147.7011246935,"3980":164.704749927,"3981":182.3473790355,"3982":200.3177903546,"3983":218.8787100537,"3984":237.744986455,"3985":257.1509452742,"3986":276.8386301838,"3987":297.0130416695,"3988":317.4444367895,"3989":338.3076817563,"3990":359.4021537044,"3991":380.871894456,"3992":402.5461929886,"3993":424.5376982668,"3994":446.7062848296,"3995":469.13276421,"3996":491.7081495198,"3997":514.481095934,"3998":537.3741852586,"3999":560.403724291,"4000":583.5241690657,"4001":606.719413647,"4002":629.975968039,"4003":653.2453771358,"4004":676.5462581499,"4005":699.7979980352,"4006":723.0512477391,"4007":746.1935544183,"4008":769.3074028588,"4009":792.2489442201,"4010":815.1321715972,"4011":837.782407858,"4012":860.3447045275,"4013":882.6142455531,"4014":904.7665684379,"4015":926.5675265237,"4016":948.2224505258,"4017":969.4687872503,"4018":990.5408502777,"4019":1011.1487160564,"4020":1031.5547563034,"4021":1051.4428213049,"4022":1071.1023054532,"4023":1090.1920805709,"4024":1109.0274216182,"4025":1127.2435682309,"4026":1145.1804316911,"4027":1162.4510589904,"4028":1179.418656258,"4029":1195.6756049682,"4030":1211.6069726885,"4031":1226.78608406,"4032":1241.618348403,"4033":1255.659717418,"4034":1269.3343422125,"4035":1282.1825540023,"4036":1294.6455717517,"4037":1306.2499202942,"4038":1317.4521451611,"4039":1327.7668333942,"4040":1337.664055315,"4041":1346.6483758764,"4042":1355.2015350377,"4043":1362.8200309189,"4044":1369.995371909,"4045":1376.2179763872,"4046":1381.9871814135,"4047":1386.7893367116,"4048":1391.1296373574,"4049":1394.4923915625,"4050":1397.3866586441,"4051":1399.2967405015,"4052":1400.733551669,"4053":1401.1834229584,"4054":1401.1571077745,"4055":1400.1449930593,"4056":1398.655655378,"4057":1396.1855490126,"4058":1393.2390665695,"4059":1389.3207169353,"4060":1384.9287181502,"4061":1379.5775891831,"4062":1373.7574072689,"4063":1366.9946174301,"4064":1359.7692219858,"4065":1351.6214609173,"4066":1343.0193672776,"4067":1333.51879047,"4068":1323.5739471687,"4069":1312.7580490582,"4070":1301.5097038485,"4071":1289.4211698435,"4072":1276.913714805,"4073":1263.6002528267,"4074":1249.8830491702,"4075":1235.3972013706,"4076":1220.5243846323,"4077":1204.9233200348,"4078":1188.9535864275,"4079":1172.2988753065,"4080":1155.295250073,"4081":1137.6526209645,"4082":1119.6822096454,"4083":1101.1212899463,"4084":1082.255013545,"4085":1062.8490547258,"4086":1043.1613698162,"4087":1022.9869583305,"4088":1002.5555632105,"4089":981.6923182437,"4090":960.5978462956,"4091":939.128105544,"4092":917.4538070114,"4093":895.4623017332,"4094":873.2937151704,"4095":850.86723579,"4096":828.2918504802,"4097":805.518904066,"4098":782.6258147414,"4099":759.596275709,"4100":736.4758309343,"4101":713.280586353,"4102":690.024031961,"4103":666.7546228642,"4104":643.4537418501,"4105":620.2020019648,"4106":596.9487522609,"4107":573.8064455817,"4108":550.6925971412,"4109":527.7510557799,"4110":504.8678284028,"4111":482.217592142,"4112":459.6552954725,"4113":437.3857544469,"4114":415.2334315621,"4115":393.4324734763,"4116":371.7775494742,"4117":350.5312127497,"4118":329.4591497223,"4119":308.8512839436,"4120":288.4452436966,"4121":268.5571786951,"4122":248.8976945468,"4123":229.8079194291,"4124":210.9725783818,"4125":192.7564317691,"4126":174.8195683089,"4127":157.5489410096,"4128":140.581343742,"4129":124.3243950318,"4130":108.3930273115,"4131":93.21391594,"4132":78.381651597,"4133":64.340282582,"4134":50.6656577875,"4135":37.8174459977,"4136":25.3544282483,"4137":13.7500797058,"4138":2.5478548389,"4139":-7.7668333942,"4140":-17.664055315,"4141":-26.6483758764,"4142":-35.2015350377,"4143":-42.8200309189,"4144":-49.995371909,"4145":-56.2179763872,"4146":-61.9871814135,"4147":-66.7893367116,"4148":-71.1296373574,"4149":-74.4923915625,"4150":-77.3866586441,"4151":-79.2967405015,"4152":-80.733551669,"4153":-81.1834229584,"4154":-81.1571077745,"4155":-80.1449930593,"4156":-78.655655378,"4157":-76.1855490126,"4158":-73.2390665695,"4159":-69.3207169353,"4160":-64.9287181502,"4161":-59.5775891831,"4162":-53.7574072689,"4163":-46.9946174301,"4164":-39.7692219858,"4165":-31.6214609173,"4166":-23.0193672776,"4167":-13.51879047,"4168":-3.5739471687,"4169":7.2419509418,"4170":18.4902961516,"4171":30.5788301565,"4172":43.086285195,"4173":56.3997471733,"4174":70.1169508298,"4175":84.6027986294,"4176":99.4756153677,"4177":115.0766799652,"4178":131.0464135724,"4179":147.7011246935,"4180":164.704749927,"4181":182.3473790355,"4182":200.3177903546,"4183":218.8787100537,"4184":237.744986455,"4185":257.1509452742,"4186":276.8386301838,"4187":297.0130416695,"4188":317.4444367895,"4189":338.3076817563,"4190":359.4021537044,"4191":380.871894456,"4192":402.5461929886,"4193":424.5376982668,"4194":446.7062848296,"4195":469.13276421,"4196":491.7081495198,"4197":514.481095934,"4198":537.3741852586,"4199":560.403724291,"4200":583.5241690657,"4201":606.719413647,"4202":629.975968039,"4203":653.2453771358,"4204":676.5462581499,"4205":699.7979980352,"4206":723.0512477391,"4207":746.1935544183,"4208":769.3074028588,"4209":792.2489442201,"4210":815.1321715972,"4211":837.782407858,"4212":860.3447045275,"4213":882.6142455531,"4214":904.7665684379,"4215":926.5675265237,"4216":948.2224505258,"4217":969.4687872503,"4218":990.5408502777,"4219":1011.1487160564,"4220":1031.5547563034,"4221":1051.4428213049,"4222":1071.1023054532,"4223":1090.1920805709,"4224":1109.0274216182,"4225":1127.2435682309,"4226":1145.1804316911,"4227":1162.4510589904,"4228":1179.418656258,"4229":1195.6756049682,"4230":1211.6069726885,"4231":1226.78608406,"4232":1241.618348403,"4233":1255.659717418,"4234":1269.3343422125,"4235":1282.1825540023,"4236":1294.6455717517,"4237":1306.2499202942,"4238":1317.4521451611,"4239":1327.7668333942,"4240":1337.664055315,"4241":1346.6483758764,"4242":1355.2015350377,"4243":1362.8200309189,"4244":1369.995371909,"4245":1376.2179763872,"4246":1381.9871814135,"4247":1386.7893367116,"4248":1391.1296373574,"4249":1394.4923915625,"4250":1397.3866586441,"4251":1399.2967405015,"4252":1400.733551669,"4253":1401.1834229584,"4254":1401.1571077745,"4255":1400.1449930593,"4256":1398.655655378,"4257":1396.1855490126,"4258":1393.2390665695,"4259":1389.3207169353,"4260":1384.9287181502,"4261":1379.5775891831,"4262":1373.7574072689,"4263":1366.9946174301,"4264":1359.7692219858,"4265":1351.6214609173,"4266":1343.0193672776,"4267":1333.51879047,"4268":1323.5739471687,"4269":1312.7580490582,"4270":1301.5097038485,"4271":1289.4211698435,"4272":1276.913714805,"4273":1263.6002528267,"4274":1249.8830491702,"4275":1235.3972013706,"4276":1220.5243846323,"4277":1204.9233200348,"4278":1188.9535864275,"4279":1172.2988753065,"4280":1155.295250073,"4281":1137.6526209645,"4282":1119.6822096454,"4283":1101.1212899463,"4284":1082.255013545,"4285":1062.8490547258,"4286":1043.1613698162,"4287":1022.9869583305,"4288":1002.5555632105,"4289":981.6923182437,"4290":960.5978462956,"4291":939.128105544,"4292":917.4538070114,"4293":895.4623017332,"4294":873.2937151704,"4295":850.86723579,"4296":828.2918504802,"4297":805.518904066,"4298":782.6258147414,"4299":759.596275709,"4300":736.4758309343,"4301":713.280586353,"4302":690.024031961,"4303":666.7546228642,"4304":643.4537418501,"4305":620.2020019648,"4306":596.9487522609,"4307":573.8064455817,"4308":550.6925971412,"4309":527.7510557799,"4310":504.8678284028,"4311":482.217592142,"4312":459.6552954725,"4313":437.3857544469,"4314":415.2334315621,"4315":393.4324734763,"4316":371.7775494742,"4317":350.5312127497,"4318":329.4591497223,"4319":308.8512839436,"4320":288.4452436966,"4321":268.5571786951,"4322":248.8976945468,"4323":229.8079194291,"4324":210.9725783818,"4325":192.7564317691,"4326":174.8195683089,"4327":157.5489410096,"4328":140.581343742,"4329":124.3243950318,"4330":108.3930273115,"4331":93.21391594,"4332":78.381651597,"4333":64.340282582,"4334":50.6656577875,"4335":37.8174459977,"4336":25.3544282483,"4337":13.7500797058,"4338":2.5478548389,"4339":-7.7668333942,"4340":-17.664055315,"4341":-26.6483758764,"4342":-35.2015350377,"4343":-42.8200309189,"4344":-49.995371909,"4345":-56.2179763872,"4346":-61.9871814135,"4347":-66.7893367116,"4348":-71.1296373574,"4349":-74.4923915625,"4350":-77.3866586441,"4351":-79.2967405015,"4352":-80.733551669,"4353":-81.1834229584,"4354":-81.1571077745,"4355":-80.1449930593,"4356":-78.655655378,"4357":-76.1855490126,"4358":-73.2390665695,"4359":-69.3207169353,"4360":-64.9287181502,"4361":-59.5775891831,"4362":-53.7574072689,"4363":-46.9946174301,"4364":-39.7692219858,"4365":-31.6214609173,"4366":-23.0193672776,"4367":-13.51879047,"4368":-3.5739471687,"4369":7.2419509418,"4370":18.4902961516,"4371":30.5788301565,"4372":43.086285195,"4373":56.3997471733,"4374":70.1169508298,"4375":84.6027986294,"4376":99.4756153677,"4377":115.0766799652,"4378":131.0464135724,"4379":147.7011246935,"4380":164.704749927,"4381":182.3473790355,"4382":200.3177903546,"4383":218.8787100537,"4384":237.744986455,"4385":257.1509452742,"4386":276.8386301838,"4387":297.0130416695,"4388":317.4444367895,"4389":338.3076817563,"4390":359.4021537044,"4391":380.871894456,"4392":402.5461929886,"4393":424.5376982668,"4394":446.7062848296,"4395":469.13276421,"4396":491.7081495198,"4397":514.481095934,"4398":537.3741852586,"4399":560.403724291,"4400":583.5241690657,"4401":606.719413647,"4402":629.975968039,"4403":653.2453771358,"4404":676.5462581499,"4405":699.7979980352,"4406":723.0512477391,"4407":746.1935544183,"4408":769.3074028588,"4409":792.2489442201,"4410":815.1321715972,"4411":837.782407858,"4412":860.3447045275,"4413":882.6142455531,"4414":904.7665684379,"4415":926.5675265237,"4416":948.2224505258,"4417":969.4687872503,"4418":990.5408502777,"4419":1011.1487160564,"4420":1031.5547563034,"4421":1051.4428213049,"4422":1071.1023054532,"4423":1090.1920805709,"4424":1109.0274216182,"4425":1127.2435682309,"4426":1145.1804316911,"4427":1162.4510589904,"4428":1179.418656258,"4429":1195.6756049682,"4430":1211.6069726885,"4431":1226.78608406,"4432":1241.618348403,"4433":1255.659717418,"4434":1269.3343422125,"4435":1282.1825540023,"4436":1294.6455717517,"4437":1306.2499202942,"4438":1317.4521451611,"4439":1327.7668333942,"4440":1337.664055315,"4441":1346.6483758764,"4442":1355.2015350377,"4443":1362.8200309189,"4444":1369.995371909,"4445":1376.2179763872,"4446":1381.9871814135,"4447":1386.7893367116,"4448":1391.1296373574,"4449":1394.4923915625,"4450":1397.3866586441,"4451":1399.2967405015,"4452":1400.733551669,"4453":1401.1834229584,"4454":1401.1571077745,"4455":1400.1449930593,"4456":1398.655655378,"4457":1396.1855490126,"4458":1393.2390665695,"4459":1389.3207169353,"4460":1384.9287181502,"4461":1379.5775891831,"4462":1373.7574072689,"4463":1366.9946174301,"4464":1359.7692219858,"4465":1351.6214609173,"4466":1343.0193672776,"4467":1333.51879047,"4468":1323.5739471687,"4469":1312.7580490582,"4470":1301.5097038485,"4471":1289.4211698435,"4472":1276.913714805,"4473":1263.6002528267,"4474":1249.8830491702,"4475":1235.3972013706,"4476":1220.5243846323,"4477":1204.9233200348,"4478":1188.9535864275,"4479":1172.2988753065,"4480":1155.295250073,"4481":1137.6526209645,"4482":1119.6822096454,"4483":1101.1212899463,"4484":1082.255013545,"4485":1062.8490547258,"4486":1043.1613698162,"4487":1022.9869583305,"4488":1002.5555632105,"4489":981.6923182437,"4490":960.5978462956,"4491":939.128105544,"4492":917.4538070114,"4493":895.4623017332,"4494":873.2937151704,"4495":850.86723579,"4496":828.2918504802,"4497":805.518904066,"4498":782.6258147414,"4499":759.596275709,"4500":736.4758309343,"4501":713.280586353,"4502":690.024031961,"4503":666.7546228642,"4504":643.4537418501,"4505":620.2020019648,"4506":596.9487522609,"4507":573.8064455817,"4508":550.6925971412,"4509":527.7510557799,"4510":504.8678284028,"4511":482.217592142,"4512":459.6552954725,"4513":437.3857544469,"4514":415.2334315621,"4515":393.4324734763,"4516":371.7775494742,"4517":350.5312127497,"4518":329.4591497223,"4519":308.8512839436,"4520":288.4452436966,"4521":268.5571786951,"4522":248.8976945468,"4523":229.8079194291,"4524":210.9725783818,"4525":192.7564317691,"4526":174.8195683089,"4527":157.5489410096,"4528":140.581343742,"4529":124.3243950318,"4530":108.3930273115,"4531":93.21391594,"4532":78.381651597,"4533":64.340282582,"4534":50.6656577875,"4535":37.8174459977,"4536":25.3544282483,"4537":13.7500797058,"4538":2.5478548389,"4539":-7.7668333942,"4540":-17.664055315,"4541":-26.6483758764,"4542":-35.2015350377,"4543":-42.8200309189,"4544":-49.995371909,"4545":-56.2179763872,"4546":-61.9871814135,"4547":-66.7893367116,"4548":-71.1296373574,"4549":-74.4923915625,"4550":-77.3866586441,"4551":-79.2967405015,"4552":-80.733551669,"4553":-81.1834229584,"4554":-81.1571077745,"4555":-80.1449930593,"4556":-78.655655378,"4557":-76.1855490126,"4558":-73.2390665695,"4559":-69.3207169353,"4560":-64.9287181502,"4561":-59.5775891831,"4562":-53.7574072689,"4563":-46.9946174301,"4564":-39.7692219858,"4565":-31.6214609173,"4566":-23.0193672776,"4567":-13.51879047,"4568":-3.5739471687,"4569":7.2419509418,"4570":18.4902961516,"4571":30.5788301565,"4572":43.086285195,"4573":56.3997471733,"4574":70.1169508298,"4575":84.6027986294,"4576":99.4756153677,"4577":115.0766799652,"4578":131.0464135724,"4579":147.7011246935,"4580":164.704749927,"4581":182.3473790355,"4582":200.3177903546,"4583":218.8787100537,"4584":237.744986455,"4585":257.1509452742,"4586":276.8386301838,"4587":297.0130416695,"4588":317.4444367895,"4589":338.3076817563,"4590":359.4021537044,"4591":380.871894456,"4592":402.5461929886,"4593":424.5376982668,"4594":446.7062848296,"4595":469.13276421,"4596":491.7081495198,"4597":514.481095934,"4598":537.3741852586,"4599":560.403724291,"4600":583.5241690657,"4601":606.719413647,"4602":629.975968039,"4603":653.2453771358,"4604":676.5462581499,"4605":699.7979980352,"4606":723.0512477391,"4607":746.1935544183,"4608":769.3074028588,"4609":792.2489442201,"4610":815.1321715972,"4611":837.782407858,"4612":860.3447045275,"4613":882.6142455531,"4614":904.7665684379,"4615":926.5675265237,"4616":948.2224505258,"4617":969.4687872503,"4618":990.5408502777,"4619":1011.1487160564,"4620":1031.5547563034,"4621":1051.4428213049,"4622":1071.1023054532,"4623":1090.1920805709,"4624":1109.0274216182,"4625":1127.2435682309,"4626":1145.1804316911,"4627":1162.4510589904,"4628":1179.418656258,"4629":1195.6756049682,"4630":1211.6069726885,"4631":1226.78608406,"4632":1241.618348403,"4633":1255.659717418,"4634":1269.3343422125,"4635":1282.1825540023,"4636":1294.6455717517,"4637":1306.2499202942,"4638":1317.4521451611,"4639":1327.7668333942,"4640":1337.664055315,"4641":1346.6483758764,"4642":1355.2015350377,"4643":1362.8200309189,"4644":1369.995371909,"4645":1376.2179763872,"4646":1381.9871814135,"4647":1386.7893367116,"4648":1391.1296373574,"4649":1394.4923915625,"4650":1397.3866586441,"4651":1399.2967405015,"4652":1400.733551669,"4653":1401.1834229584,"4654":1401.1571077745,"4655":1400.1449930593,"4656":1398.655655378,"4657":1396.1855490126,"4658":1393.2390665695,"4659":1389.3207169353,"4660":1384.9287181502,"4661":1379.5775891831,"4662":1373.7574072689,"4663":1366.9946174301,"4664":1359.7692219858,"4665":1351.6214609173,"4666":1343.0193672776,"4667":1333.51879047,"4668":1323.5739471687,"4669":1312.7580490582,"4670":1301.5097038485,"4671":1289.4211698435,"4672":1276.913714805,"4673":1263.6002528267,"4674":1249.8830491702,"4675":1235.3972013706,"4676":1220.5243846323,"4677":1204.9233200348,"4678":1188.9535864275,"4679":1172.2988753065,"4680":1155.295250073,"4681":1137.6526209645,"4682":1119.6822096454,"4683":1101.1212899463,"4684":1082.255013545,"4685":1062.8490547258,"4686":1043.1613698162,"4687":1022.9869583305,"4688":1002.5555632105,"4689":981.6923182437,"4690":960.5978462956,"4691":939.128105544,"4692":917.4538070114,"4693":895.4623017332,"4694":873.2937151704,"4695":850.86723579,"4696":828.2918504802,"4697":805.518904066,"4698":782.6258147414,"4699":759.596275709,"4700":736.4758309343,"4701":713.280586353,"4702":690.024031961,"4703":666.7546228642,"4704":643.4537418501,"4705":620.2020019648,"4706":596.9487522609,"4707":573.8064455817,"4708":550.6925971412,"4709":527.7510557799,"4710":504.8678284028,"4711":482.217592142,"4712":459.6552954725,"4713":437.3857544469,"4714":415.2334315621,"4715":393.4324734763,"4716":371.7775494742,"4717":350.5312127497,"4718":329.4591497223,"4719":308.8512839436,"4720":288.4452436966,"4721":268.5571786951,"4722":248.8976945468,"4723":229.8079194291,"4724":210.9725783818,"4725":192.7564317691,"4726":174.8195683089,"4727":157.5489410096,"4728":140.581343742,"4729":124.3243950318,"4730":108.3930273115,"4731":93.21391594,"4732":78.381651597,"4733":64.340282582,"4734":50.6656577875,"4735":37.8174459977,"4736":25.3544282483,"4737":13.7500797058,"4738":2.5478548389,"4739":-7.7668333942,"4740":-17.664055315,"4741":-26.6483758764,"4742":-35.2015350377,"4743":-42.8200309189,"4744":-49.995371909,"4745":-56.2179763872,"4746":-61.9871814135,"4747":-66.7893367116,"4748":-71.1296373574,"4749":-74.4923915625,"4750":-77.3866586441,"4751":-79.2967405015,"4752":-80.733551669,"4753":-81.1834229584,"4754":-81.1571077745,"4755":-80.1449930593,"4756":-78.655655378,"4757":-76.1855490126,"4758":-73.2390665695,"4759":-69.3207169353,"4760":-64.9287181502,"4761":-59.5775891831,"4762":-53.7574072689,"4763":-46.9946174301,"4764":-39.7692219858,"4765":-31.6214609173,"4766":-23.0193672776,"4767":-13.51879047,"4768":-3.5739471687,"4769":7.2419509418,"4770":18.4902961516,"4771":30.5788301565,"4772":43.086285195,"4773":56.3997471733,"4774":70.1169508298,"4775":84.6027986294,"4776":99.4756153677,"4777":115.0766799652,"4778":131.0464135724,"4779":147.7011246935,"4780":164.704749927,"4781":182.3473790355,"4782":200.3177903546,"4783":218.8787100537,"4784":237.744986455,"4785":257.1509452742,"4786":276.8386301838,"4787":297.0130416695,"4788":317.4444367895,"4789":338.3076817563,"4790":359.4021537045,"4791":380.871894456,"4792":402.5461929886,"4793":424.5376982668,"4794":446.7062848296,"4795":469.13276421,"4796":491.7081495198,"4797":514.481095934,"4798":537.3741852586,"4799":560.403724291,"4800":583.5241690657,"4801":606.7194136471,"4802":629.975968039,"4803":653.2453771358,"4804":676.5462581499,"4805":699.7979980352,"4806":723.0512477391,"4807":746.1935544183,"4808":769.3074028588,"4809":792.2489442201,"4810":815.1321715972,"4811":837.782407858,"4812":860.3447045275,"4813":882.6142455531,"4814":904.7665684379,"4815":926.5675265237,"4816":948.2224505258,"4817":969.4687872503,"4818":990.5408502777,"4819":1011.1487160564,"4820":1031.5547563034,"4821":1051.4428213049,"4822":1071.1023054532,"4823":1090.1920805709,"4824":1109.0274216182,"4825":1127.2435682309,"4826":1145.1804316911,"4827":1162.4510589904,"4828":1179.418656258,"4829":1195.6756049682,"4830":1211.6069726885,"4831":1226.78608406,"4832":1241.618348403,"4833":1255.659717418,"4834":1269.3343422125,"4835":1282.1825540023,"4836":1294.6455717517,"4837":1306.2499202942,"4838":1317.4521451611,"4839":1327.7668333942,"4840":1337.664055315,"4841":1346.6483758764,"4842":1355.2015350377,"4843":1362.8200309189,"4844":1369.995371909,"4845":1376.2179763872,"4846":1381.9871814135,"4847":1386.7893367116,"4848":1391.1296373574,"4849":1394.4923915625,"4850":1397.3866586441,"4851":1399.2967405015,"4852":1400.733551669,"4853":1401.1834229584,"4854":1401.1571077745,"4855":1400.1449930593,"4856":1398.655655378,"4857":1396.1855490126,"4858":1393.2390665695,"4859":1389.3207169353,"4860":1384.9287181502,"4861":1379.5775891831,"4862":1373.7574072689,"4863":1366.9946174301,"4864":1359.7692219858,"4865":1351.6214609173,"4866":1343.0193672776,"4867":1333.51879047,"4868":1323.5739471687,"4869":1312.7580490582,"4870":1301.5097038484,"4871":1289.4211698435,"4872":1276.913714805,"4873":1263.6002528267,"4874":1249.8830491702,"4875":1235.3972013706,"4876":1220.5243846323,"4877":1204.9233200348,"4878":1188.9535864275,"4879":1172.2988753065,"4880":1155.295250073,"4881":1137.6526209645,"4882":1119.6822096454,"4883":1101.1212899463,"4884":1082.255013545,"4885":1062.8490547258,"4886":1043.1613698162,"4887":1022.9869583305,"4888":1002.5555632105,"4889":981.6923182437,"4890":960.5978462955,"4891":939.128105544,"4892":917.4538070114,"4893":895.4623017332,"4894":873.2937151704,"4895":850.86723579,"4896":828.2918504802,"4897":805.518904066,"4898":782.6258147414,"4899":759.596275709,"4900":736.4758309343,"4901":713.280586353,"4902":690.024031961,"4903":666.7546228642,"4904":643.4537418501,"4905":620.2020019648,"4906":596.9487522609,"4907":573.8064455817,"4908":550.6925971412,"4909":527.7510557799,"4910":504.8678284028,"4911":482.217592142,"4912":459.6552954725,"4913":437.3857544469,"4914":415.2334315621,"4915":393.4324734763,"4916":371.7775494742,"4917":350.5312127497,"4918":329.4591497223,"4919":308.8512839436,"4920":288.4452436966,"4921":268.5571786951,"4922":248.8976945468,"4923":229.8079194291,"4924":210.9725783818,"4925":192.7564317691,"4926":174.8195683089,"4927":157.5489410096,"4928":140.581343742,"4929":124.3243950318,"4930":108.3930273115,"4931":93.21391594,"4932":78.381651597,"4933":64.340282582,"4934":50.6656577875,"4935":37.8174459977,"4936":25.3544282483,"4937":13.7500797058,"4938":2.5478548389,"4939":-7.7668333942,"4940":-17.664055315,"4941":-26.6483758764,"4942":-35.2015350377,"4943":-42.8200309189,"4944":-49.995371909,"4945":-56.2179763872,"4946":-61.9871814135,"4947":-66.7893367116,"4948":-71.1296373574,"4949":-74.4923915625,"4950":-77.3866586441,"4951":-79.2967405015,"4952":-80.733551669,"4953":-81.1834229584,"4954":-81.1571077745,"4955":-80.1449930593,"4956":-78.655655378,"4957":-76.1855490126,"4958":-73.2390665695,"4959":-69.3207169353,"4960":-64.9287181502,"4961":-59.5775891831,"4962":-53.7574072689,"4963":-46.9946174301,"4964":-39.7692219858,"4965":-31.6214609173,"4966":-23.0193672776,"4967":-13.51879047,"4968":-3.5739471687,"4969":7.2419509418,"4970":18.4902961516,"4971":30.5788301565,"4972":43.086285195,"4973":56.3997471733,"4974":70.1169508298,"4975":84.6027986294,"4976":99.4756153677,"4977":115.0766799652,"4978":131.0464135724,"4979":147.7011246935,"4980":164.704749927,"4981":182.3473790355,"4982":200.3177903546,"4983":218.8787100537,"4984":237.744986455,"4985":257.1509452742,"4986":276.8386301838,"4987":297.0130416695,"4988":317.4444367895,"4989":338.3076817563,"4990":359.4021537045,"4991":380.871894456,"4992":402.5461929886,"4993":424.5376982668,"4994":446.7062848296,"4995":469.13276421,"4996":491.7081495198,"4997":514.481095934,"4998":537.3741852586,"4999":560.403724291,"5000":583.5241690657,"5001":606.7194136471,"5002":629.975968039,"5003":653.2453771358,"5004":676.5462581499,"5005":699.7979980352,"5006":723.0512477391,"5007":746.1935544183,"5008":769.3074028588,"5009":792.2489442201,"5010":815.1321715972,"5011":837.782407858,"5012":860.3447045275,"5013":882.6142455531,"5014":904.7665684379,"5015":926.5675265237,"5016":948.2224505258,"5017":969.4687872503,"5018":990.5408502777,"5019":1011.1487160564,"5020":1031.5547563034,"5021":1051.4428213049,"5022":1071.1023054532,"5023":1090.1920805709,"5024":1109.0274216182,"5025":1127.2435682309,"5026":1145.1804316911,"5027":1162.4510589904,"5028":1179.418656258,"5029":1195.6756049682,"5030":1211.6069726885,"5031":1226.78608406,"5032":1241.618348403,"5033":1255.659717418,"5034":1269.3343422125,"5035":1282.1825540023,"5036":1294.6455717517,"5037":1306.2499202942,"5038":1317.4521451611,"5039":1327.7668333942,"5040":1337.664055315,"5041":1346.6483758764,"5042":1355.2015350377,"5043":1362.8200309189,"5044":1369.995371909,"5045":1376.2179763872,"5046":1381.9871814135,"5047":1386.7893367116,"5048":1391.1296373574,"5049":1394.4923915625,"5050":1397.3866586441,"5051":1399.2967405015,"5052":1400.733551669,"5053":1401.1834229584,"5054":1401.1571077745,"5055":1400.1449930593,"5056":1398.655655378,"5057":1396.1855490126,"5058":1393.2390665695,"5059":1389.3207169353,"5060":1384.9287181502,"5061":1379.5775891831,"5062":1373.7574072689,"5063":1366.9946174301,"5064":1359.7692219858,"5065":1351.6214609173,"5066":1343.0193672776,"5067":1333.51879047,"5068":1323.5739471687,"5069":1312.7580490582,"5070":1301.5097038484,"5071":1289.4211698435,"5072":1276.913714805,"5073":1263.6002528267,"5074":1249.8830491702,"5075":1235.3972013706,"5076":1220.5243846323,"5077":1204.9233200348,"5078":1188.9535864275,"5079":1172.2988753065,"5080":1155.295250073,"5081":1137.6526209645,"5082":1119.6822096454,"5083":1101.1212899463,"5084":1082.255013545,"5085":1062.8490547258,"5086":1043.1613698162,"5087":1022.9869583305,"5088":1002.5555632105,"5089":981.6923182437,"5090":960.5978462955,"5091":939.128105544,"5092":917.4538070114,"5093":895.4623017332,"5094":873.2937151704,"5095":850.86723579,"5096":828.2918504802,"5097":805.518904066,"5098":782.6258147414,"5099":759.596275709,"5100":736.4758309343,"5101":713.280586353,"5102":690.024031961,"5103":666.7546228642,"5104":643.4537418501,"5105":620.2020019648,"5106":596.9487522609,"5107":573.8064455817,"5108":550.6925971412,"5109":527.7510557799,"5110":504.8678284028,"5111":482.217592142,"5112":459.6552954725,"5113":437.3857544469,"5114":415.2334315621,"5115":393.4324734763,"5116":371.7775494742,"5117":350.5312127497,"5118":329.4591497223,"5119":308.8512839436,"5120":288.4452436966,"5121":268.5571786951,"5122":248.8976945468,"5123":229.8079194291,"5124":210.9725783818,"5125":192.7564317691,"5126":174.8195683089,"5127":157.5489410096,"5128":140.581343742,"5129":124.3243950318,"5130":108.3930273115,"5131":93.21391594,"5132":78.381651597,"5133":64.340282582,"5134":50.6656577875,"5135":37.8174459977,"5136":25.3544282483,"5137":13.7500797058,"5138":2.5478548389,"5139":-7.7668333942,"5140":-17.664055315,"5141":-26.6483758764,"5142":-35.2015350377,"5143":-42.8200309189,"5144":-49.995371909,"5145":-56.2179763872,"5146":-61.9871814135,"5147":-66.7893367116,"5148":-71.1296373574,"5149":-74.4923915625,"5150":-77.3866586441,"5151":-79.2967405015,"5152":-80.733551669,"5153":-81.1834229584,"5154":-81.1571077745,"5155":-80.1449930593,"5156":-78.655655378,"5157":-76.1855490126,"5158":-73.2390665695,"5159":-69.3207169353,"5160":-64.9287181502,"5161":-59.5775891831,"5162":-53.7574072689,"5163":-46.9946174301,"5164":-39.7692219858,"5165":-31.6214609173,"5166":-23.0193672776,"5167":-13.51879047,"5168":-3.5739471687,"5169":7.2419509418,"5170":18.4902961516,"5171":30.5788301565,"5172":43.086285195,"5173":56.3997471733,"5174":70.1169508298,"5175":84.6027986294,"5176":99.4756153677,"5177":115.0766799652,"5178":131.0464135724,"5179":147.7011246935,"5180":164.704749927,"5181":182.3473790355,"5182":200.3177903546,"5183":218.8787100537,"5184":237.744986455,"5185":257.1509452742,"5186":276.8386301838,"5187":297.0130416695,"5188":317.4444367895,"5189":338.3076817563,"5190":359.4021537045,"5191":380.871894456,"5192":402.5461929886,"5193":424.5376982668,"5194":446.7062848296,"5195":469.13276421,"5196":491.7081495198,"5197":514.481095934,"5198":537.3741852586,"5199":560.403724291,"5200":583.5241690657,"5201":606.7194136471,"5202":629.975968039,"5203":653.2453771358,"5204":676.5462581499,"5205":699.7979980352,"5206":723.0512477391,"5207":746.1935544183,"5208":769.3074028588,"5209":792.2489442201,"5210":815.1321715972,"5211":837.782407858,"5212":860.3447045275,"5213":882.6142455531,"5214":904.7665684379,"5215":926.5675265237,"5216":948.2224505258,"5217":969.4687872503,"5218":990.5408502777,"5219":1011.1487160564,"5220":1031.5547563034,"5221":1051.4428213049,"5222":1071.1023054532,"5223":1090.1920805709,"5224":1109.0274216182,"5225":1127.2435682309,"5226":1145.1804316911,"5227":1162.4510589904,"5228":1179.418656258,"5229":1195.6756049682,"5230":1211.6069726885,"5231":1226.78608406,"5232":1241.618348403,"5233":1255.659717418,"5234":1269.3343422125,"5235":1282.1825540023,"5236":1294.6455717517,"5237":1306.2499202942,"5238":1317.4521451611,"5239":1327.7668333942,"5240":1337.664055315,"5241":1346.6483758764,"5242":1355.2015350377,"5243":1362.8200309189,"5244":1369.995371909,"5245":1376.2179763872,"5246":1381.9871814135,"5247":1386.7893367116,"5248":1391.1296373574,"5249":1394.4923915625,"5250":1397.3866586441,"5251":1399.2967405015,"5252":1400.733551669,"5253":1401.1834229584,"5254":1401.1571077745,"5255":1400.1449930593,"5256":1398.655655378,"5257":1396.1855490126,"5258":1393.2390665695,"5259":1389.3207169353,"5260":1384.9287181502,"5261":1379.5775891831,"5262":1373.7574072689,"5263":1366.9946174301,"5264":1359.7692219858,"5265":1351.6214609173,"5266":1343.0193672776,"5267":1333.51879047,"5268":1323.5739471687,"5269":1312.7580490582,"5270":1301.5097038484,"5271":1289.4211698435,"5272":1276.913714805,"5273":1263.6002528267,"5274":1249.8830491702,"5275":1235.3972013706,"5276":1220.5243846323,"5277":1204.9233200348,"5278":1188.9535864275,"5279":1172.2988753065,"5280":1155.295250073,"5281":1137.6526209645,"5282":1119.6822096454,"5283":1101.1212899463,"5284":1082.255013545,"5285":1062.8490547258,"5286":1043.1613698162,"5287":1022.9869583305,"5288":1002.5555632105,"5289":981.6923182437,"5290":960.5978462955,"5291":939.128105544,"5292":917.4538070114,"5293":895.4623017332,"5294":873.2937151704,"5295":850.86723579,"5296":828.2918504802,"5297":805.518904066,"5298":782.6258147414,"5299":759.596275709,"5300":736.4758309343,"5301":713.280586353,"5302":690.024031961,"5303":666.7546228642,"5304":643.4537418501,"5305":620.2020019648,"5306":596.9487522609,"5307":573.8064455817,"5308":550.6925971412,"5309":527.7510557799,"5310":504.8678284028,"5311":482.217592142,"5312":459.6552954725,"5313":437.3857544469,"5314":415.2334315621,"5315":393.4324734763,"5316":371.7775494742,"5317":350.5312127497,"5318":329.4591497223,"5319":308.8512839436,"5320":288.4452436966,"5321":268.5571786951,"5322":248.8976945468,"5323":229.8079194291,"5324":210.9725783818,"5325":192.7564317691,"5326":174.8195683089,"5327":157.5489410096,"5328":140.581343742,"5329":124.3243950318,"5330":108.3930273115,"5331":93.21391594,"5332":78.381651597,"5333":64.340282582,"5334":50.6656577875,"5335":37.8174459977,"5336":25.3544282483,"5337":13.7500797058,"5338":2.5478548389,"5339":-7.7668333942,"5340":-17.664055315,"5341":-26.6483758764,"5342":-35.2015350377,"5343":-42.8200309189,"5344":-49.995371909,"5345":-56.2179763872,"5346":-61.9871814135,"5347":-66.7893367116,"5348":-71.1296373574,"5349":-74.4923915625,"5350":-77.3866586441,"5351":-79.2967405015,"5352":-80.733551669,"5353":-81.1834229584,"5354":-81.1571077745,"5355":-80.1449930593,"5356":-78.655655378,"5357":-76.1855490126,"5358":-73.2390665695,"5359":-69.3207169353,"5360":-64.9287181502,"5361":-59.5775891831,"5362":-53.7574072689,"5363":-46.9946174301,"5364":-39.7692219858,"5365":-31.6214609173,"5366":-23.0193672776,"5367":-13.51879047,"5368":-3.5739471687,"5369":7.2419509418,"5370":18.4902961516,"5371":30.5788301565,"5372":43.086285195,"5373":56.3997471733,"5374":70.1169508298,"5375":84.6027986294,"5376":99.4756153677,"5377":115.0766799652,"5378":131.0464135724,"5379":147.7011246935,"5380":164.704749927,"5381":182.3473790355,"5382":200.3177903546,"5383":218.8787100537,"5384":237.744986455,"5385":257.1509452742,"5386":276.8386301838,"5387":297.0130416695,"5388":317.4444367895,"5389":338.3076817563,"5390":359.4021537045,"5391":380.871894456,"5392":402.5461929886,"5393":424.5376982668,"5394":446.7062848296,"5395":469.13276421,"5396":491.7081495198,"5397":514.481095934,"5398":537.3741852586,"5399":560.403724291,"5400":583.5241690657,"5401":606.7194136471,"5402":629.975968039,"5403":653.2453771358,"5404":676.5462581499,"5405":699.7979980352,"5406":723.0512477391,"5407":746.1935544183,"5408":769.3074028588,"5409":792.2489442201,"5410":815.1321715972,"5411":837.782407858,"5412":860.3447045275,"5413":882.6142455531,"5414":904.7665684379,"5415":926.5675265237,"5416":948.2224505258,"5417":969.4687872503,"5418":990.5408502777,"5419":1011.1487160564,"5420":1031.5547563034,"5421":1051.4428213049,"5422":1071.1023054532,"5423":1090.1920805709,"5424":1109.0274216182,"5425":1127.2435682309,"5426":1145.1804316911,"5427":1162.4510589904,"5428":1179.418656258,"5429":1195.6756049682,"5430":1211.6069726885,"5431":1226.78608406,"5432":1241.618348403,"5433":1255.659717418,"5434":1269.3343422125,"5435":1282.1825540023,"5436":1294.6455717517,"5437":1306.2499202942,"5438":1317.4521451611,"5439":1327.7668333942,"5440":1337.664055315,"5441":1346.6483758764,"5442":1355.2015350377,"5443":1362.8200309189,"5444":1369.995371909,"5445":1376.2179763872,"5446":1381.9871814135,"5447":1386.7893367116,"5448":1391.1296373574,"5449":1394.4923915625,"5450":1397.3866586441,"5451":1399.2967405015,"5452":1400.733551669,"5453":1401.1834229584,"5454":1401.1571077745,"5455":1400.1449930593,"5456":1398.655655378,"5457":1396.1855490126,"5458":1393.2390665695,"5459":1389.3207169353,"5460":1384.9287181502,"5461":1379.5775891831,"5462":1373.7574072689,"5463":1366.9946174301,"5464":1359.7692219858,"5465":1351.6214609173,"5466":1343.0193672776,"5467":1333.51879047,"5468":1323.5739471687,"5469":1312.7580490582,"5470":1301.5097038484,"5471":1289.4211698435,"5472":1276.913714805,"5473":1263.6002528267,"5474":1249.8830491702,"5475":1235.3972013706,"5476":1220.5243846323,"5477":1204.9233200348,"5478":1188.9535864275,"5479":1172.2988753065,"5480":1155.295250073,"5481":1137.6526209645,"5482":1119.6822096454,"5483":1101.1212899463,"5484":1082.255013545,"5485":1062.8490547258,"5486":1043.1613698162,"5487":1022.9869583305,"5488":1002.5555632105,"5489":981.6923182437,"5490":960.5978462955,"5491":939.128105544,"5492":917.4538070114,"5493":895.4623017332,"5494":873.2937151704,"5495":850.86723579,"5496":828.2918504802,"5497":805.518904066,"5498":782.6258147414,"5499":759.596275709,"5500":736.4758309343,"5501":713.280586353,"5502":690.024031961,"5503":666.7546228642,"5504":643.4537418501,"5505":620.2020019648,"5506":596.9487522609,"5507":573.8064455817,"5508":550.6925971412,"5509":527.7510557799,"5510":504.8678284028,"5511":482.217592142,"5512":459.6552954725,"5513":437.3857544469,"5514":415.2334315621,"5515":393.4324734763,"5516":371.7775494742,"5517":350.5312127497,"5518":329.4591497223,"5519":308.8512839436,"5520":288.4452436966,"5521":268.5571786951,"5522":248.8976945468,"5523":229.8079194291,"5524":210.9725783818,"5525":192.7564317691,"5526":174.8195683089,"5527":157.5489410096,"5528":140.581343742,"5529":124.3243950318,"5530":108.3930273115,"5531":93.21391594,"5532":78.381651597,"5533":64.340282582,"5534":50.6656577875,"5535":37.8174459977,"5536":25.3544282483,"5537":13.7500797058,"5538":2.5478548389,"5539":-7.7668333942,"5540":-17.664055315,"5541":-26.6483758764,"5542":-35.2015350377,"5543":-42.8200309189,"5544":-49.995371909,"5545":-56.2179763872,"5546":-61.9871814135,"5547":-66.7893367116,"5548":-71.1296373574,"5549":-74.4923915625,"5550":-77.3866586441,"5551":-79.2967405015,"5552":-80.733551669,"5553":-81.1834229584,"5554":-81.1571077745,"5555":-80.1449930593,"5556":-78.655655378,"5557":-76.1855490126,"5558":-73.2390665695,"5559":-69.3207169353,"5560":-64.9287181502,"5561":-59.5775891831,"5562":-53.7574072689,"5563":-46.9946174301,"5564":-39.7692219858,"5565":-31.6214609173,"5566":-23.0193672776,"5567":-13.51879047,"5568":-3.5739471687,"5569":7.2419509418,"5570":18.4902961516,"5571":30.5788301565,"5572":43.086285195,"5573":56.3997471733,"5574":70.1169508298,"5575":84.6027986294,"5576":99.4756153677,"5577":115.0766799652,"5578":131.0464135724,"5579":147.7011246935,"5580":164.704749927,"5581":182.3473790355,"5582":200.3177903546,"5583":218.8787100537,"5584":237.744986455,"5585":257.1509452742,"5586":276.8386301838,"5587":297.0130416695,"5588":317.4444367895,"5589":338.3076817563,"5590":359.4021537045,"5591":380.871894456,"5592":402.5461929886,"5593":424.5376982668,"5594":446.7062848296,"5595":469.13276421,"5596":491.7081495198,"5597":514.481095934,"5598":537.3741852586,"5599":560.403724291,"5600":583.5241690657,"5601":606.7194136471,"5602":629.975968039,"5603":653.2453771358,"5604":676.5462581499,"5605":699.7979980352,"5606":723.0512477391,"5607":746.1935544183,"5608":769.3074028588,"5609":792.2489442201,"5610":815.1321715972,"5611":837.782407858,"5612":860.3447045275,"5613":882.6142455531,"5614":904.7665684379,"5615":926.5675265237,"5616":948.2224505258,"5617":969.4687872503,"5618":990.5408502777,"5619":1011.1487160564,"5620":1031.5547563034,"5621":1051.4428213049,"5622":1071.1023054532,"5623":1090.1920805709,"5624":1109.0274216182,"5625":1127.2435682309,"5626":1145.1804316911,"5627":1162.4510589904,"5628":1179.418656258,"5629":1195.6756049682,"5630":1211.6069726885,"5631":1226.78608406,"5632":1241.618348403,"5633":1255.659717418,"5634":1269.3343422125,"5635":1282.1825540023,"5636":1294.6455717517,"5637":1306.2499202942,"5638":1317.4521451611,"5639":1327.7668333942,"5640":1337.664055315,"5641":1346.6483758764,"5642":1355.2015350377,"5643":1362.8200309189,"5644":1369.995371909,"5645":1376.2179763872,"5646":1381.9871814135,"5647":1386.7893367116,"5648":1391.1296373574,"5649":1394.4923915625,"5650":1397.3866586441,"5651":1399.2967405015,"5652":1400.733551669,"5653":1401.1834229584,"5654":1401.1571077745,"5655":1400.1449930593,"5656":1398.655655378,"5657":1396.1855490126,"5658":1393.2390665695,"5659":1389.3207169353,"5660":1384.9287181502,"5661":1379.5775891831,"5662":1373.7574072689,"5663":1366.9946174301,"5664":1359.7692219858,"5665":1351.6214609173,"5666":1343.0193672776,"5667":1333.51879047,"5668":1323.5739471687,"5669":1312.7580490582,"5670":1301.5097038484,"5671":1289.4211698435,"5672":1276.913714805,"5673":1263.6002528267,"5674":1249.8830491702,"5675":1235.3972013706,"5676":1220.5243846323,"5677":1204.9233200348,"5678":1188.9535864275,"5679":1172.2988753065,"5680":1155.295250073,"5681":1137.6526209645,"5682":1119.6822096454,"5683":1101.1212899463,"5684":1082.255013545,"5685":1062.8490547258,"5686":1043.1613698162,"5687":1022.9869583305,"5688":1002.5555632105,"5689":981.6923182437,"5690":960.5978462955,"5691":939.128105544,"5692":917.4538070114,"5693":895.4623017332,"5694":873.2937151704,"5695":850.86723579,"5696":828.2918504802,"5697":805.518904066,"5698":782.6258147414,"5699":759.596275709,"5700":736.4758309343,"5701":713.280586353,"5702":690.024031961,"5703":666.7546228642,"5704":643.4537418501,"5705":620.2020019648,"5706":596.9487522609,"5707":573.8064455817,"5708":550.6925971412,"5709":527.7510557799,"5710":504.8678284028,"5711":482.217592142,"5712":459.6552954725,"5713":437.3857544469,"5714":415.2334315621,"5715":393.4324734763,"5716":371.7775494742,"5717":350.5312127497,"5718":329.4591497223,"5719":308.8512839436,"5720":288.4452436966,"5721":268.5571786951,"5722":248.8976945468,"5723":229.8079194291,"5724":210.9725783818,"5725":192.7564317691,"5726":174.8195683089,"5727":157.5489410096,"5728":140.581343742,"5729":124.3243950318,"5730":108.3930273115,"5731":93.21391594,"5732":78.381651597,"5733":64.340282582,"5734":50.6656577875,"5735":37.8174459977,"5736":25.3544282483,"5737":13.7500797058,"5738":2.5478548389,"5739":-7.7668333942,"5740":-17.664055315,"5741":-26.6483758764,"5742":-35.2015350377,"5743":-42.8200309189,"5744":-49.995371909,"5745":-56.2179763872,"5746":-61.9871814135,"5747":-66.7893367116,"5748":-71.1296373574,"5749":-74.4923915625,"5750":-77.3866586441,"5751":-79.2967405015,"5752":-80.733551669,"5753":-81.1834229584,"5754":-81.1571077745,"5755":-80.1449930593,"5756":-78.655655378,"5757":-76.1855490126,"5758":-73.2390665695,"5759":-69.3207169353,"5760":-64.9287181502,"5761":-59.5775891831,"5762":-53.7574072689,"5763":-46.9946174301,"5764":-39.7692219858,"5765":-31.6214609173,"5766":-23.0193672776,"5767":-13.51879047,"5768":-3.5739471687,"5769":7.2419509418,"5770":18.4902961516,"5771":30.5788301565,"5772":43.086285195,"5773":56.3997471733,"5774":70.1169508298,"5775":84.6027986294,"5776":99.4756153677,"5777":115.0766799652,"5778":131.0464135724,"5779":147.7011246935,"5780":164.704749927,"5781":182.3473790355,"5782":200.3177903546,"5783":218.8787100537,"5784":237.744986455,"5785":257.1509452742,"5786":276.8386301838,"5787":297.0130416695,"5788":317.4444367895,"5789":338.3076817563,"5790":359.4021537045,"5791":380.871894456,"5792":402.5461929886,"5793":424.5376982668,"5794":446.7062848296,"5795":469.13276421,"5796":491.7081495198,"5797":514.481095934,"5798":537.3741852586,"5799":560.403724291,"5800":583.5241690657,"5801":606.7194136471,"5802":629.975968039,"5803":653.2453771358,"5804":676.5462581499,"5805":699.7979980352,"5806":723.0512477391,"5807":746.1935544183,"5808":769.3074028588,"5809":792.2489442201,"5810":815.1321715972,"5811":837.782407858,"5812":860.3447045275,"5813":882.6142455531,"5814":904.7665684379,"5815":926.5675265237,"5816":948.2224505258,"5817":969.4687872503,"5818":990.5408502777,"5819":1011.1487160564,"5820":1031.5547563034,"5821":1051.4428213049,"5822":1071.1023054532,"5823":1090.1920805709,"5824":1109.0274216182,"5825":1127.2435682309,"5826":1145.1804316911,"5827":1162.4510589904,"5828":1179.418656258,"5829":1195.6756049682,"5830":1211.6069726885,"5831":1226.78608406,"5832":1241.618348403,"5833":1255.659717418,"5834":1269.3343422125,"5835":1282.1825540023,"5836":1294.6455717517,"5837":1306.2499202942,"5838":1317.4521451611,"5839":1327.7668333942,"5840":1337.664055315,"5841":1346.6483758764,"5842":1355.2015350377,"5843":1362.8200309189,"5844":1369.995371909,"5845":1376.2179763872,"5846":1381.9871814135,"5847":1386.7893367116,"5848":1391.1296373574,"5849":1394.4923915625,"5850":1397.3866586441,"5851":1399.2967405015,"5852":1400.733551669,"5853":1401.1834229584,"5854":1401.1571077745,"5855":1400.1449930593,"5856":1398.655655378,"5857":1396.1855490126,"5858":1393.2390665695,"5859":1389.3207169353,"5860":1384.9287181502,"5861":1379.5775891831,"5862":1373.7574072689,"5863":1366.9946174301,"5864":1359.7692219858,"5865":1351.6214609173,"5866":1343.0193672776,"5867":1333.51879047,"5868":1323.5739471687,"5869":1312.7580490582,"5870":1301.5097038484,"5871":1289.4211698435,"5872":1276.913714805,"5873":1263.6002528267,"5874":1249.8830491702,"5875":1235.3972013706,"5876":1220.5243846323,"5877":1204.9233200348,"5878":1188.9535864275,"5879":1172.2988753065,"5880":1155.295250073,"5881":1137.6526209645,"5882":1119.6822096454,"5883":1101.1212899463,"5884":1082.255013545,"5885":1062.8490547258,"5886":1043.1613698162,"5887":1022.9869583305,"5888":1002.5555632105,"5889":981.6923182437,"5890":960.5978462955,"5891":939.128105544,"5892":917.4538070114,"5893":895.4623017332,"5894":873.2937151704,"5895":850.86723579,"5896":828.2918504802,"5897":805.518904066,"5898":782.6258147414,"5899":759.596275709,"5900":736.4758309343,"5901":713.280586353,"5902":690.024031961,"5903":666.7546228642,"5904":643.4537418501,"5905":620.2020019648,"5906":596.9487522609,"5907":573.8064455817,"5908":550.6925971412,"5909":527.7510557799,"5910":504.8678284028,"5911":482.217592142,"5912":459.6552954725,"5913":437.3857544469,"5914":415.2334315621,"5915":393.4324734763,"5916":371.7775494742,"5917":350.5312127497,"5918":329.4591497223,"5919":308.8512839436,"5920":288.4452436966,"5921":268.5571786951,"5922":248.8976945468,"5923":229.8079194291,"5924":210.9725783818,"5925":192.7564317691,"5926":174.8195683089,"5927":157.5489410096,"5928":140.581343742,"5929":124.3243950318,"5930":108.3930273115,"5931":93.21391594,"5932":78.381651597,"5933":64.340282582,"5934":50.6656577875,"5935":37.8174459977,"5936":25.3544282483,"5937":13.7500797058,"5938":2.5478548389,"5939":-7.7668333942,"5940":-17.664055315,"5941":-26.6483758764,"5942":-35.2015350377,"5943":-42.8200309189,"5944":-49.995371909,"5945":-56.2179763872,"5946":-61.9871814135,"5947":-66.7893367116,"5948":-71.1296373574,"5949":-74.4923915625,"5950":-77.3866586441,"5951":-79.2967405015,"5952":-80.733551669,"5953":-81.1834229584,"5954":-81.1571077745,"5955":-80.1449930593,"5956":-78.655655378,"5957":-76.1855490126,"5958":-73.2390665695,"5959":-69.3207169353,"5960":-64.9287181502,"5961":-59.5775891831,"5962":-53.7574072689,"5963":-46.9946174301,"5964":-39.7692219858,"5965":-31.6214609173,"5966":-23.0193672776,"5967":-13.51879047,"5968":-3.5739471687,"5969":7.2419509418,"5970":18.4902961516,"5971":30.5788301565,"5972":43.086285195,"5973":56.3997471733,"5974":70.1169508298,"5975":84.6027986294,"5976":99.4756153677,"5977":115.0766799652,"5978":131.0464135724,"5979":147.7011246935,"5980":164.704749927,"5981":182.3473790355,"5982":200.3177903546,"5983":218.8787100537,"5984":237.744986455,"5985":257.1509452742,"5986":276.8386301838,"5987":297.0130416695,"5988":317.4444367895,"5989":338.3076817563,"5990":359.4021537045,"5991":380.871894456,"5992":402.5461929886,"5993":424.5376982668,"5994":446.7062848296,"5995":469.13276421,"5996":491.7081495198,"5997":514.481095934,"5998":537.3741852586,"5999":560.403724291,"6000":583.5241690657}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0", + "101": "branch0_seg0", + "102": "branch0_seg0", + "103": "branch0_seg0", + "104": "branch0_seg0", + "105": "branch0_seg0", + "106": "branch0_seg0", + "107": "branch0_seg0", + "108": "branch0_seg0", + "109": "branch0_seg0", + "110": "branch0_seg0", + "111": "branch0_seg0", + "112": "branch0_seg0", + "113": "branch0_seg0", + "114": "branch0_seg0", + "115": "branch0_seg0", + "116": "branch0_seg0", + "117": "branch0_seg0", + "118": "branch0_seg0", + "119": "branch0_seg0", + "120": "branch0_seg0", + "121": "branch0_seg0", + "122": "branch0_seg0", + "123": "branch0_seg0", + "124": "branch0_seg0", + "125": "branch0_seg0", + "126": "branch0_seg0", + "127": "branch0_seg0", + "128": "branch0_seg0", + "129": "branch0_seg0", + "130": "branch0_seg0", + "131": "branch0_seg0", + "132": "branch0_seg0", + "133": "branch0_seg0", + "134": "branch0_seg0", + "135": "branch0_seg0", + "136": "branch0_seg0", + "137": "branch0_seg0", + "138": "branch0_seg0", + "139": "branch0_seg0", + "140": "branch0_seg0", + "141": "branch0_seg0", + "142": "branch0_seg0", + "143": "branch0_seg0", + "144": "branch0_seg0", + "145": "branch0_seg0", + "146": "branch0_seg0", + "147": "branch0_seg0", + "148": "branch0_seg0", + "149": "branch0_seg0", + "150": "branch0_seg0", + "151": "branch0_seg0", + "152": "branch0_seg0", + "153": "branch0_seg0", + "154": "branch0_seg0", + "155": "branch0_seg0", + "156": "branch0_seg0", + "157": "branch0_seg0", + "158": "branch0_seg0", + "159": "branch0_seg0", + "160": "branch0_seg0", + "161": "branch0_seg0", + "162": "branch0_seg0", + "163": "branch0_seg0", + "164": "branch0_seg0", + "165": "branch0_seg0", + "166": "branch0_seg0", + "167": "branch0_seg0", + "168": "branch0_seg0", + "169": "branch0_seg0", + "170": "branch0_seg0", + "171": "branch0_seg0", + "172": "branch0_seg0", + "173": "branch0_seg0", + "174": "branch0_seg0", + "175": "branch0_seg0", + "176": "branch0_seg0", + "177": "branch0_seg0", + "178": "branch0_seg0", + "179": "branch0_seg0", + "180": "branch0_seg0", + "181": "branch0_seg0", + "182": "branch0_seg0", + "183": "branch0_seg0", + "184": "branch0_seg0", + "185": "branch0_seg0", + "186": "branch0_seg0", + "187": "branch0_seg0", + "188": "branch0_seg0", + "189": "branch0_seg0", + "190": "branch0_seg0", + "191": "branch0_seg0", + "192": "branch0_seg0", + "193": "branch0_seg0", + "194": "branch0_seg0", + "195": "branch0_seg0", + "196": "branch0_seg0", + "197": "branch0_seg0", + "198": "branch0_seg0", + "199": "branch0_seg0", + "200": "branch0_seg0", + "201": "branch0_seg0", + "202": "branch0_seg0", + "203": "branch0_seg0", + "204": "branch0_seg0", + "205": "branch0_seg0", + "206": "branch0_seg0", + "207": "branch0_seg0", + "208": "branch0_seg0", + "209": "branch0_seg0", + "210": "branch0_seg0", + "211": "branch0_seg0", + "212": "branch0_seg0", + "213": "branch0_seg0", + "214": "branch0_seg0", + "215": "branch0_seg0", + "216": "branch0_seg0", + "217": "branch0_seg0", + "218": "branch0_seg0", + "219": "branch0_seg0", + "220": "branch0_seg0", + "221": "branch0_seg0", + "222": "branch0_seg0", + "223": "branch0_seg0", + "224": "branch0_seg0", + "225": "branch0_seg0", + "226": "branch0_seg0", + "227": "branch0_seg0", + "228": "branch0_seg0", + "229": "branch0_seg0", + "230": "branch0_seg0", + "231": "branch0_seg0", + "232": "branch0_seg0", + "233": "branch0_seg0", + "234": "branch0_seg0", + "235": "branch0_seg0", + "236": "branch0_seg0", + "237": "branch0_seg0", + "238": "branch0_seg0", + "239": "branch0_seg0", + "240": "branch0_seg0", + "241": "branch0_seg0", + "242": "branch0_seg0", + "243": "branch0_seg0", + "244": "branch0_seg0", + "245": "branch0_seg0", + "246": "branch0_seg0", + "247": "branch0_seg0", + "248": "branch0_seg0", + "249": "branch0_seg0", + "250": "branch0_seg0", + "251": "branch0_seg0", + "252": "branch0_seg0", + "253": "branch0_seg0", + "254": "branch0_seg0", + "255": "branch0_seg0", + "256": "branch0_seg0", + "257": "branch0_seg0", + "258": "branch0_seg0", + "259": "branch0_seg0", + "260": "branch0_seg0", + "261": "branch0_seg0", + "262": "branch0_seg0", + "263": "branch0_seg0", + "264": "branch0_seg0", + "265": "branch0_seg0", + "266": "branch0_seg0", + "267": "branch0_seg0", + "268": "branch0_seg0", + "269": "branch0_seg0", + "270": "branch0_seg0", + "271": "branch0_seg0", + "272": "branch0_seg0", + "273": "branch0_seg0", + "274": "branch0_seg0", + "275": "branch0_seg0", + "276": "branch0_seg0", + "277": "branch0_seg0", + "278": "branch0_seg0", + "279": "branch0_seg0", + "280": "branch0_seg0", + "281": "branch0_seg0", + "282": "branch0_seg0", + "283": "branch0_seg0", + "284": "branch0_seg0", + "285": "branch0_seg0", + "286": "branch0_seg0", + "287": "branch0_seg0", + "288": "branch0_seg0", + "289": "branch0_seg0", + "290": "branch0_seg0", + "291": "branch0_seg0", + "292": "branch0_seg0", + "293": "branch0_seg0", + "294": "branch0_seg0", + "295": "branch0_seg0", + "296": "branch0_seg0", + "297": "branch0_seg0", + "298": "branch0_seg0", + "299": "branch0_seg0", + "300": "branch0_seg0", + "301": "branch0_seg0", + "302": "branch0_seg0", + "303": "branch0_seg0", + "304": "branch0_seg0", + "305": "branch0_seg0", + "306": "branch0_seg0", + "307": "branch0_seg0", + "308": "branch0_seg0", + "309": "branch0_seg0", + "310": "branch0_seg0", + "311": "branch0_seg0", + "312": "branch0_seg0", + "313": "branch0_seg0", + "314": "branch0_seg0", + "315": "branch0_seg0", + "316": "branch0_seg0", + "317": "branch0_seg0", + "318": "branch0_seg0", + "319": "branch0_seg0", + "320": "branch0_seg0", + "321": "branch0_seg0", + "322": "branch0_seg0", + "323": "branch0_seg0", + "324": "branch0_seg0", + "325": "branch0_seg0", + "326": "branch0_seg0", + "327": "branch0_seg0", + "328": "branch0_seg0", + "329": "branch0_seg0", + "330": "branch0_seg0", + "331": "branch0_seg0", + "332": "branch0_seg0", + "333": "branch0_seg0", + "334": "branch0_seg0", + "335": "branch0_seg0", + "336": "branch0_seg0", + "337": "branch0_seg0", + "338": "branch0_seg0", + "339": "branch0_seg0", + "340": "branch0_seg0", + "341": "branch0_seg0", + "342": "branch0_seg0", + "343": "branch0_seg0", + "344": "branch0_seg0", + "345": "branch0_seg0", + "346": "branch0_seg0", + "347": "branch0_seg0", + "348": "branch0_seg0", + "349": "branch0_seg0", + "350": "branch0_seg0", + "351": "branch0_seg0", + "352": "branch0_seg0", + "353": "branch0_seg0", + "354": "branch0_seg0", + "355": "branch0_seg0", + "356": "branch0_seg0", + "357": "branch0_seg0", + "358": "branch0_seg0", + "359": "branch0_seg0", + "360": "branch0_seg0", + "361": "branch0_seg0", + "362": "branch0_seg0", + "363": "branch0_seg0", + "364": "branch0_seg0", + "365": "branch0_seg0", + "366": "branch0_seg0", + "367": "branch0_seg0", + "368": "branch0_seg0", + "369": "branch0_seg0", + "370": "branch0_seg0", + "371": "branch0_seg0", + "372": "branch0_seg0", + "373": "branch0_seg0", + "374": "branch0_seg0", + "375": "branch0_seg0", + "376": "branch0_seg0", + "377": "branch0_seg0", + "378": "branch0_seg0", + "379": "branch0_seg0", + "380": "branch0_seg0", + "381": "branch0_seg0", + "382": "branch0_seg0", + "383": "branch0_seg0", + "384": "branch0_seg0", + "385": "branch0_seg0", + "386": "branch0_seg0", + "387": "branch0_seg0", + "388": "branch0_seg0", + "389": "branch0_seg0", + "390": "branch0_seg0", + "391": "branch0_seg0", + "392": "branch0_seg0", + "393": "branch0_seg0", + "394": "branch0_seg0", + "395": "branch0_seg0", + "396": "branch0_seg0", + "397": "branch0_seg0", + "398": "branch0_seg0", + "399": "branch0_seg0", + "400": "branch0_seg0", + "401": "branch0_seg0", + "402": "branch0_seg0", + "403": "branch0_seg0", + "404": "branch0_seg0", + "405": "branch0_seg0", + "406": "branch0_seg0", + "407": "branch0_seg0", + "408": "branch0_seg0", + "409": "branch0_seg0", + "410": "branch0_seg0", + "411": "branch0_seg0", + "412": "branch0_seg0", + "413": "branch0_seg0", + "414": "branch0_seg0", + "415": "branch0_seg0", + "416": "branch0_seg0", + "417": "branch0_seg0", + "418": "branch0_seg0", + "419": "branch0_seg0", + "420": "branch0_seg0", + "421": "branch0_seg0", + "422": "branch0_seg0", + "423": "branch0_seg0", + "424": "branch0_seg0", + "425": "branch0_seg0", + "426": "branch0_seg0", + "427": "branch0_seg0", + "428": "branch0_seg0", + "429": "branch0_seg0", + "430": "branch0_seg0", + "431": "branch0_seg0", + "432": "branch0_seg0", + "433": "branch0_seg0", + "434": "branch0_seg0", + "435": "branch0_seg0", + "436": "branch0_seg0", + "437": "branch0_seg0", + "438": "branch0_seg0", + "439": "branch0_seg0", + "440": "branch0_seg0", + "441": "branch0_seg0", + "442": "branch0_seg0", + "443": "branch0_seg0", + "444": "branch0_seg0", + "445": "branch0_seg0", + "446": "branch0_seg0", + "447": "branch0_seg0", + "448": "branch0_seg0", + "449": "branch0_seg0", + "450": "branch0_seg0", + "451": "branch0_seg0", + "452": "branch0_seg0", + "453": "branch0_seg0", + "454": "branch0_seg0", + "455": "branch0_seg0", + "456": "branch0_seg0", + "457": "branch0_seg0", + "458": "branch0_seg0", + "459": "branch0_seg0", + "460": "branch0_seg0", + "461": "branch0_seg0", + "462": "branch0_seg0", + "463": "branch0_seg0", + "464": "branch0_seg0", + "465": "branch0_seg0", + "466": "branch0_seg0", + "467": "branch0_seg0", + "468": "branch0_seg0", + "469": "branch0_seg0", + "470": "branch0_seg0", + "471": "branch0_seg0", + "472": "branch0_seg0", + "473": "branch0_seg0", + "474": "branch0_seg0", + "475": "branch0_seg0", + "476": "branch0_seg0", + "477": "branch0_seg0", + "478": "branch0_seg0", + "479": "branch0_seg0", + "480": "branch0_seg0", + "481": "branch0_seg0", + "482": "branch0_seg0", + "483": "branch0_seg0", + "484": "branch0_seg0", + "485": "branch0_seg0", + "486": "branch0_seg0", + "487": "branch0_seg0", + "488": "branch0_seg0", + "489": "branch0_seg0", + "490": "branch0_seg0", + "491": "branch0_seg0", + "492": "branch0_seg0", + "493": "branch0_seg0", + "494": "branch0_seg0", + "495": "branch0_seg0", + "496": "branch0_seg0", + "497": "branch0_seg0", + "498": "branch0_seg0", + "499": "branch0_seg0", + "500": "branch0_seg0", + "501": "branch0_seg0", + "502": "branch0_seg0", + "503": "branch0_seg0", + "504": "branch0_seg0", + "505": "branch0_seg0", + "506": "branch0_seg0", + "507": "branch0_seg0", + "508": "branch0_seg0", + "509": "branch0_seg0", + "510": "branch0_seg0", + "511": "branch0_seg0", + "512": "branch0_seg0", + "513": "branch0_seg0", + "514": "branch0_seg0", + "515": "branch0_seg0", + "516": "branch0_seg0", + "517": "branch0_seg0", + "518": "branch0_seg0", + "519": "branch0_seg0", + "520": "branch0_seg0", + "521": "branch0_seg0", + "522": "branch0_seg0", + "523": "branch0_seg0", + "524": "branch0_seg0", + "525": "branch0_seg0", + "526": "branch0_seg0", + "527": "branch0_seg0", + "528": "branch0_seg0", + "529": "branch0_seg0", + "530": "branch0_seg0", + "531": "branch0_seg0", + "532": "branch0_seg0", + "533": "branch0_seg0", + "534": "branch0_seg0", + "535": "branch0_seg0", + "536": "branch0_seg0", + "537": "branch0_seg0", + "538": "branch0_seg0", + "539": "branch0_seg0", + "540": "branch0_seg0", + "541": "branch0_seg0", + "542": "branch0_seg0", + "543": "branch0_seg0", + "544": "branch0_seg0", + "545": "branch0_seg0", + "546": "branch0_seg0", + "547": "branch0_seg0", + "548": "branch0_seg0", + "549": "branch0_seg0", + "550": "branch0_seg0", + "551": "branch0_seg0", + "552": "branch0_seg0", + "553": "branch0_seg0", + "554": "branch0_seg0", + "555": "branch0_seg0", + "556": "branch0_seg0", + "557": "branch0_seg0", + "558": "branch0_seg0", + "559": "branch0_seg0", + "560": "branch0_seg0", + "561": "branch0_seg0", + "562": "branch0_seg0", + "563": "branch0_seg0", + "564": "branch0_seg0", + "565": "branch0_seg0", + "566": "branch0_seg0", + "567": "branch0_seg0", + "568": "branch0_seg0", + "569": "branch0_seg0", + "570": "branch0_seg0", + "571": "branch0_seg0", + "572": "branch0_seg0", + "573": "branch0_seg0", + "574": "branch0_seg0", + "575": "branch0_seg0", + "576": "branch0_seg0", + "577": "branch0_seg0", + "578": "branch0_seg0", + "579": "branch0_seg0", + "580": "branch0_seg0", + "581": "branch0_seg0", + "582": "branch0_seg0", + "583": "branch0_seg0", + "584": "branch0_seg0", + "585": "branch0_seg0", + "586": "branch0_seg0", + "587": "branch0_seg0", + "588": "branch0_seg0", + "589": "branch0_seg0", + "590": "branch0_seg0", + "591": "branch0_seg0", + "592": "branch0_seg0", + "593": "branch0_seg0", + "594": "branch0_seg0", + "595": "branch0_seg0", + "596": "branch0_seg0", + "597": "branch0_seg0", + "598": "branch0_seg0", + "599": "branch0_seg0", + "600": "branch0_seg0", + "601": "branch0_seg0", + "602": "branch0_seg0", + "603": "branch0_seg0", + "604": "branch0_seg0", + "605": "branch0_seg0", + "606": "branch0_seg0", + "607": "branch0_seg0", + "608": "branch0_seg0", + "609": "branch0_seg0", + "610": "branch0_seg0", + "611": "branch0_seg0", + "612": "branch0_seg0", + "613": "branch0_seg0", + "614": "branch0_seg0", + "615": "branch0_seg0", + "616": "branch0_seg0", + "617": "branch0_seg0", + "618": "branch0_seg0", + "619": "branch0_seg0", + "620": "branch0_seg0", + "621": "branch0_seg0", + "622": "branch0_seg0", + "623": "branch0_seg0", + "624": "branch0_seg0", + "625": "branch0_seg0", + "626": "branch0_seg0", + "627": "branch0_seg0", + "628": "branch0_seg0", + "629": "branch0_seg0", + "630": "branch0_seg0", + "631": "branch0_seg0", + "632": "branch0_seg0", + "633": "branch0_seg0", + "634": "branch0_seg0", + "635": "branch0_seg0", + "636": "branch0_seg0", + "637": "branch0_seg0", + "638": "branch0_seg0", + "639": "branch0_seg0", + "640": "branch0_seg0", + "641": "branch0_seg0", + "642": "branch0_seg0", + "643": "branch0_seg0", + "644": "branch0_seg0", + "645": "branch0_seg0", + "646": "branch0_seg0", + "647": "branch0_seg0", + "648": "branch0_seg0", + "649": "branch0_seg0", + "650": "branch0_seg0", + "651": "branch0_seg0", + "652": "branch0_seg0", + "653": "branch0_seg0", + "654": "branch0_seg0", + "655": "branch0_seg0", + "656": "branch0_seg0", + "657": "branch0_seg0", + "658": "branch0_seg0", + "659": "branch0_seg0", + "660": "branch0_seg0", + "661": "branch0_seg0", + "662": "branch0_seg0", + "663": "branch0_seg0", + "664": "branch0_seg0", + "665": "branch0_seg0", + "666": "branch0_seg0", + "667": "branch0_seg0", + "668": "branch0_seg0", + "669": "branch0_seg0", + "670": "branch0_seg0", + "671": "branch0_seg0", + "672": "branch0_seg0", + "673": "branch0_seg0", + "674": "branch0_seg0", + "675": "branch0_seg0", + "676": "branch0_seg0", + "677": "branch0_seg0", + "678": "branch0_seg0", + "679": "branch0_seg0", + "680": "branch0_seg0", + "681": "branch0_seg0", + "682": "branch0_seg0", + "683": "branch0_seg0", + "684": "branch0_seg0", + "685": "branch0_seg0", + "686": "branch0_seg0", + "687": "branch0_seg0", + "688": "branch0_seg0", + "689": "branch0_seg0", + "690": "branch0_seg0", + "691": "branch0_seg0", + "692": "branch0_seg0", + "693": "branch0_seg0", + "694": "branch0_seg0", + "695": "branch0_seg0", + "696": "branch0_seg0", + "697": "branch0_seg0", + "698": "branch0_seg0", + "699": "branch0_seg0", + "700": "branch0_seg0", + "701": "branch0_seg0", + "702": "branch0_seg0", + "703": "branch0_seg0", + "704": "branch0_seg0", + "705": "branch0_seg0", + "706": "branch0_seg0", + "707": "branch0_seg0", + "708": "branch0_seg0", + "709": "branch0_seg0", + "710": "branch0_seg0", + "711": "branch0_seg0", + "712": "branch0_seg0", + "713": "branch0_seg0", + "714": "branch0_seg0", + "715": "branch0_seg0", + "716": "branch0_seg0", + "717": "branch0_seg0", + "718": "branch0_seg0", + "719": "branch0_seg0", + "720": "branch0_seg0", + "721": "branch0_seg0", + "722": "branch0_seg0", + "723": "branch0_seg0", + "724": "branch0_seg0", + "725": "branch0_seg0", + "726": "branch0_seg0", + "727": "branch0_seg0", + "728": "branch0_seg0", + "729": "branch0_seg0", + "730": "branch0_seg0", + "731": "branch0_seg0", + "732": "branch0_seg0", + "733": "branch0_seg0", + "734": "branch0_seg0", + "735": "branch0_seg0", + "736": "branch0_seg0", + "737": "branch0_seg0", + "738": "branch0_seg0", + "739": "branch0_seg0", + "740": "branch0_seg0", + "741": "branch0_seg0", + "742": "branch0_seg0", + "743": "branch0_seg0", + "744": "branch0_seg0", + "745": "branch0_seg0", + "746": "branch0_seg0", + "747": "branch0_seg0", + "748": "branch0_seg0", + "749": "branch0_seg0", + "750": "branch0_seg0", + "751": "branch0_seg0", + "752": "branch0_seg0", + "753": "branch0_seg0", + "754": "branch0_seg0", + "755": "branch0_seg0", + "756": "branch0_seg0", + "757": "branch0_seg0", + "758": "branch0_seg0", + "759": "branch0_seg0", + "760": "branch0_seg0", + "761": "branch0_seg0", + "762": "branch0_seg0", + "763": "branch0_seg0", + "764": "branch0_seg0", + "765": "branch0_seg0", + "766": "branch0_seg0", + "767": "branch0_seg0", + "768": "branch0_seg0", + "769": "branch0_seg0", + "770": "branch0_seg0", + "771": "branch0_seg0", + "772": "branch0_seg0", + "773": "branch0_seg0", + "774": "branch0_seg0", + "775": "branch0_seg0", + "776": "branch0_seg0", + "777": "branch0_seg0", + "778": "branch0_seg0", + "779": "branch0_seg0", + "780": "branch0_seg0", + "781": "branch0_seg0", + "782": "branch0_seg0", + "783": "branch0_seg0", + "784": "branch0_seg0", + "785": "branch0_seg0", + "786": "branch0_seg0", + "787": "branch0_seg0", + "788": "branch0_seg0", + "789": "branch0_seg0", + "790": "branch0_seg0", + "791": "branch0_seg0", + "792": "branch0_seg0", + "793": "branch0_seg0", + "794": "branch0_seg0", + "795": "branch0_seg0", + "796": "branch0_seg0", + "797": "branch0_seg0", + "798": "branch0_seg0", + "799": "branch0_seg0", + "800": "branch0_seg0", + "801": "branch0_seg0", + "802": "branch0_seg0", + "803": "branch0_seg0", + "804": "branch0_seg0", + "805": "branch0_seg0", + "806": "branch0_seg0", + "807": "branch0_seg0", + "808": "branch0_seg0", + "809": "branch0_seg0", + "810": "branch0_seg0", + "811": "branch0_seg0", + "812": "branch0_seg0", + "813": "branch0_seg0", + "814": "branch0_seg0", + "815": "branch0_seg0", + "816": "branch0_seg0", + "817": "branch0_seg0", + "818": "branch0_seg0", + "819": "branch0_seg0", + "820": "branch0_seg0", + "821": "branch0_seg0", + "822": "branch0_seg0", + "823": "branch0_seg0", + "824": "branch0_seg0", + "825": "branch0_seg0", + "826": "branch0_seg0", + "827": "branch0_seg0", + "828": "branch0_seg0", + "829": "branch0_seg0", + "830": "branch0_seg0", + "831": "branch0_seg0", + "832": "branch0_seg0", + "833": "branch0_seg0", + "834": "branch0_seg0", + "835": "branch0_seg0", + "836": "branch0_seg0", + "837": "branch0_seg0", + "838": "branch0_seg0", + "839": "branch0_seg0", + "840": "branch0_seg0", + "841": "branch0_seg0", + "842": "branch0_seg0", + "843": "branch0_seg0", + "844": "branch0_seg0", + "845": "branch0_seg0", + "846": "branch0_seg0", + "847": "branch0_seg0", + "848": "branch0_seg0", + "849": "branch0_seg0", + "850": "branch0_seg0", + "851": "branch0_seg0", + "852": "branch0_seg0", + "853": "branch0_seg0", + "854": "branch0_seg0", + "855": "branch0_seg0", + "856": "branch0_seg0", + "857": "branch0_seg0", + "858": "branch0_seg0", + "859": "branch0_seg0", + "860": "branch0_seg0", + "861": "branch0_seg0", + "862": "branch0_seg0", + "863": "branch0_seg0", + "864": "branch0_seg0", + "865": "branch0_seg0", + "866": "branch0_seg0", + "867": "branch0_seg0", + "868": "branch0_seg0", + "869": "branch0_seg0", + "870": "branch0_seg0", + "871": "branch0_seg0", + "872": "branch0_seg0", + "873": "branch0_seg0", + "874": "branch0_seg0", + "875": "branch0_seg0", + "876": "branch0_seg0", + "877": "branch0_seg0", + "878": "branch0_seg0", + "879": "branch0_seg0", + "880": "branch0_seg0", + "881": "branch0_seg0", + "882": "branch0_seg0", + "883": "branch0_seg0", + "884": "branch0_seg0", + "885": "branch0_seg0", + "886": "branch0_seg0", + "887": "branch0_seg0", + "888": "branch0_seg0", + "889": "branch0_seg0", + "890": "branch0_seg0", + "891": "branch0_seg0", + "892": "branch0_seg0", + "893": "branch0_seg0", + "894": "branch0_seg0", + "895": "branch0_seg0", + "896": "branch0_seg0", + "897": "branch0_seg0", + "898": "branch0_seg0", + "899": "branch0_seg0", + "900": "branch0_seg0", + "901": "branch0_seg0", + "902": "branch0_seg0", + "903": "branch0_seg0", + "904": "branch0_seg0", + "905": "branch0_seg0", + "906": "branch0_seg0", + "907": "branch0_seg0", + "908": "branch0_seg0", + "909": "branch0_seg0", + "910": "branch0_seg0", + "911": "branch0_seg0", + "912": "branch0_seg0", + "913": "branch0_seg0", + "914": "branch0_seg0", + "915": "branch0_seg0", + "916": "branch0_seg0", + "917": "branch0_seg0", + "918": "branch0_seg0", + "919": "branch0_seg0", + "920": "branch0_seg0", + "921": "branch0_seg0", + "922": "branch0_seg0", + "923": "branch0_seg0", + "924": "branch0_seg0", + "925": "branch0_seg0", + "926": "branch0_seg0", + "927": "branch0_seg0", + "928": "branch0_seg0", + "929": "branch0_seg0", + "930": "branch0_seg0", + "931": "branch0_seg0", + "932": "branch0_seg0", + "933": "branch0_seg0", + "934": "branch0_seg0", + "935": "branch0_seg0", + "936": "branch0_seg0", + "937": "branch0_seg0", + "938": "branch0_seg0", + "939": "branch0_seg0", + "940": "branch0_seg0", + "941": "branch0_seg0", + "942": "branch0_seg0", + "943": "branch0_seg0", + "944": "branch0_seg0", + "945": "branch0_seg0", + "946": "branch0_seg0", + "947": "branch0_seg0", + "948": "branch0_seg0", + "949": "branch0_seg0", + "950": "branch0_seg0", + "951": "branch0_seg0", + "952": "branch0_seg0", + "953": "branch0_seg0", + "954": "branch0_seg0", + "955": "branch0_seg0", + "956": "branch0_seg0", + "957": "branch0_seg0", + "958": "branch0_seg0", + "959": "branch0_seg0", + "960": "branch0_seg0", + "961": "branch0_seg0", + "962": "branch0_seg0", + "963": "branch0_seg0", + "964": "branch0_seg0", + "965": "branch0_seg0", + "966": "branch0_seg0", + "967": "branch0_seg0", + "968": "branch0_seg0", + "969": "branch0_seg0", + "970": "branch0_seg0", + "971": "branch0_seg0", + "972": "branch0_seg0", + "973": "branch0_seg0", + "974": "branch0_seg0", + "975": "branch0_seg0", + "976": "branch0_seg0", + "977": "branch0_seg0", + "978": "branch0_seg0", + "979": "branch0_seg0", + "980": "branch0_seg0", + "981": "branch0_seg0", + "982": "branch0_seg0", + "983": "branch0_seg0", + "984": "branch0_seg0", + "985": "branch0_seg0", + "986": "branch0_seg0", + "987": "branch0_seg0", + "988": "branch0_seg0", + "989": "branch0_seg0", + "990": "branch0_seg0", + "991": "branch0_seg0", + "992": "branch0_seg0", + "993": "branch0_seg0", + "994": "branch0_seg0", + "995": "branch0_seg0", + "996": "branch0_seg0", + "997": "branch0_seg0", + "998": "branch0_seg0", + "999": "branch0_seg0", + "1000": "branch0_seg0", + "1001": "branch0_seg0", + "1002": "branch0_seg0", + "1003": "branch0_seg0", + "1004": "branch0_seg0", + "1005": "branch0_seg0", + "1006": "branch0_seg0", + "1007": "branch0_seg0", + "1008": "branch0_seg0", + "1009": "branch0_seg0", + "1010": "branch0_seg0", + "1011": "branch0_seg0", + "1012": "branch0_seg0", + "1013": "branch0_seg0", + "1014": "branch0_seg0", + "1015": "branch0_seg0", + "1016": "branch0_seg0", + "1017": "branch0_seg0", + "1018": "branch0_seg0", + "1019": "branch0_seg0", + "1020": "branch0_seg0", + "1021": "branch0_seg0", + "1022": "branch0_seg0", + "1023": "branch0_seg0", + "1024": "branch0_seg0", + "1025": "branch0_seg0", + "1026": "branch0_seg0", + "1027": "branch0_seg0", + "1028": "branch0_seg0", + "1029": "branch0_seg0", + "1030": "branch0_seg0", + "1031": "branch0_seg0", + "1032": "branch0_seg0", + "1033": "branch0_seg0", + "1034": "branch0_seg0", + "1035": "branch0_seg0", + "1036": "branch0_seg0", + "1037": "branch0_seg0", + "1038": "branch0_seg0", + "1039": "branch0_seg0", + "1040": "branch0_seg0", + "1041": "branch0_seg0", + "1042": "branch0_seg0", + "1043": "branch0_seg0", + "1044": "branch0_seg0", + "1045": "branch0_seg0", + "1046": "branch0_seg0", + "1047": "branch0_seg0", + "1048": "branch0_seg0", + "1049": "branch0_seg0", + "1050": "branch0_seg0", + "1051": "branch0_seg0", + "1052": "branch0_seg0", + "1053": "branch0_seg0", + "1054": "branch0_seg0", + "1055": "branch0_seg0", + "1056": "branch0_seg0", + "1057": "branch0_seg0", + "1058": "branch0_seg0", + "1059": "branch0_seg0", + "1060": "branch0_seg0", + "1061": "branch0_seg0", + "1062": "branch0_seg0", + "1063": "branch0_seg0", + "1064": "branch0_seg0", + "1065": "branch0_seg0", + "1066": "branch0_seg0", + "1067": "branch0_seg0", + "1068": "branch0_seg0", + "1069": "branch0_seg0", + "1070": "branch0_seg0", + "1071": "branch0_seg0", + "1072": "branch0_seg0", + "1073": "branch0_seg0", + "1074": "branch0_seg0", + "1075": "branch0_seg0", + "1076": "branch0_seg0", + "1077": "branch0_seg0", + "1078": "branch0_seg0", + "1079": "branch0_seg0", + "1080": "branch0_seg0", + "1081": "branch0_seg0", + "1082": "branch0_seg0", + "1083": "branch0_seg0", + "1084": "branch0_seg0", + "1085": "branch0_seg0", + "1086": "branch0_seg0", + "1087": "branch0_seg0", + "1088": "branch0_seg0", + "1089": "branch0_seg0", + "1090": "branch0_seg0", + "1091": "branch0_seg0", + "1092": "branch0_seg0", + "1093": "branch0_seg0", + "1094": "branch0_seg0", + "1095": "branch0_seg0", + "1096": "branch0_seg0", + "1097": "branch0_seg0", + "1098": "branch0_seg0", + "1099": "branch0_seg0", + "1100": "branch0_seg0", + "1101": "branch0_seg0", + "1102": "branch0_seg0", + "1103": "branch0_seg0", + "1104": "branch0_seg0", + "1105": "branch0_seg0", + "1106": "branch0_seg0", + "1107": "branch0_seg0", + "1108": "branch0_seg0", + "1109": "branch0_seg0", + "1110": "branch0_seg0", + "1111": "branch0_seg0", + "1112": "branch0_seg0", + "1113": "branch0_seg0", + "1114": "branch0_seg0", + "1115": "branch0_seg0", + "1116": "branch0_seg0", + "1117": "branch0_seg0", + "1118": "branch0_seg0", + "1119": "branch0_seg0", + "1120": "branch0_seg0", + "1121": "branch0_seg0", + "1122": "branch0_seg0", + "1123": "branch0_seg0", + "1124": "branch0_seg0", + "1125": "branch0_seg0", + "1126": "branch0_seg0", + "1127": "branch0_seg0", + "1128": "branch0_seg0", + "1129": "branch0_seg0", + "1130": "branch0_seg0", + "1131": "branch0_seg0", + "1132": "branch0_seg0", + "1133": "branch0_seg0", + "1134": "branch0_seg0", + "1135": "branch0_seg0", + "1136": "branch0_seg0", + "1137": "branch0_seg0", + "1138": "branch0_seg0", + "1139": "branch0_seg0", + "1140": "branch0_seg0", + "1141": "branch0_seg0", + "1142": "branch0_seg0", + "1143": "branch0_seg0", + "1144": "branch0_seg0", + "1145": "branch0_seg0", + "1146": "branch0_seg0", + "1147": "branch0_seg0", + "1148": "branch0_seg0", + "1149": "branch0_seg0", + "1150": "branch0_seg0", + "1151": "branch0_seg0", + "1152": "branch0_seg0", + "1153": "branch0_seg0", + "1154": "branch0_seg0", + "1155": "branch0_seg0", + "1156": "branch0_seg0", + "1157": "branch0_seg0", + "1158": "branch0_seg0", + "1159": "branch0_seg0", + "1160": "branch0_seg0", + "1161": "branch0_seg0", + "1162": "branch0_seg0", + "1163": "branch0_seg0", + "1164": "branch0_seg0", + "1165": "branch0_seg0", + "1166": "branch0_seg0", + "1167": "branch0_seg0", + "1168": "branch0_seg0", + "1169": "branch0_seg0", + "1170": "branch0_seg0", + "1171": "branch0_seg0", + "1172": "branch0_seg0", + "1173": "branch0_seg0", + "1174": "branch0_seg0", + "1175": "branch0_seg0", + "1176": "branch0_seg0", + "1177": "branch0_seg0", + "1178": "branch0_seg0", + "1179": "branch0_seg0", + "1180": "branch0_seg0", + "1181": "branch0_seg0", + "1182": "branch0_seg0", + "1183": "branch0_seg0", + "1184": "branch0_seg0", + "1185": "branch0_seg0", + "1186": "branch0_seg0", + "1187": "branch0_seg0", + "1188": "branch0_seg0", + "1189": "branch0_seg0", + "1190": "branch0_seg0", + "1191": "branch0_seg0", + "1192": "branch0_seg0", + "1193": "branch0_seg0", + "1194": "branch0_seg0", + "1195": "branch0_seg0", + "1196": "branch0_seg0", + "1197": "branch0_seg0", + "1198": "branch0_seg0", + "1199": "branch0_seg0", + "1200": "branch0_seg0", + "1201": "branch0_seg0", + "1202": "branch0_seg0", + "1203": "branch0_seg0", + "1204": "branch0_seg0", + "1205": "branch0_seg0", + "1206": "branch0_seg0", + "1207": "branch0_seg0", + "1208": "branch0_seg0", + "1209": "branch0_seg0", + "1210": "branch0_seg0", + "1211": "branch0_seg0", + "1212": "branch0_seg0", + "1213": "branch0_seg0", + "1214": "branch0_seg0", + "1215": "branch0_seg0", + "1216": "branch0_seg0", + "1217": "branch0_seg0", + "1218": "branch0_seg0", + "1219": "branch0_seg0", + "1220": "branch0_seg0", + "1221": "branch0_seg0", + "1222": "branch0_seg0", + "1223": "branch0_seg0", + "1224": "branch0_seg0", + "1225": "branch0_seg0", + "1226": "branch0_seg0", + "1227": "branch0_seg0", + "1228": "branch0_seg0", + "1229": "branch0_seg0", + "1230": "branch0_seg0", + "1231": "branch0_seg0", + "1232": "branch0_seg0", + "1233": "branch0_seg0", + "1234": "branch0_seg0", + "1235": "branch0_seg0", + "1236": "branch0_seg0", + "1237": "branch0_seg0", + "1238": "branch0_seg0", + "1239": "branch0_seg0", + "1240": "branch0_seg0", + "1241": "branch0_seg0", + "1242": "branch0_seg0", + "1243": "branch0_seg0", + "1244": "branch0_seg0", + "1245": "branch0_seg0", + "1246": "branch0_seg0", + "1247": "branch0_seg0", + "1248": "branch0_seg0", + "1249": "branch0_seg0", + "1250": "branch0_seg0", + "1251": "branch0_seg0", + "1252": "branch0_seg0", + "1253": "branch0_seg0", + "1254": "branch0_seg0", + "1255": "branch0_seg0", + "1256": "branch0_seg0", + "1257": "branch0_seg0", + "1258": "branch0_seg0", + "1259": "branch0_seg0", + "1260": "branch0_seg0", + "1261": "branch0_seg0", + "1262": "branch0_seg0", + "1263": "branch0_seg0", + "1264": "branch0_seg0", + "1265": "branch0_seg0", + "1266": "branch0_seg0", + "1267": "branch0_seg0", + "1268": "branch0_seg0", + "1269": "branch0_seg0", + "1270": "branch0_seg0", + "1271": "branch0_seg0", + "1272": "branch0_seg0", + "1273": "branch0_seg0", + "1274": "branch0_seg0", + "1275": "branch0_seg0", + "1276": "branch0_seg0", + "1277": "branch0_seg0", + "1278": "branch0_seg0", + "1279": "branch0_seg0", + "1280": "branch0_seg0", + "1281": "branch0_seg0", + "1282": "branch0_seg0", + "1283": "branch0_seg0", + "1284": "branch0_seg0", + "1285": "branch0_seg0", + "1286": "branch0_seg0", + "1287": "branch0_seg0", + "1288": "branch0_seg0", + "1289": "branch0_seg0", + "1290": "branch0_seg0", + "1291": "branch0_seg0", + "1292": "branch0_seg0", + "1293": "branch0_seg0", + "1294": "branch0_seg0", + "1295": "branch0_seg0", + "1296": "branch0_seg0", + "1297": "branch0_seg0", + "1298": "branch0_seg0", + "1299": "branch0_seg0", + "1300": "branch0_seg0", + "1301": "branch0_seg0", + "1302": "branch0_seg0", + "1303": "branch0_seg0", + "1304": "branch0_seg0", + "1305": "branch0_seg0", + "1306": "branch0_seg0", + "1307": "branch0_seg0", + "1308": "branch0_seg0", + "1309": "branch0_seg0", + "1310": "branch0_seg0", + "1311": "branch0_seg0", + "1312": "branch0_seg0", + "1313": "branch0_seg0", + "1314": "branch0_seg0", + "1315": "branch0_seg0", + "1316": "branch0_seg0", + "1317": "branch0_seg0", + "1318": "branch0_seg0", + "1319": "branch0_seg0", + "1320": "branch0_seg0", + "1321": "branch0_seg0", + "1322": "branch0_seg0", + "1323": "branch0_seg0", + "1324": "branch0_seg0", + "1325": "branch0_seg0", + "1326": "branch0_seg0", + "1327": "branch0_seg0", + "1328": "branch0_seg0", + "1329": "branch0_seg0", + "1330": "branch0_seg0", + "1331": "branch0_seg0", + "1332": "branch0_seg0", + "1333": "branch0_seg0", + "1334": "branch0_seg0", + "1335": "branch0_seg0", + "1336": "branch0_seg0", + "1337": "branch0_seg0", + "1338": "branch0_seg0", + "1339": "branch0_seg0", + "1340": "branch0_seg0", + "1341": "branch0_seg0", + "1342": "branch0_seg0", + "1343": "branch0_seg0", + "1344": "branch0_seg0", + "1345": "branch0_seg0", + "1346": "branch0_seg0", + "1347": "branch0_seg0", + "1348": "branch0_seg0", + "1349": "branch0_seg0", + "1350": "branch0_seg0", + "1351": "branch0_seg0", + "1352": "branch0_seg0", + "1353": "branch0_seg0", + "1354": "branch0_seg0", + "1355": "branch0_seg0", + "1356": "branch0_seg0", + "1357": "branch0_seg0", + "1358": "branch0_seg0", + "1359": "branch0_seg0", + "1360": "branch0_seg0", + "1361": "branch0_seg0", + "1362": "branch0_seg0", + "1363": "branch0_seg0", + "1364": "branch0_seg0", + "1365": "branch0_seg0", + "1366": "branch0_seg0", + "1367": "branch0_seg0", + "1368": "branch0_seg0", + "1369": "branch0_seg0", + "1370": "branch0_seg0", + "1371": "branch0_seg0", + "1372": "branch0_seg0", + "1373": "branch0_seg0", + "1374": "branch0_seg0", + "1375": "branch0_seg0", + "1376": "branch0_seg0", + "1377": "branch0_seg0", + "1378": "branch0_seg0", + "1379": "branch0_seg0", + "1380": "branch0_seg0", + "1381": "branch0_seg0", + "1382": "branch0_seg0", + "1383": "branch0_seg0", + "1384": "branch0_seg0", + "1385": "branch0_seg0", + "1386": "branch0_seg0", + "1387": "branch0_seg0", + "1388": "branch0_seg0", + "1389": "branch0_seg0", + "1390": "branch0_seg0", + "1391": "branch0_seg0", + "1392": "branch0_seg0", + "1393": "branch0_seg0", + "1394": "branch0_seg0", + "1395": "branch0_seg0", + "1396": "branch0_seg0", + "1397": "branch0_seg0", + "1398": "branch0_seg0", + "1399": "branch0_seg0", + "1400": "branch0_seg0", + "1401": "branch0_seg0", + "1402": "branch0_seg0", + "1403": "branch0_seg0", + "1404": "branch0_seg0", + "1405": "branch0_seg0", + "1406": "branch0_seg0", + "1407": "branch0_seg0", + "1408": "branch0_seg0", + "1409": "branch0_seg0", + "1410": "branch0_seg0", + "1411": "branch0_seg0", + "1412": "branch0_seg0", + "1413": "branch0_seg0", + "1414": "branch0_seg0", + "1415": "branch0_seg0", + "1416": "branch0_seg0", + "1417": "branch0_seg0", + "1418": "branch0_seg0", + "1419": "branch0_seg0", + "1420": "branch0_seg0", + "1421": "branch0_seg0", + "1422": "branch0_seg0", + "1423": "branch0_seg0", + "1424": "branch0_seg0", + "1425": "branch0_seg0", + "1426": "branch0_seg0", + "1427": "branch0_seg0", + "1428": "branch0_seg0", + "1429": "branch0_seg0", + "1430": "branch0_seg0", + "1431": "branch0_seg0", + "1432": "branch0_seg0", + "1433": "branch0_seg0", + "1434": "branch0_seg0", + "1435": "branch0_seg0", + "1436": "branch0_seg0", + "1437": "branch0_seg0", + "1438": "branch0_seg0", + "1439": "branch0_seg0", + "1440": "branch0_seg0", + "1441": "branch0_seg0", + "1442": "branch0_seg0", + "1443": "branch0_seg0", + "1444": "branch0_seg0", + "1445": "branch0_seg0", + "1446": "branch0_seg0", + "1447": "branch0_seg0", + "1448": "branch0_seg0", + "1449": "branch0_seg0", + "1450": "branch0_seg0", + "1451": "branch0_seg0", + "1452": "branch0_seg0", + "1453": "branch0_seg0", + "1454": "branch0_seg0", + "1455": "branch0_seg0", + "1456": "branch0_seg0", + "1457": "branch0_seg0", + "1458": "branch0_seg0", + "1459": "branch0_seg0", + "1460": "branch0_seg0", + "1461": "branch0_seg0", + "1462": "branch0_seg0", + "1463": "branch0_seg0", + "1464": "branch0_seg0", + "1465": "branch0_seg0", + "1466": "branch0_seg0", + "1467": "branch0_seg0", + "1468": "branch0_seg0", + "1469": "branch0_seg0", + "1470": "branch0_seg0", + "1471": "branch0_seg0", + "1472": "branch0_seg0", + "1473": "branch0_seg0", + "1474": "branch0_seg0", + "1475": "branch0_seg0", + "1476": "branch0_seg0", + "1477": "branch0_seg0", + "1478": "branch0_seg0", + "1479": "branch0_seg0", + "1480": "branch0_seg0", + "1481": "branch0_seg0", + "1482": "branch0_seg0", + "1483": "branch0_seg0", + "1484": "branch0_seg0", + "1485": "branch0_seg0", + "1486": "branch0_seg0", + "1487": "branch0_seg0", + "1488": "branch0_seg0", + "1489": "branch0_seg0", + "1490": "branch0_seg0", + "1491": "branch0_seg0", + "1492": "branch0_seg0", + "1493": "branch0_seg0", + "1494": "branch0_seg0", + "1495": "branch0_seg0", + "1496": "branch0_seg0", + "1497": "branch0_seg0", + "1498": "branch0_seg0", + "1499": "branch0_seg0", + "1500": "branch0_seg0", + "1501": "branch0_seg0", + "1502": "branch0_seg0", + "1503": "branch0_seg0", + "1504": "branch0_seg0", + "1505": "branch0_seg0", + "1506": "branch0_seg0", + "1507": "branch0_seg0", + "1508": "branch0_seg0", + "1509": "branch0_seg0", + "1510": "branch0_seg0", + "1511": "branch0_seg0", + "1512": "branch0_seg0", + "1513": "branch0_seg0", + "1514": "branch0_seg0", + "1515": "branch0_seg0", + "1516": "branch0_seg0", + "1517": "branch0_seg0", + "1518": "branch0_seg0", + "1519": "branch0_seg0", + "1520": "branch0_seg0", + "1521": "branch0_seg0", + "1522": "branch0_seg0", + "1523": "branch0_seg0", + "1524": "branch0_seg0", + "1525": "branch0_seg0", + "1526": "branch0_seg0", + "1527": "branch0_seg0", + "1528": "branch0_seg0", + "1529": "branch0_seg0", + "1530": "branch0_seg0", + "1531": "branch0_seg0", + "1532": "branch0_seg0", + "1533": "branch0_seg0", + "1534": "branch0_seg0", + "1535": "branch0_seg0", + "1536": "branch0_seg0", + "1537": "branch0_seg0", + "1538": "branch0_seg0", + "1539": "branch0_seg0", + "1540": "branch0_seg0", + "1541": "branch0_seg0", + "1542": "branch0_seg0", + "1543": "branch0_seg0", + "1544": "branch0_seg0", + "1545": "branch0_seg0", + "1546": "branch0_seg0", + "1547": "branch0_seg0", + "1548": "branch0_seg0", + "1549": "branch0_seg0", + "1550": "branch0_seg0", + "1551": "branch0_seg0", + "1552": "branch0_seg0", + "1553": "branch0_seg0", + "1554": "branch0_seg0", + "1555": "branch0_seg0", + "1556": "branch0_seg0", + "1557": "branch0_seg0", + "1558": "branch0_seg0", + "1559": "branch0_seg0", + "1560": "branch0_seg0", + "1561": "branch0_seg0", + "1562": "branch0_seg0", + "1563": "branch0_seg0", + "1564": "branch0_seg0", + "1565": "branch0_seg0", + "1566": "branch0_seg0", + "1567": "branch0_seg0", + "1568": "branch0_seg0", + "1569": "branch0_seg0", + "1570": "branch0_seg0", + "1571": "branch0_seg0", + "1572": "branch0_seg0", + "1573": "branch0_seg0", + "1574": "branch0_seg0", + "1575": "branch0_seg0", + "1576": "branch0_seg0", + "1577": "branch0_seg0", + "1578": "branch0_seg0", + "1579": "branch0_seg0", + "1580": "branch0_seg0", + "1581": "branch0_seg0", + "1582": "branch0_seg0", + "1583": "branch0_seg0", + "1584": "branch0_seg0", + "1585": "branch0_seg0", + "1586": "branch0_seg0", + "1587": "branch0_seg0", + "1588": "branch0_seg0", + "1589": "branch0_seg0", + "1590": "branch0_seg0", + "1591": "branch0_seg0", + "1592": "branch0_seg0", + "1593": "branch0_seg0", + "1594": "branch0_seg0", + "1595": "branch0_seg0", + "1596": "branch0_seg0", + "1597": "branch0_seg0", + "1598": "branch0_seg0", + "1599": "branch0_seg0", + "1600": "branch0_seg0", + "1601": "branch0_seg0", + "1602": "branch0_seg0", + "1603": "branch0_seg0", + "1604": "branch0_seg0", + "1605": "branch0_seg0", + "1606": "branch0_seg0", + "1607": "branch0_seg0", + "1608": "branch0_seg0", + "1609": "branch0_seg0", + "1610": "branch0_seg0", + "1611": "branch0_seg0", + "1612": "branch0_seg0", + "1613": "branch0_seg0", + "1614": "branch0_seg0", + "1615": "branch0_seg0", + "1616": "branch0_seg0", + "1617": "branch0_seg0", + "1618": "branch0_seg0", + "1619": "branch0_seg0", + "1620": "branch0_seg0", + "1621": "branch0_seg0", + "1622": "branch0_seg0", + "1623": "branch0_seg0", + "1624": "branch0_seg0", + "1625": "branch0_seg0", + "1626": "branch0_seg0", + "1627": "branch0_seg0", + "1628": "branch0_seg0", + "1629": "branch0_seg0", + "1630": "branch0_seg0", + "1631": "branch0_seg0", + "1632": "branch0_seg0", + "1633": "branch0_seg0", + "1634": "branch0_seg0", + "1635": "branch0_seg0", + "1636": "branch0_seg0", + "1637": "branch0_seg0", + "1638": "branch0_seg0", + "1639": "branch0_seg0", + "1640": "branch0_seg0", + "1641": "branch0_seg0", + "1642": "branch0_seg0", + "1643": "branch0_seg0", + "1644": "branch0_seg0", + "1645": "branch0_seg0", + "1646": "branch0_seg0", + "1647": "branch0_seg0", + "1648": "branch0_seg0", + "1649": "branch0_seg0", + "1650": "branch0_seg0", + "1651": "branch0_seg0", + "1652": "branch0_seg0", + "1653": "branch0_seg0", + "1654": "branch0_seg0", + "1655": "branch0_seg0", + "1656": "branch0_seg0", + "1657": "branch0_seg0", + "1658": "branch0_seg0", + "1659": "branch0_seg0", + "1660": "branch0_seg0", + "1661": "branch0_seg0", + "1662": "branch0_seg0", + "1663": "branch0_seg0", + "1664": "branch0_seg0", + "1665": "branch0_seg0", + "1666": "branch0_seg0", + "1667": "branch0_seg0", + "1668": "branch0_seg0", + "1669": "branch0_seg0", + "1670": "branch0_seg0", + "1671": "branch0_seg0", + "1672": "branch0_seg0", + "1673": "branch0_seg0", + "1674": "branch0_seg0", + "1675": "branch0_seg0", + "1676": "branch0_seg0", + "1677": "branch0_seg0", + "1678": "branch0_seg0", + "1679": "branch0_seg0", + "1680": "branch0_seg0", + "1681": "branch0_seg0", + "1682": "branch0_seg0", + "1683": "branch0_seg0", + "1684": "branch0_seg0", + "1685": "branch0_seg0", + "1686": "branch0_seg0", + "1687": "branch0_seg0", + "1688": "branch0_seg0", + "1689": "branch0_seg0", + "1690": "branch0_seg0", + "1691": "branch0_seg0", + "1692": "branch0_seg0", + "1693": "branch0_seg0", + "1694": "branch0_seg0", + "1695": "branch0_seg0", + "1696": "branch0_seg0", + "1697": "branch0_seg0", + "1698": "branch0_seg0", + "1699": "branch0_seg0", + "1700": "branch0_seg0", + "1701": "branch0_seg0", + "1702": "branch0_seg0", + "1703": "branch0_seg0", + "1704": "branch0_seg0", + "1705": "branch0_seg0", + "1706": "branch0_seg0", + "1707": "branch0_seg0", + "1708": "branch0_seg0", + "1709": "branch0_seg0", + "1710": "branch0_seg0", + "1711": "branch0_seg0", + "1712": "branch0_seg0", + "1713": "branch0_seg0", + "1714": "branch0_seg0", + "1715": "branch0_seg0", + "1716": "branch0_seg0", + "1717": "branch0_seg0", + "1718": "branch0_seg0", + "1719": "branch0_seg0", + "1720": "branch0_seg0", + "1721": "branch0_seg0", + "1722": "branch0_seg0", + "1723": "branch0_seg0", + "1724": "branch0_seg0", + "1725": "branch0_seg0", + "1726": "branch0_seg0", + "1727": "branch0_seg0", + "1728": "branch0_seg0", + "1729": "branch0_seg0", + "1730": "branch0_seg0", + "1731": "branch0_seg0", + "1732": "branch0_seg0", + "1733": "branch0_seg0", + "1734": "branch0_seg0", + "1735": "branch0_seg0", + "1736": "branch0_seg0", + "1737": "branch0_seg0", + "1738": "branch0_seg0", + "1739": "branch0_seg0", + "1740": "branch0_seg0", + "1741": "branch0_seg0", + "1742": "branch0_seg0", + "1743": "branch0_seg0", + "1744": "branch0_seg0", + "1745": "branch0_seg0", + "1746": "branch0_seg0", + "1747": "branch0_seg0", + "1748": "branch0_seg0", + "1749": "branch0_seg0", + "1750": "branch0_seg0", + "1751": "branch0_seg0", + "1752": "branch0_seg0", + "1753": "branch0_seg0", + "1754": "branch0_seg0", + "1755": "branch0_seg0", + "1756": "branch0_seg0", + "1757": "branch0_seg0", + "1758": "branch0_seg0", + "1759": "branch0_seg0", + "1760": "branch0_seg0", + "1761": "branch0_seg0", + "1762": "branch0_seg0", + "1763": "branch0_seg0", + "1764": "branch0_seg0", + "1765": "branch0_seg0", + "1766": "branch0_seg0", + "1767": "branch0_seg0", + "1768": "branch0_seg0", + "1769": "branch0_seg0", + "1770": "branch0_seg0", + "1771": "branch0_seg0", + "1772": "branch0_seg0", + "1773": "branch0_seg0", + "1774": "branch0_seg0", + "1775": "branch0_seg0", + "1776": "branch0_seg0", + "1777": "branch0_seg0", + "1778": "branch0_seg0", + "1779": "branch0_seg0", + "1780": "branch0_seg0", + "1781": "branch0_seg0", + "1782": "branch0_seg0", + "1783": "branch0_seg0", + "1784": "branch0_seg0", + "1785": "branch0_seg0", + "1786": "branch0_seg0", + "1787": "branch0_seg0", + "1788": "branch0_seg0", + "1789": "branch0_seg0", + "1790": "branch0_seg0", + "1791": "branch0_seg0", + "1792": "branch0_seg0", + "1793": "branch0_seg0", + "1794": "branch0_seg0", + "1795": "branch0_seg0", + "1796": "branch0_seg0", + "1797": "branch0_seg0", + "1798": "branch0_seg0", + "1799": "branch0_seg0", + "1800": "branch0_seg0", + "1801": "branch0_seg0", + "1802": "branch0_seg0", + "1803": "branch0_seg0", + "1804": "branch0_seg0", + "1805": "branch0_seg0", + "1806": "branch0_seg0", + "1807": "branch0_seg0", + "1808": "branch0_seg0", + "1809": "branch0_seg0", + "1810": "branch0_seg0", + "1811": "branch0_seg0", + "1812": "branch0_seg0", + "1813": "branch0_seg0", + "1814": "branch0_seg0", + "1815": "branch0_seg0", + "1816": "branch0_seg0", + "1817": "branch0_seg0", + "1818": "branch0_seg0", + "1819": "branch0_seg0", + "1820": "branch0_seg0", + "1821": "branch0_seg0", + "1822": "branch0_seg0", + "1823": "branch0_seg0", + "1824": "branch0_seg0", + "1825": "branch0_seg0", + "1826": "branch0_seg0", + "1827": "branch0_seg0", + "1828": "branch0_seg0", + "1829": "branch0_seg0", + "1830": "branch0_seg0", + "1831": "branch0_seg0", + "1832": "branch0_seg0", + "1833": "branch0_seg0", + "1834": "branch0_seg0", + "1835": "branch0_seg0", + "1836": "branch0_seg0", + "1837": "branch0_seg0", + "1838": "branch0_seg0", + "1839": "branch0_seg0", + "1840": "branch0_seg0", + "1841": "branch0_seg0", + "1842": "branch0_seg0", + "1843": "branch0_seg0", + "1844": "branch0_seg0", + "1845": "branch0_seg0", + "1846": "branch0_seg0", + "1847": "branch0_seg0", + "1848": "branch0_seg0", + "1849": "branch0_seg0", + "1850": "branch0_seg0", + "1851": "branch0_seg0", + "1852": "branch0_seg0", + "1853": "branch0_seg0", + "1854": "branch0_seg0", + "1855": "branch0_seg0", + "1856": "branch0_seg0", + "1857": "branch0_seg0", + "1858": "branch0_seg0", + "1859": "branch0_seg0", + "1860": "branch0_seg0", + "1861": "branch0_seg0", + "1862": "branch0_seg0", + "1863": "branch0_seg0", + "1864": "branch0_seg0", + "1865": "branch0_seg0", + "1866": "branch0_seg0", + "1867": "branch0_seg0", + "1868": "branch0_seg0", + "1869": "branch0_seg0", + "1870": "branch0_seg0", + "1871": "branch0_seg0", + "1872": "branch0_seg0", + "1873": "branch0_seg0", + "1874": "branch0_seg0", + "1875": "branch0_seg0", + "1876": "branch0_seg0", + "1877": "branch0_seg0", + "1878": "branch0_seg0", + "1879": "branch0_seg0", + "1880": "branch0_seg0", + "1881": "branch0_seg0", + "1882": "branch0_seg0", + "1883": "branch0_seg0", + "1884": "branch0_seg0", + "1885": "branch0_seg0", + "1886": "branch0_seg0", + "1887": "branch0_seg0", + "1888": "branch0_seg0", + "1889": "branch0_seg0", + "1890": "branch0_seg0", + "1891": "branch0_seg0", + "1892": "branch0_seg0", + "1893": "branch0_seg0", + "1894": "branch0_seg0", + "1895": "branch0_seg0", + "1896": "branch0_seg0", + "1897": "branch0_seg0", + "1898": "branch0_seg0", + "1899": "branch0_seg0", + "1900": "branch0_seg0", + "1901": "branch0_seg0", + "1902": "branch0_seg0", + "1903": "branch0_seg0", + "1904": "branch0_seg0", + "1905": "branch0_seg0", + "1906": "branch0_seg0", + "1907": "branch0_seg0", + "1908": "branch0_seg0", + "1909": "branch0_seg0", + "1910": "branch0_seg0", + "1911": "branch0_seg0", + "1912": "branch0_seg0", + "1913": "branch0_seg0", + "1914": "branch0_seg0", + "1915": "branch0_seg0", + "1916": "branch0_seg0", + "1917": "branch0_seg0", + "1918": "branch0_seg0", + "1919": "branch0_seg0", + "1920": "branch0_seg0", + "1921": "branch0_seg0", + "1922": "branch0_seg0", + "1923": "branch0_seg0", + "1924": "branch0_seg0", + "1925": "branch0_seg0", + "1926": "branch0_seg0", + "1927": "branch0_seg0", + "1928": "branch0_seg0", + "1929": "branch0_seg0", + "1930": "branch0_seg0", + "1931": "branch0_seg0", + "1932": "branch0_seg0", + "1933": "branch0_seg0", + "1934": "branch0_seg0", + "1935": "branch0_seg0", + "1936": "branch0_seg0", + "1937": "branch0_seg0", + "1938": "branch0_seg0", + "1939": "branch0_seg0", + "1940": "branch0_seg0", + "1941": "branch0_seg0", + "1942": "branch0_seg0", + "1943": "branch0_seg0", + "1944": "branch0_seg0", + "1945": "branch0_seg0", + "1946": "branch0_seg0", + "1947": "branch0_seg0", + "1948": "branch0_seg0", + "1949": "branch0_seg0", + "1950": "branch0_seg0", + "1951": "branch0_seg0", + "1952": "branch0_seg0", + "1953": "branch0_seg0", + "1954": "branch0_seg0", + "1955": "branch0_seg0", + "1956": "branch0_seg0", + "1957": "branch0_seg0", + "1958": "branch0_seg0", + "1959": "branch0_seg0", + "1960": "branch0_seg0", + "1961": "branch0_seg0", + "1962": "branch0_seg0", + "1963": "branch0_seg0", + "1964": "branch0_seg0", + "1965": "branch0_seg0", + "1966": "branch0_seg0", + "1967": "branch0_seg0", + "1968": "branch0_seg0", + "1969": "branch0_seg0", + "1970": "branch0_seg0", + "1971": "branch0_seg0", + "1972": "branch0_seg0", + "1973": "branch0_seg0", + "1974": "branch0_seg0", + "1975": "branch0_seg0", + "1976": "branch0_seg0", + "1977": "branch0_seg0", + "1978": "branch0_seg0", + "1979": "branch0_seg0", + "1980": "branch0_seg0", + "1981": "branch0_seg0", + "1982": "branch0_seg0", + "1983": "branch0_seg0", + "1984": "branch0_seg0", + "1985": "branch0_seg0", + "1986": "branch0_seg0", + "1987": "branch0_seg0", + "1988": "branch0_seg0", + "1989": "branch0_seg0", + "1990": "branch0_seg0", + "1991": "branch0_seg0", + "1992": "branch0_seg0", + "1993": "branch0_seg0", + "1994": "branch0_seg0", + "1995": "branch0_seg0", + "1996": "branch0_seg0", + "1997": "branch0_seg0", + "1998": "branch0_seg0", + "1999": "branch0_seg0", + "2000": "branch0_seg0", + "2001": "branch0_seg0", + "2002": "branch0_seg0", + "2003": "branch0_seg0", + "2004": "branch0_seg0", + "2005": "branch0_seg0", + "2006": "branch0_seg0", + "2007": "branch0_seg0", + "2008": "branch0_seg0", + "2009": "branch0_seg0", + "2010": "branch0_seg0", + "2011": "branch0_seg0", + "2012": "branch0_seg0", + "2013": "branch0_seg0", + "2014": "branch0_seg0", + "2015": "branch0_seg0", + "2016": "branch0_seg0", + "2017": "branch0_seg0", + "2018": "branch0_seg0", + "2019": "branch0_seg0", + "2020": "branch0_seg0", + "2021": "branch0_seg0", + "2022": "branch0_seg0", + "2023": "branch0_seg0", + "2024": "branch0_seg0", + "2025": "branch0_seg0", + "2026": "branch0_seg0", + "2027": "branch0_seg0", + "2028": "branch0_seg0", + "2029": "branch0_seg0", + "2030": "branch0_seg0", + "2031": "branch0_seg0", + "2032": "branch0_seg0", + "2033": "branch0_seg0", + "2034": "branch0_seg0", + "2035": "branch0_seg0", + "2036": "branch0_seg0", + "2037": "branch0_seg0", + "2038": "branch0_seg0", + "2039": "branch0_seg0", + "2040": "branch0_seg0", + "2041": "branch0_seg0", + "2042": "branch0_seg0", + "2043": "branch0_seg0", + "2044": "branch0_seg0", + "2045": "branch0_seg0", + "2046": "branch0_seg0", + "2047": "branch0_seg0", + "2048": "branch0_seg0", + "2049": "branch0_seg0", + "2050": "branch0_seg0", + "2051": "branch0_seg0", + "2052": "branch0_seg0", + "2053": "branch0_seg0", + "2054": "branch0_seg0", + "2055": "branch0_seg0", + "2056": "branch0_seg0", + "2057": "branch0_seg0", + "2058": "branch0_seg0", + "2059": "branch0_seg0", + "2060": "branch0_seg0", + "2061": "branch0_seg0", + "2062": "branch0_seg0", + "2063": "branch0_seg0", + "2064": "branch0_seg0", + "2065": "branch0_seg0", + "2066": "branch0_seg0", + "2067": "branch0_seg0", + "2068": "branch0_seg0", + "2069": "branch0_seg0", + "2070": "branch0_seg0", + "2071": "branch0_seg0", + "2072": "branch0_seg0", + "2073": "branch0_seg0", + "2074": "branch0_seg0", + "2075": "branch0_seg0", + "2076": "branch0_seg0", + "2077": "branch0_seg0", + "2078": "branch0_seg0", + "2079": "branch0_seg0", + "2080": "branch0_seg0", + "2081": "branch0_seg0", + "2082": "branch0_seg0", + "2083": "branch0_seg0", + "2084": "branch0_seg0", + "2085": "branch0_seg0", + "2086": "branch0_seg0", + "2087": "branch0_seg0", + "2088": "branch0_seg0", + "2089": "branch0_seg0", + "2090": "branch0_seg0", + "2091": "branch0_seg0", + "2092": "branch0_seg0", + "2093": "branch0_seg0", + "2094": "branch0_seg0", + "2095": "branch0_seg0", + "2096": "branch0_seg0", + "2097": "branch0_seg0", + "2098": "branch0_seg0", + "2099": "branch0_seg0", + "2100": "branch0_seg0", + "2101": "branch0_seg0", + "2102": "branch0_seg0", + "2103": "branch0_seg0", + "2104": "branch0_seg0", + "2105": "branch0_seg0", + "2106": "branch0_seg0", + "2107": "branch0_seg0", + "2108": "branch0_seg0", + "2109": "branch0_seg0", + "2110": "branch0_seg0", + "2111": "branch0_seg0", + "2112": "branch0_seg0", + "2113": "branch0_seg0", + "2114": "branch0_seg0", + "2115": "branch0_seg0", + "2116": "branch0_seg0", + "2117": "branch0_seg0", + "2118": "branch0_seg0", + "2119": "branch0_seg0", + "2120": "branch0_seg0", + "2121": "branch0_seg0", + "2122": "branch0_seg0", + "2123": "branch0_seg0", + "2124": "branch0_seg0", + "2125": "branch0_seg0", + "2126": "branch0_seg0", + "2127": "branch0_seg0", + "2128": "branch0_seg0", + "2129": "branch0_seg0", + "2130": "branch0_seg0", + "2131": "branch0_seg0", + "2132": "branch0_seg0", + "2133": "branch0_seg0", + "2134": "branch0_seg0", + "2135": "branch0_seg0", + "2136": "branch0_seg0", + "2137": "branch0_seg0", + "2138": "branch0_seg0", + "2139": "branch0_seg0", + "2140": "branch0_seg0", + "2141": "branch0_seg0", + "2142": "branch0_seg0", + "2143": "branch0_seg0", + "2144": "branch0_seg0", + "2145": "branch0_seg0", + "2146": "branch0_seg0", + "2147": "branch0_seg0", + "2148": "branch0_seg0", + "2149": "branch0_seg0", + "2150": "branch0_seg0", + "2151": "branch0_seg0", + "2152": "branch0_seg0", + "2153": "branch0_seg0", + "2154": "branch0_seg0", + "2155": "branch0_seg0", + "2156": "branch0_seg0", + "2157": "branch0_seg0", + "2158": "branch0_seg0", + "2159": "branch0_seg0", + "2160": "branch0_seg0", + "2161": "branch0_seg0", + "2162": "branch0_seg0", + "2163": "branch0_seg0", + "2164": "branch0_seg0", + "2165": "branch0_seg0", + "2166": "branch0_seg0", + "2167": "branch0_seg0", + "2168": "branch0_seg0", + "2169": "branch0_seg0", + "2170": "branch0_seg0", + "2171": "branch0_seg0", + "2172": "branch0_seg0", + "2173": "branch0_seg0", + "2174": "branch0_seg0", + "2175": "branch0_seg0", + "2176": "branch0_seg0", + "2177": "branch0_seg0", + "2178": "branch0_seg0", + "2179": "branch0_seg0", + "2180": "branch0_seg0", + "2181": "branch0_seg0", + "2182": "branch0_seg0", + "2183": "branch0_seg0", + "2184": "branch0_seg0", + "2185": "branch0_seg0", + "2186": "branch0_seg0", + "2187": "branch0_seg0", + "2188": "branch0_seg0", + "2189": "branch0_seg0", + "2190": "branch0_seg0", + "2191": "branch0_seg0", + "2192": "branch0_seg0", + "2193": "branch0_seg0", + "2194": "branch0_seg0", + "2195": "branch0_seg0", + "2196": "branch0_seg0", + "2197": "branch0_seg0", + "2198": "branch0_seg0", + "2199": "branch0_seg0", + "2200": "branch0_seg0", + "2201": "branch0_seg0", + "2202": "branch0_seg0", + "2203": "branch0_seg0", + "2204": "branch0_seg0", + "2205": "branch0_seg0", + "2206": "branch0_seg0", + "2207": "branch0_seg0", + "2208": "branch0_seg0", + "2209": "branch0_seg0", + "2210": "branch0_seg0", + "2211": "branch0_seg0", + "2212": "branch0_seg0", + "2213": "branch0_seg0", + "2214": "branch0_seg0", + "2215": "branch0_seg0", + "2216": "branch0_seg0", + "2217": "branch0_seg0", + "2218": "branch0_seg0", + "2219": "branch0_seg0", + "2220": "branch0_seg0", + "2221": "branch0_seg0", + "2222": "branch0_seg0", + "2223": "branch0_seg0", + "2224": "branch0_seg0", + "2225": "branch0_seg0", + "2226": "branch0_seg0", + "2227": "branch0_seg0", + "2228": "branch0_seg0", + "2229": "branch0_seg0", + "2230": "branch0_seg0", + "2231": "branch0_seg0", + "2232": "branch0_seg0", + "2233": "branch0_seg0", + "2234": "branch0_seg0", + "2235": "branch0_seg0", + "2236": "branch0_seg0", + "2237": "branch0_seg0", + "2238": "branch0_seg0", + "2239": "branch0_seg0", + "2240": "branch0_seg0", + "2241": "branch0_seg0", + "2242": "branch0_seg0", + "2243": "branch0_seg0", + "2244": "branch0_seg0", + "2245": "branch0_seg0", + "2246": "branch0_seg0", + "2247": "branch0_seg0", + "2248": "branch0_seg0", + "2249": "branch0_seg0", + "2250": "branch0_seg0", + "2251": "branch0_seg0", + "2252": "branch0_seg0", + "2253": "branch0_seg0", + "2254": "branch0_seg0", + "2255": "branch0_seg0", + "2256": "branch0_seg0", + "2257": "branch0_seg0", + "2258": "branch0_seg0", + "2259": "branch0_seg0", + "2260": "branch0_seg0", + "2261": "branch0_seg0", + "2262": "branch0_seg0", + "2263": "branch0_seg0", + "2264": "branch0_seg0", + "2265": "branch0_seg0", + "2266": "branch0_seg0", + "2267": "branch0_seg0", + "2268": "branch0_seg0", + "2269": "branch0_seg0", + "2270": "branch0_seg0", + "2271": "branch0_seg0", + "2272": "branch0_seg0", + "2273": "branch0_seg0", + "2274": "branch0_seg0", + "2275": "branch0_seg0", + "2276": "branch0_seg0", + "2277": "branch0_seg0", + "2278": "branch0_seg0", + "2279": "branch0_seg0", + "2280": "branch0_seg0", + "2281": "branch0_seg0", + "2282": "branch0_seg0", + "2283": "branch0_seg0", + "2284": "branch0_seg0", + "2285": "branch0_seg0", + "2286": "branch0_seg0", + "2287": "branch0_seg0", + "2288": "branch0_seg0", + "2289": "branch0_seg0", + "2290": "branch0_seg0", + "2291": "branch0_seg0", + "2292": "branch0_seg0", + "2293": "branch0_seg0", + "2294": "branch0_seg0", + "2295": "branch0_seg0", + "2296": "branch0_seg0", + "2297": "branch0_seg0", + "2298": "branch0_seg0", + "2299": "branch0_seg0", + "2300": "branch0_seg0", + "2301": "branch0_seg0", + "2302": "branch0_seg0", + "2303": "branch0_seg0", + "2304": "branch0_seg0", + "2305": "branch0_seg0", + "2306": "branch0_seg0", + "2307": "branch0_seg0", + "2308": "branch0_seg0", + "2309": "branch0_seg0", + "2310": "branch0_seg0", + "2311": "branch0_seg0", + "2312": "branch0_seg0", + "2313": "branch0_seg0", + "2314": "branch0_seg0", + "2315": "branch0_seg0", + "2316": "branch0_seg0", + "2317": "branch0_seg0", + "2318": "branch0_seg0", + "2319": "branch0_seg0", + "2320": "branch0_seg0", + "2321": "branch0_seg0", + "2322": "branch0_seg0", + "2323": "branch0_seg0", + "2324": "branch0_seg0", + "2325": "branch0_seg0", + "2326": "branch0_seg0", + "2327": "branch0_seg0", + "2328": "branch0_seg0", + "2329": "branch0_seg0", + "2330": "branch0_seg0", + "2331": "branch0_seg0", + "2332": "branch0_seg0", + "2333": "branch0_seg0", + "2334": "branch0_seg0", + "2335": "branch0_seg0", + "2336": "branch0_seg0", + "2337": "branch0_seg0", + "2338": "branch0_seg0", + "2339": "branch0_seg0", + "2340": "branch0_seg0", + "2341": "branch0_seg0", + "2342": "branch0_seg0", + "2343": "branch0_seg0", + "2344": "branch0_seg0", + "2345": "branch0_seg0", + "2346": "branch0_seg0", + "2347": "branch0_seg0", + "2348": "branch0_seg0", + "2349": "branch0_seg0", + "2350": "branch0_seg0", + "2351": "branch0_seg0", + "2352": "branch0_seg0", + "2353": "branch0_seg0", + "2354": "branch0_seg0", + "2355": "branch0_seg0", + "2356": "branch0_seg0", + "2357": "branch0_seg0", + "2358": "branch0_seg0", + "2359": "branch0_seg0", + "2360": "branch0_seg0", + "2361": "branch0_seg0", + "2362": "branch0_seg0", + "2363": "branch0_seg0", + "2364": "branch0_seg0", + "2365": "branch0_seg0", + "2366": "branch0_seg0", + "2367": "branch0_seg0", + "2368": "branch0_seg0", + "2369": "branch0_seg0", + "2370": "branch0_seg0", + "2371": "branch0_seg0", + "2372": "branch0_seg0", + "2373": "branch0_seg0", + "2374": "branch0_seg0", + "2375": "branch0_seg0", + "2376": "branch0_seg0", + "2377": "branch0_seg0", + "2378": "branch0_seg0", + "2379": "branch0_seg0", + "2380": "branch0_seg0", + "2381": "branch0_seg0", + "2382": "branch0_seg0", + "2383": "branch0_seg0", + "2384": "branch0_seg0", + "2385": "branch0_seg0", + "2386": "branch0_seg0", + "2387": "branch0_seg0", + "2388": "branch0_seg0", + "2389": "branch0_seg0", + "2390": "branch0_seg0", + "2391": "branch0_seg0", + "2392": "branch0_seg0", + "2393": "branch0_seg0", + "2394": "branch0_seg0", + "2395": "branch0_seg0", + "2396": "branch0_seg0", + "2397": "branch0_seg0", + "2398": "branch0_seg0", + "2399": "branch0_seg0", + "2400": "branch0_seg0", + "2401": "branch0_seg0", + "2402": "branch0_seg0", + "2403": "branch0_seg0", + "2404": "branch0_seg0", + "2405": "branch0_seg0", + "2406": "branch0_seg0", + "2407": "branch0_seg0", + "2408": "branch0_seg0", + "2409": "branch0_seg0", + "2410": "branch0_seg0", + "2411": "branch0_seg0", + "2412": "branch0_seg0", + "2413": "branch0_seg0", + "2414": "branch0_seg0", + "2415": "branch0_seg0", + "2416": "branch0_seg0", + "2417": "branch0_seg0", + "2418": "branch0_seg0", + "2419": "branch0_seg0", + "2420": "branch0_seg0", + "2421": "branch0_seg0", + "2422": "branch0_seg0", + "2423": "branch0_seg0", + "2424": "branch0_seg0", + "2425": "branch0_seg0", + "2426": "branch0_seg0", + "2427": "branch0_seg0", + "2428": "branch0_seg0", + "2429": "branch0_seg0", + "2430": "branch0_seg0", + "2431": "branch0_seg0", + "2432": "branch0_seg0", + "2433": "branch0_seg0", + "2434": "branch0_seg0", + "2435": "branch0_seg0", + "2436": "branch0_seg0", + "2437": "branch0_seg0", + "2438": "branch0_seg0", + "2439": "branch0_seg0", + "2440": "branch0_seg0", + "2441": "branch0_seg0", + "2442": "branch0_seg0", + "2443": "branch0_seg0", + "2444": "branch0_seg0", + "2445": "branch0_seg0", + "2446": "branch0_seg0", + "2447": "branch0_seg0", + "2448": "branch0_seg0", + "2449": "branch0_seg0", + "2450": "branch0_seg0", + "2451": "branch0_seg0", + "2452": "branch0_seg0", + "2453": "branch0_seg0", + "2454": "branch0_seg0", + "2455": "branch0_seg0", + "2456": "branch0_seg0", + "2457": "branch0_seg0", + "2458": "branch0_seg0", + "2459": "branch0_seg0", + "2460": "branch0_seg0", + "2461": "branch0_seg0", + "2462": "branch0_seg0", + "2463": "branch0_seg0", + "2464": "branch0_seg0", + "2465": "branch0_seg0", + "2466": "branch0_seg0", + "2467": "branch0_seg0", + "2468": "branch0_seg0", + "2469": "branch0_seg0", + "2470": "branch0_seg0", + "2471": "branch0_seg0", + "2472": "branch0_seg0", + "2473": "branch0_seg0", + "2474": "branch0_seg0", + "2475": "branch0_seg0", + "2476": "branch0_seg0", + "2477": "branch0_seg0", + "2478": "branch0_seg0", + "2479": "branch0_seg0", + "2480": "branch0_seg0", + "2481": "branch0_seg0", + "2482": "branch0_seg0", + "2483": "branch0_seg0", + "2484": "branch0_seg0", + "2485": "branch0_seg0", + "2486": "branch0_seg0", + "2487": "branch0_seg0", + "2488": "branch0_seg0", + "2489": "branch0_seg0", + "2490": "branch0_seg0", + "2491": "branch0_seg0", + "2492": "branch0_seg0", + "2493": "branch0_seg0", + "2494": "branch0_seg0", + "2495": "branch0_seg0", + "2496": "branch0_seg0", + "2497": "branch0_seg0", + "2498": "branch0_seg0", + "2499": "branch0_seg0", + "2500": "branch0_seg0", + "2501": "branch0_seg0", + "2502": "branch0_seg0", + "2503": "branch0_seg0", + "2504": "branch0_seg0", + "2505": "branch0_seg0", + "2506": "branch0_seg0", + "2507": "branch0_seg0", + "2508": "branch0_seg0", + "2509": "branch0_seg0", + "2510": "branch0_seg0", + "2511": "branch0_seg0", + "2512": "branch0_seg0", + "2513": "branch0_seg0", + "2514": "branch0_seg0", + "2515": "branch0_seg0", + "2516": "branch0_seg0", + "2517": "branch0_seg0", + "2518": "branch0_seg0", + "2519": "branch0_seg0", + "2520": "branch0_seg0", + "2521": "branch0_seg0", + "2522": "branch0_seg0", + "2523": "branch0_seg0", + "2524": "branch0_seg0", + "2525": "branch0_seg0", + "2526": "branch0_seg0", + "2527": "branch0_seg0", + "2528": "branch0_seg0", + "2529": "branch0_seg0", + "2530": "branch0_seg0", + "2531": "branch0_seg0", + "2532": "branch0_seg0", + "2533": "branch0_seg0", + "2534": "branch0_seg0", + "2535": "branch0_seg0", + "2536": "branch0_seg0", + "2537": "branch0_seg0", + "2538": "branch0_seg0", + "2539": "branch0_seg0", + "2540": "branch0_seg0", + "2541": "branch0_seg0", + "2542": "branch0_seg0", + "2543": "branch0_seg0", + "2544": "branch0_seg0", + "2545": "branch0_seg0", + "2546": "branch0_seg0", + "2547": "branch0_seg0", + "2548": "branch0_seg0", + "2549": "branch0_seg0", + "2550": "branch0_seg0", + "2551": "branch0_seg0", + "2552": "branch0_seg0", + "2553": "branch0_seg0", + "2554": "branch0_seg0", + "2555": "branch0_seg0", + "2556": "branch0_seg0", + "2557": "branch0_seg0", + "2558": "branch0_seg0", + "2559": "branch0_seg0", + "2560": "branch0_seg0", + "2561": "branch0_seg0", + "2562": "branch0_seg0", + "2563": "branch0_seg0", + "2564": "branch0_seg0", + "2565": "branch0_seg0", + "2566": "branch0_seg0", + "2567": "branch0_seg0", + "2568": "branch0_seg0", + "2569": "branch0_seg0", + "2570": "branch0_seg0", + "2571": "branch0_seg0", + "2572": "branch0_seg0", + "2573": "branch0_seg0", + "2574": "branch0_seg0", + "2575": "branch0_seg0", + "2576": "branch0_seg0", + "2577": "branch0_seg0", + "2578": "branch0_seg0", + "2579": "branch0_seg0", + "2580": "branch0_seg0", + "2581": "branch0_seg0", + "2582": "branch0_seg0", + "2583": "branch0_seg0", + "2584": "branch0_seg0", + "2585": "branch0_seg0", + "2586": "branch0_seg0", + "2587": "branch0_seg0", + "2588": "branch0_seg0", + "2589": "branch0_seg0", + "2590": "branch0_seg0", + "2591": "branch0_seg0", + "2592": "branch0_seg0", + "2593": "branch0_seg0", + "2594": "branch0_seg0", + "2595": "branch0_seg0", + "2596": "branch0_seg0", + "2597": "branch0_seg0", + "2598": "branch0_seg0", + "2599": "branch0_seg0", + "2600": "branch0_seg0", + "2601": "branch0_seg0", + "2602": "branch0_seg0", + "2603": "branch0_seg0", + "2604": "branch0_seg0", + "2605": "branch0_seg0", + "2606": "branch0_seg0", + "2607": "branch0_seg0", + "2608": "branch0_seg0", + "2609": "branch0_seg0", + "2610": "branch0_seg0", + "2611": "branch0_seg0", + "2612": "branch0_seg0", + "2613": "branch0_seg0", + "2614": "branch0_seg0", + "2615": "branch0_seg0", + "2616": "branch0_seg0", + "2617": "branch0_seg0", + "2618": "branch0_seg0", + "2619": "branch0_seg0", + "2620": "branch0_seg0", + "2621": "branch0_seg0", + "2622": "branch0_seg0", + "2623": "branch0_seg0", + "2624": "branch0_seg0", + "2625": "branch0_seg0", + "2626": "branch0_seg0", + "2627": "branch0_seg0", + "2628": "branch0_seg0", + "2629": "branch0_seg0", + "2630": "branch0_seg0", + "2631": "branch0_seg0", + "2632": "branch0_seg0", + "2633": "branch0_seg0", + "2634": "branch0_seg0", + "2635": "branch0_seg0", + "2636": "branch0_seg0", + "2637": "branch0_seg0", + "2638": "branch0_seg0", + "2639": "branch0_seg0", + "2640": "branch0_seg0", + "2641": "branch0_seg0", + "2642": "branch0_seg0", + "2643": "branch0_seg0", + "2644": "branch0_seg0", + "2645": "branch0_seg0", + "2646": "branch0_seg0", + "2647": "branch0_seg0", + "2648": "branch0_seg0", + "2649": "branch0_seg0", + "2650": "branch0_seg0", + "2651": "branch0_seg0", + "2652": "branch0_seg0", + "2653": "branch0_seg0", + "2654": "branch0_seg0", + "2655": "branch0_seg0", + "2656": "branch0_seg0", + "2657": "branch0_seg0", + "2658": "branch0_seg0", + "2659": "branch0_seg0", + "2660": "branch0_seg0", + "2661": "branch0_seg0", + "2662": "branch0_seg0", + "2663": "branch0_seg0", + "2664": "branch0_seg0", + "2665": "branch0_seg0", + "2666": "branch0_seg0", + "2667": "branch0_seg0", + "2668": "branch0_seg0", + "2669": "branch0_seg0", + "2670": "branch0_seg0", + "2671": "branch0_seg0", + "2672": "branch0_seg0", + "2673": "branch0_seg0", + "2674": "branch0_seg0", + "2675": "branch0_seg0", + "2676": "branch0_seg0", + "2677": "branch0_seg0", + "2678": "branch0_seg0", + "2679": "branch0_seg0", + "2680": "branch0_seg0", + "2681": "branch0_seg0", + "2682": "branch0_seg0", + "2683": "branch0_seg0", + "2684": "branch0_seg0", + "2685": "branch0_seg0", + "2686": "branch0_seg0", + "2687": "branch0_seg0", + "2688": "branch0_seg0", + "2689": "branch0_seg0", + "2690": "branch0_seg0", + "2691": "branch0_seg0", + "2692": "branch0_seg0", + "2693": "branch0_seg0", + "2694": "branch0_seg0", + "2695": "branch0_seg0", + "2696": "branch0_seg0", + "2697": "branch0_seg0", + "2698": "branch0_seg0", + "2699": "branch0_seg0", + "2700": "branch0_seg0", + "2701": "branch0_seg0", + "2702": "branch0_seg0", + "2703": "branch0_seg0", + "2704": "branch0_seg0", + "2705": "branch0_seg0", + "2706": "branch0_seg0", + "2707": "branch0_seg0", + "2708": "branch0_seg0", + "2709": "branch0_seg0", + "2710": "branch0_seg0", + "2711": "branch0_seg0", + "2712": "branch0_seg0", + "2713": "branch0_seg0", + "2714": "branch0_seg0", + "2715": "branch0_seg0", + "2716": "branch0_seg0", + "2717": "branch0_seg0", + "2718": "branch0_seg0", + "2719": "branch0_seg0", + "2720": "branch0_seg0", + "2721": "branch0_seg0", + "2722": "branch0_seg0", + "2723": "branch0_seg0", + "2724": "branch0_seg0", + "2725": "branch0_seg0", + "2726": "branch0_seg0", + "2727": "branch0_seg0", + "2728": "branch0_seg0", + "2729": "branch0_seg0", + "2730": "branch0_seg0", + "2731": "branch0_seg0", + "2732": "branch0_seg0", + "2733": "branch0_seg0", + "2734": "branch0_seg0", + "2735": "branch0_seg0", + "2736": "branch0_seg0", + "2737": "branch0_seg0", + "2738": "branch0_seg0", + "2739": "branch0_seg0", + "2740": "branch0_seg0", + "2741": "branch0_seg0", + "2742": "branch0_seg0", + "2743": "branch0_seg0", + "2744": "branch0_seg0", + "2745": "branch0_seg0", + "2746": "branch0_seg0", + "2747": "branch0_seg0", + "2748": "branch0_seg0", + "2749": "branch0_seg0", + "2750": "branch0_seg0", + "2751": "branch0_seg0", + "2752": "branch0_seg0", + "2753": "branch0_seg0", + "2754": "branch0_seg0", + "2755": "branch0_seg0", + "2756": "branch0_seg0", + "2757": "branch0_seg0", + "2758": "branch0_seg0", + "2759": "branch0_seg0", + "2760": "branch0_seg0", + "2761": "branch0_seg0", + "2762": "branch0_seg0", + "2763": "branch0_seg0", + "2764": "branch0_seg0", + "2765": "branch0_seg0", + "2766": "branch0_seg0", + "2767": "branch0_seg0", + "2768": "branch0_seg0", + "2769": "branch0_seg0", + "2770": "branch0_seg0", + "2771": "branch0_seg0", + "2772": "branch0_seg0", + "2773": "branch0_seg0", + "2774": "branch0_seg0", + "2775": "branch0_seg0", + "2776": "branch0_seg0", + "2777": "branch0_seg0", + "2778": "branch0_seg0", + "2779": "branch0_seg0", + "2780": "branch0_seg0", + "2781": "branch0_seg0", + "2782": "branch0_seg0", + "2783": "branch0_seg0", + "2784": "branch0_seg0", + "2785": "branch0_seg0", + "2786": "branch0_seg0", + "2787": "branch0_seg0", + "2788": "branch0_seg0", + "2789": "branch0_seg0", + "2790": "branch0_seg0", + "2791": "branch0_seg0", + "2792": "branch0_seg0", + "2793": "branch0_seg0", + "2794": "branch0_seg0", + "2795": "branch0_seg0", + "2796": "branch0_seg0", + "2797": "branch0_seg0", + "2798": "branch0_seg0", + "2799": "branch0_seg0", + "2800": "branch0_seg0", + "2801": "branch0_seg0", + "2802": "branch0_seg0", + "2803": "branch0_seg0", + "2804": "branch0_seg0", + "2805": "branch0_seg0", + "2806": "branch0_seg0", + "2807": "branch0_seg0", + "2808": "branch0_seg0", + "2809": "branch0_seg0", + "2810": "branch0_seg0", + "2811": "branch0_seg0", + "2812": "branch0_seg0", + "2813": "branch0_seg0", + "2814": "branch0_seg0", + "2815": "branch0_seg0", + "2816": "branch0_seg0", + "2817": "branch0_seg0", + "2818": "branch0_seg0", + "2819": "branch0_seg0", + "2820": "branch0_seg0", + "2821": "branch0_seg0", + "2822": "branch0_seg0", + "2823": "branch0_seg0", + "2824": "branch0_seg0", + "2825": "branch0_seg0", + "2826": "branch0_seg0", + "2827": "branch0_seg0", + "2828": "branch0_seg0", + "2829": "branch0_seg0", + "2830": "branch0_seg0", + "2831": "branch0_seg0", + "2832": "branch0_seg0", + "2833": "branch0_seg0", + "2834": "branch0_seg0", + "2835": "branch0_seg0", + "2836": "branch0_seg0", + "2837": "branch0_seg0", + "2838": "branch0_seg0", + "2839": "branch0_seg0", + "2840": "branch0_seg0", + "2841": "branch0_seg0", + "2842": "branch0_seg0", + "2843": "branch0_seg0", + "2844": "branch0_seg0", + "2845": "branch0_seg0", + "2846": "branch0_seg0", + "2847": "branch0_seg0", + "2848": "branch0_seg0", + "2849": "branch0_seg0", + "2850": "branch0_seg0", + "2851": "branch0_seg0", + "2852": "branch0_seg0", + "2853": "branch0_seg0", + "2854": "branch0_seg0", + "2855": "branch0_seg0", + "2856": "branch0_seg0", + "2857": "branch0_seg0", + "2858": "branch0_seg0", + "2859": "branch0_seg0", + "2860": "branch0_seg0", + "2861": "branch0_seg0", + "2862": "branch0_seg0", + "2863": "branch0_seg0", + "2864": "branch0_seg0", + "2865": "branch0_seg0", + "2866": "branch0_seg0", + "2867": "branch0_seg0", + "2868": "branch0_seg0", + "2869": "branch0_seg0", + "2870": "branch0_seg0", + "2871": "branch0_seg0", + "2872": "branch0_seg0", + "2873": "branch0_seg0", + "2874": "branch0_seg0", + "2875": "branch0_seg0", + "2876": "branch0_seg0", + "2877": "branch0_seg0", + "2878": "branch0_seg0", + "2879": "branch0_seg0", + "2880": "branch0_seg0", + "2881": "branch0_seg0", + "2882": "branch0_seg0", + "2883": "branch0_seg0", + "2884": "branch0_seg0", + "2885": "branch0_seg0", + "2886": "branch0_seg0", + "2887": "branch0_seg0", + "2888": "branch0_seg0", + "2889": "branch0_seg0", + "2890": "branch0_seg0", + "2891": "branch0_seg0", + "2892": "branch0_seg0", + "2893": "branch0_seg0", + "2894": "branch0_seg0", + "2895": "branch0_seg0", + "2896": "branch0_seg0", + "2897": "branch0_seg0", + "2898": "branch0_seg0", + "2899": "branch0_seg0", + "2900": "branch0_seg0", + "2901": "branch0_seg0", + "2902": "branch0_seg0", + "2903": "branch0_seg0", + "2904": "branch0_seg0", + "2905": "branch0_seg0", + "2906": "branch0_seg0", + "2907": "branch0_seg0", + "2908": "branch0_seg0", + "2909": "branch0_seg0", + "2910": "branch0_seg0", + "2911": "branch0_seg0", + "2912": "branch0_seg0", + "2913": "branch0_seg0", + "2914": "branch0_seg0", + "2915": "branch0_seg0", + "2916": "branch0_seg0", + "2917": "branch0_seg0", + "2918": "branch0_seg0", + "2919": "branch0_seg0", + "2920": "branch0_seg0", + "2921": "branch0_seg0", + "2922": "branch0_seg0", + "2923": "branch0_seg0", + "2924": "branch0_seg0", + "2925": "branch0_seg0", + "2926": "branch0_seg0", + "2927": "branch0_seg0", + "2928": "branch0_seg0", + "2929": "branch0_seg0", + "2930": "branch0_seg0", + "2931": "branch0_seg0", + "2932": "branch0_seg0", + "2933": "branch0_seg0", + "2934": "branch0_seg0", + "2935": "branch0_seg0", + "2936": "branch0_seg0", + "2937": "branch0_seg0", + "2938": "branch0_seg0", + "2939": "branch0_seg0", + "2940": "branch0_seg0", + "2941": "branch0_seg0", + "2942": "branch0_seg0", + "2943": "branch0_seg0", + "2944": "branch0_seg0", + "2945": "branch0_seg0", + "2946": "branch0_seg0", + "2947": "branch0_seg0", + "2948": "branch0_seg0", + "2949": "branch0_seg0", + "2950": "branch0_seg0", + "2951": "branch0_seg0", + "2952": "branch0_seg0", + "2953": "branch0_seg0", + "2954": "branch0_seg0", + "2955": "branch0_seg0", + "2956": "branch0_seg0", + "2957": "branch0_seg0", + "2958": "branch0_seg0", + "2959": "branch0_seg0", + "2960": "branch0_seg0", + "2961": "branch0_seg0", + "2962": "branch0_seg0", + "2963": "branch0_seg0", + "2964": "branch0_seg0", + "2965": "branch0_seg0", + "2966": "branch0_seg0", + "2967": "branch0_seg0", + "2968": "branch0_seg0", + "2969": "branch0_seg0", + "2970": "branch0_seg0", + "2971": "branch0_seg0", + "2972": "branch0_seg0", + "2973": "branch0_seg0", + "2974": "branch0_seg0", + "2975": "branch0_seg0", + "2976": "branch0_seg0", + "2977": "branch0_seg0", + "2978": "branch0_seg0", + "2979": "branch0_seg0", + "2980": "branch0_seg0", + "2981": "branch0_seg0", + "2982": "branch0_seg0", + "2983": "branch0_seg0", + "2984": "branch0_seg0", + "2985": "branch0_seg0", + "2986": "branch0_seg0", + "2987": "branch0_seg0", + "2988": "branch0_seg0", + "2989": "branch0_seg0", + "2990": "branch0_seg0", + "2991": "branch0_seg0", + "2992": "branch0_seg0", + "2993": "branch0_seg0", + "2994": "branch0_seg0", + "2995": "branch0_seg0", + "2996": "branch0_seg0", + "2997": "branch0_seg0", + "2998": "branch0_seg0", + "2999": "branch0_seg0", + "3000": "branch0_seg0", + "3001": "branch0_seg0", + "3002": "branch0_seg0", + "3003": "branch0_seg0", + "3004": "branch0_seg0", + "3005": "branch0_seg0", + "3006": "branch0_seg0", + "3007": "branch0_seg0", + "3008": "branch0_seg0", + "3009": "branch0_seg0", + "3010": "branch0_seg0", + "3011": "branch0_seg0", + "3012": "branch0_seg0", + "3013": "branch0_seg0", + "3014": "branch0_seg0", + "3015": "branch0_seg0", + "3016": "branch0_seg0", + "3017": "branch0_seg0", + "3018": "branch0_seg0", + "3019": "branch0_seg0", + "3020": "branch0_seg0", + "3021": "branch0_seg0", + "3022": "branch0_seg0", + "3023": "branch0_seg0", + "3024": "branch0_seg0", + "3025": "branch0_seg0", + "3026": "branch0_seg0", + "3027": "branch0_seg0", + "3028": "branch0_seg0", + "3029": "branch0_seg0", + "3030": "branch0_seg0", + "3031": "branch0_seg0", + "3032": "branch0_seg0", + "3033": "branch0_seg0", + "3034": "branch0_seg0", + "3035": "branch0_seg0", + "3036": "branch0_seg0", + "3037": "branch0_seg0", + "3038": "branch0_seg0", + "3039": "branch0_seg0", + "3040": "branch0_seg0", + "3041": "branch0_seg0", + "3042": "branch0_seg0", + "3043": "branch0_seg0", + "3044": "branch0_seg0", + "3045": "branch0_seg0", + "3046": "branch0_seg0", + "3047": "branch0_seg0", + "3048": "branch0_seg0", + "3049": "branch0_seg0", + "3050": "branch0_seg0", + "3051": "branch0_seg0", + "3052": "branch0_seg0", + "3053": "branch0_seg0", + "3054": "branch0_seg0", + "3055": "branch0_seg0", + "3056": "branch0_seg0", + "3057": "branch0_seg0", + "3058": "branch0_seg0", + "3059": "branch0_seg0", + "3060": "branch0_seg0", + "3061": "branch0_seg0", + "3062": "branch0_seg0", + "3063": "branch0_seg0", + "3064": "branch0_seg0", + "3065": "branch0_seg0", + "3066": "branch0_seg0", + "3067": "branch0_seg0", + "3068": "branch0_seg0", + "3069": "branch0_seg0", + "3070": "branch0_seg0", + "3071": "branch0_seg0", + "3072": "branch0_seg0", + "3073": "branch0_seg0", + "3074": "branch0_seg0", + "3075": "branch0_seg0", + "3076": "branch0_seg0", + "3077": "branch0_seg0", + "3078": "branch0_seg0", + "3079": "branch0_seg0", + "3080": "branch0_seg0", + "3081": "branch0_seg0", + "3082": "branch0_seg0", + "3083": "branch0_seg0", + "3084": "branch0_seg0", + "3085": "branch0_seg0", + "3086": "branch0_seg0", + "3087": "branch0_seg0", + "3088": "branch0_seg0", + "3089": "branch0_seg0", + "3090": "branch0_seg0", + "3091": "branch0_seg0", + "3092": "branch0_seg0", + "3093": "branch0_seg0", + "3094": "branch0_seg0", + "3095": "branch0_seg0", + "3096": "branch0_seg0", + "3097": "branch0_seg0", + "3098": "branch0_seg0", + "3099": "branch0_seg0", + "3100": "branch0_seg0", + "3101": "branch0_seg0", + "3102": "branch0_seg0", + "3103": "branch0_seg0", + "3104": "branch0_seg0", + "3105": "branch0_seg0", + "3106": "branch0_seg0", + "3107": "branch0_seg0", + "3108": "branch0_seg0", + "3109": "branch0_seg0", + "3110": "branch0_seg0", + "3111": "branch0_seg0", + "3112": "branch0_seg0", + "3113": "branch0_seg0", + "3114": "branch0_seg0", + "3115": "branch0_seg0", + "3116": "branch0_seg0", + "3117": "branch0_seg0", + "3118": "branch0_seg0", + "3119": "branch0_seg0", + "3120": "branch0_seg0", + "3121": "branch0_seg0", + "3122": "branch0_seg0", + "3123": "branch0_seg0", + "3124": "branch0_seg0", + "3125": "branch0_seg0", + "3126": "branch0_seg0", + "3127": "branch0_seg0", + "3128": "branch0_seg0", + "3129": "branch0_seg0", + "3130": "branch0_seg0", + "3131": "branch0_seg0", + "3132": "branch0_seg0", + "3133": "branch0_seg0", + "3134": "branch0_seg0", + "3135": "branch0_seg0", + "3136": "branch0_seg0", + "3137": "branch0_seg0", + "3138": "branch0_seg0", + "3139": "branch0_seg0", + "3140": "branch0_seg0", + "3141": "branch0_seg0", + "3142": "branch0_seg0", + "3143": "branch0_seg0", + "3144": "branch0_seg0", + "3145": "branch0_seg0", + "3146": "branch0_seg0", + "3147": "branch0_seg0", + "3148": "branch0_seg0", + "3149": "branch0_seg0", + "3150": "branch0_seg0", + "3151": "branch0_seg0", + "3152": "branch0_seg0", + "3153": "branch0_seg0", + "3154": "branch0_seg0", + "3155": "branch0_seg0", + "3156": "branch0_seg0", + "3157": "branch0_seg0", + "3158": "branch0_seg0", + "3159": "branch0_seg0", + "3160": "branch0_seg0", + "3161": "branch0_seg0", + "3162": "branch0_seg0", + "3163": "branch0_seg0", + "3164": "branch0_seg0", + "3165": "branch0_seg0", + "3166": "branch0_seg0", + "3167": "branch0_seg0", + "3168": "branch0_seg0", + "3169": "branch0_seg0", + "3170": "branch0_seg0", + "3171": "branch0_seg0", + "3172": "branch0_seg0", + "3173": "branch0_seg0", + "3174": "branch0_seg0", + "3175": "branch0_seg0", + "3176": "branch0_seg0", + "3177": "branch0_seg0", + "3178": "branch0_seg0", + "3179": "branch0_seg0", + "3180": "branch0_seg0", + "3181": "branch0_seg0", + "3182": "branch0_seg0", + "3183": "branch0_seg0", + "3184": "branch0_seg0", + "3185": "branch0_seg0", + "3186": "branch0_seg0", + "3187": "branch0_seg0", + "3188": "branch0_seg0", + "3189": "branch0_seg0", + "3190": "branch0_seg0", + "3191": "branch0_seg0", + "3192": "branch0_seg0", + "3193": "branch0_seg0", + "3194": "branch0_seg0", + "3195": "branch0_seg0", + "3196": "branch0_seg0", + "3197": "branch0_seg0", + "3198": "branch0_seg0", + "3199": "branch0_seg0", + "3200": "branch0_seg0", + "3201": "branch0_seg0", + "3202": "branch0_seg0", + "3203": "branch0_seg0", + "3204": "branch0_seg0", + "3205": "branch0_seg0", + "3206": "branch0_seg0", + "3207": "branch0_seg0", + "3208": "branch0_seg0", + "3209": "branch0_seg0", + "3210": "branch0_seg0", + "3211": "branch0_seg0", + "3212": "branch0_seg0", + "3213": "branch0_seg0", + "3214": "branch0_seg0", + "3215": "branch0_seg0", + "3216": "branch0_seg0", + "3217": "branch0_seg0", + "3218": "branch0_seg0", + "3219": "branch0_seg0", + "3220": "branch0_seg0", + "3221": "branch0_seg0", + "3222": "branch0_seg0", + "3223": "branch0_seg0", + "3224": "branch0_seg0", + "3225": "branch0_seg0", + "3226": "branch0_seg0", + "3227": "branch0_seg0", + "3228": "branch0_seg0", + "3229": "branch0_seg0", + "3230": "branch0_seg0", + "3231": "branch0_seg0", + "3232": "branch0_seg0", + "3233": "branch0_seg0", + "3234": "branch0_seg0", + "3235": "branch0_seg0", + "3236": "branch0_seg0", + "3237": "branch0_seg0", + "3238": "branch0_seg0", + "3239": "branch0_seg0", + "3240": "branch0_seg0", + "3241": "branch0_seg0", + "3242": "branch0_seg0", + "3243": "branch0_seg0", + "3244": "branch0_seg0", + "3245": "branch0_seg0", + "3246": "branch0_seg0", + "3247": "branch0_seg0", + "3248": "branch0_seg0", + "3249": "branch0_seg0", + "3250": "branch0_seg0", + "3251": "branch0_seg0", + "3252": "branch0_seg0", + "3253": "branch0_seg0", + "3254": "branch0_seg0", + "3255": "branch0_seg0", + "3256": "branch0_seg0", + "3257": "branch0_seg0", + "3258": "branch0_seg0", + "3259": "branch0_seg0", + "3260": "branch0_seg0", + "3261": "branch0_seg0", + "3262": "branch0_seg0", + "3263": "branch0_seg0", + "3264": "branch0_seg0", + "3265": "branch0_seg0", + "3266": "branch0_seg0", + "3267": "branch0_seg0", + "3268": "branch0_seg0", + "3269": "branch0_seg0", + "3270": "branch0_seg0", + "3271": "branch0_seg0", + "3272": "branch0_seg0", + "3273": "branch0_seg0", + "3274": "branch0_seg0", + "3275": "branch0_seg0", + "3276": "branch0_seg0", + "3277": "branch0_seg0", + "3278": "branch0_seg0", + "3279": "branch0_seg0", + "3280": "branch0_seg0", + "3281": "branch0_seg0", + "3282": "branch0_seg0", + "3283": "branch0_seg0", + "3284": "branch0_seg0", + "3285": "branch0_seg0", + "3286": "branch0_seg0", + "3287": "branch0_seg0", + "3288": "branch0_seg0", + "3289": "branch0_seg0", + "3290": "branch0_seg0", + "3291": "branch0_seg0", + "3292": "branch0_seg0", + "3293": "branch0_seg0", + "3294": "branch0_seg0", + "3295": "branch0_seg0", + "3296": "branch0_seg0", + "3297": "branch0_seg0", + "3298": "branch0_seg0", + "3299": "branch0_seg0", + "3300": "branch0_seg0", + "3301": "branch0_seg0", + "3302": "branch0_seg0", + "3303": "branch0_seg0", + "3304": "branch0_seg0", + "3305": "branch0_seg0", + "3306": "branch0_seg0", + "3307": "branch0_seg0", + "3308": "branch0_seg0", + "3309": "branch0_seg0", + "3310": "branch0_seg0", + "3311": "branch0_seg0", + "3312": "branch0_seg0", + "3313": "branch0_seg0", + "3314": "branch0_seg0", + "3315": "branch0_seg0", + "3316": "branch0_seg0", + "3317": "branch0_seg0", + "3318": "branch0_seg0", + "3319": "branch0_seg0", + "3320": "branch0_seg0", + "3321": "branch0_seg0", + "3322": "branch0_seg0", + "3323": "branch0_seg0", + "3324": "branch0_seg0", + "3325": "branch0_seg0", + "3326": "branch0_seg0", + "3327": "branch0_seg0", + "3328": "branch0_seg0", + "3329": "branch0_seg0", + "3330": "branch0_seg0", + "3331": "branch0_seg0", + "3332": "branch0_seg0", + "3333": "branch0_seg0", + "3334": "branch0_seg0", + "3335": "branch0_seg0", + "3336": "branch0_seg0", + "3337": "branch0_seg0", + "3338": "branch0_seg0", + "3339": "branch0_seg0", + "3340": "branch0_seg0", + "3341": "branch0_seg0", + "3342": "branch0_seg0", + "3343": "branch0_seg0", + "3344": "branch0_seg0", + "3345": "branch0_seg0", + "3346": "branch0_seg0", + "3347": "branch0_seg0", + "3348": "branch0_seg0", + "3349": "branch0_seg0", + "3350": "branch0_seg0", + "3351": "branch0_seg0", + "3352": "branch0_seg0", + "3353": "branch0_seg0", + "3354": "branch0_seg0", + "3355": "branch0_seg0", + "3356": "branch0_seg0", + "3357": "branch0_seg0", + "3358": "branch0_seg0", + "3359": "branch0_seg0", + "3360": "branch0_seg0", + "3361": "branch0_seg0", + "3362": "branch0_seg0", + "3363": "branch0_seg0", + "3364": "branch0_seg0", + "3365": "branch0_seg0", + "3366": "branch0_seg0", + "3367": "branch0_seg0", + "3368": "branch0_seg0", + "3369": "branch0_seg0", + "3370": "branch0_seg0", + "3371": "branch0_seg0", + "3372": "branch0_seg0", + "3373": "branch0_seg0", + "3374": "branch0_seg0", + "3375": "branch0_seg0", + "3376": "branch0_seg0", + "3377": "branch0_seg0", + "3378": "branch0_seg0", + "3379": "branch0_seg0", + "3380": "branch0_seg0", + "3381": "branch0_seg0", + "3382": "branch0_seg0", + "3383": "branch0_seg0", + "3384": "branch0_seg0", + "3385": "branch0_seg0", + "3386": "branch0_seg0", + "3387": "branch0_seg0", + "3388": "branch0_seg0", + "3389": "branch0_seg0", + "3390": "branch0_seg0", + "3391": "branch0_seg0", + "3392": "branch0_seg0", + "3393": "branch0_seg0", + "3394": "branch0_seg0", + "3395": "branch0_seg0", + "3396": "branch0_seg0", + "3397": "branch0_seg0", + "3398": "branch0_seg0", + "3399": "branch0_seg0", + "3400": "branch0_seg0", + "3401": "branch0_seg0", + "3402": "branch0_seg0", + "3403": "branch0_seg0", + "3404": "branch0_seg0", + "3405": "branch0_seg0", + "3406": "branch0_seg0", + "3407": "branch0_seg0", + "3408": "branch0_seg0", + "3409": "branch0_seg0", + "3410": "branch0_seg0", + "3411": "branch0_seg0", + "3412": "branch0_seg0", + "3413": "branch0_seg0", + "3414": "branch0_seg0", + "3415": "branch0_seg0", + "3416": "branch0_seg0", + "3417": "branch0_seg0", + "3418": "branch0_seg0", + "3419": "branch0_seg0", + "3420": "branch0_seg0", + "3421": "branch0_seg0", + "3422": "branch0_seg0", + "3423": "branch0_seg0", + "3424": "branch0_seg0", + "3425": "branch0_seg0", + "3426": "branch0_seg0", + "3427": "branch0_seg0", + "3428": "branch0_seg0", + "3429": "branch0_seg0", + "3430": "branch0_seg0", + "3431": "branch0_seg0", + "3432": "branch0_seg0", + "3433": "branch0_seg0", + "3434": "branch0_seg0", + "3435": "branch0_seg0", + "3436": "branch0_seg0", + "3437": "branch0_seg0", + "3438": "branch0_seg0", + "3439": "branch0_seg0", + "3440": "branch0_seg0", + "3441": "branch0_seg0", + "3442": "branch0_seg0", + "3443": "branch0_seg0", + "3444": "branch0_seg0", + "3445": "branch0_seg0", + "3446": "branch0_seg0", + "3447": "branch0_seg0", + "3448": "branch0_seg0", + "3449": "branch0_seg0", + "3450": "branch0_seg0", + "3451": "branch0_seg0", + "3452": "branch0_seg0", + "3453": "branch0_seg0", + "3454": "branch0_seg0", + "3455": "branch0_seg0", + "3456": "branch0_seg0", + "3457": "branch0_seg0", + "3458": "branch0_seg0", + "3459": "branch0_seg0", + "3460": "branch0_seg0", + "3461": "branch0_seg0", + "3462": "branch0_seg0", + "3463": "branch0_seg0", + "3464": "branch0_seg0", + "3465": "branch0_seg0", + "3466": "branch0_seg0", + "3467": "branch0_seg0", + "3468": "branch0_seg0", + "3469": "branch0_seg0", + "3470": "branch0_seg0", + "3471": "branch0_seg0", + "3472": "branch0_seg0", + "3473": "branch0_seg0", + "3474": "branch0_seg0", + "3475": "branch0_seg0", + "3476": "branch0_seg0", + "3477": "branch0_seg0", + "3478": "branch0_seg0", + "3479": "branch0_seg0", + "3480": "branch0_seg0", + "3481": "branch0_seg0", + "3482": "branch0_seg0", + "3483": "branch0_seg0", + "3484": "branch0_seg0", + "3485": "branch0_seg0", + "3486": "branch0_seg0", + "3487": "branch0_seg0", + "3488": "branch0_seg0", + "3489": "branch0_seg0", + "3490": "branch0_seg0", + "3491": "branch0_seg0", + "3492": "branch0_seg0", + "3493": "branch0_seg0", + "3494": "branch0_seg0", + "3495": "branch0_seg0", + "3496": "branch0_seg0", + "3497": "branch0_seg0", + "3498": "branch0_seg0", + "3499": "branch0_seg0", + "3500": "branch0_seg0", + "3501": "branch0_seg0", + "3502": "branch0_seg0", + "3503": "branch0_seg0", + "3504": "branch0_seg0", + "3505": "branch0_seg0", + "3506": "branch0_seg0", + "3507": "branch0_seg0", + "3508": "branch0_seg0", + "3509": "branch0_seg0", + "3510": "branch0_seg0", + "3511": "branch0_seg0", + "3512": "branch0_seg0", + "3513": "branch0_seg0", + "3514": "branch0_seg0", + "3515": "branch0_seg0", + "3516": "branch0_seg0", + "3517": "branch0_seg0", + "3518": "branch0_seg0", + "3519": "branch0_seg0", + "3520": "branch0_seg0", + "3521": "branch0_seg0", + "3522": "branch0_seg0", + "3523": "branch0_seg0", + "3524": "branch0_seg0", + "3525": "branch0_seg0", + "3526": "branch0_seg0", + "3527": "branch0_seg0", + "3528": "branch0_seg0", + "3529": "branch0_seg0", + "3530": "branch0_seg0", + "3531": "branch0_seg0", + "3532": "branch0_seg0", + "3533": "branch0_seg0", + "3534": "branch0_seg0", + "3535": "branch0_seg0", + "3536": "branch0_seg0", + "3537": "branch0_seg0", + "3538": "branch0_seg0", + "3539": "branch0_seg0", + "3540": "branch0_seg0", + "3541": "branch0_seg0", + "3542": "branch0_seg0", + "3543": "branch0_seg0", + "3544": "branch0_seg0", + "3545": "branch0_seg0", + "3546": "branch0_seg0", + "3547": "branch0_seg0", + "3548": "branch0_seg0", + "3549": "branch0_seg0", + "3550": "branch0_seg0", + "3551": "branch0_seg0", + "3552": "branch0_seg0", + "3553": "branch0_seg0", + "3554": "branch0_seg0", + "3555": "branch0_seg0", + "3556": "branch0_seg0", + "3557": "branch0_seg0", + "3558": "branch0_seg0", + "3559": "branch0_seg0", + "3560": "branch0_seg0", + "3561": "branch0_seg0", + "3562": "branch0_seg0", + "3563": "branch0_seg0", + "3564": "branch0_seg0", + "3565": "branch0_seg0", + "3566": "branch0_seg0", + "3567": "branch0_seg0", + "3568": "branch0_seg0", + "3569": "branch0_seg0", + "3570": "branch0_seg0", + "3571": "branch0_seg0", + "3572": "branch0_seg0", + "3573": "branch0_seg0", + "3574": "branch0_seg0", + "3575": "branch0_seg0", + "3576": "branch0_seg0", + "3577": "branch0_seg0", + "3578": "branch0_seg0", + "3579": "branch0_seg0", + "3580": "branch0_seg0", + "3581": "branch0_seg0", + "3582": "branch0_seg0", + "3583": "branch0_seg0", + "3584": "branch0_seg0", + "3585": "branch0_seg0", + "3586": "branch0_seg0", + "3587": "branch0_seg0", + "3588": "branch0_seg0", + "3589": "branch0_seg0", + "3590": "branch0_seg0", + "3591": "branch0_seg0", + "3592": "branch0_seg0", + "3593": "branch0_seg0", + "3594": "branch0_seg0", + "3595": "branch0_seg0", + "3596": "branch0_seg0", + "3597": "branch0_seg0", + "3598": "branch0_seg0", + "3599": "branch0_seg0", + "3600": "branch0_seg0", + "3601": "branch0_seg0", + "3602": "branch0_seg0", + "3603": "branch0_seg0", + "3604": "branch0_seg0", + "3605": "branch0_seg0", + "3606": "branch0_seg0", + "3607": "branch0_seg0", + "3608": "branch0_seg0", + "3609": "branch0_seg0", + "3610": "branch0_seg0", + "3611": "branch0_seg0", + "3612": "branch0_seg0", + "3613": "branch0_seg0", + "3614": "branch0_seg0", + "3615": "branch0_seg0", + "3616": "branch0_seg0", + "3617": "branch0_seg0", + "3618": "branch0_seg0", + "3619": "branch0_seg0", + "3620": "branch0_seg0", + "3621": "branch0_seg0", + "3622": "branch0_seg0", + "3623": "branch0_seg0", + "3624": "branch0_seg0", + "3625": "branch0_seg0", + "3626": "branch0_seg0", + "3627": "branch0_seg0", + "3628": "branch0_seg0", + "3629": "branch0_seg0", + "3630": "branch0_seg0", + "3631": "branch0_seg0", + "3632": "branch0_seg0", + "3633": "branch0_seg0", + "3634": "branch0_seg0", + "3635": "branch0_seg0", + "3636": "branch0_seg0", + "3637": "branch0_seg0", + "3638": "branch0_seg0", + "3639": "branch0_seg0", + "3640": "branch0_seg0", + "3641": "branch0_seg0", + "3642": "branch0_seg0", + "3643": "branch0_seg0", + "3644": "branch0_seg0", + "3645": "branch0_seg0", + "3646": "branch0_seg0", + "3647": "branch0_seg0", + "3648": "branch0_seg0", + "3649": "branch0_seg0", + "3650": "branch0_seg0", + "3651": "branch0_seg0", + "3652": "branch0_seg0", + "3653": "branch0_seg0", + "3654": "branch0_seg0", + "3655": "branch0_seg0", + "3656": "branch0_seg0", + "3657": "branch0_seg0", + "3658": "branch0_seg0", + "3659": "branch0_seg0", + "3660": "branch0_seg0", + "3661": "branch0_seg0", + "3662": "branch0_seg0", + "3663": "branch0_seg0", + "3664": "branch0_seg0", + "3665": "branch0_seg0", + "3666": "branch0_seg0", + "3667": "branch0_seg0", + "3668": "branch0_seg0", + "3669": "branch0_seg0", + "3670": "branch0_seg0", + "3671": "branch0_seg0", + "3672": "branch0_seg0", + "3673": "branch0_seg0", + "3674": "branch0_seg0", + "3675": "branch0_seg0", + "3676": "branch0_seg0", + "3677": "branch0_seg0", + "3678": "branch0_seg0", + "3679": "branch0_seg0", + "3680": "branch0_seg0", + "3681": "branch0_seg0", + "3682": "branch0_seg0", + "3683": "branch0_seg0", + "3684": "branch0_seg0", + "3685": "branch0_seg0", + "3686": "branch0_seg0", + "3687": "branch0_seg0", + "3688": "branch0_seg0", + "3689": "branch0_seg0", + "3690": "branch0_seg0", + "3691": "branch0_seg0", + "3692": "branch0_seg0", + "3693": "branch0_seg0", + "3694": "branch0_seg0", + "3695": "branch0_seg0", + "3696": "branch0_seg0", + "3697": "branch0_seg0", + "3698": "branch0_seg0", + "3699": "branch0_seg0", + "3700": "branch0_seg0", + "3701": "branch0_seg0", + "3702": "branch0_seg0", + "3703": "branch0_seg0", + "3704": "branch0_seg0", + "3705": "branch0_seg0", + "3706": "branch0_seg0", + "3707": "branch0_seg0", + "3708": "branch0_seg0", + "3709": "branch0_seg0", + "3710": "branch0_seg0", + "3711": "branch0_seg0", + "3712": "branch0_seg0", + "3713": "branch0_seg0", + "3714": "branch0_seg0", + "3715": "branch0_seg0", + "3716": "branch0_seg0", + "3717": "branch0_seg0", + "3718": "branch0_seg0", + "3719": "branch0_seg0", + "3720": "branch0_seg0", + "3721": "branch0_seg0", + "3722": "branch0_seg0", + "3723": "branch0_seg0", + "3724": "branch0_seg0", + "3725": "branch0_seg0", + "3726": "branch0_seg0", + "3727": "branch0_seg0", + "3728": "branch0_seg0", + "3729": "branch0_seg0", + "3730": "branch0_seg0", + "3731": "branch0_seg0", + "3732": "branch0_seg0", + "3733": "branch0_seg0", + "3734": "branch0_seg0", + "3735": "branch0_seg0", + "3736": "branch0_seg0", + "3737": "branch0_seg0", + "3738": "branch0_seg0", + "3739": "branch0_seg0", + "3740": "branch0_seg0", + "3741": "branch0_seg0", + "3742": "branch0_seg0", + "3743": "branch0_seg0", + "3744": "branch0_seg0", + "3745": "branch0_seg0", + "3746": "branch0_seg0", + "3747": "branch0_seg0", + "3748": "branch0_seg0", + "3749": "branch0_seg0", + "3750": "branch0_seg0", + "3751": "branch0_seg0", + "3752": "branch0_seg0", + "3753": "branch0_seg0", + "3754": "branch0_seg0", + "3755": "branch0_seg0", + "3756": "branch0_seg0", + "3757": "branch0_seg0", + "3758": "branch0_seg0", + "3759": "branch0_seg0", + "3760": "branch0_seg0", + "3761": "branch0_seg0", + "3762": "branch0_seg0", + "3763": "branch0_seg0", + "3764": "branch0_seg0", + "3765": "branch0_seg0", + "3766": "branch0_seg0", + "3767": "branch0_seg0", + "3768": "branch0_seg0", + "3769": "branch0_seg0", + "3770": "branch0_seg0", + "3771": "branch0_seg0", + "3772": "branch0_seg0", + "3773": "branch0_seg0", + "3774": "branch0_seg0", + "3775": "branch0_seg0", + "3776": "branch0_seg0", + "3777": "branch0_seg0", + "3778": "branch0_seg0", + "3779": "branch0_seg0", + "3780": "branch0_seg0", + "3781": "branch0_seg0", + "3782": "branch0_seg0", + "3783": "branch0_seg0", + "3784": "branch0_seg0", + "3785": "branch0_seg0", + "3786": "branch0_seg0", + "3787": "branch0_seg0", + "3788": "branch0_seg0", + "3789": "branch0_seg0", + "3790": "branch0_seg0", + "3791": "branch0_seg0", + "3792": "branch0_seg0", + "3793": "branch0_seg0", + "3794": "branch0_seg0", + "3795": "branch0_seg0", + "3796": "branch0_seg0", + "3797": "branch0_seg0", + "3798": "branch0_seg0", + "3799": "branch0_seg0", + "3800": "branch0_seg0", + "3801": "branch0_seg0", + "3802": "branch0_seg0", + "3803": "branch0_seg0", + "3804": "branch0_seg0", + "3805": "branch0_seg0", + "3806": "branch0_seg0", + "3807": "branch0_seg0", + "3808": "branch0_seg0", + "3809": "branch0_seg0", + "3810": "branch0_seg0", + "3811": "branch0_seg0", + "3812": "branch0_seg0", + "3813": "branch0_seg0", + "3814": "branch0_seg0", + "3815": "branch0_seg0", + "3816": "branch0_seg0", + "3817": "branch0_seg0", + "3818": "branch0_seg0", + "3819": "branch0_seg0", + "3820": "branch0_seg0", + "3821": "branch0_seg0", + "3822": "branch0_seg0", + "3823": "branch0_seg0", + "3824": "branch0_seg0", + "3825": "branch0_seg0", + "3826": "branch0_seg0", + "3827": "branch0_seg0", + "3828": "branch0_seg0", + "3829": "branch0_seg0", + "3830": "branch0_seg0", + "3831": "branch0_seg0", + "3832": "branch0_seg0", + "3833": "branch0_seg0", + "3834": "branch0_seg0", + "3835": "branch0_seg0", + "3836": "branch0_seg0", + "3837": "branch0_seg0", + "3838": "branch0_seg0", + "3839": "branch0_seg0", + "3840": "branch0_seg0", + "3841": "branch0_seg0", + "3842": "branch0_seg0", + "3843": "branch0_seg0", + "3844": "branch0_seg0", + "3845": "branch0_seg0", + "3846": "branch0_seg0", + "3847": "branch0_seg0", + "3848": "branch0_seg0", + "3849": "branch0_seg0", + "3850": "branch0_seg0", + "3851": "branch0_seg0", + "3852": "branch0_seg0", + "3853": "branch0_seg0", + "3854": "branch0_seg0", + "3855": "branch0_seg0", + "3856": "branch0_seg0", + "3857": "branch0_seg0", + "3858": "branch0_seg0", + "3859": "branch0_seg0", + "3860": "branch0_seg0", + "3861": "branch0_seg0", + "3862": "branch0_seg0", + "3863": "branch0_seg0", + "3864": "branch0_seg0", + "3865": "branch0_seg0", + "3866": "branch0_seg0", + "3867": "branch0_seg0", + "3868": "branch0_seg0", + "3869": "branch0_seg0", + "3870": "branch0_seg0", + "3871": "branch0_seg0", + "3872": "branch0_seg0", + "3873": "branch0_seg0", + "3874": "branch0_seg0", + "3875": "branch0_seg0", + "3876": "branch0_seg0", + "3877": "branch0_seg0", + "3878": "branch0_seg0", + "3879": "branch0_seg0", + "3880": "branch0_seg0", + "3881": "branch0_seg0", + "3882": "branch0_seg0", + "3883": "branch0_seg0", + "3884": "branch0_seg0", + "3885": "branch0_seg0", + "3886": "branch0_seg0", + "3887": "branch0_seg0", + "3888": "branch0_seg0", + "3889": "branch0_seg0", + "3890": "branch0_seg0", + "3891": "branch0_seg0", + "3892": "branch0_seg0", + "3893": "branch0_seg0", + "3894": "branch0_seg0", + "3895": "branch0_seg0", + "3896": "branch0_seg0", + "3897": "branch0_seg0", + "3898": "branch0_seg0", + "3899": "branch0_seg0", + "3900": "branch0_seg0", + "3901": "branch0_seg0", + "3902": "branch0_seg0", + "3903": "branch0_seg0", + "3904": "branch0_seg0", + "3905": "branch0_seg0", + "3906": "branch0_seg0", + "3907": "branch0_seg0", + "3908": "branch0_seg0", + "3909": "branch0_seg0", + "3910": "branch0_seg0", + "3911": "branch0_seg0", + "3912": "branch0_seg0", + "3913": "branch0_seg0", + "3914": "branch0_seg0", + "3915": "branch0_seg0", + "3916": "branch0_seg0", + "3917": "branch0_seg0", + "3918": "branch0_seg0", + "3919": "branch0_seg0", + "3920": "branch0_seg0", + "3921": "branch0_seg0", + "3922": "branch0_seg0", + "3923": "branch0_seg0", + "3924": "branch0_seg0", + "3925": "branch0_seg0", + "3926": "branch0_seg0", + "3927": "branch0_seg0", + "3928": "branch0_seg0", + "3929": "branch0_seg0", + "3930": "branch0_seg0", + "3931": "branch0_seg0", + "3932": "branch0_seg0", + "3933": "branch0_seg0", + "3934": "branch0_seg0", + "3935": "branch0_seg0", + "3936": "branch0_seg0", + "3937": "branch0_seg0", + "3938": "branch0_seg0", + "3939": "branch0_seg0", + "3940": "branch0_seg0", + "3941": "branch0_seg0", + "3942": "branch0_seg0", + "3943": "branch0_seg0", + "3944": "branch0_seg0", + "3945": "branch0_seg0", + "3946": "branch0_seg0", + "3947": "branch0_seg0", + "3948": "branch0_seg0", + "3949": "branch0_seg0", + "3950": "branch0_seg0", + "3951": "branch0_seg0", + "3952": "branch0_seg0", + "3953": "branch0_seg0", + "3954": "branch0_seg0", + "3955": "branch0_seg0", + "3956": "branch0_seg0", + "3957": "branch0_seg0", + "3958": "branch0_seg0", + "3959": "branch0_seg0", + "3960": "branch0_seg0", + "3961": "branch0_seg0", + "3962": "branch0_seg0", + "3963": "branch0_seg0", + "3964": "branch0_seg0", + "3965": "branch0_seg0", + "3966": "branch0_seg0", + "3967": "branch0_seg0", + "3968": "branch0_seg0", + "3969": "branch0_seg0", + "3970": "branch0_seg0", + "3971": "branch0_seg0", + "3972": "branch0_seg0", + "3973": "branch0_seg0", + "3974": "branch0_seg0", + "3975": "branch0_seg0", + "3976": "branch0_seg0", + "3977": "branch0_seg0", + "3978": "branch0_seg0", + "3979": "branch0_seg0", + "3980": "branch0_seg0", + "3981": "branch0_seg0", + "3982": "branch0_seg0", + "3983": "branch0_seg0", + "3984": "branch0_seg0", + "3985": "branch0_seg0", + "3986": "branch0_seg0", + "3987": "branch0_seg0", + "3988": "branch0_seg0", + "3989": "branch0_seg0", + "3990": "branch0_seg0", + "3991": "branch0_seg0", + "3992": "branch0_seg0", + "3993": "branch0_seg0", + "3994": "branch0_seg0", + "3995": "branch0_seg0", + "3996": "branch0_seg0", + "3997": "branch0_seg0", + "3998": "branch0_seg0", + "3999": "branch0_seg0", + "4000": "branch0_seg0", + "4001": "branch0_seg0", + "4002": "branch0_seg0", + "4003": "branch0_seg0", + "4004": "branch0_seg0", + "4005": "branch0_seg0", + "4006": "branch0_seg0", + "4007": "branch0_seg0", + "4008": "branch0_seg0", + "4009": "branch0_seg0", + "4010": "branch0_seg0", + "4011": "branch0_seg0", + "4012": "branch0_seg0", + "4013": "branch0_seg0", + "4014": "branch0_seg0", + "4015": "branch0_seg0", + "4016": "branch0_seg0", + "4017": "branch0_seg0", + "4018": "branch0_seg0", + "4019": "branch0_seg0", + "4020": "branch0_seg0", + "4021": "branch0_seg0", + "4022": "branch0_seg0", + "4023": "branch0_seg0", + "4024": "branch0_seg0", + "4025": "branch0_seg0", + "4026": "branch0_seg0", + "4027": "branch0_seg0", + "4028": "branch0_seg0", + "4029": "branch0_seg0", + "4030": "branch0_seg0", + "4031": "branch0_seg0", + "4032": "branch0_seg0", + "4033": "branch0_seg0", + "4034": "branch0_seg0", + "4035": "branch0_seg0", + "4036": "branch0_seg0", + "4037": "branch0_seg0", + "4038": "branch0_seg0", + "4039": "branch0_seg0", + "4040": "branch0_seg0", + "4041": "branch0_seg0", + "4042": "branch0_seg0", + "4043": "branch0_seg0", + "4044": "branch0_seg0", + "4045": "branch0_seg0", + "4046": "branch0_seg0", + "4047": "branch0_seg0", + "4048": "branch0_seg0", + "4049": "branch0_seg0", + "4050": "branch0_seg0", + "4051": "branch0_seg0", + "4052": "branch0_seg0", + "4053": "branch0_seg0", + "4054": "branch0_seg0", + "4055": "branch0_seg0", + "4056": "branch0_seg0", + "4057": "branch0_seg0", + "4058": "branch0_seg0", + "4059": "branch0_seg0", + "4060": "branch0_seg0", + "4061": "branch0_seg0", + "4062": "branch0_seg0", + "4063": "branch0_seg0", + "4064": "branch0_seg0", + "4065": "branch0_seg0", + "4066": "branch0_seg0", + "4067": "branch0_seg0", + "4068": "branch0_seg0", + "4069": "branch0_seg0", + "4070": "branch0_seg0", + "4071": "branch0_seg0", + "4072": "branch0_seg0", + "4073": "branch0_seg0", + "4074": "branch0_seg0", + "4075": "branch0_seg0", + "4076": "branch0_seg0", + "4077": "branch0_seg0", + "4078": "branch0_seg0", + "4079": "branch0_seg0", + "4080": "branch0_seg0", + "4081": "branch0_seg0", + "4082": "branch0_seg0", + "4083": "branch0_seg0", + "4084": "branch0_seg0", + "4085": "branch0_seg0", + "4086": "branch0_seg0", + "4087": "branch0_seg0", + "4088": "branch0_seg0", + "4089": "branch0_seg0", + "4090": "branch0_seg0", + "4091": "branch0_seg0", + "4092": "branch0_seg0", + "4093": "branch0_seg0", + "4094": "branch0_seg0", + "4095": "branch0_seg0", + "4096": "branch0_seg0", + "4097": "branch0_seg0", + "4098": "branch0_seg0", + "4099": "branch0_seg0", + "4100": "branch0_seg0", + "4101": "branch0_seg0", + "4102": "branch0_seg0", + "4103": "branch0_seg0", + "4104": "branch0_seg0", + "4105": "branch0_seg0", + "4106": "branch0_seg0", + "4107": "branch0_seg0", + "4108": "branch0_seg0", + "4109": "branch0_seg0", + "4110": "branch0_seg0", + "4111": "branch0_seg0", + "4112": "branch0_seg0", + "4113": "branch0_seg0", + "4114": "branch0_seg0", + "4115": "branch0_seg0", + "4116": "branch0_seg0", + "4117": "branch0_seg0", + "4118": "branch0_seg0", + "4119": "branch0_seg0", + "4120": "branch0_seg0", + "4121": "branch0_seg0", + "4122": "branch0_seg0", + "4123": "branch0_seg0", + "4124": "branch0_seg0", + "4125": "branch0_seg0", + "4126": "branch0_seg0", + "4127": "branch0_seg0", + "4128": "branch0_seg0", + "4129": "branch0_seg0", + "4130": "branch0_seg0", + "4131": "branch0_seg0", + "4132": "branch0_seg0", + "4133": "branch0_seg0", + "4134": "branch0_seg0", + "4135": "branch0_seg0", + "4136": "branch0_seg0", + "4137": "branch0_seg0", + "4138": "branch0_seg0", + "4139": "branch0_seg0", + "4140": "branch0_seg0", + "4141": "branch0_seg0", + "4142": "branch0_seg0", + "4143": "branch0_seg0", + "4144": "branch0_seg0", + "4145": "branch0_seg0", + "4146": "branch0_seg0", + "4147": "branch0_seg0", + "4148": "branch0_seg0", + "4149": "branch0_seg0", + "4150": "branch0_seg0", + "4151": "branch0_seg0", + "4152": "branch0_seg0", + "4153": "branch0_seg0", + "4154": "branch0_seg0", + "4155": "branch0_seg0", + "4156": "branch0_seg0", + "4157": "branch0_seg0", + "4158": "branch0_seg0", + "4159": "branch0_seg0", + "4160": "branch0_seg0", + "4161": "branch0_seg0", + "4162": "branch0_seg0", + "4163": "branch0_seg0", + "4164": "branch0_seg0", + "4165": "branch0_seg0", + "4166": "branch0_seg0", + "4167": "branch0_seg0", + "4168": "branch0_seg0", + "4169": "branch0_seg0", + "4170": "branch0_seg0", + "4171": "branch0_seg0", + "4172": "branch0_seg0", + "4173": "branch0_seg0", + "4174": "branch0_seg0", + "4175": "branch0_seg0", + "4176": "branch0_seg0", + "4177": "branch0_seg0", + "4178": "branch0_seg0", + "4179": "branch0_seg0", + "4180": "branch0_seg0", + "4181": "branch0_seg0", + "4182": "branch0_seg0", + "4183": "branch0_seg0", + "4184": "branch0_seg0", + "4185": "branch0_seg0", + "4186": "branch0_seg0", + "4187": "branch0_seg0", + "4188": "branch0_seg0", + "4189": "branch0_seg0", + "4190": "branch0_seg0", + "4191": "branch0_seg0", + "4192": "branch0_seg0", + "4193": "branch0_seg0", + "4194": "branch0_seg0", + "4195": "branch0_seg0", + "4196": "branch0_seg0", + "4197": "branch0_seg0", + "4198": "branch0_seg0", + "4199": "branch0_seg0", + "4200": "branch0_seg0", + "4201": "branch0_seg0", + "4202": "branch0_seg0", + "4203": "branch0_seg0", + "4204": "branch0_seg0", + "4205": "branch0_seg0", + "4206": "branch0_seg0", + "4207": "branch0_seg0", + "4208": "branch0_seg0", + "4209": "branch0_seg0", + "4210": "branch0_seg0", + "4211": "branch0_seg0", + "4212": "branch0_seg0", + "4213": "branch0_seg0", + "4214": "branch0_seg0", + "4215": "branch0_seg0", + "4216": "branch0_seg0", + "4217": "branch0_seg0", + "4218": "branch0_seg0", + "4219": "branch0_seg0", + "4220": "branch0_seg0", + "4221": "branch0_seg0", + "4222": "branch0_seg0", + "4223": "branch0_seg0", + "4224": "branch0_seg0", + "4225": "branch0_seg0", + "4226": "branch0_seg0", + "4227": "branch0_seg0", + "4228": "branch0_seg0", + "4229": "branch0_seg0", + "4230": "branch0_seg0", + "4231": "branch0_seg0", + "4232": "branch0_seg0", + "4233": "branch0_seg0", + "4234": "branch0_seg0", + "4235": "branch0_seg0", + "4236": "branch0_seg0", + "4237": "branch0_seg0", + "4238": "branch0_seg0", + "4239": "branch0_seg0", + "4240": "branch0_seg0", + "4241": "branch0_seg0", + "4242": "branch0_seg0", + "4243": "branch0_seg0", + "4244": "branch0_seg0", + "4245": "branch0_seg0", + "4246": "branch0_seg0", + "4247": "branch0_seg0", + "4248": "branch0_seg0", + "4249": "branch0_seg0", + "4250": "branch0_seg0", + "4251": "branch0_seg0", + "4252": "branch0_seg0", + "4253": "branch0_seg0", + "4254": "branch0_seg0", + "4255": "branch0_seg0", + "4256": "branch0_seg0", + "4257": "branch0_seg0", + "4258": "branch0_seg0", + "4259": "branch0_seg0", + "4260": "branch0_seg0", + "4261": "branch0_seg0", + "4262": "branch0_seg0", + "4263": "branch0_seg0", + "4264": "branch0_seg0", + "4265": "branch0_seg0", + "4266": "branch0_seg0", + "4267": "branch0_seg0", + "4268": "branch0_seg0", + "4269": "branch0_seg0", + "4270": "branch0_seg0", + "4271": "branch0_seg0", + "4272": "branch0_seg0", + "4273": "branch0_seg0", + "4274": "branch0_seg0", + "4275": "branch0_seg0", + "4276": "branch0_seg0", + "4277": "branch0_seg0", + "4278": "branch0_seg0", + "4279": "branch0_seg0", + "4280": "branch0_seg0", + "4281": "branch0_seg0", + "4282": "branch0_seg0", + "4283": "branch0_seg0", + "4284": "branch0_seg0", + "4285": "branch0_seg0", + "4286": "branch0_seg0", + "4287": "branch0_seg0", + "4288": "branch0_seg0", + "4289": "branch0_seg0", + "4290": "branch0_seg0", + "4291": "branch0_seg0", + "4292": "branch0_seg0", + "4293": "branch0_seg0", + "4294": "branch0_seg0", + "4295": "branch0_seg0", + "4296": "branch0_seg0", + "4297": "branch0_seg0", + "4298": "branch0_seg0", + "4299": "branch0_seg0", + "4300": "branch0_seg0", + "4301": "branch0_seg0", + "4302": "branch0_seg0", + "4303": "branch0_seg0", + "4304": "branch0_seg0", + "4305": "branch0_seg0", + "4306": "branch0_seg0", + "4307": "branch0_seg0", + "4308": "branch0_seg0", + "4309": "branch0_seg0", + "4310": "branch0_seg0", + "4311": "branch0_seg0", + "4312": "branch0_seg0", + "4313": "branch0_seg0", + "4314": "branch0_seg0", + "4315": "branch0_seg0", + "4316": "branch0_seg0", + "4317": "branch0_seg0", + "4318": "branch0_seg0", + "4319": "branch0_seg0", + "4320": "branch0_seg0", + "4321": "branch0_seg0", + "4322": "branch0_seg0", + "4323": "branch0_seg0", + "4324": "branch0_seg0", + "4325": "branch0_seg0", + "4326": "branch0_seg0", + "4327": "branch0_seg0", + "4328": "branch0_seg0", + "4329": "branch0_seg0", + "4330": "branch0_seg0", + "4331": "branch0_seg0", + "4332": "branch0_seg0", + "4333": "branch0_seg0", + "4334": "branch0_seg0", + "4335": "branch0_seg0", + "4336": "branch0_seg0", + "4337": "branch0_seg0", + "4338": "branch0_seg0", + "4339": "branch0_seg0", + "4340": "branch0_seg0", + "4341": "branch0_seg0", + "4342": "branch0_seg0", + "4343": "branch0_seg0", + "4344": "branch0_seg0", + "4345": "branch0_seg0", + "4346": "branch0_seg0", + "4347": "branch0_seg0", + "4348": "branch0_seg0", + "4349": "branch0_seg0", + "4350": "branch0_seg0", + "4351": "branch0_seg0", + "4352": "branch0_seg0", + "4353": "branch0_seg0", + "4354": "branch0_seg0", + "4355": "branch0_seg0", + "4356": "branch0_seg0", + "4357": "branch0_seg0", + "4358": "branch0_seg0", + "4359": "branch0_seg0", + "4360": "branch0_seg0", + "4361": "branch0_seg0", + "4362": "branch0_seg0", + "4363": "branch0_seg0", + "4364": "branch0_seg0", + "4365": "branch0_seg0", + "4366": "branch0_seg0", + "4367": "branch0_seg0", + "4368": "branch0_seg0", + "4369": "branch0_seg0", + "4370": "branch0_seg0", + "4371": "branch0_seg0", + "4372": "branch0_seg0", + "4373": "branch0_seg0", + "4374": "branch0_seg0", + "4375": "branch0_seg0", + "4376": "branch0_seg0", + "4377": "branch0_seg0", + "4378": "branch0_seg0", + "4379": "branch0_seg0", + "4380": "branch0_seg0", + "4381": "branch0_seg0", + "4382": "branch0_seg0", + "4383": "branch0_seg0", + "4384": "branch0_seg0", + "4385": "branch0_seg0", + "4386": "branch0_seg0", + "4387": "branch0_seg0", + "4388": "branch0_seg0", + "4389": "branch0_seg0", + "4390": "branch0_seg0", + "4391": "branch0_seg0", + "4392": "branch0_seg0", + "4393": "branch0_seg0", + "4394": "branch0_seg0", + "4395": "branch0_seg0", + "4396": "branch0_seg0", + "4397": "branch0_seg0", + "4398": "branch0_seg0", + "4399": "branch0_seg0", + "4400": "branch0_seg0", + "4401": "branch0_seg0", + "4402": "branch0_seg0", + "4403": "branch0_seg0", + "4404": "branch0_seg0", + "4405": "branch0_seg0", + "4406": "branch0_seg0", + "4407": "branch0_seg0", + "4408": "branch0_seg0", + "4409": "branch0_seg0", + "4410": "branch0_seg0", + "4411": "branch0_seg0", + "4412": "branch0_seg0", + "4413": "branch0_seg0", + "4414": "branch0_seg0", + "4415": "branch0_seg0", + "4416": "branch0_seg0", + "4417": "branch0_seg0", + "4418": "branch0_seg0", + "4419": "branch0_seg0", + "4420": "branch0_seg0", + "4421": "branch0_seg0", + "4422": "branch0_seg0", + "4423": "branch0_seg0", + "4424": "branch0_seg0", + "4425": "branch0_seg0", + "4426": "branch0_seg0", + "4427": "branch0_seg0", + "4428": "branch0_seg0", + "4429": "branch0_seg0", + "4430": "branch0_seg0", + "4431": "branch0_seg0", + "4432": "branch0_seg0", + "4433": "branch0_seg0", + "4434": "branch0_seg0", + "4435": "branch0_seg0", + "4436": "branch0_seg0", + "4437": "branch0_seg0", + "4438": "branch0_seg0", + "4439": "branch0_seg0", + "4440": "branch0_seg0", + "4441": "branch0_seg0", + "4442": "branch0_seg0", + "4443": "branch0_seg0", + "4444": "branch0_seg0", + "4445": "branch0_seg0", + "4446": "branch0_seg0", + "4447": "branch0_seg0", + "4448": "branch0_seg0", + "4449": "branch0_seg0", + "4450": "branch0_seg0", + "4451": "branch0_seg0", + "4452": "branch0_seg0", + "4453": "branch0_seg0", + "4454": "branch0_seg0", + "4455": "branch0_seg0", + "4456": "branch0_seg0", + "4457": "branch0_seg0", + "4458": "branch0_seg0", + "4459": "branch0_seg0", + "4460": "branch0_seg0", + "4461": "branch0_seg0", + "4462": "branch0_seg0", + "4463": "branch0_seg0", + "4464": "branch0_seg0", + "4465": "branch0_seg0", + "4466": "branch0_seg0", + "4467": "branch0_seg0", + "4468": "branch0_seg0", + "4469": "branch0_seg0", + "4470": "branch0_seg0", + "4471": "branch0_seg0", + "4472": "branch0_seg0", + "4473": "branch0_seg0", + "4474": "branch0_seg0", + "4475": "branch0_seg0", + "4476": "branch0_seg0", + "4477": "branch0_seg0", + "4478": "branch0_seg0", + "4479": "branch0_seg0", + "4480": "branch0_seg0", + "4481": "branch0_seg0", + "4482": "branch0_seg0", + "4483": "branch0_seg0", + "4484": "branch0_seg0", + "4485": "branch0_seg0", + "4486": "branch0_seg0", + "4487": "branch0_seg0", + "4488": "branch0_seg0", + "4489": "branch0_seg0", + "4490": "branch0_seg0", + "4491": "branch0_seg0", + "4492": "branch0_seg0", + "4493": "branch0_seg0", + "4494": "branch0_seg0", + "4495": "branch0_seg0", + "4496": "branch0_seg0", + "4497": "branch0_seg0", + "4498": "branch0_seg0", + "4499": "branch0_seg0", + "4500": "branch0_seg0", + "4501": "branch0_seg0", + "4502": "branch0_seg0", + "4503": "branch0_seg0", + "4504": "branch0_seg0", + "4505": "branch0_seg0", + "4506": "branch0_seg0", + "4507": "branch0_seg0", + "4508": "branch0_seg0", + "4509": "branch0_seg0", + "4510": "branch0_seg0", + "4511": "branch0_seg0", + "4512": "branch0_seg0", + "4513": "branch0_seg0", + "4514": "branch0_seg0", + "4515": "branch0_seg0", + "4516": "branch0_seg0", + "4517": "branch0_seg0", + "4518": "branch0_seg0", + "4519": "branch0_seg0", + "4520": "branch0_seg0", + "4521": "branch0_seg0", + "4522": "branch0_seg0", + "4523": "branch0_seg0", + "4524": "branch0_seg0", + "4525": "branch0_seg0", + "4526": "branch0_seg0", + "4527": "branch0_seg0", + "4528": "branch0_seg0", + "4529": "branch0_seg0", + "4530": "branch0_seg0", + "4531": "branch0_seg0", + "4532": "branch0_seg0", + "4533": "branch0_seg0", + "4534": "branch0_seg0", + "4535": "branch0_seg0", + "4536": "branch0_seg0", + "4537": "branch0_seg0", + "4538": "branch0_seg0", + "4539": "branch0_seg0", + "4540": "branch0_seg0", + "4541": "branch0_seg0", + "4542": "branch0_seg0", + "4543": "branch0_seg0", + "4544": "branch0_seg0", + "4545": "branch0_seg0", + "4546": "branch0_seg0", + "4547": "branch0_seg0", + "4548": "branch0_seg0", + "4549": "branch0_seg0", + "4550": "branch0_seg0", + "4551": "branch0_seg0", + "4552": "branch0_seg0", + "4553": "branch0_seg0", + "4554": "branch0_seg0", + "4555": "branch0_seg0", + "4556": "branch0_seg0", + "4557": "branch0_seg0", + "4558": "branch0_seg0", + "4559": "branch0_seg0", + "4560": "branch0_seg0", + "4561": "branch0_seg0", + "4562": "branch0_seg0", + "4563": "branch0_seg0", + "4564": "branch0_seg0", + "4565": "branch0_seg0", + "4566": "branch0_seg0", + "4567": "branch0_seg0", + "4568": "branch0_seg0", + "4569": "branch0_seg0", + "4570": "branch0_seg0", + "4571": "branch0_seg0", + "4572": "branch0_seg0", + "4573": "branch0_seg0", + "4574": "branch0_seg0", + "4575": "branch0_seg0", + "4576": "branch0_seg0", + "4577": "branch0_seg0", + "4578": "branch0_seg0", + "4579": "branch0_seg0", + "4580": "branch0_seg0", + "4581": "branch0_seg0", + "4582": "branch0_seg0", + "4583": "branch0_seg0", + "4584": "branch0_seg0", + "4585": "branch0_seg0", + "4586": "branch0_seg0", + "4587": "branch0_seg0", + "4588": "branch0_seg0", + "4589": "branch0_seg0", + "4590": "branch0_seg0", + "4591": "branch0_seg0", + "4592": "branch0_seg0", + "4593": "branch0_seg0", + "4594": "branch0_seg0", + "4595": "branch0_seg0", + "4596": "branch0_seg0", + "4597": "branch0_seg0", + "4598": "branch0_seg0", + "4599": "branch0_seg0", + "4600": "branch0_seg0", + "4601": "branch0_seg0", + "4602": "branch0_seg0", + "4603": "branch0_seg0", + "4604": "branch0_seg0", + "4605": "branch0_seg0", + "4606": "branch0_seg0", + "4607": "branch0_seg0", + "4608": "branch0_seg0", + "4609": "branch0_seg0", + "4610": "branch0_seg0", + "4611": "branch0_seg0", + "4612": "branch0_seg0", + "4613": "branch0_seg0", + "4614": "branch0_seg0", + "4615": "branch0_seg0", + "4616": "branch0_seg0", + "4617": "branch0_seg0", + "4618": "branch0_seg0", + "4619": "branch0_seg0", + "4620": "branch0_seg0", + "4621": "branch0_seg0", + "4622": "branch0_seg0", + "4623": "branch0_seg0", + "4624": "branch0_seg0", + "4625": "branch0_seg0", + "4626": "branch0_seg0", + "4627": "branch0_seg0", + "4628": "branch0_seg0", + "4629": "branch0_seg0", + "4630": "branch0_seg0", + "4631": "branch0_seg0", + "4632": "branch0_seg0", + "4633": "branch0_seg0", + "4634": "branch0_seg0", + "4635": "branch0_seg0", + "4636": "branch0_seg0", + "4637": "branch0_seg0", + "4638": "branch0_seg0", + "4639": "branch0_seg0", + "4640": "branch0_seg0", + "4641": "branch0_seg0", + "4642": "branch0_seg0", + "4643": "branch0_seg0", + "4644": "branch0_seg0", + "4645": "branch0_seg0", + "4646": "branch0_seg0", + "4647": "branch0_seg0", + "4648": "branch0_seg0", + "4649": "branch0_seg0", + "4650": "branch0_seg0", + "4651": "branch0_seg0", + "4652": "branch0_seg0", + "4653": "branch0_seg0", + "4654": "branch0_seg0", + "4655": "branch0_seg0", + "4656": "branch0_seg0", + "4657": "branch0_seg0", + "4658": "branch0_seg0", + "4659": "branch0_seg0", + "4660": "branch0_seg0", + "4661": "branch0_seg0", + "4662": "branch0_seg0", + "4663": "branch0_seg0", + "4664": "branch0_seg0", + "4665": "branch0_seg0", + "4666": "branch0_seg0", + "4667": "branch0_seg0", + "4668": "branch0_seg0", + "4669": "branch0_seg0", + "4670": "branch0_seg0", + "4671": "branch0_seg0", + "4672": "branch0_seg0", + "4673": "branch0_seg0", + "4674": "branch0_seg0", + "4675": "branch0_seg0", + "4676": "branch0_seg0", + "4677": "branch0_seg0", + "4678": "branch0_seg0", + "4679": "branch0_seg0", + "4680": "branch0_seg0", + "4681": "branch0_seg0", + "4682": "branch0_seg0", + "4683": "branch0_seg0", + "4684": "branch0_seg0", + "4685": "branch0_seg0", + "4686": "branch0_seg0", + "4687": "branch0_seg0", + "4688": "branch0_seg0", + "4689": "branch0_seg0", + "4690": "branch0_seg0", + "4691": "branch0_seg0", + "4692": "branch0_seg0", + "4693": "branch0_seg0", + "4694": "branch0_seg0", + "4695": "branch0_seg0", + "4696": "branch0_seg0", + "4697": "branch0_seg0", + "4698": "branch0_seg0", + "4699": "branch0_seg0", + "4700": "branch0_seg0", + "4701": "branch0_seg0", + "4702": "branch0_seg0", + "4703": "branch0_seg0", + "4704": "branch0_seg0", + "4705": "branch0_seg0", + "4706": "branch0_seg0", + "4707": "branch0_seg0", + "4708": "branch0_seg0", + "4709": "branch0_seg0", + "4710": "branch0_seg0", + "4711": "branch0_seg0", + "4712": "branch0_seg0", + "4713": "branch0_seg0", + "4714": "branch0_seg0", + "4715": "branch0_seg0", + "4716": "branch0_seg0", + "4717": "branch0_seg0", + "4718": "branch0_seg0", + "4719": "branch0_seg0", + "4720": "branch0_seg0", + "4721": "branch0_seg0", + "4722": "branch0_seg0", + "4723": "branch0_seg0", + "4724": "branch0_seg0", + "4725": "branch0_seg0", + "4726": "branch0_seg0", + "4727": "branch0_seg0", + "4728": "branch0_seg0", + "4729": "branch0_seg0", + "4730": "branch0_seg0", + "4731": "branch0_seg0", + "4732": "branch0_seg0", + "4733": "branch0_seg0", + "4734": "branch0_seg0", + "4735": "branch0_seg0", + "4736": "branch0_seg0", + "4737": "branch0_seg0", + "4738": "branch0_seg0", + "4739": "branch0_seg0", + "4740": "branch0_seg0", + "4741": "branch0_seg0", + "4742": "branch0_seg0", + "4743": "branch0_seg0", + "4744": "branch0_seg0", + "4745": "branch0_seg0", + "4746": "branch0_seg0", + "4747": "branch0_seg0", + "4748": "branch0_seg0", + "4749": "branch0_seg0", + "4750": "branch0_seg0", + "4751": "branch0_seg0", + "4752": "branch0_seg0", + "4753": "branch0_seg0", + "4754": "branch0_seg0", + "4755": "branch0_seg0", + "4756": "branch0_seg0", + "4757": "branch0_seg0", + "4758": "branch0_seg0", + "4759": "branch0_seg0", + "4760": "branch0_seg0", + "4761": "branch0_seg0", + "4762": "branch0_seg0", + "4763": "branch0_seg0", + "4764": "branch0_seg0", + "4765": "branch0_seg0", + "4766": "branch0_seg0", + "4767": "branch0_seg0", + "4768": "branch0_seg0", + "4769": "branch0_seg0", + "4770": "branch0_seg0", + "4771": "branch0_seg0", + "4772": "branch0_seg0", + "4773": "branch0_seg0", + "4774": "branch0_seg0", + "4775": "branch0_seg0", + "4776": "branch0_seg0", + "4777": "branch0_seg0", + "4778": "branch0_seg0", + "4779": "branch0_seg0", + "4780": "branch0_seg0", + "4781": "branch0_seg0", + "4782": "branch0_seg0", + "4783": "branch0_seg0", + "4784": "branch0_seg0", + "4785": "branch0_seg0", + "4786": "branch0_seg0", + "4787": "branch0_seg0", + "4788": "branch0_seg0", + "4789": "branch0_seg0", + "4790": "branch0_seg0", + "4791": "branch0_seg0", + "4792": "branch0_seg0", + "4793": "branch0_seg0", + "4794": "branch0_seg0", + "4795": "branch0_seg0", + "4796": "branch0_seg0", + "4797": "branch0_seg0", + "4798": "branch0_seg0", + "4799": "branch0_seg0", + "4800": "branch0_seg0", + "4801": "branch0_seg0", + "4802": "branch0_seg0", + "4803": "branch0_seg0", + "4804": "branch0_seg0", + "4805": "branch0_seg0", + "4806": "branch0_seg0", + "4807": "branch0_seg0", + "4808": "branch0_seg0", + "4809": "branch0_seg0", + "4810": "branch0_seg0", + "4811": "branch0_seg0", + "4812": "branch0_seg0", + "4813": "branch0_seg0", + "4814": "branch0_seg0", + "4815": "branch0_seg0", + "4816": "branch0_seg0", + "4817": "branch0_seg0", + "4818": "branch0_seg0", + "4819": "branch0_seg0", + "4820": "branch0_seg0", + "4821": "branch0_seg0", + "4822": "branch0_seg0", + "4823": "branch0_seg0", + "4824": "branch0_seg0", + "4825": "branch0_seg0", + "4826": "branch0_seg0", + "4827": "branch0_seg0", + "4828": "branch0_seg0", + "4829": "branch0_seg0", + "4830": "branch0_seg0", + "4831": "branch0_seg0", + "4832": "branch0_seg0", + "4833": "branch0_seg0", + "4834": "branch0_seg0", + "4835": "branch0_seg0", + "4836": "branch0_seg0", + "4837": "branch0_seg0", + "4838": "branch0_seg0", + "4839": "branch0_seg0", + "4840": "branch0_seg0", + "4841": "branch0_seg0", + "4842": "branch0_seg0", + "4843": "branch0_seg0", + "4844": "branch0_seg0", + "4845": "branch0_seg0", + "4846": "branch0_seg0", + "4847": "branch0_seg0", + "4848": "branch0_seg0", + "4849": "branch0_seg0", + "4850": "branch0_seg0", + "4851": "branch0_seg0", + "4852": "branch0_seg0", + "4853": "branch0_seg0", + "4854": "branch0_seg0", + "4855": "branch0_seg0", + "4856": "branch0_seg0", + "4857": "branch0_seg0", + "4858": "branch0_seg0", + "4859": "branch0_seg0", + "4860": "branch0_seg0", + "4861": "branch0_seg0", + "4862": "branch0_seg0", + "4863": "branch0_seg0", + "4864": "branch0_seg0", + "4865": "branch0_seg0", + "4866": "branch0_seg0", + "4867": "branch0_seg0", + "4868": "branch0_seg0", + "4869": "branch0_seg0", + "4870": "branch0_seg0", + "4871": "branch0_seg0", + "4872": "branch0_seg0", + "4873": "branch0_seg0", + "4874": "branch0_seg0", + "4875": "branch0_seg0", + "4876": "branch0_seg0", + "4877": "branch0_seg0", + "4878": "branch0_seg0", + "4879": "branch0_seg0", + "4880": "branch0_seg0", + "4881": "branch0_seg0", + "4882": "branch0_seg0", + "4883": "branch0_seg0", + "4884": "branch0_seg0", + "4885": "branch0_seg0", + "4886": "branch0_seg0", + "4887": "branch0_seg0", + "4888": "branch0_seg0", + "4889": "branch0_seg0", + "4890": "branch0_seg0", + "4891": "branch0_seg0", + "4892": "branch0_seg0", + "4893": "branch0_seg0", + "4894": "branch0_seg0", + "4895": "branch0_seg0", + "4896": "branch0_seg0", + "4897": "branch0_seg0", + "4898": "branch0_seg0", + "4899": "branch0_seg0", + "4900": "branch0_seg0", + "4901": "branch0_seg0", + "4902": "branch0_seg0", + "4903": "branch0_seg0", + "4904": "branch0_seg0", + "4905": "branch0_seg0", + "4906": "branch0_seg0", + "4907": "branch0_seg0", + "4908": "branch0_seg0", + "4909": "branch0_seg0", + "4910": "branch0_seg0", + "4911": "branch0_seg0", + "4912": "branch0_seg0", + "4913": "branch0_seg0", + "4914": "branch0_seg0", + "4915": "branch0_seg0", + "4916": "branch0_seg0", + "4917": "branch0_seg0", + "4918": "branch0_seg0", + "4919": "branch0_seg0", + "4920": "branch0_seg0", + "4921": "branch0_seg0", + "4922": "branch0_seg0", + "4923": "branch0_seg0", + "4924": "branch0_seg0", + "4925": "branch0_seg0", + "4926": "branch0_seg0", + "4927": "branch0_seg0", + "4928": "branch0_seg0", + "4929": "branch0_seg0", + "4930": "branch0_seg0", + "4931": "branch0_seg0", + "4932": "branch0_seg0", + "4933": "branch0_seg0", + "4934": "branch0_seg0", + "4935": "branch0_seg0", + "4936": "branch0_seg0", + "4937": "branch0_seg0", + "4938": "branch0_seg0", + "4939": "branch0_seg0", + "4940": "branch0_seg0", + "4941": "branch0_seg0", + "4942": "branch0_seg0", + "4943": "branch0_seg0", + "4944": "branch0_seg0", + "4945": "branch0_seg0", + "4946": "branch0_seg0", + "4947": "branch0_seg0", + "4948": "branch0_seg0", + "4949": "branch0_seg0", + "4950": "branch0_seg0", + "4951": "branch0_seg0", + "4952": "branch0_seg0", + "4953": "branch0_seg0", + "4954": "branch0_seg0", + "4955": "branch0_seg0", + "4956": "branch0_seg0", + "4957": "branch0_seg0", + "4958": "branch0_seg0", + "4959": "branch0_seg0", + "4960": "branch0_seg0", + "4961": "branch0_seg0", + "4962": "branch0_seg0", + "4963": "branch0_seg0", + "4964": "branch0_seg0", + "4965": "branch0_seg0", + "4966": "branch0_seg0", + "4967": "branch0_seg0", + "4968": "branch0_seg0", + "4969": "branch0_seg0", + "4970": "branch0_seg0", + "4971": "branch0_seg0", + "4972": "branch0_seg0", + "4973": "branch0_seg0", + "4974": "branch0_seg0", + "4975": "branch0_seg0", + "4976": "branch0_seg0", + "4977": "branch0_seg0", + "4978": "branch0_seg0", + "4979": "branch0_seg0", + "4980": "branch0_seg0", + "4981": "branch0_seg0", + "4982": "branch0_seg0", + "4983": "branch0_seg0", + "4984": "branch0_seg0", + "4985": "branch0_seg0", + "4986": "branch0_seg0", + "4987": "branch0_seg0", + "4988": "branch0_seg0", + "4989": "branch0_seg0", + "4990": "branch0_seg0", + "4991": "branch0_seg0", + "4992": "branch0_seg0", + "4993": "branch0_seg0", + "4994": "branch0_seg0", + "4995": "branch0_seg0", + "4996": "branch0_seg0", + "4997": "branch0_seg0", + "4998": "branch0_seg0", + "4999": "branch0_seg0", + "5000": "branch0_seg0", + "5001": "branch0_seg0", + "5002": "branch0_seg0", + "5003": "branch0_seg0", + "5004": "branch0_seg0", + "5005": "branch0_seg0", + "5006": "branch0_seg0", + "5007": "branch0_seg0", + "5008": "branch0_seg0", + "5009": "branch0_seg0", + "5010": "branch0_seg0", + "5011": "branch0_seg0", + "5012": "branch0_seg0", + "5013": "branch0_seg0", + "5014": "branch0_seg0", + "5015": "branch0_seg0", + "5016": "branch0_seg0", + "5017": "branch0_seg0", + "5018": "branch0_seg0", + "5019": "branch0_seg0", + "5020": "branch0_seg0", + "5021": "branch0_seg0", + "5022": "branch0_seg0", + "5023": "branch0_seg0", + "5024": "branch0_seg0", + "5025": "branch0_seg0", + "5026": "branch0_seg0", + "5027": "branch0_seg0", + "5028": "branch0_seg0", + "5029": "branch0_seg0", + "5030": "branch0_seg0", + "5031": "branch0_seg0", + "5032": "branch0_seg0", + "5033": "branch0_seg0", + "5034": "branch0_seg0", + "5035": "branch0_seg0", + "5036": "branch0_seg0", + "5037": "branch0_seg0", + "5038": "branch0_seg0", + "5039": "branch0_seg0", + "5040": "branch0_seg0", + "5041": "branch0_seg0", + "5042": "branch0_seg0", + "5043": "branch0_seg0", + "5044": "branch0_seg0", + "5045": "branch0_seg0", + "5046": "branch0_seg0", + "5047": "branch0_seg0", + "5048": "branch0_seg0", + "5049": "branch0_seg0", + "5050": "branch0_seg0", + "5051": "branch0_seg0", + "5052": "branch0_seg0", + "5053": "branch0_seg0", + "5054": "branch0_seg0", + "5055": "branch0_seg0", + "5056": "branch0_seg0", + "5057": "branch0_seg0", + "5058": "branch0_seg0", + "5059": "branch0_seg0", + "5060": "branch0_seg0", + "5061": "branch0_seg0", + "5062": "branch0_seg0", + "5063": "branch0_seg0", + "5064": "branch0_seg0", + "5065": "branch0_seg0", + "5066": "branch0_seg0", + "5067": "branch0_seg0", + "5068": "branch0_seg0", + "5069": "branch0_seg0", + "5070": "branch0_seg0", + "5071": "branch0_seg0", + "5072": "branch0_seg0", + "5073": "branch0_seg0", + "5074": "branch0_seg0", + "5075": "branch0_seg0", + "5076": "branch0_seg0", + "5077": "branch0_seg0", + "5078": "branch0_seg0", + "5079": "branch0_seg0", + "5080": "branch0_seg0", + "5081": "branch0_seg0", + "5082": "branch0_seg0", + "5083": "branch0_seg0", + "5084": "branch0_seg0", + "5085": "branch0_seg0", + "5086": "branch0_seg0", + "5087": "branch0_seg0", + "5088": "branch0_seg0", + "5089": "branch0_seg0", + "5090": "branch0_seg0", + "5091": "branch0_seg0", + "5092": "branch0_seg0", + "5093": "branch0_seg0", + "5094": "branch0_seg0", + "5095": "branch0_seg0", + "5096": "branch0_seg0", + "5097": "branch0_seg0", + "5098": "branch0_seg0", + "5099": "branch0_seg0", + "5100": "branch0_seg0", + "5101": "branch0_seg0", + "5102": "branch0_seg0", + "5103": "branch0_seg0", + "5104": "branch0_seg0", + "5105": "branch0_seg0", + "5106": "branch0_seg0", + "5107": "branch0_seg0", + "5108": "branch0_seg0", + "5109": "branch0_seg0", + "5110": "branch0_seg0", + "5111": "branch0_seg0", + "5112": "branch0_seg0", + "5113": "branch0_seg0", + "5114": "branch0_seg0", + "5115": "branch0_seg0", + "5116": "branch0_seg0", + "5117": "branch0_seg0", + "5118": "branch0_seg0", + "5119": "branch0_seg0", + "5120": "branch0_seg0", + "5121": "branch0_seg0", + "5122": "branch0_seg0", + "5123": "branch0_seg0", + "5124": "branch0_seg0", + "5125": "branch0_seg0", + "5126": "branch0_seg0", + "5127": "branch0_seg0", + "5128": "branch0_seg0", + "5129": "branch0_seg0", + "5130": "branch0_seg0", + "5131": "branch0_seg0", + "5132": "branch0_seg0", + "5133": "branch0_seg0", + "5134": "branch0_seg0", + "5135": "branch0_seg0", + "5136": "branch0_seg0", + "5137": "branch0_seg0", + "5138": "branch0_seg0", + "5139": "branch0_seg0", + "5140": "branch0_seg0", + "5141": "branch0_seg0", + "5142": "branch0_seg0", + "5143": "branch0_seg0", + "5144": "branch0_seg0", + "5145": "branch0_seg0", + "5146": "branch0_seg0", + "5147": "branch0_seg0", + "5148": "branch0_seg0", + "5149": "branch0_seg0", + "5150": "branch0_seg0", + "5151": "branch0_seg0", + "5152": "branch0_seg0", + "5153": "branch0_seg0", + "5154": "branch0_seg0", + "5155": "branch0_seg0", + "5156": "branch0_seg0", + "5157": "branch0_seg0", + "5158": "branch0_seg0", + "5159": "branch0_seg0", + "5160": "branch0_seg0", + "5161": "branch0_seg0", + "5162": "branch0_seg0", + "5163": "branch0_seg0", + "5164": "branch0_seg0", + "5165": "branch0_seg0", + "5166": "branch0_seg0", + "5167": "branch0_seg0", + "5168": "branch0_seg0", + "5169": "branch0_seg0", + "5170": "branch0_seg0", + "5171": "branch0_seg0", + "5172": "branch0_seg0", + "5173": "branch0_seg0", + "5174": "branch0_seg0", + "5175": "branch0_seg0", + "5176": "branch0_seg0", + "5177": "branch0_seg0", + "5178": "branch0_seg0", + "5179": "branch0_seg0", + "5180": "branch0_seg0", + "5181": "branch0_seg0", + "5182": "branch0_seg0", + "5183": "branch0_seg0", + "5184": "branch0_seg0", + "5185": "branch0_seg0", + "5186": "branch0_seg0", + "5187": "branch0_seg0", + "5188": "branch0_seg0", + "5189": "branch0_seg0", + "5190": "branch0_seg0", + "5191": "branch0_seg0", + "5192": "branch0_seg0", + "5193": "branch0_seg0", + "5194": "branch0_seg0", + "5195": "branch0_seg0", + "5196": "branch0_seg0", + "5197": "branch0_seg0", + "5198": "branch0_seg0", + "5199": "branch0_seg0", + "5200": "branch0_seg0", + "5201": "branch0_seg0", + "5202": "branch0_seg0", + "5203": "branch0_seg0", + "5204": "branch0_seg0", + "5205": "branch0_seg0", + "5206": "branch0_seg0", + "5207": "branch0_seg0", + "5208": "branch0_seg0", + "5209": "branch0_seg0", + "5210": "branch0_seg0", + "5211": "branch0_seg0", + "5212": "branch0_seg0", + "5213": "branch0_seg0", + "5214": "branch0_seg0", + "5215": "branch0_seg0", + "5216": "branch0_seg0", + "5217": "branch0_seg0", + "5218": "branch0_seg0", + "5219": "branch0_seg0", + "5220": "branch0_seg0", + "5221": "branch0_seg0", + "5222": "branch0_seg0", + "5223": "branch0_seg0", + "5224": "branch0_seg0", + "5225": "branch0_seg0", + "5226": "branch0_seg0", + "5227": "branch0_seg0", + "5228": "branch0_seg0", + "5229": "branch0_seg0", + "5230": "branch0_seg0", + "5231": "branch0_seg0", + "5232": "branch0_seg0", + "5233": "branch0_seg0", + "5234": "branch0_seg0", + "5235": "branch0_seg0", + "5236": "branch0_seg0", + "5237": "branch0_seg0", + "5238": "branch0_seg0", + "5239": "branch0_seg0", + "5240": "branch0_seg0", + "5241": "branch0_seg0", + "5242": "branch0_seg0", + "5243": "branch0_seg0", + "5244": "branch0_seg0", + "5245": "branch0_seg0", + "5246": "branch0_seg0", + "5247": "branch0_seg0", + "5248": "branch0_seg0", + "5249": "branch0_seg0", + "5250": "branch0_seg0", + "5251": "branch0_seg0", + "5252": "branch0_seg0", + "5253": "branch0_seg0", + "5254": "branch0_seg0", + "5255": "branch0_seg0", + "5256": "branch0_seg0", + "5257": "branch0_seg0", + "5258": "branch0_seg0", + "5259": "branch0_seg0", + "5260": "branch0_seg0", + "5261": "branch0_seg0", + "5262": "branch0_seg0", + "5263": "branch0_seg0", + "5264": "branch0_seg0", + "5265": "branch0_seg0", + "5266": "branch0_seg0", + "5267": "branch0_seg0", + "5268": "branch0_seg0", + "5269": "branch0_seg0", + "5270": "branch0_seg0", + "5271": "branch0_seg0", + "5272": "branch0_seg0", + "5273": "branch0_seg0", + "5274": "branch0_seg0", + "5275": "branch0_seg0", + "5276": "branch0_seg0", + "5277": "branch0_seg0", + "5278": "branch0_seg0", + "5279": "branch0_seg0", + "5280": "branch0_seg0", + "5281": "branch0_seg0", + "5282": "branch0_seg0", + "5283": "branch0_seg0", + "5284": "branch0_seg0", + "5285": "branch0_seg0", + "5286": "branch0_seg0", + "5287": "branch0_seg0", + "5288": "branch0_seg0", + "5289": "branch0_seg0", + "5290": "branch0_seg0", + "5291": "branch0_seg0", + "5292": "branch0_seg0", + "5293": "branch0_seg0", + "5294": "branch0_seg0", + "5295": "branch0_seg0", + "5296": "branch0_seg0", + "5297": "branch0_seg0", + "5298": "branch0_seg0", + "5299": "branch0_seg0", + "5300": "branch0_seg0", + "5301": "branch0_seg0", + "5302": "branch0_seg0", + "5303": "branch0_seg0", + "5304": "branch0_seg0", + "5305": "branch0_seg0", + "5306": "branch0_seg0", + "5307": "branch0_seg0", + "5308": "branch0_seg0", + "5309": "branch0_seg0", + "5310": "branch0_seg0", + "5311": "branch0_seg0", + "5312": "branch0_seg0", + "5313": "branch0_seg0", + "5314": "branch0_seg0", + "5315": "branch0_seg0", + "5316": "branch0_seg0", + "5317": "branch0_seg0", + "5318": "branch0_seg0", + "5319": "branch0_seg0", + "5320": "branch0_seg0", + "5321": "branch0_seg0", + "5322": "branch0_seg0", + "5323": "branch0_seg0", + "5324": "branch0_seg0", + "5325": "branch0_seg0", + "5326": "branch0_seg0", + "5327": "branch0_seg0", + "5328": "branch0_seg0", + "5329": "branch0_seg0", + "5330": "branch0_seg0", + "5331": "branch0_seg0", + "5332": "branch0_seg0", + "5333": "branch0_seg0", + "5334": "branch0_seg0", + "5335": "branch0_seg0", + "5336": "branch0_seg0", + "5337": "branch0_seg0", + "5338": "branch0_seg0", + "5339": "branch0_seg0", + "5340": "branch0_seg0", + "5341": "branch0_seg0", + "5342": "branch0_seg0", + "5343": "branch0_seg0", + "5344": "branch0_seg0", + "5345": "branch0_seg0", + "5346": "branch0_seg0", + "5347": "branch0_seg0", + "5348": "branch0_seg0", + "5349": "branch0_seg0", + "5350": "branch0_seg0", + "5351": "branch0_seg0", + "5352": "branch0_seg0", + "5353": "branch0_seg0", + "5354": "branch0_seg0", + "5355": "branch0_seg0", + "5356": "branch0_seg0", + "5357": "branch0_seg0", + "5358": "branch0_seg0", + "5359": "branch0_seg0", + "5360": "branch0_seg0", + "5361": "branch0_seg0", + "5362": "branch0_seg0", + "5363": "branch0_seg0", + "5364": "branch0_seg0", + "5365": "branch0_seg0", + "5366": "branch0_seg0", + "5367": "branch0_seg0", + "5368": "branch0_seg0", + "5369": "branch0_seg0", + "5370": "branch0_seg0", + "5371": "branch0_seg0", + "5372": "branch0_seg0", + "5373": "branch0_seg0", + "5374": "branch0_seg0", + "5375": "branch0_seg0", + "5376": "branch0_seg0", + "5377": "branch0_seg0", + "5378": "branch0_seg0", + "5379": "branch0_seg0", + "5380": "branch0_seg0", + "5381": "branch0_seg0", + "5382": "branch0_seg0", + "5383": "branch0_seg0", + "5384": "branch0_seg0", + "5385": "branch0_seg0", + "5386": "branch0_seg0", + "5387": "branch0_seg0", + "5388": "branch0_seg0", + "5389": "branch0_seg0", + "5390": "branch0_seg0", + "5391": "branch0_seg0", + "5392": "branch0_seg0", + "5393": "branch0_seg0", + "5394": "branch0_seg0", + "5395": "branch0_seg0", + "5396": "branch0_seg0", + "5397": "branch0_seg0", + "5398": "branch0_seg0", + "5399": "branch0_seg0", + "5400": "branch0_seg0", + "5401": "branch0_seg0", + "5402": "branch0_seg0", + "5403": "branch0_seg0", + "5404": "branch0_seg0", + "5405": "branch0_seg0", + "5406": "branch0_seg0", + "5407": "branch0_seg0", + "5408": "branch0_seg0", + "5409": "branch0_seg0", + "5410": "branch0_seg0", + "5411": "branch0_seg0", + "5412": "branch0_seg0", + "5413": "branch0_seg0", + "5414": "branch0_seg0", + "5415": "branch0_seg0", + "5416": "branch0_seg0", + "5417": "branch0_seg0", + "5418": "branch0_seg0", + "5419": "branch0_seg0", + "5420": "branch0_seg0", + "5421": "branch0_seg0", + "5422": "branch0_seg0", + "5423": "branch0_seg0", + "5424": "branch0_seg0", + "5425": "branch0_seg0", + "5426": "branch0_seg0", + "5427": "branch0_seg0", + "5428": "branch0_seg0", + "5429": "branch0_seg0", + "5430": "branch0_seg0", + "5431": "branch0_seg0", + "5432": "branch0_seg0", + "5433": "branch0_seg0", + "5434": "branch0_seg0", + "5435": "branch0_seg0", + "5436": "branch0_seg0", + "5437": "branch0_seg0", + "5438": "branch0_seg0", + "5439": "branch0_seg0", + "5440": "branch0_seg0", + "5441": "branch0_seg0", + "5442": "branch0_seg0", + "5443": "branch0_seg0", + "5444": "branch0_seg0", + "5445": "branch0_seg0", + "5446": "branch0_seg0", + "5447": "branch0_seg0", + "5448": "branch0_seg0", + "5449": "branch0_seg0", + "5450": "branch0_seg0", + "5451": "branch0_seg0", + "5452": "branch0_seg0", + "5453": "branch0_seg0", + "5454": "branch0_seg0", + "5455": "branch0_seg0", + "5456": "branch0_seg0", + "5457": "branch0_seg0", + "5458": "branch0_seg0", + "5459": "branch0_seg0", + "5460": "branch0_seg0", + "5461": "branch0_seg0", + "5462": "branch0_seg0", + "5463": "branch0_seg0", + "5464": "branch0_seg0", + "5465": "branch0_seg0", + "5466": "branch0_seg0", + "5467": "branch0_seg0", + "5468": "branch0_seg0", + "5469": "branch0_seg0", + "5470": "branch0_seg0", + "5471": "branch0_seg0", + "5472": "branch0_seg0", + "5473": "branch0_seg0", + "5474": "branch0_seg0", + "5475": "branch0_seg0", + "5476": "branch0_seg0", + "5477": "branch0_seg0", + "5478": "branch0_seg0", + "5479": "branch0_seg0", + "5480": "branch0_seg0", + "5481": "branch0_seg0", + "5482": "branch0_seg0", + "5483": "branch0_seg0", + "5484": "branch0_seg0", + "5485": "branch0_seg0", + "5486": "branch0_seg0", + "5487": "branch0_seg0", + "5488": "branch0_seg0", + "5489": "branch0_seg0", + "5490": "branch0_seg0", + "5491": "branch0_seg0", + "5492": "branch0_seg0", + "5493": "branch0_seg0", + "5494": "branch0_seg0", + "5495": "branch0_seg0", + "5496": "branch0_seg0", + "5497": "branch0_seg0", + "5498": "branch0_seg0", + "5499": "branch0_seg0", + "5500": "branch0_seg0", + "5501": "branch0_seg0", + "5502": "branch0_seg0", + "5503": "branch0_seg0", + "5504": "branch0_seg0", + "5505": "branch0_seg0", + "5506": "branch0_seg0", + "5507": "branch0_seg0", + "5508": "branch0_seg0", + "5509": "branch0_seg0", + "5510": "branch0_seg0", + "5511": "branch0_seg0", + "5512": "branch0_seg0", + "5513": "branch0_seg0", + "5514": "branch0_seg0", + "5515": "branch0_seg0", + "5516": "branch0_seg0", + "5517": "branch0_seg0", + "5518": "branch0_seg0", + "5519": "branch0_seg0", + "5520": "branch0_seg0", + "5521": "branch0_seg0", + "5522": "branch0_seg0", + "5523": "branch0_seg0", + "5524": "branch0_seg0", + "5525": "branch0_seg0", + "5526": "branch0_seg0", + "5527": "branch0_seg0", + "5528": "branch0_seg0", + "5529": "branch0_seg0", + "5530": "branch0_seg0", + "5531": "branch0_seg0", + "5532": "branch0_seg0", + "5533": "branch0_seg0", + "5534": "branch0_seg0", + "5535": "branch0_seg0", + "5536": "branch0_seg0", + "5537": "branch0_seg0", + "5538": "branch0_seg0", + "5539": "branch0_seg0", + "5540": "branch0_seg0", + "5541": "branch0_seg0", + "5542": "branch0_seg0", + "5543": "branch0_seg0", + "5544": "branch0_seg0", + "5545": "branch0_seg0", + "5546": "branch0_seg0", + "5547": "branch0_seg0", + "5548": "branch0_seg0", + "5549": "branch0_seg0", + "5550": "branch0_seg0", + "5551": "branch0_seg0", + "5552": "branch0_seg0", + "5553": "branch0_seg0", + "5554": "branch0_seg0", + "5555": "branch0_seg0", + "5556": "branch0_seg0", + "5557": "branch0_seg0", + "5558": "branch0_seg0", + "5559": "branch0_seg0", + "5560": "branch0_seg0", + "5561": "branch0_seg0", + "5562": "branch0_seg0", + "5563": "branch0_seg0", + "5564": "branch0_seg0", + "5565": "branch0_seg0", + "5566": "branch0_seg0", + "5567": "branch0_seg0", + "5568": "branch0_seg0", + "5569": "branch0_seg0", + "5570": "branch0_seg0", + "5571": "branch0_seg0", + "5572": "branch0_seg0", + "5573": "branch0_seg0", + "5574": "branch0_seg0", + "5575": "branch0_seg0", + "5576": "branch0_seg0", + "5577": "branch0_seg0", + "5578": "branch0_seg0", + "5579": "branch0_seg0", + "5580": "branch0_seg0", + "5581": "branch0_seg0", + "5582": "branch0_seg0", + "5583": "branch0_seg0", + "5584": "branch0_seg0", + "5585": "branch0_seg0", + "5586": "branch0_seg0", + "5587": "branch0_seg0", + "5588": "branch0_seg0", + "5589": "branch0_seg0", + "5590": "branch0_seg0", + "5591": "branch0_seg0", + "5592": "branch0_seg0", + "5593": "branch0_seg0", + "5594": "branch0_seg0", + "5595": "branch0_seg0", + "5596": "branch0_seg0", + "5597": "branch0_seg0", + "5598": "branch0_seg0", + "5599": "branch0_seg0", + "5600": "branch0_seg0", + "5601": "branch0_seg0", + "5602": "branch0_seg0", + "5603": "branch0_seg0", + "5604": "branch0_seg0", + "5605": "branch0_seg0", + "5606": "branch0_seg0", + "5607": "branch0_seg0", + "5608": "branch0_seg0", + "5609": "branch0_seg0", + "5610": "branch0_seg0", + "5611": "branch0_seg0", + "5612": "branch0_seg0", + "5613": "branch0_seg0", + "5614": "branch0_seg0", + "5615": "branch0_seg0", + "5616": "branch0_seg0", + "5617": "branch0_seg0", + "5618": "branch0_seg0", + "5619": "branch0_seg0", + "5620": "branch0_seg0", + "5621": "branch0_seg0", + "5622": "branch0_seg0", + "5623": "branch0_seg0", + "5624": "branch0_seg0", + "5625": "branch0_seg0", + "5626": "branch0_seg0", + "5627": "branch0_seg0", + "5628": "branch0_seg0", + "5629": "branch0_seg0", + "5630": "branch0_seg0", + "5631": "branch0_seg0", + "5632": "branch0_seg0", + "5633": "branch0_seg0", + "5634": "branch0_seg0", + "5635": "branch0_seg0", + "5636": "branch0_seg0", + "5637": "branch0_seg0", + "5638": "branch0_seg0", + "5639": "branch0_seg0", + "5640": "branch0_seg0", + "5641": "branch0_seg0", + "5642": "branch0_seg0", + "5643": "branch0_seg0", + "5644": "branch0_seg0", + "5645": "branch0_seg0", + "5646": "branch0_seg0", + "5647": "branch0_seg0", + "5648": "branch0_seg0", + "5649": "branch0_seg0", + "5650": "branch0_seg0", + "5651": "branch0_seg0", + "5652": "branch0_seg0", + "5653": "branch0_seg0", + "5654": "branch0_seg0", + "5655": "branch0_seg0", + "5656": "branch0_seg0", + "5657": "branch0_seg0", + "5658": "branch0_seg0", + "5659": "branch0_seg0", + "5660": "branch0_seg0", + "5661": "branch0_seg0", + "5662": "branch0_seg0", + "5663": "branch0_seg0", + "5664": "branch0_seg0", + "5665": "branch0_seg0", + "5666": "branch0_seg0", + "5667": "branch0_seg0", + "5668": "branch0_seg0", + "5669": "branch0_seg0", + "5670": "branch0_seg0", + "5671": "branch0_seg0", + "5672": "branch0_seg0", + "5673": "branch0_seg0", + "5674": "branch0_seg0", + "5675": "branch0_seg0", + "5676": "branch0_seg0", + "5677": "branch0_seg0", + "5678": "branch0_seg0", + "5679": "branch0_seg0", + "5680": "branch0_seg0", + "5681": "branch0_seg0", + "5682": "branch0_seg0", + "5683": "branch0_seg0", + "5684": "branch0_seg0", + "5685": "branch0_seg0", + "5686": "branch0_seg0", + "5687": "branch0_seg0", + "5688": "branch0_seg0", + "5689": "branch0_seg0", + "5690": "branch0_seg0", + "5691": "branch0_seg0", + "5692": "branch0_seg0", + "5693": "branch0_seg0", + "5694": "branch0_seg0", + "5695": "branch0_seg0", + "5696": "branch0_seg0", + "5697": "branch0_seg0", + "5698": "branch0_seg0", + "5699": "branch0_seg0", + "5700": "branch0_seg0", + "5701": "branch0_seg0", + "5702": "branch0_seg0", + "5703": "branch0_seg0", + "5704": "branch0_seg0", + "5705": "branch0_seg0", + "5706": "branch0_seg0", + "5707": "branch0_seg0", + "5708": "branch0_seg0", + "5709": "branch0_seg0", + "5710": "branch0_seg0", + "5711": "branch0_seg0", + "5712": "branch0_seg0", + "5713": "branch0_seg0", + "5714": "branch0_seg0", + "5715": "branch0_seg0", + "5716": "branch0_seg0", + "5717": "branch0_seg0", + "5718": "branch0_seg0", + "5719": "branch0_seg0", + "5720": "branch0_seg0", + "5721": "branch0_seg0", + "5722": "branch0_seg0", + "5723": "branch0_seg0", + "5724": "branch0_seg0", + "5725": "branch0_seg0", + "5726": "branch0_seg0", + "5727": "branch0_seg0", + "5728": "branch0_seg0", + "5729": "branch0_seg0", + "5730": "branch0_seg0", + "5731": "branch0_seg0", + "5732": "branch0_seg0", + "5733": "branch0_seg0", + "5734": "branch0_seg0", + "5735": "branch0_seg0", + "5736": "branch0_seg0", + "5737": "branch0_seg0", + "5738": "branch0_seg0", + "5739": "branch0_seg0", + "5740": "branch0_seg0", + "5741": "branch0_seg0", + "5742": "branch0_seg0", + "5743": "branch0_seg0", + "5744": "branch0_seg0", + "5745": "branch0_seg0", + "5746": "branch0_seg0", + "5747": "branch0_seg0", + "5748": "branch0_seg0", + "5749": "branch0_seg0", + "5750": "branch0_seg0", + "5751": "branch0_seg0", + "5752": "branch0_seg0", + "5753": "branch0_seg0", + "5754": "branch0_seg0", + "5755": "branch0_seg0", + "5756": "branch0_seg0", + "5757": "branch0_seg0", + "5758": "branch0_seg0", + "5759": "branch0_seg0", + "5760": "branch0_seg0", + "5761": "branch0_seg0", + "5762": "branch0_seg0", + "5763": "branch0_seg0", + "5764": "branch0_seg0", + "5765": "branch0_seg0", + "5766": "branch0_seg0", + "5767": "branch0_seg0", + "5768": "branch0_seg0", + "5769": "branch0_seg0", + "5770": "branch0_seg0", + "5771": "branch0_seg0", + "5772": "branch0_seg0", + "5773": "branch0_seg0", + "5774": "branch0_seg0", + "5775": "branch0_seg0", + "5776": "branch0_seg0", + "5777": "branch0_seg0", + "5778": "branch0_seg0", + "5779": "branch0_seg0", + "5780": "branch0_seg0", + "5781": "branch0_seg0", + "5782": "branch0_seg0", + "5783": "branch0_seg0", + "5784": "branch0_seg0", + "5785": "branch0_seg0", + "5786": "branch0_seg0", + "5787": "branch0_seg0", + "5788": "branch0_seg0", + "5789": "branch0_seg0", + "5790": "branch0_seg0", + "5791": "branch0_seg0", + "5792": "branch0_seg0", + "5793": "branch0_seg0", + "5794": "branch0_seg0", + "5795": "branch0_seg0", + "5796": "branch0_seg0", + "5797": "branch0_seg0", + "5798": "branch0_seg0", + "5799": "branch0_seg0", + "5800": "branch0_seg0", + "5801": "branch0_seg0", + "5802": "branch0_seg0", + "5803": "branch0_seg0", + "5804": "branch0_seg0", + "5805": "branch0_seg0", + "5806": "branch0_seg0", + "5807": "branch0_seg0", + "5808": "branch0_seg0", + "5809": "branch0_seg0", + "5810": "branch0_seg0", + "5811": "branch0_seg0", + "5812": "branch0_seg0", + "5813": "branch0_seg0", + "5814": "branch0_seg0", + "5815": "branch0_seg0", + "5816": "branch0_seg0", + "5817": "branch0_seg0", + "5818": "branch0_seg0", + "5819": "branch0_seg0", + "5820": "branch0_seg0", + "5821": "branch0_seg0", + "5822": "branch0_seg0", + "5823": "branch0_seg0", + "5824": "branch0_seg0", + "5825": "branch0_seg0", + "5826": "branch0_seg0", + "5827": "branch0_seg0", + "5828": "branch0_seg0", + "5829": "branch0_seg0", + "5830": "branch0_seg0", + "5831": "branch0_seg0", + "5832": "branch0_seg0", + "5833": "branch0_seg0", + "5834": "branch0_seg0", + "5835": "branch0_seg0", + "5836": "branch0_seg0", + "5837": "branch0_seg0", + "5838": "branch0_seg0", + "5839": "branch0_seg0", + "5840": "branch0_seg0", + "5841": "branch0_seg0", + "5842": "branch0_seg0", + "5843": "branch0_seg0", + "5844": "branch0_seg0", + "5845": "branch0_seg0", + "5846": "branch0_seg0", + "5847": "branch0_seg0", + "5848": "branch0_seg0", + "5849": "branch0_seg0", + "5850": "branch0_seg0", + "5851": "branch0_seg0", + "5852": "branch0_seg0", + "5853": "branch0_seg0", + "5854": "branch0_seg0", + "5855": "branch0_seg0", + "5856": "branch0_seg0", + "5857": "branch0_seg0", + "5858": "branch0_seg0", + "5859": "branch0_seg0", + "5860": "branch0_seg0", + "5861": "branch0_seg0", + "5862": "branch0_seg0", + "5863": "branch0_seg0", + "5864": "branch0_seg0", + "5865": "branch0_seg0", + "5866": "branch0_seg0", + "5867": "branch0_seg0", + "5868": "branch0_seg0", + "5869": "branch0_seg0", + "5870": "branch0_seg0", + "5871": "branch0_seg0", + "5872": "branch0_seg0", + "5873": "branch0_seg0", + "5874": "branch0_seg0", + "5875": "branch0_seg0", + "5876": "branch0_seg0", + "5877": "branch0_seg0", + "5878": "branch0_seg0", + "5879": "branch0_seg0", + "5880": "branch0_seg0", + "5881": "branch0_seg0", + "5882": "branch0_seg0", + "5883": "branch0_seg0", + "5884": "branch0_seg0", + "5885": "branch0_seg0", + "5886": "branch0_seg0", + "5887": "branch0_seg0", + "5888": "branch0_seg0", + "5889": "branch0_seg0", + "5890": "branch0_seg0", + "5891": "branch0_seg0", + "5892": "branch0_seg0", + "5893": "branch0_seg0", + "5894": "branch0_seg0", + "5895": "branch0_seg0", + "5896": "branch0_seg0", + "5897": "branch0_seg0", + "5898": "branch0_seg0", + "5899": "branch0_seg0", + "5900": "branch0_seg0", + "5901": "branch0_seg0", + "5902": "branch0_seg0", + "5903": "branch0_seg0", + "5904": "branch0_seg0", + "5905": "branch0_seg0", + "5906": "branch0_seg0", + "5907": "branch0_seg0", + "5908": "branch0_seg0", + "5909": "branch0_seg0", + "5910": "branch0_seg0", + "5911": "branch0_seg0", + "5912": "branch0_seg0", + "5913": "branch0_seg0", + "5914": "branch0_seg0", + "5915": "branch0_seg0", + "5916": "branch0_seg0", + "5917": "branch0_seg0", + "5918": "branch0_seg0", + "5919": "branch0_seg0", + "5920": "branch0_seg0", + "5921": "branch0_seg0", + "5922": "branch0_seg0", + "5923": "branch0_seg0", + "5924": "branch0_seg0", + "5925": "branch0_seg0", + "5926": "branch0_seg0", + "5927": "branch0_seg0", + "5928": "branch0_seg0", + "5929": "branch0_seg0", + "5930": "branch0_seg0", + "5931": "branch0_seg0", + "5932": "branch0_seg0", + "5933": "branch0_seg0", + "5934": "branch0_seg0", + "5935": "branch0_seg0", + "5936": "branch0_seg0", + "5937": "branch0_seg0", + "5938": "branch0_seg0", + "5939": "branch0_seg0", + "5940": "branch0_seg0", + "5941": "branch0_seg0", + "5942": "branch0_seg0", + "5943": "branch0_seg0", + "5944": "branch0_seg0", + "5945": "branch0_seg0", + "5946": "branch0_seg0", + "5947": "branch0_seg0", + "5948": "branch0_seg0", + "5949": "branch0_seg0", + "5950": "branch0_seg0", + "5951": "branch0_seg0", + "5952": "branch0_seg0", + "5953": "branch0_seg0", + "5954": "branch0_seg0", + "5955": "branch0_seg0", + "5956": "branch0_seg0", + "5957": "branch0_seg0", + "5958": "branch0_seg0", + "5959": "branch0_seg0", + "5960": "branch0_seg0", + "5961": "branch0_seg0", + "5962": "branch0_seg0", + "5963": "branch0_seg0", + "5964": "branch0_seg0", + "5965": "branch0_seg0", + "5966": "branch0_seg0", + "5967": "branch0_seg0", + "5968": "branch0_seg0", + "5969": "branch0_seg0", + "5970": "branch0_seg0", + "5971": "branch0_seg0", + "5972": "branch0_seg0", + "5973": "branch0_seg0", + "5974": "branch0_seg0", + "5975": "branch0_seg0", + "5976": "branch0_seg0", + "5977": "branch0_seg0", + "5978": "branch0_seg0", + "5979": "branch0_seg0", + "5980": "branch0_seg0", + "5981": "branch0_seg0", + "5982": "branch0_seg0", + "5983": "branch0_seg0", + "5984": "branch0_seg0", + "5985": "branch0_seg0", + "5986": "branch0_seg0", + "5987": "branch0_seg0", + "5988": "branch0_seg0", + "5989": "branch0_seg0", + "5990": "branch0_seg0", + "5991": "branch0_seg0", + "5992": "branch0_seg0", + "5993": "branch0_seg0", + "5994": "branch0_seg0", + "5995": "branch0_seg0", + "5996": "branch0_seg0", + "5997": "branch0_seg0", + "5998": "branch0_seg0", + "5999": "branch0_seg0", + "6000": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.005, + "2": 0.01, + "3": 0.015, + "4": 0.02, + "5": 0.025, + "6": 0.03, + "7": 0.035, + "8": 0.04, + "9": 0.045, + "10": 0.05, + "11": 0.055, + "12": 0.06, + "13": 0.065, + "14": 0.07, + "15": 0.075, + "16": 0.08, + "17": 0.085, + "18": 0.09, + "19": 0.095, + "20": 0.1, + "21": 0.105, + "22": 0.11, + "23": 0.115, + "24": 0.12, + "25": 0.125, + "26": 0.13, + "27": 0.135, + "28": 0.14, + "29": 0.145, + "30": 0.15, + "31": 0.155, + "32": 0.16, + "33": 0.165, + "34": 0.17, + "35": 0.175, + "36": 0.18, + "37": 0.185, + "38": 0.19, + "39": 0.195, + "40": 0.2, + "41": 0.205, + "42": 0.21, + "43": 0.215, + "44": 0.22, + "45": 0.225, + "46": 0.23, + "47": 0.235, + "48": 0.24, + "49": 0.245, + "50": 0.25, + "51": 0.255, + "52": 0.26, + "53": 0.265, + "54": 0.27, + "55": 0.275, + "56": 0.28, + "57": 0.285, + "58": 0.29, + "59": 0.295, + "60": 0.3, + "61": 0.305, + "62": 0.31, + "63": 0.315, + "64": 0.32, + "65": 0.325, + "66": 0.33, + "67": 0.335, + "68": 0.34, + "69": 0.345, + "70": 0.35, + "71": 0.355, + "72": 0.36, + "73": 0.365, + "74": 0.37, + "75": 0.375, + "76": 0.38, + "77": 0.385, + "78": 0.39, + "79": 0.395, + "80": 0.4, + "81": 0.405, + "82": 0.41, + "83": 0.415, + "84": 0.42, + "85": 0.425, + "86": 0.43, + "87": 0.435, + "88": 0.44, + "89": 0.445, + "90": 0.45, + "91": 0.455, + "92": 0.46, + "93": 0.465, + "94": 0.47, + "95": 0.475, + "96": 0.48, + "97": 0.485, + "98": 0.49, + "99": 0.495, + "100": 0.5, + "101": 0.505, + "102": 0.51, + "103": 0.515, + "104": 0.52, + "105": 0.525, + "106": 0.53, + "107": 0.535, + "108": 0.54, + "109": 0.545, + "110": 0.55, + "111": 0.555, + "112": 0.56, + "113": 0.565, + "114": 0.57, + "115": 0.575, + "116": 0.58, + "117": 0.585, + "118": 0.59, + "119": 0.595, + "120": 0.6, + "121": 0.605, + "122": 0.61, + "123": 0.615, + "124": 0.62, + "125": 0.625, + "126": 0.63, + "127": 0.635, + "128": 0.64, + "129": 0.645, + "130": 0.65, + "131": 0.655, + "132": 0.66, + "133": 0.665, + "134": 0.67, + "135": 0.675, + "136": 0.68, + "137": 0.685, + "138": 0.69, + "139": 0.695, + "140": 0.7, + "141": 0.705, + "142": 0.71, + "143": 0.715, + "144": 0.72, + "145": 0.725, + "146": 0.73, + "147": 0.735, + "148": 0.74, + "149": 0.745, + "150": 0.75, + "151": 0.755, + "152": 0.76, + "153": 0.765, + "154": 0.77, + "155": 0.775, + "156": 0.78, + "157": 0.785, + "158": 0.79, + "159": 0.795, + "160": 0.8, + "161": 0.805, + "162": 0.81, + "163": 0.815, + "164": 0.82, + "165": 0.825, + "166": 0.83, + "167": 0.835, + "168": 0.84, + "169": 0.845, + "170": 0.85, + "171": 0.855, + "172": 0.86, + "173": 0.865, + "174": 0.87, + "175": 0.875, + "176": 0.88, + "177": 0.885, + "178": 0.89, + "179": 0.895, + "180": 0.9, + "181": 0.905, + "182": 0.91, + "183": 0.915, + "184": 0.92, + "185": 0.925, + "186": 0.93, + "187": 0.935, + "188": 0.94, + "189": 0.945, + "190": 0.95, + "191": 0.955, + "192": 0.96, + "193": 0.965, + "194": 0.97, + "195": 0.975, + "196": 0.98, + "197": 0.985, + "198": 0.99, + "199": 0.995, + "200": 1.0, + "201": 1.005, + "202": 1.01, + "203": 1.015, + "204": 1.02, + "205": 1.025, + "206": 1.03, + "207": 1.035, + "208": 1.04, + "209": 1.045, + "210": 1.05, + "211": 1.055, + "212": 1.06, + "213": 1.065, + "214": 1.07, + "215": 1.075, + "216": 1.08, + "217": 1.085, + "218": 1.09, + "219": 1.095, + "220": 1.1, + "221": 1.105, + "222": 1.11, + "223": 1.115, + "224": 1.12, + "225": 1.125, + "226": 1.13, + "227": 1.135, + "228": 1.14, + "229": 1.145, + "230": 1.15, + "231": 1.155, + "232": 1.16, + "233": 1.165, + "234": 1.17, + "235": 1.175, + "236": 1.18, + "237": 1.185, + "238": 1.19, + "239": 1.195, + "240": 1.2, + "241": 1.205, + "242": 1.21, + "243": 1.215, + "244": 1.22, + "245": 1.225, + "246": 1.23, + "247": 1.235, + "248": 1.24, + "249": 1.245, + "250": 1.25, + "251": 1.255, + "252": 1.26, + "253": 1.265, + "254": 1.27, + "255": 1.275, + "256": 1.28, + "257": 1.285, + "258": 1.29, + "259": 1.295, + "260": 1.3, + "261": 1.305, + "262": 1.31, + "263": 1.315, + "264": 1.32, + "265": 1.325, + "266": 1.33, + "267": 1.335, + "268": 1.34, + "269": 1.345, + "270": 1.35, + "271": 1.355, + "272": 1.36, + "273": 1.365, + "274": 1.37, + "275": 1.375, + "276": 1.38, + "277": 1.385, + "278": 1.39, + "279": 1.395, + "280": 1.4, + "281": 1.405, + "282": 1.41, + "283": 1.415, + "284": 1.42, + "285": 1.425, + "286": 1.43, + "287": 1.435, + "288": 1.44, + "289": 1.445, + "290": 1.45, + "291": 1.455, + "292": 1.46, + "293": 1.465, + "294": 1.47, + "295": 1.475, + "296": 1.48, + "297": 1.485, + "298": 1.49, + "299": 1.495, + "300": 1.5, + "301": 1.505, + "302": 1.51, + "303": 1.515, + "304": 1.52, + "305": 1.525, + "306": 1.53, + "307": 1.535, + "308": 1.54, + "309": 1.545, + "310": 1.55, + "311": 1.555, + "312": 1.56, + "313": 1.565, + "314": 1.57, + "315": 1.575, + "316": 1.58, + "317": 1.585, + "318": 1.59, + "319": 1.595, + "320": 1.6, + "321": 1.605, + "322": 1.61, + "323": 1.615, + "324": 1.62, + "325": 1.625, + "326": 1.63, + "327": 1.635, + "328": 1.64, + "329": 1.645, + "330": 1.65, + "331": 1.655, + "332": 1.66, + "333": 1.665, + "334": 1.67, + "335": 1.675, + "336": 1.68, + "337": 1.685, + "338": 1.69, + "339": 1.695, + "340": 1.7, + "341": 1.705, + "342": 1.71, + "343": 1.715, + "344": 1.72, + "345": 1.725, + "346": 1.73, + "347": 1.735, + "348": 1.74, + "349": 1.745, + "350": 1.75, + "351": 1.755, + "352": 1.76, + "353": 1.765, + "354": 1.77, + "355": 1.775, + "356": 1.78, + "357": 1.785, + "358": 1.79, + "359": 1.795, + "360": 1.8, + "361": 1.805, + "362": 1.81, + "363": 1.815, + "364": 1.82, + "365": 1.825, + "366": 1.83, + "367": 1.835, + "368": 1.84, + "369": 1.845, + "370": 1.85, + "371": 1.855, + "372": 1.86, + "373": 1.865, + "374": 1.87, + "375": 1.875, + "376": 1.88, + "377": 1.885, + "378": 1.89, + "379": 1.895, + "380": 1.9, + "381": 1.905, + "382": 1.91, + "383": 1.915, + "384": 1.92, + "385": 1.925, + "386": 1.93, + "387": 1.935, + "388": 1.94, + "389": 1.945, + "390": 1.95, + "391": 1.955, + "392": 1.96, + "393": 1.965, + "394": 1.97, + "395": 1.975, + "396": 1.98, + "397": 1.985, + "398": 1.99, + "399": 1.995, + "400": 2.0, + "401": 2.005, + "402": 2.01, + "403": 2.015, + "404": 2.02, + "405": 2.025, + "406": 2.03, + "407": 2.035, + "408": 2.04, + "409": 2.045, + "410": 2.05, + "411": 2.055, + "412": 2.06, + "413": 2.065, + "414": 2.07, + "415": 2.075, + "416": 2.08, + "417": 2.085, + "418": 2.09, + "419": 2.095, + "420": 2.1, + "421": 2.105, + "422": 2.11, + "423": 2.115, + "424": 2.12, + "425": 2.125, + "426": 2.13, + "427": 2.135, + "428": 2.14, + "429": 2.145, + "430": 2.15, + "431": 2.155, + "432": 2.16, + "433": 2.165, + "434": 2.17, + "435": 2.175, + "436": 2.18, + "437": 2.185, + "438": 2.19, + "439": 2.195, + "440": 2.2, + "441": 2.205, + "442": 2.21, + "443": 2.215, + "444": 2.22, + "445": 2.225, + "446": 2.23, + "447": 2.235, + "448": 2.24, + "449": 2.245, + "450": 2.25, + "451": 2.255, + "452": 2.26, + "453": 2.265, + "454": 2.27, + "455": 2.275, + "456": 2.28, + "457": 2.285, + "458": 2.29, + "459": 2.295, + "460": 2.3, + "461": 2.305, + "462": 2.31, + "463": 2.315, + "464": 2.32, + "465": 2.325, + "466": 2.33, + "467": 2.335, + "468": 2.34, + "469": 2.345, + "470": 2.35, + "471": 2.355, + "472": 2.36, + "473": 2.365, + "474": 2.37, + "475": 2.375, + "476": 2.38, + "477": 2.385, + "478": 2.39, + "479": 2.395, + "480": 2.4, + "481": 2.405, + "482": 2.41, + "483": 2.415, + "484": 2.42, + "485": 2.425, + "486": 2.43, + "487": 2.435, + "488": 2.44, + "489": 2.445, + "490": 2.45, + "491": 2.455, + "492": 2.46, + "493": 2.465, + "494": 2.47, + "495": 2.475, + "496": 2.48, + "497": 2.485, + "498": 2.49, + "499": 2.495, + "500": 2.5, + "501": 2.505, + "502": 2.51, + "503": 2.515, + "504": 2.52, + "505": 2.525, + "506": 2.53, + "507": 2.535, + "508": 2.54, + "509": 2.545, + "510": 2.55, + "511": 2.555, + "512": 2.56, + "513": 2.565, + "514": 2.57, + "515": 2.575, + "516": 2.58, + "517": 2.585, + "518": 2.59, + "519": 2.595, + "520": 2.6, + "521": 2.605, + "522": 2.61, + "523": 2.615, + "524": 2.62, + "525": 2.625, + "526": 2.63, + "527": 2.635, + "528": 2.64, + "529": 2.645, + "530": 2.65, + "531": 2.655, + "532": 2.66, + "533": 2.665, + "534": 2.67, + "535": 2.675, + "536": 2.68, + "537": 2.685, + "538": 2.69, + "539": 2.695, + "540": 2.7, + "541": 2.705, + "542": 2.71, + "543": 2.715, + "544": 2.72, + "545": 2.725, + "546": 2.73, + "547": 2.735, + "548": 2.74, + "549": 2.745, + "550": 2.75, + "551": 2.755, + "552": 2.76, + "553": 2.765, + "554": 2.77, + "555": 2.775, + "556": 2.78, + "557": 2.785, + "558": 2.79, + "559": 2.795, + "560": 2.8, + "561": 2.805, + "562": 2.81, + "563": 2.815, + "564": 2.82, + "565": 2.825, + "566": 2.83, + "567": 2.835, + "568": 2.84, + "569": 2.845, + "570": 2.85, + "571": 2.855, + "572": 2.86, + "573": 2.865, + "574": 2.87, + "575": 2.875, + "576": 2.88, + "577": 2.885, + "578": 2.89, + "579": 2.895, + "580": 2.9, + "581": 2.905, + "582": 2.91, + "583": 2.915, + "584": 2.92, + "585": 2.925, + "586": 2.93, + "587": 2.935, + "588": 2.94, + "589": 2.945, + "590": 2.95, + "591": 2.955, + "592": 2.96, + "593": 2.965, + "594": 2.97, + "595": 2.975, + "596": 2.98, + "597": 2.985, + "598": 2.99, + "599": 2.995, + "600": 3.0, + "601": 3.005, + "602": 3.01, + "603": 3.015, + "604": 3.02, + "605": 3.025, + "606": 3.03, + "607": 3.035, + "608": 3.04, + "609": 3.045, + "610": 3.05, + "611": 3.055, + "612": 3.06, + "613": 3.065, + "614": 3.07, + "615": 3.075, + "616": 3.08, + "617": 3.085, + "618": 3.09, + "619": 3.095, + "620": 3.1, + "621": 3.105, + "622": 3.11, + "623": 3.115, + "624": 3.12, + "625": 3.125, + "626": 3.13, + "627": 3.135, + "628": 3.14, + "629": 3.145, + "630": 3.15, + "631": 3.155, + "632": 3.16, + "633": 3.165, + "634": 3.17, + "635": 3.175, + "636": 3.18, + "637": 3.185, + "638": 3.19, + "639": 3.195, + "640": 3.2, + "641": 3.205, + "642": 3.21, + "643": 3.215, + "644": 3.22, + "645": 3.225, + "646": 3.23, + "647": 3.235, + "648": 3.24, + "649": 3.245, + "650": 3.25, + "651": 3.255, + "652": 3.26, + "653": 3.265, + "654": 3.27, + "655": 3.275, + "656": 3.28, + "657": 3.285, + "658": 3.29, + "659": 3.295, + "660": 3.3, + "661": 3.305, + "662": 3.31, + "663": 3.315, + "664": 3.32, + "665": 3.325, + "666": 3.33, + "667": 3.335, + "668": 3.34, + "669": 3.345, + "670": 3.35, + "671": 3.355, + "672": 3.36, + "673": 3.365, + "674": 3.37, + "675": 3.375, + "676": 3.38, + "677": 3.385, + "678": 3.39, + "679": 3.395, + "680": 3.4, + "681": 3.405, + "682": 3.41, + "683": 3.415, + "684": 3.42, + "685": 3.425, + "686": 3.43, + "687": 3.435, + "688": 3.44, + "689": 3.445, + "690": 3.45, + "691": 3.455, + "692": 3.46, + "693": 3.465, + "694": 3.47, + "695": 3.475, + "696": 3.48, + "697": 3.485, + "698": 3.49, + "699": 3.495, + "700": 3.5, + "701": 3.505, + "702": 3.51, + "703": 3.515, + "704": 3.52, + "705": 3.525, + "706": 3.53, + "707": 3.535, + "708": 3.54, + "709": 3.545, + "710": 3.55, + "711": 3.555, + "712": 3.56, + "713": 3.565, + "714": 3.57, + "715": 3.575, + "716": 3.58, + "717": 3.585, + "718": 3.59, + "719": 3.595, + "720": 3.6, + "721": 3.605, + "722": 3.61, + "723": 3.615, + "724": 3.62, + "725": 3.625, + "726": 3.63, + "727": 3.635, + "728": 3.64, + "729": 3.645, + "730": 3.65, + "731": 3.655, + "732": 3.66, + "733": 3.665, + "734": 3.67, + "735": 3.675, + "736": 3.68, + "737": 3.685, + "738": 3.69, + "739": 3.695, + "740": 3.7, + "741": 3.705, + "742": 3.71, + "743": 3.715, + "744": 3.72, + "745": 3.725, + "746": 3.73, + "747": 3.735, + "748": 3.74, + "749": 3.745, + "750": 3.75, + "751": 3.755, + "752": 3.76, + "753": 3.765, + "754": 3.77, + "755": 3.775, + "756": 3.78, + "757": 3.785, + "758": 3.79, + "759": 3.795, + "760": 3.8, + "761": 3.805, + "762": 3.81, + "763": 3.815, + "764": 3.82, + "765": 3.825, + "766": 3.83, + "767": 3.835, + "768": 3.84, + "769": 3.845, + "770": 3.85, + "771": 3.855, + "772": 3.86, + "773": 3.865, + "774": 3.87, + "775": 3.875, + "776": 3.88, + "777": 3.885, + "778": 3.89, + "779": 3.895, + "780": 3.9, + "781": 3.905, + "782": 3.91, + "783": 3.915, + "784": 3.92, + "785": 3.925, + "786": 3.93, + "787": 3.935, + "788": 3.94, + "789": 3.945, + "790": 3.95, + "791": 3.955, + "792": 3.96, + "793": 3.965, + "794": 3.97, + "795": 3.975, + "796": 3.98, + "797": 3.985, + "798": 3.99, + "799": 3.995, + "800": 4.0, + "801": 4.005, + "802": 4.01, + "803": 4.015, + "804": 4.02, + "805": 4.025, + "806": 4.03, + "807": 4.035, + "808": 4.04, + "809": 4.045, + "810": 4.05, + "811": 4.055, + "812": 4.06, + "813": 4.065, + "814": 4.07, + "815": 4.075, + "816": 4.08, + "817": 4.085, + "818": 4.09, + "819": 4.095, + "820": 4.1, + "821": 4.105, + "822": 4.11, + "823": 4.115, + "824": 4.12, + "825": 4.125, + "826": 4.13, + "827": 4.135, + "828": 4.14, + "829": 4.145, + "830": 4.15, + "831": 4.155, + "832": 4.16, + "833": 4.165, + "834": 4.17, + "835": 4.175, + "836": 4.18, + "837": 4.185, + "838": 4.19, + "839": 4.195, + "840": 4.2, + "841": 4.205, + "842": 4.21, + "843": 4.215, + "844": 4.22, + "845": 4.225, + "846": 4.23, + "847": 4.235, + "848": 4.24, + "849": 4.245, + "850": 4.25, + "851": 4.255, + "852": 4.26, + "853": 4.265, + "854": 4.27, + "855": 4.275, + "856": 4.28, + "857": 4.285, + "858": 4.29, + "859": 4.295, + "860": 4.3, + "861": 4.305, + "862": 4.31, + "863": 4.315, + "864": 4.32, + "865": 4.325, + "866": 4.33, + "867": 4.335, + "868": 4.34, + "869": 4.345, + "870": 4.35, + "871": 4.355, + "872": 4.36, + "873": 4.365, + "874": 4.37, + "875": 4.375, + "876": 4.38, + "877": 4.385, + "878": 4.39, + "879": 4.395, + "880": 4.4, + "881": 4.405, + "882": 4.41, + "883": 4.415, + "884": 4.42, + "885": 4.425, + "886": 4.43, + "887": 4.435, + "888": 4.44, + "889": 4.445, + "890": 4.45, + "891": 4.455, + "892": 4.46, + "893": 4.465, + "894": 4.47, + "895": 4.475, + "896": 4.48, + "897": 4.485, + "898": 4.49, + "899": 4.495, + "900": 4.5, + "901": 4.505, + "902": 4.51, + "903": 4.515, + "904": 4.52, + "905": 4.525, + "906": 4.53, + "907": 4.535, + "908": 4.54, + "909": 4.545, + "910": 4.55, + "911": 4.555, + "912": 4.56, + "913": 4.565, + "914": 4.57, + "915": 4.575, + "916": 4.58, + "917": 4.585, + "918": 4.59, + "919": 4.595, + "920": 4.6, + "921": 4.605, + "922": 4.61, + "923": 4.615, + "924": 4.62, + "925": 4.625, + "926": 4.63, + "927": 4.635, + "928": 4.64, + "929": 4.645, + "930": 4.65, + "931": 4.655, + "932": 4.66, + "933": 4.665, + "934": 4.67, + "935": 4.675, + "936": 4.68, + "937": 4.685, + "938": 4.69, + "939": 4.695, + "940": 4.7, + "941": 4.705, + "942": 4.71, + "943": 4.715, + "944": 4.72, + "945": 4.725, + "946": 4.73, + "947": 4.735, + "948": 4.74, + "949": 4.745, + "950": 4.75, + "951": 4.755, + "952": 4.76, + "953": 4.765, + "954": 4.77, + "955": 4.775, + "956": 4.78, + "957": 4.785, + "958": 4.79, + "959": 4.795, + "960": 4.8, + "961": 4.805, + "962": 4.81, + "963": 4.815, + "964": 4.82, + "965": 4.825, + "966": 4.83, + "967": 4.835, + "968": 4.84, + "969": 4.845, + "970": 4.85, + "971": 4.855, + "972": 4.86, + "973": 4.865, + "974": 4.87, + "975": 4.875, + "976": 4.88, + "977": 4.885, + "978": 4.89, + "979": 4.895, + "980": 4.9, + "981": 4.905, + "982": 4.91, + "983": 4.915, + "984": 4.92, + "985": 4.925, + "986": 4.93, + "987": 4.935, + "988": 4.94, + "989": 4.945, + "990": 4.95, + "991": 4.955, + "992": 4.96, + "993": 4.965, + "994": 4.97, + "995": 4.975, + "996": 4.98, + "997": 4.985, + "998": 4.99, + "999": 4.995, + "1000": 5.0, + "1001": 5.005, + "1002": 5.01, + "1003": 5.015, + "1004": 5.02, + "1005": 5.025, + "1006": 5.03, + "1007": 5.035, + "1008": 5.04, + "1009": 5.045, + "1010": 5.05, + "1011": 5.055, + "1012": 5.06, + "1013": 5.065, + "1014": 5.07, + "1015": 5.075, + "1016": 5.08, + "1017": 5.085, + "1018": 5.09, + "1019": 5.095, + "1020": 5.1, + "1021": 5.105, + "1022": 5.11, + "1023": 5.115, + "1024": 5.12, + "1025": 5.125, + "1026": 5.13, + "1027": 5.135, + "1028": 5.14, + "1029": 5.145, + "1030": 5.15, + "1031": 5.155, + "1032": 5.16, + "1033": 5.165, + "1034": 5.17, + "1035": 5.175, + "1036": 5.18, + "1037": 5.185, + "1038": 5.19, + "1039": 5.195, + "1040": 5.2, + "1041": 5.205, + "1042": 5.21, + "1043": 5.215, + "1044": 5.22, + "1045": 5.225, + "1046": 5.23, + "1047": 5.235, + "1048": 5.24, + "1049": 5.245, + "1050": 5.25, + "1051": 5.255, + "1052": 5.26, + "1053": 5.265, + "1054": 5.27, + "1055": 5.275, + "1056": 5.28, + "1057": 5.285, + "1058": 5.29, + "1059": 5.295, + "1060": 5.3, + "1061": 5.305, + "1062": 5.31, + "1063": 5.315, + "1064": 5.32, + "1065": 5.325, + "1066": 5.33, + "1067": 5.335, + "1068": 5.34, + "1069": 5.345, + "1070": 5.35, + "1071": 5.355, + "1072": 5.36, + "1073": 5.365, + "1074": 5.37, + "1075": 5.375, + "1076": 5.38, + "1077": 5.385, + "1078": 5.39, + "1079": 5.395, + "1080": 5.4, + "1081": 5.405, + "1082": 5.41, + "1083": 5.415, + "1084": 5.42, + "1085": 5.425, + "1086": 5.43, + "1087": 5.435, + "1088": 5.44, + "1089": 5.445, + "1090": 5.45, + "1091": 5.455, + "1092": 5.46, + "1093": 5.465, + "1094": 5.47, + "1095": 5.475, + "1096": 5.48, + "1097": 5.485, + "1098": 5.49, + "1099": 5.495, + "1100": 5.5, + "1101": 5.505, + "1102": 5.51, + "1103": 5.515, + "1104": 5.52, + "1105": 5.525, + "1106": 5.53, + "1107": 5.535, + "1108": 5.54, + "1109": 5.545, + "1110": 5.55, + "1111": 5.555, + "1112": 5.56, + "1113": 5.565, + "1114": 5.57, + "1115": 5.575, + "1116": 5.58, + "1117": 5.585, + "1118": 5.59, + "1119": 5.595, + "1120": 5.6, + "1121": 5.605, + "1122": 5.61, + "1123": 5.615, + "1124": 5.62, + "1125": 5.625, + "1126": 5.63, + "1127": 5.635, + "1128": 5.64, + "1129": 5.645, + "1130": 5.65, + "1131": 5.655, + "1132": 5.66, + "1133": 5.665, + "1134": 5.67, + "1135": 5.675, + "1136": 5.68, + "1137": 5.685, + "1138": 5.69, + "1139": 5.695, + "1140": 5.7, + "1141": 5.705, + "1142": 5.71, + "1143": 5.715, + "1144": 5.72, + "1145": 5.725, + "1146": 5.73, + "1147": 5.735, + "1148": 5.74, + "1149": 5.745, + "1150": 5.75, + "1151": 5.755, + "1152": 5.76, + "1153": 5.765, + "1154": 5.77, + "1155": 5.775, + "1156": 5.78, + "1157": 5.785, + "1158": 5.79, + "1159": 5.795, + "1160": 5.8, + "1161": 5.805, + "1162": 5.81, + "1163": 5.815, + "1164": 5.82, + "1165": 5.825, + "1166": 5.83, + "1167": 5.835, + "1168": 5.84, + "1169": 5.845, + "1170": 5.85, + "1171": 5.855, + "1172": 5.86, + "1173": 5.865, + "1174": 5.87, + "1175": 5.875, + "1176": 5.88, + "1177": 5.885, + "1178": 5.89, + "1179": 5.895, + "1180": 5.9, + "1181": 5.905, + "1182": 5.91, + "1183": 5.915, + "1184": 5.92, + "1185": 5.925, + "1186": 5.93, + "1187": 5.935, + "1188": 5.94, + "1189": 5.945, + "1190": 5.95, + "1191": 5.955, + "1192": 5.96, + "1193": 5.965, + "1194": 5.97, + "1195": 5.975, + "1196": 5.98, + "1197": 5.985, + "1198": 5.99, + "1199": 5.995, + "1200": 6.0, + "1201": 6.005, + "1202": 6.01, + "1203": 6.015, + "1204": 6.02, + "1205": 6.025, + "1206": 6.03, + "1207": 6.035, + "1208": 6.04, + "1209": 6.045, + "1210": 6.05, + "1211": 6.055, + "1212": 6.06, + "1213": 6.065, + "1214": 6.07, + "1215": 6.075, + "1216": 6.08, + "1217": 6.085, + "1218": 6.09, + "1219": 6.095, + "1220": 6.1, + "1221": 6.105, + "1222": 6.11, + "1223": 6.115, + "1224": 6.12, + "1225": 6.125, + "1226": 6.13, + "1227": 6.135, + "1228": 6.14, + "1229": 6.145, + "1230": 6.15, + "1231": 6.155, + "1232": 6.16, + "1233": 6.165, + "1234": 6.17, + "1235": 6.175, + "1236": 6.18, + "1237": 6.185, + "1238": 6.19, + "1239": 6.195, + "1240": 6.2, + "1241": 6.205, + "1242": 6.21, + "1243": 6.215, + "1244": 6.22, + "1245": 6.225, + "1246": 6.23, + "1247": 6.235, + "1248": 6.24, + "1249": 6.245, + "1250": 6.25, + "1251": 6.255, + "1252": 6.26, + "1253": 6.265, + "1254": 6.27, + "1255": 6.275, + "1256": 6.28, + "1257": 6.285, + "1258": 6.29, + "1259": 6.295, + "1260": 6.3, + "1261": 6.305, + "1262": 6.31, + "1263": 6.315, + "1264": 6.32, + "1265": 6.325, + "1266": 6.33, + "1267": 6.335, + "1268": 6.34, + "1269": 6.345, + "1270": 6.35, + "1271": 6.355, + "1272": 6.36, + "1273": 6.365, + "1274": 6.37, + "1275": 6.375, + "1276": 6.38, + "1277": 6.385, + "1278": 6.39, + "1279": 6.395, + "1280": 6.4, + "1281": 6.405, + "1282": 6.41, + "1283": 6.415, + "1284": 6.42, + "1285": 6.425, + "1286": 6.43, + "1287": 6.435, + "1288": 6.44, + "1289": 6.445, + "1290": 6.45, + "1291": 6.455, + "1292": 6.46, + "1293": 6.465, + "1294": 6.47, + "1295": 6.475, + "1296": 6.48, + "1297": 6.485, + "1298": 6.49, + "1299": 6.495, + "1300": 6.5, + "1301": 6.505, + "1302": 6.51, + "1303": 6.515, + "1304": 6.52, + "1305": 6.525, + "1306": 6.53, + "1307": 6.535, + "1308": 6.54, + "1309": 6.545, + "1310": 6.55, + "1311": 6.555, + "1312": 6.56, + "1313": 6.565, + "1314": 6.57, + "1315": 6.575, + "1316": 6.58, + "1317": 6.585, + "1318": 6.59, + "1319": 6.595, + "1320": 6.6, + "1321": 6.605, + "1322": 6.61, + "1323": 6.615, + "1324": 6.62, + "1325": 6.625, + "1326": 6.63, + "1327": 6.635, + "1328": 6.64, + "1329": 6.645, + "1330": 6.65, + "1331": 6.655, + "1332": 6.66, + "1333": 6.665, + "1334": 6.67, + "1335": 6.675, + "1336": 6.68, + "1337": 6.685, + "1338": 6.69, + "1339": 6.695, + "1340": 6.7, + "1341": 6.705, + "1342": 6.71, + "1343": 6.715, + "1344": 6.72, + "1345": 6.725, + "1346": 6.73, + "1347": 6.735, + "1348": 6.74, + "1349": 6.745, + "1350": 6.75, + "1351": 6.755, + "1352": 6.76, + "1353": 6.765, + "1354": 6.77, + "1355": 6.775, + "1356": 6.78, + "1357": 6.785, + "1358": 6.79, + "1359": 6.795, + "1360": 6.8, + "1361": 6.805, + "1362": 6.81, + "1363": 6.815, + "1364": 6.82, + "1365": 6.825, + "1366": 6.83, + "1367": 6.835, + "1368": 6.84, + "1369": 6.845, + "1370": 6.85, + "1371": 6.855, + "1372": 6.86, + "1373": 6.865, + "1374": 6.87, + "1375": 6.875, + "1376": 6.88, + "1377": 6.885, + "1378": 6.89, + "1379": 6.895, + "1380": 6.9, + "1381": 6.905, + "1382": 6.91, + "1383": 6.915, + "1384": 6.92, + "1385": 6.925, + "1386": 6.93, + "1387": 6.935, + "1388": 6.94, + "1389": 6.945, + "1390": 6.95, + "1391": 6.955, + "1392": 6.96, + "1393": 6.965, + "1394": 6.97, + "1395": 6.975, + "1396": 6.98, + "1397": 6.985, + "1398": 6.99, + "1399": 6.995, + "1400": 7.0, + "1401": 7.005, + "1402": 7.01, + "1403": 7.015, + "1404": 7.02, + "1405": 7.025, + "1406": 7.03, + "1407": 7.035, + "1408": 7.04, + "1409": 7.045, + "1410": 7.05, + "1411": 7.055, + "1412": 7.06, + "1413": 7.065, + "1414": 7.07, + "1415": 7.075, + "1416": 7.08, + "1417": 7.085, + "1418": 7.09, + "1419": 7.095, + "1420": 7.1, + "1421": 7.105, + "1422": 7.11, + "1423": 7.115, + "1424": 7.12, + "1425": 7.125, + "1426": 7.13, + "1427": 7.135, + "1428": 7.14, + "1429": 7.145, + "1430": 7.15, + "1431": 7.155, + "1432": 7.16, + "1433": 7.165, + "1434": 7.17, + "1435": 7.175, + "1436": 7.18, + "1437": 7.185, + "1438": 7.19, + "1439": 7.195, + "1440": 7.2, + "1441": 7.205, + "1442": 7.21, + "1443": 7.215, + "1444": 7.22, + "1445": 7.225, + "1446": 7.23, + "1447": 7.235, + "1448": 7.24, + "1449": 7.245, + "1450": 7.25, + "1451": 7.255, + "1452": 7.26, + "1453": 7.265, + "1454": 7.27, + "1455": 7.275, + "1456": 7.28, + "1457": 7.285, + "1458": 7.29, + "1459": 7.295, + "1460": 7.3, + "1461": 7.305, + "1462": 7.31, + "1463": 7.315, + "1464": 7.32, + "1465": 7.325, + "1466": 7.33, + "1467": 7.335, + "1468": 7.34, + "1469": 7.345, + "1470": 7.35, + "1471": 7.355, + "1472": 7.36, + "1473": 7.365, + "1474": 7.37, + "1475": 7.375, + "1476": 7.38, + "1477": 7.385, + "1478": 7.39, + "1479": 7.395, + "1480": 7.4, + "1481": 7.405, + "1482": 7.41, + "1483": 7.415, + "1484": 7.42, + "1485": 7.425, + "1486": 7.43, + "1487": 7.435, + "1488": 7.44, + "1489": 7.445, + "1490": 7.45, + "1491": 7.455, + "1492": 7.46, + "1493": 7.465, + "1494": 7.47, + "1495": 7.475, + "1496": 7.48, + "1497": 7.485, + "1498": 7.49, + "1499": 7.495, + "1500": 7.5, + "1501": 7.505, + "1502": 7.51, + "1503": 7.515, + "1504": 7.52, + "1505": 7.525, + "1506": 7.53, + "1507": 7.535, + "1508": 7.54, + "1509": 7.545, + "1510": 7.55, + "1511": 7.555, + "1512": 7.56, + "1513": 7.565, + "1514": 7.57, + "1515": 7.575, + "1516": 7.58, + "1517": 7.585, + "1518": 7.59, + "1519": 7.595, + "1520": 7.6, + "1521": 7.605, + "1522": 7.61, + "1523": 7.615, + "1524": 7.62, + "1525": 7.625, + "1526": 7.63, + "1527": 7.635, + "1528": 7.64, + "1529": 7.645, + "1530": 7.65, + "1531": 7.655, + "1532": 7.66, + "1533": 7.665, + "1534": 7.67, + "1535": 7.675, + "1536": 7.68, + "1537": 7.685, + "1538": 7.69, + "1539": 7.695, + "1540": 7.7, + "1541": 7.705, + "1542": 7.71, + "1543": 7.715, + "1544": 7.72, + "1545": 7.725, + "1546": 7.73, + "1547": 7.735, + "1548": 7.74, + "1549": 7.745, + "1550": 7.75, + "1551": 7.755, + "1552": 7.76, + "1553": 7.765, + "1554": 7.77, + "1555": 7.775, + "1556": 7.78, + "1557": 7.785, + "1558": 7.79, + "1559": 7.795, + "1560": 7.8, + "1561": 7.805, + "1562": 7.81, + "1563": 7.815, + "1564": 7.82, + "1565": 7.825, + "1566": 7.83, + "1567": 7.835, + "1568": 7.84, + "1569": 7.845, + "1570": 7.85, + "1571": 7.855, + "1572": 7.86, + "1573": 7.865, + "1574": 7.87, + "1575": 7.875, + "1576": 7.88, + "1577": 7.885, + "1578": 7.89, + "1579": 7.895, + "1580": 7.9, + "1581": 7.905, + "1582": 7.91, + "1583": 7.915, + "1584": 7.92, + "1585": 7.925, + "1586": 7.93, + "1587": 7.935, + "1588": 7.94, + "1589": 7.945, + "1590": 7.95, + "1591": 7.955, + "1592": 7.96, + "1593": 7.965, + "1594": 7.97, + "1595": 7.975, + "1596": 7.98, + "1597": 7.985, + "1598": 7.99, + "1599": 7.995, + "1600": 8.0, + "1601": 8.005, + "1602": 8.01, + "1603": 8.015, + "1604": 8.02, + "1605": 8.025, + "1606": 8.03, + "1607": 8.035, + "1608": 8.04, + "1609": 8.045, + "1610": 8.05, + "1611": 8.055, + "1612": 8.06, + "1613": 8.065, + "1614": 8.07, + "1615": 8.075, + "1616": 8.08, + "1617": 8.085, + "1618": 8.09, + "1619": 8.095, + "1620": 8.1, + "1621": 8.105, + "1622": 8.11, + "1623": 8.115, + "1624": 8.12, + "1625": 8.125, + "1626": 8.13, + "1627": 8.135, + "1628": 8.14, + "1629": 8.145, + "1630": 8.15, + "1631": 8.155, + "1632": 8.16, + "1633": 8.165, + "1634": 8.17, + "1635": 8.175, + "1636": 8.18, + "1637": 8.185, + "1638": 8.19, + "1639": 8.195, + "1640": 8.2, + "1641": 8.205, + "1642": 8.21, + "1643": 8.215, + "1644": 8.22, + "1645": 8.225, + "1646": 8.23, + "1647": 8.235, + "1648": 8.24, + "1649": 8.245, + "1650": 8.25, + "1651": 8.255, + "1652": 8.26, + "1653": 8.265, + "1654": 8.27, + "1655": 8.275, + "1656": 8.28, + "1657": 8.285, + "1658": 8.29, + "1659": 8.295, + "1660": 8.3, + "1661": 8.305, + "1662": 8.31, + "1663": 8.315, + "1664": 8.32, + "1665": 8.325, + "1666": 8.33, + "1667": 8.335, + "1668": 8.34, + "1669": 8.345, + "1670": 8.35, + "1671": 8.355, + "1672": 8.36, + "1673": 8.365, + "1674": 8.37, + "1675": 8.375, + "1676": 8.38, + "1677": 8.385, + "1678": 8.39, + "1679": 8.395, + "1680": 8.4, + "1681": 8.405, + "1682": 8.41, + "1683": 8.415, + "1684": 8.42, + "1685": 8.425, + "1686": 8.43, + "1687": 8.435, + "1688": 8.44, + "1689": 8.445, + "1690": 8.45, + "1691": 8.455, + "1692": 8.46, + "1693": 8.465, + "1694": 8.47, + "1695": 8.475, + "1696": 8.48, + "1697": 8.485, + "1698": 8.49, + "1699": 8.495, + "1700": 8.5, + "1701": 8.505, + "1702": 8.51, + "1703": 8.515, + "1704": 8.52, + "1705": 8.525, + "1706": 8.53, + "1707": 8.535, + "1708": 8.54, + "1709": 8.545, + "1710": 8.55, + "1711": 8.555, + "1712": 8.56, + "1713": 8.565, + "1714": 8.57, + "1715": 8.575, + "1716": 8.58, + "1717": 8.585, + "1718": 8.59, + "1719": 8.595, + "1720": 8.6, + "1721": 8.605, + "1722": 8.61, + "1723": 8.615, + "1724": 8.62, + "1725": 8.625, + "1726": 8.63, + "1727": 8.635, + "1728": 8.64, + "1729": 8.645, + "1730": 8.65, + "1731": 8.655, + "1732": 8.66, + "1733": 8.665, + "1734": 8.67, + "1735": 8.675, + "1736": 8.68, + "1737": 8.685, + "1738": 8.69, + "1739": 8.695, + "1740": 8.7, + "1741": 8.705, + "1742": 8.71, + "1743": 8.715, + "1744": 8.72, + "1745": 8.725, + "1746": 8.73, + "1747": 8.735, + "1748": 8.74, + "1749": 8.745, + "1750": 8.75, + "1751": 8.755, + "1752": 8.76, + "1753": 8.765, + "1754": 8.77, + "1755": 8.775, + "1756": 8.78, + "1757": 8.785, + "1758": 8.79, + "1759": 8.795, + "1760": 8.8, + "1761": 8.805, + "1762": 8.81, + "1763": 8.815, + "1764": 8.82, + "1765": 8.825, + "1766": 8.83, + "1767": 8.835, + "1768": 8.84, + "1769": 8.845, + "1770": 8.85, + "1771": 8.855, + "1772": 8.86, + "1773": 8.865, + "1774": 8.87, + "1775": 8.875, + "1776": 8.88, + "1777": 8.885, + "1778": 8.89, + "1779": 8.895, + "1780": 8.9, + "1781": 8.905, + "1782": 8.91, + "1783": 8.915, + "1784": 8.92, + "1785": 8.925, + "1786": 8.93, + "1787": 8.935, + "1788": 8.94, + "1789": 8.945, + "1790": 8.95, + "1791": 8.955, + "1792": 8.96, + "1793": 8.965, + "1794": 8.97, + "1795": 8.975, + "1796": 8.98, + "1797": 8.985, + "1798": 8.99, + "1799": 8.995, + "1800": 9.0, + "1801": 9.005, + "1802": 9.01, + "1803": 9.015, + "1804": 9.02, + "1805": 9.025, + "1806": 9.03, + "1807": 9.035, + "1808": 9.04, + "1809": 9.045, + "1810": 9.05, + "1811": 9.055, + "1812": 9.06, + "1813": 9.065, + "1814": 9.07, + "1815": 9.075, + "1816": 9.08, + "1817": 9.085, + "1818": 9.09, + "1819": 9.095, + "1820": 9.1, + "1821": 9.105, + "1822": 9.11, + "1823": 9.115, + "1824": 9.12, + "1825": 9.125, + "1826": 9.13, + "1827": 9.135, + "1828": 9.14, + "1829": 9.145, + "1830": 9.15, + "1831": 9.155, + "1832": 9.16, + "1833": 9.165, + "1834": 9.17, + "1835": 9.175, + "1836": 9.18, + "1837": 9.185, + "1838": 9.19, + "1839": 9.195, + "1840": 9.2, + "1841": 9.205, + "1842": 9.21, + "1843": 9.215, + "1844": 9.22, + "1845": 9.225, + "1846": 9.23, + "1847": 9.235, + "1848": 9.24, + "1849": 9.245, + "1850": 9.25, + "1851": 9.255, + "1852": 9.26, + "1853": 9.265, + "1854": 9.27, + "1855": 9.275, + "1856": 9.28, + "1857": 9.285, + "1858": 9.29, + "1859": 9.295, + "1860": 9.3, + "1861": 9.305, + "1862": 9.31, + "1863": 9.315, + "1864": 9.32, + "1865": 9.325, + "1866": 9.33, + "1867": 9.335, + "1868": 9.34, + "1869": 9.345, + "1870": 9.35, + "1871": 9.355, + "1872": 9.36, + "1873": 9.365, + "1874": 9.37, + "1875": 9.375, + "1876": 9.38, + "1877": 9.385, + "1878": 9.39, + "1879": 9.395, + "1880": 9.4, + "1881": 9.405, + "1882": 9.41, + "1883": 9.415, + "1884": 9.42, + "1885": 9.425, + "1886": 9.43, + "1887": 9.435, + "1888": 9.44, + "1889": 9.445, + "1890": 9.45, + "1891": 9.455, + "1892": 9.46, + "1893": 9.465, + "1894": 9.47, + "1895": 9.475, + "1896": 9.48, + "1897": 9.485, + "1898": 9.49, + "1899": 9.495, + "1900": 9.5, + "1901": 9.505, + "1902": 9.51, + "1903": 9.515, + "1904": 9.52, + "1905": 9.525, + "1906": 9.53, + "1907": 9.535, + "1908": 9.54, + "1909": 9.545, + "1910": 9.55, + "1911": 9.555, + "1912": 9.56, + "1913": 9.565, + "1914": 9.57, + "1915": 9.575, + "1916": 9.58, + "1917": 9.585, + "1918": 9.59, + "1919": 9.595, + "1920": 9.6, + "1921": 9.605, + "1922": 9.61, + "1923": 9.615, + "1924": 9.62, + "1925": 9.625, + "1926": 9.63, + "1927": 9.635, + "1928": 9.64, + "1929": 9.645, + "1930": 9.65, + "1931": 9.655, + "1932": 9.66, + "1933": 9.665, + "1934": 9.67, + "1935": 9.675, + "1936": 9.68, + "1937": 9.685, + "1938": 9.69, + "1939": 9.695, + "1940": 9.7, + "1941": 9.705, + "1942": 9.71, + "1943": 9.715, + "1944": 9.72, + "1945": 9.725, + "1946": 9.73, + "1947": 9.735, + "1948": 9.74, + "1949": 9.745, + "1950": 9.75, + "1951": 9.755, + "1952": 9.76, + "1953": 9.765, + "1954": 9.77, + "1955": 9.775, + "1956": 9.78, + "1957": 9.785, + "1958": 9.79, + "1959": 9.795, + "1960": 9.8, + "1961": 9.805, + "1962": 9.81, + "1963": 9.815, + "1964": 9.82, + "1965": 9.825, + "1966": 9.83, + "1967": 9.835, + "1968": 9.84, + "1969": 9.845, + "1970": 9.85, + "1971": 9.855, + "1972": 9.86, + "1973": 9.865, + "1974": 9.87, + "1975": 9.875, + "1976": 9.88, + "1977": 9.885, + "1978": 9.89, + "1979": 9.895, + "1980": 9.9, + "1981": 9.905, + "1982": 9.91, + "1983": 9.915, + "1984": 9.92, + "1985": 9.925, + "1986": 9.93, + "1987": 9.935, + "1988": 9.94, + "1989": 9.945, + "1990": 9.95, + "1991": 9.955, + "1992": 9.96, + "1993": 9.965, + "1994": 9.97, + "1995": 9.975, + "1996": 9.98, + "1997": 9.985, + "1998": 9.99, + "1999": 9.995, + "2000": 10.0, + "2001": 10.005, + "2002": 10.01, + "2003": 10.015, + "2004": 10.02, + "2005": 10.025, + "2006": 10.03, + "2007": 10.035, + "2008": 10.04, + "2009": 10.045, + "2010": 10.05, + "2011": 10.055, + "2012": 10.06, + "2013": 10.065, + "2014": 10.07, + "2015": 10.075, + "2016": 10.08, + "2017": 10.085, + "2018": 10.09, + "2019": 10.095, + "2020": 10.1, + "2021": 10.105, + "2022": 10.11, + "2023": 10.115, + "2024": 10.12, + "2025": 10.125, + "2026": 10.13, + "2027": 10.135, + "2028": 10.14, + "2029": 10.145, + "2030": 10.15, + "2031": 10.155, + "2032": 10.16, + "2033": 10.165, + "2034": 10.17, + "2035": 10.175, + "2036": 10.18, + "2037": 10.185, + "2038": 10.19, + "2039": 10.195, + "2040": 10.2, + "2041": 10.205, + "2042": 10.21, + "2043": 10.215, + "2044": 10.22, + "2045": 10.225, + "2046": 10.23, + "2047": 10.235, + "2048": 10.24, + "2049": 10.245, + "2050": 10.25, + "2051": 10.255, + "2052": 10.26, + "2053": 10.265, + "2054": 10.27, + "2055": 10.275, + "2056": 10.28, + "2057": 10.285, + "2058": 10.29, + "2059": 10.295, + "2060": 10.3, + "2061": 10.305, + "2062": 10.31, + "2063": 10.315, + "2064": 10.32, + "2065": 10.325, + "2066": 10.33, + "2067": 10.335, + "2068": 10.34, + "2069": 10.345, + "2070": 10.35, + "2071": 10.355, + "2072": 10.36, + "2073": 10.365, + "2074": 10.37, + "2075": 10.375, + "2076": 10.38, + "2077": 10.385, + "2078": 10.39, + "2079": 10.395, + "2080": 10.4, + "2081": 10.405, + "2082": 10.41, + "2083": 10.415, + "2084": 10.42, + "2085": 10.425, + "2086": 10.43, + "2087": 10.435, + "2088": 10.44, + "2089": 10.445, + "2090": 10.45, + "2091": 10.455, + "2092": 10.46, + "2093": 10.465, + "2094": 10.47, + "2095": 10.475, + "2096": 10.48, + "2097": 10.485, + "2098": 10.49, + "2099": 10.495, + "2100": 10.5, + "2101": 10.505, + "2102": 10.51, + "2103": 10.515, + "2104": 10.52, + "2105": 10.525, + "2106": 10.53, + "2107": 10.535, + "2108": 10.54, + "2109": 10.545, + "2110": 10.55, + "2111": 10.555, + "2112": 10.56, + "2113": 10.565, + "2114": 10.57, + "2115": 10.575, + "2116": 10.58, + "2117": 10.585, + "2118": 10.59, + "2119": 10.595, + "2120": 10.6, + "2121": 10.605, + "2122": 10.61, + "2123": 10.615, + "2124": 10.62, + "2125": 10.625, + "2126": 10.63, + "2127": 10.635, + "2128": 10.64, + "2129": 10.645, + "2130": 10.65, + "2131": 10.655, + "2132": 10.66, + "2133": 10.665, + "2134": 10.67, + "2135": 10.675, + "2136": 10.68, + "2137": 10.685, + "2138": 10.69, + "2139": 10.695, + "2140": 10.7, + "2141": 10.705, + "2142": 10.71, + "2143": 10.715, + "2144": 10.72, + "2145": 10.725, + "2146": 10.73, + "2147": 10.735, + "2148": 10.74, + "2149": 10.745, + "2150": 10.75, + "2151": 10.755, + "2152": 10.76, + "2153": 10.765, + "2154": 10.77, + "2155": 10.775, + "2156": 10.78, + "2157": 10.785, + "2158": 10.79, + "2159": 10.795, + "2160": 10.8, + "2161": 10.805, + "2162": 10.81, + "2163": 10.815, + "2164": 10.82, + "2165": 10.825, + "2166": 10.83, + "2167": 10.835, + "2168": 10.84, + "2169": 10.845, + "2170": 10.85, + "2171": 10.855, + "2172": 10.86, + "2173": 10.865, + "2174": 10.87, + "2175": 10.875, + "2176": 10.88, + "2177": 10.885, + "2178": 10.89, + "2179": 10.895, + "2180": 10.9, + "2181": 10.905, + "2182": 10.91, + "2183": 10.915, + "2184": 10.92, + "2185": 10.925, + "2186": 10.93, + "2187": 10.935, + "2188": 10.94, + "2189": 10.945, + "2190": 10.95, + "2191": 10.955, + "2192": 10.96, + "2193": 10.965, + "2194": 10.97, + "2195": 10.975, + "2196": 10.98, + "2197": 10.985, + "2198": 10.99, + "2199": 10.995, + "2200": 11.0, + "2201": 11.005, + "2202": 11.01, + "2203": 11.015, + "2204": 11.02, + "2205": 11.025, + "2206": 11.03, + "2207": 11.035, + "2208": 11.04, + "2209": 11.045, + "2210": 11.05, + "2211": 11.055, + "2212": 11.06, + "2213": 11.065, + "2214": 11.07, + "2215": 11.075, + "2216": 11.08, + "2217": 11.085, + "2218": 11.09, + "2219": 11.095, + "2220": 11.1, + "2221": 11.105, + "2222": 11.11, + "2223": 11.115, + "2224": 11.12, + "2225": 11.125, + "2226": 11.13, + "2227": 11.135, + "2228": 11.14, + "2229": 11.145, + "2230": 11.15, + "2231": 11.155, + "2232": 11.16, + "2233": 11.165, + "2234": 11.17, + "2235": 11.175, + "2236": 11.18, + "2237": 11.185, + "2238": 11.19, + "2239": 11.195, + "2240": 11.2, + "2241": 11.205, + "2242": 11.21, + "2243": 11.215, + "2244": 11.22, + "2245": 11.225, + "2246": 11.23, + "2247": 11.235, + "2248": 11.24, + "2249": 11.245, + "2250": 11.25, + "2251": 11.255, + "2252": 11.26, + "2253": 11.265, + "2254": 11.27, + "2255": 11.275, + "2256": 11.28, + "2257": 11.285, + "2258": 11.29, + "2259": 11.295, + "2260": 11.3, + "2261": 11.305, + "2262": 11.31, + "2263": 11.315, + "2264": 11.32, + "2265": 11.325, + "2266": 11.33, + "2267": 11.335, + "2268": 11.34, + "2269": 11.345, + "2270": 11.35, + "2271": 11.355, + "2272": 11.36, + "2273": 11.365, + "2274": 11.37, + "2275": 11.375, + "2276": 11.38, + "2277": 11.385, + "2278": 11.39, + "2279": 11.395, + "2280": 11.4, + "2281": 11.405, + "2282": 11.41, + "2283": 11.415, + "2284": 11.42, + "2285": 11.425, + "2286": 11.43, + "2287": 11.435, + "2288": 11.44, + "2289": 11.445, + "2290": 11.45, + "2291": 11.455, + "2292": 11.46, + "2293": 11.465, + "2294": 11.47, + "2295": 11.475, + "2296": 11.48, + "2297": 11.485, + "2298": 11.49, + "2299": 11.495, + "2300": 11.5, + "2301": 11.505, + "2302": 11.51, + "2303": 11.515, + "2304": 11.52, + "2305": 11.525, + "2306": 11.53, + "2307": 11.535, + "2308": 11.54, + "2309": 11.545, + "2310": 11.55, + "2311": 11.555, + "2312": 11.56, + "2313": 11.565, + "2314": 11.57, + "2315": 11.575, + "2316": 11.58, + "2317": 11.585, + "2318": 11.59, + "2319": 11.595, + "2320": 11.6, + "2321": 11.605, + "2322": 11.61, + "2323": 11.615, + "2324": 11.62, + "2325": 11.625, + "2326": 11.63, + "2327": 11.635, + "2328": 11.64, + "2329": 11.645, + "2330": 11.65, + "2331": 11.655, + "2332": 11.66, + "2333": 11.665, + "2334": 11.67, + "2335": 11.675, + "2336": 11.68, + "2337": 11.685, + "2338": 11.69, + "2339": 11.695, + "2340": 11.7, + "2341": 11.705, + "2342": 11.71, + "2343": 11.715, + "2344": 11.72, + "2345": 11.725, + "2346": 11.73, + "2347": 11.735, + "2348": 11.74, + "2349": 11.745, + "2350": 11.75, + "2351": 11.755, + "2352": 11.76, + "2353": 11.765, + "2354": 11.77, + "2355": 11.775, + "2356": 11.78, + "2357": 11.785, + "2358": 11.79, + "2359": 11.795, + "2360": 11.8, + "2361": 11.805, + "2362": 11.81, + "2363": 11.815, + "2364": 11.82, + "2365": 11.825, + "2366": 11.83, + "2367": 11.835, + "2368": 11.84, + "2369": 11.845, + "2370": 11.85, + "2371": 11.855, + "2372": 11.86, + "2373": 11.865, + "2374": 11.87, + "2375": 11.875, + "2376": 11.88, + "2377": 11.885, + "2378": 11.89, + "2379": 11.895, + "2380": 11.9, + "2381": 11.905, + "2382": 11.91, + "2383": 11.915, + "2384": 11.92, + "2385": 11.925, + "2386": 11.93, + "2387": 11.935, + "2388": 11.94, + "2389": 11.945, + "2390": 11.95, + "2391": 11.955, + "2392": 11.96, + "2393": 11.965, + "2394": 11.97, + "2395": 11.975, + "2396": 11.98, + "2397": 11.985, + "2398": 11.99, + "2399": 11.995, + "2400": 12.0, + "2401": 12.005, + "2402": 12.01, + "2403": 12.015, + "2404": 12.02, + "2405": 12.025, + "2406": 12.03, + "2407": 12.035, + "2408": 12.04, + "2409": 12.045, + "2410": 12.05, + "2411": 12.055, + "2412": 12.06, + "2413": 12.065, + "2414": 12.07, + "2415": 12.075, + "2416": 12.08, + "2417": 12.085, + "2418": 12.09, + "2419": 12.095, + "2420": 12.1, + "2421": 12.105, + "2422": 12.11, + "2423": 12.115, + "2424": 12.12, + "2425": 12.125, + "2426": 12.13, + "2427": 12.135, + "2428": 12.14, + "2429": 12.145, + "2430": 12.15, + "2431": 12.155, + "2432": 12.16, + "2433": 12.165, + "2434": 12.17, + "2435": 12.175, + "2436": 12.18, + "2437": 12.185, + "2438": 12.19, + "2439": 12.195, + "2440": 12.2, + "2441": 12.205, + "2442": 12.21, + "2443": 12.215, + "2444": 12.22, + "2445": 12.225, + "2446": 12.23, + "2447": 12.235, + "2448": 12.24, + "2449": 12.245, + "2450": 12.25, + "2451": 12.255, + "2452": 12.26, + "2453": 12.265, + "2454": 12.27, + "2455": 12.275, + "2456": 12.28, + "2457": 12.285, + "2458": 12.29, + "2459": 12.295, + "2460": 12.3, + "2461": 12.305, + "2462": 12.31, + "2463": 12.315, + "2464": 12.32, + "2465": 12.325, + "2466": 12.33, + "2467": 12.335, + "2468": 12.34, + "2469": 12.345, + "2470": 12.35, + "2471": 12.355, + "2472": 12.36, + "2473": 12.365, + "2474": 12.37, + "2475": 12.375, + "2476": 12.38, + "2477": 12.385, + "2478": 12.39, + "2479": 12.395, + "2480": 12.4, + "2481": 12.405, + "2482": 12.41, + "2483": 12.415, + "2484": 12.42, + "2485": 12.425, + "2486": 12.43, + "2487": 12.435, + "2488": 12.44, + "2489": 12.445, + "2490": 12.45, + "2491": 12.455, + "2492": 12.46, + "2493": 12.465, + "2494": 12.47, + "2495": 12.475, + "2496": 12.48, + "2497": 12.485, + "2498": 12.49, + "2499": 12.495, + "2500": 12.5, + "2501": 12.505, + "2502": 12.51, + "2503": 12.515, + "2504": 12.52, + "2505": 12.525, + "2506": 12.53, + "2507": 12.535, + "2508": 12.54, + "2509": 12.545, + "2510": 12.55, + "2511": 12.555, + "2512": 12.56, + "2513": 12.565, + "2514": 12.57, + "2515": 12.575, + "2516": 12.58, + "2517": 12.585, + "2518": 12.59, + "2519": 12.595, + "2520": 12.6, + "2521": 12.605, + "2522": 12.61, + "2523": 12.615, + "2524": 12.62, + "2525": 12.625, + "2526": 12.63, + "2527": 12.635, + "2528": 12.64, + "2529": 12.645, + "2530": 12.65, + "2531": 12.655, + "2532": 12.66, + "2533": 12.665, + "2534": 12.67, + "2535": 12.675, + "2536": 12.68, + "2537": 12.685, + "2538": 12.69, + "2539": 12.695, + "2540": 12.7, + "2541": 12.705, + "2542": 12.71, + "2543": 12.715, + "2544": 12.72, + "2545": 12.725, + "2546": 12.73, + "2547": 12.735, + "2548": 12.74, + "2549": 12.745, + "2550": 12.75, + "2551": 12.755, + "2552": 12.76, + "2553": 12.765, + "2554": 12.77, + "2555": 12.775, + "2556": 12.78, + "2557": 12.785, + "2558": 12.79, + "2559": 12.795, + "2560": 12.8, + "2561": 12.805, + "2562": 12.81, + "2563": 12.815, + "2564": 12.82, + "2565": 12.825, + "2566": 12.83, + "2567": 12.835, + "2568": 12.84, + "2569": 12.845, + "2570": 12.85, + "2571": 12.855, + "2572": 12.86, + "2573": 12.865, + "2574": 12.87, + "2575": 12.875, + "2576": 12.88, + "2577": 12.885, + "2578": 12.89, + "2579": 12.895, + "2580": 12.9, + "2581": 12.905, + "2582": 12.91, + "2583": 12.915, + "2584": 12.92, + "2585": 12.925, + "2586": 12.93, + "2587": 12.935, + "2588": 12.94, + "2589": 12.945, + "2590": 12.95, + "2591": 12.955, + "2592": 12.96, + "2593": 12.965, + "2594": 12.97, + "2595": 12.975, + "2596": 12.98, + "2597": 12.985, + "2598": 12.99, + "2599": 12.995, + "2600": 13.0, + "2601": 13.005, + "2602": 13.01, + "2603": 13.015, + "2604": 13.02, + "2605": 13.025, + "2606": 13.03, + "2607": 13.035, + "2608": 13.04, + "2609": 13.045, + "2610": 13.05, + "2611": 13.055, + "2612": 13.06, + "2613": 13.065, + "2614": 13.07, + "2615": 13.075, + "2616": 13.08, + "2617": 13.085, + "2618": 13.09, + "2619": 13.095, + "2620": 13.1, + "2621": 13.105, + "2622": 13.11, + "2623": 13.115, + "2624": 13.12, + "2625": 13.125, + "2626": 13.13, + "2627": 13.135, + "2628": 13.14, + "2629": 13.145, + "2630": 13.15, + "2631": 13.155, + "2632": 13.16, + "2633": 13.165, + "2634": 13.17, + "2635": 13.175, + "2636": 13.18, + "2637": 13.185, + "2638": 13.19, + "2639": 13.195, + "2640": 13.2, + "2641": 13.205, + "2642": 13.21, + "2643": 13.215, + "2644": 13.22, + "2645": 13.225, + "2646": 13.23, + "2647": 13.235, + "2648": 13.24, + "2649": 13.245, + "2650": 13.25, + "2651": 13.255, + "2652": 13.26, + "2653": 13.265, + "2654": 13.27, + "2655": 13.275, + "2656": 13.28, + "2657": 13.285, + "2658": 13.29, + "2659": 13.295, + "2660": 13.3, + "2661": 13.305, + "2662": 13.31, + "2663": 13.315, + "2664": 13.32, + "2665": 13.325, + "2666": 13.33, + "2667": 13.335, + "2668": 13.34, + "2669": 13.345, + "2670": 13.35, + "2671": 13.355, + "2672": 13.36, + "2673": 13.365, + "2674": 13.37, + "2675": 13.375, + "2676": 13.38, + "2677": 13.385, + "2678": 13.39, + "2679": 13.395, + "2680": 13.4, + "2681": 13.405, + "2682": 13.41, + "2683": 13.415, + "2684": 13.42, + "2685": 13.425, + "2686": 13.43, + "2687": 13.435, + "2688": 13.44, + "2689": 13.445, + "2690": 13.45, + "2691": 13.455, + "2692": 13.46, + "2693": 13.465, + "2694": 13.47, + "2695": 13.475, + "2696": 13.48, + "2697": 13.485, + "2698": 13.49, + "2699": 13.495, + "2700": 13.5, + "2701": 13.505, + "2702": 13.51, + "2703": 13.515, + "2704": 13.52, + "2705": 13.525, + "2706": 13.53, + "2707": 13.535, + "2708": 13.54, + "2709": 13.545, + "2710": 13.55, + "2711": 13.555, + "2712": 13.56, + "2713": 13.565, + "2714": 13.57, + "2715": 13.575, + "2716": 13.58, + "2717": 13.585, + "2718": 13.59, + "2719": 13.595, + "2720": 13.6, + "2721": 13.605, + "2722": 13.61, + "2723": 13.615, + "2724": 13.62, + "2725": 13.625, + "2726": 13.63, + "2727": 13.635, + "2728": 13.64, + "2729": 13.645, + "2730": 13.65, + "2731": 13.655, + "2732": 13.66, + "2733": 13.665, + "2734": 13.67, + "2735": 13.675, + "2736": 13.68, + "2737": 13.685, + "2738": 13.69, + "2739": 13.695, + "2740": 13.7, + "2741": 13.705, + "2742": 13.71, + "2743": 13.715, + "2744": 13.72, + "2745": 13.725, + "2746": 13.73, + "2747": 13.735, + "2748": 13.74, + "2749": 13.745, + "2750": 13.75, + "2751": 13.755, + "2752": 13.76, + "2753": 13.765, + "2754": 13.77, + "2755": 13.775, + "2756": 13.78, + "2757": 13.785, + "2758": 13.79, + "2759": 13.795, + "2760": 13.8, + "2761": 13.805, + "2762": 13.81, + "2763": 13.815, + "2764": 13.82, + "2765": 13.825, + "2766": 13.83, + "2767": 13.835, + "2768": 13.84, + "2769": 13.845, + "2770": 13.85, + "2771": 13.855, + "2772": 13.86, + "2773": 13.865, + "2774": 13.87, + "2775": 13.875, + "2776": 13.88, + "2777": 13.885, + "2778": 13.89, + "2779": 13.895, + "2780": 13.9, + "2781": 13.905, + "2782": 13.91, + "2783": 13.915, + "2784": 13.92, + "2785": 13.925, + "2786": 13.93, + "2787": 13.935, + "2788": 13.94, + "2789": 13.945, + "2790": 13.95, + "2791": 13.955, + "2792": 13.96, + "2793": 13.965, + "2794": 13.97, + "2795": 13.975, + "2796": 13.98, + "2797": 13.985, + "2798": 13.99, + "2799": 13.995, + "2800": 14.0, + "2801": 14.005, + "2802": 14.01, + "2803": 14.015, + "2804": 14.02, + "2805": 14.025, + "2806": 14.03, + "2807": 14.035, + "2808": 14.04, + "2809": 14.045, + "2810": 14.05, + "2811": 14.055, + "2812": 14.06, + "2813": 14.065, + "2814": 14.07, + "2815": 14.075, + "2816": 14.08, + "2817": 14.085, + "2818": 14.09, + "2819": 14.095, + "2820": 14.1, + "2821": 14.105, + "2822": 14.11, + "2823": 14.115, + "2824": 14.12, + "2825": 14.125, + "2826": 14.13, + "2827": 14.135, + "2828": 14.14, + "2829": 14.145, + "2830": 14.15, + "2831": 14.155, + "2832": 14.16, + "2833": 14.165, + "2834": 14.17, + "2835": 14.175, + "2836": 14.18, + "2837": 14.185, + "2838": 14.19, + "2839": 14.195, + "2840": 14.2, + "2841": 14.205, + "2842": 14.21, + "2843": 14.215, + "2844": 14.22, + "2845": 14.225, + "2846": 14.23, + "2847": 14.235, + "2848": 14.24, + "2849": 14.245, + "2850": 14.25, + "2851": 14.255, + "2852": 14.26, + "2853": 14.265, + "2854": 14.27, + "2855": 14.275, + "2856": 14.28, + "2857": 14.285, + "2858": 14.29, + "2859": 14.295, + "2860": 14.3, + "2861": 14.305, + "2862": 14.31, + "2863": 14.315, + "2864": 14.32, + "2865": 14.325, + "2866": 14.33, + "2867": 14.335, + "2868": 14.34, + "2869": 14.345, + "2870": 14.35, + "2871": 14.355, + "2872": 14.36, + "2873": 14.365, + "2874": 14.37, + "2875": 14.375, + "2876": 14.38, + "2877": 14.385, + "2878": 14.39, + "2879": 14.395, + "2880": 14.4, + "2881": 14.405, + "2882": 14.41, + "2883": 14.415, + "2884": 14.42, + "2885": 14.425, + "2886": 14.43, + "2887": 14.435, + "2888": 14.44, + "2889": 14.445, + "2890": 14.45, + "2891": 14.455, + "2892": 14.46, + "2893": 14.465, + "2894": 14.47, + "2895": 14.475, + "2896": 14.48, + "2897": 14.485, + "2898": 14.49, + "2899": 14.495, + "2900": 14.5, + "2901": 14.505, + "2902": 14.51, + "2903": 14.515, + "2904": 14.52, + "2905": 14.525, + "2906": 14.53, + "2907": 14.535, + "2908": 14.54, + "2909": 14.545, + "2910": 14.55, + "2911": 14.555, + "2912": 14.56, + "2913": 14.565, + "2914": 14.57, + "2915": 14.575, + "2916": 14.58, + "2917": 14.585, + "2918": 14.59, + "2919": 14.595, + "2920": 14.6, + "2921": 14.605, + "2922": 14.61, + "2923": 14.615, + "2924": 14.62, + "2925": 14.625, + "2926": 14.63, + "2927": 14.635, + "2928": 14.64, + "2929": 14.645, + "2930": 14.65, + "2931": 14.655, + "2932": 14.66, + "2933": 14.665, + "2934": 14.67, + "2935": 14.675, + "2936": 14.68, + "2937": 14.685, + "2938": 14.69, + "2939": 14.695, + "2940": 14.7, + "2941": 14.705, + "2942": 14.71, + "2943": 14.715, + "2944": 14.72, + "2945": 14.725, + "2946": 14.73, + "2947": 14.735, + "2948": 14.74, + "2949": 14.745, + "2950": 14.75, + "2951": 14.755, + "2952": 14.76, + "2953": 14.765, + "2954": 14.77, + "2955": 14.775, + "2956": 14.78, + "2957": 14.785, + "2958": 14.79, + "2959": 14.795, + "2960": 14.8, + "2961": 14.805, + "2962": 14.81, + "2963": 14.815, + "2964": 14.82, + "2965": 14.825, + "2966": 14.83, + "2967": 14.835, + "2968": 14.84, + "2969": 14.845, + "2970": 14.85, + "2971": 14.855, + "2972": 14.86, + "2973": 14.865, + "2974": 14.87, + "2975": 14.875, + "2976": 14.88, + "2977": 14.885, + "2978": 14.89, + "2979": 14.895, + "2980": 14.9, + "2981": 14.905, + "2982": 14.91, + "2983": 14.915, + "2984": 14.92, + "2985": 14.925, + "2986": 14.93, + "2987": 14.935, + "2988": 14.94, + "2989": 14.945, + "2990": 14.95, + "2991": 14.955, + "2992": 14.96, + "2993": 14.965, + "2994": 14.97, + "2995": 14.975, + "2996": 14.98, + "2997": 14.985, + "2998": 14.99, + "2999": 14.995, + "3000": 15.0, + "3001": 15.005, + "3002": 15.01, + "3003": 15.015, + "3004": 15.02, + "3005": 15.025, + "3006": 15.03, + "3007": 15.035, + "3008": 15.04, + "3009": 15.045, + "3010": 15.05, + "3011": 15.055, + "3012": 15.06, + "3013": 15.065, + "3014": 15.07, + "3015": 15.075, + "3016": 15.08, + "3017": 15.085, + "3018": 15.09, + "3019": 15.095, + "3020": 15.1, + "3021": 15.105, + "3022": 15.11, + "3023": 15.115, + "3024": 15.12, + "3025": 15.125, + "3026": 15.13, + "3027": 15.135, + "3028": 15.14, + "3029": 15.145, + "3030": 15.15, + "3031": 15.155, + "3032": 15.16, + "3033": 15.165, + "3034": 15.17, + "3035": 15.175, + "3036": 15.18, + "3037": 15.185, + "3038": 15.19, + "3039": 15.195, + "3040": 15.2, + "3041": 15.205, + "3042": 15.21, + "3043": 15.215, + "3044": 15.22, + "3045": 15.225, + "3046": 15.23, + "3047": 15.235, + "3048": 15.24, + "3049": 15.245, + "3050": 15.25, + "3051": 15.255, + "3052": 15.26, + "3053": 15.265, + "3054": 15.27, + "3055": 15.275, + "3056": 15.28, + "3057": 15.285, + "3058": 15.29, + "3059": 15.295, + "3060": 15.3, + "3061": 15.305, + "3062": 15.31, + "3063": 15.315, + "3064": 15.32, + "3065": 15.325, + "3066": 15.33, + "3067": 15.335, + "3068": 15.34, + "3069": 15.345, + "3070": 15.35, + "3071": 15.355, + "3072": 15.36, + "3073": 15.365, + "3074": 15.37, + "3075": 15.375, + "3076": 15.38, + "3077": 15.385, + "3078": 15.39, + "3079": 15.395, + "3080": 15.4, + "3081": 15.405, + "3082": 15.41, + "3083": 15.415, + "3084": 15.42, + "3085": 15.425, + "3086": 15.43, + "3087": 15.435, + "3088": 15.44, + "3089": 15.445, + "3090": 15.45, + "3091": 15.455, + "3092": 15.46, + "3093": 15.465, + "3094": 15.47, + "3095": 15.475, + "3096": 15.48, + "3097": 15.485, + "3098": 15.49, + "3099": 15.495, + "3100": 15.5, + "3101": 15.505, + "3102": 15.51, + "3103": 15.515, + "3104": 15.52, + "3105": 15.525, + "3106": 15.53, + "3107": 15.535, + "3108": 15.54, + "3109": 15.545, + "3110": 15.55, + "3111": 15.555, + "3112": 15.56, + "3113": 15.565, + "3114": 15.57, + "3115": 15.575, + "3116": 15.58, + "3117": 15.585, + "3118": 15.59, + "3119": 15.595, + "3120": 15.6, + "3121": 15.605, + "3122": 15.61, + "3123": 15.615, + "3124": 15.62, + "3125": 15.625, + "3126": 15.63, + "3127": 15.635, + "3128": 15.64, + "3129": 15.645, + "3130": 15.65, + "3131": 15.655, + "3132": 15.66, + "3133": 15.665, + "3134": 15.67, + "3135": 15.675, + "3136": 15.68, + "3137": 15.685, + "3138": 15.69, + "3139": 15.695, + "3140": 15.7, + "3141": 15.705, + "3142": 15.71, + "3143": 15.715, + "3144": 15.72, + "3145": 15.725, + "3146": 15.73, + "3147": 15.735, + "3148": 15.74, + "3149": 15.745, + "3150": 15.75, + "3151": 15.755, + "3152": 15.76, + "3153": 15.765, + "3154": 15.77, + "3155": 15.775, + "3156": 15.78, + "3157": 15.785, + "3158": 15.79, + "3159": 15.795, + "3160": 15.8, + "3161": 15.805, + "3162": 15.81, + "3163": 15.815, + "3164": 15.82, + "3165": 15.825, + "3166": 15.83, + "3167": 15.835, + "3168": 15.84, + "3169": 15.845, + "3170": 15.85, + "3171": 15.855, + "3172": 15.86, + "3173": 15.865, + "3174": 15.87, + "3175": 15.875, + "3176": 15.88, + "3177": 15.885, + "3178": 15.89, + "3179": 15.895, + "3180": 15.9, + "3181": 15.905, + "3182": 15.91, + "3183": 15.915, + "3184": 15.92, + "3185": 15.925, + "3186": 15.93, + "3187": 15.935, + "3188": 15.94, + "3189": 15.945, + "3190": 15.95, + "3191": 15.955, + "3192": 15.96, + "3193": 15.965, + "3194": 15.97, + "3195": 15.975, + "3196": 15.98, + "3197": 15.985, + "3198": 15.99, + "3199": 15.995, + "3200": 16.0, + "3201": 16.005, + "3202": 16.01, + "3203": 16.015, + "3204": 16.02, + "3205": 16.025, + "3206": 16.03, + "3207": 16.035, + "3208": 16.04, + "3209": 16.045, + "3210": 16.05, + "3211": 16.055, + "3212": 16.06, + "3213": 16.065, + "3214": 16.07, + "3215": 16.075, + "3216": 16.08, + "3217": 16.085, + "3218": 16.09, + "3219": 16.095, + "3220": 16.1, + "3221": 16.105, + "3222": 16.11, + "3223": 16.115, + "3224": 16.12, + "3225": 16.125, + "3226": 16.13, + "3227": 16.135, + "3228": 16.14, + "3229": 16.145, + "3230": 16.15, + "3231": 16.155, + "3232": 16.16, + "3233": 16.165, + "3234": 16.17, + "3235": 16.175, + "3236": 16.18, + "3237": 16.185, + "3238": 16.19, + "3239": 16.195, + "3240": 16.2, + "3241": 16.205, + "3242": 16.21, + "3243": 16.215, + "3244": 16.22, + "3245": 16.225, + "3246": 16.23, + "3247": 16.235, + "3248": 16.24, + "3249": 16.245, + "3250": 16.25, + "3251": 16.255, + "3252": 16.26, + "3253": 16.265, + "3254": 16.27, + "3255": 16.275, + "3256": 16.28, + "3257": 16.285, + "3258": 16.29, + "3259": 16.295, + "3260": 16.3, + "3261": 16.305, + "3262": 16.31, + "3263": 16.315, + "3264": 16.32, + "3265": 16.325, + "3266": 16.33, + "3267": 16.335, + "3268": 16.34, + "3269": 16.345, + "3270": 16.35, + "3271": 16.355, + "3272": 16.36, + "3273": 16.365, + "3274": 16.37, + "3275": 16.375, + "3276": 16.38, + "3277": 16.385, + "3278": 16.39, + "3279": 16.395, + "3280": 16.4, + "3281": 16.405, + "3282": 16.41, + "3283": 16.415, + "3284": 16.42, + "3285": 16.425, + "3286": 16.43, + "3287": 16.435, + "3288": 16.44, + "3289": 16.445, + "3290": 16.45, + "3291": 16.455, + "3292": 16.46, + "3293": 16.465, + "3294": 16.47, + "3295": 16.475, + "3296": 16.48, + "3297": 16.485, + "3298": 16.49, + "3299": 16.495, + "3300": 16.5, + "3301": 16.505, + "3302": 16.51, + "3303": 16.515, + "3304": 16.52, + "3305": 16.525, + "3306": 16.53, + "3307": 16.535, + "3308": 16.54, + "3309": 16.545, + "3310": 16.55, + "3311": 16.555, + "3312": 16.56, + "3313": 16.565, + "3314": 16.57, + "3315": 16.575, + "3316": 16.58, + "3317": 16.585, + "3318": 16.59, + "3319": 16.595, + "3320": 16.6, + "3321": 16.605, + "3322": 16.61, + "3323": 16.615, + "3324": 16.62, + "3325": 16.625, + "3326": 16.63, + "3327": 16.635, + "3328": 16.64, + "3329": 16.645, + "3330": 16.65, + "3331": 16.655, + "3332": 16.66, + "3333": 16.665, + "3334": 16.67, + "3335": 16.675, + "3336": 16.68, + "3337": 16.685, + "3338": 16.69, + "3339": 16.695, + "3340": 16.7, + "3341": 16.705, + "3342": 16.71, + "3343": 16.715, + "3344": 16.72, + "3345": 16.725, + "3346": 16.73, + "3347": 16.735, + "3348": 16.74, + "3349": 16.745, + "3350": 16.75, + "3351": 16.755, + "3352": 16.76, + "3353": 16.765, + "3354": 16.77, + "3355": 16.775, + "3356": 16.78, + "3357": 16.785, + "3358": 16.79, + "3359": 16.795, + "3360": 16.8, + "3361": 16.805, + "3362": 16.81, + "3363": 16.815, + "3364": 16.82, + "3365": 16.825, + "3366": 16.83, + "3367": 16.835, + "3368": 16.84, + "3369": 16.845, + "3370": 16.85, + "3371": 16.855, + "3372": 16.86, + "3373": 16.865, + "3374": 16.87, + "3375": 16.875, + "3376": 16.88, + "3377": 16.885, + "3378": 16.89, + "3379": 16.895, + "3380": 16.9, + "3381": 16.905, + "3382": 16.91, + "3383": 16.915, + "3384": 16.92, + "3385": 16.925, + "3386": 16.93, + "3387": 16.935, + "3388": 16.94, + "3389": 16.945, + "3390": 16.95, + "3391": 16.955, + "3392": 16.96, + "3393": 16.965, + "3394": 16.97, + "3395": 16.975, + "3396": 16.98, + "3397": 16.985, + "3398": 16.99, + "3399": 16.995, + "3400": 17.0, + "3401": 17.005, + "3402": 17.01, + "3403": 17.015, + "3404": 17.02, + "3405": 17.025, + "3406": 17.03, + "3407": 17.035, + "3408": 17.04, + "3409": 17.045, + "3410": 17.05, + "3411": 17.055, + "3412": 17.06, + "3413": 17.065, + "3414": 17.07, + "3415": 17.075, + "3416": 17.08, + "3417": 17.085, + "3418": 17.09, + "3419": 17.095, + "3420": 17.1, + "3421": 17.105, + "3422": 17.11, + "3423": 17.115, + "3424": 17.12, + "3425": 17.125, + "3426": 17.13, + "3427": 17.135, + "3428": 17.14, + "3429": 17.145, + "3430": 17.15, + "3431": 17.155, + "3432": 17.16, + "3433": 17.165, + "3434": 17.17, + "3435": 17.175, + "3436": 17.18, + "3437": 17.185, + "3438": 17.19, + "3439": 17.195, + "3440": 17.2, + "3441": 17.205, + "3442": 17.21, + "3443": 17.215, + "3444": 17.22, + "3445": 17.225, + "3446": 17.23, + "3447": 17.235, + "3448": 17.24, + "3449": 17.245, + "3450": 17.25, + "3451": 17.255, + "3452": 17.26, + "3453": 17.265, + "3454": 17.27, + "3455": 17.275, + "3456": 17.28, + "3457": 17.285, + "3458": 17.29, + "3459": 17.295, + "3460": 17.3, + "3461": 17.305, + "3462": 17.31, + "3463": 17.315, + "3464": 17.32, + "3465": 17.325, + "3466": 17.33, + "3467": 17.335, + "3468": 17.34, + "3469": 17.345, + "3470": 17.35, + "3471": 17.355, + "3472": 17.36, + "3473": 17.365, + "3474": 17.37, + "3475": 17.375, + "3476": 17.38, + "3477": 17.385, + "3478": 17.39, + "3479": 17.395, + "3480": 17.4, + "3481": 17.405, + "3482": 17.41, + "3483": 17.415, + "3484": 17.42, + "3485": 17.425, + "3486": 17.43, + "3487": 17.435, + "3488": 17.44, + "3489": 17.445, + "3490": 17.45, + "3491": 17.455, + "3492": 17.46, + "3493": 17.465, + "3494": 17.47, + "3495": 17.475, + "3496": 17.48, + "3497": 17.485, + "3498": 17.49, + "3499": 17.495, + "3500": 17.5, + "3501": 17.505, + "3502": 17.51, + "3503": 17.515, + "3504": 17.52, + "3505": 17.525, + "3506": 17.53, + "3507": 17.535, + "3508": 17.54, + "3509": 17.545, + "3510": 17.55, + "3511": 17.555, + "3512": 17.56, + "3513": 17.565, + "3514": 17.57, + "3515": 17.575, + "3516": 17.58, + "3517": 17.585, + "3518": 17.59, + "3519": 17.595, + "3520": 17.6, + "3521": 17.605, + "3522": 17.61, + "3523": 17.615, + "3524": 17.62, + "3525": 17.625, + "3526": 17.63, + "3527": 17.635, + "3528": 17.64, + "3529": 17.645, + "3530": 17.65, + "3531": 17.655, + "3532": 17.66, + "3533": 17.665, + "3534": 17.67, + "3535": 17.675, + "3536": 17.68, + "3537": 17.685, + "3538": 17.69, + "3539": 17.695, + "3540": 17.7, + "3541": 17.705, + "3542": 17.71, + "3543": 17.715, + "3544": 17.72, + "3545": 17.725, + "3546": 17.73, + "3547": 17.735, + "3548": 17.74, + "3549": 17.745, + "3550": 17.75, + "3551": 17.755, + "3552": 17.76, + "3553": 17.765, + "3554": 17.77, + "3555": 17.775, + "3556": 17.78, + "3557": 17.785, + "3558": 17.79, + "3559": 17.795, + "3560": 17.8, + "3561": 17.805, + "3562": 17.81, + "3563": 17.815, + "3564": 17.82, + "3565": 17.825, + "3566": 17.83, + "3567": 17.835, + "3568": 17.84, + "3569": 17.845, + "3570": 17.85, + "3571": 17.855, + "3572": 17.86, + "3573": 17.865, + "3574": 17.87, + "3575": 17.875, + "3576": 17.88, + "3577": 17.885, + "3578": 17.89, + "3579": 17.895, + "3580": 17.9, + "3581": 17.905, + "3582": 17.91, + "3583": 17.915, + "3584": 17.92, + "3585": 17.925, + "3586": 17.93, + "3587": 17.935, + "3588": 17.94, + "3589": 17.945, + "3590": 17.95, + "3591": 17.955, + "3592": 17.96, + "3593": 17.965, + "3594": 17.97, + "3595": 17.975, + "3596": 17.98, + "3597": 17.985, + "3598": 17.99, + "3599": 17.995, + "3600": 18.0, + "3601": 18.005, + "3602": 18.01, + "3603": 18.015, + "3604": 18.02, + "3605": 18.025, + "3606": 18.03, + "3607": 18.035, + "3608": 18.04, + "3609": 18.045, + "3610": 18.05, + "3611": 18.055, + "3612": 18.06, + "3613": 18.065, + "3614": 18.07, + "3615": 18.075, + "3616": 18.08, + "3617": 18.085, + "3618": 18.09, + "3619": 18.095, + "3620": 18.1, + "3621": 18.105, + "3622": 18.11, + "3623": 18.115, + "3624": 18.12, + "3625": 18.125, + "3626": 18.13, + "3627": 18.135, + "3628": 18.14, + "3629": 18.145, + "3630": 18.15, + "3631": 18.155, + "3632": 18.16, + "3633": 18.165, + "3634": 18.17, + "3635": 18.175, + "3636": 18.18, + "3637": 18.185, + "3638": 18.19, + "3639": 18.195, + "3640": 18.2, + "3641": 18.205, + "3642": 18.21, + "3643": 18.215, + "3644": 18.22, + "3645": 18.225, + "3646": 18.23, + "3647": 18.235, + "3648": 18.24, + "3649": 18.245, + "3650": 18.25, + "3651": 18.255, + "3652": 18.26, + "3653": 18.265, + "3654": 18.27, + "3655": 18.275, + "3656": 18.28, + "3657": 18.285, + "3658": 18.29, + "3659": 18.295, + "3660": 18.3, + "3661": 18.305, + "3662": 18.31, + "3663": 18.315, + "3664": 18.32, + "3665": 18.325, + "3666": 18.33, + "3667": 18.335, + "3668": 18.34, + "3669": 18.345, + "3670": 18.35, + "3671": 18.355, + "3672": 18.36, + "3673": 18.365, + "3674": 18.37, + "3675": 18.375, + "3676": 18.38, + "3677": 18.385, + "3678": 18.39, + "3679": 18.395, + "3680": 18.4, + "3681": 18.405, + "3682": 18.41, + "3683": 18.415, + "3684": 18.42, + "3685": 18.425, + "3686": 18.43, + "3687": 18.435, + "3688": 18.44, + "3689": 18.445, + "3690": 18.45, + "3691": 18.455, + "3692": 18.46, + "3693": 18.465, + "3694": 18.47, + "3695": 18.475, + "3696": 18.48, + "3697": 18.485, + "3698": 18.49, + "3699": 18.495, + "3700": 18.5, + "3701": 18.505, + "3702": 18.51, + "3703": 18.515, + "3704": 18.52, + "3705": 18.525, + "3706": 18.53, + "3707": 18.535, + "3708": 18.54, + "3709": 18.545, + "3710": 18.55, + "3711": 18.555, + "3712": 18.56, + "3713": 18.565, + "3714": 18.57, + "3715": 18.575, + "3716": 18.58, + "3717": 18.585, + "3718": 18.59, + "3719": 18.595, + "3720": 18.6, + "3721": 18.605, + "3722": 18.61, + "3723": 18.615, + "3724": 18.62, + "3725": 18.625, + "3726": 18.63, + "3727": 18.635, + "3728": 18.64, + "3729": 18.645, + "3730": 18.65, + "3731": 18.655, + "3732": 18.66, + "3733": 18.665, + "3734": 18.67, + "3735": 18.675, + "3736": 18.68, + "3737": 18.685, + "3738": 18.69, + "3739": 18.695, + "3740": 18.7, + "3741": 18.705, + "3742": 18.71, + "3743": 18.715, + "3744": 18.72, + "3745": 18.725, + "3746": 18.73, + "3747": 18.735, + "3748": 18.74, + "3749": 18.745, + "3750": 18.75, + "3751": 18.755, + "3752": 18.76, + "3753": 18.765, + "3754": 18.77, + "3755": 18.775, + "3756": 18.78, + "3757": 18.785, + "3758": 18.79, + "3759": 18.795, + "3760": 18.8, + "3761": 18.805, + "3762": 18.81, + "3763": 18.815, + "3764": 18.82, + "3765": 18.825, + "3766": 18.83, + "3767": 18.835, + "3768": 18.84, + "3769": 18.845, + "3770": 18.85, + "3771": 18.855, + "3772": 18.86, + "3773": 18.865, + "3774": 18.87, + "3775": 18.875, + "3776": 18.88, + "3777": 18.885, + "3778": 18.89, + "3779": 18.895, + "3780": 18.9, + "3781": 18.905, + "3782": 18.91, + "3783": 18.915, + "3784": 18.92, + "3785": 18.925, + "3786": 18.93, + "3787": 18.935, + "3788": 18.94, + "3789": 18.945, + "3790": 18.95, + "3791": 18.955, + "3792": 18.96, + "3793": 18.965, + "3794": 18.97, + "3795": 18.975, + "3796": 18.98, + "3797": 18.985, + "3798": 18.99, + "3799": 18.995, + "3800": 19.0, + "3801": 19.005, + "3802": 19.01, + "3803": 19.015, + "3804": 19.02, + "3805": 19.025, + "3806": 19.03, + "3807": 19.035, + "3808": 19.04, + "3809": 19.045, + "3810": 19.05, + "3811": 19.055, + "3812": 19.06, + "3813": 19.065, + "3814": 19.07, + "3815": 19.075, + "3816": 19.08, + "3817": 19.085, + "3818": 19.09, + "3819": 19.095, + "3820": 19.1, + "3821": 19.105, + "3822": 19.11, + "3823": 19.115, + "3824": 19.12, + "3825": 19.125, + "3826": 19.13, + "3827": 19.135, + "3828": 19.14, + "3829": 19.145, + "3830": 19.15, + "3831": 19.155, + "3832": 19.16, + "3833": 19.165, + "3834": 19.17, + "3835": 19.175, + "3836": 19.18, + "3837": 19.185, + "3838": 19.19, + "3839": 19.195, + "3840": 19.2, + "3841": 19.205, + "3842": 19.21, + "3843": 19.215, + "3844": 19.22, + "3845": 19.225, + "3846": 19.23, + "3847": 19.235, + "3848": 19.24, + "3849": 19.245, + "3850": 19.25, + "3851": 19.255, + "3852": 19.26, + "3853": 19.265, + "3854": 19.27, + "3855": 19.275, + "3856": 19.28, + "3857": 19.285, + "3858": 19.29, + "3859": 19.295, + "3860": 19.3, + "3861": 19.305, + "3862": 19.31, + "3863": 19.315, + "3864": 19.32, + "3865": 19.325, + "3866": 19.33, + "3867": 19.335, + "3868": 19.34, + "3869": 19.345, + "3870": 19.35, + "3871": 19.355, + "3872": 19.36, + "3873": 19.365, + "3874": 19.37, + "3875": 19.375, + "3876": 19.38, + "3877": 19.385, + "3878": 19.39, + "3879": 19.395, + "3880": 19.4, + "3881": 19.405, + "3882": 19.41, + "3883": 19.415, + "3884": 19.42, + "3885": 19.425, + "3886": 19.43, + "3887": 19.435, + "3888": 19.44, + "3889": 19.445, + "3890": 19.45, + "3891": 19.455, + "3892": 19.46, + "3893": 19.465, + "3894": 19.47, + "3895": 19.475, + "3896": 19.48, + "3897": 19.485, + "3898": 19.49, + "3899": 19.495, + "3900": 19.5, + "3901": 19.505, + "3902": 19.51, + "3903": 19.515, + "3904": 19.52, + "3905": 19.525, + "3906": 19.53, + "3907": 19.535, + "3908": 19.54, + "3909": 19.545, + "3910": 19.55, + "3911": 19.555, + "3912": 19.56, + "3913": 19.565, + "3914": 19.57, + "3915": 19.575, + "3916": 19.58, + "3917": 19.585, + "3918": 19.59, + "3919": 19.595, + "3920": 19.6, + "3921": 19.605, + "3922": 19.61, + "3923": 19.615, + "3924": 19.62, + "3925": 19.625, + "3926": 19.63, + "3927": 19.635, + "3928": 19.64, + "3929": 19.645, + "3930": 19.65, + "3931": 19.655, + "3932": 19.66, + "3933": 19.665, + "3934": 19.67, + "3935": 19.675, + "3936": 19.68, + "3937": 19.685, + "3938": 19.69, + "3939": 19.695, + "3940": 19.7, + "3941": 19.705, + "3942": 19.71, + "3943": 19.715, + "3944": 19.72, + "3945": 19.725, + "3946": 19.73, + "3947": 19.735, + "3948": 19.74, + "3949": 19.745, + "3950": 19.75, + "3951": 19.755, + "3952": 19.76, + "3953": 19.765, + "3954": 19.77, + "3955": 19.775, + "3956": 19.78, + "3957": 19.785, + "3958": 19.79, + "3959": 19.795, + "3960": 19.8, + "3961": 19.805, + "3962": 19.81, + "3963": 19.815, + "3964": 19.82, + "3965": 19.825, + "3966": 19.83, + "3967": 19.835, + "3968": 19.84, + "3969": 19.845, + "3970": 19.85, + "3971": 19.855, + "3972": 19.86, + "3973": 19.865, + "3974": 19.87, + "3975": 19.875, + "3976": 19.88, + "3977": 19.885, + "3978": 19.89, + "3979": 19.895, + "3980": 19.9, + "3981": 19.905, + "3982": 19.91, + "3983": 19.915, + "3984": 19.92, + "3985": 19.925, + "3986": 19.93, + "3987": 19.935, + "3988": 19.94, + "3989": 19.945, + "3990": 19.95, + "3991": 19.955, + "3992": 19.96, + "3993": 19.965, + "3994": 19.97, + "3995": 19.975, + "3996": 19.98, + "3997": 19.985, + "3998": 19.99, + "3999": 19.995, + "4000": 20.0, + "4001": 20.005, + "4002": 20.01, + "4003": 20.015, + "4004": 20.02, + "4005": 20.025, + "4006": 20.03, + "4007": 20.035, + "4008": 20.04, + "4009": 20.045, + "4010": 20.05, + "4011": 20.055, + "4012": 20.06, + "4013": 20.065, + "4014": 20.07, + "4015": 20.075, + "4016": 20.08, + "4017": 20.085, + "4018": 20.09, + "4019": 20.095, + "4020": 20.1, + "4021": 20.105, + "4022": 20.11, + "4023": 20.115, + "4024": 20.12, + "4025": 20.125, + "4026": 20.13, + "4027": 20.135, + "4028": 20.14, + "4029": 20.145, + "4030": 20.15, + "4031": 20.155, + "4032": 20.16, + "4033": 20.165, + "4034": 20.17, + "4035": 20.175, + "4036": 20.18, + "4037": 20.185, + "4038": 20.19, + "4039": 20.195, + "4040": 20.2, + "4041": 20.205, + "4042": 20.21, + "4043": 20.215, + "4044": 20.22, + "4045": 20.225, + "4046": 20.23, + "4047": 20.235, + "4048": 20.24, + "4049": 20.245, + "4050": 20.25, + "4051": 20.255, + "4052": 20.26, + "4053": 20.265, + "4054": 20.27, + "4055": 20.275, + "4056": 20.28, + "4057": 20.285, + "4058": 20.29, + "4059": 20.295, + "4060": 20.3, + "4061": 20.305, + "4062": 20.31, + "4063": 20.315, + "4064": 20.32, + "4065": 20.325, + "4066": 20.33, + "4067": 20.335, + "4068": 20.34, + "4069": 20.345, + "4070": 20.35, + "4071": 20.355, + "4072": 20.36, + "4073": 20.365, + "4074": 20.37, + "4075": 20.375, + "4076": 20.38, + "4077": 20.385, + "4078": 20.39, + "4079": 20.395, + "4080": 20.4, + "4081": 20.405, + "4082": 20.41, + "4083": 20.415, + "4084": 20.42, + "4085": 20.425, + "4086": 20.43, + "4087": 20.435, + "4088": 20.44, + "4089": 20.445, + "4090": 20.45, + "4091": 20.455, + "4092": 20.46, + "4093": 20.465, + "4094": 20.47, + "4095": 20.475, + "4096": 20.48, + "4097": 20.485, + "4098": 20.49, + "4099": 20.495, + "4100": 20.5, + "4101": 20.505, + "4102": 20.51, + "4103": 20.515, + "4104": 20.52, + "4105": 20.525, + "4106": 20.53, + "4107": 20.535, + "4108": 20.54, + "4109": 20.545, + "4110": 20.55, + "4111": 20.555, + "4112": 20.56, + "4113": 20.565, + "4114": 20.57, + "4115": 20.575, + "4116": 20.58, + "4117": 20.585, + "4118": 20.59, + "4119": 20.595, + "4120": 20.6, + "4121": 20.605, + "4122": 20.61, + "4123": 20.615, + "4124": 20.62, + "4125": 20.625, + "4126": 20.63, + "4127": 20.635, + "4128": 20.64, + "4129": 20.645, + "4130": 20.65, + "4131": 20.655, + "4132": 20.66, + "4133": 20.665, + "4134": 20.67, + "4135": 20.675, + "4136": 20.68, + "4137": 20.685, + "4138": 20.69, + "4139": 20.695, + "4140": 20.7, + "4141": 20.705, + "4142": 20.71, + "4143": 20.715, + "4144": 20.72, + "4145": 20.725, + "4146": 20.73, + "4147": 20.735, + "4148": 20.74, + "4149": 20.745, + "4150": 20.75, + "4151": 20.755, + "4152": 20.76, + "4153": 20.765, + "4154": 20.77, + "4155": 20.775, + "4156": 20.78, + "4157": 20.785, + "4158": 20.79, + "4159": 20.795, + "4160": 20.8, + "4161": 20.805, + "4162": 20.81, + "4163": 20.815, + "4164": 20.82, + "4165": 20.825, + "4166": 20.83, + "4167": 20.835, + "4168": 20.84, + "4169": 20.845, + "4170": 20.85, + "4171": 20.855, + "4172": 20.86, + "4173": 20.865, + "4174": 20.87, + "4175": 20.875, + "4176": 20.88, + "4177": 20.885, + "4178": 20.89, + "4179": 20.895, + "4180": 20.9, + "4181": 20.905, + "4182": 20.91, + "4183": 20.915, + "4184": 20.92, + "4185": 20.925, + "4186": 20.93, + "4187": 20.935, + "4188": 20.94, + "4189": 20.945, + "4190": 20.95, + "4191": 20.955, + "4192": 20.96, + "4193": 20.965, + "4194": 20.97, + "4195": 20.975, + "4196": 20.98, + "4197": 20.985, + "4198": 20.99, + "4199": 20.995, + "4200": 21.0, + "4201": 21.005, + "4202": 21.01, + "4203": 21.015, + "4204": 21.02, + "4205": 21.025, + "4206": 21.03, + "4207": 21.035, + "4208": 21.04, + "4209": 21.045, + "4210": 21.05, + "4211": 21.055, + "4212": 21.06, + "4213": 21.065, + "4214": 21.07, + "4215": 21.075, + "4216": 21.08, + "4217": 21.085, + "4218": 21.09, + "4219": 21.095, + "4220": 21.1, + "4221": 21.105, + "4222": 21.11, + "4223": 21.115, + "4224": 21.12, + "4225": 21.125, + "4226": 21.13, + "4227": 21.135, + "4228": 21.14, + "4229": 21.145, + "4230": 21.15, + "4231": 21.155, + "4232": 21.16, + "4233": 21.165, + "4234": 21.17, + "4235": 21.175, + "4236": 21.18, + "4237": 21.185, + "4238": 21.19, + "4239": 21.195, + "4240": 21.2, + "4241": 21.205, + "4242": 21.21, + "4243": 21.215, + "4244": 21.22, + "4245": 21.225, + "4246": 21.23, + "4247": 21.235, + "4248": 21.24, + "4249": 21.245, + "4250": 21.25, + "4251": 21.255, + "4252": 21.26, + "4253": 21.265, + "4254": 21.27, + "4255": 21.275, + "4256": 21.28, + "4257": 21.285, + "4258": 21.29, + "4259": 21.295, + "4260": 21.3, + "4261": 21.305, + "4262": 21.31, + "4263": 21.315, + "4264": 21.32, + "4265": 21.325, + "4266": 21.33, + "4267": 21.335, + "4268": 21.34, + "4269": 21.345, + "4270": 21.35, + "4271": 21.355, + "4272": 21.36, + "4273": 21.365, + "4274": 21.37, + "4275": 21.375, + "4276": 21.38, + "4277": 21.385, + "4278": 21.39, + "4279": 21.395, + "4280": 21.4, + "4281": 21.405, + "4282": 21.41, + "4283": 21.415, + "4284": 21.42, + "4285": 21.425, + "4286": 21.43, + "4287": 21.435, + "4288": 21.44, + "4289": 21.445, + "4290": 21.45, + "4291": 21.455, + "4292": 21.46, + "4293": 21.465, + "4294": 21.47, + "4295": 21.475, + "4296": 21.48, + "4297": 21.485, + "4298": 21.49, + "4299": 21.495, + "4300": 21.5, + "4301": 21.505, + "4302": 21.51, + "4303": 21.515, + "4304": 21.52, + "4305": 21.525, + "4306": 21.53, + "4307": 21.535, + "4308": 21.54, + "4309": 21.545, + "4310": 21.55, + "4311": 21.555, + "4312": 21.56, + "4313": 21.565, + "4314": 21.57, + "4315": 21.575, + "4316": 21.58, + "4317": 21.585, + "4318": 21.59, + "4319": 21.595, + "4320": 21.6, + "4321": 21.605, + "4322": 21.61, + "4323": 21.615, + "4324": 21.62, + "4325": 21.625, + "4326": 21.63, + "4327": 21.635, + "4328": 21.64, + "4329": 21.645, + "4330": 21.65, + "4331": 21.655, + "4332": 21.66, + "4333": 21.665, + "4334": 21.67, + "4335": 21.675, + "4336": 21.68, + "4337": 21.685, + "4338": 21.69, + "4339": 21.695, + "4340": 21.7, + "4341": 21.705, + "4342": 21.71, + "4343": 21.715, + "4344": 21.72, + "4345": 21.725, + "4346": 21.73, + "4347": 21.735, + "4348": 21.74, + "4349": 21.745, + "4350": 21.75, + "4351": 21.755, + "4352": 21.76, + "4353": 21.765, + "4354": 21.77, + "4355": 21.775, + "4356": 21.78, + "4357": 21.785, + "4358": 21.79, + "4359": 21.795, + "4360": 21.8, + "4361": 21.805, + "4362": 21.81, + "4363": 21.815, + "4364": 21.82, + "4365": 21.825, + "4366": 21.83, + "4367": 21.835, + "4368": 21.84, + "4369": 21.845, + "4370": 21.85, + "4371": 21.855, + "4372": 21.86, + "4373": 21.865, + "4374": 21.87, + "4375": 21.875, + "4376": 21.88, + "4377": 21.885, + "4378": 21.89, + "4379": 21.895, + "4380": 21.9, + "4381": 21.905, + "4382": 21.91, + "4383": 21.915, + "4384": 21.92, + "4385": 21.925, + "4386": 21.93, + "4387": 21.935, + "4388": 21.94, + "4389": 21.945, + "4390": 21.95, + "4391": 21.955, + "4392": 21.96, + "4393": 21.965, + "4394": 21.97, + "4395": 21.975, + "4396": 21.98, + "4397": 21.985, + "4398": 21.99, + "4399": 21.995, + "4400": 22.0, + "4401": 22.005, + "4402": 22.01, + "4403": 22.015, + "4404": 22.02, + "4405": 22.025, + "4406": 22.03, + "4407": 22.035, + "4408": 22.04, + "4409": 22.045, + "4410": 22.05, + "4411": 22.055, + "4412": 22.06, + "4413": 22.065, + "4414": 22.07, + "4415": 22.075, + "4416": 22.08, + "4417": 22.085, + "4418": 22.09, + "4419": 22.095, + "4420": 22.1, + "4421": 22.105, + "4422": 22.11, + "4423": 22.115, + "4424": 22.12, + "4425": 22.125, + "4426": 22.13, + "4427": 22.135, + "4428": 22.14, + "4429": 22.145, + "4430": 22.15, + "4431": 22.155, + "4432": 22.16, + "4433": 22.165, + "4434": 22.17, + "4435": 22.175, + "4436": 22.18, + "4437": 22.185, + "4438": 22.19, + "4439": 22.195, + "4440": 22.2, + "4441": 22.205, + "4442": 22.21, + "4443": 22.215, + "4444": 22.22, + "4445": 22.225, + "4446": 22.23, + "4447": 22.235, + "4448": 22.24, + "4449": 22.245, + "4450": 22.25, + "4451": 22.255, + "4452": 22.26, + "4453": 22.265, + "4454": 22.27, + "4455": 22.275, + "4456": 22.28, + "4457": 22.285, + "4458": 22.29, + "4459": 22.295, + "4460": 22.3, + "4461": 22.305, + "4462": 22.31, + "4463": 22.315, + "4464": 22.32, + "4465": 22.325, + "4466": 22.33, + "4467": 22.335, + "4468": 22.34, + "4469": 22.345, + "4470": 22.35, + "4471": 22.355, + "4472": 22.36, + "4473": 22.365, + "4474": 22.37, + "4475": 22.375, + "4476": 22.38, + "4477": 22.385, + "4478": 22.39, + "4479": 22.395, + "4480": 22.4, + "4481": 22.405, + "4482": 22.41, + "4483": 22.415, + "4484": 22.42, + "4485": 22.425, + "4486": 22.43, + "4487": 22.435, + "4488": 22.44, + "4489": 22.445, + "4490": 22.45, + "4491": 22.455, + "4492": 22.46, + "4493": 22.465, + "4494": 22.47, + "4495": 22.475, + "4496": 22.48, + "4497": 22.485, + "4498": 22.49, + "4499": 22.495, + "4500": 22.5, + "4501": 22.505, + "4502": 22.51, + "4503": 22.515, + "4504": 22.52, + "4505": 22.525, + "4506": 22.53, + "4507": 22.535, + "4508": 22.54, + "4509": 22.545, + "4510": 22.55, + "4511": 22.555, + "4512": 22.56, + "4513": 22.565, + "4514": 22.57, + "4515": 22.575, + "4516": 22.58, + "4517": 22.585, + "4518": 22.59, + "4519": 22.595, + "4520": 22.6, + "4521": 22.605, + "4522": 22.61, + "4523": 22.615, + "4524": 22.62, + "4525": 22.625, + "4526": 22.63, + "4527": 22.635, + "4528": 22.64, + "4529": 22.645, + "4530": 22.65, + "4531": 22.655, + "4532": 22.66, + "4533": 22.665, + "4534": 22.67, + "4535": 22.675, + "4536": 22.68, + "4537": 22.685, + "4538": 22.69, + "4539": 22.695, + "4540": 22.7, + "4541": 22.705, + "4542": 22.71, + "4543": 22.715, + "4544": 22.72, + "4545": 22.725, + "4546": 22.73, + "4547": 22.735, + "4548": 22.74, + "4549": 22.745, + "4550": 22.75, + "4551": 22.755, + "4552": 22.76, + "4553": 22.765, + "4554": 22.77, + "4555": 22.775, + "4556": 22.78, + "4557": 22.785, + "4558": 22.79, + "4559": 22.795, + "4560": 22.8, + "4561": 22.805, + "4562": 22.81, + "4563": 22.815, + "4564": 22.82, + "4565": 22.825, + "4566": 22.83, + "4567": 22.835, + "4568": 22.84, + "4569": 22.845, + "4570": 22.85, + "4571": 22.855, + "4572": 22.86, + "4573": 22.865, + "4574": 22.87, + "4575": 22.875, + "4576": 22.88, + "4577": 22.885, + "4578": 22.89, + "4579": 22.895, + "4580": 22.9, + "4581": 22.905, + "4582": 22.91, + "4583": 22.915, + "4584": 22.92, + "4585": 22.925, + "4586": 22.93, + "4587": 22.935, + "4588": 22.94, + "4589": 22.945, + "4590": 22.95, + "4591": 22.955, + "4592": 22.96, + "4593": 22.965, + "4594": 22.97, + "4595": 22.975, + "4596": 22.98, + "4597": 22.985, + "4598": 22.99, + "4599": 22.995, + "4600": 23.0, + "4601": 23.005, + "4602": 23.01, + "4603": 23.015, + "4604": 23.02, + "4605": 23.025, + "4606": 23.03, + "4607": 23.035, + "4608": 23.04, + "4609": 23.045, + "4610": 23.05, + "4611": 23.055, + "4612": 23.06, + "4613": 23.065, + "4614": 23.07, + "4615": 23.075, + "4616": 23.08, + "4617": 23.085, + "4618": 23.09, + "4619": 23.095, + "4620": 23.1, + "4621": 23.105, + "4622": 23.11, + "4623": 23.115, + "4624": 23.12, + "4625": 23.125, + "4626": 23.13, + "4627": 23.135, + "4628": 23.14, + "4629": 23.145, + "4630": 23.15, + "4631": 23.155, + "4632": 23.16, + "4633": 23.165, + "4634": 23.17, + "4635": 23.175, + "4636": 23.18, + "4637": 23.185, + "4638": 23.19, + "4639": 23.195, + "4640": 23.2, + "4641": 23.205, + "4642": 23.21, + "4643": 23.215, + "4644": 23.22, + "4645": 23.225, + "4646": 23.23, + "4647": 23.235, + "4648": 23.24, + "4649": 23.245, + "4650": 23.25, + "4651": 23.255, + "4652": 23.26, + "4653": 23.265, + "4654": 23.27, + "4655": 23.275, + "4656": 23.28, + "4657": 23.285, + "4658": 23.29, + "4659": 23.295, + "4660": 23.3, + "4661": 23.305, + "4662": 23.31, + "4663": 23.315, + "4664": 23.32, + "4665": 23.325, + "4666": 23.33, + "4667": 23.335, + "4668": 23.34, + "4669": 23.345, + "4670": 23.35, + "4671": 23.355, + "4672": 23.36, + "4673": 23.365, + "4674": 23.37, + "4675": 23.375, + "4676": 23.38, + "4677": 23.385, + "4678": 23.39, + "4679": 23.395, + "4680": 23.4, + "4681": 23.405, + "4682": 23.41, + "4683": 23.415, + "4684": 23.42, + "4685": 23.425, + "4686": 23.43, + "4687": 23.435, + "4688": 23.44, + "4689": 23.445, + "4690": 23.45, + "4691": 23.455, + "4692": 23.46, + "4693": 23.465, + "4694": 23.47, + "4695": 23.475, + "4696": 23.48, + "4697": 23.485, + "4698": 23.49, + "4699": 23.495, + "4700": 23.5, + "4701": 23.505, + "4702": 23.51, + "4703": 23.515, + "4704": 23.52, + "4705": 23.525, + "4706": 23.53, + "4707": 23.535, + "4708": 23.54, + "4709": 23.545, + "4710": 23.55, + "4711": 23.555, + "4712": 23.56, + "4713": 23.565, + "4714": 23.57, + "4715": 23.575, + "4716": 23.58, + "4717": 23.585, + "4718": 23.59, + "4719": 23.595, + "4720": 23.6, + "4721": 23.605, + "4722": 23.61, + "4723": 23.615, + "4724": 23.62, + "4725": 23.625, + "4726": 23.63, + "4727": 23.635, + "4728": 23.64, + "4729": 23.645, + "4730": 23.65, + "4731": 23.655, + "4732": 23.66, + "4733": 23.665, + "4734": 23.67, + "4735": 23.675, + "4736": 23.68, + "4737": 23.685, + "4738": 23.69, + "4739": 23.695, + "4740": 23.7, + "4741": 23.705, + "4742": 23.71, + "4743": 23.715, + "4744": 23.72, + "4745": 23.725, + "4746": 23.73, + "4747": 23.735, + "4748": 23.74, + "4749": 23.745, + "4750": 23.75, + "4751": 23.755, + "4752": 23.76, + "4753": 23.765, + "4754": 23.77, + "4755": 23.775, + "4756": 23.78, + "4757": 23.785, + "4758": 23.79, + "4759": 23.795, + "4760": 23.8, + "4761": 23.805, + "4762": 23.81, + "4763": 23.815, + "4764": 23.82, + "4765": 23.825, + "4766": 23.83, + "4767": 23.835, + "4768": 23.84, + "4769": 23.845, + "4770": 23.85, + "4771": 23.855, + "4772": 23.86, + "4773": 23.865, + "4774": 23.87, + "4775": 23.875, + "4776": 23.88, + "4777": 23.885, + "4778": 23.89, + "4779": 23.895, + "4780": 23.9, + "4781": 23.905, + "4782": 23.91, + "4783": 23.915, + "4784": 23.92, + "4785": 23.925, + "4786": 23.93, + "4787": 23.935, + "4788": 23.94, + "4789": 23.945, + "4790": 23.95, + "4791": 23.955, + "4792": 23.96, + "4793": 23.965, + "4794": 23.97, + "4795": 23.975, + "4796": 23.98, + "4797": 23.985, + "4798": 23.99, + "4799": 23.995, + "4800": 24.0, + "4801": 24.005, + "4802": 24.01, + "4803": 24.015, + "4804": 24.02, + "4805": 24.025, + "4806": 24.03, + "4807": 24.035, + "4808": 24.04, + "4809": 24.045, + "4810": 24.05, + "4811": 24.055, + "4812": 24.06, + "4813": 24.065, + "4814": 24.07, + "4815": 24.075, + "4816": 24.08, + "4817": 24.085, + "4818": 24.09, + "4819": 24.095, + "4820": 24.1, + "4821": 24.105, + "4822": 24.11, + "4823": 24.115, + "4824": 24.12, + "4825": 24.125, + "4826": 24.13, + "4827": 24.135, + "4828": 24.14, + "4829": 24.145, + "4830": 24.15, + "4831": 24.155, + "4832": 24.16, + "4833": 24.165, + "4834": 24.17, + "4835": 24.175, + "4836": 24.18, + "4837": 24.185, + "4838": 24.19, + "4839": 24.195, + "4840": 24.2, + "4841": 24.205, + "4842": 24.21, + "4843": 24.215, + "4844": 24.22, + "4845": 24.225, + "4846": 24.23, + "4847": 24.235, + "4848": 24.24, + "4849": 24.245, + "4850": 24.25, + "4851": 24.255, + "4852": 24.26, + "4853": 24.265, + "4854": 24.27, + "4855": 24.275, + "4856": 24.28, + "4857": 24.285, + "4858": 24.29, + "4859": 24.295, + "4860": 24.3, + "4861": 24.305, + "4862": 24.31, + "4863": 24.315, + "4864": 24.32, + "4865": 24.325, + "4866": 24.33, + "4867": 24.335, + "4868": 24.34, + "4869": 24.345, + "4870": 24.35, + "4871": 24.355, + "4872": 24.36, + "4873": 24.365, + "4874": 24.37, + "4875": 24.375, + "4876": 24.38, + "4877": 24.385, + "4878": 24.39, + "4879": 24.395, + "4880": 24.4, + "4881": 24.405, + "4882": 24.41, + "4883": 24.415, + "4884": 24.42, + "4885": 24.425, + "4886": 24.43, + "4887": 24.435, + "4888": 24.44, + "4889": 24.445, + "4890": 24.45, + "4891": 24.455, + "4892": 24.46, + "4893": 24.465, + "4894": 24.47, + "4895": 24.475, + "4896": 24.48, + "4897": 24.485, + "4898": 24.49, + "4899": 24.495, + "4900": 24.5, + "4901": 24.505, + "4902": 24.51, + "4903": 24.515, + "4904": 24.52, + "4905": 24.525, + "4906": 24.53, + "4907": 24.535, + "4908": 24.54, + "4909": 24.545, + "4910": 24.55, + "4911": 24.555, + "4912": 24.56, + "4913": 24.565, + "4914": 24.57, + "4915": 24.575, + "4916": 24.58, + "4917": 24.585, + "4918": 24.59, + "4919": 24.595, + "4920": 24.6, + "4921": 24.605, + "4922": 24.61, + "4923": 24.615, + "4924": 24.62, + "4925": 24.625, + "4926": 24.63, + "4927": 24.635, + "4928": 24.64, + "4929": 24.645, + "4930": 24.65, + "4931": 24.655, + "4932": 24.66, + "4933": 24.665, + "4934": 24.67, + "4935": 24.675, + "4936": 24.68, + "4937": 24.685, + "4938": 24.69, + "4939": 24.695, + "4940": 24.7, + "4941": 24.705, + "4942": 24.71, + "4943": 24.715, + "4944": 24.72, + "4945": 24.725, + "4946": 24.73, + "4947": 24.735, + "4948": 24.74, + "4949": 24.745, + "4950": 24.75, + "4951": 24.755, + "4952": 24.76, + "4953": 24.765, + "4954": 24.77, + "4955": 24.775, + "4956": 24.78, + "4957": 24.785, + "4958": 24.79, + "4959": 24.795, + "4960": 24.8, + "4961": 24.805, + "4962": 24.81, + "4963": 24.815, + "4964": 24.82, + "4965": 24.825, + "4966": 24.83, + "4967": 24.835, + "4968": 24.84, + "4969": 24.845, + "4970": 24.85, + "4971": 24.855, + "4972": 24.86, + "4973": 24.865, + "4974": 24.87, + "4975": 24.875, + "4976": 24.88, + "4977": 24.885, + "4978": 24.89, + "4979": 24.895, + "4980": 24.9, + "4981": 24.905, + "4982": 24.91, + "4983": 24.915, + "4984": 24.92, + "4985": 24.925, + "4986": 24.93, + "4987": 24.935, + "4988": 24.94, + "4989": 24.945, + "4990": 24.95, + "4991": 24.955, + "4992": 24.96, + "4993": 24.965, + "4994": 24.97, + "4995": 24.975, + "4996": 24.98, + "4997": 24.985, + "4998": 24.99, + "4999": 24.995, + "5000": 25.0, + "5001": 25.005, + "5002": 25.01, + "5003": 25.015, + "5004": 25.02, + "5005": 25.025, + "5006": 25.03, + "5007": 25.035, + "5008": 25.04, + "5009": 25.045, + "5010": 25.05, + "5011": 25.055, + "5012": 25.06, + "5013": 25.065, + "5014": 25.07, + "5015": 25.075, + "5016": 25.08, + "5017": 25.085, + "5018": 25.09, + "5019": 25.095, + "5020": 25.1, + "5021": 25.105, + "5022": 25.11, + "5023": 25.115, + "5024": 25.12, + "5025": 25.125, + "5026": 25.13, + "5027": 25.135, + "5028": 25.14, + "5029": 25.145, + "5030": 25.15, + "5031": 25.155, + "5032": 25.16, + "5033": 25.165, + "5034": 25.17, + "5035": 25.175, + "5036": 25.18, + "5037": 25.185, + "5038": 25.19, + "5039": 25.195, + "5040": 25.2, + "5041": 25.205, + "5042": 25.21, + "5043": 25.215, + "5044": 25.22, + "5045": 25.225, + "5046": 25.23, + "5047": 25.235, + "5048": 25.24, + "5049": 25.245, + "5050": 25.25, + "5051": 25.255, + "5052": 25.26, + "5053": 25.265, + "5054": 25.27, + "5055": 25.275, + "5056": 25.28, + "5057": 25.285, + "5058": 25.29, + "5059": 25.295, + "5060": 25.3, + "5061": 25.305, + "5062": 25.31, + "5063": 25.315, + "5064": 25.32, + "5065": 25.325, + "5066": 25.33, + "5067": 25.335, + "5068": 25.34, + "5069": 25.345, + "5070": 25.35, + "5071": 25.355, + "5072": 25.36, + "5073": 25.365, + "5074": 25.37, + "5075": 25.375, + "5076": 25.38, + "5077": 25.385, + "5078": 25.39, + "5079": 25.395, + "5080": 25.4, + "5081": 25.405, + "5082": 25.41, + "5083": 25.415, + "5084": 25.42, + "5085": 25.425, + "5086": 25.43, + "5087": 25.435, + "5088": 25.44, + "5089": 25.445, + "5090": 25.45, + "5091": 25.455, + "5092": 25.46, + "5093": 25.465, + "5094": 25.47, + "5095": 25.475, + "5096": 25.48, + "5097": 25.485, + "5098": 25.49, + "5099": 25.495, + "5100": 25.5, + "5101": 25.505, + "5102": 25.51, + "5103": 25.515, + "5104": 25.52, + "5105": 25.525, + "5106": 25.53, + "5107": 25.535, + "5108": 25.54, + "5109": 25.545, + "5110": 25.55, + "5111": 25.555, + "5112": 25.56, + "5113": 25.565, + "5114": 25.57, + "5115": 25.575, + "5116": 25.58, + "5117": 25.585, + "5118": 25.59, + "5119": 25.595, + "5120": 25.6, + "5121": 25.605, + "5122": 25.61, + "5123": 25.615, + "5124": 25.62, + "5125": 25.625, + "5126": 25.63, + "5127": 25.635, + "5128": 25.64, + "5129": 25.645, + "5130": 25.65, + "5131": 25.655, + "5132": 25.66, + "5133": 25.665, + "5134": 25.67, + "5135": 25.675, + "5136": 25.68, + "5137": 25.685, + "5138": 25.69, + "5139": 25.695, + "5140": 25.7, + "5141": 25.705, + "5142": 25.71, + "5143": 25.715, + "5144": 25.72, + "5145": 25.725, + "5146": 25.73, + "5147": 25.735, + "5148": 25.74, + "5149": 25.745, + "5150": 25.75, + "5151": 25.755, + "5152": 25.76, + "5153": 25.765, + "5154": 25.77, + "5155": 25.775, + "5156": 25.78, + "5157": 25.785, + "5158": 25.79, + "5159": 25.795, + "5160": 25.8, + "5161": 25.805, + "5162": 25.81, + "5163": 25.815, + "5164": 25.82, + "5165": 25.825, + "5166": 25.83, + "5167": 25.835, + "5168": 25.84, + "5169": 25.845, + "5170": 25.85, + "5171": 25.855, + "5172": 25.86, + "5173": 25.865, + "5174": 25.87, + "5175": 25.875, + "5176": 25.88, + "5177": 25.885, + "5178": 25.89, + "5179": 25.895, + "5180": 25.9, + "5181": 25.905, + "5182": 25.91, + "5183": 25.915, + "5184": 25.92, + "5185": 25.925, + "5186": 25.93, + "5187": 25.935, + "5188": 25.94, + "5189": 25.945, + "5190": 25.95, + "5191": 25.955, + "5192": 25.96, + "5193": 25.965, + "5194": 25.97, + "5195": 25.975, + "5196": 25.98, + "5197": 25.985, + "5198": 25.99, + "5199": 25.995, + "5200": 26.0, + "5201": 26.005, + "5202": 26.01, + "5203": 26.015, + "5204": 26.02, + "5205": 26.025, + "5206": 26.03, + "5207": 26.035, + "5208": 26.04, + "5209": 26.045, + "5210": 26.05, + "5211": 26.055, + "5212": 26.06, + "5213": 26.065, + "5214": 26.07, + "5215": 26.075, + "5216": 26.08, + "5217": 26.085, + "5218": 26.09, + "5219": 26.095, + "5220": 26.1, + "5221": 26.105, + "5222": 26.11, + "5223": 26.115, + "5224": 26.12, + "5225": 26.125, + "5226": 26.13, + "5227": 26.135, + "5228": 26.14, + "5229": 26.145, + "5230": 26.15, + "5231": 26.155, + "5232": 26.16, + "5233": 26.165, + "5234": 26.17, + "5235": 26.175, + "5236": 26.18, + "5237": 26.185, + "5238": 26.19, + "5239": 26.195, + "5240": 26.2, + "5241": 26.205, + "5242": 26.21, + "5243": 26.215, + "5244": 26.22, + "5245": 26.225, + "5246": 26.23, + "5247": 26.235, + "5248": 26.24, + "5249": 26.245, + "5250": 26.25, + "5251": 26.255, + "5252": 26.26, + "5253": 26.265, + "5254": 26.27, + "5255": 26.275, + "5256": 26.28, + "5257": 26.285, + "5258": 26.29, + "5259": 26.295, + "5260": 26.3, + "5261": 26.305, + "5262": 26.31, + "5263": 26.315, + "5264": 26.32, + "5265": 26.325, + "5266": 26.33, + "5267": 26.335, + "5268": 26.34, + "5269": 26.345, + "5270": 26.35, + "5271": 26.355, + "5272": 26.36, + "5273": 26.365, + "5274": 26.37, + "5275": 26.375, + "5276": 26.38, + "5277": 26.385, + "5278": 26.39, + "5279": 26.395, + "5280": 26.4, + "5281": 26.405, + "5282": 26.41, + "5283": 26.415, + "5284": 26.42, + "5285": 26.425, + "5286": 26.43, + "5287": 26.435, + "5288": 26.44, + "5289": 26.445, + "5290": 26.45, + "5291": 26.455, + "5292": 26.46, + "5293": 26.465, + "5294": 26.47, + "5295": 26.475, + "5296": 26.48, + "5297": 26.485, + "5298": 26.49, + "5299": 26.495, + "5300": 26.5, + "5301": 26.505, + "5302": 26.51, + "5303": 26.515, + "5304": 26.52, + "5305": 26.525, + "5306": 26.53, + "5307": 26.535, + "5308": 26.54, + "5309": 26.545, + "5310": 26.55, + "5311": 26.555, + "5312": 26.56, + "5313": 26.565, + "5314": 26.57, + "5315": 26.575, + "5316": 26.58, + "5317": 26.585, + "5318": 26.59, + "5319": 26.595, + "5320": 26.6, + "5321": 26.605, + "5322": 26.61, + "5323": 26.615, + "5324": 26.62, + "5325": 26.625, + "5326": 26.63, + "5327": 26.635, + "5328": 26.64, + "5329": 26.645, + "5330": 26.65, + "5331": 26.655, + "5332": 26.66, + "5333": 26.665, + "5334": 26.67, + "5335": 26.675, + "5336": 26.68, + "5337": 26.685, + "5338": 26.69, + "5339": 26.695, + "5340": 26.7, + "5341": 26.705, + "5342": 26.71, + "5343": 26.715, + "5344": 26.72, + "5345": 26.725, + "5346": 26.73, + "5347": 26.735, + "5348": 26.74, + "5349": 26.745, + "5350": 26.75, + "5351": 26.755, + "5352": 26.76, + "5353": 26.765, + "5354": 26.77, + "5355": 26.775, + "5356": 26.78, + "5357": 26.785, + "5358": 26.79, + "5359": 26.795, + "5360": 26.8, + "5361": 26.805, + "5362": 26.81, + "5363": 26.815, + "5364": 26.82, + "5365": 26.825, + "5366": 26.83, + "5367": 26.835, + "5368": 26.84, + "5369": 26.845, + "5370": 26.85, + "5371": 26.855, + "5372": 26.86, + "5373": 26.865, + "5374": 26.87, + "5375": 26.875, + "5376": 26.88, + "5377": 26.885, + "5378": 26.89, + "5379": 26.895, + "5380": 26.9, + "5381": 26.905, + "5382": 26.91, + "5383": 26.915, + "5384": 26.92, + "5385": 26.925, + "5386": 26.93, + "5387": 26.935, + "5388": 26.94, + "5389": 26.945, + "5390": 26.95, + "5391": 26.955, + "5392": 26.96, + "5393": 26.965, + "5394": 26.97, + "5395": 26.975, + "5396": 26.98, + "5397": 26.985, + "5398": 26.99, + "5399": 26.995, + "5400": 27.0, + "5401": 27.005, + "5402": 27.01, + "5403": 27.015, + "5404": 27.02, + "5405": 27.025, + "5406": 27.03, + "5407": 27.035, + "5408": 27.04, + "5409": 27.045, + "5410": 27.05, + "5411": 27.055, + "5412": 27.06, + "5413": 27.065, + "5414": 27.07, + "5415": 27.075, + "5416": 27.08, + "5417": 27.085, + "5418": 27.09, + "5419": 27.095, + "5420": 27.1, + "5421": 27.105, + "5422": 27.11, + "5423": 27.115, + "5424": 27.12, + "5425": 27.125, + "5426": 27.13, + "5427": 27.135, + "5428": 27.14, + "5429": 27.145, + "5430": 27.15, + "5431": 27.155, + "5432": 27.16, + "5433": 27.165, + "5434": 27.17, + "5435": 27.175, + "5436": 27.18, + "5437": 27.185, + "5438": 27.19, + "5439": 27.195, + "5440": 27.2, + "5441": 27.205, + "5442": 27.21, + "5443": 27.215, + "5444": 27.22, + "5445": 27.225, + "5446": 27.23, + "5447": 27.235, + "5448": 27.24, + "5449": 27.245, + "5450": 27.25, + "5451": 27.255, + "5452": 27.26, + "5453": 27.265, + "5454": 27.27, + "5455": 27.275, + "5456": 27.28, + "5457": 27.285, + "5458": 27.29, + "5459": 27.295, + "5460": 27.3, + "5461": 27.305, + "5462": 27.31, + "5463": 27.315, + "5464": 27.32, + "5465": 27.325, + "5466": 27.33, + "5467": 27.335, + "5468": 27.34, + "5469": 27.345, + "5470": 27.35, + "5471": 27.355, + "5472": 27.36, + "5473": 27.365, + "5474": 27.37, + "5475": 27.375, + "5476": 27.38, + "5477": 27.385, + "5478": 27.39, + "5479": 27.395, + "5480": 27.4, + "5481": 27.405, + "5482": 27.41, + "5483": 27.415, + "5484": 27.42, + "5485": 27.425, + "5486": 27.43, + "5487": 27.435, + "5488": 27.44, + "5489": 27.445, + "5490": 27.45, + "5491": 27.455, + "5492": 27.46, + "5493": 27.465, + "5494": 27.47, + "5495": 27.475, + "5496": 27.48, + "5497": 27.485, + "5498": 27.49, + "5499": 27.495, + "5500": 27.5, + "5501": 27.505, + "5502": 27.51, + "5503": 27.515, + "5504": 27.52, + "5505": 27.525, + "5506": 27.53, + "5507": 27.535, + "5508": 27.54, + "5509": 27.545, + "5510": 27.55, + "5511": 27.555, + "5512": 27.56, + "5513": 27.565, + "5514": 27.57, + "5515": 27.575, + "5516": 27.58, + "5517": 27.585, + "5518": 27.59, + "5519": 27.595, + "5520": 27.6, + "5521": 27.605, + "5522": 27.61, + "5523": 27.615, + "5524": 27.62, + "5525": 27.625, + "5526": 27.63, + "5527": 27.635, + "5528": 27.64, + "5529": 27.645, + "5530": 27.65, + "5531": 27.655, + "5532": 27.66, + "5533": 27.665, + "5534": 27.67, + "5535": 27.675, + "5536": 27.68, + "5537": 27.685, + "5538": 27.69, + "5539": 27.695, + "5540": 27.7, + "5541": 27.705, + "5542": 27.71, + "5543": 27.715, + "5544": 27.72, + "5545": 27.725, + "5546": 27.73, + "5547": 27.735, + "5548": 27.74, + "5549": 27.745, + "5550": 27.75, + "5551": 27.755, + "5552": 27.76, + "5553": 27.765, + "5554": 27.77, + "5555": 27.775, + "5556": 27.78, + "5557": 27.785, + "5558": 27.79, + "5559": 27.795, + "5560": 27.8, + "5561": 27.805, + "5562": 27.81, + "5563": 27.815, + "5564": 27.82, + "5565": 27.825, + "5566": 27.83, + "5567": 27.835, + "5568": 27.84, + "5569": 27.845, + "5570": 27.85, + "5571": 27.855, + "5572": 27.86, + "5573": 27.865, + "5574": 27.87, + "5575": 27.875, + "5576": 27.88, + "5577": 27.885, + "5578": 27.89, + "5579": 27.895, + "5580": 27.9, + "5581": 27.905, + "5582": 27.91, + "5583": 27.915, + "5584": 27.92, + "5585": 27.925, + "5586": 27.93, + "5587": 27.935, + "5588": 27.94, + "5589": 27.945, + "5590": 27.95, + "5591": 27.955, + "5592": 27.96, + "5593": 27.965, + "5594": 27.97, + "5595": 27.975, + "5596": 27.98, + "5597": 27.985, + "5598": 27.99, + "5599": 27.995, + "5600": 28.0, + "5601": 28.005, + "5602": 28.01, + "5603": 28.015, + "5604": 28.02, + "5605": 28.025, + "5606": 28.03, + "5607": 28.035, + "5608": 28.04, + "5609": 28.045, + "5610": 28.05, + "5611": 28.055, + "5612": 28.06, + "5613": 28.065, + "5614": 28.07, + "5615": 28.075, + "5616": 28.08, + "5617": 28.085, + "5618": 28.09, + "5619": 28.095, + "5620": 28.1, + "5621": 28.105, + "5622": 28.11, + "5623": 28.115, + "5624": 28.12, + "5625": 28.125, + "5626": 28.13, + "5627": 28.135, + "5628": 28.14, + "5629": 28.145, + "5630": 28.15, + "5631": 28.155, + "5632": 28.16, + "5633": 28.165, + "5634": 28.17, + "5635": 28.175, + "5636": 28.18, + "5637": 28.185, + "5638": 28.19, + "5639": 28.195, + "5640": 28.2, + "5641": 28.205, + "5642": 28.21, + "5643": 28.215, + "5644": 28.22, + "5645": 28.225, + "5646": 28.23, + "5647": 28.235, + "5648": 28.24, + "5649": 28.245, + "5650": 28.25, + "5651": 28.255, + "5652": 28.26, + "5653": 28.265, + "5654": 28.27, + "5655": 28.275, + "5656": 28.28, + "5657": 28.285, + "5658": 28.29, + "5659": 28.295, + "5660": 28.3, + "5661": 28.305, + "5662": 28.31, + "5663": 28.315, + "5664": 28.32, + "5665": 28.325, + "5666": 28.33, + "5667": 28.335, + "5668": 28.34, + "5669": 28.345, + "5670": 28.35, + "5671": 28.355, + "5672": 28.36, + "5673": 28.365, + "5674": 28.37, + "5675": 28.375, + "5676": 28.38, + "5677": 28.385, + "5678": 28.39, + "5679": 28.395, + "5680": 28.4, + "5681": 28.405, + "5682": 28.41, + "5683": 28.415, + "5684": 28.42, + "5685": 28.425, + "5686": 28.43, + "5687": 28.435, + "5688": 28.44, + "5689": 28.445, + "5690": 28.45, + "5691": 28.455, + "5692": 28.46, + "5693": 28.465, + "5694": 28.47, + "5695": 28.475, + "5696": 28.48, + "5697": 28.485, + "5698": 28.49, + "5699": 28.495, + "5700": 28.5, + "5701": 28.505, + "5702": 28.51, + "5703": 28.515, + "5704": 28.52, + "5705": 28.525, + "5706": 28.53, + "5707": 28.535, + "5708": 28.54, + "5709": 28.545, + "5710": 28.55, + "5711": 28.555, + "5712": 28.56, + "5713": 28.565, + "5714": 28.57, + "5715": 28.575, + "5716": 28.58, + "5717": 28.585, + "5718": 28.59, + "5719": 28.595, + "5720": 28.6, + "5721": 28.605, + "5722": 28.61, + "5723": 28.615, + "5724": 28.62, + "5725": 28.625, + "5726": 28.63, + "5727": 28.635, + "5728": 28.64, + "5729": 28.645, + "5730": 28.65, + "5731": 28.655, + "5732": 28.66, + "5733": 28.665, + "5734": 28.67, + "5735": 28.675, + "5736": 28.68, + "5737": 28.685, + "5738": 28.69, + "5739": 28.695, + "5740": 28.7, + "5741": 28.705, + "5742": 28.71, + "5743": 28.715, + "5744": 28.72, + "5745": 28.725, + "5746": 28.73, + "5747": 28.735, + "5748": 28.74, + "5749": 28.745, + "5750": 28.75, + "5751": 28.755, + "5752": 28.76, + "5753": 28.765, + "5754": 28.77, + "5755": 28.775, + "5756": 28.78, + "5757": 28.785, + "5758": 28.79, + "5759": 28.795, + "5760": 28.8, + "5761": 28.805, + "5762": 28.81, + "5763": 28.815, + "5764": 28.82, + "5765": 28.825, + "5766": 28.83, + "5767": 28.835, + "5768": 28.84, + "5769": 28.845, + "5770": 28.85, + "5771": 28.855, + "5772": 28.86, + "5773": 28.865, + "5774": 28.87, + "5775": 28.875, + "5776": 28.88, + "5777": 28.885, + "5778": 28.89, + "5779": 28.895, + "5780": 28.9, + "5781": 28.905, + "5782": 28.91, + "5783": 28.915, + "5784": 28.92, + "5785": 28.925, + "5786": 28.93, + "5787": 28.935, + "5788": 28.94, + "5789": 28.945, + "5790": 28.95, + "5791": 28.955, + "5792": 28.96, + "5793": 28.965, + "5794": 28.97, + "5795": 28.975, + "5796": 28.98, + "5797": 28.985, + "5798": 28.99, + "5799": 28.995, + "5800": 29.0, + "5801": 29.005, + "5802": 29.01, + "5803": 29.015, + "5804": 29.02, + "5805": 29.025, + "5806": 29.03, + "5807": 29.035, + "5808": 29.04, + "5809": 29.045, + "5810": 29.05, + "5811": 29.055, + "5812": 29.06, + "5813": 29.065, + "5814": 29.07, + "5815": 29.075, + "5816": 29.08, + "5817": 29.085, + "5818": 29.09, + "5819": 29.095, + "5820": 29.1, + "5821": 29.105, + "5822": 29.11, + "5823": 29.115, + "5824": 29.12, + "5825": 29.125, + "5826": 29.13, + "5827": 29.135, + "5828": 29.14, + "5829": 29.145, + "5830": 29.15, + "5831": 29.155, + "5832": 29.16, + "5833": 29.165, + "5834": 29.17, + "5835": 29.175, + "5836": 29.18, + "5837": 29.185, + "5838": 29.19, + "5839": 29.195, + "5840": 29.2, + "5841": 29.205, + "5842": 29.21, + "5843": 29.215, + "5844": 29.22, + "5845": 29.225, + "5846": 29.23, + "5847": 29.235, + "5848": 29.24, + "5849": 29.245, + "5850": 29.25, + "5851": 29.255, + "5852": 29.26, + "5853": 29.265, + "5854": 29.27, + "5855": 29.275, + "5856": 29.28, + "5857": 29.285, + "5858": 29.29, + "5859": 29.295, + "5860": 29.3, + "5861": 29.305, + "5862": 29.31, + "5863": 29.315, + "5864": 29.32, + "5865": 29.325, + "5866": 29.33, + "5867": 29.335, + "5868": 29.34, + "5869": 29.345, + "5870": 29.35, + "5871": 29.355, + "5872": 29.36, + "5873": 29.365, + "5874": 29.37, + "5875": 29.375, + "5876": 29.38, + "5877": 29.385, + "5878": 29.39, + "5879": 29.395, + "5880": 29.4, + "5881": 29.405, + "5882": 29.41, + "5883": 29.415, + "5884": 29.42, + "5885": 29.425, + "5886": 29.43, + "5887": 29.435, + "5888": 29.44, + "5889": 29.445, + "5890": 29.45, + "5891": 29.455, + "5892": 29.46, + "5893": 29.465, + "5894": 29.47, + "5895": 29.475, + "5896": 29.48, + "5897": 29.485, + "5898": 29.49, + "5899": 29.495, + "5900": 29.5, + "5901": 29.505, + "5902": 29.51, + "5903": 29.515, + "5904": 29.52, + "5905": 29.525, + "5906": 29.53, + "5907": 29.535, + "5908": 29.54, + "5909": 29.545, + "5910": 29.55, + "5911": 29.555, + "5912": 29.56, + "5913": 29.565, + "5914": 29.57, + "5915": 29.575, + "5916": 29.58, + "5917": 29.585, + "5918": 29.59, + "5919": 29.595, + "5920": 29.6, + "5921": 29.605, + "5922": 29.61, + "5923": 29.615, + "5924": 29.62, + "5925": 29.625, + "5926": 29.63, + "5927": 29.635, + "5928": 29.64, + "5929": 29.645, + "5930": 29.65, + "5931": 29.655, + "5932": 29.66, + "5933": 29.665, + "5934": 29.67, + "5935": 29.675, + "5936": 29.68, + "5937": 29.685, + "5938": 29.69, + "5939": 29.695, + "5940": 29.7, + "5941": 29.705, + "5942": 29.71, + "5943": 29.715, + "5944": 29.72, + "5945": 29.725, + "5946": 29.73, + "5947": 29.735, + "5948": 29.74, + "5949": 29.745, + "5950": 29.75, + "5951": 29.755, + "5952": 29.76, + "5953": 29.765, + "5954": 29.77, + "5955": 29.775, + "5956": 29.78, + "5957": 29.785, + "5958": 29.79, + "5959": 29.795, + "5960": 29.8, + "5961": 29.805, + "5962": 29.81, + "5963": 29.815, + "5964": 29.82, + "5965": 29.825, + "5966": 29.83, + "5967": 29.835, + "5968": 29.84, + "5969": 29.845, + "5970": 29.85, + "5971": 29.855, + "5972": 29.86, + "5973": 29.865, + "5974": 29.87, + "5975": 29.875, + "5976": 29.88, + "5977": 29.885, + "5978": 29.89, + "5979": 29.895, + "5980": 29.9, + "5981": 29.905, + "5982": 29.91, + "5983": 29.915, + "5984": 29.92, + "5985": 29.925, + "5986": 29.93, + "5987": 29.935, + "5988": 29.94, + "5989": 29.945, + "5990": 29.95, + "5991": 29.955, + "5992": 29.96, + "5993": 29.965, + "5994": 29.97, + "5995": 29.975, + "5996": 29.98, + "5997": 29.985, + "5998": 29.99, + "5999": 29.995, + "6000": 30.0 + }, + "flow_in": { + "0": 2.200000001, + "1": 2.2784881489, + "2": 2.3569762991, + "3": 2.4351546912, + "4": 2.513333084, + "5": 2.5908931852, + "6": 2.6684532865, + "7": 2.7450890022, + "8": 2.8217247179, + "9": 2.8971336019, + "10": 2.9725424859, + "11": 3.0464269338, + "12": 3.1203113817, + "13": 3.1923798053, + "14": 3.2644482289, + "15": 3.3344162071, + "16": 3.4043841853, + "17": 3.4719755864, + "18": 3.5395669874, + "19": 3.6045150591, + "20": 3.6694631307, + "21": 3.7315115526, + "22": 3.7935599744, + "23": 3.8524638696, + "24": 3.9113677648, + "25": 3.9668946667, + "26": 4.0224215686, + "27": 4.0743523377, + "28": 4.1262831069, + "29": 4.1744127964, + "30": 4.2225424859, + "31": 4.2666811498, + "32": 4.3108198138, + "33": 4.3507932569, + "34": 4.3907667001, + "35": 4.4264171656, + "36": 4.4620676312, + "37": 4.4932544229, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2, + "201": 2.2784881494, + "202": 2.3569762988, + "203": 2.4351546914, + "204": 2.5133330839, + "205": 2.5908931852, + "206": 2.6684532865, + "207": 2.7450890022, + "208": 2.8217247179, + "209": 2.8971336019, + "210": 2.9725424859, + "211": 3.0464269338, + "212": 3.1203113817, + "213": 3.1923798053, + "214": 3.2644482289, + "215": 3.3344162071, + "216": 3.4043841853, + "217": 3.4719755864, + "218": 3.5395669874, + "219": 3.6045150591, + "220": 3.6694631307, + "221": 3.7315115526, + "222": 3.7935599744, + "223": 3.8524638696, + "224": 3.9113677648, + "225": 3.9668946667, + "226": 4.0224215686, + "227": 4.0743523377, + "228": 4.1262831069, + "229": 4.1744127964, + "230": 4.2225424859, + "231": 4.2666811498, + "232": 4.3108198138, + "233": 4.3507932569, + "234": 4.3907667001, + "235": 4.4264171656, + "236": 4.4620676312, + "237": 4.4932544229, + "238": 4.5244412147, + "239": 4.5510412527, + "240": 4.5776412907, + "241": 4.5995495968, + "242": 4.6214579028, + "243": 4.6385880148, + "244": 4.6557181268, + "245": 4.6680024401, + "246": 4.6802867533, + "247": 4.6876767872, + "248": 4.6950668211, + "249": 4.6975334105, + "250": 4.7, + "251": 4.6975334105, + "252": 4.6950668211, + "253": 4.6876767872, + "254": 4.6802867533, + "255": 4.6680024401, + "256": 4.6557181268, + "257": 4.6385880148, + "258": 4.6214579028, + "259": 4.5995495968, + "260": 4.5776412907, + "261": 4.5510412527, + "262": 4.5244412147, + "263": 4.4932544229, + "264": 4.4620676312, + "265": 4.4264171656, + "266": 4.3907667001, + "267": 4.3507932569, + "268": 4.3108198138, + "269": 4.2666811498, + "270": 4.2225424859, + "271": 4.1744127964, + "272": 4.1262831069, + "273": 4.0743523377, + "274": 4.0224215686, + "275": 3.9668946667, + "276": 3.9113677648, + "277": 3.8524638696, + "278": 3.7935599744, + "279": 3.7315115526, + "280": 3.6694631307, + "281": 3.6045150591, + "282": 3.5395669874, + "283": 3.4719755864, + "284": 3.4043841853, + "285": 3.3344162071, + "286": 3.2644482289, + "287": 3.1923798053, + "288": 3.1203113817, + "289": 3.0464269338, + "290": 2.9725424859, + "291": 2.8971336019, + "292": 2.8217247179, + "293": 2.7450890022, + "294": 2.6684532865, + "295": 2.5908931852, + "296": 2.5133330839, + "297": 2.4351546914, + "298": 2.3569762988, + "299": 2.2784881494, + "300": 2.2, + "301": 2.1215118506, + "302": 2.0430237012, + "303": 1.9648453086, + "304": 1.8866669161, + "305": 1.8091068148, + "306": 1.7315467135, + "307": 1.6549109978, + "308": 1.5782752821, + "309": 1.5028663981, + "310": 1.4274575141, + "311": 1.3535730662, + "312": 1.2796886183, + "313": 1.2076201947, + "314": 1.1355517711, + "315": 1.0655837929, + "316": 0.9956158147, + "317": 0.9280244136, + "318": 0.8604330126, + "319": 0.7954849409, + "320": 0.7305368693, + "321": 0.6684884474, + "322": 0.6064400256, + "323": 0.5475361304, + "324": 0.4886322352, + "325": 0.4331053333, + "326": 0.3775784314, + "327": 0.3256476623, + "328": 0.2737168931, + "329": 0.2255872036, + "330": 0.1774575141, + "331": 0.1333188502, + "332": 0.0891801862, + "333": 0.0492067431, + "334": 0.0092332999, + "335": -0.0264171656, + "336": -0.0620676312, + "337": -0.0932544229, + "338": -0.1244412147, + "339": -0.1510412527, + "340": -0.1776412907, + "341": -0.1995495968, + "342": -0.2214579028, + "343": -0.2385880148, + "344": -0.2557181268, + "345": -0.2680024401, + "346": -0.2802867533, + "347": -0.2876767872, + "348": -0.2950668211, + "349": -0.2975334105, + "350": -0.3, + "351": -0.2975334105, + "352": -0.2950668211, + "353": -0.2876767872, + "354": -0.2802867533, + "355": -0.2680024401, + "356": -0.2557181268, + "357": -0.2385880148, + "358": -0.2214579028, + "359": -0.1995495968, + "360": -0.1776412907, + "361": -0.1510412527, + "362": -0.1244412147, + "363": -0.0932544229, + "364": -0.0620676312, + "365": -0.0264171656, + "366": 0.0092332999, + "367": 0.0492067431, + "368": 0.0891801862, + "369": 0.1333188502, + "370": 0.1774575141, + "371": 0.2255872036, + "372": 0.2737168931, + "373": 0.3256476623, + "374": 0.3775784314, + "375": 0.4331053333, + "376": 0.4886322352, + "377": 0.5475361304, + "378": 0.6064400256, + "379": 0.6684884474, + "380": 0.7305368693, + "381": 0.7954849409, + "382": 0.8604330126, + "383": 0.9280244136, + "384": 0.9956158147, + "385": 1.0655837929, + "386": 1.1355517711, + "387": 1.2076201947, + "388": 1.2796886183, + "389": 1.3535730662, + "390": 1.4274575141, + "391": 1.5028663981, + "392": 1.5782752821, + "393": 1.6549109978, + "394": 1.7315467135, + "395": 1.8091068148, + "396": 1.8866669161, + "397": 1.9648453086, + "398": 2.0430237012, + "399": 2.1215118506, + "400": 2.2, + "401": 2.2784881494, + "402": 2.3569762988, + "403": 2.4351546914, + "404": 2.5133330839, + "405": 2.5908931852, + "406": 2.6684532865, + "407": 2.7450890022, + "408": 2.8217247179, + "409": 2.8971336019, + "410": 2.9725424859, + "411": 3.0464269338, + "412": 3.1203113817, + "413": 3.1923798053, + "414": 3.2644482289, + "415": 3.3344162071, + "416": 3.4043841853, + "417": 3.4719755864, + "418": 3.5395669874, + "419": 3.6045150591, + "420": 3.6694631307, + "421": 3.7315115526, + "422": 3.7935599744, + "423": 3.8524638696, + "424": 3.9113677648, + "425": 3.9668946667, + "426": 4.0224215686, + "427": 4.0743523377, + "428": 4.1262831069, + "429": 4.1744127964, + "430": 4.2225424859, + "431": 4.2666811498, + "432": 4.3108198138, + "433": 4.3507932569, + "434": 4.3907667001, + "435": 4.4264171656, + "436": 4.4620676312, + "437": 4.4932544229, + "438": 4.5244412147, + "439": 4.5510412527, + "440": 4.5776412907, + "441": 4.5995495968, + "442": 4.6214579028, + "443": 4.6385880148, + "444": 4.6557181268, + "445": 4.6680024401, + "446": 4.6802867533, + "447": 4.6876767872, + "448": 4.6950668211, + "449": 4.6975334105, + "450": 4.7, + "451": 4.6975334105, + "452": 4.6950668211, + "453": 4.6876767872, + "454": 4.6802867533, + "455": 4.6680024401, + "456": 4.6557181268, + "457": 4.6385880148, + "458": 4.6214579028, + "459": 4.5995495968, + "460": 4.5776412907, + "461": 4.5510412527, + "462": 4.5244412147, + "463": 4.4932544229, + "464": 4.4620676312, + "465": 4.4264171656, + "466": 4.3907667001, + "467": 4.3507932569, + "468": 4.3108198138, + "469": 4.2666811498, + "470": 4.2225424859, + "471": 4.1744127964, + "472": 4.1262831069, + "473": 4.0743523377, + "474": 4.0224215686, + "475": 3.9668946667, + "476": 3.9113677648, + "477": 3.8524638696, + "478": 3.7935599744, + "479": 3.7315115526, + "480": 3.6694631307, + "481": 3.6045150591, + "482": 3.5395669874, + "483": 3.4719755864, + "484": 3.4043841853, + "485": 3.3344162071, + "486": 3.2644482289, + "487": 3.1923798053, + "488": 3.1203113817, + "489": 3.0464269338, + "490": 2.9725424859, + "491": 2.8971336019, + "492": 2.8217247179, + "493": 2.7450890022, + "494": 2.6684532865, + "495": 2.5908931852, + "496": 2.5133330839, + "497": 2.4351546914, + "498": 2.3569762988, + "499": 2.2784881494, + "500": 2.2, + "501": 2.1215118506, + "502": 2.0430237012, + "503": 1.9648453086, + "504": 1.8866669161, + "505": 1.8091068148, + "506": 1.7315467135, + "507": 1.6549109978, + "508": 1.5782752821, + "509": 1.5028663981, + "510": 1.4274575141, + "511": 1.3535730662, + "512": 1.2796886183, + "513": 1.2076201947, + "514": 1.1355517711, + "515": 1.0655837929, + "516": 0.9956158147, + "517": 0.9280244136, + "518": 0.8604330126, + "519": 0.7954849409, + "520": 0.7305368693, + "521": 0.6684884474, + "522": 0.6064400256, + "523": 0.5475361304, + "524": 0.4886322352, + "525": 0.4331053333, + "526": 0.3775784314, + "527": 0.3256476623, + "528": 0.2737168931, + "529": 0.2255872036, + "530": 0.1774575141, + "531": 0.1333188502, + "532": 0.0891801862, + "533": 0.0492067431, + "534": 0.0092332999, + "535": -0.0264171656, + "536": -0.0620676312, + "537": -0.0932544229, + "538": -0.1244412147, + "539": -0.1510412527, + "540": -0.1776412907, + "541": -0.1995495968, + "542": -0.2214579028, + "543": -0.2385880148, + "544": -0.2557181268, + "545": -0.2680024401, + "546": -0.2802867533, + "547": -0.2876767872, + "548": -0.2950668211, + "549": -0.2975334105, + "550": -0.3, + "551": -0.2975334105, + "552": -0.2950668211, + "553": -0.2876767872, + "554": -0.2802867533, + "555": -0.2680024401, + "556": -0.2557181268, + "557": -0.2385880148, + "558": -0.2214579028, + "559": -0.1995495968, + "560": -0.1776412907, + "561": -0.1510412527, + "562": -0.1244412147, + "563": -0.0932544229, + "564": -0.0620676312, + "565": -0.0264171656, + "566": 0.0092332999, + "567": 0.0492067431, + "568": 0.0891801862, + "569": 0.1333188502, + "570": 0.1774575141, + "571": 0.2255872036, + "572": 0.2737168931, + "573": 0.3256476623, + "574": 0.3775784314, + "575": 0.4331053333, + "576": 0.4886322352, + "577": 0.5475361304, + "578": 0.6064400256, + "579": 0.6684884474, + "580": 0.7305368693, + "581": 0.7954849409, + "582": 0.8604330126, + "583": 0.9280244136, + "584": 0.9956158147, + "585": 1.0655837929, + "586": 1.1355517711, + "587": 1.2076201947, + "588": 1.2796886183, + "589": 1.3535730662, + "590": 1.4274575141, + "591": 1.5028663981, + "592": 1.5782752821, + "593": 1.6549109978, + "594": 1.7315467135, + "595": 1.8091068148, + "596": 1.8866669161, + "597": 1.9648453086, + "598": 2.0430237012, + "599": 2.1215118506, + "600": 2.2, + "601": 2.2784881494, + "602": 2.3569762988, + "603": 2.4351546914, + "604": 2.5133330839, + "605": 2.5908931852, + "606": 2.6684532865, + "607": 2.7450890022, + "608": 2.8217247179, + "609": 2.8971336019, + "610": 2.9725424859, + "611": 3.0464269338, + "612": 3.1203113817, + "613": 3.1923798053, + "614": 3.2644482289, + "615": 3.3344162071, + "616": 3.4043841853, + "617": 3.4719755864, + "618": 3.5395669874, + "619": 3.6045150591, + "620": 3.6694631307, + "621": 3.7315115526, + "622": 3.7935599744, + "623": 3.8524638696, + "624": 3.9113677648, + "625": 3.9668946667, + "626": 4.0224215686, + "627": 4.0743523377, + "628": 4.1262831069, + "629": 4.1744127964, + "630": 4.2225424859, + "631": 4.2666811498, + "632": 4.3108198138, + "633": 4.3507932569, + "634": 4.3907667001, + "635": 4.4264171656, + "636": 4.4620676312, + "637": 4.4932544229, + "638": 4.5244412147, + "639": 4.5510412527, + "640": 4.5776412907, + "641": 4.5995495968, + "642": 4.6214579028, + "643": 4.6385880148, + "644": 4.6557181268, + "645": 4.6680024401, + "646": 4.6802867533, + "647": 4.6876767872, + "648": 4.6950668211, + "649": 4.6975334105, + "650": 4.7, + "651": 4.6975334105, + "652": 4.6950668211, + "653": 4.6876767872, + "654": 4.6802867533, + "655": 4.6680024401, + "656": 4.6557181268, + "657": 4.6385880148, + "658": 4.6214579028, + "659": 4.5995495968, + "660": 4.5776412907, + "661": 4.5510412527, + "662": 4.5244412147, + "663": 4.4932544229, + "664": 4.4620676312, + "665": 4.4264171656, + "666": 4.3907667001, + "667": 4.3507932569, + "668": 4.3108198138, + "669": 4.2666811498, + "670": 4.2225424859, + "671": 4.1744127964, + "672": 4.1262831069, + "673": 4.0743523377, + "674": 4.0224215686, + "675": 3.9668946667, + "676": 3.9113677648, + "677": 3.8524638696, + "678": 3.7935599744, + "679": 3.7315115526, + "680": 3.6694631307, + "681": 3.6045150591, + "682": 3.5395669874, + "683": 3.4719755864, + "684": 3.4043841853, + "685": 3.3344162071, + "686": 3.2644482289, + "687": 3.1923798053, + "688": 3.1203113817, + "689": 3.0464269338, + "690": 2.9725424859, + "691": 2.8971336019, + "692": 2.8217247179, + "693": 2.7450890022, + "694": 2.6684532865, + "695": 2.5908931852, + "696": 2.5133330839, + "697": 2.4351546914, + "698": 2.3569762988, + "699": 2.2784881494, + "700": 2.2, + "701": 2.1215118506, + "702": 2.0430237012, + "703": 1.9648453086, + "704": 1.8866669161, + "705": 1.8091068148, + "706": 1.7315467135, + "707": 1.6549109978, + "708": 1.5782752821, + "709": 1.5028663981, + "710": 1.4274575141, + "711": 1.3535730662, + "712": 1.2796886183, + "713": 1.2076201947, + "714": 1.1355517711, + "715": 1.0655837929, + "716": 0.9956158147, + "717": 0.9280244136, + "718": 0.8604330126, + "719": 0.7954849409, + "720": 0.7305368693, + "721": 0.6684884474, + "722": 0.6064400256, + "723": 0.5475361304, + "724": 0.4886322352, + "725": 0.4331053333, + "726": 0.3775784314, + "727": 0.3256476623, + "728": 0.2737168931, + "729": 0.2255872036, + "730": 0.1774575141, + "731": 0.1333188502, + "732": 0.0891801862, + "733": 0.0492067431, + "734": 0.0092332999, + "735": -0.0264171656, + "736": -0.0620676312, + "737": -0.0932544229, + "738": -0.1244412147, + "739": -0.1510412527, + "740": -0.1776412907, + "741": -0.1995495968, + "742": -0.2214579028, + "743": -0.2385880148, + "744": -0.2557181268, + "745": -0.2680024401, + "746": -0.2802867533, + "747": -0.2876767872, + "748": -0.2950668211, + "749": -0.2975334105, + "750": -0.3, + "751": -0.2975334105, + "752": -0.2950668211, + "753": -0.2876767872, + "754": -0.2802867533, + "755": -0.2680024401, + "756": -0.2557181268, + "757": -0.2385880148, + "758": -0.2214579028, + "759": -0.1995495968, + "760": -0.1776412907, + "761": -0.1510412527, + "762": -0.1244412147, + "763": -0.0932544229, + "764": -0.0620676312, + "765": -0.0264171656, + "766": 0.0092332999, + "767": 0.0492067431, + "768": 0.0891801862, + "769": 0.1333188502, + "770": 0.1774575141, + "771": 0.2255872036, + "772": 0.2737168931, + "773": 0.3256476623, + "774": 0.3775784314, + "775": 0.4331053333, + "776": 0.4886322352, + "777": 0.5475361304, + "778": 0.6064400256, + "779": 0.6684884474, + "780": 0.7305368693, + "781": 0.7954849409, + "782": 0.8604330126, + "783": 0.9280244136, + "784": 0.9956158147, + "785": 1.0655837929, + "786": 1.1355517711, + "787": 1.2076201947, + "788": 1.2796886183, + "789": 1.3535730662, + "790": 1.4274575141, + "791": 1.5028663981, + "792": 1.5782752821, + "793": 1.6549109978, + "794": 1.7315467135, + "795": 1.8091068148, + "796": 1.8866669161, + "797": 1.9648453086, + "798": 2.0430237012, + "799": 2.1215118506, + "800": 2.2, + "801": 2.2784881494, + "802": 2.3569762988, + "803": 2.4351546914, + "804": 2.5133330839, + "805": 2.5908931852, + "806": 2.6684532865, + "807": 2.7450890022, + "808": 2.8217247179, + "809": 2.8971336019, + "810": 2.9725424859, + "811": 3.0464269338, + "812": 3.1203113817, + "813": 3.1923798053, + "814": 3.2644482289, + "815": 3.3344162071, + "816": 3.4043841853, + "817": 3.4719755864, + "818": 3.5395669874, + "819": 3.6045150591, + "820": 3.6694631307, + "821": 3.7315115526, + "822": 3.7935599744, + "823": 3.8524638696, + "824": 3.9113677648, + "825": 3.9668946667, + "826": 4.0224215686, + "827": 4.0743523377, + "828": 4.1262831069, + "829": 4.1744127964, + "830": 4.2225424859, + "831": 4.2666811498, + "832": 4.3108198138, + "833": 4.3507932569, + "834": 4.3907667001, + "835": 4.4264171656, + "836": 4.4620676312, + "837": 4.4932544229, + "838": 4.5244412147, + "839": 4.5510412527, + "840": 4.5776412907, + "841": 4.5995495968, + "842": 4.6214579028, + "843": 4.6385880148, + "844": 4.6557181268, + "845": 4.6680024401, + "846": 4.6802867533, + "847": 4.6876767872, + "848": 4.6950668211, + "849": 4.6975334105, + "850": 4.7, + "851": 4.6975334105, + "852": 4.6950668211, + "853": 4.6876767872, + "854": 4.6802867533, + "855": 4.6680024401, + "856": 4.6557181268, + "857": 4.6385880148, + "858": 4.6214579028, + "859": 4.5995495968, + "860": 4.5776412907, + "861": 4.5510412527, + "862": 4.5244412147, + "863": 4.4932544229, + "864": 4.4620676312, + "865": 4.4264171656, + "866": 4.3907667001, + "867": 4.3507932569, + "868": 4.3108198138, + "869": 4.2666811498, + "870": 4.2225424859, + "871": 4.1744127964, + "872": 4.1262831069, + "873": 4.0743523377, + "874": 4.0224215686, + "875": 3.9668946667, + "876": 3.9113677648, + "877": 3.8524638696, + "878": 3.7935599744, + "879": 3.7315115526, + "880": 3.6694631307, + "881": 3.6045150591, + "882": 3.5395669874, + "883": 3.4719755864, + "884": 3.4043841853, + "885": 3.3344162071, + "886": 3.2644482289, + "887": 3.1923798053, + "888": 3.1203113817, + "889": 3.0464269338, + "890": 2.9725424859, + "891": 2.8971336019, + "892": 2.8217247179, + "893": 2.7450890022, + "894": 2.6684532865, + "895": 2.5908931852, + "896": 2.5133330839, + "897": 2.4351546914, + "898": 2.3569762988, + "899": 2.2784881494, + "900": 2.2, + "901": 2.1215118506, + "902": 2.0430237012, + "903": 1.9648453086, + "904": 1.8866669161, + "905": 1.8091068148, + "906": 1.7315467135, + "907": 1.6549109978, + "908": 1.5782752821, + "909": 1.5028663981, + "910": 1.4274575141, + "911": 1.3535730662, + "912": 1.2796886183, + "913": 1.2076201947, + "914": 1.1355517711, + "915": 1.0655837929, + "916": 0.9956158147, + "917": 0.9280244136, + "918": 0.8604330126, + "919": 0.7954849409, + "920": 0.7305368693, + "921": 0.6684884474, + "922": 0.6064400256, + "923": 0.5475361304, + "924": 0.4886322352, + "925": 0.4331053333, + "926": 0.3775784314, + "927": 0.3256476623, + "928": 0.2737168931, + "929": 0.2255872036, + "930": 0.1774575141, + "931": 0.1333188502, + "932": 0.0891801862, + "933": 0.0492067431, + "934": 0.0092332999, + "935": -0.0264171656, + "936": -0.0620676312, + "937": -0.0932544229, + "938": -0.1244412147, + "939": -0.1510412527, + "940": -0.1776412907, + "941": -0.1995495968, + "942": -0.2214579028, + "943": -0.2385880148, + "944": -0.2557181268, + "945": -0.2680024401, + "946": -0.2802867533, + "947": -0.2876767872, + "948": -0.2950668211, + "949": -0.2975334105, + "950": -0.3, + "951": -0.2975334105, + "952": -0.2950668211, + "953": -0.2876767872, + "954": -0.2802867533, + "955": -0.2680024401, + "956": -0.2557181268, + "957": -0.2385880148, + "958": -0.2214579028, + "959": -0.1995495968, + "960": -0.1776412907, + "961": -0.1510412527, + "962": -0.1244412147, + "963": -0.0932544229, + "964": -0.0620676312, + "965": -0.0264171656, + "966": 0.0092332999, + "967": 0.0492067431, + "968": 0.0891801862, + "969": 0.1333188502, + "970": 0.1774575141, + "971": 0.2255872036, + "972": 0.2737168931, + "973": 0.3256476623, + "974": 0.3775784314, + "975": 0.4331053333, + "976": 0.4886322352, + "977": 0.5475361304, + "978": 0.6064400256, + "979": 0.6684884474, + "980": 0.7305368693, + "981": 0.7954849409, + "982": 0.8604330126, + "983": 0.9280244136, + "984": 0.9956158147, + "985": 1.0655837929, + "986": 1.1355517711, + "987": 1.2076201947, + "988": 1.2796886183, + "989": 1.3535730662, + "990": 1.4274575141, + "991": 1.5028663981, + "992": 1.5782752821, + "993": 1.6549109978, + "994": 1.7315467135, + "995": 1.8091068148, + "996": 1.8866669161, + "997": 1.9648453086, + "998": 2.0430237012, + "999": 2.1215118506, + "1000": 2.2, + "1001": 2.2784881494, + "1002": 2.3569762988, + "1003": 2.4351546914, + "1004": 2.5133330839, + "1005": 2.5908931852, + "1006": 2.6684532865, + "1007": 2.7450890022, + "1008": 2.8217247179, + "1009": 2.8971336019, + "1010": 2.9725424859, + "1011": 3.0464269338, + "1012": 3.1203113817, + "1013": 3.1923798053, + "1014": 3.2644482289, + "1015": 3.3344162071, + "1016": 3.4043841853, + "1017": 3.4719755864, + "1018": 3.5395669874, + "1019": 3.6045150591, + "1020": 3.6694631307, + "1021": 3.7315115526, + "1022": 3.7935599744, + "1023": 3.8524638696, + "1024": 3.9113677648, + "1025": 3.9668946667, + "1026": 4.0224215686, + "1027": 4.0743523377, + "1028": 4.1262831069, + "1029": 4.1744127964, + "1030": 4.2225424859, + "1031": 4.2666811498, + "1032": 4.3108198138, + "1033": 4.3507932569, + "1034": 4.3907667001, + "1035": 4.4264171656, + "1036": 4.4620676312, + "1037": 4.4932544229, + "1038": 4.5244412147, + "1039": 4.5510412527, + "1040": 4.5776412907, + "1041": 4.5995495968, + "1042": 4.6214579028, + "1043": 4.6385880148, + "1044": 4.6557181268, + "1045": 4.6680024401, + "1046": 4.6802867533, + "1047": 4.6876767872, + "1048": 4.6950668211, + "1049": 4.6975334105, + "1050": 4.7, + "1051": 4.6975334105, + "1052": 4.6950668211, + "1053": 4.6876767872, + "1054": 4.6802867533, + "1055": 4.6680024401, + "1056": 4.6557181268, + "1057": 4.6385880148, + "1058": 4.6214579028, + "1059": 4.5995495968, + "1060": 4.5776412907, + "1061": 4.5510412527, + "1062": 4.5244412147, + "1063": 4.4932544229, + "1064": 4.4620676312, + "1065": 4.4264171656, + "1066": 4.3907667001, + "1067": 4.3507932569, + "1068": 4.3108198138, + "1069": 4.2666811498, + "1070": 4.2225424859, + "1071": 4.1744127964, + "1072": 4.1262831069, + "1073": 4.0743523377, + "1074": 4.0224215686, + "1075": 3.9668946667, + "1076": 3.9113677648, + "1077": 3.8524638696, + "1078": 3.7935599744, + "1079": 3.7315115526, + "1080": 3.6694631307, + "1081": 3.6045150591, + "1082": 3.5395669874, + "1083": 3.4719755864, + "1084": 3.4043841853, + "1085": 3.3344162071, + "1086": 3.2644482289, + "1087": 3.1923798053, + "1088": 3.1203113817, + "1089": 3.0464269338, + "1090": 2.9725424859, + "1091": 2.8971336019, + "1092": 2.8217247179, + "1093": 2.7450890022, + "1094": 2.6684532865, + "1095": 2.5908931852, + "1096": 2.5133330839, + "1097": 2.4351546914, + "1098": 2.3569762988, + "1099": 2.2784881494, + "1100": 2.2, + "1101": 2.1215118506, + "1102": 2.0430237012, + "1103": 1.9648453086, + "1104": 1.8866669161, + "1105": 1.8091068148, + "1106": 1.7315467135, + "1107": 1.6549109978, + "1108": 1.5782752821, + "1109": 1.5028663981, + "1110": 1.4274575141, + "1111": 1.3535730662, + "1112": 1.2796886183, + "1113": 1.2076201947, + "1114": 1.1355517711, + "1115": 1.0655837929, + "1116": 0.9956158147, + "1117": 0.9280244136, + "1118": 0.8604330126, + "1119": 0.7954849409, + "1120": 0.7305368693, + "1121": 0.6684884474, + "1122": 0.6064400256, + "1123": 0.5475361304, + "1124": 0.4886322352, + "1125": 0.4331053333, + "1126": 0.3775784314, + "1127": 0.3256476623, + "1128": 0.2737168931, + "1129": 0.2255872036, + "1130": 0.1774575141, + "1131": 0.1333188502, + "1132": 0.0891801862, + "1133": 0.0492067431, + "1134": 0.0092332999, + "1135": -0.0264171656, + "1136": -0.0620676312, + "1137": -0.0932544229, + "1138": -0.1244412147, + "1139": -0.1510412527, + "1140": -0.1776412907, + "1141": -0.1995495968, + "1142": -0.2214579028, + "1143": -0.2385880148, + "1144": -0.2557181268, + "1145": -0.2680024401, + "1146": -0.2802867533, + "1147": -0.2876767872, + "1148": -0.2950668211, + "1149": -0.2975334105, + "1150": -0.3, + "1151": -0.2975334105, + "1152": -0.2950668211, + "1153": -0.2876767872, + "1154": -0.2802867533, + "1155": -0.2680024401, + "1156": -0.2557181268, + "1157": -0.2385880148, + "1158": -0.2214579028, + "1159": -0.1995495968, + "1160": -0.1776412907, + "1161": -0.1510412527, + "1162": -0.1244412147, + "1163": -0.0932544229, + "1164": -0.0620676312, + "1165": -0.0264171656, + "1166": 0.0092332999, + "1167": 0.0492067431, + "1168": 0.0891801862, + "1169": 0.1333188502, + "1170": 0.1774575141, + "1171": 0.2255872036, + "1172": 0.2737168931, + "1173": 0.3256476623, + "1174": 0.3775784314, + "1175": 0.4331053333, + "1176": 0.4886322352, + "1177": 0.5475361304, + "1178": 0.6064400256, + "1179": 0.6684884474, + "1180": 0.7305368693, + "1181": 0.7954849409, + "1182": 0.8604330126, + "1183": 0.9280244136, + "1184": 0.9956158147, + "1185": 1.0655837929, + "1186": 1.1355517711, + "1187": 1.2076201947, + "1188": 1.2796886183, + "1189": 1.3535730662, + "1190": 1.4274575141, + "1191": 1.5028663981, + "1192": 1.5782752821, + "1193": 1.6549109978, + "1194": 1.7315467135, + "1195": 1.8091068148, + "1196": 1.8866669161, + "1197": 1.9648453086, + "1198": 2.0430237012, + "1199": 2.1215118506, + "1200": 2.2, + "1201": 2.2784881494, + "1202": 2.3569762988, + "1203": 2.4351546914, + "1204": 2.5133330839, + "1205": 2.5908931852, + "1206": 2.6684532865, + "1207": 2.7450890022, + "1208": 2.8217247179, + "1209": 2.8971336019, + "1210": 2.9725424859, + "1211": 3.0464269338, + "1212": 3.1203113817, + "1213": 3.1923798053, + "1214": 3.2644482289, + "1215": 3.3344162071, + "1216": 3.4043841853, + "1217": 3.4719755864, + "1218": 3.5395669874, + "1219": 3.6045150591, + "1220": 3.6694631307, + "1221": 3.7315115526, + "1222": 3.7935599744, + "1223": 3.8524638696, + "1224": 3.9113677648, + "1225": 3.9668946667, + "1226": 4.0224215686, + "1227": 4.0743523377, + "1228": 4.1262831069, + "1229": 4.1744127964, + "1230": 4.2225424859, + "1231": 4.2666811498, + "1232": 4.3108198138, + "1233": 4.3507932569, + "1234": 4.3907667001, + "1235": 4.4264171656, + "1236": 4.4620676312, + "1237": 4.4932544229, + "1238": 4.5244412147, + "1239": 4.5510412527, + "1240": 4.5776412907, + "1241": 4.5995495968, + "1242": 4.6214579028, + "1243": 4.6385880148, + "1244": 4.6557181268, + "1245": 4.6680024401, + "1246": 4.6802867533, + "1247": 4.6876767872, + "1248": 4.6950668211, + "1249": 4.6975334105, + "1250": 4.7, + "1251": 4.6975334105, + "1252": 4.6950668211, + "1253": 4.6876767872, + "1254": 4.6802867533, + "1255": 4.6680024401, + "1256": 4.6557181268, + "1257": 4.6385880148, + "1258": 4.6214579028, + "1259": 4.5995495968, + "1260": 4.5776412907, + "1261": 4.5510412527, + "1262": 4.5244412147, + "1263": 4.4932544229, + "1264": 4.4620676312, + "1265": 4.4264171656, + "1266": 4.3907667001, + "1267": 4.3507932569, + "1268": 4.3108198138, + "1269": 4.2666811498, + "1270": 4.2225424859, + "1271": 4.1744127964, + "1272": 4.1262831069, + "1273": 4.0743523377, + "1274": 4.0224215686, + "1275": 3.9668946667, + "1276": 3.9113677648, + "1277": 3.8524638696, + "1278": 3.7935599744, + "1279": 3.7315115526, + "1280": 3.6694631307, + "1281": 3.6045150591, + "1282": 3.5395669874, + "1283": 3.4719755864, + "1284": 3.4043841853, + "1285": 3.3344162071, + "1286": 3.2644482289, + "1287": 3.1923798053, + "1288": 3.1203113817, + "1289": 3.0464269338, + "1290": 2.9725424859, + "1291": 2.8971336019, + "1292": 2.8217247179, + "1293": 2.7450890022, + "1294": 2.6684532865, + "1295": 2.5908931852, + "1296": 2.5133330839, + "1297": 2.4351546914, + "1298": 2.3569762988, + "1299": 2.2784881494, + "1300": 2.2, + "1301": 2.1215118506, + "1302": 2.0430237012, + "1303": 1.9648453086, + "1304": 1.8866669161, + "1305": 1.8091068148, + "1306": 1.7315467135, + "1307": 1.6549109978, + "1308": 1.5782752821, + "1309": 1.5028663981, + "1310": 1.4274575141, + "1311": 1.3535730662, + "1312": 1.2796886183, + "1313": 1.2076201947, + "1314": 1.1355517711, + "1315": 1.0655837929, + "1316": 0.9956158147, + "1317": 0.9280244136, + "1318": 0.8604330126, + "1319": 0.7954849409, + "1320": 0.7305368693, + "1321": 0.6684884474, + "1322": 0.6064400256, + "1323": 0.5475361304, + "1324": 0.4886322352, + "1325": 0.4331053333, + "1326": 0.3775784314, + "1327": 0.3256476623, + "1328": 0.2737168931, + "1329": 0.2255872036, + "1330": 0.1774575141, + "1331": 0.1333188502, + "1332": 0.0891801862, + "1333": 0.0492067431, + "1334": 0.0092332999, + "1335": -0.0264171656, + "1336": -0.0620676312, + "1337": -0.0932544229, + "1338": -0.1244412147, + "1339": -0.1510412527, + "1340": -0.1776412907, + "1341": -0.1995495968, + "1342": -0.2214579028, + "1343": -0.2385880148, + "1344": -0.2557181268, + "1345": -0.2680024401, + "1346": -0.2802867533, + "1347": -0.2876767872, + "1348": -0.2950668211, + "1349": -0.2975334105, + "1350": -0.3, + "1351": -0.2975334105, + "1352": -0.2950668211, + "1353": -0.2876767872, + "1354": -0.2802867533, + "1355": -0.2680024401, + "1356": -0.2557181268, + "1357": -0.2385880148, + "1358": -0.2214579028, + "1359": -0.1995495968, + "1360": -0.1776412907, + "1361": -0.1510412527, + "1362": -0.1244412147, + "1363": -0.0932544229, + "1364": -0.0620676312, + "1365": -0.0264171656, + "1366": 0.0092332999, + "1367": 0.0492067431, + "1368": 0.0891801862, + "1369": 0.1333188502, + "1370": 0.1774575141, + "1371": 0.2255872036, + "1372": 0.2737168931, + "1373": 0.3256476623, + "1374": 0.3775784314, + "1375": 0.4331053333, + "1376": 0.4886322352, + "1377": 0.5475361304, + "1378": 0.6064400256, + "1379": 0.6684884474, + "1380": 0.7305368693, + "1381": 0.7954849409, + "1382": 0.8604330126, + "1383": 0.9280244136, + "1384": 0.9956158147, + "1385": 1.0655837929, + "1386": 1.1355517711, + "1387": 1.2076201947, + "1388": 1.2796886183, + "1389": 1.3535730662, + "1390": 1.4274575141, + "1391": 1.5028663981, + "1392": 1.5782752821, + "1393": 1.6549109978, + "1394": 1.7315467135, + "1395": 1.8091068148, + "1396": 1.8866669161, + "1397": 1.9648453086, + "1398": 2.0430237012, + "1399": 2.1215118506, + "1400": 2.2, + "1401": 2.2784881494, + "1402": 2.3569762988, + "1403": 2.4351546914, + "1404": 2.5133330839, + "1405": 2.5908931852, + "1406": 2.6684532865, + "1407": 2.7450890022, + "1408": 2.8217247179, + "1409": 2.8971336019, + "1410": 2.9725424859, + "1411": 3.0464269338, + "1412": 3.1203113817, + "1413": 3.1923798053, + "1414": 3.2644482289, + "1415": 3.3344162071, + "1416": 3.4043841853, + "1417": 3.4719755864, + "1418": 3.5395669874, + "1419": 3.6045150591, + "1420": 3.6694631307, + "1421": 3.7315115526, + "1422": 3.7935599744, + "1423": 3.8524638696, + "1424": 3.9113677648, + "1425": 3.9668946667, + "1426": 4.0224215686, + "1427": 4.0743523377, + "1428": 4.1262831069, + "1429": 4.1744127964, + "1430": 4.2225424859, + "1431": 4.2666811498, + "1432": 4.3108198138, + "1433": 4.3507932569, + "1434": 4.3907667001, + "1435": 4.4264171656, + "1436": 4.4620676312, + "1437": 4.4932544229, + "1438": 4.5244412147, + "1439": 4.5510412527, + "1440": 4.5776412907, + "1441": 4.5995495968, + "1442": 4.6214579028, + "1443": 4.6385880148, + "1444": 4.6557181268, + "1445": 4.6680024401, + "1446": 4.6802867533, + "1447": 4.6876767872, + "1448": 4.6950668211, + "1449": 4.6975334105, + "1450": 4.7, + "1451": 4.6975334105, + "1452": 4.6950668211, + "1453": 4.6876767872, + "1454": 4.6802867533, + "1455": 4.6680024401, + "1456": 4.6557181268, + "1457": 4.6385880148, + "1458": 4.6214579028, + "1459": 4.5995495968, + "1460": 4.5776412907, + "1461": 4.5510412527, + "1462": 4.5244412147, + "1463": 4.4932544229, + "1464": 4.4620676312, + "1465": 4.4264171656, + "1466": 4.3907667001, + "1467": 4.3507932569, + "1468": 4.3108198138, + "1469": 4.2666811498, + "1470": 4.2225424859, + "1471": 4.1744127964, + "1472": 4.1262831069, + "1473": 4.0743523377, + "1474": 4.0224215686, + "1475": 3.9668946667, + "1476": 3.9113677648, + "1477": 3.8524638696, + "1478": 3.7935599744, + "1479": 3.7315115526, + "1480": 3.6694631307, + "1481": 3.6045150591, + "1482": 3.5395669874, + "1483": 3.4719755864, + "1484": 3.4043841853, + "1485": 3.3344162071, + "1486": 3.2644482289, + "1487": 3.1923798053, + "1488": 3.1203113817, + "1489": 3.0464269338, + "1490": 2.9725424859, + "1491": 2.8971336019, + "1492": 2.8217247179, + "1493": 2.7450890022, + "1494": 2.6684532865, + "1495": 2.5908931852, + "1496": 2.5133330839, + "1497": 2.4351546914, + "1498": 2.3569762988, + "1499": 2.2784881494, + "1500": 2.2, + "1501": 2.1215118506, + "1502": 2.0430237012, + "1503": 1.9648453086, + "1504": 1.8866669161, + "1505": 1.8091068148, + "1506": 1.7315467135, + "1507": 1.6549109978, + "1508": 1.5782752821, + "1509": 1.5028663981, + "1510": 1.4274575141, + "1511": 1.3535730662, + "1512": 1.2796886183, + "1513": 1.2076201947, + "1514": 1.1355517711, + "1515": 1.0655837929, + "1516": 0.9956158147, + "1517": 0.9280244136, + "1518": 0.8604330126, + "1519": 0.7954849409, + "1520": 0.7305368693, + "1521": 0.6684884474, + "1522": 0.6064400256, + "1523": 0.5475361304, + "1524": 0.4886322352, + "1525": 0.4331053333, + "1526": 0.3775784314, + "1527": 0.3256476623, + "1528": 0.2737168931, + "1529": 0.2255872036, + "1530": 0.1774575141, + "1531": 0.1333188502, + "1532": 0.0891801862, + "1533": 0.0492067431, + "1534": 0.0092332999, + "1535": -0.0264171656, + "1536": -0.0620676312, + "1537": -0.0932544229, + "1538": -0.1244412147, + "1539": -0.1510412527, + "1540": -0.1776412907, + "1541": -0.1995495968, + "1542": -0.2214579028, + "1543": -0.2385880148, + "1544": -0.2557181268, + "1545": -0.2680024401, + "1546": -0.2802867533, + "1547": -0.2876767872, + "1548": -0.2950668211, + "1549": -0.2975334105, + "1550": -0.3, + "1551": -0.2975334105, + "1552": -0.2950668211, + "1553": -0.2876767872, + "1554": -0.2802867533, + "1555": -0.2680024401, + "1556": -0.2557181268, + "1557": -0.2385880148, + "1558": -0.2214579028, + "1559": -0.1995495968, + "1560": -0.1776412907, + "1561": -0.1510412527, + "1562": -0.1244412147, + "1563": -0.0932544229, + "1564": -0.0620676312, + "1565": -0.0264171656, + "1566": 0.0092332999, + "1567": 0.0492067431, + "1568": 0.0891801862, + "1569": 0.1333188502, + "1570": 0.1774575141, + "1571": 0.2255872036, + "1572": 0.2737168931, + "1573": 0.3256476623, + "1574": 0.3775784314, + "1575": 0.4331053333, + "1576": 0.4886322352, + "1577": 0.5475361304, + "1578": 0.6064400256, + "1579": 0.6684884474, + "1580": 0.7305368693, + "1581": 0.7954849409, + "1582": 0.8604330126, + "1583": 0.9280244136, + "1584": 0.9956158147, + "1585": 1.0655837929, + "1586": 1.1355517711, + "1587": 1.2076201947, + "1588": 1.2796886183, + "1589": 1.3535730662, + "1590": 1.4274575141, + "1591": 1.5028663981, + "1592": 1.5782752821, + "1593": 1.6549109978, + "1594": 1.7315467135, + "1595": 1.8091068148, + "1596": 1.8866669161, + "1597": 1.9648453086, + "1598": 2.0430237012, + "1599": 2.1215118506, + "1600": 2.2, + "1601": 2.2784881494, + "1602": 2.3569762988, + "1603": 2.4351546914, + "1604": 2.5133330839, + "1605": 2.5908931852, + "1606": 2.6684532865, + "1607": 2.7450890022, + "1608": 2.8217247179, + "1609": 2.8971336019, + "1610": 2.9725424859, + "1611": 3.0464269338, + "1612": 3.1203113817, + "1613": 3.1923798053, + "1614": 3.2644482289, + "1615": 3.3344162071, + "1616": 3.4043841853, + "1617": 3.4719755864, + "1618": 3.5395669874, + "1619": 3.6045150591, + "1620": 3.6694631307, + "1621": 3.7315115526, + "1622": 3.7935599744, + "1623": 3.8524638696, + "1624": 3.9113677648, + "1625": 3.9668946667, + "1626": 4.0224215686, + "1627": 4.0743523377, + "1628": 4.1262831069, + "1629": 4.1744127964, + "1630": 4.2225424859, + "1631": 4.2666811498, + "1632": 4.3108198138, + "1633": 4.3507932569, + "1634": 4.3907667001, + "1635": 4.4264171656, + "1636": 4.4620676312, + "1637": 4.4932544229, + "1638": 4.5244412147, + "1639": 4.5510412527, + "1640": 4.5776412907, + "1641": 4.5995495968, + "1642": 4.6214579028, + "1643": 4.6385880148, + "1644": 4.6557181268, + "1645": 4.6680024401, + "1646": 4.6802867533, + "1647": 4.6876767872, + "1648": 4.6950668211, + "1649": 4.6975334105, + "1650": 4.7, + "1651": 4.6975334105, + "1652": 4.6950668211, + "1653": 4.6876767872, + "1654": 4.6802867533, + "1655": 4.6680024401, + "1656": 4.6557181268, + "1657": 4.6385880148, + "1658": 4.6214579028, + "1659": 4.5995495968, + "1660": 4.5776412907, + "1661": 4.5510412527, + "1662": 4.5244412147, + "1663": 4.4932544229, + "1664": 4.4620676312, + "1665": 4.4264171656, + "1666": 4.3907667001, + "1667": 4.3507932569, + "1668": 4.3108198138, + "1669": 4.2666811498, + "1670": 4.2225424859, + "1671": 4.1744127964, + "1672": 4.1262831069, + "1673": 4.0743523377, + "1674": 4.0224215686, + "1675": 3.9668946667, + "1676": 3.9113677648, + "1677": 3.8524638696, + "1678": 3.7935599744, + "1679": 3.7315115526, + "1680": 3.6694631307, + "1681": 3.6045150591, + "1682": 3.5395669874, + "1683": 3.4719755864, + "1684": 3.4043841853, + "1685": 3.3344162071, + "1686": 3.2644482289, + "1687": 3.1923798053, + "1688": 3.1203113817, + "1689": 3.0464269338, + "1690": 2.9725424859, + "1691": 2.8971336019, + "1692": 2.8217247179, + "1693": 2.7450890022, + "1694": 2.6684532865, + "1695": 2.5908931852, + "1696": 2.5133330839, + "1697": 2.4351546914, + "1698": 2.3569762988, + "1699": 2.2784881494, + "1700": 2.2, + "1701": 2.1215118506, + "1702": 2.0430237012, + "1703": 1.9648453086, + "1704": 1.8866669161, + "1705": 1.8091068148, + "1706": 1.7315467135, + "1707": 1.6549109978, + "1708": 1.5782752821, + "1709": 1.5028663981, + "1710": 1.4274575141, + "1711": 1.3535730662, + "1712": 1.2796886183, + "1713": 1.2076201947, + "1714": 1.1355517711, + "1715": 1.0655837929, + "1716": 0.9956158147, + "1717": 0.9280244136, + "1718": 0.8604330126, + "1719": 0.7954849409, + "1720": 0.7305368693, + "1721": 0.6684884474, + "1722": 0.6064400256, + "1723": 0.5475361304, + "1724": 0.4886322352, + "1725": 0.4331053333, + "1726": 0.3775784314, + "1727": 0.3256476623, + "1728": 0.2737168931, + "1729": 0.2255872036, + "1730": 0.1774575141, + "1731": 0.1333188502, + "1732": 0.0891801862, + "1733": 0.0492067431, + "1734": 0.0092332999, + "1735": -0.0264171656, + "1736": -0.0620676312, + "1737": -0.0932544229, + "1738": -0.1244412147, + "1739": -0.1510412527, + "1740": -0.1776412907, + "1741": -0.1995495968, + "1742": -0.2214579028, + "1743": -0.2385880148, + "1744": -0.2557181268, + "1745": -0.2680024401, + "1746": -0.2802867533, + "1747": -0.2876767872, + "1748": -0.2950668211, + "1749": -0.2975334105, + "1750": -0.3, + "1751": -0.2975334105, + "1752": -0.2950668211, + "1753": -0.2876767872, + "1754": -0.2802867533, + "1755": -0.2680024401, + "1756": -0.2557181268, + "1757": -0.2385880148, + "1758": -0.2214579028, + "1759": -0.1995495968, + "1760": -0.1776412907, + "1761": -0.1510412527, + "1762": -0.1244412147, + "1763": -0.0932544229, + "1764": -0.0620676312, + "1765": -0.0264171656, + "1766": 0.0092332999, + "1767": 0.0492067431, + "1768": 0.0891801862, + "1769": 0.1333188502, + "1770": 0.1774575141, + "1771": 0.2255872036, + "1772": 0.2737168931, + "1773": 0.3256476623, + "1774": 0.3775784314, + "1775": 0.4331053333, + "1776": 0.4886322352, + "1777": 0.5475361304, + "1778": 0.6064400256, + "1779": 0.6684884474, + "1780": 0.7305368693, + "1781": 0.7954849409, + "1782": 0.8604330126, + "1783": 0.9280244136, + "1784": 0.9956158147, + "1785": 1.0655837929, + "1786": 1.1355517711, + "1787": 1.2076201947, + "1788": 1.2796886183, + "1789": 1.3535730662, + "1790": 1.4274575141, + "1791": 1.5028663981, + "1792": 1.5782752821, + "1793": 1.6549109978, + "1794": 1.7315467135, + "1795": 1.8091068148, + "1796": 1.8866669161, + "1797": 1.9648453086, + "1798": 2.0430237012, + "1799": 2.1215118506, + "1800": 2.2, + "1801": 2.2784881494, + "1802": 2.3569762988, + "1803": 2.4351546914, + "1804": 2.5133330839, + "1805": 2.5908931852, + "1806": 2.6684532865, + "1807": 2.7450890022, + "1808": 2.8217247179, + "1809": 2.8971336019, + "1810": 2.9725424859, + "1811": 3.0464269338, + "1812": 3.1203113817, + "1813": 3.1923798053, + "1814": 3.2644482289, + "1815": 3.3344162071, + "1816": 3.4043841853, + "1817": 3.4719755864, + "1818": 3.5395669874, + "1819": 3.6045150591, + "1820": 3.6694631307, + "1821": 3.7315115526, + "1822": 3.7935599744, + "1823": 3.8524638696, + "1824": 3.9113677648, + "1825": 3.9668946667, + "1826": 4.0224215686, + "1827": 4.0743523377, + "1828": 4.1262831069, + "1829": 4.1744127964, + "1830": 4.2225424859, + "1831": 4.2666811498, + "1832": 4.3108198138, + "1833": 4.3507932569, + "1834": 4.3907667001, + "1835": 4.4264171656, + "1836": 4.4620676312, + "1837": 4.4932544229, + "1838": 4.5244412147, + "1839": 4.5510412527, + "1840": 4.5776412907, + "1841": 4.5995495968, + "1842": 4.6214579028, + "1843": 4.6385880148, + "1844": 4.6557181268, + "1845": 4.6680024401, + "1846": 4.6802867533, + "1847": 4.6876767872, + "1848": 4.6950668211, + "1849": 4.6975334105, + "1850": 4.7, + "1851": 4.6975334105, + "1852": 4.6950668211, + "1853": 4.6876767872, + "1854": 4.6802867533, + "1855": 4.6680024401, + "1856": 4.6557181268, + "1857": 4.6385880148, + "1858": 4.6214579028, + "1859": 4.5995495968, + "1860": 4.5776412907, + "1861": 4.5510412527, + "1862": 4.5244412147, + "1863": 4.4932544229, + "1864": 4.4620676312, + "1865": 4.4264171656, + "1866": 4.3907667001, + "1867": 4.3507932569, + "1868": 4.3108198138, + "1869": 4.2666811498, + "1870": 4.2225424859, + "1871": 4.1744127964, + "1872": 4.1262831069, + "1873": 4.0743523377, + "1874": 4.0224215686, + "1875": 3.9668946667, + "1876": 3.9113677648, + "1877": 3.8524638696, + "1878": 3.7935599744, + "1879": 3.7315115526, + "1880": 3.6694631307, + "1881": 3.6045150591, + "1882": 3.5395669874, + "1883": 3.4719755864, + "1884": 3.4043841853, + "1885": 3.3344162071, + "1886": 3.2644482289, + "1887": 3.1923798053, + "1888": 3.1203113817, + "1889": 3.0464269338, + "1890": 2.9725424859, + "1891": 2.8971336019, + "1892": 2.8217247179, + "1893": 2.7450890022, + "1894": 2.6684532865, + "1895": 2.5908931852, + "1896": 2.5133330839, + "1897": 2.4351546914, + "1898": 2.3569762988, + "1899": 2.2784881494, + "1900": 2.2, + "1901": 2.1215118506, + "1902": 2.0430237012, + "1903": 1.9648453086, + "1904": 1.8866669161, + "1905": 1.8091068148, + "1906": 1.7315467135, + "1907": 1.6549109978, + "1908": 1.5782752821, + "1909": 1.5028663981, + "1910": 1.4274575141, + "1911": 1.3535730662, + "1912": 1.2796886183, + "1913": 1.2076201947, + "1914": 1.1355517711, + "1915": 1.0655837929, + "1916": 0.9956158147, + "1917": 0.9280244136, + "1918": 0.8604330126, + "1919": 0.7954849409, + "1920": 0.7305368693, + "1921": 0.6684884474, + "1922": 0.6064400256, + "1923": 0.5475361304, + "1924": 0.4886322352, + "1925": 0.4331053333, + "1926": 0.3775784314, + "1927": 0.3256476623, + "1928": 0.2737168931, + "1929": 0.2255872036, + "1930": 0.1774575141, + "1931": 0.1333188502, + "1932": 0.0891801862, + "1933": 0.0492067431, + "1934": 0.0092332999, + "1935": -0.0264171656, + "1936": -0.0620676312, + "1937": -0.0932544229, + "1938": -0.1244412147, + "1939": -0.1510412527, + "1940": -0.1776412907, + "1941": -0.1995495968, + "1942": -0.2214579028, + "1943": -0.2385880148, + "1944": -0.2557181268, + "1945": -0.2680024401, + "1946": -0.2802867533, + "1947": -0.2876767872, + "1948": -0.2950668211, + "1949": -0.2975334105, + "1950": -0.3, + "1951": -0.2975334105, + "1952": -0.2950668211, + "1953": -0.2876767872, + "1954": -0.2802867533, + "1955": -0.2680024401, + "1956": -0.2557181268, + "1957": -0.2385880148, + "1958": -0.2214579028, + "1959": -0.1995495968, + "1960": -0.1776412907, + "1961": -0.1510412527, + "1962": -0.1244412147, + "1963": -0.0932544229, + "1964": -0.0620676312, + "1965": -0.0264171656, + "1966": 0.0092332999, + "1967": 0.0492067431, + "1968": 0.0891801862, + "1969": 0.1333188502, + "1970": 0.1774575141, + "1971": 0.2255872036, + "1972": 0.2737168931, + "1973": 0.3256476623, + "1974": 0.3775784314, + "1975": 0.4331053333, + "1976": 0.4886322352, + "1977": 0.5475361304, + "1978": 0.6064400256, + "1979": 0.6684884474, + "1980": 0.7305368693, + "1981": 0.7954849409, + "1982": 0.8604330126, + "1983": 0.9280244136, + "1984": 0.9956158147, + "1985": 1.0655837929, + "1986": 1.1355517711, + "1987": 1.2076201947, + "1988": 1.2796886183, + "1989": 1.3535730662, + "1990": 1.4274575141, + "1991": 1.5028663981, + "1992": 1.5782752821, + "1993": 1.6549109978, + "1994": 1.7315467135, + "1995": 1.8091068148, + "1996": 1.8866669161, + "1997": 1.9648453086, + "1998": 2.0430237012, + "1999": 2.1215118506, + "2000": 2.2, + "2001": 2.2784881494, + "2002": 2.3569762988, + "2003": 2.4351546914, + "2004": 2.5133330839, + "2005": 2.5908931852, + "2006": 2.6684532865, + "2007": 2.7450890022, + "2008": 2.8217247179, + "2009": 2.8971336019, + "2010": 2.9725424859, + "2011": 3.0464269338, + "2012": 3.1203113817, + "2013": 3.1923798053, + "2014": 3.2644482289, + "2015": 3.3344162071, + "2016": 3.4043841853, + "2017": 3.4719755864, + "2018": 3.5395669874, + "2019": 3.6045150591, + "2020": 3.6694631307, + "2021": 3.7315115526, + "2022": 3.7935599744, + "2023": 3.8524638696, + "2024": 3.9113677648, + "2025": 3.9668946667, + "2026": 4.0224215686, + "2027": 4.0743523377, + "2028": 4.1262831069, + "2029": 4.1744127964, + "2030": 4.2225424859, + "2031": 4.2666811498, + "2032": 4.3108198138, + "2033": 4.3507932569, + "2034": 4.3907667001, + "2035": 4.4264171656, + "2036": 4.4620676312, + "2037": 4.4932544229, + "2038": 4.5244412147, + "2039": 4.5510412527, + "2040": 4.5776412907, + "2041": 4.5995495968, + "2042": 4.6214579028, + "2043": 4.6385880148, + "2044": 4.6557181268, + "2045": 4.6680024401, + "2046": 4.6802867533, + "2047": 4.6876767872, + "2048": 4.6950668211, + "2049": 4.6975334105, + "2050": 4.7, + "2051": 4.6975334105, + "2052": 4.6950668211, + "2053": 4.6876767872, + "2054": 4.6802867533, + "2055": 4.6680024401, + "2056": 4.6557181268, + "2057": 4.6385880148, + "2058": 4.6214579028, + "2059": 4.5995495968, + "2060": 4.5776412907, + "2061": 4.5510412527, + "2062": 4.5244412147, + "2063": 4.4932544229, + "2064": 4.4620676312, + "2065": 4.4264171656, + "2066": 4.3907667001, + "2067": 4.3507932569, + "2068": 4.3108198138, + "2069": 4.2666811498, + "2070": 4.2225424859, + "2071": 4.1744127964, + "2072": 4.1262831069, + "2073": 4.0743523377, + "2074": 4.0224215686, + "2075": 3.9668946667, + "2076": 3.9113677648, + "2077": 3.8524638696, + "2078": 3.7935599744, + "2079": 3.7315115526, + "2080": 3.6694631307, + "2081": 3.6045150591, + "2082": 3.5395669874, + "2083": 3.4719755864, + "2084": 3.4043841853, + "2085": 3.3344162071, + "2086": 3.2644482289, + "2087": 3.1923798053, + "2088": 3.1203113817, + "2089": 3.0464269338, + "2090": 2.9725424859, + "2091": 2.8971336019, + "2092": 2.8217247179, + "2093": 2.7450890022, + "2094": 2.6684532865, + "2095": 2.5908931852, + "2096": 2.5133330839, + "2097": 2.4351546914, + "2098": 2.3569762988, + "2099": 2.2784881494, + "2100": 2.2, + "2101": 2.1215118506, + "2102": 2.0430237012, + "2103": 1.9648453086, + "2104": 1.8866669161, + "2105": 1.8091068148, + "2106": 1.7315467135, + "2107": 1.6549109978, + "2108": 1.5782752821, + "2109": 1.5028663981, + "2110": 1.4274575141, + "2111": 1.3535730662, + "2112": 1.2796886183, + "2113": 1.2076201947, + "2114": 1.1355517711, + "2115": 1.0655837929, + "2116": 0.9956158147, + "2117": 0.9280244136, + "2118": 0.8604330126, + "2119": 0.7954849409, + "2120": 0.7305368693, + "2121": 0.6684884474, + "2122": 0.6064400256, + "2123": 0.5475361304, + "2124": 0.4886322352, + "2125": 0.4331053333, + "2126": 0.3775784314, + "2127": 0.3256476623, + "2128": 0.2737168931, + "2129": 0.2255872036, + "2130": 0.1774575141, + "2131": 0.1333188502, + "2132": 0.0891801862, + "2133": 0.0492067431, + "2134": 0.0092332999, + "2135": -0.0264171656, + "2136": -0.0620676312, + "2137": -0.0932544229, + "2138": -0.1244412147, + "2139": -0.1510412527, + "2140": -0.1776412907, + "2141": -0.1995495968, + "2142": -0.2214579028, + "2143": -0.2385880148, + "2144": -0.2557181268, + "2145": -0.2680024401, + "2146": -0.2802867533, + "2147": -0.2876767872, + "2148": -0.2950668211, + "2149": -0.2975334105, + "2150": -0.3, + "2151": -0.2975334105, + "2152": -0.2950668211, + "2153": -0.2876767872, + "2154": -0.2802867533, + "2155": -0.2680024401, + "2156": -0.2557181268, + "2157": -0.2385880148, + "2158": -0.2214579028, + "2159": -0.1995495968, + "2160": -0.1776412907, + "2161": -0.1510412527, + "2162": -0.1244412147, + "2163": -0.0932544229, + "2164": -0.0620676312, + "2165": -0.0264171656, + "2166": 0.0092332999, + "2167": 0.0492067431, + "2168": 0.0891801862, + "2169": 0.1333188502, + "2170": 0.1774575141, + "2171": 0.2255872036, + "2172": 0.2737168931, + "2173": 0.3256476623, + "2174": 0.3775784314, + "2175": 0.4331053333, + "2176": 0.4886322352, + "2177": 0.5475361304, + "2178": 0.6064400256, + "2179": 0.6684884474, + "2180": 0.7305368693, + "2181": 0.7954849409, + "2182": 0.8604330126, + "2183": 0.9280244136, + "2184": 0.9956158147, + "2185": 1.0655837929, + "2186": 1.1355517711, + "2187": 1.2076201947, + "2188": 1.2796886183, + "2189": 1.3535730662, + "2190": 1.4274575141, + "2191": 1.5028663981, + "2192": 1.5782752821, + "2193": 1.6549109978, + "2194": 1.7315467135, + "2195": 1.8091068148, + "2196": 1.8866669161, + "2197": 1.9648453086, + "2198": 2.0430237012, + "2199": 2.1215118506, + "2200": 2.2, + "2201": 2.2784881494, + "2202": 2.3569762988, + "2203": 2.4351546914, + "2204": 2.5133330839, + "2205": 2.5908931852, + "2206": 2.6684532865, + "2207": 2.7450890022, + "2208": 2.8217247179, + "2209": 2.8971336019, + "2210": 2.9725424859, + "2211": 3.0464269338, + "2212": 3.1203113817, + "2213": 3.1923798053, + "2214": 3.2644482289, + "2215": 3.3344162071, + "2216": 3.4043841853, + "2217": 3.4719755864, + "2218": 3.5395669874, + "2219": 3.6045150591, + "2220": 3.6694631307, + "2221": 3.7315115526, + "2222": 3.7935599744, + "2223": 3.8524638696, + "2224": 3.9113677648, + "2225": 3.9668946667, + "2226": 4.0224215686, + "2227": 4.0743523377, + "2228": 4.1262831069, + "2229": 4.1744127964, + "2230": 4.2225424859, + "2231": 4.2666811498, + "2232": 4.3108198138, + "2233": 4.3507932569, + "2234": 4.3907667001, + "2235": 4.4264171656, + "2236": 4.4620676312, + "2237": 4.4932544229, + "2238": 4.5244412147, + "2239": 4.5510412527, + "2240": 4.5776412907, + "2241": 4.5995495968, + "2242": 4.6214579028, + "2243": 4.6385880148, + "2244": 4.6557181268, + "2245": 4.6680024401, + "2246": 4.6802867533, + "2247": 4.6876767872, + "2248": 4.6950668211, + "2249": 4.6975334105, + "2250": 4.7, + "2251": 4.6975334105, + "2252": 4.6950668211, + "2253": 4.6876767872, + "2254": 4.6802867533, + "2255": 4.6680024401, + "2256": 4.6557181268, + "2257": 4.6385880148, + "2258": 4.6214579028, + "2259": 4.5995495968, + "2260": 4.5776412907, + "2261": 4.5510412527, + "2262": 4.5244412147, + "2263": 4.4932544229, + "2264": 4.4620676312, + "2265": 4.4264171656, + "2266": 4.3907667001, + "2267": 4.3507932569, + "2268": 4.3108198138, + "2269": 4.2666811498, + "2270": 4.2225424859, + "2271": 4.1744127964, + "2272": 4.1262831069, + "2273": 4.0743523377, + "2274": 4.0224215686, + "2275": 3.9668946667, + "2276": 3.9113677648, + "2277": 3.8524638696, + "2278": 3.7935599744, + "2279": 3.7315115526, + "2280": 3.6694631307, + "2281": 3.6045150591, + "2282": 3.5395669874, + "2283": 3.4719755864, + "2284": 3.4043841853, + "2285": 3.3344162071, + "2286": 3.2644482289, + "2287": 3.1923798053, + "2288": 3.1203113817, + "2289": 3.0464269338, + "2290": 2.9725424859, + "2291": 2.8971336019, + "2292": 2.8217247179, + "2293": 2.7450890022, + "2294": 2.6684532865, + "2295": 2.5908931852, + "2296": 2.5133330839, + "2297": 2.4351546914, + "2298": 2.3569762988, + "2299": 2.2784881494, + "2300": 2.2, + "2301": 2.1215118506, + "2302": 2.0430237012, + "2303": 1.9648453086, + "2304": 1.8866669161, + "2305": 1.8091068148, + "2306": 1.7315467135, + "2307": 1.6549109978, + "2308": 1.5782752821, + "2309": 1.5028663981, + "2310": 1.4274575141, + "2311": 1.3535730662, + "2312": 1.2796886183, + "2313": 1.2076201947, + "2314": 1.1355517711, + "2315": 1.0655837929, + "2316": 0.9956158147, + "2317": 0.9280244136, + "2318": 0.8604330126, + "2319": 0.7954849409, + "2320": 0.7305368693, + "2321": 0.6684884474, + "2322": 0.6064400256, + "2323": 0.5475361304, + "2324": 0.4886322352, + "2325": 0.4331053333, + "2326": 0.3775784314, + "2327": 0.3256476623, + "2328": 0.2737168931, + "2329": 0.2255872036, + "2330": 0.1774575141, + "2331": 0.1333188502, + "2332": 0.0891801862, + "2333": 0.0492067431, + "2334": 0.0092332999, + "2335": -0.0264171656, + "2336": -0.0620676312, + "2337": -0.0932544229, + "2338": -0.1244412147, + "2339": -0.1510412527, + "2340": -0.1776412907, + "2341": -0.1995495968, + "2342": -0.2214579028, + "2343": -0.2385880148, + "2344": -0.2557181268, + "2345": -0.2680024401, + "2346": -0.2802867533, + "2347": -0.2876767872, + "2348": -0.2950668211, + "2349": -0.2975334105, + "2350": -0.3, + "2351": -0.2975334105, + "2352": -0.2950668211, + "2353": -0.2876767872, + "2354": -0.2802867533, + "2355": -0.2680024401, + "2356": -0.2557181268, + "2357": -0.2385880148, + "2358": -0.2214579028, + "2359": -0.1995495968, + "2360": -0.1776412907, + "2361": -0.1510412527, + "2362": -0.1244412147, + "2363": -0.0932544229, + "2364": -0.0620676312, + "2365": -0.0264171656, + "2366": 0.0092332999, + "2367": 0.0492067431, + "2368": 0.0891801862, + "2369": 0.1333188502, + "2370": 0.1774575141, + "2371": 0.2255872036, + "2372": 0.2737168931, + "2373": 0.3256476623, + "2374": 0.3775784314, + "2375": 0.4331053333, + "2376": 0.4886322352, + "2377": 0.5475361304, + "2378": 0.6064400256, + "2379": 0.6684884474, + "2380": 0.7305368693, + "2381": 0.7954849409, + "2382": 0.8604330126, + "2383": 0.9280244136, + "2384": 0.9956158147, + "2385": 1.0655837929, + "2386": 1.1355517711, + "2387": 1.2076201947, + "2388": 1.2796886183, + "2389": 1.3535730662, + "2390": 1.4274575141, + "2391": 1.5028663981, + "2392": 1.5782752821, + "2393": 1.6549109978, + "2394": 1.7315467135, + "2395": 1.8091068148, + "2396": 1.8866669161, + "2397": 1.9648453086, + "2398": 2.0430237012, + "2399": 2.1215118506, + "2400": 2.2, + "2401": 2.2784881494, + "2402": 2.3569762988, + "2403": 2.4351546914, + "2404": 2.5133330839, + "2405": 2.5908931852, + "2406": 2.6684532865, + "2407": 2.7450890022, + "2408": 2.8217247179, + "2409": 2.8971336019, + "2410": 2.9725424859, + "2411": 3.0464269338, + "2412": 3.1203113817, + "2413": 3.1923798053, + "2414": 3.2644482289, + "2415": 3.3344162071, + "2416": 3.4043841853, + "2417": 3.4719755864, + "2418": 3.5395669874, + "2419": 3.6045150591, + "2420": 3.6694631307, + "2421": 3.7315115526, + "2422": 3.7935599744, + "2423": 3.8524638696, + "2424": 3.9113677648, + "2425": 3.9668946667, + "2426": 4.0224215686, + "2427": 4.0743523377, + "2428": 4.1262831069, + "2429": 4.1744127964, + "2430": 4.2225424859, + "2431": 4.2666811498, + "2432": 4.3108198138, + "2433": 4.3507932569, + "2434": 4.3907667001, + "2435": 4.4264171656, + "2436": 4.4620676312, + "2437": 4.4932544229, + "2438": 4.5244412147, + "2439": 4.5510412527, + "2440": 4.5776412907, + "2441": 4.5995495968, + "2442": 4.6214579028, + "2443": 4.6385880148, + "2444": 4.6557181268, + "2445": 4.6680024401, + "2446": 4.6802867533, + "2447": 4.6876767872, + "2448": 4.6950668211, + "2449": 4.6975334105, + "2450": 4.7, + "2451": 4.6975334105, + "2452": 4.6950668211, + "2453": 4.6876767872, + "2454": 4.6802867533, + "2455": 4.6680024401, + "2456": 4.6557181268, + "2457": 4.6385880148, + "2458": 4.6214579028, + "2459": 4.5995495968, + "2460": 4.5776412907, + "2461": 4.5510412527, + "2462": 4.5244412147, + "2463": 4.4932544229, + "2464": 4.4620676312, + "2465": 4.4264171656, + "2466": 4.3907667001, + "2467": 4.3507932569, + "2468": 4.3108198138, + "2469": 4.2666811498, + "2470": 4.2225424859, + "2471": 4.1744127964, + "2472": 4.1262831069, + "2473": 4.0743523377, + "2474": 4.0224215686, + "2475": 3.9668946667, + "2476": 3.9113677648, + "2477": 3.8524638696, + "2478": 3.7935599744, + "2479": 3.7315115526, + "2480": 3.6694631307, + "2481": 3.6045150591, + "2482": 3.5395669874, + "2483": 3.4719755864, + "2484": 3.4043841853, + "2485": 3.3344162071, + "2486": 3.2644482289, + "2487": 3.1923798053, + "2488": 3.1203113817, + "2489": 3.0464269338, + "2490": 2.9725424859, + "2491": 2.8971336019, + "2492": 2.8217247179, + "2493": 2.7450890022, + "2494": 2.6684532865, + "2495": 2.5908931852, + "2496": 2.5133330839, + "2497": 2.4351546914, + "2498": 2.3569762988, + "2499": 2.2784881494, + "2500": 2.2, + "2501": 2.1215118506, + "2502": 2.0430237012, + "2503": 1.9648453086, + "2504": 1.8866669161, + "2505": 1.8091068148, + "2506": 1.7315467135, + "2507": 1.6549109978, + "2508": 1.5782752821, + "2509": 1.5028663981, + "2510": 1.4274575141, + "2511": 1.3535730662, + "2512": 1.2796886183, + "2513": 1.2076201947, + "2514": 1.1355517711, + "2515": 1.0655837929, + "2516": 0.9956158147, + "2517": 0.9280244136, + "2518": 0.8604330126, + "2519": 0.7954849409, + "2520": 0.7305368693, + "2521": 0.6684884474, + "2522": 0.6064400256, + "2523": 0.5475361304, + "2524": 0.4886322352, + "2525": 0.4331053333, + "2526": 0.3775784314, + "2527": 0.3256476623, + "2528": 0.2737168931, + "2529": 0.2255872036, + "2530": 0.1774575141, + "2531": 0.1333188502, + "2532": 0.0891801862, + "2533": 0.0492067431, + "2534": 0.0092332999, + "2535": -0.0264171656, + "2536": -0.0620676312, + "2537": -0.0932544229, + "2538": -0.1244412147, + "2539": -0.1510412527, + "2540": -0.1776412907, + "2541": -0.1995495968, + "2542": -0.2214579028, + "2543": -0.2385880148, + "2544": -0.2557181268, + "2545": -0.2680024401, + "2546": -0.2802867533, + "2547": -0.2876767872, + "2548": -0.2950668211, + "2549": -0.2975334105, + "2550": -0.3, + "2551": -0.2975334105, + "2552": -0.2950668211, + "2553": -0.2876767872, + "2554": -0.2802867533, + "2555": -0.2680024401, + "2556": -0.2557181268, + "2557": -0.2385880148, + "2558": -0.2214579028, + "2559": -0.1995495968, + "2560": -0.1776412907, + "2561": -0.1510412527, + "2562": -0.1244412147, + "2563": -0.0932544229, + "2564": -0.0620676312, + "2565": -0.0264171656, + "2566": 0.0092332999, + "2567": 0.0492067431, + "2568": 0.0891801862, + "2569": 0.1333188502, + "2570": 0.1774575141, + "2571": 0.2255872036, + "2572": 0.2737168931, + "2573": 0.3256476623, + "2574": 0.3775784314, + "2575": 0.4331053333, + "2576": 0.4886322352, + "2577": 0.5475361304, + "2578": 0.6064400256, + "2579": 0.6684884474, + "2580": 0.7305368693, + "2581": 0.7954849409, + "2582": 0.8604330126, + "2583": 0.9280244136, + "2584": 0.9956158147, + "2585": 1.0655837929, + "2586": 1.1355517711, + "2587": 1.2076201947, + "2588": 1.2796886183, + "2589": 1.3535730662, + "2590": 1.4274575141, + "2591": 1.5028663981, + "2592": 1.5782752821, + "2593": 1.6549109978, + "2594": 1.7315467135, + "2595": 1.8091068148, + "2596": 1.8866669161, + "2597": 1.9648453086, + "2598": 2.0430237012, + "2599": 2.1215118506, + "2600": 2.2, + "2601": 2.2784881494, + "2602": 2.3569762988, + "2603": 2.4351546914, + "2604": 2.5133330839, + "2605": 2.5908931852, + "2606": 2.6684532865, + "2607": 2.7450890022, + "2608": 2.8217247179, + "2609": 2.8971336019, + "2610": 2.9725424859, + "2611": 3.0464269338, + "2612": 3.1203113817, + "2613": 3.1923798053, + "2614": 3.2644482289, + "2615": 3.3344162071, + "2616": 3.4043841853, + "2617": 3.4719755864, + "2618": 3.5395669874, + "2619": 3.6045150591, + "2620": 3.6694631307, + "2621": 3.7315115526, + "2622": 3.7935599744, + "2623": 3.8524638696, + "2624": 3.9113677648, + "2625": 3.9668946667, + "2626": 4.0224215686, + "2627": 4.0743523377, + "2628": 4.1262831069, + "2629": 4.1744127964, + "2630": 4.2225424859, + "2631": 4.2666811498, + "2632": 4.3108198138, + "2633": 4.3507932569, + "2634": 4.3907667001, + "2635": 4.4264171656, + "2636": 4.4620676312, + "2637": 4.4932544229, + "2638": 4.5244412147, + "2639": 4.5510412527, + "2640": 4.5776412907, + "2641": 4.5995495968, + "2642": 4.6214579028, + "2643": 4.6385880148, + "2644": 4.6557181268, + "2645": 4.6680024401, + "2646": 4.6802867533, + "2647": 4.6876767872, + "2648": 4.6950668211, + "2649": 4.6975334105, + "2650": 4.7, + "2651": 4.6975334105, + "2652": 4.6950668211, + "2653": 4.6876767872, + "2654": 4.6802867533, + "2655": 4.6680024401, + "2656": 4.6557181268, + "2657": 4.6385880148, + "2658": 4.6214579028, + "2659": 4.5995495968, + "2660": 4.5776412907, + "2661": 4.5510412527, + "2662": 4.5244412147, + "2663": 4.4932544229, + "2664": 4.4620676312, + "2665": 4.4264171656, + "2666": 4.3907667001, + "2667": 4.3507932569, + "2668": 4.3108198138, + "2669": 4.2666811498, + "2670": 4.2225424859, + "2671": 4.1744127964, + "2672": 4.1262831069, + "2673": 4.0743523377, + "2674": 4.0224215686, + "2675": 3.9668946667, + "2676": 3.9113677648, + "2677": 3.8524638696, + "2678": 3.7935599744, + "2679": 3.7315115526, + "2680": 3.6694631307, + "2681": 3.6045150591, + "2682": 3.5395669874, + "2683": 3.4719755864, + "2684": 3.4043841853, + "2685": 3.3344162071, + "2686": 3.2644482289, + "2687": 3.1923798053, + "2688": 3.1203113817, + "2689": 3.0464269338, + "2690": 2.9725424859, + "2691": 2.8971336019, + "2692": 2.8217247179, + "2693": 2.7450890022, + "2694": 2.6684532865, + "2695": 2.5908931852, + "2696": 2.5133330839, + "2697": 2.4351546914, + "2698": 2.3569762988, + "2699": 2.2784881494, + "2700": 2.2, + "2701": 2.1215118506, + "2702": 2.0430237012, + "2703": 1.9648453086, + "2704": 1.8866669161, + "2705": 1.8091068148, + "2706": 1.7315467135, + "2707": 1.6549109978, + "2708": 1.5782752821, + "2709": 1.5028663981, + "2710": 1.4274575141, + "2711": 1.3535730662, + "2712": 1.2796886183, + "2713": 1.2076201947, + "2714": 1.1355517711, + "2715": 1.0655837929, + "2716": 0.9956158147, + "2717": 0.9280244136, + "2718": 0.8604330126, + "2719": 0.7954849409, + "2720": 0.7305368693, + "2721": 0.6684884474, + "2722": 0.6064400256, + "2723": 0.5475361304, + "2724": 0.4886322352, + "2725": 0.4331053333, + "2726": 0.3775784314, + "2727": 0.3256476623, + "2728": 0.2737168931, + "2729": 0.2255872036, + "2730": 0.1774575141, + "2731": 0.1333188502, + "2732": 0.0891801862, + "2733": 0.0492067431, + "2734": 0.0092332999, + "2735": -0.0264171656, + "2736": -0.0620676312, + "2737": -0.0932544229, + "2738": -0.1244412147, + "2739": -0.1510412527, + "2740": -0.1776412907, + "2741": -0.1995495968, + "2742": -0.2214579028, + "2743": -0.2385880148, + "2744": -0.2557181268, + "2745": -0.2680024401, + "2746": -0.2802867533, + "2747": -0.2876767872, + "2748": -0.2950668211, + "2749": -0.2975334105, + "2750": -0.3, + "2751": -0.2975334105, + "2752": -0.2950668211, + "2753": -0.2876767872, + "2754": -0.2802867533, + "2755": -0.2680024401, + "2756": -0.2557181268, + "2757": -0.2385880148, + "2758": -0.2214579028, + "2759": -0.1995495968, + "2760": -0.1776412907, + "2761": -0.1510412527, + "2762": -0.1244412147, + "2763": -0.0932544229, + "2764": -0.0620676312, + "2765": -0.0264171656, + "2766": 0.0092332999, + "2767": 0.0492067431, + "2768": 0.0891801862, + "2769": 0.1333188502, + "2770": 0.1774575141, + "2771": 0.2255872036, + "2772": 0.2737168931, + "2773": 0.3256476623, + "2774": 0.3775784314, + "2775": 0.4331053333, + "2776": 0.4886322352, + "2777": 0.5475361304, + "2778": 0.6064400256, + "2779": 0.6684884474, + "2780": 0.7305368693, + "2781": 0.7954849409, + "2782": 0.8604330126, + "2783": 0.9280244136, + "2784": 0.9956158147, + "2785": 1.0655837929, + "2786": 1.1355517711, + "2787": 1.2076201947, + "2788": 1.2796886183, + "2789": 1.3535730662, + "2790": 1.4274575141, + "2791": 1.5028663981, + "2792": 1.5782752821, + "2793": 1.6549109978, + "2794": 1.7315467135, + "2795": 1.8091068148, + "2796": 1.8866669161, + "2797": 1.9648453086, + "2798": 2.0430237012, + "2799": 2.1215118506, + "2800": 2.2, + "2801": 2.2784881494, + "2802": 2.3569762988, + "2803": 2.4351546914, + "2804": 2.5133330839, + "2805": 2.5908931852, + "2806": 2.6684532865, + "2807": 2.7450890022, + "2808": 2.8217247179, + "2809": 2.8971336019, + "2810": 2.9725424859, + "2811": 3.0464269338, + "2812": 3.1203113817, + "2813": 3.1923798053, + "2814": 3.2644482289, + "2815": 3.3344162071, + "2816": 3.4043841853, + "2817": 3.4719755864, + "2818": 3.5395669874, + "2819": 3.6045150591, + "2820": 3.6694631307, + "2821": 3.7315115526, + "2822": 3.7935599744, + "2823": 3.8524638696, + "2824": 3.9113677648, + "2825": 3.9668946667, + "2826": 4.0224215686, + "2827": 4.0743523377, + "2828": 4.1262831069, + "2829": 4.1744127964, + "2830": 4.2225424859, + "2831": 4.2666811498, + "2832": 4.3108198138, + "2833": 4.3507932569, + "2834": 4.3907667001, + "2835": 4.4264171656, + "2836": 4.4620676312, + "2837": 4.4932544229, + "2838": 4.5244412147, + "2839": 4.5510412527, + "2840": 4.5776412907, + "2841": 4.5995495968, + "2842": 4.6214579028, + "2843": 4.6385880148, + "2844": 4.6557181268, + "2845": 4.6680024401, + "2846": 4.6802867533, + "2847": 4.6876767872, + "2848": 4.6950668211, + "2849": 4.6975334105, + "2850": 4.7, + "2851": 4.6975334105, + "2852": 4.6950668211, + "2853": 4.6876767872, + "2854": 4.6802867533, + "2855": 4.6680024401, + "2856": 4.6557181268, + "2857": 4.6385880148, + "2858": 4.6214579028, + "2859": 4.5995495968, + "2860": 4.5776412907, + "2861": 4.5510412527, + "2862": 4.5244412147, + "2863": 4.4932544229, + "2864": 4.4620676312, + "2865": 4.4264171656, + "2866": 4.3907667001, + "2867": 4.3507932569, + "2868": 4.3108198138, + "2869": 4.2666811498, + "2870": 4.2225424859, + "2871": 4.1744127964, + "2872": 4.1262831069, + "2873": 4.0743523377, + "2874": 4.0224215686, + "2875": 3.9668946667, + "2876": 3.9113677648, + "2877": 3.8524638696, + "2878": 3.7935599744, + "2879": 3.7315115526, + "2880": 3.6694631307, + "2881": 3.6045150591, + "2882": 3.5395669874, + "2883": 3.4719755864, + "2884": 3.4043841853, + "2885": 3.3344162071, + "2886": 3.2644482289, + "2887": 3.1923798053, + "2888": 3.1203113817, + "2889": 3.0464269338, + "2890": 2.9725424859, + "2891": 2.8971336019, + "2892": 2.8217247179, + "2893": 2.7450890022, + "2894": 2.6684532865, + "2895": 2.5908931852, + "2896": 2.5133330839, + "2897": 2.4351546914, + "2898": 2.3569762988, + "2899": 2.2784881494, + "2900": 2.2, + "2901": 2.1215118506, + "2902": 2.0430237012, + "2903": 1.9648453086, + "2904": 1.8866669161, + "2905": 1.8091068148, + "2906": 1.7315467135, + "2907": 1.6549109978, + "2908": 1.5782752821, + "2909": 1.5028663981, + "2910": 1.4274575141, + "2911": 1.3535730662, + "2912": 1.2796886183, + "2913": 1.2076201947, + "2914": 1.1355517711, + "2915": 1.0655837929, + "2916": 0.9956158147, + "2917": 0.9280244136, + "2918": 0.8604330126, + "2919": 0.7954849409, + "2920": 0.7305368693, + "2921": 0.6684884474, + "2922": 0.6064400256, + "2923": 0.5475361304, + "2924": 0.4886322352, + "2925": 0.4331053333, + "2926": 0.3775784314, + "2927": 0.3256476623, + "2928": 0.2737168931, + "2929": 0.2255872036, + "2930": 0.1774575141, + "2931": 0.1333188502, + "2932": 0.0891801862, + "2933": 0.0492067431, + "2934": 0.0092332999, + "2935": -0.0264171656, + "2936": -0.0620676312, + "2937": -0.0932544229, + "2938": -0.1244412147, + "2939": -0.1510412527, + "2940": -0.1776412907, + "2941": -0.1995495968, + "2942": -0.2214579028, + "2943": -0.2385880148, + "2944": -0.2557181268, + "2945": -0.2680024401, + "2946": -0.2802867533, + "2947": -0.2876767872, + "2948": -0.2950668211, + "2949": -0.2975334105, + "2950": -0.3, + "2951": -0.2975334105, + "2952": -0.2950668211, + "2953": -0.2876767872, + "2954": -0.2802867533, + "2955": -0.2680024401, + "2956": -0.2557181268, + "2957": -0.2385880148, + "2958": -0.2214579028, + "2959": -0.1995495968, + "2960": -0.1776412907, + "2961": -0.1510412527, + "2962": -0.1244412147, + "2963": -0.0932544229, + "2964": -0.0620676312, + "2965": -0.0264171656, + "2966": 0.0092332999, + "2967": 0.0492067431, + "2968": 0.0891801862, + "2969": 0.1333188502, + "2970": 0.1774575141, + "2971": 0.2255872036, + "2972": 0.2737168931, + "2973": 0.3256476623, + "2974": 0.3775784314, + "2975": 0.4331053333, + "2976": 0.4886322352, + "2977": 0.5475361304, + "2978": 0.6064400256, + "2979": 0.6684884474, + "2980": 0.7305368693, + "2981": 0.7954849409, + "2982": 0.8604330126, + "2983": 0.9280244136, + "2984": 0.9956158147, + "2985": 1.0655837929, + "2986": 1.1355517711, + "2987": 1.2076201947, + "2988": 1.2796886183, + "2989": 1.3535730662, + "2990": 1.4274575141, + "2991": 1.5028663981, + "2992": 1.5782752821, + "2993": 1.6549109978, + "2994": 1.7315467135, + "2995": 1.8091068148, + "2996": 1.8866669161, + "2997": 1.9648453086, + "2998": 2.0430237012, + "2999": 2.1215118506, + "3000": 2.2, + "3001": 2.2784881494, + "3002": 2.3569762988, + "3003": 2.4351546914, + "3004": 2.5133330839, + "3005": 2.5908931852, + "3006": 2.6684532865, + "3007": 2.7450890022, + "3008": 2.8217247179, + "3009": 2.8971336019, + "3010": 2.9725424859, + "3011": 3.0464269338, + "3012": 3.1203113817, + "3013": 3.1923798053, + "3014": 3.2644482289, + "3015": 3.3344162071, + "3016": 3.4043841853, + "3017": 3.4719755864, + "3018": 3.5395669874, + "3019": 3.6045150591, + "3020": 3.6694631307, + "3021": 3.7315115526, + "3022": 3.7935599744, + "3023": 3.8524638696, + "3024": 3.9113677648, + "3025": 3.9668946667, + "3026": 4.0224215686, + "3027": 4.0743523377, + "3028": 4.1262831069, + "3029": 4.1744127964, + "3030": 4.2225424859, + "3031": 4.2666811498, + "3032": 4.3108198138, + "3033": 4.3507932569, + "3034": 4.3907667001, + "3035": 4.4264171656, + "3036": 4.4620676312, + "3037": 4.4932544229, + "3038": 4.5244412147, + "3039": 4.5510412527, + "3040": 4.5776412907, + "3041": 4.5995495968, + "3042": 4.6214579028, + "3043": 4.6385880148, + "3044": 4.6557181268, + "3045": 4.6680024401, + "3046": 4.6802867533, + "3047": 4.6876767872, + "3048": 4.6950668211, + "3049": 4.6975334105, + "3050": 4.7, + "3051": 4.6975334105, + "3052": 4.6950668211, + "3053": 4.6876767872, + "3054": 4.6802867533, + "3055": 4.6680024401, + "3056": 4.6557181268, + "3057": 4.6385880148, + "3058": 4.6214579028, + "3059": 4.5995495968, + "3060": 4.5776412907, + "3061": 4.5510412527, + "3062": 4.5244412147, + "3063": 4.4932544229, + "3064": 4.4620676312, + "3065": 4.4264171656, + "3066": 4.3907667001, + "3067": 4.3507932569, + "3068": 4.3108198138, + "3069": 4.2666811498, + "3070": 4.2225424859, + "3071": 4.1744127964, + "3072": 4.1262831069, + "3073": 4.0743523377, + "3074": 4.0224215686, + "3075": 3.9668946667, + "3076": 3.9113677648, + "3077": 3.8524638696, + "3078": 3.7935599744, + "3079": 3.7315115526, + "3080": 3.6694631307, + "3081": 3.6045150591, + "3082": 3.5395669874, + "3083": 3.4719755864, + "3084": 3.4043841853, + "3085": 3.3344162071, + "3086": 3.2644482289, + "3087": 3.1923798053, + "3088": 3.1203113817, + "3089": 3.0464269338, + "3090": 2.9725424859, + "3091": 2.8971336019, + "3092": 2.8217247179, + "3093": 2.7450890022, + "3094": 2.6684532865, + "3095": 2.5908931852, + "3096": 2.5133330839, + "3097": 2.4351546914, + "3098": 2.3569762988, + "3099": 2.2784881494, + "3100": 2.2, + "3101": 2.1215118506, + "3102": 2.0430237012, + "3103": 1.9648453086, + "3104": 1.8866669161, + "3105": 1.8091068148, + "3106": 1.7315467135, + "3107": 1.6549109978, + "3108": 1.5782752821, + "3109": 1.5028663981, + "3110": 1.4274575141, + "3111": 1.3535730662, + "3112": 1.2796886183, + "3113": 1.2076201947, + "3114": 1.1355517711, + "3115": 1.0655837929, + "3116": 0.9956158147, + "3117": 0.9280244136, + "3118": 0.8604330126, + "3119": 0.7954849409, + "3120": 0.7305368693, + "3121": 0.6684884474, + "3122": 0.6064400256, + "3123": 0.5475361304, + "3124": 0.4886322352, + "3125": 0.4331053333, + "3126": 0.3775784314, + "3127": 0.3256476623, + "3128": 0.2737168931, + "3129": 0.2255872036, + "3130": 0.1774575141, + "3131": 0.1333188502, + "3132": 0.0891801862, + "3133": 0.0492067431, + "3134": 0.0092332999, + "3135": -0.0264171656, + "3136": -0.0620676312, + "3137": -0.0932544229, + "3138": -0.1244412147, + "3139": -0.1510412527, + "3140": -0.1776412907, + "3141": -0.1995495968, + "3142": -0.2214579028, + "3143": -0.2385880148, + "3144": -0.2557181268, + "3145": -0.2680024401, + "3146": -0.2802867533, + "3147": -0.2876767872, + "3148": -0.2950668211, + "3149": -0.2975334105, + "3150": -0.3, + "3151": -0.2975334105, + "3152": -0.2950668211, + "3153": -0.2876767872, + "3154": -0.2802867533, + "3155": -0.2680024401, + "3156": -0.2557181268, + "3157": -0.2385880148, + "3158": -0.2214579028, + "3159": -0.1995495968, + "3160": -0.1776412907, + "3161": -0.1510412527, + "3162": -0.1244412147, + "3163": -0.0932544229, + "3164": -0.0620676312, + "3165": -0.0264171656, + "3166": 0.0092332999, + "3167": 0.0492067431, + "3168": 0.0891801862, + "3169": 0.1333188502, + "3170": 0.1774575141, + "3171": 0.2255872036, + "3172": 0.2737168931, + "3173": 0.3256476623, + "3174": 0.3775784314, + "3175": 0.4331053333, + "3176": 0.4886322352, + "3177": 0.5475361304, + "3178": 0.6064400256, + "3179": 0.6684884474, + "3180": 0.7305368693, + "3181": 0.7954849409, + "3182": 0.8604330126, + "3183": 0.9280244136, + "3184": 0.9956158147, + "3185": 1.0655837929, + "3186": 1.1355517711, + "3187": 1.2076201947, + "3188": 1.2796886183, + "3189": 1.3535730662, + "3190": 1.4274575141, + "3191": 1.5028663981, + "3192": 1.5782752821, + "3193": 1.6549109978, + "3194": 1.7315467135, + "3195": 1.8091068148, + "3196": 1.8866669161, + "3197": 1.9648453086, + "3198": 2.0430237012, + "3199": 2.1215118506, + "3200": 2.2, + "3201": 2.2784881494, + "3202": 2.3569762988, + "3203": 2.4351546914, + "3204": 2.5133330839, + "3205": 2.5908931852, + "3206": 2.6684532865, + "3207": 2.7450890022, + "3208": 2.8217247179, + "3209": 2.8971336019, + "3210": 2.9725424859, + "3211": 3.0464269338, + "3212": 3.1203113817, + "3213": 3.1923798053, + "3214": 3.2644482289, + "3215": 3.3344162071, + "3216": 3.4043841853, + "3217": 3.4719755864, + "3218": 3.5395669874, + "3219": 3.6045150591, + "3220": 3.6694631307, + "3221": 3.7315115526, + "3222": 3.7935599744, + "3223": 3.8524638696, + "3224": 3.9113677648, + "3225": 3.9668946667, + "3226": 4.0224215686, + "3227": 4.0743523377, + "3228": 4.1262831069, + "3229": 4.1744127964, + "3230": 4.2225424859, + "3231": 4.2666811498, + "3232": 4.3108198138, + "3233": 4.3507932569, + "3234": 4.3907667001, + "3235": 4.4264171656, + "3236": 4.4620676312, + "3237": 4.4932544229, + "3238": 4.5244412147, + "3239": 4.5510412527, + "3240": 4.5776412907, + "3241": 4.5995495968, + "3242": 4.6214579028, + "3243": 4.6385880148, + "3244": 4.6557181268, + "3245": 4.6680024401, + "3246": 4.6802867533, + "3247": 4.6876767872, + "3248": 4.6950668211, + "3249": 4.6975334105, + "3250": 4.7, + "3251": 4.6975334105, + "3252": 4.6950668211, + "3253": 4.6876767872, + "3254": 4.6802867533, + "3255": 4.6680024401, + "3256": 4.6557181268, + "3257": 4.6385880148, + "3258": 4.6214579028, + "3259": 4.5995495968, + "3260": 4.5776412907, + "3261": 4.5510412527, + "3262": 4.5244412147, + "3263": 4.4932544229, + "3264": 4.4620676312, + "3265": 4.4264171656, + "3266": 4.3907667001, + "3267": 4.3507932569, + "3268": 4.3108198138, + "3269": 4.2666811498, + "3270": 4.2225424859, + "3271": 4.1744127964, + "3272": 4.1262831069, + "3273": 4.0743523377, + "3274": 4.0224215686, + "3275": 3.9668946667, + "3276": 3.9113677648, + "3277": 3.8524638696, + "3278": 3.7935599744, + "3279": 3.7315115526, + "3280": 3.6694631307, + "3281": 3.6045150591, + "3282": 3.5395669874, + "3283": 3.4719755864, + "3284": 3.4043841853, + "3285": 3.3344162071, + "3286": 3.2644482289, + "3287": 3.1923798053, + "3288": 3.1203113817, + "3289": 3.0464269338, + "3290": 2.9725424859, + "3291": 2.8971336019, + "3292": 2.8217247179, + "3293": 2.7450890022, + "3294": 2.6684532865, + "3295": 2.5908931852, + "3296": 2.5133330839, + "3297": 2.4351546914, + "3298": 2.3569762988, + "3299": 2.2784881494, + "3300": 2.2, + "3301": 2.1215118506, + "3302": 2.0430237012, + "3303": 1.9648453086, + "3304": 1.8866669161, + "3305": 1.8091068148, + "3306": 1.7315467135, + "3307": 1.6549109978, + "3308": 1.5782752821, + "3309": 1.5028663981, + "3310": 1.4274575141, + "3311": 1.3535730662, + "3312": 1.2796886183, + "3313": 1.2076201947, + "3314": 1.1355517711, + "3315": 1.0655837929, + "3316": 0.9956158147, + "3317": 0.9280244136, + "3318": 0.8604330126, + "3319": 0.7954849409, + "3320": 0.7305368693, + "3321": 0.6684884474, + "3322": 0.6064400256, + "3323": 0.5475361304, + "3324": 0.4886322352, + "3325": 0.4331053333, + "3326": 0.3775784314, + "3327": 0.3256476623, + "3328": 0.2737168931, + "3329": 0.2255872036, + "3330": 0.1774575141, + "3331": 0.1333188502, + "3332": 0.0891801862, + "3333": 0.0492067431, + "3334": 0.0092332999, + "3335": -0.0264171656, + "3336": -0.0620676312, + "3337": -0.0932544229, + "3338": -0.1244412147, + "3339": -0.1510412527, + "3340": -0.1776412907, + "3341": -0.1995495968, + "3342": -0.2214579028, + "3343": -0.2385880148, + "3344": -0.2557181268, + "3345": -0.2680024401, + "3346": -0.2802867533, + "3347": -0.2876767872, + "3348": -0.2950668211, + "3349": -0.2975334105, + "3350": -0.3, + "3351": -0.2975334105, + "3352": -0.2950668211, + "3353": -0.2876767872, + "3354": -0.2802867533, + "3355": -0.2680024401, + "3356": -0.2557181268, + "3357": -0.2385880148, + "3358": -0.2214579028, + "3359": -0.1995495968, + "3360": -0.1776412907, + "3361": -0.1510412527, + "3362": -0.1244412147, + "3363": -0.0932544229, + "3364": -0.0620676312, + "3365": -0.0264171656, + "3366": 0.0092332999, + "3367": 0.0492067431, + "3368": 0.0891801862, + "3369": 0.1333188502, + "3370": 0.1774575141, + "3371": 0.2255872036, + "3372": 0.2737168931, + "3373": 0.3256476623, + "3374": 0.3775784314, + "3375": 0.4331053333, + "3376": 0.4886322352, + "3377": 0.5475361304, + "3378": 0.6064400256, + "3379": 0.6684884474, + "3380": 0.7305368693, + "3381": 0.7954849409, + "3382": 0.8604330126, + "3383": 0.9280244136, + "3384": 0.9956158147, + "3385": 1.0655837929, + "3386": 1.1355517711, + "3387": 1.2076201947, + "3388": 1.2796886183, + "3389": 1.3535730662, + "3390": 1.4274575141, + "3391": 1.5028663981, + "3392": 1.5782752821, + "3393": 1.6549109978, + "3394": 1.7315467135, + "3395": 1.8091068148, + "3396": 1.8866669161, + "3397": 1.9648453086, + "3398": 2.0430237012, + "3399": 2.1215118506, + "3400": 2.2, + "3401": 2.2784881494, + "3402": 2.3569762988, + "3403": 2.4351546914, + "3404": 2.5133330839, + "3405": 2.5908931852, + "3406": 2.6684532865, + "3407": 2.7450890022, + "3408": 2.8217247179, + "3409": 2.8971336019, + "3410": 2.9725424859, + "3411": 3.0464269338, + "3412": 3.1203113817, + "3413": 3.1923798053, + "3414": 3.2644482289, + "3415": 3.3344162071, + "3416": 3.4043841853, + "3417": 3.4719755864, + "3418": 3.5395669874, + "3419": 3.6045150591, + "3420": 3.6694631307, + "3421": 3.7315115526, + "3422": 3.7935599744, + "3423": 3.8524638696, + "3424": 3.9113677648, + "3425": 3.9668946667, + "3426": 4.0224215686, + "3427": 4.0743523377, + "3428": 4.1262831069, + "3429": 4.1744127964, + "3430": 4.2225424859, + "3431": 4.2666811498, + "3432": 4.3108198138, + "3433": 4.3507932569, + "3434": 4.3907667001, + "3435": 4.4264171656, + "3436": 4.4620676312, + "3437": 4.4932544229, + "3438": 4.5244412147, + "3439": 4.5510412527, + "3440": 4.5776412907, + "3441": 4.5995495968, + "3442": 4.6214579028, + "3443": 4.6385880148, + "3444": 4.6557181268, + "3445": 4.6680024401, + "3446": 4.6802867533, + "3447": 4.6876767872, + "3448": 4.6950668211, + "3449": 4.6975334105, + "3450": 4.7, + "3451": 4.6975334105, + "3452": 4.6950668211, + "3453": 4.6876767872, + "3454": 4.6802867533, + "3455": 4.6680024401, + "3456": 4.6557181268, + "3457": 4.6385880148, + "3458": 4.6214579028, + "3459": 4.5995495968, + "3460": 4.5776412907, + "3461": 4.5510412527, + "3462": 4.5244412147, + "3463": 4.4932544229, + "3464": 4.4620676312, + "3465": 4.4264171656, + "3466": 4.3907667001, + "3467": 4.3507932569, + "3468": 4.3108198138, + "3469": 4.2666811498, + "3470": 4.2225424859, + "3471": 4.1744127964, + "3472": 4.1262831069, + "3473": 4.0743523377, + "3474": 4.0224215686, + "3475": 3.9668946667, + "3476": 3.9113677648, + "3477": 3.8524638696, + "3478": 3.7935599744, + "3479": 3.7315115526, + "3480": 3.6694631307, + "3481": 3.6045150591, + "3482": 3.5395669874, + "3483": 3.4719755864, + "3484": 3.4043841853, + "3485": 3.3344162071, + "3486": 3.2644482289, + "3487": 3.1923798053, + "3488": 3.1203113817, + "3489": 3.0464269338, + "3490": 2.9725424859, + "3491": 2.8971336019, + "3492": 2.8217247179, + "3493": 2.7450890022, + "3494": 2.6684532865, + "3495": 2.5908931852, + "3496": 2.5133330839, + "3497": 2.4351546914, + "3498": 2.3569762988, + "3499": 2.2784881494, + "3500": 2.2, + "3501": 2.1215118506, + "3502": 2.0430237012, + "3503": 1.9648453086, + "3504": 1.8866669161, + "3505": 1.8091068148, + "3506": 1.7315467135, + "3507": 1.6549109978, + "3508": 1.5782752821, + "3509": 1.5028663981, + "3510": 1.4274575141, + "3511": 1.3535730662, + "3512": 1.2796886183, + "3513": 1.2076201947, + "3514": 1.1355517711, + "3515": 1.0655837929, + "3516": 0.9956158147, + "3517": 0.9280244136, + "3518": 0.8604330126, + "3519": 0.7954849409, + "3520": 0.7305368693, + "3521": 0.6684884474, + "3522": 0.6064400256, + "3523": 0.5475361304, + "3524": 0.4886322352, + "3525": 0.4331053333, + "3526": 0.3775784314, + "3527": 0.3256476623, + "3528": 0.2737168931, + "3529": 0.2255872036, + "3530": 0.1774575141, + "3531": 0.1333188502, + "3532": 0.0891801862, + "3533": 0.0492067431, + "3534": 0.0092332999, + "3535": -0.0264171656, + "3536": -0.0620676312, + "3537": -0.0932544229, + "3538": -0.1244412147, + "3539": -0.1510412527, + "3540": -0.1776412907, + "3541": -0.1995495968, + "3542": -0.2214579028, + "3543": -0.2385880148, + "3544": -0.2557181268, + "3545": -0.2680024401, + "3546": -0.2802867533, + "3547": -0.2876767872, + "3548": -0.2950668211, + "3549": -0.2975334105, + "3550": -0.3, + "3551": -0.2975334105, + "3552": -0.2950668211, + "3553": -0.2876767872, + "3554": -0.2802867533, + "3555": -0.2680024401, + "3556": -0.2557181268, + "3557": -0.2385880148, + "3558": -0.2214579028, + "3559": -0.1995495968, + "3560": -0.1776412907, + "3561": -0.1510412527, + "3562": -0.1244412147, + "3563": -0.0932544229, + "3564": -0.0620676312, + "3565": -0.0264171656, + "3566": 0.0092332999, + "3567": 0.0492067431, + "3568": 0.0891801862, + "3569": 0.1333188502, + "3570": 0.1774575141, + "3571": 0.2255872036, + "3572": 0.2737168931, + "3573": 0.3256476623, + "3574": 0.3775784314, + "3575": 0.4331053333, + "3576": 0.4886322352, + "3577": 0.5475361304, + "3578": 0.6064400256, + "3579": 0.6684884474, + "3580": 0.7305368693, + "3581": 0.7954849409, + "3582": 0.8604330126, + "3583": 0.9280244136, + "3584": 0.9956158147, + "3585": 1.0655837929, + "3586": 1.1355517711, + "3587": 1.2076201947, + "3588": 1.2796886183, + "3589": 1.3535730662, + "3590": 1.4274575141, + "3591": 1.5028663981, + "3592": 1.5782752821, + "3593": 1.6549109978, + "3594": 1.7315467135, + "3595": 1.8091068148, + "3596": 1.8866669161, + "3597": 1.9648453086, + "3598": 2.0430237012, + "3599": 2.1215118506, + "3600": 2.2, + "3601": 2.2784881494, + "3602": 2.3569762988, + "3603": 2.4351546914, + "3604": 2.5133330839, + "3605": 2.5908931852, + "3606": 2.6684532865, + "3607": 2.7450890022, + "3608": 2.8217247179, + "3609": 2.8971336019, + "3610": 2.9725424859, + "3611": 3.0464269338, + "3612": 3.1203113817, + "3613": 3.1923798053, + "3614": 3.2644482289, + "3615": 3.3344162071, + "3616": 3.4043841853, + "3617": 3.4719755864, + "3618": 3.5395669874, + "3619": 3.6045150591, + "3620": 3.6694631307, + "3621": 3.7315115526, + "3622": 3.7935599744, + "3623": 3.8524638696, + "3624": 3.9113677648, + "3625": 3.9668946667, + "3626": 4.0224215686, + "3627": 4.0743523377, + "3628": 4.1262831069, + "3629": 4.1744127964, + "3630": 4.2225424859, + "3631": 4.2666811498, + "3632": 4.3108198138, + "3633": 4.3507932569, + "3634": 4.3907667001, + "3635": 4.4264171656, + "3636": 4.4620676312, + "3637": 4.4932544229, + "3638": 4.5244412147, + "3639": 4.5510412527, + "3640": 4.5776412907, + "3641": 4.5995495968, + "3642": 4.6214579028, + "3643": 4.6385880148, + "3644": 4.6557181268, + "3645": 4.6680024401, + "3646": 4.6802867533, + "3647": 4.6876767872, + "3648": 4.6950668211, + "3649": 4.6975334105, + "3650": 4.7, + "3651": 4.6975334105, + "3652": 4.6950668211, + "3653": 4.6876767872, + "3654": 4.6802867533, + "3655": 4.6680024401, + "3656": 4.6557181268, + "3657": 4.6385880148, + "3658": 4.6214579028, + "3659": 4.5995495968, + "3660": 4.5776412907, + "3661": 4.5510412527, + "3662": 4.5244412147, + "3663": 4.4932544229, + "3664": 4.4620676312, + "3665": 4.4264171656, + "3666": 4.3907667001, + "3667": 4.3507932569, + "3668": 4.3108198138, + "3669": 4.2666811498, + "3670": 4.2225424859, + "3671": 4.1744127964, + "3672": 4.1262831069, + "3673": 4.0743523377, + "3674": 4.0224215686, + "3675": 3.9668946667, + "3676": 3.9113677648, + "3677": 3.8524638696, + "3678": 3.7935599744, + "3679": 3.7315115526, + "3680": 3.6694631307, + "3681": 3.6045150591, + "3682": 3.5395669874, + "3683": 3.4719755864, + "3684": 3.4043841853, + "3685": 3.3344162071, + "3686": 3.2644482289, + "3687": 3.1923798053, + "3688": 3.1203113817, + "3689": 3.0464269338, + "3690": 2.9725424859, + "3691": 2.8971336019, + "3692": 2.8217247179, + "3693": 2.7450890022, + "3694": 2.6684532865, + "3695": 2.5908931852, + "3696": 2.5133330839, + "3697": 2.4351546914, + "3698": 2.3569762988, + "3699": 2.2784881494, + "3700": 2.2, + "3701": 2.1215118506, + "3702": 2.0430237012, + "3703": 1.9648453086, + "3704": 1.8866669161, + "3705": 1.8091068148, + "3706": 1.7315467135, + "3707": 1.6549109978, + "3708": 1.5782752821, + "3709": 1.5028663981, + "3710": 1.4274575141, + "3711": 1.3535730662, + "3712": 1.2796886183, + "3713": 1.2076201947, + "3714": 1.1355517711, + "3715": 1.0655837929, + "3716": 0.9956158147, + "3717": 0.9280244136, + "3718": 0.8604330126, + "3719": 0.7954849409, + "3720": 0.7305368693, + "3721": 0.6684884474, + "3722": 0.6064400256, + "3723": 0.5475361304, + "3724": 0.4886322352, + "3725": 0.4331053333, + "3726": 0.3775784314, + "3727": 0.3256476623, + "3728": 0.2737168931, + "3729": 0.2255872036, + "3730": 0.1774575141, + "3731": 0.1333188502, + "3732": 0.0891801862, + "3733": 0.0492067431, + "3734": 0.0092332999, + "3735": -0.0264171656, + "3736": -0.0620676312, + "3737": -0.0932544229, + "3738": -0.1244412147, + "3739": -0.1510412527, + "3740": -0.1776412907, + "3741": -0.1995495968, + "3742": -0.2214579028, + "3743": -0.2385880148, + "3744": -0.2557181268, + "3745": -0.2680024401, + "3746": -0.2802867533, + "3747": -0.2876767872, + "3748": -0.2950668211, + "3749": -0.2975334105, + "3750": -0.3, + "3751": -0.2975334105, + "3752": -0.2950668211, + "3753": -0.2876767872, + "3754": -0.2802867533, + "3755": -0.2680024401, + "3756": -0.2557181268, + "3757": -0.2385880148, + "3758": -0.2214579028, + "3759": -0.1995495968, + "3760": -0.1776412907, + "3761": -0.1510412527, + "3762": -0.1244412147, + "3763": -0.0932544229, + "3764": -0.0620676312, + "3765": -0.0264171656, + "3766": 0.0092332999, + "3767": 0.0492067431, + "3768": 0.0891801862, + "3769": 0.1333188502, + "3770": 0.1774575141, + "3771": 0.2255872036, + "3772": 0.2737168931, + "3773": 0.3256476623, + "3774": 0.3775784314, + "3775": 0.4331053333, + "3776": 0.4886322352, + "3777": 0.5475361304, + "3778": 0.6064400256, + "3779": 0.6684884474, + "3780": 0.7305368693, + "3781": 0.7954849409, + "3782": 0.8604330126, + "3783": 0.9280244136, + "3784": 0.9956158147, + "3785": 1.0655837929, + "3786": 1.1355517711, + "3787": 1.2076201947, + "3788": 1.2796886183, + "3789": 1.3535730662, + "3790": 1.4274575141, + "3791": 1.5028663981, + "3792": 1.5782752821, + "3793": 1.6549109978, + "3794": 1.7315467135, + "3795": 1.8091068148, + "3796": 1.8866669161, + "3797": 1.9648453086, + "3798": 2.0430237012, + "3799": 2.1215118506, + "3800": 2.2, + "3801": 2.2784881494, + "3802": 2.3569762988, + "3803": 2.4351546914, + "3804": 2.5133330839, + "3805": 2.5908931852, + "3806": 2.6684532865, + "3807": 2.7450890022, + "3808": 2.8217247179, + "3809": 2.8971336019, + "3810": 2.9725424859, + "3811": 3.0464269338, + "3812": 3.1203113817, + "3813": 3.1923798053, + "3814": 3.2644482289, + "3815": 3.3344162071, + "3816": 3.4043841853, + "3817": 3.4719755864, + "3818": 3.5395669874, + "3819": 3.6045150591, + "3820": 3.6694631307, + "3821": 3.7315115526, + "3822": 3.7935599744, + "3823": 3.8524638696, + "3824": 3.9113677648, + "3825": 3.9668946667, + "3826": 4.0224215686, + "3827": 4.0743523377, + "3828": 4.1262831069, + "3829": 4.1744127964, + "3830": 4.2225424859, + "3831": 4.2666811498, + "3832": 4.3108198138, + "3833": 4.3507932569, + "3834": 4.3907667001, + "3835": 4.4264171656, + "3836": 4.4620676312, + "3837": 4.4932544229, + "3838": 4.5244412147, + "3839": 4.5510412527, + "3840": 4.5776412907, + "3841": 4.5995495968, + "3842": 4.6214579028, + "3843": 4.6385880148, + "3844": 4.6557181268, + "3845": 4.6680024401, + "3846": 4.6802867533, + "3847": 4.6876767872, + "3848": 4.6950668211, + "3849": 4.6975334105, + "3850": 4.7, + "3851": 4.6975334105, + "3852": 4.6950668211, + "3853": 4.6876767872, + "3854": 4.6802867533, + "3855": 4.6680024401, + "3856": 4.6557181268, + "3857": 4.6385880148, + "3858": 4.6214579028, + "3859": 4.5995495968, + "3860": 4.5776412907, + "3861": 4.5510412527, + "3862": 4.5244412147, + "3863": 4.4932544229, + "3864": 4.4620676312, + "3865": 4.4264171656, + "3866": 4.3907667001, + "3867": 4.3507932569, + "3868": 4.3108198138, + "3869": 4.2666811498, + "3870": 4.2225424859, + "3871": 4.1744127964, + "3872": 4.1262831069, + "3873": 4.0743523377, + "3874": 4.0224215686, + "3875": 3.9668946667, + "3876": 3.9113677648, + "3877": 3.8524638696, + "3878": 3.7935599744, + "3879": 3.7315115526, + "3880": 3.6694631307, + "3881": 3.6045150591, + "3882": 3.5395669874, + "3883": 3.4719755864, + "3884": 3.4043841853, + "3885": 3.3344162071, + "3886": 3.2644482289, + "3887": 3.1923798053, + "3888": 3.1203113817, + "3889": 3.0464269338, + "3890": 2.9725424859, + "3891": 2.8971336019, + "3892": 2.8217247179, + "3893": 2.7450890022, + "3894": 2.6684532865, + "3895": 2.5908931852, + "3896": 2.5133330839, + "3897": 2.4351546914, + "3898": 2.3569762988, + "3899": 2.2784881494, + "3900": 2.2, + "3901": 2.1215118506, + "3902": 2.0430237012, + "3903": 1.9648453086, + "3904": 1.8866669161, + "3905": 1.8091068148, + "3906": 1.7315467135, + "3907": 1.6549109978, + "3908": 1.5782752821, + "3909": 1.5028663981, + "3910": 1.4274575141, + "3911": 1.3535730662, + "3912": 1.2796886183, + "3913": 1.2076201947, + "3914": 1.1355517711, + "3915": 1.0655837929, + "3916": 0.9956158147, + "3917": 0.9280244136, + "3918": 0.8604330126, + "3919": 0.7954849409, + "3920": 0.7305368693, + "3921": 0.6684884474, + "3922": 0.6064400256, + "3923": 0.5475361304, + "3924": 0.4886322352, + "3925": 0.4331053333, + "3926": 0.3775784314, + "3927": 0.3256476623, + "3928": 0.2737168931, + "3929": 0.2255872036, + "3930": 0.1774575141, + "3931": 0.1333188502, + "3932": 0.0891801862, + "3933": 0.0492067431, + "3934": 0.0092332999, + "3935": -0.0264171656, + "3936": -0.0620676312, + "3937": -0.0932544229, + "3938": -0.1244412147, + "3939": -0.1510412527, + "3940": -0.1776412907, + "3941": -0.1995495968, + "3942": -0.2214579028, + "3943": -0.2385880148, + "3944": -0.2557181268, + "3945": -0.2680024401, + "3946": -0.2802867533, + "3947": -0.2876767872, + "3948": -0.2950668211, + "3949": -0.2975334105, + "3950": -0.3, + "3951": -0.2975334105, + "3952": -0.2950668211, + "3953": -0.2876767872, + "3954": -0.2802867533, + "3955": -0.2680024401, + "3956": -0.2557181268, + "3957": -0.2385880148, + "3958": -0.2214579028, + "3959": -0.1995495968, + "3960": -0.1776412907, + "3961": -0.1510412527, + "3962": -0.1244412147, + "3963": -0.0932544229, + "3964": -0.0620676312, + "3965": -0.0264171656, + "3966": 0.0092332999, + "3967": 0.0492067431, + "3968": 0.0891801862, + "3969": 0.1333188502, + "3970": 0.1774575141, + "3971": 0.2255872036, + "3972": 0.2737168931, + "3973": 0.3256476623, + "3974": 0.3775784314, + "3975": 0.4331053333, + "3976": 0.4886322352, + "3977": 0.5475361304, + "3978": 0.6064400256, + "3979": 0.6684884474, + "3980": 0.7305368693, + "3981": 0.7954849409, + "3982": 0.8604330126, + "3983": 0.9280244136, + "3984": 0.9956158147, + "3985": 1.0655837929, + "3986": 1.1355517711, + "3987": 1.2076201947, + "3988": 1.2796886183, + "3989": 1.3535730662, + "3990": 1.4274575141, + "3991": 1.5028663981, + "3992": 1.5782752821, + "3993": 1.6549109978, + "3994": 1.7315467135, + "3995": 1.8091068148, + "3996": 1.8866669161, + "3997": 1.9648453086, + "3998": 2.0430237012, + "3999": 2.1215118506, + "4000": 2.2, + "4001": 2.2784881494, + "4002": 2.3569762988, + "4003": 2.4351546914, + "4004": 2.5133330839, + "4005": 2.5908931852, + "4006": 2.6684532865, + "4007": 2.7450890022, + "4008": 2.8217247179, + "4009": 2.8971336019, + "4010": 2.9725424859, + "4011": 3.0464269338, + "4012": 3.1203113817, + "4013": 3.1923798053, + "4014": 3.2644482289, + "4015": 3.3344162071, + "4016": 3.4043841853, + "4017": 3.4719755864, + "4018": 3.5395669874, + "4019": 3.6045150591, + "4020": 3.6694631307, + "4021": 3.7315115526, + "4022": 3.7935599744, + "4023": 3.8524638696, + "4024": 3.9113677648, + "4025": 3.9668946667, + "4026": 4.0224215686, + "4027": 4.0743523377, + "4028": 4.1262831069, + "4029": 4.1744127964, + "4030": 4.2225424859, + "4031": 4.2666811498, + "4032": 4.3108198138, + "4033": 4.3507932569, + "4034": 4.3907667001, + "4035": 4.4264171656, + "4036": 4.4620676312, + "4037": 4.4932544229, + "4038": 4.5244412147, + "4039": 4.5510412527, + "4040": 4.5776412907, + "4041": 4.5995495968, + "4042": 4.6214579028, + "4043": 4.6385880148, + "4044": 4.6557181268, + "4045": 4.6680024401, + "4046": 4.6802867533, + "4047": 4.6876767872, + "4048": 4.6950668211, + "4049": 4.6975334105, + "4050": 4.7, + "4051": 4.6975334105, + "4052": 4.6950668211, + "4053": 4.6876767872, + "4054": 4.6802867533, + "4055": 4.6680024401, + "4056": 4.6557181268, + "4057": 4.6385880148, + "4058": 4.6214579028, + "4059": 4.5995495968, + "4060": 4.5776412907, + "4061": 4.5510412527, + "4062": 4.5244412147, + "4063": 4.4932544229, + "4064": 4.4620676312, + "4065": 4.4264171656, + "4066": 4.3907667001, + "4067": 4.3507932569, + "4068": 4.3108198138, + "4069": 4.2666811498, + "4070": 4.2225424859, + "4071": 4.1744127964, + "4072": 4.1262831069, + "4073": 4.0743523377, + "4074": 4.0224215686, + "4075": 3.9668946667, + "4076": 3.9113677648, + "4077": 3.8524638696, + "4078": 3.7935599744, + "4079": 3.7315115526, + "4080": 3.6694631307, + "4081": 3.6045150591, + "4082": 3.5395669874, + "4083": 3.4719755864, + "4084": 3.4043841853, + "4085": 3.3344162071, + "4086": 3.2644482289, + "4087": 3.1923798053, + "4088": 3.1203113817, + "4089": 3.0464269338, + "4090": 2.9725424859, + "4091": 2.8971336019, + "4092": 2.8217247179, + "4093": 2.7450890022, + "4094": 2.6684532865, + "4095": 2.5908931852, + "4096": 2.5133330839, + "4097": 2.4351546914, + "4098": 2.3569762988, + "4099": 2.2784881494, + "4100": 2.2, + "4101": 2.1215118506, + "4102": 2.0430237012, + "4103": 1.9648453086, + "4104": 1.8866669161, + "4105": 1.8091068148, + "4106": 1.7315467135, + "4107": 1.6549109978, + "4108": 1.5782752821, + "4109": 1.5028663981, + "4110": 1.4274575141, + "4111": 1.3535730662, + "4112": 1.2796886183, + "4113": 1.2076201947, + "4114": 1.1355517711, + "4115": 1.0655837929, + "4116": 0.9956158147, + "4117": 0.9280244136, + "4118": 0.8604330126, + "4119": 0.7954849409, + "4120": 0.7305368693, + "4121": 0.6684884474, + "4122": 0.6064400256, + "4123": 0.5475361304, + "4124": 0.4886322352, + "4125": 0.4331053333, + "4126": 0.3775784314, + "4127": 0.3256476623, + "4128": 0.2737168931, + "4129": 0.2255872036, + "4130": 0.1774575141, + "4131": 0.1333188502, + "4132": 0.0891801862, + "4133": 0.0492067431, + "4134": 0.0092332999, + "4135": -0.0264171656, + "4136": -0.0620676312, + "4137": -0.0932544229, + "4138": -0.1244412147, + "4139": -0.1510412527, + "4140": -0.1776412907, + "4141": -0.1995495968, + "4142": -0.2214579028, + "4143": -0.2385880148, + "4144": -0.2557181268, + "4145": -0.2680024401, + "4146": -0.2802867533, + "4147": -0.2876767872, + "4148": -0.2950668211, + "4149": -0.2975334105, + "4150": -0.3, + "4151": -0.2975334105, + "4152": -0.2950668211, + "4153": -0.2876767872, + "4154": -0.2802867533, + "4155": -0.2680024401, + "4156": -0.2557181268, + "4157": -0.2385880148, + "4158": -0.2214579028, + "4159": -0.1995495968, + "4160": -0.1776412907, + "4161": -0.1510412527, + "4162": -0.1244412147, + "4163": -0.0932544229, + "4164": -0.0620676312, + "4165": -0.0264171656, + "4166": 0.0092332999, + "4167": 0.0492067431, + "4168": 0.0891801862, + "4169": 0.1333188502, + "4170": 0.1774575141, + "4171": 0.2255872036, + "4172": 0.2737168931, + "4173": 0.3256476623, + "4174": 0.3775784314, + "4175": 0.4331053333, + "4176": 0.4886322352, + "4177": 0.5475361304, + "4178": 0.6064400256, + "4179": 0.6684884474, + "4180": 0.7305368693, + "4181": 0.7954849409, + "4182": 0.8604330126, + "4183": 0.9280244136, + "4184": 0.9956158147, + "4185": 1.0655837929, + "4186": 1.1355517711, + "4187": 1.2076201947, + "4188": 1.2796886183, + "4189": 1.3535730662, + "4190": 1.4274575141, + "4191": 1.5028663981, + "4192": 1.5782752821, + "4193": 1.6549109978, + "4194": 1.7315467135, + "4195": 1.8091068148, + "4196": 1.8866669161, + "4197": 1.9648453086, + "4198": 2.0430237012, + "4199": 2.1215118506, + "4200": 2.2, + "4201": 2.2784881494, + "4202": 2.3569762988, + "4203": 2.4351546914, + "4204": 2.5133330839, + "4205": 2.5908931852, + "4206": 2.6684532865, + "4207": 2.7450890022, + "4208": 2.8217247179, + "4209": 2.8971336019, + "4210": 2.9725424859, + "4211": 3.0464269338, + "4212": 3.1203113817, + "4213": 3.1923798053, + "4214": 3.2644482289, + "4215": 3.3344162071, + "4216": 3.4043841853, + "4217": 3.4719755864, + "4218": 3.5395669874, + "4219": 3.6045150591, + "4220": 3.6694631307, + "4221": 3.7315115526, + "4222": 3.7935599744, + "4223": 3.8524638696, + "4224": 3.9113677648, + "4225": 3.9668946667, + "4226": 4.0224215686, + "4227": 4.0743523377, + "4228": 4.1262831069, + "4229": 4.1744127964, + "4230": 4.2225424859, + "4231": 4.2666811498, + "4232": 4.3108198138, + "4233": 4.3507932569, + "4234": 4.3907667001, + "4235": 4.4264171656, + "4236": 4.4620676312, + "4237": 4.4932544229, + "4238": 4.5244412147, + "4239": 4.5510412527, + "4240": 4.5776412907, + "4241": 4.5995495968, + "4242": 4.6214579028, + "4243": 4.6385880148, + "4244": 4.6557181268, + "4245": 4.6680024401, + "4246": 4.6802867533, + "4247": 4.6876767872, + "4248": 4.6950668211, + "4249": 4.6975334105, + "4250": 4.7, + "4251": 4.6975334105, + "4252": 4.6950668211, + "4253": 4.6876767872, + "4254": 4.6802867533, + "4255": 4.6680024401, + "4256": 4.6557181268, + "4257": 4.6385880148, + "4258": 4.6214579028, + "4259": 4.5995495968, + "4260": 4.5776412907, + "4261": 4.5510412527, + "4262": 4.5244412147, + "4263": 4.4932544229, + "4264": 4.4620676312, + "4265": 4.4264171656, + "4266": 4.3907667001, + "4267": 4.3507932569, + "4268": 4.3108198138, + "4269": 4.2666811498, + "4270": 4.2225424859, + "4271": 4.1744127964, + "4272": 4.1262831069, + "4273": 4.0743523377, + "4274": 4.0224215686, + "4275": 3.9668946667, + "4276": 3.9113677648, + "4277": 3.8524638696, + "4278": 3.7935599744, + "4279": 3.7315115526, + "4280": 3.6694631307, + "4281": 3.6045150591, + "4282": 3.5395669874, + "4283": 3.4719755864, + "4284": 3.4043841853, + "4285": 3.3344162071, + "4286": 3.2644482289, + "4287": 3.1923798053, + "4288": 3.1203113817, + "4289": 3.0464269338, + "4290": 2.9725424859, + "4291": 2.8971336019, + "4292": 2.8217247179, + "4293": 2.7450890022, + "4294": 2.6684532865, + "4295": 2.5908931852, + "4296": 2.5133330839, + "4297": 2.4351546914, + "4298": 2.3569762988, + "4299": 2.2784881494, + "4300": 2.2, + "4301": 2.1215118506, + "4302": 2.0430237012, + "4303": 1.9648453086, + "4304": 1.8866669161, + "4305": 1.8091068148, + "4306": 1.7315467135, + "4307": 1.6549109978, + "4308": 1.5782752821, + "4309": 1.5028663981, + "4310": 1.4274575141, + "4311": 1.3535730662, + "4312": 1.2796886183, + "4313": 1.2076201947, + "4314": 1.1355517711, + "4315": 1.0655837929, + "4316": 0.9956158147, + "4317": 0.9280244136, + "4318": 0.8604330126, + "4319": 0.7954849409, + "4320": 0.7305368693, + "4321": 0.6684884474, + "4322": 0.6064400256, + "4323": 0.5475361304, + "4324": 0.4886322352, + "4325": 0.4331053333, + "4326": 0.3775784314, + "4327": 0.3256476623, + "4328": 0.2737168931, + "4329": 0.2255872036, + "4330": 0.1774575141, + "4331": 0.1333188502, + "4332": 0.0891801862, + "4333": 0.0492067431, + "4334": 0.0092332999, + "4335": -0.0264171656, + "4336": -0.0620676312, + "4337": -0.0932544229, + "4338": -0.1244412147, + "4339": -0.1510412527, + "4340": -0.1776412907, + "4341": -0.1995495968, + "4342": -0.2214579028, + "4343": -0.2385880148, + "4344": -0.2557181268, + "4345": -0.2680024401, + "4346": -0.2802867533, + "4347": -0.2876767872, + "4348": -0.2950668211, + "4349": -0.2975334105, + "4350": -0.3, + "4351": -0.2975334105, + "4352": -0.2950668211, + "4353": -0.2876767872, + "4354": -0.2802867533, + "4355": -0.2680024401, + "4356": -0.2557181268, + "4357": -0.2385880148, + "4358": -0.2214579028, + "4359": -0.1995495968, + "4360": -0.1776412907, + "4361": -0.1510412527, + "4362": -0.1244412147, + "4363": -0.0932544229, + "4364": -0.0620676312, + "4365": -0.0264171656, + "4366": 0.0092332999, + "4367": 0.0492067431, + "4368": 0.0891801862, + "4369": 0.1333188502, + "4370": 0.1774575141, + "4371": 0.2255872036, + "4372": 0.2737168931, + "4373": 0.3256476623, + "4374": 0.3775784314, + "4375": 0.4331053333, + "4376": 0.4886322352, + "4377": 0.5475361304, + "4378": 0.6064400256, + "4379": 0.6684884474, + "4380": 0.7305368693, + "4381": 0.7954849409, + "4382": 0.8604330126, + "4383": 0.9280244136, + "4384": 0.9956158147, + "4385": 1.0655837929, + "4386": 1.1355517711, + "4387": 1.2076201947, + "4388": 1.2796886183, + "4389": 1.3535730662, + "4390": 1.4274575141, + "4391": 1.5028663981, + "4392": 1.5782752821, + "4393": 1.6549109978, + "4394": 1.7315467135, + "4395": 1.8091068148, + "4396": 1.8866669161, + "4397": 1.9648453086, + "4398": 2.0430237012, + "4399": 2.1215118506, + "4400": 2.2, + "4401": 2.2784881494, + "4402": 2.3569762988, + "4403": 2.4351546914, + "4404": 2.5133330839, + "4405": 2.5908931852, + "4406": 2.6684532865, + "4407": 2.7450890022, + "4408": 2.8217247179, + "4409": 2.8971336019, + "4410": 2.9725424859, + "4411": 3.0464269338, + "4412": 3.1203113817, + "4413": 3.1923798053, + "4414": 3.2644482289, + "4415": 3.3344162071, + "4416": 3.4043841853, + "4417": 3.4719755864, + "4418": 3.5395669874, + "4419": 3.6045150591, + "4420": 3.6694631307, + "4421": 3.7315115526, + "4422": 3.7935599744, + "4423": 3.8524638696, + "4424": 3.9113677648, + "4425": 3.9668946667, + "4426": 4.0224215686, + "4427": 4.0743523377, + "4428": 4.1262831069, + "4429": 4.1744127964, + "4430": 4.2225424859, + "4431": 4.2666811498, + "4432": 4.3108198138, + "4433": 4.3507932569, + "4434": 4.3907667001, + "4435": 4.4264171656, + "4436": 4.4620676312, + "4437": 4.4932544229, + "4438": 4.5244412147, + "4439": 4.5510412527, + "4440": 4.5776412907, + "4441": 4.5995495968, + "4442": 4.6214579028, + "4443": 4.6385880148, + "4444": 4.6557181268, + "4445": 4.6680024401, + "4446": 4.6802867533, + "4447": 4.6876767872, + "4448": 4.6950668211, + "4449": 4.6975334105, + "4450": 4.7, + "4451": 4.6975334105, + "4452": 4.6950668211, + "4453": 4.6876767872, + "4454": 4.6802867533, + "4455": 4.6680024401, + "4456": 4.6557181268, + "4457": 4.6385880148, + "4458": 4.6214579028, + "4459": 4.5995495968, + "4460": 4.5776412907, + "4461": 4.5510412527, + "4462": 4.5244412147, + "4463": 4.4932544229, + "4464": 4.4620676312, + "4465": 4.4264171656, + "4466": 4.3907667001, + "4467": 4.3507932569, + "4468": 4.3108198138, + "4469": 4.2666811498, + "4470": 4.2225424859, + "4471": 4.1744127964, + "4472": 4.1262831069, + "4473": 4.0743523377, + "4474": 4.0224215686, + "4475": 3.9668946667, + "4476": 3.9113677648, + "4477": 3.8524638696, + "4478": 3.7935599744, + "4479": 3.7315115526, + "4480": 3.6694631307, + "4481": 3.6045150591, + "4482": 3.5395669874, + "4483": 3.4719755864, + "4484": 3.4043841853, + "4485": 3.3344162071, + "4486": 3.2644482289, + "4487": 3.1923798053, + "4488": 3.1203113817, + "4489": 3.0464269338, + "4490": 2.9725424859, + "4491": 2.8971336019, + "4492": 2.8217247179, + "4493": 2.7450890022, + "4494": 2.6684532865, + "4495": 2.5908931852, + "4496": 2.5133330839, + "4497": 2.4351546914, + "4498": 2.3569762988, + "4499": 2.2784881494, + "4500": 2.2, + "4501": 2.1215118506, + "4502": 2.0430237012, + "4503": 1.9648453086, + "4504": 1.8866669161, + "4505": 1.8091068148, + "4506": 1.7315467135, + "4507": 1.6549109978, + "4508": 1.5782752821, + "4509": 1.5028663981, + "4510": 1.4274575141, + "4511": 1.3535730662, + "4512": 1.2796886183, + "4513": 1.2076201947, + "4514": 1.1355517711, + "4515": 1.0655837929, + "4516": 0.9956158147, + "4517": 0.9280244136, + "4518": 0.8604330126, + "4519": 0.7954849409, + "4520": 0.7305368693, + "4521": 0.6684884474, + "4522": 0.6064400256, + "4523": 0.5475361304, + "4524": 0.4886322352, + "4525": 0.4331053333, + "4526": 0.3775784314, + "4527": 0.3256476623, + "4528": 0.2737168931, + "4529": 0.2255872036, + "4530": 0.1774575141, + "4531": 0.1333188502, + "4532": 0.0891801862, + "4533": 0.0492067431, + "4534": 0.0092332999, + "4535": -0.0264171656, + "4536": -0.0620676312, + "4537": -0.0932544229, + "4538": -0.1244412147, + "4539": -0.1510412527, + "4540": -0.1776412907, + "4541": -0.1995495968, + "4542": -0.2214579028, + "4543": -0.2385880148, + "4544": -0.2557181268, + "4545": -0.2680024401, + "4546": -0.2802867533, + "4547": -0.2876767872, + "4548": -0.2950668211, + "4549": -0.2975334105, + "4550": -0.3, + "4551": -0.2975334105, + "4552": -0.2950668211, + "4553": -0.2876767872, + "4554": -0.2802867533, + "4555": -0.2680024401, + "4556": -0.2557181268, + "4557": -0.2385880148, + "4558": -0.2214579028, + "4559": -0.1995495968, + "4560": -0.1776412907, + "4561": -0.1510412527, + "4562": -0.1244412147, + "4563": -0.0932544229, + "4564": -0.0620676312, + "4565": -0.0264171656, + "4566": 0.0092332999, + "4567": 0.0492067431, + "4568": 0.0891801862, + "4569": 0.1333188502, + "4570": 0.1774575141, + "4571": 0.2255872036, + "4572": 0.2737168931, + "4573": 0.3256476623, + "4574": 0.3775784314, + "4575": 0.4331053333, + "4576": 0.4886322352, + "4577": 0.5475361304, + "4578": 0.6064400256, + "4579": 0.6684884474, + "4580": 0.7305368693, + "4581": 0.7954849409, + "4582": 0.8604330126, + "4583": 0.9280244136, + "4584": 0.9956158147, + "4585": 1.0655837929, + "4586": 1.1355517711, + "4587": 1.2076201947, + "4588": 1.2796886183, + "4589": 1.3535730662, + "4590": 1.4274575141, + "4591": 1.5028663981, + "4592": 1.5782752821, + "4593": 1.6549109978, + "4594": 1.7315467135, + "4595": 1.8091068148, + "4596": 1.8866669161, + "4597": 1.9648453086, + "4598": 2.0430237012, + "4599": 2.1215118506, + "4600": 2.2, + "4601": 2.2784881494, + "4602": 2.3569762988, + "4603": 2.4351546914, + "4604": 2.5133330839, + "4605": 2.5908931852, + "4606": 2.6684532865, + "4607": 2.7450890022, + "4608": 2.8217247179, + "4609": 2.8971336019, + "4610": 2.9725424859, + "4611": 3.0464269338, + "4612": 3.1203113817, + "4613": 3.1923798053, + "4614": 3.2644482289, + "4615": 3.3344162071, + "4616": 3.4043841853, + "4617": 3.4719755864, + "4618": 3.5395669874, + "4619": 3.6045150591, + "4620": 3.6694631307, + "4621": 3.7315115526, + "4622": 3.7935599744, + "4623": 3.8524638696, + "4624": 3.9113677648, + "4625": 3.9668946667, + "4626": 4.0224215686, + "4627": 4.0743523377, + "4628": 4.1262831069, + "4629": 4.1744127964, + "4630": 4.2225424859, + "4631": 4.2666811498, + "4632": 4.3108198138, + "4633": 4.3507932569, + "4634": 4.3907667001, + "4635": 4.4264171656, + "4636": 4.4620676312, + "4637": 4.4932544229, + "4638": 4.5244412147, + "4639": 4.5510412527, + "4640": 4.5776412907, + "4641": 4.5995495968, + "4642": 4.6214579028, + "4643": 4.6385880148, + "4644": 4.6557181268, + "4645": 4.6680024401, + "4646": 4.6802867533, + "4647": 4.6876767872, + "4648": 4.6950668211, + "4649": 4.6975334105, + "4650": 4.7, + "4651": 4.6975334105, + "4652": 4.6950668211, + "4653": 4.6876767872, + "4654": 4.6802867533, + "4655": 4.6680024401, + "4656": 4.6557181268, + "4657": 4.6385880148, + "4658": 4.6214579028, + "4659": 4.5995495968, + "4660": 4.5776412907, + "4661": 4.5510412527, + "4662": 4.5244412147, + "4663": 4.4932544229, + "4664": 4.4620676312, + "4665": 4.4264171656, + "4666": 4.3907667001, + "4667": 4.3507932569, + "4668": 4.3108198138, + "4669": 4.2666811498, + "4670": 4.2225424859, + "4671": 4.1744127964, + "4672": 4.1262831069, + "4673": 4.0743523377, + "4674": 4.0224215686, + "4675": 3.9668946667, + "4676": 3.9113677648, + "4677": 3.8524638696, + "4678": 3.7935599744, + "4679": 3.7315115526, + "4680": 3.6694631307, + "4681": 3.6045150591, + "4682": 3.5395669874, + "4683": 3.4719755864, + "4684": 3.4043841853, + "4685": 3.3344162071, + "4686": 3.2644482289, + "4687": 3.1923798053, + "4688": 3.1203113817, + "4689": 3.0464269338, + "4690": 2.9725424859, + "4691": 2.8971336019, + "4692": 2.8217247179, + "4693": 2.7450890022, + "4694": 2.6684532865, + "4695": 2.5908931852, + "4696": 2.5133330839, + "4697": 2.4351546914, + "4698": 2.3569762988, + "4699": 2.2784881494, + "4700": 2.2, + "4701": 2.1215118506, + "4702": 2.0430237012, + "4703": 1.9648453086, + "4704": 1.8866669161, + "4705": 1.8091068148, + "4706": 1.7315467135, + "4707": 1.6549109978, + "4708": 1.5782752821, + "4709": 1.5028663981, + "4710": 1.4274575141, + "4711": 1.3535730662, + "4712": 1.2796886183, + "4713": 1.2076201947, + "4714": 1.1355517711, + "4715": 1.0655837929, + "4716": 0.9956158147, + "4717": 0.9280244136, + "4718": 0.8604330126, + "4719": 0.7954849409, + "4720": 0.7305368693, + "4721": 0.6684884474, + "4722": 0.6064400256, + "4723": 0.5475361304, + "4724": 0.4886322352, + "4725": 0.4331053333, + "4726": 0.3775784314, + "4727": 0.3256476623, + "4728": 0.2737168931, + "4729": 0.2255872036, + "4730": 0.1774575141, + "4731": 0.1333188502, + "4732": 0.0891801862, + "4733": 0.0492067431, + "4734": 0.0092332999, + "4735": -0.0264171656, + "4736": -0.0620676312, + "4737": -0.0932544229, + "4738": -0.1244412147, + "4739": -0.1510412527, + "4740": -0.1776412907, + "4741": -0.1995495968, + "4742": -0.2214579028, + "4743": -0.2385880148, + "4744": -0.2557181268, + "4745": -0.2680024401, + "4746": -0.2802867533, + "4747": -0.2876767872, + "4748": -0.2950668211, + "4749": -0.2975334105, + "4750": -0.3, + "4751": -0.2975334105, + "4752": -0.2950668211, + "4753": -0.2876767872, + "4754": -0.2802867533, + "4755": -0.2680024401, + "4756": -0.2557181268, + "4757": -0.2385880148, + "4758": -0.2214579028, + "4759": -0.1995495968, + "4760": -0.1776412907, + "4761": -0.1510412527, + "4762": -0.1244412147, + "4763": -0.0932544229, + "4764": -0.0620676312, + "4765": -0.0264171656, + "4766": 0.0092332999, + "4767": 0.0492067431, + "4768": 0.0891801862, + "4769": 0.1333188502, + "4770": 0.1774575141, + "4771": 0.2255872036, + "4772": 0.2737168931, + "4773": 0.3256476623, + "4774": 0.3775784314, + "4775": 0.4331053333, + "4776": 0.4886322352, + "4777": 0.5475361304, + "4778": 0.6064400256, + "4779": 0.6684884474, + "4780": 0.7305368693, + "4781": 0.7954849409, + "4782": 0.8604330126, + "4783": 0.9280244136, + "4784": 0.9956158147, + "4785": 1.0655837929, + "4786": 1.1355517711, + "4787": 1.2076201947, + "4788": 1.2796886183, + "4789": 1.3535730662, + "4790": 1.4274575141, + "4791": 1.5028663981, + "4792": 1.5782752821, + "4793": 1.6549109978, + "4794": 1.7315467135, + "4795": 1.8091068148, + "4796": 1.8866669161, + "4797": 1.9648453086, + "4798": 2.0430237012, + "4799": 2.1215118506, + "4800": 2.2, + "4801": 2.2784881494, + "4802": 2.3569762988, + "4803": 2.4351546914, + "4804": 2.5133330839, + "4805": 2.5908931852, + "4806": 2.6684532865, + "4807": 2.7450890022, + "4808": 2.8217247179, + "4809": 2.8971336019, + "4810": 2.9725424859, + "4811": 3.0464269338, + "4812": 3.1203113817, + "4813": 3.1923798053, + "4814": 3.2644482289, + "4815": 3.3344162071, + "4816": 3.4043841853, + "4817": 3.4719755864, + "4818": 3.5395669874, + "4819": 3.6045150591, + "4820": 3.6694631307, + "4821": 3.7315115526, + "4822": 3.7935599744, + "4823": 3.8524638696, + "4824": 3.9113677648, + "4825": 3.9668946667, + "4826": 4.0224215686, + "4827": 4.0743523377, + "4828": 4.1262831069, + "4829": 4.1744127964, + "4830": 4.2225424859, + "4831": 4.2666811498, + "4832": 4.3108198138, + "4833": 4.3507932569, + "4834": 4.3907667001, + "4835": 4.4264171656, + "4836": 4.4620676312, + "4837": 4.4932544229, + "4838": 4.5244412147, + "4839": 4.5510412527, + "4840": 4.5776412907, + "4841": 4.5995495968, + "4842": 4.6214579028, + "4843": 4.6385880148, + "4844": 4.6557181268, + "4845": 4.6680024401, + "4846": 4.6802867533, + "4847": 4.6876767872, + "4848": 4.6950668211, + "4849": 4.6975334105, + "4850": 4.7, + "4851": 4.6975334105, + "4852": 4.6950668211, + "4853": 4.6876767872, + "4854": 4.6802867533, + "4855": 4.6680024401, + "4856": 4.6557181268, + "4857": 4.6385880148, + "4858": 4.6214579028, + "4859": 4.5995495968, + "4860": 4.5776412907, + "4861": 4.5510412527, + "4862": 4.5244412147, + "4863": 4.4932544229, + "4864": 4.4620676312, + "4865": 4.4264171656, + "4866": 4.3907667001, + "4867": 4.3507932569, + "4868": 4.3108198138, + "4869": 4.2666811498, + "4870": 4.2225424859, + "4871": 4.1744127964, + "4872": 4.1262831069, + "4873": 4.0743523377, + "4874": 4.0224215686, + "4875": 3.9668946667, + "4876": 3.9113677648, + "4877": 3.8524638696, + "4878": 3.7935599744, + "4879": 3.7315115526, + "4880": 3.6694631307, + "4881": 3.6045150591, + "4882": 3.5395669874, + "4883": 3.4719755864, + "4884": 3.4043841853, + "4885": 3.3344162071, + "4886": 3.2644482289, + "4887": 3.1923798053, + "4888": 3.1203113817, + "4889": 3.0464269338, + "4890": 2.9725424859, + "4891": 2.8971336019, + "4892": 2.8217247179, + "4893": 2.7450890022, + "4894": 2.6684532865, + "4895": 2.5908931852, + "4896": 2.5133330839, + "4897": 2.4351546914, + "4898": 2.3569762988, + "4899": 2.2784881494, + "4900": 2.2, + "4901": 2.1215118506, + "4902": 2.0430237012, + "4903": 1.9648453086, + "4904": 1.8866669161, + "4905": 1.8091068148, + "4906": 1.7315467135, + "4907": 1.6549109978, + "4908": 1.5782752821, + "4909": 1.5028663981, + "4910": 1.4274575141, + "4911": 1.3535730662, + "4912": 1.2796886183, + "4913": 1.2076201947, + "4914": 1.1355517711, + "4915": 1.0655837929, + "4916": 0.9956158147, + "4917": 0.9280244136, + "4918": 0.8604330126, + "4919": 0.7954849409, + "4920": 0.7305368693, + "4921": 0.6684884474, + "4922": 0.6064400256, + "4923": 0.5475361304, + "4924": 0.4886322352, + "4925": 0.4331053333, + "4926": 0.3775784314, + "4927": 0.3256476623, + "4928": 0.2737168931, + "4929": 0.2255872036, + "4930": 0.1774575141, + "4931": 0.1333188502, + "4932": 0.0891801862, + "4933": 0.0492067431, + "4934": 0.0092332999, + "4935": -0.0264171656, + "4936": -0.0620676312, + "4937": -0.0932544229, + "4938": -0.1244412147, + "4939": -0.1510412527, + "4940": -0.1776412907, + "4941": -0.1995495968, + "4942": -0.2214579028, + "4943": -0.2385880148, + "4944": -0.2557181268, + "4945": -0.2680024401, + "4946": -0.2802867533, + "4947": -0.2876767872, + "4948": -0.2950668211, + "4949": -0.2975334105, + "4950": -0.3, + "4951": -0.2975334105, + "4952": -0.2950668211, + "4953": -0.2876767872, + "4954": -0.2802867533, + "4955": -0.2680024401, + "4956": -0.2557181268, + "4957": -0.2385880148, + "4958": -0.2214579028, + "4959": -0.1995495968, + "4960": -0.1776412907, + "4961": -0.1510412527, + "4962": -0.1244412147, + "4963": -0.0932544229, + "4964": -0.0620676312, + "4965": -0.0264171656, + "4966": 0.0092332999, + "4967": 0.0492067431, + "4968": 0.0891801862, + "4969": 0.1333188502, + "4970": 0.1774575141, + "4971": 0.2255872036, + "4972": 0.2737168931, + "4973": 0.3256476623, + "4974": 0.3775784314, + "4975": 0.4331053333, + "4976": 0.4886322352, + "4977": 0.5475361304, + "4978": 0.6064400256, + "4979": 0.6684884474, + "4980": 0.7305368693, + "4981": 0.7954849409, + "4982": 0.8604330126, + "4983": 0.9280244136, + "4984": 0.9956158147, + "4985": 1.0655837929, + "4986": 1.1355517711, + "4987": 1.2076201947, + "4988": 1.2796886183, + "4989": 1.3535730662, + "4990": 1.4274575141, + "4991": 1.5028663981, + "4992": 1.5782752821, + "4993": 1.6549109978, + "4994": 1.7315467135, + "4995": 1.8091068148, + "4996": 1.8866669161, + "4997": 1.9648453086, + "4998": 2.0430237012, + "4999": 2.1215118506, + "5000": 2.2, + "5001": 2.2784881494, + "5002": 2.3569762988, + "5003": 2.4351546914, + "5004": 2.5133330839, + "5005": 2.5908931852, + "5006": 2.6684532865, + "5007": 2.7450890022, + "5008": 2.8217247179, + "5009": 2.8971336019, + "5010": 2.9725424859, + "5011": 3.0464269338, + "5012": 3.1203113817, + "5013": 3.1923798053, + "5014": 3.2644482289, + "5015": 3.3344162071, + "5016": 3.4043841853, + "5017": 3.4719755864, + "5018": 3.5395669874, + "5019": 3.6045150591, + "5020": 3.6694631307, + "5021": 3.7315115526, + "5022": 3.7935599744, + "5023": 3.8524638696, + "5024": 3.9113677648, + "5025": 3.9668946667, + "5026": 4.0224215686, + "5027": 4.0743523377, + "5028": 4.1262831069, + "5029": 4.1744127964, + "5030": 4.2225424859, + "5031": 4.2666811498, + "5032": 4.3108198138, + "5033": 4.3507932569, + "5034": 4.3907667001, + "5035": 4.4264171656, + "5036": 4.4620676312, + "5037": 4.4932544229, + "5038": 4.5244412147, + "5039": 4.5510412527, + "5040": 4.5776412907, + "5041": 4.5995495968, + "5042": 4.6214579028, + "5043": 4.6385880148, + "5044": 4.6557181268, + "5045": 4.6680024401, + "5046": 4.6802867533, + "5047": 4.6876767872, + "5048": 4.6950668211, + "5049": 4.6975334105, + "5050": 4.7, + "5051": 4.6975334105, + "5052": 4.6950668211, + "5053": 4.6876767872, + "5054": 4.6802867533, + "5055": 4.6680024401, + "5056": 4.6557181268, + "5057": 4.6385880148, + "5058": 4.6214579028, + "5059": 4.5995495968, + "5060": 4.5776412907, + "5061": 4.5510412527, + "5062": 4.5244412147, + "5063": 4.4932544229, + "5064": 4.4620676312, + "5065": 4.4264171656, + "5066": 4.3907667001, + "5067": 4.3507932569, + "5068": 4.3108198138, + "5069": 4.2666811498, + "5070": 4.2225424859, + "5071": 4.1744127964, + "5072": 4.1262831069, + "5073": 4.0743523377, + "5074": 4.0224215686, + "5075": 3.9668946667, + "5076": 3.9113677648, + "5077": 3.8524638696, + "5078": 3.7935599744, + "5079": 3.7315115526, + "5080": 3.6694631307, + "5081": 3.6045150591, + "5082": 3.5395669874, + "5083": 3.4719755864, + "5084": 3.4043841853, + "5085": 3.3344162071, + "5086": 3.2644482289, + "5087": 3.1923798053, + "5088": 3.1203113817, + "5089": 3.0464269338, + "5090": 2.9725424859, + "5091": 2.8971336019, + "5092": 2.8217247179, + "5093": 2.7450890022, + "5094": 2.6684532865, + "5095": 2.5908931852, + "5096": 2.5133330839, + "5097": 2.4351546914, + "5098": 2.3569762988, + "5099": 2.2784881494, + "5100": 2.2, + "5101": 2.1215118506, + "5102": 2.0430237012, + "5103": 1.9648453086, + "5104": 1.8866669161, + "5105": 1.8091068148, + "5106": 1.7315467135, + "5107": 1.6549109978, + "5108": 1.5782752821, + "5109": 1.5028663981, + "5110": 1.4274575141, + "5111": 1.3535730662, + "5112": 1.2796886183, + "5113": 1.2076201947, + "5114": 1.1355517711, + "5115": 1.0655837929, + "5116": 0.9956158147, + "5117": 0.9280244136, + "5118": 0.8604330126, + "5119": 0.7954849409, + "5120": 0.7305368693, + "5121": 0.6684884474, + "5122": 0.6064400256, + "5123": 0.5475361304, + "5124": 0.4886322352, + "5125": 0.4331053333, + "5126": 0.3775784314, + "5127": 0.3256476623, + "5128": 0.2737168931, + "5129": 0.2255872036, + "5130": 0.1774575141, + "5131": 0.1333188502, + "5132": 0.0891801862, + "5133": 0.0492067431, + "5134": 0.0092332999, + "5135": -0.0264171656, + "5136": -0.0620676312, + "5137": -0.0932544229, + "5138": -0.1244412147, + "5139": -0.1510412527, + "5140": -0.1776412907, + "5141": -0.1995495968, + "5142": -0.2214579028, + "5143": -0.2385880148, + "5144": -0.2557181268, + "5145": -0.2680024401, + "5146": -0.2802867533, + "5147": -0.2876767872, + "5148": -0.2950668211, + "5149": -0.2975334105, + "5150": -0.3, + "5151": -0.2975334105, + "5152": -0.2950668211, + "5153": -0.2876767872, + "5154": -0.2802867533, + "5155": -0.2680024401, + "5156": -0.2557181268, + "5157": -0.2385880148, + "5158": -0.2214579028, + "5159": -0.1995495968, + "5160": -0.1776412907, + "5161": -0.1510412527, + "5162": -0.1244412147, + "5163": -0.0932544229, + "5164": -0.0620676312, + "5165": -0.0264171656, + "5166": 0.0092332999, + "5167": 0.0492067431, + "5168": 0.0891801862, + "5169": 0.1333188502, + "5170": 0.1774575141, + "5171": 0.2255872036, + "5172": 0.2737168931, + "5173": 0.3256476623, + "5174": 0.3775784314, + "5175": 0.4331053333, + "5176": 0.4886322352, + "5177": 0.5475361304, + "5178": 0.6064400256, + "5179": 0.6684884474, + "5180": 0.7305368693, + "5181": 0.7954849409, + "5182": 0.8604330126, + "5183": 0.9280244136, + "5184": 0.9956158147, + "5185": 1.0655837929, + "5186": 1.1355517711, + "5187": 1.2076201947, + "5188": 1.2796886183, + "5189": 1.3535730662, + "5190": 1.4274575141, + "5191": 1.5028663981, + "5192": 1.5782752821, + "5193": 1.6549109978, + "5194": 1.7315467135, + "5195": 1.8091068148, + "5196": 1.8866669161, + "5197": 1.9648453086, + "5198": 2.0430237012, + "5199": 2.1215118506, + "5200": 2.2, + "5201": 2.2784881494, + "5202": 2.3569762988, + "5203": 2.4351546914, + "5204": 2.5133330839, + "5205": 2.5908931852, + "5206": 2.6684532865, + "5207": 2.7450890022, + "5208": 2.8217247179, + "5209": 2.8971336019, + "5210": 2.9725424859, + "5211": 3.0464269338, + "5212": 3.1203113817, + "5213": 3.1923798053, + "5214": 3.2644482289, + "5215": 3.3344162071, + "5216": 3.4043841853, + "5217": 3.4719755864, + "5218": 3.5395669874, + "5219": 3.6045150591, + "5220": 3.6694631307, + "5221": 3.7315115526, + "5222": 3.7935599744, + "5223": 3.8524638696, + "5224": 3.9113677648, + "5225": 3.9668946667, + "5226": 4.0224215686, + "5227": 4.0743523377, + "5228": 4.1262831069, + "5229": 4.1744127964, + "5230": 4.2225424859, + "5231": 4.2666811498, + "5232": 4.3108198138, + "5233": 4.3507932569, + "5234": 4.3907667001, + "5235": 4.4264171656, + "5236": 4.4620676312, + "5237": 4.4932544229, + "5238": 4.5244412147, + "5239": 4.5510412527, + "5240": 4.5776412907, + "5241": 4.5995495968, + "5242": 4.6214579028, + "5243": 4.6385880148, + "5244": 4.6557181268, + "5245": 4.6680024401, + "5246": 4.6802867533, + "5247": 4.6876767872, + "5248": 4.6950668211, + "5249": 4.6975334105, + "5250": 4.7, + "5251": 4.6975334105, + "5252": 4.6950668211, + "5253": 4.6876767872, + "5254": 4.6802867533, + "5255": 4.6680024401, + "5256": 4.6557181268, + "5257": 4.6385880148, + "5258": 4.6214579028, + "5259": 4.5995495968, + "5260": 4.5776412907, + "5261": 4.5510412527, + "5262": 4.5244412147, + "5263": 4.4932544229, + "5264": 4.4620676312, + "5265": 4.4264171656, + "5266": 4.3907667001, + "5267": 4.3507932569, + "5268": 4.3108198138, + "5269": 4.2666811498, + "5270": 4.2225424859, + "5271": 4.1744127964, + "5272": 4.1262831069, + "5273": 4.0743523377, + "5274": 4.0224215686, + "5275": 3.9668946667, + "5276": 3.9113677648, + "5277": 3.8524638696, + "5278": 3.7935599744, + "5279": 3.7315115526, + "5280": 3.6694631307, + "5281": 3.6045150591, + "5282": 3.5395669874, + "5283": 3.4719755864, + "5284": 3.4043841853, + "5285": 3.3344162071, + "5286": 3.2644482289, + "5287": 3.1923798053, + "5288": 3.1203113817, + "5289": 3.0464269338, + "5290": 2.9725424859, + "5291": 2.8971336019, + "5292": 2.8217247179, + "5293": 2.7450890022, + "5294": 2.6684532865, + "5295": 2.5908931852, + "5296": 2.5133330839, + "5297": 2.4351546914, + "5298": 2.3569762988, + "5299": 2.2784881494, + "5300": 2.2, + "5301": 2.1215118506, + "5302": 2.0430237012, + "5303": 1.9648453086, + "5304": 1.8866669161, + "5305": 1.8091068148, + "5306": 1.7315467135, + "5307": 1.6549109978, + "5308": 1.5782752821, + "5309": 1.5028663981, + "5310": 1.4274575141, + "5311": 1.3535730662, + "5312": 1.2796886183, + "5313": 1.2076201947, + "5314": 1.1355517711, + "5315": 1.0655837929, + "5316": 0.9956158147, + "5317": 0.9280244136, + "5318": 0.8604330126, + "5319": 0.7954849409, + "5320": 0.7305368693, + "5321": 0.6684884474, + "5322": 0.6064400256, + "5323": 0.5475361304, + "5324": 0.4886322352, + "5325": 0.4331053333, + "5326": 0.3775784314, + "5327": 0.3256476623, + "5328": 0.2737168931, + "5329": 0.2255872036, + "5330": 0.1774575141, + "5331": 0.1333188502, + "5332": 0.0891801862, + "5333": 0.0492067431, + "5334": 0.0092332999, + "5335": -0.0264171656, + "5336": -0.0620676312, + "5337": -0.0932544229, + "5338": -0.1244412147, + "5339": -0.1510412527, + "5340": -0.1776412907, + "5341": -0.1995495968, + "5342": -0.2214579028, + "5343": -0.2385880148, + "5344": -0.2557181268, + "5345": -0.2680024401, + "5346": -0.2802867533, + "5347": -0.2876767872, + "5348": -0.2950668211, + "5349": -0.2975334105, + "5350": -0.3, + "5351": -0.2975334105, + "5352": -0.2950668211, + "5353": -0.2876767872, + "5354": -0.2802867533, + "5355": -0.2680024401, + "5356": -0.2557181268, + "5357": -0.2385880148, + "5358": -0.2214579028, + "5359": -0.1995495968, + "5360": -0.1776412907, + "5361": -0.1510412527, + "5362": -0.1244412147, + "5363": -0.0932544229, + "5364": -0.0620676312, + "5365": -0.0264171656, + "5366": 0.0092332999, + "5367": 0.0492067431, + "5368": 0.0891801862, + "5369": 0.1333188502, + "5370": 0.1774575141, + "5371": 0.2255872036, + "5372": 0.2737168931, + "5373": 0.3256476623, + "5374": 0.3775784314, + "5375": 0.4331053333, + "5376": 0.4886322352, + "5377": 0.5475361304, + "5378": 0.6064400256, + "5379": 0.6684884474, + "5380": 0.7305368693, + "5381": 0.7954849409, + "5382": 0.8604330126, + "5383": 0.9280244136, + "5384": 0.9956158147, + "5385": 1.0655837929, + "5386": 1.1355517711, + "5387": 1.2076201947, + "5388": 1.2796886183, + "5389": 1.3535730662, + "5390": 1.4274575141, + "5391": 1.5028663981, + "5392": 1.5782752821, + "5393": 1.6549109978, + "5394": 1.7315467135, + "5395": 1.8091068148, + "5396": 1.8866669161, + "5397": 1.9648453086, + "5398": 2.0430237012, + "5399": 2.1215118506, + "5400": 2.2, + "5401": 2.2784881494, + "5402": 2.3569762988, + "5403": 2.4351546914, + "5404": 2.5133330839, + "5405": 2.5908931852, + "5406": 2.6684532865, + "5407": 2.7450890022, + "5408": 2.8217247179, + "5409": 2.8971336019, + "5410": 2.9725424859, + "5411": 3.0464269338, + "5412": 3.1203113817, + "5413": 3.1923798053, + "5414": 3.2644482289, + "5415": 3.3344162071, + "5416": 3.4043841853, + "5417": 3.4719755864, + "5418": 3.5395669874, + "5419": 3.6045150591, + "5420": 3.6694631307, + "5421": 3.7315115526, + "5422": 3.7935599744, + "5423": 3.8524638696, + "5424": 3.9113677648, + "5425": 3.9668946667, + "5426": 4.0224215686, + "5427": 4.0743523377, + "5428": 4.1262831069, + "5429": 4.1744127964, + "5430": 4.2225424859, + "5431": 4.2666811498, + "5432": 4.3108198138, + "5433": 4.3507932569, + "5434": 4.3907667001, + "5435": 4.4264171656, + "5436": 4.4620676312, + "5437": 4.4932544229, + "5438": 4.5244412147, + "5439": 4.5510412527, + "5440": 4.5776412907, + "5441": 4.5995495968, + "5442": 4.6214579028, + "5443": 4.6385880148, + "5444": 4.6557181268, + "5445": 4.6680024401, + "5446": 4.6802867533, + "5447": 4.6876767872, + "5448": 4.6950668211, + "5449": 4.6975334105, + "5450": 4.7, + "5451": 4.6975334105, + "5452": 4.6950668211, + "5453": 4.6876767872, + "5454": 4.6802867533, + "5455": 4.6680024401, + "5456": 4.6557181268, + "5457": 4.6385880148, + "5458": 4.6214579028, + "5459": 4.5995495968, + "5460": 4.5776412907, + "5461": 4.5510412527, + "5462": 4.5244412147, + "5463": 4.4932544229, + "5464": 4.4620676312, + "5465": 4.4264171656, + "5466": 4.3907667001, + "5467": 4.3507932569, + "5468": 4.3108198138, + "5469": 4.2666811498, + "5470": 4.2225424859, + "5471": 4.1744127964, + "5472": 4.1262831069, + "5473": 4.0743523377, + "5474": 4.0224215686, + "5475": 3.9668946667, + "5476": 3.9113677648, + "5477": 3.8524638696, + "5478": 3.7935599744, + "5479": 3.7315115526, + "5480": 3.6694631307, + "5481": 3.6045150591, + "5482": 3.5395669874, + "5483": 3.4719755864, + "5484": 3.4043841853, + "5485": 3.3344162071, + "5486": 3.2644482289, + "5487": 3.1923798053, + "5488": 3.1203113817, + "5489": 3.0464269338, + "5490": 2.9725424859, + "5491": 2.8971336019, + "5492": 2.8217247179, + "5493": 2.7450890022, + "5494": 2.6684532865, + "5495": 2.5908931852, + "5496": 2.5133330839, + "5497": 2.4351546914, + "5498": 2.3569762988, + "5499": 2.2784881494, + "5500": 2.2, + "5501": 2.1215118506, + "5502": 2.0430237012, + "5503": 1.9648453086, + "5504": 1.8866669161, + "5505": 1.8091068148, + "5506": 1.7315467135, + "5507": 1.6549109978, + "5508": 1.5782752821, + "5509": 1.5028663981, + "5510": 1.4274575141, + "5511": 1.3535730662, + "5512": 1.2796886183, + "5513": 1.2076201947, + "5514": 1.1355517711, + "5515": 1.0655837929, + "5516": 0.9956158147, + "5517": 0.9280244136, + "5518": 0.8604330126, + "5519": 0.7954849409, + "5520": 0.7305368693, + "5521": 0.6684884474, + "5522": 0.6064400256, + "5523": 0.5475361304, + "5524": 0.4886322352, + "5525": 0.4331053333, + "5526": 0.3775784314, + "5527": 0.3256476623, + "5528": 0.2737168931, + "5529": 0.2255872036, + "5530": 0.1774575141, + "5531": 0.1333188502, + "5532": 0.0891801862, + "5533": 0.0492067431, + "5534": 0.0092332999, + "5535": -0.0264171656, + "5536": -0.0620676312, + "5537": -0.0932544229, + "5538": -0.1244412147, + "5539": -0.1510412527, + "5540": -0.1776412907, + "5541": -0.1995495968, + "5542": -0.2214579028, + "5543": -0.2385880148, + "5544": -0.2557181268, + "5545": -0.2680024401, + "5546": -0.2802867533, + "5547": -0.2876767872, + "5548": -0.2950668211, + "5549": -0.2975334105, + "5550": -0.3, + "5551": -0.2975334105, + "5552": -0.2950668211, + "5553": -0.2876767872, + "5554": -0.2802867533, + "5555": -0.2680024401, + "5556": -0.2557181268, + "5557": -0.2385880148, + "5558": -0.2214579028, + "5559": -0.1995495968, + "5560": -0.1776412907, + "5561": -0.1510412527, + "5562": -0.1244412147, + "5563": -0.0932544229, + "5564": -0.0620676312, + "5565": -0.0264171656, + "5566": 0.0092332999, + "5567": 0.0492067431, + "5568": 0.0891801862, + "5569": 0.1333188502, + "5570": 0.1774575141, + "5571": 0.2255872036, + "5572": 0.2737168931, + "5573": 0.3256476623, + "5574": 0.3775784314, + "5575": 0.4331053333, + "5576": 0.4886322352, + "5577": 0.5475361304, + "5578": 0.6064400256, + "5579": 0.6684884474, + "5580": 0.7305368693, + "5581": 0.7954849409, + "5582": 0.8604330126, + "5583": 0.9280244136, + "5584": 0.9956158147, + "5585": 1.0655837929, + "5586": 1.1355517711, + "5587": 1.2076201947, + "5588": 1.2796886183, + "5589": 1.3535730662, + "5590": 1.4274575141, + "5591": 1.5028663981, + "5592": 1.5782752821, + "5593": 1.6549109978, + "5594": 1.7315467135, + "5595": 1.8091068148, + "5596": 1.8866669161, + "5597": 1.9648453086, + "5598": 2.0430237012, + "5599": 2.1215118506, + "5600": 2.2, + "5601": 2.2784881494, + "5602": 2.3569762988, + "5603": 2.4351546914, + "5604": 2.5133330839, + "5605": 2.5908931852, + "5606": 2.6684532865, + "5607": 2.7450890022, + "5608": 2.8217247179, + "5609": 2.8971336019, + "5610": 2.9725424859, + "5611": 3.0464269338, + "5612": 3.1203113817, + "5613": 3.1923798053, + "5614": 3.2644482289, + "5615": 3.3344162071, + "5616": 3.4043841853, + "5617": 3.4719755864, + "5618": 3.5395669874, + "5619": 3.6045150591, + "5620": 3.6694631307, + "5621": 3.7315115526, + "5622": 3.7935599744, + "5623": 3.8524638696, + "5624": 3.9113677648, + "5625": 3.9668946667, + "5626": 4.0224215686, + "5627": 4.0743523377, + "5628": 4.1262831069, + "5629": 4.1744127964, + "5630": 4.2225424859, + "5631": 4.2666811498, + "5632": 4.3108198138, + "5633": 4.3507932569, + "5634": 4.3907667001, + "5635": 4.4264171656, + "5636": 4.4620676312, + "5637": 4.4932544229, + "5638": 4.5244412147, + "5639": 4.5510412527, + "5640": 4.5776412907, + "5641": 4.5995495968, + "5642": 4.6214579028, + "5643": 4.6385880148, + "5644": 4.6557181268, + "5645": 4.6680024401, + "5646": 4.6802867533, + "5647": 4.6876767872, + "5648": 4.6950668211, + "5649": 4.6975334105, + "5650": 4.7, + "5651": 4.6975334105, + "5652": 4.6950668211, + "5653": 4.6876767872, + "5654": 4.6802867533, + "5655": 4.6680024401, + "5656": 4.6557181268, + "5657": 4.6385880148, + "5658": 4.6214579028, + "5659": 4.5995495968, + "5660": 4.5776412907, + "5661": 4.5510412527, + "5662": 4.5244412147, + "5663": 4.4932544229, + "5664": 4.4620676312, + "5665": 4.4264171656, + "5666": 4.3907667001, + "5667": 4.3507932569, + "5668": 4.3108198138, + "5669": 4.2666811498, + "5670": 4.2225424859, + "5671": 4.1744127964, + "5672": 4.1262831069, + "5673": 4.0743523377, + "5674": 4.0224215686, + "5675": 3.9668946667, + "5676": 3.9113677648, + "5677": 3.8524638696, + "5678": 3.7935599744, + "5679": 3.7315115526, + "5680": 3.6694631307, + "5681": 3.6045150591, + "5682": 3.5395669874, + "5683": 3.4719755864, + "5684": 3.4043841853, + "5685": 3.3344162071, + "5686": 3.2644482289, + "5687": 3.1923798053, + "5688": 3.1203113817, + "5689": 3.0464269338, + "5690": 2.9725424859, + "5691": 2.8971336019, + "5692": 2.8217247179, + "5693": 2.7450890022, + "5694": 2.6684532865, + "5695": 2.5908931852, + "5696": 2.5133330839, + "5697": 2.4351546914, + "5698": 2.3569762988, + "5699": 2.2784881494, + "5700": 2.2, + "5701": 2.1215118506, + "5702": 2.0430237012, + "5703": 1.9648453086, + "5704": 1.8866669161, + "5705": 1.8091068148, + "5706": 1.7315467135, + "5707": 1.6549109978, + "5708": 1.5782752821, + "5709": 1.5028663981, + "5710": 1.4274575141, + "5711": 1.3535730662, + "5712": 1.2796886183, + "5713": 1.2076201947, + "5714": 1.1355517711, + "5715": 1.0655837929, + "5716": 0.9956158147, + "5717": 0.9280244136, + "5718": 0.8604330126, + "5719": 0.7954849409, + "5720": 0.7305368693, + "5721": 0.6684884474, + "5722": 0.6064400256, + "5723": 0.5475361304, + "5724": 0.4886322352, + "5725": 0.4331053333, + "5726": 0.3775784314, + "5727": 0.3256476623, + "5728": 0.2737168931, + "5729": 0.2255872036, + "5730": 0.1774575141, + "5731": 0.1333188502, + "5732": 0.0891801862, + "5733": 0.0492067431, + "5734": 0.0092332999, + "5735": -0.0264171656, + "5736": -0.0620676312, + "5737": -0.0932544229, + "5738": -0.1244412147, + "5739": -0.1510412527, + "5740": -0.1776412907, + "5741": -0.1995495968, + "5742": -0.2214579028, + "5743": -0.2385880148, + "5744": -0.2557181268, + "5745": -0.2680024401, + "5746": -0.2802867533, + "5747": -0.2876767872, + "5748": -0.2950668211, + "5749": -0.2975334105, + "5750": -0.3, + "5751": -0.2975334105, + "5752": -0.2950668211, + "5753": -0.2876767872, + "5754": -0.2802867533, + "5755": -0.2680024401, + "5756": -0.2557181268, + "5757": -0.2385880148, + "5758": -0.2214579028, + "5759": -0.1995495968, + "5760": -0.1776412907, + "5761": -0.1510412527, + "5762": -0.1244412147, + "5763": -0.0932544229, + "5764": -0.0620676312, + "5765": -0.0264171656, + "5766": 0.0092332999, + "5767": 0.0492067431, + "5768": 0.0891801862, + "5769": 0.1333188502, + "5770": 0.1774575141, + "5771": 0.2255872036, + "5772": 0.2737168931, + "5773": 0.3256476623, + "5774": 0.3775784314, + "5775": 0.4331053333, + "5776": 0.4886322352, + "5777": 0.5475361304, + "5778": 0.6064400256, + "5779": 0.6684884474, + "5780": 0.7305368693, + "5781": 0.7954849409, + "5782": 0.8604330126, + "5783": 0.9280244136, + "5784": 0.9956158147, + "5785": 1.0655837929, + "5786": 1.1355517711, + "5787": 1.2076201947, + "5788": 1.2796886183, + "5789": 1.3535730662, + "5790": 1.4274575141, + "5791": 1.5028663981, + "5792": 1.5782752821, + "5793": 1.6549109978, + "5794": 1.7315467135, + "5795": 1.8091068148, + "5796": 1.8866669161, + "5797": 1.9648453086, + "5798": 2.0430237012, + "5799": 2.1215118506, + "5800": 2.2, + "5801": 2.2784881494, + "5802": 2.3569762988, + "5803": 2.4351546914, + "5804": 2.5133330839, + "5805": 2.5908931852, + "5806": 2.6684532865, + "5807": 2.7450890022, + "5808": 2.8217247179, + "5809": 2.8971336019, + "5810": 2.9725424859, + "5811": 3.0464269338, + "5812": 3.1203113817, + "5813": 3.1923798053, + "5814": 3.2644482289, + "5815": 3.3344162071, + "5816": 3.4043841853, + "5817": 3.4719755864, + "5818": 3.5395669874, + "5819": 3.6045150591, + "5820": 3.6694631307, + "5821": 3.7315115526, + "5822": 3.7935599744, + "5823": 3.8524638696, + "5824": 3.9113677648, + "5825": 3.9668946667, + "5826": 4.0224215686, + "5827": 4.0743523377, + "5828": 4.1262831069, + "5829": 4.1744127964, + "5830": 4.2225424859, + "5831": 4.2666811498, + "5832": 4.3108198138, + "5833": 4.3507932569, + "5834": 4.3907667001, + "5835": 4.4264171656, + "5836": 4.4620676312, + "5837": 4.4932544229, + "5838": 4.5244412147, + "5839": 4.5510412527, + "5840": 4.5776412907, + "5841": 4.5995495968, + "5842": 4.6214579028, + "5843": 4.6385880148, + "5844": 4.6557181268, + "5845": 4.6680024401, + "5846": 4.6802867533, + "5847": 4.6876767872, + "5848": 4.6950668211, + "5849": 4.6975334105, + "5850": 4.7, + "5851": 4.6975334105, + "5852": 4.6950668211, + "5853": 4.6876767872, + "5854": 4.6802867533, + "5855": 4.6680024401, + "5856": 4.6557181268, + "5857": 4.6385880148, + "5858": 4.6214579028, + "5859": 4.5995495968, + "5860": 4.5776412907, + "5861": 4.5510412527, + "5862": 4.5244412147, + "5863": 4.4932544229, + "5864": 4.4620676312, + "5865": 4.4264171656, + "5866": 4.3907667001, + "5867": 4.3507932569, + "5868": 4.3108198138, + "5869": 4.2666811498, + "5870": 4.2225424859, + "5871": 4.1744127964, + "5872": 4.1262831069, + "5873": 4.0743523377, + "5874": 4.0224215686, + "5875": 3.9668946667, + "5876": 3.9113677648, + "5877": 3.8524638696, + "5878": 3.7935599744, + "5879": 3.7315115526, + "5880": 3.6694631307, + "5881": 3.6045150591, + "5882": 3.5395669874, + "5883": 3.4719755864, + "5884": 3.4043841853, + "5885": 3.3344162071, + "5886": 3.2644482289, + "5887": 3.1923798053, + "5888": 3.1203113817, + "5889": 3.0464269338, + "5890": 2.9725424859, + "5891": 2.8971336019, + "5892": 2.8217247179, + "5893": 2.7450890022, + "5894": 2.6684532865, + "5895": 2.5908931852, + "5896": 2.5133330839, + "5897": 2.4351546914, + "5898": 2.3569762988, + "5899": 2.2784881494, + "5900": 2.2, + "5901": 2.1215118506, + "5902": 2.0430237012, + "5903": 1.9648453086, + "5904": 1.8866669161, + "5905": 1.8091068148, + "5906": 1.7315467135, + "5907": 1.6549109978, + "5908": 1.5782752821, + "5909": 1.5028663981, + "5910": 1.4274575141, + "5911": 1.3535730662, + "5912": 1.2796886183, + "5913": 1.2076201947, + "5914": 1.1355517711, + "5915": 1.0655837929, + "5916": 0.9956158147, + "5917": 0.9280244136, + "5918": 0.8604330126, + "5919": 0.7954849409, + "5920": 0.7305368693, + "5921": 0.6684884474, + "5922": 0.6064400256, + "5923": 0.5475361304, + "5924": 0.4886322352, + "5925": 0.4331053333, + "5926": 0.3775784314, + "5927": 0.3256476623, + "5928": 0.2737168931, + "5929": 0.2255872036, + "5930": 0.1774575141, + "5931": 0.1333188502, + "5932": 0.0891801862, + "5933": 0.0492067431, + "5934": 0.0092332999, + "5935": -0.0264171656, + "5936": -0.0620676312, + "5937": -0.0932544229, + "5938": -0.1244412147, + "5939": -0.1510412527, + "5940": -0.1776412907, + "5941": -0.1995495968, + "5942": -0.2214579028, + "5943": -0.2385880148, + "5944": -0.2557181268, + "5945": -0.2680024401, + "5946": -0.2802867533, + "5947": -0.2876767872, + "5948": -0.2950668211, + "5949": -0.2975334105, + "5950": -0.3, + "5951": -0.2975334105, + "5952": -0.2950668211, + "5953": -0.2876767872, + "5954": -0.2802867533, + "5955": -0.2680024401, + "5956": -0.2557181268, + "5957": -0.2385880148, + "5958": -0.2214579028, + "5959": -0.1995495968, + "5960": -0.1776412907, + "5961": -0.1510412527, + "5962": -0.1244412147, + "5963": -0.0932544229, + "5964": -0.0620676312, + "5965": -0.0264171656, + "5966": 0.0092332999, + "5967": 0.0492067431, + "5968": 0.0891801862, + "5969": 0.1333188502, + "5970": 0.1774575141, + "5971": 0.2255872036, + "5972": 0.2737168931, + "5973": 0.3256476623, + "5974": 0.3775784314, + "5975": 0.4331053333, + "5976": 0.4886322352, + "5977": 0.5475361304, + "5978": 0.6064400256, + "5979": 0.6684884474, + "5980": 0.7305368693, + "5981": 0.7954849409, + "5982": 0.8604330126, + "5983": 0.9280244136, + "5984": 0.9956158147, + "5985": 1.0655837929, + "5986": 1.1355517711, + "5987": 1.2076201947, + "5988": 1.2796886183, + "5989": 1.3535730662, + "5990": 1.4274575141, + "5991": 1.5028663981, + "5992": 1.5782752821, + "5993": 1.6549109978, + "5994": 1.7315467135, + "5995": 1.8091068148, + "5996": 1.8866669161, + "5997": 1.9648453086, + "5998": 2.0430237012, + "5999": 2.1215118506, + "6000": 2.2 + }, + "flow_out": { + "0": 2.200000001, + "1": 2.2784881489, + "2": 2.3569762991, + "3": 2.4351546912, + "4": 2.513333084, + "5": 2.5908931852, + "6": 2.6684532865, + "7": 2.7450890022, + "8": 2.8217247179, + "9": 2.8971336019, + "10": 2.9725424859, + "11": 3.0464269338, + "12": 3.1203113817, + "13": 3.1923798053, + "14": 3.2644482289, + "15": 3.3344162071, + "16": 3.4043841853, + "17": 3.4719755864, + "18": 3.5395669874, + "19": 3.6045150591, + "20": 3.6694631307, + "21": 3.7315115526, + "22": 3.7935599744, + "23": 3.8524638696, + "24": 3.9113677648, + "25": 3.9668946667, + "26": 4.0224215686, + "27": 4.0743523377, + "28": 4.1262831069, + "29": 4.1744127964, + "30": 4.2225424859, + "31": 4.2666811498, + "32": 4.3108198138, + "33": 4.3507932569, + "34": 4.3907667001, + "35": 4.4264171656, + "36": 4.4620676312, + "37": 4.4932544229, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2, + "201": 2.2784881494, + "202": 2.3569762988, + "203": 2.4351546914, + "204": 2.5133330839, + "205": 2.5908931852, + "206": 2.6684532865, + "207": 2.7450890022, + "208": 2.8217247179, + "209": 2.8971336019, + "210": 2.9725424859, + "211": 3.0464269338, + "212": 3.1203113817, + "213": 3.1923798053, + "214": 3.2644482289, + "215": 3.3344162071, + "216": 3.4043841853, + "217": 3.4719755864, + "218": 3.5395669874, + "219": 3.6045150591, + "220": 3.6694631307, + "221": 3.7315115526, + "222": 3.7935599744, + "223": 3.8524638696, + "224": 3.9113677648, + "225": 3.9668946667, + "226": 4.0224215686, + "227": 4.0743523377, + "228": 4.1262831069, + "229": 4.1744127964, + "230": 4.2225424859, + "231": 4.2666811498, + "232": 4.3108198138, + "233": 4.3507932569, + "234": 4.3907667001, + "235": 4.4264171656, + "236": 4.4620676312, + "237": 4.4932544229, + "238": 4.5244412147, + "239": 4.5510412527, + "240": 4.5776412907, + "241": 4.5995495968, + "242": 4.6214579028, + "243": 4.6385880148, + "244": 4.6557181268, + "245": 4.6680024401, + "246": 4.6802867533, + "247": 4.6876767872, + "248": 4.6950668211, + "249": 4.6975334105, + "250": 4.7, + "251": 4.6975334105, + "252": 4.6950668211, + "253": 4.6876767872, + "254": 4.6802867533, + "255": 4.6680024401, + "256": 4.6557181268, + "257": 4.6385880148, + "258": 4.6214579028, + "259": 4.5995495968, + "260": 4.5776412907, + "261": 4.5510412527, + "262": 4.5244412147, + "263": 4.4932544229, + "264": 4.4620676312, + "265": 4.4264171656, + "266": 4.3907667001, + "267": 4.3507932569, + "268": 4.3108198138, + "269": 4.2666811498, + "270": 4.2225424859, + "271": 4.1744127964, + "272": 4.1262831069, + "273": 4.0743523377, + "274": 4.0224215686, + "275": 3.9668946667, + "276": 3.9113677648, + "277": 3.8524638696, + "278": 3.7935599744, + "279": 3.7315115526, + "280": 3.6694631307, + "281": 3.6045150591, + "282": 3.5395669874, + "283": 3.4719755864, + "284": 3.4043841853, + "285": 3.3344162071, + "286": 3.2644482289, + "287": 3.1923798053, + "288": 3.1203113817, + "289": 3.0464269338, + "290": 2.9725424859, + "291": 2.8971336019, + "292": 2.8217247179, + "293": 2.7450890022, + "294": 2.6684532865, + "295": 2.5908931852, + "296": 2.5133330839, + "297": 2.4351546914, + "298": 2.3569762988, + "299": 2.2784881494, + "300": 2.2, + "301": 2.1215118506, + "302": 2.0430237012, + "303": 1.9648453086, + "304": 1.8866669161, + "305": 1.8091068148, + "306": 1.7315467135, + "307": 1.6549109978, + "308": 1.5782752821, + "309": 1.5028663981, + "310": 1.4274575141, + "311": 1.3535730662, + "312": 1.2796886183, + "313": 1.2076201947, + "314": 1.1355517711, + "315": 1.0655837929, + "316": 0.9956158147, + "317": 0.9280244136, + "318": 0.8604330126, + "319": 0.7954849409, + "320": 0.7305368693, + "321": 0.6684884474, + "322": 0.6064400256, + "323": 0.5475361304, + "324": 0.4886322352, + "325": 0.4331053333, + "326": 0.3775784314, + "327": 0.3256476623, + "328": 0.2737168931, + "329": 0.2255872036, + "330": 0.1774575141, + "331": 0.1333188502, + "332": 0.0891801862, + "333": 0.0492067431, + "334": 0.0092332999, + "335": -0.0264171656, + "336": -0.0620676312, + "337": -0.0932544229, + "338": -0.1244412147, + "339": -0.1510412527, + "340": -0.1776412907, + "341": -0.1995495968, + "342": -0.2214579028, + "343": -0.2385880148, + "344": -0.2557181268, + "345": -0.2680024401, + "346": -0.2802867533, + "347": -0.2876767872, + "348": -0.2950668211, + "349": -0.2975334105, + "350": -0.3, + "351": -0.2975334105, + "352": -0.2950668211, + "353": -0.2876767872, + "354": -0.2802867533, + "355": -0.2680024401, + "356": -0.2557181268, + "357": -0.2385880148, + "358": -0.2214579028, + "359": -0.1995495968, + "360": -0.1776412907, + "361": -0.1510412527, + "362": -0.1244412147, + "363": -0.0932544229, + "364": -0.0620676312, + "365": -0.0264171656, + "366": 0.0092332999, + "367": 0.0492067431, + "368": 0.0891801862, + "369": 0.1333188502, + "370": 0.1774575141, + "371": 0.2255872036, + "372": 0.2737168931, + "373": 0.3256476623, + "374": 0.3775784314, + "375": 0.4331053333, + "376": 0.4886322352, + "377": 0.5475361304, + "378": 0.6064400256, + "379": 0.6684884474, + "380": 0.7305368693, + "381": 0.7954849409, + "382": 0.8604330126, + "383": 0.9280244136, + "384": 0.9956158147, + "385": 1.0655837929, + "386": 1.1355517711, + "387": 1.2076201947, + "388": 1.2796886183, + "389": 1.3535730662, + "390": 1.4274575141, + "391": 1.5028663981, + "392": 1.5782752821, + "393": 1.6549109978, + "394": 1.7315467135, + "395": 1.8091068148, + "396": 1.8866669161, + "397": 1.9648453086, + "398": 2.0430237012, + "399": 2.1215118506, + "400": 2.2, + "401": 2.2784881494, + "402": 2.3569762988, + "403": 2.4351546914, + "404": 2.5133330839, + "405": 2.5908931852, + "406": 2.6684532865, + "407": 2.7450890022, + "408": 2.8217247179, + "409": 2.8971336019, + "410": 2.9725424859, + "411": 3.0464269338, + "412": 3.1203113817, + "413": 3.1923798053, + "414": 3.2644482289, + "415": 3.3344162071, + "416": 3.4043841853, + "417": 3.4719755864, + "418": 3.5395669874, + "419": 3.6045150591, + "420": 3.6694631307, + "421": 3.7315115526, + "422": 3.7935599744, + "423": 3.8524638696, + "424": 3.9113677648, + "425": 3.9668946667, + "426": 4.0224215686, + "427": 4.0743523377, + "428": 4.1262831069, + "429": 4.1744127964, + "430": 4.2225424859, + "431": 4.2666811498, + "432": 4.3108198138, + "433": 4.3507932569, + "434": 4.3907667001, + "435": 4.4264171656, + "436": 4.4620676312, + "437": 4.4932544229, + "438": 4.5244412147, + "439": 4.5510412527, + "440": 4.5776412907, + "441": 4.5995495968, + "442": 4.6214579028, + "443": 4.6385880148, + "444": 4.6557181268, + "445": 4.6680024401, + "446": 4.6802867533, + "447": 4.6876767872, + "448": 4.6950668211, + "449": 4.6975334105, + "450": 4.7, + "451": 4.6975334105, + "452": 4.6950668211, + "453": 4.6876767872, + "454": 4.6802867533, + "455": 4.6680024401, + "456": 4.6557181268, + "457": 4.6385880148, + "458": 4.6214579028, + "459": 4.5995495968, + "460": 4.5776412907, + "461": 4.5510412527, + "462": 4.5244412147, + "463": 4.4932544229, + "464": 4.4620676312, + "465": 4.4264171656, + "466": 4.3907667001, + "467": 4.3507932569, + "468": 4.3108198138, + "469": 4.2666811498, + "470": 4.2225424859, + "471": 4.1744127964, + "472": 4.1262831069, + "473": 4.0743523377, + "474": 4.0224215686, + "475": 3.9668946667, + "476": 3.9113677648, + "477": 3.8524638696, + "478": 3.7935599744, + "479": 3.7315115526, + "480": 3.6694631307, + "481": 3.6045150591, + "482": 3.5395669874, + "483": 3.4719755864, + "484": 3.4043841853, + "485": 3.3344162071, + "486": 3.2644482289, + "487": 3.1923798053, + "488": 3.1203113817, + "489": 3.0464269338, + "490": 2.9725424859, + "491": 2.8971336019, + "492": 2.8217247179, + "493": 2.7450890022, + "494": 2.6684532865, + "495": 2.5908931852, + "496": 2.5133330839, + "497": 2.4351546914, + "498": 2.3569762988, + "499": 2.2784881494, + "500": 2.2, + "501": 2.1215118506, + "502": 2.0430237012, + "503": 1.9648453086, + "504": 1.8866669161, + "505": 1.8091068148, + "506": 1.7315467135, + "507": 1.6549109978, + "508": 1.5782752821, + "509": 1.5028663981, + "510": 1.4274575141, + "511": 1.3535730662, + "512": 1.2796886183, + "513": 1.2076201947, + "514": 1.1355517711, + "515": 1.0655837929, + "516": 0.9956158147, + "517": 0.9280244136, + "518": 0.8604330126, + "519": 0.7954849409, + "520": 0.7305368693, + "521": 0.6684884474, + "522": 0.6064400256, + "523": 0.5475361304, + "524": 0.4886322352, + "525": 0.4331053333, + "526": 0.3775784314, + "527": 0.3256476623, + "528": 0.2737168931, + "529": 0.2255872036, + "530": 0.1774575141, + "531": 0.1333188502, + "532": 0.0891801862, + "533": 0.0492067431, + "534": 0.0092332999, + "535": -0.0264171656, + "536": -0.0620676312, + "537": -0.0932544229, + "538": -0.1244412147, + "539": -0.1510412527, + "540": -0.1776412907, + "541": -0.1995495968, + "542": -0.2214579028, + "543": -0.2385880148, + "544": -0.2557181268, + "545": -0.2680024401, + "546": -0.2802867533, + "547": -0.2876767872, + "548": -0.2950668211, + "549": -0.2975334105, + "550": -0.3, + "551": -0.2975334105, + "552": -0.2950668211, + "553": -0.2876767872, + "554": -0.2802867533, + "555": -0.2680024401, + "556": -0.2557181268, + "557": -0.2385880148, + "558": -0.2214579028, + "559": -0.1995495968, + "560": -0.1776412907, + "561": -0.1510412527, + "562": -0.1244412147, + "563": -0.0932544229, + "564": -0.0620676312, + "565": -0.0264171656, + "566": 0.0092332999, + "567": 0.0492067431, + "568": 0.0891801862, + "569": 0.1333188502, + "570": 0.1774575141, + "571": 0.2255872036, + "572": 0.2737168931, + "573": 0.3256476623, + "574": 0.3775784314, + "575": 0.4331053333, + "576": 0.4886322352, + "577": 0.5475361304, + "578": 0.6064400256, + "579": 0.6684884474, + "580": 0.7305368693, + "581": 0.7954849409, + "582": 0.8604330126, + "583": 0.9280244136, + "584": 0.9956158147, + "585": 1.0655837929, + "586": 1.1355517711, + "587": 1.2076201947, + "588": 1.2796886183, + "589": 1.3535730662, + "590": 1.4274575141, + "591": 1.5028663981, + "592": 1.5782752821, + "593": 1.6549109978, + "594": 1.7315467135, + "595": 1.8091068148, + "596": 1.8866669161, + "597": 1.9648453086, + "598": 2.0430237012, + "599": 2.1215118506, + "600": 2.2, + "601": 2.2784881494, + "602": 2.3569762988, + "603": 2.4351546914, + "604": 2.5133330839, + "605": 2.5908931852, + "606": 2.6684532865, + "607": 2.7450890022, + "608": 2.8217247179, + "609": 2.8971336019, + "610": 2.9725424859, + "611": 3.0464269338, + "612": 3.1203113817, + "613": 3.1923798053, + "614": 3.2644482289, + "615": 3.3344162071, + "616": 3.4043841853, + "617": 3.4719755864, + "618": 3.5395669874, + "619": 3.6045150591, + "620": 3.6694631307, + "621": 3.7315115526, + "622": 3.7935599744, + "623": 3.8524638696, + "624": 3.9113677648, + "625": 3.9668946667, + "626": 4.0224215686, + "627": 4.0743523377, + "628": 4.1262831069, + "629": 4.1744127964, + "630": 4.2225424859, + "631": 4.2666811498, + "632": 4.3108198138, + "633": 4.3507932569, + "634": 4.3907667001, + "635": 4.4264171656, + "636": 4.4620676312, + "637": 4.4932544229, + "638": 4.5244412147, + "639": 4.5510412527, + "640": 4.5776412907, + "641": 4.5995495968, + "642": 4.6214579028, + "643": 4.6385880148, + "644": 4.6557181268, + "645": 4.6680024401, + "646": 4.6802867533, + "647": 4.6876767872, + "648": 4.6950668211, + "649": 4.6975334105, + "650": 4.7, + "651": 4.6975334105, + "652": 4.6950668211, + "653": 4.6876767872, + "654": 4.6802867533, + "655": 4.6680024401, + "656": 4.6557181268, + "657": 4.6385880148, + "658": 4.6214579028, + "659": 4.5995495968, + "660": 4.5776412907, + "661": 4.5510412527, + "662": 4.5244412147, + "663": 4.4932544229, + "664": 4.4620676312, + "665": 4.4264171656, + "666": 4.3907667001, + "667": 4.3507932569, + "668": 4.3108198138, + "669": 4.2666811498, + "670": 4.2225424859, + "671": 4.1744127964, + "672": 4.1262831069, + "673": 4.0743523377, + "674": 4.0224215686, + "675": 3.9668946667, + "676": 3.9113677648, + "677": 3.8524638696, + "678": 3.7935599744, + "679": 3.7315115526, + "680": 3.6694631307, + "681": 3.6045150591, + "682": 3.5395669874, + "683": 3.4719755864, + "684": 3.4043841853, + "685": 3.3344162071, + "686": 3.2644482289, + "687": 3.1923798053, + "688": 3.1203113817, + "689": 3.0464269338, + "690": 2.9725424859, + "691": 2.8971336019, + "692": 2.8217247179, + "693": 2.7450890022, + "694": 2.6684532865, + "695": 2.5908931852, + "696": 2.5133330839, + "697": 2.4351546914, + "698": 2.3569762988, + "699": 2.2784881494, + "700": 2.2, + "701": 2.1215118506, + "702": 2.0430237012, + "703": 1.9648453086, + "704": 1.8866669161, + "705": 1.8091068148, + "706": 1.7315467135, + "707": 1.6549109978, + "708": 1.5782752821, + "709": 1.5028663981, + "710": 1.4274575141, + "711": 1.3535730662, + "712": 1.2796886183, + "713": 1.2076201947, + "714": 1.1355517711, + "715": 1.0655837929, + "716": 0.9956158147, + "717": 0.9280244136, + "718": 0.8604330126, + "719": 0.7954849409, + "720": 0.7305368693, + "721": 0.6684884474, + "722": 0.6064400256, + "723": 0.5475361304, + "724": 0.4886322352, + "725": 0.4331053333, + "726": 0.3775784314, + "727": 0.3256476623, + "728": 0.2737168931, + "729": 0.2255872036, + "730": 0.1774575141, + "731": 0.1333188502, + "732": 0.0891801862, + "733": 0.0492067431, + "734": 0.0092332999, + "735": -0.0264171656, + "736": -0.0620676312, + "737": -0.0932544229, + "738": -0.1244412147, + "739": -0.1510412527, + "740": -0.1776412907, + "741": -0.1995495968, + "742": -0.2214579028, + "743": -0.2385880148, + "744": -0.2557181268, + "745": -0.2680024401, + "746": -0.2802867533, + "747": -0.2876767872, + "748": -0.2950668211, + "749": -0.2975334105, + "750": -0.3, + "751": -0.2975334105, + "752": -0.2950668211, + "753": -0.2876767872, + "754": -0.2802867533, + "755": -0.2680024401, + "756": -0.2557181268, + "757": -0.2385880148, + "758": -0.2214579028, + "759": -0.1995495968, + "760": -0.1776412907, + "761": -0.1510412527, + "762": -0.1244412147, + "763": -0.0932544229, + "764": -0.0620676312, + "765": -0.0264171656, + "766": 0.0092332999, + "767": 0.0492067431, + "768": 0.0891801862, + "769": 0.1333188502, + "770": 0.1774575141, + "771": 0.2255872036, + "772": 0.2737168931, + "773": 0.3256476623, + "774": 0.3775784314, + "775": 0.4331053333, + "776": 0.4886322352, + "777": 0.5475361304, + "778": 0.6064400256, + "779": 0.6684884474, + "780": 0.7305368693, + "781": 0.7954849409, + "782": 0.8604330126, + "783": 0.9280244136, + "784": 0.9956158147, + "785": 1.0655837929, + "786": 1.1355517711, + "787": 1.2076201947, + "788": 1.2796886183, + "789": 1.3535730662, + "790": 1.4274575141, + "791": 1.5028663981, + "792": 1.5782752821, + "793": 1.6549109978, + "794": 1.7315467135, + "795": 1.8091068148, + "796": 1.8866669161, + "797": 1.9648453086, + "798": 2.0430237012, + "799": 2.1215118506, + "800": 2.2, + "801": 2.2784881494, + "802": 2.3569762988, + "803": 2.4351546914, + "804": 2.5133330839, + "805": 2.5908931852, + "806": 2.6684532865, + "807": 2.7450890022, + "808": 2.8217247179, + "809": 2.8971336019, + "810": 2.9725424859, + "811": 3.0464269338, + "812": 3.1203113817, + "813": 3.1923798053, + "814": 3.2644482289, + "815": 3.3344162071, + "816": 3.4043841853, + "817": 3.4719755864, + "818": 3.5395669874, + "819": 3.6045150591, + "820": 3.6694631307, + "821": 3.7315115526, + "822": 3.7935599744, + "823": 3.8524638696, + "824": 3.9113677648, + "825": 3.9668946667, + "826": 4.0224215686, + "827": 4.0743523377, + "828": 4.1262831069, + "829": 4.1744127964, + "830": 4.2225424859, + "831": 4.2666811498, + "832": 4.3108198138, + "833": 4.3507932569, + "834": 4.3907667001, + "835": 4.4264171656, + "836": 4.4620676312, + "837": 4.4932544229, + "838": 4.5244412147, + "839": 4.5510412527, + "840": 4.5776412907, + "841": 4.5995495968, + "842": 4.6214579028, + "843": 4.6385880148, + "844": 4.6557181268, + "845": 4.6680024401, + "846": 4.6802867533, + "847": 4.6876767872, + "848": 4.6950668211, + "849": 4.6975334105, + "850": 4.7, + "851": 4.6975334105, + "852": 4.6950668211, + "853": 4.6876767872, + "854": 4.6802867533, + "855": 4.6680024401, + "856": 4.6557181268, + "857": 4.6385880148, + "858": 4.6214579028, + "859": 4.5995495968, + "860": 4.5776412907, + "861": 4.5510412527, + "862": 4.5244412147, + "863": 4.4932544229, + "864": 4.4620676312, + "865": 4.4264171656, + "866": 4.3907667001, + "867": 4.3507932569, + "868": 4.3108198138, + "869": 4.2666811498, + "870": 4.2225424859, + "871": 4.1744127964, + "872": 4.1262831069, + "873": 4.0743523377, + "874": 4.0224215686, + "875": 3.9668946667, + "876": 3.9113677648, + "877": 3.8524638696, + "878": 3.7935599744, + "879": 3.7315115526, + "880": 3.6694631307, + "881": 3.6045150591, + "882": 3.5395669874, + "883": 3.4719755864, + "884": 3.4043841853, + "885": 3.3344162071, + "886": 3.2644482289, + "887": 3.1923798053, + "888": 3.1203113817, + "889": 3.0464269338, + "890": 2.9725424859, + "891": 2.8971336019, + "892": 2.8217247179, + "893": 2.7450890022, + "894": 2.6684532865, + "895": 2.5908931852, + "896": 2.5133330839, + "897": 2.4351546914, + "898": 2.3569762988, + "899": 2.2784881494, + "900": 2.2, + "901": 2.1215118506, + "902": 2.0430237012, + "903": 1.9648453086, + "904": 1.8866669161, + "905": 1.8091068148, + "906": 1.7315467135, + "907": 1.6549109978, + "908": 1.5782752821, + "909": 1.5028663981, + "910": 1.4274575141, + "911": 1.3535730662, + "912": 1.2796886183, + "913": 1.2076201947, + "914": 1.1355517711, + "915": 1.0655837929, + "916": 0.9956158147, + "917": 0.9280244136, + "918": 0.8604330126, + "919": 0.7954849409, + "920": 0.7305368693, + "921": 0.6684884474, + "922": 0.6064400256, + "923": 0.5475361304, + "924": 0.4886322352, + "925": 0.4331053333, + "926": 0.3775784314, + "927": 0.3256476623, + "928": 0.2737168931, + "929": 0.2255872036, + "930": 0.1774575141, + "931": 0.1333188502, + "932": 0.0891801862, + "933": 0.0492067431, + "934": 0.0092332999, + "935": -0.0264171656, + "936": -0.0620676312, + "937": -0.0932544229, + "938": -0.1244412147, + "939": -0.1510412527, + "940": -0.1776412907, + "941": -0.1995495968, + "942": -0.2214579028, + "943": -0.2385880148, + "944": -0.2557181268, + "945": -0.2680024401, + "946": -0.2802867533, + "947": -0.2876767872, + "948": -0.2950668211, + "949": -0.2975334105, + "950": -0.3, + "951": -0.2975334105, + "952": -0.2950668211, + "953": -0.2876767872, + "954": -0.2802867533, + "955": -0.2680024401, + "956": -0.2557181268, + "957": -0.2385880148, + "958": -0.2214579028, + "959": -0.1995495968, + "960": -0.1776412907, + "961": -0.1510412527, + "962": -0.1244412147, + "963": -0.0932544229, + "964": -0.0620676312, + "965": -0.0264171656, + "966": 0.0092332999, + "967": 0.0492067431, + "968": 0.0891801862, + "969": 0.1333188502, + "970": 0.1774575141, + "971": 0.2255872036, + "972": 0.2737168931, + "973": 0.3256476623, + "974": 0.3775784314, + "975": 0.4331053333, + "976": 0.4886322352, + "977": 0.5475361304, + "978": 0.6064400256, + "979": 0.6684884474, + "980": 0.7305368693, + "981": 0.7954849409, + "982": 0.8604330126, + "983": 0.9280244136, + "984": 0.9956158147, + "985": 1.0655837929, + "986": 1.1355517711, + "987": 1.2076201947, + "988": 1.2796886183, + "989": 1.3535730662, + "990": 1.4274575141, + "991": 1.5028663981, + "992": 1.5782752821, + "993": 1.6549109978, + "994": 1.7315467135, + "995": 1.8091068148, + "996": 1.8866669161, + "997": 1.9648453086, + "998": 2.0430237012, + "999": 2.1215118506, + "1000": 2.2, + "1001": 2.2784881494, + "1002": 2.3569762988, + "1003": 2.4351546914, + "1004": 2.5133330839, + "1005": 2.5908931852, + "1006": 2.6684532865, + "1007": 2.7450890022, + "1008": 2.8217247179, + "1009": 2.8971336019, + "1010": 2.9725424859, + "1011": 3.0464269338, + "1012": 3.1203113817, + "1013": 3.1923798053, + "1014": 3.2644482289, + "1015": 3.3344162071, + "1016": 3.4043841853, + "1017": 3.4719755864, + "1018": 3.5395669874, + "1019": 3.6045150591, + "1020": 3.6694631307, + "1021": 3.7315115526, + "1022": 3.7935599744, + "1023": 3.8524638696, + "1024": 3.9113677648, + "1025": 3.9668946667, + "1026": 4.0224215686, + "1027": 4.0743523377, + "1028": 4.1262831069, + "1029": 4.1744127964, + "1030": 4.2225424859, + "1031": 4.2666811498, + "1032": 4.3108198138, + "1033": 4.3507932569, + "1034": 4.3907667001, + "1035": 4.4264171656, + "1036": 4.4620676312, + "1037": 4.4932544229, + "1038": 4.5244412147, + "1039": 4.5510412527, + "1040": 4.5776412907, + "1041": 4.5995495968, + "1042": 4.6214579028, + "1043": 4.6385880148, + "1044": 4.6557181268, + "1045": 4.6680024401, + "1046": 4.6802867533, + "1047": 4.6876767872, + "1048": 4.6950668211, + "1049": 4.6975334105, + "1050": 4.7, + "1051": 4.6975334105, + "1052": 4.6950668211, + "1053": 4.6876767872, + "1054": 4.6802867533, + "1055": 4.6680024401, + "1056": 4.6557181268, + "1057": 4.6385880148, + "1058": 4.6214579028, + "1059": 4.5995495968, + "1060": 4.5776412907, + "1061": 4.5510412527, + "1062": 4.5244412147, + "1063": 4.4932544229, + "1064": 4.4620676312, + "1065": 4.4264171656, + "1066": 4.3907667001, + "1067": 4.3507932569, + "1068": 4.3108198138, + "1069": 4.2666811498, + "1070": 4.2225424859, + "1071": 4.1744127964, + "1072": 4.1262831069, + "1073": 4.0743523377, + "1074": 4.0224215686, + "1075": 3.9668946667, + "1076": 3.9113677648, + "1077": 3.8524638696, + "1078": 3.7935599744, + "1079": 3.7315115526, + "1080": 3.6694631307, + "1081": 3.6045150591, + "1082": 3.5395669874, + "1083": 3.4719755864, + "1084": 3.4043841853, + "1085": 3.3344162071, + "1086": 3.2644482289, + "1087": 3.1923798053, + "1088": 3.1203113817, + "1089": 3.0464269338, + "1090": 2.9725424859, + "1091": 2.8971336019, + "1092": 2.8217247179, + "1093": 2.7450890022, + "1094": 2.6684532865, + "1095": 2.5908931852, + "1096": 2.5133330839, + "1097": 2.4351546914, + "1098": 2.3569762988, + "1099": 2.2784881494, + "1100": 2.2, + "1101": 2.1215118506, + "1102": 2.0430237012, + "1103": 1.9648453086, + "1104": 1.8866669161, + "1105": 1.8091068148, + "1106": 1.7315467135, + "1107": 1.6549109978, + "1108": 1.5782752821, + "1109": 1.5028663981, + "1110": 1.4274575141, + "1111": 1.3535730662, + "1112": 1.2796886183, + "1113": 1.2076201947, + "1114": 1.1355517711, + "1115": 1.0655837929, + "1116": 0.9956158147, + "1117": 0.9280244136, + "1118": 0.8604330126, + "1119": 0.7954849409, + "1120": 0.7305368693, + "1121": 0.6684884474, + "1122": 0.6064400256, + "1123": 0.5475361304, + "1124": 0.4886322352, + "1125": 0.4331053333, + "1126": 0.3775784314, + "1127": 0.3256476623, + "1128": 0.2737168931, + "1129": 0.2255872036, + "1130": 0.1774575141, + "1131": 0.1333188502, + "1132": 0.0891801862, + "1133": 0.0492067431, + "1134": 0.0092332999, + "1135": -0.0264171656, + "1136": -0.0620676312, + "1137": -0.0932544229, + "1138": -0.1244412147, + "1139": -0.1510412527, + "1140": -0.1776412907, + "1141": -0.1995495968, + "1142": -0.2214579028, + "1143": -0.2385880148, + "1144": -0.2557181268, + "1145": -0.2680024401, + "1146": -0.2802867533, + "1147": -0.2876767872, + "1148": -0.2950668211, + "1149": -0.2975334105, + "1150": -0.3, + "1151": -0.2975334105, + "1152": -0.2950668211, + "1153": -0.2876767872, + "1154": -0.2802867533, + "1155": -0.2680024401, + "1156": -0.2557181268, + "1157": -0.2385880148, + "1158": -0.2214579028, + "1159": -0.1995495968, + "1160": -0.1776412907, + "1161": -0.1510412527, + "1162": -0.1244412147, + "1163": -0.0932544229, + "1164": -0.0620676312, + "1165": -0.0264171656, + "1166": 0.0092332999, + "1167": 0.0492067431, + "1168": 0.0891801862, + "1169": 0.1333188502, + "1170": 0.1774575141, + "1171": 0.2255872036, + "1172": 0.2737168931, + "1173": 0.3256476623, + "1174": 0.3775784314, + "1175": 0.4331053333, + "1176": 0.4886322352, + "1177": 0.5475361304, + "1178": 0.6064400256, + "1179": 0.6684884474, + "1180": 0.7305368693, + "1181": 0.7954849409, + "1182": 0.8604330126, + "1183": 0.9280244136, + "1184": 0.9956158147, + "1185": 1.0655837929, + "1186": 1.1355517711, + "1187": 1.2076201947, + "1188": 1.2796886183, + "1189": 1.3535730662, + "1190": 1.4274575141, + "1191": 1.5028663981, + "1192": 1.5782752821, + "1193": 1.6549109978, + "1194": 1.7315467135, + "1195": 1.8091068148, + "1196": 1.8866669161, + "1197": 1.9648453086, + "1198": 2.0430237012, + "1199": 2.1215118506, + "1200": 2.2, + "1201": 2.2784881494, + "1202": 2.3569762988, + "1203": 2.4351546914, + "1204": 2.5133330839, + "1205": 2.5908931852, + "1206": 2.6684532865, + "1207": 2.7450890022, + "1208": 2.8217247179, + "1209": 2.8971336019, + "1210": 2.9725424859, + "1211": 3.0464269338, + "1212": 3.1203113817, + "1213": 3.1923798053, + "1214": 3.2644482289, + "1215": 3.3344162071, + "1216": 3.4043841853, + "1217": 3.4719755864, + "1218": 3.5395669874, + "1219": 3.6045150591, + "1220": 3.6694631307, + "1221": 3.7315115526, + "1222": 3.7935599744, + "1223": 3.8524638696, + "1224": 3.9113677648, + "1225": 3.9668946667, + "1226": 4.0224215686, + "1227": 4.0743523377, + "1228": 4.1262831069, + "1229": 4.1744127964, + "1230": 4.2225424859, + "1231": 4.2666811498, + "1232": 4.3108198138, + "1233": 4.3507932569, + "1234": 4.3907667001, + "1235": 4.4264171656, + "1236": 4.4620676312, + "1237": 4.4932544229, + "1238": 4.5244412147, + "1239": 4.5510412527, + "1240": 4.5776412907, + "1241": 4.5995495968, + "1242": 4.6214579028, + "1243": 4.6385880148, + "1244": 4.6557181268, + "1245": 4.6680024401, + "1246": 4.6802867533, + "1247": 4.6876767872, + "1248": 4.6950668211, + "1249": 4.6975334105, + "1250": 4.7, + "1251": 4.6975334105, + "1252": 4.6950668211, + "1253": 4.6876767872, + "1254": 4.6802867533, + "1255": 4.6680024401, + "1256": 4.6557181268, + "1257": 4.6385880148, + "1258": 4.6214579028, + "1259": 4.5995495968, + "1260": 4.5776412907, + "1261": 4.5510412527, + "1262": 4.5244412147, + "1263": 4.4932544229, + "1264": 4.4620676312, + "1265": 4.4264171656, + "1266": 4.3907667001, + "1267": 4.3507932569, + "1268": 4.3108198138, + "1269": 4.2666811498, + "1270": 4.2225424859, + "1271": 4.1744127964, + "1272": 4.1262831069, + "1273": 4.0743523377, + "1274": 4.0224215686, + "1275": 3.9668946667, + "1276": 3.9113677648, + "1277": 3.8524638696, + "1278": 3.7935599744, + "1279": 3.7315115526, + "1280": 3.6694631307, + "1281": 3.6045150591, + "1282": 3.5395669874, + "1283": 3.4719755864, + "1284": 3.4043841853, + "1285": 3.3344162071, + "1286": 3.2644482289, + "1287": 3.1923798053, + "1288": 3.1203113817, + "1289": 3.0464269338, + "1290": 2.9725424859, + "1291": 2.8971336019, + "1292": 2.8217247179, + "1293": 2.7450890022, + "1294": 2.6684532865, + "1295": 2.5908931852, + "1296": 2.5133330839, + "1297": 2.4351546914, + "1298": 2.3569762988, + "1299": 2.2784881494, + "1300": 2.2, + "1301": 2.1215118506, + "1302": 2.0430237012, + "1303": 1.9648453086, + "1304": 1.8866669161, + "1305": 1.8091068148, + "1306": 1.7315467135, + "1307": 1.6549109978, + "1308": 1.5782752821, + "1309": 1.5028663981, + "1310": 1.4274575141, + "1311": 1.3535730662, + "1312": 1.2796886183, + "1313": 1.2076201947, + "1314": 1.1355517711, + "1315": 1.0655837929, + "1316": 0.9956158147, + "1317": 0.9280244136, + "1318": 0.8604330126, + "1319": 0.7954849409, + "1320": 0.7305368693, + "1321": 0.6684884474, + "1322": 0.6064400256, + "1323": 0.5475361304, + "1324": 0.4886322352, + "1325": 0.4331053333, + "1326": 0.3775784314, + "1327": 0.3256476623, + "1328": 0.2737168931, + "1329": 0.2255872036, + "1330": 0.1774575141, + "1331": 0.1333188502, + "1332": 0.0891801862, + "1333": 0.0492067431, + "1334": 0.0092332999, + "1335": -0.0264171656, + "1336": -0.0620676312, + "1337": -0.0932544229, + "1338": -0.1244412147, + "1339": -0.1510412527, + "1340": -0.1776412907, + "1341": -0.1995495968, + "1342": -0.2214579028, + "1343": -0.2385880148, + "1344": -0.2557181268, + "1345": -0.2680024401, + "1346": -0.2802867533, + "1347": -0.2876767872, + "1348": -0.2950668211, + "1349": -0.2975334105, + "1350": -0.3, + "1351": -0.2975334105, + "1352": -0.2950668211, + "1353": -0.2876767872, + "1354": -0.2802867533, + "1355": -0.2680024401, + "1356": -0.2557181268, + "1357": -0.2385880148, + "1358": -0.2214579028, + "1359": -0.1995495968, + "1360": -0.1776412907, + "1361": -0.1510412527, + "1362": -0.1244412147, + "1363": -0.0932544229, + "1364": -0.0620676312, + "1365": -0.0264171656, + "1366": 0.0092332999, + "1367": 0.0492067431, + "1368": 0.0891801862, + "1369": 0.1333188502, + "1370": 0.1774575141, + "1371": 0.2255872036, + "1372": 0.2737168931, + "1373": 0.3256476623, + "1374": 0.3775784314, + "1375": 0.4331053333, + "1376": 0.4886322352, + "1377": 0.5475361304, + "1378": 0.6064400256, + "1379": 0.6684884474, + "1380": 0.7305368693, + "1381": 0.7954849409, + "1382": 0.8604330126, + "1383": 0.9280244136, + "1384": 0.9956158147, + "1385": 1.0655837929, + "1386": 1.1355517711, + "1387": 1.2076201947, + "1388": 1.2796886183, + "1389": 1.3535730662, + "1390": 1.4274575141, + "1391": 1.5028663981, + "1392": 1.5782752821, + "1393": 1.6549109978, + "1394": 1.7315467135, + "1395": 1.8091068148, + "1396": 1.8866669161, + "1397": 1.9648453086, + "1398": 2.0430237012, + "1399": 2.1215118506, + "1400": 2.2, + "1401": 2.2784881494, + "1402": 2.3569762988, + "1403": 2.4351546914, + "1404": 2.5133330839, + "1405": 2.5908931852, + "1406": 2.6684532865, + "1407": 2.7450890022, + "1408": 2.8217247179, + "1409": 2.8971336019, + "1410": 2.9725424859, + "1411": 3.0464269338, + "1412": 3.1203113817, + "1413": 3.1923798053, + "1414": 3.2644482289, + "1415": 3.3344162071, + "1416": 3.4043841853, + "1417": 3.4719755864, + "1418": 3.5395669874, + "1419": 3.6045150591, + "1420": 3.6694631307, + "1421": 3.7315115526, + "1422": 3.7935599744, + "1423": 3.8524638696, + "1424": 3.9113677648, + "1425": 3.9668946667, + "1426": 4.0224215686, + "1427": 4.0743523377, + "1428": 4.1262831069, + "1429": 4.1744127964, + "1430": 4.2225424859, + "1431": 4.2666811498, + "1432": 4.3108198138, + "1433": 4.3507932569, + "1434": 4.3907667001, + "1435": 4.4264171656, + "1436": 4.4620676312, + "1437": 4.4932544229, + "1438": 4.5244412147, + "1439": 4.5510412527, + "1440": 4.5776412907, + "1441": 4.5995495968, + "1442": 4.6214579028, + "1443": 4.6385880148, + "1444": 4.6557181268, + "1445": 4.6680024401, + "1446": 4.6802867533, + "1447": 4.6876767872, + "1448": 4.6950668211, + "1449": 4.6975334105, + "1450": 4.7, + "1451": 4.6975334105, + "1452": 4.6950668211, + "1453": 4.6876767872, + "1454": 4.6802867533, + "1455": 4.6680024401, + "1456": 4.6557181268, + "1457": 4.6385880148, + "1458": 4.6214579028, + "1459": 4.5995495968, + "1460": 4.5776412907, + "1461": 4.5510412527, + "1462": 4.5244412147, + "1463": 4.4932544229, + "1464": 4.4620676312, + "1465": 4.4264171656, + "1466": 4.3907667001, + "1467": 4.3507932569, + "1468": 4.3108198138, + "1469": 4.2666811498, + "1470": 4.2225424859, + "1471": 4.1744127964, + "1472": 4.1262831069, + "1473": 4.0743523377, + "1474": 4.0224215686, + "1475": 3.9668946667, + "1476": 3.9113677648, + "1477": 3.8524638696, + "1478": 3.7935599744, + "1479": 3.7315115526, + "1480": 3.6694631307, + "1481": 3.6045150591, + "1482": 3.5395669874, + "1483": 3.4719755864, + "1484": 3.4043841853, + "1485": 3.3344162071, + "1486": 3.2644482289, + "1487": 3.1923798053, + "1488": 3.1203113817, + "1489": 3.0464269338, + "1490": 2.9725424859, + "1491": 2.8971336019, + "1492": 2.8217247179, + "1493": 2.7450890022, + "1494": 2.6684532865, + "1495": 2.5908931852, + "1496": 2.5133330839, + "1497": 2.4351546914, + "1498": 2.3569762988, + "1499": 2.2784881494, + "1500": 2.2, + "1501": 2.1215118506, + "1502": 2.0430237012, + "1503": 1.9648453086, + "1504": 1.8866669161, + "1505": 1.8091068148, + "1506": 1.7315467135, + "1507": 1.6549109978, + "1508": 1.5782752821, + "1509": 1.5028663981, + "1510": 1.4274575141, + "1511": 1.3535730662, + "1512": 1.2796886183, + "1513": 1.2076201947, + "1514": 1.1355517711, + "1515": 1.0655837929, + "1516": 0.9956158147, + "1517": 0.9280244136, + "1518": 0.8604330126, + "1519": 0.7954849409, + "1520": 0.7305368693, + "1521": 0.6684884474, + "1522": 0.6064400256, + "1523": 0.5475361304, + "1524": 0.4886322352, + "1525": 0.4331053333, + "1526": 0.3775784314, + "1527": 0.3256476623, + "1528": 0.2737168931, + "1529": 0.2255872036, + "1530": 0.1774575141, + "1531": 0.1333188502, + "1532": 0.0891801862, + "1533": 0.0492067431, + "1534": 0.0092332999, + "1535": -0.0264171656, + "1536": -0.0620676312, + "1537": -0.0932544229, + "1538": -0.1244412147, + "1539": -0.1510412527, + "1540": -0.1776412907, + "1541": -0.1995495968, + "1542": -0.2214579028, + "1543": -0.2385880148, + "1544": -0.2557181268, + "1545": -0.2680024401, + "1546": -0.2802867533, + "1547": -0.2876767872, + "1548": -0.2950668211, + "1549": -0.2975334105, + "1550": -0.3, + "1551": -0.2975334105, + "1552": -0.2950668211, + "1553": -0.2876767872, + "1554": -0.2802867533, + "1555": -0.2680024401, + "1556": -0.2557181268, + "1557": -0.2385880148, + "1558": -0.2214579028, + "1559": -0.1995495968, + "1560": -0.1776412907, + "1561": -0.1510412527, + "1562": -0.1244412147, + "1563": -0.0932544229, + "1564": -0.0620676312, + "1565": -0.0264171656, + "1566": 0.0092332999, + "1567": 0.0492067431, + "1568": 0.0891801862, + "1569": 0.1333188502, + "1570": 0.1774575141, + "1571": 0.2255872036, + "1572": 0.2737168931, + "1573": 0.3256476623, + "1574": 0.3775784314, + "1575": 0.4331053333, + "1576": 0.4886322352, + "1577": 0.5475361304, + "1578": 0.6064400256, + "1579": 0.6684884474, + "1580": 0.7305368693, + "1581": 0.7954849409, + "1582": 0.8604330126, + "1583": 0.9280244136, + "1584": 0.9956158147, + "1585": 1.0655837929, + "1586": 1.1355517711, + "1587": 1.2076201947, + "1588": 1.2796886183, + "1589": 1.3535730662, + "1590": 1.4274575141, + "1591": 1.5028663981, + "1592": 1.5782752821, + "1593": 1.6549109978, + "1594": 1.7315467135, + "1595": 1.8091068148, + "1596": 1.8866669161, + "1597": 1.9648453086, + "1598": 2.0430237012, + "1599": 2.1215118506, + "1600": 2.2, + "1601": 2.2784881494, + "1602": 2.3569762988, + "1603": 2.4351546914, + "1604": 2.5133330839, + "1605": 2.5908931852, + "1606": 2.6684532865, + "1607": 2.7450890022, + "1608": 2.8217247179, + "1609": 2.8971336019, + "1610": 2.9725424859, + "1611": 3.0464269338, + "1612": 3.1203113817, + "1613": 3.1923798053, + "1614": 3.2644482289, + "1615": 3.3344162071, + "1616": 3.4043841853, + "1617": 3.4719755864, + "1618": 3.5395669874, + "1619": 3.6045150591, + "1620": 3.6694631307, + "1621": 3.7315115526, + "1622": 3.7935599744, + "1623": 3.8524638696, + "1624": 3.9113677648, + "1625": 3.9668946667, + "1626": 4.0224215686, + "1627": 4.0743523377, + "1628": 4.1262831069, + "1629": 4.1744127964, + "1630": 4.2225424859, + "1631": 4.2666811498, + "1632": 4.3108198138, + "1633": 4.3507932569, + "1634": 4.3907667001, + "1635": 4.4264171656, + "1636": 4.4620676312, + "1637": 4.4932544229, + "1638": 4.5244412147, + "1639": 4.5510412527, + "1640": 4.5776412907, + "1641": 4.5995495968, + "1642": 4.6214579028, + "1643": 4.6385880148, + "1644": 4.6557181268, + "1645": 4.6680024401, + "1646": 4.6802867533, + "1647": 4.6876767872, + "1648": 4.6950668211, + "1649": 4.6975334105, + "1650": 4.7, + "1651": 4.6975334105, + "1652": 4.6950668211, + "1653": 4.6876767872, + "1654": 4.6802867533, + "1655": 4.6680024401, + "1656": 4.6557181268, + "1657": 4.6385880148, + "1658": 4.6214579028, + "1659": 4.5995495968, + "1660": 4.5776412907, + "1661": 4.5510412527, + "1662": 4.5244412147, + "1663": 4.4932544229, + "1664": 4.4620676312, + "1665": 4.4264171656, + "1666": 4.3907667001, + "1667": 4.3507932569, + "1668": 4.3108198138, + "1669": 4.2666811498, + "1670": 4.2225424859, + "1671": 4.1744127964, + "1672": 4.1262831069, + "1673": 4.0743523377, + "1674": 4.0224215686, + "1675": 3.9668946667, + "1676": 3.9113677648, + "1677": 3.8524638696, + "1678": 3.7935599744, + "1679": 3.7315115526, + "1680": 3.6694631307, + "1681": 3.6045150591, + "1682": 3.5395669874, + "1683": 3.4719755864, + "1684": 3.4043841853, + "1685": 3.3344162071, + "1686": 3.2644482289, + "1687": 3.1923798053, + "1688": 3.1203113817, + "1689": 3.0464269338, + "1690": 2.9725424859, + "1691": 2.8971336019, + "1692": 2.8217247179, + "1693": 2.7450890022, + "1694": 2.6684532865, + "1695": 2.5908931852, + "1696": 2.5133330839, + "1697": 2.4351546914, + "1698": 2.3569762988, + "1699": 2.2784881494, + "1700": 2.2, + "1701": 2.1215118506, + "1702": 2.0430237012, + "1703": 1.9648453086, + "1704": 1.8866669161, + "1705": 1.8091068148, + "1706": 1.7315467135, + "1707": 1.6549109978, + "1708": 1.5782752821, + "1709": 1.5028663981, + "1710": 1.4274575141, + "1711": 1.3535730662, + "1712": 1.2796886183, + "1713": 1.2076201947, + "1714": 1.1355517711, + "1715": 1.0655837929, + "1716": 0.9956158147, + "1717": 0.9280244136, + "1718": 0.8604330126, + "1719": 0.7954849409, + "1720": 0.7305368693, + "1721": 0.6684884474, + "1722": 0.6064400256, + "1723": 0.5475361304, + "1724": 0.4886322352, + "1725": 0.4331053333, + "1726": 0.3775784314, + "1727": 0.3256476623, + "1728": 0.2737168931, + "1729": 0.2255872036, + "1730": 0.1774575141, + "1731": 0.1333188502, + "1732": 0.0891801862, + "1733": 0.0492067431, + "1734": 0.0092332999, + "1735": -0.0264171656, + "1736": -0.0620676312, + "1737": -0.0932544229, + "1738": -0.1244412147, + "1739": -0.1510412527, + "1740": -0.1776412907, + "1741": -0.1995495968, + "1742": -0.2214579028, + "1743": -0.2385880148, + "1744": -0.2557181268, + "1745": -0.2680024401, + "1746": -0.2802867533, + "1747": -0.2876767872, + "1748": -0.2950668211, + "1749": -0.2975334105, + "1750": -0.3, + "1751": -0.2975334105, + "1752": -0.2950668211, + "1753": -0.2876767872, + "1754": -0.2802867533, + "1755": -0.2680024401, + "1756": -0.2557181268, + "1757": -0.2385880148, + "1758": -0.2214579028, + "1759": -0.1995495968, + "1760": -0.1776412907, + "1761": -0.1510412527, + "1762": -0.1244412147, + "1763": -0.0932544229, + "1764": -0.0620676312, + "1765": -0.0264171656, + "1766": 0.0092332999, + "1767": 0.0492067431, + "1768": 0.0891801862, + "1769": 0.1333188502, + "1770": 0.1774575141, + "1771": 0.2255872036, + "1772": 0.2737168931, + "1773": 0.3256476623, + "1774": 0.3775784314, + "1775": 0.4331053333, + "1776": 0.4886322352, + "1777": 0.5475361304, + "1778": 0.6064400256, + "1779": 0.6684884474, + "1780": 0.7305368693, + "1781": 0.7954849409, + "1782": 0.8604330126, + "1783": 0.9280244136, + "1784": 0.9956158147, + "1785": 1.0655837929, + "1786": 1.1355517711, + "1787": 1.2076201947, + "1788": 1.2796886183, + "1789": 1.3535730662, + "1790": 1.4274575141, + "1791": 1.5028663981, + "1792": 1.5782752821, + "1793": 1.6549109978, + "1794": 1.7315467135, + "1795": 1.8091068148, + "1796": 1.8866669161, + "1797": 1.9648453086, + "1798": 2.0430237012, + "1799": 2.1215118506, + "1800": 2.2, + "1801": 2.2784881494, + "1802": 2.3569762988, + "1803": 2.4351546914, + "1804": 2.5133330839, + "1805": 2.5908931852, + "1806": 2.6684532865, + "1807": 2.7450890022, + "1808": 2.8217247179, + "1809": 2.8971336019, + "1810": 2.9725424859, + "1811": 3.0464269338, + "1812": 3.1203113817, + "1813": 3.1923798053, + "1814": 3.2644482289, + "1815": 3.3344162071, + "1816": 3.4043841853, + "1817": 3.4719755864, + "1818": 3.5395669874, + "1819": 3.6045150591, + "1820": 3.6694631307, + "1821": 3.7315115526, + "1822": 3.7935599744, + "1823": 3.8524638696, + "1824": 3.9113677648, + "1825": 3.9668946667, + "1826": 4.0224215686, + "1827": 4.0743523377, + "1828": 4.1262831069, + "1829": 4.1744127964, + "1830": 4.2225424859, + "1831": 4.2666811498, + "1832": 4.3108198138, + "1833": 4.3507932569, + "1834": 4.3907667001, + "1835": 4.4264171656, + "1836": 4.4620676312, + "1837": 4.4932544229, + "1838": 4.5244412147, + "1839": 4.5510412527, + "1840": 4.5776412907, + "1841": 4.5995495968, + "1842": 4.6214579028, + "1843": 4.6385880148, + "1844": 4.6557181268, + "1845": 4.6680024401, + "1846": 4.6802867533, + "1847": 4.6876767872, + "1848": 4.6950668211, + "1849": 4.6975334105, + "1850": 4.7, + "1851": 4.6975334105, + "1852": 4.6950668211, + "1853": 4.6876767872, + "1854": 4.6802867533, + "1855": 4.6680024401, + "1856": 4.6557181268, + "1857": 4.6385880148, + "1858": 4.6214579028, + "1859": 4.5995495968, + "1860": 4.5776412907, + "1861": 4.5510412527, + "1862": 4.5244412147, + "1863": 4.4932544229, + "1864": 4.4620676312, + "1865": 4.4264171656, + "1866": 4.3907667001, + "1867": 4.3507932569, + "1868": 4.3108198138, + "1869": 4.2666811498, + "1870": 4.2225424859, + "1871": 4.1744127964, + "1872": 4.1262831069, + "1873": 4.0743523377, + "1874": 4.0224215686, + "1875": 3.9668946667, + "1876": 3.9113677648, + "1877": 3.8524638696, + "1878": 3.7935599744, + "1879": 3.7315115526, + "1880": 3.6694631307, + "1881": 3.6045150591, + "1882": 3.5395669874, + "1883": 3.4719755864, + "1884": 3.4043841853, + "1885": 3.3344162071, + "1886": 3.2644482289, + "1887": 3.1923798053, + "1888": 3.1203113817, + "1889": 3.0464269338, + "1890": 2.9725424859, + "1891": 2.8971336019, + "1892": 2.8217247179, + "1893": 2.7450890022, + "1894": 2.6684532865, + "1895": 2.5908931852, + "1896": 2.5133330839, + "1897": 2.4351546914, + "1898": 2.3569762988, + "1899": 2.2784881494, + "1900": 2.2, + "1901": 2.1215118506, + "1902": 2.0430237012, + "1903": 1.9648453086, + "1904": 1.8866669161, + "1905": 1.8091068148, + "1906": 1.7315467135, + "1907": 1.6549109978, + "1908": 1.5782752821, + "1909": 1.5028663981, + "1910": 1.4274575141, + "1911": 1.3535730662, + "1912": 1.2796886183, + "1913": 1.2076201947, + "1914": 1.1355517711, + "1915": 1.0655837929, + "1916": 0.9956158147, + "1917": 0.9280244136, + "1918": 0.8604330126, + "1919": 0.7954849409, + "1920": 0.7305368693, + "1921": 0.6684884474, + "1922": 0.6064400256, + "1923": 0.5475361304, + "1924": 0.4886322352, + "1925": 0.4331053333, + "1926": 0.3775784314, + "1927": 0.3256476623, + "1928": 0.2737168931, + "1929": 0.2255872036, + "1930": 0.1774575141, + "1931": 0.1333188502, + "1932": 0.0891801862, + "1933": 0.0492067431, + "1934": 0.0092332999, + "1935": -0.0264171656, + "1936": -0.0620676312, + "1937": -0.0932544229, + "1938": -0.1244412147, + "1939": -0.1510412527, + "1940": -0.1776412907, + "1941": -0.1995495968, + "1942": -0.2214579028, + "1943": -0.2385880148, + "1944": -0.2557181268, + "1945": -0.2680024401, + "1946": -0.2802867533, + "1947": -0.2876767872, + "1948": -0.2950668211, + "1949": -0.2975334105, + "1950": -0.3, + "1951": -0.2975334105, + "1952": -0.2950668211, + "1953": -0.2876767872, + "1954": -0.2802867533, + "1955": -0.2680024401, + "1956": -0.2557181268, + "1957": -0.2385880148, + "1958": -0.2214579028, + "1959": -0.1995495968, + "1960": -0.1776412907, + "1961": -0.1510412527, + "1962": -0.1244412147, + "1963": -0.0932544229, + "1964": -0.0620676312, + "1965": -0.0264171656, + "1966": 0.0092332999, + "1967": 0.0492067431, + "1968": 0.0891801862, + "1969": 0.1333188502, + "1970": 0.1774575141, + "1971": 0.2255872036, + "1972": 0.2737168931, + "1973": 0.3256476623, + "1974": 0.3775784314, + "1975": 0.4331053333, + "1976": 0.4886322352, + "1977": 0.5475361304, + "1978": 0.6064400256, + "1979": 0.6684884474, + "1980": 0.7305368693, + "1981": 0.7954849409, + "1982": 0.8604330126, + "1983": 0.9280244136, + "1984": 0.9956158147, + "1985": 1.0655837929, + "1986": 1.1355517711, + "1987": 1.2076201947, + "1988": 1.2796886183, + "1989": 1.3535730662, + "1990": 1.4274575141, + "1991": 1.5028663981, + "1992": 1.5782752821, + "1993": 1.6549109978, + "1994": 1.7315467135, + "1995": 1.8091068148, + "1996": 1.8866669161, + "1997": 1.9648453086, + "1998": 2.0430237012, + "1999": 2.1215118506, + "2000": 2.2, + "2001": 2.2784881494, + "2002": 2.3569762988, + "2003": 2.4351546914, + "2004": 2.5133330839, + "2005": 2.5908931852, + "2006": 2.6684532865, + "2007": 2.7450890022, + "2008": 2.8217247179, + "2009": 2.8971336019, + "2010": 2.9725424859, + "2011": 3.0464269338, + "2012": 3.1203113817, + "2013": 3.1923798053, + "2014": 3.2644482289, + "2015": 3.3344162071, + "2016": 3.4043841853, + "2017": 3.4719755864, + "2018": 3.5395669874, + "2019": 3.6045150591, + "2020": 3.6694631307, + "2021": 3.7315115526, + "2022": 3.7935599744, + "2023": 3.8524638696, + "2024": 3.9113677648, + "2025": 3.9668946667, + "2026": 4.0224215686, + "2027": 4.0743523377, + "2028": 4.1262831069, + "2029": 4.1744127964, + "2030": 4.2225424859, + "2031": 4.2666811498, + "2032": 4.3108198138, + "2033": 4.3507932569, + "2034": 4.3907667001, + "2035": 4.4264171656, + "2036": 4.4620676312, + "2037": 4.4932544229, + "2038": 4.5244412147, + "2039": 4.5510412527, + "2040": 4.5776412907, + "2041": 4.5995495968, + "2042": 4.6214579028, + "2043": 4.6385880148, + "2044": 4.6557181268, + "2045": 4.6680024401, + "2046": 4.6802867533, + "2047": 4.6876767872, + "2048": 4.6950668211, + "2049": 4.6975334105, + "2050": 4.7, + "2051": 4.6975334105, + "2052": 4.6950668211, + "2053": 4.6876767872, + "2054": 4.6802867533, + "2055": 4.6680024401, + "2056": 4.6557181268, + "2057": 4.6385880148, + "2058": 4.6214579028, + "2059": 4.5995495968, + "2060": 4.5776412907, + "2061": 4.5510412527, + "2062": 4.5244412147, + "2063": 4.4932544229, + "2064": 4.4620676312, + "2065": 4.4264171656, + "2066": 4.3907667001, + "2067": 4.3507932569, + "2068": 4.3108198138, + "2069": 4.2666811498, + "2070": 4.2225424859, + "2071": 4.1744127964, + "2072": 4.1262831069, + "2073": 4.0743523377, + "2074": 4.0224215686, + "2075": 3.9668946667, + "2076": 3.9113677648, + "2077": 3.8524638696, + "2078": 3.7935599744, + "2079": 3.7315115526, + "2080": 3.6694631307, + "2081": 3.6045150591, + "2082": 3.5395669874, + "2083": 3.4719755864, + "2084": 3.4043841853, + "2085": 3.3344162071, + "2086": 3.2644482289, + "2087": 3.1923798053, + "2088": 3.1203113817, + "2089": 3.0464269338, + "2090": 2.9725424859, + "2091": 2.8971336019, + "2092": 2.8217247179, + "2093": 2.7450890022, + "2094": 2.6684532865, + "2095": 2.5908931852, + "2096": 2.5133330839, + "2097": 2.4351546914, + "2098": 2.3569762988, + "2099": 2.2784881494, + "2100": 2.2, + "2101": 2.1215118506, + "2102": 2.0430237012, + "2103": 1.9648453086, + "2104": 1.8866669161, + "2105": 1.8091068148, + "2106": 1.7315467135, + "2107": 1.6549109978, + "2108": 1.5782752821, + "2109": 1.5028663981, + "2110": 1.4274575141, + "2111": 1.3535730662, + "2112": 1.2796886183, + "2113": 1.2076201947, + "2114": 1.1355517711, + "2115": 1.0655837929, + "2116": 0.9956158147, + "2117": 0.9280244136, + "2118": 0.8604330126, + "2119": 0.7954849409, + "2120": 0.7305368693, + "2121": 0.6684884474, + "2122": 0.6064400256, + "2123": 0.5475361304, + "2124": 0.4886322352, + "2125": 0.4331053333, + "2126": 0.3775784314, + "2127": 0.3256476623, + "2128": 0.2737168931, + "2129": 0.2255872036, + "2130": 0.1774575141, + "2131": 0.1333188502, + "2132": 0.0891801862, + "2133": 0.0492067431, + "2134": 0.0092332999, + "2135": -0.0264171656, + "2136": -0.0620676312, + "2137": -0.0932544229, + "2138": -0.1244412147, + "2139": -0.1510412527, + "2140": -0.1776412907, + "2141": -0.1995495968, + "2142": -0.2214579028, + "2143": -0.2385880148, + "2144": -0.2557181268, + "2145": -0.2680024401, + "2146": -0.2802867533, + "2147": -0.2876767872, + "2148": -0.2950668211, + "2149": -0.2975334105, + "2150": -0.3, + "2151": -0.2975334105, + "2152": -0.2950668211, + "2153": -0.2876767872, + "2154": -0.2802867533, + "2155": -0.2680024401, + "2156": -0.2557181268, + "2157": -0.2385880148, + "2158": -0.2214579028, + "2159": -0.1995495968, + "2160": -0.1776412907, + "2161": -0.1510412527, + "2162": -0.1244412147, + "2163": -0.0932544229, + "2164": -0.0620676312, + "2165": -0.0264171656, + "2166": 0.0092332999, + "2167": 0.0492067431, + "2168": 0.0891801862, + "2169": 0.1333188502, + "2170": 0.1774575141, + "2171": 0.2255872036, + "2172": 0.2737168931, + "2173": 0.3256476623, + "2174": 0.3775784314, + "2175": 0.4331053333, + "2176": 0.4886322352, + "2177": 0.5475361304, + "2178": 0.6064400256, + "2179": 0.6684884474, + "2180": 0.7305368693, + "2181": 0.7954849409, + "2182": 0.8604330126, + "2183": 0.9280244136, + "2184": 0.9956158147, + "2185": 1.0655837929, + "2186": 1.1355517711, + "2187": 1.2076201947, + "2188": 1.2796886183, + "2189": 1.3535730662, + "2190": 1.4274575141, + "2191": 1.5028663981, + "2192": 1.5782752821, + "2193": 1.6549109978, + "2194": 1.7315467135, + "2195": 1.8091068148, + "2196": 1.8866669161, + "2197": 1.9648453086, + "2198": 2.0430237012, + "2199": 2.1215118506, + "2200": 2.2, + "2201": 2.2784881494, + "2202": 2.3569762988, + "2203": 2.4351546914, + "2204": 2.5133330839, + "2205": 2.5908931852, + "2206": 2.6684532865, + "2207": 2.7450890022, + "2208": 2.8217247179, + "2209": 2.8971336019, + "2210": 2.9725424859, + "2211": 3.0464269338, + "2212": 3.1203113817, + "2213": 3.1923798053, + "2214": 3.2644482289, + "2215": 3.3344162071, + "2216": 3.4043841853, + "2217": 3.4719755864, + "2218": 3.5395669874, + "2219": 3.6045150591, + "2220": 3.6694631307, + "2221": 3.7315115526, + "2222": 3.7935599744, + "2223": 3.8524638696, + "2224": 3.9113677648, + "2225": 3.9668946667, + "2226": 4.0224215686, + "2227": 4.0743523377, + "2228": 4.1262831069, + "2229": 4.1744127964, + "2230": 4.2225424859, + "2231": 4.2666811498, + "2232": 4.3108198138, + "2233": 4.3507932569, + "2234": 4.3907667001, + "2235": 4.4264171656, + "2236": 4.4620676312, + "2237": 4.4932544229, + "2238": 4.5244412147, + "2239": 4.5510412527, + "2240": 4.5776412907, + "2241": 4.5995495968, + "2242": 4.6214579028, + "2243": 4.6385880148, + "2244": 4.6557181268, + "2245": 4.6680024401, + "2246": 4.6802867533, + "2247": 4.6876767872, + "2248": 4.6950668211, + "2249": 4.6975334105, + "2250": 4.7, + "2251": 4.6975334105, + "2252": 4.6950668211, + "2253": 4.6876767872, + "2254": 4.6802867533, + "2255": 4.6680024401, + "2256": 4.6557181268, + "2257": 4.6385880148, + "2258": 4.6214579028, + "2259": 4.5995495968, + "2260": 4.5776412907, + "2261": 4.5510412527, + "2262": 4.5244412147, + "2263": 4.4932544229, + "2264": 4.4620676312, + "2265": 4.4264171656, + "2266": 4.3907667001, + "2267": 4.3507932569, + "2268": 4.3108198138, + "2269": 4.2666811498, + "2270": 4.2225424859, + "2271": 4.1744127964, + "2272": 4.1262831069, + "2273": 4.0743523377, + "2274": 4.0224215686, + "2275": 3.9668946667, + "2276": 3.9113677648, + "2277": 3.8524638696, + "2278": 3.7935599744, + "2279": 3.7315115526, + "2280": 3.6694631307, + "2281": 3.6045150591, + "2282": 3.5395669874, + "2283": 3.4719755864, + "2284": 3.4043841853, + "2285": 3.3344162071, + "2286": 3.2644482289, + "2287": 3.1923798053, + "2288": 3.1203113817, + "2289": 3.0464269338, + "2290": 2.9725424859, + "2291": 2.8971336019, + "2292": 2.8217247179, + "2293": 2.7450890022, + "2294": 2.6684532865, + "2295": 2.5908931852, + "2296": 2.5133330839, + "2297": 2.4351546914, + "2298": 2.3569762988, + "2299": 2.2784881494, + "2300": 2.2, + "2301": 2.1215118506, + "2302": 2.0430237012, + "2303": 1.9648453086, + "2304": 1.8866669161, + "2305": 1.8091068148, + "2306": 1.7315467135, + "2307": 1.6549109978, + "2308": 1.5782752821, + "2309": 1.5028663981, + "2310": 1.4274575141, + "2311": 1.3535730662, + "2312": 1.2796886183, + "2313": 1.2076201947, + "2314": 1.1355517711, + "2315": 1.0655837929, + "2316": 0.9956158147, + "2317": 0.9280244136, + "2318": 0.8604330126, + "2319": 0.7954849409, + "2320": 0.7305368693, + "2321": 0.6684884474, + "2322": 0.6064400256, + "2323": 0.5475361304, + "2324": 0.4886322352, + "2325": 0.4331053333, + "2326": 0.3775784314, + "2327": 0.3256476623, + "2328": 0.2737168931, + "2329": 0.2255872036, + "2330": 0.1774575141, + "2331": 0.1333188502, + "2332": 0.0891801862, + "2333": 0.0492067431, + "2334": 0.0092332999, + "2335": -0.0264171656, + "2336": -0.0620676312, + "2337": -0.0932544229, + "2338": -0.1244412147, + "2339": -0.1510412527, + "2340": -0.1776412907, + "2341": -0.1995495968, + "2342": -0.2214579028, + "2343": -0.2385880148, + "2344": -0.2557181268, + "2345": -0.2680024401, + "2346": -0.2802867533, + "2347": -0.2876767872, + "2348": -0.2950668211, + "2349": -0.2975334105, + "2350": -0.3, + "2351": -0.2975334105, + "2352": -0.2950668211, + "2353": -0.2876767872, + "2354": -0.2802867533, + "2355": -0.2680024401, + "2356": -0.2557181268, + "2357": -0.2385880148, + "2358": -0.2214579028, + "2359": -0.1995495968, + "2360": -0.1776412907, + "2361": -0.1510412527, + "2362": -0.1244412147, + "2363": -0.0932544229, + "2364": -0.0620676312, + "2365": -0.0264171656, + "2366": 0.0092332999, + "2367": 0.0492067431, + "2368": 0.0891801862, + "2369": 0.1333188502, + "2370": 0.1774575141, + "2371": 0.2255872036, + "2372": 0.2737168931, + "2373": 0.3256476623, + "2374": 0.3775784314, + "2375": 0.4331053333, + "2376": 0.4886322352, + "2377": 0.5475361304, + "2378": 0.6064400256, + "2379": 0.6684884474, + "2380": 0.7305368693, + "2381": 0.7954849409, + "2382": 0.8604330126, + "2383": 0.9280244136, + "2384": 0.9956158147, + "2385": 1.0655837929, + "2386": 1.1355517711, + "2387": 1.2076201947, + "2388": 1.2796886183, + "2389": 1.3535730662, + "2390": 1.4274575141, + "2391": 1.5028663981, + "2392": 1.5782752821, + "2393": 1.6549109978, + "2394": 1.7315467135, + "2395": 1.8091068148, + "2396": 1.8866669161, + "2397": 1.9648453086, + "2398": 2.0430237012, + "2399": 2.1215118506, + "2400": 2.2, + "2401": 2.2784881494, + "2402": 2.3569762988, + "2403": 2.4351546914, + "2404": 2.5133330839, + "2405": 2.5908931852, + "2406": 2.6684532865, + "2407": 2.7450890022, + "2408": 2.8217247179, + "2409": 2.8971336019, + "2410": 2.9725424859, + "2411": 3.0464269338, + "2412": 3.1203113817, + "2413": 3.1923798053, + "2414": 3.2644482289, + "2415": 3.3344162071, + "2416": 3.4043841853, + "2417": 3.4719755864, + "2418": 3.5395669874, + "2419": 3.6045150591, + "2420": 3.6694631307, + "2421": 3.7315115526, + "2422": 3.7935599744, + "2423": 3.8524638696, + "2424": 3.9113677648, + "2425": 3.9668946667, + "2426": 4.0224215686, + "2427": 4.0743523377, + "2428": 4.1262831069, + "2429": 4.1744127964, + "2430": 4.2225424859, + "2431": 4.2666811498, + "2432": 4.3108198138, + "2433": 4.3507932569, + "2434": 4.3907667001, + "2435": 4.4264171656, + "2436": 4.4620676312, + "2437": 4.4932544229, + "2438": 4.5244412147, + "2439": 4.5510412527, + "2440": 4.5776412907, + "2441": 4.5995495968, + "2442": 4.6214579028, + "2443": 4.6385880148, + "2444": 4.6557181268, + "2445": 4.6680024401, + "2446": 4.6802867533, + "2447": 4.6876767872, + "2448": 4.6950668211, + "2449": 4.6975334105, + "2450": 4.7, + "2451": 4.6975334105, + "2452": 4.6950668211, + "2453": 4.6876767872, + "2454": 4.6802867533, + "2455": 4.6680024401, + "2456": 4.6557181268, + "2457": 4.6385880148, + "2458": 4.6214579028, + "2459": 4.5995495968, + "2460": 4.5776412907, + "2461": 4.5510412527, + "2462": 4.5244412147, + "2463": 4.4932544229, + "2464": 4.4620676312, + "2465": 4.4264171656, + "2466": 4.3907667001, + "2467": 4.3507932569, + "2468": 4.3108198138, + "2469": 4.2666811498, + "2470": 4.2225424859, + "2471": 4.1744127964, + "2472": 4.1262831069, + "2473": 4.0743523377, + "2474": 4.0224215686, + "2475": 3.9668946667, + "2476": 3.9113677648, + "2477": 3.8524638696, + "2478": 3.7935599744, + "2479": 3.7315115526, + "2480": 3.6694631307, + "2481": 3.6045150591, + "2482": 3.5395669874, + "2483": 3.4719755864, + "2484": 3.4043841853, + "2485": 3.3344162071, + "2486": 3.2644482289, + "2487": 3.1923798053, + "2488": 3.1203113817, + "2489": 3.0464269338, + "2490": 2.9725424859, + "2491": 2.8971336019, + "2492": 2.8217247179, + "2493": 2.7450890022, + "2494": 2.6684532865, + "2495": 2.5908931852, + "2496": 2.5133330839, + "2497": 2.4351546914, + "2498": 2.3569762988, + "2499": 2.2784881494, + "2500": 2.2, + "2501": 2.1215118506, + "2502": 2.0430237012, + "2503": 1.9648453086, + "2504": 1.8866669161, + "2505": 1.8091068148, + "2506": 1.7315467135, + "2507": 1.6549109978, + "2508": 1.5782752821, + "2509": 1.5028663981, + "2510": 1.4274575141, + "2511": 1.3535730662, + "2512": 1.2796886183, + "2513": 1.2076201947, + "2514": 1.1355517711, + "2515": 1.0655837929, + "2516": 0.9956158147, + "2517": 0.9280244136, + "2518": 0.8604330126, + "2519": 0.7954849409, + "2520": 0.7305368693, + "2521": 0.6684884474, + "2522": 0.6064400256, + "2523": 0.5475361304, + "2524": 0.4886322352, + "2525": 0.4331053333, + "2526": 0.3775784314, + "2527": 0.3256476623, + "2528": 0.2737168931, + "2529": 0.2255872036, + "2530": 0.1774575141, + "2531": 0.1333188502, + "2532": 0.0891801862, + "2533": 0.0492067431, + "2534": 0.0092332999, + "2535": -0.0264171656, + "2536": -0.0620676312, + "2537": -0.0932544229, + "2538": -0.1244412147, + "2539": -0.1510412527, + "2540": -0.1776412907, + "2541": -0.1995495968, + "2542": -0.2214579028, + "2543": -0.2385880148, + "2544": -0.2557181268, + "2545": -0.2680024401, + "2546": -0.2802867533, + "2547": -0.2876767872, + "2548": -0.2950668211, + "2549": -0.2975334105, + "2550": -0.3, + "2551": -0.2975334105, + "2552": -0.2950668211, + "2553": -0.2876767872, + "2554": -0.2802867533, + "2555": -0.2680024401, + "2556": -0.2557181268, + "2557": -0.2385880148, + "2558": -0.2214579028, + "2559": -0.1995495968, + "2560": -0.1776412907, + "2561": -0.1510412527, + "2562": -0.1244412147, + "2563": -0.0932544229, + "2564": -0.0620676312, + "2565": -0.0264171656, + "2566": 0.0092332999, + "2567": 0.0492067431, + "2568": 0.0891801862, + "2569": 0.1333188502, + "2570": 0.1774575141, + "2571": 0.2255872036, + "2572": 0.2737168931, + "2573": 0.3256476623, + "2574": 0.3775784314, + "2575": 0.4331053333, + "2576": 0.4886322352, + "2577": 0.5475361304, + "2578": 0.6064400256, + "2579": 0.6684884474, + "2580": 0.7305368693, + "2581": 0.7954849409, + "2582": 0.8604330126, + "2583": 0.9280244136, + "2584": 0.9956158147, + "2585": 1.0655837929, + "2586": 1.1355517711, + "2587": 1.2076201947, + "2588": 1.2796886183, + "2589": 1.3535730662, + "2590": 1.4274575141, + "2591": 1.5028663981, + "2592": 1.5782752821, + "2593": 1.6549109978, + "2594": 1.7315467135, + "2595": 1.8091068148, + "2596": 1.8866669161, + "2597": 1.9648453086, + "2598": 2.0430237012, + "2599": 2.1215118506, + "2600": 2.2, + "2601": 2.2784881494, + "2602": 2.3569762988, + "2603": 2.4351546914, + "2604": 2.5133330839, + "2605": 2.5908931852, + "2606": 2.6684532865, + "2607": 2.7450890022, + "2608": 2.8217247179, + "2609": 2.8971336019, + "2610": 2.9725424859, + "2611": 3.0464269338, + "2612": 3.1203113817, + "2613": 3.1923798053, + "2614": 3.2644482289, + "2615": 3.3344162071, + "2616": 3.4043841853, + "2617": 3.4719755864, + "2618": 3.5395669874, + "2619": 3.6045150591, + "2620": 3.6694631307, + "2621": 3.7315115526, + "2622": 3.7935599744, + "2623": 3.8524638696, + "2624": 3.9113677648, + "2625": 3.9668946667, + "2626": 4.0224215686, + "2627": 4.0743523377, + "2628": 4.1262831069, + "2629": 4.1744127964, + "2630": 4.2225424859, + "2631": 4.2666811498, + "2632": 4.3108198138, + "2633": 4.3507932569, + "2634": 4.3907667001, + "2635": 4.4264171656, + "2636": 4.4620676312, + "2637": 4.4932544229, + "2638": 4.5244412147, + "2639": 4.5510412527, + "2640": 4.5776412907, + "2641": 4.5995495968, + "2642": 4.6214579028, + "2643": 4.6385880148, + "2644": 4.6557181268, + "2645": 4.6680024401, + "2646": 4.6802867533, + "2647": 4.6876767872, + "2648": 4.6950668211, + "2649": 4.6975334105, + "2650": 4.7, + "2651": 4.6975334105, + "2652": 4.6950668211, + "2653": 4.6876767872, + "2654": 4.6802867533, + "2655": 4.6680024401, + "2656": 4.6557181268, + "2657": 4.6385880148, + "2658": 4.6214579028, + "2659": 4.5995495968, + "2660": 4.5776412907, + "2661": 4.5510412527, + "2662": 4.5244412147, + "2663": 4.4932544229, + "2664": 4.4620676312, + "2665": 4.4264171656, + "2666": 4.3907667001, + "2667": 4.3507932569, + "2668": 4.3108198138, + "2669": 4.2666811498, + "2670": 4.2225424859, + "2671": 4.1744127964, + "2672": 4.1262831069, + "2673": 4.0743523377, + "2674": 4.0224215686, + "2675": 3.9668946667, + "2676": 3.9113677648, + "2677": 3.8524638696, + "2678": 3.7935599744, + "2679": 3.7315115526, + "2680": 3.6694631307, + "2681": 3.6045150591, + "2682": 3.5395669874, + "2683": 3.4719755864, + "2684": 3.4043841853, + "2685": 3.3344162071, + "2686": 3.2644482289, + "2687": 3.1923798053, + "2688": 3.1203113817, + "2689": 3.0464269338, + "2690": 2.9725424859, + "2691": 2.8971336019, + "2692": 2.8217247179, + "2693": 2.7450890022, + "2694": 2.6684532865, + "2695": 2.5908931852, + "2696": 2.5133330839, + "2697": 2.4351546914, + "2698": 2.3569762988, + "2699": 2.2784881494, + "2700": 2.2, + "2701": 2.1215118506, + "2702": 2.0430237012, + "2703": 1.9648453086, + "2704": 1.8866669161, + "2705": 1.8091068148, + "2706": 1.7315467135, + "2707": 1.6549109978, + "2708": 1.5782752821, + "2709": 1.5028663981, + "2710": 1.4274575141, + "2711": 1.3535730662, + "2712": 1.2796886183, + "2713": 1.2076201947, + "2714": 1.1355517711, + "2715": 1.0655837929, + "2716": 0.9956158147, + "2717": 0.9280244136, + "2718": 0.8604330126, + "2719": 0.7954849409, + "2720": 0.7305368693, + "2721": 0.6684884474, + "2722": 0.6064400256, + "2723": 0.5475361304, + "2724": 0.4886322352, + "2725": 0.4331053333, + "2726": 0.3775784314, + "2727": 0.3256476623, + "2728": 0.2737168931, + "2729": 0.2255872036, + "2730": 0.1774575141, + "2731": 0.1333188502, + "2732": 0.0891801862, + "2733": 0.0492067431, + "2734": 0.0092332999, + "2735": -0.0264171656, + "2736": -0.0620676312, + "2737": -0.0932544229, + "2738": -0.1244412147, + "2739": -0.1510412527, + "2740": -0.1776412907, + "2741": -0.1995495968, + "2742": -0.2214579028, + "2743": -0.2385880148, + "2744": -0.2557181268, + "2745": -0.2680024401, + "2746": -0.2802867533, + "2747": -0.2876767872, + "2748": -0.2950668211, + "2749": -0.2975334105, + "2750": -0.3, + "2751": -0.2975334105, + "2752": -0.2950668211, + "2753": -0.2876767872, + "2754": -0.2802867533, + "2755": -0.2680024401, + "2756": -0.2557181268, + "2757": -0.2385880148, + "2758": -0.2214579028, + "2759": -0.1995495968, + "2760": -0.1776412907, + "2761": -0.1510412527, + "2762": -0.1244412147, + "2763": -0.0932544229, + "2764": -0.0620676312, + "2765": -0.0264171656, + "2766": 0.0092332999, + "2767": 0.0492067431, + "2768": 0.0891801862, + "2769": 0.1333188502, + "2770": 0.1774575141, + "2771": 0.2255872036, + "2772": 0.2737168931, + "2773": 0.3256476623, + "2774": 0.3775784314, + "2775": 0.4331053333, + "2776": 0.4886322352, + "2777": 0.5475361304, + "2778": 0.6064400256, + "2779": 0.6684884474, + "2780": 0.7305368693, + "2781": 0.7954849409, + "2782": 0.8604330126, + "2783": 0.9280244136, + "2784": 0.9956158147, + "2785": 1.0655837929, + "2786": 1.1355517711, + "2787": 1.2076201947, + "2788": 1.2796886183, + "2789": 1.3535730662, + "2790": 1.4274575141, + "2791": 1.5028663981, + "2792": 1.5782752821, + "2793": 1.6549109978, + "2794": 1.7315467135, + "2795": 1.8091068148, + "2796": 1.8866669161, + "2797": 1.9648453086, + "2798": 2.0430237012, + "2799": 2.1215118506, + "2800": 2.2, + "2801": 2.2784881494, + "2802": 2.3569762988, + "2803": 2.4351546914, + "2804": 2.5133330839, + "2805": 2.5908931852, + "2806": 2.6684532865, + "2807": 2.7450890022, + "2808": 2.8217247179, + "2809": 2.8971336019, + "2810": 2.9725424859, + "2811": 3.0464269338, + "2812": 3.1203113817, + "2813": 3.1923798053, + "2814": 3.2644482289, + "2815": 3.3344162071, + "2816": 3.4043841853, + "2817": 3.4719755864, + "2818": 3.5395669874, + "2819": 3.6045150591, + "2820": 3.6694631307, + "2821": 3.7315115526, + "2822": 3.7935599744, + "2823": 3.8524638696, + "2824": 3.9113677648, + "2825": 3.9668946667, + "2826": 4.0224215686, + "2827": 4.0743523377, + "2828": 4.1262831069, + "2829": 4.1744127964, + "2830": 4.2225424859, + "2831": 4.2666811498, + "2832": 4.3108198138, + "2833": 4.3507932569, + "2834": 4.3907667001, + "2835": 4.4264171656, + "2836": 4.4620676312, + "2837": 4.4932544229, + "2838": 4.5244412147, + "2839": 4.5510412527, + "2840": 4.5776412907, + "2841": 4.5995495968, + "2842": 4.6214579028, + "2843": 4.6385880148, + "2844": 4.6557181268, + "2845": 4.6680024401, + "2846": 4.6802867533, + "2847": 4.6876767872, + "2848": 4.6950668211, + "2849": 4.6975334105, + "2850": 4.7, + "2851": 4.6975334105, + "2852": 4.6950668211, + "2853": 4.6876767872, + "2854": 4.6802867533, + "2855": 4.6680024401, + "2856": 4.6557181268, + "2857": 4.6385880148, + "2858": 4.6214579028, + "2859": 4.5995495968, + "2860": 4.5776412907, + "2861": 4.5510412527, + "2862": 4.5244412147, + "2863": 4.4932544229, + "2864": 4.4620676312, + "2865": 4.4264171656, + "2866": 4.3907667001, + "2867": 4.3507932569, + "2868": 4.3108198138, + "2869": 4.2666811498, + "2870": 4.2225424859, + "2871": 4.1744127964, + "2872": 4.1262831069, + "2873": 4.0743523377, + "2874": 4.0224215686, + "2875": 3.9668946667, + "2876": 3.9113677648, + "2877": 3.8524638696, + "2878": 3.7935599744, + "2879": 3.7315115526, + "2880": 3.6694631307, + "2881": 3.6045150591, + "2882": 3.5395669874, + "2883": 3.4719755864, + "2884": 3.4043841853, + "2885": 3.3344162071, + "2886": 3.2644482289, + "2887": 3.1923798053, + "2888": 3.1203113817, + "2889": 3.0464269338, + "2890": 2.9725424859, + "2891": 2.8971336019, + "2892": 2.8217247179, + "2893": 2.7450890022, + "2894": 2.6684532865, + "2895": 2.5908931852, + "2896": 2.5133330839, + "2897": 2.4351546914, + "2898": 2.3569762988, + "2899": 2.2784881494, + "2900": 2.2, + "2901": 2.1215118506, + "2902": 2.0430237012, + "2903": 1.9648453086, + "2904": 1.8866669161, + "2905": 1.8091068148, + "2906": 1.7315467135, + "2907": 1.6549109978, + "2908": 1.5782752821, + "2909": 1.5028663981, + "2910": 1.4274575141, + "2911": 1.3535730662, + "2912": 1.2796886183, + "2913": 1.2076201947, + "2914": 1.1355517711, + "2915": 1.0655837929, + "2916": 0.9956158147, + "2917": 0.9280244136, + "2918": 0.8604330126, + "2919": 0.7954849409, + "2920": 0.7305368693, + "2921": 0.6684884474, + "2922": 0.6064400256, + "2923": 0.5475361304, + "2924": 0.4886322352, + "2925": 0.4331053333, + "2926": 0.3775784314, + "2927": 0.3256476623, + "2928": 0.2737168931, + "2929": 0.2255872036, + "2930": 0.1774575141, + "2931": 0.1333188502, + "2932": 0.0891801862, + "2933": 0.0492067431, + "2934": 0.0092332999, + "2935": -0.0264171656, + "2936": -0.0620676312, + "2937": -0.0932544229, + "2938": -0.1244412147, + "2939": -0.1510412527, + "2940": -0.1776412907, + "2941": -0.1995495968, + "2942": -0.2214579028, + "2943": -0.2385880148, + "2944": -0.2557181268, + "2945": -0.2680024401, + "2946": -0.2802867533, + "2947": -0.2876767872, + "2948": -0.2950668211, + "2949": -0.2975334105, + "2950": -0.3, + "2951": -0.2975334105, + "2952": -0.2950668211, + "2953": -0.2876767872, + "2954": -0.2802867533, + "2955": -0.2680024401, + "2956": -0.2557181268, + "2957": -0.2385880148, + "2958": -0.2214579028, + "2959": -0.1995495968, + "2960": -0.1776412907, + "2961": -0.1510412527, + "2962": -0.1244412147, + "2963": -0.0932544229, + "2964": -0.0620676312, + "2965": -0.0264171656, + "2966": 0.0092332999, + "2967": 0.0492067431, + "2968": 0.0891801862, + "2969": 0.1333188502, + "2970": 0.1774575141, + "2971": 0.2255872036, + "2972": 0.2737168931, + "2973": 0.3256476623, + "2974": 0.3775784314, + "2975": 0.4331053333, + "2976": 0.4886322352, + "2977": 0.5475361304, + "2978": 0.6064400256, + "2979": 0.6684884474, + "2980": 0.7305368693, + "2981": 0.7954849409, + "2982": 0.8604330126, + "2983": 0.9280244136, + "2984": 0.9956158147, + "2985": 1.0655837929, + "2986": 1.1355517711, + "2987": 1.2076201947, + "2988": 1.2796886183, + "2989": 1.3535730662, + "2990": 1.4274575141, + "2991": 1.5028663981, + "2992": 1.5782752821, + "2993": 1.6549109978, + "2994": 1.7315467135, + "2995": 1.8091068148, + "2996": 1.8866669161, + "2997": 1.9648453086, + "2998": 2.0430237012, + "2999": 2.1215118506, + "3000": 2.2, + "3001": 2.2784881494, + "3002": 2.3569762988, + "3003": 2.4351546914, + "3004": 2.5133330839, + "3005": 2.5908931852, + "3006": 2.6684532865, + "3007": 2.7450890022, + "3008": 2.8217247179, + "3009": 2.8971336019, + "3010": 2.9725424859, + "3011": 3.0464269338, + "3012": 3.1203113817, + "3013": 3.1923798053, + "3014": 3.2644482289, + "3015": 3.3344162071, + "3016": 3.4043841853, + "3017": 3.4719755864, + "3018": 3.5395669874, + "3019": 3.6045150591, + "3020": 3.6694631307, + "3021": 3.7315115526, + "3022": 3.7935599744, + "3023": 3.8524638696, + "3024": 3.9113677648, + "3025": 3.9668946667, + "3026": 4.0224215686, + "3027": 4.0743523377, + "3028": 4.1262831069, + "3029": 4.1744127964, + "3030": 4.2225424859, + "3031": 4.2666811498, + "3032": 4.3108198138, + "3033": 4.3507932569, + "3034": 4.3907667001, + "3035": 4.4264171656, + "3036": 4.4620676312, + "3037": 4.4932544229, + "3038": 4.5244412147, + "3039": 4.5510412527, + "3040": 4.5776412907, + "3041": 4.5995495968, + "3042": 4.6214579028, + "3043": 4.6385880148, + "3044": 4.6557181268, + "3045": 4.6680024401, + "3046": 4.6802867533, + "3047": 4.6876767872, + "3048": 4.6950668211, + "3049": 4.6975334105, + "3050": 4.7, + "3051": 4.6975334105, + "3052": 4.6950668211, + "3053": 4.6876767872, + "3054": 4.6802867533, + "3055": 4.6680024401, + "3056": 4.6557181268, + "3057": 4.6385880148, + "3058": 4.6214579028, + "3059": 4.5995495968, + "3060": 4.5776412907, + "3061": 4.5510412527, + "3062": 4.5244412147, + "3063": 4.4932544229, + "3064": 4.4620676312, + "3065": 4.4264171656, + "3066": 4.3907667001, + "3067": 4.3507932569, + "3068": 4.3108198138, + "3069": 4.2666811498, + "3070": 4.2225424859, + "3071": 4.1744127964, + "3072": 4.1262831069, + "3073": 4.0743523377, + "3074": 4.0224215686, + "3075": 3.9668946667, + "3076": 3.9113677648, + "3077": 3.8524638696, + "3078": 3.7935599744, + "3079": 3.7315115526, + "3080": 3.6694631307, + "3081": 3.6045150591, + "3082": 3.5395669874, + "3083": 3.4719755864, + "3084": 3.4043841853, + "3085": 3.3344162071, + "3086": 3.2644482289, + "3087": 3.1923798053, + "3088": 3.1203113817, + "3089": 3.0464269338, + "3090": 2.9725424859, + "3091": 2.8971336019, + "3092": 2.8217247179, + "3093": 2.7450890022, + "3094": 2.6684532865, + "3095": 2.5908931852, + "3096": 2.5133330839, + "3097": 2.4351546914, + "3098": 2.3569762988, + "3099": 2.2784881494, + "3100": 2.2, + "3101": 2.1215118506, + "3102": 2.0430237012, + "3103": 1.9648453086, + "3104": 1.8866669161, + "3105": 1.8091068148, + "3106": 1.7315467135, + "3107": 1.6549109978, + "3108": 1.5782752821, + "3109": 1.5028663981, + "3110": 1.4274575141, + "3111": 1.3535730662, + "3112": 1.2796886183, + "3113": 1.2076201947, + "3114": 1.1355517711, + "3115": 1.0655837929, + "3116": 0.9956158147, + "3117": 0.9280244136, + "3118": 0.8604330126, + "3119": 0.7954849409, + "3120": 0.7305368693, + "3121": 0.6684884474, + "3122": 0.6064400256, + "3123": 0.5475361304, + "3124": 0.4886322352, + "3125": 0.4331053333, + "3126": 0.3775784314, + "3127": 0.3256476623, + "3128": 0.2737168931, + "3129": 0.2255872036, + "3130": 0.1774575141, + "3131": 0.1333188502, + "3132": 0.0891801862, + "3133": 0.0492067431, + "3134": 0.0092332999, + "3135": -0.0264171656, + "3136": -0.0620676312, + "3137": -0.0932544229, + "3138": -0.1244412147, + "3139": -0.1510412527, + "3140": -0.1776412907, + "3141": -0.1995495968, + "3142": -0.2214579028, + "3143": -0.2385880148, + "3144": -0.2557181268, + "3145": -0.2680024401, + "3146": -0.2802867533, + "3147": -0.2876767872, + "3148": -0.2950668211, + "3149": -0.2975334105, + "3150": -0.3, + "3151": -0.2975334105, + "3152": -0.2950668211, + "3153": -0.2876767872, + "3154": -0.2802867533, + "3155": -0.2680024401, + "3156": -0.2557181268, + "3157": -0.2385880148, + "3158": -0.2214579028, + "3159": -0.1995495968, + "3160": -0.1776412907, + "3161": -0.1510412527, + "3162": -0.1244412147, + "3163": -0.0932544229, + "3164": -0.0620676312, + "3165": -0.0264171656, + "3166": 0.0092332999, + "3167": 0.0492067431, + "3168": 0.0891801862, + "3169": 0.1333188502, + "3170": 0.1774575141, + "3171": 0.2255872036, + "3172": 0.2737168931, + "3173": 0.3256476623, + "3174": 0.3775784314, + "3175": 0.4331053333, + "3176": 0.4886322352, + "3177": 0.5475361304, + "3178": 0.6064400256, + "3179": 0.6684884474, + "3180": 0.7305368693, + "3181": 0.7954849409, + "3182": 0.8604330126, + "3183": 0.9280244136, + "3184": 0.9956158147, + "3185": 1.0655837929, + "3186": 1.1355517711, + "3187": 1.2076201947, + "3188": 1.2796886183, + "3189": 1.3535730662, + "3190": 1.4274575141, + "3191": 1.5028663981, + "3192": 1.5782752821, + "3193": 1.6549109978, + "3194": 1.7315467135, + "3195": 1.8091068148, + "3196": 1.8866669161, + "3197": 1.9648453086, + "3198": 2.0430237012, + "3199": 2.1215118506, + "3200": 2.2, + "3201": 2.2784881494, + "3202": 2.3569762988, + "3203": 2.4351546914, + "3204": 2.5133330839, + "3205": 2.5908931852, + "3206": 2.6684532865, + "3207": 2.7450890022, + "3208": 2.8217247179, + "3209": 2.8971336019, + "3210": 2.9725424859, + "3211": 3.0464269338, + "3212": 3.1203113817, + "3213": 3.1923798053, + "3214": 3.2644482289, + "3215": 3.3344162071, + "3216": 3.4043841853, + "3217": 3.4719755864, + "3218": 3.5395669874, + "3219": 3.6045150591, + "3220": 3.6694631307, + "3221": 3.7315115526, + "3222": 3.7935599744, + "3223": 3.8524638696, + "3224": 3.9113677648, + "3225": 3.9668946667, + "3226": 4.0224215686, + "3227": 4.0743523377, + "3228": 4.1262831069, + "3229": 4.1744127964, + "3230": 4.2225424859, + "3231": 4.2666811498, + "3232": 4.3108198138, + "3233": 4.3507932569, + "3234": 4.3907667001, + "3235": 4.4264171656, + "3236": 4.4620676312, + "3237": 4.4932544229, + "3238": 4.5244412147, + "3239": 4.5510412527, + "3240": 4.5776412907, + "3241": 4.5995495968, + "3242": 4.6214579028, + "3243": 4.6385880148, + "3244": 4.6557181268, + "3245": 4.6680024401, + "3246": 4.6802867533, + "3247": 4.6876767872, + "3248": 4.6950668211, + "3249": 4.6975334105, + "3250": 4.7, + "3251": 4.6975334105, + "3252": 4.6950668211, + "3253": 4.6876767872, + "3254": 4.6802867533, + "3255": 4.6680024401, + "3256": 4.6557181268, + "3257": 4.6385880148, + "3258": 4.6214579028, + "3259": 4.5995495968, + "3260": 4.5776412907, + "3261": 4.5510412527, + "3262": 4.5244412147, + "3263": 4.4932544229, + "3264": 4.4620676312, + "3265": 4.4264171656, + "3266": 4.3907667001, + "3267": 4.3507932569, + "3268": 4.3108198138, + "3269": 4.2666811498, + "3270": 4.2225424859, + "3271": 4.1744127964, + "3272": 4.1262831069, + "3273": 4.0743523377, + "3274": 4.0224215686, + "3275": 3.9668946667, + "3276": 3.9113677648, + "3277": 3.8524638696, + "3278": 3.7935599744, + "3279": 3.7315115526, + "3280": 3.6694631307, + "3281": 3.6045150591, + "3282": 3.5395669874, + "3283": 3.4719755864, + "3284": 3.4043841853, + "3285": 3.3344162071, + "3286": 3.2644482289, + "3287": 3.1923798053, + "3288": 3.1203113817, + "3289": 3.0464269338, + "3290": 2.9725424859, + "3291": 2.8971336019, + "3292": 2.8217247179, + "3293": 2.7450890022, + "3294": 2.6684532865, + "3295": 2.5908931852, + "3296": 2.5133330839, + "3297": 2.4351546914, + "3298": 2.3569762988, + "3299": 2.2784881494, + "3300": 2.2, + "3301": 2.1215118506, + "3302": 2.0430237012, + "3303": 1.9648453086, + "3304": 1.8866669161, + "3305": 1.8091068148, + "3306": 1.7315467135, + "3307": 1.6549109978, + "3308": 1.5782752821, + "3309": 1.5028663981, + "3310": 1.4274575141, + "3311": 1.3535730662, + "3312": 1.2796886183, + "3313": 1.2076201947, + "3314": 1.1355517711, + "3315": 1.0655837929, + "3316": 0.9956158147, + "3317": 0.9280244136, + "3318": 0.8604330126, + "3319": 0.7954849409, + "3320": 0.7305368693, + "3321": 0.6684884474, + "3322": 0.6064400256, + "3323": 0.5475361304, + "3324": 0.4886322352, + "3325": 0.4331053333, + "3326": 0.3775784314, + "3327": 0.3256476623, + "3328": 0.2737168931, + "3329": 0.2255872036, + "3330": 0.1774575141, + "3331": 0.1333188502, + "3332": 0.0891801862, + "3333": 0.0492067431, + "3334": 0.0092332999, + "3335": -0.0264171656, + "3336": -0.0620676312, + "3337": -0.0932544229, + "3338": -0.1244412147, + "3339": -0.1510412527, + "3340": -0.1776412907, + "3341": -0.1995495968, + "3342": -0.2214579028, + "3343": -0.2385880148, + "3344": -0.2557181268, + "3345": -0.2680024401, + "3346": -0.2802867533, + "3347": -0.2876767872, + "3348": -0.2950668211, + "3349": -0.2975334105, + "3350": -0.3, + "3351": -0.2975334105, + "3352": -0.2950668211, + "3353": -0.2876767872, + "3354": -0.2802867533, + "3355": -0.2680024401, + "3356": -0.2557181268, + "3357": -0.2385880148, + "3358": -0.2214579028, + "3359": -0.1995495968, + "3360": -0.1776412907, + "3361": -0.1510412527, + "3362": -0.1244412147, + "3363": -0.0932544229, + "3364": -0.0620676312, + "3365": -0.0264171656, + "3366": 0.0092332999, + "3367": 0.0492067431, + "3368": 0.0891801862, + "3369": 0.1333188502, + "3370": 0.1774575141, + "3371": 0.2255872036, + "3372": 0.2737168931, + "3373": 0.3256476623, + "3374": 0.3775784314, + "3375": 0.4331053333, + "3376": 0.4886322352, + "3377": 0.5475361304, + "3378": 0.6064400256, + "3379": 0.6684884474, + "3380": 0.7305368693, + "3381": 0.7954849409, + "3382": 0.8604330126, + "3383": 0.9280244136, + "3384": 0.9956158147, + "3385": 1.0655837929, + "3386": 1.1355517711, + "3387": 1.2076201947, + "3388": 1.2796886183, + "3389": 1.3535730662, + "3390": 1.4274575141, + "3391": 1.5028663981, + "3392": 1.5782752821, + "3393": 1.6549109978, + "3394": 1.7315467135, + "3395": 1.8091068148, + "3396": 1.8866669161, + "3397": 1.9648453086, + "3398": 2.0430237012, + "3399": 2.1215118506, + "3400": 2.2, + "3401": 2.2784881494, + "3402": 2.3569762988, + "3403": 2.4351546914, + "3404": 2.5133330839, + "3405": 2.5908931852, + "3406": 2.6684532865, + "3407": 2.7450890022, + "3408": 2.8217247179, + "3409": 2.8971336019, + "3410": 2.9725424859, + "3411": 3.0464269338, + "3412": 3.1203113817, + "3413": 3.1923798053, + "3414": 3.2644482289, + "3415": 3.3344162071, + "3416": 3.4043841853, + "3417": 3.4719755864, + "3418": 3.5395669874, + "3419": 3.6045150591, + "3420": 3.6694631307, + "3421": 3.7315115526, + "3422": 3.7935599744, + "3423": 3.8524638696, + "3424": 3.9113677648, + "3425": 3.9668946667, + "3426": 4.0224215686, + "3427": 4.0743523377, + "3428": 4.1262831069, + "3429": 4.1744127964, + "3430": 4.2225424859, + "3431": 4.2666811498, + "3432": 4.3108198138, + "3433": 4.3507932569, + "3434": 4.3907667001, + "3435": 4.4264171656, + "3436": 4.4620676312, + "3437": 4.4932544229, + "3438": 4.5244412147, + "3439": 4.5510412527, + "3440": 4.5776412907, + "3441": 4.5995495968, + "3442": 4.6214579028, + "3443": 4.6385880148, + "3444": 4.6557181268, + "3445": 4.6680024401, + "3446": 4.6802867533, + "3447": 4.6876767872, + "3448": 4.6950668211, + "3449": 4.6975334105, + "3450": 4.7, + "3451": 4.6975334105, + "3452": 4.6950668211, + "3453": 4.6876767872, + "3454": 4.6802867533, + "3455": 4.6680024401, + "3456": 4.6557181268, + "3457": 4.6385880148, + "3458": 4.6214579028, + "3459": 4.5995495968, + "3460": 4.5776412907, + "3461": 4.5510412527, + "3462": 4.5244412147, + "3463": 4.4932544229, + "3464": 4.4620676312, + "3465": 4.4264171656, + "3466": 4.3907667001, + "3467": 4.3507932569, + "3468": 4.3108198138, + "3469": 4.2666811498, + "3470": 4.2225424859, + "3471": 4.1744127964, + "3472": 4.1262831069, + "3473": 4.0743523377, + "3474": 4.0224215686, + "3475": 3.9668946667, + "3476": 3.9113677648, + "3477": 3.8524638696, + "3478": 3.7935599744, + "3479": 3.7315115526, + "3480": 3.6694631307, + "3481": 3.6045150591, + "3482": 3.5395669874, + "3483": 3.4719755864, + "3484": 3.4043841853, + "3485": 3.3344162071, + "3486": 3.2644482289, + "3487": 3.1923798053, + "3488": 3.1203113817, + "3489": 3.0464269338, + "3490": 2.9725424859, + "3491": 2.8971336019, + "3492": 2.8217247179, + "3493": 2.7450890022, + "3494": 2.6684532865, + "3495": 2.5908931852, + "3496": 2.5133330839, + "3497": 2.4351546914, + "3498": 2.3569762988, + "3499": 2.2784881494, + "3500": 2.2, + "3501": 2.1215118506, + "3502": 2.0430237012, + "3503": 1.9648453086, + "3504": 1.8866669161, + "3505": 1.8091068148, + "3506": 1.7315467135, + "3507": 1.6549109978, + "3508": 1.5782752821, + "3509": 1.5028663981, + "3510": 1.4274575141, + "3511": 1.3535730662, + "3512": 1.2796886183, + "3513": 1.2076201947, + "3514": 1.1355517711, + "3515": 1.0655837929, + "3516": 0.9956158147, + "3517": 0.9280244136, + "3518": 0.8604330126, + "3519": 0.7954849409, + "3520": 0.7305368693, + "3521": 0.6684884474, + "3522": 0.6064400256, + "3523": 0.5475361304, + "3524": 0.4886322352, + "3525": 0.4331053333, + "3526": 0.3775784314, + "3527": 0.3256476623, + "3528": 0.2737168931, + "3529": 0.2255872036, + "3530": 0.1774575141, + "3531": 0.1333188502, + "3532": 0.0891801862, + "3533": 0.0492067431, + "3534": 0.0092332999, + "3535": -0.0264171656, + "3536": -0.0620676312, + "3537": -0.0932544229, + "3538": -0.1244412147, + "3539": -0.1510412527, + "3540": -0.1776412907, + "3541": -0.1995495968, + "3542": -0.2214579028, + "3543": -0.2385880148, + "3544": -0.2557181268, + "3545": -0.2680024401, + "3546": -0.2802867533, + "3547": -0.2876767872, + "3548": -0.2950668211, + "3549": -0.2975334105, + "3550": -0.3, + "3551": -0.2975334105, + "3552": -0.2950668211, + "3553": -0.2876767872, + "3554": -0.2802867533, + "3555": -0.2680024401, + "3556": -0.2557181268, + "3557": -0.2385880148, + "3558": -0.2214579028, + "3559": -0.1995495968, + "3560": -0.1776412907, + "3561": -0.1510412527, + "3562": -0.1244412147, + "3563": -0.0932544229, + "3564": -0.0620676312, + "3565": -0.0264171656, + "3566": 0.0092332999, + "3567": 0.0492067431, + "3568": 0.0891801862, + "3569": 0.1333188502, + "3570": 0.1774575141, + "3571": 0.2255872036, + "3572": 0.2737168931, + "3573": 0.3256476623, + "3574": 0.3775784314, + "3575": 0.4331053333, + "3576": 0.4886322352, + "3577": 0.5475361304, + "3578": 0.6064400256, + "3579": 0.6684884474, + "3580": 0.7305368693, + "3581": 0.7954849409, + "3582": 0.8604330126, + "3583": 0.9280244136, + "3584": 0.9956158147, + "3585": 1.0655837929, + "3586": 1.1355517711, + "3587": 1.2076201947, + "3588": 1.2796886183, + "3589": 1.3535730662, + "3590": 1.4274575141, + "3591": 1.5028663981, + "3592": 1.5782752821, + "3593": 1.6549109978, + "3594": 1.7315467135, + "3595": 1.8091068148, + "3596": 1.8866669161, + "3597": 1.9648453086, + "3598": 2.0430237012, + "3599": 2.1215118506, + "3600": 2.2, + "3601": 2.2784881494, + "3602": 2.3569762988, + "3603": 2.4351546914, + "3604": 2.5133330839, + "3605": 2.5908931852, + "3606": 2.6684532865, + "3607": 2.7450890022, + "3608": 2.8217247179, + "3609": 2.8971336019, + "3610": 2.9725424859, + "3611": 3.0464269338, + "3612": 3.1203113817, + "3613": 3.1923798053, + "3614": 3.2644482289, + "3615": 3.3344162071, + "3616": 3.4043841853, + "3617": 3.4719755864, + "3618": 3.5395669874, + "3619": 3.6045150591, + "3620": 3.6694631307, + "3621": 3.7315115526, + "3622": 3.7935599744, + "3623": 3.8524638696, + "3624": 3.9113677648, + "3625": 3.9668946667, + "3626": 4.0224215686, + "3627": 4.0743523377, + "3628": 4.1262831069, + "3629": 4.1744127964, + "3630": 4.2225424859, + "3631": 4.2666811498, + "3632": 4.3108198138, + "3633": 4.3507932569, + "3634": 4.3907667001, + "3635": 4.4264171656, + "3636": 4.4620676312, + "3637": 4.4932544229, + "3638": 4.5244412147, + "3639": 4.5510412527, + "3640": 4.5776412907, + "3641": 4.5995495968, + "3642": 4.6214579028, + "3643": 4.6385880148, + "3644": 4.6557181268, + "3645": 4.6680024401, + "3646": 4.6802867533, + "3647": 4.6876767872, + "3648": 4.6950668211, + "3649": 4.6975334105, + "3650": 4.7, + "3651": 4.6975334105, + "3652": 4.6950668211, + "3653": 4.6876767872, + "3654": 4.6802867533, + "3655": 4.6680024401, + "3656": 4.6557181268, + "3657": 4.6385880148, + "3658": 4.6214579028, + "3659": 4.5995495968, + "3660": 4.5776412907, + "3661": 4.5510412527, + "3662": 4.5244412147, + "3663": 4.4932544229, + "3664": 4.4620676312, + "3665": 4.4264171656, + "3666": 4.3907667001, + "3667": 4.3507932569, + "3668": 4.3108198138, + "3669": 4.2666811498, + "3670": 4.2225424859, + "3671": 4.1744127964, + "3672": 4.1262831069, + "3673": 4.0743523377, + "3674": 4.0224215686, + "3675": 3.9668946667, + "3676": 3.9113677648, + "3677": 3.8524638696, + "3678": 3.7935599744, + "3679": 3.7315115526, + "3680": 3.6694631307, + "3681": 3.6045150591, + "3682": 3.5395669874, + "3683": 3.4719755864, + "3684": 3.4043841853, + "3685": 3.3344162071, + "3686": 3.2644482289, + "3687": 3.1923798053, + "3688": 3.1203113817, + "3689": 3.0464269338, + "3690": 2.9725424859, + "3691": 2.8971336019, + "3692": 2.8217247179, + "3693": 2.7450890022, + "3694": 2.6684532865, + "3695": 2.5908931852, + "3696": 2.5133330839, + "3697": 2.4351546914, + "3698": 2.3569762988, + "3699": 2.2784881494, + "3700": 2.2, + "3701": 2.1215118506, + "3702": 2.0430237012, + "3703": 1.9648453086, + "3704": 1.8866669161, + "3705": 1.8091068148, + "3706": 1.7315467135, + "3707": 1.6549109978, + "3708": 1.5782752821, + "3709": 1.5028663981, + "3710": 1.4274575141, + "3711": 1.3535730662, + "3712": 1.2796886183, + "3713": 1.2076201947, + "3714": 1.1355517711, + "3715": 1.0655837929, + "3716": 0.9956158147, + "3717": 0.9280244136, + "3718": 0.8604330126, + "3719": 0.7954849409, + "3720": 0.7305368693, + "3721": 0.6684884474, + "3722": 0.6064400256, + "3723": 0.5475361304, + "3724": 0.4886322352, + "3725": 0.4331053333, + "3726": 0.3775784314, + "3727": 0.3256476623, + "3728": 0.2737168931, + "3729": 0.2255872036, + "3730": 0.1774575141, + "3731": 0.1333188502, + "3732": 0.0891801862, + "3733": 0.0492067431, + "3734": 0.0092332999, + "3735": -0.0264171656, + "3736": -0.0620676312, + "3737": -0.0932544229, + "3738": -0.1244412147, + "3739": -0.1510412527, + "3740": -0.1776412907, + "3741": -0.1995495968, + "3742": -0.2214579028, + "3743": -0.2385880148, + "3744": -0.2557181268, + "3745": -0.2680024401, + "3746": -0.2802867533, + "3747": -0.2876767872, + "3748": -0.2950668211, + "3749": -0.2975334105, + "3750": -0.3, + "3751": -0.2975334105, + "3752": -0.2950668211, + "3753": -0.2876767872, + "3754": -0.2802867533, + "3755": -0.2680024401, + "3756": -0.2557181268, + "3757": -0.2385880148, + "3758": -0.2214579028, + "3759": -0.1995495968, + "3760": -0.1776412907, + "3761": -0.1510412527, + "3762": -0.1244412147, + "3763": -0.0932544229, + "3764": -0.0620676312, + "3765": -0.0264171656, + "3766": 0.0092332999, + "3767": 0.0492067431, + "3768": 0.0891801862, + "3769": 0.1333188502, + "3770": 0.1774575141, + "3771": 0.2255872036, + "3772": 0.2737168931, + "3773": 0.3256476623, + "3774": 0.3775784314, + "3775": 0.4331053333, + "3776": 0.4886322352, + "3777": 0.5475361304, + "3778": 0.6064400256, + "3779": 0.6684884474, + "3780": 0.7305368693, + "3781": 0.7954849409, + "3782": 0.8604330126, + "3783": 0.9280244136, + "3784": 0.9956158147, + "3785": 1.0655837929, + "3786": 1.1355517711, + "3787": 1.2076201947, + "3788": 1.2796886183, + "3789": 1.3535730662, + "3790": 1.4274575141, + "3791": 1.5028663981, + "3792": 1.5782752821, + "3793": 1.6549109978, + "3794": 1.7315467135, + "3795": 1.8091068148, + "3796": 1.8866669161, + "3797": 1.9648453086, + "3798": 2.0430237012, + "3799": 2.1215118506, + "3800": 2.2, + "3801": 2.2784881494, + "3802": 2.3569762988, + "3803": 2.4351546914, + "3804": 2.5133330839, + "3805": 2.5908931852, + "3806": 2.6684532865, + "3807": 2.7450890022, + "3808": 2.8217247179, + "3809": 2.8971336019, + "3810": 2.9725424859, + "3811": 3.0464269338, + "3812": 3.1203113817, + "3813": 3.1923798053, + "3814": 3.2644482289, + "3815": 3.3344162071, + "3816": 3.4043841853, + "3817": 3.4719755864, + "3818": 3.5395669874, + "3819": 3.6045150591, + "3820": 3.6694631307, + "3821": 3.7315115526, + "3822": 3.7935599744, + "3823": 3.8524638696, + "3824": 3.9113677648, + "3825": 3.9668946667, + "3826": 4.0224215686, + "3827": 4.0743523377, + "3828": 4.1262831069, + "3829": 4.1744127964, + "3830": 4.2225424859, + "3831": 4.2666811498, + "3832": 4.3108198138, + "3833": 4.3507932569, + "3834": 4.3907667001, + "3835": 4.4264171656, + "3836": 4.4620676312, + "3837": 4.4932544229, + "3838": 4.5244412147, + "3839": 4.5510412527, + "3840": 4.5776412907, + "3841": 4.5995495968, + "3842": 4.6214579028, + "3843": 4.6385880148, + "3844": 4.6557181268, + "3845": 4.6680024401, + "3846": 4.6802867533, + "3847": 4.6876767872, + "3848": 4.6950668211, + "3849": 4.6975334105, + "3850": 4.7, + "3851": 4.6975334105, + "3852": 4.6950668211, + "3853": 4.6876767872, + "3854": 4.6802867533, + "3855": 4.6680024401, + "3856": 4.6557181268, + "3857": 4.6385880148, + "3858": 4.6214579028, + "3859": 4.5995495968, + "3860": 4.5776412907, + "3861": 4.5510412527, + "3862": 4.5244412147, + "3863": 4.4932544229, + "3864": 4.4620676312, + "3865": 4.4264171656, + "3866": 4.3907667001, + "3867": 4.3507932569, + "3868": 4.3108198138, + "3869": 4.2666811498, + "3870": 4.2225424859, + "3871": 4.1744127964, + "3872": 4.1262831069, + "3873": 4.0743523377, + "3874": 4.0224215686, + "3875": 3.9668946667, + "3876": 3.9113677648, + "3877": 3.8524638696, + "3878": 3.7935599744, + "3879": 3.7315115526, + "3880": 3.6694631307, + "3881": 3.6045150591, + "3882": 3.5395669874, + "3883": 3.4719755864, + "3884": 3.4043841853, + "3885": 3.3344162071, + "3886": 3.2644482289, + "3887": 3.1923798053, + "3888": 3.1203113817, + "3889": 3.0464269338, + "3890": 2.9725424859, + "3891": 2.8971336019, + "3892": 2.8217247179, + "3893": 2.7450890022, + "3894": 2.6684532865, + "3895": 2.5908931852, + "3896": 2.5133330839, + "3897": 2.4351546914, + "3898": 2.3569762988, + "3899": 2.2784881494, + "3900": 2.2, + "3901": 2.1215118506, + "3902": 2.0430237012, + "3903": 1.9648453086, + "3904": 1.8866669161, + "3905": 1.8091068148, + "3906": 1.7315467135, + "3907": 1.6549109978, + "3908": 1.5782752821, + "3909": 1.5028663981, + "3910": 1.4274575141, + "3911": 1.3535730662, + "3912": 1.2796886183, + "3913": 1.2076201947, + "3914": 1.1355517711, + "3915": 1.0655837929, + "3916": 0.9956158147, + "3917": 0.9280244136, + "3918": 0.8604330126, + "3919": 0.7954849409, + "3920": 0.7305368693, + "3921": 0.6684884474, + "3922": 0.6064400256, + "3923": 0.5475361304, + "3924": 0.4886322352, + "3925": 0.4331053333, + "3926": 0.3775784314, + "3927": 0.3256476623, + "3928": 0.2737168931, + "3929": 0.2255872036, + "3930": 0.1774575141, + "3931": 0.1333188502, + "3932": 0.0891801862, + "3933": 0.0492067431, + "3934": 0.0092332999, + "3935": -0.0264171656, + "3936": -0.0620676312, + "3937": -0.0932544229, + "3938": -0.1244412147, + "3939": -0.1510412527, + "3940": -0.1776412907, + "3941": -0.1995495968, + "3942": -0.2214579028, + "3943": -0.2385880148, + "3944": -0.2557181268, + "3945": -0.2680024401, + "3946": -0.2802867533, + "3947": -0.2876767872, + "3948": -0.2950668211, + "3949": -0.2975334105, + "3950": -0.3, + "3951": -0.2975334105, + "3952": -0.2950668211, + "3953": -0.2876767872, + "3954": -0.2802867533, + "3955": -0.2680024401, + "3956": -0.2557181268, + "3957": -0.2385880148, + "3958": -0.2214579028, + "3959": -0.1995495968, + "3960": -0.1776412907, + "3961": -0.1510412527, + "3962": -0.1244412147, + "3963": -0.0932544229, + "3964": -0.0620676312, + "3965": -0.0264171656, + "3966": 0.0092332999, + "3967": 0.0492067431, + "3968": 0.0891801862, + "3969": 0.1333188502, + "3970": 0.1774575141, + "3971": 0.2255872036, + "3972": 0.2737168931, + "3973": 0.3256476623, + "3974": 0.3775784314, + "3975": 0.4331053333, + "3976": 0.4886322352, + "3977": 0.5475361304, + "3978": 0.6064400256, + "3979": 0.6684884474, + "3980": 0.7305368693, + "3981": 0.7954849409, + "3982": 0.8604330126, + "3983": 0.9280244136, + "3984": 0.9956158147, + "3985": 1.0655837929, + "3986": 1.1355517711, + "3987": 1.2076201947, + "3988": 1.2796886183, + "3989": 1.3535730662, + "3990": 1.4274575141, + "3991": 1.5028663981, + "3992": 1.5782752821, + "3993": 1.6549109978, + "3994": 1.7315467135, + "3995": 1.8091068148, + "3996": 1.8866669161, + "3997": 1.9648453086, + "3998": 2.0430237012, + "3999": 2.1215118506, + "4000": 2.2, + "4001": 2.2784881494, + "4002": 2.3569762988, + "4003": 2.4351546914, + "4004": 2.5133330839, + "4005": 2.5908931852, + "4006": 2.6684532865, + "4007": 2.7450890022, + "4008": 2.8217247179, + "4009": 2.8971336019, + "4010": 2.9725424859, + "4011": 3.0464269338, + "4012": 3.1203113817, + "4013": 3.1923798053, + "4014": 3.2644482289, + "4015": 3.3344162071, + "4016": 3.4043841853, + "4017": 3.4719755864, + "4018": 3.5395669874, + "4019": 3.6045150591, + "4020": 3.6694631307, + "4021": 3.7315115526, + "4022": 3.7935599744, + "4023": 3.8524638696, + "4024": 3.9113677648, + "4025": 3.9668946667, + "4026": 4.0224215686, + "4027": 4.0743523377, + "4028": 4.1262831069, + "4029": 4.1744127964, + "4030": 4.2225424859, + "4031": 4.2666811498, + "4032": 4.3108198138, + "4033": 4.3507932569, + "4034": 4.3907667001, + "4035": 4.4264171656, + "4036": 4.4620676312, + "4037": 4.4932544229, + "4038": 4.5244412147, + "4039": 4.5510412527, + "4040": 4.5776412907, + "4041": 4.5995495968, + "4042": 4.6214579028, + "4043": 4.6385880148, + "4044": 4.6557181268, + "4045": 4.6680024401, + "4046": 4.6802867533, + "4047": 4.6876767872, + "4048": 4.6950668211, + "4049": 4.6975334105, + "4050": 4.7, + "4051": 4.6975334105, + "4052": 4.6950668211, + "4053": 4.6876767872, + "4054": 4.6802867533, + "4055": 4.6680024401, + "4056": 4.6557181268, + "4057": 4.6385880148, + "4058": 4.6214579028, + "4059": 4.5995495968, + "4060": 4.5776412907, + "4061": 4.5510412527, + "4062": 4.5244412147, + "4063": 4.4932544229, + "4064": 4.4620676312, + "4065": 4.4264171656, + "4066": 4.3907667001, + "4067": 4.3507932569, + "4068": 4.3108198138, + "4069": 4.2666811498, + "4070": 4.2225424859, + "4071": 4.1744127964, + "4072": 4.1262831069, + "4073": 4.0743523377, + "4074": 4.0224215686, + "4075": 3.9668946667, + "4076": 3.9113677648, + "4077": 3.8524638696, + "4078": 3.7935599744, + "4079": 3.7315115526, + "4080": 3.6694631307, + "4081": 3.6045150591, + "4082": 3.5395669874, + "4083": 3.4719755864, + "4084": 3.4043841853, + "4085": 3.3344162071, + "4086": 3.2644482289, + "4087": 3.1923798053, + "4088": 3.1203113817, + "4089": 3.0464269338, + "4090": 2.9725424859, + "4091": 2.8971336019, + "4092": 2.8217247179, + "4093": 2.7450890022, + "4094": 2.6684532865, + "4095": 2.5908931852, + "4096": 2.5133330839, + "4097": 2.4351546914, + "4098": 2.3569762988, + "4099": 2.2784881494, + "4100": 2.2, + "4101": 2.1215118506, + "4102": 2.0430237012, + "4103": 1.9648453086, + "4104": 1.8866669161, + "4105": 1.8091068148, + "4106": 1.7315467135, + "4107": 1.6549109978, + "4108": 1.5782752821, + "4109": 1.5028663981, + "4110": 1.4274575141, + "4111": 1.3535730662, + "4112": 1.2796886183, + "4113": 1.2076201947, + "4114": 1.1355517711, + "4115": 1.0655837929, + "4116": 0.9956158147, + "4117": 0.9280244136, + "4118": 0.8604330126, + "4119": 0.7954849409, + "4120": 0.7305368693, + "4121": 0.6684884474, + "4122": 0.6064400256, + "4123": 0.5475361304, + "4124": 0.4886322352, + "4125": 0.4331053333, + "4126": 0.3775784314, + "4127": 0.3256476623, + "4128": 0.2737168931, + "4129": 0.2255872036, + "4130": 0.1774575141, + "4131": 0.1333188502, + "4132": 0.0891801862, + "4133": 0.0492067431, + "4134": 0.0092332999, + "4135": -0.0264171656, + "4136": -0.0620676312, + "4137": -0.0932544229, + "4138": -0.1244412147, + "4139": -0.1510412527, + "4140": -0.1776412907, + "4141": -0.1995495968, + "4142": -0.2214579028, + "4143": -0.2385880148, + "4144": -0.2557181268, + "4145": -0.2680024401, + "4146": -0.2802867533, + "4147": -0.2876767872, + "4148": -0.2950668211, + "4149": -0.2975334105, + "4150": -0.3, + "4151": -0.2975334105, + "4152": -0.2950668211, + "4153": -0.2876767872, + "4154": -0.2802867533, + "4155": -0.2680024401, + "4156": -0.2557181268, + "4157": -0.2385880148, + "4158": -0.2214579028, + "4159": -0.1995495968, + "4160": -0.1776412907, + "4161": -0.1510412527, + "4162": -0.1244412147, + "4163": -0.0932544229, + "4164": -0.0620676312, + "4165": -0.0264171656, + "4166": 0.0092332999, + "4167": 0.0492067431, + "4168": 0.0891801862, + "4169": 0.1333188502, + "4170": 0.1774575141, + "4171": 0.2255872036, + "4172": 0.2737168931, + "4173": 0.3256476623, + "4174": 0.3775784314, + "4175": 0.4331053333, + "4176": 0.4886322352, + "4177": 0.5475361304, + "4178": 0.6064400256, + "4179": 0.6684884474, + "4180": 0.7305368693, + "4181": 0.7954849409, + "4182": 0.8604330126, + "4183": 0.9280244136, + "4184": 0.9956158147, + "4185": 1.0655837929, + "4186": 1.1355517711, + "4187": 1.2076201947, + "4188": 1.2796886183, + "4189": 1.3535730662, + "4190": 1.4274575141, + "4191": 1.5028663981, + "4192": 1.5782752821, + "4193": 1.6549109978, + "4194": 1.7315467135, + "4195": 1.8091068148, + "4196": 1.8866669161, + "4197": 1.9648453086, + "4198": 2.0430237012, + "4199": 2.1215118506, + "4200": 2.2, + "4201": 2.2784881494, + "4202": 2.3569762988, + "4203": 2.4351546914, + "4204": 2.5133330839, + "4205": 2.5908931852, + "4206": 2.6684532865, + "4207": 2.7450890022, + "4208": 2.8217247179, + "4209": 2.8971336019, + "4210": 2.9725424859, + "4211": 3.0464269338, + "4212": 3.1203113817, + "4213": 3.1923798053, + "4214": 3.2644482289, + "4215": 3.3344162071, + "4216": 3.4043841853, + "4217": 3.4719755864, + "4218": 3.5395669874, + "4219": 3.6045150591, + "4220": 3.6694631307, + "4221": 3.7315115526, + "4222": 3.7935599744, + "4223": 3.8524638696, + "4224": 3.9113677648, + "4225": 3.9668946667, + "4226": 4.0224215686, + "4227": 4.0743523377, + "4228": 4.1262831069, + "4229": 4.1744127964, + "4230": 4.2225424859, + "4231": 4.2666811498, + "4232": 4.3108198138, + "4233": 4.3507932569, + "4234": 4.3907667001, + "4235": 4.4264171656, + "4236": 4.4620676312, + "4237": 4.4932544229, + "4238": 4.5244412147, + "4239": 4.5510412527, + "4240": 4.5776412907, + "4241": 4.5995495968, + "4242": 4.6214579028, + "4243": 4.6385880148, + "4244": 4.6557181268, + "4245": 4.6680024401, + "4246": 4.6802867533, + "4247": 4.6876767872, + "4248": 4.6950668211, + "4249": 4.6975334105, + "4250": 4.7, + "4251": 4.6975334105, + "4252": 4.6950668211, + "4253": 4.6876767872, + "4254": 4.6802867533, + "4255": 4.6680024401, + "4256": 4.6557181268, + "4257": 4.6385880148, + "4258": 4.6214579028, + "4259": 4.5995495968, + "4260": 4.5776412907, + "4261": 4.5510412527, + "4262": 4.5244412147, + "4263": 4.4932544229, + "4264": 4.4620676312, + "4265": 4.4264171656, + "4266": 4.3907667001, + "4267": 4.3507932569, + "4268": 4.3108198138, + "4269": 4.2666811498, + "4270": 4.2225424859, + "4271": 4.1744127964, + "4272": 4.1262831069, + "4273": 4.0743523377, + "4274": 4.0224215686, + "4275": 3.9668946667, + "4276": 3.9113677648, + "4277": 3.8524638696, + "4278": 3.7935599744, + "4279": 3.7315115526, + "4280": 3.6694631307, + "4281": 3.6045150591, + "4282": 3.5395669874, + "4283": 3.4719755864, + "4284": 3.4043841853, + "4285": 3.3344162071, + "4286": 3.2644482289, + "4287": 3.1923798053, + "4288": 3.1203113817, + "4289": 3.0464269338, + "4290": 2.9725424859, + "4291": 2.8971336019, + "4292": 2.8217247179, + "4293": 2.7450890022, + "4294": 2.6684532865, + "4295": 2.5908931852, + "4296": 2.5133330839, + "4297": 2.4351546914, + "4298": 2.3569762988, + "4299": 2.2784881494, + "4300": 2.2, + "4301": 2.1215118506, + "4302": 2.0430237012, + "4303": 1.9648453086, + "4304": 1.8866669161, + "4305": 1.8091068148, + "4306": 1.7315467135, + "4307": 1.6549109978, + "4308": 1.5782752821, + "4309": 1.5028663981, + "4310": 1.4274575141, + "4311": 1.3535730662, + "4312": 1.2796886183, + "4313": 1.2076201947, + "4314": 1.1355517711, + "4315": 1.0655837929, + "4316": 0.9956158147, + "4317": 0.9280244136, + "4318": 0.8604330126, + "4319": 0.7954849409, + "4320": 0.7305368693, + "4321": 0.6684884474, + "4322": 0.6064400256, + "4323": 0.5475361304, + "4324": 0.4886322352, + "4325": 0.4331053333, + "4326": 0.3775784314, + "4327": 0.3256476623, + "4328": 0.2737168931, + "4329": 0.2255872036, + "4330": 0.1774575141, + "4331": 0.1333188502, + "4332": 0.0891801862, + "4333": 0.0492067431, + "4334": 0.0092332999, + "4335": -0.0264171656, + "4336": -0.0620676312, + "4337": -0.0932544229, + "4338": -0.1244412147, + "4339": -0.1510412527, + "4340": -0.1776412907, + "4341": -0.1995495968, + "4342": -0.2214579028, + "4343": -0.2385880148, + "4344": -0.2557181268, + "4345": -0.2680024401, + "4346": -0.2802867533, + "4347": -0.2876767872, + "4348": -0.2950668211, + "4349": -0.2975334105, + "4350": -0.3, + "4351": -0.2975334105, + "4352": -0.2950668211, + "4353": -0.2876767872, + "4354": -0.2802867533, + "4355": -0.2680024401, + "4356": -0.2557181268, + "4357": -0.2385880148, + "4358": -0.2214579028, + "4359": -0.1995495968, + "4360": -0.1776412907, + "4361": -0.1510412527, + "4362": -0.1244412147, + "4363": -0.0932544229, + "4364": -0.0620676312, + "4365": -0.0264171656, + "4366": 0.0092332999, + "4367": 0.0492067431, + "4368": 0.0891801862, + "4369": 0.1333188502, + "4370": 0.1774575141, + "4371": 0.2255872036, + "4372": 0.2737168931, + "4373": 0.3256476623, + "4374": 0.3775784314, + "4375": 0.4331053333, + "4376": 0.4886322352, + "4377": 0.5475361304, + "4378": 0.6064400256, + "4379": 0.6684884474, + "4380": 0.7305368693, + "4381": 0.7954849409, + "4382": 0.8604330126, + "4383": 0.9280244136, + "4384": 0.9956158147, + "4385": 1.0655837929, + "4386": 1.1355517711, + "4387": 1.2076201947, + "4388": 1.2796886183, + "4389": 1.3535730662, + "4390": 1.4274575141, + "4391": 1.5028663981, + "4392": 1.5782752821, + "4393": 1.6549109978, + "4394": 1.7315467135, + "4395": 1.8091068148, + "4396": 1.8866669161, + "4397": 1.9648453086, + "4398": 2.0430237012, + "4399": 2.1215118506, + "4400": 2.2, + "4401": 2.2784881494, + "4402": 2.3569762988, + "4403": 2.4351546914, + "4404": 2.5133330839, + "4405": 2.5908931852, + "4406": 2.6684532865, + "4407": 2.7450890022, + "4408": 2.8217247179, + "4409": 2.8971336019, + "4410": 2.9725424859, + "4411": 3.0464269338, + "4412": 3.1203113817, + "4413": 3.1923798053, + "4414": 3.2644482289, + "4415": 3.3344162071, + "4416": 3.4043841853, + "4417": 3.4719755864, + "4418": 3.5395669874, + "4419": 3.6045150591, + "4420": 3.6694631307, + "4421": 3.7315115526, + "4422": 3.7935599744, + "4423": 3.8524638696, + "4424": 3.9113677648, + "4425": 3.9668946667, + "4426": 4.0224215686, + "4427": 4.0743523377, + "4428": 4.1262831069, + "4429": 4.1744127964, + "4430": 4.2225424859, + "4431": 4.2666811498, + "4432": 4.3108198138, + "4433": 4.3507932569, + "4434": 4.3907667001, + "4435": 4.4264171656, + "4436": 4.4620676312, + "4437": 4.4932544229, + "4438": 4.5244412147, + "4439": 4.5510412527, + "4440": 4.5776412907, + "4441": 4.5995495968, + "4442": 4.6214579028, + "4443": 4.6385880148, + "4444": 4.6557181268, + "4445": 4.6680024401, + "4446": 4.6802867533, + "4447": 4.6876767872, + "4448": 4.6950668211, + "4449": 4.6975334105, + "4450": 4.7, + "4451": 4.6975334105, + "4452": 4.6950668211, + "4453": 4.6876767872, + "4454": 4.6802867533, + "4455": 4.6680024401, + "4456": 4.6557181268, + "4457": 4.6385880148, + "4458": 4.6214579028, + "4459": 4.5995495968, + "4460": 4.5776412907, + "4461": 4.5510412527, + "4462": 4.5244412147, + "4463": 4.4932544229, + "4464": 4.4620676312, + "4465": 4.4264171656, + "4466": 4.3907667001, + "4467": 4.3507932569, + "4468": 4.3108198138, + "4469": 4.2666811498, + "4470": 4.2225424859, + "4471": 4.1744127964, + "4472": 4.1262831069, + "4473": 4.0743523377, + "4474": 4.0224215686, + "4475": 3.9668946667, + "4476": 3.9113677648, + "4477": 3.8524638696, + "4478": 3.7935599744, + "4479": 3.7315115526, + "4480": 3.6694631307, + "4481": 3.6045150591, + "4482": 3.5395669874, + "4483": 3.4719755864, + "4484": 3.4043841853, + "4485": 3.3344162071, + "4486": 3.2644482289, + "4487": 3.1923798053, + "4488": 3.1203113817, + "4489": 3.0464269338, + "4490": 2.9725424859, + "4491": 2.8971336019, + "4492": 2.8217247179, + "4493": 2.7450890022, + "4494": 2.6684532865, + "4495": 2.5908931852, + "4496": 2.5133330839, + "4497": 2.4351546914, + "4498": 2.3569762988, + "4499": 2.2784881494, + "4500": 2.2, + "4501": 2.1215118506, + "4502": 2.0430237012, + "4503": 1.9648453086, + "4504": 1.8866669161, + "4505": 1.8091068148, + "4506": 1.7315467135, + "4507": 1.6549109978, + "4508": 1.5782752821, + "4509": 1.5028663981, + "4510": 1.4274575141, + "4511": 1.3535730662, + "4512": 1.2796886183, + "4513": 1.2076201947, + "4514": 1.1355517711, + "4515": 1.0655837929, + "4516": 0.9956158147, + "4517": 0.9280244136, + "4518": 0.8604330126, + "4519": 0.7954849409, + "4520": 0.7305368693, + "4521": 0.6684884474, + "4522": 0.6064400256, + "4523": 0.5475361304, + "4524": 0.4886322352, + "4525": 0.4331053333, + "4526": 0.3775784314, + "4527": 0.3256476623, + "4528": 0.2737168931, + "4529": 0.2255872036, + "4530": 0.1774575141, + "4531": 0.1333188502, + "4532": 0.0891801862, + "4533": 0.0492067431, + "4534": 0.0092332999, + "4535": -0.0264171656, + "4536": -0.0620676312, + "4537": -0.0932544229, + "4538": -0.1244412147, + "4539": -0.1510412527, + "4540": -0.1776412907, + "4541": -0.1995495968, + "4542": -0.2214579028, + "4543": -0.2385880148, + "4544": -0.2557181268, + "4545": -0.2680024401, + "4546": -0.2802867533, + "4547": -0.2876767872, + "4548": -0.2950668211, + "4549": -0.2975334105, + "4550": -0.3, + "4551": -0.2975334105, + "4552": -0.2950668211, + "4553": -0.2876767872, + "4554": -0.2802867533, + "4555": -0.2680024401, + "4556": -0.2557181268, + "4557": -0.2385880148, + "4558": -0.2214579028, + "4559": -0.1995495968, + "4560": -0.1776412907, + "4561": -0.1510412527, + "4562": -0.1244412147, + "4563": -0.0932544229, + "4564": -0.0620676312, + "4565": -0.0264171656, + "4566": 0.0092332999, + "4567": 0.0492067431, + "4568": 0.0891801862, + "4569": 0.1333188502, + "4570": 0.1774575141, + "4571": 0.2255872036, + "4572": 0.2737168931, + "4573": 0.3256476623, + "4574": 0.3775784314, + "4575": 0.4331053333, + "4576": 0.4886322352, + "4577": 0.5475361304, + "4578": 0.6064400256, + "4579": 0.6684884474, + "4580": 0.7305368693, + "4581": 0.7954849409, + "4582": 0.8604330126, + "4583": 0.9280244136, + "4584": 0.9956158147, + "4585": 1.0655837929, + "4586": 1.1355517711, + "4587": 1.2076201947, + "4588": 1.2796886183, + "4589": 1.3535730662, + "4590": 1.4274575141, + "4591": 1.5028663981, + "4592": 1.5782752821, + "4593": 1.6549109978, + "4594": 1.7315467135, + "4595": 1.8091068148, + "4596": 1.8866669161, + "4597": 1.9648453086, + "4598": 2.0430237012, + "4599": 2.1215118506, + "4600": 2.2, + "4601": 2.2784881494, + "4602": 2.3569762988, + "4603": 2.4351546914, + "4604": 2.5133330839, + "4605": 2.5908931852, + "4606": 2.6684532865, + "4607": 2.7450890022, + "4608": 2.8217247179, + "4609": 2.8971336019, + "4610": 2.9725424859, + "4611": 3.0464269338, + "4612": 3.1203113817, + "4613": 3.1923798053, + "4614": 3.2644482289, + "4615": 3.3344162071, + "4616": 3.4043841853, + "4617": 3.4719755864, + "4618": 3.5395669874, + "4619": 3.6045150591, + "4620": 3.6694631307, + "4621": 3.7315115526, + "4622": 3.7935599744, + "4623": 3.8524638696, + "4624": 3.9113677648, + "4625": 3.9668946667, + "4626": 4.0224215686, + "4627": 4.0743523377, + "4628": 4.1262831069, + "4629": 4.1744127964, + "4630": 4.2225424859, + "4631": 4.2666811498, + "4632": 4.3108198138, + "4633": 4.3507932569, + "4634": 4.3907667001, + "4635": 4.4264171656, + "4636": 4.4620676312, + "4637": 4.4932544229, + "4638": 4.5244412147, + "4639": 4.5510412527, + "4640": 4.5776412907, + "4641": 4.5995495968, + "4642": 4.6214579028, + "4643": 4.6385880148, + "4644": 4.6557181268, + "4645": 4.6680024401, + "4646": 4.6802867533, + "4647": 4.6876767872, + "4648": 4.6950668211, + "4649": 4.6975334105, + "4650": 4.7, + "4651": 4.6975334105, + "4652": 4.6950668211, + "4653": 4.6876767872, + "4654": 4.6802867533, + "4655": 4.6680024401, + "4656": 4.6557181268, + "4657": 4.6385880148, + "4658": 4.6214579028, + "4659": 4.5995495968, + "4660": 4.5776412907, + "4661": 4.5510412527, + "4662": 4.5244412147, + "4663": 4.4932544229, + "4664": 4.4620676312, + "4665": 4.4264171656, + "4666": 4.3907667001, + "4667": 4.3507932569, + "4668": 4.3108198138, + "4669": 4.2666811498, + "4670": 4.2225424859, + "4671": 4.1744127964, + "4672": 4.1262831069, + "4673": 4.0743523377, + "4674": 4.0224215686, + "4675": 3.9668946667, + "4676": 3.9113677648, + "4677": 3.8524638696, + "4678": 3.7935599744, + "4679": 3.7315115526, + "4680": 3.6694631307, + "4681": 3.6045150591, + "4682": 3.5395669874, + "4683": 3.4719755864, + "4684": 3.4043841853, + "4685": 3.3344162071, + "4686": 3.2644482289, + "4687": 3.1923798053, + "4688": 3.1203113817, + "4689": 3.0464269338, + "4690": 2.9725424859, + "4691": 2.8971336019, + "4692": 2.8217247179, + "4693": 2.7450890022, + "4694": 2.6684532865, + "4695": 2.5908931852, + "4696": 2.5133330839, + "4697": 2.4351546914, + "4698": 2.3569762988, + "4699": 2.2784881494, + "4700": 2.2, + "4701": 2.1215118506, + "4702": 2.0430237012, + "4703": 1.9648453086, + "4704": 1.8866669161, + "4705": 1.8091068148, + "4706": 1.7315467135, + "4707": 1.6549109978, + "4708": 1.5782752821, + "4709": 1.5028663981, + "4710": 1.4274575141, + "4711": 1.3535730662, + "4712": 1.2796886183, + "4713": 1.2076201947, + "4714": 1.1355517711, + "4715": 1.0655837929, + "4716": 0.9956158147, + "4717": 0.9280244136, + "4718": 0.8604330126, + "4719": 0.7954849409, + "4720": 0.7305368693, + "4721": 0.6684884474, + "4722": 0.6064400256, + "4723": 0.5475361304, + "4724": 0.4886322352, + "4725": 0.4331053333, + "4726": 0.3775784314, + "4727": 0.3256476623, + "4728": 0.2737168931, + "4729": 0.2255872036, + "4730": 0.1774575141, + "4731": 0.1333188502, + "4732": 0.0891801862, + "4733": 0.0492067431, + "4734": 0.0092332999, + "4735": -0.0264171656, + "4736": -0.0620676312, + "4737": -0.0932544229, + "4738": -0.1244412147, + "4739": -0.1510412527, + "4740": -0.1776412907, + "4741": -0.1995495968, + "4742": -0.2214579028, + "4743": -0.2385880148, + "4744": -0.2557181268, + "4745": -0.2680024401, + "4746": -0.2802867533, + "4747": -0.2876767872, + "4748": -0.2950668211, + "4749": -0.2975334105, + "4750": -0.3, + "4751": -0.2975334105, + "4752": -0.2950668211, + "4753": -0.2876767872, + "4754": -0.2802867533, + "4755": -0.2680024401, + "4756": -0.2557181268, + "4757": -0.2385880148, + "4758": -0.2214579028, + "4759": -0.1995495968, + "4760": -0.1776412907, + "4761": -0.1510412527, + "4762": -0.1244412147, + "4763": -0.0932544229, + "4764": -0.0620676312, + "4765": -0.0264171656, + "4766": 0.0092332999, + "4767": 0.0492067431, + "4768": 0.0891801862, + "4769": 0.1333188502, + "4770": 0.1774575141, + "4771": 0.2255872036, + "4772": 0.2737168931, + "4773": 0.3256476623, + "4774": 0.3775784314, + "4775": 0.4331053333, + "4776": 0.4886322352, + "4777": 0.5475361304, + "4778": 0.6064400256, + "4779": 0.6684884474, + "4780": 0.7305368693, + "4781": 0.7954849409, + "4782": 0.8604330126, + "4783": 0.9280244136, + "4784": 0.9956158147, + "4785": 1.0655837929, + "4786": 1.1355517711, + "4787": 1.2076201947, + "4788": 1.2796886183, + "4789": 1.3535730662, + "4790": 1.4274575141, + "4791": 1.5028663981, + "4792": 1.5782752821, + "4793": 1.6549109978, + "4794": 1.7315467135, + "4795": 1.8091068148, + "4796": 1.8866669161, + "4797": 1.9648453086, + "4798": 2.0430237012, + "4799": 2.1215118506, + "4800": 2.2, + "4801": 2.2784881494, + "4802": 2.3569762988, + "4803": 2.4351546914, + "4804": 2.5133330839, + "4805": 2.5908931852, + "4806": 2.6684532865, + "4807": 2.7450890022, + "4808": 2.8217247179, + "4809": 2.8971336019, + "4810": 2.9725424859, + "4811": 3.0464269338, + "4812": 3.1203113817, + "4813": 3.1923798053, + "4814": 3.2644482289, + "4815": 3.3344162071, + "4816": 3.4043841853, + "4817": 3.4719755864, + "4818": 3.5395669874, + "4819": 3.6045150591, + "4820": 3.6694631307, + "4821": 3.7315115526, + "4822": 3.7935599744, + "4823": 3.8524638696, + "4824": 3.9113677648, + "4825": 3.9668946667, + "4826": 4.0224215686, + "4827": 4.0743523377, + "4828": 4.1262831069, + "4829": 4.1744127964, + "4830": 4.2225424859, + "4831": 4.2666811498, + "4832": 4.3108198138, + "4833": 4.3507932569, + "4834": 4.3907667001, + "4835": 4.4264171656, + "4836": 4.4620676312, + "4837": 4.4932544229, + "4838": 4.5244412147, + "4839": 4.5510412527, + "4840": 4.5776412907, + "4841": 4.5995495968, + "4842": 4.6214579028, + "4843": 4.6385880148, + "4844": 4.6557181268, + "4845": 4.6680024401, + "4846": 4.6802867533, + "4847": 4.6876767872, + "4848": 4.6950668211, + "4849": 4.6975334105, + "4850": 4.7, + "4851": 4.6975334105, + "4852": 4.6950668211, + "4853": 4.6876767872, + "4854": 4.6802867533, + "4855": 4.6680024401, + "4856": 4.6557181268, + "4857": 4.6385880148, + "4858": 4.6214579028, + "4859": 4.5995495968, + "4860": 4.5776412907, + "4861": 4.5510412527, + "4862": 4.5244412147, + "4863": 4.4932544229, + "4864": 4.4620676312, + "4865": 4.4264171656, + "4866": 4.3907667001, + "4867": 4.3507932569, + "4868": 4.3108198138, + "4869": 4.2666811498, + "4870": 4.2225424859, + "4871": 4.1744127964, + "4872": 4.1262831069, + "4873": 4.0743523377, + "4874": 4.0224215686, + "4875": 3.9668946667, + "4876": 3.9113677648, + "4877": 3.8524638696, + "4878": 3.7935599744, + "4879": 3.7315115526, + "4880": 3.6694631307, + "4881": 3.6045150591, + "4882": 3.5395669874, + "4883": 3.4719755864, + "4884": 3.4043841853, + "4885": 3.3344162071, + "4886": 3.2644482289, + "4887": 3.1923798053, + "4888": 3.1203113817, + "4889": 3.0464269338, + "4890": 2.9725424859, + "4891": 2.8971336019, + "4892": 2.8217247179, + "4893": 2.7450890022, + "4894": 2.6684532865, + "4895": 2.5908931852, + "4896": 2.5133330839, + "4897": 2.4351546914, + "4898": 2.3569762988, + "4899": 2.2784881494, + "4900": 2.2, + "4901": 2.1215118506, + "4902": 2.0430237012, + "4903": 1.9648453086, + "4904": 1.8866669161, + "4905": 1.8091068148, + "4906": 1.7315467135, + "4907": 1.6549109978, + "4908": 1.5782752821, + "4909": 1.5028663981, + "4910": 1.4274575141, + "4911": 1.3535730662, + "4912": 1.2796886183, + "4913": 1.2076201947, + "4914": 1.1355517711, + "4915": 1.0655837929, + "4916": 0.9956158147, + "4917": 0.9280244136, + "4918": 0.8604330126, + "4919": 0.7954849409, + "4920": 0.7305368693, + "4921": 0.6684884474, + "4922": 0.6064400256, + "4923": 0.5475361304, + "4924": 0.4886322352, + "4925": 0.4331053333, + "4926": 0.3775784314, + "4927": 0.3256476623, + "4928": 0.2737168931, + "4929": 0.2255872036, + "4930": 0.1774575141, + "4931": 0.1333188502, + "4932": 0.0891801862, + "4933": 0.0492067431, + "4934": 0.0092332999, + "4935": -0.0264171656, + "4936": -0.0620676312, + "4937": -0.0932544229, + "4938": -0.1244412147, + "4939": -0.1510412527, + "4940": -0.1776412907, + "4941": -0.1995495968, + "4942": -0.2214579028, + "4943": -0.2385880148, + "4944": -0.2557181268, + "4945": -0.2680024401, + "4946": -0.2802867533, + "4947": -0.2876767872, + "4948": -0.2950668211, + "4949": -0.2975334105, + "4950": -0.3, + "4951": -0.2975334105, + "4952": -0.2950668211, + "4953": -0.2876767872, + "4954": -0.2802867533, + "4955": -0.2680024401, + "4956": -0.2557181268, + "4957": -0.2385880148, + "4958": -0.2214579028, + "4959": -0.1995495968, + "4960": -0.1776412907, + "4961": -0.1510412527, + "4962": -0.1244412147, + "4963": -0.0932544229, + "4964": -0.0620676312, + "4965": -0.0264171656, + "4966": 0.0092332999, + "4967": 0.0492067431, + "4968": 0.0891801862, + "4969": 0.1333188502, + "4970": 0.1774575141, + "4971": 0.2255872036, + "4972": 0.2737168931, + "4973": 0.3256476623, + "4974": 0.3775784314, + "4975": 0.4331053333, + "4976": 0.4886322352, + "4977": 0.5475361304, + "4978": 0.6064400256, + "4979": 0.6684884474, + "4980": 0.7305368693, + "4981": 0.7954849409, + "4982": 0.8604330126, + "4983": 0.9280244136, + "4984": 0.9956158147, + "4985": 1.0655837929, + "4986": 1.1355517711, + "4987": 1.2076201947, + "4988": 1.2796886183, + "4989": 1.3535730662, + "4990": 1.4274575141, + "4991": 1.5028663981, + "4992": 1.5782752821, + "4993": 1.6549109978, + "4994": 1.7315467135, + "4995": 1.8091068148, + "4996": 1.8866669161, + "4997": 1.9648453086, + "4998": 2.0430237012, + "4999": 2.1215118506, + "5000": 2.2, + "5001": 2.2784881494, + "5002": 2.3569762988, + "5003": 2.4351546914, + "5004": 2.5133330839, + "5005": 2.5908931852, + "5006": 2.6684532865, + "5007": 2.7450890022, + "5008": 2.8217247179, + "5009": 2.8971336019, + "5010": 2.9725424859, + "5011": 3.0464269338, + "5012": 3.1203113817, + "5013": 3.1923798053, + "5014": 3.2644482289, + "5015": 3.3344162071, + "5016": 3.4043841853, + "5017": 3.4719755864, + "5018": 3.5395669874, + "5019": 3.6045150591, + "5020": 3.6694631307, + "5021": 3.7315115526, + "5022": 3.7935599744, + "5023": 3.8524638696, + "5024": 3.9113677648, + "5025": 3.9668946667, + "5026": 4.0224215686, + "5027": 4.0743523377, + "5028": 4.1262831069, + "5029": 4.1744127964, + "5030": 4.2225424859, + "5031": 4.2666811498, + "5032": 4.3108198138, + "5033": 4.3507932569, + "5034": 4.3907667001, + "5035": 4.4264171656, + "5036": 4.4620676312, + "5037": 4.4932544229, + "5038": 4.5244412147, + "5039": 4.5510412527, + "5040": 4.5776412907, + "5041": 4.5995495968, + "5042": 4.6214579028, + "5043": 4.6385880148, + "5044": 4.6557181268, + "5045": 4.6680024401, + "5046": 4.6802867533, + "5047": 4.6876767872, + "5048": 4.6950668211, + "5049": 4.6975334105, + "5050": 4.7, + "5051": 4.6975334105, + "5052": 4.6950668211, + "5053": 4.6876767872, + "5054": 4.6802867533, + "5055": 4.6680024401, + "5056": 4.6557181268, + "5057": 4.6385880148, + "5058": 4.6214579028, + "5059": 4.5995495968, + "5060": 4.5776412907, + "5061": 4.5510412527, + "5062": 4.5244412147, + "5063": 4.4932544229, + "5064": 4.4620676312, + "5065": 4.4264171656, + "5066": 4.3907667001, + "5067": 4.3507932569, + "5068": 4.3108198138, + "5069": 4.2666811498, + "5070": 4.2225424859, + "5071": 4.1744127964, + "5072": 4.1262831069, + "5073": 4.0743523377, + "5074": 4.0224215686, + "5075": 3.9668946667, + "5076": 3.9113677648, + "5077": 3.8524638696, + "5078": 3.7935599744, + "5079": 3.7315115526, + "5080": 3.6694631307, + "5081": 3.6045150591, + "5082": 3.5395669874, + "5083": 3.4719755864, + "5084": 3.4043841853, + "5085": 3.3344162071, + "5086": 3.2644482289, + "5087": 3.1923798053, + "5088": 3.1203113817, + "5089": 3.0464269338, + "5090": 2.9725424859, + "5091": 2.8971336019, + "5092": 2.8217247179, + "5093": 2.7450890022, + "5094": 2.6684532865, + "5095": 2.5908931852, + "5096": 2.5133330839, + "5097": 2.4351546914, + "5098": 2.3569762988, + "5099": 2.2784881494, + "5100": 2.2, + "5101": 2.1215118506, + "5102": 2.0430237012, + "5103": 1.9648453086, + "5104": 1.8866669161, + "5105": 1.8091068148, + "5106": 1.7315467135, + "5107": 1.6549109978, + "5108": 1.5782752821, + "5109": 1.5028663981, + "5110": 1.4274575141, + "5111": 1.3535730662, + "5112": 1.2796886183, + "5113": 1.2076201947, + "5114": 1.1355517711, + "5115": 1.0655837929, + "5116": 0.9956158147, + "5117": 0.9280244136, + "5118": 0.8604330126, + "5119": 0.7954849409, + "5120": 0.7305368693, + "5121": 0.6684884474, + "5122": 0.6064400256, + "5123": 0.5475361304, + "5124": 0.4886322352, + "5125": 0.4331053333, + "5126": 0.3775784314, + "5127": 0.3256476623, + "5128": 0.2737168931, + "5129": 0.2255872036, + "5130": 0.1774575141, + "5131": 0.1333188502, + "5132": 0.0891801862, + "5133": 0.0492067431, + "5134": 0.0092332999, + "5135": -0.0264171656, + "5136": -0.0620676312, + "5137": -0.0932544229, + "5138": -0.1244412147, + "5139": -0.1510412527, + "5140": -0.1776412907, + "5141": -0.1995495968, + "5142": -0.2214579028, + "5143": -0.2385880148, + "5144": -0.2557181268, + "5145": -0.2680024401, + "5146": -0.2802867533, + "5147": -0.2876767872, + "5148": -0.2950668211, + "5149": -0.2975334105, + "5150": -0.3, + "5151": -0.2975334105, + "5152": -0.2950668211, + "5153": -0.2876767872, + "5154": -0.2802867533, + "5155": -0.2680024401, + "5156": -0.2557181268, + "5157": -0.2385880148, + "5158": -0.2214579028, + "5159": -0.1995495968, + "5160": -0.1776412907, + "5161": -0.1510412527, + "5162": -0.1244412147, + "5163": -0.0932544229, + "5164": -0.0620676312, + "5165": -0.0264171656, + "5166": 0.0092332999, + "5167": 0.0492067431, + "5168": 0.0891801862, + "5169": 0.1333188502, + "5170": 0.1774575141, + "5171": 0.2255872036, + "5172": 0.2737168931, + "5173": 0.3256476623, + "5174": 0.3775784314, + "5175": 0.4331053333, + "5176": 0.4886322352, + "5177": 0.5475361304, + "5178": 0.6064400256, + "5179": 0.6684884474, + "5180": 0.7305368693, + "5181": 0.7954849409, + "5182": 0.8604330126, + "5183": 0.9280244136, + "5184": 0.9956158147, + "5185": 1.0655837929, + "5186": 1.1355517711, + "5187": 1.2076201947, + "5188": 1.2796886183, + "5189": 1.3535730662, + "5190": 1.4274575141, + "5191": 1.5028663981, + "5192": 1.5782752821, + "5193": 1.6549109978, + "5194": 1.7315467135, + "5195": 1.8091068148, + "5196": 1.8866669161, + "5197": 1.9648453086, + "5198": 2.0430237012, + "5199": 2.1215118506, + "5200": 2.2, + "5201": 2.2784881494, + "5202": 2.3569762988, + "5203": 2.4351546914, + "5204": 2.5133330839, + "5205": 2.5908931852, + "5206": 2.6684532865, + "5207": 2.7450890022, + "5208": 2.8217247179, + "5209": 2.8971336019, + "5210": 2.9725424859, + "5211": 3.0464269338, + "5212": 3.1203113817, + "5213": 3.1923798053, + "5214": 3.2644482289, + "5215": 3.3344162071, + "5216": 3.4043841853, + "5217": 3.4719755864, + "5218": 3.5395669874, + "5219": 3.6045150591, + "5220": 3.6694631307, + "5221": 3.7315115526, + "5222": 3.7935599744, + "5223": 3.8524638696, + "5224": 3.9113677648, + "5225": 3.9668946667, + "5226": 4.0224215686, + "5227": 4.0743523377, + "5228": 4.1262831069, + "5229": 4.1744127964, + "5230": 4.2225424859, + "5231": 4.2666811498, + "5232": 4.3108198138, + "5233": 4.3507932569, + "5234": 4.3907667001, + "5235": 4.4264171656, + "5236": 4.4620676312, + "5237": 4.4932544229, + "5238": 4.5244412147, + "5239": 4.5510412527, + "5240": 4.5776412907, + "5241": 4.5995495968, + "5242": 4.6214579028, + "5243": 4.6385880148, + "5244": 4.6557181268, + "5245": 4.6680024401, + "5246": 4.6802867533, + "5247": 4.6876767872, + "5248": 4.6950668211, + "5249": 4.6975334105, + "5250": 4.7, + "5251": 4.6975334105, + "5252": 4.6950668211, + "5253": 4.6876767872, + "5254": 4.6802867533, + "5255": 4.6680024401, + "5256": 4.6557181268, + "5257": 4.6385880148, + "5258": 4.6214579028, + "5259": 4.5995495968, + "5260": 4.5776412907, + "5261": 4.5510412527, + "5262": 4.5244412147, + "5263": 4.4932544229, + "5264": 4.4620676312, + "5265": 4.4264171656, + "5266": 4.3907667001, + "5267": 4.3507932569, + "5268": 4.3108198138, + "5269": 4.2666811498, + "5270": 4.2225424859, + "5271": 4.1744127964, + "5272": 4.1262831069, + "5273": 4.0743523377, + "5274": 4.0224215686, + "5275": 3.9668946667, + "5276": 3.9113677648, + "5277": 3.8524638696, + "5278": 3.7935599744, + "5279": 3.7315115526, + "5280": 3.6694631307, + "5281": 3.6045150591, + "5282": 3.5395669874, + "5283": 3.4719755864, + "5284": 3.4043841853, + "5285": 3.3344162071, + "5286": 3.2644482289, + "5287": 3.1923798053, + "5288": 3.1203113817, + "5289": 3.0464269338, + "5290": 2.9725424859, + "5291": 2.8971336019, + "5292": 2.8217247179, + "5293": 2.7450890022, + "5294": 2.6684532865, + "5295": 2.5908931852, + "5296": 2.5133330839, + "5297": 2.4351546914, + "5298": 2.3569762988, + "5299": 2.2784881494, + "5300": 2.2, + "5301": 2.1215118506, + "5302": 2.0430237012, + "5303": 1.9648453086, + "5304": 1.8866669161, + "5305": 1.8091068148, + "5306": 1.7315467135, + "5307": 1.6549109978, + "5308": 1.5782752821, + "5309": 1.5028663981, + "5310": 1.4274575141, + "5311": 1.3535730662, + "5312": 1.2796886183, + "5313": 1.2076201947, + "5314": 1.1355517711, + "5315": 1.0655837929, + "5316": 0.9956158147, + "5317": 0.9280244136, + "5318": 0.8604330126, + "5319": 0.7954849409, + "5320": 0.7305368693, + "5321": 0.6684884474, + "5322": 0.6064400256, + "5323": 0.5475361304, + "5324": 0.4886322352, + "5325": 0.4331053333, + "5326": 0.3775784314, + "5327": 0.3256476623, + "5328": 0.2737168931, + "5329": 0.2255872036, + "5330": 0.1774575141, + "5331": 0.1333188502, + "5332": 0.0891801862, + "5333": 0.0492067431, + "5334": 0.0092332999, + "5335": -0.0264171656, + "5336": -0.0620676312, + "5337": -0.0932544229, + "5338": -0.1244412147, + "5339": -0.1510412527, + "5340": -0.1776412907, + "5341": -0.1995495968, + "5342": -0.2214579028, + "5343": -0.2385880148, + "5344": -0.2557181268, + "5345": -0.2680024401, + "5346": -0.2802867533, + "5347": -0.2876767872, + "5348": -0.2950668211, + "5349": -0.2975334105, + "5350": -0.3, + "5351": -0.2975334105, + "5352": -0.2950668211, + "5353": -0.2876767872, + "5354": -0.2802867533, + "5355": -0.2680024401, + "5356": -0.2557181268, + "5357": -0.2385880148, + "5358": -0.2214579028, + "5359": -0.1995495968, + "5360": -0.1776412907, + "5361": -0.1510412527, + "5362": -0.1244412147, + "5363": -0.0932544229, + "5364": -0.0620676312, + "5365": -0.0264171656, + "5366": 0.0092332999, + "5367": 0.0492067431, + "5368": 0.0891801862, + "5369": 0.1333188502, + "5370": 0.1774575141, + "5371": 0.2255872036, + "5372": 0.2737168931, + "5373": 0.3256476623, + "5374": 0.3775784314, + "5375": 0.4331053333, + "5376": 0.4886322352, + "5377": 0.5475361304, + "5378": 0.6064400256, + "5379": 0.6684884474, + "5380": 0.7305368693, + "5381": 0.7954849409, + "5382": 0.8604330126, + "5383": 0.9280244136, + "5384": 0.9956158147, + "5385": 1.0655837929, + "5386": 1.1355517711, + "5387": 1.2076201947, + "5388": 1.2796886183, + "5389": 1.3535730662, + "5390": 1.4274575141, + "5391": 1.5028663981, + "5392": 1.5782752821, + "5393": 1.6549109978, + "5394": 1.7315467135, + "5395": 1.8091068148, + "5396": 1.8866669161, + "5397": 1.9648453086, + "5398": 2.0430237012, + "5399": 2.1215118506, + "5400": 2.2, + "5401": 2.2784881494, + "5402": 2.3569762988, + "5403": 2.4351546914, + "5404": 2.5133330839, + "5405": 2.5908931852, + "5406": 2.6684532865, + "5407": 2.7450890022, + "5408": 2.8217247179, + "5409": 2.8971336019, + "5410": 2.9725424859, + "5411": 3.0464269338, + "5412": 3.1203113817, + "5413": 3.1923798053, + "5414": 3.2644482289, + "5415": 3.3344162071, + "5416": 3.4043841853, + "5417": 3.4719755864, + "5418": 3.5395669874, + "5419": 3.6045150591, + "5420": 3.6694631307, + "5421": 3.7315115526, + "5422": 3.7935599744, + "5423": 3.8524638696, + "5424": 3.9113677648, + "5425": 3.9668946667, + "5426": 4.0224215686, + "5427": 4.0743523377, + "5428": 4.1262831069, + "5429": 4.1744127964, + "5430": 4.2225424859, + "5431": 4.2666811498, + "5432": 4.3108198138, + "5433": 4.3507932569, + "5434": 4.3907667001, + "5435": 4.4264171656, + "5436": 4.4620676312, + "5437": 4.4932544229, + "5438": 4.5244412147, + "5439": 4.5510412527, + "5440": 4.5776412907, + "5441": 4.5995495968, + "5442": 4.6214579028, + "5443": 4.6385880148, + "5444": 4.6557181268, + "5445": 4.6680024401, + "5446": 4.6802867533, + "5447": 4.6876767872, + "5448": 4.6950668211, + "5449": 4.6975334105, + "5450": 4.7, + "5451": 4.6975334105, + "5452": 4.6950668211, + "5453": 4.6876767872, + "5454": 4.6802867533, + "5455": 4.6680024401, + "5456": 4.6557181268, + "5457": 4.6385880148, + "5458": 4.6214579028, + "5459": 4.5995495968, + "5460": 4.5776412907, + "5461": 4.5510412527, + "5462": 4.5244412147, + "5463": 4.4932544229, + "5464": 4.4620676312, + "5465": 4.4264171656, + "5466": 4.3907667001, + "5467": 4.3507932569, + "5468": 4.3108198138, + "5469": 4.2666811498, + "5470": 4.2225424859, + "5471": 4.1744127964, + "5472": 4.1262831069, + "5473": 4.0743523377, + "5474": 4.0224215686, + "5475": 3.9668946667, + "5476": 3.9113677648, + "5477": 3.8524638696, + "5478": 3.7935599744, + "5479": 3.7315115526, + "5480": 3.6694631307, + "5481": 3.6045150591, + "5482": 3.5395669874, + "5483": 3.4719755864, + "5484": 3.4043841853, + "5485": 3.3344162071, + "5486": 3.2644482289, + "5487": 3.1923798053, + "5488": 3.1203113817, + "5489": 3.0464269338, + "5490": 2.9725424859, + "5491": 2.8971336019, + "5492": 2.8217247179, + "5493": 2.7450890022, + "5494": 2.6684532865, + "5495": 2.5908931852, + "5496": 2.5133330839, + "5497": 2.4351546914, + "5498": 2.3569762988, + "5499": 2.2784881494, + "5500": 2.2, + "5501": 2.1215118506, + "5502": 2.0430237012, + "5503": 1.9648453086, + "5504": 1.8866669161, + "5505": 1.8091068148, + "5506": 1.7315467135, + "5507": 1.6549109978, + "5508": 1.5782752821, + "5509": 1.5028663981, + "5510": 1.4274575141, + "5511": 1.3535730662, + "5512": 1.2796886183, + "5513": 1.2076201947, + "5514": 1.1355517711, + "5515": 1.0655837929, + "5516": 0.9956158147, + "5517": 0.9280244136, + "5518": 0.8604330126, + "5519": 0.7954849409, + "5520": 0.7305368693, + "5521": 0.6684884474, + "5522": 0.6064400256, + "5523": 0.5475361304, + "5524": 0.4886322352, + "5525": 0.4331053333, + "5526": 0.3775784314, + "5527": 0.3256476623, + "5528": 0.2737168931, + "5529": 0.2255872036, + "5530": 0.1774575141, + "5531": 0.1333188502, + "5532": 0.0891801862, + "5533": 0.0492067431, + "5534": 0.0092332999, + "5535": -0.0264171656, + "5536": -0.0620676312, + "5537": -0.0932544229, + "5538": -0.1244412147, + "5539": -0.1510412527, + "5540": -0.1776412907, + "5541": -0.1995495968, + "5542": -0.2214579028, + "5543": -0.2385880148, + "5544": -0.2557181268, + "5545": -0.2680024401, + "5546": -0.2802867533, + "5547": -0.2876767872, + "5548": -0.2950668211, + "5549": -0.2975334105, + "5550": -0.3, + "5551": -0.2975334105, + "5552": -0.2950668211, + "5553": -0.2876767872, + "5554": -0.2802867533, + "5555": -0.2680024401, + "5556": -0.2557181268, + "5557": -0.2385880148, + "5558": -0.2214579028, + "5559": -0.1995495968, + "5560": -0.1776412907, + "5561": -0.1510412527, + "5562": -0.1244412147, + "5563": -0.0932544229, + "5564": -0.0620676312, + "5565": -0.0264171656, + "5566": 0.0092332999, + "5567": 0.0492067431, + "5568": 0.0891801862, + "5569": 0.1333188502, + "5570": 0.1774575141, + "5571": 0.2255872036, + "5572": 0.2737168931, + "5573": 0.3256476623, + "5574": 0.3775784314, + "5575": 0.4331053333, + "5576": 0.4886322352, + "5577": 0.5475361304, + "5578": 0.6064400256, + "5579": 0.6684884474, + "5580": 0.7305368693, + "5581": 0.7954849409, + "5582": 0.8604330126, + "5583": 0.9280244136, + "5584": 0.9956158147, + "5585": 1.0655837929, + "5586": 1.1355517711, + "5587": 1.2076201947, + "5588": 1.2796886183, + "5589": 1.3535730662, + "5590": 1.4274575141, + "5591": 1.5028663981, + "5592": 1.5782752821, + "5593": 1.6549109978, + "5594": 1.7315467135, + "5595": 1.8091068148, + "5596": 1.8866669161, + "5597": 1.9648453086, + "5598": 2.0430237012, + "5599": 2.1215118506, + "5600": 2.2, + "5601": 2.2784881494, + "5602": 2.3569762988, + "5603": 2.4351546914, + "5604": 2.5133330839, + "5605": 2.5908931852, + "5606": 2.6684532865, + "5607": 2.7450890022, + "5608": 2.8217247179, + "5609": 2.8971336019, + "5610": 2.9725424859, + "5611": 3.0464269338, + "5612": 3.1203113817, + "5613": 3.1923798053, + "5614": 3.2644482289, + "5615": 3.3344162071, + "5616": 3.4043841853, + "5617": 3.4719755864, + "5618": 3.5395669874, + "5619": 3.6045150591, + "5620": 3.6694631307, + "5621": 3.7315115526, + "5622": 3.7935599744, + "5623": 3.8524638696, + "5624": 3.9113677648, + "5625": 3.9668946667, + "5626": 4.0224215686, + "5627": 4.0743523377, + "5628": 4.1262831069, + "5629": 4.1744127964, + "5630": 4.2225424859, + "5631": 4.2666811498, + "5632": 4.3108198138, + "5633": 4.3507932569, + "5634": 4.3907667001, + "5635": 4.4264171656, + "5636": 4.4620676312, + "5637": 4.4932544229, + "5638": 4.5244412147, + "5639": 4.5510412527, + "5640": 4.5776412907, + "5641": 4.5995495968, + "5642": 4.6214579028, + "5643": 4.6385880148, + "5644": 4.6557181268, + "5645": 4.6680024401, + "5646": 4.6802867533, + "5647": 4.6876767872, + "5648": 4.6950668211, + "5649": 4.6975334105, + "5650": 4.7, + "5651": 4.6975334105, + "5652": 4.6950668211, + "5653": 4.6876767872, + "5654": 4.6802867533, + "5655": 4.6680024401, + "5656": 4.6557181268, + "5657": 4.6385880148, + "5658": 4.6214579028, + "5659": 4.5995495968, + "5660": 4.5776412907, + "5661": 4.5510412527, + "5662": 4.5244412147, + "5663": 4.4932544229, + "5664": 4.4620676312, + "5665": 4.4264171656, + "5666": 4.3907667001, + "5667": 4.3507932569, + "5668": 4.3108198138, + "5669": 4.2666811498, + "5670": 4.2225424859, + "5671": 4.1744127964, + "5672": 4.1262831069, + "5673": 4.0743523377, + "5674": 4.0224215686, + "5675": 3.9668946667, + "5676": 3.9113677648, + "5677": 3.8524638696, + "5678": 3.7935599744, + "5679": 3.7315115526, + "5680": 3.6694631307, + "5681": 3.6045150591, + "5682": 3.5395669874, + "5683": 3.4719755864, + "5684": 3.4043841853, + "5685": 3.3344162071, + "5686": 3.2644482289, + "5687": 3.1923798053, + "5688": 3.1203113817, + "5689": 3.0464269338, + "5690": 2.9725424859, + "5691": 2.8971336019, + "5692": 2.8217247179, + "5693": 2.7450890022, + "5694": 2.6684532865, + "5695": 2.5908931852, + "5696": 2.5133330839, + "5697": 2.4351546914, + "5698": 2.3569762988, + "5699": 2.2784881494, + "5700": 2.2, + "5701": 2.1215118506, + "5702": 2.0430237012, + "5703": 1.9648453086, + "5704": 1.8866669161, + "5705": 1.8091068148, + "5706": 1.7315467135, + "5707": 1.6549109978, + "5708": 1.5782752821, + "5709": 1.5028663981, + "5710": 1.4274575141, + "5711": 1.3535730662, + "5712": 1.2796886183, + "5713": 1.2076201947, + "5714": 1.1355517711, + "5715": 1.0655837929, + "5716": 0.9956158147, + "5717": 0.9280244136, + "5718": 0.8604330126, + "5719": 0.7954849409, + "5720": 0.7305368693, + "5721": 0.6684884474, + "5722": 0.6064400256, + "5723": 0.5475361304, + "5724": 0.4886322352, + "5725": 0.4331053333, + "5726": 0.3775784314, + "5727": 0.3256476623, + "5728": 0.2737168931, + "5729": 0.2255872036, + "5730": 0.1774575141, + "5731": 0.1333188502, + "5732": 0.0891801862, + "5733": 0.0492067431, + "5734": 0.0092332999, + "5735": -0.0264171656, + "5736": -0.0620676312, + "5737": -0.0932544229, + "5738": -0.1244412147, + "5739": -0.1510412527, + "5740": -0.1776412907, + "5741": -0.1995495968, + "5742": -0.2214579028, + "5743": -0.2385880148, + "5744": -0.2557181268, + "5745": -0.2680024401, + "5746": -0.2802867533, + "5747": -0.2876767872, + "5748": -0.2950668211, + "5749": -0.2975334105, + "5750": -0.3, + "5751": -0.2975334105, + "5752": -0.2950668211, + "5753": -0.2876767872, + "5754": -0.2802867533, + "5755": -0.2680024401, + "5756": -0.2557181268, + "5757": -0.2385880148, + "5758": -0.2214579028, + "5759": -0.1995495968, + "5760": -0.1776412907, + "5761": -0.1510412527, + "5762": -0.1244412147, + "5763": -0.0932544229, + "5764": -0.0620676312, + "5765": -0.0264171656, + "5766": 0.0092332999, + "5767": 0.0492067431, + "5768": 0.0891801862, + "5769": 0.1333188502, + "5770": 0.1774575141, + "5771": 0.2255872036, + "5772": 0.2737168931, + "5773": 0.3256476623, + "5774": 0.3775784314, + "5775": 0.4331053333, + "5776": 0.4886322352, + "5777": 0.5475361304, + "5778": 0.6064400256, + "5779": 0.6684884474, + "5780": 0.7305368693, + "5781": 0.7954849409, + "5782": 0.8604330126, + "5783": 0.9280244136, + "5784": 0.9956158147, + "5785": 1.0655837929, + "5786": 1.1355517711, + "5787": 1.2076201947, + "5788": 1.2796886183, + "5789": 1.3535730662, + "5790": 1.4274575141, + "5791": 1.5028663981, + "5792": 1.5782752821, + "5793": 1.6549109978, + "5794": 1.7315467135, + "5795": 1.8091068148, + "5796": 1.8866669161, + "5797": 1.9648453086, + "5798": 2.0430237012, + "5799": 2.1215118506, + "5800": 2.2, + "5801": 2.2784881494, + "5802": 2.3569762988, + "5803": 2.4351546914, + "5804": 2.5133330839, + "5805": 2.5908931852, + "5806": 2.6684532865, + "5807": 2.7450890022, + "5808": 2.8217247179, + "5809": 2.8971336019, + "5810": 2.9725424859, + "5811": 3.0464269338, + "5812": 3.1203113817, + "5813": 3.1923798053, + "5814": 3.2644482289, + "5815": 3.3344162071, + "5816": 3.4043841853, + "5817": 3.4719755864, + "5818": 3.5395669874, + "5819": 3.6045150591, + "5820": 3.6694631307, + "5821": 3.7315115526, + "5822": 3.7935599744, + "5823": 3.8524638696, + "5824": 3.9113677648, + "5825": 3.9668946667, + "5826": 4.0224215686, + "5827": 4.0743523377, + "5828": 4.1262831069, + "5829": 4.1744127964, + "5830": 4.2225424859, + "5831": 4.2666811498, + "5832": 4.3108198138, + "5833": 4.3507932569, + "5834": 4.3907667001, + "5835": 4.4264171656, + "5836": 4.4620676312, + "5837": 4.4932544229, + "5838": 4.5244412147, + "5839": 4.5510412527, + "5840": 4.5776412907, + "5841": 4.5995495968, + "5842": 4.6214579028, + "5843": 4.6385880148, + "5844": 4.6557181268, + "5845": 4.6680024401, + "5846": 4.6802867533, + "5847": 4.6876767872, + "5848": 4.6950668211, + "5849": 4.6975334105, + "5850": 4.7, + "5851": 4.6975334105, + "5852": 4.6950668211, + "5853": 4.6876767872, + "5854": 4.6802867533, + "5855": 4.6680024401, + "5856": 4.6557181268, + "5857": 4.6385880148, + "5858": 4.6214579028, + "5859": 4.5995495968, + "5860": 4.5776412907, + "5861": 4.5510412527, + "5862": 4.5244412147, + "5863": 4.4932544229, + "5864": 4.4620676312, + "5865": 4.4264171656, + "5866": 4.3907667001, + "5867": 4.3507932569, + "5868": 4.3108198138, + "5869": 4.2666811498, + "5870": 4.2225424859, + "5871": 4.1744127964, + "5872": 4.1262831069, + "5873": 4.0743523377, + "5874": 4.0224215686, + "5875": 3.9668946667, + "5876": 3.9113677648, + "5877": 3.8524638696, + "5878": 3.7935599744, + "5879": 3.7315115526, + "5880": 3.6694631307, + "5881": 3.6045150591, + "5882": 3.5395669874, + "5883": 3.4719755864, + "5884": 3.4043841853, + "5885": 3.3344162071, + "5886": 3.2644482289, + "5887": 3.1923798053, + "5888": 3.1203113817, + "5889": 3.0464269338, + "5890": 2.9725424859, + "5891": 2.8971336019, + "5892": 2.8217247179, + "5893": 2.7450890022, + "5894": 2.6684532865, + "5895": 2.5908931852, + "5896": 2.5133330839, + "5897": 2.4351546914, + "5898": 2.3569762988, + "5899": 2.2784881494, + "5900": 2.2, + "5901": 2.1215118506, + "5902": 2.0430237012, + "5903": 1.9648453086, + "5904": 1.8866669161, + "5905": 1.8091068148, + "5906": 1.7315467135, + "5907": 1.6549109978, + "5908": 1.5782752821, + "5909": 1.5028663981, + "5910": 1.4274575141, + "5911": 1.3535730662, + "5912": 1.2796886183, + "5913": 1.2076201947, + "5914": 1.1355517711, + "5915": 1.0655837929, + "5916": 0.9956158147, + "5917": 0.9280244136, + "5918": 0.8604330126, + "5919": 0.7954849409, + "5920": 0.7305368693, + "5921": 0.6684884474, + "5922": 0.6064400256, + "5923": 0.5475361304, + "5924": 0.4886322352, + "5925": 0.4331053333, + "5926": 0.3775784314, + "5927": 0.3256476623, + "5928": 0.2737168931, + "5929": 0.2255872036, + "5930": 0.1774575141, + "5931": 0.1333188502, + "5932": 0.0891801862, + "5933": 0.0492067431, + "5934": 0.0092332999, + "5935": -0.0264171656, + "5936": -0.0620676312, + "5937": -0.0932544229, + "5938": -0.1244412147, + "5939": -0.1510412527, + "5940": -0.1776412907, + "5941": -0.1995495968, + "5942": -0.2214579028, + "5943": -0.2385880148, + "5944": -0.2557181268, + "5945": -0.2680024401, + "5946": -0.2802867533, + "5947": -0.2876767872, + "5948": -0.2950668211, + "5949": -0.2975334105, + "5950": -0.3, + "5951": -0.2975334105, + "5952": -0.2950668211, + "5953": -0.2876767872, + "5954": -0.2802867533, + "5955": -0.2680024401, + "5956": -0.2557181268, + "5957": -0.2385880148, + "5958": -0.2214579028, + "5959": -0.1995495968, + "5960": -0.1776412907, + "5961": -0.1510412527, + "5962": -0.1244412147, + "5963": -0.0932544229, + "5964": -0.0620676312, + "5965": -0.0264171656, + "5966": 0.0092332999, + "5967": 0.0492067431, + "5968": 0.0891801862, + "5969": 0.1333188502, + "5970": 0.1774575141, + "5971": 0.2255872036, + "5972": 0.2737168931, + "5973": 0.3256476623, + "5974": 0.3775784314, + "5975": 0.4331053333, + "5976": 0.4886322352, + "5977": 0.5475361304, + "5978": 0.6064400256, + "5979": 0.6684884474, + "5980": 0.7305368693, + "5981": 0.7954849409, + "5982": 0.8604330126, + "5983": 0.9280244136, + "5984": 0.9956158147, + "5985": 1.0655837929, + "5986": 1.1355517711, + "5987": 1.2076201947, + "5988": 1.2796886183, + "5989": 1.3535730662, + "5990": 1.4274575141, + "5991": 1.5028663981, + "5992": 1.5782752821, + "5993": 1.6549109978, + "5994": 1.7315467135, + "5995": 1.8091068148, + "5996": 1.8866669161, + "5997": 1.9648453086, + "5998": 2.0430237012, + "5999": 2.1215118506, + "6000": 2.2 + }, + "pressure_in": { + "0": 880.0000004098, + "1": 897.4128112586, + "2": 917.4321364123, + "3": 939.4787358872, + "4": 963.1399655388, + "5": 987.9943078132, + "6": 1013.924088351, + "7": 1040.5369698698, + "8": 1067.8531057699, + "9": 1095.478275358, + "10": 1123.5437457402, + "11": 1151.6353839957, + "12": 1179.9788572408, + "13": 1208.1284536092, + "14": 1236.3923668127, + "15": 1264.2860009399, + "16": 1292.1913774847, + "17": 1319.580752281, + "18": 1346.9033681272, + "19": 1373.5862063406, + "20": 1400.1404835498, + "21": 1425.9472998112, + "22": 1451.5754603799, + "23": 1476.3606720781, + "24": 1500.9254705578, + "25": 1524.5614592076, + "26": 1547.9413477724, + "27": 1570.3145243454, + "28": 1592.4004686869, + "29": 1613.4086974589, + "30": 1634.1021104469, + "31": 1653.653051118, + "32": 1672.8644805702, + "33": 1690.8745482732, + "34": 1708.5228706479, + "35": 1724.9166087983, + "36": 1740.9285593383, + "37": 1755.6382852772, + "38": 1769.948208808, + "39": 1782.9138365159, + "40": 1795.463579709, + "41": 1806.6325541074, + "42": 1817.371445001, + "43": 1826.6987430044, + "44": 1835.5836206346, + "45": 1843.0317882146, + "46": 1850.0270568703, + "47": 1855.5662610455, + "48": 1860.6439516464, + "49": 1864.2520329209, + "50": 1867.3918594953, + "51": 1869.054374816, + "52": 1870.2437778286, + "53": 1869.9540272631, + "54": 1869.1881981516, + "55": 1866.9472306678, + "56": 1864.2291137637, + "57": 1860.0457090098, + "58": 1855.3859782949, + "59": 1849.2766023556, + "60": 1842.6936114169, + "61": 1834.6823452911, + "62": 1826.2020494903, + "63": 1816.3204895988, + "64": 1805.9763399602, + "65": 1794.2634704133, + "66": 1782.0962791019, + "67": 1768.5983157781, + "68": 1754.6560933248, + "69": 1739.4263000678, + "70": 1723.7640647297, + "71": 1706.8625421798, + "72": 1689.5421020158, + "73": 1671.0355497654, + "74": 1652.125258167, + "75": 1632.0867110817, + "76": 1611.6611966456, + "77": 1590.1697363251, + "78": 1568.3096080769, + "79": 1545.4500505486, + "80": 1522.2415796453, + "81": 1498.1041404933, + "82": 1473.6389196332, + "83": 1448.3188578625, + "84": 1422.6934397319, + "85": 1396.2906817586, + "86": 1369.6061979283, + "87": 1342.2249431715, + "88": 1314.5867049393, + "89": 1286.3350145629, + "90": 1257.8520973136, + "91": 1228.8414677377, + "92": 1199.6262804546, + "93": 1169.9712033158, + "94": 1140.1390449425, + "95": 1109.956555238, + "96": 1079.6251596384, + "97": 1049.034373836, + "98": 1018.3234451465, + "99": 987.4450910817, + "100": 956.4758312905, + "101": 925.4317717058, + "102": 894.3264023214, + "103": 863.2391539278, + "104": 832.1204336245, + "105": 801.1126835826, + "106": 770.1034237272, + "107": 739.297545456, + "108": 708.5201254268, + "109": 678.0376956508, + "110": 647.6135798614, + "111": 617.5748988028, + "112": 587.624157337, + "113": 558.1477739452, + "114": 528.7886086952, + "115": 499.990852788, + "116": 471.3391309654, + "117": 443.3336541283, + "118": 415.5024509888, + "119": 388.3997780439, + "120": 361.4989306311, + "121": 335.4060234463, + "122": 309.5416971148, + "123": 284.5615324738, + "124": 259.8358019032, + "125": 236.0669651033, + "126": 212.577411456, + "127": 190.1137072369, + "128": 167.9530330497, + "129": 146.8831153894, + "130": 126.1387787189, + "131": 106.5458009563, + "132": 87.2996702223, + "133": 69.2609568894, + "134": 51.5889877771, + "135": 35.1757294344, + "136": 19.1476651322, + "137": 4.4246374118, + "138": -9.8962666329, + "139": -22.8709586669, + "140": -35.4281843886, + "141": -46.6033355543, + "142": -57.3473253197, + "143": -66.6788324009, + "144": -75.5671845911, + "145": -83.0182203925, + "146": -90.015856742, + "147": -95.5570154294, + "148": -100.6363194645, + "149": -104.245732616, + "150": -107.3866586441, + "151": -109.050081555, + "152": -110.2402337761, + "153": -109.9511016762, + "154": -109.1857831031, + "155": -106.9452370647, + "156": -104.2274680602, + "157": -100.0443504948, + "158": -95.3848568516, + "159": -89.2756766132, + "160": -82.692847224, + "161": -74.681714456, + "162": -66.2015287409, + "163": -56.3200597244, + "164": -45.9759851023, + "165": -34.263177481, + "166": -22.0960372886, + "167": -8.5981161632, + "168": 5.3440714558, + "169": 20.5738359572, + "170": 36.2360475578, + "171": 53.1375505126, + "172": 70.4579745011, + "173": 88.9645133987, + "174": 107.8747939744, + "175": 127.9133319606, + "176": 148.3388388855, + "177": 169.8302930056, + "178": 191.6904161353, + "179": 214.5499694384, + "180": 237.7584368538, + "181": 261.8958731266, + "182": 286.3610916099, + "183": 311.6811514186, + "184": 337.3065679295, + "185": 363.7093245659, + "186": 390.3938072925, + "187": 417.7750611383, + "188": 445.4132986183, + "189": 473.6649883739, + "190": 502.1479051107, + "191": 531.1585342635, + "192": 560.3737211974, + "193": 590.028798048, + "194": 619.8609561832, + "195": 650.0434456913, + "196": 680.3748411287, + "197": 710.9656267973, + "198": 741.6765553762, + "199": 772.5549093498, + "200": 803.5241690657, + "201": 834.5682285882, + "202": 865.6735979214, + "203": 896.7608462725, + "204": 927.879566541, + "205": 958.8873165539, + "206": 989.8965763855, + "207": 1020.7024546371, + "208": 1051.47987465, + "209": 1081.9623044126, + "210": 1112.386420191, + "211": 1142.4251012404, + "212": 1172.3758426987, + "213": 1201.8522260843, + "214": 1231.2113913291, + "215": 1260.0091472321, + "216": 1288.6608690512, + "217": 1316.6663458854, + "218": 1344.4975490225, + "219": 1371.6002219654, + "220": 1398.5010693766, + "221": 1424.59397656, + "222": 1450.4583028904, + "223": 1475.4384675306, + "224": 1500.1641981003, + "225": 1523.9330348997, + "226": 1547.4225885464, + "227": 1569.8862927651, + "228": 1592.0469669519, + "229": 1613.116884612, + "230": 1633.8612212822, + "231": 1653.4541990446, + "232": 1672.7003297785, + "233": 1690.7390431112, + "234": 1708.4110122234, + "235": 1724.8242705661, + "236": 1740.8523348682, + "237": 1755.5753625885, + "238": 1769.8962666332, + "239": 1782.8709586671, + "240": 1795.4281843887, + "241": 1806.6033355544, + "242": 1817.3473253199, + "243": 1826.678832401, + "244": 1835.5671845912, + "245": 1843.0182203926, + "246": 1850.0158567421, + "247": 1855.5570154295, + "248": 1860.6363194645, + "249": 1864.245732616, + "250": 1867.3866586441, + "251": 1869.0500815551, + "252": 1870.2402337761, + "253": 1869.9511016762, + "254": 1869.1857831031, + "255": 1866.9452370647, + "256": 1864.2274680602, + "257": 1860.0443504948, + "258": 1855.3848568516, + "259": 1849.2756766132, + "260": 1842.692847224, + "261": 1834.681714456, + "262": 1826.201528741, + "263": 1816.3200597244, + "264": 1805.9759851023, + "265": 1794.263177481, + "266": 1782.0960372886, + "267": 1768.5981161632, + "268": 1754.6559285442, + "269": 1739.4261640428, + "270": 1723.7639524422, + "271": 1706.8624494874, + "272": 1689.5420254989, + "273": 1671.0354866013, + "274": 1652.1252060256, + "275": 1632.0866680394, + "276": 1611.6611611145, + "277": 1590.1697069944, + "278": 1568.3095838647, + "279": 1545.4500305616, + "280": 1522.2415631462, + "281": 1498.1041268734, + "282": 1473.6389083901, + "283": 1448.3188485814, + "284": 1422.6934320705, + "285": 1396.2906754341, + "286": 1369.6061927075, + "287": 1342.2249388617, + "288": 1314.5867013817, + "289": 1286.3350116261, + "290": 1257.8520948893, + "291": 1228.8414657365, + "292": 1199.6262788026, + "293": 1169.971201952, + "294": 1140.1390438168, + "295": 1109.9565543087, + "296": 1079.6251588713, + "297": 1049.0343732027, + "298": 1018.3234446238, + "299": 987.4450906502, + "300": 956.4758309343, + "301": 925.4317714118, + "302": 894.3264020786, + "303": 863.2391537275, + "304": 832.120433459, + "305": 801.1126834461, + "306": 770.1034236145, + "307": 739.2975453629, + "308": 708.52012535, + "309": 678.0376955874, + "310": 647.613579809, + "311": 617.5748987596, + "312": 587.6241573013, + "313": 558.1477739157, + "314": 528.7886086709, + "315": 499.9908527679, + "316": 471.3391309488, + "317": 443.3336541146, + "318": 415.5024509775, + "319": 388.3997780346, + "320": 361.4989306234, + "321": 335.40602344, + "322": 309.5416971096, + "323": 284.5615324694, + "324": 259.8358018997, + "325": 236.0669651003, + "326": 212.5774114536, + "327": 190.1137072349, + "328": 167.9530330481, + "329": 146.883115388, + "330": 126.1387787178, + "331": 106.5458009554, + "332": 87.2996702215, + "333": 69.2609568888, + "334": 51.5889877766, + "335": 35.1757294339, + "336": 19.1476651318, + "337": 4.4246374115, + "338": -9.8962666332, + "339": -22.8709586671, + "340": -35.4281843887, + "341": -46.6033355544, + "342": -57.3473253199, + "343": -66.678832401, + "344": -75.5671845912, + "345": -83.0182203926, + "346": -90.0158567421, + "347": -95.5570154295, + "348": -100.6363194645, + "349": -104.245732616, + "350": -107.3866586441, + "351": -109.0500815551, + "352": -110.2402337761, + "353": -109.9511016762, + "354": -109.1857831031, + "355": -106.9452370647, + "356": -104.2274680602, + "357": -100.0443504948, + "358": -95.3848568516, + "359": -89.2756766132, + "360": -82.692847224, + "361": -74.681714456, + "362": -66.201528741, + "363": -56.3200597244, + "364": -45.9759851023, + "365": -34.263177481, + "366": -22.0960372886, + "367": -8.5981161632, + "368": 5.3440714558, + "369": 20.5738359572, + "370": 36.2360475578, + "371": 53.1375505127, + "372": 70.4579745011, + "373": 88.9645133987, + "374": 107.8747939744, + "375": 127.9133319606, + "376": 148.3388388855, + "377": 169.8302930056, + "378": 191.6904161353, + "379": 214.5499694384, + "380": 237.7584368538, + "381": 261.8958731266, + "382": 286.3610916099, + "383": 311.6811514186, + "384": 337.3065679295, + "385": 363.7093245659, + "386": 390.3938072925, + "387": 417.7750611383, + "388": 445.4132986183, + "389": 473.6649883739, + "390": 502.1479051107, + "391": 531.1585342635, + "392": 560.3737211974, + "393": 590.028798048, + "394": 619.8609561832, + "395": 650.0434456913, + "396": 680.3748411287, + "397": 710.9656267973, + "398": 741.6765553762, + "399": 772.5549093498, + "400": 803.5241690657, + "401": 834.5682285882, + "402": 865.6735979214, + "403": 896.7608462725, + "404": 927.879566541, + "405": 958.8873165539, + "406": 989.8965763855, + "407": 1020.7024546371, + "408": 1051.47987465, + "409": 1081.9623044126, + "410": 1112.386420191, + "411": 1142.4251012404, + "412": 1172.3758426987, + "413": 1201.8522260843, + "414": 1231.2113913291, + "415": 1260.0091472321, + "416": 1288.6608690512, + "417": 1316.6663458854, + "418": 1344.4975490225, + "419": 1371.6002219654, + "420": 1398.5010693766, + "421": 1424.59397656, + "422": 1450.4583028904, + "423": 1475.4384675306, + "424": 1500.1641981003, + "425": 1523.9330348997, + "426": 1547.4225885464, + "427": 1569.8862927651, + "428": 1592.0469669519, + "429": 1613.116884612, + "430": 1633.8612212822, + "431": 1653.4541990446, + "432": 1672.7003297785, + "433": 1690.7390431112, + "434": 1708.4110122234, + "435": 1724.8242705661, + "436": 1740.8523348682, + "437": 1755.5753625885, + "438": 1769.8962666332, + "439": 1782.8709586671, + "440": 1795.4281843887, + "441": 1806.6033355544, + "442": 1817.3473253199, + "443": 1826.678832401, + "444": 1835.5671845912, + "445": 1843.0182203926, + "446": 1850.0158567421, + "447": 1855.5570154295, + "448": 1860.6363194645, + "449": 1864.245732616, + "450": 1867.3866586441, + "451": 1869.0500815551, + "452": 1870.2402337761, + "453": 1869.9511016762, + "454": 1869.1857831031, + "455": 1866.9452370647, + "456": 1864.2274680602, + "457": 1860.0443504948, + "458": 1855.3848568516, + "459": 1849.2756766132, + "460": 1842.692847224, + "461": 1834.681714456, + "462": 1826.201528741, + "463": 1816.3200597244, + "464": 1805.9759851023, + "465": 1794.263177481, + "466": 1782.0960372886, + "467": 1768.5981161632, + "468": 1754.6559285442, + "469": 1739.4261640428, + "470": 1723.7639524422, + "471": 1706.8624494874, + "472": 1689.5420254989, + "473": 1671.0354866013, + "474": 1652.1252060256, + "475": 1632.0866680394, + "476": 1611.6611611145, + "477": 1590.1697069944, + "478": 1568.3095838647, + "479": 1545.4500305616, + "480": 1522.2415631462, + "481": 1498.1041268734, + "482": 1473.6389083901, + "483": 1448.3188485814, + "484": 1422.6934320705, + "485": 1396.2906754341, + "486": 1369.6061927075, + "487": 1342.2249388617, + "488": 1314.5867013817, + "489": 1286.3350116261, + "490": 1257.8520948893, + "491": 1228.8414657365, + "492": 1199.6262788026, + "493": 1169.971201952, + "494": 1140.1390438168, + "495": 1109.9565543087, + "496": 1079.6251588713, + "497": 1049.0343732027, + "498": 1018.3234446238, + "499": 987.4450906502, + "500": 956.4758309343, + "501": 925.4317714118, + "502": 894.3264020786, + "503": 863.2391537275, + "504": 832.120433459, + "505": 801.1126834461, + "506": 770.1034236145, + "507": 739.2975453629, + "508": 708.52012535, + "509": 678.0376955874, + "510": 647.613579809, + "511": 617.5748987596, + "512": 587.6241573013, + "513": 558.1477739157, + "514": 528.7886086709, + "515": 499.9908527679, + "516": 471.3391309488, + "517": 443.3336541146, + "518": 415.5024509775, + "519": 388.3997780346, + "520": 361.4989306234, + "521": 335.40602344, + "522": 309.5416971096, + "523": 284.5615324694, + "524": 259.8358018997, + "525": 236.0669651003, + "526": 212.5774114536, + "527": 190.1137072349, + "528": 167.9530330481, + "529": 146.883115388, + "530": 126.1387787178, + "531": 106.5458009554, + "532": 87.2996702215, + "533": 69.2609568888, + "534": 51.5889877766, + "535": 35.1757294339, + "536": 19.1476651318, + "537": 4.4246374115, + "538": -9.8962666332, + "539": -22.8709586671, + "540": -35.4281843887, + "541": -46.6033355544, + "542": -57.3473253199, + "543": -66.678832401, + "544": -75.5671845912, + "545": -83.0182203926, + "546": -90.0158567421, + "547": -95.5570154295, + "548": -100.6363194645, + "549": -104.245732616, + "550": -107.3866586441, + "551": -109.0500815551, + "552": -110.2402337761, + "553": -109.9511016762, + "554": -109.1857831031, + "555": -106.9452370647, + "556": -104.2274680602, + "557": -100.0443504948, + "558": -95.3848568516, + "559": -89.2756766132, + "560": -82.692847224, + "561": -74.681714456, + "562": -66.201528741, + "563": -56.3200597244, + "564": -45.9759851023, + "565": -34.263177481, + "566": -22.0960372886, + "567": -8.5981161632, + "568": 5.3440714558, + "569": 20.5738359572, + "570": 36.2360475578, + "571": 53.1375505126, + "572": 70.4579745011, + "573": 88.9645133987, + "574": 107.8747939744, + "575": 127.9133319606, + "576": 148.3388388855, + "577": 169.8302930056, + "578": 191.6904161353, + "579": 214.5499694384, + "580": 237.7584368538, + "581": 261.8958731266, + "582": 286.3610916099, + "583": 311.6811514186, + "584": 337.3065679295, + "585": 363.7093245659, + "586": 390.3938072925, + "587": 417.7750611383, + "588": 445.4132986183, + "589": 473.6649883739, + "590": 502.1479051107, + "591": 531.1585342635, + "592": 560.3737211974, + "593": 590.028798048, + "594": 619.8609561832, + "595": 650.0434456913, + "596": 680.3748411287, + "597": 710.9656267973, + "598": 741.6765553762, + "599": 772.5549093498, + "600": 803.5241690657, + "601": 834.5682285882, + "602": 865.6735979214, + "603": 896.7608462725, + "604": 927.879566541, + "605": 958.8873165539, + "606": 989.8965763855, + "607": 1020.7024546371, + "608": 1051.47987465, + "609": 1081.9623044126, + "610": 1112.386420191, + "611": 1142.4251012404, + "612": 1172.3758426987, + "613": 1201.8522260843, + "614": 1231.2113913291, + "615": 1260.0091472321, + "616": 1288.6608690512, + "617": 1316.6663458854, + "618": 1344.4975490225, + "619": 1371.6002219654, + "620": 1398.5010693766, + "621": 1424.59397656, + "622": 1450.4583028904, + "623": 1475.4384675306, + "624": 1500.1641981003, + "625": 1523.9330348997, + "626": 1547.4225885464, + "627": 1569.8862927651, + "628": 1592.0469669519, + "629": 1613.116884612, + "630": 1633.8612212822, + "631": 1653.4541990446, + "632": 1672.7003297785, + "633": 1690.7390431112, + "634": 1708.4110122234, + "635": 1724.8242705661, + "636": 1740.8523348682, + "637": 1755.5753625885, + "638": 1769.8962666332, + "639": 1782.8709586671, + "640": 1795.4281843887, + "641": 1806.6033355544, + "642": 1817.3473253199, + "643": 1826.678832401, + "644": 1835.5671845912, + "645": 1843.0182203926, + "646": 1850.0158567421, + "647": 1855.5570154295, + "648": 1860.6363194645, + "649": 1864.245732616, + "650": 1867.3866586441, + "651": 1869.0500815551, + "652": 1870.2402337761, + "653": 1869.9511016762, + "654": 1869.1857831031, + "655": 1866.9452370647, + "656": 1864.2274680602, + "657": 1860.0443504948, + "658": 1855.3848568516, + "659": 1849.2756766132, + "660": 1842.692847224, + "661": 1834.681714456, + "662": 1826.201528741, + "663": 1816.3200597244, + "664": 1805.9759851023, + "665": 1794.263177481, + "666": 1782.0960372886, + "667": 1768.5981161632, + "668": 1754.6559285442, + "669": 1739.4261640428, + "670": 1723.7639524422, + "671": 1706.8624494874, + "672": 1689.5420254989, + "673": 1671.0354866013, + "674": 1652.1252060256, + "675": 1632.0866680394, + "676": 1611.6611611145, + "677": 1590.1697069944, + "678": 1568.3095838647, + "679": 1545.4500305616, + "680": 1522.2415631462, + "681": 1498.1041268734, + "682": 1473.6389083901, + "683": 1448.3188485814, + "684": 1422.6934320705, + "685": 1396.2906754341, + "686": 1369.6061927075, + "687": 1342.2249388617, + "688": 1314.5867013817, + "689": 1286.3350116261, + "690": 1257.8520948893, + "691": 1228.8414657365, + "692": 1199.6262788026, + "693": 1169.971201952, + "694": 1140.1390438168, + "695": 1109.9565543087, + "696": 1079.6251588713, + "697": 1049.0343732027, + "698": 1018.3234446238, + "699": 987.4450906502, + "700": 956.4758309343, + "701": 925.4317714118, + "702": 894.3264020786, + "703": 863.2391537275, + "704": 832.120433459, + "705": 801.1126834461, + "706": 770.1034236145, + "707": 739.2975453629, + "708": 708.52012535, + "709": 678.0376955874, + "710": 647.613579809, + "711": 617.5748987596, + "712": 587.6241573013, + "713": 558.1477739157, + "714": 528.7886086709, + "715": 499.9908527679, + "716": 471.3391309488, + "717": 443.3336541146, + "718": 415.5024509775, + "719": 388.3997780346, + "720": 361.4989306234, + "721": 335.40602344, + "722": 309.5416971096, + "723": 284.5615324694, + "724": 259.8358018997, + "725": 236.0669651003, + "726": 212.5774114536, + "727": 190.1137072349, + "728": 167.9530330481, + "729": 146.883115388, + "730": 126.1387787178, + "731": 106.5458009554, + "732": 87.2996702215, + "733": 69.2609568888, + "734": 51.5889877766, + "735": 35.1757294339, + "736": 19.1476651318, + "737": 4.4246374115, + "738": -9.8962666332, + "739": -22.8709586671, + "740": -35.4281843887, + "741": -46.6033355544, + "742": -57.3473253199, + "743": -66.678832401, + "744": -75.5671845912, + "745": -83.0182203926, + "746": -90.0158567421, + "747": -95.5570154295, + "748": -100.6363194645, + "749": -104.245732616, + "750": -107.3866586441, + "751": -109.0500815551, + "752": -110.2402337761, + "753": -109.9511016762, + "754": -109.1857831031, + "755": -106.9452370647, + "756": -104.2274680602, + "757": -100.0443504948, + "758": -95.3848568516, + "759": -89.2756766132, + "760": -82.692847224, + "761": -74.681714456, + "762": -66.201528741, + "763": -56.3200597244, + "764": -45.9759851023, + "765": -34.263177481, + "766": -22.0960372886, + "767": -8.5981161632, + "768": 5.3440714558, + "769": 20.5738359572, + "770": 36.2360475578, + "771": 53.1375505126, + "772": 70.4579745011, + "773": 88.9645133987, + "774": 107.8747939744, + "775": 127.9133319606, + "776": 148.3388388855, + "777": 169.8302930056, + "778": 191.6904161353, + "779": 214.5499694384, + "780": 237.7584368538, + "781": 261.8958731266, + "782": 286.3610916099, + "783": 311.6811514186, + "784": 337.3065679295, + "785": 363.7093245659, + "786": 390.3938072925, + "787": 417.7750611383, + "788": 445.4132986183, + "789": 473.6649883739, + "790": 502.1479051107, + "791": 531.1585342635, + "792": 560.3737211974, + "793": 590.028798048, + "794": 619.8609561832, + "795": 650.0434456913, + "796": 680.3748411287, + "797": 710.9656267973, + "798": 741.6765553762, + "799": 772.5549093498, + "800": 803.5241690657, + "801": 834.5682285882, + "802": 865.6735979214, + "803": 896.7608462725, + "804": 927.8795665409, + "805": 958.8873165539, + "806": 989.8965763855, + "807": 1020.7024546371, + "808": 1051.47987465, + "809": 1081.9623044126, + "810": 1112.386420191, + "811": 1142.4251012404, + "812": 1172.3758426987, + "813": 1201.8522260843, + "814": 1231.2113913291, + "815": 1260.0091472321, + "816": 1288.6608690512, + "817": 1316.6663458854, + "818": 1344.4975490225, + "819": 1371.6002219654, + "820": 1398.5010693765, + "821": 1424.59397656, + "822": 1450.4583028904, + "823": 1475.4384675305, + "824": 1500.1641981003, + "825": 1523.9330348997, + "826": 1547.4225885464, + "827": 1569.8862927651, + "828": 1592.0469669519, + "829": 1613.116884612, + "830": 1633.8612212822, + "831": 1653.4541990446, + "832": 1672.7003297785, + "833": 1690.7390431112, + "834": 1708.4110122234, + "835": 1724.8242705661, + "836": 1740.8523348682, + "837": 1755.5753625885, + "838": 1769.8962666332, + "839": 1782.8709586671, + "840": 1795.4281843887, + "841": 1806.6033355544, + "842": 1817.3473253199, + "843": 1826.678832401, + "844": 1835.5671845912, + "845": 1843.0182203926, + "846": 1850.0158567421, + "847": 1855.5570154295, + "848": 1860.6363194645, + "849": 1864.245732616, + "850": 1867.3866586441, + "851": 1869.0500815551, + "852": 1870.2402337761, + "853": 1869.9511016762, + "854": 1869.1857831031, + "855": 1866.9452370647, + "856": 1864.2274680602, + "857": 1860.0443504948, + "858": 1855.3848568516, + "859": 1849.2756766132, + "860": 1842.692847224, + "861": 1834.681714456, + "862": 1826.201528741, + "863": 1816.3200597244, + "864": 1805.9759851023, + "865": 1794.263177481, + "866": 1782.0960372886, + "867": 1768.5981161632, + "868": 1754.6559285442, + "869": 1739.4261640428, + "870": 1723.7639524422, + "871": 1706.8624494873, + "872": 1689.5420254989, + "873": 1671.0354866013, + "874": 1652.1252060256, + "875": 1632.0866680394, + "876": 1611.6611611145, + "877": 1590.1697069944, + "878": 1568.3095838647, + "879": 1545.4500305616, + "880": 1522.2415631462, + "881": 1498.1041268734, + "882": 1473.6389083901, + "883": 1448.3188485814, + "884": 1422.6934320705, + "885": 1396.2906754341, + "886": 1369.6061927075, + "887": 1342.2249388617, + "888": 1314.5867013817, + "889": 1286.3350116261, + "890": 1257.8520948893, + "891": 1228.8414657365, + "892": 1199.6262788026, + "893": 1169.971201952, + "894": 1140.1390438168, + "895": 1109.9565543087, + "896": 1079.6251588713, + "897": 1049.0343732027, + "898": 1018.3234446238, + "899": 987.4450906502, + "900": 956.4758309343, + "901": 925.4317714118, + "902": 894.3264020786, + "903": 863.2391537275, + "904": 832.1204334591, + "905": 801.1126834461, + "906": 770.1034236145, + "907": 739.2975453629, + "908": 708.52012535, + "909": 678.0376955874, + "910": 647.613579809, + "911": 617.5748987596, + "912": 587.6241573013, + "913": 558.1477739157, + "914": 528.7886086709, + "915": 499.9908527679, + "916": 471.3391309488, + "917": 443.3336541146, + "918": 415.5024509775, + "919": 388.3997780346, + "920": 361.4989306235, + "921": 335.40602344, + "922": 309.5416971096, + "923": 284.5615324694, + "924": 259.8358018997, + "925": 236.0669651003, + "926": 212.5774114536, + "927": 190.1137072349, + "928": 167.9530330481, + "929": 146.883115388, + "930": 126.1387787178, + "931": 106.5458009554, + "932": 87.2996702215, + "933": 69.2609568888, + "934": 51.5889877766, + "935": 35.1757294339, + "936": 19.1476651318, + "937": 4.4246374115, + "938": -9.8962666332, + "939": -22.8709586671, + "940": -35.4281843887, + "941": -46.6033355544, + "942": -57.3473253199, + "943": -66.678832401, + "944": -75.5671845912, + "945": -83.0182203926, + "946": -90.0158567421, + "947": -95.5570154295, + "948": -100.6363194645, + "949": -104.245732616, + "950": -107.3866586441, + "951": -109.0500815551, + "952": -110.2402337761, + "953": -109.9511016762, + "954": -109.1857831031, + "955": -106.9452370647, + "956": -104.2274680602, + "957": -100.0443504948, + "958": -95.3848568516, + "959": -89.2756766132, + "960": -82.692847224, + "961": -74.681714456, + "962": -66.201528741, + "963": -56.3200597244, + "964": -45.9759851023, + "965": -34.263177481, + "966": -22.0960372886, + "967": -8.5981161632, + "968": 5.3440714558, + "969": 20.5738359572, + "970": 36.2360475578, + "971": 53.1375505127, + "972": 70.4579745011, + "973": 88.9645133987, + "974": 107.8747939744, + "975": 127.9133319606, + "976": 148.3388388855, + "977": 169.8302930056, + "978": 191.6904161353, + "979": 214.5499694384, + "980": 237.7584368538, + "981": 261.8958731266, + "982": 286.3610916099, + "983": 311.6811514186, + "984": 337.3065679295, + "985": 363.7093245659, + "986": 390.3938072925, + "987": 417.7750611383, + "988": 445.4132986183, + "989": 473.6649883739, + "990": 502.1479051107, + "991": 531.1585342635, + "992": 560.3737211974, + "993": 590.028798048, + "994": 619.8609561832, + "995": 650.0434456913, + "996": 680.3748411287, + "997": 710.9656267973, + "998": 741.6765553762, + "999": 772.5549093498, + "1000": 803.5241690657, + "1001": 834.5682285882, + "1002": 865.6735979214, + "1003": 896.7608462725, + "1004": 927.8795665409, + "1005": 958.8873165539, + "1006": 989.8965763855, + "1007": 1020.7024546371, + "1008": 1051.47987465, + "1009": 1081.9623044126, + "1010": 1112.386420191, + "1011": 1142.4251012404, + "1012": 1172.3758426987, + "1013": 1201.8522260843, + "1014": 1231.2113913291, + "1015": 1260.0091472321, + "1016": 1288.6608690512, + "1017": 1316.6663458854, + "1018": 1344.4975490225, + "1019": 1371.6002219654, + "1020": 1398.5010693765, + "1021": 1424.59397656, + "1022": 1450.4583028904, + "1023": 1475.4384675306, + "1024": 1500.1641981003, + "1025": 1523.9330348997, + "1026": 1547.4225885464, + "1027": 1569.8862927651, + "1028": 1592.0469669519, + "1029": 1613.116884612, + "1030": 1633.8612212822, + "1031": 1653.4541990446, + "1032": 1672.7003297785, + "1033": 1690.7390431112, + "1034": 1708.4110122234, + "1035": 1724.8242705661, + "1036": 1740.8523348682, + "1037": 1755.5753625885, + "1038": 1769.8962666332, + "1039": 1782.8709586671, + "1040": 1795.4281843887, + "1041": 1806.6033355544, + "1042": 1817.3473253199, + "1043": 1826.678832401, + "1044": 1835.5671845912, + "1045": 1843.0182203926, + "1046": 1850.0158567421, + "1047": 1855.5570154295, + "1048": 1860.6363194645, + "1049": 1864.245732616, + "1050": 1867.3866586441, + "1051": 1869.0500815551, + "1052": 1870.2402337761, + "1053": 1869.9511016762, + "1054": 1869.1857831031, + "1055": 1866.9452370647, + "1056": 1864.2274680602, + "1057": 1860.0443504948, + "1058": 1855.3848568516, + "1059": 1849.2756766132, + "1060": 1842.692847224, + "1061": 1834.681714456, + "1062": 1826.201528741, + "1063": 1816.3200597244, + "1064": 1805.9759851023, + "1065": 1794.263177481, + "1066": 1782.0960372886, + "1067": 1768.5981161632, + "1068": 1754.6559285442, + "1069": 1739.4261640428, + "1070": 1723.7639524422, + "1071": 1706.8624494873, + "1072": 1689.5420254989, + "1073": 1671.0354866013, + "1074": 1652.1252060256, + "1075": 1632.0866680394, + "1076": 1611.6611611145, + "1077": 1590.1697069944, + "1078": 1568.3095838647, + "1079": 1545.4500305616, + "1080": 1522.2415631462, + "1081": 1498.1041268734, + "1082": 1473.6389083901, + "1083": 1448.3188485814, + "1084": 1422.6934320705, + "1085": 1396.2906754341, + "1086": 1369.6061927075, + "1087": 1342.2249388617, + "1088": 1314.5867013817, + "1089": 1286.3350116261, + "1090": 1257.8520948893, + "1091": 1228.8414657365, + "1092": 1199.6262788026, + "1093": 1169.971201952, + "1094": 1140.1390438168, + "1095": 1109.9565543087, + "1096": 1079.6251588713, + "1097": 1049.0343732027, + "1098": 1018.3234446238, + "1099": 987.4450906502, + "1100": 956.4758309343, + "1101": 925.4317714118, + "1102": 894.3264020786, + "1103": 863.2391537275, + "1104": 832.1204334591, + "1105": 801.1126834461, + "1106": 770.1034236145, + "1107": 739.2975453629, + "1108": 708.52012535, + "1109": 678.0376955874, + "1110": 647.613579809, + "1111": 617.5748987596, + "1112": 587.6241573013, + "1113": 558.1477739157, + "1114": 528.7886086709, + "1115": 499.9908527679, + "1116": 471.3391309488, + "1117": 443.3336541146, + "1118": 415.5024509775, + "1119": 388.3997780346, + "1120": 361.4989306235, + "1121": 335.40602344, + "1122": 309.5416971096, + "1123": 284.5615324694, + "1124": 259.8358018997, + "1125": 236.0669651003, + "1126": 212.5774114536, + "1127": 190.1137072349, + "1128": 167.9530330481, + "1129": 146.883115388, + "1130": 126.1387787178, + "1131": 106.5458009554, + "1132": 87.2996702215, + "1133": 69.2609568888, + "1134": 51.5889877766, + "1135": 35.1757294339, + "1136": 19.1476651318, + "1137": 4.4246374115, + "1138": -9.8962666332, + "1139": -22.8709586671, + "1140": -35.4281843887, + "1141": -46.6033355544, + "1142": -57.3473253199, + "1143": -66.678832401, + "1144": -75.5671845912, + "1145": -83.0182203926, + "1146": -90.0158567421, + "1147": -95.5570154295, + "1148": -100.6363194645, + "1149": -104.245732616, + "1150": -107.3866586441, + "1151": -109.0500815551, + "1152": -110.2402337761, + "1153": -109.9511016762, + "1154": -109.1857831031, + "1155": -106.9452370647, + "1156": -104.2274680602, + "1157": -100.0443504948, + "1158": -95.3848568516, + "1159": -89.2756766132, + "1160": -82.692847224, + "1161": -74.681714456, + "1162": -66.201528741, + "1163": -56.3200597244, + "1164": -45.9759851023, + "1165": -34.263177481, + "1166": -22.0960372886, + "1167": -8.5981161632, + "1168": 5.3440714558, + "1169": 20.5738359572, + "1170": 36.2360475578, + "1171": 53.1375505127, + "1172": 70.4579745011, + "1173": 88.9645133987, + "1174": 107.8747939744, + "1175": 127.9133319606, + "1176": 148.3388388855, + "1177": 169.8302930056, + "1178": 191.6904161353, + "1179": 214.5499694384, + "1180": 237.7584368538, + "1181": 261.8958731266, + "1182": 286.3610916099, + "1183": 311.6811514186, + "1184": 337.3065679295, + "1185": 363.7093245659, + "1186": 390.3938072925, + "1187": 417.7750611383, + "1188": 445.4132986183, + "1189": 473.6649883739, + "1190": 502.1479051107, + "1191": 531.1585342635, + "1192": 560.3737211974, + "1193": 590.028798048, + "1194": 619.8609561832, + "1195": 650.0434456913, + "1196": 680.3748411287, + "1197": 710.9656267973, + "1198": 741.6765553762, + "1199": 772.5549093498, + "1200": 803.5241690657, + "1201": 834.5682285882, + "1202": 865.6735979214, + "1203": 896.7608462725, + "1204": 927.879566541, + "1205": 958.8873165539, + "1206": 989.8965763855, + "1207": 1020.7024546371, + "1208": 1051.47987465, + "1209": 1081.9623044126, + "1210": 1112.386420191, + "1211": 1142.4251012404, + "1212": 1172.3758426987, + "1213": 1201.8522260843, + "1214": 1231.2113913291, + "1215": 1260.0091472321, + "1216": 1288.6608690512, + "1217": 1316.6663458854, + "1218": 1344.4975490225, + "1219": 1371.6002219654, + "1220": 1398.5010693765, + "1221": 1424.59397656, + "1222": 1450.4583028904, + "1223": 1475.4384675306, + "1224": 1500.1641981003, + "1225": 1523.9330348997, + "1226": 1547.4225885464, + "1227": 1569.8862927651, + "1228": 1592.0469669519, + "1229": 1613.116884612, + "1230": 1633.8612212822, + "1231": 1653.4541990446, + "1232": 1672.7003297785, + "1233": 1690.7390431112, + "1234": 1708.4110122234, + "1235": 1724.8242705661, + "1236": 1740.8523348682, + "1237": 1755.5753625885, + "1238": 1769.8962666332, + "1239": 1782.8709586671, + "1240": 1795.4281843887, + "1241": 1806.6033355544, + "1242": 1817.3473253199, + "1243": 1826.678832401, + "1244": 1835.5671845912, + "1245": 1843.0182203926, + "1246": 1850.0158567421, + "1247": 1855.5570154295, + "1248": 1860.6363194645, + "1249": 1864.245732616, + "1250": 1867.3866586441, + "1251": 1869.0500815551, + "1252": 1870.2402337761, + "1253": 1869.9511016762, + "1254": 1869.1857831031, + "1255": 1866.9452370647, + "1256": 1864.2274680602, + "1257": 1860.0443504948, + "1258": 1855.3848568516, + "1259": 1849.2756766132, + "1260": 1842.692847224, + "1261": 1834.681714456, + "1262": 1826.201528741, + "1263": 1816.3200597244, + "1264": 1805.9759851023, + "1265": 1794.263177481, + "1266": 1782.0960372886, + "1267": 1768.5981161632, + "1268": 1754.6559285442, + "1269": 1739.4261640428, + "1270": 1723.7639524422, + "1271": 1706.8624494873, + "1272": 1689.5420254989, + "1273": 1671.0354866013, + "1274": 1652.1252060256, + "1275": 1632.0866680394, + "1276": 1611.6611611145, + "1277": 1590.1697069944, + "1278": 1568.3095838647, + "1279": 1545.4500305616, + "1280": 1522.2415631462, + "1281": 1498.1041268734, + "1282": 1473.6389083901, + "1283": 1448.3188485814, + "1284": 1422.6934320705, + "1285": 1396.2906754341, + "1286": 1369.6061927075, + "1287": 1342.2249388617, + "1288": 1314.5867013817, + "1289": 1286.3350116261, + "1290": 1257.8520948893, + "1291": 1228.8414657365, + "1292": 1199.6262788026, + "1293": 1169.971201952, + "1294": 1140.1390438168, + "1295": 1109.9565543087, + "1296": 1079.6251588713, + "1297": 1049.0343732027, + "1298": 1018.3234446238, + "1299": 987.4450906502, + "1300": 956.4758309343, + "1301": 925.4317714118, + "1302": 894.3264020786, + "1303": 863.2391537275, + "1304": 832.120433459, + "1305": 801.1126834461, + "1306": 770.1034236145, + "1307": 739.2975453629, + "1308": 708.52012535, + "1309": 678.0376955874, + "1310": 647.613579809, + "1311": 617.5748987596, + "1312": 587.6241573013, + "1313": 558.1477739157, + "1314": 528.7886086709, + "1315": 499.9908527679, + "1316": 471.3391309488, + "1317": 443.3336541146, + "1318": 415.5024509775, + "1319": 388.3997780346, + "1320": 361.4989306235, + "1321": 335.40602344, + "1322": 309.5416971096, + "1323": 284.5615324694, + "1324": 259.8358018997, + "1325": 236.0669651003, + "1326": 212.5774114536, + "1327": 190.1137072349, + "1328": 167.9530330481, + "1329": 146.883115388, + "1330": 126.1387787178, + "1331": 106.5458009554, + "1332": 87.2996702215, + "1333": 69.2609568888, + "1334": 51.5889877766, + "1335": 35.1757294339, + "1336": 19.1476651318, + "1337": 4.4246374115, + "1338": -9.8962666332, + "1339": -22.8709586671, + "1340": -35.4281843887, + "1341": -46.6033355544, + "1342": -57.3473253199, + "1343": -66.678832401, + "1344": -75.5671845912, + "1345": -83.0182203926, + "1346": -90.0158567421, + "1347": -95.5570154295, + "1348": -100.6363194645, + "1349": -104.245732616, + "1350": -107.3866586441, + "1351": -109.0500815551, + "1352": -110.2402337761, + "1353": -109.9511016762, + "1354": -109.1857831031, + "1355": -106.9452370647, + "1356": -104.2274680602, + "1357": -100.0443504948, + "1358": -95.3848568516, + "1359": -89.2756766132, + "1360": -82.692847224, + "1361": -74.681714456, + "1362": -66.201528741, + "1363": -56.3200597244, + "1364": -45.9759851023, + "1365": -34.263177481, + "1366": -22.0960372886, + "1367": -8.5981161632, + "1368": 5.3440714558, + "1369": 20.5738359572, + "1370": 36.2360475578, + "1371": 53.1375505127, + "1372": 70.4579745011, + "1373": 88.9645133987, + "1374": 107.8747939744, + "1375": 127.9133319606, + "1376": 148.3388388855, + "1377": 169.8302930056, + "1378": 191.6904161353, + "1379": 214.5499694384, + "1380": 237.7584368538, + "1381": 261.8958731266, + "1382": 286.3610916099, + "1383": 311.6811514186, + "1384": 337.3065679295, + "1385": 363.7093245659, + "1386": 390.3938072925, + "1387": 417.7750611383, + "1388": 445.4132986183, + "1389": 473.6649883739, + "1390": 502.1479051107, + "1391": 531.1585342635, + "1392": 560.3737211974, + "1393": 590.028798048, + "1394": 619.8609561832, + "1395": 650.0434456913, + "1396": 680.3748411287, + "1397": 710.9656267973, + "1398": 741.6765553762, + "1399": 772.5549093498, + "1400": 803.5241690657, + "1401": 834.5682285882, + "1402": 865.6735979214, + "1403": 896.7608462725, + "1404": 927.879566541, + "1405": 958.8873165539, + "1406": 989.8965763855, + "1407": 1020.7024546371, + "1408": 1051.47987465, + "1409": 1081.9623044126, + "1410": 1112.386420191, + "1411": 1142.4251012404, + "1412": 1172.3758426987, + "1413": 1201.8522260843, + "1414": 1231.2113913291, + "1415": 1260.0091472321, + "1416": 1288.6608690512, + "1417": 1316.6663458854, + "1418": 1344.4975490225, + "1419": 1371.6002219654, + "1420": 1398.5010693765, + "1421": 1424.59397656, + "1422": 1450.4583028904, + "1423": 1475.4384675306, + "1424": 1500.1641981003, + "1425": 1523.9330348997, + "1426": 1547.4225885464, + "1427": 1569.8862927651, + "1428": 1592.0469669519, + "1429": 1613.116884612, + "1430": 1633.8612212822, + "1431": 1653.4541990446, + "1432": 1672.7003297785, + "1433": 1690.7390431112, + "1434": 1708.4110122234, + "1435": 1724.8242705661, + "1436": 1740.8523348682, + "1437": 1755.5753625885, + "1438": 1769.8962666332, + "1439": 1782.8709586671, + "1440": 1795.4281843887, + "1441": 1806.6033355544, + "1442": 1817.3473253199, + "1443": 1826.678832401, + "1444": 1835.5671845912, + "1445": 1843.0182203926, + "1446": 1850.0158567421, + "1447": 1855.5570154295, + "1448": 1860.6363194645, + "1449": 1864.245732616, + "1450": 1867.3866586441, + "1451": 1869.0500815551, + "1452": 1870.2402337761, + "1453": 1869.9511016762, + "1454": 1869.1857831031, + "1455": 1866.9452370647, + "1456": 1864.2274680602, + "1457": 1860.0443504948, + "1458": 1855.3848568516, + "1459": 1849.2756766132, + "1460": 1842.692847224, + "1461": 1834.681714456, + "1462": 1826.201528741, + "1463": 1816.3200597244, + "1464": 1805.9759851023, + "1465": 1794.263177481, + "1466": 1782.0960372886, + "1467": 1768.5981161632, + "1468": 1754.6559285442, + "1469": 1739.4261640428, + "1470": 1723.7639524422, + "1471": 1706.8624494873, + "1472": 1689.5420254989, + "1473": 1671.0354866013, + "1474": 1652.1252060256, + "1475": 1632.0866680394, + "1476": 1611.6611611145, + "1477": 1590.1697069944, + "1478": 1568.3095838647, + "1479": 1545.4500305616, + "1480": 1522.2415631462, + "1481": 1498.1041268734, + "1482": 1473.6389083901, + "1483": 1448.3188485814, + "1484": 1422.6934320705, + "1485": 1396.2906754341, + "1486": 1369.6061927075, + "1487": 1342.2249388617, + "1488": 1314.5867013817, + "1489": 1286.3350116261, + "1490": 1257.8520948893, + "1491": 1228.8414657365, + "1492": 1199.6262788026, + "1493": 1169.971201952, + "1494": 1140.1390438168, + "1495": 1109.9565543087, + "1496": 1079.6251588713, + "1497": 1049.0343732027, + "1498": 1018.3234446238, + "1499": 987.4450906502, + "1500": 956.4758309343, + "1501": 925.4317714118, + "1502": 894.3264020786, + "1503": 863.2391537275, + "1504": 832.120433459, + "1505": 801.1126834461, + "1506": 770.1034236145, + "1507": 739.2975453629, + "1508": 708.52012535, + "1509": 678.0376955874, + "1510": 647.613579809, + "1511": 617.5748987596, + "1512": 587.6241573013, + "1513": 558.1477739157, + "1514": 528.7886086709, + "1515": 499.9908527679, + "1516": 471.3391309488, + "1517": 443.3336541146, + "1518": 415.5024509775, + "1519": 388.3997780346, + "1520": 361.4989306235, + "1521": 335.40602344, + "1522": 309.5416971096, + "1523": 284.5615324694, + "1524": 259.8358018997, + "1525": 236.0669651003, + "1526": 212.5774114536, + "1527": 190.1137072349, + "1528": 167.9530330481, + "1529": 146.883115388, + "1530": 126.1387787178, + "1531": 106.5458009554, + "1532": 87.2996702215, + "1533": 69.2609568888, + "1534": 51.5889877766, + "1535": 35.1757294339, + "1536": 19.1476651318, + "1537": 4.4246374115, + "1538": -9.8962666332, + "1539": -22.8709586671, + "1540": -35.4281843887, + "1541": -46.6033355544, + "1542": -57.3473253199, + "1543": -66.678832401, + "1544": -75.5671845912, + "1545": -83.0182203926, + "1546": -90.0158567421, + "1547": -95.5570154295, + "1548": -100.6363194645, + "1549": -104.245732616, + "1550": -107.3866586441, + "1551": -109.0500815551, + "1552": -110.2402337761, + "1553": -109.9511016762, + "1554": -109.1857831031, + "1555": -106.9452370647, + "1556": -104.2274680602, + "1557": -100.0443504948, + "1558": -95.3848568516, + "1559": -89.2756766132, + "1560": -82.692847224, + "1561": -74.681714456, + "1562": -66.201528741, + "1563": -56.3200597244, + "1564": -45.9759851023, + "1565": -34.263177481, + "1566": -22.0960372886, + "1567": -8.5981161632, + "1568": 5.3440714558, + "1569": 20.5738359572, + "1570": 36.2360475578, + "1571": 53.1375505127, + "1572": 70.4579745011, + "1573": 88.9645133987, + "1574": 107.8747939744, + "1575": 127.9133319606, + "1576": 148.3388388855, + "1577": 169.8302930056, + "1578": 191.6904161353, + "1579": 214.5499694384, + "1580": 237.7584368538, + "1581": 261.8958731266, + "1582": 286.3610916099, + "1583": 311.6811514186, + "1584": 337.3065679295, + "1585": 363.7093245659, + "1586": 390.3938072925, + "1587": 417.7750611383, + "1588": 445.4132986183, + "1589": 473.6649883739, + "1590": 502.1479051107, + "1591": 531.1585342635, + "1592": 560.3737211974, + "1593": 590.028798048, + "1594": 619.8609561832, + "1595": 650.0434456913, + "1596": 680.3748411287, + "1597": 710.9656267973, + "1598": 741.6765553762, + "1599": 772.5549093498, + "1600": 803.5241690657, + "1601": 834.5682285882, + "1602": 865.6735979214, + "1603": 896.7608462725, + "1604": 927.879566541, + "1605": 958.8873165539, + "1606": 989.8965763855, + "1607": 1020.7024546371, + "1608": 1051.47987465, + "1609": 1081.9623044126, + "1610": 1112.386420191, + "1611": 1142.4251012404, + "1612": 1172.3758426987, + "1613": 1201.8522260843, + "1614": 1231.2113913291, + "1615": 1260.0091472321, + "1616": 1288.6608690512, + "1617": 1316.6663458854, + "1618": 1344.4975490225, + "1619": 1371.6002219654, + "1620": 1398.5010693766, + "1621": 1424.59397656, + "1622": 1450.4583028904, + "1623": 1475.4384675305, + "1624": 1500.1641981003, + "1625": 1523.9330348997, + "1626": 1547.4225885464, + "1627": 1569.8862927651, + "1628": 1592.0469669519, + "1629": 1613.116884612, + "1630": 1633.8612212822, + "1631": 1653.4541990446, + "1632": 1672.7003297785, + "1633": 1690.7390431112, + "1634": 1708.4110122234, + "1635": 1724.8242705661, + "1636": 1740.8523348682, + "1637": 1755.5753625885, + "1638": 1769.8962666332, + "1639": 1782.8709586671, + "1640": 1795.4281843887, + "1641": 1806.6033355544, + "1642": 1817.3473253199, + "1643": 1826.678832401, + "1644": 1835.5671845912, + "1645": 1843.0182203926, + "1646": 1850.0158567421, + "1647": 1855.5570154295, + "1648": 1860.6363194645, + "1649": 1864.245732616, + "1650": 1867.3866586441, + "1651": 1869.0500815551, + "1652": 1870.2402337761, + "1653": 1869.9511016762, + "1654": 1869.1857831031, + "1655": 1866.9452370647, + "1656": 1864.2274680602, + "1657": 1860.0443504948, + "1658": 1855.3848568516, + "1659": 1849.2756766132, + "1660": 1842.692847224, + "1661": 1834.681714456, + "1662": 1826.201528741, + "1663": 1816.3200597244, + "1664": 1805.9759851023, + "1665": 1794.263177481, + "1666": 1782.0960372886, + "1667": 1768.5981161632, + "1668": 1754.6559285442, + "1669": 1739.4261640428, + "1670": 1723.7639524422, + "1671": 1706.8624494874, + "1672": 1689.5420254989, + "1673": 1671.0354866013, + "1674": 1652.1252060256, + "1675": 1632.0866680394, + "1676": 1611.6611611145, + "1677": 1590.1697069944, + "1678": 1568.3095838647, + "1679": 1545.4500305616, + "1680": 1522.2415631462, + "1681": 1498.1041268734, + "1682": 1473.6389083901, + "1683": 1448.3188485814, + "1684": 1422.6934320705, + "1685": 1396.2906754341, + "1686": 1369.6061927075, + "1687": 1342.2249388617, + "1688": 1314.5867013817, + "1689": 1286.3350116261, + "1690": 1257.8520948893, + "1691": 1228.8414657365, + "1692": 1199.6262788026, + "1693": 1169.971201952, + "1694": 1140.1390438168, + "1695": 1109.9565543087, + "1696": 1079.6251588713, + "1697": 1049.0343732027, + "1698": 1018.3234446238, + "1699": 987.4450906502, + "1700": 956.4758309343, + "1701": 925.4317714118, + "1702": 894.3264020786, + "1703": 863.2391537275, + "1704": 832.120433459, + "1705": 801.1126834461, + "1706": 770.1034236145, + "1707": 739.2975453629, + "1708": 708.52012535, + "1709": 678.0376955874, + "1710": 647.613579809, + "1711": 617.5748987596, + "1712": 587.6241573013, + "1713": 558.1477739157, + "1714": 528.7886086709, + "1715": 499.9908527679, + "1716": 471.3391309488, + "1717": 443.3336541146, + "1718": 415.5024509775, + "1719": 388.3997780346, + "1720": 361.4989306234, + "1721": 335.40602344, + "1722": 309.5416971096, + "1723": 284.5615324694, + "1724": 259.8358018997, + "1725": 236.0669651003, + "1726": 212.5774114536, + "1727": 190.1137072349, + "1728": 167.9530330481, + "1729": 146.883115388, + "1730": 126.1387787178, + "1731": 106.5458009554, + "1732": 87.2996702215, + "1733": 69.2609568888, + "1734": 51.5889877766, + "1735": 35.1757294339, + "1736": 19.1476651318, + "1737": 4.4246374115, + "1738": -9.8962666332, + "1739": -22.8709586671, + "1740": -35.4281843887, + "1741": -46.6033355544, + "1742": -57.3473253199, + "1743": -66.678832401, + "1744": -75.5671845912, + "1745": -83.0182203926, + "1746": -90.0158567421, + "1747": -95.5570154295, + "1748": -100.6363194645, + "1749": -104.245732616, + "1750": -107.3866586441, + "1751": -109.0500815551, + "1752": -110.2402337761, + "1753": -109.9511016762, + "1754": -109.1857831031, + "1755": -106.9452370647, + "1756": -104.2274680602, + "1757": -100.0443504948, + "1758": -95.3848568516, + "1759": -89.2756766132, + "1760": -82.692847224, + "1761": -74.681714456, + "1762": -66.201528741, + "1763": -56.3200597244, + "1764": -45.9759851023, + "1765": -34.263177481, + "1766": -22.0960372886, + "1767": -8.5981161632, + "1768": 5.3440714558, + "1769": 20.5738359572, + "1770": 36.2360475578, + "1771": 53.1375505126, + "1772": 70.4579745011, + "1773": 88.9645133987, + "1774": 107.8747939744, + "1775": 127.9133319606, + "1776": 148.3388388855, + "1777": 169.8302930056, + "1778": 191.6904161353, + "1779": 214.5499694384, + "1780": 237.7584368538, + "1781": 261.8958731266, + "1782": 286.3610916099, + "1783": 311.6811514186, + "1784": 337.3065679295, + "1785": 363.7093245659, + "1786": 390.3938072925, + "1787": 417.7750611383, + "1788": 445.4132986183, + "1789": 473.6649883739, + "1790": 502.1479051107, + "1791": 531.1585342635, + "1792": 560.3737211974, + "1793": 590.028798048, + "1794": 619.8609561832, + "1795": 650.0434456913, + "1796": 680.3748411287, + "1797": 710.9656267973, + "1798": 741.6765553762, + "1799": 772.5549093498, + "1800": 803.5241690657, + "1801": 834.5682285882, + "1802": 865.6735979214, + "1803": 896.7608462725, + "1804": 927.879566541, + "1805": 958.8873165539, + "1806": 989.8965763855, + "1807": 1020.7024546371, + "1808": 1051.47987465, + "1809": 1081.9623044126, + "1810": 1112.386420191, + "1811": 1142.4251012404, + "1812": 1172.3758426987, + "1813": 1201.8522260843, + "1814": 1231.2113913291, + "1815": 1260.0091472321, + "1816": 1288.6608690512, + "1817": 1316.6663458854, + "1818": 1344.4975490225, + "1819": 1371.6002219654, + "1820": 1398.5010693766, + "1821": 1424.59397656, + "1822": 1450.4583028904, + "1823": 1475.4384675305, + "1824": 1500.1641981003, + "1825": 1523.9330348997, + "1826": 1547.4225885464, + "1827": 1569.8862927651, + "1828": 1592.0469669519, + "1829": 1613.116884612, + "1830": 1633.8612212822, + "1831": 1653.4541990446, + "1832": 1672.7003297785, + "1833": 1690.7390431112, + "1834": 1708.4110122234, + "1835": 1724.8242705661, + "1836": 1740.8523348682, + "1837": 1755.5753625885, + "1838": 1769.8962666332, + "1839": 1782.8709586671, + "1840": 1795.4281843887, + "1841": 1806.6033355544, + "1842": 1817.3473253199, + "1843": 1826.678832401, + "1844": 1835.5671845912, + "1845": 1843.0182203926, + "1846": 1850.0158567421, + "1847": 1855.5570154295, + "1848": 1860.6363194645, + "1849": 1864.245732616, + "1850": 1867.3866586441, + "1851": 1869.0500815551, + "1852": 1870.2402337761, + "1853": 1869.9511016762, + "1854": 1869.1857831031, + "1855": 1866.9452370647, + "1856": 1864.2274680602, + "1857": 1860.0443504948, + "1858": 1855.3848568516, + "1859": 1849.2756766132, + "1860": 1842.692847224, + "1861": 1834.681714456, + "1862": 1826.201528741, + "1863": 1816.3200597244, + "1864": 1805.9759851023, + "1865": 1794.263177481, + "1866": 1782.0960372886, + "1867": 1768.5981161632, + "1868": 1754.6559285442, + "1869": 1739.4261640428, + "1870": 1723.7639524422, + "1871": 1706.8624494874, + "1872": 1689.5420254989, + "1873": 1671.0354866013, + "1874": 1652.1252060256, + "1875": 1632.0866680394, + "1876": 1611.6611611145, + "1877": 1590.1697069944, + "1878": 1568.3095838647, + "1879": 1545.4500305616, + "1880": 1522.2415631462, + "1881": 1498.1041268734, + "1882": 1473.6389083901, + "1883": 1448.3188485814, + "1884": 1422.6934320705, + "1885": 1396.2906754341, + "1886": 1369.6061927075, + "1887": 1342.2249388617, + "1888": 1314.5867013817, + "1889": 1286.3350116261, + "1890": 1257.8520948893, + "1891": 1228.8414657365, + "1892": 1199.6262788026, + "1893": 1169.971201952, + "1894": 1140.1390438168, + "1895": 1109.9565543087, + "1896": 1079.6251588713, + "1897": 1049.0343732027, + "1898": 1018.3234446238, + "1899": 987.4450906502, + "1900": 956.4758309343, + "1901": 925.4317714118, + "1902": 894.3264020786, + "1903": 863.2391537275, + "1904": 832.120433459, + "1905": 801.1126834461, + "1906": 770.1034236145, + "1907": 739.2975453629, + "1908": 708.52012535, + "1909": 678.0376955874, + "1910": 647.613579809, + "1911": 617.5748987596, + "1912": 587.6241573013, + "1913": 558.1477739157, + "1914": 528.7886086709, + "1915": 499.9908527679, + "1916": 471.3391309488, + "1917": 443.3336541146, + "1918": 415.5024509775, + "1919": 388.3997780346, + "1920": 361.4989306234, + "1921": 335.40602344, + "1922": 309.5416971096, + "1923": 284.5615324694, + "1924": 259.8358018997, + "1925": 236.0669651003, + "1926": 212.5774114536, + "1927": 190.1137072349, + "1928": 167.9530330481, + "1929": 146.883115388, + "1930": 126.1387787178, + "1931": 106.5458009554, + "1932": 87.2996702215, + "1933": 69.2609568888, + "1934": 51.5889877766, + "1935": 35.1757294339, + "1936": 19.1476651318, + "1937": 4.4246374115, + "1938": -9.8962666332, + "1939": -22.8709586671, + "1940": -35.4281843887, + "1941": -46.6033355544, + "1942": -57.3473253199, + "1943": -66.678832401, + "1944": -75.5671845912, + "1945": -83.0182203926, + "1946": -90.0158567421, + "1947": -95.5570154295, + "1948": -100.6363194645, + "1949": -104.245732616, + "1950": -107.3866586441, + "1951": -109.0500815551, + "1952": -110.2402337761, + "1953": -109.9511016762, + "1954": -109.1857831031, + "1955": -106.9452370647, + "1956": -104.2274680602, + "1957": -100.0443504948, + "1958": -95.3848568516, + "1959": -89.2756766132, + "1960": -82.692847224, + "1961": -74.681714456, + "1962": -66.201528741, + "1963": -56.3200597244, + "1964": -45.9759851023, + "1965": -34.263177481, + "1966": -22.0960372886, + "1967": -8.5981161632, + "1968": 5.3440714558, + "1969": 20.5738359572, + "1970": 36.2360475578, + "1971": 53.1375505126, + "1972": 70.4579745011, + "1973": 88.9645133987, + "1974": 107.8747939744, + "1975": 127.9133319606, + "1976": 148.3388388855, + "1977": 169.8302930056, + "1978": 191.6904161353, + "1979": 214.5499694384, + "1980": 237.7584368538, + "1981": 261.8958731266, + "1982": 286.3610916099, + "1983": 311.6811514186, + "1984": 337.3065679295, + "1985": 363.7093245659, + "1986": 390.3938072925, + "1987": 417.7750611383, + "1988": 445.4132986183, + "1989": 473.6649883739, + "1990": 502.1479051107, + "1991": 531.1585342635, + "1992": 560.3737211974, + "1993": 590.028798048, + "1994": 619.8609561832, + "1995": 650.0434456913, + "1996": 680.3748411287, + "1997": 710.9656267973, + "1998": 741.6765553762, + "1999": 772.5549093498, + "2000": 803.5241690657, + "2001": 834.5682285882, + "2002": 865.6735979214, + "2003": 896.7608462725, + "2004": 927.879566541, + "2005": 958.8873165539, + "2006": 989.8965763855, + "2007": 1020.7024546371, + "2008": 1051.47987465, + "2009": 1081.9623044126, + "2010": 1112.386420191, + "2011": 1142.4251012404, + "2012": 1172.3758426987, + "2013": 1201.8522260843, + "2014": 1231.2113913291, + "2015": 1260.0091472321, + "2016": 1288.6608690512, + "2017": 1316.6663458854, + "2018": 1344.4975490225, + "2019": 1371.6002219654, + "2020": 1398.5010693766, + "2021": 1424.59397656, + "2022": 1450.4583028904, + "2023": 1475.4384675305, + "2024": 1500.1641981003, + "2025": 1523.9330348997, + "2026": 1547.4225885464, + "2027": 1569.8862927651, + "2028": 1592.0469669519, + "2029": 1613.116884612, + "2030": 1633.8612212822, + "2031": 1653.4541990446, + "2032": 1672.7003297785, + "2033": 1690.7390431112, + "2034": 1708.4110122234, + "2035": 1724.8242705661, + "2036": 1740.8523348682, + "2037": 1755.5753625885, + "2038": 1769.8962666332, + "2039": 1782.8709586671, + "2040": 1795.4281843887, + "2041": 1806.6033355544, + "2042": 1817.3473253199, + "2043": 1826.678832401, + "2044": 1835.5671845912, + "2045": 1843.0182203926, + "2046": 1850.0158567421, + "2047": 1855.5570154295, + "2048": 1860.6363194645, + "2049": 1864.245732616, + "2050": 1867.3866586441, + "2051": 1869.0500815551, + "2052": 1870.2402337761, + "2053": 1869.9511016762, + "2054": 1869.1857831031, + "2055": 1866.9452370647, + "2056": 1864.2274680602, + "2057": 1860.0443504948, + "2058": 1855.3848568516, + "2059": 1849.2756766132, + "2060": 1842.692847224, + "2061": 1834.681714456, + "2062": 1826.201528741, + "2063": 1816.3200597244, + "2064": 1805.9759851023, + "2065": 1794.263177481, + "2066": 1782.0960372886, + "2067": 1768.5981161632, + "2068": 1754.6559285442, + "2069": 1739.4261640428, + "2070": 1723.7639524422, + "2071": 1706.8624494874, + "2072": 1689.5420254989, + "2073": 1671.0354866013, + "2074": 1652.1252060256, + "2075": 1632.0866680394, + "2076": 1611.6611611145, + "2077": 1590.1697069944, + "2078": 1568.3095838647, + "2079": 1545.4500305616, + "2080": 1522.2415631462, + "2081": 1498.1041268734, + "2082": 1473.6389083901, + "2083": 1448.3188485814, + "2084": 1422.6934320705, + "2085": 1396.2906754341, + "2086": 1369.6061927075, + "2087": 1342.2249388617, + "2088": 1314.5867013817, + "2089": 1286.3350116261, + "2090": 1257.8520948893, + "2091": 1228.8414657365, + "2092": 1199.6262788026, + "2093": 1169.971201952, + "2094": 1140.1390438168, + "2095": 1109.9565543087, + "2096": 1079.6251588713, + "2097": 1049.0343732027, + "2098": 1018.3234446238, + "2099": 987.4450906502, + "2100": 956.4758309343, + "2101": 925.4317714118, + "2102": 894.3264020786, + "2103": 863.2391537275, + "2104": 832.120433459, + "2105": 801.1126834461, + "2106": 770.1034236145, + "2107": 739.2975453629, + "2108": 708.52012535, + "2109": 678.0376955874, + "2110": 647.613579809, + "2111": 617.5748987596, + "2112": 587.6241573013, + "2113": 558.1477739157, + "2114": 528.7886086709, + "2115": 499.9908527679, + "2116": 471.3391309488, + "2117": 443.3336541146, + "2118": 415.5024509775, + "2119": 388.3997780346, + "2120": 361.4989306234, + "2121": 335.40602344, + "2122": 309.5416971096, + "2123": 284.5615324694, + "2124": 259.8358018997, + "2125": 236.0669651003, + "2126": 212.5774114536, + "2127": 190.1137072349, + "2128": 167.9530330481, + "2129": 146.883115388, + "2130": 126.1387787178, + "2131": 106.5458009554, + "2132": 87.2996702215, + "2133": 69.2609568888, + "2134": 51.5889877766, + "2135": 35.1757294339, + "2136": 19.1476651318, + "2137": 4.4246374115, + "2138": -9.8962666332, + "2139": -22.8709586671, + "2140": -35.4281843887, + "2141": -46.6033355544, + "2142": -57.3473253199, + "2143": -66.678832401, + "2144": -75.5671845912, + "2145": -83.0182203926, + "2146": -90.0158567421, + "2147": -95.5570154295, + "2148": -100.6363194645, + "2149": -104.245732616, + "2150": -107.3866586441, + "2151": -109.0500815551, + "2152": -110.2402337761, + "2153": -109.9511016762, + "2154": -109.1857831031, + "2155": -106.9452370647, + "2156": -104.2274680602, + "2157": -100.0443504948, + "2158": -95.3848568516, + "2159": -89.2756766132, + "2160": -82.692847224, + "2161": -74.681714456, + "2162": -66.201528741, + "2163": -56.3200597244, + "2164": -45.9759851023, + "2165": -34.263177481, + "2166": -22.0960372886, + "2167": -8.5981161632, + "2168": 5.3440714558, + "2169": 20.5738359572, + "2170": 36.2360475578, + "2171": 53.1375505126, + "2172": 70.4579745011, + "2173": 88.9645133987, + "2174": 107.8747939744, + "2175": 127.9133319606, + "2176": 148.3388388855, + "2177": 169.8302930056, + "2178": 191.6904161353, + "2179": 214.5499694384, + "2180": 237.7584368538, + "2181": 261.8958731266, + "2182": 286.3610916099, + "2183": 311.6811514186, + "2184": 337.3065679295, + "2185": 363.7093245659, + "2186": 390.3938072925, + "2187": 417.7750611383, + "2188": 445.4132986183, + "2189": 473.6649883739, + "2190": 502.1479051107, + "2191": 531.1585342635, + "2192": 560.3737211974, + "2193": 590.028798048, + "2194": 619.8609561832, + "2195": 650.0434456913, + "2196": 680.3748411287, + "2197": 710.9656267973, + "2198": 741.6765553762, + "2199": 772.5549093498, + "2200": 803.5241690657, + "2201": 834.5682285882, + "2202": 865.6735979214, + "2203": 896.7608462725, + "2204": 927.879566541, + "2205": 958.8873165539, + "2206": 989.8965763855, + "2207": 1020.7024546371, + "2208": 1051.47987465, + "2209": 1081.9623044126, + "2210": 1112.386420191, + "2211": 1142.4251012404, + "2212": 1172.3758426987, + "2213": 1201.8522260843, + "2214": 1231.2113913291, + "2215": 1260.0091472321, + "2216": 1288.6608690512, + "2217": 1316.6663458854, + "2218": 1344.4975490225, + "2219": 1371.6002219654, + "2220": 1398.5010693766, + "2221": 1424.59397656, + "2222": 1450.4583028904, + "2223": 1475.4384675305, + "2224": 1500.1641981003, + "2225": 1523.9330348997, + "2226": 1547.4225885464, + "2227": 1569.8862927651, + "2228": 1592.0469669519, + "2229": 1613.116884612, + "2230": 1633.8612212822, + "2231": 1653.4541990446, + "2232": 1672.7003297785, + "2233": 1690.7390431112, + "2234": 1708.4110122234, + "2235": 1724.8242705661, + "2236": 1740.8523348682, + "2237": 1755.5753625885, + "2238": 1769.8962666332, + "2239": 1782.8709586671, + "2240": 1795.4281843887, + "2241": 1806.6033355544, + "2242": 1817.3473253199, + "2243": 1826.678832401, + "2244": 1835.5671845912, + "2245": 1843.0182203926, + "2246": 1850.0158567421, + "2247": 1855.5570154295, + "2248": 1860.6363194645, + "2249": 1864.245732616, + "2250": 1867.3866586441, + "2251": 1869.0500815551, + "2252": 1870.2402337761, + "2253": 1869.9511016762, + "2254": 1869.1857831031, + "2255": 1866.9452370647, + "2256": 1864.2274680602, + "2257": 1860.0443504948, + "2258": 1855.3848568516, + "2259": 1849.2756766132, + "2260": 1842.692847224, + "2261": 1834.681714456, + "2262": 1826.201528741, + "2263": 1816.3200597244, + "2264": 1805.9759851023, + "2265": 1794.263177481, + "2266": 1782.0960372886, + "2267": 1768.5981161632, + "2268": 1754.6559285442, + "2269": 1739.4261640428, + "2270": 1723.7639524422, + "2271": 1706.8624494874, + "2272": 1689.5420254989, + "2273": 1671.0354866013, + "2274": 1652.1252060256, + "2275": 1632.0866680394, + "2276": 1611.6611611145, + "2277": 1590.1697069944, + "2278": 1568.3095838647, + "2279": 1545.4500305616, + "2280": 1522.2415631462, + "2281": 1498.1041268734, + "2282": 1473.6389083901, + "2283": 1448.3188485814, + "2284": 1422.6934320705, + "2285": 1396.2906754341, + "2286": 1369.6061927075, + "2287": 1342.2249388617, + "2288": 1314.5867013817, + "2289": 1286.3350116261, + "2290": 1257.8520948893, + "2291": 1228.8414657365, + "2292": 1199.6262788026, + "2293": 1169.971201952, + "2294": 1140.1390438168, + "2295": 1109.9565543087, + "2296": 1079.6251588713, + "2297": 1049.0343732027, + "2298": 1018.3234446238, + "2299": 987.4450906502, + "2300": 956.4758309343, + "2301": 925.4317714118, + "2302": 894.3264020786, + "2303": 863.2391537275, + "2304": 832.120433459, + "2305": 801.1126834461, + "2306": 770.1034236145, + "2307": 739.2975453629, + "2308": 708.52012535, + "2309": 678.0376955874, + "2310": 647.613579809, + "2311": 617.5748987596, + "2312": 587.6241573013, + "2313": 558.1477739157, + "2314": 528.7886086709, + "2315": 499.9908527679, + "2316": 471.3391309488, + "2317": 443.3336541146, + "2318": 415.5024509775, + "2319": 388.3997780346, + "2320": 361.4989306234, + "2321": 335.40602344, + "2322": 309.5416971096, + "2323": 284.5615324694, + "2324": 259.8358018997, + "2325": 236.0669651003, + "2326": 212.5774114536, + "2327": 190.1137072349, + "2328": 167.9530330481, + "2329": 146.883115388, + "2330": 126.1387787178, + "2331": 106.5458009554, + "2332": 87.2996702215, + "2333": 69.2609568888, + "2334": 51.5889877766, + "2335": 35.1757294339, + "2336": 19.1476651318, + "2337": 4.4246374115, + "2338": -9.8962666332, + "2339": -22.8709586671, + "2340": -35.4281843887, + "2341": -46.6033355544, + "2342": -57.3473253199, + "2343": -66.678832401, + "2344": -75.5671845912, + "2345": -83.0182203926, + "2346": -90.0158567421, + "2347": -95.5570154295, + "2348": -100.6363194645, + "2349": -104.245732616, + "2350": -107.3866586441, + "2351": -109.0500815551, + "2352": -110.2402337761, + "2353": -109.9511016762, + "2354": -109.1857831031, + "2355": -106.9452370647, + "2356": -104.2274680602, + "2357": -100.0443504948, + "2358": -95.3848568516, + "2359": -89.2756766132, + "2360": -82.692847224, + "2361": -74.681714456, + "2362": -66.201528741, + "2363": -56.3200597244, + "2364": -45.9759851023, + "2365": -34.263177481, + "2366": -22.0960372886, + "2367": -8.5981161632, + "2368": 5.3440714558, + "2369": 20.5738359572, + "2370": 36.2360475578, + "2371": 53.1375505126, + "2372": 70.4579745011, + "2373": 88.9645133987, + "2374": 107.8747939744, + "2375": 127.9133319606, + "2376": 148.3388388855, + "2377": 169.8302930056, + "2378": 191.6904161353, + "2379": 214.5499694384, + "2380": 237.7584368538, + "2381": 261.8958731266, + "2382": 286.3610916099, + "2383": 311.6811514186, + "2384": 337.3065679295, + "2385": 363.7093245659, + "2386": 390.3938072925, + "2387": 417.7750611383, + "2388": 445.4132986183, + "2389": 473.6649883739, + "2390": 502.1479051107, + "2391": 531.1585342635, + "2392": 560.3737211974, + "2393": 590.028798048, + "2394": 619.8609561832, + "2395": 650.0434456913, + "2396": 680.3748411287, + "2397": 710.9656267973, + "2398": 741.6765553762, + "2399": 772.5549093498, + "2400": 803.5241690657, + "2401": 834.5682285882, + "2402": 865.6735979214, + "2403": 896.7608462725, + "2404": 927.879566541, + "2405": 958.8873165539, + "2406": 989.8965763855, + "2407": 1020.7024546371, + "2408": 1051.47987465, + "2409": 1081.9623044126, + "2410": 1112.386420191, + "2411": 1142.4251012404, + "2412": 1172.3758426987, + "2413": 1201.8522260843, + "2414": 1231.2113913291, + "2415": 1260.0091472321, + "2416": 1288.6608690512, + "2417": 1316.6663458854, + "2418": 1344.4975490225, + "2419": 1371.6002219654, + "2420": 1398.5010693766, + "2421": 1424.59397656, + "2422": 1450.4583028904, + "2423": 1475.4384675305, + "2424": 1500.1641981003, + "2425": 1523.9330348997, + "2426": 1547.4225885464, + "2427": 1569.8862927651, + "2428": 1592.0469669519, + "2429": 1613.116884612, + "2430": 1633.8612212822, + "2431": 1653.4541990446, + "2432": 1672.7003297785, + "2433": 1690.7390431112, + "2434": 1708.4110122234, + "2435": 1724.8242705661, + "2436": 1740.8523348682, + "2437": 1755.5753625885, + "2438": 1769.8962666332, + "2439": 1782.8709586671, + "2440": 1795.4281843887, + "2441": 1806.6033355544, + "2442": 1817.3473253199, + "2443": 1826.678832401, + "2444": 1835.5671845912, + "2445": 1843.0182203926, + "2446": 1850.0158567421, + "2447": 1855.5570154295, + "2448": 1860.6363194645, + "2449": 1864.245732616, + "2450": 1867.3866586441, + "2451": 1869.0500815551, + "2452": 1870.2402337761, + "2453": 1869.9511016762, + "2454": 1869.1857831031, + "2455": 1866.9452370647, + "2456": 1864.2274680602, + "2457": 1860.0443504948, + "2458": 1855.3848568516, + "2459": 1849.2756766132, + "2460": 1842.692847224, + "2461": 1834.681714456, + "2462": 1826.201528741, + "2463": 1816.3200597244, + "2464": 1805.9759851023, + "2465": 1794.263177481, + "2466": 1782.0960372886, + "2467": 1768.5981161632, + "2468": 1754.6559285442, + "2469": 1739.4261640428, + "2470": 1723.7639524422, + "2471": 1706.8624494874, + "2472": 1689.5420254989, + "2473": 1671.0354866013, + "2474": 1652.1252060256, + "2475": 1632.0866680394, + "2476": 1611.6611611145, + "2477": 1590.1697069944, + "2478": 1568.3095838647, + "2479": 1545.4500305616, + "2480": 1522.2415631462, + "2481": 1498.1041268734, + "2482": 1473.6389083901, + "2483": 1448.3188485814, + "2484": 1422.6934320705, + "2485": 1396.2906754341, + "2486": 1369.6061927075, + "2487": 1342.2249388617, + "2488": 1314.5867013817, + "2489": 1286.3350116261, + "2490": 1257.8520948893, + "2491": 1228.8414657365, + "2492": 1199.6262788026, + "2493": 1169.971201952, + "2494": 1140.1390438168, + "2495": 1109.9565543087, + "2496": 1079.6251588713, + "2497": 1049.0343732027, + "2498": 1018.3234446238, + "2499": 987.4450906502, + "2500": 956.4758309343, + "2501": 925.4317714118, + "2502": 894.3264020786, + "2503": 863.2391537275, + "2504": 832.120433459, + "2505": 801.1126834461, + "2506": 770.1034236145, + "2507": 739.2975453629, + "2508": 708.52012535, + "2509": 678.0376955874, + "2510": 647.613579809, + "2511": 617.5748987596, + "2512": 587.6241573013, + "2513": 558.1477739157, + "2514": 528.7886086709, + "2515": 499.9908527679, + "2516": 471.3391309488, + "2517": 443.3336541146, + "2518": 415.5024509775, + "2519": 388.3997780346, + "2520": 361.4989306234, + "2521": 335.40602344, + "2522": 309.5416971096, + "2523": 284.5615324694, + "2524": 259.8358018997, + "2525": 236.0669651003, + "2526": 212.5774114536, + "2527": 190.1137072349, + "2528": 167.9530330481, + "2529": 146.883115388, + "2530": 126.1387787178, + "2531": 106.5458009554, + "2532": 87.2996702215, + "2533": 69.2609568888, + "2534": 51.5889877766, + "2535": 35.1757294339, + "2536": 19.1476651318, + "2537": 4.4246374115, + "2538": -9.8962666332, + "2539": -22.8709586671, + "2540": -35.4281843887, + "2541": -46.6033355544, + "2542": -57.3473253199, + "2543": -66.678832401, + "2544": -75.5671845912, + "2545": -83.0182203926, + "2546": -90.0158567421, + "2547": -95.5570154295, + "2548": -100.6363194645, + "2549": -104.245732616, + "2550": -107.3866586441, + "2551": -109.0500815551, + "2552": -110.2402337761, + "2553": -109.9511016762, + "2554": -109.1857831031, + "2555": -106.9452370647, + "2556": -104.2274680602, + "2557": -100.0443504948, + "2558": -95.3848568516, + "2559": -89.2756766132, + "2560": -82.692847224, + "2561": -74.681714456, + "2562": -66.201528741, + "2563": -56.3200597244, + "2564": -45.9759851023, + "2565": -34.263177481, + "2566": -22.0960372886, + "2567": -8.5981161632, + "2568": 5.3440714558, + "2569": 20.5738359572, + "2570": 36.2360475578, + "2571": 53.1375505126, + "2572": 70.4579745011, + "2573": 88.9645133987, + "2574": 107.8747939744, + "2575": 127.9133319606, + "2576": 148.3388388855, + "2577": 169.8302930056, + "2578": 191.6904161353, + "2579": 214.5499694384, + "2580": 237.7584368538, + "2581": 261.8958731266, + "2582": 286.3610916099, + "2583": 311.6811514186, + "2584": 337.3065679295, + "2585": 363.7093245659, + "2586": 390.3938072925, + "2587": 417.7750611383, + "2588": 445.4132986183, + "2589": 473.6649883739, + "2590": 502.1479051107, + "2591": 531.1585342635, + "2592": 560.3737211974, + "2593": 590.028798048, + "2594": 619.8609561832, + "2595": 650.0434456913, + "2596": 680.3748411287, + "2597": 710.9656267973, + "2598": 741.6765553762, + "2599": 772.5549093498, + "2600": 803.5241690657, + "2601": 834.5682285882, + "2602": 865.6735979214, + "2603": 896.7608462725, + "2604": 927.879566541, + "2605": 958.8873165539, + "2606": 989.8965763855, + "2607": 1020.7024546371, + "2608": 1051.47987465, + "2609": 1081.9623044126, + "2610": 1112.386420191, + "2611": 1142.4251012404, + "2612": 1172.3758426987, + "2613": 1201.8522260843, + "2614": 1231.2113913291, + "2615": 1260.0091472321, + "2616": 1288.6608690512, + "2617": 1316.6663458854, + "2618": 1344.4975490225, + "2619": 1371.6002219654, + "2620": 1398.5010693766, + "2621": 1424.59397656, + "2622": 1450.4583028904, + "2623": 1475.4384675305, + "2624": 1500.1641981003, + "2625": 1523.9330348997, + "2626": 1547.4225885464, + "2627": 1569.8862927651, + "2628": 1592.0469669519, + "2629": 1613.116884612, + "2630": 1633.8612212822, + "2631": 1653.4541990446, + "2632": 1672.7003297785, + "2633": 1690.7390431112, + "2634": 1708.4110122234, + "2635": 1724.8242705661, + "2636": 1740.8523348682, + "2637": 1755.5753625885, + "2638": 1769.8962666332, + "2639": 1782.8709586671, + "2640": 1795.4281843887, + "2641": 1806.6033355544, + "2642": 1817.3473253199, + "2643": 1826.678832401, + "2644": 1835.5671845912, + "2645": 1843.0182203926, + "2646": 1850.0158567421, + "2647": 1855.5570154295, + "2648": 1860.6363194645, + "2649": 1864.245732616, + "2650": 1867.3866586441, + "2651": 1869.0500815551, + "2652": 1870.2402337761, + "2653": 1869.9511016762, + "2654": 1869.1857831031, + "2655": 1866.9452370647, + "2656": 1864.2274680602, + "2657": 1860.0443504948, + "2658": 1855.3848568516, + "2659": 1849.2756766132, + "2660": 1842.692847224, + "2661": 1834.681714456, + "2662": 1826.201528741, + "2663": 1816.3200597244, + "2664": 1805.9759851023, + "2665": 1794.263177481, + "2666": 1782.0960372886, + "2667": 1768.5981161632, + "2668": 1754.6559285442, + "2669": 1739.4261640428, + "2670": 1723.7639524422, + "2671": 1706.8624494874, + "2672": 1689.5420254989, + "2673": 1671.0354866013, + "2674": 1652.1252060256, + "2675": 1632.0866680394, + "2676": 1611.6611611145, + "2677": 1590.1697069944, + "2678": 1568.3095838647, + "2679": 1545.4500305616, + "2680": 1522.2415631462, + "2681": 1498.1041268734, + "2682": 1473.6389083901, + "2683": 1448.3188485814, + "2684": 1422.6934320705, + "2685": 1396.2906754341, + "2686": 1369.6061927075, + "2687": 1342.2249388617, + "2688": 1314.5867013817, + "2689": 1286.3350116261, + "2690": 1257.8520948893, + "2691": 1228.8414657365, + "2692": 1199.6262788026, + "2693": 1169.971201952, + "2694": 1140.1390438168, + "2695": 1109.9565543087, + "2696": 1079.6251588713, + "2697": 1049.0343732027, + "2698": 1018.3234446238, + "2699": 987.4450906502, + "2700": 956.4758309343, + "2701": 925.4317714118, + "2702": 894.3264020786, + "2703": 863.2391537275, + "2704": 832.120433459, + "2705": 801.1126834461, + "2706": 770.1034236145, + "2707": 739.2975453629, + "2708": 708.52012535, + "2709": 678.0376955874, + "2710": 647.613579809, + "2711": 617.5748987596, + "2712": 587.6241573013, + "2713": 558.1477739157, + "2714": 528.7886086709, + "2715": 499.9908527679, + "2716": 471.3391309488, + "2717": 443.3336541146, + "2718": 415.5024509775, + "2719": 388.3997780346, + "2720": 361.4989306234, + "2721": 335.40602344, + "2722": 309.5416971096, + "2723": 284.5615324694, + "2724": 259.8358018997, + "2725": 236.0669651003, + "2726": 212.5774114536, + "2727": 190.1137072349, + "2728": 167.9530330481, + "2729": 146.883115388, + "2730": 126.1387787178, + "2731": 106.5458009554, + "2732": 87.2996702215, + "2733": 69.2609568888, + "2734": 51.5889877766, + "2735": 35.1757294339, + "2736": 19.1476651318, + "2737": 4.4246374115, + "2738": -9.8962666332, + "2739": -22.8709586671, + "2740": -35.4281843887, + "2741": -46.6033355544, + "2742": -57.3473253199, + "2743": -66.678832401, + "2744": -75.5671845912, + "2745": -83.0182203926, + "2746": -90.0158567421, + "2747": -95.5570154295, + "2748": -100.6363194645, + "2749": -104.245732616, + "2750": -107.3866586441, + "2751": -109.0500815551, + "2752": -110.2402337761, + "2753": -109.9511016762, + "2754": -109.1857831031, + "2755": -106.9452370647, + "2756": -104.2274680602, + "2757": -100.0443504948, + "2758": -95.3848568516, + "2759": -89.2756766132, + "2760": -82.692847224, + "2761": -74.681714456, + "2762": -66.201528741, + "2763": -56.3200597244, + "2764": -45.9759851023, + "2765": -34.263177481, + "2766": -22.0960372886, + "2767": -8.5981161632, + "2768": 5.3440714558, + "2769": 20.5738359572, + "2770": 36.2360475578, + "2771": 53.1375505126, + "2772": 70.4579745011, + "2773": 88.9645133987, + "2774": 107.8747939744, + "2775": 127.9133319606, + "2776": 148.3388388855, + "2777": 169.8302930056, + "2778": 191.6904161353, + "2779": 214.5499694384, + "2780": 237.7584368538, + "2781": 261.8958731266, + "2782": 286.3610916099, + "2783": 311.6811514186, + "2784": 337.3065679295, + "2785": 363.7093245659, + "2786": 390.3938072925, + "2787": 417.7750611383, + "2788": 445.4132986183, + "2789": 473.6649883739, + "2790": 502.1479051107, + "2791": 531.1585342635, + "2792": 560.3737211974, + "2793": 590.028798048, + "2794": 619.8609561832, + "2795": 650.0434456913, + "2796": 680.3748411287, + "2797": 710.9656267973, + "2798": 741.6765553762, + "2799": 772.5549093498, + "2800": 803.5241690657, + "2801": 834.5682285882, + "2802": 865.6735979214, + "2803": 896.7608462725, + "2804": 927.879566541, + "2805": 958.8873165539, + "2806": 989.8965763855, + "2807": 1020.7024546371, + "2808": 1051.47987465, + "2809": 1081.9623044126, + "2810": 1112.386420191, + "2811": 1142.4251012404, + "2812": 1172.3758426987, + "2813": 1201.8522260843, + "2814": 1231.2113913291, + "2815": 1260.0091472321, + "2816": 1288.6608690512, + "2817": 1316.6663458854, + "2818": 1344.4975490225, + "2819": 1371.6002219654, + "2820": 1398.5010693766, + "2821": 1424.59397656, + "2822": 1450.4583028904, + "2823": 1475.4384675305, + "2824": 1500.1641981003, + "2825": 1523.9330348997, + "2826": 1547.4225885464, + "2827": 1569.8862927651, + "2828": 1592.0469669519, + "2829": 1613.116884612, + "2830": 1633.8612212822, + "2831": 1653.4541990446, + "2832": 1672.7003297785, + "2833": 1690.7390431112, + "2834": 1708.4110122234, + "2835": 1724.8242705661, + "2836": 1740.8523348682, + "2837": 1755.5753625885, + "2838": 1769.8962666332, + "2839": 1782.8709586671, + "2840": 1795.4281843887, + "2841": 1806.6033355544, + "2842": 1817.3473253199, + "2843": 1826.678832401, + "2844": 1835.5671845912, + "2845": 1843.0182203926, + "2846": 1850.0158567421, + "2847": 1855.5570154295, + "2848": 1860.6363194645, + "2849": 1864.245732616, + "2850": 1867.3866586441, + "2851": 1869.0500815551, + "2852": 1870.2402337761, + "2853": 1869.9511016762, + "2854": 1869.1857831031, + "2855": 1866.9452370647, + "2856": 1864.2274680602, + "2857": 1860.0443504948, + "2858": 1855.3848568516, + "2859": 1849.2756766132, + "2860": 1842.692847224, + "2861": 1834.681714456, + "2862": 1826.201528741, + "2863": 1816.3200597244, + "2864": 1805.9759851023, + "2865": 1794.263177481, + "2866": 1782.0960372886, + "2867": 1768.5981161632, + "2868": 1754.6559285442, + "2869": 1739.4261640428, + "2870": 1723.7639524422, + "2871": 1706.8624494874, + "2872": 1689.5420254989, + "2873": 1671.0354866013, + "2874": 1652.1252060256, + "2875": 1632.0866680394, + "2876": 1611.6611611145, + "2877": 1590.1697069944, + "2878": 1568.3095838647, + "2879": 1545.4500305616, + "2880": 1522.2415631462, + "2881": 1498.1041268734, + "2882": 1473.6389083901, + "2883": 1448.3188485814, + "2884": 1422.6934320705, + "2885": 1396.2906754341, + "2886": 1369.6061927075, + "2887": 1342.2249388617, + "2888": 1314.5867013817, + "2889": 1286.3350116261, + "2890": 1257.8520948893, + "2891": 1228.8414657365, + "2892": 1199.6262788026, + "2893": 1169.971201952, + "2894": 1140.1390438168, + "2895": 1109.9565543087, + "2896": 1079.6251588713, + "2897": 1049.0343732027, + "2898": 1018.3234446238, + "2899": 987.4450906502, + "2900": 956.4758309343, + "2901": 925.4317714118, + "2902": 894.3264020786, + "2903": 863.2391537275, + "2904": 832.120433459, + "2905": 801.1126834461, + "2906": 770.1034236145, + "2907": 739.2975453629, + "2908": 708.52012535, + "2909": 678.0376955874, + "2910": 647.613579809, + "2911": 617.5748987596, + "2912": 587.6241573013, + "2913": 558.1477739157, + "2914": 528.7886086709, + "2915": 499.9908527679, + "2916": 471.3391309488, + "2917": 443.3336541146, + "2918": 415.5024509775, + "2919": 388.3997780346, + "2920": 361.4989306234, + "2921": 335.40602344, + "2922": 309.5416971096, + "2923": 284.5615324694, + "2924": 259.8358018997, + "2925": 236.0669651003, + "2926": 212.5774114536, + "2927": 190.1137072349, + "2928": 167.9530330481, + "2929": 146.883115388, + "2930": 126.1387787178, + "2931": 106.5458009554, + "2932": 87.2996702215, + "2933": 69.2609568888, + "2934": 51.5889877766, + "2935": 35.1757294339, + "2936": 19.1476651318, + "2937": 4.4246374115, + "2938": -9.8962666332, + "2939": -22.8709586671, + "2940": -35.4281843887, + "2941": -46.6033355544, + "2942": -57.3473253199, + "2943": -66.678832401, + "2944": -75.5671845912, + "2945": -83.0182203926, + "2946": -90.0158567421, + "2947": -95.5570154295, + "2948": -100.6363194645, + "2949": -104.245732616, + "2950": -107.3866586441, + "2951": -109.0500815551, + "2952": -110.2402337761, + "2953": -109.9511016762, + "2954": -109.1857831031, + "2955": -106.9452370647, + "2956": -104.2274680602, + "2957": -100.0443504948, + "2958": -95.3848568516, + "2959": -89.2756766132, + "2960": -82.692847224, + "2961": -74.681714456, + "2962": -66.201528741, + "2963": -56.3200597244, + "2964": -45.9759851023, + "2965": -34.263177481, + "2966": -22.0960372886, + "2967": -8.5981161632, + "2968": 5.3440714558, + "2969": 20.5738359572, + "2970": 36.2360475578, + "2971": 53.1375505126, + "2972": 70.4579745011, + "2973": 88.9645133987, + "2974": 107.8747939744, + "2975": 127.9133319606, + "2976": 148.3388388855, + "2977": 169.8302930056, + "2978": 191.6904161353, + "2979": 214.5499694384, + "2980": 237.7584368538, + "2981": 261.8958731266, + "2982": 286.3610916099, + "2983": 311.6811514186, + "2984": 337.3065679295, + "2985": 363.7093245659, + "2986": 390.3938072925, + "2987": 417.7750611383, + "2988": 445.4132986183, + "2989": 473.6649883739, + "2990": 502.1479051107, + "2991": 531.1585342635, + "2992": 560.3737211974, + "2993": 590.028798048, + "2994": 619.8609561832, + "2995": 650.0434456913, + "2996": 680.3748411287, + "2997": 710.9656267973, + "2998": 741.6765553762, + "2999": 772.5549093498, + "3000": 803.5241690657, + "3001": 834.5682285882, + "3002": 865.6735979214, + "3003": 896.7608462725, + "3004": 927.879566541, + "3005": 958.8873165539, + "3006": 989.8965763855, + "3007": 1020.7024546371, + "3008": 1051.47987465, + "3009": 1081.9623044126, + "3010": 1112.386420191, + "3011": 1142.4251012404, + "3012": 1172.3758426987, + "3013": 1201.8522260843, + "3014": 1231.2113913291, + "3015": 1260.0091472321, + "3016": 1288.6608690512, + "3017": 1316.6663458854, + "3018": 1344.4975490225, + "3019": 1371.6002219654, + "3020": 1398.5010693766, + "3021": 1424.59397656, + "3022": 1450.4583028904, + "3023": 1475.4384675305, + "3024": 1500.1641981003, + "3025": 1523.9330348997, + "3026": 1547.4225885464, + "3027": 1569.8862927651, + "3028": 1592.0469669519, + "3029": 1613.116884612, + "3030": 1633.8612212822, + "3031": 1653.4541990446, + "3032": 1672.7003297785, + "3033": 1690.7390431112, + "3034": 1708.4110122234, + "3035": 1724.8242705661, + "3036": 1740.8523348682, + "3037": 1755.5753625885, + "3038": 1769.8962666332, + "3039": 1782.8709586671, + "3040": 1795.4281843887, + "3041": 1806.6033355544, + "3042": 1817.3473253199, + "3043": 1826.678832401, + "3044": 1835.5671845912, + "3045": 1843.0182203926, + "3046": 1850.0158567421, + "3047": 1855.5570154295, + "3048": 1860.6363194645, + "3049": 1864.245732616, + "3050": 1867.3866586441, + "3051": 1869.0500815551, + "3052": 1870.2402337761, + "3053": 1869.9511016762, + "3054": 1869.1857831031, + "3055": 1866.9452370647, + "3056": 1864.2274680602, + "3057": 1860.0443504948, + "3058": 1855.3848568516, + "3059": 1849.2756766132, + "3060": 1842.692847224, + "3061": 1834.681714456, + "3062": 1826.201528741, + "3063": 1816.3200597244, + "3064": 1805.9759851023, + "3065": 1794.263177481, + "3066": 1782.0960372886, + "3067": 1768.5981161632, + "3068": 1754.6559285442, + "3069": 1739.4261640428, + "3070": 1723.7639524422, + "3071": 1706.8624494874, + "3072": 1689.5420254989, + "3073": 1671.0354866013, + "3074": 1652.1252060256, + "3075": 1632.0866680394, + "3076": 1611.6611611145, + "3077": 1590.1697069944, + "3078": 1568.3095838647, + "3079": 1545.4500305616, + "3080": 1522.2415631462, + "3081": 1498.1041268734, + "3082": 1473.6389083901, + "3083": 1448.3188485814, + "3084": 1422.6934320705, + "3085": 1396.2906754341, + "3086": 1369.6061927075, + "3087": 1342.2249388617, + "3088": 1314.5867013817, + "3089": 1286.3350116261, + "3090": 1257.8520948893, + "3091": 1228.8414657365, + "3092": 1199.6262788026, + "3093": 1169.971201952, + "3094": 1140.1390438168, + "3095": 1109.9565543087, + "3096": 1079.6251588713, + "3097": 1049.0343732027, + "3098": 1018.3234446238, + "3099": 987.4450906502, + "3100": 956.4758309343, + "3101": 925.4317714118, + "3102": 894.3264020786, + "3103": 863.2391537275, + "3104": 832.120433459, + "3105": 801.1126834461, + "3106": 770.1034236145, + "3107": 739.2975453629, + "3108": 708.52012535, + "3109": 678.0376955874, + "3110": 647.613579809, + "3111": 617.5748987596, + "3112": 587.6241573013, + "3113": 558.1477739157, + "3114": 528.7886086709, + "3115": 499.9908527679, + "3116": 471.3391309488, + "3117": 443.3336541146, + "3118": 415.5024509775, + "3119": 388.3997780346, + "3120": 361.4989306234, + "3121": 335.40602344, + "3122": 309.5416971096, + "3123": 284.5615324694, + "3124": 259.8358018997, + "3125": 236.0669651003, + "3126": 212.5774114536, + "3127": 190.1137072349, + "3128": 167.9530330481, + "3129": 146.883115388, + "3130": 126.1387787178, + "3131": 106.5458009554, + "3132": 87.2996702215, + "3133": 69.2609568888, + "3134": 51.5889877766, + "3135": 35.1757294339, + "3136": 19.1476651318, + "3137": 4.4246374115, + "3138": -9.8962666332, + "3139": -22.8709586671, + "3140": -35.4281843887, + "3141": -46.6033355544, + "3142": -57.3473253199, + "3143": -66.678832401, + "3144": -75.5671845912, + "3145": -83.0182203926, + "3146": -90.0158567421, + "3147": -95.5570154295, + "3148": -100.6363194645, + "3149": -104.245732616, + "3150": -107.3866586441, + "3151": -109.0500815551, + "3152": -110.2402337761, + "3153": -109.9511016762, + "3154": -109.1857831031, + "3155": -106.9452370647, + "3156": -104.2274680602, + "3157": -100.0443504948, + "3158": -95.3848568516, + "3159": -89.2756766132, + "3160": -82.692847224, + "3161": -74.681714456, + "3162": -66.201528741, + "3163": -56.3200597244, + "3164": -45.9759851023, + "3165": -34.263177481, + "3166": -22.0960372886, + "3167": -8.5981161632, + "3168": 5.3440714558, + "3169": 20.5738359572, + "3170": 36.2360475578, + "3171": 53.1375505126, + "3172": 70.4579745011, + "3173": 88.9645133987, + "3174": 107.8747939744, + "3175": 127.9133319606, + "3176": 148.3388388855, + "3177": 169.8302930056, + "3178": 191.6904161353, + "3179": 214.5499694384, + "3180": 237.7584368538, + "3181": 261.8958731266, + "3182": 286.3610916099, + "3183": 311.6811514186, + "3184": 337.3065679295, + "3185": 363.7093245659, + "3186": 390.3938072925, + "3187": 417.7750611383, + "3188": 445.4132986183, + "3189": 473.6649883739, + "3190": 502.1479051107, + "3191": 531.1585342635, + "3192": 560.3737211974, + "3193": 590.028798048, + "3194": 619.8609561832, + "3195": 650.0434456913, + "3196": 680.3748411287, + "3197": 710.9656267973, + "3198": 741.6765553762, + "3199": 772.5549093498, + "3200": 803.5241690657, + "3201": 834.5682285882, + "3202": 865.6735979214, + "3203": 896.7608462726, + "3204": 927.879566541, + "3205": 958.8873165539, + "3206": 989.8965763855, + "3207": 1020.7024546371, + "3208": 1051.47987465, + "3209": 1081.9623044126, + "3210": 1112.386420191, + "3211": 1142.4251012404, + "3212": 1172.3758426987, + "3213": 1201.8522260843, + "3214": 1231.2113913291, + "3215": 1260.0091472321, + "3216": 1288.6608690512, + "3217": 1316.6663458854, + "3218": 1344.4975490225, + "3219": 1371.6002219654, + "3220": 1398.5010693766, + "3221": 1424.5939765601, + "3222": 1450.4583028904, + "3223": 1475.4384675306, + "3224": 1500.1641981003, + "3225": 1523.9330348997, + "3226": 1547.4225885464, + "3227": 1569.8862927651, + "3228": 1592.0469669519, + "3229": 1613.116884612, + "3230": 1633.8612212822, + "3231": 1653.4541990446, + "3232": 1672.7003297785, + "3233": 1690.7390431112, + "3234": 1708.4110122234, + "3235": 1724.8242705661, + "3236": 1740.8523348682, + "3237": 1755.5753625885, + "3238": 1769.8962666332, + "3239": 1782.8709586671, + "3240": 1795.4281843887, + "3241": 1806.6033355544, + "3242": 1817.3473253199, + "3243": 1826.678832401, + "3244": 1835.5671845912, + "3245": 1843.0182203926, + "3246": 1850.0158567421, + "3247": 1855.5570154295, + "3248": 1860.6363194645, + "3249": 1864.245732616, + "3250": 1867.3866586441, + "3251": 1869.0500815551, + "3252": 1870.2402337761, + "3253": 1869.9511016762, + "3254": 1869.1857831031, + "3255": 1866.9452370647, + "3256": 1864.2274680602, + "3257": 1860.0443504948, + "3258": 1855.3848568516, + "3259": 1849.2756766132, + "3260": 1842.692847224, + "3261": 1834.681714456, + "3262": 1826.201528741, + "3263": 1816.3200597244, + "3264": 1805.9759851023, + "3265": 1794.263177481, + "3266": 1782.0960372886, + "3267": 1768.5981161632, + "3268": 1754.6559285442, + "3269": 1739.4261640428, + "3270": 1723.7639524422, + "3271": 1706.8624494873, + "3272": 1689.5420254989, + "3273": 1671.0354866013, + "3274": 1652.1252060256, + "3275": 1632.0866680394, + "3276": 1611.6611611145, + "3277": 1590.1697069944, + "3278": 1568.3095838647, + "3279": 1545.4500305616, + "3280": 1522.2415631462, + "3281": 1498.1041268734, + "3282": 1473.6389083901, + "3283": 1448.3188485814, + "3284": 1422.6934320705, + "3285": 1396.2906754341, + "3286": 1369.6061927075, + "3287": 1342.2249388617, + "3288": 1314.5867013817, + "3289": 1286.3350116261, + "3290": 1257.8520948893, + "3291": 1228.8414657365, + "3292": 1199.6262788026, + "3293": 1169.971201952, + "3294": 1140.1390438168, + "3295": 1109.9565543087, + "3296": 1079.6251588713, + "3297": 1049.0343732027, + "3298": 1018.3234446238, + "3299": 987.4450906501, + "3300": 956.4758309343, + "3301": 925.4317714118, + "3302": 894.3264020786, + "3303": 863.2391537274, + "3304": 832.120433459, + "3305": 801.1126834461, + "3306": 770.1034236145, + "3307": 739.2975453629, + "3308": 708.52012535, + "3309": 678.0376955874, + "3310": 647.613579809, + "3311": 617.5748987596, + "3312": 587.6241573013, + "3313": 558.1477739157, + "3314": 528.7886086709, + "3315": 499.9908527679, + "3316": 471.3391309488, + "3317": 443.3336541146, + "3318": 415.5024509775, + "3319": 388.3997780346, + "3320": 361.4989306234, + "3321": 335.4060234399, + "3322": 309.5416971096, + "3323": 284.5615324694, + "3324": 259.8358018997, + "3325": 236.0669651003, + "3326": 212.5774114536, + "3327": 190.1137072349, + "3328": 167.9530330481, + "3329": 146.883115388, + "3330": 126.1387787178, + "3331": 106.5458009554, + "3332": 87.2996702215, + "3333": 69.2609568888, + "3334": 51.5889877766, + "3335": 35.1757294339, + "3336": 19.1476651318, + "3337": 4.4246374115, + "3338": -9.8962666332, + "3339": -22.8709586671, + "3340": -35.4281843887, + "3341": -46.6033355544, + "3342": -57.3473253199, + "3343": -66.678832401, + "3344": -75.5671845912, + "3345": -83.0182203926, + "3346": -90.0158567421, + "3347": -95.5570154295, + "3348": -100.6363194645, + "3349": -104.245732616, + "3350": -107.3866586441, + "3351": -109.0500815551, + "3352": -110.2402337761, + "3353": -109.9511016762, + "3354": -109.1857831031, + "3355": -106.9452370647, + "3356": -104.2274680602, + "3357": -100.0443504948, + "3358": -95.3848568516, + "3359": -89.2756766132, + "3360": -82.692847224, + "3361": -74.681714456, + "3362": -66.201528741, + "3363": -56.3200597244, + "3364": -45.9759851023, + "3365": -34.263177481, + "3366": -22.0960372886, + "3367": -8.5981161632, + "3368": 5.3440714558, + "3369": 20.5738359572, + "3370": 36.2360475578, + "3371": 53.1375505127, + "3372": 70.4579745011, + "3373": 88.9645133987, + "3374": 107.8747939744, + "3375": 127.9133319606, + "3376": 148.3388388855, + "3377": 169.8302930056, + "3378": 191.6904161353, + "3379": 214.5499694384, + "3380": 237.7584368538, + "3381": 261.8958731266, + "3382": 286.3610916099, + "3383": 311.6811514186, + "3384": 337.3065679295, + "3385": 363.7093245659, + "3386": 390.3938072925, + "3387": 417.7750611383, + "3388": 445.4132986183, + "3389": 473.6649883739, + "3390": 502.1479051107, + "3391": 531.1585342635, + "3392": 560.3737211974, + "3393": 590.028798048, + "3394": 619.8609561832, + "3395": 650.0434456913, + "3396": 680.3748411287, + "3397": 710.9656267973, + "3398": 741.6765553762, + "3399": 772.5549093499, + "3400": 803.5241690657, + "3401": 834.5682285882, + "3402": 865.6735979214, + "3403": 896.7608462726, + "3404": 927.879566541, + "3405": 958.8873165539, + "3406": 989.8965763855, + "3407": 1020.7024546371, + "3408": 1051.47987465, + "3409": 1081.9623044126, + "3410": 1112.386420191, + "3411": 1142.4251012404, + "3412": 1172.3758426987, + "3413": 1201.8522260843, + "3414": 1231.2113913291, + "3415": 1260.0091472321, + "3416": 1288.6608690512, + "3417": 1316.6663458854, + "3418": 1344.4975490225, + "3419": 1371.6002219654, + "3420": 1398.5010693766, + "3421": 1424.5939765601, + "3422": 1450.4583028904, + "3423": 1475.4384675306, + "3424": 1500.1641981003, + "3425": 1523.9330348997, + "3426": 1547.4225885464, + "3427": 1569.8862927651, + "3428": 1592.0469669519, + "3429": 1613.116884612, + "3430": 1633.8612212822, + "3431": 1653.4541990446, + "3432": 1672.7003297785, + "3433": 1690.7390431112, + "3434": 1708.4110122234, + "3435": 1724.8242705661, + "3436": 1740.8523348682, + "3437": 1755.5753625885, + "3438": 1769.8962666332, + "3439": 1782.8709586671, + "3440": 1795.4281843887, + "3441": 1806.6033355544, + "3442": 1817.3473253199, + "3443": 1826.678832401, + "3444": 1835.5671845912, + "3445": 1843.0182203926, + "3446": 1850.0158567421, + "3447": 1855.5570154295, + "3448": 1860.6363194645, + "3449": 1864.245732616, + "3450": 1867.3866586441, + "3451": 1869.0500815551, + "3452": 1870.2402337761, + "3453": 1869.9511016762, + "3454": 1869.1857831031, + "3455": 1866.9452370647, + "3456": 1864.2274680602, + "3457": 1860.0443504948, + "3458": 1855.3848568516, + "3459": 1849.2756766132, + "3460": 1842.692847224, + "3461": 1834.681714456, + "3462": 1826.201528741, + "3463": 1816.3200597244, + "3464": 1805.9759851023, + "3465": 1794.263177481, + "3466": 1782.0960372886, + "3467": 1768.5981161632, + "3468": 1754.6559285442, + "3469": 1739.4261640428, + "3470": 1723.7639524422, + "3471": 1706.8624494873, + "3472": 1689.5420254989, + "3473": 1671.0354866013, + "3474": 1652.1252060256, + "3475": 1632.0866680394, + "3476": 1611.6611611145, + "3477": 1590.1697069944, + "3478": 1568.3095838647, + "3479": 1545.4500305616, + "3480": 1522.2415631462, + "3481": 1498.1041268734, + "3482": 1473.6389083901, + "3483": 1448.3188485814, + "3484": 1422.6934320705, + "3485": 1396.2906754341, + "3486": 1369.6061927075, + "3487": 1342.2249388617, + "3488": 1314.5867013817, + "3489": 1286.3350116261, + "3490": 1257.8520948893, + "3491": 1228.8414657365, + "3492": 1199.6262788026, + "3493": 1169.971201952, + "3494": 1140.1390438168, + "3495": 1109.9565543087, + "3496": 1079.6251588713, + "3497": 1049.0343732027, + "3498": 1018.3234446238, + "3499": 987.4450906501, + "3500": 956.4758309343, + "3501": 925.4317714118, + "3502": 894.3264020786, + "3503": 863.2391537274, + "3504": 832.120433459, + "3505": 801.1126834461, + "3506": 770.1034236145, + "3507": 739.2975453629, + "3508": 708.52012535, + "3509": 678.0376955874, + "3510": 647.613579809, + "3511": 617.5748987596, + "3512": 587.6241573013, + "3513": 558.1477739157, + "3514": 528.7886086709, + "3515": 499.9908527679, + "3516": 471.3391309488, + "3517": 443.3336541146, + "3518": 415.5024509775, + "3519": 388.3997780346, + "3520": 361.4989306234, + "3521": 335.4060234399, + "3522": 309.5416971096, + "3523": 284.5615324694, + "3524": 259.8358018997, + "3525": 236.0669651003, + "3526": 212.5774114536, + "3527": 190.1137072349, + "3528": 167.9530330481, + "3529": 146.883115388, + "3530": 126.1387787178, + "3531": 106.5458009554, + "3532": 87.2996702215, + "3533": 69.2609568888, + "3534": 51.5889877766, + "3535": 35.1757294339, + "3536": 19.1476651318, + "3537": 4.4246374115, + "3538": -9.8962666332, + "3539": -22.8709586671, + "3540": -35.4281843887, + "3541": -46.6033355544, + "3542": -57.3473253199, + "3543": -66.678832401, + "3544": -75.5671845912, + "3545": -83.0182203926, + "3546": -90.0158567421, + "3547": -95.5570154295, + "3548": -100.6363194645, + "3549": -104.245732616, + "3550": -107.3866586441, + "3551": -109.0500815551, + "3552": -110.2402337761, + "3553": -109.9511016762, + "3554": -109.1857831031, + "3555": -106.9452370647, + "3556": -104.2274680602, + "3557": -100.0443504948, + "3558": -95.3848568516, + "3559": -89.2756766132, + "3560": -82.692847224, + "3561": -74.681714456, + "3562": -66.201528741, + "3563": -56.3200597244, + "3564": -45.9759851023, + "3565": -34.263177481, + "3566": -22.0960372886, + "3567": -8.5981161632, + "3568": 5.3440714558, + "3569": 20.5738359572, + "3570": 36.2360475578, + "3571": 53.1375505127, + "3572": 70.4579745011, + "3573": 88.9645133987, + "3574": 107.8747939744, + "3575": 127.9133319606, + "3576": 148.3388388855, + "3577": 169.8302930056, + "3578": 191.6904161353, + "3579": 214.5499694384, + "3580": 237.7584368538, + "3581": 261.8958731266, + "3582": 286.3610916099, + "3583": 311.6811514186, + "3584": 337.3065679295, + "3585": 363.7093245659, + "3586": 390.3938072925, + "3587": 417.7750611383, + "3588": 445.4132986183, + "3589": 473.6649883739, + "3590": 502.1479051107, + "3591": 531.1585342635, + "3592": 560.3737211974, + "3593": 590.028798048, + "3594": 619.8609561832, + "3595": 650.0434456913, + "3596": 680.3748411287, + "3597": 710.9656267973, + "3598": 741.6765553762, + "3599": 772.5549093499, + "3600": 803.5241690657, + "3601": 834.5682285882, + "3602": 865.6735979214, + "3603": 896.7608462726, + "3604": 927.879566541, + "3605": 958.8873165539, + "3606": 989.8965763855, + "3607": 1020.7024546371, + "3608": 1051.47987465, + "3609": 1081.9623044126, + "3610": 1112.386420191, + "3611": 1142.4251012404, + "3612": 1172.3758426987, + "3613": 1201.8522260843, + "3614": 1231.2113913291, + "3615": 1260.0091472321, + "3616": 1288.6608690512, + "3617": 1316.6663458854, + "3618": 1344.4975490225, + "3619": 1371.6002219654, + "3620": 1398.5010693766, + "3621": 1424.5939765601, + "3622": 1450.4583028904, + "3623": 1475.4384675306, + "3624": 1500.1641981003, + "3625": 1523.9330348997, + "3626": 1547.4225885464, + "3627": 1569.8862927651, + "3628": 1592.0469669519, + "3629": 1613.116884612, + "3630": 1633.8612212822, + "3631": 1653.4541990446, + "3632": 1672.7003297785, + "3633": 1690.7390431112, + "3634": 1708.4110122234, + "3635": 1724.8242705661, + "3636": 1740.8523348682, + "3637": 1755.5753625885, + "3638": 1769.8962666332, + "3639": 1782.8709586671, + "3640": 1795.4281843887, + "3641": 1806.6033355544, + "3642": 1817.3473253199, + "3643": 1826.678832401, + "3644": 1835.5671845912, + "3645": 1843.0182203926, + "3646": 1850.0158567421, + "3647": 1855.5570154295, + "3648": 1860.6363194645, + "3649": 1864.245732616, + "3650": 1867.3866586441, + "3651": 1869.0500815551, + "3652": 1870.2402337761, + "3653": 1869.9511016762, + "3654": 1869.1857831031, + "3655": 1866.9452370647, + "3656": 1864.2274680602, + "3657": 1860.0443504948, + "3658": 1855.3848568516, + "3659": 1849.2756766132, + "3660": 1842.692847224, + "3661": 1834.681714456, + "3662": 1826.201528741, + "3663": 1816.3200597244, + "3664": 1805.9759851023, + "3665": 1794.263177481, + "3666": 1782.0960372886, + "3667": 1768.5981161632, + "3668": 1754.6559285442, + "3669": 1739.4261640428, + "3670": 1723.7639524422, + "3671": 1706.8624494873, + "3672": 1689.5420254989, + "3673": 1671.0354866013, + "3674": 1652.1252060256, + "3675": 1632.0866680394, + "3676": 1611.6611611145, + "3677": 1590.1697069944, + "3678": 1568.3095838647, + "3679": 1545.4500305616, + "3680": 1522.2415631462, + "3681": 1498.1041268734, + "3682": 1473.6389083901, + "3683": 1448.3188485814, + "3684": 1422.6934320705, + "3685": 1396.2906754341, + "3686": 1369.6061927075, + "3687": 1342.2249388617, + "3688": 1314.5867013817, + "3689": 1286.3350116261, + "3690": 1257.8520948893, + "3691": 1228.8414657365, + "3692": 1199.6262788026, + "3693": 1169.971201952, + "3694": 1140.1390438168, + "3695": 1109.9565543087, + "3696": 1079.6251588713, + "3697": 1049.0343732027, + "3698": 1018.3234446238, + "3699": 987.4450906501, + "3700": 956.4758309343, + "3701": 925.4317714118, + "3702": 894.3264020786, + "3703": 863.2391537274, + "3704": 832.120433459, + "3705": 801.1126834461, + "3706": 770.1034236145, + "3707": 739.2975453629, + "3708": 708.52012535, + "3709": 678.0376955874, + "3710": 647.613579809, + "3711": 617.5748987596, + "3712": 587.6241573013, + "3713": 558.1477739157, + "3714": 528.7886086709, + "3715": 499.9908527679, + "3716": 471.3391309488, + "3717": 443.3336541146, + "3718": 415.5024509775, + "3719": 388.3997780346, + "3720": 361.4989306234, + "3721": 335.4060234399, + "3722": 309.5416971096, + "3723": 284.5615324694, + "3724": 259.8358018997, + "3725": 236.0669651003, + "3726": 212.5774114536, + "3727": 190.1137072349, + "3728": 167.9530330481, + "3729": 146.883115388, + "3730": 126.1387787178, + "3731": 106.5458009554, + "3732": 87.2996702215, + "3733": 69.2609568888, + "3734": 51.5889877766, + "3735": 35.1757294339, + "3736": 19.1476651318, + "3737": 4.4246374115, + "3738": -9.8962666332, + "3739": -22.8709586671, + "3740": -35.4281843887, + "3741": -46.6033355544, + "3742": -57.3473253199, + "3743": -66.678832401, + "3744": -75.5671845912, + "3745": -83.0182203926, + "3746": -90.0158567421, + "3747": -95.5570154295, + "3748": -100.6363194645, + "3749": -104.245732616, + "3750": -107.3866586441, + "3751": -109.0500815551, + "3752": -110.2402337761, + "3753": -109.9511016762, + "3754": -109.1857831031, + "3755": -106.9452370647, + "3756": -104.2274680602, + "3757": -100.0443504948, + "3758": -95.3848568516, + "3759": -89.2756766132, + "3760": -82.692847224, + "3761": -74.681714456, + "3762": -66.201528741, + "3763": -56.3200597244, + "3764": -45.9759851023, + "3765": -34.263177481, + "3766": -22.0960372886, + "3767": -8.5981161632, + "3768": 5.3440714558, + "3769": 20.5738359572, + "3770": 36.2360475578, + "3771": 53.1375505127, + "3772": 70.4579745011, + "3773": 88.9645133987, + "3774": 107.8747939744, + "3775": 127.9133319606, + "3776": 148.3388388855, + "3777": 169.8302930056, + "3778": 191.6904161353, + "3779": 214.5499694384, + "3780": 237.7584368538, + "3781": 261.8958731266, + "3782": 286.3610916099, + "3783": 311.6811514186, + "3784": 337.3065679295, + "3785": 363.7093245659, + "3786": 390.3938072925, + "3787": 417.7750611383, + "3788": 445.4132986183, + "3789": 473.6649883739, + "3790": 502.1479051107, + "3791": 531.1585342635, + "3792": 560.3737211974, + "3793": 590.028798048, + "3794": 619.8609561832, + "3795": 650.0434456913, + "3796": 680.3748411287, + "3797": 710.9656267973, + "3798": 741.6765553762, + "3799": 772.5549093499, + "3800": 803.5241690657, + "3801": 834.5682285882, + "3802": 865.6735979214, + "3803": 896.7608462726, + "3804": 927.879566541, + "3805": 958.8873165539, + "3806": 989.8965763855, + "3807": 1020.7024546371, + "3808": 1051.47987465, + "3809": 1081.9623044126, + "3810": 1112.386420191, + "3811": 1142.4251012404, + "3812": 1172.3758426987, + "3813": 1201.8522260843, + "3814": 1231.2113913291, + "3815": 1260.0091472321, + "3816": 1288.6608690512, + "3817": 1316.6663458854, + "3818": 1344.4975490225, + "3819": 1371.6002219654, + "3820": 1398.5010693766, + "3821": 1424.5939765601, + "3822": 1450.4583028904, + "3823": 1475.4384675306, + "3824": 1500.1641981003, + "3825": 1523.9330348997, + "3826": 1547.4225885464, + "3827": 1569.8862927651, + "3828": 1592.0469669519, + "3829": 1613.116884612, + "3830": 1633.8612212822, + "3831": 1653.4541990446, + "3832": 1672.7003297785, + "3833": 1690.7390431112, + "3834": 1708.4110122234, + "3835": 1724.8242705661, + "3836": 1740.8523348682, + "3837": 1755.5753625885, + "3838": 1769.8962666332, + "3839": 1782.8709586671, + "3840": 1795.4281843887, + "3841": 1806.6033355544, + "3842": 1817.3473253199, + "3843": 1826.678832401, + "3844": 1835.5671845912, + "3845": 1843.0182203926, + "3846": 1850.0158567421, + "3847": 1855.5570154295, + "3848": 1860.6363194645, + "3849": 1864.245732616, + "3850": 1867.3866586441, + "3851": 1869.0500815551, + "3852": 1870.2402337761, + "3853": 1869.9511016762, + "3854": 1869.1857831031, + "3855": 1866.9452370647, + "3856": 1864.2274680602, + "3857": 1860.0443504948, + "3858": 1855.3848568516, + "3859": 1849.2756766132, + "3860": 1842.692847224, + "3861": 1834.681714456, + "3862": 1826.201528741, + "3863": 1816.3200597244, + "3864": 1805.9759851023, + "3865": 1794.263177481, + "3866": 1782.0960372886, + "3867": 1768.5981161632, + "3868": 1754.6559285442, + "3869": 1739.4261640428, + "3870": 1723.7639524422, + "3871": 1706.8624494873, + "3872": 1689.5420254989, + "3873": 1671.0354866013, + "3874": 1652.1252060256, + "3875": 1632.0866680394, + "3876": 1611.6611611145, + "3877": 1590.1697069944, + "3878": 1568.3095838647, + "3879": 1545.4500305616, + "3880": 1522.2415631462, + "3881": 1498.1041268734, + "3882": 1473.6389083901, + "3883": 1448.3188485814, + "3884": 1422.6934320705, + "3885": 1396.2906754341, + "3886": 1369.6061927075, + "3887": 1342.2249388617, + "3888": 1314.5867013817, + "3889": 1286.3350116261, + "3890": 1257.8520948893, + "3891": 1228.8414657365, + "3892": 1199.6262788026, + "3893": 1169.971201952, + "3894": 1140.1390438168, + "3895": 1109.9565543087, + "3896": 1079.6251588713, + "3897": 1049.0343732027, + "3898": 1018.3234446238, + "3899": 987.4450906501, + "3900": 956.4758309343, + "3901": 925.4317714118, + "3902": 894.3264020786, + "3903": 863.2391537274, + "3904": 832.120433459, + "3905": 801.1126834461, + "3906": 770.1034236145, + "3907": 739.2975453629, + "3908": 708.52012535, + "3909": 678.0376955874, + "3910": 647.613579809, + "3911": 617.5748987596, + "3912": 587.6241573013, + "3913": 558.1477739157, + "3914": 528.7886086709, + "3915": 499.9908527679, + "3916": 471.3391309488, + "3917": 443.3336541146, + "3918": 415.5024509775, + "3919": 388.3997780346, + "3920": 361.4989306234, + "3921": 335.4060234399, + "3922": 309.5416971096, + "3923": 284.5615324694, + "3924": 259.8358018997, + "3925": 236.0669651003, + "3926": 212.5774114536, + "3927": 190.1137072349, + "3928": 167.9530330481, + "3929": 146.883115388, + "3930": 126.1387787178, + "3931": 106.5458009554, + "3932": 87.2996702215, + "3933": 69.2609568888, + "3934": 51.5889877766, + "3935": 35.1757294339, + "3936": 19.1476651318, + "3937": 4.4246374115, + "3938": -9.8962666332, + "3939": -22.8709586671, + "3940": -35.4281843887, + "3941": -46.6033355544, + "3942": -57.3473253199, + "3943": -66.678832401, + "3944": -75.5671845912, + "3945": -83.0182203926, + "3946": -90.0158567421, + "3947": -95.5570154295, + "3948": -100.6363194645, + "3949": -104.245732616, + "3950": -107.3866586441, + "3951": -109.0500815551, + "3952": -110.2402337761, + "3953": -109.9511016762, + "3954": -109.1857831031, + "3955": -106.9452370647, + "3956": -104.2274680602, + "3957": -100.0443504948, + "3958": -95.3848568516, + "3959": -89.2756766132, + "3960": -82.692847224, + "3961": -74.681714456, + "3962": -66.201528741, + "3963": -56.3200597244, + "3964": -45.9759851023, + "3965": -34.263177481, + "3966": -22.0960372886, + "3967": -8.5981161632, + "3968": 5.3440714558, + "3969": 20.5738359572, + "3970": 36.2360475578, + "3971": 53.1375505127, + "3972": 70.4579745011, + "3973": 88.9645133987, + "3974": 107.8747939744, + "3975": 127.9133319606, + "3976": 148.3388388855, + "3977": 169.8302930056, + "3978": 191.6904161353, + "3979": 214.5499694384, + "3980": 237.7584368538, + "3981": 261.8958731266, + "3982": 286.3610916099, + "3983": 311.6811514186, + "3984": 337.3065679295, + "3985": 363.7093245659, + "3986": 390.3938072925, + "3987": 417.7750611383, + "3988": 445.4132986183, + "3989": 473.6649883739, + "3990": 502.1479051107, + "3991": 531.1585342635, + "3992": 560.3737211974, + "3993": 590.028798048, + "3994": 619.8609561832, + "3995": 650.0434456913, + "3996": 680.3748411287, + "3997": 710.9656267973, + "3998": 741.6765553762, + "3999": 772.5549093499, + "4000": 803.5241690657, + "4001": 834.5682285882, + "4002": 865.6735979214, + "4003": 896.7608462726, + "4004": 927.879566541, + "4005": 958.8873165539, + "4006": 989.8965763855, + "4007": 1020.7024546371, + "4008": 1051.47987465, + "4009": 1081.9623044126, + "4010": 1112.386420191, + "4011": 1142.4251012404, + "4012": 1172.3758426987, + "4013": 1201.8522260843, + "4014": 1231.2113913291, + "4015": 1260.0091472321, + "4016": 1288.6608690512, + "4017": 1316.6663458854, + "4018": 1344.4975490225, + "4019": 1371.6002219654, + "4020": 1398.5010693766, + "4021": 1424.5939765601, + "4022": 1450.4583028904, + "4023": 1475.4384675306, + "4024": 1500.1641981003, + "4025": 1523.9330348997, + "4026": 1547.4225885464, + "4027": 1569.8862927651, + "4028": 1592.0469669519, + "4029": 1613.116884612, + "4030": 1633.8612212822, + "4031": 1653.4541990446, + "4032": 1672.7003297785, + "4033": 1690.7390431112, + "4034": 1708.4110122234, + "4035": 1724.8242705661, + "4036": 1740.8523348682, + "4037": 1755.5753625885, + "4038": 1769.8962666332, + "4039": 1782.8709586671, + "4040": 1795.4281843887, + "4041": 1806.6033355544, + "4042": 1817.3473253199, + "4043": 1826.678832401, + "4044": 1835.5671845912, + "4045": 1843.0182203926, + "4046": 1850.0158567421, + "4047": 1855.5570154295, + "4048": 1860.6363194645, + "4049": 1864.245732616, + "4050": 1867.3866586441, + "4051": 1869.0500815551, + "4052": 1870.2402337761, + "4053": 1869.9511016762, + "4054": 1869.1857831031, + "4055": 1866.9452370647, + "4056": 1864.2274680602, + "4057": 1860.0443504948, + "4058": 1855.3848568516, + "4059": 1849.2756766132, + "4060": 1842.692847224, + "4061": 1834.681714456, + "4062": 1826.201528741, + "4063": 1816.3200597244, + "4064": 1805.9759851023, + "4065": 1794.263177481, + "4066": 1782.0960372886, + "4067": 1768.5981161632, + "4068": 1754.6559285442, + "4069": 1739.4261640428, + "4070": 1723.7639524422, + "4071": 1706.8624494873, + "4072": 1689.5420254989, + "4073": 1671.0354866013, + "4074": 1652.1252060256, + "4075": 1632.0866680394, + "4076": 1611.6611611145, + "4077": 1590.1697069944, + "4078": 1568.3095838647, + "4079": 1545.4500305616, + "4080": 1522.2415631462, + "4081": 1498.1041268734, + "4082": 1473.6389083901, + "4083": 1448.3188485814, + "4084": 1422.6934320705, + "4085": 1396.2906754341, + "4086": 1369.6061927075, + "4087": 1342.2249388617, + "4088": 1314.5867013817, + "4089": 1286.3350116261, + "4090": 1257.8520948893, + "4091": 1228.8414657365, + "4092": 1199.6262788026, + "4093": 1169.971201952, + "4094": 1140.1390438168, + "4095": 1109.9565543087, + "4096": 1079.6251588713, + "4097": 1049.0343732027, + "4098": 1018.3234446238, + "4099": 987.4450906501, + "4100": 956.4758309343, + "4101": 925.4317714118, + "4102": 894.3264020786, + "4103": 863.2391537274, + "4104": 832.120433459, + "4105": 801.1126834461, + "4106": 770.1034236145, + "4107": 739.2975453629, + "4108": 708.52012535, + "4109": 678.0376955874, + "4110": 647.613579809, + "4111": 617.5748987596, + "4112": 587.6241573013, + "4113": 558.1477739157, + "4114": 528.7886086709, + "4115": 499.9908527679, + "4116": 471.3391309488, + "4117": 443.3336541146, + "4118": 415.5024509775, + "4119": 388.3997780346, + "4120": 361.4989306234, + "4121": 335.4060234399, + "4122": 309.5416971096, + "4123": 284.5615324694, + "4124": 259.8358018997, + "4125": 236.0669651003, + "4126": 212.5774114536, + "4127": 190.1137072349, + "4128": 167.9530330481, + "4129": 146.883115388, + "4130": 126.1387787178, + "4131": 106.5458009554, + "4132": 87.2996702215, + "4133": 69.2609568888, + "4134": 51.5889877766, + "4135": 35.1757294339, + "4136": 19.1476651318, + "4137": 4.4246374115, + "4138": -9.8962666332, + "4139": -22.8709586671, + "4140": -35.4281843887, + "4141": -46.6033355544, + "4142": -57.3473253199, + "4143": -66.678832401, + "4144": -75.5671845912, + "4145": -83.0182203926, + "4146": -90.0158567421, + "4147": -95.5570154295, + "4148": -100.6363194645, + "4149": -104.245732616, + "4150": -107.3866586441, + "4151": -109.0500815551, + "4152": -110.2402337761, + "4153": -109.9511016762, + "4154": -109.1857831031, + "4155": -106.9452370647, + "4156": -104.2274680602, + "4157": -100.0443504948, + "4158": -95.3848568516, + "4159": -89.2756766132, + "4160": -82.692847224, + "4161": -74.681714456, + "4162": -66.201528741, + "4163": -56.3200597244, + "4164": -45.9759851023, + "4165": -34.263177481, + "4166": -22.0960372886, + "4167": -8.5981161632, + "4168": 5.3440714558, + "4169": 20.5738359572, + "4170": 36.2360475578, + "4171": 53.1375505127, + "4172": 70.4579745011, + "4173": 88.9645133987, + "4174": 107.8747939744, + "4175": 127.9133319606, + "4176": 148.3388388855, + "4177": 169.8302930056, + "4178": 191.6904161353, + "4179": 214.5499694384, + "4180": 237.7584368538, + "4181": 261.8958731266, + "4182": 286.3610916099, + "4183": 311.6811514186, + "4184": 337.3065679295, + "4185": 363.7093245659, + "4186": 390.3938072925, + "4187": 417.7750611383, + "4188": 445.4132986183, + "4189": 473.6649883739, + "4190": 502.1479051107, + "4191": 531.1585342635, + "4192": 560.3737211974, + "4193": 590.028798048, + "4194": 619.8609561832, + "4195": 650.0434456913, + "4196": 680.3748411287, + "4197": 710.9656267973, + "4198": 741.6765553762, + "4199": 772.5549093499, + "4200": 803.5241690657, + "4201": 834.5682285882, + "4202": 865.6735979214, + "4203": 896.7608462726, + "4204": 927.879566541, + "4205": 958.8873165539, + "4206": 989.8965763855, + "4207": 1020.7024546371, + "4208": 1051.47987465, + "4209": 1081.9623044126, + "4210": 1112.386420191, + "4211": 1142.4251012404, + "4212": 1172.3758426987, + "4213": 1201.8522260843, + "4214": 1231.2113913291, + "4215": 1260.0091472321, + "4216": 1288.6608690512, + "4217": 1316.6663458854, + "4218": 1344.4975490225, + "4219": 1371.6002219654, + "4220": 1398.5010693766, + "4221": 1424.5939765601, + "4222": 1450.4583028904, + "4223": 1475.4384675306, + "4224": 1500.1641981003, + "4225": 1523.9330348997, + "4226": 1547.4225885464, + "4227": 1569.8862927651, + "4228": 1592.0469669519, + "4229": 1613.116884612, + "4230": 1633.8612212822, + "4231": 1653.4541990446, + "4232": 1672.7003297785, + "4233": 1690.7390431112, + "4234": 1708.4110122234, + "4235": 1724.8242705661, + "4236": 1740.8523348682, + "4237": 1755.5753625885, + "4238": 1769.8962666332, + "4239": 1782.8709586671, + "4240": 1795.4281843887, + "4241": 1806.6033355544, + "4242": 1817.3473253199, + "4243": 1826.678832401, + "4244": 1835.5671845912, + "4245": 1843.0182203926, + "4246": 1850.0158567421, + "4247": 1855.5570154295, + "4248": 1860.6363194645, + "4249": 1864.245732616, + "4250": 1867.3866586441, + "4251": 1869.0500815551, + "4252": 1870.2402337761, + "4253": 1869.9511016762, + "4254": 1869.1857831031, + "4255": 1866.9452370647, + "4256": 1864.2274680602, + "4257": 1860.0443504948, + "4258": 1855.3848568516, + "4259": 1849.2756766132, + "4260": 1842.692847224, + "4261": 1834.681714456, + "4262": 1826.201528741, + "4263": 1816.3200597244, + "4264": 1805.9759851023, + "4265": 1794.263177481, + "4266": 1782.0960372886, + "4267": 1768.5981161632, + "4268": 1754.6559285442, + "4269": 1739.4261640428, + "4270": 1723.7639524422, + "4271": 1706.8624494873, + "4272": 1689.5420254989, + "4273": 1671.0354866013, + "4274": 1652.1252060256, + "4275": 1632.0866680394, + "4276": 1611.6611611145, + "4277": 1590.1697069944, + "4278": 1568.3095838647, + "4279": 1545.4500305616, + "4280": 1522.2415631462, + "4281": 1498.1041268734, + "4282": 1473.6389083901, + "4283": 1448.3188485814, + "4284": 1422.6934320705, + "4285": 1396.2906754341, + "4286": 1369.6061927075, + "4287": 1342.2249388617, + "4288": 1314.5867013817, + "4289": 1286.3350116261, + "4290": 1257.8520948893, + "4291": 1228.8414657365, + "4292": 1199.6262788026, + "4293": 1169.971201952, + "4294": 1140.1390438168, + "4295": 1109.9565543087, + "4296": 1079.6251588713, + "4297": 1049.0343732027, + "4298": 1018.3234446238, + "4299": 987.4450906501, + "4300": 956.4758309343, + "4301": 925.4317714118, + "4302": 894.3264020786, + "4303": 863.2391537274, + "4304": 832.120433459, + "4305": 801.1126834461, + "4306": 770.1034236145, + "4307": 739.2975453629, + "4308": 708.52012535, + "4309": 678.0376955874, + "4310": 647.613579809, + "4311": 617.5748987596, + "4312": 587.6241573013, + "4313": 558.1477739157, + "4314": 528.7886086709, + "4315": 499.9908527679, + "4316": 471.3391309488, + "4317": 443.3336541146, + "4318": 415.5024509775, + "4319": 388.3997780346, + "4320": 361.4989306234, + "4321": 335.4060234399, + "4322": 309.5416971096, + "4323": 284.5615324694, + "4324": 259.8358018997, + "4325": 236.0669651003, + "4326": 212.5774114536, + "4327": 190.1137072349, + "4328": 167.9530330481, + "4329": 146.883115388, + "4330": 126.1387787178, + "4331": 106.5458009554, + "4332": 87.2996702215, + "4333": 69.2609568888, + "4334": 51.5889877766, + "4335": 35.1757294339, + "4336": 19.1476651318, + "4337": 4.4246374115, + "4338": -9.8962666332, + "4339": -22.8709586671, + "4340": -35.4281843887, + "4341": -46.6033355544, + "4342": -57.3473253199, + "4343": -66.678832401, + "4344": -75.5671845912, + "4345": -83.0182203926, + "4346": -90.0158567421, + "4347": -95.5570154295, + "4348": -100.6363194645, + "4349": -104.245732616, + "4350": -107.3866586441, + "4351": -109.0500815551, + "4352": -110.2402337761, + "4353": -109.9511016762, + "4354": -109.1857831031, + "4355": -106.9452370647, + "4356": -104.2274680602, + "4357": -100.0443504948, + "4358": -95.3848568516, + "4359": -89.2756766132, + "4360": -82.692847224, + "4361": -74.681714456, + "4362": -66.201528741, + "4363": -56.3200597244, + "4364": -45.9759851023, + "4365": -34.263177481, + "4366": -22.0960372886, + "4367": -8.5981161632, + "4368": 5.3440714558, + "4369": 20.5738359572, + "4370": 36.2360475578, + "4371": 53.1375505127, + "4372": 70.4579745011, + "4373": 88.9645133987, + "4374": 107.8747939744, + "4375": 127.9133319606, + "4376": 148.3388388855, + "4377": 169.8302930056, + "4378": 191.6904161353, + "4379": 214.5499694384, + "4380": 237.7584368538, + "4381": 261.8958731266, + "4382": 286.3610916099, + "4383": 311.6811514186, + "4384": 337.3065679295, + "4385": 363.7093245659, + "4386": 390.3938072925, + "4387": 417.7750611383, + "4388": 445.4132986183, + "4389": 473.6649883739, + "4390": 502.1479051107, + "4391": 531.1585342635, + "4392": 560.3737211974, + "4393": 590.028798048, + "4394": 619.8609561832, + "4395": 650.0434456913, + "4396": 680.3748411287, + "4397": 710.9656267973, + "4398": 741.6765553762, + "4399": 772.5549093499, + "4400": 803.5241690657, + "4401": 834.5682285882, + "4402": 865.6735979214, + "4403": 896.7608462726, + "4404": 927.879566541, + "4405": 958.8873165539, + "4406": 989.8965763855, + "4407": 1020.7024546371, + "4408": 1051.47987465, + "4409": 1081.9623044126, + "4410": 1112.386420191, + "4411": 1142.4251012404, + "4412": 1172.3758426987, + "4413": 1201.8522260843, + "4414": 1231.2113913291, + "4415": 1260.0091472321, + "4416": 1288.6608690512, + "4417": 1316.6663458854, + "4418": 1344.4975490225, + "4419": 1371.6002219654, + "4420": 1398.5010693766, + "4421": 1424.5939765601, + "4422": 1450.4583028904, + "4423": 1475.4384675306, + "4424": 1500.1641981003, + "4425": 1523.9330348997, + "4426": 1547.4225885464, + "4427": 1569.8862927651, + "4428": 1592.0469669519, + "4429": 1613.116884612, + "4430": 1633.8612212822, + "4431": 1653.4541990446, + "4432": 1672.7003297785, + "4433": 1690.7390431112, + "4434": 1708.4110122234, + "4435": 1724.8242705661, + "4436": 1740.8523348682, + "4437": 1755.5753625885, + "4438": 1769.8962666332, + "4439": 1782.8709586671, + "4440": 1795.4281843887, + "4441": 1806.6033355544, + "4442": 1817.3473253199, + "4443": 1826.678832401, + "4444": 1835.5671845912, + "4445": 1843.0182203926, + "4446": 1850.0158567421, + "4447": 1855.5570154295, + "4448": 1860.6363194645, + "4449": 1864.245732616, + "4450": 1867.3866586441, + "4451": 1869.0500815551, + "4452": 1870.2402337761, + "4453": 1869.9511016762, + "4454": 1869.1857831031, + "4455": 1866.9452370647, + "4456": 1864.2274680602, + "4457": 1860.0443504948, + "4458": 1855.3848568516, + "4459": 1849.2756766132, + "4460": 1842.692847224, + "4461": 1834.681714456, + "4462": 1826.201528741, + "4463": 1816.3200597244, + "4464": 1805.9759851023, + "4465": 1794.263177481, + "4466": 1782.0960372886, + "4467": 1768.5981161632, + "4468": 1754.6559285442, + "4469": 1739.4261640428, + "4470": 1723.7639524422, + "4471": 1706.8624494873, + "4472": 1689.5420254989, + "4473": 1671.0354866013, + "4474": 1652.1252060256, + "4475": 1632.0866680394, + "4476": 1611.6611611145, + "4477": 1590.1697069944, + "4478": 1568.3095838647, + "4479": 1545.4500305616, + "4480": 1522.2415631462, + "4481": 1498.1041268734, + "4482": 1473.6389083901, + "4483": 1448.3188485814, + "4484": 1422.6934320705, + "4485": 1396.2906754341, + "4486": 1369.6061927075, + "4487": 1342.2249388617, + "4488": 1314.5867013817, + "4489": 1286.3350116261, + "4490": 1257.8520948893, + "4491": 1228.8414657365, + "4492": 1199.6262788026, + "4493": 1169.971201952, + "4494": 1140.1390438168, + "4495": 1109.9565543087, + "4496": 1079.6251588713, + "4497": 1049.0343732027, + "4498": 1018.3234446238, + "4499": 987.4450906501, + "4500": 956.4758309343, + "4501": 925.4317714118, + "4502": 894.3264020786, + "4503": 863.2391537274, + "4504": 832.120433459, + "4505": 801.1126834461, + "4506": 770.1034236145, + "4507": 739.2975453629, + "4508": 708.52012535, + "4509": 678.0376955874, + "4510": 647.613579809, + "4511": 617.5748987596, + "4512": 587.6241573013, + "4513": 558.1477739157, + "4514": 528.7886086709, + "4515": 499.9908527679, + "4516": 471.3391309488, + "4517": 443.3336541146, + "4518": 415.5024509775, + "4519": 388.3997780346, + "4520": 361.4989306234, + "4521": 335.4060234399, + "4522": 309.5416971096, + "4523": 284.5615324694, + "4524": 259.8358018997, + "4525": 236.0669651003, + "4526": 212.5774114536, + "4527": 190.1137072349, + "4528": 167.9530330481, + "4529": 146.883115388, + "4530": 126.1387787178, + "4531": 106.5458009554, + "4532": 87.2996702215, + "4533": 69.2609568888, + "4534": 51.5889877766, + "4535": 35.1757294339, + "4536": 19.1476651318, + "4537": 4.4246374115, + "4538": -9.8962666332, + "4539": -22.8709586671, + "4540": -35.4281843887, + "4541": -46.6033355544, + "4542": -57.3473253199, + "4543": -66.678832401, + "4544": -75.5671845912, + "4545": -83.0182203926, + "4546": -90.0158567421, + "4547": -95.5570154295, + "4548": -100.6363194645, + "4549": -104.245732616, + "4550": -107.3866586441, + "4551": -109.0500815551, + "4552": -110.2402337761, + "4553": -109.9511016762, + "4554": -109.1857831031, + "4555": -106.9452370647, + "4556": -104.2274680602, + "4557": -100.0443504948, + "4558": -95.3848568516, + "4559": -89.2756766132, + "4560": -82.692847224, + "4561": -74.681714456, + "4562": -66.201528741, + "4563": -56.3200597244, + "4564": -45.9759851023, + "4565": -34.263177481, + "4566": -22.0960372886, + "4567": -8.5981161632, + "4568": 5.3440714558, + "4569": 20.5738359572, + "4570": 36.2360475578, + "4571": 53.1375505127, + "4572": 70.4579745011, + "4573": 88.9645133987, + "4574": 107.8747939744, + "4575": 127.9133319606, + "4576": 148.3388388855, + "4577": 169.8302930056, + "4578": 191.6904161353, + "4579": 214.5499694384, + "4580": 237.7584368538, + "4581": 261.8958731266, + "4582": 286.3610916099, + "4583": 311.6811514186, + "4584": 337.3065679295, + "4585": 363.7093245659, + "4586": 390.3938072925, + "4587": 417.7750611383, + "4588": 445.4132986183, + "4589": 473.6649883739, + "4590": 502.1479051107, + "4591": 531.1585342635, + "4592": 560.3737211974, + "4593": 590.028798048, + "4594": 619.8609561832, + "4595": 650.0434456913, + "4596": 680.3748411287, + "4597": 710.9656267973, + "4598": 741.6765553762, + "4599": 772.5549093499, + "4600": 803.5241690657, + "4601": 834.5682285882, + "4602": 865.6735979214, + "4603": 896.7608462726, + "4604": 927.879566541, + "4605": 958.8873165539, + "4606": 989.8965763855, + "4607": 1020.7024546371, + "4608": 1051.47987465, + "4609": 1081.9623044126, + "4610": 1112.386420191, + "4611": 1142.4251012404, + "4612": 1172.3758426987, + "4613": 1201.8522260843, + "4614": 1231.2113913291, + "4615": 1260.0091472321, + "4616": 1288.6608690512, + "4617": 1316.6663458854, + "4618": 1344.4975490225, + "4619": 1371.6002219654, + "4620": 1398.5010693766, + "4621": 1424.5939765601, + "4622": 1450.4583028904, + "4623": 1475.4384675306, + "4624": 1500.1641981003, + "4625": 1523.9330348997, + "4626": 1547.4225885464, + "4627": 1569.8862927651, + "4628": 1592.0469669519, + "4629": 1613.116884612, + "4630": 1633.8612212822, + "4631": 1653.4541990446, + "4632": 1672.7003297785, + "4633": 1690.7390431112, + "4634": 1708.4110122234, + "4635": 1724.8242705661, + "4636": 1740.8523348682, + "4637": 1755.5753625885, + "4638": 1769.8962666332, + "4639": 1782.8709586671, + "4640": 1795.4281843887, + "4641": 1806.6033355544, + "4642": 1817.3473253199, + "4643": 1826.678832401, + "4644": 1835.5671845912, + "4645": 1843.0182203926, + "4646": 1850.0158567421, + "4647": 1855.5570154295, + "4648": 1860.6363194645, + "4649": 1864.245732616, + "4650": 1867.3866586441, + "4651": 1869.0500815551, + "4652": 1870.2402337761, + "4653": 1869.9511016762, + "4654": 1869.1857831031, + "4655": 1866.9452370647, + "4656": 1864.2274680602, + "4657": 1860.0443504948, + "4658": 1855.3848568516, + "4659": 1849.2756766132, + "4660": 1842.692847224, + "4661": 1834.681714456, + "4662": 1826.201528741, + "4663": 1816.3200597244, + "4664": 1805.9759851023, + "4665": 1794.263177481, + "4666": 1782.0960372886, + "4667": 1768.5981161632, + "4668": 1754.6559285442, + "4669": 1739.4261640428, + "4670": 1723.7639524422, + "4671": 1706.8624494873, + "4672": 1689.5420254989, + "4673": 1671.0354866013, + "4674": 1652.1252060256, + "4675": 1632.0866680394, + "4676": 1611.6611611145, + "4677": 1590.1697069944, + "4678": 1568.3095838647, + "4679": 1545.4500305616, + "4680": 1522.2415631462, + "4681": 1498.1041268734, + "4682": 1473.6389083901, + "4683": 1448.3188485814, + "4684": 1422.6934320705, + "4685": 1396.2906754341, + "4686": 1369.6061927075, + "4687": 1342.2249388617, + "4688": 1314.5867013817, + "4689": 1286.3350116261, + "4690": 1257.8520948893, + "4691": 1228.8414657365, + "4692": 1199.6262788026, + "4693": 1169.971201952, + "4694": 1140.1390438168, + "4695": 1109.9565543087, + "4696": 1079.6251588713, + "4697": 1049.0343732027, + "4698": 1018.3234446238, + "4699": 987.4450906501, + "4700": 956.4758309343, + "4701": 925.4317714118, + "4702": 894.3264020786, + "4703": 863.2391537274, + "4704": 832.120433459, + "4705": 801.1126834461, + "4706": 770.1034236145, + "4707": 739.2975453629, + "4708": 708.52012535, + "4709": 678.0376955874, + "4710": 647.613579809, + "4711": 617.5748987596, + "4712": 587.6241573013, + "4713": 558.1477739157, + "4714": 528.7886086709, + "4715": 499.9908527679, + "4716": 471.3391309488, + "4717": 443.3336541146, + "4718": 415.5024509775, + "4719": 388.3997780346, + "4720": 361.4989306234, + "4721": 335.4060234399, + "4722": 309.5416971096, + "4723": 284.5615324694, + "4724": 259.8358018997, + "4725": 236.0669651003, + "4726": 212.5774114536, + "4727": 190.1137072349, + "4728": 167.9530330481, + "4729": 146.883115388, + "4730": 126.1387787178, + "4731": 106.5458009554, + "4732": 87.2996702215, + "4733": 69.2609568888, + "4734": 51.5889877766, + "4735": 35.1757294339, + "4736": 19.1476651318, + "4737": 4.4246374115, + "4738": -9.8962666332, + "4739": -22.8709586671, + "4740": -35.4281843887, + "4741": -46.6033355544, + "4742": -57.3473253199, + "4743": -66.678832401, + "4744": -75.5671845912, + "4745": -83.0182203926, + "4746": -90.0158567421, + "4747": -95.5570154295, + "4748": -100.6363194645, + "4749": -104.245732616, + "4750": -107.3866586441, + "4751": -109.0500815551, + "4752": -110.2402337761, + "4753": -109.9511016762, + "4754": -109.1857831031, + "4755": -106.9452370647, + "4756": -104.2274680602, + "4757": -100.0443504948, + "4758": -95.3848568516, + "4759": -89.2756766132, + "4760": -82.692847224, + "4761": -74.681714456, + "4762": -66.201528741, + "4763": -56.3200597244, + "4764": -45.9759851023, + "4765": -34.263177481, + "4766": -22.0960372886, + "4767": -8.5981161632, + "4768": 5.3440714558, + "4769": 20.5738359572, + "4770": 36.2360475578, + "4771": 53.1375505127, + "4772": 70.4579745011, + "4773": 88.9645133987, + "4774": 107.8747939744, + "4775": 127.9133319606, + "4776": 148.3388388855, + "4777": 169.8302930056, + "4778": 191.6904161353, + "4779": 214.5499694384, + "4780": 237.7584368538, + "4781": 261.8958731266, + "4782": 286.3610916099, + "4783": 311.6811514186, + "4784": 337.3065679295, + "4785": 363.7093245659, + "4786": 390.3938072925, + "4787": 417.7750611383, + "4788": 445.4132986183, + "4789": 473.6649883739, + "4790": 502.1479051107, + "4791": 531.1585342635, + "4792": 560.3737211974, + "4793": 590.028798048, + "4794": 619.8609561832, + "4795": 650.0434456913, + "4796": 680.3748411287, + "4797": 710.9656267973, + "4798": 741.6765553762, + "4799": 772.5549093499, + "4800": 803.5241690657, + "4801": 834.5682285882, + "4802": 865.6735979214, + "4803": 896.7608462726, + "4804": 927.879566541, + "4805": 958.8873165539, + "4806": 989.8965763855, + "4807": 1020.7024546371, + "4808": 1051.47987465, + "4809": 1081.9623044126, + "4810": 1112.386420191, + "4811": 1142.4251012404, + "4812": 1172.3758426987, + "4813": 1201.8522260843, + "4814": 1231.2113913291, + "4815": 1260.0091472321, + "4816": 1288.6608690512, + "4817": 1316.6663458854, + "4818": 1344.4975490225, + "4819": 1371.6002219654, + "4820": 1398.5010693766, + "4821": 1424.5939765601, + "4822": 1450.4583028904, + "4823": 1475.4384675306, + "4824": 1500.1641981003, + "4825": 1523.9330348997, + "4826": 1547.4225885464, + "4827": 1569.8862927651, + "4828": 1592.0469669519, + "4829": 1613.116884612, + "4830": 1633.8612212822, + "4831": 1653.4541990446, + "4832": 1672.7003297785, + "4833": 1690.7390431112, + "4834": 1708.4110122234, + "4835": 1724.8242705661, + "4836": 1740.8523348682, + "4837": 1755.5753625885, + "4838": 1769.8962666332, + "4839": 1782.8709586671, + "4840": 1795.4281843887, + "4841": 1806.6033355544, + "4842": 1817.3473253199, + "4843": 1826.678832401, + "4844": 1835.5671845912, + "4845": 1843.0182203926, + "4846": 1850.0158567421, + "4847": 1855.5570154295, + "4848": 1860.6363194645, + "4849": 1864.245732616, + "4850": 1867.3866586441, + "4851": 1869.0500815551, + "4852": 1870.2402337761, + "4853": 1869.9511016762, + "4854": 1869.1857831031, + "4855": 1866.9452370647, + "4856": 1864.2274680602, + "4857": 1860.0443504948, + "4858": 1855.3848568516, + "4859": 1849.2756766132, + "4860": 1842.692847224, + "4861": 1834.681714456, + "4862": 1826.201528741, + "4863": 1816.3200597244, + "4864": 1805.9759851023, + "4865": 1794.263177481, + "4866": 1782.0960372886, + "4867": 1768.5981161632, + "4868": 1754.6559285442, + "4869": 1739.4261640428, + "4870": 1723.7639524422, + "4871": 1706.8624494873, + "4872": 1689.5420254989, + "4873": 1671.0354866013, + "4874": 1652.1252060256, + "4875": 1632.0866680394, + "4876": 1611.6611611145, + "4877": 1590.1697069944, + "4878": 1568.3095838647, + "4879": 1545.4500305616, + "4880": 1522.2415631462, + "4881": 1498.1041268734, + "4882": 1473.6389083901, + "4883": 1448.3188485814, + "4884": 1422.6934320705, + "4885": 1396.2906754341, + "4886": 1369.6061927075, + "4887": 1342.2249388617, + "4888": 1314.5867013817, + "4889": 1286.3350116261, + "4890": 1257.8520948893, + "4891": 1228.8414657365, + "4892": 1199.6262788026, + "4893": 1169.971201952, + "4894": 1140.1390438168, + "4895": 1109.9565543087, + "4896": 1079.6251588713, + "4897": 1049.0343732027, + "4898": 1018.3234446238, + "4899": 987.4450906501, + "4900": 956.4758309343, + "4901": 925.4317714118, + "4902": 894.3264020786, + "4903": 863.2391537274, + "4904": 832.120433459, + "4905": 801.1126834461, + "4906": 770.1034236145, + "4907": 739.2975453629, + "4908": 708.52012535, + "4909": 678.0376955874, + "4910": 647.613579809, + "4911": 617.5748987596, + "4912": 587.6241573013, + "4913": 558.1477739157, + "4914": 528.7886086709, + "4915": 499.9908527679, + "4916": 471.3391309488, + "4917": 443.3336541146, + "4918": 415.5024509775, + "4919": 388.3997780346, + "4920": 361.4989306234, + "4921": 335.4060234399, + "4922": 309.5416971096, + "4923": 284.5615324694, + "4924": 259.8358018997, + "4925": 236.0669651003, + "4926": 212.5774114536, + "4927": 190.1137072349, + "4928": 167.9530330481, + "4929": 146.883115388, + "4930": 126.1387787178, + "4931": 106.5458009554, + "4932": 87.2996702215, + "4933": 69.2609568888, + "4934": 51.5889877766, + "4935": 35.1757294339, + "4936": 19.1476651318, + "4937": 4.4246374115, + "4938": -9.8962666332, + "4939": -22.8709586671, + "4940": -35.4281843887, + "4941": -46.6033355544, + "4942": -57.3473253199, + "4943": -66.678832401, + "4944": -75.5671845912, + "4945": -83.0182203926, + "4946": -90.0158567421, + "4947": -95.5570154295, + "4948": -100.6363194645, + "4949": -104.245732616, + "4950": -107.3866586441, + "4951": -109.0500815551, + "4952": -110.2402337761, + "4953": -109.9511016762, + "4954": -109.1857831031, + "4955": -106.9452370647, + "4956": -104.2274680602, + "4957": -100.0443504948, + "4958": -95.3848568516, + "4959": -89.2756766132, + "4960": -82.692847224, + "4961": -74.681714456, + "4962": -66.201528741, + "4963": -56.3200597244, + "4964": -45.9759851023, + "4965": -34.263177481, + "4966": -22.0960372886, + "4967": -8.5981161632, + "4968": 5.3440714558, + "4969": 20.5738359572, + "4970": 36.2360475578, + "4971": 53.1375505127, + "4972": 70.4579745011, + "4973": 88.9645133987, + "4974": 107.8747939744, + "4975": 127.9133319606, + "4976": 148.3388388855, + "4977": 169.8302930056, + "4978": 191.6904161353, + "4979": 214.5499694384, + "4980": 237.7584368538, + "4981": 261.8958731266, + "4982": 286.3610916099, + "4983": 311.6811514186, + "4984": 337.3065679295, + "4985": 363.7093245659, + "4986": 390.3938072925, + "4987": 417.7750611383, + "4988": 445.4132986183, + "4989": 473.6649883739, + "4990": 502.1479051107, + "4991": 531.1585342635, + "4992": 560.3737211974, + "4993": 590.028798048, + "4994": 619.8609561832, + "4995": 650.0434456913, + "4996": 680.3748411287, + "4997": 710.9656267973, + "4998": 741.6765553762, + "4999": 772.5549093499, + "5000": 803.5241690657, + "5001": 834.5682285882, + "5002": 865.6735979214, + "5003": 896.7608462726, + "5004": 927.879566541, + "5005": 958.8873165539, + "5006": 989.8965763855, + "5007": 1020.7024546371, + "5008": 1051.47987465, + "5009": 1081.9623044126, + "5010": 1112.386420191, + "5011": 1142.4251012404, + "5012": 1172.3758426987, + "5013": 1201.8522260843, + "5014": 1231.2113913291, + "5015": 1260.0091472321, + "5016": 1288.6608690512, + "5017": 1316.6663458854, + "5018": 1344.4975490225, + "5019": 1371.6002219654, + "5020": 1398.5010693766, + "5021": 1424.5939765601, + "5022": 1450.4583028904, + "5023": 1475.4384675306, + "5024": 1500.1641981003, + "5025": 1523.9330348997, + "5026": 1547.4225885464, + "5027": 1569.8862927651, + "5028": 1592.0469669519, + "5029": 1613.116884612, + "5030": 1633.8612212822, + "5031": 1653.4541990446, + "5032": 1672.7003297785, + "5033": 1690.7390431112, + "5034": 1708.4110122234, + "5035": 1724.8242705661, + "5036": 1740.8523348682, + "5037": 1755.5753625885, + "5038": 1769.8962666332, + "5039": 1782.8709586671, + "5040": 1795.4281843887, + "5041": 1806.6033355544, + "5042": 1817.3473253199, + "5043": 1826.678832401, + "5044": 1835.5671845912, + "5045": 1843.0182203926, + "5046": 1850.0158567421, + "5047": 1855.5570154295, + "5048": 1860.6363194645, + "5049": 1864.245732616, + "5050": 1867.3866586441, + "5051": 1869.0500815551, + "5052": 1870.2402337761, + "5053": 1869.9511016762, + "5054": 1869.1857831031, + "5055": 1866.9452370647, + "5056": 1864.2274680602, + "5057": 1860.0443504948, + "5058": 1855.3848568516, + "5059": 1849.2756766132, + "5060": 1842.692847224, + "5061": 1834.681714456, + "5062": 1826.201528741, + "5063": 1816.3200597244, + "5064": 1805.9759851023, + "5065": 1794.263177481, + "5066": 1782.0960372886, + "5067": 1768.5981161632, + "5068": 1754.6559285442, + "5069": 1739.4261640428, + "5070": 1723.7639524422, + "5071": 1706.8624494873, + "5072": 1689.5420254989, + "5073": 1671.0354866013, + "5074": 1652.1252060256, + "5075": 1632.0866680394, + "5076": 1611.6611611145, + "5077": 1590.1697069944, + "5078": 1568.3095838647, + "5079": 1545.4500305616, + "5080": 1522.2415631462, + "5081": 1498.1041268734, + "5082": 1473.6389083901, + "5083": 1448.3188485814, + "5084": 1422.6934320705, + "5085": 1396.2906754341, + "5086": 1369.6061927075, + "5087": 1342.2249388617, + "5088": 1314.5867013817, + "5089": 1286.3350116261, + "5090": 1257.8520948893, + "5091": 1228.8414657365, + "5092": 1199.6262788026, + "5093": 1169.971201952, + "5094": 1140.1390438168, + "5095": 1109.9565543087, + "5096": 1079.6251588713, + "5097": 1049.0343732027, + "5098": 1018.3234446238, + "5099": 987.4450906501, + "5100": 956.4758309343, + "5101": 925.4317714118, + "5102": 894.3264020786, + "5103": 863.2391537274, + "5104": 832.120433459, + "5105": 801.1126834461, + "5106": 770.1034236145, + "5107": 739.2975453629, + "5108": 708.52012535, + "5109": 678.0376955874, + "5110": 647.613579809, + "5111": 617.5748987596, + "5112": 587.6241573013, + "5113": 558.1477739157, + "5114": 528.7886086709, + "5115": 499.9908527679, + "5116": 471.3391309488, + "5117": 443.3336541146, + "5118": 415.5024509775, + "5119": 388.3997780346, + "5120": 361.4989306234, + "5121": 335.4060234399, + "5122": 309.5416971096, + "5123": 284.5615324694, + "5124": 259.8358018997, + "5125": 236.0669651003, + "5126": 212.5774114536, + "5127": 190.1137072349, + "5128": 167.9530330481, + "5129": 146.883115388, + "5130": 126.1387787178, + "5131": 106.5458009554, + "5132": 87.2996702215, + "5133": 69.2609568888, + "5134": 51.5889877766, + "5135": 35.1757294339, + "5136": 19.1476651318, + "5137": 4.4246374115, + "5138": -9.8962666332, + "5139": -22.8709586671, + "5140": -35.4281843887, + "5141": -46.6033355544, + "5142": -57.3473253199, + "5143": -66.678832401, + "5144": -75.5671845912, + "5145": -83.0182203926, + "5146": -90.0158567421, + "5147": -95.5570154295, + "5148": -100.6363194645, + "5149": -104.245732616, + "5150": -107.3866586441, + "5151": -109.0500815551, + "5152": -110.2402337761, + "5153": -109.9511016762, + "5154": -109.1857831031, + "5155": -106.9452370647, + "5156": -104.2274680602, + "5157": -100.0443504948, + "5158": -95.3848568516, + "5159": -89.2756766132, + "5160": -82.692847224, + "5161": -74.681714456, + "5162": -66.201528741, + "5163": -56.3200597244, + "5164": -45.9759851023, + "5165": -34.263177481, + "5166": -22.0960372886, + "5167": -8.5981161632, + "5168": 5.3440714558, + "5169": 20.5738359572, + "5170": 36.2360475578, + "5171": 53.1375505127, + "5172": 70.4579745011, + "5173": 88.9645133987, + "5174": 107.8747939744, + "5175": 127.9133319606, + "5176": 148.3388388855, + "5177": 169.8302930056, + "5178": 191.6904161353, + "5179": 214.5499694384, + "5180": 237.7584368538, + "5181": 261.8958731266, + "5182": 286.3610916099, + "5183": 311.6811514186, + "5184": 337.3065679295, + "5185": 363.7093245659, + "5186": 390.3938072925, + "5187": 417.7750611383, + "5188": 445.4132986183, + "5189": 473.6649883739, + "5190": 502.1479051107, + "5191": 531.1585342635, + "5192": 560.3737211974, + "5193": 590.028798048, + "5194": 619.8609561832, + "5195": 650.0434456913, + "5196": 680.3748411287, + "5197": 710.9656267973, + "5198": 741.6765553762, + "5199": 772.5549093499, + "5200": 803.5241690657, + "5201": 834.5682285882, + "5202": 865.6735979214, + "5203": 896.7608462726, + "5204": 927.879566541, + "5205": 958.8873165539, + "5206": 989.8965763855, + "5207": 1020.7024546371, + "5208": 1051.47987465, + "5209": 1081.9623044126, + "5210": 1112.386420191, + "5211": 1142.4251012404, + "5212": 1172.3758426987, + "5213": 1201.8522260843, + "5214": 1231.2113913291, + "5215": 1260.0091472321, + "5216": 1288.6608690512, + "5217": 1316.6663458854, + "5218": 1344.4975490225, + "5219": 1371.6002219654, + "5220": 1398.5010693766, + "5221": 1424.5939765601, + "5222": 1450.4583028904, + "5223": 1475.4384675306, + "5224": 1500.1641981003, + "5225": 1523.9330348997, + "5226": 1547.4225885464, + "5227": 1569.8862927651, + "5228": 1592.0469669519, + "5229": 1613.116884612, + "5230": 1633.8612212822, + "5231": 1653.4541990446, + "5232": 1672.7003297785, + "5233": 1690.7390431112, + "5234": 1708.4110122234, + "5235": 1724.8242705661, + "5236": 1740.8523348682, + "5237": 1755.5753625885, + "5238": 1769.8962666332, + "5239": 1782.8709586671, + "5240": 1795.4281843887, + "5241": 1806.6033355544, + "5242": 1817.3473253199, + "5243": 1826.678832401, + "5244": 1835.5671845912, + "5245": 1843.0182203926, + "5246": 1850.0158567421, + "5247": 1855.5570154295, + "5248": 1860.6363194645, + "5249": 1864.245732616, + "5250": 1867.3866586441, + "5251": 1869.0500815551, + "5252": 1870.2402337761, + "5253": 1869.9511016762, + "5254": 1869.1857831031, + "5255": 1866.9452370647, + "5256": 1864.2274680602, + "5257": 1860.0443504948, + "5258": 1855.3848568516, + "5259": 1849.2756766132, + "5260": 1842.692847224, + "5261": 1834.681714456, + "5262": 1826.201528741, + "5263": 1816.3200597244, + "5264": 1805.9759851023, + "5265": 1794.263177481, + "5266": 1782.0960372886, + "5267": 1768.5981161632, + "5268": 1754.6559285442, + "5269": 1739.4261640428, + "5270": 1723.7639524422, + "5271": 1706.8624494873, + "5272": 1689.5420254989, + "5273": 1671.0354866013, + "5274": 1652.1252060256, + "5275": 1632.0866680394, + "5276": 1611.6611611145, + "5277": 1590.1697069944, + "5278": 1568.3095838647, + "5279": 1545.4500305616, + "5280": 1522.2415631462, + "5281": 1498.1041268734, + "5282": 1473.6389083901, + "5283": 1448.3188485814, + "5284": 1422.6934320705, + "5285": 1396.2906754341, + "5286": 1369.6061927075, + "5287": 1342.2249388617, + "5288": 1314.5867013817, + "5289": 1286.3350116261, + "5290": 1257.8520948893, + "5291": 1228.8414657365, + "5292": 1199.6262788026, + "5293": 1169.971201952, + "5294": 1140.1390438168, + "5295": 1109.9565543087, + "5296": 1079.6251588713, + "5297": 1049.0343732027, + "5298": 1018.3234446238, + "5299": 987.4450906501, + "5300": 956.4758309343, + "5301": 925.4317714118, + "5302": 894.3264020786, + "5303": 863.2391537274, + "5304": 832.120433459, + "5305": 801.1126834461, + "5306": 770.1034236145, + "5307": 739.2975453629, + "5308": 708.52012535, + "5309": 678.0376955874, + "5310": 647.613579809, + "5311": 617.5748987596, + "5312": 587.6241573013, + "5313": 558.1477739157, + "5314": 528.7886086709, + "5315": 499.9908527679, + "5316": 471.3391309488, + "5317": 443.3336541146, + "5318": 415.5024509775, + "5319": 388.3997780346, + "5320": 361.4989306234, + "5321": 335.4060234399, + "5322": 309.5416971096, + "5323": 284.5615324694, + "5324": 259.8358018997, + "5325": 236.0669651003, + "5326": 212.5774114536, + "5327": 190.1137072349, + "5328": 167.9530330481, + "5329": 146.883115388, + "5330": 126.1387787178, + "5331": 106.5458009554, + "5332": 87.2996702215, + "5333": 69.2609568888, + "5334": 51.5889877766, + "5335": 35.1757294339, + "5336": 19.1476651318, + "5337": 4.4246374115, + "5338": -9.8962666332, + "5339": -22.8709586671, + "5340": -35.4281843887, + "5341": -46.6033355544, + "5342": -57.3473253199, + "5343": -66.678832401, + "5344": -75.5671845912, + "5345": -83.0182203926, + "5346": -90.0158567421, + "5347": -95.5570154295, + "5348": -100.6363194645, + "5349": -104.245732616, + "5350": -107.3866586441, + "5351": -109.0500815551, + "5352": -110.2402337761, + "5353": -109.9511016762, + "5354": -109.1857831031, + "5355": -106.9452370647, + "5356": -104.2274680602, + "5357": -100.0443504948, + "5358": -95.3848568516, + "5359": -89.2756766132, + "5360": -82.692847224, + "5361": -74.681714456, + "5362": -66.201528741, + "5363": -56.3200597244, + "5364": -45.9759851023, + "5365": -34.263177481, + "5366": -22.0960372886, + "5367": -8.5981161632, + "5368": 5.3440714558, + "5369": 20.5738359572, + "5370": 36.2360475578, + "5371": 53.1375505127, + "5372": 70.4579745011, + "5373": 88.9645133987, + "5374": 107.8747939744, + "5375": 127.9133319606, + "5376": 148.3388388855, + "5377": 169.8302930056, + "5378": 191.6904161353, + "5379": 214.5499694384, + "5380": 237.7584368538, + "5381": 261.8958731266, + "5382": 286.3610916099, + "5383": 311.6811514186, + "5384": 337.3065679295, + "5385": 363.7093245659, + "5386": 390.3938072925, + "5387": 417.7750611383, + "5388": 445.4132986183, + "5389": 473.6649883739, + "5390": 502.1479051107, + "5391": 531.1585342635, + "5392": 560.3737211974, + "5393": 590.028798048, + "5394": 619.8609561832, + "5395": 650.0434456913, + "5396": 680.3748411287, + "5397": 710.9656267973, + "5398": 741.6765553762, + "5399": 772.5549093499, + "5400": 803.5241690657, + "5401": 834.5682285882, + "5402": 865.6735979214, + "5403": 896.7608462726, + "5404": 927.879566541, + "5405": 958.8873165539, + "5406": 989.8965763855, + "5407": 1020.7024546371, + "5408": 1051.47987465, + "5409": 1081.9623044126, + "5410": 1112.386420191, + "5411": 1142.4251012404, + "5412": 1172.3758426987, + "5413": 1201.8522260843, + "5414": 1231.2113913291, + "5415": 1260.0091472321, + "5416": 1288.6608690512, + "5417": 1316.6663458854, + "5418": 1344.4975490225, + "5419": 1371.6002219654, + "5420": 1398.5010693766, + "5421": 1424.5939765601, + "5422": 1450.4583028904, + "5423": 1475.4384675306, + "5424": 1500.1641981003, + "5425": 1523.9330348997, + "5426": 1547.4225885464, + "5427": 1569.8862927651, + "5428": 1592.0469669519, + "5429": 1613.116884612, + "5430": 1633.8612212822, + "5431": 1653.4541990446, + "5432": 1672.7003297785, + "5433": 1690.7390431112, + "5434": 1708.4110122234, + "5435": 1724.8242705661, + "5436": 1740.8523348682, + "5437": 1755.5753625885, + "5438": 1769.8962666332, + "5439": 1782.8709586671, + "5440": 1795.4281843887, + "5441": 1806.6033355544, + "5442": 1817.3473253199, + "5443": 1826.678832401, + "5444": 1835.5671845912, + "5445": 1843.0182203926, + "5446": 1850.0158567421, + "5447": 1855.5570154295, + "5448": 1860.6363194645, + "5449": 1864.245732616, + "5450": 1867.3866586441, + "5451": 1869.0500815551, + "5452": 1870.2402337761, + "5453": 1869.9511016762, + "5454": 1869.1857831031, + "5455": 1866.9452370647, + "5456": 1864.2274680602, + "5457": 1860.0443504948, + "5458": 1855.3848568516, + "5459": 1849.2756766132, + "5460": 1842.692847224, + "5461": 1834.681714456, + "5462": 1826.201528741, + "5463": 1816.3200597244, + "5464": 1805.9759851023, + "5465": 1794.263177481, + "5466": 1782.0960372886, + "5467": 1768.5981161632, + "5468": 1754.6559285442, + "5469": 1739.4261640428, + "5470": 1723.7639524422, + "5471": 1706.8624494873, + "5472": 1689.5420254989, + "5473": 1671.0354866013, + "5474": 1652.1252060256, + "5475": 1632.0866680394, + "5476": 1611.6611611145, + "5477": 1590.1697069944, + "5478": 1568.3095838647, + "5479": 1545.4500305616, + "5480": 1522.2415631462, + "5481": 1498.1041268734, + "5482": 1473.6389083901, + "5483": 1448.3188485814, + "5484": 1422.6934320705, + "5485": 1396.2906754341, + "5486": 1369.6061927075, + "5487": 1342.2249388617, + "5488": 1314.5867013817, + "5489": 1286.3350116261, + "5490": 1257.8520948893, + "5491": 1228.8414657365, + "5492": 1199.6262788026, + "5493": 1169.971201952, + "5494": 1140.1390438168, + "5495": 1109.9565543087, + "5496": 1079.6251588713, + "5497": 1049.0343732027, + "5498": 1018.3234446238, + "5499": 987.4450906501, + "5500": 956.4758309343, + "5501": 925.4317714118, + "5502": 894.3264020786, + "5503": 863.2391537274, + "5504": 832.120433459, + "5505": 801.1126834461, + "5506": 770.1034236145, + "5507": 739.2975453629, + "5508": 708.52012535, + "5509": 678.0376955874, + "5510": 647.613579809, + "5511": 617.5748987596, + "5512": 587.6241573013, + "5513": 558.1477739157, + "5514": 528.7886086709, + "5515": 499.9908527679, + "5516": 471.3391309488, + "5517": 443.3336541146, + "5518": 415.5024509775, + "5519": 388.3997780346, + "5520": 361.4989306234, + "5521": 335.4060234399, + "5522": 309.5416971096, + "5523": 284.5615324694, + "5524": 259.8358018997, + "5525": 236.0669651003, + "5526": 212.5774114536, + "5527": 190.1137072349, + "5528": 167.9530330481, + "5529": 146.883115388, + "5530": 126.1387787178, + "5531": 106.5458009554, + "5532": 87.2996702215, + "5533": 69.2609568888, + "5534": 51.5889877766, + "5535": 35.1757294339, + "5536": 19.1476651318, + "5537": 4.4246374115, + "5538": -9.8962666332, + "5539": -22.8709586671, + "5540": -35.4281843887, + "5541": -46.6033355544, + "5542": -57.3473253199, + "5543": -66.678832401, + "5544": -75.5671845912, + "5545": -83.0182203926, + "5546": -90.0158567421, + "5547": -95.5570154295, + "5548": -100.6363194645, + "5549": -104.245732616, + "5550": -107.3866586441, + "5551": -109.0500815551, + "5552": -110.2402337761, + "5553": -109.9511016762, + "5554": -109.1857831031, + "5555": -106.9452370647, + "5556": -104.2274680602, + "5557": -100.0443504948, + "5558": -95.3848568516, + "5559": -89.2756766132, + "5560": -82.692847224, + "5561": -74.681714456, + "5562": -66.201528741, + "5563": -56.3200597244, + "5564": -45.9759851023, + "5565": -34.263177481, + "5566": -22.0960372886, + "5567": -8.5981161632, + "5568": 5.3440714558, + "5569": 20.5738359572, + "5570": 36.2360475578, + "5571": 53.1375505127, + "5572": 70.4579745011, + "5573": 88.9645133987, + "5574": 107.8747939744, + "5575": 127.9133319606, + "5576": 148.3388388855, + "5577": 169.8302930056, + "5578": 191.6904161353, + "5579": 214.5499694384, + "5580": 237.7584368538, + "5581": 261.8958731266, + "5582": 286.3610916099, + "5583": 311.6811514186, + "5584": 337.3065679295, + "5585": 363.7093245659, + "5586": 390.3938072925, + "5587": 417.7750611383, + "5588": 445.4132986183, + "5589": 473.6649883739, + "5590": 502.1479051107, + "5591": 531.1585342635, + "5592": 560.3737211974, + "5593": 590.028798048, + "5594": 619.8609561832, + "5595": 650.0434456913, + "5596": 680.3748411287, + "5597": 710.9656267973, + "5598": 741.6765553762, + "5599": 772.5549093499, + "5600": 803.5241690657, + "5601": 834.5682285882, + "5602": 865.6735979214, + "5603": 896.7608462726, + "5604": 927.879566541, + "5605": 958.8873165539, + "5606": 989.8965763855, + "5607": 1020.7024546371, + "5608": 1051.47987465, + "5609": 1081.9623044126, + "5610": 1112.386420191, + "5611": 1142.4251012404, + "5612": 1172.3758426987, + "5613": 1201.8522260843, + "5614": 1231.2113913291, + "5615": 1260.0091472321, + "5616": 1288.6608690512, + "5617": 1316.6663458854, + "5618": 1344.4975490225, + "5619": 1371.6002219654, + "5620": 1398.5010693766, + "5621": 1424.5939765601, + "5622": 1450.4583028904, + "5623": 1475.4384675306, + "5624": 1500.1641981003, + "5625": 1523.9330348997, + "5626": 1547.4225885464, + "5627": 1569.8862927651, + "5628": 1592.0469669519, + "5629": 1613.116884612, + "5630": 1633.8612212822, + "5631": 1653.4541990446, + "5632": 1672.7003297785, + "5633": 1690.7390431112, + "5634": 1708.4110122234, + "5635": 1724.8242705661, + "5636": 1740.8523348682, + "5637": 1755.5753625885, + "5638": 1769.8962666332, + "5639": 1782.8709586671, + "5640": 1795.4281843887, + "5641": 1806.6033355544, + "5642": 1817.3473253199, + "5643": 1826.678832401, + "5644": 1835.5671845912, + "5645": 1843.0182203926, + "5646": 1850.0158567421, + "5647": 1855.5570154295, + "5648": 1860.6363194645, + "5649": 1864.245732616, + "5650": 1867.3866586441, + "5651": 1869.0500815551, + "5652": 1870.2402337761, + "5653": 1869.9511016762, + "5654": 1869.1857831031, + "5655": 1866.9452370647, + "5656": 1864.2274680602, + "5657": 1860.0443504948, + "5658": 1855.3848568516, + "5659": 1849.2756766132, + "5660": 1842.692847224, + "5661": 1834.681714456, + "5662": 1826.201528741, + "5663": 1816.3200597244, + "5664": 1805.9759851023, + "5665": 1794.263177481, + "5666": 1782.0960372886, + "5667": 1768.5981161632, + "5668": 1754.6559285442, + "5669": 1739.4261640428, + "5670": 1723.7639524422, + "5671": 1706.8624494873, + "5672": 1689.5420254989, + "5673": 1671.0354866013, + "5674": 1652.1252060256, + "5675": 1632.0866680394, + "5676": 1611.6611611145, + "5677": 1590.1697069944, + "5678": 1568.3095838647, + "5679": 1545.4500305616, + "5680": 1522.2415631462, + "5681": 1498.1041268734, + "5682": 1473.6389083901, + "5683": 1448.3188485814, + "5684": 1422.6934320705, + "5685": 1396.2906754341, + "5686": 1369.6061927075, + "5687": 1342.2249388617, + "5688": 1314.5867013817, + "5689": 1286.3350116261, + "5690": 1257.8520948893, + "5691": 1228.8414657365, + "5692": 1199.6262788026, + "5693": 1169.971201952, + "5694": 1140.1390438168, + "5695": 1109.9565543087, + "5696": 1079.6251588713, + "5697": 1049.0343732027, + "5698": 1018.3234446238, + "5699": 987.4450906501, + "5700": 956.4758309343, + "5701": 925.4317714118, + "5702": 894.3264020786, + "5703": 863.2391537274, + "5704": 832.120433459, + "5705": 801.1126834461, + "5706": 770.1034236145, + "5707": 739.2975453629, + "5708": 708.52012535, + "5709": 678.0376955874, + "5710": 647.613579809, + "5711": 617.5748987596, + "5712": 587.6241573013, + "5713": 558.1477739157, + "5714": 528.7886086709, + "5715": 499.9908527679, + "5716": 471.3391309488, + "5717": 443.3336541146, + "5718": 415.5024509775, + "5719": 388.3997780346, + "5720": 361.4989306234, + "5721": 335.4060234399, + "5722": 309.5416971096, + "5723": 284.5615324694, + "5724": 259.8358018997, + "5725": 236.0669651003, + "5726": 212.5774114536, + "5727": 190.1137072349, + "5728": 167.9530330481, + "5729": 146.883115388, + "5730": 126.1387787178, + "5731": 106.5458009554, + "5732": 87.2996702215, + "5733": 69.2609568888, + "5734": 51.5889877766, + "5735": 35.1757294339, + "5736": 19.1476651318, + "5737": 4.4246374115, + "5738": -9.8962666332, + "5739": -22.8709586671, + "5740": -35.4281843887, + "5741": -46.6033355544, + "5742": -57.3473253199, + "5743": -66.678832401, + "5744": -75.5671845912, + "5745": -83.0182203926, + "5746": -90.0158567421, + "5747": -95.5570154295, + "5748": -100.6363194645, + "5749": -104.245732616, + "5750": -107.3866586441, + "5751": -109.0500815551, + "5752": -110.2402337761, + "5753": -109.9511016762, + "5754": -109.1857831031, + "5755": -106.9452370647, + "5756": -104.2274680602, + "5757": -100.0443504948, + "5758": -95.3848568516, + "5759": -89.2756766132, + "5760": -82.692847224, + "5761": -74.681714456, + "5762": -66.201528741, + "5763": -56.3200597244, + "5764": -45.9759851023, + "5765": -34.263177481, + "5766": -22.0960372886, + "5767": -8.5981161632, + "5768": 5.3440714558, + "5769": 20.5738359572, + "5770": 36.2360475578, + "5771": 53.1375505127, + "5772": 70.4579745011, + "5773": 88.9645133987, + "5774": 107.8747939744, + "5775": 127.9133319606, + "5776": 148.3388388855, + "5777": 169.8302930056, + "5778": 191.6904161353, + "5779": 214.5499694384, + "5780": 237.7584368538, + "5781": 261.8958731266, + "5782": 286.3610916099, + "5783": 311.6811514186, + "5784": 337.3065679295, + "5785": 363.7093245659, + "5786": 390.3938072925, + "5787": 417.7750611383, + "5788": 445.4132986183, + "5789": 473.6649883739, + "5790": 502.1479051107, + "5791": 531.1585342635, + "5792": 560.3737211974, + "5793": 590.028798048, + "5794": 619.8609561832, + "5795": 650.0434456913, + "5796": 680.3748411287, + "5797": 710.9656267973, + "5798": 741.6765553762, + "5799": 772.5549093499, + "5800": 803.5241690657, + "5801": 834.5682285882, + "5802": 865.6735979214, + "5803": 896.7608462726, + "5804": 927.879566541, + "5805": 958.8873165539, + "5806": 989.8965763855, + "5807": 1020.7024546371, + "5808": 1051.47987465, + "5809": 1081.9623044126, + "5810": 1112.386420191, + "5811": 1142.4251012404, + "5812": 1172.3758426987, + "5813": 1201.8522260843, + "5814": 1231.2113913291, + "5815": 1260.0091472321, + "5816": 1288.6608690512, + "5817": 1316.6663458854, + "5818": 1344.4975490225, + "5819": 1371.6002219654, + "5820": 1398.5010693766, + "5821": 1424.5939765601, + "5822": 1450.4583028904, + "5823": 1475.4384675306, + "5824": 1500.1641981003, + "5825": 1523.9330348997, + "5826": 1547.4225885464, + "5827": 1569.8862927651, + "5828": 1592.0469669519, + "5829": 1613.116884612, + "5830": 1633.8612212822, + "5831": 1653.4541990446, + "5832": 1672.7003297785, + "5833": 1690.7390431112, + "5834": 1708.4110122234, + "5835": 1724.8242705661, + "5836": 1740.8523348682, + "5837": 1755.5753625885, + "5838": 1769.8962666332, + "5839": 1782.8709586671, + "5840": 1795.4281843887, + "5841": 1806.6033355544, + "5842": 1817.3473253199, + "5843": 1826.678832401, + "5844": 1835.5671845912, + "5845": 1843.0182203926, + "5846": 1850.0158567421, + "5847": 1855.5570154295, + "5848": 1860.6363194645, + "5849": 1864.245732616, + "5850": 1867.3866586441, + "5851": 1869.0500815551, + "5852": 1870.2402337761, + "5853": 1869.9511016762, + "5854": 1869.1857831031, + "5855": 1866.9452370647, + "5856": 1864.2274680602, + "5857": 1860.0443504948, + "5858": 1855.3848568516, + "5859": 1849.2756766132, + "5860": 1842.692847224, + "5861": 1834.681714456, + "5862": 1826.201528741, + "5863": 1816.3200597244, + "5864": 1805.9759851023, + "5865": 1794.263177481, + "5866": 1782.0960372886, + "5867": 1768.5981161632, + "5868": 1754.6559285442, + "5869": 1739.4261640428, + "5870": 1723.7639524422, + "5871": 1706.8624494873, + "5872": 1689.5420254989, + "5873": 1671.0354866013, + "5874": 1652.1252060256, + "5875": 1632.0866680394, + "5876": 1611.6611611145, + "5877": 1590.1697069944, + "5878": 1568.3095838647, + "5879": 1545.4500305616, + "5880": 1522.2415631462, + "5881": 1498.1041268734, + "5882": 1473.6389083901, + "5883": 1448.3188485814, + "5884": 1422.6934320705, + "5885": 1396.2906754341, + "5886": 1369.6061927075, + "5887": 1342.2249388617, + "5888": 1314.5867013817, + "5889": 1286.3350116261, + "5890": 1257.8520948893, + "5891": 1228.8414657365, + "5892": 1199.6262788026, + "5893": 1169.971201952, + "5894": 1140.1390438168, + "5895": 1109.9565543087, + "5896": 1079.6251588713, + "5897": 1049.0343732027, + "5898": 1018.3234446238, + "5899": 987.4450906501, + "5900": 956.4758309343, + "5901": 925.4317714118, + "5902": 894.3264020786, + "5903": 863.2391537274, + "5904": 832.120433459, + "5905": 801.1126834461, + "5906": 770.1034236145, + "5907": 739.2975453629, + "5908": 708.52012535, + "5909": 678.0376955874, + "5910": 647.613579809, + "5911": 617.5748987596, + "5912": 587.6241573013, + "5913": 558.1477739157, + "5914": 528.7886086709, + "5915": 499.9908527679, + "5916": 471.3391309488, + "5917": 443.3336541146, + "5918": 415.5024509775, + "5919": 388.3997780346, + "5920": 361.4989306234, + "5921": 335.4060234399, + "5922": 309.5416971096, + "5923": 284.5615324694, + "5924": 259.8358018997, + "5925": 236.0669651003, + "5926": 212.5774114536, + "5927": 190.1137072349, + "5928": 167.9530330481, + "5929": 146.883115388, + "5930": 126.1387787178, + "5931": 106.5458009554, + "5932": 87.2996702215, + "5933": 69.2609568888, + "5934": 51.5889877766, + "5935": 35.1757294339, + "5936": 19.1476651318, + "5937": 4.4246374115, + "5938": -9.8962666332, + "5939": -22.8709586671, + "5940": -35.4281843887, + "5941": -46.6033355544, + "5942": -57.3473253199, + "5943": -66.678832401, + "5944": -75.5671845912, + "5945": -83.0182203926, + "5946": -90.0158567421, + "5947": -95.5570154295, + "5948": -100.6363194645, + "5949": -104.245732616, + "5950": -107.3866586441, + "5951": -109.0500815551, + "5952": -110.2402337761, + "5953": -109.9511016762, + "5954": -109.1857831031, + "5955": -106.9452370647, + "5956": -104.2274680602, + "5957": -100.0443504948, + "5958": -95.3848568516, + "5959": -89.2756766132, + "5960": -82.692847224, + "5961": -74.681714456, + "5962": -66.201528741, + "5963": -56.3200597244, + "5964": -45.9759851023, + "5965": -34.263177481, + "5966": -22.0960372886, + "5967": -8.5981161632, + "5968": 5.3440714558, + "5969": 20.5738359572, + "5970": 36.2360475578, + "5971": 53.1375505127, + "5972": 70.4579745011, + "5973": 88.9645133987, + "5974": 107.8747939744, + "5975": 127.9133319606, + "5976": 148.3388388855, + "5977": 169.8302930056, + "5978": 191.6904161353, + "5979": 214.5499694384, + "5980": 237.7584368538, + "5981": 261.8958731266, + "5982": 286.3610916099, + "5983": 311.6811514186, + "5984": 337.3065679295, + "5985": 363.7093245659, + "5986": 390.3938072925, + "5987": 417.7750611383, + "5988": 445.4132986183, + "5989": 473.6649883739, + "5990": 502.1479051107, + "5991": 531.1585342635, + "5992": 560.3737211974, + "5993": 590.028798048, + "5994": 619.8609561832, + "5995": 650.0434456913, + "5996": 680.3748411287, + "5997": 710.9656267973, + "5998": 741.6765553762, + "5999": 772.5549093499, + "6000": 803.5241690657 + }, + "pressure_out": { + "0": 660.0000003073, + "1": 669.5639963687, + "2": 681.7345065044, + "3": 695.9632667633, + "4": 711.8066571413, + "5": 728.9049892976, + "6": 747.078759703, + "7": 766.0280696517, + "8": 785.6806339783, + "9": 805.7649151657, + "10": 826.2894971463, + "11": 846.9926906133, + "12": 867.9477190696, + "13": 888.8904730779, + "14": 909.9475439214, + "15": 930.8443802316, + "16": 951.7529589593, + "17": 972.3831936459, + "18": 992.9466693825, + "19": 1013.1347004316, + "20": 1033.1941704767, + "21": 1052.796144556, + "22": 1072.2194629428, + "23": 1091.1142851184, + "24": 1109.7886940756, + "25": 1127.8719925388, + "26": 1145.699190917, + "27": 1162.8792905707, + "28": 1179.7721579929, + "29": 1195.9674178151, + "30": 1211.8478618531, + "31": 1226.9849361334, + "32": 1241.7824991947, + "33": 1255.7952225799, + "34": 1269.4462006369, + "35": 1282.2748922345, + "36": 1294.7217962217, + "37": 1306.3128429829, + "38": 1317.504087336, + "39": 1327.8097112429, + "40": 1337.6994506352, + "41": 1346.6775944294, + "42": 1355.2256547188, + "43": 1362.8399415222, + "44": 1370.0118079524, + "45": 1376.2315442092, + "46": 1381.9983815417, + "47": 1386.7985823276, + "48": 1391.1372695393, + "49": 1394.4986918674, + "50": 1397.3918594953, + "51": 1399.3010337625, + "52": 1400.7370957215, + "53": 1401.1863485452, + "54": 1401.159522823, + "55": 1400.1469866624, + "56": 1398.6573010815, + "57": 1396.1869075276, + "58": 1393.2401880127, + "59": 1389.3216426776, + "60": 1384.9294823432, + "61": 1379.5782200182, + "62": 1373.7579280182, + "63": 1366.9950473045, + "64": 1359.7695768437, + "65": 1351.6217538496, + "66": 1343.0196090909, + "67": 1333.5189900849, + "68": 1323.5741119493, + "69": 1312.7581850832, + "70": 1301.509816136, + "71": 1289.421262536, + "72": 1276.9137913219, + "73": 1263.6003159907, + "74": 1249.8831013117, + "75": 1235.397244413, + "76": 1220.5244201635, + "77": 1204.9233493654, + "78": 1188.9536106398, + "79": 1172.2988952935, + "80": 1155.2952665721, + "81": 1137.6526345844, + "82": 1119.6822208885, + "83": 1101.1212992274, + "84": 1082.2550212065, + "85": 1062.8490610503, + "86": 1043.161375037, + "87": 1022.9869626402, + "88": 1002.5555667682, + "89": 981.6923211805, + "90": 960.5978487199, + "91": 939.1281075452, + "92": 917.4538086634, + "93": 895.4623030969, + "94": 873.2937162961, + "95": 850.8672367193, + "96": 828.2918512473, + "97": 805.5189046993, + "98": 782.6258152642, + "99": 759.5962761405, + "100": 736.4758312905, + "101": 713.280586647, + "102": 690.0240322037, + "103": 666.7546230645, + "104": 643.4537420155, + "105": 620.2020021014, + "106": 596.9487523737, + "107": 573.8064456748, + "108": 550.692597218, + "109": 527.7510558433, + "110": 504.8678284551, + "111": 482.2175921852, + "112": 459.6552955081, + "113": 437.3857544764, + "114": 415.2334315865, + "115": 393.4324734964, + "116": 371.7775494908, + "117": 350.5312127634, + "118": 329.4591497335, + "119": 308.8512839529, + "120": 288.4452437043, + "121": 268.5571787015, + "122": 248.897694552, + "123": 229.8079194334, + "124": 210.9725783854, + "125": 192.756431772, + "126": 174.8195683113, + "127": 157.5489410116, + "128": 140.5813437437, + "129": 124.3243950332, + "130": 108.3930273127, + "131": 93.2139159409, + "132": 78.3816515978, + "133": 64.3402825827, + "134": 50.665657788, + "135": 37.8174459981, + "136": 25.3544282487, + "137": 13.7500797061, + "138": 2.5478548391, + "139": -7.766833394, + "140": -17.6640553148, + "141": -26.6483758763, + "142": -35.2015350376, + "143": -42.8200309188, + "144": -49.995371909, + "145": -56.2179763872, + "146": -61.9871814134, + "147": -66.7893367116, + "148": -71.1296373574, + "149": -74.4923915625, + "150": -77.3866586441, + "151": -79.2967405015, + "152": -80.733551669, + "153": -81.1834229583, + "154": -81.1571077745, + "155": -80.1449930593, + "156": -78.655655378, + "157": -76.1855490126, + "158": -73.2390665695, + "159": -69.3207169353, + "160": -64.9287181502, + "161": -59.5775891831, + "162": -53.7574072689, + "163": -46.9946174301, + "164": -39.7692219858, + "165": -31.6214609173, + "166": -23.0193672776, + "167": -13.51879047, + "168": -3.5739471687, + "169": 7.2419509418, + "170": 18.4902961516, + "171": 30.5788301565, + "172": 43.086285195, + "173": 56.3997471733, + "174": 70.1169508298, + "175": 84.6027986294, + "176": 99.4756153676, + "177": 115.0766799652, + "178": 131.0464135724, + "179": 147.7011246935, + "180": 164.704749927, + "181": 182.3473790355, + "182": 200.3177903546, + "183": 218.8787100537, + "184": 237.744986455, + "185": 257.1509452742, + "186": 276.8386301838, + "187": 297.0130416695, + "188": 317.4444367895, + "189": 338.3076817563, + "190": 359.4021537044, + "191": 380.871894456, + "192": 402.5461929886, + "193": 424.5376982668, + "194": 446.7062848296, + "195": 469.13276421, + "196": 491.7081495198, + "197": 514.481095934, + "198": 537.3741852585, + "199": 560.403724291, + "200": 583.5241690657, + "201": 606.719413647, + "202": 629.975968039, + "203": 653.2453771358, + "204": 676.5462581499, + "205": 699.7979980352, + "206": 723.0512477391, + "207": 746.1935544183, + "208": 769.3074028588, + "209": 792.2489442201, + "210": 815.1321715972, + "211": 837.782407858, + "212": 860.3447045275, + "213": 882.6142455531, + "214": 904.7665684378, + "215": 926.5675265237, + "216": 948.2224505258, + "217": 969.4687872503, + "218": 990.5408502777, + "219": 1011.1487160564, + "220": 1031.5547563034, + "221": 1051.4428213049, + "222": 1071.1023054532, + "223": 1090.1920805709, + "224": 1109.0274216182, + "225": 1127.2435682309, + "226": 1145.1804316911, + "227": 1162.4510589904, + "228": 1179.418656258, + "229": 1195.6756049682, + "230": 1211.6069726884, + "231": 1226.78608406, + "232": 1241.618348403, + "233": 1255.659717418, + "234": 1269.3343422125, + "235": 1282.1825540023, + "236": 1294.6455717517, + "237": 1306.2499202942, + "238": 1317.4521451611, + "239": 1327.7668333942, + "240": 1337.664055315, + "241": 1346.6483758764, + "242": 1355.2015350377, + "243": 1362.8200309189, + "244": 1369.995371909, + "245": 1376.2179763872, + "246": 1381.9871814135, + "247": 1386.7893367116, + "248": 1391.1296373574, + "249": 1394.4923915625, + "250": 1397.3866586441, + "251": 1399.2967405015, + "252": 1400.733551669, + "253": 1401.1834229584, + "254": 1401.1571077745, + "255": 1400.1449930593, + "256": 1398.6556553781, + "257": 1396.1855490126, + "258": 1393.2390665695, + "259": 1389.3207169353, + "260": 1384.9287181502, + "261": 1379.5775891831, + "262": 1373.7574072689, + "263": 1366.9946174301, + "264": 1359.7692219858, + "265": 1351.6214609173, + "266": 1343.0193672776, + "267": 1333.51879047, + "268": 1323.5739471687, + "269": 1312.7580490582, + "270": 1301.5097038484, + "271": 1289.4211698435, + "272": 1276.913714805, + "273": 1263.6002528267, + "274": 1249.8830491702, + "275": 1235.3972013706, + "276": 1220.5243846324, + "277": 1204.9233200348, + "278": 1188.9535864276, + "279": 1172.2988753065, + "280": 1155.295250073, + "281": 1137.6526209645, + "282": 1119.6822096454, + "283": 1101.1212899463, + "284": 1082.255013545, + "285": 1062.8490547258, + "286": 1043.1613698162, + "287": 1022.9869583305, + "288": 1002.5555632105, + "289": 981.6923182437, + "290": 960.5978462956, + "291": 939.128105544, + "292": 917.4538070114, + "293": 895.4623017332, + "294": 873.2937151704, + "295": 850.86723579, + "296": 828.2918504802, + "297": 805.518904066, + "298": 782.6258147415, + "299": 759.596275709, + "300": 736.4758309343, + "301": 713.280586353, + "302": 690.024031961, + "303": 666.7546228642, + "304": 643.4537418501, + "305": 620.2020019648, + "306": 596.9487522609, + "307": 573.8064455817, + "308": 550.6925971412, + "309": 527.7510557799, + "310": 504.8678284028, + "311": 482.217592142, + "312": 459.6552954725, + "313": 437.3857544469, + "314": 415.2334315622, + "315": 393.4324734763, + "316": 371.7775494743, + "317": 350.5312127497, + "318": 329.4591497223, + "319": 308.8512839436, + "320": 288.4452436966, + "321": 268.5571786951, + "322": 248.8976945468, + "323": 229.8079194291, + "324": 210.9725783818, + "325": 192.7564317691, + "326": 174.8195683089, + "327": 157.5489410096, + "328": 140.581343742, + "329": 124.3243950318, + "330": 108.3930273116, + "331": 93.21391594, + "332": 78.381651597, + "333": 64.340282582, + "334": 50.6656577875, + "335": 37.8174459977, + "336": 25.3544282483, + "337": 13.7500797058, + "338": 2.5478548389, + "339": -7.7668333942, + "340": -17.664055315, + "341": -26.6483758764, + "342": -35.2015350377, + "343": -42.8200309189, + "344": -49.995371909, + "345": -56.2179763872, + "346": -61.9871814135, + "347": -66.7893367116, + "348": -71.1296373574, + "349": -74.4923915625, + "350": -77.3866586441, + "351": -79.2967405015, + "352": -80.733551669, + "353": -81.1834229584, + "354": -81.1571077745, + "355": -80.1449930593, + "356": -78.6556553781, + "357": -76.1855490126, + "358": -73.2390665695, + "359": -69.3207169353, + "360": -64.9287181502, + "361": -59.5775891831, + "362": -53.7574072689, + "363": -46.9946174301, + "364": -39.7692219858, + "365": -31.6214609173, + "366": -23.0193672776, + "367": -13.51879047, + "368": -3.5739471687, + "369": 7.2419509418, + "370": 18.4902961516, + "371": 30.5788301565, + "372": 43.086285195, + "373": 56.3997471733, + "374": 70.1169508298, + "375": 84.6027986294, + "376": 99.4756153676, + "377": 115.0766799652, + "378": 131.0464135724, + "379": 147.7011246935, + "380": 164.704749927, + "381": 182.3473790355, + "382": 200.3177903546, + "383": 218.8787100537, + "384": 237.744986455, + "385": 257.1509452742, + "386": 276.8386301838, + "387": 297.0130416695, + "388": 317.4444367895, + "389": 338.3076817563, + "390": 359.4021537044, + "391": 380.871894456, + "392": 402.5461929886, + "393": 424.5376982668, + "394": 446.7062848296, + "395": 469.13276421, + "396": 491.7081495198, + "397": 514.481095934, + "398": 537.3741852585, + "399": 560.403724291, + "400": 583.5241690657, + "401": 606.719413647, + "402": 629.975968039, + "403": 653.2453771358, + "404": 676.5462581499, + "405": 699.7979980352, + "406": 723.0512477391, + "407": 746.1935544183, + "408": 769.3074028588, + "409": 792.2489442201, + "410": 815.1321715972, + "411": 837.782407858, + "412": 860.3447045275, + "413": 882.6142455531, + "414": 904.7665684378, + "415": 926.5675265237, + "416": 948.2224505258, + "417": 969.4687872503, + "418": 990.5408502777, + "419": 1011.1487160564, + "420": 1031.5547563034, + "421": 1051.4428213049, + "422": 1071.1023054532, + "423": 1090.1920805709, + "424": 1109.0274216182, + "425": 1127.2435682309, + "426": 1145.1804316911, + "427": 1162.4510589904, + "428": 1179.418656258, + "429": 1195.6756049682, + "430": 1211.6069726884, + "431": 1226.78608406, + "432": 1241.618348403, + "433": 1255.659717418, + "434": 1269.3343422125, + "435": 1282.1825540023, + "436": 1294.6455717517, + "437": 1306.2499202942, + "438": 1317.4521451611, + "439": 1327.7668333942, + "440": 1337.664055315, + "441": 1346.6483758764, + "442": 1355.2015350377, + "443": 1362.8200309189, + "444": 1369.995371909, + "445": 1376.2179763872, + "446": 1381.9871814135, + "447": 1386.7893367116, + "448": 1391.1296373574, + "449": 1394.4923915625, + "450": 1397.3866586441, + "451": 1399.2967405015, + "452": 1400.733551669, + "453": 1401.1834229584, + "454": 1401.1571077745, + "455": 1400.1449930593, + "456": 1398.6556553781, + "457": 1396.1855490126, + "458": 1393.2390665695, + "459": 1389.3207169353, + "460": 1384.9287181502, + "461": 1379.5775891831, + "462": 1373.7574072689, + "463": 1366.9946174301, + "464": 1359.7692219858, + "465": 1351.6214609173, + "466": 1343.0193672776, + "467": 1333.51879047, + "468": 1323.5739471687, + "469": 1312.7580490582, + "470": 1301.5097038484, + "471": 1289.4211698435, + "472": 1276.913714805, + "473": 1263.6002528267, + "474": 1249.8830491702, + "475": 1235.3972013706, + "476": 1220.5243846324, + "477": 1204.9233200348, + "478": 1188.9535864276, + "479": 1172.2988753065, + "480": 1155.295250073, + "481": 1137.6526209645, + "482": 1119.6822096454, + "483": 1101.1212899463, + "484": 1082.255013545, + "485": 1062.8490547258, + "486": 1043.1613698162, + "487": 1022.9869583305, + "488": 1002.5555632105, + "489": 981.6923182437, + "490": 960.5978462956, + "491": 939.128105544, + "492": 917.4538070114, + "493": 895.4623017332, + "494": 873.2937151704, + "495": 850.86723579, + "496": 828.2918504802, + "497": 805.518904066, + "498": 782.6258147415, + "499": 759.596275709, + "500": 736.4758309343, + "501": 713.280586353, + "502": 690.024031961, + "503": 666.7546228642, + "504": 643.4537418501, + "505": 620.2020019648, + "506": 596.9487522609, + "507": 573.8064455817, + "508": 550.6925971412, + "509": 527.7510557799, + "510": 504.8678284028, + "511": 482.217592142, + "512": 459.6552954725, + "513": 437.3857544469, + "514": 415.2334315622, + "515": 393.4324734763, + "516": 371.7775494742, + "517": 350.5312127497, + "518": 329.4591497223, + "519": 308.8512839436, + "520": 288.4452436966, + "521": 268.5571786951, + "522": 248.8976945468, + "523": 229.8079194291, + "524": 210.9725783818, + "525": 192.7564317691, + "526": 174.8195683089, + "527": 157.5489410096, + "528": 140.581343742, + "529": 124.3243950318, + "530": 108.3930273116, + "531": 93.21391594, + "532": 78.381651597, + "533": 64.340282582, + "534": 50.6656577875, + "535": 37.8174459977, + "536": 25.3544282483, + "537": 13.7500797058, + "538": 2.5478548389, + "539": -7.7668333942, + "540": -17.664055315, + "541": -26.6483758764, + "542": -35.2015350377, + "543": -42.8200309189, + "544": -49.995371909, + "545": -56.2179763872, + "546": -61.9871814135, + "547": -66.7893367116, + "548": -71.1296373574, + "549": -74.4923915625, + "550": -77.3866586441, + "551": -79.2967405015, + "552": -80.733551669, + "553": -81.1834229584, + "554": -81.1571077745, + "555": -80.1449930593, + "556": -78.6556553781, + "557": -76.1855490126, + "558": -73.2390665695, + "559": -69.3207169353, + "560": -64.9287181502, + "561": -59.5775891831, + "562": -53.7574072689, + "563": -46.9946174301, + "564": -39.7692219858, + "565": -31.6214609173, + "566": -23.0193672776, + "567": -13.51879047, + "568": -3.5739471687, + "569": 7.2419509418, + "570": 18.4902961516, + "571": 30.5788301565, + "572": 43.086285195, + "573": 56.3997471733, + "574": 70.1169508298, + "575": 84.6027986294, + "576": 99.4756153676, + "577": 115.0766799652, + "578": 131.0464135724, + "579": 147.7011246935, + "580": 164.704749927, + "581": 182.3473790355, + "582": 200.3177903546, + "583": 218.8787100537, + "584": 237.744986455, + "585": 257.1509452742, + "586": 276.8386301838, + "587": 297.0130416695, + "588": 317.4444367895, + "589": 338.3076817563, + "590": 359.4021537044, + "591": 380.871894456, + "592": 402.5461929886, + "593": 424.5376982668, + "594": 446.7062848296, + "595": 469.13276421, + "596": 491.7081495198, + "597": 514.481095934, + "598": 537.3741852585, + "599": 560.403724291, + "600": 583.5241690657, + "601": 606.719413647, + "602": 629.975968039, + "603": 653.2453771358, + "604": 676.5462581499, + "605": 699.7979980352, + "606": 723.0512477391, + "607": 746.1935544183, + "608": 769.3074028588, + "609": 792.2489442201, + "610": 815.1321715972, + "611": 837.782407858, + "612": 860.3447045275, + "613": 882.6142455531, + "614": 904.7665684378, + "615": 926.5675265237, + "616": 948.2224505258, + "617": 969.4687872503, + "618": 990.5408502777, + "619": 1011.1487160564, + "620": 1031.5547563034, + "621": 1051.4428213049, + "622": 1071.1023054532, + "623": 1090.1920805709, + "624": 1109.0274216182, + "625": 1127.2435682309, + "626": 1145.1804316911, + "627": 1162.4510589904, + "628": 1179.418656258, + "629": 1195.6756049682, + "630": 1211.6069726884, + "631": 1226.78608406, + "632": 1241.618348403, + "633": 1255.659717418, + "634": 1269.3343422125, + "635": 1282.1825540023, + "636": 1294.6455717517, + "637": 1306.2499202942, + "638": 1317.4521451611, + "639": 1327.7668333942, + "640": 1337.664055315, + "641": 1346.6483758764, + "642": 1355.2015350377, + "643": 1362.8200309189, + "644": 1369.995371909, + "645": 1376.2179763872, + "646": 1381.9871814135, + "647": 1386.7893367116, + "648": 1391.1296373574, + "649": 1394.4923915625, + "650": 1397.3866586441, + "651": 1399.2967405015, + "652": 1400.733551669, + "653": 1401.1834229584, + "654": 1401.1571077745, + "655": 1400.1449930593, + "656": 1398.6556553781, + "657": 1396.1855490126, + "658": 1393.2390665695, + "659": 1389.3207169353, + "660": 1384.9287181502, + "661": 1379.5775891831, + "662": 1373.7574072689, + "663": 1366.9946174301, + "664": 1359.7692219858, + "665": 1351.6214609173, + "666": 1343.0193672776, + "667": 1333.51879047, + "668": 1323.5739471687, + "669": 1312.7580490582, + "670": 1301.5097038484, + "671": 1289.4211698435, + "672": 1276.913714805, + "673": 1263.6002528267, + "674": 1249.8830491702, + "675": 1235.3972013706, + "676": 1220.5243846324, + "677": 1204.9233200348, + "678": 1188.9535864276, + "679": 1172.2988753065, + "680": 1155.295250073, + "681": 1137.6526209645, + "682": 1119.6822096454, + "683": 1101.1212899463, + "684": 1082.255013545, + "685": 1062.8490547258, + "686": 1043.1613698162, + "687": 1022.9869583305, + "688": 1002.5555632105, + "689": 981.6923182437, + "690": 960.5978462956, + "691": 939.128105544, + "692": 917.4538070114, + "693": 895.4623017332, + "694": 873.2937151704, + "695": 850.86723579, + "696": 828.2918504802, + "697": 805.518904066, + "698": 782.6258147415, + "699": 759.596275709, + "700": 736.4758309343, + "701": 713.280586353, + "702": 690.024031961, + "703": 666.7546228642, + "704": 643.4537418501, + "705": 620.2020019648, + "706": 596.9487522609, + "707": 573.8064455817, + "708": 550.6925971412, + "709": 527.7510557799, + "710": 504.8678284028, + "711": 482.217592142, + "712": 459.6552954725, + "713": 437.3857544469, + "714": 415.2334315622, + "715": 393.4324734763, + "716": 371.7775494742, + "717": 350.5312127497, + "718": 329.4591497223, + "719": 308.8512839436, + "720": 288.4452436966, + "721": 268.5571786951, + "722": 248.8976945468, + "723": 229.8079194291, + "724": 210.9725783818, + "725": 192.7564317691, + "726": 174.8195683089, + "727": 157.5489410096, + "728": 140.581343742, + "729": 124.3243950318, + "730": 108.3930273116, + "731": 93.21391594, + "732": 78.381651597, + "733": 64.340282582, + "734": 50.6656577875, + "735": 37.8174459977, + "736": 25.3544282483, + "737": 13.7500797058, + "738": 2.5478548389, + "739": -7.7668333942, + "740": -17.664055315, + "741": -26.6483758764, + "742": -35.2015350377, + "743": -42.8200309189, + "744": -49.995371909, + "745": -56.2179763872, + "746": -61.9871814135, + "747": -66.7893367116, + "748": -71.1296373574, + "749": -74.4923915625, + "750": -77.3866586441, + "751": -79.2967405015, + "752": -80.733551669, + "753": -81.1834229584, + "754": -81.1571077745, + "755": -80.1449930593, + "756": -78.6556553781, + "757": -76.1855490126, + "758": -73.2390665695, + "759": -69.3207169353, + "760": -64.9287181502, + "761": -59.5775891831, + "762": -53.7574072689, + "763": -46.9946174301, + "764": -39.7692219858, + "765": -31.6214609173, + "766": -23.0193672776, + "767": -13.51879047, + "768": -3.5739471687, + "769": 7.2419509418, + "770": 18.4902961516, + "771": 30.5788301565, + "772": 43.086285195, + "773": 56.3997471733, + "774": 70.1169508298, + "775": 84.6027986294, + "776": 99.4756153676, + "777": 115.0766799652, + "778": 131.0464135724, + "779": 147.7011246935, + "780": 164.704749927, + "781": 182.3473790355, + "782": 200.3177903546, + "783": 218.8787100537, + "784": 237.744986455, + "785": 257.1509452742, + "786": 276.8386301838, + "787": 297.0130416695, + "788": 317.4444367895, + "789": 338.3076817563, + "790": 359.4021537044, + "791": 380.871894456, + "792": 402.5461929886, + "793": 424.5376982668, + "794": 446.7062848296, + "795": 469.13276421, + "796": 491.7081495198, + "797": 514.481095934, + "798": 537.3741852585, + "799": 560.403724291, + "800": 583.5241690657, + "801": 606.719413647, + "802": 629.975968039, + "803": 653.2453771358, + "804": 676.5462581499, + "805": 699.7979980352, + "806": 723.0512477391, + "807": 746.1935544183, + "808": 769.3074028588, + "809": 792.2489442201, + "810": 815.1321715972, + "811": 837.782407858, + "812": 860.3447045275, + "813": 882.6142455531, + "814": 904.7665684378, + "815": 926.5675265237, + "816": 948.2224505257, + "817": 969.4687872503, + "818": 990.5408502777, + "819": 1011.1487160564, + "820": 1031.5547563034, + "821": 1051.4428213049, + "822": 1071.1023054532, + "823": 1090.1920805709, + "824": 1109.0274216182, + "825": 1127.2435682309, + "826": 1145.1804316911, + "827": 1162.4510589904, + "828": 1179.418656258, + "829": 1195.6756049682, + "830": 1211.6069726884, + "831": 1226.78608406, + "832": 1241.618348403, + "833": 1255.659717418, + "834": 1269.3343422125, + "835": 1282.1825540023, + "836": 1294.6455717517, + "837": 1306.2499202942, + "838": 1317.4521451611, + "839": 1327.7668333942, + "840": 1337.6640553149, + "841": 1346.6483758764, + "842": 1355.2015350377, + "843": 1362.8200309189, + "844": 1369.995371909, + "845": 1376.2179763872, + "846": 1381.9871814135, + "847": 1386.7893367116, + "848": 1391.1296373574, + "849": 1394.4923915625, + "850": 1397.3866586441, + "851": 1399.2967405015, + "852": 1400.733551669, + "853": 1401.1834229584, + "854": 1401.1571077745, + "855": 1400.1449930593, + "856": 1398.6556553781, + "857": 1396.1855490126, + "858": 1393.2390665695, + "859": 1389.3207169353, + "860": 1384.9287181502, + "861": 1379.5775891831, + "862": 1373.7574072689, + "863": 1366.9946174301, + "864": 1359.7692219858, + "865": 1351.6214609173, + "866": 1343.0193672777, + "867": 1333.51879047, + "868": 1323.5739471687, + "869": 1312.7580490582, + "870": 1301.5097038485, + "871": 1289.4211698435, + "872": 1276.913714805, + "873": 1263.6002528267, + "874": 1249.8830491702, + "875": 1235.3972013706, + "876": 1220.5243846324, + "877": 1204.9233200348, + "878": 1188.9535864276, + "879": 1172.2988753065, + "880": 1155.295250073, + "881": 1137.6526209645, + "882": 1119.6822096454, + "883": 1101.1212899463, + "884": 1082.255013545, + "885": 1062.8490547258, + "886": 1043.1613698162, + "887": 1022.9869583305, + "888": 1002.5555632105, + "889": 981.6923182437, + "890": 960.5978462956, + "891": 939.128105544, + "892": 917.4538070114, + "893": 895.4623017332, + "894": 873.2937151704, + "895": 850.86723579, + "896": 828.2918504802, + "897": 805.518904066, + "898": 782.6258147415, + "899": 759.596275709, + "900": 736.4758309343, + "901": 713.280586353, + "902": 690.024031961, + "903": 666.7546228642, + "904": 643.4537418501, + "905": 620.2020019648, + "906": 596.9487522609, + "907": 573.8064455817, + "908": 550.6925971412, + "909": 527.7510557799, + "910": 504.8678284028, + "911": 482.217592142, + "912": 459.6552954725, + "913": 437.3857544469, + "914": 415.2334315622, + "915": 393.4324734763, + "916": 371.7775494743, + "917": 350.5312127497, + "918": 329.4591497223, + "919": 308.8512839436, + "920": 288.4452436966, + "921": 268.5571786951, + "922": 248.8976945468, + "923": 229.8079194291, + "924": 210.9725783818, + "925": 192.7564317691, + "926": 174.8195683089, + "927": 157.5489410096, + "928": 140.581343742, + "929": 124.3243950318, + "930": 108.3930273116, + "931": 93.21391594, + "932": 78.381651597, + "933": 64.340282582, + "934": 50.6656577875, + "935": 37.8174459977, + "936": 25.3544282483, + "937": 13.7500797058, + "938": 2.5478548389, + "939": -7.7668333942, + "940": -17.6640553149, + "941": -26.6483758764, + "942": -35.2015350377, + "943": -42.8200309189, + "944": -49.995371909, + "945": -56.2179763872, + "946": -61.9871814135, + "947": -66.7893367116, + "948": -71.1296373574, + "949": -74.4923915625, + "950": -77.3866586441, + "951": -79.2967405015, + "952": -80.733551669, + "953": -81.1834229584, + "954": -81.1571077745, + "955": -80.1449930593, + "956": -78.6556553781, + "957": -76.1855490126, + "958": -73.2390665695, + "959": -69.3207169353, + "960": -64.9287181502, + "961": -59.5775891831, + "962": -53.7574072689, + "963": -46.9946174301, + "964": -39.7692219858, + "965": -31.6214609173, + "966": -23.0193672776, + "967": -13.51879047, + "968": -3.5739471687, + "969": 7.2419509418, + "970": 18.4902961515, + "971": 30.5788301565, + "972": 43.086285195, + "973": 56.3997471733, + "974": 70.1169508298, + "975": 84.6027986294, + "976": 99.4756153676, + "977": 115.0766799652, + "978": 131.0464135724, + "979": 147.7011246935, + "980": 164.704749927, + "981": 182.3473790355, + "982": 200.3177903546, + "983": 218.8787100537, + "984": 237.744986455, + "985": 257.1509452742, + "986": 276.8386301838, + "987": 297.0130416695, + "988": 317.4444367895, + "989": 338.3076817563, + "990": 359.4021537044, + "991": 380.871894456, + "992": 402.5461929886, + "993": 424.5376982668, + "994": 446.7062848296, + "995": 469.13276421, + "996": 491.7081495198, + "997": 514.481095934, + "998": 537.3741852585, + "999": 560.403724291, + "1000": 583.5241690657, + "1001": 606.719413647, + "1002": 629.975968039, + "1003": 653.2453771358, + "1004": 676.5462581499, + "1005": 699.7979980352, + "1006": 723.0512477391, + "1007": 746.1935544183, + "1008": 769.3074028588, + "1009": 792.2489442201, + "1010": 815.1321715972, + "1011": 837.782407858, + "1012": 860.3447045275, + "1013": 882.6142455531, + "1014": 904.7665684378, + "1015": 926.5675265237, + "1016": 948.2224505257, + "1017": 969.4687872503, + "1018": 990.5408502777, + "1019": 1011.1487160564, + "1020": 1031.5547563034, + "1021": 1051.4428213049, + "1022": 1071.1023054532, + "1023": 1090.1920805709, + "1024": 1109.0274216182, + "1025": 1127.2435682309, + "1026": 1145.1804316911, + "1027": 1162.4510589904, + "1028": 1179.418656258, + "1029": 1195.6756049682, + "1030": 1211.6069726884, + "1031": 1226.78608406, + "1032": 1241.618348403, + "1033": 1255.659717418, + "1034": 1269.3343422125, + "1035": 1282.1825540023, + "1036": 1294.6455717517, + "1037": 1306.2499202942, + "1038": 1317.4521451611, + "1039": 1327.7668333942, + "1040": 1337.6640553149, + "1041": 1346.6483758764, + "1042": 1355.2015350377, + "1043": 1362.8200309189, + "1044": 1369.995371909, + "1045": 1376.2179763872, + "1046": 1381.9871814135, + "1047": 1386.7893367116, + "1048": 1391.1296373574, + "1049": 1394.4923915625, + "1050": 1397.3866586441, + "1051": 1399.2967405015, + "1052": 1400.733551669, + "1053": 1401.1834229584, + "1054": 1401.1571077745, + "1055": 1400.1449930593, + "1056": 1398.6556553781, + "1057": 1396.1855490126, + "1058": 1393.2390665695, + "1059": 1389.3207169353, + "1060": 1384.9287181502, + "1061": 1379.5775891831, + "1062": 1373.7574072689, + "1063": 1366.9946174301, + "1064": 1359.7692219858, + "1065": 1351.6214609173, + "1066": 1343.0193672777, + "1067": 1333.51879047, + "1068": 1323.5739471687, + "1069": 1312.7580490582, + "1070": 1301.5097038485, + "1071": 1289.4211698435, + "1072": 1276.913714805, + "1073": 1263.6002528267, + "1074": 1249.8830491702, + "1075": 1235.3972013706, + "1076": 1220.5243846324, + "1077": 1204.9233200348, + "1078": 1188.9535864276, + "1079": 1172.2988753065, + "1080": 1155.295250073, + "1081": 1137.6526209645, + "1082": 1119.6822096454, + "1083": 1101.1212899463, + "1084": 1082.255013545, + "1085": 1062.8490547258, + "1086": 1043.1613698162, + "1087": 1022.9869583305, + "1088": 1002.5555632105, + "1089": 981.6923182437, + "1090": 960.5978462956, + "1091": 939.128105544, + "1092": 917.4538070114, + "1093": 895.4623017332, + "1094": 873.2937151704, + "1095": 850.86723579, + "1096": 828.2918504802, + "1097": 805.518904066, + "1098": 782.6258147415, + "1099": 759.596275709, + "1100": 736.4758309343, + "1101": 713.280586353, + "1102": 690.024031961, + "1103": 666.7546228642, + "1104": 643.4537418501, + "1105": 620.2020019648, + "1106": 596.9487522609, + "1107": 573.8064455817, + "1108": 550.6925971412, + "1109": 527.7510557799, + "1110": 504.8678284028, + "1111": 482.217592142, + "1112": 459.6552954725, + "1113": 437.3857544469, + "1114": 415.2334315622, + "1115": 393.4324734763, + "1116": 371.7775494743, + "1117": 350.5312127497, + "1118": 329.4591497223, + "1119": 308.8512839436, + "1120": 288.4452436966, + "1121": 268.5571786951, + "1122": 248.8976945468, + "1123": 229.8079194291, + "1124": 210.9725783818, + "1125": 192.7564317691, + "1126": 174.8195683089, + "1127": 157.5489410096, + "1128": 140.581343742, + "1129": 124.3243950318, + "1130": 108.3930273116, + "1131": 93.21391594, + "1132": 78.381651597, + "1133": 64.340282582, + "1134": 50.6656577875, + "1135": 37.8174459977, + "1136": 25.3544282483, + "1137": 13.7500797058, + "1138": 2.5478548389, + "1139": -7.7668333942, + "1140": -17.6640553149, + "1141": -26.6483758764, + "1142": -35.2015350377, + "1143": -42.8200309189, + "1144": -49.995371909, + "1145": -56.2179763872, + "1146": -61.9871814135, + "1147": -66.7893367116, + "1148": -71.1296373574, + "1149": -74.4923915625, + "1150": -77.3866586441, + "1151": -79.2967405015, + "1152": -80.733551669, + "1153": -81.1834229584, + "1154": -81.1571077745, + "1155": -80.1449930593, + "1156": -78.6556553781, + "1157": -76.1855490126, + "1158": -73.2390665695, + "1159": -69.3207169353, + "1160": -64.9287181502, + "1161": -59.5775891831, + "1162": -53.7574072689, + "1163": -46.9946174301, + "1164": -39.7692219858, + "1165": -31.6214609173, + "1166": -23.0193672776, + "1167": -13.51879047, + "1168": -3.5739471687, + "1169": 7.2419509418, + "1170": 18.4902961515, + "1171": 30.5788301565, + "1172": 43.086285195, + "1173": 56.3997471733, + "1174": 70.1169508298, + "1175": 84.6027986294, + "1176": 99.4756153676, + "1177": 115.0766799652, + "1178": 131.0464135724, + "1179": 147.7011246935, + "1180": 164.704749927, + "1181": 182.3473790355, + "1182": 200.3177903546, + "1183": 218.8787100537, + "1184": 237.744986455, + "1185": 257.1509452742, + "1186": 276.8386301838, + "1187": 297.0130416695, + "1188": 317.4444367895, + "1189": 338.3076817563, + "1190": 359.4021537044, + "1191": 380.871894456, + "1192": 402.5461929886, + "1193": 424.5376982668, + "1194": 446.7062848296, + "1195": 469.13276421, + "1196": 491.7081495198, + "1197": 514.481095934, + "1198": 537.3741852585, + "1199": 560.403724291, + "1200": 583.5241690657, + "1201": 606.719413647, + "1202": 629.975968039, + "1203": 653.2453771358, + "1204": 676.5462581499, + "1205": 699.7979980352, + "1206": 723.0512477391, + "1207": 746.1935544183, + "1208": 769.3074028588, + "1209": 792.2489442201, + "1210": 815.1321715972, + "1211": 837.782407858, + "1212": 860.3447045275, + "1213": 882.6142455531, + "1214": 904.7665684378, + "1215": 926.5675265237, + "1216": 948.2224505257, + "1217": 969.4687872503, + "1218": 990.5408502777, + "1219": 1011.1487160564, + "1220": 1031.5547563034, + "1221": 1051.4428213049, + "1222": 1071.1023054532, + "1223": 1090.1920805709, + "1224": 1109.0274216182, + "1225": 1127.2435682309, + "1226": 1145.1804316911, + "1227": 1162.4510589904, + "1228": 1179.418656258, + "1229": 1195.6756049682, + "1230": 1211.6069726884, + "1231": 1226.78608406, + "1232": 1241.618348403, + "1233": 1255.659717418, + "1234": 1269.3343422125, + "1235": 1282.1825540023, + "1236": 1294.6455717517, + "1237": 1306.2499202942, + "1238": 1317.4521451611, + "1239": 1327.7668333942, + "1240": 1337.6640553149, + "1241": 1346.6483758764, + "1242": 1355.2015350377, + "1243": 1362.8200309189, + "1244": 1369.995371909, + "1245": 1376.2179763872, + "1246": 1381.9871814135, + "1247": 1386.7893367116, + "1248": 1391.1296373574, + "1249": 1394.4923915625, + "1250": 1397.3866586441, + "1251": 1399.2967405015, + "1252": 1400.733551669, + "1253": 1401.1834229584, + "1254": 1401.1571077745, + "1255": 1400.1449930593, + "1256": 1398.6556553781, + "1257": 1396.1855490126, + "1258": 1393.2390665695, + "1259": 1389.3207169353, + "1260": 1384.9287181502, + "1261": 1379.5775891831, + "1262": 1373.7574072689, + "1263": 1366.9946174301, + "1264": 1359.7692219858, + "1265": 1351.6214609173, + "1266": 1343.0193672777, + "1267": 1333.51879047, + "1268": 1323.5739471687, + "1269": 1312.7580490582, + "1270": 1301.5097038485, + "1271": 1289.4211698435, + "1272": 1276.913714805, + "1273": 1263.6002528267, + "1274": 1249.8830491702, + "1275": 1235.3972013706, + "1276": 1220.5243846324, + "1277": 1204.9233200348, + "1278": 1188.9535864276, + "1279": 1172.2988753065, + "1280": 1155.295250073, + "1281": 1137.6526209645, + "1282": 1119.6822096454, + "1283": 1101.1212899463, + "1284": 1082.255013545, + "1285": 1062.8490547258, + "1286": 1043.1613698162, + "1287": 1022.9869583305, + "1288": 1002.5555632105, + "1289": 981.6923182437, + "1290": 960.5978462956, + "1291": 939.128105544, + "1292": 917.4538070114, + "1293": 895.4623017332, + "1294": 873.2937151704, + "1295": 850.86723579, + "1296": 828.2918504802, + "1297": 805.518904066, + "1298": 782.6258147415, + "1299": 759.596275709, + "1300": 736.4758309343, + "1301": 713.280586353, + "1302": 690.024031961, + "1303": 666.7546228642, + "1304": 643.4537418501, + "1305": 620.2020019648, + "1306": 596.9487522609, + "1307": 573.8064455817, + "1308": 550.6925971412, + "1309": 527.7510557799, + "1310": 504.8678284028, + "1311": 482.217592142, + "1312": 459.6552954725, + "1313": 437.3857544469, + "1314": 415.2334315622, + "1315": 393.4324734763, + "1316": 371.7775494743, + "1317": 350.5312127497, + "1318": 329.4591497223, + "1319": 308.8512839436, + "1320": 288.4452436966, + "1321": 268.5571786951, + "1322": 248.8976945468, + "1323": 229.8079194291, + "1324": 210.9725783818, + "1325": 192.7564317691, + "1326": 174.8195683089, + "1327": 157.5489410096, + "1328": 140.581343742, + "1329": 124.3243950318, + "1330": 108.3930273116, + "1331": 93.21391594, + "1332": 78.381651597, + "1333": 64.340282582, + "1334": 50.6656577875, + "1335": 37.8174459977, + "1336": 25.3544282483, + "1337": 13.7500797058, + "1338": 2.5478548389, + "1339": -7.7668333942, + "1340": -17.6640553149, + "1341": -26.6483758764, + "1342": -35.2015350377, + "1343": -42.8200309189, + "1344": -49.995371909, + "1345": -56.2179763872, + "1346": -61.9871814135, + "1347": -66.7893367116, + "1348": -71.1296373574, + "1349": -74.4923915625, + "1350": -77.3866586441, + "1351": -79.2967405015, + "1352": -80.733551669, + "1353": -81.1834229584, + "1354": -81.1571077745, + "1355": -80.1449930593, + "1356": -78.6556553781, + "1357": -76.1855490126, + "1358": -73.2390665695, + "1359": -69.3207169353, + "1360": -64.9287181502, + "1361": -59.5775891831, + "1362": -53.7574072689, + "1363": -46.9946174301, + "1364": -39.7692219858, + "1365": -31.6214609173, + "1366": -23.0193672776, + "1367": -13.51879047, + "1368": -3.5739471687, + "1369": 7.2419509418, + "1370": 18.4902961515, + "1371": 30.5788301565, + "1372": 43.086285195, + "1373": 56.3997471733, + "1374": 70.1169508298, + "1375": 84.6027986294, + "1376": 99.4756153676, + "1377": 115.0766799652, + "1378": 131.0464135724, + "1379": 147.7011246935, + "1380": 164.704749927, + "1381": 182.3473790355, + "1382": 200.3177903546, + "1383": 218.8787100537, + "1384": 237.744986455, + "1385": 257.1509452742, + "1386": 276.8386301838, + "1387": 297.0130416695, + "1388": 317.4444367895, + "1389": 338.3076817563, + "1390": 359.4021537044, + "1391": 380.871894456, + "1392": 402.5461929886, + "1393": 424.5376982668, + "1394": 446.7062848296, + "1395": 469.13276421, + "1396": 491.7081495198, + "1397": 514.481095934, + "1398": 537.3741852585, + "1399": 560.403724291, + "1400": 583.5241690657, + "1401": 606.719413647, + "1402": 629.975968039, + "1403": 653.2453771358, + "1404": 676.5462581499, + "1405": 699.7979980352, + "1406": 723.0512477391, + "1407": 746.1935544183, + "1408": 769.3074028588, + "1409": 792.2489442201, + "1410": 815.1321715972, + "1411": 837.782407858, + "1412": 860.3447045275, + "1413": 882.6142455531, + "1414": 904.7665684378, + "1415": 926.5675265237, + "1416": 948.2224505257, + "1417": 969.4687872503, + "1418": 990.5408502777, + "1419": 1011.1487160564, + "1420": 1031.5547563034, + "1421": 1051.4428213049, + "1422": 1071.1023054532, + "1423": 1090.1920805709, + "1424": 1109.0274216182, + "1425": 1127.2435682309, + "1426": 1145.1804316911, + "1427": 1162.4510589904, + "1428": 1179.418656258, + "1429": 1195.6756049682, + "1430": 1211.6069726884, + "1431": 1226.78608406, + "1432": 1241.618348403, + "1433": 1255.659717418, + "1434": 1269.3343422125, + "1435": 1282.1825540023, + "1436": 1294.6455717517, + "1437": 1306.2499202942, + "1438": 1317.4521451611, + "1439": 1327.7668333942, + "1440": 1337.6640553149, + "1441": 1346.6483758764, + "1442": 1355.2015350377, + "1443": 1362.8200309189, + "1444": 1369.995371909, + "1445": 1376.2179763872, + "1446": 1381.9871814135, + "1447": 1386.7893367116, + "1448": 1391.1296373574, + "1449": 1394.4923915625, + "1450": 1397.3866586441, + "1451": 1399.2967405015, + "1452": 1400.733551669, + "1453": 1401.1834229584, + "1454": 1401.1571077745, + "1455": 1400.1449930593, + "1456": 1398.6556553781, + "1457": 1396.1855490126, + "1458": 1393.2390665695, + "1459": 1389.3207169353, + "1460": 1384.9287181502, + "1461": 1379.5775891831, + "1462": 1373.7574072689, + "1463": 1366.9946174301, + "1464": 1359.7692219858, + "1465": 1351.6214609173, + "1466": 1343.0193672777, + "1467": 1333.51879047, + "1468": 1323.5739471687, + "1469": 1312.7580490582, + "1470": 1301.5097038485, + "1471": 1289.4211698435, + "1472": 1276.913714805, + "1473": 1263.6002528267, + "1474": 1249.8830491702, + "1475": 1235.3972013706, + "1476": 1220.5243846324, + "1477": 1204.9233200348, + "1478": 1188.9535864276, + "1479": 1172.2988753065, + "1480": 1155.295250073, + "1481": 1137.6526209645, + "1482": 1119.6822096454, + "1483": 1101.1212899463, + "1484": 1082.255013545, + "1485": 1062.8490547258, + "1486": 1043.1613698162, + "1487": 1022.9869583305, + "1488": 1002.5555632105, + "1489": 981.6923182437, + "1490": 960.5978462956, + "1491": 939.128105544, + "1492": 917.4538070114, + "1493": 895.4623017332, + "1494": 873.2937151704, + "1495": 850.86723579, + "1496": 828.2918504802, + "1497": 805.518904066, + "1498": 782.6258147415, + "1499": 759.596275709, + "1500": 736.4758309343, + "1501": 713.280586353, + "1502": 690.024031961, + "1503": 666.7546228642, + "1504": 643.4537418501, + "1505": 620.2020019648, + "1506": 596.9487522609, + "1507": 573.8064455817, + "1508": 550.6925971412, + "1509": 527.7510557799, + "1510": 504.8678284028, + "1511": 482.217592142, + "1512": 459.6552954725, + "1513": 437.3857544469, + "1514": 415.2334315622, + "1515": 393.4324734763, + "1516": 371.7775494743, + "1517": 350.5312127497, + "1518": 329.4591497223, + "1519": 308.8512839436, + "1520": 288.4452436966, + "1521": 268.5571786951, + "1522": 248.8976945468, + "1523": 229.8079194291, + "1524": 210.9725783818, + "1525": 192.7564317691, + "1526": 174.8195683089, + "1527": 157.5489410096, + "1528": 140.581343742, + "1529": 124.3243950318, + "1530": 108.3930273116, + "1531": 93.21391594, + "1532": 78.381651597, + "1533": 64.340282582, + "1534": 50.6656577875, + "1535": 37.8174459977, + "1536": 25.3544282483, + "1537": 13.7500797058, + "1538": 2.5478548389, + "1539": -7.7668333942, + "1540": -17.6640553149, + "1541": -26.6483758764, + "1542": -35.2015350377, + "1543": -42.8200309189, + "1544": -49.995371909, + "1545": -56.2179763872, + "1546": -61.9871814135, + "1547": -66.7893367116, + "1548": -71.1296373574, + "1549": -74.4923915625, + "1550": -77.3866586441, + "1551": -79.2967405015, + "1552": -80.733551669, + "1553": -81.1834229584, + "1554": -81.1571077745, + "1555": -80.1449930593, + "1556": -78.6556553781, + "1557": -76.1855490126, + "1558": -73.2390665695, + "1559": -69.3207169353, + "1560": -64.9287181502, + "1561": -59.5775891831, + "1562": -53.7574072689, + "1563": -46.9946174301, + "1564": -39.7692219858, + "1565": -31.6214609173, + "1566": -23.0193672776, + "1567": -13.51879047, + "1568": -3.5739471687, + "1569": 7.2419509418, + "1570": 18.4902961515, + "1571": 30.5788301565, + "1572": 43.086285195, + "1573": 56.3997471733, + "1574": 70.1169508298, + "1575": 84.6027986294, + "1576": 99.4756153676, + "1577": 115.0766799652, + "1578": 131.0464135724, + "1579": 147.7011246935, + "1580": 164.704749927, + "1581": 182.3473790355, + "1582": 200.3177903546, + "1583": 218.8787100537, + "1584": 237.744986455, + "1585": 257.1509452742, + "1586": 276.8386301838, + "1587": 297.0130416695, + "1588": 317.4444367895, + "1589": 338.3076817563, + "1590": 359.4021537044, + "1591": 380.871894456, + "1592": 402.5461929886, + "1593": 424.5376982668, + "1594": 446.7062848296, + "1595": 469.13276421, + "1596": 491.7081495198, + "1597": 514.481095934, + "1598": 537.3741852585, + "1599": 560.403724291, + "1600": 583.5241690657, + "1601": 606.719413647, + "1602": 629.975968039, + "1603": 653.2453771358, + "1604": 676.5462581499, + "1605": 699.7979980352, + "1606": 723.0512477391, + "1607": 746.1935544183, + "1608": 769.3074028588, + "1609": 792.2489442201, + "1610": 815.1321715972, + "1611": 837.782407858, + "1612": 860.3447045275, + "1613": 882.6142455531, + "1614": 904.7665684378, + "1615": 926.5675265237, + "1616": 948.2224505257, + "1617": 969.4687872503, + "1618": 990.5408502777, + "1619": 1011.1487160564, + "1620": 1031.5547563034, + "1621": 1051.4428213049, + "1622": 1071.1023054532, + "1623": 1090.1920805709, + "1624": 1109.0274216182, + "1625": 1127.2435682309, + "1626": 1145.1804316911, + "1627": 1162.4510589904, + "1628": 1179.418656258, + "1629": 1195.6756049682, + "1630": 1211.6069726884, + "1631": 1226.78608406, + "1632": 1241.618348403, + "1633": 1255.659717418, + "1634": 1269.3343422125, + "1635": 1282.1825540023, + "1636": 1294.6455717517, + "1637": 1306.2499202942, + "1638": 1317.4521451611, + "1639": 1327.7668333942, + "1640": 1337.664055315, + "1641": 1346.6483758764, + "1642": 1355.2015350377, + "1643": 1362.8200309189, + "1644": 1369.995371909, + "1645": 1376.2179763872, + "1646": 1381.9871814135, + "1647": 1386.7893367116, + "1648": 1391.1296373574, + "1649": 1394.4923915625, + "1650": 1397.3866586441, + "1651": 1399.2967405015, + "1652": 1400.733551669, + "1653": 1401.1834229584, + "1654": 1401.1571077745, + "1655": 1400.1449930593, + "1656": 1398.6556553781, + "1657": 1396.1855490126, + "1658": 1393.2390665695, + "1659": 1389.3207169353, + "1660": 1384.9287181502, + "1661": 1379.5775891831, + "1662": 1373.7574072689, + "1663": 1366.9946174301, + "1664": 1359.7692219858, + "1665": 1351.6214609173, + "1666": 1343.0193672777, + "1667": 1333.51879047, + "1668": 1323.5739471687, + "1669": 1312.7580490582, + "1670": 1301.5097038484, + "1671": 1289.4211698435, + "1672": 1276.913714805, + "1673": 1263.6002528267, + "1674": 1249.8830491702, + "1675": 1235.3972013706, + "1676": 1220.5243846324, + "1677": 1204.9233200348, + "1678": 1188.9535864276, + "1679": 1172.2988753065, + "1680": 1155.295250073, + "1681": 1137.6526209645, + "1682": 1119.6822096454, + "1683": 1101.1212899463, + "1684": 1082.255013545, + "1685": 1062.8490547258, + "1686": 1043.1613698162, + "1687": 1022.9869583305, + "1688": 1002.5555632105, + "1689": 981.6923182437, + "1690": 960.5978462955, + "1691": 939.128105544, + "1692": 917.4538070114, + "1693": 895.4623017332, + "1694": 873.2937151704, + "1695": 850.86723579, + "1696": 828.2918504802, + "1697": 805.518904066, + "1698": 782.6258147415, + "1699": 759.596275709, + "1700": 736.4758309343, + "1701": 713.280586353, + "1702": 690.0240319609, + "1703": 666.7546228642, + "1704": 643.4537418501, + "1705": 620.2020019648, + "1706": 596.9487522609, + "1707": 573.8064455817, + "1708": 550.6925971412, + "1709": 527.7510557799, + "1710": 504.8678284028, + "1711": 482.217592142, + "1712": 459.6552954725, + "1713": 437.3857544469, + "1714": 415.2334315622, + "1715": 393.4324734763, + "1716": 371.7775494742, + "1717": 350.5312127497, + "1718": 329.4591497223, + "1719": 308.8512839436, + "1720": 288.4452436966, + "1721": 268.5571786951, + "1722": 248.8976945468, + "1723": 229.8079194291, + "1724": 210.9725783818, + "1725": 192.7564317691, + "1726": 174.8195683089, + "1727": 157.5489410096, + "1728": 140.581343742, + "1729": 124.3243950318, + "1730": 108.3930273116, + "1731": 93.21391594, + "1732": 78.381651597, + "1733": 64.340282582, + "1734": 50.6656577875, + "1735": 37.8174459977, + "1736": 25.3544282483, + "1737": 13.7500797058, + "1738": 2.5478548389, + "1739": -7.7668333942, + "1740": -17.664055315, + "1741": -26.6483758764, + "1742": -35.2015350377, + "1743": -42.8200309189, + "1744": -49.995371909, + "1745": -56.2179763872, + "1746": -61.9871814135, + "1747": -66.7893367116, + "1748": -71.1296373574, + "1749": -74.4923915625, + "1750": -77.3866586441, + "1751": -79.2967405015, + "1752": -80.733551669, + "1753": -81.1834229584, + "1754": -81.1571077745, + "1755": -80.1449930593, + "1756": -78.655655378, + "1757": -76.1855490126, + "1758": -73.2390665695, + "1759": -69.3207169353, + "1760": -64.9287181502, + "1761": -59.5775891831, + "1762": -53.7574072689, + "1763": -46.9946174301, + "1764": -39.7692219858, + "1765": -31.6214609173, + "1766": -23.0193672776, + "1767": -13.51879047, + "1768": -3.5739471687, + "1769": 7.2419509418, + "1770": 18.4902961516, + "1771": 30.5788301565, + "1772": 43.086285195, + "1773": 56.3997471733, + "1774": 70.1169508298, + "1775": 84.6027986294, + "1776": 99.4756153676, + "1777": 115.0766799652, + "1778": 131.0464135724, + "1779": 147.7011246935, + "1780": 164.704749927, + "1781": 182.3473790355, + "1782": 200.3177903546, + "1783": 218.8787100537, + "1784": 237.744986455, + "1785": 257.1509452742, + "1786": 276.8386301838, + "1787": 297.0130416695, + "1788": 317.4444367895, + "1789": 338.3076817563, + "1790": 359.4021537045, + "1791": 380.871894456, + "1792": 402.5461929886, + "1793": 424.5376982668, + "1794": 446.7062848296, + "1795": 469.13276421, + "1796": 491.7081495198, + "1797": 514.481095934, + "1798": 537.3741852585, + "1799": 560.403724291, + "1800": 583.5241690657, + "1801": 606.719413647, + "1802": 629.9759680391, + "1803": 653.2453771358, + "1804": 676.5462581499, + "1805": 699.7979980352, + "1806": 723.0512477391, + "1807": 746.1935544183, + "1808": 769.3074028588, + "1809": 792.2489442201, + "1810": 815.1321715972, + "1811": 837.782407858, + "1812": 860.3447045275, + "1813": 882.6142455531, + "1814": 904.7665684378, + "1815": 926.5675265237, + "1816": 948.2224505258, + "1817": 969.4687872503, + "1818": 990.5408502777, + "1819": 1011.1487160564, + "1820": 1031.5547563034, + "1821": 1051.4428213049, + "1822": 1071.1023054532, + "1823": 1090.1920805709, + "1824": 1109.0274216182, + "1825": 1127.2435682309, + "1826": 1145.1804316911, + "1827": 1162.4510589904, + "1828": 1179.418656258, + "1829": 1195.6756049682, + "1830": 1211.6069726884, + "1831": 1226.78608406, + "1832": 1241.618348403, + "1833": 1255.659717418, + "1834": 1269.3343422125, + "1835": 1282.1825540023, + "1836": 1294.6455717517, + "1837": 1306.2499202942, + "1838": 1317.4521451611, + "1839": 1327.7668333942, + "1840": 1337.664055315, + "1841": 1346.6483758764, + "1842": 1355.2015350377, + "1843": 1362.8200309189, + "1844": 1369.995371909, + "1845": 1376.2179763872, + "1846": 1381.9871814135, + "1847": 1386.7893367116, + "1848": 1391.1296373574, + "1849": 1394.4923915625, + "1850": 1397.3866586441, + "1851": 1399.2967405015, + "1852": 1400.733551669, + "1853": 1401.1834229584, + "1854": 1401.1571077745, + "1855": 1400.1449930593, + "1856": 1398.6556553781, + "1857": 1396.1855490126, + "1858": 1393.2390665695, + "1859": 1389.3207169353, + "1860": 1384.9287181502, + "1861": 1379.5775891831, + "1862": 1373.7574072689, + "1863": 1366.9946174301, + "1864": 1359.7692219858, + "1865": 1351.6214609173, + "1866": 1343.0193672776, + "1867": 1333.51879047, + "1868": 1323.5739471687, + "1869": 1312.7580490582, + "1870": 1301.5097038484, + "1871": 1289.4211698435, + "1872": 1276.913714805, + "1873": 1263.6002528267, + "1874": 1249.8830491702, + "1875": 1235.3972013706, + "1876": 1220.5243846324, + "1877": 1204.9233200348, + "1878": 1188.9535864276, + "1879": 1172.2988753065, + "1880": 1155.295250073, + "1881": 1137.6526209645, + "1882": 1119.6822096454, + "1883": 1101.1212899463, + "1884": 1082.255013545, + "1885": 1062.8490547258, + "1886": 1043.1613698162, + "1887": 1022.9869583305, + "1888": 1002.5555632105, + "1889": 981.6923182437, + "1890": 960.5978462955, + "1891": 939.128105544, + "1892": 917.4538070114, + "1893": 895.4623017332, + "1894": 873.2937151704, + "1895": 850.86723579, + "1896": 828.2918504802, + "1897": 805.518904066, + "1898": 782.6258147415, + "1899": 759.596275709, + "1900": 736.4758309343, + "1901": 713.280586353, + "1902": 690.0240319609, + "1903": 666.7546228642, + "1904": 643.4537418501, + "1905": 620.2020019648, + "1906": 596.9487522609, + "1907": 573.8064455817, + "1908": 550.6925971412, + "1909": 527.7510557799, + "1910": 504.8678284028, + "1911": 482.217592142, + "1912": 459.6552954725, + "1913": 437.3857544469, + "1914": 415.2334315622, + "1915": 393.4324734763, + "1916": 371.7775494742, + "1917": 350.5312127497, + "1918": 329.4591497223, + "1919": 308.8512839436, + "1920": 288.4452436966, + "1921": 268.5571786951, + "1922": 248.8976945468, + "1923": 229.8079194291, + "1924": 210.9725783818, + "1925": 192.7564317691, + "1926": 174.8195683089, + "1927": 157.5489410096, + "1928": 140.581343742, + "1929": 124.3243950318, + "1930": 108.3930273116, + "1931": 93.21391594, + "1932": 78.381651597, + "1933": 64.340282582, + "1934": 50.6656577875, + "1935": 37.8174459977, + "1936": 25.3544282483, + "1937": 13.7500797058, + "1938": 2.5478548389, + "1939": -7.7668333942, + "1940": -17.664055315, + "1941": -26.6483758764, + "1942": -35.2015350377, + "1943": -42.8200309189, + "1944": -49.995371909, + "1945": -56.2179763872, + "1946": -61.9871814135, + "1947": -66.7893367116, + "1948": -71.1296373574, + "1949": -74.4923915625, + "1950": -77.3866586441, + "1951": -79.2967405015, + "1952": -80.733551669, + "1953": -81.1834229584, + "1954": -81.1571077745, + "1955": -80.1449930593, + "1956": -78.655655378, + "1957": -76.1855490126, + "1958": -73.2390665695, + "1959": -69.3207169353, + "1960": -64.9287181502, + "1961": -59.5775891831, + "1962": -53.7574072689, + "1963": -46.9946174301, + "1964": -39.7692219858, + "1965": -31.6214609173, + "1966": -23.0193672776, + "1967": -13.51879047, + "1968": -3.5739471687, + "1969": 7.2419509418, + "1970": 18.4902961516, + "1971": 30.5788301565, + "1972": 43.086285195, + "1973": 56.3997471733, + "1974": 70.1169508298, + "1975": 84.6027986294, + "1976": 99.4756153676, + "1977": 115.0766799652, + "1978": 131.0464135724, + "1979": 147.7011246935, + "1980": 164.704749927, + "1981": 182.3473790355, + "1982": 200.3177903546, + "1983": 218.8787100537, + "1984": 237.744986455, + "1985": 257.1509452742, + "1986": 276.8386301838, + "1987": 297.0130416695, + "1988": 317.4444367895, + "1989": 338.3076817563, + "1990": 359.4021537045, + "1991": 380.871894456, + "1992": 402.5461929886, + "1993": 424.5376982668, + "1994": 446.7062848296, + "1995": 469.13276421, + "1996": 491.7081495198, + "1997": 514.481095934, + "1998": 537.3741852585, + "1999": 560.403724291, + "2000": 583.5241690657, + "2001": 606.719413647, + "2002": 629.9759680391, + "2003": 653.2453771358, + "2004": 676.5462581499, + "2005": 699.7979980352, + "2006": 723.0512477391, + "2007": 746.1935544183, + "2008": 769.3074028588, + "2009": 792.2489442201, + "2010": 815.1321715972, + "2011": 837.782407858, + "2012": 860.3447045275, + "2013": 882.6142455531, + "2014": 904.7665684378, + "2015": 926.5675265237, + "2016": 948.2224505258, + "2017": 969.4687872503, + "2018": 990.5408502777, + "2019": 1011.1487160564, + "2020": 1031.5547563034, + "2021": 1051.4428213049, + "2022": 1071.1023054532, + "2023": 1090.1920805709, + "2024": 1109.0274216182, + "2025": 1127.2435682309, + "2026": 1145.1804316911, + "2027": 1162.4510589904, + "2028": 1179.418656258, + "2029": 1195.6756049682, + "2030": 1211.6069726884, + "2031": 1226.78608406, + "2032": 1241.618348403, + "2033": 1255.659717418, + "2034": 1269.3343422125, + "2035": 1282.1825540023, + "2036": 1294.6455717517, + "2037": 1306.2499202942, + "2038": 1317.4521451611, + "2039": 1327.7668333942, + "2040": 1337.664055315, + "2041": 1346.6483758764, + "2042": 1355.2015350377, + "2043": 1362.8200309189, + "2044": 1369.995371909, + "2045": 1376.2179763872, + "2046": 1381.9871814135, + "2047": 1386.7893367116, + "2048": 1391.1296373574, + "2049": 1394.4923915625, + "2050": 1397.3866586441, + "2051": 1399.2967405015, + "2052": 1400.733551669, + "2053": 1401.1834229584, + "2054": 1401.1571077745, + "2055": 1400.1449930593, + "2056": 1398.6556553781, + "2057": 1396.1855490126, + "2058": 1393.2390665695, + "2059": 1389.3207169353, + "2060": 1384.9287181502, + "2061": 1379.5775891831, + "2062": 1373.7574072689, + "2063": 1366.9946174301, + "2064": 1359.7692219858, + "2065": 1351.6214609173, + "2066": 1343.0193672776, + "2067": 1333.51879047, + "2068": 1323.5739471687, + "2069": 1312.7580490582, + "2070": 1301.5097038484, + "2071": 1289.4211698435, + "2072": 1276.913714805, + "2073": 1263.6002528267, + "2074": 1249.8830491702, + "2075": 1235.3972013706, + "2076": 1220.5243846324, + "2077": 1204.9233200348, + "2078": 1188.9535864276, + "2079": 1172.2988753065, + "2080": 1155.295250073, + "2081": 1137.6526209645, + "2082": 1119.6822096454, + "2083": 1101.1212899463, + "2084": 1082.255013545, + "2085": 1062.8490547258, + "2086": 1043.1613698162, + "2087": 1022.9869583305, + "2088": 1002.5555632105, + "2089": 981.6923182437, + "2090": 960.5978462955, + "2091": 939.128105544, + "2092": 917.4538070114, + "2093": 895.4623017332, + "2094": 873.2937151704, + "2095": 850.86723579, + "2096": 828.2918504802, + "2097": 805.518904066, + "2098": 782.6258147415, + "2099": 759.596275709, + "2100": 736.4758309343, + "2101": 713.280586353, + "2102": 690.0240319609, + "2103": 666.7546228642, + "2104": 643.4537418501, + "2105": 620.2020019648, + "2106": 596.9487522609, + "2107": 573.8064455817, + "2108": 550.6925971412, + "2109": 527.7510557799, + "2110": 504.8678284028, + "2111": 482.217592142, + "2112": 459.6552954725, + "2113": 437.3857544469, + "2114": 415.2334315622, + "2115": 393.4324734763, + "2116": 371.7775494742, + "2117": 350.5312127497, + "2118": 329.4591497223, + "2119": 308.8512839436, + "2120": 288.4452436966, + "2121": 268.5571786951, + "2122": 248.8976945468, + "2123": 229.8079194291, + "2124": 210.9725783818, + "2125": 192.7564317691, + "2126": 174.8195683089, + "2127": 157.5489410096, + "2128": 140.581343742, + "2129": 124.3243950318, + "2130": 108.3930273116, + "2131": 93.21391594, + "2132": 78.381651597, + "2133": 64.340282582, + "2134": 50.6656577875, + "2135": 37.8174459977, + "2136": 25.3544282483, + "2137": 13.7500797058, + "2138": 2.5478548389, + "2139": -7.7668333942, + "2140": -17.664055315, + "2141": -26.6483758764, + "2142": -35.2015350377, + "2143": -42.8200309189, + "2144": -49.995371909, + "2145": -56.2179763872, + "2146": -61.9871814135, + "2147": -66.7893367116, + "2148": -71.1296373574, + "2149": -74.4923915625, + "2150": -77.3866586441, + "2151": -79.2967405015, + "2152": -80.733551669, + "2153": -81.1834229584, + "2154": -81.1571077745, + "2155": -80.1449930593, + "2156": -78.655655378, + "2157": -76.1855490126, + "2158": -73.2390665695, + "2159": -69.3207169353, + "2160": -64.9287181502, + "2161": -59.5775891831, + "2162": -53.7574072689, + "2163": -46.9946174301, + "2164": -39.7692219858, + "2165": -31.6214609173, + "2166": -23.0193672776, + "2167": -13.51879047, + "2168": -3.5739471687, + "2169": 7.2419509418, + "2170": 18.4902961516, + "2171": 30.5788301565, + "2172": 43.086285195, + "2173": 56.3997471733, + "2174": 70.1169508298, + "2175": 84.6027986294, + "2176": 99.4756153676, + "2177": 115.0766799652, + "2178": 131.0464135724, + "2179": 147.7011246935, + "2180": 164.704749927, + "2181": 182.3473790355, + "2182": 200.3177903546, + "2183": 218.8787100537, + "2184": 237.744986455, + "2185": 257.1509452742, + "2186": 276.8386301838, + "2187": 297.0130416695, + "2188": 317.4444367895, + "2189": 338.3076817563, + "2190": 359.4021537045, + "2191": 380.871894456, + "2192": 402.5461929886, + "2193": 424.5376982668, + "2194": 446.7062848296, + "2195": 469.13276421, + "2196": 491.7081495198, + "2197": 514.481095934, + "2198": 537.3741852585, + "2199": 560.403724291, + "2200": 583.5241690657, + "2201": 606.719413647, + "2202": 629.9759680391, + "2203": 653.2453771358, + "2204": 676.5462581499, + "2205": 699.7979980352, + "2206": 723.0512477391, + "2207": 746.1935544183, + "2208": 769.3074028588, + "2209": 792.2489442201, + "2210": 815.1321715972, + "2211": 837.782407858, + "2212": 860.3447045275, + "2213": 882.6142455531, + "2214": 904.7665684378, + "2215": 926.5675265237, + "2216": 948.2224505258, + "2217": 969.4687872503, + "2218": 990.5408502777, + "2219": 1011.1487160564, + "2220": 1031.5547563034, + "2221": 1051.4428213049, + "2222": 1071.1023054532, + "2223": 1090.1920805709, + "2224": 1109.0274216182, + "2225": 1127.2435682309, + "2226": 1145.1804316911, + "2227": 1162.4510589904, + "2228": 1179.418656258, + "2229": 1195.6756049682, + "2230": 1211.6069726884, + "2231": 1226.78608406, + "2232": 1241.618348403, + "2233": 1255.659717418, + "2234": 1269.3343422125, + "2235": 1282.1825540023, + "2236": 1294.6455717517, + "2237": 1306.2499202942, + "2238": 1317.4521451611, + "2239": 1327.7668333942, + "2240": 1337.664055315, + "2241": 1346.6483758764, + "2242": 1355.2015350377, + "2243": 1362.8200309189, + "2244": 1369.995371909, + "2245": 1376.2179763872, + "2246": 1381.9871814135, + "2247": 1386.7893367116, + "2248": 1391.1296373574, + "2249": 1394.4923915625, + "2250": 1397.3866586441, + "2251": 1399.2967405015, + "2252": 1400.733551669, + "2253": 1401.1834229584, + "2254": 1401.1571077745, + "2255": 1400.1449930593, + "2256": 1398.6556553781, + "2257": 1396.1855490126, + "2258": 1393.2390665695, + "2259": 1389.3207169353, + "2260": 1384.9287181502, + "2261": 1379.5775891831, + "2262": 1373.7574072689, + "2263": 1366.9946174301, + "2264": 1359.7692219858, + "2265": 1351.6214609173, + "2266": 1343.0193672776, + "2267": 1333.51879047, + "2268": 1323.5739471687, + "2269": 1312.7580490582, + "2270": 1301.5097038484, + "2271": 1289.4211698435, + "2272": 1276.913714805, + "2273": 1263.6002528267, + "2274": 1249.8830491702, + "2275": 1235.3972013706, + "2276": 1220.5243846324, + "2277": 1204.9233200348, + "2278": 1188.9535864276, + "2279": 1172.2988753065, + "2280": 1155.295250073, + "2281": 1137.6526209645, + "2282": 1119.6822096454, + "2283": 1101.1212899463, + "2284": 1082.255013545, + "2285": 1062.8490547258, + "2286": 1043.1613698162, + "2287": 1022.9869583305, + "2288": 1002.5555632105, + "2289": 981.6923182437, + "2290": 960.5978462955, + "2291": 939.128105544, + "2292": 917.4538070114, + "2293": 895.4623017332, + "2294": 873.2937151704, + "2295": 850.86723579, + "2296": 828.2918504802, + "2297": 805.518904066, + "2298": 782.6258147415, + "2299": 759.596275709, + "2300": 736.4758309343, + "2301": 713.280586353, + "2302": 690.0240319609, + "2303": 666.7546228642, + "2304": 643.4537418501, + "2305": 620.2020019648, + "2306": 596.9487522609, + "2307": 573.8064455817, + "2308": 550.6925971412, + "2309": 527.7510557799, + "2310": 504.8678284028, + "2311": 482.217592142, + "2312": 459.6552954725, + "2313": 437.3857544469, + "2314": 415.2334315622, + "2315": 393.4324734763, + "2316": 371.7775494742, + "2317": 350.5312127497, + "2318": 329.4591497223, + "2319": 308.8512839436, + "2320": 288.4452436966, + "2321": 268.5571786951, + "2322": 248.8976945468, + "2323": 229.8079194291, + "2324": 210.9725783818, + "2325": 192.7564317691, + "2326": 174.8195683089, + "2327": 157.5489410096, + "2328": 140.581343742, + "2329": 124.3243950318, + "2330": 108.3930273116, + "2331": 93.21391594, + "2332": 78.381651597, + "2333": 64.340282582, + "2334": 50.6656577875, + "2335": 37.8174459977, + "2336": 25.3544282483, + "2337": 13.7500797058, + "2338": 2.5478548389, + "2339": -7.7668333942, + "2340": -17.664055315, + "2341": -26.6483758764, + "2342": -35.2015350377, + "2343": -42.8200309189, + "2344": -49.995371909, + "2345": -56.2179763872, + "2346": -61.9871814135, + "2347": -66.7893367116, + "2348": -71.1296373574, + "2349": -74.4923915625, + "2350": -77.3866586441, + "2351": -79.2967405015, + "2352": -80.733551669, + "2353": -81.1834229584, + "2354": -81.1571077745, + "2355": -80.1449930593, + "2356": -78.655655378, + "2357": -76.1855490126, + "2358": -73.2390665695, + "2359": -69.3207169353, + "2360": -64.9287181502, + "2361": -59.5775891831, + "2362": -53.7574072689, + "2363": -46.9946174301, + "2364": -39.7692219858, + "2365": -31.6214609173, + "2366": -23.0193672776, + "2367": -13.51879047, + "2368": -3.5739471687, + "2369": 7.2419509418, + "2370": 18.4902961516, + "2371": 30.5788301565, + "2372": 43.086285195, + "2373": 56.3997471733, + "2374": 70.1169508298, + "2375": 84.6027986294, + "2376": 99.4756153676, + "2377": 115.0766799652, + "2378": 131.0464135724, + "2379": 147.7011246935, + "2380": 164.704749927, + "2381": 182.3473790355, + "2382": 200.3177903546, + "2383": 218.8787100537, + "2384": 237.744986455, + "2385": 257.1509452742, + "2386": 276.8386301838, + "2387": 297.0130416695, + "2388": 317.4444367895, + "2389": 338.3076817563, + "2390": 359.4021537045, + "2391": 380.871894456, + "2392": 402.5461929886, + "2393": 424.5376982668, + "2394": 446.7062848296, + "2395": 469.13276421, + "2396": 491.7081495198, + "2397": 514.481095934, + "2398": 537.3741852585, + "2399": 560.403724291, + "2400": 583.5241690657, + "2401": 606.719413647, + "2402": 629.9759680391, + "2403": 653.2453771358, + "2404": 676.5462581499, + "2405": 699.7979980352, + "2406": 723.0512477391, + "2407": 746.1935544183, + "2408": 769.3074028588, + "2409": 792.2489442201, + "2410": 815.1321715972, + "2411": 837.782407858, + "2412": 860.3447045275, + "2413": 882.6142455531, + "2414": 904.7665684378, + "2415": 926.5675265237, + "2416": 948.2224505258, + "2417": 969.4687872503, + "2418": 990.5408502777, + "2419": 1011.1487160564, + "2420": 1031.5547563034, + "2421": 1051.4428213049, + "2422": 1071.1023054532, + "2423": 1090.1920805709, + "2424": 1109.0274216182, + "2425": 1127.2435682309, + "2426": 1145.1804316911, + "2427": 1162.4510589904, + "2428": 1179.418656258, + "2429": 1195.6756049682, + "2430": 1211.6069726884, + "2431": 1226.78608406, + "2432": 1241.618348403, + "2433": 1255.659717418, + "2434": 1269.3343422125, + "2435": 1282.1825540023, + "2436": 1294.6455717517, + "2437": 1306.2499202942, + "2438": 1317.4521451611, + "2439": 1327.7668333942, + "2440": 1337.664055315, + "2441": 1346.6483758764, + "2442": 1355.2015350377, + "2443": 1362.8200309189, + "2444": 1369.995371909, + "2445": 1376.2179763872, + "2446": 1381.9871814135, + "2447": 1386.7893367116, + "2448": 1391.1296373574, + "2449": 1394.4923915625, + "2450": 1397.3866586441, + "2451": 1399.2967405015, + "2452": 1400.733551669, + "2453": 1401.1834229584, + "2454": 1401.1571077745, + "2455": 1400.1449930593, + "2456": 1398.6556553781, + "2457": 1396.1855490126, + "2458": 1393.2390665695, + "2459": 1389.3207169353, + "2460": 1384.9287181502, + "2461": 1379.5775891831, + "2462": 1373.7574072689, + "2463": 1366.9946174301, + "2464": 1359.7692219858, + "2465": 1351.6214609173, + "2466": 1343.0193672776, + "2467": 1333.51879047, + "2468": 1323.5739471687, + "2469": 1312.7580490582, + "2470": 1301.5097038484, + "2471": 1289.4211698435, + "2472": 1276.913714805, + "2473": 1263.6002528267, + "2474": 1249.8830491702, + "2475": 1235.3972013706, + "2476": 1220.5243846324, + "2477": 1204.9233200348, + "2478": 1188.9535864276, + "2479": 1172.2988753065, + "2480": 1155.295250073, + "2481": 1137.6526209645, + "2482": 1119.6822096454, + "2483": 1101.1212899463, + "2484": 1082.255013545, + "2485": 1062.8490547258, + "2486": 1043.1613698162, + "2487": 1022.9869583305, + "2488": 1002.5555632105, + "2489": 981.6923182437, + "2490": 960.5978462955, + "2491": 939.128105544, + "2492": 917.4538070114, + "2493": 895.4623017332, + "2494": 873.2937151704, + "2495": 850.86723579, + "2496": 828.2918504802, + "2497": 805.518904066, + "2498": 782.6258147415, + "2499": 759.596275709, + "2500": 736.4758309343, + "2501": 713.280586353, + "2502": 690.0240319609, + "2503": 666.7546228642, + "2504": 643.4537418501, + "2505": 620.2020019648, + "2506": 596.9487522609, + "2507": 573.8064455817, + "2508": 550.6925971412, + "2509": 527.7510557799, + "2510": 504.8678284028, + "2511": 482.217592142, + "2512": 459.6552954725, + "2513": 437.3857544469, + "2514": 415.2334315622, + "2515": 393.4324734763, + "2516": 371.7775494742, + "2517": 350.5312127497, + "2518": 329.4591497223, + "2519": 308.8512839436, + "2520": 288.4452436966, + "2521": 268.5571786951, + "2522": 248.8976945468, + "2523": 229.8079194291, + "2524": 210.9725783818, + "2525": 192.7564317691, + "2526": 174.8195683089, + "2527": 157.5489410096, + "2528": 140.581343742, + "2529": 124.3243950318, + "2530": 108.3930273116, + "2531": 93.21391594, + "2532": 78.381651597, + "2533": 64.340282582, + "2534": 50.6656577875, + "2535": 37.8174459977, + "2536": 25.3544282483, + "2537": 13.7500797058, + "2538": 2.5478548389, + "2539": -7.7668333942, + "2540": -17.664055315, + "2541": -26.6483758764, + "2542": -35.2015350377, + "2543": -42.8200309189, + "2544": -49.995371909, + "2545": -56.2179763872, + "2546": -61.9871814135, + "2547": -66.7893367116, + "2548": -71.1296373574, + "2549": -74.4923915625, + "2550": -77.3866586441, + "2551": -79.2967405015, + "2552": -80.733551669, + "2553": -81.1834229584, + "2554": -81.1571077745, + "2555": -80.1449930593, + "2556": -78.6556553781, + "2557": -76.1855490126, + "2558": -73.2390665695, + "2559": -69.3207169353, + "2560": -64.9287181502, + "2561": -59.5775891831, + "2562": -53.7574072689, + "2563": -46.9946174301, + "2564": -39.7692219858, + "2565": -31.6214609173, + "2566": -23.0193672776, + "2567": -13.51879047, + "2568": -3.5739471687, + "2569": 7.2419509418, + "2570": 18.4902961516, + "2571": 30.5788301565, + "2572": 43.086285195, + "2573": 56.3997471733, + "2574": 70.1169508298, + "2575": 84.6027986294, + "2576": 99.4756153676, + "2577": 115.0766799652, + "2578": 131.0464135724, + "2579": 147.7011246935, + "2580": 164.704749927, + "2581": 182.3473790355, + "2582": 200.3177903546, + "2583": 218.8787100537, + "2584": 237.744986455, + "2585": 257.1509452742, + "2586": 276.8386301838, + "2587": 297.0130416695, + "2588": 317.4444367895, + "2589": 338.3076817563, + "2590": 359.4021537045, + "2591": 380.871894456, + "2592": 402.5461929886, + "2593": 424.5376982668, + "2594": 446.7062848296, + "2595": 469.13276421, + "2596": 491.7081495198, + "2597": 514.481095934, + "2598": 537.3741852585, + "2599": 560.403724291, + "2600": 583.5241690657, + "2601": 606.719413647, + "2602": 629.9759680391, + "2603": 653.2453771358, + "2604": 676.5462581499, + "2605": 699.7979980352, + "2606": 723.0512477391, + "2607": 746.1935544183, + "2608": 769.3074028588, + "2609": 792.2489442201, + "2610": 815.1321715972, + "2611": 837.782407858, + "2612": 860.3447045275, + "2613": 882.6142455531, + "2614": 904.7665684378, + "2615": 926.5675265237, + "2616": 948.2224505258, + "2617": 969.4687872503, + "2618": 990.5408502777, + "2619": 1011.1487160564, + "2620": 1031.5547563034, + "2621": 1051.4428213049, + "2622": 1071.1023054532, + "2623": 1090.1920805709, + "2624": 1109.0274216182, + "2625": 1127.2435682309, + "2626": 1145.1804316911, + "2627": 1162.4510589904, + "2628": 1179.418656258, + "2629": 1195.6756049682, + "2630": 1211.6069726884, + "2631": 1226.78608406, + "2632": 1241.618348403, + "2633": 1255.659717418, + "2634": 1269.3343422125, + "2635": 1282.1825540023, + "2636": 1294.6455717517, + "2637": 1306.2499202942, + "2638": 1317.4521451611, + "2639": 1327.7668333942, + "2640": 1337.664055315, + "2641": 1346.6483758764, + "2642": 1355.2015350377, + "2643": 1362.8200309189, + "2644": 1369.995371909, + "2645": 1376.2179763872, + "2646": 1381.9871814135, + "2647": 1386.7893367116, + "2648": 1391.1296373574, + "2649": 1394.4923915625, + "2650": 1397.3866586441, + "2651": 1399.2967405015, + "2652": 1400.733551669, + "2653": 1401.1834229584, + "2654": 1401.1571077745, + "2655": 1400.1449930593, + "2656": 1398.6556553781, + "2657": 1396.1855490126, + "2658": 1393.2390665695, + "2659": 1389.3207169353, + "2660": 1384.9287181502, + "2661": 1379.5775891831, + "2662": 1373.7574072689, + "2663": 1366.9946174301, + "2664": 1359.7692219858, + "2665": 1351.6214609173, + "2666": 1343.0193672776, + "2667": 1333.51879047, + "2668": 1323.5739471687, + "2669": 1312.7580490582, + "2670": 1301.5097038484, + "2671": 1289.4211698435, + "2672": 1276.913714805, + "2673": 1263.6002528267, + "2674": 1249.8830491702, + "2675": 1235.3972013706, + "2676": 1220.5243846324, + "2677": 1204.9233200348, + "2678": 1188.9535864276, + "2679": 1172.2988753065, + "2680": 1155.295250073, + "2681": 1137.6526209645, + "2682": 1119.6822096454, + "2683": 1101.1212899463, + "2684": 1082.255013545, + "2685": 1062.8490547258, + "2686": 1043.1613698162, + "2687": 1022.9869583305, + "2688": 1002.5555632105, + "2689": 981.6923182437, + "2690": 960.5978462955, + "2691": 939.128105544, + "2692": 917.4538070114, + "2693": 895.4623017332, + "2694": 873.2937151704, + "2695": 850.86723579, + "2696": 828.2918504802, + "2697": 805.518904066, + "2698": 782.6258147415, + "2699": 759.596275709, + "2700": 736.4758309343, + "2701": 713.280586353, + "2702": 690.0240319609, + "2703": 666.7546228642, + "2704": 643.4537418501, + "2705": 620.2020019648, + "2706": 596.9487522609, + "2707": 573.8064455817, + "2708": 550.6925971412, + "2709": 527.7510557799, + "2710": 504.8678284028, + "2711": 482.217592142, + "2712": 459.6552954725, + "2713": 437.3857544469, + "2714": 415.2334315622, + "2715": 393.4324734763, + "2716": 371.7775494742, + "2717": 350.5312127497, + "2718": 329.4591497223, + "2719": 308.8512839436, + "2720": 288.4452436966, + "2721": 268.5571786951, + "2722": 248.8976945468, + "2723": 229.8079194291, + "2724": 210.9725783818, + "2725": 192.7564317691, + "2726": 174.8195683089, + "2727": 157.5489410096, + "2728": 140.581343742, + "2729": 124.3243950318, + "2730": 108.3930273116, + "2731": 93.21391594, + "2732": 78.381651597, + "2733": 64.340282582, + "2734": 50.6656577875, + "2735": 37.8174459977, + "2736": 25.3544282483, + "2737": 13.7500797058, + "2738": 2.5478548389, + "2739": -7.7668333942, + "2740": -17.664055315, + "2741": -26.6483758764, + "2742": -35.2015350377, + "2743": -42.8200309189, + "2744": -49.995371909, + "2745": -56.2179763872, + "2746": -61.9871814135, + "2747": -66.7893367116, + "2748": -71.1296373574, + "2749": -74.4923915625, + "2750": -77.3866586441, + "2751": -79.2967405015, + "2752": -80.733551669, + "2753": -81.1834229584, + "2754": -81.1571077745, + "2755": -80.1449930593, + "2756": -78.6556553781, + "2757": -76.1855490126, + "2758": -73.2390665695, + "2759": -69.3207169353, + "2760": -64.9287181502, + "2761": -59.5775891831, + "2762": -53.7574072689, + "2763": -46.9946174301, + "2764": -39.7692219858, + "2765": -31.6214609173, + "2766": -23.0193672776, + "2767": -13.51879047, + "2768": -3.5739471687, + "2769": 7.2419509418, + "2770": 18.4902961516, + "2771": 30.5788301565, + "2772": 43.086285195, + "2773": 56.3997471733, + "2774": 70.1169508298, + "2775": 84.6027986294, + "2776": 99.4756153676, + "2777": 115.0766799652, + "2778": 131.0464135724, + "2779": 147.7011246935, + "2780": 164.704749927, + "2781": 182.3473790355, + "2782": 200.3177903546, + "2783": 218.8787100537, + "2784": 237.744986455, + "2785": 257.1509452742, + "2786": 276.8386301838, + "2787": 297.0130416695, + "2788": 317.4444367895, + "2789": 338.3076817563, + "2790": 359.4021537045, + "2791": 380.871894456, + "2792": 402.5461929886, + "2793": 424.5376982668, + "2794": 446.7062848296, + "2795": 469.13276421, + "2796": 491.7081495198, + "2797": 514.481095934, + "2798": 537.3741852585, + "2799": 560.403724291, + "2800": 583.5241690657, + "2801": 606.719413647, + "2802": 629.9759680391, + "2803": 653.2453771358, + "2804": 676.5462581499, + "2805": 699.7979980352, + "2806": 723.0512477391, + "2807": 746.1935544183, + "2808": 769.3074028588, + "2809": 792.2489442201, + "2810": 815.1321715972, + "2811": 837.782407858, + "2812": 860.3447045275, + "2813": 882.6142455531, + "2814": 904.7665684378, + "2815": 926.5675265237, + "2816": 948.2224505258, + "2817": 969.4687872503, + "2818": 990.5408502777, + "2819": 1011.1487160564, + "2820": 1031.5547563034, + "2821": 1051.4428213049, + "2822": 1071.1023054532, + "2823": 1090.1920805709, + "2824": 1109.0274216182, + "2825": 1127.2435682309, + "2826": 1145.1804316911, + "2827": 1162.4510589904, + "2828": 1179.418656258, + "2829": 1195.6756049682, + "2830": 1211.6069726884, + "2831": 1226.78608406, + "2832": 1241.618348403, + "2833": 1255.659717418, + "2834": 1269.3343422125, + "2835": 1282.1825540023, + "2836": 1294.6455717517, + "2837": 1306.2499202942, + "2838": 1317.4521451611, + "2839": 1327.7668333942, + "2840": 1337.664055315, + "2841": 1346.6483758764, + "2842": 1355.2015350377, + "2843": 1362.8200309189, + "2844": 1369.995371909, + "2845": 1376.2179763872, + "2846": 1381.9871814135, + "2847": 1386.7893367116, + "2848": 1391.1296373574, + "2849": 1394.4923915625, + "2850": 1397.3866586441, + "2851": 1399.2967405015, + "2852": 1400.733551669, + "2853": 1401.1834229584, + "2854": 1401.1571077745, + "2855": 1400.1449930593, + "2856": 1398.6556553781, + "2857": 1396.1855490126, + "2858": 1393.2390665695, + "2859": 1389.3207169353, + "2860": 1384.9287181502, + "2861": 1379.5775891831, + "2862": 1373.7574072689, + "2863": 1366.9946174301, + "2864": 1359.7692219858, + "2865": 1351.6214609173, + "2866": 1343.0193672776, + "2867": 1333.51879047, + "2868": 1323.5739471687, + "2869": 1312.7580490582, + "2870": 1301.5097038484, + "2871": 1289.4211698435, + "2872": 1276.913714805, + "2873": 1263.6002528267, + "2874": 1249.8830491702, + "2875": 1235.3972013706, + "2876": 1220.5243846324, + "2877": 1204.9233200348, + "2878": 1188.9535864276, + "2879": 1172.2988753065, + "2880": 1155.295250073, + "2881": 1137.6526209645, + "2882": 1119.6822096454, + "2883": 1101.1212899463, + "2884": 1082.255013545, + "2885": 1062.8490547258, + "2886": 1043.1613698162, + "2887": 1022.9869583305, + "2888": 1002.5555632105, + "2889": 981.6923182437, + "2890": 960.5978462955, + "2891": 939.128105544, + "2892": 917.4538070114, + "2893": 895.4623017332, + "2894": 873.2937151704, + "2895": 850.86723579, + "2896": 828.2918504802, + "2897": 805.518904066, + "2898": 782.6258147415, + "2899": 759.596275709, + "2900": 736.4758309343, + "2901": 713.280586353, + "2902": 690.0240319609, + "2903": 666.7546228642, + "2904": 643.4537418501, + "2905": 620.2020019648, + "2906": 596.9487522609, + "2907": 573.8064455817, + "2908": 550.6925971412, + "2909": 527.7510557799, + "2910": 504.8678284028, + "2911": 482.217592142, + "2912": 459.6552954725, + "2913": 437.3857544469, + "2914": 415.2334315622, + "2915": 393.4324734763, + "2916": 371.7775494742, + "2917": 350.5312127497, + "2918": 329.4591497223, + "2919": 308.8512839436, + "2920": 288.4452436966, + "2921": 268.5571786951, + "2922": 248.8976945468, + "2923": 229.8079194291, + "2924": 210.9725783818, + "2925": 192.7564317691, + "2926": 174.8195683089, + "2927": 157.5489410096, + "2928": 140.581343742, + "2929": 124.3243950318, + "2930": 108.3930273116, + "2931": 93.21391594, + "2932": 78.381651597, + "2933": 64.340282582, + "2934": 50.6656577875, + "2935": 37.8174459977, + "2936": 25.3544282483, + "2937": 13.7500797058, + "2938": 2.5478548389, + "2939": -7.7668333942, + "2940": -17.664055315, + "2941": -26.6483758764, + "2942": -35.2015350377, + "2943": -42.8200309189, + "2944": -49.995371909, + "2945": -56.2179763872, + "2946": -61.9871814135, + "2947": -66.7893367116, + "2948": -71.1296373574, + "2949": -74.4923915625, + "2950": -77.3866586441, + "2951": -79.2967405015, + "2952": -80.733551669, + "2953": -81.1834229584, + "2954": -81.1571077745, + "2955": -80.1449930593, + "2956": -78.6556553781, + "2957": -76.1855490126, + "2958": -73.2390665695, + "2959": -69.3207169353, + "2960": -64.9287181502, + "2961": -59.5775891831, + "2962": -53.7574072689, + "2963": -46.9946174301, + "2964": -39.7692219858, + "2965": -31.6214609173, + "2966": -23.0193672776, + "2967": -13.51879047, + "2968": -3.5739471687, + "2969": 7.2419509418, + "2970": 18.4902961516, + "2971": 30.5788301565, + "2972": 43.086285195, + "2973": 56.3997471733, + "2974": 70.1169508298, + "2975": 84.6027986294, + "2976": 99.4756153676, + "2977": 115.0766799652, + "2978": 131.0464135724, + "2979": 147.7011246935, + "2980": 164.704749927, + "2981": 182.3473790355, + "2982": 200.3177903546, + "2983": 218.8787100537, + "2984": 237.744986455, + "2985": 257.1509452742, + "2986": 276.8386301838, + "2987": 297.0130416695, + "2988": 317.4444367895, + "2989": 338.3076817563, + "2990": 359.4021537045, + "2991": 380.871894456, + "2992": 402.5461929886, + "2993": 424.5376982668, + "2994": 446.7062848296, + "2995": 469.13276421, + "2996": 491.7081495198, + "2997": 514.481095934, + "2998": 537.3741852585, + "2999": 560.403724291, + "3000": 583.5241690657, + "3001": 606.719413647, + "3002": 629.9759680391, + "3003": 653.2453771358, + "3004": 676.5462581499, + "3005": 699.7979980352, + "3006": 723.0512477391, + "3007": 746.1935544183, + "3008": 769.3074028588, + "3009": 792.2489442201, + "3010": 815.1321715972, + "3011": 837.782407858, + "3012": 860.3447045275, + "3013": 882.6142455531, + "3014": 904.7665684378, + "3015": 926.5675265237, + "3016": 948.2224505258, + "3017": 969.4687872503, + "3018": 990.5408502777, + "3019": 1011.1487160564, + "3020": 1031.5547563034, + "3021": 1051.4428213049, + "3022": 1071.1023054532, + "3023": 1090.1920805709, + "3024": 1109.0274216182, + "3025": 1127.2435682309, + "3026": 1145.1804316911, + "3027": 1162.4510589904, + "3028": 1179.418656258, + "3029": 1195.6756049682, + "3030": 1211.6069726884, + "3031": 1226.78608406, + "3032": 1241.618348403, + "3033": 1255.659717418, + "3034": 1269.3343422125, + "3035": 1282.1825540023, + "3036": 1294.6455717517, + "3037": 1306.2499202942, + "3038": 1317.4521451611, + "3039": 1327.7668333942, + "3040": 1337.664055315, + "3041": 1346.6483758764, + "3042": 1355.2015350377, + "3043": 1362.8200309189, + "3044": 1369.995371909, + "3045": 1376.2179763872, + "3046": 1381.9871814135, + "3047": 1386.7893367116, + "3048": 1391.1296373574, + "3049": 1394.4923915625, + "3050": 1397.3866586441, + "3051": 1399.2967405015, + "3052": 1400.733551669, + "3053": 1401.1834229584, + "3054": 1401.1571077745, + "3055": 1400.1449930593, + "3056": 1398.6556553781, + "3057": 1396.1855490126, + "3058": 1393.2390665695, + "3059": 1389.3207169353, + "3060": 1384.9287181502, + "3061": 1379.5775891831, + "3062": 1373.7574072689, + "3063": 1366.9946174301, + "3064": 1359.7692219858, + "3065": 1351.6214609173, + "3066": 1343.0193672776, + "3067": 1333.51879047, + "3068": 1323.5739471687, + "3069": 1312.7580490582, + "3070": 1301.5097038484, + "3071": 1289.4211698435, + "3072": 1276.913714805, + "3073": 1263.6002528267, + "3074": 1249.8830491702, + "3075": 1235.3972013706, + "3076": 1220.5243846324, + "3077": 1204.9233200348, + "3078": 1188.9535864276, + "3079": 1172.2988753065, + "3080": 1155.295250073, + "3081": 1137.6526209645, + "3082": 1119.6822096454, + "3083": 1101.1212899463, + "3084": 1082.255013545, + "3085": 1062.8490547258, + "3086": 1043.1613698162, + "3087": 1022.9869583305, + "3088": 1002.5555632105, + "3089": 981.6923182437, + "3090": 960.5978462955, + "3091": 939.128105544, + "3092": 917.4538070114, + "3093": 895.4623017332, + "3094": 873.2937151704, + "3095": 850.86723579, + "3096": 828.2918504802, + "3097": 805.518904066, + "3098": 782.6258147414, + "3099": 759.596275709, + "3100": 736.4758309343, + "3101": 713.280586353, + "3102": 690.0240319609, + "3103": 666.7546228642, + "3104": 643.4537418501, + "3105": 620.2020019648, + "3106": 596.9487522609, + "3107": 573.8064455817, + "3108": 550.6925971412, + "3109": 527.7510557799, + "3110": 504.8678284028, + "3111": 482.217592142, + "3112": 459.6552954725, + "3113": 437.3857544469, + "3114": 415.2334315622, + "3115": 393.4324734763, + "3116": 371.7775494742, + "3117": 350.5312127497, + "3118": 329.4591497223, + "3119": 308.8512839436, + "3120": 288.4452436966, + "3121": 268.5571786951, + "3122": 248.8976945468, + "3123": 229.8079194291, + "3124": 210.9725783818, + "3125": 192.7564317691, + "3126": 174.8195683089, + "3127": 157.5489410096, + "3128": 140.581343742, + "3129": 124.3243950318, + "3130": 108.3930273116, + "3131": 93.21391594, + "3132": 78.381651597, + "3133": 64.340282582, + "3134": 50.6656577875, + "3135": 37.8174459977, + "3136": 25.3544282483, + "3137": 13.7500797058, + "3138": 2.5478548389, + "3139": -7.7668333942, + "3140": -17.664055315, + "3141": -26.6483758764, + "3142": -35.2015350377, + "3143": -42.8200309189, + "3144": -49.995371909, + "3145": -56.2179763872, + "3146": -61.9871814135, + "3147": -66.7893367116, + "3148": -71.1296373574, + "3149": -74.4923915625, + "3150": -77.3866586441, + "3151": -79.2967405015, + "3152": -80.733551669, + "3153": -81.1834229584, + "3154": -81.1571077745, + "3155": -80.1449930593, + "3156": -78.655655378, + "3157": -76.1855490126, + "3158": -73.2390665695, + "3159": -69.3207169353, + "3160": -64.9287181502, + "3161": -59.5775891831, + "3162": -53.7574072689, + "3163": -46.9946174301, + "3164": -39.7692219858, + "3165": -31.6214609173, + "3166": -23.0193672776, + "3167": -13.51879047, + "3168": -3.5739471687, + "3169": 7.2419509418, + "3170": 18.4902961516, + "3171": 30.5788301565, + "3172": 43.086285195, + "3173": 56.3997471733, + "3174": 70.1169508298, + "3175": 84.6027986294, + "3176": 99.4756153676, + "3177": 115.0766799652, + "3178": 131.0464135724, + "3179": 147.7011246935, + "3180": 164.704749927, + "3181": 182.3473790355, + "3182": 200.3177903546, + "3183": 218.8787100537, + "3184": 237.744986455, + "3185": 257.1509452742, + "3186": 276.8386301838, + "3187": 297.0130416695, + "3188": 317.4444367895, + "3189": 338.3076817563, + "3190": 359.4021537045, + "3191": 380.871894456, + "3192": 402.5461929886, + "3193": 424.5376982668, + "3194": 446.7062848296, + "3195": 469.13276421, + "3196": 491.7081495198, + "3197": 514.481095934, + "3198": 537.3741852586, + "3199": 560.403724291, + "3200": 583.5241690657, + "3201": 606.719413647, + "3202": 629.975968039, + "3203": 653.2453771358, + "3204": 676.5462581499, + "3205": 699.7979980352, + "3206": 723.0512477391, + "3207": 746.1935544183, + "3208": 769.3074028588, + "3209": 792.2489442201, + "3210": 815.1321715972, + "3211": 837.782407858, + "3212": 860.3447045275, + "3213": 882.6142455531, + "3214": 904.7665684379, + "3215": 926.5675265237, + "3216": 948.2224505258, + "3217": 969.4687872503, + "3218": 990.5408502777, + "3219": 1011.1487160564, + "3220": 1031.5547563034, + "3221": 1051.4428213049, + "3222": 1071.1023054532, + "3223": 1090.1920805709, + "3224": 1109.0274216182, + "3225": 1127.2435682309, + "3226": 1145.1804316911, + "3227": 1162.4510589904, + "3228": 1179.418656258, + "3229": 1195.6756049682, + "3230": 1211.6069726885, + "3231": 1226.78608406, + "3232": 1241.618348403, + "3233": 1255.659717418, + "3234": 1269.3343422125, + "3235": 1282.1825540023, + "3236": 1294.6455717517, + "3237": 1306.2499202942, + "3238": 1317.4521451611, + "3239": 1327.7668333942, + "3240": 1337.664055315, + "3241": 1346.6483758764, + "3242": 1355.2015350377, + "3243": 1362.8200309189, + "3244": 1369.995371909, + "3245": 1376.2179763872, + "3246": 1381.9871814135, + "3247": 1386.7893367116, + "3248": 1391.1296373574, + "3249": 1394.4923915625, + "3250": 1397.3866586441, + "3251": 1399.2967405015, + "3252": 1400.733551669, + "3253": 1401.1834229584, + "3254": 1401.1571077745, + "3255": 1400.1449930593, + "3256": 1398.6556553781, + "3257": 1396.1855490126, + "3258": 1393.2390665695, + "3259": 1389.3207169353, + "3260": 1384.9287181502, + "3261": 1379.5775891831, + "3262": 1373.7574072689, + "3263": 1366.9946174301, + "3264": 1359.7692219858, + "3265": 1351.6214609173, + "3266": 1343.0193672776, + "3267": 1333.51879047, + "3268": 1323.5739471687, + "3269": 1312.7580490582, + "3270": 1301.5097038485, + "3271": 1289.4211698435, + "3272": 1276.913714805, + "3273": 1263.6002528267, + "3274": 1249.8830491702, + "3275": 1235.3972013706, + "3276": 1220.5243846323, + "3277": 1204.9233200348, + "3278": 1188.9535864276, + "3279": 1172.2988753065, + "3280": 1155.295250073, + "3281": 1137.6526209645, + "3282": 1119.6822096454, + "3283": 1101.1212899463, + "3284": 1082.255013545, + "3285": 1062.8490547258, + "3286": 1043.1613698162, + "3287": 1022.9869583305, + "3288": 1002.5555632105, + "3289": 981.6923182437, + "3290": 960.5978462956, + "3291": 939.128105544, + "3292": 917.4538070114, + "3293": 895.4623017332, + "3294": 873.2937151704, + "3295": 850.86723579, + "3296": 828.2918504802, + "3297": 805.518904066, + "3298": 782.6258147414, + "3299": 759.596275709, + "3300": 736.4758309343, + "3301": 713.280586353, + "3302": 690.024031961, + "3303": 666.7546228642, + "3304": 643.4537418501, + "3305": 620.2020019648, + "3306": 596.9487522609, + "3307": 573.8064455817, + "3308": 550.6925971412, + "3309": 527.7510557799, + "3310": 504.8678284028, + "3311": 482.217592142, + "3312": 459.6552954725, + "3313": 437.3857544469, + "3314": 415.2334315621, + "3315": 393.4324734763, + "3316": 371.7775494742, + "3317": 350.5312127497, + "3318": 329.4591497223, + "3319": 308.8512839436, + "3320": 288.4452436966, + "3321": 268.5571786951, + "3322": 248.8976945468, + "3323": 229.8079194291, + "3324": 210.9725783818, + "3325": 192.7564317691, + "3326": 174.8195683089, + "3327": 157.5489410096, + "3328": 140.581343742, + "3329": 124.3243950318, + "3330": 108.3930273115, + "3331": 93.21391594, + "3332": 78.381651597, + "3333": 64.340282582, + "3334": 50.6656577875, + "3335": 37.8174459977, + "3336": 25.3544282483, + "3337": 13.7500797058, + "3338": 2.5478548389, + "3339": -7.7668333942, + "3340": -17.664055315, + "3341": -26.6483758764, + "3342": -35.2015350377, + "3343": -42.8200309189, + "3344": -49.995371909, + "3345": -56.2179763872, + "3346": -61.9871814135, + "3347": -66.7893367116, + "3348": -71.1296373574, + "3349": -74.4923915625, + "3350": -77.3866586441, + "3351": -79.2967405015, + "3352": -80.733551669, + "3353": -81.1834229584, + "3354": -81.1571077745, + "3355": -80.1449930593, + "3356": -78.6556553781, + "3357": -76.1855490126, + "3358": -73.2390665695, + "3359": -69.3207169353, + "3360": -64.9287181502, + "3361": -59.5775891831, + "3362": -53.7574072689, + "3363": -46.9946174301, + "3364": -39.7692219858, + "3365": -31.6214609173, + "3366": -23.0193672776, + "3367": -13.51879047, + "3368": -3.5739471687, + "3369": 7.2419509418, + "3370": 18.4902961516, + "3371": 30.5788301565, + "3372": 43.086285195, + "3373": 56.3997471733, + "3374": 70.1169508298, + "3375": 84.6027986294, + "3376": 99.4756153677, + "3377": 115.0766799652, + "3378": 131.0464135724, + "3379": 147.7011246935, + "3380": 164.704749927, + "3381": 182.3473790355, + "3382": 200.3177903546, + "3383": 218.8787100537, + "3384": 237.744986455, + "3385": 257.1509452742, + "3386": 276.8386301838, + "3387": 297.0130416695, + "3388": 317.4444367895, + "3389": 338.3076817563, + "3390": 359.4021537044, + "3391": 380.871894456, + "3392": 402.5461929886, + "3393": 424.5376982668, + "3394": 446.7062848296, + "3395": 469.13276421, + "3396": 491.7081495198, + "3397": 514.481095934, + "3398": 537.3741852586, + "3399": 560.403724291, + "3400": 583.5241690657, + "3401": 606.719413647, + "3402": 629.975968039, + "3403": 653.2453771358, + "3404": 676.5462581499, + "3405": 699.7979980352, + "3406": 723.0512477391, + "3407": 746.1935544183, + "3408": 769.3074028588, + "3409": 792.2489442201, + "3410": 815.1321715972, + "3411": 837.782407858, + "3412": 860.3447045275, + "3413": 882.6142455531, + "3414": 904.7665684379, + "3415": 926.5675265237, + "3416": 948.2224505258, + "3417": 969.4687872503, + "3418": 990.5408502777, + "3419": 1011.1487160564, + "3420": 1031.5547563034, + "3421": 1051.4428213049, + "3422": 1071.1023054532, + "3423": 1090.1920805709, + "3424": 1109.0274216182, + "3425": 1127.2435682309, + "3426": 1145.1804316911, + "3427": 1162.4510589904, + "3428": 1179.418656258, + "3429": 1195.6756049682, + "3430": 1211.6069726885, + "3431": 1226.78608406, + "3432": 1241.618348403, + "3433": 1255.659717418, + "3434": 1269.3343422125, + "3435": 1282.1825540023, + "3436": 1294.6455717517, + "3437": 1306.2499202942, + "3438": 1317.4521451611, + "3439": 1327.7668333942, + "3440": 1337.664055315, + "3441": 1346.6483758764, + "3442": 1355.2015350377, + "3443": 1362.8200309189, + "3444": 1369.995371909, + "3445": 1376.2179763872, + "3446": 1381.9871814135, + "3447": 1386.7893367116, + "3448": 1391.1296373574, + "3449": 1394.4923915625, + "3450": 1397.3866586441, + "3451": 1399.2967405015, + "3452": 1400.733551669, + "3453": 1401.1834229584, + "3454": 1401.1571077745, + "3455": 1400.1449930593, + "3456": 1398.655655378, + "3457": 1396.1855490126, + "3458": 1393.2390665695, + "3459": 1389.3207169353, + "3460": 1384.9287181502, + "3461": 1379.5775891831, + "3462": 1373.7574072689, + "3463": 1366.9946174301, + "3464": 1359.7692219858, + "3465": 1351.6214609173, + "3466": 1343.0193672776, + "3467": 1333.51879047, + "3468": 1323.5739471687, + "3469": 1312.7580490582, + "3470": 1301.5097038485, + "3471": 1289.4211698435, + "3472": 1276.913714805, + "3473": 1263.6002528267, + "3474": 1249.8830491702, + "3475": 1235.3972013706, + "3476": 1220.5243846323, + "3477": 1204.9233200348, + "3478": 1188.9535864275, + "3479": 1172.2988753065, + "3480": 1155.295250073, + "3481": 1137.6526209645, + "3482": 1119.6822096454, + "3483": 1101.1212899463, + "3484": 1082.255013545, + "3485": 1062.8490547258, + "3486": 1043.1613698162, + "3487": 1022.9869583305, + "3488": 1002.5555632105, + "3489": 981.6923182437, + "3490": 960.5978462956, + "3491": 939.128105544, + "3492": 917.4538070114, + "3493": 895.4623017332, + "3494": 873.2937151704, + "3495": 850.86723579, + "3496": 828.2918504802, + "3497": 805.518904066, + "3498": 782.6258147414, + "3499": 759.596275709, + "3500": 736.4758309343, + "3501": 713.280586353, + "3502": 690.024031961, + "3503": 666.7546228642, + "3504": 643.4537418501, + "3505": 620.2020019648, + "3506": 596.9487522609, + "3507": 573.8064455817, + "3508": 550.6925971412, + "3509": 527.7510557799, + "3510": 504.8678284028, + "3511": 482.217592142, + "3512": 459.6552954725, + "3513": 437.3857544469, + "3514": 415.2334315621, + "3515": 393.4324734763, + "3516": 371.7775494742, + "3517": 350.5312127497, + "3518": 329.4591497223, + "3519": 308.8512839436, + "3520": 288.4452436966, + "3521": 268.5571786951, + "3522": 248.8976945468, + "3523": 229.8079194291, + "3524": 210.9725783818, + "3525": 192.7564317691, + "3526": 174.8195683089, + "3527": 157.5489410096, + "3528": 140.581343742, + "3529": 124.3243950318, + "3530": 108.3930273115, + "3531": 93.21391594, + "3532": 78.381651597, + "3533": 64.340282582, + "3534": 50.6656577875, + "3535": 37.8174459977, + "3536": 25.3544282483, + "3537": 13.7500797058, + "3538": 2.5478548389, + "3539": -7.7668333942, + "3540": -17.664055315, + "3541": -26.6483758764, + "3542": -35.2015350377, + "3543": -42.8200309189, + "3544": -49.995371909, + "3545": -56.2179763872, + "3546": -61.9871814135, + "3547": -66.7893367116, + "3548": -71.1296373574, + "3549": -74.4923915625, + "3550": -77.3866586441, + "3551": -79.2967405015, + "3552": -80.733551669, + "3553": -81.1834229584, + "3554": -81.1571077745, + "3555": -80.1449930593, + "3556": -78.655655378, + "3557": -76.1855490126, + "3558": -73.2390665695, + "3559": -69.3207169353, + "3560": -64.9287181502, + "3561": -59.5775891831, + "3562": -53.7574072689, + "3563": -46.9946174301, + "3564": -39.7692219858, + "3565": -31.6214609173, + "3566": -23.0193672776, + "3567": -13.51879047, + "3568": -3.5739471687, + "3569": 7.2419509418, + "3570": 18.4902961516, + "3571": 30.5788301565, + "3572": 43.086285195, + "3573": 56.3997471733, + "3574": 70.1169508298, + "3575": 84.6027986294, + "3576": 99.4756153677, + "3577": 115.0766799652, + "3578": 131.0464135724, + "3579": 147.7011246935, + "3580": 164.704749927, + "3581": 182.3473790355, + "3582": 200.3177903546, + "3583": 218.8787100537, + "3584": 237.744986455, + "3585": 257.1509452742, + "3586": 276.8386301838, + "3587": 297.0130416695, + "3588": 317.4444367895, + "3589": 338.3076817563, + "3590": 359.4021537044, + "3591": 380.871894456, + "3592": 402.5461929886, + "3593": 424.5376982668, + "3594": 446.7062848296, + "3595": 469.13276421, + "3596": 491.7081495198, + "3597": 514.481095934, + "3598": 537.3741852586, + "3599": 560.403724291, + "3600": 583.5241690657, + "3601": 606.719413647, + "3602": 629.975968039, + "3603": 653.2453771358, + "3604": 676.5462581499, + "3605": 699.7979980352, + "3606": 723.0512477391, + "3607": 746.1935544183, + "3608": 769.3074028588, + "3609": 792.2489442201, + "3610": 815.1321715972, + "3611": 837.782407858, + "3612": 860.3447045275, + "3613": 882.6142455531, + "3614": 904.7665684379, + "3615": 926.5675265237, + "3616": 948.2224505258, + "3617": 969.4687872503, + "3618": 990.5408502777, + "3619": 1011.1487160564, + "3620": 1031.5547563034, + "3621": 1051.4428213049, + "3622": 1071.1023054532, + "3623": 1090.1920805709, + "3624": 1109.0274216182, + "3625": 1127.2435682309, + "3626": 1145.1804316911, + "3627": 1162.4510589904, + "3628": 1179.418656258, + "3629": 1195.6756049682, + "3630": 1211.6069726885, + "3631": 1226.78608406, + "3632": 1241.618348403, + "3633": 1255.659717418, + "3634": 1269.3343422125, + "3635": 1282.1825540023, + "3636": 1294.6455717517, + "3637": 1306.2499202942, + "3638": 1317.4521451611, + "3639": 1327.7668333942, + "3640": 1337.664055315, + "3641": 1346.6483758764, + "3642": 1355.2015350377, + "3643": 1362.8200309189, + "3644": 1369.995371909, + "3645": 1376.2179763872, + "3646": 1381.9871814135, + "3647": 1386.7893367116, + "3648": 1391.1296373574, + "3649": 1394.4923915625, + "3650": 1397.3866586441, + "3651": 1399.2967405015, + "3652": 1400.733551669, + "3653": 1401.1834229584, + "3654": 1401.1571077745, + "3655": 1400.1449930593, + "3656": 1398.655655378, + "3657": 1396.1855490126, + "3658": 1393.2390665695, + "3659": 1389.3207169353, + "3660": 1384.9287181502, + "3661": 1379.5775891831, + "3662": 1373.7574072689, + "3663": 1366.9946174301, + "3664": 1359.7692219858, + "3665": 1351.6214609173, + "3666": 1343.0193672776, + "3667": 1333.51879047, + "3668": 1323.5739471687, + "3669": 1312.7580490582, + "3670": 1301.5097038485, + "3671": 1289.4211698435, + "3672": 1276.913714805, + "3673": 1263.6002528267, + "3674": 1249.8830491702, + "3675": 1235.3972013706, + "3676": 1220.5243846323, + "3677": 1204.9233200348, + "3678": 1188.9535864275, + "3679": 1172.2988753065, + "3680": 1155.295250073, + "3681": 1137.6526209645, + "3682": 1119.6822096454, + "3683": 1101.1212899463, + "3684": 1082.255013545, + "3685": 1062.8490547258, + "3686": 1043.1613698162, + "3687": 1022.9869583305, + "3688": 1002.5555632105, + "3689": 981.6923182437, + "3690": 960.5978462956, + "3691": 939.128105544, + "3692": 917.4538070114, + "3693": 895.4623017332, + "3694": 873.2937151704, + "3695": 850.86723579, + "3696": 828.2918504802, + "3697": 805.518904066, + "3698": 782.6258147414, + "3699": 759.596275709, + "3700": 736.4758309343, + "3701": 713.280586353, + "3702": 690.024031961, + "3703": 666.7546228642, + "3704": 643.4537418501, + "3705": 620.2020019648, + "3706": 596.9487522609, + "3707": 573.8064455817, + "3708": 550.6925971412, + "3709": 527.7510557799, + "3710": 504.8678284028, + "3711": 482.217592142, + "3712": 459.6552954725, + "3713": 437.3857544469, + "3714": 415.2334315621, + "3715": 393.4324734763, + "3716": 371.7775494742, + "3717": 350.5312127497, + "3718": 329.4591497223, + "3719": 308.8512839436, + "3720": 288.4452436966, + "3721": 268.5571786951, + "3722": 248.8976945468, + "3723": 229.8079194291, + "3724": 210.9725783818, + "3725": 192.7564317691, + "3726": 174.8195683089, + "3727": 157.5489410096, + "3728": 140.581343742, + "3729": 124.3243950318, + "3730": 108.3930273115, + "3731": 93.21391594, + "3732": 78.381651597, + "3733": 64.340282582, + "3734": 50.6656577875, + "3735": 37.8174459977, + "3736": 25.3544282483, + "3737": 13.7500797058, + "3738": 2.5478548389, + "3739": -7.7668333942, + "3740": -17.664055315, + "3741": -26.6483758764, + "3742": -35.2015350377, + "3743": -42.8200309189, + "3744": -49.995371909, + "3745": -56.2179763872, + "3746": -61.9871814135, + "3747": -66.7893367116, + "3748": -71.1296373574, + "3749": -74.4923915625, + "3750": -77.3866586441, + "3751": -79.2967405015, + "3752": -80.733551669, + "3753": -81.1834229584, + "3754": -81.1571077745, + "3755": -80.1449930593, + "3756": -78.655655378, + "3757": -76.1855490126, + "3758": -73.2390665695, + "3759": -69.3207169353, + "3760": -64.9287181502, + "3761": -59.5775891831, + "3762": -53.7574072689, + "3763": -46.9946174301, + "3764": -39.7692219858, + "3765": -31.6214609173, + "3766": -23.0193672776, + "3767": -13.51879047, + "3768": -3.5739471687, + "3769": 7.2419509418, + "3770": 18.4902961516, + "3771": 30.5788301565, + "3772": 43.086285195, + "3773": 56.3997471733, + "3774": 70.1169508298, + "3775": 84.6027986294, + "3776": 99.4756153677, + "3777": 115.0766799652, + "3778": 131.0464135724, + "3779": 147.7011246935, + "3780": 164.704749927, + "3781": 182.3473790355, + "3782": 200.3177903546, + "3783": 218.8787100537, + "3784": 237.744986455, + "3785": 257.1509452742, + "3786": 276.8386301838, + "3787": 297.0130416695, + "3788": 317.4444367895, + "3789": 338.3076817563, + "3790": 359.4021537044, + "3791": 380.871894456, + "3792": 402.5461929886, + "3793": 424.5376982668, + "3794": 446.7062848296, + "3795": 469.13276421, + "3796": 491.7081495198, + "3797": 514.481095934, + "3798": 537.3741852586, + "3799": 560.403724291, + "3800": 583.5241690657, + "3801": 606.719413647, + "3802": 629.975968039, + "3803": 653.2453771358, + "3804": 676.5462581499, + "3805": 699.7979980352, + "3806": 723.0512477391, + "3807": 746.1935544183, + "3808": 769.3074028588, + "3809": 792.2489442201, + "3810": 815.1321715972, + "3811": 837.782407858, + "3812": 860.3447045275, + "3813": 882.6142455531, + "3814": 904.7665684379, + "3815": 926.5675265237, + "3816": 948.2224505258, + "3817": 969.4687872503, + "3818": 990.5408502777, + "3819": 1011.1487160564, + "3820": 1031.5547563034, + "3821": 1051.4428213049, + "3822": 1071.1023054532, + "3823": 1090.1920805709, + "3824": 1109.0274216182, + "3825": 1127.2435682309, + "3826": 1145.1804316911, + "3827": 1162.4510589904, + "3828": 1179.418656258, + "3829": 1195.6756049682, + "3830": 1211.6069726885, + "3831": 1226.78608406, + "3832": 1241.618348403, + "3833": 1255.659717418, + "3834": 1269.3343422125, + "3835": 1282.1825540023, + "3836": 1294.6455717517, + "3837": 1306.2499202942, + "3838": 1317.4521451611, + "3839": 1327.7668333942, + "3840": 1337.664055315, + "3841": 1346.6483758764, + "3842": 1355.2015350377, + "3843": 1362.8200309189, + "3844": 1369.995371909, + "3845": 1376.2179763872, + "3846": 1381.9871814135, + "3847": 1386.7893367116, + "3848": 1391.1296373574, + "3849": 1394.4923915625, + "3850": 1397.3866586441, + "3851": 1399.2967405015, + "3852": 1400.733551669, + "3853": 1401.1834229584, + "3854": 1401.1571077745, + "3855": 1400.1449930593, + "3856": 1398.655655378, + "3857": 1396.1855490126, + "3858": 1393.2390665695, + "3859": 1389.3207169353, + "3860": 1384.9287181502, + "3861": 1379.5775891831, + "3862": 1373.7574072689, + "3863": 1366.9946174301, + "3864": 1359.7692219858, + "3865": 1351.6214609173, + "3866": 1343.0193672776, + "3867": 1333.51879047, + "3868": 1323.5739471687, + "3869": 1312.7580490582, + "3870": 1301.5097038485, + "3871": 1289.4211698435, + "3872": 1276.913714805, + "3873": 1263.6002528267, + "3874": 1249.8830491702, + "3875": 1235.3972013706, + "3876": 1220.5243846323, + "3877": 1204.9233200348, + "3878": 1188.9535864275, + "3879": 1172.2988753065, + "3880": 1155.295250073, + "3881": 1137.6526209645, + "3882": 1119.6822096454, + "3883": 1101.1212899463, + "3884": 1082.255013545, + "3885": 1062.8490547258, + "3886": 1043.1613698162, + "3887": 1022.9869583305, + "3888": 1002.5555632105, + "3889": 981.6923182437, + "3890": 960.5978462956, + "3891": 939.128105544, + "3892": 917.4538070114, + "3893": 895.4623017332, + "3894": 873.2937151704, + "3895": 850.86723579, + "3896": 828.2918504802, + "3897": 805.518904066, + "3898": 782.6258147414, + "3899": 759.596275709, + "3900": 736.4758309343, + "3901": 713.280586353, + "3902": 690.024031961, + "3903": 666.7546228642, + "3904": 643.4537418501, + "3905": 620.2020019648, + "3906": 596.9487522609, + "3907": 573.8064455817, + "3908": 550.6925971412, + "3909": 527.7510557799, + "3910": 504.8678284028, + "3911": 482.217592142, + "3912": 459.6552954725, + "3913": 437.3857544469, + "3914": 415.2334315621, + "3915": 393.4324734763, + "3916": 371.7775494742, + "3917": 350.5312127497, + "3918": 329.4591497223, + "3919": 308.8512839436, + "3920": 288.4452436966, + "3921": 268.5571786951, + "3922": 248.8976945468, + "3923": 229.8079194291, + "3924": 210.9725783818, + "3925": 192.7564317691, + "3926": 174.8195683089, + "3927": 157.5489410096, + "3928": 140.581343742, + "3929": 124.3243950318, + "3930": 108.3930273115, + "3931": 93.21391594, + "3932": 78.381651597, + "3933": 64.340282582, + "3934": 50.6656577875, + "3935": 37.8174459977, + "3936": 25.3544282483, + "3937": 13.7500797058, + "3938": 2.5478548389, + "3939": -7.7668333942, + "3940": -17.664055315, + "3941": -26.6483758764, + "3942": -35.2015350377, + "3943": -42.8200309189, + "3944": -49.995371909, + "3945": -56.2179763872, + "3946": -61.9871814135, + "3947": -66.7893367116, + "3948": -71.1296373574, + "3949": -74.4923915625, + "3950": -77.3866586441, + "3951": -79.2967405015, + "3952": -80.733551669, + "3953": -81.1834229584, + "3954": -81.1571077745, + "3955": -80.1449930593, + "3956": -78.655655378, + "3957": -76.1855490126, + "3958": -73.2390665695, + "3959": -69.3207169353, + "3960": -64.9287181502, + "3961": -59.5775891831, + "3962": -53.7574072689, + "3963": -46.9946174301, + "3964": -39.7692219858, + "3965": -31.6214609173, + "3966": -23.0193672776, + "3967": -13.51879047, + "3968": -3.5739471687, + "3969": 7.2419509418, + "3970": 18.4902961516, + "3971": 30.5788301565, + "3972": 43.086285195, + "3973": 56.3997471733, + "3974": 70.1169508298, + "3975": 84.6027986294, + "3976": 99.4756153677, + "3977": 115.0766799652, + "3978": 131.0464135724, + "3979": 147.7011246935, + "3980": 164.704749927, + "3981": 182.3473790355, + "3982": 200.3177903546, + "3983": 218.8787100537, + "3984": 237.744986455, + "3985": 257.1509452742, + "3986": 276.8386301838, + "3987": 297.0130416695, + "3988": 317.4444367895, + "3989": 338.3076817563, + "3990": 359.4021537044, + "3991": 380.871894456, + "3992": 402.5461929886, + "3993": 424.5376982668, + "3994": 446.7062848296, + "3995": 469.13276421, + "3996": 491.7081495198, + "3997": 514.481095934, + "3998": 537.3741852586, + "3999": 560.403724291, + "4000": 583.5241690657, + "4001": 606.719413647, + "4002": 629.975968039, + "4003": 653.2453771358, + "4004": 676.5462581499, + "4005": 699.7979980352, + "4006": 723.0512477391, + "4007": 746.1935544183, + "4008": 769.3074028588, + "4009": 792.2489442201, + "4010": 815.1321715972, + "4011": 837.782407858, + "4012": 860.3447045275, + "4013": 882.6142455531, + "4014": 904.7665684379, + "4015": 926.5675265237, + "4016": 948.2224505258, + "4017": 969.4687872503, + "4018": 990.5408502777, + "4019": 1011.1487160564, + "4020": 1031.5547563034, + "4021": 1051.4428213049, + "4022": 1071.1023054532, + "4023": 1090.1920805709, + "4024": 1109.0274216182, + "4025": 1127.2435682309, + "4026": 1145.1804316911, + "4027": 1162.4510589904, + "4028": 1179.418656258, + "4029": 1195.6756049682, + "4030": 1211.6069726885, + "4031": 1226.78608406, + "4032": 1241.618348403, + "4033": 1255.659717418, + "4034": 1269.3343422125, + "4035": 1282.1825540023, + "4036": 1294.6455717517, + "4037": 1306.2499202942, + "4038": 1317.4521451611, + "4039": 1327.7668333942, + "4040": 1337.664055315, + "4041": 1346.6483758764, + "4042": 1355.2015350377, + "4043": 1362.8200309189, + "4044": 1369.995371909, + "4045": 1376.2179763872, + "4046": 1381.9871814135, + "4047": 1386.7893367116, + "4048": 1391.1296373574, + "4049": 1394.4923915625, + "4050": 1397.3866586441, + "4051": 1399.2967405015, + "4052": 1400.733551669, + "4053": 1401.1834229584, + "4054": 1401.1571077745, + "4055": 1400.1449930593, + "4056": 1398.655655378, + "4057": 1396.1855490126, + "4058": 1393.2390665695, + "4059": 1389.3207169353, + "4060": 1384.9287181502, + "4061": 1379.5775891831, + "4062": 1373.7574072689, + "4063": 1366.9946174301, + "4064": 1359.7692219858, + "4065": 1351.6214609173, + "4066": 1343.0193672776, + "4067": 1333.51879047, + "4068": 1323.5739471687, + "4069": 1312.7580490582, + "4070": 1301.5097038485, + "4071": 1289.4211698435, + "4072": 1276.913714805, + "4073": 1263.6002528267, + "4074": 1249.8830491702, + "4075": 1235.3972013706, + "4076": 1220.5243846323, + "4077": 1204.9233200348, + "4078": 1188.9535864275, + "4079": 1172.2988753065, + "4080": 1155.295250073, + "4081": 1137.6526209645, + "4082": 1119.6822096454, + "4083": 1101.1212899463, + "4084": 1082.255013545, + "4085": 1062.8490547258, + "4086": 1043.1613698162, + "4087": 1022.9869583305, + "4088": 1002.5555632105, + "4089": 981.6923182437, + "4090": 960.5978462956, + "4091": 939.128105544, + "4092": 917.4538070114, + "4093": 895.4623017332, + "4094": 873.2937151704, + "4095": 850.86723579, + "4096": 828.2918504802, + "4097": 805.518904066, + "4098": 782.6258147414, + "4099": 759.596275709, + "4100": 736.4758309343, + "4101": 713.280586353, + "4102": 690.024031961, + "4103": 666.7546228642, + "4104": 643.4537418501, + "4105": 620.2020019648, + "4106": 596.9487522609, + "4107": 573.8064455817, + "4108": 550.6925971412, + "4109": 527.7510557799, + "4110": 504.8678284028, + "4111": 482.217592142, + "4112": 459.6552954725, + "4113": 437.3857544469, + "4114": 415.2334315621, + "4115": 393.4324734763, + "4116": 371.7775494742, + "4117": 350.5312127497, + "4118": 329.4591497223, + "4119": 308.8512839436, + "4120": 288.4452436966, + "4121": 268.5571786951, + "4122": 248.8976945468, + "4123": 229.8079194291, + "4124": 210.9725783818, + "4125": 192.7564317691, + "4126": 174.8195683089, + "4127": 157.5489410096, + "4128": 140.581343742, + "4129": 124.3243950318, + "4130": 108.3930273115, + "4131": 93.21391594, + "4132": 78.381651597, + "4133": 64.340282582, + "4134": 50.6656577875, + "4135": 37.8174459977, + "4136": 25.3544282483, + "4137": 13.7500797058, + "4138": 2.5478548389, + "4139": -7.7668333942, + "4140": -17.664055315, + "4141": -26.6483758764, + "4142": -35.2015350377, + "4143": -42.8200309189, + "4144": -49.995371909, + "4145": -56.2179763872, + "4146": -61.9871814135, + "4147": -66.7893367116, + "4148": -71.1296373574, + "4149": -74.4923915625, + "4150": -77.3866586441, + "4151": -79.2967405015, + "4152": -80.733551669, + "4153": -81.1834229584, + "4154": -81.1571077745, + "4155": -80.1449930593, + "4156": -78.655655378, + "4157": -76.1855490126, + "4158": -73.2390665695, + "4159": -69.3207169353, + "4160": -64.9287181502, + "4161": -59.5775891831, + "4162": -53.7574072689, + "4163": -46.9946174301, + "4164": -39.7692219858, + "4165": -31.6214609173, + "4166": -23.0193672776, + "4167": -13.51879047, + "4168": -3.5739471687, + "4169": 7.2419509418, + "4170": 18.4902961516, + "4171": 30.5788301565, + "4172": 43.086285195, + "4173": 56.3997471733, + "4174": 70.1169508298, + "4175": 84.6027986294, + "4176": 99.4756153677, + "4177": 115.0766799652, + "4178": 131.0464135724, + "4179": 147.7011246935, + "4180": 164.704749927, + "4181": 182.3473790355, + "4182": 200.3177903546, + "4183": 218.8787100537, + "4184": 237.744986455, + "4185": 257.1509452742, + "4186": 276.8386301838, + "4187": 297.0130416695, + "4188": 317.4444367895, + "4189": 338.3076817563, + "4190": 359.4021537044, + "4191": 380.871894456, + "4192": 402.5461929886, + "4193": 424.5376982668, + "4194": 446.7062848296, + "4195": 469.13276421, + "4196": 491.7081495198, + "4197": 514.481095934, + "4198": 537.3741852586, + "4199": 560.403724291, + "4200": 583.5241690657, + "4201": 606.719413647, + "4202": 629.975968039, + "4203": 653.2453771358, + "4204": 676.5462581499, + "4205": 699.7979980352, + "4206": 723.0512477391, + "4207": 746.1935544183, + "4208": 769.3074028588, + "4209": 792.2489442201, + "4210": 815.1321715972, + "4211": 837.782407858, + "4212": 860.3447045275, + "4213": 882.6142455531, + "4214": 904.7665684379, + "4215": 926.5675265237, + "4216": 948.2224505258, + "4217": 969.4687872503, + "4218": 990.5408502777, + "4219": 1011.1487160564, + "4220": 1031.5547563034, + "4221": 1051.4428213049, + "4222": 1071.1023054532, + "4223": 1090.1920805709, + "4224": 1109.0274216182, + "4225": 1127.2435682309, + "4226": 1145.1804316911, + "4227": 1162.4510589904, + "4228": 1179.418656258, + "4229": 1195.6756049682, + "4230": 1211.6069726885, + "4231": 1226.78608406, + "4232": 1241.618348403, + "4233": 1255.659717418, + "4234": 1269.3343422125, + "4235": 1282.1825540023, + "4236": 1294.6455717517, + "4237": 1306.2499202942, + "4238": 1317.4521451611, + "4239": 1327.7668333942, + "4240": 1337.664055315, + "4241": 1346.6483758764, + "4242": 1355.2015350377, + "4243": 1362.8200309189, + "4244": 1369.995371909, + "4245": 1376.2179763872, + "4246": 1381.9871814135, + "4247": 1386.7893367116, + "4248": 1391.1296373574, + "4249": 1394.4923915625, + "4250": 1397.3866586441, + "4251": 1399.2967405015, + "4252": 1400.733551669, + "4253": 1401.1834229584, + "4254": 1401.1571077745, + "4255": 1400.1449930593, + "4256": 1398.655655378, + "4257": 1396.1855490126, + "4258": 1393.2390665695, + "4259": 1389.3207169353, + "4260": 1384.9287181502, + "4261": 1379.5775891831, + "4262": 1373.7574072689, + "4263": 1366.9946174301, + "4264": 1359.7692219858, + "4265": 1351.6214609173, + "4266": 1343.0193672776, + "4267": 1333.51879047, + "4268": 1323.5739471687, + "4269": 1312.7580490582, + "4270": 1301.5097038485, + "4271": 1289.4211698435, + "4272": 1276.913714805, + "4273": 1263.6002528267, + "4274": 1249.8830491702, + "4275": 1235.3972013706, + "4276": 1220.5243846323, + "4277": 1204.9233200348, + "4278": 1188.9535864275, + "4279": 1172.2988753065, + "4280": 1155.295250073, + "4281": 1137.6526209645, + "4282": 1119.6822096454, + "4283": 1101.1212899463, + "4284": 1082.255013545, + "4285": 1062.8490547258, + "4286": 1043.1613698162, + "4287": 1022.9869583305, + "4288": 1002.5555632105, + "4289": 981.6923182437, + "4290": 960.5978462956, + "4291": 939.128105544, + "4292": 917.4538070114, + "4293": 895.4623017332, + "4294": 873.2937151704, + "4295": 850.86723579, + "4296": 828.2918504802, + "4297": 805.518904066, + "4298": 782.6258147414, + "4299": 759.596275709, + "4300": 736.4758309343, + "4301": 713.280586353, + "4302": 690.024031961, + "4303": 666.7546228642, + "4304": 643.4537418501, + "4305": 620.2020019648, + "4306": 596.9487522609, + "4307": 573.8064455817, + "4308": 550.6925971412, + "4309": 527.7510557799, + "4310": 504.8678284028, + "4311": 482.217592142, + "4312": 459.6552954725, + "4313": 437.3857544469, + "4314": 415.2334315621, + "4315": 393.4324734763, + "4316": 371.7775494742, + "4317": 350.5312127497, + "4318": 329.4591497223, + "4319": 308.8512839436, + "4320": 288.4452436966, + "4321": 268.5571786951, + "4322": 248.8976945468, + "4323": 229.8079194291, + "4324": 210.9725783818, + "4325": 192.7564317691, + "4326": 174.8195683089, + "4327": 157.5489410096, + "4328": 140.581343742, + "4329": 124.3243950318, + "4330": 108.3930273115, + "4331": 93.21391594, + "4332": 78.381651597, + "4333": 64.340282582, + "4334": 50.6656577875, + "4335": 37.8174459977, + "4336": 25.3544282483, + "4337": 13.7500797058, + "4338": 2.5478548389, + "4339": -7.7668333942, + "4340": -17.664055315, + "4341": -26.6483758764, + "4342": -35.2015350377, + "4343": -42.8200309189, + "4344": -49.995371909, + "4345": -56.2179763872, + "4346": -61.9871814135, + "4347": -66.7893367116, + "4348": -71.1296373574, + "4349": -74.4923915625, + "4350": -77.3866586441, + "4351": -79.2967405015, + "4352": -80.733551669, + "4353": -81.1834229584, + "4354": -81.1571077745, + "4355": -80.1449930593, + "4356": -78.655655378, + "4357": -76.1855490126, + "4358": -73.2390665695, + "4359": -69.3207169353, + "4360": -64.9287181502, + "4361": -59.5775891831, + "4362": -53.7574072689, + "4363": -46.9946174301, + "4364": -39.7692219858, + "4365": -31.6214609173, + "4366": -23.0193672776, + "4367": -13.51879047, + "4368": -3.5739471687, + "4369": 7.2419509418, + "4370": 18.4902961516, + "4371": 30.5788301565, + "4372": 43.086285195, + "4373": 56.3997471733, + "4374": 70.1169508298, + "4375": 84.6027986294, + "4376": 99.4756153677, + "4377": 115.0766799652, + "4378": 131.0464135724, + "4379": 147.7011246935, + "4380": 164.704749927, + "4381": 182.3473790355, + "4382": 200.3177903546, + "4383": 218.8787100537, + "4384": 237.744986455, + "4385": 257.1509452742, + "4386": 276.8386301838, + "4387": 297.0130416695, + "4388": 317.4444367895, + "4389": 338.3076817563, + "4390": 359.4021537044, + "4391": 380.871894456, + "4392": 402.5461929886, + "4393": 424.5376982668, + "4394": 446.7062848296, + "4395": 469.13276421, + "4396": 491.7081495198, + "4397": 514.481095934, + "4398": 537.3741852586, + "4399": 560.403724291, + "4400": 583.5241690657, + "4401": 606.719413647, + "4402": 629.975968039, + "4403": 653.2453771358, + "4404": 676.5462581499, + "4405": 699.7979980352, + "4406": 723.0512477391, + "4407": 746.1935544183, + "4408": 769.3074028588, + "4409": 792.2489442201, + "4410": 815.1321715972, + "4411": 837.782407858, + "4412": 860.3447045275, + "4413": 882.6142455531, + "4414": 904.7665684379, + "4415": 926.5675265237, + "4416": 948.2224505258, + "4417": 969.4687872503, + "4418": 990.5408502777, + "4419": 1011.1487160564, + "4420": 1031.5547563034, + "4421": 1051.4428213049, + "4422": 1071.1023054532, + "4423": 1090.1920805709, + "4424": 1109.0274216182, + "4425": 1127.2435682309, + "4426": 1145.1804316911, + "4427": 1162.4510589904, + "4428": 1179.418656258, + "4429": 1195.6756049682, + "4430": 1211.6069726885, + "4431": 1226.78608406, + "4432": 1241.618348403, + "4433": 1255.659717418, + "4434": 1269.3343422125, + "4435": 1282.1825540023, + "4436": 1294.6455717517, + "4437": 1306.2499202942, + "4438": 1317.4521451611, + "4439": 1327.7668333942, + "4440": 1337.664055315, + "4441": 1346.6483758764, + "4442": 1355.2015350377, + "4443": 1362.8200309189, + "4444": 1369.995371909, + "4445": 1376.2179763872, + "4446": 1381.9871814135, + "4447": 1386.7893367116, + "4448": 1391.1296373574, + "4449": 1394.4923915625, + "4450": 1397.3866586441, + "4451": 1399.2967405015, + "4452": 1400.733551669, + "4453": 1401.1834229584, + "4454": 1401.1571077745, + "4455": 1400.1449930593, + "4456": 1398.655655378, + "4457": 1396.1855490126, + "4458": 1393.2390665695, + "4459": 1389.3207169353, + "4460": 1384.9287181502, + "4461": 1379.5775891831, + "4462": 1373.7574072689, + "4463": 1366.9946174301, + "4464": 1359.7692219858, + "4465": 1351.6214609173, + "4466": 1343.0193672776, + "4467": 1333.51879047, + "4468": 1323.5739471687, + "4469": 1312.7580490582, + "4470": 1301.5097038485, + "4471": 1289.4211698435, + "4472": 1276.913714805, + "4473": 1263.6002528267, + "4474": 1249.8830491702, + "4475": 1235.3972013706, + "4476": 1220.5243846323, + "4477": 1204.9233200348, + "4478": 1188.9535864275, + "4479": 1172.2988753065, + "4480": 1155.295250073, + "4481": 1137.6526209645, + "4482": 1119.6822096454, + "4483": 1101.1212899463, + "4484": 1082.255013545, + "4485": 1062.8490547258, + "4486": 1043.1613698162, + "4487": 1022.9869583305, + "4488": 1002.5555632105, + "4489": 981.6923182437, + "4490": 960.5978462956, + "4491": 939.128105544, + "4492": 917.4538070114, + "4493": 895.4623017332, + "4494": 873.2937151704, + "4495": 850.86723579, + "4496": 828.2918504802, + "4497": 805.518904066, + "4498": 782.6258147414, + "4499": 759.596275709, + "4500": 736.4758309343, + "4501": 713.280586353, + "4502": 690.024031961, + "4503": 666.7546228642, + "4504": 643.4537418501, + "4505": 620.2020019648, + "4506": 596.9487522609, + "4507": 573.8064455817, + "4508": 550.6925971412, + "4509": 527.7510557799, + "4510": 504.8678284028, + "4511": 482.217592142, + "4512": 459.6552954725, + "4513": 437.3857544469, + "4514": 415.2334315621, + "4515": 393.4324734763, + "4516": 371.7775494742, + "4517": 350.5312127497, + "4518": 329.4591497223, + "4519": 308.8512839436, + "4520": 288.4452436966, + "4521": 268.5571786951, + "4522": 248.8976945468, + "4523": 229.8079194291, + "4524": 210.9725783818, + "4525": 192.7564317691, + "4526": 174.8195683089, + "4527": 157.5489410096, + "4528": 140.581343742, + "4529": 124.3243950318, + "4530": 108.3930273115, + "4531": 93.21391594, + "4532": 78.381651597, + "4533": 64.340282582, + "4534": 50.6656577875, + "4535": 37.8174459977, + "4536": 25.3544282483, + "4537": 13.7500797058, + "4538": 2.5478548389, + "4539": -7.7668333942, + "4540": -17.664055315, + "4541": -26.6483758764, + "4542": -35.2015350377, + "4543": -42.8200309189, + "4544": -49.995371909, + "4545": -56.2179763872, + "4546": -61.9871814135, + "4547": -66.7893367116, + "4548": -71.1296373574, + "4549": -74.4923915625, + "4550": -77.3866586441, + "4551": -79.2967405015, + "4552": -80.733551669, + "4553": -81.1834229584, + "4554": -81.1571077745, + "4555": -80.1449930593, + "4556": -78.655655378, + "4557": -76.1855490126, + "4558": -73.2390665695, + "4559": -69.3207169353, + "4560": -64.9287181502, + "4561": -59.5775891831, + "4562": -53.7574072689, + "4563": -46.9946174301, + "4564": -39.7692219858, + "4565": -31.6214609173, + "4566": -23.0193672776, + "4567": -13.51879047, + "4568": -3.5739471687, + "4569": 7.2419509418, + "4570": 18.4902961516, + "4571": 30.5788301565, + "4572": 43.086285195, + "4573": 56.3997471733, + "4574": 70.1169508298, + "4575": 84.6027986294, + "4576": 99.4756153677, + "4577": 115.0766799652, + "4578": 131.0464135724, + "4579": 147.7011246935, + "4580": 164.704749927, + "4581": 182.3473790355, + "4582": 200.3177903546, + "4583": 218.8787100537, + "4584": 237.744986455, + "4585": 257.1509452742, + "4586": 276.8386301838, + "4587": 297.0130416695, + "4588": 317.4444367895, + "4589": 338.3076817563, + "4590": 359.4021537044, + "4591": 380.871894456, + "4592": 402.5461929886, + "4593": 424.5376982668, + "4594": 446.7062848296, + "4595": 469.13276421, + "4596": 491.7081495198, + "4597": 514.481095934, + "4598": 537.3741852586, + "4599": 560.403724291, + "4600": 583.5241690657, + "4601": 606.719413647, + "4602": 629.975968039, + "4603": 653.2453771358, + "4604": 676.5462581499, + "4605": 699.7979980352, + "4606": 723.0512477391, + "4607": 746.1935544183, + "4608": 769.3074028588, + "4609": 792.2489442201, + "4610": 815.1321715972, + "4611": 837.782407858, + "4612": 860.3447045275, + "4613": 882.6142455531, + "4614": 904.7665684379, + "4615": 926.5675265237, + "4616": 948.2224505258, + "4617": 969.4687872503, + "4618": 990.5408502777, + "4619": 1011.1487160564, + "4620": 1031.5547563034, + "4621": 1051.4428213049, + "4622": 1071.1023054532, + "4623": 1090.1920805709, + "4624": 1109.0274216182, + "4625": 1127.2435682309, + "4626": 1145.1804316911, + "4627": 1162.4510589904, + "4628": 1179.418656258, + "4629": 1195.6756049682, + "4630": 1211.6069726885, + "4631": 1226.78608406, + "4632": 1241.618348403, + "4633": 1255.659717418, + "4634": 1269.3343422125, + "4635": 1282.1825540023, + "4636": 1294.6455717517, + "4637": 1306.2499202942, + "4638": 1317.4521451611, + "4639": 1327.7668333942, + "4640": 1337.664055315, + "4641": 1346.6483758764, + "4642": 1355.2015350377, + "4643": 1362.8200309189, + "4644": 1369.995371909, + "4645": 1376.2179763872, + "4646": 1381.9871814135, + "4647": 1386.7893367116, + "4648": 1391.1296373574, + "4649": 1394.4923915625, + "4650": 1397.3866586441, + "4651": 1399.2967405015, + "4652": 1400.733551669, + "4653": 1401.1834229584, + "4654": 1401.1571077745, + "4655": 1400.1449930593, + "4656": 1398.655655378, + "4657": 1396.1855490126, + "4658": 1393.2390665695, + "4659": 1389.3207169353, + "4660": 1384.9287181502, + "4661": 1379.5775891831, + "4662": 1373.7574072689, + "4663": 1366.9946174301, + "4664": 1359.7692219858, + "4665": 1351.6214609173, + "4666": 1343.0193672776, + "4667": 1333.51879047, + "4668": 1323.5739471687, + "4669": 1312.7580490582, + "4670": 1301.5097038485, + "4671": 1289.4211698435, + "4672": 1276.913714805, + "4673": 1263.6002528267, + "4674": 1249.8830491702, + "4675": 1235.3972013706, + "4676": 1220.5243846323, + "4677": 1204.9233200348, + "4678": 1188.9535864275, + "4679": 1172.2988753065, + "4680": 1155.295250073, + "4681": 1137.6526209645, + "4682": 1119.6822096454, + "4683": 1101.1212899463, + "4684": 1082.255013545, + "4685": 1062.8490547258, + "4686": 1043.1613698162, + "4687": 1022.9869583305, + "4688": 1002.5555632105, + "4689": 981.6923182437, + "4690": 960.5978462956, + "4691": 939.128105544, + "4692": 917.4538070114, + "4693": 895.4623017332, + "4694": 873.2937151704, + "4695": 850.86723579, + "4696": 828.2918504802, + "4697": 805.518904066, + "4698": 782.6258147414, + "4699": 759.596275709, + "4700": 736.4758309343, + "4701": 713.280586353, + "4702": 690.024031961, + "4703": 666.7546228642, + "4704": 643.4537418501, + "4705": 620.2020019648, + "4706": 596.9487522609, + "4707": 573.8064455817, + "4708": 550.6925971412, + "4709": 527.7510557799, + "4710": 504.8678284028, + "4711": 482.217592142, + "4712": 459.6552954725, + "4713": 437.3857544469, + "4714": 415.2334315621, + "4715": 393.4324734763, + "4716": 371.7775494742, + "4717": 350.5312127497, + "4718": 329.4591497223, + "4719": 308.8512839436, + "4720": 288.4452436966, + "4721": 268.5571786951, + "4722": 248.8976945468, + "4723": 229.8079194291, + "4724": 210.9725783818, + "4725": 192.7564317691, + "4726": 174.8195683089, + "4727": 157.5489410096, + "4728": 140.581343742, + "4729": 124.3243950318, + "4730": 108.3930273115, + "4731": 93.21391594, + "4732": 78.381651597, + "4733": 64.340282582, + "4734": 50.6656577875, + "4735": 37.8174459977, + "4736": 25.3544282483, + "4737": 13.7500797058, + "4738": 2.5478548389, + "4739": -7.7668333942, + "4740": -17.664055315, + "4741": -26.6483758764, + "4742": -35.2015350377, + "4743": -42.8200309189, + "4744": -49.995371909, + "4745": -56.2179763872, + "4746": -61.9871814135, + "4747": -66.7893367116, + "4748": -71.1296373574, + "4749": -74.4923915625, + "4750": -77.3866586441, + "4751": -79.2967405015, + "4752": -80.733551669, + "4753": -81.1834229584, + "4754": -81.1571077745, + "4755": -80.1449930593, + "4756": -78.655655378, + "4757": -76.1855490126, + "4758": -73.2390665695, + "4759": -69.3207169353, + "4760": -64.9287181502, + "4761": -59.5775891831, + "4762": -53.7574072689, + "4763": -46.9946174301, + "4764": -39.7692219858, + "4765": -31.6214609173, + "4766": -23.0193672776, + "4767": -13.51879047, + "4768": -3.5739471687, + "4769": 7.2419509418, + "4770": 18.4902961516, + "4771": 30.5788301565, + "4772": 43.086285195, + "4773": 56.3997471733, + "4774": 70.1169508298, + "4775": 84.6027986294, + "4776": 99.4756153677, + "4777": 115.0766799652, + "4778": 131.0464135724, + "4779": 147.7011246935, + "4780": 164.704749927, + "4781": 182.3473790355, + "4782": 200.3177903546, + "4783": 218.8787100537, + "4784": 237.744986455, + "4785": 257.1509452742, + "4786": 276.8386301838, + "4787": 297.0130416695, + "4788": 317.4444367895, + "4789": 338.3076817563, + "4790": 359.4021537045, + "4791": 380.871894456, + "4792": 402.5461929886, + "4793": 424.5376982668, + "4794": 446.7062848296, + "4795": 469.13276421, + "4796": 491.7081495198, + "4797": 514.481095934, + "4798": 537.3741852586, + "4799": 560.403724291, + "4800": 583.5241690657, + "4801": 606.7194136471, + "4802": 629.975968039, + "4803": 653.2453771358, + "4804": 676.5462581499, + "4805": 699.7979980352, + "4806": 723.0512477391, + "4807": 746.1935544183, + "4808": 769.3074028588, + "4809": 792.2489442201, + "4810": 815.1321715972, + "4811": 837.782407858, + "4812": 860.3447045275, + "4813": 882.6142455531, + "4814": 904.7665684379, + "4815": 926.5675265237, + "4816": 948.2224505258, + "4817": 969.4687872503, + "4818": 990.5408502777, + "4819": 1011.1487160564, + "4820": 1031.5547563034, + "4821": 1051.4428213049, + "4822": 1071.1023054532, + "4823": 1090.1920805709, + "4824": 1109.0274216182, + "4825": 1127.2435682309, + "4826": 1145.1804316911, + "4827": 1162.4510589904, + "4828": 1179.418656258, + "4829": 1195.6756049682, + "4830": 1211.6069726885, + "4831": 1226.78608406, + "4832": 1241.618348403, + "4833": 1255.659717418, + "4834": 1269.3343422125, + "4835": 1282.1825540023, + "4836": 1294.6455717517, + "4837": 1306.2499202942, + "4838": 1317.4521451611, + "4839": 1327.7668333942, + "4840": 1337.664055315, + "4841": 1346.6483758764, + "4842": 1355.2015350377, + "4843": 1362.8200309189, + "4844": 1369.995371909, + "4845": 1376.2179763872, + "4846": 1381.9871814135, + "4847": 1386.7893367116, + "4848": 1391.1296373574, + "4849": 1394.4923915625, + "4850": 1397.3866586441, + "4851": 1399.2967405015, + "4852": 1400.733551669, + "4853": 1401.1834229584, + "4854": 1401.1571077745, + "4855": 1400.1449930593, + "4856": 1398.655655378, + "4857": 1396.1855490126, + "4858": 1393.2390665695, + "4859": 1389.3207169353, + "4860": 1384.9287181502, + "4861": 1379.5775891831, + "4862": 1373.7574072689, + "4863": 1366.9946174301, + "4864": 1359.7692219858, + "4865": 1351.6214609173, + "4866": 1343.0193672776, + "4867": 1333.51879047, + "4868": 1323.5739471687, + "4869": 1312.7580490582, + "4870": 1301.5097038484, + "4871": 1289.4211698435, + "4872": 1276.913714805, + "4873": 1263.6002528267, + "4874": 1249.8830491702, + "4875": 1235.3972013706, + "4876": 1220.5243846323, + "4877": 1204.9233200348, + "4878": 1188.9535864275, + "4879": 1172.2988753065, + "4880": 1155.295250073, + "4881": 1137.6526209645, + "4882": 1119.6822096454, + "4883": 1101.1212899463, + "4884": 1082.255013545, + "4885": 1062.8490547258, + "4886": 1043.1613698162, + "4887": 1022.9869583305, + "4888": 1002.5555632105, + "4889": 981.6923182437, + "4890": 960.5978462955, + "4891": 939.128105544, + "4892": 917.4538070114, + "4893": 895.4623017332, + "4894": 873.2937151704, + "4895": 850.86723579, + "4896": 828.2918504802, + "4897": 805.518904066, + "4898": 782.6258147414, + "4899": 759.596275709, + "4900": 736.4758309343, + "4901": 713.280586353, + "4902": 690.024031961, + "4903": 666.7546228642, + "4904": 643.4537418501, + "4905": 620.2020019648, + "4906": 596.9487522609, + "4907": 573.8064455817, + "4908": 550.6925971412, + "4909": 527.7510557799, + "4910": 504.8678284028, + "4911": 482.217592142, + "4912": 459.6552954725, + "4913": 437.3857544469, + "4914": 415.2334315621, + "4915": 393.4324734763, + "4916": 371.7775494742, + "4917": 350.5312127497, + "4918": 329.4591497223, + "4919": 308.8512839436, + "4920": 288.4452436966, + "4921": 268.5571786951, + "4922": 248.8976945468, + "4923": 229.8079194291, + "4924": 210.9725783818, + "4925": 192.7564317691, + "4926": 174.8195683089, + "4927": 157.5489410096, + "4928": 140.581343742, + "4929": 124.3243950318, + "4930": 108.3930273115, + "4931": 93.21391594, + "4932": 78.381651597, + "4933": 64.340282582, + "4934": 50.6656577875, + "4935": 37.8174459977, + "4936": 25.3544282483, + "4937": 13.7500797058, + "4938": 2.5478548389, + "4939": -7.7668333942, + "4940": -17.664055315, + "4941": -26.6483758764, + "4942": -35.2015350377, + "4943": -42.8200309189, + "4944": -49.995371909, + "4945": -56.2179763872, + "4946": -61.9871814135, + "4947": -66.7893367116, + "4948": -71.1296373574, + "4949": -74.4923915625, + "4950": -77.3866586441, + "4951": -79.2967405015, + "4952": -80.733551669, + "4953": -81.1834229584, + "4954": -81.1571077745, + "4955": -80.1449930593, + "4956": -78.655655378, + "4957": -76.1855490126, + "4958": -73.2390665695, + "4959": -69.3207169353, + "4960": -64.9287181502, + "4961": -59.5775891831, + "4962": -53.7574072689, + "4963": -46.9946174301, + "4964": -39.7692219858, + "4965": -31.6214609173, + "4966": -23.0193672776, + "4967": -13.51879047, + "4968": -3.5739471687, + "4969": 7.2419509418, + "4970": 18.4902961516, + "4971": 30.5788301565, + "4972": 43.086285195, + "4973": 56.3997471733, + "4974": 70.1169508298, + "4975": 84.6027986294, + "4976": 99.4756153677, + "4977": 115.0766799652, + "4978": 131.0464135724, + "4979": 147.7011246935, + "4980": 164.704749927, + "4981": 182.3473790355, + "4982": 200.3177903546, + "4983": 218.8787100537, + "4984": 237.744986455, + "4985": 257.1509452742, + "4986": 276.8386301838, + "4987": 297.0130416695, + "4988": 317.4444367895, + "4989": 338.3076817563, + "4990": 359.4021537045, + "4991": 380.871894456, + "4992": 402.5461929886, + "4993": 424.5376982668, + "4994": 446.7062848296, + "4995": 469.13276421, + "4996": 491.7081495198, + "4997": 514.481095934, + "4998": 537.3741852586, + "4999": 560.403724291, + "5000": 583.5241690657, + "5001": 606.7194136471, + "5002": 629.975968039, + "5003": 653.2453771358, + "5004": 676.5462581499, + "5005": 699.7979980352, + "5006": 723.0512477391, + "5007": 746.1935544183, + "5008": 769.3074028588, + "5009": 792.2489442201, + "5010": 815.1321715972, + "5011": 837.782407858, + "5012": 860.3447045275, + "5013": 882.6142455531, + "5014": 904.7665684379, + "5015": 926.5675265237, + "5016": 948.2224505258, + "5017": 969.4687872503, + "5018": 990.5408502777, + "5019": 1011.1487160564, + "5020": 1031.5547563034, + "5021": 1051.4428213049, + "5022": 1071.1023054532, + "5023": 1090.1920805709, + "5024": 1109.0274216182, + "5025": 1127.2435682309, + "5026": 1145.1804316911, + "5027": 1162.4510589904, + "5028": 1179.418656258, + "5029": 1195.6756049682, + "5030": 1211.6069726885, + "5031": 1226.78608406, + "5032": 1241.618348403, + "5033": 1255.659717418, + "5034": 1269.3343422125, + "5035": 1282.1825540023, + "5036": 1294.6455717517, + "5037": 1306.2499202942, + "5038": 1317.4521451611, + "5039": 1327.7668333942, + "5040": 1337.664055315, + "5041": 1346.6483758764, + "5042": 1355.2015350377, + "5043": 1362.8200309189, + "5044": 1369.995371909, + "5045": 1376.2179763872, + "5046": 1381.9871814135, + "5047": 1386.7893367116, + "5048": 1391.1296373574, + "5049": 1394.4923915625, + "5050": 1397.3866586441, + "5051": 1399.2967405015, + "5052": 1400.733551669, + "5053": 1401.1834229584, + "5054": 1401.1571077745, + "5055": 1400.1449930593, + "5056": 1398.655655378, + "5057": 1396.1855490126, + "5058": 1393.2390665695, + "5059": 1389.3207169353, + "5060": 1384.9287181502, + "5061": 1379.5775891831, + "5062": 1373.7574072689, + "5063": 1366.9946174301, + "5064": 1359.7692219858, + "5065": 1351.6214609173, + "5066": 1343.0193672776, + "5067": 1333.51879047, + "5068": 1323.5739471687, + "5069": 1312.7580490582, + "5070": 1301.5097038484, + "5071": 1289.4211698435, + "5072": 1276.913714805, + "5073": 1263.6002528267, + "5074": 1249.8830491702, + "5075": 1235.3972013706, + "5076": 1220.5243846323, + "5077": 1204.9233200348, + "5078": 1188.9535864275, + "5079": 1172.2988753065, + "5080": 1155.295250073, + "5081": 1137.6526209645, + "5082": 1119.6822096454, + "5083": 1101.1212899463, + "5084": 1082.255013545, + "5085": 1062.8490547258, + "5086": 1043.1613698162, + "5087": 1022.9869583305, + "5088": 1002.5555632105, + "5089": 981.6923182437, + "5090": 960.5978462955, + "5091": 939.128105544, + "5092": 917.4538070114, + "5093": 895.4623017332, + "5094": 873.2937151704, + "5095": 850.86723579, + "5096": 828.2918504802, + "5097": 805.518904066, + "5098": 782.6258147414, + "5099": 759.596275709, + "5100": 736.4758309343, + "5101": 713.280586353, + "5102": 690.024031961, + "5103": 666.7546228642, + "5104": 643.4537418501, + "5105": 620.2020019648, + "5106": 596.9487522609, + "5107": 573.8064455817, + "5108": 550.6925971412, + "5109": 527.7510557799, + "5110": 504.8678284028, + "5111": 482.217592142, + "5112": 459.6552954725, + "5113": 437.3857544469, + "5114": 415.2334315621, + "5115": 393.4324734763, + "5116": 371.7775494742, + "5117": 350.5312127497, + "5118": 329.4591497223, + "5119": 308.8512839436, + "5120": 288.4452436966, + "5121": 268.5571786951, + "5122": 248.8976945468, + "5123": 229.8079194291, + "5124": 210.9725783818, + "5125": 192.7564317691, + "5126": 174.8195683089, + "5127": 157.5489410096, + "5128": 140.581343742, + "5129": 124.3243950318, + "5130": 108.3930273115, + "5131": 93.21391594, + "5132": 78.381651597, + "5133": 64.340282582, + "5134": 50.6656577875, + "5135": 37.8174459977, + "5136": 25.3544282483, + "5137": 13.7500797058, + "5138": 2.5478548389, + "5139": -7.7668333942, + "5140": -17.664055315, + "5141": -26.6483758764, + "5142": -35.2015350377, + "5143": -42.8200309189, + "5144": -49.995371909, + "5145": -56.2179763872, + "5146": -61.9871814135, + "5147": -66.7893367116, + "5148": -71.1296373574, + "5149": -74.4923915625, + "5150": -77.3866586441, + "5151": -79.2967405015, + "5152": -80.733551669, + "5153": -81.1834229584, + "5154": -81.1571077745, + "5155": -80.1449930593, + "5156": -78.655655378, + "5157": -76.1855490126, + "5158": -73.2390665695, + "5159": -69.3207169353, + "5160": -64.9287181502, + "5161": -59.5775891831, + "5162": -53.7574072689, + "5163": -46.9946174301, + "5164": -39.7692219858, + "5165": -31.6214609173, + "5166": -23.0193672776, + "5167": -13.51879047, + "5168": -3.5739471687, + "5169": 7.2419509418, + "5170": 18.4902961516, + "5171": 30.5788301565, + "5172": 43.086285195, + "5173": 56.3997471733, + "5174": 70.1169508298, + "5175": 84.6027986294, + "5176": 99.4756153677, + "5177": 115.0766799652, + "5178": 131.0464135724, + "5179": 147.7011246935, + "5180": 164.704749927, + "5181": 182.3473790355, + "5182": 200.3177903546, + "5183": 218.8787100537, + "5184": 237.744986455, + "5185": 257.1509452742, + "5186": 276.8386301838, + "5187": 297.0130416695, + "5188": 317.4444367895, + "5189": 338.3076817563, + "5190": 359.4021537045, + "5191": 380.871894456, + "5192": 402.5461929886, + "5193": 424.5376982668, + "5194": 446.7062848296, + "5195": 469.13276421, + "5196": 491.7081495198, + "5197": 514.481095934, + "5198": 537.3741852586, + "5199": 560.403724291, + "5200": 583.5241690657, + "5201": 606.7194136471, + "5202": 629.975968039, + "5203": 653.2453771358, + "5204": 676.5462581499, + "5205": 699.7979980352, + "5206": 723.0512477391, + "5207": 746.1935544183, + "5208": 769.3074028588, + "5209": 792.2489442201, + "5210": 815.1321715972, + "5211": 837.782407858, + "5212": 860.3447045275, + "5213": 882.6142455531, + "5214": 904.7665684379, + "5215": 926.5675265237, + "5216": 948.2224505258, + "5217": 969.4687872503, + "5218": 990.5408502777, + "5219": 1011.1487160564, + "5220": 1031.5547563034, + "5221": 1051.4428213049, + "5222": 1071.1023054532, + "5223": 1090.1920805709, + "5224": 1109.0274216182, + "5225": 1127.2435682309, + "5226": 1145.1804316911, + "5227": 1162.4510589904, + "5228": 1179.418656258, + "5229": 1195.6756049682, + "5230": 1211.6069726885, + "5231": 1226.78608406, + "5232": 1241.618348403, + "5233": 1255.659717418, + "5234": 1269.3343422125, + "5235": 1282.1825540023, + "5236": 1294.6455717517, + "5237": 1306.2499202942, + "5238": 1317.4521451611, + "5239": 1327.7668333942, + "5240": 1337.664055315, + "5241": 1346.6483758764, + "5242": 1355.2015350377, + "5243": 1362.8200309189, + "5244": 1369.995371909, + "5245": 1376.2179763872, + "5246": 1381.9871814135, + "5247": 1386.7893367116, + "5248": 1391.1296373574, + "5249": 1394.4923915625, + "5250": 1397.3866586441, + "5251": 1399.2967405015, + "5252": 1400.733551669, + "5253": 1401.1834229584, + "5254": 1401.1571077745, + "5255": 1400.1449930593, + "5256": 1398.655655378, + "5257": 1396.1855490126, + "5258": 1393.2390665695, + "5259": 1389.3207169353, + "5260": 1384.9287181502, + "5261": 1379.5775891831, + "5262": 1373.7574072689, + "5263": 1366.9946174301, + "5264": 1359.7692219858, + "5265": 1351.6214609173, + "5266": 1343.0193672776, + "5267": 1333.51879047, + "5268": 1323.5739471687, + "5269": 1312.7580490582, + "5270": 1301.5097038484, + "5271": 1289.4211698435, + "5272": 1276.913714805, + "5273": 1263.6002528267, + "5274": 1249.8830491702, + "5275": 1235.3972013706, + "5276": 1220.5243846323, + "5277": 1204.9233200348, + "5278": 1188.9535864275, + "5279": 1172.2988753065, + "5280": 1155.295250073, + "5281": 1137.6526209645, + "5282": 1119.6822096454, + "5283": 1101.1212899463, + "5284": 1082.255013545, + "5285": 1062.8490547258, + "5286": 1043.1613698162, + "5287": 1022.9869583305, + "5288": 1002.5555632105, + "5289": 981.6923182437, + "5290": 960.5978462955, + "5291": 939.128105544, + "5292": 917.4538070114, + "5293": 895.4623017332, + "5294": 873.2937151704, + "5295": 850.86723579, + "5296": 828.2918504802, + "5297": 805.518904066, + "5298": 782.6258147414, + "5299": 759.596275709, + "5300": 736.4758309343, + "5301": 713.280586353, + "5302": 690.024031961, + "5303": 666.7546228642, + "5304": 643.4537418501, + "5305": 620.2020019648, + "5306": 596.9487522609, + "5307": 573.8064455817, + "5308": 550.6925971412, + "5309": 527.7510557799, + "5310": 504.8678284028, + "5311": 482.217592142, + "5312": 459.6552954725, + "5313": 437.3857544469, + "5314": 415.2334315621, + "5315": 393.4324734763, + "5316": 371.7775494742, + "5317": 350.5312127497, + "5318": 329.4591497223, + "5319": 308.8512839436, + "5320": 288.4452436966, + "5321": 268.5571786951, + "5322": 248.8976945468, + "5323": 229.8079194291, + "5324": 210.9725783818, + "5325": 192.7564317691, + "5326": 174.8195683089, + "5327": 157.5489410096, + "5328": 140.581343742, + "5329": 124.3243950318, + "5330": 108.3930273115, + "5331": 93.21391594, + "5332": 78.381651597, + "5333": 64.340282582, + "5334": 50.6656577875, + "5335": 37.8174459977, + "5336": 25.3544282483, + "5337": 13.7500797058, + "5338": 2.5478548389, + "5339": -7.7668333942, + "5340": -17.664055315, + "5341": -26.6483758764, + "5342": -35.2015350377, + "5343": -42.8200309189, + "5344": -49.995371909, + "5345": -56.2179763872, + "5346": -61.9871814135, + "5347": -66.7893367116, + "5348": -71.1296373574, + "5349": -74.4923915625, + "5350": -77.3866586441, + "5351": -79.2967405015, + "5352": -80.733551669, + "5353": -81.1834229584, + "5354": -81.1571077745, + "5355": -80.1449930593, + "5356": -78.655655378, + "5357": -76.1855490126, + "5358": -73.2390665695, + "5359": -69.3207169353, + "5360": -64.9287181502, + "5361": -59.5775891831, + "5362": -53.7574072689, + "5363": -46.9946174301, + "5364": -39.7692219858, + "5365": -31.6214609173, + "5366": -23.0193672776, + "5367": -13.51879047, + "5368": -3.5739471687, + "5369": 7.2419509418, + "5370": 18.4902961516, + "5371": 30.5788301565, + "5372": 43.086285195, + "5373": 56.3997471733, + "5374": 70.1169508298, + "5375": 84.6027986294, + "5376": 99.4756153677, + "5377": 115.0766799652, + "5378": 131.0464135724, + "5379": 147.7011246935, + "5380": 164.704749927, + "5381": 182.3473790355, + "5382": 200.3177903546, + "5383": 218.8787100537, + "5384": 237.744986455, + "5385": 257.1509452742, + "5386": 276.8386301838, + "5387": 297.0130416695, + "5388": 317.4444367895, + "5389": 338.3076817563, + "5390": 359.4021537045, + "5391": 380.871894456, + "5392": 402.5461929886, + "5393": 424.5376982668, + "5394": 446.7062848296, + "5395": 469.13276421, + "5396": 491.7081495198, + "5397": 514.481095934, + "5398": 537.3741852586, + "5399": 560.403724291, + "5400": 583.5241690657, + "5401": 606.7194136471, + "5402": 629.975968039, + "5403": 653.2453771358, + "5404": 676.5462581499, + "5405": 699.7979980352, + "5406": 723.0512477391, + "5407": 746.1935544183, + "5408": 769.3074028588, + "5409": 792.2489442201, + "5410": 815.1321715972, + "5411": 837.782407858, + "5412": 860.3447045275, + "5413": 882.6142455531, + "5414": 904.7665684379, + "5415": 926.5675265237, + "5416": 948.2224505258, + "5417": 969.4687872503, + "5418": 990.5408502777, + "5419": 1011.1487160564, + "5420": 1031.5547563034, + "5421": 1051.4428213049, + "5422": 1071.1023054532, + "5423": 1090.1920805709, + "5424": 1109.0274216182, + "5425": 1127.2435682309, + "5426": 1145.1804316911, + "5427": 1162.4510589904, + "5428": 1179.418656258, + "5429": 1195.6756049682, + "5430": 1211.6069726885, + "5431": 1226.78608406, + "5432": 1241.618348403, + "5433": 1255.659717418, + "5434": 1269.3343422125, + "5435": 1282.1825540023, + "5436": 1294.6455717517, + "5437": 1306.2499202942, + "5438": 1317.4521451611, + "5439": 1327.7668333942, + "5440": 1337.664055315, + "5441": 1346.6483758764, + "5442": 1355.2015350377, + "5443": 1362.8200309189, + "5444": 1369.995371909, + "5445": 1376.2179763872, + "5446": 1381.9871814135, + "5447": 1386.7893367116, + "5448": 1391.1296373574, + "5449": 1394.4923915625, + "5450": 1397.3866586441, + "5451": 1399.2967405015, + "5452": 1400.733551669, + "5453": 1401.1834229584, + "5454": 1401.1571077745, + "5455": 1400.1449930593, + "5456": 1398.655655378, + "5457": 1396.1855490126, + "5458": 1393.2390665695, + "5459": 1389.3207169353, + "5460": 1384.9287181502, + "5461": 1379.5775891831, + "5462": 1373.7574072689, + "5463": 1366.9946174301, + "5464": 1359.7692219858, + "5465": 1351.6214609173, + "5466": 1343.0193672776, + "5467": 1333.51879047, + "5468": 1323.5739471687, + "5469": 1312.7580490582, + "5470": 1301.5097038484, + "5471": 1289.4211698435, + "5472": 1276.913714805, + "5473": 1263.6002528267, + "5474": 1249.8830491702, + "5475": 1235.3972013706, + "5476": 1220.5243846323, + "5477": 1204.9233200348, + "5478": 1188.9535864275, + "5479": 1172.2988753065, + "5480": 1155.295250073, + "5481": 1137.6526209645, + "5482": 1119.6822096454, + "5483": 1101.1212899463, + "5484": 1082.255013545, + "5485": 1062.8490547258, + "5486": 1043.1613698162, + "5487": 1022.9869583305, + "5488": 1002.5555632105, + "5489": 981.6923182437, + "5490": 960.5978462955, + "5491": 939.128105544, + "5492": 917.4538070114, + "5493": 895.4623017332, + "5494": 873.2937151704, + "5495": 850.86723579, + "5496": 828.2918504802, + "5497": 805.518904066, + "5498": 782.6258147414, + "5499": 759.596275709, + "5500": 736.4758309343, + "5501": 713.280586353, + "5502": 690.024031961, + "5503": 666.7546228642, + "5504": 643.4537418501, + "5505": 620.2020019648, + "5506": 596.9487522609, + "5507": 573.8064455817, + "5508": 550.6925971412, + "5509": 527.7510557799, + "5510": 504.8678284028, + "5511": 482.217592142, + "5512": 459.6552954725, + "5513": 437.3857544469, + "5514": 415.2334315621, + "5515": 393.4324734763, + "5516": 371.7775494742, + "5517": 350.5312127497, + "5518": 329.4591497223, + "5519": 308.8512839436, + "5520": 288.4452436966, + "5521": 268.5571786951, + "5522": 248.8976945468, + "5523": 229.8079194291, + "5524": 210.9725783818, + "5525": 192.7564317691, + "5526": 174.8195683089, + "5527": 157.5489410096, + "5528": 140.581343742, + "5529": 124.3243950318, + "5530": 108.3930273115, + "5531": 93.21391594, + "5532": 78.381651597, + "5533": 64.340282582, + "5534": 50.6656577875, + "5535": 37.8174459977, + "5536": 25.3544282483, + "5537": 13.7500797058, + "5538": 2.5478548389, + "5539": -7.7668333942, + "5540": -17.664055315, + "5541": -26.6483758764, + "5542": -35.2015350377, + "5543": -42.8200309189, + "5544": -49.995371909, + "5545": -56.2179763872, + "5546": -61.9871814135, + "5547": -66.7893367116, + "5548": -71.1296373574, + "5549": -74.4923915625, + "5550": -77.3866586441, + "5551": -79.2967405015, + "5552": -80.733551669, + "5553": -81.1834229584, + "5554": -81.1571077745, + "5555": -80.1449930593, + "5556": -78.655655378, + "5557": -76.1855490126, + "5558": -73.2390665695, + "5559": -69.3207169353, + "5560": -64.9287181502, + "5561": -59.5775891831, + "5562": -53.7574072689, + "5563": -46.9946174301, + "5564": -39.7692219858, + "5565": -31.6214609173, + "5566": -23.0193672776, + "5567": -13.51879047, + "5568": -3.5739471687, + "5569": 7.2419509418, + "5570": 18.4902961516, + "5571": 30.5788301565, + "5572": 43.086285195, + "5573": 56.3997471733, + "5574": 70.1169508298, + "5575": 84.6027986294, + "5576": 99.4756153677, + "5577": 115.0766799652, + "5578": 131.0464135724, + "5579": 147.7011246935, + "5580": 164.704749927, + "5581": 182.3473790355, + "5582": 200.3177903546, + "5583": 218.8787100537, + "5584": 237.744986455, + "5585": 257.1509452742, + "5586": 276.8386301838, + "5587": 297.0130416695, + "5588": 317.4444367895, + "5589": 338.3076817563, + "5590": 359.4021537045, + "5591": 380.871894456, + "5592": 402.5461929886, + "5593": 424.5376982668, + "5594": 446.7062848296, + "5595": 469.13276421, + "5596": 491.7081495198, + "5597": 514.481095934, + "5598": 537.3741852586, + "5599": 560.403724291, + "5600": 583.5241690657, + "5601": 606.7194136471, + "5602": 629.975968039, + "5603": 653.2453771358, + "5604": 676.5462581499, + "5605": 699.7979980352, + "5606": 723.0512477391, + "5607": 746.1935544183, + "5608": 769.3074028588, + "5609": 792.2489442201, + "5610": 815.1321715972, + "5611": 837.782407858, + "5612": 860.3447045275, + "5613": 882.6142455531, + "5614": 904.7665684379, + "5615": 926.5675265237, + "5616": 948.2224505258, + "5617": 969.4687872503, + "5618": 990.5408502777, + "5619": 1011.1487160564, + "5620": 1031.5547563034, + "5621": 1051.4428213049, + "5622": 1071.1023054532, + "5623": 1090.1920805709, + "5624": 1109.0274216182, + "5625": 1127.2435682309, + "5626": 1145.1804316911, + "5627": 1162.4510589904, + "5628": 1179.418656258, + "5629": 1195.6756049682, + "5630": 1211.6069726885, + "5631": 1226.78608406, + "5632": 1241.618348403, + "5633": 1255.659717418, + "5634": 1269.3343422125, + "5635": 1282.1825540023, + "5636": 1294.6455717517, + "5637": 1306.2499202942, + "5638": 1317.4521451611, + "5639": 1327.7668333942, + "5640": 1337.664055315, + "5641": 1346.6483758764, + "5642": 1355.2015350377, + "5643": 1362.8200309189, + "5644": 1369.995371909, + "5645": 1376.2179763872, + "5646": 1381.9871814135, + "5647": 1386.7893367116, + "5648": 1391.1296373574, + "5649": 1394.4923915625, + "5650": 1397.3866586441, + "5651": 1399.2967405015, + "5652": 1400.733551669, + "5653": 1401.1834229584, + "5654": 1401.1571077745, + "5655": 1400.1449930593, + "5656": 1398.655655378, + "5657": 1396.1855490126, + "5658": 1393.2390665695, + "5659": 1389.3207169353, + "5660": 1384.9287181502, + "5661": 1379.5775891831, + "5662": 1373.7574072689, + "5663": 1366.9946174301, + "5664": 1359.7692219858, + "5665": 1351.6214609173, + "5666": 1343.0193672776, + "5667": 1333.51879047, + "5668": 1323.5739471687, + "5669": 1312.7580490582, + "5670": 1301.5097038484, + "5671": 1289.4211698435, + "5672": 1276.913714805, + "5673": 1263.6002528267, + "5674": 1249.8830491702, + "5675": 1235.3972013706, + "5676": 1220.5243846323, + "5677": 1204.9233200348, + "5678": 1188.9535864275, + "5679": 1172.2988753065, + "5680": 1155.295250073, + "5681": 1137.6526209645, + "5682": 1119.6822096454, + "5683": 1101.1212899463, + "5684": 1082.255013545, + "5685": 1062.8490547258, + "5686": 1043.1613698162, + "5687": 1022.9869583305, + "5688": 1002.5555632105, + "5689": 981.6923182437, + "5690": 960.5978462955, + "5691": 939.128105544, + "5692": 917.4538070114, + "5693": 895.4623017332, + "5694": 873.2937151704, + "5695": 850.86723579, + "5696": 828.2918504802, + "5697": 805.518904066, + "5698": 782.6258147414, + "5699": 759.596275709, + "5700": 736.4758309343, + "5701": 713.280586353, + "5702": 690.024031961, + "5703": 666.7546228642, + "5704": 643.4537418501, + "5705": 620.2020019648, + "5706": 596.9487522609, + "5707": 573.8064455817, + "5708": 550.6925971412, + "5709": 527.7510557799, + "5710": 504.8678284028, + "5711": 482.217592142, + "5712": 459.6552954725, + "5713": 437.3857544469, + "5714": 415.2334315621, + "5715": 393.4324734763, + "5716": 371.7775494742, + "5717": 350.5312127497, + "5718": 329.4591497223, + "5719": 308.8512839436, + "5720": 288.4452436966, + "5721": 268.5571786951, + "5722": 248.8976945468, + "5723": 229.8079194291, + "5724": 210.9725783818, + "5725": 192.7564317691, + "5726": 174.8195683089, + "5727": 157.5489410096, + "5728": 140.581343742, + "5729": 124.3243950318, + "5730": 108.3930273115, + "5731": 93.21391594, + "5732": 78.381651597, + "5733": 64.340282582, + "5734": 50.6656577875, + "5735": 37.8174459977, + "5736": 25.3544282483, + "5737": 13.7500797058, + "5738": 2.5478548389, + "5739": -7.7668333942, + "5740": -17.664055315, + "5741": -26.6483758764, + "5742": -35.2015350377, + "5743": -42.8200309189, + "5744": -49.995371909, + "5745": -56.2179763872, + "5746": -61.9871814135, + "5747": -66.7893367116, + "5748": -71.1296373574, + "5749": -74.4923915625, + "5750": -77.3866586441, + "5751": -79.2967405015, + "5752": -80.733551669, + "5753": -81.1834229584, + "5754": -81.1571077745, + "5755": -80.1449930593, + "5756": -78.655655378, + "5757": -76.1855490126, + "5758": -73.2390665695, + "5759": -69.3207169353, + "5760": -64.9287181502, + "5761": -59.5775891831, + "5762": -53.7574072689, + "5763": -46.9946174301, + "5764": -39.7692219858, + "5765": -31.6214609173, + "5766": -23.0193672776, + "5767": -13.51879047, + "5768": -3.5739471687, + "5769": 7.2419509418, + "5770": 18.4902961516, + "5771": 30.5788301565, + "5772": 43.086285195, + "5773": 56.3997471733, + "5774": 70.1169508298, + "5775": 84.6027986294, + "5776": 99.4756153677, + "5777": 115.0766799652, + "5778": 131.0464135724, + "5779": 147.7011246935, + "5780": 164.704749927, + "5781": 182.3473790355, + "5782": 200.3177903546, + "5783": 218.8787100537, + "5784": 237.744986455, + "5785": 257.1509452742, + "5786": 276.8386301838, + "5787": 297.0130416695, + "5788": 317.4444367895, + "5789": 338.3076817563, + "5790": 359.4021537045, + "5791": 380.871894456, + "5792": 402.5461929886, + "5793": 424.5376982668, + "5794": 446.7062848296, + "5795": 469.13276421, + "5796": 491.7081495198, + "5797": 514.481095934, + "5798": 537.3741852586, + "5799": 560.403724291, + "5800": 583.5241690657, + "5801": 606.7194136471, + "5802": 629.975968039, + "5803": 653.2453771358, + "5804": 676.5462581499, + "5805": 699.7979980352, + "5806": 723.0512477391, + "5807": 746.1935544183, + "5808": 769.3074028588, + "5809": 792.2489442201, + "5810": 815.1321715972, + "5811": 837.782407858, + "5812": 860.3447045275, + "5813": 882.6142455531, + "5814": 904.7665684379, + "5815": 926.5675265237, + "5816": 948.2224505258, + "5817": 969.4687872503, + "5818": 990.5408502777, + "5819": 1011.1487160564, + "5820": 1031.5547563034, + "5821": 1051.4428213049, + "5822": 1071.1023054532, + "5823": 1090.1920805709, + "5824": 1109.0274216182, + "5825": 1127.2435682309, + "5826": 1145.1804316911, + "5827": 1162.4510589904, + "5828": 1179.418656258, + "5829": 1195.6756049682, + "5830": 1211.6069726885, + "5831": 1226.78608406, + "5832": 1241.618348403, + "5833": 1255.659717418, + "5834": 1269.3343422125, + "5835": 1282.1825540023, + "5836": 1294.6455717517, + "5837": 1306.2499202942, + "5838": 1317.4521451611, + "5839": 1327.7668333942, + "5840": 1337.664055315, + "5841": 1346.6483758764, + "5842": 1355.2015350377, + "5843": 1362.8200309189, + "5844": 1369.995371909, + "5845": 1376.2179763872, + "5846": 1381.9871814135, + "5847": 1386.7893367116, + "5848": 1391.1296373574, + "5849": 1394.4923915625, + "5850": 1397.3866586441, + "5851": 1399.2967405015, + "5852": 1400.733551669, + "5853": 1401.1834229584, + "5854": 1401.1571077745, + "5855": 1400.1449930593, + "5856": 1398.655655378, + "5857": 1396.1855490126, + "5858": 1393.2390665695, + "5859": 1389.3207169353, + "5860": 1384.9287181502, + "5861": 1379.5775891831, + "5862": 1373.7574072689, + "5863": 1366.9946174301, + "5864": 1359.7692219858, + "5865": 1351.6214609173, + "5866": 1343.0193672776, + "5867": 1333.51879047, + "5868": 1323.5739471687, + "5869": 1312.7580490582, + "5870": 1301.5097038484, + "5871": 1289.4211698435, + "5872": 1276.913714805, + "5873": 1263.6002528267, + "5874": 1249.8830491702, + "5875": 1235.3972013706, + "5876": 1220.5243846323, + "5877": 1204.9233200348, + "5878": 1188.9535864275, + "5879": 1172.2988753065, + "5880": 1155.295250073, + "5881": 1137.6526209645, + "5882": 1119.6822096454, + "5883": 1101.1212899463, + "5884": 1082.255013545, + "5885": 1062.8490547258, + "5886": 1043.1613698162, + "5887": 1022.9869583305, + "5888": 1002.5555632105, + "5889": 981.6923182437, + "5890": 960.5978462955, + "5891": 939.128105544, + "5892": 917.4538070114, + "5893": 895.4623017332, + "5894": 873.2937151704, + "5895": 850.86723579, + "5896": 828.2918504802, + "5897": 805.518904066, + "5898": 782.6258147414, + "5899": 759.596275709, + "5900": 736.4758309343, + "5901": 713.280586353, + "5902": 690.024031961, + "5903": 666.7546228642, + "5904": 643.4537418501, + "5905": 620.2020019648, + "5906": 596.9487522609, + "5907": 573.8064455817, + "5908": 550.6925971412, + "5909": 527.7510557799, + "5910": 504.8678284028, + "5911": 482.217592142, + "5912": 459.6552954725, + "5913": 437.3857544469, + "5914": 415.2334315621, + "5915": 393.4324734763, + "5916": 371.7775494742, + "5917": 350.5312127497, + "5918": 329.4591497223, + "5919": 308.8512839436, + "5920": 288.4452436966, + "5921": 268.5571786951, + "5922": 248.8976945468, + "5923": 229.8079194291, + "5924": 210.9725783818, + "5925": 192.7564317691, + "5926": 174.8195683089, + "5927": 157.5489410096, + "5928": 140.581343742, + "5929": 124.3243950318, + "5930": 108.3930273115, + "5931": 93.21391594, + "5932": 78.381651597, + "5933": 64.340282582, + "5934": 50.6656577875, + "5935": 37.8174459977, + "5936": 25.3544282483, + "5937": 13.7500797058, + "5938": 2.5478548389, + "5939": -7.7668333942, + "5940": -17.664055315, + "5941": -26.6483758764, + "5942": -35.2015350377, + "5943": -42.8200309189, + "5944": -49.995371909, + "5945": -56.2179763872, + "5946": -61.9871814135, + "5947": -66.7893367116, + "5948": -71.1296373574, + "5949": -74.4923915625, + "5950": -77.3866586441, + "5951": -79.2967405015, + "5952": -80.733551669, + "5953": -81.1834229584, + "5954": -81.1571077745, + "5955": -80.1449930593, + "5956": -78.655655378, + "5957": -76.1855490126, + "5958": -73.2390665695, + "5959": -69.3207169353, + "5960": -64.9287181502, + "5961": -59.5775891831, + "5962": -53.7574072689, + "5963": -46.9946174301, + "5964": -39.7692219858, + "5965": -31.6214609173, + "5966": -23.0193672776, + "5967": -13.51879047, + "5968": -3.5739471687, + "5969": 7.2419509418, + "5970": 18.4902961516, + "5971": 30.5788301565, + "5972": 43.086285195, + "5973": 56.3997471733, + "5974": 70.1169508298, + "5975": 84.6027986294, + "5976": 99.4756153677, + "5977": 115.0766799652, + "5978": 131.0464135724, + "5979": 147.7011246935, + "5980": 164.704749927, + "5981": 182.3473790355, + "5982": 200.3177903546, + "5983": 218.8787100537, + "5984": 237.744986455, + "5985": 257.1509452742, + "5986": 276.8386301838, + "5987": 297.0130416695, + "5988": 317.4444367895, + "5989": 338.3076817563, + "5990": 359.4021537045, + "5991": 380.871894456, + "5992": 402.5461929886, + "5993": 424.5376982668, + "5994": 446.7062848296, + "5995": 469.13276421, + "5996": 491.7081495198, + "5997": 514.481095934, + "5998": 537.3741852586, + "5999": 560.403724291, + "6000": 583.5241690657 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_R_coronary_cycle_error.json b/tests/cases/results/result_pulsatileFlow_R_coronary_cycle_error.json index 5488dc205..4142ac18e 100644 --- a/tests/cases/results/result_pulsatileFlow_R_coronary_cycle_error.json +++ b/tests/cases/results/result_pulsatileFlow_R_coronary_cycle_error.json @@ -1 +1,37220 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0","101":"branch0_seg0","102":"branch0_seg0","103":"branch0_seg0","104":"branch0_seg0","105":"branch0_seg0","106":"branch0_seg0","107":"branch0_seg0","108":"branch0_seg0","109":"branch0_seg0","110":"branch0_seg0","111":"branch0_seg0","112":"branch0_seg0","113":"branch0_seg0","114":"branch0_seg0","115":"branch0_seg0","116":"branch0_seg0","117":"branch0_seg0","118":"branch0_seg0","119":"branch0_seg0","120":"branch0_seg0","121":"branch0_seg0","122":"branch0_seg0","123":"branch0_seg0","124":"branch0_seg0","125":"branch0_seg0","126":"branch0_seg0","127":"branch0_seg0","128":"branch0_seg0","129":"branch0_seg0","130":"branch0_seg0","131":"branch0_seg0","132":"branch0_seg0","133":"branch0_seg0","134":"branch0_seg0","135":"branch0_seg0","136":"branch0_seg0","137":"branch0_seg0","138":"branch0_seg0","139":"branch0_seg0","140":"branch0_seg0","141":"branch0_seg0","142":"branch0_seg0","143":"branch0_seg0","144":"branch0_seg0","145":"branch0_seg0","146":"branch0_seg0","147":"branch0_seg0","148":"branch0_seg0","149":"branch0_seg0","150":"branch0_seg0","151":"branch0_seg0","152":"branch0_seg0","153":"branch0_seg0","154":"branch0_seg0","155":"branch0_seg0","156":"branch0_seg0","157":"branch0_seg0","158":"branch0_seg0","159":"branch0_seg0","160":"branch0_seg0","161":"branch0_seg0","162":"branch0_seg0","163":"branch0_seg0","164":"branch0_seg0","165":"branch0_seg0","166":"branch0_seg0","167":"branch0_seg0","168":"branch0_seg0","169":"branch0_seg0","170":"branch0_seg0","171":"branch0_seg0","172":"branch0_seg0","173":"branch0_seg0","174":"branch0_seg0","175":"branch0_seg0","176":"branch0_seg0","177":"branch0_seg0","178":"branch0_seg0","179":"branch0_seg0","180":"branch0_seg0","181":"branch0_seg0","182":"branch0_seg0","183":"branch0_seg0","184":"branch0_seg0","185":"branch0_seg0","186":"branch0_seg0","187":"branch0_seg0","188":"branch0_seg0","189":"branch0_seg0","190":"branch0_seg0","191":"branch0_seg0","192":"branch0_seg0","193":"branch0_seg0","194":"branch0_seg0","195":"branch0_seg0","196":"branch0_seg0","197":"branch0_seg0","198":"branch0_seg0","199":"branch0_seg0","200":"branch0_seg0","201":"branch0_seg0","202":"branch0_seg0","203":"branch0_seg0","204":"branch0_seg0","205":"branch0_seg0","206":"branch0_seg0","207":"branch0_seg0","208":"branch0_seg0","209":"branch0_seg0","210":"branch0_seg0","211":"branch0_seg0","212":"branch0_seg0","213":"branch0_seg0","214":"branch0_seg0","215":"branch0_seg0","216":"branch0_seg0","217":"branch0_seg0","218":"branch0_seg0","219":"branch0_seg0","220":"branch0_seg0","221":"branch0_seg0","222":"branch0_seg0","223":"branch0_seg0","224":"branch0_seg0","225":"branch0_seg0","226":"branch0_seg0","227":"branch0_seg0","228":"branch0_seg0","229":"branch0_seg0","230":"branch0_seg0","231":"branch0_seg0","232":"branch0_seg0","233":"branch0_seg0","234":"branch0_seg0","235":"branch0_seg0","236":"branch0_seg0","237":"branch0_seg0","238":"branch0_seg0","239":"branch0_seg0","240":"branch0_seg0","241":"branch0_seg0","242":"branch0_seg0","243":"branch0_seg0","244":"branch0_seg0","245":"branch0_seg0","246":"branch0_seg0","247":"branch0_seg0","248":"branch0_seg0","249":"branch0_seg0","250":"branch0_seg0","251":"branch0_seg0","252":"branch0_seg0","253":"branch0_seg0","254":"branch0_seg0","255":"branch0_seg0","256":"branch0_seg0","257":"branch0_seg0","258":"branch0_seg0","259":"branch0_seg0","260":"branch0_seg0","261":"branch0_seg0","262":"branch0_seg0","263":"branch0_seg0","264":"branch0_seg0","265":"branch0_seg0","266":"branch0_seg0","267":"branch0_seg0","268":"branch0_seg0","269":"branch0_seg0","270":"branch0_seg0","271":"branch0_seg0","272":"branch0_seg0","273":"branch0_seg0","274":"branch0_seg0","275":"branch0_seg0","276":"branch0_seg0","277":"branch0_seg0","278":"branch0_seg0","279":"branch0_seg0","280":"branch0_seg0","281":"branch0_seg0","282":"branch0_seg0","283":"branch0_seg0","284":"branch0_seg0","285":"branch0_seg0","286":"branch0_seg0","287":"branch0_seg0","288":"branch0_seg0","289":"branch0_seg0","290":"branch0_seg0","291":"branch0_seg0","292":"branch0_seg0","293":"branch0_seg0","294":"branch0_seg0","295":"branch0_seg0","296":"branch0_seg0","297":"branch0_seg0","298":"branch0_seg0","299":"branch0_seg0","300":"branch0_seg0","301":"branch0_seg0","302":"branch0_seg0","303":"branch0_seg0","304":"branch0_seg0","305":"branch0_seg0","306":"branch0_seg0","307":"branch0_seg0","308":"branch0_seg0","309":"branch0_seg0","310":"branch0_seg0","311":"branch0_seg0","312":"branch0_seg0","313":"branch0_seg0","314":"branch0_seg0","315":"branch0_seg0","316":"branch0_seg0","317":"branch0_seg0","318":"branch0_seg0","319":"branch0_seg0","320":"branch0_seg0","321":"branch0_seg0","322":"branch0_seg0","323":"branch0_seg0","324":"branch0_seg0","325":"branch0_seg0","326":"branch0_seg0","327":"branch0_seg0","328":"branch0_seg0","329":"branch0_seg0","330":"branch0_seg0","331":"branch0_seg0","332":"branch0_seg0","333":"branch0_seg0","334":"branch0_seg0","335":"branch0_seg0","336":"branch0_seg0","337":"branch0_seg0","338":"branch0_seg0","339":"branch0_seg0","340":"branch0_seg0","341":"branch0_seg0","342":"branch0_seg0","343":"branch0_seg0","344":"branch0_seg0","345":"branch0_seg0","346":"branch0_seg0","347":"branch0_seg0","348":"branch0_seg0","349":"branch0_seg0","350":"branch0_seg0","351":"branch0_seg0","352":"branch0_seg0","353":"branch0_seg0","354":"branch0_seg0","355":"branch0_seg0","356":"branch0_seg0","357":"branch0_seg0","358":"branch0_seg0","359":"branch0_seg0","360":"branch0_seg0","361":"branch0_seg0","362":"branch0_seg0","363":"branch0_seg0","364":"branch0_seg0","365":"branch0_seg0","366":"branch0_seg0","367":"branch0_seg0","368":"branch0_seg0","369":"branch0_seg0","370":"branch0_seg0","371":"branch0_seg0","372":"branch0_seg0","373":"branch0_seg0","374":"branch0_seg0","375":"branch0_seg0","376":"branch0_seg0","377":"branch0_seg0","378":"branch0_seg0","379":"branch0_seg0","380":"branch0_seg0","381":"branch0_seg0","382":"branch0_seg0","383":"branch0_seg0","384":"branch0_seg0","385":"branch0_seg0","386":"branch0_seg0","387":"branch0_seg0","388":"branch0_seg0","389":"branch0_seg0","390":"branch0_seg0","391":"branch0_seg0","392":"branch0_seg0","393":"branch0_seg0","394":"branch0_seg0","395":"branch0_seg0","396":"branch0_seg0","397":"branch0_seg0","398":"branch0_seg0","399":"branch0_seg0","400":"branch0_seg0","401":"branch0_seg0","402":"branch0_seg0","403":"branch0_seg0","404":"branch0_seg0","405":"branch0_seg0","406":"branch0_seg0","407":"branch0_seg0","408":"branch0_seg0","409":"branch0_seg0","410":"branch0_seg0","411":"branch0_seg0","412":"branch0_seg0","413":"branch0_seg0","414":"branch0_seg0","415":"branch0_seg0","416":"branch0_seg0","417":"branch0_seg0","418":"branch0_seg0","419":"branch0_seg0","420":"branch0_seg0","421":"branch0_seg0","422":"branch0_seg0","423":"branch0_seg0","424":"branch0_seg0","425":"branch0_seg0","426":"branch0_seg0","427":"branch0_seg0","428":"branch0_seg0","429":"branch0_seg0","430":"branch0_seg0","431":"branch0_seg0","432":"branch0_seg0","433":"branch0_seg0","434":"branch0_seg0","435":"branch0_seg0","436":"branch0_seg0","437":"branch0_seg0","438":"branch0_seg0","439":"branch0_seg0","440":"branch0_seg0","441":"branch0_seg0","442":"branch0_seg0","443":"branch0_seg0","444":"branch0_seg0","445":"branch0_seg0","446":"branch0_seg0","447":"branch0_seg0","448":"branch0_seg0","449":"branch0_seg0","450":"branch0_seg0","451":"branch0_seg0","452":"branch0_seg0","453":"branch0_seg0","454":"branch0_seg0","455":"branch0_seg0","456":"branch0_seg0","457":"branch0_seg0","458":"branch0_seg0","459":"branch0_seg0","460":"branch0_seg0","461":"branch0_seg0","462":"branch0_seg0","463":"branch0_seg0","464":"branch0_seg0","465":"branch0_seg0","466":"branch0_seg0","467":"branch0_seg0","468":"branch0_seg0","469":"branch0_seg0","470":"branch0_seg0","471":"branch0_seg0","472":"branch0_seg0","473":"branch0_seg0","474":"branch0_seg0","475":"branch0_seg0","476":"branch0_seg0","477":"branch0_seg0","478":"branch0_seg0","479":"branch0_seg0","480":"branch0_seg0","481":"branch0_seg0","482":"branch0_seg0","483":"branch0_seg0","484":"branch0_seg0","485":"branch0_seg0","486":"branch0_seg0","487":"branch0_seg0","488":"branch0_seg0","489":"branch0_seg0","490":"branch0_seg0","491":"branch0_seg0","492":"branch0_seg0","493":"branch0_seg0","494":"branch0_seg0","495":"branch0_seg0","496":"branch0_seg0","497":"branch0_seg0","498":"branch0_seg0","499":"branch0_seg0","500":"branch0_seg0","501":"branch0_seg0","502":"branch0_seg0","503":"branch0_seg0","504":"branch0_seg0","505":"branch0_seg0","506":"branch0_seg0","507":"branch0_seg0","508":"branch0_seg0","509":"branch0_seg0","510":"branch0_seg0","511":"branch0_seg0","512":"branch0_seg0","513":"branch0_seg0","514":"branch0_seg0","515":"branch0_seg0","516":"branch0_seg0","517":"branch0_seg0","518":"branch0_seg0","519":"branch0_seg0","520":"branch0_seg0","521":"branch0_seg0","522":"branch0_seg0","523":"branch0_seg0","524":"branch0_seg0","525":"branch0_seg0","526":"branch0_seg0","527":"branch0_seg0","528":"branch0_seg0","529":"branch0_seg0","530":"branch0_seg0","531":"branch0_seg0","532":"branch0_seg0","533":"branch0_seg0","534":"branch0_seg0","535":"branch0_seg0","536":"branch0_seg0","537":"branch0_seg0","538":"branch0_seg0","539":"branch0_seg0","540":"branch0_seg0","541":"branch0_seg0","542":"branch0_seg0","543":"branch0_seg0","544":"branch0_seg0","545":"branch0_seg0","546":"branch0_seg0","547":"branch0_seg0","548":"branch0_seg0","549":"branch0_seg0","550":"branch0_seg0","551":"branch0_seg0","552":"branch0_seg0","553":"branch0_seg0","554":"branch0_seg0","555":"branch0_seg0","556":"branch0_seg0","557":"branch0_seg0","558":"branch0_seg0","559":"branch0_seg0","560":"branch0_seg0","561":"branch0_seg0","562":"branch0_seg0","563":"branch0_seg0","564":"branch0_seg0","565":"branch0_seg0","566":"branch0_seg0","567":"branch0_seg0","568":"branch0_seg0","569":"branch0_seg0","570":"branch0_seg0","571":"branch0_seg0","572":"branch0_seg0","573":"branch0_seg0","574":"branch0_seg0","575":"branch0_seg0","576":"branch0_seg0","577":"branch0_seg0","578":"branch0_seg0","579":"branch0_seg0","580":"branch0_seg0","581":"branch0_seg0","582":"branch0_seg0","583":"branch0_seg0","584":"branch0_seg0","585":"branch0_seg0","586":"branch0_seg0","587":"branch0_seg0","588":"branch0_seg0","589":"branch0_seg0","590":"branch0_seg0","591":"branch0_seg0","592":"branch0_seg0","593":"branch0_seg0","594":"branch0_seg0","595":"branch0_seg0","596":"branch0_seg0","597":"branch0_seg0","598":"branch0_seg0","599":"branch0_seg0","600":"branch0_seg0","601":"branch0_seg0","602":"branch0_seg0","603":"branch0_seg0","604":"branch0_seg0","605":"branch0_seg0","606":"branch0_seg0","607":"branch0_seg0","608":"branch0_seg0","609":"branch0_seg0","610":"branch0_seg0","611":"branch0_seg0","612":"branch0_seg0","613":"branch0_seg0","614":"branch0_seg0","615":"branch0_seg0","616":"branch0_seg0","617":"branch0_seg0","618":"branch0_seg0","619":"branch0_seg0","620":"branch0_seg0","621":"branch0_seg0","622":"branch0_seg0","623":"branch0_seg0","624":"branch0_seg0","625":"branch0_seg0","626":"branch0_seg0","627":"branch0_seg0","628":"branch0_seg0","629":"branch0_seg0","630":"branch0_seg0","631":"branch0_seg0","632":"branch0_seg0","633":"branch0_seg0","634":"branch0_seg0","635":"branch0_seg0","636":"branch0_seg0","637":"branch0_seg0","638":"branch0_seg0","639":"branch0_seg0","640":"branch0_seg0","641":"branch0_seg0","642":"branch0_seg0","643":"branch0_seg0","644":"branch0_seg0","645":"branch0_seg0","646":"branch0_seg0","647":"branch0_seg0","648":"branch0_seg0","649":"branch0_seg0","650":"branch0_seg0","651":"branch0_seg0","652":"branch0_seg0","653":"branch0_seg0","654":"branch0_seg0","655":"branch0_seg0","656":"branch0_seg0","657":"branch0_seg0","658":"branch0_seg0","659":"branch0_seg0","660":"branch0_seg0","661":"branch0_seg0","662":"branch0_seg0","663":"branch0_seg0","664":"branch0_seg0","665":"branch0_seg0","666":"branch0_seg0","667":"branch0_seg0","668":"branch0_seg0","669":"branch0_seg0","670":"branch0_seg0","671":"branch0_seg0","672":"branch0_seg0","673":"branch0_seg0","674":"branch0_seg0","675":"branch0_seg0","676":"branch0_seg0","677":"branch0_seg0","678":"branch0_seg0","679":"branch0_seg0","680":"branch0_seg0","681":"branch0_seg0","682":"branch0_seg0","683":"branch0_seg0","684":"branch0_seg0","685":"branch0_seg0","686":"branch0_seg0","687":"branch0_seg0","688":"branch0_seg0","689":"branch0_seg0","690":"branch0_seg0","691":"branch0_seg0","692":"branch0_seg0","693":"branch0_seg0","694":"branch0_seg0","695":"branch0_seg0","696":"branch0_seg0","697":"branch0_seg0","698":"branch0_seg0","699":"branch0_seg0","700":"branch0_seg0","701":"branch0_seg0","702":"branch0_seg0","703":"branch0_seg0","704":"branch0_seg0","705":"branch0_seg0","706":"branch0_seg0","707":"branch0_seg0","708":"branch0_seg0","709":"branch0_seg0","710":"branch0_seg0","711":"branch0_seg0","712":"branch0_seg0","713":"branch0_seg0","714":"branch0_seg0","715":"branch0_seg0","716":"branch0_seg0","717":"branch0_seg0","718":"branch0_seg0","719":"branch0_seg0","720":"branch0_seg0","721":"branch0_seg0","722":"branch0_seg0","723":"branch0_seg0","724":"branch0_seg0","725":"branch0_seg0","726":"branch0_seg0","727":"branch0_seg0","728":"branch0_seg0","729":"branch0_seg0","730":"branch0_seg0","731":"branch0_seg0","732":"branch0_seg0","733":"branch0_seg0","734":"branch0_seg0","735":"branch0_seg0","736":"branch0_seg0","737":"branch0_seg0","738":"branch0_seg0","739":"branch0_seg0","740":"branch0_seg0","741":"branch0_seg0","742":"branch0_seg0","743":"branch0_seg0","744":"branch0_seg0","745":"branch0_seg0","746":"branch0_seg0","747":"branch0_seg0","748":"branch0_seg0","749":"branch0_seg0","750":"branch0_seg0","751":"branch0_seg0","752":"branch0_seg0","753":"branch0_seg0","754":"branch0_seg0","755":"branch0_seg0","756":"branch0_seg0","757":"branch0_seg0","758":"branch0_seg0","759":"branch0_seg0","760":"branch0_seg0","761":"branch0_seg0","762":"branch0_seg0","763":"branch0_seg0","764":"branch0_seg0","765":"branch0_seg0","766":"branch0_seg0","767":"branch0_seg0","768":"branch0_seg0","769":"branch0_seg0","770":"branch0_seg0","771":"branch0_seg0","772":"branch0_seg0","773":"branch0_seg0","774":"branch0_seg0","775":"branch0_seg0","776":"branch0_seg0","777":"branch0_seg0","778":"branch0_seg0","779":"branch0_seg0","780":"branch0_seg0","781":"branch0_seg0","782":"branch0_seg0","783":"branch0_seg0","784":"branch0_seg0","785":"branch0_seg0","786":"branch0_seg0","787":"branch0_seg0","788":"branch0_seg0","789":"branch0_seg0","790":"branch0_seg0","791":"branch0_seg0","792":"branch0_seg0","793":"branch0_seg0","794":"branch0_seg0","795":"branch0_seg0","796":"branch0_seg0","797":"branch0_seg0","798":"branch0_seg0","799":"branch0_seg0","800":"branch0_seg0","801":"branch0_seg0","802":"branch0_seg0","803":"branch0_seg0","804":"branch0_seg0","805":"branch0_seg0","806":"branch0_seg0","807":"branch0_seg0","808":"branch0_seg0","809":"branch0_seg0","810":"branch0_seg0","811":"branch0_seg0","812":"branch0_seg0","813":"branch0_seg0","814":"branch0_seg0","815":"branch0_seg0","816":"branch0_seg0","817":"branch0_seg0","818":"branch0_seg0","819":"branch0_seg0","820":"branch0_seg0","821":"branch0_seg0","822":"branch0_seg0","823":"branch0_seg0","824":"branch0_seg0","825":"branch0_seg0","826":"branch0_seg0","827":"branch0_seg0","828":"branch0_seg0","829":"branch0_seg0","830":"branch0_seg0","831":"branch0_seg0","832":"branch0_seg0","833":"branch0_seg0","834":"branch0_seg0","835":"branch0_seg0","836":"branch0_seg0","837":"branch0_seg0","838":"branch0_seg0","839":"branch0_seg0","840":"branch0_seg0","841":"branch0_seg0","842":"branch0_seg0","843":"branch0_seg0","844":"branch0_seg0","845":"branch0_seg0","846":"branch0_seg0","847":"branch0_seg0","848":"branch0_seg0","849":"branch0_seg0","850":"branch0_seg0","851":"branch0_seg0","852":"branch0_seg0","853":"branch0_seg0","854":"branch0_seg0","855":"branch0_seg0","856":"branch0_seg0","857":"branch0_seg0","858":"branch0_seg0","859":"branch0_seg0","860":"branch0_seg0","861":"branch0_seg0","862":"branch0_seg0","863":"branch0_seg0","864":"branch0_seg0","865":"branch0_seg0","866":"branch0_seg0","867":"branch0_seg0","868":"branch0_seg0","869":"branch0_seg0","870":"branch0_seg0","871":"branch0_seg0","872":"branch0_seg0","873":"branch0_seg0","874":"branch0_seg0","875":"branch0_seg0","876":"branch0_seg0","877":"branch0_seg0","878":"branch0_seg0","879":"branch0_seg0","880":"branch0_seg0","881":"branch0_seg0","882":"branch0_seg0","883":"branch0_seg0","884":"branch0_seg0","885":"branch0_seg0","886":"branch0_seg0","887":"branch0_seg0","888":"branch0_seg0","889":"branch0_seg0","890":"branch0_seg0","891":"branch0_seg0","892":"branch0_seg0","893":"branch0_seg0","894":"branch0_seg0","895":"branch0_seg0","896":"branch0_seg0","897":"branch0_seg0","898":"branch0_seg0","899":"branch0_seg0","900":"branch0_seg0","901":"branch0_seg0","902":"branch0_seg0","903":"branch0_seg0","904":"branch0_seg0","905":"branch0_seg0","906":"branch0_seg0","907":"branch0_seg0","908":"branch0_seg0","909":"branch0_seg0","910":"branch0_seg0","911":"branch0_seg0","912":"branch0_seg0","913":"branch0_seg0","914":"branch0_seg0","915":"branch0_seg0","916":"branch0_seg0","917":"branch0_seg0","918":"branch0_seg0","919":"branch0_seg0","920":"branch0_seg0","921":"branch0_seg0","922":"branch0_seg0","923":"branch0_seg0","924":"branch0_seg0","925":"branch0_seg0","926":"branch0_seg0","927":"branch0_seg0","928":"branch0_seg0","929":"branch0_seg0","930":"branch0_seg0","931":"branch0_seg0","932":"branch0_seg0","933":"branch0_seg0","934":"branch0_seg0","935":"branch0_seg0","936":"branch0_seg0","937":"branch0_seg0","938":"branch0_seg0","939":"branch0_seg0","940":"branch0_seg0","941":"branch0_seg0","942":"branch0_seg0","943":"branch0_seg0","944":"branch0_seg0","945":"branch0_seg0","946":"branch0_seg0","947":"branch0_seg0","948":"branch0_seg0","949":"branch0_seg0","950":"branch0_seg0","951":"branch0_seg0","952":"branch0_seg0","953":"branch0_seg0","954":"branch0_seg0","955":"branch0_seg0","956":"branch0_seg0","957":"branch0_seg0","958":"branch0_seg0","959":"branch0_seg0","960":"branch0_seg0","961":"branch0_seg0","962":"branch0_seg0","963":"branch0_seg0","964":"branch0_seg0","965":"branch0_seg0","966":"branch0_seg0","967":"branch0_seg0","968":"branch0_seg0","969":"branch0_seg0","970":"branch0_seg0","971":"branch0_seg0","972":"branch0_seg0","973":"branch0_seg0","974":"branch0_seg0","975":"branch0_seg0","976":"branch0_seg0","977":"branch0_seg0","978":"branch0_seg0","979":"branch0_seg0","980":"branch0_seg0","981":"branch0_seg0","982":"branch0_seg0","983":"branch0_seg0","984":"branch0_seg0","985":"branch0_seg0","986":"branch0_seg0","987":"branch0_seg0","988":"branch0_seg0","989":"branch0_seg0","990":"branch0_seg0","991":"branch0_seg0","992":"branch0_seg0","993":"branch0_seg0","994":"branch0_seg0","995":"branch0_seg0","996":"branch0_seg0","997":"branch0_seg0","998":"branch0_seg0","999":"branch0_seg0","1000":"branch0_seg0","1001":"branch0_seg0","1002":"branch0_seg0","1003":"branch0_seg0","1004":"branch0_seg0","1005":"branch0_seg0","1006":"branch0_seg0","1007":"branch0_seg0","1008":"branch0_seg0","1009":"branch0_seg0","1010":"branch0_seg0","1011":"branch0_seg0","1012":"branch0_seg0","1013":"branch0_seg0","1014":"branch0_seg0","1015":"branch0_seg0","1016":"branch0_seg0","1017":"branch0_seg0","1018":"branch0_seg0","1019":"branch0_seg0","1020":"branch0_seg0","1021":"branch0_seg0","1022":"branch0_seg0","1023":"branch0_seg0","1024":"branch0_seg0","1025":"branch0_seg0","1026":"branch0_seg0","1027":"branch0_seg0","1028":"branch0_seg0","1029":"branch0_seg0","1030":"branch0_seg0","1031":"branch0_seg0","1032":"branch0_seg0","1033":"branch0_seg0","1034":"branch0_seg0","1035":"branch0_seg0","1036":"branch0_seg0","1037":"branch0_seg0","1038":"branch0_seg0","1039":"branch0_seg0","1040":"branch0_seg0","1041":"branch0_seg0","1042":"branch0_seg0","1043":"branch0_seg0","1044":"branch0_seg0","1045":"branch0_seg0","1046":"branch0_seg0","1047":"branch0_seg0","1048":"branch0_seg0","1049":"branch0_seg0","1050":"branch0_seg0","1051":"branch0_seg0","1052":"branch0_seg0","1053":"branch0_seg0","1054":"branch0_seg0","1055":"branch0_seg0","1056":"branch0_seg0","1057":"branch0_seg0","1058":"branch0_seg0","1059":"branch0_seg0","1060":"branch0_seg0","1061":"branch0_seg0","1062":"branch0_seg0","1063":"branch0_seg0","1064":"branch0_seg0","1065":"branch0_seg0","1066":"branch0_seg0","1067":"branch0_seg0","1068":"branch0_seg0","1069":"branch0_seg0","1070":"branch0_seg0","1071":"branch0_seg0","1072":"branch0_seg0","1073":"branch0_seg0","1074":"branch0_seg0","1075":"branch0_seg0","1076":"branch0_seg0","1077":"branch0_seg0","1078":"branch0_seg0","1079":"branch0_seg0","1080":"branch0_seg0","1081":"branch0_seg0","1082":"branch0_seg0","1083":"branch0_seg0","1084":"branch0_seg0","1085":"branch0_seg0","1086":"branch0_seg0","1087":"branch0_seg0","1088":"branch0_seg0","1089":"branch0_seg0","1090":"branch0_seg0","1091":"branch0_seg0","1092":"branch0_seg0","1093":"branch0_seg0","1094":"branch0_seg0","1095":"branch0_seg0","1096":"branch0_seg0","1097":"branch0_seg0","1098":"branch0_seg0","1099":"branch0_seg0","1100":"branch0_seg0","1101":"branch0_seg0","1102":"branch0_seg0","1103":"branch0_seg0","1104":"branch0_seg0","1105":"branch0_seg0","1106":"branch0_seg0","1107":"branch0_seg0","1108":"branch0_seg0","1109":"branch0_seg0","1110":"branch0_seg0","1111":"branch0_seg0","1112":"branch0_seg0","1113":"branch0_seg0","1114":"branch0_seg0","1115":"branch0_seg0","1116":"branch0_seg0","1117":"branch0_seg0","1118":"branch0_seg0","1119":"branch0_seg0","1120":"branch0_seg0","1121":"branch0_seg0","1122":"branch0_seg0","1123":"branch0_seg0","1124":"branch0_seg0","1125":"branch0_seg0","1126":"branch0_seg0","1127":"branch0_seg0","1128":"branch0_seg0","1129":"branch0_seg0","1130":"branch0_seg0","1131":"branch0_seg0","1132":"branch0_seg0","1133":"branch0_seg0","1134":"branch0_seg0","1135":"branch0_seg0","1136":"branch0_seg0","1137":"branch0_seg0","1138":"branch0_seg0","1139":"branch0_seg0","1140":"branch0_seg0","1141":"branch0_seg0","1142":"branch0_seg0","1143":"branch0_seg0","1144":"branch0_seg0","1145":"branch0_seg0","1146":"branch0_seg0","1147":"branch0_seg0","1148":"branch0_seg0","1149":"branch0_seg0","1150":"branch0_seg0","1151":"branch0_seg0","1152":"branch0_seg0","1153":"branch0_seg0","1154":"branch0_seg0","1155":"branch0_seg0","1156":"branch0_seg0","1157":"branch0_seg0","1158":"branch0_seg0","1159":"branch0_seg0","1160":"branch0_seg0","1161":"branch0_seg0","1162":"branch0_seg0","1163":"branch0_seg0","1164":"branch0_seg0","1165":"branch0_seg0","1166":"branch0_seg0","1167":"branch0_seg0","1168":"branch0_seg0","1169":"branch0_seg0","1170":"branch0_seg0","1171":"branch0_seg0","1172":"branch0_seg0","1173":"branch0_seg0","1174":"branch0_seg0","1175":"branch0_seg0","1176":"branch0_seg0","1177":"branch0_seg0","1178":"branch0_seg0","1179":"branch0_seg0","1180":"branch0_seg0","1181":"branch0_seg0","1182":"branch0_seg0","1183":"branch0_seg0","1184":"branch0_seg0","1185":"branch0_seg0","1186":"branch0_seg0","1187":"branch0_seg0","1188":"branch0_seg0","1189":"branch0_seg0","1190":"branch0_seg0","1191":"branch0_seg0","1192":"branch0_seg0","1193":"branch0_seg0","1194":"branch0_seg0","1195":"branch0_seg0","1196":"branch0_seg0","1197":"branch0_seg0","1198":"branch0_seg0","1199":"branch0_seg0","1200":"branch0_seg0","1201":"branch0_seg0","1202":"branch0_seg0","1203":"branch0_seg0","1204":"branch0_seg0","1205":"branch0_seg0","1206":"branch0_seg0","1207":"branch0_seg0","1208":"branch0_seg0","1209":"branch0_seg0","1210":"branch0_seg0","1211":"branch0_seg0","1212":"branch0_seg0","1213":"branch0_seg0","1214":"branch0_seg0","1215":"branch0_seg0","1216":"branch0_seg0","1217":"branch0_seg0","1218":"branch0_seg0","1219":"branch0_seg0","1220":"branch0_seg0","1221":"branch0_seg0","1222":"branch0_seg0","1223":"branch0_seg0","1224":"branch0_seg0","1225":"branch0_seg0","1226":"branch0_seg0","1227":"branch0_seg0","1228":"branch0_seg0","1229":"branch0_seg0","1230":"branch0_seg0","1231":"branch0_seg0","1232":"branch0_seg0","1233":"branch0_seg0","1234":"branch0_seg0","1235":"branch0_seg0","1236":"branch0_seg0","1237":"branch0_seg0","1238":"branch0_seg0","1239":"branch0_seg0","1240":"branch0_seg0","1241":"branch0_seg0","1242":"branch0_seg0","1243":"branch0_seg0","1244":"branch0_seg0","1245":"branch0_seg0","1246":"branch0_seg0","1247":"branch0_seg0","1248":"branch0_seg0","1249":"branch0_seg0","1250":"branch0_seg0","1251":"branch0_seg0","1252":"branch0_seg0","1253":"branch0_seg0","1254":"branch0_seg0","1255":"branch0_seg0","1256":"branch0_seg0","1257":"branch0_seg0","1258":"branch0_seg0","1259":"branch0_seg0","1260":"branch0_seg0","1261":"branch0_seg0","1262":"branch0_seg0","1263":"branch0_seg0","1264":"branch0_seg0","1265":"branch0_seg0","1266":"branch0_seg0","1267":"branch0_seg0","1268":"branch0_seg0","1269":"branch0_seg0","1270":"branch0_seg0","1271":"branch0_seg0","1272":"branch0_seg0","1273":"branch0_seg0","1274":"branch0_seg0","1275":"branch0_seg0","1276":"branch0_seg0","1277":"branch0_seg0","1278":"branch0_seg0","1279":"branch0_seg0","1280":"branch0_seg0","1281":"branch0_seg0","1282":"branch0_seg0","1283":"branch0_seg0","1284":"branch0_seg0","1285":"branch0_seg0","1286":"branch0_seg0","1287":"branch0_seg0","1288":"branch0_seg0","1289":"branch0_seg0","1290":"branch0_seg0","1291":"branch0_seg0","1292":"branch0_seg0","1293":"branch0_seg0","1294":"branch0_seg0","1295":"branch0_seg0","1296":"branch0_seg0","1297":"branch0_seg0","1298":"branch0_seg0","1299":"branch0_seg0","1300":"branch0_seg0","1301":"branch0_seg0","1302":"branch0_seg0","1303":"branch0_seg0","1304":"branch0_seg0","1305":"branch0_seg0","1306":"branch0_seg0","1307":"branch0_seg0","1308":"branch0_seg0","1309":"branch0_seg0","1310":"branch0_seg0","1311":"branch0_seg0","1312":"branch0_seg0","1313":"branch0_seg0","1314":"branch0_seg0","1315":"branch0_seg0","1316":"branch0_seg0","1317":"branch0_seg0","1318":"branch0_seg0","1319":"branch0_seg0","1320":"branch0_seg0","1321":"branch0_seg0","1322":"branch0_seg0","1323":"branch0_seg0","1324":"branch0_seg0","1325":"branch0_seg0","1326":"branch0_seg0","1327":"branch0_seg0","1328":"branch0_seg0","1329":"branch0_seg0","1330":"branch0_seg0","1331":"branch0_seg0","1332":"branch0_seg0","1333":"branch0_seg0","1334":"branch0_seg0","1335":"branch0_seg0","1336":"branch0_seg0","1337":"branch0_seg0","1338":"branch0_seg0","1339":"branch0_seg0","1340":"branch0_seg0","1341":"branch0_seg0","1342":"branch0_seg0","1343":"branch0_seg0","1344":"branch0_seg0","1345":"branch0_seg0","1346":"branch0_seg0","1347":"branch0_seg0","1348":"branch0_seg0","1349":"branch0_seg0","1350":"branch0_seg0","1351":"branch0_seg0","1352":"branch0_seg0","1353":"branch0_seg0","1354":"branch0_seg0","1355":"branch0_seg0","1356":"branch0_seg0","1357":"branch0_seg0","1358":"branch0_seg0","1359":"branch0_seg0","1360":"branch0_seg0","1361":"branch0_seg0","1362":"branch0_seg0","1363":"branch0_seg0","1364":"branch0_seg0","1365":"branch0_seg0","1366":"branch0_seg0","1367":"branch0_seg0","1368":"branch0_seg0","1369":"branch0_seg0","1370":"branch0_seg0","1371":"branch0_seg0","1372":"branch0_seg0","1373":"branch0_seg0","1374":"branch0_seg0","1375":"branch0_seg0","1376":"branch0_seg0","1377":"branch0_seg0","1378":"branch0_seg0","1379":"branch0_seg0","1380":"branch0_seg0","1381":"branch0_seg0","1382":"branch0_seg0","1383":"branch0_seg0","1384":"branch0_seg0","1385":"branch0_seg0","1386":"branch0_seg0","1387":"branch0_seg0","1388":"branch0_seg0","1389":"branch0_seg0","1390":"branch0_seg0","1391":"branch0_seg0","1392":"branch0_seg0","1393":"branch0_seg0","1394":"branch0_seg0","1395":"branch0_seg0","1396":"branch0_seg0","1397":"branch0_seg0","1398":"branch0_seg0","1399":"branch0_seg0","1400":"branch0_seg0","1401":"branch0_seg0","1402":"branch0_seg0","1403":"branch0_seg0","1404":"branch0_seg0","1405":"branch0_seg0","1406":"branch0_seg0","1407":"branch0_seg0","1408":"branch0_seg0","1409":"branch0_seg0","1410":"branch0_seg0","1411":"branch0_seg0","1412":"branch0_seg0","1413":"branch0_seg0","1414":"branch0_seg0","1415":"branch0_seg0","1416":"branch0_seg0","1417":"branch0_seg0","1418":"branch0_seg0","1419":"branch0_seg0","1420":"branch0_seg0","1421":"branch0_seg0","1422":"branch0_seg0","1423":"branch0_seg0","1424":"branch0_seg0","1425":"branch0_seg0","1426":"branch0_seg0","1427":"branch0_seg0","1428":"branch0_seg0","1429":"branch0_seg0","1430":"branch0_seg0","1431":"branch0_seg0","1432":"branch0_seg0","1433":"branch0_seg0","1434":"branch0_seg0","1435":"branch0_seg0","1436":"branch0_seg0","1437":"branch0_seg0","1438":"branch0_seg0","1439":"branch0_seg0","1440":"branch0_seg0","1441":"branch0_seg0","1442":"branch0_seg0","1443":"branch0_seg0","1444":"branch0_seg0","1445":"branch0_seg0","1446":"branch0_seg0","1447":"branch0_seg0","1448":"branch0_seg0","1449":"branch0_seg0","1450":"branch0_seg0","1451":"branch0_seg0","1452":"branch0_seg0","1453":"branch0_seg0","1454":"branch0_seg0","1455":"branch0_seg0","1456":"branch0_seg0","1457":"branch0_seg0","1458":"branch0_seg0","1459":"branch0_seg0","1460":"branch0_seg0","1461":"branch0_seg0","1462":"branch0_seg0","1463":"branch0_seg0","1464":"branch0_seg0","1465":"branch0_seg0","1466":"branch0_seg0","1467":"branch0_seg0","1468":"branch0_seg0","1469":"branch0_seg0","1470":"branch0_seg0","1471":"branch0_seg0","1472":"branch0_seg0","1473":"branch0_seg0","1474":"branch0_seg0","1475":"branch0_seg0","1476":"branch0_seg0","1477":"branch0_seg0","1478":"branch0_seg0","1479":"branch0_seg0","1480":"branch0_seg0","1481":"branch0_seg0","1482":"branch0_seg0","1483":"branch0_seg0","1484":"branch0_seg0","1485":"branch0_seg0","1486":"branch0_seg0","1487":"branch0_seg0","1488":"branch0_seg0","1489":"branch0_seg0","1490":"branch0_seg0","1491":"branch0_seg0","1492":"branch0_seg0","1493":"branch0_seg0","1494":"branch0_seg0","1495":"branch0_seg0","1496":"branch0_seg0","1497":"branch0_seg0","1498":"branch0_seg0","1499":"branch0_seg0","1500":"branch0_seg0","1501":"branch0_seg0","1502":"branch0_seg0","1503":"branch0_seg0","1504":"branch0_seg0","1505":"branch0_seg0","1506":"branch0_seg0","1507":"branch0_seg0","1508":"branch0_seg0","1509":"branch0_seg0","1510":"branch0_seg0","1511":"branch0_seg0","1512":"branch0_seg0","1513":"branch0_seg0","1514":"branch0_seg0","1515":"branch0_seg0","1516":"branch0_seg0","1517":"branch0_seg0","1518":"branch0_seg0","1519":"branch0_seg0","1520":"branch0_seg0","1521":"branch0_seg0","1522":"branch0_seg0","1523":"branch0_seg0","1524":"branch0_seg0","1525":"branch0_seg0","1526":"branch0_seg0","1527":"branch0_seg0","1528":"branch0_seg0","1529":"branch0_seg0","1530":"branch0_seg0","1531":"branch0_seg0","1532":"branch0_seg0","1533":"branch0_seg0","1534":"branch0_seg0","1535":"branch0_seg0","1536":"branch0_seg0","1537":"branch0_seg0","1538":"branch0_seg0","1539":"branch0_seg0","1540":"branch0_seg0","1541":"branch0_seg0","1542":"branch0_seg0","1543":"branch0_seg0","1544":"branch0_seg0","1545":"branch0_seg0","1546":"branch0_seg0","1547":"branch0_seg0","1548":"branch0_seg0","1549":"branch0_seg0","1550":"branch0_seg0","1551":"branch0_seg0","1552":"branch0_seg0","1553":"branch0_seg0","1554":"branch0_seg0","1555":"branch0_seg0","1556":"branch0_seg0","1557":"branch0_seg0","1558":"branch0_seg0","1559":"branch0_seg0","1560":"branch0_seg0","1561":"branch0_seg0","1562":"branch0_seg0","1563":"branch0_seg0","1564":"branch0_seg0","1565":"branch0_seg0","1566":"branch0_seg0","1567":"branch0_seg0","1568":"branch0_seg0","1569":"branch0_seg0","1570":"branch0_seg0","1571":"branch0_seg0","1572":"branch0_seg0","1573":"branch0_seg0","1574":"branch0_seg0","1575":"branch0_seg0","1576":"branch0_seg0","1577":"branch0_seg0","1578":"branch0_seg0","1579":"branch0_seg0","1580":"branch0_seg0","1581":"branch0_seg0","1582":"branch0_seg0","1583":"branch0_seg0","1584":"branch0_seg0","1585":"branch0_seg0","1586":"branch0_seg0","1587":"branch0_seg0","1588":"branch0_seg0","1589":"branch0_seg0","1590":"branch0_seg0","1591":"branch0_seg0","1592":"branch0_seg0","1593":"branch0_seg0","1594":"branch0_seg0","1595":"branch0_seg0","1596":"branch0_seg0","1597":"branch0_seg0","1598":"branch0_seg0","1599":"branch0_seg0","1600":"branch0_seg0","1601":"branch0_seg0","1602":"branch0_seg0","1603":"branch0_seg0","1604":"branch0_seg0","1605":"branch0_seg0","1606":"branch0_seg0","1607":"branch0_seg0","1608":"branch0_seg0","1609":"branch0_seg0","1610":"branch0_seg0","1611":"branch0_seg0","1612":"branch0_seg0","1613":"branch0_seg0","1614":"branch0_seg0","1615":"branch0_seg0","1616":"branch0_seg0","1617":"branch0_seg0","1618":"branch0_seg0","1619":"branch0_seg0","1620":"branch0_seg0","1621":"branch0_seg0","1622":"branch0_seg0","1623":"branch0_seg0","1624":"branch0_seg0","1625":"branch0_seg0","1626":"branch0_seg0","1627":"branch0_seg0","1628":"branch0_seg0","1629":"branch0_seg0","1630":"branch0_seg0","1631":"branch0_seg0","1632":"branch0_seg0","1633":"branch0_seg0","1634":"branch0_seg0","1635":"branch0_seg0","1636":"branch0_seg0","1637":"branch0_seg0","1638":"branch0_seg0","1639":"branch0_seg0","1640":"branch0_seg0","1641":"branch0_seg0","1642":"branch0_seg0","1643":"branch0_seg0","1644":"branch0_seg0","1645":"branch0_seg0","1646":"branch0_seg0","1647":"branch0_seg0","1648":"branch0_seg0","1649":"branch0_seg0","1650":"branch0_seg0","1651":"branch0_seg0","1652":"branch0_seg0","1653":"branch0_seg0","1654":"branch0_seg0","1655":"branch0_seg0","1656":"branch0_seg0","1657":"branch0_seg0","1658":"branch0_seg0","1659":"branch0_seg0","1660":"branch0_seg0","1661":"branch0_seg0","1662":"branch0_seg0","1663":"branch0_seg0","1664":"branch0_seg0","1665":"branch0_seg0","1666":"branch0_seg0","1667":"branch0_seg0","1668":"branch0_seg0","1669":"branch0_seg0","1670":"branch0_seg0","1671":"branch0_seg0","1672":"branch0_seg0","1673":"branch0_seg0","1674":"branch0_seg0","1675":"branch0_seg0","1676":"branch0_seg0","1677":"branch0_seg0","1678":"branch0_seg0","1679":"branch0_seg0","1680":"branch0_seg0","1681":"branch0_seg0","1682":"branch0_seg0","1683":"branch0_seg0","1684":"branch0_seg0","1685":"branch0_seg0","1686":"branch0_seg0","1687":"branch0_seg0","1688":"branch0_seg0","1689":"branch0_seg0","1690":"branch0_seg0","1691":"branch0_seg0","1692":"branch0_seg0","1693":"branch0_seg0","1694":"branch0_seg0","1695":"branch0_seg0","1696":"branch0_seg0","1697":"branch0_seg0","1698":"branch0_seg0","1699":"branch0_seg0","1700":"branch0_seg0","1701":"branch0_seg0","1702":"branch0_seg0","1703":"branch0_seg0","1704":"branch0_seg0","1705":"branch0_seg0","1706":"branch0_seg0","1707":"branch0_seg0","1708":"branch0_seg0","1709":"branch0_seg0","1710":"branch0_seg0","1711":"branch0_seg0","1712":"branch0_seg0","1713":"branch0_seg0","1714":"branch0_seg0","1715":"branch0_seg0","1716":"branch0_seg0","1717":"branch0_seg0","1718":"branch0_seg0","1719":"branch0_seg0","1720":"branch0_seg0","1721":"branch0_seg0","1722":"branch0_seg0","1723":"branch0_seg0","1724":"branch0_seg0","1725":"branch0_seg0","1726":"branch0_seg0","1727":"branch0_seg0","1728":"branch0_seg0","1729":"branch0_seg0","1730":"branch0_seg0","1731":"branch0_seg0","1732":"branch0_seg0","1733":"branch0_seg0","1734":"branch0_seg0","1735":"branch0_seg0","1736":"branch0_seg0","1737":"branch0_seg0","1738":"branch0_seg0","1739":"branch0_seg0","1740":"branch0_seg0","1741":"branch0_seg0","1742":"branch0_seg0","1743":"branch0_seg0","1744":"branch0_seg0","1745":"branch0_seg0","1746":"branch0_seg0","1747":"branch0_seg0","1748":"branch0_seg0","1749":"branch0_seg0","1750":"branch0_seg0","1751":"branch0_seg0","1752":"branch0_seg0","1753":"branch0_seg0","1754":"branch0_seg0","1755":"branch0_seg0","1756":"branch0_seg0","1757":"branch0_seg0","1758":"branch0_seg0","1759":"branch0_seg0","1760":"branch0_seg0","1761":"branch0_seg0","1762":"branch0_seg0","1763":"branch0_seg0","1764":"branch0_seg0","1765":"branch0_seg0","1766":"branch0_seg0","1767":"branch0_seg0","1768":"branch0_seg0","1769":"branch0_seg0","1770":"branch0_seg0","1771":"branch0_seg0","1772":"branch0_seg0","1773":"branch0_seg0","1774":"branch0_seg0","1775":"branch0_seg0","1776":"branch0_seg0","1777":"branch0_seg0","1778":"branch0_seg0","1779":"branch0_seg0","1780":"branch0_seg0","1781":"branch0_seg0","1782":"branch0_seg0","1783":"branch0_seg0","1784":"branch0_seg0","1785":"branch0_seg0","1786":"branch0_seg0","1787":"branch0_seg0","1788":"branch0_seg0","1789":"branch0_seg0","1790":"branch0_seg0","1791":"branch0_seg0","1792":"branch0_seg0","1793":"branch0_seg0","1794":"branch0_seg0","1795":"branch0_seg0","1796":"branch0_seg0","1797":"branch0_seg0","1798":"branch0_seg0","1799":"branch0_seg0","1800":"branch0_seg0","1801":"branch0_seg0","1802":"branch0_seg0","1803":"branch0_seg0","1804":"branch0_seg0","1805":"branch0_seg0","1806":"branch0_seg0","1807":"branch0_seg0","1808":"branch0_seg0","1809":"branch0_seg0","1810":"branch0_seg0","1811":"branch0_seg0","1812":"branch0_seg0","1813":"branch0_seg0","1814":"branch0_seg0","1815":"branch0_seg0","1816":"branch0_seg0","1817":"branch0_seg0","1818":"branch0_seg0","1819":"branch0_seg0","1820":"branch0_seg0","1821":"branch0_seg0","1822":"branch0_seg0","1823":"branch0_seg0","1824":"branch0_seg0","1825":"branch0_seg0","1826":"branch0_seg0","1827":"branch0_seg0","1828":"branch0_seg0","1829":"branch0_seg0","1830":"branch0_seg0","1831":"branch0_seg0","1832":"branch0_seg0","1833":"branch0_seg0","1834":"branch0_seg0","1835":"branch0_seg0","1836":"branch0_seg0","1837":"branch0_seg0","1838":"branch0_seg0","1839":"branch0_seg0","1840":"branch0_seg0","1841":"branch0_seg0","1842":"branch0_seg0","1843":"branch0_seg0","1844":"branch0_seg0","1845":"branch0_seg0","1846":"branch0_seg0","1847":"branch0_seg0","1848":"branch0_seg0","1849":"branch0_seg0","1850":"branch0_seg0","1851":"branch0_seg0","1852":"branch0_seg0","1853":"branch0_seg0","1854":"branch0_seg0","1855":"branch0_seg0","1856":"branch0_seg0","1857":"branch0_seg0","1858":"branch0_seg0","1859":"branch0_seg0","1860":"branch0_seg0","1861":"branch0_seg0","1862":"branch0_seg0","1863":"branch0_seg0","1864":"branch0_seg0","1865":"branch0_seg0","1866":"branch0_seg0","1867":"branch0_seg0","1868":"branch0_seg0","1869":"branch0_seg0","1870":"branch0_seg0","1871":"branch0_seg0","1872":"branch0_seg0","1873":"branch0_seg0","1874":"branch0_seg0","1875":"branch0_seg0","1876":"branch0_seg0","1877":"branch0_seg0","1878":"branch0_seg0","1879":"branch0_seg0","1880":"branch0_seg0","1881":"branch0_seg0","1882":"branch0_seg0","1883":"branch0_seg0","1884":"branch0_seg0","1885":"branch0_seg0","1886":"branch0_seg0","1887":"branch0_seg0","1888":"branch0_seg0","1889":"branch0_seg0","1890":"branch0_seg0","1891":"branch0_seg0","1892":"branch0_seg0","1893":"branch0_seg0","1894":"branch0_seg0","1895":"branch0_seg0","1896":"branch0_seg0","1897":"branch0_seg0","1898":"branch0_seg0","1899":"branch0_seg0","1900":"branch0_seg0","1901":"branch0_seg0","1902":"branch0_seg0","1903":"branch0_seg0","1904":"branch0_seg0","1905":"branch0_seg0","1906":"branch0_seg0","1907":"branch0_seg0","1908":"branch0_seg0","1909":"branch0_seg0","1910":"branch0_seg0","1911":"branch0_seg0","1912":"branch0_seg0","1913":"branch0_seg0","1914":"branch0_seg0","1915":"branch0_seg0","1916":"branch0_seg0","1917":"branch0_seg0","1918":"branch0_seg0","1919":"branch0_seg0","1920":"branch0_seg0","1921":"branch0_seg0","1922":"branch0_seg0","1923":"branch0_seg0","1924":"branch0_seg0","1925":"branch0_seg0","1926":"branch0_seg0","1927":"branch0_seg0","1928":"branch0_seg0","1929":"branch0_seg0","1930":"branch0_seg0","1931":"branch0_seg0","1932":"branch0_seg0","1933":"branch0_seg0","1934":"branch0_seg0","1935":"branch0_seg0","1936":"branch0_seg0","1937":"branch0_seg0","1938":"branch0_seg0","1939":"branch0_seg0","1940":"branch0_seg0","1941":"branch0_seg0","1942":"branch0_seg0","1943":"branch0_seg0","1944":"branch0_seg0","1945":"branch0_seg0","1946":"branch0_seg0","1947":"branch0_seg0","1948":"branch0_seg0","1949":"branch0_seg0","1950":"branch0_seg0","1951":"branch0_seg0","1952":"branch0_seg0","1953":"branch0_seg0","1954":"branch0_seg0","1955":"branch0_seg0","1956":"branch0_seg0","1957":"branch0_seg0","1958":"branch0_seg0","1959":"branch0_seg0","1960":"branch0_seg0","1961":"branch0_seg0","1962":"branch0_seg0","1963":"branch0_seg0","1964":"branch0_seg0","1965":"branch0_seg0","1966":"branch0_seg0","1967":"branch0_seg0","1968":"branch0_seg0","1969":"branch0_seg0","1970":"branch0_seg0","1971":"branch0_seg0","1972":"branch0_seg0","1973":"branch0_seg0","1974":"branch0_seg0","1975":"branch0_seg0","1976":"branch0_seg0","1977":"branch0_seg0","1978":"branch0_seg0","1979":"branch0_seg0","1980":"branch0_seg0","1981":"branch0_seg0","1982":"branch0_seg0","1983":"branch0_seg0","1984":"branch0_seg0","1985":"branch0_seg0","1986":"branch0_seg0","1987":"branch0_seg0","1988":"branch0_seg0","1989":"branch0_seg0","1990":"branch0_seg0","1991":"branch0_seg0","1992":"branch0_seg0","1993":"branch0_seg0","1994":"branch0_seg0","1995":"branch0_seg0","1996":"branch0_seg0","1997":"branch0_seg0","1998":"branch0_seg0","1999":"branch0_seg0","2000":"branch0_seg0","2001":"branch0_seg0","2002":"branch0_seg0","2003":"branch0_seg0","2004":"branch0_seg0","2005":"branch0_seg0","2006":"branch0_seg0","2007":"branch0_seg0","2008":"branch0_seg0","2009":"branch0_seg0","2010":"branch0_seg0","2011":"branch0_seg0","2012":"branch0_seg0","2013":"branch0_seg0","2014":"branch0_seg0","2015":"branch0_seg0","2016":"branch0_seg0","2017":"branch0_seg0","2018":"branch0_seg0","2019":"branch0_seg0","2020":"branch0_seg0","2021":"branch0_seg0","2022":"branch0_seg0","2023":"branch0_seg0","2024":"branch0_seg0","2025":"branch0_seg0","2026":"branch0_seg0","2027":"branch0_seg0","2028":"branch0_seg0","2029":"branch0_seg0","2030":"branch0_seg0","2031":"branch0_seg0","2032":"branch0_seg0","2033":"branch0_seg0","2034":"branch0_seg0","2035":"branch0_seg0","2036":"branch0_seg0","2037":"branch0_seg0","2038":"branch0_seg0","2039":"branch0_seg0","2040":"branch0_seg0","2041":"branch0_seg0","2042":"branch0_seg0","2043":"branch0_seg0","2044":"branch0_seg0","2045":"branch0_seg0","2046":"branch0_seg0","2047":"branch0_seg0","2048":"branch0_seg0","2049":"branch0_seg0","2050":"branch0_seg0","2051":"branch0_seg0","2052":"branch0_seg0","2053":"branch0_seg0","2054":"branch0_seg0","2055":"branch0_seg0","2056":"branch0_seg0","2057":"branch0_seg0","2058":"branch0_seg0","2059":"branch0_seg0","2060":"branch0_seg0","2061":"branch0_seg0","2062":"branch0_seg0","2063":"branch0_seg0","2064":"branch0_seg0","2065":"branch0_seg0","2066":"branch0_seg0","2067":"branch0_seg0","2068":"branch0_seg0","2069":"branch0_seg0","2070":"branch0_seg0","2071":"branch0_seg0","2072":"branch0_seg0","2073":"branch0_seg0","2074":"branch0_seg0","2075":"branch0_seg0","2076":"branch0_seg0","2077":"branch0_seg0","2078":"branch0_seg0","2079":"branch0_seg0","2080":"branch0_seg0","2081":"branch0_seg0","2082":"branch0_seg0","2083":"branch0_seg0","2084":"branch0_seg0","2085":"branch0_seg0","2086":"branch0_seg0","2087":"branch0_seg0","2088":"branch0_seg0","2089":"branch0_seg0","2090":"branch0_seg0","2091":"branch0_seg0","2092":"branch0_seg0","2093":"branch0_seg0","2094":"branch0_seg0","2095":"branch0_seg0","2096":"branch0_seg0","2097":"branch0_seg0","2098":"branch0_seg0","2099":"branch0_seg0","2100":"branch0_seg0","2101":"branch0_seg0","2102":"branch0_seg0","2103":"branch0_seg0","2104":"branch0_seg0","2105":"branch0_seg0","2106":"branch0_seg0","2107":"branch0_seg0","2108":"branch0_seg0","2109":"branch0_seg0","2110":"branch0_seg0","2111":"branch0_seg0","2112":"branch0_seg0","2113":"branch0_seg0","2114":"branch0_seg0","2115":"branch0_seg0","2116":"branch0_seg0","2117":"branch0_seg0","2118":"branch0_seg0","2119":"branch0_seg0","2120":"branch0_seg0","2121":"branch0_seg0","2122":"branch0_seg0","2123":"branch0_seg0","2124":"branch0_seg0","2125":"branch0_seg0","2126":"branch0_seg0","2127":"branch0_seg0","2128":"branch0_seg0","2129":"branch0_seg0","2130":"branch0_seg0","2131":"branch0_seg0","2132":"branch0_seg0","2133":"branch0_seg0","2134":"branch0_seg0","2135":"branch0_seg0","2136":"branch0_seg0","2137":"branch0_seg0","2138":"branch0_seg0","2139":"branch0_seg0","2140":"branch0_seg0","2141":"branch0_seg0","2142":"branch0_seg0","2143":"branch0_seg0","2144":"branch0_seg0","2145":"branch0_seg0","2146":"branch0_seg0","2147":"branch0_seg0","2148":"branch0_seg0","2149":"branch0_seg0","2150":"branch0_seg0","2151":"branch0_seg0","2152":"branch0_seg0","2153":"branch0_seg0","2154":"branch0_seg0","2155":"branch0_seg0","2156":"branch0_seg0","2157":"branch0_seg0","2158":"branch0_seg0","2159":"branch0_seg0","2160":"branch0_seg0","2161":"branch0_seg0","2162":"branch0_seg0","2163":"branch0_seg0","2164":"branch0_seg0","2165":"branch0_seg0","2166":"branch0_seg0","2167":"branch0_seg0","2168":"branch0_seg0","2169":"branch0_seg0","2170":"branch0_seg0","2171":"branch0_seg0","2172":"branch0_seg0","2173":"branch0_seg0","2174":"branch0_seg0","2175":"branch0_seg0","2176":"branch0_seg0","2177":"branch0_seg0","2178":"branch0_seg0","2179":"branch0_seg0","2180":"branch0_seg0","2181":"branch0_seg0","2182":"branch0_seg0","2183":"branch0_seg0","2184":"branch0_seg0","2185":"branch0_seg0","2186":"branch0_seg0","2187":"branch0_seg0","2188":"branch0_seg0","2189":"branch0_seg0","2190":"branch0_seg0","2191":"branch0_seg0","2192":"branch0_seg0","2193":"branch0_seg0","2194":"branch0_seg0","2195":"branch0_seg0","2196":"branch0_seg0","2197":"branch0_seg0","2198":"branch0_seg0","2199":"branch0_seg0","2200":"branch0_seg0","2201":"branch0_seg0","2202":"branch0_seg0","2203":"branch0_seg0","2204":"branch0_seg0","2205":"branch0_seg0","2206":"branch0_seg0","2207":"branch0_seg0","2208":"branch0_seg0","2209":"branch0_seg0","2210":"branch0_seg0","2211":"branch0_seg0","2212":"branch0_seg0","2213":"branch0_seg0","2214":"branch0_seg0","2215":"branch0_seg0","2216":"branch0_seg0","2217":"branch0_seg0","2218":"branch0_seg0","2219":"branch0_seg0","2220":"branch0_seg0","2221":"branch0_seg0","2222":"branch0_seg0","2223":"branch0_seg0","2224":"branch0_seg0","2225":"branch0_seg0","2226":"branch0_seg0","2227":"branch0_seg0","2228":"branch0_seg0","2229":"branch0_seg0","2230":"branch0_seg0","2231":"branch0_seg0","2232":"branch0_seg0","2233":"branch0_seg0","2234":"branch0_seg0","2235":"branch0_seg0","2236":"branch0_seg0","2237":"branch0_seg0","2238":"branch0_seg0","2239":"branch0_seg0","2240":"branch0_seg0","2241":"branch0_seg0","2242":"branch0_seg0","2243":"branch0_seg0","2244":"branch0_seg0","2245":"branch0_seg0","2246":"branch0_seg0","2247":"branch0_seg0","2248":"branch0_seg0","2249":"branch0_seg0","2250":"branch0_seg0","2251":"branch0_seg0","2252":"branch0_seg0","2253":"branch0_seg0","2254":"branch0_seg0","2255":"branch0_seg0","2256":"branch0_seg0","2257":"branch0_seg0","2258":"branch0_seg0","2259":"branch0_seg0","2260":"branch0_seg0","2261":"branch0_seg0","2262":"branch0_seg0","2263":"branch0_seg0","2264":"branch0_seg0","2265":"branch0_seg0","2266":"branch0_seg0","2267":"branch0_seg0","2268":"branch0_seg0","2269":"branch0_seg0","2270":"branch0_seg0","2271":"branch0_seg0","2272":"branch0_seg0","2273":"branch0_seg0","2274":"branch0_seg0","2275":"branch0_seg0","2276":"branch0_seg0","2277":"branch0_seg0","2278":"branch0_seg0","2279":"branch0_seg0","2280":"branch0_seg0","2281":"branch0_seg0","2282":"branch0_seg0","2283":"branch0_seg0","2284":"branch0_seg0","2285":"branch0_seg0","2286":"branch0_seg0","2287":"branch0_seg0","2288":"branch0_seg0","2289":"branch0_seg0","2290":"branch0_seg0","2291":"branch0_seg0","2292":"branch0_seg0","2293":"branch0_seg0","2294":"branch0_seg0","2295":"branch0_seg0","2296":"branch0_seg0","2297":"branch0_seg0","2298":"branch0_seg0","2299":"branch0_seg0","2300":"branch0_seg0","2301":"branch0_seg0","2302":"branch0_seg0","2303":"branch0_seg0","2304":"branch0_seg0","2305":"branch0_seg0","2306":"branch0_seg0","2307":"branch0_seg0","2308":"branch0_seg0","2309":"branch0_seg0","2310":"branch0_seg0","2311":"branch0_seg0","2312":"branch0_seg0","2313":"branch0_seg0","2314":"branch0_seg0","2315":"branch0_seg0","2316":"branch0_seg0","2317":"branch0_seg0","2318":"branch0_seg0","2319":"branch0_seg0","2320":"branch0_seg0","2321":"branch0_seg0","2322":"branch0_seg0","2323":"branch0_seg0","2324":"branch0_seg0","2325":"branch0_seg0","2326":"branch0_seg0","2327":"branch0_seg0","2328":"branch0_seg0","2329":"branch0_seg0","2330":"branch0_seg0","2331":"branch0_seg0","2332":"branch0_seg0","2333":"branch0_seg0","2334":"branch0_seg0","2335":"branch0_seg0","2336":"branch0_seg0","2337":"branch0_seg0","2338":"branch0_seg0","2339":"branch0_seg0","2340":"branch0_seg0","2341":"branch0_seg0","2342":"branch0_seg0","2343":"branch0_seg0","2344":"branch0_seg0","2345":"branch0_seg0","2346":"branch0_seg0","2347":"branch0_seg0","2348":"branch0_seg0","2349":"branch0_seg0","2350":"branch0_seg0","2351":"branch0_seg0","2352":"branch0_seg0","2353":"branch0_seg0","2354":"branch0_seg0","2355":"branch0_seg0","2356":"branch0_seg0","2357":"branch0_seg0","2358":"branch0_seg0","2359":"branch0_seg0","2360":"branch0_seg0","2361":"branch0_seg0","2362":"branch0_seg0","2363":"branch0_seg0","2364":"branch0_seg0","2365":"branch0_seg0","2366":"branch0_seg0","2367":"branch0_seg0","2368":"branch0_seg0","2369":"branch0_seg0","2370":"branch0_seg0","2371":"branch0_seg0","2372":"branch0_seg0","2373":"branch0_seg0","2374":"branch0_seg0","2375":"branch0_seg0","2376":"branch0_seg0","2377":"branch0_seg0","2378":"branch0_seg0","2379":"branch0_seg0","2380":"branch0_seg0","2381":"branch0_seg0","2382":"branch0_seg0","2383":"branch0_seg0","2384":"branch0_seg0","2385":"branch0_seg0","2386":"branch0_seg0","2387":"branch0_seg0","2388":"branch0_seg0","2389":"branch0_seg0","2390":"branch0_seg0","2391":"branch0_seg0","2392":"branch0_seg0","2393":"branch0_seg0","2394":"branch0_seg0","2395":"branch0_seg0","2396":"branch0_seg0","2397":"branch0_seg0","2398":"branch0_seg0","2399":"branch0_seg0","2400":"branch0_seg0","2401":"branch0_seg0","2402":"branch0_seg0","2403":"branch0_seg0","2404":"branch0_seg0","2405":"branch0_seg0","2406":"branch0_seg0","2407":"branch0_seg0","2408":"branch0_seg0","2409":"branch0_seg0","2410":"branch0_seg0","2411":"branch0_seg0","2412":"branch0_seg0","2413":"branch0_seg0","2414":"branch0_seg0","2415":"branch0_seg0","2416":"branch0_seg0","2417":"branch0_seg0","2418":"branch0_seg0","2419":"branch0_seg0","2420":"branch0_seg0","2421":"branch0_seg0","2422":"branch0_seg0","2423":"branch0_seg0","2424":"branch0_seg0","2425":"branch0_seg0","2426":"branch0_seg0","2427":"branch0_seg0","2428":"branch0_seg0","2429":"branch0_seg0","2430":"branch0_seg0","2431":"branch0_seg0","2432":"branch0_seg0","2433":"branch0_seg0","2434":"branch0_seg0","2435":"branch0_seg0","2436":"branch0_seg0","2437":"branch0_seg0","2438":"branch0_seg0","2439":"branch0_seg0","2440":"branch0_seg0","2441":"branch0_seg0","2442":"branch0_seg0","2443":"branch0_seg0","2444":"branch0_seg0","2445":"branch0_seg0","2446":"branch0_seg0","2447":"branch0_seg0","2448":"branch0_seg0","2449":"branch0_seg0","2450":"branch0_seg0","2451":"branch0_seg0","2452":"branch0_seg0","2453":"branch0_seg0","2454":"branch0_seg0","2455":"branch0_seg0","2456":"branch0_seg0","2457":"branch0_seg0","2458":"branch0_seg0","2459":"branch0_seg0","2460":"branch0_seg0","2461":"branch0_seg0","2462":"branch0_seg0","2463":"branch0_seg0","2464":"branch0_seg0","2465":"branch0_seg0","2466":"branch0_seg0","2467":"branch0_seg0","2468":"branch0_seg0","2469":"branch0_seg0","2470":"branch0_seg0","2471":"branch0_seg0","2472":"branch0_seg0","2473":"branch0_seg0","2474":"branch0_seg0","2475":"branch0_seg0","2476":"branch0_seg0","2477":"branch0_seg0","2478":"branch0_seg0","2479":"branch0_seg0","2480":"branch0_seg0","2481":"branch0_seg0","2482":"branch0_seg0","2483":"branch0_seg0","2484":"branch0_seg0","2485":"branch0_seg0","2486":"branch0_seg0","2487":"branch0_seg0","2488":"branch0_seg0","2489":"branch0_seg0","2490":"branch0_seg0","2491":"branch0_seg0","2492":"branch0_seg0","2493":"branch0_seg0","2494":"branch0_seg0","2495":"branch0_seg0","2496":"branch0_seg0","2497":"branch0_seg0","2498":"branch0_seg0","2499":"branch0_seg0","2500":"branch0_seg0","2501":"branch0_seg0","2502":"branch0_seg0","2503":"branch0_seg0","2504":"branch0_seg0","2505":"branch0_seg0","2506":"branch0_seg0","2507":"branch0_seg0","2508":"branch0_seg0","2509":"branch0_seg0","2510":"branch0_seg0","2511":"branch0_seg0","2512":"branch0_seg0","2513":"branch0_seg0","2514":"branch0_seg0","2515":"branch0_seg0","2516":"branch0_seg0","2517":"branch0_seg0","2518":"branch0_seg0","2519":"branch0_seg0","2520":"branch0_seg0","2521":"branch0_seg0","2522":"branch0_seg0","2523":"branch0_seg0","2524":"branch0_seg0","2525":"branch0_seg0","2526":"branch0_seg0","2527":"branch0_seg0","2528":"branch0_seg0","2529":"branch0_seg0","2530":"branch0_seg0","2531":"branch0_seg0","2532":"branch0_seg0","2533":"branch0_seg0","2534":"branch0_seg0","2535":"branch0_seg0","2536":"branch0_seg0","2537":"branch0_seg0","2538":"branch0_seg0","2539":"branch0_seg0","2540":"branch0_seg0","2541":"branch0_seg0","2542":"branch0_seg0","2543":"branch0_seg0","2544":"branch0_seg0","2545":"branch0_seg0","2546":"branch0_seg0","2547":"branch0_seg0","2548":"branch0_seg0","2549":"branch0_seg0","2550":"branch0_seg0","2551":"branch0_seg0","2552":"branch0_seg0","2553":"branch0_seg0","2554":"branch0_seg0","2555":"branch0_seg0","2556":"branch0_seg0","2557":"branch0_seg0","2558":"branch0_seg0","2559":"branch0_seg0","2560":"branch0_seg0","2561":"branch0_seg0","2562":"branch0_seg0","2563":"branch0_seg0","2564":"branch0_seg0","2565":"branch0_seg0","2566":"branch0_seg0","2567":"branch0_seg0","2568":"branch0_seg0","2569":"branch0_seg0","2570":"branch0_seg0","2571":"branch0_seg0","2572":"branch0_seg0","2573":"branch0_seg0","2574":"branch0_seg0","2575":"branch0_seg0","2576":"branch0_seg0","2577":"branch0_seg0","2578":"branch0_seg0","2579":"branch0_seg0","2580":"branch0_seg0","2581":"branch0_seg0","2582":"branch0_seg0","2583":"branch0_seg0","2584":"branch0_seg0","2585":"branch0_seg0","2586":"branch0_seg0","2587":"branch0_seg0","2588":"branch0_seg0","2589":"branch0_seg0","2590":"branch0_seg0","2591":"branch0_seg0","2592":"branch0_seg0","2593":"branch0_seg0","2594":"branch0_seg0","2595":"branch0_seg0","2596":"branch0_seg0","2597":"branch0_seg0","2598":"branch0_seg0","2599":"branch0_seg0","2600":"branch0_seg0","2601":"branch0_seg0","2602":"branch0_seg0","2603":"branch0_seg0","2604":"branch0_seg0","2605":"branch0_seg0","2606":"branch0_seg0","2607":"branch0_seg0","2608":"branch0_seg0","2609":"branch0_seg0","2610":"branch0_seg0","2611":"branch0_seg0","2612":"branch0_seg0","2613":"branch0_seg0","2614":"branch0_seg0","2615":"branch0_seg0","2616":"branch0_seg0","2617":"branch0_seg0","2618":"branch0_seg0","2619":"branch0_seg0","2620":"branch0_seg0","2621":"branch0_seg0","2622":"branch0_seg0","2623":"branch0_seg0","2624":"branch0_seg0","2625":"branch0_seg0","2626":"branch0_seg0","2627":"branch0_seg0","2628":"branch0_seg0","2629":"branch0_seg0","2630":"branch0_seg0","2631":"branch0_seg0","2632":"branch0_seg0","2633":"branch0_seg0","2634":"branch0_seg0","2635":"branch0_seg0","2636":"branch0_seg0","2637":"branch0_seg0","2638":"branch0_seg0","2639":"branch0_seg0","2640":"branch0_seg0","2641":"branch0_seg0","2642":"branch0_seg0","2643":"branch0_seg0","2644":"branch0_seg0","2645":"branch0_seg0","2646":"branch0_seg0","2647":"branch0_seg0","2648":"branch0_seg0","2649":"branch0_seg0","2650":"branch0_seg0","2651":"branch0_seg0","2652":"branch0_seg0","2653":"branch0_seg0","2654":"branch0_seg0","2655":"branch0_seg0","2656":"branch0_seg0","2657":"branch0_seg0","2658":"branch0_seg0","2659":"branch0_seg0","2660":"branch0_seg0","2661":"branch0_seg0","2662":"branch0_seg0","2663":"branch0_seg0","2664":"branch0_seg0","2665":"branch0_seg0","2666":"branch0_seg0","2667":"branch0_seg0","2668":"branch0_seg0","2669":"branch0_seg0","2670":"branch0_seg0","2671":"branch0_seg0","2672":"branch0_seg0","2673":"branch0_seg0","2674":"branch0_seg0","2675":"branch0_seg0","2676":"branch0_seg0","2677":"branch0_seg0","2678":"branch0_seg0","2679":"branch0_seg0","2680":"branch0_seg0","2681":"branch0_seg0","2682":"branch0_seg0","2683":"branch0_seg0","2684":"branch0_seg0","2685":"branch0_seg0","2686":"branch0_seg0","2687":"branch0_seg0","2688":"branch0_seg0","2689":"branch0_seg0","2690":"branch0_seg0","2691":"branch0_seg0","2692":"branch0_seg0","2693":"branch0_seg0","2694":"branch0_seg0","2695":"branch0_seg0","2696":"branch0_seg0","2697":"branch0_seg0","2698":"branch0_seg0","2699":"branch0_seg0","2700":"branch0_seg0","2701":"branch0_seg0","2702":"branch0_seg0","2703":"branch0_seg0","2704":"branch0_seg0","2705":"branch0_seg0","2706":"branch0_seg0","2707":"branch0_seg0","2708":"branch0_seg0","2709":"branch0_seg0","2710":"branch0_seg0","2711":"branch0_seg0","2712":"branch0_seg0","2713":"branch0_seg0","2714":"branch0_seg0","2715":"branch0_seg0","2716":"branch0_seg0","2717":"branch0_seg0","2718":"branch0_seg0","2719":"branch0_seg0","2720":"branch0_seg0","2721":"branch0_seg0","2722":"branch0_seg0","2723":"branch0_seg0","2724":"branch0_seg0","2725":"branch0_seg0","2726":"branch0_seg0","2727":"branch0_seg0","2728":"branch0_seg0","2729":"branch0_seg0","2730":"branch0_seg0","2731":"branch0_seg0","2732":"branch0_seg0","2733":"branch0_seg0","2734":"branch0_seg0","2735":"branch0_seg0","2736":"branch0_seg0","2737":"branch0_seg0","2738":"branch0_seg0","2739":"branch0_seg0","2740":"branch0_seg0","2741":"branch0_seg0","2742":"branch0_seg0","2743":"branch0_seg0","2744":"branch0_seg0","2745":"branch0_seg0","2746":"branch0_seg0","2747":"branch0_seg0","2748":"branch0_seg0","2749":"branch0_seg0","2750":"branch0_seg0","2751":"branch0_seg0","2752":"branch0_seg0","2753":"branch0_seg0","2754":"branch0_seg0","2755":"branch0_seg0","2756":"branch0_seg0","2757":"branch0_seg0","2758":"branch0_seg0","2759":"branch0_seg0","2760":"branch0_seg0","2761":"branch0_seg0","2762":"branch0_seg0","2763":"branch0_seg0","2764":"branch0_seg0","2765":"branch0_seg0","2766":"branch0_seg0","2767":"branch0_seg0","2768":"branch0_seg0","2769":"branch0_seg0","2770":"branch0_seg0","2771":"branch0_seg0","2772":"branch0_seg0","2773":"branch0_seg0","2774":"branch0_seg0","2775":"branch0_seg0","2776":"branch0_seg0","2777":"branch0_seg0","2778":"branch0_seg0","2779":"branch0_seg0","2780":"branch0_seg0","2781":"branch0_seg0","2782":"branch0_seg0","2783":"branch0_seg0","2784":"branch0_seg0","2785":"branch0_seg0","2786":"branch0_seg0","2787":"branch0_seg0","2788":"branch0_seg0","2789":"branch0_seg0","2790":"branch0_seg0","2791":"branch0_seg0","2792":"branch0_seg0","2793":"branch0_seg0","2794":"branch0_seg0","2795":"branch0_seg0","2796":"branch0_seg0","2797":"branch0_seg0","2798":"branch0_seg0","2799":"branch0_seg0","2800":"branch0_seg0","2801":"branch0_seg0","2802":"branch0_seg0","2803":"branch0_seg0","2804":"branch0_seg0","2805":"branch0_seg0","2806":"branch0_seg0","2807":"branch0_seg0","2808":"branch0_seg0","2809":"branch0_seg0","2810":"branch0_seg0","2811":"branch0_seg0","2812":"branch0_seg0","2813":"branch0_seg0","2814":"branch0_seg0","2815":"branch0_seg0","2816":"branch0_seg0","2817":"branch0_seg0","2818":"branch0_seg0","2819":"branch0_seg0","2820":"branch0_seg0","2821":"branch0_seg0","2822":"branch0_seg0","2823":"branch0_seg0","2824":"branch0_seg0","2825":"branch0_seg0","2826":"branch0_seg0","2827":"branch0_seg0","2828":"branch0_seg0","2829":"branch0_seg0","2830":"branch0_seg0","2831":"branch0_seg0","2832":"branch0_seg0","2833":"branch0_seg0","2834":"branch0_seg0","2835":"branch0_seg0","2836":"branch0_seg0","2837":"branch0_seg0","2838":"branch0_seg0","2839":"branch0_seg0","2840":"branch0_seg0","2841":"branch0_seg0","2842":"branch0_seg0","2843":"branch0_seg0","2844":"branch0_seg0","2845":"branch0_seg0","2846":"branch0_seg0","2847":"branch0_seg0","2848":"branch0_seg0","2849":"branch0_seg0","2850":"branch0_seg0","2851":"branch0_seg0","2852":"branch0_seg0","2853":"branch0_seg0","2854":"branch0_seg0","2855":"branch0_seg0","2856":"branch0_seg0","2857":"branch0_seg0","2858":"branch0_seg0","2859":"branch0_seg0","2860":"branch0_seg0","2861":"branch0_seg0","2862":"branch0_seg0","2863":"branch0_seg0","2864":"branch0_seg0","2865":"branch0_seg0","2866":"branch0_seg0","2867":"branch0_seg0","2868":"branch0_seg0","2869":"branch0_seg0","2870":"branch0_seg0","2871":"branch0_seg0","2872":"branch0_seg0","2873":"branch0_seg0","2874":"branch0_seg0","2875":"branch0_seg0","2876":"branch0_seg0","2877":"branch0_seg0","2878":"branch0_seg0","2879":"branch0_seg0","2880":"branch0_seg0","2881":"branch0_seg0","2882":"branch0_seg0","2883":"branch0_seg0","2884":"branch0_seg0","2885":"branch0_seg0","2886":"branch0_seg0","2887":"branch0_seg0","2888":"branch0_seg0","2889":"branch0_seg0","2890":"branch0_seg0","2891":"branch0_seg0","2892":"branch0_seg0","2893":"branch0_seg0","2894":"branch0_seg0","2895":"branch0_seg0","2896":"branch0_seg0","2897":"branch0_seg0","2898":"branch0_seg0","2899":"branch0_seg0","2900":"branch0_seg0","2901":"branch0_seg0","2902":"branch0_seg0","2903":"branch0_seg0","2904":"branch0_seg0","2905":"branch0_seg0","2906":"branch0_seg0","2907":"branch0_seg0","2908":"branch0_seg0","2909":"branch0_seg0","2910":"branch0_seg0","2911":"branch0_seg0","2912":"branch0_seg0","2913":"branch0_seg0","2914":"branch0_seg0","2915":"branch0_seg0","2916":"branch0_seg0","2917":"branch0_seg0","2918":"branch0_seg0","2919":"branch0_seg0","2920":"branch0_seg0","2921":"branch0_seg0","2922":"branch0_seg0","2923":"branch0_seg0","2924":"branch0_seg0","2925":"branch0_seg0","2926":"branch0_seg0","2927":"branch0_seg0","2928":"branch0_seg0","2929":"branch0_seg0","2930":"branch0_seg0","2931":"branch0_seg0","2932":"branch0_seg0","2933":"branch0_seg0","2934":"branch0_seg0","2935":"branch0_seg0","2936":"branch0_seg0","2937":"branch0_seg0","2938":"branch0_seg0","2939":"branch0_seg0","2940":"branch0_seg0","2941":"branch0_seg0","2942":"branch0_seg0","2943":"branch0_seg0","2944":"branch0_seg0","2945":"branch0_seg0","2946":"branch0_seg0","2947":"branch0_seg0","2948":"branch0_seg0","2949":"branch0_seg0","2950":"branch0_seg0","2951":"branch0_seg0","2952":"branch0_seg0","2953":"branch0_seg0","2954":"branch0_seg0","2955":"branch0_seg0","2956":"branch0_seg0","2957":"branch0_seg0","2958":"branch0_seg0","2959":"branch0_seg0","2960":"branch0_seg0","2961":"branch0_seg0","2962":"branch0_seg0","2963":"branch0_seg0","2964":"branch0_seg0","2965":"branch0_seg0","2966":"branch0_seg0","2967":"branch0_seg0","2968":"branch0_seg0","2969":"branch0_seg0","2970":"branch0_seg0","2971":"branch0_seg0","2972":"branch0_seg0","2973":"branch0_seg0","2974":"branch0_seg0","2975":"branch0_seg0","2976":"branch0_seg0","2977":"branch0_seg0","2978":"branch0_seg0","2979":"branch0_seg0","2980":"branch0_seg0","2981":"branch0_seg0","2982":"branch0_seg0","2983":"branch0_seg0","2984":"branch0_seg0","2985":"branch0_seg0","2986":"branch0_seg0","2987":"branch0_seg0","2988":"branch0_seg0","2989":"branch0_seg0","2990":"branch0_seg0","2991":"branch0_seg0","2992":"branch0_seg0","2993":"branch0_seg0","2994":"branch0_seg0","2995":"branch0_seg0","2996":"branch0_seg0","2997":"branch0_seg0","2998":"branch0_seg0","2999":"branch0_seg0","3000":"branch0_seg0","3001":"branch0_seg0","3002":"branch0_seg0","3003":"branch0_seg0","3004":"branch0_seg0","3005":"branch0_seg0","3006":"branch0_seg0","3007":"branch0_seg0","3008":"branch0_seg0","3009":"branch0_seg0","3010":"branch0_seg0","3011":"branch0_seg0","3012":"branch0_seg0","3013":"branch0_seg0","3014":"branch0_seg0","3015":"branch0_seg0","3016":"branch0_seg0","3017":"branch0_seg0","3018":"branch0_seg0","3019":"branch0_seg0","3020":"branch0_seg0","3021":"branch0_seg0","3022":"branch0_seg0","3023":"branch0_seg0","3024":"branch0_seg0","3025":"branch0_seg0","3026":"branch0_seg0","3027":"branch0_seg0","3028":"branch0_seg0","3029":"branch0_seg0","3030":"branch0_seg0","3031":"branch0_seg0","3032":"branch0_seg0","3033":"branch0_seg0","3034":"branch0_seg0","3035":"branch0_seg0","3036":"branch0_seg0","3037":"branch0_seg0","3038":"branch0_seg0","3039":"branch0_seg0","3040":"branch0_seg0","3041":"branch0_seg0","3042":"branch0_seg0","3043":"branch0_seg0","3044":"branch0_seg0","3045":"branch0_seg0","3046":"branch0_seg0","3047":"branch0_seg0","3048":"branch0_seg0","3049":"branch0_seg0","3050":"branch0_seg0","3051":"branch0_seg0","3052":"branch0_seg0","3053":"branch0_seg0","3054":"branch0_seg0","3055":"branch0_seg0","3056":"branch0_seg0","3057":"branch0_seg0","3058":"branch0_seg0","3059":"branch0_seg0","3060":"branch0_seg0","3061":"branch0_seg0","3062":"branch0_seg0","3063":"branch0_seg0","3064":"branch0_seg0","3065":"branch0_seg0","3066":"branch0_seg0","3067":"branch0_seg0","3068":"branch0_seg0","3069":"branch0_seg0","3070":"branch0_seg0","3071":"branch0_seg0","3072":"branch0_seg0","3073":"branch0_seg0","3074":"branch0_seg0","3075":"branch0_seg0","3076":"branch0_seg0","3077":"branch0_seg0","3078":"branch0_seg0","3079":"branch0_seg0","3080":"branch0_seg0","3081":"branch0_seg0","3082":"branch0_seg0","3083":"branch0_seg0","3084":"branch0_seg0","3085":"branch0_seg0","3086":"branch0_seg0","3087":"branch0_seg0","3088":"branch0_seg0","3089":"branch0_seg0","3090":"branch0_seg0","3091":"branch0_seg0","3092":"branch0_seg0","3093":"branch0_seg0","3094":"branch0_seg0","3095":"branch0_seg0","3096":"branch0_seg0","3097":"branch0_seg0","3098":"branch0_seg0","3099":"branch0_seg0","3100":"branch0_seg0","3101":"branch0_seg0","3102":"branch0_seg0","3103":"branch0_seg0","3104":"branch0_seg0","3105":"branch0_seg0","3106":"branch0_seg0","3107":"branch0_seg0","3108":"branch0_seg0","3109":"branch0_seg0","3110":"branch0_seg0","3111":"branch0_seg0","3112":"branch0_seg0","3113":"branch0_seg0","3114":"branch0_seg0","3115":"branch0_seg0","3116":"branch0_seg0","3117":"branch0_seg0","3118":"branch0_seg0","3119":"branch0_seg0","3120":"branch0_seg0","3121":"branch0_seg0","3122":"branch0_seg0","3123":"branch0_seg0","3124":"branch0_seg0","3125":"branch0_seg0","3126":"branch0_seg0","3127":"branch0_seg0","3128":"branch0_seg0","3129":"branch0_seg0","3130":"branch0_seg0","3131":"branch0_seg0","3132":"branch0_seg0","3133":"branch0_seg0","3134":"branch0_seg0","3135":"branch0_seg0","3136":"branch0_seg0","3137":"branch0_seg0","3138":"branch0_seg0","3139":"branch0_seg0","3140":"branch0_seg0","3141":"branch0_seg0","3142":"branch0_seg0","3143":"branch0_seg0","3144":"branch0_seg0","3145":"branch0_seg0","3146":"branch0_seg0","3147":"branch0_seg0","3148":"branch0_seg0","3149":"branch0_seg0","3150":"branch0_seg0","3151":"branch0_seg0","3152":"branch0_seg0","3153":"branch0_seg0","3154":"branch0_seg0","3155":"branch0_seg0","3156":"branch0_seg0","3157":"branch0_seg0","3158":"branch0_seg0","3159":"branch0_seg0","3160":"branch0_seg0","3161":"branch0_seg0","3162":"branch0_seg0","3163":"branch0_seg0","3164":"branch0_seg0","3165":"branch0_seg0","3166":"branch0_seg0","3167":"branch0_seg0","3168":"branch0_seg0","3169":"branch0_seg0","3170":"branch0_seg0","3171":"branch0_seg0","3172":"branch0_seg0","3173":"branch0_seg0","3174":"branch0_seg0","3175":"branch0_seg0","3176":"branch0_seg0","3177":"branch0_seg0","3178":"branch0_seg0","3179":"branch0_seg0","3180":"branch0_seg0","3181":"branch0_seg0","3182":"branch0_seg0","3183":"branch0_seg0","3184":"branch0_seg0","3185":"branch0_seg0","3186":"branch0_seg0","3187":"branch0_seg0","3188":"branch0_seg0","3189":"branch0_seg0","3190":"branch0_seg0","3191":"branch0_seg0","3192":"branch0_seg0","3193":"branch0_seg0","3194":"branch0_seg0","3195":"branch0_seg0","3196":"branch0_seg0","3197":"branch0_seg0","3198":"branch0_seg0","3199":"branch0_seg0","3200":"branch0_seg0","3201":"branch0_seg0","3202":"branch0_seg0","3203":"branch0_seg0","3204":"branch0_seg0","3205":"branch0_seg0","3206":"branch0_seg0","3207":"branch0_seg0","3208":"branch0_seg0","3209":"branch0_seg0","3210":"branch0_seg0","3211":"branch0_seg0","3212":"branch0_seg0","3213":"branch0_seg0","3214":"branch0_seg0","3215":"branch0_seg0","3216":"branch0_seg0","3217":"branch0_seg0","3218":"branch0_seg0","3219":"branch0_seg0","3220":"branch0_seg0","3221":"branch0_seg0","3222":"branch0_seg0","3223":"branch0_seg0","3224":"branch0_seg0","3225":"branch0_seg0","3226":"branch0_seg0","3227":"branch0_seg0","3228":"branch0_seg0","3229":"branch0_seg0","3230":"branch0_seg0","3231":"branch0_seg0","3232":"branch0_seg0","3233":"branch0_seg0","3234":"branch0_seg0","3235":"branch0_seg0","3236":"branch0_seg0","3237":"branch0_seg0","3238":"branch0_seg0","3239":"branch0_seg0","3240":"branch0_seg0","3241":"branch0_seg0","3242":"branch0_seg0","3243":"branch0_seg0","3244":"branch0_seg0","3245":"branch0_seg0","3246":"branch0_seg0","3247":"branch0_seg0","3248":"branch0_seg0","3249":"branch0_seg0","3250":"branch0_seg0","3251":"branch0_seg0","3252":"branch0_seg0","3253":"branch0_seg0","3254":"branch0_seg0","3255":"branch0_seg0","3256":"branch0_seg0","3257":"branch0_seg0","3258":"branch0_seg0","3259":"branch0_seg0","3260":"branch0_seg0","3261":"branch0_seg0","3262":"branch0_seg0","3263":"branch0_seg0","3264":"branch0_seg0","3265":"branch0_seg0","3266":"branch0_seg0","3267":"branch0_seg0","3268":"branch0_seg0","3269":"branch0_seg0","3270":"branch0_seg0","3271":"branch0_seg0","3272":"branch0_seg0","3273":"branch0_seg0","3274":"branch0_seg0","3275":"branch0_seg0","3276":"branch0_seg0","3277":"branch0_seg0","3278":"branch0_seg0","3279":"branch0_seg0","3280":"branch0_seg0","3281":"branch0_seg0","3282":"branch0_seg0","3283":"branch0_seg0","3284":"branch0_seg0","3285":"branch0_seg0","3286":"branch0_seg0","3287":"branch0_seg0","3288":"branch0_seg0","3289":"branch0_seg0","3290":"branch0_seg0","3291":"branch0_seg0","3292":"branch0_seg0","3293":"branch0_seg0","3294":"branch0_seg0","3295":"branch0_seg0","3296":"branch0_seg0","3297":"branch0_seg0","3298":"branch0_seg0","3299":"branch0_seg0","3300":"branch0_seg0","3301":"branch0_seg0","3302":"branch0_seg0","3303":"branch0_seg0","3304":"branch0_seg0","3305":"branch0_seg0","3306":"branch0_seg0","3307":"branch0_seg0","3308":"branch0_seg0","3309":"branch0_seg0","3310":"branch0_seg0","3311":"branch0_seg0","3312":"branch0_seg0","3313":"branch0_seg0","3314":"branch0_seg0","3315":"branch0_seg0","3316":"branch0_seg0","3317":"branch0_seg0","3318":"branch0_seg0","3319":"branch0_seg0","3320":"branch0_seg0","3321":"branch0_seg0","3322":"branch0_seg0","3323":"branch0_seg0","3324":"branch0_seg0","3325":"branch0_seg0","3326":"branch0_seg0","3327":"branch0_seg0","3328":"branch0_seg0","3329":"branch0_seg0","3330":"branch0_seg0","3331":"branch0_seg0","3332":"branch0_seg0","3333":"branch0_seg0","3334":"branch0_seg0","3335":"branch0_seg0","3336":"branch0_seg0","3337":"branch0_seg0","3338":"branch0_seg0","3339":"branch0_seg0","3340":"branch0_seg0","3341":"branch0_seg0","3342":"branch0_seg0","3343":"branch0_seg0","3344":"branch0_seg0","3345":"branch0_seg0","3346":"branch0_seg0","3347":"branch0_seg0","3348":"branch0_seg0","3349":"branch0_seg0","3350":"branch0_seg0","3351":"branch0_seg0","3352":"branch0_seg0","3353":"branch0_seg0","3354":"branch0_seg0","3355":"branch0_seg0","3356":"branch0_seg0","3357":"branch0_seg0","3358":"branch0_seg0","3359":"branch0_seg0","3360":"branch0_seg0","3361":"branch0_seg0","3362":"branch0_seg0","3363":"branch0_seg0","3364":"branch0_seg0","3365":"branch0_seg0","3366":"branch0_seg0","3367":"branch0_seg0","3368":"branch0_seg0","3369":"branch0_seg0","3370":"branch0_seg0","3371":"branch0_seg0","3372":"branch0_seg0","3373":"branch0_seg0","3374":"branch0_seg0","3375":"branch0_seg0","3376":"branch0_seg0","3377":"branch0_seg0","3378":"branch0_seg0","3379":"branch0_seg0","3380":"branch0_seg0","3381":"branch0_seg0","3382":"branch0_seg0","3383":"branch0_seg0","3384":"branch0_seg0","3385":"branch0_seg0","3386":"branch0_seg0","3387":"branch0_seg0","3388":"branch0_seg0","3389":"branch0_seg0","3390":"branch0_seg0","3391":"branch0_seg0","3392":"branch0_seg0","3393":"branch0_seg0","3394":"branch0_seg0","3395":"branch0_seg0","3396":"branch0_seg0","3397":"branch0_seg0","3398":"branch0_seg0","3399":"branch0_seg0","3400":"branch0_seg0","3401":"branch0_seg0","3402":"branch0_seg0","3403":"branch0_seg0","3404":"branch0_seg0","3405":"branch0_seg0","3406":"branch0_seg0","3407":"branch0_seg0","3408":"branch0_seg0","3409":"branch0_seg0","3410":"branch0_seg0","3411":"branch0_seg0","3412":"branch0_seg0","3413":"branch0_seg0","3414":"branch0_seg0","3415":"branch0_seg0","3416":"branch0_seg0","3417":"branch0_seg0","3418":"branch0_seg0","3419":"branch0_seg0","3420":"branch0_seg0","3421":"branch0_seg0","3422":"branch0_seg0","3423":"branch0_seg0","3424":"branch0_seg0","3425":"branch0_seg0","3426":"branch0_seg0","3427":"branch0_seg0","3428":"branch0_seg0","3429":"branch0_seg0","3430":"branch0_seg0","3431":"branch0_seg0","3432":"branch0_seg0","3433":"branch0_seg0","3434":"branch0_seg0","3435":"branch0_seg0","3436":"branch0_seg0","3437":"branch0_seg0","3438":"branch0_seg0","3439":"branch0_seg0","3440":"branch0_seg0","3441":"branch0_seg0","3442":"branch0_seg0","3443":"branch0_seg0","3444":"branch0_seg0","3445":"branch0_seg0","3446":"branch0_seg0","3447":"branch0_seg0","3448":"branch0_seg0","3449":"branch0_seg0","3450":"branch0_seg0","3451":"branch0_seg0","3452":"branch0_seg0","3453":"branch0_seg0","3454":"branch0_seg0","3455":"branch0_seg0","3456":"branch0_seg0","3457":"branch0_seg0","3458":"branch0_seg0","3459":"branch0_seg0","3460":"branch0_seg0","3461":"branch0_seg0","3462":"branch0_seg0","3463":"branch0_seg0","3464":"branch0_seg0","3465":"branch0_seg0","3466":"branch0_seg0","3467":"branch0_seg0","3468":"branch0_seg0","3469":"branch0_seg0","3470":"branch0_seg0","3471":"branch0_seg0","3472":"branch0_seg0","3473":"branch0_seg0","3474":"branch0_seg0","3475":"branch0_seg0","3476":"branch0_seg0","3477":"branch0_seg0","3478":"branch0_seg0","3479":"branch0_seg0","3480":"branch0_seg0","3481":"branch0_seg0","3482":"branch0_seg0","3483":"branch0_seg0","3484":"branch0_seg0","3485":"branch0_seg0","3486":"branch0_seg0","3487":"branch0_seg0","3488":"branch0_seg0","3489":"branch0_seg0","3490":"branch0_seg0","3491":"branch0_seg0","3492":"branch0_seg0","3493":"branch0_seg0","3494":"branch0_seg0","3495":"branch0_seg0","3496":"branch0_seg0","3497":"branch0_seg0","3498":"branch0_seg0","3499":"branch0_seg0","3500":"branch0_seg0","3501":"branch0_seg0","3502":"branch0_seg0","3503":"branch0_seg0","3504":"branch0_seg0","3505":"branch0_seg0","3506":"branch0_seg0","3507":"branch0_seg0","3508":"branch0_seg0","3509":"branch0_seg0","3510":"branch0_seg0","3511":"branch0_seg0","3512":"branch0_seg0","3513":"branch0_seg0","3514":"branch0_seg0","3515":"branch0_seg0","3516":"branch0_seg0","3517":"branch0_seg0","3518":"branch0_seg0","3519":"branch0_seg0","3520":"branch0_seg0","3521":"branch0_seg0","3522":"branch0_seg0","3523":"branch0_seg0","3524":"branch0_seg0","3525":"branch0_seg0","3526":"branch0_seg0","3527":"branch0_seg0","3528":"branch0_seg0","3529":"branch0_seg0","3530":"branch0_seg0","3531":"branch0_seg0","3532":"branch0_seg0","3533":"branch0_seg0","3534":"branch0_seg0","3535":"branch0_seg0","3536":"branch0_seg0","3537":"branch0_seg0","3538":"branch0_seg0","3539":"branch0_seg0","3540":"branch0_seg0","3541":"branch0_seg0","3542":"branch0_seg0","3543":"branch0_seg0","3544":"branch0_seg0","3545":"branch0_seg0","3546":"branch0_seg0","3547":"branch0_seg0","3548":"branch0_seg0","3549":"branch0_seg0","3550":"branch0_seg0","3551":"branch0_seg0","3552":"branch0_seg0","3553":"branch0_seg0","3554":"branch0_seg0","3555":"branch0_seg0","3556":"branch0_seg0","3557":"branch0_seg0","3558":"branch0_seg0","3559":"branch0_seg0","3560":"branch0_seg0","3561":"branch0_seg0","3562":"branch0_seg0","3563":"branch0_seg0","3564":"branch0_seg0","3565":"branch0_seg0","3566":"branch0_seg0","3567":"branch0_seg0","3568":"branch0_seg0","3569":"branch0_seg0","3570":"branch0_seg0","3571":"branch0_seg0","3572":"branch0_seg0","3573":"branch0_seg0","3574":"branch0_seg0","3575":"branch0_seg0","3576":"branch0_seg0","3577":"branch0_seg0","3578":"branch0_seg0","3579":"branch0_seg0","3580":"branch0_seg0","3581":"branch0_seg0","3582":"branch0_seg0","3583":"branch0_seg0","3584":"branch0_seg0","3585":"branch0_seg0","3586":"branch0_seg0","3587":"branch0_seg0","3588":"branch0_seg0","3589":"branch0_seg0","3590":"branch0_seg0","3591":"branch0_seg0","3592":"branch0_seg0","3593":"branch0_seg0","3594":"branch0_seg0","3595":"branch0_seg0","3596":"branch0_seg0","3597":"branch0_seg0","3598":"branch0_seg0","3599":"branch0_seg0","3600":"branch0_seg0","3601":"branch0_seg0","3602":"branch0_seg0","3603":"branch0_seg0","3604":"branch0_seg0","3605":"branch0_seg0","3606":"branch0_seg0","3607":"branch0_seg0","3608":"branch0_seg0","3609":"branch0_seg0","3610":"branch0_seg0","3611":"branch0_seg0","3612":"branch0_seg0","3613":"branch0_seg0","3614":"branch0_seg0","3615":"branch0_seg0","3616":"branch0_seg0","3617":"branch0_seg0","3618":"branch0_seg0","3619":"branch0_seg0","3620":"branch0_seg0","3621":"branch0_seg0","3622":"branch0_seg0","3623":"branch0_seg0","3624":"branch0_seg0","3625":"branch0_seg0","3626":"branch0_seg0","3627":"branch0_seg0","3628":"branch0_seg0","3629":"branch0_seg0","3630":"branch0_seg0","3631":"branch0_seg0","3632":"branch0_seg0","3633":"branch0_seg0","3634":"branch0_seg0","3635":"branch0_seg0","3636":"branch0_seg0","3637":"branch0_seg0","3638":"branch0_seg0","3639":"branch0_seg0","3640":"branch0_seg0","3641":"branch0_seg0","3642":"branch0_seg0","3643":"branch0_seg0","3644":"branch0_seg0","3645":"branch0_seg0","3646":"branch0_seg0","3647":"branch0_seg0","3648":"branch0_seg0","3649":"branch0_seg0","3650":"branch0_seg0","3651":"branch0_seg0","3652":"branch0_seg0","3653":"branch0_seg0","3654":"branch0_seg0","3655":"branch0_seg0","3656":"branch0_seg0","3657":"branch0_seg0","3658":"branch0_seg0","3659":"branch0_seg0","3660":"branch0_seg0","3661":"branch0_seg0","3662":"branch0_seg0","3663":"branch0_seg0","3664":"branch0_seg0","3665":"branch0_seg0","3666":"branch0_seg0","3667":"branch0_seg0","3668":"branch0_seg0","3669":"branch0_seg0","3670":"branch0_seg0","3671":"branch0_seg0","3672":"branch0_seg0","3673":"branch0_seg0","3674":"branch0_seg0","3675":"branch0_seg0","3676":"branch0_seg0","3677":"branch0_seg0","3678":"branch0_seg0","3679":"branch0_seg0","3680":"branch0_seg0","3681":"branch0_seg0","3682":"branch0_seg0","3683":"branch0_seg0","3684":"branch0_seg0","3685":"branch0_seg0","3686":"branch0_seg0","3687":"branch0_seg0","3688":"branch0_seg0","3689":"branch0_seg0","3690":"branch0_seg0","3691":"branch0_seg0","3692":"branch0_seg0","3693":"branch0_seg0","3694":"branch0_seg0","3695":"branch0_seg0","3696":"branch0_seg0","3697":"branch0_seg0","3698":"branch0_seg0","3699":"branch0_seg0","3700":"branch0_seg0","3701":"branch0_seg0","3702":"branch0_seg0","3703":"branch0_seg0","3704":"branch0_seg0","3705":"branch0_seg0","3706":"branch0_seg0","3707":"branch0_seg0","3708":"branch0_seg0","3709":"branch0_seg0","3710":"branch0_seg0","3711":"branch0_seg0","3712":"branch0_seg0","3713":"branch0_seg0","3714":"branch0_seg0","3715":"branch0_seg0","3716":"branch0_seg0","3717":"branch0_seg0","3718":"branch0_seg0","3719":"branch0_seg0","3720":"branch0_seg0","3721":"branch0_seg0","3722":"branch0_seg0","3723":"branch0_seg0","3724":"branch0_seg0","3725":"branch0_seg0","3726":"branch0_seg0","3727":"branch0_seg0","3728":"branch0_seg0","3729":"branch0_seg0","3730":"branch0_seg0","3731":"branch0_seg0","3732":"branch0_seg0","3733":"branch0_seg0","3734":"branch0_seg0","3735":"branch0_seg0","3736":"branch0_seg0","3737":"branch0_seg0","3738":"branch0_seg0","3739":"branch0_seg0","3740":"branch0_seg0","3741":"branch0_seg0","3742":"branch0_seg0","3743":"branch0_seg0","3744":"branch0_seg0","3745":"branch0_seg0","3746":"branch0_seg0","3747":"branch0_seg0","3748":"branch0_seg0","3749":"branch0_seg0","3750":"branch0_seg0","3751":"branch0_seg0","3752":"branch0_seg0","3753":"branch0_seg0","3754":"branch0_seg0","3755":"branch0_seg0","3756":"branch0_seg0","3757":"branch0_seg0","3758":"branch0_seg0","3759":"branch0_seg0","3760":"branch0_seg0","3761":"branch0_seg0","3762":"branch0_seg0","3763":"branch0_seg0","3764":"branch0_seg0","3765":"branch0_seg0","3766":"branch0_seg0","3767":"branch0_seg0","3768":"branch0_seg0","3769":"branch0_seg0","3770":"branch0_seg0","3771":"branch0_seg0","3772":"branch0_seg0","3773":"branch0_seg0","3774":"branch0_seg0","3775":"branch0_seg0","3776":"branch0_seg0","3777":"branch0_seg0","3778":"branch0_seg0","3779":"branch0_seg0","3780":"branch0_seg0","3781":"branch0_seg0","3782":"branch0_seg0","3783":"branch0_seg0","3784":"branch0_seg0","3785":"branch0_seg0","3786":"branch0_seg0","3787":"branch0_seg0","3788":"branch0_seg0","3789":"branch0_seg0","3790":"branch0_seg0","3791":"branch0_seg0","3792":"branch0_seg0","3793":"branch0_seg0","3794":"branch0_seg0","3795":"branch0_seg0","3796":"branch0_seg0","3797":"branch0_seg0","3798":"branch0_seg0","3799":"branch0_seg0","3800":"branch0_seg0","3801":"branch0_seg0","3802":"branch0_seg0","3803":"branch0_seg0","3804":"branch0_seg0","3805":"branch0_seg0","3806":"branch0_seg0","3807":"branch0_seg0","3808":"branch0_seg0","3809":"branch0_seg0","3810":"branch0_seg0","3811":"branch0_seg0","3812":"branch0_seg0","3813":"branch0_seg0","3814":"branch0_seg0","3815":"branch0_seg0","3816":"branch0_seg0","3817":"branch0_seg0","3818":"branch0_seg0","3819":"branch0_seg0","3820":"branch0_seg0","3821":"branch0_seg0","3822":"branch0_seg0","3823":"branch0_seg0","3824":"branch0_seg0","3825":"branch0_seg0","3826":"branch0_seg0","3827":"branch0_seg0","3828":"branch0_seg0","3829":"branch0_seg0","3830":"branch0_seg0","3831":"branch0_seg0","3832":"branch0_seg0","3833":"branch0_seg0","3834":"branch0_seg0","3835":"branch0_seg0","3836":"branch0_seg0","3837":"branch0_seg0","3838":"branch0_seg0","3839":"branch0_seg0","3840":"branch0_seg0","3841":"branch0_seg0","3842":"branch0_seg0","3843":"branch0_seg0","3844":"branch0_seg0","3845":"branch0_seg0","3846":"branch0_seg0","3847":"branch0_seg0","3848":"branch0_seg0","3849":"branch0_seg0","3850":"branch0_seg0","3851":"branch0_seg0","3852":"branch0_seg0","3853":"branch0_seg0","3854":"branch0_seg0","3855":"branch0_seg0","3856":"branch0_seg0","3857":"branch0_seg0","3858":"branch0_seg0","3859":"branch0_seg0","3860":"branch0_seg0","3861":"branch0_seg0","3862":"branch0_seg0","3863":"branch0_seg0","3864":"branch0_seg0","3865":"branch0_seg0","3866":"branch0_seg0","3867":"branch0_seg0","3868":"branch0_seg0","3869":"branch0_seg0","3870":"branch0_seg0","3871":"branch0_seg0","3872":"branch0_seg0","3873":"branch0_seg0","3874":"branch0_seg0","3875":"branch0_seg0","3876":"branch0_seg0","3877":"branch0_seg0","3878":"branch0_seg0","3879":"branch0_seg0","3880":"branch0_seg0","3881":"branch0_seg0","3882":"branch0_seg0","3883":"branch0_seg0","3884":"branch0_seg0","3885":"branch0_seg0","3886":"branch0_seg0","3887":"branch0_seg0","3888":"branch0_seg0","3889":"branch0_seg0","3890":"branch0_seg0","3891":"branch0_seg0","3892":"branch0_seg0","3893":"branch0_seg0","3894":"branch0_seg0","3895":"branch0_seg0","3896":"branch0_seg0","3897":"branch0_seg0","3898":"branch0_seg0","3899":"branch0_seg0","3900":"branch0_seg0","3901":"branch0_seg0","3902":"branch0_seg0","3903":"branch0_seg0","3904":"branch0_seg0","3905":"branch0_seg0","3906":"branch0_seg0","3907":"branch0_seg0","3908":"branch0_seg0","3909":"branch0_seg0","3910":"branch0_seg0","3911":"branch0_seg0","3912":"branch0_seg0","3913":"branch0_seg0","3914":"branch0_seg0","3915":"branch0_seg0","3916":"branch0_seg0","3917":"branch0_seg0","3918":"branch0_seg0","3919":"branch0_seg0","3920":"branch0_seg0","3921":"branch0_seg0","3922":"branch0_seg0","3923":"branch0_seg0","3924":"branch0_seg0","3925":"branch0_seg0","3926":"branch0_seg0","3927":"branch0_seg0","3928":"branch0_seg0","3929":"branch0_seg0","3930":"branch0_seg0","3931":"branch0_seg0","3932":"branch0_seg0","3933":"branch0_seg0","3934":"branch0_seg0","3935":"branch0_seg0","3936":"branch0_seg0","3937":"branch0_seg0","3938":"branch0_seg0","3939":"branch0_seg0","3940":"branch0_seg0","3941":"branch0_seg0","3942":"branch0_seg0","3943":"branch0_seg0","3944":"branch0_seg0","3945":"branch0_seg0","3946":"branch0_seg0","3947":"branch0_seg0","3948":"branch0_seg0","3949":"branch0_seg0","3950":"branch0_seg0","3951":"branch0_seg0","3952":"branch0_seg0","3953":"branch0_seg0","3954":"branch0_seg0","3955":"branch0_seg0","3956":"branch0_seg0","3957":"branch0_seg0","3958":"branch0_seg0","3959":"branch0_seg0","3960":"branch0_seg0","3961":"branch0_seg0","3962":"branch0_seg0","3963":"branch0_seg0","3964":"branch0_seg0","3965":"branch0_seg0","3966":"branch0_seg0","3967":"branch0_seg0","3968":"branch0_seg0","3969":"branch0_seg0","3970":"branch0_seg0","3971":"branch0_seg0","3972":"branch0_seg0","3973":"branch0_seg0","3974":"branch0_seg0","3975":"branch0_seg0","3976":"branch0_seg0","3977":"branch0_seg0","3978":"branch0_seg0","3979":"branch0_seg0","3980":"branch0_seg0","3981":"branch0_seg0","3982":"branch0_seg0","3983":"branch0_seg0","3984":"branch0_seg0","3985":"branch0_seg0","3986":"branch0_seg0","3987":"branch0_seg0","3988":"branch0_seg0","3989":"branch0_seg0","3990":"branch0_seg0","3991":"branch0_seg0","3992":"branch0_seg0","3993":"branch0_seg0","3994":"branch0_seg0","3995":"branch0_seg0","3996":"branch0_seg0","3997":"branch0_seg0","3998":"branch0_seg0","3999":"branch0_seg0","4000":"branch0_seg0","4001":"branch0_seg0","4002":"branch0_seg0","4003":"branch0_seg0","4004":"branch0_seg0","4005":"branch0_seg0","4006":"branch0_seg0","4007":"branch0_seg0","4008":"branch0_seg0","4009":"branch0_seg0","4010":"branch0_seg0","4011":"branch0_seg0","4012":"branch0_seg0","4013":"branch0_seg0","4014":"branch0_seg0","4015":"branch0_seg0","4016":"branch0_seg0","4017":"branch0_seg0","4018":"branch0_seg0","4019":"branch0_seg0","4020":"branch0_seg0","4021":"branch0_seg0","4022":"branch0_seg0","4023":"branch0_seg0","4024":"branch0_seg0","4025":"branch0_seg0","4026":"branch0_seg0","4027":"branch0_seg0","4028":"branch0_seg0","4029":"branch0_seg0","4030":"branch0_seg0","4031":"branch0_seg0","4032":"branch0_seg0","4033":"branch0_seg0","4034":"branch0_seg0","4035":"branch0_seg0","4036":"branch0_seg0","4037":"branch0_seg0","4038":"branch0_seg0","4039":"branch0_seg0","4040":"branch0_seg0","4041":"branch0_seg0","4042":"branch0_seg0","4043":"branch0_seg0","4044":"branch0_seg0","4045":"branch0_seg0","4046":"branch0_seg0","4047":"branch0_seg0","4048":"branch0_seg0","4049":"branch0_seg0","4050":"branch0_seg0","4051":"branch0_seg0","4052":"branch0_seg0","4053":"branch0_seg0","4054":"branch0_seg0","4055":"branch0_seg0","4056":"branch0_seg0","4057":"branch0_seg0","4058":"branch0_seg0","4059":"branch0_seg0","4060":"branch0_seg0","4061":"branch0_seg0","4062":"branch0_seg0","4063":"branch0_seg0","4064":"branch0_seg0","4065":"branch0_seg0","4066":"branch0_seg0","4067":"branch0_seg0","4068":"branch0_seg0","4069":"branch0_seg0","4070":"branch0_seg0","4071":"branch0_seg0","4072":"branch0_seg0","4073":"branch0_seg0","4074":"branch0_seg0","4075":"branch0_seg0","4076":"branch0_seg0","4077":"branch0_seg0","4078":"branch0_seg0","4079":"branch0_seg0","4080":"branch0_seg0","4081":"branch0_seg0","4082":"branch0_seg0","4083":"branch0_seg0","4084":"branch0_seg0","4085":"branch0_seg0","4086":"branch0_seg0","4087":"branch0_seg0","4088":"branch0_seg0","4089":"branch0_seg0","4090":"branch0_seg0","4091":"branch0_seg0","4092":"branch0_seg0","4093":"branch0_seg0","4094":"branch0_seg0","4095":"branch0_seg0","4096":"branch0_seg0","4097":"branch0_seg0","4098":"branch0_seg0","4099":"branch0_seg0","4100":"branch0_seg0","4101":"branch0_seg0","4102":"branch0_seg0","4103":"branch0_seg0","4104":"branch0_seg0","4105":"branch0_seg0","4106":"branch0_seg0","4107":"branch0_seg0","4108":"branch0_seg0","4109":"branch0_seg0","4110":"branch0_seg0","4111":"branch0_seg0","4112":"branch0_seg0","4113":"branch0_seg0","4114":"branch0_seg0","4115":"branch0_seg0","4116":"branch0_seg0","4117":"branch0_seg0","4118":"branch0_seg0","4119":"branch0_seg0","4120":"branch0_seg0","4121":"branch0_seg0","4122":"branch0_seg0","4123":"branch0_seg0","4124":"branch0_seg0","4125":"branch0_seg0","4126":"branch0_seg0","4127":"branch0_seg0","4128":"branch0_seg0","4129":"branch0_seg0","4130":"branch0_seg0","4131":"branch0_seg0","4132":"branch0_seg0","4133":"branch0_seg0","4134":"branch0_seg0","4135":"branch0_seg0","4136":"branch0_seg0","4137":"branch0_seg0","4138":"branch0_seg0","4139":"branch0_seg0","4140":"branch0_seg0","4141":"branch0_seg0","4142":"branch0_seg0","4143":"branch0_seg0","4144":"branch0_seg0","4145":"branch0_seg0","4146":"branch0_seg0","4147":"branch0_seg0","4148":"branch0_seg0","4149":"branch0_seg0","4150":"branch0_seg0","4151":"branch0_seg0","4152":"branch0_seg0","4153":"branch0_seg0","4154":"branch0_seg0","4155":"branch0_seg0","4156":"branch0_seg0","4157":"branch0_seg0","4158":"branch0_seg0","4159":"branch0_seg0","4160":"branch0_seg0","4161":"branch0_seg0","4162":"branch0_seg0","4163":"branch0_seg0","4164":"branch0_seg0","4165":"branch0_seg0","4166":"branch0_seg0","4167":"branch0_seg0","4168":"branch0_seg0","4169":"branch0_seg0","4170":"branch0_seg0","4171":"branch0_seg0","4172":"branch0_seg0","4173":"branch0_seg0","4174":"branch0_seg0","4175":"branch0_seg0","4176":"branch0_seg0","4177":"branch0_seg0","4178":"branch0_seg0","4179":"branch0_seg0","4180":"branch0_seg0","4181":"branch0_seg0","4182":"branch0_seg0","4183":"branch0_seg0","4184":"branch0_seg0","4185":"branch0_seg0","4186":"branch0_seg0","4187":"branch0_seg0","4188":"branch0_seg0","4189":"branch0_seg0","4190":"branch0_seg0","4191":"branch0_seg0","4192":"branch0_seg0","4193":"branch0_seg0","4194":"branch0_seg0","4195":"branch0_seg0","4196":"branch0_seg0","4197":"branch0_seg0","4198":"branch0_seg0","4199":"branch0_seg0","4200":"branch0_seg0","4201":"branch0_seg0","4202":"branch0_seg0","4203":"branch0_seg0","4204":"branch0_seg0","4205":"branch0_seg0","4206":"branch0_seg0","4207":"branch0_seg0","4208":"branch0_seg0","4209":"branch0_seg0","4210":"branch0_seg0","4211":"branch0_seg0","4212":"branch0_seg0","4213":"branch0_seg0","4214":"branch0_seg0","4215":"branch0_seg0","4216":"branch0_seg0","4217":"branch0_seg0","4218":"branch0_seg0","4219":"branch0_seg0","4220":"branch0_seg0","4221":"branch0_seg0","4222":"branch0_seg0","4223":"branch0_seg0","4224":"branch0_seg0","4225":"branch0_seg0","4226":"branch0_seg0","4227":"branch0_seg0","4228":"branch0_seg0","4229":"branch0_seg0","4230":"branch0_seg0","4231":"branch0_seg0","4232":"branch0_seg0","4233":"branch0_seg0","4234":"branch0_seg0","4235":"branch0_seg0","4236":"branch0_seg0","4237":"branch0_seg0","4238":"branch0_seg0","4239":"branch0_seg0","4240":"branch0_seg0","4241":"branch0_seg0","4242":"branch0_seg0","4243":"branch0_seg0","4244":"branch0_seg0","4245":"branch0_seg0","4246":"branch0_seg0","4247":"branch0_seg0","4248":"branch0_seg0","4249":"branch0_seg0","4250":"branch0_seg0","4251":"branch0_seg0","4252":"branch0_seg0","4253":"branch0_seg0","4254":"branch0_seg0","4255":"branch0_seg0","4256":"branch0_seg0","4257":"branch0_seg0","4258":"branch0_seg0","4259":"branch0_seg0","4260":"branch0_seg0","4261":"branch0_seg0","4262":"branch0_seg0","4263":"branch0_seg0","4264":"branch0_seg0","4265":"branch0_seg0","4266":"branch0_seg0","4267":"branch0_seg0","4268":"branch0_seg0","4269":"branch0_seg0","4270":"branch0_seg0","4271":"branch0_seg0","4272":"branch0_seg0","4273":"branch0_seg0","4274":"branch0_seg0","4275":"branch0_seg0","4276":"branch0_seg0","4277":"branch0_seg0","4278":"branch0_seg0","4279":"branch0_seg0","4280":"branch0_seg0","4281":"branch0_seg0","4282":"branch0_seg0","4283":"branch0_seg0","4284":"branch0_seg0","4285":"branch0_seg0","4286":"branch0_seg0","4287":"branch0_seg0","4288":"branch0_seg0","4289":"branch0_seg0","4290":"branch0_seg0","4291":"branch0_seg0","4292":"branch0_seg0","4293":"branch0_seg0","4294":"branch0_seg0","4295":"branch0_seg0","4296":"branch0_seg0","4297":"branch0_seg0","4298":"branch0_seg0","4299":"branch0_seg0","4300":"branch0_seg0","4301":"branch0_seg0","4302":"branch0_seg0","4303":"branch0_seg0","4304":"branch0_seg0","4305":"branch0_seg0","4306":"branch0_seg0","4307":"branch0_seg0","4308":"branch0_seg0","4309":"branch0_seg0","4310":"branch0_seg0","4311":"branch0_seg0","4312":"branch0_seg0","4313":"branch0_seg0","4314":"branch0_seg0","4315":"branch0_seg0","4316":"branch0_seg0","4317":"branch0_seg0","4318":"branch0_seg0","4319":"branch0_seg0","4320":"branch0_seg0","4321":"branch0_seg0","4322":"branch0_seg0","4323":"branch0_seg0","4324":"branch0_seg0","4325":"branch0_seg0","4326":"branch0_seg0","4327":"branch0_seg0","4328":"branch0_seg0","4329":"branch0_seg0","4330":"branch0_seg0","4331":"branch0_seg0","4332":"branch0_seg0","4333":"branch0_seg0","4334":"branch0_seg0","4335":"branch0_seg0","4336":"branch0_seg0","4337":"branch0_seg0","4338":"branch0_seg0","4339":"branch0_seg0","4340":"branch0_seg0","4341":"branch0_seg0","4342":"branch0_seg0","4343":"branch0_seg0","4344":"branch0_seg0","4345":"branch0_seg0","4346":"branch0_seg0","4347":"branch0_seg0","4348":"branch0_seg0","4349":"branch0_seg0","4350":"branch0_seg0","4351":"branch0_seg0","4352":"branch0_seg0","4353":"branch0_seg0","4354":"branch0_seg0","4355":"branch0_seg0","4356":"branch0_seg0","4357":"branch0_seg0","4358":"branch0_seg0","4359":"branch0_seg0","4360":"branch0_seg0","4361":"branch0_seg0","4362":"branch0_seg0","4363":"branch0_seg0","4364":"branch0_seg0","4365":"branch0_seg0","4366":"branch0_seg0","4367":"branch0_seg0","4368":"branch0_seg0","4369":"branch0_seg0","4370":"branch0_seg0","4371":"branch0_seg0","4372":"branch0_seg0","4373":"branch0_seg0","4374":"branch0_seg0","4375":"branch0_seg0","4376":"branch0_seg0","4377":"branch0_seg0","4378":"branch0_seg0","4379":"branch0_seg0","4380":"branch0_seg0","4381":"branch0_seg0","4382":"branch0_seg0","4383":"branch0_seg0","4384":"branch0_seg0","4385":"branch0_seg0","4386":"branch0_seg0","4387":"branch0_seg0","4388":"branch0_seg0","4389":"branch0_seg0","4390":"branch0_seg0","4391":"branch0_seg0","4392":"branch0_seg0","4393":"branch0_seg0","4394":"branch0_seg0","4395":"branch0_seg0","4396":"branch0_seg0","4397":"branch0_seg0","4398":"branch0_seg0","4399":"branch0_seg0","4400":"branch0_seg0","4401":"branch0_seg0","4402":"branch0_seg0","4403":"branch0_seg0","4404":"branch0_seg0","4405":"branch0_seg0","4406":"branch0_seg0","4407":"branch0_seg0","4408":"branch0_seg0","4409":"branch0_seg0","4410":"branch0_seg0","4411":"branch0_seg0","4412":"branch0_seg0","4413":"branch0_seg0","4414":"branch0_seg0","4415":"branch0_seg0","4416":"branch0_seg0","4417":"branch0_seg0","4418":"branch0_seg0","4419":"branch0_seg0","4420":"branch0_seg0","4421":"branch0_seg0","4422":"branch0_seg0","4423":"branch0_seg0","4424":"branch0_seg0","4425":"branch0_seg0","4426":"branch0_seg0","4427":"branch0_seg0","4428":"branch0_seg0","4429":"branch0_seg0","4430":"branch0_seg0","4431":"branch0_seg0","4432":"branch0_seg0","4433":"branch0_seg0","4434":"branch0_seg0","4435":"branch0_seg0","4436":"branch0_seg0","4437":"branch0_seg0","4438":"branch0_seg0","4439":"branch0_seg0","4440":"branch0_seg0","4441":"branch0_seg0","4442":"branch0_seg0","4443":"branch0_seg0","4444":"branch0_seg0","4445":"branch0_seg0","4446":"branch0_seg0","4447":"branch0_seg0","4448":"branch0_seg0","4449":"branch0_seg0","4450":"branch0_seg0","4451":"branch0_seg0","4452":"branch0_seg0","4453":"branch0_seg0","4454":"branch0_seg0","4455":"branch0_seg0","4456":"branch0_seg0","4457":"branch0_seg0","4458":"branch0_seg0","4459":"branch0_seg0","4460":"branch0_seg0","4461":"branch0_seg0","4462":"branch0_seg0","4463":"branch0_seg0","4464":"branch0_seg0","4465":"branch0_seg0","4466":"branch0_seg0","4467":"branch0_seg0","4468":"branch0_seg0","4469":"branch0_seg0","4470":"branch0_seg0","4471":"branch0_seg0","4472":"branch0_seg0","4473":"branch0_seg0","4474":"branch0_seg0","4475":"branch0_seg0","4476":"branch0_seg0","4477":"branch0_seg0","4478":"branch0_seg0","4479":"branch0_seg0","4480":"branch0_seg0","4481":"branch0_seg0","4482":"branch0_seg0","4483":"branch0_seg0","4484":"branch0_seg0","4485":"branch0_seg0","4486":"branch0_seg0","4487":"branch0_seg0","4488":"branch0_seg0","4489":"branch0_seg0","4490":"branch0_seg0","4491":"branch0_seg0","4492":"branch0_seg0","4493":"branch0_seg0","4494":"branch0_seg0","4495":"branch0_seg0","4496":"branch0_seg0","4497":"branch0_seg0","4498":"branch0_seg0","4499":"branch0_seg0","4500":"branch0_seg0","4501":"branch0_seg0","4502":"branch0_seg0","4503":"branch0_seg0","4504":"branch0_seg0","4505":"branch0_seg0","4506":"branch0_seg0","4507":"branch0_seg0","4508":"branch0_seg0","4509":"branch0_seg0","4510":"branch0_seg0","4511":"branch0_seg0","4512":"branch0_seg0","4513":"branch0_seg0","4514":"branch0_seg0","4515":"branch0_seg0","4516":"branch0_seg0","4517":"branch0_seg0","4518":"branch0_seg0","4519":"branch0_seg0","4520":"branch0_seg0","4521":"branch0_seg0","4522":"branch0_seg0","4523":"branch0_seg0","4524":"branch0_seg0","4525":"branch0_seg0","4526":"branch0_seg0","4527":"branch0_seg0","4528":"branch0_seg0","4529":"branch0_seg0","4530":"branch0_seg0","4531":"branch0_seg0","4532":"branch0_seg0","4533":"branch0_seg0","4534":"branch0_seg0","4535":"branch0_seg0","4536":"branch0_seg0","4537":"branch0_seg0","4538":"branch0_seg0","4539":"branch0_seg0","4540":"branch0_seg0","4541":"branch0_seg0","4542":"branch0_seg0","4543":"branch0_seg0","4544":"branch0_seg0","4545":"branch0_seg0","4546":"branch0_seg0","4547":"branch0_seg0","4548":"branch0_seg0","4549":"branch0_seg0","4550":"branch0_seg0","4551":"branch0_seg0","4552":"branch0_seg0","4553":"branch0_seg0","4554":"branch0_seg0","4555":"branch0_seg0","4556":"branch0_seg0","4557":"branch0_seg0","4558":"branch0_seg0","4559":"branch0_seg0","4560":"branch0_seg0","4561":"branch0_seg0","4562":"branch0_seg0","4563":"branch0_seg0","4564":"branch0_seg0","4565":"branch0_seg0","4566":"branch0_seg0","4567":"branch0_seg0","4568":"branch0_seg0","4569":"branch0_seg0","4570":"branch0_seg0","4571":"branch0_seg0","4572":"branch0_seg0","4573":"branch0_seg0","4574":"branch0_seg0","4575":"branch0_seg0","4576":"branch0_seg0","4577":"branch0_seg0","4578":"branch0_seg0","4579":"branch0_seg0","4580":"branch0_seg0","4581":"branch0_seg0","4582":"branch0_seg0","4583":"branch0_seg0","4584":"branch0_seg0","4585":"branch0_seg0","4586":"branch0_seg0","4587":"branch0_seg0","4588":"branch0_seg0","4589":"branch0_seg0","4590":"branch0_seg0","4591":"branch0_seg0","4592":"branch0_seg0","4593":"branch0_seg0","4594":"branch0_seg0","4595":"branch0_seg0","4596":"branch0_seg0","4597":"branch0_seg0","4598":"branch0_seg0","4599":"branch0_seg0","4600":"branch0_seg0","4601":"branch0_seg0","4602":"branch0_seg0","4603":"branch0_seg0","4604":"branch0_seg0","4605":"branch0_seg0","4606":"branch0_seg0","4607":"branch0_seg0","4608":"branch0_seg0","4609":"branch0_seg0","4610":"branch0_seg0","4611":"branch0_seg0","4612":"branch0_seg0","4613":"branch0_seg0","4614":"branch0_seg0","4615":"branch0_seg0","4616":"branch0_seg0","4617":"branch0_seg0","4618":"branch0_seg0","4619":"branch0_seg0","4620":"branch0_seg0","4621":"branch0_seg0","4622":"branch0_seg0","4623":"branch0_seg0","4624":"branch0_seg0","4625":"branch0_seg0","4626":"branch0_seg0","4627":"branch0_seg0","4628":"branch0_seg0","4629":"branch0_seg0","4630":"branch0_seg0","4631":"branch0_seg0","4632":"branch0_seg0","4633":"branch0_seg0","4634":"branch0_seg0","4635":"branch0_seg0","4636":"branch0_seg0","4637":"branch0_seg0","4638":"branch0_seg0","4639":"branch0_seg0","4640":"branch0_seg0","4641":"branch0_seg0","4642":"branch0_seg0","4643":"branch0_seg0","4644":"branch0_seg0","4645":"branch0_seg0","4646":"branch0_seg0","4647":"branch0_seg0","4648":"branch0_seg0","4649":"branch0_seg0","4650":"branch0_seg0","4651":"branch0_seg0","4652":"branch0_seg0","4653":"branch0_seg0","4654":"branch0_seg0","4655":"branch0_seg0","4656":"branch0_seg0","4657":"branch0_seg0","4658":"branch0_seg0","4659":"branch0_seg0","4660":"branch0_seg0","4661":"branch0_seg0","4662":"branch0_seg0","4663":"branch0_seg0","4664":"branch0_seg0","4665":"branch0_seg0","4666":"branch0_seg0","4667":"branch0_seg0","4668":"branch0_seg0","4669":"branch0_seg0","4670":"branch0_seg0","4671":"branch0_seg0","4672":"branch0_seg0","4673":"branch0_seg0","4674":"branch0_seg0","4675":"branch0_seg0","4676":"branch0_seg0","4677":"branch0_seg0","4678":"branch0_seg0","4679":"branch0_seg0","4680":"branch0_seg0","4681":"branch0_seg0","4682":"branch0_seg0","4683":"branch0_seg0","4684":"branch0_seg0","4685":"branch0_seg0","4686":"branch0_seg0","4687":"branch0_seg0","4688":"branch0_seg0","4689":"branch0_seg0","4690":"branch0_seg0","4691":"branch0_seg0","4692":"branch0_seg0","4693":"branch0_seg0","4694":"branch0_seg0","4695":"branch0_seg0","4696":"branch0_seg0","4697":"branch0_seg0","4698":"branch0_seg0","4699":"branch0_seg0","4700":"branch0_seg0","4701":"branch0_seg0","4702":"branch0_seg0","4703":"branch0_seg0","4704":"branch0_seg0","4705":"branch0_seg0","4706":"branch0_seg0","4707":"branch0_seg0","4708":"branch0_seg0","4709":"branch0_seg0","4710":"branch0_seg0","4711":"branch0_seg0","4712":"branch0_seg0","4713":"branch0_seg0","4714":"branch0_seg0","4715":"branch0_seg0","4716":"branch0_seg0","4717":"branch0_seg0","4718":"branch0_seg0","4719":"branch0_seg0","4720":"branch0_seg0","4721":"branch0_seg0","4722":"branch0_seg0","4723":"branch0_seg0","4724":"branch0_seg0","4725":"branch0_seg0","4726":"branch0_seg0","4727":"branch0_seg0","4728":"branch0_seg0","4729":"branch0_seg0","4730":"branch0_seg0","4731":"branch0_seg0","4732":"branch0_seg0","4733":"branch0_seg0","4734":"branch0_seg0","4735":"branch0_seg0","4736":"branch0_seg0","4737":"branch0_seg0","4738":"branch0_seg0","4739":"branch0_seg0","4740":"branch0_seg0","4741":"branch0_seg0","4742":"branch0_seg0","4743":"branch0_seg0","4744":"branch0_seg0","4745":"branch0_seg0","4746":"branch0_seg0","4747":"branch0_seg0","4748":"branch0_seg0","4749":"branch0_seg0","4750":"branch0_seg0","4751":"branch0_seg0","4752":"branch0_seg0","4753":"branch0_seg0","4754":"branch0_seg0","4755":"branch0_seg0","4756":"branch0_seg0","4757":"branch0_seg0","4758":"branch0_seg0","4759":"branch0_seg0","4760":"branch0_seg0","4761":"branch0_seg0","4762":"branch0_seg0","4763":"branch0_seg0","4764":"branch0_seg0","4765":"branch0_seg0","4766":"branch0_seg0","4767":"branch0_seg0","4768":"branch0_seg0","4769":"branch0_seg0","4770":"branch0_seg0","4771":"branch0_seg0","4772":"branch0_seg0","4773":"branch0_seg0","4774":"branch0_seg0","4775":"branch0_seg0","4776":"branch0_seg0","4777":"branch0_seg0","4778":"branch0_seg0","4779":"branch0_seg0","4780":"branch0_seg0","4781":"branch0_seg0","4782":"branch0_seg0","4783":"branch0_seg0","4784":"branch0_seg0","4785":"branch0_seg0","4786":"branch0_seg0","4787":"branch0_seg0","4788":"branch0_seg0","4789":"branch0_seg0","4790":"branch0_seg0","4791":"branch0_seg0","4792":"branch0_seg0","4793":"branch0_seg0","4794":"branch0_seg0","4795":"branch0_seg0","4796":"branch0_seg0","4797":"branch0_seg0","4798":"branch0_seg0","4799":"branch0_seg0","4800":"branch0_seg0","4801":"branch0_seg0","4802":"branch0_seg0","4803":"branch0_seg0","4804":"branch0_seg0","4805":"branch0_seg0","4806":"branch0_seg0","4807":"branch0_seg0","4808":"branch0_seg0","4809":"branch0_seg0","4810":"branch0_seg0","4811":"branch0_seg0","4812":"branch0_seg0","4813":"branch0_seg0","4814":"branch0_seg0","4815":"branch0_seg0","4816":"branch0_seg0","4817":"branch0_seg0","4818":"branch0_seg0","4819":"branch0_seg0","4820":"branch0_seg0","4821":"branch0_seg0","4822":"branch0_seg0","4823":"branch0_seg0","4824":"branch0_seg0","4825":"branch0_seg0","4826":"branch0_seg0","4827":"branch0_seg0","4828":"branch0_seg0","4829":"branch0_seg0","4830":"branch0_seg0","4831":"branch0_seg0","4832":"branch0_seg0","4833":"branch0_seg0","4834":"branch0_seg0","4835":"branch0_seg0","4836":"branch0_seg0","4837":"branch0_seg0","4838":"branch0_seg0","4839":"branch0_seg0","4840":"branch0_seg0","4841":"branch0_seg0","4842":"branch0_seg0","4843":"branch0_seg0","4844":"branch0_seg0","4845":"branch0_seg0","4846":"branch0_seg0","4847":"branch0_seg0","4848":"branch0_seg0","4849":"branch0_seg0","4850":"branch0_seg0","4851":"branch0_seg0","4852":"branch0_seg0","4853":"branch0_seg0","4854":"branch0_seg0","4855":"branch0_seg0","4856":"branch0_seg0","4857":"branch0_seg0","4858":"branch0_seg0","4859":"branch0_seg0","4860":"branch0_seg0","4861":"branch0_seg0","4862":"branch0_seg0","4863":"branch0_seg0","4864":"branch0_seg0","4865":"branch0_seg0","4866":"branch0_seg0","4867":"branch0_seg0","4868":"branch0_seg0","4869":"branch0_seg0","4870":"branch0_seg0","4871":"branch0_seg0","4872":"branch0_seg0","4873":"branch0_seg0","4874":"branch0_seg0","4875":"branch0_seg0","4876":"branch0_seg0","4877":"branch0_seg0","4878":"branch0_seg0","4879":"branch0_seg0","4880":"branch0_seg0","4881":"branch0_seg0","4882":"branch0_seg0","4883":"branch0_seg0","4884":"branch0_seg0","4885":"branch0_seg0","4886":"branch0_seg0","4887":"branch0_seg0","4888":"branch0_seg0","4889":"branch0_seg0","4890":"branch0_seg0","4891":"branch0_seg0","4892":"branch0_seg0","4893":"branch0_seg0","4894":"branch0_seg0","4895":"branch0_seg0","4896":"branch0_seg0","4897":"branch0_seg0","4898":"branch0_seg0","4899":"branch0_seg0","4900":"branch0_seg0","4901":"branch0_seg0","4902":"branch0_seg0","4903":"branch0_seg0","4904":"branch0_seg0","4905":"branch0_seg0","4906":"branch0_seg0","4907":"branch0_seg0","4908":"branch0_seg0","4909":"branch0_seg0","4910":"branch0_seg0","4911":"branch0_seg0","4912":"branch0_seg0","4913":"branch0_seg0","4914":"branch0_seg0","4915":"branch0_seg0","4916":"branch0_seg0","4917":"branch0_seg0","4918":"branch0_seg0","4919":"branch0_seg0","4920":"branch0_seg0","4921":"branch0_seg0","4922":"branch0_seg0","4923":"branch0_seg0","4924":"branch0_seg0","4925":"branch0_seg0","4926":"branch0_seg0","4927":"branch0_seg0","4928":"branch0_seg0","4929":"branch0_seg0","4930":"branch0_seg0","4931":"branch0_seg0","4932":"branch0_seg0","4933":"branch0_seg0","4934":"branch0_seg0","4935":"branch0_seg0","4936":"branch0_seg0","4937":"branch0_seg0","4938":"branch0_seg0","4939":"branch0_seg0","4940":"branch0_seg0","4941":"branch0_seg0","4942":"branch0_seg0","4943":"branch0_seg0","4944":"branch0_seg0","4945":"branch0_seg0","4946":"branch0_seg0","4947":"branch0_seg0","4948":"branch0_seg0","4949":"branch0_seg0","4950":"branch0_seg0","4951":"branch0_seg0","4952":"branch0_seg0","4953":"branch0_seg0","4954":"branch0_seg0","4955":"branch0_seg0","4956":"branch0_seg0","4957":"branch0_seg0","4958":"branch0_seg0","4959":"branch0_seg0","4960":"branch0_seg0","4961":"branch0_seg0","4962":"branch0_seg0","4963":"branch0_seg0","4964":"branch0_seg0","4965":"branch0_seg0","4966":"branch0_seg0","4967":"branch0_seg0","4968":"branch0_seg0","4969":"branch0_seg0","4970":"branch0_seg0","4971":"branch0_seg0","4972":"branch0_seg0","4973":"branch0_seg0","4974":"branch0_seg0","4975":"branch0_seg0","4976":"branch0_seg0","4977":"branch0_seg0","4978":"branch0_seg0","4979":"branch0_seg0","4980":"branch0_seg0","4981":"branch0_seg0","4982":"branch0_seg0","4983":"branch0_seg0","4984":"branch0_seg0","4985":"branch0_seg0","4986":"branch0_seg0","4987":"branch0_seg0","4988":"branch0_seg0","4989":"branch0_seg0","4990":"branch0_seg0","4991":"branch0_seg0","4992":"branch0_seg0","4993":"branch0_seg0","4994":"branch0_seg0","4995":"branch0_seg0","4996":"branch0_seg0","4997":"branch0_seg0","4998":"branch0_seg0","4999":"branch0_seg0","5000":"branch0_seg0","5001":"branch0_seg0","5002":"branch0_seg0","5003":"branch0_seg0","5004":"branch0_seg0","5005":"branch0_seg0","5006":"branch0_seg0","5007":"branch0_seg0","5008":"branch0_seg0","5009":"branch0_seg0","5010":"branch0_seg0","5011":"branch0_seg0","5012":"branch0_seg0","5013":"branch0_seg0","5014":"branch0_seg0","5015":"branch0_seg0","5016":"branch0_seg0","5017":"branch0_seg0","5018":"branch0_seg0","5019":"branch0_seg0","5020":"branch0_seg0","5021":"branch0_seg0","5022":"branch0_seg0","5023":"branch0_seg0","5024":"branch0_seg0","5025":"branch0_seg0","5026":"branch0_seg0","5027":"branch0_seg0","5028":"branch0_seg0","5029":"branch0_seg0","5030":"branch0_seg0","5031":"branch0_seg0","5032":"branch0_seg0","5033":"branch0_seg0","5034":"branch0_seg0","5035":"branch0_seg0","5036":"branch0_seg0","5037":"branch0_seg0","5038":"branch0_seg0","5039":"branch0_seg0","5040":"branch0_seg0","5041":"branch0_seg0","5042":"branch0_seg0","5043":"branch0_seg0","5044":"branch0_seg0","5045":"branch0_seg0","5046":"branch0_seg0","5047":"branch0_seg0","5048":"branch0_seg0","5049":"branch0_seg0","5050":"branch0_seg0","5051":"branch0_seg0","5052":"branch0_seg0","5053":"branch0_seg0","5054":"branch0_seg0","5055":"branch0_seg0","5056":"branch0_seg0","5057":"branch0_seg0","5058":"branch0_seg0","5059":"branch0_seg0","5060":"branch0_seg0","5061":"branch0_seg0","5062":"branch0_seg0","5063":"branch0_seg0","5064":"branch0_seg0","5065":"branch0_seg0","5066":"branch0_seg0","5067":"branch0_seg0","5068":"branch0_seg0","5069":"branch0_seg0","5070":"branch0_seg0","5071":"branch0_seg0","5072":"branch0_seg0","5073":"branch0_seg0","5074":"branch0_seg0","5075":"branch0_seg0","5076":"branch0_seg0","5077":"branch0_seg0","5078":"branch0_seg0","5079":"branch0_seg0","5080":"branch0_seg0","5081":"branch0_seg0","5082":"branch0_seg0","5083":"branch0_seg0","5084":"branch0_seg0","5085":"branch0_seg0","5086":"branch0_seg0","5087":"branch0_seg0","5088":"branch0_seg0","5089":"branch0_seg0","5090":"branch0_seg0","5091":"branch0_seg0","5092":"branch0_seg0","5093":"branch0_seg0","5094":"branch0_seg0","5095":"branch0_seg0","5096":"branch0_seg0","5097":"branch0_seg0","5098":"branch0_seg0","5099":"branch0_seg0","5100":"branch0_seg0","5101":"branch0_seg0","5102":"branch0_seg0","5103":"branch0_seg0","5104":"branch0_seg0","5105":"branch0_seg0","5106":"branch0_seg0","5107":"branch0_seg0","5108":"branch0_seg0","5109":"branch0_seg0","5110":"branch0_seg0","5111":"branch0_seg0","5112":"branch0_seg0","5113":"branch0_seg0","5114":"branch0_seg0","5115":"branch0_seg0","5116":"branch0_seg0","5117":"branch0_seg0","5118":"branch0_seg0","5119":"branch0_seg0","5120":"branch0_seg0","5121":"branch0_seg0","5122":"branch0_seg0","5123":"branch0_seg0","5124":"branch0_seg0","5125":"branch0_seg0","5126":"branch0_seg0","5127":"branch0_seg0","5128":"branch0_seg0","5129":"branch0_seg0","5130":"branch0_seg0","5131":"branch0_seg0","5132":"branch0_seg0","5133":"branch0_seg0","5134":"branch0_seg0","5135":"branch0_seg0","5136":"branch0_seg0","5137":"branch0_seg0","5138":"branch0_seg0","5139":"branch0_seg0","5140":"branch0_seg0","5141":"branch0_seg0","5142":"branch0_seg0","5143":"branch0_seg0","5144":"branch0_seg0","5145":"branch0_seg0","5146":"branch0_seg0","5147":"branch0_seg0","5148":"branch0_seg0","5149":"branch0_seg0","5150":"branch0_seg0","5151":"branch0_seg0","5152":"branch0_seg0","5153":"branch0_seg0","5154":"branch0_seg0","5155":"branch0_seg0","5156":"branch0_seg0","5157":"branch0_seg0","5158":"branch0_seg0","5159":"branch0_seg0","5160":"branch0_seg0","5161":"branch0_seg0","5162":"branch0_seg0","5163":"branch0_seg0","5164":"branch0_seg0","5165":"branch0_seg0","5166":"branch0_seg0","5167":"branch0_seg0","5168":"branch0_seg0","5169":"branch0_seg0","5170":"branch0_seg0","5171":"branch0_seg0","5172":"branch0_seg0","5173":"branch0_seg0","5174":"branch0_seg0","5175":"branch0_seg0","5176":"branch0_seg0","5177":"branch0_seg0","5178":"branch0_seg0","5179":"branch0_seg0","5180":"branch0_seg0","5181":"branch0_seg0","5182":"branch0_seg0","5183":"branch0_seg0","5184":"branch0_seg0","5185":"branch0_seg0","5186":"branch0_seg0","5187":"branch0_seg0","5188":"branch0_seg0","5189":"branch0_seg0","5190":"branch0_seg0","5191":"branch0_seg0","5192":"branch0_seg0","5193":"branch0_seg0","5194":"branch0_seg0","5195":"branch0_seg0","5196":"branch0_seg0","5197":"branch0_seg0","5198":"branch0_seg0","5199":"branch0_seg0","5200":"branch0_seg0","5201":"branch0_seg0","5202":"branch0_seg0","5203":"branch0_seg0","5204":"branch0_seg0","5205":"branch0_seg0","5206":"branch0_seg0","5207":"branch0_seg0","5208":"branch0_seg0","5209":"branch0_seg0","5210":"branch0_seg0","5211":"branch0_seg0","5212":"branch0_seg0","5213":"branch0_seg0","5214":"branch0_seg0","5215":"branch0_seg0","5216":"branch0_seg0","5217":"branch0_seg0","5218":"branch0_seg0","5219":"branch0_seg0","5220":"branch0_seg0","5221":"branch0_seg0","5222":"branch0_seg0","5223":"branch0_seg0","5224":"branch0_seg0","5225":"branch0_seg0","5226":"branch0_seg0","5227":"branch0_seg0","5228":"branch0_seg0","5229":"branch0_seg0","5230":"branch0_seg0","5231":"branch0_seg0","5232":"branch0_seg0","5233":"branch0_seg0","5234":"branch0_seg0","5235":"branch0_seg0","5236":"branch0_seg0","5237":"branch0_seg0","5238":"branch0_seg0","5239":"branch0_seg0","5240":"branch0_seg0","5241":"branch0_seg0","5242":"branch0_seg0","5243":"branch0_seg0","5244":"branch0_seg0","5245":"branch0_seg0","5246":"branch0_seg0","5247":"branch0_seg0","5248":"branch0_seg0","5249":"branch0_seg0","5250":"branch0_seg0","5251":"branch0_seg0","5252":"branch0_seg0","5253":"branch0_seg0","5254":"branch0_seg0","5255":"branch0_seg0","5256":"branch0_seg0","5257":"branch0_seg0","5258":"branch0_seg0","5259":"branch0_seg0","5260":"branch0_seg0","5261":"branch0_seg0","5262":"branch0_seg0","5263":"branch0_seg0","5264":"branch0_seg0","5265":"branch0_seg0","5266":"branch0_seg0","5267":"branch0_seg0","5268":"branch0_seg0","5269":"branch0_seg0","5270":"branch0_seg0","5271":"branch0_seg0","5272":"branch0_seg0","5273":"branch0_seg0","5274":"branch0_seg0","5275":"branch0_seg0","5276":"branch0_seg0","5277":"branch0_seg0","5278":"branch0_seg0","5279":"branch0_seg0","5280":"branch0_seg0","5281":"branch0_seg0","5282":"branch0_seg0","5283":"branch0_seg0","5284":"branch0_seg0","5285":"branch0_seg0","5286":"branch0_seg0","5287":"branch0_seg0","5288":"branch0_seg0","5289":"branch0_seg0","5290":"branch0_seg0","5291":"branch0_seg0","5292":"branch0_seg0","5293":"branch0_seg0","5294":"branch0_seg0","5295":"branch0_seg0","5296":"branch0_seg0","5297":"branch0_seg0","5298":"branch0_seg0","5299":"branch0_seg0","5300":"branch0_seg0","5301":"branch0_seg0","5302":"branch0_seg0","5303":"branch0_seg0","5304":"branch0_seg0","5305":"branch0_seg0","5306":"branch0_seg0","5307":"branch0_seg0","5308":"branch0_seg0","5309":"branch0_seg0","5310":"branch0_seg0","5311":"branch0_seg0","5312":"branch0_seg0","5313":"branch0_seg0","5314":"branch0_seg0","5315":"branch0_seg0","5316":"branch0_seg0","5317":"branch0_seg0","5318":"branch0_seg0","5319":"branch0_seg0","5320":"branch0_seg0","5321":"branch0_seg0","5322":"branch0_seg0","5323":"branch0_seg0","5324":"branch0_seg0","5325":"branch0_seg0","5326":"branch0_seg0","5327":"branch0_seg0","5328":"branch0_seg0","5329":"branch0_seg0","5330":"branch0_seg0","5331":"branch0_seg0","5332":"branch0_seg0","5333":"branch0_seg0","5334":"branch0_seg0","5335":"branch0_seg0","5336":"branch0_seg0","5337":"branch0_seg0","5338":"branch0_seg0","5339":"branch0_seg0","5340":"branch0_seg0","5341":"branch0_seg0","5342":"branch0_seg0","5343":"branch0_seg0","5344":"branch0_seg0","5345":"branch0_seg0","5346":"branch0_seg0","5347":"branch0_seg0","5348":"branch0_seg0","5349":"branch0_seg0","5350":"branch0_seg0","5351":"branch0_seg0","5352":"branch0_seg0","5353":"branch0_seg0","5354":"branch0_seg0","5355":"branch0_seg0","5356":"branch0_seg0","5357":"branch0_seg0","5358":"branch0_seg0","5359":"branch0_seg0","5360":"branch0_seg0","5361":"branch0_seg0","5362":"branch0_seg0","5363":"branch0_seg0","5364":"branch0_seg0","5365":"branch0_seg0","5366":"branch0_seg0","5367":"branch0_seg0","5368":"branch0_seg0","5369":"branch0_seg0","5370":"branch0_seg0","5371":"branch0_seg0","5372":"branch0_seg0","5373":"branch0_seg0","5374":"branch0_seg0","5375":"branch0_seg0","5376":"branch0_seg0","5377":"branch0_seg0","5378":"branch0_seg0","5379":"branch0_seg0","5380":"branch0_seg0","5381":"branch0_seg0","5382":"branch0_seg0","5383":"branch0_seg0","5384":"branch0_seg0","5385":"branch0_seg0","5386":"branch0_seg0","5387":"branch0_seg0","5388":"branch0_seg0","5389":"branch0_seg0","5390":"branch0_seg0","5391":"branch0_seg0","5392":"branch0_seg0","5393":"branch0_seg0","5394":"branch0_seg0","5395":"branch0_seg0","5396":"branch0_seg0","5397":"branch0_seg0","5398":"branch0_seg0","5399":"branch0_seg0","5400":"branch0_seg0","5401":"branch0_seg0","5402":"branch0_seg0","5403":"branch0_seg0","5404":"branch0_seg0","5405":"branch0_seg0","5406":"branch0_seg0","5407":"branch0_seg0","5408":"branch0_seg0","5409":"branch0_seg0","5410":"branch0_seg0","5411":"branch0_seg0","5412":"branch0_seg0","5413":"branch0_seg0","5414":"branch0_seg0","5415":"branch0_seg0","5416":"branch0_seg0","5417":"branch0_seg0","5418":"branch0_seg0","5419":"branch0_seg0","5420":"branch0_seg0","5421":"branch0_seg0","5422":"branch0_seg0","5423":"branch0_seg0","5424":"branch0_seg0","5425":"branch0_seg0","5426":"branch0_seg0","5427":"branch0_seg0","5428":"branch0_seg0","5429":"branch0_seg0","5430":"branch0_seg0","5431":"branch0_seg0","5432":"branch0_seg0","5433":"branch0_seg0","5434":"branch0_seg0","5435":"branch0_seg0","5436":"branch0_seg0","5437":"branch0_seg0","5438":"branch0_seg0","5439":"branch0_seg0","5440":"branch0_seg0","5441":"branch0_seg0","5442":"branch0_seg0","5443":"branch0_seg0","5444":"branch0_seg0","5445":"branch0_seg0","5446":"branch0_seg0","5447":"branch0_seg0","5448":"branch0_seg0","5449":"branch0_seg0","5450":"branch0_seg0","5451":"branch0_seg0","5452":"branch0_seg0","5453":"branch0_seg0","5454":"branch0_seg0","5455":"branch0_seg0","5456":"branch0_seg0","5457":"branch0_seg0","5458":"branch0_seg0","5459":"branch0_seg0","5460":"branch0_seg0","5461":"branch0_seg0","5462":"branch0_seg0","5463":"branch0_seg0","5464":"branch0_seg0","5465":"branch0_seg0","5466":"branch0_seg0","5467":"branch0_seg0","5468":"branch0_seg0","5469":"branch0_seg0","5470":"branch0_seg0","5471":"branch0_seg0","5472":"branch0_seg0","5473":"branch0_seg0","5474":"branch0_seg0","5475":"branch0_seg0","5476":"branch0_seg0","5477":"branch0_seg0","5478":"branch0_seg0","5479":"branch0_seg0","5480":"branch0_seg0","5481":"branch0_seg0","5482":"branch0_seg0","5483":"branch0_seg0","5484":"branch0_seg0","5485":"branch0_seg0","5486":"branch0_seg0","5487":"branch0_seg0","5488":"branch0_seg0","5489":"branch0_seg0","5490":"branch0_seg0","5491":"branch0_seg0","5492":"branch0_seg0","5493":"branch0_seg0","5494":"branch0_seg0","5495":"branch0_seg0","5496":"branch0_seg0","5497":"branch0_seg0","5498":"branch0_seg0","5499":"branch0_seg0","5500":"branch0_seg0","5501":"branch0_seg0","5502":"branch0_seg0","5503":"branch0_seg0","5504":"branch0_seg0","5505":"branch0_seg0","5506":"branch0_seg0","5507":"branch0_seg0","5508":"branch0_seg0","5509":"branch0_seg0","5510":"branch0_seg0","5511":"branch0_seg0","5512":"branch0_seg0","5513":"branch0_seg0","5514":"branch0_seg0","5515":"branch0_seg0","5516":"branch0_seg0","5517":"branch0_seg0","5518":"branch0_seg0","5519":"branch0_seg0","5520":"branch0_seg0","5521":"branch0_seg0","5522":"branch0_seg0","5523":"branch0_seg0","5524":"branch0_seg0","5525":"branch0_seg0","5526":"branch0_seg0","5527":"branch0_seg0","5528":"branch0_seg0","5529":"branch0_seg0","5530":"branch0_seg0","5531":"branch0_seg0","5532":"branch0_seg0","5533":"branch0_seg0","5534":"branch0_seg0","5535":"branch0_seg0","5536":"branch0_seg0","5537":"branch0_seg0","5538":"branch0_seg0","5539":"branch0_seg0","5540":"branch0_seg0","5541":"branch0_seg0","5542":"branch0_seg0","5543":"branch0_seg0","5544":"branch0_seg0","5545":"branch0_seg0","5546":"branch0_seg0","5547":"branch0_seg0","5548":"branch0_seg0","5549":"branch0_seg0","5550":"branch0_seg0","5551":"branch0_seg0","5552":"branch0_seg0","5553":"branch0_seg0","5554":"branch0_seg0","5555":"branch0_seg0","5556":"branch0_seg0","5557":"branch0_seg0","5558":"branch0_seg0","5559":"branch0_seg0","5560":"branch0_seg0","5561":"branch0_seg0","5562":"branch0_seg0","5563":"branch0_seg0","5564":"branch0_seg0","5565":"branch0_seg0","5566":"branch0_seg0","5567":"branch0_seg0","5568":"branch0_seg0","5569":"branch0_seg0","5570":"branch0_seg0","5571":"branch0_seg0","5572":"branch0_seg0","5573":"branch0_seg0","5574":"branch0_seg0","5575":"branch0_seg0","5576":"branch0_seg0","5577":"branch0_seg0","5578":"branch0_seg0","5579":"branch0_seg0","5580":"branch0_seg0","5581":"branch0_seg0","5582":"branch0_seg0","5583":"branch0_seg0","5584":"branch0_seg0","5585":"branch0_seg0","5586":"branch0_seg0","5587":"branch0_seg0","5588":"branch0_seg0","5589":"branch0_seg0","5590":"branch0_seg0","5591":"branch0_seg0","5592":"branch0_seg0","5593":"branch0_seg0","5594":"branch0_seg0","5595":"branch0_seg0","5596":"branch0_seg0","5597":"branch0_seg0","5598":"branch0_seg0","5599":"branch0_seg0","5600":"branch0_seg0","5601":"branch0_seg0","5602":"branch0_seg0","5603":"branch0_seg0","5604":"branch0_seg0","5605":"branch0_seg0","5606":"branch0_seg0","5607":"branch0_seg0","5608":"branch0_seg0","5609":"branch0_seg0","5610":"branch0_seg0","5611":"branch0_seg0","5612":"branch0_seg0","5613":"branch0_seg0","5614":"branch0_seg0","5615":"branch0_seg0","5616":"branch0_seg0","5617":"branch0_seg0","5618":"branch0_seg0","5619":"branch0_seg0","5620":"branch0_seg0","5621":"branch0_seg0","5622":"branch0_seg0","5623":"branch0_seg0","5624":"branch0_seg0","5625":"branch0_seg0","5626":"branch0_seg0","5627":"branch0_seg0","5628":"branch0_seg0","5629":"branch0_seg0","5630":"branch0_seg0","5631":"branch0_seg0","5632":"branch0_seg0","5633":"branch0_seg0","5634":"branch0_seg0","5635":"branch0_seg0","5636":"branch0_seg0","5637":"branch0_seg0","5638":"branch0_seg0","5639":"branch0_seg0","5640":"branch0_seg0","5641":"branch0_seg0","5642":"branch0_seg0","5643":"branch0_seg0","5644":"branch0_seg0","5645":"branch0_seg0","5646":"branch0_seg0","5647":"branch0_seg0","5648":"branch0_seg0","5649":"branch0_seg0","5650":"branch0_seg0","5651":"branch0_seg0","5652":"branch0_seg0","5653":"branch0_seg0","5654":"branch0_seg0","5655":"branch0_seg0","5656":"branch0_seg0","5657":"branch0_seg0","5658":"branch0_seg0","5659":"branch0_seg0","5660":"branch0_seg0","5661":"branch0_seg0","5662":"branch0_seg0","5663":"branch0_seg0","5664":"branch0_seg0","5665":"branch0_seg0","5666":"branch0_seg0","5667":"branch0_seg0","5668":"branch0_seg0","5669":"branch0_seg0","5670":"branch0_seg0","5671":"branch0_seg0","5672":"branch0_seg0","5673":"branch0_seg0","5674":"branch0_seg0","5675":"branch0_seg0","5676":"branch0_seg0","5677":"branch0_seg0","5678":"branch0_seg0","5679":"branch0_seg0","5680":"branch0_seg0","5681":"branch0_seg0","5682":"branch0_seg0","5683":"branch0_seg0","5684":"branch0_seg0","5685":"branch0_seg0","5686":"branch0_seg0","5687":"branch0_seg0","5688":"branch0_seg0","5689":"branch0_seg0","5690":"branch0_seg0","5691":"branch0_seg0","5692":"branch0_seg0","5693":"branch0_seg0","5694":"branch0_seg0","5695":"branch0_seg0","5696":"branch0_seg0","5697":"branch0_seg0","5698":"branch0_seg0","5699":"branch0_seg0","5700":"branch0_seg0","5701":"branch0_seg0","5702":"branch0_seg0","5703":"branch0_seg0","5704":"branch0_seg0","5705":"branch0_seg0","5706":"branch0_seg0","5707":"branch0_seg0","5708":"branch0_seg0","5709":"branch0_seg0","5710":"branch0_seg0","5711":"branch0_seg0","5712":"branch0_seg0","5713":"branch0_seg0","5714":"branch0_seg0","5715":"branch0_seg0","5716":"branch0_seg0","5717":"branch0_seg0","5718":"branch0_seg0","5719":"branch0_seg0","5720":"branch0_seg0","5721":"branch0_seg0","5722":"branch0_seg0","5723":"branch0_seg0","5724":"branch0_seg0","5725":"branch0_seg0","5726":"branch0_seg0","5727":"branch0_seg0","5728":"branch0_seg0","5729":"branch0_seg0","5730":"branch0_seg0","5731":"branch0_seg0","5732":"branch0_seg0","5733":"branch0_seg0","5734":"branch0_seg0","5735":"branch0_seg0","5736":"branch0_seg0","5737":"branch0_seg0","5738":"branch0_seg0","5739":"branch0_seg0","5740":"branch0_seg0","5741":"branch0_seg0","5742":"branch0_seg0","5743":"branch0_seg0","5744":"branch0_seg0","5745":"branch0_seg0","5746":"branch0_seg0","5747":"branch0_seg0","5748":"branch0_seg0","5749":"branch0_seg0","5750":"branch0_seg0","5751":"branch0_seg0","5752":"branch0_seg0","5753":"branch0_seg0","5754":"branch0_seg0","5755":"branch0_seg0","5756":"branch0_seg0","5757":"branch0_seg0","5758":"branch0_seg0","5759":"branch0_seg0","5760":"branch0_seg0","5761":"branch0_seg0","5762":"branch0_seg0","5763":"branch0_seg0","5764":"branch0_seg0","5765":"branch0_seg0","5766":"branch0_seg0","5767":"branch0_seg0","5768":"branch0_seg0","5769":"branch0_seg0","5770":"branch0_seg0","5771":"branch0_seg0","5772":"branch0_seg0","5773":"branch0_seg0","5774":"branch0_seg0","5775":"branch0_seg0","5776":"branch0_seg0","5777":"branch0_seg0","5778":"branch0_seg0","5779":"branch0_seg0","5780":"branch0_seg0","5781":"branch0_seg0","5782":"branch0_seg0","5783":"branch0_seg0","5784":"branch0_seg0","5785":"branch0_seg0","5786":"branch0_seg0","5787":"branch0_seg0","5788":"branch0_seg0","5789":"branch0_seg0","5790":"branch0_seg0","5791":"branch0_seg0","5792":"branch0_seg0","5793":"branch0_seg0","5794":"branch0_seg0","5795":"branch0_seg0","5796":"branch0_seg0","5797":"branch0_seg0","5798":"branch0_seg0","5799":"branch0_seg0","5800":"branch0_seg0","5801":"branch0_seg0","5802":"branch0_seg0","5803":"branch0_seg0","5804":"branch0_seg0","5805":"branch0_seg0","5806":"branch0_seg0","5807":"branch0_seg0","5808":"branch0_seg0","5809":"branch0_seg0","5810":"branch0_seg0","5811":"branch0_seg0","5812":"branch0_seg0","5813":"branch0_seg0","5814":"branch0_seg0","5815":"branch0_seg0","5816":"branch0_seg0","5817":"branch0_seg0","5818":"branch0_seg0","5819":"branch0_seg0","5820":"branch0_seg0","5821":"branch0_seg0","5822":"branch0_seg0","5823":"branch0_seg0","5824":"branch0_seg0","5825":"branch0_seg0","5826":"branch0_seg0","5827":"branch0_seg0","5828":"branch0_seg0","5829":"branch0_seg0","5830":"branch0_seg0","5831":"branch0_seg0","5832":"branch0_seg0","5833":"branch0_seg0","5834":"branch0_seg0","5835":"branch0_seg0","5836":"branch0_seg0","5837":"branch0_seg0","5838":"branch0_seg0","5839":"branch0_seg0","5840":"branch0_seg0","5841":"branch0_seg0","5842":"branch0_seg0","5843":"branch0_seg0","5844":"branch0_seg0","5845":"branch0_seg0","5846":"branch0_seg0","5847":"branch0_seg0","5848":"branch0_seg0","5849":"branch0_seg0","5850":"branch0_seg0","5851":"branch0_seg0","5852":"branch0_seg0","5853":"branch0_seg0","5854":"branch0_seg0","5855":"branch0_seg0","5856":"branch0_seg0","5857":"branch0_seg0","5858":"branch0_seg0","5859":"branch0_seg0","5860":"branch0_seg0","5861":"branch0_seg0","5862":"branch0_seg0","5863":"branch0_seg0","5864":"branch0_seg0","5865":"branch0_seg0","5866":"branch0_seg0","5867":"branch0_seg0","5868":"branch0_seg0","5869":"branch0_seg0","5870":"branch0_seg0","5871":"branch0_seg0","5872":"branch0_seg0","5873":"branch0_seg0","5874":"branch0_seg0","5875":"branch0_seg0","5876":"branch0_seg0","5877":"branch0_seg0","5878":"branch0_seg0","5879":"branch0_seg0","5880":"branch0_seg0","5881":"branch0_seg0","5882":"branch0_seg0","5883":"branch0_seg0","5884":"branch0_seg0","5885":"branch0_seg0","5886":"branch0_seg0","5887":"branch0_seg0","5888":"branch0_seg0","5889":"branch0_seg0","5890":"branch0_seg0","5891":"branch0_seg0","5892":"branch0_seg0","5893":"branch0_seg0","5894":"branch0_seg0","5895":"branch0_seg0","5896":"branch0_seg0","5897":"branch0_seg0","5898":"branch0_seg0","5899":"branch0_seg0","5900":"branch0_seg0","5901":"branch0_seg0","5902":"branch0_seg0","5903":"branch0_seg0","5904":"branch0_seg0","5905":"branch0_seg0","5906":"branch0_seg0","5907":"branch0_seg0","5908":"branch0_seg0","5909":"branch0_seg0","5910":"branch0_seg0","5911":"branch0_seg0","5912":"branch0_seg0","5913":"branch0_seg0","5914":"branch0_seg0","5915":"branch0_seg0","5916":"branch0_seg0","5917":"branch0_seg0","5918":"branch0_seg0","5919":"branch0_seg0","5920":"branch0_seg0","5921":"branch0_seg0","5922":"branch0_seg0","5923":"branch0_seg0","5924":"branch0_seg0","5925":"branch0_seg0","5926":"branch0_seg0","5927":"branch0_seg0","5928":"branch0_seg0","5929":"branch0_seg0","5930":"branch0_seg0","5931":"branch0_seg0","5932":"branch0_seg0","5933":"branch0_seg0","5934":"branch0_seg0","5935":"branch0_seg0","5936":"branch0_seg0","5937":"branch0_seg0","5938":"branch0_seg0","5939":"branch0_seg0","5940":"branch0_seg0","5941":"branch0_seg0","5942":"branch0_seg0","5943":"branch0_seg0","5944":"branch0_seg0","5945":"branch0_seg0","5946":"branch0_seg0","5947":"branch0_seg0","5948":"branch0_seg0","5949":"branch0_seg0","5950":"branch0_seg0","5951":"branch0_seg0","5952":"branch0_seg0","5953":"branch0_seg0","5954":"branch0_seg0","5955":"branch0_seg0","5956":"branch0_seg0","5957":"branch0_seg0","5958":"branch0_seg0","5959":"branch0_seg0","5960":"branch0_seg0","5961":"branch0_seg0","5962":"branch0_seg0","5963":"branch0_seg0","5964":"branch0_seg0","5965":"branch0_seg0","5966":"branch0_seg0","5967":"branch0_seg0","5968":"branch0_seg0","5969":"branch0_seg0","5970":"branch0_seg0","5971":"branch0_seg0","5972":"branch0_seg0","5973":"branch0_seg0","5974":"branch0_seg0","5975":"branch0_seg0","5976":"branch0_seg0","5977":"branch0_seg0","5978":"branch0_seg0","5979":"branch0_seg0","5980":"branch0_seg0","5981":"branch0_seg0","5982":"branch0_seg0","5983":"branch0_seg0","5984":"branch0_seg0","5985":"branch0_seg0","5986":"branch0_seg0","5987":"branch0_seg0","5988":"branch0_seg0","5989":"branch0_seg0","5990":"branch0_seg0","5991":"branch0_seg0","5992":"branch0_seg0","5993":"branch0_seg0","5994":"branch0_seg0","5995":"branch0_seg0","5996":"branch0_seg0","5997":"branch0_seg0","5998":"branch0_seg0","5999":"branch0_seg0","6000":"branch0_seg0","6001":"branch0_seg0","6002":"branch0_seg0","6003":"branch0_seg0","6004":"branch0_seg0","6005":"branch0_seg0","6006":"branch0_seg0","6007":"branch0_seg0","6008":"branch0_seg0","6009":"branch0_seg0","6010":"branch0_seg0","6011":"branch0_seg0","6012":"branch0_seg0","6013":"branch0_seg0","6014":"branch0_seg0","6015":"branch0_seg0","6016":"branch0_seg0","6017":"branch0_seg0","6018":"branch0_seg0","6019":"branch0_seg0","6020":"branch0_seg0","6021":"branch0_seg0","6022":"branch0_seg0","6023":"branch0_seg0","6024":"branch0_seg0","6025":"branch0_seg0","6026":"branch0_seg0","6027":"branch0_seg0","6028":"branch0_seg0","6029":"branch0_seg0","6030":"branch0_seg0","6031":"branch0_seg0","6032":"branch0_seg0","6033":"branch0_seg0","6034":"branch0_seg0","6035":"branch0_seg0","6036":"branch0_seg0","6037":"branch0_seg0","6038":"branch0_seg0","6039":"branch0_seg0","6040":"branch0_seg0","6041":"branch0_seg0","6042":"branch0_seg0","6043":"branch0_seg0","6044":"branch0_seg0","6045":"branch0_seg0","6046":"branch0_seg0","6047":"branch0_seg0","6048":"branch0_seg0","6049":"branch0_seg0","6050":"branch0_seg0","6051":"branch0_seg0","6052":"branch0_seg0","6053":"branch0_seg0","6054":"branch0_seg0","6055":"branch0_seg0","6056":"branch0_seg0","6057":"branch0_seg0","6058":"branch0_seg0","6059":"branch0_seg0","6060":"branch0_seg0","6061":"branch0_seg0","6062":"branch0_seg0","6063":"branch0_seg0","6064":"branch0_seg0","6065":"branch0_seg0","6066":"branch0_seg0","6067":"branch0_seg0","6068":"branch0_seg0","6069":"branch0_seg0","6070":"branch0_seg0","6071":"branch0_seg0","6072":"branch0_seg0","6073":"branch0_seg0","6074":"branch0_seg0","6075":"branch0_seg0","6076":"branch0_seg0","6077":"branch0_seg0","6078":"branch0_seg0","6079":"branch0_seg0","6080":"branch0_seg0","6081":"branch0_seg0","6082":"branch0_seg0","6083":"branch0_seg0","6084":"branch0_seg0","6085":"branch0_seg0","6086":"branch0_seg0","6087":"branch0_seg0","6088":"branch0_seg0","6089":"branch0_seg0","6090":"branch0_seg0","6091":"branch0_seg0","6092":"branch0_seg0","6093":"branch0_seg0","6094":"branch0_seg0","6095":"branch0_seg0","6096":"branch0_seg0","6097":"branch0_seg0","6098":"branch0_seg0","6099":"branch0_seg0","6100":"branch0_seg0","6101":"branch0_seg0","6102":"branch0_seg0","6103":"branch0_seg0","6104":"branch0_seg0","6105":"branch0_seg0","6106":"branch0_seg0","6107":"branch0_seg0","6108":"branch0_seg0","6109":"branch0_seg0","6110":"branch0_seg0","6111":"branch0_seg0","6112":"branch0_seg0","6113":"branch0_seg0","6114":"branch0_seg0","6115":"branch0_seg0","6116":"branch0_seg0","6117":"branch0_seg0","6118":"branch0_seg0","6119":"branch0_seg0","6120":"branch0_seg0","6121":"branch0_seg0","6122":"branch0_seg0","6123":"branch0_seg0","6124":"branch0_seg0","6125":"branch0_seg0","6126":"branch0_seg0","6127":"branch0_seg0","6128":"branch0_seg0","6129":"branch0_seg0","6130":"branch0_seg0","6131":"branch0_seg0","6132":"branch0_seg0","6133":"branch0_seg0","6134":"branch0_seg0","6135":"branch0_seg0","6136":"branch0_seg0","6137":"branch0_seg0","6138":"branch0_seg0","6139":"branch0_seg0","6140":"branch0_seg0","6141":"branch0_seg0","6142":"branch0_seg0","6143":"branch0_seg0","6144":"branch0_seg0","6145":"branch0_seg0","6146":"branch0_seg0","6147":"branch0_seg0","6148":"branch0_seg0","6149":"branch0_seg0","6150":"branch0_seg0","6151":"branch0_seg0","6152":"branch0_seg0","6153":"branch0_seg0","6154":"branch0_seg0","6155":"branch0_seg0","6156":"branch0_seg0","6157":"branch0_seg0","6158":"branch0_seg0","6159":"branch0_seg0","6160":"branch0_seg0","6161":"branch0_seg0","6162":"branch0_seg0","6163":"branch0_seg0","6164":"branch0_seg0","6165":"branch0_seg0","6166":"branch0_seg0","6167":"branch0_seg0","6168":"branch0_seg0","6169":"branch0_seg0","6170":"branch0_seg0","6171":"branch0_seg0","6172":"branch0_seg0","6173":"branch0_seg0","6174":"branch0_seg0","6175":"branch0_seg0","6176":"branch0_seg0","6177":"branch0_seg0","6178":"branch0_seg0","6179":"branch0_seg0","6180":"branch0_seg0","6181":"branch0_seg0","6182":"branch0_seg0","6183":"branch0_seg0","6184":"branch0_seg0","6185":"branch0_seg0","6186":"branch0_seg0","6187":"branch0_seg0","6188":"branch0_seg0","6189":"branch0_seg0","6190":"branch0_seg0","6191":"branch0_seg0","6192":"branch0_seg0","6193":"branch0_seg0","6194":"branch0_seg0","6195":"branch0_seg0","6196":"branch0_seg0","6197":"branch0_seg0","6198":"branch0_seg0","6199":"branch0_seg0","6200":"branch0_seg0"},"time":{"0":0.0,"1":0.005,"2":0.01,"3":0.015,"4":0.02,"5":0.025,"6":0.03,"7":0.035,"8":0.04,"9":0.045,"10":0.05,"11":0.055,"12":0.06,"13":0.065,"14":0.07,"15":0.075,"16":0.08,"17":0.085,"18":0.09,"19":0.095,"20":0.1,"21":0.105,"22":0.11,"23":0.115,"24":0.12,"25":0.125,"26":0.13,"27":0.135,"28":0.14,"29":0.145,"30":0.15,"31":0.155,"32":0.16,"33":0.165,"34":0.17,"35":0.175,"36":0.18,"37":0.185,"38":0.19,"39":0.195,"40":0.2,"41":0.205,"42":0.21,"43":0.215,"44":0.22,"45":0.225,"46":0.23,"47":0.235,"48":0.24,"49":0.245,"50":0.25,"51":0.255,"52":0.26,"53":0.265,"54":0.27,"55":0.275,"56":0.28,"57":0.285,"58":0.29,"59":0.295,"60":0.3,"61":0.305,"62":0.31,"63":0.315,"64":0.32,"65":0.325,"66":0.33,"67":0.335,"68":0.34,"69":0.345,"70":0.35,"71":0.355,"72":0.36,"73":0.365,"74":0.37,"75":0.375,"76":0.38,"77":0.385,"78":0.39,"79":0.395,"80":0.4,"81":0.405,"82":0.41,"83":0.415,"84":0.42,"85":0.425,"86":0.43,"87":0.435,"88":0.44,"89":0.445,"90":0.45,"91":0.455,"92":0.46,"93":0.465,"94":0.47,"95":0.475,"96":0.48,"97":0.485,"98":0.49,"99":0.495,"100":0.5,"101":0.505,"102":0.51,"103":0.515,"104":0.52,"105":0.525,"106":0.53,"107":0.535,"108":0.54,"109":0.545,"110":0.55,"111":0.555,"112":0.56,"113":0.565,"114":0.57,"115":0.575,"116":0.58,"117":0.585,"118":0.59,"119":0.595,"120":0.6,"121":0.605,"122":0.61,"123":0.615,"124":0.62,"125":0.625,"126":0.63,"127":0.635,"128":0.64,"129":0.645,"130":0.65,"131":0.655,"132":0.66,"133":0.665,"134":0.67,"135":0.675,"136":0.68,"137":0.685,"138":0.69,"139":0.695,"140":0.7,"141":0.705,"142":0.71,"143":0.715,"144":0.72,"145":0.725,"146":0.73,"147":0.735,"148":0.74,"149":0.745,"150":0.75,"151":0.755,"152":0.76,"153":0.765,"154":0.77,"155":0.775,"156":0.78,"157":0.785,"158":0.79,"159":0.795,"160":0.8,"161":0.805,"162":0.81,"163":0.815,"164":0.82,"165":0.825,"166":0.83,"167":0.835,"168":0.84,"169":0.845,"170":0.85,"171":0.855,"172":0.86,"173":0.865,"174":0.87,"175":0.875,"176":0.88,"177":0.885,"178":0.89,"179":0.895,"180":0.9,"181":0.905,"182":0.91,"183":0.915,"184":0.92,"185":0.925,"186":0.93,"187":0.935,"188":0.94,"189":0.945,"190":0.95,"191":0.955,"192":0.96,"193":0.965,"194":0.97,"195":0.975,"196":0.98,"197":0.985,"198":0.99,"199":0.995,"200":1.0,"201":1.005,"202":1.01,"203":1.015,"204":1.02,"205":1.025,"206":1.03,"207":1.035,"208":1.04,"209":1.045,"210":1.05,"211":1.055,"212":1.06,"213":1.065,"214":1.07,"215":1.075,"216":1.08,"217":1.085,"218":1.09,"219":1.095,"220":1.1,"221":1.105,"222":1.11,"223":1.115,"224":1.12,"225":1.125,"226":1.13,"227":1.135,"228":1.14,"229":1.145,"230":1.15,"231":1.155,"232":1.16,"233":1.165,"234":1.17,"235":1.175,"236":1.18,"237":1.185,"238":1.19,"239":1.195,"240":1.2,"241":1.205,"242":1.21,"243":1.215,"244":1.22,"245":1.225,"246":1.23,"247":1.235,"248":1.24,"249":1.245,"250":1.25,"251":1.255,"252":1.26,"253":1.265,"254":1.27,"255":1.275,"256":1.28,"257":1.285,"258":1.29,"259":1.295,"260":1.3,"261":1.305,"262":1.31,"263":1.315,"264":1.32,"265":1.325,"266":1.33,"267":1.335,"268":1.34,"269":1.345,"270":1.35,"271":1.355,"272":1.36,"273":1.365,"274":1.37,"275":1.375,"276":1.38,"277":1.385,"278":1.39,"279":1.395,"280":1.4,"281":1.405,"282":1.41,"283":1.415,"284":1.42,"285":1.425,"286":1.43,"287":1.435,"288":1.44,"289":1.445,"290":1.45,"291":1.455,"292":1.46,"293":1.465,"294":1.47,"295":1.475,"296":1.48,"297":1.485,"298":1.49,"299":1.495,"300":1.5,"301":1.505,"302":1.51,"303":1.515,"304":1.52,"305":1.525,"306":1.53,"307":1.535,"308":1.54,"309":1.545,"310":1.55,"311":1.555,"312":1.56,"313":1.565,"314":1.57,"315":1.575,"316":1.58,"317":1.585,"318":1.59,"319":1.595,"320":1.6,"321":1.605,"322":1.61,"323":1.615,"324":1.62,"325":1.625,"326":1.63,"327":1.635,"328":1.64,"329":1.645,"330":1.65,"331":1.655,"332":1.66,"333":1.665,"334":1.67,"335":1.675,"336":1.68,"337":1.685,"338":1.69,"339":1.695,"340":1.7,"341":1.705,"342":1.71,"343":1.715,"344":1.72,"345":1.725,"346":1.73,"347":1.735,"348":1.74,"349":1.745,"350":1.75,"351":1.755,"352":1.76,"353":1.765,"354":1.77,"355":1.775,"356":1.78,"357":1.785,"358":1.79,"359":1.795,"360":1.8,"361":1.805,"362":1.81,"363":1.815,"364":1.82,"365":1.825,"366":1.83,"367":1.835,"368":1.84,"369":1.845,"370":1.85,"371":1.855,"372":1.86,"373":1.865,"374":1.87,"375":1.875,"376":1.88,"377":1.885,"378":1.89,"379":1.895,"380":1.9,"381":1.905,"382":1.91,"383":1.915,"384":1.92,"385":1.925,"386":1.93,"387":1.935,"388":1.94,"389":1.945,"390":1.95,"391":1.955,"392":1.96,"393":1.965,"394":1.97,"395":1.975,"396":1.98,"397":1.985,"398":1.99,"399":1.995,"400":2.0,"401":2.005,"402":2.01,"403":2.015,"404":2.02,"405":2.025,"406":2.03,"407":2.035,"408":2.04,"409":2.045,"410":2.05,"411":2.055,"412":2.06,"413":2.065,"414":2.07,"415":2.075,"416":2.08,"417":2.085,"418":2.09,"419":2.095,"420":2.1,"421":2.105,"422":2.11,"423":2.115,"424":2.12,"425":2.125,"426":2.13,"427":2.135,"428":2.14,"429":2.145,"430":2.15,"431":2.155,"432":2.16,"433":2.165,"434":2.17,"435":2.175,"436":2.18,"437":2.185,"438":2.19,"439":2.195,"440":2.2,"441":2.205,"442":2.21,"443":2.215,"444":2.22,"445":2.225,"446":2.23,"447":2.235,"448":2.24,"449":2.245,"450":2.25,"451":2.255,"452":2.26,"453":2.265,"454":2.27,"455":2.275,"456":2.28,"457":2.285,"458":2.29,"459":2.295,"460":2.3,"461":2.305,"462":2.31,"463":2.315,"464":2.32,"465":2.325,"466":2.33,"467":2.335,"468":2.34,"469":2.345,"470":2.35,"471":2.355,"472":2.36,"473":2.365,"474":2.37,"475":2.375,"476":2.38,"477":2.385,"478":2.39,"479":2.395,"480":2.4,"481":2.405,"482":2.41,"483":2.415,"484":2.42,"485":2.425,"486":2.43,"487":2.435,"488":2.44,"489":2.445,"490":2.45,"491":2.455,"492":2.46,"493":2.465,"494":2.47,"495":2.475,"496":2.48,"497":2.485,"498":2.49,"499":2.495,"500":2.5,"501":2.505,"502":2.51,"503":2.515,"504":2.52,"505":2.525,"506":2.53,"507":2.535,"508":2.54,"509":2.545,"510":2.55,"511":2.555,"512":2.56,"513":2.565,"514":2.57,"515":2.575,"516":2.58,"517":2.585,"518":2.59,"519":2.595,"520":2.6,"521":2.605,"522":2.61,"523":2.615,"524":2.62,"525":2.625,"526":2.63,"527":2.635,"528":2.64,"529":2.645,"530":2.65,"531":2.655,"532":2.66,"533":2.665,"534":2.67,"535":2.675,"536":2.68,"537":2.685,"538":2.69,"539":2.695,"540":2.7,"541":2.705,"542":2.71,"543":2.715,"544":2.72,"545":2.725,"546":2.73,"547":2.735,"548":2.74,"549":2.745,"550":2.75,"551":2.755,"552":2.76,"553":2.765,"554":2.77,"555":2.775,"556":2.78,"557":2.785,"558":2.79,"559":2.795,"560":2.8,"561":2.805,"562":2.81,"563":2.815,"564":2.82,"565":2.825,"566":2.83,"567":2.835,"568":2.84,"569":2.845,"570":2.85,"571":2.855,"572":2.86,"573":2.865,"574":2.87,"575":2.875,"576":2.88,"577":2.885,"578":2.89,"579":2.895,"580":2.9,"581":2.905,"582":2.91,"583":2.915,"584":2.92,"585":2.925,"586":2.93,"587":2.935,"588":2.94,"589":2.945,"590":2.95,"591":2.955,"592":2.96,"593":2.965,"594":2.97,"595":2.975,"596":2.98,"597":2.985,"598":2.99,"599":2.995,"600":3.0,"601":3.005,"602":3.01,"603":3.015,"604":3.02,"605":3.025,"606":3.03,"607":3.035,"608":3.04,"609":3.045,"610":3.05,"611":3.055,"612":3.06,"613":3.065,"614":3.07,"615":3.075,"616":3.08,"617":3.085,"618":3.09,"619":3.095,"620":3.1,"621":3.105,"622":3.11,"623":3.115,"624":3.12,"625":3.125,"626":3.13,"627":3.135,"628":3.14,"629":3.145,"630":3.15,"631":3.155,"632":3.16,"633":3.165,"634":3.17,"635":3.175,"636":3.18,"637":3.185,"638":3.19,"639":3.195,"640":3.2,"641":3.205,"642":3.21,"643":3.215,"644":3.22,"645":3.225,"646":3.23,"647":3.235,"648":3.24,"649":3.245,"650":3.25,"651":3.255,"652":3.26,"653":3.265,"654":3.27,"655":3.275,"656":3.28,"657":3.285,"658":3.29,"659":3.295,"660":3.3,"661":3.305,"662":3.31,"663":3.315,"664":3.32,"665":3.325,"666":3.33,"667":3.335,"668":3.34,"669":3.345,"670":3.35,"671":3.355,"672":3.36,"673":3.365,"674":3.37,"675":3.375,"676":3.38,"677":3.385,"678":3.39,"679":3.395,"680":3.4,"681":3.405,"682":3.41,"683":3.415,"684":3.42,"685":3.425,"686":3.43,"687":3.435,"688":3.44,"689":3.445,"690":3.45,"691":3.455,"692":3.46,"693":3.465,"694":3.47,"695":3.475,"696":3.48,"697":3.485,"698":3.49,"699":3.495,"700":3.5,"701":3.505,"702":3.51,"703":3.515,"704":3.52,"705":3.525,"706":3.53,"707":3.535,"708":3.54,"709":3.545,"710":3.55,"711":3.555,"712":3.56,"713":3.565,"714":3.57,"715":3.575,"716":3.58,"717":3.585,"718":3.59,"719":3.595,"720":3.6,"721":3.605,"722":3.61,"723":3.615,"724":3.62,"725":3.625,"726":3.63,"727":3.635,"728":3.64,"729":3.645,"730":3.65,"731":3.655,"732":3.66,"733":3.665,"734":3.67,"735":3.675,"736":3.68,"737":3.685,"738":3.69,"739":3.695,"740":3.7,"741":3.705,"742":3.71,"743":3.715,"744":3.72,"745":3.725,"746":3.73,"747":3.735,"748":3.74,"749":3.745,"750":3.75,"751":3.755,"752":3.76,"753":3.765,"754":3.77,"755":3.775,"756":3.78,"757":3.785,"758":3.79,"759":3.795,"760":3.8,"761":3.805,"762":3.81,"763":3.815,"764":3.82,"765":3.825,"766":3.83,"767":3.835,"768":3.84,"769":3.845,"770":3.85,"771":3.855,"772":3.86,"773":3.865,"774":3.87,"775":3.875,"776":3.88,"777":3.885,"778":3.89,"779":3.895,"780":3.9,"781":3.905,"782":3.91,"783":3.915,"784":3.92,"785":3.925,"786":3.93,"787":3.935,"788":3.94,"789":3.945,"790":3.95,"791":3.955,"792":3.96,"793":3.965,"794":3.97,"795":3.975,"796":3.98,"797":3.985,"798":3.99,"799":3.995,"800":4.0,"801":4.005,"802":4.01,"803":4.015,"804":4.02,"805":4.025,"806":4.03,"807":4.035,"808":4.04,"809":4.045,"810":4.05,"811":4.055,"812":4.06,"813":4.065,"814":4.07,"815":4.075,"816":4.08,"817":4.085,"818":4.09,"819":4.095,"820":4.1,"821":4.105,"822":4.11,"823":4.115,"824":4.12,"825":4.125,"826":4.13,"827":4.135,"828":4.14,"829":4.145,"830":4.15,"831":4.155,"832":4.16,"833":4.165,"834":4.17,"835":4.175,"836":4.18,"837":4.185,"838":4.19,"839":4.195,"840":4.2,"841":4.205,"842":4.21,"843":4.215,"844":4.22,"845":4.225,"846":4.23,"847":4.235,"848":4.24,"849":4.245,"850":4.25,"851":4.255,"852":4.26,"853":4.265,"854":4.27,"855":4.275,"856":4.28,"857":4.285,"858":4.29,"859":4.295,"860":4.3,"861":4.305,"862":4.31,"863":4.315,"864":4.32,"865":4.325,"866":4.33,"867":4.335,"868":4.34,"869":4.345,"870":4.35,"871":4.355,"872":4.36,"873":4.365,"874":4.37,"875":4.375,"876":4.38,"877":4.385,"878":4.39,"879":4.395,"880":4.4,"881":4.405,"882":4.41,"883":4.415,"884":4.42,"885":4.425,"886":4.43,"887":4.435,"888":4.44,"889":4.445,"890":4.45,"891":4.455,"892":4.46,"893":4.465,"894":4.47,"895":4.475,"896":4.48,"897":4.485,"898":4.49,"899":4.495,"900":4.5,"901":4.505,"902":4.51,"903":4.515,"904":4.52,"905":4.525,"906":4.53,"907":4.535,"908":4.54,"909":4.545,"910":4.55,"911":4.555,"912":4.56,"913":4.565,"914":4.57,"915":4.575,"916":4.58,"917":4.585,"918":4.59,"919":4.595,"920":4.6,"921":4.605,"922":4.61,"923":4.615,"924":4.62,"925":4.625,"926":4.63,"927":4.635,"928":4.64,"929":4.645,"930":4.65,"931":4.655,"932":4.66,"933":4.665,"934":4.67,"935":4.675,"936":4.68,"937":4.685,"938":4.69,"939":4.695,"940":4.7,"941":4.705,"942":4.71,"943":4.715,"944":4.72,"945":4.725,"946":4.73,"947":4.735,"948":4.74,"949":4.745,"950":4.75,"951":4.755,"952":4.76,"953":4.765,"954":4.77,"955":4.775,"956":4.78,"957":4.785,"958":4.79,"959":4.795,"960":4.8,"961":4.805,"962":4.81,"963":4.815,"964":4.82,"965":4.825,"966":4.83,"967":4.835,"968":4.84,"969":4.845,"970":4.85,"971":4.855,"972":4.86,"973":4.865,"974":4.87,"975":4.875,"976":4.88,"977":4.885,"978":4.89,"979":4.895,"980":4.9,"981":4.905,"982":4.91,"983":4.915,"984":4.92,"985":4.925,"986":4.93,"987":4.935,"988":4.94,"989":4.945,"990":4.95,"991":4.955,"992":4.96,"993":4.965,"994":4.97,"995":4.975,"996":4.98,"997":4.985,"998":4.99,"999":4.995,"1000":5.0,"1001":5.005,"1002":5.01,"1003":5.015,"1004":5.02,"1005":5.025,"1006":5.03,"1007":5.035,"1008":5.04,"1009":5.045,"1010":5.05,"1011":5.055,"1012":5.06,"1013":5.065,"1014":5.07,"1015":5.075,"1016":5.08,"1017":5.085,"1018":5.09,"1019":5.095,"1020":5.1,"1021":5.105,"1022":5.11,"1023":5.115,"1024":5.12,"1025":5.125,"1026":5.13,"1027":5.135,"1028":5.14,"1029":5.145,"1030":5.15,"1031":5.155,"1032":5.16,"1033":5.165,"1034":5.17,"1035":5.175,"1036":5.18,"1037":5.185,"1038":5.19,"1039":5.195,"1040":5.2,"1041":5.205,"1042":5.21,"1043":5.215,"1044":5.22,"1045":5.225,"1046":5.23,"1047":5.235,"1048":5.24,"1049":5.245,"1050":5.25,"1051":5.255,"1052":5.26,"1053":5.265,"1054":5.27,"1055":5.275,"1056":5.28,"1057":5.285,"1058":5.29,"1059":5.295,"1060":5.3,"1061":5.305,"1062":5.31,"1063":5.315,"1064":5.32,"1065":5.325,"1066":5.33,"1067":5.335,"1068":5.34,"1069":5.345,"1070":5.35,"1071":5.355,"1072":5.36,"1073":5.365,"1074":5.37,"1075":5.375,"1076":5.38,"1077":5.385,"1078":5.39,"1079":5.395,"1080":5.4,"1081":5.405,"1082":5.41,"1083":5.415,"1084":5.42,"1085":5.425,"1086":5.43,"1087":5.435,"1088":5.44,"1089":5.445,"1090":5.45,"1091":5.455,"1092":5.46,"1093":5.465,"1094":5.47,"1095":5.475,"1096":5.48,"1097":5.485,"1098":5.49,"1099":5.495,"1100":5.5,"1101":5.505,"1102":5.51,"1103":5.515,"1104":5.52,"1105":5.525,"1106":5.53,"1107":5.535,"1108":5.54,"1109":5.545,"1110":5.55,"1111":5.555,"1112":5.56,"1113":5.565,"1114":5.57,"1115":5.575,"1116":5.58,"1117":5.585,"1118":5.59,"1119":5.595,"1120":5.6,"1121":5.605,"1122":5.61,"1123":5.615,"1124":5.62,"1125":5.625,"1126":5.63,"1127":5.635,"1128":5.64,"1129":5.645,"1130":5.65,"1131":5.655,"1132":5.66,"1133":5.665,"1134":5.67,"1135":5.675,"1136":5.68,"1137":5.685,"1138":5.69,"1139":5.695,"1140":5.7,"1141":5.705,"1142":5.71,"1143":5.715,"1144":5.72,"1145":5.725,"1146":5.73,"1147":5.735,"1148":5.74,"1149":5.745,"1150":5.75,"1151":5.755,"1152":5.76,"1153":5.765,"1154":5.77,"1155":5.775,"1156":5.78,"1157":5.785,"1158":5.79,"1159":5.795,"1160":5.8,"1161":5.805,"1162":5.81,"1163":5.815,"1164":5.82,"1165":5.825,"1166":5.83,"1167":5.835,"1168":5.84,"1169":5.845,"1170":5.85,"1171":5.855,"1172":5.86,"1173":5.865,"1174":5.87,"1175":5.875,"1176":5.88,"1177":5.885,"1178":5.89,"1179":5.895,"1180":5.9,"1181":5.905,"1182":5.91,"1183":5.915,"1184":5.92,"1185":5.925,"1186":5.93,"1187":5.935,"1188":5.94,"1189":5.945,"1190":5.95,"1191":5.955,"1192":5.96,"1193":5.965,"1194":5.97,"1195":5.975,"1196":5.98,"1197":5.985,"1198":5.99,"1199":5.995,"1200":6.0,"1201":6.005,"1202":6.01,"1203":6.015,"1204":6.02,"1205":6.025,"1206":6.03,"1207":6.035,"1208":6.04,"1209":6.045,"1210":6.05,"1211":6.055,"1212":6.06,"1213":6.065,"1214":6.07,"1215":6.075,"1216":6.08,"1217":6.085,"1218":6.09,"1219":6.095,"1220":6.1,"1221":6.105,"1222":6.11,"1223":6.115,"1224":6.12,"1225":6.125,"1226":6.13,"1227":6.135,"1228":6.14,"1229":6.145,"1230":6.15,"1231":6.155,"1232":6.16,"1233":6.165,"1234":6.17,"1235":6.175,"1236":6.18,"1237":6.185,"1238":6.19,"1239":6.195,"1240":6.2,"1241":6.205,"1242":6.21,"1243":6.215,"1244":6.22,"1245":6.225,"1246":6.23,"1247":6.235,"1248":6.24,"1249":6.245,"1250":6.25,"1251":6.255,"1252":6.26,"1253":6.265,"1254":6.27,"1255":6.275,"1256":6.28,"1257":6.285,"1258":6.29,"1259":6.295,"1260":6.3,"1261":6.305,"1262":6.31,"1263":6.315,"1264":6.32,"1265":6.325,"1266":6.33,"1267":6.335,"1268":6.34,"1269":6.345,"1270":6.35,"1271":6.355,"1272":6.36,"1273":6.365,"1274":6.37,"1275":6.375,"1276":6.38,"1277":6.385,"1278":6.39,"1279":6.395,"1280":6.4,"1281":6.405,"1282":6.41,"1283":6.415,"1284":6.42,"1285":6.425,"1286":6.43,"1287":6.435,"1288":6.44,"1289":6.445,"1290":6.45,"1291":6.455,"1292":6.46,"1293":6.465,"1294":6.47,"1295":6.475,"1296":6.48,"1297":6.485,"1298":6.49,"1299":6.495,"1300":6.5,"1301":6.505,"1302":6.51,"1303":6.515,"1304":6.52,"1305":6.525,"1306":6.53,"1307":6.535,"1308":6.54,"1309":6.545,"1310":6.55,"1311":6.555,"1312":6.56,"1313":6.565,"1314":6.57,"1315":6.575,"1316":6.58,"1317":6.585,"1318":6.59,"1319":6.595,"1320":6.6,"1321":6.605,"1322":6.61,"1323":6.615,"1324":6.62,"1325":6.625,"1326":6.63,"1327":6.635,"1328":6.64,"1329":6.645,"1330":6.65,"1331":6.655,"1332":6.66,"1333":6.665,"1334":6.67,"1335":6.675,"1336":6.68,"1337":6.685,"1338":6.69,"1339":6.695,"1340":6.7,"1341":6.705,"1342":6.71,"1343":6.715,"1344":6.72,"1345":6.725,"1346":6.73,"1347":6.735,"1348":6.74,"1349":6.745,"1350":6.75,"1351":6.755,"1352":6.76,"1353":6.765,"1354":6.77,"1355":6.775,"1356":6.78,"1357":6.785,"1358":6.79,"1359":6.795,"1360":6.8,"1361":6.805,"1362":6.81,"1363":6.815,"1364":6.82,"1365":6.825,"1366":6.83,"1367":6.835,"1368":6.84,"1369":6.845,"1370":6.85,"1371":6.855,"1372":6.86,"1373":6.865,"1374":6.87,"1375":6.875,"1376":6.88,"1377":6.885,"1378":6.89,"1379":6.895,"1380":6.9,"1381":6.905,"1382":6.91,"1383":6.915,"1384":6.92,"1385":6.925,"1386":6.93,"1387":6.935,"1388":6.94,"1389":6.945,"1390":6.95,"1391":6.955,"1392":6.96,"1393":6.965,"1394":6.97,"1395":6.975,"1396":6.98,"1397":6.985,"1398":6.99,"1399":6.995,"1400":7.0,"1401":7.005,"1402":7.01,"1403":7.015,"1404":7.02,"1405":7.025,"1406":7.03,"1407":7.035,"1408":7.04,"1409":7.045,"1410":7.05,"1411":7.055,"1412":7.06,"1413":7.065,"1414":7.07,"1415":7.075,"1416":7.08,"1417":7.085,"1418":7.09,"1419":7.095,"1420":7.1,"1421":7.105,"1422":7.11,"1423":7.115,"1424":7.12,"1425":7.125,"1426":7.13,"1427":7.135,"1428":7.14,"1429":7.145,"1430":7.15,"1431":7.155,"1432":7.16,"1433":7.165,"1434":7.17,"1435":7.175,"1436":7.18,"1437":7.185,"1438":7.19,"1439":7.195,"1440":7.2,"1441":7.205,"1442":7.21,"1443":7.215,"1444":7.22,"1445":7.225,"1446":7.23,"1447":7.235,"1448":7.24,"1449":7.245,"1450":7.25,"1451":7.255,"1452":7.26,"1453":7.265,"1454":7.27,"1455":7.275,"1456":7.28,"1457":7.285,"1458":7.29,"1459":7.295,"1460":7.3,"1461":7.305,"1462":7.31,"1463":7.315,"1464":7.32,"1465":7.325,"1466":7.33,"1467":7.335,"1468":7.34,"1469":7.345,"1470":7.35,"1471":7.355,"1472":7.36,"1473":7.365,"1474":7.37,"1475":7.375,"1476":7.38,"1477":7.385,"1478":7.39,"1479":7.395,"1480":7.4,"1481":7.405,"1482":7.41,"1483":7.415,"1484":7.42,"1485":7.425,"1486":7.43,"1487":7.435,"1488":7.44,"1489":7.445,"1490":7.45,"1491":7.455,"1492":7.46,"1493":7.465,"1494":7.47,"1495":7.475,"1496":7.48,"1497":7.485,"1498":7.49,"1499":7.495,"1500":7.5,"1501":7.505,"1502":7.51,"1503":7.515,"1504":7.52,"1505":7.525,"1506":7.53,"1507":7.535,"1508":7.54,"1509":7.545,"1510":7.55,"1511":7.555,"1512":7.56,"1513":7.565,"1514":7.57,"1515":7.575,"1516":7.58,"1517":7.585,"1518":7.59,"1519":7.595,"1520":7.6,"1521":7.605,"1522":7.61,"1523":7.615,"1524":7.62,"1525":7.625,"1526":7.63,"1527":7.635,"1528":7.64,"1529":7.645,"1530":7.65,"1531":7.655,"1532":7.66,"1533":7.665,"1534":7.67,"1535":7.675,"1536":7.68,"1537":7.685,"1538":7.69,"1539":7.695,"1540":7.7,"1541":7.705,"1542":7.71,"1543":7.715,"1544":7.72,"1545":7.725,"1546":7.73,"1547":7.735,"1548":7.74,"1549":7.745,"1550":7.75,"1551":7.755,"1552":7.76,"1553":7.765,"1554":7.77,"1555":7.775,"1556":7.78,"1557":7.785,"1558":7.79,"1559":7.795,"1560":7.8,"1561":7.805,"1562":7.81,"1563":7.815,"1564":7.82,"1565":7.825,"1566":7.83,"1567":7.835,"1568":7.84,"1569":7.845,"1570":7.85,"1571":7.855,"1572":7.86,"1573":7.865,"1574":7.87,"1575":7.875,"1576":7.88,"1577":7.885,"1578":7.89,"1579":7.895,"1580":7.9,"1581":7.905,"1582":7.91,"1583":7.915,"1584":7.92,"1585":7.925,"1586":7.93,"1587":7.935,"1588":7.94,"1589":7.945,"1590":7.95,"1591":7.955,"1592":7.96,"1593":7.965,"1594":7.97,"1595":7.975,"1596":7.98,"1597":7.985,"1598":7.99,"1599":7.995,"1600":8.0,"1601":8.005,"1602":8.01,"1603":8.015,"1604":8.02,"1605":8.025,"1606":8.03,"1607":8.035,"1608":8.04,"1609":8.045,"1610":8.05,"1611":8.055,"1612":8.06,"1613":8.065,"1614":8.07,"1615":8.075,"1616":8.08,"1617":8.085,"1618":8.09,"1619":8.095,"1620":8.1,"1621":8.105,"1622":8.11,"1623":8.115,"1624":8.12,"1625":8.125,"1626":8.13,"1627":8.135,"1628":8.14,"1629":8.145,"1630":8.15,"1631":8.155,"1632":8.16,"1633":8.165,"1634":8.17,"1635":8.175,"1636":8.18,"1637":8.185,"1638":8.19,"1639":8.195,"1640":8.2,"1641":8.205,"1642":8.21,"1643":8.215,"1644":8.22,"1645":8.225,"1646":8.23,"1647":8.235,"1648":8.24,"1649":8.245,"1650":8.25,"1651":8.255,"1652":8.26,"1653":8.265,"1654":8.27,"1655":8.275,"1656":8.28,"1657":8.285,"1658":8.29,"1659":8.295,"1660":8.3,"1661":8.305,"1662":8.31,"1663":8.315,"1664":8.32,"1665":8.325,"1666":8.33,"1667":8.335,"1668":8.34,"1669":8.345,"1670":8.35,"1671":8.355,"1672":8.36,"1673":8.365,"1674":8.37,"1675":8.375,"1676":8.38,"1677":8.385,"1678":8.39,"1679":8.395,"1680":8.4,"1681":8.405,"1682":8.41,"1683":8.415,"1684":8.42,"1685":8.425,"1686":8.43,"1687":8.435,"1688":8.44,"1689":8.445,"1690":8.45,"1691":8.455,"1692":8.46,"1693":8.465,"1694":8.47,"1695":8.475,"1696":8.48,"1697":8.485,"1698":8.49,"1699":8.495,"1700":8.5,"1701":8.505,"1702":8.51,"1703":8.515,"1704":8.52,"1705":8.525,"1706":8.53,"1707":8.535,"1708":8.54,"1709":8.545,"1710":8.55,"1711":8.555,"1712":8.56,"1713":8.565,"1714":8.57,"1715":8.575,"1716":8.58,"1717":8.585,"1718":8.59,"1719":8.595,"1720":8.6,"1721":8.605,"1722":8.61,"1723":8.615,"1724":8.62,"1725":8.625,"1726":8.63,"1727":8.635,"1728":8.64,"1729":8.645,"1730":8.65,"1731":8.655,"1732":8.66,"1733":8.665,"1734":8.67,"1735":8.675,"1736":8.68,"1737":8.685,"1738":8.69,"1739":8.695,"1740":8.7,"1741":8.705,"1742":8.71,"1743":8.715,"1744":8.72,"1745":8.725,"1746":8.73,"1747":8.735,"1748":8.74,"1749":8.745,"1750":8.75,"1751":8.755,"1752":8.76,"1753":8.765,"1754":8.77,"1755":8.775,"1756":8.78,"1757":8.785,"1758":8.79,"1759":8.795,"1760":8.8,"1761":8.805,"1762":8.81,"1763":8.815,"1764":8.82,"1765":8.825,"1766":8.83,"1767":8.835,"1768":8.84,"1769":8.845,"1770":8.85,"1771":8.855,"1772":8.86,"1773":8.865,"1774":8.87,"1775":8.875,"1776":8.88,"1777":8.885,"1778":8.89,"1779":8.895,"1780":8.9,"1781":8.905,"1782":8.91,"1783":8.915,"1784":8.92,"1785":8.925,"1786":8.93,"1787":8.935,"1788":8.94,"1789":8.945,"1790":8.95,"1791":8.955,"1792":8.96,"1793":8.965,"1794":8.97,"1795":8.975,"1796":8.98,"1797":8.985,"1798":8.99,"1799":8.995,"1800":9.0,"1801":9.005,"1802":9.01,"1803":9.015,"1804":9.02,"1805":9.025,"1806":9.03,"1807":9.035,"1808":9.04,"1809":9.045,"1810":9.05,"1811":9.055,"1812":9.06,"1813":9.065,"1814":9.07,"1815":9.075,"1816":9.08,"1817":9.085,"1818":9.09,"1819":9.095,"1820":9.1,"1821":9.105,"1822":9.11,"1823":9.115,"1824":9.12,"1825":9.125,"1826":9.13,"1827":9.135,"1828":9.14,"1829":9.145,"1830":9.15,"1831":9.155,"1832":9.16,"1833":9.165,"1834":9.17,"1835":9.175,"1836":9.18,"1837":9.185,"1838":9.19,"1839":9.195,"1840":9.2,"1841":9.205,"1842":9.21,"1843":9.215,"1844":9.22,"1845":9.225,"1846":9.23,"1847":9.235,"1848":9.24,"1849":9.245,"1850":9.25,"1851":9.255,"1852":9.26,"1853":9.265,"1854":9.27,"1855":9.275,"1856":9.28,"1857":9.285,"1858":9.29,"1859":9.295,"1860":9.3,"1861":9.305,"1862":9.31,"1863":9.315,"1864":9.32,"1865":9.325,"1866":9.33,"1867":9.335,"1868":9.34,"1869":9.345,"1870":9.35,"1871":9.355,"1872":9.36,"1873":9.365,"1874":9.37,"1875":9.375,"1876":9.38,"1877":9.385,"1878":9.39,"1879":9.395,"1880":9.4,"1881":9.405,"1882":9.41,"1883":9.415,"1884":9.42,"1885":9.425,"1886":9.43,"1887":9.435,"1888":9.44,"1889":9.445,"1890":9.45,"1891":9.455,"1892":9.46,"1893":9.465,"1894":9.47,"1895":9.475,"1896":9.48,"1897":9.485,"1898":9.49,"1899":9.495,"1900":9.5,"1901":9.505,"1902":9.51,"1903":9.515,"1904":9.52,"1905":9.525,"1906":9.53,"1907":9.535,"1908":9.54,"1909":9.545,"1910":9.55,"1911":9.555,"1912":9.56,"1913":9.565,"1914":9.57,"1915":9.575,"1916":9.58,"1917":9.585,"1918":9.59,"1919":9.595,"1920":9.6,"1921":9.605,"1922":9.61,"1923":9.615,"1924":9.62,"1925":9.625,"1926":9.63,"1927":9.635,"1928":9.64,"1929":9.645,"1930":9.65,"1931":9.655,"1932":9.66,"1933":9.665,"1934":9.67,"1935":9.675,"1936":9.68,"1937":9.685,"1938":9.69,"1939":9.695,"1940":9.7,"1941":9.705,"1942":9.71,"1943":9.715,"1944":9.72,"1945":9.725,"1946":9.73,"1947":9.735,"1948":9.74,"1949":9.745,"1950":9.75,"1951":9.755,"1952":9.76,"1953":9.765,"1954":9.77,"1955":9.775,"1956":9.78,"1957":9.785,"1958":9.79,"1959":9.795,"1960":9.8,"1961":9.805,"1962":9.81,"1963":9.815,"1964":9.82,"1965":9.825,"1966":9.83,"1967":9.835,"1968":9.84,"1969":9.845,"1970":9.85,"1971":9.855,"1972":9.86,"1973":9.865,"1974":9.87,"1975":9.875,"1976":9.88,"1977":9.885,"1978":9.89,"1979":9.895,"1980":9.9,"1981":9.905,"1982":9.91,"1983":9.915,"1984":9.92,"1985":9.925,"1986":9.93,"1987":9.935,"1988":9.94,"1989":9.945,"1990":9.95,"1991":9.955,"1992":9.96,"1993":9.965,"1994":9.97,"1995":9.975,"1996":9.98,"1997":9.985,"1998":9.99,"1999":9.995,"2000":10.0,"2001":10.005,"2002":10.01,"2003":10.015,"2004":10.02,"2005":10.025,"2006":10.03,"2007":10.035,"2008":10.04,"2009":10.045,"2010":10.05,"2011":10.055,"2012":10.06,"2013":10.065,"2014":10.07,"2015":10.075,"2016":10.08,"2017":10.085,"2018":10.09,"2019":10.095,"2020":10.1,"2021":10.105,"2022":10.11,"2023":10.115,"2024":10.12,"2025":10.125,"2026":10.13,"2027":10.135,"2028":10.14,"2029":10.145,"2030":10.15,"2031":10.155,"2032":10.16,"2033":10.165,"2034":10.17,"2035":10.175,"2036":10.18,"2037":10.185,"2038":10.19,"2039":10.195,"2040":10.2,"2041":10.205,"2042":10.21,"2043":10.215,"2044":10.22,"2045":10.225,"2046":10.23,"2047":10.235,"2048":10.24,"2049":10.245,"2050":10.25,"2051":10.255,"2052":10.26,"2053":10.265,"2054":10.27,"2055":10.275,"2056":10.28,"2057":10.285,"2058":10.29,"2059":10.295,"2060":10.3,"2061":10.305,"2062":10.31,"2063":10.315,"2064":10.32,"2065":10.325,"2066":10.33,"2067":10.335,"2068":10.34,"2069":10.345,"2070":10.35,"2071":10.355,"2072":10.36,"2073":10.365,"2074":10.37,"2075":10.375,"2076":10.38,"2077":10.385,"2078":10.39,"2079":10.395,"2080":10.4,"2081":10.405,"2082":10.41,"2083":10.415,"2084":10.42,"2085":10.425,"2086":10.43,"2087":10.435,"2088":10.44,"2089":10.445,"2090":10.45,"2091":10.455,"2092":10.46,"2093":10.465,"2094":10.47,"2095":10.475,"2096":10.48,"2097":10.485,"2098":10.49,"2099":10.495,"2100":10.5,"2101":10.505,"2102":10.51,"2103":10.515,"2104":10.52,"2105":10.525,"2106":10.53,"2107":10.535,"2108":10.54,"2109":10.545,"2110":10.55,"2111":10.555,"2112":10.56,"2113":10.565,"2114":10.57,"2115":10.575,"2116":10.58,"2117":10.585,"2118":10.59,"2119":10.595,"2120":10.6,"2121":10.605,"2122":10.61,"2123":10.615,"2124":10.62,"2125":10.625,"2126":10.63,"2127":10.635,"2128":10.64,"2129":10.645,"2130":10.65,"2131":10.655,"2132":10.66,"2133":10.665,"2134":10.67,"2135":10.675,"2136":10.68,"2137":10.685,"2138":10.69,"2139":10.695,"2140":10.7,"2141":10.705,"2142":10.71,"2143":10.715,"2144":10.72,"2145":10.725,"2146":10.73,"2147":10.735,"2148":10.74,"2149":10.745,"2150":10.75,"2151":10.755,"2152":10.76,"2153":10.765,"2154":10.77,"2155":10.775,"2156":10.78,"2157":10.785,"2158":10.79,"2159":10.795,"2160":10.8,"2161":10.805,"2162":10.81,"2163":10.815,"2164":10.82,"2165":10.825,"2166":10.83,"2167":10.835,"2168":10.84,"2169":10.845,"2170":10.85,"2171":10.855,"2172":10.86,"2173":10.865,"2174":10.87,"2175":10.875,"2176":10.88,"2177":10.885,"2178":10.89,"2179":10.895,"2180":10.9,"2181":10.905,"2182":10.91,"2183":10.915,"2184":10.92,"2185":10.925,"2186":10.93,"2187":10.935,"2188":10.94,"2189":10.945,"2190":10.95,"2191":10.955,"2192":10.96,"2193":10.965,"2194":10.97,"2195":10.975,"2196":10.98,"2197":10.985,"2198":10.99,"2199":10.995,"2200":11.0,"2201":11.005,"2202":11.01,"2203":11.015,"2204":11.02,"2205":11.025,"2206":11.03,"2207":11.035,"2208":11.04,"2209":11.045,"2210":11.05,"2211":11.055,"2212":11.06,"2213":11.065,"2214":11.07,"2215":11.075,"2216":11.08,"2217":11.085,"2218":11.09,"2219":11.095,"2220":11.1,"2221":11.105,"2222":11.11,"2223":11.115,"2224":11.12,"2225":11.125,"2226":11.13,"2227":11.135,"2228":11.14,"2229":11.145,"2230":11.15,"2231":11.155,"2232":11.16,"2233":11.165,"2234":11.17,"2235":11.175,"2236":11.18,"2237":11.185,"2238":11.19,"2239":11.195,"2240":11.2,"2241":11.205,"2242":11.21,"2243":11.215,"2244":11.22,"2245":11.225,"2246":11.23,"2247":11.235,"2248":11.24,"2249":11.245,"2250":11.25,"2251":11.255,"2252":11.26,"2253":11.265,"2254":11.27,"2255":11.275,"2256":11.28,"2257":11.285,"2258":11.29,"2259":11.295,"2260":11.3,"2261":11.305,"2262":11.31,"2263":11.315,"2264":11.32,"2265":11.325,"2266":11.33,"2267":11.335,"2268":11.34,"2269":11.345,"2270":11.35,"2271":11.355,"2272":11.36,"2273":11.365,"2274":11.37,"2275":11.375,"2276":11.38,"2277":11.385,"2278":11.39,"2279":11.395,"2280":11.4,"2281":11.405,"2282":11.41,"2283":11.415,"2284":11.42,"2285":11.425,"2286":11.43,"2287":11.435,"2288":11.44,"2289":11.445,"2290":11.45,"2291":11.455,"2292":11.46,"2293":11.465,"2294":11.47,"2295":11.475,"2296":11.48,"2297":11.485,"2298":11.49,"2299":11.495,"2300":11.5,"2301":11.505,"2302":11.51,"2303":11.515,"2304":11.52,"2305":11.525,"2306":11.53,"2307":11.535,"2308":11.54,"2309":11.545,"2310":11.55,"2311":11.555,"2312":11.56,"2313":11.565,"2314":11.57,"2315":11.575,"2316":11.58,"2317":11.585,"2318":11.59,"2319":11.595,"2320":11.6,"2321":11.605,"2322":11.61,"2323":11.615,"2324":11.62,"2325":11.625,"2326":11.63,"2327":11.635,"2328":11.64,"2329":11.645,"2330":11.65,"2331":11.655,"2332":11.66,"2333":11.665,"2334":11.67,"2335":11.675,"2336":11.68,"2337":11.685,"2338":11.69,"2339":11.695,"2340":11.7,"2341":11.705,"2342":11.71,"2343":11.715,"2344":11.72,"2345":11.725,"2346":11.73,"2347":11.735,"2348":11.74,"2349":11.745,"2350":11.75,"2351":11.755,"2352":11.76,"2353":11.765,"2354":11.77,"2355":11.775,"2356":11.78,"2357":11.785,"2358":11.79,"2359":11.795,"2360":11.8,"2361":11.805,"2362":11.81,"2363":11.815,"2364":11.82,"2365":11.825,"2366":11.83,"2367":11.835,"2368":11.84,"2369":11.845,"2370":11.85,"2371":11.855,"2372":11.86,"2373":11.865,"2374":11.87,"2375":11.875,"2376":11.88,"2377":11.885,"2378":11.89,"2379":11.895,"2380":11.9,"2381":11.905,"2382":11.91,"2383":11.915,"2384":11.92,"2385":11.925,"2386":11.93,"2387":11.935,"2388":11.94,"2389":11.945,"2390":11.95,"2391":11.955,"2392":11.96,"2393":11.965,"2394":11.97,"2395":11.975,"2396":11.98,"2397":11.985,"2398":11.99,"2399":11.995,"2400":12.0,"2401":12.005,"2402":12.01,"2403":12.015,"2404":12.02,"2405":12.025,"2406":12.03,"2407":12.035,"2408":12.04,"2409":12.045,"2410":12.05,"2411":12.055,"2412":12.06,"2413":12.065,"2414":12.07,"2415":12.075,"2416":12.08,"2417":12.085,"2418":12.09,"2419":12.095,"2420":12.1,"2421":12.105,"2422":12.11,"2423":12.115,"2424":12.12,"2425":12.125,"2426":12.13,"2427":12.135,"2428":12.14,"2429":12.145,"2430":12.15,"2431":12.155,"2432":12.16,"2433":12.165,"2434":12.17,"2435":12.175,"2436":12.18,"2437":12.185,"2438":12.19,"2439":12.195,"2440":12.2,"2441":12.205,"2442":12.21,"2443":12.215,"2444":12.22,"2445":12.225,"2446":12.23,"2447":12.235,"2448":12.24,"2449":12.245,"2450":12.25,"2451":12.255,"2452":12.26,"2453":12.265,"2454":12.27,"2455":12.275,"2456":12.28,"2457":12.285,"2458":12.29,"2459":12.295,"2460":12.3,"2461":12.305,"2462":12.31,"2463":12.315,"2464":12.32,"2465":12.325,"2466":12.33,"2467":12.335,"2468":12.34,"2469":12.345,"2470":12.35,"2471":12.355,"2472":12.36,"2473":12.365,"2474":12.37,"2475":12.375,"2476":12.38,"2477":12.385,"2478":12.39,"2479":12.395,"2480":12.4,"2481":12.405,"2482":12.41,"2483":12.415,"2484":12.42,"2485":12.425,"2486":12.43,"2487":12.435,"2488":12.44,"2489":12.445,"2490":12.45,"2491":12.455,"2492":12.46,"2493":12.465,"2494":12.47,"2495":12.475,"2496":12.48,"2497":12.485,"2498":12.49,"2499":12.495,"2500":12.5,"2501":12.505,"2502":12.51,"2503":12.515,"2504":12.52,"2505":12.525,"2506":12.53,"2507":12.535,"2508":12.54,"2509":12.545,"2510":12.55,"2511":12.555,"2512":12.56,"2513":12.565,"2514":12.57,"2515":12.575,"2516":12.58,"2517":12.585,"2518":12.59,"2519":12.595,"2520":12.6,"2521":12.605,"2522":12.61,"2523":12.615,"2524":12.62,"2525":12.625,"2526":12.63,"2527":12.635,"2528":12.64,"2529":12.645,"2530":12.65,"2531":12.655,"2532":12.66,"2533":12.665,"2534":12.67,"2535":12.675,"2536":12.68,"2537":12.685,"2538":12.69,"2539":12.695,"2540":12.7,"2541":12.705,"2542":12.71,"2543":12.715,"2544":12.72,"2545":12.725,"2546":12.73,"2547":12.735,"2548":12.74,"2549":12.745,"2550":12.75,"2551":12.755,"2552":12.76,"2553":12.765,"2554":12.77,"2555":12.775,"2556":12.78,"2557":12.785,"2558":12.79,"2559":12.795,"2560":12.8,"2561":12.805,"2562":12.81,"2563":12.815,"2564":12.82,"2565":12.825,"2566":12.83,"2567":12.835,"2568":12.84,"2569":12.845,"2570":12.85,"2571":12.855,"2572":12.86,"2573":12.865,"2574":12.87,"2575":12.875,"2576":12.88,"2577":12.885,"2578":12.89,"2579":12.895,"2580":12.9,"2581":12.905,"2582":12.91,"2583":12.915,"2584":12.92,"2585":12.925,"2586":12.93,"2587":12.935,"2588":12.94,"2589":12.945,"2590":12.95,"2591":12.955,"2592":12.96,"2593":12.965,"2594":12.97,"2595":12.975,"2596":12.98,"2597":12.985,"2598":12.99,"2599":12.995,"2600":13.0,"2601":13.005,"2602":13.01,"2603":13.015,"2604":13.02,"2605":13.025,"2606":13.03,"2607":13.035,"2608":13.04,"2609":13.045,"2610":13.05,"2611":13.055,"2612":13.06,"2613":13.065,"2614":13.07,"2615":13.075,"2616":13.08,"2617":13.085,"2618":13.09,"2619":13.095,"2620":13.1,"2621":13.105,"2622":13.11,"2623":13.115,"2624":13.12,"2625":13.125,"2626":13.13,"2627":13.135,"2628":13.14,"2629":13.145,"2630":13.15,"2631":13.155,"2632":13.16,"2633":13.165,"2634":13.17,"2635":13.175,"2636":13.18,"2637":13.185,"2638":13.19,"2639":13.195,"2640":13.2,"2641":13.205,"2642":13.21,"2643":13.215,"2644":13.22,"2645":13.225,"2646":13.23,"2647":13.235,"2648":13.24,"2649":13.245,"2650":13.25,"2651":13.255,"2652":13.26,"2653":13.265,"2654":13.27,"2655":13.275,"2656":13.28,"2657":13.285,"2658":13.29,"2659":13.295,"2660":13.3,"2661":13.305,"2662":13.31,"2663":13.315,"2664":13.32,"2665":13.325,"2666":13.33,"2667":13.335,"2668":13.34,"2669":13.345,"2670":13.35,"2671":13.355,"2672":13.36,"2673":13.365,"2674":13.37,"2675":13.375,"2676":13.38,"2677":13.385,"2678":13.39,"2679":13.395,"2680":13.4,"2681":13.405,"2682":13.41,"2683":13.415,"2684":13.42,"2685":13.425,"2686":13.43,"2687":13.435,"2688":13.44,"2689":13.445,"2690":13.45,"2691":13.455,"2692":13.46,"2693":13.465,"2694":13.47,"2695":13.475,"2696":13.48,"2697":13.485,"2698":13.49,"2699":13.495,"2700":13.5,"2701":13.505,"2702":13.51,"2703":13.515,"2704":13.52,"2705":13.525,"2706":13.53,"2707":13.535,"2708":13.54,"2709":13.545,"2710":13.55,"2711":13.555,"2712":13.56,"2713":13.565,"2714":13.57,"2715":13.575,"2716":13.58,"2717":13.585,"2718":13.59,"2719":13.595,"2720":13.6,"2721":13.605,"2722":13.61,"2723":13.615,"2724":13.62,"2725":13.625,"2726":13.63,"2727":13.635,"2728":13.64,"2729":13.645,"2730":13.65,"2731":13.655,"2732":13.66,"2733":13.665,"2734":13.67,"2735":13.675,"2736":13.68,"2737":13.685,"2738":13.69,"2739":13.695,"2740":13.7,"2741":13.705,"2742":13.71,"2743":13.715,"2744":13.72,"2745":13.725,"2746":13.73,"2747":13.735,"2748":13.74,"2749":13.745,"2750":13.75,"2751":13.755,"2752":13.76,"2753":13.765,"2754":13.77,"2755":13.775,"2756":13.78,"2757":13.785,"2758":13.79,"2759":13.795,"2760":13.8,"2761":13.805,"2762":13.81,"2763":13.815,"2764":13.82,"2765":13.825,"2766":13.83,"2767":13.835,"2768":13.84,"2769":13.845,"2770":13.85,"2771":13.855,"2772":13.86,"2773":13.865,"2774":13.87,"2775":13.875,"2776":13.88,"2777":13.885,"2778":13.89,"2779":13.895,"2780":13.9,"2781":13.905,"2782":13.91,"2783":13.915,"2784":13.92,"2785":13.925,"2786":13.93,"2787":13.935,"2788":13.94,"2789":13.945,"2790":13.95,"2791":13.955,"2792":13.96,"2793":13.965,"2794":13.97,"2795":13.975,"2796":13.98,"2797":13.985,"2798":13.99,"2799":13.995,"2800":14.0,"2801":14.005,"2802":14.01,"2803":14.015,"2804":14.02,"2805":14.025,"2806":14.03,"2807":14.035,"2808":14.04,"2809":14.045,"2810":14.05,"2811":14.055,"2812":14.06,"2813":14.065,"2814":14.07,"2815":14.075,"2816":14.08,"2817":14.085,"2818":14.09,"2819":14.095,"2820":14.1,"2821":14.105,"2822":14.11,"2823":14.115,"2824":14.12,"2825":14.125,"2826":14.13,"2827":14.135,"2828":14.14,"2829":14.145,"2830":14.15,"2831":14.155,"2832":14.16,"2833":14.165,"2834":14.17,"2835":14.175,"2836":14.18,"2837":14.185,"2838":14.19,"2839":14.195,"2840":14.2,"2841":14.205,"2842":14.21,"2843":14.215,"2844":14.22,"2845":14.225,"2846":14.23,"2847":14.235,"2848":14.24,"2849":14.245,"2850":14.25,"2851":14.255,"2852":14.26,"2853":14.265,"2854":14.27,"2855":14.275,"2856":14.28,"2857":14.285,"2858":14.29,"2859":14.295,"2860":14.3,"2861":14.305,"2862":14.31,"2863":14.315,"2864":14.32,"2865":14.325,"2866":14.33,"2867":14.335,"2868":14.34,"2869":14.345,"2870":14.35,"2871":14.355,"2872":14.36,"2873":14.365,"2874":14.37,"2875":14.375,"2876":14.38,"2877":14.385,"2878":14.39,"2879":14.395,"2880":14.4,"2881":14.405,"2882":14.41,"2883":14.415,"2884":14.42,"2885":14.425,"2886":14.43,"2887":14.435,"2888":14.44,"2889":14.445,"2890":14.45,"2891":14.455,"2892":14.46,"2893":14.465,"2894":14.47,"2895":14.475,"2896":14.48,"2897":14.485,"2898":14.49,"2899":14.495,"2900":14.5,"2901":14.505,"2902":14.51,"2903":14.515,"2904":14.52,"2905":14.525,"2906":14.53,"2907":14.535,"2908":14.54,"2909":14.545,"2910":14.55,"2911":14.555,"2912":14.56,"2913":14.565,"2914":14.57,"2915":14.575,"2916":14.58,"2917":14.585,"2918":14.59,"2919":14.595,"2920":14.6,"2921":14.605,"2922":14.61,"2923":14.615,"2924":14.62,"2925":14.625,"2926":14.63,"2927":14.635,"2928":14.64,"2929":14.645,"2930":14.65,"2931":14.655,"2932":14.66,"2933":14.665,"2934":14.67,"2935":14.675,"2936":14.68,"2937":14.685,"2938":14.69,"2939":14.695,"2940":14.7,"2941":14.705,"2942":14.71,"2943":14.715,"2944":14.72,"2945":14.725,"2946":14.73,"2947":14.735,"2948":14.74,"2949":14.745,"2950":14.75,"2951":14.755,"2952":14.76,"2953":14.765,"2954":14.77,"2955":14.775,"2956":14.78,"2957":14.785,"2958":14.79,"2959":14.795,"2960":14.8,"2961":14.805,"2962":14.81,"2963":14.815,"2964":14.82,"2965":14.825,"2966":14.83,"2967":14.835,"2968":14.84,"2969":14.845,"2970":14.85,"2971":14.855,"2972":14.86,"2973":14.865,"2974":14.87,"2975":14.875,"2976":14.88,"2977":14.885,"2978":14.89,"2979":14.895,"2980":14.9,"2981":14.905,"2982":14.91,"2983":14.915,"2984":14.92,"2985":14.925,"2986":14.93,"2987":14.935,"2988":14.94,"2989":14.945,"2990":14.95,"2991":14.955,"2992":14.96,"2993":14.965,"2994":14.97,"2995":14.975,"2996":14.98,"2997":14.985,"2998":14.99,"2999":14.995,"3000":15.0,"3001":15.005,"3002":15.01,"3003":15.015,"3004":15.02,"3005":15.025,"3006":15.03,"3007":15.035,"3008":15.04,"3009":15.045,"3010":15.05,"3011":15.055,"3012":15.06,"3013":15.065,"3014":15.07,"3015":15.075,"3016":15.08,"3017":15.085,"3018":15.09,"3019":15.095,"3020":15.1,"3021":15.105,"3022":15.11,"3023":15.115,"3024":15.12,"3025":15.125,"3026":15.13,"3027":15.135,"3028":15.14,"3029":15.145,"3030":15.15,"3031":15.155,"3032":15.16,"3033":15.165,"3034":15.17,"3035":15.175,"3036":15.18,"3037":15.185,"3038":15.19,"3039":15.195,"3040":15.2,"3041":15.205,"3042":15.21,"3043":15.215,"3044":15.22,"3045":15.225,"3046":15.23,"3047":15.235,"3048":15.24,"3049":15.245,"3050":15.25,"3051":15.255,"3052":15.26,"3053":15.265,"3054":15.27,"3055":15.275,"3056":15.28,"3057":15.285,"3058":15.29,"3059":15.295,"3060":15.3,"3061":15.305,"3062":15.31,"3063":15.315,"3064":15.32,"3065":15.325,"3066":15.33,"3067":15.335,"3068":15.34,"3069":15.345,"3070":15.35,"3071":15.355,"3072":15.36,"3073":15.365,"3074":15.37,"3075":15.375,"3076":15.38,"3077":15.385,"3078":15.39,"3079":15.395,"3080":15.4,"3081":15.405,"3082":15.41,"3083":15.415,"3084":15.42,"3085":15.425,"3086":15.43,"3087":15.435,"3088":15.44,"3089":15.445,"3090":15.45,"3091":15.455,"3092":15.46,"3093":15.465,"3094":15.47,"3095":15.475,"3096":15.48,"3097":15.485,"3098":15.49,"3099":15.495,"3100":15.5,"3101":15.505,"3102":15.51,"3103":15.515,"3104":15.52,"3105":15.525,"3106":15.53,"3107":15.535,"3108":15.54,"3109":15.545,"3110":15.55,"3111":15.555,"3112":15.56,"3113":15.565,"3114":15.57,"3115":15.575,"3116":15.58,"3117":15.585,"3118":15.59,"3119":15.595,"3120":15.6,"3121":15.605,"3122":15.61,"3123":15.615,"3124":15.62,"3125":15.625,"3126":15.63,"3127":15.635,"3128":15.64,"3129":15.645,"3130":15.65,"3131":15.655,"3132":15.66,"3133":15.665,"3134":15.67,"3135":15.675,"3136":15.68,"3137":15.685,"3138":15.69,"3139":15.695,"3140":15.7,"3141":15.705,"3142":15.71,"3143":15.715,"3144":15.72,"3145":15.725,"3146":15.73,"3147":15.735,"3148":15.74,"3149":15.745,"3150":15.75,"3151":15.755,"3152":15.76,"3153":15.765,"3154":15.77,"3155":15.775,"3156":15.78,"3157":15.785,"3158":15.79,"3159":15.795,"3160":15.8,"3161":15.805,"3162":15.81,"3163":15.815,"3164":15.82,"3165":15.825,"3166":15.83,"3167":15.835,"3168":15.84,"3169":15.845,"3170":15.85,"3171":15.855,"3172":15.86,"3173":15.865,"3174":15.87,"3175":15.875,"3176":15.88,"3177":15.885,"3178":15.89,"3179":15.895,"3180":15.9,"3181":15.905,"3182":15.91,"3183":15.915,"3184":15.92,"3185":15.925,"3186":15.93,"3187":15.935,"3188":15.94,"3189":15.945,"3190":15.95,"3191":15.955,"3192":15.96,"3193":15.965,"3194":15.97,"3195":15.975,"3196":15.98,"3197":15.985,"3198":15.99,"3199":15.995,"3200":16.0,"3201":16.005,"3202":16.01,"3203":16.015,"3204":16.02,"3205":16.025,"3206":16.03,"3207":16.035,"3208":16.04,"3209":16.045,"3210":16.05,"3211":16.055,"3212":16.06,"3213":16.065,"3214":16.07,"3215":16.075,"3216":16.08,"3217":16.085,"3218":16.09,"3219":16.095,"3220":16.1,"3221":16.105,"3222":16.11,"3223":16.115,"3224":16.12,"3225":16.125,"3226":16.13,"3227":16.135,"3228":16.14,"3229":16.145,"3230":16.15,"3231":16.155,"3232":16.16,"3233":16.165,"3234":16.17,"3235":16.175,"3236":16.18,"3237":16.185,"3238":16.19,"3239":16.195,"3240":16.2,"3241":16.205,"3242":16.21,"3243":16.215,"3244":16.22,"3245":16.225,"3246":16.23,"3247":16.235,"3248":16.24,"3249":16.245,"3250":16.25,"3251":16.255,"3252":16.26,"3253":16.265,"3254":16.27,"3255":16.275,"3256":16.28,"3257":16.285,"3258":16.29,"3259":16.295,"3260":16.3,"3261":16.305,"3262":16.31,"3263":16.315,"3264":16.32,"3265":16.325,"3266":16.33,"3267":16.335,"3268":16.34,"3269":16.345,"3270":16.35,"3271":16.355,"3272":16.36,"3273":16.365,"3274":16.37,"3275":16.375,"3276":16.38,"3277":16.385,"3278":16.39,"3279":16.395,"3280":16.4,"3281":16.405,"3282":16.41,"3283":16.415,"3284":16.42,"3285":16.425,"3286":16.43,"3287":16.435,"3288":16.44,"3289":16.445,"3290":16.45,"3291":16.455,"3292":16.46,"3293":16.465,"3294":16.47,"3295":16.475,"3296":16.48,"3297":16.485,"3298":16.49,"3299":16.495,"3300":16.5,"3301":16.505,"3302":16.51,"3303":16.515,"3304":16.52,"3305":16.525,"3306":16.53,"3307":16.535,"3308":16.54,"3309":16.545,"3310":16.55,"3311":16.555,"3312":16.56,"3313":16.565,"3314":16.57,"3315":16.575,"3316":16.58,"3317":16.585,"3318":16.59,"3319":16.595,"3320":16.6,"3321":16.605,"3322":16.61,"3323":16.615,"3324":16.62,"3325":16.625,"3326":16.63,"3327":16.635,"3328":16.64,"3329":16.645,"3330":16.65,"3331":16.655,"3332":16.66,"3333":16.665,"3334":16.67,"3335":16.675,"3336":16.68,"3337":16.685,"3338":16.69,"3339":16.695,"3340":16.7,"3341":16.705,"3342":16.71,"3343":16.715,"3344":16.72,"3345":16.725,"3346":16.73,"3347":16.735,"3348":16.74,"3349":16.745,"3350":16.75,"3351":16.755,"3352":16.76,"3353":16.765,"3354":16.77,"3355":16.775,"3356":16.78,"3357":16.785,"3358":16.79,"3359":16.795,"3360":16.8,"3361":16.805,"3362":16.81,"3363":16.815,"3364":16.82,"3365":16.825,"3366":16.83,"3367":16.835,"3368":16.84,"3369":16.845,"3370":16.85,"3371":16.855,"3372":16.86,"3373":16.865,"3374":16.87,"3375":16.875,"3376":16.88,"3377":16.885,"3378":16.89,"3379":16.895,"3380":16.9,"3381":16.905,"3382":16.91,"3383":16.915,"3384":16.92,"3385":16.925,"3386":16.93,"3387":16.935,"3388":16.94,"3389":16.945,"3390":16.95,"3391":16.955,"3392":16.96,"3393":16.965,"3394":16.97,"3395":16.975,"3396":16.98,"3397":16.985,"3398":16.99,"3399":16.995,"3400":17.0,"3401":17.005,"3402":17.01,"3403":17.015,"3404":17.02,"3405":17.025,"3406":17.03,"3407":17.035,"3408":17.04,"3409":17.045,"3410":17.05,"3411":17.055,"3412":17.06,"3413":17.065,"3414":17.07,"3415":17.075,"3416":17.08,"3417":17.085,"3418":17.09,"3419":17.095,"3420":17.1,"3421":17.105,"3422":17.11,"3423":17.115,"3424":17.12,"3425":17.125,"3426":17.13,"3427":17.135,"3428":17.14,"3429":17.145,"3430":17.15,"3431":17.155,"3432":17.16,"3433":17.165,"3434":17.17,"3435":17.175,"3436":17.18,"3437":17.185,"3438":17.19,"3439":17.195,"3440":17.2,"3441":17.205,"3442":17.21,"3443":17.215,"3444":17.22,"3445":17.225,"3446":17.23,"3447":17.235,"3448":17.24,"3449":17.245,"3450":17.25,"3451":17.255,"3452":17.26,"3453":17.265,"3454":17.27,"3455":17.275,"3456":17.28,"3457":17.285,"3458":17.29,"3459":17.295,"3460":17.3,"3461":17.305,"3462":17.31,"3463":17.315,"3464":17.32,"3465":17.325,"3466":17.33,"3467":17.335,"3468":17.34,"3469":17.345,"3470":17.35,"3471":17.355,"3472":17.36,"3473":17.365,"3474":17.37,"3475":17.375,"3476":17.38,"3477":17.385,"3478":17.39,"3479":17.395,"3480":17.4,"3481":17.405,"3482":17.41,"3483":17.415,"3484":17.42,"3485":17.425,"3486":17.43,"3487":17.435,"3488":17.44,"3489":17.445,"3490":17.45,"3491":17.455,"3492":17.46,"3493":17.465,"3494":17.47,"3495":17.475,"3496":17.48,"3497":17.485,"3498":17.49,"3499":17.495,"3500":17.5,"3501":17.505,"3502":17.51,"3503":17.515,"3504":17.52,"3505":17.525,"3506":17.53,"3507":17.535,"3508":17.54,"3509":17.545,"3510":17.55,"3511":17.555,"3512":17.56,"3513":17.565,"3514":17.57,"3515":17.575,"3516":17.58,"3517":17.585,"3518":17.59,"3519":17.595,"3520":17.6,"3521":17.605,"3522":17.61,"3523":17.615,"3524":17.62,"3525":17.625,"3526":17.63,"3527":17.635,"3528":17.64,"3529":17.645,"3530":17.65,"3531":17.655,"3532":17.66,"3533":17.665,"3534":17.67,"3535":17.675,"3536":17.68,"3537":17.685,"3538":17.69,"3539":17.695,"3540":17.7,"3541":17.705,"3542":17.71,"3543":17.715,"3544":17.72,"3545":17.725,"3546":17.73,"3547":17.735,"3548":17.74,"3549":17.745,"3550":17.75,"3551":17.755,"3552":17.76,"3553":17.765,"3554":17.77,"3555":17.775,"3556":17.78,"3557":17.785,"3558":17.79,"3559":17.795,"3560":17.8,"3561":17.805,"3562":17.81,"3563":17.815,"3564":17.82,"3565":17.825,"3566":17.83,"3567":17.835,"3568":17.84,"3569":17.845,"3570":17.85,"3571":17.855,"3572":17.86,"3573":17.865,"3574":17.87,"3575":17.875,"3576":17.88,"3577":17.885,"3578":17.89,"3579":17.895,"3580":17.9,"3581":17.905,"3582":17.91,"3583":17.915,"3584":17.92,"3585":17.925,"3586":17.93,"3587":17.935,"3588":17.94,"3589":17.945,"3590":17.95,"3591":17.955,"3592":17.96,"3593":17.965,"3594":17.97,"3595":17.975,"3596":17.98,"3597":17.985,"3598":17.99,"3599":17.995,"3600":18.0,"3601":18.005,"3602":18.01,"3603":18.015,"3604":18.02,"3605":18.025,"3606":18.03,"3607":18.035,"3608":18.04,"3609":18.045,"3610":18.05,"3611":18.055,"3612":18.06,"3613":18.065,"3614":18.07,"3615":18.075,"3616":18.08,"3617":18.085,"3618":18.09,"3619":18.095,"3620":18.1,"3621":18.105,"3622":18.11,"3623":18.115,"3624":18.12,"3625":18.125,"3626":18.13,"3627":18.135,"3628":18.14,"3629":18.145,"3630":18.15,"3631":18.155,"3632":18.16,"3633":18.165,"3634":18.17,"3635":18.175,"3636":18.18,"3637":18.185,"3638":18.19,"3639":18.195,"3640":18.2,"3641":18.205,"3642":18.21,"3643":18.215,"3644":18.22,"3645":18.225,"3646":18.23,"3647":18.235,"3648":18.24,"3649":18.245,"3650":18.25,"3651":18.255,"3652":18.26,"3653":18.265,"3654":18.27,"3655":18.275,"3656":18.28,"3657":18.285,"3658":18.29,"3659":18.295,"3660":18.3,"3661":18.305,"3662":18.31,"3663":18.315,"3664":18.32,"3665":18.325,"3666":18.33,"3667":18.335,"3668":18.34,"3669":18.345,"3670":18.35,"3671":18.355,"3672":18.36,"3673":18.365,"3674":18.37,"3675":18.375,"3676":18.38,"3677":18.385,"3678":18.39,"3679":18.395,"3680":18.4,"3681":18.405,"3682":18.41,"3683":18.415,"3684":18.42,"3685":18.425,"3686":18.43,"3687":18.435,"3688":18.44,"3689":18.445,"3690":18.45,"3691":18.455,"3692":18.46,"3693":18.465,"3694":18.47,"3695":18.475,"3696":18.48,"3697":18.485,"3698":18.49,"3699":18.495,"3700":18.5,"3701":18.505,"3702":18.51,"3703":18.515,"3704":18.52,"3705":18.525,"3706":18.53,"3707":18.535,"3708":18.54,"3709":18.545,"3710":18.55,"3711":18.555,"3712":18.56,"3713":18.565,"3714":18.57,"3715":18.575,"3716":18.58,"3717":18.585,"3718":18.59,"3719":18.595,"3720":18.6,"3721":18.605,"3722":18.61,"3723":18.615,"3724":18.62,"3725":18.625,"3726":18.63,"3727":18.635,"3728":18.64,"3729":18.645,"3730":18.65,"3731":18.655,"3732":18.66,"3733":18.665,"3734":18.67,"3735":18.675,"3736":18.68,"3737":18.685,"3738":18.69,"3739":18.695,"3740":18.7,"3741":18.705,"3742":18.71,"3743":18.715,"3744":18.72,"3745":18.725,"3746":18.73,"3747":18.735,"3748":18.74,"3749":18.745,"3750":18.75,"3751":18.755,"3752":18.76,"3753":18.765,"3754":18.77,"3755":18.775,"3756":18.78,"3757":18.785,"3758":18.79,"3759":18.795,"3760":18.8,"3761":18.805,"3762":18.81,"3763":18.815,"3764":18.82,"3765":18.825,"3766":18.83,"3767":18.835,"3768":18.84,"3769":18.845,"3770":18.85,"3771":18.855,"3772":18.86,"3773":18.865,"3774":18.87,"3775":18.875,"3776":18.88,"3777":18.885,"3778":18.89,"3779":18.895,"3780":18.9,"3781":18.905,"3782":18.91,"3783":18.915,"3784":18.92,"3785":18.925,"3786":18.93,"3787":18.935,"3788":18.94,"3789":18.945,"3790":18.95,"3791":18.955,"3792":18.96,"3793":18.965,"3794":18.97,"3795":18.975,"3796":18.98,"3797":18.985,"3798":18.99,"3799":18.995,"3800":19.0,"3801":19.005,"3802":19.01,"3803":19.015,"3804":19.02,"3805":19.025,"3806":19.03,"3807":19.035,"3808":19.04,"3809":19.045,"3810":19.05,"3811":19.055,"3812":19.06,"3813":19.065,"3814":19.07,"3815":19.075,"3816":19.08,"3817":19.085,"3818":19.09,"3819":19.095,"3820":19.1,"3821":19.105,"3822":19.11,"3823":19.115,"3824":19.12,"3825":19.125,"3826":19.13,"3827":19.135,"3828":19.14,"3829":19.145,"3830":19.15,"3831":19.155,"3832":19.16,"3833":19.165,"3834":19.17,"3835":19.175,"3836":19.18,"3837":19.185,"3838":19.19,"3839":19.195,"3840":19.2,"3841":19.205,"3842":19.21,"3843":19.215,"3844":19.22,"3845":19.225,"3846":19.23,"3847":19.235,"3848":19.24,"3849":19.245,"3850":19.25,"3851":19.255,"3852":19.26,"3853":19.265,"3854":19.27,"3855":19.275,"3856":19.28,"3857":19.285,"3858":19.29,"3859":19.295,"3860":19.3,"3861":19.305,"3862":19.31,"3863":19.315,"3864":19.32,"3865":19.325,"3866":19.33,"3867":19.335,"3868":19.34,"3869":19.345,"3870":19.35,"3871":19.355,"3872":19.36,"3873":19.365,"3874":19.37,"3875":19.375,"3876":19.38,"3877":19.385,"3878":19.39,"3879":19.395,"3880":19.4,"3881":19.405,"3882":19.41,"3883":19.415,"3884":19.42,"3885":19.425,"3886":19.43,"3887":19.435,"3888":19.44,"3889":19.445,"3890":19.45,"3891":19.455,"3892":19.46,"3893":19.465,"3894":19.47,"3895":19.475,"3896":19.48,"3897":19.485,"3898":19.49,"3899":19.495,"3900":19.5,"3901":19.505,"3902":19.51,"3903":19.515,"3904":19.52,"3905":19.525,"3906":19.53,"3907":19.535,"3908":19.54,"3909":19.545,"3910":19.55,"3911":19.555,"3912":19.56,"3913":19.565,"3914":19.57,"3915":19.575,"3916":19.58,"3917":19.585,"3918":19.59,"3919":19.595,"3920":19.6,"3921":19.605,"3922":19.61,"3923":19.615,"3924":19.62,"3925":19.625,"3926":19.63,"3927":19.635,"3928":19.64,"3929":19.645,"3930":19.65,"3931":19.655,"3932":19.66,"3933":19.665,"3934":19.67,"3935":19.675,"3936":19.68,"3937":19.685,"3938":19.69,"3939":19.695,"3940":19.7,"3941":19.705,"3942":19.71,"3943":19.715,"3944":19.72,"3945":19.725,"3946":19.73,"3947":19.735,"3948":19.74,"3949":19.745,"3950":19.75,"3951":19.755,"3952":19.76,"3953":19.765,"3954":19.77,"3955":19.775,"3956":19.78,"3957":19.785,"3958":19.79,"3959":19.795,"3960":19.8,"3961":19.805,"3962":19.81,"3963":19.815,"3964":19.82,"3965":19.825,"3966":19.83,"3967":19.835,"3968":19.84,"3969":19.845,"3970":19.85,"3971":19.855,"3972":19.86,"3973":19.865,"3974":19.87,"3975":19.875,"3976":19.88,"3977":19.885,"3978":19.89,"3979":19.895,"3980":19.9,"3981":19.905,"3982":19.91,"3983":19.915,"3984":19.92,"3985":19.925,"3986":19.93,"3987":19.935,"3988":19.94,"3989":19.945,"3990":19.95,"3991":19.955,"3992":19.96,"3993":19.965,"3994":19.97,"3995":19.975,"3996":19.98,"3997":19.985,"3998":19.99,"3999":19.995,"4000":20.0,"4001":0.005,"4002":0.01,"4003":0.015,"4004":0.02,"4005":0.025,"4006":0.03,"4007":0.035,"4008":0.04,"4009":0.045,"4010":0.05,"4011":0.055,"4012":0.06,"4013":0.065,"4014":0.07,"4015":0.075,"4016":0.08,"4017":0.085,"4018":0.09,"4019":0.095,"4020":0.1,"4021":0.105,"4022":0.11,"4023":0.115,"4024":0.12,"4025":0.125,"4026":0.13,"4027":0.135,"4028":0.14,"4029":0.145,"4030":0.15,"4031":0.155,"4032":0.16,"4033":0.165,"4034":0.17,"4035":0.175,"4036":0.18,"4037":0.185,"4038":0.19,"4039":0.195,"4040":0.2,"4041":0.205,"4042":0.21,"4043":0.215,"4044":0.22,"4045":0.225,"4046":0.23,"4047":0.235,"4048":0.24,"4049":0.245,"4050":0.25,"4051":0.255,"4052":0.26,"4053":0.265,"4054":0.27,"4055":0.275,"4056":0.28,"4057":0.285,"4058":0.29,"4059":0.295,"4060":0.3,"4061":0.305,"4062":0.31,"4063":0.315,"4064":0.32,"4065":0.325,"4066":0.33,"4067":0.335,"4068":0.34,"4069":0.345,"4070":0.35,"4071":0.355,"4072":0.36,"4073":0.365,"4074":0.37,"4075":0.375,"4076":0.38,"4077":0.385,"4078":0.39,"4079":0.395,"4080":0.4,"4081":0.405,"4082":0.41,"4083":0.415,"4084":0.42,"4085":0.425,"4086":0.43,"4087":0.435,"4088":0.44,"4089":0.445,"4090":0.45,"4091":0.455,"4092":0.46,"4093":0.465,"4094":0.47,"4095":0.475,"4096":0.48,"4097":0.485,"4098":0.49,"4099":0.495,"4100":0.5,"4101":0.505,"4102":0.51,"4103":0.515,"4104":0.52,"4105":0.525,"4106":0.53,"4107":0.535,"4108":0.54,"4109":0.545,"4110":0.55,"4111":0.555,"4112":0.56,"4113":0.565,"4114":0.57,"4115":0.575,"4116":0.58,"4117":0.585,"4118":0.59,"4119":0.595,"4120":0.6,"4121":0.605,"4122":0.61,"4123":0.615,"4124":0.62,"4125":0.625,"4126":0.63,"4127":0.635,"4128":0.64,"4129":0.645,"4130":0.65,"4131":0.655,"4132":0.66,"4133":0.665,"4134":0.67,"4135":0.675,"4136":0.68,"4137":0.685,"4138":0.69,"4139":0.695,"4140":0.7,"4141":0.705,"4142":0.71,"4143":0.715,"4144":0.72,"4145":0.725,"4146":0.73,"4147":0.735,"4148":0.74,"4149":0.745,"4150":0.75,"4151":0.755,"4152":0.76,"4153":0.765,"4154":0.77,"4155":0.775,"4156":0.78,"4157":0.785,"4158":0.79,"4159":0.795,"4160":0.8,"4161":0.805,"4162":0.81,"4163":0.815,"4164":0.82,"4165":0.825,"4166":0.83,"4167":0.835,"4168":0.84,"4169":0.845,"4170":0.85,"4171":0.855,"4172":0.86,"4173":0.865,"4174":0.87,"4175":0.875,"4176":0.88,"4177":0.885,"4178":0.89,"4179":0.895,"4180":0.9,"4181":0.905,"4182":0.91,"4183":0.915,"4184":0.92,"4185":0.925,"4186":0.93,"4187":0.935,"4188":0.94,"4189":0.945,"4190":0.95,"4191":0.955,"4192":0.96,"4193":0.965,"4194":0.97,"4195":0.975,"4196":0.98,"4197":0.985,"4198":0.99,"4199":0.995,"4200":1.0,"4201":0.005,"4202":0.01,"4203":0.015,"4204":0.02,"4205":0.025,"4206":0.03,"4207":0.035,"4208":0.04,"4209":0.045,"4210":0.05,"4211":0.055,"4212":0.06,"4213":0.065,"4214":0.07,"4215":0.075,"4216":0.08,"4217":0.085,"4218":0.09,"4219":0.095,"4220":0.1,"4221":0.105,"4222":0.11,"4223":0.115,"4224":0.12,"4225":0.125,"4226":0.13,"4227":0.135,"4228":0.14,"4229":0.145,"4230":0.15,"4231":0.155,"4232":0.16,"4233":0.165,"4234":0.17,"4235":0.175,"4236":0.18,"4237":0.185,"4238":0.19,"4239":0.195,"4240":0.2,"4241":0.205,"4242":0.21,"4243":0.215,"4244":0.22,"4245":0.225,"4246":0.23,"4247":0.235,"4248":0.24,"4249":0.245,"4250":0.25,"4251":0.255,"4252":0.26,"4253":0.265,"4254":0.27,"4255":0.275,"4256":0.28,"4257":0.285,"4258":0.29,"4259":0.295,"4260":0.3,"4261":0.305,"4262":0.31,"4263":0.315,"4264":0.32,"4265":0.325,"4266":0.33,"4267":0.335,"4268":0.34,"4269":0.345,"4270":0.35,"4271":0.355,"4272":0.36,"4273":0.365,"4274":0.37,"4275":0.375,"4276":0.38,"4277":0.385,"4278":0.39,"4279":0.395,"4280":0.4,"4281":0.405,"4282":0.41,"4283":0.415,"4284":0.42,"4285":0.425,"4286":0.43,"4287":0.435,"4288":0.44,"4289":0.445,"4290":0.45,"4291":0.455,"4292":0.46,"4293":0.465,"4294":0.47,"4295":0.475,"4296":0.48,"4297":0.485,"4298":0.49,"4299":0.495,"4300":0.5,"4301":0.505,"4302":0.51,"4303":0.515,"4304":0.52,"4305":0.525,"4306":0.53,"4307":0.535,"4308":0.54,"4309":0.545,"4310":0.55,"4311":0.555,"4312":0.56,"4313":0.565,"4314":0.57,"4315":0.575,"4316":0.58,"4317":0.585,"4318":0.59,"4319":0.595,"4320":0.6,"4321":0.605,"4322":0.61,"4323":0.615,"4324":0.62,"4325":0.625,"4326":0.63,"4327":0.635,"4328":0.64,"4329":0.645,"4330":0.65,"4331":0.655,"4332":0.66,"4333":0.665,"4334":0.67,"4335":0.675,"4336":0.68,"4337":0.685,"4338":0.69,"4339":0.695,"4340":0.7,"4341":0.705,"4342":0.71,"4343":0.715,"4344":0.72,"4345":0.725,"4346":0.73,"4347":0.735,"4348":0.74,"4349":0.745,"4350":0.75,"4351":0.755,"4352":0.76,"4353":0.765,"4354":0.77,"4355":0.775,"4356":0.78,"4357":0.785,"4358":0.79,"4359":0.795,"4360":0.8,"4361":0.805,"4362":0.81,"4363":0.815,"4364":0.82,"4365":0.825,"4366":0.83,"4367":0.835,"4368":0.84,"4369":0.845,"4370":0.85,"4371":0.855,"4372":0.86,"4373":0.865,"4374":0.87,"4375":0.875,"4376":0.88,"4377":0.885,"4378":0.89,"4379":0.895,"4380":0.9,"4381":0.905,"4382":0.91,"4383":0.915,"4384":0.92,"4385":0.925,"4386":0.93,"4387":0.935,"4388":0.94,"4389":0.945,"4390":0.95,"4391":0.955,"4392":0.96,"4393":0.965,"4394":0.97,"4395":0.975,"4396":0.98,"4397":0.985,"4398":0.99,"4399":0.995,"4400":1.0,"4401":0.005,"4402":0.01,"4403":0.015,"4404":0.02,"4405":0.025,"4406":0.03,"4407":0.035,"4408":0.04,"4409":0.045,"4410":0.05,"4411":0.055,"4412":0.06,"4413":0.065,"4414":0.07,"4415":0.075,"4416":0.08,"4417":0.085,"4418":0.09,"4419":0.095,"4420":0.1,"4421":0.105,"4422":0.11,"4423":0.115,"4424":0.12,"4425":0.125,"4426":0.13,"4427":0.135,"4428":0.14,"4429":0.145,"4430":0.15,"4431":0.155,"4432":0.16,"4433":0.165,"4434":0.17,"4435":0.175,"4436":0.18,"4437":0.185,"4438":0.19,"4439":0.195,"4440":0.2,"4441":0.205,"4442":0.21,"4443":0.215,"4444":0.22,"4445":0.225,"4446":0.23,"4447":0.235,"4448":0.24,"4449":0.245,"4450":0.25,"4451":0.255,"4452":0.26,"4453":0.265,"4454":0.27,"4455":0.275,"4456":0.28,"4457":0.285,"4458":0.29,"4459":0.295,"4460":0.3,"4461":0.305,"4462":0.31,"4463":0.315,"4464":0.32,"4465":0.325,"4466":0.33,"4467":0.335,"4468":0.34,"4469":0.345,"4470":0.35,"4471":0.355,"4472":0.36,"4473":0.365,"4474":0.37,"4475":0.375,"4476":0.38,"4477":0.385,"4478":0.39,"4479":0.395,"4480":0.4,"4481":0.405,"4482":0.41,"4483":0.415,"4484":0.42,"4485":0.425,"4486":0.43,"4487":0.435,"4488":0.44,"4489":0.445,"4490":0.45,"4491":0.455,"4492":0.46,"4493":0.465,"4494":0.47,"4495":0.475,"4496":0.48,"4497":0.485,"4498":0.49,"4499":0.495,"4500":0.5,"4501":0.505,"4502":0.51,"4503":0.515,"4504":0.52,"4505":0.525,"4506":0.53,"4507":0.535,"4508":0.54,"4509":0.545,"4510":0.55,"4511":0.555,"4512":0.56,"4513":0.565,"4514":0.57,"4515":0.575,"4516":0.58,"4517":0.585,"4518":0.59,"4519":0.595,"4520":0.6,"4521":0.605,"4522":0.61,"4523":0.615,"4524":0.62,"4525":0.625,"4526":0.63,"4527":0.635,"4528":0.64,"4529":0.645,"4530":0.65,"4531":0.655,"4532":0.66,"4533":0.665,"4534":0.67,"4535":0.675,"4536":0.68,"4537":0.685,"4538":0.69,"4539":0.695,"4540":0.7,"4541":0.705,"4542":0.71,"4543":0.715,"4544":0.72,"4545":0.725,"4546":0.73,"4547":0.735,"4548":0.74,"4549":0.745,"4550":0.75,"4551":0.755,"4552":0.76,"4553":0.765,"4554":0.77,"4555":0.775,"4556":0.78,"4557":0.785,"4558":0.79,"4559":0.795,"4560":0.8,"4561":0.805,"4562":0.81,"4563":0.815,"4564":0.82,"4565":0.825,"4566":0.83,"4567":0.835,"4568":0.84,"4569":0.845,"4570":0.85,"4571":0.855,"4572":0.86,"4573":0.865,"4574":0.87,"4575":0.875,"4576":0.88,"4577":0.885,"4578":0.89,"4579":0.895,"4580":0.9,"4581":0.905,"4582":0.91,"4583":0.915,"4584":0.92,"4585":0.925,"4586":0.93,"4587":0.935,"4588":0.94,"4589":0.945,"4590":0.95,"4591":0.955,"4592":0.96,"4593":0.965,"4594":0.97,"4595":0.975,"4596":0.98,"4597":0.985,"4598":0.99,"4599":0.995,"4600":1.0,"4601":0.005,"4602":0.01,"4603":0.015,"4604":0.02,"4605":0.025,"4606":0.03,"4607":0.035,"4608":0.04,"4609":0.045,"4610":0.05,"4611":0.055,"4612":0.06,"4613":0.065,"4614":0.07,"4615":0.075,"4616":0.08,"4617":0.085,"4618":0.09,"4619":0.095,"4620":0.1,"4621":0.105,"4622":0.11,"4623":0.115,"4624":0.12,"4625":0.125,"4626":0.13,"4627":0.135,"4628":0.14,"4629":0.145,"4630":0.15,"4631":0.155,"4632":0.16,"4633":0.165,"4634":0.17,"4635":0.175,"4636":0.18,"4637":0.185,"4638":0.19,"4639":0.195,"4640":0.2,"4641":0.205,"4642":0.21,"4643":0.215,"4644":0.22,"4645":0.225,"4646":0.23,"4647":0.235,"4648":0.24,"4649":0.245,"4650":0.25,"4651":0.255,"4652":0.26,"4653":0.265,"4654":0.27,"4655":0.275,"4656":0.28,"4657":0.285,"4658":0.29,"4659":0.295,"4660":0.3,"4661":0.305,"4662":0.31,"4663":0.315,"4664":0.32,"4665":0.325,"4666":0.33,"4667":0.335,"4668":0.34,"4669":0.345,"4670":0.35,"4671":0.355,"4672":0.36,"4673":0.365,"4674":0.37,"4675":0.375,"4676":0.38,"4677":0.385,"4678":0.39,"4679":0.395,"4680":0.4,"4681":0.405,"4682":0.41,"4683":0.415,"4684":0.42,"4685":0.425,"4686":0.43,"4687":0.435,"4688":0.44,"4689":0.445,"4690":0.45,"4691":0.455,"4692":0.46,"4693":0.465,"4694":0.47,"4695":0.475,"4696":0.48,"4697":0.485,"4698":0.49,"4699":0.495,"4700":0.5,"4701":0.505,"4702":0.51,"4703":0.515,"4704":0.52,"4705":0.525,"4706":0.53,"4707":0.535,"4708":0.54,"4709":0.545,"4710":0.55,"4711":0.555,"4712":0.56,"4713":0.565,"4714":0.57,"4715":0.575,"4716":0.58,"4717":0.585,"4718":0.59,"4719":0.595,"4720":0.6,"4721":0.605,"4722":0.61,"4723":0.615,"4724":0.62,"4725":0.625,"4726":0.63,"4727":0.635,"4728":0.64,"4729":0.645,"4730":0.65,"4731":0.655,"4732":0.66,"4733":0.665,"4734":0.67,"4735":0.675,"4736":0.68,"4737":0.685,"4738":0.69,"4739":0.695,"4740":0.7,"4741":0.705,"4742":0.71,"4743":0.715,"4744":0.72,"4745":0.725,"4746":0.73,"4747":0.735,"4748":0.74,"4749":0.745,"4750":0.75,"4751":0.755,"4752":0.76,"4753":0.765,"4754":0.77,"4755":0.775,"4756":0.78,"4757":0.785,"4758":0.79,"4759":0.795,"4760":0.8,"4761":0.805,"4762":0.81,"4763":0.815,"4764":0.82,"4765":0.825,"4766":0.83,"4767":0.835,"4768":0.84,"4769":0.845,"4770":0.85,"4771":0.855,"4772":0.86,"4773":0.865,"4774":0.87,"4775":0.875,"4776":0.88,"4777":0.885,"4778":0.89,"4779":0.895,"4780":0.9,"4781":0.905,"4782":0.91,"4783":0.915,"4784":0.92,"4785":0.925,"4786":0.93,"4787":0.935,"4788":0.94,"4789":0.945,"4790":0.95,"4791":0.955,"4792":0.96,"4793":0.965,"4794":0.97,"4795":0.975,"4796":0.98,"4797":0.985,"4798":0.99,"4799":0.995,"4800":1.0,"4801":0.005,"4802":0.01,"4803":0.015,"4804":0.02,"4805":0.025,"4806":0.03,"4807":0.035,"4808":0.04,"4809":0.045,"4810":0.05,"4811":0.055,"4812":0.06,"4813":0.065,"4814":0.07,"4815":0.075,"4816":0.08,"4817":0.085,"4818":0.09,"4819":0.095,"4820":0.1,"4821":0.105,"4822":0.11,"4823":0.115,"4824":0.12,"4825":0.125,"4826":0.13,"4827":0.135,"4828":0.14,"4829":0.145,"4830":0.15,"4831":0.155,"4832":0.16,"4833":0.165,"4834":0.17,"4835":0.175,"4836":0.18,"4837":0.185,"4838":0.19,"4839":0.195,"4840":0.2,"4841":0.205,"4842":0.21,"4843":0.215,"4844":0.22,"4845":0.225,"4846":0.23,"4847":0.235,"4848":0.24,"4849":0.245,"4850":0.25,"4851":0.255,"4852":0.26,"4853":0.265,"4854":0.27,"4855":0.275,"4856":0.28,"4857":0.285,"4858":0.29,"4859":0.295,"4860":0.3,"4861":0.305,"4862":0.31,"4863":0.315,"4864":0.32,"4865":0.325,"4866":0.33,"4867":0.335,"4868":0.34,"4869":0.345,"4870":0.35,"4871":0.355,"4872":0.36,"4873":0.365,"4874":0.37,"4875":0.375,"4876":0.38,"4877":0.385,"4878":0.39,"4879":0.395,"4880":0.4,"4881":0.405,"4882":0.41,"4883":0.415,"4884":0.42,"4885":0.425,"4886":0.43,"4887":0.435,"4888":0.44,"4889":0.445,"4890":0.45,"4891":0.455,"4892":0.46,"4893":0.465,"4894":0.47,"4895":0.475,"4896":0.48,"4897":0.485,"4898":0.49,"4899":0.495,"4900":0.5,"4901":0.505,"4902":0.51,"4903":0.515,"4904":0.52,"4905":0.525,"4906":0.53,"4907":0.535,"4908":0.54,"4909":0.545,"4910":0.55,"4911":0.555,"4912":0.56,"4913":0.565,"4914":0.57,"4915":0.575,"4916":0.58,"4917":0.585,"4918":0.59,"4919":0.595,"4920":0.6,"4921":0.605,"4922":0.61,"4923":0.615,"4924":0.62,"4925":0.625,"4926":0.63,"4927":0.635,"4928":0.64,"4929":0.645,"4930":0.65,"4931":0.655,"4932":0.66,"4933":0.665,"4934":0.67,"4935":0.675,"4936":0.68,"4937":0.685,"4938":0.69,"4939":0.695,"4940":0.7,"4941":0.705,"4942":0.71,"4943":0.715,"4944":0.72,"4945":0.725,"4946":0.73,"4947":0.735,"4948":0.74,"4949":0.745,"4950":0.75,"4951":0.755,"4952":0.76,"4953":0.765,"4954":0.77,"4955":0.775,"4956":0.78,"4957":0.785,"4958":0.79,"4959":0.795,"4960":0.8,"4961":0.805,"4962":0.81,"4963":0.815,"4964":0.82,"4965":0.825,"4966":0.83,"4967":0.835,"4968":0.84,"4969":0.845,"4970":0.85,"4971":0.855,"4972":0.86,"4973":0.865,"4974":0.87,"4975":0.875,"4976":0.88,"4977":0.885,"4978":0.89,"4979":0.895,"4980":0.9,"4981":0.905,"4982":0.91,"4983":0.915,"4984":0.92,"4985":0.925,"4986":0.93,"4987":0.935,"4988":0.94,"4989":0.945,"4990":0.95,"4991":0.955,"4992":0.96,"4993":0.965,"4994":0.97,"4995":0.975,"4996":0.98,"4997":0.985,"4998":0.99,"4999":0.995,"5000":1.0,"5001":0.005,"5002":0.01,"5003":0.015,"5004":0.02,"5005":0.025,"5006":0.03,"5007":0.035,"5008":0.04,"5009":0.045,"5010":0.05,"5011":0.055,"5012":0.06,"5013":0.065,"5014":0.07,"5015":0.075,"5016":0.08,"5017":0.085,"5018":0.09,"5019":0.095,"5020":0.1,"5021":0.105,"5022":0.11,"5023":0.115,"5024":0.12,"5025":0.125,"5026":0.13,"5027":0.135,"5028":0.14,"5029":0.145,"5030":0.15,"5031":0.155,"5032":0.16,"5033":0.165,"5034":0.17,"5035":0.175,"5036":0.18,"5037":0.185,"5038":0.19,"5039":0.195,"5040":0.2,"5041":0.205,"5042":0.21,"5043":0.215,"5044":0.22,"5045":0.225,"5046":0.23,"5047":0.235,"5048":0.24,"5049":0.245,"5050":0.25,"5051":0.255,"5052":0.26,"5053":0.265,"5054":0.27,"5055":0.275,"5056":0.28,"5057":0.285,"5058":0.29,"5059":0.295,"5060":0.3,"5061":0.305,"5062":0.31,"5063":0.315,"5064":0.32,"5065":0.325,"5066":0.33,"5067":0.335,"5068":0.34,"5069":0.345,"5070":0.35,"5071":0.355,"5072":0.36,"5073":0.365,"5074":0.37,"5075":0.375,"5076":0.38,"5077":0.385,"5078":0.39,"5079":0.395,"5080":0.4,"5081":0.405,"5082":0.41,"5083":0.415,"5084":0.42,"5085":0.425,"5086":0.43,"5087":0.435,"5088":0.44,"5089":0.445,"5090":0.45,"5091":0.455,"5092":0.46,"5093":0.465,"5094":0.47,"5095":0.475,"5096":0.48,"5097":0.485,"5098":0.49,"5099":0.495,"5100":0.5,"5101":0.505,"5102":0.51,"5103":0.515,"5104":0.52,"5105":0.525,"5106":0.53,"5107":0.535,"5108":0.54,"5109":0.545,"5110":0.55,"5111":0.555,"5112":0.56,"5113":0.565,"5114":0.57,"5115":0.575,"5116":0.58,"5117":0.585,"5118":0.59,"5119":0.595,"5120":0.6,"5121":0.605,"5122":0.61,"5123":0.615,"5124":0.62,"5125":0.625,"5126":0.63,"5127":0.635,"5128":0.64,"5129":0.645,"5130":0.65,"5131":0.655,"5132":0.66,"5133":0.665,"5134":0.67,"5135":0.675,"5136":0.68,"5137":0.685,"5138":0.69,"5139":0.695,"5140":0.7,"5141":0.705,"5142":0.71,"5143":0.715,"5144":0.72,"5145":0.725,"5146":0.73,"5147":0.735,"5148":0.74,"5149":0.745,"5150":0.75,"5151":0.755,"5152":0.76,"5153":0.765,"5154":0.77,"5155":0.775,"5156":0.78,"5157":0.785,"5158":0.79,"5159":0.795,"5160":0.8,"5161":0.805,"5162":0.81,"5163":0.815,"5164":0.82,"5165":0.825,"5166":0.83,"5167":0.835,"5168":0.84,"5169":0.845,"5170":0.85,"5171":0.855,"5172":0.86,"5173":0.865,"5174":0.87,"5175":0.875,"5176":0.88,"5177":0.885,"5178":0.89,"5179":0.895,"5180":0.9,"5181":0.905,"5182":0.91,"5183":0.915,"5184":0.92,"5185":0.925,"5186":0.93,"5187":0.935,"5188":0.94,"5189":0.945,"5190":0.95,"5191":0.955,"5192":0.96,"5193":0.965,"5194":0.97,"5195":0.975,"5196":0.98,"5197":0.985,"5198":0.99,"5199":0.995,"5200":1.0,"5201":0.005,"5202":0.01,"5203":0.015,"5204":0.02,"5205":0.025,"5206":0.03,"5207":0.035,"5208":0.04,"5209":0.045,"5210":0.05,"5211":0.055,"5212":0.06,"5213":0.065,"5214":0.07,"5215":0.075,"5216":0.08,"5217":0.085,"5218":0.09,"5219":0.095,"5220":0.1,"5221":0.105,"5222":0.11,"5223":0.115,"5224":0.12,"5225":0.125,"5226":0.13,"5227":0.135,"5228":0.14,"5229":0.145,"5230":0.15,"5231":0.155,"5232":0.16,"5233":0.165,"5234":0.17,"5235":0.175,"5236":0.18,"5237":0.185,"5238":0.19,"5239":0.195,"5240":0.2,"5241":0.205,"5242":0.21,"5243":0.215,"5244":0.22,"5245":0.225,"5246":0.23,"5247":0.235,"5248":0.24,"5249":0.245,"5250":0.25,"5251":0.255,"5252":0.26,"5253":0.265,"5254":0.27,"5255":0.275,"5256":0.28,"5257":0.285,"5258":0.29,"5259":0.295,"5260":0.3,"5261":0.305,"5262":0.31,"5263":0.315,"5264":0.32,"5265":0.325,"5266":0.33,"5267":0.335,"5268":0.34,"5269":0.345,"5270":0.35,"5271":0.355,"5272":0.36,"5273":0.365,"5274":0.37,"5275":0.375,"5276":0.38,"5277":0.385,"5278":0.39,"5279":0.395,"5280":0.4,"5281":0.405,"5282":0.41,"5283":0.415,"5284":0.42,"5285":0.425,"5286":0.43,"5287":0.435,"5288":0.44,"5289":0.445,"5290":0.45,"5291":0.455,"5292":0.46,"5293":0.465,"5294":0.47,"5295":0.475,"5296":0.48,"5297":0.485,"5298":0.49,"5299":0.495,"5300":0.5,"5301":0.505,"5302":0.51,"5303":0.515,"5304":0.52,"5305":0.525,"5306":0.53,"5307":0.535,"5308":0.54,"5309":0.545,"5310":0.55,"5311":0.555,"5312":0.56,"5313":0.565,"5314":0.57,"5315":0.575,"5316":0.58,"5317":0.585,"5318":0.59,"5319":0.595,"5320":0.6,"5321":0.605,"5322":0.61,"5323":0.615,"5324":0.62,"5325":0.625,"5326":0.63,"5327":0.635,"5328":0.64,"5329":0.645,"5330":0.65,"5331":0.655,"5332":0.66,"5333":0.665,"5334":0.67,"5335":0.675,"5336":0.68,"5337":0.685,"5338":0.69,"5339":0.695,"5340":0.7,"5341":0.705,"5342":0.71,"5343":0.715,"5344":0.72,"5345":0.725,"5346":0.73,"5347":0.735,"5348":0.74,"5349":0.745,"5350":0.75,"5351":0.755,"5352":0.76,"5353":0.765,"5354":0.77,"5355":0.775,"5356":0.78,"5357":0.785,"5358":0.79,"5359":0.795,"5360":0.8,"5361":0.805,"5362":0.81,"5363":0.815,"5364":0.82,"5365":0.825,"5366":0.83,"5367":0.835,"5368":0.84,"5369":0.845,"5370":0.85,"5371":0.855,"5372":0.86,"5373":0.865,"5374":0.87,"5375":0.875,"5376":0.88,"5377":0.885,"5378":0.89,"5379":0.895,"5380":0.9,"5381":0.905,"5382":0.91,"5383":0.915,"5384":0.92,"5385":0.925,"5386":0.93,"5387":0.935,"5388":0.94,"5389":0.945,"5390":0.95,"5391":0.955,"5392":0.96,"5393":0.965,"5394":0.97,"5395":0.975,"5396":0.98,"5397":0.985,"5398":0.99,"5399":0.995,"5400":1.0,"5401":0.005,"5402":0.01,"5403":0.015,"5404":0.02,"5405":0.025,"5406":0.03,"5407":0.035,"5408":0.04,"5409":0.045,"5410":0.05,"5411":0.055,"5412":0.06,"5413":0.065,"5414":0.07,"5415":0.075,"5416":0.08,"5417":0.085,"5418":0.09,"5419":0.095,"5420":0.1,"5421":0.105,"5422":0.11,"5423":0.115,"5424":0.12,"5425":0.125,"5426":0.13,"5427":0.135,"5428":0.14,"5429":0.145,"5430":0.15,"5431":0.155,"5432":0.16,"5433":0.165,"5434":0.17,"5435":0.175,"5436":0.18,"5437":0.185,"5438":0.19,"5439":0.195,"5440":0.2,"5441":0.205,"5442":0.21,"5443":0.215,"5444":0.22,"5445":0.225,"5446":0.23,"5447":0.235,"5448":0.24,"5449":0.245,"5450":0.25,"5451":0.255,"5452":0.26,"5453":0.265,"5454":0.27,"5455":0.275,"5456":0.28,"5457":0.285,"5458":0.29,"5459":0.295,"5460":0.3,"5461":0.305,"5462":0.31,"5463":0.315,"5464":0.32,"5465":0.325,"5466":0.33,"5467":0.335,"5468":0.34,"5469":0.345,"5470":0.35,"5471":0.355,"5472":0.36,"5473":0.365,"5474":0.37,"5475":0.375,"5476":0.38,"5477":0.385,"5478":0.39,"5479":0.395,"5480":0.4,"5481":0.405,"5482":0.41,"5483":0.415,"5484":0.42,"5485":0.425,"5486":0.43,"5487":0.435,"5488":0.44,"5489":0.445,"5490":0.45,"5491":0.455,"5492":0.46,"5493":0.465,"5494":0.47,"5495":0.475,"5496":0.48,"5497":0.485,"5498":0.49,"5499":0.495,"5500":0.5,"5501":0.505,"5502":0.51,"5503":0.515,"5504":0.52,"5505":0.525,"5506":0.53,"5507":0.535,"5508":0.54,"5509":0.545,"5510":0.55,"5511":0.555,"5512":0.56,"5513":0.565,"5514":0.57,"5515":0.575,"5516":0.58,"5517":0.585,"5518":0.59,"5519":0.595,"5520":0.6,"5521":0.605,"5522":0.61,"5523":0.615,"5524":0.62,"5525":0.625,"5526":0.63,"5527":0.635,"5528":0.64,"5529":0.645,"5530":0.65,"5531":0.655,"5532":0.66,"5533":0.665,"5534":0.67,"5535":0.675,"5536":0.68,"5537":0.685,"5538":0.69,"5539":0.695,"5540":0.7,"5541":0.705,"5542":0.71,"5543":0.715,"5544":0.72,"5545":0.725,"5546":0.73,"5547":0.735,"5548":0.74,"5549":0.745,"5550":0.75,"5551":0.755,"5552":0.76,"5553":0.765,"5554":0.77,"5555":0.775,"5556":0.78,"5557":0.785,"5558":0.79,"5559":0.795,"5560":0.8,"5561":0.805,"5562":0.81,"5563":0.815,"5564":0.82,"5565":0.825,"5566":0.83,"5567":0.835,"5568":0.84,"5569":0.845,"5570":0.85,"5571":0.855,"5572":0.86,"5573":0.865,"5574":0.87,"5575":0.875,"5576":0.88,"5577":0.885,"5578":0.89,"5579":0.895,"5580":0.9,"5581":0.905,"5582":0.91,"5583":0.915,"5584":0.92,"5585":0.925,"5586":0.93,"5587":0.935,"5588":0.94,"5589":0.945,"5590":0.95,"5591":0.955,"5592":0.96,"5593":0.965,"5594":0.97,"5595":0.975,"5596":0.98,"5597":0.985,"5598":0.99,"5599":0.995,"5600":1.0,"5601":0.005,"5602":0.01,"5603":0.015,"5604":0.02,"5605":0.025,"5606":0.03,"5607":0.035,"5608":0.04,"5609":0.045,"5610":0.05,"5611":0.055,"5612":0.06,"5613":0.065,"5614":0.07,"5615":0.075,"5616":0.08,"5617":0.085,"5618":0.09,"5619":0.095,"5620":0.1,"5621":0.105,"5622":0.11,"5623":0.115,"5624":0.12,"5625":0.125,"5626":0.13,"5627":0.135,"5628":0.14,"5629":0.145,"5630":0.15,"5631":0.155,"5632":0.16,"5633":0.165,"5634":0.17,"5635":0.175,"5636":0.18,"5637":0.185,"5638":0.19,"5639":0.195,"5640":0.2,"5641":0.205,"5642":0.21,"5643":0.215,"5644":0.22,"5645":0.225,"5646":0.23,"5647":0.235,"5648":0.24,"5649":0.245,"5650":0.25,"5651":0.255,"5652":0.26,"5653":0.265,"5654":0.27,"5655":0.275,"5656":0.28,"5657":0.285,"5658":0.29,"5659":0.295,"5660":0.3,"5661":0.305,"5662":0.31,"5663":0.315,"5664":0.32,"5665":0.325,"5666":0.33,"5667":0.335,"5668":0.34,"5669":0.345,"5670":0.35,"5671":0.355,"5672":0.36,"5673":0.365,"5674":0.37,"5675":0.375,"5676":0.38,"5677":0.385,"5678":0.39,"5679":0.395,"5680":0.4,"5681":0.405,"5682":0.41,"5683":0.415,"5684":0.42,"5685":0.425,"5686":0.43,"5687":0.435,"5688":0.44,"5689":0.445,"5690":0.45,"5691":0.455,"5692":0.46,"5693":0.465,"5694":0.47,"5695":0.475,"5696":0.48,"5697":0.485,"5698":0.49,"5699":0.495,"5700":0.5,"5701":0.505,"5702":0.51,"5703":0.515,"5704":0.52,"5705":0.525,"5706":0.53,"5707":0.535,"5708":0.54,"5709":0.545,"5710":0.55,"5711":0.555,"5712":0.56,"5713":0.565,"5714":0.57,"5715":0.575,"5716":0.58,"5717":0.585,"5718":0.59,"5719":0.595,"5720":0.6,"5721":0.605,"5722":0.61,"5723":0.615,"5724":0.62,"5725":0.625,"5726":0.63,"5727":0.635,"5728":0.64,"5729":0.645,"5730":0.65,"5731":0.655,"5732":0.66,"5733":0.665,"5734":0.67,"5735":0.675,"5736":0.68,"5737":0.685,"5738":0.69,"5739":0.695,"5740":0.7,"5741":0.705,"5742":0.71,"5743":0.715,"5744":0.72,"5745":0.725,"5746":0.73,"5747":0.735,"5748":0.74,"5749":0.745,"5750":0.75,"5751":0.755,"5752":0.76,"5753":0.765,"5754":0.77,"5755":0.775,"5756":0.78,"5757":0.785,"5758":0.79,"5759":0.795,"5760":0.8,"5761":0.805,"5762":0.81,"5763":0.815,"5764":0.82,"5765":0.825,"5766":0.83,"5767":0.835,"5768":0.84,"5769":0.845,"5770":0.85,"5771":0.855,"5772":0.86,"5773":0.865,"5774":0.87,"5775":0.875,"5776":0.88,"5777":0.885,"5778":0.89,"5779":0.895,"5780":0.9,"5781":0.905,"5782":0.91,"5783":0.915,"5784":0.92,"5785":0.925,"5786":0.93,"5787":0.935,"5788":0.94,"5789":0.945,"5790":0.95,"5791":0.955,"5792":0.96,"5793":0.965,"5794":0.97,"5795":0.975,"5796":0.98,"5797":0.985,"5798":0.99,"5799":0.995,"5800":1.0,"5801":0.005,"5802":0.01,"5803":0.015,"5804":0.02,"5805":0.025,"5806":0.03,"5807":0.035,"5808":0.04,"5809":0.045,"5810":0.05,"5811":0.055,"5812":0.06,"5813":0.065,"5814":0.07,"5815":0.075,"5816":0.08,"5817":0.085,"5818":0.09,"5819":0.095,"5820":0.1,"5821":0.105,"5822":0.11,"5823":0.115,"5824":0.12,"5825":0.125,"5826":0.13,"5827":0.135,"5828":0.14,"5829":0.145,"5830":0.15,"5831":0.155,"5832":0.16,"5833":0.165,"5834":0.17,"5835":0.175,"5836":0.18,"5837":0.185,"5838":0.19,"5839":0.195,"5840":0.2,"5841":0.205,"5842":0.21,"5843":0.215,"5844":0.22,"5845":0.225,"5846":0.23,"5847":0.235,"5848":0.24,"5849":0.245,"5850":0.25,"5851":0.255,"5852":0.26,"5853":0.265,"5854":0.27,"5855":0.275,"5856":0.28,"5857":0.285,"5858":0.29,"5859":0.295,"5860":0.3,"5861":0.305,"5862":0.31,"5863":0.315,"5864":0.32,"5865":0.325,"5866":0.33,"5867":0.335,"5868":0.34,"5869":0.345,"5870":0.35,"5871":0.355,"5872":0.36,"5873":0.365,"5874":0.37,"5875":0.375,"5876":0.38,"5877":0.385,"5878":0.39,"5879":0.395,"5880":0.4,"5881":0.405,"5882":0.41,"5883":0.415,"5884":0.42,"5885":0.425,"5886":0.43,"5887":0.435,"5888":0.44,"5889":0.445,"5890":0.45,"5891":0.455,"5892":0.46,"5893":0.465,"5894":0.47,"5895":0.475,"5896":0.48,"5897":0.485,"5898":0.49,"5899":0.495,"5900":0.5,"5901":0.505,"5902":0.51,"5903":0.515,"5904":0.52,"5905":0.525,"5906":0.53,"5907":0.535,"5908":0.54,"5909":0.545,"5910":0.55,"5911":0.555,"5912":0.56,"5913":0.565,"5914":0.57,"5915":0.575,"5916":0.58,"5917":0.585,"5918":0.59,"5919":0.595,"5920":0.6,"5921":0.605,"5922":0.61,"5923":0.615,"5924":0.62,"5925":0.625,"5926":0.63,"5927":0.635,"5928":0.64,"5929":0.645,"5930":0.65,"5931":0.655,"5932":0.66,"5933":0.665,"5934":0.67,"5935":0.675,"5936":0.68,"5937":0.685,"5938":0.69,"5939":0.695,"5940":0.7,"5941":0.705,"5942":0.71,"5943":0.715,"5944":0.72,"5945":0.725,"5946":0.73,"5947":0.735,"5948":0.74,"5949":0.745,"5950":0.75,"5951":0.755,"5952":0.76,"5953":0.765,"5954":0.77,"5955":0.775,"5956":0.78,"5957":0.785,"5958":0.79,"5959":0.795,"5960":0.8,"5961":0.805,"5962":0.81,"5963":0.815,"5964":0.82,"5965":0.825,"5966":0.83,"5967":0.835,"5968":0.84,"5969":0.845,"5970":0.85,"5971":0.855,"5972":0.86,"5973":0.865,"5974":0.87,"5975":0.875,"5976":0.88,"5977":0.885,"5978":0.89,"5979":0.895,"5980":0.9,"5981":0.905,"5982":0.91,"5983":0.915,"5984":0.92,"5985":0.925,"5986":0.93,"5987":0.935,"5988":0.94,"5989":0.945,"5990":0.95,"5991":0.955,"5992":0.96,"5993":0.965,"5994":0.97,"5995":0.975,"5996":0.98,"5997":0.985,"5998":0.99,"5999":0.995,"6000":1.0,"6001":0.005,"6002":0.01,"6003":0.015,"6004":0.02,"6005":0.025,"6006":0.03,"6007":0.035,"6008":0.04,"6009":0.045,"6010":0.05,"6011":0.055,"6012":0.06,"6013":0.065,"6014":0.07,"6015":0.075,"6016":0.08,"6017":0.085,"6018":0.09,"6019":0.095,"6020":0.1,"6021":0.105,"6022":0.11,"6023":0.115,"6024":0.12,"6025":0.125,"6026":0.13,"6027":0.135,"6028":0.14,"6029":0.145,"6030":0.15,"6031":0.155,"6032":0.16,"6033":0.165,"6034":0.17,"6035":0.175,"6036":0.18,"6037":0.185,"6038":0.19,"6039":0.195,"6040":0.2,"6041":0.205,"6042":0.21,"6043":0.215,"6044":0.22,"6045":0.225,"6046":0.23,"6047":0.235,"6048":0.24,"6049":0.245,"6050":0.25,"6051":0.255,"6052":0.26,"6053":0.265,"6054":0.27,"6055":0.275,"6056":0.28,"6057":0.285,"6058":0.29,"6059":0.295,"6060":0.3,"6061":0.305,"6062":0.31,"6063":0.315,"6064":0.32,"6065":0.325,"6066":0.33,"6067":0.335,"6068":0.34,"6069":0.345,"6070":0.35,"6071":0.355,"6072":0.36,"6073":0.365,"6074":0.37,"6075":0.375,"6076":0.38,"6077":0.385,"6078":0.39,"6079":0.395,"6080":0.4,"6081":0.405,"6082":0.41,"6083":0.415,"6084":0.42,"6085":0.425,"6086":0.43,"6087":0.435,"6088":0.44,"6089":0.445,"6090":0.45,"6091":0.455,"6092":0.46,"6093":0.465,"6094":0.47,"6095":0.475,"6096":0.48,"6097":0.485,"6098":0.49,"6099":0.495,"6100":0.5,"6101":0.505,"6102":0.51,"6103":0.515,"6104":0.52,"6105":0.525,"6106":0.53,"6107":0.535,"6108":0.54,"6109":0.545,"6110":0.55,"6111":0.555,"6112":0.56,"6113":0.565,"6114":0.57,"6115":0.575,"6116":0.58,"6117":0.585,"6118":0.59,"6119":0.595,"6120":0.6,"6121":0.605,"6122":0.61,"6123":0.615,"6124":0.62,"6125":0.625,"6126":0.63,"6127":0.635,"6128":0.64,"6129":0.645,"6130":0.65,"6131":0.655,"6132":0.66,"6133":0.665,"6134":0.67,"6135":0.675,"6136":0.68,"6137":0.685,"6138":0.69,"6139":0.695,"6140":0.7,"6141":0.705,"6142":0.71,"6143":0.715,"6144":0.72,"6145":0.725,"6146":0.73,"6147":0.735,"6148":0.74,"6149":0.745,"6150":0.75,"6151":0.755,"6152":0.76,"6153":0.765,"6154":0.77,"6155":0.775,"6156":0.78,"6157":0.785,"6158":0.79,"6159":0.795,"6160":0.8,"6161":0.805,"6162":0.81,"6163":0.815,"6164":0.82,"6165":0.825,"6166":0.83,"6167":0.835,"6168":0.84,"6169":0.845,"6170":0.85,"6171":0.855,"6172":0.86,"6173":0.865,"6174":0.87,"6175":0.875,"6176":0.88,"6177":0.885,"6178":0.89,"6179":0.895,"6180":0.9,"6181":0.905,"6182":0.91,"6183":0.915,"6184":0.92,"6185":0.925,"6186":0.93,"6187":0.935,"6188":0.94,"6189":0.945,"6190":0.95,"6191":0.955,"6192":0.96,"6193":0.965,"6194":0.97,"6195":0.975,"6196":0.98,"6197":0.985,"6198":0.99,"6199":0.995,"6200":1.0},"flow_in":{"0":0.0,"1":3.3784881494,"2":1.8069762988,"3":2.7101546914,"4":2.3758330839,"5":2.6596431852,"6":2.6340782865,"7":2.7622765022,"8":2.8131309679,"9":2.9014304769,"10":2.9703940484,"11":3.0475011526,"12":3.1197742723,"13":3.19264836,"14":3.2643139516,"15":3.3344833458,"16":3.4043506159,"17":3.471992371,"18":3.5395585951,"19":3.6045192553,"20":3.6694610326,"21":3.7315126016,"22":3.7935594499,"23":3.8524641319,"24":3.9113676337,"25":3.9668947323,"26":4.0224215358,"27":4.0743523541,"28":4.1262830987,"29":4.1744128005,"30":4.2225424839,"31":4.2666811509,"32":4.3108198132,"33":4.3507932572,"34":4.3907667,"35":4.4264171657,"36":4.4620676311,"37":4.493254423,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2,"201":2.2784881494,"202":2.3569762988,"203":2.4351546914,"204":2.5133330839,"205":2.5908931852,"206":2.6684532865,"207":2.7450890022,"208":2.8217247179,"209":2.8971336019,"210":2.9725424859,"211":3.0464269338,"212":3.1203113817,"213":3.1923798053,"214":3.2644482289,"215":3.3344162071,"216":3.4043841853,"217":3.4719755864,"218":3.5395669874,"219":3.6045150591,"220":3.6694631307,"221":3.7315115526,"222":3.7935599744,"223":3.8524638696,"224":3.9113677648,"225":3.9668946667,"226":4.0224215686,"227":4.0743523377,"228":4.1262831069,"229":4.1744127964,"230":4.2225424859,"231":4.2666811498,"232":4.3108198138,"233":4.3507932569,"234":4.3907667001,"235":4.4264171656,"236":4.4620676312,"237":4.4932544229,"238":4.5244412147,"239":4.5510412527,"240":4.5776412907,"241":4.5995495968,"242":4.6214579028,"243":4.6385880148,"244":4.6557181268,"245":4.6680024401,"246":4.6802867533,"247":4.6876767872,"248":4.6950668211,"249":4.6975334105,"250":4.7,"251":4.6975334105,"252":4.6950668211,"253":4.6876767872,"254":4.6802867533,"255":4.6680024401,"256":4.6557181268,"257":4.6385880148,"258":4.6214579028,"259":4.5995495968,"260":4.5776412907,"261":4.5510412527,"262":4.5244412147,"263":4.4932544229,"264":4.4620676312,"265":4.4264171656,"266":4.3907667001,"267":4.3507932569,"268":4.3108198138,"269":4.2666811498,"270":4.2225424859,"271":4.1744127964,"272":4.1262831069,"273":4.0743523377,"274":4.0224215686,"275":3.9668946667,"276":3.9113677648,"277":3.8524638696,"278":3.7935599744,"279":3.7315115526,"280":3.6694631307,"281":3.6045150591,"282":3.5395669874,"283":3.4719755864,"284":3.4043841853,"285":3.3344162071,"286":3.2644482289,"287":3.1923798053,"288":3.1203113817,"289":3.0464269338,"290":2.9725424859,"291":2.8971336019,"292":2.8217247179,"293":2.7450890022,"294":2.6684532865,"295":2.5908931852,"296":2.5133330839,"297":2.4351546914,"298":2.3569762988,"299":2.2784881494,"300":2.2,"301":2.1215118506,"302":2.0430237012,"303":1.9648453086,"304":1.8866669161,"305":1.8091068148,"306":1.7315467135,"307":1.6549109978,"308":1.5782752821,"309":1.5028663981,"310":1.4274575141,"311":1.3535730662,"312":1.2796886183,"313":1.2076201947,"314":1.1355517711,"315":1.0655837929,"316":0.9956158147,"317":0.9280244136,"318":0.8604330126,"319":0.7954849409,"320":0.7305368693,"321":0.6684884474,"322":0.6064400256,"323":0.5475361304,"324":0.4886322352,"325":0.4331053333,"326":0.3775784314,"327":0.3256476623,"328":0.2737168931,"329":0.2255872036,"330":0.1774575141,"331":0.1333188502,"332":0.0891801862,"333":0.0492067431,"334":0.0092332999,"335":-0.0264171656,"336":-0.0620676312,"337":-0.0932544229,"338":-0.1244412147,"339":-0.1510412527,"340":-0.1776412907,"341":-0.1995495968,"342":-0.2214579028,"343":-0.2385880148,"344":-0.2557181268,"345":-0.2680024401,"346":-0.2802867533,"347":-0.2876767872,"348":-0.2950668211,"349":-0.2975334105,"350":-0.3,"351":-0.2975334105,"352":-0.2950668211,"353":-0.2876767872,"354":-0.2802867533,"355":-0.2680024401,"356":-0.2557181268,"357":-0.2385880148,"358":-0.2214579028,"359":-0.1995495968,"360":-0.1776412907,"361":-0.1510412527,"362":-0.1244412147,"363":-0.0932544229,"364":-0.0620676312,"365":-0.0264171656,"366":0.0092332999,"367":0.0492067431,"368":0.0891801862,"369":0.1333188502,"370":0.1774575141,"371":0.2255872036,"372":0.2737168931,"373":0.3256476623,"374":0.3775784314,"375":0.4331053333,"376":0.4886322352,"377":0.5475361304,"378":0.6064400256,"379":0.6684884474,"380":0.7305368693,"381":0.7954849409,"382":0.8604330126,"383":0.9280244136,"384":0.9956158147,"385":1.0655837929,"386":1.1355517711,"387":1.2076201947,"388":1.2796886183,"389":1.3535730662,"390":1.4274575141,"391":1.5028663981,"392":1.5782752821,"393":1.6549109978,"394":1.7315467135,"395":1.8091068148,"396":1.8866669161,"397":1.9648453086,"398":2.0430237012,"399":2.1215118506,"400":2.2,"401":2.2784881494,"402":2.3569762988,"403":2.4351546914,"404":2.5133330839,"405":2.5908931852,"406":2.6684532865,"407":2.7450890022,"408":2.8217247179,"409":2.8971336019,"410":2.9725424859,"411":3.0464269338,"412":3.1203113817,"413":3.1923798053,"414":3.2644482289,"415":3.3344162071,"416":3.4043841853,"417":3.4719755864,"418":3.5395669874,"419":3.6045150591,"420":3.6694631307,"421":3.7315115526,"422":3.7935599744,"423":3.8524638696,"424":3.9113677648,"425":3.9668946667,"426":4.0224215686,"427":4.0743523377,"428":4.1262831069,"429":4.1744127964,"430":4.2225424859,"431":4.2666811498,"432":4.3108198138,"433":4.3507932569,"434":4.3907667001,"435":4.4264171656,"436":4.4620676312,"437":4.4932544229,"438":4.5244412147,"439":4.5510412527,"440":4.5776412907,"441":4.5995495968,"442":4.6214579028,"443":4.6385880148,"444":4.6557181268,"445":4.6680024401,"446":4.6802867533,"447":4.6876767872,"448":4.6950668211,"449":4.6975334105,"450":4.7,"451":4.6975334105,"452":4.6950668211,"453":4.6876767872,"454":4.6802867533,"455":4.6680024401,"456":4.6557181268,"457":4.6385880148,"458":4.6214579028,"459":4.5995495968,"460":4.5776412907,"461":4.5510412527,"462":4.5244412147,"463":4.4932544229,"464":4.4620676312,"465":4.4264171656,"466":4.3907667001,"467":4.3507932569,"468":4.3108198138,"469":4.2666811498,"470":4.2225424859,"471":4.1744127964,"472":4.1262831069,"473":4.0743523377,"474":4.0224215686,"475":3.9668946667,"476":3.9113677648,"477":3.8524638696,"478":3.7935599744,"479":3.7315115526,"480":3.6694631307,"481":3.6045150591,"482":3.5395669874,"483":3.4719755864,"484":3.4043841853,"485":3.3344162071,"486":3.2644482289,"487":3.1923798053,"488":3.1203113817,"489":3.0464269338,"490":2.9725424859,"491":2.8971336019,"492":2.8217247179,"493":2.7450890022,"494":2.6684532865,"495":2.5908931852,"496":2.5133330839,"497":2.4351546914,"498":2.3569762988,"499":2.2784881494,"500":2.2,"501":2.1215118506,"502":2.0430237012,"503":1.9648453086,"504":1.8866669161,"505":1.8091068148,"506":1.7315467135,"507":1.6549109978,"508":1.5782752821,"509":1.5028663981,"510":1.4274575141,"511":1.3535730662,"512":1.2796886183,"513":1.2076201947,"514":1.1355517711,"515":1.0655837929,"516":0.9956158147,"517":0.9280244136,"518":0.8604330126,"519":0.7954849409,"520":0.7305368693,"521":0.6684884474,"522":0.6064400256,"523":0.5475361304,"524":0.4886322352,"525":0.4331053333,"526":0.3775784314,"527":0.3256476623,"528":0.2737168931,"529":0.2255872036,"530":0.1774575141,"531":0.1333188502,"532":0.0891801862,"533":0.0492067431,"534":0.0092332999,"535":-0.0264171656,"536":-0.0620676312,"537":-0.0932544229,"538":-0.1244412147,"539":-0.1510412527,"540":-0.1776412907,"541":-0.1995495968,"542":-0.2214579028,"543":-0.2385880148,"544":-0.2557181268,"545":-0.2680024401,"546":-0.2802867533,"547":-0.2876767872,"548":-0.2950668211,"549":-0.2975334105,"550":-0.3,"551":-0.2975334105,"552":-0.2950668211,"553":-0.2876767872,"554":-0.2802867533,"555":-0.2680024401,"556":-0.2557181268,"557":-0.2385880148,"558":-0.2214579028,"559":-0.1995495968,"560":-0.1776412907,"561":-0.1510412527,"562":-0.1244412147,"563":-0.0932544229,"564":-0.0620676312,"565":-0.0264171656,"566":0.0092332999,"567":0.0492067431,"568":0.0891801862,"569":0.1333188502,"570":0.1774575141,"571":0.2255872036,"572":0.2737168931,"573":0.3256476623,"574":0.3775784314,"575":0.4331053333,"576":0.4886322352,"577":0.5475361304,"578":0.6064400256,"579":0.6684884474,"580":0.7305368693,"581":0.7954849409,"582":0.8604330126,"583":0.9280244136,"584":0.9956158147,"585":1.0655837929,"586":1.1355517711,"587":1.2076201947,"588":1.2796886183,"589":1.3535730662,"590":1.4274575141,"591":1.5028663981,"592":1.5782752821,"593":1.6549109978,"594":1.7315467135,"595":1.8091068148,"596":1.8866669161,"597":1.9648453086,"598":2.0430237012,"599":2.1215118506,"600":2.2,"601":2.2784881494,"602":2.3569762988,"603":2.4351546914,"604":2.5133330839,"605":2.5908931852,"606":2.6684532865,"607":2.7450890022,"608":2.8217247179,"609":2.8971336019,"610":2.9725424859,"611":3.0464269338,"612":3.1203113817,"613":3.1923798053,"614":3.2644482289,"615":3.3344162071,"616":3.4043841853,"617":3.4719755864,"618":3.5395669874,"619":3.6045150591,"620":3.6694631307,"621":3.7315115526,"622":3.7935599744,"623":3.8524638696,"624":3.9113677648,"625":3.9668946667,"626":4.0224215686,"627":4.0743523377,"628":4.1262831069,"629":4.1744127964,"630":4.2225424859,"631":4.2666811498,"632":4.3108198138,"633":4.3507932569,"634":4.3907667001,"635":4.4264171656,"636":4.4620676312,"637":4.4932544229,"638":4.5244412147,"639":4.5510412527,"640":4.5776412907,"641":4.5995495968,"642":4.6214579028,"643":4.6385880148,"644":4.6557181268,"645":4.6680024401,"646":4.6802867533,"647":4.6876767872,"648":4.6950668211,"649":4.6975334105,"650":4.7,"651":4.6975334105,"652":4.6950668211,"653":4.6876767872,"654":4.6802867533,"655":4.6680024401,"656":4.6557181268,"657":4.6385880148,"658":4.6214579028,"659":4.5995495968,"660":4.5776412907,"661":4.5510412527,"662":4.5244412147,"663":4.4932544229,"664":4.4620676312,"665":4.4264171656,"666":4.3907667001,"667":4.3507932569,"668":4.3108198138,"669":4.2666811498,"670":4.2225424859,"671":4.1744127964,"672":4.1262831069,"673":4.0743523377,"674":4.0224215686,"675":3.9668946667,"676":3.9113677648,"677":3.8524638696,"678":3.7935599744,"679":3.7315115526,"680":3.6694631307,"681":3.6045150591,"682":3.5395669874,"683":3.4719755864,"684":3.4043841853,"685":3.3344162071,"686":3.2644482289,"687":3.1923798053,"688":3.1203113817,"689":3.0464269338,"690":2.9725424859,"691":2.8971336019,"692":2.8217247179,"693":2.7450890022,"694":2.6684532865,"695":2.5908931852,"696":2.5133330839,"697":2.4351546914,"698":2.3569762988,"699":2.2784881494,"700":2.2,"701":2.1215118506,"702":2.0430237012,"703":1.9648453086,"704":1.8866669161,"705":1.8091068148,"706":1.7315467135,"707":1.6549109978,"708":1.5782752821,"709":1.5028663981,"710":1.4274575141,"711":1.3535730662,"712":1.2796886183,"713":1.2076201947,"714":1.1355517711,"715":1.0655837929,"716":0.9956158147,"717":0.9280244136,"718":0.8604330126,"719":0.7954849409,"720":0.7305368693,"721":0.6684884474,"722":0.6064400256,"723":0.5475361304,"724":0.4886322352,"725":0.4331053333,"726":0.3775784314,"727":0.3256476623,"728":0.2737168931,"729":0.2255872036,"730":0.1774575141,"731":0.1333188502,"732":0.0891801862,"733":0.0492067431,"734":0.0092332999,"735":-0.0264171656,"736":-0.0620676312,"737":-0.0932544229,"738":-0.1244412147,"739":-0.1510412527,"740":-0.1776412907,"741":-0.1995495968,"742":-0.2214579028,"743":-0.2385880148,"744":-0.2557181268,"745":-0.2680024401,"746":-0.2802867533,"747":-0.2876767872,"748":-0.2950668211,"749":-0.2975334105,"750":-0.3,"751":-0.2975334105,"752":-0.2950668211,"753":-0.2876767872,"754":-0.2802867533,"755":-0.2680024401,"756":-0.2557181268,"757":-0.2385880148,"758":-0.2214579028,"759":-0.1995495968,"760":-0.1776412907,"761":-0.1510412527,"762":-0.1244412147,"763":-0.0932544229,"764":-0.0620676312,"765":-0.0264171656,"766":0.0092332999,"767":0.0492067431,"768":0.0891801862,"769":0.1333188502,"770":0.1774575141,"771":0.2255872036,"772":0.2737168931,"773":0.3256476623,"774":0.3775784314,"775":0.4331053333,"776":0.4886322352,"777":0.5475361304,"778":0.6064400256,"779":0.6684884474,"780":0.7305368693,"781":0.7954849409,"782":0.8604330126,"783":0.9280244136,"784":0.9956158147,"785":1.0655837929,"786":1.1355517711,"787":1.2076201947,"788":1.2796886183,"789":1.3535730662,"790":1.4274575141,"791":1.5028663981,"792":1.5782752821,"793":1.6549109978,"794":1.7315467135,"795":1.8091068148,"796":1.8866669161,"797":1.9648453086,"798":2.0430237012,"799":2.1215118506,"800":2.2,"801":2.2784881494,"802":2.3569762988,"803":2.4351546914,"804":2.5133330839,"805":2.5908931852,"806":2.6684532865,"807":2.7450890022,"808":2.8217247179,"809":2.8971336019,"810":2.9725424859,"811":3.0464269338,"812":3.1203113817,"813":3.1923798053,"814":3.2644482289,"815":3.3344162071,"816":3.4043841853,"817":3.4719755864,"818":3.5395669874,"819":3.6045150591,"820":3.6694631307,"821":3.7315115526,"822":3.7935599744,"823":3.8524638696,"824":3.9113677648,"825":3.9668946667,"826":4.0224215686,"827":4.0743523377,"828":4.1262831069,"829":4.1744127964,"830":4.2225424859,"831":4.2666811498,"832":4.3108198138,"833":4.3507932569,"834":4.3907667001,"835":4.4264171656,"836":4.4620676312,"837":4.4932544229,"838":4.5244412147,"839":4.5510412527,"840":4.5776412907,"841":4.5995495968,"842":4.6214579028,"843":4.6385880148,"844":4.6557181268,"845":4.6680024401,"846":4.6802867533,"847":4.6876767872,"848":4.6950668211,"849":4.6975334105,"850":4.7,"851":4.6975334105,"852":4.6950668211,"853":4.6876767872,"854":4.6802867533,"855":4.6680024401,"856":4.6557181268,"857":4.6385880148,"858":4.6214579028,"859":4.5995495968,"860":4.5776412907,"861":4.5510412527,"862":4.5244412147,"863":4.4932544229,"864":4.4620676312,"865":4.4264171656,"866":4.3907667001,"867":4.3507932569,"868":4.3108198138,"869":4.2666811498,"870":4.2225424859,"871":4.1744127964,"872":4.1262831069,"873":4.0743523377,"874":4.0224215686,"875":3.9668946667,"876":3.9113677648,"877":3.8524638696,"878":3.7935599744,"879":3.7315115526,"880":3.6694631307,"881":3.6045150591,"882":3.5395669874,"883":3.4719755864,"884":3.4043841853,"885":3.3344162071,"886":3.2644482289,"887":3.1923798053,"888":3.1203113817,"889":3.0464269338,"890":2.9725424859,"891":2.8971336019,"892":2.8217247179,"893":2.7450890022,"894":2.6684532865,"895":2.5908931852,"896":2.5133330839,"897":2.4351546914,"898":2.3569762988,"899":2.2784881494,"900":2.2,"901":2.1215118506,"902":2.0430237012,"903":1.9648453086,"904":1.8866669161,"905":1.8091068148,"906":1.7315467135,"907":1.6549109978,"908":1.5782752821,"909":1.5028663981,"910":1.4274575141,"911":1.3535730662,"912":1.2796886183,"913":1.2076201947,"914":1.1355517711,"915":1.0655837929,"916":0.9956158147,"917":0.9280244136,"918":0.8604330126,"919":0.7954849409,"920":0.7305368693,"921":0.6684884474,"922":0.6064400256,"923":0.5475361304,"924":0.4886322352,"925":0.4331053333,"926":0.3775784314,"927":0.3256476623,"928":0.2737168931,"929":0.2255872036,"930":0.1774575141,"931":0.1333188502,"932":0.0891801862,"933":0.0492067431,"934":0.0092332999,"935":-0.0264171656,"936":-0.0620676312,"937":-0.0932544229,"938":-0.1244412147,"939":-0.1510412527,"940":-0.1776412907,"941":-0.1995495968,"942":-0.2214579028,"943":-0.2385880148,"944":-0.2557181268,"945":-0.2680024401,"946":-0.2802867533,"947":-0.2876767872,"948":-0.2950668211,"949":-0.2975334105,"950":-0.3,"951":-0.2975334105,"952":-0.2950668211,"953":-0.2876767872,"954":-0.2802867533,"955":-0.2680024401,"956":-0.2557181268,"957":-0.2385880148,"958":-0.2214579028,"959":-0.1995495968,"960":-0.1776412907,"961":-0.1510412527,"962":-0.1244412147,"963":-0.0932544229,"964":-0.0620676312,"965":-0.0264171656,"966":0.0092332999,"967":0.0492067431,"968":0.0891801862,"969":0.1333188502,"970":0.1774575141,"971":0.2255872036,"972":0.2737168931,"973":0.3256476623,"974":0.3775784314,"975":0.4331053333,"976":0.4886322352,"977":0.5475361304,"978":0.6064400256,"979":0.6684884474,"980":0.7305368693,"981":0.7954849409,"982":0.8604330126,"983":0.9280244136,"984":0.9956158147,"985":1.0655837929,"986":1.1355517711,"987":1.2076201947,"988":1.2796886183,"989":1.3535730662,"990":1.4274575141,"991":1.5028663981,"992":1.5782752821,"993":1.6549109978,"994":1.7315467135,"995":1.8091068148,"996":1.8866669161,"997":1.9648453086,"998":2.0430237012,"999":2.1215118506,"1000":2.2,"1001":2.2784881494,"1002":2.3569762988,"1003":2.4351546914,"1004":2.5133330839,"1005":2.5908931852,"1006":2.6684532865,"1007":2.7450890022,"1008":2.8217247179,"1009":2.8971336019,"1010":2.9725424859,"1011":3.0464269338,"1012":3.1203113817,"1013":3.1923798053,"1014":3.2644482289,"1015":3.3344162071,"1016":3.4043841853,"1017":3.4719755864,"1018":3.5395669874,"1019":3.6045150591,"1020":3.6694631307,"1021":3.7315115526,"1022":3.7935599744,"1023":3.8524638696,"1024":3.9113677648,"1025":3.9668946667,"1026":4.0224215686,"1027":4.0743523377,"1028":4.1262831069,"1029":4.1744127964,"1030":4.2225424859,"1031":4.2666811498,"1032":4.3108198138,"1033":4.3507932569,"1034":4.3907667001,"1035":4.4264171656,"1036":4.4620676312,"1037":4.4932544229,"1038":4.5244412147,"1039":4.5510412527,"1040":4.5776412907,"1041":4.5995495968,"1042":4.6214579028,"1043":4.6385880148,"1044":4.6557181268,"1045":4.6680024401,"1046":4.6802867533,"1047":4.6876767872,"1048":4.6950668211,"1049":4.6975334105,"1050":4.7,"1051":4.6975334105,"1052":4.6950668211,"1053":4.6876767872,"1054":4.6802867533,"1055":4.6680024401,"1056":4.6557181268,"1057":4.6385880148,"1058":4.6214579028,"1059":4.5995495968,"1060":4.5776412907,"1061":4.5510412527,"1062":4.5244412147,"1063":4.4932544229,"1064":4.4620676312,"1065":4.4264171656,"1066":4.3907667001,"1067":4.3507932569,"1068":4.3108198138,"1069":4.2666811498,"1070":4.2225424859,"1071":4.1744127964,"1072":4.1262831069,"1073":4.0743523377,"1074":4.0224215686,"1075":3.9668946667,"1076":3.9113677648,"1077":3.8524638696,"1078":3.7935599744,"1079":3.7315115526,"1080":3.6694631307,"1081":3.6045150591,"1082":3.5395669874,"1083":3.4719755864,"1084":3.4043841853,"1085":3.3344162071,"1086":3.2644482289,"1087":3.1923798053,"1088":3.1203113817,"1089":3.0464269338,"1090":2.9725424859,"1091":2.8971336019,"1092":2.8217247179,"1093":2.7450890022,"1094":2.6684532865,"1095":2.5908931852,"1096":2.5133330839,"1097":2.4351546914,"1098":2.3569762988,"1099":2.2784881494,"1100":2.2,"1101":2.1215118506,"1102":2.0430237012,"1103":1.9648453086,"1104":1.8866669161,"1105":1.8091068148,"1106":1.7315467135,"1107":1.6549109978,"1108":1.5782752821,"1109":1.5028663981,"1110":1.4274575141,"1111":1.3535730662,"1112":1.2796886183,"1113":1.2076201947,"1114":1.1355517711,"1115":1.0655837929,"1116":0.9956158147,"1117":0.9280244136,"1118":0.8604330126,"1119":0.7954849409,"1120":0.7305368693,"1121":0.6684884474,"1122":0.6064400256,"1123":0.5475361304,"1124":0.4886322352,"1125":0.4331053333,"1126":0.3775784314,"1127":0.3256476623,"1128":0.2737168931,"1129":0.2255872036,"1130":0.1774575141,"1131":0.1333188502,"1132":0.0891801862,"1133":0.0492067431,"1134":0.0092332999,"1135":-0.0264171656,"1136":-0.0620676312,"1137":-0.0932544229,"1138":-0.1244412147,"1139":-0.1510412527,"1140":-0.1776412907,"1141":-0.1995495968,"1142":-0.2214579028,"1143":-0.2385880148,"1144":-0.2557181268,"1145":-0.2680024401,"1146":-0.2802867533,"1147":-0.2876767872,"1148":-0.2950668211,"1149":-0.2975334105,"1150":-0.3,"1151":-0.2975334105,"1152":-0.2950668211,"1153":-0.2876767872,"1154":-0.2802867533,"1155":-0.2680024401,"1156":-0.2557181268,"1157":-0.2385880148,"1158":-0.2214579028,"1159":-0.1995495968,"1160":-0.1776412907,"1161":-0.1510412527,"1162":-0.1244412147,"1163":-0.0932544229,"1164":-0.0620676312,"1165":-0.0264171656,"1166":0.0092332999,"1167":0.0492067431,"1168":0.0891801862,"1169":0.1333188502,"1170":0.1774575141,"1171":0.2255872036,"1172":0.2737168931,"1173":0.3256476623,"1174":0.3775784314,"1175":0.4331053333,"1176":0.4886322352,"1177":0.5475361304,"1178":0.6064400256,"1179":0.6684884474,"1180":0.7305368693,"1181":0.7954849409,"1182":0.8604330126,"1183":0.9280244136,"1184":0.9956158147,"1185":1.0655837929,"1186":1.1355517711,"1187":1.2076201947,"1188":1.2796886183,"1189":1.3535730662,"1190":1.4274575141,"1191":1.5028663981,"1192":1.5782752821,"1193":1.6549109978,"1194":1.7315467135,"1195":1.8091068148,"1196":1.8866669161,"1197":1.9648453086,"1198":2.0430237012,"1199":2.1215118506,"1200":2.2,"1201":2.2784881494,"1202":2.3569762988,"1203":2.4351546914,"1204":2.5133330839,"1205":2.5908931852,"1206":2.6684532865,"1207":2.7450890022,"1208":2.8217247179,"1209":2.8971336019,"1210":2.9725424859,"1211":3.0464269338,"1212":3.1203113817,"1213":3.1923798053,"1214":3.2644482289,"1215":3.3344162071,"1216":3.4043841853,"1217":3.4719755864,"1218":3.5395669874,"1219":3.6045150591,"1220":3.6694631307,"1221":3.7315115526,"1222":3.7935599744,"1223":3.8524638696,"1224":3.9113677648,"1225":3.9668946667,"1226":4.0224215686,"1227":4.0743523377,"1228":4.1262831069,"1229":4.1744127964,"1230":4.2225424859,"1231":4.2666811498,"1232":4.3108198138,"1233":4.3507932569,"1234":4.3907667001,"1235":4.4264171656,"1236":4.4620676312,"1237":4.4932544229,"1238":4.5244412147,"1239":4.5510412527,"1240":4.5776412907,"1241":4.5995495968,"1242":4.6214579028,"1243":4.6385880148,"1244":4.6557181268,"1245":4.6680024401,"1246":4.6802867533,"1247":4.6876767872,"1248":4.6950668211,"1249":4.6975334105,"1250":4.7,"1251":4.6975334105,"1252":4.6950668211,"1253":4.6876767872,"1254":4.6802867533,"1255":4.6680024401,"1256":4.6557181268,"1257":4.6385880148,"1258":4.6214579028,"1259":4.5995495968,"1260":4.5776412907,"1261":4.5510412527,"1262":4.5244412147,"1263":4.4932544229,"1264":4.4620676312,"1265":4.4264171656,"1266":4.3907667001,"1267":4.3507932569,"1268":4.3108198138,"1269":4.2666811498,"1270":4.2225424859,"1271":4.1744127964,"1272":4.1262831069,"1273":4.0743523377,"1274":4.0224215686,"1275":3.9668946667,"1276":3.9113677648,"1277":3.8524638696,"1278":3.7935599744,"1279":3.7315115526,"1280":3.6694631307,"1281":3.6045150591,"1282":3.5395669874,"1283":3.4719755864,"1284":3.4043841853,"1285":3.3344162071,"1286":3.2644482289,"1287":3.1923798053,"1288":3.1203113817,"1289":3.0464269338,"1290":2.9725424859,"1291":2.8971336019,"1292":2.8217247179,"1293":2.7450890022,"1294":2.6684532865,"1295":2.5908931852,"1296":2.5133330839,"1297":2.4351546914,"1298":2.3569762988,"1299":2.2784881494,"1300":2.2,"1301":2.1215118506,"1302":2.0430237012,"1303":1.9648453086,"1304":1.8866669161,"1305":1.8091068148,"1306":1.7315467135,"1307":1.6549109978,"1308":1.5782752821,"1309":1.5028663981,"1310":1.4274575141,"1311":1.3535730662,"1312":1.2796886183,"1313":1.2076201947,"1314":1.1355517711,"1315":1.0655837929,"1316":0.9956158147,"1317":0.9280244136,"1318":0.8604330126,"1319":0.7954849409,"1320":0.7305368693,"1321":0.6684884474,"1322":0.6064400256,"1323":0.5475361304,"1324":0.4886322352,"1325":0.4331053333,"1326":0.3775784314,"1327":0.3256476623,"1328":0.2737168931,"1329":0.2255872036,"1330":0.1774575141,"1331":0.1333188502,"1332":0.0891801862,"1333":0.0492067431,"1334":0.0092332999,"1335":-0.0264171656,"1336":-0.0620676312,"1337":-0.0932544229,"1338":-0.1244412147,"1339":-0.1510412527,"1340":-0.1776412907,"1341":-0.1995495968,"1342":-0.2214579028,"1343":-0.2385880148,"1344":-0.2557181268,"1345":-0.2680024401,"1346":-0.2802867533,"1347":-0.2876767872,"1348":-0.2950668211,"1349":-0.2975334105,"1350":-0.3,"1351":-0.2975334105,"1352":-0.2950668211,"1353":-0.2876767872,"1354":-0.2802867533,"1355":-0.2680024401,"1356":-0.2557181268,"1357":-0.2385880148,"1358":-0.2214579028,"1359":-0.1995495968,"1360":-0.1776412907,"1361":-0.1510412527,"1362":-0.1244412147,"1363":-0.0932544229,"1364":-0.0620676312,"1365":-0.0264171656,"1366":0.0092332999,"1367":0.0492067431,"1368":0.0891801862,"1369":0.1333188502,"1370":0.1774575141,"1371":0.2255872036,"1372":0.2737168931,"1373":0.3256476623,"1374":0.3775784314,"1375":0.4331053333,"1376":0.4886322352,"1377":0.5475361304,"1378":0.6064400256,"1379":0.6684884474,"1380":0.7305368693,"1381":0.7954849409,"1382":0.8604330126,"1383":0.9280244136,"1384":0.9956158147,"1385":1.0655837929,"1386":1.1355517711,"1387":1.2076201947,"1388":1.2796886183,"1389":1.3535730662,"1390":1.4274575141,"1391":1.5028663981,"1392":1.5782752821,"1393":1.6549109978,"1394":1.7315467135,"1395":1.8091068148,"1396":1.8866669161,"1397":1.9648453086,"1398":2.0430237012,"1399":2.1215118506,"1400":2.2,"1401":2.2784881494,"1402":2.3569762988,"1403":2.4351546914,"1404":2.5133330839,"1405":2.5908931852,"1406":2.6684532865,"1407":2.7450890022,"1408":2.8217247179,"1409":2.8971336019,"1410":2.9725424859,"1411":3.0464269338,"1412":3.1203113817,"1413":3.1923798053,"1414":3.2644482289,"1415":3.3344162071,"1416":3.4043841853,"1417":3.4719755864,"1418":3.5395669874,"1419":3.6045150591,"1420":3.6694631307,"1421":3.7315115526,"1422":3.7935599744,"1423":3.8524638696,"1424":3.9113677648,"1425":3.9668946667,"1426":4.0224215686,"1427":4.0743523377,"1428":4.1262831069,"1429":4.1744127964,"1430":4.2225424859,"1431":4.2666811498,"1432":4.3108198138,"1433":4.3507932569,"1434":4.3907667001,"1435":4.4264171656,"1436":4.4620676312,"1437":4.4932544229,"1438":4.5244412147,"1439":4.5510412527,"1440":4.5776412907,"1441":4.5995495968,"1442":4.6214579028,"1443":4.6385880148,"1444":4.6557181268,"1445":4.6680024401,"1446":4.6802867533,"1447":4.6876767872,"1448":4.6950668211,"1449":4.6975334105,"1450":4.7,"1451":4.6975334105,"1452":4.6950668211,"1453":4.6876767872,"1454":4.6802867533,"1455":4.6680024401,"1456":4.6557181268,"1457":4.6385880148,"1458":4.6214579028,"1459":4.5995495968,"1460":4.5776412907,"1461":4.5510412527,"1462":4.5244412147,"1463":4.4932544229,"1464":4.4620676312,"1465":4.4264171656,"1466":4.3907667001,"1467":4.3507932569,"1468":4.3108198138,"1469":4.2666811498,"1470":4.2225424859,"1471":4.1744127964,"1472":4.1262831069,"1473":4.0743523377,"1474":4.0224215686,"1475":3.9668946667,"1476":3.9113677648,"1477":3.8524638696,"1478":3.7935599744,"1479":3.7315115526,"1480":3.6694631307,"1481":3.6045150591,"1482":3.5395669874,"1483":3.4719755864,"1484":3.4043841853,"1485":3.3344162071,"1486":3.2644482289,"1487":3.1923798053,"1488":3.1203113817,"1489":3.0464269338,"1490":2.9725424859,"1491":2.8971336019,"1492":2.8217247179,"1493":2.7450890022,"1494":2.6684532865,"1495":2.5908931852,"1496":2.5133330839,"1497":2.4351546914,"1498":2.3569762988,"1499":2.2784881494,"1500":2.2,"1501":2.1215118506,"1502":2.0430237012,"1503":1.9648453086,"1504":1.8866669161,"1505":1.8091068148,"1506":1.7315467135,"1507":1.6549109978,"1508":1.5782752821,"1509":1.5028663981,"1510":1.4274575141,"1511":1.3535730662,"1512":1.2796886183,"1513":1.2076201947,"1514":1.1355517711,"1515":1.0655837929,"1516":0.9956158147,"1517":0.9280244136,"1518":0.8604330126,"1519":0.7954849409,"1520":0.7305368693,"1521":0.6684884474,"1522":0.6064400256,"1523":0.5475361304,"1524":0.4886322352,"1525":0.4331053333,"1526":0.3775784314,"1527":0.3256476623,"1528":0.2737168931,"1529":0.2255872036,"1530":0.1774575141,"1531":0.1333188502,"1532":0.0891801862,"1533":0.0492067431,"1534":0.0092332999,"1535":-0.0264171656,"1536":-0.0620676312,"1537":-0.0932544229,"1538":-0.1244412147,"1539":-0.1510412527,"1540":-0.1776412907,"1541":-0.1995495968,"1542":-0.2214579028,"1543":-0.2385880148,"1544":-0.2557181268,"1545":-0.2680024401,"1546":-0.2802867533,"1547":-0.2876767872,"1548":-0.2950668211,"1549":-0.2975334105,"1550":-0.3,"1551":-0.2975334105,"1552":-0.2950668211,"1553":-0.2876767872,"1554":-0.2802867533,"1555":-0.2680024401,"1556":-0.2557181268,"1557":-0.2385880148,"1558":-0.2214579028,"1559":-0.1995495968,"1560":-0.1776412907,"1561":-0.1510412527,"1562":-0.1244412147,"1563":-0.0932544229,"1564":-0.0620676312,"1565":-0.0264171656,"1566":0.0092332999,"1567":0.0492067431,"1568":0.0891801862,"1569":0.1333188502,"1570":0.1774575141,"1571":0.2255872036,"1572":0.2737168931,"1573":0.3256476623,"1574":0.3775784314,"1575":0.4331053333,"1576":0.4886322352,"1577":0.5475361304,"1578":0.6064400256,"1579":0.6684884474,"1580":0.7305368693,"1581":0.7954849409,"1582":0.8604330126,"1583":0.9280244136,"1584":0.9956158147,"1585":1.0655837929,"1586":1.1355517711,"1587":1.2076201947,"1588":1.2796886183,"1589":1.3535730662,"1590":1.4274575141,"1591":1.5028663981,"1592":1.5782752821,"1593":1.6549109978,"1594":1.7315467135,"1595":1.8091068148,"1596":1.8866669161,"1597":1.9648453086,"1598":2.0430237012,"1599":2.1215118506,"1600":2.2,"1601":2.2784881494,"1602":2.3569762988,"1603":2.4351546914,"1604":2.5133330839,"1605":2.5908931852,"1606":2.6684532865,"1607":2.7450890022,"1608":2.8217247179,"1609":2.8971336019,"1610":2.9725424859,"1611":3.0464269338,"1612":3.1203113817,"1613":3.1923798053,"1614":3.2644482289,"1615":3.3344162071,"1616":3.4043841853,"1617":3.4719755864,"1618":3.5395669874,"1619":3.6045150591,"1620":3.6694631307,"1621":3.7315115526,"1622":3.7935599744,"1623":3.8524638696,"1624":3.9113677648,"1625":3.9668946667,"1626":4.0224215686,"1627":4.0743523377,"1628":4.1262831069,"1629":4.1744127964,"1630":4.2225424859,"1631":4.2666811498,"1632":4.3108198138,"1633":4.3507932569,"1634":4.3907667001,"1635":4.4264171656,"1636":4.4620676312,"1637":4.4932544229,"1638":4.5244412147,"1639":4.5510412527,"1640":4.5776412907,"1641":4.5995495968,"1642":4.6214579028,"1643":4.6385880148,"1644":4.6557181268,"1645":4.6680024401,"1646":4.6802867533,"1647":4.6876767872,"1648":4.6950668211,"1649":4.6975334105,"1650":4.7,"1651":4.6975334105,"1652":4.6950668211,"1653":4.6876767872,"1654":4.6802867533,"1655":4.6680024401,"1656":4.6557181268,"1657":4.6385880148,"1658":4.6214579028,"1659":4.5995495968,"1660":4.5776412907,"1661":4.5510412527,"1662":4.5244412147,"1663":4.4932544229,"1664":4.4620676312,"1665":4.4264171656,"1666":4.3907667001,"1667":4.3507932569,"1668":4.3108198138,"1669":4.2666811498,"1670":4.2225424859,"1671":4.1744127964,"1672":4.1262831069,"1673":4.0743523377,"1674":4.0224215686,"1675":3.9668946667,"1676":3.9113677648,"1677":3.8524638696,"1678":3.7935599744,"1679":3.7315115526,"1680":3.6694631307,"1681":3.6045150591,"1682":3.5395669874,"1683":3.4719755864,"1684":3.4043841853,"1685":3.3344162071,"1686":3.2644482289,"1687":3.1923798053,"1688":3.1203113817,"1689":3.0464269338,"1690":2.9725424859,"1691":2.8971336019,"1692":2.8217247179,"1693":2.7450890022,"1694":2.6684532865,"1695":2.5908931852,"1696":2.5133330839,"1697":2.4351546914,"1698":2.3569762988,"1699":2.2784881494,"1700":2.2,"1701":2.1215118506,"1702":2.0430237012,"1703":1.9648453086,"1704":1.8866669161,"1705":1.8091068148,"1706":1.7315467135,"1707":1.6549109978,"1708":1.5782752821,"1709":1.5028663981,"1710":1.4274575141,"1711":1.3535730662,"1712":1.2796886183,"1713":1.2076201947,"1714":1.1355517711,"1715":1.0655837929,"1716":0.9956158147,"1717":0.9280244136,"1718":0.8604330126,"1719":0.7954849409,"1720":0.7305368693,"1721":0.6684884474,"1722":0.6064400256,"1723":0.5475361304,"1724":0.4886322352,"1725":0.4331053333,"1726":0.3775784314,"1727":0.3256476623,"1728":0.2737168931,"1729":0.2255872036,"1730":0.1774575141,"1731":0.1333188502,"1732":0.0891801862,"1733":0.0492067431,"1734":0.0092332999,"1735":-0.0264171656,"1736":-0.0620676312,"1737":-0.0932544229,"1738":-0.1244412147,"1739":-0.1510412527,"1740":-0.1776412907,"1741":-0.1995495968,"1742":-0.2214579028,"1743":-0.2385880148,"1744":-0.2557181268,"1745":-0.2680024401,"1746":-0.2802867533,"1747":-0.2876767872,"1748":-0.2950668211,"1749":-0.2975334105,"1750":-0.3,"1751":-0.2975334105,"1752":-0.2950668211,"1753":-0.2876767872,"1754":-0.2802867533,"1755":-0.2680024401,"1756":-0.2557181268,"1757":-0.2385880148,"1758":-0.2214579028,"1759":-0.1995495968,"1760":-0.1776412907,"1761":-0.1510412527,"1762":-0.1244412147,"1763":-0.0932544229,"1764":-0.0620676312,"1765":-0.0264171656,"1766":0.0092332999,"1767":0.0492067431,"1768":0.0891801862,"1769":0.1333188502,"1770":0.1774575141,"1771":0.2255872036,"1772":0.2737168931,"1773":0.3256476623,"1774":0.3775784314,"1775":0.4331053333,"1776":0.4886322352,"1777":0.5475361304,"1778":0.6064400256,"1779":0.6684884474,"1780":0.7305368693,"1781":0.7954849409,"1782":0.8604330126,"1783":0.9280244136,"1784":0.9956158147,"1785":1.0655837929,"1786":1.1355517711,"1787":1.2076201947,"1788":1.2796886183,"1789":1.3535730662,"1790":1.4274575141,"1791":1.5028663981,"1792":1.5782752821,"1793":1.6549109978,"1794":1.7315467135,"1795":1.8091068148,"1796":1.8866669161,"1797":1.9648453086,"1798":2.0430237012,"1799":2.1215118506,"1800":2.2,"1801":2.2784881494,"1802":2.3569762988,"1803":2.4351546914,"1804":2.5133330839,"1805":2.5908931852,"1806":2.6684532865,"1807":2.7450890022,"1808":2.8217247179,"1809":2.8971336019,"1810":2.9725424859,"1811":3.0464269338,"1812":3.1203113817,"1813":3.1923798053,"1814":3.2644482289,"1815":3.3344162071,"1816":3.4043841853,"1817":3.4719755864,"1818":3.5395669874,"1819":3.6045150591,"1820":3.6694631307,"1821":3.7315115526,"1822":3.7935599744,"1823":3.8524638696,"1824":3.9113677648,"1825":3.9668946667,"1826":4.0224215686,"1827":4.0743523377,"1828":4.1262831069,"1829":4.1744127964,"1830":4.2225424859,"1831":4.2666811498,"1832":4.3108198138,"1833":4.3507932569,"1834":4.3907667001,"1835":4.4264171656,"1836":4.4620676312,"1837":4.4932544229,"1838":4.5244412147,"1839":4.5510412527,"1840":4.5776412907,"1841":4.5995495968,"1842":4.6214579028,"1843":4.6385880148,"1844":4.6557181268,"1845":4.6680024401,"1846":4.6802867533,"1847":4.6876767872,"1848":4.6950668211,"1849":4.6975334105,"1850":4.7,"1851":4.6975334105,"1852":4.6950668211,"1853":4.6876767872,"1854":4.6802867533,"1855":4.6680024401,"1856":4.6557181268,"1857":4.6385880148,"1858":4.6214579028,"1859":4.5995495968,"1860":4.5776412907,"1861":4.5510412527,"1862":4.5244412147,"1863":4.4932544229,"1864":4.4620676312,"1865":4.4264171656,"1866":4.3907667001,"1867":4.3507932569,"1868":4.3108198138,"1869":4.2666811498,"1870":4.2225424859,"1871":4.1744127964,"1872":4.1262831069,"1873":4.0743523377,"1874":4.0224215686,"1875":3.9668946667,"1876":3.9113677648,"1877":3.8524638696,"1878":3.7935599744,"1879":3.7315115526,"1880":3.6694631307,"1881":3.6045150591,"1882":3.5395669874,"1883":3.4719755864,"1884":3.4043841853,"1885":3.3344162071,"1886":3.2644482289,"1887":3.1923798053,"1888":3.1203113817,"1889":3.0464269338,"1890":2.9725424859,"1891":2.8971336019,"1892":2.8217247179,"1893":2.7450890022,"1894":2.6684532865,"1895":2.5908931852,"1896":2.5133330839,"1897":2.4351546914,"1898":2.3569762988,"1899":2.2784881494,"1900":2.2,"1901":2.1215118506,"1902":2.0430237012,"1903":1.9648453086,"1904":1.8866669161,"1905":1.8091068148,"1906":1.7315467135,"1907":1.6549109978,"1908":1.5782752821,"1909":1.5028663981,"1910":1.4274575141,"1911":1.3535730662,"1912":1.2796886183,"1913":1.2076201947,"1914":1.1355517711,"1915":1.0655837929,"1916":0.9956158147,"1917":0.9280244136,"1918":0.8604330126,"1919":0.7954849409,"1920":0.7305368693,"1921":0.6684884474,"1922":0.6064400256,"1923":0.5475361304,"1924":0.4886322352,"1925":0.4331053333,"1926":0.3775784314,"1927":0.3256476623,"1928":0.2737168931,"1929":0.2255872036,"1930":0.1774575141,"1931":0.1333188502,"1932":0.0891801862,"1933":0.0492067431,"1934":0.0092332999,"1935":-0.0264171656,"1936":-0.0620676312,"1937":-0.0932544229,"1938":-0.1244412147,"1939":-0.1510412527,"1940":-0.1776412907,"1941":-0.1995495968,"1942":-0.2214579028,"1943":-0.2385880148,"1944":-0.2557181268,"1945":-0.2680024401,"1946":-0.2802867533,"1947":-0.2876767872,"1948":-0.2950668211,"1949":-0.2975334105,"1950":-0.3,"1951":-0.2975334105,"1952":-0.2950668211,"1953":-0.2876767872,"1954":-0.2802867533,"1955":-0.2680024401,"1956":-0.2557181268,"1957":-0.2385880148,"1958":-0.2214579028,"1959":-0.1995495968,"1960":-0.1776412907,"1961":-0.1510412527,"1962":-0.1244412147,"1963":-0.0932544229,"1964":-0.0620676312,"1965":-0.0264171656,"1966":0.0092332999,"1967":0.0492067431,"1968":0.0891801862,"1969":0.1333188502,"1970":0.1774575141,"1971":0.2255872036,"1972":0.2737168931,"1973":0.3256476623,"1974":0.3775784314,"1975":0.4331053333,"1976":0.4886322352,"1977":0.5475361304,"1978":0.6064400256,"1979":0.6684884474,"1980":0.7305368693,"1981":0.7954849409,"1982":0.8604330126,"1983":0.9280244136,"1984":0.9956158147,"1985":1.0655837929,"1986":1.1355517711,"1987":1.2076201947,"1988":1.2796886183,"1989":1.3535730662,"1990":1.4274575141,"1991":1.5028663981,"1992":1.5782752821,"1993":1.6549109978,"1994":1.7315467135,"1995":1.8091068148,"1996":1.8866669161,"1997":1.9648453086,"1998":2.0430237012,"1999":2.1215118506,"2000":2.2,"2001":2.2784881494,"2002":2.3569762988,"2003":2.4351546914,"2004":2.5133330839,"2005":2.5908931852,"2006":2.6684532865,"2007":2.7450890022,"2008":2.8217247179,"2009":2.8971336019,"2010":2.9725424859,"2011":3.0464269338,"2012":3.1203113817,"2013":3.1923798053,"2014":3.2644482289,"2015":3.3344162071,"2016":3.4043841853,"2017":3.4719755864,"2018":3.5395669874,"2019":3.6045150591,"2020":3.6694631307,"2021":3.7315115526,"2022":3.7935599744,"2023":3.8524638696,"2024":3.9113677648,"2025":3.9668946667,"2026":4.0224215686,"2027":4.0743523377,"2028":4.1262831069,"2029":4.1744127964,"2030":4.2225424859,"2031":4.2666811498,"2032":4.3108198138,"2033":4.3507932569,"2034":4.3907667001,"2035":4.4264171656,"2036":4.4620676312,"2037":4.4932544229,"2038":4.5244412147,"2039":4.5510412527,"2040":4.5776412907,"2041":4.5995495968,"2042":4.6214579028,"2043":4.6385880148,"2044":4.6557181268,"2045":4.6680024401,"2046":4.6802867533,"2047":4.6876767872,"2048":4.6950668211,"2049":4.6975334105,"2050":4.7,"2051":4.6975334105,"2052":4.6950668211,"2053":4.6876767872,"2054":4.6802867533,"2055":4.6680024401,"2056":4.6557181268,"2057":4.6385880148,"2058":4.6214579028,"2059":4.5995495968,"2060":4.5776412907,"2061":4.5510412527,"2062":4.5244412147,"2063":4.4932544229,"2064":4.4620676312,"2065":4.4264171656,"2066":4.3907667001,"2067":4.3507932569,"2068":4.3108198138,"2069":4.2666811498,"2070":4.2225424859,"2071":4.1744127964,"2072":4.1262831069,"2073":4.0743523377,"2074":4.0224215686,"2075":3.9668946667,"2076":3.9113677648,"2077":3.8524638696,"2078":3.7935599744,"2079":3.7315115526,"2080":3.6694631307,"2081":3.6045150591,"2082":3.5395669874,"2083":3.4719755864,"2084":3.4043841853,"2085":3.3344162071,"2086":3.2644482289,"2087":3.1923798053,"2088":3.1203113817,"2089":3.0464269338,"2090":2.9725424859,"2091":2.8971336019,"2092":2.8217247179,"2093":2.7450890022,"2094":2.6684532865,"2095":2.5908931852,"2096":2.5133330839,"2097":2.4351546914,"2098":2.3569762988,"2099":2.2784881494,"2100":2.2,"2101":2.1215118506,"2102":2.0430237012,"2103":1.9648453086,"2104":1.8866669161,"2105":1.8091068148,"2106":1.7315467135,"2107":1.6549109978,"2108":1.5782752821,"2109":1.5028663981,"2110":1.4274575141,"2111":1.3535730662,"2112":1.2796886183,"2113":1.2076201947,"2114":1.1355517711,"2115":1.0655837929,"2116":0.9956158147,"2117":0.9280244136,"2118":0.8604330126,"2119":0.7954849409,"2120":0.7305368693,"2121":0.6684884474,"2122":0.6064400256,"2123":0.5475361304,"2124":0.4886322352,"2125":0.4331053333,"2126":0.3775784314,"2127":0.3256476623,"2128":0.2737168931,"2129":0.2255872036,"2130":0.1774575141,"2131":0.1333188502,"2132":0.0891801862,"2133":0.0492067431,"2134":0.0092332999,"2135":-0.0264171656,"2136":-0.0620676312,"2137":-0.0932544229,"2138":-0.1244412147,"2139":-0.1510412527,"2140":-0.1776412907,"2141":-0.1995495968,"2142":-0.2214579028,"2143":-0.2385880148,"2144":-0.2557181268,"2145":-0.2680024401,"2146":-0.2802867533,"2147":-0.2876767872,"2148":-0.2950668211,"2149":-0.2975334105,"2150":-0.3,"2151":-0.2975334105,"2152":-0.2950668211,"2153":-0.2876767872,"2154":-0.2802867533,"2155":-0.2680024401,"2156":-0.2557181268,"2157":-0.2385880148,"2158":-0.2214579028,"2159":-0.1995495968,"2160":-0.1776412907,"2161":-0.1510412527,"2162":-0.1244412147,"2163":-0.0932544229,"2164":-0.0620676312,"2165":-0.0264171656,"2166":0.0092332999,"2167":0.0492067431,"2168":0.0891801862,"2169":0.1333188502,"2170":0.1774575141,"2171":0.2255872036,"2172":0.2737168931,"2173":0.3256476623,"2174":0.3775784314,"2175":0.4331053333,"2176":0.4886322352,"2177":0.5475361304,"2178":0.6064400256,"2179":0.6684884474,"2180":0.7305368693,"2181":0.7954849409,"2182":0.8604330126,"2183":0.9280244136,"2184":0.9956158147,"2185":1.0655837929,"2186":1.1355517711,"2187":1.2076201947,"2188":1.2796886183,"2189":1.3535730662,"2190":1.4274575141,"2191":1.5028663981,"2192":1.5782752821,"2193":1.6549109978,"2194":1.7315467135,"2195":1.8091068148,"2196":1.8866669161,"2197":1.9648453086,"2198":2.0430237012,"2199":2.1215118506,"2200":2.2,"2201":2.2784881494,"2202":2.3569762988,"2203":2.4351546914,"2204":2.5133330839,"2205":2.5908931852,"2206":2.6684532865,"2207":2.7450890022,"2208":2.8217247179,"2209":2.8971336019,"2210":2.9725424859,"2211":3.0464269338,"2212":3.1203113817,"2213":3.1923798053,"2214":3.2644482289,"2215":3.3344162071,"2216":3.4043841853,"2217":3.4719755864,"2218":3.5395669874,"2219":3.6045150591,"2220":3.6694631307,"2221":3.7315115526,"2222":3.7935599744,"2223":3.8524638696,"2224":3.9113677648,"2225":3.9668946667,"2226":4.0224215686,"2227":4.0743523377,"2228":4.1262831069,"2229":4.1744127964,"2230":4.2225424859,"2231":4.2666811498,"2232":4.3108198138,"2233":4.3507932569,"2234":4.3907667001,"2235":4.4264171656,"2236":4.4620676312,"2237":4.4932544229,"2238":4.5244412147,"2239":4.5510412527,"2240":4.5776412907,"2241":4.5995495968,"2242":4.6214579028,"2243":4.6385880148,"2244":4.6557181268,"2245":4.6680024401,"2246":4.6802867533,"2247":4.6876767872,"2248":4.6950668211,"2249":4.6975334105,"2250":4.7,"2251":4.6975334105,"2252":4.6950668211,"2253":4.6876767872,"2254":4.6802867533,"2255":4.6680024401,"2256":4.6557181268,"2257":4.6385880148,"2258":4.6214579028,"2259":4.5995495968,"2260":4.5776412907,"2261":4.5510412527,"2262":4.5244412147,"2263":4.4932544229,"2264":4.4620676312,"2265":4.4264171656,"2266":4.3907667001,"2267":4.3507932569,"2268":4.3108198138,"2269":4.2666811498,"2270":4.2225424859,"2271":4.1744127964,"2272":4.1262831069,"2273":4.0743523377,"2274":4.0224215686,"2275":3.9668946667,"2276":3.9113677648,"2277":3.8524638696,"2278":3.7935599744,"2279":3.7315115526,"2280":3.6694631307,"2281":3.6045150591,"2282":3.5395669874,"2283":3.4719755864,"2284":3.4043841853,"2285":3.3344162071,"2286":3.2644482289,"2287":3.1923798053,"2288":3.1203113817,"2289":3.0464269338,"2290":2.9725424859,"2291":2.8971336019,"2292":2.8217247179,"2293":2.7450890022,"2294":2.6684532865,"2295":2.5908931852,"2296":2.5133330839,"2297":2.4351546914,"2298":2.3569762988,"2299":2.2784881494,"2300":2.2,"2301":2.1215118506,"2302":2.0430237012,"2303":1.9648453086,"2304":1.8866669161,"2305":1.8091068148,"2306":1.7315467135,"2307":1.6549109978,"2308":1.5782752821,"2309":1.5028663981,"2310":1.4274575141,"2311":1.3535730662,"2312":1.2796886183,"2313":1.2076201947,"2314":1.1355517711,"2315":1.0655837929,"2316":0.9956158147,"2317":0.9280244136,"2318":0.8604330126,"2319":0.7954849409,"2320":0.7305368693,"2321":0.6684884474,"2322":0.6064400256,"2323":0.5475361304,"2324":0.4886322352,"2325":0.4331053333,"2326":0.3775784314,"2327":0.3256476623,"2328":0.2737168931,"2329":0.2255872036,"2330":0.1774575141,"2331":0.1333188502,"2332":0.0891801862,"2333":0.0492067431,"2334":0.0092332999,"2335":-0.0264171656,"2336":-0.0620676312,"2337":-0.0932544229,"2338":-0.1244412147,"2339":-0.1510412527,"2340":-0.1776412907,"2341":-0.1995495968,"2342":-0.2214579028,"2343":-0.2385880148,"2344":-0.2557181268,"2345":-0.2680024401,"2346":-0.2802867533,"2347":-0.2876767872,"2348":-0.2950668211,"2349":-0.2975334105,"2350":-0.3,"2351":-0.2975334105,"2352":-0.2950668211,"2353":-0.2876767872,"2354":-0.2802867533,"2355":-0.2680024401,"2356":-0.2557181268,"2357":-0.2385880148,"2358":-0.2214579028,"2359":-0.1995495968,"2360":-0.1776412907,"2361":-0.1510412527,"2362":-0.1244412147,"2363":-0.0932544229,"2364":-0.0620676312,"2365":-0.0264171656,"2366":0.0092332999,"2367":0.0492067431,"2368":0.0891801862,"2369":0.1333188502,"2370":0.1774575141,"2371":0.2255872036,"2372":0.2737168931,"2373":0.3256476623,"2374":0.3775784314,"2375":0.4331053333,"2376":0.4886322352,"2377":0.5475361304,"2378":0.6064400256,"2379":0.6684884474,"2380":0.7305368693,"2381":0.7954849409,"2382":0.8604330126,"2383":0.9280244136,"2384":0.9956158147,"2385":1.0655837929,"2386":1.1355517711,"2387":1.2076201947,"2388":1.2796886183,"2389":1.3535730662,"2390":1.4274575141,"2391":1.5028663981,"2392":1.5782752821,"2393":1.6549109978,"2394":1.7315467135,"2395":1.8091068148,"2396":1.8866669161,"2397":1.9648453086,"2398":2.0430237012,"2399":2.1215118506,"2400":2.2,"2401":2.2784881494,"2402":2.3569762988,"2403":2.4351546914,"2404":2.5133330839,"2405":2.5908931852,"2406":2.6684532865,"2407":2.7450890022,"2408":2.8217247179,"2409":2.8971336019,"2410":2.9725424859,"2411":3.0464269338,"2412":3.1203113817,"2413":3.1923798053,"2414":3.2644482289,"2415":3.3344162071,"2416":3.4043841853,"2417":3.4719755864,"2418":3.5395669874,"2419":3.6045150591,"2420":3.6694631307,"2421":3.7315115526,"2422":3.7935599744,"2423":3.8524638696,"2424":3.9113677648,"2425":3.9668946667,"2426":4.0224215686,"2427":4.0743523377,"2428":4.1262831069,"2429":4.1744127964,"2430":4.2225424859,"2431":4.2666811498,"2432":4.3108198138,"2433":4.3507932569,"2434":4.3907667001,"2435":4.4264171656,"2436":4.4620676312,"2437":4.4932544229,"2438":4.5244412147,"2439":4.5510412527,"2440":4.5776412907,"2441":4.5995495968,"2442":4.6214579028,"2443":4.6385880148,"2444":4.6557181268,"2445":4.6680024401,"2446":4.6802867533,"2447":4.6876767872,"2448":4.6950668211,"2449":4.6975334105,"2450":4.7,"2451":4.6975334105,"2452":4.6950668211,"2453":4.6876767872,"2454":4.6802867533,"2455":4.6680024401,"2456":4.6557181268,"2457":4.6385880148,"2458":4.6214579028,"2459":4.5995495968,"2460":4.5776412907,"2461":4.5510412527,"2462":4.5244412147,"2463":4.4932544229,"2464":4.4620676312,"2465":4.4264171656,"2466":4.3907667001,"2467":4.3507932569,"2468":4.3108198138,"2469":4.2666811498,"2470":4.2225424859,"2471":4.1744127964,"2472":4.1262831069,"2473":4.0743523377,"2474":4.0224215686,"2475":3.9668946667,"2476":3.9113677648,"2477":3.8524638696,"2478":3.7935599744,"2479":3.7315115526,"2480":3.6694631307,"2481":3.6045150591,"2482":3.5395669874,"2483":3.4719755864,"2484":3.4043841853,"2485":3.3344162071,"2486":3.2644482289,"2487":3.1923798053,"2488":3.1203113817,"2489":3.0464269338,"2490":2.9725424859,"2491":2.8971336019,"2492":2.8217247179,"2493":2.7450890022,"2494":2.6684532865,"2495":2.5908931852,"2496":2.5133330839,"2497":2.4351546914,"2498":2.3569762988,"2499":2.2784881494,"2500":2.2,"2501":2.1215118506,"2502":2.0430237012,"2503":1.9648453086,"2504":1.8866669161,"2505":1.8091068148,"2506":1.7315467135,"2507":1.6549109978,"2508":1.5782752821,"2509":1.5028663981,"2510":1.4274575141,"2511":1.3535730662,"2512":1.2796886183,"2513":1.2076201947,"2514":1.1355517711,"2515":1.0655837929,"2516":0.9956158147,"2517":0.9280244136,"2518":0.8604330126,"2519":0.7954849409,"2520":0.7305368693,"2521":0.6684884474,"2522":0.6064400256,"2523":0.5475361304,"2524":0.4886322352,"2525":0.4331053333,"2526":0.3775784314,"2527":0.3256476623,"2528":0.2737168931,"2529":0.2255872036,"2530":0.1774575141,"2531":0.1333188502,"2532":0.0891801862,"2533":0.0492067431,"2534":0.0092332999,"2535":-0.0264171656,"2536":-0.0620676312,"2537":-0.0932544229,"2538":-0.1244412147,"2539":-0.1510412527,"2540":-0.1776412907,"2541":-0.1995495968,"2542":-0.2214579028,"2543":-0.2385880148,"2544":-0.2557181268,"2545":-0.2680024401,"2546":-0.2802867533,"2547":-0.2876767872,"2548":-0.2950668211,"2549":-0.2975334105,"2550":-0.3,"2551":-0.2975334105,"2552":-0.2950668211,"2553":-0.2876767872,"2554":-0.2802867533,"2555":-0.2680024401,"2556":-0.2557181268,"2557":-0.2385880148,"2558":-0.2214579028,"2559":-0.1995495968,"2560":-0.1776412907,"2561":-0.1510412527,"2562":-0.1244412147,"2563":-0.0932544229,"2564":-0.0620676312,"2565":-0.0264171656,"2566":0.0092332999,"2567":0.0492067431,"2568":0.0891801862,"2569":0.1333188502,"2570":0.1774575141,"2571":0.2255872036,"2572":0.2737168931,"2573":0.3256476623,"2574":0.3775784314,"2575":0.4331053333,"2576":0.4886322352,"2577":0.5475361304,"2578":0.6064400256,"2579":0.6684884474,"2580":0.7305368693,"2581":0.7954849409,"2582":0.8604330126,"2583":0.9280244136,"2584":0.9956158147,"2585":1.0655837929,"2586":1.1355517711,"2587":1.2076201947,"2588":1.2796886183,"2589":1.3535730662,"2590":1.4274575141,"2591":1.5028663981,"2592":1.5782752821,"2593":1.6549109978,"2594":1.7315467135,"2595":1.8091068148,"2596":1.8866669161,"2597":1.9648453086,"2598":2.0430237012,"2599":2.1215118506,"2600":2.2,"2601":2.2784881494,"2602":2.3569762988,"2603":2.4351546914,"2604":2.5133330839,"2605":2.5908931852,"2606":2.6684532865,"2607":2.7450890022,"2608":2.8217247179,"2609":2.8971336019,"2610":2.9725424859,"2611":3.0464269338,"2612":3.1203113817,"2613":3.1923798053,"2614":3.2644482289,"2615":3.3344162071,"2616":3.4043841853,"2617":3.4719755864,"2618":3.5395669874,"2619":3.6045150591,"2620":3.6694631307,"2621":3.7315115526,"2622":3.7935599744,"2623":3.8524638696,"2624":3.9113677648,"2625":3.9668946667,"2626":4.0224215686,"2627":4.0743523377,"2628":4.1262831069,"2629":4.1744127964,"2630":4.2225424859,"2631":4.2666811498,"2632":4.3108198138,"2633":4.3507932569,"2634":4.3907667001,"2635":4.4264171656,"2636":4.4620676312,"2637":4.4932544229,"2638":4.5244412147,"2639":4.5510412527,"2640":4.5776412907,"2641":4.5995495968,"2642":4.6214579028,"2643":4.6385880148,"2644":4.6557181268,"2645":4.6680024401,"2646":4.6802867533,"2647":4.6876767872,"2648":4.6950668211,"2649":4.6975334105,"2650":4.7,"2651":4.6975334105,"2652":4.6950668211,"2653":4.6876767872,"2654":4.6802867533,"2655":4.6680024401,"2656":4.6557181268,"2657":4.6385880148,"2658":4.6214579028,"2659":4.5995495968,"2660":4.5776412907,"2661":4.5510412527,"2662":4.5244412147,"2663":4.4932544229,"2664":4.4620676312,"2665":4.4264171656,"2666":4.3907667001,"2667":4.3507932569,"2668":4.3108198138,"2669":4.2666811498,"2670":4.2225424859,"2671":4.1744127964,"2672":4.1262831069,"2673":4.0743523377,"2674":4.0224215686,"2675":3.9668946667,"2676":3.9113677648,"2677":3.8524638696,"2678":3.7935599744,"2679":3.7315115526,"2680":3.6694631307,"2681":3.6045150591,"2682":3.5395669874,"2683":3.4719755864,"2684":3.4043841853,"2685":3.3344162071,"2686":3.2644482289,"2687":3.1923798053,"2688":3.1203113817,"2689":3.0464269338,"2690":2.9725424859,"2691":2.8971336019,"2692":2.8217247179,"2693":2.7450890022,"2694":2.6684532865,"2695":2.5908931852,"2696":2.5133330839,"2697":2.4351546914,"2698":2.3569762988,"2699":2.2784881494,"2700":2.2,"2701":2.1215118506,"2702":2.0430237012,"2703":1.9648453086,"2704":1.8866669161,"2705":1.8091068148,"2706":1.7315467135,"2707":1.6549109978,"2708":1.5782752821,"2709":1.5028663981,"2710":1.4274575141,"2711":1.3535730662,"2712":1.2796886183,"2713":1.2076201947,"2714":1.1355517711,"2715":1.0655837929,"2716":0.9956158147,"2717":0.9280244136,"2718":0.8604330126,"2719":0.7954849409,"2720":0.7305368693,"2721":0.6684884474,"2722":0.6064400256,"2723":0.5475361304,"2724":0.4886322352,"2725":0.4331053333,"2726":0.3775784314,"2727":0.3256476623,"2728":0.2737168931,"2729":0.2255872036,"2730":0.1774575141,"2731":0.1333188502,"2732":0.0891801862,"2733":0.0492067431,"2734":0.0092332999,"2735":-0.0264171656,"2736":-0.0620676312,"2737":-0.0932544229,"2738":-0.1244412147,"2739":-0.1510412527,"2740":-0.1776412907,"2741":-0.1995495968,"2742":-0.2214579028,"2743":-0.2385880148,"2744":-0.2557181268,"2745":-0.2680024401,"2746":-0.2802867533,"2747":-0.2876767872,"2748":-0.2950668211,"2749":-0.2975334105,"2750":-0.3,"2751":-0.2975334105,"2752":-0.2950668211,"2753":-0.2876767872,"2754":-0.2802867533,"2755":-0.2680024401,"2756":-0.2557181268,"2757":-0.2385880148,"2758":-0.2214579028,"2759":-0.1995495968,"2760":-0.1776412907,"2761":-0.1510412527,"2762":-0.1244412147,"2763":-0.0932544229,"2764":-0.0620676312,"2765":-0.0264171656,"2766":0.0092332999,"2767":0.0492067431,"2768":0.0891801862,"2769":0.1333188502,"2770":0.1774575141,"2771":0.2255872036,"2772":0.2737168931,"2773":0.3256476623,"2774":0.3775784314,"2775":0.4331053333,"2776":0.4886322352,"2777":0.5475361304,"2778":0.6064400256,"2779":0.6684884474,"2780":0.7305368693,"2781":0.7954849409,"2782":0.8604330126,"2783":0.9280244136,"2784":0.9956158147,"2785":1.0655837929,"2786":1.1355517711,"2787":1.2076201947,"2788":1.2796886183,"2789":1.3535730662,"2790":1.4274575141,"2791":1.5028663981,"2792":1.5782752821,"2793":1.6549109978,"2794":1.7315467135,"2795":1.8091068148,"2796":1.8866669161,"2797":1.9648453086,"2798":2.0430237012,"2799":2.1215118506,"2800":2.2,"2801":2.2784881494,"2802":2.3569762988,"2803":2.4351546914,"2804":2.5133330839,"2805":2.5908931852,"2806":2.6684532865,"2807":2.7450890022,"2808":2.8217247179,"2809":2.8971336019,"2810":2.9725424859,"2811":3.0464269338,"2812":3.1203113817,"2813":3.1923798053,"2814":3.2644482289,"2815":3.3344162071,"2816":3.4043841853,"2817":3.4719755864,"2818":3.5395669874,"2819":3.6045150591,"2820":3.6694631307,"2821":3.7315115526,"2822":3.7935599744,"2823":3.8524638696,"2824":3.9113677648,"2825":3.9668946667,"2826":4.0224215686,"2827":4.0743523377,"2828":4.1262831069,"2829":4.1744127964,"2830":4.2225424859,"2831":4.2666811498,"2832":4.3108198138,"2833":4.3507932569,"2834":4.3907667001,"2835":4.4264171656,"2836":4.4620676312,"2837":4.4932544229,"2838":4.5244412147,"2839":4.5510412527,"2840":4.5776412907,"2841":4.5995495968,"2842":4.6214579028,"2843":4.6385880148,"2844":4.6557181268,"2845":4.6680024401,"2846":4.6802867533,"2847":4.6876767872,"2848":4.6950668211,"2849":4.6975334105,"2850":4.7,"2851":4.6975334105,"2852":4.6950668211,"2853":4.6876767872,"2854":4.6802867533,"2855":4.6680024401,"2856":4.6557181268,"2857":4.6385880148,"2858":4.6214579028,"2859":4.5995495968,"2860":4.5776412907,"2861":4.5510412527,"2862":4.5244412147,"2863":4.4932544229,"2864":4.4620676312,"2865":4.4264171656,"2866":4.3907667001,"2867":4.3507932569,"2868":4.3108198138,"2869":4.2666811498,"2870":4.2225424859,"2871":4.1744127964,"2872":4.1262831069,"2873":4.0743523377,"2874":4.0224215686,"2875":3.9668946667,"2876":3.9113677648,"2877":3.8524638696,"2878":3.7935599744,"2879":3.7315115526,"2880":3.6694631307,"2881":3.6045150591,"2882":3.5395669874,"2883":3.4719755864,"2884":3.4043841853,"2885":3.3344162071,"2886":3.2644482289,"2887":3.1923798053,"2888":3.1203113817,"2889":3.0464269338,"2890":2.9725424859,"2891":2.8971336019,"2892":2.8217247179,"2893":2.7450890022,"2894":2.6684532865,"2895":2.5908931852,"2896":2.5133330839,"2897":2.4351546914,"2898":2.3569762988,"2899":2.2784881494,"2900":2.2,"2901":2.1215118506,"2902":2.0430237012,"2903":1.9648453086,"2904":1.8866669161,"2905":1.8091068148,"2906":1.7315467135,"2907":1.6549109978,"2908":1.5782752821,"2909":1.5028663981,"2910":1.4274575141,"2911":1.3535730662,"2912":1.2796886183,"2913":1.2076201947,"2914":1.1355517711,"2915":1.0655837929,"2916":0.9956158147,"2917":0.9280244136,"2918":0.8604330126,"2919":0.7954849409,"2920":0.7305368693,"2921":0.6684884474,"2922":0.6064400256,"2923":0.5475361304,"2924":0.4886322352,"2925":0.4331053333,"2926":0.3775784314,"2927":0.3256476623,"2928":0.2737168931,"2929":0.2255872036,"2930":0.1774575141,"2931":0.1333188502,"2932":0.0891801862,"2933":0.0492067431,"2934":0.0092332999,"2935":-0.0264171656,"2936":-0.0620676312,"2937":-0.0932544229,"2938":-0.1244412147,"2939":-0.1510412527,"2940":-0.1776412907,"2941":-0.1995495968,"2942":-0.2214579028,"2943":-0.2385880148,"2944":-0.2557181268,"2945":-0.2680024401,"2946":-0.2802867533,"2947":-0.2876767872,"2948":-0.2950668211,"2949":-0.2975334105,"2950":-0.3,"2951":-0.2975334105,"2952":-0.2950668211,"2953":-0.2876767872,"2954":-0.2802867533,"2955":-0.2680024401,"2956":-0.2557181268,"2957":-0.2385880148,"2958":-0.2214579028,"2959":-0.1995495968,"2960":-0.1776412907,"2961":-0.1510412527,"2962":-0.1244412147,"2963":-0.0932544229,"2964":-0.0620676312,"2965":-0.0264171656,"2966":0.0092332999,"2967":0.0492067431,"2968":0.0891801862,"2969":0.1333188502,"2970":0.1774575141,"2971":0.2255872036,"2972":0.2737168931,"2973":0.3256476623,"2974":0.3775784314,"2975":0.4331053333,"2976":0.4886322352,"2977":0.5475361304,"2978":0.6064400256,"2979":0.6684884474,"2980":0.7305368693,"2981":0.7954849409,"2982":0.8604330126,"2983":0.9280244136,"2984":0.9956158147,"2985":1.0655837929,"2986":1.1355517711,"2987":1.2076201947,"2988":1.2796886183,"2989":1.3535730662,"2990":1.4274575141,"2991":1.5028663981,"2992":1.5782752821,"2993":1.6549109978,"2994":1.7315467135,"2995":1.8091068148,"2996":1.8866669161,"2997":1.9648453086,"2998":2.0430237012,"2999":2.1215118506,"3000":2.2,"3001":2.2784881494,"3002":2.3569762988,"3003":2.4351546914,"3004":2.5133330839,"3005":2.5908931852,"3006":2.6684532865,"3007":2.7450890022,"3008":2.8217247179,"3009":2.8971336019,"3010":2.9725424859,"3011":3.0464269338,"3012":3.1203113817,"3013":3.1923798053,"3014":3.2644482289,"3015":3.3344162071,"3016":3.4043841853,"3017":3.4719755864,"3018":3.5395669874,"3019":3.6045150591,"3020":3.6694631307,"3021":3.7315115526,"3022":3.7935599744,"3023":3.8524638696,"3024":3.9113677648,"3025":3.9668946667,"3026":4.0224215686,"3027":4.0743523377,"3028":4.1262831069,"3029":4.1744127964,"3030":4.2225424859,"3031":4.2666811498,"3032":4.3108198138,"3033":4.3507932569,"3034":4.3907667001,"3035":4.4264171656,"3036":4.4620676312,"3037":4.4932544229,"3038":4.5244412147,"3039":4.5510412527,"3040":4.5776412907,"3041":4.5995495968,"3042":4.6214579028,"3043":4.6385880148,"3044":4.6557181268,"3045":4.6680024401,"3046":4.6802867533,"3047":4.6876767872,"3048":4.6950668211,"3049":4.6975334105,"3050":4.7,"3051":4.6975334105,"3052":4.6950668211,"3053":4.6876767872,"3054":4.6802867533,"3055":4.6680024401,"3056":4.6557181268,"3057":4.6385880148,"3058":4.6214579028,"3059":4.5995495968,"3060":4.5776412907,"3061":4.5510412527,"3062":4.5244412147,"3063":4.4932544229,"3064":4.4620676312,"3065":4.4264171656,"3066":4.3907667001,"3067":4.3507932569,"3068":4.3108198138,"3069":4.2666811498,"3070":4.2225424859,"3071":4.1744127964,"3072":4.1262831069,"3073":4.0743523377,"3074":4.0224215686,"3075":3.9668946667,"3076":3.9113677648,"3077":3.8524638696,"3078":3.7935599744,"3079":3.7315115526,"3080":3.6694631307,"3081":3.6045150591,"3082":3.5395669874,"3083":3.4719755864,"3084":3.4043841853,"3085":3.3344162071,"3086":3.2644482289,"3087":3.1923798053,"3088":3.1203113817,"3089":3.0464269338,"3090":2.9725424859,"3091":2.8971336019,"3092":2.8217247179,"3093":2.7450890022,"3094":2.6684532865,"3095":2.5908931852,"3096":2.5133330839,"3097":2.4351546914,"3098":2.3569762988,"3099":2.2784881494,"3100":2.2,"3101":2.1215118506,"3102":2.0430237012,"3103":1.9648453086,"3104":1.8866669161,"3105":1.8091068148,"3106":1.7315467135,"3107":1.6549109978,"3108":1.5782752821,"3109":1.5028663981,"3110":1.4274575141,"3111":1.3535730662,"3112":1.2796886183,"3113":1.2076201947,"3114":1.1355517711,"3115":1.0655837929,"3116":0.9956158147,"3117":0.9280244136,"3118":0.8604330126,"3119":0.7954849409,"3120":0.7305368693,"3121":0.6684884474,"3122":0.6064400256,"3123":0.5475361304,"3124":0.4886322352,"3125":0.4331053333,"3126":0.3775784314,"3127":0.3256476623,"3128":0.2737168931,"3129":0.2255872036,"3130":0.1774575141,"3131":0.1333188502,"3132":0.0891801862,"3133":0.0492067431,"3134":0.0092332999,"3135":-0.0264171656,"3136":-0.0620676312,"3137":-0.0932544229,"3138":-0.1244412147,"3139":-0.1510412527,"3140":-0.1776412907,"3141":-0.1995495968,"3142":-0.2214579028,"3143":-0.2385880148,"3144":-0.2557181268,"3145":-0.2680024401,"3146":-0.2802867533,"3147":-0.2876767872,"3148":-0.2950668211,"3149":-0.2975334105,"3150":-0.3,"3151":-0.2975334105,"3152":-0.2950668211,"3153":-0.2876767872,"3154":-0.2802867533,"3155":-0.2680024401,"3156":-0.2557181268,"3157":-0.2385880148,"3158":-0.2214579028,"3159":-0.1995495968,"3160":-0.1776412907,"3161":-0.1510412527,"3162":-0.1244412147,"3163":-0.0932544229,"3164":-0.0620676312,"3165":-0.0264171656,"3166":0.0092332999,"3167":0.0492067431,"3168":0.0891801862,"3169":0.1333188502,"3170":0.1774575141,"3171":0.2255872036,"3172":0.2737168931,"3173":0.3256476623,"3174":0.3775784314,"3175":0.4331053333,"3176":0.4886322352,"3177":0.5475361304,"3178":0.6064400256,"3179":0.6684884474,"3180":0.7305368693,"3181":0.7954849409,"3182":0.8604330126,"3183":0.9280244136,"3184":0.9956158147,"3185":1.0655837929,"3186":1.1355517711,"3187":1.2076201947,"3188":1.2796886183,"3189":1.3535730662,"3190":1.4274575141,"3191":1.5028663981,"3192":1.5782752821,"3193":1.6549109978,"3194":1.7315467135,"3195":1.8091068148,"3196":1.8866669161,"3197":1.9648453086,"3198":2.0430237012,"3199":2.1215118506,"3200":2.2,"3201":2.2784881494,"3202":2.3569762988,"3203":2.4351546914,"3204":2.5133330839,"3205":2.5908931852,"3206":2.6684532865,"3207":2.7450890022,"3208":2.8217247179,"3209":2.8971336019,"3210":2.9725424859,"3211":3.0464269338,"3212":3.1203113817,"3213":3.1923798053,"3214":3.2644482289,"3215":3.3344162071,"3216":3.4043841853,"3217":3.4719755864,"3218":3.5395669874,"3219":3.6045150591,"3220":3.6694631307,"3221":3.7315115526,"3222":3.7935599744,"3223":3.8524638696,"3224":3.9113677648,"3225":3.9668946667,"3226":4.0224215686,"3227":4.0743523377,"3228":4.1262831069,"3229":4.1744127964,"3230":4.2225424859,"3231":4.2666811498,"3232":4.3108198138,"3233":4.3507932569,"3234":4.3907667001,"3235":4.4264171656,"3236":4.4620676312,"3237":4.4932544229,"3238":4.5244412147,"3239":4.5510412527,"3240":4.5776412907,"3241":4.5995495968,"3242":4.6214579028,"3243":4.6385880148,"3244":4.6557181268,"3245":4.6680024401,"3246":4.6802867533,"3247":4.6876767872,"3248":4.6950668211,"3249":4.6975334105,"3250":4.7,"3251":4.6975334105,"3252":4.6950668211,"3253":4.6876767872,"3254":4.6802867533,"3255":4.6680024401,"3256":4.6557181268,"3257":4.6385880148,"3258":4.6214579028,"3259":4.5995495968,"3260":4.5776412907,"3261":4.5510412527,"3262":4.5244412147,"3263":4.4932544229,"3264":4.4620676312,"3265":4.4264171656,"3266":4.3907667001,"3267":4.3507932569,"3268":4.3108198138,"3269":4.2666811498,"3270":4.2225424859,"3271":4.1744127964,"3272":4.1262831069,"3273":4.0743523377,"3274":4.0224215686,"3275":3.9668946667,"3276":3.9113677648,"3277":3.8524638696,"3278":3.7935599744,"3279":3.7315115526,"3280":3.6694631307,"3281":3.6045150591,"3282":3.5395669874,"3283":3.4719755864,"3284":3.4043841853,"3285":3.3344162071,"3286":3.2644482289,"3287":3.1923798053,"3288":3.1203113817,"3289":3.0464269338,"3290":2.9725424859,"3291":2.8971336019,"3292":2.8217247179,"3293":2.7450890022,"3294":2.6684532865,"3295":2.5908931852,"3296":2.5133330839,"3297":2.4351546914,"3298":2.3569762988,"3299":2.2784881494,"3300":2.2,"3301":2.1215118506,"3302":2.0430237012,"3303":1.9648453086,"3304":1.8866669161,"3305":1.8091068148,"3306":1.7315467135,"3307":1.6549109978,"3308":1.5782752821,"3309":1.5028663981,"3310":1.4274575141,"3311":1.3535730662,"3312":1.2796886183,"3313":1.2076201947,"3314":1.1355517711,"3315":1.0655837929,"3316":0.9956158147,"3317":0.9280244136,"3318":0.8604330126,"3319":0.7954849409,"3320":0.7305368693,"3321":0.6684884474,"3322":0.6064400256,"3323":0.5475361304,"3324":0.4886322352,"3325":0.4331053333,"3326":0.3775784314,"3327":0.3256476623,"3328":0.2737168931,"3329":0.2255872036,"3330":0.1774575141,"3331":0.1333188502,"3332":0.0891801862,"3333":0.0492067431,"3334":0.0092332999,"3335":-0.0264171656,"3336":-0.0620676312,"3337":-0.0932544229,"3338":-0.1244412147,"3339":-0.1510412527,"3340":-0.1776412907,"3341":-0.1995495968,"3342":-0.2214579028,"3343":-0.2385880148,"3344":-0.2557181268,"3345":-0.2680024401,"3346":-0.2802867533,"3347":-0.2876767872,"3348":-0.2950668211,"3349":-0.2975334105,"3350":-0.3,"3351":-0.2975334105,"3352":-0.2950668211,"3353":-0.2876767872,"3354":-0.2802867533,"3355":-0.2680024401,"3356":-0.2557181268,"3357":-0.2385880148,"3358":-0.2214579028,"3359":-0.1995495968,"3360":-0.1776412907,"3361":-0.1510412527,"3362":-0.1244412147,"3363":-0.0932544229,"3364":-0.0620676312,"3365":-0.0264171656,"3366":0.0092332999,"3367":0.0492067431,"3368":0.0891801862,"3369":0.1333188502,"3370":0.1774575141,"3371":0.2255872036,"3372":0.2737168931,"3373":0.3256476623,"3374":0.3775784314,"3375":0.4331053333,"3376":0.4886322352,"3377":0.5475361304,"3378":0.6064400256,"3379":0.6684884474,"3380":0.7305368693,"3381":0.7954849409,"3382":0.8604330126,"3383":0.9280244136,"3384":0.9956158147,"3385":1.0655837929,"3386":1.1355517711,"3387":1.2076201947,"3388":1.2796886183,"3389":1.3535730662,"3390":1.4274575141,"3391":1.5028663981,"3392":1.5782752821,"3393":1.6549109978,"3394":1.7315467135,"3395":1.8091068148,"3396":1.8866669161,"3397":1.9648453086,"3398":2.0430237012,"3399":2.1215118506,"3400":2.2,"3401":2.2784881494,"3402":2.3569762988,"3403":2.4351546914,"3404":2.5133330839,"3405":2.5908931852,"3406":2.6684532865,"3407":2.7450890022,"3408":2.8217247179,"3409":2.8971336019,"3410":2.9725424859,"3411":3.0464269338,"3412":3.1203113817,"3413":3.1923798053,"3414":3.2644482289,"3415":3.3344162071,"3416":3.4043841853,"3417":3.4719755864,"3418":3.5395669874,"3419":3.6045150591,"3420":3.6694631307,"3421":3.7315115526,"3422":3.7935599744,"3423":3.8524638696,"3424":3.9113677648,"3425":3.9668946667,"3426":4.0224215686,"3427":4.0743523377,"3428":4.1262831069,"3429":4.1744127964,"3430":4.2225424859,"3431":4.2666811498,"3432":4.3108198138,"3433":4.3507932569,"3434":4.3907667001,"3435":4.4264171656,"3436":4.4620676312,"3437":4.4932544229,"3438":4.5244412147,"3439":4.5510412527,"3440":4.5776412907,"3441":4.5995495968,"3442":4.6214579028,"3443":4.6385880148,"3444":4.6557181268,"3445":4.6680024401,"3446":4.6802867533,"3447":4.6876767872,"3448":4.6950668211,"3449":4.6975334105,"3450":4.7,"3451":4.6975334105,"3452":4.6950668211,"3453":4.6876767872,"3454":4.6802867533,"3455":4.6680024401,"3456":4.6557181268,"3457":4.6385880148,"3458":4.6214579028,"3459":4.5995495968,"3460":4.5776412907,"3461":4.5510412527,"3462":4.5244412147,"3463":4.4932544229,"3464":4.4620676312,"3465":4.4264171656,"3466":4.3907667001,"3467":4.3507932569,"3468":4.3108198138,"3469":4.2666811498,"3470":4.2225424859,"3471":4.1744127964,"3472":4.1262831069,"3473":4.0743523377,"3474":4.0224215686,"3475":3.9668946667,"3476":3.9113677648,"3477":3.8524638696,"3478":3.7935599744,"3479":3.7315115526,"3480":3.6694631307,"3481":3.6045150591,"3482":3.5395669874,"3483":3.4719755864,"3484":3.4043841853,"3485":3.3344162071,"3486":3.2644482289,"3487":3.1923798053,"3488":3.1203113817,"3489":3.0464269338,"3490":2.9725424859,"3491":2.8971336019,"3492":2.8217247179,"3493":2.7450890022,"3494":2.6684532865,"3495":2.5908931852,"3496":2.5133330839,"3497":2.4351546914,"3498":2.3569762988,"3499":2.2784881494,"3500":2.2,"3501":2.1215118506,"3502":2.0430237012,"3503":1.9648453086,"3504":1.8866669161,"3505":1.8091068148,"3506":1.7315467135,"3507":1.6549109978,"3508":1.5782752821,"3509":1.5028663981,"3510":1.4274575141,"3511":1.3535730662,"3512":1.2796886183,"3513":1.2076201947,"3514":1.1355517711,"3515":1.0655837929,"3516":0.9956158147,"3517":0.9280244136,"3518":0.8604330126,"3519":0.7954849409,"3520":0.7305368693,"3521":0.6684884474,"3522":0.6064400256,"3523":0.5475361304,"3524":0.4886322352,"3525":0.4331053333,"3526":0.3775784314,"3527":0.3256476623,"3528":0.2737168931,"3529":0.2255872036,"3530":0.1774575141,"3531":0.1333188502,"3532":0.0891801862,"3533":0.0492067431,"3534":0.0092332999,"3535":-0.0264171656,"3536":-0.0620676312,"3537":-0.0932544229,"3538":-0.1244412147,"3539":-0.1510412527,"3540":-0.1776412907,"3541":-0.1995495968,"3542":-0.2214579028,"3543":-0.2385880148,"3544":-0.2557181268,"3545":-0.2680024401,"3546":-0.2802867533,"3547":-0.2876767872,"3548":-0.2950668211,"3549":-0.2975334105,"3550":-0.3,"3551":-0.2975334105,"3552":-0.2950668211,"3553":-0.2876767872,"3554":-0.2802867533,"3555":-0.2680024401,"3556":-0.2557181268,"3557":-0.2385880148,"3558":-0.2214579028,"3559":-0.1995495968,"3560":-0.1776412907,"3561":-0.1510412527,"3562":-0.1244412147,"3563":-0.0932544229,"3564":-0.0620676312,"3565":-0.0264171656,"3566":0.0092332999,"3567":0.0492067431,"3568":0.0891801862,"3569":0.1333188502,"3570":0.1774575141,"3571":0.2255872036,"3572":0.2737168931,"3573":0.3256476623,"3574":0.3775784314,"3575":0.4331053333,"3576":0.4886322352,"3577":0.5475361304,"3578":0.6064400256,"3579":0.6684884474,"3580":0.7305368693,"3581":0.7954849409,"3582":0.8604330126,"3583":0.9280244136,"3584":0.9956158147,"3585":1.0655837929,"3586":1.1355517711,"3587":1.2076201947,"3588":1.2796886183,"3589":1.3535730662,"3590":1.4274575141,"3591":1.5028663981,"3592":1.5782752821,"3593":1.6549109978,"3594":1.7315467135,"3595":1.8091068148,"3596":1.8866669161,"3597":1.9648453086,"3598":2.0430237012,"3599":2.1215118506,"3600":2.2,"3601":2.2784881494,"3602":2.3569762988,"3603":2.4351546914,"3604":2.5133330839,"3605":2.5908931852,"3606":2.6684532865,"3607":2.7450890022,"3608":2.8217247179,"3609":2.8971336019,"3610":2.9725424859,"3611":3.0464269338,"3612":3.1203113817,"3613":3.1923798053,"3614":3.2644482289,"3615":3.3344162071,"3616":3.4043841853,"3617":3.4719755864,"3618":3.5395669874,"3619":3.6045150591,"3620":3.6694631307,"3621":3.7315115526,"3622":3.7935599744,"3623":3.8524638696,"3624":3.9113677648,"3625":3.9668946667,"3626":4.0224215686,"3627":4.0743523377,"3628":4.1262831069,"3629":4.1744127964,"3630":4.2225424859,"3631":4.2666811498,"3632":4.3108198138,"3633":4.3507932569,"3634":4.3907667001,"3635":4.4264171656,"3636":4.4620676312,"3637":4.4932544229,"3638":4.5244412147,"3639":4.5510412527,"3640":4.5776412907,"3641":4.5995495968,"3642":4.6214579028,"3643":4.6385880148,"3644":4.6557181268,"3645":4.6680024401,"3646":4.6802867533,"3647":4.6876767872,"3648":4.6950668211,"3649":4.6975334105,"3650":4.7,"3651":4.6975334105,"3652":4.6950668211,"3653":4.6876767872,"3654":4.6802867533,"3655":4.6680024401,"3656":4.6557181268,"3657":4.6385880148,"3658":4.6214579028,"3659":4.5995495968,"3660":4.5776412907,"3661":4.5510412527,"3662":4.5244412147,"3663":4.4932544229,"3664":4.4620676312,"3665":4.4264171656,"3666":4.3907667001,"3667":4.3507932569,"3668":4.3108198138,"3669":4.2666811498,"3670":4.2225424859,"3671":4.1744127964,"3672":4.1262831069,"3673":4.0743523377,"3674":4.0224215686,"3675":3.9668946667,"3676":3.9113677648,"3677":3.8524638696,"3678":3.7935599744,"3679":3.7315115526,"3680":3.6694631307,"3681":3.6045150591,"3682":3.5395669874,"3683":3.4719755864,"3684":3.4043841853,"3685":3.3344162071,"3686":3.2644482289,"3687":3.1923798053,"3688":3.1203113817,"3689":3.0464269338,"3690":2.9725424859,"3691":2.8971336019,"3692":2.8217247179,"3693":2.7450890022,"3694":2.6684532865,"3695":2.5908931852,"3696":2.5133330839,"3697":2.4351546914,"3698":2.3569762988,"3699":2.2784881494,"3700":2.2,"3701":2.1215118506,"3702":2.0430237012,"3703":1.9648453086,"3704":1.8866669161,"3705":1.8091068148,"3706":1.7315467135,"3707":1.6549109978,"3708":1.5782752821,"3709":1.5028663981,"3710":1.4274575141,"3711":1.3535730662,"3712":1.2796886183,"3713":1.2076201947,"3714":1.1355517711,"3715":1.0655837929,"3716":0.9956158147,"3717":0.9280244136,"3718":0.8604330126,"3719":0.7954849409,"3720":0.7305368693,"3721":0.6684884474,"3722":0.6064400256,"3723":0.5475361304,"3724":0.4886322352,"3725":0.4331053333,"3726":0.3775784314,"3727":0.3256476623,"3728":0.2737168931,"3729":0.2255872036,"3730":0.1774575141,"3731":0.1333188502,"3732":0.0891801862,"3733":0.0492067431,"3734":0.0092332999,"3735":-0.0264171656,"3736":-0.0620676312,"3737":-0.0932544229,"3738":-0.1244412147,"3739":-0.1510412527,"3740":-0.1776412907,"3741":-0.1995495968,"3742":-0.2214579028,"3743":-0.2385880148,"3744":-0.2557181268,"3745":-0.2680024401,"3746":-0.2802867533,"3747":-0.2876767872,"3748":-0.2950668211,"3749":-0.2975334105,"3750":-0.3,"3751":-0.2975334105,"3752":-0.2950668211,"3753":-0.2876767872,"3754":-0.2802867533,"3755":-0.2680024401,"3756":-0.2557181268,"3757":-0.2385880148,"3758":-0.2214579028,"3759":-0.1995495968,"3760":-0.1776412907,"3761":-0.1510412527,"3762":-0.1244412147,"3763":-0.0932544229,"3764":-0.0620676312,"3765":-0.0264171656,"3766":0.0092332999,"3767":0.0492067431,"3768":0.0891801862,"3769":0.1333188502,"3770":0.1774575141,"3771":0.2255872036,"3772":0.2737168931,"3773":0.3256476623,"3774":0.3775784314,"3775":0.4331053333,"3776":0.4886322352,"3777":0.5475361304,"3778":0.6064400256,"3779":0.6684884474,"3780":0.7305368693,"3781":0.7954849409,"3782":0.8604330126,"3783":0.9280244136,"3784":0.9956158147,"3785":1.0655837929,"3786":1.1355517711,"3787":1.2076201947,"3788":1.2796886183,"3789":1.3535730662,"3790":1.4274575141,"3791":1.5028663981,"3792":1.5782752821,"3793":1.6549109978,"3794":1.7315467135,"3795":1.8091068148,"3796":1.8866669161,"3797":1.9648453086,"3798":2.0430237012,"3799":2.1215118506,"3800":2.2,"3801":2.2784881494,"3802":2.3569762988,"3803":2.4351546914,"3804":2.5133330839,"3805":2.5908931852,"3806":2.6684532865,"3807":2.7450890022,"3808":2.8217247179,"3809":2.8971336019,"3810":2.9725424859,"3811":3.0464269338,"3812":3.1203113817,"3813":3.1923798053,"3814":3.2644482289,"3815":3.3344162071,"3816":3.4043841853,"3817":3.4719755864,"3818":3.5395669874,"3819":3.6045150591,"3820":3.6694631307,"3821":3.7315115526,"3822":3.7935599744,"3823":3.8524638696,"3824":3.9113677648,"3825":3.9668946667,"3826":4.0224215686,"3827":4.0743523377,"3828":4.1262831069,"3829":4.1744127964,"3830":4.2225424859,"3831":4.2666811498,"3832":4.3108198138,"3833":4.3507932569,"3834":4.3907667001,"3835":4.4264171656,"3836":4.4620676312,"3837":4.4932544229,"3838":4.5244412147,"3839":4.5510412527,"3840":4.5776412907,"3841":4.5995495968,"3842":4.6214579028,"3843":4.6385880148,"3844":4.6557181268,"3845":4.6680024401,"3846":4.6802867533,"3847":4.6876767872,"3848":4.6950668211,"3849":4.6975334105,"3850":4.7,"3851":4.6975334105,"3852":4.6950668211,"3853":4.6876767872,"3854":4.6802867533,"3855":4.6680024401,"3856":4.6557181268,"3857":4.6385880148,"3858":4.6214579028,"3859":4.5995495968,"3860":4.5776412907,"3861":4.5510412527,"3862":4.5244412147,"3863":4.4932544229,"3864":4.4620676312,"3865":4.4264171656,"3866":4.3907667001,"3867":4.3507932569,"3868":4.3108198138,"3869":4.2666811498,"3870":4.2225424859,"3871":4.1744127964,"3872":4.1262831069,"3873":4.0743523377,"3874":4.0224215686,"3875":3.9668946667,"3876":3.9113677648,"3877":3.8524638696,"3878":3.7935599744,"3879":3.7315115526,"3880":3.6694631307,"3881":3.6045150591,"3882":3.5395669874,"3883":3.4719755864,"3884":3.4043841853,"3885":3.3344162071,"3886":3.2644482289,"3887":3.1923798053,"3888":3.1203113817,"3889":3.0464269338,"3890":2.9725424859,"3891":2.8971336019,"3892":2.8217247179,"3893":2.7450890022,"3894":2.6684532865,"3895":2.5908931852,"3896":2.5133330839,"3897":2.4351546914,"3898":2.3569762988,"3899":2.2784881494,"3900":2.2,"3901":2.1215118506,"3902":2.0430237012,"3903":1.9648453086,"3904":1.8866669161,"3905":1.8091068148,"3906":1.7315467135,"3907":1.6549109978,"3908":1.5782752821,"3909":1.5028663981,"3910":1.4274575141,"3911":1.3535730662,"3912":1.2796886183,"3913":1.2076201947,"3914":1.1355517711,"3915":1.0655837929,"3916":0.9956158147,"3917":0.9280244136,"3918":0.8604330126,"3919":0.7954849409,"3920":0.7305368693,"3921":0.6684884474,"3922":0.6064400256,"3923":0.5475361304,"3924":0.4886322352,"3925":0.4331053333,"3926":0.3775784314,"3927":0.3256476623,"3928":0.2737168931,"3929":0.2255872036,"3930":0.1774575141,"3931":0.1333188502,"3932":0.0891801862,"3933":0.0492067431,"3934":0.0092332999,"3935":-0.0264171656,"3936":-0.0620676312,"3937":-0.0932544229,"3938":-0.1244412147,"3939":-0.1510412527,"3940":-0.1776412907,"3941":-0.1995495968,"3942":-0.2214579028,"3943":-0.2385880148,"3944":-0.2557181268,"3945":-0.2680024401,"3946":-0.2802867533,"3947":-0.2876767872,"3948":-0.2950668211,"3949":-0.2975334105,"3950":-0.3,"3951":-0.2975334105,"3952":-0.2950668211,"3953":-0.2876767872,"3954":-0.2802867533,"3955":-0.2680024401,"3956":-0.2557181268,"3957":-0.2385880148,"3958":-0.2214579028,"3959":-0.1995495968,"3960":-0.1776412907,"3961":-0.1510412527,"3962":-0.1244412147,"3963":-0.0932544229,"3964":-0.0620676312,"3965":-0.0264171656,"3966":0.0092332999,"3967":0.0492067431,"3968":0.0891801862,"3969":0.1333188502,"3970":0.1774575141,"3971":0.2255872036,"3972":0.2737168931,"3973":0.3256476623,"3974":0.3775784314,"3975":0.4331053333,"3976":0.4886322352,"3977":0.5475361304,"3978":0.6064400256,"3979":0.6684884474,"3980":0.7305368693,"3981":0.7954849409,"3982":0.8604330126,"3983":0.9280244136,"3984":0.9956158147,"3985":1.0655837929,"3986":1.1355517711,"3987":1.2076201947,"3988":1.2796886183,"3989":1.3535730662,"3990":1.4274575141,"3991":1.5028663981,"3992":1.5782752821,"3993":1.6549109978,"3994":1.7315467135,"3995":1.8091068148,"3996":1.8866669161,"3997":1.9648453086,"3998":2.0430237012,"3999":2.1215118506,"4000":2.2,"4001":2.2784881494,"4002":2.3569762988,"4003":2.4351546914,"4004":2.5133330839,"4005":2.5908931852,"4006":2.6684532865,"4007":2.7450890022,"4008":2.8217247179,"4009":2.8971336019,"4010":2.9725424859,"4011":3.0464269338,"4012":3.1203113817,"4013":3.1923798053,"4014":3.2644482289,"4015":3.3344162071,"4016":3.4043841853,"4017":3.4719755864,"4018":3.5395669874,"4019":3.6045150591,"4020":3.6694631307,"4021":3.7315115526,"4022":3.7935599744,"4023":3.8524638696,"4024":3.9113677648,"4025":3.9668946667,"4026":4.0224215686,"4027":4.0743523377,"4028":4.1262831069,"4029":4.1744127964,"4030":4.2225424859,"4031":4.2666811498,"4032":4.3108198138,"4033":4.3507932569,"4034":4.3907667001,"4035":4.4264171656,"4036":4.4620676312,"4037":4.4932544229,"4038":4.5244412147,"4039":4.5510412527,"4040":4.5776412907,"4041":4.5995495968,"4042":4.6214579028,"4043":4.6385880148,"4044":4.6557181268,"4045":4.6680024401,"4046":4.6802867533,"4047":4.6876767872,"4048":4.6950668211,"4049":4.6975334105,"4050":4.7,"4051":4.6975334105,"4052":4.6950668211,"4053":4.6876767872,"4054":4.6802867533,"4055":4.6680024401,"4056":4.6557181268,"4057":4.6385880148,"4058":4.6214579028,"4059":4.5995495968,"4060":4.5776412907,"4061":4.5510412527,"4062":4.5244412147,"4063":4.4932544229,"4064":4.4620676312,"4065":4.4264171656,"4066":4.3907667001,"4067":4.3507932569,"4068":4.3108198138,"4069":4.2666811498,"4070":4.2225424859,"4071":4.1744127964,"4072":4.1262831069,"4073":4.0743523377,"4074":4.0224215686,"4075":3.9668946667,"4076":3.9113677648,"4077":3.8524638696,"4078":3.7935599744,"4079":3.7315115526,"4080":3.6694631307,"4081":3.6045150591,"4082":3.5395669874,"4083":3.4719755864,"4084":3.4043841853,"4085":3.3344162071,"4086":3.2644482289,"4087":3.1923798053,"4088":3.1203113817,"4089":3.0464269338,"4090":2.9725424859,"4091":2.8971336019,"4092":2.8217247179,"4093":2.7450890022,"4094":2.6684532865,"4095":2.5908931852,"4096":2.5133330839,"4097":2.4351546914,"4098":2.3569762988,"4099":2.2784881494,"4100":2.2,"4101":2.1215118506,"4102":2.0430237012,"4103":1.9648453086,"4104":1.8866669161,"4105":1.8091068148,"4106":1.7315467135,"4107":1.6549109978,"4108":1.5782752821,"4109":1.5028663981,"4110":1.4274575141,"4111":1.3535730662,"4112":1.2796886183,"4113":1.2076201947,"4114":1.1355517711,"4115":1.0655837929,"4116":0.9956158147,"4117":0.9280244136,"4118":0.8604330126,"4119":0.7954849409,"4120":0.7305368693,"4121":0.6684884474,"4122":0.6064400256,"4123":0.5475361304,"4124":0.4886322352,"4125":0.4331053333,"4126":0.3775784314,"4127":0.3256476623,"4128":0.2737168931,"4129":0.2255872036,"4130":0.1774575141,"4131":0.1333188502,"4132":0.0891801862,"4133":0.0492067431,"4134":0.0092332999,"4135":-0.0264171656,"4136":-0.0620676312,"4137":-0.0932544229,"4138":-0.1244412147,"4139":-0.1510412527,"4140":-0.1776412907,"4141":-0.1995495968,"4142":-0.2214579028,"4143":-0.2385880148,"4144":-0.2557181268,"4145":-0.2680024401,"4146":-0.2802867533,"4147":-0.2876767872,"4148":-0.2950668211,"4149":-0.2975334105,"4150":-0.3,"4151":-0.2975334105,"4152":-0.2950668211,"4153":-0.2876767872,"4154":-0.2802867533,"4155":-0.2680024401,"4156":-0.2557181268,"4157":-0.2385880148,"4158":-0.2214579028,"4159":-0.1995495968,"4160":-0.1776412907,"4161":-0.1510412527,"4162":-0.1244412147,"4163":-0.0932544229,"4164":-0.0620676312,"4165":-0.0264171656,"4166":0.0092332999,"4167":0.0492067431,"4168":0.0891801862,"4169":0.1333188502,"4170":0.1774575141,"4171":0.2255872036,"4172":0.2737168931,"4173":0.3256476623,"4174":0.3775784314,"4175":0.4331053333,"4176":0.4886322352,"4177":0.5475361304,"4178":0.6064400256,"4179":0.6684884474,"4180":0.7305368693,"4181":0.7954849409,"4182":0.8604330126,"4183":0.9280244136,"4184":0.9956158147,"4185":1.0655837929,"4186":1.1355517711,"4187":1.2076201947,"4188":1.2796886183,"4189":1.3535730662,"4190":1.4274575141,"4191":1.5028663981,"4192":1.5782752821,"4193":1.6549109978,"4194":1.7315467135,"4195":1.8091068148,"4196":1.8866669161,"4197":1.9648453086,"4198":2.0430237012,"4199":2.1215118506,"4200":2.2,"4201":2.2784881494,"4202":2.3569762988,"4203":2.4351546914,"4204":2.5133330839,"4205":2.5908931852,"4206":2.6684532865,"4207":2.7450890022,"4208":2.8217247179,"4209":2.8971336019,"4210":2.9725424859,"4211":3.0464269338,"4212":3.1203113817,"4213":3.1923798053,"4214":3.2644482289,"4215":3.3344162071,"4216":3.4043841853,"4217":3.4719755864,"4218":3.5395669874,"4219":3.6045150591,"4220":3.6694631307,"4221":3.7315115526,"4222":3.7935599744,"4223":3.8524638696,"4224":3.9113677648,"4225":3.9668946667,"4226":4.0224215686,"4227":4.0743523377,"4228":4.1262831069,"4229":4.1744127964,"4230":4.2225424859,"4231":4.2666811498,"4232":4.3108198138,"4233":4.3507932569,"4234":4.3907667001,"4235":4.4264171656,"4236":4.4620676312,"4237":4.4932544229,"4238":4.5244412147,"4239":4.5510412527,"4240":4.5776412907,"4241":4.5995495968,"4242":4.6214579028,"4243":4.6385880148,"4244":4.6557181268,"4245":4.6680024401,"4246":4.6802867533,"4247":4.6876767872,"4248":4.6950668211,"4249":4.6975334105,"4250":4.7,"4251":4.6975334105,"4252":4.6950668211,"4253":4.6876767872,"4254":4.6802867533,"4255":4.6680024401,"4256":4.6557181268,"4257":4.6385880148,"4258":4.6214579028,"4259":4.5995495968,"4260":4.5776412907,"4261":4.5510412527,"4262":4.5244412147,"4263":4.4932544229,"4264":4.4620676312,"4265":4.4264171656,"4266":4.3907667001,"4267":4.3507932569,"4268":4.3108198138,"4269":4.2666811498,"4270":4.2225424859,"4271":4.1744127964,"4272":4.1262831069,"4273":4.0743523377,"4274":4.0224215686,"4275":3.9668946667,"4276":3.9113677648,"4277":3.8524638696,"4278":3.7935599744,"4279":3.7315115526,"4280":3.6694631307,"4281":3.6045150591,"4282":3.5395669874,"4283":3.4719755864,"4284":3.4043841853,"4285":3.3344162071,"4286":3.2644482289,"4287":3.1923798053,"4288":3.1203113817,"4289":3.0464269338,"4290":2.9725424859,"4291":2.8971336019,"4292":2.8217247179,"4293":2.7450890022,"4294":2.6684532865,"4295":2.5908931852,"4296":2.5133330839,"4297":2.4351546914,"4298":2.3569762988,"4299":2.2784881494,"4300":2.2,"4301":2.1215118506,"4302":2.0430237012,"4303":1.9648453086,"4304":1.8866669161,"4305":1.8091068148,"4306":1.7315467135,"4307":1.6549109978,"4308":1.5782752821,"4309":1.5028663981,"4310":1.4274575141,"4311":1.3535730662,"4312":1.2796886183,"4313":1.2076201947,"4314":1.1355517711,"4315":1.0655837929,"4316":0.9956158147,"4317":0.9280244136,"4318":0.8604330126,"4319":0.7954849409,"4320":0.7305368693,"4321":0.6684884474,"4322":0.6064400256,"4323":0.5475361304,"4324":0.4886322352,"4325":0.4331053333,"4326":0.3775784314,"4327":0.3256476623,"4328":0.2737168931,"4329":0.2255872036,"4330":0.1774575141,"4331":0.1333188502,"4332":0.0891801862,"4333":0.0492067431,"4334":0.0092332999,"4335":-0.0264171656,"4336":-0.0620676312,"4337":-0.0932544229,"4338":-0.1244412147,"4339":-0.1510412527,"4340":-0.1776412907,"4341":-0.1995495968,"4342":-0.2214579028,"4343":-0.2385880148,"4344":-0.2557181268,"4345":-0.2680024401,"4346":-0.2802867533,"4347":-0.2876767872,"4348":-0.2950668211,"4349":-0.2975334105,"4350":-0.3,"4351":-0.2975334105,"4352":-0.2950668211,"4353":-0.2876767872,"4354":-0.2802867533,"4355":-0.2680024401,"4356":-0.2557181268,"4357":-0.2385880148,"4358":-0.2214579028,"4359":-0.1995495968,"4360":-0.1776412907,"4361":-0.1510412527,"4362":-0.1244412147,"4363":-0.0932544229,"4364":-0.0620676312,"4365":-0.0264171656,"4366":0.0092332999,"4367":0.0492067431,"4368":0.0891801862,"4369":0.1333188502,"4370":0.1774575141,"4371":0.2255872036,"4372":0.2737168931,"4373":0.3256476623,"4374":0.3775784314,"4375":0.4331053333,"4376":0.4886322352,"4377":0.5475361304,"4378":0.6064400256,"4379":0.6684884474,"4380":0.7305368693,"4381":0.7954849409,"4382":0.8604330126,"4383":0.9280244136,"4384":0.9956158147,"4385":1.0655837929,"4386":1.1355517711,"4387":1.2076201947,"4388":1.2796886183,"4389":1.3535730662,"4390":1.4274575141,"4391":1.5028663981,"4392":1.5782752821,"4393":1.6549109978,"4394":1.7315467135,"4395":1.8091068148,"4396":1.8866669161,"4397":1.9648453086,"4398":2.0430237012,"4399":2.1215118506,"4400":2.2,"4401":2.2784881494,"4402":2.3569762988,"4403":2.4351546914,"4404":2.5133330839,"4405":2.5908931852,"4406":2.6684532865,"4407":2.7450890022,"4408":2.8217247179,"4409":2.8971336019,"4410":2.9725424859,"4411":3.0464269338,"4412":3.1203113817,"4413":3.1923798053,"4414":3.2644482289,"4415":3.3344162071,"4416":3.4043841853,"4417":3.4719755864,"4418":3.5395669874,"4419":3.6045150591,"4420":3.6694631307,"4421":3.7315115526,"4422":3.7935599744,"4423":3.8524638696,"4424":3.9113677648,"4425":3.9668946667,"4426":4.0224215686,"4427":4.0743523377,"4428":4.1262831069,"4429":4.1744127964,"4430":4.2225424859,"4431":4.2666811498,"4432":4.3108198138,"4433":4.3507932569,"4434":4.3907667001,"4435":4.4264171656,"4436":4.4620676312,"4437":4.4932544229,"4438":4.5244412147,"4439":4.5510412527,"4440":4.5776412907,"4441":4.5995495968,"4442":4.6214579028,"4443":4.6385880148,"4444":4.6557181268,"4445":4.6680024401,"4446":4.6802867533,"4447":4.6876767872,"4448":4.6950668211,"4449":4.6975334105,"4450":4.7,"4451":4.6975334105,"4452":4.6950668211,"4453":4.6876767872,"4454":4.6802867533,"4455":4.6680024401,"4456":4.6557181268,"4457":4.6385880148,"4458":4.6214579028,"4459":4.5995495968,"4460":4.5776412907,"4461":4.5510412527,"4462":4.5244412147,"4463":4.4932544229,"4464":4.4620676312,"4465":4.4264171656,"4466":4.3907667001,"4467":4.3507932569,"4468":4.3108198138,"4469":4.2666811498,"4470":4.2225424859,"4471":4.1744127964,"4472":4.1262831069,"4473":4.0743523377,"4474":4.0224215686,"4475":3.9668946667,"4476":3.9113677648,"4477":3.8524638696,"4478":3.7935599744,"4479":3.7315115526,"4480":3.6694631307,"4481":3.6045150591,"4482":3.5395669874,"4483":3.4719755864,"4484":3.4043841853,"4485":3.3344162071,"4486":3.2644482289,"4487":3.1923798053,"4488":3.1203113817,"4489":3.0464269338,"4490":2.9725424859,"4491":2.8971336019,"4492":2.8217247179,"4493":2.7450890022,"4494":2.6684532865,"4495":2.5908931852,"4496":2.5133330839,"4497":2.4351546914,"4498":2.3569762988,"4499":2.2784881494,"4500":2.2,"4501":2.1215118506,"4502":2.0430237012,"4503":1.9648453086,"4504":1.8866669161,"4505":1.8091068148,"4506":1.7315467135,"4507":1.6549109978,"4508":1.5782752821,"4509":1.5028663981,"4510":1.4274575141,"4511":1.3535730662,"4512":1.2796886183,"4513":1.2076201947,"4514":1.1355517711,"4515":1.0655837929,"4516":0.9956158147,"4517":0.9280244136,"4518":0.8604330126,"4519":0.7954849409,"4520":0.7305368693,"4521":0.6684884474,"4522":0.6064400256,"4523":0.5475361304,"4524":0.4886322352,"4525":0.4331053333,"4526":0.3775784314,"4527":0.3256476623,"4528":0.2737168931,"4529":0.2255872036,"4530":0.1774575141,"4531":0.1333188502,"4532":0.0891801862,"4533":0.0492067431,"4534":0.0092332999,"4535":-0.0264171656,"4536":-0.0620676312,"4537":-0.0932544229,"4538":-0.1244412147,"4539":-0.1510412527,"4540":-0.1776412907,"4541":-0.1995495968,"4542":-0.2214579028,"4543":-0.2385880148,"4544":-0.2557181268,"4545":-0.2680024401,"4546":-0.2802867533,"4547":-0.2876767872,"4548":-0.2950668211,"4549":-0.2975334105,"4550":-0.3,"4551":-0.2975334105,"4552":-0.2950668211,"4553":-0.2876767872,"4554":-0.2802867533,"4555":-0.2680024401,"4556":-0.2557181268,"4557":-0.2385880148,"4558":-0.2214579028,"4559":-0.1995495968,"4560":-0.1776412907,"4561":-0.1510412527,"4562":-0.1244412147,"4563":-0.0932544229,"4564":-0.0620676312,"4565":-0.0264171656,"4566":0.0092332999,"4567":0.0492067431,"4568":0.0891801862,"4569":0.1333188502,"4570":0.1774575141,"4571":0.2255872036,"4572":0.2737168931,"4573":0.3256476623,"4574":0.3775784314,"4575":0.4331053333,"4576":0.4886322352,"4577":0.5475361304,"4578":0.6064400256,"4579":0.6684884474,"4580":0.7305368693,"4581":0.7954849409,"4582":0.8604330126,"4583":0.9280244136,"4584":0.9956158147,"4585":1.0655837929,"4586":1.1355517711,"4587":1.2076201947,"4588":1.2796886183,"4589":1.3535730662,"4590":1.4274575141,"4591":1.5028663981,"4592":1.5782752821,"4593":1.6549109978,"4594":1.7315467135,"4595":1.8091068148,"4596":1.8866669161,"4597":1.9648453086,"4598":2.0430237012,"4599":2.1215118506,"4600":2.2,"4601":2.2784881494,"4602":2.3569762988,"4603":2.4351546914,"4604":2.5133330839,"4605":2.5908931852,"4606":2.6684532865,"4607":2.7450890022,"4608":2.8217247179,"4609":2.8971336019,"4610":2.9725424859,"4611":3.0464269338,"4612":3.1203113817,"4613":3.1923798053,"4614":3.2644482289,"4615":3.3344162071,"4616":3.4043841853,"4617":3.4719755864,"4618":3.5395669874,"4619":3.6045150591,"4620":3.6694631307,"4621":3.7315115526,"4622":3.7935599744,"4623":3.8524638696,"4624":3.9113677648,"4625":3.9668946667,"4626":4.0224215686,"4627":4.0743523377,"4628":4.1262831069,"4629":4.1744127964,"4630":4.2225424859,"4631":4.2666811498,"4632":4.3108198138,"4633":4.3507932569,"4634":4.3907667001,"4635":4.4264171656,"4636":4.4620676312,"4637":4.4932544229,"4638":4.5244412147,"4639":4.5510412527,"4640":4.5776412907,"4641":4.5995495968,"4642":4.6214579028,"4643":4.6385880148,"4644":4.6557181268,"4645":4.6680024401,"4646":4.6802867533,"4647":4.6876767872,"4648":4.6950668211,"4649":4.6975334105,"4650":4.7,"4651":4.6975334105,"4652":4.6950668211,"4653":4.6876767872,"4654":4.6802867533,"4655":4.6680024401,"4656":4.6557181268,"4657":4.6385880148,"4658":4.6214579028,"4659":4.5995495968,"4660":4.5776412907,"4661":4.5510412527,"4662":4.5244412147,"4663":4.4932544229,"4664":4.4620676312,"4665":4.4264171656,"4666":4.3907667001,"4667":4.3507932569,"4668":4.3108198138,"4669":4.2666811498,"4670":4.2225424859,"4671":4.1744127964,"4672":4.1262831069,"4673":4.0743523377,"4674":4.0224215686,"4675":3.9668946667,"4676":3.9113677648,"4677":3.8524638696,"4678":3.7935599744,"4679":3.7315115526,"4680":3.6694631307,"4681":3.6045150591,"4682":3.5395669874,"4683":3.4719755864,"4684":3.4043841853,"4685":3.3344162071,"4686":3.2644482289,"4687":3.1923798053,"4688":3.1203113817,"4689":3.0464269338,"4690":2.9725424859,"4691":2.8971336019,"4692":2.8217247179,"4693":2.7450890022,"4694":2.6684532865,"4695":2.5908931852,"4696":2.5133330839,"4697":2.4351546914,"4698":2.3569762988,"4699":2.2784881494,"4700":2.2,"4701":2.1215118506,"4702":2.0430237012,"4703":1.9648453086,"4704":1.8866669161,"4705":1.8091068148,"4706":1.7315467135,"4707":1.6549109978,"4708":1.5782752821,"4709":1.5028663981,"4710":1.4274575141,"4711":1.3535730662,"4712":1.2796886183,"4713":1.2076201947,"4714":1.1355517711,"4715":1.0655837929,"4716":0.9956158147,"4717":0.9280244136,"4718":0.8604330126,"4719":0.7954849409,"4720":0.7305368693,"4721":0.6684884474,"4722":0.6064400256,"4723":0.5475361304,"4724":0.4886322352,"4725":0.4331053333,"4726":0.3775784314,"4727":0.3256476623,"4728":0.2737168931,"4729":0.2255872036,"4730":0.1774575141,"4731":0.1333188502,"4732":0.0891801862,"4733":0.0492067431,"4734":0.0092332999,"4735":-0.0264171656,"4736":-0.0620676312,"4737":-0.0932544229,"4738":-0.1244412147,"4739":-0.1510412527,"4740":-0.1776412907,"4741":-0.1995495968,"4742":-0.2214579028,"4743":-0.2385880148,"4744":-0.2557181268,"4745":-0.2680024401,"4746":-0.2802867533,"4747":-0.2876767872,"4748":-0.2950668211,"4749":-0.2975334105,"4750":-0.3,"4751":-0.2975334105,"4752":-0.2950668211,"4753":-0.2876767872,"4754":-0.2802867533,"4755":-0.2680024401,"4756":-0.2557181268,"4757":-0.2385880148,"4758":-0.2214579028,"4759":-0.1995495968,"4760":-0.1776412907,"4761":-0.1510412527,"4762":-0.1244412147,"4763":-0.0932544229,"4764":-0.0620676312,"4765":-0.0264171656,"4766":0.0092332999,"4767":0.0492067431,"4768":0.0891801862,"4769":0.1333188502,"4770":0.1774575141,"4771":0.2255872036,"4772":0.2737168931,"4773":0.3256476623,"4774":0.3775784314,"4775":0.4331053333,"4776":0.4886322352,"4777":0.5475361304,"4778":0.6064400256,"4779":0.6684884474,"4780":0.7305368693,"4781":0.7954849409,"4782":0.8604330126,"4783":0.9280244136,"4784":0.9956158147,"4785":1.0655837929,"4786":1.1355517711,"4787":1.2076201947,"4788":1.2796886183,"4789":1.3535730662,"4790":1.4274575141,"4791":1.5028663981,"4792":1.5782752821,"4793":1.6549109978,"4794":1.7315467135,"4795":1.8091068148,"4796":1.8866669161,"4797":1.9648453086,"4798":2.0430237012,"4799":2.1215118506,"4800":2.2,"4801":2.2784881494,"4802":2.3569762988,"4803":2.4351546914,"4804":2.5133330839,"4805":2.5908931852,"4806":2.6684532865,"4807":2.7450890022,"4808":2.8217247179,"4809":2.8971336019,"4810":2.9725424859,"4811":3.0464269338,"4812":3.1203113817,"4813":3.1923798053,"4814":3.2644482289,"4815":3.3344162071,"4816":3.4043841853,"4817":3.4719755864,"4818":3.5395669874,"4819":3.6045150591,"4820":3.6694631307,"4821":3.7315115526,"4822":3.7935599744,"4823":3.8524638696,"4824":3.9113677648,"4825":3.9668946667,"4826":4.0224215686,"4827":4.0743523377,"4828":4.1262831069,"4829":4.1744127964,"4830":4.2225424859,"4831":4.2666811498,"4832":4.3108198138,"4833":4.3507932569,"4834":4.3907667001,"4835":4.4264171656,"4836":4.4620676312,"4837":4.4932544229,"4838":4.5244412147,"4839":4.5510412527,"4840":4.5776412907,"4841":4.5995495968,"4842":4.6214579028,"4843":4.6385880148,"4844":4.6557181268,"4845":4.6680024401,"4846":4.6802867533,"4847":4.6876767872,"4848":4.6950668211,"4849":4.6975334105,"4850":4.7,"4851":4.6975334105,"4852":4.6950668211,"4853":4.6876767872,"4854":4.6802867533,"4855":4.6680024401,"4856":4.6557181268,"4857":4.6385880148,"4858":4.6214579028,"4859":4.5995495968,"4860":4.5776412907,"4861":4.5510412527,"4862":4.5244412147,"4863":4.4932544229,"4864":4.4620676312,"4865":4.4264171656,"4866":4.3907667001,"4867":4.3507932569,"4868":4.3108198138,"4869":4.2666811498,"4870":4.2225424859,"4871":4.1744127964,"4872":4.1262831069,"4873":4.0743523377,"4874":4.0224215686,"4875":3.9668946667,"4876":3.9113677648,"4877":3.8524638696,"4878":3.7935599744,"4879":3.7315115526,"4880":3.6694631307,"4881":3.6045150591,"4882":3.5395669874,"4883":3.4719755864,"4884":3.4043841853,"4885":3.3344162071,"4886":3.2644482289,"4887":3.1923798053,"4888":3.1203113817,"4889":3.0464269338,"4890":2.9725424859,"4891":2.8971336019,"4892":2.8217247179,"4893":2.7450890022,"4894":2.6684532865,"4895":2.5908931852,"4896":2.5133330839,"4897":2.4351546914,"4898":2.3569762988,"4899":2.2784881494,"4900":2.2,"4901":2.1215118506,"4902":2.0430237012,"4903":1.9648453086,"4904":1.8866669161,"4905":1.8091068148,"4906":1.7315467135,"4907":1.6549109978,"4908":1.5782752821,"4909":1.5028663981,"4910":1.4274575141,"4911":1.3535730662,"4912":1.2796886183,"4913":1.2076201947,"4914":1.1355517711,"4915":1.0655837929,"4916":0.9956158147,"4917":0.9280244136,"4918":0.8604330126,"4919":0.7954849409,"4920":0.7305368693,"4921":0.6684884474,"4922":0.6064400256,"4923":0.5475361304,"4924":0.4886322352,"4925":0.4331053333,"4926":0.3775784314,"4927":0.3256476623,"4928":0.2737168931,"4929":0.2255872036,"4930":0.1774575141,"4931":0.1333188502,"4932":0.0891801862,"4933":0.0492067431,"4934":0.0092332999,"4935":-0.0264171656,"4936":-0.0620676312,"4937":-0.0932544229,"4938":-0.1244412147,"4939":-0.1510412527,"4940":-0.1776412907,"4941":-0.1995495968,"4942":-0.2214579028,"4943":-0.2385880148,"4944":-0.2557181268,"4945":-0.2680024401,"4946":-0.2802867533,"4947":-0.2876767872,"4948":-0.2950668211,"4949":-0.2975334105,"4950":-0.3,"4951":-0.2975334105,"4952":-0.2950668211,"4953":-0.2876767872,"4954":-0.2802867533,"4955":-0.2680024401,"4956":-0.2557181268,"4957":-0.2385880148,"4958":-0.2214579028,"4959":-0.1995495968,"4960":-0.1776412907,"4961":-0.1510412527,"4962":-0.1244412147,"4963":-0.0932544229,"4964":-0.0620676312,"4965":-0.0264171656,"4966":0.0092332999,"4967":0.0492067431,"4968":0.0891801862,"4969":0.1333188502,"4970":0.1774575141,"4971":0.2255872036,"4972":0.2737168931,"4973":0.3256476623,"4974":0.3775784314,"4975":0.4331053333,"4976":0.4886322352,"4977":0.5475361304,"4978":0.6064400256,"4979":0.6684884474,"4980":0.7305368693,"4981":0.7954849409,"4982":0.8604330126,"4983":0.9280244136,"4984":0.9956158147,"4985":1.0655837929,"4986":1.1355517711,"4987":1.2076201947,"4988":1.2796886183,"4989":1.3535730662,"4990":1.4274575141,"4991":1.5028663981,"4992":1.5782752821,"4993":1.6549109978,"4994":1.7315467135,"4995":1.8091068148,"4996":1.8866669161,"4997":1.9648453086,"4998":2.0430237012,"4999":2.1215118506,"5000":2.2,"5001":2.2784881494,"5002":2.3569762988,"5003":2.4351546914,"5004":2.5133330839,"5005":2.5908931852,"5006":2.6684532865,"5007":2.7450890022,"5008":2.8217247179,"5009":2.8971336019,"5010":2.9725424859,"5011":3.0464269338,"5012":3.1203113817,"5013":3.1923798053,"5014":3.2644482289,"5015":3.3344162071,"5016":3.4043841853,"5017":3.4719755864,"5018":3.5395669874,"5019":3.6045150591,"5020":3.6694631307,"5021":3.7315115526,"5022":3.7935599744,"5023":3.8524638696,"5024":3.9113677648,"5025":3.9668946667,"5026":4.0224215686,"5027":4.0743523377,"5028":4.1262831069,"5029":4.1744127964,"5030":4.2225424859,"5031":4.2666811498,"5032":4.3108198138,"5033":4.3507932569,"5034":4.3907667001,"5035":4.4264171656,"5036":4.4620676312,"5037":4.4932544229,"5038":4.5244412147,"5039":4.5510412527,"5040":4.5776412907,"5041":4.5995495968,"5042":4.6214579028,"5043":4.6385880148,"5044":4.6557181268,"5045":4.6680024401,"5046":4.6802867533,"5047":4.6876767872,"5048":4.6950668211,"5049":4.6975334105,"5050":4.7,"5051":4.6975334105,"5052":4.6950668211,"5053":4.6876767872,"5054":4.6802867533,"5055":4.6680024401,"5056":4.6557181268,"5057":4.6385880148,"5058":4.6214579028,"5059":4.5995495968,"5060":4.5776412907,"5061":4.5510412527,"5062":4.5244412147,"5063":4.4932544229,"5064":4.4620676312,"5065":4.4264171656,"5066":4.3907667001,"5067":4.3507932569,"5068":4.3108198138,"5069":4.2666811498,"5070":4.2225424859,"5071":4.1744127964,"5072":4.1262831069,"5073":4.0743523377,"5074":4.0224215686,"5075":3.9668946667,"5076":3.9113677648,"5077":3.8524638696,"5078":3.7935599744,"5079":3.7315115526,"5080":3.6694631307,"5081":3.6045150591,"5082":3.5395669874,"5083":3.4719755864,"5084":3.4043841853,"5085":3.3344162071,"5086":3.2644482289,"5087":3.1923798053,"5088":3.1203113817,"5089":3.0464269338,"5090":2.9725424859,"5091":2.8971336019,"5092":2.8217247179,"5093":2.7450890022,"5094":2.6684532865,"5095":2.5908931852,"5096":2.5133330839,"5097":2.4351546914,"5098":2.3569762988,"5099":2.2784881494,"5100":2.2,"5101":2.1215118506,"5102":2.0430237012,"5103":1.9648453086,"5104":1.8866669161,"5105":1.8091068148,"5106":1.7315467135,"5107":1.6549109978,"5108":1.5782752821,"5109":1.5028663981,"5110":1.4274575141,"5111":1.3535730662,"5112":1.2796886183,"5113":1.2076201947,"5114":1.1355517711,"5115":1.0655837929,"5116":0.9956158147,"5117":0.9280244136,"5118":0.8604330126,"5119":0.7954849409,"5120":0.7305368693,"5121":0.6684884474,"5122":0.6064400256,"5123":0.5475361304,"5124":0.4886322352,"5125":0.4331053333,"5126":0.3775784314,"5127":0.3256476623,"5128":0.2737168931,"5129":0.2255872036,"5130":0.1774575141,"5131":0.1333188502,"5132":0.0891801862,"5133":0.0492067431,"5134":0.0092332999,"5135":-0.0264171656,"5136":-0.0620676312,"5137":-0.0932544229,"5138":-0.1244412147,"5139":-0.1510412527,"5140":-0.1776412907,"5141":-0.1995495968,"5142":-0.2214579028,"5143":-0.2385880148,"5144":-0.2557181268,"5145":-0.2680024401,"5146":-0.2802867533,"5147":-0.2876767872,"5148":-0.2950668211,"5149":-0.2975334105,"5150":-0.3,"5151":-0.2975334105,"5152":-0.2950668211,"5153":-0.2876767872,"5154":-0.2802867533,"5155":-0.2680024401,"5156":-0.2557181268,"5157":-0.2385880148,"5158":-0.2214579028,"5159":-0.1995495968,"5160":-0.1776412907,"5161":-0.1510412527,"5162":-0.1244412147,"5163":-0.0932544229,"5164":-0.0620676312,"5165":-0.0264171656,"5166":0.0092332999,"5167":0.0492067431,"5168":0.0891801862,"5169":0.1333188502,"5170":0.1774575141,"5171":0.2255872036,"5172":0.2737168931,"5173":0.3256476623,"5174":0.3775784314,"5175":0.4331053333,"5176":0.4886322352,"5177":0.5475361304,"5178":0.6064400256,"5179":0.6684884474,"5180":0.7305368693,"5181":0.7954849409,"5182":0.8604330126,"5183":0.9280244136,"5184":0.9956158147,"5185":1.0655837929,"5186":1.1355517711,"5187":1.2076201947,"5188":1.2796886183,"5189":1.3535730662,"5190":1.4274575141,"5191":1.5028663981,"5192":1.5782752821,"5193":1.6549109978,"5194":1.7315467135,"5195":1.8091068148,"5196":1.8866669161,"5197":1.9648453086,"5198":2.0430237012,"5199":2.1215118506,"5200":2.2,"5201":2.2784881494,"5202":2.3569762988,"5203":2.4351546914,"5204":2.5133330839,"5205":2.5908931852,"5206":2.6684532865,"5207":2.7450890022,"5208":2.8217247179,"5209":2.8971336019,"5210":2.9725424859,"5211":3.0464269338,"5212":3.1203113817,"5213":3.1923798053,"5214":3.2644482289,"5215":3.3344162071,"5216":3.4043841853,"5217":3.4719755864,"5218":3.5395669874,"5219":3.6045150591,"5220":3.6694631307,"5221":3.7315115526,"5222":3.7935599744,"5223":3.8524638696,"5224":3.9113677648,"5225":3.9668946667,"5226":4.0224215686,"5227":4.0743523377,"5228":4.1262831069,"5229":4.1744127964,"5230":4.2225424859,"5231":4.2666811498,"5232":4.3108198138,"5233":4.3507932569,"5234":4.3907667001,"5235":4.4264171656,"5236":4.4620676312,"5237":4.4932544229,"5238":4.5244412147,"5239":4.5510412527,"5240":4.5776412907,"5241":4.5995495968,"5242":4.6214579028,"5243":4.6385880148,"5244":4.6557181268,"5245":4.6680024401,"5246":4.6802867533,"5247":4.6876767872,"5248":4.6950668211,"5249":4.6975334105,"5250":4.7,"5251":4.6975334105,"5252":4.6950668211,"5253":4.6876767872,"5254":4.6802867533,"5255":4.6680024401,"5256":4.6557181268,"5257":4.6385880148,"5258":4.6214579028,"5259":4.5995495968,"5260":4.5776412907,"5261":4.5510412527,"5262":4.5244412147,"5263":4.4932544229,"5264":4.4620676312,"5265":4.4264171656,"5266":4.3907667001,"5267":4.3507932569,"5268":4.3108198138,"5269":4.2666811498,"5270":4.2225424859,"5271":4.1744127964,"5272":4.1262831069,"5273":4.0743523377,"5274":4.0224215686,"5275":3.9668946667,"5276":3.9113677648,"5277":3.8524638696,"5278":3.7935599744,"5279":3.7315115526,"5280":3.6694631307,"5281":3.6045150591,"5282":3.5395669874,"5283":3.4719755864,"5284":3.4043841853,"5285":3.3344162071,"5286":3.2644482289,"5287":3.1923798053,"5288":3.1203113817,"5289":3.0464269338,"5290":2.9725424859,"5291":2.8971336019,"5292":2.8217247179,"5293":2.7450890022,"5294":2.6684532865,"5295":2.5908931852,"5296":2.5133330839,"5297":2.4351546914,"5298":2.3569762988,"5299":2.2784881494,"5300":2.2,"5301":2.1215118506,"5302":2.0430237012,"5303":1.9648453086,"5304":1.8866669161,"5305":1.8091068148,"5306":1.7315467135,"5307":1.6549109978,"5308":1.5782752821,"5309":1.5028663981,"5310":1.4274575141,"5311":1.3535730662,"5312":1.2796886183,"5313":1.2076201947,"5314":1.1355517711,"5315":1.0655837929,"5316":0.9956158147,"5317":0.9280244136,"5318":0.8604330126,"5319":0.7954849409,"5320":0.7305368693,"5321":0.6684884474,"5322":0.6064400256,"5323":0.5475361304,"5324":0.4886322352,"5325":0.4331053333,"5326":0.3775784314,"5327":0.3256476623,"5328":0.2737168931,"5329":0.2255872036,"5330":0.1774575141,"5331":0.1333188502,"5332":0.0891801862,"5333":0.0492067431,"5334":0.0092332999,"5335":-0.0264171656,"5336":-0.0620676312,"5337":-0.0932544229,"5338":-0.1244412147,"5339":-0.1510412527,"5340":-0.1776412907,"5341":-0.1995495968,"5342":-0.2214579028,"5343":-0.2385880148,"5344":-0.2557181268,"5345":-0.2680024401,"5346":-0.2802867533,"5347":-0.2876767872,"5348":-0.2950668211,"5349":-0.2975334105,"5350":-0.3,"5351":-0.2975334105,"5352":-0.2950668211,"5353":-0.2876767872,"5354":-0.2802867533,"5355":-0.2680024401,"5356":-0.2557181268,"5357":-0.2385880148,"5358":-0.2214579028,"5359":-0.1995495968,"5360":-0.1776412907,"5361":-0.1510412527,"5362":-0.1244412147,"5363":-0.0932544229,"5364":-0.0620676312,"5365":-0.0264171656,"5366":0.0092332999,"5367":0.0492067431,"5368":0.0891801862,"5369":0.1333188502,"5370":0.1774575141,"5371":0.2255872036,"5372":0.2737168931,"5373":0.3256476623,"5374":0.3775784314,"5375":0.4331053333,"5376":0.4886322352,"5377":0.5475361304,"5378":0.6064400256,"5379":0.6684884474,"5380":0.7305368693,"5381":0.7954849409,"5382":0.8604330126,"5383":0.9280244136,"5384":0.9956158147,"5385":1.0655837929,"5386":1.1355517711,"5387":1.2076201947,"5388":1.2796886183,"5389":1.3535730662,"5390":1.4274575141,"5391":1.5028663981,"5392":1.5782752821,"5393":1.6549109978,"5394":1.7315467135,"5395":1.8091068148,"5396":1.8866669161,"5397":1.9648453086,"5398":2.0430237012,"5399":2.1215118506,"5400":2.2,"5401":2.2784881494,"5402":2.3569762988,"5403":2.4351546914,"5404":2.5133330839,"5405":2.5908931852,"5406":2.6684532865,"5407":2.7450890022,"5408":2.8217247179,"5409":2.8971336019,"5410":2.9725424859,"5411":3.0464269338,"5412":3.1203113817,"5413":3.1923798053,"5414":3.2644482289,"5415":3.3344162071,"5416":3.4043841853,"5417":3.4719755864,"5418":3.5395669874,"5419":3.6045150591,"5420":3.6694631307,"5421":3.7315115526,"5422":3.7935599744,"5423":3.8524638696,"5424":3.9113677648,"5425":3.9668946667,"5426":4.0224215686,"5427":4.0743523377,"5428":4.1262831069,"5429":4.1744127964,"5430":4.2225424859,"5431":4.2666811498,"5432":4.3108198138,"5433":4.3507932569,"5434":4.3907667001,"5435":4.4264171656,"5436":4.4620676312,"5437":4.4932544229,"5438":4.5244412147,"5439":4.5510412527,"5440":4.5776412907,"5441":4.5995495968,"5442":4.6214579028,"5443":4.6385880148,"5444":4.6557181268,"5445":4.6680024401,"5446":4.6802867533,"5447":4.6876767872,"5448":4.6950668211,"5449":4.6975334105,"5450":4.7,"5451":4.6975334105,"5452":4.6950668211,"5453":4.6876767872,"5454":4.6802867533,"5455":4.6680024401,"5456":4.6557181268,"5457":4.6385880148,"5458":4.6214579028,"5459":4.5995495968,"5460":4.5776412907,"5461":4.5510412527,"5462":4.5244412147,"5463":4.4932544229,"5464":4.4620676312,"5465":4.4264171656,"5466":4.3907667001,"5467":4.3507932569,"5468":4.3108198138,"5469":4.2666811498,"5470":4.2225424859,"5471":4.1744127964,"5472":4.1262831069,"5473":4.0743523377,"5474":4.0224215686,"5475":3.9668946667,"5476":3.9113677648,"5477":3.8524638696,"5478":3.7935599744,"5479":3.7315115526,"5480":3.6694631307,"5481":3.6045150591,"5482":3.5395669874,"5483":3.4719755864,"5484":3.4043841853,"5485":3.3344162071,"5486":3.2644482289,"5487":3.1923798053,"5488":3.1203113817,"5489":3.0464269338,"5490":2.9725424859,"5491":2.8971336019,"5492":2.8217247179,"5493":2.7450890022,"5494":2.6684532865,"5495":2.5908931852,"5496":2.5133330839,"5497":2.4351546914,"5498":2.3569762988,"5499":2.2784881494,"5500":2.2,"5501":2.1215118506,"5502":2.0430237012,"5503":1.9648453086,"5504":1.8866669161,"5505":1.8091068148,"5506":1.7315467135,"5507":1.6549109978,"5508":1.5782752821,"5509":1.5028663981,"5510":1.4274575141,"5511":1.3535730662,"5512":1.2796886183,"5513":1.2076201947,"5514":1.1355517711,"5515":1.0655837929,"5516":0.9956158147,"5517":0.9280244136,"5518":0.8604330126,"5519":0.7954849409,"5520":0.7305368693,"5521":0.6684884474,"5522":0.6064400256,"5523":0.5475361304,"5524":0.4886322352,"5525":0.4331053333,"5526":0.3775784314,"5527":0.3256476623,"5528":0.2737168931,"5529":0.2255872036,"5530":0.1774575141,"5531":0.1333188502,"5532":0.0891801862,"5533":0.0492067431,"5534":0.0092332999,"5535":-0.0264171656,"5536":-0.0620676312,"5537":-0.0932544229,"5538":-0.1244412147,"5539":-0.1510412527,"5540":-0.1776412907,"5541":-0.1995495968,"5542":-0.2214579028,"5543":-0.2385880148,"5544":-0.2557181268,"5545":-0.2680024401,"5546":-0.2802867533,"5547":-0.2876767872,"5548":-0.2950668211,"5549":-0.2975334105,"5550":-0.3,"5551":-0.2975334105,"5552":-0.2950668211,"5553":-0.2876767872,"5554":-0.2802867533,"5555":-0.2680024401,"5556":-0.2557181268,"5557":-0.2385880148,"5558":-0.2214579028,"5559":-0.1995495968,"5560":-0.1776412907,"5561":-0.1510412527,"5562":-0.1244412147,"5563":-0.0932544229,"5564":-0.0620676312,"5565":-0.0264171656,"5566":0.0092332999,"5567":0.0492067431,"5568":0.0891801862,"5569":0.1333188502,"5570":0.1774575141,"5571":0.2255872036,"5572":0.2737168931,"5573":0.3256476623,"5574":0.3775784314,"5575":0.4331053333,"5576":0.4886322352,"5577":0.5475361304,"5578":0.6064400256,"5579":0.6684884474,"5580":0.7305368693,"5581":0.7954849409,"5582":0.8604330126,"5583":0.9280244136,"5584":0.9956158147,"5585":1.0655837929,"5586":1.1355517711,"5587":1.2076201947,"5588":1.2796886183,"5589":1.3535730662,"5590":1.4274575141,"5591":1.5028663981,"5592":1.5782752821,"5593":1.6549109978,"5594":1.7315467135,"5595":1.8091068148,"5596":1.8866669161,"5597":1.9648453086,"5598":2.0430237012,"5599":2.1215118506,"5600":2.2,"5601":2.2784881494,"5602":2.3569762988,"5603":2.4351546914,"5604":2.5133330839,"5605":2.5908931852,"5606":2.6684532865,"5607":2.7450890022,"5608":2.8217247179,"5609":2.8971336019,"5610":2.9725424859,"5611":3.0464269338,"5612":3.1203113817,"5613":3.1923798053,"5614":3.2644482289,"5615":3.3344162071,"5616":3.4043841853,"5617":3.4719755864,"5618":3.5395669874,"5619":3.6045150591,"5620":3.6694631307,"5621":3.7315115526,"5622":3.7935599744,"5623":3.8524638696,"5624":3.9113677648,"5625":3.9668946667,"5626":4.0224215686,"5627":4.0743523377,"5628":4.1262831069,"5629":4.1744127964,"5630":4.2225424859,"5631":4.2666811498,"5632":4.3108198138,"5633":4.3507932569,"5634":4.3907667001,"5635":4.4264171656,"5636":4.4620676312,"5637":4.4932544229,"5638":4.5244412147,"5639":4.5510412527,"5640":4.5776412907,"5641":4.5995495968,"5642":4.6214579028,"5643":4.6385880148,"5644":4.6557181268,"5645":4.6680024401,"5646":4.6802867533,"5647":4.6876767872,"5648":4.6950668211,"5649":4.6975334105,"5650":4.7,"5651":4.6975334105,"5652":4.6950668211,"5653":4.6876767872,"5654":4.6802867533,"5655":4.6680024401,"5656":4.6557181268,"5657":4.6385880148,"5658":4.6214579028,"5659":4.5995495968,"5660":4.5776412907,"5661":4.5510412527,"5662":4.5244412147,"5663":4.4932544229,"5664":4.4620676312,"5665":4.4264171656,"5666":4.3907667001,"5667":4.3507932569,"5668":4.3108198138,"5669":4.2666811498,"5670":4.2225424859,"5671":4.1744127964,"5672":4.1262831069,"5673":4.0743523377,"5674":4.0224215686,"5675":3.9668946667,"5676":3.9113677648,"5677":3.8524638696,"5678":3.7935599744,"5679":3.7315115526,"5680":3.6694631307,"5681":3.6045150591,"5682":3.5395669874,"5683":3.4719755864,"5684":3.4043841853,"5685":3.3344162071,"5686":3.2644482289,"5687":3.1923798053,"5688":3.1203113817,"5689":3.0464269338,"5690":2.9725424859,"5691":2.8971336019,"5692":2.8217247179,"5693":2.7450890022,"5694":2.6684532865,"5695":2.5908931852,"5696":2.5133330839,"5697":2.4351546914,"5698":2.3569762988,"5699":2.2784881494,"5700":2.2,"5701":2.1215118506,"5702":2.0430237012,"5703":1.9648453086,"5704":1.8866669161,"5705":1.8091068148,"5706":1.7315467135,"5707":1.6549109978,"5708":1.5782752821,"5709":1.5028663981,"5710":1.4274575141,"5711":1.3535730662,"5712":1.2796886183,"5713":1.2076201947,"5714":1.1355517711,"5715":1.0655837929,"5716":0.9956158147,"5717":0.9280244136,"5718":0.8604330126,"5719":0.7954849409,"5720":0.7305368693,"5721":0.6684884474,"5722":0.6064400256,"5723":0.5475361304,"5724":0.4886322352,"5725":0.4331053333,"5726":0.3775784314,"5727":0.3256476623,"5728":0.2737168931,"5729":0.2255872036,"5730":0.1774575141,"5731":0.1333188502,"5732":0.0891801862,"5733":0.0492067431,"5734":0.0092332999,"5735":-0.0264171656,"5736":-0.0620676312,"5737":-0.0932544229,"5738":-0.1244412147,"5739":-0.1510412527,"5740":-0.1776412907,"5741":-0.1995495968,"5742":-0.2214579028,"5743":-0.2385880148,"5744":-0.2557181268,"5745":-0.2680024401,"5746":-0.2802867533,"5747":-0.2876767872,"5748":-0.2950668211,"5749":-0.2975334105,"5750":-0.3,"5751":-0.2975334105,"5752":-0.2950668211,"5753":-0.2876767872,"5754":-0.2802867533,"5755":-0.2680024401,"5756":-0.2557181268,"5757":-0.2385880148,"5758":-0.2214579028,"5759":-0.1995495968,"5760":-0.1776412907,"5761":-0.1510412527,"5762":-0.1244412147,"5763":-0.0932544229,"5764":-0.0620676312,"5765":-0.0264171656,"5766":0.0092332999,"5767":0.0492067431,"5768":0.0891801862,"5769":0.1333188502,"5770":0.1774575141,"5771":0.2255872036,"5772":0.2737168931,"5773":0.3256476623,"5774":0.3775784314,"5775":0.4331053333,"5776":0.4886322352,"5777":0.5475361304,"5778":0.6064400256,"5779":0.6684884474,"5780":0.7305368693,"5781":0.7954849409,"5782":0.8604330126,"5783":0.9280244136,"5784":0.9956158147,"5785":1.0655837929,"5786":1.1355517711,"5787":1.2076201947,"5788":1.2796886183,"5789":1.3535730662,"5790":1.4274575141,"5791":1.5028663981,"5792":1.5782752821,"5793":1.6549109978,"5794":1.7315467135,"5795":1.8091068148,"5796":1.8866669161,"5797":1.9648453086,"5798":2.0430237012,"5799":2.1215118506,"5800":2.2,"5801":2.2784881494,"5802":2.3569762988,"5803":2.4351546914,"5804":2.5133330839,"5805":2.5908931852,"5806":2.6684532865,"5807":2.7450890022,"5808":2.8217247179,"5809":2.8971336019,"5810":2.9725424859,"5811":3.0464269338,"5812":3.1203113817,"5813":3.1923798053,"5814":3.2644482289,"5815":3.3344162071,"5816":3.4043841853,"5817":3.4719755864,"5818":3.5395669874,"5819":3.6045150591,"5820":3.6694631307,"5821":3.7315115526,"5822":3.7935599744,"5823":3.8524638696,"5824":3.9113677648,"5825":3.9668946667,"5826":4.0224215686,"5827":4.0743523377,"5828":4.1262831069,"5829":4.1744127964,"5830":4.2225424859,"5831":4.2666811498,"5832":4.3108198138,"5833":4.3507932569,"5834":4.3907667001,"5835":4.4264171656,"5836":4.4620676312,"5837":4.4932544229,"5838":4.5244412147,"5839":4.5510412527,"5840":4.5776412907,"5841":4.5995495968,"5842":4.6214579028,"5843":4.6385880148,"5844":4.6557181268,"5845":4.6680024401,"5846":4.6802867533,"5847":4.6876767872,"5848":4.6950668211,"5849":4.6975334105,"5850":4.7,"5851":4.6975334105,"5852":4.6950668211,"5853":4.6876767872,"5854":4.6802867533,"5855":4.6680024401,"5856":4.6557181268,"5857":4.6385880148,"5858":4.6214579028,"5859":4.5995495968,"5860":4.5776412907,"5861":4.5510412527,"5862":4.5244412147,"5863":4.4932544229,"5864":4.4620676312,"5865":4.4264171656,"5866":4.3907667001,"5867":4.3507932569,"5868":4.3108198138,"5869":4.2666811498,"5870":4.2225424859,"5871":4.1744127964,"5872":4.1262831069,"5873":4.0743523377,"5874":4.0224215686,"5875":3.9668946667,"5876":3.9113677648,"5877":3.8524638696,"5878":3.7935599744,"5879":3.7315115526,"5880":3.6694631307,"5881":3.6045150591,"5882":3.5395669874,"5883":3.4719755864,"5884":3.4043841853,"5885":3.3344162071,"5886":3.2644482289,"5887":3.1923798053,"5888":3.1203113817,"5889":3.0464269338,"5890":2.9725424859,"5891":2.8971336019,"5892":2.8217247179,"5893":2.7450890022,"5894":2.6684532865,"5895":2.5908931852,"5896":2.5133330839,"5897":2.4351546914,"5898":2.3569762988,"5899":2.2784881494,"5900":2.2,"5901":2.1215118506,"5902":2.0430237012,"5903":1.9648453086,"5904":1.8866669161,"5905":1.8091068148,"5906":1.7315467135,"5907":1.6549109978,"5908":1.5782752821,"5909":1.5028663981,"5910":1.4274575141,"5911":1.3535730662,"5912":1.2796886183,"5913":1.2076201947,"5914":1.1355517711,"5915":1.0655837929,"5916":0.9956158147,"5917":0.9280244136,"5918":0.8604330126,"5919":0.7954849409,"5920":0.7305368693,"5921":0.6684884474,"5922":0.6064400256,"5923":0.5475361304,"5924":0.4886322352,"5925":0.4331053333,"5926":0.3775784314,"5927":0.3256476623,"5928":0.2737168931,"5929":0.2255872036,"5930":0.1774575141,"5931":0.1333188502,"5932":0.0891801862,"5933":0.0492067431,"5934":0.0092332999,"5935":-0.0264171656,"5936":-0.0620676312,"5937":-0.0932544229,"5938":-0.1244412147,"5939":-0.1510412527,"5940":-0.1776412907,"5941":-0.1995495968,"5942":-0.2214579028,"5943":-0.2385880148,"5944":-0.2557181268,"5945":-0.2680024401,"5946":-0.2802867533,"5947":-0.2876767872,"5948":-0.2950668211,"5949":-0.2975334105,"5950":-0.3,"5951":-0.2975334105,"5952":-0.2950668211,"5953":-0.2876767872,"5954":-0.2802867533,"5955":-0.2680024401,"5956":-0.2557181268,"5957":-0.2385880148,"5958":-0.2214579028,"5959":-0.1995495968,"5960":-0.1776412907,"5961":-0.1510412527,"5962":-0.1244412147,"5963":-0.0932544229,"5964":-0.0620676312,"5965":-0.0264171656,"5966":0.0092332999,"5967":0.0492067431,"5968":0.0891801862,"5969":0.1333188502,"5970":0.1774575141,"5971":0.2255872036,"5972":0.2737168931,"5973":0.3256476623,"5974":0.3775784314,"5975":0.4331053333,"5976":0.4886322352,"5977":0.5475361304,"5978":0.6064400256,"5979":0.6684884474,"5980":0.7305368693,"5981":0.7954849409,"5982":0.8604330126,"5983":0.9280244136,"5984":0.9956158147,"5985":1.0655837929,"5986":1.1355517711,"5987":1.2076201947,"5988":1.2796886183,"5989":1.3535730662,"5990":1.4274575141,"5991":1.5028663981,"5992":1.5782752821,"5993":1.6549109978,"5994":1.7315467135,"5995":1.8091068148,"5996":1.8866669161,"5997":1.9648453086,"5998":2.0430237012,"5999":2.1215118506,"6000":2.2,"6001":2.2784881494,"6002":2.3569762988,"6003":2.4351546914,"6004":2.5133330839,"6005":2.5908931852,"6006":2.6684532865,"6007":2.7450890022,"6008":2.8217247179,"6009":2.8971336019,"6010":2.9725424859,"6011":3.0464269338,"6012":3.1203113817,"6013":3.1923798053,"6014":3.2644482289,"6015":3.3344162071,"6016":3.4043841853,"6017":3.4719755864,"6018":3.5395669874,"6019":3.6045150591,"6020":3.6694631307,"6021":3.7315115526,"6022":3.7935599744,"6023":3.8524638696,"6024":3.9113677648,"6025":3.9668946667,"6026":4.0224215686,"6027":4.0743523377,"6028":4.1262831069,"6029":4.1744127964,"6030":4.2225424859,"6031":4.2666811498,"6032":4.3108198138,"6033":4.3507932569,"6034":4.3907667001,"6035":4.4264171656,"6036":4.4620676312,"6037":4.4932544229,"6038":4.5244412147,"6039":4.5510412527,"6040":4.5776412907,"6041":4.5995495968,"6042":4.6214579028,"6043":4.6385880148,"6044":4.6557181268,"6045":4.6680024401,"6046":4.6802867533,"6047":4.6876767872,"6048":4.6950668211,"6049":4.6975334105,"6050":4.7,"6051":4.6975334105,"6052":4.6950668211,"6053":4.6876767872,"6054":4.6802867533,"6055":4.6680024401,"6056":4.6557181268,"6057":4.6385880148,"6058":4.6214579028,"6059":4.5995495968,"6060":4.5776412907,"6061":4.5510412527,"6062":4.5244412147,"6063":4.4932544229,"6064":4.4620676312,"6065":4.4264171656,"6066":4.3907667001,"6067":4.3507932569,"6068":4.3108198138,"6069":4.2666811498,"6070":4.2225424859,"6071":4.1744127964,"6072":4.1262831069,"6073":4.0743523377,"6074":4.0224215686,"6075":3.9668946667,"6076":3.9113677648,"6077":3.8524638696,"6078":3.7935599744,"6079":3.7315115526,"6080":3.6694631307,"6081":3.6045150591,"6082":3.5395669874,"6083":3.4719755864,"6084":3.4043841853,"6085":3.3344162071,"6086":3.2644482289,"6087":3.1923798053,"6088":3.1203113817,"6089":3.0464269338,"6090":2.9725424859,"6091":2.8971336019,"6092":2.8217247179,"6093":2.7450890022,"6094":2.6684532865,"6095":2.5908931852,"6096":2.5133330839,"6097":2.4351546914,"6098":2.3569762988,"6099":2.2784881494,"6100":2.2,"6101":2.1215118506,"6102":2.0430237012,"6103":1.9648453086,"6104":1.8866669161,"6105":1.8091068148,"6106":1.7315467135,"6107":1.6549109978,"6108":1.5782752821,"6109":1.5028663981,"6110":1.4274575141,"6111":1.3535730662,"6112":1.2796886183,"6113":1.2076201947,"6114":1.1355517711,"6115":1.0655837929,"6116":0.9956158147,"6117":0.9280244136,"6118":0.8604330126,"6119":0.7954849409,"6120":0.7305368693,"6121":0.6684884474,"6122":0.6064400256,"6123":0.5475361304,"6124":0.4886322352,"6125":0.4331053333,"6126":0.3775784314,"6127":0.3256476623,"6128":0.2737168931,"6129":0.2255872036,"6130":0.1774575141,"6131":0.1333188502,"6132":0.0891801862,"6133":0.0492067431,"6134":0.0092332999,"6135":-0.0264171656,"6136":-0.0620676312,"6137":-0.0932544229,"6138":-0.1244412147,"6139":-0.1510412527,"6140":-0.1776412907,"6141":-0.1995495968,"6142":-0.2214579028,"6143":-0.2385880148,"6144":-0.2557181268,"6145":-0.2680024401,"6146":-0.2802867533,"6147":-0.2876767872,"6148":-0.2950668211,"6149":-0.2975334105,"6150":-0.3,"6151":-0.2975334105,"6152":-0.2950668211,"6153":-0.2876767872,"6154":-0.2802867533,"6155":-0.2680024401,"6156":-0.2557181268,"6157":-0.2385880148,"6158":-0.2214579028,"6159":-0.1995495968,"6160":-0.1776412907,"6161":-0.1510412527,"6162":-0.1244412147,"6163":-0.0932544229,"6164":-0.0620676312,"6165":-0.0264171656,"6166":0.0092332999,"6167":0.0492067431,"6168":0.0891801862,"6169":0.1333188502,"6170":0.1774575141,"6171":0.2255872036,"6172":0.2737168931,"6173":0.3256476623,"6174":0.3775784314,"6175":0.4331053333,"6176":0.4886322352,"6177":0.5475361304,"6178":0.6064400256,"6179":0.6684884474,"6180":0.7305368693,"6181":0.7954849409,"6182":0.8604330126,"6183":0.9280244136,"6184":0.9956158147,"6185":1.0655837929,"6186":1.1355517711,"6187":1.2076201947,"6188":1.2796886183,"6189":1.3535730662,"6190":1.4274575141,"6191":1.5028663981,"6192":1.5782752821,"6193":1.6549109978,"6194":1.7315467135,"6195":1.8091068148,"6196":1.8866669161,"6197":1.9648453086,"6198":2.0430237012,"6199":2.1215118506,"6200":2.2},"flow_out":{"0":0.0,"1":3.3784881494,"2":1.8069762988,"3":2.7101546914,"4":2.3758330839,"5":2.6596431852,"6":2.6340782865,"7":2.7622765022,"8":2.8131309679,"9":2.9014304769,"10":2.9703940484,"11":3.0475011526,"12":3.1197742723,"13":3.19264836,"14":3.2643139516,"15":3.3344833458,"16":3.4043506159,"17":3.471992371,"18":3.5395585951,"19":3.6045192553,"20":3.6694610326,"21":3.7315126016,"22":3.7935594499,"23":3.8524641319,"24":3.9113676337,"25":3.9668947323,"26":4.0224215358,"27":4.0743523541,"28":4.1262830987,"29":4.1744128005,"30":4.2225424839,"31":4.2666811509,"32":4.3108198132,"33":4.3507932572,"34":4.3907667,"35":4.4264171657,"36":4.4620676311,"37":4.493254423,"38":4.5244412147,"39":4.5510412527,"40":4.5776412907,"41":4.5995495968,"42":4.6214579028,"43":4.6385880148,"44":4.6557181268,"45":4.6680024401,"46":4.6802867533,"47":4.6876767872,"48":4.6950668211,"49":4.6975334105,"50":4.7,"51":4.6975334105,"52":4.6950668211,"53":4.6876767872,"54":4.6802867533,"55":4.6680024401,"56":4.6557181268,"57":4.6385880148,"58":4.6214579028,"59":4.5995495968,"60":4.5776412907,"61":4.5510412527,"62":4.5244412147,"63":4.4932544229,"64":4.4620676312,"65":4.4264171656,"66":4.3907667001,"67":4.3507932569,"68":4.3108198138,"69":4.2666811498,"70":4.2225424859,"71":4.1744127964,"72":4.1262831069,"73":4.0743523377,"74":4.0224215686,"75":3.9668946667,"76":3.9113677648,"77":3.8524638696,"78":3.7935599744,"79":3.7315115526,"80":3.6694631307,"81":3.6045150591,"82":3.5395669874,"83":3.4719755864,"84":3.4043841853,"85":3.3344162071,"86":3.2644482289,"87":3.1923798053,"88":3.1203113817,"89":3.0464269338,"90":2.9725424859,"91":2.8971336019,"92":2.8217247179,"93":2.7450890022,"94":2.6684532865,"95":2.5908931852,"96":2.5133330839,"97":2.4351546914,"98":2.3569762988,"99":2.2784881494,"100":2.2,"101":2.1215118506,"102":2.0430237012,"103":1.9648453086,"104":1.8866669161,"105":1.8091068148,"106":1.7315467135,"107":1.6549109978,"108":1.5782752821,"109":1.5028663981,"110":1.4274575141,"111":1.3535730662,"112":1.2796886183,"113":1.2076201947,"114":1.1355517711,"115":1.0655837929,"116":0.9956158147,"117":0.9280244136,"118":0.8604330126,"119":0.7954849409,"120":0.7305368693,"121":0.6684884474,"122":0.6064400256,"123":0.5475361304,"124":0.4886322352,"125":0.4331053333,"126":0.3775784314,"127":0.3256476623,"128":0.2737168931,"129":0.2255872036,"130":0.1774575141,"131":0.1333188502,"132":0.0891801862,"133":0.0492067431,"134":0.0092332999,"135":-0.0264171656,"136":-0.0620676312,"137":-0.0932544229,"138":-0.1244412147,"139":-0.1510412527,"140":-0.1776412907,"141":-0.1995495968,"142":-0.2214579028,"143":-0.2385880148,"144":-0.2557181268,"145":-0.2680024401,"146":-0.2802867533,"147":-0.2876767872,"148":-0.2950668211,"149":-0.2975334105,"150":-0.3,"151":-0.2975334105,"152":-0.2950668211,"153":-0.2876767872,"154":-0.2802867533,"155":-0.2680024401,"156":-0.2557181268,"157":-0.2385880148,"158":-0.2214579028,"159":-0.1995495968,"160":-0.1776412907,"161":-0.1510412527,"162":-0.1244412147,"163":-0.0932544229,"164":-0.0620676312,"165":-0.0264171656,"166":0.0092332999,"167":0.0492067431,"168":0.0891801862,"169":0.1333188502,"170":0.1774575141,"171":0.2255872036,"172":0.2737168931,"173":0.3256476623,"174":0.3775784314,"175":0.4331053333,"176":0.4886322352,"177":0.5475361304,"178":0.6064400256,"179":0.6684884474,"180":0.7305368693,"181":0.7954849409,"182":0.8604330126,"183":0.9280244136,"184":0.9956158147,"185":1.0655837929,"186":1.1355517711,"187":1.2076201947,"188":1.2796886183,"189":1.3535730662,"190":1.4274575141,"191":1.5028663981,"192":1.5782752821,"193":1.6549109978,"194":1.7315467135,"195":1.8091068148,"196":1.8866669161,"197":1.9648453086,"198":2.0430237012,"199":2.1215118506,"200":2.2,"201":2.2784881494,"202":2.3569762988,"203":2.4351546914,"204":2.5133330839,"205":2.5908931852,"206":2.6684532865,"207":2.7450890022,"208":2.8217247179,"209":2.8971336019,"210":2.9725424859,"211":3.0464269338,"212":3.1203113817,"213":3.1923798053,"214":3.2644482289,"215":3.3344162071,"216":3.4043841853,"217":3.4719755864,"218":3.5395669874,"219":3.6045150591,"220":3.6694631307,"221":3.7315115526,"222":3.7935599744,"223":3.8524638696,"224":3.9113677648,"225":3.9668946667,"226":4.0224215686,"227":4.0743523377,"228":4.1262831069,"229":4.1744127964,"230":4.2225424859,"231":4.2666811498,"232":4.3108198138,"233":4.3507932569,"234":4.3907667001,"235":4.4264171656,"236":4.4620676312,"237":4.4932544229,"238":4.5244412147,"239":4.5510412527,"240":4.5776412907,"241":4.5995495968,"242":4.6214579028,"243":4.6385880148,"244":4.6557181268,"245":4.6680024401,"246":4.6802867533,"247":4.6876767872,"248":4.6950668211,"249":4.6975334105,"250":4.7,"251":4.6975334105,"252":4.6950668211,"253":4.6876767872,"254":4.6802867533,"255":4.6680024401,"256":4.6557181268,"257":4.6385880148,"258":4.6214579028,"259":4.5995495968,"260":4.5776412907,"261":4.5510412527,"262":4.5244412147,"263":4.4932544229,"264":4.4620676312,"265":4.4264171656,"266":4.3907667001,"267":4.3507932569,"268":4.3108198138,"269":4.2666811498,"270":4.2225424859,"271":4.1744127964,"272":4.1262831069,"273":4.0743523377,"274":4.0224215686,"275":3.9668946667,"276":3.9113677648,"277":3.8524638696,"278":3.7935599744,"279":3.7315115526,"280":3.6694631307,"281":3.6045150591,"282":3.5395669874,"283":3.4719755864,"284":3.4043841853,"285":3.3344162071,"286":3.2644482289,"287":3.1923798053,"288":3.1203113817,"289":3.0464269338,"290":2.9725424859,"291":2.8971336019,"292":2.8217247179,"293":2.7450890022,"294":2.6684532865,"295":2.5908931852,"296":2.5133330839,"297":2.4351546914,"298":2.3569762988,"299":2.2784881494,"300":2.2,"301":2.1215118506,"302":2.0430237012,"303":1.9648453086,"304":1.8866669161,"305":1.8091068148,"306":1.7315467135,"307":1.6549109978,"308":1.5782752821,"309":1.5028663981,"310":1.4274575141,"311":1.3535730662,"312":1.2796886183,"313":1.2076201947,"314":1.1355517711,"315":1.0655837929,"316":0.9956158147,"317":0.9280244136,"318":0.8604330126,"319":0.7954849409,"320":0.7305368693,"321":0.6684884474,"322":0.6064400256,"323":0.5475361304,"324":0.4886322352,"325":0.4331053333,"326":0.3775784314,"327":0.3256476623,"328":0.2737168931,"329":0.2255872036,"330":0.1774575141,"331":0.1333188502,"332":0.0891801862,"333":0.0492067431,"334":0.0092332999,"335":-0.0264171656,"336":-0.0620676312,"337":-0.0932544229,"338":-0.1244412147,"339":-0.1510412527,"340":-0.1776412907,"341":-0.1995495968,"342":-0.2214579028,"343":-0.2385880148,"344":-0.2557181268,"345":-0.2680024401,"346":-0.2802867533,"347":-0.2876767872,"348":-0.2950668211,"349":-0.2975334105,"350":-0.3,"351":-0.2975334105,"352":-0.2950668211,"353":-0.2876767872,"354":-0.2802867533,"355":-0.2680024401,"356":-0.2557181268,"357":-0.2385880148,"358":-0.2214579028,"359":-0.1995495968,"360":-0.1776412907,"361":-0.1510412527,"362":-0.1244412147,"363":-0.0932544229,"364":-0.0620676312,"365":-0.0264171656,"366":0.0092332999,"367":0.0492067431,"368":0.0891801862,"369":0.1333188502,"370":0.1774575141,"371":0.2255872036,"372":0.2737168931,"373":0.3256476623,"374":0.3775784314,"375":0.4331053333,"376":0.4886322352,"377":0.5475361304,"378":0.6064400256,"379":0.6684884474,"380":0.7305368693,"381":0.7954849409,"382":0.8604330126,"383":0.9280244136,"384":0.9956158147,"385":1.0655837929,"386":1.1355517711,"387":1.2076201947,"388":1.2796886183,"389":1.3535730662,"390":1.4274575141,"391":1.5028663981,"392":1.5782752821,"393":1.6549109978,"394":1.7315467135,"395":1.8091068148,"396":1.8866669161,"397":1.9648453086,"398":2.0430237012,"399":2.1215118506,"400":2.2,"401":2.2784881494,"402":2.3569762988,"403":2.4351546914,"404":2.5133330839,"405":2.5908931852,"406":2.6684532865,"407":2.7450890022,"408":2.8217247179,"409":2.8971336019,"410":2.9725424859,"411":3.0464269338,"412":3.1203113817,"413":3.1923798053,"414":3.2644482289,"415":3.3344162071,"416":3.4043841853,"417":3.4719755864,"418":3.5395669874,"419":3.6045150591,"420":3.6694631307,"421":3.7315115526,"422":3.7935599744,"423":3.8524638696,"424":3.9113677648,"425":3.9668946667,"426":4.0224215686,"427":4.0743523377,"428":4.1262831069,"429":4.1744127964,"430":4.2225424859,"431":4.2666811498,"432":4.3108198138,"433":4.3507932569,"434":4.3907667001,"435":4.4264171656,"436":4.4620676312,"437":4.4932544229,"438":4.5244412147,"439":4.5510412527,"440":4.5776412907,"441":4.5995495968,"442":4.6214579028,"443":4.6385880148,"444":4.6557181268,"445":4.6680024401,"446":4.6802867533,"447":4.6876767872,"448":4.6950668211,"449":4.6975334105,"450":4.7,"451":4.6975334105,"452":4.6950668211,"453":4.6876767872,"454":4.6802867533,"455":4.6680024401,"456":4.6557181268,"457":4.6385880148,"458":4.6214579028,"459":4.5995495968,"460":4.5776412907,"461":4.5510412527,"462":4.5244412147,"463":4.4932544229,"464":4.4620676312,"465":4.4264171656,"466":4.3907667001,"467":4.3507932569,"468":4.3108198138,"469":4.2666811498,"470":4.2225424859,"471":4.1744127964,"472":4.1262831069,"473":4.0743523377,"474":4.0224215686,"475":3.9668946667,"476":3.9113677648,"477":3.8524638696,"478":3.7935599744,"479":3.7315115526,"480":3.6694631307,"481":3.6045150591,"482":3.5395669874,"483":3.4719755864,"484":3.4043841853,"485":3.3344162071,"486":3.2644482289,"487":3.1923798053,"488":3.1203113817,"489":3.0464269338,"490":2.9725424859,"491":2.8971336019,"492":2.8217247179,"493":2.7450890022,"494":2.6684532865,"495":2.5908931852,"496":2.5133330839,"497":2.4351546914,"498":2.3569762988,"499":2.2784881494,"500":2.2,"501":2.1215118506,"502":2.0430237012,"503":1.9648453086,"504":1.8866669161,"505":1.8091068148,"506":1.7315467135,"507":1.6549109978,"508":1.5782752821,"509":1.5028663981,"510":1.4274575141,"511":1.3535730662,"512":1.2796886183,"513":1.2076201947,"514":1.1355517711,"515":1.0655837929,"516":0.9956158147,"517":0.9280244136,"518":0.8604330126,"519":0.7954849409,"520":0.7305368693,"521":0.6684884474,"522":0.6064400256,"523":0.5475361304,"524":0.4886322352,"525":0.4331053333,"526":0.3775784314,"527":0.3256476623,"528":0.2737168931,"529":0.2255872036,"530":0.1774575141,"531":0.1333188502,"532":0.0891801862,"533":0.0492067431,"534":0.0092332999,"535":-0.0264171656,"536":-0.0620676312,"537":-0.0932544229,"538":-0.1244412147,"539":-0.1510412527,"540":-0.1776412907,"541":-0.1995495968,"542":-0.2214579028,"543":-0.2385880148,"544":-0.2557181268,"545":-0.2680024401,"546":-0.2802867533,"547":-0.2876767872,"548":-0.2950668211,"549":-0.2975334105,"550":-0.3,"551":-0.2975334105,"552":-0.2950668211,"553":-0.2876767872,"554":-0.2802867533,"555":-0.2680024401,"556":-0.2557181268,"557":-0.2385880148,"558":-0.2214579028,"559":-0.1995495968,"560":-0.1776412907,"561":-0.1510412527,"562":-0.1244412147,"563":-0.0932544229,"564":-0.0620676312,"565":-0.0264171656,"566":0.0092332999,"567":0.0492067431,"568":0.0891801862,"569":0.1333188502,"570":0.1774575141,"571":0.2255872036,"572":0.2737168931,"573":0.3256476623,"574":0.3775784314,"575":0.4331053333,"576":0.4886322352,"577":0.5475361304,"578":0.6064400256,"579":0.6684884474,"580":0.7305368693,"581":0.7954849409,"582":0.8604330126,"583":0.9280244136,"584":0.9956158147,"585":1.0655837929,"586":1.1355517711,"587":1.2076201947,"588":1.2796886183,"589":1.3535730662,"590":1.4274575141,"591":1.5028663981,"592":1.5782752821,"593":1.6549109978,"594":1.7315467135,"595":1.8091068148,"596":1.8866669161,"597":1.9648453086,"598":2.0430237012,"599":2.1215118506,"600":2.2,"601":2.2784881494,"602":2.3569762988,"603":2.4351546914,"604":2.5133330839,"605":2.5908931852,"606":2.6684532865,"607":2.7450890022,"608":2.8217247179,"609":2.8971336019,"610":2.9725424859,"611":3.0464269338,"612":3.1203113817,"613":3.1923798053,"614":3.2644482289,"615":3.3344162071,"616":3.4043841853,"617":3.4719755864,"618":3.5395669874,"619":3.6045150591,"620":3.6694631307,"621":3.7315115526,"622":3.7935599744,"623":3.8524638696,"624":3.9113677648,"625":3.9668946667,"626":4.0224215686,"627":4.0743523377,"628":4.1262831069,"629":4.1744127964,"630":4.2225424859,"631":4.2666811498,"632":4.3108198138,"633":4.3507932569,"634":4.3907667001,"635":4.4264171656,"636":4.4620676312,"637":4.4932544229,"638":4.5244412147,"639":4.5510412527,"640":4.5776412907,"641":4.5995495968,"642":4.6214579028,"643":4.6385880148,"644":4.6557181268,"645":4.6680024401,"646":4.6802867533,"647":4.6876767872,"648":4.6950668211,"649":4.6975334105,"650":4.7,"651":4.6975334105,"652":4.6950668211,"653":4.6876767872,"654":4.6802867533,"655":4.6680024401,"656":4.6557181268,"657":4.6385880148,"658":4.6214579028,"659":4.5995495968,"660":4.5776412907,"661":4.5510412527,"662":4.5244412147,"663":4.4932544229,"664":4.4620676312,"665":4.4264171656,"666":4.3907667001,"667":4.3507932569,"668":4.3108198138,"669":4.2666811498,"670":4.2225424859,"671":4.1744127964,"672":4.1262831069,"673":4.0743523377,"674":4.0224215686,"675":3.9668946667,"676":3.9113677648,"677":3.8524638696,"678":3.7935599744,"679":3.7315115526,"680":3.6694631307,"681":3.6045150591,"682":3.5395669874,"683":3.4719755864,"684":3.4043841853,"685":3.3344162071,"686":3.2644482289,"687":3.1923798053,"688":3.1203113817,"689":3.0464269338,"690":2.9725424859,"691":2.8971336019,"692":2.8217247179,"693":2.7450890022,"694":2.6684532865,"695":2.5908931852,"696":2.5133330839,"697":2.4351546914,"698":2.3569762988,"699":2.2784881494,"700":2.2,"701":2.1215118506,"702":2.0430237012,"703":1.9648453086,"704":1.8866669161,"705":1.8091068148,"706":1.7315467135,"707":1.6549109978,"708":1.5782752821,"709":1.5028663981,"710":1.4274575141,"711":1.3535730662,"712":1.2796886183,"713":1.2076201947,"714":1.1355517711,"715":1.0655837929,"716":0.9956158147,"717":0.9280244136,"718":0.8604330126,"719":0.7954849409,"720":0.7305368693,"721":0.6684884474,"722":0.6064400256,"723":0.5475361304,"724":0.4886322352,"725":0.4331053333,"726":0.3775784314,"727":0.3256476623,"728":0.2737168931,"729":0.2255872036,"730":0.1774575141,"731":0.1333188502,"732":0.0891801862,"733":0.0492067431,"734":0.0092332999,"735":-0.0264171656,"736":-0.0620676312,"737":-0.0932544229,"738":-0.1244412147,"739":-0.1510412527,"740":-0.1776412907,"741":-0.1995495968,"742":-0.2214579028,"743":-0.2385880148,"744":-0.2557181268,"745":-0.2680024401,"746":-0.2802867533,"747":-0.2876767872,"748":-0.2950668211,"749":-0.2975334105,"750":-0.3,"751":-0.2975334105,"752":-0.2950668211,"753":-0.2876767872,"754":-0.2802867533,"755":-0.2680024401,"756":-0.2557181268,"757":-0.2385880148,"758":-0.2214579028,"759":-0.1995495968,"760":-0.1776412907,"761":-0.1510412527,"762":-0.1244412147,"763":-0.0932544229,"764":-0.0620676312,"765":-0.0264171656,"766":0.0092332999,"767":0.0492067431,"768":0.0891801862,"769":0.1333188502,"770":0.1774575141,"771":0.2255872036,"772":0.2737168931,"773":0.3256476623,"774":0.3775784314,"775":0.4331053333,"776":0.4886322352,"777":0.5475361304,"778":0.6064400256,"779":0.6684884474,"780":0.7305368693,"781":0.7954849409,"782":0.8604330126,"783":0.9280244136,"784":0.9956158147,"785":1.0655837929,"786":1.1355517711,"787":1.2076201947,"788":1.2796886183,"789":1.3535730662,"790":1.4274575141,"791":1.5028663981,"792":1.5782752821,"793":1.6549109978,"794":1.7315467135,"795":1.8091068148,"796":1.8866669161,"797":1.9648453086,"798":2.0430237012,"799":2.1215118506,"800":2.2,"801":2.2784881494,"802":2.3569762988,"803":2.4351546914,"804":2.5133330839,"805":2.5908931852,"806":2.6684532865,"807":2.7450890022,"808":2.8217247179,"809":2.8971336019,"810":2.9725424859,"811":3.0464269338,"812":3.1203113817,"813":3.1923798053,"814":3.2644482289,"815":3.3344162071,"816":3.4043841853,"817":3.4719755864,"818":3.5395669874,"819":3.6045150591,"820":3.6694631307,"821":3.7315115526,"822":3.7935599744,"823":3.8524638696,"824":3.9113677648,"825":3.9668946667,"826":4.0224215686,"827":4.0743523377,"828":4.1262831069,"829":4.1744127964,"830":4.2225424859,"831":4.2666811498,"832":4.3108198138,"833":4.3507932569,"834":4.3907667001,"835":4.4264171656,"836":4.4620676312,"837":4.4932544229,"838":4.5244412147,"839":4.5510412527,"840":4.5776412907,"841":4.5995495968,"842":4.6214579028,"843":4.6385880148,"844":4.6557181268,"845":4.6680024401,"846":4.6802867533,"847":4.6876767872,"848":4.6950668211,"849":4.6975334105,"850":4.7,"851":4.6975334105,"852":4.6950668211,"853":4.6876767872,"854":4.6802867533,"855":4.6680024401,"856":4.6557181268,"857":4.6385880148,"858":4.6214579028,"859":4.5995495968,"860":4.5776412907,"861":4.5510412527,"862":4.5244412147,"863":4.4932544229,"864":4.4620676312,"865":4.4264171656,"866":4.3907667001,"867":4.3507932569,"868":4.3108198138,"869":4.2666811498,"870":4.2225424859,"871":4.1744127964,"872":4.1262831069,"873":4.0743523377,"874":4.0224215686,"875":3.9668946667,"876":3.9113677648,"877":3.8524638696,"878":3.7935599744,"879":3.7315115526,"880":3.6694631307,"881":3.6045150591,"882":3.5395669874,"883":3.4719755864,"884":3.4043841853,"885":3.3344162071,"886":3.2644482289,"887":3.1923798053,"888":3.1203113817,"889":3.0464269338,"890":2.9725424859,"891":2.8971336019,"892":2.8217247179,"893":2.7450890022,"894":2.6684532865,"895":2.5908931852,"896":2.5133330839,"897":2.4351546914,"898":2.3569762988,"899":2.2784881494,"900":2.2,"901":2.1215118506,"902":2.0430237012,"903":1.9648453086,"904":1.8866669161,"905":1.8091068148,"906":1.7315467135,"907":1.6549109978,"908":1.5782752821,"909":1.5028663981,"910":1.4274575141,"911":1.3535730662,"912":1.2796886183,"913":1.2076201947,"914":1.1355517711,"915":1.0655837929,"916":0.9956158147,"917":0.9280244136,"918":0.8604330126,"919":0.7954849409,"920":0.7305368693,"921":0.6684884474,"922":0.6064400256,"923":0.5475361304,"924":0.4886322352,"925":0.4331053333,"926":0.3775784314,"927":0.3256476623,"928":0.2737168931,"929":0.2255872036,"930":0.1774575141,"931":0.1333188502,"932":0.0891801862,"933":0.0492067431,"934":0.0092332999,"935":-0.0264171656,"936":-0.0620676312,"937":-0.0932544229,"938":-0.1244412147,"939":-0.1510412527,"940":-0.1776412907,"941":-0.1995495968,"942":-0.2214579028,"943":-0.2385880148,"944":-0.2557181268,"945":-0.2680024401,"946":-0.2802867533,"947":-0.2876767872,"948":-0.2950668211,"949":-0.2975334105,"950":-0.3,"951":-0.2975334105,"952":-0.2950668211,"953":-0.2876767872,"954":-0.2802867533,"955":-0.2680024401,"956":-0.2557181268,"957":-0.2385880148,"958":-0.2214579028,"959":-0.1995495968,"960":-0.1776412907,"961":-0.1510412527,"962":-0.1244412147,"963":-0.0932544229,"964":-0.0620676312,"965":-0.0264171656,"966":0.0092332999,"967":0.0492067431,"968":0.0891801862,"969":0.1333188502,"970":0.1774575141,"971":0.2255872036,"972":0.2737168931,"973":0.3256476623,"974":0.3775784314,"975":0.4331053333,"976":0.4886322352,"977":0.5475361304,"978":0.6064400256,"979":0.6684884474,"980":0.7305368693,"981":0.7954849409,"982":0.8604330126,"983":0.9280244136,"984":0.9956158147,"985":1.0655837929,"986":1.1355517711,"987":1.2076201947,"988":1.2796886183,"989":1.3535730662,"990":1.4274575141,"991":1.5028663981,"992":1.5782752821,"993":1.6549109978,"994":1.7315467135,"995":1.8091068148,"996":1.8866669161,"997":1.9648453086,"998":2.0430237012,"999":2.1215118506,"1000":2.2,"1001":2.2784881494,"1002":2.3569762988,"1003":2.4351546914,"1004":2.5133330839,"1005":2.5908931852,"1006":2.6684532865,"1007":2.7450890022,"1008":2.8217247179,"1009":2.8971336019,"1010":2.9725424859,"1011":3.0464269338,"1012":3.1203113817,"1013":3.1923798053,"1014":3.2644482289,"1015":3.3344162071,"1016":3.4043841853,"1017":3.4719755864,"1018":3.5395669874,"1019":3.6045150591,"1020":3.6694631307,"1021":3.7315115526,"1022":3.7935599744,"1023":3.8524638696,"1024":3.9113677648,"1025":3.9668946667,"1026":4.0224215686,"1027":4.0743523377,"1028":4.1262831069,"1029":4.1744127964,"1030":4.2225424859,"1031":4.2666811498,"1032":4.3108198138,"1033":4.3507932569,"1034":4.3907667001,"1035":4.4264171656,"1036":4.4620676312,"1037":4.4932544229,"1038":4.5244412147,"1039":4.5510412527,"1040":4.5776412907,"1041":4.5995495968,"1042":4.6214579028,"1043":4.6385880148,"1044":4.6557181268,"1045":4.6680024401,"1046":4.6802867533,"1047":4.6876767872,"1048":4.6950668211,"1049":4.6975334105,"1050":4.7,"1051":4.6975334105,"1052":4.6950668211,"1053":4.6876767872,"1054":4.6802867533,"1055":4.6680024401,"1056":4.6557181268,"1057":4.6385880148,"1058":4.6214579028,"1059":4.5995495968,"1060":4.5776412907,"1061":4.5510412527,"1062":4.5244412147,"1063":4.4932544229,"1064":4.4620676312,"1065":4.4264171656,"1066":4.3907667001,"1067":4.3507932569,"1068":4.3108198138,"1069":4.2666811498,"1070":4.2225424859,"1071":4.1744127964,"1072":4.1262831069,"1073":4.0743523377,"1074":4.0224215686,"1075":3.9668946667,"1076":3.9113677648,"1077":3.8524638696,"1078":3.7935599744,"1079":3.7315115526,"1080":3.6694631307,"1081":3.6045150591,"1082":3.5395669874,"1083":3.4719755864,"1084":3.4043841853,"1085":3.3344162071,"1086":3.2644482289,"1087":3.1923798053,"1088":3.1203113817,"1089":3.0464269338,"1090":2.9725424859,"1091":2.8971336019,"1092":2.8217247179,"1093":2.7450890022,"1094":2.6684532865,"1095":2.5908931852,"1096":2.5133330839,"1097":2.4351546914,"1098":2.3569762988,"1099":2.2784881494,"1100":2.2,"1101":2.1215118506,"1102":2.0430237012,"1103":1.9648453086,"1104":1.8866669161,"1105":1.8091068148,"1106":1.7315467135,"1107":1.6549109978,"1108":1.5782752821,"1109":1.5028663981,"1110":1.4274575141,"1111":1.3535730662,"1112":1.2796886183,"1113":1.2076201947,"1114":1.1355517711,"1115":1.0655837929,"1116":0.9956158147,"1117":0.9280244136,"1118":0.8604330126,"1119":0.7954849409,"1120":0.7305368693,"1121":0.6684884474,"1122":0.6064400256,"1123":0.5475361304,"1124":0.4886322352,"1125":0.4331053333,"1126":0.3775784314,"1127":0.3256476623,"1128":0.2737168931,"1129":0.2255872036,"1130":0.1774575141,"1131":0.1333188502,"1132":0.0891801862,"1133":0.0492067431,"1134":0.0092332999,"1135":-0.0264171656,"1136":-0.0620676312,"1137":-0.0932544229,"1138":-0.1244412147,"1139":-0.1510412527,"1140":-0.1776412907,"1141":-0.1995495968,"1142":-0.2214579028,"1143":-0.2385880148,"1144":-0.2557181268,"1145":-0.2680024401,"1146":-0.2802867533,"1147":-0.2876767872,"1148":-0.2950668211,"1149":-0.2975334105,"1150":-0.3,"1151":-0.2975334105,"1152":-0.2950668211,"1153":-0.2876767872,"1154":-0.2802867533,"1155":-0.2680024401,"1156":-0.2557181268,"1157":-0.2385880148,"1158":-0.2214579028,"1159":-0.1995495968,"1160":-0.1776412907,"1161":-0.1510412527,"1162":-0.1244412147,"1163":-0.0932544229,"1164":-0.0620676312,"1165":-0.0264171656,"1166":0.0092332999,"1167":0.0492067431,"1168":0.0891801862,"1169":0.1333188502,"1170":0.1774575141,"1171":0.2255872036,"1172":0.2737168931,"1173":0.3256476623,"1174":0.3775784314,"1175":0.4331053333,"1176":0.4886322352,"1177":0.5475361304,"1178":0.6064400256,"1179":0.6684884474,"1180":0.7305368693,"1181":0.7954849409,"1182":0.8604330126,"1183":0.9280244136,"1184":0.9956158147,"1185":1.0655837929,"1186":1.1355517711,"1187":1.2076201947,"1188":1.2796886183,"1189":1.3535730662,"1190":1.4274575141,"1191":1.5028663981,"1192":1.5782752821,"1193":1.6549109978,"1194":1.7315467135,"1195":1.8091068148,"1196":1.8866669161,"1197":1.9648453086,"1198":2.0430237012,"1199":2.1215118506,"1200":2.2,"1201":2.2784881494,"1202":2.3569762988,"1203":2.4351546914,"1204":2.5133330839,"1205":2.5908931852,"1206":2.6684532865,"1207":2.7450890022,"1208":2.8217247179,"1209":2.8971336019,"1210":2.9725424859,"1211":3.0464269338,"1212":3.1203113817,"1213":3.1923798053,"1214":3.2644482289,"1215":3.3344162071,"1216":3.4043841853,"1217":3.4719755864,"1218":3.5395669874,"1219":3.6045150591,"1220":3.6694631307,"1221":3.7315115526,"1222":3.7935599744,"1223":3.8524638696,"1224":3.9113677648,"1225":3.9668946667,"1226":4.0224215686,"1227":4.0743523377,"1228":4.1262831069,"1229":4.1744127964,"1230":4.2225424859,"1231":4.2666811498,"1232":4.3108198138,"1233":4.3507932569,"1234":4.3907667001,"1235":4.4264171656,"1236":4.4620676312,"1237":4.4932544229,"1238":4.5244412147,"1239":4.5510412527,"1240":4.5776412907,"1241":4.5995495968,"1242":4.6214579028,"1243":4.6385880148,"1244":4.6557181268,"1245":4.6680024401,"1246":4.6802867533,"1247":4.6876767872,"1248":4.6950668211,"1249":4.6975334105,"1250":4.7,"1251":4.6975334105,"1252":4.6950668211,"1253":4.6876767872,"1254":4.6802867533,"1255":4.6680024401,"1256":4.6557181268,"1257":4.6385880148,"1258":4.6214579028,"1259":4.5995495968,"1260":4.5776412907,"1261":4.5510412527,"1262":4.5244412147,"1263":4.4932544229,"1264":4.4620676312,"1265":4.4264171656,"1266":4.3907667001,"1267":4.3507932569,"1268":4.3108198138,"1269":4.2666811498,"1270":4.2225424859,"1271":4.1744127964,"1272":4.1262831069,"1273":4.0743523377,"1274":4.0224215686,"1275":3.9668946667,"1276":3.9113677648,"1277":3.8524638696,"1278":3.7935599744,"1279":3.7315115526,"1280":3.6694631307,"1281":3.6045150591,"1282":3.5395669874,"1283":3.4719755864,"1284":3.4043841853,"1285":3.3344162071,"1286":3.2644482289,"1287":3.1923798053,"1288":3.1203113817,"1289":3.0464269338,"1290":2.9725424859,"1291":2.8971336019,"1292":2.8217247179,"1293":2.7450890022,"1294":2.6684532865,"1295":2.5908931852,"1296":2.5133330839,"1297":2.4351546914,"1298":2.3569762988,"1299":2.2784881494,"1300":2.2,"1301":2.1215118506,"1302":2.0430237012,"1303":1.9648453086,"1304":1.8866669161,"1305":1.8091068148,"1306":1.7315467135,"1307":1.6549109978,"1308":1.5782752821,"1309":1.5028663981,"1310":1.4274575141,"1311":1.3535730662,"1312":1.2796886183,"1313":1.2076201947,"1314":1.1355517711,"1315":1.0655837929,"1316":0.9956158147,"1317":0.9280244136,"1318":0.8604330126,"1319":0.7954849409,"1320":0.7305368693,"1321":0.6684884474,"1322":0.6064400256,"1323":0.5475361304,"1324":0.4886322352,"1325":0.4331053333,"1326":0.3775784314,"1327":0.3256476623,"1328":0.2737168931,"1329":0.2255872036,"1330":0.1774575141,"1331":0.1333188502,"1332":0.0891801862,"1333":0.0492067431,"1334":0.0092332999,"1335":-0.0264171656,"1336":-0.0620676312,"1337":-0.0932544229,"1338":-0.1244412147,"1339":-0.1510412527,"1340":-0.1776412907,"1341":-0.1995495968,"1342":-0.2214579028,"1343":-0.2385880148,"1344":-0.2557181268,"1345":-0.2680024401,"1346":-0.2802867533,"1347":-0.2876767872,"1348":-0.2950668211,"1349":-0.2975334105,"1350":-0.3,"1351":-0.2975334105,"1352":-0.2950668211,"1353":-0.2876767872,"1354":-0.2802867533,"1355":-0.2680024401,"1356":-0.2557181268,"1357":-0.2385880148,"1358":-0.2214579028,"1359":-0.1995495968,"1360":-0.1776412907,"1361":-0.1510412527,"1362":-0.1244412147,"1363":-0.0932544229,"1364":-0.0620676312,"1365":-0.0264171656,"1366":0.0092332999,"1367":0.0492067431,"1368":0.0891801862,"1369":0.1333188502,"1370":0.1774575141,"1371":0.2255872036,"1372":0.2737168931,"1373":0.3256476623,"1374":0.3775784314,"1375":0.4331053333,"1376":0.4886322352,"1377":0.5475361304,"1378":0.6064400256,"1379":0.6684884474,"1380":0.7305368693,"1381":0.7954849409,"1382":0.8604330126,"1383":0.9280244136,"1384":0.9956158147,"1385":1.0655837929,"1386":1.1355517711,"1387":1.2076201947,"1388":1.2796886183,"1389":1.3535730662,"1390":1.4274575141,"1391":1.5028663981,"1392":1.5782752821,"1393":1.6549109978,"1394":1.7315467135,"1395":1.8091068148,"1396":1.8866669161,"1397":1.9648453086,"1398":2.0430237012,"1399":2.1215118506,"1400":2.2,"1401":2.2784881494,"1402":2.3569762988,"1403":2.4351546914,"1404":2.5133330839,"1405":2.5908931852,"1406":2.6684532865,"1407":2.7450890022,"1408":2.8217247179,"1409":2.8971336019,"1410":2.9725424859,"1411":3.0464269338,"1412":3.1203113817,"1413":3.1923798053,"1414":3.2644482289,"1415":3.3344162071,"1416":3.4043841853,"1417":3.4719755864,"1418":3.5395669874,"1419":3.6045150591,"1420":3.6694631307,"1421":3.7315115526,"1422":3.7935599744,"1423":3.8524638696,"1424":3.9113677648,"1425":3.9668946667,"1426":4.0224215686,"1427":4.0743523377,"1428":4.1262831069,"1429":4.1744127964,"1430":4.2225424859,"1431":4.2666811498,"1432":4.3108198138,"1433":4.3507932569,"1434":4.3907667001,"1435":4.4264171656,"1436":4.4620676312,"1437":4.4932544229,"1438":4.5244412147,"1439":4.5510412527,"1440":4.5776412907,"1441":4.5995495968,"1442":4.6214579028,"1443":4.6385880148,"1444":4.6557181268,"1445":4.6680024401,"1446":4.6802867533,"1447":4.6876767872,"1448":4.6950668211,"1449":4.6975334105,"1450":4.7,"1451":4.6975334105,"1452":4.6950668211,"1453":4.6876767872,"1454":4.6802867533,"1455":4.6680024401,"1456":4.6557181268,"1457":4.6385880148,"1458":4.6214579028,"1459":4.5995495968,"1460":4.5776412907,"1461":4.5510412527,"1462":4.5244412147,"1463":4.4932544229,"1464":4.4620676312,"1465":4.4264171656,"1466":4.3907667001,"1467":4.3507932569,"1468":4.3108198138,"1469":4.2666811498,"1470":4.2225424859,"1471":4.1744127964,"1472":4.1262831069,"1473":4.0743523377,"1474":4.0224215686,"1475":3.9668946667,"1476":3.9113677648,"1477":3.8524638696,"1478":3.7935599744,"1479":3.7315115526,"1480":3.6694631307,"1481":3.6045150591,"1482":3.5395669874,"1483":3.4719755864,"1484":3.4043841853,"1485":3.3344162071,"1486":3.2644482289,"1487":3.1923798053,"1488":3.1203113817,"1489":3.0464269338,"1490":2.9725424859,"1491":2.8971336019,"1492":2.8217247179,"1493":2.7450890022,"1494":2.6684532865,"1495":2.5908931852,"1496":2.5133330839,"1497":2.4351546914,"1498":2.3569762988,"1499":2.2784881494,"1500":2.2,"1501":2.1215118506,"1502":2.0430237012,"1503":1.9648453086,"1504":1.8866669161,"1505":1.8091068148,"1506":1.7315467135,"1507":1.6549109978,"1508":1.5782752821,"1509":1.5028663981,"1510":1.4274575141,"1511":1.3535730662,"1512":1.2796886183,"1513":1.2076201947,"1514":1.1355517711,"1515":1.0655837929,"1516":0.9956158147,"1517":0.9280244136,"1518":0.8604330126,"1519":0.7954849409,"1520":0.7305368693,"1521":0.6684884474,"1522":0.6064400256,"1523":0.5475361304,"1524":0.4886322352,"1525":0.4331053333,"1526":0.3775784314,"1527":0.3256476623,"1528":0.2737168931,"1529":0.2255872036,"1530":0.1774575141,"1531":0.1333188502,"1532":0.0891801862,"1533":0.0492067431,"1534":0.0092332999,"1535":-0.0264171656,"1536":-0.0620676312,"1537":-0.0932544229,"1538":-0.1244412147,"1539":-0.1510412527,"1540":-0.1776412907,"1541":-0.1995495968,"1542":-0.2214579028,"1543":-0.2385880148,"1544":-0.2557181268,"1545":-0.2680024401,"1546":-0.2802867533,"1547":-0.2876767872,"1548":-0.2950668211,"1549":-0.2975334105,"1550":-0.3,"1551":-0.2975334105,"1552":-0.2950668211,"1553":-0.2876767872,"1554":-0.2802867533,"1555":-0.2680024401,"1556":-0.2557181268,"1557":-0.2385880148,"1558":-0.2214579028,"1559":-0.1995495968,"1560":-0.1776412907,"1561":-0.1510412527,"1562":-0.1244412147,"1563":-0.0932544229,"1564":-0.0620676312,"1565":-0.0264171656,"1566":0.0092332999,"1567":0.0492067431,"1568":0.0891801862,"1569":0.1333188502,"1570":0.1774575141,"1571":0.2255872036,"1572":0.2737168931,"1573":0.3256476623,"1574":0.3775784314,"1575":0.4331053333,"1576":0.4886322352,"1577":0.5475361304,"1578":0.6064400256,"1579":0.6684884474,"1580":0.7305368693,"1581":0.7954849409,"1582":0.8604330126,"1583":0.9280244136,"1584":0.9956158147,"1585":1.0655837929,"1586":1.1355517711,"1587":1.2076201947,"1588":1.2796886183,"1589":1.3535730662,"1590":1.4274575141,"1591":1.5028663981,"1592":1.5782752821,"1593":1.6549109978,"1594":1.7315467135,"1595":1.8091068148,"1596":1.8866669161,"1597":1.9648453086,"1598":2.0430237012,"1599":2.1215118506,"1600":2.2,"1601":2.2784881494,"1602":2.3569762988,"1603":2.4351546914,"1604":2.5133330839,"1605":2.5908931852,"1606":2.6684532865,"1607":2.7450890022,"1608":2.8217247179,"1609":2.8971336019,"1610":2.9725424859,"1611":3.0464269338,"1612":3.1203113817,"1613":3.1923798053,"1614":3.2644482289,"1615":3.3344162071,"1616":3.4043841853,"1617":3.4719755864,"1618":3.5395669874,"1619":3.6045150591,"1620":3.6694631307,"1621":3.7315115526,"1622":3.7935599744,"1623":3.8524638696,"1624":3.9113677648,"1625":3.9668946667,"1626":4.0224215686,"1627":4.0743523377,"1628":4.1262831069,"1629":4.1744127964,"1630":4.2225424859,"1631":4.2666811498,"1632":4.3108198138,"1633":4.3507932569,"1634":4.3907667001,"1635":4.4264171656,"1636":4.4620676312,"1637":4.4932544229,"1638":4.5244412147,"1639":4.5510412527,"1640":4.5776412907,"1641":4.5995495968,"1642":4.6214579028,"1643":4.6385880148,"1644":4.6557181268,"1645":4.6680024401,"1646":4.6802867533,"1647":4.6876767872,"1648":4.6950668211,"1649":4.6975334105,"1650":4.7,"1651":4.6975334105,"1652":4.6950668211,"1653":4.6876767872,"1654":4.6802867533,"1655":4.6680024401,"1656":4.6557181268,"1657":4.6385880148,"1658":4.6214579028,"1659":4.5995495968,"1660":4.5776412907,"1661":4.5510412527,"1662":4.5244412147,"1663":4.4932544229,"1664":4.4620676312,"1665":4.4264171656,"1666":4.3907667001,"1667":4.3507932569,"1668":4.3108198138,"1669":4.2666811498,"1670":4.2225424859,"1671":4.1744127964,"1672":4.1262831069,"1673":4.0743523377,"1674":4.0224215686,"1675":3.9668946667,"1676":3.9113677648,"1677":3.8524638696,"1678":3.7935599744,"1679":3.7315115526,"1680":3.6694631307,"1681":3.6045150591,"1682":3.5395669874,"1683":3.4719755864,"1684":3.4043841853,"1685":3.3344162071,"1686":3.2644482289,"1687":3.1923798053,"1688":3.1203113817,"1689":3.0464269338,"1690":2.9725424859,"1691":2.8971336019,"1692":2.8217247179,"1693":2.7450890022,"1694":2.6684532865,"1695":2.5908931852,"1696":2.5133330839,"1697":2.4351546914,"1698":2.3569762988,"1699":2.2784881494,"1700":2.2,"1701":2.1215118506,"1702":2.0430237012,"1703":1.9648453086,"1704":1.8866669161,"1705":1.8091068148,"1706":1.7315467135,"1707":1.6549109978,"1708":1.5782752821,"1709":1.5028663981,"1710":1.4274575141,"1711":1.3535730662,"1712":1.2796886183,"1713":1.2076201947,"1714":1.1355517711,"1715":1.0655837929,"1716":0.9956158147,"1717":0.9280244136,"1718":0.8604330126,"1719":0.7954849409,"1720":0.7305368693,"1721":0.6684884474,"1722":0.6064400256,"1723":0.5475361304,"1724":0.4886322352,"1725":0.4331053333,"1726":0.3775784314,"1727":0.3256476623,"1728":0.2737168931,"1729":0.2255872036,"1730":0.1774575141,"1731":0.1333188502,"1732":0.0891801862,"1733":0.0492067431,"1734":0.0092332999,"1735":-0.0264171656,"1736":-0.0620676312,"1737":-0.0932544229,"1738":-0.1244412147,"1739":-0.1510412527,"1740":-0.1776412907,"1741":-0.1995495968,"1742":-0.2214579028,"1743":-0.2385880148,"1744":-0.2557181268,"1745":-0.2680024401,"1746":-0.2802867533,"1747":-0.2876767872,"1748":-0.2950668211,"1749":-0.2975334105,"1750":-0.3,"1751":-0.2975334105,"1752":-0.2950668211,"1753":-0.2876767872,"1754":-0.2802867533,"1755":-0.2680024401,"1756":-0.2557181268,"1757":-0.2385880148,"1758":-0.2214579028,"1759":-0.1995495968,"1760":-0.1776412907,"1761":-0.1510412527,"1762":-0.1244412147,"1763":-0.0932544229,"1764":-0.0620676312,"1765":-0.0264171656,"1766":0.0092332999,"1767":0.0492067431,"1768":0.0891801862,"1769":0.1333188502,"1770":0.1774575141,"1771":0.2255872036,"1772":0.2737168931,"1773":0.3256476623,"1774":0.3775784314,"1775":0.4331053333,"1776":0.4886322352,"1777":0.5475361304,"1778":0.6064400256,"1779":0.6684884474,"1780":0.7305368693,"1781":0.7954849409,"1782":0.8604330126,"1783":0.9280244136,"1784":0.9956158147,"1785":1.0655837929,"1786":1.1355517711,"1787":1.2076201947,"1788":1.2796886183,"1789":1.3535730662,"1790":1.4274575141,"1791":1.5028663981,"1792":1.5782752821,"1793":1.6549109978,"1794":1.7315467135,"1795":1.8091068148,"1796":1.8866669161,"1797":1.9648453086,"1798":2.0430237012,"1799":2.1215118506,"1800":2.2,"1801":2.2784881494,"1802":2.3569762988,"1803":2.4351546914,"1804":2.5133330839,"1805":2.5908931852,"1806":2.6684532865,"1807":2.7450890022,"1808":2.8217247179,"1809":2.8971336019,"1810":2.9725424859,"1811":3.0464269338,"1812":3.1203113817,"1813":3.1923798053,"1814":3.2644482289,"1815":3.3344162071,"1816":3.4043841853,"1817":3.4719755864,"1818":3.5395669874,"1819":3.6045150591,"1820":3.6694631307,"1821":3.7315115526,"1822":3.7935599744,"1823":3.8524638696,"1824":3.9113677648,"1825":3.9668946667,"1826":4.0224215686,"1827":4.0743523377,"1828":4.1262831069,"1829":4.1744127964,"1830":4.2225424859,"1831":4.2666811498,"1832":4.3108198138,"1833":4.3507932569,"1834":4.3907667001,"1835":4.4264171656,"1836":4.4620676312,"1837":4.4932544229,"1838":4.5244412147,"1839":4.5510412527,"1840":4.5776412907,"1841":4.5995495968,"1842":4.6214579028,"1843":4.6385880148,"1844":4.6557181268,"1845":4.6680024401,"1846":4.6802867533,"1847":4.6876767872,"1848":4.6950668211,"1849":4.6975334105,"1850":4.7,"1851":4.6975334105,"1852":4.6950668211,"1853":4.6876767872,"1854":4.6802867533,"1855":4.6680024401,"1856":4.6557181268,"1857":4.6385880148,"1858":4.6214579028,"1859":4.5995495968,"1860":4.5776412907,"1861":4.5510412527,"1862":4.5244412147,"1863":4.4932544229,"1864":4.4620676312,"1865":4.4264171656,"1866":4.3907667001,"1867":4.3507932569,"1868":4.3108198138,"1869":4.2666811498,"1870":4.2225424859,"1871":4.1744127964,"1872":4.1262831069,"1873":4.0743523377,"1874":4.0224215686,"1875":3.9668946667,"1876":3.9113677648,"1877":3.8524638696,"1878":3.7935599744,"1879":3.7315115526,"1880":3.6694631307,"1881":3.6045150591,"1882":3.5395669874,"1883":3.4719755864,"1884":3.4043841853,"1885":3.3344162071,"1886":3.2644482289,"1887":3.1923798053,"1888":3.1203113817,"1889":3.0464269338,"1890":2.9725424859,"1891":2.8971336019,"1892":2.8217247179,"1893":2.7450890022,"1894":2.6684532865,"1895":2.5908931852,"1896":2.5133330839,"1897":2.4351546914,"1898":2.3569762988,"1899":2.2784881494,"1900":2.2,"1901":2.1215118506,"1902":2.0430237012,"1903":1.9648453086,"1904":1.8866669161,"1905":1.8091068148,"1906":1.7315467135,"1907":1.6549109978,"1908":1.5782752821,"1909":1.5028663981,"1910":1.4274575141,"1911":1.3535730662,"1912":1.2796886183,"1913":1.2076201947,"1914":1.1355517711,"1915":1.0655837929,"1916":0.9956158147,"1917":0.9280244136,"1918":0.8604330126,"1919":0.7954849409,"1920":0.7305368693,"1921":0.6684884474,"1922":0.6064400256,"1923":0.5475361304,"1924":0.4886322352,"1925":0.4331053333,"1926":0.3775784314,"1927":0.3256476623,"1928":0.2737168931,"1929":0.2255872036,"1930":0.1774575141,"1931":0.1333188502,"1932":0.0891801862,"1933":0.0492067431,"1934":0.0092332999,"1935":-0.0264171656,"1936":-0.0620676312,"1937":-0.0932544229,"1938":-0.1244412147,"1939":-0.1510412527,"1940":-0.1776412907,"1941":-0.1995495968,"1942":-0.2214579028,"1943":-0.2385880148,"1944":-0.2557181268,"1945":-0.2680024401,"1946":-0.2802867533,"1947":-0.2876767872,"1948":-0.2950668211,"1949":-0.2975334105,"1950":-0.3,"1951":-0.2975334105,"1952":-0.2950668211,"1953":-0.2876767872,"1954":-0.2802867533,"1955":-0.2680024401,"1956":-0.2557181268,"1957":-0.2385880148,"1958":-0.2214579028,"1959":-0.1995495968,"1960":-0.1776412907,"1961":-0.1510412527,"1962":-0.1244412147,"1963":-0.0932544229,"1964":-0.0620676312,"1965":-0.0264171656,"1966":0.0092332999,"1967":0.0492067431,"1968":0.0891801862,"1969":0.1333188502,"1970":0.1774575141,"1971":0.2255872036,"1972":0.2737168931,"1973":0.3256476623,"1974":0.3775784314,"1975":0.4331053333,"1976":0.4886322352,"1977":0.5475361304,"1978":0.6064400256,"1979":0.6684884474,"1980":0.7305368693,"1981":0.7954849409,"1982":0.8604330126,"1983":0.9280244136,"1984":0.9956158147,"1985":1.0655837929,"1986":1.1355517711,"1987":1.2076201947,"1988":1.2796886183,"1989":1.3535730662,"1990":1.4274575141,"1991":1.5028663981,"1992":1.5782752821,"1993":1.6549109978,"1994":1.7315467135,"1995":1.8091068148,"1996":1.8866669161,"1997":1.9648453086,"1998":2.0430237012,"1999":2.1215118506,"2000":2.2,"2001":2.2784881494,"2002":2.3569762988,"2003":2.4351546914,"2004":2.5133330839,"2005":2.5908931852,"2006":2.6684532865,"2007":2.7450890022,"2008":2.8217247179,"2009":2.8971336019,"2010":2.9725424859,"2011":3.0464269338,"2012":3.1203113817,"2013":3.1923798053,"2014":3.2644482289,"2015":3.3344162071,"2016":3.4043841853,"2017":3.4719755864,"2018":3.5395669874,"2019":3.6045150591,"2020":3.6694631307,"2021":3.7315115526,"2022":3.7935599744,"2023":3.8524638696,"2024":3.9113677648,"2025":3.9668946667,"2026":4.0224215686,"2027":4.0743523377,"2028":4.1262831069,"2029":4.1744127964,"2030":4.2225424859,"2031":4.2666811498,"2032":4.3108198138,"2033":4.3507932569,"2034":4.3907667001,"2035":4.4264171656,"2036":4.4620676312,"2037":4.4932544229,"2038":4.5244412147,"2039":4.5510412527,"2040":4.5776412907,"2041":4.5995495968,"2042":4.6214579028,"2043":4.6385880148,"2044":4.6557181268,"2045":4.6680024401,"2046":4.6802867533,"2047":4.6876767872,"2048":4.6950668211,"2049":4.6975334105,"2050":4.7,"2051":4.6975334105,"2052":4.6950668211,"2053":4.6876767872,"2054":4.6802867533,"2055":4.6680024401,"2056":4.6557181268,"2057":4.6385880148,"2058":4.6214579028,"2059":4.5995495968,"2060":4.5776412907,"2061":4.5510412527,"2062":4.5244412147,"2063":4.4932544229,"2064":4.4620676312,"2065":4.4264171656,"2066":4.3907667001,"2067":4.3507932569,"2068":4.3108198138,"2069":4.2666811498,"2070":4.2225424859,"2071":4.1744127964,"2072":4.1262831069,"2073":4.0743523377,"2074":4.0224215686,"2075":3.9668946667,"2076":3.9113677648,"2077":3.8524638696,"2078":3.7935599744,"2079":3.7315115526,"2080":3.6694631307,"2081":3.6045150591,"2082":3.5395669874,"2083":3.4719755864,"2084":3.4043841853,"2085":3.3344162071,"2086":3.2644482289,"2087":3.1923798053,"2088":3.1203113817,"2089":3.0464269338,"2090":2.9725424859,"2091":2.8971336019,"2092":2.8217247179,"2093":2.7450890022,"2094":2.6684532865,"2095":2.5908931852,"2096":2.5133330839,"2097":2.4351546914,"2098":2.3569762988,"2099":2.2784881494,"2100":2.2,"2101":2.1215118506,"2102":2.0430237012,"2103":1.9648453086,"2104":1.8866669161,"2105":1.8091068148,"2106":1.7315467135,"2107":1.6549109978,"2108":1.5782752821,"2109":1.5028663981,"2110":1.4274575141,"2111":1.3535730662,"2112":1.2796886183,"2113":1.2076201947,"2114":1.1355517711,"2115":1.0655837929,"2116":0.9956158147,"2117":0.9280244136,"2118":0.8604330126,"2119":0.7954849409,"2120":0.7305368693,"2121":0.6684884474,"2122":0.6064400256,"2123":0.5475361304,"2124":0.4886322352,"2125":0.4331053333,"2126":0.3775784314,"2127":0.3256476623,"2128":0.2737168931,"2129":0.2255872036,"2130":0.1774575141,"2131":0.1333188502,"2132":0.0891801862,"2133":0.0492067431,"2134":0.0092332999,"2135":-0.0264171656,"2136":-0.0620676312,"2137":-0.0932544229,"2138":-0.1244412147,"2139":-0.1510412527,"2140":-0.1776412907,"2141":-0.1995495968,"2142":-0.2214579028,"2143":-0.2385880148,"2144":-0.2557181268,"2145":-0.2680024401,"2146":-0.2802867533,"2147":-0.2876767872,"2148":-0.2950668211,"2149":-0.2975334105,"2150":-0.3,"2151":-0.2975334105,"2152":-0.2950668211,"2153":-0.2876767872,"2154":-0.2802867533,"2155":-0.2680024401,"2156":-0.2557181268,"2157":-0.2385880148,"2158":-0.2214579028,"2159":-0.1995495968,"2160":-0.1776412907,"2161":-0.1510412527,"2162":-0.1244412147,"2163":-0.0932544229,"2164":-0.0620676312,"2165":-0.0264171656,"2166":0.0092332999,"2167":0.0492067431,"2168":0.0891801862,"2169":0.1333188502,"2170":0.1774575141,"2171":0.2255872036,"2172":0.2737168931,"2173":0.3256476623,"2174":0.3775784314,"2175":0.4331053333,"2176":0.4886322352,"2177":0.5475361304,"2178":0.6064400256,"2179":0.6684884474,"2180":0.7305368693,"2181":0.7954849409,"2182":0.8604330126,"2183":0.9280244136,"2184":0.9956158147,"2185":1.0655837929,"2186":1.1355517711,"2187":1.2076201947,"2188":1.2796886183,"2189":1.3535730662,"2190":1.4274575141,"2191":1.5028663981,"2192":1.5782752821,"2193":1.6549109978,"2194":1.7315467135,"2195":1.8091068148,"2196":1.8866669161,"2197":1.9648453086,"2198":2.0430237012,"2199":2.1215118506,"2200":2.2,"2201":2.2784881494,"2202":2.3569762988,"2203":2.4351546914,"2204":2.5133330839,"2205":2.5908931852,"2206":2.6684532865,"2207":2.7450890022,"2208":2.8217247179,"2209":2.8971336019,"2210":2.9725424859,"2211":3.0464269338,"2212":3.1203113817,"2213":3.1923798053,"2214":3.2644482289,"2215":3.3344162071,"2216":3.4043841853,"2217":3.4719755864,"2218":3.5395669874,"2219":3.6045150591,"2220":3.6694631307,"2221":3.7315115526,"2222":3.7935599744,"2223":3.8524638696,"2224":3.9113677648,"2225":3.9668946667,"2226":4.0224215686,"2227":4.0743523377,"2228":4.1262831069,"2229":4.1744127964,"2230":4.2225424859,"2231":4.2666811498,"2232":4.3108198138,"2233":4.3507932569,"2234":4.3907667001,"2235":4.4264171656,"2236":4.4620676312,"2237":4.4932544229,"2238":4.5244412147,"2239":4.5510412527,"2240":4.5776412907,"2241":4.5995495968,"2242":4.6214579028,"2243":4.6385880148,"2244":4.6557181268,"2245":4.6680024401,"2246":4.6802867533,"2247":4.6876767872,"2248":4.6950668211,"2249":4.6975334105,"2250":4.7,"2251":4.6975334105,"2252":4.6950668211,"2253":4.6876767872,"2254":4.6802867533,"2255":4.6680024401,"2256":4.6557181268,"2257":4.6385880148,"2258":4.6214579028,"2259":4.5995495968,"2260":4.5776412907,"2261":4.5510412527,"2262":4.5244412147,"2263":4.4932544229,"2264":4.4620676312,"2265":4.4264171656,"2266":4.3907667001,"2267":4.3507932569,"2268":4.3108198138,"2269":4.2666811498,"2270":4.2225424859,"2271":4.1744127964,"2272":4.1262831069,"2273":4.0743523377,"2274":4.0224215686,"2275":3.9668946667,"2276":3.9113677648,"2277":3.8524638696,"2278":3.7935599744,"2279":3.7315115526,"2280":3.6694631307,"2281":3.6045150591,"2282":3.5395669874,"2283":3.4719755864,"2284":3.4043841853,"2285":3.3344162071,"2286":3.2644482289,"2287":3.1923798053,"2288":3.1203113817,"2289":3.0464269338,"2290":2.9725424859,"2291":2.8971336019,"2292":2.8217247179,"2293":2.7450890022,"2294":2.6684532865,"2295":2.5908931852,"2296":2.5133330839,"2297":2.4351546914,"2298":2.3569762988,"2299":2.2784881494,"2300":2.2,"2301":2.1215118506,"2302":2.0430237012,"2303":1.9648453086,"2304":1.8866669161,"2305":1.8091068148,"2306":1.7315467135,"2307":1.6549109978,"2308":1.5782752821,"2309":1.5028663981,"2310":1.4274575141,"2311":1.3535730662,"2312":1.2796886183,"2313":1.2076201947,"2314":1.1355517711,"2315":1.0655837929,"2316":0.9956158147,"2317":0.9280244136,"2318":0.8604330126,"2319":0.7954849409,"2320":0.7305368693,"2321":0.6684884474,"2322":0.6064400256,"2323":0.5475361304,"2324":0.4886322352,"2325":0.4331053333,"2326":0.3775784314,"2327":0.3256476623,"2328":0.2737168931,"2329":0.2255872036,"2330":0.1774575141,"2331":0.1333188502,"2332":0.0891801862,"2333":0.0492067431,"2334":0.0092332999,"2335":-0.0264171656,"2336":-0.0620676312,"2337":-0.0932544229,"2338":-0.1244412147,"2339":-0.1510412527,"2340":-0.1776412907,"2341":-0.1995495968,"2342":-0.2214579028,"2343":-0.2385880148,"2344":-0.2557181268,"2345":-0.2680024401,"2346":-0.2802867533,"2347":-0.2876767872,"2348":-0.2950668211,"2349":-0.2975334105,"2350":-0.3,"2351":-0.2975334105,"2352":-0.2950668211,"2353":-0.2876767872,"2354":-0.2802867533,"2355":-0.2680024401,"2356":-0.2557181268,"2357":-0.2385880148,"2358":-0.2214579028,"2359":-0.1995495968,"2360":-0.1776412907,"2361":-0.1510412527,"2362":-0.1244412147,"2363":-0.0932544229,"2364":-0.0620676312,"2365":-0.0264171656,"2366":0.0092332999,"2367":0.0492067431,"2368":0.0891801862,"2369":0.1333188502,"2370":0.1774575141,"2371":0.2255872036,"2372":0.2737168931,"2373":0.3256476623,"2374":0.3775784314,"2375":0.4331053333,"2376":0.4886322352,"2377":0.5475361304,"2378":0.6064400256,"2379":0.6684884474,"2380":0.7305368693,"2381":0.7954849409,"2382":0.8604330126,"2383":0.9280244136,"2384":0.9956158147,"2385":1.0655837929,"2386":1.1355517711,"2387":1.2076201947,"2388":1.2796886183,"2389":1.3535730662,"2390":1.4274575141,"2391":1.5028663981,"2392":1.5782752821,"2393":1.6549109978,"2394":1.7315467135,"2395":1.8091068148,"2396":1.8866669161,"2397":1.9648453086,"2398":2.0430237012,"2399":2.1215118506,"2400":2.2,"2401":2.2784881494,"2402":2.3569762988,"2403":2.4351546914,"2404":2.5133330839,"2405":2.5908931852,"2406":2.6684532865,"2407":2.7450890022,"2408":2.8217247179,"2409":2.8971336019,"2410":2.9725424859,"2411":3.0464269338,"2412":3.1203113817,"2413":3.1923798053,"2414":3.2644482289,"2415":3.3344162071,"2416":3.4043841853,"2417":3.4719755864,"2418":3.5395669874,"2419":3.6045150591,"2420":3.6694631307,"2421":3.7315115526,"2422":3.7935599744,"2423":3.8524638696,"2424":3.9113677648,"2425":3.9668946667,"2426":4.0224215686,"2427":4.0743523377,"2428":4.1262831069,"2429":4.1744127964,"2430":4.2225424859,"2431":4.2666811498,"2432":4.3108198138,"2433":4.3507932569,"2434":4.3907667001,"2435":4.4264171656,"2436":4.4620676312,"2437":4.4932544229,"2438":4.5244412147,"2439":4.5510412527,"2440":4.5776412907,"2441":4.5995495968,"2442":4.6214579028,"2443":4.6385880148,"2444":4.6557181268,"2445":4.6680024401,"2446":4.6802867533,"2447":4.6876767872,"2448":4.6950668211,"2449":4.6975334105,"2450":4.7,"2451":4.6975334105,"2452":4.6950668211,"2453":4.6876767872,"2454":4.6802867533,"2455":4.6680024401,"2456":4.6557181268,"2457":4.6385880148,"2458":4.6214579028,"2459":4.5995495968,"2460":4.5776412907,"2461":4.5510412527,"2462":4.5244412147,"2463":4.4932544229,"2464":4.4620676312,"2465":4.4264171656,"2466":4.3907667001,"2467":4.3507932569,"2468":4.3108198138,"2469":4.2666811498,"2470":4.2225424859,"2471":4.1744127964,"2472":4.1262831069,"2473":4.0743523377,"2474":4.0224215686,"2475":3.9668946667,"2476":3.9113677648,"2477":3.8524638696,"2478":3.7935599744,"2479":3.7315115526,"2480":3.6694631307,"2481":3.6045150591,"2482":3.5395669874,"2483":3.4719755864,"2484":3.4043841853,"2485":3.3344162071,"2486":3.2644482289,"2487":3.1923798053,"2488":3.1203113817,"2489":3.0464269338,"2490":2.9725424859,"2491":2.8971336019,"2492":2.8217247179,"2493":2.7450890022,"2494":2.6684532865,"2495":2.5908931852,"2496":2.5133330839,"2497":2.4351546914,"2498":2.3569762988,"2499":2.2784881494,"2500":2.2,"2501":2.1215118506,"2502":2.0430237012,"2503":1.9648453086,"2504":1.8866669161,"2505":1.8091068148,"2506":1.7315467135,"2507":1.6549109978,"2508":1.5782752821,"2509":1.5028663981,"2510":1.4274575141,"2511":1.3535730662,"2512":1.2796886183,"2513":1.2076201947,"2514":1.1355517711,"2515":1.0655837929,"2516":0.9956158147,"2517":0.9280244136,"2518":0.8604330126,"2519":0.7954849409,"2520":0.7305368693,"2521":0.6684884474,"2522":0.6064400256,"2523":0.5475361304,"2524":0.4886322352,"2525":0.4331053333,"2526":0.3775784314,"2527":0.3256476623,"2528":0.2737168931,"2529":0.2255872036,"2530":0.1774575141,"2531":0.1333188502,"2532":0.0891801862,"2533":0.0492067431,"2534":0.0092332999,"2535":-0.0264171656,"2536":-0.0620676312,"2537":-0.0932544229,"2538":-0.1244412147,"2539":-0.1510412527,"2540":-0.1776412907,"2541":-0.1995495968,"2542":-0.2214579028,"2543":-0.2385880148,"2544":-0.2557181268,"2545":-0.2680024401,"2546":-0.2802867533,"2547":-0.2876767872,"2548":-0.2950668211,"2549":-0.2975334105,"2550":-0.3,"2551":-0.2975334105,"2552":-0.2950668211,"2553":-0.2876767872,"2554":-0.2802867533,"2555":-0.2680024401,"2556":-0.2557181268,"2557":-0.2385880148,"2558":-0.2214579028,"2559":-0.1995495968,"2560":-0.1776412907,"2561":-0.1510412527,"2562":-0.1244412147,"2563":-0.0932544229,"2564":-0.0620676312,"2565":-0.0264171656,"2566":0.0092332999,"2567":0.0492067431,"2568":0.0891801862,"2569":0.1333188502,"2570":0.1774575141,"2571":0.2255872036,"2572":0.2737168931,"2573":0.3256476623,"2574":0.3775784314,"2575":0.4331053333,"2576":0.4886322352,"2577":0.5475361304,"2578":0.6064400256,"2579":0.6684884474,"2580":0.7305368693,"2581":0.7954849409,"2582":0.8604330126,"2583":0.9280244136,"2584":0.9956158147,"2585":1.0655837929,"2586":1.1355517711,"2587":1.2076201947,"2588":1.2796886183,"2589":1.3535730662,"2590":1.4274575141,"2591":1.5028663981,"2592":1.5782752821,"2593":1.6549109978,"2594":1.7315467135,"2595":1.8091068148,"2596":1.8866669161,"2597":1.9648453086,"2598":2.0430237012,"2599":2.1215118506,"2600":2.2,"2601":2.2784881494,"2602":2.3569762988,"2603":2.4351546914,"2604":2.5133330839,"2605":2.5908931852,"2606":2.6684532865,"2607":2.7450890022,"2608":2.8217247179,"2609":2.8971336019,"2610":2.9725424859,"2611":3.0464269338,"2612":3.1203113817,"2613":3.1923798053,"2614":3.2644482289,"2615":3.3344162071,"2616":3.4043841853,"2617":3.4719755864,"2618":3.5395669874,"2619":3.6045150591,"2620":3.6694631307,"2621":3.7315115526,"2622":3.7935599744,"2623":3.8524638696,"2624":3.9113677648,"2625":3.9668946667,"2626":4.0224215686,"2627":4.0743523377,"2628":4.1262831069,"2629":4.1744127964,"2630":4.2225424859,"2631":4.2666811498,"2632":4.3108198138,"2633":4.3507932569,"2634":4.3907667001,"2635":4.4264171656,"2636":4.4620676312,"2637":4.4932544229,"2638":4.5244412147,"2639":4.5510412527,"2640":4.5776412907,"2641":4.5995495968,"2642":4.6214579028,"2643":4.6385880148,"2644":4.6557181268,"2645":4.6680024401,"2646":4.6802867533,"2647":4.6876767872,"2648":4.6950668211,"2649":4.6975334105,"2650":4.7,"2651":4.6975334105,"2652":4.6950668211,"2653":4.6876767872,"2654":4.6802867533,"2655":4.6680024401,"2656":4.6557181268,"2657":4.6385880148,"2658":4.6214579028,"2659":4.5995495968,"2660":4.5776412907,"2661":4.5510412527,"2662":4.5244412147,"2663":4.4932544229,"2664":4.4620676312,"2665":4.4264171656,"2666":4.3907667001,"2667":4.3507932569,"2668":4.3108198138,"2669":4.2666811498,"2670":4.2225424859,"2671":4.1744127964,"2672":4.1262831069,"2673":4.0743523377,"2674":4.0224215686,"2675":3.9668946667,"2676":3.9113677648,"2677":3.8524638696,"2678":3.7935599744,"2679":3.7315115526,"2680":3.6694631307,"2681":3.6045150591,"2682":3.5395669874,"2683":3.4719755864,"2684":3.4043841853,"2685":3.3344162071,"2686":3.2644482289,"2687":3.1923798053,"2688":3.1203113817,"2689":3.0464269338,"2690":2.9725424859,"2691":2.8971336019,"2692":2.8217247179,"2693":2.7450890022,"2694":2.6684532865,"2695":2.5908931852,"2696":2.5133330839,"2697":2.4351546914,"2698":2.3569762988,"2699":2.2784881494,"2700":2.2,"2701":2.1215118506,"2702":2.0430237012,"2703":1.9648453086,"2704":1.8866669161,"2705":1.8091068148,"2706":1.7315467135,"2707":1.6549109978,"2708":1.5782752821,"2709":1.5028663981,"2710":1.4274575141,"2711":1.3535730662,"2712":1.2796886183,"2713":1.2076201947,"2714":1.1355517711,"2715":1.0655837929,"2716":0.9956158147,"2717":0.9280244136,"2718":0.8604330126,"2719":0.7954849409,"2720":0.7305368693,"2721":0.6684884474,"2722":0.6064400256,"2723":0.5475361304,"2724":0.4886322352,"2725":0.4331053333,"2726":0.3775784314,"2727":0.3256476623,"2728":0.2737168931,"2729":0.2255872036,"2730":0.1774575141,"2731":0.1333188502,"2732":0.0891801862,"2733":0.0492067431,"2734":0.0092332999,"2735":-0.0264171656,"2736":-0.0620676312,"2737":-0.0932544229,"2738":-0.1244412147,"2739":-0.1510412527,"2740":-0.1776412907,"2741":-0.1995495968,"2742":-0.2214579028,"2743":-0.2385880148,"2744":-0.2557181268,"2745":-0.2680024401,"2746":-0.2802867533,"2747":-0.2876767872,"2748":-0.2950668211,"2749":-0.2975334105,"2750":-0.3,"2751":-0.2975334105,"2752":-0.2950668211,"2753":-0.2876767872,"2754":-0.2802867533,"2755":-0.2680024401,"2756":-0.2557181268,"2757":-0.2385880148,"2758":-0.2214579028,"2759":-0.1995495968,"2760":-0.1776412907,"2761":-0.1510412527,"2762":-0.1244412147,"2763":-0.0932544229,"2764":-0.0620676312,"2765":-0.0264171656,"2766":0.0092332999,"2767":0.0492067431,"2768":0.0891801862,"2769":0.1333188502,"2770":0.1774575141,"2771":0.2255872036,"2772":0.2737168931,"2773":0.3256476623,"2774":0.3775784314,"2775":0.4331053333,"2776":0.4886322352,"2777":0.5475361304,"2778":0.6064400256,"2779":0.6684884474,"2780":0.7305368693,"2781":0.7954849409,"2782":0.8604330126,"2783":0.9280244136,"2784":0.9956158147,"2785":1.0655837929,"2786":1.1355517711,"2787":1.2076201947,"2788":1.2796886183,"2789":1.3535730662,"2790":1.4274575141,"2791":1.5028663981,"2792":1.5782752821,"2793":1.6549109978,"2794":1.7315467135,"2795":1.8091068148,"2796":1.8866669161,"2797":1.9648453086,"2798":2.0430237012,"2799":2.1215118506,"2800":2.2,"2801":2.2784881494,"2802":2.3569762988,"2803":2.4351546914,"2804":2.5133330839,"2805":2.5908931852,"2806":2.6684532865,"2807":2.7450890022,"2808":2.8217247179,"2809":2.8971336019,"2810":2.9725424859,"2811":3.0464269338,"2812":3.1203113817,"2813":3.1923798053,"2814":3.2644482289,"2815":3.3344162071,"2816":3.4043841853,"2817":3.4719755864,"2818":3.5395669874,"2819":3.6045150591,"2820":3.6694631307,"2821":3.7315115526,"2822":3.7935599744,"2823":3.8524638696,"2824":3.9113677648,"2825":3.9668946667,"2826":4.0224215686,"2827":4.0743523377,"2828":4.1262831069,"2829":4.1744127964,"2830":4.2225424859,"2831":4.2666811498,"2832":4.3108198138,"2833":4.3507932569,"2834":4.3907667001,"2835":4.4264171656,"2836":4.4620676312,"2837":4.4932544229,"2838":4.5244412147,"2839":4.5510412527,"2840":4.5776412907,"2841":4.5995495968,"2842":4.6214579028,"2843":4.6385880148,"2844":4.6557181268,"2845":4.6680024401,"2846":4.6802867533,"2847":4.6876767872,"2848":4.6950668211,"2849":4.6975334105,"2850":4.7,"2851":4.6975334105,"2852":4.6950668211,"2853":4.6876767872,"2854":4.6802867533,"2855":4.6680024401,"2856":4.6557181268,"2857":4.6385880148,"2858":4.6214579028,"2859":4.5995495968,"2860":4.5776412907,"2861":4.5510412527,"2862":4.5244412147,"2863":4.4932544229,"2864":4.4620676312,"2865":4.4264171656,"2866":4.3907667001,"2867":4.3507932569,"2868":4.3108198138,"2869":4.2666811498,"2870":4.2225424859,"2871":4.1744127964,"2872":4.1262831069,"2873":4.0743523377,"2874":4.0224215686,"2875":3.9668946667,"2876":3.9113677648,"2877":3.8524638696,"2878":3.7935599744,"2879":3.7315115526,"2880":3.6694631307,"2881":3.6045150591,"2882":3.5395669874,"2883":3.4719755864,"2884":3.4043841853,"2885":3.3344162071,"2886":3.2644482289,"2887":3.1923798053,"2888":3.1203113817,"2889":3.0464269338,"2890":2.9725424859,"2891":2.8971336019,"2892":2.8217247179,"2893":2.7450890022,"2894":2.6684532865,"2895":2.5908931852,"2896":2.5133330839,"2897":2.4351546914,"2898":2.3569762988,"2899":2.2784881494,"2900":2.2,"2901":2.1215118506,"2902":2.0430237012,"2903":1.9648453086,"2904":1.8866669161,"2905":1.8091068148,"2906":1.7315467135,"2907":1.6549109978,"2908":1.5782752821,"2909":1.5028663981,"2910":1.4274575141,"2911":1.3535730662,"2912":1.2796886183,"2913":1.2076201947,"2914":1.1355517711,"2915":1.0655837929,"2916":0.9956158147,"2917":0.9280244136,"2918":0.8604330126,"2919":0.7954849409,"2920":0.7305368693,"2921":0.6684884474,"2922":0.6064400256,"2923":0.5475361304,"2924":0.4886322352,"2925":0.4331053333,"2926":0.3775784314,"2927":0.3256476623,"2928":0.2737168931,"2929":0.2255872036,"2930":0.1774575141,"2931":0.1333188502,"2932":0.0891801862,"2933":0.0492067431,"2934":0.0092332999,"2935":-0.0264171656,"2936":-0.0620676312,"2937":-0.0932544229,"2938":-0.1244412147,"2939":-0.1510412527,"2940":-0.1776412907,"2941":-0.1995495968,"2942":-0.2214579028,"2943":-0.2385880148,"2944":-0.2557181268,"2945":-0.2680024401,"2946":-0.2802867533,"2947":-0.2876767872,"2948":-0.2950668211,"2949":-0.2975334105,"2950":-0.3,"2951":-0.2975334105,"2952":-0.2950668211,"2953":-0.2876767872,"2954":-0.2802867533,"2955":-0.2680024401,"2956":-0.2557181268,"2957":-0.2385880148,"2958":-0.2214579028,"2959":-0.1995495968,"2960":-0.1776412907,"2961":-0.1510412527,"2962":-0.1244412147,"2963":-0.0932544229,"2964":-0.0620676312,"2965":-0.0264171656,"2966":0.0092332999,"2967":0.0492067431,"2968":0.0891801862,"2969":0.1333188502,"2970":0.1774575141,"2971":0.2255872036,"2972":0.2737168931,"2973":0.3256476623,"2974":0.3775784314,"2975":0.4331053333,"2976":0.4886322352,"2977":0.5475361304,"2978":0.6064400256,"2979":0.6684884474,"2980":0.7305368693,"2981":0.7954849409,"2982":0.8604330126,"2983":0.9280244136,"2984":0.9956158147,"2985":1.0655837929,"2986":1.1355517711,"2987":1.2076201947,"2988":1.2796886183,"2989":1.3535730662,"2990":1.4274575141,"2991":1.5028663981,"2992":1.5782752821,"2993":1.6549109978,"2994":1.7315467135,"2995":1.8091068148,"2996":1.8866669161,"2997":1.9648453086,"2998":2.0430237012,"2999":2.1215118506,"3000":2.2,"3001":2.2784881494,"3002":2.3569762988,"3003":2.4351546914,"3004":2.5133330839,"3005":2.5908931852,"3006":2.6684532865,"3007":2.7450890022,"3008":2.8217247179,"3009":2.8971336019,"3010":2.9725424859,"3011":3.0464269338,"3012":3.1203113817,"3013":3.1923798053,"3014":3.2644482289,"3015":3.3344162071,"3016":3.4043841853,"3017":3.4719755864,"3018":3.5395669874,"3019":3.6045150591,"3020":3.6694631307,"3021":3.7315115526,"3022":3.7935599744,"3023":3.8524638696,"3024":3.9113677648,"3025":3.9668946667,"3026":4.0224215686,"3027":4.0743523377,"3028":4.1262831069,"3029":4.1744127964,"3030":4.2225424859,"3031":4.2666811498,"3032":4.3108198138,"3033":4.3507932569,"3034":4.3907667001,"3035":4.4264171656,"3036":4.4620676312,"3037":4.4932544229,"3038":4.5244412147,"3039":4.5510412527,"3040":4.5776412907,"3041":4.5995495968,"3042":4.6214579028,"3043":4.6385880148,"3044":4.6557181268,"3045":4.6680024401,"3046":4.6802867533,"3047":4.6876767872,"3048":4.6950668211,"3049":4.6975334105,"3050":4.7,"3051":4.6975334105,"3052":4.6950668211,"3053":4.6876767872,"3054":4.6802867533,"3055":4.6680024401,"3056":4.6557181268,"3057":4.6385880148,"3058":4.6214579028,"3059":4.5995495968,"3060":4.5776412907,"3061":4.5510412527,"3062":4.5244412147,"3063":4.4932544229,"3064":4.4620676312,"3065":4.4264171656,"3066":4.3907667001,"3067":4.3507932569,"3068":4.3108198138,"3069":4.2666811498,"3070":4.2225424859,"3071":4.1744127964,"3072":4.1262831069,"3073":4.0743523377,"3074":4.0224215686,"3075":3.9668946667,"3076":3.9113677648,"3077":3.8524638696,"3078":3.7935599744,"3079":3.7315115526,"3080":3.6694631307,"3081":3.6045150591,"3082":3.5395669874,"3083":3.4719755864,"3084":3.4043841853,"3085":3.3344162071,"3086":3.2644482289,"3087":3.1923798053,"3088":3.1203113817,"3089":3.0464269338,"3090":2.9725424859,"3091":2.8971336019,"3092":2.8217247179,"3093":2.7450890022,"3094":2.6684532865,"3095":2.5908931852,"3096":2.5133330839,"3097":2.4351546914,"3098":2.3569762988,"3099":2.2784881494,"3100":2.2,"3101":2.1215118506,"3102":2.0430237012,"3103":1.9648453086,"3104":1.8866669161,"3105":1.8091068148,"3106":1.7315467135,"3107":1.6549109978,"3108":1.5782752821,"3109":1.5028663981,"3110":1.4274575141,"3111":1.3535730662,"3112":1.2796886183,"3113":1.2076201947,"3114":1.1355517711,"3115":1.0655837929,"3116":0.9956158147,"3117":0.9280244136,"3118":0.8604330126,"3119":0.7954849409,"3120":0.7305368693,"3121":0.6684884474,"3122":0.6064400256,"3123":0.5475361304,"3124":0.4886322352,"3125":0.4331053333,"3126":0.3775784314,"3127":0.3256476623,"3128":0.2737168931,"3129":0.2255872036,"3130":0.1774575141,"3131":0.1333188502,"3132":0.0891801862,"3133":0.0492067431,"3134":0.0092332999,"3135":-0.0264171656,"3136":-0.0620676312,"3137":-0.0932544229,"3138":-0.1244412147,"3139":-0.1510412527,"3140":-0.1776412907,"3141":-0.1995495968,"3142":-0.2214579028,"3143":-0.2385880148,"3144":-0.2557181268,"3145":-0.2680024401,"3146":-0.2802867533,"3147":-0.2876767872,"3148":-0.2950668211,"3149":-0.2975334105,"3150":-0.3,"3151":-0.2975334105,"3152":-0.2950668211,"3153":-0.2876767872,"3154":-0.2802867533,"3155":-0.2680024401,"3156":-0.2557181268,"3157":-0.2385880148,"3158":-0.2214579028,"3159":-0.1995495968,"3160":-0.1776412907,"3161":-0.1510412527,"3162":-0.1244412147,"3163":-0.0932544229,"3164":-0.0620676312,"3165":-0.0264171656,"3166":0.0092332999,"3167":0.0492067431,"3168":0.0891801862,"3169":0.1333188502,"3170":0.1774575141,"3171":0.2255872036,"3172":0.2737168931,"3173":0.3256476623,"3174":0.3775784314,"3175":0.4331053333,"3176":0.4886322352,"3177":0.5475361304,"3178":0.6064400256,"3179":0.6684884474,"3180":0.7305368693,"3181":0.7954849409,"3182":0.8604330126,"3183":0.9280244136,"3184":0.9956158147,"3185":1.0655837929,"3186":1.1355517711,"3187":1.2076201947,"3188":1.2796886183,"3189":1.3535730662,"3190":1.4274575141,"3191":1.5028663981,"3192":1.5782752821,"3193":1.6549109978,"3194":1.7315467135,"3195":1.8091068148,"3196":1.8866669161,"3197":1.9648453086,"3198":2.0430237012,"3199":2.1215118506,"3200":2.2,"3201":2.2784881494,"3202":2.3569762988,"3203":2.4351546914,"3204":2.5133330839,"3205":2.5908931852,"3206":2.6684532865,"3207":2.7450890022,"3208":2.8217247179,"3209":2.8971336019,"3210":2.9725424859,"3211":3.0464269338,"3212":3.1203113817,"3213":3.1923798053,"3214":3.2644482289,"3215":3.3344162071,"3216":3.4043841853,"3217":3.4719755864,"3218":3.5395669874,"3219":3.6045150591,"3220":3.6694631307,"3221":3.7315115526,"3222":3.7935599744,"3223":3.8524638696,"3224":3.9113677648,"3225":3.9668946667,"3226":4.0224215686,"3227":4.0743523377,"3228":4.1262831069,"3229":4.1744127964,"3230":4.2225424859,"3231":4.2666811498,"3232":4.3108198138,"3233":4.3507932569,"3234":4.3907667001,"3235":4.4264171656,"3236":4.4620676312,"3237":4.4932544229,"3238":4.5244412147,"3239":4.5510412527,"3240":4.5776412907,"3241":4.5995495968,"3242":4.6214579028,"3243":4.6385880148,"3244":4.6557181268,"3245":4.6680024401,"3246":4.6802867533,"3247":4.6876767872,"3248":4.6950668211,"3249":4.6975334105,"3250":4.7,"3251":4.6975334105,"3252":4.6950668211,"3253":4.6876767872,"3254":4.6802867533,"3255":4.6680024401,"3256":4.6557181268,"3257":4.6385880148,"3258":4.6214579028,"3259":4.5995495968,"3260":4.5776412907,"3261":4.5510412527,"3262":4.5244412147,"3263":4.4932544229,"3264":4.4620676312,"3265":4.4264171656,"3266":4.3907667001,"3267":4.3507932569,"3268":4.3108198138,"3269":4.2666811498,"3270":4.2225424859,"3271":4.1744127964,"3272":4.1262831069,"3273":4.0743523377,"3274":4.0224215686,"3275":3.9668946667,"3276":3.9113677648,"3277":3.8524638696,"3278":3.7935599744,"3279":3.7315115526,"3280":3.6694631307,"3281":3.6045150591,"3282":3.5395669874,"3283":3.4719755864,"3284":3.4043841853,"3285":3.3344162071,"3286":3.2644482289,"3287":3.1923798053,"3288":3.1203113817,"3289":3.0464269338,"3290":2.9725424859,"3291":2.8971336019,"3292":2.8217247179,"3293":2.7450890022,"3294":2.6684532865,"3295":2.5908931852,"3296":2.5133330839,"3297":2.4351546914,"3298":2.3569762988,"3299":2.2784881494,"3300":2.2,"3301":2.1215118506,"3302":2.0430237012,"3303":1.9648453086,"3304":1.8866669161,"3305":1.8091068148,"3306":1.7315467135,"3307":1.6549109978,"3308":1.5782752821,"3309":1.5028663981,"3310":1.4274575141,"3311":1.3535730662,"3312":1.2796886183,"3313":1.2076201947,"3314":1.1355517711,"3315":1.0655837929,"3316":0.9956158147,"3317":0.9280244136,"3318":0.8604330126,"3319":0.7954849409,"3320":0.7305368693,"3321":0.6684884474,"3322":0.6064400256,"3323":0.5475361304,"3324":0.4886322352,"3325":0.4331053333,"3326":0.3775784314,"3327":0.3256476623,"3328":0.2737168931,"3329":0.2255872036,"3330":0.1774575141,"3331":0.1333188502,"3332":0.0891801862,"3333":0.0492067431,"3334":0.0092332999,"3335":-0.0264171656,"3336":-0.0620676312,"3337":-0.0932544229,"3338":-0.1244412147,"3339":-0.1510412527,"3340":-0.1776412907,"3341":-0.1995495968,"3342":-0.2214579028,"3343":-0.2385880148,"3344":-0.2557181268,"3345":-0.2680024401,"3346":-0.2802867533,"3347":-0.2876767872,"3348":-0.2950668211,"3349":-0.2975334105,"3350":-0.3,"3351":-0.2975334105,"3352":-0.2950668211,"3353":-0.2876767872,"3354":-0.2802867533,"3355":-0.2680024401,"3356":-0.2557181268,"3357":-0.2385880148,"3358":-0.2214579028,"3359":-0.1995495968,"3360":-0.1776412907,"3361":-0.1510412527,"3362":-0.1244412147,"3363":-0.0932544229,"3364":-0.0620676312,"3365":-0.0264171656,"3366":0.0092332999,"3367":0.0492067431,"3368":0.0891801862,"3369":0.1333188502,"3370":0.1774575141,"3371":0.2255872036,"3372":0.2737168931,"3373":0.3256476623,"3374":0.3775784314,"3375":0.4331053333,"3376":0.4886322352,"3377":0.5475361304,"3378":0.6064400256,"3379":0.6684884474,"3380":0.7305368693,"3381":0.7954849409,"3382":0.8604330126,"3383":0.9280244136,"3384":0.9956158147,"3385":1.0655837929,"3386":1.1355517711,"3387":1.2076201947,"3388":1.2796886183,"3389":1.3535730662,"3390":1.4274575141,"3391":1.5028663981,"3392":1.5782752821,"3393":1.6549109978,"3394":1.7315467135,"3395":1.8091068148,"3396":1.8866669161,"3397":1.9648453086,"3398":2.0430237012,"3399":2.1215118506,"3400":2.2,"3401":2.2784881494,"3402":2.3569762988,"3403":2.4351546914,"3404":2.5133330839,"3405":2.5908931852,"3406":2.6684532865,"3407":2.7450890022,"3408":2.8217247179,"3409":2.8971336019,"3410":2.9725424859,"3411":3.0464269338,"3412":3.1203113817,"3413":3.1923798053,"3414":3.2644482289,"3415":3.3344162071,"3416":3.4043841853,"3417":3.4719755864,"3418":3.5395669874,"3419":3.6045150591,"3420":3.6694631307,"3421":3.7315115526,"3422":3.7935599744,"3423":3.8524638696,"3424":3.9113677648,"3425":3.9668946667,"3426":4.0224215686,"3427":4.0743523377,"3428":4.1262831069,"3429":4.1744127964,"3430":4.2225424859,"3431":4.2666811498,"3432":4.3108198138,"3433":4.3507932569,"3434":4.3907667001,"3435":4.4264171656,"3436":4.4620676312,"3437":4.4932544229,"3438":4.5244412147,"3439":4.5510412527,"3440":4.5776412907,"3441":4.5995495968,"3442":4.6214579028,"3443":4.6385880148,"3444":4.6557181268,"3445":4.6680024401,"3446":4.6802867533,"3447":4.6876767872,"3448":4.6950668211,"3449":4.6975334105,"3450":4.7,"3451":4.6975334105,"3452":4.6950668211,"3453":4.6876767872,"3454":4.6802867533,"3455":4.6680024401,"3456":4.6557181268,"3457":4.6385880148,"3458":4.6214579028,"3459":4.5995495968,"3460":4.5776412907,"3461":4.5510412527,"3462":4.5244412147,"3463":4.4932544229,"3464":4.4620676312,"3465":4.4264171656,"3466":4.3907667001,"3467":4.3507932569,"3468":4.3108198138,"3469":4.2666811498,"3470":4.2225424859,"3471":4.1744127964,"3472":4.1262831069,"3473":4.0743523377,"3474":4.0224215686,"3475":3.9668946667,"3476":3.9113677648,"3477":3.8524638696,"3478":3.7935599744,"3479":3.7315115526,"3480":3.6694631307,"3481":3.6045150591,"3482":3.5395669874,"3483":3.4719755864,"3484":3.4043841853,"3485":3.3344162071,"3486":3.2644482289,"3487":3.1923798053,"3488":3.1203113817,"3489":3.0464269338,"3490":2.9725424859,"3491":2.8971336019,"3492":2.8217247179,"3493":2.7450890022,"3494":2.6684532865,"3495":2.5908931852,"3496":2.5133330839,"3497":2.4351546914,"3498":2.3569762988,"3499":2.2784881494,"3500":2.2,"3501":2.1215118506,"3502":2.0430237012,"3503":1.9648453086,"3504":1.8866669161,"3505":1.8091068148,"3506":1.7315467135,"3507":1.6549109978,"3508":1.5782752821,"3509":1.5028663981,"3510":1.4274575141,"3511":1.3535730662,"3512":1.2796886183,"3513":1.2076201947,"3514":1.1355517711,"3515":1.0655837929,"3516":0.9956158147,"3517":0.9280244136,"3518":0.8604330126,"3519":0.7954849409,"3520":0.7305368693,"3521":0.6684884474,"3522":0.6064400256,"3523":0.5475361304,"3524":0.4886322352,"3525":0.4331053333,"3526":0.3775784314,"3527":0.3256476623,"3528":0.2737168931,"3529":0.2255872036,"3530":0.1774575141,"3531":0.1333188502,"3532":0.0891801862,"3533":0.0492067431,"3534":0.0092332999,"3535":-0.0264171656,"3536":-0.0620676312,"3537":-0.0932544229,"3538":-0.1244412147,"3539":-0.1510412527,"3540":-0.1776412907,"3541":-0.1995495968,"3542":-0.2214579028,"3543":-0.2385880148,"3544":-0.2557181268,"3545":-0.2680024401,"3546":-0.2802867533,"3547":-0.2876767872,"3548":-0.2950668211,"3549":-0.2975334105,"3550":-0.3,"3551":-0.2975334105,"3552":-0.2950668211,"3553":-0.2876767872,"3554":-0.2802867533,"3555":-0.2680024401,"3556":-0.2557181268,"3557":-0.2385880148,"3558":-0.2214579028,"3559":-0.1995495968,"3560":-0.1776412907,"3561":-0.1510412527,"3562":-0.1244412147,"3563":-0.0932544229,"3564":-0.0620676312,"3565":-0.0264171656,"3566":0.0092332999,"3567":0.0492067431,"3568":0.0891801862,"3569":0.1333188502,"3570":0.1774575141,"3571":0.2255872036,"3572":0.2737168931,"3573":0.3256476623,"3574":0.3775784314,"3575":0.4331053333,"3576":0.4886322352,"3577":0.5475361304,"3578":0.6064400256,"3579":0.6684884474,"3580":0.7305368693,"3581":0.7954849409,"3582":0.8604330126,"3583":0.9280244136,"3584":0.9956158147,"3585":1.0655837929,"3586":1.1355517711,"3587":1.2076201947,"3588":1.2796886183,"3589":1.3535730662,"3590":1.4274575141,"3591":1.5028663981,"3592":1.5782752821,"3593":1.6549109978,"3594":1.7315467135,"3595":1.8091068148,"3596":1.8866669161,"3597":1.9648453086,"3598":2.0430237012,"3599":2.1215118506,"3600":2.2,"3601":2.2784881494,"3602":2.3569762988,"3603":2.4351546914,"3604":2.5133330839,"3605":2.5908931852,"3606":2.6684532865,"3607":2.7450890022,"3608":2.8217247179,"3609":2.8971336019,"3610":2.9725424859,"3611":3.0464269338,"3612":3.1203113817,"3613":3.1923798053,"3614":3.2644482289,"3615":3.3344162071,"3616":3.4043841853,"3617":3.4719755864,"3618":3.5395669874,"3619":3.6045150591,"3620":3.6694631307,"3621":3.7315115526,"3622":3.7935599744,"3623":3.8524638696,"3624":3.9113677648,"3625":3.9668946667,"3626":4.0224215686,"3627":4.0743523377,"3628":4.1262831069,"3629":4.1744127964,"3630":4.2225424859,"3631":4.2666811498,"3632":4.3108198138,"3633":4.3507932569,"3634":4.3907667001,"3635":4.4264171656,"3636":4.4620676312,"3637":4.4932544229,"3638":4.5244412147,"3639":4.5510412527,"3640":4.5776412907,"3641":4.5995495968,"3642":4.6214579028,"3643":4.6385880148,"3644":4.6557181268,"3645":4.6680024401,"3646":4.6802867533,"3647":4.6876767872,"3648":4.6950668211,"3649":4.6975334105,"3650":4.7,"3651":4.6975334105,"3652":4.6950668211,"3653":4.6876767872,"3654":4.6802867533,"3655":4.6680024401,"3656":4.6557181268,"3657":4.6385880148,"3658":4.6214579028,"3659":4.5995495968,"3660":4.5776412907,"3661":4.5510412527,"3662":4.5244412147,"3663":4.4932544229,"3664":4.4620676312,"3665":4.4264171656,"3666":4.3907667001,"3667":4.3507932569,"3668":4.3108198138,"3669":4.2666811498,"3670":4.2225424859,"3671":4.1744127964,"3672":4.1262831069,"3673":4.0743523377,"3674":4.0224215686,"3675":3.9668946667,"3676":3.9113677648,"3677":3.8524638696,"3678":3.7935599744,"3679":3.7315115526,"3680":3.6694631307,"3681":3.6045150591,"3682":3.5395669874,"3683":3.4719755864,"3684":3.4043841853,"3685":3.3344162071,"3686":3.2644482289,"3687":3.1923798053,"3688":3.1203113817,"3689":3.0464269338,"3690":2.9725424859,"3691":2.8971336019,"3692":2.8217247179,"3693":2.7450890022,"3694":2.6684532865,"3695":2.5908931852,"3696":2.5133330839,"3697":2.4351546914,"3698":2.3569762988,"3699":2.2784881494,"3700":2.2,"3701":2.1215118506,"3702":2.0430237012,"3703":1.9648453086,"3704":1.8866669161,"3705":1.8091068148,"3706":1.7315467135,"3707":1.6549109978,"3708":1.5782752821,"3709":1.5028663981,"3710":1.4274575141,"3711":1.3535730662,"3712":1.2796886183,"3713":1.2076201947,"3714":1.1355517711,"3715":1.0655837929,"3716":0.9956158147,"3717":0.9280244136,"3718":0.8604330126,"3719":0.7954849409,"3720":0.7305368693,"3721":0.6684884474,"3722":0.6064400256,"3723":0.5475361304,"3724":0.4886322352,"3725":0.4331053333,"3726":0.3775784314,"3727":0.3256476623,"3728":0.2737168931,"3729":0.2255872036,"3730":0.1774575141,"3731":0.1333188502,"3732":0.0891801862,"3733":0.0492067431,"3734":0.0092332999,"3735":-0.0264171656,"3736":-0.0620676312,"3737":-0.0932544229,"3738":-0.1244412147,"3739":-0.1510412527,"3740":-0.1776412907,"3741":-0.1995495968,"3742":-0.2214579028,"3743":-0.2385880148,"3744":-0.2557181268,"3745":-0.2680024401,"3746":-0.2802867533,"3747":-0.2876767872,"3748":-0.2950668211,"3749":-0.2975334105,"3750":-0.3,"3751":-0.2975334105,"3752":-0.2950668211,"3753":-0.2876767872,"3754":-0.2802867533,"3755":-0.2680024401,"3756":-0.2557181268,"3757":-0.2385880148,"3758":-0.2214579028,"3759":-0.1995495968,"3760":-0.1776412907,"3761":-0.1510412527,"3762":-0.1244412147,"3763":-0.0932544229,"3764":-0.0620676312,"3765":-0.0264171656,"3766":0.0092332999,"3767":0.0492067431,"3768":0.0891801862,"3769":0.1333188502,"3770":0.1774575141,"3771":0.2255872036,"3772":0.2737168931,"3773":0.3256476623,"3774":0.3775784314,"3775":0.4331053333,"3776":0.4886322352,"3777":0.5475361304,"3778":0.6064400256,"3779":0.6684884474,"3780":0.7305368693,"3781":0.7954849409,"3782":0.8604330126,"3783":0.9280244136,"3784":0.9956158147,"3785":1.0655837929,"3786":1.1355517711,"3787":1.2076201947,"3788":1.2796886183,"3789":1.3535730662,"3790":1.4274575141,"3791":1.5028663981,"3792":1.5782752821,"3793":1.6549109978,"3794":1.7315467135,"3795":1.8091068148,"3796":1.8866669161,"3797":1.9648453086,"3798":2.0430237012,"3799":2.1215118506,"3800":2.2,"3801":2.2784881494,"3802":2.3569762988,"3803":2.4351546914,"3804":2.5133330839,"3805":2.5908931852,"3806":2.6684532865,"3807":2.7450890022,"3808":2.8217247179,"3809":2.8971336019,"3810":2.9725424859,"3811":3.0464269338,"3812":3.1203113817,"3813":3.1923798053,"3814":3.2644482289,"3815":3.3344162071,"3816":3.4043841853,"3817":3.4719755864,"3818":3.5395669874,"3819":3.6045150591,"3820":3.6694631307,"3821":3.7315115526,"3822":3.7935599744,"3823":3.8524638696,"3824":3.9113677648,"3825":3.9668946667,"3826":4.0224215686,"3827":4.0743523377,"3828":4.1262831069,"3829":4.1744127964,"3830":4.2225424859,"3831":4.2666811498,"3832":4.3108198138,"3833":4.3507932569,"3834":4.3907667001,"3835":4.4264171656,"3836":4.4620676312,"3837":4.4932544229,"3838":4.5244412147,"3839":4.5510412527,"3840":4.5776412907,"3841":4.5995495968,"3842":4.6214579028,"3843":4.6385880148,"3844":4.6557181268,"3845":4.6680024401,"3846":4.6802867533,"3847":4.6876767872,"3848":4.6950668211,"3849":4.6975334105,"3850":4.7,"3851":4.6975334105,"3852":4.6950668211,"3853":4.6876767872,"3854":4.6802867533,"3855":4.6680024401,"3856":4.6557181268,"3857":4.6385880148,"3858":4.6214579028,"3859":4.5995495968,"3860":4.5776412907,"3861":4.5510412527,"3862":4.5244412147,"3863":4.4932544229,"3864":4.4620676312,"3865":4.4264171656,"3866":4.3907667001,"3867":4.3507932569,"3868":4.3108198138,"3869":4.2666811498,"3870":4.2225424859,"3871":4.1744127964,"3872":4.1262831069,"3873":4.0743523377,"3874":4.0224215686,"3875":3.9668946667,"3876":3.9113677648,"3877":3.8524638696,"3878":3.7935599744,"3879":3.7315115526,"3880":3.6694631307,"3881":3.6045150591,"3882":3.5395669874,"3883":3.4719755864,"3884":3.4043841853,"3885":3.3344162071,"3886":3.2644482289,"3887":3.1923798053,"3888":3.1203113817,"3889":3.0464269338,"3890":2.9725424859,"3891":2.8971336019,"3892":2.8217247179,"3893":2.7450890022,"3894":2.6684532865,"3895":2.5908931852,"3896":2.5133330839,"3897":2.4351546914,"3898":2.3569762988,"3899":2.2784881494,"3900":2.2,"3901":2.1215118506,"3902":2.0430237012,"3903":1.9648453086,"3904":1.8866669161,"3905":1.8091068148,"3906":1.7315467135,"3907":1.6549109978,"3908":1.5782752821,"3909":1.5028663981,"3910":1.4274575141,"3911":1.3535730662,"3912":1.2796886183,"3913":1.2076201947,"3914":1.1355517711,"3915":1.0655837929,"3916":0.9956158147,"3917":0.9280244136,"3918":0.8604330126,"3919":0.7954849409,"3920":0.7305368693,"3921":0.6684884474,"3922":0.6064400256,"3923":0.5475361304,"3924":0.4886322352,"3925":0.4331053333,"3926":0.3775784314,"3927":0.3256476623,"3928":0.2737168931,"3929":0.2255872036,"3930":0.1774575141,"3931":0.1333188502,"3932":0.0891801862,"3933":0.0492067431,"3934":0.0092332999,"3935":-0.0264171656,"3936":-0.0620676312,"3937":-0.0932544229,"3938":-0.1244412147,"3939":-0.1510412527,"3940":-0.1776412907,"3941":-0.1995495968,"3942":-0.2214579028,"3943":-0.2385880148,"3944":-0.2557181268,"3945":-0.2680024401,"3946":-0.2802867533,"3947":-0.2876767872,"3948":-0.2950668211,"3949":-0.2975334105,"3950":-0.3,"3951":-0.2975334105,"3952":-0.2950668211,"3953":-0.2876767872,"3954":-0.2802867533,"3955":-0.2680024401,"3956":-0.2557181268,"3957":-0.2385880148,"3958":-0.2214579028,"3959":-0.1995495968,"3960":-0.1776412907,"3961":-0.1510412527,"3962":-0.1244412147,"3963":-0.0932544229,"3964":-0.0620676312,"3965":-0.0264171656,"3966":0.0092332999,"3967":0.0492067431,"3968":0.0891801862,"3969":0.1333188502,"3970":0.1774575141,"3971":0.2255872036,"3972":0.2737168931,"3973":0.3256476623,"3974":0.3775784314,"3975":0.4331053333,"3976":0.4886322352,"3977":0.5475361304,"3978":0.6064400256,"3979":0.6684884474,"3980":0.7305368693,"3981":0.7954849409,"3982":0.8604330126,"3983":0.9280244136,"3984":0.9956158147,"3985":1.0655837929,"3986":1.1355517711,"3987":1.2076201947,"3988":1.2796886183,"3989":1.3535730662,"3990":1.4274575141,"3991":1.5028663981,"3992":1.5782752821,"3993":1.6549109978,"3994":1.7315467135,"3995":1.8091068148,"3996":1.8866669161,"3997":1.9648453086,"3998":2.0430237012,"3999":2.1215118506,"4000":2.2,"4001":2.2784881494,"4002":2.3569762988,"4003":2.4351546914,"4004":2.5133330839,"4005":2.5908931852,"4006":2.6684532865,"4007":2.7450890022,"4008":2.8217247179,"4009":2.8971336019,"4010":2.9725424859,"4011":3.0464269338,"4012":3.1203113817,"4013":3.1923798053,"4014":3.2644482289,"4015":3.3344162071,"4016":3.4043841853,"4017":3.4719755864,"4018":3.5395669874,"4019":3.6045150591,"4020":3.6694631307,"4021":3.7315115526,"4022":3.7935599744,"4023":3.8524638696,"4024":3.9113677648,"4025":3.9668946667,"4026":4.0224215686,"4027":4.0743523377,"4028":4.1262831069,"4029":4.1744127964,"4030":4.2225424859,"4031":4.2666811498,"4032":4.3108198138,"4033":4.3507932569,"4034":4.3907667001,"4035":4.4264171656,"4036":4.4620676312,"4037":4.4932544229,"4038":4.5244412147,"4039":4.5510412527,"4040":4.5776412907,"4041":4.5995495968,"4042":4.6214579028,"4043":4.6385880148,"4044":4.6557181268,"4045":4.6680024401,"4046":4.6802867533,"4047":4.6876767872,"4048":4.6950668211,"4049":4.6975334105,"4050":4.7,"4051":4.6975334105,"4052":4.6950668211,"4053":4.6876767872,"4054":4.6802867533,"4055":4.6680024401,"4056":4.6557181268,"4057":4.6385880148,"4058":4.6214579028,"4059":4.5995495968,"4060":4.5776412907,"4061":4.5510412527,"4062":4.5244412147,"4063":4.4932544229,"4064":4.4620676312,"4065":4.4264171656,"4066":4.3907667001,"4067":4.3507932569,"4068":4.3108198138,"4069":4.2666811498,"4070":4.2225424859,"4071":4.1744127964,"4072":4.1262831069,"4073":4.0743523377,"4074":4.0224215686,"4075":3.9668946667,"4076":3.9113677648,"4077":3.8524638696,"4078":3.7935599744,"4079":3.7315115526,"4080":3.6694631307,"4081":3.6045150591,"4082":3.5395669874,"4083":3.4719755864,"4084":3.4043841853,"4085":3.3344162071,"4086":3.2644482289,"4087":3.1923798053,"4088":3.1203113817,"4089":3.0464269338,"4090":2.9725424859,"4091":2.8971336019,"4092":2.8217247179,"4093":2.7450890022,"4094":2.6684532865,"4095":2.5908931852,"4096":2.5133330839,"4097":2.4351546914,"4098":2.3569762988,"4099":2.2784881494,"4100":2.2,"4101":2.1215118506,"4102":2.0430237012,"4103":1.9648453086,"4104":1.8866669161,"4105":1.8091068148,"4106":1.7315467135,"4107":1.6549109978,"4108":1.5782752821,"4109":1.5028663981,"4110":1.4274575141,"4111":1.3535730662,"4112":1.2796886183,"4113":1.2076201947,"4114":1.1355517711,"4115":1.0655837929,"4116":0.9956158147,"4117":0.9280244136,"4118":0.8604330126,"4119":0.7954849409,"4120":0.7305368693,"4121":0.6684884474,"4122":0.6064400256,"4123":0.5475361304,"4124":0.4886322352,"4125":0.4331053333,"4126":0.3775784314,"4127":0.3256476623,"4128":0.2737168931,"4129":0.2255872036,"4130":0.1774575141,"4131":0.1333188502,"4132":0.0891801862,"4133":0.0492067431,"4134":0.0092332999,"4135":-0.0264171656,"4136":-0.0620676312,"4137":-0.0932544229,"4138":-0.1244412147,"4139":-0.1510412527,"4140":-0.1776412907,"4141":-0.1995495968,"4142":-0.2214579028,"4143":-0.2385880148,"4144":-0.2557181268,"4145":-0.2680024401,"4146":-0.2802867533,"4147":-0.2876767872,"4148":-0.2950668211,"4149":-0.2975334105,"4150":-0.3,"4151":-0.2975334105,"4152":-0.2950668211,"4153":-0.2876767872,"4154":-0.2802867533,"4155":-0.2680024401,"4156":-0.2557181268,"4157":-0.2385880148,"4158":-0.2214579028,"4159":-0.1995495968,"4160":-0.1776412907,"4161":-0.1510412527,"4162":-0.1244412147,"4163":-0.0932544229,"4164":-0.0620676312,"4165":-0.0264171656,"4166":0.0092332999,"4167":0.0492067431,"4168":0.0891801862,"4169":0.1333188502,"4170":0.1774575141,"4171":0.2255872036,"4172":0.2737168931,"4173":0.3256476623,"4174":0.3775784314,"4175":0.4331053333,"4176":0.4886322352,"4177":0.5475361304,"4178":0.6064400256,"4179":0.6684884474,"4180":0.7305368693,"4181":0.7954849409,"4182":0.8604330126,"4183":0.9280244136,"4184":0.9956158147,"4185":1.0655837929,"4186":1.1355517711,"4187":1.2076201947,"4188":1.2796886183,"4189":1.3535730662,"4190":1.4274575141,"4191":1.5028663981,"4192":1.5782752821,"4193":1.6549109978,"4194":1.7315467135,"4195":1.8091068148,"4196":1.8866669161,"4197":1.9648453086,"4198":2.0430237012,"4199":2.1215118506,"4200":2.2,"4201":2.2784881494,"4202":2.3569762988,"4203":2.4351546914,"4204":2.5133330839,"4205":2.5908931852,"4206":2.6684532865,"4207":2.7450890022,"4208":2.8217247179,"4209":2.8971336019,"4210":2.9725424859,"4211":3.0464269338,"4212":3.1203113817,"4213":3.1923798053,"4214":3.2644482289,"4215":3.3344162071,"4216":3.4043841853,"4217":3.4719755864,"4218":3.5395669874,"4219":3.6045150591,"4220":3.6694631307,"4221":3.7315115526,"4222":3.7935599744,"4223":3.8524638696,"4224":3.9113677648,"4225":3.9668946667,"4226":4.0224215686,"4227":4.0743523377,"4228":4.1262831069,"4229":4.1744127964,"4230":4.2225424859,"4231":4.2666811498,"4232":4.3108198138,"4233":4.3507932569,"4234":4.3907667001,"4235":4.4264171656,"4236":4.4620676312,"4237":4.4932544229,"4238":4.5244412147,"4239":4.5510412527,"4240":4.5776412907,"4241":4.5995495968,"4242":4.6214579028,"4243":4.6385880148,"4244":4.6557181268,"4245":4.6680024401,"4246":4.6802867533,"4247":4.6876767872,"4248":4.6950668211,"4249":4.6975334105,"4250":4.7,"4251":4.6975334105,"4252":4.6950668211,"4253":4.6876767872,"4254":4.6802867533,"4255":4.6680024401,"4256":4.6557181268,"4257":4.6385880148,"4258":4.6214579028,"4259":4.5995495968,"4260":4.5776412907,"4261":4.5510412527,"4262":4.5244412147,"4263":4.4932544229,"4264":4.4620676312,"4265":4.4264171656,"4266":4.3907667001,"4267":4.3507932569,"4268":4.3108198138,"4269":4.2666811498,"4270":4.2225424859,"4271":4.1744127964,"4272":4.1262831069,"4273":4.0743523377,"4274":4.0224215686,"4275":3.9668946667,"4276":3.9113677648,"4277":3.8524638696,"4278":3.7935599744,"4279":3.7315115526,"4280":3.6694631307,"4281":3.6045150591,"4282":3.5395669874,"4283":3.4719755864,"4284":3.4043841853,"4285":3.3344162071,"4286":3.2644482289,"4287":3.1923798053,"4288":3.1203113817,"4289":3.0464269338,"4290":2.9725424859,"4291":2.8971336019,"4292":2.8217247179,"4293":2.7450890022,"4294":2.6684532865,"4295":2.5908931852,"4296":2.5133330839,"4297":2.4351546914,"4298":2.3569762988,"4299":2.2784881494,"4300":2.2,"4301":2.1215118506,"4302":2.0430237012,"4303":1.9648453086,"4304":1.8866669161,"4305":1.8091068148,"4306":1.7315467135,"4307":1.6549109978,"4308":1.5782752821,"4309":1.5028663981,"4310":1.4274575141,"4311":1.3535730662,"4312":1.2796886183,"4313":1.2076201947,"4314":1.1355517711,"4315":1.0655837929,"4316":0.9956158147,"4317":0.9280244136,"4318":0.8604330126,"4319":0.7954849409,"4320":0.7305368693,"4321":0.6684884474,"4322":0.6064400256,"4323":0.5475361304,"4324":0.4886322352,"4325":0.4331053333,"4326":0.3775784314,"4327":0.3256476623,"4328":0.2737168931,"4329":0.2255872036,"4330":0.1774575141,"4331":0.1333188502,"4332":0.0891801862,"4333":0.0492067431,"4334":0.0092332999,"4335":-0.0264171656,"4336":-0.0620676312,"4337":-0.0932544229,"4338":-0.1244412147,"4339":-0.1510412527,"4340":-0.1776412907,"4341":-0.1995495968,"4342":-0.2214579028,"4343":-0.2385880148,"4344":-0.2557181268,"4345":-0.2680024401,"4346":-0.2802867533,"4347":-0.2876767872,"4348":-0.2950668211,"4349":-0.2975334105,"4350":-0.3,"4351":-0.2975334105,"4352":-0.2950668211,"4353":-0.2876767872,"4354":-0.2802867533,"4355":-0.2680024401,"4356":-0.2557181268,"4357":-0.2385880148,"4358":-0.2214579028,"4359":-0.1995495968,"4360":-0.1776412907,"4361":-0.1510412527,"4362":-0.1244412147,"4363":-0.0932544229,"4364":-0.0620676312,"4365":-0.0264171656,"4366":0.0092332999,"4367":0.0492067431,"4368":0.0891801862,"4369":0.1333188502,"4370":0.1774575141,"4371":0.2255872036,"4372":0.2737168931,"4373":0.3256476623,"4374":0.3775784314,"4375":0.4331053333,"4376":0.4886322352,"4377":0.5475361304,"4378":0.6064400256,"4379":0.6684884474,"4380":0.7305368693,"4381":0.7954849409,"4382":0.8604330126,"4383":0.9280244136,"4384":0.9956158147,"4385":1.0655837929,"4386":1.1355517711,"4387":1.2076201947,"4388":1.2796886183,"4389":1.3535730662,"4390":1.4274575141,"4391":1.5028663981,"4392":1.5782752821,"4393":1.6549109978,"4394":1.7315467135,"4395":1.8091068148,"4396":1.8866669161,"4397":1.9648453086,"4398":2.0430237012,"4399":2.1215118506,"4400":2.2,"4401":2.2784881494,"4402":2.3569762988,"4403":2.4351546914,"4404":2.5133330839,"4405":2.5908931852,"4406":2.6684532865,"4407":2.7450890022,"4408":2.8217247179,"4409":2.8971336019,"4410":2.9725424859,"4411":3.0464269338,"4412":3.1203113817,"4413":3.1923798053,"4414":3.2644482289,"4415":3.3344162071,"4416":3.4043841853,"4417":3.4719755864,"4418":3.5395669874,"4419":3.6045150591,"4420":3.6694631307,"4421":3.7315115526,"4422":3.7935599744,"4423":3.8524638696,"4424":3.9113677648,"4425":3.9668946667,"4426":4.0224215686,"4427":4.0743523377,"4428":4.1262831069,"4429":4.1744127964,"4430":4.2225424859,"4431":4.2666811498,"4432":4.3108198138,"4433":4.3507932569,"4434":4.3907667001,"4435":4.4264171656,"4436":4.4620676312,"4437":4.4932544229,"4438":4.5244412147,"4439":4.5510412527,"4440":4.5776412907,"4441":4.5995495968,"4442":4.6214579028,"4443":4.6385880148,"4444":4.6557181268,"4445":4.6680024401,"4446":4.6802867533,"4447":4.6876767872,"4448":4.6950668211,"4449":4.6975334105,"4450":4.7,"4451":4.6975334105,"4452":4.6950668211,"4453":4.6876767872,"4454":4.6802867533,"4455":4.6680024401,"4456":4.6557181268,"4457":4.6385880148,"4458":4.6214579028,"4459":4.5995495968,"4460":4.5776412907,"4461":4.5510412527,"4462":4.5244412147,"4463":4.4932544229,"4464":4.4620676312,"4465":4.4264171656,"4466":4.3907667001,"4467":4.3507932569,"4468":4.3108198138,"4469":4.2666811498,"4470":4.2225424859,"4471":4.1744127964,"4472":4.1262831069,"4473":4.0743523377,"4474":4.0224215686,"4475":3.9668946667,"4476":3.9113677648,"4477":3.8524638696,"4478":3.7935599744,"4479":3.7315115526,"4480":3.6694631307,"4481":3.6045150591,"4482":3.5395669874,"4483":3.4719755864,"4484":3.4043841853,"4485":3.3344162071,"4486":3.2644482289,"4487":3.1923798053,"4488":3.1203113817,"4489":3.0464269338,"4490":2.9725424859,"4491":2.8971336019,"4492":2.8217247179,"4493":2.7450890022,"4494":2.6684532865,"4495":2.5908931852,"4496":2.5133330839,"4497":2.4351546914,"4498":2.3569762988,"4499":2.2784881494,"4500":2.2,"4501":2.1215118506,"4502":2.0430237012,"4503":1.9648453086,"4504":1.8866669161,"4505":1.8091068148,"4506":1.7315467135,"4507":1.6549109978,"4508":1.5782752821,"4509":1.5028663981,"4510":1.4274575141,"4511":1.3535730662,"4512":1.2796886183,"4513":1.2076201947,"4514":1.1355517711,"4515":1.0655837929,"4516":0.9956158147,"4517":0.9280244136,"4518":0.8604330126,"4519":0.7954849409,"4520":0.7305368693,"4521":0.6684884474,"4522":0.6064400256,"4523":0.5475361304,"4524":0.4886322352,"4525":0.4331053333,"4526":0.3775784314,"4527":0.3256476623,"4528":0.2737168931,"4529":0.2255872036,"4530":0.1774575141,"4531":0.1333188502,"4532":0.0891801862,"4533":0.0492067431,"4534":0.0092332999,"4535":-0.0264171656,"4536":-0.0620676312,"4537":-0.0932544229,"4538":-0.1244412147,"4539":-0.1510412527,"4540":-0.1776412907,"4541":-0.1995495968,"4542":-0.2214579028,"4543":-0.2385880148,"4544":-0.2557181268,"4545":-0.2680024401,"4546":-0.2802867533,"4547":-0.2876767872,"4548":-0.2950668211,"4549":-0.2975334105,"4550":-0.3,"4551":-0.2975334105,"4552":-0.2950668211,"4553":-0.2876767872,"4554":-0.2802867533,"4555":-0.2680024401,"4556":-0.2557181268,"4557":-0.2385880148,"4558":-0.2214579028,"4559":-0.1995495968,"4560":-0.1776412907,"4561":-0.1510412527,"4562":-0.1244412147,"4563":-0.0932544229,"4564":-0.0620676312,"4565":-0.0264171656,"4566":0.0092332999,"4567":0.0492067431,"4568":0.0891801862,"4569":0.1333188502,"4570":0.1774575141,"4571":0.2255872036,"4572":0.2737168931,"4573":0.3256476623,"4574":0.3775784314,"4575":0.4331053333,"4576":0.4886322352,"4577":0.5475361304,"4578":0.6064400256,"4579":0.6684884474,"4580":0.7305368693,"4581":0.7954849409,"4582":0.8604330126,"4583":0.9280244136,"4584":0.9956158147,"4585":1.0655837929,"4586":1.1355517711,"4587":1.2076201947,"4588":1.2796886183,"4589":1.3535730662,"4590":1.4274575141,"4591":1.5028663981,"4592":1.5782752821,"4593":1.6549109978,"4594":1.7315467135,"4595":1.8091068148,"4596":1.8866669161,"4597":1.9648453086,"4598":2.0430237012,"4599":2.1215118506,"4600":2.2,"4601":2.2784881494,"4602":2.3569762988,"4603":2.4351546914,"4604":2.5133330839,"4605":2.5908931852,"4606":2.6684532865,"4607":2.7450890022,"4608":2.8217247179,"4609":2.8971336019,"4610":2.9725424859,"4611":3.0464269338,"4612":3.1203113817,"4613":3.1923798053,"4614":3.2644482289,"4615":3.3344162071,"4616":3.4043841853,"4617":3.4719755864,"4618":3.5395669874,"4619":3.6045150591,"4620":3.6694631307,"4621":3.7315115526,"4622":3.7935599744,"4623":3.8524638696,"4624":3.9113677648,"4625":3.9668946667,"4626":4.0224215686,"4627":4.0743523377,"4628":4.1262831069,"4629":4.1744127964,"4630":4.2225424859,"4631":4.2666811498,"4632":4.3108198138,"4633":4.3507932569,"4634":4.3907667001,"4635":4.4264171656,"4636":4.4620676312,"4637":4.4932544229,"4638":4.5244412147,"4639":4.5510412527,"4640":4.5776412907,"4641":4.5995495968,"4642":4.6214579028,"4643":4.6385880148,"4644":4.6557181268,"4645":4.6680024401,"4646":4.6802867533,"4647":4.6876767872,"4648":4.6950668211,"4649":4.6975334105,"4650":4.7,"4651":4.6975334105,"4652":4.6950668211,"4653":4.6876767872,"4654":4.6802867533,"4655":4.6680024401,"4656":4.6557181268,"4657":4.6385880148,"4658":4.6214579028,"4659":4.5995495968,"4660":4.5776412907,"4661":4.5510412527,"4662":4.5244412147,"4663":4.4932544229,"4664":4.4620676312,"4665":4.4264171656,"4666":4.3907667001,"4667":4.3507932569,"4668":4.3108198138,"4669":4.2666811498,"4670":4.2225424859,"4671":4.1744127964,"4672":4.1262831069,"4673":4.0743523377,"4674":4.0224215686,"4675":3.9668946667,"4676":3.9113677648,"4677":3.8524638696,"4678":3.7935599744,"4679":3.7315115526,"4680":3.6694631307,"4681":3.6045150591,"4682":3.5395669874,"4683":3.4719755864,"4684":3.4043841853,"4685":3.3344162071,"4686":3.2644482289,"4687":3.1923798053,"4688":3.1203113817,"4689":3.0464269338,"4690":2.9725424859,"4691":2.8971336019,"4692":2.8217247179,"4693":2.7450890022,"4694":2.6684532865,"4695":2.5908931852,"4696":2.5133330839,"4697":2.4351546914,"4698":2.3569762988,"4699":2.2784881494,"4700":2.2,"4701":2.1215118506,"4702":2.0430237012,"4703":1.9648453086,"4704":1.8866669161,"4705":1.8091068148,"4706":1.7315467135,"4707":1.6549109978,"4708":1.5782752821,"4709":1.5028663981,"4710":1.4274575141,"4711":1.3535730662,"4712":1.2796886183,"4713":1.2076201947,"4714":1.1355517711,"4715":1.0655837929,"4716":0.9956158147,"4717":0.9280244136,"4718":0.8604330126,"4719":0.7954849409,"4720":0.7305368693,"4721":0.6684884474,"4722":0.6064400256,"4723":0.5475361304,"4724":0.4886322352,"4725":0.4331053333,"4726":0.3775784314,"4727":0.3256476623,"4728":0.2737168931,"4729":0.2255872036,"4730":0.1774575141,"4731":0.1333188502,"4732":0.0891801862,"4733":0.0492067431,"4734":0.0092332999,"4735":-0.0264171656,"4736":-0.0620676312,"4737":-0.0932544229,"4738":-0.1244412147,"4739":-0.1510412527,"4740":-0.1776412907,"4741":-0.1995495968,"4742":-0.2214579028,"4743":-0.2385880148,"4744":-0.2557181268,"4745":-0.2680024401,"4746":-0.2802867533,"4747":-0.2876767872,"4748":-0.2950668211,"4749":-0.2975334105,"4750":-0.3,"4751":-0.2975334105,"4752":-0.2950668211,"4753":-0.2876767872,"4754":-0.2802867533,"4755":-0.2680024401,"4756":-0.2557181268,"4757":-0.2385880148,"4758":-0.2214579028,"4759":-0.1995495968,"4760":-0.1776412907,"4761":-0.1510412527,"4762":-0.1244412147,"4763":-0.0932544229,"4764":-0.0620676312,"4765":-0.0264171656,"4766":0.0092332999,"4767":0.0492067431,"4768":0.0891801862,"4769":0.1333188502,"4770":0.1774575141,"4771":0.2255872036,"4772":0.2737168931,"4773":0.3256476623,"4774":0.3775784314,"4775":0.4331053333,"4776":0.4886322352,"4777":0.5475361304,"4778":0.6064400256,"4779":0.6684884474,"4780":0.7305368693,"4781":0.7954849409,"4782":0.8604330126,"4783":0.9280244136,"4784":0.9956158147,"4785":1.0655837929,"4786":1.1355517711,"4787":1.2076201947,"4788":1.2796886183,"4789":1.3535730662,"4790":1.4274575141,"4791":1.5028663981,"4792":1.5782752821,"4793":1.6549109978,"4794":1.7315467135,"4795":1.8091068148,"4796":1.8866669161,"4797":1.9648453086,"4798":2.0430237012,"4799":2.1215118506,"4800":2.2,"4801":2.2784881494,"4802":2.3569762988,"4803":2.4351546914,"4804":2.5133330839,"4805":2.5908931852,"4806":2.6684532865,"4807":2.7450890022,"4808":2.8217247179,"4809":2.8971336019,"4810":2.9725424859,"4811":3.0464269338,"4812":3.1203113817,"4813":3.1923798053,"4814":3.2644482289,"4815":3.3344162071,"4816":3.4043841853,"4817":3.4719755864,"4818":3.5395669874,"4819":3.6045150591,"4820":3.6694631307,"4821":3.7315115526,"4822":3.7935599744,"4823":3.8524638696,"4824":3.9113677648,"4825":3.9668946667,"4826":4.0224215686,"4827":4.0743523377,"4828":4.1262831069,"4829":4.1744127964,"4830":4.2225424859,"4831":4.2666811498,"4832":4.3108198138,"4833":4.3507932569,"4834":4.3907667001,"4835":4.4264171656,"4836":4.4620676312,"4837":4.4932544229,"4838":4.5244412147,"4839":4.5510412527,"4840":4.5776412907,"4841":4.5995495968,"4842":4.6214579028,"4843":4.6385880148,"4844":4.6557181268,"4845":4.6680024401,"4846":4.6802867533,"4847":4.6876767872,"4848":4.6950668211,"4849":4.6975334105,"4850":4.7,"4851":4.6975334105,"4852":4.6950668211,"4853":4.6876767872,"4854":4.6802867533,"4855":4.6680024401,"4856":4.6557181268,"4857":4.6385880148,"4858":4.6214579028,"4859":4.5995495968,"4860":4.5776412907,"4861":4.5510412527,"4862":4.5244412147,"4863":4.4932544229,"4864":4.4620676312,"4865":4.4264171656,"4866":4.3907667001,"4867":4.3507932569,"4868":4.3108198138,"4869":4.2666811498,"4870":4.2225424859,"4871":4.1744127964,"4872":4.1262831069,"4873":4.0743523377,"4874":4.0224215686,"4875":3.9668946667,"4876":3.9113677648,"4877":3.8524638696,"4878":3.7935599744,"4879":3.7315115526,"4880":3.6694631307,"4881":3.6045150591,"4882":3.5395669874,"4883":3.4719755864,"4884":3.4043841853,"4885":3.3344162071,"4886":3.2644482289,"4887":3.1923798053,"4888":3.1203113817,"4889":3.0464269338,"4890":2.9725424859,"4891":2.8971336019,"4892":2.8217247179,"4893":2.7450890022,"4894":2.6684532865,"4895":2.5908931852,"4896":2.5133330839,"4897":2.4351546914,"4898":2.3569762988,"4899":2.2784881494,"4900":2.2,"4901":2.1215118506,"4902":2.0430237012,"4903":1.9648453086,"4904":1.8866669161,"4905":1.8091068148,"4906":1.7315467135,"4907":1.6549109978,"4908":1.5782752821,"4909":1.5028663981,"4910":1.4274575141,"4911":1.3535730662,"4912":1.2796886183,"4913":1.2076201947,"4914":1.1355517711,"4915":1.0655837929,"4916":0.9956158147,"4917":0.9280244136,"4918":0.8604330126,"4919":0.7954849409,"4920":0.7305368693,"4921":0.6684884474,"4922":0.6064400256,"4923":0.5475361304,"4924":0.4886322352,"4925":0.4331053333,"4926":0.3775784314,"4927":0.3256476623,"4928":0.2737168931,"4929":0.2255872036,"4930":0.1774575141,"4931":0.1333188502,"4932":0.0891801862,"4933":0.0492067431,"4934":0.0092332999,"4935":-0.0264171656,"4936":-0.0620676312,"4937":-0.0932544229,"4938":-0.1244412147,"4939":-0.1510412527,"4940":-0.1776412907,"4941":-0.1995495968,"4942":-0.2214579028,"4943":-0.2385880148,"4944":-0.2557181268,"4945":-0.2680024401,"4946":-0.2802867533,"4947":-0.2876767872,"4948":-0.2950668211,"4949":-0.2975334105,"4950":-0.3,"4951":-0.2975334105,"4952":-0.2950668211,"4953":-0.2876767872,"4954":-0.2802867533,"4955":-0.2680024401,"4956":-0.2557181268,"4957":-0.2385880148,"4958":-0.2214579028,"4959":-0.1995495968,"4960":-0.1776412907,"4961":-0.1510412527,"4962":-0.1244412147,"4963":-0.0932544229,"4964":-0.0620676312,"4965":-0.0264171656,"4966":0.0092332999,"4967":0.0492067431,"4968":0.0891801862,"4969":0.1333188502,"4970":0.1774575141,"4971":0.2255872036,"4972":0.2737168931,"4973":0.3256476623,"4974":0.3775784314,"4975":0.4331053333,"4976":0.4886322352,"4977":0.5475361304,"4978":0.6064400256,"4979":0.6684884474,"4980":0.7305368693,"4981":0.7954849409,"4982":0.8604330126,"4983":0.9280244136,"4984":0.9956158147,"4985":1.0655837929,"4986":1.1355517711,"4987":1.2076201947,"4988":1.2796886183,"4989":1.3535730662,"4990":1.4274575141,"4991":1.5028663981,"4992":1.5782752821,"4993":1.6549109978,"4994":1.7315467135,"4995":1.8091068148,"4996":1.8866669161,"4997":1.9648453086,"4998":2.0430237012,"4999":2.1215118506,"5000":2.2,"5001":2.2784881494,"5002":2.3569762988,"5003":2.4351546914,"5004":2.5133330839,"5005":2.5908931852,"5006":2.6684532865,"5007":2.7450890022,"5008":2.8217247179,"5009":2.8971336019,"5010":2.9725424859,"5011":3.0464269338,"5012":3.1203113817,"5013":3.1923798053,"5014":3.2644482289,"5015":3.3344162071,"5016":3.4043841853,"5017":3.4719755864,"5018":3.5395669874,"5019":3.6045150591,"5020":3.6694631307,"5021":3.7315115526,"5022":3.7935599744,"5023":3.8524638696,"5024":3.9113677648,"5025":3.9668946667,"5026":4.0224215686,"5027":4.0743523377,"5028":4.1262831069,"5029":4.1744127964,"5030":4.2225424859,"5031":4.2666811498,"5032":4.3108198138,"5033":4.3507932569,"5034":4.3907667001,"5035":4.4264171656,"5036":4.4620676312,"5037":4.4932544229,"5038":4.5244412147,"5039":4.5510412527,"5040":4.5776412907,"5041":4.5995495968,"5042":4.6214579028,"5043":4.6385880148,"5044":4.6557181268,"5045":4.6680024401,"5046":4.6802867533,"5047":4.6876767872,"5048":4.6950668211,"5049":4.6975334105,"5050":4.7,"5051":4.6975334105,"5052":4.6950668211,"5053":4.6876767872,"5054":4.6802867533,"5055":4.6680024401,"5056":4.6557181268,"5057":4.6385880148,"5058":4.6214579028,"5059":4.5995495968,"5060":4.5776412907,"5061":4.5510412527,"5062":4.5244412147,"5063":4.4932544229,"5064":4.4620676312,"5065":4.4264171656,"5066":4.3907667001,"5067":4.3507932569,"5068":4.3108198138,"5069":4.2666811498,"5070":4.2225424859,"5071":4.1744127964,"5072":4.1262831069,"5073":4.0743523377,"5074":4.0224215686,"5075":3.9668946667,"5076":3.9113677648,"5077":3.8524638696,"5078":3.7935599744,"5079":3.7315115526,"5080":3.6694631307,"5081":3.6045150591,"5082":3.5395669874,"5083":3.4719755864,"5084":3.4043841853,"5085":3.3344162071,"5086":3.2644482289,"5087":3.1923798053,"5088":3.1203113817,"5089":3.0464269338,"5090":2.9725424859,"5091":2.8971336019,"5092":2.8217247179,"5093":2.7450890022,"5094":2.6684532865,"5095":2.5908931852,"5096":2.5133330839,"5097":2.4351546914,"5098":2.3569762988,"5099":2.2784881494,"5100":2.2,"5101":2.1215118506,"5102":2.0430237012,"5103":1.9648453086,"5104":1.8866669161,"5105":1.8091068148,"5106":1.7315467135,"5107":1.6549109978,"5108":1.5782752821,"5109":1.5028663981,"5110":1.4274575141,"5111":1.3535730662,"5112":1.2796886183,"5113":1.2076201947,"5114":1.1355517711,"5115":1.0655837929,"5116":0.9956158147,"5117":0.9280244136,"5118":0.8604330126,"5119":0.7954849409,"5120":0.7305368693,"5121":0.6684884474,"5122":0.6064400256,"5123":0.5475361304,"5124":0.4886322352,"5125":0.4331053333,"5126":0.3775784314,"5127":0.3256476623,"5128":0.2737168931,"5129":0.2255872036,"5130":0.1774575141,"5131":0.1333188502,"5132":0.0891801862,"5133":0.0492067431,"5134":0.0092332999,"5135":-0.0264171656,"5136":-0.0620676312,"5137":-0.0932544229,"5138":-0.1244412147,"5139":-0.1510412527,"5140":-0.1776412907,"5141":-0.1995495968,"5142":-0.2214579028,"5143":-0.2385880148,"5144":-0.2557181268,"5145":-0.2680024401,"5146":-0.2802867533,"5147":-0.2876767872,"5148":-0.2950668211,"5149":-0.2975334105,"5150":-0.3,"5151":-0.2975334105,"5152":-0.2950668211,"5153":-0.2876767872,"5154":-0.2802867533,"5155":-0.2680024401,"5156":-0.2557181268,"5157":-0.2385880148,"5158":-0.2214579028,"5159":-0.1995495968,"5160":-0.1776412907,"5161":-0.1510412527,"5162":-0.1244412147,"5163":-0.0932544229,"5164":-0.0620676312,"5165":-0.0264171656,"5166":0.0092332999,"5167":0.0492067431,"5168":0.0891801862,"5169":0.1333188502,"5170":0.1774575141,"5171":0.2255872036,"5172":0.2737168931,"5173":0.3256476623,"5174":0.3775784314,"5175":0.4331053333,"5176":0.4886322352,"5177":0.5475361304,"5178":0.6064400256,"5179":0.6684884474,"5180":0.7305368693,"5181":0.7954849409,"5182":0.8604330126,"5183":0.9280244136,"5184":0.9956158147,"5185":1.0655837929,"5186":1.1355517711,"5187":1.2076201947,"5188":1.2796886183,"5189":1.3535730662,"5190":1.4274575141,"5191":1.5028663981,"5192":1.5782752821,"5193":1.6549109978,"5194":1.7315467135,"5195":1.8091068148,"5196":1.8866669161,"5197":1.9648453086,"5198":2.0430237012,"5199":2.1215118506,"5200":2.2,"5201":2.2784881494,"5202":2.3569762988,"5203":2.4351546914,"5204":2.5133330839,"5205":2.5908931852,"5206":2.6684532865,"5207":2.7450890022,"5208":2.8217247179,"5209":2.8971336019,"5210":2.9725424859,"5211":3.0464269338,"5212":3.1203113817,"5213":3.1923798053,"5214":3.2644482289,"5215":3.3344162071,"5216":3.4043841853,"5217":3.4719755864,"5218":3.5395669874,"5219":3.6045150591,"5220":3.6694631307,"5221":3.7315115526,"5222":3.7935599744,"5223":3.8524638696,"5224":3.9113677648,"5225":3.9668946667,"5226":4.0224215686,"5227":4.0743523377,"5228":4.1262831069,"5229":4.1744127964,"5230":4.2225424859,"5231":4.2666811498,"5232":4.3108198138,"5233":4.3507932569,"5234":4.3907667001,"5235":4.4264171656,"5236":4.4620676312,"5237":4.4932544229,"5238":4.5244412147,"5239":4.5510412527,"5240":4.5776412907,"5241":4.5995495968,"5242":4.6214579028,"5243":4.6385880148,"5244":4.6557181268,"5245":4.6680024401,"5246":4.6802867533,"5247":4.6876767872,"5248":4.6950668211,"5249":4.6975334105,"5250":4.7,"5251":4.6975334105,"5252":4.6950668211,"5253":4.6876767872,"5254":4.6802867533,"5255":4.6680024401,"5256":4.6557181268,"5257":4.6385880148,"5258":4.6214579028,"5259":4.5995495968,"5260":4.5776412907,"5261":4.5510412527,"5262":4.5244412147,"5263":4.4932544229,"5264":4.4620676312,"5265":4.4264171656,"5266":4.3907667001,"5267":4.3507932569,"5268":4.3108198138,"5269":4.2666811498,"5270":4.2225424859,"5271":4.1744127964,"5272":4.1262831069,"5273":4.0743523377,"5274":4.0224215686,"5275":3.9668946667,"5276":3.9113677648,"5277":3.8524638696,"5278":3.7935599744,"5279":3.7315115526,"5280":3.6694631307,"5281":3.6045150591,"5282":3.5395669874,"5283":3.4719755864,"5284":3.4043841853,"5285":3.3344162071,"5286":3.2644482289,"5287":3.1923798053,"5288":3.1203113817,"5289":3.0464269338,"5290":2.9725424859,"5291":2.8971336019,"5292":2.8217247179,"5293":2.7450890022,"5294":2.6684532865,"5295":2.5908931852,"5296":2.5133330839,"5297":2.4351546914,"5298":2.3569762988,"5299":2.2784881494,"5300":2.2,"5301":2.1215118506,"5302":2.0430237012,"5303":1.9648453086,"5304":1.8866669161,"5305":1.8091068148,"5306":1.7315467135,"5307":1.6549109978,"5308":1.5782752821,"5309":1.5028663981,"5310":1.4274575141,"5311":1.3535730662,"5312":1.2796886183,"5313":1.2076201947,"5314":1.1355517711,"5315":1.0655837929,"5316":0.9956158147,"5317":0.9280244136,"5318":0.8604330126,"5319":0.7954849409,"5320":0.7305368693,"5321":0.6684884474,"5322":0.6064400256,"5323":0.5475361304,"5324":0.4886322352,"5325":0.4331053333,"5326":0.3775784314,"5327":0.3256476623,"5328":0.2737168931,"5329":0.2255872036,"5330":0.1774575141,"5331":0.1333188502,"5332":0.0891801862,"5333":0.0492067431,"5334":0.0092332999,"5335":-0.0264171656,"5336":-0.0620676312,"5337":-0.0932544229,"5338":-0.1244412147,"5339":-0.1510412527,"5340":-0.1776412907,"5341":-0.1995495968,"5342":-0.2214579028,"5343":-0.2385880148,"5344":-0.2557181268,"5345":-0.2680024401,"5346":-0.2802867533,"5347":-0.2876767872,"5348":-0.2950668211,"5349":-0.2975334105,"5350":-0.3,"5351":-0.2975334105,"5352":-0.2950668211,"5353":-0.2876767872,"5354":-0.2802867533,"5355":-0.2680024401,"5356":-0.2557181268,"5357":-0.2385880148,"5358":-0.2214579028,"5359":-0.1995495968,"5360":-0.1776412907,"5361":-0.1510412527,"5362":-0.1244412147,"5363":-0.0932544229,"5364":-0.0620676312,"5365":-0.0264171656,"5366":0.0092332999,"5367":0.0492067431,"5368":0.0891801862,"5369":0.1333188502,"5370":0.1774575141,"5371":0.2255872036,"5372":0.2737168931,"5373":0.3256476623,"5374":0.3775784314,"5375":0.4331053333,"5376":0.4886322352,"5377":0.5475361304,"5378":0.6064400256,"5379":0.6684884474,"5380":0.7305368693,"5381":0.7954849409,"5382":0.8604330126,"5383":0.9280244136,"5384":0.9956158147,"5385":1.0655837929,"5386":1.1355517711,"5387":1.2076201947,"5388":1.2796886183,"5389":1.3535730662,"5390":1.4274575141,"5391":1.5028663981,"5392":1.5782752821,"5393":1.6549109978,"5394":1.7315467135,"5395":1.8091068148,"5396":1.8866669161,"5397":1.9648453086,"5398":2.0430237012,"5399":2.1215118506,"5400":2.2,"5401":2.2784881494,"5402":2.3569762988,"5403":2.4351546914,"5404":2.5133330839,"5405":2.5908931852,"5406":2.6684532865,"5407":2.7450890022,"5408":2.8217247179,"5409":2.8971336019,"5410":2.9725424859,"5411":3.0464269338,"5412":3.1203113817,"5413":3.1923798053,"5414":3.2644482289,"5415":3.3344162071,"5416":3.4043841853,"5417":3.4719755864,"5418":3.5395669874,"5419":3.6045150591,"5420":3.6694631307,"5421":3.7315115526,"5422":3.7935599744,"5423":3.8524638696,"5424":3.9113677648,"5425":3.9668946667,"5426":4.0224215686,"5427":4.0743523377,"5428":4.1262831069,"5429":4.1744127964,"5430":4.2225424859,"5431":4.2666811498,"5432":4.3108198138,"5433":4.3507932569,"5434":4.3907667001,"5435":4.4264171656,"5436":4.4620676312,"5437":4.4932544229,"5438":4.5244412147,"5439":4.5510412527,"5440":4.5776412907,"5441":4.5995495968,"5442":4.6214579028,"5443":4.6385880148,"5444":4.6557181268,"5445":4.6680024401,"5446":4.6802867533,"5447":4.6876767872,"5448":4.6950668211,"5449":4.6975334105,"5450":4.7,"5451":4.6975334105,"5452":4.6950668211,"5453":4.6876767872,"5454":4.6802867533,"5455":4.6680024401,"5456":4.6557181268,"5457":4.6385880148,"5458":4.6214579028,"5459":4.5995495968,"5460":4.5776412907,"5461":4.5510412527,"5462":4.5244412147,"5463":4.4932544229,"5464":4.4620676312,"5465":4.4264171656,"5466":4.3907667001,"5467":4.3507932569,"5468":4.3108198138,"5469":4.2666811498,"5470":4.2225424859,"5471":4.1744127964,"5472":4.1262831069,"5473":4.0743523377,"5474":4.0224215686,"5475":3.9668946667,"5476":3.9113677648,"5477":3.8524638696,"5478":3.7935599744,"5479":3.7315115526,"5480":3.6694631307,"5481":3.6045150591,"5482":3.5395669874,"5483":3.4719755864,"5484":3.4043841853,"5485":3.3344162071,"5486":3.2644482289,"5487":3.1923798053,"5488":3.1203113817,"5489":3.0464269338,"5490":2.9725424859,"5491":2.8971336019,"5492":2.8217247179,"5493":2.7450890022,"5494":2.6684532865,"5495":2.5908931852,"5496":2.5133330839,"5497":2.4351546914,"5498":2.3569762988,"5499":2.2784881494,"5500":2.2,"5501":2.1215118506,"5502":2.0430237012,"5503":1.9648453086,"5504":1.8866669161,"5505":1.8091068148,"5506":1.7315467135,"5507":1.6549109978,"5508":1.5782752821,"5509":1.5028663981,"5510":1.4274575141,"5511":1.3535730662,"5512":1.2796886183,"5513":1.2076201947,"5514":1.1355517711,"5515":1.0655837929,"5516":0.9956158147,"5517":0.9280244136,"5518":0.8604330126,"5519":0.7954849409,"5520":0.7305368693,"5521":0.6684884474,"5522":0.6064400256,"5523":0.5475361304,"5524":0.4886322352,"5525":0.4331053333,"5526":0.3775784314,"5527":0.3256476623,"5528":0.2737168931,"5529":0.2255872036,"5530":0.1774575141,"5531":0.1333188502,"5532":0.0891801862,"5533":0.0492067431,"5534":0.0092332999,"5535":-0.0264171656,"5536":-0.0620676312,"5537":-0.0932544229,"5538":-0.1244412147,"5539":-0.1510412527,"5540":-0.1776412907,"5541":-0.1995495968,"5542":-0.2214579028,"5543":-0.2385880148,"5544":-0.2557181268,"5545":-0.2680024401,"5546":-0.2802867533,"5547":-0.2876767872,"5548":-0.2950668211,"5549":-0.2975334105,"5550":-0.3,"5551":-0.2975334105,"5552":-0.2950668211,"5553":-0.2876767872,"5554":-0.2802867533,"5555":-0.2680024401,"5556":-0.2557181268,"5557":-0.2385880148,"5558":-0.2214579028,"5559":-0.1995495968,"5560":-0.1776412907,"5561":-0.1510412527,"5562":-0.1244412147,"5563":-0.0932544229,"5564":-0.0620676312,"5565":-0.0264171656,"5566":0.0092332999,"5567":0.0492067431,"5568":0.0891801862,"5569":0.1333188502,"5570":0.1774575141,"5571":0.2255872036,"5572":0.2737168931,"5573":0.3256476623,"5574":0.3775784314,"5575":0.4331053333,"5576":0.4886322352,"5577":0.5475361304,"5578":0.6064400256,"5579":0.6684884474,"5580":0.7305368693,"5581":0.7954849409,"5582":0.8604330126,"5583":0.9280244136,"5584":0.9956158147,"5585":1.0655837929,"5586":1.1355517711,"5587":1.2076201947,"5588":1.2796886183,"5589":1.3535730662,"5590":1.4274575141,"5591":1.5028663981,"5592":1.5782752821,"5593":1.6549109978,"5594":1.7315467135,"5595":1.8091068148,"5596":1.8866669161,"5597":1.9648453086,"5598":2.0430237012,"5599":2.1215118506,"5600":2.2,"5601":2.2784881494,"5602":2.3569762988,"5603":2.4351546914,"5604":2.5133330839,"5605":2.5908931852,"5606":2.6684532865,"5607":2.7450890022,"5608":2.8217247179,"5609":2.8971336019,"5610":2.9725424859,"5611":3.0464269338,"5612":3.1203113817,"5613":3.1923798053,"5614":3.2644482289,"5615":3.3344162071,"5616":3.4043841853,"5617":3.4719755864,"5618":3.5395669874,"5619":3.6045150591,"5620":3.6694631307,"5621":3.7315115526,"5622":3.7935599744,"5623":3.8524638696,"5624":3.9113677648,"5625":3.9668946667,"5626":4.0224215686,"5627":4.0743523377,"5628":4.1262831069,"5629":4.1744127964,"5630":4.2225424859,"5631":4.2666811498,"5632":4.3108198138,"5633":4.3507932569,"5634":4.3907667001,"5635":4.4264171656,"5636":4.4620676312,"5637":4.4932544229,"5638":4.5244412147,"5639":4.5510412527,"5640":4.5776412907,"5641":4.5995495968,"5642":4.6214579028,"5643":4.6385880148,"5644":4.6557181268,"5645":4.6680024401,"5646":4.6802867533,"5647":4.6876767872,"5648":4.6950668211,"5649":4.6975334105,"5650":4.7,"5651":4.6975334105,"5652":4.6950668211,"5653":4.6876767872,"5654":4.6802867533,"5655":4.6680024401,"5656":4.6557181268,"5657":4.6385880148,"5658":4.6214579028,"5659":4.5995495968,"5660":4.5776412907,"5661":4.5510412527,"5662":4.5244412147,"5663":4.4932544229,"5664":4.4620676312,"5665":4.4264171656,"5666":4.3907667001,"5667":4.3507932569,"5668":4.3108198138,"5669":4.2666811498,"5670":4.2225424859,"5671":4.1744127964,"5672":4.1262831069,"5673":4.0743523377,"5674":4.0224215686,"5675":3.9668946667,"5676":3.9113677648,"5677":3.8524638696,"5678":3.7935599744,"5679":3.7315115526,"5680":3.6694631307,"5681":3.6045150591,"5682":3.5395669874,"5683":3.4719755864,"5684":3.4043841853,"5685":3.3344162071,"5686":3.2644482289,"5687":3.1923798053,"5688":3.1203113817,"5689":3.0464269338,"5690":2.9725424859,"5691":2.8971336019,"5692":2.8217247179,"5693":2.7450890022,"5694":2.6684532865,"5695":2.5908931852,"5696":2.5133330839,"5697":2.4351546914,"5698":2.3569762988,"5699":2.2784881494,"5700":2.2,"5701":2.1215118506,"5702":2.0430237012,"5703":1.9648453086,"5704":1.8866669161,"5705":1.8091068148,"5706":1.7315467135,"5707":1.6549109978,"5708":1.5782752821,"5709":1.5028663981,"5710":1.4274575141,"5711":1.3535730662,"5712":1.2796886183,"5713":1.2076201947,"5714":1.1355517711,"5715":1.0655837929,"5716":0.9956158147,"5717":0.9280244136,"5718":0.8604330126,"5719":0.7954849409,"5720":0.7305368693,"5721":0.6684884474,"5722":0.6064400256,"5723":0.5475361304,"5724":0.4886322352,"5725":0.4331053333,"5726":0.3775784314,"5727":0.3256476623,"5728":0.2737168931,"5729":0.2255872036,"5730":0.1774575141,"5731":0.1333188502,"5732":0.0891801862,"5733":0.0492067431,"5734":0.0092332999,"5735":-0.0264171656,"5736":-0.0620676312,"5737":-0.0932544229,"5738":-0.1244412147,"5739":-0.1510412527,"5740":-0.1776412907,"5741":-0.1995495968,"5742":-0.2214579028,"5743":-0.2385880148,"5744":-0.2557181268,"5745":-0.2680024401,"5746":-0.2802867533,"5747":-0.2876767872,"5748":-0.2950668211,"5749":-0.2975334105,"5750":-0.3,"5751":-0.2975334105,"5752":-0.2950668211,"5753":-0.2876767872,"5754":-0.2802867533,"5755":-0.2680024401,"5756":-0.2557181268,"5757":-0.2385880148,"5758":-0.2214579028,"5759":-0.1995495968,"5760":-0.1776412907,"5761":-0.1510412527,"5762":-0.1244412147,"5763":-0.0932544229,"5764":-0.0620676312,"5765":-0.0264171656,"5766":0.0092332999,"5767":0.0492067431,"5768":0.0891801862,"5769":0.1333188502,"5770":0.1774575141,"5771":0.2255872036,"5772":0.2737168931,"5773":0.3256476623,"5774":0.3775784314,"5775":0.4331053333,"5776":0.4886322352,"5777":0.5475361304,"5778":0.6064400256,"5779":0.6684884474,"5780":0.7305368693,"5781":0.7954849409,"5782":0.8604330126,"5783":0.9280244136,"5784":0.9956158147,"5785":1.0655837929,"5786":1.1355517711,"5787":1.2076201947,"5788":1.2796886183,"5789":1.3535730662,"5790":1.4274575141,"5791":1.5028663981,"5792":1.5782752821,"5793":1.6549109978,"5794":1.7315467135,"5795":1.8091068148,"5796":1.8866669161,"5797":1.9648453086,"5798":2.0430237012,"5799":2.1215118506,"5800":2.2,"5801":2.2784881494,"5802":2.3569762988,"5803":2.4351546914,"5804":2.5133330839,"5805":2.5908931852,"5806":2.6684532865,"5807":2.7450890022,"5808":2.8217247179,"5809":2.8971336019,"5810":2.9725424859,"5811":3.0464269338,"5812":3.1203113817,"5813":3.1923798053,"5814":3.2644482289,"5815":3.3344162071,"5816":3.4043841853,"5817":3.4719755864,"5818":3.5395669874,"5819":3.6045150591,"5820":3.6694631307,"5821":3.7315115526,"5822":3.7935599744,"5823":3.8524638696,"5824":3.9113677648,"5825":3.9668946667,"5826":4.0224215686,"5827":4.0743523377,"5828":4.1262831069,"5829":4.1744127964,"5830":4.2225424859,"5831":4.2666811498,"5832":4.3108198138,"5833":4.3507932569,"5834":4.3907667001,"5835":4.4264171656,"5836":4.4620676312,"5837":4.4932544229,"5838":4.5244412147,"5839":4.5510412527,"5840":4.5776412907,"5841":4.5995495968,"5842":4.6214579028,"5843":4.6385880148,"5844":4.6557181268,"5845":4.6680024401,"5846":4.6802867533,"5847":4.6876767872,"5848":4.6950668211,"5849":4.6975334105,"5850":4.7,"5851":4.6975334105,"5852":4.6950668211,"5853":4.6876767872,"5854":4.6802867533,"5855":4.6680024401,"5856":4.6557181268,"5857":4.6385880148,"5858":4.6214579028,"5859":4.5995495968,"5860":4.5776412907,"5861":4.5510412527,"5862":4.5244412147,"5863":4.4932544229,"5864":4.4620676312,"5865":4.4264171656,"5866":4.3907667001,"5867":4.3507932569,"5868":4.3108198138,"5869":4.2666811498,"5870":4.2225424859,"5871":4.1744127964,"5872":4.1262831069,"5873":4.0743523377,"5874":4.0224215686,"5875":3.9668946667,"5876":3.9113677648,"5877":3.8524638696,"5878":3.7935599744,"5879":3.7315115526,"5880":3.6694631307,"5881":3.6045150591,"5882":3.5395669874,"5883":3.4719755864,"5884":3.4043841853,"5885":3.3344162071,"5886":3.2644482289,"5887":3.1923798053,"5888":3.1203113817,"5889":3.0464269338,"5890":2.9725424859,"5891":2.8971336019,"5892":2.8217247179,"5893":2.7450890022,"5894":2.6684532865,"5895":2.5908931852,"5896":2.5133330839,"5897":2.4351546914,"5898":2.3569762988,"5899":2.2784881494,"5900":2.2,"5901":2.1215118506,"5902":2.0430237012,"5903":1.9648453086,"5904":1.8866669161,"5905":1.8091068148,"5906":1.7315467135,"5907":1.6549109978,"5908":1.5782752821,"5909":1.5028663981,"5910":1.4274575141,"5911":1.3535730662,"5912":1.2796886183,"5913":1.2076201947,"5914":1.1355517711,"5915":1.0655837929,"5916":0.9956158147,"5917":0.9280244136,"5918":0.8604330126,"5919":0.7954849409,"5920":0.7305368693,"5921":0.6684884474,"5922":0.6064400256,"5923":0.5475361304,"5924":0.4886322352,"5925":0.4331053333,"5926":0.3775784314,"5927":0.3256476623,"5928":0.2737168931,"5929":0.2255872036,"5930":0.1774575141,"5931":0.1333188502,"5932":0.0891801862,"5933":0.0492067431,"5934":0.0092332999,"5935":-0.0264171656,"5936":-0.0620676312,"5937":-0.0932544229,"5938":-0.1244412147,"5939":-0.1510412527,"5940":-0.1776412907,"5941":-0.1995495968,"5942":-0.2214579028,"5943":-0.2385880148,"5944":-0.2557181268,"5945":-0.2680024401,"5946":-0.2802867533,"5947":-0.2876767872,"5948":-0.2950668211,"5949":-0.2975334105,"5950":-0.3,"5951":-0.2975334105,"5952":-0.2950668211,"5953":-0.2876767872,"5954":-0.2802867533,"5955":-0.2680024401,"5956":-0.2557181268,"5957":-0.2385880148,"5958":-0.2214579028,"5959":-0.1995495968,"5960":-0.1776412907,"5961":-0.1510412527,"5962":-0.1244412147,"5963":-0.0932544229,"5964":-0.0620676312,"5965":-0.0264171656,"5966":0.0092332999,"5967":0.0492067431,"5968":0.0891801862,"5969":0.1333188502,"5970":0.1774575141,"5971":0.2255872036,"5972":0.2737168931,"5973":0.3256476623,"5974":0.3775784314,"5975":0.4331053333,"5976":0.4886322352,"5977":0.5475361304,"5978":0.6064400256,"5979":0.6684884474,"5980":0.7305368693,"5981":0.7954849409,"5982":0.8604330126,"5983":0.9280244136,"5984":0.9956158147,"5985":1.0655837929,"5986":1.1355517711,"5987":1.2076201947,"5988":1.2796886183,"5989":1.3535730662,"5990":1.4274575141,"5991":1.5028663981,"5992":1.5782752821,"5993":1.6549109978,"5994":1.7315467135,"5995":1.8091068148,"5996":1.8866669161,"5997":1.9648453086,"5998":2.0430237012,"5999":2.1215118506,"6000":2.2,"6001":2.2784881494,"6002":2.3569762988,"6003":2.4351546914,"6004":2.5133330839,"6005":2.5908931852,"6006":2.6684532865,"6007":2.7450890022,"6008":2.8217247179,"6009":2.8971336019,"6010":2.9725424859,"6011":3.0464269338,"6012":3.1203113817,"6013":3.1923798053,"6014":3.2644482289,"6015":3.3344162071,"6016":3.4043841853,"6017":3.4719755864,"6018":3.5395669874,"6019":3.6045150591,"6020":3.6694631307,"6021":3.7315115526,"6022":3.7935599744,"6023":3.8524638696,"6024":3.9113677648,"6025":3.9668946667,"6026":4.0224215686,"6027":4.0743523377,"6028":4.1262831069,"6029":4.1744127964,"6030":4.2225424859,"6031":4.2666811498,"6032":4.3108198138,"6033":4.3507932569,"6034":4.3907667001,"6035":4.4264171656,"6036":4.4620676312,"6037":4.4932544229,"6038":4.5244412147,"6039":4.5510412527,"6040":4.5776412907,"6041":4.5995495968,"6042":4.6214579028,"6043":4.6385880148,"6044":4.6557181268,"6045":4.6680024401,"6046":4.6802867533,"6047":4.6876767872,"6048":4.6950668211,"6049":4.6975334105,"6050":4.7,"6051":4.6975334105,"6052":4.6950668211,"6053":4.6876767872,"6054":4.6802867533,"6055":4.6680024401,"6056":4.6557181268,"6057":4.6385880148,"6058":4.6214579028,"6059":4.5995495968,"6060":4.5776412907,"6061":4.5510412527,"6062":4.5244412147,"6063":4.4932544229,"6064":4.4620676312,"6065":4.4264171656,"6066":4.3907667001,"6067":4.3507932569,"6068":4.3108198138,"6069":4.2666811498,"6070":4.2225424859,"6071":4.1744127964,"6072":4.1262831069,"6073":4.0743523377,"6074":4.0224215686,"6075":3.9668946667,"6076":3.9113677648,"6077":3.8524638696,"6078":3.7935599744,"6079":3.7315115526,"6080":3.6694631307,"6081":3.6045150591,"6082":3.5395669874,"6083":3.4719755864,"6084":3.4043841853,"6085":3.3344162071,"6086":3.2644482289,"6087":3.1923798053,"6088":3.1203113817,"6089":3.0464269338,"6090":2.9725424859,"6091":2.8971336019,"6092":2.8217247179,"6093":2.7450890022,"6094":2.6684532865,"6095":2.5908931852,"6096":2.5133330839,"6097":2.4351546914,"6098":2.3569762988,"6099":2.2784881494,"6100":2.2,"6101":2.1215118506,"6102":2.0430237012,"6103":1.9648453086,"6104":1.8866669161,"6105":1.8091068148,"6106":1.7315467135,"6107":1.6549109978,"6108":1.5782752821,"6109":1.5028663981,"6110":1.4274575141,"6111":1.3535730662,"6112":1.2796886183,"6113":1.2076201947,"6114":1.1355517711,"6115":1.0655837929,"6116":0.9956158147,"6117":0.9280244136,"6118":0.8604330126,"6119":0.7954849409,"6120":0.7305368693,"6121":0.6684884474,"6122":0.6064400256,"6123":0.5475361304,"6124":0.4886322352,"6125":0.4331053333,"6126":0.3775784314,"6127":0.3256476623,"6128":0.2737168931,"6129":0.2255872036,"6130":0.1774575141,"6131":0.1333188502,"6132":0.0891801862,"6133":0.0492067431,"6134":0.0092332999,"6135":-0.0264171656,"6136":-0.0620676312,"6137":-0.0932544229,"6138":-0.1244412147,"6139":-0.1510412527,"6140":-0.1776412907,"6141":-0.1995495968,"6142":-0.2214579028,"6143":-0.2385880148,"6144":-0.2557181268,"6145":-0.2680024401,"6146":-0.2802867533,"6147":-0.2876767872,"6148":-0.2950668211,"6149":-0.2975334105,"6150":-0.3,"6151":-0.2975334105,"6152":-0.2950668211,"6153":-0.2876767872,"6154":-0.2802867533,"6155":-0.2680024401,"6156":-0.2557181268,"6157":-0.2385880148,"6158":-0.2214579028,"6159":-0.1995495968,"6160":-0.1776412907,"6161":-0.1510412527,"6162":-0.1244412147,"6163":-0.0932544229,"6164":-0.0620676312,"6165":-0.0264171656,"6166":0.0092332999,"6167":0.0492067431,"6168":0.0891801862,"6169":0.1333188502,"6170":0.1774575141,"6171":0.2255872036,"6172":0.2737168931,"6173":0.3256476623,"6174":0.3775784314,"6175":0.4331053333,"6176":0.4886322352,"6177":0.5475361304,"6178":0.6064400256,"6179":0.6684884474,"6180":0.7305368693,"6181":0.7954849409,"6182":0.8604330126,"6183":0.9280244136,"6184":0.9956158147,"6185":1.0655837929,"6186":1.1355517711,"6187":1.2076201947,"6188":1.2796886183,"6189":1.3535730662,"6190":1.4274575141,"6191":1.5028663981,"6192":1.5782752821,"6193":1.6549109978,"6194":1.7315467135,"6195":1.8091068148,"6196":1.8866669161,"6197":1.9648453086,"6198":2.0430237012,"6199":2.1215118506,"6200":2.2},"pressure_in":{"0":0.0,"1":338276.7327614231,"2":181088.58171509,"3":271615.5321219604,"4":238273.631092191,"5":266810.3338856255,"6":264382.4559447287,"7":277350.044117725,"8":282579.2900755717,"9":291560.5131784346,"10":298609.9101133528,"11":306478.1302694281,"12":313866.0905143871,"13":321317.7756013335,"14":328652.0184636867,"15":335839.9579722958,"16":343001.075281421,"17":349942.7687003562,"18":356880.2003565839,"19":363560.0359642549,"20":370241.1455499594,"21":376636.023991452,"22":383033.4465909766,"23":389119.2625324285,"24":395207.8174842353,"25":400961.1523691257,"26":406717.1438318006,"27":412115.7577097879,"28":417516.8684766642,"29":422539.8876267367,"30":427565.2172768106,"31":432193.2415499839,"32":436823.3764516994,"33":441038.5620760595,"34":445255.6488844887,"35":449041.780447384,"36":452829.595783932,"37":456172.1506176419,"38":459516.1649020842,"39":462402.3704964602,"40":465289.8052405973,"41":467708.6896754978,"42":470128.5679026154,"43":472071.0031559455,"44":474014.1927196663,"45":475472.9306938286,"46":476932.1803185537,"47":477901.8814465413,"48":478871.8493455141,"49":479349.1036646281,"50":479826.3786222679,"51":479809.7192324867,"52":479792.8340676651,"53":479282.7429216187,"54":478772.1802787334,"55":477771.0862804354,"56":476769.2767254097,"57":475281.5461452647,"58":473792.8585739948,"59":471824.7778178961,"60":469855.5022149847,"61":467415.2530155205,"62":464973.5756313599,"63":462071.2027590206,"64":459167.1738031686,"65":455814.5454250004,"66":452460.0394033675,"67":448670.8002455062,"68":444879.469097872,"69":440668.9865968088,"70":436456.2058196177,"71":431841.5094747134,"72":427224.3174417785,"73":422224.0316083723,"74":417221.062328961,"75":411855.3327173079,"76":406486.7422969777,"77":400777.1564670947,"78":395064.5435615134,"79":389034.0457276985,"80":383000.3663033733,"81":376673.1667846292,"82":370342.6435229466,"83":363744.1231966658,"84":357142.1498987901,"85":350298.7600347776,"86":343451.8014046663,"87":336390.9592748135,"88":329326.4464758734,"89":322076.4271514567,"90":314822.6495490168,"91":307412.4743126581,"92":299998.4678295174,"93":292457.7896421809,"94":284913.2221678265,"95":277272.2086428738,"96":269627.2629486189,"97":261916.4772947591,"98":254201.7319168704,"99":246452.0123198789,"100":238698.3208808043,"101":230940.6588000271,"102":223179.0282439768,"103":215444.4461039345,"104":207705.914327373,"105":200025.3430871579,"106":192340.8564471393,"107":184745.0135307807,"108":177145.3047145438,"109":169664.5727840992,"110":162180.039521922,"111":154844.3465717168,"112":147504.9316716867,"113":140343.6329169208,"114":133178.7060950784,"115":126220.4681209244,"116":119258.7100931317,"117":112531.3977215449,"118":105800.6870145267,"119":99331.2533352407,"120":92858.5562634948,"121":86672.9362632102,"122":80484.2005060008,"123":74607.2087155578,"124":68727.2609139964,"125":63182.4934774729,"126":57634.941255822,"127":52444.6828080461,"128":47251.8216059237,"129":42436.957325913,"130":37619.6824090892,"131":33199.6155964998,"132":28777.3395935375,"133":24769.9150934133,"134":20760.4913835992,"135":17181.9251616268,"136":13601.5774165449,"137":10466.3925627503,"138":7329.6507195663,"139":4650.6201330157,"140":1970.263052154,"141":-241.6409671419,"142":-2454.6359336212,"143":-4190.2849866639,"144":-5926.7853169608,"145":-7178.9309306863,"146":-8431.6849744552,"147":-9194.9872074504,"148":-9958.652804056,"149":-10229.7013201737,"150":-10500.8668810656,"151":-10278.1944077708,"152":-10055.3923797732,"153":-9339.4804981068,"154":-8623.1931544905,"155":-7416.4703978001,"156":-6209.1279342825,"157":-4515.9602032236,"158":-2821.9311464099,"159":-648.6044780448,"160":1525.8215558357,"161":4171.1257968379,"162":6817.7629248561,"163":9925.0003350103,"164":13033.798714159,"165":16591.1014925167,"166":20150.1869825292,"167":24143.910768145,"168":28139.6317939798,"169":32554.4095146485,"170":36971.3909436961,"171":41790.1934634408,"172":46611.3972848212,"173":51815.6006107875,"174":57022.3931772695,"175":62591.8519607884,"176":68164.0775279525,"177":74077.2045696989,"178":79993.2648421227,"179":86227.1162875976,"180":92464.0556581277,"181":98994.4215472368,"182":105528.0176929501,"183":112329.5175063214,"184":119134.3769836311,"185":126180.5598085937,"186":133230.2182702341,"187":140493.6671911482,"188":147760.6938295236,"189":155213.1341304807,"190":162669.2399351902,"191":170281.6506880607,"192":177897.8000903588,"193":185640.5286877917,"194":193387.0541513673,"195":201229.933332741,"196":209076.6524385841,"197":216989.1193470568,"198":224905.4539103326,"199":232856.6707111264,"200":240811.7674599505,"201":248770.7430438494,"202":256733.5953837086,"203":264669.3076754556,"204":272608.8780587183,"205":280490.3964476227,"206":288375.7388652044,"207":296172.3462747783,"208":303972.7283865515,"209":311654.0425014183,"210":319339.0669233582,"211":326875.160095018,"212":334414.884364435,"213":341776.4017226587,"214":349141.4564680574,"215":356299.7317717914,"216":363461.4366210034,"217":370388.6053915619,"218":377319.082160707,"219":383988.1916507775,"220":390660.4743673574,"221":397045.5899318157,"222":403433.7312577201,"223":409510.0387064592,"224":415589.2123408891,"225":421333.1158697231,"226":427079.7145278882,"227":432468.9298410411,"228":437860.6584219572,"229":442874.3006786295,"230":447890.2642543262,"231":452508.9304922425,"232":457129.7167711219,"233":461335.5624817879,"234":465543.3184206981,"235":469320.1279741467,"236":473098.6302368084,"237":476431.8808779052,"238":479766.5998616308,"239":482643.5190253747,"240":485521.6762033926,"241":487931.2919230155,"242":490341.9102760976,"243":492275.0944850199,"244":494209.0418233746,"245":495658.5463801342,"246":497108.571384609,"247":498069.0566785747,"248":499029.8175189082,"249":499497.8735439017,"250":499965.9589611058,"251":499940.1187737465,"252":499914.0615433943,"253":499394.8070530674,"254":498875.089776369,"255":497864.849843956,"256":496853.9030437591,"257":495357.043896645,"258":493859.2364258812,"259":491882.0444270506,"260":489903.6662274703,"261":487454.3230667138,"262":485003.5603459672,"263":482092.1107510893,"264":479179.0136761034,"265":475817.3257715745,"266":472453.7688057393,"267":468655.4872752301,"268":464855.1223159148,"269":460635.6145535611,"270":456413.8170549099,"271":451790.1125178272,"272":447163.9208114628,"273":442154.6438128543,"274":437142.6918659629,"275":431767.9880740567,"276":426390.4319502233,"277":420671.888883119,"278":414950.3271961481,"279":408910.8890263346,"280":402868.2777009781,"281":396532.1547057573,"282":390192.7163817557,"283":383585.2893969277,"284":376974.4178339054,"285":370122.1380877901,"286":363266.2979482743,"287":356196.5826713858,"288":349123.2050774596,"289":341864.3292998041,"290":334601.7035755798,"291":327182.688538616,"292":319759.8505657829,"293":312210.3491894183,"294":304656.9668164604,"295":297007.1466731065,"296":289353.4026304398,"297":281633.8268879619,"298":273910.2996710623,"299":266151.8064744975,"300":258389.3496651275,"301":250622.9304331893,"302":242852.5509349791,"303":235109.2280516609,"304":227361.9637206004,"305":219672.6681045724,"306":211979.4652573457,"307":204374.9142923194,"308":196766.5055759002,"309":189277.0818837202,"310":181783.864988226,"311":174439.4965231081,"312":167091.4142165693,"313":159921.456153709,"314":152747.8781122129,"315":145780.9969968817,"316":138810.6038964406,"317":132074.6645107958,"318":125335.3348383883,"319":118857.290232469,"320":112375.9902629495,"321":106181.7753838643,"322":99984.4527569565,"323":94098.8820960561,"324":88210.3634134331,"325":82657.0330754084,"326":77100.9259219969,"327":71902.120502391,"328":66700.7202785749,"329":61877.3249172221,"330":57051.5268496389,"331":52622.9448071137,"332":48192.1614852952,"333":44176.237567661,"334":40158.322331964,"335":36571.2724660279,"336":32982.448949207,"337":29838.7961862163,"338":26693.5942867089,"339":24006.1114870512,"340":21317.3100266536,"341":19096.9694517614,"342":16875.5457440053,"343":15131.4757543991,"344":13386.5622826563,"345":12126.0113130213,"346":10864.8596893087,"347":10093.1676427787,"348":9321.1199895019,"349":9041.6971640443,"350":8762.1650316232,"351":8976.4786616918,"352":9190.9295652704,"353":9898.4980318418,"354":10606.4496602159,"355":11804.8443920585,"356":13003.8665116758,"357":14688.7215703478,"358":16374.4456168661,"359":18539.4749276172,"360":20705.6112471677,"361":23342.6334077384,"362":25980.99607985,"363":29079.966649262,"364":32180.5057934831,"365":35729.5569333917,"366":39280.3983721079,"367":43265.8856842684,"368":47253.3778051873,"369":51659.9341801918,"370":56068.7018135493,"371":60879.2980783146,"372":65692.3031761726,"373":70888.315300834,"374":76086.9241789988,"375":81648.2067779729,"376":87212.2636551585,"377":93117.2294923014,"378":99025.1360363142,"379":105250.8412204032,"380":111479.641787414,"381":118001.8763217265,"382":124527.348552231,"383":131320.7318808615,"384":138117.4822947868,"385":145155.5634686248,"386":152197.127682314,"387":159452.4897493752,"388":166711.4369189346,"389":174155.8051270601,"390":181603.846205885,"391":189208.1995907887,"392":196816.2989740237,"393":204550.9848922916,"394":212289.4750076091,"395":220124.3261626496,"396":227963.0245551166,"397":235867.4780542113,"398":243775.8065031627,"399":251719.0244757499,"400":259666.1296735642,"401":267617.1209747363,"402":275571.9962912546,"403":283499.7388101584,"404":291431.346662196,"405":299304.9097526316,"406":307182.3040956452,"407":314970.9706457109,"408":322763.4191042032,"409":330436.8067631981,"410":338113.9119178678,"411":345642.0930020612,"412":353173.9123550332,"413":360527.5319590553,"414":367884.6961037375,"415":375035.0879514862,"416":382188.9164807077,"417":389108.2160585376,"418":396030.8307535032,"419":402692.0852792344,"420":409356.5201326241,"421":415733.7949263536,"422":422114.1025653227,"423":428182.5834022563,"424":434253.9374913641,"425":439990.0285327169,"426":445728.8217526182,"427":451110.2386681066,"428":456494.1758833543,"429":461500.0337977581,"430":466508.2200460063,"431":471119.1159627205,"432":475732.1389180864,"433":479930.2282943751,"434":484130.2348795079,"435":487899.3020512515,"436":491670.0688957644,"437":494995.5910737634,"438":498322.5885409482,"439":501191.7931262253,"440":504062.2426553781,"441":506464.1576472769,"442":508867.0821853247,"443":510792.5794834645,"444":512718.8468068592,"445":514160.6782360646,"446":515603.0369919838,"447":516555.8629079973,"448":517508.9712325971,"449":517969.3815957017,"450":518429.8281964982,"451":518396.356029861,"452":518362.6736490183,"453":517835.8008286584,"454":517308.4720340642,"455":516290.6273875838,"456":515272.0826688491,"457":513767.6323904393,"458":512262.2405673459,"459":510277.4709868845,"460":508291.5219681173,"461":505834.6147423728,"462":503376.2947026036,"463":500457.2945264442,"464":497536.6535997055,"465":494167.4285647505,"466":490796.3411816232,"467":486990.5359387772,"468":483182.6539639079,"469":478955.6358746244,"470":474726.3347295169,"471":470095.133218315,"472":465461.4512020383,"473":460444.6905496083,"474":455425.2615968767,"475":450043.0874390185,"476":444658.0675810318,"477":438932.0674034997,"478":433203.0552217584,"479":427156.1731647808,"480":421106.1245518185,"481":414762.570860519,"482":408415.7084239393,"483":401800.8639020238,"484":395182.5813694,"485":388322.8972131765,"486":381459.6592150639,"487":374382.552623119,"488":367301.7902497147,"489":360035.5362202075,"490":352765.5387638187,"491":345339.1585064435,"492":337908.961817037,"493":330352.1082200219,"494":322791.3801144399,"495":315134.2207185953,"496":307473.1438956963,"497":299746.2418373708,"498":292015.3947611524,"499":284249.5881539453,"500":276479.8243747753,"501":268706.1046060463,"502":260928.4309962395,"503":253177.8204187065,"504":245423.2748030197,"505":237726.7043041612,"506":230026.2329681251,"507":222414.4199005385,"508":214798.755460055,"509":207302.0824145544,"510":199801.6225287477,"511":192450.017428596,"512":185094.7048345859,"513":177917.5228241077,"514":170736.7271671487,"515":163762.6347608228,"516":156785.0366861745,"517":150041.8986354458,"518":143295.3765994157,"519":136810.1459236895,"520":130321.6661705372,"521":124120.2777863689,"522":117915.787925305,"523":112023.0562935694,"524":106127.3828958304,"525":100566.9040908232,"526":95003.65471098,"527":89797.7132979259,"528":84589.1833060827,"529":79758.6643945775,"530":74925.7489871731,"531":70490.0558076295,"532":66052.1675440724,"533":62029.1448724712,"534":58004.137063075,"535":54410.0007962174,"536":50814.0970437696,"537":47663.3702029754,"538":44511.1003760246,"539":41816.5557918308,"540":39120.6986823612,"541":36893.3085864267,"542":34664.8414782352,"543":32913.7342013848,"544":31161.789548185,"545":29894.2134954837,"546":28626.0428797111,"547":27847.3379247503,"548":27068.2834393054,"549":26781.8598505852,"550":26495.3330164595,"551":26702.6579990432,"552":26910.126302028,"553":27610.7182075775,"554":28311.6993071917,"555":29503.1295352362,"556":30695.1931687265,"557":32373.0957516614,"558":34051.8733255596,"559":36209.9621595459,"560":38369.1639909331,"561":40999.2576446988,"562":43630.6977841285,"563":46722.7517877568,"564":49816.3803258768,"565":53358.52681216,"566":56902.4695425306,"567":60881.0640844353,"568":64861.6693660117,"569":69261.3448254161,"570":73663.2374597579,"571":78466.9646349384,"572":83273.1065455035,"573":88462.2613780297,"574":93654.0188520962,"575":99208.455927892,"576":104765.6731557174,"577":110663.8052102206,"578":116564.8838312306,"579":122783.7669448727,"580":129005.7512869279,"581":135521.1754347149,"582":142039.843110077,"583":148826.4277079035,"584":155616.3852083356,"585":162647.6792789662,"586":169682.462192722,"587":176931.048756118,"588":184183.2262112856,"589":191620.8304873074,"590":199062.1134093379,"591":206659.7144057911,"592":214261.067161956,"593":221989.0122075881,"594":229720.7671977597,"595":237548.8889682156,"596":245380.8637097313,"597":253278.5992845978,"598":261180.2155291358,"599":269116.7270102312,"600":277057.131422583,"601":285001.427637448,"602":292949.6135599414,"603":300870.6723702432,"604":308795.602192249,"605":316662.4929243803,"606":324533.2205739825,"607":332315.2260887039,"608":340101.0191631026,"609":347767.7570824464,"610":355438.2181351086,"611":362959.7607481487,"612":370484.9472540365,"613":377831.9396282753,"614":385182.4821537077,"615":392326.2579859878,"616":399473.4760967706,"617":406386.1708464592,"618":413302.1862968478,"619":419956.8471548478,"620":426614.6939106395,"621":432985.3861702014,"622":439359.1168317385,"623":445421.0262412903,"624":451485.8144463885,"625":457215.345140436,"626":462947.5835430762,"627":468322.4511646961,"628":473699.8446028254,"629":478699.1642502265,"630":483700.8177349622,"631":488305.186385037,"632":492911.6875640278,"633":497103.260647606,"634":501296.7564171014,"635":505059.3182436976,"636":508823.5852069787,"637":512142.6129610956,"638":515463.1214551903,"639":518325.8425116204,"640":521189.8139496291,"641":523585.2562815533,"642":525981.7135842741,"643":527900.7490652176,"644":529820.5599830409,"645":531255.940411801,"646":532691.8535659108,"647":533638.2392722691,"648":534584.9127728951,"649":535038.8936912415,"650":535492.9162200394,"651":535453.0253477145,"652":535412.9296210554,"653":534879.6488083188,"654":534345.9173683636,"655":533321.6754171236,"656":532296.7387278237,"657":530785.9018066446,"658":529274.1286621874,"659":527282.9830753856,"660":525290.6633589282,"661":522827.3907377776,"662":520362.7105985293,"663":517437.3556124689,"664":514510.3651590661,"665":511134.7958743511,"666":507757.3695120443,"667":503945.2305542813,"668":500131.0201224504,"669":495897.6788278605,"670":491662.0597228095,"671":487024.5454907434,"672":482384.5559864058,"673":477361.493072451,"674":472335.7670784708,"675":466947.301093389,"676":461555.9946159599,"677":455823.7130205317,"678":450088.424616213,"679":444035.2715257576,"680":437978.9570622059,"681":431629.142697002,"682":425276.0247570077,"683":418654.9298959805,"684":412030.4021823682,"685":405164.4779971087,"686":398295.0051157487,"687":391211.6687801901,"688":384124.6817966581,"689":376852.2082843699,"690":369575.9964664142,"691":362143.4069625663,"692":354707.0061356602,"693":347143.9535040148,"694":339577.0314605697,"695":331913.6832175381,"696":324246.4226320435,"697":316513.3418896378,"698":308776.3212017857,"699":301004.3460493308,"700":293228.4187852461,"701":285448.5405858902,"702":277664.7135937072,"703":269907.9546760191,"704":262147.2657563766,"705":254444.5569837479,"706":246737.9523981206,"707":239120.0110991237,"708":231498.22343942,"709":223995.4321809061,"710":216488.859082318,"711":209131.1457636491,"712":201769.729939426,"713":194586.449681087,"714":187399.560752675,"715":180419.3800453657,"716":173435.6986342781,"717":166686.4822057282,"718":159933.886744584,"719":153442.5875905431,"720":146948.0442999776,"721":140740.5973134061,"722":134530.0537790658,"723":128631.2733973048,"724":122729.5561669229,"725":117163.0384407947,"726":111593.7550454991,"727":106381.7845168158,"728":101167.2303033285,"729":96330.6920583336,"730":91491.7621997709,"731":87050.0594455849,"732":82606.1664780934,"733":78577.1439674651,"734":74546.141178156,"735":70946.0147847143,"736":67344.125753233,"737":64187.4184751852,"738":61029.1730469975,"739":58328.6576918277,"740":55626.8346358941,"741":53393.4834122681,"742":51159.0599894222,"743":49402.0012052295,"744":47644.1098462801,"745":46370.5918837109,"746":45096.4841482478,"747":44311.8468580771,"748":43526.8648162138,"749":43234.5184441845,"750":42942.0735941843,"751":43143.4853226607,"752":43345.0451276453,"753":44039.7332856489,"754":44734.8153825261,"755":45920.3513470042,"756":47106.5254504677,"757":48778.5432312916,"758":50451.4407253784,"759":52603.6541962434,"760":54756.9853755976,"761":57381.2130828237,"762":60006.7919756197,"763":63092.9894269399,"764":66180.7661015041,"765":69717.0654074184,"766":73255.1656350464,"767":77227.9223462855,"768":81202.6944637272,"769":85596.5414199912,"770":89992.6102066563,"771":94790.518184101,"772":99590.8455413549,"773":104774.190459486,"774":109960.1426525714,"775":115508.7790753056,"776":121060.2002725013,"777":126952.540913326,"778":132847.8327321354,"779":139060.9336495884,"780":145277.1403960066,"781":151786.7915432562,"782":158299.6908077354,"783":165080.5115788951,"784":171864.7098314452,"785":178890.2492275543,"786":185919.282034732,"787":193162.1230540825,"788":200408.5595223343,"789":207840.4273631734,"790":215275.9783963659,"791":222867.8520449397,"792":230463.4819888131,"793":238185.7087523695,"794":245911.7499853223,"795":253734.1625180568,"796":261560.432536006,"797":269452.4678961162,"798":277348.3884293758,"799":285279.2086973424,"800":293213.9263893951,"801":301152.5403714759,"802":309095.0485433956,"803":317010.4340800316,"804":324929.6950999897,"805":332790.9214964043,"806":340655.9892713377,"807":348432.3393671685,"808":356212.4814731893,"809":363873.5728694081,"810":371538.3918389459,"811":379054.2968036155,"812":386573.8500906507,"813":393915.2136703224,"814":401260.131820244,"815":408398.2876908538,"816":415539.8902485959,"817":422446.9738486665,"818":429357.3825476623,"819":436006.4410473027,"820":442658.6898325817,"821":449023.7885043021,"822":455391.9299554965,"823":461448.2545270362,"824":467507.4622612973,"825":473231.4168465309,"826":478958.0834972342,"827":484327.3837186567,"828":489699.2141031951,"829":494692.9750384876,"830":499689.0741474789,"831":504287.8927530582,"832":508888.8482136994,"833":513074.879899975,"834":517262.8385881215,"835":521019.8676442373,"836":524778.6061428263,"837":528092.109732968,"838":531407.0983587378,"839":534264.3038374323,"840":537122.7639832423,"841":539512.6993034587,"842":541903.6538699212,"843":543817.1908850233,"844":545731.5076023941,"845":547161.3980910702,"846":548591.8255604497,"847":549532.729832425,"848":550473.9261440117,"849":550922.4341136692,"850":551370.9879291391,"851":551325.6325738658,"852":551280.0765896613,"853":550741.3397398137,"854":550202.1564782189,"855":549172.4669158534,"856":548142.086820993,"857":546625.8106948744,"858":545108.6025411601,"859":543112.0261358547,"860":541114.2797867199,"861":538645.5847138023,"862":536175.4862987829,"863":533244.7172080427,"864":530312.3168161523,"865":526931.3417542489,"866":523548.5137711653,"867":519730.9773441567,"868":515911.3735897375,"869":511672.6431143482,"870":507431.6389654256,"871":502788.7438215576,"872":498143.3775326432,"873":493114.9419564898,"874":488083.8474178552,"875":482690.0170008297,"876":477293.3501993458,"877":471555.7123829321,"878":465815.0718558867,"879":459756.5707361555,"880":453694.9123319793,"881":447339.7581100123,"882":440981.3043923266,"883":434354.8778278978,"884":427725.0224804004,"885":420853.7747260027,"886":413978.9823354898,"887":406890.3305460048,"888":399798.0321590226,"889":392520.2512890201,"890":385238.7361543445,"891":377800.8473700388,"892":370359.1512942123,"893":362790.807440463,"894":355218.5981970173,"895":347549.966771381,"896":339877.4270159716,"897":332139.0711116525,"898":324396.7792651933,"899":316619.5369527574,"900":308838.3465226364,"901":301053.2091465204,"902":293264.126962186,"903":285502.1168322978,"904":277736.1806757496,"905":270028.2286368624,"906":262316.3847509864,"907":254693.2081131114,"908":247066.1890712702,"909":239558.1703827369,"910":232046.3738016289,"911":224683.4409433289,"912":217316.8095177552,"913":210128.317591746,"914":202936.220924754,"915":195950.8364033638,"916":188961.9550981115,"917":182207.5426907375,"918":175449.7551615393,"919":168953.2678456495,"920":162453.5402948824,"921":156240.9129451996,"922":150025.1929402976,"923":144121.2399759782,"924":138214.3540465088,"925":132642.6715002315,"926":127068.2271592037,"927":121851.0995546857,"928":116631.3921307505,"929":111789.7045361859,"930":106945.6291844318,"931":102498.78478894,"932":98049.7540275374,"933":94015.5975659092,"934":89979.4646640348,"935":86374.2119919898,"936":82767.2005114023,"937":79605.3746092835,"938":76442.014377606,"939":73736.3880350801,"940":71029.4578034798,"941":68791.003211439,"942":66551.4802229989,"943":64789.3256716062,"944":63026.3423394312,"945":61747.7361931958,"946":60468.5440592165,"947":59678.8261512773,"948":58888.7672679947,"949":58591.3478265037,"950":58293.8336746127,"951":58490.1798643887,"952":58686.6778894881,"953":59376.308022052,"954":60066.3358435716,"955":61246.8212784157,"956":62427.9485936158,"957":64094.9233231999,"958":65762.7814987294,"959":67909.9593793832,"960":70058.2586925423,"961":72677.4582532638,"962":75298.0127149278,"963":78379.1894461744,"964":81461.949107414,"965":84993.2351024511,"966":88526.3257173525,"967":92494.0765097233,"968":96463.8463978694,"969":100852.6948101295,"970":105243.768733807,"971":110036.6855250133,"972":114832.0253685098,"973":120010.3864411088,"974":125191.3584526322,"975":130735.0183535291,"976":136281.4666843682,"977":142168.838110081,"978":148059.1643607905,"979":154267.3033529319,"980":160478.5518126061,"981":166983.2483074609,"982":173491.1965496873,"983":180267.0699245322,"984":187046.3244025057,"985":194066.9236415833,"986":201091.0199050853,"987":208328.9279899356,"988":215570.4351286852,"989":222997.377240844,"990":230428.0061420146,"991":238014.9612510639,"992":245605.676243753,"993":253322.9916403152,"994":261044.1250863175,"995":268861.6334080076,"996":276683.0027866836,"997":284570.1410751584,"998":292461.1681003005,"999":300387.0984195453,"1000":308316.9297181623,"1001":316250.6608579832,"1002":324188.2897347151,"1003":332098.7995191387,"1004":340013.1883257668,"1005":347869.5460436472,"1006":355729.7486707596,"1007":363501.2371454065,"1008":371276.5211528086,"1009":378932.7579689078,"1010":386592.7258727639,"1011":394103.783282134,"1012":401618.4925202011,"1013":408955.0155531908,"1014":416295.0966546763,"1015":423428.4189710605,"1016":430565.1914647578,"1017":437467.4484869395,"1018":444373.0340901832,"1019":451017.2729721934,"1020":457664.705613955,"1021":464024.9916122681,"1022":470388.323856161,"1023":476439.8426825186,"1024":482494.2481297229,"1025":488213.4038820439,"1026":493935.2751499992,"1027":499299.7834348651,"1028":504666.82532507,"1029":509655.801204289,"1030":514647.1186915087,"1031":519241.1591056649,"1032":523837.3398012838,"1033":528018.6001449947,"1034":532201.790909096,"1035":535954.0554557539,"1036":539708.0328555442,"1037":543016.7787536234,"1038":546327.0130901493,"1039":549179.4676785059,"1040":552033.1803289761,"1041":554418.3715449483,"1042":556804.5853943644,"1043":558713.3850757253,"1044":560622.9678387721,"1045":562048.127748659,"1046":563473.8280109067,"1047":564410.0084435332,"1048":565346.4842796884,"1049":565790.2751339675,"1050":566234.1151902546,"1051":566184.0494281413,"1052":566133.7863855913,"1053":565590.3458220497,"1054":565046.4621875738,"1055":564012.0755893079,"1056":562977.0017916985,"1057":561456.0352921593,"1058":559934.1400905341,"1059":557932.8799590139,"1060":555930.4532015517,"1061":553457.0810343903,"1062":550982.3088354113,"1063":548046.8692672019,"1064":545109.8017005436,"1065":541724.1627627887,"1066":538336.6741989906,"1067":534514.48048263,"1068":530690.2227264511,"1069":526446.8415331297,"1070":522201.1899463421,"1071":517553.6506409209,"1072":512903.6434630142,"1073":507870.570266684,"1074":502834.8413729469,"1075":497436.379862157,"1076":492035.0852245151,"1077":486292.8228258234,"1078":480547.5609666581,"1079":474484.4417612481,"1080":468418.1685141217,"1081":462058.4026882256,"1082":455695.3406019288,"1083":449064.3089005091,"1084":442429.8516439473,"1085":435554.0052047233,"1086":428674.6173499383,"1087":421581.373313056,"1088":414484.485891877,"1089":407202.1191972083,"1090":399916.021443732,"1091":392473.5532428309,"1092":385027.2809489582,"1093":377454.3640720611,"1094":369877.5849967198,"1095":362204.3869267981,"1096":354527.2837110767,"1097":346784.3675267865,"1098":339037.5185770694,"1099":331255.7223344658,"1100":323469.9811436487,"1101":315680.2961726947,"1102":307886.6695557709,"1103":300120.1181519374,"1104":292349.6438764882,"1105":284637.1568701489,"1106":276920.7811646789,"1107":269293.0758514819,"1108":261661.5312750091,"1109":254148.9901889577,"1110":246632.6743438727,"1111":239265.225351569,"1112":231894.0809184015,"1113":224701.0791076499,"1114":217504.4756752126,"1115":210514.5875041247,"1116":203521.2056613773,"1117":196762.2958251702,"1118":190000.0139722649,"1119":183499.0354342625,"1120":176994.8197594505,"1121":170777.707380268,"1122":164557.5054368936,"1123":158649.0736216156,"1124":152737.7119251926,"1125":147161.5566924622,"1126":141582.6427419817,"1127":136361.0486015163,"1128":131136.8777116476,"1129":126290.729717677,"1130":121442.1970295624,"1131":116990.8983572779,"1132":112537.4163751773,"1133":108498.8117454769,"1134":104458.2337246919,"1135":100848.5389794382,"1136":97237.0884678881,"1137":94070.8265736021,"1138":90903.033385106,"1139":88192.9771176679,"1140":85481.6199896242,"1141":83238.7415261751,"1142":80994.7976879331,"1143":79228.22530492,"1144":77460.827155886,"1145":76177.8092041371,"1146":74894.2082725782,"1147":74100.0845715863,"1148":73305.6228963751,"1149":73003.803660681,"1150":72701.8927089184,"1151":72893.8450897646,"1152":73085.9522934905,"1153":73771.1945888563,"1154":74456.8375539761,"1155":75632.9411098465,"1156":76809.6895201307,"1157":78472.288315493,"1158":80135.7735241352,"1159":82278.5814018809,"1160":84422.5136727602,"1161":87037.3491484836,"1162":89653.5424790887,"1163":92730.3610298774,"1164":95808.7654579266,"1165":99335.6991637107,"1166":102864.4404299716,"1167":106827.844810993,"1168":110793.2712217642,"1169":115177.7790873111,"1170":119564.5153916288,"1171":124353.0974875245,"1172":129144.1055564598,"1173":134318.1377719512,"1174":139494.7838405293,"1175":145034.1207093554,"1176":150576.2489157157,"1177":156459.3031212624,"1178":162345.3150528439,"1179":168549.142623625,"1180":174756.0825564401,"1181":181256.473415675,"1182":187760.1189102625,"1183":194531.6924221958,"1184":201306.6499187352,"1185":208322.9550546107,"1186":215342.7600899012,"1187":222576.3798182935,"1188":229813.6014691052,"1189":237236.2609586174,"1190":244662.6100992079,"1191":252245.2883065227,"1192":259831.7292531063,"1193":267544.7734559795,"1194":275261.6385575009,"1195":283074.881380714,"1196":290891.9881037163,"1197":298774.866576125,"1198":306661.6366216162,"1199":314583.3127944376,"1200":322508.8927766745,"1201":330438.375426979,"1202":338371.7586378821,"1203":346278.0255769931,"1204":354188.174355659,"1205":362040.2948597567,"1206":369896.2630841162,"1207":377663.5199638773,"1208":385434.575181113,"1209":393086.5860086154,"1210":400742.3307223021,"1211":408249.1677367903,"1212":415759.6593721274,"1213":423091.9675914076,"1214":430427.8366650766,"1215":437556.9497364142,"1216":444689.5157647147,"1217":451587.5690980342,"1218":458488.9537858387,"1219":465128.9945227249,"1220":471772.2317865746,"1221":478128.325171088,"1222":484487.4675621974,"1223":490534.7992936963,"1224":496585.020400879,"1225":502299.9945649313,"1226":508017.686993291,"1227":513378.0191841585,"1228":518740.8877228902,"1229":523725.6929900941,"1230":528712.8426016882,"1231":533302.7178735542,"1232":537894.7361571573,"1233":542071.8368160764,"1234":546250.8706195609,"1235":549998.9809267318,"1236":553748.8068051243,"1237":557053.4038968579,"1238":560359.4921390574,"1239":563207.8033420775,"1240":566057.3753131757,"1241":568438.4285527192,"1242":570820.5071256316,"1243":572725.1742274005,"1244":574630.6271047569,"1245":576051.6598198488,"1246":577473.2355751947,"1247":578405.2941858141,"1248":579337.6508818623,"1249":579777.3252749437,"1250":580217.0515459554,"1251":580162.8746715055,"1252":580108.5031865786,"1253":579560.9568476442,"1254":579012.9701017877,"1255":577974.4830531855,"1256":576935.3114633198,"1257":575410.2498266436,"1258":573884.2621400446,"1259":571878.9121727602,"1260":569872.3982257951,"1261":567394.9415124458,"1262":564916.087407653,"1263":561976.5685710656,"1264":559035.4243705311,"1265":555645.7114304714,"1266":552254.1514930134,"1267":548427.8890287145,"1268":544599.5651473999,"1269":540352.1204488301,"1270":536102.4079737691,"1271":531450.8103941419,"1272":526796.7475531923,"1273":521759.6213020812,"1274":516719.8419589286,"1275":511317.3326011954,"1276":505911.9927161926,"1277":500165.6876668365,"1278":494416.3857508212,"1279":488349.2290794953,"1280":482278.9209545181,"1281":475915.122835957,"1282":469548.0310393192,"1283":462912.9722070161,"1284":456274.490396169,"1285":449394.6219764011,"1286":442511.2147119606,"1287":435413.9538334617,"1288":428313.0521358597,"1289":421026.6737271189,"1290":413736.5668190836,"1291":406290.092020301,"1292":398839.8156823937,"1293":391262.8973124811,"1294":383682.1192923192,"1295":376004.9248229514,"1296":368323.8277503417,"1297":360576.9202489077,"1298":352826.0825189814,"1299":345040.3000302974,"1300":337250.5751247259,"1301":329456.9089675446,"1302":321659.3036901254,"1303":313888.7761487364,"1304":306114.3282558812,"1305":298397.8701495082,"1306":290677.5258585853,"1307":283045.854471746,"1308":275410.3463306636,"1309":267893.8441862665,"1310":260373.5697863319,"1311":253002.1647399114,"1312":245627.0667506001,"1313":238430.1138789208,"1314":231229.5618780191,"1315":224235.7276281806,"1316":217238.4021936503,"1317":210475.5512498856,"1318":203709.3307709091,"1319":197204.4160855862,"1320":190696.2667394725,"1321":184475.2231622784,"1322":178251.0924914575,"1323":172338.7344165764,"1324":166423.4489256757,"1325":160843.372360878,"1326":155260.5395380298,"1327":150035.028982188,"1328":144806.9441312301,"1329":139956.8846277554,"1330":135104.4428790286,"1331":130649.2375923239,"1332":126191.8514393085,"1333":122149.3450795096,"1334":118104.8677667595,"1335":114491.2761649933,"1336":110875.9312297067,"1337":107705.7773417863,"1338":104534.094587088,"1339":101820.1511782131,"1340":99104.9093308345,"1341":96858.1485674926,"1342":94610.3248461431,"1343":92839.8749941548,"1344":91068.6017876279,"1345":89781.711187222,"1346":88494.2400131989,"1347":87696.2484732958,"1348":86897.92136009,"1349":86592.2390846849,"1350":86286.4674888653,"1351":86474.5616186819,"1352":86662.8129617829,"1353":87344.2017843085,"1354":88025.9936617569,"1355":89198.2485125108,"1356":90371.1505976248,"1357":92029.9054451561,"1358":93689.5490807037,"1359":95828.5177574914,"1360":97968.6131969528,"1361":100579.6142082052,"1362":103191.9754386964,"1363":106264.9642511418,"1364":109339.5413000349,"1365":112862.6499832702,"1366":116387.5685810128,"1367":120347.152644973,"1368":124308.7610875698,"1369":128689.4533312624,"1370":133072.3763574821,"1371":137857.1475164758,"1372":142644.3469871477,"1373":147814.5729404608,"1374":152987.4150803946,"1375":158522.9503515635,"1376":164061.2792887091,"1377":169940.536550943,"1378":175822.7538625756,"1379":182022.789134239,"1380":188225.9390862306,"1381":194722.5422804158,"1382":201222.4024231971,"1383":207990.1928940489,"1384":214761.3696577115,"1385":221773.8963664006,"1386":228789.9252776826,"1387":236019.7711827355,"1388":243253.2213083714,"1389":250672.1115683687,"1390":258094.693772606,"1391":265673.6073342331,"1392":273256.2859233016,"1393":280965.5700543426,"1394":288678.6773672277,"1395":296488.1646825172,"1396":304301.5181758283,"1397":312180.645694301,"1398":320063.667059137,"1399":327981.5968221137,"1400":335903.4326628482,"1401":343829.173437528,"1402":351758.8170362228,"1403":359661.3466240835,"1404":367567.7603100017,"1405":375416.1479774023,"1406":383268.3856186662,"1407":391031.9141664872,"1408":398799.2433004954,"1409":406447.5302910436,"1410":414099.5534116125,"1411":421602.6710743855,"1412":429109.4455969801,"1413":436438.0389400628,"1414":443770.1953716551,"1415":450895.5980326155,"1416":458024.4558798204,"1417":464918.8032589107,"1418":471816.4842169403,"1419":478452.8234460973,"1420":485092.361421857,"1421":491444.7577355173,"1422":497800.2052706106,"1423":503843.8443585335,"1424":509890.3750321866,"1425":515601.6609703653,"1426":521315.6673781196,"1427":526672.3157512653,"1428":532031.502672777,"1429":537012.6285208847,"1430":541996.1009091299,"1431":546582.301151023,"1432":551170.6465956585,"1433":555344.0766042497,"1434":559519.4419436817,"1435":563263.8859707154,"1436":567010.0477505284,"1437":570310.9829228858,"1438":573613.4114225607,"1439":576458.0650575592,"1440":579303.9816327933,"1441":581681.3816462872,"1442":584059.8091606254,"1443":585960.8273689584,"1444":587862.6335156837,"1445":589280.0216606184,"1446":590697.9550039531,"1447":591626.3733583825,"1448":592555.0919517403,"1449":592991.1303933111,"1450":593427.2228616769,"1451":593369.4143311321,"1452":593311.4133343515,"1453":592760.2396254968,"1454":592208.6276493495,"1455":591166.5175077845,"1456":590123.7249599856,"1457":588595.0444981101,"1458":587065.4401167529,"1459":585056.475582862,"1460":583046.3491951546,"1461":580565.2821646441,"1462":578082.8198639891,"1463":575139.6949505613,"1464":572194.9467899322,"1465":568801.6320042517,"1466":565406.4723333766,"1467":561576.6122455983,"1468":557744.6928484779,"1469":553493.6547395146,"1470":549240.3509572154,"1471":544585.1641712488,"1472":539927.5142226069,"1473":534886.8029602011,"1474":529843.4406999046,"1475":524437.3505169344,"1476":519028.4318963609,"1477":513278.5501988619,"1478":507525.6737198963,"1479":501454.9445685804,"1480":495381.0660443435,"1481":489013.6996050266,"1482":482643.0415639126,"1483":476004.4185611915,"1484":469362.3746517669,"1485":462478.9462030458,"1486":455591.9809770637,"1487":448491.1642022253,"1488":441386.7086712781,"1489":434096.7784899825,"1490":426803.121867981,"1491":419353.0994116221,"1492":411899.2774703322,"1493":404318.8155490377,"1494":396734.4960273037,"1495":389053.7621039866,"1496":381369.1276228647,"1497":373618.6847561739,"1498":365864.3137020667,"1499":358074.999928101,"1500":350281.7457739733,"1501":342484.5524027898,"1502":334683.4219437543,"1503":326909.3712509691,"1504":319131.402234775,"1505":311411.4250309599,"1506":303687.5636663347,"1507":296052.3772273778,"1508":288413.3560536107,"1509":280893.3428938126,"1510":273369.5594936139,"1511":265994.6474599225,"1512":258616.0444941922,"1513":251415.5886548076,"1514":244211.5356927784,"1515":237214.2024862573,"1516":230213.3800973589,"1517":223447.034199413,"1518":216677.3207643171,"1519":210168.9151188146,"1520":203657.2768063413,"1521":197432.7462544909,"1522":191205.1305986025,"1523":185289.2895261314,"1524":179370.5230230092,"1525":173786.9674292523,"1526":168200.6575586035,"1527":162971.6719340191,"1528":157740.1139912782,"1529":152886.5833708844,"1530":148030.6724780097,"1531":143572.0000178377,"1532":139111.1486599481,"1533":135065.179061783,"1534":131017.2404750926,"1535":127400.1895617318,"1536":123781.3872751195,"1537":120607.7779940676,"1538":117432.6418023602,"1539":114715.2469105293,"1540":111996.5555321812,"1541":109746.3471877921,"1542":107495.0778332564,"1543":105721.1842938841,"1544":103946.469343719,"1545":102656.1389413672,"1546":101365.2299050393,"1547":100563.8024404242,"1548":99762.0413380532,"1549":99452.9270069864,"1550":99143.7252869681,"1551":99328.3912220106,"1552":99513.2162977267,"1553":100191.1807782236,"1554":100869.550236969,"1555":102038.3845903178,"1556":103207.8680972992,"1557":104863.2062839478,"1558":106519.4351738423,"1559":108654.9910181889,"1560":110791.675536406,"1561":113399.2675355986,"1562":116008.2216612049,"1563":119077.8052739306,"1564":122148.9790262673,"1565":125668.686314105,"1566":129190.2054156099,"1567":133146.3918804945,"1568":137104.6046191831,"1569":141481.9030521425,"1570":145861.4341588143,"1571":150642.8152874578,"1572":155426.6266149928,"1573":160593.4663103998,"1574":165762.9240756785,"1575":171295.0768534661,"1576":176830.0251765292,"1577":182705.9037020071,"1578":188584.7441522407,"1579":194781.4044358944,"1580":200981.1812713008,"1581":207474.4132183631,"1582":213970.9039815237,"1583":220735.3269382996,"1584":227503.1380514763,"1585":234512.3009713167,"1586":241524.9679534373,"1587":248751.4537870704,"1588":255981.5456970763,"1589":263397.0795953,"1590":270816.3072896729,"1591":278391.8681914106,"1592":285971.1959686279,"1593":293677.1311339233,"1594":301386.8913252381,"1595":309193.0333612044,"1596":317003.0434155138,"1597":324878.829333383,"1598":332758.5109340934,"1599":340673.1027675035,"1600":348591.6025113147,"1601":356514.0090198032,"1602":364440.3201811244,"1603":372339.5191585177,"1604":380242.6040589763,"1605":388087.664764013,"1606":395936.5772641178,"1607":403696.7824900715,"1608":411460.790119623,"1609":419105.7574212186,"1610":426754.4626664494,"1611":434254.264265616,"1612":441757.7245344376,"1613":449083.0054317074,"1614":456411.8512235547,"1615":463533.9450489687,"1616":470659.495862935,"1617":477550.5380092334,"1618":484444.9155330338,"1619":491077.9531246558,"1620":497714.191257713,"1621":504063.2895216249,"1622":510415.440798077,"1623":516455.7854165881,"1624":522499.0234082146,"1625":528207.0184498848,"1626":533917.7357447972,"1627":539271.0967869199,"1628":544626.9981573705,"1629":549604.8402325398,"1630":554585.0306241179,"1631":559167.9506437794,"1632":563753.0176387706,"1633":567923.1709684753,"1634":572095.2613979367,"1635":575836.4322820834,"1636":579579.322684266,"1637":582876.9882424147,"1638":586176.148889482,"1639":589017.5364316457,"1640":591860.1886720003,"1641":594234.3261067456,"1642":596609.4927966539,"1643":598507.2519330569,"1644":600405.8007585405,"1645":601819.933331113,"1646":603234.6128491542,"1647":604159.7791235565,"1648":605085.2473803462,"1649":605518.0372270102,"1650":605950.882840329,"1651":605889.8291928013,"1652":605828.5848153073,"1653":605274.1694602168,"1654":604719.3175705207,"1655":603673.969246307,"1656":602627.9402449727,"1657":601096.0250568937,"1658":599563.1876748817,"1659":597550.9918641075,"1660":595537.635921513,"1661":593053.3410563333,"1662":590567.6526394607,"1663":587621.303326491,"1664":584673.3324812334,"1665":581276.7967240672,"1666":577878.4177930921,"1667":574045.3401548315,"1668":570210.2049150935,"1669":565955.9526696202,"1670":561699.4364551599,"1671":557041.0389396372,"1672":552380.1799622831,"1673":547336.2613702728,"1674":542289.6934777232,"1675":536880.3993581159,"1676":531468.2784947793,"1677":525715.1962466466,"1678":519959.120907449,"1679":513885.1945845587,"1680":507808.1205756811,"1681":501437.5603369175,"1682":495063.7101798341,"1683":488421.8967428826,"1684":481776.6640792527,"1685":474890.0485546281,"1686":467999.8979293191,"1687":460895.8974300229,"1688":453788.2598477618,"1689":446495.1492865921,"1690":439198.3139544352,"1691":431745.1144559441,"1692":424288.1171388241,"1693":416704.4815063085,"1694":409116.9899362588,"1695":401433.0856258237,"1696":393745.2824170979,"1697":385991.6724806018,"1698":378234.1360128145,"1699":370441.6584795837,"1700":362645.2422189301,"1701":354844.88839227,"1702":347040.5991271148,"1703":339263.3912758959,"1704":331482.2667472605,"1705":323759.1356753283,"1706":316032.1220852218,"1707":308393.7850617589,"1708":300751.6149427733,"1709":293228.4544753854,"1710":285701.5254035555,"1711":278323.469332518,"1712":270941.7239620742,"1713":263738.1273489348,"1714":256530.935242459,"1715":249530.4645191316,"1716":242526.5062394198,"1717":235757.0260749994,"1718":228984.1799961087,"1719":222472.6433278525,"1720":215957.8756120063,"1721":209730.2172745336,"1722":203499.475449112,"1723":197580.509821573,"1724":191658.6203761934,"1725":186071.9434513637,"1726":180482.5138591883,"1727":175250.4101209863,"1728":170015.7356709132,"1729":165159.0901478359,"1730":160300.0659553054,"1731":155838.2817968739,"1732":151374.3203405061,"1733":147325.2422420146,"1734":143274.1967515371,"1735":139654.0405293109,"1736":136032.1345271358,"1737":132855.4231222173,"1738":129677.1863967225,"1739":126956.6925595794,"1740":124234.9038227828,"1741":121981.5997052085,"1742":119727.2361611467,"1743":117950.2500143052,"1744":116172.4440371317,"1745":114879.0241866328,"1746":113585.0272794273,"1747":112780.513519608,"1748":111975.6676961185,"1749":111663.4702164281,"1750":111351.1869186954,"1751":111532.7728453477,"1752":111714.5194804148,"1753":112389.4070864232,"1754":113064.7012352616,"1755":114230.4618417083,"1756":115396.873163218,"1757":117049.1407242508,"1758":118702.3005468169,"1759":120834.7888805519,"1760":122968.4074433062,"1761":125572.935040623,"1762":128178.8263163721,"1763":131245.3486297052,"1764":134313.4626315473,"1765":137830.1117162381,"1766":141348.5741603834,"1767":145301.7055121431,"1768":149256.8646803934,"1769":153631.111084046,"1770":158007.5917010019,"1771":162785.9238779658,"1772":167566.6877903254,"1773":172730.4816055075,"1774":177896.8950239833,"1775":183426.0049868439,"1776":188957.9120253206,"1777":194830.7507950249,"1778":200706.5530167559,"1779":206900.1765976574,"1780":213096.9182545257,"1781":219587.1165457467,"1782":226080.5751742269,"1783":232841.9675159733,"1784":239606.7495322411,"1785":246612.8848717756,"1786":253622.5257886829,"1787":260845.9870706682,"1788":268073.0559410957,"1789":275485.5683102813,"1790":282901.7759846638,"1791":290474.3183739394,"1792":298050.6291447189,"1793":305753.5488081047,"1794":313460.2950005242,"1795":321263.4245391239,"1796":329070.42359608,"1797":336943.2000151341,"1798":344819.8736140523,"1799":352731.4589412196,"1800":360646.9536728333,"1801":368566.3566616813,"1802":376489.6657944423,"1803":384385.8642328615,"1804":392285.9500824538,"1805":400128.013223248,"1806":407973.929644256,"1807":415731.1402747807,"1808":423492.1547910951,"1809":431134.1304601718,"1810":438779.8455521295,"1811":446276.6584757991,"1812":453777.1315454309,"1813":461099.4267183518,"1814":468425.2882592264,"1815":475544.3993055806,"1816":482666.9688109433,"1817":489555.0311176215,"1818":496446.4302693457,"1819":503076.490954967,"1820":509709.7536466516,"1821":516055.8779323638,"1822":522405.0566923408,"1823":528442.4302546517,"1824":534482.6986489074,"1825":540187.7255505908,"1826":545895.4761614575,"1827":551245.8719740347,"1828":556598.8095680004,"1829":561573.6893183079,"1830":566550.9188352115,"1831":571130.8794289519,"1832":575712.988445343,"1833":579880.1852423386,"1834":584049.3205835527,"1835":587787.5378224875,"1836":591527.4760210684,"1837":594822.190815802,"1838":598118.40213822,"1839":600956.8417930796,"1840":603796.5475820581,"1841":606167.7399999396,"1842":608539.9631060781,"1843":610434.7800903983,"1844":612330.3881940714,"1845":613741.5814736976,"1846":615153.3231262492,"1847":616075.5529612129,"1848":616998.0862032117,"1849":617427.9424583293,"1850":617857.8559019467,"1851":617793.871505163,"1852":617729.6977974625,"1853":617172.3545298188,"1854":616614.57614383,"1855":615566.3027381925,"1856":614517.3500689125,"1857":612982.5126249784,"1858":611446.7543978152,"1859":609431.6391512088,"1860":607415.3651807177,"1861":604928.1536941964,"1862":602439.5500611565,"1863":599490.2869358172,"1864":596539.4036806104,"1865":593139.9569145413,"1866":589738.668374335,"1867":585902.6825251504,"1868":582064.6404714172,"1869":577807.482807516,"1870":573548.0625688264,"1871":568886.76242191,"1872":564223.0022046342,"1873":559176.1837628144,"1874":554126.7174092075,"1875":548714.526215938,"1876":543299.5096649782,"1877":537543.5331139078,"1878":531784.5648551049,"1879":525707.7469945913,"1880":519627.7828287231,"1881":513254.3338122543,"1882":506877.5962554055,"1883":500232.8967952843,"1884":493584.7794837377,"1885":486695.280685109,"1886":479802.2481583694,"1887":472695.3671288789,"1888":465584.8503863237,"1889":458288.8620334263,"1890":450989.1502767756,"1891":443533.0757196898,"1892":436073.2047085594,"1893":428486.6967452709,"1894":420896.3342063737,"1895":413209.5602876854,"1896":405518.8888299821,"1897":397762.412002461,"1898":390002.0100002832,"1899":382206.6682879782,"1900":374407.3892022513,"1901":366604.173903204,"1902":358797.0245170353,"1903":351016.9578948654,"1904":343232.9759440323,"1905":335506.9887973476,"1906":327777.120478628,"1907":320135.9300713865,"1908":312490.9079121541,"1909":304964.8967467498,"1910":297435.1183178342,"1911":290054.2142293435,"1912":282669.6221797828,"1913":275463.1802245677,"1914":268253.1441117644,"1915":261249.8307165657,"1916":254243.0310981491,"1917":247470.7109269016,"1918":240695.0261717749,"1919":234180.6521565886,"1920":227663.0484218343,"1921":221432.5553921935,"1922":215198.9802000636,"1923":209277.1825299968,"1924":203352.4623649929,"1925":197762.9560421664,"1926":192170.6983723479,"1927":186935.7678755837,"1928":181698.2679847585,"1929":176838.7983374696,"1930":171976.9513360003,"1931":167512.3456826364,"1932":163045.5640440782,"1933":158993.6670748749,"1934":154939.8040239028,"1935":151316.8315501391,"1936":147692.1106041253,"1937":144512.5855618099,"1938":141331.5365041047,"1939":138608.2316386841,"1940":135883.6331762907,"1941":133627.5206345493,"1942":131370.3499665013,"1943":129590.5579946069,"1944":127809.9474900678,"1945":126513.7244086461,"1946":125216.9255657176,"1947":124409.6111641339,"1948":123601.9659915986,"1949":123286.9704543428,"1950":122971.8903892881,"1951":123150.6808376269,"1952":123329.6332821549,"1953":124001.7279841668,"1954":124674.2305143204,"1955":125837.2007861648,"1956":127000.8230559272,"1957":128650.3028468417,"1958":130300.6761796937,"1959":132430.3793028958,"1960":134561.213933077,"1961":137162.9588745602,"1962":139766.0687699969,"1963":142829.8109773216,"1964":145895.1461462439,"1965":149409.0176698895,"1966":152924.7038236516,"1967":156875.0601544791,"1968":160827.4455700387,"1969":165198.919488034,"1970":169572.6288851597,"1971":174348.1911069154,"1972":179126.1863274851,"1973":184287.2127130936,"1974":189450.8599630116,"1975":194977.2050171311,"1976":200506.3484054859,"1977":206376.4247824911,"1978":212249.4658677515,"1979":218440.3295672175,"1980":224634.3125964937,"1981":231121.753512776,"1982":237612.456017782,"1983":244371.0934863314,"1984":251133.1218784935,"1985":258136.5048418297,"1986":265143.3946292628,"1987":272364.1060273165,"1988":279588.4262581755,"1989":286998.1912309768,"1990":294411.6527509823,"1991":301981.4502267127,"1992":309555.0173236044,"1993":317255.1945515875,"1994":324959.1995459177,"1995":332759.5891225721,"1996":340563.8494525584,"1997":348433.8883784512,"1998":356307.8257168513,"1999":364216.6760149795,"2000":372129.4369478707,"2001":380046.1073671515,"2002":387966.685158341,"2003":395860.1534820261,"2004":403757.5104425646,"2005":411596.8459188301,"2006":419440.0358986804,"2007":427194.5213102659,"2008":434952.8118287085,"2009":442592.0647198309,"2010":450235.0582526035,"2011":457729.1508347104,"2012":465226.9047792563,"2013":472546.4820424241,"2014":479869.6268877357,"2015":486986.022451576,"2016":494105.8776863335,"2017":500991.2269331772,"2018":507879.9142347004,"2019":514507.2642786186,"2020":521137.8175359637,"2021":527481.2335935674,"2022":533827.705330535,"2023":539862.3730738062,"2024":545899.9368518625,"2025":551602.2603390601,"2026":557307.3087360285,"2027":562655.0035341706,"2028":568005.2413120409,"2029":572977.4224434714,"2030":577951.9545375961,"2031":582529.2189035362,"2032":587108.6328859888,"2033":591273.1358417907,"2034":595439.5785334416,"2035":599175.1043133301,"2036":602912.3522422697,"2037":606204.377955656,"2038":609497.9013839115,"2039":612333.6543306856,"2040":615170.6745965487,"2041":617539.1826751797,"2042":619908.7226248289,"2043":621800.8576343184,"2044":623693.7849437179,"2045":625102.2986085285,"2046":626511.3618246234,"2047":627430.9144003924,"2048":628350.771559363,"2049":628777.9529065239,"2050":629205.1926161636,"2051":629138.5356582893,"2052":629071.6905612949,"2053":628511.6770750647,"2054":627951.2296401099,"2055":626900.2883540394,"2056":625848.6689717756,"2057":624311.1659812223,"2058":622772.7433727225,"2059":620754.9649089811,"2060":618736.0288844771,"2061":616246.1565059861,"2062":613754.8931419431,"2063":610802.9714454917,"2064":607849.4307779889,"2065":604447.3277573672,"2066":601043.3841192799,"2067":597204.7443278154,"2068":593364.0494863343,"2069":589104.2401881496,"2070":584842.169467574,"2071":580178.2199901042,"2072":575511.8115925438,"2073":570462.3461196455,"2074":565410.233883105,"2075":559995.3979539868,"2076":554577.7378132048,"2077":548819.1188172806,"2078":543057.5092575372,"2079":536978.0512389409,"2080":530895.4480567951,"2081":524519.3611648009,"2082":518139.9868721283,"2083":511492.6518148355,"2084":504841.900043721,"2085":497949.7679220812,"2086":491054.1032078415,"2087":483944.5911253174,"2088":476831.4444631521,"2089":469532.8273230263,"2090":462230.4879104879,"2091":454771.7868278163,"2092":447309.2904203635,"2093":439720.1581889796,"2094":432127.1725091783,"2095":424437.7765757432,"2096":416744.484228417,"2097":408985.3876353654,"2098":401222.3669907193,"2099":393424.4077579791,"2100":385622.5122728216,"2101":377816.6816943224,"2102":370006.9181476546,"2103":362224.2384829145,"2104":354437.644606417,"2105":346709.0466499525,"2106":338976.568636317,"2107":331332.7696480046,"2108":323685.1400205282,"2109":316156.5224986904,"2110":308624.1388241364,"2111":301240.6305997884,"2112":293853.4355231382,"2113":286644.3916485902,"2114":279431.7547232,"2115":272425.8416211514,"2116":265416.4434006136,"2117":258641.5257309673,"2118":251863.2445801587,"2119":245346.275271003,"2120":238826.077342989,"2121":232592.9912197963,"2122":226356.8240328217,"2123":220432.4354656182,"2124":214505.1255001875,"2125":208913.0304726474,"2126":203318.1851928325,"2127":198080.668179795,"2128":192840.5828654262,"2129":187978.5288863313,"2130":183114.0986438032,"2131":178646.9108391377,"2132":174177.548138047,"2133":170123.0711940932,"2134":166066.6292551665,"2135":162441.0789792594,"2136":158813.7813159299,"2137":155631.6806401441,"2138":152448.0570318329,"2139":149722.1786976905,"2140":146995.0078474809,"2141":144736.3239978514,"2142":142476.5831008671,"2143":140694.2219780129,"2144":138911.0433995167,"2145":137612.2533201677,"2146":136312.8885543704,"2147":135503.0093040058,"2148":134692.8003558083,"2149":134375.242115041,"2150":134057.6004176589,"2151":134233.8303038884,"2152":134410.2232555611,"2153":135079.7595330079,"2154":135749.7047059252,"2155":136910.1186869005,"2156":138071.1857312017,"2157":139718.1113611041,"2158":141365.9315964358,"2159":143493.0826846529,"2160":145621.3663414297,"2161":148220.5613701348,"2162":150821.1224124673,"2163":153882.3168254099,"2164":156945.1052577219,"2165":160456.4311015796,"2166":163969.5726314282,"2167":167917.3853932697,"2168":171867.2282938248,"2169":176236.1607498528,"2170":180607.3297371047,"2171":185380.3526001376,"2172":190155.8095121947,"2173":195314.2986385605,"2174":200475.4096775669,"2175":205999.2195681681,"2176":211525.8288394614,"2177":217393.3721449265,"2178":223263.8812032336,"2179":229452.2139194003,"2180":235643.667008099,"2181":242128.5790255944,"2182":248616.7536726748,"2183":255372.8643232311,"2184":262132.3669364051,"2185":269133.2251588317,"2186":276137.5912425087,"2187":283355.7799730355,"2188":290577.5785716738,"2189":297984.822946639,"2190":305395.7649022721,"2191":312963.0438461741,"2192":320534.093442863,"2193":328231.7542013514,"2194":335933.2437559791,"2195":343731.1189218076,"2196":351532.8658689306,"2197":359400.3924390103,"2198":367271.8184477352,"2199":375178.1584414156,"2200":383088.4100941767,"2201":391002.5722567368,"2202":398920.6428137075,"2203":406811.6049247695,"2204":414706.4566933755,"2205":422543.2879974949,"2206":430383.9748240826,"2207":438135.9581003872,"2208":445891.7475006296,"2209":453528.5002897331,"2210":461168.9947357695,"2211":468660.5892455252,"2212":476155.8461312087,"2213":483472.9273481076,"2214":490793.5771588495,"2215":497907.4786989263,"2216":505024.8409198345,"2217":511907.698161852,"2218":518793.8944666822,"2219":525418.754521152,"2220":532046.8187954057,"2221":538387.7468753877,"2222":544731.7316393185,"2223":550763.9134132529,"2224":556798.9922247895,"2225":562498.8317474016,"2226":568201.3971808378,"2227":573546.6100156206,"2228":578894.3668294257,"2229":583864.0679952067,"2230":588836.121121221,"2231":593410.9075157134,"2232":597987.8445225065,"2233":602149.8714975633,"2234":606313.8392025109,"2235":610046.890988866,"2236":613781.6659165714,"2237":617071.2196201534,"2238":620362.2720291661,"2239":623195.554946391,"2240":626030.1061715325,"2241":628396.1461974042,"2242":630763.219081392,"2243":632652.8880114547,"2244":634543.3502267998,"2245":635949.3997820676,"2246":637355.9998722707,"2247":638273.0903049402,"2248":639190.4863027452,"2249":639615.2074698183,"2250":640039.9879795909,"2251":639970.8728012163,"2252":639901.5704622337,"2253":639339.1007116756,"2254":638776.1979892004,"2255":637722.8023915669,"2256":636668.7296728474,"2257":635128.7743200973,"2258":633587.9003228118,"2259":631567.6714428491,"2260":629546.2859738427,"2261":627053.9651217236,"2262":624560.2542540835,"2263":621605.8860232227,"2264":618649.8997896573,"2265":615245.3521704795,"2266":611838.9649005024,"2267":607997.8824429766,"2268":604154.7459004248,"2269":599892.4958653237,"2270":595627.9853711507,"2271":590961.5970825682,"2272":586292.7508355462,"2273":581240.8484740051,"2274":576186.3003088086,"2275":570769.0294101919,"2276":565348.9352582387,"2277":559587.8832086427,"2278":553823.8415518992,"2279":547741.9523921487,"2280":541656.9190238683,"2281":535278.4028999356,"2282":528896.600328697,"2283":522246.837945388,"2284":515593.6597999859,"2285":508699.102254967,"2286":501801.013067437,"2287":494689.077460893,"2288":487573.508223161,"2289":480272.469455105,"2290":472967.7093614577,"2291":465506.588543684,"2292":458041.6733463224,"2293":450450.1232694104,"2294":442854.7206876504,"2295":435162.9087950153,"2296":427467.2014304383,"2297":419705.6907612768,"2298":411940.2569808537,"2299":404139.8855518631,"2300":396335.578809176,"2301":388527.3379110633,"2302":380715.1649818945,"2303":372930.0768709634,"2304":365141.0754837828,"2305":357410.0709513424,"2306":349675.1872956384,"2307":342028.983598366,"2308":334378.9501942405,"2309":326847.9298272672,"2310":319313.1442382955,"2311":311927.2350294526,"2312":304537.6398974363,"2313":297326.1968958578,"2314":290111.1617709807,"2315":283102.8513961974,"2316":276091.0568288873,"2317":269313.7437376414,"2318":262533.0680896179,"2319":256013.7052068444,"2320":249491.1146280234,"2321":243255.6367760492,"2322":237017.0787815337,"2323":231090.3003272467,"2324":225160.6013944071,"2325":219566.118318351,"2326":213968.8859081323,"2327":208728.9826820233,"2328":203486.5120711365,"2329":198622.0737112995,"2330":193755.2600030276,"2331":189285.6896468411,"2332":184813.9453076767,"2333":180757.0876383225,"2334":176698.2658858954,"2335":173070.3367076157,"2336":169440.6610522699,"2337":166256.1832940537,"2338":163070.1835121284,"2339":160341.9299124196,"2340":157612.3847039236,"2341":155351.3274025211,"2342":153089.2139595112,"2343":151304.481195614,"2344":149518.9318802933,"2345":148217.7719675753,"2346":146916.0382711024,"2347":146103.7909919941,"2348":145291.2149162249,"2349":144971.2904482982,"2350":144651.2834234105,"2351":144825.1488810308,"2352":144999.1783022338,"2353":145666.351946595,"2354":146333.9353830555,"2355":147491.9885234492,"2356":148650.6956222908,"2357":150295.2622011035,"2358":151940.7242789641,"2359":154065.5181025785,"2360":156191.4453868715,"2361":158788.2849344634,"2362":161386.4913863052,"2363":164445.3320986333,"2364":167505.767719461,"2365":171014.7416402196,"2366":174525.5321346105,"2367":178470.9947478922,"2368":182418.4883860435,"2369":186785.0724650822,"2370":191153.8939600186,"2371":195924.5702146707,"2372":200697.6814015426,"2373":205853.8256851811,"2374":211012.5927631813,"2375":216534.0595737612,"2376":222058.326645283,"2377":227923.5286304921,"2378":233791.6972473254,"2379":239977.6904000679,"2380":246166.8048026603,"2381":252649.3790106369,"2382":259135.2167240556,"2383":265888.9913160786,"2384":272646.1587451196,"2385":279644.6826570861,"2386":286646.7153032497,"2387":293862.5714684839,"2388":301082.0383733263,"2389":308486.951925268,"2390":315895.5639279274,"2391":323460.5137881832,"2392":331029.2351698326,"2393":338724.5685811676,"2394":346423.7316558086,"2395":354219.2812080985,"2396":362018.7034074136,"2397":369883.9060946986,"2398":377753.0090849265,"2399":385657.0269236921,"2400":393564.9572844066,"2401":401476.7990170747,"2402":409392.5500055954,"2403":417281.1934089377,"2404":425173.7273298434,"2405":433008.2416455718,"2406":440846.6123423688,"2407":448596.2803467786,"2408":456349.7553323003,"2409":463984.1945631701,"2410":471622.37630674,"2411":479111.6589690986,"2412":486604.6048617468,"2413":493919.3759392704,"2414":501237.7164635939,"2415":508349.3095695081,"2416":515464.3642078083,"2417":522344.9147180728,"2418":529228.8051413059,"2419":535851.3601636363,"2420":542477.1202545104,"2421":548815.7449991769,"2422":555157.4272751596,"2423":561187.3074078195,"2424":567220.0854240598,"2425":572917.6249966618,"2426":578617.8913246806,"2427":583960.805897948,"2428":589306.2652934485,"2429":594273.6698834458,"2430":599243.4272755079,"2431":603815.9187771921,"2432":608390.5617316351,"2433":612550.2954941053,"2434":616711.9708255552,"2435":620442.7310768083,"2436":624175.2153071273,"2437":627462.4791503535,"2438":630751.2425353586,"2439":633582.2372642427,"2440":636414.5011360291,"2441":638778.2546428512,"2442":641143.0418414155,"2443":643030.4259190024,"2444":644918.6041141418,"2445":646322.3704807968,"2446":647726.6882133044,"2447":648641.4971185202,"2448":649556.6124184385,"2449":649979.0537165187,"2450":650401.555185519,"2451":650330.1617939208,"2452":650258.5820685922,"2453":649693.8357578947,"2454":649128.6573008175,"2455":648072.9867934503,"2456":647016.6399891975,"2457":645474.4113744462,"2458":643931.2649380285,"2459":641908.7644411321,"2460":639885.1081767292,"2461":637390.5173500847,"2462":634894.5373281282,"2463":631937.9007624967,"2464":628979.6470130455,"2465":625572.8326962044,"2466":622164.1795461277,"2467":618320.832025406,"2468":614475.4312359033,"2469":610210.9177694387,"2470":605944.1446588327,"2471":601275.494568091,"2472":596604.3873325287,"2473":591550.2247954109,"2474":586493.4172669483,"2475":581073.8878167218,"2476":575651.5359241636,"2477":569888.2269443156,"2478":564121.9291670221,"2479":558037.7846957736,"2480":551950.4968243984,"2481":545569.7270051249,"2482":539185.6715456487,"2483":532533.6570805705,"2484":525878.2276592047,"2485":518981.4196433944,"2486":512081.0807895942,"2487":504966.8963206608,"2488":497849.0790237751,"2489":490545.7929991597,"2490":483238.7864509054,"2491":475775.4199798363,"2492":468308.2599298508,"2493":460714.4658003472,"2494":453116.8199653893,"2495":445422.7656183121,"2496":437724.8165974118,"2497":429961.0650694098,"2498":422193.3912269929,"2499":414390.7805322208,"2500":406584.2353193305,"2501":398773.7567459595,"2502":390959.346935845,"2503":383172.0227376483,"2504":375380.7860562523,"2505":367647.5470220154,"2506":359910.429656305,"2507":352261.9930401831,"2508":344609.7275077511,"2509":337076.475802368,"2510":329539.45966427,"2511":322151.320694952,"2512":314759.4965904899,"2513":307545.825403869,"2514":300328.5628807301,"2515":293318.0258938422,"2516":286304.0054999631,"2517":279524.467367062,"2518":272741.5674616767,"2519":266219.9811052148,"2520":259695.1678357597,"2521":253457.4680755869,"2522":247216.6889546911,"2523":241287.690155225,"2524":235355.7716577909,"2525":229759.0697971096,"2526":224159.6193816205,"2527":218917.4989289813,"2528":213672.8118696915,"2529":208806.1578389659,"2530":203937.1292367081,"2531":199465.3447628271,"2532":194991.3870816468,"2533":190932.3168453539,"2534":186871.2833004449,"2535":183241.1431035398,"2536":179609.2572028139,"2537":176422.5699718577,"2538":173234.3614892254,"2539":170503.8999602377,"2540":167772.1475932861,"2541":165508.8839036472,"2542":163244.5648420168,"2543":161457.6272285127,"2544":159669.8738319966,"2545":158366.5106058936,"2546":157062.5743632456,"2547":156248.1253045726,"2548":155433.3482152498,"2549":155111.2234991824,"2550":154789.0169909695,"2551":154960.6837294828,"2552":155132.5151952011,"2553":155797.4916471042,"2554":156462.8786535386,"2555":157618.736125744,"2556":158775.2483176416,"2557":160417.620750163,"2558":162060.8894417898,"2559":164183.4906386409,"2560":166307.2260550473,"2561":168901.874493041,"2562":171497.8905929832,"2563":174554.5417105219,"2564":177612.7884930824,"2565":181119.5743315092,"2566":184628.1774989169,"2567":188571.4535399786,"2568":192516.7613600879,"2569":196881.1603746781,"2570":201247.797558176,"2571":206016.2902538163,"2572":210787.2186335211,"2573":215941.1808612555,"2574":221097.7666340336,"2575":226617.0528894931,"2576":232139.1401554168,"2577":238002.163083971,"2578":243868.1533925144,"2579":250051.9689847546,"2580":256238.9065740554,"2581":262719.3047153748,"2582":269202.9671081988,"2583":275954.5671251027,"2584":282709.5607239422,"2585":289705.9115500399,"2586":296705.7718541004,"2587":303919.4564204222,"2588":311136.7524689726,"2589":318539.4959066716,"2590":325945.9385365675,"2591":333508.7197649697,"2592":341075.2732551064,"2593":348768.4395147015,"2594":356465.4361768081,"2595":364258.8200552024,"2596":372056.0773186943,"2597":379919.1158076631,"2598":387786.0553365172,"2599":395687.9104502873,"2600":403593.6788218209,"2601":411503.35930056,"2602":419416.9497698416,"2603":427303.4333880729,"2604":435193.8082574352,"2605":443026.1642546275,"2606":450862.3773653362,"2607":458609.8885155466,"2608":466361.2073781996,"2609":473993.4912169739,"2610":481629.5182986647,"2611":489116.647028804,"2612":496607.4397183375,"2613":503920.0583212958,"2614":511236.2470990493,"2615":518345.689185835,"2616":525458.5935318954,"2617":532336.9944762561,"2618":539218.7360593703,"2619":545839.142966815,"2620":552462.7556674867,"2621":558799.233746084,"2622":565138.770079582,"2623":571166.5049927925,"2624":577197.1385120716,"2625":582892.5343096528,"2626":588590.6575840453,"2627":593931.4298245341,"2628":599274.7476075593,"2629":604240.0113048395,"2630":609207.6285233988,"2631":613777.980570251,"2632":618350.4847879902,"2633":622508.0805313427,"2634":626667.6185607197,"2635":630396.2422264032,"2636":634126.5905871167,"2637":637411.7192761609,"2638":640698.3482218693,"2639":643527.2092258034,"2640":646357.3400864488,"2641":648718.9612954019,"2642":651081.6169088328,"2643":652966.8701134861,"2644":654852.9181473564,"2645":656254.5550638722,"2646":657656.7440568369,"2647":658569.4249325723,"2648":659482.4129125407,"2649":659902.7275996685,"2650":660323.1031661833,"2651":660249.5845800353,"2652":660175.8803675625,"2653":659609.0102765965,"2654":659041.7087455981,"2655":657983.9158701282,"2656":656925.4474030635,"2657":655381.0978302642,"2658":653835.8311400358,"2659":651811.2110930398,"2660":649785.4359817235,"2661":647288.727010827,"2662":644790.6295467558,"2663":641831.8762406235,"2664":638871.5064517625,"2665":635462.5767960806,"2666":632051.8090072102,"2667":628206.3475472206,"2668":624358.8335174562,"2669":620092.2075092158,"2670":615823.3225548004,"2671":611152.5613176976,"2672":606479.3436327042,"2673":601423.0713425679,"2674":596364.1547569832,"2675":590942.516945014,"2676":585518.0573855775,"2677":579752.6414332001,"2678":573984.2373772122,"2679":567897.9873205902,"2680":561808.594556649,"2681":555425.720537105,"2682":549039.5615691413,"2683":542385.4442868474,"2684":535727.9127390271,"2685":528829.0032870122,"2686":521926.5636867493,"2687":514810.2791605846,"2688":507690.3624951915,"2689":500384.9777902843,"2690":493075.8732494467,"2691":485610.4094729958,"2692":478141.1528043245,"2693":470545.2627423249,"2694":462945.5216605564,"2695":455249.3727518494,"2696":447549.3298539966,"2697":439783.4851332158,"2698":432013.7187816919,"2699":424209.0162609817,"2700":416400.3799048215,"2701":408587.8108703475,"2702":400771.3112807969,"2703":392981.8979843315,"2704":385188.5728853345,"2705":377453.2461136666,"2706":369714.0416901963,"2707":362063.518695489,"2708":354409.1674631489,"2709":346873.8307360389,"2710":339334.7302538997,"2711":331944.5076177309,"2712":324550.6005231139,"2713":317334.8470225403,"2714":310115.5028611573,"2715":303102.8849112414,"2716":296086.7842290578,"2717":289305.1664820844,"2718":282520.1876363677,"2719":275996.523012825,"2720":269469.6321490495,"2721":263229.8554668277,"2722":256987.0000956651,"2723":251055.9257172262,"2724":245121.932311626,"2725":239523.1562130978,"2726":233921.6322295945,"2727":228677.438878288,"2728":223430.6795891922,"2729":218561.953997037,"2730":213690.8545012418,"2731":209216.9998012317,"2732":204740.9725608476,"2733":200679.8334317933,"2734":196616.7316600837,"2735":192984.5239018569,"2736":189350.5711048071,"2737":186161.8176420447,"2738":182971.5435916439,"2739":180239.0171584463,"2740":177505.2005503643,"2741":175239.8732821965,"2742":172973.4913041611,"2743":171184.4914358987,"2744":169394.6764457944,"2745":168089.2522867974,"2746":166783.2557714742,"2747":165966.7470998698,"2748":165149.911056885,"2749":164825.7280459513,"2750":164501.4639011944,"2751":164671.0736610136,"2752":164840.8488054151,"2753":165503.7695929073,"2754":166167.1015913656,"2755":167320.9047115591,"2756":168475.3632069391,"2757":170115.6825979676,"2758":171756.8989026572,"2759":173877.4483666587,"2760":175999.1327038351,"2761":178591.730715751,"2762":181185.6970423009,"2763":184240.2990386667,"2764":187296.4973518078,"2765":190801.2353721038,"2766":194307.7913722043,"2767":198249.0208963185,"2768":202192.2828493764,"2769":206554.6366463484,"2770":210919.2292611986,"2771":215685.6780367,"2772":220454.563144313,"2773":225606.4827475419,"2774":230761.0265429403,"2775":236278.2714676863,"2776":241798.3180491032,"2777":247659.3009388986,"2778":253523.2518539728,"2779":259705.0286975757,"2780":265889.928182614,"2781":272368.2888635889,"2782":278849.9144395302,"2783":285599.4782825577,"2784":292352.4363500718,"2785":299346.7522869406,"2786":306344.5783434146,"2787":313556.2293033388,"2788":320771.4923862273,"2789":328172.2034985477,"2790":335576.6144428963,"2791":343137.3646251309,"2792":350701.8877080288,"2793":358393.0241988637,"2794":366087.9917302383,"2795":373879.3471154795,"2796":381674.5765229486,"2797":389535.5877925762,"2798":397400.500738323,"2799":405300.3299047721,"2800":413204.0729643244,"2801":421111.7287659753,"2802":429023.2951926162,"2803":436907.7554022089,"2804":444796.1074964898,"2805":452626.4413517137,"2806":460460.632953123,"2807":468206.1232262599,"2808":475955.4218436226,"2809":483585.6860684473,"2810":491219.6941670874,"2811":498704.804544634,"2812":506193.5795115915,"2813":513504.1810215507,"2814":520818.353335442,"2815":527925.7795870632,"2816":535036.6687262178,"2817":541913.0550914936,"2818":548792.7827229059,"2819":555411.1763055942,"2820":562032.7763080182,"2821":568367.2423144407,"2822":574704.7672014006,"2823":580730.4912932746,"2824":586759.1146159841,"2825":592452.5008413283,"2826":598148.6151673824,"2827":603487.3790829986,"2828":608828.6891641836,"2829":613791.9457822241,"2830":618757.5565437122,"2831":623325.9027552305,"2832":627896.4017589423,"2833":632051.9929091436,"2834":636209.5269658153,"2835":639936.147278811,"2836":643664.4929064242,"2837":646947.6194815281,"2838":650232.2469320279,"2839":653059.1070590577,"2840":655887.2376606762,"2841":658246.8592280537,"2842":660607.5158169337,"2843":662490.770613636,"2844":664374.8208557299,"2845":665774.4605962198,"2846":667174.6530284841,"2847":668085.3379584221,"2848":668996.3306070723,"2849":669414.6505769393,"2850":669833.032039828,"2851":669757.5199632674,"2852":669681.8228731734,"2853":669112.9605169586,"2854":668543.6673326622,"2855":667483.8834154261,"2856":666423.4245177077,"2857":664877.0851249481,"2858":663329.8292250349,"2859":661303.2205782116,"2860":659275.4574765083,"2861":656776.7611242483,"2862":654276.6768874206,"2863":651315.9374167228,"2864":648353.5820710721,"2865":644942.6674659611,"2866":641529.9153346078,"2867":637682.4701386677,"2868":633832.9729790714,"2869":629564.3644467046,"2870":625293.497573456,"2871":620620.7550224008,"2872":615945.5566279239,"2873":610887.3042323623,"2874":605826.4081449989,"2875":600402.7914344885,"2876":594976.3535793372,"2877":589208.9599336634,"2878":583438.5787863872,"2879":577350.3522400776,"2880":571258.9835876412,"2881":564874.1342803867,"2882":558486.0006250904,"2883":551829.9092554351,"2884":545170.4042198183,"2885":538269.5218791671,"2886":531365.1099890211,"2887":524246.8537713235,"2888":517124.9660123424,"2889":509817.6108113885,"2890":502506.5363716421,"2891":495039.1032930176,"2892":487567.8779185049,"2893":479970.0197465948,"2894":472368.3111504445,"2895":464670.1953224837,"2896":456968.186100104,"2897":449200.3756491235,"2898":441428.6441613267,"2899":433621.9770978719,"2900":425811.376792096,"2901":417996.844400737,"2902":410178.382046634,"2903":402387.0065775513,"2904":394591.7198974751,"2905":386854.4321358695,"2906":379113.2673132069,"2907":371460.7845096567,"2908":363804.4740584283,"2909":356267.1787019893,"2910":348726.1201796861,"2911":341333.9400921246,"2912":333938.0761344926,"2913":326720.3663588886,"2914":319499.066510067,"2915":312484.4934599125,"2916":305466.4382642984,"2917":298682.8665903112,"2918":291895.9344036068,"2919":285370.3170247117,"2920":278841.4739908295,"2921":272599.745723357,"2922":266354.9393514107,"2923":260421.9145562663,"2924":254485.9713176506,"2925":248885.2459694093,"2926":243281.7733191077,"2927":238035.631883531,"2928":232786.9250923064,"2929":227916.2525797779,"2930":223043.2067449794,"2931":218567.4062869506,"2932":214089.4338691477,"2933":210026.3501428903,"2934":205961.3043538091,"2935":202327.1531576592,"2936":198691.2575017515,"2937":195500.5617588138,"2938":192308.3460065382,"2939":189573.8784493844,"2940":186838.1212948838,"2941":184570.854057454,"2942":182302.5326869326,"2943":180511.5940025802,"2944":178719.8407724024,"2945":177412.4789489692,"2946":176104.5453444683,"2947":175286.1001585663,"2948":174467.3281757863,"2949":174141.2097991822,"2950":173815.0108625026,"2951":173982.6864037701,"2952":174150.5279026148,"2953":174811.5156171694,"2954":175472.9151149336,"2955":176624.7863063018,"2956":177777.3134443507,"2957":179415.7020491682,"2958":181054.9881383932,"2959":183173.6079573031,"2960":185293.3632193881,"2961":187884.0327258404,"2962":190476.0711161825,"2963":193528.7457452244,"2964":196583.0172595548,"2965":200085.8290491818,"2966":203590.4593863854,"2967":207529.7638150043,"2968":211471.1012395992,"2969":215831.5310747711,"2970":220194.2002941157,"2971":224958.7262400374,"2972":229725.6890836289,"2973":234875.6869880269,"2974":240028.309649418,"2975":245543.6340046136,"2976":251061.7605805706,"2977":256920.8240286308,"2978":262782.8560653292,"2979":268962.7145935504,"2980":275145.6963258367,"2981":281622.139816325,"2982":288101.8487636811,"2983":294849.4965396616,"2984":301600.5391013037,"2985":308592.9400931131,"2986":315588.851764978,"2987":322798.5889003814,"2988":330011.9387184763,"2989":337410.7371253691,"2990":344813.2359232955,"2991":352372.0745177533,"2992":359934.6865711598,"2993":367623.9125904293,"2994":375316.9702078055,"2995":383106.4162362571,"2996":390899.7368437863,"2997":398758.8398699669,"2998":406621.8451284014,"2999":414519.7671633163,"3000":422421.6036467559,"3001":430327.3534273592,"3002":438237.0143876618,"3003":446119.5696852701,"3004":454006.0174215654,"3005":461834.4474724481,"3006":469666.7358228063,"3007":477410.323397828,"3008":485157.7198696582,"3009":492786.08250118,"3010":500418.1895583943,"3011":507901.3994460395,"3012":515388.2744742684,"3013":522696.9765963202,"3014":530009.2500727742,"3015":537114.7780370775,"3016":544223.7694386832,"3017":551098.2586158292,"3018":557976.089608181,"3019":564592.587100529,"3020":571212.2915609847,"3021":577544.8625734616,"3022":583880.4930141511,"3023":589904.323207082,"3024":595931.0531778289,"3025":601622.5465978433,"3026":607316.7686648548,"3027":612653.6408673688,"3028":617993.0597810469,"3029":622954.4257768299,"3030":627918.1464609654,"3031":632484.6031396912,"3032":637053.2131548262,"3033":641206.9158603229,"3034":645362.5620158187,"3035":649087.2949708239,"3036":652813.7537832897,"3037":656094.9940857466,"3038":659377.7358057584,"3039":662202.7107441169,"3040":665028.9566985406,"3041":667386.6941598577,"3042":669745.4671834728,"3043":671626.8389553644,"3044":673509.006712763,"3045":674906.7645083326,"3046":676305.075535114,"3047":677213.8795986673,"3048":678122.9919196928,"3049":678539.4321003573,"3050":678955.9343121283,"3051":678878.5435221976,"3052":678800.9682561454,"3053":678230.2282610462,"3054":677659.0579746047,"3055":676597.3974916267,"3056":675535.062564234,"3057":673986.8476775337,"3058":672437.7168190783,"3059":670409.2337487777,"3060":668379.5967583277,"3061":665879.0270517183,"3062":663377.0699946061,"3063":660414.4582373553,"3064":657450.2311385513,"3065":654037.4453133547,"3066":650622.8224946519,"3067":646773.5071437671,"3068":642922.1403613002,"3069":638651.6627378064,"3070":634378.9273048443,"3071":629704.3167251593,"3072":625027.2508328072,"3073":619967.1314697957,"3074":614904.3689450794,"3075":609478.8863269843,"3076":604050.5830936892,"3077":598281.324598984,"3078":592509.0791314627,"3079":586418.9887933667,"3080":580325.7568772762,"3081":573939.0448341743,"3082":567549.0489705105,"3083":560891.0959196434,"3084":554229.7297296444,"3085":547326.9867611163,"3086":540420.7147692745,"3087":533300.5989757379,"3088":526176.8521664509,"3089":518867.6384404016,"3090":511554.7060004464,"3091":504085.4154461778,"3092":496612.3331202631,"3093":489012.6185208714,"3094":481409.0540208381,"3095":473709.0828122721,"3096":466005.218732244,"3097":458235.5539462513,"3098":450461.9686457544,"3099":442653.4482916064,"3100":434840.9952168046,"3101":427024.6105777826,"3102":419204.2964970531,"3103":411411.0698220661,"3104":403613.9324564877,"3105":395874.794529465,"3106":388131.7800611531,"3107":380477.4481314043,"3108":372819.289073111,"3109":365280.1456284251,"3110":357737.2395363768,"3111":350343.2123972561,"3112":342945.5019059358,"3113":335725.9461141994,"3114":328502.8007664867,"3115":321486.3827343681,"3116":314466.4830734032,"3117":307681.0674503646,"3118":300892.2918305952,"3119":294364.8315343086,"3120":287834.1460983959,"3121":281590.5759439414,"3122":275343.92819975,"3123":269409.0625467828,"3124":263471.2789644662,"3125":257868.7137863201,"3126":252263.4018196101,"3127":247015.4215808056,"3128":241764.8764992271,"3129":236892.3662089074,"3130":232017.4831085718,"3131":227539.8458969512,"3132":223060.0372371933,"3133":218995.1177803094,"3134":214928.2367716226,"3135":211292.2508665801,"3136":207654.521012186,"3137":204461.9915808611,"3138":201267.9426499911,"3139":198531.6424237295,"3140":195794.0531093018,"3141":193524.9542208201,"3142":191254.801707817,"3143":189462.0323892481,"3144":187668.4490328146,"3145":186359.2575907822,"3146":185049.4948750347,"3147":184229.2210849355,"3148":183408.6210047037,"3149":183080.6750370919,"3150":182752.6490155443,"3151":182918.4979777827,"3152":183084.5134031344,"3153":183743.6755494311,"3154":184403.249983871,"3155":185553.2966165478,"3156":186703.9997002374,"3157":188340.5647547275,"3158":189978.0277973572,"3159":192094.8250731041,"3160":194212.7582951592,"3161":196801.6062644157,"3162":199391.8236200974,"3163":202442.6777167163,"3164":205495.1292005626,"3165":208996.1214613471,"3166":212498.9327710522,"3167":216436.4186732199,"3168":220375.9380721138,"3169":224734.5503820388,"3170":229095.4025762943,"3171":233858.1119969892,"3172":238623.2588149205,"3173":243771.4411929326,"3174":248922.2488269078,"3175":254435.7586533758,"3176":259952.0711989903,"3177":265809.3211148038,"3178":271669.5401170555,"3179":277847.586108338,"3180":284028.7558008998,"3181":290503.3877485857,"3182":296981.2856497692,"3183":303727.1228759147,"3184":310476.3553837682,"3185":317466.9468175435,"3186":324461.0494268381,"3187":331668.9779948443,"3188":338880.5197404247,"3189":346277.5105693954,"3190":353678.2022837026,"3191":361235.2342885543,"3192":368796.0402460791,"3193":376483.460662902,"3194":384174.7131709785,"3195":391962.3545829887,"3196":399753.8710666475,"3197":407611.1704612404,"3198":415472.3725800872,"3199":423368.4919671128,"3200":431268.5262940942,"3201":439172.4744093705,"3202":447080.3341951938,"3203":454961.0888089002,"3204":462845.7363515525,"3205":470672.3666987993,"3206":478502.8558352188,"3207":486244.6446857395,"3208":493990.2429221973,"3209":501616.8078072036,"3210":509247.1176064858,"3211":516728.5307244699,"3212":524213.6094710561,"3213":531520.5157991779,"3214":538830.9939691591,"3215":545934.7271141281,"3216":553041.924183286,"3217":559914.6195145852,"3218":566790.6571473903,"3219":573405.3617662349,"3220":580023.2738389304,"3221":586354.052949134,"3222":592687.8919727247,"3223":598709.931233481,"3224":604734.8707566828,"3225":610424.5742135015,"3226":616117.0068013972,"3227":621452.0900085864,"3228":626789.7204104686,"3229":631749.2983776821,"3230":636711.2315162203,"3231":641275.9011320263,"3232":645842.7245666584,"3233":649994.6411737766,"3234":654148.5017127498,"3235":657871.4495328169,"3236":661596.1236916385,"3237":664875.5798214849,"3238":668156.5378496329,"3239":670979.7295766119,"3240":673804.1927998501,"3241":676160.148009914,"3242":678517.1392619307,"3243":680396.7297415995,"3244":682277.1166858847,"3245":683673.0941471719,"3246":685069.6253182342,"3247":685976.6500043521,"3248":686883.9834259597,"3249":687298.645184948,"3250":687713.3694525143,"3251":687634.2011955786,"3252":687554.8489394494,"3253":686982.3324309306,"3254":686409.386107457,"3255":685345.9500635625,"3256":684281.8400511008,"3257":682731.8505549062,"3258":681180.945562265,"3259":679150.6888328168,"3260":677119.2786579842,"3261":674616.9362414982,"3262":672113.2069487368,"3263":669148.8234298046,"3264":666182.8250430078,"3265":662768.2684032558,"3266":659351.8752431545,"3267":655500.7900237616,"3268":651647.6538454221,"3269":647375.4072984108,"3270":643100.9034140317,"3271":638424.5248547489,"3272":633745.691454375,"3273":628683.8050546314,"3274":623619.275964218,"3275":618192.0272511992,"3276":612761.9583934793,"3277":606990.9347445956,"3278":601216.9245928595,"3279":595125.0700402769,"3280":589030.0743791382,"3281":582641.599060183,"3282":576249.8403895787,"3283":569590.1250004406,"3284":562926.996940569,"3285":556022.4925702941,"3286":549114.4596445977,"3287":541992.5833848079,"3288":534867.0765766306,"3289":527556.1033187662,"3290":520241.4118138472,"3291":512770.3626611759,"3292":505295.5222031627,"3293":497694.0499377391,"3294":490088.7282374543,"3295":482387.000294179,"3296":474681.3799446983,"3297":466909.9593542889,"3298":459134.6187141219,"3299":451324.3434847945,"3300":443510.1359990708,"3301":435691.9974130974,"3302":427869.9298491531,"3303":420074.9501544021,"3304":412276.0602322934,"3305":404535.1702116811,"3306":396790.4041124905,"3307":389134.3210142925,"3308":381474.411249749,"3309":373933.5175607436,"3310":366388.8616860418,"3311":358993.0852257076,"3312":351593.6258743287,"3313":344372.3216834573,"3314":337147.4283972523,"3315":330129.2628870668,"3316":323107.6162081766,"3317":316320.4540271056,"3318":309529.9323089633,"3319":303000.726373686,"3320":296468.2957579318,"3321":290222.9808825094,"3322":283974.5888760038,"3323":278037.9794190978,"3324":272098.4524909707,"3325":266494.1444249077,"3326":260887.0900279028,"3327":255637.3678161911,"3328":250385.0812188233,"3329":245510.8298696084,"3330":240634.2061669976,"3331":236154.8288094895,"3332":231673.2804599666,"3333":227606.6217692063,"3334":223538.0019822748,"3335":219900.2777543667,"3336":216260.8100322519,"3337":213066.5431880883,"3338":209870.7572990245,"3339":207132.720568955,"3340":204393.3952048728,"3341":202122.560720631,"3342":199850.673065518,"3343":198056.1690582487,"3344":196260.8514662706,"3345":194949.9262416089,"3346":193638.4301958962,"3347":192816.423528257,"3348":191994.0910226598,"3349":191664.4130816144,"3350":191334.6555383205,"3351":191498.7734302545,"3352":191663.0582365003,"3353":192320.4902146457,"3354":192978.3349316437,"3355":194126.6522973466,"3356":195275.626564285,"3357":196910.4632520067,"3358":198546.1983776045,"3359":200661.2681858149,"3360":202777.4743895908,"3361":205364.5957895745,"3362":207953.087024757,"3363":211002.2154494016,"3364":214052.9417095677,"3365":217552.2091947101,"3366":221053.2961765826,"3367":224989.0581984867,"3368":228926.8541644341,"3369":233283.7434885037,"3370":237642.8731437438,"3371":242403.860472039,"3372":247167.285643925,"3373":252313.7468220255,"3374":257462.8337019834,"3375":262974.6232200738,"3376":268489.2159027312,"3377":274344.7464007547,"3378":280203.2464301661,"3379":286379.5738932914,"3380":292559.0255021691,"3381":299031.9398103868,"3382":305508.1205161017,"3383":312252.2409905212,"3384":318999.7571901649,"3385":325988.6327590203,"3386":332981.0199464222,"3387":340187.2335353558,"3388":347397.0607444264,"3389":354792.3374792417,"3390":362191.3155414763,"3391":369746.6343361339,"3392":377305.7275251056,"3393":384991.4356147597,"3394":392680.9762368454,"3395":400466.9062037872,"3396":408256.7116830943,"3397":416112.3005137802,"3398":423971.7925089638,"3399":431866.2022123339,"3400":439764.5272954119,"3401":447666.7666063327,"3402":455572.9180270985,"3403":463451.9647148227,"3404":471334.9047703322,"3405":479159.8280690464,"3406":486988.6105953117,"3407":494728.6932738262,"3408":502472.5857761952,"3409":510097.4453647998,"3410":517726.0503051375,"3411":525205.7590014044,"3412":532689.1337632713,"3413":539994.3365434419,"3414":547303.1116020113,"3415":554405.1420718787,"3416":561510.6369020172,"3417":568381.6304301503,"3418":575255.9666954145,"3419":581868.9703821156,"3420":588485.1819578375,"3421":594814.2610060094,"3422":601146.4004022835,"3423":607166.740470211,"3424":613189.9812348456,"3425":618877.9863671315,"3426":624568.721064303,"3427":629902.10681435,"3428":635238.0401924467,"3429":640195.9215690055,"3430":645156.1585497943,"3431":649719.1324405363,"3432":654284.2605825481,"3433":658434.4823292866,"3434":662586.6484398819,"3435":666307.9022633552,"3436":670030.8828571399,"3437":673308.6458532843,"3438":676587.9111788409,"3439":679409.4106341156,"3440":682232.1820163139,"3441":684586.4458157792,"3442":686941.7460874158,"3443":688819.6460167016,"3444":690698.3428403774,"3445":692092.6306106076,"3446":693487.4725199434,"3447":694392.8083734434,"3448":695298.453391321,"3449":695711.4271752458,"3450":696124.4638961945,"3451":696043.608520866,"3452":695962.5695743492,"3453":695388.3668032271,"3454":694813.7346447149,"3455":693748.6131931265,"3456":692682.818200095,"3457":691131.1441502402,"3458":689578.5550306225,"3459":687546.614600668,"3460":685513.5211515775,"3461":683009.4958868655,"3462":680504.084171691,"3463":677538.0186559408,"3464":674570.3386977033,"3465":671154.1009116704,"3466":667736.0270302306,"3467":663883.2615142252,"3468":660028.4454637814,"3469":655754.5194689579,"3470":651478.3365608423,"3471":646800.2794016823,"3472":642119.7678250747,"3473":637056.2036725251,"3474":631989.9972525177,"3475":626561.0716329019,"3476":621129.3262913666,"3477":615356.6265812342,"3478":609580.9407906015,"3479":603487.4110212601,"3480":597390.740565286,"3481":591000.590873198,"3482":584607.1582509737,"3483":577945.7693314819,"3484":571280.9681623329,"3485":564374.7911036327,"3486":557465.0859101549,"3487":550341.5378030128,"3488":543214.3595677008,"3489":535901.7153027063,"3490":528585.3532104503,"3491":521112.6338900227,"3492":513636.1236836227,"3493":506032.9820889699,"3494":498425.9914784026,"3495":490722.5950435804,"3496":483015.3066210774,"3497":475242.2183759599,"3498":467465.2104991883,"3499":459653.2684511502,"3500":451837.394564399,"3501":444017.5899948721,"3502":436193.8568646383,"3503":428397.2120206528,"3504":420596.6573661554,"3505":412854.103029791,"3506":405107.6730312683,"3507":397449.9264499783,"3508":389788.3536183355,"3509":382245.7972780433,"3510":374699.4791676452,"3511":367302.0408870048,"3512":359900.9201304986,"3513":352677.9549494734,"3514":345451.4010878801,"3515":338431.5754168654,"3516":331408.2689914983,"3517":324619.4474780964,"3518":317827.2668415626,"3519":311296.4024016277,"3520":304762.3136947436,"3521":298515.3411415134,"3522":292265.2918703168,"3523":286327.0255616316,"3524":280385.8421944316,"3525":274779.8781017978,"3526":269171.168090519,"3527":263919.7906766263,"3528":258665.8492889661,"3529":253789.9435611435,"3530":248911.6658914058,"3531":244430.6349780434,"3532":239947.4334837519,"3533":235879.122059083,"3534":231808.8499489161,"3535":228169.473808235,"3536":224528.3545836108,"3537":221332.4366469971,"3538":218135.0000753417,"3539":215395.3130723362,"3540":212654.3378447723,"3541":210381.8539063012,"3542":208108.3172060105,"3543":206312.1645624133,"3544":204515.1987427565,"3545":203202.6256988643,"3546":201889.482242169,"3547":201065.8285715947,"3548":200241.8494709095,"3549":199910.5253424233,"3550":199579.1220191362,"3551":199741.5945383249,"3552":199904.2343788739,"3553":200560.0217981718,"3554":201216.2223629728,"3555":202362.8959829301,"3556":203510.2269103773,"3557":205143.4206646591,"3558":206777.5132626763,"3559":208890.9409489632,"3560":211005.5054362768,"3561":213590.9855250606,"3562":216177.8358541092,"3563":219225.323777488,"3564":222274.4099410596,"3565":225772.037734082,"3566":229271.4854281123,"3567":233205.6085662557,"3568":237141.7660523273,"3569":241497.0173002103,"3570":245854.5092827568,"3571":250613.8593416561,"3572":255375.6476472482,"3573":260520.4723619615,"3574":265667.9231812438,"3575":271178.0770411753,"3576":276691.0344679959,"3577":282544.9301123101,"3578":288401.7956899453,"3579":294576.4891030336,"3580":300754.3070634192,"3581":307225.5881245031,"3582":313700.1359842246,"3583":320442.6240136306,"3584":327188.5081690241,"3585":334175.7520942117,"3586":341166.508038329,"3587":348371.0907841717,"3588":355579.2875501513,"3589":362972.9342416837,"3590":370370.2826602516,"3591":377923.9722106664,"3592":385481.4365546278,"3593":393165.5161983125,"3594":400853.4287732787,"3595":408637.7310917593,"3596":416425.9093210727,"3597":424279.871300042,"3598":432137.7368415953,"3599":440030.520489231,"3600":447927.2199142801,"3601":455827.833964688,"3602":463732.3605222665,"3603":471609.78274394,"3604":479491.0987303455,"3605":487314.3983567134,"3606":495141.557607209,"3607":502880.0174063129,"3608":510622.2874254807,"3609":518245.5249268772,"3610":525872.5081758255,"3611":533350.5955763262,"3612":540832.3494378665,"3613":548135.9317129597,"3614":555443.0866615145,"3615":562543.4974162426,"3616":569647.3729259293,"3617":576516.7475281117,"3618":583389.4652617386,"3619":590000.85081093,"3620":596615.4446430827,"3621":602942.9063414398,"3622":609273.4287814671,"3623":615292.1522865305,"3624":621313.7768814969,"3625":627000.1662371256,"3626":632689.2855504653,"3627":638021.0563093207,"3628":643355.3750886808,"3629":648311.6422587731,"3630":653270.2654251809,"3631":657831.6258934428,"3632":662395.1410046906,"3633":666543.7501121984,"3634":670694.3039749106,"3635":674413.9459416658,"3636":678135.3150697134,"3637":681411.4669909175,"3638":684689.1216321482,"3639":687509.0107935282,"3640":690330.17227208,"3641":692682.8265579637,"3642":695036.5177059021,"3643":696912.8089011892,"3644":698789.8973803852,"3645":700182.5771954712,"3646":701575.8115388171,"3647":702479.5402152997,"3648":703383.578444951,"3649":703794.9458292588,"3650":704206.3765390191,"3651":704123.9155407497,"3652":704041.2713593582,"3653":703465.4637412475,"3654":702889.2271234524,"3655":701822.5016001059,"3656":700755.1029226617,"3657":699201.8255755589,"3658":697647.6335456786,"3659":695614.090592267,"3660":693579.3950063459,"3661":691073.76799125,"3662":688566.7549119594,"3663":685599.088418182,"3664":682629.8078678277,"3665":679211.9698754093,"3666":675792.2961731374,"3667":671937.9312216743,"3668":668081.5161209701,"3669":663805.9914609051,"3670":659528.2102723891,"3671":654848.5552174924,"3672":650166.4461296344,"3673":645101.2848501434,"3674":640033.4816873264,"3675":634602.9597088563,"3676":629169.6183922451,"3677":623395.3230906385,"3678":617618.0420919574,"3679":611522.9174978166,"3680":605424.6526001167,"3681":599032.9088492,"3682":592637.8825508688,"3683":585974.9003378162,"3684":579308.5062574772,"3685":572400.7366697825,"3686":565489.4393293309,"3687":558364.2994570608,"3688":551235.5298382915,"3689":543921.2945713364,"3690":536603.3418584417,"3691":529129.0322985236,"3692":521650.9322336067,"3693":514046.2011612373,"3694":506437.6214535795,"3695":498732.6363021198,"3696":491023.7595432585,"3697":483249.083341889,"3698":475470.4878887985,"3699":467656.9586442019,"3700":459839.4979404797,"3701":452018.1069333968,"3702":444192.7877448497,"3703":436394.5572216213,"3704":428592.4172667793,"3705":420848.2780087969,"3706":413100.2634672109,"3707":405440.9327212408,"3708":397777.7761031298,"3709":390233.6363544096,"3710":382685.7352134531,"3711":375286.7142799529,"3712":367884.0112481146,"3713":360659.4641691145,"3714":353431.3287867331,"3715":346409.9219719467,"3716":339385.0347796543,"3717":332594.6328760034,"3718":325800.8722257274,"3719":319268.4281483872,"3720":312732.7601802654,"3721":306484.2087417957,"3722":300232.5809611887,"3723":294292.7365187529,"3724":288349.9753932937,"3725":282742.4339177233,"3726":277132.146898662,"3727":271879.1928519726,"3728":266623.675206333,"3729":261746.1935951805,"3730":256866.3404165947,"3731":252383.734368698,"3732":247898.9581140185,"3733":243829.0723029405,"3734":239757.2261801763,"3735":236116.2764005422,"3736":232473.5839104428,"3737":229276.0930816649,"3738":226077.0839909894,"3739":223335.8248419416,"3740":220593.277841147,"3741":218319.2225020906,"3742":216044.1147736937,"3743":214246.3914743041,"3744":212447.8553710024,"3745":211133.7124154479,"3746":209818.9994189071,"3747":208993.7765801389,"3748":208168.2286827467,"3749":207835.336128875,"3750":207502.3647513596,"3751":207663.2695873123,"3752":207824.3421154532,"3753":208478.5625930068,"3754":209133.1965865629,"3755":210278.3040056109,"3756":211424.0691023204,"3757":213055.6973958726,"3758":214688.2249030048,"3759":216800.0878680877,"3760":218913.0880037153,"3761":221497.0041101679,"3762":224082.2908260773,"3763":227128.215505346,"3764":230175.7387936741,"3765":233671.8040801571,"3766":237169.6896361898,"3767":241102.2510047152,"3768":245036.8470893864,"3769":249390.5373039248,"3770":253746.4686210209,"3771":258504.2583822023,"3772":263264.4867576474,"3773":268407.7519096238,"3774":273553.6435334178,"3775":279062.238564949,"3776":284573.6375302961,"3777":290425.9750799033,"3778":296281.2829294372,"3779":302454.4189808697,"3780":308630.6799458849,"3781":315100.4043777235,"3782":321573.3959741651,"3783":328314.3281060967,"3784":335058.6567296619,"3785":342044.3454885073,"3786":349033.5466316098,"3787":356236.5749416056,"3788":363443.2176367473,"3789":370835.3106222921,"3790":378231.1056995633,"3791":385783.2422732145,"3792":393339.1540047864,"3793":401021.6814002978,"3794":408708.0420911485,"3795":416490.7928894135,"3796":424277.4199622534,"3797":432129.8311483337,"3798":439986.1462604244,"3799":447877.379841867,"3800":455772.5295638353,"3801":463671.5942741173,"3802":471574.5718543679,"3803":479450.4454613545,"3804":487330.2131955577,"3805":495151.964932051,"3806":502977.5766548437,"3807":510714.4892882601,"3808":518455.2125035992,"3809":526076.9035628705,"3810":533702.3407312407,"3811":541178.8824125552,"3812":548659.0909161451,"3813":555961.128194369,"3814":563266.7385069797,"3815":570365.6049865341,"3816":577467.9365816625,"3817":584335.7676297472,"3818":591206.9421695825,"3819":597816.7848851334,"3820":604429.8362436425,"3821":610755.7558281986,"3822":617084.7365141137,"3823":623101.9186245992,"3824":629122.0021843686,"3825":634806.8508640273,"3826":640494.4298604702,"3827":645824.6606613492,"3828":651157.4398414994,"3829":656112.1677709956,"3830":661069.252055268,"3831":665629.0739997022,"3832":670191.0509452774,"3833":674338.1222451152,"3834":678487.1386580074,"3835":682205.2435326403,"3836":685925.0759261112,"3837":689199.6914701323,"3838":692475.8100914217,"3839":695294.1635899503,"3840":698113.7897625888,"3841":700464.9090993467,"3842":702817.0656547945,"3843":704691.8226140754,"3844":706567.3772135982,"3845":707958.5235051939,"3846":709350.2246810808,"3847":710252.4205459855,"3848":711154.926319789,"3849":711564.7616038296,"3850":711974.6605687522,"3851":711890.668180925,"3852":711806.4929651057,"3853":711229.1546675471,"3854":710651.387725134,"3855":709583.1322318509,"3856":708514.203939001,"3857":706959.3973308746,"3858":705403.6763942038,"3859":703368.6048880853,"3860":701332.3811033925,"3861":698825.2262433112,"3862":696316.6856726728,"3863":693347.4920410368,"3864":690376.6847061646,"3865":686957.3202824211,"3866":683536.1205018685,"3867":679680.2298250218,"3868":675822.2893516824,"3869":671545.2396715835,"3870":667265.9338154872,"3871":662584.7544453164,"3872":657901.1213943436,"3873":652834.4365037491,"3874":647765.110081694,"3875":642333.0651957034,"3876":636898.201323143,"3877":631122.383817012,"3878":625343.5809650841,"3879":619246.9348688289,"3880":613147.1488199997,"3881":606753.8842687933,"3882":600357.337520866,"3883":593692.835208765,"3884":587024.9213797797,"3885":580115.6323936951,"3886":573202.8160049646,"3887":566076.1574343813,"3888":558945.8694671197,"3889":551630.1162013477,"3890":544310.6458391667,"3891":536834.8189793483,"3892":529355.2019637723,"3893":521748.9542898402,"3894":514138.8583295724,"3895":506432.3572743105,"3896":498721.9649603111,"3897":490945.7735523235,"3898":483165.6632409908,"3899":475350.6194863845,"3900":467531.6446207411,"3901":459708.7397996825,"3902":451881.9071449614,"3903":444082.1635032177,"3904":436278.5107773759,"3905":428532.8590957664,"3906":420783.3324777829,"3907":413122.4900025022,"3908":405457.8220020251,"3909":397912.171217741,"3910":390362.75938788,"3911":382962.2281119927,"3912":375558.0150841427,"3913":368331.9583553641,"3914":361102.3136692959,"3915":354079.3978967724,"3916":347053.0020925512,"3917":340261.0919226383,"3918":333465.8233516258,"3919":326931.8716989333,"3920":320394.6965007024,"3921":314144.6381772258,"3922":307891.5038565734,"3923":301950.153218913,"3924":296005.8862429092,"3925":290396.8392613339,"3926":284785.047080667,"3927":279530.5882166311,"3928":274273.5660977642,"3929":269394.5803573636,"3930":264513.2233933687,"3931":260029.1139037626,"3932":255542.8345509338,"3933":251471.4459851269,"3934":247398.097450915,"3935":243755.6456029753,"3936":240111.4513875731,"3937":236912.4591763563,"3938":233711.949045967,"3939":230969.1891997917,"3940":228225.1418443174,"3941":225949.5864928905,"3942":223672.9790942941,"3943":221873.7564667376,"3944":220073.7213771636,"3945":218758.0797770934,"3946":217441.8684776555,"3947":216615.1476774712,"3948":215788.1021600062,"3949":215453.7123272677,"3950":215119.2440119536,"3951":215278.6522510389,"3952":215438.2285231065,"3953":216090.9530852438,"3954":216744.0915039036,"3955":217887.7036884386,"3956":219031.9738908819,"3957":220662.1076302779,"3958":222293.1409232275,"3959":224403.5100139652,"3960":226515.0166149488,"3961":229097.4395263226,"3962":231681.2333865823,"3963":234725.6655494946,"3964":237771.6966606241,"3965":241266.2701089304,"3966":244762.664165673,"3967":248693.7343736595,"3968":252626.8396364079,"3969":256979.0393675042,"3970":261333.4805395042,"3971":266089.7804938004,"3972":270848.5194004365,"3973":275990.2954215456,"3974":281134.6982522793,"3975":286641.8048284228,"3976":292151.7156759206,"3977":298002.5654450826,"3978":303856.3858514415,"3979":310028.0347968351,"3980":316202.8089928137,"3981":322671.0469924844,"3982":329142.5524934931,"3983":335881.9988665933,"3984":342624.8420677952,"3985":349609.0457406125,"3986":356596.7621338885,"3987":363798.3060301266,"3988":371003.4646474466,"3989":378394.0738909725,"3990":385788.3855618957,"3991":393339.0390647364,"3992":400893.4680609035,"3993":408574.5130562832,"3994":416259.391682143,"3995":424040.660750426,"3996":431825.8064281607,"3997":439676.7365538806,"3998":447531.5709402243,"3999":455421.3241304014,"4000":463314.9937954542,"4001":471212.5787830394,"4002":479114.0769746816,"4003":486988.4715270082,"4004":494866.7605403888,"4005":502687.0338897476,"4006":510511.1675589638,"4007":518246.6024722469,"4008":525985.8483007494,"4009":533606.062306358,"4010":541230.0227540972,"4011":548705.0880477044,"4012":556183.8204963609,"4013":563484.3820523049,"4014":570788.5169751472,"4015":577885.9083973361,"4016":584986.7652673541,"4017":591853.1219224551,"4018":598722.822401318,"4019":605331.1913877646,"4020":611942.7693489147,"4021":618267.2158677181,"4022":624594.7238193759,"4023":630610.4335269548,"4024":636629.0450150411,"4025":642312.4219541235,"4026":647998.5295409559,"4027":653327.2892630674,"4028":658658.5976951566,"4029":663611.8552071855,"4030":668567.469404442,"4031":673125.8215921865,"4032":677686.3291112785,"4033":681831.9313147025,"4034":685979.4789611273,"4035":689696.1153991055,"4036":693414.4796856171,"4037":696687.6274522388,"4038":699962.2786255648,"4039":702779.1650054341,"4040":705597.3243885991,"4041":707946.9772649343,"4042":710297.6676888856,"4043":712170.9588454725,"4044":714045.0479709739,"4045":715434.729117095,"4046":716824.9654759265,"4047":717725.6968520723,"4048":718626.7384652832,"4049":719035.1099167735,"4050":719443.5453770615,"4051":719358.0898123897,"4052":719272.4517473895,"4053":718693.6509281892,"4054":718114.4217915463,"4055":717044.7044313211,"4056":715974.314598692,"4057":714418.0467778217,"4058":712860.8649553185,"4059":710824.3328901546,"4060":708786.6488730798,"4061":706278.03410715,"4062":703768.0339570763,"4063":700797.3810722919,"4064":697825.1148104375,"4065":694404.2917857451,"4066":690981.6337301603,"4067":687124.2851040737,"4068":683264.887007155,"4069":678986.3800290212,"4070":674705.6172003064,"4071":670022.9811828171,"4072":665337.8918096878,"4073":660269.7509219882,"4074":655198.9688277541,"4075":649765.4685943777,"4076":644329.1496991115,"4077":638551.8774948263,"4078":632771.620269182,"4079":626673.5201235079,"4080":620572.2803494494,"4081":614177.5623970802,"4082":607779.5625719198,"4083":601113.6075064074,"4084":594444.2412477024,"4085":587533.5001554786,"4086":580619.2319840468,"4087":573491.1219540955,"4088":566359.3828506685,"4089":559042.178771824,"4090":551721.2579195198,"4091":544243.9808924241,"4092":536762.9140322944,"4093":529155.216836395,"4094":521543.6716766406,"4095":513835.7217442432,"4096":506123.880875351,"4097":498346.2412345695,"4098":490564.6830124399,"4099":482748.1916689116,"4100":474927.7695360845,"4101":467103.4177694757,"4102":459275.1384907094,"4103":451473.9485463176,"4104":443668.8498390811,"4105":435921.7524972299,"4106":428170.7805400359,"4107":420508.4930464402,"4108":412842.3803484395,"4109":405295.2851872952,"4110":397744.42930113,"4111":390342.4542893522,"4112":382936.7978459251,"4113":375709.2980217541,"4114":368478.2105603706,"4115":361453.8523324683,"4116":354426.0143927041,"4117":347632.6624069631,"4118":340835.9523397041,"4119":334300.5595102426,"4120":327761.9434545939,"4121":321510.4445929425,"4122":315255.8700532208,"4123":309313.0795154942,"4124":303367.3729583074,"4125":297756.8867143018,"4126":292143.6555898518,"4127":286887.7581005552,"4128":281629.297674841,"4129":276748.8739458725,"4130":271866.0793114856,"4131":267380.5324695427,"4132":262892.8160823066,"4133":258819.9907999133,"4134":254745.205866814,"4135":251101.3179375745,"4136":247455.6879583322,"4137":244255.2603006268,"4138":241053.3150409792,"4139":238309.1203826638,"4140":235563.6385320422,"4141":233286.6490023514,"4142":231008.6077422564,"4143":229207.9515698458,"4144":227406.4832519507,"4145":226089.4087399731,"4146":224771.7648449282,"4147":223943.6117653166,"4148":223115.1342844918,"4149":222779.3128043431,"4150":222443.413157453,"4151":222601.3903806805,"4152":222759.5359524931,"4153":223410.8301298614,"4154":224062.5384791247,"4155":225204.7209095187,"4156":226347.5616729605,"4157":227976.2662883818,"4158":229605.8707722665,"4159":231714.8113687345,"4160":233824.8897901261,"4161":236405.8848364764,"4162":238988.2511461615,"4163":242031.2560728357,"4164":245075.8602619444,"4165":248569.0071023416,"4166":252063.9748651648,"4167":255993.6190931068,"4168":259925.2986895798,"4169":264276.0730680474,"4170":268629.0892009555,"4171":273383.9644295755,"4172":278141.278923851,"4173":283281.6308457891,"4174":288424.6098904285,"4175":293930.2929934512,"4176":299438.780680678,"4177":305288.2076023102,"4178":311140.6054737586,"4179":317310.8321967644,"4180":323484.1844827504,"4181":329951.000884711,"4182":336421.0851001925,"4183":343159.1104998222,"4184":349900.5330395043,"4185":356883.3163626287,"4186":363869.6127179468,"4187":371069.7368878317,"4188":378273.4760902994,"4189":385662.66623035,"4190":393055.5591090836,"4191":400604.7941308902,"4192":408157.8049570678,"4193":415837.4320934057,"4194":423520.8931710445,"4195":431300.7450018231,"4196":439084.4737526458,"4197":446933.9872619575,"4198":454787.4053422658,"4199":462675.7425366699,"4200":470567.9965161171,"4201":478464.1661281366,"4202":486364.2492541485,"4203":494237.229050666,"4204":502114.1036179502,"4205":509932.9628308135,"4206":517755.6826730247,"4207":525489.7040686825,"4208":533227.5366888287,"4209":540846.3377952395,"4210":548468.8856528292,"4211":555942.5386652243,"4212":563419.8591414966,"4213":570719.0090337737,"4214":578021.7326015562,"4215":585117.7129771828,"4216":592217.1591090258,"4217":599082.1053342293,"4218":605950.3956913626,"4219":612557.3548641379,"4220":619167.5233195651,"4221":625490.5606404851,"4222":631816.659701989,"4223":637830.960827035,"4224":643848.1640400994,"4225":649530.1330115621,"4226":655214.8329380678,"4227":660542.1853070372,"4228":665872.0866930598,"4229":670823.9374659881,"4230":675778.1452310025,"4231":680335.0912932539,"4232":684894.1929934938,"4233":689038.389684598,"4234":693184.5321251272,"4235":696899.7636635252,"4236":700616.7233566646,"4237":703888.4668360135,"4238":707161.7140280583,"4239":709977.1967325303,"4240":712793.9527460731,"4241":715142.2025584551,"4242":717491.4902240126,"4243":719363.3789276595,"4244":721236.0659055656,"4245":722624.3452093296,"4246":724013.1800309349,"4247":724912.5101748776,"4248":725812.1508608018,"4249":726219.1216898144,"4250":726626.156832327,"4251":726539.3012544753,"4252":726452.2634807836,"4253":725872.0632572738,"4254":725291.4350205961,"4255":724220.3188645053,"4256":723148.5305400724,"4257":721590.864531354,"4258":720032.2848248521,"4259":717994.3551794328,"4260":715955.2738857395,"4261":713445.2621467224,"4262":710933.8653269863,"4263":707961.8160758589,"4264":704988.1537508746,"4265":701565.9349661598,"4266":698141.8814535548,"4267":694283.1376733445,"4268":690422.3447250929,"4269":686142.4431983117,"4270":681860.2861235297,"4271":677176.2561624482,"4272":672489.7731480966,"4273":667420.2389214393,"4274":662348.0637904075,"4275":656913.1708222883,"4276":651475.4594942292,"4277":645696.7951589967,"4278":639915.1461041457,"4279":633815.6544309009,"4280":627713.0234308033,"4281":621316.9145538224,"4282":614917.524105373,"4283":608250.1787177903,"4284":601579.4224381292,"4285":594667.29162596,"4286":587751.6340354891,"4287":580622.1348873011,"4288":573489.0069663359,"4289":566170.4143705479,"4290":558848.1053017915,"4291":551369.4403586311,"4292":543886.9858827206,"4293":536277.9013712209,"4294":528664.9691959436,"4295":520955.6325479972,"4296":513242.4052634265,"4297":505463.3795067341,"4298":497680.4354683584,"4299":489862.5586081453,"4300":482040.7512580922,"4301":474215.0145736134,"4302":466385.3506762301,"4303":458582.7764123718,"4304":450776.2936847166,"4305":443027.8126213923,"4306":435275.4572415682,"4307":427611.7866240831,"4308":419944.2911008314,"4309":412395.8134129724,"4310":404843.5752985267,"4311":397440.2183568005,"4312":390033.1802816553,"4313":382804.2991238944,"4314":375571.8306269476,"4315":368546.0916614069,"4316":361516.8732818276,"4317":354722.1411539931,"4318":347924.051242261,"4319":341387.278865845,"4320":334847.2835606594,"4321":328594.4057467874,"4322":322338.4525520601,"4323":316394.2836564422,"4324":310447.199038377,"4325":304835.335030405,"4326":299220.7264387999,"4327":293963.4517790587,"4328":288703.6144795095,"4329":283821.8141732154,"4330":278937.6432579113,"4331":274450.7204313594,"4332":269961.6283557221,"4333":265887.427681035,"4334":261811.2676516491,"4335":258166.0049220301,"4336":254519.0004382151,"4337":251317.1985716442,"4338":248113.8793987378,"4339":245368.311122671,"4340":242621.4559497053,"4341":240343.0933929779,"4342":238063.6794010546,"4343":236261.650791924,"4344":234458.810332318,"4345":233140.363973539,"4346":231821.3485265029,"4347":230991.8241896113,"4348":230161.9757461182,"4349":229824.783597814,"4350":229487.5135771822,"4351":229644.1207209826,"4352":229800.8965075839,"4353":230450.8211938582,"4354":231101.1603460458,"4355":232241.9738732835,"4356":233383.4460273904,"4357":235010.7823271993,"4358":236639.0187890958,"4359":238746.5916571014,"4360":240855.3026434582,"4361":243434.9305481029,"4362":246015.9300093137,"4363":249057.5683806467,"4364":252100.8063074494,"4365":255592.5871784776,"4366":259086.1892647715,"4367":263014.4681089256,"4368":266944.7826142546,"4369":271294.1921941247,"4370":275645.843820884,"4371":280399.3548357064,"4372":285155.3054084383,"4373":290294.2937009892,"4374":295435.9094083008,"4375":300940.2294659578,"4376":306447.354399684,"4377":312295.4188595836,"4378":318146.4545609702,"4379":324315.3194054884,"4380":330487.3101044642,"4381":336952.7652107951,"4382":343421.4884219308,"4383":350158.153108402,"4384":356898.2152260162,"4385":363879.6384180672,"4386":370864.5749332096,"4387":378063.3395537205,"4388":385265.7194975197,"4389":392653.5506695106,"4390":400045.0848706979,"4391":407592.9615053752,"4392":415144.6142347445,"4393":422822.8835644993,"4394":430504.9871256844,"4395":438283.4817300429,"4396":446065.8535443837,"4397":453914.0104070558,"4398":461766.0721304711,"4399":469653.0532576338,"4400":477543.9514593955,"4401":485438.7655831903,"4402":493337.4935103428,"4403":501209.1183972711,"4404":509084.6383441417,"4405":516902.143225671,"4406":524723.5090255336,"4407":532456.1766677329,"4408":540192.6558232161,"4409":547810.1037536645,"4410":555431.2987238979,"4411":562903.5991374481,"4412":570379.5673032921,"4413":577677.3651734634,"4414":584978.7370073682,"4415":592073.3659372504,"4416":599171.4609113883,"4417":606035.056266832,"4418":612901.9960420565,"4419":619507.6049206799,"4420":626116.4233696181,"4421":632438.1109716182,"4422":638762.8606016776,"4423":644775.81258266,"4424":650791.6669389488,"4425":656472.2873408297,"4426":662155.6389848544,"4427":667481.6433583497,"4428":672810.197035811,"4429":677760.7003869991,"4430":682713.5610169994,"4431":687269.1602308707,"4432":691826.9153692706,"4433":695969.7657849824,"4434":700114.5622364731,"4435":703828.4480720944,"4436":707544.0623486253,"4437":710814.460697441,"4438":714086.3630449357,"4439":716900.5011907477,"4440":719715.9129314282,"4441":722062.8187566525,"4442":724410.7627206653,"4443":726281.3080082869,"4444":728152.6518555959,"4445":729539.588314098,"4446":730927.0805756842,"4447":731825.068444759,"4448":732723.3671408746,"4449":733128.9962650451,"4450":733534.6899875908,"4451":733446.4932745551,"4452":733358.1146503707,"4453":732776.5738609676,"4454":732194.6053429047,"4455":731122.1491898443,"4456":730049.0211527668,"4457":728490.015715637,"4458":726930.0968648652,"4459":724890.8283592262,"4460":722850.4084892727,"4461":720339.0584578627,"4462":717826.3236295107,"4463":714852.9366534527,"4464":711877.9368871328,"4465":708454.3809445857,"4466":705028.9905575612,"4467":701168.910186253,"4468":697306.7809301347,"4469":693025.5433786274,"4470":688742.0505621685,"4471":684056.6851423698,"4472":679368.8669521695,"4473":674297.9978324417,"4474":669224.4880910272,"4475":663788.2607951228,"4476":658349.2154217861,"4477":652569.2173236927,"4478":646786.2347883079,"4479":640685.4099167663,"4480":634581.4460005189,"4481":628184.004489445,"4482":621783.2816888698,"4483":615114.6042310388,"4484":608442.516162917,"4485":601529.0538439851,"4486":594612.0650283596,"4487":587481.2349365362,"4488":580346.7763533647,"4489":573026.8533767106,"4490":565703.2142083385,"4491":558223.2194467238,"4492":550739.4354334309,"4493":543129.0216655321,"4494":535514.7605147491,"4495":527804.0951721022,"4496":520089.5394735467,"4497":512309.1855834964,"4498":504524.9136923008,"4499":496705.7092597173,"4500":488882.5746176543,"4501":481055.5109214375,"4502":473224.5202924996,"4503":465420.6195771815,"4504":457612.810678073,"4505":449863.0037232133,"4506":442109.3227316834,"4507":434444.326782234,"4508":426775.506206671,"4509":419225.7037460658,"4510":411672.1411383507,"4511":404267.4599827441,"4512":396859.0979730195,"4513":389628.8931598919,"4514":382395.1012867038,"4515":375368.0392239593,"4516":368337.4980261258,"4517":361541.443358899,"4518":354742.0311865491,"4519":348203.9368282022,"4520":341662.6198196852,"4521":335408.4205809938,"4522":329151.1462398718,"4523":323205.6564761966,"4524":317257.2512683242,"4525":311644.066948708,"4526":306028.1383235347,"4527":300769.5439082142,"4528":295508.3871309876,"4529":290625.2676248309,"4530":285739.7777873925,"4531":281251.5363163476,"4532":276761.1258737718,"4533":272685.6071096142,"4534":268608.129268139,"4535":264961.5490037255,"4536":261313.2272623243,"4537":258110.1084152889,"4538":254905.4725389536,"4539":252158.5878364068,"4540":249410.4165138242,"4541":247130.7380842565,"4542":244850.0084961833,"4543":243046.6645675075,"4544":241242.5090648747,"4545":239922.7479395015,"4546":238602.4180022177,"4547":237771.5794513392,"4548":236940.4170700343,"4549":236601.9112600075,"4550":236263.3278536567,"4551":236418.6218876562,"4552":236574.0848402892,"4553":237222.6969683422,"4554":237871.7238379701,"4555":239011.2253582245,"4556":240151.3857808389,"4557":241777.4106245611,"4558":243404.3359056915,"4559":245510.5978681663,"4560":247617.9982241427,"4561":250196.3157734724,"4562":252776.0051543486,"4563":255816.3337202425,"4564":258858.2621164168,"4565":262348.7337315427,"4566":265841.0268365752,"4567":269767.9969740246,"4568":273697.003047121,"4569":278045.1044691458,"4570":282395.4482123628,"4571":287147.6516178615,"4572":291902.2948554038,"4573":297039.976086815,"4574":302180.2850069525,"4575":307683.2985513168,"4576":313189.1172455476,"4577":319035.875739665,"4578":324885.6057488988,"4579":331053.1651748093,"4580":337223.8507286388,"4581":343688.0009632008,"4582":350155.4195758615,"4583":356890.7799370675,"4584":363629.5380025431,"4585":370609.6574154978,"4586":377593.2904245035,"4587":384790.7518117531,"4588":391991.8287950833,"4589":399378.3572793141,"4590":406768.5890653668,"4591":414315.1635574516,"4592":421865.5144166874,"4593":429542.4821486846,"4594":437223.2843844051,"4595":445000.4779355083,"4596":452781.5489687207,"4597":460628.4053223082,"4598":468479.1668085998,"4599":476364.8479705169,"4600":484254.4464788285,"4601":492147.9611808856,"4602":500045.3899579303,"4603":507915.7159662984,"4604":515789.9373060732,"4605":523606.1438518895,"4606":531426.2115873388,"4607":539157.5814363427,"4608":546892.7630697654,"4609":554508.9137492065,"4610":562128.8117394031,"4611":569599.8154438052,"4612":577074.4871713078,"4613":584370.9888738618,"4614":591671.064810792,"4615":598764.3981142603,"4616":605861.197732463,"4617":612723.4980023684,"4618":619589.1429623695,"4619":626193.457296003,"4620":632800.9814701033,"4621":639121.3750673352,"4622":645444.8309626152,"4623":651456.4894787255,"4624":657471.0506399678,"4625":663150.3781165465,"4626":668832.437104932,"4627":674157.1490923696,"4628":679484.4106532742,"4629":684433.6221573246,"4630":689385.1912095256,"4631":693939.4991148547,"4632":698495.9632138886,"4633":702637.5228593296,"4634":706781.028809564,"4635":710493.6244128624,"4636":714207.9487259231,"4637":717477.0573800409,"4638":720747.670301529,"4639":723560.5192899448,"4640":726374.6421417594,"4641":728720.2593465673,"4642":731066.914958533,"4643":732936.1721623964,"4644":734806.2281941555,"4645":736191.8771052357,"4646":737578.0820874483,"4647":738474.7829451171,"4648":739371.7948977138,"4649":739776.1375461733,"4650":740180.5450607353,"4651":740091.0624073631,"4652":740001.3981104102,"4653":739418.5719157257,"4654":738835.31825979,"4655":737761.5772361843,"4656":736687.1645958099,"4657":735126.874822552,"4658":733565.6719027414,"4659":731525.1195950728,"4660":729483.4161900197,"4661":726970.7828903609,"4662":724456.7650605311,"4663":721482.0953496872,"4664":718505.8131151937,"4665":715080.9749710067,"4666":711654.302648796,"4667":707792.9406086768,"4668":703929.5299500432,"4669":699647.0112622373,"4670":695362.2375756183,"4671":690675.5915517178,"4672":685986.4930233961,"4673":680914.3438314479,"4674":675839.5542836358,"4675":670402.0474470771,"4676":664961.7227987513,"4677":659180.4456912553,"4678":653396.1844119758,"4679":647294.0810619687,"4680":641188.8389326069,"4681":634790.1194736907,"4682":628388.1189904677,"4683":621718.1641151044,"4684":615044.798894488,"4685":608130.0596880207,"4686":601211.7942497411,"4687":594079.6878000665,"4688":586943.953123769,"4689":579622.7543186356,"4690":572297.8395863534,"4691":564816.5695253197,"4692":557331.5104770212,"4693":549719.8219384523,"4694":542104.2862812568,"4695":534392.3466963774,"4696":526676.517019692,"4697":518894.8894155361,"4698":511109.3440741827,"4699":503288.8664553107,"4700":495464.4588907517,"4701":487636.1225357536,"4702":479803.8595116721,"4703":471998.6866647705,"4704":464189.6058975614,"4705":456438.5273380071,"4706":448683.5750051112,"4707":441017.3079775471,"4708":433347.2165870441,"4709":425796.1435745963,"4710":418241.3106780591,"4711":410835.3594965739,"4712":403425.7277238377,"4713":396194.2534104885,"4714":388959.1922997919,"4715":381930.8612621754,"4716":374899.0513520296,"4717":368101.7282349741,"4718":361301.047875202,"4719":354761.6855917633,"4720":348219.100920408,"4721":341963.6342810557,"4722":335705.0928013738,"4723":329758.3361611633,"4724":323808.6643387041,"4725":318194.2136663733,"4726":312577.0189502814,"4727":307317.1587057621,"4728":302054.7363609807,"4729":297170.351548837,"4730":292283.5966669034,"4731":287794.0904127792,"4732":283302.4154484643,"4733":279225.6324238318,"4734":275146.8905830702,"4735":271499.046580483,"4736":267849.4613619452,"4737":264645.0792987346,"4738":261439.18046711,"4739":258691.0330700843,"4740":255941.5993137575,"4741":253660.6587111051,"4742":251378.6672105313,"4743":249574.0616298634,"4744":247768.6447356719,"4745":246447.6224790981,"4746":245126.0316708969,"4747":244293.9325093085,"4748":243461.5097774265,"4749":243121.7438768802,"4750":242781.9006399926,"4751":242935.9351033629,"4752":243090.1387451995,"4753":243737.4918222137,"4754":244385.2599004862,"4755":245523.5028889934,"4756":246662.4050393942,"4757":248287.1718703617,"4758":249912.8393981215,"4759":252017.8438665356,"4760":254123.9869876863,"4761":256701.047561351,"4762":259279.4802256485,"4763":262318.5523339754,"4764":265359.2245315202,"4765":268848.4402068797,"4766":272339.477630935,"4767":276265.1923461218,"4768":280192.943255596,"4769":284539.7897725652,"4770":288888.8788692189,"4771":293639.8278865726,"4772":298393.2169943143,"4773":303529.6443541953,"4774":308668.6996609994,"4775":314170.4598501528,"4776":319675.0254472218,"4777":325520.5311021525,"4778":331369.008530101,"4779":337535.3156325542,"4780":343704.7491206805,"4781":350167.6475472201,"4782":356633.8146094655,"4783":363367.92367779,"4784":370105.4307078443,"4785":377084.2993427647,"4786":384066.6818310494,"4787":391262.8929548186,"4788":398462.7199318352,"4789":405847.9986668464,"4790":413236.9809607,"4791":420782.3062175335,"4792":428331.4080983925,"4793":436007.1271088145,"4794":443686.6808796881,"4795":451462.6262226003,"4796":459242.4493042044,"4797":467088.0579626934,"4798":474937.5720103238,"4799":482822.0059899441,"4800":490710.3575722504,"4801":498602.6256045214,"4802":506498.8079679265,"4803":514367.8878187287,"4804":522240.8632569393,"4805":530055.8241571201,"4806":537874.6465027904,"4807":545604.7712177992,"4808":553338.7079729388,"4809":560953.614029736,"4810":568572.2676528561,"4811":576042.0272456766,"4812":583515.4551170204,"4813":590810.7132187666,"4814":598109.5458101674,"4815":605201.636023313,"4816":612297.1928063275,"4817":619158.2504961076,"4818":626022.6531309742,"4819":632625.7253943922,"4820":639232.0077531238,"4821":645551.1597897628,"4822":651873.3743791532,"4823":657883.791844006,"4824":663897.1122085513,"4825":669575.1991429217,"4826":675256.0178435162,"4827":680579.4897975082,"4828":685905.5115792418,"4829":690853.483558324,"4830":695803.8133396883,"4831":700356.8822282408,"4832":704912.107564487,"4833":709052.4287010579,"4834":713194.6963962688,"4835":716906.0539983189,"4836":720619.1405638355,"4837":723887.0117240422,"4838":727156.3874051813,"4839":729967.9994067394,"4840":732780.8855251165,"4841":735125.266249836,"4842":737470.6856349919,"4843":739338.7068652529,"4844":741207.5271765465,"4845":742591.9406202275,"4846":743976.9103880363,"4847":744872.376284226,"4848":745768.1535281979,"4849":746171.2617208164,"4850":746574.4350322502,"4851":746483.718428393,"4852":746392.820433527,"4853":745808.7607934315,"4854":745224.2739445162,"4855":744149.2999802923,"4856":743073.6546515905,"4857":741512.1324422263,"4858":739949.6973384599,"4859":737907.9130989158,"4860":735864.9780139979,"4861":733351.1132864142,"4862":730835.8642805306,"4863":727859.9636454328,"4864":724882.4507384162,"4865":721456.382173366,"4866":718028.4796818837,"4867":714165.8877240135,"4868":710301.2473990803,"4869":706017.4992963563,"4870":701731.4964461309,"4871":697043.6215098664,"4872":692353.2943203533,"4873":687279.9167183171,"4874":682203.8990114501,"4875":676765.1642668011,"4876":671323.6119612795,"4877":665541.1074474131,"4878":659755.6190125194,"4879":653652.2887575848,"4880":647545.8199739127,"4881":641145.8741112348,"4882":634742.6474747291,"4883":628071.466696493,"4884":621396.8758233448,"4885":614480.9112146175,"4886":607561.4206242808,"4887":600428.089272683,"4888":593291.1299445269,"4889":585968.7067375316,"4890":578642.5678533145,"4891":571160.0738902042,"4892":563673.7911896188,"4893":556060.8792484838,"4894":548444.1204383746,"4895":540730.9579501651,"4896":533013.9056196645,"4897":525231.0556111402,"4898":517444.288114796,"4899":509622.588590243,"4900":501796.9593692438,"4901":493967.4016069783,"4902":486133.9174247336,"4903":478327.5236687049,"4904":470517.2222413364,"4905":462764.923270522,"4906":455008.7507751973,"4907":447341.2638339677,"4908":439669.9527784939,"4909":432117.6603497023,"4910":424561.6082853803,"4911":417154.4381846013,"4912":409743.5877409939,"4913":402510.8950051287,"4914":395274.6157202034,"4915":388245.0667565771,"4916":381212.0391685733,"4917":374413.4986217437,"4918":367611.6010802132,"4919":361071.0218629646,"4920":354527.2205056802,"4921":348270.5374282119,"4922":342010.7797581595,"4923":336062.8071752565,"4924":330111.9196577154,"4925":324496.2535378458,"4926":318877.8436216909,"4927":313616.7684245168,"4928":308353.1313744218,"4929":303467.5321042382,"4930":298579.5630114711,"4931":294088.8427936529,"4932":289595.954112716,"4933":285517.9576184665,"4934":281438.0025550258,"4935":277788.9455766304,"4936":274138.1476290881,"4937":270932.55308361,"4938":267725.4420163878,"4939":264976.0826303676,"4940":262225.4371315824,"4941":259943.2850329411,"4942":257660.0822827808,"4943":255854.2656988623,"4944":254047.6380476894,"4945":252725.4052803367,"4946":251402.6042074922,"4947":250569.2950273301,"4948":249735.6625228769,"4949":249394.6870956958,"4950":249053.6345780429,"4951":249206.4600064513,"4952":249359.4548590628,"4953":250005.5993925228,"4954":250652.1591728449,"4955":251789.1941089398,"4956":252926.8884524,"4957":254550.4477218323,"4958":256174.9079333963,"4959":258278.7053308878,"4960":260383.641626323,"4961":262959.4956194133,"4962":265536.7219482112,"4963":268574.5879660478,"4964":271614.0543180453,"4965":275102.0643927347,"4966":278591.8964609312,"4967":282516.4060650047,"4968":286442.9521080454,"4969":290788.5940031949,"4970":295136.4787225773,"4971":299886.2236071422,"4972":304638.4088265121,"4973":309773.6325423726,"4974":314911.4844494418,"4975":320412.0414830808,"4976":325915.4041687898,"4977":331759.70715645,"4978":337606.9821611518,"4979":343772.0870843168,"4980":349940.318637048,"4981":356402.0153720204,"4982":362866.9809864611,"4983":369599.8888506782,"4984":376336.1949202573,"4985":383313.8628382694,"4986":390295.0448531478,"4987":397490.0557469472,"4988":404688.6827373659,"4989":412072.7617290858,"4990":419460.5445228899,"4991":427004.6705228507,"4992":434552.5733899489,"4993":442227.0936296569,"4994":449905.4488727989,"4995":457680.1959308969,"4996":465458.8209705393,"4997":473303.2318298547,"4998":481151.5483210346,"4999":489034.784986863,"5000":496921.9394979714,"5001":504813.0107015739,"5002":512707.9964787753,"5003":520575.8799857744,"5004":528447.6593225176,"5005":536261.4243635023,"5006":544079.0510921839,"5007":551807.9804323465,"5008":559540.7220547185,"5009":567154.4332207619,"5010":574771.8921950784,"5011":582240.4573809808,"5012":589712.691087228,"5013":597006.7552656349,"5014":604304.3941753895,"5015":611395.290948518,"5016":618489.6545330808,"5017":625349.5192659098,"5018":632212.7291852627,"5019":638814.6089745403,"5020":645419.6991004408,"5021":651737.6591454941,"5022":658058.6819844805,"5023":664067.9079400471,"5024":670080.0370363602,"5025":675756.9329434891,"5026":681436.5608577683,"5027":686758.8422663086,"5028":692083.6737433895,"5029":697030.4556585551,"5030":701979.5956166751,"5031":706531.4749225921,"5032":711085.5109167483,"5033":715224.6429517111,"5034":719365.7217857321,"5035":723075.8907669476,"5036":726787.7889519216,"5037":730054.4719718141,"5038":733322.6597528042,"5039":736133.0840943154,"5040":738944.7827926845,"5041":741287.9763373719,"5042":743632.208782408,"5043":745499.0433123987,"5044":747366.6771632086,"5045":748749.9043861291,"5046":750133.688172838,"5047":751027.9683275251,"5048":751922.5600695295,"5049":752324.4829996516,"5050":752726.4712879986,"5051":752634.5699003999,"5052":752542.4873610758,"5053":751957.2434157429,"5054":751371.5725007476,"5055":750295.4147095395,"5056":749218.585792886,"5057":747655.8802345392,"5058":746092.2620206979,"5059":744049.2949099242,"5060":742005.1771925585,"5061":739490.1300712472,"5062":736973.6989102928,"5063":733996.6163587195,"5064":731017.92177376,"5065":727590.6717692376,"5066":724161.5880766904,"5067":720297.8151561014,"5068":716431.9941067328,"5069":712147.0655177947,"5070":707859.8824195142,"5071":703170.827473292,"5072":698479.3205118557,"5073":693404.7633758691,"5074":688327.5663729628,"5075":682887.6525701232,"5076":677444.9214441978,"5077":671661.2383476526,"5078":665874.5715677429,"5079":659770.0632053936,"5080":653662.4165518462,"5081":647261.2930567707,"5082":640856.889025283,"5083":634184.531089419,"5084":627508.7632959354,"5085":620591.622004103,"5086":613670.9549678307,"5087":606536.4474074045,"5088":599398.3121074663,"5089":592074.7131656727,"5090":584747.3987835804,"5091":577263.7295594565,"5092":569776.2718346573,"5093":562162.1851060472,"5094":554544.2517451401,"5095":546829.9149427486,"5096":539111.6885346206,"5097":531327.664684962,"5098":523539.7235839159,"5099":515716.8506910318,"5100":507890.048338011,"5101":500059.3176799729,"5102":492224.6608381429,"5103":484417.0946586552,"5104":476605.6210438931,"5105":468852.1501216896,"5106":461094.8059109191,"5107":453426.1474901261,"5108":445753.6651909107,"5109":438200.2017541381,"5110":430642.9789175347,"5111":423234.6382801135,"5112":415822.6175354421,"5113":408588.7547340305,"5114":401351.3056190152,"5115":394320.5870606955,"5116":387286.3901133336,"5117":380486.6804424203,"5118":373683.6140120209,"5119":367141.8661410569,"5120":360596.8963651502,"5121":354339.0451040923,"5122":348078.1194854226,"5123":342128.9791888142,"5124":336176.9241924188,"5125":330560.0908284862,"5126":324940.5139029988,"5127":319678.2719311628,"5128":314413.4683410159,"5129":309526.7027653303,"5130":304637.5676015511,"5131":300145.6815471501,"5132":295651.627264,"5133":291572.4654018463,"5134":287491.3452047508,"5135":283841.1233268897,"5136":280189.1607140111,"5137":276982.4017372655,"5138":273774.1264727852,"5139":271023.6031234562,"5140":268271.7938952515,"5141":265988.4783010203,"5142":263704.1122890399,"5143":261897.1326770112,"5144":260089.3422313783,"5145":258765.9469031559,"5146":257441.9835029726,"5147":256607.5122289427,"5148":255772.717864033,"5149":255430.5808097473,"5150":255088.3668982822,"5151":255240.031166111,"5152":255391.8650913161,"5153":256036.8489304832,"5154":256682.248249567,"5155":257818.1229574181,"5156":258954.6573055701,"5157":260577.0568125703,"5158":262200.3574945189,"5159":264302.9955951524,"5160":266406.7728264278,"5161":268981.4679879973,"5162":271557.5357178541,"5163":274594.2433692703,"5164":277632.5515873086,"5165":281119.4037604412,"5166":284608.0781594242,"5167":288531.4303265683,"5168":292456.8191649047,"5169":296801.3040875162,"5170":301148.0320664676,"5171":305896.6204426499,"5172":310647.6493856264,"5173":315781.7170570241,"5174":320918.4131515021,"5175":326417.8146043628,"5176":331920.0219410475,"5177":337763.1698113787,"5178":343609.2899303881,"5179":349773.2401994386,"5180":355940.3173295747,"5181":362400.8598734124,"5182":368864.6715281205,"5183":375596.4256639484,"5184":382331.578236423,"5185":389308.0928885575,"5186":396288.1218687259,"5187":403481.9799589248,"5188":410679.454376794,"5189":418062.3810269571,"5190":425449.0117101387,"5191":432991.9858303529,"5192":440538.7370485222,"5193":448212.1058700607,"5194":455889.3099257344,"5195":463662.9060270069,"5196":471440.3803404088,"5197":479283.64070401,"5198":487130.8069299444,"5199":495012.8935609376,"5200":502898.8982675633,"5201":510788.8198969771,"5202":518682.6563302264,"5203":526549.3907234515,"5204":534420.021176541,"5205":542232.6375639348,"5206":550049.1158690299,"5207":557776.8970155526,"5208":565508.4906741737,"5209":573121.0541062974,"5210":580737.3655764672,"5211":588204.7834879387,"5212":595675.8701494128,"5213":602968.7875126468,"5214":610265.279836771,"5215":617355.0302537541,"5216":624448.2477115985,"5217":631306.9665470793,"5218":638169.030798396,"5219":644769.765148892,"5220":651373.7100652081,"5221":657690.5251298168,"5222":664010.4032174409,"5223":670018.4846506704,"5224":676029.4694536139,"5225":681705.2212962832,"5226":687383.7053749561,"5227":692704.8431766856,"5228":698028.5312756941,"5229":702974.1700414685,"5230":707922.1670788212,"5231":712472.9036925379,"5232":717025.7972230033,"5233":721163.787022728,"5234":725303.7238499067,"5235":729012.7510526183,"5236":732723.5076873695,"5237":735989.0493852641,"5238":739256.0960724234,"5239":742065.3795482148,"5240":744875.9376089172,"5241":747217.990743935,"5242":749561.0830072415,"5243":751426.7775833858,"5244":753293.2717081753,"5245":754675.3594328453,"5246":756058.0039490162,"5247":756951.1450608216,"5248":757844.5979875436,"5249":758245.3823299261,"5250":758646.2322580197,"5251":758553.1927375972,"5252":758459.9722928222,"5253":757873.5906693549,"5254":757286.7823034851,"5255":756209.4872886058,"5256":755131.521375428,"5257":753567.679047648,"5258":752002.9242914072,"5259":749958.8208652119,"5260":747913.5670593461,"5261":745397.3840763997,"5262":742879.8172806191,"5263":739901.5993209721,"5264":736921.7695546352,"5265":733493.3845953756,"5266":730063.1661746753,"5267":726198.2587524608,"5268":722331.3034279386,"5269":718045.2407902622,"5270":713756.9238696031,"5271":709066.7353273056,"5272":704374.0949960415,"5273":699298.4047164187,"5274":694220.0747960116,"5275":688779.0283017508,"5276":683335.1647104278,"5277":677550.3493744527,"5278":671762.5505810253,"5279":665656.9104310144,"5280":659548.1322156056,"5281":653145.877384413,"5282":646740.3422424974,"5283":640066.8534218384,"5284":633389.9549691373,"5285":626471.6832436093,"5286":619549.8859991072,"5287":612414.2484558618,"5288":605274.9833984594,"5289":597950.2549245008,"5290":590621.8112354877,"5291":583137.0129296312,"5292":575648.4263482323,"5293":568033.2109880998,"5294":560414.1492206925,"5295":552698.6842367672,"5296":544979.3298720168,"5297":537194.178290592,"5298":529405.1096825801,"5299":521581.1095074756,"5300":513753.1800969247,"5301":505921.3226059909,"5302":498085.5391558451,"5303":490276.8465925662,"5304":482464.2468184822,"5305":474709.649961371,"5306":466951.1800400518,"5307":459281.3961330142,"5308":451607.7885718032,"5309":444053.200097229,"5310":436494.852446963,"5311":429085.3872199633,"5312":421672.2421097424,"5313":414437.2551667555,"5314":407198.6821340843,"5315":400166.8398819729,"5316":393131.5194646292,"5317":386330.686547489,"5318":379526.4970945624,"5319":372983.6264247165,"5320":366437.5340735185,"5321":360178.5604607053,"5322":353916.5127137613,"5323":347966.2505123051,"5324":342013.073834434,"5325":336395.1190123428,"5326":330774.4208519596,"5327":325511.057868436,"5328":320245.1334897551,"5329":315357.2473486348,"5330":310466.9918424655,"5331":305973.9856686647,"5332":301478.8114890506,"5333":297398.5299533145,"5334":293316.2903054637,"5335":289664.9491996199,"5336":286011.867581477,"5337":282803.9898221316,"5338":279594.5959976611,"5339":276842.9543108977,"5340":274090.02696776,"5341":271805.5934810432,"5342":269520.1097989702,"5343":267712.0127391879,"5344":265903.1050680862,"5345":264578.592736626,"5346":263253.5125553816,"5347":262417.9247224132,"5348":261582.014020634,"5349":261238.7608514933,"5350":260895.431047134,"5351":261045.9796439755,"5352":261196.6981200462,"5353":261840.5667318781,"5354":262484.8510453718,"5355":263619.6109693245,"5356":264755.0307552153,"5357":266376.3159215384,"5358":267998.5024843398,"5359":270100.0266873027,"5360":272202.6902423298,"5361":274776.2719490203,"5362":277351.2264453132,"5363":280386.8210844273,"5364":283424.0165113716,"5365":286909.7561145648,"5366":290397.3181647092,"5367":294319.5582040622,"5368":298243.8351356016,"5369":302587.2083723564,"5370":306932.8248863382,"5371":311680.3020183846,"5372":316430.2199380053,"5373":321563.1768067742,"5374":326698.7623192968,"5375":332197.0534108221,"5376":337698.1506067385,"5377":343540.1885568148,"5378":349385.1989760298,"5379":355548.039765693,"5380":361714.0076367955,"5381":368173.4411419005,"5382":374636.1439781235,"5383":381366.7895156607,"5384":388100.8337099861,"5385":395076.2402040593,"5386":402055.1612462018,"5387":409247.9116183571,"5388":416444.2785381119,"5389":423826.0979100366,"5390":431211.6215348033,"5391":438753.4888163728,"5392":446299.1334156148,"5393":453971.3958378907,"5394":461647.4937139133,"5395":469419.9838550937,"5396":477196.3524279094,"5397":485038.5072703777,"5398":492884.5681945797,"5399":500765.5497431883,"5400":508650.4495867243,"5401":516539.2665722911,"5402":524431.9985808828,"5403":532297.6287685874,"5404":540167.1552352408,"5405":547978.6678552304,"5406":555794.0426119006,"5407":563520.7204289252,"5408":571251.2109769222,"5409":578862.6715172437,"5410":586477.8803143805,"5411":593944.1957715359,"5412":601414.180197358,"5413":608705.9955435522,"5414":616001.3860691963,"5415":623090.0349062065,"5416":630182.1510025329,"5417":637039.7686948986,"5418":643900.7320214502,"5419":650500.3656654793,"5420":657103.2100935745,"5421":663418.924888156,"5422":669737.7029238943,"5423":675744.6845233273,"5424":681754.5697105114,"5425":687429.2221554065,"5426":693106.607054238,"5427":698426.6458940071,"5428":703749.2352488842,"5429":708693.7754883039,"5430":713640.674217027,"5431":718190.3127397868,"5432":722742.1083969165,"5433":726879.0005408742,"5434":731017.8399298029,"5435":734725.76991173,"5436":738435.4295431101,"5437":741699.874454995,"5438":744965.8245734546,"5439":747774.0116978042,"5440":750583.473624271,"5441":752924.4308422075,"5442":755266.4274055355,"5443":757131.0264987525,"5444":758996.4253576137,"5445":760377.4180333036,"5446":761758.9677173903,"5447":762651.0142139562,"5448":763543.3727422315,"5449":763943.062902909,"5450":764342.8188659869,"5451":764248.6855971874,"5452":764154.3716206226,"5453":763566.8966819005,"5454":762978.9952172603,"5455":761900.6073200427,"5456":760821.5487409083,"5457":759256.6139635011,"5458":757690.7669739121,"5459":755645.5715305953,"5460":753599.225923784,"5461":751081.9513560168,"5462":748563.2931914886,"5463":745583.9840791165,"5464":742603.0633760248,"5465":739173.5876959305,"5466":735742.278770264,"5467":731876.2810589008,"5468":728008.2356609961,"5469":723721.0831656524,"5470":719431.6766029903,"5471":714740.3986343025,"5472":710046.6690922107,"5473":704969.8898172708,"5474":699890.4711170071,"5475":694448.3360582984,"5476":689003.3841178861,"5477":683217.4806481289,"5478":677428.5939361757,"5479":671321.8660828444,"5480":665212.0003792703,"5481":658808.6582750161,"5482":652402.0360750918,"5483":645727.4604114265,"5484":639049.4753306705,"5485":632130.1171919884,"5486":625207.2337491825,"5487":618070.5102224326,"5488":610930.1593962744,"5489":603604.3453682581,"5490":596274.8163398348,"5491":588788.9329091648,"5492":581299.2614174989,"5493":573682.9613615952,"5494":566062.8151128618,"5495":558346.2658620053,"5496":550625.8274446678,"5497":542839.5920249495,"5498":535049.4397928877,"5499":527224.3562079259,"5500":519395.3436016601,"5501":511562.4031291041,"5502":503725.5369113773,"5503":495915.7617945091,"5504":488102.0796807767,"5505":480346.400697908,"5506":472586.8488646719,"5507":464915.9832595079,"5508":457241.2942139103,"5509":449685.6244686394,"5510":442126.1957613167,"5511":434715.6496908494,"5512":427301.4239507006,"5513":420065.3565912751,"5514":412825.7033556045,"5515":405792.781113883,"5516":398756.380920268,"5517":391954.4684401455,"5518":385149.1996374759,"5519":378605.2498310761,"5520":372058.0785564632,"5521":365798.0262333241,"5522":359534.8999890938,"5523":353583.5595033405,"5524":347629.3047541117,"5525":342010.2720735525,"5526":336388.496267541,"5527":331124.0558511792,"5528":325857.0542524002,"5529":320968.0911038723,"5530":316076.758802936,"5531":311582.6760469592,"5532":307086.4254977104,"5533":303005.0678048311,"5534":298921.752212279,"5535":295269.3353741262,"5536":291615.1782360171,"5537":288406.2251689982,"5538":285195.756249098,"5539":282443.0396790986,"5540":279689.0376648695,"5541":277403.529719156,"5542":275116.9717901316,"5543":273307.8006953941,"5544":271497.8192012836,"5545":270172.2332587116,"5546":268846.079678203,"5547":268009.4186577688,"5548":267172.4349802724,"5549":266828.1090471143,"5550":266483.7066903876,"5551":266633.1829464628,"5552":266782.8292933189,"5553":267425.6259874385,"5554":268068.838594673,"5555":269202.5270237705,"5556":270336.8755261608,"5557":271957.0896202889,"5558":273578.2053221518,"5559":275678.6588753834,"5560":277780.2519918376,"5561":280352.7634710641,"5562":282926.647950953,"5563":285961.1727846741,"5564":288997.2986171872,"5565":292481.9688368624,"5566":295968.4617143525,"5567":299889.6327918663,"5568":303812.8409723323,"5569":308155.145668731,"5570":312499.6938530249,"5571":317246.1028660026,"5572":321994.9528771252,"5573":327126.8420479174,"5574":332261.3600729362,"5575":337758.5838873818,"5576":343258.6140165936,"5577":349099.5851102917,"5578":354943.5288834063,"5579":361105.3032371979,"5580":367270.2048826093,"5581":373728.5723721547,"5582":380190.2094029011,"5583":386919.7893449959,"5584":393652.7681538648,"5585":400627.1094724186,"5586":407604.9655489301,"5587":414796.6511652945,"5588":421991.9535390497,"5589":429372.708574718,"5590":436757.1680729224,"5591":444297.9714375757,"5592":451842.552329499,"5593":459513.7512540053,"5594":467188.7858417588,"5595":474960.2129041225,"5596":482735.5186075254,"5597":490576.6107899365,"5598":498421.6092633884,"5599":506301.5285705059,"5600":514185.3663817614,"5601":522073.1215442099,"5602":529964.7919387973,"5603":537829.3607215639,"5604":545697.8259922966,"5605":553508.2776253351,"5606":561322.5916039753,"5607":569048.2088518431,"5608":576777.6390395083,"5609":584388.039428275,"5610":592002.1882825857,"5611":599467.4440055956,"5612":606936.3689059053,"5613":614227.1249351712,"5614":621521.4563524241,"5615":628609.0462895314,"5616":635700.103694396,"5617":642556.6629036919,"5618":649416.567955519,"5619":656015.1435331203,"5620":662616.9301030368,"5621":668931.5872476405,"5622":675249.3078415544,"5623":681255.2322072682,"5624":687264.0603687909,"5625":692937.6559960345,"5626":698613.9842851764,"5627":703932.9667231701,"5628":709254.4998841385,"5629":714197.9841374683,"5630":719143.8270878724,"5631":723692.410040037,"5632":728243.1503342469,"5633":732378.9873229131,"5634":736516.7717641311,"5635":740223.6470058804,"5636":743932.2521045677,"5637":747195.6426911979,"5638":750460.538691793,"5639":753267.6719056208,"5640":756076.0801288611,"5641":758415.9838508188,"5642":760756.9271253685,"5643":762620.4731369597,"5644":764484.8191213012,"5645":765864.759129529,"5646":767245.2563531642,"5647":768136.250596242,"5648":769027.5570779447,"5649":769426.1953989189,"5650":769824.8997291146,"5651":769729.7150342069,"5652":769634.3498382603,"5653":769045.8238868363,"5654":768456.871616126,"5655":767377.433119424,"5656":766297.3241473426,"5657":764731.3391834793,"5658":763164.4422138773,"5659":761118.1969969444,"5660":759070.8018228661,"5661":756552.4778941341,"5662":754032.7705748961,"5663":751052.4125140222,"5664":748070.4430685901,"5665":744639.9188522691,"5666":741207.5615964428,"5667":737340.5157609398,"5668":733471.4224448685,"5669":729183.2222372845,"5670":724892.7681682608,"5671":720200.4428990443,"5672":715505.6662622083,"5673":710427.8400982635,"5674":705347.374714686,"5675":699904.1931783088,"5676":694458.1949658255,"5677":688671.245429549,"5678":682881.3128565806,"5679":676773.539347692,"5680":670662.6281939712,"5681":664258.2408449349,"5682":657850.573605546,"5683":651174.9531076869,"5684":644495.9233979613,"5685":637575.5208354872,"5686":630651.5931740199,"5687":623513.8256336933,"5688":616372.4309989959,"5689":609045.5733674316,"5690":601715.0009404049,"5691":594228.0743160297,"5692":586737.3598355101,"5693":579120.0169955576,"5694":571498.8281675342,"5695":563781.2365420996,"5696":556059.7559548499,"5697":548272.4785698386,"5698":540481.2845770563,"5699":532655.159435901,"5700":524825.1054779215,"5701":516991.1238580854,"5702":509153.2166974664,"5703":501342.4008420468,"5704":493527.6781940579,"5705":485770.9588811814,"5706":478010.3669221397,"5707":470338.461395326,"5708":462662.7326321888,"5709":455106.0233734418,"5710":447545.5553566605,"5711":440133.9701807059,"5712":432718.705538995,"5713":425481.5994818863,"5714":418240.9077523655,"5715":411206.9472205805,"5716":404169.5089406429,"5717":397366.5585778925,"5718":390560.2520962436,"5719":384015.2648144671,"5720":377467.0562680342,"5721":371205.9668765857,"5722":364941.8037675107,"5723":358989.4266203314,"5724":353034.1354130495,"5725":347414.066477764,"5726":341791.2546203075,"5727":336525.7783557356,"5728":331257.7411119359,"5729":326367.7425215306,"5730":321475.3749818146,"5731":316980.2571901099,"5732":312482.9718081393,"5733":308400.5794854984,"5734":304316.2294660992,"5735":300662.7784039683,"5736":297007.5872447038,"5737":293797.6003593072,"5738":290586.0978237609,"5739":287832.3478408015,"5740":285077.3126162527,"5741":282790.7716628144,"5742":280503.1809286144,"5743":278692.9772312048,"5744":276881.9633368801,"5745":275555.3451965066,"5746":274228.1596205632,"5747":273390.4668070157,"5748":272552.451538682,"5749":272207.094216917,"5750":271861.6606737683,"5751":272010.1059455611,"5752":272158.7215102289,"5753":272800.4876242089,"5754":273442.6698533069,"5755":274575.3281062259,"5756":275708.6466343504,"5757":277327.8309560798,"5758":278947.9170873658,"5759":281047.3412717972,"5760":283147.9052211823,"5761":285719.3877350258,"5762":288292.2434511726,"5763":291325.739722747,"5764":294360.8371946638,"5765":297844.4792552476,"5766":301329.9441751065,"5767":305250.0874964037,"5768":309172.2681220229,"5769":313513.545464899,"5770":317857.0664969498,"5771":322602.4485589187,"5772":327350.2718202216,"5773":332481.1344423383,"5774":337614.6261197806,"5775":343110.8237877037,"5776":348609.8279714021,"5777":354449.773320551,"5778":360292.6915500352,"5779":366453.4405610707,"5780":372617.3170645551,"5781":379074.6596129577,"5782":385535.2719033008,"5783":392263.8273056867,"5784":398995.7817754961,"5785":405969.0989555952,"5786":412945.9310942119,"5787":420136.5929731965,"5788":427330.8718100422,"5789":434710.6035092265,"5790":442094.0398713275,"5791":449633.8203002135,"5792":457177.3784566605,"5793":464847.5548459371,"5794":472521.5670986629,"5795":480291.9720261555,"5796":488066.2557948002,"5797":495906.3262425205,"5798":503750.3031813051,"5799":511629.2011537334,"5800":519512.0178302339,"5801":527398.7520578167,"5802":535289.4017173834,"5803":543152.9499649291,"5804":551020.3949001968,"5805":558829.8263974814,"5806":566643.1204400345,"5807":574367.7179514375,"5808":582096.1286022154,"5809":589705.5096536281,"5810":597318.6393700737,"5811":604782.8761546629,"5812":612250.7823159519,"5813":619540.519805553,"5814":626833.8328824519,"5815":633920.4046784726,"5816":641010.4441414728,"5817":647865.985608083,"5818":654724.8731163582,"5819":661322.4313494972,"5820":667923.200773997,"5821":674236.840972185,"5822":680553.5448186405,"5823":686558.4526358084,"5824":692566.2644476538,"5825":698238.8439240443,"5826":703914.1562611136,"5827":709232.1229457709,"5828":714552.6405520942,"5829":719495.109449427,"5830":724439.937242438,"5831":728987.5052357689,"5832":733537.2307696604,"5833":737672.0531964803,"5834":741808.8232742792,"5835":745514.6843509924,"5836":749222.2754829838,"5837":752484.6523012131,"5838":755748.534731659,"5839":758554.654573545,"5840":761362.0496230073,"5841":763700.9403693064,"5842":766040.8708662736,"5843":767903.4042983135,"5844":769766.7379010929,"5845":771145.6657257017,"5846":772525.1509636189,"5847":773415.133418835,"5848":774305.4283104889,"5849":774703.0552391827,"5850":775100.7483748234,"5851":775004.5526830422,"5852":774908.1766878598,"5853":774318.6401347939,"5854":773728.6774599921,"5855":772648.2287567048,"5856":771567.1097755011,"5857":770000.1149999347,"5858":768432.2084160052,"5859":766384.9537820766,"5860":764336.5493882912,"5861":761817.2164370966,"5862":759296.5002925972,"5863":756315.1336036195,"5864":753332.1557271978,"5865":749900.6232769574,"5866":746467.2579842387,"5867":742599.2043088271,"5868":738729.1033497868,"5869":734439.8956961303,"5870":730148.4343778879,"5871":725455.1020562616,"5872":720759.3185637826,"5873":715680.4857409172,"5874":710599.0138950987,"5875":705154.8260931165,"5876":699707.8218116211,"5877":693919.8664028818,"5878":688128.9281539568,"5879":682020.149165574,"5880":675908.2327287789,"5881":669502.8402930441,"5882":663094.1681632897,"5883":656417.5429713548,"5884":649737.5087637998,"5885":642816.1018996998,"5886":635891.1701327662,"5887":628752.3986830906,"5888":621610.0003351176,"5889":614282.1391863085,"5890":606950.5634380243,"5891":599462.6336883355,"5892":591970.916278404,"5893":584352.5707048975,"5894":576730.379339135,"5895":569011.7853717337,"5896":561289.3026382456,"5897":553501.0233026823,"5898":545708.8275549909,"5899":537881.7008545261,"5900":530050.6455327943,"5901":522215.6627447199,"5902":514376.7546113334,"5903":506564.9379785745,"5904":498749.2147486317,"5905":490991.4950491431,"5906":483229.902898789,"5907":475556.9973759194,"5908":467880.2688119399,"5909":460322.5599475214,"5910":452761.0925201966,"5911":445348.5081287838,"5912":437932.2444666571,"5913":430694.1395841321,"5914":423452.449224152,"5915":416417.4902568217,"5916":409379.0537362102,"5917":402575.1053276147,"5918":395767.8009949066,"5919":389221.8160568142,"5920":382672.610048766,"5921":376410.5233903603,"5922":370145.3632089432,"5923":364191.9891839947,"5924":358235.7012934737,"5925":352614.6358694366,"5926":346990.8277176732,"5927":341724.3553531971,"5928":336455.3222038527,"5929":331564.3279022203,"5930":326670.9648455518,"5931":322174.851731127,"5932":317676.5712206259,"5933":313593.183963602,"5934":309507.8392039246,"5935":305853.3935955778,"5936":302197.2080841177,"5937":298986.2270405028,"5938":295773.7305406735,"5939":293018.986787324,"5940":290262.9579862354,"5941":287975.4236500654,"5942":285686.8397268996,"5943":283875.6430342475,"5944":282063.6363383616,"5945":280736.0255900656,"5946":279407.8475997964,"5947":278569.1625654773,"5948":277730.1552698841,"5949":277383.8061143295,"5950":277037.3809308188,"5951":277184.8347556351,"5952":277332.4590666693,"5953":277973.2341203171,"5954":278614.4254823417,"5955":279746.0930614042,"5956":280878.4211088467,"5957":282496.6151430267,"5958":284115.7111798538,"5959":286214.1454628746,"5960":288313.7197038555,"5961":290884.2127022589,"5962":293456.0790958878,"5963":296488.5862378246,"5964":299522.694772942,"5965":303005.3480895226,"5966":306489.8244581324,"5967":310408.9794208928,"5968":314330.1718806456,"5969":318670.4612502836,"5970":323012.9945016829,"5971":327757.3889755447,"5972":332504.2248412431,"5973":337634.1002602163,"5974":342766.6049269339,"5975":348261.8157765094,"5976":353759.8333341954,"5977":359598.7922496254,"5978":365440.7242376424,"5979":371600.4871994206,"5980":377763.3778458157,"5981":384219.7347292554,"5982":390679.36154672,"5983":397406.9316682704,"5984":404137.9010492455,"5985":411110.2333324696,"5986":418086.0807661293,"5987":425275.7581320327,"5988":432469.0526476319,"5989":439847.8002173623,"5990":447230.2526417608,"5991":454769.0493246537,"5992":462311.6239267757,"5993":469980.8169533535,"5994":477653.8460349653,"5995":485423.2679828875,"5996":493196.5689634631,"5997":501035.6568145749,"5998":508878.6513481693,"5999":516756.5671067851,"6000":524638.4017608084,"6001":532524.1541572084,"6002":540413.8221768448,"6003":548276.388975672,"6004":556142.8526533908,"6005":563951.3030842554,"6006":571763.6162514753,"6007":579487.2330785908,"6008":587214.6632360858,"6009":594823.0639851786,"6010":602435.2135902259,"6011":609898.4704542975,"6012":617365.3968859075,"6013":624654.1548366275,"6014":631946.4885654021,"6015":639032.0812040132,"6016":646121.1417002782,"6017":652975.7043907854,"6018":659833.6133135497,"6019":666430.1931517278,"6020":673029.9843717759,"6021":679342.6465559801,"6022":685658.3725788784,"6023":691662.3027628749,"6024":697669.1371318932,"6025":703340.73935576,"6026":709015.0746305677,"6027":714332.0644431844,"6028":719651.6053676476,"6029":724593.097773259,"6030":729536.9492646465,"6031":734083.5411464105,"6032":738632.2907587518,"6033":742766.1374539959,"6034":746901.9319901527,"6035":750606.8177151168,"6036":754313.4336852108,"6037":757574.8355313536,"6038":760837.743179483,"6039":763642.8884287816,"6040":766449.3090753446,"6041":768787.225608392,"6042":771126.1820817132,"6043":772987.7416796735,"6044":774850.1016378968,"6045":776228.056007434,"6046":777606.5679797224,"6047":778495.5773587116,"6048":779384.8993635005,"6049":779781.5535946491,"6050":780178.2742220251,"6051":780081.1062112177,"6052":779983.7580862073,"6053":779393.2495924712,"6054":778802.3151661159,"6055":777720.8949003511,"6056":776638.8045457053,"6057":775070.8385856914,"6058":773501.9610062687,"6059":771453.7355657602,"6060":769404.3605542677,"6061":766884.0571741979,"6062":764362.3707896151,"6063":761380.0340493047,"6064":758396.0863102607,"6065":754963.5841860677,"6066":751529.2494080259,"6067":747660.2264358795,"6068":743789.1563686526,"6069":739498.9797953174,"6070":735206.5497458632,"6071":730512.2488814518,"6072":725815.497034574,"6073":720735.6960456554,"6074":715653.2562220891,"6075":710208.1006306239,"6076":704760.1287478697,"6077":698971.2059260558,"6078":693179.3004521995,"6079":687069.5544269891,"6080":680956.671141429,"6081":674550.3120449516,"6082":668140.673442437,"6083":661463.0819656837,"6084":654782.0816612119,"6085":647859.7088880561,"6086":640933.8113998881,"6087":633794.0744167583,"6088":626650.7107230718,"6089":619321.8844162495,"6090":611989.3436976116,"6091":604500.4491651894,"6092":597007.7671601037,"6093":589388.4571789824,"6094":581765.3015931044,"6095":574045.7435930462,"6096":566322.2970143206,"6097":558533.0540208981,"6098":550739.8948026863,"6099":542911.8048189996,"6100":535079.7864013042,"6101":527243.8407044845,"6102":519403.969849531,"6103":511591.1906823431,"6104":503774.5051050695,"6105":496015.8232453083,"6106":488253.2691216997,"6107":480579.4018125535,"6108":472901.7116492356,"6109":465343.0413723769,"6110":457780.6127194699,"6111":450367.0672892932,"6112":442949.8427751808,"6113":435710.7772274084,"6114":428468.1263888794,"6115":421432.2071296587,"6116":414392.8105037755,"6117":407587.9021764869,"6118":400779.6381116247,"6119":394232.6936278773,"6120":387682.5282606333,"6121":381419.4824294513,"6122":375153.3632616375,"6123":369199.0304366319,"6124":363241.7839323539,"6125":357619.7600808202,"6126":351994.9936877807,"6127":346727.5632682092,"6128":341457.5722499106,"6129":336565.6202654252,"6130":331671.2997119653,"6131":327174.2292867711,"6132":322674.9916514828,"6133":318590.6474556144,"6134":314504.3459429954,"6135":310848.9437675704,"6136":307191.8018748556,"6137":303979.8646357703,"6138":300766.4121262149,"6139":298010.7125488442,"6140":295253.7281094,"6141":292965.2383204999,"6142":290675.6991301903,"6143":288863.5473559411,"6144":287050.5857639653,"6145":285722.0203050471,"6146":284392.8877895838,"6147":283553.2484154594,"6148":282713.2869654099,"6149":282365.9838407089,"6150":282018.6048733221,"6151":282165.1050994931,"6152":282311.7759970737,"6153":282951.5978224198,"6154":283591.8361412555,"6155":284722.5508622023,"6156":285853.9262365631,"6157":287471.167782656,"6158":289089.3115163512,"6159":291186.7936811559,"6160":293285.4159887975,"6161":295854.9572386989,"6162":298425.8720686237,"6163":301457.4278316151,"6164":304490.5851725066,"6165":307972.2874795416,"6166":311455.8130232467,"6167":315374.0173457042,"6168":319294.2593497166,"6169":323633.5984481376,"6170":327975.1816128038,"6171":332718.6261843777,"6172":337464.5123321941,"6173":342593.4382176517,"6174":347724.9935351814,"6175":353219.2552198574,"6176":358716.3237968932,"6177":364554.3339158831,"6178":370395.3172916313,"6179":376554.1318252725,"6180":382716.0742276236,"6181":389171.4830510733,"6182":395630.1619925626,"6183":402356.7844221137,"6184":409086.8062950264,"6185":416058.191254086,"6186":423033.0915474399,"6187":430221.8219568575,"6188":437414.1696997517,"6189":444791.9706805192,"6190":452173.4766996577,"6191":459711.3271609548,"6192":467252.9557251062,"6193":474921.2028972998,"6194":482593.2863080747,"6195":490361.7627686686,"6196":498134.1184453854,"6197":505972.2611760695,"6198":513814.3107726282,"6199":521691.2817775612,"6200":529572.1718612162},"pressure_out":{"0":0.0,"1":337938.883946482,"2":180907.8840852076,"3":271344.5166528237,"4":238036.0477837999,"5":266544.3695671067,"6":264119.0481160823,"7":277073.8164675062,"8":282297.9769787805,"9":291270.3701307421,"10":298312.870708509,"11":306173.3801541706,"12":313554.1130871534,"13":320998.5107653335,"14":328325.5870685297,"15":335506.5096377203,"16":342660.6402198292,"17":349595.5694632542,"18":356526.2444970726,"19":363199.5840387293,"20":369874.1994466946,"21":376262.8727312927,"22":382654.0906459914,"23":388734.0161192428,"24":394816.6807208661,"25":400564.4628959005,"26":406314.9016782236,"27":411708.322474374,"28":417104.2401667897,"29":422122.446346683,"30":427142.9630284217,"31":431766.5734348968,"32":436392.2944703752,"33":440603.4827503407,"34":444816.5722144905,"35":448599.1387308139,"36":452383.3890208187,"37":455722.8251753459,"38":459063.720780613,"39":461947.2663711867,"40":464832.0411115239,"41":467248.7347158197,"42":469666.4221123333,"43":471607.1443544633,"44":473548.6209069841,"45":475006.1304498232,"46":476464.1516432251,"47":477433.1137678235,"48":478402.342663407,"49":478879.3503235747,"50":479356.3786222677,"51":479339.9658914333,"52":479323.327385558,"53":478813.975242901,"54":478304.1516034047,"55":477304.28603643,"56":476303.7049127275,"57":474817.6873437826,"58":473330.7127837125,"59":471364.8228582182,"60":469397.7380859109,"61":466960.1488902476,"62":464521.1315098878,"63":461621.8773167263,"64":458720.9670400521,"65":455371.9037084366,"66":452020.9627333566,"67":448235.720919813,"68":444448.3871164965,"69":440242.3184818242,"70":436033.9515710239,"71":431424.0681950695,"72":426811.6891310845,"73":421816.5963745976,"74":416818.8201721057,"75":411458.6432506391,"76":406095.6055204955,"77":400391.910080135,"78":394685.1875640762,"79":388660.8945724435,"80":382633.4199903001,"81":376312.7152787203,"82":369988.6868242019,"83":363396.9256380308,"84":356801.7114802646,"85":349965.3184140692,"86":343125.356581775,"87":336071.7212942823,"88":329014.4153377022,"89":321771.7844580743,"90":314525.395300423,"91":307122.7609524656,"92":299716.2953577262,"93":292183.2807419621,"94":284646.3768391801,"95":277013.119324355,"96":269375.9296402278,"97":261672.9618256224,"98":253966.0342869881,"99":246224.1635049377,"100":238478.3208808044,"101":230728.5076149682,"102":222974.7258738592,"103":215247.9615730711,"104":207517.2476357641,"105":199844.4324056766,"106":192167.7017757858,"107":184579.5224309995,"108":176987.477186335,"109":169514.2861442917,"110":162037.2937705158,"111":154708.9892650992,"112":147376.9628098579,"113":140222.870897452,"114":133065.1509179696,"115":126113.9097416328,"116":119159.1485116571,"117":112438.59528018,"118":105714.6437132714,"119":99251.7048411496,"120":92785.5025765679,"121":86606.0874184654,"122":80423.556503438,"123":74552.4551025175,"124":68678.3976904786,"125":63139.1829441417,"126":57597.1834126774,"127":52412.1180418208,"128":47224.4499166177,"129":42414.3986055568,"130":37601.936657683,"131":33186.2837114845,"132":28768.421574913,"133":24764.9944191066,"134":20759.5680536101,"135":17184.5668781905,"136":13607.7841796614,"137":10475.7180050446,"138":7342.0948410383,"139":4665.7242582886,"140":1988.0271812278,"141":-221.6860074639,"142":-2432.4901433391,"143":-4166.4261851817,"144":-5901.2135042787,"145":-7152.1306866809,"146":-8403.6562991265,"147":-9166.2195287325,"148":-9929.146121949,"149":-10199.9479791202,"150":-10470.8668810656,"151":-10248.4410667172,"152":-10025.8856976661,"153":-9310.7128193889,"154":-8595.1644791619,"155":-7389.6701537947,"156":-6183.5561216003,"157":-4492.1014017414,"158":-2799.7853561277,"159":-628.6495183668,"160":1543.5856849095,"161":4186.2299221108,"162":6830.2070463281,"163":9934.3257773046,"164":13040.0054772755,"165":16593.7432090804,"166":20149.2636525402,"167":24138.9900938383,"168":28130.7137753553,"169":32541.0776296331,"170":36953.6451922898,"171":41767.6347430846,"172":46584.0255955152,"173":51783.0358445622,"174":56984.6353341249,"175":62548.5414274571,"176":68115.2143044347,"177":74022.4509566586,"178":79932.6208395599,"179":86160.2674428527,"180":92391.0019712009,"181":98914.8730531458,"182":105441.9743916948,"183":112236.7150649565,"184":119034.8154021565,"185":126074.0014293021,"186":133116.6630931254,"187":140372.9051716794,"188":147632.7249676947,"189":155077.7768238632,"190":162526.4941837839,"191":170131.3640482532,"192":177739.97256215,"193":185475.0375880105,"194":193213.8994800137,"195":201049.0226512598,"196":208887.9857469751,"197":216792.6348161935,"198":224701.1515402149,"199":232644.5195260675,"200":240591.7674599505,"201":248542.8942289082,"202":256497.8977538263,"203":264425.7922063189,"204":272357.5447503272,"205":280231.3071291039,"206":288108.893536558,"207":295897.8373745595,"208":303690.5559147603,"209":311364.3291412258,"210":319041.8126747645,"211":326570.5174016355,"212":334102.8532262639,"213":341457.1637421275,"214":348815.011645166,"215":355966.2901510831,"216":363120.998202478,"217":370041.4078329267,"218":376965.1254619622,"219":383627.7401448686,"220":390293.5280542843,"221":396672.4387765605,"222":403054.3752602829,"223":409124.7923194996,"224":415198.075564407,"225":420936.4264030544,"226":426677.4723710327,"227":432061.4946072666,"228":437448.0301112632,"229":442456.8593989857,"230":447468.0100057324,"231":452082.2623772579,"232":456698.6347897464,"233":460900.4831560947,"234":465104.2417506871,"235":468877.486257583,"236":472652.4234736919,"237":475982.5554356108,"238":479314.1557401588,"239":482188.4149001018,"240":485063.9120743188,"241":487471.3369633376,"242":489879.7644858154,"243":491811.2356835378,"244":493743.4700106924,"245":495191.7461361288,"246":496640.5427092803,"247":497600.2889998568,"248":498560.310836801,"249":499028.1202028482,"250":499495.9589611057,"251":499470.365432693,"252":499444.5548612872,"253":498926.0393743496,"254":498407.0611010403,"255":497398.0495999507,"256":496388.3312310768,"257":494893.1850951629,"258":493397.090635599,"259":491422.0894673726,"260":489445.9020983964,"261":486999.218941441,"262":484551.1162244951,"263":481642.785308795,"264":478732.8069129869,"265":475374.6840550107,"266":472014.6921357284,"267":468220.4079495368,"268":464424.0403345393,"269":460208.9464385765,"270":455991.5628063162,"271":451372.6712381833,"272":446751.2925007688,"273":441747.2085790797,"274":436740.4497091075,"275":431371.298607388,"276":425999.2951737411,"277":420286.6424961593,"278":414570.9711987109,"279":408537.7378710795,"280":402501.3313879049,"281":396171.7031998485,"282":389838.759683011,"283":383238.0918382927,"284":376633.9794153799,"285":369788.6964670817,"286":362939.8531253831,"287":355877.3446908546,"288":348811.1739392885,"289":341559.6866064217,"290":334304.4493269861,"291":326892.9751784235,"292":319477.6780939916,"293":311935.8402891994,"294":304390.1214878139,"295":296748.0573545878,"296":289102.0693220487,"297":281390.3114188252,"298":273674.60204118,"299":265923.9576595564,"300":258169.3496651275,"301":250410.7792481304,"302":242648.2485648615,"303":234912.7435207976,"304":227173.2970289915,"305":219491.7574230912,"306":211806.3105859921,"307":204209.4231925382,"308":196608.6780476914,"309":189126.7952439127,"310":181641.1192368198,"311":174304.1392164905,"312":166963.4453547405,"313":159800.6941342402,"314":152634.3229351041,"315":145674.4386175901,"316":138711.0423149661,"317":131981.8620694308,"318":125249.2915371331,"319":118777.7417383779,"320":112302.9365760226,"321":106114.9265391195,"322":99923.8087543936,"323":94044.1284830158,"324":88161.5001899153,"325":82613.7225420772,"326":77063.1680788523,"327":71869.5557361657,"328":66673.3485892688,"329":61854.7661968659,"330":57033.7810982327,"331":52609.6129220983,"332":48183.2434666707,"333":44171.3168933542,"334":40157.3990019749,"335":36573.9141825917,"336":32988.6557123235,"337":29848.1216285106,"338":26706.0384081809,"339":24021.2156123242,"340":21335.0741557274,"341":19116.9244114394,"342":16897.6915342875,"343":15155.3345558812,"344":13412.1340953385,"345":12152.8115570267,"346":10892.8883646373,"347":10121.9353214966,"348":9350.6266716089,"349":9071.4505050978,"350":8792.1650316232,"351":9006.2320027453,"352":9220.4362473775,"353":9927.2657105597,"354":10634.4783355446,"355":11831.6446360639,"356":13029.438324358,"357":14712.58037183,"358":16396.5914071483,"359":18559.4298872952,"360":20723.3753762414,"361":23357.7375330113,"362":25993.4402013221,"363":29089.2920915563,"364":32186.7125565996,"365":35732.1986499554,"366":39279.4750421189,"367":43260.9650099616,"368":47244.4597865629,"369":51646.6022951765,"370":56050.956062143,"371":60856.7393579585,"372":65664.9314868665,"373":70855.7505346086,"374":76049.1663358541,"375":81604.8962446416,"376":87163.4004316406,"377":93062.475879261,"378":98964.4920337513,"379":105183.9923756583,"380":111406.5881004871,"381":117922.3278276354,"382":124441.3052509758,"383":131227.9294394966,"384":138017.9207133123,"385":145049.0050893332,"386":152083.5725052053,"387":159331.7277299064,"388":166583.4680571057,"389":174020.4478204426,"390":181461.1004544788,"391":189057.9129509811,"392":196658.471445815,"393":204385.4937925104,"394":212116.3203362556,"395":219943.4154811684,"396":227774.3578635077,"397":235670.9935233479,"398":243571.5041330451,"399":251506.873290691,"400":259446.1296735642,"401":267389.2721597952,"402":275336.2986613723,"403":283256.2233410217,"404":291180.0133538048,"405":299045.8204341128,"406":306915.4587669988,"407":314696.4617454921,"408":322481.246632412,"409":330147.0934030056,"410":337816.6576692741,"411":345337.4503086787,"412":352861.881216862,"413":360208.2939785241,"414":367558.2512808461,"415":374701.6463307778,"416":381848.4780621823,"417":388761.0184999025,"418":395676.8740547585,"419":402331.6337733254,"420":408989.573819551,"421":415360.6437710985,"422":421734.7465678855,"423":427797.3370152967,"424":433862.8007148819,"425":439593.3390660482,"426":445326.5795957629,"427":450702.8034343319,"428":456081.5475726604,"429":461082.5925181141,"430":466085.9657974126,"431":470692.4478477359,"432":475301.0569367109,"433":479495.1489686819,"434":483691.1582094969,"435":487456.6603346877,"436":491223.8621326479,"437":494546.2656314691,"438":497870.1444194761,"439":500736.6890009523,"440":503604.4785263042,"441":506004.2026875991,"442":508404.9363950426,"443":510328.7206819823,"444":512253.274994177,"445":513693.8779920592,"446":515135.0083166551,"447":516087.0952292794,"448":517039.4645504901,"449":517499.6282546482,"450":517959.8281964982,"451":517926.6026888074,"452":517893.1669669113,"453":517367.0331499407,"454":516840.4433587355,"455":515823.8271435784,"456":514806.5108561669,"457":513303.7735889573,"458":511800.0947770637,"459":509817.5160272066,"460":507833.7578390435,"461":505379.5106171,"462":502923.8505811315,"463":500007.9690841499,"464":497090.4468365889,"465":493724.7868481867,"466":490357.2645116123,"467":486555.4566130839,"468":482751.5719825322,"469":478528.9677596398,"470":474304.0804809232,"471":469677.6919386712,"472":465048.8228913443,"473":460037.2553158336,"474":455023.0194400213,"475":449646.3979723498,"476":444266.9308045497,"477":438546.8210165401,"478":432823.6992243212,"479":426783.0220095257,"480":420739.1782387454,"481":414402.1193546102,"482":408061.7517251946,"483":401453.6663433887,"484":394842.1429508746,"485":387989.4555924683,"486":381133.2143921727,"487":374063.3146425877,"488":366989.7591115435,"489":359730.8935268251,"490":352468.2845152249,"491":345049.4451462511,"492":337626.7893452457,"493":330077.5993198031,"494":322524.5347857935,"495":314875.1314000766,"496":307221.8105873052,"497":299502.726368234,"498":291779.6971312702,"499":284021.7393390042,"500":276259.8243747753,"501":268493.9534209875,"502":260724.1286261218,"503":252981.3358878432,"504":245234.6081114108,"505":237545.79362268,"506":229853.0782967715,"507":222248.9288007573,"508":214640.9279318462,"509":207151.7957747468,"510":199658.8767773415,"511":192314.6601219784,"512":184966.7359727571,"513":177796.7608046389,"514":170623.17199004,"515":163656.0763815311,"516":156685.4751046999,"517":149949.0961940808,"518":143209.3332981605,"519":136730.5974295984,"520":130248.6124836103,"521":124053.428941624,"522":117855.1439227421,"523":111968.3026805291,"524":106078.5196723126,"525":100523.593557492,"526":94965.8968678353,"527":89765.1485317005,"528":84561.8116167767,"529":79736.1056742214,"530":74908.0032357669,"531":70476.7239226141,"532":66043.2495254479,"533":62024.2241981644,"534":58003.213733086,"535":54412.6425127811,"536":50820.3038068861,"537":47672.6956452697,"538":44523.5444974967,"539":41831.6599171037,"540":39138.462811435,"541":36913.2635461047,"542":34686.9872685174,"543":32937.593002867,"544":31187.3613608671,"545":29921.0137394891,"546":28654.0715550398,"547":27876.1056034681,"548":27097.7901214125,"549":26811.6131916387,"550":26525.3330164595,"551":26732.4113400967,"552":26939.632984135,"553":27639.4858862953,"554":28339.7279825203,"555":29529.9297792416,"556":30720.7649814087,"557":32396.9545531435,"558":34074.0191158418,"559":36229.9171192239,"560":38386.9281200069,"561":41014.3617699718,"562":43643.1419056006,"563":46732.0772300511,"564":49822.5870889933,"565":53361.1685287237,"566":56901.5462125416,"567":60876.1434101285,"568":64852.7513473872,"569":69248.0129404007,"570":73645.4917083516,"571":78444.4059145822,"572":83245.7348561974,"573":88429.6966118043,"574":93616.2610089516,"575":99165.1453945608,"576":104716.8099321996,"577":110609.0515971803,"578":116504.2398286677,"579":122716.9181001278,"580":128932.697600001,"581":135441.6269406238,"582":141953.7998088218,"583":148733.6252665386,"584":155516.823626861,"585":162541.1208996745,"586":169568.9070156133,"587":176810.2867366491,"588":184055.2573494568,"589":191485.4731806898,"590":198919.3676579317,"591":206509.4277659836,"592":214103.2396337472,"593":221823.5211078069,"594":229547.6125264062,"595":237367.9782867344,"596":245192.1970181224,"597":253082.1147537345,"598":260975.9131590181,"599":268904.5758251724,"600":276837.1314225831,"601":284773.5788225068,"602":292713.915930059,"603":300627.1569011065,"604":308544.2688838579,"605":316403.4036058616,"606":324266.375245336,"607":332040.7171884851,"608":339818.8466913113,"609":347478.0437222539,"610":355140.9638865149,"611":362655.1180547661,"612":370172.9161158653,"613":377512.7016477441,"614":384856.0373308165,"615":391992.8163652794,"616":399133.0376782452,"617":406038.973287824,"618":412948.229598103,"619":419596.395648939,"620":426247.7475975665,"621":432612.2350149463,"622":438979.7608343014,"623":445035.7798543306,"624":451094.6776699063,"625":456818.6556737673,"626":462545.3413862208,"627":467915.0159309214,"628":473287.2162921315,"629":478281.7229705825,"630":483278.5634863685,"631":487878.5182700523,"632":492480.6055826523,"633":496668.1813219127,"634":500857.6797470904,"635":504616.6765271339,"636":508377.3784438623,"637":511693.2875188013,"638":515010.6773337182,"639":517870.7383863475,"640":520732.0498205554,"641":523125.3013218753,"642":525519.5677939918,"643":527436.8902637354,"644":529354.9881703588,"645":530789.1401677956,"646":532223.8248905821,"647":533169.4715935513,"648":534115.406090788,"649":534569.140350188,"650":535022.9162200394,"651":534983.2720066609,"652":534943.4229389484,"653":534410.8811296008,"654":533877.888693035,"655":532854.8751731182,"656":531831.1669151415,"657":530322.0430051624,"658":528811.9828719051,"659":526823.0281157077,"660":524832.8992298542,"661":522372.2866125047,"662":519910.2664770572,"663":516988.0301701747,"664":514064.1583959496,"665":510692.1541577873,"666":507318.2928420333,"667":503510.151228588,"668":499699.9381410749,"669":495471.0107128759,"670":491239.8054742158,"671":486607.1042110995,"672":481971.9276757119,"673":476954.0578386763,"674":471933.5249216154,"675":466550.6116267202,"676":461164.8578394778,"677":455438.466633572,"678":449709.0686187758,"679":443662.1203705025,"680":437612.0107491327,"681":431268.6911910931,"682":424922.068058263,"683":418307.7323373454,"684":411689.9637638428,"685":404831.0363764003,"686":397968.5602928575,"687":390892.4307996588,"688":383812.6506584869,"689":376547.5655909875,"690":369278.7422178204,"691":361853.6936023737,"692":354424.833663869,"693":346869.4446037959,"694":339310.1861319233,"695":331654.5938990194,"696":323995.0893236524,"697":316269.826420501,"698":308540.6235719034,"699":300776.4972343897,"700":293008.418785246,"701":285236.3894008314,"702":277460.4112235895,"703":269711.4701451558,"704":261958.5990647677,"705":254263.6463022666,"706":246564.7977267671,"707":238954.5199993425,"708":231340.3959112112,"709":223845.1455410986,"710":216346.1133309118,"711":208995.7884570315,"712":201641.7610775972,"713":194465.6876616183,"714":187286.0055755662,"715":180312.8216660741,"716":173336.1370528036,"717":166593.6797643632,"718":159847.8434433288,"719":153363.039096452,"720":146874.9906130507,"721":140673.7484686612,"722":134469.409776503,"723":128576.5197842645,"724":122680.6929434051,"725":117119.7279074635,"726":111555.9972023545,"727":106349.2197505905,"728":101139.8586140225,"729":96308.1333379774,"730":91474.0164483646,"731":87036.7275605695,"732":82597.2484594689,"733":78572.2232931583,"734":74545.217848167,"735":70948.6565012781,"736":67350.3325163495,"737":64196.7439174795,"738":61041.6171684696,"739":58343.7618171006,"740":55644.5987649679,"741":53413.4383719461,"742":51181.2057797044,"743":49425.8600067116,"744":47669.6816589622,"745":46397.3921277163,"746":45124.5128235764,"747":44340.6145367949,"748":43556.3714983209,"749":43264.271785238,"750":42972.0735941843,"751":43173.2386637142,"752":43374.5518097523,"753":44068.5009643668,"754":44762.8440578547,"755":45947.1515910096,"756":47132.0972631499,"757":48802.4020327738,"758":50473.5865156605,"759":52623.6091559214,"760":54774.7495046714,"761":57396.3172080967,"762":60019.2360970918,"763":63102.3148692342,"764":66186.9728646206,"765":69719.7071239821,"766":73254.2423050574,"767":77223.0016719788,"768":81193.7764451027,"769":85583.2095349759,"770":89974.8644552501,"771":94767.9594637448,"772":99563.4738520489,"773":104741.6256932606,"774":109922.3848094268,"775":115465.4685419744,"776":121011.3370489834,"777":126897.7873002857,"778":132787.1887295725,"779":138994.0848048435,"780":145204.0867090797,"781":151707.2430491651,"782":158213.6475064802,"783":164987.7091375302,"784":171765.1482499706,"785":178783.6908482627,"786":185805.7268576232,"787":193041.3610346137,"788":200280.5906605055,"789":207705.0700565559,"790":215133.2326449597,"791":222717.5654051322,"792":230305.6544606044,"793":238020.2176525883,"794":245738.5953139687,"795":253553.2518365755,"796":261371.7658443971,"797":269255.9833652529,"798":277144.0860592581,"799":285067.0575122836,"800":292993.9263893952,"801":300924.6915565346,"802":308859.3509135133,"803":316766.9186108949,"804":324678.3617915986,"805":332531.8321778856,"806":340389.1439426913,"807":348157.8304669497,"808":355930.3090013981,"809":363583.8595092156,"810":371241.1375903521,"811":378749.6541102331,"812":386261.8189524795,"813":393595.9756897911,"814":400933.6869973527,"815":408064.8460701455,"816":415199.4518300705,"817":422099.7762900314,"818":429003.4258489176,"819":435645.9895413938,"820":442291.7435195086,"821":448650.6373490469,"822":455012.5739580593,"823":461063.0081400765,"824":467116.3254848151,"825":472834.7273798622,"826":478555.8413403789,"827":483919.9484848821,"828":489286.585792501,"829":494275.5337588438,"830":499266.8198988851,"831":503861.2246380736,"832":508457.7662323239,"833":512639.8005742818,"834":516823.7619181105,"835":520577.2259276735,"836":524332.3993797099,"837":527642.7842906737,"838":530954.6542372658,"839":533809.1997121593,"840":536664.9998541685,"841":539052.7443437807,"842":541441.5080796391,"843":543353.3320835411,"844":545265.935789712,"845":546694.5978470647,"846":548123.7968851211,"847":549063.9621537072,"848":550004.4194619046,"849":550452.6807726156,"850":550900.9879291392,"851":550855.8792328122,"852":550810.5699075543,"853":550272.5720610959,"854":549734.1278028901,"855":548705.666671848,"856":547676.5150083109,"857":546161.9518933921,"858":544646.456750878,"859":542652.0711761765,"860":540656.5156576461,"861":538190.4805885294,"862":535723.0421773108,"863":532795.3917657484,"864":529866.1100530359,"865":526488.7000376852,"866":523109.4371011544,"867":519295.8980184635,"868":515480.2916083619,"869":511245.9749993635,"870":507009.3847168318,"871":502371.3025419138,"872":497730.7492219493,"873":492707.5067227151,"874":487681.6052609998,"875":482293.327534161,"876":476902.2134228637,"877":471170.4659959725,"878":465435.7158584495,"879":459383.4195809004,"880":453327.9660189062,"881":446979.3066041035,"882":440627.3476935818,"883":434007.6802692628,"884":427384.5840618749,"885":420520.3331052943,"886":413652.5375125986,"887":406571.0925654735,"888":399486.0010208514,"889":392215.6085956376,"890":384941.4819057507,"891":377511.1340098463,"892":370076.978822421,"893":362516.2985402442,"894":354951.7528683709,"895":347290.8774528622,"896":339626.0937075805,"897":331895.5556425158,"898":324161.081635311,"899":316391.6881378163,"900":308618.3465226364,"901":300841.0579614615,"902":293059.8245920683,"903":285305.6323014344,"904":277547.5139841406,"905":269847.3179553812,"906":262143.2300796328,"907":254527.7170133302,"908":246908.3615430614,"909":239407.8837429293,"910":231903.6280502226,"911":224548.0836367113,"912":217188.8406559264,"913":210007.5555722773,"914":202822.6657476453,"915":195844.2780240721,"916":188862.3935166369,"917":182114.7402493726,"918":175363.7118602841,"919":168873.7193515585,"920":162380.4866079555,"921":156174.0641004548,"922":149964.5489377348,"923":144066.4863629378,"924":138165.490822991,"925":132599.3609669003,"926":127030.469316059,"927":121818.5347884604,"928":116604.0204414445,"929":111767.1458158297,"930":106927.8834330255,"931":102485.4529039246,"932":98040.8360089129,"933":94010.6768916024,"934":89978.5413340457,"935":86376.8537085536,"936":82773.4072745188,"937":79614.7000515778,"938":76454.4584990781,"939":73751.492160353,"940":71047.2219325536,"941":68810.9581711169,"942":66573.6260132811,"943":64813.1844730884,"944":63051.9141521134,"945":61774.5364372012,"946":60496.5727345451,"947":59707.5938299952,"948":58918.2739501018,"949":58621.1011675572,"950":58323.8336746127,"951":58519.9332054422,"952":58716.1845715951,"953":59405.0757007699,"954":60094.3645189002,"955":61273.6215224211,"956":62453.5204062979,"957":64118.7821246821,"958":65784.9272890115,"959":67929.9143390612,"960":70076.0228216161,"961":72692.5623785367,"962":75310.4568363998,"963":78388.5148884686,"964":81468.1558705306,"965":84995.8768190148,"966":88525.4023873635,"967":92489.1558354165,"968":96454.9283792449,"969":100839.3629251141,"970":105226.0229824008,"971":110014.1268046572,"972":114804.6536792037,"973":119977.8216748834,"974":125153.6006094876,"975":130691.7078201979,"976":136232.6034608504,"977":142114.0844970407,"978":147998.5203582277,"979":154200.454508187,"980":160405.4981256792,"981":166903.6998133699,"982":173405.153248432,"983":180174.2674831673,"984":186946.7628210311,"985":193960.3652622916,"986":200977.4647279766,"987":208208.1659704668,"988":215442.4662668564,"989":222862.0199342265,"990":230285.2603906083,"991":237864.6746112564,"992":245447.8487155442,"993":253157.500540534,"994":260870.9704149639,"995":268680.7227265263,"996":276494.3360950747,"997":284373.6565442951,"998":292256.8657301827,"999":300174.9472344865,"1000":308096.9297181623,"1001":316022.812043042,"1002":323952.5921048327,"1003":331855.284050002,"1004":339761.8550173757,"1005":347610.4567251284,"1006":355462.9033421132,"1007":363226.7282451878,"1008":370994.3486810175,"1009":378643.0446087153,"1010":386295.4716241701,"1011":393799.1405887515,"1012":401306.46138203,"1013":408635.7775726596,"1014":415968.651831785,"1015":423094.9773503522,"1016":430224.7530462323,"1017":437120.2509283045,"1018":444019.0773914385,"1019":450656.8214662845,"1020":457297.7593008819,"1021":463651.8404570131,"1022":470008.9678587238,"1023":476054.596295559,"1024":482103.1113532406,"1025":487816.7144153752,"1026":493533.0329931438,"1027":498892.3482010904,"1028":504254.197014376,"1029":509238.3599246452,"1030":514224.8644429149,"1031":518814.4909906803,"1032":523406.2578199083,"1033":527583.5208193014,"1034":531762.7142390852,"1035":535511.4137391902,"1036":539261.8260924277,"1037":542567.453311329,"1038":545874.5689686773,"1039":548724.3635532329,"1040":551575.4161999023,"1041":553958.4165852703,"1042":556342.4396040823,"1043":558249.526274243,"1044":560157.39602609,"1045":561581.3275046535,"1046":563005.7993355781,"1047":563941.2407648154,"1048":564876.9775975813,"1049":565320.5217929139,"1050":565764.1151902548,"1051":565714.2960870877,"1052":565664.2797034843,"1053":565121.5781433317,"1054":564578.4335122453,"1055":563545.2753453025,"1056":562511.4299790164,"1057":560992.1764906771,"1058":559471.9943002521,"1059":557472.9249993358,"1060":555472.689072478,"1061":553001.9769091173,"1062":550529.8647139391,"1063":547597.5438249076,"1064":544663.5949374271,"1065":541281.5210462249,"1066":537897.5975289796,"1067":534079.4011569368,"1068":530259.1407450757,"1069":526020.173418145,"1070":521778.9356977484,"1071":517136.2093612769,"1072":512491.0151523203,"1073":507463.1350329093,"1074":502432.5992160915,"1075":497039.6903954882,"1076":491643.948448033,"1077":485907.5764388638,"1078":480168.2049692209,"1079":474111.2906059931,"1080":468051.2222010486,"1081":461697.9511823167,"1082":455341.383903184,"1083":448717.1113418741,"1084":442089.4132254219,"1085":435220.5635840149,"1086":428348.172527047,"1087":421262.1353325247,"1088":414172.4547537059,"1089":406897.4765038259,"1090":399618.7671951383,"1091":392183.8398826383,"1092":384745.1084771669,"1093":377179.8551718423,"1094":369610.7396680733,"1095":361945.2976082793,"1096":354275.9504026856,"1097":346540.8520576498,"1098":338801.8209471871,"1099":331027.8735195246,"1100":323249.9811436487,"1101":315468.1449876358,"1102":307682.3671856532,"1103":299923.6336210741,"1104":292160.9771848793,"1105":284456.2461886677,"1106":276747.6264933253,"1107":269127.5847517007,"1108":261503.7037468003,"1109":253998.7035491502,"1110":246489.9285924665,"1111":239129.8680449513,"1112":231766.1120565727,"1113":224580.3170881811,"1114":217390.9204981038,"1115":210408.0291248331,"1116":203421.6440799027,"1117":196669.4933838053,"1118":189913.9706710096,"1119":183419.4869401715,"1120":176921.7660725236,"1121":170710.8585355232,"1122":164496.8614343307,"1123":158594.3200085752,"1124":152688.8487016748,"1125":147118.2461591309,"1126":141544.8848988371,"1127":136328.4838352909,"1128":131109.5060223415,"1129":126268.1709973208,"1130":121424.4512781562,"1131":116977.5664722625,"1132":112528.4983565528,"1133":108493.8910711702,"1134":104457.3103947029,"1135":100851.1806960019,"1136":97243.2952310046,"1137":94080.1520158963,"1138":90915.477506578,"1139":88208.0812429408,"1140":85499.384118698,"1141":83258.6964858531,"1142":81016.9434782152,"1143":79252.0841064022,"1144":77486.3989685681,"1145":76204.6094481425,"1146":74922.2369479068,"1147":74128.8522503042,"1148":73335.1295784821,"1149":73033.5570017345,"1150":72731.8927089184,"1151":72923.5984308182,"1152":73115.4589755976,"1153":73799.9622675742,"1154":74484.8662293048,"1155":75659.7413538519,"1156":76835.2613328129,"1157":78496.1471169752,"1158":80157.9193144173,"1159":82298.5363615589,"1160":84440.277801834,"1161":87052.4532737565,"1162":89665.9866005607,"1163":92739.6864721717,"1164":95814.9722210431,"1165":99338.3408802745,"1166":102863.5170999826,"1167":106822.9241366863,"1168":110784.3532031397,"1169":115164.4472022957,"1170":119546.7696402226,"1171":124330.5387671684,"1172":129116.7338671538,"1173":134285.5730057259,"1174":139457.0259973846,"1175":144990.8101760242,"1176":150527.3856921978,"1177":156404.5495082221,"1178":162284.6710502811,"1179":168482.2937788802,"1180":174683.0288695133,"1181":181176.924921584,"1182":187674.0756090073,"1183":194438.8899808309,"1184":201207.0883372606,"1185":208216.396675319,"1186":215229.2049127925,"1187":222455.6177988246,"1188":229685.6326072763,"1189":237100.9036519999,"1190":244519.8643478016,"1191":252095.0016667151,"1192":259673.9017248975,"1193":267379.2823561984,"1194":275088.4838861473,"1195":282893.9706992327,"1196":290703.3214121074,"1197":298578.3820452617,"1198":306457.3342514985,"1199":314371.1616093788,"1200":322288.8927766746,"1201":330210.5266120378,"1202":338136.0610079998,"1203":346034.5101078564,"1204":353936.8410472679,"1205":361781.2055412378,"1206":369629.4177554697,"1207":377389.0110636586,"1208":385152.4027093218,"1209":392796.872648423,"1210":400445.0764737085,"1211":407944.5250434077,"1212":415447.6282339563,"1213":422772.7296108764,"1214":430101.3918421853,"1215":437223.5081157059,"1216":444349.0773461893,"1217":451240.3715393991,"1218":458134.9970870939,"1219":464768.5430168161,"1220":471405.2854735015,"1221":477755.1740158329,"1222":484108.1115647602,"1223":490149.5529067367,"1224":496193.8836243967,"1225":501903.3050982626,"1226":507615.4448364356,"1227":512970.5839503838,"1228":518328.2594121962,"1229":523308.2517104504,"1230":528290.5883530944,"1231":532876.0497585697,"1232":537463.6541757818,"1233":541636.7574903833,"1234":545811.79394955,"1235":549556.3392101681,"1236":553302.6000420077,"1237":556604.0784545635,"1238":559907.0480175854,"1239":562752.6992168045,"1240":565599.611184102,"1241":567978.4735930411,"1242":570358.3613353495,"1243":572261.3154259182,"1244":574165.0552920748,"1245":575584.8595758433,"1246":577005.2068998661,"1247":577936.5265070962,"1248":578868.1441997553,"1249":579307.5719338901,"1250":579747.0515459555,"1251":579693.1213304519,"1252":579638.9965044716,"1253":579092.1891689262,"1254":578544.9414264591,"1255":577507.6828091802,"1256":576469.7396506376,"1257":574946.3910251614,"1258":573422.1163497624,"1259":571418.9572130822,"1260":569414.6340967213,"1261":566939.8373871729,"1262":564463.6432861808,"1263":561527.2431287713,"1264":558589.2176074146,"1265":555203.0697139077,"1266":551815.0748230024,"1267":547992.8097030213,"1268":544168.4831660244,"1269":539925.4523338453,"1270":535680.1537251754,"1271":531033.3691144981,"1272":526384.1192424984,"1273":521352.1860683066,"1274":516317.5998020733,"1275":510920.6431345266,"1276":505520.8559397104,"1277":499780.4412798769,"1278":494037.029753384,"1279":487976.0779242403,"1280":481911.974641445,"1281":475554.6713300482,"1282":469194.0743405745,"1283":462565.7746483809,"1284":455934.0519776437,"1285":449061.1803556927,"1286":442184.7698890694,"1287":435094.7158529306,"1288":428001.0209976885,"1289":420722.0310337365,"1290":413439.3125704898,"1291":406000.3786601085,"1292":398557.6432106026,"1293":390988.3884122623,"1294":383415.2739636727,"1295":375745.8355044327,"1296":368072.4944419507,"1297":360333.4047797709,"1298":352590.3848890991,"1299":344812.4512153562,"1300":337030.5751247259,"1301":329244.7577824857,"1302":321455.0013200077,"1303":313692.2916178731,"1304":305925.6615642724,"1305":298216.9594680269,"1306":290504.3711872317,"1307":282880.3633719648,"1308":275252.5188024548,"1309":267743.557546459,"1310":260230.8240349256,"1311":252866.8074332939,"1312":245499.0978887712,"1313":238309.351859452,"1314":231116.0067009103,"1315":224129.1692488889,"1316":217138.8406121757,"1317":210382.7488085207,"1318":203623.2874696538,"1319":197124.8675914952,"1320":190623.2130525456,"1321":184408.3743175336,"1322":178190.4484888946,"1323":172283.9808035361,"1324":166374.5857021579,"1325":160800.0618275468,"1326":155222.7816948851,"1327":150002.4642159626,"1328":144779.5724419241,"1329":139934.3259073993,"1330":135086.6971276224,"1331":130635.9057073085,"1332":126182.933420684,"1333":122144.4244052028,"1334":118103.9444367705,"1335":114493.9178815571,"1336":110882.1379928232,"1337":107715.1027840806,"1338":104546.5387085601,"1339":101835.255303486,"1340":99122.6734599083,"1341":96878.1035271706,"1342":94632.4706364253,"1343":92863.733795637,"1344":91094.1736003101,"1345":89808.5114312274,"1346":88522.2686885276,"1347":87725.0161520137,"1348":86927.4280421971,"1349":86621.9924257384,"1350":86316.4674888653,"1351":86504.3149597354,"1352":86692.3196438899,"1353":87372.9694630263,"1354":88054.0223370855,"1355":89225.0487565162,"1356":90396.722410307,"1357":92053.7642466383,"1358":93711.6948709858,"1359":95848.4727171694,"1360":97986.3773260265,"1361":100594.7183334781,"1362":103204.4195601684,"1363":106274.2896934361,"1364":109345.7480631514,"1365":112865.291699834,"1366":116386.6452510238,"1367":120342.2319706662,"1368":124299.8430689453,"1369":128676.121446247,"1370":133054.6306060759,"1371":137834.5887961196,"1372":142616.9752978417,"1373":147782.0081742354,"1374":152949.65723725,"1375":158479.6398182323,"1376":164012.4160651912,"1377":169885.7829379026,"1378":175762.1098600128,"1379":181955.9402894941,"1380":188152.8853993037,"1381":194642.9937863247,"1382":201136.3591219418,"1383":207897.390452684,"1384":214661.808076237,"1385":221667.337987109,"1386":228676.3701005739,"1387":235899.0091632667,"1388":243125.2524465426,"1389":250536.7542617512,"1390":257951.9480211997,"1391":265523.3206944256,"1392":273098.4583950929,"1393":280800.0789545614,"1394":288505.5226958742,"1395":296307.2540010359,"1396":304112.8514842195,"1397":311984.1611634376,"1398":319859.3646890194,"1399":327769.4456370549,"1400":335683.4326628482,"1401":343601.3246225868,"1402":351523.1194063405,"1403":359417.8311549468,"1404":367316.4270016106,"1405":375157.0586588834,"1406":383001.5402900197,"1407":390757.4052662683,"1408":398517.0708287042,"1409":406157.8169308511,"1410":413802.2991630187,"1411":421298.0283810031,"1412":428797.414458809,"1413":436118.8009595316,"1414":443443.7505487638,"1415":450562.1564119072,"1416":457684.0174612949,"1417":464571.6057002756,"1418":471462.5275181956,"1419":478092.3719401883,"1420":484725.4151087839,"1421":491071.6065802622,"1422":497420.8492731734,"1423":503458.5979715739,"1424":509499.2382557044,"1425":515204.9715036966,"1426":520913.4252212642,"1427":526264.8805174907,"1428":531618.8743620832,"1429":536595.1872412409,"1430":541573.8466605364,"1431":546155.6330360384,"1432":550739.564614283,"1433":554908.9972785565,"1434":559080.3652736708,"1435":562821.2442541517,"1436":566563.8409874119,"1437":569861.6574805914,"1438":573160.9673010887,"1439":576002.9609322862,"1440":578846.2175037195,"1441":581221.4266866092,"1442":583597.6633703433,"1443":585496.9685674761,"1444":587397.0617030016,"1445":588813.2214166129,"1446":590229.9263286245,"1447":591157.6056796648,"1448":592085.5852696331,"1449":592521.3770522577,"1450":592957.2228616769,"1451":592899.6609900786,"1452":592841.9066522444,"1453":592291.4719467788,"1454":591740.5989740209,"1455":590699.7172637793,"1456":589658.1531473034,"1457":588131.1856966278,"1458":586603.2943264708,"1459":584596.5206231839,"1460":582588.5850660809,"1461":580110.178039371,"1462":577630.3757425171,"1463":574690.369508267,"1464":571748.7400268158,"1465":568358.9902876879,"1466":564967.3956633657,"1467":561141.5329199051,"1468":557313.6108671024,"1469":553066.9866245301,"1470":548818.0967086216,"1471":544167.722891605,"1472":539514.885911913,"1473":534479.3677264265,"1474":529441.1985430493,"1475":524040.6610502657,"1476":518637.2951198787,"1477":512893.3038119023,"1478":507146.3177224591,"1479":501081.7934133253,"1480":495014.1197312704,"1481":488653.2480991177,"1482":482289.0848651679,"1483":475657.2210025565,"1484":469021.9362332415,"1485":462145.5045823373,"1486":455265.5361541725,"1487":448171.9262216941,"1488":441074.6775331069,"1489":433792.1357966001,"1490":426505.8676193872,"1491":419063.3860514295,"1492":411617.1049985411,"1493":404044.3066488188,"1494":396467.6506986573,"1495":388794.6727854678,"1496":381117.7943144736,"1497":373375.1692870371,"1498":365628.6160721844,"1499":357847.1511131598,"1500":350061.7457739732,"1501":342272.401217731,"1502":334479.1195736366,"1503":326712.8867201058,"1504":318942.7355431661,"1505":311230.5143494786,"1506":303514.4089949811,"1507":295886.8861275966,"1508":288255.528525402,"1509":280743.0562540051,"1510":273226.8137422077,"1511":265859.2901533049,"1512":258488.0756323634,"1513":251294.8266353388,"1514":244097.9805156697,"1515":237107.6441069656,"1516":230113.8185158843,"1517":223354.2317580481,"1518":216591.2774630619,"1519":210089.3666247236,"1520":203584.2231194144,"1521":197365.897409746,"1522":191144.4865960396,"1523":185234.5359130911,"1524":179321.6597994913,"1525":173743.656895921,"1526":168162.8997154589,"1527":162939.1071677937,"1528":157712.7423019721,"1529":152864.0246505283,"1530":148012.9267266034,"1531":143558.6681328222,"1532":139102.2306413235,"1533":135060.2583874763,"1534":131016.3171451035,"1535":127402.8312782956,"1536":123787.594038236,"1537":120617.1034363619,"1538":117445.0859238323,"1539":114730.3510358022,"1540":112014.319661255,"1541":109766.3021474701,"1542":107517.2236235386,"1543":105745.0430953663,"1544":103972.0411564012,"1545":102682.9391853726,"1546":101393.2585803679,"1547":100592.570119142,"1548":99791.5480201602,"1549":99482.68034804,"1550":99173.7252869681,"1551":99358.1445630642,"1552":99542.7229798338,"1553":100219.9484569414,"1554":100897.5789122976,"1555":102065.1848343232,"1556":103233.4399099814,"1557":104887.06508543,"1558":106541.5809641244,"1559":108674.9459778668,"1560":110809.4396654798,"1561":113414.3716608715,"1562":116020.665782677,"1563":119087.1307162249,"1564":122155.1857893838,"1565":125671.3280306687,"1566":129189.2820856209,"1567":133141.4712061877,"1568":137095.6866005586,"1569":141468.5711671271,"1570":145843.688407408,"1571":150620.2565671017,"1572":155399.2549256868,"1573":160560.9015441744,"1574":165725.1662325339,"1575":171251.7663201349,"1576":176781.1619530113,"1577":182651.1500889668,"1578":188524.1001496779,"1579":194714.5555911495,"1580":200908.127584374,"1581":207394.864724272,"1582":213884.8606802685,"1583":220642.5244969347,"1584":227403.5764700017,"1585":234405.7425920251,"1586":241411.4127763286,"1587":248630.6917676016,"1588":255853.5768352475,"1589":263261.7222886824,"1590":270673.5615382666,"1591":278241.5815516032,"1592":285813.3684404191,"1593":293511.6400341422,"1594":301213.7366538845,"1595":309012.1226797231,"1596":316814.3767239049,"1597":324682.3448025198,"1598":332554.2085639757,"1599":340460.9515824446,"1600":348371.6025113147,"1601":356286.160204862,"1602":364204.6225512421,"1603":372096.0036893809,"1604":379991.2707505853,"1605":387828.5754454943,"1606":395669.7319354712,"1607":403422.2735898527,"1608":411178.6176478317,"1609":418816.0440610262,"1610":426457.2084178555,"1611":433949.6215722336,"1612":441445.6933962665,"1613":448763.7674511762,"1614":456085.4064006634,"1615":463200.5034282603,"1616":470319.0574444096,"1617":477203.3404505982,"1618":484090.9588342891,"1619":490717.501618747,"1620":497347.2449446399,"1621":503690.1383663698,"1622":510036.0848006398,"1623":516070.5390296285,"1624":522107.8866317323,"1625":527810.3289832161,"1626":533515.4935879417,"1627":538863.6615531453,"1628":544214.3698466766,"1629":549187.398952896,"1630":554162.7763755242,"1631":558741.2825287948,"1632":563321.935657395,"1633":567488.0916427822,"1634":571656.1847279258,"1635":575393.7905655197,"1636":579133.1159211496,"1637":582427.6628001203,"1638":585723.7047680101,"1639":588562.4323063727,"1640":591402.4245429266,"1641":593774.3711470675,"1642":596147.3470063717,"1643":598043.3931315746,"1644":599940.2289458584,"1645":601353.1330871074,"1646":602766.5841738257,"1647":603691.0114448385,"1648":604615.7406982392,"1649":605048.2838859565,"1650":605480.8828403291,"1651":605420.0758517476,"1652":605359.0781332004,"1653":604805.4017814988,"1654":604251.2888951921,"1655":603207.1690023018,"1656":602162.3684322904,"1657":600632.1662554115,"1658":599101.0418845996,"1659":597091.0369044296,"1660":595079.8717924391,"1661":592598.2369310603,"1662":590115.2085179884,"1663":587171.9778841968,"1664":584227.125718117,"1665":580834.1550075033,"1666":577439.3411230812,"1667":573610.2608291383,"1668":569779.122933718,"1669":565529.2845546355,"1670":561277.1822065661,"1671":556623.5976599936,"1672":551967.5516515891,"1673":546928.8261364982,"1674":541887.4513208679,"1675":536483.7098914472,"1676":531077.141718297,"1677":525329.9498596869,"1678":519579.7649100118,"1679":513512.0434293036,"1680":507441.1742626079,"1681":501077.1088310085,"1682":494709.7534810894,"1683":488074.6991842477,"1684":481436.2256607272,"1685":474556.6069339197,"1686":467673.4531064279,"1687":460576.6594494917,"1688":453476.2287095906,"1689":446190.5065932097,"1690":438901.0597058414,"1691":431455.4010957516,"1692":424005.944667033,"1693":416429.9726060897,"1694":408850.1446076124,"1695":401173.9963073049,"1696":393493.9491087069,"1697":385748.1570114651,"1698":377998.4383829322,"1699":370213.8096646426,"1700":362425.2422189301,"1701":354632.7372072112,"1702":346836.2967569972,"1703":339066.9067450325,"1704":331293.6000556516,"1705":323578.224993847,"1706":315858.9674138682,"1707":308228.2939619777,"1708":300593.7874145645,"1709":293078.1678355779,"1710":285558.7796521492,"1711":278188.1120259005,"1712":270813.7551002454,"1713":263617.365329466,"1714":256417.3800653504,"1715":249423.9061398399,"1716":242426.9446579453,"1717":235664.2236336344,"1718":228898.1366948534,"1719":222393.0948337615,"1720":215884.8219250795,"1721":209663.3684297887,"1722":203438.8314465492,"1723":197525.7562085326,"1724":191609.7571526756,"1725":186028.6329180324,"1726":180444.7560160437,"1727":175217.8453547609,"1728":169988.3639816072,"1729":165136.5314274797,"1730":160282.3202038992,"1731":155824.9499118584,"1732":151365.4023218816,"1733":147320.3215677078,"1734":143273.2734215481,"1735":139656.6822458746,"1736":136038.3412902523,"1737":132864.7485645116,"1738":129689.6305181945,"1739":126971.7966848523,"1740":124252.6679518566,"1741":122001.5546648865,"1742":119749.3819514288,"1743":117974.1088157874,"1744":116198.0158498139,"1745":114905.8244306382,"1746":113613.0559547559,"1747":112809.2811983259,"1748":112005.1743782256,"1749":111693.2235574816,"1750":111381.1869186954,"1751":111562.5261864013,"1752":111744.0261625218,"1753":112418.174765141,"1754":113092.7299105903,"1755":114257.2620857136,"1756":115422.4449759001,"1757":117072.999525733,"1758":118724.4463370991,"1759":120854.7438402298,"1760":122986.17157238,"1761":125588.0391658959,"1762":128191.2704378442,"1763":131254.6740719995,"1764":134319.6693946638,"1765":137832.7534328018,"1766":141347.6508303944,"1767":145296.7848378363,"1768":149247.9466617689,"1769":153617.7791990306,"1770":157989.8459495956,"1771":162763.3651576097,"1772":167539.3161010194,"1773":172697.9168392821,"1774":177859.1371808386,"1775":183382.6944535126,"1776":188909.0488018028,"1777":194775.9971819846,"1778":200645.9090141931,"1779":206833.3277529126,"1780":213023.8645675989,"1781":219507.5680516556,"1782":225994.5318729716,"1783":232749.1650746084,"1784":239507.1879507664,"1785":246506.3264924839,"1786":253508.9706115742,"1787":260725.2250511993,"1788":267945.0870792668,"1789":275350.2110036637,"1790":282759.0302332576,"1791":290324.0317341319,"1792":297892.8016165101,"1793":305588.0577083235,"1794":313287.1403291706,"1795":321082.5138576427,"1796":328881.7569044711,"1797":336746.7154842708,"1798":344615.5712439347,"1799":352519.3077561607,"1800":360426.9536728333,"1801":368338.5078467401,"1802":376253.96816456,"1803":384142.3487637249,"1804":392034.6167740627,"1805":399868.9239047293,"1806":407707.0843156096,"1807":415456.6313745619,"1808":423209.9823193039,"1809":430844.4170999794,"1810":438482.5913035359,"1811":445972.0157824166,"1812":453465.1004072598,"1813":460780.1887378207,"1814":468098.843436335,"1815":475210.9576848723,"1816":482326.5303924179,"1817":489207.8335589864,"1818":496092.473570601,"1819":502716.0394490581,"1820":509342.8073335785,"1821":515682.7267771087,"1822":522025.7006949035,"1823":528057.1838676921,"1824":534091.5618724251,"1825":539791.036083922,"1826":545493.2340046022,"1827":550838.4367402601,"1828":556186.1812573065,"1829":561156.2480386641,"1830":566128.6645866178,"1831":570704.2113139672,"1832":575281.9064639675,"1833":579445.1059166454,"1834":583610.2439135418,"1835":587344.8961059238,"1836":591081.2692579519,"1837":594372.8653735077,"1838":597665.958016748,"1839":600501.7376678067,"1840":603338.7834529843,"1841":605707.7850402616,"1842":608077.8173157959,"1843":609970.9212889161,"1844":611864.8163813892,"1845":613274.781229692,"1846":614685.2944509207,"1847":615606.7852824951,"1848":616528.5795211046,"1849":616958.1891172758,"1850":617387.8559019467,"1851":617324.1181641095,"1852":617260.1911153555,"1853":616703.5868511008,"1854":616146.5474685015,"1855":615099.5024941871,"1856":614051.7782562303,"1857":612518.6538234963,"1858":610984.6086075332,"1859":608971.6841915307,"1860":606957.601051644,"1861":604473.0495689233,"1862":601987.1059396844,"1863":599040.9614935229,"1864":596093.1969174939,"1865":592697.3151979775,"1866":589299.5917043241,"1867":585467.6031994572,"1868":581633.5584900418,"1869":577380.8146925315,"1870":573125.8083202326,"1871":568469.3211422662,"1872":563810.3738939404,"1873":558768.7485290398,"1874":553724.4752523522,"1875":548317.8367492693,"1876":542908.3728884961,"1877":537158.2867269481,"1878":531405.2088576677,"1879":525334.5958393362,"1880":519260.83651565,"1881":512893.8823063453,"1882":506523.6395566608,"1883":499885.6992366492,"1884":493244.3410652122,"1885":486361.8390644006,"1886":479475.8033354782,"1887":472376.1291483477,"1888":465272.8192481525,"1889":457984.2193400439,"1890":450691.8960281818,"1891":443243.3623594973,"1892":435791.0322367682,"1893":428212.1878450521,"1894":420629.4888777272,"1895":412950.4709691668,"1896":405267.555521591,"1897":397518.8965333243,"1898":389766.3123704008,"1899":381978.8194730371,"1900":374187.3892022512,"1901":366392.0227181452,"1902":358592.7221469177,"1903":350820.4733640021,"1904":343044.3092524234,"1905":335326.0781158664,"1906":327603.9658072744,"1907":319970.4389716053,"1908":312333.0803839453,"1909":304814.6101069422,"1910":297292.3725664279,"1911":289918.856922726,"1912":282541.6533179539,"1913":275342.4182050989,"1914":268139.5889346557,"1915":261143.2723372741,"1916":254143.4695166746,"1917":247377.9084855367,"1918":240608.9828705197,"1919":234101.1036624975,"1920":227589.9947349074,"1921":221365.7065474487,"1922":215138.3361975008,"1923":209222.4289169565,"1924":203303.5991414751,"1925":197719.6455088352,"1926":192132.9405292033,"1927":186903.2031093584,"1928":181670.8962954525,"1929":176816.2396171134,"1930":171959.2055845941,"1931":167499.013797621,"1932":163036.6460254537,"1933":158988.7464005682,"1934":154938.8806939138,"1935":151319.4732667028,"1936":147698.3173672418,"1937":144521.9110041042,"1938":141343.9806255768,"1939":138623.3357639571,"1940":135901.3973053644,"1941":133647.4755942273,"1942":131392.4957567834,"1943":129614.4167960891,"1944":127835.51930275,"1945":126540.5246526514,"1946":125244.9542410462,"1947":124438.3788428518,"1948":123631.4726737057,"1949":123316.7237953963,"1950":123001.8903892881,"1951":123180.4341786804,"1952":123359.139964262,"1953":124030.4956628846,"1954":124702.259189649,"1955":125864.0010301702,"1956":127026.3948686094,"1957":128674.1616483239,"1958":130322.8219699758,"1959":132450.3342625737,"1960":134578.9780621508,"1961":137178.0629998331,"1962":139778.5128914689,"1963":142839.1364196159,"1964":145901.3529093604,"1965":149411.6593864532,"1966":152923.7804936625,"1967":156870.1394801723,"1968":160818.5275514141,"1969":165185.5876030186,"1970":169554.8831337535,"1971":174325.6323865592,"1972":179098.8146381791,"1973":184254.6479468683,"1974":189413.102119867,"1975":194933.8944837998,"1976":200457.4851819681,"1977":206321.6711694508,"1978":212188.8218651886,"1979":218373.4807224727,"1980":224561.2589095669,"1981":231042.205018685,"1982":237526.4127165267,"1983":244278.2910449665,"1984":251033.560297019,"1985":258029.946462538,"1986":265029.8394521541,"1987":272243.3440078478,"1988":279460.4573963466,"1989":286862.8339243592,"1990":294268.9069995761,"1991":301831.1635869052,"1992":309397.1897953957,"1993":317089.7034518063,"1994":324786.0448745642,"1995":332578.6784410909,"1996":340375.1827609495,"1997":348237.4038475879,"1998":356103.5233467337,"1999":364004.5248299206,"2000":371909.4369478708,"2001":379818.2585522103,"2002":387730.9875284586,"2003":395616.6380128894,"2004":403506.1771341735,"2005":411337.7566003113,"2006":419173.190570034,"2007":426920.0124100471,"2008":434670.6393569173,"2009":442302.3513596384,"2010":449937.8040040098,"2011":457424.5081413279,"2012":464914.8736410852,"2013":472227.2440618929,"2014":479543.1820648444,"2015":486652.5808308677,"2016":493765.4392678081,"2017":500644.0293745421,"2018":507525.9575359557,"2019":514146.8127727097,"2020":520770.8712228906,"2021":527108.0824383122,"2022":533448.3493330978,"2023":539477.1266868465,"2024":545508.8000753802,"2025":551205.5708723913,"2026":556905.0665791732,"2027":562247.568300396,"2028":567592.6130013471,"2029":572559.9811638277,"2030":577529.7002890024,"2031":582102.5507885517,"2032":586677.5509046132,"2033":590838.0565160975,"2034":595000.5018634307,"2035":598732.4625967664,"2036":602466.1454791531,"2037":605755.0525133617,"2038":609045.4572624395,"2039":611878.5502054127,"2040":614712.9104674748,"2041":617079.2277155017,"2042":619446.5768345468,"2043":621336.9988328362,"2044":623228.2131310358,"2045":624635.4983645229,"2046":626043.3331492948,"2047":626962.1467216747,"2048":627881.2648772558,"2049":628308.1995654705,"2050":628735.1926161636,"2051":628668.7823172358,"2052":628602.1838791878,"2053":628042.9093963469,"2054":627483.2009647812,"2055":626433.4881100341,"2056":625383.0971590932,"2057":623847.3071797402,"2058":622310.5975824405,"2059":620295.0099493031,"2060":618278.2647554033,"2061":615791.0523807131,"2062":613302.4490204712,"2063":610353.6460031973,"2064":607403.2240148725,"2065":604004.6860408033,"2066":600604.307449269,"2067":596769.6650021222,"2068":592932.9675049589,"2069":588677.572073165,"2070":584419.9152189802,"2071":579760.7787104604,"2072":575099.18328185,"2073":570054.9108858709,"2074":565007.9917262497,"2075":559598.7084873181,"2076":554186.6010367225,"2077":548433.8724303209,"2078":542678.1532600999,"2079":536604.9000836859,"2080":530528.5017437219,"2081":524158.909658892,"2082":517786.0301733837,"2083":511145.4542562004,"2084":504501.4616251955,"2085":497616.3263013728,"2086":490727.6583849501,"2087":483625.3531447861,"2088":476519.4133249809,"2089":469228.1846296439,"2090":461933.2336618942,"2091":454482.0734676237,"2092":447027.1179485723,"2093":439445.6492887608,"2094":431860.3271805319,"2095":424178.6872572245,"2096":416493.1509200258,"2097":408741.8721662288,"2098":400986.669360837,"2099":393196.5589430379,"2100":385402.5122728216,"2101":377604.5305092636,"2102":369802.6157775369,"2103":362027.7539520511,"2104":354248.9779148081,"2105":346528.1359684713,"2106":338803.4139649634,"2107":331167.2785482234,"2108":323527.3124923194,"2109":316006.2358588829,"2110":308481.3930727302,"2111":301105.2732931708,"2112":293725.4666613094,"2113":286523.6296291215,"2114":279318.1995460913,"2115":272319.2832418596,"2116":265316.8818191391,"2117":258548.7232896024,"2118":251777.2012789034,"2119":245266.7267769119,"2120":238753.0236560621,"2121":232526.1423750515,"2122":226296.1800302588,"2123":220377.6818525779,"2124":214456.2622766698,"2125":208869.7199393161,"2126":203280.427349688,"2127":198048.1034135697,"2128":192813.2111761201,"2129":187955.9701659752,"2130":183096.3528923969,"2131":178633.5789541223,"2132":174168.6301194225,"2133":170118.1505197864,"2134":166065.7059251774,"2135":162443.7206958231,"2136":158819.9880790463,"2137":155641.0060824384,"2138":152460.5011533049,"2139":149737.2828229634,"2140":147012.7719765546,"2141":144756.2789575294,"2142":142498.7288911492,"2143":140718.0807794951,"2144":138936.6152121989,"2145":137639.0535641731,"2146":136340.917229699,"2147":135531.7769827236,"2148":134722.3070379154,"2149":134404.9954560945,"2150":134087.6004176589,"2151":134263.5836449419,"2152":134439.7299376681,"2153":135108.5272117258,"2154":135777.7333812538,"2155":136936.9189309059,"2156":138096.7575438839,"2157":139741.9701625863,"2158":141388.0773867179,"2159":143513.0376443309,"2160":145639.1304705034,"2161":148235.6654954078,"2162":150833.5665339394,"2163":153891.6422677042,"2164":156951.3120208384,"2165":160459.0728181434,"2166":163968.6493014392,"2167":167912.4647189629,"2168":171858.3102752003,"2169":176222.8288648374,"2170":180589.5839856984,"2171":185357.7938797814,"2172":190128.4378228886,"2173":195281.7338723351,"2174":200437.6518344223,"2175":205955.9090348369,"2176":211476.9656159436,"2177":217338.6185318862,"2178":223203.2372006708,"2179":229385.3650746554,"2180":235570.6133211721,"2181":242049.0305315033,"2182":248530.7103714195,"2183":255280.0618818662,"2184":262032.8053549305,"2185":269026.66677954,"2186":276024.0360653999,"2187":283235.0179535667,"2188":290449.609709845,"2189":297849.4656400215,"2190":305253.0191508659,"2191":312812.7572063666,"2192":320376.2659146542,"2193":328066.2631015703,"2194":335760.0890846255,"2195":343550.2082403263,"2196":351344.1991773218,"2197":359203.907908147,"2198":367067.5160776175,"2199":374966.0072563567,"2200":382868.4100941768,"2201":390774.7234417956,"2202":398684.9451838252,"2203":406568.0894556328,"2204":414455.1233849844,"2205":422284.1986789761,"2206":430117.1294954363,"2207":437861.4492001684,"2208":445609.5750288384,"2209":453238.7869295406,"2210":460871.7404871757,"2211":468355.9465521427,"2212":475843.8149930375,"2213":483153.6893675764,"2214":490467.1323359582,"2215":497574.0370782179,"2216":504684.4025013091,"2217":511560.5006032168,"2218":518439.9377679375,"2219":525058.3030152431,"2220":531679.8724823324,"2221":538014.5957201326,"2222":544352.3756418813,"2223":550378.6670262933,"2224":556407.8554483072,"2225":562102.1422807329,"2226":567799.1550239825,"2227":573139.174781846,"2228":578481.7385187318,"2229":583446.626715563,"2230":588413.8668726272,"2231":592984.2394007288,"2232":597556.7625411309,"2233":601714.7921718701,"2234":605874.7625325,"2235":609604.2492723023,"2236":613335.4591534549,"2237":616621.8941778592,"2238":619909.827907694,"2239":622740.4508211181,"2240":625572.3420424587,"2241":627936.1912377262,"2242":630301.0732911099,"2243":632189.0292099725,"2244":634077.7784141179,"2245":635482.599538062,"2246":636887.9711969421,"2247":637804.3226262224,"2248":638720.9796206382,"2249":639145.4541287647,"2250":639569.987979591,"2251":639501.1194601627,"2252":639432.0637801267,"2253":638870.3330329576,"2254":638308.1693138718,"2255":637256.0021475616,"2256":636203.1578601651,"2257":634664.9155186152,"2258":633125.7545325297,"2259":631107.7164831711,"2260":629088.5218447689,"2261":626598.8609964506,"2262":624107.8101326114,"2263":621156.5605809283,"2264":618203.6930265409,"2265":614802.7104539155,"2266":611399.8882304915,"2267":607562.8031172833,"2268":603723.6639190493,"2269":599465.8277503391,"2270":595205.731122557,"2271":590544.1558029244,"2272":585880.1225248523,"2273":580833.4132402303,"2274":575784.0581519534,"2275":570372.3399435232,"2276":564957.7984817565,"2277":559202.636821683,"2278":553444.4855544621,"2279":547368.8012368935,"2280":541289.9727107951,"2281":534917.9513940266,"2282":528542.6436299522,"2283":521899.6403867528,"2284":515253.2213814605,"2285":508365.6606342586,"2286":501474.5682445457,"2287":494369.8394803618,"2288":487261.4770849898,"2289":479967.8267617226,"2290":472670.455112864,"2291":465216.8751834915,"2292":457759.5008745312,"2293":450175.6143691916,"2294":442587.875359004,"2295":434903.8194764965,"2296":427215.8681220472,"2297":419462.1752921401,"2298":411704.5593509714,"2299":403912.0367369218,"2300":396115.5788091759,"2301":388315.1867260045,"2302":380510.862611777,"2303":372733.5923401,"2304":364952.4087921739,"2305":357229.1602698612,"2306":349502.0326242848,"2307":341863.4924985848,"2308":334221.1226660317,"2309":326697.6431874597,"2310":319170.3984868893,"2311":311791.8777228351,"2312":304409.6710356074,"2313":297205.434876389,"2314":289997.606593872,"2315":282996.2930169057,"2316":275991.4952474127,"2317":269220.9412962765,"2318":262447.0247883626,"2319":255934.1567127533,"2320":249418.0609410966,"2321":243188.7879313043,"2322":236956.4347789709,"2323":231035.5467142064,"2324":225111.7381708893,"2325":219522.8077850197,"2326":213931.1280649877,"2327":208696.4179157979,"2328":203459.1403818305,"2329":198599.5149909433,"2330":193737.5142516214,"2331":189272.3577618257,"2332":184805.0272890522,"2333":180752.1669640157,"2334":176697.3425559064,"2335":173072.9784241794,"2336":169446.8678153864,"2337":166265.508736348,"2338":163082.6276336004,"2339":160357.0340376925,"2340":157630.1488329974,"2341":155371.2823621991,"2342":153111.3597497933,"2343":151328.3399970962,"2344":149544.5036929754,"2345":148244.5722115807,"2346":146944.0669464309,"2347":146132.558670712,"2348":145320.721598332,"2349":145001.0437893517,"2350":144681.2834234105,"2351":144854.9022220843,"2352":145028.6849843409,"2353":145695.1196253129,"2354":146361.9640583841,"2355":147518.7887674546,"2356":148676.2674349729,"2357":150319.1210025856,"2358":151962.8700692462,"2359":154085.4730622565,"2360":156209.2095159453,"2361":158803.3890597363,"2362":161398.9355077773,"2363":164454.6575409276,"2364":167511.9744825775,"2365":171017.3833567834,"2366":174524.6088046214,"2367":178466.0740735854,"2368":182409.570367419,"2369":186771.7405800668,"2370":191136.1482086124,"2371":195902.0114943145,"2372":200670.3097122366,"2373":205821.2609189558,"2374":210974.8349200366,"2375":216490.7490404299,"2376":222009.4634217652,"2377":227868.7750174518,"2378":233731.0532447626,"2379":239910.841555323,"2380":246093.7511157335,"2381":252569.8305165458,"2382":259049.1734228003,"2383":265796.1888747138,"2384":272546.597163645,"2385":279538.1242777944,"2386":286533.1601261409,"2387":293741.8094490152,"2388":300954.0695114975,"2389":308351.5946186504,"2390":315752.8181765211,"2391":323310.2271483757,"2392":330871.4076416238,"2393":338559.0774813864,"2394":346250.576984455,"2395":354038.3705266173,"2396":361830.0367158047,"2397":369687.4215638353,"2398":377548.7067148088,"2399":385444.8757386333,"2400":393344.9572844067,"2401":401248.9502021335,"2402":409156.8523757131,"2403":417037.677939801,"2404":424922.3940214522,"2405":432749.152327053,"2406":440579.7670137224,"2407":448321.7714465598,"2408":456067.5828605091,"2409":463694.4812029776,"2410":471325.1220581462,"2411":478807.0162757162,"2412":486292.5737235757,"2413":493600.1379587392,"2414":500911.2716407026,"2415":508015.8679487997,"2416":515123.9257892829,"2417":521997.7171594377,"2418":528874.8484425612,"2419":535490.9086577273,"2420":542110.1739414373,"2421":548442.5938439217,"2422":554778.0712777226,"2423":560802.0610208597,"2424":566828.9486475777,"2425":572520.9355299929,"2426":578215.6491678254,"2427":583553.3706641734,"2428":588893.6369827546,"2429":593856.228603802,"2430":598821.1730269142,"2431":603389.2506622075,"2432":607959.4797502595,"2433":612115.2161684121,"2434":616272.8941555442,"2435":620000.0893602446,"2436":623729.0085440109,"2437":627013.1537080591,"2438":630298.7984138867,"2439":633127.1331389698,"2440":635956.7370069553,"2441":638318.2996831732,"2442":640680.8960511333,"2443":642566.5671175201,"2444":644453.0323014597,"2445":645855.5702367913,"2446":647258.6595379759,"2447":648172.7294398024,"2448":649087.1057363315,"2449":649509.3003754651,"2450":649931.5551855192,"2451":649860.4084528673,"2452":649789.0753864852,"2453":649225.0680791768,"2454":648660.6286254888,"2455":647606.186549445,"2456":646551.0681765153,"2457":645010.5525729641,"2458":643469.1191477464,"2459":641448.8094814541,"2460":639427.3440476554,"2461":636935.4132248118,"2462":634442.0932066562,"2463":631488.5753202025,"2464":628533.440249929,"2465":625130.1909796406,"2466":621725.1028761169,"2467":617885.7526997126,"2468":614044.3492545278,"2469":609784.2496544542,"2470":605521.8904102389,"2471":600858.0532884473,"2472":596191.7590218348,"2473":591142.7895616363,"2474":586091.175110093,"2475":580677.1983500532,"2476":575260.3991476814,"2477":569502.9805573559,"2478":563742.573169585,"2479":557664.6335405186,"2480":551583.5505113251,"2481":545209.2754992159,"2482":538831.7148469039,"2483":532186.4595219353,"2484":525537.7892406795,"2485":518647.978022686,"2486":511754.6359667031,"2487":504647.6583401295,"2488":497537.0478856039,"2489":490241.1503057773,"2490":482941.5322023117,"2491":475485.7066196438,"2492":468026.0874580596,"2493":460439.9569001284,"2494":452849.9746367429,"2495":445163.6762997934,"2496":437473.4832890208,"2497":429717.549600273,"2498":421957.6935971106,"2499":414162.9317172797,"2500":406364.2353193305,"2501":398561.6055609007,"2502":390755.0445657272,"2503":382975.538206785,"2504":375192.1193646433,"2505":367466.6363405343,"2506":359737.2749849514,"2507":352096.5019404019,"2508":344451.8999795424,"2509":336926.1891625604,"2510":329396.7139128638,"2511":322015.9633883345,"2512":314631.5277286611,"2513":307425.0633844003,"2514":300215.0077036213,"2515":293211.4675145506,"2516":286204.4439184885,"2517":279431.6649256971,"2518":272655.5241604215,"2519":266140.4326111237,"2520":259622.1141488328,"2521":253390.619230842,"2522":247156.0449521283,"2523":241232.9365421846,"2524":235306.9084342731,"2525":229715.7592637784,"2526":224121.8615384758,"2527":218884.934162756,"2528":213645.4401803855,"2529":208783.5991186098,"2530":203919.3834853018,"2531":199452.0128778117,"2532":194982.4690630223,"2533":190927.396171047,"2534":186870.3599704558,"2535":183243.7848201036,"2536":179615.4639659304,"2537":176431.895414152,"2538":173246.8056106975,"2539":170519.0040855107,"2540":167789.9117223599,"2541":165528.8388633252,"2542":163266.710632299,"2543":161481.4860299949,"2544":159695.4456446787,"2545":158393.310849899,"2546":157090.6030385742,"2547":156276.8929832905,"2548":155462.8548973569,"2549":155140.976840236,"2550":154819.0169909694,"2551":154990.4370705363,"2552":155162.0218773081,"2553":155826.2593258221,"2554":156490.9073288672,"2555":157645.5363697494,"2556":158800.8201303238,"2557":160441.4795516452,"2558":162083.0352320719,"2559":164203.4455983189,"2560":166324.9901841211,"2561":168916.9786183139,"2562":171510.3347144552,"2563":174563.8671528162,"2564":177618.9952561989,"2565":181122.216048073,"2566":184627.2541689279,"2567":188566.5328656719,"2568":192507.8433414634,"2569":196867.8284896627,"2570":201230.0518067697,"2571":205993.7315334602,"2572":210759.8469442151,"2573":215908.6160950302,"2574":221060.0087908889,"2575":226573.7423561619,"2576":232090.276931899,"2577":237947.4094709307,"2578":243807.5093899516,"2579":249985.1201400097,"2580":256165.8528871286,"2581":262639.7562212838,"2582":269116.9238069435,"2583":275861.7646837378,"2584":282609.9991424676,"2585":289599.3531707483,"2586":296592.2166769916,"2587":303798.6944009535,"2588":311008.7836071438,"2589":318404.138600054,"2590":325803.1927851613,"2591":333358.4331251621,"2592":340917.4457268976,"2593":348602.9484149204,"2594":356292.2815054546,"2595":364077.9093737211,"2596":371867.4106270853,"2597":379722.6312767998,"2598":387581.7529663995,"2599":395475.7592652285,"2600":403373.6788218209,"2601":411275.5104856189,"2602":419181.2521399593,"2603":427059.9179189363,"2604":434942.4749490442,"2605":442767.0749361088,"2606":450595.5320366899,"2607":458335.3796153278,"2608":466079.0349064084,"2609":473703.7778567814,"2610":481332.2640500709,"2611":488812.0043354215,"2612":496295.4085801663,"2613":503600.8203407645,"2614":510909.8022761581,"2615":518012.2475651267,"2616":525118.1551133699,"2617":531989.796917621,"2618":538864.7793606255,"2619":545478.6914609061,"2620":552095.8093544135,"2621":558426.0825908289,"2622":564759.4140821449,"2623":570781.2586058328,"2624":576806.0017355894,"2625":582495.844842984,"2626":588188.4154271899,"2627":593523.9945907596,"2628":598862.1192968654,"2629":603822.5700251957,"2630":608785.3742748051,"2631":613351.3124552664,"2632":617919.4028066146,"2633":622073.0012056496,"2634":626228.5418907086,"2635":629953.6005098396,"2636":633680.3838240001,"2637":636962.3938338666,"2638":640245.9041003974,"2639":643072.1051005304,"2640":645899.575957375,"2641":648259.0063357239,"2642":650619.4711185506,"2643":652503.0113120038,"2644":654387.3463346743,"2645":655787.7548198667,"2646":657188.7153815083,"2647":658100.6572538546,"2648":659012.9062304336,"2649":659432.9742586149,"2650":659853.1031661835,"2651":659779.8312389818,"2652":659706.3736854554,"2653":659140.2425978787,"2654":658573.6800702694,"2655":657517.1156261229,"2656":656459.8755903813,"2657":654917.2390287821,"2658":653373.6853497536,"2659":651351.2561333618,"2660":649327.6718526497,"2661":646833.6228855541,"2662":644338.1854252837,"2663":641382.5507983293,"2664":638425.2996886461,"2665":635019.9350795168,"2666":631612.7323371993,"2667":627771.2682215275,"2668":623927.7515360808,"2669":619665.5393942312,"2670":615401.0683062066,"2671":610735.1200380538,"2672":606066.7153220102,"2673":601015.6361087934,"2674":595961.9126001277,"2675":590545.8274783454,"2676":585126.9206090953,"2677":579367.3950462404,"2678":573604.881379775,"2679":567524.836165335,"2680":561441.6482435758,"2681":555065.269031196,"2682":548685.6048703965,"2683":542038.2467282122,"2684":535387.4743205016,"2685":528495.561666304,"2686":521600.1188638579,"2687":514491.0411800534,"2688":507378.3313570202,"2689":500080.3350969019,"2690":492778.6190008529,"2691":485320.6961128034,"2692":477858.9803325332,"2693":470270.7538421061,"2694":462678.6763319099,"2695":454990.2834333307,"2696":447297.9965456055,"2697":439539.969664079,"2698":431778.0211518094,"2699":423981.1674460405,"2700":416180.3799048215,"2701":408375.6596852887,"2702":400567.0089106793,"2703":392785.4134534682,"2704":384999.9061937257,"2705":377272.3354321854,"2706":369540.8870188428,"2707":361898.0275957079,"2708":354251.3399349402,"2709":346723.5440962314,"2710":339191.9845024935,"2711":331809.1503111133,"2712":324422.6316612851,"2713":317214.0850030715,"2714":310001.9476840486,"2715":302996.3265319497,"2716":295987.2226475832,"2717":289212.3640407195,"2718":282434.1443351125,"2719":275916.9745187339,"2720":269396.5784621226,"2721":263163.0066220828,"2722":256926.3560931023,"2723":251001.1721041859,"2724":245073.0690881082,"2725":239479.8456797666,"2726":233883.8743864498,"2727":228644.8741120627,"2728":223403.3078998861,"2729":218539.3952766808,"2730":213673.1087498355,"2731":209203.6679162163,"2732":204732.0545422231,"2733":200674.9127574866,"2734":196615.8083300946,"2735":192987.1656184206,"2736":189356.7778679236,"2737":186171.143084339,"2738":182983.987713116,"2739":180254.1212837192,"2740":177522.964679438,"2741":175259.8282418745,"2742":172995.6370944433,"2743":171208.3502373808,"2744":169420.2482584765,"2745":168116.0525308028,"2746":166811.2844468028,"2747":165995.5147785876,"2748":165179.4177389921,"2749":164855.4813870049,"2750":164531.4639011944,"2751":164700.8270020671,"2752":164870.3554875222,"2753":165532.5372716252,"2754":166195.1302666942,"2755":167347.7049555645,"2756":168500.9350196212,"2757":170139.5413994497,"2758":171779.0446929394,"2759":173897.4033263367,"2760":176016.8968329089,"2761":178606.834841024,"2762":181198.141163773,"2763":184249.6244809609,"2764":187302.7041149244,"2765":190803.8770886675,"2766":194306.8680422152,"2767":198244.1002220118,"2768":202183.3648307519,"2769":206541.304761333,"2770":210901.4835097924,"2771":215663.1193163438,"2772":220427.1914550069,"2773":225573.9179813165,"2774":230723.2686997957,"2775":236234.9609343551,"2776":241749.4548255854,"2777":247604.5473258582,"2778":253462.60785141,"2779":259638.1798528309,"2780":265816.8744956871,"2781":272288.7403694978,"2782":278763.871138275,"2783":285506.6758411928,"2784":292252.8747685972,"2785":299240.193907649,"2786":306231.0231663059,"2787":313435.46728387,"2788":320643.5235243985,"2789":328036.8461919301,"2790":335433.86869149,"2791":342987.0779853234,"2792":350544.0601798201,"2793":358227.5330990825,"2794":365914.8370588846,"2795":373698.4364339983,"2796":381485.9098313396,"2797":389339.1032617129,"2798":397196.1983682053,"2799":405088.1787197133,"2800":412984.0729643245,"2801":420883.8799510343,"2802":428787.5975627339,"2803":436664.2399330722,"2804":444544.7741880986,"2805":452367.3520331949,"2806":460193.7876244767,"2807":467931.6143260411,"2808":475673.2493718314,"2809":483295.9727082548,"2810":490922.4399184937,"2811":498400.1618512515,"2812":505881.5483734204,"2813":513184.9430410195,"2814":520491.9085125507,"2815":527592.3379663548,"2816":534696.2303076924,"2817":541565.8575328586,"2818":548438.8260241611,"2819":555050.7247996852,"2820":561665.8299949451,"2821":567994.0911591855,"2822":574325.4112039634,"2823":580345.244906315,"2824":586367.9778395019,"2825":592055.8113746594,"2826":597746.3730105271,"2827":603079.943849224,"2828":608416.0608534897,"2829":613374.5045025803,"2830":618335.3022951185,"2831":622899.2346402459,"2832":627465.3197775668,"2833":631616.9135834504,"2834":635770.4502958044,"2835":639493.5055622472,"2836":643218.2861433077,"2837":646498.2940392337,"2838":649779.8028105559,"2839":652604.0029337847,"2840":655429.4735316025,"2841":657786.9042683756,"2842":660145.3700266517,"2843":662026.9118121538,"2844":663909.2490430479,"2845":665307.6603522141,"2846":666706.6243531556,"2847":667616.5702797043,"2848":668526.8239249653,"2849":668944.8972358857,"2850":669363.0320398281,"2851":669287.7666222136,"2852":669212.3161910665,"2853":668644.1928382406,"2854":668075.6386573336,"2855":667017.0831714208,"2856":665957.8527050253,"2857":664413.2263234659,"2858":662867.6834347526,"2859":660843.2656185336,"2860":658817.6933474345,"2861":656321.6569989753,"2862":653824.2327659484,"2863":650866.6119744285,"2864":647907.3753079555,"2865":644500.0257493972,"2866":641090.8386645969,"2867":637247.3908129745,"2868":633401.890997696,"2869":629137.6963317201,"2870":624871.2433248622,"2871":620203.313742757,"2872":615532.92831723,"2873":610479.8689985877,"2874":605424.1659881436,"2875":600006.1019678197,"2876":594585.2168028551,"2877":588823.7135467036,"2878":583059.2227889501,"2879":576977.2010848224,"2880":570892.037274568,"2881":564513.6827744778,"2882":558132.0439263457,"2883":551482.7116968,"2884":544829.965801293,"2885":537936.0802584586,"2886":531038.6651661299,"2887":523927.6157907923,"2888":516812.9348741712,"2889":509512.9681180061,"2890":502209.2821230484,"2891":494749.3899328251,"2892":487285.7054467138,"2893":479695.510846376,"2894":472101.4658217981,"2895":464411.1060039649,"2896":456716.852791713,"2897":448956.8601799867,"2898":441192.9465314445,"2899":433394.1282829308,"2900":425591.3767920959,"2901":417784.6932156782,"2902":409974.0796765163,"2903":402190.5220466879,"2904":394403.0532058663,"2905":386673.5214543882,"2906":378940.1126418533,"2907":371295.2934098755,"2908":363646.6465302194,"2909":356116.8920621817,"2910":348583.3744282799,"2911":341198.5827855071,"2912":333810.1072726638,"2913":326599.6043394197,"2914":319385.5113329584,"2915":312377.9350806209,"2916":305366.8766828238,"2917":298590.0641489464,"2918":291809.8911023515,"2919":285290.7685306206,"2920":278768.4203039026,"2921":272532.8968786121,"2922":266294.2953488479,"2923":260367.160943226,"2924":254437.1080941328,"2925":248841.935436078,"2926":243244.0154759631,"2927":238003.0671173056,"2928":232759.5534030003,"2929":227893.6938594218,"2930":223025.4609935731,"2931":218554.0744019352,"2932":214080.5158505232,"2933":210021.4294685835,"2934":205960.3810238201,"2935":202329.7948742229,"2936":198697.4642648679,"2937":195509.8872011081,"2938":192320.7901280102,"2939":189588.9825746574,"2940":186855.8854239576,"2941":184590.8090171319,"2942":182324.6784772147,"2943":180535.4528040624,"2944":178745.4125850846,"2945":177439.2791929746,"2946":176132.5740197969,"2947":175314.8678372842,"2948":174496.8348578934,"2949":174170.9631402357,"2950":173845.0108625026,"2951":174012.4397448236,"2952":174180.0345847219,"2953":174840.2832958872,"2954":175500.9437902622,"2955":176651.5865503072,"2956":177802.8852570329,"2957":179439.5608506503,"2958":181077.1339286754,"2959":183193.5629169811,"2960":185311.1273484619,"2961":187899.1368511133,"2962":190488.5152376546,"2963":193538.0711875187,"2964":196589.2240226712,"2965":200088.4707657456,"2966":203589.5360563963,"2967":207524.8431406975,"2968":211462.1832209746,"2969":215818.1991897557,"2970":220176.4545427094,"2971":224936.1675196812,"2972":229698.3173943229,"2973":234843.1222218015,"2974":239990.5518062733,"2975":245500.3234712823,"2976":251012.8973570527,"2977":256866.0704155904,"2978":262722.2120627663,"2979":268895.8657488056,"2980":275072.6426389099,"2981":281542.5913222338,"2982":288015.8054624259,"2983":294756.6940982966,"2984":301500.9775198292,"2985":308486.3817138215,"2986":315475.2965878692,"2987":322677.8268809126,"2988":329883.9698566475,"2989":337275.3798187515,"2990":344670.4901718893,"2991":352221.7878779458,"2992":359776.859042951,"2993":367458.4214906481,"2994":375143.815536452,"2995":382925.5055547757,"2996":390711.0701521774,"2997":398562.3553391035,"2998":406417.5427582837,"2999":414307.6159782574,"3000":422201.6036467559,"3001":430099.504612418,"3002":438001.3167577793,"3003":445876.0542161334,"3004":453754.6841131744,"3005":461575.3581539294,"3006":469399.8904941598,"3007":477135.8144976092,"3008":484875.547397867,"3009":492496.3691409876,"3010":500120.9353098005,"3011":507596.7567526571,"3012":515076.2433360973,"3013":522377.738615789,"3014":529682.805249883,"3015":536781.3364163691,"3016":543883.3310201578,"3017":550751.0610571941,"3018":557622.1329094361,"3019":564232.1355946201,"3020":570845.3452479115,"3021":577171.7114182065,"3022":583501.1370167139,"3023":589519.0768201224,"3024":595539.9164013466,"3025":601225.8571311745,"3026":606914.5265079994,"3027":612246.2056335943,"3028":617580.4314703529,"3029":622536.9844971861,"3030":627495.8922123717,"3031":632057.9350247065,"3032":636622.1311734507,"3033":640771.8365346297,"3034":644923.4853458077,"3035":648644.6532542602,"3036":652367.5470201732,"3037":655645.6686434523,"3038":658925.2916842863,"3039":661747.6066188441,"3040":664571.1925694667,"3041":666926.7392001798,"3042":669283.3213931907,"3043":671162.9801538823,"3044":673043.4349000808,"3045":674439.9642643272,"3046":675837.0468597856,"3047":676745.1119199494,"3048":677653.4852375857,"3049":678069.6787593036,"3050":678485.9343121285,"3051":678408.7901811441,"3052":678331.4615740383,"3053":677761.4605823284,"3054":677191.0292992761,"3055":676130.5972476213,"3056":675069.4907515518,"3057":673522.9888760516,"3058":671975.5710287961,"3059":669949.2787890997,"3060":667921.8326292539,"3061":665423.9229264455,"3062":662924.6258731339,"3063":659965.1327950611,"3064":657004.0243754348,"3065":653594.8035967909,"3066":650183.745824641,"3067":646338.4278180739,"3068":642491.0583799247,"3069":638224.9946228218,"3070":633956.6730562504,"3071":629286.8754455155,"3072":624614.6225221133,"3073":619559.6962360211,"3074":614502.1267882241,"3075":609082.1968603156,"3076":603659.446317207,"3077":597896.0782120243,"3078":592129.7231340256,"3079":586045.8376381116,"3080":579958.8105642032,"3081":573578.5933282652,"3082":567195.0922717659,"3083":560543.8983610081,"3084":553889.2913111191,"3085":546993.5451404079,"3086":540094.2699463833,"3087":532981.3609952066,"3088":525864.8210282798,"3089":518562.995747019,"3090":511257.4517518527,"3091":503795.7020859852,"3092":496330.1606484719,"3093":488738.1096206525,"3094":481142.2086921917,"3095":473449.9934937533,"3096":465753.8854238529,"3097":457992.0384771146,"3098":450226.2710158721,"3099":442425.5994766652,"3100":434620.9952168046,"3101":426812.4593927237,"3102":418999.9941269355,"3103":411214.5852912027,"3104":403425.2657648788,"3105":395693.8838479838,"3106":387958.6253897995,"3107":380311.9570316231,"3108":372661.4615449023,"3109":365129.8589886176,"3110":357594.4937849705,"3111":350207.8550906386,"3112":342817.533044107,"3113":335605.1840947305,"3114":328389.245589378,"3115":321379.8243550765,"3116":314366.9214919285,"3117":307588.2650089997,"3118":300806.2485293399,"3119":294285.2830402175,"3120":287761.092411469,"3121":281523.7270991965,"3122":275283.2841971872,"3123":269354.3089337425,"3124":263422.4157409483,"3125":257825.4032529888,"3126":252225.6439764654,"3127":246982.8568145803,"3128":241737.5048099211,"3129":236869.8074885512,"3130":231999.7373571656,"3131":227526.5140119358,"3132":223051.1192185688,"3133":218990.1971060026,"3134":214927.3134416335,"3135":211294.8925831438,"3136":207660.7277753024,"3137":204471.3170231554,"3138":201280.3867714631,"3139":198546.7465490024,"3140":195811.8172383756,"3141":193544.9091804981,"3142":191276.9474980992,"3143":189485.8911907303,"3144":187694.0208454967,"3145":186386.0578347876,"3146":185077.5235503634,"3147":184257.9887636533,"3148":183438.1276868108,"3149":183110.4283781454,"3150":182782.6490155443,"3151":182948.2513188361,"3152":183114.0200852415,"3153":183772.443228149,"3154":184431.2786591997,"3155":185580.0968605532,"3156":186729.5715129196,"3157":188364.4235562097,"3158":190000.1735876393,"3159":192114.7800327821,"3160":194230.522424233,"3161":196816.7103896886,"3162":199404.2677415695,"3163":202452.0031590105,"3164":205501.335963679,"3165":208998.7631779108,"3166":212498.0094410632,"3167":216431.4979989131,"3168":220367.0200534893,"3169":224721.2184970234,"3170":229077.6568248881,"3171":233835.553276633,"3172":238595.8871256144,"3173":243738.8764267073,"3174":248884.4909837631,"3175":254392.4481200446,"3176":259903.2079754724,"3177":265754.5675017635,"3178":271608.8961144927,"3179":277780.7372635931,"3180":283955.7021139729,"3181":290423.8392544946,"3182":296895.2423485139,"3183":303634.3204345498,"3184":310376.7938022936,"3185":317360.3884382519,"3186":324347.4942497293,"3187":331548.2159753756,"3188":338752.5508785959,"3189":346142.1532627778,"3190":353535.4565322963,"3191":361084.9476487468,"3192":368638.2127178703,"3193":376317.9695631208,"3194":384001.558499625,"3195":391781.4439015074,"3196":399565.2043750386,"3197":407414.6859303771,"3198":415268.0702099695,"3199":423156.3407820539,"3200":431048.5262940942,"3201":438944.6255944293,"3202":446844.6365653115,"3203":454717.5733397635,"3204":462594.4030431615,"3205":470413.2773802805,"3206":478236.0105065724,"3207":485970.1357855207,"3208":493708.0704504061,"3209":501327.0944470111,"3210":508949.863357892,"3211":516423.8880310875,"3212":523901.5783328851,"3213":531201.2778186467,"3214":538504.5491462679,"3215":545601.2854934196,"3216":552701.4857647606,"3217":559567.4219559502,"3218":566436.7004486454,"3219":573044.9102603259,"3220":579656.3275258574,"3221":585980.9017938789,"3222":592308.5359752876,"3223":598324.6848465214,"3224":604343.7339802006,"3225":610027.8847468327,"3226":615714.7646445419,"3227":621044.6547748118,"3228":626377.0920997747,"3229":631331.8570980383,"3230":636288.9772676266,"3231":640849.2330170417,"3232":645411.6425852829,"3233":649559.5618480834,"3234":653709.4250427389,"3235":657428.8078162532,"3236":661149.9169285221,"3237":664426.2543791905,"3238":667704.093728161,"3239":670524.6254513389,"3240":673346.4286707763,"3241":675700.193050236,"3242":678054.9934716485,"3243":679932.8709401173,"3244":681811.5448732026,"3245":683206.2939031664,"3246":684601.5966429057,"3247":685507.8823256342,"3248":686414.4767438526,"3249":686828.8918438944,"3250":687243.3694525145,"3251":687164.4478545249,"3252":687085.3422573424,"3253":686513.5647522126,"3254":685941.3574321284,"3255":684879.1498195571,"3256":683816.2682384186,"3257":682267.9917534241,"3258":680718.7997719828,"3259":678690.7338731388,"3260":676661.5145289104,"3261":674161.8321162253,"3262":671660.7628272647,"3263":668699.4979875103,"3264":665736.6182798916,"3265":662325.626686692,"3266":658912.7985731435,"3267":655065.7106980684,"3268":651216.5718640466,"3269":646948.7391834263,"3270":642678.6491654379,"3271":638007.0835751051,"3272":633333.0631436812,"3273":628276.3698208568,"3274":623217.0338073627,"3275":617795.3377845305,"3276":612370.8216169972,"3277":606605.6883576359,"3278":600837.5685954223,"3279":594751.9188850217,"3280":588663.128066065,"3281":582281.1475542741,"3282":575895.8836908339,"3283":569242.9274418055,"3284":562586.5585220435,"3285":555689.0509495859,"3286":548788.0148217063,"3287":541673.3454042767,"3288":534555.0454384595,"3289":527251.4606253837,"3290":519944.1575652535,"3291":512480.6493009835,"3292":505013.3497313715,"3293":497419.5410375203,"3294":489821.8829088078,"3295":482127.9109756604,"3296":474430.0466363072,"3297":466666.4438851522,"3298":458898.9210842395,"3299":451096.4946698534,"3300":443290.1359990708,"3301":435479.8462280387,"3302":427665.6274790355,"3303":419878.4656235388,"3304":412087.3935406845,"3305":404354.2595301999,"3306":396617.249441137,"3307":388968.8299145114,"3308":381316.5837215403,"3309":373783.2309209361,"3310":366246.1159346355,"3311":358857.7279190901,"3312":351465.6570124999,"3313":344251.5596639885,"3314":337033.8732201437,"3315":330022.7045077751,"3316":323008.054626702,"3317":316227.6515857407,"3318":309443.8890077079,"3319":302921.177879595,"3320":296395.2420710049,"3321":290156.1320377646,"3322":283913.944873441,"3323":277983.2258060575,"3324":272049.5892674528,"3325":266450.8338915765,"3326":260849.3321847582,"3327":255604.8030499658,"3328":250357.7095295172,"3329":245488.2711492522,"3330":240616.4604155914,"3331":236141.4969244741,"3332":231664.3624413421,"3333":227601.7010948995,"3334":223537.0786522858,"3335":219902.9194709305,"3336":216267.0167953684,"3337":213075.8686303825,"3338":209883.2014204966,"3339":207147.8246942279,"3340":204411.1593339466,"3341":202142.5156803089,"3342":199872.8188558002,"3343":198080.027859731,"3344":196286.4232789528,"3345":194976.7264856142,"3346":193666.4588712248,"3347":192845.1912069749,"3348":192023.5977047669,"3349":191694.1664226679,"3350":191364.6555383205,"3351":191528.526771308,"3352":191692.5649186073,"3353":192349.2578933636,"3354":193006.3636069723,"3355":194153.452541352,"3356":195301.1983769671,"3357":196934.3220534888,"3358":198568.3441678867,"3359":200681.2231454929,"3360":202795.2385186646,"3361":205379.6999148474,"3362":207965.5311462291,"3363":211011.5408916959,"3364":214059.1484726842,"3365":217554.8509112739,"3366":221052.3728465936,"3367":224984.13752418,"3368":228917.9361458096,"3369":233270.4116034883,"3370":237625.1273923375,"3371":242381.3017516829,"3372":247139.913954619,"3373":252281.1820558002,"3374":257425.0758588387,"3375":262931.3126867425,"3376":268440.3526792133,"3377":274289.9927877143,"3378":280142.6024276033,"3379":286312.7250485465,"3380":292485.9718152423,"3381":298952.3913162957,"3382":305422.0772148464,"3383":312159.4385491562,"3384":318900.1956086903,"3385":325882.0743797286,"3386":332867.4647693134,"3387":340066.471515887,"3388":347269.0918825976,"3389":354656.9801726241,"3390":362048.5697900702,"3391":369596.3476963264,"3392":377147.8999968968,"3393":384825.9445149785,"3394":392507.8215654918,"3395":400285.9955223059,"3396":408068.0449914853,"3397":415915.815982917,"3398":423767.4901388461,"3399":431654.051027275,"3400":439544.5272954119,"3401":447438.9177913915,"3402":455337.2203972161,"3403":463208.449245686,"3404":471083.5714619411,"3405":478900.7387505276,"3406":486721.7652666652,"3407":494454.1843736073,"3408":502190.4133044039,"3409":509807.7320046074,"3410":517428.7960565438,"3411":524901.1163080219,"3412":532377.1026251001,"3413":539675.0985629107,"3414":546976.66677912,"3415":554071.7004511703,"3416":561170.1984834918,"3417":568034.4328715153,"3418":574902.0099966696,"3419":581508.5188762067,"3420":588118.2356447644,"3421":594441.1098507543,"3422":600767.0444048463,"3423":606781.4940832515,"3424":612798.8444583634,"3425":618481.2969004627,"3426":624166.4789074475,"3427":629494.6715805754,"3428":634825.4118817528,"3429":639778.4802893617,"3430":644733.9043012006,"3431":649292.4643255518,"3432":653853.1786011723,"3433":657999.4030035936,"3434":662147.5717698708,"3435":665865.2605467915,"3436":669584.6760940235,"3437":672859.3204109899,"3438":676135.4670573687,"3439":678954.3065088426,"3440":681774.4178872401,"3441":684126.4908561012,"3442":686479.6002971339,"3443":688355.7872152192,"3444":690232.7710276953,"3445":691625.8303666022,"3446":693019.4438446148,"3447":693924.0406947256,"3448":694828.9467092139,"3449":695241.6738341922,"3450":695654.4638961946,"3451":695573.8551798125,"3452":695493.0628922422,"3453":694919.5991245091,"3454":694345.7059693863,"3455":693281.8129491211,"3456":692217.2463874129,"3457":690667.285348758,"3458":689116.4092403405,"3459":687086.6596409898,"3460":685055.7570225038,"3461":682554.3917615926,"3462":680051.6400502189,"3463":677088.6932136464,"3464":674124.1319345869,"3465":670711.4591951065,"3466":667296.9503602198,"3467":663448.1821885318,"3468":659597.3634824059,"3469":655327.8513539734,"3470":651056.0823122485,"3471":646382.8381220385,"3472":641707.1395143808,"3473":636648.7684387505,"3474":631587.7550956624,"3475":626164.3821662331,"3476":620738.1895148845,"3477":614971.3801942745,"3478":609201.5847931644,"3479":603114.2598660049,"3480":597023.7942522129,"3481":590640.139367289,"3482":584253.2015522289,"3483":577598.5717728467,"3484":570940.5297438076,"3485":564041.3494829243,"3486":557138.6410872636,"3487":550022.2998224816,"3488":542902.3284295297,"3489":535597.0726093238,"3490":528288.0989618566,"3491":520822.9205298302,"3492":513353.9512118314,"3493":505758.4731887511,"3494":498159.1461497561,"3495":490463.5057250616,"3496":482763.9733126863,"3497":474998.7029068231,"3498":467229.512869306,"3499":459425.419636209,"3500":451617.394564399,"3501":443805.4388098133,"3502":435989.5544945206,"3503":428200.7274897895,"3504":420407.9906745464,"3505":412673.1923483099,"3506":404934.5183599147,"3507":397284.4353501971,"3508":389630.5260901268,"3509":382095.5106382358,"3510":374556.733416239,"3511":367166.6835803873,"3512":359772.9512686698,"3513":352557.1929300046,"3514":345337.8459107715,"3515":338325.0170375737,"3516":331308.7074100237,"3517":324526.6450367314,"3518":317741.2235403073,"3519":311216.8539075366,"3520":304689.2600078167,"3521":298448.4922967686,"3522":292204.647867754,"3523":286272.2719485912,"3524":280336.9789709138,"3525":274736.5675684665,"3526":269133.4102473743,"3527":263887.225910401,"3528":258638.4775996601,"3529":253767.3848407873,"3530":248893.9201399996,"3531":244417.303093028,"3532":239938.5154651274,"3533":235874.2013847763,"3534":231807.9266189271,"3535":228172.1155247987,"3536":224534.5613467272,"3537":221341.7620892914,"3538":218147.4441968138,"3539":215410.4171976091,"3540":212672.1019738461,"3541":210401.8088659793,"3542":208130.4629962926,"3543":206336.0233638955,"3544":204540.7705554386,"3545":203229.4259428698,"3546":201917.5109174977,"3547":201094.5962503125,"3548":200271.3561530166,"3549":199940.2786834768,"3550":199609.1220191361,"3551":199771.3478793784,"3552":199933.7410609809,"3553":200588.7894768897,"3554":201244.2510383014,"3555":202389.6962269355,"3556":203535.7987230595,"3557":205167.2794661412,"3558":206799.6590529585,"3559":208910.8959086412,"3560":211023.2695653505,"3561":213606.0896503336,"3562":216190.2799755813,"3563":219234.6492197823,"3564":222280.6167041761,"3565":225774.6794506457,"3566":229270.5620981232,"3567":233200.6878919489,"3568":237132.8480337028,"3569":241483.6854151948,"3570":245836.7635313506,"3571":250591.3006213,"3572":255348.2759579421,"3573":260487.9075957361,"3574":265630.1653380991,"3575":271134.7665078441,"3576":276642.1712444781,"3577":282490.1764992698,"3578":288341.1516873825,"3579":294509.6402582887,"3580":300681.2533764924,"3581":307146.0396304119,"3582":313614.0926829693,"3583":320349.8215722656,"3584":327088.9465875496,"3585":334069.19371492,"3586":341052.9528612202,"3587":348250.328764703,"3588":355451.3186883224,"3589":362837.5769350663,"3590":370227.5369088454,"3591":377773.6855708589,"3592":385323.6090264189,"3593":393000.0250985313,"3594":400680.2741019251,"3595":408456.8204102781,"3596":416237.2426294638,"3597":424083.3867691788,"3598":431933.4344714776,"3599":439818.3693041721,"3600":447707.2199142801,"3601":455599.9851497468,"3602":463496.6628923843,"3603":471366.2672748034,"3604":479239.7654219545,"3605":487055.3090381945,"3606":494874.7122785625,"3607":502605.5085060941,"3608":510340.1149536893,"3609":517955.8115666847,"3610":525575.2539272316,"3611":533045.9528829439,"3612":540520.3182996952,"3613":547816.6937324285,"3614":555116.6418386233,"3615":562210.0557955342,"3616":569306.934507404,"3617":576169.5499694765,"3618":583035.5085629938,"3619":589640.399305021,"3620":596248.4983300095,"3621":602569.7551861845,"3622":608894.07278403,"3623":614906.9058995708,"3624":620922.6401050147,"3625":626603.4767704569,"3626":632287.0433936099,"3627":637613.6210755461,"3628":642942.7467779869,"3629":647894.2009791293,"3630":652848.0111765872,"3631":657404.9577784581,"3632":661964.0590233151,"3633":666108.6707865052,"3634":670255.2273048997,"3635":673971.3042251022,"3636":677689.1083065968,"3637":680962.1415486232,"3638":684236.6775106762,"3639":687053.9066682553,"3640":689872.408143006,"3641":692222.8715982857,"3642":694574.3719156199,"3643":696448.9500997071,"3644":698324.325567703,"3645":699715.7769514658,"3646":701107.7828634885,"3647":702010.772536582,"3648":702914.0717628438,"3649":703325.1924882053,"3650":703736.3765390192,"3651":703654.1621996961,"3652":703571.7646772512,"3653":702996.6960625296,"3654":702421.1984481236,"3655":701355.7013561006,"3656":700289.5311099795,"3657":698737.9667740767,"3658":697185.4877553965,"3659":695154.135632589,"3660":693121.6308772721,"3661":690618.6638659771,"3662":688114.3107904873,"3663":685149.7629758877,"3664":682183.6011047113,"3665":678769.3281588454,"3666":675353.2195031265,"3667":671502.8518959811,"3668":667650.4341395947,"3669":663379.3233459205,"3670":659105.9560237953,"3671":654431.1139378486,"3672":649753.8178189405,"3673":644693.8496163688,"3674":639631.2395304712,"3675":634206.2702421875,"3676":628778.4816157629,"3677":623010.0767036788,"3678":617238.6860945203,"3679":611149.7663425616,"3680":605057.7062870435,"3681":598672.457343291,"3682":592283.925852124,"3683":585627.7027791811,"3684":578968.0678389519,"3685":572067.2950490742,"3686":565162.9945064397,"3687":558045.0614765295,"3688":550923.4987001204,"3689":543616.6518779538,"3690":536306.087609848,"3691":528839.3189383311,"3692":521368.7597618155,"3693":513771.6922610185,"3694":506170.7761249331,"3695":498473.5469836009,"3696":490772.4262348674,"3697":483005.5678727521,"3698":475234.7902589162,"3699":467429.1098292606,"3700":459619.4979404796,"3701":451805.9557483379,"3702":443988.485374732,"3703":436198.072690758,"3704":428403.7505751703,"3705":420667.3673273157,"3706":412927.1087958573,"3707":405275.4416214596,"3708":397619.9485749209,"3709":390083.3497146021,"3710":382542.9894620469,"3711":375151.3569733354,"3712":367756.0423862858,"3713":360538.7021496457,"3714":353317.7736096244,"3715":346303.363592655,"3716":339285.4731981797,"3717":332501.8304346385,"3718":325714.8289244722,"3719":319188.8796542961,"3720":312659.7064933385,"3721":306417.3598970508,"3722":300171.9369586258,"3723":294237.9829057126,"3724":288301.1121697759,"3725":282699.123384392,"3726":277094.3890555174,"3727":271846.6280857472,"3728":266596.3035170269,"3729":261723.6348748244,"3730":256848.5946651885,"3731":252370.4024836826,"3732":247890.040095394,"3733":243824.1516286338,"3734":239756.3028501872,"3735":236118.918117106,"3736":232479.7906735593,"3737":229285.4185239592,"3738":226089.5281124615,"3739":223350.9289672146,"3740":220611.0419702208,"3741":218339.1774617686,"3742":216066.2605639759,"3743":214270.2502757862,"3744":212473.4271836846,"3745":211160.5126594533,"3746":209847.0280942357,"3747":209022.5442588568,"3748":208197.7353648538,"3749":207865.0894699286,"3750":207532.3647513596,"3751":207693.0229283658,"3752":207853.8487975603,"3753":208507.3302717247,"3754":209161.2252618915,"3755":210305.1042496163,"3756":211449.6409150026,"3757":213079.5561973548,"3758":214710.370693287,"3759":216820.0428277657,"3760":218930.852132789,"3761":221512.1082354409,"3762":224094.7349475494,"3763":227137.5409476403,"3764":230181.9455567906,"3765":233674.4457967208,"3766":237168.7663062007,"3767":241097.3303304084,"3768":245027.9290707619,"3769":249377.2054189094,"3770":253728.7228696146,"3771":258481.6996618461,"3772":263237.1150683414,"3773":268375.1871433984,"3774":273515.8856902732,"3775":279018.9280316177,"3776":284524.7743067783,"3777":290371.2214668629,"3778":296220.6389268744,"3779":302387.5701361248,"3780":308557.626258958,"3781":315020.8558836324,"3782":321487.3526729099,"3783":328221.5256647318,"3784":334959.0951481873,"3785":341937.7871092157,"3786":348919.9914545011,"3787":356115.8129221369,"3788":363315.2487749186,"3789":370699.9533156744,"3790":378088.3599481571,"3791":385632.9556334069,"3792":393181.3264765776,"3793":400856.1903005167,"3794":408534.8874197949,"3795":416309.8822079323,"3796":424088.7532706446,"3797":431933.3466174704,"3798":439781.8438903068,"3799":447665.2286568083,"3800":455552.5295638354,"3801":463443.7454591761,"3802":471338.8742244855,"3803":479206.9299922177,"3804":487078.8798871665,"3805":494892.8756135323,"3806":502710.7313261973,"3807":510439.9803880412,"3808":518173.040031808,"3809":525787.190202678,"3810":533405.0864826469,"3811":540874.2397191728,"3812":548347.0597779739,"3813":555641.8902138377,"3814":562940.2936840885,"3815":570032.1633658257,"3816":577127.4981631372,"3817":583988.5700711121,"3818":590852.9854708377,"3819":597456.3333792244,"3820":604062.8899305693,"3821":610382.6046729435,"3822":616705.3805166766,"3823":622716.6722376395,"3824":628730.8654078863,"3825":634410.1613973584,"3826":640092.1877036149,"3827":645417.2254275746,"3828":650744.8115308055,"3829":655694.7264913518,"3830":660646.9978066743,"3831":665202.4058847176,"3832":669759.968963902,"3833":673903.042919422,"3834":678048.0619879965,"3835":681762.6018160767,"3836":685478.8691629947,"3837":688750.3660278381,"3838":692023.3659699496,"3839":694839.0594646774,"3840":697656.0256335151,"3841":700004.9541396687,"3842":702354.9198645123,"3843":704227.9638125931,"3844":706101.8054009161,"3845":707491.7232611884,"3846":708882.1960057522,"3847":709783.6528672676,"3848":710685.4196376819,"3849":711095.008262776,"3850":711504.6605687523,"3851":711420.9148398715,"3852":711336.9862829987,"3853":710760.3869888291,"3854":710183.3590498054,"3855":709116.3319878455,"3856":708048.6321263188,"3857":706495.5385293924,"3858":704941.5306039216,"3859":702908.6499284073,"3860":700874.6169743187,"3861":698370.1221180382,"3862":695864.2415512007,"3863":692898.1665987425,"3864":689930.4779430482,"3865":686514.6785658572,"3866":683097.0438318577,"3867":679245.1504993285,"3868":675391.2073703069,"3869":671118.5715565989,"3870":666843.6795668934,"3871":662167.3131656727,"3872":657488.4930836495,"3873":652427.0012699746,"3874":647362.8679248387,"3875":641936.3757290347,"3876":636507.0645466609,"3877":630737.1374300522,"3878":624964.2249676471,"3879":618873.7837135737,"3880":612780.2025069265,"3881":606393.4327628843,"3882":600003.3808221212,"3883":593345.6376501299,"3884":586684.4829612543,"3885":579782.1907729867,"3886":572876.3711820734,"3887":565756.9194538501,"3888":558633.8383289486,"3889":551325.4735079651,"3890":544013.3915905731,"3891":536545.1056191558,"3892":529073.029491981,"3893":521474.4453896214,"3894":513872.0130009259,"3895":506173.2679557918,"3896":498470.63165192,"3897":490702.2580831867,"3898":482929.9656111086,"3899":475122.7706714433,"3900":467311.6446207411,"3901":459496.5886146237,"3902":451677.6047748438,"3903":443885.6789723544,"3904":436089.8440857669,"3905":428351.9484142852,"3906":420610.1778064293,"3907":412956.9989027211,"3908":405299.9944738163,"3909":397761.8845779335,"3910":390220.0136364737,"3911":382826.8708053752,"3912":375430.0462223138,"3913":368211.1963358953,"3914":360988.7584921872,"3915":353972.8395174807,"3916":346953.4405110766,"3917":340168.2894812734,"3918":333379.7800503705,"3919":326852.3232048422,"3920":320321.6428137755,"3921":314077.789332481,"3922":307830.8598540105,"3923":301895.3996058726,"3924":295957.0230193914,"3925":290353.5287280026,"3926":284747.2892375223,"3927":279498.0234504057,"3928":274246.1944084582,"3929":269372.0216370074,"3930":264495.4776419625,"3931":260015.7820187472,"3932":255533.9165323093,"3933":251466.5253108202,"3934":247397.174120926,"3935":243758.287319539,"3936":240117.6581506896,"3937":236921.7846186506,"3938":233724.393167439,"3939":230984.2933250647,"3940":228242.9059733912,"3941":225969.5414525685,"3942":223695.1248845762,"3943":221897.6152682198,"3944":220099.2931898457,"3945":218784.8800210987,"3946":217469.8971529841,"3947":216643.9153561891,"3948":215817.6088421133,"3949":215483.4656683212,"3950":215149.2440119536,"3951":215308.4055920925,"3952":215467.7352052136,"3953":216119.7207639616,"3954":216772.1201792322,"3955":217914.503932444,"3956":219057.5457035641,"3957":220685.9664317601,"3958":222315.2867135097,"3959":224423.4649736432,"3960":226532.7807440226,"3961":229112.5436515956,"3962":231693.6775080544,"3963":234734.990991789,"3964":237777.9034237406,"3965":241268.9118254941,"3966":244761.7408356839,"3967":248688.8136993527,"3968":252617.9216177834,"3969":256965.7074824889,"3970":261315.7347880979,"3971":266067.2217734442,"3972":270821.1477111306,"3973":275957.7306553202,"3974":281096.9404091347,"3975":286598.4942950915,"3976":292102.8524524028,"3977":297947.8118320422,"3978":303795.7418488787,"3979":309961.1859520902,"3980":316129.7553058869,"3981":322591.4984983933,"3982":329056.5091922378,"3983":335789.1964252283,"3984":342525.2804863207,"3985":349502.4873613208,"3986":356483.2069567797,"3987":363677.5440106579,"3988":370875.4957856177,"3989":378258.716584355,"3990":385645.6398104894,"3991":393188.7524249289,"3992":400735.6405326947,"3993":408409.0219565021,"3994":416086.2370107893,"3995":423859.7500689448,"3996":431637.1397365517,"3997":439480.2520230173,"3998":447327.2685701067,"3999":455209.1729453427,"4000":463094.9937954542,"4001":470984.7299680982,"4002":478878.3793447993,"4003":486744.9560578715,"4004":494615.4272319977,"4005":502427.9445712288,"4006":510244.3222303173,"4007":517972.0935720282,"4008":525703.6758289582,"4009":533316.3489461656,"4010":540932.7685055035,"4011":548400.445354322,"4012":555871.7893581897,"4013":563165.1440717736,"4014":570462.072152256,"4015":577552.4667766278,"4016":584646.3268488287,"4017":591505.9243638201,"4018":598368.8657025733,"4019":604970.7398818557,"4020":611575.8230358416,"4021":617894.0647124629,"4022":624215.3678219387,"4023":630225.1871399952,"4024":636237.908238559,"4025":641915.7324874548,"4026":647596.2873841006,"4027":652919.8540292928,"4028":658245.9693844627,"4029":663194.4139275417,"4030":668145.2151558483,"4031":672699.1534772019,"4032":677255.2471299029,"4033":681396.8519890094,"4034":685540.4022911164,"4035":689253.4736825419,"4036":692968.2729225006,"4037":696238.3020099445,"4038":699509.8345040927,"4039":702324.0608801614,"4040":705139.5602595252,"4041":707487.0223052565,"4042":709835.5218986033,"4043":711707.1000439904,"4044":713579.4761582918,"4045":714967.9288730895,"4046":716356.9368005979,"4047":717256.9291733544,"4048":718157.2317831762,"4049":718565.3565757199,"4050":718973.5453770616,"4051":718888.3364713361,"4052":718802.9450652825,"4053":718224.8832494712,"4054":717646.3931162177,"4055":716577.9041873157,"4056":715508.7427860098,"4057":713954.1879763395,"4058":712398.7191650365,"4059":710364.3779304766,"4060":708328.8847440061,"4061":705822.929981877,"4062":703315.5898356042,"4063":700348.0556299975,"4064":697378.9080473211,"4065":693961.6500691812,"4066":690542.5570601494,"4067":686689.2057783805,"4068":682833.8050257795,"4069":678559.7119140367,"4070":674283.3629517126,"4071":669605.5399031733,"4072":664925.2634989939,"4073":659862.3156882136,"4074":654796.7266708988,"4075":649368.779127709,"4076":643938.0129226292,"4077":638166.6311078665,"4078":632392.2642717449,"4079":626300.3689682528,"4080":620205.3340363763,"4081":613817.1108911711,"4082":607425.6058731751,"4083":600766.4099477723,"4084":594103.802829177,"4085":587200.0585347703,"4086":580292.7871611555,"4087":573171.8839735644,"4088":566047.3517124974,"4089":558737.5360784414,"4090":551424.0036709261,"4091":543954.2675322318,"4092":536480.7415605031,"4093":528880.7079361763,"4094":521276.8263479941,"4095":513576.6324257246,"4096":505872.54756696,"4097":498102.7257654327,"4098":490328.9853825576,"4099":482520.3428539705,"4100":474707.7695360845,"4101":466891.2665844169,"4102":459070.8361205918,"4103":451277.4640154543,"4104":443480.1831474722,"4105":435740.8418157487,"4106":427997.6258686823,"4107":420343.0019466591,"4108":412684.5528202307,"4109":405144.9985474877,"4110":397601.6835497238,"4111":390207.0969827346,"4112":382808.8289840963,"4113":375588.5360022853,"4114":368364.6553832619,"4115":361347.2939531766,"4116":354326.4528112295,"4117":347539.8599655982,"4118":340749.9090384489,"4119":334221.0110161515,"4120":327688.889767667,"4121":321443.5957481976,"4122":315195.2260506579,"4123":309258.3259024539,"4124":303318.5097347897,"4125":297713.5761809705,"4126":292105.8977467071,"4127":286855.1933343299,"4128":281601.9259855349,"4129":276726.3152255164,"4130":271848.3335600793,"4131":267367.2005845273,"4132":262883.8980636821,"4133":258815.0701256065,"4134":254744.2825368249,"4135":251103.9596541382,"4136":247461.8947214487,"4137":244264.5857429211,"4138":241065.7591624512,"4139":238324.2245079367,"4140":235581.402661116,"4141":233306.6039620293,"4142":231030.7535325386,"4143":229231.8103713279,"4144":227432.0550646329,"4145":226116.2089839785,"4146":224799.7935202568,"4147":223972.3794440344,"4148":223144.6409665988,"4149":222809.0661453967,"4150":222473.413157453,"4151":222631.1437217341,"4152":222789.0426346001,"4153":223439.5978085793,"4154":224090.5671544534,"4155":225231.5211535241,"4156":226373.1334856427,"4157":228000.125089864,"4158":229628.0165625486,"4159":231734.7663284125,"4160":233842.6539191998,"4161":236420.9889617493,"4162":239000.6952676335,"4163":242040.58151513,"4164":245082.0670250609,"4165":248571.6488189053,"4166":252063.0515351758,"4167":255988.6984188,"4168":259916.3806709553,"4169":264262.741183032,"4170":268611.3434495493,"4171":273361.4057092194,"4172":278113.907234545,"4173":283249.0660795638,"4174":288386.8520472839,"4175":293886.98246012,"4176":299389.9174571602,"4177":305233.4539892699,"4178":311079.9614711958,"4179":317243.9833520195,"4180":323411.1307958236,"4181":329871.4523906198,"4182":336335.0417989373,"4183":343066.3080584573,"4184":349800.9714580298,"4185":356776.7579833371,"4186":363756.057540838,"4187":370948.9748683629,"4188":378145.5072284706,"4189":385527.3089237324,"4190":392912.8133576774,"4191":400454.5074910828,"4192":407999.977428859,"4193":415671.9409936245,"4194":423347.738499691,"4195":431119.8343203417,"4196":438895.8070610369,"4197":446737.5027310943,"4198":454583.102972148,"4199":462463.591351611,"4200":470347.9965161172,"4201":478236.3173131955,"4202":486128.5516242661,"4203":493993.7135815293,"4204":501862.7703095591,"4205":509673.8735122947,"4206":517488.8373443783,"4207":525215.1951684636,"4208":532945.3642170375,"4209":540556.6244350472,"4210":548171.6314042354,"4211":555637.895971842,"4212":563107.8280033254,"4213":570399.7710532424,"4214":577695.2877786651,"4215":584784.2713564745,"4216":591876.7206905003,"4217":598734.9077755943,"4218":605596.4389926179,"4219":612196.9033582289,"4220":618800.5770064921,"4221":625117.4094852299,"4222":631437.3037045519,"4223":637445.7144400752,"4224":643457.0272636171,"4225":649133.4435448932,"4226":654812.5907812126,"4227":660134.7500732626,"4228":665459.4583823656,"4229":670406.4961863444,"4230":675355.8909824088,"4231":679908.4231782694,"4232":684463.1110121182,"4233":688603.3103589049,"4234":692745.4554551161,"4235":696457.1219469616,"4236":700170.5165935481,"4237":703439.1413937192,"4238":706709.2699065863,"4239":709522.0926072573,"4240":712336.1886169994,"4241":714682.2475987769,"4242":717029.3444337306,"4243":718899.5201261772,"4244":720770.4940928835,"4245":722157.5449653241,"4246":723545.1513556063,"4247":724443.7424961596,"4248":725342.6441786947,"4249":725749.3683487608,"4250":726156.1568323273,"4251":726069.5479134216,"4252":725982.7567986767,"4253":725403.2955785557,"4254":724823.4063452677,"4255":723753.5186204999,"4256":722682.95872739,"4257":721127.0057298718,"4258":719570.1390345701,"4259":717534.4002197547,"4260":715497.5097566658,"4261":712990.1580214493,"4262":710481.4212055142,"4263":707512.4906335644,"4264":704541.9469877582,"4265":701123.293249596,"4266":697702.8047835439,"4267":693848.0583476513,"4268":689991.2627437174,"4269":685715.7750833271,"4270":681438.0318749358,"4271":676758.8148828044,"4272":672077.1448374026,"4273":667012.8036876647,"4274":661945.8216335522,"4275":656516.4813556195,"4276":651084.3227177471,"4277":645311.5487720369,"4278":639535.7901067085,"4279":633442.5032756458,"4280":627346.0771177303,"4281":620956.4630479133,"4282":614563.5674066282,"4283":607902.981159155,"4284":601238.9840196039,"4285":594333.8500052517,"4286":587425.1892125978,"4287":580302.89690677,"4288":573176.9758281647,"4289":565865.7716771653,"4290":558550.8510531978,"4291":551079.7269984386,"4292":543604.8134109293,"4293":536003.3924710023,"4294":528398.123867297,"4295":520696.5432294785,"4296":512991.0719550355,"4297":505219.8640375974,"4298":497444.7378384761,"4299":489634.7097932043,"4300":481820.7512580922,"4301":474002.8633885545,"4302":466181.0483061125,"4303":458386.2918815084,"4304":450587.6269931077,"4305":442846.9019399111,"4306":435102.3025702146,"4307":427446.2955243019,"4308":419786.4635726226,"4309":412245.526773165,"4310":404700.8295471204,"4311":397304.861050183,"4312":389905.2114198265,"4313":382683.5371044255,"4314":375458.2754498389,"4315":368439.5332821152,"4316":361417.3117003529,"4317":354629.3387126282,"4318":347838.0079410057,"4319":341307.7303717539,"4320":334774.2298737325,"4321":328527.5569020425,"4322":322277.8085494973,"4323":316339.5300434019,"4324":310398.3358148592,"4325":304792.0244970737,"4326":299182.9685956552,"4327":293930.8870128333,"4328":288676.2427902035,"4329":283799.2554528592,"4330":278919.897506505,"4331":274437.3885463441,"4332":269952.7103370976,"4333":265882.5070067283,"4334":261810.3443216601,"4335":258168.6466385938,"4336":254525.2072013316,"4337":251326.5240139384,"4338":248126.3235202099,"4339":245383.4152479439,"4340":242639.220078779,"4341":240363.0483526559,"4342":238085.8251913367,"4343":236285.5095934062,"4344":234484.3821450001,"4345":233167.1642175444,"4346":231849.3772018316,"4347":231020.5918683291,"4348":230191.4824282253,"4349":229854.5369388676,"4350":229517.5135771822,"4351":229673.8740620361,"4352":229830.403189691,"4353":230479.588872576,"4354":231129.1890213743,"4355":232268.774117289,"4356":233409.0178400726,"4357":235034.6411286815,"4358":236661.164579378,"4359":238766.5466167794,"4360":240873.0667725319,"4361":243450.0346733758,"4362":246028.3741307858,"4363":249066.893822941,"4364":252107.0130705659,"4365":255595.2288950414,"4366":259085.2659347824,"4367":263009.5474346188,"4368":266935.8645956301,"4369":271280.8603091093,"4370":275628.0980694777,"4371":280376.7961153503,"4372":285127.9337191322,"4373":290261.7289347639,"4374":295398.1515651562,"4375":300896.9189326266,"4376":306398.4911761662,"4377":312240.6652465432,"4378":318085.8105584074,"4379":324248.4705607435,"4380":330414.2564175374,"4381":336873.216716704,"4382":343335.4451206756,"4383":350065.350667037,"4384":356798.6536445417,"4385":363773.0800387755,"4386":370751.0197561008,"4387":377942.5775342518,"4388":385137.7506356908,"4389":392518.193362893,"4390":399902.3391192917,"4391":407442.6748655677,"4392":414986.7867065357,"4393":422657.3924647181,"4394":430331.8324543309,"4395":438102.5710485616,"4396":445877.1868527747,"4397":453717.5258761924,"4398":461561.7697603534,"4399":469440.9020725749,"4400":477323.9514593956,"4401":485210.9167682491,"4402":493101.7958804604,"4403":500965.6029281345,"4404":508833.3050357504,"4405":516643.0539071523,"4406":524456.6636968871,"4407":532181.667767514,"4408":539910.4833514248,"4409":547520.3903934722,"4410":555134.0444753041,"4411":562598.9564440657,"4412":570067.5361651209,"4413":577358.1271929322,"4414":584652.292184477,"4415":591739.924316542,"4416":598831.0224928629,"4417":605687.858708197,"4418":612548.0393433118,"4419":619147.1534147708,"4420":625749.4770565451,"4421":632064.9598163631,"4422":638383.5046042404,"4423":644390.5661957003,"4424":650400.5301624666,"4425":656075.597874161,"4426":661753.3968279992,"4427":667074.208124575,"4428":672397.5687251171,"4429":677343.2591073553,"4430":682291.3067684057,"4431":686842.4921158861,"4432":691395.833387895,"4433":695534.6864592892,"4434":699675.4855664622,"4435":703385.8063555307,"4436":707097.8555855086,"4437":710365.1352551468,"4438":713633.9189234637,"4439":716445.3970654748,"4440":719258.1488023543,"4441":721602.8637969744,"4442":723948.616930383,"4443":725817.4492068049,"4444":727687.0800429136,"4445":729072.7880700923,"4446":730459.0519003557,"4447":731356.3007660413,"4448":732253.8604587674,"4449":732659.2429239915,"4450":733064.6899875909,"4451":732976.7399335015,"4452":732888.6079682638,"4453":732307.8061822496,"4454":731726.5766675762,"4455":730655.3489458391,"4456":729583.4493400847,"4457":728026.1569141548,"4458":726467.951074583,"4459":724430.8733995481,"4460":722392.6443601989,"4461":719883.9543325898,"4462":717373.8795080386,"4463":714403.6112111585,"4464":711431.7301240163,"4465":708011.7392280219,"4466":704589.9138875502,"4467":700733.8308605598,"4468":696875.6989487592,"4469":692598.8752636426,"4470":688319.7963135748,"4471":683639.243862726,"4472":678956.2386414756,"4473":673890.5625986671,"4474":668822.245934172,"4475":663391.5713284542,"4476":657958.0786453038,"4477":652183.9709367329,"4478":646406.8787908708,"4479":640312.2587615112,"4480":634214.4996874458,"4481":627823.5529835359,"4482":621429.3249901251,"4483":614767.4066724036,"4484":608102.0777443917,"4485":601195.6122232768,"4486":594285.6202054684,"4487":587161.996956005,"4488":580034.7452151936,"4489":572722.210683328,"4490":565405.9599597448,"4491":557933.5060865313,"4492":550457.2629616398,"4493":542854.5127653134,"4494":535247.9151861026,"4495":527545.0058535835,"4496":519838.2061651556,"4497":512065.6701143597,"4498":504289.2160624185,"4499":496477.8604447761,"4500":488662.5746176543,"4501":480843.3597363785,"4502":473020.2179223819,"4503":465224.1350463182,"4504":457424.1439864641,"4505":449682.0930417321,"4506":441936.1680603299,"4507":434278.8356824528,"4508":426617.6786784622,"4509":419075.4171062582,"4510":411529.3953869445,"4511":404132.1026761266,"4512":396731.1291111906,"4513":389508.1311404231,"4514":382281.5461095952,"4515":375261.4808446676,"4516":368237.9364446511,"4517":361448.6409175342,"4518":354655.9878852938,"4519":348124.3883341111,"4520":341589.5661327583,"4521":335341.5717362489,"4522":329090.502237309,"4523":323150.9028631562,"4524":317208.3880448064,"4525":311600.7564153768,"4526":305990.3804803901,"4527":300736.9791419888,"4528":295481.0154416815,"4529":290602.7089044748,"4530":285722.0320359863,"4531":281238.2044313322,"4532":276752.2078551474,"4533":272680.6864353074,"4534":268607.20593815,"4535":264964.1907202892,"4536":261319.4340254408,"4537":258119.4338575831,"4538":254917.9166604256,"4539":252173.6919616798,"4540":249428.1806428979,"4541":247150.6930439345,"4542":244872.1542864655,"4543":243070.5233689897,"4544":241268.0808775568,"4545":239949.5481835068,"4546":238630.4466775463,"4547":237800.3471300571,"4548":236969.9237521413,"4549":236631.664601061,"4550":236293.3278536567,"4551":236448.3752287098,"4552":236603.5915223963,"4553":237251.4646470601,"4554":237899.7525132987,"4555":239038.0256022299,"4556":240176.9575935211,"4557":241801.2694260433,"4558":243426.4816959736,"4559":245530.5528278443,"4560":247635.7623532164,"4561":250211.4198987454,"4562":252788.4492758206,"4563":255825.6591625368,"4564":258864.4688795333,"4565":262351.3754481064,"4566":265840.1035065862,"4567":269763.0762997179,"4568":273688.0850284966,"4569":278031.7725841305,"4570":282377.7024609566,"4571":287125.0928975054,"4572":291874.9231660977,"4573":297007.4113205897,"4574":302142.5271638079,"4575":307639.9880179857,"4576":313140.2540220298,"4577":318981.1221266247,"4578":324824.961746336,"4579":330986.3163300644,"4580":337150.7970417119,"4581":343608.4524691097,"4582":350069.3762746062,"4583":356797.9774957026,"4584":363529.9764210685,"4585":370503.0990362063,"4586":377479.7352473947,"4587":384669.9897922844,"4588":391863.8599332545,"4589":399242.9999726965,"4590":406625.8433139605,"4591":414164.8769176441,"4592":421707.6868884786,"4593":429376.9910489035,"4594":437050.1297130514,"4595":444819.5672540271,"4596":452592.8822771118,"4597":460431.9207914449,"4598":468274.8644384822,"4599":476152.6967854582,"4600":484034.4464788285,"4601":491920.1123659444,"4602":499809.6923280479,"4603":507672.2004971617,"4604":515538.6039976821,"4605":523347.0545333708,"4606":531159.3662586925,"4607":538883.0725361238,"4608":546610.5905979741,"4609":554219.2003890141,"4610":561831.5574908092,"4611":569295.1727504228,"4612":576762.4560331365,"4613":584051.7508933306,"4614":591344.6199879008,"4615":598430.956493552,"4616":605520.7593139376,"4617":612376.3004437333,"4618":619235.1862636248,"4619":625833.005790094,"4620":632434.0351570301,"4621":638748.2239120801,"4622":645065.4749651781,"4623":651071.2430917658,"4624":657079.9138634856,"4625":662753.6886498778,"4626":668430.1949480767,"4627":673749.713858595,"4628":679071.7823425803,"4629":684016.1808776808,"4630":688962.9369609319,"4631":693512.8309998701,"4632":698064.881232513,"4633":702202.4435336364,"4634":706341.952139553,"4635":710050.9826962987,"4636":713761.7419628066,"4637":717027.7319377466,"4638":720295.2261800568,"4639":723105.4151646718,"4640":725916.8780126856,"4641":728260.3043868893,"4642":730604.7691682508,"4643":732472.3133609142,"4644":734340.6563814733,"4645":735725.0768612302,"4646":737110.0534121196,"4647":738006.0152663992,"4648":738902.2882156067,"4649":739306.3842051197,"4650":739710.5450607353,"4651":739621.3090663096,"4652":739531.8914283032,"4653":738949.804237008,"4654":738367.2895844613,"4655":737294.776992179,"4656":736221.5927831278,"4657":734663.0160210697,"4658":733103.5261124593,"4659":731065.1646353949,"4660":729025.6520609459,"4661":726515.678765088,"4662":724004.3209390593,"4663":721032.7699073929,"4664":718059.6063520774,"4665":714638.3332544429,"4666":711215.2259787851,"4667":707357.8612829836,"4668":703498.4479686677,"4669":699220.3431472528,"4670":694939.9833270245,"4671":690258.1502720742,"4672":685573.8647127021,"4673":680506.9085976734,"4674":675437.3121267804,"4675":670005.3579804085,"4676":664570.5860222691,"4677":658795.1993042956,"4678":653016.8284145386,"4679":646920.9299067137,"4680":640821.8926195337,"4681":634429.6679677818,"4682":628034.162291723,"4683":621370.9665564692,"4684":614704.3604759627,"4685":607796.6180673124,"4686":600885.3494268499,"4687":593760.4498195354,"4688":586631.9219855978,"4689":579318.111625253,"4690":572000.5853377597,"4691":564526.8561651272,"4692":557049.3380052301,"4693":549445.3130382336,"4694":541837.4409526103,"4695":534133.2573778587,"4696":526425.1837113008,"4697":518651.3739463995,"4698":510873.6464443003,"4699":503061.0176403696,"4700":495244.4588907516,"4701":487423.9713506948,"4702":479599.5571415544,"4703":471802.2021339072,"4704":464000.9392059526,"4705":456257.6166565259,"4706":448510.4203337576,"4707":440851.8168777659,"4708":433189.3890588353,"4709":425645.8569347887,"4710":418098.5649266528,"4711":410700.0021899564,"4712":403297.7588620088,"4713":396073.4913910197,"4714":388845.6371226832,"4715":381824.3028828837,"4716":374799.4897705551,"4717":368008.9257936092,"4718":361215.0045739467,"4719":354682.1370976722,"4720":348146.0472334811,"4721":341896.7854363108,"4722":335644.448798811,"4723":329703.582548123,"4724":323759.8011151863,"4725":318150.903133042,"4726":312539.2611071367,"4727":307284.5939395368,"4728":302027.3646716746,"4729":297147.7928284808,"4730":292265.8509154971,"4731":287780.7585277639,"4732":283293.4974298399,"4733":279220.711749525,"4734":275145.9672530812,"4735":271501.6882970468,"4736":267855.6681250617,"4737":264654.4047410289,"4738":261451.6245885821,"4739":258706.1371953573,"4740":255959.3634428313,"4741":253680.6136707831,"4742":251400.8130008135,"4743":249597.9204313456,"4744":247794.2165483541,"4745":246474.4227231035,"4746":245154.0603462255,"4747":244322.7001880264,"4748":243491.0164595335,"4749":243151.4972179338,"4750":242811.9006399925,"4751":242965.6884444164,"4752":243119.6454273065,"4753":243766.2595009317,"4754":244413.2885758148,"4755":245550.3031329988,"4756":246687.9768520764,"4757":248311.0306718439,"4758":249934.9851884037,"4759":252037.7988262136,"4760":254141.75111676,"4761":256716.151686624,"4762":259291.9243471205,"4763":262327.8777762697,"4764":265365.4312946367,"4765":268851.0819234435,"4766":272338.554300946,"4767":276260.271671815,"4768":280184.0252369716,"4769":284526.4578875498,"4770":288871.1331178126,"4771":293617.2691662165,"4772":298365.8453050082,"4773":303497.07958797,"4774":308630.9418178547,"4775":314127.1493168217,"4776":319626.1622237039,"4777":325465.7774891121,"4778":331308.3645275382,"4779":337468.4667878093,"4780":343631.6954337537,"4781":350088.099053129,"4782":356547.7713082103,"4783":363275.1212364251,"4784":370005.8691263697,"4785":376977.740963473,"4786":383953.1266539406,"4787":391142.1309353497,"4788":398334.7510700064,"4789":405712.6413602288,"4790":413094.2352092938,"4791":420632.019577726,"4792":428173.5805701838,"4793":435841.6360090333,"4794":443513.5262083345,"4795":451281.715541119,"4796":459053.7826125954,"4797":466891.5734318302,"4798":474733.2696402062,"4799":482609.8548048852,"4800":490490.3575722504,"4801":498374.7767895802,"4802":506263.1103380442,"4803":514124.3723495921,"4804":521989.5299485482,"4805":529796.7348386013,"4806":537607.8011741439,"4807":545330.2623175803,"4808":553056.5355011475,"4809":560663.9006695437,"4810":568275.0134042623,"4811":575737.3845522943,"4812":583203.4239788492,"4813":590491.4752382353,"4814":597783.1009872763,"4815":604868.1944026046,"4816":611956.7543878022,"4817":618811.0529374726,"4818":625668.6964322295,"4819":632265.2738884831,"4820":638865.0614400507,"4821":645178.0086345075,"4822":651494.0183817161,"4823":657498.5454570464,"4824":663505.975432069,"4825":669178.509676253,"4826":674853.7756866608,"4827":680172.0545637337,"4828":685492.8832685479,"4829":690436.0422786803,"4830":695381.5590910946,"4831":699930.2141132562,"4832":704481.0255831114,"4833":708617.3493753648,"4834":712755.6197262579,"4835":716463.4122817552,"4836":720172.933800719,"4837":723437.686281748,"4838":726703.9432837092,"4839":729512.8952814665,"4840":732323.1213960425,"4841":734665.3112901581,"4842":737008.5398447098,"4843":738874.8480637709,"4844":740741.9553638644,"4845":742125.1403762221,"4846":743508.8817127076,"4847":744403.6086055081,"4848":745298.6468460907,"4849":745701.5083797625,"4850":746104.4350322504,"4851":746013.9650873394,"4852":745923.31375142,"4853":745339.9931147138,"4854":744756.2452691875,"4855":743682.4997362869,"4856":742608.0828389085,"4857":741048.273640744,"4858":739487.5515481776,"4859":737447.9581392377,"4860":735407.213884924,"4861":732896.0091611415,"4862":730383.4201590584,"4863":727410.6382031386,"4864":724436.2439752996,"4865":721013.7404568024,"4866":717589.4030118728,"4867":713730.8083983203,"4868":709870.1654177048,"4869":705590.8311813717,"4870":701309.2421975371,"4871":696626.1802302228,"4872":691940.6660096594,"4873":686872.4814845425,"4874":681801.6568545948,"4875":676368.4748001324,"4876":670932.4751847973,"4877":665155.8610604535,"4878":659376.2630150822,"4879":653279.1376023296,"4880":647178.8736608395,"4881":640785.4226053258,"4882":634388.6907759843,"4883":627724.2691378578,"4884":621056.4374048195,"4885":614147.4695939092,"4886":607234.9758013895,"4887":600108.8512921517,"4888":592979.098806356,"4889":585664.064044149,"4890":578345.3136047208,"4891":570870.3605300117,"4892":563391.6187178276,"4893":555786.370348265,"4894":548177.2751097281,"4895":540471.8686316464,"4896":532762.5723112734,"4897":524987.5401420036,"4898":517208.5904849138,"4899":509394.7397753019,"4900":501576.9593692438,"4901":493755.2504219195,"4902":485929.615054616,"4903":478131.0391378416,"4904":470328.5555497275,"4905":462584.0125890409,"4906":454835.5961038438,"4907":447175.7727341864,"4908":439512.1252502851,"4909":431967.3737098948,"4910":424418.8625339741,"4911":417019.0808779838,"4912":409615.6188791651,"4913":402390.1329856599,"4914":395161.0605430946,"4915":388138.5083772854,"4916":381112.4775870989,"4917":374320.6961803787,"4918":367525.557778958,"4919":360991.4733688735,"4920":354454.1668187533,"4921":348203.688583467,"4922":341950.1357555967,"4923":336008.0535622162,"4924":330063.0564341976,"4925":324452.9430045146,"4926":318840.0857785462,"4927":313584.2036582915,"4928":308325.7596851157,"4929":303444.973383882,"4930":298561.8172600649,"4931":294075.5109086375,"4932":289587.0360940915,"4933":285513.0369441597,"4934":281437.0792250368,"4935":277791.5872931941,"4936":274144.3543922047,"4937":270941.8785259043,"4938":267737.8861378599,"4939":264991.1867556405,"4940":262243.2012606562,"4941":259963.239992619,"4942":257682.228073063,"4943":255878.1245003445,"4944":254073.2098603716,"4945":252752.2055243421,"4946":251430.6328828209,"4947":250598.0627060479,"4948":249765.169204984,"4949":249424.4404367493,"4950":249083.6345780429,"4951":249236.2133475048,"4952":249388.9615411699,"4953":250034.3670712406,"4954":250680.1878481735,"4955":251815.9943529452,"4956":252952.4602650821,"4957":254574.3065233145,"4958":256197.0537236785,"4959":258298.6602905658,"4960":260401.4057553968,"4961":262974.5997446862,"4962":265549.1660696833,"4963":268583.9134083421,"4964":271620.2610811618,"4965":275104.7061092985,"4966":278590.9731309421,"4967":282511.485390698,"4968":286434.0340894209,"4969":290775.2621181796,"4970":295118.732971171,"4971":299863.6648867861,"4972":304611.037137206,"4973":309741.0677761473,"4974":314873.7266062971,"4975":320368.7309497495,"4976":325866.540945272,"4977":331704.9535434096,"4978":337546.338158589,"4979":343705.2382395719,"4980":349867.2649501212,"4981":356322.4668779293,"4982":362780.9376852059,"4983":369507.0864093133,"4984":376236.6333387827,"4985":383207.3044589778,"4986":390181.489676039,"4987":397369.2937274785,"4988":404560.7138755371,"4989":411937.4044224682,"4990":419317.7987714837,"4991":426854.3838830432,"4992":434394.7458617401,"4993":442061.6025298758,"4994":449732.2942014453,"4995":457499.2852494156,"4996":465270.1542789304,"4997":473106.7472989914,"4998":480947.2459509169,"4999":488822.6338018042,"5000":496701.9394979714,"5001":504585.1618866327,"5002":512472.298848893,"5003":520332.3645166378,"5004":528196.3260141264,"5005":536002.3350449837,"5006":543812.2057635374,"5007":551533.4715321277,"5008":559258.5495829271,"5009":566864.7198605697,"5010":574474.6379464846,"5011":581935.8146875985,"5012":589400.6599490568,"5013":596687.5172851036,"5014":603977.9493524983,"5015":611061.8493278096,"5016":618149.2161145553,"5017":625002.3217072748,"5018":631858.772486518,"5019":638454.1574686312,"5020":645052.7527873677,"5021":651364.5079902388,"5022":657679.3259870433,"5023":663682.6615530874,"5024":669688.900259878,"5025":675360.2434768202,"5026":681034.318700913,"5027":686351.407032534,"5028":691671.0454326957,"5029":696613.0143789113,"5030":701557.3413680814,"5031":706104.8068076075,"5032":710654.4289353727,"5033":714789.5636260179,"5034":718926.6451157212,"5035":722633.249050384,"5036":726341.582188805,"5037":729605.1465295198,"5038":732870.2156313321,"5039":735677.9799690426,"5040":738487.0186636107,"5041":740828.021377694,"5042":743170.0629921257,"5043":745035.1845109166,"5044":746901.1053505264,"5045":748283.1041421237,"5046":749665.6594975095,"5047":750559.2006488076,"5048":751453.0533874223,"5049":751854.7296585981,"5050":752256.4712879986,"5051":752164.8165593463,"5052":752072.9806789688,"5053":751488.4757370249,"5054":750903.5438254192,"5055":749828.6144655341,"5056":748753.0139802037,"5057":747192.0214330569,"5058":745630.1162304159,"5059":743589.339950246,"5060":741547.4130634846,"5061":739035.0259459743,"5062":736521.2547888207,"5063":733547.2909164253,"5064":730571.7150106435,"5065":727148.0300526738,"5066":723722.5114066795,"5067":719862.7358304082,"5068":716000.9121253573,"5069":711720.39740281,"5070":707437.6281709205,"5071":702753.3861936482,"5072":698066.6922011618,"5073":692997.3281420945,"5074":687925.3242161075,"5075":682490.9631034544,"5076":677053.7846677155,"5077":671275.9919606928,"5078":665495.2155703057,"5079":659396.9120501385,"5080":653295.4702387732,"5081":646900.8415508617,"5082":640502.9323265383,"5083":633837.3335307839,"5084":627168.32487741,"5085":620258.1803833948,"5086":613344.5101449394,"5087":606217.2094268734,"5088":599086.2809692952,"5089":591770.0704722902,"5090":584450.1445349867,"5091":576974.016199264,"5092":569494.0993628661,"5093":561887.6762058284,"5094":554277.4064164936,"5095":546570.8256242299,"5096":538860.3552262294,"5097":531084.1492158255,"5098":523304.0259540336,"5099":515489.0018760905,"5100":507670.048338011,"5101":499847.1664949141,"5102":492020.3584680252,"5103":484220.6101277918,"5104":476416.9543522843,"5105":468671.2394402084,"5106":460921.6512395656,"5107":453260.656390345,"5108":445595.8376627019,"5109":438049.9151143305,"5110":430500.2331661285,"5111":423099.2809734959,"5112":415694.6486736133,"5113":408467.9927145616,"5114":401237.7504419065,"5115":394214.0286814038,"5116":387186.828531859,"5117":380393.8780010555,"5118":373597.5707107657,"5119":367062.3176469657,"5120":360523.8426782234,"5121":354272.1962593475,"5122":348017.4754828598,"5123":342074.2255757737,"5124":336128.060968901,"5125":330516.7802951549,"5126":324902.7560598541,"5127":319645.7071649375,"5128":314386.0966517098,"5129":309504.1440449742,"5130":304619.8218501448,"5131":300132.3496621348,"5132":295642.7092453755,"5133":291567.5447275396,"5134":287490.4218747618,"5135":283843.7650434535,"5136":280195.3674771275,"5137":276991.7271795598,"5138":273786.5705942573,"5139":271038.7072487291,"5140":268289.5580243253,"5141":266008.4332606983,"5142":263726.2580793221,"5143":261920.9914784933,"5144":260114.9140440604,"5145":258792.7471471613,"5146":257470.0121783012,"5147":256636.2799076605,"5148":255802.2245461401,"5149":255460.3341508009,"5150":255118.3668982822,"5151":255269.7845071645,"5152":255421.3717734231,"5153":256065.6166092011,"5154":256710.2769248955,"5155":257844.9232014235,"5156":258980.2291182522,"5157":260600.9156140524,"5158":262222.5032848011,"5159":264322.9505548304,"5160":266424.5369555016,"5161":268996.5721132702,"5162":271569.9798393262,"5163":274603.5688115645,"5164":277638.7583504251,"5165":281122.045477005,"5166":284607.1548294351,"5167":288526.5096522615,"5168":292447.9011462802,"5169":296787.9722025008,"5170":301130.2863150613,"5171":305874.0617222937,"5172":310620.2776963203,"5173":315749.1522907988,"5174":320880.6553083575,"5175":326374.5040710315,"5176":331871.1587175297,"5177":337708.4161983383,"5178":343548.6459278253,"5179":349706.3913546937,"5180":355867.2636426478,"5181":362321.3113793213,"5182":368778.6282268653,"5183":375503.6232225834,"5184":382232.0166549486,"5185":389201.5345092659,"5186":396174.566691617,"5187":403361.217939456,"5188":410551.4855149651,"5189":417927.0237203395,"5190":425306.2659587325,"5191":432841.6991905454,"5192":440380.9095203134,"5193":448046.6147702795,"5194":455716.1552543808,"5195":463481.9953455257,"5196":471251.7136487999,"5197":479087.1561731467,"5198":486926.5045598267,"5199":494800.7423758788,"5200":502678.8982675633,"5201":510560.971082036,"5202":518446.958700344,"5203":526305.8752543149,"5204":534168.68786815,"5205":541973.5482454161,"5206":549782.2705403834,"5207":557502.3881153339,"5208":565226.3182023824,"5209":572831.3407461051,"5210":580440.1113278734,"5211":587900.1407945564,"5212":595363.8390112416,"5213":602649.5495321155,"5214":609938.8350138798,"5215":617021.5886330457,"5216":624107.8092930731,"5217":630959.7689884442,"5218":637815.0740996513,"5219":644409.3136429829,"5220":651006.763752135,"5221":657317.3739745616,"5222":663631.0472200039,"5223":669633.2382637108,"5224":675638.3326771316,"5225":681308.5318296144,"5226":686981.4632181008,"5227":692297.407942911,"5228":697615.9029650002,"5229":702556.7287618247,"5230":707499.9128302275,"5231":712046.2355775533,"5232":716594.7152416278,"5233":720728.7076970349,"5234":724864.6471798959,"5235":728570.1093360545,"5236":732277.300924253,"5237":735539.7239429698,"5238":738803.6519509513,"5239":741610.2754229418,"5240":744418.1734798435,"5241":746758.0357842571,"5242":749098.9372169593,"5243":750962.9187819036,"5244":752827.6998954933,"5245":754208.5591888399,"5246":755589.9752736876,"5247":756482.3773821041,"5248":757375.0913054365,"5249":757775.6289888726,"5250":758176.2322580197,"5251":758083.4393965435,"5252":757990.4656107152,"5253":757404.8229906369,"5254":756818.7536281565,"5255":755742.6870446004,"5256":754665.9495627459,"5257":753103.8202461657,"5258":751540.7785011252,"5259":749498.8659055339,"5260":747455.8029302723,"5261":744942.2799511267,"5262":742427.373159147,"5263":739452.2738786779,"5264":736475.5627915189,"5265":733050.7428788118,"5266":729624.0895046645,"5267":725763.1794267676,"5268":721900.221446563,"5269":717618.5726752776,"5270":713334.6696210094,"5271":708649.2940476618,"5272":703961.4666853476,"5273":698890.9694826441,"5274":693817.8326391563,"5275":688382.338835082,"5276":682944.0279339455,"5277":677165.102987493,"5278":671383.1945835882,"5279":665283.7592757592,"5280":659181.1859025324,"5281":652785.4258785041,"5282":646386.3855437526,"5283":639719.6558632033,"5284":633049.5165506119,"5285":626138.2416229009,"5286":619223.4411762159,"5287":612095.0104753306,"5288":604962.9522602882,"5289":597645.6122311184,"5290":590324.556986894,"5291":582847.2995694387,"5292":575366.253876441,"5293":567758.702087881,"5294":560147.3038920459,"5295":552439.5949182485,"5296":544727.9965636258,"5297":536950.6628214554,"5298":529169.4120526977,"5299":521353.2606925344,"5300":513533.1800969247,"5301":505709.1714209321,"5302":497881.2367857275,"5303":490080.3620617029,"5304":482275.5801268733,"5305":474528.7392798897,"5306":466778.0253686982,"5307":459115.9050332331,"5308":451449.9610435944,"5309":443902.9134574214,"5310":436352.1066955568,"5311":428950.0299133457,"5312":421544.2732479136,"5313":414316.4931472866,"5314":407085.1269569756,"5315":400060.2815026813,"5316":393031.9578831546,"5317":386237.8841061241,"5318":379440.4537933071,"5319":372904.0779306254,"5320":366364.4803865917,"5321":360111.7116159604,"5322":353855.8687111985,"5323":347911.4968992647,"5324":341964.2106109162,"5325":336351.8084790115,"5326":330736.663008815,"5327":325478.4931022107,"5328":320217.7618004491,"5329":315334.6886282787,"5330":310449.2460910592,"5331":305960.6537836494,"5332":301469.8934704261,"5333":297393.6092790078,"5334":293315.3669754746,"5335":289667.5909161837,"5336":286018.0743445936,"5337":282813.3152644259,"5338":279607.0401191332,"5339":276858.0584361706,"5340":274107.7910968338,"5341":271825.5484407211,"5342":269542.2555892523,"5343":267735.8715406701,"5344":265928.6768807684,"5345":264605.3929806314,"5346":263281.5412307102,"5347":262446.6924011311,"5348":261611.5207027411,"5349":261268.5141925469,"5350":260925.431047134,"5351":261075.732985029,"5352":261226.2048021533,"5353":261869.334410596,"5354":262512.8797207004,"5355":263646.4112133299,"5356":264780.6025678975,"5357":266400.1747230205,"5358":268020.648274622,"5359":270119.9816469806,"5360":272220.4543714037,"5361":274791.3760742932,"5362":277363.6705667853,"5363":280396.1465267215,"5364":283430.2232744881,"5365":286912.3978311286,"5366":290396.3948347201,"5367":294314.6375297555,"5368":298234.9171169771,"5369":302573.876487341,"5370":306915.079134932,"5371":311657.7432980284,"5372":316402.8482486993,"5373":321530.6120405488,"5374":326661.0044761521,"5375":332153.7428774909,"5376":337649.2873832206,"5377":343485.4349437745,"5378":349324.554973467,"5379":355481.1909209481,"5380":361640.9539498686,"5381":368093.8926478095,"5382":374550.1006768682,"5383":381273.9870742958,"5384":388001.2721285115,"5385":394969.6818247677,"5386":401941.606069093,"5387":409127.1495988883,"5388":416316.309676283,"5389":423690.7406034191,"5390":431068.8757833971,"5391":438603.2021765653,"5392":446141.3058874061,"5393":453805.9047381096,"5394":461474.3390425597,"5395":469239.0731736124,"5396":477007.6857363004,"5397":484842.0227395145,"5398":492680.2658244621,"5399":500553.3985581295,"5400":508430.4495867244,"5401":516311.4177573499,"5402":524196.3009510004,"5403":532054.1132994507,"5404":539915.8219268498,"5405":547719.5785367117,"5406":555527.1972832541,"5407":563246.2115287064,"5408":570969.0385051309,"5409":578572.9581570514,"5410":586180.6260657867,"5411":593639.5530781534,"5412":601102.1490591868,"5413":608386.7575630209,"5414":615674.9412463051,"5415":622756.5932854981,"5416":629841.7125840076,"5417":636692.5711362634,"5418":643546.7753227055,"5419":650139.9141595702,"5420":656736.2637805014,"5421":663045.7737329007,"5422":669358.3469264572,"5423":675359.4381363676,"5424":681363.4329340291,"5425":687032.5326887376,"5426":692704.3648973827,"5427":698019.2106602325,"5428":703336.6069381903,"5429":708276.3342086602,"5430":713218.4199684333,"5431":717763.6446248023,"5432":722311.0264155408,"5433":726443.921215181,"5434":730578.763259792,"5435":734283.1281951662,"5436":737989.2227799935,"5437":741250.5490127007,"5438":744513.3804519826,"5439":747318.9075725313,"5440":750125.7094951972,"5441":752464.4758825294,"5442":754804.2816152533,"5443":756667.1676972703,"5444":758530.8535449316,"5445":759910.6177892981,"5446":761290.9390420618,"5447":762182.2465352383,"5448":763073.8660601244,"5449":763473.3095618554,"5450":763872.8188659869,"5451":763778.9322561339,"5452":763684.8649385155,"5453":763098.1290031828,"5454":762510.9665419317,"5455":761433.8070760374,"5456":760355.9769282262,"5457":758792.755162019,"5458":757228.62118363,"5459":755185.6165709173,"5460":753141.4617947103,"5461":750626.8472307438,"5462":748110.8490700165,"5463":745134.6586368221,"5464":742156.8566129085,"5465":738730.9459793668,"5466":735303.2021002531,"5467":731441.2017332076,"5468":727577.1536796205,"5469":723294.4150506678,"5470":719009.4223543964,"5471":714322.9573546589,"5472":709634.0407815167,"5473":704562.4545834963,"5474":699488.2289601517,"5475":694051.6465916297,"5476":688612.2473414039,"5477":682832.2342611692,"5478":677049.2379387385,"5479":670948.7149275894,"5480":664845.0540661971,"5481":658448.2067691071,"5482":652048.079376347,"5483":645380.2628527913,"5484":638709.0369121451,"5485":631796.6755712802,"5486":624880.7889262912,"5487":617751.2722419014,"5488":610618.1282581032,"5489":603299.7026748756,"5490":595977.562091241,"5491":588499.2195489723,"5492":581017.0889457077,"5493":573408.4524613764,"5494":565795.9697842152,"5495":558087.1765434865,"5496":550374.4941362767,"5497":542596.076555813,"5498":534813.7421630053,"5499":526996.5073929847,"5500":519175.3436016602,"5501":511350.2519440451,"5502":503521.2345412597,"5503":495719.2772636458,"5504":487913.4129891678,"5505":480165.4900164268,"5506":472413.6941933184,"5507":464750.4921597266,"5508":457083.4666857015,"5509":449535.3378288319,"5510":441983.4500099105,"5511":434580.2923842319,"5512":427173.4550888718,"5513":419944.5945718063,"5514":412712.1481784958,"5515":405686.2227345913,"5516":398656.8193387935,"5517":391861.6659987807,"5518":385063.1563362206,"5519":378525.701336985,"5520":371985.0248695363,"5521":365731.1773885794,"5522":359474.255986531,"5523":353528.8058903001,"5524":347580.4415305939,"5525":341966.9615402212,"5526":336350.7384243964,"5527":331091.4910849539,"5528":325829.6825630942,"5529":320945.5323835161,"5530":316059.0130515298,"5531":311569.3441619439,"5532":307077.5074790859,"5533":303000.1471305243,"5534":298920.8288822899,"5535":295271.97709069,"5536":291621.3849991335,"5537":288415.5506112925,"5538":285208.2003705701,"5539":282458.1438043715,"5540":279706.8017939433,"5541":277423.4846788339,"5542":275139.1175804139,"5543":273331.6594968763,"5544":271523.3910139658,"5545":270199.033502717,"5546":268874.1083535316,"5547":268038.1863364865,"5548":267201.9416623795,"5549":266857.8623881678,"5550":266513.7066903876,"5551":266662.9362875164,"5552":266812.335975426,"5553":267454.3936661564,"5554":268096.8672700016,"5555":269229.3272677758,"5556":270362.447338843,"5557":271980.9484217711,"5558":273600.3511124341,"5559":275698.6138350614,"5560":277798.0161209115,"5561":280367.867596337,"5562":282939.0920724252,"5563":285970.4982269683,"5564":289003.5053803038,"5565":292484.6105534261,"5566":295967.5383843634,"5567":299884.7121175595,"5568":303803.9229537079,"5569":308141.8137837157,"5570":312481.9481016187,"5571":317223.5441456464,"5572":321967.5811878191,"5573":327094.2772816921,"5574":332223.6022297916,"5575":337715.2733540505,"5576":343209.7507930757,"5577":349044.8314972514,"5578":354882.8848808435,"5579":361038.454392453,"5580":367197.1511956825,"5581":373649.0238780636,"5582":380104.1661016457,"5583":386826.986903631,"5584":393553.2065723902,"5585":400520.5510931269,"5586":407491.4103718214,"5587":414675.8891458257,"5588":421863.9846772209,"5589":429237.3512681004,"5590":436614.4223215161,"5591":444147.6847977681,"5592":451684.7248012903,"5593":459348.2601542241,"5594":467015.6311704053,"5595":474779.3022226413,"5596":482546.8519159164,"5597":490380.1262590732,"5598":498217.3068932707,"5599":506089.377385447,"5600":513965.3663817614,"5601":521845.2727292686,"5602":529729.0943089151,"5603":537585.8452524272,"5604":545446.4926839056,"5605":553249.1883068164,"5606":561055.7462753288,"5607":568773.6999516243,"5608":576495.466567717,"5609":584098.3260680826,"5610":591704.9340339919,"5611":599162.8013122133,"5612":606624.337767734,"5613":613907.88695464,"5614":621195.0115295328,"5615":628275.6046688231,"5616":635359.6652758705,"5617":642209.4653450568,"5618":649062.6112567743,"5619":655654.6920272113,"5620":662249.9837899636,"5621":668558.4360923852,"5622":674869.9518441173,"5623":680869.9858203086,"5624":686872.9235923088,"5625":692540.9665293656,"5626":698211.7421283211,"5627":703525.5314893955,"5628":708841.8715734446,"5629":713780.5428578245,"5630":718721.5728392787,"5631":723265.7419250524,"5632":727812.0683528712,"5633":731943.9079972201,"5634":736077.6950941201,"5635":739781.0052893165,"5636":743486.0453414512,"5637":746746.3172489036,"5638":750008.0945703209,"5639":752812.5677803479,"5640":755618.3159997874,"5641":757956.0288911409,"5642":760294.7813350862,"5643":762156.6143354776,"5644":764019.2473086191,"5645":765397.9588855234,"5646":766777.2276778357,"5647":767667.4829175242,"5648":768558.0503958379,"5649":768956.4420578653,"5650":769354.8997291146,"5651":769259.9616931533,"5652":769164.8431561533,"5653":768577.0562081184,"5654":767988.8429407976,"5655":766910.6328754185,"5656":765831.7523346603,"5657":764267.4803819971,"5658":762702.2964235952,"5659":760658.2420372664,"5660":758613.0376937924,"5661":756097.3737688612,"5662":753580.3264534239,"5663":750603.0870717278,"5664":747624.2363054737,"5665":744197.2771357052,"5666":740768.4849264318,"5667":736905.4364352467,"5668":733040.3404634929,"5669":728756.5541222999,"5670":724470.513919667,"5671":719783.0016194003,"5672":715093.0379515145,"5673":710020.4048644889,"5674":704945.1325578307,"5675":699507.50371164,"5676":694067.0581893434,"5677":688285.9990425892,"5678":682501.9568591435,"5679":676400.3881924369,"5680":670295.6818808982,"5681":663897.789339026,"5682":657496.6169068012,"5683":650827.7555490518,"5684":644155.4849794359,"5685":637242.0792147788,"5686":630325.1483511287,"5687":623194.5876531621,"5688":616060.3998608247,"5689":608740.9306740492,"5690":601417.7466918112,"5691":593938.3609558373,"5692":586455.1873637189,"5693":578845.5080953389,"5694":571231.9828388876,"5695":563522.1472235809,"5696":555808.4226464587,"5697":548028.9631007019,"5698":540245.586947174,"5699":532427.3106209597,"5700":524605.1054779215,"5701":516778.9726730266,"5702":508948.9143273488,"5703":501145.9163111834,"5704":493339.0115024491,"5705":485590.0481997001,"5706":477837.2122507861,"5707":470172.9702955448,"5708":462504.90510398,"5709":454955.7367336343,"5710":447402.8096052543,"5711":439998.6128740884,"5712":432590.7366771661,"5713":425360.8374624175,"5714":418127.3525752568,"5715":411100.3888412889,"5716":404069.9473591683,"5717":397273.7561365276,"5718":390474.2087949883,"5719":383935.716320376,"5720":377394.0025811073,"5721":371139.1180318409,"5722":364881.1597649479,"5723":358934.673007291,"5724":352985.2721895317,"5725":347370.7559444328,"5726":341753.4967771628,"5727":336493.2135895103,"5728":331230.3694226298,"5729":326345.1838011745,"5730":321457.6292304083,"5731":316966.9253050946,"5732":312474.0537895148,"5733":308395.6588111917,"5734":304315.3061361102,"5735":300665.420120532,"5736":297013.7940078203,"5737":293806.9258016016,"5738":290598.541945233,"5739":287847.4519660744,"5740":285095.0767453265,"5741":282810.7266224923,"5742":280525.3267188966,"5743":278716.8360326869,"5744":276907.5351495623,"5745":275582.1454405119,"5746":274256.1882958919,"5747":273419.2344857335,"5748":272581.9582207891,"5749":272236.8475579705,"5750":271891.6606737684,"5751":272039.8592866147,"5752":272188.2281923359,"5753":272829.2553029267,"5754":273470.6985286355,"5755":274602.1283502313,"5756":275734.2184470326,"5757":277351.6897575619,"5758":278970.062877648,"5759":281067.2962314751,"5760":283165.6693502562,"5761":285734.4918602987,"5762":288304.6875726447,"5763":291335.0651650412,"5764":294367.0439577803,"5765":297847.1209718114,"5766":301329.0208451174,"5767":305245.166822097,"5768":309163.3501033984,"5769":313500.2135798837,"5770":317839.3207455436,"5771":322579.8898385625,"5772":327322.9001309155,"5773":332448.5696761129,"5774":337576.8682766359,"5775":343067.5132543725,"5776":348560.9647478843,"5777":354395.0197075106,"5778":360232.0475474724,"5779":366386.5917163258,"5780":372544.2633776283,"5781":378995.1111188667,"5782":385449.2286020455,"5783":392171.0248643217,"5784":398896.2201940215,"5785":405862.5405763035,"5786":412832.3759171031,"5787":420015.8309537277,"5788":427202.9029482133,"5789":434575.2462026089,"5790":441951.2941199213,"5791":449483.5336604059,"5792":457019.5509284518,"5793":464682.0637461559,"5794":472348.4124273092,"5795":480111.0613446744,"5796":487877.5891031912,"5797":495709.8417116573,"5798":503546.0008111874,"5799":511417.0499686747,"5800":519292.0178302339,"5801":527170.9032428756,"5802":535053.704087501,"5803":542909.4344957924,"5804":550769.0615918058,"5805":558570.7370789627,"5806":566376.2751113881,"5807":574093.2090512186,"5808":581813.9561304242,"5809":589415.7962934357,"5810":597021.3851214799,"5811":604478.2334612806,"5812":611938.7511777807,"5813":619221.2818250217,"5814":626507.3880595608,"5815":633586.9630577642,"5816":640670.0057229474,"5817":647518.7880494479,"5818":654370.9164176134,"5819":660961.9798435882,"5820":667556.2544609238,"5821":673863.6898169299,"5822":680174.1888212033,"5823":686173.2062488487,"5824":692175.1276711716,"5825":697842.1544573755,"5826":703511.9141042583,"5827":708824.6877119961,"5828":714140.0122414003,"5829":719077.6681697832,"5830":724017.6829938443,"5831":728560.8371207842,"5832":733106.148788285,"5833":737236.9738707872,"5834":741369.7466042682,"5835":745072.0426344288,"5836":748776.0687198672,"5837":752035.3268589189,"5838":755296.090610187,"5839":758099.550448272,"5840":760904.2854939335,"5841":763240.9854096286,"5842":765578.7250759912,"5843":767439.5454968316,"5844":769301.1660884105,"5845":770678.8654816963,"5846":772057.1222882903,"5847":772946.3657401172,"5848":773835.9216283817,"5849":774233.3018981292,"5850":774630.7483748235,"5851":774534.7993419886,"5852":774438.6700057528,"5853":773849.872456076,"5854":773260.6487846635,"5855":772181.4285126996,"5856":771101.5379628189,"5857":769536.2561984524,"5858":767970.0626257232,"5859":765924.9988223987,"5860":763878.7852592175,"5861":761362.1123118236,"5862":758844.0561711253,"5863":755865.8081613253,"5864":752885.9489640812,"5865":749457.9815603936,"5866":746028.1813142279,"5867":742164.1249831339,"5868":738298.0213684114,"5869":734013.2275811459,"5870":729726.1801292941,"5871":725037.6607766177,"5872":720346.6902530886,"5873":715273.0505071426,"5874":710196.7717382434,"5875":704758.1366264478,"5876":699316.685035139,"5877":693534.620015922,"5878":687749.5721565195,"5879":681646.998010319,"5880":675541.2864157057,"5881":669142.3887871351,"5882":662740.2114645449,"5883":656070.3454127196,"5884":649397.0703452745,"5885":642482.6602789913,"5886":635564.7253098751,"5887":628433.1607025593,"5888":621297.9691969465,"5889":613977.496492926,"5890":606653.3091894304,"5891":599172.9203281432,"5892":591688.7438066127,"5893":584078.0618046788,"5894":576463.5340104885,"5895":568752.6960532148,"5896":561037.9693298546,"5897":553257.5078335457,"5898":545473.1299251085,"5899":537653.8520395849,"5900":529830.6455327944,"5901":522003.511559661,"5902":514172.4522412159,"5903":506368.4534477112,"5904":498560.5480570227,"5905":490810.5843676619,"5906":483056.7482274355,"5907":475391.5062761382,"5908":467722.441283731,"5909":460172.2733077139,"5910":452618.3467687904,"5911":445213.1508221663,"5912":437804.2756048281,"5913":430573.3775646633,"5914":423338.8940470433,"5915":416310.9318775301,"5916":409279.4921547357,"5917":402482.3028862498,"5918":395681.7576936514,"5919":389142.267562723,"5920":382599.5563618391,"5921":376343.6745456154,"5922":370084.7192063804,"5923":364137.2355709543,"5924":358186.8380699559,"5925":352571.3253361053,"5926":346953.0698745286,"5927":341691.7905869717,"5928":336427.9505145467,"5929":331541.7691818641,"5930":326653.2190941456,"5931":322161.5198461117,"5932":317667.6532020014,"5933":313588.2632892953,"5934":309506.9158739356,"5935":305856.0353121416,"5936":302203.4148472341,"5937":298995.5524827972,"5938":295786.1746621456,"5939":293034.0909125968,"5940":290280.7221153092,"5941":287995.3786097434,"5942":285708.9855171818,"5943":283899.5018357297,"5944":282089.2081510438,"5945":280762.825834071,"5946":279435.876275125,"5947":278597.9302441951,"5948":277759.6619519912,"5949":277413.559455383,"5950":277067.3809308189,"5951":277214.5880966886,"5952":277361.9657487764,"5953":278002.0017990349,"5954":278642.4541576704,"5955":279772.8933054095,"5956":280903.9929215289,"5957":282520.4739445088,"5958":284137.8569701361,"5959":286234.1004225526,"5960":288331.4838329293,"5961":290899.3168275318,"5962":293468.52321736,"5963":296497.9116801189,"5964":299528.9015360586,"5965":303007.9898060863,"5966":306488.9011281434,"5967":310404.0587465861,"5968":314321.2538620211,"5969":318657.1293652683,"5970":322995.2487502766,"5971":327734.8302551885,"5972":332476.8531519371,"5973":337601.5354939909,"5974":342728.8470837892,"5975":348218.5052431782,"5976":353710.9701106776,"5977":359544.0386365851,"5978":365380.0802350796,"5979":371533.6383546757,"5980":377690.3241588888,"5981":384140.1862351643,"5982":390593.3182454647,"5983":397314.1292269055,"5984":404038.3394677709,"5985":411003.674953178,"5986":417972.5255890205,"5987":425154.996112564,"5988":432341.0837858031,"5989":439712.4429107447,"5990":447087.5068903546,"5991":454618.7626848462,"5992":462153.7963985669,"5993":469815.3258535723,"5994":477480.6913636117,"5995":485242.3573014062,"5996":493007.9022718542,"5997":500839.1722837116,"5998":508674.3489780517,"5999":516544.4159217263,"6000":524418.4017608084,"6001":532296.3053422672,"6002":540178.1245469626,"6003":548032.8735065352,"6004":555891.5193449999,"6005":563692.2137657367,"6006":571496.7709228288,"6007":579212.724178372,"6008":586932.4907642945,"6009":594533.3506249862,"6010":602137.9593416322,"6011":609593.827760915,"6012":617053.3657477363,"6013":624334.9168560964,"6014":631620.0437425108,"6015":638698.6395833049,"6016":645780.7032817526,"6017":652628.5068321505,"6018":659479.6566148049,"6019":666069.7416458188,"6020":672663.0380587027,"6021":678969.4954007249,"6022":685279.0165814413,"6023":691277.0563759152,"6024":697278.000355411,"6025":702944.0498890912,"6026":708612.8324737124,"6027":713924.6292094098,"6028":719238.9770569537,"6029":724175.6564936152,"6030":729114.6950160528,"6031":733656.8730314261,"6032":738201.2087773763,"6033":742331.0581283027,"6034":746462.8553201417,"6035":750164.1759985532,"6036":753867.2269220941,"6037":757125.5100890594,"6038":760385.299058011,"6039":763187.7843035086,"6040":765991.5449462709,"6041":768327.270648714,"6042":770664.0362914311,"6043":772523.8828781913,"6044":774384.5298252148,"6045":775761.2557634286,"6046":777138.5393043938,"6047":778026.8096799941,"6048":778915.3926813933,"6049":779311.8002535957,"6050":779708.2742220251,"6051":779611.3528701642,"6052":779514.2514041004,"6053":778924.4819137533,"6054":778334.2864907872,"6055":777254.0946563456,"6056":776173.232733023,"6057":774606.9797842093,"6058":773039.8152159867,"6059":770993.7806060823,"6060":768946.5964251937,"6061":766428.9530489249,"6062":763909.926668143,"6063":760930.7086070104,"6064":757949.8795471442,"6065":754520.942469504,"6066":751090.1727380148,"6067":747225.1471101863,"6068":743358.0743872772,"6069":739072.311680333,"6070":734784.2954972695,"6071":730094.8076018081,"6072":725402.86872388,"6073":720328.2608118808,"6074":715251.0140652338,"6075":709811.4111639551,"6076":704368.9919713876,"6077":698585.959539096,"6078":692799.9444547624,"6079":686696.403271734,"6080":680589.7248283557,"6081":674189.8605390426,"6082":667786.7167436922,"6083":661115.8844070486,"6084":654441.6432426865,"6085":647526.2672673478,"6086":640607.3665769969,"6087":633474.8364362271,"6088":626338.6795849007,"6089":619017.2417228669,"6090":611692.0894490179,"6091":604210.735804997,"6092":596725.5946883124,"6093":589113.9482787637,"6094":581498.4562644578,"6095":573786.6542745274,"6096":566070.9637059295,"6097":558289.5385517615,"6098":550504.1971728039,"6099":542683.9560040584,"6100":534859.7864013043,"6101":527031.6895194256,"6102":519199.6674794134,"6103":511394.7061514799,"6104":503585.8384134606,"6105":495834.9125638271,"6106":488080.1144503461,"6107":480413.9107127723,"6108":472743.8841210268,"6109":465192.7547325694,"6110":457637.8669680637,"6111":450231.7099826757,"6112":442821.8739133519,"6113":435590.0152079396,"6114":428354.5712117706,"6115":421325.6487503671,"6116":414293.2489223009,"6117":407495.0997351221,"6118":400693.5948103694,"6119":394153.1451337861,"6120":387609.4745737065,"6121":381352.6335847064,"6122":375092.7192590745,"6123":369144.2768235915,"6124":363192.9207088362,"6125":357576.4495474889,"6126":351957.2358446361,"6127":346694.9985019838,"6128":341430.2005606046,"6129":336543.061545069,"6130":331653.5539605591,"6131":327160.8974017557,"6132":322666.0736328583,"6133":318585.7267813077,"6134":314503.4226130064,"6135":310851.5854841341,"6136":307198.0086379721,"6137":303989.1900780646,"6138":300778.856247687,"6139":298025.8166741172,"6140":295271.4922384737,"6141":292985.1932801779,"6142":290697.8449204725,"6143":288887.4061574233,"6144":287076.1575766475,"6145":285748.8205490524,"6146":284420.9164649124,"6147":283582.0160941771,"6148":282742.793647517,"6149":282395.7371817623,"6150":282048.6048733221,"6151":282194.8584405466,"6152":282341.2826791808,"6153":282980.3655011376,"6154":283619.8648165842,"6155":284749.3511062076,"6156":285879.4980492453,"6157":287495.0265841381,"6158":289111.4573066334,"6159":291206.7486408339,"6160":293303.1801178713,"6161":295870.0613639717,"6162":298438.3161900959,"6163":301466.7532739094,"6164":304496.7919356232,"6165":307974.9291961053,"6166":311454.8896932576,"6167":315369.0966713975,"6168":319285.3413310921,"6169":323620.2665631222,"6170":327957.4358613976,"6171":332696.0674640216,"6172":337437.140642888,"6173":342560.8734514264,"6174":347687.2356920368,"6175":353175.9446865262,"6176":358667.4605733754,"6177":364499.5803028428,"6178":370334.6732890685,"6179":376487.2829805275,"6180":382643.0205406967,"6181":389091.9345569822,"6182":395544.1186913074,"6183":402263.9819807488,"6184":408987.2447135518,"6185":415951.6328747944,"6186":422919.536370331,"6187":430101.0599373887,"6188":437286.2008379229,"6189":444656.6133739016,"6190":452030.7309482515,"6191":459561.0405211473,"6192":467095.1281968975,"6193":474755.7117975185,"6194":482420.1316367211,"6195":490180.8520871873,"6196":497945.4517537766,"6197":505775.7766452063,"6198":513610.0084025104,"6199":521479.1305925023,"6200":529352.1718612162}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0", + "101": "branch0_seg0", + "102": "branch0_seg0", + "103": "branch0_seg0", + "104": "branch0_seg0", + "105": "branch0_seg0", + "106": "branch0_seg0", + "107": "branch0_seg0", + "108": "branch0_seg0", + "109": "branch0_seg0", + "110": "branch0_seg0", + "111": "branch0_seg0", + "112": "branch0_seg0", + "113": "branch0_seg0", + "114": "branch0_seg0", + "115": "branch0_seg0", + "116": "branch0_seg0", + "117": "branch0_seg0", + "118": "branch0_seg0", + "119": "branch0_seg0", + "120": "branch0_seg0", + "121": "branch0_seg0", + "122": "branch0_seg0", + "123": "branch0_seg0", + "124": "branch0_seg0", + "125": "branch0_seg0", + "126": "branch0_seg0", + "127": "branch0_seg0", + "128": "branch0_seg0", + "129": "branch0_seg0", + "130": "branch0_seg0", + "131": "branch0_seg0", + "132": "branch0_seg0", + "133": "branch0_seg0", + "134": "branch0_seg0", + "135": "branch0_seg0", + "136": "branch0_seg0", + "137": "branch0_seg0", + "138": "branch0_seg0", + "139": "branch0_seg0", + "140": "branch0_seg0", + "141": "branch0_seg0", + "142": "branch0_seg0", + "143": "branch0_seg0", + "144": "branch0_seg0", + "145": "branch0_seg0", + "146": "branch0_seg0", + "147": "branch0_seg0", + "148": "branch0_seg0", + "149": "branch0_seg0", + "150": "branch0_seg0", + "151": "branch0_seg0", + "152": "branch0_seg0", + "153": "branch0_seg0", + "154": "branch0_seg0", + "155": "branch0_seg0", + "156": "branch0_seg0", + "157": "branch0_seg0", + "158": "branch0_seg0", + "159": "branch0_seg0", + "160": "branch0_seg0", + "161": "branch0_seg0", + "162": "branch0_seg0", + "163": "branch0_seg0", + "164": "branch0_seg0", + "165": "branch0_seg0", + "166": "branch0_seg0", + "167": "branch0_seg0", + "168": "branch0_seg0", + "169": "branch0_seg0", + "170": "branch0_seg0", + "171": "branch0_seg0", + "172": "branch0_seg0", + "173": "branch0_seg0", + "174": "branch0_seg0", + "175": "branch0_seg0", + "176": "branch0_seg0", + "177": "branch0_seg0", + "178": "branch0_seg0", + "179": "branch0_seg0", + "180": "branch0_seg0", + "181": "branch0_seg0", + "182": "branch0_seg0", + "183": "branch0_seg0", + "184": "branch0_seg0", + "185": "branch0_seg0", + "186": "branch0_seg0", + "187": "branch0_seg0", + "188": "branch0_seg0", + "189": "branch0_seg0", + "190": "branch0_seg0", + "191": "branch0_seg0", + "192": "branch0_seg0", + "193": "branch0_seg0", + "194": "branch0_seg0", + "195": "branch0_seg0", + "196": "branch0_seg0", + "197": "branch0_seg0", + "198": "branch0_seg0", + "199": "branch0_seg0", + "200": "branch0_seg0", + "201": "branch0_seg0", + "202": "branch0_seg0", + "203": "branch0_seg0", + "204": "branch0_seg0", + "205": "branch0_seg0", + "206": "branch0_seg0", + "207": "branch0_seg0", + "208": "branch0_seg0", + "209": "branch0_seg0", + "210": "branch0_seg0", + "211": "branch0_seg0", + "212": "branch0_seg0", + "213": "branch0_seg0", + "214": "branch0_seg0", + "215": "branch0_seg0", + "216": "branch0_seg0", + "217": "branch0_seg0", + "218": "branch0_seg0", + "219": "branch0_seg0", + "220": "branch0_seg0", + "221": "branch0_seg0", + "222": "branch0_seg0", + "223": "branch0_seg0", + "224": "branch0_seg0", + "225": "branch0_seg0", + "226": "branch0_seg0", + "227": "branch0_seg0", + "228": "branch0_seg0", + "229": "branch0_seg0", + "230": "branch0_seg0", + "231": "branch0_seg0", + "232": "branch0_seg0", + "233": "branch0_seg0", + "234": "branch0_seg0", + "235": "branch0_seg0", + "236": "branch0_seg0", + "237": "branch0_seg0", + "238": "branch0_seg0", + "239": "branch0_seg0", + "240": "branch0_seg0", + "241": "branch0_seg0", + "242": "branch0_seg0", + "243": "branch0_seg0", + "244": "branch0_seg0", + "245": "branch0_seg0", + "246": "branch0_seg0", + "247": "branch0_seg0", + "248": "branch0_seg0", + "249": "branch0_seg0", + "250": "branch0_seg0", + "251": "branch0_seg0", + "252": "branch0_seg0", + "253": "branch0_seg0", + "254": "branch0_seg0", + "255": "branch0_seg0", + "256": "branch0_seg0", + "257": "branch0_seg0", + "258": "branch0_seg0", + "259": "branch0_seg0", + "260": "branch0_seg0", + "261": "branch0_seg0", + "262": "branch0_seg0", + "263": "branch0_seg0", + "264": "branch0_seg0", + "265": "branch0_seg0", + "266": "branch0_seg0", + "267": "branch0_seg0", + "268": "branch0_seg0", + "269": "branch0_seg0", + "270": "branch0_seg0", + "271": "branch0_seg0", + "272": "branch0_seg0", + "273": "branch0_seg0", + "274": "branch0_seg0", + "275": "branch0_seg0", + "276": "branch0_seg0", + "277": "branch0_seg0", + "278": "branch0_seg0", + "279": "branch0_seg0", + "280": "branch0_seg0", + "281": "branch0_seg0", + "282": "branch0_seg0", + "283": "branch0_seg0", + "284": "branch0_seg0", + "285": "branch0_seg0", + "286": "branch0_seg0", + "287": "branch0_seg0", + "288": "branch0_seg0", + "289": "branch0_seg0", + "290": "branch0_seg0", + "291": "branch0_seg0", + "292": "branch0_seg0", + "293": "branch0_seg0", + "294": "branch0_seg0", + "295": "branch0_seg0", + "296": "branch0_seg0", + "297": "branch0_seg0", + "298": "branch0_seg0", + "299": "branch0_seg0", + "300": "branch0_seg0", + "301": "branch0_seg0", + "302": "branch0_seg0", + "303": "branch0_seg0", + "304": "branch0_seg0", + "305": "branch0_seg0", + "306": "branch0_seg0", + "307": "branch0_seg0", + "308": "branch0_seg0", + "309": "branch0_seg0", + "310": "branch0_seg0", + "311": "branch0_seg0", + "312": "branch0_seg0", + "313": "branch0_seg0", + "314": "branch0_seg0", + "315": "branch0_seg0", + "316": "branch0_seg0", + "317": "branch0_seg0", + "318": "branch0_seg0", + "319": "branch0_seg0", + "320": "branch0_seg0", + "321": "branch0_seg0", + "322": "branch0_seg0", + "323": "branch0_seg0", + "324": "branch0_seg0", + "325": "branch0_seg0", + "326": "branch0_seg0", + "327": "branch0_seg0", + "328": "branch0_seg0", + "329": "branch0_seg0", + "330": "branch0_seg0", + "331": "branch0_seg0", + "332": "branch0_seg0", + "333": "branch0_seg0", + "334": "branch0_seg0", + "335": "branch0_seg0", + "336": "branch0_seg0", + "337": "branch0_seg0", + "338": "branch0_seg0", + "339": "branch0_seg0", + "340": "branch0_seg0", + "341": "branch0_seg0", + "342": "branch0_seg0", + "343": "branch0_seg0", + "344": "branch0_seg0", + "345": "branch0_seg0", + "346": "branch0_seg0", + "347": "branch0_seg0", + "348": "branch0_seg0", + "349": "branch0_seg0", + "350": "branch0_seg0", + "351": "branch0_seg0", + "352": "branch0_seg0", + "353": "branch0_seg0", + "354": "branch0_seg0", + "355": "branch0_seg0", + "356": "branch0_seg0", + "357": "branch0_seg0", + "358": "branch0_seg0", + "359": "branch0_seg0", + "360": "branch0_seg0", + "361": "branch0_seg0", + "362": "branch0_seg0", + "363": "branch0_seg0", + "364": "branch0_seg0", + "365": "branch0_seg0", + "366": "branch0_seg0", + "367": "branch0_seg0", + "368": "branch0_seg0", + "369": "branch0_seg0", + "370": "branch0_seg0", + "371": "branch0_seg0", + "372": "branch0_seg0", + "373": "branch0_seg0", + "374": "branch0_seg0", + "375": "branch0_seg0", + "376": "branch0_seg0", + "377": "branch0_seg0", + "378": "branch0_seg0", + "379": "branch0_seg0", + "380": "branch0_seg0", + "381": "branch0_seg0", + "382": "branch0_seg0", + "383": "branch0_seg0", + "384": "branch0_seg0", + "385": "branch0_seg0", + "386": "branch0_seg0", + "387": "branch0_seg0", + "388": "branch0_seg0", + "389": "branch0_seg0", + "390": "branch0_seg0", + "391": "branch0_seg0", + "392": "branch0_seg0", + "393": "branch0_seg0", + "394": "branch0_seg0", + "395": "branch0_seg0", + "396": "branch0_seg0", + "397": "branch0_seg0", + "398": "branch0_seg0", + "399": "branch0_seg0", + "400": "branch0_seg0", + "401": "branch0_seg0", + "402": "branch0_seg0", + "403": "branch0_seg0", + "404": "branch0_seg0", + "405": "branch0_seg0", + "406": "branch0_seg0", + "407": "branch0_seg0", + "408": "branch0_seg0", + "409": "branch0_seg0", + "410": "branch0_seg0", + "411": "branch0_seg0", + "412": "branch0_seg0", + "413": "branch0_seg0", + "414": "branch0_seg0", + "415": "branch0_seg0", + "416": "branch0_seg0", + "417": "branch0_seg0", + "418": "branch0_seg0", + "419": "branch0_seg0", + "420": "branch0_seg0", + "421": "branch0_seg0", + "422": "branch0_seg0", + "423": "branch0_seg0", + "424": "branch0_seg0", + "425": "branch0_seg0", + "426": "branch0_seg0", + "427": "branch0_seg0", + "428": "branch0_seg0", + "429": "branch0_seg0", + "430": "branch0_seg0", + "431": "branch0_seg0", + "432": "branch0_seg0", + "433": "branch0_seg0", + "434": "branch0_seg0", + "435": "branch0_seg0", + "436": "branch0_seg0", + "437": "branch0_seg0", + "438": "branch0_seg0", + "439": "branch0_seg0", + "440": "branch0_seg0", + "441": "branch0_seg0", + "442": "branch0_seg0", + "443": "branch0_seg0", + "444": "branch0_seg0", + "445": "branch0_seg0", + "446": "branch0_seg0", + "447": "branch0_seg0", + "448": "branch0_seg0", + "449": "branch0_seg0", + "450": "branch0_seg0", + "451": "branch0_seg0", + "452": "branch0_seg0", + "453": "branch0_seg0", + "454": "branch0_seg0", + "455": "branch0_seg0", + "456": "branch0_seg0", + "457": "branch0_seg0", + "458": "branch0_seg0", + "459": "branch0_seg0", + "460": "branch0_seg0", + "461": "branch0_seg0", + "462": "branch0_seg0", + "463": "branch0_seg0", + "464": "branch0_seg0", + "465": "branch0_seg0", + "466": "branch0_seg0", + "467": "branch0_seg0", + "468": "branch0_seg0", + "469": "branch0_seg0", + "470": "branch0_seg0", + "471": "branch0_seg0", + "472": "branch0_seg0", + "473": "branch0_seg0", + "474": "branch0_seg0", + "475": "branch0_seg0", + "476": "branch0_seg0", + "477": "branch0_seg0", + "478": "branch0_seg0", + "479": "branch0_seg0", + "480": "branch0_seg0", + "481": "branch0_seg0", + "482": "branch0_seg0", + "483": "branch0_seg0", + "484": "branch0_seg0", + "485": "branch0_seg0", + "486": "branch0_seg0", + "487": "branch0_seg0", + "488": "branch0_seg0", + "489": "branch0_seg0", + "490": "branch0_seg0", + "491": "branch0_seg0", + "492": "branch0_seg0", + "493": "branch0_seg0", + "494": "branch0_seg0", + "495": "branch0_seg0", + "496": "branch0_seg0", + "497": "branch0_seg0", + "498": "branch0_seg0", + "499": "branch0_seg0", + "500": "branch0_seg0", + "501": "branch0_seg0", + "502": "branch0_seg0", + "503": "branch0_seg0", + "504": "branch0_seg0", + "505": "branch0_seg0", + "506": "branch0_seg0", + "507": "branch0_seg0", + "508": "branch0_seg0", + "509": "branch0_seg0", + "510": "branch0_seg0", + "511": "branch0_seg0", + "512": "branch0_seg0", + "513": "branch0_seg0", + "514": "branch0_seg0", + "515": "branch0_seg0", + "516": "branch0_seg0", + "517": "branch0_seg0", + "518": "branch0_seg0", + "519": "branch0_seg0", + "520": "branch0_seg0", + "521": "branch0_seg0", + "522": "branch0_seg0", + "523": "branch0_seg0", + "524": "branch0_seg0", + "525": "branch0_seg0", + "526": "branch0_seg0", + "527": "branch0_seg0", + "528": "branch0_seg0", + "529": "branch0_seg0", + "530": "branch0_seg0", + "531": "branch0_seg0", + "532": "branch0_seg0", + "533": "branch0_seg0", + "534": "branch0_seg0", + "535": "branch0_seg0", + "536": "branch0_seg0", + "537": "branch0_seg0", + "538": "branch0_seg0", + "539": "branch0_seg0", + "540": "branch0_seg0", + "541": "branch0_seg0", + "542": "branch0_seg0", + "543": "branch0_seg0", + "544": "branch0_seg0", + "545": "branch0_seg0", + "546": "branch0_seg0", + "547": "branch0_seg0", + "548": "branch0_seg0", + "549": "branch0_seg0", + "550": "branch0_seg0", + "551": "branch0_seg0", + "552": "branch0_seg0", + "553": "branch0_seg0", + "554": "branch0_seg0", + "555": "branch0_seg0", + "556": "branch0_seg0", + "557": "branch0_seg0", + "558": "branch0_seg0", + "559": "branch0_seg0", + "560": "branch0_seg0", + "561": "branch0_seg0", + "562": "branch0_seg0", + "563": "branch0_seg0", + "564": "branch0_seg0", + "565": "branch0_seg0", + "566": "branch0_seg0", + "567": "branch0_seg0", + "568": "branch0_seg0", + "569": "branch0_seg0", + "570": "branch0_seg0", + "571": "branch0_seg0", + "572": "branch0_seg0", + "573": "branch0_seg0", + "574": "branch0_seg0", + "575": "branch0_seg0", + "576": "branch0_seg0", + "577": "branch0_seg0", + "578": "branch0_seg0", + "579": "branch0_seg0", + "580": "branch0_seg0", + "581": "branch0_seg0", + "582": "branch0_seg0", + "583": "branch0_seg0", + "584": "branch0_seg0", + "585": "branch0_seg0", + "586": "branch0_seg0", + "587": "branch0_seg0", + "588": "branch0_seg0", + "589": "branch0_seg0", + "590": "branch0_seg0", + "591": "branch0_seg0", + "592": "branch0_seg0", + "593": "branch0_seg0", + "594": "branch0_seg0", + "595": "branch0_seg0", + "596": "branch0_seg0", + "597": "branch0_seg0", + "598": "branch0_seg0", + "599": "branch0_seg0", + "600": "branch0_seg0", + "601": "branch0_seg0", + "602": "branch0_seg0", + "603": "branch0_seg0", + "604": "branch0_seg0", + "605": "branch0_seg0", + "606": "branch0_seg0", + "607": "branch0_seg0", + "608": "branch0_seg0", + "609": "branch0_seg0", + "610": "branch0_seg0", + "611": "branch0_seg0", + "612": "branch0_seg0", + "613": "branch0_seg0", + "614": "branch0_seg0", + "615": "branch0_seg0", + "616": "branch0_seg0", + "617": "branch0_seg0", + "618": "branch0_seg0", + "619": "branch0_seg0", + "620": "branch0_seg0", + "621": "branch0_seg0", + "622": "branch0_seg0", + "623": "branch0_seg0", + "624": "branch0_seg0", + "625": "branch0_seg0", + "626": "branch0_seg0", + "627": "branch0_seg0", + "628": "branch0_seg0", + "629": "branch0_seg0", + "630": "branch0_seg0", + "631": "branch0_seg0", + "632": "branch0_seg0", + "633": "branch0_seg0", + "634": "branch0_seg0", + "635": "branch0_seg0", + "636": "branch0_seg0", + "637": "branch0_seg0", + "638": "branch0_seg0", + "639": "branch0_seg0", + "640": "branch0_seg0", + "641": "branch0_seg0", + "642": "branch0_seg0", + "643": "branch0_seg0", + "644": "branch0_seg0", + "645": "branch0_seg0", + "646": "branch0_seg0", + "647": "branch0_seg0", + "648": "branch0_seg0", + "649": "branch0_seg0", + "650": "branch0_seg0", + "651": "branch0_seg0", + "652": "branch0_seg0", + "653": "branch0_seg0", + "654": "branch0_seg0", + "655": "branch0_seg0", + "656": "branch0_seg0", + "657": "branch0_seg0", + "658": "branch0_seg0", + "659": "branch0_seg0", + "660": "branch0_seg0", + "661": "branch0_seg0", + "662": "branch0_seg0", + "663": "branch0_seg0", + "664": "branch0_seg0", + "665": "branch0_seg0", + "666": "branch0_seg0", + "667": "branch0_seg0", + "668": "branch0_seg0", + "669": "branch0_seg0", + "670": "branch0_seg0", + "671": "branch0_seg0", + "672": "branch0_seg0", + "673": "branch0_seg0", + "674": "branch0_seg0", + "675": "branch0_seg0", + "676": "branch0_seg0", + "677": "branch0_seg0", + "678": "branch0_seg0", + "679": "branch0_seg0", + "680": "branch0_seg0", + "681": "branch0_seg0", + "682": "branch0_seg0", + "683": "branch0_seg0", + "684": "branch0_seg0", + "685": "branch0_seg0", + "686": "branch0_seg0", + "687": "branch0_seg0", + "688": "branch0_seg0", + "689": "branch0_seg0", + "690": "branch0_seg0", + "691": "branch0_seg0", + "692": "branch0_seg0", + "693": "branch0_seg0", + "694": "branch0_seg0", + "695": "branch0_seg0", + "696": "branch0_seg0", + "697": "branch0_seg0", + "698": "branch0_seg0", + "699": "branch0_seg0", + "700": "branch0_seg0", + "701": "branch0_seg0", + "702": "branch0_seg0", + "703": "branch0_seg0", + "704": "branch0_seg0", + "705": "branch0_seg0", + "706": "branch0_seg0", + "707": "branch0_seg0", + "708": "branch0_seg0", + "709": "branch0_seg0", + "710": "branch0_seg0", + "711": "branch0_seg0", + "712": "branch0_seg0", + "713": "branch0_seg0", + "714": "branch0_seg0", + "715": "branch0_seg0", + "716": "branch0_seg0", + "717": "branch0_seg0", + "718": "branch0_seg0", + "719": "branch0_seg0", + "720": "branch0_seg0", + "721": "branch0_seg0", + "722": "branch0_seg0", + "723": "branch0_seg0", + "724": "branch0_seg0", + "725": "branch0_seg0", + "726": "branch0_seg0", + "727": "branch0_seg0", + "728": "branch0_seg0", + "729": "branch0_seg0", + "730": "branch0_seg0", + "731": "branch0_seg0", + "732": "branch0_seg0", + "733": "branch0_seg0", + "734": "branch0_seg0", + "735": "branch0_seg0", + "736": "branch0_seg0", + "737": "branch0_seg0", + "738": "branch0_seg0", + "739": "branch0_seg0", + "740": "branch0_seg0", + "741": "branch0_seg0", + "742": "branch0_seg0", + "743": "branch0_seg0", + "744": "branch0_seg0", + "745": "branch0_seg0", + "746": "branch0_seg0", + "747": "branch0_seg0", + "748": "branch0_seg0", + "749": "branch0_seg0", + "750": "branch0_seg0", + "751": "branch0_seg0", + "752": "branch0_seg0", + "753": "branch0_seg0", + "754": "branch0_seg0", + "755": "branch0_seg0", + "756": "branch0_seg0", + "757": "branch0_seg0", + "758": "branch0_seg0", + "759": "branch0_seg0", + "760": "branch0_seg0", + "761": "branch0_seg0", + "762": "branch0_seg0", + "763": "branch0_seg0", + "764": "branch0_seg0", + "765": "branch0_seg0", + "766": "branch0_seg0", + "767": "branch0_seg0", + "768": "branch0_seg0", + "769": "branch0_seg0", + "770": "branch0_seg0", + "771": "branch0_seg0", + "772": "branch0_seg0", + "773": "branch0_seg0", + "774": "branch0_seg0", + "775": "branch0_seg0", + "776": "branch0_seg0", + "777": "branch0_seg0", + "778": "branch0_seg0", + "779": "branch0_seg0", + "780": "branch0_seg0", + "781": "branch0_seg0", + "782": "branch0_seg0", + "783": "branch0_seg0", + "784": "branch0_seg0", + "785": "branch0_seg0", + "786": "branch0_seg0", + "787": "branch0_seg0", + "788": "branch0_seg0", + "789": "branch0_seg0", + "790": "branch0_seg0", + "791": "branch0_seg0", + "792": "branch0_seg0", + "793": "branch0_seg0", + "794": "branch0_seg0", + "795": "branch0_seg0", + "796": "branch0_seg0", + "797": "branch0_seg0", + "798": "branch0_seg0", + "799": "branch0_seg0", + "800": "branch0_seg0", + "801": "branch0_seg0", + "802": "branch0_seg0", + "803": "branch0_seg0", + "804": "branch0_seg0", + "805": "branch0_seg0", + "806": "branch0_seg0", + "807": "branch0_seg0", + "808": "branch0_seg0", + "809": "branch0_seg0", + "810": "branch0_seg0", + "811": "branch0_seg0", + "812": "branch0_seg0", + "813": "branch0_seg0", + "814": "branch0_seg0", + "815": "branch0_seg0", + "816": "branch0_seg0", + "817": "branch0_seg0", + "818": "branch0_seg0", + "819": "branch0_seg0", + "820": "branch0_seg0", + "821": "branch0_seg0", + "822": "branch0_seg0", + "823": "branch0_seg0", + "824": "branch0_seg0", + "825": "branch0_seg0", + "826": "branch0_seg0", + "827": "branch0_seg0", + "828": "branch0_seg0", + "829": "branch0_seg0", + "830": "branch0_seg0", + "831": "branch0_seg0", + "832": "branch0_seg0", + "833": "branch0_seg0", + "834": "branch0_seg0", + "835": "branch0_seg0", + "836": "branch0_seg0", + "837": "branch0_seg0", + "838": "branch0_seg0", + "839": "branch0_seg0", + "840": "branch0_seg0", + "841": "branch0_seg0", + "842": "branch0_seg0", + "843": "branch0_seg0", + "844": "branch0_seg0", + "845": "branch0_seg0", + "846": "branch0_seg0", + "847": "branch0_seg0", + "848": "branch0_seg0", + "849": "branch0_seg0", + "850": "branch0_seg0", + "851": "branch0_seg0", + "852": "branch0_seg0", + "853": "branch0_seg0", + "854": "branch0_seg0", + "855": "branch0_seg0", + "856": "branch0_seg0", + "857": "branch0_seg0", + "858": "branch0_seg0", + "859": "branch0_seg0", + "860": "branch0_seg0", + "861": "branch0_seg0", + "862": "branch0_seg0", + "863": "branch0_seg0", + "864": "branch0_seg0", + "865": "branch0_seg0", + "866": "branch0_seg0", + "867": "branch0_seg0", + "868": "branch0_seg0", + "869": "branch0_seg0", + "870": "branch0_seg0", + "871": "branch0_seg0", + "872": "branch0_seg0", + "873": "branch0_seg0", + "874": "branch0_seg0", + "875": "branch0_seg0", + "876": "branch0_seg0", + "877": "branch0_seg0", + "878": "branch0_seg0", + "879": "branch0_seg0", + "880": "branch0_seg0", + "881": "branch0_seg0", + "882": "branch0_seg0", + "883": "branch0_seg0", + "884": "branch0_seg0", + "885": "branch0_seg0", + "886": "branch0_seg0", + "887": "branch0_seg0", + "888": "branch0_seg0", + "889": "branch0_seg0", + "890": "branch0_seg0", + "891": "branch0_seg0", + "892": "branch0_seg0", + "893": "branch0_seg0", + "894": "branch0_seg0", + "895": "branch0_seg0", + "896": "branch0_seg0", + "897": "branch0_seg0", + "898": "branch0_seg0", + "899": "branch0_seg0", + "900": "branch0_seg0", + "901": "branch0_seg0", + "902": "branch0_seg0", + "903": "branch0_seg0", + "904": "branch0_seg0", + "905": "branch0_seg0", + "906": "branch0_seg0", + "907": "branch0_seg0", + "908": "branch0_seg0", + "909": "branch0_seg0", + "910": "branch0_seg0", + "911": "branch0_seg0", + "912": "branch0_seg0", + "913": "branch0_seg0", + "914": "branch0_seg0", + "915": "branch0_seg0", + "916": "branch0_seg0", + "917": "branch0_seg0", + "918": "branch0_seg0", + "919": "branch0_seg0", + "920": "branch0_seg0", + "921": "branch0_seg0", + "922": "branch0_seg0", + "923": "branch0_seg0", + "924": "branch0_seg0", + "925": "branch0_seg0", + "926": "branch0_seg0", + "927": "branch0_seg0", + "928": "branch0_seg0", + "929": "branch0_seg0", + "930": "branch0_seg0", + "931": "branch0_seg0", + "932": "branch0_seg0", + "933": "branch0_seg0", + "934": "branch0_seg0", + "935": "branch0_seg0", + "936": "branch0_seg0", + "937": "branch0_seg0", + "938": "branch0_seg0", + "939": "branch0_seg0", + "940": "branch0_seg0", + "941": "branch0_seg0", + "942": "branch0_seg0", + "943": "branch0_seg0", + "944": "branch0_seg0", + "945": "branch0_seg0", + "946": "branch0_seg0", + "947": "branch0_seg0", + "948": "branch0_seg0", + "949": "branch0_seg0", + "950": "branch0_seg0", + "951": "branch0_seg0", + "952": "branch0_seg0", + "953": "branch0_seg0", + "954": "branch0_seg0", + "955": "branch0_seg0", + "956": "branch0_seg0", + "957": "branch0_seg0", + "958": "branch0_seg0", + "959": "branch0_seg0", + "960": "branch0_seg0", + "961": "branch0_seg0", + "962": "branch0_seg0", + "963": "branch0_seg0", + "964": "branch0_seg0", + "965": "branch0_seg0", + "966": "branch0_seg0", + "967": "branch0_seg0", + "968": "branch0_seg0", + "969": "branch0_seg0", + "970": "branch0_seg0", + "971": "branch0_seg0", + "972": "branch0_seg0", + "973": "branch0_seg0", + "974": "branch0_seg0", + "975": "branch0_seg0", + "976": "branch0_seg0", + "977": "branch0_seg0", + "978": "branch0_seg0", + "979": "branch0_seg0", + "980": "branch0_seg0", + "981": "branch0_seg0", + "982": "branch0_seg0", + "983": "branch0_seg0", + "984": "branch0_seg0", + "985": "branch0_seg0", + "986": "branch0_seg0", + "987": "branch0_seg0", + "988": "branch0_seg0", + "989": "branch0_seg0", + "990": "branch0_seg0", + "991": "branch0_seg0", + "992": "branch0_seg0", + "993": "branch0_seg0", + "994": "branch0_seg0", + "995": "branch0_seg0", + "996": "branch0_seg0", + "997": "branch0_seg0", + "998": "branch0_seg0", + "999": "branch0_seg0", + "1000": "branch0_seg0", + "1001": "branch0_seg0", + "1002": "branch0_seg0", + "1003": "branch0_seg0", + "1004": "branch0_seg0", + "1005": "branch0_seg0", + "1006": "branch0_seg0", + "1007": "branch0_seg0", + "1008": "branch0_seg0", + "1009": "branch0_seg0", + "1010": "branch0_seg0", + "1011": "branch0_seg0", + "1012": "branch0_seg0", + "1013": "branch0_seg0", + "1014": "branch0_seg0", + "1015": "branch0_seg0", + "1016": "branch0_seg0", + "1017": "branch0_seg0", + "1018": "branch0_seg0", + "1019": "branch0_seg0", + "1020": "branch0_seg0", + "1021": "branch0_seg0", + "1022": "branch0_seg0", + "1023": "branch0_seg0", + "1024": "branch0_seg0", + "1025": "branch0_seg0", + "1026": "branch0_seg0", + "1027": "branch0_seg0", + "1028": "branch0_seg0", + "1029": "branch0_seg0", + "1030": "branch0_seg0", + "1031": "branch0_seg0", + "1032": "branch0_seg0", + "1033": "branch0_seg0", + "1034": "branch0_seg0", + "1035": "branch0_seg0", + "1036": "branch0_seg0", + "1037": "branch0_seg0", + "1038": "branch0_seg0", + "1039": "branch0_seg0", + "1040": "branch0_seg0", + "1041": "branch0_seg0", + "1042": "branch0_seg0", + "1043": "branch0_seg0", + "1044": "branch0_seg0", + "1045": "branch0_seg0", + "1046": "branch0_seg0", + "1047": "branch0_seg0", + "1048": "branch0_seg0", + "1049": "branch0_seg0", + "1050": "branch0_seg0", + "1051": "branch0_seg0", + "1052": "branch0_seg0", + "1053": "branch0_seg0", + "1054": "branch0_seg0", + "1055": "branch0_seg0", + "1056": "branch0_seg0", + "1057": "branch0_seg0", + "1058": "branch0_seg0", + "1059": "branch0_seg0", + "1060": "branch0_seg0", + "1061": "branch0_seg0", + "1062": "branch0_seg0", + "1063": "branch0_seg0", + "1064": "branch0_seg0", + "1065": "branch0_seg0", + "1066": "branch0_seg0", + "1067": "branch0_seg0", + "1068": "branch0_seg0", + "1069": "branch0_seg0", + "1070": "branch0_seg0", + "1071": "branch0_seg0", + "1072": "branch0_seg0", + "1073": "branch0_seg0", + "1074": "branch0_seg0", + "1075": "branch0_seg0", + "1076": "branch0_seg0", + "1077": "branch0_seg0", + "1078": "branch0_seg0", + "1079": "branch0_seg0", + "1080": "branch0_seg0", + "1081": "branch0_seg0", + "1082": "branch0_seg0", + "1083": "branch0_seg0", + "1084": "branch0_seg0", + "1085": "branch0_seg0", + "1086": "branch0_seg0", + "1087": "branch0_seg0", + "1088": "branch0_seg0", + "1089": "branch0_seg0", + "1090": "branch0_seg0", + "1091": "branch0_seg0", + "1092": "branch0_seg0", + "1093": "branch0_seg0", + "1094": "branch0_seg0", + "1095": "branch0_seg0", + "1096": "branch0_seg0", + "1097": "branch0_seg0", + "1098": "branch0_seg0", + "1099": "branch0_seg0", + "1100": "branch0_seg0", + "1101": "branch0_seg0", + "1102": "branch0_seg0", + "1103": "branch0_seg0", + "1104": "branch0_seg0", + "1105": "branch0_seg0", + "1106": "branch0_seg0", + "1107": "branch0_seg0", + "1108": "branch0_seg0", + "1109": "branch0_seg0", + "1110": "branch0_seg0", + "1111": "branch0_seg0", + "1112": "branch0_seg0", + "1113": "branch0_seg0", + "1114": "branch0_seg0", + "1115": "branch0_seg0", + "1116": "branch0_seg0", + "1117": "branch0_seg0", + "1118": "branch0_seg0", + "1119": "branch0_seg0", + "1120": "branch0_seg0", + "1121": "branch0_seg0", + "1122": "branch0_seg0", + "1123": "branch0_seg0", + "1124": "branch0_seg0", + "1125": "branch0_seg0", + "1126": "branch0_seg0", + "1127": "branch0_seg0", + "1128": "branch0_seg0", + "1129": "branch0_seg0", + "1130": "branch0_seg0", + "1131": "branch0_seg0", + "1132": "branch0_seg0", + "1133": "branch0_seg0", + "1134": "branch0_seg0", + "1135": "branch0_seg0", + "1136": "branch0_seg0", + "1137": "branch0_seg0", + "1138": "branch0_seg0", + "1139": "branch0_seg0", + "1140": "branch0_seg0", + "1141": "branch0_seg0", + "1142": "branch0_seg0", + "1143": "branch0_seg0", + "1144": "branch0_seg0", + "1145": "branch0_seg0", + "1146": "branch0_seg0", + "1147": "branch0_seg0", + "1148": "branch0_seg0", + "1149": "branch0_seg0", + "1150": "branch0_seg0", + "1151": "branch0_seg0", + "1152": "branch0_seg0", + "1153": "branch0_seg0", + "1154": "branch0_seg0", + "1155": "branch0_seg0", + "1156": "branch0_seg0", + "1157": "branch0_seg0", + "1158": "branch0_seg0", + "1159": "branch0_seg0", + "1160": "branch0_seg0", + "1161": "branch0_seg0", + "1162": "branch0_seg0", + "1163": "branch0_seg0", + "1164": "branch0_seg0", + "1165": "branch0_seg0", + "1166": "branch0_seg0", + "1167": "branch0_seg0", + "1168": "branch0_seg0", + "1169": "branch0_seg0", + "1170": "branch0_seg0", + "1171": "branch0_seg0", + "1172": "branch0_seg0", + "1173": "branch0_seg0", + "1174": "branch0_seg0", + "1175": "branch0_seg0", + "1176": "branch0_seg0", + "1177": "branch0_seg0", + "1178": "branch0_seg0", + "1179": "branch0_seg0", + "1180": "branch0_seg0", + "1181": "branch0_seg0", + "1182": "branch0_seg0", + "1183": "branch0_seg0", + "1184": "branch0_seg0", + "1185": "branch0_seg0", + "1186": "branch0_seg0", + "1187": "branch0_seg0", + "1188": "branch0_seg0", + "1189": "branch0_seg0", + "1190": "branch0_seg0", + "1191": "branch0_seg0", + "1192": "branch0_seg0", + "1193": "branch0_seg0", + "1194": "branch0_seg0", + "1195": "branch0_seg0", + "1196": "branch0_seg0", + "1197": "branch0_seg0", + "1198": "branch0_seg0", + "1199": "branch0_seg0", + "1200": "branch0_seg0", + "1201": "branch0_seg0", + "1202": "branch0_seg0", + "1203": "branch0_seg0", + "1204": "branch0_seg0", + "1205": "branch0_seg0", + "1206": "branch0_seg0", + "1207": "branch0_seg0", + "1208": "branch0_seg0", + "1209": "branch0_seg0", + "1210": "branch0_seg0", + "1211": "branch0_seg0", + "1212": "branch0_seg0", + "1213": "branch0_seg0", + "1214": "branch0_seg0", + "1215": "branch0_seg0", + "1216": "branch0_seg0", + "1217": "branch0_seg0", + "1218": "branch0_seg0", + "1219": "branch0_seg0", + "1220": "branch0_seg0", + "1221": "branch0_seg0", + "1222": "branch0_seg0", + "1223": "branch0_seg0", + "1224": "branch0_seg0", + "1225": "branch0_seg0", + "1226": "branch0_seg0", + "1227": "branch0_seg0", + "1228": "branch0_seg0", + "1229": "branch0_seg0", + "1230": "branch0_seg0", + "1231": "branch0_seg0", + "1232": "branch0_seg0", + "1233": "branch0_seg0", + "1234": "branch0_seg0", + "1235": "branch0_seg0", + "1236": "branch0_seg0", + "1237": "branch0_seg0", + "1238": "branch0_seg0", + "1239": "branch0_seg0", + "1240": "branch0_seg0", + "1241": "branch0_seg0", + "1242": "branch0_seg0", + "1243": "branch0_seg0", + "1244": "branch0_seg0", + "1245": "branch0_seg0", + "1246": "branch0_seg0", + "1247": "branch0_seg0", + "1248": "branch0_seg0", + "1249": "branch0_seg0", + "1250": "branch0_seg0", + "1251": "branch0_seg0", + "1252": "branch0_seg0", + "1253": "branch0_seg0", + "1254": "branch0_seg0", + "1255": "branch0_seg0", + "1256": "branch0_seg0", + "1257": "branch0_seg0", + "1258": "branch0_seg0", + "1259": "branch0_seg0", + "1260": "branch0_seg0", + "1261": "branch0_seg0", + "1262": "branch0_seg0", + "1263": "branch0_seg0", + "1264": "branch0_seg0", + "1265": "branch0_seg0", + "1266": "branch0_seg0", + "1267": "branch0_seg0", + "1268": "branch0_seg0", + "1269": "branch0_seg0", + "1270": "branch0_seg0", + "1271": "branch0_seg0", + "1272": "branch0_seg0", + "1273": "branch0_seg0", + "1274": "branch0_seg0", + "1275": "branch0_seg0", + "1276": "branch0_seg0", + "1277": "branch0_seg0", + "1278": "branch0_seg0", + "1279": "branch0_seg0", + "1280": "branch0_seg0", + "1281": "branch0_seg0", + "1282": "branch0_seg0", + "1283": "branch0_seg0", + "1284": "branch0_seg0", + "1285": "branch0_seg0", + "1286": "branch0_seg0", + "1287": "branch0_seg0", + "1288": "branch0_seg0", + "1289": "branch0_seg0", + "1290": "branch0_seg0", + "1291": "branch0_seg0", + "1292": "branch0_seg0", + "1293": "branch0_seg0", + "1294": "branch0_seg0", + "1295": "branch0_seg0", + "1296": "branch0_seg0", + "1297": "branch0_seg0", + "1298": "branch0_seg0", + "1299": "branch0_seg0", + "1300": "branch0_seg0", + "1301": "branch0_seg0", + "1302": "branch0_seg0", + "1303": "branch0_seg0", + "1304": "branch0_seg0", + "1305": "branch0_seg0", + "1306": "branch0_seg0", + "1307": "branch0_seg0", + "1308": "branch0_seg0", + "1309": "branch0_seg0", + "1310": "branch0_seg0", + "1311": "branch0_seg0", + "1312": "branch0_seg0", + "1313": "branch0_seg0", + "1314": "branch0_seg0", + "1315": "branch0_seg0", + "1316": "branch0_seg0", + "1317": "branch0_seg0", + "1318": "branch0_seg0", + "1319": "branch0_seg0", + "1320": "branch0_seg0", + "1321": "branch0_seg0", + "1322": "branch0_seg0", + "1323": "branch0_seg0", + "1324": "branch0_seg0", + "1325": "branch0_seg0", + "1326": "branch0_seg0", + "1327": "branch0_seg0", + "1328": "branch0_seg0", + "1329": "branch0_seg0", + "1330": "branch0_seg0", + "1331": "branch0_seg0", + "1332": "branch0_seg0", + "1333": "branch0_seg0", + "1334": "branch0_seg0", + "1335": "branch0_seg0", + "1336": "branch0_seg0", + "1337": "branch0_seg0", + "1338": "branch0_seg0", + "1339": "branch0_seg0", + "1340": "branch0_seg0", + "1341": "branch0_seg0", + "1342": "branch0_seg0", + "1343": "branch0_seg0", + "1344": "branch0_seg0", + "1345": "branch0_seg0", + "1346": "branch0_seg0", + "1347": "branch0_seg0", + "1348": "branch0_seg0", + "1349": "branch0_seg0", + "1350": "branch0_seg0", + "1351": "branch0_seg0", + "1352": "branch0_seg0", + "1353": "branch0_seg0", + "1354": "branch0_seg0", + "1355": "branch0_seg0", + "1356": "branch0_seg0", + "1357": "branch0_seg0", + "1358": "branch0_seg0", + "1359": "branch0_seg0", + "1360": "branch0_seg0", + "1361": "branch0_seg0", + "1362": "branch0_seg0", + "1363": "branch0_seg0", + "1364": "branch0_seg0", + "1365": "branch0_seg0", + "1366": "branch0_seg0", + "1367": "branch0_seg0", + "1368": "branch0_seg0", + "1369": "branch0_seg0", + "1370": "branch0_seg0", + "1371": "branch0_seg0", + "1372": "branch0_seg0", + "1373": "branch0_seg0", + "1374": "branch0_seg0", + "1375": "branch0_seg0", + "1376": "branch0_seg0", + "1377": "branch0_seg0", + "1378": "branch0_seg0", + "1379": "branch0_seg0", + "1380": "branch0_seg0", + "1381": "branch0_seg0", + "1382": "branch0_seg0", + "1383": "branch0_seg0", + "1384": "branch0_seg0", + "1385": "branch0_seg0", + "1386": "branch0_seg0", + "1387": "branch0_seg0", + "1388": "branch0_seg0", + "1389": "branch0_seg0", + "1390": "branch0_seg0", + "1391": "branch0_seg0", + "1392": "branch0_seg0", + "1393": "branch0_seg0", + "1394": "branch0_seg0", + "1395": "branch0_seg0", + "1396": "branch0_seg0", + "1397": "branch0_seg0", + "1398": "branch0_seg0", + "1399": "branch0_seg0", + "1400": "branch0_seg0", + "1401": "branch0_seg0", + "1402": "branch0_seg0", + "1403": "branch0_seg0", + "1404": "branch0_seg0", + "1405": "branch0_seg0", + "1406": "branch0_seg0", + "1407": "branch0_seg0", + "1408": "branch0_seg0", + "1409": "branch0_seg0", + "1410": "branch0_seg0", + "1411": "branch0_seg0", + "1412": "branch0_seg0", + "1413": "branch0_seg0", + "1414": "branch0_seg0", + "1415": "branch0_seg0", + "1416": "branch0_seg0", + "1417": "branch0_seg0", + "1418": "branch0_seg0", + "1419": "branch0_seg0", + "1420": "branch0_seg0", + "1421": "branch0_seg0", + "1422": "branch0_seg0", + "1423": "branch0_seg0", + "1424": "branch0_seg0", + "1425": "branch0_seg0", + "1426": "branch0_seg0", + "1427": "branch0_seg0", + "1428": "branch0_seg0", + "1429": "branch0_seg0", + "1430": "branch0_seg0", + "1431": "branch0_seg0", + "1432": "branch0_seg0", + "1433": "branch0_seg0", + "1434": "branch0_seg0", + "1435": "branch0_seg0", + "1436": "branch0_seg0", + "1437": "branch0_seg0", + "1438": "branch0_seg0", + "1439": "branch0_seg0", + "1440": "branch0_seg0", + "1441": "branch0_seg0", + "1442": "branch0_seg0", + "1443": "branch0_seg0", + "1444": "branch0_seg0", + "1445": "branch0_seg0", + "1446": "branch0_seg0", + "1447": "branch0_seg0", + "1448": "branch0_seg0", + "1449": "branch0_seg0", + "1450": "branch0_seg0", + "1451": "branch0_seg0", + "1452": "branch0_seg0", + "1453": "branch0_seg0", + "1454": "branch0_seg0", + "1455": "branch0_seg0", + "1456": "branch0_seg0", + "1457": "branch0_seg0", + "1458": "branch0_seg0", + "1459": "branch0_seg0", + "1460": "branch0_seg0", + "1461": "branch0_seg0", + "1462": "branch0_seg0", + "1463": "branch0_seg0", + "1464": "branch0_seg0", + "1465": "branch0_seg0", + "1466": "branch0_seg0", + "1467": "branch0_seg0", + "1468": "branch0_seg0", + "1469": "branch0_seg0", + "1470": "branch0_seg0", + "1471": "branch0_seg0", + "1472": "branch0_seg0", + "1473": "branch0_seg0", + "1474": "branch0_seg0", + "1475": "branch0_seg0", + "1476": "branch0_seg0", + "1477": "branch0_seg0", + "1478": "branch0_seg0", + "1479": "branch0_seg0", + "1480": "branch0_seg0", + "1481": "branch0_seg0", + "1482": "branch0_seg0", + "1483": "branch0_seg0", + "1484": "branch0_seg0", + "1485": "branch0_seg0", + "1486": "branch0_seg0", + "1487": "branch0_seg0", + "1488": "branch0_seg0", + "1489": "branch0_seg0", + "1490": "branch0_seg0", + "1491": "branch0_seg0", + "1492": "branch0_seg0", + "1493": "branch0_seg0", + "1494": "branch0_seg0", + "1495": "branch0_seg0", + "1496": "branch0_seg0", + "1497": "branch0_seg0", + "1498": "branch0_seg0", + "1499": "branch0_seg0", + "1500": "branch0_seg0", + "1501": "branch0_seg0", + "1502": "branch0_seg0", + "1503": "branch0_seg0", + "1504": "branch0_seg0", + "1505": "branch0_seg0", + "1506": "branch0_seg0", + "1507": "branch0_seg0", + "1508": "branch0_seg0", + "1509": "branch0_seg0", + "1510": "branch0_seg0", + "1511": "branch0_seg0", + "1512": "branch0_seg0", + "1513": "branch0_seg0", + "1514": "branch0_seg0", + "1515": "branch0_seg0", + "1516": "branch0_seg0", + "1517": "branch0_seg0", + "1518": "branch0_seg0", + "1519": "branch0_seg0", + "1520": "branch0_seg0", + "1521": "branch0_seg0", + "1522": "branch0_seg0", + "1523": "branch0_seg0", + "1524": "branch0_seg0", + "1525": "branch0_seg0", + "1526": "branch0_seg0", + "1527": "branch0_seg0", + "1528": "branch0_seg0", + "1529": "branch0_seg0", + "1530": "branch0_seg0", + "1531": "branch0_seg0", + "1532": "branch0_seg0", + "1533": "branch0_seg0", + "1534": "branch0_seg0", + "1535": "branch0_seg0", + "1536": "branch0_seg0", + "1537": "branch0_seg0", + "1538": "branch0_seg0", + "1539": "branch0_seg0", + "1540": "branch0_seg0", + "1541": "branch0_seg0", + "1542": "branch0_seg0", + "1543": "branch0_seg0", + "1544": "branch0_seg0", + "1545": "branch0_seg0", + "1546": "branch0_seg0", + "1547": "branch0_seg0", + "1548": "branch0_seg0", + "1549": "branch0_seg0", + "1550": "branch0_seg0", + "1551": "branch0_seg0", + "1552": "branch0_seg0", + "1553": "branch0_seg0", + "1554": "branch0_seg0", + "1555": "branch0_seg0", + "1556": "branch0_seg0", + "1557": "branch0_seg0", + "1558": "branch0_seg0", + "1559": "branch0_seg0", + "1560": "branch0_seg0", + "1561": "branch0_seg0", + "1562": "branch0_seg0", + "1563": "branch0_seg0", + "1564": "branch0_seg0", + "1565": "branch0_seg0", + "1566": "branch0_seg0", + "1567": "branch0_seg0", + "1568": "branch0_seg0", + "1569": "branch0_seg0", + "1570": "branch0_seg0", + "1571": "branch0_seg0", + "1572": "branch0_seg0", + "1573": "branch0_seg0", + "1574": "branch0_seg0", + "1575": "branch0_seg0", + "1576": "branch0_seg0", + "1577": "branch0_seg0", + "1578": "branch0_seg0", + "1579": "branch0_seg0", + "1580": "branch0_seg0", + "1581": "branch0_seg0", + "1582": "branch0_seg0", + "1583": "branch0_seg0", + "1584": "branch0_seg0", + "1585": "branch0_seg0", + "1586": "branch0_seg0", + "1587": "branch0_seg0", + "1588": "branch0_seg0", + "1589": "branch0_seg0", + "1590": "branch0_seg0", + "1591": "branch0_seg0", + "1592": "branch0_seg0", + "1593": "branch0_seg0", + "1594": "branch0_seg0", + "1595": "branch0_seg0", + "1596": "branch0_seg0", + "1597": "branch0_seg0", + "1598": "branch0_seg0", + "1599": "branch0_seg0", + "1600": "branch0_seg0", + "1601": "branch0_seg0", + "1602": "branch0_seg0", + "1603": "branch0_seg0", + "1604": "branch0_seg0", + "1605": "branch0_seg0", + "1606": "branch0_seg0", + "1607": "branch0_seg0", + "1608": "branch0_seg0", + "1609": "branch0_seg0", + "1610": "branch0_seg0", + "1611": "branch0_seg0", + "1612": "branch0_seg0", + "1613": "branch0_seg0", + "1614": "branch0_seg0", + "1615": "branch0_seg0", + "1616": "branch0_seg0", + "1617": "branch0_seg0", + "1618": "branch0_seg0", + "1619": "branch0_seg0", + "1620": "branch0_seg0", + "1621": "branch0_seg0", + "1622": "branch0_seg0", + "1623": "branch0_seg0", + "1624": "branch0_seg0", + "1625": "branch0_seg0", + "1626": "branch0_seg0", + "1627": "branch0_seg0", + "1628": "branch0_seg0", + "1629": "branch0_seg0", + "1630": "branch0_seg0", + "1631": "branch0_seg0", + "1632": "branch0_seg0", + "1633": "branch0_seg0", + "1634": "branch0_seg0", + "1635": "branch0_seg0", + "1636": "branch0_seg0", + "1637": "branch0_seg0", + "1638": "branch0_seg0", + "1639": "branch0_seg0", + "1640": "branch0_seg0", + "1641": "branch0_seg0", + "1642": "branch0_seg0", + "1643": "branch0_seg0", + "1644": "branch0_seg0", + "1645": "branch0_seg0", + "1646": "branch0_seg0", + "1647": "branch0_seg0", + "1648": "branch0_seg0", + "1649": "branch0_seg0", + "1650": "branch0_seg0", + "1651": "branch0_seg0", + "1652": "branch0_seg0", + "1653": "branch0_seg0", + "1654": "branch0_seg0", + "1655": "branch0_seg0", + "1656": "branch0_seg0", + "1657": "branch0_seg0", + "1658": "branch0_seg0", + "1659": "branch0_seg0", + "1660": "branch0_seg0", + "1661": "branch0_seg0", + "1662": "branch0_seg0", + "1663": "branch0_seg0", + "1664": "branch0_seg0", + "1665": "branch0_seg0", + "1666": "branch0_seg0", + "1667": "branch0_seg0", + "1668": "branch0_seg0", + "1669": "branch0_seg0", + "1670": "branch0_seg0", + "1671": "branch0_seg0", + "1672": "branch0_seg0", + "1673": "branch0_seg0", + "1674": "branch0_seg0", + "1675": "branch0_seg0", + "1676": "branch0_seg0", + "1677": "branch0_seg0", + "1678": "branch0_seg0", + "1679": "branch0_seg0", + "1680": "branch0_seg0", + "1681": "branch0_seg0", + "1682": "branch0_seg0", + "1683": "branch0_seg0", + "1684": "branch0_seg0", + "1685": "branch0_seg0", + "1686": "branch0_seg0", + "1687": "branch0_seg0", + "1688": "branch0_seg0", + "1689": "branch0_seg0", + "1690": "branch0_seg0", + "1691": "branch0_seg0", + "1692": "branch0_seg0", + "1693": "branch0_seg0", + "1694": "branch0_seg0", + "1695": "branch0_seg0", + "1696": "branch0_seg0", + "1697": "branch0_seg0", + "1698": "branch0_seg0", + "1699": "branch0_seg0", + "1700": "branch0_seg0", + "1701": "branch0_seg0", + "1702": "branch0_seg0", + "1703": "branch0_seg0", + "1704": "branch0_seg0", + "1705": "branch0_seg0", + "1706": "branch0_seg0", + "1707": "branch0_seg0", + "1708": "branch0_seg0", + "1709": "branch0_seg0", + "1710": "branch0_seg0", + "1711": "branch0_seg0", + "1712": "branch0_seg0", + "1713": "branch0_seg0", + "1714": "branch0_seg0", + "1715": "branch0_seg0", + "1716": "branch0_seg0", + "1717": "branch0_seg0", + "1718": "branch0_seg0", + "1719": "branch0_seg0", + "1720": "branch0_seg0", + "1721": "branch0_seg0", + "1722": "branch0_seg0", + "1723": "branch0_seg0", + "1724": "branch0_seg0", + "1725": "branch0_seg0", + "1726": "branch0_seg0", + "1727": "branch0_seg0", + "1728": "branch0_seg0", + "1729": "branch0_seg0", + "1730": "branch0_seg0", + "1731": "branch0_seg0", + "1732": "branch0_seg0", + "1733": "branch0_seg0", + "1734": "branch0_seg0", + "1735": "branch0_seg0", + "1736": "branch0_seg0", + "1737": "branch0_seg0", + "1738": "branch0_seg0", + "1739": "branch0_seg0", + "1740": "branch0_seg0", + "1741": "branch0_seg0", + "1742": "branch0_seg0", + "1743": "branch0_seg0", + "1744": "branch0_seg0", + "1745": "branch0_seg0", + "1746": "branch0_seg0", + "1747": "branch0_seg0", + "1748": "branch0_seg0", + "1749": "branch0_seg0", + "1750": "branch0_seg0", + "1751": "branch0_seg0", + "1752": "branch0_seg0", + "1753": "branch0_seg0", + "1754": "branch0_seg0", + "1755": "branch0_seg0", + "1756": "branch0_seg0", + "1757": "branch0_seg0", + "1758": "branch0_seg0", + "1759": "branch0_seg0", + "1760": "branch0_seg0", + "1761": "branch0_seg0", + "1762": "branch0_seg0", + "1763": "branch0_seg0", + "1764": "branch0_seg0", + "1765": "branch0_seg0", + "1766": "branch0_seg0", + "1767": "branch0_seg0", + "1768": "branch0_seg0", + "1769": "branch0_seg0", + "1770": "branch0_seg0", + "1771": "branch0_seg0", + "1772": "branch0_seg0", + "1773": "branch0_seg0", + "1774": "branch0_seg0", + "1775": "branch0_seg0", + "1776": "branch0_seg0", + "1777": "branch0_seg0", + "1778": "branch0_seg0", + "1779": "branch0_seg0", + "1780": "branch0_seg0", + "1781": "branch0_seg0", + "1782": "branch0_seg0", + "1783": "branch0_seg0", + "1784": "branch0_seg0", + "1785": "branch0_seg0", + "1786": "branch0_seg0", + "1787": "branch0_seg0", + "1788": "branch0_seg0", + "1789": "branch0_seg0", + "1790": "branch0_seg0", + "1791": "branch0_seg0", + "1792": "branch0_seg0", + "1793": "branch0_seg0", + "1794": "branch0_seg0", + "1795": "branch0_seg0", + "1796": "branch0_seg0", + "1797": "branch0_seg0", + "1798": "branch0_seg0", + "1799": "branch0_seg0", + "1800": "branch0_seg0", + "1801": "branch0_seg0", + "1802": "branch0_seg0", + "1803": "branch0_seg0", + "1804": "branch0_seg0", + "1805": "branch0_seg0", + "1806": "branch0_seg0", + "1807": "branch0_seg0", + "1808": "branch0_seg0", + "1809": "branch0_seg0", + "1810": "branch0_seg0", + "1811": "branch0_seg0", + "1812": "branch0_seg0", + "1813": "branch0_seg0", + "1814": "branch0_seg0", + "1815": "branch0_seg0", + "1816": "branch0_seg0", + "1817": "branch0_seg0", + "1818": "branch0_seg0", + "1819": "branch0_seg0", + "1820": "branch0_seg0", + "1821": "branch0_seg0", + "1822": "branch0_seg0", + "1823": "branch0_seg0", + "1824": "branch0_seg0", + "1825": "branch0_seg0", + "1826": "branch0_seg0", + "1827": "branch0_seg0", + "1828": "branch0_seg0", + "1829": "branch0_seg0", + "1830": "branch0_seg0", + "1831": "branch0_seg0", + "1832": "branch0_seg0", + "1833": "branch0_seg0", + "1834": "branch0_seg0", + "1835": "branch0_seg0", + "1836": "branch0_seg0", + "1837": "branch0_seg0", + "1838": "branch0_seg0", + "1839": "branch0_seg0", + "1840": "branch0_seg0", + "1841": "branch0_seg0", + "1842": "branch0_seg0", + "1843": "branch0_seg0", + "1844": "branch0_seg0", + "1845": "branch0_seg0", + "1846": "branch0_seg0", + "1847": "branch0_seg0", + "1848": "branch0_seg0", + "1849": "branch0_seg0", + "1850": "branch0_seg0", + "1851": "branch0_seg0", + "1852": "branch0_seg0", + "1853": "branch0_seg0", + "1854": "branch0_seg0", + "1855": "branch0_seg0", + "1856": "branch0_seg0", + "1857": "branch0_seg0", + "1858": "branch0_seg0", + "1859": "branch0_seg0", + "1860": "branch0_seg0", + "1861": "branch0_seg0", + "1862": "branch0_seg0", + "1863": "branch0_seg0", + "1864": "branch0_seg0", + "1865": "branch0_seg0", + "1866": "branch0_seg0", + "1867": "branch0_seg0", + "1868": "branch0_seg0", + "1869": "branch0_seg0", + "1870": "branch0_seg0", + "1871": "branch0_seg0", + "1872": "branch0_seg0", + "1873": "branch0_seg0", + "1874": "branch0_seg0", + "1875": "branch0_seg0", + "1876": "branch0_seg0", + "1877": "branch0_seg0", + "1878": "branch0_seg0", + "1879": "branch0_seg0", + "1880": "branch0_seg0", + "1881": "branch0_seg0", + "1882": "branch0_seg0", + "1883": "branch0_seg0", + "1884": "branch0_seg0", + "1885": "branch0_seg0", + "1886": "branch0_seg0", + "1887": "branch0_seg0", + "1888": "branch0_seg0", + "1889": "branch0_seg0", + "1890": "branch0_seg0", + "1891": "branch0_seg0", + "1892": "branch0_seg0", + "1893": "branch0_seg0", + "1894": "branch0_seg0", + "1895": "branch0_seg0", + "1896": "branch0_seg0", + "1897": "branch0_seg0", + "1898": "branch0_seg0", + "1899": "branch0_seg0", + "1900": "branch0_seg0", + "1901": "branch0_seg0", + "1902": "branch0_seg0", + "1903": "branch0_seg0", + "1904": "branch0_seg0", + "1905": "branch0_seg0", + "1906": "branch0_seg0", + "1907": "branch0_seg0", + "1908": "branch0_seg0", + "1909": "branch0_seg0", + "1910": "branch0_seg0", + "1911": "branch0_seg0", + "1912": "branch0_seg0", + "1913": "branch0_seg0", + "1914": "branch0_seg0", + "1915": "branch0_seg0", + "1916": "branch0_seg0", + "1917": "branch0_seg0", + "1918": "branch0_seg0", + "1919": "branch0_seg0", + "1920": "branch0_seg0", + "1921": "branch0_seg0", + "1922": "branch0_seg0", + "1923": "branch0_seg0", + "1924": "branch0_seg0", + "1925": "branch0_seg0", + "1926": "branch0_seg0", + "1927": "branch0_seg0", + "1928": "branch0_seg0", + "1929": "branch0_seg0", + "1930": "branch0_seg0", + "1931": "branch0_seg0", + "1932": "branch0_seg0", + "1933": "branch0_seg0", + "1934": "branch0_seg0", + "1935": "branch0_seg0", + "1936": "branch0_seg0", + "1937": "branch0_seg0", + "1938": "branch0_seg0", + "1939": "branch0_seg0", + "1940": "branch0_seg0", + "1941": "branch0_seg0", + "1942": "branch0_seg0", + "1943": "branch0_seg0", + "1944": "branch0_seg0", + "1945": "branch0_seg0", + "1946": "branch0_seg0", + "1947": "branch0_seg0", + "1948": "branch0_seg0", + "1949": "branch0_seg0", + "1950": "branch0_seg0", + "1951": "branch0_seg0", + "1952": "branch0_seg0", + "1953": "branch0_seg0", + "1954": "branch0_seg0", + "1955": "branch0_seg0", + "1956": "branch0_seg0", + "1957": "branch0_seg0", + "1958": "branch0_seg0", + "1959": "branch0_seg0", + "1960": "branch0_seg0", + "1961": "branch0_seg0", + "1962": "branch0_seg0", + "1963": "branch0_seg0", + "1964": "branch0_seg0", + "1965": "branch0_seg0", + "1966": "branch0_seg0", + "1967": "branch0_seg0", + "1968": "branch0_seg0", + "1969": "branch0_seg0", + "1970": "branch0_seg0", + "1971": "branch0_seg0", + "1972": "branch0_seg0", + "1973": "branch0_seg0", + "1974": "branch0_seg0", + "1975": "branch0_seg0", + "1976": "branch0_seg0", + "1977": "branch0_seg0", + "1978": "branch0_seg0", + "1979": "branch0_seg0", + "1980": "branch0_seg0", + "1981": "branch0_seg0", + "1982": "branch0_seg0", + "1983": "branch0_seg0", + "1984": "branch0_seg0", + "1985": "branch0_seg0", + "1986": "branch0_seg0", + "1987": "branch0_seg0", + "1988": "branch0_seg0", + "1989": "branch0_seg0", + "1990": "branch0_seg0", + "1991": "branch0_seg0", + "1992": "branch0_seg0", + "1993": "branch0_seg0", + "1994": "branch0_seg0", + "1995": "branch0_seg0", + "1996": "branch0_seg0", + "1997": "branch0_seg0", + "1998": "branch0_seg0", + "1999": "branch0_seg0", + "2000": "branch0_seg0", + "2001": "branch0_seg0", + "2002": "branch0_seg0", + "2003": "branch0_seg0", + "2004": "branch0_seg0", + "2005": "branch0_seg0", + "2006": "branch0_seg0", + "2007": "branch0_seg0", + "2008": "branch0_seg0", + "2009": "branch0_seg0", + "2010": "branch0_seg0", + "2011": "branch0_seg0", + "2012": "branch0_seg0", + "2013": "branch0_seg0", + "2014": "branch0_seg0", + "2015": "branch0_seg0", + "2016": "branch0_seg0", + "2017": "branch0_seg0", + "2018": "branch0_seg0", + "2019": "branch0_seg0", + "2020": "branch0_seg0", + "2021": "branch0_seg0", + "2022": "branch0_seg0", + "2023": "branch0_seg0", + "2024": "branch0_seg0", + "2025": "branch0_seg0", + "2026": "branch0_seg0", + "2027": "branch0_seg0", + "2028": "branch0_seg0", + "2029": "branch0_seg0", + "2030": "branch0_seg0", + "2031": "branch0_seg0", + "2032": "branch0_seg0", + "2033": "branch0_seg0", + "2034": "branch0_seg0", + "2035": "branch0_seg0", + "2036": "branch0_seg0", + "2037": "branch0_seg0", + "2038": "branch0_seg0", + "2039": "branch0_seg0", + "2040": "branch0_seg0", + "2041": "branch0_seg0", + "2042": "branch0_seg0", + "2043": "branch0_seg0", + "2044": "branch0_seg0", + "2045": "branch0_seg0", + "2046": "branch0_seg0", + "2047": "branch0_seg0", + "2048": "branch0_seg0", + "2049": "branch0_seg0", + "2050": "branch0_seg0", + "2051": "branch0_seg0", + "2052": "branch0_seg0", + "2053": "branch0_seg0", + "2054": "branch0_seg0", + "2055": "branch0_seg0", + "2056": "branch0_seg0", + "2057": "branch0_seg0", + "2058": "branch0_seg0", + "2059": "branch0_seg0", + "2060": "branch0_seg0", + "2061": "branch0_seg0", + "2062": "branch0_seg0", + "2063": "branch0_seg0", + "2064": "branch0_seg0", + "2065": "branch0_seg0", + "2066": "branch0_seg0", + "2067": "branch0_seg0", + "2068": "branch0_seg0", + "2069": "branch0_seg0", + "2070": "branch0_seg0", + "2071": "branch0_seg0", + "2072": "branch0_seg0", + "2073": "branch0_seg0", + "2074": "branch0_seg0", + "2075": "branch0_seg0", + "2076": "branch0_seg0", + "2077": "branch0_seg0", + "2078": "branch0_seg0", + "2079": "branch0_seg0", + "2080": "branch0_seg0", + "2081": "branch0_seg0", + "2082": "branch0_seg0", + "2083": "branch0_seg0", + "2084": "branch0_seg0", + "2085": "branch0_seg0", + "2086": "branch0_seg0", + "2087": "branch0_seg0", + "2088": "branch0_seg0", + "2089": "branch0_seg0", + "2090": "branch0_seg0", + "2091": "branch0_seg0", + "2092": "branch0_seg0", + "2093": "branch0_seg0", + "2094": "branch0_seg0", + "2095": "branch0_seg0", + "2096": "branch0_seg0", + "2097": "branch0_seg0", + "2098": "branch0_seg0", + "2099": "branch0_seg0", + "2100": "branch0_seg0", + "2101": "branch0_seg0", + "2102": "branch0_seg0", + "2103": "branch0_seg0", + "2104": "branch0_seg0", + "2105": "branch0_seg0", + "2106": "branch0_seg0", + "2107": "branch0_seg0", + "2108": "branch0_seg0", + "2109": "branch0_seg0", + "2110": "branch0_seg0", + "2111": "branch0_seg0", + "2112": "branch0_seg0", + "2113": "branch0_seg0", + "2114": "branch0_seg0", + "2115": "branch0_seg0", + "2116": "branch0_seg0", + "2117": "branch0_seg0", + "2118": "branch0_seg0", + "2119": "branch0_seg0", + "2120": "branch0_seg0", + "2121": "branch0_seg0", + "2122": "branch0_seg0", + "2123": "branch0_seg0", + "2124": "branch0_seg0", + "2125": "branch0_seg0", + "2126": "branch0_seg0", + "2127": "branch0_seg0", + "2128": "branch0_seg0", + "2129": "branch0_seg0", + "2130": "branch0_seg0", + "2131": "branch0_seg0", + "2132": "branch0_seg0", + "2133": "branch0_seg0", + "2134": "branch0_seg0", + "2135": "branch0_seg0", + "2136": "branch0_seg0", + "2137": "branch0_seg0", + "2138": "branch0_seg0", + "2139": "branch0_seg0", + "2140": "branch0_seg0", + "2141": "branch0_seg0", + "2142": "branch0_seg0", + "2143": "branch0_seg0", + "2144": "branch0_seg0", + "2145": "branch0_seg0", + "2146": "branch0_seg0", + "2147": "branch0_seg0", + "2148": "branch0_seg0", + "2149": "branch0_seg0", + "2150": "branch0_seg0", + "2151": "branch0_seg0", + "2152": "branch0_seg0", + "2153": "branch0_seg0", + "2154": "branch0_seg0", + "2155": "branch0_seg0", + "2156": "branch0_seg0", + "2157": "branch0_seg0", + "2158": "branch0_seg0", + "2159": "branch0_seg0", + "2160": "branch0_seg0", + "2161": "branch0_seg0", + "2162": "branch0_seg0", + "2163": "branch0_seg0", + "2164": "branch0_seg0", + "2165": "branch0_seg0", + "2166": "branch0_seg0", + "2167": "branch0_seg0", + "2168": "branch0_seg0", + "2169": "branch0_seg0", + "2170": "branch0_seg0", + "2171": "branch0_seg0", + "2172": "branch0_seg0", + "2173": "branch0_seg0", + "2174": "branch0_seg0", + "2175": "branch0_seg0", + "2176": "branch0_seg0", + "2177": "branch0_seg0", + "2178": "branch0_seg0", + "2179": "branch0_seg0", + "2180": "branch0_seg0", + "2181": "branch0_seg0", + "2182": "branch0_seg0", + "2183": "branch0_seg0", + "2184": "branch0_seg0", + "2185": "branch0_seg0", + "2186": "branch0_seg0", + "2187": "branch0_seg0", + "2188": "branch0_seg0", + "2189": "branch0_seg0", + "2190": "branch0_seg0", + "2191": "branch0_seg0", + "2192": "branch0_seg0", + "2193": "branch0_seg0", + "2194": "branch0_seg0", + "2195": "branch0_seg0", + "2196": "branch0_seg0", + "2197": "branch0_seg0", + "2198": "branch0_seg0", + "2199": "branch0_seg0", + "2200": "branch0_seg0", + "2201": "branch0_seg0", + "2202": "branch0_seg0", + "2203": "branch0_seg0", + "2204": "branch0_seg0", + "2205": "branch0_seg0", + "2206": "branch0_seg0", + "2207": "branch0_seg0", + "2208": "branch0_seg0", + "2209": "branch0_seg0", + "2210": "branch0_seg0", + "2211": "branch0_seg0", + "2212": "branch0_seg0", + "2213": "branch0_seg0", + "2214": "branch0_seg0", + "2215": "branch0_seg0", + "2216": "branch0_seg0", + "2217": "branch0_seg0", + "2218": "branch0_seg0", + "2219": "branch0_seg0", + "2220": "branch0_seg0", + "2221": "branch0_seg0", + "2222": "branch0_seg0", + "2223": "branch0_seg0", + "2224": "branch0_seg0", + "2225": "branch0_seg0", + "2226": "branch0_seg0", + "2227": "branch0_seg0", + "2228": "branch0_seg0", + "2229": "branch0_seg0", + "2230": "branch0_seg0", + "2231": "branch0_seg0", + "2232": "branch0_seg0", + "2233": "branch0_seg0", + "2234": "branch0_seg0", + "2235": "branch0_seg0", + "2236": "branch0_seg0", + "2237": "branch0_seg0", + "2238": "branch0_seg0", + "2239": "branch0_seg0", + "2240": "branch0_seg0", + "2241": "branch0_seg0", + "2242": "branch0_seg0", + "2243": "branch0_seg0", + "2244": "branch0_seg0", + "2245": "branch0_seg0", + "2246": "branch0_seg0", + "2247": "branch0_seg0", + "2248": "branch0_seg0", + "2249": "branch0_seg0", + "2250": "branch0_seg0", + "2251": "branch0_seg0", + "2252": "branch0_seg0", + "2253": "branch0_seg0", + "2254": "branch0_seg0", + "2255": "branch0_seg0", + "2256": "branch0_seg0", + "2257": "branch0_seg0", + "2258": "branch0_seg0", + "2259": "branch0_seg0", + "2260": "branch0_seg0", + "2261": "branch0_seg0", + "2262": "branch0_seg0", + "2263": "branch0_seg0", + "2264": "branch0_seg0", + "2265": "branch0_seg0", + "2266": "branch0_seg0", + "2267": "branch0_seg0", + "2268": "branch0_seg0", + "2269": "branch0_seg0", + "2270": "branch0_seg0", + "2271": "branch0_seg0", + "2272": "branch0_seg0", + "2273": "branch0_seg0", + "2274": "branch0_seg0", + "2275": "branch0_seg0", + "2276": "branch0_seg0", + "2277": "branch0_seg0", + "2278": "branch0_seg0", + "2279": "branch0_seg0", + "2280": "branch0_seg0", + "2281": "branch0_seg0", + "2282": "branch0_seg0", + "2283": "branch0_seg0", + "2284": "branch0_seg0", + "2285": "branch0_seg0", + "2286": "branch0_seg0", + "2287": "branch0_seg0", + "2288": "branch0_seg0", + "2289": "branch0_seg0", + "2290": "branch0_seg0", + "2291": "branch0_seg0", + "2292": "branch0_seg0", + "2293": "branch0_seg0", + "2294": "branch0_seg0", + "2295": "branch0_seg0", + "2296": "branch0_seg0", + "2297": "branch0_seg0", + "2298": "branch0_seg0", + "2299": "branch0_seg0", + "2300": "branch0_seg0", + "2301": "branch0_seg0", + "2302": "branch0_seg0", + "2303": "branch0_seg0", + "2304": "branch0_seg0", + "2305": "branch0_seg0", + "2306": "branch0_seg0", + "2307": "branch0_seg0", + "2308": "branch0_seg0", + "2309": "branch0_seg0", + "2310": "branch0_seg0", + "2311": "branch0_seg0", + "2312": "branch0_seg0", + "2313": "branch0_seg0", + "2314": "branch0_seg0", + "2315": "branch0_seg0", + "2316": "branch0_seg0", + "2317": "branch0_seg0", + "2318": "branch0_seg0", + "2319": "branch0_seg0", + "2320": "branch0_seg0", + "2321": "branch0_seg0", + "2322": "branch0_seg0", + "2323": "branch0_seg0", + "2324": "branch0_seg0", + "2325": "branch0_seg0", + "2326": "branch0_seg0", + "2327": "branch0_seg0", + "2328": "branch0_seg0", + "2329": "branch0_seg0", + "2330": "branch0_seg0", + "2331": "branch0_seg0", + "2332": "branch0_seg0", + "2333": "branch0_seg0", + "2334": "branch0_seg0", + "2335": "branch0_seg0", + "2336": "branch0_seg0", + "2337": "branch0_seg0", + "2338": "branch0_seg0", + "2339": "branch0_seg0", + "2340": "branch0_seg0", + "2341": "branch0_seg0", + "2342": "branch0_seg0", + "2343": "branch0_seg0", + "2344": "branch0_seg0", + "2345": "branch0_seg0", + "2346": "branch0_seg0", + "2347": "branch0_seg0", + "2348": "branch0_seg0", + "2349": "branch0_seg0", + "2350": "branch0_seg0", + "2351": "branch0_seg0", + "2352": "branch0_seg0", + "2353": "branch0_seg0", + "2354": "branch0_seg0", + "2355": "branch0_seg0", + "2356": "branch0_seg0", + "2357": "branch0_seg0", + "2358": "branch0_seg0", + "2359": "branch0_seg0", + "2360": "branch0_seg0", + "2361": "branch0_seg0", + "2362": "branch0_seg0", + "2363": "branch0_seg0", + "2364": "branch0_seg0", + "2365": "branch0_seg0", + "2366": "branch0_seg0", + "2367": "branch0_seg0", + "2368": "branch0_seg0", + "2369": "branch0_seg0", + "2370": "branch0_seg0", + "2371": "branch0_seg0", + "2372": "branch0_seg0", + "2373": "branch0_seg0", + "2374": "branch0_seg0", + "2375": "branch0_seg0", + "2376": "branch0_seg0", + "2377": "branch0_seg0", + "2378": "branch0_seg0", + "2379": "branch0_seg0", + "2380": "branch0_seg0", + "2381": "branch0_seg0", + "2382": "branch0_seg0", + "2383": "branch0_seg0", + "2384": "branch0_seg0", + "2385": "branch0_seg0", + "2386": "branch0_seg0", + "2387": "branch0_seg0", + "2388": "branch0_seg0", + "2389": "branch0_seg0", + "2390": "branch0_seg0", + "2391": "branch0_seg0", + "2392": "branch0_seg0", + "2393": "branch0_seg0", + "2394": "branch0_seg0", + "2395": "branch0_seg0", + "2396": "branch0_seg0", + "2397": "branch0_seg0", + "2398": "branch0_seg0", + "2399": "branch0_seg0", + "2400": "branch0_seg0", + "2401": "branch0_seg0", + "2402": "branch0_seg0", + "2403": "branch0_seg0", + "2404": "branch0_seg0", + "2405": "branch0_seg0", + "2406": "branch0_seg0", + "2407": "branch0_seg0", + "2408": "branch0_seg0", + "2409": "branch0_seg0", + "2410": "branch0_seg0", + "2411": "branch0_seg0", + "2412": "branch0_seg0", + "2413": "branch0_seg0", + "2414": "branch0_seg0", + "2415": "branch0_seg0", + "2416": "branch0_seg0", + "2417": "branch0_seg0", + "2418": "branch0_seg0", + "2419": "branch0_seg0", + "2420": "branch0_seg0", + "2421": "branch0_seg0", + "2422": "branch0_seg0", + "2423": "branch0_seg0", + "2424": "branch0_seg0", + "2425": "branch0_seg0", + "2426": "branch0_seg0", + "2427": "branch0_seg0", + "2428": "branch0_seg0", + "2429": "branch0_seg0", + "2430": "branch0_seg0", + "2431": "branch0_seg0", + "2432": "branch0_seg0", + "2433": "branch0_seg0", + "2434": "branch0_seg0", + "2435": "branch0_seg0", + "2436": "branch0_seg0", + "2437": "branch0_seg0", + "2438": "branch0_seg0", + "2439": "branch0_seg0", + "2440": "branch0_seg0", + "2441": "branch0_seg0", + "2442": "branch0_seg0", + "2443": "branch0_seg0", + "2444": "branch0_seg0", + "2445": "branch0_seg0", + "2446": "branch0_seg0", + "2447": "branch0_seg0", + "2448": "branch0_seg0", + "2449": "branch0_seg0", + "2450": "branch0_seg0", + "2451": "branch0_seg0", + "2452": "branch0_seg0", + "2453": "branch0_seg0", + "2454": "branch0_seg0", + "2455": "branch0_seg0", + "2456": "branch0_seg0", + "2457": "branch0_seg0", + "2458": "branch0_seg0", + "2459": "branch0_seg0", + "2460": "branch0_seg0", + "2461": "branch0_seg0", + "2462": "branch0_seg0", + "2463": "branch0_seg0", + "2464": "branch0_seg0", + "2465": "branch0_seg0", + "2466": "branch0_seg0", + "2467": "branch0_seg0", + "2468": "branch0_seg0", + "2469": "branch0_seg0", + "2470": "branch0_seg0", + "2471": "branch0_seg0", + "2472": "branch0_seg0", + "2473": "branch0_seg0", + "2474": "branch0_seg0", + "2475": "branch0_seg0", + "2476": "branch0_seg0", + "2477": "branch0_seg0", + "2478": "branch0_seg0", + "2479": "branch0_seg0", + "2480": "branch0_seg0", + "2481": "branch0_seg0", + "2482": "branch0_seg0", + "2483": "branch0_seg0", + "2484": "branch0_seg0", + "2485": "branch0_seg0", + "2486": "branch0_seg0", + "2487": "branch0_seg0", + "2488": "branch0_seg0", + "2489": "branch0_seg0", + "2490": "branch0_seg0", + "2491": "branch0_seg0", + "2492": "branch0_seg0", + "2493": "branch0_seg0", + "2494": "branch0_seg0", + "2495": "branch0_seg0", + "2496": "branch0_seg0", + "2497": "branch0_seg0", + "2498": "branch0_seg0", + "2499": "branch0_seg0", + "2500": "branch0_seg0", + "2501": "branch0_seg0", + "2502": "branch0_seg0", + "2503": "branch0_seg0", + "2504": "branch0_seg0", + "2505": "branch0_seg0", + "2506": "branch0_seg0", + "2507": "branch0_seg0", + "2508": "branch0_seg0", + "2509": "branch0_seg0", + "2510": "branch0_seg0", + "2511": "branch0_seg0", + "2512": "branch0_seg0", + "2513": "branch0_seg0", + "2514": "branch0_seg0", + "2515": "branch0_seg0", + "2516": "branch0_seg0", + "2517": "branch0_seg0", + "2518": "branch0_seg0", + "2519": "branch0_seg0", + "2520": "branch0_seg0", + "2521": "branch0_seg0", + "2522": "branch0_seg0", + "2523": "branch0_seg0", + "2524": "branch0_seg0", + "2525": "branch0_seg0", + "2526": "branch0_seg0", + "2527": "branch0_seg0", + "2528": "branch0_seg0", + "2529": "branch0_seg0", + "2530": "branch0_seg0", + "2531": "branch0_seg0", + "2532": "branch0_seg0", + "2533": "branch0_seg0", + "2534": "branch0_seg0", + "2535": "branch0_seg0", + "2536": "branch0_seg0", + "2537": "branch0_seg0", + "2538": "branch0_seg0", + "2539": "branch0_seg0", + "2540": "branch0_seg0", + "2541": "branch0_seg0", + "2542": "branch0_seg0", + "2543": "branch0_seg0", + "2544": "branch0_seg0", + "2545": "branch0_seg0", + "2546": "branch0_seg0", + "2547": "branch0_seg0", + "2548": "branch0_seg0", + "2549": "branch0_seg0", + "2550": "branch0_seg0", + "2551": "branch0_seg0", + "2552": "branch0_seg0", + "2553": "branch0_seg0", + "2554": "branch0_seg0", + "2555": "branch0_seg0", + "2556": "branch0_seg0", + "2557": "branch0_seg0", + "2558": "branch0_seg0", + "2559": "branch0_seg0", + "2560": "branch0_seg0", + "2561": "branch0_seg0", + "2562": "branch0_seg0", + "2563": "branch0_seg0", + "2564": "branch0_seg0", + "2565": "branch0_seg0", + "2566": "branch0_seg0", + "2567": "branch0_seg0", + "2568": "branch0_seg0", + "2569": "branch0_seg0", + "2570": "branch0_seg0", + "2571": "branch0_seg0", + "2572": "branch0_seg0", + "2573": "branch0_seg0", + "2574": "branch0_seg0", + "2575": "branch0_seg0", + "2576": "branch0_seg0", + "2577": "branch0_seg0", + "2578": "branch0_seg0", + "2579": "branch0_seg0", + "2580": "branch0_seg0", + "2581": "branch0_seg0", + "2582": "branch0_seg0", + "2583": "branch0_seg0", + "2584": "branch0_seg0", + "2585": "branch0_seg0", + "2586": "branch0_seg0", + "2587": "branch0_seg0", + "2588": "branch0_seg0", + "2589": "branch0_seg0", + "2590": "branch0_seg0", + "2591": "branch0_seg0", + "2592": "branch0_seg0", + "2593": "branch0_seg0", + "2594": "branch0_seg0", + "2595": "branch0_seg0", + "2596": "branch0_seg0", + "2597": "branch0_seg0", + "2598": "branch0_seg0", + "2599": "branch0_seg0", + "2600": "branch0_seg0", + "2601": "branch0_seg0", + "2602": "branch0_seg0", + "2603": "branch0_seg0", + "2604": "branch0_seg0", + "2605": "branch0_seg0", + "2606": "branch0_seg0", + "2607": "branch0_seg0", + "2608": "branch0_seg0", + "2609": "branch0_seg0", + "2610": "branch0_seg0", + "2611": "branch0_seg0", + "2612": "branch0_seg0", + "2613": "branch0_seg0", + "2614": "branch0_seg0", + "2615": "branch0_seg0", + "2616": "branch0_seg0", + "2617": "branch0_seg0", + "2618": "branch0_seg0", + "2619": "branch0_seg0", + "2620": "branch0_seg0", + "2621": "branch0_seg0", + "2622": "branch0_seg0", + "2623": "branch0_seg0", + "2624": "branch0_seg0", + "2625": "branch0_seg0", + "2626": "branch0_seg0", + "2627": "branch0_seg0", + "2628": "branch0_seg0", + "2629": "branch0_seg0", + "2630": "branch0_seg0", + "2631": "branch0_seg0", + "2632": "branch0_seg0", + "2633": "branch0_seg0", + "2634": "branch0_seg0", + "2635": "branch0_seg0", + "2636": "branch0_seg0", + "2637": "branch0_seg0", + "2638": "branch0_seg0", + "2639": "branch0_seg0", + "2640": "branch0_seg0", + "2641": "branch0_seg0", + "2642": "branch0_seg0", + "2643": "branch0_seg0", + "2644": "branch0_seg0", + "2645": "branch0_seg0", + "2646": "branch0_seg0", + "2647": "branch0_seg0", + "2648": "branch0_seg0", + "2649": "branch0_seg0", + "2650": "branch0_seg0", + "2651": "branch0_seg0", + "2652": "branch0_seg0", + "2653": "branch0_seg0", + "2654": "branch0_seg0", + "2655": "branch0_seg0", + "2656": "branch0_seg0", + "2657": "branch0_seg0", + "2658": "branch0_seg0", + "2659": "branch0_seg0", + "2660": "branch0_seg0", + "2661": "branch0_seg0", + "2662": "branch0_seg0", + "2663": "branch0_seg0", + "2664": "branch0_seg0", + "2665": "branch0_seg0", + "2666": "branch0_seg0", + "2667": "branch0_seg0", + "2668": "branch0_seg0", + "2669": "branch0_seg0", + "2670": "branch0_seg0", + "2671": "branch0_seg0", + "2672": "branch0_seg0", + "2673": "branch0_seg0", + "2674": "branch0_seg0", + "2675": "branch0_seg0", + "2676": "branch0_seg0", + "2677": "branch0_seg0", + "2678": "branch0_seg0", + "2679": "branch0_seg0", + "2680": "branch0_seg0", + "2681": "branch0_seg0", + "2682": "branch0_seg0", + "2683": "branch0_seg0", + "2684": "branch0_seg0", + "2685": "branch0_seg0", + "2686": "branch0_seg0", + "2687": "branch0_seg0", + "2688": "branch0_seg0", + "2689": "branch0_seg0", + "2690": "branch0_seg0", + "2691": "branch0_seg0", + "2692": "branch0_seg0", + "2693": "branch0_seg0", + "2694": "branch0_seg0", + "2695": "branch0_seg0", + "2696": "branch0_seg0", + "2697": "branch0_seg0", + "2698": "branch0_seg0", + "2699": "branch0_seg0", + "2700": "branch0_seg0", + "2701": "branch0_seg0", + "2702": "branch0_seg0", + "2703": "branch0_seg0", + "2704": "branch0_seg0", + "2705": "branch0_seg0", + "2706": "branch0_seg0", + "2707": "branch0_seg0", + "2708": "branch0_seg0", + "2709": "branch0_seg0", + "2710": "branch0_seg0", + "2711": "branch0_seg0", + "2712": "branch0_seg0", + "2713": "branch0_seg0", + "2714": "branch0_seg0", + "2715": "branch0_seg0", + "2716": "branch0_seg0", + "2717": "branch0_seg0", + "2718": "branch0_seg0", + "2719": "branch0_seg0", + "2720": "branch0_seg0", + "2721": "branch0_seg0", + "2722": "branch0_seg0", + "2723": "branch0_seg0", + "2724": "branch0_seg0", + "2725": "branch0_seg0", + "2726": "branch0_seg0", + "2727": "branch0_seg0", + "2728": "branch0_seg0", + "2729": "branch0_seg0", + "2730": "branch0_seg0", + "2731": "branch0_seg0", + "2732": "branch0_seg0", + "2733": "branch0_seg0", + "2734": "branch0_seg0", + "2735": "branch0_seg0", + "2736": "branch0_seg0", + "2737": "branch0_seg0", + "2738": "branch0_seg0", + "2739": "branch0_seg0", + "2740": "branch0_seg0", + "2741": "branch0_seg0", + "2742": "branch0_seg0", + "2743": "branch0_seg0", + "2744": "branch0_seg0", + "2745": "branch0_seg0", + "2746": "branch0_seg0", + "2747": "branch0_seg0", + "2748": "branch0_seg0", + "2749": "branch0_seg0", + "2750": "branch0_seg0", + "2751": "branch0_seg0", + "2752": "branch0_seg0", + "2753": "branch0_seg0", + "2754": "branch0_seg0", + "2755": "branch0_seg0", + "2756": "branch0_seg0", + "2757": "branch0_seg0", + "2758": "branch0_seg0", + "2759": "branch0_seg0", + "2760": "branch0_seg0", + "2761": "branch0_seg0", + "2762": "branch0_seg0", + "2763": "branch0_seg0", + "2764": "branch0_seg0", + "2765": "branch0_seg0", + "2766": "branch0_seg0", + "2767": "branch0_seg0", + "2768": "branch0_seg0", + "2769": "branch0_seg0", + "2770": "branch0_seg0", + "2771": "branch0_seg0", + "2772": "branch0_seg0", + "2773": "branch0_seg0", + "2774": "branch0_seg0", + "2775": "branch0_seg0", + "2776": "branch0_seg0", + "2777": "branch0_seg0", + "2778": "branch0_seg0", + "2779": "branch0_seg0", + "2780": "branch0_seg0", + "2781": "branch0_seg0", + "2782": "branch0_seg0", + "2783": "branch0_seg0", + "2784": "branch0_seg0", + "2785": "branch0_seg0", + "2786": "branch0_seg0", + "2787": "branch0_seg0", + "2788": "branch0_seg0", + "2789": "branch0_seg0", + "2790": "branch0_seg0", + "2791": "branch0_seg0", + "2792": "branch0_seg0", + "2793": "branch0_seg0", + "2794": "branch0_seg0", + "2795": "branch0_seg0", + "2796": "branch0_seg0", + "2797": "branch0_seg0", + "2798": "branch0_seg0", + "2799": "branch0_seg0", + "2800": "branch0_seg0", + "2801": "branch0_seg0", + "2802": "branch0_seg0", + "2803": "branch0_seg0", + "2804": "branch0_seg0", + "2805": "branch0_seg0", + "2806": "branch0_seg0", + "2807": "branch0_seg0", + "2808": "branch0_seg0", + "2809": "branch0_seg0", + "2810": "branch0_seg0", + "2811": "branch0_seg0", + "2812": "branch0_seg0", + "2813": "branch0_seg0", + "2814": "branch0_seg0", + "2815": "branch0_seg0", + "2816": "branch0_seg0", + "2817": "branch0_seg0", + "2818": "branch0_seg0", + "2819": "branch0_seg0", + "2820": "branch0_seg0", + "2821": "branch0_seg0", + "2822": "branch0_seg0", + "2823": "branch0_seg0", + "2824": "branch0_seg0", + "2825": "branch0_seg0", + "2826": "branch0_seg0", + "2827": "branch0_seg0", + "2828": "branch0_seg0", + "2829": "branch0_seg0", + "2830": "branch0_seg0", + "2831": "branch0_seg0", + "2832": "branch0_seg0", + "2833": "branch0_seg0", + "2834": "branch0_seg0", + "2835": "branch0_seg0", + "2836": "branch0_seg0", + "2837": "branch0_seg0", + "2838": "branch0_seg0", + "2839": "branch0_seg0", + "2840": "branch0_seg0", + "2841": "branch0_seg0", + "2842": "branch0_seg0", + "2843": "branch0_seg0", + "2844": "branch0_seg0", + "2845": "branch0_seg0", + "2846": "branch0_seg0", + "2847": "branch0_seg0", + "2848": "branch0_seg0", + "2849": "branch0_seg0", + "2850": "branch0_seg0", + "2851": "branch0_seg0", + "2852": "branch0_seg0", + "2853": "branch0_seg0", + "2854": "branch0_seg0", + "2855": "branch0_seg0", + "2856": "branch0_seg0", + "2857": "branch0_seg0", + "2858": "branch0_seg0", + "2859": "branch0_seg0", + "2860": "branch0_seg0", + "2861": "branch0_seg0", + "2862": "branch0_seg0", + "2863": "branch0_seg0", + "2864": "branch0_seg0", + "2865": "branch0_seg0", + "2866": "branch0_seg0", + "2867": "branch0_seg0", + "2868": "branch0_seg0", + "2869": "branch0_seg0", + "2870": "branch0_seg0", + "2871": "branch0_seg0", + "2872": "branch0_seg0", + "2873": "branch0_seg0", + "2874": "branch0_seg0", + "2875": "branch0_seg0", + "2876": "branch0_seg0", + "2877": "branch0_seg0", + "2878": "branch0_seg0", + "2879": "branch0_seg0", + "2880": "branch0_seg0", + "2881": "branch0_seg0", + "2882": "branch0_seg0", + "2883": "branch0_seg0", + "2884": "branch0_seg0", + "2885": "branch0_seg0", + "2886": "branch0_seg0", + "2887": "branch0_seg0", + "2888": "branch0_seg0", + "2889": "branch0_seg0", + "2890": "branch0_seg0", + "2891": "branch0_seg0", + "2892": "branch0_seg0", + "2893": "branch0_seg0", + "2894": "branch0_seg0", + "2895": "branch0_seg0", + "2896": "branch0_seg0", + "2897": "branch0_seg0", + "2898": "branch0_seg0", + "2899": "branch0_seg0", + "2900": "branch0_seg0", + "2901": "branch0_seg0", + "2902": "branch0_seg0", + "2903": "branch0_seg0", + "2904": "branch0_seg0", + "2905": "branch0_seg0", + "2906": "branch0_seg0", + "2907": "branch0_seg0", + "2908": "branch0_seg0", + "2909": "branch0_seg0", + "2910": "branch0_seg0", + "2911": "branch0_seg0", + "2912": "branch0_seg0", + "2913": "branch0_seg0", + "2914": "branch0_seg0", + "2915": "branch0_seg0", + "2916": "branch0_seg0", + "2917": "branch0_seg0", + "2918": "branch0_seg0", + "2919": "branch0_seg0", + "2920": "branch0_seg0", + "2921": "branch0_seg0", + "2922": "branch0_seg0", + "2923": "branch0_seg0", + "2924": "branch0_seg0", + "2925": "branch0_seg0", + "2926": "branch0_seg0", + "2927": "branch0_seg0", + "2928": "branch0_seg0", + "2929": "branch0_seg0", + "2930": "branch0_seg0", + "2931": "branch0_seg0", + "2932": "branch0_seg0", + "2933": "branch0_seg0", + "2934": "branch0_seg0", + "2935": "branch0_seg0", + "2936": "branch0_seg0", + "2937": "branch0_seg0", + "2938": "branch0_seg0", + "2939": "branch0_seg0", + "2940": "branch0_seg0", + "2941": "branch0_seg0", + "2942": "branch0_seg0", + "2943": "branch0_seg0", + "2944": "branch0_seg0", + "2945": "branch0_seg0", + "2946": "branch0_seg0", + "2947": "branch0_seg0", + "2948": "branch0_seg0", + "2949": "branch0_seg0", + "2950": "branch0_seg0", + "2951": "branch0_seg0", + "2952": "branch0_seg0", + "2953": "branch0_seg0", + "2954": "branch0_seg0", + "2955": "branch0_seg0", + "2956": "branch0_seg0", + "2957": "branch0_seg0", + "2958": "branch0_seg0", + "2959": "branch0_seg0", + "2960": "branch0_seg0", + "2961": "branch0_seg0", + "2962": "branch0_seg0", + "2963": "branch0_seg0", + "2964": "branch0_seg0", + "2965": "branch0_seg0", + "2966": "branch0_seg0", + "2967": "branch0_seg0", + "2968": "branch0_seg0", + "2969": "branch0_seg0", + "2970": "branch0_seg0", + "2971": "branch0_seg0", + "2972": "branch0_seg0", + "2973": "branch0_seg0", + "2974": "branch0_seg0", + "2975": "branch0_seg0", + "2976": "branch0_seg0", + "2977": "branch0_seg0", + "2978": "branch0_seg0", + "2979": "branch0_seg0", + "2980": "branch0_seg0", + "2981": "branch0_seg0", + "2982": "branch0_seg0", + "2983": "branch0_seg0", + "2984": "branch0_seg0", + "2985": "branch0_seg0", + "2986": "branch0_seg0", + "2987": "branch0_seg0", + "2988": "branch0_seg0", + "2989": "branch0_seg0", + "2990": "branch0_seg0", + "2991": "branch0_seg0", + "2992": "branch0_seg0", + "2993": "branch0_seg0", + "2994": "branch0_seg0", + "2995": "branch0_seg0", + "2996": "branch0_seg0", + "2997": "branch0_seg0", + "2998": "branch0_seg0", + "2999": "branch0_seg0", + "3000": "branch0_seg0", + "3001": "branch0_seg0", + "3002": "branch0_seg0", + "3003": "branch0_seg0", + "3004": "branch0_seg0", + "3005": "branch0_seg0", + "3006": "branch0_seg0", + "3007": "branch0_seg0", + "3008": "branch0_seg0", + "3009": "branch0_seg0", + "3010": "branch0_seg0", + "3011": "branch0_seg0", + "3012": "branch0_seg0", + "3013": "branch0_seg0", + "3014": "branch0_seg0", + "3015": "branch0_seg0", + "3016": "branch0_seg0", + "3017": "branch0_seg0", + "3018": "branch0_seg0", + "3019": "branch0_seg0", + "3020": "branch0_seg0", + "3021": "branch0_seg0", + "3022": "branch0_seg0", + "3023": "branch0_seg0", + "3024": "branch0_seg0", + "3025": "branch0_seg0", + "3026": "branch0_seg0", + "3027": "branch0_seg0", + "3028": "branch0_seg0", + "3029": "branch0_seg0", + "3030": "branch0_seg0", + "3031": "branch0_seg0", + "3032": "branch0_seg0", + "3033": "branch0_seg0", + "3034": "branch0_seg0", + "3035": "branch0_seg0", + "3036": "branch0_seg0", + "3037": "branch0_seg0", + "3038": "branch0_seg0", + "3039": "branch0_seg0", + "3040": "branch0_seg0", + "3041": "branch0_seg0", + "3042": "branch0_seg0", + "3043": "branch0_seg0", + "3044": "branch0_seg0", + "3045": "branch0_seg0", + "3046": "branch0_seg0", + "3047": "branch0_seg0", + "3048": "branch0_seg0", + "3049": "branch0_seg0", + "3050": "branch0_seg0", + "3051": "branch0_seg0", + "3052": "branch0_seg0", + "3053": "branch0_seg0", + "3054": "branch0_seg0", + "3055": "branch0_seg0", + "3056": "branch0_seg0", + "3057": "branch0_seg0", + "3058": "branch0_seg0", + "3059": "branch0_seg0", + "3060": "branch0_seg0", + "3061": "branch0_seg0", + "3062": "branch0_seg0", + "3063": "branch0_seg0", + "3064": "branch0_seg0", + "3065": "branch0_seg0", + "3066": "branch0_seg0", + "3067": "branch0_seg0", + "3068": "branch0_seg0", + "3069": "branch0_seg0", + "3070": "branch0_seg0", + "3071": "branch0_seg0", + "3072": "branch0_seg0", + "3073": "branch0_seg0", + "3074": "branch0_seg0", + "3075": "branch0_seg0", + "3076": "branch0_seg0", + "3077": "branch0_seg0", + "3078": "branch0_seg0", + "3079": "branch0_seg0", + "3080": "branch0_seg0", + "3081": "branch0_seg0", + "3082": "branch0_seg0", + "3083": "branch0_seg0", + "3084": "branch0_seg0", + "3085": "branch0_seg0", + "3086": "branch0_seg0", + "3087": "branch0_seg0", + "3088": "branch0_seg0", + "3089": "branch0_seg0", + "3090": "branch0_seg0", + "3091": "branch0_seg0", + "3092": "branch0_seg0", + "3093": "branch0_seg0", + "3094": "branch0_seg0", + "3095": "branch0_seg0", + "3096": "branch0_seg0", + "3097": "branch0_seg0", + "3098": "branch0_seg0", + "3099": "branch0_seg0", + "3100": "branch0_seg0", + "3101": "branch0_seg0", + "3102": "branch0_seg0", + "3103": "branch0_seg0", + "3104": "branch0_seg0", + "3105": "branch0_seg0", + "3106": "branch0_seg0", + "3107": "branch0_seg0", + "3108": "branch0_seg0", + "3109": "branch0_seg0", + "3110": "branch0_seg0", + "3111": "branch0_seg0", + "3112": "branch0_seg0", + "3113": "branch0_seg0", + "3114": "branch0_seg0", + "3115": "branch0_seg0", + "3116": "branch0_seg0", + "3117": "branch0_seg0", + "3118": "branch0_seg0", + "3119": "branch0_seg0", + "3120": "branch0_seg0", + "3121": "branch0_seg0", + "3122": "branch0_seg0", + "3123": "branch0_seg0", + "3124": "branch0_seg0", + "3125": "branch0_seg0", + "3126": "branch0_seg0", + "3127": "branch0_seg0", + "3128": "branch0_seg0", + "3129": "branch0_seg0", + "3130": "branch0_seg0", + "3131": "branch0_seg0", + "3132": "branch0_seg0", + "3133": "branch0_seg0", + "3134": "branch0_seg0", + "3135": "branch0_seg0", + "3136": "branch0_seg0", + "3137": "branch0_seg0", + "3138": "branch0_seg0", + "3139": "branch0_seg0", + "3140": "branch0_seg0", + "3141": "branch0_seg0", + "3142": "branch0_seg0", + "3143": "branch0_seg0", + "3144": "branch0_seg0", + "3145": "branch0_seg0", + "3146": "branch0_seg0", + "3147": "branch0_seg0", + "3148": "branch0_seg0", + "3149": "branch0_seg0", + "3150": "branch0_seg0", + "3151": "branch0_seg0", + "3152": "branch0_seg0", + "3153": "branch0_seg0", + "3154": "branch0_seg0", + "3155": "branch0_seg0", + "3156": "branch0_seg0", + "3157": "branch0_seg0", + "3158": "branch0_seg0", + "3159": "branch0_seg0", + "3160": "branch0_seg0", + "3161": "branch0_seg0", + "3162": "branch0_seg0", + "3163": "branch0_seg0", + "3164": "branch0_seg0", + "3165": "branch0_seg0", + "3166": "branch0_seg0", + "3167": "branch0_seg0", + "3168": "branch0_seg0", + "3169": "branch0_seg0", + "3170": "branch0_seg0", + "3171": "branch0_seg0", + "3172": "branch0_seg0", + "3173": "branch0_seg0", + "3174": "branch0_seg0", + "3175": "branch0_seg0", + "3176": "branch0_seg0", + "3177": "branch0_seg0", + "3178": "branch0_seg0", + "3179": "branch0_seg0", + "3180": "branch0_seg0", + "3181": "branch0_seg0", + "3182": "branch0_seg0", + "3183": "branch0_seg0", + "3184": "branch0_seg0", + "3185": "branch0_seg0", + "3186": "branch0_seg0", + "3187": "branch0_seg0", + "3188": "branch0_seg0", + "3189": "branch0_seg0", + "3190": "branch0_seg0", + "3191": "branch0_seg0", + "3192": "branch0_seg0", + "3193": "branch0_seg0", + "3194": "branch0_seg0", + "3195": "branch0_seg0", + "3196": "branch0_seg0", + "3197": "branch0_seg0", + "3198": "branch0_seg0", + "3199": "branch0_seg0", + "3200": "branch0_seg0", + "3201": "branch0_seg0", + "3202": "branch0_seg0", + "3203": "branch0_seg0", + "3204": "branch0_seg0", + "3205": "branch0_seg0", + "3206": "branch0_seg0", + "3207": "branch0_seg0", + "3208": "branch0_seg0", + "3209": "branch0_seg0", + "3210": "branch0_seg0", + "3211": "branch0_seg0", + "3212": "branch0_seg0", + "3213": "branch0_seg0", + "3214": "branch0_seg0", + "3215": "branch0_seg0", + "3216": "branch0_seg0", + "3217": "branch0_seg0", + "3218": "branch0_seg0", + "3219": "branch0_seg0", + "3220": "branch0_seg0", + "3221": "branch0_seg0", + "3222": "branch0_seg0", + "3223": "branch0_seg0", + "3224": "branch0_seg0", + "3225": "branch0_seg0", + "3226": "branch0_seg0", + "3227": "branch0_seg0", + "3228": "branch0_seg0", + "3229": "branch0_seg0", + "3230": "branch0_seg0", + "3231": "branch0_seg0", + "3232": "branch0_seg0", + "3233": "branch0_seg0", + "3234": "branch0_seg0", + "3235": "branch0_seg0", + "3236": "branch0_seg0", + "3237": "branch0_seg0", + "3238": "branch0_seg0", + "3239": "branch0_seg0", + "3240": "branch0_seg0", + "3241": "branch0_seg0", + "3242": "branch0_seg0", + "3243": "branch0_seg0", + "3244": "branch0_seg0", + "3245": "branch0_seg0", + "3246": "branch0_seg0", + "3247": "branch0_seg0", + "3248": "branch0_seg0", + "3249": "branch0_seg0", + "3250": "branch0_seg0", + "3251": "branch0_seg0", + "3252": "branch0_seg0", + "3253": "branch0_seg0", + "3254": "branch0_seg0", + "3255": "branch0_seg0", + "3256": "branch0_seg0", + "3257": "branch0_seg0", + "3258": "branch0_seg0", + "3259": "branch0_seg0", + "3260": "branch0_seg0", + "3261": "branch0_seg0", + "3262": "branch0_seg0", + "3263": "branch0_seg0", + "3264": "branch0_seg0", + "3265": "branch0_seg0", + "3266": "branch0_seg0", + "3267": "branch0_seg0", + "3268": "branch0_seg0", + "3269": "branch0_seg0", + "3270": "branch0_seg0", + "3271": "branch0_seg0", + "3272": "branch0_seg0", + "3273": "branch0_seg0", + "3274": "branch0_seg0", + "3275": "branch0_seg0", + "3276": "branch0_seg0", + "3277": "branch0_seg0", + "3278": "branch0_seg0", + "3279": "branch0_seg0", + "3280": "branch0_seg0", + "3281": "branch0_seg0", + "3282": "branch0_seg0", + "3283": "branch0_seg0", + "3284": "branch0_seg0", + "3285": "branch0_seg0", + "3286": "branch0_seg0", + "3287": "branch0_seg0", + "3288": "branch0_seg0", + "3289": "branch0_seg0", + "3290": "branch0_seg0", + "3291": "branch0_seg0", + "3292": "branch0_seg0", + "3293": "branch0_seg0", + "3294": "branch0_seg0", + "3295": "branch0_seg0", + "3296": "branch0_seg0", + "3297": "branch0_seg0", + "3298": "branch0_seg0", + "3299": "branch0_seg0", + "3300": "branch0_seg0", + "3301": "branch0_seg0", + "3302": "branch0_seg0", + "3303": "branch0_seg0", + "3304": "branch0_seg0", + "3305": "branch0_seg0", + "3306": "branch0_seg0", + "3307": "branch0_seg0", + "3308": "branch0_seg0", + "3309": "branch0_seg0", + "3310": "branch0_seg0", + "3311": "branch0_seg0", + "3312": "branch0_seg0", + "3313": "branch0_seg0", + "3314": "branch0_seg0", + "3315": "branch0_seg0", + "3316": "branch0_seg0", + "3317": "branch0_seg0", + "3318": "branch0_seg0", + "3319": "branch0_seg0", + "3320": "branch0_seg0", + "3321": "branch0_seg0", + "3322": "branch0_seg0", + "3323": "branch0_seg0", + "3324": "branch0_seg0", + "3325": "branch0_seg0", + "3326": "branch0_seg0", + "3327": "branch0_seg0", + "3328": "branch0_seg0", + "3329": "branch0_seg0", + "3330": "branch0_seg0", + "3331": "branch0_seg0", + "3332": "branch0_seg0", + "3333": "branch0_seg0", + "3334": "branch0_seg0", + "3335": "branch0_seg0", + "3336": "branch0_seg0", + "3337": "branch0_seg0", + "3338": "branch0_seg0", + "3339": "branch0_seg0", + "3340": "branch0_seg0", + "3341": "branch0_seg0", + "3342": "branch0_seg0", + "3343": "branch0_seg0", + "3344": "branch0_seg0", + "3345": "branch0_seg0", + "3346": "branch0_seg0", + "3347": "branch0_seg0", + "3348": "branch0_seg0", + "3349": "branch0_seg0", + "3350": "branch0_seg0", + "3351": "branch0_seg0", + "3352": "branch0_seg0", + "3353": "branch0_seg0", + "3354": "branch0_seg0", + "3355": "branch0_seg0", + "3356": "branch0_seg0", + "3357": "branch0_seg0", + "3358": "branch0_seg0", + "3359": "branch0_seg0", + "3360": "branch0_seg0", + "3361": "branch0_seg0", + "3362": "branch0_seg0", + "3363": "branch0_seg0", + "3364": "branch0_seg0", + "3365": "branch0_seg0", + "3366": "branch0_seg0", + "3367": "branch0_seg0", + "3368": "branch0_seg0", + "3369": "branch0_seg0", + "3370": "branch0_seg0", + "3371": "branch0_seg0", + "3372": "branch0_seg0", + "3373": "branch0_seg0", + "3374": "branch0_seg0", + "3375": "branch0_seg0", + "3376": "branch0_seg0", + "3377": "branch0_seg0", + "3378": "branch0_seg0", + "3379": "branch0_seg0", + "3380": "branch0_seg0", + "3381": "branch0_seg0", + "3382": "branch0_seg0", + "3383": "branch0_seg0", + "3384": "branch0_seg0", + "3385": "branch0_seg0", + "3386": "branch0_seg0", + "3387": "branch0_seg0", + "3388": "branch0_seg0", + "3389": "branch0_seg0", + "3390": "branch0_seg0", + "3391": "branch0_seg0", + "3392": "branch0_seg0", + "3393": "branch0_seg0", + "3394": "branch0_seg0", + "3395": "branch0_seg0", + "3396": "branch0_seg0", + "3397": "branch0_seg0", + "3398": "branch0_seg0", + "3399": "branch0_seg0", + "3400": "branch0_seg0", + "3401": "branch0_seg0", + "3402": "branch0_seg0", + "3403": "branch0_seg0", + "3404": "branch0_seg0", + "3405": "branch0_seg0", + "3406": "branch0_seg0", + "3407": "branch0_seg0", + "3408": "branch0_seg0", + "3409": "branch0_seg0", + "3410": "branch0_seg0", + "3411": "branch0_seg0", + "3412": "branch0_seg0", + "3413": "branch0_seg0", + "3414": "branch0_seg0", + "3415": "branch0_seg0", + "3416": "branch0_seg0", + "3417": "branch0_seg0", + "3418": "branch0_seg0", + "3419": "branch0_seg0", + "3420": "branch0_seg0", + "3421": "branch0_seg0", + "3422": "branch0_seg0", + "3423": "branch0_seg0", + "3424": "branch0_seg0", + "3425": "branch0_seg0", + "3426": "branch0_seg0", + "3427": "branch0_seg0", + "3428": "branch0_seg0", + "3429": "branch0_seg0", + "3430": "branch0_seg0", + "3431": "branch0_seg0", + "3432": "branch0_seg0", + "3433": "branch0_seg0", + "3434": "branch0_seg0", + "3435": "branch0_seg0", + "3436": "branch0_seg0", + "3437": "branch0_seg0", + "3438": "branch0_seg0", + "3439": "branch0_seg0", + "3440": "branch0_seg0", + "3441": "branch0_seg0", + "3442": "branch0_seg0", + "3443": "branch0_seg0", + "3444": "branch0_seg0", + "3445": "branch0_seg0", + "3446": "branch0_seg0", + "3447": "branch0_seg0", + "3448": "branch0_seg0", + "3449": "branch0_seg0", + "3450": "branch0_seg0", + "3451": "branch0_seg0", + "3452": "branch0_seg0", + "3453": "branch0_seg0", + "3454": "branch0_seg0", + "3455": "branch0_seg0", + "3456": "branch0_seg0", + "3457": "branch0_seg0", + "3458": "branch0_seg0", + "3459": "branch0_seg0", + "3460": "branch0_seg0", + "3461": "branch0_seg0", + "3462": "branch0_seg0", + "3463": "branch0_seg0", + "3464": "branch0_seg0", + "3465": "branch0_seg0", + "3466": "branch0_seg0", + "3467": "branch0_seg0", + "3468": "branch0_seg0", + "3469": "branch0_seg0", + "3470": "branch0_seg0", + "3471": "branch0_seg0", + "3472": "branch0_seg0", + "3473": "branch0_seg0", + "3474": "branch0_seg0", + "3475": "branch0_seg0", + "3476": "branch0_seg0", + "3477": "branch0_seg0", + "3478": "branch0_seg0", + "3479": "branch0_seg0", + "3480": "branch0_seg0", + "3481": "branch0_seg0", + "3482": "branch0_seg0", + "3483": "branch0_seg0", + "3484": "branch0_seg0", + "3485": "branch0_seg0", + "3486": "branch0_seg0", + "3487": "branch0_seg0", + "3488": "branch0_seg0", + "3489": "branch0_seg0", + "3490": "branch0_seg0", + "3491": "branch0_seg0", + "3492": "branch0_seg0", + "3493": "branch0_seg0", + "3494": "branch0_seg0", + "3495": "branch0_seg0", + "3496": "branch0_seg0", + "3497": "branch0_seg0", + "3498": "branch0_seg0", + "3499": "branch0_seg0", + "3500": "branch0_seg0", + "3501": "branch0_seg0", + "3502": "branch0_seg0", + "3503": "branch0_seg0", + "3504": "branch0_seg0", + "3505": "branch0_seg0", + "3506": "branch0_seg0", + "3507": "branch0_seg0", + "3508": "branch0_seg0", + "3509": "branch0_seg0", + "3510": "branch0_seg0", + "3511": "branch0_seg0", + "3512": "branch0_seg0", + "3513": "branch0_seg0", + "3514": "branch0_seg0", + "3515": "branch0_seg0", + "3516": "branch0_seg0", + "3517": "branch0_seg0", + "3518": "branch0_seg0", + "3519": "branch0_seg0", + "3520": "branch0_seg0", + "3521": "branch0_seg0", + "3522": "branch0_seg0", + "3523": "branch0_seg0", + "3524": "branch0_seg0", + "3525": "branch0_seg0", + "3526": "branch0_seg0", + "3527": "branch0_seg0", + "3528": "branch0_seg0", + "3529": "branch0_seg0", + "3530": "branch0_seg0", + "3531": "branch0_seg0", + "3532": "branch0_seg0", + "3533": "branch0_seg0", + "3534": "branch0_seg0", + "3535": "branch0_seg0", + "3536": "branch0_seg0", + "3537": "branch0_seg0", + "3538": "branch0_seg0", + "3539": "branch0_seg0", + "3540": "branch0_seg0", + "3541": "branch0_seg0", + "3542": "branch0_seg0", + "3543": "branch0_seg0", + "3544": "branch0_seg0", + "3545": "branch0_seg0", + "3546": "branch0_seg0", + "3547": "branch0_seg0", + "3548": "branch0_seg0", + "3549": "branch0_seg0", + "3550": "branch0_seg0", + "3551": "branch0_seg0", + "3552": "branch0_seg0", + "3553": "branch0_seg0", + "3554": "branch0_seg0", + "3555": "branch0_seg0", + "3556": "branch0_seg0", + "3557": "branch0_seg0", + "3558": "branch0_seg0", + "3559": "branch0_seg0", + "3560": "branch0_seg0", + "3561": "branch0_seg0", + "3562": "branch0_seg0", + "3563": "branch0_seg0", + "3564": "branch0_seg0", + "3565": "branch0_seg0", + "3566": "branch0_seg0", + "3567": "branch0_seg0", + "3568": "branch0_seg0", + "3569": "branch0_seg0", + "3570": "branch0_seg0", + "3571": "branch0_seg0", + "3572": "branch0_seg0", + "3573": "branch0_seg0", + "3574": "branch0_seg0", + "3575": "branch0_seg0", + "3576": "branch0_seg0", + "3577": "branch0_seg0", + "3578": "branch0_seg0", + "3579": "branch0_seg0", + "3580": "branch0_seg0", + "3581": "branch0_seg0", + "3582": "branch0_seg0", + "3583": "branch0_seg0", + "3584": "branch0_seg0", + "3585": "branch0_seg0", + "3586": "branch0_seg0", + "3587": "branch0_seg0", + "3588": "branch0_seg0", + "3589": "branch0_seg0", + "3590": "branch0_seg0", + "3591": "branch0_seg0", + "3592": "branch0_seg0", + "3593": "branch0_seg0", + "3594": "branch0_seg0", + "3595": "branch0_seg0", + "3596": "branch0_seg0", + "3597": "branch0_seg0", + "3598": "branch0_seg0", + "3599": "branch0_seg0", + "3600": "branch0_seg0", + "3601": "branch0_seg0", + "3602": "branch0_seg0", + "3603": "branch0_seg0", + "3604": "branch0_seg0", + "3605": "branch0_seg0", + "3606": "branch0_seg0", + "3607": "branch0_seg0", + "3608": "branch0_seg0", + "3609": "branch0_seg0", + "3610": "branch0_seg0", + "3611": "branch0_seg0", + "3612": "branch0_seg0", + "3613": "branch0_seg0", + "3614": "branch0_seg0", + "3615": "branch0_seg0", + "3616": "branch0_seg0", + "3617": "branch0_seg0", + "3618": "branch0_seg0", + "3619": "branch0_seg0", + "3620": "branch0_seg0", + "3621": "branch0_seg0", + "3622": "branch0_seg0", + "3623": "branch0_seg0", + "3624": "branch0_seg0", + "3625": "branch0_seg0", + "3626": "branch0_seg0", + "3627": "branch0_seg0", + "3628": "branch0_seg0", + "3629": "branch0_seg0", + "3630": "branch0_seg0", + "3631": "branch0_seg0", + "3632": "branch0_seg0", + "3633": "branch0_seg0", + "3634": "branch0_seg0", + "3635": "branch0_seg0", + "3636": "branch0_seg0", + "3637": "branch0_seg0", + "3638": "branch0_seg0", + "3639": "branch0_seg0", + "3640": "branch0_seg0", + "3641": "branch0_seg0", + "3642": "branch0_seg0", + "3643": "branch0_seg0", + "3644": "branch0_seg0", + "3645": "branch0_seg0", + "3646": "branch0_seg0", + "3647": "branch0_seg0", + "3648": "branch0_seg0", + "3649": "branch0_seg0", + "3650": "branch0_seg0", + "3651": "branch0_seg0", + "3652": "branch0_seg0", + "3653": "branch0_seg0", + "3654": "branch0_seg0", + "3655": "branch0_seg0", + "3656": "branch0_seg0", + "3657": "branch0_seg0", + "3658": "branch0_seg0", + "3659": "branch0_seg0", + "3660": "branch0_seg0", + "3661": "branch0_seg0", + "3662": "branch0_seg0", + "3663": "branch0_seg0", + "3664": "branch0_seg0", + "3665": "branch0_seg0", + "3666": "branch0_seg0", + "3667": "branch0_seg0", + "3668": "branch0_seg0", + "3669": "branch0_seg0", + "3670": "branch0_seg0", + "3671": "branch0_seg0", + "3672": "branch0_seg0", + "3673": "branch0_seg0", + "3674": "branch0_seg0", + "3675": "branch0_seg0", + "3676": "branch0_seg0", + "3677": "branch0_seg0", + "3678": "branch0_seg0", + "3679": "branch0_seg0", + "3680": "branch0_seg0", + "3681": "branch0_seg0", + "3682": "branch0_seg0", + "3683": "branch0_seg0", + "3684": "branch0_seg0", + "3685": "branch0_seg0", + "3686": "branch0_seg0", + "3687": "branch0_seg0", + "3688": "branch0_seg0", + "3689": "branch0_seg0", + "3690": "branch0_seg0", + "3691": "branch0_seg0", + "3692": "branch0_seg0", + "3693": "branch0_seg0", + "3694": "branch0_seg0", + "3695": "branch0_seg0", + "3696": "branch0_seg0", + "3697": "branch0_seg0", + "3698": "branch0_seg0", + "3699": "branch0_seg0", + "3700": "branch0_seg0", + "3701": "branch0_seg0", + "3702": "branch0_seg0", + "3703": "branch0_seg0", + "3704": "branch0_seg0", + "3705": "branch0_seg0", + "3706": "branch0_seg0", + "3707": "branch0_seg0", + "3708": "branch0_seg0", + "3709": "branch0_seg0", + "3710": "branch0_seg0", + "3711": "branch0_seg0", + "3712": "branch0_seg0", + "3713": "branch0_seg0", + "3714": "branch0_seg0", + "3715": "branch0_seg0", + "3716": "branch0_seg0", + "3717": "branch0_seg0", + "3718": "branch0_seg0", + "3719": "branch0_seg0", + "3720": "branch0_seg0", + "3721": "branch0_seg0", + "3722": "branch0_seg0", + "3723": "branch0_seg0", + "3724": "branch0_seg0", + "3725": "branch0_seg0", + "3726": "branch0_seg0", + "3727": "branch0_seg0", + "3728": "branch0_seg0", + "3729": "branch0_seg0", + "3730": "branch0_seg0", + "3731": "branch0_seg0", + "3732": "branch0_seg0", + "3733": "branch0_seg0", + "3734": "branch0_seg0", + "3735": "branch0_seg0", + "3736": "branch0_seg0", + "3737": "branch0_seg0", + "3738": "branch0_seg0", + "3739": "branch0_seg0", + "3740": "branch0_seg0", + "3741": "branch0_seg0", + "3742": "branch0_seg0", + "3743": "branch0_seg0", + "3744": "branch0_seg0", + "3745": "branch0_seg0", + "3746": "branch0_seg0", + "3747": "branch0_seg0", + "3748": "branch0_seg0", + "3749": "branch0_seg0", + "3750": "branch0_seg0", + "3751": "branch0_seg0", + "3752": "branch0_seg0", + "3753": "branch0_seg0", + "3754": "branch0_seg0", + "3755": "branch0_seg0", + "3756": "branch0_seg0", + "3757": "branch0_seg0", + "3758": "branch0_seg0", + "3759": "branch0_seg0", + "3760": "branch0_seg0", + "3761": "branch0_seg0", + "3762": "branch0_seg0", + "3763": "branch0_seg0", + "3764": "branch0_seg0", + "3765": "branch0_seg0", + "3766": "branch0_seg0", + "3767": "branch0_seg0", + "3768": "branch0_seg0", + "3769": "branch0_seg0", + "3770": "branch0_seg0", + "3771": "branch0_seg0", + "3772": "branch0_seg0", + "3773": "branch0_seg0", + "3774": "branch0_seg0", + "3775": "branch0_seg0", + "3776": "branch0_seg0", + "3777": "branch0_seg0", + "3778": "branch0_seg0", + "3779": "branch0_seg0", + "3780": "branch0_seg0", + "3781": "branch0_seg0", + "3782": "branch0_seg0", + "3783": "branch0_seg0", + "3784": "branch0_seg0", + "3785": "branch0_seg0", + "3786": "branch0_seg0", + "3787": "branch0_seg0", + "3788": "branch0_seg0", + "3789": "branch0_seg0", + "3790": "branch0_seg0", + "3791": "branch0_seg0", + "3792": "branch0_seg0", + "3793": "branch0_seg0", + "3794": "branch0_seg0", + "3795": "branch0_seg0", + "3796": "branch0_seg0", + "3797": "branch0_seg0", + "3798": "branch0_seg0", + "3799": "branch0_seg0", + "3800": "branch0_seg0", + "3801": "branch0_seg0", + "3802": "branch0_seg0", + "3803": "branch0_seg0", + "3804": "branch0_seg0", + "3805": "branch0_seg0", + "3806": "branch0_seg0", + "3807": "branch0_seg0", + "3808": "branch0_seg0", + "3809": "branch0_seg0", + "3810": "branch0_seg0", + "3811": "branch0_seg0", + "3812": "branch0_seg0", + "3813": "branch0_seg0", + "3814": "branch0_seg0", + "3815": "branch0_seg0", + "3816": "branch0_seg0", + "3817": "branch0_seg0", + "3818": "branch0_seg0", + "3819": "branch0_seg0", + "3820": "branch0_seg0", + "3821": "branch0_seg0", + "3822": "branch0_seg0", + "3823": "branch0_seg0", + "3824": "branch0_seg0", + "3825": "branch0_seg0", + "3826": "branch0_seg0", + "3827": "branch0_seg0", + "3828": "branch0_seg0", + "3829": "branch0_seg0", + "3830": "branch0_seg0", + "3831": "branch0_seg0", + "3832": "branch0_seg0", + "3833": "branch0_seg0", + "3834": "branch0_seg0", + "3835": "branch0_seg0", + "3836": "branch0_seg0", + "3837": "branch0_seg0", + "3838": "branch0_seg0", + "3839": "branch0_seg0", + "3840": "branch0_seg0", + "3841": "branch0_seg0", + "3842": "branch0_seg0", + "3843": "branch0_seg0", + "3844": "branch0_seg0", + "3845": "branch0_seg0", + "3846": "branch0_seg0", + "3847": "branch0_seg0", + "3848": "branch0_seg0", + "3849": "branch0_seg0", + "3850": "branch0_seg0", + "3851": "branch0_seg0", + "3852": "branch0_seg0", + "3853": "branch0_seg0", + "3854": "branch0_seg0", + "3855": "branch0_seg0", + "3856": "branch0_seg0", + "3857": "branch0_seg0", + "3858": "branch0_seg0", + "3859": "branch0_seg0", + "3860": "branch0_seg0", + "3861": "branch0_seg0", + "3862": "branch0_seg0", + "3863": "branch0_seg0", + "3864": "branch0_seg0", + "3865": "branch0_seg0", + "3866": "branch0_seg0", + "3867": "branch0_seg0", + "3868": "branch0_seg0", + "3869": "branch0_seg0", + "3870": "branch0_seg0", + "3871": "branch0_seg0", + "3872": "branch0_seg0", + "3873": "branch0_seg0", + "3874": "branch0_seg0", + "3875": "branch0_seg0", + "3876": "branch0_seg0", + "3877": "branch0_seg0", + "3878": "branch0_seg0", + "3879": "branch0_seg0", + "3880": "branch0_seg0", + "3881": "branch0_seg0", + "3882": "branch0_seg0", + "3883": "branch0_seg0", + "3884": "branch0_seg0", + "3885": "branch0_seg0", + "3886": "branch0_seg0", + "3887": "branch0_seg0", + "3888": "branch0_seg0", + "3889": "branch0_seg0", + "3890": "branch0_seg0", + "3891": "branch0_seg0", + "3892": "branch0_seg0", + "3893": "branch0_seg0", + "3894": "branch0_seg0", + "3895": "branch0_seg0", + "3896": "branch0_seg0", + "3897": "branch0_seg0", + "3898": "branch0_seg0", + "3899": "branch0_seg0", + "3900": "branch0_seg0", + "3901": "branch0_seg0", + "3902": "branch0_seg0", + "3903": "branch0_seg0", + "3904": "branch0_seg0", + "3905": "branch0_seg0", + "3906": "branch0_seg0", + "3907": "branch0_seg0", + "3908": "branch0_seg0", + "3909": "branch0_seg0", + "3910": "branch0_seg0", + "3911": "branch0_seg0", + "3912": "branch0_seg0", + "3913": "branch0_seg0", + "3914": "branch0_seg0", + "3915": "branch0_seg0", + "3916": "branch0_seg0", + "3917": "branch0_seg0", + "3918": "branch0_seg0", + "3919": "branch0_seg0", + "3920": "branch0_seg0", + "3921": "branch0_seg0", + "3922": "branch0_seg0", + "3923": "branch0_seg0", + "3924": "branch0_seg0", + "3925": "branch0_seg0", + "3926": "branch0_seg0", + "3927": "branch0_seg0", + "3928": "branch0_seg0", + "3929": "branch0_seg0", + "3930": "branch0_seg0", + "3931": "branch0_seg0", + "3932": "branch0_seg0", + "3933": "branch0_seg0", + "3934": "branch0_seg0", + "3935": "branch0_seg0", + "3936": "branch0_seg0", + "3937": "branch0_seg0", + "3938": "branch0_seg0", + "3939": "branch0_seg0", + "3940": "branch0_seg0", + "3941": "branch0_seg0", + "3942": "branch0_seg0", + "3943": "branch0_seg0", + "3944": "branch0_seg0", + "3945": "branch0_seg0", + "3946": "branch0_seg0", + "3947": "branch0_seg0", + "3948": "branch0_seg0", + "3949": "branch0_seg0", + "3950": "branch0_seg0", + "3951": "branch0_seg0", + "3952": "branch0_seg0", + "3953": "branch0_seg0", + "3954": "branch0_seg0", + "3955": "branch0_seg0", + "3956": "branch0_seg0", + "3957": "branch0_seg0", + "3958": "branch0_seg0", + "3959": "branch0_seg0", + "3960": "branch0_seg0", + "3961": "branch0_seg0", + "3962": "branch0_seg0", + "3963": "branch0_seg0", + "3964": "branch0_seg0", + "3965": "branch0_seg0", + "3966": "branch0_seg0", + "3967": "branch0_seg0", + "3968": "branch0_seg0", + "3969": "branch0_seg0", + "3970": "branch0_seg0", + "3971": "branch0_seg0", + "3972": "branch0_seg0", + "3973": "branch0_seg0", + "3974": "branch0_seg0", + "3975": "branch0_seg0", + "3976": "branch0_seg0", + "3977": "branch0_seg0", + "3978": "branch0_seg0", + "3979": "branch0_seg0", + "3980": "branch0_seg0", + "3981": "branch0_seg0", + "3982": "branch0_seg0", + "3983": "branch0_seg0", + "3984": "branch0_seg0", + "3985": "branch0_seg0", + "3986": "branch0_seg0", + "3987": "branch0_seg0", + "3988": "branch0_seg0", + "3989": "branch0_seg0", + "3990": "branch0_seg0", + "3991": "branch0_seg0", + "3992": "branch0_seg0", + "3993": "branch0_seg0", + "3994": "branch0_seg0", + "3995": "branch0_seg0", + "3996": "branch0_seg0", + "3997": "branch0_seg0", + "3998": "branch0_seg0", + "3999": "branch0_seg0", + "4000": "branch0_seg0", + "4001": "branch0_seg0", + "4002": "branch0_seg0", + "4003": "branch0_seg0", + "4004": "branch0_seg0", + "4005": "branch0_seg0", + "4006": "branch0_seg0", + "4007": "branch0_seg0", + "4008": "branch0_seg0", + "4009": "branch0_seg0", + "4010": "branch0_seg0", + "4011": "branch0_seg0", + "4012": "branch0_seg0", + "4013": "branch0_seg0", + "4014": "branch0_seg0", + "4015": "branch0_seg0", + "4016": "branch0_seg0", + "4017": "branch0_seg0", + "4018": "branch0_seg0", + "4019": "branch0_seg0", + "4020": "branch0_seg0", + "4021": "branch0_seg0", + "4022": "branch0_seg0", + "4023": "branch0_seg0", + "4024": "branch0_seg0", + "4025": "branch0_seg0", + "4026": "branch0_seg0", + "4027": "branch0_seg0", + "4028": "branch0_seg0", + "4029": "branch0_seg0", + "4030": "branch0_seg0", + "4031": "branch0_seg0", + "4032": "branch0_seg0", + "4033": "branch0_seg0", + "4034": "branch0_seg0", + "4035": "branch0_seg0", + "4036": "branch0_seg0", + "4037": "branch0_seg0", + "4038": "branch0_seg0", + "4039": "branch0_seg0", + "4040": "branch0_seg0", + "4041": "branch0_seg0", + "4042": "branch0_seg0", + "4043": "branch0_seg0", + "4044": "branch0_seg0", + "4045": "branch0_seg0", + "4046": "branch0_seg0", + "4047": "branch0_seg0", + "4048": "branch0_seg0", + "4049": "branch0_seg0", + "4050": "branch0_seg0", + "4051": "branch0_seg0", + "4052": "branch0_seg0", + "4053": "branch0_seg0", + "4054": "branch0_seg0", + "4055": "branch0_seg0", + "4056": "branch0_seg0", + "4057": "branch0_seg0", + "4058": "branch0_seg0", + "4059": "branch0_seg0", + "4060": "branch0_seg0", + "4061": "branch0_seg0", + "4062": "branch0_seg0", + "4063": "branch0_seg0", + "4064": "branch0_seg0", + "4065": "branch0_seg0", + "4066": "branch0_seg0", + "4067": "branch0_seg0", + "4068": "branch0_seg0", + "4069": "branch0_seg0", + "4070": "branch0_seg0", + "4071": "branch0_seg0", + "4072": "branch0_seg0", + "4073": "branch0_seg0", + "4074": "branch0_seg0", + "4075": "branch0_seg0", + "4076": "branch0_seg0", + "4077": "branch0_seg0", + "4078": "branch0_seg0", + "4079": "branch0_seg0", + "4080": "branch0_seg0", + "4081": "branch0_seg0", + "4082": "branch0_seg0", + "4083": "branch0_seg0", + "4084": "branch0_seg0", + "4085": "branch0_seg0", + "4086": "branch0_seg0", + "4087": "branch0_seg0", + "4088": "branch0_seg0", + "4089": "branch0_seg0", + "4090": "branch0_seg0", + "4091": "branch0_seg0", + "4092": "branch0_seg0", + "4093": "branch0_seg0", + "4094": "branch0_seg0", + "4095": "branch0_seg0", + "4096": "branch0_seg0", + "4097": "branch0_seg0", + "4098": "branch0_seg0", + "4099": "branch0_seg0", + "4100": "branch0_seg0", + "4101": "branch0_seg0", + "4102": "branch0_seg0", + "4103": "branch0_seg0", + "4104": "branch0_seg0", + "4105": "branch0_seg0", + "4106": "branch0_seg0", + "4107": "branch0_seg0", + "4108": "branch0_seg0", + "4109": "branch0_seg0", + "4110": "branch0_seg0", + "4111": "branch0_seg0", + "4112": "branch0_seg0", + "4113": "branch0_seg0", + "4114": "branch0_seg0", + "4115": "branch0_seg0", + "4116": "branch0_seg0", + "4117": "branch0_seg0", + "4118": "branch0_seg0", + "4119": "branch0_seg0", + "4120": "branch0_seg0", + "4121": "branch0_seg0", + "4122": "branch0_seg0", + "4123": "branch0_seg0", + "4124": "branch0_seg0", + "4125": "branch0_seg0", + "4126": "branch0_seg0", + "4127": "branch0_seg0", + "4128": "branch0_seg0", + "4129": "branch0_seg0", + "4130": "branch0_seg0", + "4131": "branch0_seg0", + "4132": "branch0_seg0", + "4133": "branch0_seg0", + "4134": "branch0_seg0", + "4135": "branch0_seg0", + "4136": "branch0_seg0", + "4137": "branch0_seg0", + "4138": "branch0_seg0", + "4139": "branch0_seg0", + "4140": "branch0_seg0", + "4141": "branch0_seg0", + "4142": "branch0_seg0", + "4143": "branch0_seg0", + "4144": "branch0_seg0", + "4145": "branch0_seg0", + "4146": "branch0_seg0", + "4147": "branch0_seg0", + "4148": "branch0_seg0", + "4149": "branch0_seg0", + "4150": "branch0_seg0", + "4151": "branch0_seg0", + "4152": "branch0_seg0", + "4153": "branch0_seg0", + "4154": "branch0_seg0", + "4155": "branch0_seg0", + "4156": "branch0_seg0", + "4157": "branch0_seg0", + "4158": "branch0_seg0", + "4159": "branch0_seg0", + "4160": "branch0_seg0", + "4161": "branch0_seg0", + "4162": "branch0_seg0", + "4163": "branch0_seg0", + "4164": "branch0_seg0", + "4165": "branch0_seg0", + "4166": "branch0_seg0", + "4167": "branch0_seg0", + "4168": "branch0_seg0", + "4169": "branch0_seg0", + "4170": "branch0_seg0", + "4171": "branch0_seg0", + "4172": "branch0_seg0", + "4173": "branch0_seg0", + "4174": "branch0_seg0", + "4175": "branch0_seg0", + "4176": "branch0_seg0", + "4177": "branch0_seg0", + "4178": "branch0_seg0", + "4179": "branch0_seg0", + "4180": "branch0_seg0", + "4181": "branch0_seg0", + "4182": "branch0_seg0", + "4183": "branch0_seg0", + "4184": "branch0_seg0", + "4185": "branch0_seg0", + "4186": "branch0_seg0", + "4187": "branch0_seg0", + "4188": "branch0_seg0", + "4189": "branch0_seg0", + "4190": "branch0_seg0", + "4191": "branch0_seg0", + "4192": "branch0_seg0", + "4193": "branch0_seg0", + "4194": "branch0_seg0", + "4195": "branch0_seg0", + "4196": "branch0_seg0", + "4197": "branch0_seg0", + "4198": "branch0_seg0", + "4199": "branch0_seg0", + "4200": "branch0_seg0", + "4201": "branch0_seg0", + "4202": "branch0_seg0", + "4203": "branch0_seg0", + "4204": "branch0_seg0", + "4205": "branch0_seg0", + "4206": "branch0_seg0", + "4207": "branch0_seg0", + "4208": "branch0_seg0", + "4209": "branch0_seg0", + "4210": "branch0_seg0", + "4211": "branch0_seg0", + "4212": "branch0_seg0", + "4213": "branch0_seg0", + "4214": "branch0_seg0", + "4215": "branch0_seg0", + "4216": "branch0_seg0", + "4217": "branch0_seg0", + "4218": "branch0_seg0", + "4219": "branch0_seg0", + "4220": "branch0_seg0", + "4221": "branch0_seg0", + "4222": "branch0_seg0", + "4223": "branch0_seg0", + "4224": "branch0_seg0", + "4225": "branch0_seg0", + "4226": "branch0_seg0", + "4227": "branch0_seg0", + "4228": "branch0_seg0", + "4229": "branch0_seg0", + "4230": "branch0_seg0", + "4231": "branch0_seg0", + "4232": "branch0_seg0", + "4233": "branch0_seg0", + "4234": "branch0_seg0", + "4235": "branch0_seg0", + "4236": "branch0_seg0", + "4237": "branch0_seg0", + "4238": "branch0_seg0", + "4239": "branch0_seg0", + "4240": "branch0_seg0", + "4241": "branch0_seg0", + "4242": "branch0_seg0", + "4243": "branch0_seg0", + "4244": "branch0_seg0", + "4245": "branch0_seg0", + "4246": "branch0_seg0", + "4247": "branch0_seg0", + "4248": "branch0_seg0", + "4249": "branch0_seg0", + "4250": "branch0_seg0", + "4251": "branch0_seg0", + "4252": "branch0_seg0", + "4253": "branch0_seg0", + "4254": "branch0_seg0", + "4255": "branch0_seg0", + "4256": "branch0_seg0", + "4257": "branch0_seg0", + "4258": "branch0_seg0", + "4259": "branch0_seg0", + "4260": "branch0_seg0", + "4261": "branch0_seg0", + "4262": "branch0_seg0", + "4263": "branch0_seg0", + "4264": "branch0_seg0", + "4265": "branch0_seg0", + "4266": "branch0_seg0", + "4267": "branch0_seg0", + "4268": "branch0_seg0", + "4269": "branch0_seg0", + "4270": "branch0_seg0", + "4271": "branch0_seg0", + "4272": "branch0_seg0", + "4273": "branch0_seg0", + "4274": "branch0_seg0", + "4275": "branch0_seg0", + "4276": "branch0_seg0", + "4277": "branch0_seg0", + "4278": "branch0_seg0", + "4279": "branch0_seg0", + "4280": "branch0_seg0", + "4281": "branch0_seg0", + "4282": "branch0_seg0", + "4283": "branch0_seg0", + "4284": "branch0_seg0", + "4285": "branch0_seg0", + "4286": "branch0_seg0", + "4287": "branch0_seg0", + "4288": "branch0_seg0", + "4289": "branch0_seg0", + "4290": "branch0_seg0", + "4291": "branch0_seg0", + "4292": "branch0_seg0", + "4293": "branch0_seg0", + "4294": "branch0_seg0", + "4295": "branch0_seg0", + "4296": "branch0_seg0", + "4297": "branch0_seg0", + "4298": "branch0_seg0", + "4299": "branch0_seg0", + "4300": "branch0_seg0", + "4301": "branch0_seg0", + "4302": "branch0_seg0", + "4303": "branch0_seg0", + "4304": "branch0_seg0", + "4305": "branch0_seg0", + "4306": "branch0_seg0", + "4307": "branch0_seg0", + "4308": "branch0_seg0", + "4309": "branch0_seg0", + "4310": "branch0_seg0", + "4311": "branch0_seg0", + "4312": "branch0_seg0", + "4313": "branch0_seg0", + "4314": "branch0_seg0", + "4315": "branch0_seg0", + "4316": "branch0_seg0", + "4317": "branch0_seg0", + "4318": "branch0_seg0", + "4319": "branch0_seg0", + "4320": "branch0_seg0", + "4321": "branch0_seg0", + "4322": "branch0_seg0", + "4323": "branch0_seg0", + "4324": "branch0_seg0", + "4325": "branch0_seg0", + "4326": "branch0_seg0", + "4327": "branch0_seg0", + "4328": "branch0_seg0", + "4329": "branch0_seg0", + "4330": "branch0_seg0", + "4331": "branch0_seg0", + "4332": "branch0_seg0", + "4333": "branch0_seg0", + "4334": "branch0_seg0", + "4335": "branch0_seg0", + "4336": "branch0_seg0", + "4337": "branch0_seg0", + "4338": "branch0_seg0", + "4339": "branch0_seg0", + "4340": "branch0_seg0", + "4341": "branch0_seg0", + "4342": "branch0_seg0", + "4343": "branch0_seg0", + "4344": "branch0_seg0", + "4345": "branch0_seg0", + "4346": "branch0_seg0", + "4347": "branch0_seg0", + "4348": "branch0_seg0", + "4349": "branch0_seg0", + "4350": "branch0_seg0", + "4351": "branch0_seg0", + "4352": "branch0_seg0", + "4353": "branch0_seg0", + "4354": "branch0_seg0", + "4355": "branch0_seg0", + "4356": "branch0_seg0", + "4357": "branch0_seg0", + "4358": "branch0_seg0", + "4359": "branch0_seg0", + "4360": "branch0_seg0", + "4361": "branch0_seg0", + "4362": "branch0_seg0", + "4363": "branch0_seg0", + "4364": "branch0_seg0", + "4365": "branch0_seg0", + "4366": "branch0_seg0", + "4367": "branch0_seg0", + "4368": "branch0_seg0", + "4369": "branch0_seg0", + "4370": "branch0_seg0", + "4371": "branch0_seg0", + "4372": "branch0_seg0", + "4373": "branch0_seg0", + "4374": "branch0_seg0", + "4375": "branch0_seg0", + "4376": "branch0_seg0", + "4377": "branch0_seg0", + "4378": "branch0_seg0", + "4379": "branch0_seg0", + "4380": "branch0_seg0", + "4381": "branch0_seg0", + "4382": "branch0_seg0", + "4383": "branch0_seg0", + "4384": "branch0_seg0", + "4385": "branch0_seg0", + "4386": "branch0_seg0", + "4387": "branch0_seg0", + "4388": "branch0_seg0", + "4389": "branch0_seg0", + "4390": "branch0_seg0", + "4391": "branch0_seg0", + "4392": "branch0_seg0", + "4393": "branch0_seg0", + "4394": "branch0_seg0", + "4395": "branch0_seg0", + "4396": "branch0_seg0", + "4397": "branch0_seg0", + "4398": "branch0_seg0", + "4399": "branch0_seg0", + "4400": "branch0_seg0", + "4401": "branch0_seg0", + "4402": "branch0_seg0", + "4403": "branch0_seg0", + "4404": "branch0_seg0", + "4405": "branch0_seg0", + "4406": "branch0_seg0", + "4407": "branch0_seg0", + "4408": "branch0_seg0", + "4409": "branch0_seg0", + "4410": "branch0_seg0", + "4411": "branch0_seg0", + "4412": "branch0_seg0", + "4413": "branch0_seg0", + "4414": "branch0_seg0", + "4415": "branch0_seg0", + "4416": "branch0_seg0", + "4417": "branch0_seg0", + "4418": "branch0_seg0", + "4419": "branch0_seg0", + "4420": "branch0_seg0", + "4421": "branch0_seg0", + "4422": "branch0_seg0", + "4423": "branch0_seg0", + "4424": "branch0_seg0", + "4425": "branch0_seg0", + "4426": "branch0_seg0", + "4427": "branch0_seg0", + "4428": "branch0_seg0", + "4429": "branch0_seg0", + "4430": "branch0_seg0", + "4431": "branch0_seg0", + "4432": "branch0_seg0", + "4433": "branch0_seg0", + "4434": "branch0_seg0", + "4435": "branch0_seg0", + "4436": "branch0_seg0", + "4437": "branch0_seg0", + "4438": "branch0_seg0", + "4439": "branch0_seg0", + "4440": "branch0_seg0", + "4441": "branch0_seg0", + "4442": "branch0_seg0", + "4443": "branch0_seg0", + "4444": "branch0_seg0", + "4445": "branch0_seg0", + "4446": "branch0_seg0", + "4447": "branch0_seg0", + "4448": "branch0_seg0", + "4449": "branch0_seg0", + "4450": "branch0_seg0", + "4451": "branch0_seg0", + "4452": "branch0_seg0", + "4453": "branch0_seg0", + "4454": "branch0_seg0", + "4455": "branch0_seg0", + "4456": "branch0_seg0", + "4457": "branch0_seg0", + "4458": "branch0_seg0", + "4459": "branch0_seg0", + "4460": "branch0_seg0", + "4461": "branch0_seg0", + "4462": "branch0_seg0", + "4463": "branch0_seg0", + "4464": "branch0_seg0", + "4465": "branch0_seg0", + "4466": "branch0_seg0", + "4467": "branch0_seg0", + "4468": "branch0_seg0", + "4469": "branch0_seg0", + "4470": "branch0_seg0", + "4471": "branch0_seg0", + "4472": "branch0_seg0", + "4473": "branch0_seg0", + "4474": "branch0_seg0", + "4475": "branch0_seg0", + "4476": "branch0_seg0", + "4477": "branch0_seg0", + "4478": "branch0_seg0", + "4479": "branch0_seg0", + "4480": "branch0_seg0", + "4481": "branch0_seg0", + "4482": "branch0_seg0", + "4483": "branch0_seg0", + "4484": "branch0_seg0", + "4485": "branch0_seg0", + "4486": "branch0_seg0", + "4487": "branch0_seg0", + "4488": "branch0_seg0", + "4489": "branch0_seg0", + "4490": "branch0_seg0", + "4491": "branch0_seg0", + "4492": "branch0_seg0", + "4493": "branch0_seg0", + "4494": "branch0_seg0", + "4495": "branch0_seg0", + "4496": "branch0_seg0", + "4497": "branch0_seg0", + "4498": "branch0_seg0", + "4499": "branch0_seg0", + "4500": "branch0_seg0", + "4501": "branch0_seg0", + "4502": "branch0_seg0", + "4503": "branch0_seg0", + "4504": "branch0_seg0", + "4505": "branch0_seg0", + "4506": "branch0_seg0", + "4507": "branch0_seg0", + "4508": "branch0_seg0", + "4509": "branch0_seg0", + "4510": "branch0_seg0", + "4511": "branch0_seg0", + "4512": "branch0_seg0", + "4513": "branch0_seg0", + "4514": "branch0_seg0", + "4515": "branch0_seg0", + "4516": "branch0_seg0", + "4517": "branch0_seg0", + "4518": "branch0_seg0", + "4519": "branch0_seg0", + "4520": "branch0_seg0", + "4521": "branch0_seg0", + "4522": "branch0_seg0", + "4523": "branch0_seg0", + "4524": "branch0_seg0", + "4525": "branch0_seg0", + "4526": "branch0_seg0", + "4527": "branch0_seg0", + "4528": "branch0_seg0", + "4529": "branch0_seg0", + "4530": "branch0_seg0", + "4531": "branch0_seg0", + "4532": "branch0_seg0", + "4533": "branch0_seg0", + "4534": "branch0_seg0", + "4535": "branch0_seg0", + "4536": "branch0_seg0", + "4537": "branch0_seg0", + "4538": "branch0_seg0", + "4539": "branch0_seg0", + "4540": "branch0_seg0", + "4541": "branch0_seg0", + "4542": "branch0_seg0", + "4543": "branch0_seg0", + "4544": "branch0_seg0", + "4545": "branch0_seg0", + "4546": "branch0_seg0", + "4547": "branch0_seg0", + "4548": "branch0_seg0", + "4549": "branch0_seg0", + "4550": "branch0_seg0", + "4551": "branch0_seg0", + "4552": "branch0_seg0", + "4553": "branch0_seg0", + "4554": "branch0_seg0", + "4555": "branch0_seg0", + "4556": "branch0_seg0", + "4557": "branch0_seg0", + "4558": "branch0_seg0", + "4559": "branch0_seg0", + "4560": "branch0_seg0", + "4561": "branch0_seg0", + "4562": "branch0_seg0", + "4563": "branch0_seg0", + "4564": "branch0_seg0", + "4565": "branch0_seg0", + "4566": "branch0_seg0", + "4567": "branch0_seg0", + "4568": "branch0_seg0", + "4569": "branch0_seg0", + "4570": "branch0_seg0", + "4571": "branch0_seg0", + "4572": "branch0_seg0", + "4573": "branch0_seg0", + "4574": "branch0_seg0", + "4575": "branch0_seg0", + "4576": "branch0_seg0", + "4577": "branch0_seg0", + "4578": "branch0_seg0", + "4579": "branch0_seg0", + "4580": "branch0_seg0", + "4581": "branch0_seg0", + "4582": "branch0_seg0", + "4583": "branch0_seg0", + "4584": "branch0_seg0", + "4585": "branch0_seg0", + "4586": "branch0_seg0", + "4587": "branch0_seg0", + "4588": "branch0_seg0", + "4589": "branch0_seg0", + "4590": "branch0_seg0", + "4591": "branch0_seg0", + "4592": "branch0_seg0", + "4593": "branch0_seg0", + "4594": "branch0_seg0", + "4595": "branch0_seg0", + "4596": "branch0_seg0", + "4597": "branch0_seg0", + "4598": "branch0_seg0", + "4599": "branch0_seg0", + "4600": "branch0_seg0", + "4601": "branch0_seg0", + "4602": "branch0_seg0", + "4603": "branch0_seg0", + "4604": "branch0_seg0", + "4605": "branch0_seg0", + "4606": "branch0_seg0", + "4607": "branch0_seg0", + "4608": "branch0_seg0", + "4609": "branch0_seg0", + "4610": "branch0_seg0", + "4611": "branch0_seg0", + "4612": "branch0_seg0", + "4613": "branch0_seg0", + "4614": "branch0_seg0", + "4615": "branch0_seg0", + "4616": "branch0_seg0", + "4617": "branch0_seg0", + "4618": "branch0_seg0", + "4619": "branch0_seg0", + "4620": "branch0_seg0", + "4621": "branch0_seg0", + "4622": "branch0_seg0", + "4623": "branch0_seg0", + "4624": "branch0_seg0", + "4625": "branch0_seg0", + "4626": "branch0_seg0", + "4627": "branch0_seg0", + "4628": "branch0_seg0", + "4629": "branch0_seg0", + "4630": "branch0_seg0", + "4631": "branch0_seg0", + "4632": "branch0_seg0", + "4633": "branch0_seg0", + "4634": "branch0_seg0", + "4635": "branch0_seg0", + "4636": "branch0_seg0", + "4637": "branch0_seg0", + "4638": "branch0_seg0", + "4639": "branch0_seg0", + "4640": "branch0_seg0", + "4641": "branch0_seg0", + "4642": "branch0_seg0", + "4643": "branch0_seg0", + "4644": "branch0_seg0", + "4645": "branch0_seg0", + "4646": "branch0_seg0", + "4647": "branch0_seg0", + "4648": "branch0_seg0", + "4649": "branch0_seg0", + "4650": "branch0_seg0", + "4651": "branch0_seg0", + "4652": "branch0_seg0", + "4653": "branch0_seg0", + "4654": "branch0_seg0", + "4655": "branch0_seg0", + "4656": "branch0_seg0", + "4657": "branch0_seg0", + "4658": "branch0_seg0", + "4659": "branch0_seg0", + "4660": "branch0_seg0", + "4661": "branch0_seg0", + "4662": "branch0_seg0", + "4663": "branch0_seg0", + "4664": "branch0_seg0", + "4665": "branch0_seg0", + "4666": "branch0_seg0", + "4667": "branch0_seg0", + "4668": "branch0_seg0", + "4669": "branch0_seg0", + "4670": "branch0_seg0", + "4671": "branch0_seg0", + "4672": "branch0_seg0", + "4673": "branch0_seg0", + "4674": "branch0_seg0", + "4675": "branch0_seg0", + "4676": "branch0_seg0", + "4677": "branch0_seg0", + "4678": "branch0_seg0", + "4679": "branch0_seg0", + "4680": "branch0_seg0", + "4681": "branch0_seg0", + "4682": "branch0_seg0", + "4683": "branch0_seg0", + "4684": "branch0_seg0", + "4685": "branch0_seg0", + "4686": "branch0_seg0", + "4687": "branch0_seg0", + "4688": "branch0_seg0", + "4689": "branch0_seg0", + "4690": "branch0_seg0", + "4691": "branch0_seg0", + "4692": "branch0_seg0", + "4693": "branch0_seg0", + "4694": "branch0_seg0", + "4695": "branch0_seg0", + "4696": "branch0_seg0", + "4697": "branch0_seg0", + "4698": "branch0_seg0", + "4699": "branch0_seg0", + "4700": "branch0_seg0", + "4701": "branch0_seg0", + "4702": "branch0_seg0", + "4703": "branch0_seg0", + "4704": "branch0_seg0", + "4705": "branch0_seg0", + "4706": "branch0_seg0", + "4707": "branch0_seg0", + "4708": "branch0_seg0", + "4709": "branch0_seg0", + "4710": "branch0_seg0", + "4711": "branch0_seg0", + "4712": "branch0_seg0", + "4713": "branch0_seg0", + "4714": "branch0_seg0", + "4715": "branch0_seg0", + "4716": "branch0_seg0", + "4717": "branch0_seg0", + "4718": "branch0_seg0", + "4719": "branch0_seg0", + "4720": "branch0_seg0", + "4721": "branch0_seg0", + "4722": "branch0_seg0", + "4723": "branch0_seg0", + "4724": "branch0_seg0", + "4725": "branch0_seg0", + "4726": "branch0_seg0", + "4727": "branch0_seg0", + "4728": "branch0_seg0", + "4729": "branch0_seg0", + "4730": "branch0_seg0", + "4731": "branch0_seg0", + "4732": "branch0_seg0", + "4733": "branch0_seg0", + "4734": "branch0_seg0", + "4735": "branch0_seg0", + "4736": "branch0_seg0", + "4737": "branch0_seg0", + "4738": "branch0_seg0", + "4739": "branch0_seg0", + "4740": "branch0_seg0", + "4741": "branch0_seg0", + "4742": "branch0_seg0", + "4743": "branch0_seg0", + "4744": "branch0_seg0", + "4745": "branch0_seg0", + "4746": "branch0_seg0", + "4747": "branch0_seg0", + "4748": "branch0_seg0", + "4749": "branch0_seg0", + "4750": "branch0_seg0", + "4751": "branch0_seg0", + "4752": "branch0_seg0", + "4753": "branch0_seg0", + "4754": "branch0_seg0", + "4755": "branch0_seg0", + "4756": "branch0_seg0", + "4757": "branch0_seg0", + "4758": "branch0_seg0", + "4759": "branch0_seg0", + "4760": "branch0_seg0", + "4761": "branch0_seg0", + "4762": "branch0_seg0", + "4763": "branch0_seg0", + "4764": "branch0_seg0", + "4765": "branch0_seg0", + "4766": "branch0_seg0", + "4767": "branch0_seg0", + "4768": "branch0_seg0", + "4769": "branch0_seg0", + "4770": "branch0_seg0", + "4771": "branch0_seg0", + "4772": "branch0_seg0", + "4773": "branch0_seg0", + "4774": "branch0_seg0", + "4775": "branch0_seg0", + "4776": "branch0_seg0", + "4777": "branch0_seg0", + "4778": "branch0_seg0", + "4779": "branch0_seg0", + "4780": "branch0_seg0", + "4781": "branch0_seg0", + "4782": "branch0_seg0", + "4783": "branch0_seg0", + "4784": "branch0_seg0", + "4785": "branch0_seg0", + "4786": "branch0_seg0", + "4787": "branch0_seg0", + "4788": "branch0_seg0", + "4789": "branch0_seg0", + "4790": "branch0_seg0", + "4791": "branch0_seg0", + "4792": "branch0_seg0", + "4793": "branch0_seg0", + "4794": "branch0_seg0", + "4795": "branch0_seg0", + "4796": "branch0_seg0", + "4797": "branch0_seg0", + "4798": "branch0_seg0", + "4799": "branch0_seg0", + "4800": "branch0_seg0", + "4801": "branch0_seg0", + "4802": "branch0_seg0", + "4803": "branch0_seg0", + "4804": "branch0_seg0", + "4805": "branch0_seg0", + "4806": "branch0_seg0", + "4807": "branch0_seg0", + "4808": "branch0_seg0", + "4809": "branch0_seg0", + "4810": "branch0_seg0", + "4811": "branch0_seg0", + "4812": "branch0_seg0", + "4813": "branch0_seg0", + "4814": "branch0_seg0", + "4815": "branch0_seg0", + "4816": "branch0_seg0", + "4817": "branch0_seg0", + "4818": "branch0_seg0", + "4819": "branch0_seg0", + "4820": "branch0_seg0", + "4821": "branch0_seg0", + "4822": "branch0_seg0", + "4823": "branch0_seg0", + "4824": "branch0_seg0", + "4825": "branch0_seg0", + "4826": "branch0_seg0", + "4827": "branch0_seg0", + "4828": "branch0_seg0", + "4829": "branch0_seg0", + "4830": "branch0_seg0", + "4831": "branch0_seg0", + "4832": "branch0_seg0", + "4833": "branch0_seg0", + "4834": "branch0_seg0", + "4835": "branch0_seg0", + "4836": "branch0_seg0", + "4837": "branch0_seg0", + "4838": "branch0_seg0", + "4839": "branch0_seg0", + "4840": "branch0_seg0", + "4841": "branch0_seg0", + "4842": "branch0_seg0", + "4843": "branch0_seg0", + "4844": "branch0_seg0", + "4845": "branch0_seg0", + "4846": "branch0_seg0", + "4847": "branch0_seg0", + "4848": "branch0_seg0", + "4849": "branch0_seg0", + "4850": "branch0_seg0", + "4851": "branch0_seg0", + "4852": "branch0_seg0", + "4853": "branch0_seg0", + "4854": "branch0_seg0", + "4855": "branch0_seg0", + "4856": "branch0_seg0", + "4857": "branch0_seg0", + "4858": "branch0_seg0", + "4859": "branch0_seg0", + "4860": "branch0_seg0", + "4861": "branch0_seg0", + "4862": "branch0_seg0", + "4863": "branch0_seg0", + "4864": "branch0_seg0", + "4865": "branch0_seg0", + "4866": "branch0_seg0", + "4867": "branch0_seg0", + "4868": "branch0_seg0", + "4869": "branch0_seg0", + "4870": "branch0_seg0", + "4871": "branch0_seg0", + "4872": "branch0_seg0", + "4873": "branch0_seg0", + "4874": "branch0_seg0", + "4875": "branch0_seg0", + "4876": "branch0_seg0", + "4877": "branch0_seg0", + "4878": "branch0_seg0", + "4879": "branch0_seg0", + "4880": "branch0_seg0", + "4881": "branch0_seg0", + "4882": "branch0_seg0", + "4883": "branch0_seg0", + "4884": "branch0_seg0", + "4885": "branch0_seg0", + "4886": "branch0_seg0", + "4887": "branch0_seg0", + "4888": "branch0_seg0", + "4889": "branch0_seg0", + "4890": "branch0_seg0", + "4891": "branch0_seg0", + "4892": "branch0_seg0", + "4893": "branch0_seg0", + "4894": "branch0_seg0", + "4895": "branch0_seg0", + "4896": "branch0_seg0", + "4897": "branch0_seg0", + "4898": "branch0_seg0", + "4899": "branch0_seg0", + "4900": "branch0_seg0", + "4901": "branch0_seg0", + "4902": "branch0_seg0", + "4903": "branch0_seg0", + "4904": "branch0_seg0", + "4905": "branch0_seg0", + "4906": "branch0_seg0", + "4907": "branch0_seg0", + "4908": "branch0_seg0", + "4909": "branch0_seg0", + "4910": "branch0_seg0", + "4911": "branch0_seg0", + "4912": "branch0_seg0", + "4913": "branch0_seg0", + "4914": "branch0_seg0", + "4915": "branch0_seg0", + "4916": "branch0_seg0", + "4917": "branch0_seg0", + "4918": "branch0_seg0", + "4919": "branch0_seg0", + "4920": "branch0_seg0", + "4921": "branch0_seg0", + "4922": "branch0_seg0", + "4923": "branch0_seg0", + "4924": "branch0_seg0", + "4925": "branch0_seg0", + "4926": "branch0_seg0", + "4927": "branch0_seg0", + "4928": "branch0_seg0", + "4929": "branch0_seg0", + "4930": "branch0_seg0", + "4931": "branch0_seg0", + "4932": "branch0_seg0", + "4933": "branch0_seg0", + "4934": "branch0_seg0", + "4935": "branch0_seg0", + "4936": "branch0_seg0", + "4937": "branch0_seg0", + "4938": "branch0_seg0", + "4939": "branch0_seg0", + "4940": "branch0_seg0", + "4941": "branch0_seg0", + "4942": "branch0_seg0", + "4943": "branch0_seg0", + "4944": "branch0_seg0", + "4945": "branch0_seg0", + "4946": "branch0_seg0", + "4947": "branch0_seg0", + "4948": "branch0_seg0", + "4949": "branch0_seg0", + "4950": "branch0_seg0", + "4951": "branch0_seg0", + "4952": "branch0_seg0", + "4953": "branch0_seg0", + "4954": "branch0_seg0", + "4955": "branch0_seg0", + "4956": "branch0_seg0", + "4957": "branch0_seg0", + "4958": "branch0_seg0", + "4959": "branch0_seg0", + "4960": "branch0_seg0", + "4961": "branch0_seg0", + "4962": "branch0_seg0", + "4963": "branch0_seg0", + "4964": "branch0_seg0", + "4965": "branch0_seg0", + "4966": "branch0_seg0", + "4967": "branch0_seg0", + "4968": "branch0_seg0", + "4969": "branch0_seg0", + "4970": "branch0_seg0", + "4971": "branch0_seg0", + "4972": "branch0_seg0", + "4973": "branch0_seg0", + "4974": "branch0_seg0", + "4975": "branch0_seg0", + "4976": "branch0_seg0", + "4977": "branch0_seg0", + "4978": "branch0_seg0", + "4979": "branch0_seg0", + "4980": "branch0_seg0", + "4981": "branch0_seg0", + "4982": "branch0_seg0", + "4983": "branch0_seg0", + "4984": "branch0_seg0", + "4985": "branch0_seg0", + "4986": "branch0_seg0", + "4987": "branch0_seg0", + "4988": "branch0_seg0", + "4989": "branch0_seg0", + "4990": "branch0_seg0", + "4991": "branch0_seg0", + "4992": "branch0_seg0", + "4993": "branch0_seg0", + "4994": "branch0_seg0", + "4995": "branch0_seg0", + "4996": "branch0_seg0", + "4997": "branch0_seg0", + "4998": "branch0_seg0", + "4999": "branch0_seg0", + "5000": "branch0_seg0", + "5001": "branch0_seg0", + "5002": "branch0_seg0", + "5003": "branch0_seg0", + "5004": "branch0_seg0", + "5005": "branch0_seg0", + "5006": "branch0_seg0", + "5007": "branch0_seg0", + "5008": "branch0_seg0", + "5009": "branch0_seg0", + "5010": "branch0_seg0", + "5011": "branch0_seg0", + "5012": "branch0_seg0", + "5013": "branch0_seg0", + "5014": "branch0_seg0", + "5015": "branch0_seg0", + "5016": "branch0_seg0", + "5017": "branch0_seg0", + "5018": "branch0_seg0", + "5019": "branch0_seg0", + "5020": "branch0_seg0", + "5021": "branch0_seg0", + "5022": "branch0_seg0", + "5023": "branch0_seg0", + "5024": "branch0_seg0", + "5025": "branch0_seg0", + "5026": "branch0_seg0", + "5027": "branch0_seg0", + "5028": "branch0_seg0", + "5029": "branch0_seg0", + "5030": "branch0_seg0", + "5031": "branch0_seg0", + "5032": "branch0_seg0", + "5033": "branch0_seg0", + "5034": "branch0_seg0", + "5035": "branch0_seg0", + "5036": "branch0_seg0", + "5037": "branch0_seg0", + "5038": "branch0_seg0", + "5039": "branch0_seg0", + "5040": "branch0_seg0", + "5041": "branch0_seg0", + "5042": "branch0_seg0", + "5043": "branch0_seg0", + "5044": "branch0_seg0", + "5045": "branch0_seg0", + "5046": "branch0_seg0", + "5047": "branch0_seg0", + "5048": "branch0_seg0", + "5049": "branch0_seg0", + "5050": "branch0_seg0", + "5051": "branch0_seg0", + "5052": "branch0_seg0", + "5053": "branch0_seg0", + "5054": "branch0_seg0", + "5055": "branch0_seg0", + "5056": "branch0_seg0", + "5057": "branch0_seg0", + "5058": "branch0_seg0", + "5059": "branch0_seg0", + "5060": "branch0_seg0", + "5061": "branch0_seg0", + "5062": "branch0_seg0", + "5063": "branch0_seg0", + "5064": "branch0_seg0", + "5065": "branch0_seg0", + "5066": "branch0_seg0", + "5067": "branch0_seg0", + "5068": "branch0_seg0", + "5069": "branch0_seg0", + "5070": "branch0_seg0", + "5071": "branch0_seg0", + "5072": "branch0_seg0", + "5073": "branch0_seg0", + "5074": "branch0_seg0", + "5075": "branch0_seg0", + "5076": "branch0_seg0", + "5077": "branch0_seg0", + "5078": "branch0_seg0", + "5079": "branch0_seg0", + "5080": "branch0_seg0", + "5081": "branch0_seg0", + "5082": "branch0_seg0", + "5083": "branch0_seg0", + "5084": "branch0_seg0", + "5085": "branch0_seg0", + "5086": "branch0_seg0", + "5087": "branch0_seg0", + "5088": "branch0_seg0", + "5089": "branch0_seg0", + "5090": "branch0_seg0", + "5091": "branch0_seg0", + "5092": "branch0_seg0", + "5093": "branch0_seg0", + "5094": "branch0_seg0", + "5095": "branch0_seg0", + "5096": "branch0_seg0", + "5097": "branch0_seg0", + "5098": "branch0_seg0", + "5099": "branch0_seg0", + "5100": "branch0_seg0", + "5101": "branch0_seg0", + "5102": "branch0_seg0", + "5103": "branch0_seg0", + "5104": "branch0_seg0", + "5105": "branch0_seg0", + "5106": "branch0_seg0", + "5107": "branch0_seg0", + "5108": "branch0_seg0", + "5109": "branch0_seg0", + "5110": "branch0_seg0", + "5111": "branch0_seg0", + "5112": "branch0_seg0", + "5113": "branch0_seg0", + "5114": "branch0_seg0", + "5115": "branch0_seg0", + "5116": "branch0_seg0", + "5117": "branch0_seg0", + "5118": "branch0_seg0", + "5119": "branch0_seg0", + "5120": "branch0_seg0", + "5121": "branch0_seg0", + "5122": "branch0_seg0", + "5123": "branch0_seg0", + "5124": "branch0_seg0", + "5125": "branch0_seg0", + "5126": "branch0_seg0", + "5127": "branch0_seg0", + "5128": "branch0_seg0", + "5129": "branch0_seg0", + "5130": "branch0_seg0", + "5131": "branch0_seg0", + "5132": "branch0_seg0", + "5133": "branch0_seg0", + "5134": "branch0_seg0", + "5135": "branch0_seg0", + "5136": "branch0_seg0", + "5137": "branch0_seg0", + "5138": "branch0_seg0", + "5139": "branch0_seg0", + "5140": "branch0_seg0", + "5141": "branch0_seg0", + "5142": "branch0_seg0", + "5143": "branch0_seg0", + "5144": "branch0_seg0", + "5145": "branch0_seg0", + "5146": "branch0_seg0", + "5147": "branch0_seg0", + "5148": "branch0_seg0", + "5149": "branch0_seg0", + "5150": "branch0_seg0", + "5151": "branch0_seg0", + "5152": "branch0_seg0", + "5153": "branch0_seg0", + "5154": "branch0_seg0", + "5155": "branch0_seg0", + "5156": "branch0_seg0", + "5157": "branch0_seg0", + "5158": "branch0_seg0", + "5159": "branch0_seg0", + "5160": "branch0_seg0", + "5161": "branch0_seg0", + "5162": "branch0_seg0", + "5163": "branch0_seg0", + "5164": "branch0_seg0", + "5165": "branch0_seg0", + "5166": "branch0_seg0", + "5167": "branch0_seg0", + "5168": "branch0_seg0", + "5169": "branch0_seg0", + "5170": "branch0_seg0", + "5171": "branch0_seg0", + "5172": "branch0_seg0", + "5173": "branch0_seg0", + "5174": "branch0_seg0", + "5175": "branch0_seg0", + "5176": "branch0_seg0", + "5177": "branch0_seg0", + "5178": "branch0_seg0", + "5179": "branch0_seg0", + "5180": "branch0_seg0", + "5181": "branch0_seg0", + "5182": "branch0_seg0", + "5183": "branch0_seg0", + "5184": "branch0_seg0", + "5185": "branch0_seg0", + "5186": "branch0_seg0", + "5187": "branch0_seg0", + "5188": "branch0_seg0", + "5189": "branch0_seg0", + "5190": "branch0_seg0", + "5191": "branch0_seg0", + "5192": "branch0_seg0", + "5193": "branch0_seg0", + "5194": "branch0_seg0", + "5195": "branch0_seg0", + "5196": "branch0_seg0", + "5197": "branch0_seg0", + "5198": "branch0_seg0", + "5199": "branch0_seg0", + "5200": "branch0_seg0", + "5201": "branch0_seg0", + "5202": "branch0_seg0", + "5203": "branch0_seg0", + "5204": "branch0_seg0", + "5205": "branch0_seg0", + "5206": "branch0_seg0", + "5207": "branch0_seg0", + "5208": "branch0_seg0", + "5209": "branch0_seg0", + "5210": "branch0_seg0", + "5211": "branch0_seg0", + "5212": "branch0_seg0", + "5213": "branch0_seg0", + "5214": "branch0_seg0", + "5215": "branch0_seg0", + "5216": "branch0_seg0", + "5217": "branch0_seg0", + "5218": "branch0_seg0", + "5219": "branch0_seg0", + "5220": "branch0_seg0", + "5221": "branch0_seg0", + "5222": "branch0_seg0", + "5223": "branch0_seg0", + "5224": "branch0_seg0", + "5225": "branch0_seg0", + "5226": "branch0_seg0", + "5227": "branch0_seg0", + "5228": "branch0_seg0", + "5229": "branch0_seg0", + "5230": "branch0_seg0", + "5231": "branch0_seg0", + "5232": "branch0_seg0", + "5233": "branch0_seg0", + "5234": "branch0_seg0", + "5235": "branch0_seg0", + "5236": "branch0_seg0", + "5237": "branch0_seg0", + "5238": "branch0_seg0", + "5239": "branch0_seg0", + "5240": "branch0_seg0", + "5241": "branch0_seg0", + "5242": "branch0_seg0", + "5243": "branch0_seg0", + "5244": "branch0_seg0", + "5245": "branch0_seg0", + "5246": "branch0_seg0", + "5247": "branch0_seg0", + "5248": "branch0_seg0", + "5249": "branch0_seg0", + "5250": "branch0_seg0", + "5251": "branch0_seg0", + "5252": "branch0_seg0", + "5253": "branch0_seg0", + "5254": "branch0_seg0", + "5255": "branch0_seg0", + "5256": "branch0_seg0", + "5257": "branch0_seg0", + "5258": "branch0_seg0", + "5259": "branch0_seg0", + "5260": "branch0_seg0", + "5261": "branch0_seg0", + "5262": "branch0_seg0", + "5263": "branch0_seg0", + "5264": "branch0_seg0", + "5265": "branch0_seg0", + "5266": "branch0_seg0", + "5267": "branch0_seg0", + "5268": "branch0_seg0", + "5269": "branch0_seg0", + "5270": "branch0_seg0", + "5271": "branch0_seg0", + "5272": "branch0_seg0", + "5273": "branch0_seg0", + "5274": "branch0_seg0", + "5275": "branch0_seg0", + "5276": "branch0_seg0", + "5277": "branch0_seg0", + "5278": "branch0_seg0", + "5279": "branch0_seg0", + "5280": "branch0_seg0", + "5281": "branch0_seg0", + "5282": "branch0_seg0", + "5283": "branch0_seg0", + "5284": "branch0_seg0", + "5285": "branch0_seg0", + "5286": "branch0_seg0", + "5287": "branch0_seg0", + "5288": "branch0_seg0", + "5289": "branch0_seg0", + "5290": "branch0_seg0", + "5291": "branch0_seg0", + "5292": "branch0_seg0", + "5293": "branch0_seg0", + "5294": "branch0_seg0", + "5295": "branch0_seg0", + "5296": "branch0_seg0", + "5297": "branch0_seg0", + "5298": "branch0_seg0", + "5299": "branch0_seg0", + "5300": "branch0_seg0", + "5301": "branch0_seg0", + "5302": "branch0_seg0", + "5303": "branch0_seg0", + "5304": "branch0_seg0", + "5305": "branch0_seg0", + "5306": "branch0_seg0", + "5307": "branch0_seg0", + "5308": "branch0_seg0", + "5309": "branch0_seg0", + "5310": "branch0_seg0", + "5311": "branch0_seg0", + "5312": "branch0_seg0", + "5313": "branch0_seg0", + "5314": "branch0_seg0", + "5315": "branch0_seg0", + "5316": "branch0_seg0", + "5317": "branch0_seg0", + "5318": "branch0_seg0", + "5319": "branch0_seg0", + "5320": "branch0_seg0", + "5321": "branch0_seg0", + "5322": "branch0_seg0", + "5323": "branch0_seg0", + "5324": "branch0_seg0", + "5325": "branch0_seg0", + "5326": "branch0_seg0", + "5327": "branch0_seg0", + "5328": "branch0_seg0", + "5329": "branch0_seg0", + "5330": "branch0_seg0", + "5331": "branch0_seg0", + "5332": "branch0_seg0", + "5333": "branch0_seg0", + "5334": "branch0_seg0", + "5335": "branch0_seg0", + "5336": "branch0_seg0", + "5337": "branch0_seg0", + "5338": "branch0_seg0", + "5339": "branch0_seg0", + "5340": "branch0_seg0", + "5341": "branch0_seg0", + "5342": "branch0_seg0", + "5343": "branch0_seg0", + "5344": "branch0_seg0", + "5345": "branch0_seg0", + "5346": "branch0_seg0", + "5347": "branch0_seg0", + "5348": "branch0_seg0", + "5349": "branch0_seg0", + "5350": "branch0_seg0", + "5351": "branch0_seg0", + "5352": "branch0_seg0", + "5353": "branch0_seg0", + "5354": "branch0_seg0", + "5355": "branch0_seg0", + "5356": "branch0_seg0", + "5357": "branch0_seg0", + "5358": "branch0_seg0", + "5359": "branch0_seg0", + "5360": "branch0_seg0", + "5361": "branch0_seg0", + "5362": "branch0_seg0", + "5363": "branch0_seg0", + "5364": "branch0_seg0", + "5365": "branch0_seg0", + "5366": "branch0_seg0", + "5367": "branch0_seg0", + "5368": "branch0_seg0", + "5369": "branch0_seg0", + "5370": "branch0_seg0", + "5371": "branch0_seg0", + "5372": "branch0_seg0", + "5373": "branch0_seg0", + "5374": "branch0_seg0", + "5375": "branch0_seg0", + "5376": "branch0_seg0", + "5377": "branch0_seg0", + "5378": "branch0_seg0", + "5379": "branch0_seg0", + "5380": "branch0_seg0", + "5381": "branch0_seg0", + "5382": "branch0_seg0", + "5383": "branch0_seg0", + "5384": "branch0_seg0", + "5385": "branch0_seg0", + "5386": "branch0_seg0", + "5387": "branch0_seg0", + "5388": "branch0_seg0", + "5389": "branch0_seg0", + "5390": "branch0_seg0", + "5391": "branch0_seg0", + "5392": "branch0_seg0", + "5393": "branch0_seg0", + "5394": "branch0_seg0", + "5395": "branch0_seg0", + "5396": "branch0_seg0", + "5397": "branch0_seg0", + "5398": "branch0_seg0", + "5399": "branch0_seg0", + "5400": "branch0_seg0", + "5401": "branch0_seg0", + "5402": "branch0_seg0", + "5403": "branch0_seg0", + "5404": "branch0_seg0", + "5405": "branch0_seg0", + "5406": "branch0_seg0", + "5407": "branch0_seg0", + "5408": "branch0_seg0", + "5409": "branch0_seg0", + "5410": "branch0_seg0", + "5411": "branch0_seg0", + "5412": "branch0_seg0", + "5413": "branch0_seg0", + "5414": "branch0_seg0", + "5415": "branch0_seg0", + "5416": "branch0_seg0", + "5417": "branch0_seg0", + "5418": "branch0_seg0", + "5419": "branch0_seg0", + "5420": "branch0_seg0", + "5421": "branch0_seg0", + "5422": "branch0_seg0", + "5423": "branch0_seg0", + "5424": "branch0_seg0", + "5425": "branch0_seg0", + "5426": "branch0_seg0", + "5427": "branch0_seg0", + "5428": "branch0_seg0", + "5429": "branch0_seg0", + "5430": "branch0_seg0", + "5431": "branch0_seg0", + "5432": "branch0_seg0", + "5433": "branch0_seg0", + "5434": "branch0_seg0", + "5435": "branch0_seg0", + "5436": "branch0_seg0", + "5437": "branch0_seg0", + "5438": "branch0_seg0", + "5439": "branch0_seg0", + "5440": "branch0_seg0", + "5441": "branch0_seg0", + "5442": "branch0_seg0", + "5443": "branch0_seg0", + "5444": "branch0_seg0", + "5445": "branch0_seg0", + "5446": "branch0_seg0", + "5447": "branch0_seg0", + "5448": "branch0_seg0", + "5449": "branch0_seg0", + "5450": "branch0_seg0", + "5451": "branch0_seg0", + "5452": "branch0_seg0", + "5453": "branch0_seg0", + "5454": "branch0_seg0", + "5455": "branch0_seg0", + "5456": "branch0_seg0", + "5457": "branch0_seg0", + "5458": "branch0_seg0", + "5459": "branch0_seg0", + "5460": "branch0_seg0", + "5461": "branch0_seg0", + "5462": "branch0_seg0", + "5463": "branch0_seg0", + "5464": "branch0_seg0", + "5465": "branch0_seg0", + "5466": "branch0_seg0", + "5467": "branch0_seg0", + "5468": "branch0_seg0", + "5469": "branch0_seg0", + "5470": "branch0_seg0", + "5471": "branch0_seg0", + "5472": "branch0_seg0", + "5473": "branch0_seg0", + "5474": "branch0_seg0", + "5475": "branch0_seg0", + "5476": "branch0_seg0", + "5477": "branch0_seg0", + "5478": "branch0_seg0", + "5479": "branch0_seg0", + "5480": "branch0_seg0", + "5481": "branch0_seg0", + "5482": "branch0_seg0", + "5483": "branch0_seg0", + "5484": "branch0_seg0", + "5485": "branch0_seg0", + "5486": "branch0_seg0", + "5487": "branch0_seg0", + "5488": "branch0_seg0", + "5489": "branch0_seg0", + "5490": "branch0_seg0", + "5491": "branch0_seg0", + "5492": "branch0_seg0", + "5493": "branch0_seg0", + "5494": "branch0_seg0", + "5495": "branch0_seg0", + "5496": "branch0_seg0", + "5497": "branch0_seg0", + "5498": "branch0_seg0", + "5499": "branch0_seg0", + "5500": "branch0_seg0", + "5501": "branch0_seg0", + "5502": "branch0_seg0", + "5503": "branch0_seg0", + "5504": "branch0_seg0", + "5505": "branch0_seg0", + "5506": "branch0_seg0", + "5507": "branch0_seg0", + "5508": "branch0_seg0", + "5509": "branch0_seg0", + "5510": "branch0_seg0", + "5511": "branch0_seg0", + "5512": "branch0_seg0", + "5513": "branch0_seg0", + "5514": "branch0_seg0", + "5515": "branch0_seg0", + "5516": "branch0_seg0", + "5517": "branch0_seg0", + "5518": "branch0_seg0", + "5519": "branch0_seg0", + "5520": "branch0_seg0", + "5521": "branch0_seg0", + "5522": "branch0_seg0", + "5523": "branch0_seg0", + "5524": "branch0_seg0", + "5525": "branch0_seg0", + "5526": "branch0_seg0", + "5527": "branch0_seg0", + "5528": "branch0_seg0", + "5529": "branch0_seg0", + "5530": "branch0_seg0", + "5531": "branch0_seg0", + "5532": "branch0_seg0", + "5533": "branch0_seg0", + "5534": "branch0_seg0", + "5535": "branch0_seg0", + "5536": "branch0_seg0", + "5537": "branch0_seg0", + "5538": "branch0_seg0", + "5539": "branch0_seg0", + "5540": "branch0_seg0", + "5541": "branch0_seg0", + "5542": "branch0_seg0", + "5543": "branch0_seg0", + "5544": "branch0_seg0", + "5545": "branch0_seg0", + "5546": "branch0_seg0", + "5547": "branch0_seg0", + "5548": "branch0_seg0", + "5549": "branch0_seg0", + "5550": "branch0_seg0", + "5551": "branch0_seg0", + "5552": "branch0_seg0", + "5553": "branch0_seg0", + "5554": "branch0_seg0", + "5555": "branch0_seg0", + "5556": "branch0_seg0", + "5557": "branch0_seg0", + "5558": "branch0_seg0", + "5559": "branch0_seg0", + "5560": "branch0_seg0", + "5561": "branch0_seg0", + "5562": "branch0_seg0", + "5563": "branch0_seg0", + "5564": "branch0_seg0", + "5565": "branch0_seg0", + "5566": "branch0_seg0", + "5567": "branch0_seg0", + "5568": "branch0_seg0", + "5569": "branch0_seg0", + "5570": "branch0_seg0", + "5571": "branch0_seg0", + "5572": "branch0_seg0", + "5573": "branch0_seg0", + "5574": "branch0_seg0", + "5575": "branch0_seg0", + "5576": "branch0_seg0", + "5577": "branch0_seg0", + "5578": "branch0_seg0", + "5579": "branch0_seg0", + "5580": "branch0_seg0", + "5581": "branch0_seg0", + "5582": "branch0_seg0", + "5583": "branch0_seg0", + "5584": "branch0_seg0", + "5585": "branch0_seg0", + "5586": "branch0_seg0", + "5587": "branch0_seg0", + "5588": "branch0_seg0", + "5589": "branch0_seg0", + "5590": "branch0_seg0", + "5591": "branch0_seg0", + "5592": "branch0_seg0", + "5593": "branch0_seg0", + "5594": "branch0_seg0", + "5595": "branch0_seg0", + "5596": "branch0_seg0", + "5597": "branch0_seg0", + "5598": "branch0_seg0", + "5599": "branch0_seg0", + "5600": "branch0_seg0", + "5601": "branch0_seg0", + "5602": "branch0_seg0", + "5603": "branch0_seg0", + "5604": "branch0_seg0", + "5605": "branch0_seg0", + "5606": "branch0_seg0", + "5607": "branch0_seg0", + "5608": "branch0_seg0", + "5609": "branch0_seg0", + "5610": "branch0_seg0", + "5611": "branch0_seg0", + "5612": "branch0_seg0", + "5613": "branch0_seg0", + "5614": "branch0_seg0", + "5615": "branch0_seg0", + "5616": "branch0_seg0", + "5617": "branch0_seg0", + "5618": "branch0_seg0", + "5619": "branch0_seg0", + "5620": "branch0_seg0", + "5621": "branch0_seg0", + "5622": "branch0_seg0", + "5623": "branch0_seg0", + "5624": "branch0_seg0", + "5625": "branch0_seg0", + "5626": "branch0_seg0", + "5627": "branch0_seg0", + "5628": "branch0_seg0", + "5629": "branch0_seg0", + "5630": "branch0_seg0", + "5631": "branch0_seg0", + "5632": "branch0_seg0", + "5633": "branch0_seg0", + "5634": "branch0_seg0", + "5635": "branch0_seg0", + "5636": "branch0_seg0", + "5637": "branch0_seg0", + "5638": "branch0_seg0", + "5639": "branch0_seg0", + "5640": "branch0_seg0", + "5641": "branch0_seg0", + "5642": "branch0_seg0", + "5643": "branch0_seg0", + "5644": "branch0_seg0", + "5645": "branch0_seg0", + "5646": "branch0_seg0", + "5647": "branch0_seg0", + "5648": "branch0_seg0", + "5649": "branch0_seg0", + "5650": "branch0_seg0", + "5651": "branch0_seg0", + "5652": "branch0_seg0", + "5653": "branch0_seg0", + "5654": "branch0_seg0", + "5655": "branch0_seg0", + "5656": "branch0_seg0", + "5657": "branch0_seg0", + "5658": "branch0_seg0", + "5659": "branch0_seg0", + "5660": "branch0_seg0", + "5661": "branch0_seg0", + "5662": "branch0_seg0", + "5663": "branch0_seg0", + "5664": "branch0_seg0", + "5665": "branch0_seg0", + "5666": "branch0_seg0", + "5667": "branch0_seg0", + "5668": "branch0_seg0", + "5669": "branch0_seg0", + "5670": "branch0_seg0", + "5671": "branch0_seg0", + "5672": "branch0_seg0", + "5673": "branch0_seg0", + "5674": "branch0_seg0", + "5675": "branch0_seg0", + "5676": "branch0_seg0", + "5677": "branch0_seg0", + "5678": "branch0_seg0", + "5679": "branch0_seg0", + "5680": "branch0_seg0", + "5681": "branch0_seg0", + "5682": "branch0_seg0", + "5683": "branch0_seg0", + "5684": "branch0_seg0", + "5685": "branch0_seg0", + "5686": "branch0_seg0", + "5687": "branch0_seg0", + "5688": "branch0_seg0", + "5689": "branch0_seg0", + "5690": "branch0_seg0", + "5691": "branch0_seg0", + "5692": "branch0_seg0", + "5693": "branch0_seg0", + "5694": "branch0_seg0", + "5695": "branch0_seg0", + "5696": "branch0_seg0", + "5697": "branch0_seg0", + "5698": "branch0_seg0", + "5699": "branch0_seg0", + "5700": "branch0_seg0", + "5701": "branch0_seg0", + "5702": "branch0_seg0", + "5703": "branch0_seg0", + "5704": "branch0_seg0", + "5705": "branch0_seg0", + "5706": "branch0_seg0", + "5707": "branch0_seg0", + "5708": "branch0_seg0", + "5709": "branch0_seg0", + "5710": "branch0_seg0", + "5711": "branch0_seg0", + "5712": "branch0_seg0", + "5713": "branch0_seg0", + "5714": "branch0_seg0", + "5715": "branch0_seg0", + "5716": "branch0_seg0", + "5717": "branch0_seg0", + "5718": "branch0_seg0", + "5719": "branch0_seg0", + "5720": "branch0_seg0", + "5721": "branch0_seg0", + "5722": "branch0_seg0", + "5723": "branch0_seg0", + "5724": "branch0_seg0", + "5725": "branch0_seg0", + "5726": "branch0_seg0", + "5727": "branch0_seg0", + "5728": "branch0_seg0", + "5729": "branch0_seg0", + "5730": "branch0_seg0", + "5731": "branch0_seg0", + "5732": "branch0_seg0", + "5733": "branch0_seg0", + "5734": "branch0_seg0", + "5735": "branch0_seg0", + "5736": "branch0_seg0", + "5737": "branch0_seg0", + "5738": "branch0_seg0", + "5739": "branch0_seg0", + "5740": "branch0_seg0", + "5741": "branch0_seg0", + "5742": "branch0_seg0", + "5743": "branch0_seg0", + "5744": "branch0_seg0", + "5745": "branch0_seg0", + "5746": "branch0_seg0", + "5747": "branch0_seg0", + "5748": "branch0_seg0", + "5749": "branch0_seg0", + "5750": "branch0_seg0", + "5751": "branch0_seg0", + "5752": "branch0_seg0", + "5753": "branch0_seg0", + "5754": "branch0_seg0", + "5755": "branch0_seg0", + "5756": "branch0_seg0", + "5757": "branch0_seg0", + "5758": "branch0_seg0", + "5759": "branch0_seg0", + "5760": "branch0_seg0", + "5761": "branch0_seg0", + "5762": "branch0_seg0", + "5763": "branch0_seg0", + "5764": "branch0_seg0", + "5765": "branch0_seg0", + "5766": "branch0_seg0", + "5767": "branch0_seg0", + "5768": "branch0_seg0", + "5769": "branch0_seg0", + "5770": "branch0_seg0", + "5771": "branch0_seg0", + "5772": "branch0_seg0", + "5773": "branch0_seg0", + "5774": "branch0_seg0", + "5775": "branch0_seg0", + "5776": "branch0_seg0", + "5777": "branch0_seg0", + "5778": "branch0_seg0", + "5779": "branch0_seg0", + "5780": "branch0_seg0", + "5781": "branch0_seg0", + "5782": "branch0_seg0", + "5783": "branch0_seg0", + "5784": "branch0_seg0", + "5785": "branch0_seg0", + "5786": "branch0_seg0", + "5787": "branch0_seg0", + "5788": "branch0_seg0", + "5789": "branch0_seg0", + "5790": "branch0_seg0", + "5791": "branch0_seg0", + "5792": "branch0_seg0", + "5793": "branch0_seg0", + "5794": "branch0_seg0", + "5795": "branch0_seg0", + "5796": "branch0_seg0", + "5797": "branch0_seg0", + "5798": "branch0_seg0", + "5799": "branch0_seg0", + "5800": "branch0_seg0", + "5801": "branch0_seg0", + "5802": "branch0_seg0", + "5803": "branch0_seg0", + "5804": "branch0_seg0", + "5805": "branch0_seg0", + "5806": "branch0_seg0", + "5807": "branch0_seg0", + "5808": "branch0_seg0", + "5809": "branch0_seg0", + "5810": "branch0_seg0", + "5811": "branch0_seg0", + "5812": "branch0_seg0", + "5813": "branch0_seg0", + "5814": "branch0_seg0", + "5815": "branch0_seg0", + "5816": "branch0_seg0", + "5817": "branch0_seg0", + "5818": "branch0_seg0", + "5819": "branch0_seg0", + "5820": "branch0_seg0", + "5821": "branch0_seg0", + "5822": "branch0_seg0", + "5823": "branch0_seg0", + "5824": "branch0_seg0", + "5825": "branch0_seg0", + "5826": "branch0_seg0", + "5827": "branch0_seg0", + "5828": "branch0_seg0", + "5829": "branch0_seg0", + "5830": "branch0_seg0", + "5831": "branch0_seg0", + "5832": "branch0_seg0", + "5833": "branch0_seg0", + "5834": "branch0_seg0", + "5835": "branch0_seg0", + "5836": "branch0_seg0", + "5837": "branch0_seg0", + "5838": "branch0_seg0", + "5839": "branch0_seg0", + "5840": "branch0_seg0", + "5841": "branch0_seg0", + "5842": "branch0_seg0", + "5843": "branch0_seg0", + "5844": "branch0_seg0", + "5845": "branch0_seg0", + "5846": "branch0_seg0", + "5847": "branch0_seg0", + "5848": "branch0_seg0", + "5849": "branch0_seg0", + "5850": "branch0_seg0", + "5851": "branch0_seg0", + "5852": "branch0_seg0", + "5853": "branch0_seg0", + "5854": "branch0_seg0", + "5855": "branch0_seg0", + "5856": "branch0_seg0", + "5857": "branch0_seg0", + "5858": "branch0_seg0", + "5859": "branch0_seg0", + "5860": "branch0_seg0", + "5861": "branch0_seg0", + "5862": "branch0_seg0", + "5863": "branch0_seg0", + "5864": "branch0_seg0", + "5865": "branch0_seg0", + "5866": "branch0_seg0", + "5867": "branch0_seg0", + "5868": "branch0_seg0", + "5869": "branch0_seg0", + "5870": "branch0_seg0", + "5871": "branch0_seg0", + "5872": "branch0_seg0", + "5873": "branch0_seg0", + "5874": "branch0_seg0", + "5875": "branch0_seg0", + "5876": "branch0_seg0", + "5877": "branch0_seg0", + "5878": "branch0_seg0", + "5879": "branch0_seg0", + "5880": "branch0_seg0", + "5881": "branch0_seg0", + "5882": "branch0_seg0", + "5883": "branch0_seg0", + "5884": "branch0_seg0", + "5885": "branch0_seg0", + "5886": "branch0_seg0", + "5887": "branch0_seg0", + "5888": "branch0_seg0", + "5889": "branch0_seg0", + "5890": "branch0_seg0", + "5891": "branch0_seg0", + "5892": "branch0_seg0", + "5893": "branch0_seg0", + "5894": "branch0_seg0", + "5895": "branch0_seg0", + "5896": "branch0_seg0", + "5897": "branch0_seg0", + "5898": "branch0_seg0", + "5899": "branch0_seg0", + "5900": "branch0_seg0", + "5901": "branch0_seg0", + "5902": "branch0_seg0", + "5903": "branch0_seg0", + "5904": "branch0_seg0", + "5905": "branch0_seg0", + "5906": "branch0_seg0", + "5907": "branch0_seg0", + "5908": "branch0_seg0", + "5909": "branch0_seg0", + "5910": "branch0_seg0", + "5911": "branch0_seg0", + "5912": "branch0_seg0", + "5913": "branch0_seg0", + "5914": "branch0_seg0", + "5915": "branch0_seg0", + "5916": "branch0_seg0", + "5917": "branch0_seg0", + "5918": "branch0_seg0", + "5919": "branch0_seg0", + "5920": "branch0_seg0", + "5921": "branch0_seg0", + "5922": "branch0_seg0", + "5923": "branch0_seg0", + "5924": "branch0_seg0", + "5925": "branch0_seg0", + "5926": "branch0_seg0", + "5927": "branch0_seg0", + "5928": "branch0_seg0", + "5929": "branch0_seg0", + "5930": "branch0_seg0", + "5931": "branch0_seg0", + "5932": "branch0_seg0", + "5933": "branch0_seg0", + "5934": "branch0_seg0", + "5935": "branch0_seg0", + "5936": "branch0_seg0", + "5937": "branch0_seg0", + "5938": "branch0_seg0", + "5939": "branch0_seg0", + "5940": "branch0_seg0", + "5941": "branch0_seg0", + "5942": "branch0_seg0", + "5943": "branch0_seg0", + "5944": "branch0_seg0", + "5945": "branch0_seg0", + "5946": "branch0_seg0", + "5947": "branch0_seg0", + "5948": "branch0_seg0", + "5949": "branch0_seg0", + "5950": "branch0_seg0", + "5951": "branch0_seg0", + "5952": "branch0_seg0", + "5953": "branch0_seg0", + "5954": "branch0_seg0", + "5955": "branch0_seg0", + "5956": "branch0_seg0", + "5957": "branch0_seg0", + "5958": "branch0_seg0", + "5959": "branch0_seg0", + "5960": "branch0_seg0", + "5961": "branch0_seg0", + "5962": "branch0_seg0", + "5963": "branch0_seg0", + "5964": "branch0_seg0", + "5965": "branch0_seg0", + "5966": "branch0_seg0", + "5967": "branch0_seg0", + "5968": "branch0_seg0", + "5969": "branch0_seg0", + "5970": "branch0_seg0", + "5971": "branch0_seg0", + "5972": "branch0_seg0", + "5973": "branch0_seg0", + "5974": "branch0_seg0", + "5975": "branch0_seg0", + "5976": "branch0_seg0", + "5977": "branch0_seg0", + "5978": "branch0_seg0", + "5979": "branch0_seg0", + "5980": "branch0_seg0", + "5981": "branch0_seg0", + "5982": "branch0_seg0", + "5983": "branch0_seg0", + "5984": "branch0_seg0", + "5985": "branch0_seg0", + "5986": "branch0_seg0", + "5987": "branch0_seg0", + "5988": "branch0_seg0", + "5989": "branch0_seg0", + "5990": "branch0_seg0", + "5991": "branch0_seg0", + "5992": "branch0_seg0", + "5993": "branch0_seg0", + "5994": "branch0_seg0", + "5995": "branch0_seg0", + "5996": "branch0_seg0", + "5997": "branch0_seg0", + "5998": "branch0_seg0", + "5999": "branch0_seg0", + "6000": "branch0_seg0", + "6001": "branch0_seg0", + "6002": "branch0_seg0", + "6003": "branch0_seg0", + "6004": "branch0_seg0", + "6005": "branch0_seg0", + "6006": "branch0_seg0", + "6007": "branch0_seg0", + "6008": "branch0_seg0", + "6009": "branch0_seg0", + "6010": "branch0_seg0", + "6011": "branch0_seg0", + "6012": "branch0_seg0", + "6013": "branch0_seg0", + "6014": "branch0_seg0", + "6015": "branch0_seg0", + "6016": "branch0_seg0", + "6017": "branch0_seg0", + "6018": "branch0_seg0", + "6019": "branch0_seg0", + "6020": "branch0_seg0", + "6021": "branch0_seg0", + "6022": "branch0_seg0", + "6023": "branch0_seg0", + "6024": "branch0_seg0", + "6025": "branch0_seg0", + "6026": "branch0_seg0", + "6027": "branch0_seg0", + "6028": "branch0_seg0", + "6029": "branch0_seg0", + "6030": "branch0_seg0", + "6031": "branch0_seg0", + "6032": "branch0_seg0", + "6033": "branch0_seg0", + "6034": "branch0_seg0", + "6035": "branch0_seg0", + "6036": "branch0_seg0", + "6037": "branch0_seg0", + "6038": "branch0_seg0", + "6039": "branch0_seg0", + "6040": "branch0_seg0", + "6041": "branch0_seg0", + "6042": "branch0_seg0", + "6043": "branch0_seg0", + "6044": "branch0_seg0", + "6045": "branch0_seg0", + "6046": "branch0_seg0", + "6047": "branch0_seg0", + "6048": "branch0_seg0", + "6049": "branch0_seg0", + "6050": "branch0_seg0", + "6051": "branch0_seg0", + "6052": "branch0_seg0", + "6053": "branch0_seg0", + "6054": "branch0_seg0", + "6055": "branch0_seg0", + "6056": "branch0_seg0", + "6057": "branch0_seg0", + "6058": "branch0_seg0", + "6059": "branch0_seg0", + "6060": "branch0_seg0", + "6061": "branch0_seg0", + "6062": "branch0_seg0", + "6063": "branch0_seg0", + "6064": "branch0_seg0", + "6065": "branch0_seg0", + "6066": "branch0_seg0", + "6067": "branch0_seg0", + "6068": "branch0_seg0", + "6069": "branch0_seg0", + "6070": "branch0_seg0", + "6071": "branch0_seg0", + "6072": "branch0_seg0", + "6073": "branch0_seg0", + "6074": "branch0_seg0", + "6075": "branch0_seg0", + "6076": "branch0_seg0", + "6077": "branch0_seg0", + "6078": "branch0_seg0", + "6079": "branch0_seg0", + "6080": "branch0_seg0", + "6081": "branch0_seg0", + "6082": "branch0_seg0", + "6083": "branch0_seg0", + "6084": "branch0_seg0", + "6085": "branch0_seg0", + "6086": "branch0_seg0", + "6087": "branch0_seg0", + "6088": "branch0_seg0", + "6089": "branch0_seg0", + "6090": "branch0_seg0", + "6091": "branch0_seg0", + "6092": "branch0_seg0", + "6093": "branch0_seg0", + "6094": "branch0_seg0", + "6095": "branch0_seg0", + "6096": "branch0_seg0", + "6097": "branch0_seg0", + "6098": "branch0_seg0", + "6099": "branch0_seg0", + "6100": "branch0_seg0", + "6101": "branch0_seg0", + "6102": "branch0_seg0", + "6103": "branch0_seg0", + "6104": "branch0_seg0", + "6105": "branch0_seg0", + "6106": "branch0_seg0", + "6107": "branch0_seg0", + "6108": "branch0_seg0", + "6109": "branch0_seg0", + "6110": "branch0_seg0", + "6111": "branch0_seg0", + "6112": "branch0_seg0", + "6113": "branch0_seg0", + "6114": "branch0_seg0", + "6115": "branch0_seg0", + "6116": "branch0_seg0", + "6117": "branch0_seg0", + "6118": "branch0_seg0", + "6119": "branch0_seg0", + "6120": "branch0_seg0", + "6121": "branch0_seg0", + "6122": "branch0_seg0", + "6123": "branch0_seg0", + "6124": "branch0_seg0", + "6125": "branch0_seg0", + "6126": "branch0_seg0", + "6127": "branch0_seg0", + "6128": "branch0_seg0", + "6129": "branch0_seg0", + "6130": "branch0_seg0", + "6131": "branch0_seg0", + "6132": "branch0_seg0", + "6133": "branch0_seg0", + "6134": "branch0_seg0", + "6135": "branch0_seg0", + "6136": "branch0_seg0", + "6137": "branch0_seg0", + "6138": "branch0_seg0", + "6139": "branch0_seg0", + "6140": "branch0_seg0", + "6141": "branch0_seg0", + "6142": "branch0_seg0", + "6143": "branch0_seg0", + "6144": "branch0_seg0", + "6145": "branch0_seg0", + "6146": "branch0_seg0", + "6147": "branch0_seg0", + "6148": "branch0_seg0", + "6149": "branch0_seg0", + "6150": "branch0_seg0", + "6151": "branch0_seg0", + "6152": "branch0_seg0", + "6153": "branch0_seg0", + "6154": "branch0_seg0", + "6155": "branch0_seg0", + "6156": "branch0_seg0", + "6157": "branch0_seg0", + "6158": "branch0_seg0", + "6159": "branch0_seg0", + "6160": "branch0_seg0", + "6161": "branch0_seg0", + "6162": "branch0_seg0", + "6163": "branch0_seg0", + "6164": "branch0_seg0", + "6165": "branch0_seg0", + "6166": "branch0_seg0", + "6167": "branch0_seg0", + "6168": "branch0_seg0", + "6169": "branch0_seg0", + "6170": "branch0_seg0", + "6171": "branch0_seg0", + "6172": "branch0_seg0", + "6173": "branch0_seg0", + "6174": "branch0_seg0", + "6175": "branch0_seg0", + "6176": "branch0_seg0", + "6177": "branch0_seg0", + "6178": "branch0_seg0", + "6179": "branch0_seg0", + "6180": "branch0_seg0", + "6181": "branch0_seg0", + "6182": "branch0_seg0", + "6183": "branch0_seg0", + "6184": "branch0_seg0", + "6185": "branch0_seg0", + "6186": "branch0_seg0", + "6187": "branch0_seg0", + "6188": "branch0_seg0", + "6189": "branch0_seg0", + "6190": "branch0_seg0", + "6191": "branch0_seg0", + "6192": "branch0_seg0", + "6193": "branch0_seg0", + "6194": "branch0_seg0", + "6195": "branch0_seg0", + "6196": "branch0_seg0", + "6197": "branch0_seg0", + "6198": "branch0_seg0", + "6199": "branch0_seg0", + "6200": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.005, + "2": 0.01, + "3": 0.015, + "4": 0.02, + "5": 0.025, + "6": 0.03, + "7": 0.035, + "8": 0.04, + "9": 0.045, + "10": 0.05, + "11": 0.055, + "12": 0.06, + "13": 0.065, + "14": 0.07, + "15": 0.075, + "16": 0.08, + "17": 0.085, + "18": 0.09, + "19": 0.095, + "20": 0.1, + "21": 0.105, + "22": 0.11, + "23": 0.115, + "24": 0.12, + "25": 0.125, + "26": 0.13, + "27": 0.135, + "28": 0.14, + "29": 0.145, + "30": 0.15, + "31": 0.155, + "32": 0.16, + "33": 0.165, + "34": 0.17, + "35": 0.175, + "36": 0.18, + "37": 0.185, + "38": 0.19, + "39": 0.195, + "40": 0.2, + "41": 0.205, + "42": 0.21, + "43": 0.215, + "44": 0.22, + "45": 0.225, + "46": 0.23, + "47": 0.235, + "48": 0.24, + "49": 0.245, + "50": 0.25, + "51": 0.255, + "52": 0.26, + "53": 0.265, + "54": 0.27, + "55": 0.275, + "56": 0.28, + "57": 0.285, + "58": 0.29, + "59": 0.295, + "60": 0.3, + "61": 0.305, + "62": 0.31, + "63": 0.315, + "64": 0.32, + "65": 0.325, + "66": 0.33, + "67": 0.335, + "68": 0.34, + "69": 0.345, + "70": 0.35, + "71": 0.355, + "72": 0.36, + "73": 0.365, + "74": 0.37, + "75": 0.375, + "76": 0.38, + "77": 0.385, + "78": 0.39, + "79": 0.395, + "80": 0.4, + "81": 0.405, + "82": 0.41, + "83": 0.415, + "84": 0.42, + "85": 0.425, + "86": 0.43, + "87": 0.435, + "88": 0.44, + "89": 0.445, + "90": 0.45, + "91": 0.455, + "92": 0.46, + "93": 0.465, + "94": 0.47, + "95": 0.475, + "96": 0.48, + "97": 0.485, + "98": 0.49, + "99": 0.495, + "100": 0.5, + "101": 0.505, + "102": 0.51, + "103": 0.515, + "104": 0.52, + "105": 0.525, + "106": 0.53, + "107": 0.535, + "108": 0.54, + "109": 0.545, + "110": 0.55, + "111": 0.555, + "112": 0.56, + "113": 0.565, + "114": 0.57, + "115": 0.575, + "116": 0.58, + "117": 0.585, + "118": 0.59, + "119": 0.595, + "120": 0.6, + "121": 0.605, + "122": 0.61, + "123": 0.615, + "124": 0.62, + "125": 0.625, + "126": 0.63, + "127": 0.635, + "128": 0.64, + "129": 0.645, + "130": 0.65, + "131": 0.655, + "132": 0.66, + "133": 0.665, + "134": 0.67, + "135": 0.675, + "136": 0.68, + "137": 0.685, + "138": 0.69, + "139": 0.695, + "140": 0.7, + "141": 0.705, + "142": 0.71, + "143": 0.715, + "144": 0.72, + "145": 0.725, + "146": 0.73, + "147": 0.735, + "148": 0.74, + "149": 0.745, + "150": 0.75, + "151": 0.755, + "152": 0.76, + "153": 0.765, + "154": 0.77, + "155": 0.775, + "156": 0.78, + "157": 0.785, + "158": 0.79, + "159": 0.795, + "160": 0.8, + "161": 0.805, + "162": 0.81, + "163": 0.815, + "164": 0.82, + "165": 0.825, + "166": 0.83, + "167": 0.835, + "168": 0.84, + "169": 0.845, + "170": 0.85, + "171": 0.855, + "172": 0.86, + "173": 0.865, + "174": 0.87, + "175": 0.875, + "176": 0.88, + "177": 0.885, + "178": 0.89, + "179": 0.895, + "180": 0.9, + "181": 0.905, + "182": 0.91, + "183": 0.915, + "184": 0.92, + "185": 0.925, + "186": 0.93, + "187": 0.935, + "188": 0.94, + "189": 0.945, + "190": 0.95, + "191": 0.955, + "192": 0.96, + "193": 0.965, + "194": 0.97, + "195": 0.975, + "196": 0.98, + "197": 0.985, + "198": 0.99, + "199": 0.995, + "200": 1.0, + "201": 1.005, + "202": 1.01, + "203": 1.015, + "204": 1.02, + "205": 1.025, + "206": 1.03, + "207": 1.035, + "208": 1.04, + "209": 1.045, + "210": 1.05, + "211": 1.055, + "212": 1.06, + "213": 1.065, + "214": 1.07, + "215": 1.075, + "216": 1.08, + "217": 1.085, + "218": 1.09, + "219": 1.095, + "220": 1.1, + "221": 1.105, + "222": 1.11, + "223": 1.115, + "224": 1.12, + "225": 1.125, + "226": 1.13, + "227": 1.135, + "228": 1.14, + "229": 1.145, + "230": 1.15, + "231": 1.155, + "232": 1.16, + "233": 1.165, + "234": 1.17, + "235": 1.175, + "236": 1.18, + "237": 1.185, + "238": 1.19, + "239": 1.195, + "240": 1.2, + "241": 1.205, + "242": 1.21, + "243": 1.215, + "244": 1.22, + "245": 1.225, + "246": 1.23, + "247": 1.235, + "248": 1.24, + "249": 1.245, + "250": 1.25, + "251": 1.255, + "252": 1.26, + "253": 1.265, + "254": 1.27, + "255": 1.275, + "256": 1.28, + "257": 1.285, + "258": 1.29, + "259": 1.295, + "260": 1.3, + "261": 1.305, + "262": 1.31, + "263": 1.315, + "264": 1.32, + "265": 1.325, + "266": 1.33, + "267": 1.335, + "268": 1.34, + "269": 1.345, + "270": 1.35, + "271": 1.355, + "272": 1.36, + "273": 1.365, + "274": 1.37, + "275": 1.375, + "276": 1.38, + "277": 1.385, + "278": 1.39, + "279": 1.395, + "280": 1.4, + "281": 1.405, + "282": 1.41, + "283": 1.415, + "284": 1.42, + "285": 1.425, + "286": 1.43, + "287": 1.435, + "288": 1.44, + "289": 1.445, + "290": 1.45, + "291": 1.455, + "292": 1.46, + "293": 1.465, + "294": 1.47, + "295": 1.475, + "296": 1.48, + "297": 1.485, + "298": 1.49, + "299": 1.495, + "300": 1.5, + "301": 1.505, + "302": 1.51, + "303": 1.515, + "304": 1.52, + "305": 1.525, + "306": 1.53, + "307": 1.535, + "308": 1.54, + "309": 1.545, + "310": 1.55, + "311": 1.555, + "312": 1.56, + "313": 1.565, + "314": 1.57, + "315": 1.575, + "316": 1.58, + "317": 1.585, + "318": 1.59, + "319": 1.595, + "320": 1.6, + "321": 1.605, + "322": 1.61, + "323": 1.615, + "324": 1.62, + "325": 1.625, + "326": 1.63, + "327": 1.635, + "328": 1.64, + "329": 1.645, + "330": 1.65, + "331": 1.655, + "332": 1.66, + "333": 1.665, + "334": 1.67, + "335": 1.675, + "336": 1.68, + "337": 1.685, + "338": 1.69, + "339": 1.695, + "340": 1.7, + "341": 1.705, + "342": 1.71, + "343": 1.715, + "344": 1.72, + "345": 1.725, + "346": 1.73, + "347": 1.735, + "348": 1.74, + "349": 1.745, + "350": 1.75, + "351": 1.755, + "352": 1.76, + "353": 1.765, + "354": 1.77, + "355": 1.775, + "356": 1.78, + "357": 1.785, + "358": 1.79, + "359": 1.795, + "360": 1.8, + "361": 1.805, + "362": 1.81, + "363": 1.815, + "364": 1.82, + "365": 1.825, + "366": 1.83, + "367": 1.835, + "368": 1.84, + "369": 1.845, + "370": 1.85, + "371": 1.855, + "372": 1.86, + "373": 1.865, + "374": 1.87, + "375": 1.875, + "376": 1.88, + "377": 1.885, + "378": 1.89, + "379": 1.895, + "380": 1.9, + "381": 1.905, + "382": 1.91, + "383": 1.915, + "384": 1.92, + "385": 1.925, + "386": 1.93, + "387": 1.935, + "388": 1.94, + "389": 1.945, + "390": 1.95, + "391": 1.955, + "392": 1.96, + "393": 1.965, + "394": 1.97, + "395": 1.975, + "396": 1.98, + "397": 1.985, + "398": 1.99, + "399": 1.995, + "400": 2.0, + "401": 2.005, + "402": 2.01, + "403": 2.015, + "404": 2.02, + "405": 2.025, + "406": 2.03, + "407": 2.035, + "408": 2.04, + "409": 2.045, + "410": 2.05, + "411": 2.055, + "412": 2.06, + "413": 2.065, + "414": 2.07, + "415": 2.075, + "416": 2.08, + "417": 2.085, + "418": 2.09, + "419": 2.095, + "420": 2.1, + "421": 2.105, + "422": 2.11, + "423": 2.115, + "424": 2.12, + "425": 2.125, + "426": 2.13, + "427": 2.135, + "428": 2.14, + "429": 2.145, + "430": 2.15, + "431": 2.155, + "432": 2.16, + "433": 2.165, + "434": 2.17, + "435": 2.175, + "436": 2.18, + "437": 2.185, + "438": 2.19, + "439": 2.195, + "440": 2.2, + "441": 2.205, + "442": 2.21, + "443": 2.215, + "444": 2.22, + "445": 2.225, + "446": 2.23, + "447": 2.235, + "448": 2.24, + "449": 2.245, + "450": 2.25, + "451": 2.255, + "452": 2.26, + "453": 2.265, + "454": 2.27, + "455": 2.275, + "456": 2.28, + "457": 2.285, + "458": 2.29, + "459": 2.295, + "460": 2.3, + "461": 2.305, + "462": 2.31, + "463": 2.315, + "464": 2.32, + "465": 2.325, + "466": 2.33, + "467": 2.335, + "468": 2.34, + "469": 2.345, + "470": 2.35, + "471": 2.355, + "472": 2.36, + "473": 2.365, + "474": 2.37, + "475": 2.375, + "476": 2.38, + "477": 2.385, + "478": 2.39, + "479": 2.395, + "480": 2.4, + "481": 2.405, + "482": 2.41, + "483": 2.415, + "484": 2.42, + "485": 2.425, + "486": 2.43, + "487": 2.435, + "488": 2.44, + "489": 2.445, + "490": 2.45, + "491": 2.455, + "492": 2.46, + "493": 2.465, + "494": 2.47, + "495": 2.475, + "496": 2.48, + "497": 2.485, + "498": 2.49, + "499": 2.495, + "500": 2.5, + "501": 2.505, + "502": 2.51, + "503": 2.515, + "504": 2.52, + "505": 2.525, + "506": 2.53, + "507": 2.535, + "508": 2.54, + "509": 2.545, + "510": 2.55, + "511": 2.555, + "512": 2.56, + "513": 2.565, + "514": 2.57, + "515": 2.575, + "516": 2.58, + "517": 2.585, + "518": 2.59, + "519": 2.595, + "520": 2.6, + "521": 2.605, + "522": 2.61, + "523": 2.615, + "524": 2.62, + "525": 2.625, + "526": 2.63, + "527": 2.635, + "528": 2.64, + "529": 2.645, + "530": 2.65, + "531": 2.655, + "532": 2.66, + "533": 2.665, + "534": 2.67, + "535": 2.675, + "536": 2.68, + "537": 2.685, + "538": 2.69, + "539": 2.695, + "540": 2.7, + "541": 2.705, + "542": 2.71, + "543": 2.715, + "544": 2.72, + "545": 2.725, + "546": 2.73, + "547": 2.735, + "548": 2.74, + "549": 2.745, + "550": 2.75, + "551": 2.755, + "552": 2.76, + "553": 2.765, + "554": 2.77, + "555": 2.775, + "556": 2.78, + "557": 2.785, + "558": 2.79, + "559": 2.795, + "560": 2.8, + "561": 2.805, + "562": 2.81, + "563": 2.815, + "564": 2.82, + "565": 2.825, + "566": 2.83, + "567": 2.835, + "568": 2.84, + "569": 2.845, + "570": 2.85, + "571": 2.855, + "572": 2.86, + "573": 2.865, + "574": 2.87, + "575": 2.875, + "576": 2.88, + "577": 2.885, + "578": 2.89, + "579": 2.895, + "580": 2.9, + "581": 2.905, + "582": 2.91, + "583": 2.915, + "584": 2.92, + "585": 2.925, + "586": 2.93, + "587": 2.935, + "588": 2.94, + "589": 2.945, + "590": 2.95, + "591": 2.955, + "592": 2.96, + "593": 2.965, + "594": 2.97, + "595": 2.975, + "596": 2.98, + "597": 2.985, + "598": 2.99, + "599": 2.995, + "600": 3.0, + "601": 3.005, + "602": 3.01, + "603": 3.015, + "604": 3.02, + "605": 3.025, + "606": 3.03, + "607": 3.035, + "608": 3.04, + "609": 3.045, + "610": 3.05, + "611": 3.055, + "612": 3.06, + "613": 3.065, + "614": 3.07, + "615": 3.075, + "616": 3.08, + "617": 3.085, + "618": 3.09, + "619": 3.095, + "620": 3.1, + "621": 3.105, + "622": 3.11, + "623": 3.115, + "624": 3.12, + "625": 3.125, + "626": 3.13, + "627": 3.135, + "628": 3.14, + "629": 3.145, + "630": 3.15, + "631": 3.155, + "632": 3.16, + "633": 3.165, + "634": 3.17, + "635": 3.175, + "636": 3.18, + "637": 3.185, + "638": 3.19, + "639": 3.195, + "640": 3.2, + "641": 3.205, + "642": 3.21, + "643": 3.215, + "644": 3.22, + "645": 3.225, + "646": 3.23, + "647": 3.235, + "648": 3.24, + "649": 3.245, + "650": 3.25, + "651": 3.255, + "652": 3.26, + "653": 3.265, + "654": 3.27, + "655": 3.275, + "656": 3.28, + "657": 3.285, + "658": 3.29, + "659": 3.295, + "660": 3.3, + "661": 3.305, + "662": 3.31, + "663": 3.315, + "664": 3.32, + "665": 3.325, + "666": 3.33, + "667": 3.335, + "668": 3.34, + "669": 3.345, + "670": 3.35, + "671": 3.355, + "672": 3.36, + "673": 3.365, + "674": 3.37, + "675": 3.375, + "676": 3.38, + "677": 3.385, + "678": 3.39, + "679": 3.395, + "680": 3.4, + "681": 3.405, + "682": 3.41, + "683": 3.415, + "684": 3.42, + "685": 3.425, + "686": 3.43, + "687": 3.435, + "688": 3.44, + "689": 3.445, + "690": 3.45, + "691": 3.455, + "692": 3.46, + "693": 3.465, + "694": 3.47, + "695": 3.475, + "696": 3.48, + "697": 3.485, + "698": 3.49, + "699": 3.495, + "700": 3.5, + "701": 3.505, + "702": 3.51, + "703": 3.515, + "704": 3.52, + "705": 3.525, + "706": 3.53, + "707": 3.535, + "708": 3.54, + "709": 3.545, + "710": 3.55, + "711": 3.555, + "712": 3.56, + "713": 3.565, + "714": 3.57, + "715": 3.575, + "716": 3.58, + "717": 3.585, + "718": 3.59, + "719": 3.595, + "720": 3.6, + "721": 3.605, + "722": 3.61, + "723": 3.615, + "724": 3.62, + "725": 3.625, + "726": 3.63, + "727": 3.635, + "728": 3.64, + "729": 3.645, + "730": 3.65, + "731": 3.655, + "732": 3.66, + "733": 3.665, + "734": 3.67, + "735": 3.675, + "736": 3.68, + "737": 3.685, + "738": 3.69, + "739": 3.695, + "740": 3.7, + "741": 3.705, + "742": 3.71, + "743": 3.715, + "744": 3.72, + "745": 3.725, + "746": 3.73, + "747": 3.735, + "748": 3.74, + "749": 3.745, + "750": 3.75, + "751": 3.755, + "752": 3.76, + "753": 3.765, + "754": 3.77, + "755": 3.775, + "756": 3.78, + "757": 3.785, + "758": 3.79, + "759": 3.795, + "760": 3.8, + "761": 3.805, + "762": 3.81, + "763": 3.815, + "764": 3.82, + "765": 3.825, + "766": 3.83, + "767": 3.835, + "768": 3.84, + "769": 3.845, + "770": 3.85, + "771": 3.855, + "772": 3.86, + "773": 3.865, + "774": 3.87, + "775": 3.875, + "776": 3.88, + "777": 3.885, + "778": 3.89, + "779": 3.895, + "780": 3.9, + "781": 3.905, + "782": 3.91, + "783": 3.915, + "784": 3.92, + "785": 3.925, + "786": 3.93, + "787": 3.935, + "788": 3.94, + "789": 3.945, + "790": 3.95, + "791": 3.955, + "792": 3.96, + "793": 3.965, + "794": 3.97, + "795": 3.975, + "796": 3.98, + "797": 3.985, + "798": 3.99, + "799": 3.995, + "800": 4.0, + "801": 4.005, + "802": 4.01, + "803": 4.015, + "804": 4.02, + "805": 4.025, + "806": 4.03, + "807": 4.035, + "808": 4.04, + "809": 4.045, + "810": 4.05, + "811": 4.055, + "812": 4.06, + "813": 4.065, + "814": 4.07, + "815": 4.075, + "816": 4.08, + "817": 4.085, + "818": 4.09, + "819": 4.095, + "820": 4.1, + "821": 4.105, + "822": 4.11, + "823": 4.115, + "824": 4.12, + "825": 4.125, + "826": 4.13, + "827": 4.135, + "828": 4.14, + "829": 4.145, + "830": 4.15, + "831": 4.155, + "832": 4.16, + "833": 4.165, + "834": 4.17, + "835": 4.175, + "836": 4.18, + "837": 4.185, + "838": 4.19, + "839": 4.195, + "840": 4.2, + "841": 4.205, + "842": 4.21, + "843": 4.215, + "844": 4.22, + "845": 4.225, + "846": 4.23, + "847": 4.235, + "848": 4.24, + "849": 4.245, + "850": 4.25, + "851": 4.255, + "852": 4.26, + "853": 4.265, + "854": 4.27, + "855": 4.275, + "856": 4.28, + "857": 4.285, + "858": 4.29, + "859": 4.295, + "860": 4.3, + "861": 4.305, + "862": 4.31, + "863": 4.315, + "864": 4.32, + "865": 4.325, + "866": 4.33, + "867": 4.335, + "868": 4.34, + "869": 4.345, + "870": 4.35, + "871": 4.355, + "872": 4.36, + "873": 4.365, + "874": 4.37, + "875": 4.375, + "876": 4.38, + "877": 4.385, + "878": 4.39, + "879": 4.395, + "880": 4.4, + "881": 4.405, + "882": 4.41, + "883": 4.415, + "884": 4.42, + "885": 4.425, + "886": 4.43, + "887": 4.435, + "888": 4.44, + "889": 4.445, + "890": 4.45, + "891": 4.455, + "892": 4.46, + "893": 4.465, + "894": 4.47, + "895": 4.475, + "896": 4.48, + "897": 4.485, + "898": 4.49, + "899": 4.495, + "900": 4.5, + "901": 4.505, + "902": 4.51, + "903": 4.515, + "904": 4.52, + "905": 4.525, + "906": 4.53, + "907": 4.535, + "908": 4.54, + "909": 4.545, + "910": 4.55, + "911": 4.555, + "912": 4.56, + "913": 4.565, + "914": 4.57, + "915": 4.575, + "916": 4.58, + "917": 4.585, + "918": 4.59, + "919": 4.595, + "920": 4.6, + "921": 4.605, + "922": 4.61, + "923": 4.615, + "924": 4.62, + "925": 4.625, + "926": 4.63, + "927": 4.635, + "928": 4.64, + "929": 4.645, + "930": 4.65, + "931": 4.655, + "932": 4.66, + "933": 4.665, + "934": 4.67, + "935": 4.675, + "936": 4.68, + "937": 4.685, + "938": 4.69, + "939": 4.695, + "940": 4.7, + "941": 4.705, + "942": 4.71, + "943": 4.715, + "944": 4.72, + "945": 4.725, + "946": 4.73, + "947": 4.735, + "948": 4.74, + "949": 4.745, + "950": 4.75, + "951": 4.755, + "952": 4.76, + "953": 4.765, + "954": 4.77, + "955": 4.775, + "956": 4.78, + "957": 4.785, + "958": 4.79, + "959": 4.795, + "960": 4.8, + "961": 4.805, + "962": 4.81, + "963": 4.815, + "964": 4.82, + "965": 4.825, + "966": 4.83, + "967": 4.835, + "968": 4.84, + "969": 4.845, + "970": 4.85, + "971": 4.855, + "972": 4.86, + "973": 4.865, + "974": 4.87, + "975": 4.875, + "976": 4.88, + "977": 4.885, + "978": 4.89, + "979": 4.895, + "980": 4.9, + "981": 4.905, + "982": 4.91, + "983": 4.915, + "984": 4.92, + "985": 4.925, + "986": 4.93, + "987": 4.935, + "988": 4.94, + "989": 4.945, + "990": 4.95, + "991": 4.955, + "992": 4.96, + "993": 4.965, + "994": 4.97, + "995": 4.975, + "996": 4.98, + "997": 4.985, + "998": 4.99, + "999": 4.995, + "1000": 5.0, + "1001": 5.005, + "1002": 5.01, + "1003": 5.015, + "1004": 5.02, + "1005": 5.025, + "1006": 5.03, + "1007": 5.035, + "1008": 5.04, + "1009": 5.045, + "1010": 5.05, + "1011": 5.055, + "1012": 5.06, + "1013": 5.065, + "1014": 5.07, + "1015": 5.075, + "1016": 5.08, + "1017": 5.085, + "1018": 5.09, + "1019": 5.095, + "1020": 5.1, + "1021": 5.105, + "1022": 5.11, + "1023": 5.115, + "1024": 5.12, + "1025": 5.125, + "1026": 5.13, + "1027": 5.135, + "1028": 5.14, + "1029": 5.145, + "1030": 5.15, + "1031": 5.155, + "1032": 5.16, + "1033": 5.165, + "1034": 5.17, + "1035": 5.175, + "1036": 5.18, + "1037": 5.185, + "1038": 5.19, + "1039": 5.195, + "1040": 5.2, + "1041": 5.205, + "1042": 5.21, + "1043": 5.215, + "1044": 5.22, + "1045": 5.225, + "1046": 5.23, + "1047": 5.235, + "1048": 5.24, + "1049": 5.245, + "1050": 5.25, + "1051": 5.255, + "1052": 5.26, + "1053": 5.265, + "1054": 5.27, + "1055": 5.275, + "1056": 5.28, + "1057": 5.285, + "1058": 5.29, + "1059": 5.295, + "1060": 5.3, + "1061": 5.305, + "1062": 5.31, + "1063": 5.315, + "1064": 5.32, + "1065": 5.325, + "1066": 5.33, + "1067": 5.335, + "1068": 5.34, + "1069": 5.345, + "1070": 5.35, + "1071": 5.355, + "1072": 5.36, + "1073": 5.365, + "1074": 5.37, + "1075": 5.375, + "1076": 5.38, + "1077": 5.385, + "1078": 5.39, + "1079": 5.395, + "1080": 5.4, + "1081": 5.405, + "1082": 5.41, + "1083": 5.415, + "1084": 5.42, + "1085": 5.425, + "1086": 5.43, + "1087": 5.435, + "1088": 5.44, + "1089": 5.445, + "1090": 5.45, + "1091": 5.455, + "1092": 5.46, + "1093": 5.465, + "1094": 5.47, + "1095": 5.475, + "1096": 5.48, + "1097": 5.485, + "1098": 5.49, + "1099": 5.495, + "1100": 5.5, + "1101": 5.505, + "1102": 5.51, + "1103": 5.515, + "1104": 5.52, + "1105": 5.525, + "1106": 5.53, + "1107": 5.535, + "1108": 5.54, + "1109": 5.545, + "1110": 5.55, + "1111": 5.555, + "1112": 5.56, + "1113": 5.565, + "1114": 5.57, + "1115": 5.575, + "1116": 5.58, + "1117": 5.585, + "1118": 5.59, + "1119": 5.595, + "1120": 5.6, + "1121": 5.605, + "1122": 5.61, + "1123": 5.615, + "1124": 5.62, + "1125": 5.625, + "1126": 5.63, + "1127": 5.635, + "1128": 5.64, + "1129": 5.645, + "1130": 5.65, + "1131": 5.655, + "1132": 5.66, + "1133": 5.665, + "1134": 5.67, + "1135": 5.675, + "1136": 5.68, + "1137": 5.685, + "1138": 5.69, + "1139": 5.695, + "1140": 5.7, + "1141": 5.705, + "1142": 5.71, + "1143": 5.715, + "1144": 5.72, + "1145": 5.725, + "1146": 5.73, + "1147": 5.735, + "1148": 5.74, + "1149": 5.745, + "1150": 5.75, + "1151": 5.755, + "1152": 5.76, + "1153": 5.765, + "1154": 5.77, + "1155": 5.775, + "1156": 5.78, + "1157": 5.785, + "1158": 5.79, + "1159": 5.795, + "1160": 5.8, + "1161": 5.805, + "1162": 5.81, + "1163": 5.815, + "1164": 5.82, + "1165": 5.825, + "1166": 5.83, + "1167": 5.835, + "1168": 5.84, + "1169": 5.845, + "1170": 5.85, + "1171": 5.855, + "1172": 5.86, + "1173": 5.865, + "1174": 5.87, + "1175": 5.875, + "1176": 5.88, + "1177": 5.885, + "1178": 5.89, + "1179": 5.895, + "1180": 5.9, + "1181": 5.905, + "1182": 5.91, + "1183": 5.915, + "1184": 5.92, + "1185": 5.925, + "1186": 5.93, + "1187": 5.935, + "1188": 5.94, + "1189": 5.945, + "1190": 5.95, + "1191": 5.955, + "1192": 5.96, + "1193": 5.965, + "1194": 5.97, + "1195": 5.975, + "1196": 5.98, + "1197": 5.985, + "1198": 5.99, + "1199": 5.995, + "1200": 6.0, + "1201": 6.005, + "1202": 6.01, + "1203": 6.015, + "1204": 6.02, + "1205": 6.025, + "1206": 6.03, + "1207": 6.035, + "1208": 6.04, + "1209": 6.045, + "1210": 6.05, + "1211": 6.055, + "1212": 6.06, + "1213": 6.065, + "1214": 6.07, + "1215": 6.075, + "1216": 6.08, + "1217": 6.085, + "1218": 6.09, + "1219": 6.095, + "1220": 6.1, + "1221": 6.105, + "1222": 6.11, + "1223": 6.115, + "1224": 6.12, + "1225": 6.125, + "1226": 6.13, + "1227": 6.135, + "1228": 6.14, + "1229": 6.145, + "1230": 6.15, + "1231": 6.155, + "1232": 6.16, + "1233": 6.165, + "1234": 6.17, + "1235": 6.175, + "1236": 6.18, + "1237": 6.185, + "1238": 6.19, + "1239": 6.195, + "1240": 6.2, + "1241": 6.205, + "1242": 6.21, + "1243": 6.215, + "1244": 6.22, + "1245": 6.225, + "1246": 6.23, + "1247": 6.235, + "1248": 6.24, + "1249": 6.245, + "1250": 6.25, + "1251": 6.255, + "1252": 6.26, + "1253": 6.265, + "1254": 6.27, + "1255": 6.275, + "1256": 6.28, + "1257": 6.285, + "1258": 6.29, + "1259": 6.295, + "1260": 6.3, + "1261": 6.305, + "1262": 6.31, + "1263": 6.315, + "1264": 6.32, + "1265": 6.325, + "1266": 6.33, + "1267": 6.335, + "1268": 6.34, + "1269": 6.345, + "1270": 6.35, + "1271": 6.355, + "1272": 6.36, + "1273": 6.365, + "1274": 6.37, + "1275": 6.375, + "1276": 6.38, + "1277": 6.385, + "1278": 6.39, + "1279": 6.395, + "1280": 6.4, + "1281": 6.405, + "1282": 6.41, + "1283": 6.415, + "1284": 6.42, + "1285": 6.425, + "1286": 6.43, + "1287": 6.435, + "1288": 6.44, + "1289": 6.445, + "1290": 6.45, + "1291": 6.455, + "1292": 6.46, + "1293": 6.465, + "1294": 6.47, + "1295": 6.475, + "1296": 6.48, + "1297": 6.485, + "1298": 6.49, + "1299": 6.495, + "1300": 6.5, + "1301": 6.505, + "1302": 6.51, + "1303": 6.515, + "1304": 6.52, + "1305": 6.525, + "1306": 6.53, + "1307": 6.535, + "1308": 6.54, + "1309": 6.545, + "1310": 6.55, + "1311": 6.555, + "1312": 6.56, + "1313": 6.565, + "1314": 6.57, + "1315": 6.575, + "1316": 6.58, + "1317": 6.585, + "1318": 6.59, + "1319": 6.595, + "1320": 6.6, + "1321": 6.605, + "1322": 6.61, + "1323": 6.615, + "1324": 6.62, + "1325": 6.625, + "1326": 6.63, + "1327": 6.635, + "1328": 6.64, + "1329": 6.645, + "1330": 6.65, + "1331": 6.655, + "1332": 6.66, + "1333": 6.665, + "1334": 6.67, + "1335": 6.675, + "1336": 6.68, + "1337": 6.685, + "1338": 6.69, + "1339": 6.695, + "1340": 6.7, + "1341": 6.705, + "1342": 6.71, + "1343": 6.715, + "1344": 6.72, + "1345": 6.725, + "1346": 6.73, + "1347": 6.735, + "1348": 6.74, + "1349": 6.745, + "1350": 6.75, + "1351": 6.755, + "1352": 6.76, + "1353": 6.765, + "1354": 6.77, + "1355": 6.775, + "1356": 6.78, + "1357": 6.785, + "1358": 6.79, + "1359": 6.795, + "1360": 6.8, + "1361": 6.805, + "1362": 6.81, + "1363": 6.815, + "1364": 6.82, + "1365": 6.825, + "1366": 6.83, + "1367": 6.835, + "1368": 6.84, + "1369": 6.845, + "1370": 6.85, + "1371": 6.855, + "1372": 6.86, + "1373": 6.865, + "1374": 6.87, + "1375": 6.875, + "1376": 6.88, + "1377": 6.885, + "1378": 6.89, + "1379": 6.895, + "1380": 6.9, + "1381": 6.905, + "1382": 6.91, + "1383": 6.915, + "1384": 6.92, + "1385": 6.925, + "1386": 6.93, + "1387": 6.935, + "1388": 6.94, + "1389": 6.945, + "1390": 6.95, + "1391": 6.955, + "1392": 6.96, + "1393": 6.965, + "1394": 6.97, + "1395": 6.975, + "1396": 6.98, + "1397": 6.985, + "1398": 6.99, + "1399": 6.995, + "1400": 7.0, + "1401": 7.005, + "1402": 7.01, + "1403": 7.015, + "1404": 7.02, + "1405": 7.025, + "1406": 7.03, + "1407": 7.035, + "1408": 7.04, + "1409": 7.045, + "1410": 7.05, + "1411": 7.055, + "1412": 7.06, + "1413": 7.065, + "1414": 7.07, + "1415": 7.075, + "1416": 7.08, + "1417": 7.085, + "1418": 7.09, + "1419": 7.095, + "1420": 7.1, + "1421": 7.105, + "1422": 7.11, + "1423": 7.115, + "1424": 7.12, + "1425": 7.125, + "1426": 7.13, + "1427": 7.135, + "1428": 7.14, + "1429": 7.145, + "1430": 7.15, + "1431": 7.155, + "1432": 7.16, + "1433": 7.165, + "1434": 7.17, + "1435": 7.175, + "1436": 7.18, + "1437": 7.185, + "1438": 7.19, + "1439": 7.195, + "1440": 7.2, + "1441": 7.205, + "1442": 7.21, + "1443": 7.215, + "1444": 7.22, + "1445": 7.225, + "1446": 7.23, + "1447": 7.235, + "1448": 7.24, + "1449": 7.245, + "1450": 7.25, + "1451": 7.255, + "1452": 7.26, + "1453": 7.265, + "1454": 7.27, + "1455": 7.275, + "1456": 7.28, + "1457": 7.285, + "1458": 7.29, + "1459": 7.295, + "1460": 7.3, + "1461": 7.305, + "1462": 7.31, + "1463": 7.315, + "1464": 7.32, + "1465": 7.325, + "1466": 7.33, + "1467": 7.335, + "1468": 7.34, + "1469": 7.345, + "1470": 7.35, + "1471": 7.355, + "1472": 7.36, + "1473": 7.365, + "1474": 7.37, + "1475": 7.375, + "1476": 7.38, + "1477": 7.385, + "1478": 7.39, + "1479": 7.395, + "1480": 7.4, + "1481": 7.405, + "1482": 7.41, + "1483": 7.415, + "1484": 7.42, + "1485": 7.425, + "1486": 7.43, + "1487": 7.435, + "1488": 7.44, + "1489": 7.445, + "1490": 7.45, + "1491": 7.455, + "1492": 7.46, + "1493": 7.465, + "1494": 7.47, + "1495": 7.475, + "1496": 7.48, + "1497": 7.485, + "1498": 7.49, + "1499": 7.495, + "1500": 7.5, + "1501": 7.505, + "1502": 7.51, + "1503": 7.515, + "1504": 7.52, + "1505": 7.525, + "1506": 7.53, + "1507": 7.535, + "1508": 7.54, + "1509": 7.545, + "1510": 7.55, + "1511": 7.555, + "1512": 7.56, + "1513": 7.565, + "1514": 7.57, + "1515": 7.575, + "1516": 7.58, + "1517": 7.585, + "1518": 7.59, + "1519": 7.595, + "1520": 7.6, + "1521": 7.605, + "1522": 7.61, + "1523": 7.615, + "1524": 7.62, + "1525": 7.625, + "1526": 7.63, + "1527": 7.635, + "1528": 7.64, + "1529": 7.645, + "1530": 7.65, + "1531": 7.655, + "1532": 7.66, + "1533": 7.665, + "1534": 7.67, + "1535": 7.675, + "1536": 7.68, + "1537": 7.685, + "1538": 7.69, + "1539": 7.695, + "1540": 7.7, + "1541": 7.705, + "1542": 7.71, + "1543": 7.715, + "1544": 7.72, + "1545": 7.725, + "1546": 7.73, + "1547": 7.735, + "1548": 7.74, + "1549": 7.745, + "1550": 7.75, + "1551": 7.755, + "1552": 7.76, + "1553": 7.765, + "1554": 7.77, + "1555": 7.775, + "1556": 7.78, + "1557": 7.785, + "1558": 7.79, + "1559": 7.795, + "1560": 7.8, + "1561": 7.805, + "1562": 7.81, + "1563": 7.815, + "1564": 7.82, + "1565": 7.825, + "1566": 7.83, + "1567": 7.835, + "1568": 7.84, + "1569": 7.845, + "1570": 7.85, + "1571": 7.855, + "1572": 7.86, + "1573": 7.865, + "1574": 7.87, + "1575": 7.875, + "1576": 7.88, + "1577": 7.885, + "1578": 7.89, + "1579": 7.895, + "1580": 7.9, + "1581": 7.905, + "1582": 7.91, + "1583": 7.915, + "1584": 7.92, + "1585": 7.925, + "1586": 7.93, + "1587": 7.935, + "1588": 7.94, + "1589": 7.945, + "1590": 7.95, + "1591": 7.955, + "1592": 7.96, + "1593": 7.965, + "1594": 7.97, + "1595": 7.975, + "1596": 7.98, + "1597": 7.985, + "1598": 7.99, + "1599": 7.995, + "1600": 8.0, + "1601": 8.005, + "1602": 8.01, + "1603": 8.015, + "1604": 8.02, + "1605": 8.025, + "1606": 8.03, + "1607": 8.035, + "1608": 8.04, + "1609": 8.045, + "1610": 8.05, + "1611": 8.055, + "1612": 8.06, + "1613": 8.065, + "1614": 8.07, + "1615": 8.075, + "1616": 8.08, + "1617": 8.085, + "1618": 8.09, + "1619": 8.095, + "1620": 8.1, + "1621": 8.105, + "1622": 8.11, + "1623": 8.115, + "1624": 8.12, + "1625": 8.125, + "1626": 8.13, + "1627": 8.135, + "1628": 8.14, + "1629": 8.145, + "1630": 8.15, + "1631": 8.155, + "1632": 8.16, + "1633": 8.165, + "1634": 8.17, + "1635": 8.175, + "1636": 8.18, + "1637": 8.185, + "1638": 8.19, + "1639": 8.195, + "1640": 8.2, + "1641": 8.205, + "1642": 8.21, + "1643": 8.215, + "1644": 8.22, + "1645": 8.225, + "1646": 8.23, + "1647": 8.235, + "1648": 8.24, + "1649": 8.245, + "1650": 8.25, + "1651": 8.255, + "1652": 8.26, + "1653": 8.265, + "1654": 8.27, + "1655": 8.275, + "1656": 8.28, + "1657": 8.285, + "1658": 8.29, + "1659": 8.295, + "1660": 8.3, + "1661": 8.305, + "1662": 8.31, + "1663": 8.315, + "1664": 8.32, + "1665": 8.325, + "1666": 8.33, + "1667": 8.335, + "1668": 8.34, + "1669": 8.345, + "1670": 8.35, + "1671": 8.355, + "1672": 8.36, + "1673": 8.365, + "1674": 8.37, + "1675": 8.375, + "1676": 8.38, + "1677": 8.385, + "1678": 8.39, + "1679": 8.395, + "1680": 8.4, + "1681": 8.405, + "1682": 8.41, + "1683": 8.415, + "1684": 8.42, + "1685": 8.425, + "1686": 8.43, + "1687": 8.435, + "1688": 8.44, + "1689": 8.445, + "1690": 8.45, + "1691": 8.455, + "1692": 8.46, + "1693": 8.465, + "1694": 8.47, + "1695": 8.475, + "1696": 8.48, + "1697": 8.485, + "1698": 8.49, + "1699": 8.495, + "1700": 8.5, + "1701": 8.505, + "1702": 8.51, + "1703": 8.515, + "1704": 8.52, + "1705": 8.525, + "1706": 8.53, + "1707": 8.535, + "1708": 8.54, + "1709": 8.545, + "1710": 8.55, + "1711": 8.555, + "1712": 8.56, + "1713": 8.565, + "1714": 8.57, + "1715": 8.575, + "1716": 8.58, + "1717": 8.585, + "1718": 8.59, + "1719": 8.595, + "1720": 8.6, + "1721": 8.605, + "1722": 8.61, + "1723": 8.615, + "1724": 8.62, + "1725": 8.625, + "1726": 8.63, + "1727": 8.635, + "1728": 8.64, + "1729": 8.645, + "1730": 8.65, + "1731": 8.655, + "1732": 8.66, + "1733": 8.665, + "1734": 8.67, + "1735": 8.675, + "1736": 8.68, + "1737": 8.685, + "1738": 8.69, + "1739": 8.695, + "1740": 8.7, + "1741": 8.705, + "1742": 8.71, + "1743": 8.715, + "1744": 8.72, + "1745": 8.725, + "1746": 8.73, + "1747": 8.735, + "1748": 8.74, + "1749": 8.745, + "1750": 8.75, + "1751": 8.755, + "1752": 8.76, + "1753": 8.765, + "1754": 8.77, + "1755": 8.775, + "1756": 8.78, + "1757": 8.785, + "1758": 8.79, + "1759": 8.795, + "1760": 8.8, + "1761": 8.805, + "1762": 8.81, + "1763": 8.815, + "1764": 8.82, + "1765": 8.825, + "1766": 8.83, + "1767": 8.835, + "1768": 8.84, + "1769": 8.845, + "1770": 8.85, + "1771": 8.855, + "1772": 8.86, + "1773": 8.865, + "1774": 8.87, + "1775": 8.875, + "1776": 8.88, + "1777": 8.885, + "1778": 8.89, + "1779": 8.895, + "1780": 8.9, + "1781": 8.905, + "1782": 8.91, + "1783": 8.915, + "1784": 8.92, + "1785": 8.925, + "1786": 8.93, + "1787": 8.935, + "1788": 8.94, + "1789": 8.945, + "1790": 8.95, + "1791": 8.955, + "1792": 8.96, + "1793": 8.965, + "1794": 8.97, + "1795": 8.975, + "1796": 8.98, + "1797": 8.985, + "1798": 8.99, + "1799": 8.995, + "1800": 9.0, + "1801": 9.005, + "1802": 9.01, + "1803": 9.015, + "1804": 9.02, + "1805": 9.025, + "1806": 9.03, + "1807": 9.035, + "1808": 9.04, + "1809": 9.045, + "1810": 9.05, + "1811": 9.055, + "1812": 9.06, + "1813": 9.065, + "1814": 9.07, + "1815": 9.075, + "1816": 9.08, + "1817": 9.085, + "1818": 9.09, + "1819": 9.095, + "1820": 9.1, + "1821": 9.105, + "1822": 9.11, + "1823": 9.115, + "1824": 9.12, + "1825": 9.125, + "1826": 9.13, + "1827": 9.135, + "1828": 9.14, + "1829": 9.145, + "1830": 9.15, + "1831": 9.155, + "1832": 9.16, + "1833": 9.165, + "1834": 9.17, + "1835": 9.175, + "1836": 9.18, + "1837": 9.185, + "1838": 9.19, + "1839": 9.195, + "1840": 9.2, + "1841": 9.205, + "1842": 9.21, + "1843": 9.215, + "1844": 9.22, + "1845": 9.225, + "1846": 9.23, + "1847": 9.235, + "1848": 9.24, + "1849": 9.245, + "1850": 9.25, + "1851": 9.255, + "1852": 9.26, + "1853": 9.265, + "1854": 9.27, + "1855": 9.275, + "1856": 9.28, + "1857": 9.285, + "1858": 9.29, + "1859": 9.295, + "1860": 9.3, + "1861": 9.305, + "1862": 9.31, + "1863": 9.315, + "1864": 9.32, + "1865": 9.325, + "1866": 9.33, + "1867": 9.335, + "1868": 9.34, + "1869": 9.345, + "1870": 9.35, + "1871": 9.355, + "1872": 9.36, + "1873": 9.365, + "1874": 9.37, + "1875": 9.375, + "1876": 9.38, + "1877": 9.385, + "1878": 9.39, + "1879": 9.395, + "1880": 9.4, + "1881": 9.405, + "1882": 9.41, + "1883": 9.415, + "1884": 9.42, + "1885": 9.425, + "1886": 9.43, + "1887": 9.435, + "1888": 9.44, + "1889": 9.445, + "1890": 9.45, + "1891": 9.455, + "1892": 9.46, + "1893": 9.465, + "1894": 9.47, + "1895": 9.475, + "1896": 9.48, + "1897": 9.485, + "1898": 9.49, + "1899": 9.495, + "1900": 9.5, + "1901": 9.505, + "1902": 9.51, + "1903": 9.515, + "1904": 9.52, + "1905": 9.525, + "1906": 9.53, + "1907": 9.535, + "1908": 9.54, + "1909": 9.545, + "1910": 9.55, + "1911": 9.555, + "1912": 9.56, + "1913": 9.565, + "1914": 9.57, + "1915": 9.575, + "1916": 9.58, + "1917": 9.585, + "1918": 9.59, + "1919": 9.595, + "1920": 9.6, + "1921": 9.605, + "1922": 9.61, + "1923": 9.615, + "1924": 9.62, + "1925": 9.625, + "1926": 9.63, + "1927": 9.635, + "1928": 9.64, + "1929": 9.645, + "1930": 9.65, + "1931": 9.655, + "1932": 9.66, + "1933": 9.665, + "1934": 9.67, + "1935": 9.675, + "1936": 9.68, + "1937": 9.685, + "1938": 9.69, + "1939": 9.695, + "1940": 9.7, + "1941": 9.705, + "1942": 9.71, + "1943": 9.715, + "1944": 9.72, + "1945": 9.725, + "1946": 9.73, + "1947": 9.735, + "1948": 9.74, + "1949": 9.745, + "1950": 9.75, + "1951": 9.755, + "1952": 9.76, + "1953": 9.765, + "1954": 9.77, + "1955": 9.775, + "1956": 9.78, + "1957": 9.785, + "1958": 9.79, + "1959": 9.795, + "1960": 9.8, + "1961": 9.805, + "1962": 9.81, + "1963": 9.815, + "1964": 9.82, + "1965": 9.825, + "1966": 9.83, + "1967": 9.835, + "1968": 9.84, + "1969": 9.845, + "1970": 9.85, + "1971": 9.855, + "1972": 9.86, + "1973": 9.865, + "1974": 9.87, + "1975": 9.875, + "1976": 9.88, + "1977": 9.885, + "1978": 9.89, + "1979": 9.895, + "1980": 9.9, + "1981": 9.905, + "1982": 9.91, + "1983": 9.915, + "1984": 9.92, + "1985": 9.925, + "1986": 9.93, + "1987": 9.935, + "1988": 9.94, + "1989": 9.945, + "1990": 9.95, + "1991": 9.955, + "1992": 9.96, + "1993": 9.965, + "1994": 9.97, + "1995": 9.975, + "1996": 9.98, + "1997": 9.985, + "1998": 9.99, + "1999": 9.995, + "2000": 10.0, + "2001": 10.005, + "2002": 10.01, + "2003": 10.015, + "2004": 10.02, + "2005": 10.025, + "2006": 10.03, + "2007": 10.035, + "2008": 10.04, + "2009": 10.045, + "2010": 10.05, + "2011": 10.055, + "2012": 10.06, + "2013": 10.065, + "2014": 10.07, + "2015": 10.075, + "2016": 10.08, + "2017": 10.085, + "2018": 10.09, + "2019": 10.095, + "2020": 10.1, + "2021": 10.105, + "2022": 10.11, + "2023": 10.115, + "2024": 10.12, + "2025": 10.125, + "2026": 10.13, + "2027": 10.135, + "2028": 10.14, + "2029": 10.145, + "2030": 10.15, + "2031": 10.155, + "2032": 10.16, + "2033": 10.165, + "2034": 10.17, + "2035": 10.175, + "2036": 10.18, + "2037": 10.185, + "2038": 10.19, + "2039": 10.195, + "2040": 10.2, + "2041": 10.205, + "2042": 10.21, + "2043": 10.215, + "2044": 10.22, + "2045": 10.225, + "2046": 10.23, + "2047": 10.235, + "2048": 10.24, + "2049": 10.245, + "2050": 10.25, + "2051": 10.255, + "2052": 10.26, + "2053": 10.265, + "2054": 10.27, + "2055": 10.275, + "2056": 10.28, + "2057": 10.285, + "2058": 10.29, + "2059": 10.295, + "2060": 10.3, + "2061": 10.305, + "2062": 10.31, + "2063": 10.315, + "2064": 10.32, + "2065": 10.325, + "2066": 10.33, + "2067": 10.335, + "2068": 10.34, + "2069": 10.345, + "2070": 10.35, + "2071": 10.355, + "2072": 10.36, + "2073": 10.365, + "2074": 10.37, + "2075": 10.375, + "2076": 10.38, + "2077": 10.385, + "2078": 10.39, + "2079": 10.395, + "2080": 10.4, + "2081": 10.405, + "2082": 10.41, + "2083": 10.415, + "2084": 10.42, + "2085": 10.425, + "2086": 10.43, + "2087": 10.435, + "2088": 10.44, + "2089": 10.445, + "2090": 10.45, + "2091": 10.455, + "2092": 10.46, + "2093": 10.465, + "2094": 10.47, + "2095": 10.475, + "2096": 10.48, + "2097": 10.485, + "2098": 10.49, + "2099": 10.495, + "2100": 10.5, + "2101": 10.505, + "2102": 10.51, + "2103": 10.515, + "2104": 10.52, + "2105": 10.525, + "2106": 10.53, + "2107": 10.535, + "2108": 10.54, + "2109": 10.545, + "2110": 10.55, + "2111": 10.555, + "2112": 10.56, + "2113": 10.565, + "2114": 10.57, + "2115": 10.575, + "2116": 10.58, + "2117": 10.585, + "2118": 10.59, + "2119": 10.595, + "2120": 10.6, + "2121": 10.605, + "2122": 10.61, + "2123": 10.615, + "2124": 10.62, + "2125": 10.625, + "2126": 10.63, + "2127": 10.635, + "2128": 10.64, + "2129": 10.645, + "2130": 10.65, + "2131": 10.655, + "2132": 10.66, + "2133": 10.665, + "2134": 10.67, + "2135": 10.675, + "2136": 10.68, + "2137": 10.685, + "2138": 10.69, + "2139": 10.695, + "2140": 10.7, + "2141": 10.705, + "2142": 10.71, + "2143": 10.715, + "2144": 10.72, + "2145": 10.725, + "2146": 10.73, + "2147": 10.735, + "2148": 10.74, + "2149": 10.745, + "2150": 10.75, + "2151": 10.755, + "2152": 10.76, + "2153": 10.765, + "2154": 10.77, + "2155": 10.775, + "2156": 10.78, + "2157": 10.785, + "2158": 10.79, + "2159": 10.795, + "2160": 10.8, + "2161": 10.805, + "2162": 10.81, + "2163": 10.815, + "2164": 10.82, + "2165": 10.825, + "2166": 10.83, + "2167": 10.835, + "2168": 10.84, + "2169": 10.845, + "2170": 10.85, + "2171": 10.855, + "2172": 10.86, + "2173": 10.865, + "2174": 10.87, + "2175": 10.875, + "2176": 10.88, + "2177": 10.885, + "2178": 10.89, + "2179": 10.895, + "2180": 10.9, + "2181": 10.905, + "2182": 10.91, + "2183": 10.915, + "2184": 10.92, + "2185": 10.925, + "2186": 10.93, + "2187": 10.935, + "2188": 10.94, + "2189": 10.945, + "2190": 10.95, + "2191": 10.955, + "2192": 10.96, + "2193": 10.965, + "2194": 10.97, + "2195": 10.975, + "2196": 10.98, + "2197": 10.985, + "2198": 10.99, + "2199": 10.995, + "2200": 11.0, + "2201": 11.005, + "2202": 11.01, + "2203": 11.015, + "2204": 11.02, + "2205": 11.025, + "2206": 11.03, + "2207": 11.035, + "2208": 11.04, + "2209": 11.045, + "2210": 11.05, + "2211": 11.055, + "2212": 11.06, + "2213": 11.065, + "2214": 11.07, + "2215": 11.075, + "2216": 11.08, + "2217": 11.085, + "2218": 11.09, + "2219": 11.095, + "2220": 11.1, + "2221": 11.105, + "2222": 11.11, + "2223": 11.115, + "2224": 11.12, + "2225": 11.125, + "2226": 11.13, + "2227": 11.135, + "2228": 11.14, + "2229": 11.145, + "2230": 11.15, + "2231": 11.155, + "2232": 11.16, + "2233": 11.165, + "2234": 11.17, + "2235": 11.175, + "2236": 11.18, + "2237": 11.185, + "2238": 11.19, + "2239": 11.195, + "2240": 11.2, + "2241": 11.205, + "2242": 11.21, + "2243": 11.215, + "2244": 11.22, + "2245": 11.225, + "2246": 11.23, + "2247": 11.235, + "2248": 11.24, + "2249": 11.245, + "2250": 11.25, + "2251": 11.255, + "2252": 11.26, + "2253": 11.265, + "2254": 11.27, + "2255": 11.275, + "2256": 11.28, + "2257": 11.285, + "2258": 11.29, + "2259": 11.295, + "2260": 11.3, + "2261": 11.305, + "2262": 11.31, + "2263": 11.315, + "2264": 11.32, + "2265": 11.325, + "2266": 11.33, + "2267": 11.335, + "2268": 11.34, + "2269": 11.345, + "2270": 11.35, + "2271": 11.355, + "2272": 11.36, + "2273": 11.365, + "2274": 11.37, + "2275": 11.375, + "2276": 11.38, + "2277": 11.385, + "2278": 11.39, + "2279": 11.395, + "2280": 11.4, + "2281": 11.405, + "2282": 11.41, + "2283": 11.415, + "2284": 11.42, + "2285": 11.425, + "2286": 11.43, + "2287": 11.435, + "2288": 11.44, + "2289": 11.445, + "2290": 11.45, + "2291": 11.455, + "2292": 11.46, + "2293": 11.465, + "2294": 11.47, + "2295": 11.475, + "2296": 11.48, + "2297": 11.485, + "2298": 11.49, + "2299": 11.495, + "2300": 11.5, + "2301": 11.505, + "2302": 11.51, + "2303": 11.515, + "2304": 11.52, + "2305": 11.525, + "2306": 11.53, + "2307": 11.535, + "2308": 11.54, + "2309": 11.545, + "2310": 11.55, + "2311": 11.555, + "2312": 11.56, + "2313": 11.565, + "2314": 11.57, + "2315": 11.575, + "2316": 11.58, + "2317": 11.585, + "2318": 11.59, + "2319": 11.595, + "2320": 11.6, + "2321": 11.605, + "2322": 11.61, + "2323": 11.615, + "2324": 11.62, + "2325": 11.625, + "2326": 11.63, + "2327": 11.635, + "2328": 11.64, + "2329": 11.645, + "2330": 11.65, + "2331": 11.655, + "2332": 11.66, + "2333": 11.665, + "2334": 11.67, + "2335": 11.675, + "2336": 11.68, + "2337": 11.685, + "2338": 11.69, + "2339": 11.695, + "2340": 11.7, + "2341": 11.705, + "2342": 11.71, + "2343": 11.715, + "2344": 11.72, + "2345": 11.725, + "2346": 11.73, + "2347": 11.735, + "2348": 11.74, + "2349": 11.745, + "2350": 11.75, + "2351": 11.755, + "2352": 11.76, + "2353": 11.765, + "2354": 11.77, + "2355": 11.775, + "2356": 11.78, + "2357": 11.785, + "2358": 11.79, + "2359": 11.795, + "2360": 11.8, + "2361": 11.805, + "2362": 11.81, + "2363": 11.815, + "2364": 11.82, + "2365": 11.825, + "2366": 11.83, + "2367": 11.835, + "2368": 11.84, + "2369": 11.845, + "2370": 11.85, + "2371": 11.855, + "2372": 11.86, + "2373": 11.865, + "2374": 11.87, + "2375": 11.875, + "2376": 11.88, + "2377": 11.885, + "2378": 11.89, + "2379": 11.895, + "2380": 11.9, + "2381": 11.905, + "2382": 11.91, + "2383": 11.915, + "2384": 11.92, + "2385": 11.925, + "2386": 11.93, + "2387": 11.935, + "2388": 11.94, + "2389": 11.945, + "2390": 11.95, + "2391": 11.955, + "2392": 11.96, + "2393": 11.965, + "2394": 11.97, + "2395": 11.975, + "2396": 11.98, + "2397": 11.985, + "2398": 11.99, + "2399": 11.995, + "2400": 12.0, + "2401": 12.005, + "2402": 12.01, + "2403": 12.015, + "2404": 12.02, + "2405": 12.025, + "2406": 12.03, + "2407": 12.035, + "2408": 12.04, + "2409": 12.045, + "2410": 12.05, + "2411": 12.055, + "2412": 12.06, + "2413": 12.065, + "2414": 12.07, + "2415": 12.075, + "2416": 12.08, + "2417": 12.085, + "2418": 12.09, + "2419": 12.095, + "2420": 12.1, + "2421": 12.105, + "2422": 12.11, + "2423": 12.115, + "2424": 12.12, + "2425": 12.125, + "2426": 12.13, + "2427": 12.135, + "2428": 12.14, + "2429": 12.145, + "2430": 12.15, + "2431": 12.155, + "2432": 12.16, + "2433": 12.165, + "2434": 12.17, + "2435": 12.175, + "2436": 12.18, + "2437": 12.185, + "2438": 12.19, + "2439": 12.195, + "2440": 12.2, + "2441": 12.205, + "2442": 12.21, + "2443": 12.215, + "2444": 12.22, + "2445": 12.225, + "2446": 12.23, + "2447": 12.235, + "2448": 12.24, + "2449": 12.245, + "2450": 12.25, + "2451": 12.255, + "2452": 12.26, + "2453": 12.265, + "2454": 12.27, + "2455": 12.275, + "2456": 12.28, + "2457": 12.285, + "2458": 12.29, + "2459": 12.295, + "2460": 12.3, + "2461": 12.305, + "2462": 12.31, + "2463": 12.315, + "2464": 12.32, + "2465": 12.325, + "2466": 12.33, + "2467": 12.335, + "2468": 12.34, + "2469": 12.345, + "2470": 12.35, + "2471": 12.355, + "2472": 12.36, + "2473": 12.365, + "2474": 12.37, + "2475": 12.375, + "2476": 12.38, + "2477": 12.385, + "2478": 12.39, + "2479": 12.395, + "2480": 12.4, + "2481": 12.405, + "2482": 12.41, + "2483": 12.415, + "2484": 12.42, + "2485": 12.425, + "2486": 12.43, + "2487": 12.435, + "2488": 12.44, + "2489": 12.445, + "2490": 12.45, + "2491": 12.455, + "2492": 12.46, + "2493": 12.465, + "2494": 12.47, + "2495": 12.475, + "2496": 12.48, + "2497": 12.485, + "2498": 12.49, + "2499": 12.495, + "2500": 12.5, + "2501": 12.505, + "2502": 12.51, + "2503": 12.515, + "2504": 12.52, + "2505": 12.525, + "2506": 12.53, + "2507": 12.535, + "2508": 12.54, + "2509": 12.545, + "2510": 12.55, + "2511": 12.555, + "2512": 12.56, + "2513": 12.565, + "2514": 12.57, + "2515": 12.575, + "2516": 12.58, + "2517": 12.585, + "2518": 12.59, + "2519": 12.595, + "2520": 12.6, + "2521": 12.605, + "2522": 12.61, + "2523": 12.615, + "2524": 12.62, + "2525": 12.625, + "2526": 12.63, + "2527": 12.635, + "2528": 12.64, + "2529": 12.645, + "2530": 12.65, + "2531": 12.655, + "2532": 12.66, + "2533": 12.665, + "2534": 12.67, + "2535": 12.675, + "2536": 12.68, + "2537": 12.685, + "2538": 12.69, + "2539": 12.695, + "2540": 12.7, + "2541": 12.705, + "2542": 12.71, + "2543": 12.715, + "2544": 12.72, + "2545": 12.725, + "2546": 12.73, + "2547": 12.735, + "2548": 12.74, + "2549": 12.745, + "2550": 12.75, + "2551": 12.755, + "2552": 12.76, + "2553": 12.765, + "2554": 12.77, + "2555": 12.775, + "2556": 12.78, + "2557": 12.785, + "2558": 12.79, + "2559": 12.795, + "2560": 12.8, + "2561": 12.805, + "2562": 12.81, + "2563": 12.815, + "2564": 12.82, + "2565": 12.825, + "2566": 12.83, + "2567": 12.835, + "2568": 12.84, + "2569": 12.845, + "2570": 12.85, + "2571": 12.855, + "2572": 12.86, + "2573": 12.865, + "2574": 12.87, + "2575": 12.875, + "2576": 12.88, + "2577": 12.885, + "2578": 12.89, + "2579": 12.895, + "2580": 12.9, + "2581": 12.905, + "2582": 12.91, + "2583": 12.915, + "2584": 12.92, + "2585": 12.925, + "2586": 12.93, + "2587": 12.935, + "2588": 12.94, + "2589": 12.945, + "2590": 12.95, + "2591": 12.955, + "2592": 12.96, + "2593": 12.965, + "2594": 12.97, + "2595": 12.975, + "2596": 12.98, + "2597": 12.985, + "2598": 12.99, + "2599": 12.995, + "2600": 13.0, + "2601": 13.005, + "2602": 13.01, + "2603": 13.015, + "2604": 13.02, + "2605": 13.025, + "2606": 13.03, + "2607": 13.035, + "2608": 13.04, + "2609": 13.045, + "2610": 13.05, + "2611": 13.055, + "2612": 13.06, + "2613": 13.065, + "2614": 13.07, + "2615": 13.075, + "2616": 13.08, + "2617": 13.085, + "2618": 13.09, + "2619": 13.095, + "2620": 13.1, + "2621": 13.105, + "2622": 13.11, + "2623": 13.115, + "2624": 13.12, + "2625": 13.125, + "2626": 13.13, + "2627": 13.135, + "2628": 13.14, + "2629": 13.145, + "2630": 13.15, + "2631": 13.155, + "2632": 13.16, + "2633": 13.165, + "2634": 13.17, + "2635": 13.175, + "2636": 13.18, + "2637": 13.185, + "2638": 13.19, + "2639": 13.195, + "2640": 13.2, + "2641": 13.205, + "2642": 13.21, + "2643": 13.215, + "2644": 13.22, + "2645": 13.225, + "2646": 13.23, + "2647": 13.235, + "2648": 13.24, + "2649": 13.245, + "2650": 13.25, + "2651": 13.255, + "2652": 13.26, + "2653": 13.265, + "2654": 13.27, + "2655": 13.275, + "2656": 13.28, + "2657": 13.285, + "2658": 13.29, + "2659": 13.295, + "2660": 13.3, + "2661": 13.305, + "2662": 13.31, + "2663": 13.315, + "2664": 13.32, + "2665": 13.325, + "2666": 13.33, + "2667": 13.335, + "2668": 13.34, + "2669": 13.345, + "2670": 13.35, + "2671": 13.355, + "2672": 13.36, + "2673": 13.365, + "2674": 13.37, + "2675": 13.375, + "2676": 13.38, + "2677": 13.385, + "2678": 13.39, + "2679": 13.395, + "2680": 13.4, + "2681": 13.405, + "2682": 13.41, + "2683": 13.415, + "2684": 13.42, + "2685": 13.425, + "2686": 13.43, + "2687": 13.435, + "2688": 13.44, + "2689": 13.445, + "2690": 13.45, + "2691": 13.455, + "2692": 13.46, + "2693": 13.465, + "2694": 13.47, + "2695": 13.475, + "2696": 13.48, + "2697": 13.485, + "2698": 13.49, + "2699": 13.495, + "2700": 13.5, + "2701": 13.505, + "2702": 13.51, + "2703": 13.515, + "2704": 13.52, + "2705": 13.525, + "2706": 13.53, + "2707": 13.535, + "2708": 13.54, + "2709": 13.545, + "2710": 13.55, + "2711": 13.555, + "2712": 13.56, + "2713": 13.565, + "2714": 13.57, + "2715": 13.575, + "2716": 13.58, + "2717": 13.585, + "2718": 13.59, + "2719": 13.595, + "2720": 13.6, + "2721": 13.605, + "2722": 13.61, + "2723": 13.615, + "2724": 13.62, + "2725": 13.625, + "2726": 13.63, + "2727": 13.635, + "2728": 13.64, + "2729": 13.645, + "2730": 13.65, + "2731": 13.655, + "2732": 13.66, + "2733": 13.665, + "2734": 13.67, + "2735": 13.675, + "2736": 13.68, + "2737": 13.685, + "2738": 13.69, + "2739": 13.695, + "2740": 13.7, + "2741": 13.705, + "2742": 13.71, + "2743": 13.715, + "2744": 13.72, + "2745": 13.725, + "2746": 13.73, + "2747": 13.735, + "2748": 13.74, + "2749": 13.745, + "2750": 13.75, + "2751": 13.755, + "2752": 13.76, + "2753": 13.765, + "2754": 13.77, + "2755": 13.775, + "2756": 13.78, + "2757": 13.785, + "2758": 13.79, + "2759": 13.795, + "2760": 13.8, + "2761": 13.805, + "2762": 13.81, + "2763": 13.815, + "2764": 13.82, + "2765": 13.825, + "2766": 13.83, + "2767": 13.835, + "2768": 13.84, + "2769": 13.845, + "2770": 13.85, + "2771": 13.855, + "2772": 13.86, + "2773": 13.865, + "2774": 13.87, + "2775": 13.875, + "2776": 13.88, + "2777": 13.885, + "2778": 13.89, + "2779": 13.895, + "2780": 13.9, + "2781": 13.905, + "2782": 13.91, + "2783": 13.915, + "2784": 13.92, + "2785": 13.925, + "2786": 13.93, + "2787": 13.935, + "2788": 13.94, + "2789": 13.945, + "2790": 13.95, + "2791": 13.955, + "2792": 13.96, + "2793": 13.965, + "2794": 13.97, + "2795": 13.975, + "2796": 13.98, + "2797": 13.985, + "2798": 13.99, + "2799": 13.995, + "2800": 14.0, + "2801": 14.005, + "2802": 14.01, + "2803": 14.015, + "2804": 14.02, + "2805": 14.025, + "2806": 14.03, + "2807": 14.035, + "2808": 14.04, + "2809": 14.045, + "2810": 14.05, + "2811": 14.055, + "2812": 14.06, + "2813": 14.065, + "2814": 14.07, + "2815": 14.075, + "2816": 14.08, + "2817": 14.085, + "2818": 14.09, + "2819": 14.095, + "2820": 14.1, + "2821": 14.105, + "2822": 14.11, + "2823": 14.115, + "2824": 14.12, + "2825": 14.125, + "2826": 14.13, + "2827": 14.135, + "2828": 14.14, + "2829": 14.145, + "2830": 14.15, + "2831": 14.155, + "2832": 14.16, + "2833": 14.165, + "2834": 14.17, + "2835": 14.175, + "2836": 14.18, + "2837": 14.185, + "2838": 14.19, + "2839": 14.195, + "2840": 14.2, + "2841": 14.205, + "2842": 14.21, + "2843": 14.215, + "2844": 14.22, + "2845": 14.225, + "2846": 14.23, + "2847": 14.235, + "2848": 14.24, + "2849": 14.245, + "2850": 14.25, + "2851": 14.255, + "2852": 14.26, + "2853": 14.265, + "2854": 14.27, + "2855": 14.275, + "2856": 14.28, + "2857": 14.285, + "2858": 14.29, + "2859": 14.295, + "2860": 14.3, + "2861": 14.305, + "2862": 14.31, + "2863": 14.315, + "2864": 14.32, + "2865": 14.325, + "2866": 14.33, + "2867": 14.335, + "2868": 14.34, + "2869": 14.345, + "2870": 14.35, + "2871": 14.355, + "2872": 14.36, + "2873": 14.365, + "2874": 14.37, + "2875": 14.375, + "2876": 14.38, + "2877": 14.385, + "2878": 14.39, + "2879": 14.395, + "2880": 14.4, + "2881": 14.405, + "2882": 14.41, + "2883": 14.415, + "2884": 14.42, + "2885": 14.425, + "2886": 14.43, + "2887": 14.435, + "2888": 14.44, + "2889": 14.445, + "2890": 14.45, + "2891": 14.455, + "2892": 14.46, + "2893": 14.465, + "2894": 14.47, + "2895": 14.475, + "2896": 14.48, + "2897": 14.485, + "2898": 14.49, + "2899": 14.495, + "2900": 14.5, + "2901": 14.505, + "2902": 14.51, + "2903": 14.515, + "2904": 14.52, + "2905": 14.525, + "2906": 14.53, + "2907": 14.535, + "2908": 14.54, + "2909": 14.545, + "2910": 14.55, + "2911": 14.555, + "2912": 14.56, + "2913": 14.565, + "2914": 14.57, + "2915": 14.575, + "2916": 14.58, + "2917": 14.585, + "2918": 14.59, + "2919": 14.595, + "2920": 14.6, + "2921": 14.605, + "2922": 14.61, + "2923": 14.615, + "2924": 14.62, + "2925": 14.625, + "2926": 14.63, + "2927": 14.635, + "2928": 14.64, + "2929": 14.645, + "2930": 14.65, + "2931": 14.655, + "2932": 14.66, + "2933": 14.665, + "2934": 14.67, + "2935": 14.675, + "2936": 14.68, + "2937": 14.685, + "2938": 14.69, + "2939": 14.695, + "2940": 14.7, + "2941": 14.705, + "2942": 14.71, + "2943": 14.715, + "2944": 14.72, + "2945": 14.725, + "2946": 14.73, + "2947": 14.735, + "2948": 14.74, + "2949": 14.745, + "2950": 14.75, + "2951": 14.755, + "2952": 14.76, + "2953": 14.765, + "2954": 14.77, + "2955": 14.775, + "2956": 14.78, + "2957": 14.785, + "2958": 14.79, + "2959": 14.795, + "2960": 14.8, + "2961": 14.805, + "2962": 14.81, + "2963": 14.815, + "2964": 14.82, + "2965": 14.825, + "2966": 14.83, + "2967": 14.835, + "2968": 14.84, + "2969": 14.845, + "2970": 14.85, + "2971": 14.855, + "2972": 14.86, + "2973": 14.865, + "2974": 14.87, + "2975": 14.875, + "2976": 14.88, + "2977": 14.885, + "2978": 14.89, + "2979": 14.895, + "2980": 14.9, + "2981": 14.905, + "2982": 14.91, + "2983": 14.915, + "2984": 14.92, + "2985": 14.925, + "2986": 14.93, + "2987": 14.935, + "2988": 14.94, + "2989": 14.945, + "2990": 14.95, + "2991": 14.955, + "2992": 14.96, + "2993": 14.965, + "2994": 14.97, + "2995": 14.975, + "2996": 14.98, + "2997": 14.985, + "2998": 14.99, + "2999": 14.995, + "3000": 15.0, + "3001": 15.005, + "3002": 15.01, + "3003": 15.015, + "3004": 15.02, + "3005": 15.025, + "3006": 15.03, + "3007": 15.035, + "3008": 15.04, + "3009": 15.045, + "3010": 15.05, + "3011": 15.055, + "3012": 15.06, + "3013": 15.065, + "3014": 15.07, + "3015": 15.075, + "3016": 15.08, + "3017": 15.085, + "3018": 15.09, + "3019": 15.095, + "3020": 15.1, + "3021": 15.105, + "3022": 15.11, + "3023": 15.115, + "3024": 15.12, + "3025": 15.125, + "3026": 15.13, + "3027": 15.135, + "3028": 15.14, + "3029": 15.145, + "3030": 15.15, + "3031": 15.155, + "3032": 15.16, + "3033": 15.165, + "3034": 15.17, + "3035": 15.175, + "3036": 15.18, + "3037": 15.185, + "3038": 15.19, + "3039": 15.195, + "3040": 15.2, + "3041": 15.205, + "3042": 15.21, + "3043": 15.215, + "3044": 15.22, + "3045": 15.225, + "3046": 15.23, + "3047": 15.235, + "3048": 15.24, + "3049": 15.245, + "3050": 15.25, + "3051": 15.255, + "3052": 15.26, + "3053": 15.265, + "3054": 15.27, + "3055": 15.275, + "3056": 15.28, + "3057": 15.285, + "3058": 15.29, + "3059": 15.295, + "3060": 15.3, + "3061": 15.305, + "3062": 15.31, + "3063": 15.315, + "3064": 15.32, + "3065": 15.325, + "3066": 15.33, + "3067": 15.335, + "3068": 15.34, + "3069": 15.345, + "3070": 15.35, + "3071": 15.355, + "3072": 15.36, + "3073": 15.365, + "3074": 15.37, + "3075": 15.375, + "3076": 15.38, + "3077": 15.385, + "3078": 15.39, + "3079": 15.395, + "3080": 15.4, + "3081": 15.405, + "3082": 15.41, + "3083": 15.415, + "3084": 15.42, + "3085": 15.425, + "3086": 15.43, + "3087": 15.435, + "3088": 15.44, + "3089": 15.445, + "3090": 15.45, + "3091": 15.455, + "3092": 15.46, + "3093": 15.465, + "3094": 15.47, + "3095": 15.475, + "3096": 15.48, + "3097": 15.485, + "3098": 15.49, + "3099": 15.495, + "3100": 15.5, + "3101": 15.505, + "3102": 15.51, + "3103": 15.515, + "3104": 15.52, + "3105": 15.525, + "3106": 15.53, + "3107": 15.535, + "3108": 15.54, + "3109": 15.545, + "3110": 15.55, + "3111": 15.555, + "3112": 15.56, + "3113": 15.565, + "3114": 15.57, + "3115": 15.575, + "3116": 15.58, + "3117": 15.585, + "3118": 15.59, + "3119": 15.595, + "3120": 15.6, + "3121": 15.605, + "3122": 15.61, + "3123": 15.615, + "3124": 15.62, + "3125": 15.625, + "3126": 15.63, + "3127": 15.635, + "3128": 15.64, + "3129": 15.645, + "3130": 15.65, + "3131": 15.655, + "3132": 15.66, + "3133": 15.665, + "3134": 15.67, + "3135": 15.675, + "3136": 15.68, + "3137": 15.685, + "3138": 15.69, + "3139": 15.695, + "3140": 15.7, + "3141": 15.705, + "3142": 15.71, + "3143": 15.715, + "3144": 15.72, + "3145": 15.725, + "3146": 15.73, + "3147": 15.735, + "3148": 15.74, + "3149": 15.745, + "3150": 15.75, + "3151": 15.755, + "3152": 15.76, + "3153": 15.765, + "3154": 15.77, + "3155": 15.775, + "3156": 15.78, + "3157": 15.785, + "3158": 15.79, + "3159": 15.795, + "3160": 15.8, + "3161": 15.805, + "3162": 15.81, + "3163": 15.815, + "3164": 15.82, + "3165": 15.825, + "3166": 15.83, + "3167": 15.835, + "3168": 15.84, + "3169": 15.845, + "3170": 15.85, + "3171": 15.855, + "3172": 15.86, + "3173": 15.865, + "3174": 15.87, + "3175": 15.875, + "3176": 15.88, + "3177": 15.885, + "3178": 15.89, + "3179": 15.895, + "3180": 15.9, + "3181": 15.905, + "3182": 15.91, + "3183": 15.915, + "3184": 15.92, + "3185": 15.925, + "3186": 15.93, + "3187": 15.935, + "3188": 15.94, + "3189": 15.945, + "3190": 15.95, + "3191": 15.955, + "3192": 15.96, + "3193": 15.965, + "3194": 15.97, + "3195": 15.975, + "3196": 15.98, + "3197": 15.985, + "3198": 15.99, + "3199": 15.995, + "3200": 16.0, + "3201": 16.005, + "3202": 16.01, + "3203": 16.015, + "3204": 16.02, + "3205": 16.025, + "3206": 16.03, + "3207": 16.035, + "3208": 16.04, + "3209": 16.045, + "3210": 16.05, + "3211": 16.055, + "3212": 16.06, + "3213": 16.065, + "3214": 16.07, + "3215": 16.075, + "3216": 16.08, + "3217": 16.085, + "3218": 16.09, + "3219": 16.095, + "3220": 16.1, + "3221": 16.105, + "3222": 16.11, + "3223": 16.115, + "3224": 16.12, + "3225": 16.125, + "3226": 16.13, + "3227": 16.135, + "3228": 16.14, + "3229": 16.145, + "3230": 16.15, + "3231": 16.155, + "3232": 16.16, + "3233": 16.165, + "3234": 16.17, + "3235": 16.175, + "3236": 16.18, + "3237": 16.185, + "3238": 16.19, + "3239": 16.195, + "3240": 16.2, + "3241": 16.205, + "3242": 16.21, + "3243": 16.215, + "3244": 16.22, + "3245": 16.225, + "3246": 16.23, + "3247": 16.235, + "3248": 16.24, + "3249": 16.245, + "3250": 16.25, + "3251": 16.255, + "3252": 16.26, + "3253": 16.265, + "3254": 16.27, + "3255": 16.275, + "3256": 16.28, + "3257": 16.285, + "3258": 16.29, + "3259": 16.295, + "3260": 16.3, + "3261": 16.305, + "3262": 16.31, + "3263": 16.315, + "3264": 16.32, + "3265": 16.325, + "3266": 16.33, + "3267": 16.335, + "3268": 16.34, + "3269": 16.345, + "3270": 16.35, + "3271": 16.355, + "3272": 16.36, + "3273": 16.365, + "3274": 16.37, + "3275": 16.375, + "3276": 16.38, + "3277": 16.385, + "3278": 16.39, + "3279": 16.395, + "3280": 16.4, + "3281": 16.405, + "3282": 16.41, + "3283": 16.415, + "3284": 16.42, + "3285": 16.425, + "3286": 16.43, + "3287": 16.435, + "3288": 16.44, + "3289": 16.445, + "3290": 16.45, + "3291": 16.455, + "3292": 16.46, + "3293": 16.465, + "3294": 16.47, + "3295": 16.475, + "3296": 16.48, + "3297": 16.485, + "3298": 16.49, + "3299": 16.495, + "3300": 16.5, + "3301": 16.505, + "3302": 16.51, + "3303": 16.515, + "3304": 16.52, + "3305": 16.525, + "3306": 16.53, + "3307": 16.535, + "3308": 16.54, + "3309": 16.545, + "3310": 16.55, + "3311": 16.555, + "3312": 16.56, + "3313": 16.565, + "3314": 16.57, + "3315": 16.575, + "3316": 16.58, + "3317": 16.585, + "3318": 16.59, + "3319": 16.595, + "3320": 16.6, + "3321": 16.605, + "3322": 16.61, + "3323": 16.615, + "3324": 16.62, + "3325": 16.625, + "3326": 16.63, + "3327": 16.635, + "3328": 16.64, + "3329": 16.645, + "3330": 16.65, + "3331": 16.655, + "3332": 16.66, + "3333": 16.665, + "3334": 16.67, + "3335": 16.675, + "3336": 16.68, + "3337": 16.685, + "3338": 16.69, + "3339": 16.695, + "3340": 16.7, + "3341": 16.705, + "3342": 16.71, + "3343": 16.715, + "3344": 16.72, + "3345": 16.725, + "3346": 16.73, + "3347": 16.735, + "3348": 16.74, + "3349": 16.745, + "3350": 16.75, + "3351": 16.755, + "3352": 16.76, + "3353": 16.765, + "3354": 16.77, + "3355": 16.775, + "3356": 16.78, + "3357": 16.785, + "3358": 16.79, + "3359": 16.795, + "3360": 16.8, + "3361": 16.805, + "3362": 16.81, + "3363": 16.815, + "3364": 16.82, + "3365": 16.825, + "3366": 16.83, + "3367": 16.835, + "3368": 16.84, + "3369": 16.845, + "3370": 16.85, + "3371": 16.855, + "3372": 16.86, + "3373": 16.865, + "3374": 16.87, + "3375": 16.875, + "3376": 16.88, + "3377": 16.885, + "3378": 16.89, + "3379": 16.895, + "3380": 16.9, + "3381": 16.905, + "3382": 16.91, + "3383": 16.915, + "3384": 16.92, + "3385": 16.925, + "3386": 16.93, + "3387": 16.935, + "3388": 16.94, + "3389": 16.945, + "3390": 16.95, + "3391": 16.955, + "3392": 16.96, + "3393": 16.965, + "3394": 16.97, + "3395": 16.975, + "3396": 16.98, + "3397": 16.985, + "3398": 16.99, + "3399": 16.995, + "3400": 17.0, + "3401": 17.005, + "3402": 17.01, + "3403": 17.015, + "3404": 17.02, + "3405": 17.025, + "3406": 17.03, + "3407": 17.035, + "3408": 17.04, + "3409": 17.045, + "3410": 17.05, + "3411": 17.055, + "3412": 17.06, + "3413": 17.065, + "3414": 17.07, + "3415": 17.075, + "3416": 17.08, + "3417": 17.085, + "3418": 17.09, + "3419": 17.095, + "3420": 17.1, + "3421": 17.105, + "3422": 17.11, + "3423": 17.115, + "3424": 17.12, + "3425": 17.125, + "3426": 17.13, + "3427": 17.135, + "3428": 17.14, + "3429": 17.145, + "3430": 17.15, + "3431": 17.155, + "3432": 17.16, + "3433": 17.165, + "3434": 17.17, + "3435": 17.175, + "3436": 17.18, + "3437": 17.185, + "3438": 17.19, + "3439": 17.195, + "3440": 17.2, + "3441": 17.205, + "3442": 17.21, + "3443": 17.215, + "3444": 17.22, + "3445": 17.225, + "3446": 17.23, + "3447": 17.235, + "3448": 17.24, + "3449": 17.245, + "3450": 17.25, + "3451": 17.255, + "3452": 17.26, + "3453": 17.265, + "3454": 17.27, + "3455": 17.275, + "3456": 17.28, + "3457": 17.285, + "3458": 17.29, + "3459": 17.295, + "3460": 17.3, + "3461": 17.305, + "3462": 17.31, + "3463": 17.315, + "3464": 17.32, + "3465": 17.325, + "3466": 17.33, + "3467": 17.335, + "3468": 17.34, + "3469": 17.345, + "3470": 17.35, + "3471": 17.355, + "3472": 17.36, + "3473": 17.365, + "3474": 17.37, + "3475": 17.375, + "3476": 17.38, + "3477": 17.385, + "3478": 17.39, + "3479": 17.395, + "3480": 17.4, + "3481": 17.405, + "3482": 17.41, + "3483": 17.415, + "3484": 17.42, + "3485": 17.425, + "3486": 17.43, + "3487": 17.435, + "3488": 17.44, + "3489": 17.445, + "3490": 17.45, + "3491": 17.455, + "3492": 17.46, + "3493": 17.465, + "3494": 17.47, + "3495": 17.475, + "3496": 17.48, + "3497": 17.485, + "3498": 17.49, + "3499": 17.495, + "3500": 17.5, + "3501": 17.505, + "3502": 17.51, + "3503": 17.515, + "3504": 17.52, + "3505": 17.525, + "3506": 17.53, + "3507": 17.535, + "3508": 17.54, + "3509": 17.545, + "3510": 17.55, + "3511": 17.555, + "3512": 17.56, + "3513": 17.565, + "3514": 17.57, + "3515": 17.575, + "3516": 17.58, + "3517": 17.585, + "3518": 17.59, + "3519": 17.595, + "3520": 17.6, + "3521": 17.605, + "3522": 17.61, + "3523": 17.615, + "3524": 17.62, + "3525": 17.625, + "3526": 17.63, + "3527": 17.635, + "3528": 17.64, + "3529": 17.645, + "3530": 17.65, + "3531": 17.655, + "3532": 17.66, + "3533": 17.665, + "3534": 17.67, + "3535": 17.675, + "3536": 17.68, + "3537": 17.685, + "3538": 17.69, + "3539": 17.695, + "3540": 17.7, + "3541": 17.705, + "3542": 17.71, + "3543": 17.715, + "3544": 17.72, + "3545": 17.725, + "3546": 17.73, + "3547": 17.735, + "3548": 17.74, + "3549": 17.745, + "3550": 17.75, + "3551": 17.755, + "3552": 17.76, + "3553": 17.765, + "3554": 17.77, + "3555": 17.775, + "3556": 17.78, + "3557": 17.785, + "3558": 17.79, + "3559": 17.795, + "3560": 17.8, + "3561": 17.805, + "3562": 17.81, + "3563": 17.815, + "3564": 17.82, + "3565": 17.825, + "3566": 17.83, + "3567": 17.835, + "3568": 17.84, + "3569": 17.845, + "3570": 17.85, + "3571": 17.855, + "3572": 17.86, + "3573": 17.865, + "3574": 17.87, + "3575": 17.875, + "3576": 17.88, + "3577": 17.885, + "3578": 17.89, + "3579": 17.895, + "3580": 17.9, + "3581": 17.905, + "3582": 17.91, + "3583": 17.915, + "3584": 17.92, + "3585": 17.925, + "3586": 17.93, + "3587": 17.935, + "3588": 17.94, + "3589": 17.945, + "3590": 17.95, + "3591": 17.955, + "3592": 17.96, + "3593": 17.965, + "3594": 17.97, + "3595": 17.975, + "3596": 17.98, + "3597": 17.985, + "3598": 17.99, + "3599": 17.995, + "3600": 18.0, + "3601": 18.005, + "3602": 18.01, + "3603": 18.015, + "3604": 18.02, + "3605": 18.025, + "3606": 18.03, + "3607": 18.035, + "3608": 18.04, + "3609": 18.045, + "3610": 18.05, + "3611": 18.055, + "3612": 18.06, + "3613": 18.065, + "3614": 18.07, + "3615": 18.075, + "3616": 18.08, + "3617": 18.085, + "3618": 18.09, + "3619": 18.095, + "3620": 18.1, + "3621": 18.105, + "3622": 18.11, + "3623": 18.115, + "3624": 18.12, + "3625": 18.125, + "3626": 18.13, + "3627": 18.135, + "3628": 18.14, + "3629": 18.145, + "3630": 18.15, + "3631": 18.155, + "3632": 18.16, + "3633": 18.165, + "3634": 18.17, + "3635": 18.175, + "3636": 18.18, + "3637": 18.185, + "3638": 18.19, + "3639": 18.195, + "3640": 18.2, + "3641": 18.205, + "3642": 18.21, + "3643": 18.215, + "3644": 18.22, + "3645": 18.225, + "3646": 18.23, + "3647": 18.235, + "3648": 18.24, + "3649": 18.245, + "3650": 18.25, + "3651": 18.255, + "3652": 18.26, + "3653": 18.265, + "3654": 18.27, + "3655": 18.275, + "3656": 18.28, + "3657": 18.285, + "3658": 18.29, + "3659": 18.295, + "3660": 18.3, + "3661": 18.305, + "3662": 18.31, + "3663": 18.315, + "3664": 18.32, + "3665": 18.325, + "3666": 18.33, + "3667": 18.335, + "3668": 18.34, + "3669": 18.345, + "3670": 18.35, + "3671": 18.355, + "3672": 18.36, + "3673": 18.365, + "3674": 18.37, + "3675": 18.375, + "3676": 18.38, + "3677": 18.385, + "3678": 18.39, + "3679": 18.395, + "3680": 18.4, + "3681": 18.405, + "3682": 18.41, + "3683": 18.415, + "3684": 18.42, + "3685": 18.425, + "3686": 18.43, + "3687": 18.435, + "3688": 18.44, + "3689": 18.445, + "3690": 18.45, + "3691": 18.455, + "3692": 18.46, + "3693": 18.465, + "3694": 18.47, + "3695": 18.475, + "3696": 18.48, + "3697": 18.485, + "3698": 18.49, + "3699": 18.495, + "3700": 18.5, + "3701": 18.505, + "3702": 18.51, + "3703": 18.515, + "3704": 18.52, + "3705": 18.525, + "3706": 18.53, + "3707": 18.535, + "3708": 18.54, + "3709": 18.545, + "3710": 18.55, + "3711": 18.555, + "3712": 18.56, + "3713": 18.565, + "3714": 18.57, + "3715": 18.575, + "3716": 18.58, + "3717": 18.585, + "3718": 18.59, + "3719": 18.595, + "3720": 18.6, + "3721": 18.605, + "3722": 18.61, + "3723": 18.615, + "3724": 18.62, + "3725": 18.625, + "3726": 18.63, + "3727": 18.635, + "3728": 18.64, + "3729": 18.645, + "3730": 18.65, + "3731": 18.655, + "3732": 18.66, + "3733": 18.665, + "3734": 18.67, + "3735": 18.675, + "3736": 18.68, + "3737": 18.685, + "3738": 18.69, + "3739": 18.695, + "3740": 18.7, + "3741": 18.705, + "3742": 18.71, + "3743": 18.715, + "3744": 18.72, + "3745": 18.725, + "3746": 18.73, + "3747": 18.735, + "3748": 18.74, + "3749": 18.745, + "3750": 18.75, + "3751": 18.755, + "3752": 18.76, + "3753": 18.765, + "3754": 18.77, + "3755": 18.775, + "3756": 18.78, + "3757": 18.785, + "3758": 18.79, + "3759": 18.795, + "3760": 18.8, + "3761": 18.805, + "3762": 18.81, + "3763": 18.815, + "3764": 18.82, + "3765": 18.825, + "3766": 18.83, + "3767": 18.835, + "3768": 18.84, + "3769": 18.845, + "3770": 18.85, + "3771": 18.855, + "3772": 18.86, + "3773": 18.865, + "3774": 18.87, + "3775": 18.875, + "3776": 18.88, + "3777": 18.885, + "3778": 18.89, + "3779": 18.895, + "3780": 18.9, + "3781": 18.905, + "3782": 18.91, + "3783": 18.915, + "3784": 18.92, + "3785": 18.925, + "3786": 18.93, + "3787": 18.935, + "3788": 18.94, + "3789": 18.945, + "3790": 18.95, + "3791": 18.955, + "3792": 18.96, + "3793": 18.965, + "3794": 18.97, + "3795": 18.975, + "3796": 18.98, + "3797": 18.985, + "3798": 18.99, + "3799": 18.995, + "3800": 19.0, + "3801": 19.005, + "3802": 19.01, + "3803": 19.015, + "3804": 19.02, + "3805": 19.025, + "3806": 19.03, + "3807": 19.035, + "3808": 19.04, + "3809": 19.045, + "3810": 19.05, + "3811": 19.055, + "3812": 19.06, + "3813": 19.065, + "3814": 19.07, + "3815": 19.075, + "3816": 19.08, + "3817": 19.085, + "3818": 19.09, + "3819": 19.095, + "3820": 19.1, + "3821": 19.105, + "3822": 19.11, + "3823": 19.115, + "3824": 19.12, + "3825": 19.125, + "3826": 19.13, + "3827": 19.135, + "3828": 19.14, + "3829": 19.145, + "3830": 19.15, + "3831": 19.155, + "3832": 19.16, + "3833": 19.165, + "3834": 19.17, + "3835": 19.175, + "3836": 19.18, + "3837": 19.185, + "3838": 19.19, + "3839": 19.195, + "3840": 19.2, + "3841": 19.205, + "3842": 19.21, + "3843": 19.215, + "3844": 19.22, + "3845": 19.225, + "3846": 19.23, + "3847": 19.235, + "3848": 19.24, + "3849": 19.245, + "3850": 19.25, + "3851": 19.255, + "3852": 19.26, + "3853": 19.265, + "3854": 19.27, + "3855": 19.275, + "3856": 19.28, + "3857": 19.285, + "3858": 19.29, + "3859": 19.295, + "3860": 19.3, + "3861": 19.305, + "3862": 19.31, + "3863": 19.315, + "3864": 19.32, + "3865": 19.325, + "3866": 19.33, + "3867": 19.335, + "3868": 19.34, + "3869": 19.345, + "3870": 19.35, + "3871": 19.355, + "3872": 19.36, + "3873": 19.365, + "3874": 19.37, + "3875": 19.375, + "3876": 19.38, + "3877": 19.385, + "3878": 19.39, + "3879": 19.395, + "3880": 19.4, + "3881": 19.405, + "3882": 19.41, + "3883": 19.415, + "3884": 19.42, + "3885": 19.425, + "3886": 19.43, + "3887": 19.435, + "3888": 19.44, + "3889": 19.445, + "3890": 19.45, + "3891": 19.455, + "3892": 19.46, + "3893": 19.465, + "3894": 19.47, + "3895": 19.475, + "3896": 19.48, + "3897": 19.485, + "3898": 19.49, + "3899": 19.495, + "3900": 19.5, + "3901": 19.505, + "3902": 19.51, + "3903": 19.515, + "3904": 19.52, + "3905": 19.525, + "3906": 19.53, + "3907": 19.535, + "3908": 19.54, + "3909": 19.545, + "3910": 19.55, + "3911": 19.555, + "3912": 19.56, + "3913": 19.565, + "3914": 19.57, + "3915": 19.575, + "3916": 19.58, + "3917": 19.585, + "3918": 19.59, + "3919": 19.595, + "3920": 19.6, + "3921": 19.605, + "3922": 19.61, + "3923": 19.615, + "3924": 19.62, + "3925": 19.625, + "3926": 19.63, + "3927": 19.635, + "3928": 19.64, + "3929": 19.645, + "3930": 19.65, + "3931": 19.655, + "3932": 19.66, + "3933": 19.665, + "3934": 19.67, + "3935": 19.675, + "3936": 19.68, + "3937": 19.685, + "3938": 19.69, + "3939": 19.695, + "3940": 19.7, + "3941": 19.705, + "3942": 19.71, + "3943": 19.715, + "3944": 19.72, + "3945": 19.725, + "3946": 19.73, + "3947": 19.735, + "3948": 19.74, + "3949": 19.745, + "3950": 19.75, + "3951": 19.755, + "3952": 19.76, + "3953": 19.765, + "3954": 19.77, + "3955": 19.775, + "3956": 19.78, + "3957": 19.785, + "3958": 19.79, + "3959": 19.795, + "3960": 19.8, + "3961": 19.805, + "3962": 19.81, + "3963": 19.815, + "3964": 19.82, + "3965": 19.825, + "3966": 19.83, + "3967": 19.835, + "3968": 19.84, + "3969": 19.845, + "3970": 19.85, + "3971": 19.855, + "3972": 19.86, + "3973": 19.865, + "3974": 19.87, + "3975": 19.875, + "3976": 19.88, + "3977": 19.885, + "3978": 19.89, + "3979": 19.895, + "3980": 19.9, + "3981": 19.905, + "3982": 19.91, + "3983": 19.915, + "3984": 19.92, + "3985": 19.925, + "3986": 19.93, + "3987": 19.935, + "3988": 19.94, + "3989": 19.945, + "3990": 19.95, + "3991": 19.955, + "3992": 19.96, + "3993": 19.965, + "3994": 19.97, + "3995": 19.975, + "3996": 19.98, + "3997": 19.985, + "3998": 19.99, + "3999": 19.995, + "4000": 20.0, + "4001": 0.005, + "4002": 0.01, + "4003": 0.015, + "4004": 0.02, + "4005": 0.025, + "4006": 0.03, + "4007": 0.035, + "4008": 0.04, + "4009": 0.045, + "4010": 0.05, + "4011": 0.055, + "4012": 0.06, + "4013": 0.065, + "4014": 0.07, + "4015": 0.075, + "4016": 0.08, + "4017": 0.085, + "4018": 0.09, + "4019": 0.095, + "4020": 0.1, + "4021": 0.105, + "4022": 0.11, + "4023": 0.115, + "4024": 0.12, + "4025": 0.125, + "4026": 0.13, + "4027": 0.135, + "4028": 0.14, + "4029": 0.145, + "4030": 0.15, + "4031": 0.155, + "4032": 0.16, + "4033": 0.165, + "4034": 0.17, + "4035": 0.175, + "4036": 0.18, + "4037": 0.185, + "4038": 0.19, + "4039": 0.195, + "4040": 0.2, + "4041": 0.205, + "4042": 0.21, + "4043": 0.215, + "4044": 0.22, + "4045": 0.225, + "4046": 0.23, + "4047": 0.235, + "4048": 0.24, + "4049": 0.245, + "4050": 0.25, + "4051": 0.255, + "4052": 0.26, + "4053": 0.265, + "4054": 0.27, + "4055": 0.275, + "4056": 0.28, + "4057": 0.285, + "4058": 0.29, + "4059": 0.295, + "4060": 0.3, + "4061": 0.305, + "4062": 0.31, + "4063": 0.315, + "4064": 0.32, + "4065": 0.325, + "4066": 0.33, + "4067": 0.335, + "4068": 0.34, + "4069": 0.345, + "4070": 0.35, + "4071": 0.355, + "4072": 0.36, + "4073": 0.365, + "4074": 0.37, + "4075": 0.375, + "4076": 0.38, + "4077": 0.385, + "4078": 0.39, + "4079": 0.395, + "4080": 0.4, + "4081": 0.405, + "4082": 0.41, + "4083": 0.415, + "4084": 0.42, + "4085": 0.425, + "4086": 0.43, + "4087": 0.435, + "4088": 0.44, + "4089": 0.445, + "4090": 0.45, + "4091": 0.455, + "4092": 0.46, + "4093": 0.465, + "4094": 0.47, + "4095": 0.475, + "4096": 0.48, + "4097": 0.485, + "4098": 0.49, + "4099": 0.495, + "4100": 0.5, + "4101": 0.505, + "4102": 0.51, + "4103": 0.515, + "4104": 0.52, + "4105": 0.525, + "4106": 0.53, + "4107": 0.535, + "4108": 0.54, + "4109": 0.545, + "4110": 0.55, + "4111": 0.555, + "4112": 0.56, + "4113": 0.565, + "4114": 0.57, + "4115": 0.575, + "4116": 0.58, + "4117": 0.585, + "4118": 0.59, + "4119": 0.595, + "4120": 0.6, + "4121": 0.605, + "4122": 0.61, + "4123": 0.615, + "4124": 0.62, + "4125": 0.625, + "4126": 0.63, + "4127": 0.635, + "4128": 0.64, + "4129": 0.645, + "4130": 0.65, + "4131": 0.655, + "4132": 0.66, + "4133": 0.665, + "4134": 0.67, + "4135": 0.675, + "4136": 0.68, + "4137": 0.685, + "4138": 0.69, + "4139": 0.695, + "4140": 0.7, + "4141": 0.705, + "4142": 0.71, + "4143": 0.715, + "4144": 0.72, + "4145": 0.725, + "4146": 0.73, + "4147": 0.735, + "4148": 0.74, + "4149": 0.745, + "4150": 0.75, + "4151": 0.755, + "4152": 0.76, + "4153": 0.765, + "4154": 0.77, + "4155": 0.775, + "4156": 0.78, + "4157": 0.785, + "4158": 0.79, + "4159": 0.795, + "4160": 0.8, + "4161": 0.805, + "4162": 0.81, + "4163": 0.815, + "4164": 0.82, + "4165": 0.825, + "4166": 0.83, + "4167": 0.835, + "4168": 0.84, + "4169": 0.845, + "4170": 0.85, + "4171": 0.855, + "4172": 0.86, + "4173": 0.865, + "4174": 0.87, + "4175": 0.875, + "4176": 0.88, + "4177": 0.885, + "4178": 0.89, + "4179": 0.895, + "4180": 0.9, + "4181": 0.905, + "4182": 0.91, + "4183": 0.915, + "4184": 0.92, + "4185": 0.925, + "4186": 0.93, + "4187": 0.935, + "4188": 0.94, + "4189": 0.945, + "4190": 0.95, + "4191": 0.955, + "4192": 0.96, + "4193": 0.965, + "4194": 0.97, + "4195": 0.975, + "4196": 0.98, + "4197": 0.985, + "4198": 0.99, + "4199": 0.995, + "4200": 1.0, + "4201": 0.005, + "4202": 0.01, + "4203": 0.015, + "4204": 0.02, + "4205": 0.025, + "4206": 0.03, + "4207": 0.035, + "4208": 0.04, + "4209": 0.045, + "4210": 0.05, + "4211": 0.055, + "4212": 0.06, + "4213": 0.065, + "4214": 0.07, + "4215": 0.075, + "4216": 0.08, + "4217": 0.085, + "4218": 0.09, + "4219": 0.095, + "4220": 0.1, + "4221": 0.105, + "4222": 0.11, + "4223": 0.115, + "4224": 0.12, + "4225": 0.125, + "4226": 0.13, + "4227": 0.135, + "4228": 0.14, + "4229": 0.145, + "4230": 0.15, + "4231": 0.155, + "4232": 0.16, + "4233": 0.165, + "4234": 0.17, + "4235": 0.175, + "4236": 0.18, + "4237": 0.185, + "4238": 0.19, + "4239": 0.195, + "4240": 0.2, + "4241": 0.205, + "4242": 0.21, + "4243": 0.215, + "4244": 0.22, + "4245": 0.225, + "4246": 0.23, + "4247": 0.235, + "4248": 0.24, + "4249": 0.245, + "4250": 0.25, + "4251": 0.255, + "4252": 0.26, + "4253": 0.265, + "4254": 0.27, + "4255": 0.275, + "4256": 0.28, + "4257": 0.285, + "4258": 0.29, + "4259": 0.295, + "4260": 0.3, + "4261": 0.305, + "4262": 0.31, + "4263": 0.315, + "4264": 0.32, + "4265": 0.325, + "4266": 0.33, + "4267": 0.335, + "4268": 0.34, + "4269": 0.345, + "4270": 0.35, + "4271": 0.355, + "4272": 0.36, + "4273": 0.365, + "4274": 0.37, + "4275": 0.375, + "4276": 0.38, + "4277": 0.385, + "4278": 0.39, + "4279": 0.395, + "4280": 0.4, + "4281": 0.405, + "4282": 0.41, + "4283": 0.415, + "4284": 0.42, + "4285": 0.425, + "4286": 0.43, + "4287": 0.435, + "4288": 0.44, + "4289": 0.445, + "4290": 0.45, + "4291": 0.455, + "4292": 0.46, + "4293": 0.465, + "4294": 0.47, + "4295": 0.475, + "4296": 0.48, + "4297": 0.485, + "4298": 0.49, + "4299": 0.495, + "4300": 0.5, + "4301": 0.505, + "4302": 0.51, + "4303": 0.515, + "4304": 0.52, + "4305": 0.525, + "4306": 0.53, + "4307": 0.535, + "4308": 0.54, + "4309": 0.545, + "4310": 0.55, + "4311": 0.555, + "4312": 0.56, + "4313": 0.565, + "4314": 0.57, + "4315": 0.575, + "4316": 0.58, + "4317": 0.585, + "4318": 0.59, + "4319": 0.595, + "4320": 0.6, + "4321": 0.605, + "4322": 0.61, + "4323": 0.615, + "4324": 0.62, + "4325": 0.625, + "4326": 0.63, + "4327": 0.635, + "4328": 0.64, + "4329": 0.645, + "4330": 0.65, + "4331": 0.655, + "4332": 0.66, + "4333": 0.665, + "4334": 0.67, + "4335": 0.675, + "4336": 0.68, + "4337": 0.685, + "4338": 0.69, + "4339": 0.695, + "4340": 0.7, + "4341": 0.705, + "4342": 0.71, + "4343": 0.715, + "4344": 0.72, + "4345": 0.725, + "4346": 0.73, + "4347": 0.735, + "4348": 0.74, + "4349": 0.745, + "4350": 0.75, + "4351": 0.755, + "4352": 0.76, + "4353": 0.765, + "4354": 0.77, + "4355": 0.775, + "4356": 0.78, + "4357": 0.785, + "4358": 0.79, + "4359": 0.795, + "4360": 0.8, + "4361": 0.805, + "4362": 0.81, + "4363": 0.815, + "4364": 0.82, + "4365": 0.825, + "4366": 0.83, + "4367": 0.835, + "4368": 0.84, + "4369": 0.845, + "4370": 0.85, + "4371": 0.855, + "4372": 0.86, + "4373": 0.865, + "4374": 0.87, + "4375": 0.875, + "4376": 0.88, + "4377": 0.885, + "4378": 0.89, + "4379": 0.895, + "4380": 0.9, + "4381": 0.905, + "4382": 0.91, + "4383": 0.915, + "4384": 0.92, + "4385": 0.925, + "4386": 0.93, + "4387": 0.935, + "4388": 0.94, + "4389": 0.945, + "4390": 0.95, + "4391": 0.955, + "4392": 0.96, + "4393": 0.965, + "4394": 0.97, + "4395": 0.975, + "4396": 0.98, + "4397": 0.985, + "4398": 0.99, + "4399": 0.995, + "4400": 1.0, + "4401": 0.005, + "4402": 0.01, + "4403": 0.015, + "4404": 0.02, + "4405": 0.025, + "4406": 0.03, + "4407": 0.035, + "4408": 0.04, + "4409": 0.045, + "4410": 0.05, + "4411": 0.055, + "4412": 0.06, + "4413": 0.065, + "4414": 0.07, + "4415": 0.075, + "4416": 0.08, + "4417": 0.085, + "4418": 0.09, + "4419": 0.095, + "4420": 0.1, + "4421": 0.105, + "4422": 0.11, + "4423": 0.115, + "4424": 0.12, + "4425": 0.125, + "4426": 0.13, + "4427": 0.135, + "4428": 0.14, + "4429": 0.145, + "4430": 0.15, + "4431": 0.155, + "4432": 0.16, + "4433": 0.165, + "4434": 0.17, + "4435": 0.175, + "4436": 0.18, + "4437": 0.185, + "4438": 0.19, + "4439": 0.195, + "4440": 0.2, + "4441": 0.205, + "4442": 0.21, + "4443": 0.215, + "4444": 0.22, + "4445": 0.225, + "4446": 0.23, + "4447": 0.235, + "4448": 0.24, + "4449": 0.245, + "4450": 0.25, + "4451": 0.255, + "4452": 0.26, + "4453": 0.265, + "4454": 0.27, + "4455": 0.275, + "4456": 0.28, + "4457": 0.285, + "4458": 0.29, + "4459": 0.295, + "4460": 0.3, + "4461": 0.305, + "4462": 0.31, + "4463": 0.315, + "4464": 0.32, + "4465": 0.325, + "4466": 0.33, + "4467": 0.335, + "4468": 0.34, + "4469": 0.345, + "4470": 0.35, + "4471": 0.355, + "4472": 0.36, + "4473": 0.365, + "4474": 0.37, + "4475": 0.375, + "4476": 0.38, + "4477": 0.385, + "4478": 0.39, + "4479": 0.395, + "4480": 0.4, + "4481": 0.405, + "4482": 0.41, + "4483": 0.415, + "4484": 0.42, + "4485": 0.425, + "4486": 0.43, + "4487": 0.435, + "4488": 0.44, + "4489": 0.445, + "4490": 0.45, + "4491": 0.455, + "4492": 0.46, + "4493": 0.465, + "4494": 0.47, + "4495": 0.475, + "4496": 0.48, + "4497": 0.485, + "4498": 0.49, + "4499": 0.495, + "4500": 0.5, + "4501": 0.505, + "4502": 0.51, + "4503": 0.515, + "4504": 0.52, + "4505": 0.525, + "4506": 0.53, + "4507": 0.535, + "4508": 0.54, + "4509": 0.545, + "4510": 0.55, + "4511": 0.555, + "4512": 0.56, + "4513": 0.565, + "4514": 0.57, + "4515": 0.575, + "4516": 0.58, + "4517": 0.585, + "4518": 0.59, + "4519": 0.595, + "4520": 0.6, + "4521": 0.605, + "4522": 0.61, + "4523": 0.615, + "4524": 0.62, + "4525": 0.625, + "4526": 0.63, + "4527": 0.635, + "4528": 0.64, + "4529": 0.645, + "4530": 0.65, + "4531": 0.655, + "4532": 0.66, + "4533": 0.665, + "4534": 0.67, + "4535": 0.675, + "4536": 0.68, + "4537": 0.685, + "4538": 0.69, + "4539": 0.695, + "4540": 0.7, + "4541": 0.705, + "4542": 0.71, + "4543": 0.715, + "4544": 0.72, + "4545": 0.725, + "4546": 0.73, + "4547": 0.735, + "4548": 0.74, + "4549": 0.745, + "4550": 0.75, + "4551": 0.755, + "4552": 0.76, + "4553": 0.765, + "4554": 0.77, + "4555": 0.775, + "4556": 0.78, + "4557": 0.785, + "4558": 0.79, + "4559": 0.795, + "4560": 0.8, + "4561": 0.805, + "4562": 0.81, + "4563": 0.815, + "4564": 0.82, + "4565": 0.825, + "4566": 0.83, + "4567": 0.835, + "4568": 0.84, + "4569": 0.845, + "4570": 0.85, + "4571": 0.855, + "4572": 0.86, + "4573": 0.865, + "4574": 0.87, + "4575": 0.875, + "4576": 0.88, + "4577": 0.885, + "4578": 0.89, + "4579": 0.895, + "4580": 0.9, + "4581": 0.905, + "4582": 0.91, + "4583": 0.915, + "4584": 0.92, + "4585": 0.925, + "4586": 0.93, + "4587": 0.935, + "4588": 0.94, + "4589": 0.945, + "4590": 0.95, + "4591": 0.955, + "4592": 0.96, + "4593": 0.965, + "4594": 0.97, + "4595": 0.975, + "4596": 0.98, + "4597": 0.985, + "4598": 0.99, + "4599": 0.995, + "4600": 1.0, + "4601": 0.005, + "4602": 0.01, + "4603": 0.015, + "4604": 0.02, + "4605": 0.025, + "4606": 0.03, + "4607": 0.035, + "4608": 0.04, + "4609": 0.045, + "4610": 0.05, + "4611": 0.055, + "4612": 0.06, + "4613": 0.065, + "4614": 0.07, + "4615": 0.075, + "4616": 0.08, + "4617": 0.085, + "4618": 0.09, + "4619": 0.095, + "4620": 0.1, + "4621": 0.105, + "4622": 0.11, + "4623": 0.115, + "4624": 0.12, + "4625": 0.125, + "4626": 0.13, + "4627": 0.135, + "4628": 0.14, + "4629": 0.145, + "4630": 0.15, + "4631": 0.155, + "4632": 0.16, + "4633": 0.165, + "4634": 0.17, + "4635": 0.175, + "4636": 0.18, + "4637": 0.185, + "4638": 0.19, + "4639": 0.195, + "4640": 0.2, + "4641": 0.205, + "4642": 0.21, + "4643": 0.215, + "4644": 0.22, + "4645": 0.225, + "4646": 0.23, + "4647": 0.235, + "4648": 0.24, + "4649": 0.245, + "4650": 0.25, + "4651": 0.255, + "4652": 0.26, + "4653": 0.265, + "4654": 0.27, + "4655": 0.275, + "4656": 0.28, + "4657": 0.285, + "4658": 0.29, + "4659": 0.295, + "4660": 0.3, + "4661": 0.305, + "4662": 0.31, + "4663": 0.315, + "4664": 0.32, + "4665": 0.325, + "4666": 0.33, + "4667": 0.335, + "4668": 0.34, + "4669": 0.345, + "4670": 0.35, + "4671": 0.355, + "4672": 0.36, + "4673": 0.365, + "4674": 0.37, + "4675": 0.375, + "4676": 0.38, + "4677": 0.385, + "4678": 0.39, + "4679": 0.395, + "4680": 0.4, + "4681": 0.405, + "4682": 0.41, + "4683": 0.415, + "4684": 0.42, + "4685": 0.425, + "4686": 0.43, + "4687": 0.435, + "4688": 0.44, + "4689": 0.445, + "4690": 0.45, + "4691": 0.455, + "4692": 0.46, + "4693": 0.465, + "4694": 0.47, + "4695": 0.475, + "4696": 0.48, + "4697": 0.485, + "4698": 0.49, + "4699": 0.495, + "4700": 0.5, + "4701": 0.505, + "4702": 0.51, + "4703": 0.515, + "4704": 0.52, + "4705": 0.525, + "4706": 0.53, + "4707": 0.535, + "4708": 0.54, + "4709": 0.545, + "4710": 0.55, + "4711": 0.555, + "4712": 0.56, + "4713": 0.565, + "4714": 0.57, + "4715": 0.575, + "4716": 0.58, + "4717": 0.585, + "4718": 0.59, + "4719": 0.595, + "4720": 0.6, + "4721": 0.605, + "4722": 0.61, + "4723": 0.615, + "4724": 0.62, + "4725": 0.625, + "4726": 0.63, + "4727": 0.635, + "4728": 0.64, + "4729": 0.645, + "4730": 0.65, + "4731": 0.655, + "4732": 0.66, + "4733": 0.665, + "4734": 0.67, + "4735": 0.675, + "4736": 0.68, + "4737": 0.685, + "4738": 0.69, + "4739": 0.695, + "4740": 0.7, + "4741": 0.705, + "4742": 0.71, + "4743": 0.715, + "4744": 0.72, + "4745": 0.725, + "4746": 0.73, + "4747": 0.735, + "4748": 0.74, + "4749": 0.745, + "4750": 0.75, + "4751": 0.755, + "4752": 0.76, + "4753": 0.765, + "4754": 0.77, + "4755": 0.775, + "4756": 0.78, + "4757": 0.785, + "4758": 0.79, + "4759": 0.795, + "4760": 0.8, + "4761": 0.805, + "4762": 0.81, + "4763": 0.815, + "4764": 0.82, + "4765": 0.825, + "4766": 0.83, + "4767": 0.835, + "4768": 0.84, + "4769": 0.845, + "4770": 0.85, + "4771": 0.855, + "4772": 0.86, + "4773": 0.865, + "4774": 0.87, + "4775": 0.875, + "4776": 0.88, + "4777": 0.885, + "4778": 0.89, + "4779": 0.895, + "4780": 0.9, + "4781": 0.905, + "4782": 0.91, + "4783": 0.915, + "4784": 0.92, + "4785": 0.925, + "4786": 0.93, + "4787": 0.935, + "4788": 0.94, + "4789": 0.945, + "4790": 0.95, + "4791": 0.955, + "4792": 0.96, + "4793": 0.965, + "4794": 0.97, + "4795": 0.975, + "4796": 0.98, + "4797": 0.985, + "4798": 0.99, + "4799": 0.995, + "4800": 1.0, + "4801": 0.005, + "4802": 0.01, + "4803": 0.015, + "4804": 0.02, + "4805": 0.025, + "4806": 0.03, + "4807": 0.035, + "4808": 0.04, + "4809": 0.045, + "4810": 0.05, + "4811": 0.055, + "4812": 0.06, + "4813": 0.065, + "4814": 0.07, + "4815": 0.075, + "4816": 0.08, + "4817": 0.085, + "4818": 0.09, + "4819": 0.095, + "4820": 0.1, + "4821": 0.105, + "4822": 0.11, + "4823": 0.115, + "4824": 0.12, + "4825": 0.125, + "4826": 0.13, + "4827": 0.135, + "4828": 0.14, + "4829": 0.145, + "4830": 0.15, + "4831": 0.155, + "4832": 0.16, + "4833": 0.165, + "4834": 0.17, + "4835": 0.175, + "4836": 0.18, + "4837": 0.185, + "4838": 0.19, + "4839": 0.195, + "4840": 0.2, + "4841": 0.205, + "4842": 0.21, + "4843": 0.215, + "4844": 0.22, + "4845": 0.225, + "4846": 0.23, + "4847": 0.235, + "4848": 0.24, + "4849": 0.245, + "4850": 0.25, + "4851": 0.255, + "4852": 0.26, + "4853": 0.265, + "4854": 0.27, + "4855": 0.275, + "4856": 0.28, + "4857": 0.285, + "4858": 0.29, + "4859": 0.295, + "4860": 0.3, + "4861": 0.305, + "4862": 0.31, + "4863": 0.315, + "4864": 0.32, + "4865": 0.325, + "4866": 0.33, + "4867": 0.335, + "4868": 0.34, + "4869": 0.345, + "4870": 0.35, + "4871": 0.355, + "4872": 0.36, + "4873": 0.365, + "4874": 0.37, + "4875": 0.375, + "4876": 0.38, + "4877": 0.385, + "4878": 0.39, + "4879": 0.395, + "4880": 0.4, + "4881": 0.405, + "4882": 0.41, + "4883": 0.415, + "4884": 0.42, + "4885": 0.425, + "4886": 0.43, + "4887": 0.435, + "4888": 0.44, + "4889": 0.445, + "4890": 0.45, + "4891": 0.455, + "4892": 0.46, + "4893": 0.465, + "4894": 0.47, + "4895": 0.475, + "4896": 0.48, + "4897": 0.485, + "4898": 0.49, + "4899": 0.495, + "4900": 0.5, + "4901": 0.505, + "4902": 0.51, + "4903": 0.515, + "4904": 0.52, + "4905": 0.525, + "4906": 0.53, + "4907": 0.535, + "4908": 0.54, + "4909": 0.545, + "4910": 0.55, + "4911": 0.555, + "4912": 0.56, + "4913": 0.565, + "4914": 0.57, + "4915": 0.575, + "4916": 0.58, + "4917": 0.585, + "4918": 0.59, + "4919": 0.595, + "4920": 0.6, + "4921": 0.605, + "4922": 0.61, + "4923": 0.615, + "4924": 0.62, + "4925": 0.625, + "4926": 0.63, + "4927": 0.635, + "4928": 0.64, + "4929": 0.645, + "4930": 0.65, + "4931": 0.655, + "4932": 0.66, + "4933": 0.665, + "4934": 0.67, + "4935": 0.675, + "4936": 0.68, + "4937": 0.685, + "4938": 0.69, + "4939": 0.695, + "4940": 0.7, + "4941": 0.705, + "4942": 0.71, + "4943": 0.715, + "4944": 0.72, + "4945": 0.725, + "4946": 0.73, + "4947": 0.735, + "4948": 0.74, + "4949": 0.745, + "4950": 0.75, + "4951": 0.755, + "4952": 0.76, + "4953": 0.765, + "4954": 0.77, + "4955": 0.775, + "4956": 0.78, + "4957": 0.785, + "4958": 0.79, + "4959": 0.795, + "4960": 0.8, + "4961": 0.805, + "4962": 0.81, + "4963": 0.815, + "4964": 0.82, + "4965": 0.825, + "4966": 0.83, + "4967": 0.835, + "4968": 0.84, + "4969": 0.845, + "4970": 0.85, + "4971": 0.855, + "4972": 0.86, + "4973": 0.865, + "4974": 0.87, + "4975": 0.875, + "4976": 0.88, + "4977": 0.885, + "4978": 0.89, + "4979": 0.895, + "4980": 0.9, + "4981": 0.905, + "4982": 0.91, + "4983": 0.915, + "4984": 0.92, + "4985": 0.925, + "4986": 0.93, + "4987": 0.935, + "4988": 0.94, + "4989": 0.945, + "4990": 0.95, + "4991": 0.955, + "4992": 0.96, + "4993": 0.965, + "4994": 0.97, + "4995": 0.975, + "4996": 0.98, + "4997": 0.985, + "4998": 0.99, + "4999": 0.995, + "5000": 1.0, + "5001": 0.005, + "5002": 0.01, + "5003": 0.015, + "5004": 0.02, + "5005": 0.025, + "5006": 0.03, + "5007": 0.035, + "5008": 0.04, + "5009": 0.045, + "5010": 0.05, + "5011": 0.055, + "5012": 0.06, + "5013": 0.065, + "5014": 0.07, + "5015": 0.075, + "5016": 0.08, + "5017": 0.085, + "5018": 0.09, + "5019": 0.095, + "5020": 0.1, + "5021": 0.105, + "5022": 0.11, + "5023": 0.115, + "5024": 0.12, + "5025": 0.125, + "5026": 0.13, + "5027": 0.135, + "5028": 0.14, + "5029": 0.145, + "5030": 0.15, + "5031": 0.155, + "5032": 0.16, + "5033": 0.165, + "5034": 0.17, + "5035": 0.175, + "5036": 0.18, + "5037": 0.185, + "5038": 0.19, + "5039": 0.195, + "5040": 0.2, + "5041": 0.205, + "5042": 0.21, + "5043": 0.215, + "5044": 0.22, + "5045": 0.225, + "5046": 0.23, + "5047": 0.235, + "5048": 0.24, + "5049": 0.245, + "5050": 0.25, + "5051": 0.255, + "5052": 0.26, + "5053": 0.265, + "5054": 0.27, + "5055": 0.275, + "5056": 0.28, + "5057": 0.285, + "5058": 0.29, + "5059": 0.295, + "5060": 0.3, + "5061": 0.305, + "5062": 0.31, + "5063": 0.315, + "5064": 0.32, + "5065": 0.325, + "5066": 0.33, + "5067": 0.335, + "5068": 0.34, + "5069": 0.345, + "5070": 0.35, + "5071": 0.355, + "5072": 0.36, + "5073": 0.365, + "5074": 0.37, + "5075": 0.375, + "5076": 0.38, + "5077": 0.385, + "5078": 0.39, + "5079": 0.395, + "5080": 0.4, + "5081": 0.405, + "5082": 0.41, + "5083": 0.415, + "5084": 0.42, + "5085": 0.425, + "5086": 0.43, + "5087": 0.435, + "5088": 0.44, + "5089": 0.445, + "5090": 0.45, + "5091": 0.455, + "5092": 0.46, + "5093": 0.465, + "5094": 0.47, + "5095": 0.475, + "5096": 0.48, + "5097": 0.485, + "5098": 0.49, + "5099": 0.495, + "5100": 0.5, + "5101": 0.505, + "5102": 0.51, + "5103": 0.515, + "5104": 0.52, + "5105": 0.525, + "5106": 0.53, + "5107": 0.535, + "5108": 0.54, + "5109": 0.545, + "5110": 0.55, + "5111": 0.555, + "5112": 0.56, + "5113": 0.565, + "5114": 0.57, + "5115": 0.575, + "5116": 0.58, + "5117": 0.585, + "5118": 0.59, + "5119": 0.595, + "5120": 0.6, + "5121": 0.605, + "5122": 0.61, + "5123": 0.615, + "5124": 0.62, + "5125": 0.625, + "5126": 0.63, + "5127": 0.635, + "5128": 0.64, + "5129": 0.645, + "5130": 0.65, + "5131": 0.655, + "5132": 0.66, + "5133": 0.665, + "5134": 0.67, + "5135": 0.675, + "5136": 0.68, + "5137": 0.685, + "5138": 0.69, + "5139": 0.695, + "5140": 0.7, + "5141": 0.705, + "5142": 0.71, + "5143": 0.715, + "5144": 0.72, + "5145": 0.725, + "5146": 0.73, + "5147": 0.735, + "5148": 0.74, + "5149": 0.745, + "5150": 0.75, + "5151": 0.755, + "5152": 0.76, + "5153": 0.765, + "5154": 0.77, + "5155": 0.775, + "5156": 0.78, + "5157": 0.785, + "5158": 0.79, + "5159": 0.795, + "5160": 0.8, + "5161": 0.805, + "5162": 0.81, + "5163": 0.815, + "5164": 0.82, + "5165": 0.825, + "5166": 0.83, + "5167": 0.835, + "5168": 0.84, + "5169": 0.845, + "5170": 0.85, + "5171": 0.855, + "5172": 0.86, + "5173": 0.865, + "5174": 0.87, + "5175": 0.875, + "5176": 0.88, + "5177": 0.885, + "5178": 0.89, + "5179": 0.895, + "5180": 0.9, + "5181": 0.905, + "5182": 0.91, + "5183": 0.915, + "5184": 0.92, + "5185": 0.925, + "5186": 0.93, + "5187": 0.935, + "5188": 0.94, + "5189": 0.945, + "5190": 0.95, + "5191": 0.955, + "5192": 0.96, + "5193": 0.965, + "5194": 0.97, + "5195": 0.975, + "5196": 0.98, + "5197": 0.985, + "5198": 0.99, + "5199": 0.995, + "5200": 1.0, + "5201": 0.005, + "5202": 0.01, + "5203": 0.015, + "5204": 0.02, + "5205": 0.025, + "5206": 0.03, + "5207": 0.035, + "5208": 0.04, + "5209": 0.045, + "5210": 0.05, + "5211": 0.055, + "5212": 0.06, + "5213": 0.065, + "5214": 0.07, + "5215": 0.075, + "5216": 0.08, + "5217": 0.085, + "5218": 0.09, + "5219": 0.095, + "5220": 0.1, + "5221": 0.105, + "5222": 0.11, + "5223": 0.115, + "5224": 0.12, + "5225": 0.125, + "5226": 0.13, + "5227": 0.135, + "5228": 0.14, + "5229": 0.145, + "5230": 0.15, + "5231": 0.155, + "5232": 0.16, + "5233": 0.165, + "5234": 0.17, + "5235": 0.175, + "5236": 0.18, + "5237": 0.185, + "5238": 0.19, + "5239": 0.195, + "5240": 0.2, + "5241": 0.205, + "5242": 0.21, + "5243": 0.215, + "5244": 0.22, + "5245": 0.225, + "5246": 0.23, + "5247": 0.235, + "5248": 0.24, + "5249": 0.245, + "5250": 0.25, + "5251": 0.255, + "5252": 0.26, + "5253": 0.265, + "5254": 0.27, + "5255": 0.275, + "5256": 0.28, + "5257": 0.285, + "5258": 0.29, + "5259": 0.295, + "5260": 0.3, + "5261": 0.305, + "5262": 0.31, + "5263": 0.315, + "5264": 0.32, + "5265": 0.325, + "5266": 0.33, + "5267": 0.335, + "5268": 0.34, + "5269": 0.345, + "5270": 0.35, + "5271": 0.355, + "5272": 0.36, + "5273": 0.365, + "5274": 0.37, + "5275": 0.375, + "5276": 0.38, + "5277": 0.385, + "5278": 0.39, + "5279": 0.395, + "5280": 0.4, + "5281": 0.405, + "5282": 0.41, + "5283": 0.415, + "5284": 0.42, + "5285": 0.425, + "5286": 0.43, + "5287": 0.435, + "5288": 0.44, + "5289": 0.445, + "5290": 0.45, + "5291": 0.455, + "5292": 0.46, + "5293": 0.465, + "5294": 0.47, + "5295": 0.475, + "5296": 0.48, + "5297": 0.485, + "5298": 0.49, + "5299": 0.495, + "5300": 0.5, + "5301": 0.505, + "5302": 0.51, + "5303": 0.515, + "5304": 0.52, + "5305": 0.525, + "5306": 0.53, + "5307": 0.535, + "5308": 0.54, + "5309": 0.545, + "5310": 0.55, + "5311": 0.555, + "5312": 0.56, + "5313": 0.565, + "5314": 0.57, + "5315": 0.575, + "5316": 0.58, + "5317": 0.585, + "5318": 0.59, + "5319": 0.595, + "5320": 0.6, + "5321": 0.605, + "5322": 0.61, + "5323": 0.615, + "5324": 0.62, + "5325": 0.625, + "5326": 0.63, + "5327": 0.635, + "5328": 0.64, + "5329": 0.645, + "5330": 0.65, + "5331": 0.655, + "5332": 0.66, + "5333": 0.665, + "5334": 0.67, + "5335": 0.675, + "5336": 0.68, + "5337": 0.685, + "5338": 0.69, + "5339": 0.695, + "5340": 0.7, + "5341": 0.705, + "5342": 0.71, + "5343": 0.715, + "5344": 0.72, + "5345": 0.725, + "5346": 0.73, + "5347": 0.735, + "5348": 0.74, + "5349": 0.745, + "5350": 0.75, + "5351": 0.755, + "5352": 0.76, + "5353": 0.765, + "5354": 0.77, + "5355": 0.775, + "5356": 0.78, + "5357": 0.785, + "5358": 0.79, + "5359": 0.795, + "5360": 0.8, + "5361": 0.805, + "5362": 0.81, + "5363": 0.815, + "5364": 0.82, + "5365": 0.825, + "5366": 0.83, + "5367": 0.835, + "5368": 0.84, + "5369": 0.845, + "5370": 0.85, + "5371": 0.855, + "5372": 0.86, + "5373": 0.865, + "5374": 0.87, + "5375": 0.875, + "5376": 0.88, + "5377": 0.885, + "5378": 0.89, + "5379": 0.895, + "5380": 0.9, + "5381": 0.905, + "5382": 0.91, + "5383": 0.915, + "5384": 0.92, + "5385": 0.925, + "5386": 0.93, + "5387": 0.935, + "5388": 0.94, + "5389": 0.945, + "5390": 0.95, + "5391": 0.955, + "5392": 0.96, + "5393": 0.965, + "5394": 0.97, + "5395": 0.975, + "5396": 0.98, + "5397": 0.985, + "5398": 0.99, + "5399": 0.995, + "5400": 1.0, + "5401": 0.005, + "5402": 0.01, + "5403": 0.015, + "5404": 0.02, + "5405": 0.025, + "5406": 0.03, + "5407": 0.035, + "5408": 0.04, + "5409": 0.045, + "5410": 0.05, + "5411": 0.055, + "5412": 0.06, + "5413": 0.065, + "5414": 0.07, + "5415": 0.075, + "5416": 0.08, + "5417": 0.085, + "5418": 0.09, + "5419": 0.095, + "5420": 0.1, + "5421": 0.105, + "5422": 0.11, + "5423": 0.115, + "5424": 0.12, + "5425": 0.125, + "5426": 0.13, + "5427": 0.135, + "5428": 0.14, + "5429": 0.145, + "5430": 0.15, + "5431": 0.155, + "5432": 0.16, + "5433": 0.165, + "5434": 0.17, + "5435": 0.175, + "5436": 0.18, + "5437": 0.185, + "5438": 0.19, + "5439": 0.195, + "5440": 0.2, + "5441": 0.205, + "5442": 0.21, + "5443": 0.215, + "5444": 0.22, + "5445": 0.225, + "5446": 0.23, + "5447": 0.235, + "5448": 0.24, + "5449": 0.245, + "5450": 0.25, + "5451": 0.255, + "5452": 0.26, + "5453": 0.265, + "5454": 0.27, + "5455": 0.275, + "5456": 0.28, + "5457": 0.285, + "5458": 0.29, + "5459": 0.295, + "5460": 0.3, + "5461": 0.305, + "5462": 0.31, + "5463": 0.315, + "5464": 0.32, + "5465": 0.325, + "5466": 0.33, + "5467": 0.335, + "5468": 0.34, + "5469": 0.345, + "5470": 0.35, + "5471": 0.355, + "5472": 0.36, + "5473": 0.365, + "5474": 0.37, + "5475": 0.375, + "5476": 0.38, + "5477": 0.385, + "5478": 0.39, + "5479": 0.395, + "5480": 0.4, + "5481": 0.405, + "5482": 0.41, + "5483": 0.415, + "5484": 0.42, + "5485": 0.425, + "5486": 0.43, + "5487": 0.435, + "5488": 0.44, + "5489": 0.445, + "5490": 0.45, + "5491": 0.455, + "5492": 0.46, + "5493": 0.465, + "5494": 0.47, + "5495": 0.475, + "5496": 0.48, + "5497": 0.485, + "5498": 0.49, + "5499": 0.495, + "5500": 0.5, + "5501": 0.505, + "5502": 0.51, + "5503": 0.515, + "5504": 0.52, + "5505": 0.525, + "5506": 0.53, + "5507": 0.535, + "5508": 0.54, + "5509": 0.545, + "5510": 0.55, + "5511": 0.555, + "5512": 0.56, + "5513": 0.565, + "5514": 0.57, + "5515": 0.575, + "5516": 0.58, + "5517": 0.585, + "5518": 0.59, + "5519": 0.595, + "5520": 0.6, + "5521": 0.605, + "5522": 0.61, + "5523": 0.615, + "5524": 0.62, + "5525": 0.625, + "5526": 0.63, + "5527": 0.635, + "5528": 0.64, + "5529": 0.645, + "5530": 0.65, + "5531": 0.655, + "5532": 0.66, + "5533": 0.665, + "5534": 0.67, + "5535": 0.675, + "5536": 0.68, + "5537": 0.685, + "5538": 0.69, + "5539": 0.695, + "5540": 0.7, + "5541": 0.705, + "5542": 0.71, + "5543": 0.715, + "5544": 0.72, + "5545": 0.725, + "5546": 0.73, + "5547": 0.735, + "5548": 0.74, + "5549": 0.745, + "5550": 0.75, + "5551": 0.755, + "5552": 0.76, + "5553": 0.765, + "5554": 0.77, + "5555": 0.775, + "5556": 0.78, + "5557": 0.785, + "5558": 0.79, + "5559": 0.795, + "5560": 0.8, + "5561": 0.805, + "5562": 0.81, + "5563": 0.815, + "5564": 0.82, + "5565": 0.825, + "5566": 0.83, + "5567": 0.835, + "5568": 0.84, + "5569": 0.845, + "5570": 0.85, + "5571": 0.855, + "5572": 0.86, + "5573": 0.865, + "5574": 0.87, + "5575": 0.875, + "5576": 0.88, + "5577": 0.885, + "5578": 0.89, + "5579": 0.895, + "5580": 0.9, + "5581": 0.905, + "5582": 0.91, + "5583": 0.915, + "5584": 0.92, + "5585": 0.925, + "5586": 0.93, + "5587": 0.935, + "5588": 0.94, + "5589": 0.945, + "5590": 0.95, + "5591": 0.955, + "5592": 0.96, + "5593": 0.965, + "5594": 0.97, + "5595": 0.975, + "5596": 0.98, + "5597": 0.985, + "5598": 0.99, + "5599": 0.995, + "5600": 1.0, + "5601": 0.005, + "5602": 0.01, + "5603": 0.015, + "5604": 0.02, + "5605": 0.025, + "5606": 0.03, + "5607": 0.035, + "5608": 0.04, + "5609": 0.045, + "5610": 0.05, + "5611": 0.055, + "5612": 0.06, + "5613": 0.065, + "5614": 0.07, + "5615": 0.075, + "5616": 0.08, + "5617": 0.085, + "5618": 0.09, + "5619": 0.095, + "5620": 0.1, + "5621": 0.105, + "5622": 0.11, + "5623": 0.115, + "5624": 0.12, + "5625": 0.125, + "5626": 0.13, + "5627": 0.135, + "5628": 0.14, + "5629": 0.145, + "5630": 0.15, + "5631": 0.155, + "5632": 0.16, + "5633": 0.165, + "5634": 0.17, + "5635": 0.175, + "5636": 0.18, + "5637": 0.185, + "5638": 0.19, + "5639": 0.195, + "5640": 0.2, + "5641": 0.205, + "5642": 0.21, + "5643": 0.215, + "5644": 0.22, + "5645": 0.225, + "5646": 0.23, + "5647": 0.235, + "5648": 0.24, + "5649": 0.245, + "5650": 0.25, + "5651": 0.255, + "5652": 0.26, + "5653": 0.265, + "5654": 0.27, + "5655": 0.275, + "5656": 0.28, + "5657": 0.285, + "5658": 0.29, + "5659": 0.295, + "5660": 0.3, + "5661": 0.305, + "5662": 0.31, + "5663": 0.315, + "5664": 0.32, + "5665": 0.325, + "5666": 0.33, + "5667": 0.335, + "5668": 0.34, + "5669": 0.345, + "5670": 0.35, + "5671": 0.355, + "5672": 0.36, + "5673": 0.365, + "5674": 0.37, + "5675": 0.375, + "5676": 0.38, + "5677": 0.385, + "5678": 0.39, + "5679": 0.395, + "5680": 0.4, + "5681": 0.405, + "5682": 0.41, + "5683": 0.415, + "5684": 0.42, + "5685": 0.425, + "5686": 0.43, + "5687": 0.435, + "5688": 0.44, + "5689": 0.445, + "5690": 0.45, + "5691": 0.455, + "5692": 0.46, + "5693": 0.465, + "5694": 0.47, + "5695": 0.475, + "5696": 0.48, + "5697": 0.485, + "5698": 0.49, + "5699": 0.495, + "5700": 0.5, + "5701": 0.505, + "5702": 0.51, + "5703": 0.515, + "5704": 0.52, + "5705": 0.525, + "5706": 0.53, + "5707": 0.535, + "5708": 0.54, + "5709": 0.545, + "5710": 0.55, + "5711": 0.555, + "5712": 0.56, + "5713": 0.565, + "5714": 0.57, + "5715": 0.575, + "5716": 0.58, + "5717": 0.585, + "5718": 0.59, + "5719": 0.595, + "5720": 0.6, + "5721": 0.605, + "5722": 0.61, + "5723": 0.615, + "5724": 0.62, + "5725": 0.625, + "5726": 0.63, + "5727": 0.635, + "5728": 0.64, + "5729": 0.645, + "5730": 0.65, + "5731": 0.655, + "5732": 0.66, + "5733": 0.665, + "5734": 0.67, + "5735": 0.675, + "5736": 0.68, + "5737": 0.685, + "5738": 0.69, + "5739": 0.695, + "5740": 0.7, + "5741": 0.705, + "5742": 0.71, + "5743": 0.715, + "5744": 0.72, + "5745": 0.725, + "5746": 0.73, + "5747": 0.735, + "5748": 0.74, + "5749": 0.745, + "5750": 0.75, + "5751": 0.755, + "5752": 0.76, + "5753": 0.765, + "5754": 0.77, + "5755": 0.775, + "5756": 0.78, + "5757": 0.785, + "5758": 0.79, + "5759": 0.795, + "5760": 0.8, + "5761": 0.805, + "5762": 0.81, + "5763": 0.815, + "5764": 0.82, + "5765": 0.825, + "5766": 0.83, + "5767": 0.835, + "5768": 0.84, + "5769": 0.845, + "5770": 0.85, + "5771": 0.855, + "5772": 0.86, + "5773": 0.865, + "5774": 0.87, + "5775": 0.875, + "5776": 0.88, + "5777": 0.885, + "5778": 0.89, + "5779": 0.895, + "5780": 0.9, + "5781": 0.905, + "5782": 0.91, + "5783": 0.915, + "5784": 0.92, + "5785": 0.925, + "5786": 0.93, + "5787": 0.935, + "5788": 0.94, + "5789": 0.945, + "5790": 0.95, + "5791": 0.955, + "5792": 0.96, + "5793": 0.965, + "5794": 0.97, + "5795": 0.975, + "5796": 0.98, + "5797": 0.985, + "5798": 0.99, + "5799": 0.995, + "5800": 1.0, + "5801": 0.005, + "5802": 0.01, + "5803": 0.015, + "5804": 0.02, + "5805": 0.025, + "5806": 0.03, + "5807": 0.035, + "5808": 0.04, + "5809": 0.045, + "5810": 0.05, + "5811": 0.055, + "5812": 0.06, + "5813": 0.065, + "5814": 0.07, + "5815": 0.075, + "5816": 0.08, + "5817": 0.085, + "5818": 0.09, + "5819": 0.095, + "5820": 0.1, + "5821": 0.105, + "5822": 0.11, + "5823": 0.115, + "5824": 0.12, + "5825": 0.125, + "5826": 0.13, + "5827": 0.135, + "5828": 0.14, + "5829": 0.145, + "5830": 0.15, + "5831": 0.155, + "5832": 0.16, + "5833": 0.165, + "5834": 0.17, + "5835": 0.175, + "5836": 0.18, + "5837": 0.185, + "5838": 0.19, + "5839": 0.195, + "5840": 0.2, + "5841": 0.205, + "5842": 0.21, + "5843": 0.215, + "5844": 0.22, + "5845": 0.225, + "5846": 0.23, + "5847": 0.235, + "5848": 0.24, + "5849": 0.245, + "5850": 0.25, + "5851": 0.255, + "5852": 0.26, + "5853": 0.265, + "5854": 0.27, + "5855": 0.275, + "5856": 0.28, + "5857": 0.285, + "5858": 0.29, + "5859": 0.295, + "5860": 0.3, + "5861": 0.305, + "5862": 0.31, + "5863": 0.315, + "5864": 0.32, + "5865": 0.325, + "5866": 0.33, + "5867": 0.335, + "5868": 0.34, + "5869": 0.345, + "5870": 0.35, + "5871": 0.355, + "5872": 0.36, + "5873": 0.365, + "5874": 0.37, + "5875": 0.375, + "5876": 0.38, + "5877": 0.385, + "5878": 0.39, + "5879": 0.395, + "5880": 0.4, + "5881": 0.405, + "5882": 0.41, + "5883": 0.415, + "5884": 0.42, + "5885": 0.425, + "5886": 0.43, + "5887": 0.435, + "5888": 0.44, + "5889": 0.445, + "5890": 0.45, + "5891": 0.455, + "5892": 0.46, + "5893": 0.465, + "5894": 0.47, + "5895": 0.475, + "5896": 0.48, + "5897": 0.485, + "5898": 0.49, + "5899": 0.495, + "5900": 0.5, + "5901": 0.505, + "5902": 0.51, + "5903": 0.515, + "5904": 0.52, + "5905": 0.525, + "5906": 0.53, + "5907": 0.535, + "5908": 0.54, + "5909": 0.545, + "5910": 0.55, + "5911": 0.555, + "5912": 0.56, + "5913": 0.565, + "5914": 0.57, + "5915": 0.575, + "5916": 0.58, + "5917": 0.585, + "5918": 0.59, + "5919": 0.595, + "5920": 0.6, + "5921": 0.605, + "5922": 0.61, + "5923": 0.615, + "5924": 0.62, + "5925": 0.625, + "5926": 0.63, + "5927": 0.635, + "5928": 0.64, + "5929": 0.645, + "5930": 0.65, + "5931": 0.655, + "5932": 0.66, + "5933": 0.665, + "5934": 0.67, + "5935": 0.675, + "5936": 0.68, + "5937": 0.685, + "5938": 0.69, + "5939": 0.695, + "5940": 0.7, + "5941": 0.705, + "5942": 0.71, + "5943": 0.715, + "5944": 0.72, + "5945": 0.725, + "5946": 0.73, + "5947": 0.735, + "5948": 0.74, + "5949": 0.745, + "5950": 0.75, + "5951": 0.755, + "5952": 0.76, + "5953": 0.765, + "5954": 0.77, + "5955": 0.775, + "5956": 0.78, + "5957": 0.785, + "5958": 0.79, + "5959": 0.795, + "5960": 0.8, + "5961": 0.805, + "5962": 0.81, + "5963": 0.815, + "5964": 0.82, + "5965": 0.825, + "5966": 0.83, + "5967": 0.835, + "5968": 0.84, + "5969": 0.845, + "5970": 0.85, + "5971": 0.855, + "5972": 0.86, + "5973": 0.865, + "5974": 0.87, + "5975": 0.875, + "5976": 0.88, + "5977": 0.885, + "5978": 0.89, + "5979": 0.895, + "5980": 0.9, + "5981": 0.905, + "5982": 0.91, + "5983": 0.915, + "5984": 0.92, + "5985": 0.925, + "5986": 0.93, + "5987": 0.935, + "5988": 0.94, + "5989": 0.945, + "5990": 0.95, + "5991": 0.955, + "5992": 0.96, + "5993": 0.965, + "5994": 0.97, + "5995": 0.975, + "5996": 0.98, + "5997": 0.985, + "5998": 0.99, + "5999": 0.995, + "6000": 1.0, + "6001": 0.005, + "6002": 0.01, + "6003": 0.015, + "6004": 0.02, + "6005": 0.025, + "6006": 0.03, + "6007": 0.035, + "6008": 0.04, + "6009": 0.045, + "6010": 0.05, + "6011": 0.055, + "6012": 0.06, + "6013": 0.065, + "6014": 0.07, + "6015": 0.075, + "6016": 0.08, + "6017": 0.085, + "6018": 0.09, + "6019": 0.095, + "6020": 0.1, + "6021": 0.105, + "6022": 0.11, + "6023": 0.115, + "6024": 0.12, + "6025": 0.125, + "6026": 0.13, + "6027": 0.135, + "6028": 0.14, + "6029": 0.145, + "6030": 0.15, + "6031": 0.155, + "6032": 0.16, + "6033": 0.165, + "6034": 0.17, + "6035": 0.175, + "6036": 0.18, + "6037": 0.185, + "6038": 0.19, + "6039": 0.195, + "6040": 0.2, + "6041": 0.205, + "6042": 0.21, + "6043": 0.215, + "6044": 0.22, + "6045": 0.225, + "6046": 0.23, + "6047": 0.235, + "6048": 0.24, + "6049": 0.245, + "6050": 0.25, + "6051": 0.255, + "6052": 0.26, + "6053": 0.265, + "6054": 0.27, + "6055": 0.275, + "6056": 0.28, + "6057": 0.285, + "6058": 0.29, + "6059": 0.295, + "6060": 0.3, + "6061": 0.305, + "6062": 0.31, + "6063": 0.315, + "6064": 0.32, + "6065": 0.325, + "6066": 0.33, + "6067": 0.335, + "6068": 0.34, + "6069": 0.345, + "6070": 0.35, + "6071": 0.355, + "6072": 0.36, + "6073": 0.365, + "6074": 0.37, + "6075": 0.375, + "6076": 0.38, + "6077": 0.385, + "6078": 0.39, + "6079": 0.395, + "6080": 0.4, + "6081": 0.405, + "6082": 0.41, + "6083": 0.415, + "6084": 0.42, + "6085": 0.425, + "6086": 0.43, + "6087": 0.435, + "6088": 0.44, + "6089": 0.445, + "6090": 0.45, + "6091": 0.455, + "6092": 0.46, + "6093": 0.465, + "6094": 0.47, + "6095": 0.475, + "6096": 0.48, + "6097": 0.485, + "6098": 0.49, + "6099": 0.495, + "6100": 0.5, + "6101": 0.505, + "6102": 0.51, + "6103": 0.515, + "6104": 0.52, + "6105": 0.525, + "6106": 0.53, + "6107": 0.535, + "6108": 0.54, + "6109": 0.545, + "6110": 0.55, + "6111": 0.555, + "6112": 0.56, + "6113": 0.565, + "6114": 0.57, + "6115": 0.575, + "6116": 0.58, + "6117": 0.585, + "6118": 0.59, + "6119": 0.595, + "6120": 0.6, + "6121": 0.605, + "6122": 0.61, + "6123": 0.615, + "6124": 0.62, + "6125": 0.625, + "6126": 0.63, + "6127": 0.635, + "6128": 0.64, + "6129": 0.645, + "6130": 0.65, + "6131": 0.655, + "6132": 0.66, + "6133": 0.665, + "6134": 0.67, + "6135": 0.675, + "6136": 0.68, + "6137": 0.685, + "6138": 0.69, + "6139": 0.695, + "6140": 0.7, + "6141": 0.705, + "6142": 0.71, + "6143": 0.715, + "6144": 0.72, + "6145": 0.725, + "6146": 0.73, + "6147": 0.735, + "6148": 0.74, + "6149": 0.745, + "6150": 0.75, + "6151": 0.755, + "6152": 0.76, + "6153": 0.765, + "6154": 0.77, + "6155": 0.775, + "6156": 0.78, + "6157": 0.785, + "6158": 0.79, + "6159": 0.795, + "6160": 0.8, + "6161": 0.805, + "6162": 0.81, + "6163": 0.815, + "6164": 0.82, + "6165": 0.825, + "6166": 0.83, + "6167": 0.835, + "6168": 0.84, + "6169": 0.845, + "6170": 0.85, + "6171": 0.855, + "6172": 0.86, + "6173": 0.865, + "6174": 0.87, + "6175": 0.875, + "6176": 0.88, + "6177": 0.885, + "6178": 0.89, + "6179": 0.895, + "6180": 0.9, + "6181": 0.905, + "6182": 0.91, + "6183": 0.915, + "6184": 0.92, + "6185": 0.925, + "6186": 0.93, + "6187": 0.935, + "6188": 0.94, + "6189": 0.945, + "6190": 0.95, + "6191": 0.955, + "6192": 0.96, + "6193": 0.965, + "6194": 0.97, + "6195": 0.975, + "6196": 0.98, + "6197": 0.985, + "6198": 0.99, + "6199": 0.995, + "6200": 1.0 + }, + "flow_in": { + "0": 0.0, + "1": 3.3784881494, + "2": 1.8069762988, + "3": 2.7101546914, + "4": 2.3758330839, + "5": 2.6596431852, + "6": 2.6340782865, + "7": 2.7622765022, + "8": 2.8131309679, + "9": 2.9014304769, + "10": 2.9703940484, + "11": 3.0475011526, + "12": 3.1197742723, + "13": 3.19264836, + "14": 3.2643139516, + "15": 3.3344833458, + "16": 3.4043506159, + "17": 3.471992371, + "18": 3.5395585951, + "19": 3.6045192553, + "20": 3.6694610326, + "21": 3.7315126016, + "22": 3.7935594499, + "23": 3.8524641319, + "24": 3.9113676337, + "25": 3.9668947323, + "26": 4.0224215358, + "27": 4.0743523541, + "28": 4.1262830987, + "29": 4.1744128005, + "30": 4.2225424839, + "31": 4.2666811509, + "32": 4.3108198132, + "33": 4.3507932572, + "34": 4.3907667, + "35": 4.4264171657, + "36": 4.4620676311, + "37": 4.493254423, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2, + "201": 2.2784881494, + "202": 2.3569762988, + "203": 2.4351546914, + "204": 2.5133330839, + "205": 2.5908931852, + "206": 2.6684532865, + "207": 2.7450890022, + "208": 2.8217247179, + "209": 2.8971336019, + "210": 2.9725424859, + "211": 3.0464269338, + "212": 3.1203113817, + "213": 3.1923798053, + "214": 3.2644482289, + "215": 3.3344162071, + "216": 3.4043841853, + "217": 3.4719755864, + "218": 3.5395669874, + "219": 3.6045150591, + "220": 3.6694631307, + "221": 3.7315115526, + "222": 3.7935599744, + "223": 3.8524638696, + "224": 3.9113677648, + "225": 3.9668946667, + "226": 4.0224215686, + "227": 4.0743523377, + "228": 4.1262831069, + "229": 4.1744127964, + "230": 4.2225424859, + "231": 4.2666811498, + "232": 4.3108198138, + "233": 4.3507932569, + "234": 4.3907667001, + "235": 4.4264171656, + "236": 4.4620676312, + "237": 4.4932544229, + "238": 4.5244412147, + "239": 4.5510412527, + "240": 4.5776412907, + "241": 4.5995495968, + "242": 4.6214579028, + "243": 4.6385880148, + "244": 4.6557181268, + "245": 4.6680024401, + "246": 4.6802867533, + "247": 4.6876767872, + "248": 4.6950668211, + "249": 4.6975334105, + "250": 4.7, + "251": 4.6975334105, + "252": 4.6950668211, + "253": 4.6876767872, + "254": 4.6802867533, + "255": 4.6680024401, + "256": 4.6557181268, + "257": 4.6385880148, + "258": 4.6214579028, + "259": 4.5995495968, + "260": 4.5776412907, + "261": 4.5510412527, + "262": 4.5244412147, + "263": 4.4932544229, + "264": 4.4620676312, + "265": 4.4264171656, + "266": 4.3907667001, + "267": 4.3507932569, + "268": 4.3108198138, + "269": 4.2666811498, + "270": 4.2225424859, + "271": 4.1744127964, + "272": 4.1262831069, + "273": 4.0743523377, + "274": 4.0224215686, + "275": 3.9668946667, + "276": 3.9113677648, + "277": 3.8524638696, + "278": 3.7935599744, + "279": 3.7315115526, + "280": 3.6694631307, + "281": 3.6045150591, + "282": 3.5395669874, + "283": 3.4719755864, + "284": 3.4043841853, + "285": 3.3344162071, + "286": 3.2644482289, + "287": 3.1923798053, + "288": 3.1203113817, + "289": 3.0464269338, + "290": 2.9725424859, + "291": 2.8971336019, + "292": 2.8217247179, + "293": 2.7450890022, + "294": 2.6684532865, + "295": 2.5908931852, + "296": 2.5133330839, + "297": 2.4351546914, + "298": 2.3569762988, + "299": 2.2784881494, + "300": 2.2, + "301": 2.1215118506, + "302": 2.0430237012, + "303": 1.9648453086, + "304": 1.8866669161, + "305": 1.8091068148, + "306": 1.7315467135, + "307": 1.6549109978, + "308": 1.5782752821, + "309": 1.5028663981, + "310": 1.4274575141, + "311": 1.3535730662, + "312": 1.2796886183, + "313": 1.2076201947, + "314": 1.1355517711, + "315": 1.0655837929, + "316": 0.9956158147, + "317": 0.9280244136, + "318": 0.8604330126, + "319": 0.7954849409, + "320": 0.7305368693, + "321": 0.6684884474, + "322": 0.6064400256, + "323": 0.5475361304, + "324": 0.4886322352, + "325": 0.4331053333, + "326": 0.3775784314, + "327": 0.3256476623, + "328": 0.2737168931, + "329": 0.2255872036, + "330": 0.1774575141, + "331": 0.1333188502, + "332": 0.0891801862, + "333": 0.0492067431, + "334": 0.0092332999, + "335": -0.0264171656, + "336": -0.0620676312, + "337": -0.0932544229, + "338": -0.1244412147, + "339": -0.1510412527, + "340": -0.1776412907, + "341": -0.1995495968, + "342": -0.2214579028, + "343": -0.2385880148, + "344": -0.2557181268, + "345": -0.2680024401, + "346": -0.2802867533, + "347": -0.2876767872, + "348": -0.2950668211, + "349": -0.2975334105, + "350": -0.3, + "351": -0.2975334105, + "352": -0.2950668211, + "353": -0.2876767872, + "354": -0.2802867533, + "355": -0.2680024401, + "356": -0.2557181268, + "357": -0.2385880148, + "358": -0.2214579028, + "359": -0.1995495968, + "360": -0.1776412907, + "361": -0.1510412527, + "362": -0.1244412147, + "363": -0.0932544229, + "364": -0.0620676312, + "365": -0.0264171656, + "366": 0.0092332999, + "367": 0.0492067431, + "368": 0.0891801862, + "369": 0.1333188502, + "370": 0.1774575141, + "371": 0.2255872036, + "372": 0.2737168931, + "373": 0.3256476623, + "374": 0.3775784314, + "375": 0.4331053333, + "376": 0.4886322352, + "377": 0.5475361304, + "378": 0.6064400256, + "379": 0.6684884474, + "380": 0.7305368693, + "381": 0.7954849409, + "382": 0.8604330126, + "383": 0.9280244136, + "384": 0.9956158147, + "385": 1.0655837929, + "386": 1.1355517711, + "387": 1.2076201947, + "388": 1.2796886183, + "389": 1.3535730662, + "390": 1.4274575141, + "391": 1.5028663981, + "392": 1.5782752821, + "393": 1.6549109978, + "394": 1.7315467135, + "395": 1.8091068148, + "396": 1.8866669161, + "397": 1.9648453086, + "398": 2.0430237012, + "399": 2.1215118506, + "400": 2.2, + "401": 2.2784881494, + "402": 2.3569762988, + "403": 2.4351546914, + "404": 2.5133330839, + "405": 2.5908931852, + "406": 2.6684532865, + "407": 2.7450890022, + "408": 2.8217247179, + "409": 2.8971336019, + "410": 2.9725424859, + "411": 3.0464269338, + "412": 3.1203113817, + "413": 3.1923798053, + "414": 3.2644482289, + "415": 3.3344162071, + "416": 3.4043841853, + "417": 3.4719755864, + "418": 3.5395669874, + "419": 3.6045150591, + "420": 3.6694631307, + "421": 3.7315115526, + "422": 3.7935599744, + "423": 3.8524638696, + "424": 3.9113677648, + "425": 3.9668946667, + "426": 4.0224215686, + "427": 4.0743523377, + "428": 4.1262831069, + "429": 4.1744127964, + "430": 4.2225424859, + "431": 4.2666811498, + "432": 4.3108198138, + "433": 4.3507932569, + "434": 4.3907667001, + "435": 4.4264171656, + "436": 4.4620676312, + "437": 4.4932544229, + "438": 4.5244412147, + "439": 4.5510412527, + "440": 4.5776412907, + "441": 4.5995495968, + "442": 4.6214579028, + "443": 4.6385880148, + "444": 4.6557181268, + "445": 4.6680024401, + "446": 4.6802867533, + "447": 4.6876767872, + "448": 4.6950668211, + "449": 4.6975334105, + "450": 4.7, + "451": 4.6975334105, + "452": 4.6950668211, + "453": 4.6876767872, + "454": 4.6802867533, + "455": 4.6680024401, + "456": 4.6557181268, + "457": 4.6385880148, + "458": 4.6214579028, + "459": 4.5995495968, + "460": 4.5776412907, + "461": 4.5510412527, + "462": 4.5244412147, + "463": 4.4932544229, + "464": 4.4620676312, + "465": 4.4264171656, + "466": 4.3907667001, + "467": 4.3507932569, + "468": 4.3108198138, + "469": 4.2666811498, + "470": 4.2225424859, + "471": 4.1744127964, + "472": 4.1262831069, + "473": 4.0743523377, + "474": 4.0224215686, + "475": 3.9668946667, + "476": 3.9113677648, + "477": 3.8524638696, + "478": 3.7935599744, + "479": 3.7315115526, + "480": 3.6694631307, + "481": 3.6045150591, + "482": 3.5395669874, + "483": 3.4719755864, + "484": 3.4043841853, + "485": 3.3344162071, + "486": 3.2644482289, + "487": 3.1923798053, + "488": 3.1203113817, + "489": 3.0464269338, + "490": 2.9725424859, + "491": 2.8971336019, + "492": 2.8217247179, + "493": 2.7450890022, + "494": 2.6684532865, + "495": 2.5908931852, + "496": 2.5133330839, + "497": 2.4351546914, + "498": 2.3569762988, + "499": 2.2784881494, + "500": 2.2, + "501": 2.1215118506, + "502": 2.0430237012, + "503": 1.9648453086, + "504": 1.8866669161, + "505": 1.8091068148, + "506": 1.7315467135, + "507": 1.6549109978, + "508": 1.5782752821, + "509": 1.5028663981, + "510": 1.4274575141, + "511": 1.3535730662, + "512": 1.2796886183, + "513": 1.2076201947, + "514": 1.1355517711, + "515": 1.0655837929, + "516": 0.9956158147, + "517": 0.9280244136, + "518": 0.8604330126, + "519": 0.7954849409, + "520": 0.7305368693, + "521": 0.6684884474, + "522": 0.6064400256, + "523": 0.5475361304, + "524": 0.4886322352, + "525": 0.4331053333, + "526": 0.3775784314, + "527": 0.3256476623, + "528": 0.2737168931, + "529": 0.2255872036, + "530": 0.1774575141, + "531": 0.1333188502, + "532": 0.0891801862, + "533": 0.0492067431, + "534": 0.0092332999, + "535": -0.0264171656, + "536": -0.0620676312, + "537": -0.0932544229, + "538": -0.1244412147, + "539": -0.1510412527, + "540": -0.1776412907, + "541": -0.1995495968, + "542": -0.2214579028, + "543": -0.2385880148, + "544": -0.2557181268, + "545": -0.2680024401, + "546": -0.2802867533, + "547": -0.2876767872, + "548": -0.2950668211, + "549": -0.2975334105, + "550": -0.3, + "551": -0.2975334105, + "552": -0.2950668211, + "553": -0.2876767872, + "554": -0.2802867533, + "555": -0.2680024401, + "556": -0.2557181268, + "557": -0.2385880148, + "558": -0.2214579028, + "559": -0.1995495968, + "560": -0.1776412907, + "561": -0.1510412527, + "562": -0.1244412147, + "563": -0.0932544229, + "564": -0.0620676312, + "565": -0.0264171656, + "566": 0.0092332999, + "567": 0.0492067431, + "568": 0.0891801862, + "569": 0.1333188502, + "570": 0.1774575141, + "571": 0.2255872036, + "572": 0.2737168931, + "573": 0.3256476623, + "574": 0.3775784314, + "575": 0.4331053333, + "576": 0.4886322352, + "577": 0.5475361304, + "578": 0.6064400256, + "579": 0.6684884474, + "580": 0.7305368693, + "581": 0.7954849409, + "582": 0.8604330126, + "583": 0.9280244136, + "584": 0.9956158147, + "585": 1.0655837929, + "586": 1.1355517711, + "587": 1.2076201947, + "588": 1.2796886183, + "589": 1.3535730662, + "590": 1.4274575141, + "591": 1.5028663981, + "592": 1.5782752821, + "593": 1.6549109978, + "594": 1.7315467135, + "595": 1.8091068148, + "596": 1.8866669161, + "597": 1.9648453086, + "598": 2.0430237012, + "599": 2.1215118506, + "600": 2.2, + "601": 2.2784881494, + "602": 2.3569762988, + "603": 2.4351546914, + "604": 2.5133330839, + "605": 2.5908931852, + "606": 2.6684532865, + "607": 2.7450890022, + "608": 2.8217247179, + "609": 2.8971336019, + "610": 2.9725424859, + "611": 3.0464269338, + "612": 3.1203113817, + "613": 3.1923798053, + "614": 3.2644482289, + "615": 3.3344162071, + "616": 3.4043841853, + "617": 3.4719755864, + "618": 3.5395669874, + "619": 3.6045150591, + "620": 3.6694631307, + "621": 3.7315115526, + "622": 3.7935599744, + "623": 3.8524638696, + "624": 3.9113677648, + "625": 3.9668946667, + "626": 4.0224215686, + "627": 4.0743523377, + "628": 4.1262831069, + "629": 4.1744127964, + "630": 4.2225424859, + "631": 4.2666811498, + "632": 4.3108198138, + "633": 4.3507932569, + "634": 4.3907667001, + "635": 4.4264171656, + "636": 4.4620676312, + "637": 4.4932544229, + "638": 4.5244412147, + "639": 4.5510412527, + "640": 4.5776412907, + "641": 4.5995495968, + "642": 4.6214579028, + "643": 4.6385880148, + "644": 4.6557181268, + "645": 4.6680024401, + "646": 4.6802867533, + "647": 4.6876767872, + "648": 4.6950668211, + "649": 4.6975334105, + "650": 4.7, + "651": 4.6975334105, + "652": 4.6950668211, + "653": 4.6876767872, + "654": 4.6802867533, + "655": 4.6680024401, + "656": 4.6557181268, + "657": 4.6385880148, + "658": 4.6214579028, + "659": 4.5995495968, + "660": 4.5776412907, + "661": 4.5510412527, + "662": 4.5244412147, + "663": 4.4932544229, + "664": 4.4620676312, + "665": 4.4264171656, + "666": 4.3907667001, + "667": 4.3507932569, + "668": 4.3108198138, + "669": 4.2666811498, + "670": 4.2225424859, + "671": 4.1744127964, + "672": 4.1262831069, + "673": 4.0743523377, + "674": 4.0224215686, + "675": 3.9668946667, + "676": 3.9113677648, + "677": 3.8524638696, + "678": 3.7935599744, + "679": 3.7315115526, + "680": 3.6694631307, + "681": 3.6045150591, + "682": 3.5395669874, + "683": 3.4719755864, + "684": 3.4043841853, + "685": 3.3344162071, + "686": 3.2644482289, + "687": 3.1923798053, + "688": 3.1203113817, + "689": 3.0464269338, + "690": 2.9725424859, + "691": 2.8971336019, + "692": 2.8217247179, + "693": 2.7450890022, + "694": 2.6684532865, + "695": 2.5908931852, + "696": 2.5133330839, + "697": 2.4351546914, + "698": 2.3569762988, + "699": 2.2784881494, + "700": 2.2, + "701": 2.1215118506, + "702": 2.0430237012, + "703": 1.9648453086, + "704": 1.8866669161, + "705": 1.8091068148, + "706": 1.7315467135, + "707": 1.6549109978, + "708": 1.5782752821, + "709": 1.5028663981, + "710": 1.4274575141, + "711": 1.3535730662, + "712": 1.2796886183, + "713": 1.2076201947, + "714": 1.1355517711, + "715": 1.0655837929, + "716": 0.9956158147, + "717": 0.9280244136, + "718": 0.8604330126, + "719": 0.7954849409, + "720": 0.7305368693, + "721": 0.6684884474, + "722": 0.6064400256, + "723": 0.5475361304, + "724": 0.4886322352, + "725": 0.4331053333, + "726": 0.3775784314, + "727": 0.3256476623, + "728": 0.2737168931, + "729": 0.2255872036, + "730": 0.1774575141, + "731": 0.1333188502, + "732": 0.0891801862, + "733": 0.0492067431, + "734": 0.0092332999, + "735": -0.0264171656, + "736": -0.0620676312, + "737": -0.0932544229, + "738": -0.1244412147, + "739": -0.1510412527, + "740": -0.1776412907, + "741": -0.1995495968, + "742": -0.2214579028, + "743": -0.2385880148, + "744": -0.2557181268, + "745": -0.2680024401, + "746": -0.2802867533, + "747": -0.2876767872, + "748": -0.2950668211, + "749": -0.2975334105, + "750": -0.3, + "751": -0.2975334105, + "752": -0.2950668211, + "753": -0.2876767872, + "754": -0.2802867533, + "755": -0.2680024401, + "756": -0.2557181268, + "757": -0.2385880148, + "758": -0.2214579028, + "759": -0.1995495968, + "760": -0.1776412907, + "761": -0.1510412527, + "762": -0.1244412147, + "763": -0.0932544229, + "764": -0.0620676312, + "765": -0.0264171656, + "766": 0.0092332999, + "767": 0.0492067431, + "768": 0.0891801862, + "769": 0.1333188502, + "770": 0.1774575141, + "771": 0.2255872036, + "772": 0.2737168931, + "773": 0.3256476623, + "774": 0.3775784314, + "775": 0.4331053333, + "776": 0.4886322352, + "777": 0.5475361304, + "778": 0.6064400256, + "779": 0.6684884474, + "780": 0.7305368693, + "781": 0.7954849409, + "782": 0.8604330126, + "783": 0.9280244136, + "784": 0.9956158147, + "785": 1.0655837929, + "786": 1.1355517711, + "787": 1.2076201947, + "788": 1.2796886183, + "789": 1.3535730662, + "790": 1.4274575141, + "791": 1.5028663981, + "792": 1.5782752821, + "793": 1.6549109978, + "794": 1.7315467135, + "795": 1.8091068148, + "796": 1.8866669161, + "797": 1.9648453086, + "798": 2.0430237012, + "799": 2.1215118506, + "800": 2.2, + "801": 2.2784881494, + "802": 2.3569762988, + "803": 2.4351546914, + "804": 2.5133330839, + "805": 2.5908931852, + "806": 2.6684532865, + "807": 2.7450890022, + "808": 2.8217247179, + "809": 2.8971336019, + "810": 2.9725424859, + "811": 3.0464269338, + "812": 3.1203113817, + "813": 3.1923798053, + "814": 3.2644482289, + "815": 3.3344162071, + "816": 3.4043841853, + "817": 3.4719755864, + "818": 3.5395669874, + "819": 3.6045150591, + "820": 3.6694631307, + "821": 3.7315115526, + "822": 3.7935599744, + "823": 3.8524638696, + "824": 3.9113677648, + "825": 3.9668946667, + "826": 4.0224215686, + "827": 4.0743523377, + "828": 4.1262831069, + "829": 4.1744127964, + "830": 4.2225424859, + "831": 4.2666811498, + "832": 4.3108198138, + "833": 4.3507932569, + "834": 4.3907667001, + "835": 4.4264171656, + "836": 4.4620676312, + "837": 4.4932544229, + "838": 4.5244412147, + "839": 4.5510412527, + "840": 4.5776412907, + "841": 4.5995495968, + "842": 4.6214579028, + "843": 4.6385880148, + "844": 4.6557181268, + "845": 4.6680024401, + "846": 4.6802867533, + "847": 4.6876767872, + "848": 4.6950668211, + "849": 4.6975334105, + "850": 4.7, + "851": 4.6975334105, + "852": 4.6950668211, + "853": 4.6876767872, + "854": 4.6802867533, + "855": 4.6680024401, + "856": 4.6557181268, + "857": 4.6385880148, + "858": 4.6214579028, + "859": 4.5995495968, + "860": 4.5776412907, + "861": 4.5510412527, + "862": 4.5244412147, + "863": 4.4932544229, + "864": 4.4620676312, + "865": 4.4264171656, + "866": 4.3907667001, + "867": 4.3507932569, + "868": 4.3108198138, + "869": 4.2666811498, + "870": 4.2225424859, + "871": 4.1744127964, + "872": 4.1262831069, + "873": 4.0743523377, + "874": 4.0224215686, + "875": 3.9668946667, + "876": 3.9113677648, + "877": 3.8524638696, + "878": 3.7935599744, + "879": 3.7315115526, + "880": 3.6694631307, + "881": 3.6045150591, + "882": 3.5395669874, + "883": 3.4719755864, + "884": 3.4043841853, + "885": 3.3344162071, + "886": 3.2644482289, + "887": 3.1923798053, + "888": 3.1203113817, + "889": 3.0464269338, + "890": 2.9725424859, + "891": 2.8971336019, + "892": 2.8217247179, + "893": 2.7450890022, + "894": 2.6684532865, + "895": 2.5908931852, + "896": 2.5133330839, + "897": 2.4351546914, + "898": 2.3569762988, + "899": 2.2784881494, + "900": 2.2, + "901": 2.1215118506, + "902": 2.0430237012, + "903": 1.9648453086, + "904": 1.8866669161, + "905": 1.8091068148, + "906": 1.7315467135, + "907": 1.6549109978, + "908": 1.5782752821, + "909": 1.5028663981, + "910": 1.4274575141, + "911": 1.3535730662, + "912": 1.2796886183, + "913": 1.2076201947, + "914": 1.1355517711, + "915": 1.0655837929, + "916": 0.9956158147, + "917": 0.9280244136, + "918": 0.8604330126, + "919": 0.7954849409, + "920": 0.7305368693, + "921": 0.6684884474, + "922": 0.6064400256, + "923": 0.5475361304, + "924": 0.4886322352, + "925": 0.4331053333, + "926": 0.3775784314, + "927": 0.3256476623, + "928": 0.2737168931, + "929": 0.2255872036, + "930": 0.1774575141, + "931": 0.1333188502, + "932": 0.0891801862, + "933": 0.0492067431, + "934": 0.0092332999, + "935": -0.0264171656, + "936": -0.0620676312, + "937": -0.0932544229, + "938": -0.1244412147, + "939": -0.1510412527, + "940": -0.1776412907, + "941": -0.1995495968, + "942": -0.2214579028, + "943": -0.2385880148, + "944": -0.2557181268, + "945": -0.2680024401, + "946": -0.2802867533, + "947": -0.2876767872, + "948": -0.2950668211, + "949": -0.2975334105, + "950": -0.3, + "951": -0.2975334105, + "952": -0.2950668211, + "953": -0.2876767872, + "954": -0.2802867533, + "955": -0.2680024401, + "956": -0.2557181268, + "957": -0.2385880148, + "958": -0.2214579028, + "959": -0.1995495968, + "960": -0.1776412907, + "961": -0.1510412527, + "962": -0.1244412147, + "963": -0.0932544229, + "964": -0.0620676312, + "965": -0.0264171656, + "966": 0.0092332999, + "967": 0.0492067431, + "968": 0.0891801862, + "969": 0.1333188502, + "970": 0.1774575141, + "971": 0.2255872036, + "972": 0.2737168931, + "973": 0.3256476623, + "974": 0.3775784314, + "975": 0.4331053333, + "976": 0.4886322352, + "977": 0.5475361304, + "978": 0.6064400256, + "979": 0.6684884474, + "980": 0.7305368693, + "981": 0.7954849409, + "982": 0.8604330126, + "983": 0.9280244136, + "984": 0.9956158147, + "985": 1.0655837929, + "986": 1.1355517711, + "987": 1.2076201947, + "988": 1.2796886183, + "989": 1.3535730662, + "990": 1.4274575141, + "991": 1.5028663981, + "992": 1.5782752821, + "993": 1.6549109978, + "994": 1.7315467135, + "995": 1.8091068148, + "996": 1.8866669161, + "997": 1.9648453086, + "998": 2.0430237012, + "999": 2.1215118506, + "1000": 2.2, + "1001": 2.2784881494, + "1002": 2.3569762988, + "1003": 2.4351546914, + "1004": 2.5133330839, + "1005": 2.5908931852, + "1006": 2.6684532865, + "1007": 2.7450890022, + "1008": 2.8217247179, + "1009": 2.8971336019, + "1010": 2.9725424859, + "1011": 3.0464269338, + "1012": 3.1203113817, + "1013": 3.1923798053, + "1014": 3.2644482289, + "1015": 3.3344162071, + "1016": 3.4043841853, + "1017": 3.4719755864, + "1018": 3.5395669874, + "1019": 3.6045150591, + "1020": 3.6694631307, + "1021": 3.7315115526, + "1022": 3.7935599744, + "1023": 3.8524638696, + "1024": 3.9113677648, + "1025": 3.9668946667, + "1026": 4.0224215686, + "1027": 4.0743523377, + "1028": 4.1262831069, + "1029": 4.1744127964, + "1030": 4.2225424859, + "1031": 4.2666811498, + "1032": 4.3108198138, + "1033": 4.3507932569, + "1034": 4.3907667001, + "1035": 4.4264171656, + "1036": 4.4620676312, + "1037": 4.4932544229, + "1038": 4.5244412147, + "1039": 4.5510412527, + "1040": 4.5776412907, + "1041": 4.5995495968, + "1042": 4.6214579028, + "1043": 4.6385880148, + "1044": 4.6557181268, + "1045": 4.6680024401, + "1046": 4.6802867533, + "1047": 4.6876767872, + "1048": 4.6950668211, + "1049": 4.6975334105, + "1050": 4.7, + "1051": 4.6975334105, + "1052": 4.6950668211, + "1053": 4.6876767872, + "1054": 4.6802867533, + "1055": 4.6680024401, + "1056": 4.6557181268, + "1057": 4.6385880148, + "1058": 4.6214579028, + "1059": 4.5995495968, + "1060": 4.5776412907, + "1061": 4.5510412527, + "1062": 4.5244412147, + "1063": 4.4932544229, + "1064": 4.4620676312, + "1065": 4.4264171656, + "1066": 4.3907667001, + "1067": 4.3507932569, + "1068": 4.3108198138, + "1069": 4.2666811498, + "1070": 4.2225424859, + "1071": 4.1744127964, + "1072": 4.1262831069, + "1073": 4.0743523377, + "1074": 4.0224215686, + "1075": 3.9668946667, + "1076": 3.9113677648, + "1077": 3.8524638696, + "1078": 3.7935599744, + "1079": 3.7315115526, + "1080": 3.6694631307, + "1081": 3.6045150591, + "1082": 3.5395669874, + "1083": 3.4719755864, + "1084": 3.4043841853, + "1085": 3.3344162071, + "1086": 3.2644482289, + "1087": 3.1923798053, + "1088": 3.1203113817, + "1089": 3.0464269338, + "1090": 2.9725424859, + "1091": 2.8971336019, + "1092": 2.8217247179, + "1093": 2.7450890022, + "1094": 2.6684532865, + "1095": 2.5908931852, + "1096": 2.5133330839, + "1097": 2.4351546914, + "1098": 2.3569762988, + "1099": 2.2784881494, + "1100": 2.2, + "1101": 2.1215118506, + "1102": 2.0430237012, + "1103": 1.9648453086, + "1104": 1.8866669161, + "1105": 1.8091068148, + "1106": 1.7315467135, + "1107": 1.6549109978, + "1108": 1.5782752821, + "1109": 1.5028663981, + "1110": 1.4274575141, + "1111": 1.3535730662, + "1112": 1.2796886183, + "1113": 1.2076201947, + "1114": 1.1355517711, + "1115": 1.0655837929, + "1116": 0.9956158147, + "1117": 0.9280244136, + "1118": 0.8604330126, + "1119": 0.7954849409, + "1120": 0.7305368693, + "1121": 0.6684884474, + "1122": 0.6064400256, + "1123": 0.5475361304, + "1124": 0.4886322352, + "1125": 0.4331053333, + "1126": 0.3775784314, + "1127": 0.3256476623, + "1128": 0.2737168931, + "1129": 0.2255872036, + "1130": 0.1774575141, + "1131": 0.1333188502, + "1132": 0.0891801862, + "1133": 0.0492067431, + "1134": 0.0092332999, + "1135": -0.0264171656, + "1136": -0.0620676312, + "1137": -0.0932544229, + "1138": -0.1244412147, + "1139": -0.1510412527, + "1140": -0.1776412907, + "1141": -0.1995495968, + "1142": -0.2214579028, + "1143": -0.2385880148, + "1144": -0.2557181268, + "1145": -0.2680024401, + "1146": -0.2802867533, + "1147": -0.2876767872, + "1148": -0.2950668211, + "1149": -0.2975334105, + "1150": -0.3, + "1151": -0.2975334105, + "1152": -0.2950668211, + "1153": -0.2876767872, + "1154": -0.2802867533, + "1155": -0.2680024401, + "1156": -0.2557181268, + "1157": -0.2385880148, + "1158": -0.2214579028, + "1159": -0.1995495968, + "1160": -0.1776412907, + "1161": -0.1510412527, + "1162": -0.1244412147, + "1163": -0.0932544229, + "1164": -0.0620676312, + "1165": -0.0264171656, + "1166": 0.0092332999, + "1167": 0.0492067431, + "1168": 0.0891801862, + "1169": 0.1333188502, + "1170": 0.1774575141, + "1171": 0.2255872036, + "1172": 0.2737168931, + "1173": 0.3256476623, + "1174": 0.3775784314, + "1175": 0.4331053333, + "1176": 0.4886322352, + "1177": 0.5475361304, + "1178": 0.6064400256, + "1179": 0.6684884474, + "1180": 0.7305368693, + "1181": 0.7954849409, + "1182": 0.8604330126, + "1183": 0.9280244136, + "1184": 0.9956158147, + "1185": 1.0655837929, + "1186": 1.1355517711, + "1187": 1.2076201947, + "1188": 1.2796886183, + "1189": 1.3535730662, + "1190": 1.4274575141, + "1191": 1.5028663981, + "1192": 1.5782752821, + "1193": 1.6549109978, + "1194": 1.7315467135, + "1195": 1.8091068148, + "1196": 1.8866669161, + "1197": 1.9648453086, + "1198": 2.0430237012, + "1199": 2.1215118506, + "1200": 2.2, + "1201": 2.2784881494, + "1202": 2.3569762988, + "1203": 2.4351546914, + "1204": 2.5133330839, + "1205": 2.5908931852, + "1206": 2.6684532865, + "1207": 2.7450890022, + "1208": 2.8217247179, + "1209": 2.8971336019, + "1210": 2.9725424859, + "1211": 3.0464269338, + "1212": 3.1203113817, + "1213": 3.1923798053, + "1214": 3.2644482289, + "1215": 3.3344162071, + "1216": 3.4043841853, + "1217": 3.4719755864, + "1218": 3.5395669874, + "1219": 3.6045150591, + "1220": 3.6694631307, + "1221": 3.7315115526, + "1222": 3.7935599744, + "1223": 3.8524638696, + "1224": 3.9113677648, + "1225": 3.9668946667, + "1226": 4.0224215686, + "1227": 4.0743523377, + "1228": 4.1262831069, + "1229": 4.1744127964, + "1230": 4.2225424859, + "1231": 4.2666811498, + "1232": 4.3108198138, + "1233": 4.3507932569, + "1234": 4.3907667001, + "1235": 4.4264171656, + "1236": 4.4620676312, + "1237": 4.4932544229, + "1238": 4.5244412147, + "1239": 4.5510412527, + "1240": 4.5776412907, + "1241": 4.5995495968, + "1242": 4.6214579028, + "1243": 4.6385880148, + "1244": 4.6557181268, + "1245": 4.6680024401, + "1246": 4.6802867533, + "1247": 4.6876767872, + "1248": 4.6950668211, + "1249": 4.6975334105, + "1250": 4.7, + "1251": 4.6975334105, + "1252": 4.6950668211, + "1253": 4.6876767872, + "1254": 4.6802867533, + "1255": 4.6680024401, + "1256": 4.6557181268, + "1257": 4.6385880148, + "1258": 4.6214579028, + "1259": 4.5995495968, + "1260": 4.5776412907, + "1261": 4.5510412527, + "1262": 4.5244412147, + "1263": 4.4932544229, + "1264": 4.4620676312, + "1265": 4.4264171656, + "1266": 4.3907667001, + "1267": 4.3507932569, + "1268": 4.3108198138, + "1269": 4.2666811498, + "1270": 4.2225424859, + "1271": 4.1744127964, + "1272": 4.1262831069, + "1273": 4.0743523377, + "1274": 4.0224215686, + "1275": 3.9668946667, + "1276": 3.9113677648, + "1277": 3.8524638696, + "1278": 3.7935599744, + "1279": 3.7315115526, + "1280": 3.6694631307, + "1281": 3.6045150591, + "1282": 3.5395669874, + "1283": 3.4719755864, + "1284": 3.4043841853, + "1285": 3.3344162071, + "1286": 3.2644482289, + "1287": 3.1923798053, + "1288": 3.1203113817, + "1289": 3.0464269338, + "1290": 2.9725424859, + "1291": 2.8971336019, + "1292": 2.8217247179, + "1293": 2.7450890022, + "1294": 2.6684532865, + "1295": 2.5908931852, + "1296": 2.5133330839, + "1297": 2.4351546914, + "1298": 2.3569762988, + "1299": 2.2784881494, + "1300": 2.2, + "1301": 2.1215118506, + "1302": 2.0430237012, + "1303": 1.9648453086, + "1304": 1.8866669161, + "1305": 1.8091068148, + "1306": 1.7315467135, + "1307": 1.6549109978, + "1308": 1.5782752821, + "1309": 1.5028663981, + "1310": 1.4274575141, + "1311": 1.3535730662, + "1312": 1.2796886183, + "1313": 1.2076201947, + "1314": 1.1355517711, + "1315": 1.0655837929, + "1316": 0.9956158147, + "1317": 0.9280244136, + "1318": 0.8604330126, + "1319": 0.7954849409, + "1320": 0.7305368693, + "1321": 0.6684884474, + "1322": 0.6064400256, + "1323": 0.5475361304, + "1324": 0.4886322352, + "1325": 0.4331053333, + "1326": 0.3775784314, + "1327": 0.3256476623, + "1328": 0.2737168931, + "1329": 0.2255872036, + "1330": 0.1774575141, + "1331": 0.1333188502, + "1332": 0.0891801862, + "1333": 0.0492067431, + "1334": 0.0092332999, + "1335": -0.0264171656, + "1336": -0.0620676312, + "1337": -0.0932544229, + "1338": -0.1244412147, + "1339": -0.1510412527, + "1340": -0.1776412907, + "1341": -0.1995495968, + "1342": -0.2214579028, + "1343": -0.2385880148, + "1344": -0.2557181268, + "1345": -0.2680024401, + "1346": -0.2802867533, + "1347": -0.2876767872, + "1348": -0.2950668211, + "1349": -0.2975334105, + "1350": -0.3, + "1351": -0.2975334105, + "1352": -0.2950668211, + "1353": -0.2876767872, + "1354": -0.2802867533, + "1355": -0.2680024401, + "1356": -0.2557181268, + "1357": -0.2385880148, + "1358": -0.2214579028, + "1359": -0.1995495968, + "1360": -0.1776412907, + "1361": -0.1510412527, + "1362": -0.1244412147, + "1363": -0.0932544229, + "1364": -0.0620676312, + "1365": -0.0264171656, + "1366": 0.0092332999, + "1367": 0.0492067431, + "1368": 0.0891801862, + "1369": 0.1333188502, + "1370": 0.1774575141, + "1371": 0.2255872036, + "1372": 0.2737168931, + "1373": 0.3256476623, + "1374": 0.3775784314, + "1375": 0.4331053333, + "1376": 0.4886322352, + "1377": 0.5475361304, + "1378": 0.6064400256, + "1379": 0.6684884474, + "1380": 0.7305368693, + "1381": 0.7954849409, + "1382": 0.8604330126, + "1383": 0.9280244136, + "1384": 0.9956158147, + "1385": 1.0655837929, + "1386": 1.1355517711, + "1387": 1.2076201947, + "1388": 1.2796886183, + "1389": 1.3535730662, + "1390": 1.4274575141, + "1391": 1.5028663981, + "1392": 1.5782752821, + "1393": 1.6549109978, + "1394": 1.7315467135, + "1395": 1.8091068148, + "1396": 1.8866669161, + "1397": 1.9648453086, + "1398": 2.0430237012, + "1399": 2.1215118506, + "1400": 2.2, + "1401": 2.2784881494, + "1402": 2.3569762988, + "1403": 2.4351546914, + "1404": 2.5133330839, + "1405": 2.5908931852, + "1406": 2.6684532865, + "1407": 2.7450890022, + "1408": 2.8217247179, + "1409": 2.8971336019, + "1410": 2.9725424859, + "1411": 3.0464269338, + "1412": 3.1203113817, + "1413": 3.1923798053, + "1414": 3.2644482289, + "1415": 3.3344162071, + "1416": 3.4043841853, + "1417": 3.4719755864, + "1418": 3.5395669874, + "1419": 3.6045150591, + "1420": 3.6694631307, + "1421": 3.7315115526, + "1422": 3.7935599744, + "1423": 3.8524638696, + "1424": 3.9113677648, + "1425": 3.9668946667, + "1426": 4.0224215686, + "1427": 4.0743523377, + "1428": 4.1262831069, + "1429": 4.1744127964, + "1430": 4.2225424859, + "1431": 4.2666811498, + "1432": 4.3108198138, + "1433": 4.3507932569, + "1434": 4.3907667001, + "1435": 4.4264171656, + "1436": 4.4620676312, + "1437": 4.4932544229, + "1438": 4.5244412147, + "1439": 4.5510412527, + "1440": 4.5776412907, + "1441": 4.5995495968, + "1442": 4.6214579028, + "1443": 4.6385880148, + "1444": 4.6557181268, + "1445": 4.6680024401, + "1446": 4.6802867533, + "1447": 4.6876767872, + "1448": 4.6950668211, + "1449": 4.6975334105, + "1450": 4.7, + "1451": 4.6975334105, + "1452": 4.6950668211, + "1453": 4.6876767872, + "1454": 4.6802867533, + "1455": 4.6680024401, + "1456": 4.6557181268, + "1457": 4.6385880148, + "1458": 4.6214579028, + "1459": 4.5995495968, + "1460": 4.5776412907, + "1461": 4.5510412527, + "1462": 4.5244412147, + "1463": 4.4932544229, + "1464": 4.4620676312, + "1465": 4.4264171656, + "1466": 4.3907667001, + "1467": 4.3507932569, + "1468": 4.3108198138, + "1469": 4.2666811498, + "1470": 4.2225424859, + "1471": 4.1744127964, + "1472": 4.1262831069, + "1473": 4.0743523377, + "1474": 4.0224215686, + "1475": 3.9668946667, + "1476": 3.9113677648, + "1477": 3.8524638696, + "1478": 3.7935599744, + "1479": 3.7315115526, + "1480": 3.6694631307, + "1481": 3.6045150591, + "1482": 3.5395669874, + "1483": 3.4719755864, + "1484": 3.4043841853, + "1485": 3.3344162071, + "1486": 3.2644482289, + "1487": 3.1923798053, + "1488": 3.1203113817, + "1489": 3.0464269338, + "1490": 2.9725424859, + "1491": 2.8971336019, + "1492": 2.8217247179, + "1493": 2.7450890022, + "1494": 2.6684532865, + "1495": 2.5908931852, + "1496": 2.5133330839, + "1497": 2.4351546914, + "1498": 2.3569762988, + "1499": 2.2784881494, + "1500": 2.2, + "1501": 2.1215118506, + "1502": 2.0430237012, + "1503": 1.9648453086, + "1504": 1.8866669161, + "1505": 1.8091068148, + "1506": 1.7315467135, + "1507": 1.6549109978, + "1508": 1.5782752821, + "1509": 1.5028663981, + "1510": 1.4274575141, + "1511": 1.3535730662, + "1512": 1.2796886183, + "1513": 1.2076201947, + "1514": 1.1355517711, + "1515": 1.0655837929, + "1516": 0.9956158147, + "1517": 0.9280244136, + "1518": 0.8604330126, + "1519": 0.7954849409, + "1520": 0.7305368693, + "1521": 0.6684884474, + "1522": 0.6064400256, + "1523": 0.5475361304, + "1524": 0.4886322352, + "1525": 0.4331053333, + "1526": 0.3775784314, + "1527": 0.3256476623, + "1528": 0.2737168931, + "1529": 0.2255872036, + "1530": 0.1774575141, + "1531": 0.1333188502, + "1532": 0.0891801862, + "1533": 0.0492067431, + "1534": 0.0092332999, + "1535": -0.0264171656, + "1536": -0.0620676312, + "1537": -0.0932544229, + "1538": -0.1244412147, + "1539": -0.1510412527, + "1540": -0.1776412907, + "1541": -0.1995495968, + "1542": -0.2214579028, + "1543": -0.2385880148, + "1544": -0.2557181268, + "1545": -0.2680024401, + "1546": -0.2802867533, + "1547": -0.2876767872, + "1548": -0.2950668211, + "1549": -0.2975334105, + "1550": -0.3, + "1551": -0.2975334105, + "1552": -0.2950668211, + "1553": -0.2876767872, + "1554": -0.2802867533, + "1555": -0.2680024401, + "1556": -0.2557181268, + "1557": -0.2385880148, + "1558": -0.2214579028, + "1559": -0.1995495968, + "1560": -0.1776412907, + "1561": -0.1510412527, + "1562": -0.1244412147, + "1563": -0.0932544229, + "1564": -0.0620676312, + "1565": -0.0264171656, + "1566": 0.0092332999, + "1567": 0.0492067431, + "1568": 0.0891801862, + "1569": 0.1333188502, + "1570": 0.1774575141, + "1571": 0.2255872036, + "1572": 0.2737168931, + "1573": 0.3256476623, + "1574": 0.3775784314, + "1575": 0.4331053333, + "1576": 0.4886322352, + "1577": 0.5475361304, + "1578": 0.6064400256, + "1579": 0.6684884474, + "1580": 0.7305368693, + "1581": 0.7954849409, + "1582": 0.8604330126, + "1583": 0.9280244136, + "1584": 0.9956158147, + "1585": 1.0655837929, + "1586": 1.1355517711, + "1587": 1.2076201947, + "1588": 1.2796886183, + "1589": 1.3535730662, + "1590": 1.4274575141, + "1591": 1.5028663981, + "1592": 1.5782752821, + "1593": 1.6549109978, + "1594": 1.7315467135, + "1595": 1.8091068148, + "1596": 1.8866669161, + "1597": 1.9648453086, + "1598": 2.0430237012, + "1599": 2.1215118506, + "1600": 2.2, + "1601": 2.2784881494, + "1602": 2.3569762988, + "1603": 2.4351546914, + "1604": 2.5133330839, + "1605": 2.5908931852, + "1606": 2.6684532865, + "1607": 2.7450890022, + "1608": 2.8217247179, + "1609": 2.8971336019, + "1610": 2.9725424859, + "1611": 3.0464269338, + "1612": 3.1203113817, + "1613": 3.1923798053, + "1614": 3.2644482289, + "1615": 3.3344162071, + "1616": 3.4043841853, + "1617": 3.4719755864, + "1618": 3.5395669874, + "1619": 3.6045150591, + "1620": 3.6694631307, + "1621": 3.7315115526, + "1622": 3.7935599744, + "1623": 3.8524638696, + "1624": 3.9113677648, + "1625": 3.9668946667, + "1626": 4.0224215686, + "1627": 4.0743523377, + "1628": 4.1262831069, + "1629": 4.1744127964, + "1630": 4.2225424859, + "1631": 4.2666811498, + "1632": 4.3108198138, + "1633": 4.3507932569, + "1634": 4.3907667001, + "1635": 4.4264171656, + "1636": 4.4620676312, + "1637": 4.4932544229, + "1638": 4.5244412147, + "1639": 4.5510412527, + "1640": 4.5776412907, + "1641": 4.5995495968, + "1642": 4.6214579028, + "1643": 4.6385880148, + "1644": 4.6557181268, + "1645": 4.6680024401, + "1646": 4.6802867533, + "1647": 4.6876767872, + "1648": 4.6950668211, + "1649": 4.6975334105, + "1650": 4.7, + "1651": 4.6975334105, + "1652": 4.6950668211, + "1653": 4.6876767872, + "1654": 4.6802867533, + "1655": 4.6680024401, + "1656": 4.6557181268, + "1657": 4.6385880148, + "1658": 4.6214579028, + "1659": 4.5995495968, + "1660": 4.5776412907, + "1661": 4.5510412527, + "1662": 4.5244412147, + "1663": 4.4932544229, + "1664": 4.4620676312, + "1665": 4.4264171656, + "1666": 4.3907667001, + "1667": 4.3507932569, + "1668": 4.3108198138, + "1669": 4.2666811498, + "1670": 4.2225424859, + "1671": 4.1744127964, + "1672": 4.1262831069, + "1673": 4.0743523377, + "1674": 4.0224215686, + "1675": 3.9668946667, + "1676": 3.9113677648, + "1677": 3.8524638696, + "1678": 3.7935599744, + "1679": 3.7315115526, + "1680": 3.6694631307, + "1681": 3.6045150591, + "1682": 3.5395669874, + "1683": 3.4719755864, + "1684": 3.4043841853, + "1685": 3.3344162071, + "1686": 3.2644482289, + "1687": 3.1923798053, + "1688": 3.1203113817, + "1689": 3.0464269338, + "1690": 2.9725424859, + "1691": 2.8971336019, + "1692": 2.8217247179, + "1693": 2.7450890022, + "1694": 2.6684532865, + "1695": 2.5908931852, + "1696": 2.5133330839, + "1697": 2.4351546914, + "1698": 2.3569762988, + "1699": 2.2784881494, + "1700": 2.2, + "1701": 2.1215118506, + "1702": 2.0430237012, + "1703": 1.9648453086, + "1704": 1.8866669161, + "1705": 1.8091068148, + "1706": 1.7315467135, + "1707": 1.6549109978, + "1708": 1.5782752821, + "1709": 1.5028663981, + "1710": 1.4274575141, + "1711": 1.3535730662, + "1712": 1.2796886183, + "1713": 1.2076201947, + "1714": 1.1355517711, + "1715": 1.0655837929, + "1716": 0.9956158147, + "1717": 0.9280244136, + "1718": 0.8604330126, + "1719": 0.7954849409, + "1720": 0.7305368693, + "1721": 0.6684884474, + "1722": 0.6064400256, + "1723": 0.5475361304, + "1724": 0.4886322352, + "1725": 0.4331053333, + "1726": 0.3775784314, + "1727": 0.3256476623, + "1728": 0.2737168931, + "1729": 0.2255872036, + "1730": 0.1774575141, + "1731": 0.1333188502, + "1732": 0.0891801862, + "1733": 0.0492067431, + "1734": 0.0092332999, + "1735": -0.0264171656, + "1736": -0.0620676312, + "1737": -0.0932544229, + "1738": -0.1244412147, + "1739": -0.1510412527, + "1740": -0.1776412907, + "1741": -0.1995495968, + "1742": -0.2214579028, + "1743": -0.2385880148, + "1744": -0.2557181268, + "1745": -0.2680024401, + "1746": -0.2802867533, + "1747": -0.2876767872, + "1748": -0.2950668211, + "1749": -0.2975334105, + "1750": -0.3, + "1751": -0.2975334105, + "1752": -0.2950668211, + "1753": -0.2876767872, + "1754": -0.2802867533, + "1755": -0.2680024401, + "1756": -0.2557181268, + "1757": -0.2385880148, + "1758": -0.2214579028, + "1759": -0.1995495968, + "1760": -0.1776412907, + "1761": -0.1510412527, + "1762": -0.1244412147, + "1763": -0.0932544229, + "1764": -0.0620676312, + "1765": -0.0264171656, + "1766": 0.0092332999, + "1767": 0.0492067431, + "1768": 0.0891801862, + "1769": 0.1333188502, + "1770": 0.1774575141, + "1771": 0.2255872036, + "1772": 0.2737168931, + "1773": 0.3256476623, + "1774": 0.3775784314, + "1775": 0.4331053333, + "1776": 0.4886322352, + "1777": 0.5475361304, + "1778": 0.6064400256, + "1779": 0.6684884474, + "1780": 0.7305368693, + "1781": 0.7954849409, + "1782": 0.8604330126, + "1783": 0.9280244136, + "1784": 0.9956158147, + "1785": 1.0655837929, + "1786": 1.1355517711, + "1787": 1.2076201947, + "1788": 1.2796886183, + "1789": 1.3535730662, + "1790": 1.4274575141, + "1791": 1.5028663981, + "1792": 1.5782752821, + "1793": 1.6549109978, + "1794": 1.7315467135, + "1795": 1.8091068148, + "1796": 1.8866669161, + "1797": 1.9648453086, + "1798": 2.0430237012, + "1799": 2.1215118506, + "1800": 2.2, + "1801": 2.2784881494, + "1802": 2.3569762988, + "1803": 2.4351546914, + "1804": 2.5133330839, + "1805": 2.5908931852, + "1806": 2.6684532865, + "1807": 2.7450890022, + "1808": 2.8217247179, + "1809": 2.8971336019, + "1810": 2.9725424859, + "1811": 3.0464269338, + "1812": 3.1203113817, + "1813": 3.1923798053, + "1814": 3.2644482289, + "1815": 3.3344162071, + "1816": 3.4043841853, + "1817": 3.4719755864, + "1818": 3.5395669874, + "1819": 3.6045150591, + "1820": 3.6694631307, + "1821": 3.7315115526, + "1822": 3.7935599744, + "1823": 3.8524638696, + "1824": 3.9113677648, + "1825": 3.9668946667, + "1826": 4.0224215686, + "1827": 4.0743523377, + "1828": 4.1262831069, + "1829": 4.1744127964, + "1830": 4.2225424859, + "1831": 4.2666811498, + "1832": 4.3108198138, + "1833": 4.3507932569, + "1834": 4.3907667001, + "1835": 4.4264171656, + "1836": 4.4620676312, + "1837": 4.4932544229, + "1838": 4.5244412147, + "1839": 4.5510412527, + "1840": 4.5776412907, + "1841": 4.5995495968, + "1842": 4.6214579028, + "1843": 4.6385880148, + "1844": 4.6557181268, + "1845": 4.6680024401, + "1846": 4.6802867533, + "1847": 4.6876767872, + "1848": 4.6950668211, + "1849": 4.6975334105, + "1850": 4.7, + "1851": 4.6975334105, + "1852": 4.6950668211, + "1853": 4.6876767872, + "1854": 4.6802867533, + "1855": 4.6680024401, + "1856": 4.6557181268, + "1857": 4.6385880148, + "1858": 4.6214579028, + "1859": 4.5995495968, + "1860": 4.5776412907, + "1861": 4.5510412527, + "1862": 4.5244412147, + "1863": 4.4932544229, + "1864": 4.4620676312, + "1865": 4.4264171656, + "1866": 4.3907667001, + "1867": 4.3507932569, + "1868": 4.3108198138, + "1869": 4.2666811498, + "1870": 4.2225424859, + "1871": 4.1744127964, + "1872": 4.1262831069, + "1873": 4.0743523377, + "1874": 4.0224215686, + "1875": 3.9668946667, + "1876": 3.9113677648, + "1877": 3.8524638696, + "1878": 3.7935599744, + "1879": 3.7315115526, + "1880": 3.6694631307, + "1881": 3.6045150591, + "1882": 3.5395669874, + "1883": 3.4719755864, + "1884": 3.4043841853, + "1885": 3.3344162071, + "1886": 3.2644482289, + "1887": 3.1923798053, + "1888": 3.1203113817, + "1889": 3.0464269338, + "1890": 2.9725424859, + "1891": 2.8971336019, + "1892": 2.8217247179, + "1893": 2.7450890022, + "1894": 2.6684532865, + "1895": 2.5908931852, + "1896": 2.5133330839, + "1897": 2.4351546914, + "1898": 2.3569762988, + "1899": 2.2784881494, + "1900": 2.2, + "1901": 2.1215118506, + "1902": 2.0430237012, + "1903": 1.9648453086, + "1904": 1.8866669161, + "1905": 1.8091068148, + "1906": 1.7315467135, + "1907": 1.6549109978, + "1908": 1.5782752821, + "1909": 1.5028663981, + "1910": 1.4274575141, + "1911": 1.3535730662, + "1912": 1.2796886183, + "1913": 1.2076201947, + "1914": 1.1355517711, + "1915": 1.0655837929, + "1916": 0.9956158147, + "1917": 0.9280244136, + "1918": 0.8604330126, + "1919": 0.7954849409, + "1920": 0.7305368693, + "1921": 0.6684884474, + "1922": 0.6064400256, + "1923": 0.5475361304, + "1924": 0.4886322352, + "1925": 0.4331053333, + "1926": 0.3775784314, + "1927": 0.3256476623, + "1928": 0.2737168931, + "1929": 0.2255872036, + "1930": 0.1774575141, + "1931": 0.1333188502, + "1932": 0.0891801862, + "1933": 0.0492067431, + "1934": 0.0092332999, + "1935": -0.0264171656, + "1936": -0.0620676312, + "1937": -0.0932544229, + "1938": -0.1244412147, + "1939": -0.1510412527, + "1940": -0.1776412907, + "1941": -0.1995495968, + "1942": -0.2214579028, + "1943": -0.2385880148, + "1944": -0.2557181268, + "1945": -0.2680024401, + "1946": -0.2802867533, + "1947": -0.2876767872, + "1948": -0.2950668211, + "1949": -0.2975334105, + "1950": -0.3, + "1951": -0.2975334105, + "1952": -0.2950668211, + "1953": -0.2876767872, + "1954": -0.2802867533, + "1955": -0.2680024401, + "1956": -0.2557181268, + "1957": -0.2385880148, + "1958": -0.2214579028, + "1959": -0.1995495968, + "1960": -0.1776412907, + "1961": -0.1510412527, + "1962": -0.1244412147, + "1963": -0.0932544229, + "1964": -0.0620676312, + "1965": -0.0264171656, + "1966": 0.0092332999, + "1967": 0.0492067431, + "1968": 0.0891801862, + "1969": 0.1333188502, + "1970": 0.1774575141, + "1971": 0.2255872036, + "1972": 0.2737168931, + "1973": 0.3256476623, + "1974": 0.3775784314, + "1975": 0.4331053333, + "1976": 0.4886322352, + "1977": 0.5475361304, + "1978": 0.6064400256, + "1979": 0.6684884474, + "1980": 0.7305368693, + "1981": 0.7954849409, + "1982": 0.8604330126, + "1983": 0.9280244136, + "1984": 0.9956158147, + "1985": 1.0655837929, + "1986": 1.1355517711, + "1987": 1.2076201947, + "1988": 1.2796886183, + "1989": 1.3535730662, + "1990": 1.4274575141, + "1991": 1.5028663981, + "1992": 1.5782752821, + "1993": 1.6549109978, + "1994": 1.7315467135, + "1995": 1.8091068148, + "1996": 1.8866669161, + "1997": 1.9648453086, + "1998": 2.0430237012, + "1999": 2.1215118506, + "2000": 2.2, + "2001": 2.2784881494, + "2002": 2.3569762988, + "2003": 2.4351546914, + "2004": 2.5133330839, + "2005": 2.5908931852, + "2006": 2.6684532865, + "2007": 2.7450890022, + "2008": 2.8217247179, + "2009": 2.8971336019, + "2010": 2.9725424859, + "2011": 3.0464269338, + "2012": 3.1203113817, + "2013": 3.1923798053, + "2014": 3.2644482289, + "2015": 3.3344162071, + "2016": 3.4043841853, + "2017": 3.4719755864, + "2018": 3.5395669874, + "2019": 3.6045150591, + "2020": 3.6694631307, + "2021": 3.7315115526, + "2022": 3.7935599744, + "2023": 3.8524638696, + "2024": 3.9113677648, + "2025": 3.9668946667, + "2026": 4.0224215686, + "2027": 4.0743523377, + "2028": 4.1262831069, + "2029": 4.1744127964, + "2030": 4.2225424859, + "2031": 4.2666811498, + "2032": 4.3108198138, + "2033": 4.3507932569, + "2034": 4.3907667001, + "2035": 4.4264171656, + "2036": 4.4620676312, + "2037": 4.4932544229, + "2038": 4.5244412147, + "2039": 4.5510412527, + "2040": 4.5776412907, + "2041": 4.5995495968, + "2042": 4.6214579028, + "2043": 4.6385880148, + "2044": 4.6557181268, + "2045": 4.6680024401, + "2046": 4.6802867533, + "2047": 4.6876767872, + "2048": 4.6950668211, + "2049": 4.6975334105, + "2050": 4.7, + "2051": 4.6975334105, + "2052": 4.6950668211, + "2053": 4.6876767872, + "2054": 4.6802867533, + "2055": 4.6680024401, + "2056": 4.6557181268, + "2057": 4.6385880148, + "2058": 4.6214579028, + "2059": 4.5995495968, + "2060": 4.5776412907, + "2061": 4.5510412527, + "2062": 4.5244412147, + "2063": 4.4932544229, + "2064": 4.4620676312, + "2065": 4.4264171656, + "2066": 4.3907667001, + "2067": 4.3507932569, + "2068": 4.3108198138, + "2069": 4.2666811498, + "2070": 4.2225424859, + "2071": 4.1744127964, + "2072": 4.1262831069, + "2073": 4.0743523377, + "2074": 4.0224215686, + "2075": 3.9668946667, + "2076": 3.9113677648, + "2077": 3.8524638696, + "2078": 3.7935599744, + "2079": 3.7315115526, + "2080": 3.6694631307, + "2081": 3.6045150591, + "2082": 3.5395669874, + "2083": 3.4719755864, + "2084": 3.4043841853, + "2085": 3.3344162071, + "2086": 3.2644482289, + "2087": 3.1923798053, + "2088": 3.1203113817, + "2089": 3.0464269338, + "2090": 2.9725424859, + "2091": 2.8971336019, + "2092": 2.8217247179, + "2093": 2.7450890022, + "2094": 2.6684532865, + "2095": 2.5908931852, + "2096": 2.5133330839, + "2097": 2.4351546914, + "2098": 2.3569762988, + "2099": 2.2784881494, + "2100": 2.2, + "2101": 2.1215118506, + "2102": 2.0430237012, + "2103": 1.9648453086, + "2104": 1.8866669161, + "2105": 1.8091068148, + "2106": 1.7315467135, + "2107": 1.6549109978, + "2108": 1.5782752821, + "2109": 1.5028663981, + "2110": 1.4274575141, + "2111": 1.3535730662, + "2112": 1.2796886183, + "2113": 1.2076201947, + "2114": 1.1355517711, + "2115": 1.0655837929, + "2116": 0.9956158147, + "2117": 0.9280244136, + "2118": 0.8604330126, + "2119": 0.7954849409, + "2120": 0.7305368693, + "2121": 0.6684884474, + "2122": 0.6064400256, + "2123": 0.5475361304, + "2124": 0.4886322352, + "2125": 0.4331053333, + "2126": 0.3775784314, + "2127": 0.3256476623, + "2128": 0.2737168931, + "2129": 0.2255872036, + "2130": 0.1774575141, + "2131": 0.1333188502, + "2132": 0.0891801862, + "2133": 0.0492067431, + "2134": 0.0092332999, + "2135": -0.0264171656, + "2136": -0.0620676312, + "2137": -0.0932544229, + "2138": -0.1244412147, + "2139": -0.1510412527, + "2140": -0.1776412907, + "2141": -0.1995495968, + "2142": -0.2214579028, + "2143": -0.2385880148, + "2144": -0.2557181268, + "2145": -0.2680024401, + "2146": -0.2802867533, + "2147": -0.2876767872, + "2148": -0.2950668211, + "2149": -0.2975334105, + "2150": -0.3, + "2151": -0.2975334105, + "2152": -0.2950668211, + "2153": -0.2876767872, + "2154": -0.2802867533, + "2155": -0.2680024401, + "2156": -0.2557181268, + "2157": -0.2385880148, + "2158": -0.2214579028, + "2159": -0.1995495968, + "2160": -0.1776412907, + "2161": -0.1510412527, + "2162": -0.1244412147, + "2163": -0.0932544229, + "2164": -0.0620676312, + "2165": -0.0264171656, + "2166": 0.0092332999, + "2167": 0.0492067431, + "2168": 0.0891801862, + "2169": 0.1333188502, + "2170": 0.1774575141, + "2171": 0.2255872036, + "2172": 0.2737168931, + "2173": 0.3256476623, + "2174": 0.3775784314, + "2175": 0.4331053333, + "2176": 0.4886322352, + "2177": 0.5475361304, + "2178": 0.6064400256, + "2179": 0.6684884474, + "2180": 0.7305368693, + "2181": 0.7954849409, + "2182": 0.8604330126, + "2183": 0.9280244136, + "2184": 0.9956158147, + "2185": 1.0655837929, + "2186": 1.1355517711, + "2187": 1.2076201947, + "2188": 1.2796886183, + "2189": 1.3535730662, + "2190": 1.4274575141, + "2191": 1.5028663981, + "2192": 1.5782752821, + "2193": 1.6549109978, + "2194": 1.7315467135, + "2195": 1.8091068148, + "2196": 1.8866669161, + "2197": 1.9648453086, + "2198": 2.0430237012, + "2199": 2.1215118506, + "2200": 2.2, + "2201": 2.2784881494, + "2202": 2.3569762988, + "2203": 2.4351546914, + "2204": 2.5133330839, + "2205": 2.5908931852, + "2206": 2.6684532865, + "2207": 2.7450890022, + "2208": 2.8217247179, + "2209": 2.8971336019, + "2210": 2.9725424859, + "2211": 3.0464269338, + "2212": 3.1203113817, + "2213": 3.1923798053, + "2214": 3.2644482289, + "2215": 3.3344162071, + "2216": 3.4043841853, + "2217": 3.4719755864, + "2218": 3.5395669874, + "2219": 3.6045150591, + "2220": 3.6694631307, + "2221": 3.7315115526, + "2222": 3.7935599744, + "2223": 3.8524638696, + "2224": 3.9113677648, + "2225": 3.9668946667, + "2226": 4.0224215686, + "2227": 4.0743523377, + "2228": 4.1262831069, + "2229": 4.1744127964, + "2230": 4.2225424859, + "2231": 4.2666811498, + "2232": 4.3108198138, + "2233": 4.3507932569, + "2234": 4.3907667001, + "2235": 4.4264171656, + "2236": 4.4620676312, + "2237": 4.4932544229, + "2238": 4.5244412147, + "2239": 4.5510412527, + "2240": 4.5776412907, + "2241": 4.5995495968, + "2242": 4.6214579028, + "2243": 4.6385880148, + "2244": 4.6557181268, + "2245": 4.6680024401, + "2246": 4.6802867533, + "2247": 4.6876767872, + "2248": 4.6950668211, + "2249": 4.6975334105, + "2250": 4.7, + "2251": 4.6975334105, + "2252": 4.6950668211, + "2253": 4.6876767872, + "2254": 4.6802867533, + "2255": 4.6680024401, + "2256": 4.6557181268, + "2257": 4.6385880148, + "2258": 4.6214579028, + "2259": 4.5995495968, + "2260": 4.5776412907, + "2261": 4.5510412527, + "2262": 4.5244412147, + "2263": 4.4932544229, + "2264": 4.4620676312, + "2265": 4.4264171656, + "2266": 4.3907667001, + "2267": 4.3507932569, + "2268": 4.3108198138, + "2269": 4.2666811498, + "2270": 4.2225424859, + "2271": 4.1744127964, + "2272": 4.1262831069, + "2273": 4.0743523377, + "2274": 4.0224215686, + "2275": 3.9668946667, + "2276": 3.9113677648, + "2277": 3.8524638696, + "2278": 3.7935599744, + "2279": 3.7315115526, + "2280": 3.6694631307, + "2281": 3.6045150591, + "2282": 3.5395669874, + "2283": 3.4719755864, + "2284": 3.4043841853, + "2285": 3.3344162071, + "2286": 3.2644482289, + "2287": 3.1923798053, + "2288": 3.1203113817, + "2289": 3.0464269338, + "2290": 2.9725424859, + "2291": 2.8971336019, + "2292": 2.8217247179, + "2293": 2.7450890022, + "2294": 2.6684532865, + "2295": 2.5908931852, + "2296": 2.5133330839, + "2297": 2.4351546914, + "2298": 2.3569762988, + "2299": 2.2784881494, + "2300": 2.2, + "2301": 2.1215118506, + "2302": 2.0430237012, + "2303": 1.9648453086, + "2304": 1.8866669161, + "2305": 1.8091068148, + "2306": 1.7315467135, + "2307": 1.6549109978, + "2308": 1.5782752821, + "2309": 1.5028663981, + "2310": 1.4274575141, + "2311": 1.3535730662, + "2312": 1.2796886183, + "2313": 1.2076201947, + "2314": 1.1355517711, + "2315": 1.0655837929, + "2316": 0.9956158147, + "2317": 0.9280244136, + "2318": 0.8604330126, + "2319": 0.7954849409, + "2320": 0.7305368693, + "2321": 0.6684884474, + "2322": 0.6064400256, + "2323": 0.5475361304, + "2324": 0.4886322352, + "2325": 0.4331053333, + "2326": 0.3775784314, + "2327": 0.3256476623, + "2328": 0.2737168931, + "2329": 0.2255872036, + "2330": 0.1774575141, + "2331": 0.1333188502, + "2332": 0.0891801862, + "2333": 0.0492067431, + "2334": 0.0092332999, + "2335": -0.0264171656, + "2336": -0.0620676312, + "2337": -0.0932544229, + "2338": -0.1244412147, + "2339": -0.1510412527, + "2340": -0.1776412907, + "2341": -0.1995495968, + "2342": -0.2214579028, + "2343": -0.2385880148, + "2344": -0.2557181268, + "2345": -0.2680024401, + "2346": -0.2802867533, + "2347": -0.2876767872, + "2348": -0.2950668211, + "2349": -0.2975334105, + "2350": -0.3, + "2351": -0.2975334105, + "2352": -0.2950668211, + "2353": -0.2876767872, + "2354": -0.2802867533, + "2355": -0.2680024401, + "2356": -0.2557181268, + "2357": -0.2385880148, + "2358": -0.2214579028, + "2359": -0.1995495968, + "2360": -0.1776412907, + "2361": -0.1510412527, + "2362": -0.1244412147, + "2363": -0.0932544229, + "2364": -0.0620676312, + "2365": -0.0264171656, + "2366": 0.0092332999, + "2367": 0.0492067431, + "2368": 0.0891801862, + "2369": 0.1333188502, + "2370": 0.1774575141, + "2371": 0.2255872036, + "2372": 0.2737168931, + "2373": 0.3256476623, + "2374": 0.3775784314, + "2375": 0.4331053333, + "2376": 0.4886322352, + "2377": 0.5475361304, + "2378": 0.6064400256, + "2379": 0.6684884474, + "2380": 0.7305368693, + "2381": 0.7954849409, + "2382": 0.8604330126, + "2383": 0.9280244136, + "2384": 0.9956158147, + "2385": 1.0655837929, + "2386": 1.1355517711, + "2387": 1.2076201947, + "2388": 1.2796886183, + "2389": 1.3535730662, + "2390": 1.4274575141, + "2391": 1.5028663981, + "2392": 1.5782752821, + "2393": 1.6549109978, + "2394": 1.7315467135, + "2395": 1.8091068148, + "2396": 1.8866669161, + "2397": 1.9648453086, + "2398": 2.0430237012, + "2399": 2.1215118506, + "2400": 2.2, + "2401": 2.2784881494, + "2402": 2.3569762988, + "2403": 2.4351546914, + "2404": 2.5133330839, + "2405": 2.5908931852, + "2406": 2.6684532865, + "2407": 2.7450890022, + "2408": 2.8217247179, + "2409": 2.8971336019, + "2410": 2.9725424859, + "2411": 3.0464269338, + "2412": 3.1203113817, + "2413": 3.1923798053, + "2414": 3.2644482289, + "2415": 3.3344162071, + "2416": 3.4043841853, + "2417": 3.4719755864, + "2418": 3.5395669874, + "2419": 3.6045150591, + "2420": 3.6694631307, + "2421": 3.7315115526, + "2422": 3.7935599744, + "2423": 3.8524638696, + "2424": 3.9113677648, + "2425": 3.9668946667, + "2426": 4.0224215686, + "2427": 4.0743523377, + "2428": 4.1262831069, + "2429": 4.1744127964, + "2430": 4.2225424859, + "2431": 4.2666811498, + "2432": 4.3108198138, + "2433": 4.3507932569, + "2434": 4.3907667001, + "2435": 4.4264171656, + "2436": 4.4620676312, + "2437": 4.4932544229, + "2438": 4.5244412147, + "2439": 4.5510412527, + "2440": 4.5776412907, + "2441": 4.5995495968, + "2442": 4.6214579028, + "2443": 4.6385880148, + "2444": 4.6557181268, + "2445": 4.6680024401, + "2446": 4.6802867533, + "2447": 4.6876767872, + "2448": 4.6950668211, + "2449": 4.6975334105, + "2450": 4.7, + "2451": 4.6975334105, + "2452": 4.6950668211, + "2453": 4.6876767872, + "2454": 4.6802867533, + "2455": 4.6680024401, + "2456": 4.6557181268, + "2457": 4.6385880148, + "2458": 4.6214579028, + "2459": 4.5995495968, + "2460": 4.5776412907, + "2461": 4.5510412527, + "2462": 4.5244412147, + "2463": 4.4932544229, + "2464": 4.4620676312, + "2465": 4.4264171656, + "2466": 4.3907667001, + "2467": 4.3507932569, + "2468": 4.3108198138, + "2469": 4.2666811498, + "2470": 4.2225424859, + "2471": 4.1744127964, + "2472": 4.1262831069, + "2473": 4.0743523377, + "2474": 4.0224215686, + "2475": 3.9668946667, + "2476": 3.9113677648, + "2477": 3.8524638696, + "2478": 3.7935599744, + "2479": 3.7315115526, + "2480": 3.6694631307, + "2481": 3.6045150591, + "2482": 3.5395669874, + "2483": 3.4719755864, + "2484": 3.4043841853, + "2485": 3.3344162071, + "2486": 3.2644482289, + "2487": 3.1923798053, + "2488": 3.1203113817, + "2489": 3.0464269338, + "2490": 2.9725424859, + "2491": 2.8971336019, + "2492": 2.8217247179, + "2493": 2.7450890022, + "2494": 2.6684532865, + "2495": 2.5908931852, + "2496": 2.5133330839, + "2497": 2.4351546914, + "2498": 2.3569762988, + "2499": 2.2784881494, + "2500": 2.2, + "2501": 2.1215118506, + "2502": 2.0430237012, + "2503": 1.9648453086, + "2504": 1.8866669161, + "2505": 1.8091068148, + "2506": 1.7315467135, + "2507": 1.6549109978, + "2508": 1.5782752821, + "2509": 1.5028663981, + "2510": 1.4274575141, + "2511": 1.3535730662, + "2512": 1.2796886183, + "2513": 1.2076201947, + "2514": 1.1355517711, + "2515": 1.0655837929, + "2516": 0.9956158147, + "2517": 0.9280244136, + "2518": 0.8604330126, + "2519": 0.7954849409, + "2520": 0.7305368693, + "2521": 0.6684884474, + "2522": 0.6064400256, + "2523": 0.5475361304, + "2524": 0.4886322352, + "2525": 0.4331053333, + "2526": 0.3775784314, + "2527": 0.3256476623, + "2528": 0.2737168931, + "2529": 0.2255872036, + "2530": 0.1774575141, + "2531": 0.1333188502, + "2532": 0.0891801862, + "2533": 0.0492067431, + "2534": 0.0092332999, + "2535": -0.0264171656, + "2536": -0.0620676312, + "2537": -0.0932544229, + "2538": -0.1244412147, + "2539": -0.1510412527, + "2540": -0.1776412907, + "2541": -0.1995495968, + "2542": -0.2214579028, + "2543": -0.2385880148, + "2544": -0.2557181268, + "2545": -0.2680024401, + "2546": -0.2802867533, + "2547": -0.2876767872, + "2548": -0.2950668211, + "2549": -0.2975334105, + "2550": -0.3, + "2551": -0.2975334105, + "2552": -0.2950668211, + "2553": -0.2876767872, + "2554": -0.2802867533, + "2555": -0.2680024401, + "2556": -0.2557181268, + "2557": -0.2385880148, + "2558": -0.2214579028, + "2559": -0.1995495968, + "2560": -0.1776412907, + "2561": -0.1510412527, + "2562": -0.1244412147, + "2563": -0.0932544229, + "2564": -0.0620676312, + "2565": -0.0264171656, + "2566": 0.0092332999, + "2567": 0.0492067431, + "2568": 0.0891801862, + "2569": 0.1333188502, + "2570": 0.1774575141, + "2571": 0.2255872036, + "2572": 0.2737168931, + "2573": 0.3256476623, + "2574": 0.3775784314, + "2575": 0.4331053333, + "2576": 0.4886322352, + "2577": 0.5475361304, + "2578": 0.6064400256, + "2579": 0.6684884474, + "2580": 0.7305368693, + "2581": 0.7954849409, + "2582": 0.8604330126, + "2583": 0.9280244136, + "2584": 0.9956158147, + "2585": 1.0655837929, + "2586": 1.1355517711, + "2587": 1.2076201947, + "2588": 1.2796886183, + "2589": 1.3535730662, + "2590": 1.4274575141, + "2591": 1.5028663981, + "2592": 1.5782752821, + "2593": 1.6549109978, + "2594": 1.7315467135, + "2595": 1.8091068148, + "2596": 1.8866669161, + "2597": 1.9648453086, + "2598": 2.0430237012, + "2599": 2.1215118506, + "2600": 2.2, + "2601": 2.2784881494, + "2602": 2.3569762988, + "2603": 2.4351546914, + "2604": 2.5133330839, + "2605": 2.5908931852, + "2606": 2.6684532865, + "2607": 2.7450890022, + "2608": 2.8217247179, + "2609": 2.8971336019, + "2610": 2.9725424859, + "2611": 3.0464269338, + "2612": 3.1203113817, + "2613": 3.1923798053, + "2614": 3.2644482289, + "2615": 3.3344162071, + "2616": 3.4043841853, + "2617": 3.4719755864, + "2618": 3.5395669874, + "2619": 3.6045150591, + "2620": 3.6694631307, + "2621": 3.7315115526, + "2622": 3.7935599744, + "2623": 3.8524638696, + "2624": 3.9113677648, + "2625": 3.9668946667, + "2626": 4.0224215686, + "2627": 4.0743523377, + "2628": 4.1262831069, + "2629": 4.1744127964, + "2630": 4.2225424859, + "2631": 4.2666811498, + "2632": 4.3108198138, + "2633": 4.3507932569, + "2634": 4.3907667001, + "2635": 4.4264171656, + "2636": 4.4620676312, + "2637": 4.4932544229, + "2638": 4.5244412147, + "2639": 4.5510412527, + "2640": 4.5776412907, + "2641": 4.5995495968, + "2642": 4.6214579028, + "2643": 4.6385880148, + "2644": 4.6557181268, + "2645": 4.6680024401, + "2646": 4.6802867533, + "2647": 4.6876767872, + "2648": 4.6950668211, + "2649": 4.6975334105, + "2650": 4.7, + "2651": 4.6975334105, + "2652": 4.6950668211, + "2653": 4.6876767872, + "2654": 4.6802867533, + "2655": 4.6680024401, + "2656": 4.6557181268, + "2657": 4.6385880148, + "2658": 4.6214579028, + "2659": 4.5995495968, + "2660": 4.5776412907, + "2661": 4.5510412527, + "2662": 4.5244412147, + "2663": 4.4932544229, + "2664": 4.4620676312, + "2665": 4.4264171656, + "2666": 4.3907667001, + "2667": 4.3507932569, + "2668": 4.3108198138, + "2669": 4.2666811498, + "2670": 4.2225424859, + "2671": 4.1744127964, + "2672": 4.1262831069, + "2673": 4.0743523377, + "2674": 4.0224215686, + "2675": 3.9668946667, + "2676": 3.9113677648, + "2677": 3.8524638696, + "2678": 3.7935599744, + "2679": 3.7315115526, + "2680": 3.6694631307, + "2681": 3.6045150591, + "2682": 3.5395669874, + "2683": 3.4719755864, + "2684": 3.4043841853, + "2685": 3.3344162071, + "2686": 3.2644482289, + "2687": 3.1923798053, + "2688": 3.1203113817, + "2689": 3.0464269338, + "2690": 2.9725424859, + "2691": 2.8971336019, + "2692": 2.8217247179, + "2693": 2.7450890022, + "2694": 2.6684532865, + "2695": 2.5908931852, + "2696": 2.5133330839, + "2697": 2.4351546914, + "2698": 2.3569762988, + "2699": 2.2784881494, + "2700": 2.2, + "2701": 2.1215118506, + "2702": 2.0430237012, + "2703": 1.9648453086, + "2704": 1.8866669161, + "2705": 1.8091068148, + "2706": 1.7315467135, + "2707": 1.6549109978, + "2708": 1.5782752821, + "2709": 1.5028663981, + "2710": 1.4274575141, + "2711": 1.3535730662, + "2712": 1.2796886183, + "2713": 1.2076201947, + "2714": 1.1355517711, + "2715": 1.0655837929, + "2716": 0.9956158147, + "2717": 0.9280244136, + "2718": 0.8604330126, + "2719": 0.7954849409, + "2720": 0.7305368693, + "2721": 0.6684884474, + "2722": 0.6064400256, + "2723": 0.5475361304, + "2724": 0.4886322352, + "2725": 0.4331053333, + "2726": 0.3775784314, + "2727": 0.3256476623, + "2728": 0.2737168931, + "2729": 0.2255872036, + "2730": 0.1774575141, + "2731": 0.1333188502, + "2732": 0.0891801862, + "2733": 0.0492067431, + "2734": 0.0092332999, + "2735": -0.0264171656, + "2736": -0.0620676312, + "2737": -0.0932544229, + "2738": -0.1244412147, + "2739": -0.1510412527, + "2740": -0.1776412907, + "2741": -0.1995495968, + "2742": -0.2214579028, + "2743": -0.2385880148, + "2744": -0.2557181268, + "2745": -0.2680024401, + "2746": -0.2802867533, + "2747": -0.2876767872, + "2748": -0.2950668211, + "2749": -0.2975334105, + "2750": -0.3, + "2751": -0.2975334105, + "2752": -0.2950668211, + "2753": -0.2876767872, + "2754": -0.2802867533, + "2755": -0.2680024401, + "2756": -0.2557181268, + "2757": -0.2385880148, + "2758": -0.2214579028, + "2759": -0.1995495968, + "2760": -0.1776412907, + "2761": -0.1510412527, + "2762": -0.1244412147, + "2763": -0.0932544229, + "2764": -0.0620676312, + "2765": -0.0264171656, + "2766": 0.0092332999, + "2767": 0.0492067431, + "2768": 0.0891801862, + "2769": 0.1333188502, + "2770": 0.1774575141, + "2771": 0.2255872036, + "2772": 0.2737168931, + "2773": 0.3256476623, + "2774": 0.3775784314, + "2775": 0.4331053333, + "2776": 0.4886322352, + "2777": 0.5475361304, + "2778": 0.6064400256, + "2779": 0.6684884474, + "2780": 0.7305368693, + "2781": 0.7954849409, + "2782": 0.8604330126, + "2783": 0.9280244136, + "2784": 0.9956158147, + "2785": 1.0655837929, + "2786": 1.1355517711, + "2787": 1.2076201947, + "2788": 1.2796886183, + "2789": 1.3535730662, + "2790": 1.4274575141, + "2791": 1.5028663981, + "2792": 1.5782752821, + "2793": 1.6549109978, + "2794": 1.7315467135, + "2795": 1.8091068148, + "2796": 1.8866669161, + "2797": 1.9648453086, + "2798": 2.0430237012, + "2799": 2.1215118506, + "2800": 2.2, + "2801": 2.2784881494, + "2802": 2.3569762988, + "2803": 2.4351546914, + "2804": 2.5133330839, + "2805": 2.5908931852, + "2806": 2.6684532865, + "2807": 2.7450890022, + "2808": 2.8217247179, + "2809": 2.8971336019, + "2810": 2.9725424859, + "2811": 3.0464269338, + "2812": 3.1203113817, + "2813": 3.1923798053, + "2814": 3.2644482289, + "2815": 3.3344162071, + "2816": 3.4043841853, + "2817": 3.4719755864, + "2818": 3.5395669874, + "2819": 3.6045150591, + "2820": 3.6694631307, + "2821": 3.7315115526, + "2822": 3.7935599744, + "2823": 3.8524638696, + "2824": 3.9113677648, + "2825": 3.9668946667, + "2826": 4.0224215686, + "2827": 4.0743523377, + "2828": 4.1262831069, + "2829": 4.1744127964, + "2830": 4.2225424859, + "2831": 4.2666811498, + "2832": 4.3108198138, + "2833": 4.3507932569, + "2834": 4.3907667001, + "2835": 4.4264171656, + "2836": 4.4620676312, + "2837": 4.4932544229, + "2838": 4.5244412147, + "2839": 4.5510412527, + "2840": 4.5776412907, + "2841": 4.5995495968, + "2842": 4.6214579028, + "2843": 4.6385880148, + "2844": 4.6557181268, + "2845": 4.6680024401, + "2846": 4.6802867533, + "2847": 4.6876767872, + "2848": 4.6950668211, + "2849": 4.6975334105, + "2850": 4.7, + "2851": 4.6975334105, + "2852": 4.6950668211, + "2853": 4.6876767872, + "2854": 4.6802867533, + "2855": 4.6680024401, + "2856": 4.6557181268, + "2857": 4.6385880148, + "2858": 4.6214579028, + "2859": 4.5995495968, + "2860": 4.5776412907, + "2861": 4.5510412527, + "2862": 4.5244412147, + "2863": 4.4932544229, + "2864": 4.4620676312, + "2865": 4.4264171656, + "2866": 4.3907667001, + "2867": 4.3507932569, + "2868": 4.3108198138, + "2869": 4.2666811498, + "2870": 4.2225424859, + "2871": 4.1744127964, + "2872": 4.1262831069, + "2873": 4.0743523377, + "2874": 4.0224215686, + "2875": 3.9668946667, + "2876": 3.9113677648, + "2877": 3.8524638696, + "2878": 3.7935599744, + "2879": 3.7315115526, + "2880": 3.6694631307, + "2881": 3.6045150591, + "2882": 3.5395669874, + "2883": 3.4719755864, + "2884": 3.4043841853, + "2885": 3.3344162071, + "2886": 3.2644482289, + "2887": 3.1923798053, + "2888": 3.1203113817, + "2889": 3.0464269338, + "2890": 2.9725424859, + "2891": 2.8971336019, + "2892": 2.8217247179, + "2893": 2.7450890022, + "2894": 2.6684532865, + "2895": 2.5908931852, + "2896": 2.5133330839, + "2897": 2.4351546914, + "2898": 2.3569762988, + "2899": 2.2784881494, + "2900": 2.2, + "2901": 2.1215118506, + "2902": 2.0430237012, + "2903": 1.9648453086, + "2904": 1.8866669161, + "2905": 1.8091068148, + "2906": 1.7315467135, + "2907": 1.6549109978, + "2908": 1.5782752821, + "2909": 1.5028663981, + "2910": 1.4274575141, + "2911": 1.3535730662, + "2912": 1.2796886183, + "2913": 1.2076201947, + "2914": 1.1355517711, + "2915": 1.0655837929, + "2916": 0.9956158147, + "2917": 0.9280244136, + "2918": 0.8604330126, + "2919": 0.7954849409, + "2920": 0.7305368693, + "2921": 0.6684884474, + "2922": 0.6064400256, + "2923": 0.5475361304, + "2924": 0.4886322352, + "2925": 0.4331053333, + "2926": 0.3775784314, + "2927": 0.3256476623, + "2928": 0.2737168931, + "2929": 0.2255872036, + "2930": 0.1774575141, + "2931": 0.1333188502, + "2932": 0.0891801862, + "2933": 0.0492067431, + "2934": 0.0092332999, + "2935": -0.0264171656, + "2936": -0.0620676312, + "2937": -0.0932544229, + "2938": -0.1244412147, + "2939": -0.1510412527, + "2940": -0.1776412907, + "2941": -0.1995495968, + "2942": -0.2214579028, + "2943": -0.2385880148, + "2944": -0.2557181268, + "2945": -0.2680024401, + "2946": -0.2802867533, + "2947": -0.2876767872, + "2948": -0.2950668211, + "2949": -0.2975334105, + "2950": -0.3, + "2951": -0.2975334105, + "2952": -0.2950668211, + "2953": -0.2876767872, + "2954": -0.2802867533, + "2955": -0.2680024401, + "2956": -0.2557181268, + "2957": -0.2385880148, + "2958": -0.2214579028, + "2959": -0.1995495968, + "2960": -0.1776412907, + "2961": -0.1510412527, + "2962": -0.1244412147, + "2963": -0.0932544229, + "2964": -0.0620676312, + "2965": -0.0264171656, + "2966": 0.0092332999, + "2967": 0.0492067431, + "2968": 0.0891801862, + "2969": 0.1333188502, + "2970": 0.1774575141, + "2971": 0.2255872036, + "2972": 0.2737168931, + "2973": 0.3256476623, + "2974": 0.3775784314, + "2975": 0.4331053333, + "2976": 0.4886322352, + "2977": 0.5475361304, + "2978": 0.6064400256, + "2979": 0.6684884474, + "2980": 0.7305368693, + "2981": 0.7954849409, + "2982": 0.8604330126, + "2983": 0.9280244136, + "2984": 0.9956158147, + "2985": 1.0655837929, + "2986": 1.1355517711, + "2987": 1.2076201947, + "2988": 1.2796886183, + "2989": 1.3535730662, + "2990": 1.4274575141, + "2991": 1.5028663981, + "2992": 1.5782752821, + "2993": 1.6549109978, + "2994": 1.7315467135, + "2995": 1.8091068148, + "2996": 1.8866669161, + "2997": 1.9648453086, + "2998": 2.0430237012, + "2999": 2.1215118506, + "3000": 2.2, + "3001": 2.2784881494, + "3002": 2.3569762988, + "3003": 2.4351546914, + "3004": 2.5133330839, + "3005": 2.5908931852, + "3006": 2.6684532865, + "3007": 2.7450890022, + "3008": 2.8217247179, + "3009": 2.8971336019, + "3010": 2.9725424859, + "3011": 3.0464269338, + "3012": 3.1203113817, + "3013": 3.1923798053, + "3014": 3.2644482289, + "3015": 3.3344162071, + "3016": 3.4043841853, + "3017": 3.4719755864, + "3018": 3.5395669874, + "3019": 3.6045150591, + "3020": 3.6694631307, + "3021": 3.7315115526, + "3022": 3.7935599744, + "3023": 3.8524638696, + "3024": 3.9113677648, + "3025": 3.9668946667, + "3026": 4.0224215686, + "3027": 4.0743523377, + "3028": 4.1262831069, + "3029": 4.1744127964, + "3030": 4.2225424859, + "3031": 4.2666811498, + "3032": 4.3108198138, + "3033": 4.3507932569, + "3034": 4.3907667001, + "3035": 4.4264171656, + "3036": 4.4620676312, + "3037": 4.4932544229, + "3038": 4.5244412147, + "3039": 4.5510412527, + "3040": 4.5776412907, + "3041": 4.5995495968, + "3042": 4.6214579028, + "3043": 4.6385880148, + "3044": 4.6557181268, + "3045": 4.6680024401, + "3046": 4.6802867533, + "3047": 4.6876767872, + "3048": 4.6950668211, + "3049": 4.6975334105, + "3050": 4.7, + "3051": 4.6975334105, + "3052": 4.6950668211, + "3053": 4.6876767872, + "3054": 4.6802867533, + "3055": 4.6680024401, + "3056": 4.6557181268, + "3057": 4.6385880148, + "3058": 4.6214579028, + "3059": 4.5995495968, + "3060": 4.5776412907, + "3061": 4.5510412527, + "3062": 4.5244412147, + "3063": 4.4932544229, + "3064": 4.4620676312, + "3065": 4.4264171656, + "3066": 4.3907667001, + "3067": 4.3507932569, + "3068": 4.3108198138, + "3069": 4.2666811498, + "3070": 4.2225424859, + "3071": 4.1744127964, + "3072": 4.1262831069, + "3073": 4.0743523377, + "3074": 4.0224215686, + "3075": 3.9668946667, + "3076": 3.9113677648, + "3077": 3.8524638696, + "3078": 3.7935599744, + "3079": 3.7315115526, + "3080": 3.6694631307, + "3081": 3.6045150591, + "3082": 3.5395669874, + "3083": 3.4719755864, + "3084": 3.4043841853, + "3085": 3.3344162071, + "3086": 3.2644482289, + "3087": 3.1923798053, + "3088": 3.1203113817, + "3089": 3.0464269338, + "3090": 2.9725424859, + "3091": 2.8971336019, + "3092": 2.8217247179, + "3093": 2.7450890022, + "3094": 2.6684532865, + "3095": 2.5908931852, + "3096": 2.5133330839, + "3097": 2.4351546914, + "3098": 2.3569762988, + "3099": 2.2784881494, + "3100": 2.2, + "3101": 2.1215118506, + "3102": 2.0430237012, + "3103": 1.9648453086, + "3104": 1.8866669161, + "3105": 1.8091068148, + "3106": 1.7315467135, + "3107": 1.6549109978, + "3108": 1.5782752821, + "3109": 1.5028663981, + "3110": 1.4274575141, + "3111": 1.3535730662, + "3112": 1.2796886183, + "3113": 1.2076201947, + "3114": 1.1355517711, + "3115": 1.0655837929, + "3116": 0.9956158147, + "3117": 0.9280244136, + "3118": 0.8604330126, + "3119": 0.7954849409, + "3120": 0.7305368693, + "3121": 0.6684884474, + "3122": 0.6064400256, + "3123": 0.5475361304, + "3124": 0.4886322352, + "3125": 0.4331053333, + "3126": 0.3775784314, + "3127": 0.3256476623, + "3128": 0.2737168931, + "3129": 0.2255872036, + "3130": 0.1774575141, + "3131": 0.1333188502, + "3132": 0.0891801862, + "3133": 0.0492067431, + "3134": 0.0092332999, + "3135": -0.0264171656, + "3136": -0.0620676312, + "3137": -0.0932544229, + "3138": -0.1244412147, + "3139": -0.1510412527, + "3140": -0.1776412907, + "3141": -0.1995495968, + "3142": -0.2214579028, + "3143": -0.2385880148, + "3144": -0.2557181268, + "3145": -0.2680024401, + "3146": -0.2802867533, + "3147": -0.2876767872, + "3148": -0.2950668211, + "3149": -0.2975334105, + "3150": -0.3, + "3151": -0.2975334105, + "3152": -0.2950668211, + "3153": -0.2876767872, + "3154": -0.2802867533, + "3155": -0.2680024401, + "3156": -0.2557181268, + "3157": -0.2385880148, + "3158": -0.2214579028, + "3159": -0.1995495968, + "3160": -0.1776412907, + "3161": -0.1510412527, + "3162": -0.1244412147, + "3163": -0.0932544229, + "3164": -0.0620676312, + "3165": -0.0264171656, + "3166": 0.0092332999, + "3167": 0.0492067431, + "3168": 0.0891801862, + "3169": 0.1333188502, + "3170": 0.1774575141, + "3171": 0.2255872036, + "3172": 0.2737168931, + "3173": 0.3256476623, + "3174": 0.3775784314, + "3175": 0.4331053333, + "3176": 0.4886322352, + "3177": 0.5475361304, + "3178": 0.6064400256, + "3179": 0.6684884474, + "3180": 0.7305368693, + "3181": 0.7954849409, + "3182": 0.8604330126, + "3183": 0.9280244136, + "3184": 0.9956158147, + "3185": 1.0655837929, + "3186": 1.1355517711, + "3187": 1.2076201947, + "3188": 1.2796886183, + "3189": 1.3535730662, + "3190": 1.4274575141, + "3191": 1.5028663981, + "3192": 1.5782752821, + "3193": 1.6549109978, + "3194": 1.7315467135, + "3195": 1.8091068148, + "3196": 1.8866669161, + "3197": 1.9648453086, + "3198": 2.0430237012, + "3199": 2.1215118506, + "3200": 2.2, + "3201": 2.2784881494, + "3202": 2.3569762988, + "3203": 2.4351546914, + "3204": 2.5133330839, + "3205": 2.5908931852, + "3206": 2.6684532865, + "3207": 2.7450890022, + "3208": 2.8217247179, + "3209": 2.8971336019, + "3210": 2.9725424859, + "3211": 3.0464269338, + "3212": 3.1203113817, + "3213": 3.1923798053, + "3214": 3.2644482289, + "3215": 3.3344162071, + "3216": 3.4043841853, + "3217": 3.4719755864, + "3218": 3.5395669874, + "3219": 3.6045150591, + "3220": 3.6694631307, + "3221": 3.7315115526, + "3222": 3.7935599744, + "3223": 3.8524638696, + "3224": 3.9113677648, + "3225": 3.9668946667, + "3226": 4.0224215686, + "3227": 4.0743523377, + "3228": 4.1262831069, + "3229": 4.1744127964, + "3230": 4.2225424859, + "3231": 4.2666811498, + "3232": 4.3108198138, + "3233": 4.3507932569, + "3234": 4.3907667001, + "3235": 4.4264171656, + "3236": 4.4620676312, + "3237": 4.4932544229, + "3238": 4.5244412147, + "3239": 4.5510412527, + "3240": 4.5776412907, + "3241": 4.5995495968, + "3242": 4.6214579028, + "3243": 4.6385880148, + "3244": 4.6557181268, + "3245": 4.6680024401, + "3246": 4.6802867533, + "3247": 4.6876767872, + "3248": 4.6950668211, + "3249": 4.6975334105, + "3250": 4.7, + "3251": 4.6975334105, + "3252": 4.6950668211, + "3253": 4.6876767872, + "3254": 4.6802867533, + "3255": 4.6680024401, + "3256": 4.6557181268, + "3257": 4.6385880148, + "3258": 4.6214579028, + "3259": 4.5995495968, + "3260": 4.5776412907, + "3261": 4.5510412527, + "3262": 4.5244412147, + "3263": 4.4932544229, + "3264": 4.4620676312, + "3265": 4.4264171656, + "3266": 4.3907667001, + "3267": 4.3507932569, + "3268": 4.3108198138, + "3269": 4.2666811498, + "3270": 4.2225424859, + "3271": 4.1744127964, + "3272": 4.1262831069, + "3273": 4.0743523377, + "3274": 4.0224215686, + "3275": 3.9668946667, + "3276": 3.9113677648, + "3277": 3.8524638696, + "3278": 3.7935599744, + "3279": 3.7315115526, + "3280": 3.6694631307, + "3281": 3.6045150591, + "3282": 3.5395669874, + "3283": 3.4719755864, + "3284": 3.4043841853, + "3285": 3.3344162071, + "3286": 3.2644482289, + "3287": 3.1923798053, + "3288": 3.1203113817, + "3289": 3.0464269338, + "3290": 2.9725424859, + "3291": 2.8971336019, + "3292": 2.8217247179, + "3293": 2.7450890022, + "3294": 2.6684532865, + "3295": 2.5908931852, + "3296": 2.5133330839, + "3297": 2.4351546914, + "3298": 2.3569762988, + "3299": 2.2784881494, + "3300": 2.2, + "3301": 2.1215118506, + "3302": 2.0430237012, + "3303": 1.9648453086, + "3304": 1.8866669161, + "3305": 1.8091068148, + "3306": 1.7315467135, + "3307": 1.6549109978, + "3308": 1.5782752821, + "3309": 1.5028663981, + "3310": 1.4274575141, + "3311": 1.3535730662, + "3312": 1.2796886183, + "3313": 1.2076201947, + "3314": 1.1355517711, + "3315": 1.0655837929, + "3316": 0.9956158147, + "3317": 0.9280244136, + "3318": 0.8604330126, + "3319": 0.7954849409, + "3320": 0.7305368693, + "3321": 0.6684884474, + "3322": 0.6064400256, + "3323": 0.5475361304, + "3324": 0.4886322352, + "3325": 0.4331053333, + "3326": 0.3775784314, + "3327": 0.3256476623, + "3328": 0.2737168931, + "3329": 0.2255872036, + "3330": 0.1774575141, + "3331": 0.1333188502, + "3332": 0.0891801862, + "3333": 0.0492067431, + "3334": 0.0092332999, + "3335": -0.0264171656, + "3336": -0.0620676312, + "3337": -0.0932544229, + "3338": -0.1244412147, + "3339": -0.1510412527, + "3340": -0.1776412907, + "3341": -0.1995495968, + "3342": -0.2214579028, + "3343": -0.2385880148, + "3344": -0.2557181268, + "3345": -0.2680024401, + "3346": -0.2802867533, + "3347": -0.2876767872, + "3348": -0.2950668211, + "3349": -0.2975334105, + "3350": -0.3, + "3351": -0.2975334105, + "3352": -0.2950668211, + "3353": -0.2876767872, + "3354": -0.2802867533, + "3355": -0.2680024401, + "3356": -0.2557181268, + "3357": -0.2385880148, + "3358": -0.2214579028, + "3359": -0.1995495968, + "3360": -0.1776412907, + "3361": -0.1510412527, + "3362": -0.1244412147, + "3363": -0.0932544229, + "3364": -0.0620676312, + "3365": -0.0264171656, + "3366": 0.0092332999, + "3367": 0.0492067431, + "3368": 0.0891801862, + "3369": 0.1333188502, + "3370": 0.1774575141, + "3371": 0.2255872036, + "3372": 0.2737168931, + "3373": 0.3256476623, + "3374": 0.3775784314, + "3375": 0.4331053333, + "3376": 0.4886322352, + "3377": 0.5475361304, + "3378": 0.6064400256, + "3379": 0.6684884474, + "3380": 0.7305368693, + "3381": 0.7954849409, + "3382": 0.8604330126, + "3383": 0.9280244136, + "3384": 0.9956158147, + "3385": 1.0655837929, + "3386": 1.1355517711, + "3387": 1.2076201947, + "3388": 1.2796886183, + "3389": 1.3535730662, + "3390": 1.4274575141, + "3391": 1.5028663981, + "3392": 1.5782752821, + "3393": 1.6549109978, + "3394": 1.7315467135, + "3395": 1.8091068148, + "3396": 1.8866669161, + "3397": 1.9648453086, + "3398": 2.0430237012, + "3399": 2.1215118506, + "3400": 2.2, + "3401": 2.2784881494, + "3402": 2.3569762988, + "3403": 2.4351546914, + "3404": 2.5133330839, + "3405": 2.5908931852, + "3406": 2.6684532865, + "3407": 2.7450890022, + "3408": 2.8217247179, + "3409": 2.8971336019, + "3410": 2.9725424859, + "3411": 3.0464269338, + "3412": 3.1203113817, + "3413": 3.1923798053, + "3414": 3.2644482289, + "3415": 3.3344162071, + "3416": 3.4043841853, + "3417": 3.4719755864, + "3418": 3.5395669874, + "3419": 3.6045150591, + "3420": 3.6694631307, + "3421": 3.7315115526, + "3422": 3.7935599744, + "3423": 3.8524638696, + "3424": 3.9113677648, + "3425": 3.9668946667, + "3426": 4.0224215686, + "3427": 4.0743523377, + "3428": 4.1262831069, + "3429": 4.1744127964, + "3430": 4.2225424859, + "3431": 4.2666811498, + "3432": 4.3108198138, + "3433": 4.3507932569, + "3434": 4.3907667001, + "3435": 4.4264171656, + "3436": 4.4620676312, + "3437": 4.4932544229, + "3438": 4.5244412147, + "3439": 4.5510412527, + "3440": 4.5776412907, + "3441": 4.5995495968, + "3442": 4.6214579028, + "3443": 4.6385880148, + "3444": 4.6557181268, + "3445": 4.6680024401, + "3446": 4.6802867533, + "3447": 4.6876767872, + "3448": 4.6950668211, + "3449": 4.6975334105, + "3450": 4.7, + "3451": 4.6975334105, + "3452": 4.6950668211, + "3453": 4.6876767872, + "3454": 4.6802867533, + "3455": 4.6680024401, + "3456": 4.6557181268, + "3457": 4.6385880148, + "3458": 4.6214579028, + "3459": 4.5995495968, + "3460": 4.5776412907, + "3461": 4.5510412527, + "3462": 4.5244412147, + "3463": 4.4932544229, + "3464": 4.4620676312, + "3465": 4.4264171656, + "3466": 4.3907667001, + "3467": 4.3507932569, + "3468": 4.3108198138, + "3469": 4.2666811498, + "3470": 4.2225424859, + "3471": 4.1744127964, + "3472": 4.1262831069, + "3473": 4.0743523377, + "3474": 4.0224215686, + "3475": 3.9668946667, + "3476": 3.9113677648, + "3477": 3.8524638696, + "3478": 3.7935599744, + "3479": 3.7315115526, + "3480": 3.6694631307, + "3481": 3.6045150591, + "3482": 3.5395669874, + "3483": 3.4719755864, + "3484": 3.4043841853, + "3485": 3.3344162071, + "3486": 3.2644482289, + "3487": 3.1923798053, + "3488": 3.1203113817, + "3489": 3.0464269338, + "3490": 2.9725424859, + "3491": 2.8971336019, + "3492": 2.8217247179, + "3493": 2.7450890022, + "3494": 2.6684532865, + "3495": 2.5908931852, + "3496": 2.5133330839, + "3497": 2.4351546914, + "3498": 2.3569762988, + "3499": 2.2784881494, + "3500": 2.2, + "3501": 2.1215118506, + "3502": 2.0430237012, + "3503": 1.9648453086, + "3504": 1.8866669161, + "3505": 1.8091068148, + "3506": 1.7315467135, + "3507": 1.6549109978, + "3508": 1.5782752821, + "3509": 1.5028663981, + "3510": 1.4274575141, + "3511": 1.3535730662, + "3512": 1.2796886183, + "3513": 1.2076201947, + "3514": 1.1355517711, + "3515": 1.0655837929, + "3516": 0.9956158147, + "3517": 0.9280244136, + "3518": 0.8604330126, + "3519": 0.7954849409, + "3520": 0.7305368693, + "3521": 0.6684884474, + "3522": 0.6064400256, + "3523": 0.5475361304, + "3524": 0.4886322352, + "3525": 0.4331053333, + "3526": 0.3775784314, + "3527": 0.3256476623, + "3528": 0.2737168931, + "3529": 0.2255872036, + "3530": 0.1774575141, + "3531": 0.1333188502, + "3532": 0.0891801862, + "3533": 0.0492067431, + "3534": 0.0092332999, + "3535": -0.0264171656, + "3536": -0.0620676312, + "3537": -0.0932544229, + "3538": -0.1244412147, + "3539": -0.1510412527, + "3540": -0.1776412907, + "3541": -0.1995495968, + "3542": -0.2214579028, + "3543": -0.2385880148, + "3544": -0.2557181268, + "3545": -0.2680024401, + "3546": -0.2802867533, + "3547": -0.2876767872, + "3548": -0.2950668211, + "3549": -0.2975334105, + "3550": -0.3, + "3551": -0.2975334105, + "3552": -0.2950668211, + "3553": -0.2876767872, + "3554": -0.2802867533, + "3555": -0.2680024401, + "3556": -0.2557181268, + "3557": -0.2385880148, + "3558": -0.2214579028, + "3559": -0.1995495968, + "3560": -0.1776412907, + "3561": -0.1510412527, + "3562": -0.1244412147, + "3563": -0.0932544229, + "3564": -0.0620676312, + "3565": -0.0264171656, + "3566": 0.0092332999, + "3567": 0.0492067431, + "3568": 0.0891801862, + "3569": 0.1333188502, + "3570": 0.1774575141, + "3571": 0.2255872036, + "3572": 0.2737168931, + "3573": 0.3256476623, + "3574": 0.3775784314, + "3575": 0.4331053333, + "3576": 0.4886322352, + "3577": 0.5475361304, + "3578": 0.6064400256, + "3579": 0.6684884474, + "3580": 0.7305368693, + "3581": 0.7954849409, + "3582": 0.8604330126, + "3583": 0.9280244136, + "3584": 0.9956158147, + "3585": 1.0655837929, + "3586": 1.1355517711, + "3587": 1.2076201947, + "3588": 1.2796886183, + "3589": 1.3535730662, + "3590": 1.4274575141, + "3591": 1.5028663981, + "3592": 1.5782752821, + "3593": 1.6549109978, + "3594": 1.7315467135, + "3595": 1.8091068148, + "3596": 1.8866669161, + "3597": 1.9648453086, + "3598": 2.0430237012, + "3599": 2.1215118506, + "3600": 2.2, + "3601": 2.2784881494, + "3602": 2.3569762988, + "3603": 2.4351546914, + "3604": 2.5133330839, + "3605": 2.5908931852, + "3606": 2.6684532865, + "3607": 2.7450890022, + "3608": 2.8217247179, + "3609": 2.8971336019, + "3610": 2.9725424859, + "3611": 3.0464269338, + "3612": 3.1203113817, + "3613": 3.1923798053, + "3614": 3.2644482289, + "3615": 3.3344162071, + "3616": 3.4043841853, + "3617": 3.4719755864, + "3618": 3.5395669874, + "3619": 3.6045150591, + "3620": 3.6694631307, + "3621": 3.7315115526, + "3622": 3.7935599744, + "3623": 3.8524638696, + "3624": 3.9113677648, + "3625": 3.9668946667, + "3626": 4.0224215686, + "3627": 4.0743523377, + "3628": 4.1262831069, + "3629": 4.1744127964, + "3630": 4.2225424859, + "3631": 4.2666811498, + "3632": 4.3108198138, + "3633": 4.3507932569, + "3634": 4.3907667001, + "3635": 4.4264171656, + "3636": 4.4620676312, + "3637": 4.4932544229, + "3638": 4.5244412147, + "3639": 4.5510412527, + "3640": 4.5776412907, + "3641": 4.5995495968, + "3642": 4.6214579028, + "3643": 4.6385880148, + "3644": 4.6557181268, + "3645": 4.6680024401, + "3646": 4.6802867533, + "3647": 4.6876767872, + "3648": 4.6950668211, + "3649": 4.6975334105, + "3650": 4.7, + "3651": 4.6975334105, + "3652": 4.6950668211, + "3653": 4.6876767872, + "3654": 4.6802867533, + "3655": 4.6680024401, + "3656": 4.6557181268, + "3657": 4.6385880148, + "3658": 4.6214579028, + "3659": 4.5995495968, + "3660": 4.5776412907, + "3661": 4.5510412527, + "3662": 4.5244412147, + "3663": 4.4932544229, + "3664": 4.4620676312, + "3665": 4.4264171656, + "3666": 4.3907667001, + "3667": 4.3507932569, + "3668": 4.3108198138, + "3669": 4.2666811498, + "3670": 4.2225424859, + "3671": 4.1744127964, + "3672": 4.1262831069, + "3673": 4.0743523377, + "3674": 4.0224215686, + "3675": 3.9668946667, + "3676": 3.9113677648, + "3677": 3.8524638696, + "3678": 3.7935599744, + "3679": 3.7315115526, + "3680": 3.6694631307, + "3681": 3.6045150591, + "3682": 3.5395669874, + "3683": 3.4719755864, + "3684": 3.4043841853, + "3685": 3.3344162071, + "3686": 3.2644482289, + "3687": 3.1923798053, + "3688": 3.1203113817, + "3689": 3.0464269338, + "3690": 2.9725424859, + "3691": 2.8971336019, + "3692": 2.8217247179, + "3693": 2.7450890022, + "3694": 2.6684532865, + "3695": 2.5908931852, + "3696": 2.5133330839, + "3697": 2.4351546914, + "3698": 2.3569762988, + "3699": 2.2784881494, + "3700": 2.2, + "3701": 2.1215118506, + "3702": 2.0430237012, + "3703": 1.9648453086, + "3704": 1.8866669161, + "3705": 1.8091068148, + "3706": 1.7315467135, + "3707": 1.6549109978, + "3708": 1.5782752821, + "3709": 1.5028663981, + "3710": 1.4274575141, + "3711": 1.3535730662, + "3712": 1.2796886183, + "3713": 1.2076201947, + "3714": 1.1355517711, + "3715": 1.0655837929, + "3716": 0.9956158147, + "3717": 0.9280244136, + "3718": 0.8604330126, + "3719": 0.7954849409, + "3720": 0.7305368693, + "3721": 0.6684884474, + "3722": 0.6064400256, + "3723": 0.5475361304, + "3724": 0.4886322352, + "3725": 0.4331053333, + "3726": 0.3775784314, + "3727": 0.3256476623, + "3728": 0.2737168931, + "3729": 0.2255872036, + "3730": 0.1774575141, + "3731": 0.1333188502, + "3732": 0.0891801862, + "3733": 0.0492067431, + "3734": 0.0092332999, + "3735": -0.0264171656, + "3736": -0.0620676312, + "3737": -0.0932544229, + "3738": -0.1244412147, + "3739": -0.1510412527, + "3740": -0.1776412907, + "3741": -0.1995495968, + "3742": -0.2214579028, + "3743": -0.2385880148, + "3744": -0.2557181268, + "3745": -0.2680024401, + "3746": -0.2802867533, + "3747": -0.2876767872, + "3748": -0.2950668211, + "3749": -0.2975334105, + "3750": -0.3, + "3751": -0.2975334105, + "3752": -0.2950668211, + "3753": -0.2876767872, + "3754": -0.2802867533, + "3755": -0.2680024401, + "3756": -0.2557181268, + "3757": -0.2385880148, + "3758": -0.2214579028, + "3759": -0.1995495968, + "3760": -0.1776412907, + "3761": -0.1510412527, + "3762": -0.1244412147, + "3763": -0.0932544229, + "3764": -0.0620676312, + "3765": -0.0264171656, + "3766": 0.0092332999, + "3767": 0.0492067431, + "3768": 0.0891801862, + "3769": 0.1333188502, + "3770": 0.1774575141, + "3771": 0.2255872036, + "3772": 0.2737168931, + "3773": 0.3256476623, + "3774": 0.3775784314, + "3775": 0.4331053333, + "3776": 0.4886322352, + "3777": 0.5475361304, + "3778": 0.6064400256, + "3779": 0.6684884474, + "3780": 0.7305368693, + "3781": 0.7954849409, + "3782": 0.8604330126, + "3783": 0.9280244136, + "3784": 0.9956158147, + "3785": 1.0655837929, + "3786": 1.1355517711, + "3787": 1.2076201947, + "3788": 1.2796886183, + "3789": 1.3535730662, + "3790": 1.4274575141, + "3791": 1.5028663981, + "3792": 1.5782752821, + "3793": 1.6549109978, + "3794": 1.7315467135, + "3795": 1.8091068148, + "3796": 1.8866669161, + "3797": 1.9648453086, + "3798": 2.0430237012, + "3799": 2.1215118506, + "3800": 2.2, + "3801": 2.2784881494, + "3802": 2.3569762988, + "3803": 2.4351546914, + "3804": 2.5133330839, + "3805": 2.5908931852, + "3806": 2.6684532865, + "3807": 2.7450890022, + "3808": 2.8217247179, + "3809": 2.8971336019, + "3810": 2.9725424859, + "3811": 3.0464269338, + "3812": 3.1203113817, + "3813": 3.1923798053, + "3814": 3.2644482289, + "3815": 3.3344162071, + "3816": 3.4043841853, + "3817": 3.4719755864, + "3818": 3.5395669874, + "3819": 3.6045150591, + "3820": 3.6694631307, + "3821": 3.7315115526, + "3822": 3.7935599744, + "3823": 3.8524638696, + "3824": 3.9113677648, + "3825": 3.9668946667, + "3826": 4.0224215686, + "3827": 4.0743523377, + "3828": 4.1262831069, + "3829": 4.1744127964, + "3830": 4.2225424859, + "3831": 4.2666811498, + "3832": 4.3108198138, + "3833": 4.3507932569, + "3834": 4.3907667001, + "3835": 4.4264171656, + "3836": 4.4620676312, + "3837": 4.4932544229, + "3838": 4.5244412147, + "3839": 4.5510412527, + "3840": 4.5776412907, + "3841": 4.5995495968, + "3842": 4.6214579028, + "3843": 4.6385880148, + "3844": 4.6557181268, + "3845": 4.6680024401, + "3846": 4.6802867533, + "3847": 4.6876767872, + "3848": 4.6950668211, + "3849": 4.6975334105, + "3850": 4.7, + "3851": 4.6975334105, + "3852": 4.6950668211, + "3853": 4.6876767872, + "3854": 4.6802867533, + "3855": 4.6680024401, + "3856": 4.6557181268, + "3857": 4.6385880148, + "3858": 4.6214579028, + "3859": 4.5995495968, + "3860": 4.5776412907, + "3861": 4.5510412527, + "3862": 4.5244412147, + "3863": 4.4932544229, + "3864": 4.4620676312, + "3865": 4.4264171656, + "3866": 4.3907667001, + "3867": 4.3507932569, + "3868": 4.3108198138, + "3869": 4.2666811498, + "3870": 4.2225424859, + "3871": 4.1744127964, + "3872": 4.1262831069, + "3873": 4.0743523377, + "3874": 4.0224215686, + "3875": 3.9668946667, + "3876": 3.9113677648, + "3877": 3.8524638696, + "3878": 3.7935599744, + "3879": 3.7315115526, + "3880": 3.6694631307, + "3881": 3.6045150591, + "3882": 3.5395669874, + "3883": 3.4719755864, + "3884": 3.4043841853, + "3885": 3.3344162071, + "3886": 3.2644482289, + "3887": 3.1923798053, + "3888": 3.1203113817, + "3889": 3.0464269338, + "3890": 2.9725424859, + "3891": 2.8971336019, + "3892": 2.8217247179, + "3893": 2.7450890022, + "3894": 2.6684532865, + "3895": 2.5908931852, + "3896": 2.5133330839, + "3897": 2.4351546914, + "3898": 2.3569762988, + "3899": 2.2784881494, + "3900": 2.2, + "3901": 2.1215118506, + "3902": 2.0430237012, + "3903": 1.9648453086, + "3904": 1.8866669161, + "3905": 1.8091068148, + "3906": 1.7315467135, + "3907": 1.6549109978, + "3908": 1.5782752821, + "3909": 1.5028663981, + "3910": 1.4274575141, + "3911": 1.3535730662, + "3912": 1.2796886183, + "3913": 1.2076201947, + "3914": 1.1355517711, + "3915": 1.0655837929, + "3916": 0.9956158147, + "3917": 0.9280244136, + "3918": 0.8604330126, + "3919": 0.7954849409, + "3920": 0.7305368693, + "3921": 0.6684884474, + "3922": 0.6064400256, + "3923": 0.5475361304, + "3924": 0.4886322352, + "3925": 0.4331053333, + "3926": 0.3775784314, + "3927": 0.3256476623, + "3928": 0.2737168931, + "3929": 0.2255872036, + "3930": 0.1774575141, + "3931": 0.1333188502, + "3932": 0.0891801862, + "3933": 0.0492067431, + "3934": 0.0092332999, + "3935": -0.0264171656, + "3936": -0.0620676312, + "3937": -0.0932544229, + "3938": -0.1244412147, + "3939": -0.1510412527, + "3940": -0.1776412907, + "3941": -0.1995495968, + "3942": -0.2214579028, + "3943": -0.2385880148, + "3944": -0.2557181268, + "3945": -0.2680024401, + "3946": -0.2802867533, + "3947": -0.2876767872, + "3948": -0.2950668211, + "3949": -0.2975334105, + "3950": -0.3, + "3951": -0.2975334105, + "3952": -0.2950668211, + "3953": -0.2876767872, + "3954": -0.2802867533, + "3955": -0.2680024401, + "3956": -0.2557181268, + "3957": -0.2385880148, + "3958": -0.2214579028, + "3959": -0.1995495968, + "3960": -0.1776412907, + "3961": -0.1510412527, + "3962": -0.1244412147, + "3963": -0.0932544229, + "3964": -0.0620676312, + "3965": -0.0264171656, + "3966": 0.0092332999, + "3967": 0.0492067431, + "3968": 0.0891801862, + "3969": 0.1333188502, + "3970": 0.1774575141, + "3971": 0.2255872036, + "3972": 0.2737168931, + "3973": 0.3256476623, + "3974": 0.3775784314, + "3975": 0.4331053333, + "3976": 0.4886322352, + "3977": 0.5475361304, + "3978": 0.6064400256, + "3979": 0.6684884474, + "3980": 0.7305368693, + "3981": 0.7954849409, + "3982": 0.8604330126, + "3983": 0.9280244136, + "3984": 0.9956158147, + "3985": 1.0655837929, + "3986": 1.1355517711, + "3987": 1.2076201947, + "3988": 1.2796886183, + "3989": 1.3535730662, + "3990": 1.4274575141, + "3991": 1.5028663981, + "3992": 1.5782752821, + "3993": 1.6549109978, + "3994": 1.7315467135, + "3995": 1.8091068148, + "3996": 1.8866669161, + "3997": 1.9648453086, + "3998": 2.0430237012, + "3999": 2.1215118506, + "4000": 2.2, + "4001": 2.2784881494, + "4002": 2.3569762988, + "4003": 2.4351546914, + "4004": 2.5133330839, + "4005": 2.5908931852, + "4006": 2.6684532865, + "4007": 2.7450890022, + "4008": 2.8217247179, + "4009": 2.8971336019, + "4010": 2.9725424859, + "4011": 3.0464269338, + "4012": 3.1203113817, + "4013": 3.1923798053, + "4014": 3.2644482289, + "4015": 3.3344162071, + "4016": 3.4043841853, + "4017": 3.4719755864, + "4018": 3.5395669874, + "4019": 3.6045150591, + "4020": 3.6694631307, + "4021": 3.7315115526, + "4022": 3.7935599744, + "4023": 3.8524638696, + "4024": 3.9113677648, + "4025": 3.9668946667, + "4026": 4.0224215686, + "4027": 4.0743523377, + "4028": 4.1262831069, + "4029": 4.1744127964, + "4030": 4.2225424859, + "4031": 4.2666811498, + "4032": 4.3108198138, + "4033": 4.3507932569, + "4034": 4.3907667001, + "4035": 4.4264171656, + "4036": 4.4620676312, + "4037": 4.4932544229, + "4038": 4.5244412147, + "4039": 4.5510412527, + "4040": 4.5776412907, + "4041": 4.5995495968, + "4042": 4.6214579028, + "4043": 4.6385880148, + "4044": 4.6557181268, + "4045": 4.6680024401, + "4046": 4.6802867533, + "4047": 4.6876767872, + "4048": 4.6950668211, + "4049": 4.6975334105, + "4050": 4.7, + "4051": 4.6975334105, + "4052": 4.6950668211, + "4053": 4.6876767872, + "4054": 4.6802867533, + "4055": 4.6680024401, + "4056": 4.6557181268, + "4057": 4.6385880148, + "4058": 4.6214579028, + "4059": 4.5995495968, + "4060": 4.5776412907, + "4061": 4.5510412527, + "4062": 4.5244412147, + "4063": 4.4932544229, + "4064": 4.4620676312, + "4065": 4.4264171656, + "4066": 4.3907667001, + "4067": 4.3507932569, + "4068": 4.3108198138, + "4069": 4.2666811498, + "4070": 4.2225424859, + "4071": 4.1744127964, + "4072": 4.1262831069, + "4073": 4.0743523377, + "4074": 4.0224215686, + "4075": 3.9668946667, + "4076": 3.9113677648, + "4077": 3.8524638696, + "4078": 3.7935599744, + "4079": 3.7315115526, + "4080": 3.6694631307, + "4081": 3.6045150591, + "4082": 3.5395669874, + "4083": 3.4719755864, + "4084": 3.4043841853, + "4085": 3.3344162071, + "4086": 3.2644482289, + "4087": 3.1923798053, + "4088": 3.1203113817, + "4089": 3.0464269338, + "4090": 2.9725424859, + "4091": 2.8971336019, + "4092": 2.8217247179, + "4093": 2.7450890022, + "4094": 2.6684532865, + "4095": 2.5908931852, + "4096": 2.5133330839, + "4097": 2.4351546914, + "4098": 2.3569762988, + "4099": 2.2784881494, + "4100": 2.2, + "4101": 2.1215118506, + "4102": 2.0430237012, + "4103": 1.9648453086, + "4104": 1.8866669161, + "4105": 1.8091068148, + "4106": 1.7315467135, + "4107": 1.6549109978, + "4108": 1.5782752821, + "4109": 1.5028663981, + "4110": 1.4274575141, + "4111": 1.3535730662, + "4112": 1.2796886183, + "4113": 1.2076201947, + "4114": 1.1355517711, + "4115": 1.0655837929, + "4116": 0.9956158147, + "4117": 0.9280244136, + "4118": 0.8604330126, + "4119": 0.7954849409, + "4120": 0.7305368693, + "4121": 0.6684884474, + "4122": 0.6064400256, + "4123": 0.5475361304, + "4124": 0.4886322352, + "4125": 0.4331053333, + "4126": 0.3775784314, + "4127": 0.3256476623, + "4128": 0.2737168931, + "4129": 0.2255872036, + "4130": 0.1774575141, + "4131": 0.1333188502, + "4132": 0.0891801862, + "4133": 0.0492067431, + "4134": 0.0092332999, + "4135": -0.0264171656, + "4136": -0.0620676312, + "4137": -0.0932544229, + "4138": -0.1244412147, + "4139": -0.1510412527, + "4140": -0.1776412907, + "4141": -0.1995495968, + "4142": -0.2214579028, + "4143": -0.2385880148, + "4144": -0.2557181268, + "4145": -0.2680024401, + "4146": -0.2802867533, + "4147": -0.2876767872, + "4148": -0.2950668211, + "4149": -0.2975334105, + "4150": -0.3, + "4151": -0.2975334105, + "4152": -0.2950668211, + "4153": -0.2876767872, + "4154": -0.2802867533, + "4155": -0.2680024401, + "4156": -0.2557181268, + "4157": -0.2385880148, + "4158": -0.2214579028, + "4159": -0.1995495968, + "4160": -0.1776412907, + "4161": -0.1510412527, + "4162": -0.1244412147, + "4163": -0.0932544229, + "4164": -0.0620676312, + "4165": -0.0264171656, + "4166": 0.0092332999, + "4167": 0.0492067431, + "4168": 0.0891801862, + "4169": 0.1333188502, + "4170": 0.1774575141, + "4171": 0.2255872036, + "4172": 0.2737168931, + "4173": 0.3256476623, + "4174": 0.3775784314, + "4175": 0.4331053333, + "4176": 0.4886322352, + "4177": 0.5475361304, + "4178": 0.6064400256, + "4179": 0.6684884474, + "4180": 0.7305368693, + "4181": 0.7954849409, + "4182": 0.8604330126, + "4183": 0.9280244136, + "4184": 0.9956158147, + "4185": 1.0655837929, + "4186": 1.1355517711, + "4187": 1.2076201947, + "4188": 1.2796886183, + "4189": 1.3535730662, + "4190": 1.4274575141, + "4191": 1.5028663981, + "4192": 1.5782752821, + "4193": 1.6549109978, + "4194": 1.7315467135, + "4195": 1.8091068148, + "4196": 1.8866669161, + "4197": 1.9648453086, + "4198": 2.0430237012, + "4199": 2.1215118506, + "4200": 2.2, + "4201": 2.2784881494, + "4202": 2.3569762988, + "4203": 2.4351546914, + "4204": 2.5133330839, + "4205": 2.5908931852, + "4206": 2.6684532865, + "4207": 2.7450890022, + "4208": 2.8217247179, + "4209": 2.8971336019, + "4210": 2.9725424859, + "4211": 3.0464269338, + "4212": 3.1203113817, + "4213": 3.1923798053, + "4214": 3.2644482289, + "4215": 3.3344162071, + "4216": 3.4043841853, + "4217": 3.4719755864, + "4218": 3.5395669874, + "4219": 3.6045150591, + "4220": 3.6694631307, + "4221": 3.7315115526, + "4222": 3.7935599744, + "4223": 3.8524638696, + "4224": 3.9113677648, + "4225": 3.9668946667, + "4226": 4.0224215686, + "4227": 4.0743523377, + "4228": 4.1262831069, + "4229": 4.1744127964, + "4230": 4.2225424859, + "4231": 4.2666811498, + "4232": 4.3108198138, + "4233": 4.3507932569, + "4234": 4.3907667001, + "4235": 4.4264171656, + "4236": 4.4620676312, + "4237": 4.4932544229, + "4238": 4.5244412147, + "4239": 4.5510412527, + "4240": 4.5776412907, + "4241": 4.5995495968, + "4242": 4.6214579028, + "4243": 4.6385880148, + "4244": 4.6557181268, + "4245": 4.6680024401, + "4246": 4.6802867533, + "4247": 4.6876767872, + "4248": 4.6950668211, + "4249": 4.6975334105, + "4250": 4.7, + "4251": 4.6975334105, + "4252": 4.6950668211, + "4253": 4.6876767872, + "4254": 4.6802867533, + "4255": 4.6680024401, + "4256": 4.6557181268, + "4257": 4.6385880148, + "4258": 4.6214579028, + "4259": 4.5995495968, + "4260": 4.5776412907, + "4261": 4.5510412527, + "4262": 4.5244412147, + "4263": 4.4932544229, + "4264": 4.4620676312, + "4265": 4.4264171656, + "4266": 4.3907667001, + "4267": 4.3507932569, + "4268": 4.3108198138, + "4269": 4.2666811498, + "4270": 4.2225424859, + "4271": 4.1744127964, + "4272": 4.1262831069, + "4273": 4.0743523377, + "4274": 4.0224215686, + "4275": 3.9668946667, + "4276": 3.9113677648, + "4277": 3.8524638696, + "4278": 3.7935599744, + "4279": 3.7315115526, + "4280": 3.6694631307, + "4281": 3.6045150591, + "4282": 3.5395669874, + "4283": 3.4719755864, + "4284": 3.4043841853, + "4285": 3.3344162071, + "4286": 3.2644482289, + "4287": 3.1923798053, + "4288": 3.1203113817, + "4289": 3.0464269338, + "4290": 2.9725424859, + "4291": 2.8971336019, + "4292": 2.8217247179, + "4293": 2.7450890022, + "4294": 2.6684532865, + "4295": 2.5908931852, + "4296": 2.5133330839, + "4297": 2.4351546914, + "4298": 2.3569762988, + "4299": 2.2784881494, + "4300": 2.2, + "4301": 2.1215118506, + "4302": 2.0430237012, + "4303": 1.9648453086, + "4304": 1.8866669161, + "4305": 1.8091068148, + "4306": 1.7315467135, + "4307": 1.6549109978, + "4308": 1.5782752821, + "4309": 1.5028663981, + "4310": 1.4274575141, + "4311": 1.3535730662, + "4312": 1.2796886183, + "4313": 1.2076201947, + "4314": 1.1355517711, + "4315": 1.0655837929, + "4316": 0.9956158147, + "4317": 0.9280244136, + "4318": 0.8604330126, + "4319": 0.7954849409, + "4320": 0.7305368693, + "4321": 0.6684884474, + "4322": 0.6064400256, + "4323": 0.5475361304, + "4324": 0.4886322352, + "4325": 0.4331053333, + "4326": 0.3775784314, + "4327": 0.3256476623, + "4328": 0.2737168931, + "4329": 0.2255872036, + "4330": 0.1774575141, + "4331": 0.1333188502, + "4332": 0.0891801862, + "4333": 0.0492067431, + "4334": 0.0092332999, + "4335": -0.0264171656, + "4336": -0.0620676312, + "4337": -0.0932544229, + "4338": -0.1244412147, + "4339": -0.1510412527, + "4340": -0.1776412907, + "4341": -0.1995495968, + "4342": -0.2214579028, + "4343": -0.2385880148, + "4344": -0.2557181268, + "4345": -0.2680024401, + "4346": -0.2802867533, + "4347": -0.2876767872, + "4348": -0.2950668211, + "4349": -0.2975334105, + "4350": -0.3, + "4351": -0.2975334105, + "4352": -0.2950668211, + "4353": -0.2876767872, + "4354": -0.2802867533, + "4355": -0.2680024401, + "4356": -0.2557181268, + "4357": -0.2385880148, + "4358": -0.2214579028, + "4359": -0.1995495968, + "4360": -0.1776412907, + "4361": -0.1510412527, + "4362": -0.1244412147, + "4363": -0.0932544229, + "4364": -0.0620676312, + "4365": -0.0264171656, + "4366": 0.0092332999, + "4367": 0.0492067431, + "4368": 0.0891801862, + "4369": 0.1333188502, + "4370": 0.1774575141, + "4371": 0.2255872036, + "4372": 0.2737168931, + "4373": 0.3256476623, + "4374": 0.3775784314, + "4375": 0.4331053333, + "4376": 0.4886322352, + "4377": 0.5475361304, + "4378": 0.6064400256, + "4379": 0.6684884474, + "4380": 0.7305368693, + "4381": 0.7954849409, + "4382": 0.8604330126, + "4383": 0.9280244136, + "4384": 0.9956158147, + "4385": 1.0655837929, + "4386": 1.1355517711, + "4387": 1.2076201947, + "4388": 1.2796886183, + "4389": 1.3535730662, + "4390": 1.4274575141, + "4391": 1.5028663981, + "4392": 1.5782752821, + "4393": 1.6549109978, + "4394": 1.7315467135, + "4395": 1.8091068148, + "4396": 1.8866669161, + "4397": 1.9648453086, + "4398": 2.0430237012, + "4399": 2.1215118506, + "4400": 2.2, + "4401": 2.2784881494, + "4402": 2.3569762988, + "4403": 2.4351546914, + "4404": 2.5133330839, + "4405": 2.5908931852, + "4406": 2.6684532865, + "4407": 2.7450890022, + "4408": 2.8217247179, + "4409": 2.8971336019, + "4410": 2.9725424859, + "4411": 3.0464269338, + "4412": 3.1203113817, + "4413": 3.1923798053, + "4414": 3.2644482289, + "4415": 3.3344162071, + "4416": 3.4043841853, + "4417": 3.4719755864, + "4418": 3.5395669874, + "4419": 3.6045150591, + "4420": 3.6694631307, + "4421": 3.7315115526, + "4422": 3.7935599744, + "4423": 3.8524638696, + "4424": 3.9113677648, + "4425": 3.9668946667, + "4426": 4.0224215686, + "4427": 4.0743523377, + "4428": 4.1262831069, + "4429": 4.1744127964, + "4430": 4.2225424859, + "4431": 4.2666811498, + "4432": 4.3108198138, + "4433": 4.3507932569, + "4434": 4.3907667001, + "4435": 4.4264171656, + "4436": 4.4620676312, + "4437": 4.4932544229, + "4438": 4.5244412147, + "4439": 4.5510412527, + "4440": 4.5776412907, + "4441": 4.5995495968, + "4442": 4.6214579028, + "4443": 4.6385880148, + "4444": 4.6557181268, + "4445": 4.6680024401, + "4446": 4.6802867533, + "4447": 4.6876767872, + "4448": 4.6950668211, + "4449": 4.6975334105, + "4450": 4.7, + "4451": 4.6975334105, + "4452": 4.6950668211, + "4453": 4.6876767872, + "4454": 4.6802867533, + "4455": 4.6680024401, + "4456": 4.6557181268, + "4457": 4.6385880148, + "4458": 4.6214579028, + "4459": 4.5995495968, + "4460": 4.5776412907, + "4461": 4.5510412527, + "4462": 4.5244412147, + "4463": 4.4932544229, + "4464": 4.4620676312, + "4465": 4.4264171656, + "4466": 4.3907667001, + "4467": 4.3507932569, + "4468": 4.3108198138, + "4469": 4.2666811498, + "4470": 4.2225424859, + "4471": 4.1744127964, + "4472": 4.1262831069, + "4473": 4.0743523377, + "4474": 4.0224215686, + "4475": 3.9668946667, + "4476": 3.9113677648, + "4477": 3.8524638696, + "4478": 3.7935599744, + "4479": 3.7315115526, + "4480": 3.6694631307, + "4481": 3.6045150591, + "4482": 3.5395669874, + "4483": 3.4719755864, + "4484": 3.4043841853, + "4485": 3.3344162071, + "4486": 3.2644482289, + "4487": 3.1923798053, + "4488": 3.1203113817, + "4489": 3.0464269338, + "4490": 2.9725424859, + "4491": 2.8971336019, + "4492": 2.8217247179, + "4493": 2.7450890022, + "4494": 2.6684532865, + "4495": 2.5908931852, + "4496": 2.5133330839, + "4497": 2.4351546914, + "4498": 2.3569762988, + "4499": 2.2784881494, + "4500": 2.2, + "4501": 2.1215118506, + "4502": 2.0430237012, + "4503": 1.9648453086, + "4504": 1.8866669161, + "4505": 1.8091068148, + "4506": 1.7315467135, + "4507": 1.6549109978, + "4508": 1.5782752821, + "4509": 1.5028663981, + "4510": 1.4274575141, + "4511": 1.3535730662, + "4512": 1.2796886183, + "4513": 1.2076201947, + "4514": 1.1355517711, + "4515": 1.0655837929, + "4516": 0.9956158147, + "4517": 0.9280244136, + "4518": 0.8604330126, + "4519": 0.7954849409, + "4520": 0.7305368693, + "4521": 0.6684884474, + "4522": 0.6064400256, + "4523": 0.5475361304, + "4524": 0.4886322352, + "4525": 0.4331053333, + "4526": 0.3775784314, + "4527": 0.3256476623, + "4528": 0.2737168931, + "4529": 0.2255872036, + "4530": 0.1774575141, + "4531": 0.1333188502, + "4532": 0.0891801862, + "4533": 0.0492067431, + "4534": 0.0092332999, + "4535": -0.0264171656, + "4536": -0.0620676312, + "4537": -0.0932544229, + "4538": -0.1244412147, + "4539": -0.1510412527, + "4540": -0.1776412907, + "4541": -0.1995495968, + "4542": -0.2214579028, + "4543": -0.2385880148, + "4544": -0.2557181268, + "4545": -0.2680024401, + "4546": -0.2802867533, + "4547": -0.2876767872, + "4548": -0.2950668211, + "4549": -0.2975334105, + "4550": -0.3, + "4551": -0.2975334105, + "4552": -0.2950668211, + "4553": -0.2876767872, + "4554": -0.2802867533, + "4555": -0.2680024401, + "4556": -0.2557181268, + "4557": -0.2385880148, + "4558": -0.2214579028, + "4559": -0.1995495968, + "4560": -0.1776412907, + "4561": -0.1510412527, + "4562": -0.1244412147, + "4563": -0.0932544229, + "4564": -0.0620676312, + "4565": -0.0264171656, + "4566": 0.0092332999, + "4567": 0.0492067431, + "4568": 0.0891801862, + "4569": 0.1333188502, + "4570": 0.1774575141, + "4571": 0.2255872036, + "4572": 0.2737168931, + "4573": 0.3256476623, + "4574": 0.3775784314, + "4575": 0.4331053333, + "4576": 0.4886322352, + "4577": 0.5475361304, + "4578": 0.6064400256, + "4579": 0.6684884474, + "4580": 0.7305368693, + "4581": 0.7954849409, + "4582": 0.8604330126, + "4583": 0.9280244136, + "4584": 0.9956158147, + "4585": 1.0655837929, + "4586": 1.1355517711, + "4587": 1.2076201947, + "4588": 1.2796886183, + "4589": 1.3535730662, + "4590": 1.4274575141, + "4591": 1.5028663981, + "4592": 1.5782752821, + "4593": 1.6549109978, + "4594": 1.7315467135, + "4595": 1.8091068148, + "4596": 1.8866669161, + "4597": 1.9648453086, + "4598": 2.0430237012, + "4599": 2.1215118506, + "4600": 2.2, + "4601": 2.2784881494, + "4602": 2.3569762988, + "4603": 2.4351546914, + "4604": 2.5133330839, + "4605": 2.5908931852, + "4606": 2.6684532865, + "4607": 2.7450890022, + "4608": 2.8217247179, + "4609": 2.8971336019, + "4610": 2.9725424859, + "4611": 3.0464269338, + "4612": 3.1203113817, + "4613": 3.1923798053, + "4614": 3.2644482289, + "4615": 3.3344162071, + "4616": 3.4043841853, + "4617": 3.4719755864, + "4618": 3.5395669874, + "4619": 3.6045150591, + "4620": 3.6694631307, + "4621": 3.7315115526, + "4622": 3.7935599744, + "4623": 3.8524638696, + "4624": 3.9113677648, + "4625": 3.9668946667, + "4626": 4.0224215686, + "4627": 4.0743523377, + "4628": 4.1262831069, + "4629": 4.1744127964, + "4630": 4.2225424859, + "4631": 4.2666811498, + "4632": 4.3108198138, + "4633": 4.3507932569, + "4634": 4.3907667001, + "4635": 4.4264171656, + "4636": 4.4620676312, + "4637": 4.4932544229, + "4638": 4.5244412147, + "4639": 4.5510412527, + "4640": 4.5776412907, + "4641": 4.5995495968, + "4642": 4.6214579028, + "4643": 4.6385880148, + "4644": 4.6557181268, + "4645": 4.6680024401, + "4646": 4.6802867533, + "4647": 4.6876767872, + "4648": 4.6950668211, + "4649": 4.6975334105, + "4650": 4.7, + "4651": 4.6975334105, + "4652": 4.6950668211, + "4653": 4.6876767872, + "4654": 4.6802867533, + "4655": 4.6680024401, + "4656": 4.6557181268, + "4657": 4.6385880148, + "4658": 4.6214579028, + "4659": 4.5995495968, + "4660": 4.5776412907, + "4661": 4.5510412527, + "4662": 4.5244412147, + "4663": 4.4932544229, + "4664": 4.4620676312, + "4665": 4.4264171656, + "4666": 4.3907667001, + "4667": 4.3507932569, + "4668": 4.3108198138, + "4669": 4.2666811498, + "4670": 4.2225424859, + "4671": 4.1744127964, + "4672": 4.1262831069, + "4673": 4.0743523377, + "4674": 4.0224215686, + "4675": 3.9668946667, + "4676": 3.9113677648, + "4677": 3.8524638696, + "4678": 3.7935599744, + "4679": 3.7315115526, + "4680": 3.6694631307, + "4681": 3.6045150591, + "4682": 3.5395669874, + "4683": 3.4719755864, + "4684": 3.4043841853, + "4685": 3.3344162071, + "4686": 3.2644482289, + "4687": 3.1923798053, + "4688": 3.1203113817, + "4689": 3.0464269338, + "4690": 2.9725424859, + "4691": 2.8971336019, + "4692": 2.8217247179, + "4693": 2.7450890022, + "4694": 2.6684532865, + "4695": 2.5908931852, + "4696": 2.5133330839, + "4697": 2.4351546914, + "4698": 2.3569762988, + "4699": 2.2784881494, + "4700": 2.2, + "4701": 2.1215118506, + "4702": 2.0430237012, + "4703": 1.9648453086, + "4704": 1.8866669161, + "4705": 1.8091068148, + "4706": 1.7315467135, + "4707": 1.6549109978, + "4708": 1.5782752821, + "4709": 1.5028663981, + "4710": 1.4274575141, + "4711": 1.3535730662, + "4712": 1.2796886183, + "4713": 1.2076201947, + "4714": 1.1355517711, + "4715": 1.0655837929, + "4716": 0.9956158147, + "4717": 0.9280244136, + "4718": 0.8604330126, + "4719": 0.7954849409, + "4720": 0.7305368693, + "4721": 0.6684884474, + "4722": 0.6064400256, + "4723": 0.5475361304, + "4724": 0.4886322352, + "4725": 0.4331053333, + "4726": 0.3775784314, + "4727": 0.3256476623, + "4728": 0.2737168931, + "4729": 0.2255872036, + "4730": 0.1774575141, + "4731": 0.1333188502, + "4732": 0.0891801862, + "4733": 0.0492067431, + "4734": 0.0092332999, + "4735": -0.0264171656, + "4736": -0.0620676312, + "4737": -0.0932544229, + "4738": -0.1244412147, + "4739": -0.1510412527, + "4740": -0.1776412907, + "4741": -0.1995495968, + "4742": -0.2214579028, + "4743": -0.2385880148, + "4744": -0.2557181268, + "4745": -0.2680024401, + "4746": -0.2802867533, + "4747": -0.2876767872, + "4748": -0.2950668211, + "4749": -0.2975334105, + "4750": -0.3, + "4751": -0.2975334105, + "4752": -0.2950668211, + "4753": -0.2876767872, + "4754": -0.2802867533, + "4755": -0.2680024401, + "4756": -0.2557181268, + "4757": -0.2385880148, + "4758": -0.2214579028, + "4759": -0.1995495968, + "4760": -0.1776412907, + "4761": -0.1510412527, + "4762": -0.1244412147, + "4763": -0.0932544229, + "4764": -0.0620676312, + "4765": -0.0264171656, + "4766": 0.0092332999, + "4767": 0.0492067431, + "4768": 0.0891801862, + "4769": 0.1333188502, + "4770": 0.1774575141, + "4771": 0.2255872036, + "4772": 0.2737168931, + "4773": 0.3256476623, + "4774": 0.3775784314, + "4775": 0.4331053333, + "4776": 0.4886322352, + "4777": 0.5475361304, + "4778": 0.6064400256, + "4779": 0.6684884474, + "4780": 0.7305368693, + "4781": 0.7954849409, + "4782": 0.8604330126, + "4783": 0.9280244136, + "4784": 0.9956158147, + "4785": 1.0655837929, + "4786": 1.1355517711, + "4787": 1.2076201947, + "4788": 1.2796886183, + "4789": 1.3535730662, + "4790": 1.4274575141, + "4791": 1.5028663981, + "4792": 1.5782752821, + "4793": 1.6549109978, + "4794": 1.7315467135, + "4795": 1.8091068148, + "4796": 1.8866669161, + "4797": 1.9648453086, + "4798": 2.0430237012, + "4799": 2.1215118506, + "4800": 2.2, + "4801": 2.2784881494, + "4802": 2.3569762988, + "4803": 2.4351546914, + "4804": 2.5133330839, + "4805": 2.5908931852, + "4806": 2.6684532865, + "4807": 2.7450890022, + "4808": 2.8217247179, + "4809": 2.8971336019, + "4810": 2.9725424859, + "4811": 3.0464269338, + "4812": 3.1203113817, + "4813": 3.1923798053, + "4814": 3.2644482289, + "4815": 3.3344162071, + "4816": 3.4043841853, + "4817": 3.4719755864, + "4818": 3.5395669874, + "4819": 3.6045150591, + "4820": 3.6694631307, + "4821": 3.7315115526, + "4822": 3.7935599744, + "4823": 3.8524638696, + "4824": 3.9113677648, + "4825": 3.9668946667, + "4826": 4.0224215686, + "4827": 4.0743523377, + "4828": 4.1262831069, + "4829": 4.1744127964, + "4830": 4.2225424859, + "4831": 4.2666811498, + "4832": 4.3108198138, + "4833": 4.3507932569, + "4834": 4.3907667001, + "4835": 4.4264171656, + "4836": 4.4620676312, + "4837": 4.4932544229, + "4838": 4.5244412147, + "4839": 4.5510412527, + "4840": 4.5776412907, + "4841": 4.5995495968, + "4842": 4.6214579028, + "4843": 4.6385880148, + "4844": 4.6557181268, + "4845": 4.6680024401, + "4846": 4.6802867533, + "4847": 4.6876767872, + "4848": 4.6950668211, + "4849": 4.6975334105, + "4850": 4.7, + "4851": 4.6975334105, + "4852": 4.6950668211, + "4853": 4.6876767872, + "4854": 4.6802867533, + "4855": 4.6680024401, + "4856": 4.6557181268, + "4857": 4.6385880148, + "4858": 4.6214579028, + "4859": 4.5995495968, + "4860": 4.5776412907, + "4861": 4.5510412527, + "4862": 4.5244412147, + "4863": 4.4932544229, + "4864": 4.4620676312, + "4865": 4.4264171656, + "4866": 4.3907667001, + "4867": 4.3507932569, + "4868": 4.3108198138, + "4869": 4.2666811498, + "4870": 4.2225424859, + "4871": 4.1744127964, + "4872": 4.1262831069, + "4873": 4.0743523377, + "4874": 4.0224215686, + "4875": 3.9668946667, + "4876": 3.9113677648, + "4877": 3.8524638696, + "4878": 3.7935599744, + "4879": 3.7315115526, + "4880": 3.6694631307, + "4881": 3.6045150591, + "4882": 3.5395669874, + "4883": 3.4719755864, + "4884": 3.4043841853, + "4885": 3.3344162071, + "4886": 3.2644482289, + "4887": 3.1923798053, + "4888": 3.1203113817, + "4889": 3.0464269338, + "4890": 2.9725424859, + "4891": 2.8971336019, + "4892": 2.8217247179, + "4893": 2.7450890022, + "4894": 2.6684532865, + "4895": 2.5908931852, + "4896": 2.5133330839, + "4897": 2.4351546914, + "4898": 2.3569762988, + "4899": 2.2784881494, + "4900": 2.2, + "4901": 2.1215118506, + "4902": 2.0430237012, + "4903": 1.9648453086, + "4904": 1.8866669161, + "4905": 1.8091068148, + "4906": 1.7315467135, + "4907": 1.6549109978, + "4908": 1.5782752821, + "4909": 1.5028663981, + "4910": 1.4274575141, + "4911": 1.3535730662, + "4912": 1.2796886183, + "4913": 1.2076201947, + "4914": 1.1355517711, + "4915": 1.0655837929, + "4916": 0.9956158147, + "4917": 0.9280244136, + "4918": 0.8604330126, + "4919": 0.7954849409, + "4920": 0.7305368693, + "4921": 0.6684884474, + "4922": 0.6064400256, + "4923": 0.5475361304, + "4924": 0.4886322352, + "4925": 0.4331053333, + "4926": 0.3775784314, + "4927": 0.3256476623, + "4928": 0.2737168931, + "4929": 0.2255872036, + "4930": 0.1774575141, + "4931": 0.1333188502, + "4932": 0.0891801862, + "4933": 0.0492067431, + "4934": 0.0092332999, + "4935": -0.0264171656, + "4936": -0.0620676312, + "4937": -0.0932544229, + "4938": -0.1244412147, + "4939": -0.1510412527, + "4940": -0.1776412907, + "4941": -0.1995495968, + "4942": -0.2214579028, + "4943": -0.2385880148, + "4944": -0.2557181268, + "4945": -0.2680024401, + "4946": -0.2802867533, + "4947": -0.2876767872, + "4948": -0.2950668211, + "4949": -0.2975334105, + "4950": -0.3, + "4951": -0.2975334105, + "4952": -0.2950668211, + "4953": -0.2876767872, + "4954": -0.2802867533, + "4955": -0.2680024401, + "4956": -0.2557181268, + "4957": -0.2385880148, + "4958": -0.2214579028, + "4959": -0.1995495968, + "4960": -0.1776412907, + "4961": -0.1510412527, + "4962": -0.1244412147, + "4963": -0.0932544229, + "4964": -0.0620676312, + "4965": -0.0264171656, + "4966": 0.0092332999, + "4967": 0.0492067431, + "4968": 0.0891801862, + "4969": 0.1333188502, + "4970": 0.1774575141, + "4971": 0.2255872036, + "4972": 0.2737168931, + "4973": 0.3256476623, + "4974": 0.3775784314, + "4975": 0.4331053333, + "4976": 0.4886322352, + "4977": 0.5475361304, + "4978": 0.6064400256, + "4979": 0.6684884474, + "4980": 0.7305368693, + "4981": 0.7954849409, + "4982": 0.8604330126, + "4983": 0.9280244136, + "4984": 0.9956158147, + "4985": 1.0655837929, + "4986": 1.1355517711, + "4987": 1.2076201947, + "4988": 1.2796886183, + "4989": 1.3535730662, + "4990": 1.4274575141, + "4991": 1.5028663981, + "4992": 1.5782752821, + "4993": 1.6549109978, + "4994": 1.7315467135, + "4995": 1.8091068148, + "4996": 1.8866669161, + "4997": 1.9648453086, + "4998": 2.0430237012, + "4999": 2.1215118506, + "5000": 2.2, + "5001": 2.2784881494, + "5002": 2.3569762988, + "5003": 2.4351546914, + "5004": 2.5133330839, + "5005": 2.5908931852, + "5006": 2.6684532865, + "5007": 2.7450890022, + "5008": 2.8217247179, + "5009": 2.8971336019, + "5010": 2.9725424859, + "5011": 3.0464269338, + "5012": 3.1203113817, + "5013": 3.1923798053, + "5014": 3.2644482289, + "5015": 3.3344162071, + "5016": 3.4043841853, + "5017": 3.4719755864, + "5018": 3.5395669874, + "5019": 3.6045150591, + "5020": 3.6694631307, + "5021": 3.7315115526, + "5022": 3.7935599744, + "5023": 3.8524638696, + "5024": 3.9113677648, + "5025": 3.9668946667, + "5026": 4.0224215686, + "5027": 4.0743523377, + "5028": 4.1262831069, + "5029": 4.1744127964, + "5030": 4.2225424859, + "5031": 4.2666811498, + "5032": 4.3108198138, + "5033": 4.3507932569, + "5034": 4.3907667001, + "5035": 4.4264171656, + "5036": 4.4620676312, + "5037": 4.4932544229, + "5038": 4.5244412147, + "5039": 4.5510412527, + "5040": 4.5776412907, + "5041": 4.5995495968, + "5042": 4.6214579028, + "5043": 4.6385880148, + "5044": 4.6557181268, + "5045": 4.6680024401, + "5046": 4.6802867533, + "5047": 4.6876767872, + "5048": 4.6950668211, + "5049": 4.6975334105, + "5050": 4.7, + "5051": 4.6975334105, + "5052": 4.6950668211, + "5053": 4.6876767872, + "5054": 4.6802867533, + "5055": 4.6680024401, + "5056": 4.6557181268, + "5057": 4.6385880148, + "5058": 4.6214579028, + "5059": 4.5995495968, + "5060": 4.5776412907, + "5061": 4.5510412527, + "5062": 4.5244412147, + "5063": 4.4932544229, + "5064": 4.4620676312, + "5065": 4.4264171656, + "5066": 4.3907667001, + "5067": 4.3507932569, + "5068": 4.3108198138, + "5069": 4.2666811498, + "5070": 4.2225424859, + "5071": 4.1744127964, + "5072": 4.1262831069, + "5073": 4.0743523377, + "5074": 4.0224215686, + "5075": 3.9668946667, + "5076": 3.9113677648, + "5077": 3.8524638696, + "5078": 3.7935599744, + "5079": 3.7315115526, + "5080": 3.6694631307, + "5081": 3.6045150591, + "5082": 3.5395669874, + "5083": 3.4719755864, + "5084": 3.4043841853, + "5085": 3.3344162071, + "5086": 3.2644482289, + "5087": 3.1923798053, + "5088": 3.1203113817, + "5089": 3.0464269338, + "5090": 2.9725424859, + "5091": 2.8971336019, + "5092": 2.8217247179, + "5093": 2.7450890022, + "5094": 2.6684532865, + "5095": 2.5908931852, + "5096": 2.5133330839, + "5097": 2.4351546914, + "5098": 2.3569762988, + "5099": 2.2784881494, + "5100": 2.2, + "5101": 2.1215118506, + "5102": 2.0430237012, + "5103": 1.9648453086, + "5104": 1.8866669161, + "5105": 1.8091068148, + "5106": 1.7315467135, + "5107": 1.6549109978, + "5108": 1.5782752821, + "5109": 1.5028663981, + "5110": 1.4274575141, + "5111": 1.3535730662, + "5112": 1.2796886183, + "5113": 1.2076201947, + "5114": 1.1355517711, + "5115": 1.0655837929, + "5116": 0.9956158147, + "5117": 0.9280244136, + "5118": 0.8604330126, + "5119": 0.7954849409, + "5120": 0.7305368693, + "5121": 0.6684884474, + "5122": 0.6064400256, + "5123": 0.5475361304, + "5124": 0.4886322352, + "5125": 0.4331053333, + "5126": 0.3775784314, + "5127": 0.3256476623, + "5128": 0.2737168931, + "5129": 0.2255872036, + "5130": 0.1774575141, + "5131": 0.1333188502, + "5132": 0.0891801862, + "5133": 0.0492067431, + "5134": 0.0092332999, + "5135": -0.0264171656, + "5136": -0.0620676312, + "5137": -0.0932544229, + "5138": -0.1244412147, + "5139": -0.1510412527, + "5140": -0.1776412907, + "5141": -0.1995495968, + "5142": -0.2214579028, + "5143": -0.2385880148, + "5144": -0.2557181268, + "5145": -0.2680024401, + "5146": -0.2802867533, + "5147": -0.2876767872, + "5148": -0.2950668211, + "5149": -0.2975334105, + "5150": -0.3, + "5151": -0.2975334105, + "5152": -0.2950668211, + "5153": -0.2876767872, + "5154": -0.2802867533, + "5155": -0.2680024401, + "5156": -0.2557181268, + "5157": -0.2385880148, + "5158": -0.2214579028, + "5159": -0.1995495968, + "5160": -0.1776412907, + "5161": -0.1510412527, + "5162": -0.1244412147, + "5163": -0.0932544229, + "5164": -0.0620676312, + "5165": -0.0264171656, + "5166": 0.0092332999, + "5167": 0.0492067431, + "5168": 0.0891801862, + "5169": 0.1333188502, + "5170": 0.1774575141, + "5171": 0.2255872036, + "5172": 0.2737168931, + "5173": 0.3256476623, + "5174": 0.3775784314, + "5175": 0.4331053333, + "5176": 0.4886322352, + "5177": 0.5475361304, + "5178": 0.6064400256, + "5179": 0.6684884474, + "5180": 0.7305368693, + "5181": 0.7954849409, + "5182": 0.8604330126, + "5183": 0.9280244136, + "5184": 0.9956158147, + "5185": 1.0655837929, + "5186": 1.1355517711, + "5187": 1.2076201947, + "5188": 1.2796886183, + "5189": 1.3535730662, + "5190": 1.4274575141, + "5191": 1.5028663981, + "5192": 1.5782752821, + "5193": 1.6549109978, + "5194": 1.7315467135, + "5195": 1.8091068148, + "5196": 1.8866669161, + "5197": 1.9648453086, + "5198": 2.0430237012, + "5199": 2.1215118506, + "5200": 2.2, + "5201": 2.2784881494, + "5202": 2.3569762988, + "5203": 2.4351546914, + "5204": 2.5133330839, + "5205": 2.5908931852, + "5206": 2.6684532865, + "5207": 2.7450890022, + "5208": 2.8217247179, + "5209": 2.8971336019, + "5210": 2.9725424859, + "5211": 3.0464269338, + "5212": 3.1203113817, + "5213": 3.1923798053, + "5214": 3.2644482289, + "5215": 3.3344162071, + "5216": 3.4043841853, + "5217": 3.4719755864, + "5218": 3.5395669874, + "5219": 3.6045150591, + "5220": 3.6694631307, + "5221": 3.7315115526, + "5222": 3.7935599744, + "5223": 3.8524638696, + "5224": 3.9113677648, + "5225": 3.9668946667, + "5226": 4.0224215686, + "5227": 4.0743523377, + "5228": 4.1262831069, + "5229": 4.1744127964, + "5230": 4.2225424859, + "5231": 4.2666811498, + "5232": 4.3108198138, + "5233": 4.3507932569, + "5234": 4.3907667001, + "5235": 4.4264171656, + "5236": 4.4620676312, + "5237": 4.4932544229, + "5238": 4.5244412147, + "5239": 4.5510412527, + "5240": 4.5776412907, + "5241": 4.5995495968, + "5242": 4.6214579028, + "5243": 4.6385880148, + "5244": 4.6557181268, + "5245": 4.6680024401, + "5246": 4.6802867533, + "5247": 4.6876767872, + "5248": 4.6950668211, + "5249": 4.6975334105, + "5250": 4.7, + "5251": 4.6975334105, + "5252": 4.6950668211, + "5253": 4.6876767872, + "5254": 4.6802867533, + "5255": 4.6680024401, + "5256": 4.6557181268, + "5257": 4.6385880148, + "5258": 4.6214579028, + "5259": 4.5995495968, + "5260": 4.5776412907, + "5261": 4.5510412527, + "5262": 4.5244412147, + "5263": 4.4932544229, + "5264": 4.4620676312, + "5265": 4.4264171656, + "5266": 4.3907667001, + "5267": 4.3507932569, + "5268": 4.3108198138, + "5269": 4.2666811498, + "5270": 4.2225424859, + "5271": 4.1744127964, + "5272": 4.1262831069, + "5273": 4.0743523377, + "5274": 4.0224215686, + "5275": 3.9668946667, + "5276": 3.9113677648, + "5277": 3.8524638696, + "5278": 3.7935599744, + "5279": 3.7315115526, + "5280": 3.6694631307, + "5281": 3.6045150591, + "5282": 3.5395669874, + "5283": 3.4719755864, + "5284": 3.4043841853, + "5285": 3.3344162071, + "5286": 3.2644482289, + "5287": 3.1923798053, + "5288": 3.1203113817, + "5289": 3.0464269338, + "5290": 2.9725424859, + "5291": 2.8971336019, + "5292": 2.8217247179, + "5293": 2.7450890022, + "5294": 2.6684532865, + "5295": 2.5908931852, + "5296": 2.5133330839, + "5297": 2.4351546914, + "5298": 2.3569762988, + "5299": 2.2784881494, + "5300": 2.2, + "5301": 2.1215118506, + "5302": 2.0430237012, + "5303": 1.9648453086, + "5304": 1.8866669161, + "5305": 1.8091068148, + "5306": 1.7315467135, + "5307": 1.6549109978, + "5308": 1.5782752821, + "5309": 1.5028663981, + "5310": 1.4274575141, + "5311": 1.3535730662, + "5312": 1.2796886183, + "5313": 1.2076201947, + "5314": 1.1355517711, + "5315": 1.0655837929, + "5316": 0.9956158147, + "5317": 0.9280244136, + "5318": 0.8604330126, + "5319": 0.7954849409, + "5320": 0.7305368693, + "5321": 0.6684884474, + "5322": 0.6064400256, + "5323": 0.5475361304, + "5324": 0.4886322352, + "5325": 0.4331053333, + "5326": 0.3775784314, + "5327": 0.3256476623, + "5328": 0.2737168931, + "5329": 0.2255872036, + "5330": 0.1774575141, + "5331": 0.1333188502, + "5332": 0.0891801862, + "5333": 0.0492067431, + "5334": 0.0092332999, + "5335": -0.0264171656, + "5336": -0.0620676312, + "5337": -0.0932544229, + "5338": -0.1244412147, + "5339": -0.1510412527, + "5340": -0.1776412907, + "5341": -0.1995495968, + "5342": -0.2214579028, + "5343": -0.2385880148, + "5344": -0.2557181268, + "5345": -0.2680024401, + "5346": -0.2802867533, + "5347": -0.2876767872, + "5348": -0.2950668211, + "5349": -0.2975334105, + "5350": -0.3, + "5351": -0.2975334105, + "5352": -0.2950668211, + "5353": -0.2876767872, + "5354": -0.2802867533, + "5355": -0.2680024401, + "5356": -0.2557181268, + "5357": -0.2385880148, + "5358": -0.2214579028, + "5359": -0.1995495968, + "5360": -0.1776412907, + "5361": -0.1510412527, + "5362": -0.1244412147, + "5363": -0.0932544229, + "5364": -0.0620676312, + "5365": -0.0264171656, + "5366": 0.0092332999, + "5367": 0.0492067431, + "5368": 0.0891801862, + "5369": 0.1333188502, + "5370": 0.1774575141, + "5371": 0.2255872036, + "5372": 0.2737168931, + "5373": 0.3256476623, + "5374": 0.3775784314, + "5375": 0.4331053333, + "5376": 0.4886322352, + "5377": 0.5475361304, + "5378": 0.6064400256, + "5379": 0.6684884474, + "5380": 0.7305368693, + "5381": 0.7954849409, + "5382": 0.8604330126, + "5383": 0.9280244136, + "5384": 0.9956158147, + "5385": 1.0655837929, + "5386": 1.1355517711, + "5387": 1.2076201947, + "5388": 1.2796886183, + "5389": 1.3535730662, + "5390": 1.4274575141, + "5391": 1.5028663981, + "5392": 1.5782752821, + "5393": 1.6549109978, + "5394": 1.7315467135, + "5395": 1.8091068148, + "5396": 1.8866669161, + "5397": 1.9648453086, + "5398": 2.0430237012, + "5399": 2.1215118506, + "5400": 2.2, + "5401": 2.2784881494, + "5402": 2.3569762988, + "5403": 2.4351546914, + "5404": 2.5133330839, + "5405": 2.5908931852, + "5406": 2.6684532865, + "5407": 2.7450890022, + "5408": 2.8217247179, + "5409": 2.8971336019, + "5410": 2.9725424859, + "5411": 3.0464269338, + "5412": 3.1203113817, + "5413": 3.1923798053, + "5414": 3.2644482289, + "5415": 3.3344162071, + "5416": 3.4043841853, + "5417": 3.4719755864, + "5418": 3.5395669874, + "5419": 3.6045150591, + "5420": 3.6694631307, + "5421": 3.7315115526, + "5422": 3.7935599744, + "5423": 3.8524638696, + "5424": 3.9113677648, + "5425": 3.9668946667, + "5426": 4.0224215686, + "5427": 4.0743523377, + "5428": 4.1262831069, + "5429": 4.1744127964, + "5430": 4.2225424859, + "5431": 4.2666811498, + "5432": 4.3108198138, + "5433": 4.3507932569, + "5434": 4.3907667001, + "5435": 4.4264171656, + "5436": 4.4620676312, + "5437": 4.4932544229, + "5438": 4.5244412147, + "5439": 4.5510412527, + "5440": 4.5776412907, + "5441": 4.5995495968, + "5442": 4.6214579028, + "5443": 4.6385880148, + "5444": 4.6557181268, + "5445": 4.6680024401, + "5446": 4.6802867533, + "5447": 4.6876767872, + "5448": 4.6950668211, + "5449": 4.6975334105, + "5450": 4.7, + "5451": 4.6975334105, + "5452": 4.6950668211, + "5453": 4.6876767872, + "5454": 4.6802867533, + "5455": 4.6680024401, + "5456": 4.6557181268, + "5457": 4.6385880148, + "5458": 4.6214579028, + "5459": 4.5995495968, + "5460": 4.5776412907, + "5461": 4.5510412527, + "5462": 4.5244412147, + "5463": 4.4932544229, + "5464": 4.4620676312, + "5465": 4.4264171656, + "5466": 4.3907667001, + "5467": 4.3507932569, + "5468": 4.3108198138, + "5469": 4.2666811498, + "5470": 4.2225424859, + "5471": 4.1744127964, + "5472": 4.1262831069, + "5473": 4.0743523377, + "5474": 4.0224215686, + "5475": 3.9668946667, + "5476": 3.9113677648, + "5477": 3.8524638696, + "5478": 3.7935599744, + "5479": 3.7315115526, + "5480": 3.6694631307, + "5481": 3.6045150591, + "5482": 3.5395669874, + "5483": 3.4719755864, + "5484": 3.4043841853, + "5485": 3.3344162071, + "5486": 3.2644482289, + "5487": 3.1923798053, + "5488": 3.1203113817, + "5489": 3.0464269338, + "5490": 2.9725424859, + "5491": 2.8971336019, + "5492": 2.8217247179, + "5493": 2.7450890022, + "5494": 2.6684532865, + "5495": 2.5908931852, + "5496": 2.5133330839, + "5497": 2.4351546914, + "5498": 2.3569762988, + "5499": 2.2784881494, + "5500": 2.2, + "5501": 2.1215118506, + "5502": 2.0430237012, + "5503": 1.9648453086, + "5504": 1.8866669161, + "5505": 1.8091068148, + "5506": 1.7315467135, + "5507": 1.6549109978, + "5508": 1.5782752821, + "5509": 1.5028663981, + "5510": 1.4274575141, + "5511": 1.3535730662, + "5512": 1.2796886183, + "5513": 1.2076201947, + "5514": 1.1355517711, + "5515": 1.0655837929, + "5516": 0.9956158147, + "5517": 0.9280244136, + "5518": 0.8604330126, + "5519": 0.7954849409, + "5520": 0.7305368693, + "5521": 0.6684884474, + "5522": 0.6064400256, + "5523": 0.5475361304, + "5524": 0.4886322352, + "5525": 0.4331053333, + "5526": 0.3775784314, + "5527": 0.3256476623, + "5528": 0.2737168931, + "5529": 0.2255872036, + "5530": 0.1774575141, + "5531": 0.1333188502, + "5532": 0.0891801862, + "5533": 0.0492067431, + "5534": 0.0092332999, + "5535": -0.0264171656, + "5536": -0.0620676312, + "5537": -0.0932544229, + "5538": -0.1244412147, + "5539": -0.1510412527, + "5540": -0.1776412907, + "5541": -0.1995495968, + "5542": -0.2214579028, + "5543": -0.2385880148, + "5544": -0.2557181268, + "5545": -0.2680024401, + "5546": -0.2802867533, + "5547": -0.2876767872, + "5548": -0.2950668211, + "5549": -0.2975334105, + "5550": -0.3, + "5551": -0.2975334105, + "5552": -0.2950668211, + "5553": -0.2876767872, + "5554": -0.2802867533, + "5555": -0.2680024401, + "5556": -0.2557181268, + "5557": -0.2385880148, + "5558": -0.2214579028, + "5559": -0.1995495968, + "5560": -0.1776412907, + "5561": -0.1510412527, + "5562": -0.1244412147, + "5563": -0.0932544229, + "5564": -0.0620676312, + "5565": -0.0264171656, + "5566": 0.0092332999, + "5567": 0.0492067431, + "5568": 0.0891801862, + "5569": 0.1333188502, + "5570": 0.1774575141, + "5571": 0.2255872036, + "5572": 0.2737168931, + "5573": 0.3256476623, + "5574": 0.3775784314, + "5575": 0.4331053333, + "5576": 0.4886322352, + "5577": 0.5475361304, + "5578": 0.6064400256, + "5579": 0.6684884474, + "5580": 0.7305368693, + "5581": 0.7954849409, + "5582": 0.8604330126, + "5583": 0.9280244136, + "5584": 0.9956158147, + "5585": 1.0655837929, + "5586": 1.1355517711, + "5587": 1.2076201947, + "5588": 1.2796886183, + "5589": 1.3535730662, + "5590": 1.4274575141, + "5591": 1.5028663981, + "5592": 1.5782752821, + "5593": 1.6549109978, + "5594": 1.7315467135, + "5595": 1.8091068148, + "5596": 1.8866669161, + "5597": 1.9648453086, + "5598": 2.0430237012, + "5599": 2.1215118506, + "5600": 2.2, + "5601": 2.2784881494, + "5602": 2.3569762988, + "5603": 2.4351546914, + "5604": 2.5133330839, + "5605": 2.5908931852, + "5606": 2.6684532865, + "5607": 2.7450890022, + "5608": 2.8217247179, + "5609": 2.8971336019, + "5610": 2.9725424859, + "5611": 3.0464269338, + "5612": 3.1203113817, + "5613": 3.1923798053, + "5614": 3.2644482289, + "5615": 3.3344162071, + "5616": 3.4043841853, + "5617": 3.4719755864, + "5618": 3.5395669874, + "5619": 3.6045150591, + "5620": 3.6694631307, + "5621": 3.7315115526, + "5622": 3.7935599744, + "5623": 3.8524638696, + "5624": 3.9113677648, + "5625": 3.9668946667, + "5626": 4.0224215686, + "5627": 4.0743523377, + "5628": 4.1262831069, + "5629": 4.1744127964, + "5630": 4.2225424859, + "5631": 4.2666811498, + "5632": 4.3108198138, + "5633": 4.3507932569, + "5634": 4.3907667001, + "5635": 4.4264171656, + "5636": 4.4620676312, + "5637": 4.4932544229, + "5638": 4.5244412147, + "5639": 4.5510412527, + "5640": 4.5776412907, + "5641": 4.5995495968, + "5642": 4.6214579028, + "5643": 4.6385880148, + "5644": 4.6557181268, + "5645": 4.6680024401, + "5646": 4.6802867533, + "5647": 4.6876767872, + "5648": 4.6950668211, + "5649": 4.6975334105, + "5650": 4.7, + "5651": 4.6975334105, + "5652": 4.6950668211, + "5653": 4.6876767872, + "5654": 4.6802867533, + "5655": 4.6680024401, + "5656": 4.6557181268, + "5657": 4.6385880148, + "5658": 4.6214579028, + "5659": 4.5995495968, + "5660": 4.5776412907, + "5661": 4.5510412527, + "5662": 4.5244412147, + "5663": 4.4932544229, + "5664": 4.4620676312, + "5665": 4.4264171656, + "5666": 4.3907667001, + "5667": 4.3507932569, + "5668": 4.3108198138, + "5669": 4.2666811498, + "5670": 4.2225424859, + "5671": 4.1744127964, + "5672": 4.1262831069, + "5673": 4.0743523377, + "5674": 4.0224215686, + "5675": 3.9668946667, + "5676": 3.9113677648, + "5677": 3.8524638696, + "5678": 3.7935599744, + "5679": 3.7315115526, + "5680": 3.6694631307, + "5681": 3.6045150591, + "5682": 3.5395669874, + "5683": 3.4719755864, + "5684": 3.4043841853, + "5685": 3.3344162071, + "5686": 3.2644482289, + "5687": 3.1923798053, + "5688": 3.1203113817, + "5689": 3.0464269338, + "5690": 2.9725424859, + "5691": 2.8971336019, + "5692": 2.8217247179, + "5693": 2.7450890022, + "5694": 2.6684532865, + "5695": 2.5908931852, + "5696": 2.5133330839, + "5697": 2.4351546914, + "5698": 2.3569762988, + "5699": 2.2784881494, + "5700": 2.2, + "5701": 2.1215118506, + "5702": 2.0430237012, + "5703": 1.9648453086, + "5704": 1.8866669161, + "5705": 1.8091068148, + "5706": 1.7315467135, + "5707": 1.6549109978, + "5708": 1.5782752821, + "5709": 1.5028663981, + "5710": 1.4274575141, + "5711": 1.3535730662, + "5712": 1.2796886183, + "5713": 1.2076201947, + "5714": 1.1355517711, + "5715": 1.0655837929, + "5716": 0.9956158147, + "5717": 0.9280244136, + "5718": 0.8604330126, + "5719": 0.7954849409, + "5720": 0.7305368693, + "5721": 0.6684884474, + "5722": 0.6064400256, + "5723": 0.5475361304, + "5724": 0.4886322352, + "5725": 0.4331053333, + "5726": 0.3775784314, + "5727": 0.3256476623, + "5728": 0.2737168931, + "5729": 0.2255872036, + "5730": 0.1774575141, + "5731": 0.1333188502, + "5732": 0.0891801862, + "5733": 0.0492067431, + "5734": 0.0092332999, + "5735": -0.0264171656, + "5736": -0.0620676312, + "5737": -0.0932544229, + "5738": -0.1244412147, + "5739": -0.1510412527, + "5740": -0.1776412907, + "5741": -0.1995495968, + "5742": -0.2214579028, + "5743": -0.2385880148, + "5744": -0.2557181268, + "5745": -0.2680024401, + "5746": -0.2802867533, + "5747": -0.2876767872, + "5748": -0.2950668211, + "5749": -0.2975334105, + "5750": -0.3, + "5751": -0.2975334105, + "5752": -0.2950668211, + "5753": -0.2876767872, + "5754": -0.2802867533, + "5755": -0.2680024401, + "5756": -0.2557181268, + "5757": -0.2385880148, + "5758": -0.2214579028, + "5759": -0.1995495968, + "5760": -0.1776412907, + "5761": -0.1510412527, + "5762": -0.1244412147, + "5763": -0.0932544229, + "5764": -0.0620676312, + "5765": -0.0264171656, + "5766": 0.0092332999, + "5767": 0.0492067431, + "5768": 0.0891801862, + "5769": 0.1333188502, + "5770": 0.1774575141, + "5771": 0.2255872036, + "5772": 0.2737168931, + "5773": 0.3256476623, + "5774": 0.3775784314, + "5775": 0.4331053333, + "5776": 0.4886322352, + "5777": 0.5475361304, + "5778": 0.6064400256, + "5779": 0.6684884474, + "5780": 0.7305368693, + "5781": 0.7954849409, + "5782": 0.8604330126, + "5783": 0.9280244136, + "5784": 0.9956158147, + "5785": 1.0655837929, + "5786": 1.1355517711, + "5787": 1.2076201947, + "5788": 1.2796886183, + "5789": 1.3535730662, + "5790": 1.4274575141, + "5791": 1.5028663981, + "5792": 1.5782752821, + "5793": 1.6549109978, + "5794": 1.7315467135, + "5795": 1.8091068148, + "5796": 1.8866669161, + "5797": 1.9648453086, + "5798": 2.0430237012, + "5799": 2.1215118506, + "5800": 2.2, + "5801": 2.2784881494, + "5802": 2.3569762988, + "5803": 2.4351546914, + "5804": 2.5133330839, + "5805": 2.5908931852, + "5806": 2.6684532865, + "5807": 2.7450890022, + "5808": 2.8217247179, + "5809": 2.8971336019, + "5810": 2.9725424859, + "5811": 3.0464269338, + "5812": 3.1203113817, + "5813": 3.1923798053, + "5814": 3.2644482289, + "5815": 3.3344162071, + "5816": 3.4043841853, + "5817": 3.4719755864, + "5818": 3.5395669874, + "5819": 3.6045150591, + "5820": 3.6694631307, + "5821": 3.7315115526, + "5822": 3.7935599744, + "5823": 3.8524638696, + "5824": 3.9113677648, + "5825": 3.9668946667, + "5826": 4.0224215686, + "5827": 4.0743523377, + "5828": 4.1262831069, + "5829": 4.1744127964, + "5830": 4.2225424859, + "5831": 4.2666811498, + "5832": 4.3108198138, + "5833": 4.3507932569, + "5834": 4.3907667001, + "5835": 4.4264171656, + "5836": 4.4620676312, + "5837": 4.4932544229, + "5838": 4.5244412147, + "5839": 4.5510412527, + "5840": 4.5776412907, + "5841": 4.5995495968, + "5842": 4.6214579028, + "5843": 4.6385880148, + "5844": 4.6557181268, + "5845": 4.6680024401, + "5846": 4.6802867533, + "5847": 4.6876767872, + "5848": 4.6950668211, + "5849": 4.6975334105, + "5850": 4.7, + "5851": 4.6975334105, + "5852": 4.6950668211, + "5853": 4.6876767872, + "5854": 4.6802867533, + "5855": 4.6680024401, + "5856": 4.6557181268, + "5857": 4.6385880148, + "5858": 4.6214579028, + "5859": 4.5995495968, + "5860": 4.5776412907, + "5861": 4.5510412527, + "5862": 4.5244412147, + "5863": 4.4932544229, + "5864": 4.4620676312, + "5865": 4.4264171656, + "5866": 4.3907667001, + "5867": 4.3507932569, + "5868": 4.3108198138, + "5869": 4.2666811498, + "5870": 4.2225424859, + "5871": 4.1744127964, + "5872": 4.1262831069, + "5873": 4.0743523377, + "5874": 4.0224215686, + "5875": 3.9668946667, + "5876": 3.9113677648, + "5877": 3.8524638696, + "5878": 3.7935599744, + "5879": 3.7315115526, + "5880": 3.6694631307, + "5881": 3.6045150591, + "5882": 3.5395669874, + "5883": 3.4719755864, + "5884": 3.4043841853, + "5885": 3.3344162071, + "5886": 3.2644482289, + "5887": 3.1923798053, + "5888": 3.1203113817, + "5889": 3.0464269338, + "5890": 2.9725424859, + "5891": 2.8971336019, + "5892": 2.8217247179, + "5893": 2.7450890022, + "5894": 2.6684532865, + "5895": 2.5908931852, + "5896": 2.5133330839, + "5897": 2.4351546914, + "5898": 2.3569762988, + "5899": 2.2784881494, + "5900": 2.2, + "5901": 2.1215118506, + "5902": 2.0430237012, + "5903": 1.9648453086, + "5904": 1.8866669161, + "5905": 1.8091068148, + "5906": 1.7315467135, + "5907": 1.6549109978, + "5908": 1.5782752821, + "5909": 1.5028663981, + "5910": 1.4274575141, + "5911": 1.3535730662, + "5912": 1.2796886183, + "5913": 1.2076201947, + "5914": 1.1355517711, + "5915": 1.0655837929, + "5916": 0.9956158147, + "5917": 0.9280244136, + "5918": 0.8604330126, + "5919": 0.7954849409, + "5920": 0.7305368693, + "5921": 0.6684884474, + "5922": 0.6064400256, + "5923": 0.5475361304, + "5924": 0.4886322352, + "5925": 0.4331053333, + "5926": 0.3775784314, + "5927": 0.3256476623, + "5928": 0.2737168931, + "5929": 0.2255872036, + "5930": 0.1774575141, + "5931": 0.1333188502, + "5932": 0.0891801862, + "5933": 0.0492067431, + "5934": 0.0092332999, + "5935": -0.0264171656, + "5936": -0.0620676312, + "5937": -0.0932544229, + "5938": -0.1244412147, + "5939": -0.1510412527, + "5940": -0.1776412907, + "5941": -0.1995495968, + "5942": -0.2214579028, + "5943": -0.2385880148, + "5944": -0.2557181268, + "5945": -0.2680024401, + "5946": -0.2802867533, + "5947": -0.2876767872, + "5948": -0.2950668211, + "5949": -0.2975334105, + "5950": -0.3, + "5951": -0.2975334105, + "5952": -0.2950668211, + "5953": -0.2876767872, + "5954": -0.2802867533, + "5955": -0.2680024401, + "5956": -0.2557181268, + "5957": -0.2385880148, + "5958": -0.2214579028, + "5959": -0.1995495968, + "5960": -0.1776412907, + "5961": -0.1510412527, + "5962": -0.1244412147, + "5963": -0.0932544229, + "5964": -0.0620676312, + "5965": -0.0264171656, + "5966": 0.0092332999, + "5967": 0.0492067431, + "5968": 0.0891801862, + "5969": 0.1333188502, + "5970": 0.1774575141, + "5971": 0.2255872036, + "5972": 0.2737168931, + "5973": 0.3256476623, + "5974": 0.3775784314, + "5975": 0.4331053333, + "5976": 0.4886322352, + "5977": 0.5475361304, + "5978": 0.6064400256, + "5979": 0.6684884474, + "5980": 0.7305368693, + "5981": 0.7954849409, + "5982": 0.8604330126, + "5983": 0.9280244136, + "5984": 0.9956158147, + "5985": 1.0655837929, + "5986": 1.1355517711, + "5987": 1.2076201947, + "5988": 1.2796886183, + "5989": 1.3535730662, + "5990": 1.4274575141, + "5991": 1.5028663981, + "5992": 1.5782752821, + "5993": 1.6549109978, + "5994": 1.7315467135, + "5995": 1.8091068148, + "5996": 1.8866669161, + "5997": 1.9648453086, + "5998": 2.0430237012, + "5999": 2.1215118506, + "6000": 2.2, + "6001": 2.2784881494, + "6002": 2.3569762988, + "6003": 2.4351546914, + "6004": 2.5133330839, + "6005": 2.5908931852, + "6006": 2.6684532865, + "6007": 2.7450890022, + "6008": 2.8217247179, + "6009": 2.8971336019, + "6010": 2.9725424859, + "6011": 3.0464269338, + "6012": 3.1203113817, + "6013": 3.1923798053, + "6014": 3.2644482289, + "6015": 3.3344162071, + "6016": 3.4043841853, + "6017": 3.4719755864, + "6018": 3.5395669874, + "6019": 3.6045150591, + "6020": 3.6694631307, + "6021": 3.7315115526, + "6022": 3.7935599744, + "6023": 3.8524638696, + "6024": 3.9113677648, + "6025": 3.9668946667, + "6026": 4.0224215686, + "6027": 4.0743523377, + "6028": 4.1262831069, + "6029": 4.1744127964, + "6030": 4.2225424859, + "6031": 4.2666811498, + "6032": 4.3108198138, + "6033": 4.3507932569, + "6034": 4.3907667001, + "6035": 4.4264171656, + "6036": 4.4620676312, + "6037": 4.4932544229, + "6038": 4.5244412147, + "6039": 4.5510412527, + "6040": 4.5776412907, + "6041": 4.5995495968, + "6042": 4.6214579028, + "6043": 4.6385880148, + "6044": 4.6557181268, + "6045": 4.6680024401, + "6046": 4.6802867533, + "6047": 4.6876767872, + "6048": 4.6950668211, + "6049": 4.6975334105, + "6050": 4.7, + "6051": 4.6975334105, + "6052": 4.6950668211, + "6053": 4.6876767872, + "6054": 4.6802867533, + "6055": 4.6680024401, + "6056": 4.6557181268, + "6057": 4.6385880148, + "6058": 4.6214579028, + "6059": 4.5995495968, + "6060": 4.5776412907, + "6061": 4.5510412527, + "6062": 4.5244412147, + "6063": 4.4932544229, + "6064": 4.4620676312, + "6065": 4.4264171656, + "6066": 4.3907667001, + "6067": 4.3507932569, + "6068": 4.3108198138, + "6069": 4.2666811498, + "6070": 4.2225424859, + "6071": 4.1744127964, + "6072": 4.1262831069, + "6073": 4.0743523377, + "6074": 4.0224215686, + "6075": 3.9668946667, + "6076": 3.9113677648, + "6077": 3.8524638696, + "6078": 3.7935599744, + "6079": 3.7315115526, + "6080": 3.6694631307, + "6081": 3.6045150591, + "6082": 3.5395669874, + "6083": 3.4719755864, + "6084": 3.4043841853, + "6085": 3.3344162071, + "6086": 3.2644482289, + "6087": 3.1923798053, + "6088": 3.1203113817, + "6089": 3.0464269338, + "6090": 2.9725424859, + "6091": 2.8971336019, + "6092": 2.8217247179, + "6093": 2.7450890022, + "6094": 2.6684532865, + "6095": 2.5908931852, + "6096": 2.5133330839, + "6097": 2.4351546914, + "6098": 2.3569762988, + "6099": 2.2784881494, + "6100": 2.2, + "6101": 2.1215118506, + "6102": 2.0430237012, + "6103": 1.9648453086, + "6104": 1.8866669161, + "6105": 1.8091068148, + "6106": 1.7315467135, + "6107": 1.6549109978, + "6108": 1.5782752821, + "6109": 1.5028663981, + "6110": 1.4274575141, + "6111": 1.3535730662, + "6112": 1.2796886183, + "6113": 1.2076201947, + "6114": 1.1355517711, + "6115": 1.0655837929, + "6116": 0.9956158147, + "6117": 0.9280244136, + "6118": 0.8604330126, + "6119": 0.7954849409, + "6120": 0.7305368693, + "6121": 0.6684884474, + "6122": 0.6064400256, + "6123": 0.5475361304, + "6124": 0.4886322352, + "6125": 0.4331053333, + "6126": 0.3775784314, + "6127": 0.3256476623, + "6128": 0.2737168931, + "6129": 0.2255872036, + "6130": 0.1774575141, + "6131": 0.1333188502, + "6132": 0.0891801862, + "6133": 0.0492067431, + "6134": 0.0092332999, + "6135": -0.0264171656, + "6136": -0.0620676312, + "6137": -0.0932544229, + "6138": -0.1244412147, + "6139": -0.1510412527, + "6140": -0.1776412907, + "6141": -0.1995495968, + "6142": -0.2214579028, + "6143": -0.2385880148, + "6144": -0.2557181268, + "6145": -0.2680024401, + "6146": -0.2802867533, + "6147": -0.2876767872, + "6148": -0.2950668211, + "6149": -0.2975334105, + "6150": -0.3, + "6151": -0.2975334105, + "6152": -0.2950668211, + "6153": -0.2876767872, + "6154": -0.2802867533, + "6155": -0.2680024401, + "6156": -0.2557181268, + "6157": -0.2385880148, + "6158": -0.2214579028, + "6159": -0.1995495968, + "6160": -0.1776412907, + "6161": -0.1510412527, + "6162": -0.1244412147, + "6163": -0.0932544229, + "6164": -0.0620676312, + "6165": -0.0264171656, + "6166": 0.0092332999, + "6167": 0.0492067431, + "6168": 0.0891801862, + "6169": 0.1333188502, + "6170": 0.1774575141, + "6171": 0.2255872036, + "6172": 0.2737168931, + "6173": 0.3256476623, + "6174": 0.3775784314, + "6175": 0.4331053333, + "6176": 0.4886322352, + "6177": 0.5475361304, + "6178": 0.6064400256, + "6179": 0.6684884474, + "6180": 0.7305368693, + "6181": 0.7954849409, + "6182": 0.8604330126, + "6183": 0.9280244136, + "6184": 0.9956158147, + "6185": 1.0655837929, + "6186": 1.1355517711, + "6187": 1.2076201947, + "6188": 1.2796886183, + "6189": 1.3535730662, + "6190": 1.4274575141, + "6191": 1.5028663981, + "6192": 1.5782752821, + "6193": 1.6549109978, + "6194": 1.7315467135, + "6195": 1.8091068148, + "6196": 1.8866669161, + "6197": 1.9648453086, + "6198": 2.0430237012, + "6199": 2.1215118506, + "6200": 2.2 + }, + "flow_out": { + "0": 0.0, + "1": 3.3784881494, + "2": 1.8069762988, + "3": 2.7101546914, + "4": 2.3758330839, + "5": 2.6596431852, + "6": 2.6340782865, + "7": 2.7622765022, + "8": 2.8131309679, + "9": 2.9014304769, + "10": 2.9703940484, + "11": 3.0475011526, + "12": 3.1197742723, + "13": 3.19264836, + "14": 3.2643139516, + "15": 3.3344833458, + "16": 3.4043506159, + "17": 3.471992371, + "18": 3.5395585951, + "19": 3.6045192553, + "20": 3.6694610326, + "21": 3.7315126016, + "22": 3.7935594499, + "23": 3.8524641319, + "24": 3.9113676337, + "25": 3.9668947323, + "26": 4.0224215358, + "27": 4.0743523541, + "28": 4.1262830987, + "29": 4.1744128005, + "30": 4.2225424839, + "31": 4.2666811509, + "32": 4.3108198132, + "33": 4.3507932572, + "34": 4.3907667, + "35": 4.4264171657, + "36": 4.4620676311, + "37": 4.493254423, + "38": 4.5244412147, + "39": 4.5510412527, + "40": 4.5776412907, + "41": 4.5995495968, + "42": 4.6214579028, + "43": 4.6385880148, + "44": 4.6557181268, + "45": 4.6680024401, + "46": 4.6802867533, + "47": 4.6876767872, + "48": 4.6950668211, + "49": 4.6975334105, + "50": 4.7, + "51": 4.6975334105, + "52": 4.6950668211, + "53": 4.6876767872, + "54": 4.6802867533, + "55": 4.6680024401, + "56": 4.6557181268, + "57": 4.6385880148, + "58": 4.6214579028, + "59": 4.5995495968, + "60": 4.5776412907, + "61": 4.5510412527, + "62": 4.5244412147, + "63": 4.4932544229, + "64": 4.4620676312, + "65": 4.4264171656, + "66": 4.3907667001, + "67": 4.3507932569, + "68": 4.3108198138, + "69": 4.2666811498, + "70": 4.2225424859, + "71": 4.1744127964, + "72": 4.1262831069, + "73": 4.0743523377, + "74": 4.0224215686, + "75": 3.9668946667, + "76": 3.9113677648, + "77": 3.8524638696, + "78": 3.7935599744, + "79": 3.7315115526, + "80": 3.6694631307, + "81": 3.6045150591, + "82": 3.5395669874, + "83": 3.4719755864, + "84": 3.4043841853, + "85": 3.3344162071, + "86": 3.2644482289, + "87": 3.1923798053, + "88": 3.1203113817, + "89": 3.0464269338, + "90": 2.9725424859, + "91": 2.8971336019, + "92": 2.8217247179, + "93": 2.7450890022, + "94": 2.6684532865, + "95": 2.5908931852, + "96": 2.5133330839, + "97": 2.4351546914, + "98": 2.3569762988, + "99": 2.2784881494, + "100": 2.2, + "101": 2.1215118506, + "102": 2.0430237012, + "103": 1.9648453086, + "104": 1.8866669161, + "105": 1.8091068148, + "106": 1.7315467135, + "107": 1.6549109978, + "108": 1.5782752821, + "109": 1.5028663981, + "110": 1.4274575141, + "111": 1.3535730662, + "112": 1.2796886183, + "113": 1.2076201947, + "114": 1.1355517711, + "115": 1.0655837929, + "116": 0.9956158147, + "117": 0.9280244136, + "118": 0.8604330126, + "119": 0.7954849409, + "120": 0.7305368693, + "121": 0.6684884474, + "122": 0.6064400256, + "123": 0.5475361304, + "124": 0.4886322352, + "125": 0.4331053333, + "126": 0.3775784314, + "127": 0.3256476623, + "128": 0.2737168931, + "129": 0.2255872036, + "130": 0.1774575141, + "131": 0.1333188502, + "132": 0.0891801862, + "133": 0.0492067431, + "134": 0.0092332999, + "135": -0.0264171656, + "136": -0.0620676312, + "137": -0.0932544229, + "138": -0.1244412147, + "139": -0.1510412527, + "140": -0.1776412907, + "141": -0.1995495968, + "142": -0.2214579028, + "143": -0.2385880148, + "144": -0.2557181268, + "145": -0.2680024401, + "146": -0.2802867533, + "147": -0.2876767872, + "148": -0.2950668211, + "149": -0.2975334105, + "150": -0.3, + "151": -0.2975334105, + "152": -0.2950668211, + "153": -0.2876767872, + "154": -0.2802867533, + "155": -0.2680024401, + "156": -0.2557181268, + "157": -0.2385880148, + "158": -0.2214579028, + "159": -0.1995495968, + "160": -0.1776412907, + "161": -0.1510412527, + "162": -0.1244412147, + "163": -0.0932544229, + "164": -0.0620676312, + "165": -0.0264171656, + "166": 0.0092332999, + "167": 0.0492067431, + "168": 0.0891801862, + "169": 0.1333188502, + "170": 0.1774575141, + "171": 0.2255872036, + "172": 0.2737168931, + "173": 0.3256476623, + "174": 0.3775784314, + "175": 0.4331053333, + "176": 0.4886322352, + "177": 0.5475361304, + "178": 0.6064400256, + "179": 0.6684884474, + "180": 0.7305368693, + "181": 0.7954849409, + "182": 0.8604330126, + "183": 0.9280244136, + "184": 0.9956158147, + "185": 1.0655837929, + "186": 1.1355517711, + "187": 1.2076201947, + "188": 1.2796886183, + "189": 1.3535730662, + "190": 1.4274575141, + "191": 1.5028663981, + "192": 1.5782752821, + "193": 1.6549109978, + "194": 1.7315467135, + "195": 1.8091068148, + "196": 1.8866669161, + "197": 1.9648453086, + "198": 2.0430237012, + "199": 2.1215118506, + "200": 2.2, + "201": 2.2784881494, + "202": 2.3569762988, + "203": 2.4351546914, + "204": 2.5133330839, + "205": 2.5908931852, + "206": 2.6684532865, + "207": 2.7450890022, + "208": 2.8217247179, + "209": 2.8971336019, + "210": 2.9725424859, + "211": 3.0464269338, + "212": 3.1203113817, + "213": 3.1923798053, + "214": 3.2644482289, + "215": 3.3344162071, + "216": 3.4043841853, + "217": 3.4719755864, + "218": 3.5395669874, + "219": 3.6045150591, + "220": 3.6694631307, + "221": 3.7315115526, + "222": 3.7935599744, + "223": 3.8524638696, + "224": 3.9113677648, + "225": 3.9668946667, + "226": 4.0224215686, + "227": 4.0743523377, + "228": 4.1262831069, + "229": 4.1744127964, + "230": 4.2225424859, + "231": 4.2666811498, + "232": 4.3108198138, + "233": 4.3507932569, + "234": 4.3907667001, + "235": 4.4264171656, + "236": 4.4620676312, + "237": 4.4932544229, + "238": 4.5244412147, + "239": 4.5510412527, + "240": 4.5776412907, + "241": 4.5995495968, + "242": 4.6214579028, + "243": 4.6385880148, + "244": 4.6557181268, + "245": 4.6680024401, + "246": 4.6802867533, + "247": 4.6876767872, + "248": 4.6950668211, + "249": 4.6975334105, + "250": 4.7, + "251": 4.6975334105, + "252": 4.6950668211, + "253": 4.6876767872, + "254": 4.6802867533, + "255": 4.6680024401, + "256": 4.6557181268, + "257": 4.6385880148, + "258": 4.6214579028, + "259": 4.5995495968, + "260": 4.5776412907, + "261": 4.5510412527, + "262": 4.5244412147, + "263": 4.4932544229, + "264": 4.4620676312, + "265": 4.4264171656, + "266": 4.3907667001, + "267": 4.3507932569, + "268": 4.3108198138, + "269": 4.2666811498, + "270": 4.2225424859, + "271": 4.1744127964, + "272": 4.1262831069, + "273": 4.0743523377, + "274": 4.0224215686, + "275": 3.9668946667, + "276": 3.9113677648, + "277": 3.8524638696, + "278": 3.7935599744, + "279": 3.7315115526, + "280": 3.6694631307, + "281": 3.6045150591, + "282": 3.5395669874, + "283": 3.4719755864, + "284": 3.4043841853, + "285": 3.3344162071, + "286": 3.2644482289, + "287": 3.1923798053, + "288": 3.1203113817, + "289": 3.0464269338, + "290": 2.9725424859, + "291": 2.8971336019, + "292": 2.8217247179, + "293": 2.7450890022, + "294": 2.6684532865, + "295": 2.5908931852, + "296": 2.5133330839, + "297": 2.4351546914, + "298": 2.3569762988, + "299": 2.2784881494, + "300": 2.2, + "301": 2.1215118506, + "302": 2.0430237012, + "303": 1.9648453086, + "304": 1.8866669161, + "305": 1.8091068148, + "306": 1.7315467135, + "307": 1.6549109978, + "308": 1.5782752821, + "309": 1.5028663981, + "310": 1.4274575141, + "311": 1.3535730662, + "312": 1.2796886183, + "313": 1.2076201947, + "314": 1.1355517711, + "315": 1.0655837929, + "316": 0.9956158147, + "317": 0.9280244136, + "318": 0.8604330126, + "319": 0.7954849409, + "320": 0.7305368693, + "321": 0.6684884474, + "322": 0.6064400256, + "323": 0.5475361304, + "324": 0.4886322352, + "325": 0.4331053333, + "326": 0.3775784314, + "327": 0.3256476623, + "328": 0.2737168931, + "329": 0.2255872036, + "330": 0.1774575141, + "331": 0.1333188502, + "332": 0.0891801862, + "333": 0.0492067431, + "334": 0.0092332999, + "335": -0.0264171656, + "336": -0.0620676312, + "337": -0.0932544229, + "338": -0.1244412147, + "339": -0.1510412527, + "340": -0.1776412907, + "341": -0.1995495968, + "342": -0.2214579028, + "343": -0.2385880148, + "344": -0.2557181268, + "345": -0.2680024401, + "346": -0.2802867533, + "347": -0.2876767872, + "348": -0.2950668211, + "349": -0.2975334105, + "350": -0.3, + "351": -0.2975334105, + "352": -0.2950668211, + "353": -0.2876767872, + "354": -0.2802867533, + "355": -0.2680024401, + "356": -0.2557181268, + "357": -0.2385880148, + "358": -0.2214579028, + "359": -0.1995495968, + "360": -0.1776412907, + "361": -0.1510412527, + "362": -0.1244412147, + "363": -0.0932544229, + "364": -0.0620676312, + "365": -0.0264171656, + "366": 0.0092332999, + "367": 0.0492067431, + "368": 0.0891801862, + "369": 0.1333188502, + "370": 0.1774575141, + "371": 0.2255872036, + "372": 0.2737168931, + "373": 0.3256476623, + "374": 0.3775784314, + "375": 0.4331053333, + "376": 0.4886322352, + "377": 0.5475361304, + "378": 0.6064400256, + "379": 0.6684884474, + "380": 0.7305368693, + "381": 0.7954849409, + "382": 0.8604330126, + "383": 0.9280244136, + "384": 0.9956158147, + "385": 1.0655837929, + "386": 1.1355517711, + "387": 1.2076201947, + "388": 1.2796886183, + "389": 1.3535730662, + "390": 1.4274575141, + "391": 1.5028663981, + "392": 1.5782752821, + "393": 1.6549109978, + "394": 1.7315467135, + "395": 1.8091068148, + "396": 1.8866669161, + "397": 1.9648453086, + "398": 2.0430237012, + "399": 2.1215118506, + "400": 2.2, + "401": 2.2784881494, + "402": 2.3569762988, + "403": 2.4351546914, + "404": 2.5133330839, + "405": 2.5908931852, + "406": 2.6684532865, + "407": 2.7450890022, + "408": 2.8217247179, + "409": 2.8971336019, + "410": 2.9725424859, + "411": 3.0464269338, + "412": 3.1203113817, + "413": 3.1923798053, + "414": 3.2644482289, + "415": 3.3344162071, + "416": 3.4043841853, + "417": 3.4719755864, + "418": 3.5395669874, + "419": 3.6045150591, + "420": 3.6694631307, + "421": 3.7315115526, + "422": 3.7935599744, + "423": 3.8524638696, + "424": 3.9113677648, + "425": 3.9668946667, + "426": 4.0224215686, + "427": 4.0743523377, + "428": 4.1262831069, + "429": 4.1744127964, + "430": 4.2225424859, + "431": 4.2666811498, + "432": 4.3108198138, + "433": 4.3507932569, + "434": 4.3907667001, + "435": 4.4264171656, + "436": 4.4620676312, + "437": 4.4932544229, + "438": 4.5244412147, + "439": 4.5510412527, + "440": 4.5776412907, + "441": 4.5995495968, + "442": 4.6214579028, + "443": 4.6385880148, + "444": 4.6557181268, + "445": 4.6680024401, + "446": 4.6802867533, + "447": 4.6876767872, + "448": 4.6950668211, + "449": 4.6975334105, + "450": 4.7, + "451": 4.6975334105, + "452": 4.6950668211, + "453": 4.6876767872, + "454": 4.6802867533, + "455": 4.6680024401, + "456": 4.6557181268, + "457": 4.6385880148, + "458": 4.6214579028, + "459": 4.5995495968, + "460": 4.5776412907, + "461": 4.5510412527, + "462": 4.5244412147, + "463": 4.4932544229, + "464": 4.4620676312, + "465": 4.4264171656, + "466": 4.3907667001, + "467": 4.3507932569, + "468": 4.3108198138, + "469": 4.2666811498, + "470": 4.2225424859, + "471": 4.1744127964, + "472": 4.1262831069, + "473": 4.0743523377, + "474": 4.0224215686, + "475": 3.9668946667, + "476": 3.9113677648, + "477": 3.8524638696, + "478": 3.7935599744, + "479": 3.7315115526, + "480": 3.6694631307, + "481": 3.6045150591, + "482": 3.5395669874, + "483": 3.4719755864, + "484": 3.4043841853, + "485": 3.3344162071, + "486": 3.2644482289, + "487": 3.1923798053, + "488": 3.1203113817, + "489": 3.0464269338, + "490": 2.9725424859, + "491": 2.8971336019, + "492": 2.8217247179, + "493": 2.7450890022, + "494": 2.6684532865, + "495": 2.5908931852, + "496": 2.5133330839, + "497": 2.4351546914, + "498": 2.3569762988, + "499": 2.2784881494, + "500": 2.2, + "501": 2.1215118506, + "502": 2.0430237012, + "503": 1.9648453086, + "504": 1.8866669161, + "505": 1.8091068148, + "506": 1.7315467135, + "507": 1.6549109978, + "508": 1.5782752821, + "509": 1.5028663981, + "510": 1.4274575141, + "511": 1.3535730662, + "512": 1.2796886183, + "513": 1.2076201947, + "514": 1.1355517711, + "515": 1.0655837929, + "516": 0.9956158147, + "517": 0.9280244136, + "518": 0.8604330126, + "519": 0.7954849409, + "520": 0.7305368693, + "521": 0.6684884474, + "522": 0.6064400256, + "523": 0.5475361304, + "524": 0.4886322352, + "525": 0.4331053333, + "526": 0.3775784314, + "527": 0.3256476623, + "528": 0.2737168931, + "529": 0.2255872036, + "530": 0.1774575141, + "531": 0.1333188502, + "532": 0.0891801862, + "533": 0.0492067431, + "534": 0.0092332999, + "535": -0.0264171656, + "536": -0.0620676312, + "537": -0.0932544229, + "538": -0.1244412147, + "539": -0.1510412527, + "540": -0.1776412907, + "541": -0.1995495968, + "542": -0.2214579028, + "543": -0.2385880148, + "544": -0.2557181268, + "545": -0.2680024401, + "546": -0.2802867533, + "547": -0.2876767872, + "548": -0.2950668211, + "549": -0.2975334105, + "550": -0.3, + "551": -0.2975334105, + "552": -0.2950668211, + "553": -0.2876767872, + "554": -0.2802867533, + "555": -0.2680024401, + "556": -0.2557181268, + "557": -0.2385880148, + "558": -0.2214579028, + "559": -0.1995495968, + "560": -0.1776412907, + "561": -0.1510412527, + "562": -0.1244412147, + "563": -0.0932544229, + "564": -0.0620676312, + "565": -0.0264171656, + "566": 0.0092332999, + "567": 0.0492067431, + "568": 0.0891801862, + "569": 0.1333188502, + "570": 0.1774575141, + "571": 0.2255872036, + "572": 0.2737168931, + "573": 0.3256476623, + "574": 0.3775784314, + "575": 0.4331053333, + "576": 0.4886322352, + "577": 0.5475361304, + "578": 0.6064400256, + "579": 0.6684884474, + "580": 0.7305368693, + "581": 0.7954849409, + "582": 0.8604330126, + "583": 0.9280244136, + "584": 0.9956158147, + "585": 1.0655837929, + "586": 1.1355517711, + "587": 1.2076201947, + "588": 1.2796886183, + "589": 1.3535730662, + "590": 1.4274575141, + "591": 1.5028663981, + "592": 1.5782752821, + "593": 1.6549109978, + "594": 1.7315467135, + "595": 1.8091068148, + "596": 1.8866669161, + "597": 1.9648453086, + "598": 2.0430237012, + "599": 2.1215118506, + "600": 2.2, + "601": 2.2784881494, + "602": 2.3569762988, + "603": 2.4351546914, + "604": 2.5133330839, + "605": 2.5908931852, + "606": 2.6684532865, + "607": 2.7450890022, + "608": 2.8217247179, + "609": 2.8971336019, + "610": 2.9725424859, + "611": 3.0464269338, + "612": 3.1203113817, + "613": 3.1923798053, + "614": 3.2644482289, + "615": 3.3344162071, + "616": 3.4043841853, + "617": 3.4719755864, + "618": 3.5395669874, + "619": 3.6045150591, + "620": 3.6694631307, + "621": 3.7315115526, + "622": 3.7935599744, + "623": 3.8524638696, + "624": 3.9113677648, + "625": 3.9668946667, + "626": 4.0224215686, + "627": 4.0743523377, + "628": 4.1262831069, + "629": 4.1744127964, + "630": 4.2225424859, + "631": 4.2666811498, + "632": 4.3108198138, + "633": 4.3507932569, + "634": 4.3907667001, + "635": 4.4264171656, + "636": 4.4620676312, + "637": 4.4932544229, + "638": 4.5244412147, + "639": 4.5510412527, + "640": 4.5776412907, + "641": 4.5995495968, + "642": 4.6214579028, + "643": 4.6385880148, + "644": 4.6557181268, + "645": 4.6680024401, + "646": 4.6802867533, + "647": 4.6876767872, + "648": 4.6950668211, + "649": 4.6975334105, + "650": 4.7, + "651": 4.6975334105, + "652": 4.6950668211, + "653": 4.6876767872, + "654": 4.6802867533, + "655": 4.6680024401, + "656": 4.6557181268, + "657": 4.6385880148, + "658": 4.6214579028, + "659": 4.5995495968, + "660": 4.5776412907, + "661": 4.5510412527, + "662": 4.5244412147, + "663": 4.4932544229, + "664": 4.4620676312, + "665": 4.4264171656, + "666": 4.3907667001, + "667": 4.3507932569, + "668": 4.3108198138, + "669": 4.2666811498, + "670": 4.2225424859, + "671": 4.1744127964, + "672": 4.1262831069, + "673": 4.0743523377, + "674": 4.0224215686, + "675": 3.9668946667, + "676": 3.9113677648, + "677": 3.8524638696, + "678": 3.7935599744, + "679": 3.7315115526, + "680": 3.6694631307, + "681": 3.6045150591, + "682": 3.5395669874, + "683": 3.4719755864, + "684": 3.4043841853, + "685": 3.3344162071, + "686": 3.2644482289, + "687": 3.1923798053, + "688": 3.1203113817, + "689": 3.0464269338, + "690": 2.9725424859, + "691": 2.8971336019, + "692": 2.8217247179, + "693": 2.7450890022, + "694": 2.6684532865, + "695": 2.5908931852, + "696": 2.5133330839, + "697": 2.4351546914, + "698": 2.3569762988, + "699": 2.2784881494, + "700": 2.2, + "701": 2.1215118506, + "702": 2.0430237012, + "703": 1.9648453086, + "704": 1.8866669161, + "705": 1.8091068148, + "706": 1.7315467135, + "707": 1.6549109978, + "708": 1.5782752821, + "709": 1.5028663981, + "710": 1.4274575141, + "711": 1.3535730662, + "712": 1.2796886183, + "713": 1.2076201947, + "714": 1.1355517711, + "715": 1.0655837929, + "716": 0.9956158147, + "717": 0.9280244136, + "718": 0.8604330126, + "719": 0.7954849409, + "720": 0.7305368693, + "721": 0.6684884474, + "722": 0.6064400256, + "723": 0.5475361304, + "724": 0.4886322352, + "725": 0.4331053333, + "726": 0.3775784314, + "727": 0.3256476623, + "728": 0.2737168931, + "729": 0.2255872036, + "730": 0.1774575141, + "731": 0.1333188502, + "732": 0.0891801862, + "733": 0.0492067431, + "734": 0.0092332999, + "735": -0.0264171656, + "736": -0.0620676312, + "737": -0.0932544229, + "738": -0.1244412147, + "739": -0.1510412527, + "740": -0.1776412907, + "741": -0.1995495968, + "742": -0.2214579028, + "743": -0.2385880148, + "744": -0.2557181268, + "745": -0.2680024401, + "746": -0.2802867533, + "747": -0.2876767872, + "748": -0.2950668211, + "749": -0.2975334105, + "750": -0.3, + "751": -0.2975334105, + "752": -0.2950668211, + "753": -0.2876767872, + "754": -0.2802867533, + "755": -0.2680024401, + "756": -0.2557181268, + "757": -0.2385880148, + "758": -0.2214579028, + "759": -0.1995495968, + "760": -0.1776412907, + "761": -0.1510412527, + "762": -0.1244412147, + "763": -0.0932544229, + "764": -0.0620676312, + "765": -0.0264171656, + "766": 0.0092332999, + "767": 0.0492067431, + "768": 0.0891801862, + "769": 0.1333188502, + "770": 0.1774575141, + "771": 0.2255872036, + "772": 0.2737168931, + "773": 0.3256476623, + "774": 0.3775784314, + "775": 0.4331053333, + "776": 0.4886322352, + "777": 0.5475361304, + "778": 0.6064400256, + "779": 0.6684884474, + "780": 0.7305368693, + "781": 0.7954849409, + "782": 0.8604330126, + "783": 0.9280244136, + "784": 0.9956158147, + "785": 1.0655837929, + "786": 1.1355517711, + "787": 1.2076201947, + "788": 1.2796886183, + "789": 1.3535730662, + "790": 1.4274575141, + "791": 1.5028663981, + "792": 1.5782752821, + "793": 1.6549109978, + "794": 1.7315467135, + "795": 1.8091068148, + "796": 1.8866669161, + "797": 1.9648453086, + "798": 2.0430237012, + "799": 2.1215118506, + "800": 2.2, + "801": 2.2784881494, + "802": 2.3569762988, + "803": 2.4351546914, + "804": 2.5133330839, + "805": 2.5908931852, + "806": 2.6684532865, + "807": 2.7450890022, + "808": 2.8217247179, + "809": 2.8971336019, + "810": 2.9725424859, + "811": 3.0464269338, + "812": 3.1203113817, + "813": 3.1923798053, + "814": 3.2644482289, + "815": 3.3344162071, + "816": 3.4043841853, + "817": 3.4719755864, + "818": 3.5395669874, + "819": 3.6045150591, + "820": 3.6694631307, + "821": 3.7315115526, + "822": 3.7935599744, + "823": 3.8524638696, + "824": 3.9113677648, + "825": 3.9668946667, + "826": 4.0224215686, + "827": 4.0743523377, + "828": 4.1262831069, + "829": 4.1744127964, + "830": 4.2225424859, + "831": 4.2666811498, + "832": 4.3108198138, + "833": 4.3507932569, + "834": 4.3907667001, + "835": 4.4264171656, + "836": 4.4620676312, + "837": 4.4932544229, + "838": 4.5244412147, + "839": 4.5510412527, + "840": 4.5776412907, + "841": 4.5995495968, + "842": 4.6214579028, + "843": 4.6385880148, + "844": 4.6557181268, + "845": 4.6680024401, + "846": 4.6802867533, + "847": 4.6876767872, + "848": 4.6950668211, + "849": 4.6975334105, + "850": 4.7, + "851": 4.6975334105, + "852": 4.6950668211, + "853": 4.6876767872, + "854": 4.6802867533, + "855": 4.6680024401, + "856": 4.6557181268, + "857": 4.6385880148, + "858": 4.6214579028, + "859": 4.5995495968, + "860": 4.5776412907, + "861": 4.5510412527, + "862": 4.5244412147, + "863": 4.4932544229, + "864": 4.4620676312, + "865": 4.4264171656, + "866": 4.3907667001, + "867": 4.3507932569, + "868": 4.3108198138, + "869": 4.2666811498, + "870": 4.2225424859, + "871": 4.1744127964, + "872": 4.1262831069, + "873": 4.0743523377, + "874": 4.0224215686, + "875": 3.9668946667, + "876": 3.9113677648, + "877": 3.8524638696, + "878": 3.7935599744, + "879": 3.7315115526, + "880": 3.6694631307, + "881": 3.6045150591, + "882": 3.5395669874, + "883": 3.4719755864, + "884": 3.4043841853, + "885": 3.3344162071, + "886": 3.2644482289, + "887": 3.1923798053, + "888": 3.1203113817, + "889": 3.0464269338, + "890": 2.9725424859, + "891": 2.8971336019, + "892": 2.8217247179, + "893": 2.7450890022, + "894": 2.6684532865, + "895": 2.5908931852, + "896": 2.5133330839, + "897": 2.4351546914, + "898": 2.3569762988, + "899": 2.2784881494, + "900": 2.2, + "901": 2.1215118506, + "902": 2.0430237012, + "903": 1.9648453086, + "904": 1.8866669161, + "905": 1.8091068148, + "906": 1.7315467135, + "907": 1.6549109978, + "908": 1.5782752821, + "909": 1.5028663981, + "910": 1.4274575141, + "911": 1.3535730662, + "912": 1.2796886183, + "913": 1.2076201947, + "914": 1.1355517711, + "915": 1.0655837929, + "916": 0.9956158147, + "917": 0.9280244136, + "918": 0.8604330126, + "919": 0.7954849409, + "920": 0.7305368693, + "921": 0.6684884474, + "922": 0.6064400256, + "923": 0.5475361304, + "924": 0.4886322352, + "925": 0.4331053333, + "926": 0.3775784314, + "927": 0.3256476623, + "928": 0.2737168931, + "929": 0.2255872036, + "930": 0.1774575141, + "931": 0.1333188502, + "932": 0.0891801862, + "933": 0.0492067431, + "934": 0.0092332999, + "935": -0.0264171656, + "936": -0.0620676312, + "937": -0.0932544229, + "938": -0.1244412147, + "939": -0.1510412527, + "940": -0.1776412907, + "941": -0.1995495968, + "942": -0.2214579028, + "943": -0.2385880148, + "944": -0.2557181268, + "945": -0.2680024401, + "946": -0.2802867533, + "947": -0.2876767872, + "948": -0.2950668211, + "949": -0.2975334105, + "950": -0.3, + "951": -0.2975334105, + "952": -0.2950668211, + "953": -0.2876767872, + "954": -0.2802867533, + "955": -0.2680024401, + "956": -0.2557181268, + "957": -0.2385880148, + "958": -0.2214579028, + "959": -0.1995495968, + "960": -0.1776412907, + "961": -0.1510412527, + "962": -0.1244412147, + "963": -0.0932544229, + "964": -0.0620676312, + "965": -0.0264171656, + "966": 0.0092332999, + "967": 0.0492067431, + "968": 0.0891801862, + "969": 0.1333188502, + "970": 0.1774575141, + "971": 0.2255872036, + "972": 0.2737168931, + "973": 0.3256476623, + "974": 0.3775784314, + "975": 0.4331053333, + "976": 0.4886322352, + "977": 0.5475361304, + "978": 0.6064400256, + "979": 0.6684884474, + "980": 0.7305368693, + "981": 0.7954849409, + "982": 0.8604330126, + "983": 0.9280244136, + "984": 0.9956158147, + "985": 1.0655837929, + "986": 1.1355517711, + "987": 1.2076201947, + "988": 1.2796886183, + "989": 1.3535730662, + "990": 1.4274575141, + "991": 1.5028663981, + "992": 1.5782752821, + "993": 1.6549109978, + "994": 1.7315467135, + "995": 1.8091068148, + "996": 1.8866669161, + "997": 1.9648453086, + "998": 2.0430237012, + "999": 2.1215118506, + "1000": 2.2, + "1001": 2.2784881494, + "1002": 2.3569762988, + "1003": 2.4351546914, + "1004": 2.5133330839, + "1005": 2.5908931852, + "1006": 2.6684532865, + "1007": 2.7450890022, + "1008": 2.8217247179, + "1009": 2.8971336019, + "1010": 2.9725424859, + "1011": 3.0464269338, + "1012": 3.1203113817, + "1013": 3.1923798053, + "1014": 3.2644482289, + "1015": 3.3344162071, + "1016": 3.4043841853, + "1017": 3.4719755864, + "1018": 3.5395669874, + "1019": 3.6045150591, + "1020": 3.6694631307, + "1021": 3.7315115526, + "1022": 3.7935599744, + "1023": 3.8524638696, + "1024": 3.9113677648, + "1025": 3.9668946667, + "1026": 4.0224215686, + "1027": 4.0743523377, + "1028": 4.1262831069, + "1029": 4.1744127964, + "1030": 4.2225424859, + "1031": 4.2666811498, + "1032": 4.3108198138, + "1033": 4.3507932569, + "1034": 4.3907667001, + "1035": 4.4264171656, + "1036": 4.4620676312, + "1037": 4.4932544229, + "1038": 4.5244412147, + "1039": 4.5510412527, + "1040": 4.5776412907, + "1041": 4.5995495968, + "1042": 4.6214579028, + "1043": 4.6385880148, + "1044": 4.6557181268, + "1045": 4.6680024401, + "1046": 4.6802867533, + "1047": 4.6876767872, + "1048": 4.6950668211, + "1049": 4.6975334105, + "1050": 4.7, + "1051": 4.6975334105, + "1052": 4.6950668211, + "1053": 4.6876767872, + "1054": 4.6802867533, + "1055": 4.6680024401, + "1056": 4.6557181268, + "1057": 4.6385880148, + "1058": 4.6214579028, + "1059": 4.5995495968, + "1060": 4.5776412907, + "1061": 4.5510412527, + "1062": 4.5244412147, + "1063": 4.4932544229, + "1064": 4.4620676312, + "1065": 4.4264171656, + "1066": 4.3907667001, + "1067": 4.3507932569, + "1068": 4.3108198138, + "1069": 4.2666811498, + "1070": 4.2225424859, + "1071": 4.1744127964, + "1072": 4.1262831069, + "1073": 4.0743523377, + "1074": 4.0224215686, + "1075": 3.9668946667, + "1076": 3.9113677648, + "1077": 3.8524638696, + "1078": 3.7935599744, + "1079": 3.7315115526, + "1080": 3.6694631307, + "1081": 3.6045150591, + "1082": 3.5395669874, + "1083": 3.4719755864, + "1084": 3.4043841853, + "1085": 3.3344162071, + "1086": 3.2644482289, + "1087": 3.1923798053, + "1088": 3.1203113817, + "1089": 3.0464269338, + "1090": 2.9725424859, + "1091": 2.8971336019, + "1092": 2.8217247179, + "1093": 2.7450890022, + "1094": 2.6684532865, + "1095": 2.5908931852, + "1096": 2.5133330839, + "1097": 2.4351546914, + "1098": 2.3569762988, + "1099": 2.2784881494, + "1100": 2.2, + "1101": 2.1215118506, + "1102": 2.0430237012, + "1103": 1.9648453086, + "1104": 1.8866669161, + "1105": 1.8091068148, + "1106": 1.7315467135, + "1107": 1.6549109978, + "1108": 1.5782752821, + "1109": 1.5028663981, + "1110": 1.4274575141, + "1111": 1.3535730662, + "1112": 1.2796886183, + "1113": 1.2076201947, + "1114": 1.1355517711, + "1115": 1.0655837929, + "1116": 0.9956158147, + "1117": 0.9280244136, + "1118": 0.8604330126, + "1119": 0.7954849409, + "1120": 0.7305368693, + "1121": 0.6684884474, + "1122": 0.6064400256, + "1123": 0.5475361304, + "1124": 0.4886322352, + "1125": 0.4331053333, + "1126": 0.3775784314, + "1127": 0.3256476623, + "1128": 0.2737168931, + "1129": 0.2255872036, + "1130": 0.1774575141, + "1131": 0.1333188502, + "1132": 0.0891801862, + "1133": 0.0492067431, + "1134": 0.0092332999, + "1135": -0.0264171656, + "1136": -0.0620676312, + "1137": -0.0932544229, + "1138": -0.1244412147, + "1139": -0.1510412527, + "1140": -0.1776412907, + "1141": -0.1995495968, + "1142": -0.2214579028, + "1143": -0.2385880148, + "1144": -0.2557181268, + "1145": -0.2680024401, + "1146": -0.2802867533, + "1147": -0.2876767872, + "1148": -0.2950668211, + "1149": -0.2975334105, + "1150": -0.3, + "1151": -0.2975334105, + "1152": -0.2950668211, + "1153": -0.2876767872, + "1154": -0.2802867533, + "1155": -0.2680024401, + "1156": -0.2557181268, + "1157": -0.2385880148, + "1158": -0.2214579028, + "1159": -0.1995495968, + "1160": -0.1776412907, + "1161": -0.1510412527, + "1162": -0.1244412147, + "1163": -0.0932544229, + "1164": -0.0620676312, + "1165": -0.0264171656, + "1166": 0.0092332999, + "1167": 0.0492067431, + "1168": 0.0891801862, + "1169": 0.1333188502, + "1170": 0.1774575141, + "1171": 0.2255872036, + "1172": 0.2737168931, + "1173": 0.3256476623, + "1174": 0.3775784314, + "1175": 0.4331053333, + "1176": 0.4886322352, + "1177": 0.5475361304, + "1178": 0.6064400256, + "1179": 0.6684884474, + "1180": 0.7305368693, + "1181": 0.7954849409, + "1182": 0.8604330126, + "1183": 0.9280244136, + "1184": 0.9956158147, + "1185": 1.0655837929, + "1186": 1.1355517711, + "1187": 1.2076201947, + "1188": 1.2796886183, + "1189": 1.3535730662, + "1190": 1.4274575141, + "1191": 1.5028663981, + "1192": 1.5782752821, + "1193": 1.6549109978, + "1194": 1.7315467135, + "1195": 1.8091068148, + "1196": 1.8866669161, + "1197": 1.9648453086, + "1198": 2.0430237012, + "1199": 2.1215118506, + "1200": 2.2, + "1201": 2.2784881494, + "1202": 2.3569762988, + "1203": 2.4351546914, + "1204": 2.5133330839, + "1205": 2.5908931852, + "1206": 2.6684532865, + "1207": 2.7450890022, + "1208": 2.8217247179, + "1209": 2.8971336019, + "1210": 2.9725424859, + "1211": 3.0464269338, + "1212": 3.1203113817, + "1213": 3.1923798053, + "1214": 3.2644482289, + "1215": 3.3344162071, + "1216": 3.4043841853, + "1217": 3.4719755864, + "1218": 3.5395669874, + "1219": 3.6045150591, + "1220": 3.6694631307, + "1221": 3.7315115526, + "1222": 3.7935599744, + "1223": 3.8524638696, + "1224": 3.9113677648, + "1225": 3.9668946667, + "1226": 4.0224215686, + "1227": 4.0743523377, + "1228": 4.1262831069, + "1229": 4.1744127964, + "1230": 4.2225424859, + "1231": 4.2666811498, + "1232": 4.3108198138, + "1233": 4.3507932569, + "1234": 4.3907667001, + "1235": 4.4264171656, + "1236": 4.4620676312, + "1237": 4.4932544229, + "1238": 4.5244412147, + "1239": 4.5510412527, + "1240": 4.5776412907, + "1241": 4.5995495968, + "1242": 4.6214579028, + "1243": 4.6385880148, + "1244": 4.6557181268, + "1245": 4.6680024401, + "1246": 4.6802867533, + "1247": 4.6876767872, + "1248": 4.6950668211, + "1249": 4.6975334105, + "1250": 4.7, + "1251": 4.6975334105, + "1252": 4.6950668211, + "1253": 4.6876767872, + "1254": 4.6802867533, + "1255": 4.6680024401, + "1256": 4.6557181268, + "1257": 4.6385880148, + "1258": 4.6214579028, + "1259": 4.5995495968, + "1260": 4.5776412907, + "1261": 4.5510412527, + "1262": 4.5244412147, + "1263": 4.4932544229, + "1264": 4.4620676312, + "1265": 4.4264171656, + "1266": 4.3907667001, + "1267": 4.3507932569, + "1268": 4.3108198138, + "1269": 4.2666811498, + "1270": 4.2225424859, + "1271": 4.1744127964, + "1272": 4.1262831069, + "1273": 4.0743523377, + "1274": 4.0224215686, + "1275": 3.9668946667, + "1276": 3.9113677648, + "1277": 3.8524638696, + "1278": 3.7935599744, + "1279": 3.7315115526, + "1280": 3.6694631307, + "1281": 3.6045150591, + "1282": 3.5395669874, + "1283": 3.4719755864, + "1284": 3.4043841853, + "1285": 3.3344162071, + "1286": 3.2644482289, + "1287": 3.1923798053, + "1288": 3.1203113817, + "1289": 3.0464269338, + "1290": 2.9725424859, + "1291": 2.8971336019, + "1292": 2.8217247179, + "1293": 2.7450890022, + "1294": 2.6684532865, + "1295": 2.5908931852, + "1296": 2.5133330839, + "1297": 2.4351546914, + "1298": 2.3569762988, + "1299": 2.2784881494, + "1300": 2.2, + "1301": 2.1215118506, + "1302": 2.0430237012, + "1303": 1.9648453086, + "1304": 1.8866669161, + "1305": 1.8091068148, + "1306": 1.7315467135, + "1307": 1.6549109978, + "1308": 1.5782752821, + "1309": 1.5028663981, + "1310": 1.4274575141, + "1311": 1.3535730662, + "1312": 1.2796886183, + "1313": 1.2076201947, + "1314": 1.1355517711, + "1315": 1.0655837929, + "1316": 0.9956158147, + "1317": 0.9280244136, + "1318": 0.8604330126, + "1319": 0.7954849409, + "1320": 0.7305368693, + "1321": 0.6684884474, + "1322": 0.6064400256, + "1323": 0.5475361304, + "1324": 0.4886322352, + "1325": 0.4331053333, + "1326": 0.3775784314, + "1327": 0.3256476623, + "1328": 0.2737168931, + "1329": 0.2255872036, + "1330": 0.1774575141, + "1331": 0.1333188502, + "1332": 0.0891801862, + "1333": 0.0492067431, + "1334": 0.0092332999, + "1335": -0.0264171656, + "1336": -0.0620676312, + "1337": -0.0932544229, + "1338": -0.1244412147, + "1339": -0.1510412527, + "1340": -0.1776412907, + "1341": -0.1995495968, + "1342": -0.2214579028, + "1343": -0.2385880148, + "1344": -0.2557181268, + "1345": -0.2680024401, + "1346": -0.2802867533, + "1347": -0.2876767872, + "1348": -0.2950668211, + "1349": -0.2975334105, + "1350": -0.3, + "1351": -0.2975334105, + "1352": -0.2950668211, + "1353": -0.2876767872, + "1354": -0.2802867533, + "1355": -0.2680024401, + "1356": -0.2557181268, + "1357": -0.2385880148, + "1358": -0.2214579028, + "1359": -0.1995495968, + "1360": -0.1776412907, + "1361": -0.1510412527, + "1362": -0.1244412147, + "1363": -0.0932544229, + "1364": -0.0620676312, + "1365": -0.0264171656, + "1366": 0.0092332999, + "1367": 0.0492067431, + "1368": 0.0891801862, + "1369": 0.1333188502, + "1370": 0.1774575141, + "1371": 0.2255872036, + "1372": 0.2737168931, + "1373": 0.3256476623, + "1374": 0.3775784314, + "1375": 0.4331053333, + "1376": 0.4886322352, + "1377": 0.5475361304, + "1378": 0.6064400256, + "1379": 0.6684884474, + "1380": 0.7305368693, + "1381": 0.7954849409, + "1382": 0.8604330126, + "1383": 0.9280244136, + "1384": 0.9956158147, + "1385": 1.0655837929, + "1386": 1.1355517711, + "1387": 1.2076201947, + "1388": 1.2796886183, + "1389": 1.3535730662, + "1390": 1.4274575141, + "1391": 1.5028663981, + "1392": 1.5782752821, + "1393": 1.6549109978, + "1394": 1.7315467135, + "1395": 1.8091068148, + "1396": 1.8866669161, + "1397": 1.9648453086, + "1398": 2.0430237012, + "1399": 2.1215118506, + "1400": 2.2, + "1401": 2.2784881494, + "1402": 2.3569762988, + "1403": 2.4351546914, + "1404": 2.5133330839, + "1405": 2.5908931852, + "1406": 2.6684532865, + "1407": 2.7450890022, + "1408": 2.8217247179, + "1409": 2.8971336019, + "1410": 2.9725424859, + "1411": 3.0464269338, + "1412": 3.1203113817, + "1413": 3.1923798053, + "1414": 3.2644482289, + "1415": 3.3344162071, + "1416": 3.4043841853, + "1417": 3.4719755864, + "1418": 3.5395669874, + "1419": 3.6045150591, + "1420": 3.6694631307, + "1421": 3.7315115526, + "1422": 3.7935599744, + "1423": 3.8524638696, + "1424": 3.9113677648, + "1425": 3.9668946667, + "1426": 4.0224215686, + "1427": 4.0743523377, + "1428": 4.1262831069, + "1429": 4.1744127964, + "1430": 4.2225424859, + "1431": 4.2666811498, + "1432": 4.3108198138, + "1433": 4.3507932569, + "1434": 4.3907667001, + "1435": 4.4264171656, + "1436": 4.4620676312, + "1437": 4.4932544229, + "1438": 4.5244412147, + "1439": 4.5510412527, + "1440": 4.5776412907, + "1441": 4.5995495968, + "1442": 4.6214579028, + "1443": 4.6385880148, + "1444": 4.6557181268, + "1445": 4.6680024401, + "1446": 4.6802867533, + "1447": 4.6876767872, + "1448": 4.6950668211, + "1449": 4.6975334105, + "1450": 4.7, + "1451": 4.6975334105, + "1452": 4.6950668211, + "1453": 4.6876767872, + "1454": 4.6802867533, + "1455": 4.6680024401, + "1456": 4.6557181268, + "1457": 4.6385880148, + "1458": 4.6214579028, + "1459": 4.5995495968, + "1460": 4.5776412907, + "1461": 4.5510412527, + "1462": 4.5244412147, + "1463": 4.4932544229, + "1464": 4.4620676312, + "1465": 4.4264171656, + "1466": 4.3907667001, + "1467": 4.3507932569, + "1468": 4.3108198138, + "1469": 4.2666811498, + "1470": 4.2225424859, + "1471": 4.1744127964, + "1472": 4.1262831069, + "1473": 4.0743523377, + "1474": 4.0224215686, + "1475": 3.9668946667, + "1476": 3.9113677648, + "1477": 3.8524638696, + "1478": 3.7935599744, + "1479": 3.7315115526, + "1480": 3.6694631307, + "1481": 3.6045150591, + "1482": 3.5395669874, + "1483": 3.4719755864, + "1484": 3.4043841853, + "1485": 3.3344162071, + "1486": 3.2644482289, + "1487": 3.1923798053, + "1488": 3.1203113817, + "1489": 3.0464269338, + "1490": 2.9725424859, + "1491": 2.8971336019, + "1492": 2.8217247179, + "1493": 2.7450890022, + "1494": 2.6684532865, + "1495": 2.5908931852, + "1496": 2.5133330839, + "1497": 2.4351546914, + "1498": 2.3569762988, + "1499": 2.2784881494, + "1500": 2.2, + "1501": 2.1215118506, + "1502": 2.0430237012, + "1503": 1.9648453086, + "1504": 1.8866669161, + "1505": 1.8091068148, + "1506": 1.7315467135, + "1507": 1.6549109978, + "1508": 1.5782752821, + "1509": 1.5028663981, + "1510": 1.4274575141, + "1511": 1.3535730662, + "1512": 1.2796886183, + "1513": 1.2076201947, + "1514": 1.1355517711, + "1515": 1.0655837929, + "1516": 0.9956158147, + "1517": 0.9280244136, + "1518": 0.8604330126, + "1519": 0.7954849409, + "1520": 0.7305368693, + "1521": 0.6684884474, + "1522": 0.6064400256, + "1523": 0.5475361304, + "1524": 0.4886322352, + "1525": 0.4331053333, + "1526": 0.3775784314, + "1527": 0.3256476623, + "1528": 0.2737168931, + "1529": 0.2255872036, + "1530": 0.1774575141, + "1531": 0.1333188502, + "1532": 0.0891801862, + "1533": 0.0492067431, + "1534": 0.0092332999, + "1535": -0.0264171656, + "1536": -0.0620676312, + "1537": -0.0932544229, + "1538": -0.1244412147, + "1539": -0.1510412527, + "1540": -0.1776412907, + "1541": -0.1995495968, + "1542": -0.2214579028, + "1543": -0.2385880148, + "1544": -0.2557181268, + "1545": -0.2680024401, + "1546": -0.2802867533, + "1547": -0.2876767872, + "1548": -0.2950668211, + "1549": -0.2975334105, + "1550": -0.3, + "1551": -0.2975334105, + "1552": -0.2950668211, + "1553": -0.2876767872, + "1554": -0.2802867533, + "1555": -0.2680024401, + "1556": -0.2557181268, + "1557": -0.2385880148, + "1558": -0.2214579028, + "1559": -0.1995495968, + "1560": -0.1776412907, + "1561": -0.1510412527, + "1562": -0.1244412147, + "1563": -0.0932544229, + "1564": -0.0620676312, + "1565": -0.0264171656, + "1566": 0.0092332999, + "1567": 0.0492067431, + "1568": 0.0891801862, + "1569": 0.1333188502, + "1570": 0.1774575141, + "1571": 0.2255872036, + "1572": 0.2737168931, + "1573": 0.3256476623, + "1574": 0.3775784314, + "1575": 0.4331053333, + "1576": 0.4886322352, + "1577": 0.5475361304, + "1578": 0.6064400256, + "1579": 0.6684884474, + "1580": 0.7305368693, + "1581": 0.7954849409, + "1582": 0.8604330126, + "1583": 0.9280244136, + "1584": 0.9956158147, + "1585": 1.0655837929, + "1586": 1.1355517711, + "1587": 1.2076201947, + "1588": 1.2796886183, + "1589": 1.3535730662, + "1590": 1.4274575141, + "1591": 1.5028663981, + "1592": 1.5782752821, + "1593": 1.6549109978, + "1594": 1.7315467135, + "1595": 1.8091068148, + "1596": 1.8866669161, + "1597": 1.9648453086, + "1598": 2.0430237012, + "1599": 2.1215118506, + "1600": 2.2, + "1601": 2.2784881494, + "1602": 2.3569762988, + "1603": 2.4351546914, + "1604": 2.5133330839, + "1605": 2.5908931852, + "1606": 2.6684532865, + "1607": 2.7450890022, + "1608": 2.8217247179, + "1609": 2.8971336019, + "1610": 2.9725424859, + "1611": 3.0464269338, + "1612": 3.1203113817, + "1613": 3.1923798053, + "1614": 3.2644482289, + "1615": 3.3344162071, + "1616": 3.4043841853, + "1617": 3.4719755864, + "1618": 3.5395669874, + "1619": 3.6045150591, + "1620": 3.6694631307, + "1621": 3.7315115526, + "1622": 3.7935599744, + "1623": 3.8524638696, + "1624": 3.9113677648, + "1625": 3.9668946667, + "1626": 4.0224215686, + "1627": 4.0743523377, + "1628": 4.1262831069, + "1629": 4.1744127964, + "1630": 4.2225424859, + "1631": 4.2666811498, + "1632": 4.3108198138, + "1633": 4.3507932569, + "1634": 4.3907667001, + "1635": 4.4264171656, + "1636": 4.4620676312, + "1637": 4.4932544229, + "1638": 4.5244412147, + "1639": 4.5510412527, + "1640": 4.5776412907, + "1641": 4.5995495968, + "1642": 4.6214579028, + "1643": 4.6385880148, + "1644": 4.6557181268, + "1645": 4.6680024401, + "1646": 4.6802867533, + "1647": 4.6876767872, + "1648": 4.6950668211, + "1649": 4.6975334105, + "1650": 4.7, + "1651": 4.6975334105, + "1652": 4.6950668211, + "1653": 4.6876767872, + "1654": 4.6802867533, + "1655": 4.6680024401, + "1656": 4.6557181268, + "1657": 4.6385880148, + "1658": 4.6214579028, + "1659": 4.5995495968, + "1660": 4.5776412907, + "1661": 4.5510412527, + "1662": 4.5244412147, + "1663": 4.4932544229, + "1664": 4.4620676312, + "1665": 4.4264171656, + "1666": 4.3907667001, + "1667": 4.3507932569, + "1668": 4.3108198138, + "1669": 4.2666811498, + "1670": 4.2225424859, + "1671": 4.1744127964, + "1672": 4.1262831069, + "1673": 4.0743523377, + "1674": 4.0224215686, + "1675": 3.9668946667, + "1676": 3.9113677648, + "1677": 3.8524638696, + "1678": 3.7935599744, + "1679": 3.7315115526, + "1680": 3.6694631307, + "1681": 3.6045150591, + "1682": 3.5395669874, + "1683": 3.4719755864, + "1684": 3.4043841853, + "1685": 3.3344162071, + "1686": 3.2644482289, + "1687": 3.1923798053, + "1688": 3.1203113817, + "1689": 3.0464269338, + "1690": 2.9725424859, + "1691": 2.8971336019, + "1692": 2.8217247179, + "1693": 2.7450890022, + "1694": 2.6684532865, + "1695": 2.5908931852, + "1696": 2.5133330839, + "1697": 2.4351546914, + "1698": 2.3569762988, + "1699": 2.2784881494, + "1700": 2.2, + "1701": 2.1215118506, + "1702": 2.0430237012, + "1703": 1.9648453086, + "1704": 1.8866669161, + "1705": 1.8091068148, + "1706": 1.7315467135, + "1707": 1.6549109978, + "1708": 1.5782752821, + "1709": 1.5028663981, + "1710": 1.4274575141, + "1711": 1.3535730662, + "1712": 1.2796886183, + "1713": 1.2076201947, + "1714": 1.1355517711, + "1715": 1.0655837929, + "1716": 0.9956158147, + "1717": 0.9280244136, + "1718": 0.8604330126, + "1719": 0.7954849409, + "1720": 0.7305368693, + "1721": 0.6684884474, + "1722": 0.6064400256, + "1723": 0.5475361304, + "1724": 0.4886322352, + "1725": 0.4331053333, + "1726": 0.3775784314, + "1727": 0.3256476623, + "1728": 0.2737168931, + "1729": 0.2255872036, + "1730": 0.1774575141, + "1731": 0.1333188502, + "1732": 0.0891801862, + "1733": 0.0492067431, + "1734": 0.0092332999, + "1735": -0.0264171656, + "1736": -0.0620676312, + "1737": -0.0932544229, + "1738": -0.1244412147, + "1739": -0.1510412527, + "1740": -0.1776412907, + "1741": -0.1995495968, + "1742": -0.2214579028, + "1743": -0.2385880148, + "1744": -0.2557181268, + "1745": -0.2680024401, + "1746": -0.2802867533, + "1747": -0.2876767872, + "1748": -0.2950668211, + "1749": -0.2975334105, + "1750": -0.3, + "1751": -0.2975334105, + "1752": -0.2950668211, + "1753": -0.2876767872, + "1754": -0.2802867533, + "1755": -0.2680024401, + "1756": -0.2557181268, + "1757": -0.2385880148, + "1758": -0.2214579028, + "1759": -0.1995495968, + "1760": -0.1776412907, + "1761": -0.1510412527, + "1762": -0.1244412147, + "1763": -0.0932544229, + "1764": -0.0620676312, + "1765": -0.0264171656, + "1766": 0.0092332999, + "1767": 0.0492067431, + "1768": 0.0891801862, + "1769": 0.1333188502, + "1770": 0.1774575141, + "1771": 0.2255872036, + "1772": 0.2737168931, + "1773": 0.3256476623, + "1774": 0.3775784314, + "1775": 0.4331053333, + "1776": 0.4886322352, + "1777": 0.5475361304, + "1778": 0.6064400256, + "1779": 0.6684884474, + "1780": 0.7305368693, + "1781": 0.7954849409, + "1782": 0.8604330126, + "1783": 0.9280244136, + "1784": 0.9956158147, + "1785": 1.0655837929, + "1786": 1.1355517711, + "1787": 1.2076201947, + "1788": 1.2796886183, + "1789": 1.3535730662, + "1790": 1.4274575141, + "1791": 1.5028663981, + "1792": 1.5782752821, + "1793": 1.6549109978, + "1794": 1.7315467135, + "1795": 1.8091068148, + "1796": 1.8866669161, + "1797": 1.9648453086, + "1798": 2.0430237012, + "1799": 2.1215118506, + "1800": 2.2, + "1801": 2.2784881494, + "1802": 2.3569762988, + "1803": 2.4351546914, + "1804": 2.5133330839, + "1805": 2.5908931852, + "1806": 2.6684532865, + "1807": 2.7450890022, + "1808": 2.8217247179, + "1809": 2.8971336019, + "1810": 2.9725424859, + "1811": 3.0464269338, + "1812": 3.1203113817, + "1813": 3.1923798053, + "1814": 3.2644482289, + "1815": 3.3344162071, + "1816": 3.4043841853, + "1817": 3.4719755864, + "1818": 3.5395669874, + "1819": 3.6045150591, + "1820": 3.6694631307, + "1821": 3.7315115526, + "1822": 3.7935599744, + "1823": 3.8524638696, + "1824": 3.9113677648, + "1825": 3.9668946667, + "1826": 4.0224215686, + "1827": 4.0743523377, + "1828": 4.1262831069, + "1829": 4.1744127964, + "1830": 4.2225424859, + "1831": 4.2666811498, + "1832": 4.3108198138, + "1833": 4.3507932569, + "1834": 4.3907667001, + "1835": 4.4264171656, + "1836": 4.4620676312, + "1837": 4.4932544229, + "1838": 4.5244412147, + "1839": 4.5510412527, + "1840": 4.5776412907, + "1841": 4.5995495968, + "1842": 4.6214579028, + "1843": 4.6385880148, + "1844": 4.6557181268, + "1845": 4.6680024401, + "1846": 4.6802867533, + "1847": 4.6876767872, + "1848": 4.6950668211, + "1849": 4.6975334105, + "1850": 4.7, + "1851": 4.6975334105, + "1852": 4.6950668211, + "1853": 4.6876767872, + "1854": 4.6802867533, + "1855": 4.6680024401, + "1856": 4.6557181268, + "1857": 4.6385880148, + "1858": 4.6214579028, + "1859": 4.5995495968, + "1860": 4.5776412907, + "1861": 4.5510412527, + "1862": 4.5244412147, + "1863": 4.4932544229, + "1864": 4.4620676312, + "1865": 4.4264171656, + "1866": 4.3907667001, + "1867": 4.3507932569, + "1868": 4.3108198138, + "1869": 4.2666811498, + "1870": 4.2225424859, + "1871": 4.1744127964, + "1872": 4.1262831069, + "1873": 4.0743523377, + "1874": 4.0224215686, + "1875": 3.9668946667, + "1876": 3.9113677648, + "1877": 3.8524638696, + "1878": 3.7935599744, + "1879": 3.7315115526, + "1880": 3.6694631307, + "1881": 3.6045150591, + "1882": 3.5395669874, + "1883": 3.4719755864, + "1884": 3.4043841853, + "1885": 3.3344162071, + "1886": 3.2644482289, + "1887": 3.1923798053, + "1888": 3.1203113817, + "1889": 3.0464269338, + "1890": 2.9725424859, + "1891": 2.8971336019, + "1892": 2.8217247179, + "1893": 2.7450890022, + "1894": 2.6684532865, + "1895": 2.5908931852, + "1896": 2.5133330839, + "1897": 2.4351546914, + "1898": 2.3569762988, + "1899": 2.2784881494, + "1900": 2.2, + "1901": 2.1215118506, + "1902": 2.0430237012, + "1903": 1.9648453086, + "1904": 1.8866669161, + "1905": 1.8091068148, + "1906": 1.7315467135, + "1907": 1.6549109978, + "1908": 1.5782752821, + "1909": 1.5028663981, + "1910": 1.4274575141, + "1911": 1.3535730662, + "1912": 1.2796886183, + "1913": 1.2076201947, + "1914": 1.1355517711, + "1915": 1.0655837929, + "1916": 0.9956158147, + "1917": 0.9280244136, + "1918": 0.8604330126, + "1919": 0.7954849409, + "1920": 0.7305368693, + "1921": 0.6684884474, + "1922": 0.6064400256, + "1923": 0.5475361304, + "1924": 0.4886322352, + "1925": 0.4331053333, + "1926": 0.3775784314, + "1927": 0.3256476623, + "1928": 0.2737168931, + "1929": 0.2255872036, + "1930": 0.1774575141, + "1931": 0.1333188502, + "1932": 0.0891801862, + "1933": 0.0492067431, + "1934": 0.0092332999, + "1935": -0.0264171656, + "1936": -0.0620676312, + "1937": -0.0932544229, + "1938": -0.1244412147, + "1939": -0.1510412527, + "1940": -0.1776412907, + "1941": -0.1995495968, + "1942": -0.2214579028, + "1943": -0.2385880148, + "1944": -0.2557181268, + "1945": -0.2680024401, + "1946": -0.2802867533, + "1947": -0.2876767872, + "1948": -0.2950668211, + "1949": -0.2975334105, + "1950": -0.3, + "1951": -0.2975334105, + "1952": -0.2950668211, + "1953": -0.2876767872, + "1954": -0.2802867533, + "1955": -0.2680024401, + "1956": -0.2557181268, + "1957": -0.2385880148, + "1958": -0.2214579028, + "1959": -0.1995495968, + "1960": -0.1776412907, + "1961": -0.1510412527, + "1962": -0.1244412147, + "1963": -0.0932544229, + "1964": -0.0620676312, + "1965": -0.0264171656, + "1966": 0.0092332999, + "1967": 0.0492067431, + "1968": 0.0891801862, + "1969": 0.1333188502, + "1970": 0.1774575141, + "1971": 0.2255872036, + "1972": 0.2737168931, + "1973": 0.3256476623, + "1974": 0.3775784314, + "1975": 0.4331053333, + "1976": 0.4886322352, + "1977": 0.5475361304, + "1978": 0.6064400256, + "1979": 0.6684884474, + "1980": 0.7305368693, + "1981": 0.7954849409, + "1982": 0.8604330126, + "1983": 0.9280244136, + "1984": 0.9956158147, + "1985": 1.0655837929, + "1986": 1.1355517711, + "1987": 1.2076201947, + "1988": 1.2796886183, + "1989": 1.3535730662, + "1990": 1.4274575141, + "1991": 1.5028663981, + "1992": 1.5782752821, + "1993": 1.6549109978, + "1994": 1.7315467135, + "1995": 1.8091068148, + "1996": 1.8866669161, + "1997": 1.9648453086, + "1998": 2.0430237012, + "1999": 2.1215118506, + "2000": 2.2, + "2001": 2.2784881494, + "2002": 2.3569762988, + "2003": 2.4351546914, + "2004": 2.5133330839, + "2005": 2.5908931852, + "2006": 2.6684532865, + "2007": 2.7450890022, + "2008": 2.8217247179, + "2009": 2.8971336019, + "2010": 2.9725424859, + "2011": 3.0464269338, + "2012": 3.1203113817, + "2013": 3.1923798053, + "2014": 3.2644482289, + "2015": 3.3344162071, + "2016": 3.4043841853, + "2017": 3.4719755864, + "2018": 3.5395669874, + "2019": 3.6045150591, + "2020": 3.6694631307, + "2021": 3.7315115526, + "2022": 3.7935599744, + "2023": 3.8524638696, + "2024": 3.9113677648, + "2025": 3.9668946667, + "2026": 4.0224215686, + "2027": 4.0743523377, + "2028": 4.1262831069, + "2029": 4.1744127964, + "2030": 4.2225424859, + "2031": 4.2666811498, + "2032": 4.3108198138, + "2033": 4.3507932569, + "2034": 4.3907667001, + "2035": 4.4264171656, + "2036": 4.4620676312, + "2037": 4.4932544229, + "2038": 4.5244412147, + "2039": 4.5510412527, + "2040": 4.5776412907, + "2041": 4.5995495968, + "2042": 4.6214579028, + "2043": 4.6385880148, + "2044": 4.6557181268, + "2045": 4.6680024401, + "2046": 4.6802867533, + "2047": 4.6876767872, + "2048": 4.6950668211, + "2049": 4.6975334105, + "2050": 4.7, + "2051": 4.6975334105, + "2052": 4.6950668211, + "2053": 4.6876767872, + "2054": 4.6802867533, + "2055": 4.6680024401, + "2056": 4.6557181268, + "2057": 4.6385880148, + "2058": 4.6214579028, + "2059": 4.5995495968, + "2060": 4.5776412907, + "2061": 4.5510412527, + "2062": 4.5244412147, + "2063": 4.4932544229, + "2064": 4.4620676312, + "2065": 4.4264171656, + "2066": 4.3907667001, + "2067": 4.3507932569, + "2068": 4.3108198138, + "2069": 4.2666811498, + "2070": 4.2225424859, + "2071": 4.1744127964, + "2072": 4.1262831069, + "2073": 4.0743523377, + "2074": 4.0224215686, + "2075": 3.9668946667, + "2076": 3.9113677648, + "2077": 3.8524638696, + "2078": 3.7935599744, + "2079": 3.7315115526, + "2080": 3.6694631307, + "2081": 3.6045150591, + "2082": 3.5395669874, + "2083": 3.4719755864, + "2084": 3.4043841853, + "2085": 3.3344162071, + "2086": 3.2644482289, + "2087": 3.1923798053, + "2088": 3.1203113817, + "2089": 3.0464269338, + "2090": 2.9725424859, + "2091": 2.8971336019, + "2092": 2.8217247179, + "2093": 2.7450890022, + "2094": 2.6684532865, + "2095": 2.5908931852, + "2096": 2.5133330839, + "2097": 2.4351546914, + "2098": 2.3569762988, + "2099": 2.2784881494, + "2100": 2.2, + "2101": 2.1215118506, + "2102": 2.0430237012, + "2103": 1.9648453086, + "2104": 1.8866669161, + "2105": 1.8091068148, + "2106": 1.7315467135, + "2107": 1.6549109978, + "2108": 1.5782752821, + "2109": 1.5028663981, + "2110": 1.4274575141, + "2111": 1.3535730662, + "2112": 1.2796886183, + "2113": 1.2076201947, + "2114": 1.1355517711, + "2115": 1.0655837929, + "2116": 0.9956158147, + "2117": 0.9280244136, + "2118": 0.8604330126, + "2119": 0.7954849409, + "2120": 0.7305368693, + "2121": 0.6684884474, + "2122": 0.6064400256, + "2123": 0.5475361304, + "2124": 0.4886322352, + "2125": 0.4331053333, + "2126": 0.3775784314, + "2127": 0.3256476623, + "2128": 0.2737168931, + "2129": 0.2255872036, + "2130": 0.1774575141, + "2131": 0.1333188502, + "2132": 0.0891801862, + "2133": 0.0492067431, + "2134": 0.0092332999, + "2135": -0.0264171656, + "2136": -0.0620676312, + "2137": -0.0932544229, + "2138": -0.1244412147, + "2139": -0.1510412527, + "2140": -0.1776412907, + "2141": -0.1995495968, + "2142": -0.2214579028, + "2143": -0.2385880148, + "2144": -0.2557181268, + "2145": -0.2680024401, + "2146": -0.2802867533, + "2147": -0.2876767872, + "2148": -0.2950668211, + "2149": -0.2975334105, + "2150": -0.3, + "2151": -0.2975334105, + "2152": -0.2950668211, + "2153": -0.2876767872, + "2154": -0.2802867533, + "2155": -0.2680024401, + "2156": -0.2557181268, + "2157": -0.2385880148, + "2158": -0.2214579028, + "2159": -0.1995495968, + "2160": -0.1776412907, + "2161": -0.1510412527, + "2162": -0.1244412147, + "2163": -0.0932544229, + "2164": -0.0620676312, + "2165": -0.0264171656, + "2166": 0.0092332999, + "2167": 0.0492067431, + "2168": 0.0891801862, + "2169": 0.1333188502, + "2170": 0.1774575141, + "2171": 0.2255872036, + "2172": 0.2737168931, + "2173": 0.3256476623, + "2174": 0.3775784314, + "2175": 0.4331053333, + "2176": 0.4886322352, + "2177": 0.5475361304, + "2178": 0.6064400256, + "2179": 0.6684884474, + "2180": 0.7305368693, + "2181": 0.7954849409, + "2182": 0.8604330126, + "2183": 0.9280244136, + "2184": 0.9956158147, + "2185": 1.0655837929, + "2186": 1.1355517711, + "2187": 1.2076201947, + "2188": 1.2796886183, + "2189": 1.3535730662, + "2190": 1.4274575141, + "2191": 1.5028663981, + "2192": 1.5782752821, + "2193": 1.6549109978, + "2194": 1.7315467135, + "2195": 1.8091068148, + "2196": 1.8866669161, + "2197": 1.9648453086, + "2198": 2.0430237012, + "2199": 2.1215118506, + "2200": 2.2, + "2201": 2.2784881494, + "2202": 2.3569762988, + "2203": 2.4351546914, + "2204": 2.5133330839, + "2205": 2.5908931852, + "2206": 2.6684532865, + "2207": 2.7450890022, + "2208": 2.8217247179, + "2209": 2.8971336019, + "2210": 2.9725424859, + "2211": 3.0464269338, + "2212": 3.1203113817, + "2213": 3.1923798053, + "2214": 3.2644482289, + "2215": 3.3344162071, + "2216": 3.4043841853, + "2217": 3.4719755864, + "2218": 3.5395669874, + "2219": 3.6045150591, + "2220": 3.6694631307, + "2221": 3.7315115526, + "2222": 3.7935599744, + "2223": 3.8524638696, + "2224": 3.9113677648, + "2225": 3.9668946667, + "2226": 4.0224215686, + "2227": 4.0743523377, + "2228": 4.1262831069, + "2229": 4.1744127964, + "2230": 4.2225424859, + "2231": 4.2666811498, + "2232": 4.3108198138, + "2233": 4.3507932569, + "2234": 4.3907667001, + "2235": 4.4264171656, + "2236": 4.4620676312, + "2237": 4.4932544229, + "2238": 4.5244412147, + "2239": 4.5510412527, + "2240": 4.5776412907, + "2241": 4.5995495968, + "2242": 4.6214579028, + "2243": 4.6385880148, + "2244": 4.6557181268, + "2245": 4.6680024401, + "2246": 4.6802867533, + "2247": 4.6876767872, + "2248": 4.6950668211, + "2249": 4.6975334105, + "2250": 4.7, + "2251": 4.6975334105, + "2252": 4.6950668211, + "2253": 4.6876767872, + "2254": 4.6802867533, + "2255": 4.6680024401, + "2256": 4.6557181268, + "2257": 4.6385880148, + "2258": 4.6214579028, + "2259": 4.5995495968, + "2260": 4.5776412907, + "2261": 4.5510412527, + "2262": 4.5244412147, + "2263": 4.4932544229, + "2264": 4.4620676312, + "2265": 4.4264171656, + "2266": 4.3907667001, + "2267": 4.3507932569, + "2268": 4.3108198138, + "2269": 4.2666811498, + "2270": 4.2225424859, + "2271": 4.1744127964, + "2272": 4.1262831069, + "2273": 4.0743523377, + "2274": 4.0224215686, + "2275": 3.9668946667, + "2276": 3.9113677648, + "2277": 3.8524638696, + "2278": 3.7935599744, + "2279": 3.7315115526, + "2280": 3.6694631307, + "2281": 3.6045150591, + "2282": 3.5395669874, + "2283": 3.4719755864, + "2284": 3.4043841853, + "2285": 3.3344162071, + "2286": 3.2644482289, + "2287": 3.1923798053, + "2288": 3.1203113817, + "2289": 3.0464269338, + "2290": 2.9725424859, + "2291": 2.8971336019, + "2292": 2.8217247179, + "2293": 2.7450890022, + "2294": 2.6684532865, + "2295": 2.5908931852, + "2296": 2.5133330839, + "2297": 2.4351546914, + "2298": 2.3569762988, + "2299": 2.2784881494, + "2300": 2.2, + "2301": 2.1215118506, + "2302": 2.0430237012, + "2303": 1.9648453086, + "2304": 1.8866669161, + "2305": 1.8091068148, + "2306": 1.7315467135, + "2307": 1.6549109978, + "2308": 1.5782752821, + "2309": 1.5028663981, + "2310": 1.4274575141, + "2311": 1.3535730662, + "2312": 1.2796886183, + "2313": 1.2076201947, + "2314": 1.1355517711, + "2315": 1.0655837929, + "2316": 0.9956158147, + "2317": 0.9280244136, + "2318": 0.8604330126, + "2319": 0.7954849409, + "2320": 0.7305368693, + "2321": 0.6684884474, + "2322": 0.6064400256, + "2323": 0.5475361304, + "2324": 0.4886322352, + "2325": 0.4331053333, + "2326": 0.3775784314, + "2327": 0.3256476623, + "2328": 0.2737168931, + "2329": 0.2255872036, + "2330": 0.1774575141, + "2331": 0.1333188502, + "2332": 0.0891801862, + "2333": 0.0492067431, + "2334": 0.0092332999, + "2335": -0.0264171656, + "2336": -0.0620676312, + "2337": -0.0932544229, + "2338": -0.1244412147, + "2339": -0.1510412527, + "2340": -0.1776412907, + "2341": -0.1995495968, + "2342": -0.2214579028, + "2343": -0.2385880148, + "2344": -0.2557181268, + "2345": -0.2680024401, + "2346": -0.2802867533, + "2347": -0.2876767872, + "2348": -0.2950668211, + "2349": -0.2975334105, + "2350": -0.3, + "2351": -0.2975334105, + "2352": -0.2950668211, + "2353": -0.2876767872, + "2354": -0.2802867533, + "2355": -0.2680024401, + "2356": -0.2557181268, + "2357": -0.2385880148, + "2358": -0.2214579028, + "2359": -0.1995495968, + "2360": -0.1776412907, + "2361": -0.1510412527, + "2362": -0.1244412147, + "2363": -0.0932544229, + "2364": -0.0620676312, + "2365": -0.0264171656, + "2366": 0.0092332999, + "2367": 0.0492067431, + "2368": 0.0891801862, + "2369": 0.1333188502, + "2370": 0.1774575141, + "2371": 0.2255872036, + "2372": 0.2737168931, + "2373": 0.3256476623, + "2374": 0.3775784314, + "2375": 0.4331053333, + "2376": 0.4886322352, + "2377": 0.5475361304, + "2378": 0.6064400256, + "2379": 0.6684884474, + "2380": 0.7305368693, + "2381": 0.7954849409, + "2382": 0.8604330126, + "2383": 0.9280244136, + "2384": 0.9956158147, + "2385": 1.0655837929, + "2386": 1.1355517711, + "2387": 1.2076201947, + "2388": 1.2796886183, + "2389": 1.3535730662, + "2390": 1.4274575141, + "2391": 1.5028663981, + "2392": 1.5782752821, + "2393": 1.6549109978, + "2394": 1.7315467135, + "2395": 1.8091068148, + "2396": 1.8866669161, + "2397": 1.9648453086, + "2398": 2.0430237012, + "2399": 2.1215118506, + "2400": 2.2, + "2401": 2.2784881494, + "2402": 2.3569762988, + "2403": 2.4351546914, + "2404": 2.5133330839, + "2405": 2.5908931852, + "2406": 2.6684532865, + "2407": 2.7450890022, + "2408": 2.8217247179, + "2409": 2.8971336019, + "2410": 2.9725424859, + "2411": 3.0464269338, + "2412": 3.1203113817, + "2413": 3.1923798053, + "2414": 3.2644482289, + "2415": 3.3344162071, + "2416": 3.4043841853, + "2417": 3.4719755864, + "2418": 3.5395669874, + "2419": 3.6045150591, + "2420": 3.6694631307, + "2421": 3.7315115526, + "2422": 3.7935599744, + "2423": 3.8524638696, + "2424": 3.9113677648, + "2425": 3.9668946667, + "2426": 4.0224215686, + "2427": 4.0743523377, + "2428": 4.1262831069, + "2429": 4.1744127964, + "2430": 4.2225424859, + "2431": 4.2666811498, + "2432": 4.3108198138, + "2433": 4.3507932569, + "2434": 4.3907667001, + "2435": 4.4264171656, + "2436": 4.4620676312, + "2437": 4.4932544229, + "2438": 4.5244412147, + "2439": 4.5510412527, + "2440": 4.5776412907, + "2441": 4.5995495968, + "2442": 4.6214579028, + "2443": 4.6385880148, + "2444": 4.6557181268, + "2445": 4.6680024401, + "2446": 4.6802867533, + "2447": 4.6876767872, + "2448": 4.6950668211, + "2449": 4.6975334105, + "2450": 4.7, + "2451": 4.6975334105, + "2452": 4.6950668211, + "2453": 4.6876767872, + "2454": 4.6802867533, + "2455": 4.6680024401, + "2456": 4.6557181268, + "2457": 4.6385880148, + "2458": 4.6214579028, + "2459": 4.5995495968, + "2460": 4.5776412907, + "2461": 4.5510412527, + "2462": 4.5244412147, + "2463": 4.4932544229, + "2464": 4.4620676312, + "2465": 4.4264171656, + "2466": 4.3907667001, + "2467": 4.3507932569, + "2468": 4.3108198138, + "2469": 4.2666811498, + "2470": 4.2225424859, + "2471": 4.1744127964, + "2472": 4.1262831069, + "2473": 4.0743523377, + "2474": 4.0224215686, + "2475": 3.9668946667, + "2476": 3.9113677648, + "2477": 3.8524638696, + "2478": 3.7935599744, + "2479": 3.7315115526, + "2480": 3.6694631307, + "2481": 3.6045150591, + "2482": 3.5395669874, + "2483": 3.4719755864, + "2484": 3.4043841853, + "2485": 3.3344162071, + "2486": 3.2644482289, + "2487": 3.1923798053, + "2488": 3.1203113817, + "2489": 3.0464269338, + "2490": 2.9725424859, + "2491": 2.8971336019, + "2492": 2.8217247179, + "2493": 2.7450890022, + "2494": 2.6684532865, + "2495": 2.5908931852, + "2496": 2.5133330839, + "2497": 2.4351546914, + "2498": 2.3569762988, + "2499": 2.2784881494, + "2500": 2.2, + "2501": 2.1215118506, + "2502": 2.0430237012, + "2503": 1.9648453086, + "2504": 1.8866669161, + "2505": 1.8091068148, + "2506": 1.7315467135, + "2507": 1.6549109978, + "2508": 1.5782752821, + "2509": 1.5028663981, + "2510": 1.4274575141, + "2511": 1.3535730662, + "2512": 1.2796886183, + "2513": 1.2076201947, + "2514": 1.1355517711, + "2515": 1.0655837929, + "2516": 0.9956158147, + "2517": 0.9280244136, + "2518": 0.8604330126, + "2519": 0.7954849409, + "2520": 0.7305368693, + "2521": 0.6684884474, + "2522": 0.6064400256, + "2523": 0.5475361304, + "2524": 0.4886322352, + "2525": 0.4331053333, + "2526": 0.3775784314, + "2527": 0.3256476623, + "2528": 0.2737168931, + "2529": 0.2255872036, + "2530": 0.1774575141, + "2531": 0.1333188502, + "2532": 0.0891801862, + "2533": 0.0492067431, + "2534": 0.0092332999, + "2535": -0.0264171656, + "2536": -0.0620676312, + "2537": -0.0932544229, + "2538": -0.1244412147, + "2539": -0.1510412527, + "2540": -0.1776412907, + "2541": -0.1995495968, + "2542": -0.2214579028, + "2543": -0.2385880148, + "2544": -0.2557181268, + "2545": -0.2680024401, + "2546": -0.2802867533, + "2547": -0.2876767872, + "2548": -0.2950668211, + "2549": -0.2975334105, + "2550": -0.3, + "2551": -0.2975334105, + "2552": -0.2950668211, + "2553": -0.2876767872, + "2554": -0.2802867533, + "2555": -0.2680024401, + "2556": -0.2557181268, + "2557": -0.2385880148, + "2558": -0.2214579028, + "2559": -0.1995495968, + "2560": -0.1776412907, + "2561": -0.1510412527, + "2562": -0.1244412147, + "2563": -0.0932544229, + "2564": -0.0620676312, + "2565": -0.0264171656, + "2566": 0.0092332999, + "2567": 0.0492067431, + "2568": 0.0891801862, + "2569": 0.1333188502, + "2570": 0.1774575141, + "2571": 0.2255872036, + "2572": 0.2737168931, + "2573": 0.3256476623, + "2574": 0.3775784314, + "2575": 0.4331053333, + "2576": 0.4886322352, + "2577": 0.5475361304, + "2578": 0.6064400256, + "2579": 0.6684884474, + "2580": 0.7305368693, + "2581": 0.7954849409, + "2582": 0.8604330126, + "2583": 0.9280244136, + "2584": 0.9956158147, + "2585": 1.0655837929, + "2586": 1.1355517711, + "2587": 1.2076201947, + "2588": 1.2796886183, + "2589": 1.3535730662, + "2590": 1.4274575141, + "2591": 1.5028663981, + "2592": 1.5782752821, + "2593": 1.6549109978, + "2594": 1.7315467135, + "2595": 1.8091068148, + "2596": 1.8866669161, + "2597": 1.9648453086, + "2598": 2.0430237012, + "2599": 2.1215118506, + "2600": 2.2, + "2601": 2.2784881494, + "2602": 2.3569762988, + "2603": 2.4351546914, + "2604": 2.5133330839, + "2605": 2.5908931852, + "2606": 2.6684532865, + "2607": 2.7450890022, + "2608": 2.8217247179, + "2609": 2.8971336019, + "2610": 2.9725424859, + "2611": 3.0464269338, + "2612": 3.1203113817, + "2613": 3.1923798053, + "2614": 3.2644482289, + "2615": 3.3344162071, + "2616": 3.4043841853, + "2617": 3.4719755864, + "2618": 3.5395669874, + "2619": 3.6045150591, + "2620": 3.6694631307, + "2621": 3.7315115526, + "2622": 3.7935599744, + "2623": 3.8524638696, + "2624": 3.9113677648, + "2625": 3.9668946667, + "2626": 4.0224215686, + "2627": 4.0743523377, + "2628": 4.1262831069, + "2629": 4.1744127964, + "2630": 4.2225424859, + "2631": 4.2666811498, + "2632": 4.3108198138, + "2633": 4.3507932569, + "2634": 4.3907667001, + "2635": 4.4264171656, + "2636": 4.4620676312, + "2637": 4.4932544229, + "2638": 4.5244412147, + "2639": 4.5510412527, + "2640": 4.5776412907, + "2641": 4.5995495968, + "2642": 4.6214579028, + "2643": 4.6385880148, + "2644": 4.6557181268, + "2645": 4.6680024401, + "2646": 4.6802867533, + "2647": 4.6876767872, + "2648": 4.6950668211, + "2649": 4.6975334105, + "2650": 4.7, + "2651": 4.6975334105, + "2652": 4.6950668211, + "2653": 4.6876767872, + "2654": 4.6802867533, + "2655": 4.6680024401, + "2656": 4.6557181268, + "2657": 4.6385880148, + "2658": 4.6214579028, + "2659": 4.5995495968, + "2660": 4.5776412907, + "2661": 4.5510412527, + "2662": 4.5244412147, + "2663": 4.4932544229, + "2664": 4.4620676312, + "2665": 4.4264171656, + "2666": 4.3907667001, + "2667": 4.3507932569, + "2668": 4.3108198138, + "2669": 4.2666811498, + "2670": 4.2225424859, + "2671": 4.1744127964, + "2672": 4.1262831069, + "2673": 4.0743523377, + "2674": 4.0224215686, + "2675": 3.9668946667, + "2676": 3.9113677648, + "2677": 3.8524638696, + "2678": 3.7935599744, + "2679": 3.7315115526, + "2680": 3.6694631307, + "2681": 3.6045150591, + "2682": 3.5395669874, + "2683": 3.4719755864, + "2684": 3.4043841853, + "2685": 3.3344162071, + "2686": 3.2644482289, + "2687": 3.1923798053, + "2688": 3.1203113817, + "2689": 3.0464269338, + "2690": 2.9725424859, + "2691": 2.8971336019, + "2692": 2.8217247179, + "2693": 2.7450890022, + "2694": 2.6684532865, + "2695": 2.5908931852, + "2696": 2.5133330839, + "2697": 2.4351546914, + "2698": 2.3569762988, + "2699": 2.2784881494, + "2700": 2.2, + "2701": 2.1215118506, + "2702": 2.0430237012, + "2703": 1.9648453086, + "2704": 1.8866669161, + "2705": 1.8091068148, + "2706": 1.7315467135, + "2707": 1.6549109978, + "2708": 1.5782752821, + "2709": 1.5028663981, + "2710": 1.4274575141, + "2711": 1.3535730662, + "2712": 1.2796886183, + "2713": 1.2076201947, + "2714": 1.1355517711, + "2715": 1.0655837929, + "2716": 0.9956158147, + "2717": 0.9280244136, + "2718": 0.8604330126, + "2719": 0.7954849409, + "2720": 0.7305368693, + "2721": 0.6684884474, + "2722": 0.6064400256, + "2723": 0.5475361304, + "2724": 0.4886322352, + "2725": 0.4331053333, + "2726": 0.3775784314, + "2727": 0.3256476623, + "2728": 0.2737168931, + "2729": 0.2255872036, + "2730": 0.1774575141, + "2731": 0.1333188502, + "2732": 0.0891801862, + "2733": 0.0492067431, + "2734": 0.0092332999, + "2735": -0.0264171656, + "2736": -0.0620676312, + "2737": -0.0932544229, + "2738": -0.1244412147, + "2739": -0.1510412527, + "2740": -0.1776412907, + "2741": -0.1995495968, + "2742": -0.2214579028, + "2743": -0.2385880148, + "2744": -0.2557181268, + "2745": -0.2680024401, + "2746": -0.2802867533, + "2747": -0.2876767872, + "2748": -0.2950668211, + "2749": -0.2975334105, + "2750": -0.3, + "2751": -0.2975334105, + "2752": -0.2950668211, + "2753": -0.2876767872, + "2754": -0.2802867533, + "2755": -0.2680024401, + "2756": -0.2557181268, + "2757": -0.2385880148, + "2758": -0.2214579028, + "2759": -0.1995495968, + "2760": -0.1776412907, + "2761": -0.1510412527, + "2762": -0.1244412147, + "2763": -0.0932544229, + "2764": -0.0620676312, + "2765": -0.0264171656, + "2766": 0.0092332999, + "2767": 0.0492067431, + "2768": 0.0891801862, + "2769": 0.1333188502, + "2770": 0.1774575141, + "2771": 0.2255872036, + "2772": 0.2737168931, + "2773": 0.3256476623, + "2774": 0.3775784314, + "2775": 0.4331053333, + "2776": 0.4886322352, + "2777": 0.5475361304, + "2778": 0.6064400256, + "2779": 0.6684884474, + "2780": 0.7305368693, + "2781": 0.7954849409, + "2782": 0.8604330126, + "2783": 0.9280244136, + "2784": 0.9956158147, + "2785": 1.0655837929, + "2786": 1.1355517711, + "2787": 1.2076201947, + "2788": 1.2796886183, + "2789": 1.3535730662, + "2790": 1.4274575141, + "2791": 1.5028663981, + "2792": 1.5782752821, + "2793": 1.6549109978, + "2794": 1.7315467135, + "2795": 1.8091068148, + "2796": 1.8866669161, + "2797": 1.9648453086, + "2798": 2.0430237012, + "2799": 2.1215118506, + "2800": 2.2, + "2801": 2.2784881494, + "2802": 2.3569762988, + "2803": 2.4351546914, + "2804": 2.5133330839, + "2805": 2.5908931852, + "2806": 2.6684532865, + "2807": 2.7450890022, + "2808": 2.8217247179, + "2809": 2.8971336019, + "2810": 2.9725424859, + "2811": 3.0464269338, + "2812": 3.1203113817, + "2813": 3.1923798053, + "2814": 3.2644482289, + "2815": 3.3344162071, + "2816": 3.4043841853, + "2817": 3.4719755864, + "2818": 3.5395669874, + "2819": 3.6045150591, + "2820": 3.6694631307, + "2821": 3.7315115526, + "2822": 3.7935599744, + "2823": 3.8524638696, + "2824": 3.9113677648, + "2825": 3.9668946667, + "2826": 4.0224215686, + "2827": 4.0743523377, + "2828": 4.1262831069, + "2829": 4.1744127964, + "2830": 4.2225424859, + "2831": 4.2666811498, + "2832": 4.3108198138, + "2833": 4.3507932569, + "2834": 4.3907667001, + "2835": 4.4264171656, + "2836": 4.4620676312, + "2837": 4.4932544229, + "2838": 4.5244412147, + "2839": 4.5510412527, + "2840": 4.5776412907, + "2841": 4.5995495968, + "2842": 4.6214579028, + "2843": 4.6385880148, + "2844": 4.6557181268, + "2845": 4.6680024401, + "2846": 4.6802867533, + "2847": 4.6876767872, + "2848": 4.6950668211, + "2849": 4.6975334105, + "2850": 4.7, + "2851": 4.6975334105, + "2852": 4.6950668211, + "2853": 4.6876767872, + "2854": 4.6802867533, + "2855": 4.6680024401, + "2856": 4.6557181268, + "2857": 4.6385880148, + "2858": 4.6214579028, + "2859": 4.5995495968, + "2860": 4.5776412907, + "2861": 4.5510412527, + "2862": 4.5244412147, + "2863": 4.4932544229, + "2864": 4.4620676312, + "2865": 4.4264171656, + "2866": 4.3907667001, + "2867": 4.3507932569, + "2868": 4.3108198138, + "2869": 4.2666811498, + "2870": 4.2225424859, + "2871": 4.1744127964, + "2872": 4.1262831069, + "2873": 4.0743523377, + "2874": 4.0224215686, + "2875": 3.9668946667, + "2876": 3.9113677648, + "2877": 3.8524638696, + "2878": 3.7935599744, + "2879": 3.7315115526, + "2880": 3.6694631307, + "2881": 3.6045150591, + "2882": 3.5395669874, + "2883": 3.4719755864, + "2884": 3.4043841853, + "2885": 3.3344162071, + "2886": 3.2644482289, + "2887": 3.1923798053, + "2888": 3.1203113817, + "2889": 3.0464269338, + "2890": 2.9725424859, + "2891": 2.8971336019, + "2892": 2.8217247179, + "2893": 2.7450890022, + "2894": 2.6684532865, + "2895": 2.5908931852, + "2896": 2.5133330839, + "2897": 2.4351546914, + "2898": 2.3569762988, + "2899": 2.2784881494, + "2900": 2.2, + "2901": 2.1215118506, + "2902": 2.0430237012, + "2903": 1.9648453086, + "2904": 1.8866669161, + "2905": 1.8091068148, + "2906": 1.7315467135, + "2907": 1.6549109978, + "2908": 1.5782752821, + "2909": 1.5028663981, + "2910": 1.4274575141, + "2911": 1.3535730662, + "2912": 1.2796886183, + "2913": 1.2076201947, + "2914": 1.1355517711, + "2915": 1.0655837929, + "2916": 0.9956158147, + "2917": 0.9280244136, + "2918": 0.8604330126, + "2919": 0.7954849409, + "2920": 0.7305368693, + "2921": 0.6684884474, + "2922": 0.6064400256, + "2923": 0.5475361304, + "2924": 0.4886322352, + "2925": 0.4331053333, + "2926": 0.3775784314, + "2927": 0.3256476623, + "2928": 0.2737168931, + "2929": 0.2255872036, + "2930": 0.1774575141, + "2931": 0.1333188502, + "2932": 0.0891801862, + "2933": 0.0492067431, + "2934": 0.0092332999, + "2935": -0.0264171656, + "2936": -0.0620676312, + "2937": -0.0932544229, + "2938": -0.1244412147, + "2939": -0.1510412527, + "2940": -0.1776412907, + "2941": -0.1995495968, + "2942": -0.2214579028, + "2943": -0.2385880148, + "2944": -0.2557181268, + "2945": -0.2680024401, + "2946": -0.2802867533, + "2947": -0.2876767872, + "2948": -0.2950668211, + "2949": -0.2975334105, + "2950": -0.3, + "2951": -0.2975334105, + "2952": -0.2950668211, + "2953": -0.2876767872, + "2954": -0.2802867533, + "2955": -0.2680024401, + "2956": -0.2557181268, + "2957": -0.2385880148, + "2958": -0.2214579028, + "2959": -0.1995495968, + "2960": -0.1776412907, + "2961": -0.1510412527, + "2962": -0.1244412147, + "2963": -0.0932544229, + "2964": -0.0620676312, + "2965": -0.0264171656, + "2966": 0.0092332999, + "2967": 0.0492067431, + "2968": 0.0891801862, + "2969": 0.1333188502, + "2970": 0.1774575141, + "2971": 0.2255872036, + "2972": 0.2737168931, + "2973": 0.3256476623, + "2974": 0.3775784314, + "2975": 0.4331053333, + "2976": 0.4886322352, + "2977": 0.5475361304, + "2978": 0.6064400256, + "2979": 0.6684884474, + "2980": 0.7305368693, + "2981": 0.7954849409, + "2982": 0.8604330126, + "2983": 0.9280244136, + "2984": 0.9956158147, + "2985": 1.0655837929, + "2986": 1.1355517711, + "2987": 1.2076201947, + "2988": 1.2796886183, + "2989": 1.3535730662, + "2990": 1.4274575141, + "2991": 1.5028663981, + "2992": 1.5782752821, + "2993": 1.6549109978, + "2994": 1.7315467135, + "2995": 1.8091068148, + "2996": 1.8866669161, + "2997": 1.9648453086, + "2998": 2.0430237012, + "2999": 2.1215118506, + "3000": 2.2, + "3001": 2.2784881494, + "3002": 2.3569762988, + "3003": 2.4351546914, + "3004": 2.5133330839, + "3005": 2.5908931852, + "3006": 2.6684532865, + "3007": 2.7450890022, + "3008": 2.8217247179, + "3009": 2.8971336019, + "3010": 2.9725424859, + "3011": 3.0464269338, + "3012": 3.1203113817, + "3013": 3.1923798053, + "3014": 3.2644482289, + "3015": 3.3344162071, + "3016": 3.4043841853, + "3017": 3.4719755864, + "3018": 3.5395669874, + "3019": 3.6045150591, + "3020": 3.6694631307, + "3021": 3.7315115526, + "3022": 3.7935599744, + "3023": 3.8524638696, + "3024": 3.9113677648, + "3025": 3.9668946667, + "3026": 4.0224215686, + "3027": 4.0743523377, + "3028": 4.1262831069, + "3029": 4.1744127964, + "3030": 4.2225424859, + "3031": 4.2666811498, + "3032": 4.3108198138, + "3033": 4.3507932569, + "3034": 4.3907667001, + "3035": 4.4264171656, + "3036": 4.4620676312, + "3037": 4.4932544229, + "3038": 4.5244412147, + "3039": 4.5510412527, + "3040": 4.5776412907, + "3041": 4.5995495968, + "3042": 4.6214579028, + "3043": 4.6385880148, + "3044": 4.6557181268, + "3045": 4.6680024401, + "3046": 4.6802867533, + "3047": 4.6876767872, + "3048": 4.6950668211, + "3049": 4.6975334105, + "3050": 4.7, + "3051": 4.6975334105, + "3052": 4.6950668211, + "3053": 4.6876767872, + "3054": 4.6802867533, + "3055": 4.6680024401, + "3056": 4.6557181268, + "3057": 4.6385880148, + "3058": 4.6214579028, + "3059": 4.5995495968, + "3060": 4.5776412907, + "3061": 4.5510412527, + "3062": 4.5244412147, + "3063": 4.4932544229, + "3064": 4.4620676312, + "3065": 4.4264171656, + "3066": 4.3907667001, + "3067": 4.3507932569, + "3068": 4.3108198138, + "3069": 4.2666811498, + "3070": 4.2225424859, + "3071": 4.1744127964, + "3072": 4.1262831069, + "3073": 4.0743523377, + "3074": 4.0224215686, + "3075": 3.9668946667, + "3076": 3.9113677648, + "3077": 3.8524638696, + "3078": 3.7935599744, + "3079": 3.7315115526, + "3080": 3.6694631307, + "3081": 3.6045150591, + "3082": 3.5395669874, + "3083": 3.4719755864, + "3084": 3.4043841853, + "3085": 3.3344162071, + "3086": 3.2644482289, + "3087": 3.1923798053, + "3088": 3.1203113817, + "3089": 3.0464269338, + "3090": 2.9725424859, + "3091": 2.8971336019, + "3092": 2.8217247179, + "3093": 2.7450890022, + "3094": 2.6684532865, + "3095": 2.5908931852, + "3096": 2.5133330839, + "3097": 2.4351546914, + "3098": 2.3569762988, + "3099": 2.2784881494, + "3100": 2.2, + "3101": 2.1215118506, + "3102": 2.0430237012, + "3103": 1.9648453086, + "3104": 1.8866669161, + "3105": 1.8091068148, + "3106": 1.7315467135, + "3107": 1.6549109978, + "3108": 1.5782752821, + "3109": 1.5028663981, + "3110": 1.4274575141, + "3111": 1.3535730662, + "3112": 1.2796886183, + "3113": 1.2076201947, + "3114": 1.1355517711, + "3115": 1.0655837929, + "3116": 0.9956158147, + "3117": 0.9280244136, + "3118": 0.8604330126, + "3119": 0.7954849409, + "3120": 0.7305368693, + "3121": 0.6684884474, + "3122": 0.6064400256, + "3123": 0.5475361304, + "3124": 0.4886322352, + "3125": 0.4331053333, + "3126": 0.3775784314, + "3127": 0.3256476623, + "3128": 0.2737168931, + "3129": 0.2255872036, + "3130": 0.1774575141, + "3131": 0.1333188502, + "3132": 0.0891801862, + "3133": 0.0492067431, + "3134": 0.0092332999, + "3135": -0.0264171656, + "3136": -0.0620676312, + "3137": -0.0932544229, + "3138": -0.1244412147, + "3139": -0.1510412527, + "3140": -0.1776412907, + "3141": -0.1995495968, + "3142": -0.2214579028, + "3143": -0.2385880148, + "3144": -0.2557181268, + "3145": -0.2680024401, + "3146": -0.2802867533, + "3147": -0.2876767872, + "3148": -0.2950668211, + "3149": -0.2975334105, + "3150": -0.3, + "3151": -0.2975334105, + "3152": -0.2950668211, + "3153": -0.2876767872, + "3154": -0.2802867533, + "3155": -0.2680024401, + "3156": -0.2557181268, + "3157": -0.2385880148, + "3158": -0.2214579028, + "3159": -0.1995495968, + "3160": -0.1776412907, + "3161": -0.1510412527, + "3162": -0.1244412147, + "3163": -0.0932544229, + "3164": -0.0620676312, + "3165": -0.0264171656, + "3166": 0.0092332999, + "3167": 0.0492067431, + "3168": 0.0891801862, + "3169": 0.1333188502, + "3170": 0.1774575141, + "3171": 0.2255872036, + "3172": 0.2737168931, + "3173": 0.3256476623, + "3174": 0.3775784314, + "3175": 0.4331053333, + "3176": 0.4886322352, + "3177": 0.5475361304, + "3178": 0.6064400256, + "3179": 0.6684884474, + "3180": 0.7305368693, + "3181": 0.7954849409, + "3182": 0.8604330126, + "3183": 0.9280244136, + "3184": 0.9956158147, + "3185": 1.0655837929, + "3186": 1.1355517711, + "3187": 1.2076201947, + "3188": 1.2796886183, + "3189": 1.3535730662, + "3190": 1.4274575141, + "3191": 1.5028663981, + "3192": 1.5782752821, + "3193": 1.6549109978, + "3194": 1.7315467135, + "3195": 1.8091068148, + "3196": 1.8866669161, + "3197": 1.9648453086, + "3198": 2.0430237012, + "3199": 2.1215118506, + "3200": 2.2, + "3201": 2.2784881494, + "3202": 2.3569762988, + "3203": 2.4351546914, + "3204": 2.5133330839, + "3205": 2.5908931852, + "3206": 2.6684532865, + "3207": 2.7450890022, + "3208": 2.8217247179, + "3209": 2.8971336019, + "3210": 2.9725424859, + "3211": 3.0464269338, + "3212": 3.1203113817, + "3213": 3.1923798053, + "3214": 3.2644482289, + "3215": 3.3344162071, + "3216": 3.4043841853, + "3217": 3.4719755864, + "3218": 3.5395669874, + "3219": 3.6045150591, + "3220": 3.6694631307, + "3221": 3.7315115526, + "3222": 3.7935599744, + "3223": 3.8524638696, + "3224": 3.9113677648, + "3225": 3.9668946667, + "3226": 4.0224215686, + "3227": 4.0743523377, + "3228": 4.1262831069, + "3229": 4.1744127964, + "3230": 4.2225424859, + "3231": 4.2666811498, + "3232": 4.3108198138, + "3233": 4.3507932569, + "3234": 4.3907667001, + "3235": 4.4264171656, + "3236": 4.4620676312, + "3237": 4.4932544229, + "3238": 4.5244412147, + "3239": 4.5510412527, + "3240": 4.5776412907, + "3241": 4.5995495968, + "3242": 4.6214579028, + "3243": 4.6385880148, + "3244": 4.6557181268, + "3245": 4.6680024401, + "3246": 4.6802867533, + "3247": 4.6876767872, + "3248": 4.6950668211, + "3249": 4.6975334105, + "3250": 4.7, + "3251": 4.6975334105, + "3252": 4.6950668211, + "3253": 4.6876767872, + "3254": 4.6802867533, + "3255": 4.6680024401, + "3256": 4.6557181268, + "3257": 4.6385880148, + "3258": 4.6214579028, + "3259": 4.5995495968, + "3260": 4.5776412907, + "3261": 4.5510412527, + "3262": 4.5244412147, + "3263": 4.4932544229, + "3264": 4.4620676312, + "3265": 4.4264171656, + "3266": 4.3907667001, + "3267": 4.3507932569, + "3268": 4.3108198138, + "3269": 4.2666811498, + "3270": 4.2225424859, + "3271": 4.1744127964, + "3272": 4.1262831069, + "3273": 4.0743523377, + "3274": 4.0224215686, + "3275": 3.9668946667, + "3276": 3.9113677648, + "3277": 3.8524638696, + "3278": 3.7935599744, + "3279": 3.7315115526, + "3280": 3.6694631307, + "3281": 3.6045150591, + "3282": 3.5395669874, + "3283": 3.4719755864, + "3284": 3.4043841853, + "3285": 3.3344162071, + "3286": 3.2644482289, + "3287": 3.1923798053, + "3288": 3.1203113817, + "3289": 3.0464269338, + "3290": 2.9725424859, + "3291": 2.8971336019, + "3292": 2.8217247179, + "3293": 2.7450890022, + "3294": 2.6684532865, + "3295": 2.5908931852, + "3296": 2.5133330839, + "3297": 2.4351546914, + "3298": 2.3569762988, + "3299": 2.2784881494, + "3300": 2.2, + "3301": 2.1215118506, + "3302": 2.0430237012, + "3303": 1.9648453086, + "3304": 1.8866669161, + "3305": 1.8091068148, + "3306": 1.7315467135, + "3307": 1.6549109978, + "3308": 1.5782752821, + "3309": 1.5028663981, + "3310": 1.4274575141, + "3311": 1.3535730662, + "3312": 1.2796886183, + "3313": 1.2076201947, + "3314": 1.1355517711, + "3315": 1.0655837929, + "3316": 0.9956158147, + "3317": 0.9280244136, + "3318": 0.8604330126, + "3319": 0.7954849409, + "3320": 0.7305368693, + "3321": 0.6684884474, + "3322": 0.6064400256, + "3323": 0.5475361304, + "3324": 0.4886322352, + "3325": 0.4331053333, + "3326": 0.3775784314, + "3327": 0.3256476623, + "3328": 0.2737168931, + "3329": 0.2255872036, + "3330": 0.1774575141, + "3331": 0.1333188502, + "3332": 0.0891801862, + "3333": 0.0492067431, + "3334": 0.0092332999, + "3335": -0.0264171656, + "3336": -0.0620676312, + "3337": -0.0932544229, + "3338": -0.1244412147, + "3339": -0.1510412527, + "3340": -0.1776412907, + "3341": -0.1995495968, + "3342": -0.2214579028, + "3343": -0.2385880148, + "3344": -0.2557181268, + "3345": -0.2680024401, + "3346": -0.2802867533, + "3347": -0.2876767872, + "3348": -0.2950668211, + "3349": -0.2975334105, + "3350": -0.3, + "3351": -0.2975334105, + "3352": -0.2950668211, + "3353": -0.2876767872, + "3354": -0.2802867533, + "3355": -0.2680024401, + "3356": -0.2557181268, + "3357": -0.2385880148, + "3358": -0.2214579028, + "3359": -0.1995495968, + "3360": -0.1776412907, + "3361": -0.1510412527, + "3362": -0.1244412147, + "3363": -0.0932544229, + "3364": -0.0620676312, + "3365": -0.0264171656, + "3366": 0.0092332999, + "3367": 0.0492067431, + "3368": 0.0891801862, + "3369": 0.1333188502, + "3370": 0.1774575141, + "3371": 0.2255872036, + "3372": 0.2737168931, + "3373": 0.3256476623, + "3374": 0.3775784314, + "3375": 0.4331053333, + "3376": 0.4886322352, + "3377": 0.5475361304, + "3378": 0.6064400256, + "3379": 0.6684884474, + "3380": 0.7305368693, + "3381": 0.7954849409, + "3382": 0.8604330126, + "3383": 0.9280244136, + "3384": 0.9956158147, + "3385": 1.0655837929, + "3386": 1.1355517711, + "3387": 1.2076201947, + "3388": 1.2796886183, + "3389": 1.3535730662, + "3390": 1.4274575141, + "3391": 1.5028663981, + "3392": 1.5782752821, + "3393": 1.6549109978, + "3394": 1.7315467135, + "3395": 1.8091068148, + "3396": 1.8866669161, + "3397": 1.9648453086, + "3398": 2.0430237012, + "3399": 2.1215118506, + "3400": 2.2, + "3401": 2.2784881494, + "3402": 2.3569762988, + "3403": 2.4351546914, + "3404": 2.5133330839, + "3405": 2.5908931852, + "3406": 2.6684532865, + "3407": 2.7450890022, + "3408": 2.8217247179, + "3409": 2.8971336019, + "3410": 2.9725424859, + "3411": 3.0464269338, + "3412": 3.1203113817, + "3413": 3.1923798053, + "3414": 3.2644482289, + "3415": 3.3344162071, + "3416": 3.4043841853, + "3417": 3.4719755864, + "3418": 3.5395669874, + "3419": 3.6045150591, + "3420": 3.6694631307, + "3421": 3.7315115526, + "3422": 3.7935599744, + "3423": 3.8524638696, + "3424": 3.9113677648, + "3425": 3.9668946667, + "3426": 4.0224215686, + "3427": 4.0743523377, + "3428": 4.1262831069, + "3429": 4.1744127964, + "3430": 4.2225424859, + "3431": 4.2666811498, + "3432": 4.3108198138, + "3433": 4.3507932569, + "3434": 4.3907667001, + "3435": 4.4264171656, + "3436": 4.4620676312, + "3437": 4.4932544229, + "3438": 4.5244412147, + "3439": 4.5510412527, + "3440": 4.5776412907, + "3441": 4.5995495968, + "3442": 4.6214579028, + "3443": 4.6385880148, + "3444": 4.6557181268, + "3445": 4.6680024401, + "3446": 4.6802867533, + "3447": 4.6876767872, + "3448": 4.6950668211, + "3449": 4.6975334105, + "3450": 4.7, + "3451": 4.6975334105, + "3452": 4.6950668211, + "3453": 4.6876767872, + "3454": 4.6802867533, + "3455": 4.6680024401, + "3456": 4.6557181268, + "3457": 4.6385880148, + "3458": 4.6214579028, + "3459": 4.5995495968, + "3460": 4.5776412907, + "3461": 4.5510412527, + "3462": 4.5244412147, + "3463": 4.4932544229, + "3464": 4.4620676312, + "3465": 4.4264171656, + "3466": 4.3907667001, + "3467": 4.3507932569, + "3468": 4.3108198138, + "3469": 4.2666811498, + "3470": 4.2225424859, + "3471": 4.1744127964, + "3472": 4.1262831069, + "3473": 4.0743523377, + "3474": 4.0224215686, + "3475": 3.9668946667, + "3476": 3.9113677648, + "3477": 3.8524638696, + "3478": 3.7935599744, + "3479": 3.7315115526, + "3480": 3.6694631307, + "3481": 3.6045150591, + "3482": 3.5395669874, + "3483": 3.4719755864, + "3484": 3.4043841853, + "3485": 3.3344162071, + "3486": 3.2644482289, + "3487": 3.1923798053, + "3488": 3.1203113817, + "3489": 3.0464269338, + "3490": 2.9725424859, + "3491": 2.8971336019, + "3492": 2.8217247179, + "3493": 2.7450890022, + "3494": 2.6684532865, + "3495": 2.5908931852, + "3496": 2.5133330839, + "3497": 2.4351546914, + "3498": 2.3569762988, + "3499": 2.2784881494, + "3500": 2.2, + "3501": 2.1215118506, + "3502": 2.0430237012, + "3503": 1.9648453086, + "3504": 1.8866669161, + "3505": 1.8091068148, + "3506": 1.7315467135, + "3507": 1.6549109978, + "3508": 1.5782752821, + "3509": 1.5028663981, + "3510": 1.4274575141, + "3511": 1.3535730662, + "3512": 1.2796886183, + "3513": 1.2076201947, + "3514": 1.1355517711, + "3515": 1.0655837929, + "3516": 0.9956158147, + "3517": 0.9280244136, + "3518": 0.8604330126, + "3519": 0.7954849409, + "3520": 0.7305368693, + "3521": 0.6684884474, + "3522": 0.6064400256, + "3523": 0.5475361304, + "3524": 0.4886322352, + "3525": 0.4331053333, + "3526": 0.3775784314, + "3527": 0.3256476623, + "3528": 0.2737168931, + "3529": 0.2255872036, + "3530": 0.1774575141, + "3531": 0.1333188502, + "3532": 0.0891801862, + "3533": 0.0492067431, + "3534": 0.0092332999, + "3535": -0.0264171656, + "3536": -0.0620676312, + "3537": -0.0932544229, + "3538": -0.1244412147, + "3539": -0.1510412527, + "3540": -0.1776412907, + "3541": -0.1995495968, + "3542": -0.2214579028, + "3543": -0.2385880148, + "3544": -0.2557181268, + "3545": -0.2680024401, + "3546": -0.2802867533, + "3547": -0.2876767872, + "3548": -0.2950668211, + "3549": -0.2975334105, + "3550": -0.3, + "3551": -0.2975334105, + "3552": -0.2950668211, + "3553": -0.2876767872, + "3554": -0.2802867533, + "3555": -0.2680024401, + "3556": -0.2557181268, + "3557": -0.2385880148, + "3558": -0.2214579028, + "3559": -0.1995495968, + "3560": -0.1776412907, + "3561": -0.1510412527, + "3562": -0.1244412147, + "3563": -0.0932544229, + "3564": -0.0620676312, + "3565": -0.0264171656, + "3566": 0.0092332999, + "3567": 0.0492067431, + "3568": 0.0891801862, + "3569": 0.1333188502, + "3570": 0.1774575141, + "3571": 0.2255872036, + "3572": 0.2737168931, + "3573": 0.3256476623, + "3574": 0.3775784314, + "3575": 0.4331053333, + "3576": 0.4886322352, + "3577": 0.5475361304, + "3578": 0.6064400256, + "3579": 0.6684884474, + "3580": 0.7305368693, + "3581": 0.7954849409, + "3582": 0.8604330126, + "3583": 0.9280244136, + "3584": 0.9956158147, + "3585": 1.0655837929, + "3586": 1.1355517711, + "3587": 1.2076201947, + "3588": 1.2796886183, + "3589": 1.3535730662, + "3590": 1.4274575141, + "3591": 1.5028663981, + "3592": 1.5782752821, + "3593": 1.6549109978, + "3594": 1.7315467135, + "3595": 1.8091068148, + "3596": 1.8866669161, + "3597": 1.9648453086, + "3598": 2.0430237012, + "3599": 2.1215118506, + "3600": 2.2, + "3601": 2.2784881494, + "3602": 2.3569762988, + "3603": 2.4351546914, + "3604": 2.5133330839, + "3605": 2.5908931852, + "3606": 2.6684532865, + "3607": 2.7450890022, + "3608": 2.8217247179, + "3609": 2.8971336019, + "3610": 2.9725424859, + "3611": 3.0464269338, + "3612": 3.1203113817, + "3613": 3.1923798053, + "3614": 3.2644482289, + "3615": 3.3344162071, + "3616": 3.4043841853, + "3617": 3.4719755864, + "3618": 3.5395669874, + "3619": 3.6045150591, + "3620": 3.6694631307, + "3621": 3.7315115526, + "3622": 3.7935599744, + "3623": 3.8524638696, + "3624": 3.9113677648, + "3625": 3.9668946667, + "3626": 4.0224215686, + "3627": 4.0743523377, + "3628": 4.1262831069, + "3629": 4.1744127964, + "3630": 4.2225424859, + "3631": 4.2666811498, + "3632": 4.3108198138, + "3633": 4.3507932569, + "3634": 4.3907667001, + "3635": 4.4264171656, + "3636": 4.4620676312, + "3637": 4.4932544229, + "3638": 4.5244412147, + "3639": 4.5510412527, + "3640": 4.5776412907, + "3641": 4.5995495968, + "3642": 4.6214579028, + "3643": 4.6385880148, + "3644": 4.6557181268, + "3645": 4.6680024401, + "3646": 4.6802867533, + "3647": 4.6876767872, + "3648": 4.6950668211, + "3649": 4.6975334105, + "3650": 4.7, + "3651": 4.6975334105, + "3652": 4.6950668211, + "3653": 4.6876767872, + "3654": 4.6802867533, + "3655": 4.6680024401, + "3656": 4.6557181268, + "3657": 4.6385880148, + "3658": 4.6214579028, + "3659": 4.5995495968, + "3660": 4.5776412907, + "3661": 4.5510412527, + "3662": 4.5244412147, + "3663": 4.4932544229, + "3664": 4.4620676312, + "3665": 4.4264171656, + "3666": 4.3907667001, + "3667": 4.3507932569, + "3668": 4.3108198138, + "3669": 4.2666811498, + "3670": 4.2225424859, + "3671": 4.1744127964, + "3672": 4.1262831069, + "3673": 4.0743523377, + "3674": 4.0224215686, + "3675": 3.9668946667, + "3676": 3.9113677648, + "3677": 3.8524638696, + "3678": 3.7935599744, + "3679": 3.7315115526, + "3680": 3.6694631307, + "3681": 3.6045150591, + "3682": 3.5395669874, + "3683": 3.4719755864, + "3684": 3.4043841853, + "3685": 3.3344162071, + "3686": 3.2644482289, + "3687": 3.1923798053, + "3688": 3.1203113817, + "3689": 3.0464269338, + "3690": 2.9725424859, + "3691": 2.8971336019, + "3692": 2.8217247179, + "3693": 2.7450890022, + "3694": 2.6684532865, + "3695": 2.5908931852, + "3696": 2.5133330839, + "3697": 2.4351546914, + "3698": 2.3569762988, + "3699": 2.2784881494, + "3700": 2.2, + "3701": 2.1215118506, + "3702": 2.0430237012, + "3703": 1.9648453086, + "3704": 1.8866669161, + "3705": 1.8091068148, + "3706": 1.7315467135, + "3707": 1.6549109978, + "3708": 1.5782752821, + "3709": 1.5028663981, + "3710": 1.4274575141, + "3711": 1.3535730662, + "3712": 1.2796886183, + "3713": 1.2076201947, + "3714": 1.1355517711, + "3715": 1.0655837929, + "3716": 0.9956158147, + "3717": 0.9280244136, + "3718": 0.8604330126, + "3719": 0.7954849409, + "3720": 0.7305368693, + "3721": 0.6684884474, + "3722": 0.6064400256, + "3723": 0.5475361304, + "3724": 0.4886322352, + "3725": 0.4331053333, + "3726": 0.3775784314, + "3727": 0.3256476623, + "3728": 0.2737168931, + "3729": 0.2255872036, + "3730": 0.1774575141, + "3731": 0.1333188502, + "3732": 0.0891801862, + "3733": 0.0492067431, + "3734": 0.0092332999, + "3735": -0.0264171656, + "3736": -0.0620676312, + "3737": -0.0932544229, + "3738": -0.1244412147, + "3739": -0.1510412527, + "3740": -0.1776412907, + "3741": -0.1995495968, + "3742": -0.2214579028, + "3743": -0.2385880148, + "3744": -0.2557181268, + "3745": -0.2680024401, + "3746": -0.2802867533, + "3747": -0.2876767872, + "3748": -0.2950668211, + "3749": -0.2975334105, + "3750": -0.3, + "3751": -0.2975334105, + "3752": -0.2950668211, + "3753": -0.2876767872, + "3754": -0.2802867533, + "3755": -0.2680024401, + "3756": -0.2557181268, + "3757": -0.2385880148, + "3758": -0.2214579028, + "3759": -0.1995495968, + "3760": -0.1776412907, + "3761": -0.1510412527, + "3762": -0.1244412147, + "3763": -0.0932544229, + "3764": -0.0620676312, + "3765": -0.0264171656, + "3766": 0.0092332999, + "3767": 0.0492067431, + "3768": 0.0891801862, + "3769": 0.1333188502, + "3770": 0.1774575141, + "3771": 0.2255872036, + "3772": 0.2737168931, + "3773": 0.3256476623, + "3774": 0.3775784314, + "3775": 0.4331053333, + "3776": 0.4886322352, + "3777": 0.5475361304, + "3778": 0.6064400256, + "3779": 0.6684884474, + "3780": 0.7305368693, + "3781": 0.7954849409, + "3782": 0.8604330126, + "3783": 0.9280244136, + "3784": 0.9956158147, + "3785": 1.0655837929, + "3786": 1.1355517711, + "3787": 1.2076201947, + "3788": 1.2796886183, + "3789": 1.3535730662, + "3790": 1.4274575141, + "3791": 1.5028663981, + "3792": 1.5782752821, + "3793": 1.6549109978, + "3794": 1.7315467135, + "3795": 1.8091068148, + "3796": 1.8866669161, + "3797": 1.9648453086, + "3798": 2.0430237012, + "3799": 2.1215118506, + "3800": 2.2, + "3801": 2.2784881494, + "3802": 2.3569762988, + "3803": 2.4351546914, + "3804": 2.5133330839, + "3805": 2.5908931852, + "3806": 2.6684532865, + "3807": 2.7450890022, + "3808": 2.8217247179, + "3809": 2.8971336019, + "3810": 2.9725424859, + "3811": 3.0464269338, + "3812": 3.1203113817, + "3813": 3.1923798053, + "3814": 3.2644482289, + "3815": 3.3344162071, + "3816": 3.4043841853, + "3817": 3.4719755864, + "3818": 3.5395669874, + "3819": 3.6045150591, + "3820": 3.6694631307, + "3821": 3.7315115526, + "3822": 3.7935599744, + "3823": 3.8524638696, + "3824": 3.9113677648, + "3825": 3.9668946667, + "3826": 4.0224215686, + "3827": 4.0743523377, + "3828": 4.1262831069, + "3829": 4.1744127964, + "3830": 4.2225424859, + "3831": 4.2666811498, + "3832": 4.3108198138, + "3833": 4.3507932569, + "3834": 4.3907667001, + "3835": 4.4264171656, + "3836": 4.4620676312, + "3837": 4.4932544229, + "3838": 4.5244412147, + "3839": 4.5510412527, + "3840": 4.5776412907, + "3841": 4.5995495968, + "3842": 4.6214579028, + "3843": 4.6385880148, + "3844": 4.6557181268, + "3845": 4.6680024401, + "3846": 4.6802867533, + "3847": 4.6876767872, + "3848": 4.6950668211, + "3849": 4.6975334105, + "3850": 4.7, + "3851": 4.6975334105, + "3852": 4.6950668211, + "3853": 4.6876767872, + "3854": 4.6802867533, + "3855": 4.6680024401, + "3856": 4.6557181268, + "3857": 4.6385880148, + "3858": 4.6214579028, + "3859": 4.5995495968, + "3860": 4.5776412907, + "3861": 4.5510412527, + "3862": 4.5244412147, + "3863": 4.4932544229, + "3864": 4.4620676312, + "3865": 4.4264171656, + "3866": 4.3907667001, + "3867": 4.3507932569, + "3868": 4.3108198138, + "3869": 4.2666811498, + "3870": 4.2225424859, + "3871": 4.1744127964, + "3872": 4.1262831069, + "3873": 4.0743523377, + "3874": 4.0224215686, + "3875": 3.9668946667, + "3876": 3.9113677648, + "3877": 3.8524638696, + "3878": 3.7935599744, + "3879": 3.7315115526, + "3880": 3.6694631307, + "3881": 3.6045150591, + "3882": 3.5395669874, + "3883": 3.4719755864, + "3884": 3.4043841853, + "3885": 3.3344162071, + "3886": 3.2644482289, + "3887": 3.1923798053, + "3888": 3.1203113817, + "3889": 3.0464269338, + "3890": 2.9725424859, + "3891": 2.8971336019, + "3892": 2.8217247179, + "3893": 2.7450890022, + "3894": 2.6684532865, + "3895": 2.5908931852, + "3896": 2.5133330839, + "3897": 2.4351546914, + "3898": 2.3569762988, + "3899": 2.2784881494, + "3900": 2.2, + "3901": 2.1215118506, + "3902": 2.0430237012, + "3903": 1.9648453086, + "3904": 1.8866669161, + "3905": 1.8091068148, + "3906": 1.7315467135, + "3907": 1.6549109978, + "3908": 1.5782752821, + "3909": 1.5028663981, + "3910": 1.4274575141, + "3911": 1.3535730662, + "3912": 1.2796886183, + "3913": 1.2076201947, + "3914": 1.1355517711, + "3915": 1.0655837929, + "3916": 0.9956158147, + "3917": 0.9280244136, + "3918": 0.8604330126, + "3919": 0.7954849409, + "3920": 0.7305368693, + "3921": 0.6684884474, + "3922": 0.6064400256, + "3923": 0.5475361304, + "3924": 0.4886322352, + "3925": 0.4331053333, + "3926": 0.3775784314, + "3927": 0.3256476623, + "3928": 0.2737168931, + "3929": 0.2255872036, + "3930": 0.1774575141, + "3931": 0.1333188502, + "3932": 0.0891801862, + "3933": 0.0492067431, + "3934": 0.0092332999, + "3935": -0.0264171656, + "3936": -0.0620676312, + "3937": -0.0932544229, + "3938": -0.1244412147, + "3939": -0.1510412527, + "3940": -0.1776412907, + "3941": -0.1995495968, + "3942": -0.2214579028, + "3943": -0.2385880148, + "3944": -0.2557181268, + "3945": -0.2680024401, + "3946": -0.2802867533, + "3947": -0.2876767872, + "3948": -0.2950668211, + "3949": -0.2975334105, + "3950": -0.3, + "3951": -0.2975334105, + "3952": -0.2950668211, + "3953": -0.2876767872, + "3954": -0.2802867533, + "3955": -0.2680024401, + "3956": -0.2557181268, + "3957": -0.2385880148, + "3958": -0.2214579028, + "3959": -0.1995495968, + "3960": -0.1776412907, + "3961": -0.1510412527, + "3962": -0.1244412147, + "3963": -0.0932544229, + "3964": -0.0620676312, + "3965": -0.0264171656, + "3966": 0.0092332999, + "3967": 0.0492067431, + "3968": 0.0891801862, + "3969": 0.1333188502, + "3970": 0.1774575141, + "3971": 0.2255872036, + "3972": 0.2737168931, + "3973": 0.3256476623, + "3974": 0.3775784314, + "3975": 0.4331053333, + "3976": 0.4886322352, + "3977": 0.5475361304, + "3978": 0.6064400256, + "3979": 0.6684884474, + "3980": 0.7305368693, + "3981": 0.7954849409, + "3982": 0.8604330126, + "3983": 0.9280244136, + "3984": 0.9956158147, + "3985": 1.0655837929, + "3986": 1.1355517711, + "3987": 1.2076201947, + "3988": 1.2796886183, + "3989": 1.3535730662, + "3990": 1.4274575141, + "3991": 1.5028663981, + "3992": 1.5782752821, + "3993": 1.6549109978, + "3994": 1.7315467135, + "3995": 1.8091068148, + "3996": 1.8866669161, + "3997": 1.9648453086, + "3998": 2.0430237012, + "3999": 2.1215118506, + "4000": 2.2, + "4001": 2.2784881494, + "4002": 2.3569762988, + "4003": 2.4351546914, + "4004": 2.5133330839, + "4005": 2.5908931852, + "4006": 2.6684532865, + "4007": 2.7450890022, + "4008": 2.8217247179, + "4009": 2.8971336019, + "4010": 2.9725424859, + "4011": 3.0464269338, + "4012": 3.1203113817, + "4013": 3.1923798053, + "4014": 3.2644482289, + "4015": 3.3344162071, + "4016": 3.4043841853, + "4017": 3.4719755864, + "4018": 3.5395669874, + "4019": 3.6045150591, + "4020": 3.6694631307, + "4021": 3.7315115526, + "4022": 3.7935599744, + "4023": 3.8524638696, + "4024": 3.9113677648, + "4025": 3.9668946667, + "4026": 4.0224215686, + "4027": 4.0743523377, + "4028": 4.1262831069, + "4029": 4.1744127964, + "4030": 4.2225424859, + "4031": 4.2666811498, + "4032": 4.3108198138, + "4033": 4.3507932569, + "4034": 4.3907667001, + "4035": 4.4264171656, + "4036": 4.4620676312, + "4037": 4.4932544229, + "4038": 4.5244412147, + "4039": 4.5510412527, + "4040": 4.5776412907, + "4041": 4.5995495968, + "4042": 4.6214579028, + "4043": 4.6385880148, + "4044": 4.6557181268, + "4045": 4.6680024401, + "4046": 4.6802867533, + "4047": 4.6876767872, + "4048": 4.6950668211, + "4049": 4.6975334105, + "4050": 4.7, + "4051": 4.6975334105, + "4052": 4.6950668211, + "4053": 4.6876767872, + "4054": 4.6802867533, + "4055": 4.6680024401, + "4056": 4.6557181268, + "4057": 4.6385880148, + "4058": 4.6214579028, + "4059": 4.5995495968, + "4060": 4.5776412907, + "4061": 4.5510412527, + "4062": 4.5244412147, + "4063": 4.4932544229, + "4064": 4.4620676312, + "4065": 4.4264171656, + "4066": 4.3907667001, + "4067": 4.3507932569, + "4068": 4.3108198138, + "4069": 4.2666811498, + "4070": 4.2225424859, + "4071": 4.1744127964, + "4072": 4.1262831069, + "4073": 4.0743523377, + "4074": 4.0224215686, + "4075": 3.9668946667, + "4076": 3.9113677648, + "4077": 3.8524638696, + "4078": 3.7935599744, + "4079": 3.7315115526, + "4080": 3.6694631307, + "4081": 3.6045150591, + "4082": 3.5395669874, + "4083": 3.4719755864, + "4084": 3.4043841853, + "4085": 3.3344162071, + "4086": 3.2644482289, + "4087": 3.1923798053, + "4088": 3.1203113817, + "4089": 3.0464269338, + "4090": 2.9725424859, + "4091": 2.8971336019, + "4092": 2.8217247179, + "4093": 2.7450890022, + "4094": 2.6684532865, + "4095": 2.5908931852, + "4096": 2.5133330839, + "4097": 2.4351546914, + "4098": 2.3569762988, + "4099": 2.2784881494, + "4100": 2.2, + "4101": 2.1215118506, + "4102": 2.0430237012, + "4103": 1.9648453086, + "4104": 1.8866669161, + "4105": 1.8091068148, + "4106": 1.7315467135, + "4107": 1.6549109978, + "4108": 1.5782752821, + "4109": 1.5028663981, + "4110": 1.4274575141, + "4111": 1.3535730662, + "4112": 1.2796886183, + "4113": 1.2076201947, + "4114": 1.1355517711, + "4115": 1.0655837929, + "4116": 0.9956158147, + "4117": 0.9280244136, + "4118": 0.8604330126, + "4119": 0.7954849409, + "4120": 0.7305368693, + "4121": 0.6684884474, + "4122": 0.6064400256, + "4123": 0.5475361304, + "4124": 0.4886322352, + "4125": 0.4331053333, + "4126": 0.3775784314, + "4127": 0.3256476623, + "4128": 0.2737168931, + "4129": 0.2255872036, + "4130": 0.1774575141, + "4131": 0.1333188502, + "4132": 0.0891801862, + "4133": 0.0492067431, + "4134": 0.0092332999, + "4135": -0.0264171656, + "4136": -0.0620676312, + "4137": -0.0932544229, + "4138": -0.1244412147, + "4139": -0.1510412527, + "4140": -0.1776412907, + "4141": -0.1995495968, + "4142": -0.2214579028, + "4143": -0.2385880148, + "4144": -0.2557181268, + "4145": -0.2680024401, + "4146": -0.2802867533, + "4147": -0.2876767872, + "4148": -0.2950668211, + "4149": -0.2975334105, + "4150": -0.3, + "4151": -0.2975334105, + "4152": -0.2950668211, + "4153": -0.2876767872, + "4154": -0.2802867533, + "4155": -0.2680024401, + "4156": -0.2557181268, + "4157": -0.2385880148, + "4158": -0.2214579028, + "4159": -0.1995495968, + "4160": -0.1776412907, + "4161": -0.1510412527, + "4162": -0.1244412147, + "4163": -0.0932544229, + "4164": -0.0620676312, + "4165": -0.0264171656, + "4166": 0.0092332999, + "4167": 0.0492067431, + "4168": 0.0891801862, + "4169": 0.1333188502, + "4170": 0.1774575141, + "4171": 0.2255872036, + "4172": 0.2737168931, + "4173": 0.3256476623, + "4174": 0.3775784314, + "4175": 0.4331053333, + "4176": 0.4886322352, + "4177": 0.5475361304, + "4178": 0.6064400256, + "4179": 0.6684884474, + "4180": 0.7305368693, + "4181": 0.7954849409, + "4182": 0.8604330126, + "4183": 0.9280244136, + "4184": 0.9956158147, + "4185": 1.0655837929, + "4186": 1.1355517711, + "4187": 1.2076201947, + "4188": 1.2796886183, + "4189": 1.3535730662, + "4190": 1.4274575141, + "4191": 1.5028663981, + "4192": 1.5782752821, + "4193": 1.6549109978, + "4194": 1.7315467135, + "4195": 1.8091068148, + "4196": 1.8866669161, + "4197": 1.9648453086, + "4198": 2.0430237012, + "4199": 2.1215118506, + "4200": 2.2, + "4201": 2.2784881494, + "4202": 2.3569762988, + "4203": 2.4351546914, + "4204": 2.5133330839, + "4205": 2.5908931852, + "4206": 2.6684532865, + "4207": 2.7450890022, + "4208": 2.8217247179, + "4209": 2.8971336019, + "4210": 2.9725424859, + "4211": 3.0464269338, + "4212": 3.1203113817, + "4213": 3.1923798053, + "4214": 3.2644482289, + "4215": 3.3344162071, + "4216": 3.4043841853, + "4217": 3.4719755864, + "4218": 3.5395669874, + "4219": 3.6045150591, + "4220": 3.6694631307, + "4221": 3.7315115526, + "4222": 3.7935599744, + "4223": 3.8524638696, + "4224": 3.9113677648, + "4225": 3.9668946667, + "4226": 4.0224215686, + "4227": 4.0743523377, + "4228": 4.1262831069, + "4229": 4.1744127964, + "4230": 4.2225424859, + "4231": 4.2666811498, + "4232": 4.3108198138, + "4233": 4.3507932569, + "4234": 4.3907667001, + "4235": 4.4264171656, + "4236": 4.4620676312, + "4237": 4.4932544229, + "4238": 4.5244412147, + "4239": 4.5510412527, + "4240": 4.5776412907, + "4241": 4.5995495968, + "4242": 4.6214579028, + "4243": 4.6385880148, + "4244": 4.6557181268, + "4245": 4.6680024401, + "4246": 4.6802867533, + "4247": 4.6876767872, + "4248": 4.6950668211, + "4249": 4.6975334105, + "4250": 4.7, + "4251": 4.6975334105, + "4252": 4.6950668211, + "4253": 4.6876767872, + "4254": 4.6802867533, + "4255": 4.6680024401, + "4256": 4.6557181268, + "4257": 4.6385880148, + "4258": 4.6214579028, + "4259": 4.5995495968, + "4260": 4.5776412907, + "4261": 4.5510412527, + "4262": 4.5244412147, + "4263": 4.4932544229, + "4264": 4.4620676312, + "4265": 4.4264171656, + "4266": 4.3907667001, + "4267": 4.3507932569, + "4268": 4.3108198138, + "4269": 4.2666811498, + "4270": 4.2225424859, + "4271": 4.1744127964, + "4272": 4.1262831069, + "4273": 4.0743523377, + "4274": 4.0224215686, + "4275": 3.9668946667, + "4276": 3.9113677648, + "4277": 3.8524638696, + "4278": 3.7935599744, + "4279": 3.7315115526, + "4280": 3.6694631307, + "4281": 3.6045150591, + "4282": 3.5395669874, + "4283": 3.4719755864, + "4284": 3.4043841853, + "4285": 3.3344162071, + "4286": 3.2644482289, + "4287": 3.1923798053, + "4288": 3.1203113817, + "4289": 3.0464269338, + "4290": 2.9725424859, + "4291": 2.8971336019, + "4292": 2.8217247179, + "4293": 2.7450890022, + "4294": 2.6684532865, + "4295": 2.5908931852, + "4296": 2.5133330839, + "4297": 2.4351546914, + "4298": 2.3569762988, + "4299": 2.2784881494, + "4300": 2.2, + "4301": 2.1215118506, + "4302": 2.0430237012, + "4303": 1.9648453086, + "4304": 1.8866669161, + "4305": 1.8091068148, + "4306": 1.7315467135, + "4307": 1.6549109978, + "4308": 1.5782752821, + "4309": 1.5028663981, + "4310": 1.4274575141, + "4311": 1.3535730662, + "4312": 1.2796886183, + "4313": 1.2076201947, + "4314": 1.1355517711, + "4315": 1.0655837929, + "4316": 0.9956158147, + "4317": 0.9280244136, + "4318": 0.8604330126, + "4319": 0.7954849409, + "4320": 0.7305368693, + "4321": 0.6684884474, + "4322": 0.6064400256, + "4323": 0.5475361304, + "4324": 0.4886322352, + "4325": 0.4331053333, + "4326": 0.3775784314, + "4327": 0.3256476623, + "4328": 0.2737168931, + "4329": 0.2255872036, + "4330": 0.1774575141, + "4331": 0.1333188502, + "4332": 0.0891801862, + "4333": 0.0492067431, + "4334": 0.0092332999, + "4335": -0.0264171656, + "4336": -0.0620676312, + "4337": -0.0932544229, + "4338": -0.1244412147, + "4339": -0.1510412527, + "4340": -0.1776412907, + "4341": -0.1995495968, + "4342": -0.2214579028, + "4343": -0.2385880148, + "4344": -0.2557181268, + "4345": -0.2680024401, + "4346": -0.2802867533, + "4347": -0.2876767872, + "4348": -0.2950668211, + "4349": -0.2975334105, + "4350": -0.3, + "4351": -0.2975334105, + "4352": -0.2950668211, + "4353": -0.2876767872, + "4354": -0.2802867533, + "4355": -0.2680024401, + "4356": -0.2557181268, + "4357": -0.2385880148, + "4358": -0.2214579028, + "4359": -0.1995495968, + "4360": -0.1776412907, + "4361": -0.1510412527, + "4362": -0.1244412147, + "4363": -0.0932544229, + "4364": -0.0620676312, + "4365": -0.0264171656, + "4366": 0.0092332999, + "4367": 0.0492067431, + "4368": 0.0891801862, + "4369": 0.1333188502, + "4370": 0.1774575141, + "4371": 0.2255872036, + "4372": 0.2737168931, + "4373": 0.3256476623, + "4374": 0.3775784314, + "4375": 0.4331053333, + "4376": 0.4886322352, + "4377": 0.5475361304, + "4378": 0.6064400256, + "4379": 0.6684884474, + "4380": 0.7305368693, + "4381": 0.7954849409, + "4382": 0.8604330126, + "4383": 0.9280244136, + "4384": 0.9956158147, + "4385": 1.0655837929, + "4386": 1.1355517711, + "4387": 1.2076201947, + "4388": 1.2796886183, + "4389": 1.3535730662, + "4390": 1.4274575141, + "4391": 1.5028663981, + "4392": 1.5782752821, + "4393": 1.6549109978, + "4394": 1.7315467135, + "4395": 1.8091068148, + "4396": 1.8866669161, + "4397": 1.9648453086, + "4398": 2.0430237012, + "4399": 2.1215118506, + "4400": 2.2, + "4401": 2.2784881494, + "4402": 2.3569762988, + "4403": 2.4351546914, + "4404": 2.5133330839, + "4405": 2.5908931852, + "4406": 2.6684532865, + "4407": 2.7450890022, + "4408": 2.8217247179, + "4409": 2.8971336019, + "4410": 2.9725424859, + "4411": 3.0464269338, + "4412": 3.1203113817, + "4413": 3.1923798053, + "4414": 3.2644482289, + "4415": 3.3344162071, + "4416": 3.4043841853, + "4417": 3.4719755864, + "4418": 3.5395669874, + "4419": 3.6045150591, + "4420": 3.6694631307, + "4421": 3.7315115526, + "4422": 3.7935599744, + "4423": 3.8524638696, + "4424": 3.9113677648, + "4425": 3.9668946667, + "4426": 4.0224215686, + "4427": 4.0743523377, + "4428": 4.1262831069, + "4429": 4.1744127964, + "4430": 4.2225424859, + "4431": 4.2666811498, + "4432": 4.3108198138, + "4433": 4.3507932569, + "4434": 4.3907667001, + "4435": 4.4264171656, + "4436": 4.4620676312, + "4437": 4.4932544229, + "4438": 4.5244412147, + "4439": 4.5510412527, + "4440": 4.5776412907, + "4441": 4.5995495968, + "4442": 4.6214579028, + "4443": 4.6385880148, + "4444": 4.6557181268, + "4445": 4.6680024401, + "4446": 4.6802867533, + "4447": 4.6876767872, + "4448": 4.6950668211, + "4449": 4.6975334105, + "4450": 4.7, + "4451": 4.6975334105, + "4452": 4.6950668211, + "4453": 4.6876767872, + "4454": 4.6802867533, + "4455": 4.6680024401, + "4456": 4.6557181268, + "4457": 4.6385880148, + "4458": 4.6214579028, + "4459": 4.5995495968, + "4460": 4.5776412907, + "4461": 4.5510412527, + "4462": 4.5244412147, + "4463": 4.4932544229, + "4464": 4.4620676312, + "4465": 4.4264171656, + "4466": 4.3907667001, + "4467": 4.3507932569, + "4468": 4.3108198138, + "4469": 4.2666811498, + "4470": 4.2225424859, + "4471": 4.1744127964, + "4472": 4.1262831069, + "4473": 4.0743523377, + "4474": 4.0224215686, + "4475": 3.9668946667, + "4476": 3.9113677648, + "4477": 3.8524638696, + "4478": 3.7935599744, + "4479": 3.7315115526, + "4480": 3.6694631307, + "4481": 3.6045150591, + "4482": 3.5395669874, + "4483": 3.4719755864, + "4484": 3.4043841853, + "4485": 3.3344162071, + "4486": 3.2644482289, + "4487": 3.1923798053, + "4488": 3.1203113817, + "4489": 3.0464269338, + "4490": 2.9725424859, + "4491": 2.8971336019, + "4492": 2.8217247179, + "4493": 2.7450890022, + "4494": 2.6684532865, + "4495": 2.5908931852, + "4496": 2.5133330839, + "4497": 2.4351546914, + "4498": 2.3569762988, + "4499": 2.2784881494, + "4500": 2.2, + "4501": 2.1215118506, + "4502": 2.0430237012, + "4503": 1.9648453086, + "4504": 1.8866669161, + "4505": 1.8091068148, + "4506": 1.7315467135, + "4507": 1.6549109978, + "4508": 1.5782752821, + "4509": 1.5028663981, + "4510": 1.4274575141, + "4511": 1.3535730662, + "4512": 1.2796886183, + "4513": 1.2076201947, + "4514": 1.1355517711, + "4515": 1.0655837929, + "4516": 0.9956158147, + "4517": 0.9280244136, + "4518": 0.8604330126, + "4519": 0.7954849409, + "4520": 0.7305368693, + "4521": 0.6684884474, + "4522": 0.6064400256, + "4523": 0.5475361304, + "4524": 0.4886322352, + "4525": 0.4331053333, + "4526": 0.3775784314, + "4527": 0.3256476623, + "4528": 0.2737168931, + "4529": 0.2255872036, + "4530": 0.1774575141, + "4531": 0.1333188502, + "4532": 0.0891801862, + "4533": 0.0492067431, + "4534": 0.0092332999, + "4535": -0.0264171656, + "4536": -0.0620676312, + "4537": -0.0932544229, + "4538": -0.1244412147, + "4539": -0.1510412527, + "4540": -0.1776412907, + "4541": -0.1995495968, + "4542": -0.2214579028, + "4543": -0.2385880148, + "4544": -0.2557181268, + "4545": -0.2680024401, + "4546": -0.2802867533, + "4547": -0.2876767872, + "4548": -0.2950668211, + "4549": -0.2975334105, + "4550": -0.3, + "4551": -0.2975334105, + "4552": -0.2950668211, + "4553": -0.2876767872, + "4554": -0.2802867533, + "4555": -0.2680024401, + "4556": -0.2557181268, + "4557": -0.2385880148, + "4558": -0.2214579028, + "4559": -0.1995495968, + "4560": -0.1776412907, + "4561": -0.1510412527, + "4562": -0.1244412147, + "4563": -0.0932544229, + "4564": -0.0620676312, + "4565": -0.0264171656, + "4566": 0.0092332999, + "4567": 0.0492067431, + "4568": 0.0891801862, + "4569": 0.1333188502, + "4570": 0.1774575141, + "4571": 0.2255872036, + "4572": 0.2737168931, + "4573": 0.3256476623, + "4574": 0.3775784314, + "4575": 0.4331053333, + "4576": 0.4886322352, + "4577": 0.5475361304, + "4578": 0.6064400256, + "4579": 0.6684884474, + "4580": 0.7305368693, + "4581": 0.7954849409, + "4582": 0.8604330126, + "4583": 0.9280244136, + "4584": 0.9956158147, + "4585": 1.0655837929, + "4586": 1.1355517711, + "4587": 1.2076201947, + "4588": 1.2796886183, + "4589": 1.3535730662, + "4590": 1.4274575141, + "4591": 1.5028663981, + "4592": 1.5782752821, + "4593": 1.6549109978, + "4594": 1.7315467135, + "4595": 1.8091068148, + "4596": 1.8866669161, + "4597": 1.9648453086, + "4598": 2.0430237012, + "4599": 2.1215118506, + "4600": 2.2, + "4601": 2.2784881494, + "4602": 2.3569762988, + "4603": 2.4351546914, + "4604": 2.5133330839, + "4605": 2.5908931852, + "4606": 2.6684532865, + "4607": 2.7450890022, + "4608": 2.8217247179, + "4609": 2.8971336019, + "4610": 2.9725424859, + "4611": 3.0464269338, + "4612": 3.1203113817, + "4613": 3.1923798053, + "4614": 3.2644482289, + "4615": 3.3344162071, + "4616": 3.4043841853, + "4617": 3.4719755864, + "4618": 3.5395669874, + "4619": 3.6045150591, + "4620": 3.6694631307, + "4621": 3.7315115526, + "4622": 3.7935599744, + "4623": 3.8524638696, + "4624": 3.9113677648, + "4625": 3.9668946667, + "4626": 4.0224215686, + "4627": 4.0743523377, + "4628": 4.1262831069, + "4629": 4.1744127964, + "4630": 4.2225424859, + "4631": 4.2666811498, + "4632": 4.3108198138, + "4633": 4.3507932569, + "4634": 4.3907667001, + "4635": 4.4264171656, + "4636": 4.4620676312, + "4637": 4.4932544229, + "4638": 4.5244412147, + "4639": 4.5510412527, + "4640": 4.5776412907, + "4641": 4.5995495968, + "4642": 4.6214579028, + "4643": 4.6385880148, + "4644": 4.6557181268, + "4645": 4.6680024401, + "4646": 4.6802867533, + "4647": 4.6876767872, + "4648": 4.6950668211, + "4649": 4.6975334105, + "4650": 4.7, + "4651": 4.6975334105, + "4652": 4.6950668211, + "4653": 4.6876767872, + "4654": 4.6802867533, + "4655": 4.6680024401, + "4656": 4.6557181268, + "4657": 4.6385880148, + "4658": 4.6214579028, + "4659": 4.5995495968, + "4660": 4.5776412907, + "4661": 4.5510412527, + "4662": 4.5244412147, + "4663": 4.4932544229, + "4664": 4.4620676312, + "4665": 4.4264171656, + "4666": 4.3907667001, + "4667": 4.3507932569, + "4668": 4.3108198138, + "4669": 4.2666811498, + "4670": 4.2225424859, + "4671": 4.1744127964, + "4672": 4.1262831069, + "4673": 4.0743523377, + "4674": 4.0224215686, + "4675": 3.9668946667, + "4676": 3.9113677648, + "4677": 3.8524638696, + "4678": 3.7935599744, + "4679": 3.7315115526, + "4680": 3.6694631307, + "4681": 3.6045150591, + "4682": 3.5395669874, + "4683": 3.4719755864, + "4684": 3.4043841853, + "4685": 3.3344162071, + "4686": 3.2644482289, + "4687": 3.1923798053, + "4688": 3.1203113817, + "4689": 3.0464269338, + "4690": 2.9725424859, + "4691": 2.8971336019, + "4692": 2.8217247179, + "4693": 2.7450890022, + "4694": 2.6684532865, + "4695": 2.5908931852, + "4696": 2.5133330839, + "4697": 2.4351546914, + "4698": 2.3569762988, + "4699": 2.2784881494, + "4700": 2.2, + "4701": 2.1215118506, + "4702": 2.0430237012, + "4703": 1.9648453086, + "4704": 1.8866669161, + "4705": 1.8091068148, + "4706": 1.7315467135, + "4707": 1.6549109978, + "4708": 1.5782752821, + "4709": 1.5028663981, + "4710": 1.4274575141, + "4711": 1.3535730662, + "4712": 1.2796886183, + "4713": 1.2076201947, + "4714": 1.1355517711, + "4715": 1.0655837929, + "4716": 0.9956158147, + "4717": 0.9280244136, + "4718": 0.8604330126, + "4719": 0.7954849409, + "4720": 0.7305368693, + "4721": 0.6684884474, + "4722": 0.6064400256, + "4723": 0.5475361304, + "4724": 0.4886322352, + "4725": 0.4331053333, + "4726": 0.3775784314, + "4727": 0.3256476623, + "4728": 0.2737168931, + "4729": 0.2255872036, + "4730": 0.1774575141, + "4731": 0.1333188502, + "4732": 0.0891801862, + "4733": 0.0492067431, + "4734": 0.0092332999, + "4735": -0.0264171656, + "4736": -0.0620676312, + "4737": -0.0932544229, + "4738": -0.1244412147, + "4739": -0.1510412527, + "4740": -0.1776412907, + "4741": -0.1995495968, + "4742": -0.2214579028, + "4743": -0.2385880148, + "4744": -0.2557181268, + "4745": -0.2680024401, + "4746": -0.2802867533, + "4747": -0.2876767872, + "4748": -0.2950668211, + "4749": -0.2975334105, + "4750": -0.3, + "4751": -0.2975334105, + "4752": -0.2950668211, + "4753": -0.2876767872, + "4754": -0.2802867533, + "4755": -0.2680024401, + "4756": -0.2557181268, + "4757": -0.2385880148, + "4758": -0.2214579028, + "4759": -0.1995495968, + "4760": -0.1776412907, + "4761": -0.1510412527, + "4762": -0.1244412147, + "4763": -0.0932544229, + "4764": -0.0620676312, + "4765": -0.0264171656, + "4766": 0.0092332999, + "4767": 0.0492067431, + "4768": 0.0891801862, + "4769": 0.1333188502, + "4770": 0.1774575141, + "4771": 0.2255872036, + "4772": 0.2737168931, + "4773": 0.3256476623, + "4774": 0.3775784314, + "4775": 0.4331053333, + "4776": 0.4886322352, + "4777": 0.5475361304, + "4778": 0.6064400256, + "4779": 0.6684884474, + "4780": 0.7305368693, + "4781": 0.7954849409, + "4782": 0.8604330126, + "4783": 0.9280244136, + "4784": 0.9956158147, + "4785": 1.0655837929, + "4786": 1.1355517711, + "4787": 1.2076201947, + "4788": 1.2796886183, + "4789": 1.3535730662, + "4790": 1.4274575141, + "4791": 1.5028663981, + "4792": 1.5782752821, + "4793": 1.6549109978, + "4794": 1.7315467135, + "4795": 1.8091068148, + "4796": 1.8866669161, + "4797": 1.9648453086, + "4798": 2.0430237012, + "4799": 2.1215118506, + "4800": 2.2, + "4801": 2.2784881494, + "4802": 2.3569762988, + "4803": 2.4351546914, + "4804": 2.5133330839, + "4805": 2.5908931852, + "4806": 2.6684532865, + "4807": 2.7450890022, + "4808": 2.8217247179, + "4809": 2.8971336019, + "4810": 2.9725424859, + "4811": 3.0464269338, + "4812": 3.1203113817, + "4813": 3.1923798053, + "4814": 3.2644482289, + "4815": 3.3344162071, + "4816": 3.4043841853, + "4817": 3.4719755864, + "4818": 3.5395669874, + "4819": 3.6045150591, + "4820": 3.6694631307, + "4821": 3.7315115526, + "4822": 3.7935599744, + "4823": 3.8524638696, + "4824": 3.9113677648, + "4825": 3.9668946667, + "4826": 4.0224215686, + "4827": 4.0743523377, + "4828": 4.1262831069, + "4829": 4.1744127964, + "4830": 4.2225424859, + "4831": 4.2666811498, + "4832": 4.3108198138, + "4833": 4.3507932569, + "4834": 4.3907667001, + "4835": 4.4264171656, + "4836": 4.4620676312, + "4837": 4.4932544229, + "4838": 4.5244412147, + "4839": 4.5510412527, + "4840": 4.5776412907, + "4841": 4.5995495968, + "4842": 4.6214579028, + "4843": 4.6385880148, + "4844": 4.6557181268, + "4845": 4.6680024401, + "4846": 4.6802867533, + "4847": 4.6876767872, + "4848": 4.6950668211, + "4849": 4.6975334105, + "4850": 4.7, + "4851": 4.6975334105, + "4852": 4.6950668211, + "4853": 4.6876767872, + "4854": 4.6802867533, + "4855": 4.6680024401, + "4856": 4.6557181268, + "4857": 4.6385880148, + "4858": 4.6214579028, + "4859": 4.5995495968, + "4860": 4.5776412907, + "4861": 4.5510412527, + "4862": 4.5244412147, + "4863": 4.4932544229, + "4864": 4.4620676312, + "4865": 4.4264171656, + "4866": 4.3907667001, + "4867": 4.3507932569, + "4868": 4.3108198138, + "4869": 4.2666811498, + "4870": 4.2225424859, + "4871": 4.1744127964, + "4872": 4.1262831069, + "4873": 4.0743523377, + "4874": 4.0224215686, + "4875": 3.9668946667, + "4876": 3.9113677648, + "4877": 3.8524638696, + "4878": 3.7935599744, + "4879": 3.7315115526, + "4880": 3.6694631307, + "4881": 3.6045150591, + "4882": 3.5395669874, + "4883": 3.4719755864, + "4884": 3.4043841853, + "4885": 3.3344162071, + "4886": 3.2644482289, + "4887": 3.1923798053, + "4888": 3.1203113817, + "4889": 3.0464269338, + "4890": 2.9725424859, + "4891": 2.8971336019, + "4892": 2.8217247179, + "4893": 2.7450890022, + "4894": 2.6684532865, + "4895": 2.5908931852, + "4896": 2.5133330839, + "4897": 2.4351546914, + "4898": 2.3569762988, + "4899": 2.2784881494, + "4900": 2.2, + "4901": 2.1215118506, + "4902": 2.0430237012, + "4903": 1.9648453086, + "4904": 1.8866669161, + "4905": 1.8091068148, + "4906": 1.7315467135, + "4907": 1.6549109978, + "4908": 1.5782752821, + "4909": 1.5028663981, + "4910": 1.4274575141, + "4911": 1.3535730662, + "4912": 1.2796886183, + "4913": 1.2076201947, + "4914": 1.1355517711, + "4915": 1.0655837929, + "4916": 0.9956158147, + "4917": 0.9280244136, + "4918": 0.8604330126, + "4919": 0.7954849409, + "4920": 0.7305368693, + "4921": 0.6684884474, + "4922": 0.6064400256, + "4923": 0.5475361304, + "4924": 0.4886322352, + "4925": 0.4331053333, + "4926": 0.3775784314, + "4927": 0.3256476623, + "4928": 0.2737168931, + "4929": 0.2255872036, + "4930": 0.1774575141, + "4931": 0.1333188502, + "4932": 0.0891801862, + "4933": 0.0492067431, + "4934": 0.0092332999, + "4935": -0.0264171656, + "4936": -0.0620676312, + "4937": -0.0932544229, + "4938": -0.1244412147, + "4939": -0.1510412527, + "4940": -0.1776412907, + "4941": -0.1995495968, + "4942": -0.2214579028, + "4943": -0.2385880148, + "4944": -0.2557181268, + "4945": -0.2680024401, + "4946": -0.2802867533, + "4947": -0.2876767872, + "4948": -0.2950668211, + "4949": -0.2975334105, + "4950": -0.3, + "4951": -0.2975334105, + "4952": -0.2950668211, + "4953": -0.2876767872, + "4954": -0.2802867533, + "4955": -0.2680024401, + "4956": -0.2557181268, + "4957": -0.2385880148, + "4958": -0.2214579028, + "4959": -0.1995495968, + "4960": -0.1776412907, + "4961": -0.1510412527, + "4962": -0.1244412147, + "4963": -0.0932544229, + "4964": -0.0620676312, + "4965": -0.0264171656, + "4966": 0.0092332999, + "4967": 0.0492067431, + "4968": 0.0891801862, + "4969": 0.1333188502, + "4970": 0.1774575141, + "4971": 0.2255872036, + "4972": 0.2737168931, + "4973": 0.3256476623, + "4974": 0.3775784314, + "4975": 0.4331053333, + "4976": 0.4886322352, + "4977": 0.5475361304, + "4978": 0.6064400256, + "4979": 0.6684884474, + "4980": 0.7305368693, + "4981": 0.7954849409, + "4982": 0.8604330126, + "4983": 0.9280244136, + "4984": 0.9956158147, + "4985": 1.0655837929, + "4986": 1.1355517711, + "4987": 1.2076201947, + "4988": 1.2796886183, + "4989": 1.3535730662, + "4990": 1.4274575141, + "4991": 1.5028663981, + "4992": 1.5782752821, + "4993": 1.6549109978, + "4994": 1.7315467135, + "4995": 1.8091068148, + "4996": 1.8866669161, + "4997": 1.9648453086, + "4998": 2.0430237012, + "4999": 2.1215118506, + "5000": 2.2, + "5001": 2.2784881494, + "5002": 2.3569762988, + "5003": 2.4351546914, + "5004": 2.5133330839, + "5005": 2.5908931852, + "5006": 2.6684532865, + "5007": 2.7450890022, + "5008": 2.8217247179, + "5009": 2.8971336019, + "5010": 2.9725424859, + "5011": 3.0464269338, + "5012": 3.1203113817, + "5013": 3.1923798053, + "5014": 3.2644482289, + "5015": 3.3344162071, + "5016": 3.4043841853, + "5017": 3.4719755864, + "5018": 3.5395669874, + "5019": 3.6045150591, + "5020": 3.6694631307, + "5021": 3.7315115526, + "5022": 3.7935599744, + "5023": 3.8524638696, + "5024": 3.9113677648, + "5025": 3.9668946667, + "5026": 4.0224215686, + "5027": 4.0743523377, + "5028": 4.1262831069, + "5029": 4.1744127964, + "5030": 4.2225424859, + "5031": 4.2666811498, + "5032": 4.3108198138, + "5033": 4.3507932569, + "5034": 4.3907667001, + "5035": 4.4264171656, + "5036": 4.4620676312, + "5037": 4.4932544229, + "5038": 4.5244412147, + "5039": 4.5510412527, + "5040": 4.5776412907, + "5041": 4.5995495968, + "5042": 4.6214579028, + "5043": 4.6385880148, + "5044": 4.6557181268, + "5045": 4.6680024401, + "5046": 4.6802867533, + "5047": 4.6876767872, + "5048": 4.6950668211, + "5049": 4.6975334105, + "5050": 4.7, + "5051": 4.6975334105, + "5052": 4.6950668211, + "5053": 4.6876767872, + "5054": 4.6802867533, + "5055": 4.6680024401, + "5056": 4.6557181268, + "5057": 4.6385880148, + "5058": 4.6214579028, + "5059": 4.5995495968, + "5060": 4.5776412907, + "5061": 4.5510412527, + "5062": 4.5244412147, + "5063": 4.4932544229, + "5064": 4.4620676312, + "5065": 4.4264171656, + "5066": 4.3907667001, + "5067": 4.3507932569, + "5068": 4.3108198138, + "5069": 4.2666811498, + "5070": 4.2225424859, + "5071": 4.1744127964, + "5072": 4.1262831069, + "5073": 4.0743523377, + "5074": 4.0224215686, + "5075": 3.9668946667, + "5076": 3.9113677648, + "5077": 3.8524638696, + "5078": 3.7935599744, + "5079": 3.7315115526, + "5080": 3.6694631307, + "5081": 3.6045150591, + "5082": 3.5395669874, + "5083": 3.4719755864, + "5084": 3.4043841853, + "5085": 3.3344162071, + "5086": 3.2644482289, + "5087": 3.1923798053, + "5088": 3.1203113817, + "5089": 3.0464269338, + "5090": 2.9725424859, + "5091": 2.8971336019, + "5092": 2.8217247179, + "5093": 2.7450890022, + "5094": 2.6684532865, + "5095": 2.5908931852, + "5096": 2.5133330839, + "5097": 2.4351546914, + "5098": 2.3569762988, + "5099": 2.2784881494, + "5100": 2.2, + "5101": 2.1215118506, + "5102": 2.0430237012, + "5103": 1.9648453086, + "5104": 1.8866669161, + "5105": 1.8091068148, + "5106": 1.7315467135, + "5107": 1.6549109978, + "5108": 1.5782752821, + "5109": 1.5028663981, + "5110": 1.4274575141, + "5111": 1.3535730662, + "5112": 1.2796886183, + "5113": 1.2076201947, + "5114": 1.1355517711, + "5115": 1.0655837929, + "5116": 0.9956158147, + "5117": 0.9280244136, + "5118": 0.8604330126, + "5119": 0.7954849409, + "5120": 0.7305368693, + "5121": 0.6684884474, + "5122": 0.6064400256, + "5123": 0.5475361304, + "5124": 0.4886322352, + "5125": 0.4331053333, + "5126": 0.3775784314, + "5127": 0.3256476623, + "5128": 0.2737168931, + "5129": 0.2255872036, + "5130": 0.1774575141, + "5131": 0.1333188502, + "5132": 0.0891801862, + "5133": 0.0492067431, + "5134": 0.0092332999, + "5135": -0.0264171656, + "5136": -0.0620676312, + "5137": -0.0932544229, + "5138": -0.1244412147, + "5139": -0.1510412527, + "5140": -0.1776412907, + "5141": -0.1995495968, + "5142": -0.2214579028, + "5143": -0.2385880148, + "5144": -0.2557181268, + "5145": -0.2680024401, + "5146": -0.2802867533, + "5147": -0.2876767872, + "5148": -0.2950668211, + "5149": -0.2975334105, + "5150": -0.3, + "5151": -0.2975334105, + "5152": -0.2950668211, + "5153": -0.2876767872, + "5154": -0.2802867533, + "5155": -0.2680024401, + "5156": -0.2557181268, + "5157": -0.2385880148, + "5158": -0.2214579028, + "5159": -0.1995495968, + "5160": -0.1776412907, + "5161": -0.1510412527, + "5162": -0.1244412147, + "5163": -0.0932544229, + "5164": -0.0620676312, + "5165": -0.0264171656, + "5166": 0.0092332999, + "5167": 0.0492067431, + "5168": 0.0891801862, + "5169": 0.1333188502, + "5170": 0.1774575141, + "5171": 0.2255872036, + "5172": 0.2737168931, + "5173": 0.3256476623, + "5174": 0.3775784314, + "5175": 0.4331053333, + "5176": 0.4886322352, + "5177": 0.5475361304, + "5178": 0.6064400256, + "5179": 0.6684884474, + "5180": 0.7305368693, + "5181": 0.7954849409, + "5182": 0.8604330126, + "5183": 0.9280244136, + "5184": 0.9956158147, + "5185": 1.0655837929, + "5186": 1.1355517711, + "5187": 1.2076201947, + "5188": 1.2796886183, + "5189": 1.3535730662, + "5190": 1.4274575141, + "5191": 1.5028663981, + "5192": 1.5782752821, + "5193": 1.6549109978, + "5194": 1.7315467135, + "5195": 1.8091068148, + "5196": 1.8866669161, + "5197": 1.9648453086, + "5198": 2.0430237012, + "5199": 2.1215118506, + "5200": 2.2, + "5201": 2.2784881494, + "5202": 2.3569762988, + "5203": 2.4351546914, + "5204": 2.5133330839, + "5205": 2.5908931852, + "5206": 2.6684532865, + "5207": 2.7450890022, + "5208": 2.8217247179, + "5209": 2.8971336019, + "5210": 2.9725424859, + "5211": 3.0464269338, + "5212": 3.1203113817, + "5213": 3.1923798053, + "5214": 3.2644482289, + "5215": 3.3344162071, + "5216": 3.4043841853, + "5217": 3.4719755864, + "5218": 3.5395669874, + "5219": 3.6045150591, + "5220": 3.6694631307, + "5221": 3.7315115526, + "5222": 3.7935599744, + "5223": 3.8524638696, + "5224": 3.9113677648, + "5225": 3.9668946667, + "5226": 4.0224215686, + "5227": 4.0743523377, + "5228": 4.1262831069, + "5229": 4.1744127964, + "5230": 4.2225424859, + "5231": 4.2666811498, + "5232": 4.3108198138, + "5233": 4.3507932569, + "5234": 4.3907667001, + "5235": 4.4264171656, + "5236": 4.4620676312, + "5237": 4.4932544229, + "5238": 4.5244412147, + "5239": 4.5510412527, + "5240": 4.5776412907, + "5241": 4.5995495968, + "5242": 4.6214579028, + "5243": 4.6385880148, + "5244": 4.6557181268, + "5245": 4.6680024401, + "5246": 4.6802867533, + "5247": 4.6876767872, + "5248": 4.6950668211, + "5249": 4.6975334105, + "5250": 4.7, + "5251": 4.6975334105, + "5252": 4.6950668211, + "5253": 4.6876767872, + "5254": 4.6802867533, + "5255": 4.6680024401, + "5256": 4.6557181268, + "5257": 4.6385880148, + "5258": 4.6214579028, + "5259": 4.5995495968, + "5260": 4.5776412907, + "5261": 4.5510412527, + "5262": 4.5244412147, + "5263": 4.4932544229, + "5264": 4.4620676312, + "5265": 4.4264171656, + "5266": 4.3907667001, + "5267": 4.3507932569, + "5268": 4.3108198138, + "5269": 4.2666811498, + "5270": 4.2225424859, + "5271": 4.1744127964, + "5272": 4.1262831069, + "5273": 4.0743523377, + "5274": 4.0224215686, + "5275": 3.9668946667, + "5276": 3.9113677648, + "5277": 3.8524638696, + "5278": 3.7935599744, + "5279": 3.7315115526, + "5280": 3.6694631307, + "5281": 3.6045150591, + "5282": 3.5395669874, + "5283": 3.4719755864, + "5284": 3.4043841853, + "5285": 3.3344162071, + "5286": 3.2644482289, + "5287": 3.1923798053, + "5288": 3.1203113817, + "5289": 3.0464269338, + "5290": 2.9725424859, + "5291": 2.8971336019, + "5292": 2.8217247179, + "5293": 2.7450890022, + "5294": 2.6684532865, + "5295": 2.5908931852, + "5296": 2.5133330839, + "5297": 2.4351546914, + "5298": 2.3569762988, + "5299": 2.2784881494, + "5300": 2.2, + "5301": 2.1215118506, + "5302": 2.0430237012, + "5303": 1.9648453086, + "5304": 1.8866669161, + "5305": 1.8091068148, + "5306": 1.7315467135, + "5307": 1.6549109978, + "5308": 1.5782752821, + "5309": 1.5028663981, + "5310": 1.4274575141, + "5311": 1.3535730662, + "5312": 1.2796886183, + "5313": 1.2076201947, + "5314": 1.1355517711, + "5315": 1.0655837929, + "5316": 0.9956158147, + "5317": 0.9280244136, + "5318": 0.8604330126, + "5319": 0.7954849409, + "5320": 0.7305368693, + "5321": 0.6684884474, + "5322": 0.6064400256, + "5323": 0.5475361304, + "5324": 0.4886322352, + "5325": 0.4331053333, + "5326": 0.3775784314, + "5327": 0.3256476623, + "5328": 0.2737168931, + "5329": 0.2255872036, + "5330": 0.1774575141, + "5331": 0.1333188502, + "5332": 0.0891801862, + "5333": 0.0492067431, + "5334": 0.0092332999, + "5335": -0.0264171656, + "5336": -0.0620676312, + "5337": -0.0932544229, + "5338": -0.1244412147, + "5339": -0.1510412527, + "5340": -0.1776412907, + "5341": -0.1995495968, + "5342": -0.2214579028, + "5343": -0.2385880148, + "5344": -0.2557181268, + "5345": -0.2680024401, + "5346": -0.2802867533, + "5347": -0.2876767872, + "5348": -0.2950668211, + "5349": -0.2975334105, + "5350": -0.3, + "5351": -0.2975334105, + "5352": -0.2950668211, + "5353": -0.2876767872, + "5354": -0.2802867533, + "5355": -0.2680024401, + "5356": -0.2557181268, + "5357": -0.2385880148, + "5358": -0.2214579028, + "5359": -0.1995495968, + "5360": -0.1776412907, + "5361": -0.1510412527, + "5362": -0.1244412147, + "5363": -0.0932544229, + "5364": -0.0620676312, + "5365": -0.0264171656, + "5366": 0.0092332999, + "5367": 0.0492067431, + "5368": 0.0891801862, + "5369": 0.1333188502, + "5370": 0.1774575141, + "5371": 0.2255872036, + "5372": 0.2737168931, + "5373": 0.3256476623, + "5374": 0.3775784314, + "5375": 0.4331053333, + "5376": 0.4886322352, + "5377": 0.5475361304, + "5378": 0.6064400256, + "5379": 0.6684884474, + "5380": 0.7305368693, + "5381": 0.7954849409, + "5382": 0.8604330126, + "5383": 0.9280244136, + "5384": 0.9956158147, + "5385": 1.0655837929, + "5386": 1.1355517711, + "5387": 1.2076201947, + "5388": 1.2796886183, + "5389": 1.3535730662, + "5390": 1.4274575141, + "5391": 1.5028663981, + "5392": 1.5782752821, + "5393": 1.6549109978, + "5394": 1.7315467135, + "5395": 1.8091068148, + "5396": 1.8866669161, + "5397": 1.9648453086, + "5398": 2.0430237012, + "5399": 2.1215118506, + "5400": 2.2, + "5401": 2.2784881494, + "5402": 2.3569762988, + "5403": 2.4351546914, + "5404": 2.5133330839, + "5405": 2.5908931852, + "5406": 2.6684532865, + "5407": 2.7450890022, + "5408": 2.8217247179, + "5409": 2.8971336019, + "5410": 2.9725424859, + "5411": 3.0464269338, + "5412": 3.1203113817, + "5413": 3.1923798053, + "5414": 3.2644482289, + "5415": 3.3344162071, + "5416": 3.4043841853, + "5417": 3.4719755864, + "5418": 3.5395669874, + "5419": 3.6045150591, + "5420": 3.6694631307, + "5421": 3.7315115526, + "5422": 3.7935599744, + "5423": 3.8524638696, + "5424": 3.9113677648, + "5425": 3.9668946667, + "5426": 4.0224215686, + "5427": 4.0743523377, + "5428": 4.1262831069, + "5429": 4.1744127964, + "5430": 4.2225424859, + "5431": 4.2666811498, + "5432": 4.3108198138, + "5433": 4.3507932569, + "5434": 4.3907667001, + "5435": 4.4264171656, + "5436": 4.4620676312, + "5437": 4.4932544229, + "5438": 4.5244412147, + "5439": 4.5510412527, + "5440": 4.5776412907, + "5441": 4.5995495968, + "5442": 4.6214579028, + "5443": 4.6385880148, + "5444": 4.6557181268, + "5445": 4.6680024401, + "5446": 4.6802867533, + "5447": 4.6876767872, + "5448": 4.6950668211, + "5449": 4.6975334105, + "5450": 4.7, + "5451": 4.6975334105, + "5452": 4.6950668211, + "5453": 4.6876767872, + "5454": 4.6802867533, + "5455": 4.6680024401, + "5456": 4.6557181268, + "5457": 4.6385880148, + "5458": 4.6214579028, + "5459": 4.5995495968, + "5460": 4.5776412907, + "5461": 4.5510412527, + "5462": 4.5244412147, + "5463": 4.4932544229, + "5464": 4.4620676312, + "5465": 4.4264171656, + "5466": 4.3907667001, + "5467": 4.3507932569, + "5468": 4.3108198138, + "5469": 4.2666811498, + "5470": 4.2225424859, + "5471": 4.1744127964, + "5472": 4.1262831069, + "5473": 4.0743523377, + "5474": 4.0224215686, + "5475": 3.9668946667, + "5476": 3.9113677648, + "5477": 3.8524638696, + "5478": 3.7935599744, + "5479": 3.7315115526, + "5480": 3.6694631307, + "5481": 3.6045150591, + "5482": 3.5395669874, + "5483": 3.4719755864, + "5484": 3.4043841853, + "5485": 3.3344162071, + "5486": 3.2644482289, + "5487": 3.1923798053, + "5488": 3.1203113817, + "5489": 3.0464269338, + "5490": 2.9725424859, + "5491": 2.8971336019, + "5492": 2.8217247179, + "5493": 2.7450890022, + "5494": 2.6684532865, + "5495": 2.5908931852, + "5496": 2.5133330839, + "5497": 2.4351546914, + "5498": 2.3569762988, + "5499": 2.2784881494, + "5500": 2.2, + "5501": 2.1215118506, + "5502": 2.0430237012, + "5503": 1.9648453086, + "5504": 1.8866669161, + "5505": 1.8091068148, + "5506": 1.7315467135, + "5507": 1.6549109978, + "5508": 1.5782752821, + "5509": 1.5028663981, + "5510": 1.4274575141, + "5511": 1.3535730662, + "5512": 1.2796886183, + "5513": 1.2076201947, + "5514": 1.1355517711, + "5515": 1.0655837929, + "5516": 0.9956158147, + "5517": 0.9280244136, + "5518": 0.8604330126, + "5519": 0.7954849409, + "5520": 0.7305368693, + "5521": 0.6684884474, + "5522": 0.6064400256, + "5523": 0.5475361304, + "5524": 0.4886322352, + "5525": 0.4331053333, + "5526": 0.3775784314, + "5527": 0.3256476623, + "5528": 0.2737168931, + "5529": 0.2255872036, + "5530": 0.1774575141, + "5531": 0.1333188502, + "5532": 0.0891801862, + "5533": 0.0492067431, + "5534": 0.0092332999, + "5535": -0.0264171656, + "5536": -0.0620676312, + "5537": -0.0932544229, + "5538": -0.1244412147, + "5539": -0.1510412527, + "5540": -0.1776412907, + "5541": -0.1995495968, + "5542": -0.2214579028, + "5543": -0.2385880148, + "5544": -0.2557181268, + "5545": -0.2680024401, + "5546": -0.2802867533, + "5547": -0.2876767872, + "5548": -0.2950668211, + "5549": -0.2975334105, + "5550": -0.3, + "5551": -0.2975334105, + "5552": -0.2950668211, + "5553": -0.2876767872, + "5554": -0.2802867533, + "5555": -0.2680024401, + "5556": -0.2557181268, + "5557": -0.2385880148, + "5558": -0.2214579028, + "5559": -0.1995495968, + "5560": -0.1776412907, + "5561": -0.1510412527, + "5562": -0.1244412147, + "5563": -0.0932544229, + "5564": -0.0620676312, + "5565": -0.0264171656, + "5566": 0.0092332999, + "5567": 0.0492067431, + "5568": 0.0891801862, + "5569": 0.1333188502, + "5570": 0.1774575141, + "5571": 0.2255872036, + "5572": 0.2737168931, + "5573": 0.3256476623, + "5574": 0.3775784314, + "5575": 0.4331053333, + "5576": 0.4886322352, + "5577": 0.5475361304, + "5578": 0.6064400256, + "5579": 0.6684884474, + "5580": 0.7305368693, + "5581": 0.7954849409, + "5582": 0.8604330126, + "5583": 0.9280244136, + "5584": 0.9956158147, + "5585": 1.0655837929, + "5586": 1.1355517711, + "5587": 1.2076201947, + "5588": 1.2796886183, + "5589": 1.3535730662, + "5590": 1.4274575141, + "5591": 1.5028663981, + "5592": 1.5782752821, + "5593": 1.6549109978, + "5594": 1.7315467135, + "5595": 1.8091068148, + "5596": 1.8866669161, + "5597": 1.9648453086, + "5598": 2.0430237012, + "5599": 2.1215118506, + "5600": 2.2, + "5601": 2.2784881494, + "5602": 2.3569762988, + "5603": 2.4351546914, + "5604": 2.5133330839, + "5605": 2.5908931852, + "5606": 2.6684532865, + "5607": 2.7450890022, + "5608": 2.8217247179, + "5609": 2.8971336019, + "5610": 2.9725424859, + "5611": 3.0464269338, + "5612": 3.1203113817, + "5613": 3.1923798053, + "5614": 3.2644482289, + "5615": 3.3344162071, + "5616": 3.4043841853, + "5617": 3.4719755864, + "5618": 3.5395669874, + "5619": 3.6045150591, + "5620": 3.6694631307, + "5621": 3.7315115526, + "5622": 3.7935599744, + "5623": 3.8524638696, + "5624": 3.9113677648, + "5625": 3.9668946667, + "5626": 4.0224215686, + "5627": 4.0743523377, + "5628": 4.1262831069, + "5629": 4.1744127964, + "5630": 4.2225424859, + "5631": 4.2666811498, + "5632": 4.3108198138, + "5633": 4.3507932569, + "5634": 4.3907667001, + "5635": 4.4264171656, + "5636": 4.4620676312, + "5637": 4.4932544229, + "5638": 4.5244412147, + "5639": 4.5510412527, + "5640": 4.5776412907, + "5641": 4.5995495968, + "5642": 4.6214579028, + "5643": 4.6385880148, + "5644": 4.6557181268, + "5645": 4.6680024401, + "5646": 4.6802867533, + "5647": 4.6876767872, + "5648": 4.6950668211, + "5649": 4.6975334105, + "5650": 4.7, + "5651": 4.6975334105, + "5652": 4.6950668211, + "5653": 4.6876767872, + "5654": 4.6802867533, + "5655": 4.6680024401, + "5656": 4.6557181268, + "5657": 4.6385880148, + "5658": 4.6214579028, + "5659": 4.5995495968, + "5660": 4.5776412907, + "5661": 4.5510412527, + "5662": 4.5244412147, + "5663": 4.4932544229, + "5664": 4.4620676312, + "5665": 4.4264171656, + "5666": 4.3907667001, + "5667": 4.3507932569, + "5668": 4.3108198138, + "5669": 4.2666811498, + "5670": 4.2225424859, + "5671": 4.1744127964, + "5672": 4.1262831069, + "5673": 4.0743523377, + "5674": 4.0224215686, + "5675": 3.9668946667, + "5676": 3.9113677648, + "5677": 3.8524638696, + "5678": 3.7935599744, + "5679": 3.7315115526, + "5680": 3.6694631307, + "5681": 3.6045150591, + "5682": 3.5395669874, + "5683": 3.4719755864, + "5684": 3.4043841853, + "5685": 3.3344162071, + "5686": 3.2644482289, + "5687": 3.1923798053, + "5688": 3.1203113817, + "5689": 3.0464269338, + "5690": 2.9725424859, + "5691": 2.8971336019, + "5692": 2.8217247179, + "5693": 2.7450890022, + "5694": 2.6684532865, + "5695": 2.5908931852, + "5696": 2.5133330839, + "5697": 2.4351546914, + "5698": 2.3569762988, + "5699": 2.2784881494, + "5700": 2.2, + "5701": 2.1215118506, + "5702": 2.0430237012, + "5703": 1.9648453086, + "5704": 1.8866669161, + "5705": 1.8091068148, + "5706": 1.7315467135, + "5707": 1.6549109978, + "5708": 1.5782752821, + "5709": 1.5028663981, + "5710": 1.4274575141, + "5711": 1.3535730662, + "5712": 1.2796886183, + "5713": 1.2076201947, + "5714": 1.1355517711, + "5715": 1.0655837929, + "5716": 0.9956158147, + "5717": 0.9280244136, + "5718": 0.8604330126, + "5719": 0.7954849409, + "5720": 0.7305368693, + "5721": 0.6684884474, + "5722": 0.6064400256, + "5723": 0.5475361304, + "5724": 0.4886322352, + "5725": 0.4331053333, + "5726": 0.3775784314, + "5727": 0.3256476623, + "5728": 0.2737168931, + "5729": 0.2255872036, + "5730": 0.1774575141, + "5731": 0.1333188502, + "5732": 0.0891801862, + "5733": 0.0492067431, + "5734": 0.0092332999, + "5735": -0.0264171656, + "5736": -0.0620676312, + "5737": -0.0932544229, + "5738": -0.1244412147, + "5739": -0.1510412527, + "5740": -0.1776412907, + "5741": -0.1995495968, + "5742": -0.2214579028, + "5743": -0.2385880148, + "5744": -0.2557181268, + "5745": -0.2680024401, + "5746": -0.2802867533, + "5747": -0.2876767872, + "5748": -0.2950668211, + "5749": -0.2975334105, + "5750": -0.3, + "5751": -0.2975334105, + "5752": -0.2950668211, + "5753": -0.2876767872, + "5754": -0.2802867533, + "5755": -0.2680024401, + "5756": -0.2557181268, + "5757": -0.2385880148, + "5758": -0.2214579028, + "5759": -0.1995495968, + "5760": -0.1776412907, + "5761": -0.1510412527, + "5762": -0.1244412147, + "5763": -0.0932544229, + "5764": -0.0620676312, + "5765": -0.0264171656, + "5766": 0.0092332999, + "5767": 0.0492067431, + "5768": 0.0891801862, + "5769": 0.1333188502, + "5770": 0.1774575141, + "5771": 0.2255872036, + "5772": 0.2737168931, + "5773": 0.3256476623, + "5774": 0.3775784314, + "5775": 0.4331053333, + "5776": 0.4886322352, + "5777": 0.5475361304, + "5778": 0.6064400256, + "5779": 0.6684884474, + "5780": 0.7305368693, + "5781": 0.7954849409, + "5782": 0.8604330126, + "5783": 0.9280244136, + "5784": 0.9956158147, + "5785": 1.0655837929, + "5786": 1.1355517711, + "5787": 1.2076201947, + "5788": 1.2796886183, + "5789": 1.3535730662, + "5790": 1.4274575141, + "5791": 1.5028663981, + "5792": 1.5782752821, + "5793": 1.6549109978, + "5794": 1.7315467135, + "5795": 1.8091068148, + "5796": 1.8866669161, + "5797": 1.9648453086, + "5798": 2.0430237012, + "5799": 2.1215118506, + "5800": 2.2, + "5801": 2.2784881494, + "5802": 2.3569762988, + "5803": 2.4351546914, + "5804": 2.5133330839, + "5805": 2.5908931852, + "5806": 2.6684532865, + "5807": 2.7450890022, + "5808": 2.8217247179, + "5809": 2.8971336019, + "5810": 2.9725424859, + "5811": 3.0464269338, + "5812": 3.1203113817, + "5813": 3.1923798053, + "5814": 3.2644482289, + "5815": 3.3344162071, + "5816": 3.4043841853, + "5817": 3.4719755864, + "5818": 3.5395669874, + "5819": 3.6045150591, + "5820": 3.6694631307, + "5821": 3.7315115526, + "5822": 3.7935599744, + "5823": 3.8524638696, + "5824": 3.9113677648, + "5825": 3.9668946667, + "5826": 4.0224215686, + "5827": 4.0743523377, + "5828": 4.1262831069, + "5829": 4.1744127964, + "5830": 4.2225424859, + "5831": 4.2666811498, + "5832": 4.3108198138, + "5833": 4.3507932569, + "5834": 4.3907667001, + "5835": 4.4264171656, + "5836": 4.4620676312, + "5837": 4.4932544229, + "5838": 4.5244412147, + "5839": 4.5510412527, + "5840": 4.5776412907, + "5841": 4.5995495968, + "5842": 4.6214579028, + "5843": 4.6385880148, + "5844": 4.6557181268, + "5845": 4.6680024401, + "5846": 4.6802867533, + "5847": 4.6876767872, + "5848": 4.6950668211, + "5849": 4.6975334105, + "5850": 4.7, + "5851": 4.6975334105, + "5852": 4.6950668211, + "5853": 4.6876767872, + "5854": 4.6802867533, + "5855": 4.6680024401, + "5856": 4.6557181268, + "5857": 4.6385880148, + "5858": 4.6214579028, + "5859": 4.5995495968, + "5860": 4.5776412907, + "5861": 4.5510412527, + "5862": 4.5244412147, + "5863": 4.4932544229, + "5864": 4.4620676312, + "5865": 4.4264171656, + "5866": 4.3907667001, + "5867": 4.3507932569, + "5868": 4.3108198138, + "5869": 4.2666811498, + "5870": 4.2225424859, + "5871": 4.1744127964, + "5872": 4.1262831069, + "5873": 4.0743523377, + "5874": 4.0224215686, + "5875": 3.9668946667, + "5876": 3.9113677648, + "5877": 3.8524638696, + "5878": 3.7935599744, + "5879": 3.7315115526, + "5880": 3.6694631307, + "5881": 3.6045150591, + "5882": 3.5395669874, + "5883": 3.4719755864, + "5884": 3.4043841853, + "5885": 3.3344162071, + "5886": 3.2644482289, + "5887": 3.1923798053, + "5888": 3.1203113817, + "5889": 3.0464269338, + "5890": 2.9725424859, + "5891": 2.8971336019, + "5892": 2.8217247179, + "5893": 2.7450890022, + "5894": 2.6684532865, + "5895": 2.5908931852, + "5896": 2.5133330839, + "5897": 2.4351546914, + "5898": 2.3569762988, + "5899": 2.2784881494, + "5900": 2.2, + "5901": 2.1215118506, + "5902": 2.0430237012, + "5903": 1.9648453086, + "5904": 1.8866669161, + "5905": 1.8091068148, + "5906": 1.7315467135, + "5907": 1.6549109978, + "5908": 1.5782752821, + "5909": 1.5028663981, + "5910": 1.4274575141, + "5911": 1.3535730662, + "5912": 1.2796886183, + "5913": 1.2076201947, + "5914": 1.1355517711, + "5915": 1.0655837929, + "5916": 0.9956158147, + "5917": 0.9280244136, + "5918": 0.8604330126, + "5919": 0.7954849409, + "5920": 0.7305368693, + "5921": 0.6684884474, + "5922": 0.6064400256, + "5923": 0.5475361304, + "5924": 0.4886322352, + "5925": 0.4331053333, + "5926": 0.3775784314, + "5927": 0.3256476623, + "5928": 0.2737168931, + "5929": 0.2255872036, + "5930": 0.1774575141, + "5931": 0.1333188502, + "5932": 0.0891801862, + "5933": 0.0492067431, + "5934": 0.0092332999, + "5935": -0.0264171656, + "5936": -0.0620676312, + "5937": -0.0932544229, + "5938": -0.1244412147, + "5939": -0.1510412527, + "5940": -0.1776412907, + "5941": -0.1995495968, + "5942": -0.2214579028, + "5943": -0.2385880148, + "5944": -0.2557181268, + "5945": -0.2680024401, + "5946": -0.2802867533, + "5947": -0.2876767872, + "5948": -0.2950668211, + "5949": -0.2975334105, + "5950": -0.3, + "5951": -0.2975334105, + "5952": -0.2950668211, + "5953": -0.2876767872, + "5954": -0.2802867533, + "5955": -0.2680024401, + "5956": -0.2557181268, + "5957": -0.2385880148, + "5958": -0.2214579028, + "5959": -0.1995495968, + "5960": -0.1776412907, + "5961": -0.1510412527, + "5962": -0.1244412147, + "5963": -0.0932544229, + "5964": -0.0620676312, + "5965": -0.0264171656, + "5966": 0.0092332999, + "5967": 0.0492067431, + "5968": 0.0891801862, + "5969": 0.1333188502, + "5970": 0.1774575141, + "5971": 0.2255872036, + "5972": 0.2737168931, + "5973": 0.3256476623, + "5974": 0.3775784314, + "5975": 0.4331053333, + "5976": 0.4886322352, + "5977": 0.5475361304, + "5978": 0.6064400256, + "5979": 0.6684884474, + "5980": 0.7305368693, + "5981": 0.7954849409, + "5982": 0.8604330126, + "5983": 0.9280244136, + "5984": 0.9956158147, + "5985": 1.0655837929, + "5986": 1.1355517711, + "5987": 1.2076201947, + "5988": 1.2796886183, + "5989": 1.3535730662, + "5990": 1.4274575141, + "5991": 1.5028663981, + "5992": 1.5782752821, + "5993": 1.6549109978, + "5994": 1.7315467135, + "5995": 1.8091068148, + "5996": 1.8866669161, + "5997": 1.9648453086, + "5998": 2.0430237012, + "5999": 2.1215118506, + "6000": 2.2, + "6001": 2.2784881494, + "6002": 2.3569762988, + "6003": 2.4351546914, + "6004": 2.5133330839, + "6005": 2.5908931852, + "6006": 2.6684532865, + "6007": 2.7450890022, + "6008": 2.8217247179, + "6009": 2.8971336019, + "6010": 2.9725424859, + "6011": 3.0464269338, + "6012": 3.1203113817, + "6013": 3.1923798053, + "6014": 3.2644482289, + "6015": 3.3344162071, + "6016": 3.4043841853, + "6017": 3.4719755864, + "6018": 3.5395669874, + "6019": 3.6045150591, + "6020": 3.6694631307, + "6021": 3.7315115526, + "6022": 3.7935599744, + "6023": 3.8524638696, + "6024": 3.9113677648, + "6025": 3.9668946667, + "6026": 4.0224215686, + "6027": 4.0743523377, + "6028": 4.1262831069, + "6029": 4.1744127964, + "6030": 4.2225424859, + "6031": 4.2666811498, + "6032": 4.3108198138, + "6033": 4.3507932569, + "6034": 4.3907667001, + "6035": 4.4264171656, + "6036": 4.4620676312, + "6037": 4.4932544229, + "6038": 4.5244412147, + "6039": 4.5510412527, + "6040": 4.5776412907, + "6041": 4.5995495968, + "6042": 4.6214579028, + "6043": 4.6385880148, + "6044": 4.6557181268, + "6045": 4.6680024401, + "6046": 4.6802867533, + "6047": 4.6876767872, + "6048": 4.6950668211, + "6049": 4.6975334105, + "6050": 4.7, + "6051": 4.6975334105, + "6052": 4.6950668211, + "6053": 4.6876767872, + "6054": 4.6802867533, + "6055": 4.6680024401, + "6056": 4.6557181268, + "6057": 4.6385880148, + "6058": 4.6214579028, + "6059": 4.5995495968, + "6060": 4.5776412907, + "6061": 4.5510412527, + "6062": 4.5244412147, + "6063": 4.4932544229, + "6064": 4.4620676312, + "6065": 4.4264171656, + "6066": 4.3907667001, + "6067": 4.3507932569, + "6068": 4.3108198138, + "6069": 4.2666811498, + "6070": 4.2225424859, + "6071": 4.1744127964, + "6072": 4.1262831069, + "6073": 4.0743523377, + "6074": 4.0224215686, + "6075": 3.9668946667, + "6076": 3.9113677648, + "6077": 3.8524638696, + "6078": 3.7935599744, + "6079": 3.7315115526, + "6080": 3.6694631307, + "6081": 3.6045150591, + "6082": 3.5395669874, + "6083": 3.4719755864, + "6084": 3.4043841853, + "6085": 3.3344162071, + "6086": 3.2644482289, + "6087": 3.1923798053, + "6088": 3.1203113817, + "6089": 3.0464269338, + "6090": 2.9725424859, + "6091": 2.8971336019, + "6092": 2.8217247179, + "6093": 2.7450890022, + "6094": 2.6684532865, + "6095": 2.5908931852, + "6096": 2.5133330839, + "6097": 2.4351546914, + "6098": 2.3569762988, + "6099": 2.2784881494, + "6100": 2.2, + "6101": 2.1215118506, + "6102": 2.0430237012, + "6103": 1.9648453086, + "6104": 1.8866669161, + "6105": 1.8091068148, + "6106": 1.7315467135, + "6107": 1.6549109978, + "6108": 1.5782752821, + "6109": 1.5028663981, + "6110": 1.4274575141, + "6111": 1.3535730662, + "6112": 1.2796886183, + "6113": 1.2076201947, + "6114": 1.1355517711, + "6115": 1.0655837929, + "6116": 0.9956158147, + "6117": 0.9280244136, + "6118": 0.8604330126, + "6119": 0.7954849409, + "6120": 0.7305368693, + "6121": 0.6684884474, + "6122": 0.6064400256, + "6123": 0.5475361304, + "6124": 0.4886322352, + "6125": 0.4331053333, + "6126": 0.3775784314, + "6127": 0.3256476623, + "6128": 0.2737168931, + "6129": 0.2255872036, + "6130": 0.1774575141, + "6131": 0.1333188502, + "6132": 0.0891801862, + "6133": 0.0492067431, + "6134": 0.0092332999, + "6135": -0.0264171656, + "6136": -0.0620676312, + "6137": -0.0932544229, + "6138": -0.1244412147, + "6139": -0.1510412527, + "6140": -0.1776412907, + "6141": -0.1995495968, + "6142": -0.2214579028, + "6143": -0.2385880148, + "6144": -0.2557181268, + "6145": -0.2680024401, + "6146": -0.2802867533, + "6147": -0.2876767872, + "6148": -0.2950668211, + "6149": -0.2975334105, + "6150": -0.3, + "6151": -0.2975334105, + "6152": -0.2950668211, + "6153": -0.2876767872, + "6154": -0.2802867533, + "6155": -0.2680024401, + "6156": -0.2557181268, + "6157": -0.2385880148, + "6158": -0.2214579028, + "6159": -0.1995495968, + "6160": -0.1776412907, + "6161": -0.1510412527, + "6162": -0.1244412147, + "6163": -0.0932544229, + "6164": -0.0620676312, + "6165": -0.0264171656, + "6166": 0.0092332999, + "6167": 0.0492067431, + "6168": 0.0891801862, + "6169": 0.1333188502, + "6170": 0.1774575141, + "6171": 0.2255872036, + "6172": 0.2737168931, + "6173": 0.3256476623, + "6174": 0.3775784314, + "6175": 0.4331053333, + "6176": 0.4886322352, + "6177": 0.5475361304, + "6178": 0.6064400256, + "6179": 0.6684884474, + "6180": 0.7305368693, + "6181": 0.7954849409, + "6182": 0.8604330126, + "6183": 0.9280244136, + "6184": 0.9956158147, + "6185": 1.0655837929, + "6186": 1.1355517711, + "6187": 1.2076201947, + "6188": 1.2796886183, + "6189": 1.3535730662, + "6190": 1.4274575141, + "6191": 1.5028663981, + "6192": 1.5782752821, + "6193": 1.6549109978, + "6194": 1.7315467135, + "6195": 1.8091068148, + "6196": 1.8866669161, + "6197": 1.9648453086, + "6198": 2.0430237012, + "6199": 2.1215118506, + "6200": 2.2 + }, + "pressure_in": { + "0": 0.0, + "1": 338276.7327614231, + "2": 181088.58171509, + "3": 271615.5321219604, + "4": 238273.631092191, + "5": 266810.3338856255, + "6": 264382.4559447287, + "7": 277350.044117725, + "8": 282579.2900755717, + "9": 291560.5131784346, + "10": 298609.9101133528, + "11": 306478.1302694281, + "12": 313866.0905143871, + "13": 321317.7756013335, + "14": 328652.0184636867, + "15": 335839.9579722958, + "16": 343001.075281421, + "17": 349942.7687003562, + "18": 356880.2003565839, + "19": 363560.0359642549, + "20": 370241.1455499594, + "21": 376636.023991452, + "22": 383033.4465909766, + "23": 389119.2625324285, + "24": 395207.8174842353, + "25": 400961.1523691257, + "26": 406717.1438318006, + "27": 412115.7577097879, + "28": 417516.8684766642, + "29": 422539.8876267367, + "30": 427565.2172768106, + "31": 432193.2415499839, + "32": 436823.3764516994, + "33": 441038.5620760595, + "34": 445255.6488844887, + "35": 449041.780447384, + "36": 452829.595783932, + "37": 456172.1506176419, + "38": 459516.1649020842, + "39": 462402.3704964602, + "40": 465289.8052405973, + "41": 467708.6896754978, + "42": 470128.5679026154, + "43": 472071.0031559455, + "44": 474014.1927196663, + "45": 475472.9306938286, + "46": 476932.1803185537, + "47": 477901.8814465413, + "48": 478871.8493455141, + "49": 479349.1036646281, + "50": 479826.3786222679, + "51": 479809.7192324867, + "52": 479792.8340676651, + "53": 479282.7429216187, + "54": 478772.1802787334, + "55": 477771.0862804354, + "56": 476769.2767254097, + "57": 475281.5461452647, + "58": 473792.8585739948, + "59": 471824.7778178961, + "60": 469855.5022149847, + "61": 467415.2530155205, + "62": 464973.5756313599, + "63": 462071.2027590206, + "64": 459167.1738031686, + "65": 455814.5454250004, + "66": 452460.0394033675, + "67": 448670.8002455062, + "68": 444879.469097872, + "69": 440668.9865968088, + "70": 436456.2058196177, + "71": 431841.5094747134, + "72": 427224.3174417785, + "73": 422224.0316083723, + "74": 417221.062328961, + "75": 411855.3327173079, + "76": 406486.7422969777, + "77": 400777.1564670947, + "78": 395064.5435615134, + "79": 389034.0457276985, + "80": 383000.3663033733, + "81": 376673.1667846292, + "82": 370342.6435229466, + "83": 363744.1231966658, + "84": 357142.1498987901, + "85": 350298.7600347776, + "86": 343451.8014046663, + "87": 336390.9592748135, + "88": 329326.4464758734, + "89": 322076.4271514567, + "90": 314822.6495490168, + "91": 307412.4743126581, + "92": 299998.4678295174, + "93": 292457.7896421809, + "94": 284913.2221678265, + "95": 277272.2086428738, + "96": 269627.2629486189, + "97": 261916.4772947591, + "98": 254201.7319168704, + "99": 246452.0123198789, + "100": 238698.3208808043, + "101": 230940.6588000271, + "102": 223179.0282439768, + "103": 215444.4461039345, + "104": 207705.914327373, + "105": 200025.3430871579, + "106": 192340.8564471393, + "107": 184745.0135307807, + "108": 177145.3047145438, + "109": 169664.5727840992, + "110": 162180.039521922, + "111": 154844.3465717168, + "112": 147504.9316716867, + "113": 140343.6329169208, + "114": 133178.7060950784, + "115": 126220.4681209244, + "116": 119258.7100931317, + "117": 112531.3977215449, + "118": 105800.6870145267, + "119": 99331.2533352407, + "120": 92858.5562634948, + "121": 86672.9362632102, + "122": 80484.2005060008, + "123": 74607.2087155578, + "124": 68727.2609139964, + "125": 63182.4934774729, + "126": 57634.941255822, + "127": 52444.6828080461, + "128": 47251.8216059237, + "129": 42436.957325913, + "130": 37619.6824090892, + "131": 33199.6155964998, + "132": 28777.3395935375, + "133": 24769.9150934133, + "134": 20760.4913835992, + "135": 17181.9251616268, + "136": 13601.5774165449, + "137": 10466.3925627503, + "138": 7329.6507195663, + "139": 4650.6201330157, + "140": 1970.263052154, + "141": -241.6409671419, + "142": -2454.6359336212, + "143": -4190.2849866639, + "144": -5926.7853169608, + "145": -7178.9309306863, + "146": -8431.6849744552, + "147": -9194.9872074504, + "148": -9958.652804056, + "149": -10229.7013201737, + "150": -10500.8668810656, + "151": -10278.1944077708, + "152": -10055.3923797732, + "153": -9339.4804981068, + "154": -8623.1931544905, + "155": -7416.4703978001, + "156": -6209.1279342825, + "157": -4515.9602032236, + "158": -2821.9311464099, + "159": -648.6044780448, + "160": 1525.8215558357, + "161": 4171.1257968379, + "162": 6817.7629248561, + "163": 9925.0003350103, + "164": 13033.798714159, + "165": 16591.1014925167, + "166": 20150.1869825292, + "167": 24143.910768145, + "168": 28139.6317939798, + "169": 32554.4095146485, + "170": 36971.3909436961, + "171": 41790.1934634408, + "172": 46611.3972848212, + "173": 51815.6006107875, + "174": 57022.3931772695, + "175": 62591.8519607884, + "176": 68164.0775279525, + "177": 74077.2045696989, + "178": 79993.2648421227, + "179": 86227.1162875976, + "180": 92464.0556581277, + "181": 98994.4215472368, + "182": 105528.0176929501, + "183": 112329.5175063214, + "184": 119134.3769836311, + "185": 126180.5598085937, + "186": 133230.2182702341, + "187": 140493.6671911482, + "188": 147760.6938295236, + "189": 155213.1341304807, + "190": 162669.2399351902, + "191": 170281.6506880607, + "192": 177897.8000903588, + "193": 185640.5286877917, + "194": 193387.0541513673, + "195": 201229.933332741, + "196": 209076.6524385841, + "197": 216989.1193470568, + "198": 224905.4539103326, + "199": 232856.6707111264, + "200": 240811.7674599505, + "201": 248770.7430438494, + "202": 256733.5953837086, + "203": 264669.3076754556, + "204": 272608.8780587183, + "205": 280490.3964476227, + "206": 288375.7388652044, + "207": 296172.3462747783, + "208": 303972.7283865515, + "209": 311654.0425014183, + "210": 319339.0669233582, + "211": 326875.160095018, + "212": 334414.884364435, + "213": 341776.4017226587, + "214": 349141.4564680574, + "215": 356299.7317717914, + "216": 363461.4366210034, + "217": 370388.6053915619, + "218": 377319.082160707, + "219": 383988.1916507775, + "220": 390660.4743673574, + "221": 397045.5899318157, + "222": 403433.7312577201, + "223": 409510.0387064592, + "224": 415589.2123408891, + "225": 421333.1158697231, + "226": 427079.7145278882, + "227": 432468.9298410411, + "228": 437860.6584219572, + "229": 442874.3006786295, + "230": 447890.2642543262, + "231": 452508.9304922425, + "232": 457129.7167711219, + "233": 461335.5624817879, + "234": 465543.3184206981, + "235": 469320.1279741467, + "236": 473098.6302368084, + "237": 476431.8808779052, + "238": 479766.5998616308, + "239": 482643.5190253747, + "240": 485521.6762033926, + "241": 487931.2919230155, + "242": 490341.9102760976, + "243": 492275.0944850199, + "244": 494209.0418233746, + "245": 495658.5463801342, + "246": 497108.571384609, + "247": 498069.0566785747, + "248": 499029.8175189082, + "249": 499497.8735439017, + "250": 499965.9589611058, + "251": 499940.1187737465, + "252": 499914.0615433943, + "253": 499394.8070530674, + "254": 498875.089776369, + "255": 497864.849843956, + "256": 496853.9030437591, + "257": 495357.043896645, + "258": 493859.2364258812, + "259": 491882.0444270506, + "260": 489903.6662274703, + "261": 487454.3230667138, + "262": 485003.5603459672, + "263": 482092.1107510893, + "264": 479179.0136761034, + "265": 475817.3257715745, + "266": 472453.7688057393, + "267": 468655.4872752301, + "268": 464855.1223159148, + "269": 460635.6145535611, + "270": 456413.8170549099, + "271": 451790.1125178272, + "272": 447163.9208114628, + "273": 442154.6438128543, + "274": 437142.6918659629, + "275": 431767.9880740567, + "276": 426390.4319502233, + "277": 420671.888883119, + "278": 414950.3271961481, + "279": 408910.8890263346, + "280": 402868.2777009781, + "281": 396532.1547057573, + "282": 390192.7163817557, + "283": 383585.2893969277, + "284": 376974.4178339054, + "285": 370122.1380877901, + "286": 363266.2979482743, + "287": 356196.5826713858, + "288": 349123.2050774596, + "289": 341864.3292998041, + "290": 334601.7035755798, + "291": 327182.688538616, + "292": 319759.8505657829, + "293": 312210.3491894183, + "294": 304656.9668164604, + "295": 297007.1466731065, + "296": 289353.4026304398, + "297": 281633.8268879619, + "298": 273910.2996710623, + "299": 266151.8064744975, + "300": 258389.3496651275, + "301": 250622.9304331893, + "302": 242852.5509349791, + "303": 235109.2280516609, + "304": 227361.9637206004, + "305": 219672.6681045724, + "306": 211979.4652573457, + "307": 204374.9142923194, + "308": 196766.5055759002, + "309": 189277.0818837202, + "310": 181783.864988226, + "311": 174439.4965231081, + "312": 167091.4142165693, + "313": 159921.456153709, + "314": 152747.8781122129, + "315": 145780.9969968817, + "316": 138810.6038964406, + "317": 132074.6645107958, + "318": 125335.3348383883, + "319": 118857.290232469, + "320": 112375.9902629495, + "321": 106181.7753838643, + "322": 99984.4527569565, + "323": 94098.8820960561, + "324": 88210.3634134331, + "325": 82657.0330754084, + "326": 77100.9259219969, + "327": 71902.120502391, + "328": 66700.7202785749, + "329": 61877.3249172221, + "330": 57051.5268496389, + "331": 52622.9448071137, + "332": 48192.1614852952, + "333": 44176.237567661, + "334": 40158.322331964, + "335": 36571.2724660279, + "336": 32982.448949207, + "337": 29838.7961862163, + "338": 26693.5942867089, + "339": 24006.1114870512, + "340": 21317.3100266536, + "341": 19096.9694517614, + "342": 16875.5457440053, + "343": 15131.4757543991, + "344": 13386.5622826563, + "345": 12126.0113130213, + "346": 10864.8596893087, + "347": 10093.1676427787, + "348": 9321.1199895019, + "349": 9041.6971640443, + "350": 8762.1650316232, + "351": 8976.4786616918, + "352": 9190.9295652704, + "353": 9898.4980318418, + "354": 10606.4496602159, + "355": 11804.8443920585, + "356": 13003.8665116758, + "357": 14688.7215703478, + "358": 16374.4456168661, + "359": 18539.4749276172, + "360": 20705.6112471677, + "361": 23342.6334077384, + "362": 25980.99607985, + "363": 29079.966649262, + "364": 32180.5057934831, + "365": 35729.5569333917, + "366": 39280.3983721079, + "367": 43265.8856842684, + "368": 47253.3778051873, + "369": 51659.9341801918, + "370": 56068.7018135493, + "371": 60879.2980783146, + "372": 65692.3031761726, + "373": 70888.315300834, + "374": 76086.9241789988, + "375": 81648.2067779729, + "376": 87212.2636551585, + "377": 93117.2294923014, + "378": 99025.1360363142, + "379": 105250.8412204032, + "380": 111479.641787414, + "381": 118001.8763217265, + "382": 124527.348552231, + "383": 131320.7318808615, + "384": 138117.4822947868, + "385": 145155.5634686248, + "386": 152197.127682314, + "387": 159452.4897493752, + "388": 166711.4369189346, + "389": 174155.8051270601, + "390": 181603.846205885, + "391": 189208.1995907887, + "392": 196816.2989740237, + "393": 204550.9848922916, + "394": 212289.4750076091, + "395": 220124.3261626496, + "396": 227963.0245551166, + "397": 235867.4780542113, + "398": 243775.8065031627, + "399": 251719.0244757499, + "400": 259666.1296735642, + "401": 267617.1209747363, + "402": 275571.9962912546, + "403": 283499.7388101584, + "404": 291431.346662196, + "405": 299304.9097526316, + "406": 307182.3040956452, + "407": 314970.9706457109, + "408": 322763.4191042032, + "409": 330436.8067631981, + "410": 338113.9119178678, + "411": 345642.0930020612, + "412": 353173.9123550332, + "413": 360527.5319590553, + "414": 367884.6961037375, + "415": 375035.0879514862, + "416": 382188.9164807077, + "417": 389108.2160585376, + "418": 396030.8307535032, + "419": 402692.0852792344, + "420": 409356.5201326241, + "421": 415733.7949263536, + "422": 422114.1025653227, + "423": 428182.5834022563, + "424": 434253.9374913641, + "425": 439990.0285327169, + "426": 445728.8217526182, + "427": 451110.2386681066, + "428": 456494.1758833543, + "429": 461500.0337977581, + "430": 466508.2200460063, + "431": 471119.1159627205, + "432": 475732.1389180864, + "433": 479930.2282943751, + "434": 484130.2348795079, + "435": 487899.3020512515, + "436": 491670.0688957644, + "437": 494995.5910737634, + "438": 498322.5885409482, + "439": 501191.7931262253, + "440": 504062.2426553781, + "441": 506464.1576472769, + "442": 508867.0821853247, + "443": 510792.5794834645, + "444": 512718.8468068592, + "445": 514160.6782360646, + "446": 515603.0369919838, + "447": 516555.8629079973, + "448": 517508.9712325971, + "449": 517969.3815957017, + "450": 518429.8281964982, + "451": 518396.356029861, + "452": 518362.6736490183, + "453": 517835.8008286584, + "454": 517308.4720340642, + "455": 516290.6273875838, + "456": 515272.0826688491, + "457": 513767.6323904393, + "458": 512262.2405673459, + "459": 510277.4709868845, + "460": 508291.5219681173, + "461": 505834.6147423728, + "462": 503376.2947026036, + "463": 500457.2945264442, + "464": 497536.6535997055, + "465": 494167.4285647505, + "466": 490796.3411816232, + "467": 486990.5359387772, + "468": 483182.6539639079, + "469": 478955.6358746244, + "470": 474726.3347295169, + "471": 470095.133218315, + "472": 465461.4512020383, + "473": 460444.6905496083, + "474": 455425.2615968767, + "475": 450043.0874390185, + "476": 444658.0675810318, + "477": 438932.0674034997, + "478": 433203.0552217584, + "479": 427156.1731647808, + "480": 421106.1245518185, + "481": 414762.570860519, + "482": 408415.7084239393, + "483": 401800.8639020238, + "484": 395182.5813694, + "485": 388322.8972131765, + "486": 381459.6592150639, + "487": 374382.552623119, + "488": 367301.7902497147, + "489": 360035.5362202075, + "490": 352765.5387638187, + "491": 345339.1585064435, + "492": 337908.961817037, + "493": 330352.1082200219, + "494": 322791.3801144399, + "495": 315134.2207185953, + "496": 307473.1438956963, + "497": 299746.2418373708, + "498": 292015.3947611524, + "499": 284249.5881539453, + "500": 276479.8243747753, + "501": 268706.1046060463, + "502": 260928.4309962395, + "503": 253177.8204187065, + "504": 245423.2748030197, + "505": 237726.7043041612, + "506": 230026.2329681251, + "507": 222414.4199005385, + "508": 214798.755460055, + "509": 207302.0824145544, + "510": 199801.6225287477, + "511": 192450.017428596, + "512": 185094.7048345859, + "513": 177917.5228241077, + "514": 170736.7271671487, + "515": 163762.6347608228, + "516": 156785.0366861745, + "517": 150041.8986354458, + "518": 143295.3765994157, + "519": 136810.1459236895, + "520": 130321.6661705372, + "521": 124120.2777863689, + "522": 117915.787925305, + "523": 112023.0562935694, + "524": 106127.3828958304, + "525": 100566.9040908232, + "526": 95003.65471098, + "527": 89797.7132979259, + "528": 84589.1833060827, + "529": 79758.6643945775, + "530": 74925.7489871731, + "531": 70490.0558076295, + "532": 66052.1675440724, + "533": 62029.1448724712, + "534": 58004.137063075, + "535": 54410.0007962174, + "536": 50814.0970437696, + "537": 47663.3702029754, + "538": 44511.1003760246, + "539": 41816.5557918308, + "540": 39120.6986823612, + "541": 36893.3085864267, + "542": 34664.8414782352, + "543": 32913.7342013848, + "544": 31161.789548185, + "545": 29894.2134954837, + "546": 28626.0428797111, + "547": 27847.3379247503, + "548": 27068.2834393054, + "549": 26781.8598505852, + "550": 26495.3330164595, + "551": 26702.6579990432, + "552": 26910.126302028, + "553": 27610.7182075775, + "554": 28311.6993071917, + "555": 29503.1295352362, + "556": 30695.1931687265, + "557": 32373.0957516614, + "558": 34051.8733255596, + "559": 36209.9621595459, + "560": 38369.1639909331, + "561": 40999.2576446988, + "562": 43630.6977841285, + "563": 46722.7517877568, + "564": 49816.3803258768, + "565": 53358.52681216, + "566": 56902.4695425306, + "567": 60881.0640844353, + "568": 64861.6693660117, + "569": 69261.3448254161, + "570": 73663.2374597579, + "571": 78466.9646349384, + "572": 83273.1065455035, + "573": 88462.2613780297, + "574": 93654.0188520962, + "575": 99208.455927892, + "576": 104765.6731557174, + "577": 110663.8052102206, + "578": 116564.8838312306, + "579": 122783.7669448727, + "580": 129005.7512869279, + "581": 135521.1754347149, + "582": 142039.843110077, + "583": 148826.4277079035, + "584": 155616.3852083356, + "585": 162647.6792789662, + "586": 169682.462192722, + "587": 176931.048756118, + "588": 184183.2262112856, + "589": 191620.8304873074, + "590": 199062.1134093379, + "591": 206659.7144057911, + "592": 214261.067161956, + "593": 221989.0122075881, + "594": 229720.7671977597, + "595": 237548.8889682156, + "596": 245380.8637097313, + "597": 253278.5992845978, + "598": 261180.2155291358, + "599": 269116.7270102312, + "600": 277057.131422583, + "601": 285001.427637448, + "602": 292949.6135599414, + "603": 300870.6723702432, + "604": 308795.602192249, + "605": 316662.4929243803, + "606": 324533.2205739825, + "607": 332315.2260887039, + "608": 340101.0191631026, + "609": 347767.7570824464, + "610": 355438.2181351086, + "611": 362959.7607481487, + "612": 370484.9472540365, + "613": 377831.9396282753, + "614": 385182.4821537077, + "615": 392326.2579859878, + "616": 399473.4760967706, + "617": 406386.1708464592, + "618": 413302.1862968478, + "619": 419956.8471548478, + "620": 426614.6939106395, + "621": 432985.3861702014, + "622": 439359.1168317385, + "623": 445421.0262412903, + "624": 451485.8144463885, + "625": 457215.345140436, + "626": 462947.5835430762, + "627": 468322.4511646961, + "628": 473699.8446028254, + "629": 478699.1642502265, + "630": 483700.8177349622, + "631": 488305.186385037, + "632": 492911.6875640278, + "633": 497103.260647606, + "634": 501296.7564171014, + "635": 505059.3182436976, + "636": 508823.5852069787, + "637": 512142.6129610956, + "638": 515463.1214551903, + "639": 518325.8425116204, + "640": 521189.8139496291, + "641": 523585.2562815533, + "642": 525981.7135842741, + "643": 527900.7490652176, + "644": 529820.5599830409, + "645": 531255.940411801, + "646": 532691.8535659108, + "647": 533638.2392722691, + "648": 534584.9127728951, + "649": 535038.8936912415, + "650": 535492.9162200394, + "651": 535453.0253477145, + "652": 535412.9296210554, + "653": 534879.6488083188, + "654": 534345.9173683636, + "655": 533321.6754171236, + "656": 532296.7387278237, + "657": 530785.9018066446, + "658": 529274.1286621874, + "659": 527282.9830753856, + "660": 525290.6633589282, + "661": 522827.3907377776, + "662": 520362.7105985293, + "663": 517437.3556124689, + "664": 514510.3651590661, + "665": 511134.7958743511, + "666": 507757.3695120443, + "667": 503945.2305542813, + "668": 500131.0201224504, + "669": 495897.6788278605, + "670": 491662.0597228095, + "671": 487024.5454907434, + "672": 482384.5559864058, + "673": 477361.493072451, + "674": 472335.7670784708, + "675": 466947.301093389, + "676": 461555.9946159599, + "677": 455823.7130205317, + "678": 450088.424616213, + "679": 444035.2715257576, + "680": 437978.9570622059, + "681": 431629.142697002, + "682": 425276.0247570077, + "683": 418654.9298959805, + "684": 412030.4021823682, + "685": 405164.4779971087, + "686": 398295.0051157487, + "687": 391211.6687801901, + "688": 384124.6817966581, + "689": 376852.2082843699, + "690": 369575.9964664142, + "691": 362143.4069625663, + "692": 354707.0061356602, + "693": 347143.9535040148, + "694": 339577.0314605697, + "695": 331913.6832175381, + "696": 324246.4226320435, + "697": 316513.3418896378, + "698": 308776.3212017857, + "699": 301004.3460493308, + "700": 293228.4187852461, + "701": 285448.5405858902, + "702": 277664.7135937072, + "703": 269907.9546760191, + "704": 262147.2657563766, + "705": 254444.5569837479, + "706": 246737.9523981206, + "707": 239120.0110991237, + "708": 231498.22343942, + "709": 223995.4321809061, + "710": 216488.859082318, + "711": 209131.1457636491, + "712": 201769.729939426, + "713": 194586.449681087, + "714": 187399.560752675, + "715": 180419.3800453657, + "716": 173435.6986342781, + "717": 166686.4822057282, + "718": 159933.886744584, + "719": 153442.5875905431, + "720": 146948.0442999776, + "721": 140740.5973134061, + "722": 134530.0537790658, + "723": 128631.2733973048, + "724": 122729.5561669229, + "725": 117163.0384407947, + "726": 111593.7550454991, + "727": 106381.7845168158, + "728": 101167.2303033285, + "729": 96330.6920583336, + "730": 91491.7621997709, + "731": 87050.0594455849, + "732": 82606.1664780934, + "733": 78577.1439674651, + "734": 74546.141178156, + "735": 70946.0147847143, + "736": 67344.125753233, + "737": 64187.4184751852, + "738": 61029.1730469975, + "739": 58328.6576918277, + "740": 55626.8346358941, + "741": 53393.4834122681, + "742": 51159.0599894222, + "743": 49402.0012052295, + "744": 47644.1098462801, + "745": 46370.5918837109, + "746": 45096.4841482478, + "747": 44311.8468580771, + "748": 43526.8648162138, + "749": 43234.5184441845, + "750": 42942.0735941843, + "751": 43143.4853226607, + "752": 43345.0451276453, + "753": 44039.7332856489, + "754": 44734.8153825261, + "755": 45920.3513470042, + "756": 47106.5254504677, + "757": 48778.5432312916, + "758": 50451.4407253784, + "759": 52603.6541962434, + "760": 54756.9853755976, + "761": 57381.2130828237, + "762": 60006.7919756197, + "763": 63092.9894269399, + "764": 66180.7661015041, + "765": 69717.0654074184, + "766": 73255.1656350464, + "767": 77227.9223462855, + "768": 81202.6944637272, + "769": 85596.5414199912, + "770": 89992.6102066563, + "771": 94790.518184101, + "772": 99590.8455413549, + "773": 104774.190459486, + "774": 109960.1426525714, + "775": 115508.7790753056, + "776": 121060.2002725013, + "777": 126952.540913326, + "778": 132847.8327321354, + "779": 139060.9336495884, + "780": 145277.1403960066, + "781": 151786.7915432562, + "782": 158299.6908077354, + "783": 165080.5115788951, + "784": 171864.7098314452, + "785": 178890.2492275543, + "786": 185919.282034732, + "787": 193162.1230540825, + "788": 200408.5595223343, + "789": 207840.4273631734, + "790": 215275.9783963659, + "791": 222867.8520449397, + "792": 230463.4819888131, + "793": 238185.7087523695, + "794": 245911.7499853223, + "795": 253734.1625180568, + "796": 261560.432536006, + "797": 269452.4678961162, + "798": 277348.3884293758, + "799": 285279.2086973424, + "800": 293213.9263893951, + "801": 301152.5403714759, + "802": 309095.0485433956, + "803": 317010.4340800316, + "804": 324929.6950999897, + "805": 332790.9214964043, + "806": 340655.9892713377, + "807": 348432.3393671685, + "808": 356212.4814731893, + "809": 363873.5728694081, + "810": 371538.3918389459, + "811": 379054.2968036155, + "812": 386573.8500906507, + "813": 393915.2136703224, + "814": 401260.131820244, + "815": 408398.2876908538, + "816": 415539.8902485959, + "817": 422446.9738486665, + "818": 429357.3825476623, + "819": 436006.4410473027, + "820": 442658.6898325817, + "821": 449023.7885043021, + "822": 455391.9299554965, + "823": 461448.2545270362, + "824": 467507.4622612973, + "825": 473231.4168465309, + "826": 478958.0834972342, + "827": 484327.3837186567, + "828": 489699.2141031951, + "829": 494692.9750384876, + "830": 499689.0741474789, + "831": 504287.8927530582, + "832": 508888.8482136994, + "833": 513074.879899975, + "834": 517262.8385881215, + "835": 521019.8676442373, + "836": 524778.6061428263, + "837": 528092.109732968, + "838": 531407.0983587378, + "839": 534264.3038374323, + "840": 537122.7639832423, + "841": 539512.6993034587, + "842": 541903.6538699212, + "843": 543817.1908850233, + "844": 545731.5076023941, + "845": 547161.3980910702, + "846": 548591.8255604497, + "847": 549532.729832425, + "848": 550473.9261440117, + "849": 550922.4341136692, + "850": 551370.9879291391, + "851": 551325.6325738658, + "852": 551280.0765896613, + "853": 550741.3397398137, + "854": 550202.1564782189, + "855": 549172.4669158534, + "856": 548142.086820993, + "857": 546625.8106948744, + "858": 545108.6025411601, + "859": 543112.0261358547, + "860": 541114.2797867199, + "861": 538645.5847138023, + "862": 536175.4862987829, + "863": 533244.7172080427, + "864": 530312.3168161523, + "865": 526931.3417542489, + "866": 523548.5137711653, + "867": 519730.9773441567, + "868": 515911.3735897375, + "869": 511672.6431143482, + "870": 507431.6389654256, + "871": 502788.7438215576, + "872": 498143.3775326432, + "873": 493114.9419564898, + "874": 488083.8474178552, + "875": 482690.0170008297, + "876": 477293.3501993458, + "877": 471555.7123829321, + "878": 465815.0718558867, + "879": 459756.5707361555, + "880": 453694.9123319793, + "881": 447339.7581100123, + "882": 440981.3043923266, + "883": 434354.8778278978, + "884": 427725.0224804004, + "885": 420853.7747260027, + "886": 413978.9823354898, + "887": 406890.3305460048, + "888": 399798.0321590226, + "889": 392520.2512890201, + "890": 385238.7361543445, + "891": 377800.8473700388, + "892": 370359.1512942123, + "893": 362790.807440463, + "894": 355218.5981970173, + "895": 347549.966771381, + "896": 339877.4270159716, + "897": 332139.0711116525, + "898": 324396.7792651933, + "899": 316619.5369527574, + "900": 308838.3465226364, + "901": 301053.2091465204, + "902": 293264.126962186, + "903": 285502.1168322978, + "904": 277736.1806757496, + "905": 270028.2286368624, + "906": 262316.3847509864, + "907": 254693.2081131114, + "908": 247066.1890712702, + "909": 239558.1703827369, + "910": 232046.3738016289, + "911": 224683.4409433289, + "912": 217316.8095177552, + "913": 210128.317591746, + "914": 202936.220924754, + "915": 195950.8364033638, + "916": 188961.9550981115, + "917": 182207.5426907375, + "918": 175449.7551615393, + "919": 168953.2678456495, + "920": 162453.5402948824, + "921": 156240.9129451996, + "922": 150025.1929402976, + "923": 144121.2399759782, + "924": 138214.3540465088, + "925": 132642.6715002315, + "926": 127068.2271592037, + "927": 121851.0995546857, + "928": 116631.3921307505, + "929": 111789.7045361859, + "930": 106945.6291844318, + "931": 102498.78478894, + "932": 98049.7540275374, + "933": 94015.5975659092, + "934": 89979.4646640348, + "935": 86374.2119919898, + "936": 82767.2005114023, + "937": 79605.3746092835, + "938": 76442.014377606, + "939": 73736.3880350801, + "940": 71029.4578034798, + "941": 68791.003211439, + "942": 66551.4802229989, + "943": 64789.3256716062, + "944": 63026.3423394312, + "945": 61747.7361931958, + "946": 60468.5440592165, + "947": 59678.8261512773, + "948": 58888.7672679947, + "949": 58591.3478265037, + "950": 58293.8336746127, + "951": 58490.1798643887, + "952": 58686.6778894881, + "953": 59376.308022052, + "954": 60066.3358435716, + "955": 61246.8212784157, + "956": 62427.9485936158, + "957": 64094.9233231999, + "958": 65762.7814987294, + "959": 67909.9593793832, + "960": 70058.2586925423, + "961": 72677.4582532638, + "962": 75298.0127149278, + "963": 78379.1894461744, + "964": 81461.949107414, + "965": 84993.2351024511, + "966": 88526.3257173525, + "967": 92494.0765097233, + "968": 96463.8463978694, + "969": 100852.6948101295, + "970": 105243.768733807, + "971": 110036.6855250133, + "972": 114832.0253685098, + "973": 120010.3864411088, + "974": 125191.3584526322, + "975": 130735.0183535291, + "976": 136281.4666843682, + "977": 142168.838110081, + "978": 148059.1643607905, + "979": 154267.3033529319, + "980": 160478.5518126061, + "981": 166983.2483074609, + "982": 173491.1965496873, + "983": 180267.0699245322, + "984": 187046.3244025057, + "985": 194066.9236415833, + "986": 201091.0199050853, + "987": 208328.9279899356, + "988": 215570.4351286852, + "989": 222997.377240844, + "990": 230428.0061420146, + "991": 238014.9612510639, + "992": 245605.676243753, + "993": 253322.9916403152, + "994": 261044.1250863175, + "995": 268861.6334080076, + "996": 276683.0027866836, + "997": 284570.1410751584, + "998": 292461.1681003005, + "999": 300387.0984195453, + "1000": 308316.9297181623, + "1001": 316250.6608579832, + "1002": 324188.2897347151, + "1003": 332098.7995191387, + "1004": 340013.1883257668, + "1005": 347869.5460436472, + "1006": 355729.7486707596, + "1007": 363501.2371454065, + "1008": 371276.5211528086, + "1009": 378932.7579689078, + "1010": 386592.7258727639, + "1011": 394103.783282134, + "1012": 401618.4925202011, + "1013": 408955.0155531908, + "1014": 416295.0966546763, + "1015": 423428.4189710605, + "1016": 430565.1914647578, + "1017": 437467.4484869395, + "1018": 444373.0340901832, + "1019": 451017.2729721934, + "1020": 457664.705613955, + "1021": 464024.9916122681, + "1022": 470388.323856161, + "1023": 476439.8426825186, + "1024": 482494.2481297229, + "1025": 488213.4038820439, + "1026": 493935.2751499992, + "1027": 499299.7834348651, + "1028": 504666.82532507, + "1029": 509655.801204289, + "1030": 514647.1186915087, + "1031": 519241.1591056649, + "1032": 523837.3398012838, + "1033": 528018.6001449947, + "1034": 532201.790909096, + "1035": 535954.0554557539, + "1036": 539708.0328555442, + "1037": 543016.7787536234, + "1038": 546327.0130901493, + "1039": 549179.4676785059, + "1040": 552033.1803289761, + "1041": 554418.3715449483, + "1042": 556804.5853943644, + "1043": 558713.3850757253, + "1044": 560622.9678387721, + "1045": 562048.127748659, + "1046": 563473.8280109067, + "1047": 564410.0084435332, + "1048": 565346.4842796884, + "1049": 565790.2751339675, + "1050": 566234.1151902546, + "1051": 566184.0494281413, + "1052": 566133.7863855913, + "1053": 565590.3458220497, + "1054": 565046.4621875738, + "1055": 564012.0755893079, + "1056": 562977.0017916985, + "1057": 561456.0352921593, + "1058": 559934.1400905341, + "1059": 557932.8799590139, + "1060": 555930.4532015517, + "1061": 553457.0810343903, + "1062": 550982.3088354113, + "1063": 548046.8692672019, + "1064": 545109.8017005436, + "1065": 541724.1627627887, + "1066": 538336.6741989906, + "1067": 534514.48048263, + "1068": 530690.2227264511, + "1069": 526446.8415331297, + "1070": 522201.1899463421, + "1071": 517553.6506409209, + "1072": 512903.6434630142, + "1073": 507870.570266684, + "1074": 502834.8413729469, + "1075": 497436.379862157, + "1076": 492035.0852245151, + "1077": 486292.8228258234, + "1078": 480547.5609666581, + "1079": 474484.4417612481, + "1080": 468418.1685141217, + "1081": 462058.4026882256, + "1082": 455695.3406019288, + "1083": 449064.3089005091, + "1084": 442429.8516439473, + "1085": 435554.0052047233, + "1086": 428674.6173499383, + "1087": 421581.373313056, + "1088": 414484.485891877, + "1089": 407202.1191972083, + "1090": 399916.021443732, + "1091": 392473.5532428309, + "1092": 385027.2809489582, + "1093": 377454.3640720611, + "1094": 369877.5849967198, + "1095": 362204.3869267981, + "1096": 354527.2837110767, + "1097": 346784.3675267865, + "1098": 339037.5185770694, + "1099": 331255.7223344658, + "1100": 323469.9811436487, + "1101": 315680.2961726947, + "1102": 307886.6695557709, + "1103": 300120.1181519374, + "1104": 292349.6438764882, + "1105": 284637.1568701489, + "1106": 276920.7811646789, + "1107": 269293.0758514819, + "1108": 261661.5312750091, + "1109": 254148.9901889577, + "1110": 246632.6743438727, + "1111": 239265.225351569, + "1112": 231894.0809184015, + "1113": 224701.0791076499, + "1114": 217504.4756752126, + "1115": 210514.5875041247, + "1116": 203521.2056613773, + "1117": 196762.2958251702, + "1118": 190000.0139722649, + "1119": 183499.0354342625, + "1120": 176994.8197594505, + "1121": 170777.707380268, + "1122": 164557.5054368936, + "1123": 158649.0736216156, + "1124": 152737.7119251926, + "1125": 147161.5566924622, + "1126": 141582.6427419817, + "1127": 136361.0486015163, + "1128": 131136.8777116476, + "1129": 126290.729717677, + "1130": 121442.1970295624, + "1131": 116990.8983572779, + "1132": 112537.4163751773, + "1133": 108498.8117454769, + "1134": 104458.2337246919, + "1135": 100848.5389794382, + "1136": 97237.0884678881, + "1137": 94070.8265736021, + "1138": 90903.033385106, + "1139": 88192.9771176679, + "1140": 85481.6199896242, + "1141": 83238.7415261751, + "1142": 80994.7976879331, + "1143": 79228.22530492, + "1144": 77460.827155886, + "1145": 76177.8092041371, + "1146": 74894.2082725782, + "1147": 74100.0845715863, + "1148": 73305.6228963751, + "1149": 73003.803660681, + "1150": 72701.8927089184, + "1151": 72893.8450897646, + "1152": 73085.9522934905, + "1153": 73771.1945888563, + "1154": 74456.8375539761, + "1155": 75632.9411098465, + "1156": 76809.6895201307, + "1157": 78472.288315493, + "1158": 80135.7735241352, + "1159": 82278.5814018809, + "1160": 84422.5136727602, + "1161": 87037.3491484836, + "1162": 89653.5424790887, + "1163": 92730.3610298774, + "1164": 95808.7654579266, + "1165": 99335.6991637107, + "1166": 102864.4404299716, + "1167": 106827.844810993, + "1168": 110793.2712217642, + "1169": 115177.7790873111, + "1170": 119564.5153916288, + "1171": 124353.0974875245, + "1172": 129144.1055564598, + "1173": 134318.1377719512, + "1174": 139494.7838405293, + "1175": 145034.1207093554, + "1176": 150576.2489157157, + "1177": 156459.3031212624, + "1178": 162345.3150528439, + "1179": 168549.142623625, + "1180": 174756.0825564401, + "1181": 181256.473415675, + "1182": 187760.1189102625, + "1183": 194531.6924221958, + "1184": 201306.6499187352, + "1185": 208322.9550546107, + "1186": 215342.7600899012, + "1187": 222576.3798182935, + "1188": 229813.6014691052, + "1189": 237236.2609586174, + "1190": 244662.6100992079, + "1191": 252245.2883065227, + "1192": 259831.7292531063, + "1193": 267544.7734559795, + "1194": 275261.6385575009, + "1195": 283074.881380714, + "1196": 290891.9881037163, + "1197": 298774.866576125, + "1198": 306661.6366216162, + "1199": 314583.3127944376, + "1200": 322508.8927766745, + "1201": 330438.375426979, + "1202": 338371.7586378821, + "1203": 346278.0255769931, + "1204": 354188.174355659, + "1205": 362040.2948597567, + "1206": 369896.2630841162, + "1207": 377663.5199638773, + "1208": 385434.575181113, + "1209": 393086.5860086154, + "1210": 400742.3307223021, + "1211": 408249.1677367903, + "1212": 415759.6593721274, + "1213": 423091.9675914076, + "1214": 430427.8366650766, + "1215": 437556.9497364142, + "1216": 444689.5157647147, + "1217": 451587.5690980342, + "1218": 458488.9537858387, + "1219": 465128.9945227249, + "1220": 471772.2317865746, + "1221": 478128.325171088, + "1222": 484487.4675621974, + "1223": 490534.7992936963, + "1224": 496585.020400879, + "1225": 502299.9945649313, + "1226": 508017.686993291, + "1227": 513378.0191841585, + "1228": 518740.8877228902, + "1229": 523725.6929900941, + "1230": 528712.8426016882, + "1231": 533302.7178735542, + "1232": 537894.7361571573, + "1233": 542071.8368160764, + "1234": 546250.8706195609, + "1235": 549998.9809267318, + "1236": 553748.8068051243, + "1237": 557053.4038968579, + "1238": 560359.4921390574, + "1239": 563207.8033420775, + "1240": 566057.3753131757, + "1241": 568438.4285527192, + "1242": 570820.5071256316, + "1243": 572725.1742274005, + "1244": 574630.6271047569, + "1245": 576051.6598198488, + "1246": 577473.2355751947, + "1247": 578405.2941858141, + "1248": 579337.6508818623, + "1249": 579777.3252749437, + "1250": 580217.0515459554, + "1251": 580162.8746715055, + "1252": 580108.5031865786, + "1253": 579560.9568476442, + "1254": 579012.9701017877, + "1255": 577974.4830531855, + "1256": 576935.3114633198, + "1257": 575410.2498266436, + "1258": 573884.2621400446, + "1259": 571878.9121727602, + "1260": 569872.3982257951, + "1261": 567394.9415124458, + "1262": 564916.087407653, + "1263": 561976.5685710656, + "1264": 559035.4243705311, + "1265": 555645.7114304714, + "1266": 552254.1514930134, + "1267": 548427.8890287145, + "1268": 544599.5651473999, + "1269": 540352.1204488301, + "1270": 536102.4079737691, + "1271": 531450.8103941419, + "1272": 526796.7475531923, + "1273": 521759.6213020812, + "1274": 516719.8419589286, + "1275": 511317.3326011954, + "1276": 505911.9927161926, + "1277": 500165.6876668365, + "1278": 494416.3857508212, + "1279": 488349.2290794953, + "1280": 482278.9209545181, + "1281": 475915.122835957, + "1282": 469548.0310393192, + "1283": 462912.9722070161, + "1284": 456274.490396169, + "1285": 449394.6219764011, + "1286": 442511.2147119606, + "1287": 435413.9538334617, + "1288": 428313.0521358597, + "1289": 421026.6737271189, + "1290": 413736.5668190836, + "1291": 406290.092020301, + "1292": 398839.8156823937, + "1293": 391262.8973124811, + "1294": 383682.1192923192, + "1295": 376004.9248229514, + "1296": 368323.8277503417, + "1297": 360576.9202489077, + "1298": 352826.0825189814, + "1299": 345040.3000302974, + "1300": 337250.5751247259, + "1301": 329456.9089675446, + "1302": 321659.3036901254, + "1303": 313888.7761487364, + "1304": 306114.3282558812, + "1305": 298397.8701495082, + "1306": 290677.5258585853, + "1307": 283045.854471746, + "1308": 275410.3463306636, + "1309": 267893.8441862665, + "1310": 260373.5697863319, + "1311": 253002.1647399114, + "1312": 245627.0667506001, + "1313": 238430.1138789208, + "1314": 231229.5618780191, + "1315": 224235.7276281806, + "1316": 217238.4021936503, + "1317": 210475.5512498856, + "1318": 203709.3307709091, + "1319": 197204.4160855862, + "1320": 190696.2667394725, + "1321": 184475.2231622784, + "1322": 178251.0924914575, + "1323": 172338.7344165764, + "1324": 166423.4489256757, + "1325": 160843.372360878, + "1326": 155260.5395380298, + "1327": 150035.028982188, + "1328": 144806.9441312301, + "1329": 139956.8846277554, + "1330": 135104.4428790286, + "1331": 130649.2375923239, + "1332": 126191.8514393085, + "1333": 122149.3450795096, + "1334": 118104.8677667595, + "1335": 114491.2761649933, + "1336": 110875.9312297067, + "1337": 107705.7773417863, + "1338": 104534.094587088, + "1339": 101820.1511782131, + "1340": 99104.9093308345, + "1341": 96858.1485674926, + "1342": 94610.3248461431, + "1343": 92839.8749941548, + "1344": 91068.6017876279, + "1345": 89781.711187222, + "1346": 88494.2400131989, + "1347": 87696.2484732958, + "1348": 86897.92136009, + "1349": 86592.2390846849, + "1350": 86286.4674888653, + "1351": 86474.5616186819, + "1352": 86662.8129617829, + "1353": 87344.2017843085, + "1354": 88025.9936617569, + "1355": 89198.2485125108, + "1356": 90371.1505976248, + "1357": 92029.9054451561, + "1358": 93689.5490807037, + "1359": 95828.5177574914, + "1360": 97968.6131969528, + "1361": 100579.6142082052, + "1362": 103191.9754386964, + "1363": 106264.9642511418, + "1364": 109339.5413000349, + "1365": 112862.6499832702, + "1366": 116387.5685810128, + "1367": 120347.152644973, + "1368": 124308.7610875698, + "1369": 128689.4533312624, + "1370": 133072.3763574821, + "1371": 137857.1475164758, + "1372": 142644.3469871477, + "1373": 147814.5729404608, + "1374": 152987.4150803946, + "1375": 158522.9503515635, + "1376": 164061.2792887091, + "1377": 169940.536550943, + "1378": 175822.7538625756, + "1379": 182022.789134239, + "1380": 188225.9390862306, + "1381": 194722.5422804158, + "1382": 201222.4024231971, + "1383": 207990.1928940489, + "1384": 214761.3696577115, + "1385": 221773.8963664006, + "1386": 228789.9252776826, + "1387": 236019.7711827355, + "1388": 243253.2213083714, + "1389": 250672.1115683687, + "1390": 258094.693772606, + "1391": 265673.6073342331, + "1392": 273256.2859233016, + "1393": 280965.5700543426, + "1394": 288678.6773672277, + "1395": 296488.1646825172, + "1396": 304301.5181758283, + "1397": 312180.645694301, + "1398": 320063.667059137, + "1399": 327981.5968221137, + "1400": 335903.4326628482, + "1401": 343829.173437528, + "1402": 351758.8170362228, + "1403": 359661.3466240835, + "1404": 367567.7603100017, + "1405": 375416.1479774023, + "1406": 383268.3856186662, + "1407": 391031.9141664872, + "1408": 398799.2433004954, + "1409": 406447.5302910436, + "1410": 414099.5534116125, + "1411": 421602.6710743855, + "1412": 429109.4455969801, + "1413": 436438.0389400628, + "1414": 443770.1953716551, + "1415": 450895.5980326155, + "1416": 458024.4558798204, + "1417": 464918.8032589107, + "1418": 471816.4842169403, + "1419": 478452.8234460973, + "1420": 485092.361421857, + "1421": 491444.7577355173, + "1422": 497800.2052706106, + "1423": 503843.8443585335, + "1424": 509890.3750321866, + "1425": 515601.6609703653, + "1426": 521315.6673781196, + "1427": 526672.3157512653, + "1428": 532031.502672777, + "1429": 537012.6285208847, + "1430": 541996.1009091299, + "1431": 546582.301151023, + "1432": 551170.6465956585, + "1433": 555344.0766042497, + "1434": 559519.4419436817, + "1435": 563263.8859707154, + "1436": 567010.0477505284, + "1437": 570310.9829228858, + "1438": 573613.4114225607, + "1439": 576458.0650575592, + "1440": 579303.9816327933, + "1441": 581681.3816462872, + "1442": 584059.8091606254, + "1443": 585960.8273689584, + "1444": 587862.6335156837, + "1445": 589280.0216606184, + "1446": 590697.9550039531, + "1447": 591626.3733583825, + "1448": 592555.0919517403, + "1449": 592991.1303933111, + "1450": 593427.2228616769, + "1451": 593369.4143311321, + "1452": 593311.4133343515, + "1453": 592760.2396254968, + "1454": 592208.6276493495, + "1455": 591166.5175077845, + "1456": 590123.7249599856, + "1457": 588595.0444981101, + "1458": 587065.4401167529, + "1459": 585056.475582862, + "1460": 583046.3491951546, + "1461": 580565.2821646441, + "1462": 578082.8198639891, + "1463": 575139.6949505613, + "1464": 572194.9467899322, + "1465": 568801.6320042517, + "1466": 565406.4723333766, + "1467": 561576.6122455983, + "1468": 557744.6928484779, + "1469": 553493.6547395146, + "1470": 549240.3509572154, + "1471": 544585.1641712488, + "1472": 539927.5142226069, + "1473": 534886.8029602011, + "1474": 529843.4406999046, + "1475": 524437.3505169344, + "1476": 519028.4318963609, + "1477": 513278.5501988619, + "1478": 507525.6737198963, + "1479": 501454.9445685804, + "1480": 495381.0660443435, + "1481": 489013.6996050266, + "1482": 482643.0415639126, + "1483": 476004.4185611915, + "1484": 469362.3746517669, + "1485": 462478.9462030458, + "1486": 455591.9809770637, + "1487": 448491.1642022253, + "1488": 441386.7086712781, + "1489": 434096.7784899825, + "1490": 426803.121867981, + "1491": 419353.0994116221, + "1492": 411899.2774703322, + "1493": 404318.8155490377, + "1494": 396734.4960273037, + "1495": 389053.7621039866, + "1496": 381369.1276228647, + "1497": 373618.6847561739, + "1498": 365864.3137020667, + "1499": 358074.999928101, + "1500": 350281.7457739733, + "1501": 342484.5524027898, + "1502": 334683.4219437543, + "1503": 326909.3712509691, + "1504": 319131.402234775, + "1505": 311411.4250309599, + "1506": 303687.5636663347, + "1507": 296052.3772273778, + "1508": 288413.3560536107, + "1509": 280893.3428938126, + "1510": 273369.5594936139, + "1511": 265994.6474599225, + "1512": 258616.0444941922, + "1513": 251415.5886548076, + "1514": 244211.5356927784, + "1515": 237214.2024862573, + "1516": 230213.3800973589, + "1517": 223447.034199413, + "1518": 216677.3207643171, + "1519": 210168.9151188146, + "1520": 203657.2768063413, + "1521": 197432.7462544909, + "1522": 191205.1305986025, + "1523": 185289.2895261314, + "1524": 179370.5230230092, + "1525": 173786.9674292523, + "1526": 168200.6575586035, + "1527": 162971.6719340191, + "1528": 157740.1139912782, + "1529": 152886.5833708844, + "1530": 148030.6724780097, + "1531": 143572.0000178377, + "1532": 139111.1486599481, + "1533": 135065.179061783, + "1534": 131017.2404750926, + "1535": 127400.1895617318, + "1536": 123781.3872751195, + "1537": 120607.7779940676, + "1538": 117432.6418023602, + "1539": 114715.2469105293, + "1540": 111996.5555321812, + "1541": 109746.3471877921, + "1542": 107495.0778332564, + "1543": 105721.1842938841, + "1544": 103946.469343719, + "1545": 102656.1389413672, + "1546": 101365.2299050393, + "1547": 100563.8024404242, + "1548": 99762.0413380532, + "1549": 99452.9270069864, + "1550": 99143.7252869681, + "1551": 99328.3912220106, + "1552": 99513.2162977267, + "1553": 100191.1807782236, + "1554": 100869.550236969, + "1555": 102038.3845903178, + "1556": 103207.8680972992, + "1557": 104863.2062839478, + "1558": 106519.4351738423, + "1559": 108654.9910181889, + "1560": 110791.675536406, + "1561": 113399.2675355986, + "1562": 116008.2216612049, + "1563": 119077.8052739306, + "1564": 122148.9790262673, + "1565": 125668.686314105, + "1566": 129190.2054156099, + "1567": 133146.3918804945, + "1568": 137104.6046191831, + "1569": 141481.9030521425, + "1570": 145861.4341588143, + "1571": 150642.8152874578, + "1572": 155426.6266149928, + "1573": 160593.4663103998, + "1574": 165762.9240756785, + "1575": 171295.0768534661, + "1576": 176830.0251765292, + "1577": 182705.9037020071, + "1578": 188584.7441522407, + "1579": 194781.4044358944, + "1580": 200981.1812713008, + "1581": 207474.4132183631, + "1582": 213970.9039815237, + "1583": 220735.3269382996, + "1584": 227503.1380514763, + "1585": 234512.3009713167, + "1586": 241524.9679534373, + "1587": 248751.4537870704, + "1588": 255981.5456970763, + "1589": 263397.0795953, + "1590": 270816.3072896729, + "1591": 278391.8681914106, + "1592": 285971.1959686279, + "1593": 293677.1311339233, + "1594": 301386.8913252381, + "1595": 309193.0333612044, + "1596": 317003.0434155138, + "1597": 324878.829333383, + "1598": 332758.5109340934, + "1599": 340673.1027675035, + "1600": 348591.6025113147, + "1601": 356514.0090198032, + "1602": 364440.3201811244, + "1603": 372339.5191585177, + "1604": 380242.6040589763, + "1605": 388087.664764013, + "1606": 395936.5772641178, + "1607": 403696.7824900715, + "1608": 411460.790119623, + "1609": 419105.7574212186, + "1610": 426754.4626664494, + "1611": 434254.264265616, + "1612": 441757.7245344376, + "1613": 449083.0054317074, + "1614": 456411.8512235547, + "1615": 463533.9450489687, + "1616": 470659.495862935, + "1617": 477550.5380092334, + "1618": 484444.9155330338, + "1619": 491077.9531246558, + "1620": 497714.191257713, + "1621": 504063.2895216249, + "1622": 510415.440798077, + "1623": 516455.7854165881, + "1624": 522499.0234082146, + "1625": 528207.0184498848, + "1626": 533917.7357447972, + "1627": 539271.0967869199, + "1628": 544626.9981573705, + "1629": 549604.8402325398, + "1630": 554585.0306241179, + "1631": 559167.9506437794, + "1632": 563753.0176387706, + "1633": 567923.1709684753, + "1634": 572095.2613979367, + "1635": 575836.4322820834, + "1636": 579579.322684266, + "1637": 582876.9882424147, + "1638": 586176.148889482, + "1639": 589017.5364316457, + "1640": 591860.1886720003, + "1641": 594234.3261067456, + "1642": 596609.4927966539, + "1643": 598507.2519330569, + "1644": 600405.8007585405, + "1645": 601819.933331113, + "1646": 603234.6128491542, + "1647": 604159.7791235565, + "1648": 605085.2473803462, + "1649": 605518.0372270102, + "1650": 605950.882840329, + "1651": 605889.8291928013, + "1652": 605828.5848153073, + "1653": 605274.1694602168, + "1654": 604719.3175705207, + "1655": 603673.969246307, + "1656": 602627.9402449727, + "1657": 601096.0250568937, + "1658": 599563.1876748817, + "1659": 597550.9918641075, + "1660": 595537.635921513, + "1661": 593053.3410563333, + "1662": 590567.6526394607, + "1663": 587621.303326491, + "1664": 584673.3324812334, + "1665": 581276.7967240672, + "1666": 577878.4177930921, + "1667": 574045.3401548315, + "1668": 570210.2049150935, + "1669": 565955.9526696202, + "1670": 561699.4364551599, + "1671": 557041.0389396372, + "1672": 552380.1799622831, + "1673": 547336.2613702728, + "1674": 542289.6934777232, + "1675": 536880.3993581159, + "1676": 531468.2784947793, + "1677": 525715.1962466466, + "1678": 519959.120907449, + "1679": 513885.1945845587, + "1680": 507808.1205756811, + "1681": 501437.5603369175, + "1682": 495063.7101798341, + "1683": 488421.8967428826, + "1684": 481776.6640792527, + "1685": 474890.0485546281, + "1686": 467999.8979293191, + "1687": 460895.8974300229, + "1688": 453788.2598477618, + "1689": 446495.1492865921, + "1690": 439198.3139544352, + "1691": 431745.1144559441, + "1692": 424288.1171388241, + "1693": 416704.4815063085, + "1694": 409116.9899362588, + "1695": 401433.0856258237, + "1696": 393745.2824170979, + "1697": 385991.6724806018, + "1698": 378234.1360128145, + "1699": 370441.6584795837, + "1700": 362645.2422189301, + "1701": 354844.88839227, + "1702": 347040.5991271148, + "1703": 339263.3912758959, + "1704": 331482.2667472605, + "1705": 323759.1356753283, + "1706": 316032.1220852218, + "1707": 308393.7850617589, + "1708": 300751.6149427733, + "1709": 293228.4544753854, + "1710": 285701.5254035555, + "1711": 278323.469332518, + "1712": 270941.7239620742, + "1713": 263738.1273489348, + "1714": 256530.935242459, + "1715": 249530.4645191316, + "1716": 242526.5062394198, + "1717": 235757.0260749994, + "1718": 228984.1799961087, + "1719": 222472.6433278525, + "1720": 215957.8756120063, + "1721": 209730.2172745336, + "1722": 203499.475449112, + "1723": 197580.509821573, + "1724": 191658.6203761934, + "1725": 186071.9434513637, + "1726": 180482.5138591883, + "1727": 175250.4101209863, + "1728": 170015.7356709132, + "1729": 165159.0901478359, + "1730": 160300.0659553054, + "1731": 155838.2817968739, + "1732": 151374.3203405061, + "1733": 147325.2422420146, + "1734": 143274.1967515371, + "1735": 139654.0405293109, + "1736": 136032.1345271358, + "1737": 132855.4231222173, + "1738": 129677.1863967225, + "1739": 126956.6925595794, + "1740": 124234.9038227828, + "1741": 121981.5997052085, + "1742": 119727.2361611467, + "1743": 117950.2500143052, + "1744": 116172.4440371317, + "1745": 114879.0241866328, + "1746": 113585.0272794273, + "1747": 112780.513519608, + "1748": 111975.6676961185, + "1749": 111663.4702164281, + "1750": 111351.1869186954, + "1751": 111532.7728453477, + "1752": 111714.5194804148, + "1753": 112389.4070864232, + "1754": 113064.7012352616, + "1755": 114230.4618417083, + "1756": 115396.873163218, + "1757": 117049.1407242508, + "1758": 118702.3005468169, + "1759": 120834.7888805519, + "1760": 122968.4074433062, + "1761": 125572.935040623, + "1762": 128178.8263163721, + "1763": 131245.3486297052, + "1764": 134313.4626315473, + "1765": 137830.1117162381, + "1766": 141348.5741603834, + "1767": 145301.7055121431, + "1768": 149256.8646803934, + "1769": 153631.111084046, + "1770": 158007.5917010019, + "1771": 162785.9238779658, + "1772": 167566.6877903254, + "1773": 172730.4816055075, + "1774": 177896.8950239833, + "1775": 183426.0049868439, + "1776": 188957.9120253206, + "1777": 194830.7507950249, + "1778": 200706.5530167559, + "1779": 206900.1765976574, + "1780": 213096.9182545257, + "1781": 219587.1165457467, + "1782": 226080.5751742269, + "1783": 232841.9675159733, + "1784": 239606.7495322411, + "1785": 246612.8848717756, + "1786": 253622.5257886829, + "1787": 260845.9870706682, + "1788": 268073.0559410957, + "1789": 275485.5683102813, + "1790": 282901.7759846638, + "1791": 290474.3183739394, + "1792": 298050.6291447189, + "1793": 305753.5488081047, + "1794": 313460.2950005242, + "1795": 321263.4245391239, + "1796": 329070.42359608, + "1797": 336943.2000151341, + "1798": 344819.8736140523, + "1799": 352731.4589412196, + "1800": 360646.9536728333, + "1801": 368566.3566616813, + "1802": 376489.6657944423, + "1803": 384385.8642328615, + "1804": 392285.9500824538, + "1805": 400128.013223248, + "1806": 407973.929644256, + "1807": 415731.1402747807, + "1808": 423492.1547910951, + "1809": 431134.1304601718, + "1810": 438779.8455521295, + "1811": 446276.6584757991, + "1812": 453777.1315454309, + "1813": 461099.4267183518, + "1814": 468425.2882592264, + "1815": 475544.3993055806, + "1816": 482666.9688109433, + "1817": 489555.0311176215, + "1818": 496446.4302693457, + "1819": 503076.490954967, + "1820": 509709.7536466516, + "1821": 516055.8779323638, + "1822": 522405.0566923408, + "1823": 528442.4302546517, + "1824": 534482.6986489074, + "1825": 540187.7255505908, + "1826": 545895.4761614575, + "1827": 551245.8719740347, + "1828": 556598.8095680004, + "1829": 561573.6893183079, + "1830": 566550.9188352115, + "1831": 571130.8794289519, + "1832": 575712.988445343, + "1833": 579880.1852423386, + "1834": 584049.3205835527, + "1835": 587787.5378224875, + "1836": 591527.4760210684, + "1837": 594822.190815802, + "1838": 598118.40213822, + "1839": 600956.8417930796, + "1840": 603796.5475820581, + "1841": 606167.7399999396, + "1842": 608539.9631060781, + "1843": 610434.7800903983, + "1844": 612330.3881940714, + "1845": 613741.5814736976, + "1846": 615153.3231262492, + "1847": 616075.5529612129, + "1848": 616998.0862032117, + "1849": 617427.9424583293, + "1850": 617857.8559019467, + "1851": 617793.871505163, + "1852": 617729.6977974625, + "1853": 617172.3545298188, + "1854": 616614.57614383, + "1855": 615566.3027381925, + "1856": 614517.3500689125, + "1857": 612982.5126249784, + "1858": 611446.7543978152, + "1859": 609431.6391512088, + "1860": 607415.3651807177, + "1861": 604928.1536941964, + "1862": 602439.5500611565, + "1863": 599490.2869358172, + "1864": 596539.4036806104, + "1865": 593139.9569145413, + "1866": 589738.668374335, + "1867": 585902.6825251504, + "1868": 582064.6404714172, + "1869": 577807.482807516, + "1870": 573548.0625688264, + "1871": 568886.76242191, + "1872": 564223.0022046342, + "1873": 559176.1837628144, + "1874": 554126.7174092075, + "1875": 548714.526215938, + "1876": 543299.5096649782, + "1877": 537543.5331139078, + "1878": 531784.5648551049, + "1879": 525707.7469945913, + "1880": 519627.7828287231, + "1881": 513254.3338122543, + "1882": 506877.5962554055, + "1883": 500232.8967952843, + "1884": 493584.7794837377, + "1885": 486695.280685109, + "1886": 479802.2481583694, + "1887": 472695.3671288789, + "1888": 465584.8503863237, + "1889": 458288.8620334263, + "1890": 450989.1502767756, + "1891": 443533.0757196898, + "1892": 436073.2047085594, + "1893": 428486.6967452709, + "1894": 420896.3342063737, + "1895": 413209.5602876854, + "1896": 405518.8888299821, + "1897": 397762.412002461, + "1898": 390002.0100002832, + "1899": 382206.6682879782, + "1900": 374407.3892022513, + "1901": 366604.173903204, + "1902": 358797.0245170353, + "1903": 351016.9578948654, + "1904": 343232.9759440323, + "1905": 335506.9887973476, + "1906": 327777.120478628, + "1907": 320135.9300713865, + "1908": 312490.9079121541, + "1909": 304964.8967467498, + "1910": 297435.1183178342, + "1911": 290054.2142293435, + "1912": 282669.6221797828, + "1913": 275463.1802245677, + "1914": 268253.1441117644, + "1915": 261249.8307165657, + "1916": 254243.0310981491, + "1917": 247470.7109269016, + "1918": 240695.0261717749, + "1919": 234180.6521565886, + "1920": 227663.0484218343, + "1921": 221432.5553921935, + "1922": 215198.9802000636, + "1923": 209277.1825299968, + "1924": 203352.4623649929, + "1925": 197762.9560421664, + "1926": 192170.6983723479, + "1927": 186935.7678755837, + "1928": 181698.2679847585, + "1929": 176838.7983374696, + "1930": 171976.9513360003, + "1931": 167512.3456826364, + "1932": 163045.5640440782, + "1933": 158993.6670748749, + "1934": 154939.8040239028, + "1935": 151316.8315501391, + "1936": 147692.1106041253, + "1937": 144512.5855618099, + "1938": 141331.5365041047, + "1939": 138608.2316386841, + "1940": 135883.6331762907, + "1941": 133627.5206345493, + "1942": 131370.3499665013, + "1943": 129590.5579946069, + "1944": 127809.9474900678, + "1945": 126513.7244086461, + "1946": 125216.9255657176, + "1947": 124409.6111641339, + "1948": 123601.9659915986, + "1949": 123286.9704543428, + "1950": 122971.8903892881, + "1951": 123150.6808376269, + "1952": 123329.6332821549, + "1953": 124001.7279841668, + "1954": 124674.2305143204, + "1955": 125837.2007861648, + "1956": 127000.8230559272, + "1957": 128650.3028468417, + "1958": 130300.6761796937, + "1959": 132430.3793028958, + "1960": 134561.213933077, + "1961": 137162.9588745602, + "1962": 139766.0687699969, + "1963": 142829.8109773216, + "1964": 145895.1461462439, + "1965": 149409.0176698895, + "1966": 152924.7038236516, + "1967": 156875.0601544791, + "1968": 160827.4455700387, + "1969": 165198.919488034, + "1970": 169572.6288851597, + "1971": 174348.1911069154, + "1972": 179126.1863274851, + "1973": 184287.2127130936, + "1974": 189450.8599630116, + "1975": 194977.2050171311, + "1976": 200506.3484054859, + "1977": 206376.4247824911, + "1978": 212249.4658677515, + "1979": 218440.3295672175, + "1980": 224634.3125964937, + "1981": 231121.753512776, + "1982": 237612.456017782, + "1983": 244371.0934863314, + "1984": 251133.1218784935, + "1985": 258136.5048418297, + "1986": 265143.3946292628, + "1987": 272364.1060273165, + "1988": 279588.4262581755, + "1989": 286998.1912309768, + "1990": 294411.6527509823, + "1991": 301981.4502267127, + "1992": 309555.0173236044, + "1993": 317255.1945515875, + "1994": 324959.1995459177, + "1995": 332759.5891225721, + "1996": 340563.8494525584, + "1997": 348433.8883784512, + "1998": 356307.8257168513, + "1999": 364216.6760149795, + "2000": 372129.4369478707, + "2001": 380046.1073671515, + "2002": 387966.685158341, + "2003": 395860.1534820261, + "2004": 403757.5104425646, + "2005": 411596.8459188301, + "2006": 419440.0358986804, + "2007": 427194.5213102659, + "2008": 434952.8118287085, + "2009": 442592.0647198309, + "2010": 450235.0582526035, + "2011": 457729.1508347104, + "2012": 465226.9047792563, + "2013": 472546.4820424241, + "2014": 479869.6268877357, + "2015": 486986.022451576, + "2016": 494105.8776863335, + "2017": 500991.2269331772, + "2018": 507879.9142347004, + "2019": 514507.2642786186, + "2020": 521137.8175359637, + "2021": 527481.2335935674, + "2022": 533827.705330535, + "2023": 539862.3730738062, + "2024": 545899.9368518625, + "2025": 551602.2603390601, + "2026": 557307.3087360285, + "2027": 562655.0035341706, + "2028": 568005.2413120409, + "2029": 572977.4224434714, + "2030": 577951.9545375961, + "2031": 582529.2189035362, + "2032": 587108.6328859888, + "2033": 591273.1358417907, + "2034": 595439.5785334416, + "2035": 599175.1043133301, + "2036": 602912.3522422697, + "2037": 606204.377955656, + "2038": 609497.9013839115, + "2039": 612333.6543306856, + "2040": 615170.6745965487, + "2041": 617539.1826751797, + "2042": 619908.7226248289, + "2043": 621800.8576343184, + "2044": 623693.7849437179, + "2045": 625102.2986085285, + "2046": 626511.3618246234, + "2047": 627430.9144003924, + "2048": 628350.771559363, + "2049": 628777.9529065239, + "2050": 629205.1926161636, + "2051": 629138.5356582893, + "2052": 629071.6905612949, + "2053": 628511.6770750647, + "2054": 627951.2296401099, + "2055": 626900.2883540394, + "2056": 625848.6689717756, + "2057": 624311.1659812223, + "2058": 622772.7433727225, + "2059": 620754.9649089811, + "2060": 618736.0288844771, + "2061": 616246.1565059861, + "2062": 613754.8931419431, + "2063": 610802.9714454917, + "2064": 607849.4307779889, + "2065": 604447.3277573672, + "2066": 601043.3841192799, + "2067": 597204.7443278154, + "2068": 593364.0494863343, + "2069": 589104.2401881496, + "2070": 584842.169467574, + "2071": 580178.2199901042, + "2072": 575511.8115925438, + "2073": 570462.3461196455, + "2074": 565410.233883105, + "2075": 559995.3979539868, + "2076": 554577.7378132048, + "2077": 548819.1188172806, + "2078": 543057.5092575372, + "2079": 536978.0512389409, + "2080": 530895.4480567951, + "2081": 524519.3611648009, + "2082": 518139.9868721283, + "2083": 511492.6518148355, + "2084": 504841.900043721, + "2085": 497949.7679220812, + "2086": 491054.1032078415, + "2087": 483944.5911253174, + "2088": 476831.4444631521, + "2089": 469532.8273230263, + "2090": 462230.4879104879, + "2091": 454771.7868278163, + "2092": 447309.2904203635, + "2093": 439720.1581889796, + "2094": 432127.1725091783, + "2095": 424437.7765757432, + "2096": 416744.484228417, + "2097": 408985.3876353654, + "2098": 401222.3669907193, + "2099": 393424.4077579791, + "2100": 385622.5122728216, + "2101": 377816.6816943224, + "2102": 370006.9181476546, + "2103": 362224.2384829145, + "2104": 354437.644606417, + "2105": 346709.0466499525, + "2106": 338976.568636317, + "2107": 331332.7696480046, + "2108": 323685.1400205282, + "2109": 316156.5224986904, + "2110": 308624.1388241364, + "2111": 301240.6305997884, + "2112": 293853.4355231382, + "2113": 286644.3916485902, + "2114": 279431.7547232, + "2115": 272425.8416211514, + "2116": 265416.4434006136, + "2117": 258641.5257309673, + "2118": 251863.2445801587, + "2119": 245346.275271003, + "2120": 238826.077342989, + "2121": 232592.9912197963, + "2122": 226356.8240328217, + "2123": 220432.4354656182, + "2124": 214505.1255001875, + "2125": 208913.0304726474, + "2126": 203318.1851928325, + "2127": 198080.668179795, + "2128": 192840.5828654262, + "2129": 187978.5288863313, + "2130": 183114.0986438032, + "2131": 178646.9108391377, + "2132": 174177.548138047, + "2133": 170123.0711940932, + "2134": 166066.6292551665, + "2135": 162441.0789792594, + "2136": 158813.7813159299, + "2137": 155631.6806401441, + "2138": 152448.0570318329, + "2139": 149722.1786976905, + "2140": 146995.0078474809, + "2141": 144736.3239978514, + "2142": 142476.5831008671, + "2143": 140694.2219780129, + "2144": 138911.0433995167, + "2145": 137612.2533201677, + "2146": 136312.8885543704, + "2147": 135503.0093040058, + "2148": 134692.8003558083, + "2149": 134375.242115041, + "2150": 134057.6004176589, + "2151": 134233.8303038884, + "2152": 134410.2232555611, + "2153": 135079.7595330079, + "2154": 135749.7047059252, + "2155": 136910.1186869005, + "2156": 138071.1857312017, + "2157": 139718.1113611041, + "2158": 141365.9315964358, + "2159": 143493.0826846529, + "2160": 145621.3663414297, + "2161": 148220.5613701348, + "2162": 150821.1224124673, + "2163": 153882.3168254099, + "2164": 156945.1052577219, + "2165": 160456.4311015796, + "2166": 163969.5726314282, + "2167": 167917.3853932697, + "2168": 171867.2282938248, + "2169": 176236.1607498528, + "2170": 180607.3297371047, + "2171": 185380.3526001376, + "2172": 190155.8095121947, + "2173": 195314.2986385605, + "2174": 200475.4096775669, + "2175": 205999.2195681681, + "2176": 211525.8288394614, + "2177": 217393.3721449265, + "2178": 223263.8812032336, + "2179": 229452.2139194003, + "2180": 235643.667008099, + "2181": 242128.5790255944, + "2182": 248616.7536726748, + "2183": 255372.8643232311, + "2184": 262132.3669364051, + "2185": 269133.2251588317, + "2186": 276137.5912425087, + "2187": 283355.7799730355, + "2188": 290577.5785716738, + "2189": 297984.822946639, + "2190": 305395.7649022721, + "2191": 312963.0438461741, + "2192": 320534.093442863, + "2193": 328231.7542013514, + "2194": 335933.2437559791, + "2195": 343731.1189218076, + "2196": 351532.8658689306, + "2197": 359400.3924390103, + "2198": 367271.8184477352, + "2199": 375178.1584414156, + "2200": 383088.4100941767, + "2201": 391002.5722567368, + "2202": 398920.6428137075, + "2203": 406811.6049247695, + "2204": 414706.4566933755, + "2205": 422543.2879974949, + "2206": 430383.9748240826, + "2207": 438135.9581003872, + "2208": 445891.7475006296, + "2209": 453528.5002897331, + "2210": 461168.9947357695, + "2211": 468660.5892455252, + "2212": 476155.8461312087, + "2213": 483472.9273481076, + "2214": 490793.5771588495, + "2215": 497907.4786989263, + "2216": 505024.8409198345, + "2217": 511907.698161852, + "2218": 518793.8944666822, + "2219": 525418.754521152, + "2220": 532046.8187954057, + "2221": 538387.7468753877, + "2222": 544731.7316393185, + "2223": 550763.9134132529, + "2224": 556798.9922247895, + "2225": 562498.8317474016, + "2226": 568201.3971808378, + "2227": 573546.6100156206, + "2228": 578894.3668294257, + "2229": 583864.0679952067, + "2230": 588836.121121221, + "2231": 593410.9075157134, + "2232": 597987.8445225065, + "2233": 602149.8714975633, + "2234": 606313.8392025109, + "2235": 610046.890988866, + "2236": 613781.6659165714, + "2237": 617071.2196201534, + "2238": 620362.2720291661, + "2239": 623195.554946391, + "2240": 626030.1061715325, + "2241": 628396.1461974042, + "2242": 630763.219081392, + "2243": 632652.8880114547, + "2244": 634543.3502267998, + "2245": 635949.3997820676, + "2246": 637355.9998722707, + "2247": 638273.0903049402, + "2248": 639190.4863027452, + "2249": 639615.2074698183, + "2250": 640039.9879795909, + "2251": 639970.8728012163, + "2252": 639901.5704622337, + "2253": 639339.1007116756, + "2254": 638776.1979892004, + "2255": 637722.8023915669, + "2256": 636668.7296728474, + "2257": 635128.7743200973, + "2258": 633587.9003228118, + "2259": 631567.6714428491, + "2260": 629546.2859738427, + "2261": 627053.9651217236, + "2262": 624560.2542540835, + "2263": 621605.8860232227, + "2264": 618649.8997896573, + "2265": 615245.3521704795, + "2266": 611838.9649005024, + "2267": 607997.8824429766, + "2268": 604154.7459004248, + "2269": 599892.4958653237, + "2270": 595627.9853711507, + "2271": 590961.5970825682, + "2272": 586292.7508355462, + "2273": 581240.8484740051, + "2274": 576186.3003088086, + "2275": 570769.0294101919, + "2276": 565348.9352582387, + "2277": 559587.8832086427, + "2278": 553823.8415518992, + "2279": 547741.9523921487, + "2280": 541656.9190238683, + "2281": 535278.4028999356, + "2282": 528896.600328697, + "2283": 522246.837945388, + "2284": 515593.6597999859, + "2285": 508699.102254967, + "2286": 501801.013067437, + "2287": 494689.077460893, + "2288": 487573.508223161, + "2289": 480272.469455105, + "2290": 472967.7093614577, + "2291": 465506.588543684, + "2292": 458041.6733463224, + "2293": 450450.1232694104, + "2294": 442854.7206876504, + "2295": 435162.9087950153, + "2296": 427467.2014304383, + "2297": 419705.6907612768, + "2298": 411940.2569808537, + "2299": 404139.8855518631, + "2300": 396335.578809176, + "2301": 388527.3379110633, + "2302": 380715.1649818945, + "2303": 372930.0768709634, + "2304": 365141.0754837828, + "2305": 357410.0709513424, + "2306": 349675.1872956384, + "2307": 342028.983598366, + "2308": 334378.9501942405, + "2309": 326847.9298272672, + "2310": 319313.1442382955, + "2311": 311927.2350294526, + "2312": 304537.6398974363, + "2313": 297326.1968958578, + "2314": 290111.1617709807, + "2315": 283102.8513961974, + "2316": 276091.0568288873, + "2317": 269313.7437376414, + "2318": 262533.0680896179, + "2319": 256013.7052068444, + "2320": 249491.1146280234, + "2321": 243255.6367760492, + "2322": 237017.0787815337, + "2323": 231090.3003272467, + "2324": 225160.6013944071, + "2325": 219566.118318351, + "2326": 213968.8859081323, + "2327": 208728.9826820233, + "2328": 203486.5120711365, + "2329": 198622.0737112995, + "2330": 193755.2600030276, + "2331": 189285.6896468411, + "2332": 184813.9453076767, + "2333": 180757.0876383225, + "2334": 176698.2658858954, + "2335": 173070.3367076157, + "2336": 169440.6610522699, + "2337": 166256.1832940537, + "2338": 163070.1835121284, + "2339": 160341.9299124196, + "2340": 157612.3847039236, + "2341": 155351.3274025211, + "2342": 153089.2139595112, + "2343": 151304.481195614, + "2344": 149518.9318802933, + "2345": 148217.7719675753, + "2346": 146916.0382711024, + "2347": 146103.7909919941, + "2348": 145291.2149162249, + "2349": 144971.2904482982, + "2350": 144651.2834234105, + "2351": 144825.1488810308, + "2352": 144999.1783022338, + "2353": 145666.351946595, + "2354": 146333.9353830555, + "2355": 147491.9885234492, + "2356": 148650.6956222908, + "2357": 150295.2622011035, + "2358": 151940.7242789641, + "2359": 154065.5181025785, + "2360": 156191.4453868715, + "2361": 158788.2849344634, + "2362": 161386.4913863052, + "2363": 164445.3320986333, + "2364": 167505.767719461, + "2365": 171014.7416402196, + "2366": 174525.5321346105, + "2367": 178470.9947478922, + "2368": 182418.4883860435, + "2369": 186785.0724650822, + "2370": 191153.8939600186, + "2371": 195924.5702146707, + "2372": 200697.6814015426, + "2373": 205853.8256851811, + "2374": 211012.5927631813, + "2375": 216534.0595737612, + "2376": 222058.326645283, + "2377": 227923.5286304921, + "2378": 233791.6972473254, + "2379": 239977.6904000679, + "2380": 246166.8048026603, + "2381": 252649.3790106369, + "2382": 259135.2167240556, + "2383": 265888.9913160786, + "2384": 272646.1587451196, + "2385": 279644.6826570861, + "2386": 286646.7153032497, + "2387": 293862.5714684839, + "2388": 301082.0383733263, + "2389": 308486.951925268, + "2390": 315895.5639279274, + "2391": 323460.5137881832, + "2392": 331029.2351698326, + "2393": 338724.5685811676, + "2394": 346423.7316558086, + "2395": 354219.2812080985, + "2396": 362018.7034074136, + "2397": 369883.9060946986, + "2398": 377753.0090849265, + "2399": 385657.0269236921, + "2400": 393564.9572844066, + "2401": 401476.7990170747, + "2402": 409392.5500055954, + "2403": 417281.1934089377, + "2404": 425173.7273298434, + "2405": 433008.2416455718, + "2406": 440846.6123423688, + "2407": 448596.2803467786, + "2408": 456349.7553323003, + "2409": 463984.1945631701, + "2410": 471622.37630674, + "2411": 479111.6589690986, + "2412": 486604.6048617468, + "2413": 493919.3759392704, + "2414": 501237.7164635939, + "2415": 508349.3095695081, + "2416": 515464.3642078083, + "2417": 522344.9147180728, + "2418": 529228.8051413059, + "2419": 535851.3601636363, + "2420": 542477.1202545104, + "2421": 548815.7449991769, + "2422": 555157.4272751596, + "2423": 561187.3074078195, + "2424": 567220.0854240598, + "2425": 572917.6249966618, + "2426": 578617.8913246806, + "2427": 583960.805897948, + "2428": 589306.2652934485, + "2429": 594273.6698834458, + "2430": 599243.4272755079, + "2431": 603815.9187771921, + "2432": 608390.5617316351, + "2433": 612550.2954941053, + "2434": 616711.9708255552, + "2435": 620442.7310768083, + "2436": 624175.2153071273, + "2437": 627462.4791503535, + "2438": 630751.2425353586, + "2439": 633582.2372642427, + "2440": 636414.5011360291, + "2441": 638778.2546428512, + "2442": 641143.0418414155, + "2443": 643030.4259190024, + "2444": 644918.6041141418, + "2445": 646322.3704807968, + "2446": 647726.6882133044, + "2447": 648641.4971185202, + "2448": 649556.6124184385, + "2449": 649979.0537165187, + "2450": 650401.555185519, + "2451": 650330.1617939208, + "2452": 650258.5820685922, + "2453": 649693.8357578947, + "2454": 649128.6573008175, + "2455": 648072.9867934503, + "2456": 647016.6399891975, + "2457": 645474.4113744462, + "2458": 643931.2649380285, + "2459": 641908.7644411321, + "2460": 639885.1081767292, + "2461": 637390.5173500847, + "2462": 634894.5373281282, + "2463": 631937.9007624967, + "2464": 628979.6470130455, + "2465": 625572.8326962044, + "2466": 622164.1795461277, + "2467": 618320.832025406, + "2468": 614475.4312359033, + "2469": 610210.9177694387, + "2470": 605944.1446588327, + "2471": 601275.494568091, + "2472": 596604.3873325287, + "2473": 591550.2247954109, + "2474": 586493.4172669483, + "2475": 581073.8878167218, + "2476": 575651.5359241636, + "2477": 569888.2269443156, + "2478": 564121.9291670221, + "2479": 558037.7846957736, + "2480": 551950.4968243984, + "2481": 545569.7270051249, + "2482": 539185.6715456487, + "2483": 532533.6570805705, + "2484": 525878.2276592047, + "2485": 518981.4196433944, + "2486": 512081.0807895942, + "2487": 504966.8963206608, + "2488": 497849.0790237751, + "2489": 490545.7929991597, + "2490": 483238.7864509054, + "2491": 475775.4199798363, + "2492": 468308.2599298508, + "2493": 460714.4658003472, + "2494": 453116.8199653893, + "2495": 445422.7656183121, + "2496": 437724.8165974118, + "2497": 429961.0650694098, + "2498": 422193.3912269929, + "2499": 414390.7805322208, + "2500": 406584.2353193305, + "2501": 398773.7567459595, + "2502": 390959.346935845, + "2503": 383172.0227376483, + "2504": 375380.7860562523, + "2505": 367647.5470220154, + "2506": 359910.429656305, + "2507": 352261.9930401831, + "2508": 344609.7275077511, + "2509": 337076.475802368, + "2510": 329539.45966427, + "2511": 322151.320694952, + "2512": 314759.4965904899, + "2513": 307545.825403869, + "2514": 300328.5628807301, + "2515": 293318.0258938422, + "2516": 286304.0054999631, + "2517": 279524.467367062, + "2518": 272741.5674616767, + "2519": 266219.9811052148, + "2520": 259695.1678357597, + "2521": 253457.4680755869, + "2522": 247216.6889546911, + "2523": 241287.690155225, + "2524": 235355.7716577909, + "2525": 229759.0697971096, + "2526": 224159.6193816205, + "2527": 218917.4989289813, + "2528": 213672.8118696915, + "2529": 208806.1578389659, + "2530": 203937.1292367081, + "2531": 199465.3447628271, + "2532": 194991.3870816468, + "2533": 190932.3168453539, + "2534": 186871.2833004449, + "2535": 183241.1431035398, + "2536": 179609.2572028139, + "2537": 176422.5699718577, + "2538": 173234.3614892254, + "2539": 170503.8999602377, + "2540": 167772.1475932861, + "2541": 165508.8839036472, + "2542": 163244.5648420168, + "2543": 161457.6272285127, + "2544": 159669.8738319966, + "2545": 158366.5106058936, + "2546": 157062.5743632456, + "2547": 156248.1253045726, + "2548": 155433.3482152498, + "2549": 155111.2234991824, + "2550": 154789.0169909695, + "2551": 154960.6837294828, + "2552": 155132.5151952011, + "2553": 155797.4916471042, + "2554": 156462.8786535386, + "2555": 157618.736125744, + "2556": 158775.2483176416, + "2557": 160417.620750163, + "2558": 162060.8894417898, + "2559": 164183.4906386409, + "2560": 166307.2260550473, + "2561": 168901.874493041, + "2562": 171497.8905929832, + "2563": 174554.5417105219, + "2564": 177612.7884930824, + "2565": 181119.5743315092, + "2566": 184628.1774989169, + "2567": 188571.4535399786, + "2568": 192516.7613600879, + "2569": 196881.1603746781, + "2570": 201247.797558176, + "2571": 206016.2902538163, + "2572": 210787.2186335211, + "2573": 215941.1808612555, + "2574": 221097.7666340336, + "2575": 226617.0528894931, + "2576": 232139.1401554168, + "2577": 238002.163083971, + "2578": 243868.1533925144, + "2579": 250051.9689847546, + "2580": 256238.9065740554, + "2581": 262719.3047153748, + "2582": 269202.9671081988, + "2583": 275954.5671251027, + "2584": 282709.5607239422, + "2585": 289705.9115500399, + "2586": 296705.7718541004, + "2587": 303919.4564204222, + "2588": 311136.7524689726, + "2589": 318539.4959066716, + "2590": 325945.9385365675, + "2591": 333508.7197649697, + "2592": 341075.2732551064, + "2593": 348768.4395147015, + "2594": 356465.4361768081, + "2595": 364258.8200552024, + "2596": 372056.0773186943, + "2597": 379919.1158076631, + "2598": 387786.0553365172, + "2599": 395687.9104502873, + "2600": 403593.6788218209, + "2601": 411503.35930056, + "2602": 419416.9497698416, + "2603": 427303.4333880729, + "2604": 435193.8082574352, + "2605": 443026.1642546275, + "2606": 450862.3773653362, + "2607": 458609.8885155466, + "2608": 466361.2073781996, + "2609": 473993.4912169739, + "2610": 481629.5182986647, + "2611": 489116.647028804, + "2612": 496607.4397183375, + "2613": 503920.0583212958, + "2614": 511236.2470990493, + "2615": 518345.689185835, + "2616": 525458.5935318954, + "2617": 532336.9944762561, + "2618": 539218.7360593703, + "2619": 545839.142966815, + "2620": 552462.7556674867, + "2621": 558799.233746084, + "2622": 565138.770079582, + "2623": 571166.5049927925, + "2624": 577197.1385120716, + "2625": 582892.5343096528, + "2626": 588590.6575840453, + "2627": 593931.4298245341, + "2628": 599274.7476075593, + "2629": 604240.0113048395, + "2630": 609207.6285233988, + "2631": 613777.980570251, + "2632": 618350.4847879902, + "2633": 622508.0805313427, + "2634": 626667.6185607197, + "2635": 630396.2422264032, + "2636": 634126.5905871167, + "2637": 637411.7192761609, + "2638": 640698.3482218693, + "2639": 643527.2092258034, + "2640": 646357.3400864488, + "2641": 648718.9612954019, + "2642": 651081.6169088328, + "2643": 652966.8701134861, + "2644": 654852.9181473564, + "2645": 656254.5550638722, + "2646": 657656.7440568369, + "2647": 658569.4249325723, + "2648": 659482.4129125407, + "2649": 659902.7275996685, + "2650": 660323.1031661833, + "2651": 660249.5845800353, + "2652": 660175.8803675625, + "2653": 659609.0102765965, + "2654": 659041.7087455981, + "2655": 657983.9158701282, + "2656": 656925.4474030635, + "2657": 655381.0978302642, + "2658": 653835.8311400358, + "2659": 651811.2110930398, + "2660": 649785.4359817235, + "2661": 647288.727010827, + "2662": 644790.6295467558, + "2663": 641831.8762406235, + "2664": 638871.5064517625, + "2665": 635462.5767960806, + "2666": 632051.8090072102, + "2667": 628206.3475472206, + "2668": 624358.8335174562, + "2669": 620092.2075092158, + "2670": 615823.3225548004, + "2671": 611152.5613176976, + "2672": 606479.3436327042, + "2673": 601423.0713425679, + "2674": 596364.1547569832, + "2675": 590942.516945014, + "2676": 585518.0573855775, + "2677": 579752.6414332001, + "2678": 573984.2373772122, + "2679": 567897.9873205902, + "2680": 561808.594556649, + "2681": 555425.720537105, + "2682": 549039.5615691413, + "2683": 542385.4442868474, + "2684": 535727.9127390271, + "2685": 528829.0032870122, + "2686": 521926.5636867493, + "2687": 514810.2791605846, + "2688": 507690.3624951915, + "2689": 500384.9777902843, + "2690": 493075.8732494467, + "2691": 485610.4094729958, + "2692": 478141.1528043245, + "2693": 470545.2627423249, + "2694": 462945.5216605564, + "2695": 455249.3727518494, + "2696": 447549.3298539966, + "2697": 439783.4851332158, + "2698": 432013.7187816919, + "2699": 424209.0162609817, + "2700": 416400.3799048215, + "2701": 408587.8108703475, + "2702": 400771.3112807969, + "2703": 392981.8979843315, + "2704": 385188.5728853345, + "2705": 377453.2461136666, + "2706": 369714.0416901963, + "2707": 362063.518695489, + "2708": 354409.1674631489, + "2709": 346873.8307360389, + "2710": 339334.7302538997, + "2711": 331944.5076177309, + "2712": 324550.6005231139, + "2713": 317334.8470225403, + "2714": 310115.5028611573, + "2715": 303102.8849112414, + "2716": 296086.7842290578, + "2717": 289305.1664820844, + "2718": 282520.1876363677, + "2719": 275996.523012825, + "2720": 269469.6321490495, + "2721": 263229.8554668277, + "2722": 256987.0000956651, + "2723": 251055.9257172262, + "2724": 245121.932311626, + "2725": 239523.1562130978, + "2726": 233921.6322295945, + "2727": 228677.438878288, + "2728": 223430.6795891922, + "2729": 218561.953997037, + "2730": 213690.8545012418, + "2731": 209216.9998012317, + "2732": 204740.9725608476, + "2733": 200679.8334317933, + "2734": 196616.7316600837, + "2735": 192984.5239018569, + "2736": 189350.5711048071, + "2737": 186161.8176420447, + "2738": 182971.5435916439, + "2739": 180239.0171584463, + "2740": 177505.2005503643, + "2741": 175239.8732821965, + "2742": 172973.4913041611, + "2743": 171184.4914358987, + "2744": 169394.6764457944, + "2745": 168089.2522867974, + "2746": 166783.2557714742, + "2747": 165966.7470998698, + "2748": 165149.911056885, + "2749": 164825.7280459513, + "2750": 164501.4639011944, + "2751": 164671.0736610136, + "2752": 164840.8488054151, + "2753": 165503.7695929073, + "2754": 166167.1015913656, + "2755": 167320.9047115591, + "2756": 168475.3632069391, + "2757": 170115.6825979676, + "2758": 171756.8989026572, + "2759": 173877.4483666587, + "2760": 175999.1327038351, + "2761": 178591.730715751, + "2762": 181185.6970423009, + "2763": 184240.2990386667, + "2764": 187296.4973518078, + "2765": 190801.2353721038, + "2766": 194307.7913722043, + "2767": 198249.0208963185, + "2768": 202192.2828493764, + "2769": 206554.6366463484, + "2770": 210919.2292611986, + "2771": 215685.6780367, + "2772": 220454.563144313, + "2773": 225606.4827475419, + "2774": 230761.0265429403, + "2775": 236278.2714676863, + "2776": 241798.3180491032, + "2777": 247659.3009388986, + "2778": 253523.2518539728, + "2779": 259705.0286975757, + "2780": 265889.928182614, + "2781": 272368.2888635889, + "2782": 278849.9144395302, + "2783": 285599.4782825577, + "2784": 292352.4363500718, + "2785": 299346.7522869406, + "2786": 306344.5783434146, + "2787": 313556.2293033388, + "2788": 320771.4923862273, + "2789": 328172.2034985477, + "2790": 335576.6144428963, + "2791": 343137.3646251309, + "2792": 350701.8877080288, + "2793": 358393.0241988637, + "2794": 366087.9917302383, + "2795": 373879.3471154795, + "2796": 381674.5765229486, + "2797": 389535.5877925762, + "2798": 397400.500738323, + "2799": 405300.3299047721, + "2800": 413204.0729643244, + "2801": 421111.7287659753, + "2802": 429023.2951926162, + "2803": 436907.7554022089, + "2804": 444796.1074964898, + "2805": 452626.4413517137, + "2806": 460460.632953123, + "2807": 468206.1232262599, + "2808": 475955.4218436226, + "2809": 483585.6860684473, + "2810": 491219.6941670874, + "2811": 498704.804544634, + "2812": 506193.5795115915, + "2813": 513504.1810215507, + "2814": 520818.353335442, + "2815": 527925.7795870632, + "2816": 535036.6687262178, + "2817": 541913.0550914936, + "2818": 548792.7827229059, + "2819": 555411.1763055942, + "2820": 562032.7763080182, + "2821": 568367.2423144407, + "2822": 574704.7672014006, + "2823": 580730.4912932746, + "2824": 586759.1146159841, + "2825": 592452.5008413283, + "2826": 598148.6151673824, + "2827": 603487.3790829986, + "2828": 608828.6891641836, + "2829": 613791.9457822241, + "2830": 618757.5565437122, + "2831": 623325.9027552305, + "2832": 627896.4017589423, + "2833": 632051.9929091436, + "2834": 636209.5269658153, + "2835": 639936.147278811, + "2836": 643664.4929064242, + "2837": 646947.6194815281, + "2838": 650232.2469320279, + "2839": 653059.1070590577, + "2840": 655887.2376606762, + "2841": 658246.8592280537, + "2842": 660607.5158169337, + "2843": 662490.770613636, + "2844": 664374.8208557299, + "2845": 665774.4605962198, + "2846": 667174.6530284841, + "2847": 668085.3379584221, + "2848": 668996.3306070723, + "2849": 669414.6505769393, + "2850": 669833.032039828, + "2851": 669757.5199632674, + "2852": 669681.8228731734, + "2853": 669112.9605169586, + "2854": 668543.6673326622, + "2855": 667483.8834154261, + "2856": 666423.4245177077, + "2857": 664877.0851249481, + "2858": 663329.8292250349, + "2859": 661303.2205782116, + "2860": 659275.4574765083, + "2861": 656776.7611242483, + "2862": 654276.6768874206, + "2863": 651315.9374167228, + "2864": 648353.5820710721, + "2865": 644942.6674659611, + "2866": 641529.9153346078, + "2867": 637682.4701386677, + "2868": 633832.9729790714, + "2869": 629564.3644467046, + "2870": 625293.497573456, + "2871": 620620.7550224008, + "2872": 615945.5566279239, + "2873": 610887.3042323623, + "2874": 605826.4081449989, + "2875": 600402.7914344885, + "2876": 594976.3535793372, + "2877": 589208.9599336634, + "2878": 583438.5787863872, + "2879": 577350.3522400776, + "2880": 571258.9835876412, + "2881": 564874.1342803867, + "2882": 558486.0006250904, + "2883": 551829.9092554351, + "2884": 545170.4042198183, + "2885": 538269.5218791671, + "2886": 531365.1099890211, + "2887": 524246.8537713235, + "2888": 517124.9660123424, + "2889": 509817.6108113885, + "2890": 502506.5363716421, + "2891": 495039.1032930176, + "2892": 487567.8779185049, + "2893": 479970.0197465948, + "2894": 472368.3111504445, + "2895": 464670.1953224837, + "2896": 456968.186100104, + "2897": 449200.3756491235, + "2898": 441428.6441613267, + "2899": 433621.9770978719, + "2900": 425811.376792096, + "2901": 417996.844400737, + "2902": 410178.382046634, + "2903": 402387.0065775513, + "2904": 394591.7198974751, + "2905": 386854.4321358695, + "2906": 379113.2673132069, + "2907": 371460.7845096567, + "2908": 363804.4740584283, + "2909": 356267.1787019893, + "2910": 348726.1201796861, + "2911": 341333.9400921246, + "2912": 333938.0761344926, + "2913": 326720.3663588886, + "2914": 319499.066510067, + "2915": 312484.4934599125, + "2916": 305466.4382642984, + "2917": 298682.8665903112, + "2918": 291895.9344036068, + "2919": 285370.3170247117, + "2920": 278841.4739908295, + "2921": 272599.745723357, + "2922": 266354.9393514107, + "2923": 260421.9145562663, + "2924": 254485.9713176506, + "2925": 248885.2459694093, + "2926": 243281.7733191077, + "2927": 238035.631883531, + "2928": 232786.9250923064, + "2929": 227916.2525797779, + "2930": 223043.2067449794, + "2931": 218567.4062869506, + "2932": 214089.4338691477, + "2933": 210026.3501428903, + "2934": 205961.3043538091, + "2935": 202327.1531576592, + "2936": 198691.2575017515, + "2937": 195500.5617588138, + "2938": 192308.3460065382, + "2939": 189573.8784493844, + "2940": 186838.1212948838, + "2941": 184570.854057454, + "2942": 182302.5326869326, + "2943": 180511.5940025802, + "2944": 178719.8407724024, + "2945": 177412.4789489692, + "2946": 176104.5453444683, + "2947": 175286.1001585663, + "2948": 174467.3281757863, + "2949": 174141.2097991822, + "2950": 173815.0108625026, + "2951": 173982.6864037701, + "2952": 174150.5279026148, + "2953": 174811.5156171694, + "2954": 175472.9151149336, + "2955": 176624.7863063018, + "2956": 177777.3134443507, + "2957": 179415.7020491682, + "2958": 181054.9881383932, + "2959": 183173.6079573031, + "2960": 185293.3632193881, + "2961": 187884.0327258404, + "2962": 190476.0711161825, + "2963": 193528.7457452244, + "2964": 196583.0172595548, + "2965": 200085.8290491818, + "2966": 203590.4593863854, + "2967": 207529.7638150043, + "2968": 211471.1012395992, + "2969": 215831.5310747711, + "2970": 220194.2002941157, + "2971": 224958.7262400374, + "2972": 229725.6890836289, + "2973": 234875.6869880269, + "2974": 240028.309649418, + "2975": 245543.6340046136, + "2976": 251061.7605805706, + "2977": 256920.8240286308, + "2978": 262782.8560653292, + "2979": 268962.7145935504, + "2980": 275145.6963258367, + "2981": 281622.139816325, + "2982": 288101.8487636811, + "2983": 294849.4965396616, + "2984": 301600.5391013037, + "2985": 308592.9400931131, + "2986": 315588.851764978, + "2987": 322798.5889003814, + "2988": 330011.9387184763, + "2989": 337410.7371253691, + "2990": 344813.2359232955, + "2991": 352372.0745177533, + "2992": 359934.6865711598, + "2993": 367623.9125904293, + "2994": 375316.9702078055, + "2995": 383106.4162362571, + "2996": 390899.7368437863, + "2997": 398758.8398699669, + "2998": 406621.8451284014, + "2999": 414519.7671633163, + "3000": 422421.6036467559, + "3001": 430327.3534273592, + "3002": 438237.0143876618, + "3003": 446119.5696852701, + "3004": 454006.0174215654, + "3005": 461834.4474724481, + "3006": 469666.7358228063, + "3007": 477410.323397828, + "3008": 485157.7198696582, + "3009": 492786.08250118, + "3010": 500418.1895583943, + "3011": 507901.3994460395, + "3012": 515388.2744742684, + "3013": 522696.9765963202, + "3014": 530009.2500727742, + "3015": 537114.7780370775, + "3016": 544223.7694386832, + "3017": 551098.2586158292, + "3018": 557976.089608181, + "3019": 564592.587100529, + "3020": 571212.2915609847, + "3021": 577544.8625734616, + "3022": 583880.4930141511, + "3023": 589904.323207082, + "3024": 595931.0531778289, + "3025": 601622.5465978433, + "3026": 607316.7686648548, + "3027": 612653.6408673688, + "3028": 617993.0597810469, + "3029": 622954.4257768299, + "3030": 627918.1464609654, + "3031": 632484.6031396912, + "3032": 637053.2131548262, + "3033": 641206.9158603229, + "3034": 645362.5620158187, + "3035": 649087.2949708239, + "3036": 652813.7537832897, + "3037": 656094.9940857466, + "3038": 659377.7358057584, + "3039": 662202.7107441169, + "3040": 665028.9566985406, + "3041": 667386.6941598577, + "3042": 669745.4671834728, + "3043": 671626.8389553644, + "3044": 673509.006712763, + "3045": 674906.7645083326, + "3046": 676305.075535114, + "3047": 677213.8795986673, + "3048": 678122.9919196928, + "3049": 678539.4321003573, + "3050": 678955.9343121283, + "3051": 678878.5435221976, + "3052": 678800.9682561454, + "3053": 678230.2282610462, + "3054": 677659.0579746047, + "3055": 676597.3974916267, + "3056": 675535.062564234, + "3057": 673986.8476775337, + "3058": 672437.7168190783, + "3059": 670409.2337487777, + "3060": 668379.5967583277, + "3061": 665879.0270517183, + "3062": 663377.0699946061, + "3063": 660414.4582373553, + "3064": 657450.2311385513, + "3065": 654037.4453133547, + "3066": 650622.8224946519, + "3067": 646773.5071437671, + "3068": 642922.1403613002, + "3069": 638651.6627378064, + "3070": 634378.9273048443, + "3071": 629704.3167251593, + "3072": 625027.2508328072, + "3073": 619967.1314697957, + "3074": 614904.3689450794, + "3075": 609478.8863269843, + "3076": 604050.5830936892, + "3077": 598281.324598984, + "3078": 592509.0791314627, + "3079": 586418.9887933667, + "3080": 580325.7568772762, + "3081": 573939.0448341743, + "3082": 567549.0489705105, + "3083": 560891.0959196434, + "3084": 554229.7297296444, + "3085": 547326.9867611163, + "3086": 540420.7147692745, + "3087": 533300.5989757379, + "3088": 526176.8521664509, + "3089": 518867.6384404016, + "3090": 511554.7060004464, + "3091": 504085.4154461778, + "3092": 496612.3331202631, + "3093": 489012.6185208714, + "3094": 481409.0540208381, + "3095": 473709.0828122721, + "3096": 466005.218732244, + "3097": 458235.5539462513, + "3098": 450461.9686457544, + "3099": 442653.4482916064, + "3100": 434840.9952168046, + "3101": 427024.6105777826, + "3102": 419204.2964970531, + "3103": 411411.0698220661, + "3104": 403613.9324564877, + "3105": 395874.794529465, + "3106": 388131.7800611531, + "3107": 380477.4481314043, + "3108": 372819.289073111, + "3109": 365280.1456284251, + "3110": 357737.2395363768, + "3111": 350343.2123972561, + "3112": 342945.5019059358, + "3113": 335725.9461141994, + "3114": 328502.8007664867, + "3115": 321486.3827343681, + "3116": 314466.4830734032, + "3117": 307681.0674503646, + "3118": 300892.2918305952, + "3119": 294364.8315343086, + "3120": 287834.1460983959, + "3121": 281590.5759439414, + "3122": 275343.92819975, + "3123": 269409.0625467828, + "3124": 263471.2789644662, + "3125": 257868.7137863201, + "3126": 252263.4018196101, + "3127": 247015.4215808056, + "3128": 241764.8764992271, + "3129": 236892.3662089074, + "3130": 232017.4831085718, + "3131": 227539.8458969512, + "3132": 223060.0372371933, + "3133": 218995.1177803094, + "3134": 214928.2367716226, + "3135": 211292.2508665801, + "3136": 207654.521012186, + "3137": 204461.9915808611, + "3138": 201267.9426499911, + "3139": 198531.6424237295, + "3140": 195794.0531093018, + "3141": 193524.9542208201, + "3142": 191254.801707817, + "3143": 189462.0323892481, + "3144": 187668.4490328146, + "3145": 186359.2575907822, + "3146": 185049.4948750347, + "3147": 184229.2210849355, + "3148": 183408.6210047037, + "3149": 183080.6750370919, + "3150": 182752.6490155443, + "3151": 182918.4979777827, + "3152": 183084.5134031344, + "3153": 183743.6755494311, + "3154": 184403.249983871, + "3155": 185553.2966165478, + "3156": 186703.9997002374, + "3157": 188340.5647547275, + "3158": 189978.0277973572, + "3159": 192094.8250731041, + "3160": 194212.7582951592, + "3161": 196801.6062644157, + "3162": 199391.8236200974, + "3163": 202442.6777167163, + "3164": 205495.1292005626, + "3165": 208996.1214613471, + "3166": 212498.9327710522, + "3167": 216436.4186732199, + "3168": 220375.9380721138, + "3169": 224734.5503820388, + "3170": 229095.4025762943, + "3171": 233858.1119969892, + "3172": 238623.2588149205, + "3173": 243771.4411929326, + "3174": 248922.2488269078, + "3175": 254435.7586533758, + "3176": 259952.0711989903, + "3177": 265809.3211148038, + "3178": 271669.5401170555, + "3179": 277847.586108338, + "3180": 284028.7558008998, + "3181": 290503.3877485857, + "3182": 296981.2856497692, + "3183": 303727.1228759147, + "3184": 310476.3553837682, + "3185": 317466.9468175435, + "3186": 324461.0494268381, + "3187": 331668.9779948443, + "3188": 338880.5197404247, + "3189": 346277.5105693954, + "3190": 353678.2022837026, + "3191": 361235.2342885543, + "3192": 368796.0402460791, + "3193": 376483.460662902, + "3194": 384174.7131709785, + "3195": 391962.3545829887, + "3196": 399753.8710666475, + "3197": 407611.1704612404, + "3198": 415472.3725800872, + "3199": 423368.4919671128, + "3200": 431268.5262940942, + "3201": 439172.4744093705, + "3202": 447080.3341951938, + "3203": 454961.0888089002, + "3204": 462845.7363515525, + "3205": 470672.3666987993, + "3206": 478502.8558352188, + "3207": 486244.6446857395, + "3208": 493990.2429221973, + "3209": 501616.8078072036, + "3210": 509247.1176064858, + "3211": 516728.5307244699, + "3212": 524213.6094710561, + "3213": 531520.5157991779, + "3214": 538830.9939691591, + "3215": 545934.7271141281, + "3216": 553041.924183286, + "3217": 559914.6195145852, + "3218": 566790.6571473903, + "3219": 573405.3617662349, + "3220": 580023.2738389304, + "3221": 586354.052949134, + "3222": 592687.8919727247, + "3223": 598709.931233481, + "3224": 604734.8707566828, + "3225": 610424.5742135015, + "3226": 616117.0068013972, + "3227": 621452.0900085864, + "3228": 626789.7204104686, + "3229": 631749.2983776821, + "3230": 636711.2315162203, + "3231": 641275.9011320263, + "3232": 645842.7245666584, + "3233": 649994.6411737766, + "3234": 654148.5017127498, + "3235": 657871.4495328169, + "3236": 661596.1236916385, + "3237": 664875.5798214849, + "3238": 668156.5378496329, + "3239": 670979.7295766119, + "3240": 673804.1927998501, + "3241": 676160.148009914, + "3242": 678517.1392619307, + "3243": 680396.7297415995, + "3244": 682277.1166858847, + "3245": 683673.0941471719, + "3246": 685069.6253182342, + "3247": 685976.6500043521, + "3248": 686883.9834259597, + "3249": 687298.645184948, + "3250": 687713.3694525143, + "3251": 687634.2011955786, + "3252": 687554.8489394494, + "3253": 686982.3324309306, + "3254": 686409.386107457, + "3255": 685345.9500635625, + "3256": 684281.8400511008, + "3257": 682731.8505549062, + "3258": 681180.945562265, + "3259": 679150.6888328168, + "3260": 677119.2786579842, + "3261": 674616.9362414982, + "3262": 672113.2069487368, + "3263": 669148.8234298046, + "3264": 666182.8250430078, + "3265": 662768.2684032558, + "3266": 659351.8752431545, + "3267": 655500.7900237616, + "3268": 651647.6538454221, + "3269": 647375.4072984108, + "3270": 643100.9034140317, + "3271": 638424.5248547489, + "3272": 633745.691454375, + "3273": 628683.8050546314, + "3274": 623619.275964218, + "3275": 618192.0272511992, + "3276": 612761.9583934793, + "3277": 606990.9347445956, + "3278": 601216.9245928595, + "3279": 595125.0700402769, + "3280": 589030.0743791382, + "3281": 582641.599060183, + "3282": 576249.8403895787, + "3283": 569590.1250004406, + "3284": 562926.996940569, + "3285": 556022.4925702941, + "3286": 549114.4596445977, + "3287": 541992.5833848079, + "3288": 534867.0765766306, + "3289": 527556.1033187662, + "3290": 520241.4118138472, + "3291": 512770.3626611759, + "3292": 505295.5222031627, + "3293": 497694.0499377391, + "3294": 490088.7282374543, + "3295": 482387.000294179, + "3296": 474681.3799446983, + "3297": 466909.9593542889, + "3298": 459134.6187141219, + "3299": 451324.3434847945, + "3300": 443510.1359990708, + "3301": 435691.9974130974, + "3302": 427869.9298491531, + "3303": 420074.9501544021, + "3304": 412276.0602322934, + "3305": 404535.1702116811, + "3306": 396790.4041124905, + "3307": 389134.3210142925, + "3308": 381474.411249749, + "3309": 373933.5175607436, + "3310": 366388.8616860418, + "3311": 358993.0852257076, + "3312": 351593.6258743287, + "3313": 344372.3216834573, + "3314": 337147.4283972523, + "3315": 330129.2628870668, + "3316": 323107.6162081766, + "3317": 316320.4540271056, + "3318": 309529.9323089633, + "3319": 303000.726373686, + "3320": 296468.2957579318, + "3321": 290222.9808825094, + "3322": 283974.5888760038, + "3323": 278037.9794190978, + "3324": 272098.4524909707, + "3325": 266494.1444249077, + "3326": 260887.0900279028, + "3327": 255637.3678161911, + "3328": 250385.0812188233, + "3329": 245510.8298696084, + "3330": 240634.2061669976, + "3331": 236154.8288094895, + "3332": 231673.2804599666, + "3333": 227606.6217692063, + "3334": 223538.0019822748, + "3335": 219900.2777543667, + "3336": 216260.8100322519, + "3337": 213066.5431880883, + "3338": 209870.7572990245, + "3339": 207132.720568955, + "3340": 204393.3952048728, + "3341": 202122.560720631, + "3342": 199850.673065518, + "3343": 198056.1690582487, + "3344": 196260.8514662706, + "3345": 194949.9262416089, + "3346": 193638.4301958962, + "3347": 192816.423528257, + "3348": 191994.0910226598, + "3349": 191664.4130816144, + "3350": 191334.6555383205, + "3351": 191498.7734302545, + "3352": 191663.0582365003, + "3353": 192320.4902146457, + "3354": 192978.3349316437, + "3355": 194126.6522973466, + "3356": 195275.626564285, + "3357": 196910.4632520067, + "3358": 198546.1983776045, + "3359": 200661.2681858149, + "3360": 202777.4743895908, + "3361": 205364.5957895745, + "3362": 207953.087024757, + "3363": 211002.2154494016, + "3364": 214052.9417095677, + "3365": 217552.2091947101, + "3366": 221053.2961765826, + "3367": 224989.0581984867, + "3368": 228926.8541644341, + "3369": 233283.7434885037, + "3370": 237642.8731437438, + "3371": 242403.860472039, + "3372": 247167.285643925, + "3373": 252313.7468220255, + "3374": 257462.8337019834, + "3375": 262974.6232200738, + "3376": 268489.2159027312, + "3377": 274344.7464007547, + "3378": 280203.2464301661, + "3379": 286379.5738932914, + "3380": 292559.0255021691, + "3381": 299031.9398103868, + "3382": 305508.1205161017, + "3383": 312252.2409905212, + "3384": 318999.7571901649, + "3385": 325988.6327590203, + "3386": 332981.0199464222, + "3387": 340187.2335353558, + "3388": 347397.0607444264, + "3389": 354792.3374792417, + "3390": 362191.3155414763, + "3391": 369746.6343361339, + "3392": 377305.7275251056, + "3393": 384991.4356147597, + "3394": 392680.9762368454, + "3395": 400466.9062037872, + "3396": 408256.7116830943, + "3397": 416112.3005137802, + "3398": 423971.7925089638, + "3399": 431866.2022123339, + "3400": 439764.5272954119, + "3401": 447666.7666063327, + "3402": 455572.9180270985, + "3403": 463451.9647148227, + "3404": 471334.9047703322, + "3405": 479159.8280690464, + "3406": 486988.6105953117, + "3407": 494728.6932738262, + "3408": 502472.5857761952, + "3409": 510097.4453647998, + "3410": 517726.0503051375, + "3411": 525205.7590014044, + "3412": 532689.1337632713, + "3413": 539994.3365434419, + "3414": 547303.1116020113, + "3415": 554405.1420718787, + "3416": 561510.6369020172, + "3417": 568381.6304301503, + "3418": 575255.9666954145, + "3419": 581868.9703821156, + "3420": 588485.1819578375, + "3421": 594814.2610060094, + "3422": 601146.4004022835, + "3423": 607166.740470211, + "3424": 613189.9812348456, + "3425": 618877.9863671315, + "3426": 624568.721064303, + "3427": 629902.10681435, + "3428": 635238.0401924467, + "3429": 640195.9215690055, + "3430": 645156.1585497943, + "3431": 649719.1324405363, + "3432": 654284.2605825481, + "3433": 658434.4823292866, + "3434": 662586.6484398819, + "3435": 666307.9022633552, + "3436": 670030.8828571399, + "3437": 673308.6458532843, + "3438": 676587.9111788409, + "3439": 679409.4106341156, + "3440": 682232.1820163139, + "3441": 684586.4458157792, + "3442": 686941.7460874158, + "3443": 688819.6460167016, + "3444": 690698.3428403774, + "3445": 692092.6306106076, + "3446": 693487.4725199434, + "3447": 694392.8083734434, + "3448": 695298.453391321, + "3449": 695711.4271752458, + "3450": 696124.4638961945, + "3451": 696043.608520866, + "3452": 695962.5695743492, + "3453": 695388.3668032271, + "3454": 694813.7346447149, + "3455": 693748.6131931265, + "3456": 692682.818200095, + "3457": 691131.1441502402, + "3458": 689578.5550306225, + "3459": 687546.614600668, + "3460": 685513.5211515775, + "3461": 683009.4958868655, + "3462": 680504.084171691, + "3463": 677538.0186559408, + "3464": 674570.3386977033, + "3465": 671154.1009116704, + "3466": 667736.0270302306, + "3467": 663883.2615142252, + "3468": 660028.4454637814, + "3469": 655754.5194689579, + "3470": 651478.3365608423, + "3471": 646800.2794016823, + "3472": 642119.7678250747, + "3473": 637056.2036725251, + "3474": 631989.9972525177, + "3475": 626561.0716329019, + "3476": 621129.3262913666, + "3477": 615356.6265812342, + "3478": 609580.9407906015, + "3479": 603487.4110212601, + "3480": 597390.740565286, + "3481": 591000.590873198, + "3482": 584607.1582509737, + "3483": 577945.7693314819, + "3484": 571280.9681623329, + "3485": 564374.7911036327, + "3486": 557465.0859101549, + "3487": 550341.5378030128, + "3488": 543214.3595677008, + "3489": 535901.7153027063, + "3490": 528585.3532104503, + "3491": 521112.6338900227, + "3492": 513636.1236836227, + "3493": 506032.9820889699, + "3494": 498425.9914784026, + "3495": 490722.5950435804, + "3496": 483015.3066210774, + "3497": 475242.2183759599, + "3498": 467465.2104991883, + "3499": 459653.2684511502, + "3500": 451837.394564399, + "3501": 444017.5899948721, + "3502": 436193.8568646383, + "3503": 428397.2120206528, + "3504": 420596.6573661554, + "3505": 412854.103029791, + "3506": 405107.6730312683, + "3507": 397449.9264499783, + "3508": 389788.3536183355, + "3509": 382245.7972780433, + "3510": 374699.4791676452, + "3511": 367302.0408870048, + "3512": 359900.9201304986, + "3513": 352677.9549494734, + "3514": 345451.4010878801, + "3515": 338431.5754168654, + "3516": 331408.2689914983, + "3517": 324619.4474780964, + "3518": 317827.2668415626, + "3519": 311296.4024016277, + "3520": 304762.3136947436, + "3521": 298515.3411415134, + "3522": 292265.2918703168, + "3523": 286327.0255616316, + "3524": 280385.8421944316, + "3525": 274779.8781017978, + "3526": 269171.168090519, + "3527": 263919.7906766263, + "3528": 258665.8492889661, + "3529": 253789.9435611435, + "3530": 248911.6658914058, + "3531": 244430.6349780434, + "3532": 239947.4334837519, + "3533": 235879.122059083, + "3534": 231808.8499489161, + "3535": 228169.473808235, + "3536": 224528.3545836108, + "3537": 221332.4366469971, + "3538": 218135.0000753417, + "3539": 215395.3130723362, + "3540": 212654.3378447723, + "3541": 210381.8539063012, + "3542": 208108.3172060105, + "3543": 206312.1645624133, + "3544": 204515.1987427565, + "3545": 203202.6256988643, + "3546": 201889.482242169, + "3547": 201065.8285715947, + "3548": 200241.8494709095, + "3549": 199910.5253424233, + "3550": 199579.1220191362, + "3551": 199741.5945383249, + "3552": 199904.2343788739, + "3553": 200560.0217981718, + "3554": 201216.2223629728, + "3555": 202362.8959829301, + "3556": 203510.2269103773, + "3557": 205143.4206646591, + "3558": 206777.5132626763, + "3559": 208890.9409489632, + "3560": 211005.5054362768, + "3561": 213590.9855250606, + "3562": 216177.8358541092, + "3563": 219225.323777488, + "3564": 222274.4099410596, + "3565": 225772.037734082, + "3566": 229271.4854281123, + "3567": 233205.6085662557, + "3568": 237141.7660523273, + "3569": 241497.0173002103, + "3570": 245854.5092827568, + "3571": 250613.8593416561, + "3572": 255375.6476472482, + "3573": 260520.4723619615, + "3574": 265667.9231812438, + "3575": 271178.0770411753, + "3576": 276691.0344679959, + "3577": 282544.9301123101, + "3578": 288401.7956899453, + "3579": 294576.4891030336, + "3580": 300754.3070634192, + "3581": 307225.5881245031, + "3582": 313700.1359842246, + "3583": 320442.6240136306, + "3584": 327188.5081690241, + "3585": 334175.7520942117, + "3586": 341166.508038329, + "3587": 348371.0907841717, + "3588": 355579.2875501513, + "3589": 362972.9342416837, + "3590": 370370.2826602516, + "3591": 377923.9722106664, + "3592": 385481.4365546278, + "3593": 393165.5161983125, + "3594": 400853.4287732787, + "3595": 408637.7310917593, + "3596": 416425.9093210727, + "3597": 424279.871300042, + "3598": 432137.7368415953, + "3599": 440030.520489231, + "3600": 447927.2199142801, + "3601": 455827.833964688, + "3602": 463732.3605222665, + "3603": 471609.78274394, + "3604": 479491.0987303455, + "3605": 487314.3983567134, + "3606": 495141.557607209, + "3607": 502880.0174063129, + "3608": 510622.2874254807, + "3609": 518245.5249268772, + "3610": 525872.5081758255, + "3611": 533350.5955763262, + "3612": 540832.3494378665, + "3613": 548135.9317129597, + "3614": 555443.0866615145, + "3615": 562543.4974162426, + "3616": 569647.3729259293, + "3617": 576516.7475281117, + "3618": 583389.4652617386, + "3619": 590000.85081093, + "3620": 596615.4446430827, + "3621": 602942.9063414398, + "3622": 609273.4287814671, + "3623": 615292.1522865305, + "3624": 621313.7768814969, + "3625": 627000.1662371256, + "3626": 632689.2855504653, + "3627": 638021.0563093207, + "3628": 643355.3750886808, + "3629": 648311.6422587731, + "3630": 653270.2654251809, + "3631": 657831.6258934428, + "3632": 662395.1410046906, + "3633": 666543.7501121984, + "3634": 670694.3039749106, + "3635": 674413.9459416658, + "3636": 678135.3150697134, + "3637": 681411.4669909175, + "3638": 684689.1216321482, + "3639": 687509.0107935282, + "3640": 690330.17227208, + "3641": 692682.8265579637, + "3642": 695036.5177059021, + "3643": 696912.8089011892, + "3644": 698789.8973803852, + "3645": 700182.5771954712, + "3646": 701575.8115388171, + "3647": 702479.5402152997, + "3648": 703383.578444951, + "3649": 703794.9458292588, + "3650": 704206.3765390191, + "3651": 704123.9155407497, + "3652": 704041.2713593582, + "3653": 703465.4637412475, + "3654": 702889.2271234524, + "3655": 701822.5016001059, + "3656": 700755.1029226617, + "3657": 699201.8255755589, + "3658": 697647.6335456786, + "3659": 695614.090592267, + "3660": 693579.3950063459, + "3661": 691073.76799125, + "3662": 688566.7549119594, + "3663": 685599.088418182, + "3664": 682629.8078678277, + "3665": 679211.9698754093, + "3666": 675792.2961731374, + "3667": 671937.9312216743, + "3668": 668081.5161209701, + "3669": 663805.9914609051, + "3670": 659528.2102723891, + "3671": 654848.5552174924, + "3672": 650166.4461296344, + "3673": 645101.2848501434, + "3674": 640033.4816873264, + "3675": 634602.9597088563, + "3676": 629169.6183922451, + "3677": 623395.3230906385, + "3678": 617618.0420919574, + "3679": 611522.9174978166, + "3680": 605424.6526001167, + "3681": 599032.9088492, + "3682": 592637.8825508688, + "3683": 585974.9003378162, + "3684": 579308.5062574772, + "3685": 572400.7366697825, + "3686": 565489.4393293309, + "3687": 558364.2994570608, + "3688": 551235.5298382915, + "3689": 543921.2945713364, + "3690": 536603.3418584417, + "3691": 529129.0322985236, + "3692": 521650.9322336067, + "3693": 514046.2011612373, + "3694": 506437.6214535795, + "3695": 498732.6363021198, + "3696": 491023.7595432585, + "3697": 483249.083341889, + "3698": 475470.4878887985, + "3699": 467656.9586442019, + "3700": 459839.4979404797, + "3701": 452018.1069333968, + "3702": 444192.7877448497, + "3703": 436394.5572216213, + "3704": 428592.4172667793, + "3705": 420848.2780087969, + "3706": 413100.2634672109, + "3707": 405440.9327212408, + "3708": 397777.7761031298, + "3709": 390233.6363544096, + "3710": 382685.7352134531, + "3711": 375286.7142799529, + "3712": 367884.0112481146, + "3713": 360659.4641691145, + "3714": 353431.3287867331, + "3715": 346409.9219719467, + "3716": 339385.0347796543, + "3717": 332594.6328760034, + "3718": 325800.8722257274, + "3719": 319268.4281483872, + "3720": 312732.7601802654, + "3721": 306484.2087417957, + "3722": 300232.5809611887, + "3723": 294292.7365187529, + "3724": 288349.9753932937, + "3725": 282742.4339177233, + "3726": 277132.146898662, + "3727": 271879.1928519726, + "3728": 266623.675206333, + "3729": 261746.1935951805, + "3730": 256866.3404165947, + "3731": 252383.734368698, + "3732": 247898.9581140185, + "3733": 243829.0723029405, + "3734": 239757.2261801763, + "3735": 236116.2764005422, + "3736": 232473.5839104428, + "3737": 229276.0930816649, + "3738": 226077.0839909894, + "3739": 223335.8248419416, + "3740": 220593.277841147, + "3741": 218319.2225020906, + "3742": 216044.1147736937, + "3743": 214246.3914743041, + "3744": 212447.8553710024, + "3745": 211133.7124154479, + "3746": 209818.9994189071, + "3747": 208993.7765801389, + "3748": 208168.2286827467, + "3749": 207835.336128875, + "3750": 207502.3647513596, + "3751": 207663.2695873123, + "3752": 207824.3421154532, + "3753": 208478.5625930068, + "3754": 209133.1965865629, + "3755": 210278.3040056109, + "3756": 211424.0691023204, + "3757": 213055.6973958726, + "3758": 214688.2249030048, + "3759": 216800.0878680877, + "3760": 218913.0880037153, + "3761": 221497.0041101679, + "3762": 224082.2908260773, + "3763": 227128.215505346, + "3764": 230175.7387936741, + "3765": 233671.8040801571, + "3766": 237169.6896361898, + "3767": 241102.2510047152, + "3768": 245036.8470893864, + "3769": 249390.5373039248, + "3770": 253746.4686210209, + "3771": 258504.2583822023, + "3772": 263264.4867576474, + "3773": 268407.7519096238, + "3774": 273553.6435334178, + "3775": 279062.238564949, + "3776": 284573.6375302961, + "3777": 290425.9750799033, + "3778": 296281.2829294372, + "3779": 302454.4189808697, + "3780": 308630.6799458849, + "3781": 315100.4043777235, + "3782": 321573.3959741651, + "3783": 328314.3281060967, + "3784": 335058.6567296619, + "3785": 342044.3454885073, + "3786": 349033.5466316098, + "3787": 356236.5749416056, + "3788": 363443.2176367473, + "3789": 370835.3106222921, + "3790": 378231.1056995633, + "3791": 385783.2422732145, + "3792": 393339.1540047864, + "3793": 401021.6814002978, + "3794": 408708.0420911485, + "3795": 416490.7928894135, + "3796": 424277.4199622534, + "3797": 432129.8311483337, + "3798": 439986.1462604244, + "3799": 447877.379841867, + "3800": 455772.5295638353, + "3801": 463671.5942741173, + "3802": 471574.5718543679, + "3803": 479450.4454613545, + "3804": 487330.2131955577, + "3805": 495151.964932051, + "3806": 502977.5766548437, + "3807": 510714.4892882601, + "3808": 518455.2125035992, + "3809": 526076.9035628705, + "3810": 533702.3407312407, + "3811": 541178.8824125552, + "3812": 548659.0909161451, + "3813": 555961.128194369, + "3814": 563266.7385069797, + "3815": 570365.6049865341, + "3816": 577467.9365816625, + "3817": 584335.7676297472, + "3818": 591206.9421695825, + "3819": 597816.7848851334, + "3820": 604429.8362436425, + "3821": 610755.7558281986, + "3822": 617084.7365141137, + "3823": 623101.9186245992, + "3824": 629122.0021843686, + "3825": 634806.8508640273, + "3826": 640494.4298604702, + "3827": 645824.6606613492, + "3828": 651157.4398414994, + "3829": 656112.1677709956, + "3830": 661069.252055268, + "3831": 665629.0739997022, + "3832": 670191.0509452774, + "3833": 674338.1222451152, + "3834": 678487.1386580074, + "3835": 682205.2435326403, + "3836": 685925.0759261112, + "3837": 689199.6914701323, + "3838": 692475.8100914217, + "3839": 695294.1635899503, + "3840": 698113.7897625888, + "3841": 700464.9090993467, + "3842": 702817.0656547945, + "3843": 704691.8226140754, + "3844": 706567.3772135982, + "3845": 707958.5235051939, + "3846": 709350.2246810808, + "3847": 710252.4205459855, + "3848": 711154.926319789, + "3849": 711564.7616038296, + "3850": 711974.6605687522, + "3851": 711890.668180925, + "3852": 711806.4929651057, + "3853": 711229.1546675471, + "3854": 710651.387725134, + "3855": 709583.1322318509, + "3856": 708514.203939001, + "3857": 706959.3973308746, + "3858": 705403.6763942038, + "3859": 703368.6048880853, + "3860": 701332.3811033925, + "3861": 698825.2262433112, + "3862": 696316.6856726728, + "3863": 693347.4920410368, + "3864": 690376.6847061646, + "3865": 686957.3202824211, + "3866": 683536.1205018685, + "3867": 679680.2298250218, + "3868": 675822.2893516824, + "3869": 671545.2396715835, + "3870": 667265.9338154872, + "3871": 662584.7544453164, + "3872": 657901.1213943436, + "3873": 652834.4365037491, + "3874": 647765.110081694, + "3875": 642333.0651957034, + "3876": 636898.201323143, + "3877": 631122.383817012, + "3878": 625343.5809650841, + "3879": 619246.9348688289, + "3880": 613147.1488199997, + "3881": 606753.8842687933, + "3882": 600357.337520866, + "3883": 593692.835208765, + "3884": 587024.9213797797, + "3885": 580115.6323936951, + "3886": 573202.8160049646, + "3887": 566076.1574343813, + "3888": 558945.8694671197, + "3889": 551630.1162013477, + "3890": 544310.6458391667, + "3891": 536834.8189793483, + "3892": 529355.2019637723, + "3893": 521748.9542898402, + "3894": 514138.8583295724, + "3895": 506432.3572743105, + "3896": 498721.9649603111, + "3897": 490945.7735523235, + "3898": 483165.6632409908, + "3899": 475350.6194863845, + "3900": 467531.6446207411, + "3901": 459708.7397996825, + "3902": 451881.9071449614, + "3903": 444082.1635032177, + "3904": 436278.5107773759, + "3905": 428532.8590957664, + "3906": 420783.3324777829, + "3907": 413122.4900025022, + "3908": 405457.8220020251, + "3909": 397912.171217741, + "3910": 390362.75938788, + "3911": 382962.2281119927, + "3912": 375558.0150841427, + "3913": 368331.9583553641, + "3914": 361102.3136692959, + "3915": 354079.3978967724, + "3916": 347053.0020925512, + "3917": 340261.0919226383, + "3918": 333465.8233516258, + "3919": 326931.8716989333, + "3920": 320394.6965007024, + "3921": 314144.6381772258, + "3922": 307891.5038565734, + "3923": 301950.153218913, + "3924": 296005.8862429092, + "3925": 290396.8392613339, + "3926": 284785.047080667, + "3927": 279530.5882166311, + "3928": 274273.5660977642, + "3929": 269394.5803573636, + "3930": 264513.2233933687, + "3931": 260029.1139037626, + "3932": 255542.8345509338, + "3933": 251471.4459851269, + "3934": 247398.097450915, + "3935": 243755.6456029753, + "3936": 240111.4513875731, + "3937": 236912.4591763563, + "3938": 233711.949045967, + "3939": 230969.1891997917, + "3940": 228225.1418443174, + "3941": 225949.5864928905, + "3942": 223672.9790942941, + "3943": 221873.7564667376, + "3944": 220073.7213771636, + "3945": 218758.0797770934, + "3946": 217441.8684776555, + "3947": 216615.1476774712, + "3948": 215788.1021600062, + "3949": 215453.7123272677, + "3950": 215119.2440119536, + "3951": 215278.6522510389, + "3952": 215438.2285231065, + "3953": 216090.9530852438, + "3954": 216744.0915039036, + "3955": 217887.7036884386, + "3956": 219031.9738908819, + "3957": 220662.1076302779, + "3958": 222293.1409232275, + "3959": 224403.5100139652, + "3960": 226515.0166149488, + "3961": 229097.4395263226, + "3962": 231681.2333865823, + "3963": 234725.6655494946, + "3964": 237771.6966606241, + "3965": 241266.2701089304, + "3966": 244762.664165673, + "3967": 248693.7343736595, + "3968": 252626.8396364079, + "3969": 256979.0393675042, + "3970": 261333.4805395042, + "3971": 266089.7804938004, + "3972": 270848.5194004365, + "3973": 275990.2954215456, + "3974": 281134.6982522793, + "3975": 286641.8048284228, + "3976": 292151.7156759206, + "3977": 298002.5654450826, + "3978": 303856.3858514415, + "3979": 310028.0347968351, + "3980": 316202.8089928137, + "3981": 322671.0469924844, + "3982": 329142.5524934931, + "3983": 335881.9988665933, + "3984": 342624.8420677952, + "3985": 349609.0457406125, + "3986": 356596.7621338885, + "3987": 363798.3060301266, + "3988": 371003.4646474466, + "3989": 378394.0738909725, + "3990": 385788.3855618957, + "3991": 393339.0390647364, + "3992": 400893.4680609035, + "3993": 408574.5130562832, + "3994": 416259.391682143, + "3995": 424040.660750426, + "3996": 431825.8064281607, + "3997": 439676.7365538806, + "3998": 447531.5709402243, + "3999": 455421.3241304014, + "4000": 463314.9937954542, + "4001": 471212.5787830394, + "4002": 479114.0769746816, + "4003": 486988.4715270082, + "4004": 494866.7605403888, + "4005": 502687.0338897476, + "4006": 510511.1675589638, + "4007": 518246.6024722469, + "4008": 525985.8483007494, + "4009": 533606.062306358, + "4010": 541230.0227540972, + "4011": 548705.0880477044, + "4012": 556183.8204963609, + "4013": 563484.3820523049, + "4014": 570788.5169751472, + "4015": 577885.9083973361, + "4016": 584986.7652673541, + "4017": 591853.1219224551, + "4018": 598722.822401318, + "4019": 605331.1913877646, + "4020": 611942.7693489147, + "4021": 618267.2158677181, + "4022": 624594.7238193759, + "4023": 630610.4335269548, + "4024": 636629.0450150411, + "4025": 642312.4219541235, + "4026": 647998.5295409559, + "4027": 653327.2892630674, + "4028": 658658.5976951566, + "4029": 663611.8552071855, + "4030": 668567.469404442, + "4031": 673125.8215921865, + "4032": 677686.3291112785, + "4033": 681831.9313147025, + "4034": 685979.4789611273, + "4035": 689696.1153991055, + "4036": 693414.4796856171, + "4037": 696687.6274522388, + "4038": 699962.2786255648, + "4039": 702779.1650054341, + "4040": 705597.3243885991, + "4041": 707946.9772649343, + "4042": 710297.6676888856, + "4043": 712170.9588454725, + "4044": 714045.0479709739, + "4045": 715434.729117095, + "4046": 716824.9654759265, + "4047": 717725.6968520723, + "4048": 718626.7384652832, + "4049": 719035.1099167735, + "4050": 719443.5453770615, + "4051": 719358.0898123897, + "4052": 719272.4517473895, + "4053": 718693.6509281892, + "4054": 718114.4217915463, + "4055": 717044.7044313211, + "4056": 715974.314598692, + "4057": 714418.0467778217, + "4058": 712860.8649553185, + "4059": 710824.3328901546, + "4060": 708786.6488730798, + "4061": 706278.03410715, + "4062": 703768.0339570763, + "4063": 700797.3810722919, + "4064": 697825.1148104375, + "4065": 694404.2917857451, + "4066": 690981.6337301603, + "4067": 687124.2851040737, + "4068": 683264.887007155, + "4069": 678986.3800290212, + "4070": 674705.6172003064, + "4071": 670022.9811828171, + "4072": 665337.8918096878, + "4073": 660269.7509219882, + "4074": 655198.9688277541, + "4075": 649765.4685943777, + "4076": 644329.1496991115, + "4077": 638551.8774948263, + "4078": 632771.620269182, + "4079": 626673.5201235079, + "4080": 620572.2803494494, + "4081": 614177.5623970802, + "4082": 607779.5625719198, + "4083": 601113.6075064074, + "4084": 594444.2412477024, + "4085": 587533.5001554786, + "4086": 580619.2319840468, + "4087": 573491.1219540955, + "4088": 566359.3828506685, + "4089": 559042.178771824, + "4090": 551721.2579195198, + "4091": 544243.9808924241, + "4092": 536762.9140322944, + "4093": 529155.216836395, + "4094": 521543.6716766406, + "4095": 513835.7217442432, + "4096": 506123.880875351, + "4097": 498346.2412345695, + "4098": 490564.6830124399, + "4099": 482748.1916689116, + "4100": 474927.7695360845, + "4101": 467103.4177694757, + "4102": 459275.1384907094, + "4103": 451473.9485463176, + "4104": 443668.8498390811, + "4105": 435921.7524972299, + "4106": 428170.7805400359, + "4107": 420508.4930464402, + "4108": 412842.3803484395, + "4109": 405295.2851872952, + "4110": 397744.42930113, + "4111": 390342.4542893522, + "4112": 382936.7978459251, + "4113": 375709.2980217541, + "4114": 368478.2105603706, + "4115": 361453.8523324683, + "4116": 354426.0143927041, + "4117": 347632.6624069631, + "4118": 340835.9523397041, + "4119": 334300.5595102426, + "4120": 327761.9434545939, + "4121": 321510.4445929425, + "4122": 315255.8700532208, + "4123": 309313.0795154942, + "4124": 303367.3729583074, + "4125": 297756.8867143018, + "4126": 292143.6555898518, + "4127": 286887.7581005552, + "4128": 281629.297674841, + "4129": 276748.8739458725, + "4130": 271866.0793114856, + "4131": 267380.5324695427, + "4132": 262892.8160823066, + "4133": 258819.9907999133, + "4134": 254745.205866814, + "4135": 251101.3179375745, + "4136": 247455.6879583322, + "4137": 244255.2603006268, + "4138": 241053.3150409792, + "4139": 238309.1203826638, + "4140": 235563.6385320422, + "4141": 233286.6490023514, + "4142": 231008.6077422564, + "4143": 229207.9515698458, + "4144": 227406.4832519507, + "4145": 226089.4087399731, + "4146": 224771.7648449282, + "4147": 223943.6117653166, + "4148": 223115.1342844918, + "4149": 222779.3128043431, + "4150": 222443.413157453, + "4151": 222601.3903806805, + "4152": 222759.5359524931, + "4153": 223410.8301298614, + "4154": 224062.5384791247, + "4155": 225204.7209095187, + "4156": 226347.5616729605, + "4157": 227976.2662883818, + "4158": 229605.8707722665, + "4159": 231714.8113687345, + "4160": 233824.8897901261, + "4161": 236405.8848364764, + "4162": 238988.2511461615, + "4163": 242031.2560728357, + "4164": 245075.8602619444, + "4165": 248569.0071023416, + "4166": 252063.9748651648, + "4167": 255993.6190931068, + "4168": 259925.2986895798, + "4169": 264276.0730680474, + "4170": 268629.0892009555, + "4171": 273383.9644295755, + "4172": 278141.278923851, + "4173": 283281.6308457891, + "4174": 288424.6098904285, + "4175": 293930.2929934512, + "4176": 299438.780680678, + "4177": 305288.2076023102, + "4178": 311140.6054737586, + "4179": 317310.8321967644, + "4180": 323484.1844827504, + "4181": 329951.000884711, + "4182": 336421.0851001925, + "4183": 343159.1104998222, + "4184": 349900.5330395043, + "4185": 356883.3163626287, + "4186": 363869.6127179468, + "4187": 371069.7368878317, + "4188": 378273.4760902994, + "4189": 385662.66623035, + "4190": 393055.5591090836, + "4191": 400604.7941308902, + "4192": 408157.8049570678, + "4193": 415837.4320934057, + "4194": 423520.8931710445, + "4195": 431300.7450018231, + "4196": 439084.4737526458, + "4197": 446933.9872619575, + "4198": 454787.4053422658, + "4199": 462675.7425366699, + "4200": 470567.9965161171, + "4201": 478464.1661281366, + "4202": 486364.2492541485, + "4203": 494237.229050666, + "4204": 502114.1036179502, + "4205": 509932.9628308135, + "4206": 517755.6826730247, + "4207": 525489.7040686825, + "4208": 533227.5366888287, + "4209": 540846.3377952395, + "4210": 548468.8856528292, + "4211": 555942.5386652243, + "4212": 563419.8591414966, + "4213": 570719.0090337737, + "4214": 578021.7326015562, + "4215": 585117.7129771828, + "4216": 592217.1591090258, + "4217": 599082.1053342293, + "4218": 605950.3956913626, + "4219": 612557.3548641379, + "4220": 619167.5233195651, + "4221": 625490.5606404851, + "4222": 631816.659701989, + "4223": 637830.960827035, + "4224": 643848.1640400994, + "4225": 649530.1330115621, + "4226": 655214.8329380678, + "4227": 660542.1853070372, + "4228": 665872.0866930598, + "4229": 670823.9374659881, + "4230": 675778.1452310025, + "4231": 680335.0912932539, + "4232": 684894.1929934938, + "4233": 689038.389684598, + "4234": 693184.5321251272, + "4235": 696899.7636635252, + "4236": 700616.7233566646, + "4237": 703888.4668360135, + "4238": 707161.7140280583, + "4239": 709977.1967325303, + "4240": 712793.9527460731, + "4241": 715142.2025584551, + "4242": 717491.4902240126, + "4243": 719363.3789276595, + "4244": 721236.0659055656, + "4245": 722624.3452093296, + "4246": 724013.1800309349, + "4247": 724912.5101748776, + "4248": 725812.1508608018, + "4249": 726219.1216898144, + "4250": 726626.156832327, + "4251": 726539.3012544753, + "4252": 726452.2634807836, + "4253": 725872.0632572738, + "4254": 725291.4350205961, + "4255": 724220.3188645053, + "4256": 723148.5305400724, + "4257": 721590.864531354, + "4258": 720032.2848248521, + "4259": 717994.3551794328, + "4260": 715955.2738857395, + "4261": 713445.2621467224, + "4262": 710933.8653269863, + "4263": 707961.8160758589, + "4264": 704988.1537508746, + "4265": 701565.9349661598, + "4266": 698141.8814535548, + "4267": 694283.1376733445, + "4268": 690422.3447250929, + "4269": 686142.4431983117, + "4270": 681860.2861235297, + "4271": 677176.2561624482, + "4272": 672489.7731480966, + "4273": 667420.2389214393, + "4274": 662348.0637904075, + "4275": 656913.1708222883, + "4276": 651475.4594942292, + "4277": 645696.7951589967, + "4278": 639915.1461041457, + "4279": 633815.6544309009, + "4280": 627713.0234308033, + "4281": 621316.9145538224, + "4282": 614917.524105373, + "4283": 608250.1787177903, + "4284": 601579.4224381292, + "4285": 594667.29162596, + "4286": 587751.6340354891, + "4287": 580622.1348873011, + "4288": 573489.0069663359, + "4289": 566170.4143705479, + "4290": 558848.1053017915, + "4291": 551369.4403586311, + "4292": 543886.9858827206, + "4293": 536277.9013712209, + "4294": 528664.9691959436, + "4295": 520955.6325479972, + "4296": 513242.4052634265, + "4297": 505463.3795067341, + "4298": 497680.4354683584, + "4299": 489862.5586081453, + "4300": 482040.7512580922, + "4301": 474215.0145736134, + "4302": 466385.3506762301, + "4303": 458582.7764123718, + "4304": 450776.2936847166, + "4305": 443027.8126213923, + "4306": 435275.4572415682, + "4307": 427611.7866240831, + "4308": 419944.2911008314, + "4309": 412395.8134129724, + "4310": 404843.5752985267, + "4311": 397440.2183568005, + "4312": 390033.1802816553, + "4313": 382804.2991238944, + "4314": 375571.8306269476, + "4315": 368546.0916614069, + "4316": 361516.8732818276, + "4317": 354722.1411539931, + "4318": 347924.051242261, + "4319": 341387.278865845, + "4320": 334847.2835606594, + "4321": 328594.4057467874, + "4322": 322338.4525520601, + "4323": 316394.2836564422, + "4324": 310447.199038377, + "4325": 304835.335030405, + "4326": 299220.7264387999, + "4327": 293963.4517790587, + "4328": 288703.6144795095, + "4329": 283821.8141732154, + "4330": 278937.6432579113, + "4331": 274450.7204313594, + "4332": 269961.6283557221, + "4333": 265887.427681035, + "4334": 261811.2676516491, + "4335": 258166.0049220301, + "4336": 254519.0004382151, + "4337": 251317.1985716442, + "4338": 248113.8793987378, + "4339": 245368.311122671, + "4340": 242621.4559497053, + "4341": 240343.0933929779, + "4342": 238063.6794010546, + "4343": 236261.650791924, + "4344": 234458.810332318, + "4345": 233140.363973539, + "4346": 231821.3485265029, + "4347": 230991.8241896113, + "4348": 230161.9757461182, + "4349": 229824.783597814, + "4350": 229487.5135771822, + "4351": 229644.1207209826, + "4352": 229800.8965075839, + "4353": 230450.8211938582, + "4354": 231101.1603460458, + "4355": 232241.9738732835, + "4356": 233383.4460273904, + "4357": 235010.7823271993, + "4358": 236639.0187890958, + "4359": 238746.5916571014, + "4360": 240855.3026434582, + "4361": 243434.9305481029, + "4362": 246015.9300093137, + "4363": 249057.5683806467, + "4364": 252100.8063074494, + "4365": 255592.5871784776, + "4366": 259086.1892647715, + "4367": 263014.4681089256, + "4368": 266944.7826142546, + "4369": 271294.1921941247, + "4370": 275645.843820884, + "4371": 280399.3548357064, + "4372": 285155.3054084383, + "4373": 290294.2937009892, + "4374": 295435.9094083008, + "4375": 300940.2294659578, + "4376": 306447.354399684, + "4377": 312295.4188595836, + "4378": 318146.4545609702, + "4379": 324315.3194054884, + "4380": 330487.3101044642, + "4381": 336952.7652107951, + "4382": 343421.4884219308, + "4383": 350158.153108402, + "4384": 356898.2152260162, + "4385": 363879.6384180672, + "4386": 370864.5749332096, + "4387": 378063.3395537205, + "4388": 385265.7194975197, + "4389": 392653.5506695106, + "4390": 400045.0848706979, + "4391": 407592.9615053752, + "4392": 415144.6142347445, + "4393": 422822.8835644993, + "4394": 430504.9871256844, + "4395": 438283.4817300429, + "4396": 446065.8535443837, + "4397": 453914.0104070558, + "4398": 461766.0721304711, + "4399": 469653.0532576338, + "4400": 477543.9514593955, + "4401": 485438.7655831903, + "4402": 493337.4935103428, + "4403": 501209.1183972711, + "4404": 509084.6383441417, + "4405": 516902.143225671, + "4406": 524723.5090255336, + "4407": 532456.1766677329, + "4408": 540192.6558232161, + "4409": 547810.1037536645, + "4410": 555431.2987238979, + "4411": 562903.5991374481, + "4412": 570379.5673032921, + "4413": 577677.3651734634, + "4414": 584978.7370073682, + "4415": 592073.3659372504, + "4416": 599171.4609113883, + "4417": 606035.056266832, + "4418": 612901.9960420565, + "4419": 619507.6049206799, + "4420": 626116.4233696181, + "4421": 632438.1109716182, + "4422": 638762.8606016776, + "4423": 644775.81258266, + "4424": 650791.6669389488, + "4425": 656472.2873408297, + "4426": 662155.6389848544, + "4427": 667481.6433583497, + "4428": 672810.197035811, + "4429": 677760.7003869991, + "4430": 682713.5610169994, + "4431": 687269.1602308707, + "4432": 691826.9153692706, + "4433": 695969.7657849824, + "4434": 700114.5622364731, + "4435": 703828.4480720944, + "4436": 707544.0623486253, + "4437": 710814.460697441, + "4438": 714086.3630449357, + "4439": 716900.5011907477, + "4440": 719715.9129314282, + "4441": 722062.8187566525, + "4442": 724410.7627206653, + "4443": 726281.3080082869, + "4444": 728152.6518555959, + "4445": 729539.588314098, + "4446": 730927.0805756842, + "4447": 731825.068444759, + "4448": 732723.3671408746, + "4449": 733128.9962650451, + "4450": 733534.6899875908, + "4451": 733446.4932745551, + "4452": 733358.1146503707, + "4453": 732776.5738609676, + "4454": 732194.6053429047, + "4455": 731122.1491898443, + "4456": 730049.0211527668, + "4457": 728490.015715637, + "4458": 726930.0968648652, + "4459": 724890.8283592262, + "4460": 722850.4084892727, + "4461": 720339.0584578627, + "4462": 717826.3236295107, + "4463": 714852.9366534527, + "4464": 711877.9368871328, + "4465": 708454.3809445857, + "4466": 705028.9905575612, + "4467": 701168.910186253, + "4468": 697306.7809301347, + "4469": 693025.5433786274, + "4470": 688742.0505621685, + "4471": 684056.6851423698, + "4472": 679368.8669521695, + "4473": 674297.9978324417, + "4474": 669224.4880910272, + "4475": 663788.2607951228, + "4476": 658349.2154217861, + "4477": 652569.2173236927, + "4478": 646786.2347883079, + "4479": 640685.4099167663, + "4480": 634581.4460005189, + "4481": 628184.004489445, + "4482": 621783.2816888698, + "4483": 615114.6042310388, + "4484": 608442.516162917, + "4485": 601529.0538439851, + "4486": 594612.0650283596, + "4487": 587481.2349365362, + "4488": 580346.7763533647, + "4489": 573026.8533767106, + "4490": 565703.2142083385, + "4491": 558223.2194467238, + "4492": 550739.4354334309, + "4493": 543129.0216655321, + "4494": 535514.7605147491, + "4495": 527804.0951721022, + "4496": 520089.5394735467, + "4497": 512309.1855834964, + "4498": 504524.9136923008, + "4499": 496705.7092597173, + "4500": 488882.5746176543, + "4501": 481055.5109214375, + "4502": 473224.5202924996, + "4503": 465420.6195771815, + "4504": 457612.810678073, + "4505": 449863.0037232133, + "4506": 442109.3227316834, + "4507": 434444.326782234, + "4508": 426775.506206671, + "4509": 419225.7037460658, + "4510": 411672.1411383507, + "4511": 404267.4599827441, + "4512": 396859.0979730195, + "4513": 389628.8931598919, + "4514": 382395.1012867038, + "4515": 375368.0392239593, + "4516": 368337.4980261258, + "4517": 361541.443358899, + "4518": 354742.0311865491, + "4519": 348203.9368282022, + "4520": 341662.6198196852, + "4521": 335408.4205809938, + "4522": 329151.1462398718, + "4523": 323205.6564761966, + "4524": 317257.2512683242, + "4525": 311644.066948708, + "4526": 306028.1383235347, + "4527": 300769.5439082142, + "4528": 295508.3871309876, + "4529": 290625.2676248309, + "4530": 285739.7777873925, + "4531": 281251.5363163476, + "4532": 276761.1258737718, + "4533": 272685.6071096142, + "4534": 268608.129268139, + "4535": 264961.5490037255, + "4536": 261313.2272623243, + "4537": 258110.1084152889, + "4538": 254905.4725389536, + "4539": 252158.5878364068, + "4540": 249410.4165138242, + "4541": 247130.7380842565, + "4542": 244850.0084961833, + "4543": 243046.6645675075, + "4544": 241242.5090648747, + "4545": 239922.7479395015, + "4546": 238602.4180022177, + "4547": 237771.5794513392, + "4548": 236940.4170700343, + "4549": 236601.9112600075, + "4550": 236263.3278536567, + "4551": 236418.6218876562, + "4552": 236574.0848402892, + "4553": 237222.6969683422, + "4554": 237871.7238379701, + "4555": 239011.2253582245, + "4556": 240151.3857808389, + "4557": 241777.4106245611, + "4558": 243404.3359056915, + "4559": 245510.5978681663, + "4560": 247617.9982241427, + "4561": 250196.3157734724, + "4562": 252776.0051543486, + "4563": 255816.3337202425, + "4564": 258858.2621164168, + "4565": 262348.7337315427, + "4566": 265841.0268365752, + "4567": 269767.9969740246, + "4568": 273697.003047121, + "4569": 278045.1044691458, + "4570": 282395.4482123628, + "4571": 287147.6516178615, + "4572": 291902.2948554038, + "4573": 297039.976086815, + "4574": 302180.2850069525, + "4575": 307683.2985513168, + "4576": 313189.1172455476, + "4577": 319035.875739665, + "4578": 324885.6057488988, + "4579": 331053.1651748093, + "4580": 337223.8507286388, + "4581": 343688.0009632008, + "4582": 350155.4195758615, + "4583": 356890.7799370675, + "4584": 363629.5380025431, + "4585": 370609.6574154978, + "4586": 377593.2904245035, + "4587": 384790.7518117531, + "4588": 391991.8287950833, + "4589": 399378.3572793141, + "4590": 406768.5890653668, + "4591": 414315.1635574516, + "4592": 421865.5144166874, + "4593": 429542.4821486846, + "4594": 437223.2843844051, + "4595": 445000.4779355083, + "4596": 452781.5489687207, + "4597": 460628.4053223082, + "4598": 468479.1668085998, + "4599": 476364.8479705169, + "4600": 484254.4464788285, + "4601": 492147.9611808856, + "4602": 500045.3899579303, + "4603": 507915.7159662984, + "4604": 515789.9373060732, + "4605": 523606.1438518895, + "4606": 531426.2115873388, + "4607": 539157.5814363427, + "4608": 546892.7630697654, + "4609": 554508.9137492065, + "4610": 562128.8117394031, + "4611": 569599.8154438052, + "4612": 577074.4871713078, + "4613": 584370.9888738618, + "4614": 591671.064810792, + "4615": 598764.3981142603, + "4616": 605861.197732463, + "4617": 612723.4980023684, + "4618": 619589.1429623695, + "4619": 626193.457296003, + "4620": 632800.9814701033, + "4621": 639121.3750673352, + "4622": 645444.8309626152, + "4623": 651456.4894787255, + "4624": 657471.0506399678, + "4625": 663150.3781165465, + "4626": 668832.437104932, + "4627": 674157.1490923696, + "4628": 679484.4106532742, + "4629": 684433.6221573246, + "4630": 689385.1912095256, + "4631": 693939.4991148547, + "4632": 698495.9632138886, + "4633": 702637.5228593296, + "4634": 706781.028809564, + "4635": 710493.6244128624, + "4636": 714207.9487259231, + "4637": 717477.0573800409, + "4638": 720747.670301529, + "4639": 723560.5192899448, + "4640": 726374.6421417594, + "4641": 728720.2593465673, + "4642": 731066.914958533, + "4643": 732936.1721623964, + "4644": 734806.2281941555, + "4645": 736191.8771052357, + "4646": 737578.0820874483, + "4647": 738474.7829451171, + "4648": 739371.7948977138, + "4649": 739776.1375461733, + "4650": 740180.5450607353, + "4651": 740091.0624073631, + "4652": 740001.3981104102, + "4653": 739418.5719157257, + "4654": 738835.31825979, + "4655": 737761.5772361843, + "4656": 736687.1645958099, + "4657": 735126.874822552, + "4658": 733565.6719027414, + "4659": 731525.1195950728, + "4660": 729483.4161900197, + "4661": 726970.7828903609, + "4662": 724456.7650605311, + "4663": 721482.0953496872, + "4664": 718505.8131151937, + "4665": 715080.9749710067, + "4666": 711654.302648796, + "4667": 707792.9406086768, + "4668": 703929.5299500432, + "4669": 699647.0112622373, + "4670": 695362.2375756183, + "4671": 690675.5915517178, + "4672": 685986.4930233961, + "4673": 680914.3438314479, + "4674": 675839.5542836358, + "4675": 670402.0474470771, + "4676": 664961.7227987513, + "4677": 659180.4456912553, + "4678": 653396.1844119758, + "4679": 647294.0810619687, + "4680": 641188.8389326069, + "4681": 634790.1194736907, + "4682": 628388.1189904677, + "4683": 621718.1641151044, + "4684": 615044.798894488, + "4685": 608130.0596880207, + "4686": 601211.7942497411, + "4687": 594079.6878000665, + "4688": 586943.953123769, + "4689": 579622.7543186356, + "4690": 572297.8395863534, + "4691": 564816.5695253197, + "4692": 557331.5104770212, + "4693": 549719.8219384523, + "4694": 542104.2862812568, + "4695": 534392.3466963774, + "4696": 526676.517019692, + "4697": 518894.8894155361, + "4698": 511109.3440741827, + "4699": 503288.8664553107, + "4700": 495464.4588907517, + "4701": 487636.1225357536, + "4702": 479803.8595116721, + "4703": 471998.6866647705, + "4704": 464189.6058975614, + "4705": 456438.5273380071, + "4706": 448683.5750051112, + "4707": 441017.3079775471, + "4708": 433347.2165870441, + "4709": 425796.1435745963, + "4710": 418241.3106780591, + "4711": 410835.3594965739, + "4712": 403425.7277238377, + "4713": 396194.2534104885, + "4714": 388959.1922997919, + "4715": 381930.8612621754, + "4716": 374899.0513520296, + "4717": 368101.7282349741, + "4718": 361301.047875202, + "4719": 354761.6855917633, + "4720": 348219.100920408, + "4721": 341963.6342810557, + "4722": 335705.0928013738, + "4723": 329758.3361611633, + "4724": 323808.6643387041, + "4725": 318194.2136663733, + "4726": 312577.0189502814, + "4727": 307317.1587057621, + "4728": 302054.7363609807, + "4729": 297170.351548837, + "4730": 292283.5966669034, + "4731": 287794.0904127792, + "4732": 283302.4154484643, + "4733": 279225.6324238318, + "4734": 275146.8905830702, + "4735": 271499.046580483, + "4736": 267849.4613619452, + "4737": 264645.0792987346, + "4738": 261439.18046711, + "4739": 258691.0330700843, + "4740": 255941.5993137575, + "4741": 253660.6587111051, + "4742": 251378.6672105313, + "4743": 249574.0616298634, + "4744": 247768.6447356719, + "4745": 246447.6224790981, + "4746": 245126.0316708969, + "4747": 244293.9325093085, + "4748": 243461.5097774265, + "4749": 243121.7438768802, + "4750": 242781.9006399926, + "4751": 242935.9351033629, + "4752": 243090.1387451995, + "4753": 243737.4918222137, + "4754": 244385.2599004862, + "4755": 245523.5028889934, + "4756": 246662.4050393942, + "4757": 248287.1718703617, + "4758": 249912.8393981215, + "4759": 252017.8438665356, + "4760": 254123.9869876863, + "4761": 256701.047561351, + "4762": 259279.4802256485, + "4763": 262318.5523339754, + "4764": 265359.2245315202, + "4765": 268848.4402068797, + "4766": 272339.477630935, + "4767": 276265.1923461218, + "4768": 280192.943255596, + "4769": 284539.7897725652, + "4770": 288888.8788692189, + "4771": 293639.8278865726, + "4772": 298393.2169943143, + "4773": 303529.6443541953, + "4774": 308668.6996609994, + "4775": 314170.4598501528, + "4776": 319675.0254472218, + "4777": 325520.5311021525, + "4778": 331369.008530101, + "4779": 337535.3156325542, + "4780": 343704.7491206805, + "4781": 350167.6475472201, + "4782": 356633.8146094655, + "4783": 363367.92367779, + "4784": 370105.4307078443, + "4785": 377084.2993427647, + "4786": 384066.6818310494, + "4787": 391262.8929548186, + "4788": 398462.7199318352, + "4789": 405847.9986668464, + "4790": 413236.9809607, + "4791": 420782.3062175335, + "4792": 428331.4080983925, + "4793": 436007.1271088145, + "4794": 443686.6808796881, + "4795": 451462.6262226003, + "4796": 459242.4493042044, + "4797": 467088.0579626934, + "4798": 474937.5720103238, + "4799": 482822.0059899441, + "4800": 490710.3575722504, + "4801": 498602.6256045214, + "4802": 506498.8079679265, + "4803": 514367.8878187287, + "4804": 522240.8632569393, + "4805": 530055.8241571201, + "4806": 537874.6465027904, + "4807": 545604.7712177992, + "4808": 553338.7079729388, + "4809": 560953.614029736, + "4810": 568572.2676528561, + "4811": 576042.0272456766, + "4812": 583515.4551170204, + "4813": 590810.7132187666, + "4814": 598109.5458101674, + "4815": 605201.636023313, + "4816": 612297.1928063275, + "4817": 619158.2504961076, + "4818": 626022.6531309742, + "4819": 632625.7253943922, + "4820": 639232.0077531238, + "4821": 645551.1597897628, + "4822": 651873.3743791532, + "4823": 657883.791844006, + "4824": 663897.1122085513, + "4825": 669575.1991429217, + "4826": 675256.0178435162, + "4827": 680579.4897975082, + "4828": 685905.5115792418, + "4829": 690853.483558324, + "4830": 695803.8133396883, + "4831": 700356.8822282408, + "4832": 704912.107564487, + "4833": 709052.4287010579, + "4834": 713194.6963962688, + "4835": 716906.0539983189, + "4836": 720619.1405638355, + "4837": 723887.0117240422, + "4838": 727156.3874051813, + "4839": 729967.9994067394, + "4840": 732780.8855251165, + "4841": 735125.266249836, + "4842": 737470.6856349919, + "4843": 739338.7068652529, + "4844": 741207.5271765465, + "4845": 742591.9406202275, + "4846": 743976.9103880363, + "4847": 744872.376284226, + "4848": 745768.1535281979, + "4849": 746171.2617208164, + "4850": 746574.4350322502, + "4851": 746483.718428393, + "4852": 746392.820433527, + "4853": 745808.7607934315, + "4854": 745224.2739445162, + "4855": 744149.2999802923, + "4856": 743073.6546515905, + "4857": 741512.1324422263, + "4858": 739949.6973384599, + "4859": 737907.9130989158, + "4860": 735864.9780139979, + "4861": 733351.1132864142, + "4862": 730835.8642805306, + "4863": 727859.9636454328, + "4864": 724882.4507384162, + "4865": 721456.382173366, + "4866": 718028.4796818837, + "4867": 714165.8877240135, + "4868": 710301.2473990803, + "4869": 706017.4992963563, + "4870": 701731.4964461309, + "4871": 697043.6215098664, + "4872": 692353.2943203533, + "4873": 687279.9167183171, + "4874": 682203.8990114501, + "4875": 676765.1642668011, + "4876": 671323.6119612795, + "4877": 665541.1074474131, + "4878": 659755.6190125194, + "4879": 653652.2887575848, + "4880": 647545.8199739127, + "4881": 641145.8741112348, + "4882": 634742.6474747291, + "4883": 628071.466696493, + "4884": 621396.8758233448, + "4885": 614480.9112146175, + "4886": 607561.4206242808, + "4887": 600428.089272683, + "4888": 593291.1299445269, + "4889": 585968.7067375316, + "4890": 578642.5678533145, + "4891": 571160.0738902042, + "4892": 563673.7911896188, + "4893": 556060.8792484838, + "4894": 548444.1204383746, + "4895": 540730.9579501651, + "4896": 533013.9056196645, + "4897": 525231.0556111402, + "4898": 517444.288114796, + "4899": 509622.588590243, + "4900": 501796.9593692438, + "4901": 493967.4016069783, + "4902": 486133.9174247336, + "4903": 478327.5236687049, + "4904": 470517.2222413364, + "4905": 462764.923270522, + "4906": 455008.7507751973, + "4907": 447341.2638339677, + "4908": 439669.9527784939, + "4909": 432117.6603497023, + "4910": 424561.6082853803, + "4911": 417154.4381846013, + "4912": 409743.5877409939, + "4913": 402510.8950051287, + "4914": 395274.6157202034, + "4915": 388245.0667565771, + "4916": 381212.0391685733, + "4917": 374413.4986217437, + "4918": 367611.6010802132, + "4919": 361071.0218629646, + "4920": 354527.2205056802, + "4921": 348270.5374282119, + "4922": 342010.7797581595, + "4923": 336062.8071752565, + "4924": 330111.9196577154, + "4925": 324496.2535378458, + "4926": 318877.8436216909, + "4927": 313616.7684245168, + "4928": 308353.1313744218, + "4929": 303467.5321042382, + "4930": 298579.5630114711, + "4931": 294088.8427936529, + "4932": 289595.954112716, + "4933": 285517.9576184665, + "4934": 281438.0025550258, + "4935": 277788.9455766304, + "4936": 274138.1476290881, + "4937": 270932.55308361, + "4938": 267725.4420163878, + "4939": 264976.0826303676, + "4940": 262225.4371315824, + "4941": 259943.2850329411, + "4942": 257660.0822827808, + "4943": 255854.2656988623, + "4944": 254047.6380476894, + "4945": 252725.4052803367, + "4946": 251402.6042074922, + "4947": 250569.2950273301, + "4948": 249735.6625228769, + "4949": 249394.6870956958, + "4950": 249053.6345780429, + "4951": 249206.4600064513, + "4952": 249359.4548590628, + "4953": 250005.5993925228, + "4954": 250652.1591728449, + "4955": 251789.1941089398, + "4956": 252926.8884524, + "4957": 254550.4477218323, + "4958": 256174.9079333963, + "4959": 258278.7053308878, + "4960": 260383.641626323, + "4961": 262959.4956194133, + "4962": 265536.7219482112, + "4963": 268574.5879660478, + "4964": 271614.0543180453, + "4965": 275102.0643927347, + "4966": 278591.8964609312, + "4967": 282516.4060650047, + "4968": 286442.9521080454, + "4969": 290788.5940031949, + "4970": 295136.4787225773, + "4971": 299886.2236071422, + "4972": 304638.4088265121, + "4973": 309773.6325423726, + "4974": 314911.4844494418, + "4975": 320412.0414830808, + "4976": 325915.4041687898, + "4977": 331759.70715645, + "4978": 337606.9821611518, + "4979": 343772.0870843168, + "4980": 349940.318637048, + "4981": 356402.0153720204, + "4982": 362866.9809864611, + "4983": 369599.8888506782, + "4984": 376336.1949202573, + "4985": 383313.8628382694, + "4986": 390295.0448531478, + "4987": 397490.0557469472, + "4988": 404688.6827373659, + "4989": 412072.7617290858, + "4990": 419460.5445228899, + "4991": 427004.6705228507, + "4992": 434552.5733899489, + "4993": 442227.0936296569, + "4994": 449905.4488727989, + "4995": 457680.1959308969, + "4996": 465458.8209705393, + "4997": 473303.2318298547, + "4998": 481151.5483210346, + "4999": 489034.784986863, + "5000": 496921.9394979714, + "5001": 504813.0107015739, + "5002": 512707.9964787753, + "5003": 520575.8799857744, + "5004": 528447.6593225176, + "5005": 536261.4243635023, + "5006": 544079.0510921839, + "5007": 551807.9804323465, + "5008": 559540.7220547185, + "5009": 567154.4332207619, + "5010": 574771.8921950784, + "5011": 582240.4573809808, + "5012": 589712.691087228, + "5013": 597006.7552656349, + "5014": 604304.3941753895, + "5015": 611395.290948518, + "5016": 618489.6545330808, + "5017": 625349.5192659098, + "5018": 632212.7291852627, + "5019": 638814.6089745403, + "5020": 645419.6991004408, + "5021": 651737.6591454941, + "5022": 658058.6819844805, + "5023": 664067.9079400471, + "5024": 670080.0370363602, + "5025": 675756.9329434891, + "5026": 681436.5608577683, + "5027": 686758.8422663086, + "5028": 692083.6737433895, + "5029": 697030.4556585551, + "5030": 701979.5956166751, + "5031": 706531.4749225921, + "5032": 711085.5109167483, + "5033": 715224.6429517111, + "5034": 719365.7217857321, + "5035": 723075.8907669476, + "5036": 726787.7889519216, + "5037": 730054.4719718141, + "5038": 733322.6597528042, + "5039": 736133.0840943154, + "5040": 738944.7827926845, + "5041": 741287.9763373719, + "5042": 743632.208782408, + "5043": 745499.0433123987, + "5044": 747366.6771632086, + "5045": 748749.9043861291, + "5046": 750133.688172838, + "5047": 751027.9683275251, + "5048": 751922.5600695295, + "5049": 752324.4829996516, + "5050": 752726.4712879986, + "5051": 752634.5699003999, + "5052": 752542.4873610758, + "5053": 751957.2434157429, + "5054": 751371.5725007476, + "5055": 750295.4147095395, + "5056": 749218.585792886, + "5057": 747655.8802345392, + "5058": 746092.2620206979, + "5059": 744049.2949099242, + "5060": 742005.1771925585, + "5061": 739490.1300712472, + "5062": 736973.6989102928, + "5063": 733996.6163587195, + "5064": 731017.92177376, + "5065": 727590.6717692376, + "5066": 724161.5880766904, + "5067": 720297.8151561014, + "5068": 716431.9941067328, + "5069": 712147.0655177947, + "5070": 707859.8824195142, + "5071": 703170.827473292, + "5072": 698479.3205118557, + "5073": 693404.7633758691, + "5074": 688327.5663729628, + "5075": 682887.6525701232, + "5076": 677444.9214441978, + "5077": 671661.2383476526, + "5078": 665874.5715677429, + "5079": 659770.0632053936, + "5080": 653662.4165518462, + "5081": 647261.2930567707, + "5082": 640856.889025283, + "5083": 634184.531089419, + "5084": 627508.7632959354, + "5085": 620591.622004103, + "5086": 613670.9549678307, + "5087": 606536.4474074045, + "5088": 599398.3121074663, + "5089": 592074.7131656727, + "5090": 584747.3987835804, + "5091": 577263.7295594565, + "5092": 569776.2718346573, + "5093": 562162.1851060472, + "5094": 554544.2517451401, + "5095": 546829.9149427486, + "5096": 539111.6885346206, + "5097": 531327.664684962, + "5098": 523539.7235839159, + "5099": 515716.8506910318, + "5100": 507890.048338011, + "5101": 500059.3176799729, + "5102": 492224.6608381429, + "5103": 484417.0946586552, + "5104": 476605.6210438931, + "5105": 468852.1501216896, + "5106": 461094.8059109191, + "5107": 453426.1474901261, + "5108": 445753.6651909107, + "5109": 438200.2017541381, + "5110": 430642.9789175347, + "5111": 423234.6382801135, + "5112": 415822.6175354421, + "5113": 408588.7547340305, + "5114": 401351.3056190152, + "5115": 394320.5870606955, + "5116": 387286.3901133336, + "5117": 380486.6804424203, + "5118": 373683.6140120209, + "5119": 367141.8661410569, + "5120": 360596.8963651502, + "5121": 354339.0451040923, + "5122": 348078.1194854226, + "5123": 342128.9791888142, + "5124": 336176.9241924188, + "5125": 330560.0908284862, + "5126": 324940.5139029988, + "5127": 319678.2719311628, + "5128": 314413.4683410159, + "5129": 309526.7027653303, + "5130": 304637.5676015511, + "5131": 300145.6815471501, + "5132": 295651.627264, + "5133": 291572.4654018463, + "5134": 287491.3452047508, + "5135": 283841.1233268897, + "5136": 280189.1607140111, + "5137": 276982.4017372655, + "5138": 273774.1264727852, + "5139": 271023.6031234562, + "5140": 268271.7938952515, + "5141": 265988.4783010203, + "5142": 263704.1122890399, + "5143": 261897.1326770112, + "5144": 260089.3422313783, + "5145": 258765.9469031559, + "5146": 257441.9835029726, + "5147": 256607.5122289427, + "5148": 255772.717864033, + "5149": 255430.5808097473, + "5150": 255088.3668982822, + "5151": 255240.031166111, + "5152": 255391.8650913161, + "5153": 256036.8489304832, + "5154": 256682.248249567, + "5155": 257818.1229574181, + "5156": 258954.6573055701, + "5157": 260577.0568125703, + "5158": 262200.3574945189, + "5159": 264302.9955951524, + "5160": 266406.7728264278, + "5161": 268981.4679879973, + "5162": 271557.5357178541, + "5163": 274594.2433692703, + "5164": 277632.5515873086, + "5165": 281119.4037604412, + "5166": 284608.0781594242, + "5167": 288531.4303265683, + "5168": 292456.8191649047, + "5169": 296801.3040875162, + "5170": 301148.0320664676, + "5171": 305896.6204426499, + "5172": 310647.6493856264, + "5173": 315781.7170570241, + "5174": 320918.4131515021, + "5175": 326417.8146043628, + "5176": 331920.0219410475, + "5177": 337763.1698113787, + "5178": 343609.2899303881, + "5179": 349773.2401994386, + "5180": 355940.3173295747, + "5181": 362400.8598734124, + "5182": 368864.6715281205, + "5183": 375596.4256639484, + "5184": 382331.578236423, + "5185": 389308.0928885575, + "5186": 396288.1218687259, + "5187": 403481.9799589248, + "5188": 410679.454376794, + "5189": 418062.3810269571, + "5190": 425449.0117101387, + "5191": 432991.9858303529, + "5192": 440538.7370485222, + "5193": 448212.1058700607, + "5194": 455889.3099257344, + "5195": 463662.9060270069, + "5196": 471440.3803404088, + "5197": 479283.64070401, + "5198": 487130.8069299444, + "5199": 495012.8935609376, + "5200": 502898.8982675633, + "5201": 510788.8198969771, + "5202": 518682.6563302264, + "5203": 526549.3907234515, + "5204": 534420.021176541, + "5205": 542232.6375639348, + "5206": 550049.1158690299, + "5207": 557776.8970155526, + "5208": 565508.4906741737, + "5209": 573121.0541062974, + "5210": 580737.3655764672, + "5211": 588204.7834879387, + "5212": 595675.8701494128, + "5213": 602968.7875126468, + "5214": 610265.279836771, + "5215": 617355.0302537541, + "5216": 624448.2477115985, + "5217": 631306.9665470793, + "5218": 638169.030798396, + "5219": 644769.765148892, + "5220": 651373.7100652081, + "5221": 657690.5251298168, + "5222": 664010.4032174409, + "5223": 670018.4846506704, + "5224": 676029.4694536139, + "5225": 681705.2212962832, + "5226": 687383.7053749561, + "5227": 692704.8431766856, + "5228": 698028.5312756941, + "5229": 702974.1700414685, + "5230": 707922.1670788212, + "5231": 712472.9036925379, + "5232": 717025.7972230033, + "5233": 721163.787022728, + "5234": 725303.7238499067, + "5235": 729012.7510526183, + "5236": 732723.5076873695, + "5237": 735989.0493852641, + "5238": 739256.0960724234, + "5239": 742065.3795482148, + "5240": 744875.9376089172, + "5241": 747217.990743935, + "5242": 749561.0830072415, + "5243": 751426.7775833858, + "5244": 753293.2717081753, + "5245": 754675.3594328453, + "5246": 756058.0039490162, + "5247": 756951.1450608216, + "5248": 757844.5979875436, + "5249": 758245.3823299261, + "5250": 758646.2322580197, + "5251": 758553.1927375972, + "5252": 758459.9722928222, + "5253": 757873.5906693549, + "5254": 757286.7823034851, + "5255": 756209.4872886058, + "5256": 755131.521375428, + "5257": 753567.679047648, + "5258": 752002.9242914072, + "5259": 749958.8208652119, + "5260": 747913.5670593461, + "5261": 745397.3840763997, + "5262": 742879.8172806191, + "5263": 739901.5993209721, + "5264": 736921.7695546352, + "5265": 733493.3845953756, + "5266": 730063.1661746753, + "5267": 726198.2587524608, + "5268": 722331.3034279386, + "5269": 718045.2407902622, + "5270": 713756.9238696031, + "5271": 709066.7353273056, + "5272": 704374.0949960415, + "5273": 699298.4047164187, + "5274": 694220.0747960116, + "5275": 688779.0283017508, + "5276": 683335.1647104278, + "5277": 677550.3493744527, + "5278": 671762.5505810253, + "5279": 665656.9104310144, + "5280": 659548.1322156056, + "5281": 653145.877384413, + "5282": 646740.3422424974, + "5283": 640066.8534218384, + "5284": 633389.9549691373, + "5285": 626471.6832436093, + "5286": 619549.8859991072, + "5287": 612414.2484558618, + "5288": 605274.9833984594, + "5289": 597950.2549245008, + "5290": 590621.8112354877, + "5291": 583137.0129296312, + "5292": 575648.4263482323, + "5293": 568033.2109880998, + "5294": 560414.1492206925, + "5295": 552698.6842367672, + "5296": 544979.3298720168, + "5297": 537194.178290592, + "5298": 529405.1096825801, + "5299": 521581.1095074756, + "5300": 513753.1800969247, + "5301": 505921.3226059909, + "5302": 498085.5391558451, + "5303": 490276.8465925662, + "5304": 482464.2468184822, + "5305": 474709.649961371, + "5306": 466951.1800400518, + "5307": 459281.3961330142, + "5308": 451607.7885718032, + "5309": 444053.200097229, + "5310": 436494.852446963, + "5311": 429085.3872199633, + "5312": 421672.2421097424, + "5313": 414437.2551667555, + "5314": 407198.6821340843, + "5315": 400166.8398819729, + "5316": 393131.5194646292, + "5317": 386330.686547489, + "5318": 379526.4970945624, + "5319": 372983.6264247165, + "5320": 366437.5340735185, + "5321": 360178.5604607053, + "5322": 353916.5127137613, + "5323": 347966.2505123051, + "5324": 342013.073834434, + "5325": 336395.1190123428, + "5326": 330774.4208519596, + "5327": 325511.057868436, + "5328": 320245.1334897551, + "5329": 315357.2473486348, + "5330": 310466.9918424655, + "5331": 305973.9856686647, + "5332": 301478.8114890506, + "5333": 297398.5299533145, + "5334": 293316.2903054637, + "5335": 289664.9491996199, + "5336": 286011.867581477, + "5337": 282803.9898221316, + "5338": 279594.5959976611, + "5339": 276842.9543108977, + "5340": 274090.02696776, + "5341": 271805.5934810432, + "5342": 269520.1097989702, + "5343": 267712.0127391879, + "5344": 265903.1050680862, + "5345": 264578.592736626, + "5346": 263253.5125553816, + "5347": 262417.9247224132, + "5348": 261582.014020634, + "5349": 261238.7608514933, + "5350": 260895.431047134, + "5351": 261045.9796439755, + "5352": 261196.6981200462, + "5353": 261840.5667318781, + "5354": 262484.8510453718, + "5355": 263619.6109693245, + "5356": 264755.0307552153, + "5357": 266376.3159215384, + "5358": 267998.5024843398, + "5359": 270100.0266873027, + "5360": 272202.6902423298, + "5361": 274776.2719490203, + "5362": 277351.2264453132, + "5363": 280386.8210844273, + "5364": 283424.0165113716, + "5365": 286909.7561145648, + "5366": 290397.3181647092, + "5367": 294319.5582040622, + "5368": 298243.8351356016, + "5369": 302587.2083723564, + "5370": 306932.8248863382, + "5371": 311680.3020183846, + "5372": 316430.2199380053, + "5373": 321563.1768067742, + "5374": 326698.7623192968, + "5375": 332197.0534108221, + "5376": 337698.1506067385, + "5377": 343540.1885568148, + "5378": 349385.1989760298, + "5379": 355548.039765693, + "5380": 361714.0076367955, + "5381": 368173.4411419005, + "5382": 374636.1439781235, + "5383": 381366.7895156607, + "5384": 388100.8337099861, + "5385": 395076.2402040593, + "5386": 402055.1612462018, + "5387": 409247.9116183571, + "5388": 416444.2785381119, + "5389": 423826.0979100366, + "5390": 431211.6215348033, + "5391": 438753.4888163728, + "5392": 446299.1334156148, + "5393": 453971.3958378907, + "5394": 461647.4937139133, + "5395": 469419.9838550937, + "5396": 477196.3524279094, + "5397": 485038.5072703777, + "5398": 492884.5681945797, + "5399": 500765.5497431883, + "5400": 508650.4495867243, + "5401": 516539.2665722911, + "5402": 524431.9985808828, + "5403": 532297.6287685874, + "5404": 540167.1552352408, + "5405": 547978.6678552304, + "5406": 555794.0426119006, + "5407": 563520.7204289252, + "5408": 571251.2109769222, + "5409": 578862.6715172437, + "5410": 586477.8803143805, + "5411": 593944.1957715359, + "5412": 601414.180197358, + "5413": 608705.9955435522, + "5414": 616001.3860691963, + "5415": 623090.0349062065, + "5416": 630182.1510025329, + "5417": 637039.7686948986, + "5418": 643900.7320214502, + "5419": 650500.3656654793, + "5420": 657103.2100935745, + "5421": 663418.924888156, + "5422": 669737.7029238943, + "5423": 675744.6845233273, + "5424": 681754.5697105114, + "5425": 687429.2221554065, + "5426": 693106.607054238, + "5427": 698426.6458940071, + "5428": 703749.2352488842, + "5429": 708693.7754883039, + "5430": 713640.674217027, + "5431": 718190.3127397868, + "5432": 722742.1083969165, + "5433": 726879.0005408742, + "5434": 731017.8399298029, + "5435": 734725.76991173, + "5436": 738435.4295431101, + "5437": 741699.874454995, + "5438": 744965.8245734546, + "5439": 747774.0116978042, + "5440": 750583.473624271, + "5441": 752924.4308422075, + "5442": 755266.4274055355, + "5443": 757131.0264987525, + "5444": 758996.4253576137, + "5445": 760377.4180333036, + "5446": 761758.9677173903, + "5447": 762651.0142139562, + "5448": 763543.3727422315, + "5449": 763943.062902909, + "5450": 764342.8188659869, + "5451": 764248.6855971874, + "5452": 764154.3716206226, + "5453": 763566.8966819005, + "5454": 762978.9952172603, + "5455": 761900.6073200427, + "5456": 760821.5487409083, + "5457": 759256.6139635011, + "5458": 757690.7669739121, + "5459": 755645.5715305953, + "5460": 753599.225923784, + "5461": 751081.9513560168, + "5462": 748563.2931914886, + "5463": 745583.9840791165, + "5464": 742603.0633760248, + "5465": 739173.5876959305, + "5466": 735742.278770264, + "5467": 731876.2810589008, + "5468": 728008.2356609961, + "5469": 723721.0831656524, + "5470": 719431.6766029903, + "5471": 714740.3986343025, + "5472": 710046.6690922107, + "5473": 704969.8898172708, + "5474": 699890.4711170071, + "5475": 694448.3360582984, + "5476": 689003.3841178861, + "5477": 683217.4806481289, + "5478": 677428.5939361757, + "5479": 671321.8660828444, + "5480": 665212.0003792703, + "5481": 658808.6582750161, + "5482": 652402.0360750918, + "5483": 645727.4604114265, + "5484": 639049.4753306705, + "5485": 632130.1171919884, + "5486": 625207.2337491825, + "5487": 618070.5102224326, + "5488": 610930.1593962744, + "5489": 603604.3453682581, + "5490": 596274.8163398348, + "5491": 588788.9329091648, + "5492": 581299.2614174989, + "5493": 573682.9613615952, + "5494": 566062.8151128618, + "5495": 558346.2658620053, + "5496": 550625.8274446678, + "5497": 542839.5920249495, + "5498": 535049.4397928877, + "5499": 527224.3562079259, + "5500": 519395.3436016601, + "5501": 511562.4031291041, + "5502": 503725.5369113773, + "5503": 495915.7617945091, + "5504": 488102.0796807767, + "5505": 480346.400697908, + "5506": 472586.8488646719, + "5507": 464915.9832595079, + "5508": 457241.2942139103, + "5509": 449685.6244686394, + "5510": 442126.1957613167, + "5511": 434715.6496908494, + "5512": 427301.4239507006, + "5513": 420065.3565912751, + "5514": 412825.7033556045, + "5515": 405792.781113883, + "5516": 398756.380920268, + "5517": 391954.4684401455, + "5518": 385149.1996374759, + "5519": 378605.2498310761, + "5520": 372058.0785564632, + "5521": 365798.0262333241, + "5522": 359534.8999890938, + "5523": 353583.5595033405, + "5524": 347629.3047541117, + "5525": 342010.2720735525, + "5526": 336388.496267541, + "5527": 331124.0558511792, + "5528": 325857.0542524002, + "5529": 320968.0911038723, + "5530": 316076.758802936, + "5531": 311582.6760469592, + "5532": 307086.4254977104, + "5533": 303005.0678048311, + "5534": 298921.752212279, + "5535": 295269.3353741262, + "5536": 291615.1782360171, + "5537": 288406.2251689982, + "5538": 285195.756249098, + "5539": 282443.0396790986, + "5540": 279689.0376648695, + "5541": 277403.529719156, + "5542": 275116.9717901316, + "5543": 273307.8006953941, + "5544": 271497.8192012836, + "5545": 270172.2332587116, + "5546": 268846.079678203, + "5547": 268009.4186577688, + "5548": 267172.4349802724, + "5549": 266828.1090471143, + "5550": 266483.7066903876, + "5551": 266633.1829464628, + "5552": 266782.8292933189, + "5553": 267425.6259874385, + "5554": 268068.838594673, + "5555": 269202.5270237705, + "5556": 270336.8755261608, + "5557": 271957.0896202889, + "5558": 273578.2053221518, + "5559": 275678.6588753834, + "5560": 277780.2519918376, + "5561": 280352.7634710641, + "5562": 282926.647950953, + "5563": 285961.1727846741, + "5564": 288997.2986171872, + "5565": 292481.9688368624, + "5566": 295968.4617143525, + "5567": 299889.6327918663, + "5568": 303812.8409723323, + "5569": 308155.145668731, + "5570": 312499.6938530249, + "5571": 317246.1028660026, + "5572": 321994.9528771252, + "5573": 327126.8420479174, + "5574": 332261.3600729362, + "5575": 337758.5838873818, + "5576": 343258.6140165936, + "5577": 349099.5851102917, + "5578": 354943.5288834063, + "5579": 361105.3032371979, + "5580": 367270.2048826093, + "5581": 373728.5723721547, + "5582": 380190.2094029011, + "5583": 386919.7893449959, + "5584": 393652.7681538648, + "5585": 400627.1094724186, + "5586": 407604.9655489301, + "5587": 414796.6511652945, + "5588": 421991.9535390497, + "5589": 429372.708574718, + "5590": 436757.1680729224, + "5591": 444297.9714375757, + "5592": 451842.552329499, + "5593": 459513.7512540053, + "5594": 467188.7858417588, + "5595": 474960.2129041225, + "5596": 482735.5186075254, + "5597": 490576.6107899365, + "5598": 498421.6092633884, + "5599": 506301.5285705059, + "5600": 514185.3663817614, + "5601": 522073.1215442099, + "5602": 529964.7919387973, + "5603": 537829.3607215639, + "5604": 545697.8259922966, + "5605": 553508.2776253351, + "5606": 561322.5916039753, + "5607": 569048.2088518431, + "5608": 576777.6390395083, + "5609": 584388.039428275, + "5610": 592002.1882825857, + "5611": 599467.4440055956, + "5612": 606936.3689059053, + "5613": 614227.1249351712, + "5614": 621521.4563524241, + "5615": 628609.0462895314, + "5616": 635700.103694396, + "5617": 642556.6629036919, + "5618": 649416.567955519, + "5619": 656015.1435331203, + "5620": 662616.9301030368, + "5621": 668931.5872476405, + "5622": 675249.3078415544, + "5623": 681255.2322072682, + "5624": 687264.0603687909, + "5625": 692937.6559960345, + "5626": 698613.9842851764, + "5627": 703932.9667231701, + "5628": 709254.4998841385, + "5629": 714197.9841374683, + "5630": 719143.8270878724, + "5631": 723692.410040037, + "5632": 728243.1503342469, + "5633": 732378.9873229131, + "5634": 736516.7717641311, + "5635": 740223.6470058804, + "5636": 743932.2521045677, + "5637": 747195.6426911979, + "5638": 750460.538691793, + "5639": 753267.6719056208, + "5640": 756076.0801288611, + "5641": 758415.9838508188, + "5642": 760756.9271253685, + "5643": 762620.4731369597, + "5644": 764484.8191213012, + "5645": 765864.759129529, + "5646": 767245.2563531642, + "5647": 768136.250596242, + "5648": 769027.5570779447, + "5649": 769426.1953989189, + "5650": 769824.8997291146, + "5651": 769729.7150342069, + "5652": 769634.3498382603, + "5653": 769045.8238868363, + "5654": 768456.871616126, + "5655": 767377.433119424, + "5656": 766297.3241473426, + "5657": 764731.3391834793, + "5658": 763164.4422138773, + "5659": 761118.1969969444, + "5660": 759070.8018228661, + "5661": 756552.4778941341, + "5662": 754032.7705748961, + "5663": 751052.4125140222, + "5664": 748070.4430685901, + "5665": 744639.9188522691, + "5666": 741207.5615964428, + "5667": 737340.5157609398, + "5668": 733471.4224448685, + "5669": 729183.2222372845, + "5670": 724892.7681682608, + "5671": 720200.4428990443, + "5672": 715505.6662622083, + "5673": 710427.8400982635, + "5674": 705347.374714686, + "5675": 699904.1931783088, + "5676": 694458.1949658255, + "5677": 688671.245429549, + "5678": 682881.3128565806, + "5679": 676773.539347692, + "5680": 670662.6281939712, + "5681": 664258.2408449349, + "5682": 657850.573605546, + "5683": 651174.9531076869, + "5684": 644495.9233979613, + "5685": 637575.5208354872, + "5686": 630651.5931740199, + "5687": 623513.8256336933, + "5688": 616372.4309989959, + "5689": 609045.5733674316, + "5690": 601715.0009404049, + "5691": 594228.0743160297, + "5692": 586737.3598355101, + "5693": 579120.0169955576, + "5694": 571498.8281675342, + "5695": 563781.2365420996, + "5696": 556059.7559548499, + "5697": 548272.4785698386, + "5698": 540481.2845770563, + "5699": 532655.159435901, + "5700": 524825.1054779215, + "5701": 516991.1238580854, + "5702": 509153.2166974664, + "5703": 501342.4008420468, + "5704": 493527.6781940579, + "5705": 485770.9588811814, + "5706": 478010.3669221397, + "5707": 470338.461395326, + "5708": 462662.7326321888, + "5709": 455106.0233734418, + "5710": 447545.5553566605, + "5711": 440133.9701807059, + "5712": 432718.705538995, + "5713": 425481.5994818863, + "5714": 418240.9077523655, + "5715": 411206.9472205805, + "5716": 404169.5089406429, + "5717": 397366.5585778925, + "5718": 390560.2520962436, + "5719": 384015.2648144671, + "5720": 377467.0562680342, + "5721": 371205.9668765857, + "5722": 364941.8037675107, + "5723": 358989.4266203314, + "5724": 353034.1354130495, + "5725": 347414.066477764, + "5726": 341791.2546203075, + "5727": 336525.7783557356, + "5728": 331257.7411119359, + "5729": 326367.7425215306, + "5730": 321475.3749818146, + "5731": 316980.2571901099, + "5732": 312482.9718081393, + "5733": 308400.5794854984, + "5734": 304316.2294660992, + "5735": 300662.7784039683, + "5736": 297007.5872447038, + "5737": 293797.6003593072, + "5738": 290586.0978237609, + "5739": 287832.3478408015, + "5740": 285077.3126162527, + "5741": 282790.7716628144, + "5742": 280503.1809286144, + "5743": 278692.9772312048, + "5744": 276881.9633368801, + "5745": 275555.3451965066, + "5746": 274228.1596205632, + "5747": 273390.4668070157, + "5748": 272552.451538682, + "5749": 272207.094216917, + "5750": 271861.6606737683, + "5751": 272010.1059455611, + "5752": 272158.7215102289, + "5753": 272800.4876242089, + "5754": 273442.6698533069, + "5755": 274575.3281062259, + "5756": 275708.6466343504, + "5757": 277327.8309560798, + "5758": 278947.9170873658, + "5759": 281047.3412717972, + "5760": 283147.9052211823, + "5761": 285719.3877350258, + "5762": 288292.2434511726, + "5763": 291325.739722747, + "5764": 294360.8371946638, + "5765": 297844.4792552476, + "5766": 301329.9441751065, + "5767": 305250.0874964037, + "5768": 309172.2681220229, + "5769": 313513.545464899, + "5770": 317857.0664969498, + "5771": 322602.4485589187, + "5772": 327350.2718202216, + "5773": 332481.1344423383, + "5774": 337614.6261197806, + "5775": 343110.8237877037, + "5776": 348609.8279714021, + "5777": 354449.773320551, + "5778": 360292.6915500352, + "5779": 366453.4405610707, + "5780": 372617.3170645551, + "5781": 379074.6596129577, + "5782": 385535.2719033008, + "5783": 392263.8273056867, + "5784": 398995.7817754961, + "5785": 405969.0989555952, + "5786": 412945.9310942119, + "5787": 420136.5929731965, + "5788": 427330.8718100422, + "5789": 434710.6035092265, + "5790": 442094.0398713275, + "5791": 449633.8203002135, + "5792": 457177.3784566605, + "5793": 464847.5548459371, + "5794": 472521.5670986629, + "5795": 480291.9720261555, + "5796": 488066.2557948002, + "5797": 495906.3262425205, + "5798": 503750.3031813051, + "5799": 511629.2011537334, + "5800": 519512.0178302339, + "5801": 527398.7520578167, + "5802": 535289.4017173834, + "5803": 543152.9499649291, + "5804": 551020.3949001968, + "5805": 558829.8263974814, + "5806": 566643.1204400345, + "5807": 574367.7179514375, + "5808": 582096.1286022154, + "5809": 589705.5096536281, + "5810": 597318.6393700737, + "5811": 604782.8761546629, + "5812": 612250.7823159519, + "5813": 619540.519805553, + "5814": 626833.8328824519, + "5815": 633920.4046784726, + "5816": 641010.4441414728, + "5817": 647865.985608083, + "5818": 654724.8731163582, + "5819": 661322.4313494972, + "5820": 667923.200773997, + "5821": 674236.840972185, + "5822": 680553.5448186405, + "5823": 686558.4526358084, + "5824": 692566.2644476538, + "5825": 698238.8439240443, + "5826": 703914.1562611136, + "5827": 709232.1229457709, + "5828": 714552.6405520942, + "5829": 719495.109449427, + "5830": 724439.937242438, + "5831": 728987.5052357689, + "5832": 733537.2307696604, + "5833": 737672.0531964803, + "5834": 741808.8232742792, + "5835": 745514.6843509924, + "5836": 749222.2754829838, + "5837": 752484.6523012131, + "5838": 755748.534731659, + "5839": 758554.654573545, + "5840": 761362.0496230073, + "5841": 763700.9403693064, + "5842": 766040.8708662736, + "5843": 767903.4042983135, + "5844": 769766.7379010929, + "5845": 771145.6657257017, + "5846": 772525.1509636189, + "5847": 773415.133418835, + "5848": 774305.4283104889, + "5849": 774703.0552391827, + "5850": 775100.7483748234, + "5851": 775004.5526830422, + "5852": 774908.1766878598, + "5853": 774318.6401347939, + "5854": 773728.6774599921, + "5855": 772648.2287567048, + "5856": 771567.1097755011, + "5857": 770000.1149999347, + "5858": 768432.2084160052, + "5859": 766384.9537820766, + "5860": 764336.5493882912, + "5861": 761817.2164370966, + "5862": 759296.5002925972, + "5863": 756315.1336036195, + "5864": 753332.1557271978, + "5865": 749900.6232769574, + "5866": 746467.2579842387, + "5867": 742599.2043088271, + "5868": 738729.1033497868, + "5869": 734439.8956961303, + "5870": 730148.4343778879, + "5871": 725455.1020562616, + "5872": 720759.3185637826, + "5873": 715680.4857409172, + "5874": 710599.0138950987, + "5875": 705154.8260931165, + "5876": 699707.8218116211, + "5877": 693919.8664028818, + "5878": 688128.9281539568, + "5879": 682020.149165574, + "5880": 675908.2327287789, + "5881": 669502.8402930441, + "5882": 663094.1681632897, + "5883": 656417.5429713548, + "5884": 649737.5087637998, + "5885": 642816.1018996998, + "5886": 635891.1701327662, + "5887": 628752.3986830906, + "5888": 621610.0003351176, + "5889": 614282.1391863085, + "5890": 606950.5634380243, + "5891": 599462.6336883355, + "5892": 591970.916278404, + "5893": 584352.5707048975, + "5894": 576730.379339135, + "5895": 569011.7853717337, + "5896": 561289.3026382456, + "5897": 553501.0233026823, + "5898": 545708.8275549909, + "5899": 537881.7008545261, + "5900": 530050.6455327943, + "5901": 522215.6627447199, + "5902": 514376.7546113334, + "5903": 506564.9379785745, + "5904": 498749.2147486317, + "5905": 490991.4950491431, + "5906": 483229.902898789, + "5907": 475556.9973759194, + "5908": 467880.2688119399, + "5909": 460322.5599475214, + "5910": 452761.0925201966, + "5911": 445348.5081287838, + "5912": 437932.2444666571, + "5913": 430694.1395841321, + "5914": 423452.449224152, + "5915": 416417.4902568217, + "5916": 409379.0537362102, + "5917": 402575.1053276147, + "5918": 395767.8009949066, + "5919": 389221.8160568142, + "5920": 382672.610048766, + "5921": 376410.5233903603, + "5922": 370145.3632089432, + "5923": 364191.9891839947, + "5924": 358235.7012934737, + "5925": 352614.6358694366, + "5926": 346990.8277176732, + "5927": 341724.3553531971, + "5928": 336455.3222038527, + "5929": 331564.3279022203, + "5930": 326670.9648455518, + "5931": 322174.851731127, + "5932": 317676.5712206259, + "5933": 313593.183963602, + "5934": 309507.8392039246, + "5935": 305853.3935955778, + "5936": 302197.2080841177, + "5937": 298986.2270405028, + "5938": 295773.7305406735, + "5939": 293018.986787324, + "5940": 290262.9579862354, + "5941": 287975.4236500654, + "5942": 285686.8397268996, + "5943": 283875.6430342475, + "5944": 282063.6363383616, + "5945": 280736.0255900656, + "5946": 279407.8475997964, + "5947": 278569.1625654773, + "5948": 277730.1552698841, + "5949": 277383.8061143295, + "5950": 277037.3809308188, + "5951": 277184.8347556351, + "5952": 277332.4590666693, + "5953": 277973.2341203171, + "5954": 278614.4254823417, + "5955": 279746.0930614042, + "5956": 280878.4211088467, + "5957": 282496.6151430267, + "5958": 284115.7111798538, + "5959": 286214.1454628746, + "5960": 288313.7197038555, + "5961": 290884.2127022589, + "5962": 293456.0790958878, + "5963": 296488.5862378246, + "5964": 299522.694772942, + "5965": 303005.3480895226, + "5966": 306489.8244581324, + "5967": 310408.9794208928, + "5968": 314330.1718806456, + "5969": 318670.4612502836, + "5970": 323012.9945016829, + "5971": 327757.3889755447, + "5972": 332504.2248412431, + "5973": 337634.1002602163, + "5974": 342766.6049269339, + "5975": 348261.8157765094, + "5976": 353759.8333341954, + "5977": 359598.7922496254, + "5978": 365440.7242376424, + "5979": 371600.4871994206, + "5980": 377763.3778458157, + "5981": 384219.7347292554, + "5982": 390679.36154672, + "5983": 397406.9316682704, + "5984": 404137.9010492455, + "5985": 411110.2333324696, + "5986": 418086.0807661293, + "5987": 425275.7581320327, + "5988": 432469.0526476319, + "5989": 439847.8002173623, + "5990": 447230.2526417608, + "5991": 454769.0493246537, + "5992": 462311.6239267757, + "5993": 469980.8169533535, + "5994": 477653.8460349653, + "5995": 485423.2679828875, + "5996": 493196.5689634631, + "5997": 501035.6568145749, + "5998": 508878.6513481693, + "5999": 516756.5671067851, + "6000": 524638.4017608084, + "6001": 532524.1541572084, + "6002": 540413.8221768448, + "6003": 548276.388975672, + "6004": 556142.8526533908, + "6005": 563951.3030842554, + "6006": 571763.6162514753, + "6007": 579487.2330785908, + "6008": 587214.6632360858, + "6009": 594823.0639851786, + "6010": 602435.2135902259, + "6011": 609898.4704542975, + "6012": 617365.3968859075, + "6013": 624654.1548366275, + "6014": 631946.4885654021, + "6015": 639032.0812040132, + "6016": 646121.1417002782, + "6017": 652975.7043907854, + "6018": 659833.6133135497, + "6019": 666430.1931517278, + "6020": 673029.9843717759, + "6021": 679342.6465559801, + "6022": 685658.3725788784, + "6023": 691662.3027628749, + "6024": 697669.1371318932, + "6025": 703340.73935576, + "6026": 709015.0746305677, + "6027": 714332.0644431844, + "6028": 719651.6053676476, + "6029": 724593.097773259, + "6030": 729536.9492646465, + "6031": 734083.5411464105, + "6032": 738632.2907587518, + "6033": 742766.1374539959, + "6034": 746901.9319901527, + "6035": 750606.8177151168, + "6036": 754313.4336852108, + "6037": 757574.8355313536, + "6038": 760837.743179483, + "6039": 763642.8884287816, + "6040": 766449.3090753446, + "6041": 768787.225608392, + "6042": 771126.1820817132, + "6043": 772987.7416796735, + "6044": 774850.1016378968, + "6045": 776228.056007434, + "6046": 777606.5679797224, + "6047": 778495.5773587116, + "6048": 779384.8993635005, + "6049": 779781.5535946491, + "6050": 780178.2742220251, + "6051": 780081.1062112177, + "6052": 779983.7580862073, + "6053": 779393.2495924712, + "6054": 778802.3151661159, + "6055": 777720.8949003511, + "6056": 776638.8045457053, + "6057": 775070.8385856914, + "6058": 773501.9610062687, + "6059": 771453.7355657602, + "6060": 769404.3605542677, + "6061": 766884.0571741979, + "6062": 764362.3707896151, + "6063": 761380.0340493047, + "6064": 758396.0863102607, + "6065": 754963.5841860677, + "6066": 751529.2494080259, + "6067": 747660.2264358795, + "6068": 743789.1563686526, + "6069": 739498.9797953174, + "6070": 735206.5497458632, + "6071": 730512.2488814518, + "6072": 725815.497034574, + "6073": 720735.6960456554, + "6074": 715653.2562220891, + "6075": 710208.1006306239, + "6076": 704760.1287478697, + "6077": 698971.2059260558, + "6078": 693179.3004521995, + "6079": 687069.5544269891, + "6080": 680956.671141429, + "6081": 674550.3120449516, + "6082": 668140.673442437, + "6083": 661463.0819656837, + "6084": 654782.0816612119, + "6085": 647859.7088880561, + "6086": 640933.8113998881, + "6087": 633794.0744167583, + "6088": 626650.7107230718, + "6089": 619321.8844162495, + "6090": 611989.3436976116, + "6091": 604500.4491651894, + "6092": 597007.7671601037, + "6093": 589388.4571789824, + "6094": 581765.3015931044, + "6095": 574045.7435930462, + "6096": 566322.2970143206, + "6097": 558533.0540208981, + "6098": 550739.8948026863, + "6099": 542911.8048189996, + "6100": 535079.7864013042, + "6101": 527243.8407044845, + "6102": 519403.969849531, + "6103": 511591.1906823431, + "6104": 503774.5051050695, + "6105": 496015.8232453083, + "6106": 488253.2691216997, + "6107": 480579.4018125535, + "6108": 472901.7116492356, + "6109": 465343.0413723769, + "6110": 457780.6127194699, + "6111": 450367.0672892932, + "6112": 442949.8427751808, + "6113": 435710.7772274084, + "6114": 428468.1263888794, + "6115": 421432.2071296587, + "6116": 414392.8105037755, + "6117": 407587.9021764869, + "6118": 400779.6381116247, + "6119": 394232.6936278773, + "6120": 387682.5282606333, + "6121": 381419.4824294513, + "6122": 375153.3632616375, + "6123": 369199.0304366319, + "6124": 363241.7839323539, + "6125": 357619.7600808202, + "6126": 351994.9936877807, + "6127": 346727.5632682092, + "6128": 341457.5722499106, + "6129": 336565.6202654252, + "6130": 331671.2997119653, + "6131": 327174.2292867711, + "6132": 322674.9916514828, + "6133": 318590.6474556144, + "6134": 314504.3459429954, + "6135": 310848.9437675704, + "6136": 307191.8018748556, + "6137": 303979.8646357703, + "6138": 300766.4121262149, + "6139": 298010.7125488442, + "6140": 295253.7281094, + "6141": 292965.2383204999, + "6142": 290675.6991301903, + "6143": 288863.5473559411, + "6144": 287050.5857639653, + "6145": 285722.0203050471, + "6146": 284392.8877895838, + "6147": 283553.2484154594, + "6148": 282713.2869654099, + "6149": 282365.9838407089, + "6150": 282018.6048733221, + "6151": 282165.1050994931, + "6152": 282311.7759970737, + "6153": 282951.5978224198, + "6154": 283591.8361412555, + "6155": 284722.5508622023, + "6156": 285853.9262365631, + "6157": 287471.167782656, + "6158": 289089.3115163512, + "6159": 291186.7936811559, + "6160": 293285.4159887975, + "6161": 295854.9572386989, + "6162": 298425.8720686237, + "6163": 301457.4278316151, + "6164": 304490.5851725066, + "6165": 307972.2874795416, + "6166": 311455.8130232467, + "6167": 315374.0173457042, + "6168": 319294.2593497166, + "6169": 323633.5984481376, + "6170": 327975.1816128038, + "6171": 332718.6261843777, + "6172": 337464.5123321941, + "6173": 342593.4382176517, + "6174": 347724.9935351814, + "6175": 353219.2552198574, + "6176": 358716.3237968932, + "6177": 364554.3339158831, + "6178": 370395.3172916313, + "6179": 376554.1318252725, + "6180": 382716.0742276236, + "6181": 389171.4830510733, + "6182": 395630.1619925626, + "6183": 402356.7844221137, + "6184": 409086.8062950264, + "6185": 416058.191254086, + "6186": 423033.0915474399, + "6187": 430221.8219568575, + "6188": 437414.1696997517, + "6189": 444791.9706805192, + "6190": 452173.4766996577, + "6191": 459711.3271609548, + "6192": 467252.9557251062, + "6193": 474921.2028972998, + "6194": 482593.2863080747, + "6195": 490361.7627686686, + "6196": 498134.1184453854, + "6197": 505972.2611760695, + "6198": 513814.3107726282, + "6199": 521691.2817775612, + "6200": 529572.1718612162 + }, + "pressure_out": { + "0": 0.0, + "1": 337938.883946482, + "2": 180907.8840852076, + "3": 271344.5166528237, + "4": 238036.0477837999, + "5": 266544.3695671067, + "6": 264119.0481160823, + "7": 277073.8164675062, + "8": 282297.9769787805, + "9": 291270.3701307421, + "10": 298312.870708509, + "11": 306173.3801541706, + "12": 313554.1130871534, + "13": 320998.5107653335, + "14": 328325.5870685297, + "15": 335506.5096377203, + "16": 342660.6402198292, + "17": 349595.5694632542, + "18": 356526.2444970726, + "19": 363199.5840387293, + "20": 369874.1994466946, + "21": 376262.8727312927, + "22": 382654.0906459914, + "23": 388734.0161192428, + "24": 394816.6807208661, + "25": 400564.4628959005, + "26": 406314.9016782236, + "27": 411708.322474374, + "28": 417104.2401667897, + "29": 422122.446346683, + "30": 427142.9630284217, + "31": 431766.5734348968, + "32": 436392.2944703752, + "33": 440603.4827503407, + "34": 444816.5722144905, + "35": 448599.1387308139, + "36": 452383.3890208187, + "37": 455722.8251753459, + "38": 459063.720780613, + "39": 461947.2663711867, + "40": 464832.0411115239, + "41": 467248.7347158197, + "42": 469666.4221123333, + "43": 471607.1443544633, + "44": 473548.6209069841, + "45": 475006.1304498232, + "46": 476464.1516432251, + "47": 477433.1137678235, + "48": 478402.342663407, + "49": 478879.3503235747, + "50": 479356.3786222677, + "51": 479339.9658914333, + "52": 479323.327385558, + "53": 478813.975242901, + "54": 478304.1516034047, + "55": 477304.28603643, + "56": 476303.7049127275, + "57": 474817.6873437826, + "58": 473330.7127837125, + "59": 471364.8228582182, + "60": 469397.7380859109, + "61": 466960.1488902476, + "62": 464521.1315098878, + "63": 461621.8773167263, + "64": 458720.9670400521, + "65": 455371.9037084366, + "66": 452020.9627333566, + "67": 448235.720919813, + "68": 444448.3871164965, + "69": 440242.3184818242, + "70": 436033.9515710239, + "71": 431424.0681950695, + "72": 426811.6891310845, + "73": 421816.5963745976, + "74": 416818.8201721057, + "75": 411458.6432506391, + "76": 406095.6055204955, + "77": 400391.910080135, + "78": 394685.1875640762, + "79": 388660.8945724435, + "80": 382633.4199903001, + "81": 376312.7152787203, + "82": 369988.6868242019, + "83": 363396.9256380308, + "84": 356801.7114802646, + "85": 349965.3184140692, + "86": 343125.356581775, + "87": 336071.7212942823, + "88": 329014.4153377022, + "89": 321771.7844580743, + "90": 314525.395300423, + "91": 307122.7609524656, + "92": 299716.2953577262, + "93": 292183.2807419621, + "94": 284646.3768391801, + "95": 277013.119324355, + "96": 269375.9296402278, + "97": 261672.9618256224, + "98": 253966.0342869881, + "99": 246224.1635049377, + "100": 238478.3208808044, + "101": 230728.5076149682, + "102": 222974.7258738592, + "103": 215247.9615730711, + "104": 207517.2476357641, + "105": 199844.4324056766, + "106": 192167.7017757858, + "107": 184579.5224309995, + "108": 176987.477186335, + "109": 169514.2861442917, + "110": 162037.2937705158, + "111": 154708.9892650992, + "112": 147376.9628098579, + "113": 140222.870897452, + "114": 133065.1509179696, + "115": 126113.9097416328, + "116": 119159.1485116571, + "117": 112438.59528018, + "118": 105714.6437132714, + "119": 99251.7048411496, + "120": 92785.5025765679, + "121": 86606.0874184654, + "122": 80423.556503438, + "123": 74552.4551025175, + "124": 68678.3976904786, + "125": 63139.1829441417, + "126": 57597.1834126774, + "127": 52412.1180418208, + "128": 47224.4499166177, + "129": 42414.3986055568, + "130": 37601.936657683, + "131": 33186.2837114845, + "132": 28768.421574913, + "133": 24764.9944191066, + "134": 20759.5680536101, + "135": 17184.5668781905, + "136": 13607.7841796614, + "137": 10475.7180050446, + "138": 7342.0948410383, + "139": 4665.7242582886, + "140": 1988.0271812278, + "141": -221.6860074639, + "142": -2432.4901433391, + "143": -4166.4261851817, + "144": -5901.2135042787, + "145": -7152.1306866809, + "146": -8403.6562991265, + "147": -9166.2195287325, + "148": -9929.146121949, + "149": -10199.9479791202, + "150": -10470.8668810656, + "151": -10248.4410667172, + "152": -10025.8856976661, + "153": -9310.7128193889, + "154": -8595.1644791619, + "155": -7389.6701537947, + "156": -6183.5561216003, + "157": -4492.1014017414, + "158": -2799.7853561277, + "159": -628.6495183668, + "160": 1543.5856849095, + "161": 4186.2299221108, + "162": 6830.2070463281, + "163": 9934.3257773046, + "164": 13040.0054772755, + "165": 16593.7432090804, + "166": 20149.2636525402, + "167": 24138.9900938383, + "168": 28130.7137753553, + "169": 32541.0776296331, + "170": 36953.6451922898, + "171": 41767.6347430846, + "172": 46584.0255955152, + "173": 51783.0358445622, + "174": 56984.6353341249, + "175": 62548.5414274571, + "176": 68115.2143044347, + "177": 74022.4509566586, + "178": 79932.6208395599, + "179": 86160.2674428527, + "180": 92391.0019712009, + "181": 98914.8730531458, + "182": 105441.9743916948, + "183": 112236.7150649565, + "184": 119034.8154021565, + "185": 126074.0014293021, + "186": 133116.6630931254, + "187": 140372.9051716794, + "188": 147632.7249676947, + "189": 155077.7768238632, + "190": 162526.4941837839, + "191": 170131.3640482532, + "192": 177739.97256215, + "193": 185475.0375880105, + "194": 193213.8994800137, + "195": 201049.0226512598, + "196": 208887.9857469751, + "197": 216792.6348161935, + "198": 224701.1515402149, + "199": 232644.5195260675, + "200": 240591.7674599505, + "201": 248542.8942289082, + "202": 256497.8977538263, + "203": 264425.7922063189, + "204": 272357.5447503272, + "205": 280231.3071291039, + "206": 288108.893536558, + "207": 295897.8373745595, + "208": 303690.5559147603, + "209": 311364.3291412258, + "210": 319041.8126747645, + "211": 326570.5174016355, + "212": 334102.8532262639, + "213": 341457.1637421275, + "214": 348815.011645166, + "215": 355966.2901510831, + "216": 363120.998202478, + "217": 370041.4078329267, + "218": 376965.1254619622, + "219": 383627.7401448686, + "220": 390293.5280542843, + "221": 396672.4387765605, + "222": 403054.3752602829, + "223": 409124.7923194996, + "224": 415198.075564407, + "225": 420936.4264030544, + "226": 426677.4723710327, + "227": 432061.4946072666, + "228": 437448.0301112632, + "229": 442456.8593989857, + "230": 447468.0100057324, + "231": 452082.2623772579, + "232": 456698.6347897464, + "233": 460900.4831560947, + "234": 465104.2417506871, + "235": 468877.486257583, + "236": 472652.4234736919, + "237": 475982.5554356108, + "238": 479314.1557401588, + "239": 482188.4149001018, + "240": 485063.9120743188, + "241": 487471.3369633376, + "242": 489879.7644858154, + "243": 491811.2356835378, + "244": 493743.4700106924, + "245": 495191.7461361288, + "246": 496640.5427092803, + "247": 497600.2889998568, + "248": 498560.310836801, + "249": 499028.1202028482, + "250": 499495.9589611057, + "251": 499470.365432693, + "252": 499444.5548612872, + "253": 498926.0393743496, + "254": 498407.0611010403, + "255": 497398.0495999507, + "256": 496388.3312310768, + "257": 494893.1850951629, + "258": 493397.090635599, + "259": 491422.0894673726, + "260": 489445.9020983964, + "261": 486999.218941441, + "262": 484551.1162244951, + "263": 481642.785308795, + "264": 478732.8069129869, + "265": 475374.6840550107, + "266": 472014.6921357284, + "267": 468220.4079495368, + "268": 464424.0403345393, + "269": 460208.9464385765, + "270": 455991.5628063162, + "271": 451372.6712381833, + "272": 446751.2925007688, + "273": 441747.2085790797, + "274": 436740.4497091075, + "275": 431371.298607388, + "276": 425999.2951737411, + "277": 420286.6424961593, + "278": 414570.9711987109, + "279": 408537.7378710795, + "280": 402501.3313879049, + "281": 396171.7031998485, + "282": 389838.759683011, + "283": 383238.0918382927, + "284": 376633.9794153799, + "285": 369788.6964670817, + "286": 362939.8531253831, + "287": 355877.3446908546, + "288": 348811.1739392885, + "289": 341559.6866064217, + "290": 334304.4493269861, + "291": 326892.9751784235, + "292": 319477.6780939916, + "293": 311935.8402891994, + "294": 304390.1214878139, + "295": 296748.0573545878, + "296": 289102.0693220487, + "297": 281390.3114188252, + "298": 273674.60204118, + "299": 265923.9576595564, + "300": 258169.3496651275, + "301": 250410.7792481304, + "302": 242648.2485648615, + "303": 234912.7435207976, + "304": 227173.2970289915, + "305": 219491.7574230912, + "306": 211806.3105859921, + "307": 204209.4231925382, + "308": 196608.6780476914, + "309": 189126.7952439127, + "310": 181641.1192368198, + "311": 174304.1392164905, + "312": 166963.4453547405, + "313": 159800.6941342402, + "314": 152634.3229351041, + "315": 145674.4386175901, + "316": 138711.0423149661, + "317": 131981.8620694308, + "318": 125249.2915371331, + "319": 118777.7417383779, + "320": 112302.9365760226, + "321": 106114.9265391195, + "322": 99923.8087543936, + "323": 94044.1284830158, + "324": 88161.5001899153, + "325": 82613.7225420772, + "326": 77063.1680788523, + "327": 71869.5557361657, + "328": 66673.3485892688, + "329": 61854.7661968659, + "330": 57033.7810982327, + "331": 52609.6129220983, + "332": 48183.2434666707, + "333": 44171.3168933542, + "334": 40157.3990019749, + "335": 36573.9141825917, + "336": 32988.6557123235, + "337": 29848.1216285106, + "338": 26706.0384081809, + "339": 24021.2156123242, + "340": 21335.0741557274, + "341": 19116.9244114394, + "342": 16897.6915342875, + "343": 15155.3345558812, + "344": 13412.1340953385, + "345": 12152.8115570267, + "346": 10892.8883646373, + "347": 10121.9353214966, + "348": 9350.6266716089, + "349": 9071.4505050978, + "350": 8792.1650316232, + "351": 9006.2320027453, + "352": 9220.4362473775, + "353": 9927.2657105597, + "354": 10634.4783355446, + "355": 11831.6446360639, + "356": 13029.438324358, + "357": 14712.58037183, + "358": 16396.5914071483, + "359": 18559.4298872952, + "360": 20723.3753762414, + "361": 23357.7375330113, + "362": 25993.4402013221, + "363": 29089.2920915563, + "364": 32186.7125565996, + "365": 35732.1986499554, + "366": 39279.4750421189, + "367": 43260.9650099616, + "368": 47244.4597865629, + "369": 51646.6022951765, + "370": 56050.956062143, + "371": 60856.7393579585, + "372": 65664.9314868665, + "373": 70855.7505346086, + "374": 76049.1663358541, + "375": 81604.8962446416, + "376": 87163.4004316406, + "377": 93062.475879261, + "378": 98964.4920337513, + "379": 105183.9923756583, + "380": 111406.5881004871, + "381": 117922.3278276354, + "382": 124441.3052509758, + "383": 131227.9294394966, + "384": 138017.9207133123, + "385": 145049.0050893332, + "386": 152083.5725052053, + "387": 159331.7277299064, + "388": 166583.4680571057, + "389": 174020.4478204426, + "390": 181461.1004544788, + "391": 189057.9129509811, + "392": 196658.471445815, + "393": 204385.4937925104, + "394": 212116.3203362556, + "395": 219943.4154811684, + "396": 227774.3578635077, + "397": 235670.9935233479, + "398": 243571.5041330451, + "399": 251506.873290691, + "400": 259446.1296735642, + "401": 267389.2721597952, + "402": 275336.2986613723, + "403": 283256.2233410217, + "404": 291180.0133538048, + "405": 299045.8204341128, + "406": 306915.4587669988, + "407": 314696.4617454921, + "408": 322481.246632412, + "409": 330147.0934030056, + "410": 337816.6576692741, + "411": 345337.4503086787, + "412": 352861.881216862, + "413": 360208.2939785241, + "414": 367558.2512808461, + "415": 374701.6463307778, + "416": 381848.4780621823, + "417": 388761.0184999025, + "418": 395676.8740547585, + "419": 402331.6337733254, + "420": 408989.573819551, + "421": 415360.6437710985, + "422": 421734.7465678855, + "423": 427797.3370152967, + "424": 433862.8007148819, + "425": 439593.3390660482, + "426": 445326.5795957629, + "427": 450702.8034343319, + "428": 456081.5475726604, + "429": 461082.5925181141, + "430": 466085.9657974126, + "431": 470692.4478477359, + "432": 475301.0569367109, + "433": 479495.1489686819, + "434": 483691.1582094969, + "435": 487456.6603346877, + "436": 491223.8621326479, + "437": 494546.2656314691, + "438": 497870.1444194761, + "439": 500736.6890009523, + "440": 503604.4785263042, + "441": 506004.2026875991, + "442": 508404.9363950426, + "443": 510328.7206819823, + "444": 512253.274994177, + "445": 513693.8779920592, + "446": 515135.0083166551, + "447": 516087.0952292794, + "448": 517039.4645504901, + "449": 517499.6282546482, + "450": 517959.8281964982, + "451": 517926.6026888074, + "452": 517893.1669669113, + "453": 517367.0331499407, + "454": 516840.4433587355, + "455": 515823.8271435784, + "456": 514806.5108561669, + "457": 513303.7735889573, + "458": 511800.0947770637, + "459": 509817.5160272066, + "460": 507833.7578390435, + "461": 505379.5106171, + "462": 502923.8505811315, + "463": 500007.9690841499, + "464": 497090.4468365889, + "465": 493724.7868481867, + "466": 490357.2645116123, + "467": 486555.4566130839, + "468": 482751.5719825322, + "469": 478528.9677596398, + "470": 474304.0804809232, + "471": 469677.6919386712, + "472": 465048.8228913443, + "473": 460037.2553158336, + "474": 455023.0194400213, + "475": 449646.3979723498, + "476": 444266.9308045497, + "477": 438546.8210165401, + "478": 432823.6992243212, + "479": 426783.0220095257, + "480": 420739.1782387454, + "481": 414402.1193546102, + "482": 408061.7517251946, + "483": 401453.6663433887, + "484": 394842.1429508746, + "485": 387989.4555924683, + "486": 381133.2143921727, + "487": 374063.3146425877, + "488": 366989.7591115435, + "489": 359730.8935268251, + "490": 352468.2845152249, + "491": 345049.4451462511, + "492": 337626.7893452457, + "493": 330077.5993198031, + "494": 322524.5347857935, + "495": 314875.1314000766, + "496": 307221.8105873052, + "497": 299502.726368234, + "498": 291779.6971312702, + "499": 284021.7393390042, + "500": 276259.8243747753, + "501": 268493.9534209875, + "502": 260724.1286261218, + "503": 252981.3358878432, + "504": 245234.6081114108, + "505": 237545.79362268, + "506": 229853.0782967715, + "507": 222248.9288007573, + "508": 214640.9279318462, + "509": 207151.7957747468, + "510": 199658.8767773415, + "511": 192314.6601219784, + "512": 184966.7359727571, + "513": 177796.7608046389, + "514": 170623.17199004, + "515": 163656.0763815311, + "516": 156685.4751046999, + "517": 149949.0961940808, + "518": 143209.3332981605, + "519": 136730.5974295984, + "520": 130248.6124836103, + "521": 124053.428941624, + "522": 117855.1439227421, + "523": 111968.3026805291, + "524": 106078.5196723126, + "525": 100523.593557492, + "526": 94965.8968678353, + "527": 89765.1485317005, + "528": 84561.8116167767, + "529": 79736.1056742214, + "530": 74908.0032357669, + "531": 70476.7239226141, + "532": 66043.2495254479, + "533": 62024.2241981644, + "534": 58003.213733086, + "535": 54412.6425127811, + "536": 50820.3038068861, + "537": 47672.6956452697, + "538": 44523.5444974967, + "539": 41831.6599171037, + "540": 39138.462811435, + "541": 36913.2635461047, + "542": 34686.9872685174, + "543": 32937.593002867, + "544": 31187.3613608671, + "545": 29921.0137394891, + "546": 28654.0715550398, + "547": 27876.1056034681, + "548": 27097.7901214125, + "549": 26811.6131916387, + "550": 26525.3330164595, + "551": 26732.4113400967, + "552": 26939.632984135, + "553": 27639.4858862953, + "554": 28339.7279825203, + "555": 29529.9297792416, + "556": 30720.7649814087, + "557": 32396.9545531435, + "558": 34074.0191158418, + "559": 36229.9171192239, + "560": 38386.9281200069, + "561": 41014.3617699718, + "562": 43643.1419056006, + "563": 46732.0772300511, + "564": 49822.5870889933, + "565": 53361.1685287237, + "566": 56901.5462125416, + "567": 60876.1434101285, + "568": 64852.7513473872, + "569": 69248.0129404007, + "570": 73645.4917083516, + "571": 78444.4059145822, + "572": 83245.7348561974, + "573": 88429.6966118043, + "574": 93616.2610089516, + "575": 99165.1453945608, + "576": 104716.8099321996, + "577": 110609.0515971803, + "578": 116504.2398286677, + "579": 122716.9181001278, + "580": 128932.697600001, + "581": 135441.6269406238, + "582": 141953.7998088218, + "583": 148733.6252665386, + "584": 155516.823626861, + "585": 162541.1208996745, + "586": 169568.9070156133, + "587": 176810.2867366491, + "588": 184055.2573494568, + "589": 191485.4731806898, + "590": 198919.3676579317, + "591": 206509.4277659836, + "592": 214103.2396337472, + "593": 221823.5211078069, + "594": 229547.6125264062, + "595": 237367.9782867344, + "596": 245192.1970181224, + "597": 253082.1147537345, + "598": 260975.9131590181, + "599": 268904.5758251724, + "600": 276837.1314225831, + "601": 284773.5788225068, + "602": 292713.915930059, + "603": 300627.1569011065, + "604": 308544.2688838579, + "605": 316403.4036058616, + "606": 324266.375245336, + "607": 332040.7171884851, + "608": 339818.8466913113, + "609": 347478.0437222539, + "610": 355140.9638865149, + "611": 362655.1180547661, + "612": 370172.9161158653, + "613": 377512.7016477441, + "614": 384856.0373308165, + "615": 391992.8163652794, + "616": 399133.0376782452, + "617": 406038.973287824, + "618": 412948.229598103, + "619": 419596.395648939, + "620": 426247.7475975665, + "621": 432612.2350149463, + "622": 438979.7608343014, + "623": 445035.7798543306, + "624": 451094.6776699063, + "625": 456818.6556737673, + "626": 462545.3413862208, + "627": 467915.0159309214, + "628": 473287.2162921315, + "629": 478281.7229705825, + "630": 483278.5634863685, + "631": 487878.5182700523, + "632": 492480.6055826523, + "633": 496668.1813219127, + "634": 500857.6797470904, + "635": 504616.6765271339, + "636": 508377.3784438623, + "637": 511693.2875188013, + "638": 515010.6773337182, + "639": 517870.7383863475, + "640": 520732.0498205554, + "641": 523125.3013218753, + "642": 525519.5677939918, + "643": 527436.8902637354, + "644": 529354.9881703588, + "645": 530789.1401677956, + "646": 532223.8248905821, + "647": 533169.4715935513, + "648": 534115.406090788, + "649": 534569.140350188, + "650": 535022.9162200394, + "651": 534983.2720066609, + "652": 534943.4229389484, + "653": 534410.8811296008, + "654": 533877.888693035, + "655": 532854.8751731182, + "656": 531831.1669151415, + "657": 530322.0430051624, + "658": 528811.9828719051, + "659": 526823.0281157077, + "660": 524832.8992298542, + "661": 522372.2866125047, + "662": 519910.2664770572, + "663": 516988.0301701747, + "664": 514064.1583959496, + "665": 510692.1541577873, + "666": 507318.2928420333, + "667": 503510.151228588, + "668": 499699.9381410749, + "669": 495471.0107128759, + "670": 491239.8054742158, + "671": 486607.1042110995, + "672": 481971.9276757119, + "673": 476954.0578386763, + "674": 471933.5249216154, + "675": 466550.6116267202, + "676": 461164.8578394778, + "677": 455438.466633572, + "678": 449709.0686187758, + "679": 443662.1203705025, + "680": 437612.0107491327, + "681": 431268.6911910931, + "682": 424922.068058263, + "683": 418307.7323373454, + "684": 411689.9637638428, + "685": 404831.0363764003, + "686": 397968.5602928575, + "687": 390892.4307996588, + "688": 383812.6506584869, + "689": 376547.5655909875, + "690": 369278.7422178204, + "691": 361853.6936023737, + "692": 354424.833663869, + "693": 346869.4446037959, + "694": 339310.1861319233, + "695": 331654.5938990194, + "696": 323995.0893236524, + "697": 316269.826420501, + "698": 308540.6235719034, + "699": 300776.4972343897, + "700": 293008.418785246, + "701": 285236.3894008314, + "702": 277460.4112235895, + "703": 269711.4701451558, + "704": 261958.5990647677, + "705": 254263.6463022666, + "706": 246564.7977267671, + "707": 238954.5199993425, + "708": 231340.3959112112, + "709": 223845.1455410986, + "710": 216346.1133309118, + "711": 208995.7884570315, + "712": 201641.7610775972, + "713": 194465.6876616183, + "714": 187286.0055755662, + "715": 180312.8216660741, + "716": 173336.1370528036, + "717": 166593.6797643632, + "718": 159847.8434433288, + "719": 153363.039096452, + "720": 146874.9906130507, + "721": 140673.7484686612, + "722": 134469.409776503, + "723": 128576.5197842645, + "724": 122680.6929434051, + "725": 117119.7279074635, + "726": 111555.9972023545, + "727": 106349.2197505905, + "728": 101139.8586140225, + "729": 96308.1333379774, + "730": 91474.0164483646, + "731": 87036.7275605695, + "732": 82597.2484594689, + "733": 78572.2232931583, + "734": 74545.217848167, + "735": 70948.6565012781, + "736": 67350.3325163495, + "737": 64196.7439174795, + "738": 61041.6171684696, + "739": 58343.7618171006, + "740": 55644.5987649679, + "741": 53413.4383719461, + "742": 51181.2057797044, + "743": 49425.8600067116, + "744": 47669.6816589622, + "745": 46397.3921277163, + "746": 45124.5128235764, + "747": 44340.6145367949, + "748": 43556.3714983209, + "749": 43264.271785238, + "750": 42972.0735941843, + "751": 43173.2386637142, + "752": 43374.5518097523, + "753": 44068.5009643668, + "754": 44762.8440578547, + "755": 45947.1515910096, + "756": 47132.0972631499, + "757": 48802.4020327738, + "758": 50473.5865156605, + "759": 52623.6091559214, + "760": 54774.7495046714, + "761": 57396.3172080967, + "762": 60019.2360970918, + "763": 63102.3148692342, + "764": 66186.9728646206, + "765": 69719.7071239821, + "766": 73254.2423050574, + "767": 77223.0016719788, + "768": 81193.7764451027, + "769": 85583.2095349759, + "770": 89974.8644552501, + "771": 94767.9594637448, + "772": 99563.4738520489, + "773": 104741.6256932606, + "774": 109922.3848094268, + "775": 115465.4685419744, + "776": 121011.3370489834, + "777": 126897.7873002857, + "778": 132787.1887295725, + "779": 138994.0848048435, + "780": 145204.0867090797, + "781": 151707.2430491651, + "782": 158213.6475064802, + "783": 164987.7091375302, + "784": 171765.1482499706, + "785": 178783.6908482627, + "786": 185805.7268576232, + "787": 193041.3610346137, + "788": 200280.5906605055, + "789": 207705.0700565559, + "790": 215133.2326449597, + "791": 222717.5654051322, + "792": 230305.6544606044, + "793": 238020.2176525883, + "794": 245738.5953139687, + "795": 253553.2518365755, + "796": 261371.7658443971, + "797": 269255.9833652529, + "798": 277144.0860592581, + "799": 285067.0575122836, + "800": 292993.9263893952, + "801": 300924.6915565346, + "802": 308859.3509135133, + "803": 316766.9186108949, + "804": 324678.3617915986, + "805": 332531.8321778856, + "806": 340389.1439426913, + "807": 348157.8304669497, + "808": 355930.3090013981, + "809": 363583.8595092156, + "810": 371241.1375903521, + "811": 378749.6541102331, + "812": 386261.8189524795, + "813": 393595.9756897911, + "814": 400933.6869973527, + "815": 408064.8460701455, + "816": 415199.4518300705, + "817": 422099.7762900314, + "818": 429003.4258489176, + "819": 435645.9895413938, + "820": 442291.7435195086, + "821": 448650.6373490469, + "822": 455012.5739580593, + "823": 461063.0081400765, + "824": 467116.3254848151, + "825": 472834.7273798622, + "826": 478555.8413403789, + "827": 483919.9484848821, + "828": 489286.585792501, + "829": 494275.5337588438, + "830": 499266.8198988851, + "831": 503861.2246380736, + "832": 508457.7662323239, + "833": 512639.8005742818, + "834": 516823.7619181105, + "835": 520577.2259276735, + "836": 524332.3993797099, + "837": 527642.7842906737, + "838": 530954.6542372658, + "839": 533809.1997121593, + "840": 536664.9998541685, + "841": 539052.7443437807, + "842": 541441.5080796391, + "843": 543353.3320835411, + "844": 545265.935789712, + "845": 546694.5978470647, + "846": 548123.7968851211, + "847": 549063.9621537072, + "848": 550004.4194619046, + "849": 550452.6807726156, + "850": 550900.9879291392, + "851": 550855.8792328122, + "852": 550810.5699075543, + "853": 550272.5720610959, + "854": 549734.1278028901, + "855": 548705.666671848, + "856": 547676.5150083109, + "857": 546161.9518933921, + "858": 544646.456750878, + "859": 542652.0711761765, + "860": 540656.5156576461, + "861": 538190.4805885294, + "862": 535723.0421773108, + "863": 532795.3917657484, + "864": 529866.1100530359, + "865": 526488.7000376852, + "866": 523109.4371011544, + "867": 519295.8980184635, + "868": 515480.2916083619, + "869": 511245.9749993635, + "870": 507009.3847168318, + "871": 502371.3025419138, + "872": 497730.7492219493, + "873": 492707.5067227151, + "874": 487681.6052609998, + "875": 482293.327534161, + "876": 476902.2134228637, + "877": 471170.4659959725, + "878": 465435.7158584495, + "879": 459383.4195809004, + "880": 453327.9660189062, + "881": 446979.3066041035, + "882": 440627.3476935818, + "883": 434007.6802692628, + "884": 427384.5840618749, + "885": 420520.3331052943, + "886": 413652.5375125986, + "887": 406571.0925654735, + "888": 399486.0010208514, + "889": 392215.6085956376, + "890": 384941.4819057507, + "891": 377511.1340098463, + "892": 370076.978822421, + "893": 362516.2985402442, + "894": 354951.7528683709, + "895": 347290.8774528622, + "896": 339626.0937075805, + "897": 331895.5556425158, + "898": 324161.081635311, + "899": 316391.6881378163, + "900": 308618.3465226364, + "901": 300841.0579614615, + "902": 293059.8245920683, + "903": 285305.6323014344, + "904": 277547.5139841406, + "905": 269847.3179553812, + "906": 262143.2300796328, + "907": 254527.7170133302, + "908": 246908.3615430614, + "909": 239407.8837429293, + "910": 231903.6280502226, + "911": 224548.0836367113, + "912": 217188.8406559264, + "913": 210007.5555722773, + "914": 202822.6657476453, + "915": 195844.2780240721, + "916": 188862.3935166369, + "917": 182114.7402493726, + "918": 175363.7118602841, + "919": 168873.7193515585, + "920": 162380.4866079555, + "921": 156174.0641004548, + "922": 149964.5489377348, + "923": 144066.4863629378, + "924": 138165.490822991, + "925": 132599.3609669003, + "926": 127030.469316059, + "927": 121818.5347884604, + "928": 116604.0204414445, + "929": 111767.1458158297, + "930": 106927.8834330255, + "931": 102485.4529039246, + "932": 98040.8360089129, + "933": 94010.6768916024, + "934": 89978.5413340457, + "935": 86376.8537085536, + "936": 82773.4072745188, + "937": 79614.7000515778, + "938": 76454.4584990781, + "939": 73751.492160353, + "940": 71047.2219325536, + "941": 68810.9581711169, + "942": 66573.6260132811, + "943": 64813.1844730884, + "944": 63051.9141521134, + "945": 61774.5364372012, + "946": 60496.5727345451, + "947": 59707.5938299952, + "948": 58918.2739501018, + "949": 58621.1011675572, + "950": 58323.8336746127, + "951": 58519.9332054422, + "952": 58716.1845715951, + "953": 59405.0757007699, + "954": 60094.3645189002, + "955": 61273.6215224211, + "956": 62453.5204062979, + "957": 64118.7821246821, + "958": 65784.9272890115, + "959": 67929.9143390612, + "960": 70076.0228216161, + "961": 72692.5623785367, + "962": 75310.4568363998, + "963": 78388.5148884686, + "964": 81468.1558705306, + "965": 84995.8768190148, + "966": 88525.4023873635, + "967": 92489.1558354165, + "968": 96454.9283792449, + "969": 100839.3629251141, + "970": 105226.0229824008, + "971": 110014.1268046572, + "972": 114804.6536792037, + "973": 119977.8216748834, + "974": 125153.6006094876, + "975": 130691.7078201979, + "976": 136232.6034608504, + "977": 142114.0844970407, + "978": 147998.5203582277, + "979": 154200.454508187, + "980": 160405.4981256792, + "981": 166903.6998133699, + "982": 173405.153248432, + "983": 180174.2674831673, + "984": 186946.7628210311, + "985": 193960.3652622916, + "986": 200977.4647279766, + "987": 208208.1659704668, + "988": 215442.4662668564, + "989": 222862.0199342265, + "990": 230285.2603906083, + "991": 237864.6746112564, + "992": 245447.8487155442, + "993": 253157.500540534, + "994": 260870.9704149639, + "995": 268680.7227265263, + "996": 276494.3360950747, + "997": 284373.6565442951, + "998": 292256.8657301827, + "999": 300174.9472344865, + "1000": 308096.9297181623, + "1001": 316022.812043042, + "1002": 323952.5921048327, + "1003": 331855.284050002, + "1004": 339761.8550173757, + "1005": 347610.4567251284, + "1006": 355462.9033421132, + "1007": 363226.7282451878, + "1008": 370994.3486810175, + "1009": 378643.0446087153, + "1010": 386295.4716241701, + "1011": 393799.1405887515, + "1012": 401306.46138203, + "1013": 408635.7775726596, + "1014": 415968.651831785, + "1015": 423094.9773503522, + "1016": 430224.7530462323, + "1017": 437120.2509283045, + "1018": 444019.0773914385, + "1019": 450656.8214662845, + "1020": 457297.7593008819, + "1021": 463651.8404570131, + "1022": 470008.9678587238, + "1023": 476054.596295559, + "1024": 482103.1113532406, + "1025": 487816.7144153752, + "1026": 493533.0329931438, + "1027": 498892.3482010904, + "1028": 504254.197014376, + "1029": 509238.3599246452, + "1030": 514224.8644429149, + "1031": 518814.4909906803, + "1032": 523406.2578199083, + "1033": 527583.5208193014, + "1034": 531762.7142390852, + "1035": 535511.4137391902, + "1036": 539261.8260924277, + "1037": 542567.453311329, + "1038": 545874.5689686773, + "1039": 548724.3635532329, + "1040": 551575.4161999023, + "1041": 553958.4165852703, + "1042": 556342.4396040823, + "1043": 558249.526274243, + "1044": 560157.39602609, + "1045": 561581.3275046535, + "1046": 563005.7993355781, + "1047": 563941.2407648154, + "1048": 564876.9775975813, + "1049": 565320.5217929139, + "1050": 565764.1151902548, + "1051": 565714.2960870877, + "1052": 565664.2797034843, + "1053": 565121.5781433317, + "1054": 564578.4335122453, + "1055": 563545.2753453025, + "1056": 562511.4299790164, + "1057": 560992.1764906771, + "1058": 559471.9943002521, + "1059": 557472.9249993358, + "1060": 555472.689072478, + "1061": 553001.9769091173, + "1062": 550529.8647139391, + "1063": 547597.5438249076, + "1064": 544663.5949374271, + "1065": 541281.5210462249, + "1066": 537897.5975289796, + "1067": 534079.4011569368, + "1068": 530259.1407450757, + "1069": 526020.173418145, + "1070": 521778.9356977484, + "1071": 517136.2093612769, + "1072": 512491.0151523203, + "1073": 507463.1350329093, + "1074": 502432.5992160915, + "1075": 497039.6903954882, + "1076": 491643.948448033, + "1077": 485907.5764388638, + "1078": 480168.2049692209, + "1079": 474111.2906059931, + "1080": 468051.2222010486, + "1081": 461697.9511823167, + "1082": 455341.383903184, + "1083": 448717.1113418741, + "1084": 442089.4132254219, + "1085": 435220.5635840149, + "1086": 428348.172527047, + "1087": 421262.1353325247, + "1088": 414172.4547537059, + "1089": 406897.4765038259, + "1090": 399618.7671951383, + "1091": 392183.8398826383, + "1092": 384745.1084771669, + "1093": 377179.8551718423, + "1094": 369610.7396680733, + "1095": 361945.2976082793, + "1096": 354275.9504026856, + "1097": 346540.8520576498, + "1098": 338801.8209471871, + "1099": 331027.8735195246, + "1100": 323249.9811436487, + "1101": 315468.1449876358, + "1102": 307682.3671856532, + "1103": 299923.6336210741, + "1104": 292160.9771848793, + "1105": 284456.2461886677, + "1106": 276747.6264933253, + "1107": 269127.5847517007, + "1108": 261503.7037468003, + "1109": 253998.7035491502, + "1110": 246489.9285924665, + "1111": 239129.8680449513, + "1112": 231766.1120565727, + "1113": 224580.3170881811, + "1114": 217390.9204981038, + "1115": 210408.0291248331, + "1116": 203421.6440799027, + "1117": 196669.4933838053, + "1118": 189913.9706710096, + "1119": 183419.4869401715, + "1120": 176921.7660725236, + "1121": 170710.8585355232, + "1122": 164496.8614343307, + "1123": 158594.3200085752, + "1124": 152688.8487016748, + "1125": 147118.2461591309, + "1126": 141544.8848988371, + "1127": 136328.4838352909, + "1128": 131109.5060223415, + "1129": 126268.1709973208, + "1130": 121424.4512781562, + "1131": 116977.5664722625, + "1132": 112528.4983565528, + "1133": 108493.8910711702, + "1134": 104457.3103947029, + "1135": 100851.1806960019, + "1136": 97243.2952310046, + "1137": 94080.1520158963, + "1138": 90915.477506578, + "1139": 88208.0812429408, + "1140": 85499.384118698, + "1141": 83258.6964858531, + "1142": 81016.9434782152, + "1143": 79252.0841064022, + "1144": 77486.3989685681, + "1145": 76204.6094481425, + "1146": 74922.2369479068, + "1147": 74128.8522503042, + "1148": 73335.1295784821, + "1149": 73033.5570017345, + "1150": 72731.8927089184, + "1151": 72923.5984308182, + "1152": 73115.4589755976, + "1153": 73799.9622675742, + "1154": 74484.8662293048, + "1155": 75659.7413538519, + "1156": 76835.2613328129, + "1157": 78496.1471169752, + "1158": 80157.9193144173, + "1159": 82298.5363615589, + "1160": 84440.277801834, + "1161": 87052.4532737565, + "1162": 89665.9866005607, + "1163": 92739.6864721717, + "1164": 95814.9722210431, + "1165": 99338.3408802745, + "1166": 102863.5170999826, + "1167": 106822.9241366863, + "1168": 110784.3532031397, + "1169": 115164.4472022957, + "1170": 119546.7696402226, + "1171": 124330.5387671684, + "1172": 129116.7338671538, + "1173": 134285.5730057259, + "1174": 139457.0259973846, + "1175": 144990.8101760242, + "1176": 150527.3856921978, + "1177": 156404.5495082221, + "1178": 162284.6710502811, + "1179": 168482.2937788802, + "1180": 174683.0288695133, + "1181": 181176.924921584, + "1182": 187674.0756090073, + "1183": 194438.8899808309, + "1184": 201207.0883372606, + "1185": 208216.396675319, + "1186": 215229.2049127925, + "1187": 222455.6177988246, + "1188": 229685.6326072763, + "1189": 237100.9036519999, + "1190": 244519.8643478016, + "1191": 252095.0016667151, + "1192": 259673.9017248975, + "1193": 267379.2823561984, + "1194": 275088.4838861473, + "1195": 282893.9706992327, + "1196": 290703.3214121074, + "1197": 298578.3820452617, + "1198": 306457.3342514985, + "1199": 314371.1616093788, + "1200": 322288.8927766746, + "1201": 330210.5266120378, + "1202": 338136.0610079998, + "1203": 346034.5101078564, + "1204": 353936.8410472679, + "1205": 361781.2055412378, + "1206": 369629.4177554697, + "1207": 377389.0110636586, + "1208": 385152.4027093218, + "1209": 392796.872648423, + "1210": 400445.0764737085, + "1211": 407944.5250434077, + "1212": 415447.6282339563, + "1213": 422772.7296108764, + "1214": 430101.3918421853, + "1215": 437223.5081157059, + "1216": 444349.0773461893, + "1217": 451240.3715393991, + "1218": 458134.9970870939, + "1219": 464768.5430168161, + "1220": 471405.2854735015, + "1221": 477755.1740158329, + "1222": 484108.1115647602, + "1223": 490149.5529067367, + "1224": 496193.8836243967, + "1225": 501903.3050982626, + "1226": 507615.4448364356, + "1227": 512970.5839503838, + "1228": 518328.2594121962, + "1229": 523308.2517104504, + "1230": 528290.5883530944, + "1231": 532876.0497585697, + "1232": 537463.6541757818, + "1233": 541636.7574903833, + "1234": 545811.79394955, + "1235": 549556.3392101681, + "1236": 553302.6000420077, + "1237": 556604.0784545635, + "1238": 559907.0480175854, + "1239": 562752.6992168045, + "1240": 565599.611184102, + "1241": 567978.4735930411, + "1242": 570358.3613353495, + "1243": 572261.3154259182, + "1244": 574165.0552920748, + "1245": 575584.8595758433, + "1246": 577005.2068998661, + "1247": 577936.5265070962, + "1248": 578868.1441997553, + "1249": 579307.5719338901, + "1250": 579747.0515459555, + "1251": 579693.1213304519, + "1252": 579638.9965044716, + "1253": 579092.1891689262, + "1254": 578544.9414264591, + "1255": 577507.6828091802, + "1256": 576469.7396506376, + "1257": 574946.3910251614, + "1258": 573422.1163497624, + "1259": 571418.9572130822, + "1260": 569414.6340967213, + "1261": 566939.8373871729, + "1262": 564463.6432861808, + "1263": 561527.2431287713, + "1264": 558589.2176074146, + "1265": 555203.0697139077, + "1266": 551815.0748230024, + "1267": 547992.8097030213, + "1268": 544168.4831660244, + "1269": 539925.4523338453, + "1270": 535680.1537251754, + "1271": 531033.3691144981, + "1272": 526384.1192424984, + "1273": 521352.1860683066, + "1274": 516317.5998020733, + "1275": 510920.6431345266, + "1276": 505520.8559397104, + "1277": 499780.4412798769, + "1278": 494037.029753384, + "1279": 487976.0779242403, + "1280": 481911.974641445, + "1281": 475554.6713300482, + "1282": 469194.0743405745, + "1283": 462565.7746483809, + "1284": 455934.0519776437, + "1285": 449061.1803556927, + "1286": 442184.7698890694, + "1287": 435094.7158529306, + "1288": 428001.0209976885, + "1289": 420722.0310337365, + "1290": 413439.3125704898, + "1291": 406000.3786601085, + "1292": 398557.6432106026, + "1293": 390988.3884122623, + "1294": 383415.2739636727, + "1295": 375745.8355044327, + "1296": 368072.4944419507, + "1297": 360333.4047797709, + "1298": 352590.3848890991, + "1299": 344812.4512153562, + "1300": 337030.5751247259, + "1301": 329244.7577824857, + "1302": 321455.0013200077, + "1303": 313692.2916178731, + "1304": 305925.6615642724, + "1305": 298216.9594680269, + "1306": 290504.3711872317, + "1307": 282880.3633719648, + "1308": 275252.5188024548, + "1309": 267743.557546459, + "1310": 260230.8240349256, + "1311": 252866.8074332939, + "1312": 245499.0978887712, + "1313": 238309.351859452, + "1314": 231116.0067009103, + "1315": 224129.1692488889, + "1316": 217138.8406121757, + "1317": 210382.7488085207, + "1318": 203623.2874696538, + "1319": 197124.8675914952, + "1320": 190623.2130525456, + "1321": 184408.3743175336, + "1322": 178190.4484888946, + "1323": 172283.9808035361, + "1324": 166374.5857021579, + "1325": 160800.0618275468, + "1326": 155222.7816948851, + "1327": 150002.4642159626, + "1328": 144779.5724419241, + "1329": 139934.3259073993, + "1330": 135086.6971276224, + "1331": 130635.9057073085, + "1332": 126182.933420684, + "1333": 122144.4244052028, + "1334": 118103.9444367705, + "1335": 114493.9178815571, + "1336": 110882.1379928232, + "1337": 107715.1027840806, + "1338": 104546.5387085601, + "1339": 101835.255303486, + "1340": 99122.6734599083, + "1341": 96878.1035271706, + "1342": 94632.4706364253, + "1343": 92863.733795637, + "1344": 91094.1736003101, + "1345": 89808.5114312274, + "1346": 88522.2686885276, + "1347": 87725.0161520137, + "1348": 86927.4280421971, + "1349": 86621.9924257384, + "1350": 86316.4674888653, + "1351": 86504.3149597354, + "1352": 86692.3196438899, + "1353": 87372.9694630263, + "1354": 88054.0223370855, + "1355": 89225.0487565162, + "1356": 90396.722410307, + "1357": 92053.7642466383, + "1358": 93711.6948709858, + "1359": 95848.4727171694, + "1360": 97986.3773260265, + "1361": 100594.7183334781, + "1362": 103204.4195601684, + "1363": 106274.2896934361, + "1364": 109345.7480631514, + "1365": 112865.291699834, + "1366": 116386.6452510238, + "1367": 120342.2319706662, + "1368": 124299.8430689453, + "1369": 128676.121446247, + "1370": 133054.6306060759, + "1371": 137834.5887961196, + "1372": 142616.9752978417, + "1373": 147782.0081742354, + "1374": 152949.65723725, + "1375": 158479.6398182323, + "1376": 164012.4160651912, + "1377": 169885.7829379026, + "1378": 175762.1098600128, + "1379": 181955.9402894941, + "1380": 188152.8853993037, + "1381": 194642.9937863247, + "1382": 201136.3591219418, + "1383": 207897.390452684, + "1384": 214661.808076237, + "1385": 221667.337987109, + "1386": 228676.3701005739, + "1387": 235899.0091632667, + "1388": 243125.2524465426, + "1389": 250536.7542617512, + "1390": 257951.9480211997, + "1391": 265523.3206944256, + "1392": 273098.4583950929, + "1393": 280800.0789545614, + "1394": 288505.5226958742, + "1395": 296307.2540010359, + "1396": 304112.8514842195, + "1397": 311984.1611634376, + "1398": 319859.3646890194, + "1399": 327769.4456370549, + "1400": 335683.4326628482, + "1401": 343601.3246225868, + "1402": 351523.1194063405, + "1403": 359417.8311549468, + "1404": 367316.4270016106, + "1405": 375157.0586588834, + "1406": 383001.5402900197, + "1407": 390757.4052662683, + "1408": 398517.0708287042, + "1409": 406157.8169308511, + "1410": 413802.2991630187, + "1411": 421298.0283810031, + "1412": 428797.414458809, + "1413": 436118.8009595316, + "1414": 443443.7505487638, + "1415": 450562.1564119072, + "1416": 457684.0174612949, + "1417": 464571.6057002756, + "1418": 471462.5275181956, + "1419": 478092.3719401883, + "1420": 484725.4151087839, + "1421": 491071.6065802622, + "1422": 497420.8492731734, + "1423": 503458.5979715739, + "1424": 509499.2382557044, + "1425": 515204.9715036966, + "1426": 520913.4252212642, + "1427": 526264.8805174907, + "1428": 531618.8743620832, + "1429": 536595.1872412409, + "1430": 541573.8466605364, + "1431": 546155.6330360384, + "1432": 550739.564614283, + "1433": 554908.9972785565, + "1434": 559080.3652736708, + "1435": 562821.2442541517, + "1436": 566563.8409874119, + "1437": 569861.6574805914, + "1438": 573160.9673010887, + "1439": 576002.9609322862, + "1440": 578846.2175037195, + "1441": 581221.4266866092, + "1442": 583597.6633703433, + "1443": 585496.9685674761, + "1444": 587397.0617030016, + "1445": 588813.2214166129, + "1446": 590229.9263286245, + "1447": 591157.6056796648, + "1448": 592085.5852696331, + "1449": 592521.3770522577, + "1450": 592957.2228616769, + "1451": 592899.6609900786, + "1452": 592841.9066522444, + "1453": 592291.4719467788, + "1454": 591740.5989740209, + "1455": 590699.7172637793, + "1456": 589658.1531473034, + "1457": 588131.1856966278, + "1458": 586603.2943264708, + "1459": 584596.5206231839, + "1460": 582588.5850660809, + "1461": 580110.178039371, + "1462": 577630.3757425171, + "1463": 574690.369508267, + "1464": 571748.7400268158, + "1465": 568358.9902876879, + "1466": 564967.3956633657, + "1467": 561141.5329199051, + "1468": 557313.6108671024, + "1469": 553066.9866245301, + "1470": 548818.0967086216, + "1471": 544167.722891605, + "1472": 539514.885911913, + "1473": 534479.3677264265, + "1474": 529441.1985430493, + "1475": 524040.6610502657, + "1476": 518637.2951198787, + "1477": 512893.3038119023, + "1478": 507146.3177224591, + "1479": 501081.7934133253, + "1480": 495014.1197312704, + "1481": 488653.2480991177, + "1482": 482289.0848651679, + "1483": 475657.2210025565, + "1484": 469021.9362332415, + "1485": 462145.5045823373, + "1486": 455265.5361541725, + "1487": 448171.9262216941, + "1488": 441074.6775331069, + "1489": 433792.1357966001, + "1490": 426505.8676193872, + "1491": 419063.3860514295, + "1492": 411617.1049985411, + "1493": 404044.3066488188, + "1494": 396467.6506986573, + "1495": 388794.6727854678, + "1496": 381117.7943144736, + "1497": 373375.1692870371, + "1498": 365628.6160721844, + "1499": 357847.1511131598, + "1500": 350061.7457739732, + "1501": 342272.401217731, + "1502": 334479.1195736366, + "1503": 326712.8867201058, + "1504": 318942.7355431661, + "1505": 311230.5143494786, + "1506": 303514.4089949811, + "1507": 295886.8861275966, + "1508": 288255.528525402, + "1509": 280743.0562540051, + "1510": 273226.8137422077, + "1511": 265859.2901533049, + "1512": 258488.0756323634, + "1513": 251294.8266353388, + "1514": 244097.9805156697, + "1515": 237107.6441069656, + "1516": 230113.8185158843, + "1517": 223354.2317580481, + "1518": 216591.2774630619, + "1519": 210089.3666247236, + "1520": 203584.2231194144, + "1521": 197365.897409746, + "1522": 191144.4865960396, + "1523": 185234.5359130911, + "1524": 179321.6597994913, + "1525": 173743.656895921, + "1526": 168162.8997154589, + "1527": 162939.1071677937, + "1528": 157712.7423019721, + "1529": 152864.0246505283, + "1530": 148012.9267266034, + "1531": 143558.6681328222, + "1532": 139102.2306413235, + "1533": 135060.2583874763, + "1534": 131016.3171451035, + "1535": 127402.8312782956, + "1536": 123787.594038236, + "1537": 120617.1034363619, + "1538": 117445.0859238323, + "1539": 114730.3510358022, + "1540": 112014.319661255, + "1541": 109766.3021474701, + "1542": 107517.2236235386, + "1543": 105745.0430953663, + "1544": 103972.0411564012, + "1545": 102682.9391853726, + "1546": 101393.2585803679, + "1547": 100592.570119142, + "1548": 99791.5480201602, + "1549": 99482.68034804, + "1550": 99173.7252869681, + "1551": 99358.1445630642, + "1552": 99542.7229798338, + "1553": 100219.9484569414, + "1554": 100897.5789122976, + "1555": 102065.1848343232, + "1556": 103233.4399099814, + "1557": 104887.06508543, + "1558": 106541.5809641244, + "1559": 108674.9459778668, + "1560": 110809.4396654798, + "1561": 113414.3716608715, + "1562": 116020.665782677, + "1563": 119087.1307162249, + "1564": 122155.1857893838, + "1565": 125671.3280306687, + "1566": 129189.2820856209, + "1567": 133141.4712061877, + "1568": 137095.6866005586, + "1569": 141468.5711671271, + "1570": 145843.688407408, + "1571": 150620.2565671017, + "1572": 155399.2549256868, + "1573": 160560.9015441744, + "1574": 165725.1662325339, + "1575": 171251.7663201349, + "1576": 176781.1619530113, + "1577": 182651.1500889668, + "1578": 188524.1001496779, + "1579": 194714.5555911495, + "1580": 200908.127584374, + "1581": 207394.864724272, + "1582": 213884.8606802685, + "1583": 220642.5244969347, + "1584": 227403.5764700017, + "1585": 234405.7425920251, + "1586": 241411.4127763286, + "1587": 248630.6917676016, + "1588": 255853.5768352475, + "1589": 263261.7222886824, + "1590": 270673.5615382666, + "1591": 278241.5815516032, + "1592": 285813.3684404191, + "1593": 293511.6400341422, + "1594": 301213.7366538845, + "1595": 309012.1226797231, + "1596": 316814.3767239049, + "1597": 324682.3448025198, + "1598": 332554.2085639757, + "1599": 340460.9515824446, + "1600": 348371.6025113147, + "1601": 356286.160204862, + "1602": 364204.6225512421, + "1603": 372096.0036893809, + "1604": 379991.2707505853, + "1605": 387828.5754454943, + "1606": 395669.7319354712, + "1607": 403422.2735898527, + "1608": 411178.6176478317, + "1609": 418816.0440610262, + "1610": 426457.2084178555, + "1611": 433949.6215722336, + "1612": 441445.6933962665, + "1613": 448763.7674511762, + "1614": 456085.4064006634, + "1615": 463200.5034282603, + "1616": 470319.0574444096, + "1617": 477203.3404505982, + "1618": 484090.9588342891, + "1619": 490717.501618747, + "1620": 497347.2449446399, + "1621": 503690.1383663698, + "1622": 510036.0848006398, + "1623": 516070.5390296285, + "1624": 522107.8866317323, + "1625": 527810.3289832161, + "1626": 533515.4935879417, + "1627": 538863.6615531453, + "1628": 544214.3698466766, + "1629": 549187.398952896, + "1630": 554162.7763755242, + "1631": 558741.2825287948, + "1632": 563321.935657395, + "1633": 567488.0916427822, + "1634": 571656.1847279258, + "1635": 575393.7905655197, + "1636": 579133.1159211496, + "1637": 582427.6628001203, + "1638": 585723.7047680101, + "1639": 588562.4323063727, + "1640": 591402.4245429266, + "1641": 593774.3711470675, + "1642": 596147.3470063717, + "1643": 598043.3931315746, + "1644": 599940.2289458584, + "1645": 601353.1330871074, + "1646": 602766.5841738257, + "1647": 603691.0114448385, + "1648": 604615.7406982392, + "1649": 605048.2838859565, + "1650": 605480.8828403291, + "1651": 605420.0758517476, + "1652": 605359.0781332004, + "1653": 604805.4017814988, + "1654": 604251.2888951921, + "1655": 603207.1690023018, + "1656": 602162.3684322904, + "1657": 600632.1662554115, + "1658": 599101.0418845996, + "1659": 597091.0369044296, + "1660": 595079.8717924391, + "1661": 592598.2369310603, + "1662": 590115.2085179884, + "1663": 587171.9778841968, + "1664": 584227.125718117, + "1665": 580834.1550075033, + "1666": 577439.3411230812, + "1667": 573610.2608291383, + "1668": 569779.122933718, + "1669": 565529.2845546355, + "1670": 561277.1822065661, + "1671": 556623.5976599936, + "1672": 551967.5516515891, + "1673": 546928.8261364982, + "1674": 541887.4513208679, + "1675": 536483.7098914472, + "1676": 531077.141718297, + "1677": 525329.9498596869, + "1678": 519579.7649100118, + "1679": 513512.0434293036, + "1680": 507441.1742626079, + "1681": 501077.1088310085, + "1682": 494709.7534810894, + "1683": 488074.6991842477, + "1684": 481436.2256607272, + "1685": 474556.6069339197, + "1686": 467673.4531064279, + "1687": 460576.6594494917, + "1688": 453476.2287095906, + "1689": 446190.5065932097, + "1690": 438901.0597058414, + "1691": 431455.4010957516, + "1692": 424005.944667033, + "1693": 416429.9726060897, + "1694": 408850.1446076124, + "1695": 401173.9963073049, + "1696": 393493.9491087069, + "1697": 385748.1570114651, + "1698": 377998.4383829322, + "1699": 370213.8096646426, + "1700": 362425.2422189301, + "1701": 354632.7372072112, + "1702": 346836.2967569972, + "1703": 339066.9067450325, + "1704": 331293.6000556516, + "1705": 323578.224993847, + "1706": 315858.9674138682, + "1707": 308228.2939619777, + "1708": 300593.7874145645, + "1709": 293078.1678355779, + "1710": 285558.7796521492, + "1711": 278188.1120259005, + "1712": 270813.7551002454, + "1713": 263617.365329466, + "1714": 256417.3800653504, + "1715": 249423.9061398399, + "1716": 242426.9446579453, + "1717": 235664.2236336344, + "1718": 228898.1366948534, + "1719": 222393.0948337615, + "1720": 215884.8219250795, + "1721": 209663.3684297887, + "1722": 203438.8314465492, + "1723": 197525.7562085326, + "1724": 191609.7571526756, + "1725": 186028.6329180324, + "1726": 180444.7560160437, + "1727": 175217.8453547609, + "1728": 169988.3639816072, + "1729": 165136.5314274797, + "1730": 160282.3202038992, + "1731": 155824.9499118584, + "1732": 151365.4023218816, + "1733": 147320.3215677078, + "1734": 143273.2734215481, + "1735": 139656.6822458746, + "1736": 136038.3412902523, + "1737": 132864.7485645116, + "1738": 129689.6305181945, + "1739": 126971.7966848523, + "1740": 124252.6679518566, + "1741": 122001.5546648865, + "1742": 119749.3819514288, + "1743": 117974.1088157874, + "1744": 116198.0158498139, + "1745": 114905.8244306382, + "1746": 113613.0559547559, + "1747": 112809.2811983259, + "1748": 112005.1743782256, + "1749": 111693.2235574816, + "1750": 111381.1869186954, + "1751": 111562.5261864013, + "1752": 111744.0261625218, + "1753": 112418.174765141, + "1754": 113092.7299105903, + "1755": 114257.2620857136, + "1756": 115422.4449759001, + "1757": 117072.999525733, + "1758": 118724.4463370991, + "1759": 120854.7438402298, + "1760": 122986.17157238, + "1761": 125588.0391658959, + "1762": 128191.2704378442, + "1763": 131254.6740719995, + "1764": 134319.6693946638, + "1765": 137832.7534328018, + "1766": 141347.6508303944, + "1767": 145296.7848378363, + "1768": 149247.9466617689, + "1769": 153617.7791990306, + "1770": 157989.8459495956, + "1771": 162763.3651576097, + "1772": 167539.3161010194, + "1773": 172697.9168392821, + "1774": 177859.1371808386, + "1775": 183382.6944535126, + "1776": 188909.0488018028, + "1777": 194775.9971819846, + "1778": 200645.9090141931, + "1779": 206833.3277529126, + "1780": 213023.8645675989, + "1781": 219507.5680516556, + "1782": 225994.5318729716, + "1783": 232749.1650746084, + "1784": 239507.1879507664, + "1785": 246506.3264924839, + "1786": 253508.9706115742, + "1787": 260725.2250511993, + "1788": 267945.0870792668, + "1789": 275350.2110036637, + "1790": 282759.0302332576, + "1791": 290324.0317341319, + "1792": 297892.8016165101, + "1793": 305588.0577083235, + "1794": 313287.1403291706, + "1795": 321082.5138576427, + "1796": 328881.7569044711, + "1797": 336746.7154842708, + "1798": 344615.5712439347, + "1799": 352519.3077561607, + "1800": 360426.9536728333, + "1801": 368338.5078467401, + "1802": 376253.96816456, + "1803": 384142.3487637249, + "1804": 392034.6167740627, + "1805": 399868.9239047293, + "1806": 407707.0843156096, + "1807": 415456.6313745619, + "1808": 423209.9823193039, + "1809": 430844.4170999794, + "1810": 438482.5913035359, + "1811": 445972.0157824166, + "1812": 453465.1004072598, + "1813": 460780.1887378207, + "1814": 468098.843436335, + "1815": 475210.9576848723, + "1816": 482326.5303924179, + "1817": 489207.8335589864, + "1818": 496092.473570601, + "1819": 502716.0394490581, + "1820": 509342.8073335785, + "1821": 515682.7267771087, + "1822": 522025.7006949035, + "1823": 528057.1838676921, + "1824": 534091.5618724251, + "1825": 539791.036083922, + "1826": 545493.2340046022, + "1827": 550838.4367402601, + "1828": 556186.1812573065, + "1829": 561156.2480386641, + "1830": 566128.6645866178, + "1831": 570704.2113139672, + "1832": 575281.9064639675, + "1833": 579445.1059166454, + "1834": 583610.2439135418, + "1835": 587344.8961059238, + "1836": 591081.2692579519, + "1837": 594372.8653735077, + "1838": 597665.958016748, + "1839": 600501.7376678067, + "1840": 603338.7834529843, + "1841": 605707.7850402616, + "1842": 608077.8173157959, + "1843": 609970.9212889161, + "1844": 611864.8163813892, + "1845": 613274.781229692, + "1846": 614685.2944509207, + "1847": 615606.7852824951, + "1848": 616528.5795211046, + "1849": 616958.1891172758, + "1850": 617387.8559019467, + "1851": 617324.1181641095, + "1852": 617260.1911153555, + "1853": 616703.5868511008, + "1854": 616146.5474685015, + "1855": 615099.5024941871, + "1856": 614051.7782562303, + "1857": 612518.6538234963, + "1858": 610984.6086075332, + "1859": 608971.6841915307, + "1860": 606957.601051644, + "1861": 604473.0495689233, + "1862": 601987.1059396844, + "1863": 599040.9614935229, + "1864": 596093.1969174939, + "1865": 592697.3151979775, + "1866": 589299.5917043241, + "1867": 585467.6031994572, + "1868": 581633.5584900418, + "1869": 577380.8146925315, + "1870": 573125.8083202326, + "1871": 568469.3211422662, + "1872": 563810.3738939404, + "1873": 558768.7485290398, + "1874": 553724.4752523522, + "1875": 548317.8367492693, + "1876": 542908.3728884961, + "1877": 537158.2867269481, + "1878": 531405.2088576677, + "1879": 525334.5958393362, + "1880": 519260.83651565, + "1881": 512893.8823063453, + "1882": 506523.6395566608, + "1883": 499885.6992366492, + "1884": 493244.3410652122, + "1885": 486361.8390644006, + "1886": 479475.8033354782, + "1887": 472376.1291483477, + "1888": 465272.8192481525, + "1889": 457984.2193400439, + "1890": 450691.8960281818, + "1891": 443243.3623594973, + "1892": 435791.0322367682, + "1893": 428212.1878450521, + "1894": 420629.4888777272, + "1895": 412950.4709691668, + "1896": 405267.555521591, + "1897": 397518.8965333243, + "1898": 389766.3123704008, + "1899": 381978.8194730371, + "1900": 374187.3892022512, + "1901": 366392.0227181452, + "1902": 358592.7221469177, + "1903": 350820.4733640021, + "1904": 343044.3092524234, + "1905": 335326.0781158664, + "1906": 327603.9658072744, + "1907": 319970.4389716053, + "1908": 312333.0803839453, + "1909": 304814.6101069422, + "1910": 297292.3725664279, + "1911": 289918.856922726, + "1912": 282541.6533179539, + "1913": 275342.4182050989, + "1914": 268139.5889346557, + "1915": 261143.2723372741, + "1916": 254143.4695166746, + "1917": 247377.9084855367, + "1918": 240608.9828705197, + "1919": 234101.1036624975, + "1920": 227589.9947349074, + "1921": 221365.7065474487, + "1922": 215138.3361975008, + "1923": 209222.4289169565, + "1924": 203303.5991414751, + "1925": 197719.6455088352, + "1926": 192132.9405292033, + "1927": 186903.2031093584, + "1928": 181670.8962954525, + "1929": 176816.2396171134, + "1930": 171959.2055845941, + "1931": 167499.013797621, + "1932": 163036.6460254537, + "1933": 158988.7464005682, + "1934": 154938.8806939138, + "1935": 151319.4732667028, + "1936": 147698.3173672418, + "1937": 144521.9110041042, + "1938": 141343.9806255768, + "1939": 138623.3357639571, + "1940": 135901.3973053644, + "1941": 133647.4755942273, + "1942": 131392.4957567834, + "1943": 129614.4167960891, + "1944": 127835.51930275, + "1945": 126540.5246526514, + "1946": 125244.9542410462, + "1947": 124438.3788428518, + "1948": 123631.4726737057, + "1949": 123316.7237953963, + "1950": 123001.8903892881, + "1951": 123180.4341786804, + "1952": 123359.139964262, + "1953": 124030.4956628846, + "1954": 124702.259189649, + "1955": 125864.0010301702, + "1956": 127026.3948686094, + "1957": 128674.1616483239, + "1958": 130322.8219699758, + "1959": 132450.3342625737, + "1960": 134578.9780621508, + "1961": 137178.0629998331, + "1962": 139778.5128914689, + "1963": 142839.1364196159, + "1964": 145901.3529093604, + "1965": 149411.6593864532, + "1966": 152923.7804936625, + "1967": 156870.1394801723, + "1968": 160818.5275514141, + "1969": 165185.5876030186, + "1970": 169554.8831337535, + "1971": 174325.6323865592, + "1972": 179098.8146381791, + "1973": 184254.6479468683, + "1974": 189413.102119867, + "1975": 194933.8944837998, + "1976": 200457.4851819681, + "1977": 206321.6711694508, + "1978": 212188.8218651886, + "1979": 218373.4807224727, + "1980": 224561.2589095669, + "1981": 231042.205018685, + "1982": 237526.4127165267, + "1983": 244278.2910449665, + "1984": 251033.560297019, + "1985": 258029.946462538, + "1986": 265029.8394521541, + "1987": 272243.3440078478, + "1988": 279460.4573963466, + "1989": 286862.8339243592, + "1990": 294268.9069995761, + "1991": 301831.1635869052, + "1992": 309397.1897953957, + "1993": 317089.7034518063, + "1994": 324786.0448745642, + "1995": 332578.6784410909, + "1996": 340375.1827609495, + "1997": 348237.4038475879, + "1998": 356103.5233467337, + "1999": 364004.5248299206, + "2000": 371909.4369478708, + "2001": 379818.2585522103, + "2002": 387730.9875284586, + "2003": 395616.6380128894, + "2004": 403506.1771341735, + "2005": 411337.7566003113, + "2006": 419173.190570034, + "2007": 426920.0124100471, + "2008": 434670.6393569173, + "2009": 442302.3513596384, + "2010": 449937.8040040098, + "2011": 457424.5081413279, + "2012": 464914.8736410852, + "2013": 472227.2440618929, + "2014": 479543.1820648444, + "2015": 486652.5808308677, + "2016": 493765.4392678081, + "2017": 500644.0293745421, + "2018": 507525.9575359557, + "2019": 514146.8127727097, + "2020": 520770.8712228906, + "2021": 527108.0824383122, + "2022": 533448.3493330978, + "2023": 539477.1266868465, + "2024": 545508.8000753802, + "2025": 551205.5708723913, + "2026": 556905.0665791732, + "2027": 562247.568300396, + "2028": 567592.6130013471, + "2029": 572559.9811638277, + "2030": 577529.7002890024, + "2031": 582102.5507885517, + "2032": 586677.5509046132, + "2033": 590838.0565160975, + "2034": 595000.5018634307, + "2035": 598732.4625967664, + "2036": 602466.1454791531, + "2037": 605755.0525133617, + "2038": 609045.4572624395, + "2039": 611878.5502054127, + "2040": 614712.9104674748, + "2041": 617079.2277155017, + "2042": 619446.5768345468, + "2043": 621336.9988328362, + "2044": 623228.2131310358, + "2045": 624635.4983645229, + "2046": 626043.3331492948, + "2047": 626962.1467216747, + "2048": 627881.2648772558, + "2049": 628308.1995654705, + "2050": 628735.1926161636, + "2051": 628668.7823172358, + "2052": 628602.1838791878, + "2053": 628042.9093963469, + "2054": 627483.2009647812, + "2055": 626433.4881100341, + "2056": 625383.0971590932, + "2057": 623847.3071797402, + "2058": 622310.5975824405, + "2059": 620295.0099493031, + "2060": 618278.2647554033, + "2061": 615791.0523807131, + "2062": 613302.4490204712, + "2063": 610353.6460031973, + "2064": 607403.2240148725, + "2065": 604004.6860408033, + "2066": 600604.307449269, + "2067": 596769.6650021222, + "2068": 592932.9675049589, + "2069": 588677.572073165, + "2070": 584419.9152189802, + "2071": 579760.7787104604, + "2072": 575099.18328185, + "2073": 570054.9108858709, + "2074": 565007.9917262497, + "2075": 559598.7084873181, + "2076": 554186.6010367225, + "2077": 548433.8724303209, + "2078": 542678.1532600999, + "2079": 536604.9000836859, + "2080": 530528.5017437219, + "2081": 524158.909658892, + "2082": 517786.0301733837, + "2083": 511145.4542562004, + "2084": 504501.4616251955, + "2085": 497616.3263013728, + "2086": 490727.6583849501, + "2087": 483625.3531447861, + "2088": 476519.4133249809, + "2089": 469228.1846296439, + "2090": 461933.2336618942, + "2091": 454482.0734676237, + "2092": 447027.1179485723, + "2093": 439445.6492887608, + "2094": 431860.3271805319, + "2095": 424178.6872572245, + "2096": 416493.1509200258, + "2097": 408741.8721662288, + "2098": 400986.669360837, + "2099": 393196.5589430379, + "2100": 385402.5122728216, + "2101": 377604.5305092636, + "2102": 369802.6157775369, + "2103": 362027.7539520511, + "2104": 354248.9779148081, + "2105": 346528.1359684713, + "2106": 338803.4139649634, + "2107": 331167.2785482234, + "2108": 323527.3124923194, + "2109": 316006.2358588829, + "2110": 308481.3930727302, + "2111": 301105.2732931708, + "2112": 293725.4666613094, + "2113": 286523.6296291215, + "2114": 279318.1995460913, + "2115": 272319.2832418596, + "2116": 265316.8818191391, + "2117": 258548.7232896024, + "2118": 251777.2012789034, + "2119": 245266.7267769119, + "2120": 238753.0236560621, + "2121": 232526.1423750515, + "2122": 226296.1800302588, + "2123": 220377.6818525779, + "2124": 214456.2622766698, + "2125": 208869.7199393161, + "2126": 203280.427349688, + "2127": 198048.1034135697, + "2128": 192813.2111761201, + "2129": 187955.9701659752, + "2130": 183096.3528923969, + "2131": 178633.5789541223, + "2132": 174168.6301194225, + "2133": 170118.1505197864, + "2134": 166065.7059251774, + "2135": 162443.7206958231, + "2136": 158819.9880790463, + "2137": 155641.0060824384, + "2138": 152460.5011533049, + "2139": 149737.2828229634, + "2140": 147012.7719765546, + "2141": 144756.2789575294, + "2142": 142498.7288911492, + "2143": 140718.0807794951, + "2144": 138936.6152121989, + "2145": 137639.0535641731, + "2146": 136340.917229699, + "2147": 135531.7769827236, + "2148": 134722.3070379154, + "2149": 134404.9954560945, + "2150": 134087.6004176589, + "2151": 134263.5836449419, + "2152": 134439.7299376681, + "2153": 135108.5272117258, + "2154": 135777.7333812538, + "2155": 136936.9189309059, + "2156": 138096.7575438839, + "2157": 139741.9701625863, + "2158": 141388.0773867179, + "2159": 143513.0376443309, + "2160": 145639.1304705034, + "2161": 148235.6654954078, + "2162": 150833.5665339394, + "2163": 153891.6422677042, + "2164": 156951.3120208384, + "2165": 160459.0728181434, + "2166": 163968.6493014392, + "2167": 167912.4647189629, + "2168": 171858.3102752003, + "2169": 176222.8288648374, + "2170": 180589.5839856984, + "2171": 185357.7938797814, + "2172": 190128.4378228886, + "2173": 195281.7338723351, + "2174": 200437.6518344223, + "2175": 205955.9090348369, + "2176": 211476.9656159436, + "2177": 217338.6185318862, + "2178": 223203.2372006708, + "2179": 229385.3650746554, + "2180": 235570.6133211721, + "2181": 242049.0305315033, + "2182": 248530.7103714195, + "2183": 255280.0618818662, + "2184": 262032.8053549305, + "2185": 269026.66677954, + "2186": 276024.0360653999, + "2187": 283235.0179535667, + "2188": 290449.609709845, + "2189": 297849.4656400215, + "2190": 305253.0191508659, + "2191": 312812.7572063666, + "2192": 320376.2659146542, + "2193": 328066.2631015703, + "2194": 335760.0890846255, + "2195": 343550.2082403263, + "2196": 351344.1991773218, + "2197": 359203.907908147, + "2198": 367067.5160776175, + "2199": 374966.0072563567, + "2200": 382868.4100941768, + "2201": 390774.7234417956, + "2202": 398684.9451838252, + "2203": 406568.0894556328, + "2204": 414455.1233849844, + "2205": 422284.1986789761, + "2206": 430117.1294954363, + "2207": 437861.4492001684, + "2208": 445609.5750288384, + "2209": 453238.7869295406, + "2210": 460871.7404871757, + "2211": 468355.9465521427, + "2212": 475843.8149930375, + "2213": 483153.6893675764, + "2214": 490467.1323359582, + "2215": 497574.0370782179, + "2216": 504684.4025013091, + "2217": 511560.5006032168, + "2218": 518439.9377679375, + "2219": 525058.3030152431, + "2220": 531679.8724823324, + "2221": 538014.5957201326, + "2222": 544352.3756418813, + "2223": 550378.6670262933, + "2224": 556407.8554483072, + "2225": 562102.1422807329, + "2226": 567799.1550239825, + "2227": 573139.174781846, + "2228": 578481.7385187318, + "2229": 583446.626715563, + "2230": 588413.8668726272, + "2231": 592984.2394007288, + "2232": 597556.7625411309, + "2233": 601714.7921718701, + "2234": 605874.7625325, + "2235": 609604.2492723023, + "2236": 613335.4591534549, + "2237": 616621.8941778592, + "2238": 619909.827907694, + "2239": 622740.4508211181, + "2240": 625572.3420424587, + "2241": 627936.1912377262, + "2242": 630301.0732911099, + "2243": 632189.0292099725, + "2244": 634077.7784141179, + "2245": 635482.599538062, + "2246": 636887.9711969421, + "2247": 637804.3226262224, + "2248": 638720.9796206382, + "2249": 639145.4541287647, + "2250": 639569.987979591, + "2251": 639501.1194601627, + "2252": 639432.0637801267, + "2253": 638870.3330329576, + "2254": 638308.1693138718, + "2255": 637256.0021475616, + "2256": 636203.1578601651, + "2257": 634664.9155186152, + "2258": 633125.7545325297, + "2259": 631107.7164831711, + "2260": 629088.5218447689, + "2261": 626598.8609964506, + "2262": 624107.8101326114, + "2263": 621156.5605809283, + "2264": 618203.6930265409, + "2265": 614802.7104539155, + "2266": 611399.8882304915, + "2267": 607562.8031172833, + "2268": 603723.6639190493, + "2269": 599465.8277503391, + "2270": 595205.731122557, + "2271": 590544.1558029244, + "2272": 585880.1225248523, + "2273": 580833.4132402303, + "2274": 575784.0581519534, + "2275": 570372.3399435232, + "2276": 564957.7984817565, + "2277": 559202.636821683, + "2278": 553444.4855544621, + "2279": 547368.8012368935, + "2280": 541289.9727107951, + "2281": 534917.9513940266, + "2282": 528542.6436299522, + "2283": 521899.6403867528, + "2284": 515253.2213814605, + "2285": 508365.6606342586, + "2286": 501474.5682445457, + "2287": 494369.8394803618, + "2288": 487261.4770849898, + "2289": 479967.8267617226, + "2290": 472670.455112864, + "2291": 465216.8751834915, + "2292": 457759.5008745312, + "2293": 450175.6143691916, + "2294": 442587.875359004, + "2295": 434903.8194764965, + "2296": 427215.8681220472, + "2297": 419462.1752921401, + "2298": 411704.5593509714, + "2299": 403912.0367369218, + "2300": 396115.5788091759, + "2301": 388315.1867260045, + "2302": 380510.862611777, + "2303": 372733.5923401, + "2304": 364952.4087921739, + "2305": 357229.1602698612, + "2306": 349502.0326242848, + "2307": 341863.4924985848, + "2308": 334221.1226660317, + "2309": 326697.6431874597, + "2310": 319170.3984868893, + "2311": 311791.8777228351, + "2312": 304409.6710356074, + "2313": 297205.434876389, + "2314": 289997.606593872, + "2315": 282996.2930169057, + "2316": 275991.4952474127, + "2317": 269220.9412962765, + "2318": 262447.0247883626, + "2319": 255934.1567127533, + "2320": 249418.0609410966, + "2321": 243188.7879313043, + "2322": 236956.4347789709, + "2323": 231035.5467142064, + "2324": 225111.7381708893, + "2325": 219522.8077850197, + "2326": 213931.1280649877, + "2327": 208696.4179157979, + "2328": 203459.1403818305, + "2329": 198599.5149909433, + "2330": 193737.5142516214, + "2331": 189272.3577618257, + "2332": 184805.0272890522, + "2333": 180752.1669640157, + "2334": 176697.3425559064, + "2335": 173072.9784241794, + "2336": 169446.8678153864, + "2337": 166265.508736348, + "2338": 163082.6276336004, + "2339": 160357.0340376925, + "2340": 157630.1488329974, + "2341": 155371.2823621991, + "2342": 153111.3597497933, + "2343": 151328.3399970962, + "2344": 149544.5036929754, + "2345": 148244.5722115807, + "2346": 146944.0669464309, + "2347": 146132.558670712, + "2348": 145320.721598332, + "2349": 145001.0437893517, + "2350": 144681.2834234105, + "2351": 144854.9022220843, + "2352": 145028.6849843409, + "2353": 145695.1196253129, + "2354": 146361.9640583841, + "2355": 147518.7887674546, + "2356": 148676.2674349729, + "2357": 150319.1210025856, + "2358": 151962.8700692462, + "2359": 154085.4730622565, + "2360": 156209.2095159453, + "2361": 158803.3890597363, + "2362": 161398.9355077773, + "2363": 164454.6575409276, + "2364": 167511.9744825775, + "2365": 171017.3833567834, + "2366": 174524.6088046214, + "2367": 178466.0740735854, + "2368": 182409.570367419, + "2369": 186771.7405800668, + "2370": 191136.1482086124, + "2371": 195902.0114943145, + "2372": 200670.3097122366, + "2373": 205821.2609189558, + "2374": 210974.8349200366, + "2375": 216490.7490404299, + "2376": 222009.4634217652, + "2377": 227868.7750174518, + "2378": 233731.0532447626, + "2379": 239910.841555323, + "2380": 246093.7511157335, + "2381": 252569.8305165458, + "2382": 259049.1734228003, + "2383": 265796.1888747138, + "2384": 272546.597163645, + "2385": 279538.1242777944, + "2386": 286533.1601261409, + "2387": 293741.8094490152, + "2388": 300954.0695114975, + "2389": 308351.5946186504, + "2390": 315752.8181765211, + "2391": 323310.2271483757, + "2392": 330871.4076416238, + "2393": 338559.0774813864, + "2394": 346250.576984455, + "2395": 354038.3705266173, + "2396": 361830.0367158047, + "2397": 369687.4215638353, + "2398": 377548.7067148088, + "2399": 385444.8757386333, + "2400": 393344.9572844067, + "2401": 401248.9502021335, + "2402": 409156.8523757131, + "2403": 417037.677939801, + "2404": 424922.3940214522, + "2405": 432749.152327053, + "2406": 440579.7670137224, + "2407": 448321.7714465598, + "2408": 456067.5828605091, + "2409": 463694.4812029776, + "2410": 471325.1220581462, + "2411": 478807.0162757162, + "2412": 486292.5737235757, + "2413": 493600.1379587392, + "2414": 500911.2716407026, + "2415": 508015.8679487997, + "2416": 515123.9257892829, + "2417": 521997.7171594377, + "2418": 528874.8484425612, + "2419": 535490.9086577273, + "2420": 542110.1739414373, + "2421": 548442.5938439217, + "2422": 554778.0712777226, + "2423": 560802.0610208597, + "2424": 566828.9486475777, + "2425": 572520.9355299929, + "2426": 578215.6491678254, + "2427": 583553.3706641734, + "2428": 588893.6369827546, + "2429": 593856.228603802, + "2430": 598821.1730269142, + "2431": 603389.2506622075, + "2432": 607959.4797502595, + "2433": 612115.2161684121, + "2434": 616272.8941555442, + "2435": 620000.0893602446, + "2436": 623729.0085440109, + "2437": 627013.1537080591, + "2438": 630298.7984138867, + "2439": 633127.1331389698, + "2440": 635956.7370069553, + "2441": 638318.2996831732, + "2442": 640680.8960511333, + "2443": 642566.5671175201, + "2444": 644453.0323014597, + "2445": 645855.5702367913, + "2446": 647258.6595379759, + "2447": 648172.7294398024, + "2448": 649087.1057363315, + "2449": 649509.3003754651, + "2450": 649931.5551855192, + "2451": 649860.4084528673, + "2452": 649789.0753864852, + "2453": 649225.0680791768, + "2454": 648660.6286254888, + "2455": 647606.186549445, + "2456": 646551.0681765153, + "2457": 645010.5525729641, + "2458": 643469.1191477464, + "2459": 641448.8094814541, + "2460": 639427.3440476554, + "2461": 636935.4132248118, + "2462": 634442.0932066562, + "2463": 631488.5753202025, + "2464": 628533.440249929, + "2465": 625130.1909796406, + "2466": 621725.1028761169, + "2467": 617885.7526997126, + "2468": 614044.3492545278, + "2469": 609784.2496544542, + "2470": 605521.8904102389, + "2471": 600858.0532884473, + "2472": 596191.7590218348, + "2473": 591142.7895616363, + "2474": 586091.175110093, + "2475": 580677.1983500532, + "2476": 575260.3991476814, + "2477": 569502.9805573559, + "2478": 563742.573169585, + "2479": 557664.6335405186, + "2480": 551583.5505113251, + "2481": 545209.2754992159, + "2482": 538831.7148469039, + "2483": 532186.4595219353, + "2484": 525537.7892406795, + "2485": 518647.978022686, + "2486": 511754.6359667031, + "2487": 504647.6583401295, + "2488": 497537.0478856039, + "2489": 490241.1503057773, + "2490": 482941.5322023117, + "2491": 475485.7066196438, + "2492": 468026.0874580596, + "2493": 460439.9569001284, + "2494": 452849.9746367429, + "2495": 445163.6762997934, + "2496": 437473.4832890208, + "2497": 429717.549600273, + "2498": 421957.6935971106, + "2499": 414162.9317172797, + "2500": 406364.2353193305, + "2501": 398561.6055609007, + "2502": 390755.0445657272, + "2503": 382975.538206785, + "2504": 375192.1193646433, + "2505": 367466.6363405343, + "2506": 359737.2749849514, + "2507": 352096.5019404019, + "2508": 344451.8999795424, + "2509": 336926.1891625604, + "2510": 329396.7139128638, + "2511": 322015.9633883345, + "2512": 314631.5277286611, + "2513": 307425.0633844003, + "2514": 300215.0077036213, + "2515": 293211.4675145506, + "2516": 286204.4439184885, + "2517": 279431.6649256971, + "2518": 272655.5241604215, + "2519": 266140.4326111237, + "2520": 259622.1141488328, + "2521": 253390.619230842, + "2522": 247156.0449521283, + "2523": 241232.9365421846, + "2524": 235306.9084342731, + "2525": 229715.7592637784, + "2526": 224121.8615384758, + "2527": 218884.934162756, + "2528": 213645.4401803855, + "2529": 208783.5991186098, + "2530": 203919.3834853018, + "2531": 199452.0128778117, + "2532": 194982.4690630223, + "2533": 190927.396171047, + "2534": 186870.3599704558, + "2535": 183243.7848201036, + "2536": 179615.4639659304, + "2537": 176431.895414152, + "2538": 173246.8056106975, + "2539": 170519.0040855107, + "2540": 167789.9117223599, + "2541": 165528.8388633252, + "2542": 163266.710632299, + "2543": 161481.4860299949, + "2544": 159695.4456446787, + "2545": 158393.310849899, + "2546": 157090.6030385742, + "2547": 156276.8929832905, + "2548": 155462.8548973569, + "2549": 155140.976840236, + "2550": 154819.0169909694, + "2551": 154990.4370705363, + "2552": 155162.0218773081, + "2553": 155826.2593258221, + "2554": 156490.9073288672, + "2555": 157645.5363697494, + "2556": 158800.8201303238, + "2557": 160441.4795516452, + "2558": 162083.0352320719, + "2559": 164203.4455983189, + "2560": 166324.9901841211, + "2561": 168916.9786183139, + "2562": 171510.3347144552, + "2563": 174563.8671528162, + "2564": 177618.9952561989, + "2565": 181122.216048073, + "2566": 184627.2541689279, + "2567": 188566.5328656719, + "2568": 192507.8433414634, + "2569": 196867.8284896627, + "2570": 201230.0518067697, + "2571": 205993.7315334602, + "2572": 210759.8469442151, + "2573": 215908.6160950302, + "2574": 221060.0087908889, + "2575": 226573.7423561619, + "2576": 232090.276931899, + "2577": 237947.4094709307, + "2578": 243807.5093899516, + "2579": 249985.1201400097, + "2580": 256165.8528871286, + "2581": 262639.7562212838, + "2582": 269116.9238069435, + "2583": 275861.7646837378, + "2584": 282609.9991424676, + "2585": 289599.3531707483, + "2586": 296592.2166769916, + "2587": 303798.6944009535, + "2588": 311008.7836071438, + "2589": 318404.138600054, + "2590": 325803.1927851613, + "2591": 333358.4331251621, + "2592": 340917.4457268976, + "2593": 348602.9484149204, + "2594": 356292.2815054546, + "2595": 364077.9093737211, + "2596": 371867.4106270853, + "2597": 379722.6312767998, + "2598": 387581.7529663995, + "2599": 395475.7592652285, + "2600": 403373.6788218209, + "2601": 411275.5104856189, + "2602": 419181.2521399593, + "2603": 427059.9179189363, + "2604": 434942.4749490442, + "2605": 442767.0749361088, + "2606": 450595.5320366899, + "2607": 458335.3796153278, + "2608": 466079.0349064084, + "2609": 473703.7778567814, + "2610": 481332.2640500709, + "2611": 488812.0043354215, + "2612": 496295.4085801663, + "2613": 503600.8203407645, + "2614": 510909.8022761581, + "2615": 518012.2475651267, + "2616": 525118.1551133699, + "2617": 531989.796917621, + "2618": 538864.7793606255, + "2619": 545478.6914609061, + "2620": 552095.8093544135, + "2621": 558426.0825908289, + "2622": 564759.4140821449, + "2623": 570781.2586058328, + "2624": 576806.0017355894, + "2625": 582495.844842984, + "2626": 588188.4154271899, + "2627": 593523.9945907596, + "2628": 598862.1192968654, + "2629": 603822.5700251957, + "2630": 608785.3742748051, + "2631": 613351.3124552664, + "2632": 617919.4028066146, + "2633": 622073.0012056496, + "2634": 626228.5418907086, + "2635": 629953.6005098396, + "2636": 633680.3838240001, + "2637": 636962.3938338666, + "2638": 640245.9041003974, + "2639": 643072.1051005304, + "2640": 645899.575957375, + "2641": 648259.0063357239, + "2642": 650619.4711185506, + "2643": 652503.0113120038, + "2644": 654387.3463346743, + "2645": 655787.7548198667, + "2646": 657188.7153815083, + "2647": 658100.6572538546, + "2648": 659012.9062304336, + "2649": 659432.9742586149, + "2650": 659853.1031661835, + "2651": 659779.8312389818, + "2652": 659706.3736854554, + "2653": 659140.2425978787, + "2654": 658573.6800702694, + "2655": 657517.1156261229, + "2656": 656459.8755903813, + "2657": 654917.2390287821, + "2658": 653373.6853497536, + "2659": 651351.2561333618, + "2660": 649327.6718526497, + "2661": 646833.6228855541, + "2662": 644338.1854252837, + "2663": 641382.5507983293, + "2664": 638425.2996886461, + "2665": 635019.9350795168, + "2666": 631612.7323371993, + "2667": 627771.2682215275, + "2668": 623927.7515360808, + "2669": 619665.5393942312, + "2670": 615401.0683062066, + "2671": 610735.1200380538, + "2672": 606066.7153220102, + "2673": 601015.6361087934, + "2674": 595961.9126001277, + "2675": 590545.8274783454, + "2676": 585126.9206090953, + "2677": 579367.3950462404, + "2678": 573604.881379775, + "2679": 567524.836165335, + "2680": 561441.6482435758, + "2681": 555065.269031196, + "2682": 548685.6048703965, + "2683": 542038.2467282122, + "2684": 535387.4743205016, + "2685": 528495.561666304, + "2686": 521600.1188638579, + "2687": 514491.0411800534, + "2688": 507378.3313570202, + "2689": 500080.3350969019, + "2690": 492778.6190008529, + "2691": 485320.6961128034, + "2692": 477858.9803325332, + "2693": 470270.7538421061, + "2694": 462678.6763319099, + "2695": 454990.2834333307, + "2696": 447297.9965456055, + "2697": 439539.969664079, + "2698": 431778.0211518094, + "2699": 423981.1674460405, + "2700": 416180.3799048215, + "2701": 408375.6596852887, + "2702": 400567.0089106793, + "2703": 392785.4134534682, + "2704": 384999.9061937257, + "2705": 377272.3354321854, + "2706": 369540.8870188428, + "2707": 361898.0275957079, + "2708": 354251.3399349402, + "2709": 346723.5440962314, + "2710": 339191.9845024935, + "2711": 331809.1503111133, + "2712": 324422.6316612851, + "2713": 317214.0850030715, + "2714": 310001.9476840486, + "2715": 302996.3265319497, + "2716": 295987.2226475832, + "2717": 289212.3640407195, + "2718": 282434.1443351125, + "2719": 275916.9745187339, + "2720": 269396.5784621226, + "2721": 263163.0066220828, + "2722": 256926.3560931023, + "2723": 251001.1721041859, + "2724": 245073.0690881082, + "2725": 239479.8456797666, + "2726": 233883.8743864498, + "2727": 228644.8741120627, + "2728": 223403.3078998861, + "2729": 218539.3952766808, + "2730": 213673.1087498355, + "2731": 209203.6679162163, + "2732": 204732.0545422231, + "2733": 200674.9127574866, + "2734": 196615.8083300946, + "2735": 192987.1656184206, + "2736": 189356.7778679236, + "2737": 186171.143084339, + "2738": 182983.987713116, + "2739": 180254.1212837192, + "2740": 177522.964679438, + "2741": 175259.8282418745, + "2742": 172995.6370944433, + "2743": 171208.3502373808, + "2744": 169420.2482584765, + "2745": 168116.0525308028, + "2746": 166811.2844468028, + "2747": 165995.5147785876, + "2748": 165179.4177389921, + "2749": 164855.4813870049, + "2750": 164531.4639011944, + "2751": 164700.8270020671, + "2752": 164870.3554875222, + "2753": 165532.5372716252, + "2754": 166195.1302666942, + "2755": 167347.7049555645, + "2756": 168500.9350196212, + "2757": 170139.5413994497, + "2758": 171779.0446929394, + "2759": 173897.4033263367, + "2760": 176016.8968329089, + "2761": 178606.834841024, + "2762": 181198.141163773, + "2763": 184249.6244809609, + "2764": 187302.7041149244, + "2765": 190803.8770886675, + "2766": 194306.8680422152, + "2767": 198244.1002220118, + "2768": 202183.3648307519, + "2769": 206541.304761333, + "2770": 210901.4835097924, + "2771": 215663.1193163438, + "2772": 220427.1914550069, + "2773": 225573.9179813165, + "2774": 230723.2686997957, + "2775": 236234.9609343551, + "2776": 241749.4548255854, + "2777": 247604.5473258582, + "2778": 253462.60785141, + "2779": 259638.1798528309, + "2780": 265816.8744956871, + "2781": 272288.7403694978, + "2782": 278763.871138275, + "2783": 285506.6758411928, + "2784": 292252.8747685972, + "2785": 299240.193907649, + "2786": 306231.0231663059, + "2787": 313435.46728387, + "2788": 320643.5235243985, + "2789": 328036.8461919301, + "2790": 335433.86869149, + "2791": 342987.0779853234, + "2792": 350544.0601798201, + "2793": 358227.5330990825, + "2794": 365914.8370588846, + "2795": 373698.4364339983, + "2796": 381485.9098313396, + "2797": 389339.1032617129, + "2798": 397196.1983682053, + "2799": 405088.1787197133, + "2800": 412984.0729643245, + "2801": 420883.8799510343, + "2802": 428787.5975627339, + "2803": 436664.2399330722, + "2804": 444544.7741880986, + "2805": 452367.3520331949, + "2806": 460193.7876244767, + "2807": 467931.6143260411, + "2808": 475673.2493718314, + "2809": 483295.9727082548, + "2810": 490922.4399184937, + "2811": 498400.1618512515, + "2812": 505881.5483734204, + "2813": 513184.9430410195, + "2814": 520491.9085125507, + "2815": 527592.3379663548, + "2816": 534696.2303076924, + "2817": 541565.8575328586, + "2818": 548438.8260241611, + "2819": 555050.7247996852, + "2820": 561665.8299949451, + "2821": 567994.0911591855, + "2822": 574325.4112039634, + "2823": 580345.244906315, + "2824": 586367.9778395019, + "2825": 592055.8113746594, + "2826": 597746.3730105271, + "2827": 603079.943849224, + "2828": 608416.0608534897, + "2829": 613374.5045025803, + "2830": 618335.3022951185, + "2831": 622899.2346402459, + "2832": 627465.3197775668, + "2833": 631616.9135834504, + "2834": 635770.4502958044, + "2835": 639493.5055622472, + "2836": 643218.2861433077, + "2837": 646498.2940392337, + "2838": 649779.8028105559, + "2839": 652604.0029337847, + "2840": 655429.4735316025, + "2841": 657786.9042683756, + "2842": 660145.3700266517, + "2843": 662026.9118121538, + "2844": 663909.2490430479, + "2845": 665307.6603522141, + "2846": 666706.6243531556, + "2847": 667616.5702797043, + "2848": 668526.8239249653, + "2849": 668944.8972358857, + "2850": 669363.0320398281, + "2851": 669287.7666222136, + "2852": 669212.3161910665, + "2853": 668644.1928382406, + "2854": 668075.6386573336, + "2855": 667017.0831714208, + "2856": 665957.8527050253, + "2857": 664413.2263234659, + "2858": 662867.6834347526, + "2859": 660843.2656185336, + "2860": 658817.6933474345, + "2861": 656321.6569989753, + "2862": 653824.2327659484, + "2863": 650866.6119744285, + "2864": 647907.3753079555, + "2865": 644500.0257493972, + "2866": 641090.8386645969, + "2867": 637247.3908129745, + "2868": 633401.890997696, + "2869": 629137.6963317201, + "2870": 624871.2433248622, + "2871": 620203.313742757, + "2872": 615532.92831723, + "2873": 610479.8689985877, + "2874": 605424.1659881436, + "2875": 600006.1019678197, + "2876": 594585.2168028551, + "2877": 588823.7135467036, + "2878": 583059.2227889501, + "2879": 576977.2010848224, + "2880": 570892.037274568, + "2881": 564513.6827744778, + "2882": 558132.0439263457, + "2883": 551482.7116968, + "2884": 544829.965801293, + "2885": 537936.0802584586, + "2886": 531038.6651661299, + "2887": 523927.6157907923, + "2888": 516812.9348741712, + "2889": 509512.9681180061, + "2890": 502209.2821230484, + "2891": 494749.3899328251, + "2892": 487285.7054467138, + "2893": 479695.510846376, + "2894": 472101.4658217981, + "2895": 464411.1060039649, + "2896": 456716.852791713, + "2897": 448956.8601799867, + "2898": 441192.9465314445, + "2899": 433394.1282829308, + "2900": 425591.3767920959, + "2901": 417784.6932156782, + "2902": 409974.0796765163, + "2903": 402190.5220466879, + "2904": 394403.0532058663, + "2905": 386673.5214543882, + "2906": 378940.1126418533, + "2907": 371295.2934098755, + "2908": 363646.6465302194, + "2909": 356116.8920621817, + "2910": 348583.3744282799, + "2911": 341198.5827855071, + "2912": 333810.1072726638, + "2913": 326599.6043394197, + "2914": 319385.5113329584, + "2915": 312377.9350806209, + "2916": 305366.8766828238, + "2917": 298590.0641489464, + "2918": 291809.8911023515, + "2919": 285290.7685306206, + "2920": 278768.4203039026, + "2921": 272532.8968786121, + "2922": 266294.2953488479, + "2923": 260367.160943226, + "2924": 254437.1080941328, + "2925": 248841.935436078, + "2926": 243244.0154759631, + "2927": 238003.0671173056, + "2928": 232759.5534030003, + "2929": 227893.6938594218, + "2930": 223025.4609935731, + "2931": 218554.0744019352, + "2932": 214080.5158505232, + "2933": 210021.4294685835, + "2934": 205960.3810238201, + "2935": 202329.7948742229, + "2936": 198697.4642648679, + "2937": 195509.8872011081, + "2938": 192320.7901280102, + "2939": 189588.9825746574, + "2940": 186855.8854239576, + "2941": 184590.8090171319, + "2942": 182324.6784772147, + "2943": 180535.4528040624, + "2944": 178745.4125850846, + "2945": 177439.2791929746, + "2946": 176132.5740197969, + "2947": 175314.8678372842, + "2948": 174496.8348578934, + "2949": 174170.9631402357, + "2950": 173845.0108625026, + "2951": 174012.4397448236, + "2952": 174180.0345847219, + "2953": 174840.2832958872, + "2954": 175500.9437902622, + "2955": 176651.5865503072, + "2956": 177802.8852570329, + "2957": 179439.5608506503, + "2958": 181077.1339286754, + "2959": 183193.5629169811, + "2960": 185311.1273484619, + "2961": 187899.1368511133, + "2962": 190488.5152376546, + "2963": 193538.0711875187, + "2964": 196589.2240226712, + "2965": 200088.4707657456, + "2966": 203589.5360563963, + "2967": 207524.8431406975, + "2968": 211462.1832209746, + "2969": 215818.1991897557, + "2970": 220176.4545427094, + "2971": 224936.1675196812, + "2972": 229698.3173943229, + "2973": 234843.1222218015, + "2974": 239990.5518062733, + "2975": 245500.3234712823, + "2976": 251012.8973570527, + "2977": 256866.0704155904, + "2978": 262722.2120627663, + "2979": 268895.8657488056, + "2980": 275072.6426389099, + "2981": 281542.5913222338, + "2982": 288015.8054624259, + "2983": 294756.6940982966, + "2984": 301500.9775198292, + "2985": 308486.3817138215, + "2986": 315475.2965878692, + "2987": 322677.8268809126, + "2988": 329883.9698566475, + "2989": 337275.3798187515, + "2990": 344670.4901718893, + "2991": 352221.7878779458, + "2992": 359776.859042951, + "2993": 367458.4214906481, + "2994": 375143.815536452, + "2995": 382925.5055547757, + "2996": 390711.0701521774, + "2997": 398562.3553391035, + "2998": 406417.5427582837, + "2999": 414307.6159782574, + "3000": 422201.6036467559, + "3001": 430099.504612418, + "3002": 438001.3167577793, + "3003": 445876.0542161334, + "3004": 453754.6841131744, + "3005": 461575.3581539294, + "3006": 469399.8904941598, + "3007": 477135.8144976092, + "3008": 484875.547397867, + "3009": 492496.3691409876, + "3010": 500120.9353098005, + "3011": 507596.7567526571, + "3012": 515076.2433360973, + "3013": 522377.738615789, + "3014": 529682.805249883, + "3015": 536781.3364163691, + "3016": 543883.3310201578, + "3017": 550751.0610571941, + "3018": 557622.1329094361, + "3019": 564232.1355946201, + "3020": 570845.3452479115, + "3021": 577171.7114182065, + "3022": 583501.1370167139, + "3023": 589519.0768201224, + "3024": 595539.9164013466, + "3025": 601225.8571311745, + "3026": 606914.5265079994, + "3027": 612246.2056335943, + "3028": 617580.4314703529, + "3029": 622536.9844971861, + "3030": 627495.8922123717, + "3031": 632057.9350247065, + "3032": 636622.1311734507, + "3033": 640771.8365346297, + "3034": 644923.4853458077, + "3035": 648644.6532542602, + "3036": 652367.5470201732, + "3037": 655645.6686434523, + "3038": 658925.2916842863, + "3039": 661747.6066188441, + "3040": 664571.1925694667, + "3041": 666926.7392001798, + "3042": 669283.3213931907, + "3043": 671162.9801538823, + "3044": 673043.4349000808, + "3045": 674439.9642643272, + "3046": 675837.0468597856, + "3047": 676745.1119199494, + "3048": 677653.4852375857, + "3049": 678069.6787593036, + "3050": 678485.9343121285, + "3051": 678408.7901811441, + "3052": 678331.4615740383, + "3053": 677761.4605823284, + "3054": 677191.0292992761, + "3055": 676130.5972476213, + "3056": 675069.4907515518, + "3057": 673522.9888760516, + "3058": 671975.5710287961, + "3059": 669949.2787890997, + "3060": 667921.8326292539, + "3061": 665423.9229264455, + "3062": 662924.6258731339, + "3063": 659965.1327950611, + "3064": 657004.0243754348, + "3065": 653594.8035967909, + "3066": 650183.745824641, + "3067": 646338.4278180739, + "3068": 642491.0583799247, + "3069": 638224.9946228218, + "3070": 633956.6730562504, + "3071": 629286.8754455155, + "3072": 624614.6225221133, + "3073": 619559.6962360211, + "3074": 614502.1267882241, + "3075": 609082.1968603156, + "3076": 603659.446317207, + "3077": 597896.0782120243, + "3078": 592129.7231340256, + "3079": 586045.8376381116, + "3080": 579958.8105642032, + "3081": 573578.5933282652, + "3082": 567195.0922717659, + "3083": 560543.8983610081, + "3084": 553889.2913111191, + "3085": 546993.5451404079, + "3086": 540094.2699463833, + "3087": 532981.3609952066, + "3088": 525864.8210282798, + "3089": 518562.995747019, + "3090": 511257.4517518527, + "3091": 503795.7020859852, + "3092": 496330.1606484719, + "3093": 488738.1096206525, + "3094": 481142.2086921917, + "3095": 473449.9934937533, + "3096": 465753.8854238529, + "3097": 457992.0384771146, + "3098": 450226.2710158721, + "3099": 442425.5994766652, + "3100": 434620.9952168046, + "3101": 426812.4593927237, + "3102": 418999.9941269355, + "3103": 411214.5852912027, + "3104": 403425.2657648788, + "3105": 395693.8838479838, + "3106": 387958.6253897995, + "3107": 380311.9570316231, + "3108": 372661.4615449023, + "3109": 365129.8589886176, + "3110": 357594.4937849705, + "3111": 350207.8550906386, + "3112": 342817.533044107, + "3113": 335605.1840947305, + "3114": 328389.245589378, + "3115": 321379.8243550765, + "3116": 314366.9214919285, + "3117": 307588.2650089997, + "3118": 300806.2485293399, + "3119": 294285.2830402175, + "3120": 287761.092411469, + "3121": 281523.7270991965, + "3122": 275283.2841971872, + "3123": 269354.3089337425, + "3124": 263422.4157409483, + "3125": 257825.4032529888, + "3126": 252225.6439764654, + "3127": 246982.8568145803, + "3128": 241737.5048099211, + "3129": 236869.8074885512, + "3130": 231999.7373571656, + "3131": 227526.5140119358, + "3132": 223051.1192185688, + "3133": 218990.1971060026, + "3134": 214927.3134416335, + "3135": 211294.8925831438, + "3136": 207660.7277753024, + "3137": 204471.3170231554, + "3138": 201280.3867714631, + "3139": 198546.7465490024, + "3140": 195811.8172383756, + "3141": 193544.9091804981, + "3142": 191276.9474980992, + "3143": 189485.8911907303, + "3144": 187694.0208454967, + "3145": 186386.0578347876, + "3146": 185077.5235503634, + "3147": 184257.9887636533, + "3148": 183438.1276868108, + "3149": 183110.4283781454, + "3150": 182782.6490155443, + "3151": 182948.2513188361, + "3152": 183114.0200852415, + "3153": 183772.443228149, + "3154": 184431.2786591997, + "3155": 185580.0968605532, + "3156": 186729.5715129196, + "3157": 188364.4235562097, + "3158": 190000.1735876393, + "3159": 192114.7800327821, + "3160": 194230.522424233, + "3161": 196816.7103896886, + "3162": 199404.2677415695, + "3163": 202452.0031590105, + "3164": 205501.335963679, + "3165": 208998.7631779108, + "3166": 212498.0094410632, + "3167": 216431.4979989131, + "3168": 220367.0200534893, + "3169": 224721.2184970234, + "3170": 229077.6568248881, + "3171": 233835.553276633, + "3172": 238595.8871256144, + "3173": 243738.8764267073, + "3174": 248884.4909837631, + "3175": 254392.4481200446, + "3176": 259903.2079754724, + "3177": 265754.5675017635, + "3178": 271608.8961144927, + "3179": 277780.7372635931, + "3180": 283955.7021139729, + "3181": 290423.8392544946, + "3182": 296895.2423485139, + "3183": 303634.3204345498, + "3184": 310376.7938022936, + "3185": 317360.3884382519, + "3186": 324347.4942497293, + "3187": 331548.2159753756, + "3188": 338752.5508785959, + "3189": 346142.1532627778, + "3190": 353535.4565322963, + "3191": 361084.9476487468, + "3192": 368638.2127178703, + "3193": 376317.9695631208, + "3194": 384001.558499625, + "3195": 391781.4439015074, + "3196": 399565.2043750386, + "3197": 407414.6859303771, + "3198": 415268.0702099695, + "3199": 423156.3407820539, + "3200": 431048.5262940942, + "3201": 438944.6255944293, + "3202": 446844.6365653115, + "3203": 454717.5733397635, + "3204": 462594.4030431615, + "3205": 470413.2773802805, + "3206": 478236.0105065724, + "3207": 485970.1357855207, + "3208": 493708.0704504061, + "3209": 501327.0944470111, + "3210": 508949.863357892, + "3211": 516423.8880310875, + "3212": 523901.5783328851, + "3213": 531201.2778186467, + "3214": 538504.5491462679, + "3215": 545601.2854934196, + "3216": 552701.4857647606, + "3217": 559567.4219559502, + "3218": 566436.7004486454, + "3219": 573044.9102603259, + "3220": 579656.3275258574, + "3221": 585980.9017938789, + "3222": 592308.5359752876, + "3223": 598324.6848465214, + "3224": 604343.7339802006, + "3225": 610027.8847468327, + "3226": 615714.7646445419, + "3227": 621044.6547748118, + "3228": 626377.0920997747, + "3229": 631331.8570980383, + "3230": 636288.9772676266, + "3231": 640849.2330170417, + "3232": 645411.6425852829, + "3233": 649559.5618480834, + "3234": 653709.4250427389, + "3235": 657428.8078162532, + "3236": 661149.9169285221, + "3237": 664426.2543791905, + "3238": 667704.093728161, + "3239": 670524.6254513389, + "3240": 673346.4286707763, + "3241": 675700.193050236, + "3242": 678054.9934716485, + "3243": 679932.8709401173, + "3244": 681811.5448732026, + "3245": 683206.2939031664, + "3246": 684601.5966429057, + "3247": 685507.8823256342, + "3248": 686414.4767438526, + "3249": 686828.8918438944, + "3250": 687243.3694525145, + "3251": 687164.4478545249, + "3252": 687085.3422573424, + "3253": 686513.5647522126, + "3254": 685941.3574321284, + "3255": 684879.1498195571, + "3256": 683816.2682384186, + "3257": 682267.9917534241, + "3258": 680718.7997719828, + "3259": 678690.7338731388, + "3260": 676661.5145289104, + "3261": 674161.8321162253, + "3262": 671660.7628272647, + "3263": 668699.4979875103, + "3264": 665736.6182798916, + "3265": 662325.626686692, + "3266": 658912.7985731435, + "3267": 655065.7106980684, + "3268": 651216.5718640466, + "3269": 646948.7391834263, + "3270": 642678.6491654379, + "3271": 638007.0835751051, + "3272": 633333.0631436812, + "3273": 628276.3698208568, + "3274": 623217.0338073627, + "3275": 617795.3377845305, + "3276": 612370.8216169972, + "3277": 606605.6883576359, + "3278": 600837.5685954223, + "3279": 594751.9188850217, + "3280": 588663.128066065, + "3281": 582281.1475542741, + "3282": 575895.8836908339, + "3283": 569242.9274418055, + "3284": 562586.5585220435, + "3285": 555689.0509495859, + "3286": 548788.0148217063, + "3287": 541673.3454042767, + "3288": 534555.0454384595, + "3289": 527251.4606253837, + "3290": 519944.1575652535, + "3291": 512480.6493009835, + "3292": 505013.3497313715, + "3293": 497419.5410375203, + "3294": 489821.8829088078, + "3295": 482127.9109756604, + "3296": 474430.0466363072, + "3297": 466666.4438851522, + "3298": 458898.9210842395, + "3299": 451096.4946698534, + "3300": 443290.1359990708, + "3301": 435479.8462280387, + "3302": 427665.6274790355, + "3303": 419878.4656235388, + "3304": 412087.3935406845, + "3305": 404354.2595301999, + "3306": 396617.249441137, + "3307": 388968.8299145114, + "3308": 381316.5837215403, + "3309": 373783.2309209361, + "3310": 366246.1159346355, + "3311": 358857.7279190901, + "3312": 351465.6570124999, + "3313": 344251.5596639885, + "3314": 337033.8732201437, + "3315": 330022.7045077751, + "3316": 323008.054626702, + "3317": 316227.6515857407, + "3318": 309443.8890077079, + "3319": 302921.177879595, + "3320": 296395.2420710049, + "3321": 290156.1320377646, + "3322": 283913.944873441, + "3323": 277983.2258060575, + "3324": 272049.5892674528, + "3325": 266450.8338915765, + "3326": 260849.3321847582, + "3327": 255604.8030499658, + "3328": 250357.7095295172, + "3329": 245488.2711492522, + "3330": 240616.4604155914, + "3331": 236141.4969244741, + "3332": 231664.3624413421, + "3333": 227601.7010948995, + "3334": 223537.0786522858, + "3335": 219902.9194709305, + "3336": 216267.0167953684, + "3337": 213075.8686303825, + "3338": 209883.2014204966, + "3339": 207147.8246942279, + "3340": 204411.1593339466, + "3341": 202142.5156803089, + "3342": 199872.8188558002, + "3343": 198080.027859731, + "3344": 196286.4232789528, + "3345": 194976.7264856142, + "3346": 193666.4588712248, + "3347": 192845.1912069749, + "3348": 192023.5977047669, + "3349": 191694.1664226679, + "3350": 191364.6555383205, + "3351": 191528.526771308, + "3352": 191692.5649186073, + "3353": 192349.2578933636, + "3354": 193006.3636069723, + "3355": 194153.452541352, + "3356": 195301.1983769671, + "3357": 196934.3220534888, + "3358": 198568.3441678867, + "3359": 200681.2231454929, + "3360": 202795.2385186646, + "3361": 205379.6999148474, + "3362": 207965.5311462291, + "3363": 211011.5408916959, + "3364": 214059.1484726842, + "3365": 217554.8509112739, + "3366": 221052.3728465936, + "3367": 224984.13752418, + "3368": 228917.9361458096, + "3369": 233270.4116034883, + "3370": 237625.1273923375, + "3371": 242381.3017516829, + "3372": 247139.913954619, + "3373": 252281.1820558002, + "3374": 257425.0758588387, + "3375": 262931.3126867425, + "3376": 268440.3526792133, + "3377": 274289.9927877143, + "3378": 280142.6024276033, + "3379": 286312.7250485465, + "3380": 292485.9718152423, + "3381": 298952.3913162957, + "3382": 305422.0772148464, + "3383": 312159.4385491562, + "3384": 318900.1956086903, + "3385": 325882.0743797286, + "3386": 332867.4647693134, + "3387": 340066.471515887, + "3388": 347269.0918825976, + "3389": 354656.9801726241, + "3390": 362048.5697900702, + "3391": 369596.3476963264, + "3392": 377147.8999968968, + "3393": 384825.9445149785, + "3394": 392507.8215654918, + "3395": 400285.9955223059, + "3396": 408068.0449914853, + "3397": 415915.815982917, + "3398": 423767.4901388461, + "3399": 431654.051027275, + "3400": 439544.5272954119, + "3401": 447438.9177913915, + "3402": 455337.2203972161, + "3403": 463208.449245686, + "3404": 471083.5714619411, + "3405": 478900.7387505276, + "3406": 486721.7652666652, + "3407": 494454.1843736073, + "3408": 502190.4133044039, + "3409": 509807.7320046074, + "3410": 517428.7960565438, + "3411": 524901.1163080219, + "3412": 532377.1026251001, + "3413": 539675.0985629107, + "3414": 546976.66677912, + "3415": 554071.7004511703, + "3416": 561170.1984834918, + "3417": 568034.4328715153, + "3418": 574902.0099966696, + "3419": 581508.5188762067, + "3420": 588118.2356447644, + "3421": 594441.1098507543, + "3422": 600767.0444048463, + "3423": 606781.4940832515, + "3424": 612798.8444583634, + "3425": 618481.2969004627, + "3426": 624166.4789074475, + "3427": 629494.6715805754, + "3428": 634825.4118817528, + "3429": 639778.4802893617, + "3430": 644733.9043012006, + "3431": 649292.4643255518, + "3432": 653853.1786011723, + "3433": 657999.4030035936, + "3434": 662147.5717698708, + "3435": 665865.2605467915, + "3436": 669584.6760940235, + "3437": 672859.3204109899, + "3438": 676135.4670573687, + "3439": 678954.3065088426, + "3440": 681774.4178872401, + "3441": 684126.4908561012, + "3442": 686479.6002971339, + "3443": 688355.7872152192, + "3444": 690232.7710276953, + "3445": 691625.8303666022, + "3446": 693019.4438446148, + "3447": 693924.0406947256, + "3448": 694828.9467092139, + "3449": 695241.6738341922, + "3450": 695654.4638961946, + "3451": 695573.8551798125, + "3452": 695493.0628922422, + "3453": 694919.5991245091, + "3454": 694345.7059693863, + "3455": 693281.8129491211, + "3456": 692217.2463874129, + "3457": 690667.285348758, + "3458": 689116.4092403405, + "3459": 687086.6596409898, + "3460": 685055.7570225038, + "3461": 682554.3917615926, + "3462": 680051.6400502189, + "3463": 677088.6932136464, + "3464": 674124.1319345869, + "3465": 670711.4591951065, + "3466": 667296.9503602198, + "3467": 663448.1821885318, + "3468": 659597.3634824059, + "3469": 655327.8513539734, + "3470": 651056.0823122485, + "3471": 646382.8381220385, + "3472": 641707.1395143808, + "3473": 636648.7684387505, + "3474": 631587.7550956624, + "3475": 626164.3821662331, + "3476": 620738.1895148845, + "3477": 614971.3801942745, + "3478": 609201.5847931644, + "3479": 603114.2598660049, + "3480": 597023.7942522129, + "3481": 590640.139367289, + "3482": 584253.2015522289, + "3483": 577598.5717728467, + "3484": 570940.5297438076, + "3485": 564041.3494829243, + "3486": 557138.6410872636, + "3487": 550022.2998224816, + "3488": 542902.3284295297, + "3489": 535597.0726093238, + "3490": 528288.0989618566, + "3491": 520822.9205298302, + "3492": 513353.9512118314, + "3493": 505758.4731887511, + "3494": 498159.1461497561, + "3495": 490463.5057250616, + "3496": 482763.9733126863, + "3497": 474998.7029068231, + "3498": 467229.512869306, + "3499": 459425.419636209, + "3500": 451617.394564399, + "3501": 443805.4388098133, + "3502": 435989.5544945206, + "3503": 428200.7274897895, + "3504": 420407.9906745464, + "3505": 412673.1923483099, + "3506": 404934.5183599147, + "3507": 397284.4353501971, + "3508": 389630.5260901268, + "3509": 382095.5106382358, + "3510": 374556.733416239, + "3511": 367166.6835803873, + "3512": 359772.9512686698, + "3513": 352557.1929300046, + "3514": 345337.8459107715, + "3515": 338325.0170375737, + "3516": 331308.7074100237, + "3517": 324526.6450367314, + "3518": 317741.2235403073, + "3519": 311216.8539075366, + "3520": 304689.2600078167, + "3521": 298448.4922967686, + "3522": 292204.647867754, + "3523": 286272.2719485912, + "3524": 280336.9789709138, + "3525": 274736.5675684665, + "3526": 269133.4102473743, + "3527": 263887.225910401, + "3528": 258638.4775996601, + "3529": 253767.3848407873, + "3530": 248893.9201399996, + "3531": 244417.303093028, + "3532": 239938.5154651274, + "3533": 235874.2013847763, + "3534": 231807.9266189271, + "3535": 228172.1155247987, + "3536": 224534.5613467272, + "3537": 221341.7620892914, + "3538": 218147.4441968138, + "3539": 215410.4171976091, + "3540": 212672.1019738461, + "3541": 210401.8088659793, + "3542": 208130.4629962926, + "3543": 206336.0233638955, + "3544": 204540.7705554386, + "3545": 203229.4259428698, + "3546": 201917.5109174977, + "3547": 201094.5962503125, + "3548": 200271.3561530166, + "3549": 199940.2786834768, + "3550": 199609.1220191361, + "3551": 199771.3478793784, + "3552": 199933.7410609809, + "3553": 200588.7894768897, + "3554": 201244.2510383014, + "3555": 202389.6962269355, + "3556": 203535.7987230595, + "3557": 205167.2794661412, + "3558": 206799.6590529585, + "3559": 208910.8959086412, + "3560": 211023.2695653505, + "3561": 213606.0896503336, + "3562": 216190.2799755813, + "3563": 219234.6492197823, + "3564": 222280.6167041761, + "3565": 225774.6794506457, + "3566": 229270.5620981232, + "3567": 233200.6878919489, + "3568": 237132.8480337028, + "3569": 241483.6854151948, + "3570": 245836.7635313506, + "3571": 250591.3006213, + "3572": 255348.2759579421, + "3573": 260487.9075957361, + "3574": 265630.1653380991, + "3575": 271134.7665078441, + "3576": 276642.1712444781, + "3577": 282490.1764992698, + "3578": 288341.1516873825, + "3579": 294509.6402582887, + "3580": 300681.2533764924, + "3581": 307146.0396304119, + "3582": 313614.0926829693, + "3583": 320349.8215722656, + "3584": 327088.9465875496, + "3585": 334069.19371492, + "3586": 341052.9528612202, + "3587": 348250.328764703, + "3588": 355451.3186883224, + "3589": 362837.5769350663, + "3590": 370227.5369088454, + "3591": 377773.6855708589, + "3592": 385323.6090264189, + "3593": 393000.0250985313, + "3594": 400680.2741019251, + "3595": 408456.8204102781, + "3596": 416237.2426294638, + "3597": 424083.3867691788, + "3598": 431933.4344714776, + "3599": 439818.3693041721, + "3600": 447707.2199142801, + "3601": 455599.9851497468, + "3602": 463496.6628923843, + "3603": 471366.2672748034, + "3604": 479239.7654219545, + "3605": 487055.3090381945, + "3606": 494874.7122785625, + "3607": 502605.5085060941, + "3608": 510340.1149536893, + "3609": 517955.8115666847, + "3610": 525575.2539272316, + "3611": 533045.9528829439, + "3612": 540520.3182996952, + "3613": 547816.6937324285, + "3614": 555116.6418386233, + "3615": 562210.0557955342, + "3616": 569306.934507404, + "3617": 576169.5499694765, + "3618": 583035.5085629938, + "3619": 589640.399305021, + "3620": 596248.4983300095, + "3621": 602569.7551861845, + "3622": 608894.07278403, + "3623": 614906.9058995708, + "3624": 620922.6401050147, + "3625": 626603.4767704569, + "3626": 632287.0433936099, + "3627": 637613.6210755461, + "3628": 642942.7467779869, + "3629": 647894.2009791293, + "3630": 652848.0111765872, + "3631": 657404.9577784581, + "3632": 661964.0590233151, + "3633": 666108.6707865052, + "3634": 670255.2273048997, + "3635": 673971.3042251022, + "3636": 677689.1083065968, + "3637": 680962.1415486232, + "3638": 684236.6775106762, + "3639": 687053.9066682553, + "3640": 689872.408143006, + "3641": 692222.8715982857, + "3642": 694574.3719156199, + "3643": 696448.9500997071, + "3644": 698324.325567703, + "3645": 699715.7769514658, + "3646": 701107.7828634885, + "3647": 702010.772536582, + "3648": 702914.0717628438, + "3649": 703325.1924882053, + "3650": 703736.3765390192, + "3651": 703654.1621996961, + "3652": 703571.7646772512, + "3653": 702996.6960625296, + "3654": 702421.1984481236, + "3655": 701355.7013561006, + "3656": 700289.5311099795, + "3657": 698737.9667740767, + "3658": 697185.4877553965, + "3659": 695154.135632589, + "3660": 693121.6308772721, + "3661": 690618.6638659771, + "3662": 688114.3107904873, + "3663": 685149.7629758877, + "3664": 682183.6011047113, + "3665": 678769.3281588454, + "3666": 675353.2195031265, + "3667": 671502.8518959811, + "3668": 667650.4341395947, + "3669": 663379.3233459205, + "3670": 659105.9560237953, + "3671": 654431.1139378486, + "3672": 649753.8178189405, + "3673": 644693.8496163688, + "3674": 639631.2395304712, + "3675": 634206.2702421875, + "3676": 628778.4816157629, + "3677": 623010.0767036788, + "3678": 617238.6860945203, + "3679": 611149.7663425616, + "3680": 605057.7062870435, + "3681": 598672.457343291, + "3682": 592283.925852124, + "3683": 585627.7027791811, + "3684": 578968.0678389519, + "3685": 572067.2950490742, + "3686": 565162.9945064397, + "3687": 558045.0614765295, + "3688": 550923.4987001204, + "3689": 543616.6518779538, + "3690": 536306.087609848, + "3691": 528839.3189383311, + "3692": 521368.7597618155, + "3693": 513771.6922610185, + "3694": 506170.7761249331, + "3695": 498473.5469836009, + "3696": 490772.4262348674, + "3697": 483005.5678727521, + "3698": 475234.7902589162, + "3699": 467429.1098292606, + "3700": 459619.4979404796, + "3701": 451805.9557483379, + "3702": 443988.485374732, + "3703": 436198.072690758, + "3704": 428403.7505751703, + "3705": 420667.3673273157, + "3706": 412927.1087958573, + "3707": 405275.4416214596, + "3708": 397619.9485749209, + "3709": 390083.3497146021, + "3710": 382542.9894620469, + "3711": 375151.3569733354, + "3712": 367756.0423862858, + "3713": 360538.7021496457, + "3714": 353317.7736096244, + "3715": 346303.363592655, + "3716": 339285.4731981797, + "3717": 332501.8304346385, + "3718": 325714.8289244722, + "3719": 319188.8796542961, + "3720": 312659.7064933385, + "3721": 306417.3598970508, + "3722": 300171.9369586258, + "3723": 294237.9829057126, + "3724": 288301.1121697759, + "3725": 282699.123384392, + "3726": 277094.3890555174, + "3727": 271846.6280857472, + "3728": 266596.3035170269, + "3729": 261723.6348748244, + "3730": 256848.5946651885, + "3731": 252370.4024836826, + "3732": 247890.040095394, + "3733": 243824.1516286338, + "3734": 239756.3028501872, + "3735": 236118.918117106, + "3736": 232479.7906735593, + "3737": 229285.4185239592, + "3738": 226089.5281124615, + "3739": 223350.9289672146, + "3740": 220611.0419702208, + "3741": 218339.1774617686, + "3742": 216066.2605639759, + "3743": 214270.2502757862, + "3744": 212473.4271836846, + "3745": 211160.5126594533, + "3746": 209847.0280942357, + "3747": 209022.5442588568, + "3748": 208197.7353648538, + "3749": 207865.0894699286, + "3750": 207532.3647513596, + "3751": 207693.0229283658, + "3752": 207853.8487975603, + "3753": 208507.3302717247, + "3754": 209161.2252618915, + "3755": 210305.1042496163, + "3756": 211449.6409150026, + "3757": 213079.5561973548, + "3758": 214710.370693287, + "3759": 216820.0428277657, + "3760": 218930.852132789, + "3761": 221512.1082354409, + "3762": 224094.7349475494, + "3763": 227137.5409476403, + "3764": 230181.9455567906, + "3765": 233674.4457967208, + "3766": 237168.7663062007, + "3767": 241097.3303304084, + "3768": 245027.9290707619, + "3769": 249377.2054189094, + "3770": 253728.7228696146, + "3771": 258481.6996618461, + "3772": 263237.1150683414, + "3773": 268375.1871433984, + "3774": 273515.8856902732, + "3775": 279018.9280316177, + "3776": 284524.7743067783, + "3777": 290371.2214668629, + "3778": 296220.6389268744, + "3779": 302387.5701361248, + "3780": 308557.626258958, + "3781": 315020.8558836324, + "3782": 321487.3526729099, + "3783": 328221.5256647318, + "3784": 334959.0951481873, + "3785": 341937.7871092157, + "3786": 348919.9914545011, + "3787": 356115.8129221369, + "3788": 363315.2487749186, + "3789": 370699.9533156744, + "3790": 378088.3599481571, + "3791": 385632.9556334069, + "3792": 393181.3264765776, + "3793": 400856.1903005167, + "3794": 408534.8874197949, + "3795": 416309.8822079323, + "3796": 424088.7532706446, + "3797": 431933.3466174704, + "3798": 439781.8438903068, + "3799": 447665.2286568083, + "3800": 455552.5295638354, + "3801": 463443.7454591761, + "3802": 471338.8742244855, + "3803": 479206.9299922177, + "3804": 487078.8798871665, + "3805": 494892.8756135323, + "3806": 502710.7313261973, + "3807": 510439.9803880412, + "3808": 518173.040031808, + "3809": 525787.190202678, + "3810": 533405.0864826469, + "3811": 540874.2397191728, + "3812": 548347.0597779739, + "3813": 555641.8902138377, + "3814": 562940.2936840885, + "3815": 570032.1633658257, + "3816": 577127.4981631372, + "3817": 583988.5700711121, + "3818": 590852.9854708377, + "3819": 597456.3333792244, + "3820": 604062.8899305693, + "3821": 610382.6046729435, + "3822": 616705.3805166766, + "3823": 622716.6722376395, + "3824": 628730.8654078863, + "3825": 634410.1613973584, + "3826": 640092.1877036149, + "3827": 645417.2254275746, + "3828": 650744.8115308055, + "3829": 655694.7264913518, + "3830": 660646.9978066743, + "3831": 665202.4058847176, + "3832": 669759.968963902, + "3833": 673903.042919422, + "3834": 678048.0619879965, + "3835": 681762.6018160767, + "3836": 685478.8691629947, + "3837": 688750.3660278381, + "3838": 692023.3659699496, + "3839": 694839.0594646774, + "3840": 697656.0256335151, + "3841": 700004.9541396687, + "3842": 702354.9198645123, + "3843": 704227.9638125931, + "3844": 706101.8054009161, + "3845": 707491.7232611884, + "3846": 708882.1960057522, + "3847": 709783.6528672676, + "3848": 710685.4196376819, + "3849": 711095.008262776, + "3850": 711504.6605687523, + "3851": 711420.9148398715, + "3852": 711336.9862829987, + "3853": 710760.3869888291, + "3854": 710183.3590498054, + "3855": 709116.3319878455, + "3856": 708048.6321263188, + "3857": 706495.5385293924, + "3858": 704941.5306039216, + "3859": 702908.6499284073, + "3860": 700874.6169743187, + "3861": 698370.1221180382, + "3862": 695864.2415512007, + "3863": 692898.1665987425, + "3864": 689930.4779430482, + "3865": 686514.6785658572, + "3866": 683097.0438318577, + "3867": 679245.1504993285, + "3868": 675391.2073703069, + "3869": 671118.5715565989, + "3870": 666843.6795668934, + "3871": 662167.3131656727, + "3872": 657488.4930836495, + "3873": 652427.0012699746, + "3874": 647362.8679248387, + "3875": 641936.3757290347, + "3876": 636507.0645466609, + "3877": 630737.1374300522, + "3878": 624964.2249676471, + "3879": 618873.7837135737, + "3880": 612780.2025069265, + "3881": 606393.4327628843, + "3882": 600003.3808221212, + "3883": 593345.6376501299, + "3884": 586684.4829612543, + "3885": 579782.1907729867, + "3886": 572876.3711820734, + "3887": 565756.9194538501, + "3888": 558633.8383289486, + "3889": 551325.4735079651, + "3890": 544013.3915905731, + "3891": 536545.1056191558, + "3892": 529073.029491981, + "3893": 521474.4453896214, + "3894": 513872.0130009259, + "3895": 506173.2679557918, + "3896": 498470.63165192, + "3897": 490702.2580831867, + "3898": 482929.9656111086, + "3899": 475122.7706714433, + "3900": 467311.6446207411, + "3901": 459496.5886146237, + "3902": 451677.6047748438, + "3903": 443885.6789723544, + "3904": 436089.8440857669, + "3905": 428351.9484142852, + "3906": 420610.1778064293, + "3907": 412956.9989027211, + "3908": 405299.9944738163, + "3909": 397761.8845779335, + "3910": 390220.0136364737, + "3911": 382826.8708053752, + "3912": 375430.0462223138, + "3913": 368211.1963358953, + "3914": 360988.7584921872, + "3915": 353972.8395174807, + "3916": 346953.4405110766, + "3917": 340168.2894812734, + "3918": 333379.7800503705, + "3919": 326852.3232048422, + "3920": 320321.6428137755, + "3921": 314077.789332481, + "3922": 307830.8598540105, + "3923": 301895.3996058726, + "3924": 295957.0230193914, + "3925": 290353.5287280026, + "3926": 284747.2892375223, + "3927": 279498.0234504057, + "3928": 274246.1944084582, + "3929": 269372.0216370074, + "3930": 264495.4776419625, + "3931": 260015.7820187472, + "3932": 255533.9165323093, + "3933": 251466.5253108202, + "3934": 247397.174120926, + "3935": 243758.287319539, + "3936": 240117.6581506896, + "3937": 236921.7846186506, + "3938": 233724.393167439, + "3939": 230984.2933250647, + "3940": 228242.9059733912, + "3941": 225969.5414525685, + "3942": 223695.1248845762, + "3943": 221897.6152682198, + "3944": 220099.2931898457, + "3945": 218784.8800210987, + "3946": 217469.8971529841, + "3947": 216643.9153561891, + "3948": 215817.6088421133, + "3949": 215483.4656683212, + "3950": 215149.2440119536, + "3951": 215308.4055920925, + "3952": 215467.7352052136, + "3953": 216119.7207639616, + "3954": 216772.1201792322, + "3955": 217914.503932444, + "3956": 219057.5457035641, + "3957": 220685.9664317601, + "3958": 222315.2867135097, + "3959": 224423.4649736432, + "3960": 226532.7807440226, + "3961": 229112.5436515956, + "3962": 231693.6775080544, + "3963": 234734.990991789, + "3964": 237777.9034237406, + "3965": 241268.9118254941, + "3966": 244761.7408356839, + "3967": 248688.8136993527, + "3968": 252617.9216177834, + "3969": 256965.7074824889, + "3970": 261315.7347880979, + "3971": 266067.2217734442, + "3972": 270821.1477111306, + "3973": 275957.7306553202, + "3974": 281096.9404091347, + "3975": 286598.4942950915, + "3976": 292102.8524524028, + "3977": 297947.8118320422, + "3978": 303795.7418488787, + "3979": 309961.1859520902, + "3980": 316129.7553058869, + "3981": 322591.4984983933, + "3982": 329056.5091922378, + "3983": 335789.1964252283, + "3984": 342525.2804863207, + "3985": 349502.4873613208, + "3986": 356483.2069567797, + "3987": 363677.5440106579, + "3988": 370875.4957856177, + "3989": 378258.716584355, + "3990": 385645.6398104894, + "3991": 393188.7524249289, + "3992": 400735.6405326947, + "3993": 408409.0219565021, + "3994": 416086.2370107893, + "3995": 423859.7500689448, + "3996": 431637.1397365517, + "3997": 439480.2520230173, + "3998": 447327.2685701067, + "3999": 455209.1729453427, + "4000": 463094.9937954542, + "4001": 470984.7299680982, + "4002": 478878.3793447993, + "4003": 486744.9560578715, + "4004": 494615.4272319977, + "4005": 502427.9445712288, + "4006": 510244.3222303173, + "4007": 517972.0935720282, + "4008": 525703.6758289582, + "4009": 533316.3489461656, + "4010": 540932.7685055035, + "4011": 548400.445354322, + "4012": 555871.7893581897, + "4013": 563165.1440717736, + "4014": 570462.072152256, + "4015": 577552.4667766278, + "4016": 584646.3268488287, + "4017": 591505.9243638201, + "4018": 598368.8657025733, + "4019": 604970.7398818557, + "4020": 611575.8230358416, + "4021": 617894.0647124629, + "4022": 624215.3678219387, + "4023": 630225.1871399952, + "4024": 636237.908238559, + "4025": 641915.7324874548, + "4026": 647596.2873841006, + "4027": 652919.8540292928, + "4028": 658245.9693844627, + "4029": 663194.4139275417, + "4030": 668145.2151558483, + "4031": 672699.1534772019, + "4032": 677255.2471299029, + "4033": 681396.8519890094, + "4034": 685540.4022911164, + "4035": 689253.4736825419, + "4036": 692968.2729225006, + "4037": 696238.3020099445, + "4038": 699509.8345040927, + "4039": 702324.0608801614, + "4040": 705139.5602595252, + "4041": 707487.0223052565, + "4042": 709835.5218986033, + "4043": 711707.1000439904, + "4044": 713579.4761582918, + "4045": 714967.9288730895, + "4046": 716356.9368005979, + "4047": 717256.9291733544, + "4048": 718157.2317831762, + "4049": 718565.3565757199, + "4050": 718973.5453770616, + "4051": 718888.3364713361, + "4052": 718802.9450652825, + "4053": 718224.8832494712, + "4054": 717646.3931162177, + "4055": 716577.9041873157, + "4056": 715508.7427860098, + "4057": 713954.1879763395, + "4058": 712398.7191650365, + "4059": 710364.3779304766, + "4060": 708328.8847440061, + "4061": 705822.929981877, + "4062": 703315.5898356042, + "4063": 700348.0556299975, + "4064": 697378.9080473211, + "4065": 693961.6500691812, + "4066": 690542.5570601494, + "4067": 686689.2057783805, + "4068": 682833.8050257795, + "4069": 678559.7119140367, + "4070": 674283.3629517126, + "4071": 669605.5399031733, + "4072": 664925.2634989939, + "4073": 659862.3156882136, + "4074": 654796.7266708988, + "4075": 649368.779127709, + "4076": 643938.0129226292, + "4077": 638166.6311078665, + "4078": 632392.2642717449, + "4079": 626300.3689682528, + "4080": 620205.3340363763, + "4081": 613817.1108911711, + "4082": 607425.6058731751, + "4083": 600766.4099477723, + "4084": 594103.802829177, + "4085": 587200.0585347703, + "4086": 580292.7871611555, + "4087": 573171.8839735644, + "4088": 566047.3517124974, + "4089": 558737.5360784414, + "4090": 551424.0036709261, + "4091": 543954.2675322318, + "4092": 536480.7415605031, + "4093": 528880.7079361763, + "4094": 521276.8263479941, + "4095": 513576.6324257246, + "4096": 505872.54756696, + "4097": 498102.7257654327, + "4098": 490328.9853825576, + "4099": 482520.3428539705, + "4100": 474707.7695360845, + "4101": 466891.2665844169, + "4102": 459070.8361205918, + "4103": 451277.4640154543, + "4104": 443480.1831474722, + "4105": 435740.8418157487, + "4106": 427997.6258686823, + "4107": 420343.0019466591, + "4108": 412684.5528202307, + "4109": 405144.9985474877, + "4110": 397601.6835497238, + "4111": 390207.0969827346, + "4112": 382808.8289840963, + "4113": 375588.5360022853, + "4114": 368364.6553832619, + "4115": 361347.2939531766, + "4116": 354326.4528112295, + "4117": 347539.8599655982, + "4118": 340749.9090384489, + "4119": 334221.0110161515, + "4120": 327688.889767667, + "4121": 321443.5957481976, + "4122": 315195.2260506579, + "4123": 309258.3259024539, + "4124": 303318.5097347897, + "4125": 297713.5761809705, + "4126": 292105.8977467071, + "4127": 286855.1933343299, + "4128": 281601.9259855349, + "4129": 276726.3152255164, + "4130": 271848.3335600793, + "4131": 267367.2005845273, + "4132": 262883.8980636821, + "4133": 258815.0701256065, + "4134": 254744.2825368249, + "4135": 251103.9596541382, + "4136": 247461.8947214487, + "4137": 244264.5857429211, + "4138": 241065.7591624512, + "4139": 238324.2245079367, + "4140": 235581.402661116, + "4141": 233306.6039620293, + "4142": 231030.7535325386, + "4143": 229231.8103713279, + "4144": 227432.0550646329, + "4145": 226116.2089839785, + "4146": 224799.7935202568, + "4147": 223972.3794440344, + "4148": 223144.6409665988, + "4149": 222809.0661453967, + "4150": 222473.413157453, + "4151": 222631.1437217341, + "4152": 222789.0426346001, + "4153": 223439.5978085793, + "4154": 224090.5671544534, + "4155": 225231.5211535241, + "4156": 226373.1334856427, + "4157": 228000.125089864, + "4158": 229628.0165625486, + "4159": 231734.7663284125, + "4160": 233842.6539191998, + "4161": 236420.9889617493, + "4162": 239000.6952676335, + "4163": 242040.58151513, + "4164": 245082.0670250609, + "4165": 248571.6488189053, + "4166": 252063.0515351758, + "4167": 255988.6984188, + "4168": 259916.3806709553, + "4169": 264262.741183032, + "4170": 268611.3434495493, + "4171": 273361.4057092194, + "4172": 278113.907234545, + "4173": 283249.0660795638, + "4174": 288386.8520472839, + "4175": 293886.98246012, + "4176": 299389.9174571602, + "4177": 305233.4539892699, + "4178": 311079.9614711958, + "4179": 317243.9833520195, + "4180": 323411.1307958236, + "4181": 329871.4523906198, + "4182": 336335.0417989373, + "4183": 343066.3080584573, + "4184": 349800.9714580298, + "4185": 356776.7579833371, + "4186": 363756.057540838, + "4187": 370948.9748683629, + "4188": 378145.5072284706, + "4189": 385527.3089237324, + "4190": 392912.8133576774, + "4191": 400454.5074910828, + "4192": 407999.977428859, + "4193": 415671.9409936245, + "4194": 423347.738499691, + "4195": 431119.8343203417, + "4196": 438895.8070610369, + "4197": 446737.5027310943, + "4198": 454583.102972148, + "4199": 462463.591351611, + "4200": 470347.9965161172, + "4201": 478236.3173131955, + "4202": 486128.5516242661, + "4203": 493993.7135815293, + "4204": 501862.7703095591, + "4205": 509673.8735122947, + "4206": 517488.8373443783, + "4207": 525215.1951684636, + "4208": 532945.3642170375, + "4209": 540556.6244350472, + "4210": 548171.6314042354, + "4211": 555637.895971842, + "4212": 563107.8280033254, + "4213": 570399.7710532424, + "4214": 577695.2877786651, + "4215": 584784.2713564745, + "4216": 591876.7206905003, + "4217": 598734.9077755943, + "4218": 605596.4389926179, + "4219": 612196.9033582289, + "4220": 618800.5770064921, + "4221": 625117.4094852299, + "4222": 631437.3037045519, + "4223": 637445.7144400752, + "4224": 643457.0272636171, + "4225": 649133.4435448932, + "4226": 654812.5907812126, + "4227": 660134.7500732626, + "4228": 665459.4583823656, + "4229": 670406.4961863444, + "4230": 675355.8909824088, + "4231": 679908.4231782694, + "4232": 684463.1110121182, + "4233": 688603.3103589049, + "4234": 692745.4554551161, + "4235": 696457.1219469616, + "4236": 700170.5165935481, + "4237": 703439.1413937192, + "4238": 706709.2699065863, + "4239": 709522.0926072573, + "4240": 712336.1886169994, + "4241": 714682.2475987769, + "4242": 717029.3444337306, + "4243": 718899.5201261772, + "4244": 720770.4940928835, + "4245": 722157.5449653241, + "4246": 723545.1513556063, + "4247": 724443.7424961596, + "4248": 725342.6441786947, + "4249": 725749.3683487608, + "4250": 726156.1568323273, + "4251": 726069.5479134216, + "4252": 725982.7567986767, + "4253": 725403.2955785557, + "4254": 724823.4063452677, + "4255": 723753.5186204999, + "4256": 722682.95872739, + "4257": 721127.0057298718, + "4258": 719570.1390345701, + "4259": 717534.4002197547, + "4260": 715497.5097566658, + "4261": 712990.1580214493, + "4262": 710481.4212055142, + "4263": 707512.4906335644, + "4264": 704541.9469877582, + "4265": 701123.293249596, + "4266": 697702.8047835439, + "4267": 693848.0583476513, + "4268": 689991.2627437174, + "4269": 685715.7750833271, + "4270": 681438.0318749358, + "4271": 676758.8148828044, + "4272": 672077.1448374026, + "4273": 667012.8036876647, + "4274": 661945.8216335522, + "4275": 656516.4813556195, + "4276": 651084.3227177471, + "4277": 645311.5487720369, + "4278": 639535.7901067085, + "4279": 633442.5032756458, + "4280": 627346.0771177303, + "4281": 620956.4630479133, + "4282": 614563.5674066282, + "4283": 607902.981159155, + "4284": 601238.9840196039, + "4285": 594333.8500052517, + "4286": 587425.1892125978, + "4287": 580302.89690677, + "4288": 573176.9758281647, + "4289": 565865.7716771653, + "4290": 558550.8510531978, + "4291": 551079.7269984386, + "4292": 543604.8134109293, + "4293": 536003.3924710023, + "4294": 528398.123867297, + "4295": 520696.5432294785, + "4296": 512991.0719550355, + "4297": 505219.8640375974, + "4298": 497444.7378384761, + "4299": 489634.7097932043, + "4300": 481820.7512580922, + "4301": 474002.8633885545, + "4302": 466181.0483061125, + "4303": 458386.2918815084, + "4304": 450587.6269931077, + "4305": 442846.9019399111, + "4306": 435102.3025702146, + "4307": 427446.2955243019, + "4308": 419786.4635726226, + "4309": 412245.526773165, + "4310": 404700.8295471204, + "4311": 397304.861050183, + "4312": 389905.2114198265, + "4313": 382683.5371044255, + "4314": 375458.2754498389, + "4315": 368439.5332821152, + "4316": 361417.3117003529, + "4317": 354629.3387126282, + "4318": 347838.0079410057, + "4319": 341307.7303717539, + "4320": 334774.2298737325, + "4321": 328527.5569020425, + "4322": 322277.8085494973, + "4323": 316339.5300434019, + "4324": 310398.3358148592, + "4325": 304792.0244970737, + "4326": 299182.9685956552, + "4327": 293930.8870128333, + "4328": 288676.2427902035, + "4329": 283799.2554528592, + "4330": 278919.897506505, + "4331": 274437.3885463441, + "4332": 269952.7103370976, + "4333": 265882.5070067283, + "4334": 261810.3443216601, + "4335": 258168.6466385938, + "4336": 254525.2072013316, + "4337": 251326.5240139384, + "4338": 248126.3235202099, + "4339": 245383.4152479439, + "4340": 242639.220078779, + "4341": 240363.0483526559, + "4342": 238085.8251913367, + "4343": 236285.5095934062, + "4344": 234484.3821450001, + "4345": 233167.1642175444, + "4346": 231849.3772018316, + "4347": 231020.5918683291, + "4348": 230191.4824282253, + "4349": 229854.5369388676, + "4350": 229517.5135771822, + "4351": 229673.8740620361, + "4352": 229830.403189691, + "4353": 230479.588872576, + "4354": 231129.1890213743, + "4355": 232268.774117289, + "4356": 233409.0178400726, + "4357": 235034.6411286815, + "4358": 236661.164579378, + "4359": 238766.5466167794, + "4360": 240873.0667725319, + "4361": 243450.0346733758, + "4362": 246028.3741307858, + "4363": 249066.893822941, + "4364": 252107.0130705659, + "4365": 255595.2288950414, + "4366": 259085.2659347824, + "4367": 263009.5474346188, + "4368": 266935.8645956301, + "4369": 271280.8603091093, + "4370": 275628.0980694777, + "4371": 280376.7961153503, + "4372": 285127.9337191322, + "4373": 290261.7289347639, + "4374": 295398.1515651562, + "4375": 300896.9189326266, + "4376": 306398.4911761662, + "4377": 312240.6652465432, + "4378": 318085.8105584074, + "4379": 324248.4705607435, + "4380": 330414.2564175374, + "4381": 336873.216716704, + "4382": 343335.4451206756, + "4383": 350065.350667037, + "4384": 356798.6536445417, + "4385": 363773.0800387755, + "4386": 370751.0197561008, + "4387": 377942.5775342518, + "4388": 385137.7506356908, + "4389": 392518.193362893, + "4390": 399902.3391192917, + "4391": 407442.6748655677, + "4392": 414986.7867065357, + "4393": 422657.3924647181, + "4394": 430331.8324543309, + "4395": 438102.5710485616, + "4396": 445877.1868527747, + "4397": 453717.5258761924, + "4398": 461561.7697603534, + "4399": 469440.9020725749, + "4400": 477323.9514593956, + "4401": 485210.9167682491, + "4402": 493101.7958804604, + "4403": 500965.6029281345, + "4404": 508833.3050357504, + "4405": 516643.0539071523, + "4406": 524456.6636968871, + "4407": 532181.667767514, + "4408": 539910.4833514248, + "4409": 547520.3903934722, + "4410": 555134.0444753041, + "4411": 562598.9564440657, + "4412": 570067.5361651209, + "4413": 577358.1271929322, + "4414": 584652.292184477, + "4415": 591739.924316542, + "4416": 598831.0224928629, + "4417": 605687.858708197, + "4418": 612548.0393433118, + "4419": 619147.1534147708, + "4420": 625749.4770565451, + "4421": 632064.9598163631, + "4422": 638383.5046042404, + "4423": 644390.5661957003, + "4424": 650400.5301624666, + "4425": 656075.597874161, + "4426": 661753.3968279992, + "4427": 667074.208124575, + "4428": 672397.5687251171, + "4429": 677343.2591073553, + "4430": 682291.3067684057, + "4431": 686842.4921158861, + "4432": 691395.833387895, + "4433": 695534.6864592892, + "4434": 699675.4855664622, + "4435": 703385.8063555307, + "4436": 707097.8555855086, + "4437": 710365.1352551468, + "4438": 713633.9189234637, + "4439": 716445.3970654748, + "4440": 719258.1488023543, + "4441": 721602.8637969744, + "4442": 723948.616930383, + "4443": 725817.4492068049, + "4444": 727687.0800429136, + "4445": 729072.7880700923, + "4446": 730459.0519003557, + "4447": 731356.3007660413, + "4448": 732253.8604587674, + "4449": 732659.2429239915, + "4450": 733064.6899875909, + "4451": 732976.7399335015, + "4452": 732888.6079682638, + "4453": 732307.8061822496, + "4454": 731726.5766675762, + "4455": 730655.3489458391, + "4456": 729583.4493400847, + "4457": 728026.1569141548, + "4458": 726467.951074583, + "4459": 724430.8733995481, + "4460": 722392.6443601989, + "4461": 719883.9543325898, + "4462": 717373.8795080386, + "4463": 714403.6112111585, + "4464": 711431.7301240163, + "4465": 708011.7392280219, + "4466": 704589.9138875502, + "4467": 700733.8308605598, + "4468": 696875.6989487592, + "4469": 692598.8752636426, + "4470": 688319.7963135748, + "4471": 683639.243862726, + "4472": 678956.2386414756, + "4473": 673890.5625986671, + "4474": 668822.245934172, + "4475": 663391.5713284542, + "4476": 657958.0786453038, + "4477": 652183.9709367329, + "4478": 646406.8787908708, + "4479": 640312.2587615112, + "4480": 634214.4996874458, + "4481": 627823.5529835359, + "4482": 621429.3249901251, + "4483": 614767.4066724036, + "4484": 608102.0777443917, + "4485": 601195.6122232768, + "4486": 594285.6202054684, + "4487": 587161.996956005, + "4488": 580034.7452151936, + "4489": 572722.210683328, + "4490": 565405.9599597448, + "4491": 557933.5060865313, + "4492": 550457.2629616398, + "4493": 542854.5127653134, + "4494": 535247.9151861026, + "4495": 527545.0058535835, + "4496": 519838.2061651556, + "4497": 512065.6701143597, + "4498": 504289.2160624185, + "4499": 496477.8604447761, + "4500": 488662.5746176543, + "4501": 480843.3597363785, + "4502": 473020.2179223819, + "4503": 465224.1350463182, + "4504": 457424.1439864641, + "4505": 449682.0930417321, + "4506": 441936.1680603299, + "4507": 434278.8356824528, + "4508": 426617.6786784622, + "4509": 419075.4171062582, + "4510": 411529.3953869445, + "4511": 404132.1026761266, + "4512": 396731.1291111906, + "4513": 389508.1311404231, + "4514": 382281.5461095952, + "4515": 375261.4808446676, + "4516": 368237.9364446511, + "4517": 361448.6409175342, + "4518": 354655.9878852938, + "4519": 348124.3883341111, + "4520": 341589.5661327583, + "4521": 335341.5717362489, + "4522": 329090.502237309, + "4523": 323150.9028631562, + "4524": 317208.3880448064, + "4525": 311600.7564153768, + "4526": 305990.3804803901, + "4527": 300736.9791419888, + "4528": 295481.0154416815, + "4529": 290602.7089044748, + "4530": 285722.0320359863, + "4531": 281238.2044313322, + "4532": 276752.2078551474, + "4533": 272680.6864353074, + "4534": 268607.20593815, + "4535": 264964.1907202892, + "4536": 261319.4340254408, + "4537": 258119.4338575831, + "4538": 254917.9166604256, + "4539": 252173.6919616798, + "4540": 249428.1806428979, + "4541": 247150.6930439345, + "4542": 244872.1542864655, + "4543": 243070.5233689897, + "4544": 241268.0808775568, + "4545": 239949.5481835068, + "4546": 238630.4466775463, + "4547": 237800.3471300571, + "4548": 236969.9237521413, + "4549": 236631.664601061, + "4550": 236293.3278536567, + "4551": 236448.3752287098, + "4552": 236603.5915223963, + "4553": 237251.4646470601, + "4554": 237899.7525132987, + "4555": 239038.0256022299, + "4556": 240176.9575935211, + "4557": 241801.2694260433, + "4558": 243426.4816959736, + "4559": 245530.5528278443, + "4560": 247635.7623532164, + "4561": 250211.4198987454, + "4562": 252788.4492758206, + "4563": 255825.6591625368, + "4564": 258864.4688795333, + "4565": 262351.3754481064, + "4566": 265840.1035065862, + "4567": 269763.0762997179, + "4568": 273688.0850284966, + "4569": 278031.7725841305, + "4570": 282377.7024609566, + "4571": 287125.0928975054, + "4572": 291874.9231660977, + "4573": 297007.4113205897, + "4574": 302142.5271638079, + "4575": 307639.9880179857, + "4576": 313140.2540220298, + "4577": 318981.1221266247, + "4578": 324824.961746336, + "4579": 330986.3163300644, + "4580": 337150.7970417119, + "4581": 343608.4524691097, + "4582": 350069.3762746062, + "4583": 356797.9774957026, + "4584": 363529.9764210685, + "4585": 370503.0990362063, + "4586": 377479.7352473947, + "4587": 384669.9897922844, + "4588": 391863.8599332545, + "4589": 399242.9999726965, + "4590": 406625.8433139605, + "4591": 414164.8769176441, + "4592": 421707.6868884786, + "4593": 429376.9910489035, + "4594": 437050.1297130514, + "4595": 444819.5672540271, + "4596": 452592.8822771118, + "4597": 460431.9207914449, + "4598": 468274.8644384822, + "4599": 476152.6967854582, + "4600": 484034.4464788285, + "4601": 491920.1123659444, + "4602": 499809.6923280479, + "4603": 507672.2004971617, + "4604": 515538.6039976821, + "4605": 523347.0545333708, + "4606": 531159.3662586925, + "4607": 538883.0725361238, + "4608": 546610.5905979741, + "4609": 554219.2003890141, + "4610": 561831.5574908092, + "4611": 569295.1727504228, + "4612": 576762.4560331365, + "4613": 584051.7508933306, + "4614": 591344.6199879008, + "4615": 598430.956493552, + "4616": 605520.7593139376, + "4617": 612376.3004437333, + "4618": 619235.1862636248, + "4619": 625833.005790094, + "4620": 632434.0351570301, + "4621": 638748.2239120801, + "4622": 645065.4749651781, + "4623": 651071.2430917658, + "4624": 657079.9138634856, + "4625": 662753.6886498778, + "4626": 668430.1949480767, + "4627": 673749.713858595, + "4628": 679071.7823425803, + "4629": 684016.1808776808, + "4630": 688962.9369609319, + "4631": 693512.8309998701, + "4632": 698064.881232513, + "4633": 702202.4435336364, + "4634": 706341.952139553, + "4635": 710050.9826962987, + "4636": 713761.7419628066, + "4637": 717027.7319377466, + "4638": 720295.2261800568, + "4639": 723105.4151646718, + "4640": 725916.8780126856, + "4641": 728260.3043868893, + "4642": 730604.7691682508, + "4643": 732472.3133609142, + "4644": 734340.6563814733, + "4645": 735725.0768612302, + "4646": 737110.0534121196, + "4647": 738006.0152663992, + "4648": 738902.2882156067, + "4649": 739306.3842051197, + "4650": 739710.5450607353, + "4651": 739621.3090663096, + "4652": 739531.8914283032, + "4653": 738949.804237008, + "4654": 738367.2895844613, + "4655": 737294.776992179, + "4656": 736221.5927831278, + "4657": 734663.0160210697, + "4658": 733103.5261124593, + "4659": 731065.1646353949, + "4660": 729025.6520609459, + "4661": 726515.678765088, + "4662": 724004.3209390593, + "4663": 721032.7699073929, + "4664": 718059.6063520774, + "4665": 714638.3332544429, + "4666": 711215.2259787851, + "4667": 707357.8612829836, + "4668": 703498.4479686677, + "4669": 699220.3431472528, + "4670": 694939.9833270245, + "4671": 690258.1502720742, + "4672": 685573.8647127021, + "4673": 680506.9085976734, + "4674": 675437.3121267804, + "4675": 670005.3579804085, + "4676": 664570.5860222691, + "4677": 658795.1993042956, + "4678": 653016.8284145386, + "4679": 646920.9299067137, + "4680": 640821.8926195337, + "4681": 634429.6679677818, + "4682": 628034.162291723, + "4683": 621370.9665564692, + "4684": 614704.3604759627, + "4685": 607796.6180673124, + "4686": 600885.3494268499, + "4687": 593760.4498195354, + "4688": 586631.9219855978, + "4689": 579318.111625253, + "4690": 572000.5853377597, + "4691": 564526.8561651272, + "4692": 557049.3380052301, + "4693": 549445.3130382336, + "4694": 541837.4409526103, + "4695": 534133.2573778587, + "4696": 526425.1837113008, + "4697": 518651.3739463995, + "4698": 510873.6464443003, + "4699": 503061.0176403696, + "4700": 495244.4588907516, + "4701": 487423.9713506948, + "4702": 479599.5571415544, + "4703": 471802.2021339072, + "4704": 464000.9392059526, + "4705": 456257.6166565259, + "4706": 448510.4203337576, + "4707": 440851.8168777659, + "4708": 433189.3890588353, + "4709": 425645.8569347887, + "4710": 418098.5649266528, + "4711": 410700.0021899564, + "4712": 403297.7588620088, + "4713": 396073.4913910197, + "4714": 388845.6371226832, + "4715": 381824.3028828837, + "4716": 374799.4897705551, + "4717": 368008.9257936092, + "4718": 361215.0045739467, + "4719": 354682.1370976722, + "4720": 348146.0472334811, + "4721": 341896.7854363108, + "4722": 335644.448798811, + "4723": 329703.582548123, + "4724": 323759.8011151863, + "4725": 318150.903133042, + "4726": 312539.2611071367, + "4727": 307284.5939395368, + "4728": 302027.3646716746, + "4729": 297147.7928284808, + "4730": 292265.8509154971, + "4731": 287780.7585277639, + "4732": 283293.4974298399, + "4733": 279220.711749525, + "4734": 275145.9672530812, + "4735": 271501.6882970468, + "4736": 267855.6681250617, + "4737": 264654.4047410289, + "4738": 261451.6245885821, + "4739": 258706.1371953573, + "4740": 255959.3634428313, + "4741": 253680.6136707831, + "4742": 251400.8130008135, + "4743": 249597.9204313456, + "4744": 247794.2165483541, + "4745": 246474.4227231035, + "4746": 245154.0603462255, + "4747": 244322.7001880264, + "4748": 243491.0164595335, + "4749": 243151.4972179338, + "4750": 242811.9006399925, + "4751": 242965.6884444164, + "4752": 243119.6454273065, + "4753": 243766.2595009317, + "4754": 244413.2885758148, + "4755": 245550.3031329988, + "4756": 246687.9768520764, + "4757": 248311.0306718439, + "4758": 249934.9851884037, + "4759": 252037.7988262136, + "4760": 254141.75111676, + "4761": 256716.151686624, + "4762": 259291.9243471205, + "4763": 262327.8777762697, + "4764": 265365.4312946367, + "4765": 268851.0819234435, + "4766": 272338.554300946, + "4767": 276260.271671815, + "4768": 280184.0252369716, + "4769": 284526.4578875498, + "4770": 288871.1331178126, + "4771": 293617.2691662165, + "4772": 298365.8453050082, + "4773": 303497.07958797, + "4774": 308630.9418178547, + "4775": 314127.1493168217, + "4776": 319626.1622237039, + "4777": 325465.7774891121, + "4778": 331308.3645275382, + "4779": 337468.4667878093, + "4780": 343631.6954337537, + "4781": 350088.099053129, + "4782": 356547.7713082103, + "4783": 363275.1212364251, + "4784": 370005.8691263697, + "4785": 376977.740963473, + "4786": 383953.1266539406, + "4787": 391142.1309353497, + "4788": 398334.7510700064, + "4789": 405712.6413602288, + "4790": 413094.2352092938, + "4791": 420632.019577726, + "4792": 428173.5805701838, + "4793": 435841.6360090333, + "4794": 443513.5262083345, + "4795": 451281.715541119, + "4796": 459053.7826125954, + "4797": 466891.5734318302, + "4798": 474733.2696402062, + "4799": 482609.8548048852, + "4800": 490490.3575722504, + "4801": 498374.7767895802, + "4802": 506263.1103380442, + "4803": 514124.3723495921, + "4804": 521989.5299485482, + "4805": 529796.7348386013, + "4806": 537607.8011741439, + "4807": 545330.2623175803, + "4808": 553056.5355011475, + "4809": 560663.9006695437, + "4810": 568275.0134042623, + "4811": 575737.3845522943, + "4812": 583203.4239788492, + "4813": 590491.4752382353, + "4814": 597783.1009872763, + "4815": 604868.1944026046, + "4816": 611956.7543878022, + "4817": 618811.0529374726, + "4818": 625668.6964322295, + "4819": 632265.2738884831, + "4820": 638865.0614400507, + "4821": 645178.0086345075, + "4822": 651494.0183817161, + "4823": 657498.5454570464, + "4824": 663505.975432069, + "4825": 669178.509676253, + "4826": 674853.7756866608, + "4827": 680172.0545637337, + "4828": 685492.8832685479, + "4829": 690436.0422786803, + "4830": 695381.5590910946, + "4831": 699930.2141132562, + "4832": 704481.0255831114, + "4833": 708617.3493753648, + "4834": 712755.6197262579, + "4835": 716463.4122817552, + "4836": 720172.933800719, + "4837": 723437.686281748, + "4838": 726703.9432837092, + "4839": 729512.8952814665, + "4840": 732323.1213960425, + "4841": 734665.3112901581, + "4842": 737008.5398447098, + "4843": 738874.8480637709, + "4844": 740741.9553638644, + "4845": 742125.1403762221, + "4846": 743508.8817127076, + "4847": 744403.6086055081, + "4848": 745298.6468460907, + "4849": 745701.5083797625, + "4850": 746104.4350322504, + "4851": 746013.9650873394, + "4852": 745923.31375142, + "4853": 745339.9931147138, + "4854": 744756.2452691875, + "4855": 743682.4997362869, + "4856": 742608.0828389085, + "4857": 741048.273640744, + "4858": 739487.5515481776, + "4859": 737447.9581392377, + "4860": 735407.213884924, + "4861": 732896.0091611415, + "4862": 730383.4201590584, + "4863": 727410.6382031386, + "4864": 724436.2439752996, + "4865": 721013.7404568024, + "4866": 717589.4030118728, + "4867": 713730.8083983203, + "4868": 709870.1654177048, + "4869": 705590.8311813717, + "4870": 701309.2421975371, + "4871": 696626.1802302228, + "4872": 691940.6660096594, + "4873": 686872.4814845425, + "4874": 681801.6568545948, + "4875": 676368.4748001324, + "4876": 670932.4751847973, + "4877": 665155.8610604535, + "4878": 659376.2630150822, + "4879": 653279.1376023296, + "4880": 647178.8736608395, + "4881": 640785.4226053258, + "4882": 634388.6907759843, + "4883": 627724.2691378578, + "4884": 621056.4374048195, + "4885": 614147.4695939092, + "4886": 607234.9758013895, + "4887": 600108.8512921517, + "4888": 592979.098806356, + "4889": 585664.064044149, + "4890": 578345.3136047208, + "4891": 570870.3605300117, + "4892": 563391.6187178276, + "4893": 555786.370348265, + "4894": 548177.2751097281, + "4895": 540471.8686316464, + "4896": 532762.5723112734, + "4897": 524987.5401420036, + "4898": 517208.5904849138, + "4899": 509394.7397753019, + "4900": 501576.9593692438, + "4901": 493755.2504219195, + "4902": 485929.615054616, + "4903": 478131.0391378416, + "4904": 470328.5555497275, + "4905": 462584.0125890409, + "4906": 454835.5961038438, + "4907": 447175.7727341864, + "4908": 439512.1252502851, + "4909": 431967.3737098948, + "4910": 424418.8625339741, + "4911": 417019.0808779838, + "4912": 409615.6188791651, + "4913": 402390.1329856599, + "4914": 395161.0605430946, + "4915": 388138.5083772854, + "4916": 381112.4775870989, + "4917": 374320.6961803787, + "4918": 367525.557778958, + "4919": 360991.4733688735, + "4920": 354454.1668187533, + "4921": 348203.688583467, + "4922": 341950.1357555967, + "4923": 336008.0535622162, + "4924": 330063.0564341976, + "4925": 324452.9430045146, + "4926": 318840.0857785462, + "4927": 313584.2036582915, + "4928": 308325.7596851157, + "4929": 303444.973383882, + "4930": 298561.8172600649, + "4931": 294075.5109086375, + "4932": 289587.0360940915, + "4933": 285513.0369441597, + "4934": 281437.0792250368, + "4935": 277791.5872931941, + "4936": 274144.3543922047, + "4937": 270941.8785259043, + "4938": 267737.8861378599, + "4939": 264991.1867556405, + "4940": 262243.2012606562, + "4941": 259963.239992619, + "4942": 257682.228073063, + "4943": 255878.1245003445, + "4944": 254073.2098603716, + "4945": 252752.2055243421, + "4946": 251430.6328828209, + "4947": 250598.0627060479, + "4948": 249765.169204984, + "4949": 249424.4404367493, + "4950": 249083.6345780429, + "4951": 249236.2133475048, + "4952": 249388.9615411699, + "4953": 250034.3670712406, + "4954": 250680.1878481735, + "4955": 251815.9943529452, + "4956": 252952.4602650821, + "4957": 254574.3065233145, + "4958": 256197.0537236785, + "4959": 258298.6602905658, + "4960": 260401.4057553968, + "4961": 262974.5997446862, + "4962": 265549.1660696833, + "4963": 268583.9134083421, + "4964": 271620.2610811618, + "4965": 275104.7061092985, + "4966": 278590.9731309421, + "4967": 282511.485390698, + "4968": 286434.0340894209, + "4969": 290775.2621181796, + "4970": 295118.732971171, + "4971": 299863.6648867861, + "4972": 304611.037137206, + "4973": 309741.0677761473, + "4974": 314873.7266062971, + "4975": 320368.7309497495, + "4976": 325866.540945272, + "4977": 331704.9535434096, + "4978": 337546.338158589, + "4979": 343705.2382395719, + "4980": 349867.2649501212, + "4981": 356322.4668779293, + "4982": 362780.9376852059, + "4983": 369507.0864093133, + "4984": 376236.6333387827, + "4985": 383207.3044589778, + "4986": 390181.489676039, + "4987": 397369.2937274785, + "4988": 404560.7138755371, + "4989": 411937.4044224682, + "4990": 419317.7987714837, + "4991": 426854.3838830432, + "4992": 434394.7458617401, + "4993": 442061.6025298758, + "4994": 449732.2942014453, + "4995": 457499.2852494156, + "4996": 465270.1542789304, + "4997": 473106.7472989914, + "4998": 480947.2459509169, + "4999": 488822.6338018042, + "5000": 496701.9394979714, + "5001": 504585.1618866327, + "5002": 512472.298848893, + "5003": 520332.3645166378, + "5004": 528196.3260141264, + "5005": 536002.3350449837, + "5006": 543812.2057635374, + "5007": 551533.4715321277, + "5008": 559258.5495829271, + "5009": 566864.7198605697, + "5010": 574474.6379464846, + "5011": 581935.8146875985, + "5012": 589400.6599490568, + "5013": 596687.5172851036, + "5014": 603977.9493524983, + "5015": 611061.8493278096, + "5016": 618149.2161145553, + "5017": 625002.3217072748, + "5018": 631858.772486518, + "5019": 638454.1574686312, + "5020": 645052.7527873677, + "5021": 651364.5079902388, + "5022": 657679.3259870433, + "5023": 663682.6615530874, + "5024": 669688.900259878, + "5025": 675360.2434768202, + "5026": 681034.318700913, + "5027": 686351.407032534, + "5028": 691671.0454326957, + "5029": 696613.0143789113, + "5030": 701557.3413680814, + "5031": 706104.8068076075, + "5032": 710654.4289353727, + "5033": 714789.5636260179, + "5034": 718926.6451157212, + "5035": 722633.249050384, + "5036": 726341.582188805, + "5037": 729605.1465295198, + "5038": 732870.2156313321, + "5039": 735677.9799690426, + "5040": 738487.0186636107, + "5041": 740828.021377694, + "5042": 743170.0629921257, + "5043": 745035.1845109166, + "5044": 746901.1053505264, + "5045": 748283.1041421237, + "5046": 749665.6594975095, + "5047": 750559.2006488076, + "5048": 751453.0533874223, + "5049": 751854.7296585981, + "5050": 752256.4712879986, + "5051": 752164.8165593463, + "5052": 752072.9806789688, + "5053": 751488.4757370249, + "5054": 750903.5438254192, + "5055": 749828.6144655341, + "5056": 748753.0139802037, + "5057": 747192.0214330569, + "5058": 745630.1162304159, + "5059": 743589.339950246, + "5060": 741547.4130634846, + "5061": 739035.0259459743, + "5062": 736521.2547888207, + "5063": 733547.2909164253, + "5064": 730571.7150106435, + "5065": 727148.0300526738, + "5066": 723722.5114066795, + "5067": 719862.7358304082, + "5068": 716000.9121253573, + "5069": 711720.39740281, + "5070": 707437.6281709205, + "5071": 702753.3861936482, + "5072": 698066.6922011618, + "5073": 692997.3281420945, + "5074": 687925.3242161075, + "5075": 682490.9631034544, + "5076": 677053.7846677155, + "5077": 671275.9919606928, + "5078": 665495.2155703057, + "5079": 659396.9120501385, + "5080": 653295.4702387732, + "5081": 646900.8415508617, + "5082": 640502.9323265383, + "5083": 633837.3335307839, + "5084": 627168.32487741, + "5085": 620258.1803833948, + "5086": 613344.5101449394, + "5087": 606217.2094268734, + "5088": 599086.2809692952, + "5089": 591770.0704722902, + "5090": 584450.1445349867, + "5091": 576974.016199264, + "5092": 569494.0993628661, + "5093": 561887.6762058284, + "5094": 554277.4064164936, + "5095": 546570.8256242299, + "5096": 538860.3552262294, + "5097": 531084.1492158255, + "5098": 523304.0259540336, + "5099": 515489.0018760905, + "5100": 507670.048338011, + "5101": 499847.1664949141, + "5102": 492020.3584680252, + "5103": 484220.6101277918, + "5104": 476416.9543522843, + "5105": 468671.2394402084, + "5106": 460921.6512395656, + "5107": 453260.656390345, + "5108": 445595.8376627019, + "5109": 438049.9151143305, + "5110": 430500.2331661285, + "5111": 423099.2809734959, + "5112": 415694.6486736133, + "5113": 408467.9927145616, + "5114": 401237.7504419065, + "5115": 394214.0286814038, + "5116": 387186.828531859, + "5117": 380393.8780010555, + "5118": 373597.5707107657, + "5119": 367062.3176469657, + "5120": 360523.8426782234, + "5121": 354272.1962593475, + "5122": 348017.4754828598, + "5123": 342074.2255757737, + "5124": 336128.060968901, + "5125": 330516.7802951549, + "5126": 324902.7560598541, + "5127": 319645.7071649375, + "5128": 314386.0966517098, + "5129": 309504.1440449742, + "5130": 304619.8218501448, + "5131": 300132.3496621348, + "5132": 295642.7092453755, + "5133": 291567.5447275396, + "5134": 287490.4218747618, + "5135": 283843.7650434535, + "5136": 280195.3674771275, + "5137": 276991.7271795598, + "5138": 273786.5705942573, + "5139": 271038.7072487291, + "5140": 268289.5580243253, + "5141": 266008.4332606983, + "5142": 263726.2580793221, + "5143": 261920.9914784933, + "5144": 260114.9140440604, + "5145": 258792.7471471613, + "5146": 257470.0121783012, + "5147": 256636.2799076605, + "5148": 255802.2245461401, + "5149": 255460.3341508009, + "5150": 255118.3668982822, + "5151": 255269.7845071645, + "5152": 255421.3717734231, + "5153": 256065.6166092011, + "5154": 256710.2769248955, + "5155": 257844.9232014235, + "5156": 258980.2291182522, + "5157": 260600.9156140524, + "5158": 262222.5032848011, + "5159": 264322.9505548304, + "5160": 266424.5369555016, + "5161": 268996.5721132702, + "5162": 271569.9798393262, + "5163": 274603.5688115645, + "5164": 277638.7583504251, + "5165": 281122.045477005, + "5166": 284607.1548294351, + "5167": 288526.5096522615, + "5168": 292447.9011462802, + "5169": 296787.9722025008, + "5170": 301130.2863150613, + "5171": 305874.0617222937, + "5172": 310620.2776963203, + "5173": 315749.1522907988, + "5174": 320880.6553083575, + "5175": 326374.5040710315, + "5176": 331871.1587175297, + "5177": 337708.4161983383, + "5178": 343548.6459278253, + "5179": 349706.3913546937, + "5180": 355867.2636426478, + "5181": 362321.3113793213, + "5182": 368778.6282268653, + "5183": 375503.6232225834, + "5184": 382232.0166549486, + "5185": 389201.5345092659, + "5186": 396174.566691617, + "5187": 403361.217939456, + "5188": 410551.4855149651, + "5189": 417927.0237203395, + "5190": 425306.2659587325, + "5191": 432841.6991905454, + "5192": 440380.9095203134, + "5193": 448046.6147702795, + "5194": 455716.1552543808, + "5195": 463481.9953455257, + "5196": 471251.7136487999, + "5197": 479087.1561731467, + "5198": 486926.5045598267, + "5199": 494800.7423758788, + "5200": 502678.8982675633, + "5201": 510560.971082036, + "5202": 518446.958700344, + "5203": 526305.8752543149, + "5204": 534168.68786815, + "5205": 541973.5482454161, + "5206": 549782.2705403834, + "5207": 557502.3881153339, + "5208": 565226.3182023824, + "5209": 572831.3407461051, + "5210": 580440.1113278734, + "5211": 587900.1407945564, + "5212": 595363.8390112416, + "5213": 602649.5495321155, + "5214": 609938.8350138798, + "5215": 617021.5886330457, + "5216": 624107.8092930731, + "5217": 630959.7689884442, + "5218": 637815.0740996513, + "5219": 644409.3136429829, + "5220": 651006.763752135, + "5221": 657317.3739745616, + "5222": 663631.0472200039, + "5223": 669633.2382637108, + "5224": 675638.3326771316, + "5225": 681308.5318296144, + "5226": 686981.4632181008, + "5227": 692297.407942911, + "5228": 697615.9029650002, + "5229": 702556.7287618247, + "5230": 707499.9128302275, + "5231": 712046.2355775533, + "5232": 716594.7152416278, + "5233": 720728.7076970349, + "5234": 724864.6471798959, + "5235": 728570.1093360545, + "5236": 732277.300924253, + "5237": 735539.7239429698, + "5238": 738803.6519509513, + "5239": 741610.2754229418, + "5240": 744418.1734798435, + "5241": 746758.0357842571, + "5242": 749098.9372169593, + "5243": 750962.9187819036, + "5244": 752827.6998954933, + "5245": 754208.5591888399, + "5246": 755589.9752736876, + "5247": 756482.3773821041, + "5248": 757375.0913054365, + "5249": 757775.6289888726, + "5250": 758176.2322580197, + "5251": 758083.4393965435, + "5252": 757990.4656107152, + "5253": 757404.8229906369, + "5254": 756818.7536281565, + "5255": 755742.6870446004, + "5256": 754665.9495627459, + "5257": 753103.8202461657, + "5258": 751540.7785011252, + "5259": 749498.8659055339, + "5260": 747455.8029302723, + "5261": 744942.2799511267, + "5262": 742427.373159147, + "5263": 739452.2738786779, + "5264": 736475.5627915189, + "5265": 733050.7428788118, + "5266": 729624.0895046645, + "5267": 725763.1794267676, + "5268": 721900.221446563, + "5269": 717618.5726752776, + "5270": 713334.6696210094, + "5271": 708649.2940476618, + "5272": 703961.4666853476, + "5273": 698890.9694826441, + "5274": 693817.8326391563, + "5275": 688382.338835082, + "5276": 682944.0279339455, + "5277": 677165.102987493, + "5278": 671383.1945835882, + "5279": 665283.7592757592, + "5280": 659181.1859025324, + "5281": 652785.4258785041, + "5282": 646386.3855437526, + "5283": 639719.6558632033, + "5284": 633049.5165506119, + "5285": 626138.2416229009, + "5286": 619223.4411762159, + "5287": 612095.0104753306, + "5288": 604962.9522602882, + "5289": 597645.6122311184, + "5290": 590324.556986894, + "5291": 582847.2995694387, + "5292": 575366.253876441, + "5293": 567758.702087881, + "5294": 560147.3038920459, + "5295": 552439.5949182485, + "5296": 544727.9965636258, + "5297": 536950.6628214554, + "5298": 529169.4120526977, + "5299": 521353.2606925344, + "5300": 513533.1800969247, + "5301": 505709.1714209321, + "5302": 497881.2367857275, + "5303": 490080.3620617029, + "5304": 482275.5801268733, + "5305": 474528.7392798897, + "5306": 466778.0253686982, + "5307": 459115.9050332331, + "5308": 451449.9610435944, + "5309": 443902.9134574214, + "5310": 436352.1066955568, + "5311": 428950.0299133457, + "5312": 421544.2732479136, + "5313": 414316.4931472866, + "5314": 407085.1269569756, + "5315": 400060.2815026813, + "5316": 393031.9578831546, + "5317": 386237.8841061241, + "5318": 379440.4537933071, + "5319": 372904.0779306254, + "5320": 366364.4803865917, + "5321": 360111.7116159604, + "5322": 353855.8687111985, + "5323": 347911.4968992647, + "5324": 341964.2106109162, + "5325": 336351.8084790115, + "5326": 330736.663008815, + "5327": 325478.4931022107, + "5328": 320217.7618004491, + "5329": 315334.6886282787, + "5330": 310449.2460910592, + "5331": 305960.6537836494, + "5332": 301469.8934704261, + "5333": 297393.6092790078, + "5334": 293315.3669754746, + "5335": 289667.5909161837, + "5336": 286018.0743445936, + "5337": 282813.3152644259, + "5338": 279607.0401191332, + "5339": 276858.0584361706, + "5340": 274107.7910968338, + "5341": 271825.5484407211, + "5342": 269542.2555892523, + "5343": 267735.8715406701, + "5344": 265928.6768807684, + "5345": 264605.3929806314, + "5346": 263281.5412307102, + "5347": 262446.6924011311, + "5348": 261611.5207027411, + "5349": 261268.5141925469, + "5350": 260925.431047134, + "5351": 261075.732985029, + "5352": 261226.2048021533, + "5353": 261869.334410596, + "5354": 262512.8797207004, + "5355": 263646.4112133299, + "5356": 264780.6025678975, + "5357": 266400.1747230205, + "5358": 268020.648274622, + "5359": 270119.9816469806, + "5360": 272220.4543714037, + "5361": 274791.3760742932, + "5362": 277363.6705667853, + "5363": 280396.1465267215, + "5364": 283430.2232744881, + "5365": 286912.3978311286, + "5366": 290396.3948347201, + "5367": 294314.6375297555, + "5368": 298234.9171169771, + "5369": 302573.876487341, + "5370": 306915.079134932, + "5371": 311657.7432980284, + "5372": 316402.8482486993, + "5373": 321530.6120405488, + "5374": 326661.0044761521, + "5375": 332153.7428774909, + "5376": 337649.2873832206, + "5377": 343485.4349437745, + "5378": 349324.554973467, + "5379": 355481.1909209481, + "5380": 361640.9539498686, + "5381": 368093.8926478095, + "5382": 374550.1006768682, + "5383": 381273.9870742958, + "5384": 388001.2721285115, + "5385": 394969.6818247677, + "5386": 401941.606069093, + "5387": 409127.1495988883, + "5388": 416316.309676283, + "5389": 423690.7406034191, + "5390": 431068.8757833971, + "5391": 438603.2021765653, + "5392": 446141.3058874061, + "5393": 453805.9047381096, + "5394": 461474.3390425597, + "5395": 469239.0731736124, + "5396": 477007.6857363004, + "5397": 484842.0227395145, + "5398": 492680.2658244621, + "5399": 500553.3985581295, + "5400": 508430.4495867244, + "5401": 516311.4177573499, + "5402": 524196.3009510004, + "5403": 532054.1132994507, + "5404": 539915.8219268498, + "5405": 547719.5785367117, + "5406": 555527.1972832541, + "5407": 563246.2115287064, + "5408": 570969.0385051309, + "5409": 578572.9581570514, + "5410": 586180.6260657867, + "5411": 593639.5530781534, + "5412": 601102.1490591868, + "5413": 608386.7575630209, + "5414": 615674.9412463051, + "5415": 622756.5932854981, + "5416": 629841.7125840076, + "5417": 636692.5711362634, + "5418": 643546.7753227055, + "5419": 650139.9141595702, + "5420": 656736.2637805014, + "5421": 663045.7737329007, + "5422": 669358.3469264572, + "5423": 675359.4381363676, + "5424": 681363.4329340291, + "5425": 687032.5326887376, + "5426": 692704.3648973827, + "5427": 698019.2106602325, + "5428": 703336.6069381903, + "5429": 708276.3342086602, + "5430": 713218.4199684333, + "5431": 717763.6446248023, + "5432": 722311.0264155408, + "5433": 726443.921215181, + "5434": 730578.763259792, + "5435": 734283.1281951662, + "5436": 737989.2227799935, + "5437": 741250.5490127007, + "5438": 744513.3804519826, + "5439": 747318.9075725313, + "5440": 750125.7094951972, + "5441": 752464.4758825294, + "5442": 754804.2816152533, + "5443": 756667.1676972703, + "5444": 758530.8535449316, + "5445": 759910.6177892981, + "5446": 761290.9390420618, + "5447": 762182.2465352383, + "5448": 763073.8660601244, + "5449": 763473.3095618554, + "5450": 763872.8188659869, + "5451": 763778.9322561339, + "5452": 763684.8649385155, + "5453": 763098.1290031828, + "5454": 762510.9665419317, + "5455": 761433.8070760374, + "5456": 760355.9769282262, + "5457": 758792.755162019, + "5458": 757228.62118363, + "5459": 755185.6165709173, + "5460": 753141.4617947103, + "5461": 750626.8472307438, + "5462": 748110.8490700165, + "5463": 745134.6586368221, + "5464": 742156.8566129085, + "5465": 738730.9459793668, + "5466": 735303.2021002531, + "5467": 731441.2017332076, + "5468": 727577.1536796205, + "5469": 723294.4150506678, + "5470": 719009.4223543964, + "5471": 714322.9573546589, + "5472": 709634.0407815167, + "5473": 704562.4545834963, + "5474": 699488.2289601517, + "5475": 694051.6465916297, + "5476": 688612.2473414039, + "5477": 682832.2342611692, + "5478": 677049.2379387385, + "5479": 670948.7149275894, + "5480": 664845.0540661971, + "5481": 658448.2067691071, + "5482": 652048.079376347, + "5483": 645380.2628527913, + "5484": 638709.0369121451, + "5485": 631796.6755712802, + "5486": 624880.7889262912, + "5487": 617751.2722419014, + "5488": 610618.1282581032, + "5489": 603299.7026748756, + "5490": 595977.562091241, + "5491": 588499.2195489723, + "5492": 581017.0889457077, + "5493": 573408.4524613764, + "5494": 565795.9697842152, + "5495": 558087.1765434865, + "5496": 550374.4941362767, + "5497": 542596.076555813, + "5498": 534813.7421630053, + "5499": 526996.5073929847, + "5500": 519175.3436016602, + "5501": 511350.2519440451, + "5502": 503521.2345412597, + "5503": 495719.2772636458, + "5504": 487913.4129891678, + "5505": 480165.4900164268, + "5506": 472413.6941933184, + "5507": 464750.4921597266, + "5508": 457083.4666857015, + "5509": 449535.3378288319, + "5510": 441983.4500099105, + "5511": 434580.2923842319, + "5512": 427173.4550888718, + "5513": 419944.5945718063, + "5514": 412712.1481784958, + "5515": 405686.2227345913, + "5516": 398656.8193387935, + "5517": 391861.6659987807, + "5518": 385063.1563362206, + "5519": 378525.701336985, + "5520": 371985.0248695363, + "5521": 365731.1773885794, + "5522": 359474.255986531, + "5523": 353528.8058903001, + "5524": 347580.4415305939, + "5525": 341966.9615402212, + "5526": 336350.7384243964, + "5527": 331091.4910849539, + "5528": 325829.6825630942, + "5529": 320945.5323835161, + "5530": 316059.0130515298, + "5531": 311569.3441619439, + "5532": 307077.5074790859, + "5533": 303000.1471305243, + "5534": 298920.8288822899, + "5535": 295271.97709069, + "5536": 291621.3849991335, + "5537": 288415.5506112925, + "5538": 285208.2003705701, + "5539": 282458.1438043715, + "5540": 279706.8017939433, + "5541": 277423.4846788339, + "5542": 275139.1175804139, + "5543": 273331.6594968763, + "5544": 271523.3910139658, + "5545": 270199.033502717, + "5546": 268874.1083535316, + "5547": 268038.1863364865, + "5548": 267201.9416623795, + "5549": 266857.8623881678, + "5550": 266513.7066903876, + "5551": 266662.9362875164, + "5552": 266812.335975426, + "5553": 267454.3936661564, + "5554": 268096.8672700016, + "5555": 269229.3272677758, + "5556": 270362.447338843, + "5557": 271980.9484217711, + "5558": 273600.3511124341, + "5559": 275698.6138350614, + "5560": 277798.0161209115, + "5561": 280367.867596337, + "5562": 282939.0920724252, + "5563": 285970.4982269683, + "5564": 289003.5053803038, + "5565": 292484.6105534261, + "5566": 295967.5383843634, + "5567": 299884.7121175595, + "5568": 303803.9229537079, + "5569": 308141.8137837157, + "5570": 312481.9481016187, + "5571": 317223.5441456464, + "5572": 321967.5811878191, + "5573": 327094.2772816921, + "5574": 332223.6022297916, + "5575": 337715.2733540505, + "5576": 343209.7507930757, + "5577": 349044.8314972514, + "5578": 354882.8848808435, + "5579": 361038.454392453, + "5580": 367197.1511956825, + "5581": 373649.0238780636, + "5582": 380104.1661016457, + "5583": 386826.986903631, + "5584": 393553.2065723902, + "5585": 400520.5510931269, + "5586": 407491.4103718214, + "5587": 414675.8891458257, + "5588": 421863.9846772209, + "5589": 429237.3512681004, + "5590": 436614.4223215161, + "5591": 444147.6847977681, + "5592": 451684.7248012903, + "5593": 459348.2601542241, + "5594": 467015.6311704053, + "5595": 474779.3022226413, + "5596": 482546.8519159164, + "5597": 490380.1262590732, + "5598": 498217.3068932707, + "5599": 506089.377385447, + "5600": 513965.3663817614, + "5601": 521845.2727292686, + "5602": 529729.0943089151, + "5603": 537585.8452524272, + "5604": 545446.4926839056, + "5605": 553249.1883068164, + "5606": 561055.7462753288, + "5607": 568773.6999516243, + "5608": 576495.466567717, + "5609": 584098.3260680826, + "5610": 591704.9340339919, + "5611": 599162.8013122133, + "5612": 606624.337767734, + "5613": 613907.88695464, + "5614": 621195.0115295328, + "5615": 628275.6046688231, + "5616": 635359.6652758705, + "5617": 642209.4653450568, + "5618": 649062.6112567743, + "5619": 655654.6920272113, + "5620": 662249.9837899636, + "5621": 668558.4360923852, + "5622": 674869.9518441173, + "5623": 680869.9858203086, + "5624": 686872.9235923088, + "5625": 692540.9665293656, + "5626": 698211.7421283211, + "5627": 703525.5314893955, + "5628": 708841.8715734446, + "5629": 713780.5428578245, + "5630": 718721.5728392787, + "5631": 723265.7419250524, + "5632": 727812.0683528712, + "5633": 731943.9079972201, + "5634": 736077.6950941201, + "5635": 739781.0052893165, + "5636": 743486.0453414512, + "5637": 746746.3172489036, + "5638": 750008.0945703209, + "5639": 752812.5677803479, + "5640": 755618.3159997874, + "5641": 757956.0288911409, + "5642": 760294.7813350862, + "5643": 762156.6143354776, + "5644": 764019.2473086191, + "5645": 765397.9588855234, + "5646": 766777.2276778357, + "5647": 767667.4829175242, + "5648": 768558.0503958379, + "5649": 768956.4420578653, + "5650": 769354.8997291146, + "5651": 769259.9616931533, + "5652": 769164.8431561533, + "5653": 768577.0562081184, + "5654": 767988.8429407976, + "5655": 766910.6328754185, + "5656": 765831.7523346603, + "5657": 764267.4803819971, + "5658": 762702.2964235952, + "5659": 760658.2420372664, + "5660": 758613.0376937924, + "5661": 756097.3737688612, + "5662": 753580.3264534239, + "5663": 750603.0870717278, + "5664": 747624.2363054737, + "5665": 744197.2771357052, + "5666": 740768.4849264318, + "5667": 736905.4364352467, + "5668": 733040.3404634929, + "5669": 728756.5541222999, + "5670": 724470.513919667, + "5671": 719783.0016194003, + "5672": 715093.0379515145, + "5673": 710020.4048644889, + "5674": 704945.1325578307, + "5675": 699507.50371164, + "5676": 694067.0581893434, + "5677": 688285.9990425892, + "5678": 682501.9568591435, + "5679": 676400.3881924369, + "5680": 670295.6818808982, + "5681": 663897.789339026, + "5682": 657496.6169068012, + "5683": 650827.7555490518, + "5684": 644155.4849794359, + "5685": 637242.0792147788, + "5686": 630325.1483511287, + "5687": 623194.5876531621, + "5688": 616060.3998608247, + "5689": 608740.9306740492, + "5690": 601417.7466918112, + "5691": 593938.3609558373, + "5692": 586455.1873637189, + "5693": 578845.5080953389, + "5694": 571231.9828388876, + "5695": 563522.1472235809, + "5696": 555808.4226464587, + "5697": 548028.9631007019, + "5698": 540245.586947174, + "5699": 532427.3106209597, + "5700": 524605.1054779215, + "5701": 516778.9726730266, + "5702": 508948.9143273488, + "5703": 501145.9163111834, + "5704": 493339.0115024491, + "5705": 485590.0481997001, + "5706": 477837.2122507861, + "5707": 470172.9702955448, + "5708": 462504.90510398, + "5709": 454955.7367336343, + "5710": 447402.8096052543, + "5711": 439998.6128740884, + "5712": 432590.7366771661, + "5713": 425360.8374624175, + "5714": 418127.3525752568, + "5715": 411100.3888412889, + "5716": 404069.9473591683, + "5717": 397273.7561365276, + "5718": 390474.2087949883, + "5719": 383935.716320376, + "5720": 377394.0025811073, + "5721": 371139.1180318409, + "5722": 364881.1597649479, + "5723": 358934.673007291, + "5724": 352985.2721895317, + "5725": 347370.7559444328, + "5726": 341753.4967771628, + "5727": 336493.2135895103, + "5728": 331230.3694226298, + "5729": 326345.1838011745, + "5730": 321457.6292304083, + "5731": 316966.9253050946, + "5732": 312474.0537895148, + "5733": 308395.6588111917, + "5734": 304315.3061361102, + "5735": 300665.420120532, + "5736": 297013.7940078203, + "5737": 293806.9258016016, + "5738": 290598.541945233, + "5739": 287847.4519660744, + "5740": 285095.0767453265, + "5741": 282810.7266224923, + "5742": 280525.3267188966, + "5743": 278716.8360326869, + "5744": 276907.5351495623, + "5745": 275582.1454405119, + "5746": 274256.1882958919, + "5747": 273419.2344857335, + "5748": 272581.9582207891, + "5749": 272236.8475579705, + "5750": 271891.6606737684, + "5751": 272039.8592866147, + "5752": 272188.2281923359, + "5753": 272829.2553029267, + "5754": 273470.6985286355, + "5755": 274602.1283502313, + "5756": 275734.2184470326, + "5757": 277351.6897575619, + "5758": 278970.062877648, + "5759": 281067.2962314751, + "5760": 283165.6693502562, + "5761": 285734.4918602987, + "5762": 288304.6875726447, + "5763": 291335.0651650412, + "5764": 294367.0439577803, + "5765": 297847.1209718114, + "5766": 301329.0208451174, + "5767": 305245.166822097, + "5768": 309163.3501033984, + "5769": 313500.2135798837, + "5770": 317839.3207455436, + "5771": 322579.8898385625, + "5772": 327322.9001309155, + "5773": 332448.5696761129, + "5774": 337576.8682766359, + "5775": 343067.5132543725, + "5776": 348560.9647478843, + "5777": 354395.0197075106, + "5778": 360232.0475474724, + "5779": 366386.5917163258, + "5780": 372544.2633776283, + "5781": 378995.1111188667, + "5782": 385449.2286020455, + "5783": 392171.0248643217, + "5784": 398896.2201940215, + "5785": 405862.5405763035, + "5786": 412832.3759171031, + "5787": 420015.8309537277, + "5788": 427202.9029482133, + "5789": 434575.2462026089, + "5790": 441951.2941199213, + "5791": 449483.5336604059, + "5792": 457019.5509284518, + "5793": 464682.0637461559, + "5794": 472348.4124273092, + "5795": 480111.0613446744, + "5796": 487877.5891031912, + "5797": 495709.8417116573, + "5798": 503546.0008111874, + "5799": 511417.0499686747, + "5800": 519292.0178302339, + "5801": 527170.9032428756, + "5802": 535053.704087501, + "5803": 542909.4344957924, + "5804": 550769.0615918058, + "5805": 558570.7370789627, + "5806": 566376.2751113881, + "5807": 574093.2090512186, + "5808": 581813.9561304242, + "5809": 589415.7962934357, + "5810": 597021.3851214799, + "5811": 604478.2334612806, + "5812": 611938.7511777807, + "5813": 619221.2818250217, + "5814": 626507.3880595608, + "5815": 633586.9630577642, + "5816": 640670.0057229474, + "5817": 647518.7880494479, + "5818": 654370.9164176134, + "5819": 660961.9798435882, + "5820": 667556.2544609238, + "5821": 673863.6898169299, + "5822": 680174.1888212033, + "5823": 686173.2062488487, + "5824": 692175.1276711716, + "5825": 697842.1544573755, + "5826": 703511.9141042583, + "5827": 708824.6877119961, + "5828": 714140.0122414003, + "5829": 719077.6681697832, + "5830": 724017.6829938443, + "5831": 728560.8371207842, + "5832": 733106.148788285, + "5833": 737236.9738707872, + "5834": 741369.7466042682, + "5835": 745072.0426344288, + "5836": 748776.0687198672, + "5837": 752035.3268589189, + "5838": 755296.090610187, + "5839": 758099.550448272, + "5840": 760904.2854939335, + "5841": 763240.9854096286, + "5842": 765578.7250759912, + "5843": 767439.5454968316, + "5844": 769301.1660884105, + "5845": 770678.8654816963, + "5846": 772057.1222882903, + "5847": 772946.3657401172, + "5848": 773835.9216283817, + "5849": 774233.3018981292, + "5850": 774630.7483748235, + "5851": 774534.7993419886, + "5852": 774438.6700057528, + "5853": 773849.872456076, + "5854": 773260.6487846635, + "5855": 772181.4285126996, + "5856": 771101.5379628189, + "5857": 769536.2561984524, + "5858": 767970.0626257232, + "5859": 765924.9988223987, + "5860": 763878.7852592175, + "5861": 761362.1123118236, + "5862": 758844.0561711253, + "5863": 755865.8081613253, + "5864": 752885.9489640812, + "5865": 749457.9815603936, + "5866": 746028.1813142279, + "5867": 742164.1249831339, + "5868": 738298.0213684114, + "5869": 734013.2275811459, + "5870": 729726.1801292941, + "5871": 725037.6607766177, + "5872": 720346.6902530886, + "5873": 715273.0505071426, + "5874": 710196.7717382434, + "5875": 704758.1366264478, + "5876": 699316.685035139, + "5877": 693534.620015922, + "5878": 687749.5721565195, + "5879": 681646.998010319, + "5880": 675541.2864157057, + "5881": 669142.3887871351, + "5882": 662740.2114645449, + "5883": 656070.3454127196, + "5884": 649397.0703452745, + "5885": 642482.6602789913, + "5886": 635564.7253098751, + "5887": 628433.1607025593, + "5888": 621297.9691969465, + "5889": 613977.496492926, + "5890": 606653.3091894304, + "5891": 599172.9203281432, + "5892": 591688.7438066127, + "5893": 584078.0618046788, + "5894": 576463.5340104885, + "5895": 568752.6960532148, + "5896": 561037.9693298546, + "5897": 553257.5078335457, + "5898": 545473.1299251085, + "5899": 537653.8520395849, + "5900": 529830.6455327944, + "5901": 522003.511559661, + "5902": 514172.4522412159, + "5903": 506368.4534477112, + "5904": 498560.5480570227, + "5905": 490810.5843676619, + "5906": 483056.7482274355, + "5907": 475391.5062761382, + "5908": 467722.441283731, + "5909": 460172.2733077139, + "5910": 452618.3467687904, + "5911": 445213.1508221663, + "5912": 437804.2756048281, + "5913": 430573.3775646633, + "5914": 423338.8940470433, + "5915": 416310.9318775301, + "5916": 409279.4921547357, + "5917": 402482.3028862498, + "5918": 395681.7576936514, + "5919": 389142.267562723, + "5920": 382599.5563618391, + "5921": 376343.6745456154, + "5922": 370084.7192063804, + "5923": 364137.2355709543, + "5924": 358186.8380699559, + "5925": 352571.3253361053, + "5926": 346953.0698745286, + "5927": 341691.7905869717, + "5928": 336427.9505145467, + "5929": 331541.7691818641, + "5930": 326653.2190941456, + "5931": 322161.5198461117, + "5932": 317667.6532020014, + "5933": 313588.2632892953, + "5934": 309506.9158739356, + "5935": 305856.0353121416, + "5936": 302203.4148472341, + "5937": 298995.5524827972, + "5938": 295786.1746621456, + "5939": 293034.0909125968, + "5940": 290280.7221153092, + "5941": 287995.3786097434, + "5942": 285708.9855171818, + "5943": 283899.5018357297, + "5944": 282089.2081510438, + "5945": 280762.825834071, + "5946": 279435.876275125, + "5947": 278597.9302441951, + "5948": 277759.6619519912, + "5949": 277413.559455383, + "5950": 277067.3809308189, + "5951": 277214.5880966886, + "5952": 277361.9657487764, + "5953": 278002.0017990349, + "5954": 278642.4541576704, + "5955": 279772.8933054095, + "5956": 280903.9929215289, + "5957": 282520.4739445088, + "5958": 284137.8569701361, + "5959": 286234.1004225526, + "5960": 288331.4838329293, + "5961": 290899.3168275318, + "5962": 293468.52321736, + "5963": 296497.9116801189, + "5964": 299528.9015360586, + "5965": 303007.9898060863, + "5966": 306488.9011281434, + "5967": 310404.0587465861, + "5968": 314321.2538620211, + "5969": 318657.1293652683, + "5970": 322995.2487502766, + "5971": 327734.8302551885, + "5972": 332476.8531519371, + "5973": 337601.5354939909, + "5974": 342728.8470837892, + "5975": 348218.5052431782, + "5976": 353710.9701106776, + "5977": 359544.0386365851, + "5978": 365380.0802350796, + "5979": 371533.6383546757, + "5980": 377690.3241588888, + "5981": 384140.1862351643, + "5982": 390593.3182454647, + "5983": 397314.1292269055, + "5984": 404038.3394677709, + "5985": 411003.674953178, + "5986": 417972.5255890205, + "5987": 425154.996112564, + "5988": 432341.0837858031, + "5989": 439712.4429107447, + "5990": 447087.5068903546, + "5991": 454618.7626848462, + "5992": 462153.7963985669, + "5993": 469815.3258535723, + "5994": 477480.6913636117, + "5995": 485242.3573014062, + "5996": 493007.9022718542, + "5997": 500839.1722837116, + "5998": 508674.3489780517, + "5999": 516544.4159217263, + "6000": 524418.4017608084, + "6001": 532296.3053422672, + "6002": 540178.1245469626, + "6003": 548032.8735065352, + "6004": 555891.5193449999, + "6005": 563692.2137657367, + "6006": 571496.7709228288, + "6007": 579212.724178372, + "6008": 586932.4907642945, + "6009": 594533.3506249862, + "6010": 602137.9593416322, + "6011": 609593.827760915, + "6012": 617053.3657477363, + "6013": 624334.9168560964, + "6014": 631620.0437425108, + "6015": 638698.6395833049, + "6016": 645780.7032817526, + "6017": 652628.5068321505, + "6018": 659479.6566148049, + "6019": 666069.7416458188, + "6020": 672663.0380587027, + "6021": 678969.4954007249, + "6022": 685279.0165814413, + "6023": 691277.0563759152, + "6024": 697278.000355411, + "6025": 702944.0498890912, + "6026": 708612.8324737124, + "6027": 713924.6292094098, + "6028": 719238.9770569537, + "6029": 724175.6564936152, + "6030": 729114.6950160528, + "6031": 733656.8730314261, + "6032": 738201.2087773763, + "6033": 742331.0581283027, + "6034": 746462.8553201417, + "6035": 750164.1759985532, + "6036": 753867.2269220941, + "6037": 757125.5100890594, + "6038": 760385.299058011, + "6039": 763187.7843035086, + "6040": 765991.5449462709, + "6041": 768327.270648714, + "6042": 770664.0362914311, + "6043": 772523.8828781913, + "6044": 774384.5298252148, + "6045": 775761.2557634286, + "6046": 777138.5393043938, + "6047": 778026.8096799941, + "6048": 778915.3926813933, + "6049": 779311.8002535957, + "6050": 779708.2742220251, + "6051": 779611.3528701642, + "6052": 779514.2514041004, + "6053": 778924.4819137533, + "6054": 778334.2864907872, + "6055": 777254.0946563456, + "6056": 776173.232733023, + "6057": 774606.9797842093, + "6058": 773039.8152159867, + "6059": 770993.7806060823, + "6060": 768946.5964251937, + "6061": 766428.9530489249, + "6062": 763909.926668143, + "6063": 760930.7086070104, + "6064": 757949.8795471442, + "6065": 754520.942469504, + "6066": 751090.1727380148, + "6067": 747225.1471101863, + "6068": 743358.0743872772, + "6069": 739072.311680333, + "6070": 734784.2954972695, + "6071": 730094.8076018081, + "6072": 725402.86872388, + "6073": 720328.2608118808, + "6074": 715251.0140652338, + "6075": 709811.4111639551, + "6076": 704368.9919713876, + "6077": 698585.959539096, + "6078": 692799.9444547624, + "6079": 686696.403271734, + "6080": 680589.7248283557, + "6081": 674189.8605390426, + "6082": 667786.7167436922, + "6083": 661115.8844070486, + "6084": 654441.6432426865, + "6085": 647526.2672673478, + "6086": 640607.3665769969, + "6087": 633474.8364362271, + "6088": 626338.6795849007, + "6089": 619017.2417228669, + "6090": 611692.0894490179, + "6091": 604210.735804997, + "6092": 596725.5946883124, + "6093": 589113.9482787637, + "6094": 581498.4562644578, + "6095": 573786.6542745274, + "6096": 566070.9637059295, + "6097": 558289.5385517615, + "6098": 550504.1971728039, + "6099": 542683.9560040584, + "6100": 534859.7864013043, + "6101": 527031.6895194256, + "6102": 519199.6674794134, + "6103": 511394.7061514799, + "6104": 503585.8384134606, + "6105": 495834.9125638271, + "6106": 488080.1144503461, + "6107": 480413.9107127723, + "6108": 472743.8841210268, + "6109": 465192.7547325694, + "6110": 457637.8669680637, + "6111": 450231.7099826757, + "6112": 442821.8739133519, + "6113": 435590.0152079396, + "6114": 428354.5712117706, + "6115": 421325.6487503671, + "6116": 414293.2489223009, + "6117": 407495.0997351221, + "6118": 400693.5948103694, + "6119": 394153.1451337861, + "6120": 387609.4745737065, + "6121": 381352.6335847064, + "6122": 375092.7192590745, + "6123": 369144.2768235915, + "6124": 363192.9207088362, + "6125": 357576.4495474889, + "6126": 351957.2358446361, + "6127": 346694.9985019838, + "6128": 341430.2005606046, + "6129": 336543.061545069, + "6130": 331653.5539605591, + "6131": 327160.8974017557, + "6132": 322666.0736328583, + "6133": 318585.7267813077, + "6134": 314503.4226130064, + "6135": 310851.5854841341, + "6136": 307198.0086379721, + "6137": 303989.1900780646, + "6138": 300778.856247687, + "6139": 298025.8166741172, + "6140": 295271.4922384737, + "6141": 292985.1932801779, + "6142": 290697.8449204725, + "6143": 288887.4061574233, + "6144": 287076.1575766475, + "6145": 285748.8205490524, + "6146": 284420.9164649124, + "6147": 283582.0160941771, + "6148": 282742.793647517, + "6149": 282395.7371817623, + "6150": 282048.6048733221, + "6151": 282194.8584405466, + "6152": 282341.2826791808, + "6153": 282980.3655011376, + "6154": 283619.8648165842, + "6155": 284749.3511062076, + "6156": 285879.4980492453, + "6157": 287495.0265841381, + "6158": 289111.4573066334, + "6159": 291206.7486408339, + "6160": 293303.1801178713, + "6161": 295870.0613639717, + "6162": 298438.3161900959, + "6163": 301466.7532739094, + "6164": 304496.7919356232, + "6165": 307974.9291961053, + "6166": 311454.8896932576, + "6167": 315369.0966713975, + "6168": 319285.3413310921, + "6169": 323620.2665631222, + "6170": 327957.4358613976, + "6171": 332696.0674640216, + "6172": 337437.140642888, + "6173": 342560.8734514264, + "6174": 347687.2356920368, + "6175": 353175.9446865262, + "6176": 358667.4605733754, + "6177": 364499.5803028428, + "6178": 370334.6732890685, + "6179": 376487.2829805275, + "6180": 382643.0205406967, + "6181": 389091.9345569822, + "6182": 395544.1186913074, + "6183": 402263.9819807488, + "6184": 408987.2447135518, + "6185": 415951.6328747944, + "6186": 422919.536370331, + "6187": 430101.0599373887, + "6188": 437286.2008379229, + "6189": 444656.6133739016, + "6190": 452030.7309482515, + "6191": 459561.0405211473, + "6192": 467095.1281968975, + "6193": 474755.7117975185, + "6194": 482420.1316367211, + "6195": 490180.8520871873, + "6196": 497945.4517537766, + "6197": 505775.7766452063, + "6198": 513610.0084025104, + "6199": 521479.1305925023, + "6200": 529352.1718612162 + } +} diff --git a/tests/cases/results/result_pulsatileFlow_bifurcationR_RCR_cycle_error.json b/tests/cases/results/result_pulsatileFlow_bifurcationR_RCR_cycle_error.json index 4073bb57d..d6a9287ee 100644 --- a/tests/cases/results/result_pulsatileFlow_bifurcationR_RCR_cycle_error.json +++ b/tests/cases/results/result_pulsatileFlow_bifurcationR_RCR_cycle_error.json @@ -1 +1,2408 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0","101":"branch0_seg0","102":"branch0_seg0","103":"branch0_seg0","104":"branch0_seg0","105":"branch0_seg0","106":"branch0_seg0","107":"branch0_seg0","108":"branch0_seg0","109":"branch0_seg0","110":"branch0_seg0","111":"branch0_seg0","112":"branch0_seg0","113":"branch0_seg0","114":"branch0_seg0","115":"branch0_seg0","116":"branch0_seg0","117":"branch0_seg0","118":"branch0_seg0","119":"branch0_seg0","120":"branch0_seg0","121":"branch0_seg0","122":"branch0_seg0","123":"branch0_seg0","124":"branch0_seg0","125":"branch0_seg0","126":"branch0_seg0","127":"branch0_seg0","128":"branch0_seg0","129":"branch0_seg0","130":"branch0_seg0","131":"branch0_seg0","132":"branch0_seg0","133":"branch1_seg0","134":"branch1_seg0","135":"branch1_seg0","136":"branch1_seg0","137":"branch1_seg0","138":"branch1_seg0","139":"branch1_seg0","140":"branch1_seg0","141":"branch1_seg0","142":"branch1_seg0","143":"branch1_seg0","144":"branch1_seg0","145":"branch1_seg0","146":"branch1_seg0","147":"branch1_seg0","148":"branch1_seg0","149":"branch1_seg0","150":"branch1_seg0","151":"branch1_seg0","152":"branch1_seg0","153":"branch1_seg0","154":"branch1_seg0","155":"branch1_seg0","156":"branch1_seg0","157":"branch1_seg0","158":"branch1_seg0","159":"branch1_seg0","160":"branch1_seg0","161":"branch1_seg0","162":"branch1_seg0","163":"branch1_seg0","164":"branch1_seg0","165":"branch1_seg0","166":"branch1_seg0","167":"branch1_seg0","168":"branch1_seg0","169":"branch1_seg0","170":"branch1_seg0","171":"branch1_seg0","172":"branch1_seg0","173":"branch1_seg0","174":"branch1_seg0","175":"branch1_seg0","176":"branch1_seg0","177":"branch1_seg0","178":"branch1_seg0","179":"branch1_seg0","180":"branch1_seg0","181":"branch1_seg0","182":"branch1_seg0","183":"branch1_seg0","184":"branch1_seg0","185":"branch1_seg0","186":"branch1_seg0","187":"branch1_seg0","188":"branch1_seg0","189":"branch1_seg0","190":"branch1_seg0","191":"branch1_seg0","192":"branch1_seg0","193":"branch1_seg0","194":"branch1_seg0","195":"branch1_seg0","196":"branch1_seg0","197":"branch1_seg0","198":"branch1_seg0","199":"branch1_seg0","200":"branch1_seg0","201":"branch1_seg0","202":"branch1_seg0","203":"branch1_seg0","204":"branch1_seg0","205":"branch1_seg0","206":"branch1_seg0","207":"branch1_seg0","208":"branch1_seg0","209":"branch1_seg0","210":"branch1_seg0","211":"branch1_seg0","212":"branch1_seg0","213":"branch1_seg0","214":"branch1_seg0","215":"branch1_seg0","216":"branch1_seg0","217":"branch1_seg0","218":"branch1_seg0","219":"branch1_seg0","220":"branch1_seg0","221":"branch1_seg0","222":"branch1_seg0","223":"branch1_seg0","224":"branch1_seg0","225":"branch1_seg0","226":"branch1_seg0","227":"branch1_seg0","228":"branch1_seg0","229":"branch1_seg0","230":"branch1_seg0","231":"branch1_seg0","232":"branch1_seg0","233":"branch1_seg0","234":"branch1_seg0","235":"branch1_seg0","236":"branch1_seg0","237":"branch1_seg0","238":"branch1_seg0","239":"branch1_seg0","240":"branch1_seg0","241":"branch1_seg0","242":"branch1_seg0","243":"branch1_seg0","244":"branch1_seg0","245":"branch1_seg0","246":"branch1_seg0","247":"branch1_seg0","248":"branch1_seg0","249":"branch1_seg0","250":"branch1_seg0","251":"branch1_seg0","252":"branch1_seg0","253":"branch1_seg0","254":"branch1_seg0","255":"branch1_seg0","256":"branch1_seg0","257":"branch1_seg0","258":"branch1_seg0","259":"branch1_seg0","260":"branch1_seg0","261":"branch1_seg0","262":"branch1_seg0","263":"branch1_seg0","264":"branch1_seg0","265":"branch1_seg0","266":"branch2_seg0","267":"branch2_seg0","268":"branch2_seg0","269":"branch2_seg0","270":"branch2_seg0","271":"branch2_seg0","272":"branch2_seg0","273":"branch2_seg0","274":"branch2_seg0","275":"branch2_seg0","276":"branch2_seg0","277":"branch2_seg0","278":"branch2_seg0","279":"branch2_seg0","280":"branch2_seg0","281":"branch2_seg0","282":"branch2_seg0","283":"branch2_seg0","284":"branch2_seg0","285":"branch2_seg0","286":"branch2_seg0","287":"branch2_seg0","288":"branch2_seg0","289":"branch2_seg0","290":"branch2_seg0","291":"branch2_seg0","292":"branch2_seg0","293":"branch2_seg0","294":"branch2_seg0","295":"branch2_seg0","296":"branch2_seg0","297":"branch2_seg0","298":"branch2_seg0","299":"branch2_seg0","300":"branch2_seg0","301":"branch2_seg0","302":"branch2_seg0","303":"branch2_seg0","304":"branch2_seg0","305":"branch2_seg0","306":"branch2_seg0","307":"branch2_seg0","308":"branch2_seg0","309":"branch2_seg0","310":"branch2_seg0","311":"branch2_seg0","312":"branch2_seg0","313":"branch2_seg0","314":"branch2_seg0","315":"branch2_seg0","316":"branch2_seg0","317":"branch2_seg0","318":"branch2_seg0","319":"branch2_seg0","320":"branch2_seg0","321":"branch2_seg0","322":"branch2_seg0","323":"branch2_seg0","324":"branch2_seg0","325":"branch2_seg0","326":"branch2_seg0","327":"branch2_seg0","328":"branch2_seg0","329":"branch2_seg0","330":"branch2_seg0","331":"branch2_seg0","332":"branch2_seg0","333":"branch2_seg0","334":"branch2_seg0","335":"branch2_seg0","336":"branch2_seg0","337":"branch2_seg0","338":"branch2_seg0","339":"branch2_seg0","340":"branch2_seg0","341":"branch2_seg0","342":"branch2_seg0","343":"branch2_seg0","344":"branch2_seg0","345":"branch2_seg0","346":"branch2_seg0","347":"branch2_seg0","348":"branch2_seg0","349":"branch2_seg0","350":"branch2_seg0","351":"branch2_seg0","352":"branch2_seg0","353":"branch2_seg0","354":"branch2_seg0","355":"branch2_seg0","356":"branch2_seg0","357":"branch2_seg0","358":"branch2_seg0","359":"branch2_seg0","360":"branch2_seg0","361":"branch2_seg0","362":"branch2_seg0","363":"branch2_seg0","364":"branch2_seg0","365":"branch2_seg0","366":"branch2_seg0","367":"branch2_seg0","368":"branch2_seg0","369":"branch2_seg0","370":"branch2_seg0","371":"branch2_seg0","372":"branch2_seg0","373":"branch2_seg0","374":"branch2_seg0","375":"branch2_seg0","376":"branch2_seg0","377":"branch2_seg0","378":"branch2_seg0","379":"branch2_seg0","380":"branch2_seg0","381":"branch2_seg0","382":"branch2_seg0","383":"branch2_seg0","384":"branch2_seg0","385":"branch2_seg0","386":"branch2_seg0","387":"branch2_seg0","388":"branch2_seg0","389":"branch2_seg0","390":"branch2_seg0","391":"branch2_seg0","392":"branch2_seg0","393":"branch2_seg0","394":"branch2_seg0","395":"branch2_seg0","396":"branch2_seg0","397":"branch2_seg0","398":"branch2_seg0"},"time":{"0":0.0,"1":0.25,"2":0.5,"3":0.75,"4":1.0,"5":1.25,"6":1.5,"7":1.75,"8":2.0,"9":2.25,"10":2.5,"11":2.75,"12":3.0,"13":3.25,"14":3.5,"15":3.75,"16":4.0,"17":4.25,"18":4.5,"19":4.75,"20":5.0,"21":5.25,"22":5.5,"23":5.75,"24":6.0,"25":6.25,"26":6.5,"27":6.75,"28":7.0,"29":7.25,"30":7.5,"31":7.75,"32":8.0,"33":8.25,"34":8.5,"35":8.75,"36":9.0,"37":9.25,"38":9.5,"39":9.75,"40":10.0,"41":10.25,"42":10.5,"43":10.75,"44":11.0,"45":11.25,"46":11.5,"47":11.75,"48":12.0,"49":12.25,"50":12.5,"51":12.75,"52":13.0,"53":13.25,"54":13.5,"55":13.75,"56":14.0,"57":14.25,"58":14.5,"59":14.75,"60":15.0,"61":15.25,"62":15.5,"63":15.75,"64":16.0,"65":16.25,"66":16.5,"67":16.75,"68":17.0,"69":17.25,"70":17.5,"71":17.75,"72":18.0,"73":18.25,"74":18.5,"75":18.75,"76":19.0,"77":19.25,"78":19.5,"79":19.75,"80":20.0,"81":20.25,"82":20.5,"83":20.75,"84":21.0,"85":21.25,"86":21.5,"87":21.75,"88":22.0,"89":22.25,"90":22.5,"91":22.75,"92":23.0,"93":23.25,"94":23.5,"95":23.75,"96":24.0,"97":24.25,"98":24.5,"99":24.75,"100":25.0,"101":25.25,"102":25.5,"103":25.75,"104":26.0,"105":26.25,"106":26.5,"107":26.75,"108":27.0,"109":27.25,"110":27.5,"111":27.75,"112":28.0,"113":28.25,"114":28.5,"115":28.75,"116":29.0,"117":29.25,"118":29.5,"119":29.75,"120":30.0,"121":30.25,"122":30.5,"123":30.75,"124":31.0,"125":31.25,"126":31.5,"127":31.75,"128":32.0,"129":32.25,"130":32.5,"131":32.75,"132":33.0,"133":0.0,"134":0.25,"135":0.5,"136":0.75,"137":1.0,"138":1.25,"139":1.5,"140":1.75,"141":2.0,"142":2.25,"143":2.5,"144":2.75,"145":3.0,"146":3.25,"147":3.5,"148":3.75,"149":4.0,"150":4.25,"151":4.5,"152":4.75,"153":5.0,"154":5.25,"155":5.5,"156":5.75,"157":6.0,"158":6.25,"159":6.5,"160":6.75,"161":7.0,"162":7.25,"163":7.5,"164":7.75,"165":8.0,"166":8.25,"167":8.5,"168":8.75,"169":9.0,"170":9.25,"171":9.5,"172":9.75,"173":10.0,"174":10.25,"175":10.5,"176":10.75,"177":11.0,"178":11.25,"179":11.5,"180":11.75,"181":12.0,"182":12.25,"183":12.5,"184":12.75,"185":13.0,"186":13.25,"187":13.5,"188":13.75,"189":14.0,"190":14.25,"191":14.5,"192":14.75,"193":15.0,"194":15.25,"195":15.5,"196":15.75,"197":16.0,"198":16.25,"199":16.5,"200":16.75,"201":17.0,"202":17.25,"203":17.5,"204":17.75,"205":18.0,"206":18.25,"207":18.5,"208":18.75,"209":19.0,"210":19.25,"211":19.5,"212":19.75,"213":20.0,"214":20.25,"215":20.5,"216":20.75,"217":21.0,"218":21.25,"219":21.5,"220":21.75,"221":22.0,"222":22.25,"223":22.5,"224":22.75,"225":23.0,"226":23.25,"227":23.5,"228":23.75,"229":24.0,"230":24.25,"231":24.5,"232":24.75,"233":25.0,"234":25.25,"235":25.5,"236":25.75,"237":26.0,"238":26.25,"239":26.5,"240":26.75,"241":27.0,"242":27.25,"243":27.5,"244":27.75,"245":28.0,"246":28.25,"247":28.5,"248":28.75,"249":29.0,"250":29.25,"251":29.5,"252":29.75,"253":30.0,"254":30.25,"255":30.5,"256":30.75,"257":31.0,"258":31.25,"259":31.5,"260":31.75,"261":32.0,"262":32.25,"263":32.5,"264":32.75,"265":33.0,"266":0.0,"267":0.25,"268":0.5,"269":0.75,"270":1.0,"271":1.25,"272":1.5,"273":1.75,"274":2.0,"275":2.25,"276":2.5,"277":2.75,"278":3.0,"279":3.25,"280":3.5,"281":3.75,"282":4.0,"283":4.25,"284":4.5,"285":4.75,"286":5.0,"287":5.25,"288":5.5,"289":5.75,"290":6.0,"291":6.25,"292":6.5,"293":6.75,"294":7.0,"295":7.25,"296":7.5,"297":7.75,"298":8.0,"299":8.25,"300":8.5,"301":8.75,"302":9.0,"303":9.25,"304":9.5,"305":9.75,"306":10.0,"307":10.25,"308":10.5,"309":10.75,"310":11.0,"311":11.25,"312":11.5,"313":11.75,"314":12.0,"315":12.25,"316":12.5,"317":12.75,"318":13.0,"319":13.25,"320":13.5,"321":13.75,"322":14.0,"323":14.25,"324":14.5,"325":14.75,"326":15.0,"327":15.25,"328":15.5,"329":15.75,"330":16.0,"331":16.25,"332":16.5,"333":16.75,"334":17.0,"335":17.25,"336":17.5,"337":17.75,"338":18.0,"339":18.25,"340":18.5,"341":18.75,"342":19.0,"343":19.25,"344":19.5,"345":19.75,"346":20.0,"347":20.25,"348":20.5,"349":20.75,"350":21.0,"351":21.25,"352":21.5,"353":21.75,"354":22.0,"355":22.25,"356":22.5,"357":22.75,"358":23.0,"359":23.25,"360":23.5,"361":23.75,"362":24.0,"363":24.25,"364":24.5,"365":24.75,"366":25.0,"367":25.25,"368":25.5,"369":25.75,"370":26.0,"371":26.25,"372":26.5,"373":26.75,"374":27.0,"375":27.25,"376":27.5,"377":27.75,"378":28.0,"379":28.25,"380":28.5,"381":28.75,"382":29.0,"383":29.25,"384":29.5,"385":29.75,"386":30.0,"387":30.25,"388":30.5,"389":30.75,"390":31.0,"391":31.25,"392":31.5,"393":31.75,"394":32.0,"395":32.25,"396":32.5,"397":32.75,"398":33.0},"flow_in":{"0":0.0,"1":6.546176607,"2":1.9010793755,"3":-0.8967162947,"4":1.8741904684,"5":5.6090813728,"6":2.3696269926,"7":-1.1309901033,"8":1.9913273727,"9":5.5505129207,"10":2.3989112186,"11":-1.1456322163,"12":1.9986484292,"13":5.5468523924,"14":2.4007414828,"15":-1.1465473484,"16":1.9991059952,"17":5.5466236094,"18":2.4008558743,"19":-1.1466045441,"20":1.9991345931,"21":5.5466093104,"22":2.4008630238,"23":-1.1466081189,"24":1.9991363805,"25":5.5466084168,"26":2.4008634706,"27":-1.1466083423,"28":1.9991364922,"29":5.5466083609,"30":2.4008634985,"31":-1.1466083563,"32":1.9991364991,"33":5.5466083574,"34":2.4008635003,"35":-1.1466083571,"36":1.9991364996,"37":5.5466083572,"38":2.4008635004,"39":-1.1466083572,"40":1.9991364996,"41":5.5466083572,"42":2.4008635004,"43":-1.1466083572,"44":1.9991364996,"45":5.5466083572,"46":2.4008635004,"47":-1.1466083572,"48":1.9991364996,"49":5.5466083572,"50":2.4008635004,"51":-1.1466083572,"52":1.9991364996,"53":5.5466083572,"54":2.4008635004,"55":-1.1466083572,"56":1.9991364996,"57":5.5466083572,"58":2.4008635004,"59":-1.1466083572,"60":1.9991364996,"61":5.5466083572,"62":2.4008635004,"63":-1.1466083572,"64":1.9991364996,"65":5.5466083572,"66":2.4008635004,"67":-1.1466083572,"68":1.9991364996,"69":5.5466083572,"70":2.4008635004,"71":-1.1466083572,"72":1.9991364996,"73":5.5466083572,"74":2.4008635004,"75":-1.1466083572,"76":1.9991364996,"77":5.5466083572,"78":2.4008635004,"79":-1.1466083572,"80":1.9991364996,"81":5.5466083572,"82":2.4008635004,"83":-1.1466083572,"84":1.9991364996,"85":5.5466083572,"86":2.4008635004,"87":-1.1466083572,"88":1.9991364996,"89":5.5466083572,"90":2.4008635004,"91":-1.1466083572,"92":1.9991364996,"93":5.5466083572,"94":2.4008635004,"95":-1.1466083572,"96":1.9991364996,"97":5.5466083572,"98":2.4008635004,"99":-1.1466083572,"100":1.9991364996,"101":5.5466083572,"102":2.4008635004,"103":-1.1466083572,"104":1.9991364996,"105":5.5466083572,"106":2.4008635004,"107":-1.1466083572,"108":1.9991364996,"109":5.5466083572,"110":2.4008635004,"111":-1.1466083572,"112":1.9991364996,"113":5.5466083572,"114":2.4008635004,"115":-1.1466083572,"116":1.9991364996,"117":5.5466083572,"118":2.4008635004,"119":-1.1466083572,"120":1.9991364996,"121":5.5466083572,"122":2.4008635004,"123":-1.1466083572,"124":1.9991364996,"125":5.5466083572,"126":2.4008635004,"127":-1.1466083572,"128":1.9991364996,"129":5.5466083572,"130":2.4008635004,"131":-1.1466083572,"132":1.9991364996,"133":0.0,"134":3.2536738585,"135":0.6909412988,"136":-0.7839437793,"137":0.6555866679,"138":2.4801000786,"139":0.6801409881,"140":-1.1260276014,"141":0.5235960749,"142":2.2817675803,"143":0.5486954336,"144":-1.2614884804,"145":0.4158142516,"146":2.1825419891,"147":0.4647297155,"148":-1.3360392249,"149":0.3514259605,"150":2.1260449752,"151":0.4156042473,"152":-1.378977379,"153":0.314007409,"154":2.0933808115,"155":0.3871182519,"156":-1.4038335747,"157":0.2923254553,"158":2.0744642533,"159":0.370616122,"160":-1.4182303142,"161":0.2797659295,"162":2.063507271,"163":0.361057314,"164":-1.4265694174,"165":0.2724909239,"166":2.0571605668,"167":0.3555204655,"168":-1.4313997532,"169":0.26827695,"170":2.0534843049,"171":0.3523133027,"172":-1.4341976752,"173":0.265836049,"174":2.0513548681,"175":0.3504555867,"176":-1.4358183426,"177":0.2644221822,"178":2.0501214138,"179":0.3493795239,"180":-1.4367570975,"181":0.2636032145,"182":2.0494069481,"183":0.3487562256,"184":-1.4373008616,"185":0.2631288359,"186":2.0489931013,"187":0.3483951864,"188":-1.4376158314,"189":0.262854057,"190":2.0487533847,"191":0.3481860583,"192":-1.4377982743,"193":0.2626948941,"194":2.0486145314,"195":0.3480649229,"196":-1.4379039525,"197":0.2626027007,"198":2.048534102,"199":0.3479947565,"200":-1.4379651656,"201":0.2625492986,"202":2.0484875142,"203":0.3479541134,"204":-1.4380006226,"205":0.262518366,"206":2.0484605286,"207":0.3479305712,"208":-1.4380211607,"209":0.2625004486,"210":2.0484448975,"211":0.3479169347,"212":-1.4380330572,"213":0.2624900701,"214":2.0484358434,"215":0.3479090359,"216":-1.4380399481,"217":0.2624840585,"218":2.0484305988,"219":0.3479044605,"220":-1.4380439396,"221":0.2624805763,"222":2.048427561,"223":0.3479018103,"224":-1.4380462516,"225":0.2624785593,"226":2.0484258014,"227":0.3479002752,"228":-1.4380475908,"229":0.262477391,"230":2.0484247821,"231":0.3478993861,"232":-1.4380483665,"233":0.2624767142,"234":2.0484241917,"235":0.347898871,"236":-1.4380488159,"237":0.2624763222,"238":2.0484238497,"239":0.3478985727,"240":-1.4380490762,"241":0.2624760951,"242":2.0484236517,"243":0.3478983998,"244":-1.4380492269,"245":0.2624759636,"246":2.0484235369,"247":0.3478982997,"248":-1.4380493142,"249":0.2624758874,"250":2.0484234705,"251":0.3478982418,"252":-1.4380493648,"253":0.2624758433,"254":2.048423432,"255":0.3478982082,"256":-1.4380493941,"257":0.2624758178,"258":2.0484234097,"259":0.3478981887,"260":-1.4380494111,"261":0.2624758029,"262":2.0484233967,"263":0.3478981775,"264":-1.4380494209,"265":0.2624757944,"266":0.0,"267":3.2925027485,"268":1.2101380767,"269":-0.1127725154,"270":1.2186038005,"271":3.1289812942,"272":1.6894860045,"273":-0.0049625019,"274":1.4677312978,"275":3.2687453404,"276":1.8502157851,"277":0.1158562641,"278":1.5828341776,"279":3.3643104033,"280":1.9360117672,"281":0.1894918765,"282":1.6476800347,"283":3.4205786342,"284":1.985251627,"285":0.2323728348,"286":1.6851271841,"287":3.453228499,"288":2.0137447718,"289":0.2572254558,"290":1.7068109252,"291":3.4721441634,"292":2.0302473486,"293":0.2716219719,"294":1.7193705627,"295":3.4831010899,"296":2.0398061846,"297":0.2799610612,"298":1.7266455753,"299":3.4894477906,"300":2.0453430347,"301":0.2847913961,"302":1.7308595496,"303":3.4931240523,"304":2.0485501976,"305":0.287589318,"306":1.7333004506,"307":3.4952534891,"308":2.0504079137,"309":0.2892099855,"310":1.7347143174,"311":3.4964869434,"312":2.0514839765,"313":0.2901487403,"314":1.7355332851,"315":3.497201409,"316":2.0521072748,"317":0.2906925044,"318":1.7360076637,"319":3.4976152559,"320":2.0524683139,"321":0.2910074742,"322":1.7362824426,"323":3.4978549724,"324":2.0526774421,"325":0.2911899172,"326":1.7364416055,"327":3.4979938258,"328":2.0527985775,"329":0.2912955954,"330":1.7365337989,"331":3.4980742551,"332":2.0528687439,"333":0.2913568084,"334":1.736587201,"335":3.498120843,"336":2.052909387,"337":0.2913922654,"338":1.7366181337,"339":3.4981478286,"340":2.0529329292,"341":0.2914128035,"342":1.7366360511,"343":3.4981634597,"344":2.0529465657,"345":0.2914247,"346":1.7366464295,"347":3.4981725138,"348":2.0529544645,"349":0.2914315909,"350":1.7366524411,"351":3.4981777583,"352":2.0529590398,"353":0.2914355824,"354":1.7366559233,"355":3.4981807962,"356":2.05296169,"357":0.2914378944,"358":1.7366579403,"359":3.4981825558,"360":2.0529632251,"361":0.2914392336,"362":1.7366591087,"363":3.4981835751,"364":2.0529641143,"365":0.2914400094,"366":1.7366597854,"367":3.4981841655,"368":2.0529646294,"369":0.2914404587,"370":1.7366601774,"371":3.4981845074,"372":2.0529649277,"373":0.291440719,"374":1.7366604045,"375":3.4981847055,"376":2.0529651005,"377":0.2914408697,"378":1.736660536,"379":3.4981848203,"380":2.0529652006,"381":0.2914409571,"382":1.7366606122,"383":3.4981848867,"384":2.0529652586,"385":0.2914410076,"386":1.7366606563,"387":3.4981849252,"388":2.0529652922,"389":0.2914410369,"390":1.7366606819,"391":3.4981849475,"392":2.0529653117,"393":0.2914410539,"394":1.7366606967,"395":3.4981849604,"396":2.0529653229,"397":0.2914410637,"398":1.7366607052},"flow_out":{"0":0.0,"1":6.546176607,"2":1.9010793755,"3":-0.8967162947,"4":1.8741904684,"5":5.6090813728,"6":2.3696269926,"7":-1.1309901033,"8":1.9913273727,"9":5.5505129207,"10":2.3989112186,"11":-1.1456322163,"12":1.9986484292,"13":5.5468523924,"14":2.4007414828,"15":-1.1465473484,"16":1.9991059952,"17":5.5466236094,"18":2.4008558743,"19":-1.1466045441,"20":1.9991345931,"21":5.5466093104,"22":2.4008630238,"23":-1.1466081189,"24":1.9991363805,"25":5.5466084168,"26":2.4008634706,"27":-1.1466083423,"28":1.9991364922,"29":5.5466083609,"30":2.4008634985,"31":-1.1466083563,"32":1.9991364991,"33":5.5466083574,"34":2.4008635003,"35":-1.1466083571,"36":1.9991364996,"37":5.5466083572,"38":2.4008635004,"39":-1.1466083572,"40":1.9991364996,"41":5.5466083572,"42":2.4008635004,"43":-1.1466083572,"44":1.9991364996,"45":5.5466083572,"46":2.4008635004,"47":-1.1466083572,"48":1.9991364996,"49":5.5466083572,"50":2.4008635004,"51":-1.1466083572,"52":1.9991364996,"53":5.5466083572,"54":2.4008635004,"55":-1.1466083572,"56":1.9991364996,"57":5.5466083572,"58":2.4008635004,"59":-1.1466083572,"60":1.9991364996,"61":5.5466083572,"62":2.4008635004,"63":-1.1466083572,"64":1.9991364996,"65":5.5466083572,"66":2.4008635004,"67":-1.1466083572,"68":1.9991364996,"69":5.5466083572,"70":2.4008635004,"71":-1.1466083572,"72":1.9991364996,"73":5.5466083572,"74":2.4008635004,"75":-1.1466083572,"76":1.9991364996,"77":5.5466083572,"78":2.4008635004,"79":-1.1466083572,"80":1.9991364996,"81":5.5466083572,"82":2.4008635004,"83":-1.1466083572,"84":1.9991364996,"85":5.5466083572,"86":2.4008635004,"87":-1.1466083572,"88":1.9991364996,"89":5.5466083572,"90":2.4008635004,"91":-1.1466083572,"92":1.9991364996,"93":5.5466083572,"94":2.4008635004,"95":-1.1466083572,"96":1.9991364996,"97":5.5466083572,"98":2.4008635004,"99":-1.1466083572,"100":1.9991364996,"101":5.5466083572,"102":2.4008635004,"103":-1.1466083572,"104":1.9991364996,"105":5.5466083572,"106":2.4008635004,"107":-1.1466083572,"108":1.9991364996,"109":5.5466083572,"110":2.4008635004,"111":-1.1466083572,"112":1.9991364996,"113":5.5466083572,"114":2.4008635004,"115":-1.1466083572,"116":1.9991364996,"117":5.5466083572,"118":2.4008635004,"119":-1.1466083572,"120":1.9991364996,"121":5.5466083572,"122":2.4008635004,"123":-1.1466083572,"124":1.9991364996,"125":5.5466083572,"126":2.4008635004,"127":-1.1466083572,"128":1.9991364996,"129":5.5466083572,"130":2.4008635004,"131":-1.1466083572,"132":1.9991364996,"133":0.0,"134":3.2536738585,"135":0.6909412988,"136":-0.7839437793,"137":0.6555866679,"138":2.4801000786,"139":0.6801409881,"140":-1.1260276014,"141":0.5235960749,"142":2.2817675803,"143":0.5486954336,"144":-1.2614884804,"145":0.4158142516,"146":2.1825419891,"147":0.4647297155,"148":-1.3360392249,"149":0.3514259605,"150":2.1260449752,"151":0.4156042473,"152":-1.378977379,"153":0.314007409,"154":2.0933808115,"155":0.3871182519,"156":-1.4038335747,"157":0.2923254553,"158":2.0744642533,"159":0.370616122,"160":-1.4182303142,"161":0.2797659295,"162":2.063507271,"163":0.361057314,"164":-1.4265694174,"165":0.2724909239,"166":2.0571605668,"167":0.3555204655,"168":-1.4313997532,"169":0.26827695,"170":2.0534843049,"171":0.3523133027,"172":-1.4341976752,"173":0.265836049,"174":2.0513548681,"175":0.3504555867,"176":-1.4358183426,"177":0.2644221822,"178":2.0501214138,"179":0.3493795239,"180":-1.4367570975,"181":0.2636032145,"182":2.0494069481,"183":0.3487562256,"184":-1.4373008616,"185":0.2631288359,"186":2.0489931013,"187":0.3483951864,"188":-1.4376158314,"189":0.262854057,"190":2.0487533847,"191":0.3481860583,"192":-1.4377982743,"193":0.2626948941,"194":2.0486145314,"195":0.3480649229,"196":-1.4379039525,"197":0.2626027007,"198":2.048534102,"199":0.3479947565,"200":-1.4379651656,"201":0.2625492986,"202":2.0484875142,"203":0.3479541134,"204":-1.4380006226,"205":0.262518366,"206":2.0484605286,"207":0.3479305712,"208":-1.4380211607,"209":0.2625004486,"210":2.0484448975,"211":0.3479169347,"212":-1.4380330572,"213":0.2624900701,"214":2.0484358434,"215":0.3479090359,"216":-1.4380399481,"217":0.2624840585,"218":2.0484305988,"219":0.3479044605,"220":-1.4380439396,"221":0.2624805763,"222":2.048427561,"223":0.3479018103,"224":-1.4380462516,"225":0.2624785593,"226":2.0484258014,"227":0.3479002752,"228":-1.4380475908,"229":0.262477391,"230":2.0484247821,"231":0.3478993861,"232":-1.4380483665,"233":0.2624767142,"234":2.0484241917,"235":0.347898871,"236":-1.4380488159,"237":0.2624763222,"238":2.0484238497,"239":0.3478985727,"240":-1.4380490762,"241":0.2624760951,"242":2.0484236517,"243":0.3478983998,"244":-1.4380492269,"245":0.2624759636,"246":2.0484235369,"247":0.3478982997,"248":-1.4380493142,"249":0.2624758874,"250":2.0484234705,"251":0.3478982418,"252":-1.4380493648,"253":0.2624758433,"254":2.048423432,"255":0.3478982082,"256":-1.4380493941,"257":0.2624758178,"258":2.0484234097,"259":0.3478981887,"260":-1.4380494111,"261":0.2624758029,"262":2.0484233967,"263":0.3478981775,"264":-1.4380494209,"265":0.2624757944,"266":0.0,"267":3.2925027485,"268":1.2101380767,"269":-0.1127725154,"270":1.2186038005,"271":3.1289812942,"272":1.6894860045,"273":-0.0049625019,"274":1.4677312978,"275":3.2687453404,"276":1.8502157851,"277":0.1158562641,"278":1.5828341776,"279":3.3643104033,"280":1.9360117672,"281":0.1894918765,"282":1.6476800347,"283":3.4205786342,"284":1.985251627,"285":0.2323728348,"286":1.6851271841,"287":3.453228499,"288":2.0137447718,"289":0.2572254558,"290":1.7068109252,"291":3.4721441634,"292":2.0302473486,"293":0.2716219719,"294":1.7193705627,"295":3.4831010899,"296":2.0398061846,"297":0.2799610612,"298":1.7266455753,"299":3.4894477906,"300":2.0453430347,"301":0.2847913961,"302":1.7308595496,"303":3.4931240523,"304":2.0485501976,"305":0.287589318,"306":1.7333004506,"307":3.4952534891,"308":2.0504079137,"309":0.2892099855,"310":1.7347143174,"311":3.4964869434,"312":2.0514839765,"313":0.2901487403,"314":1.7355332851,"315":3.497201409,"316":2.0521072748,"317":0.2906925044,"318":1.7360076637,"319":3.4976152559,"320":2.0524683139,"321":0.2910074742,"322":1.7362824426,"323":3.4978549724,"324":2.0526774421,"325":0.2911899172,"326":1.7364416055,"327":3.4979938258,"328":2.0527985775,"329":0.2912955954,"330":1.7365337989,"331":3.4980742551,"332":2.0528687439,"333":0.2913568084,"334":1.736587201,"335":3.498120843,"336":2.052909387,"337":0.2913922654,"338":1.7366181337,"339":3.4981478286,"340":2.0529329292,"341":0.2914128035,"342":1.7366360511,"343":3.4981634597,"344":2.0529465657,"345":0.2914247,"346":1.7366464295,"347":3.4981725138,"348":2.0529544645,"349":0.2914315909,"350":1.7366524411,"351":3.4981777583,"352":2.0529590398,"353":0.2914355824,"354":1.7366559233,"355":3.4981807962,"356":2.05296169,"357":0.2914378944,"358":1.7366579403,"359":3.4981825558,"360":2.0529632251,"361":0.2914392336,"362":1.7366591087,"363":3.4981835751,"364":2.0529641143,"365":0.2914400094,"366":1.7366597854,"367":3.4981841655,"368":2.0529646294,"369":0.2914404587,"370":1.7366601774,"371":3.4981845074,"372":2.0529649277,"373":0.291440719,"374":1.7366604045,"375":3.4981847055,"376":2.0529651005,"377":0.2914408697,"378":1.736660536,"379":3.4981848203,"380":2.0529652006,"381":0.2914409571,"382":1.7366606122,"383":3.4981848867,"384":2.0529652586,"385":0.2914410076,"386":1.7366606563,"387":3.4981849252,"388":2.0529652922,"389":0.2914410369,"390":1.7366606819,"391":3.4981849475,"392":2.0529653117,"393":0.2914410539,"394":1.7366606967,"395":3.4981849604,"396":2.0529653229,"397":0.2914410637,"398":1.7366607052},"pressure_in":{"0":0.0,"1":10776.1397501814,"2":9961.3040427155,"3":6847.202087351,"4":9446.6632155065,"5":16680.0953197416,"6":16371.1527268483,"7":11791.816872832,"8":14087.4346621121,"9":20564.4783239725,"10":19842.1171683967,"11":14778.7350272407,"12":16713.792326415,"13":22845.417733995,"14":21837.148609853,"15":16516.6236726673,"16":18231.2088489758,"17":24168.5654988248,"18":22991.781411135,"19":17523.7620450512,"20":19109.914571469,"21":24935.1062709546,"22":23660.5300162879,"23":18107.166829494,"24":19618.8806648942,"25":25379.1246751628,"26":24047.8919655218,"27":18445.0999261054,"28":19913.6930797171,"29":25636.3182296493,"30":24272.2671433314,"31":18640.8443054979,"32":20084.4600715253,"33":25785.2949732437,"34":24402.2341363481,"35":18754.2272259663,"36":20183.3750867392,"37":25871.5882174419,"38":24477.5161757978,"39":18819.9031138073,"40":20240.6705889742,"41":25921.5726893289,"42":24521.1225207182,"43":18857.9451945618,"44":20273.8584177488,"45":25950.5256791939,"46":24546.3810463036,"47":18879.980677518,"48":20293.0821253042,"49":25967.2963999854,"50":24561.011786761,"51":18892.7445037716,"52":20304.2172596542,"53":25977.0106670499,"54":24569.4864922862,"55":18900.1378184975,"56":20310.6671713913,"57":25982.6375560651,"58":24574.3953780632,"59":18904.4203198062,"60":20314.403216248,"61":25985.8968734978,"62":24577.2387995249,"63":18906.9009145245,"64":20316.5672817019,"65":25987.7847995079,"66":24578.8858220827,"67":18908.337773433,"68":20317.8207942984,"69":25988.8783611792,"70":24579.8398429138,"71":18909.1700591376,"72":20318.5468785427,"73":25989.5117954996,"74":24580.3924496416,"75":18909.6521520488,"76":20318.9674553531,"77":25989.8787057972,"78":24580.7125413897,"79":18909.9313993958,"80":20319.2110701332,"81":25990.0912348032,"82":24580.8979512337,"83":18910.0931505417,"84":20319.3521814822,"85":25990.2143400381,"86":24581.0053479737,"87":18910.1868432249,"88":20319.4339187759,"89":25990.2856474759,"90":24581.0675564278,"91":18910.2411137454,"92":20319.4812642603,"93":25990.3269515738,"94":24581.1035900333,"95":18910.2725493847,"96":20319.5086886439,"97":25990.3508765466,"98":24581.1244621277,"99":18910.2907581546,"100":20319.5245739352,"101":25990.3647348403,"102":24581.1365520731,"103":18910.3013053967,"104":20319.5337753264,"105":25990.3727621141,"106":24581.1435550493,"107":18910.307414778,"108":20319.5391051374,"109":25990.3774118296,"110":24581.1476114511,"111":18910.3109535741,"112":20319.5421923754,"113":25990.3801051294,"114":24581.1499610799,"115":18910.3130033852,"116":20319.5439806262,"117":25990.3816651955,"118":24581.1513220782,"119":18910.3141907172,"120":20319.545016452,"121":25990.3825688477,"122":24581.1521104225,"123":18910.314878467,"124":20319.5456164435,"125":25990.3830922789,"126":24581.1525670627,"127":18910.3152768389,"128":20319.5459639823,"129":25990.383395471,"130":24581.152831567,"131":18910.3155075919,"132":20319.5461652906,"133":0.0,"134":8812.2867680853,"135":9390.9802300702,"136":7116.2169757699,"137":8884.4060749905,"138":14997.3709079035,"139":15660.264629074,"140":12131.1139038153,"141":13490.0364503138,"142":18899.3244477755,"143":19122.4438028018,"144":15122.4246921343,"145":16114.1977976617,"146":21181.3620162755,"147":21116.9261650193,"148":16860.5878771803,"149":17631.4770504127,"150":22504.5784160102,"151":22271.5246488489,"152":17867.7434082904,"153":18510.1741935428,"154":23271.1234778216,"155":22940.2711091611,"156":18451.1492651536,"157":19019.1397507579,"158":23715.1421501348,"159":23327.6329243423,"160":18789.0824287912,"161":19313.9521320675,"162":23972.3357213779,"163":23552.0080937737,"164":18984.8268123729,"165":19484.7191217812,"166":24121.3124660196,"167":23681.9750862667,"168":19098.2097331032,"169":19583.6341368642,"170":24207.6057102832,"171":23757.2571256837,"172":19163.8856209605,"173":19640.929639091,"174":24257.5901821744,"175":23800.8634706021,"176":19201.9277017161,"177":19674.1174678651,"178":24286.5431720396,"179":23826.1219961873,"180":19223.9631846723,"181":19693.3411754205,"182":24303.3138928311,"183":23840.7527366447,"184":19236.7270109259,"185":19704.4763097704,"186":24313.0281598956,"187":23849.2274421699,"188":19244.1203256518,"189":19710.9262215076,"190":24318.6550489108,"191":23854.1363279469,"192":19248.4028269605,"193":19714.6622663643,"194":24321.9143663435,"195":23856.9797494086,"196":19250.8834216788,"197":19716.8263318182,"198":24323.8022923536,"199":23858.6267719664,"200":19252.3202805873,"201":19718.0798444147,"202":24324.895854025,"203":23859.5807927976,"204":19253.1525662919,"205":19718.8059286589,"206":24325.5292883454,"207":23860.1333995253,"208":19253.6346592031,"209":19719.2265054694,"210":24325.8961986429,"211":23860.4534912734,"212":19253.9139065501,"213":19719.4701202495,"214":24326.1087276489,"215":23860.6389011174,"216":19254.075657696,"217":19719.6112315985,"218":24326.2318328838,"219":23860.7462978575,"220":19254.1693503792,"221":19719.6929688922,"222":24326.3031403216,"223":23860.8085063116,"224":19254.2236208997,"225":19719.7403143766,"226":24326.3444444195,"227":23860.8445399171,"228":19254.255056539,"229":19719.7677387601,"230":24326.3683693923,"231":23860.8654120114,"232":19254.2732653089,"233":19719.7836240515,"234":24326.3822276861,"235":23860.8775019569,"236":19254.283812551,"237":19719.7928254427,"238":24326.3902549598,"239":23860.8845049331,"240":19254.2899219323,"241":19719.7981552537,"242":24326.3949046753,"243":23860.8885613348,"244":19254.2934607284,"245":19719.8012424917,"246":24326.3975979751,"247":23860.8909109637,"248":19254.2955105395,"249":19719.8030307425,"250":24326.3991580412,"251":23860.892271962,"252":19254.2966978715,"253":19719.8040665683,"254":24326.4000616934,"255":23860.8930603062,"256":19254.2973856212,"257":19719.8046665597,"258":24326.4005851246,"259":23860.8935169465,"260":19254.2977839932,"261":19719.8050140986,"262":24326.4008883167,"263":23860.8937814507,"264":19254.2980147461,"265":19719.8052154068,"266":0.0,"267":8812.2867680853,"268":9390.9802300702,"269":7116.2169757699,"270":8884.4060749905,"271":14997.3709079035,"272":15660.264629074,"273":12131.1139038153,"274":13490.0364503138,"275":18899.3244477755,"276":19122.4438028018,"277":15122.4246921343,"278":16114.1977976617,"279":21181.3620162755,"280":21116.9261650193,"281":16860.5878771803,"282":17631.4770504127,"283":22504.5784160102,"284":22271.5246488489,"285":17867.7434082904,"286":18510.1741935428,"287":23271.1234778216,"288":22940.2711091611,"289":18451.1492651536,"290":19019.1397507579,"291":23715.1421501348,"292":23327.6329243423,"293":18789.0824287912,"294":19313.9521320675,"295":23972.3357213779,"296":23552.0080937737,"297":18984.8268123729,"298":19484.7191217812,"299":24121.3124660196,"300":23681.9750862667,"301":19098.2097331032,"302":19583.6341368642,"303":24207.6057102832,"304":23757.2571256837,"305":19163.8856209605,"306":19640.929639091,"307":24257.5901821744,"308":23800.8634706021,"309":19201.9277017161,"310":19674.1174678651,"311":24286.5431720396,"312":23826.1219961873,"313":19223.9631846723,"314":19693.3411754205,"315":24303.3138928311,"316":23840.7527366447,"317":19236.7270109259,"318":19704.4763097704,"319":24313.0281598956,"320":23849.2274421699,"321":19244.1203256518,"322":19710.9262215076,"323":24318.6550489108,"324":23854.1363279469,"325":19248.4028269605,"326":19714.6622663643,"327":24321.9143663435,"328":23856.9797494086,"329":19250.8834216788,"330":19716.8263318182,"331":24323.8022923536,"332":23858.6267719664,"333":19252.3202805873,"334":19718.0798444147,"335":24324.895854025,"336":23859.5807927976,"337":19253.1525662919,"338":19718.8059286589,"339":24325.5292883454,"340":23860.1333995253,"341":19253.6346592031,"342":19719.2265054694,"343":24325.8961986429,"344":23860.4534912734,"345":19253.9139065501,"346":19719.4701202495,"347":24326.1087276489,"348":23860.6389011174,"349":19254.075657696,"350":19719.6112315985,"351":24326.2318328838,"352":23860.7462978575,"353":19254.1693503792,"354":19719.6929688922,"355":24326.3031403216,"356":23860.8085063116,"357":19254.2236208997,"358":19719.7403143766,"359":24326.3444444195,"360":23860.8445399171,"361":19254.255056539,"362":19719.7677387601,"363":24326.3683693923,"364":23860.8654120114,"365":19254.2732653089,"366":19719.7836240515,"367":24326.3822276861,"368":23860.8775019569,"369":19254.283812551,"370":19719.7928254427,"371":24326.3902549598,"372":23860.8845049331,"373":19254.2899219323,"374":19719.7981552537,"375":24326.3949046753,"376":23860.8885613348,"377":19254.2934607284,"378":19719.8012424917,"379":24326.3975979751,"380":23860.8909109637,"381":19254.2955105395,"382":19719.8030307425,"383":24326.3991580412,"384":23860.892271962,"385":19254.2966978715,"386":19719.8040665683,"387":24326.4000616934,"388":23860.8930603062,"389":19254.2973856212,"390":19719.8046665597,"391":24326.4005851246,"392":23860.8935169465,"393":19254.2977839932,"394":19719.8050140986,"395":24326.4008883167,"396":23860.8937814507,"397":19254.2980147461,"398":19719.8052154068},"pressure_out":{"0":0.0,"1":8812.2867680853,"2":9390.9802300702,"3":7116.2169757699,"4":8884.4060749905,"5":14997.3709079035,"6":15660.264629074,"7":12131.1139038153,"8":13490.0364503138,"9":18899.3244477755,"10":19122.4438028018,"11":15122.4246921343,"12":16114.1977976617,"13":21181.3620162755,"14":21116.9261650193,"15":16860.5878771803,"16":17631.4770504127,"17":22504.5784160102,"18":22271.5246488489,"19":17867.7434082904,"20":18510.1741935428,"21":23271.1234778216,"22":22940.2711091611,"23":18451.1492651536,"24":19019.1397507579,"25":23715.1421501348,"26":23327.6329243423,"27":18789.0824287912,"28":19313.9521320675,"29":23972.3357213779,"30":23552.0080937737,"31":18984.8268123729,"32":19484.7191217812,"33":24121.3124660196,"34":23681.9750862667,"35":19098.2097331032,"36":19583.6341368642,"37":24207.6057102832,"38":23757.2571256837,"39":19163.8856209605,"40":19640.929639091,"41":24257.5901821744,"42":23800.8634706021,"43":19201.9277017161,"44":19674.1174678651,"45":24286.5431720396,"46":23826.1219961873,"47":19223.9631846723,"48":19693.3411754205,"49":24303.3138928311,"50":23840.7527366447,"51":19236.7270109259,"52":19704.4763097704,"53":24313.0281598956,"54":23849.2274421699,"55":19244.1203256518,"56":19710.9262215076,"57":24318.6550489108,"58":23854.1363279469,"59":19248.4028269605,"60":19714.6622663643,"61":24321.9143663435,"62":23856.9797494086,"63":19250.8834216788,"64":19716.8263318182,"65":24323.8022923536,"66":23858.6267719664,"67":19252.3202805873,"68":19718.0798444147,"69":24324.895854025,"70":23859.5807927976,"71":19253.1525662919,"72":19718.8059286589,"73":24325.5292883454,"74":23860.1333995253,"75":19253.6346592031,"76":19719.2265054694,"77":24325.8961986429,"78":23860.4534912734,"79":19253.9139065501,"80":19719.4701202495,"81":24326.1087276489,"82":23860.6389011174,"83":19254.075657696,"84":19719.6112315985,"85":24326.2318328838,"86":23860.7462978575,"87":19254.1693503792,"88":19719.6929688922,"89":24326.3031403216,"90":23860.8085063116,"91":19254.2236208997,"92":19719.7403143766,"93":24326.3444444195,"94":23860.8445399171,"95":19254.255056539,"96":19719.7677387601,"97":24326.3683693923,"98":23860.8654120114,"99":19254.2732653089,"100":19719.7836240515,"101":24326.3822276861,"102":23860.8775019569,"103":19254.283812551,"104":19719.7928254427,"105":24326.3902549598,"106":23860.8845049331,"107":19254.2899219323,"108":19719.7981552537,"109":24326.3949046753,"110":23860.8885613348,"111":19254.2934607284,"112":19719.8012424917,"113":24326.3975979751,"114":23860.8909109637,"115":19254.2955105395,"116":19719.8030307425,"117":24326.3991580412,"118":23860.892271962,"119":19254.2966978715,"120":19719.8040665683,"121":24326.4000616934,"122":23860.8930603062,"123":19254.2973856212,"124":19719.8046665597,"125":24326.4005851246,"126":23860.8935169465,"127":19254.2977839932,"128":19719.8050140986,"129":24326.4008883167,"130":23860.8937814507,"131":19254.2980147461,"132":19719.8052154068,"133":0.0,"134":7510.8172246966,"135":9114.603710538,"136":7429.7944874925,"137":8622.1714078403,"138":14005.3308764717,"139":15388.2082338529,"140":12581.52494437,"141":13280.5980203553,"142":17986.6174156714,"143":18902.9656293631,"144":15627.0200843124,"145":15947.8720970227,"146":20308.3452206495,"147":20931.0342788069,"148":17395.0035671312,"149":17490.9066662284,"150":21654.160425934,"151":22105.2829499465,"152":18419.3343598726,"153":18384.5712299543,"154":22433.7711532283,"155":22785.4238083945,"156":19012.6826950166,"157":18902.2095686392,"158":22885.356448805,"159":23179.3864755488,"160":19356.3745544822,"161":19202.0457602644,"162":23146.9328129946,"163":23407.5851681845,"164":19555.4545793473,"165":19375.7227522367,"166":23298.4482392799,"167":23539.766900048,"168":19670.7696343981,"169":19476.3233568639,"170":23386.2119883312,"171":23616.3318045916,"172":19737.5646910415,"173":19534.5952194977,"174":23437.0482349323,"175":23660.6812359162,"176":19776.2550387686,"177":19568.3485949714,"178":23466.4946065125,"179":23686.3701866396,"180":19798.6660236824,"181":19587.8998896202,"182":23483.5511135742,"183":23701.2502464195,"184":19811.6473555723,"185":19599.2247754157,"186":23493.4309193883,"187":23709.869367591,"188":19819.1666581949,"189":19605.7845987209,"190":23499.1536950171,"191":23714.8619046418,"192":19823.5221366936,"193":19609.5843087198,"194":23502.4685537819,"195":23717.7537802412,"196":19826.0450026965,"197":19611.7852515508,"198":23504.3886515358,"199":23719.4288693586,"200":19827.5063468106,"201":19613.0601249876,"202":23505.500848358,"203":23720.3991474549,"204":19828.3528153182,"205":19613.7985822784,"206":23506.1450768973,"207":23720.9611710358,"208":19828.8431234716,"209":19614.2263260484,"210":23506.5182396349,"211":23721.286717399,"212":19829.127129413,"213":19614.4740922159,"214":23506.7343903022,"215":23721.4752867726,"216":19829.2916369257,"217":19614.6176082133,"218":23506.8595933472,"219":23721.5845136375,"220":19829.3869262059,"221":19614.7007383747,"222":23506.9321159197,"223":23721.6477821726,"224":19829.4421215387,"225":19614.7488906634,"226":23506.974123872,"227":23721.684429819,"228":19829.474092866,"229":19614.77678238,"230":23506.9984565451,"231":23721.7056575903,"232":19829.4926119276,"233":19614.7929383692,"234":23507.0125509951,"235":23721.7179535579,"236":19829.5033389031,"237":19614.8022965594,"238":23507.0207150599,"239":23721.7250758703,"240":19829.509552393,"241":19614.8077171945,"242":23507.0254440102,"243":23721.7292013963,"244":19829.513151493,"245":19614.8108570415,"246":23507.0281832059,"247":23721.7315910647,"248":19829.5152362345,"249":19614.8126757655,"250":23507.0297698568,"251":23721.7329752555,"252":19829.5164437995,"253":19614.8137292426,"254":23507.0306889079,"255":23721.7337770338,"256":19829.5171432691,"257":19614.8143394584,"258":23507.0312212588,"259":23721.7342414555,"260":19829.5175484297,"261":19614.8146929195,"262":23507.0315296176,"263":23721.7345104671,"264":19829.5177831148,"265":19614.8148976583,"266":0.0,"267":7166.0353938276,"268":8785.9111917431,"269":7172.6032334813,"270":8275.1041747348,"271":13432.8802607963,"272":14815.5216268099,"273":12133.5951547609,"274":12756.1708014315,"275":17264.9517775772,"276":18197.3359102754,"277":15064.4965600676,"278":15322.7807088713,"279":19499.2068146089,"280":20148.9202813954,"281":16765.84193893,"282":16807.637033038,"283":20794.2890989143,"284":21278.8988353335,"285":17751.556990878,"286":17667.6106014847,"287":21544.5092283413,"288":21933.3987232411,"289":18322.5365372575,"290":18165.7342881789,"291":21979.0700684173,"292":22312.5092500351,"293":18653.2714428206,"294":18454.2668507389,"295":22230.7851764048,"296":22532.1050014973,"297":18844.8462817799,"298":18621.3963341384,"299":22376.5885707374,"300":22659.3035689046,"301":18955.8140350459,"302":18718.2043620728,"303":22461.0436841254,"304":22732.9820268587,"305":19020.090961948,"306":18774.2794137773,"307":22509.9634376361,"308":22775.6595137658,"309":19057.3227089907,"310":18806.7603091761,"311":22538.2997003579,"312":22800.3800079281,"313":19078.8888145002,"314":18825.5745328646,"315":22554.7131883119,"316":22814.6990992325,"317":19091.3807587084,"318":18836.4724779076,"319":22564.2205319392,"320":22822.9932851998,"321":19098.6165885633,"322":18842.7850001848,"323":22569.7275626874,"324":22827.7976068845,"325":19102.8078683847,"326":18846.4414636137,"327":22572.9174534551,"328":22830.5804606741,"329":19105.2356239971,"330":18848.5594323462,"331":22574.7651647854,"332":22832.1924000325,"333":19106.6418763985,"334":18849.7862438923,"335":22575.8354325182,"336":22833.1260992822,"337":19107.4564335995,"338":18850.4968618284,"339":22576.455374065,"340":22833.6669349435,"341":19107.9282574578,"342":18850.9084799394,"343":22576.8144688125,"344":22833.9802084227,"345":19108.2015565619,"346":18851.1469054852,"347":22577.0224707418,"348":22834.1616688548,"349":19108.3598622494,"350":18851.2850110238,"351":22577.1429537142,"352":22834.2667779387,"353":19108.4515591863,"354":18851.3650072328,"355":22577.2127422335,"356":22834.3276612916,"357":19108.5046736914,"358":18851.4113442118,"359":22577.2531665135,"360":22834.3629273459,"361":19108.5354397207,"362":18851.438184429,"363":22577.2765818608,"364":22834.3833548441,"365":19108.5532606259,"366":18851.4537313481,"367":22577.2901449593,"368":22834.3951872618,"369":19108.5635832014,"370":18851.4627367406,"371":22577.2980012442,"372":22834.4020410677,"373":19108.5695624468,"374":18851.4679530214,"375":22577.3025519162,"376":22834.4060110641,"377":19108.5730258631,"378":18851.4709744982,"379":22577.3051878461,"380":22834.4083106436,"381":19108.5750320112,"382":18851.4727246575,"383":22577.3067146812,"384":22834.4096426513,"385":19108.5761940518,"386":18851.4737384192,"387":22577.3075990848,"388":22834.410414203,"389":19108.5768671519,"390":18851.4743256302,"391":22577.3081113664,"392":22834.4108611164,"393":19108.5772570381,"394":18851.4746657661,"395":22577.3084081002,"396":22834.4111199864,"397":19108.5774828758,"398":18851.4748627864}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0", + "101": "branch0_seg0", + "102": "branch0_seg0", + "103": "branch0_seg0", + "104": "branch0_seg0", + "105": "branch0_seg0", + "106": "branch0_seg0", + "107": "branch0_seg0", + "108": "branch0_seg0", + "109": "branch0_seg0", + "110": "branch0_seg0", + "111": "branch0_seg0", + "112": "branch0_seg0", + "113": "branch0_seg0", + "114": "branch0_seg0", + "115": "branch0_seg0", + "116": "branch0_seg0", + "117": "branch0_seg0", + "118": "branch0_seg0", + "119": "branch0_seg0", + "120": "branch0_seg0", + "121": "branch0_seg0", + "122": "branch0_seg0", + "123": "branch0_seg0", + "124": "branch0_seg0", + "125": "branch0_seg0", + "126": "branch0_seg0", + "127": "branch0_seg0", + "128": "branch0_seg0", + "129": "branch0_seg0", + "130": "branch0_seg0", + "131": "branch0_seg0", + "132": "branch0_seg0", + "133": "branch1_seg0", + "134": "branch1_seg0", + "135": "branch1_seg0", + "136": "branch1_seg0", + "137": "branch1_seg0", + "138": "branch1_seg0", + "139": "branch1_seg0", + "140": "branch1_seg0", + "141": "branch1_seg0", + "142": "branch1_seg0", + "143": "branch1_seg0", + "144": "branch1_seg0", + "145": "branch1_seg0", + "146": "branch1_seg0", + "147": "branch1_seg0", + "148": "branch1_seg0", + "149": "branch1_seg0", + "150": "branch1_seg0", + "151": "branch1_seg0", + "152": "branch1_seg0", + "153": "branch1_seg0", + "154": "branch1_seg0", + "155": "branch1_seg0", + "156": "branch1_seg0", + "157": "branch1_seg0", + "158": "branch1_seg0", + "159": "branch1_seg0", + "160": "branch1_seg0", + "161": "branch1_seg0", + "162": "branch1_seg0", + "163": "branch1_seg0", + "164": "branch1_seg0", + "165": "branch1_seg0", + "166": "branch1_seg0", + "167": "branch1_seg0", + "168": "branch1_seg0", + "169": "branch1_seg0", + "170": "branch1_seg0", + "171": "branch1_seg0", + "172": "branch1_seg0", + "173": "branch1_seg0", + "174": "branch1_seg0", + "175": "branch1_seg0", + "176": "branch1_seg0", + "177": "branch1_seg0", + "178": "branch1_seg0", + "179": "branch1_seg0", + "180": "branch1_seg0", + "181": "branch1_seg0", + "182": "branch1_seg0", + "183": "branch1_seg0", + "184": "branch1_seg0", + "185": "branch1_seg0", + "186": "branch1_seg0", + "187": "branch1_seg0", + "188": "branch1_seg0", + "189": "branch1_seg0", + "190": "branch1_seg0", + "191": "branch1_seg0", + "192": "branch1_seg0", + "193": "branch1_seg0", + "194": "branch1_seg0", + "195": "branch1_seg0", + "196": "branch1_seg0", + "197": "branch1_seg0", + "198": "branch1_seg0", + "199": "branch1_seg0", + "200": "branch1_seg0", + "201": "branch1_seg0", + "202": "branch1_seg0", + "203": "branch1_seg0", + "204": "branch1_seg0", + "205": "branch1_seg0", + "206": "branch1_seg0", + "207": "branch1_seg0", + "208": "branch1_seg0", + "209": "branch1_seg0", + "210": "branch1_seg0", + "211": "branch1_seg0", + "212": "branch1_seg0", + "213": "branch1_seg0", + "214": "branch1_seg0", + "215": "branch1_seg0", + "216": "branch1_seg0", + "217": "branch1_seg0", + "218": "branch1_seg0", + "219": "branch1_seg0", + "220": "branch1_seg0", + "221": "branch1_seg0", + "222": "branch1_seg0", + "223": "branch1_seg0", + "224": "branch1_seg0", + "225": "branch1_seg0", + "226": "branch1_seg0", + "227": "branch1_seg0", + "228": "branch1_seg0", + "229": "branch1_seg0", + "230": "branch1_seg0", + "231": "branch1_seg0", + "232": "branch1_seg0", + "233": "branch1_seg0", + "234": "branch1_seg0", + "235": "branch1_seg0", + "236": "branch1_seg0", + "237": "branch1_seg0", + "238": "branch1_seg0", + "239": "branch1_seg0", + "240": "branch1_seg0", + "241": "branch1_seg0", + "242": "branch1_seg0", + "243": "branch1_seg0", + "244": "branch1_seg0", + "245": "branch1_seg0", + "246": "branch1_seg0", + "247": "branch1_seg0", + "248": "branch1_seg0", + "249": "branch1_seg0", + "250": "branch1_seg0", + "251": "branch1_seg0", + "252": "branch1_seg0", + "253": "branch1_seg0", + "254": "branch1_seg0", + "255": "branch1_seg0", + "256": "branch1_seg0", + "257": "branch1_seg0", + "258": "branch1_seg0", + "259": "branch1_seg0", + "260": "branch1_seg0", + "261": "branch1_seg0", + "262": "branch1_seg0", + "263": "branch1_seg0", + "264": "branch1_seg0", + "265": "branch1_seg0", + "266": "branch2_seg0", + "267": "branch2_seg0", + "268": "branch2_seg0", + "269": "branch2_seg0", + "270": "branch2_seg0", + "271": "branch2_seg0", + "272": "branch2_seg0", + "273": "branch2_seg0", + "274": "branch2_seg0", + "275": "branch2_seg0", + "276": "branch2_seg0", + "277": "branch2_seg0", + "278": "branch2_seg0", + "279": "branch2_seg0", + "280": "branch2_seg0", + "281": "branch2_seg0", + "282": "branch2_seg0", + "283": "branch2_seg0", + "284": "branch2_seg0", + "285": "branch2_seg0", + "286": "branch2_seg0", + "287": "branch2_seg0", + "288": "branch2_seg0", + "289": "branch2_seg0", + "290": "branch2_seg0", + "291": "branch2_seg0", + "292": "branch2_seg0", + "293": "branch2_seg0", + "294": "branch2_seg0", + "295": "branch2_seg0", + "296": "branch2_seg0", + "297": "branch2_seg0", + "298": "branch2_seg0", + "299": "branch2_seg0", + "300": "branch2_seg0", + "301": "branch2_seg0", + "302": "branch2_seg0", + "303": "branch2_seg0", + "304": "branch2_seg0", + "305": "branch2_seg0", + "306": "branch2_seg0", + "307": "branch2_seg0", + "308": "branch2_seg0", + "309": "branch2_seg0", + "310": "branch2_seg0", + "311": "branch2_seg0", + "312": "branch2_seg0", + "313": "branch2_seg0", + "314": "branch2_seg0", + "315": "branch2_seg0", + "316": "branch2_seg0", + "317": "branch2_seg0", + "318": "branch2_seg0", + "319": "branch2_seg0", + "320": "branch2_seg0", + "321": "branch2_seg0", + "322": "branch2_seg0", + "323": "branch2_seg0", + "324": "branch2_seg0", + "325": "branch2_seg0", + "326": "branch2_seg0", + "327": "branch2_seg0", + "328": "branch2_seg0", + "329": "branch2_seg0", + "330": "branch2_seg0", + "331": "branch2_seg0", + "332": "branch2_seg0", + "333": "branch2_seg0", + "334": "branch2_seg0", + "335": "branch2_seg0", + "336": "branch2_seg0", + "337": "branch2_seg0", + "338": "branch2_seg0", + "339": "branch2_seg0", + "340": "branch2_seg0", + "341": "branch2_seg0", + "342": "branch2_seg0", + "343": "branch2_seg0", + "344": "branch2_seg0", + "345": "branch2_seg0", + "346": "branch2_seg0", + "347": "branch2_seg0", + "348": "branch2_seg0", + "349": "branch2_seg0", + "350": "branch2_seg0", + "351": "branch2_seg0", + "352": "branch2_seg0", + "353": "branch2_seg0", + "354": "branch2_seg0", + "355": "branch2_seg0", + "356": "branch2_seg0", + "357": "branch2_seg0", + "358": "branch2_seg0", + "359": "branch2_seg0", + "360": "branch2_seg0", + "361": "branch2_seg0", + "362": "branch2_seg0", + "363": "branch2_seg0", + "364": "branch2_seg0", + "365": "branch2_seg0", + "366": "branch2_seg0", + "367": "branch2_seg0", + "368": "branch2_seg0", + "369": "branch2_seg0", + "370": "branch2_seg0", + "371": "branch2_seg0", + "372": "branch2_seg0", + "373": "branch2_seg0", + "374": "branch2_seg0", + "375": "branch2_seg0", + "376": "branch2_seg0", + "377": "branch2_seg0", + "378": "branch2_seg0", + "379": "branch2_seg0", + "380": "branch2_seg0", + "381": "branch2_seg0", + "382": "branch2_seg0", + "383": "branch2_seg0", + "384": "branch2_seg0", + "385": "branch2_seg0", + "386": "branch2_seg0", + "387": "branch2_seg0", + "388": "branch2_seg0", + "389": "branch2_seg0", + "390": "branch2_seg0", + "391": "branch2_seg0", + "392": "branch2_seg0", + "393": "branch2_seg0", + "394": "branch2_seg0", + "395": "branch2_seg0", + "396": "branch2_seg0", + "397": "branch2_seg0", + "398": "branch2_seg0" + }, + "time": { + "0": 0.0, + "1": 0.25, + "2": 0.5, + "3": 0.75, + "4": 1.0, + "5": 1.25, + "6": 1.5, + "7": 1.75, + "8": 2.0, + "9": 2.25, + "10": 2.5, + "11": 2.75, + "12": 3.0, + "13": 3.25, + "14": 3.5, + "15": 3.75, + "16": 4.0, + "17": 4.25, + "18": 4.5, + "19": 4.75, + "20": 5.0, + "21": 5.25, + "22": 5.5, + "23": 5.75, + "24": 6.0, + "25": 6.25, + "26": 6.5, + "27": 6.75, + "28": 7.0, + "29": 7.25, + "30": 7.5, + "31": 7.75, + "32": 8.0, + "33": 8.25, + "34": 8.5, + "35": 8.75, + "36": 9.0, + "37": 9.25, + "38": 9.5, + "39": 9.75, + "40": 10.0, + "41": 10.25, + "42": 10.5, + "43": 10.75, + "44": 11.0, + "45": 11.25, + "46": 11.5, + "47": 11.75, + "48": 12.0, + "49": 12.25, + "50": 12.5, + "51": 12.75, + "52": 13.0, + "53": 13.25, + "54": 13.5, + "55": 13.75, + "56": 14.0, + "57": 14.25, + "58": 14.5, + "59": 14.75, + "60": 15.0, + "61": 15.25, + "62": 15.5, + "63": 15.75, + "64": 16.0, + "65": 16.25, + "66": 16.5, + "67": 16.75, + "68": 17.0, + "69": 17.25, + "70": 17.5, + "71": 17.75, + "72": 18.0, + "73": 18.25, + "74": 18.5, + "75": 18.75, + "76": 19.0, + "77": 19.25, + "78": 19.5, + "79": 19.75, + "80": 20.0, + "81": 20.25, + "82": 20.5, + "83": 20.75, + "84": 21.0, + "85": 21.25, + "86": 21.5, + "87": 21.75, + "88": 22.0, + "89": 22.25, + "90": 22.5, + "91": 22.75, + "92": 23.0, + "93": 23.25, + "94": 23.5, + "95": 23.75, + "96": 24.0, + "97": 24.25, + "98": 24.5, + "99": 24.75, + "100": 25.0, + "101": 25.25, + "102": 25.5, + "103": 25.75, + "104": 26.0, + "105": 26.25, + "106": 26.5, + "107": 26.75, + "108": 27.0, + "109": 27.25, + "110": 27.5, + "111": 27.75, + "112": 28.0, + "113": 28.25, + "114": 28.5, + "115": 28.75, + "116": 29.0, + "117": 29.25, + "118": 29.5, + "119": 29.75, + "120": 30.0, + "121": 30.25, + "122": 30.5, + "123": 30.75, + "124": 31.0, + "125": 31.25, + "126": 31.5, + "127": 31.75, + "128": 32.0, + "129": 32.25, + "130": 32.5, + "131": 32.75, + "132": 33.0, + "133": 0.0, + "134": 0.25, + "135": 0.5, + "136": 0.75, + "137": 1.0, + "138": 1.25, + "139": 1.5, + "140": 1.75, + "141": 2.0, + "142": 2.25, + "143": 2.5, + "144": 2.75, + "145": 3.0, + "146": 3.25, + "147": 3.5, + "148": 3.75, + "149": 4.0, + "150": 4.25, + "151": 4.5, + "152": 4.75, + "153": 5.0, + "154": 5.25, + "155": 5.5, + "156": 5.75, + "157": 6.0, + "158": 6.25, + "159": 6.5, + "160": 6.75, + "161": 7.0, + "162": 7.25, + "163": 7.5, + "164": 7.75, + "165": 8.0, + "166": 8.25, + "167": 8.5, + "168": 8.75, + "169": 9.0, + "170": 9.25, + "171": 9.5, + "172": 9.75, + "173": 10.0, + "174": 10.25, + "175": 10.5, + "176": 10.75, + "177": 11.0, + "178": 11.25, + "179": 11.5, + "180": 11.75, + "181": 12.0, + "182": 12.25, + "183": 12.5, + "184": 12.75, + "185": 13.0, + "186": 13.25, + "187": 13.5, + "188": 13.75, + "189": 14.0, + "190": 14.25, + "191": 14.5, + "192": 14.75, + "193": 15.0, + "194": 15.25, + "195": 15.5, + "196": 15.75, + "197": 16.0, + "198": 16.25, + "199": 16.5, + "200": 16.75, + "201": 17.0, + "202": 17.25, + "203": 17.5, + "204": 17.75, + "205": 18.0, + "206": 18.25, + "207": 18.5, + "208": 18.75, + "209": 19.0, + "210": 19.25, + "211": 19.5, + "212": 19.75, + "213": 20.0, + "214": 20.25, + "215": 20.5, + "216": 20.75, + "217": 21.0, + "218": 21.25, + "219": 21.5, + "220": 21.75, + "221": 22.0, + "222": 22.25, + "223": 22.5, + "224": 22.75, + "225": 23.0, + "226": 23.25, + "227": 23.5, + "228": 23.75, + "229": 24.0, + "230": 24.25, + "231": 24.5, + "232": 24.75, + "233": 25.0, + "234": 25.25, + "235": 25.5, + "236": 25.75, + "237": 26.0, + "238": 26.25, + "239": 26.5, + "240": 26.75, + "241": 27.0, + "242": 27.25, + "243": 27.5, + "244": 27.75, + "245": 28.0, + "246": 28.25, + "247": 28.5, + "248": 28.75, + "249": 29.0, + "250": 29.25, + "251": 29.5, + "252": 29.75, + "253": 30.0, + "254": 30.25, + "255": 30.5, + "256": 30.75, + "257": 31.0, + "258": 31.25, + "259": 31.5, + "260": 31.75, + "261": 32.0, + "262": 32.25, + "263": 32.5, + "264": 32.75, + "265": 33.0, + "266": 0.0, + "267": 0.25, + "268": 0.5, + "269": 0.75, + "270": 1.0, + "271": 1.25, + "272": 1.5, + "273": 1.75, + "274": 2.0, + "275": 2.25, + "276": 2.5, + "277": 2.75, + "278": 3.0, + "279": 3.25, + "280": 3.5, + "281": 3.75, + "282": 4.0, + "283": 4.25, + "284": 4.5, + "285": 4.75, + "286": 5.0, + "287": 5.25, + "288": 5.5, + "289": 5.75, + "290": 6.0, + "291": 6.25, + "292": 6.5, + "293": 6.75, + "294": 7.0, + "295": 7.25, + "296": 7.5, + "297": 7.75, + "298": 8.0, + "299": 8.25, + "300": 8.5, + "301": 8.75, + "302": 9.0, + "303": 9.25, + "304": 9.5, + "305": 9.75, + "306": 10.0, + "307": 10.25, + "308": 10.5, + "309": 10.75, + "310": 11.0, + "311": 11.25, + "312": 11.5, + "313": 11.75, + "314": 12.0, + "315": 12.25, + "316": 12.5, + "317": 12.75, + "318": 13.0, + "319": 13.25, + "320": 13.5, + "321": 13.75, + "322": 14.0, + "323": 14.25, + "324": 14.5, + "325": 14.75, + "326": 15.0, + "327": 15.25, + "328": 15.5, + "329": 15.75, + "330": 16.0, + "331": 16.25, + "332": 16.5, + "333": 16.75, + "334": 17.0, + "335": 17.25, + "336": 17.5, + "337": 17.75, + "338": 18.0, + "339": 18.25, + "340": 18.5, + "341": 18.75, + "342": 19.0, + "343": 19.25, + "344": 19.5, + "345": 19.75, + "346": 20.0, + "347": 20.25, + "348": 20.5, + "349": 20.75, + "350": 21.0, + "351": 21.25, + "352": 21.5, + "353": 21.75, + "354": 22.0, + "355": 22.25, + "356": 22.5, + "357": 22.75, + "358": 23.0, + "359": 23.25, + "360": 23.5, + "361": 23.75, + "362": 24.0, + "363": 24.25, + "364": 24.5, + "365": 24.75, + "366": 25.0, + "367": 25.25, + "368": 25.5, + "369": 25.75, + "370": 26.0, + "371": 26.25, + "372": 26.5, + "373": 26.75, + "374": 27.0, + "375": 27.25, + "376": 27.5, + "377": 27.75, + "378": 28.0, + "379": 28.25, + "380": 28.5, + "381": 28.75, + "382": 29.0, + "383": 29.25, + "384": 29.5, + "385": 29.75, + "386": 30.0, + "387": 30.25, + "388": 30.5, + "389": 30.75, + "390": 31.0, + "391": 31.25, + "392": 31.5, + "393": 31.75, + "394": 32.0, + "395": 32.25, + "396": 32.5, + "397": 32.75, + "398": 33.0 + }, + "flow_in": { + "0": 0.0, + "1": 6.546176607, + "2": 1.9010793755, + "3": -0.8967162947, + "4": 1.8741904684, + "5": 5.6090813728, + "6": 2.3696269926, + "7": -1.1309901033, + "8": 1.9913273727, + "9": 5.5505129207, + "10": 2.3989112186, + "11": -1.1456322163, + "12": 1.9986484292, + "13": 5.5468523924, + "14": 2.4007414828, + "15": -1.1465473484, + "16": 1.9991059952, + "17": 5.5466236094, + "18": 2.4008558743, + "19": -1.1466045441, + "20": 1.9991345931, + "21": 5.5466093104, + "22": 2.4008630238, + "23": -1.1466081189, + "24": 1.9991363805, + "25": 5.5466084168, + "26": 2.4008634706, + "27": -1.1466083423, + "28": 1.9991364922, + "29": 5.5466083609, + "30": 2.4008634985, + "31": -1.1466083563, + "32": 1.9991364991, + "33": 5.5466083574, + "34": 2.4008635003, + "35": -1.1466083571, + "36": 1.9991364996, + "37": 5.5466083572, + "38": 2.4008635004, + "39": -1.1466083572, + "40": 1.9991364996, + "41": 5.5466083572, + "42": 2.4008635004, + "43": -1.1466083572, + "44": 1.9991364996, + "45": 5.5466083572, + "46": 2.4008635004, + "47": -1.1466083572, + "48": 1.9991364996, + "49": 5.5466083572, + "50": 2.4008635004, + "51": -1.1466083572, + "52": 1.9991364996, + "53": 5.5466083572, + "54": 2.4008635004, + "55": -1.1466083572, + "56": 1.9991364996, + "57": 5.5466083572, + "58": 2.4008635004, + "59": -1.1466083572, + "60": 1.9991364996, + "61": 5.5466083572, + "62": 2.4008635004, + "63": -1.1466083572, + "64": 1.9991364996, + "65": 5.5466083572, + "66": 2.4008635004, + "67": -1.1466083572, + "68": 1.9991364996, + "69": 5.5466083572, + "70": 2.4008635004, + "71": -1.1466083572, + "72": 1.9991364996, + "73": 5.5466083572, + "74": 2.4008635004, + "75": -1.1466083572, + "76": 1.9991364996, + "77": 5.5466083572, + "78": 2.4008635004, + "79": -1.1466083572, + "80": 1.9991364996, + "81": 5.5466083572, + "82": 2.4008635004, + "83": -1.1466083572, + "84": 1.9991364996, + "85": 5.5466083572, + "86": 2.4008635004, + "87": -1.1466083572, + "88": 1.9991364996, + "89": 5.5466083572, + "90": 2.4008635004, + "91": -1.1466083572, + "92": 1.9991364996, + "93": 5.5466083572, + "94": 2.4008635004, + "95": -1.1466083572, + "96": 1.9991364996, + "97": 5.5466083572, + "98": 2.4008635004, + "99": -1.1466083572, + "100": 1.9991364996, + "101": 5.5466083572, + "102": 2.4008635004, + "103": -1.1466083572, + "104": 1.9991364996, + "105": 5.5466083572, + "106": 2.4008635004, + "107": -1.1466083572, + "108": 1.9991364996, + "109": 5.5466083572, + "110": 2.4008635004, + "111": -1.1466083572, + "112": 1.9991364996, + "113": 5.5466083572, + "114": 2.4008635004, + "115": -1.1466083572, + "116": 1.9991364996, + "117": 5.5466083572, + "118": 2.4008635004, + "119": -1.1466083572, + "120": 1.9991364996, + "121": 5.5466083572, + "122": 2.4008635004, + "123": -1.1466083572, + "124": 1.9991364996, + "125": 5.5466083572, + "126": 2.4008635004, + "127": -1.1466083572, + "128": 1.9991364996, + "129": 5.5466083572, + "130": 2.4008635004, + "131": -1.1466083572, + "132": 1.9991364996, + "133": 0.0, + "134": 3.2536738585, + "135": 0.6909412988, + "136": -0.7839437793, + "137": 0.6555866679, + "138": 2.4801000786, + "139": 0.6801409881, + "140": -1.1260276014, + "141": 0.5235960749, + "142": 2.2817675803, + "143": 0.5486954336, + "144": -1.2614884804, + "145": 0.4158142516, + "146": 2.1825419891, + "147": 0.4647297155, + "148": -1.3360392249, + "149": 0.3514259605, + "150": 2.1260449752, + "151": 0.4156042473, + "152": -1.378977379, + "153": 0.314007409, + "154": 2.0933808115, + "155": 0.3871182519, + "156": -1.4038335747, + "157": 0.2923254553, + "158": 2.0744642533, + "159": 0.370616122, + "160": -1.4182303142, + "161": 0.2797659295, + "162": 2.063507271, + "163": 0.361057314, + "164": -1.4265694174, + "165": 0.2724909239, + "166": 2.0571605668, + "167": 0.3555204655, + "168": -1.4313997532, + "169": 0.26827695, + "170": 2.0534843049, + "171": 0.3523133027, + "172": -1.4341976752, + "173": 0.265836049, + "174": 2.0513548681, + "175": 0.3504555867, + "176": -1.4358183426, + "177": 0.2644221822, + "178": 2.0501214138, + "179": 0.3493795239, + "180": -1.4367570975, + "181": 0.2636032145, + "182": 2.0494069481, + "183": 0.3487562256, + "184": -1.4373008616, + "185": 0.2631288359, + "186": 2.0489931013, + "187": 0.3483951864, + "188": -1.4376158314, + "189": 0.262854057, + "190": 2.0487533847, + "191": 0.3481860583, + "192": -1.4377982743, + "193": 0.2626948941, + "194": 2.0486145314, + "195": 0.3480649229, + "196": -1.4379039525, + "197": 0.2626027007, + "198": 2.048534102, + "199": 0.3479947565, + "200": -1.4379651656, + "201": 0.2625492986, + "202": 2.0484875142, + "203": 0.3479541134, + "204": -1.4380006226, + "205": 0.262518366, + "206": 2.0484605286, + "207": 0.3479305712, + "208": -1.4380211607, + "209": 0.2625004486, + "210": 2.0484448975, + "211": 0.3479169347, + "212": -1.4380330572, + "213": 0.2624900701, + "214": 2.0484358434, + "215": 0.3479090359, + "216": -1.4380399481, + "217": 0.2624840585, + "218": 2.0484305988, + "219": 0.3479044605, + "220": -1.4380439396, + "221": 0.2624805763, + "222": 2.048427561, + "223": 0.3479018103, + "224": -1.4380462516, + "225": 0.2624785593, + "226": 2.0484258014, + "227": 0.3479002752, + "228": -1.4380475908, + "229": 0.262477391, + "230": 2.0484247821, + "231": 0.3478993861, + "232": -1.4380483665, + "233": 0.2624767142, + "234": 2.0484241917, + "235": 0.347898871, + "236": -1.4380488159, + "237": 0.2624763222, + "238": 2.0484238497, + "239": 0.3478985727, + "240": -1.4380490762, + "241": 0.2624760951, + "242": 2.0484236517, + "243": 0.3478983998, + "244": -1.4380492269, + "245": 0.2624759636, + "246": 2.0484235369, + "247": 0.3478982997, + "248": -1.4380493142, + "249": 0.2624758874, + "250": 2.0484234705, + "251": 0.3478982418, + "252": -1.4380493648, + "253": 0.2624758433, + "254": 2.048423432, + "255": 0.3478982082, + "256": -1.4380493941, + "257": 0.2624758178, + "258": 2.0484234097, + "259": 0.3478981887, + "260": -1.4380494111, + "261": 0.2624758029, + "262": 2.0484233967, + "263": 0.3478981775, + "264": -1.4380494209, + "265": 0.2624757944, + "266": 0.0, + "267": 3.2925027485, + "268": 1.2101380767, + "269": -0.1127725154, + "270": 1.2186038005, + "271": 3.1289812942, + "272": 1.6894860045, + "273": -0.0049625019, + "274": 1.4677312978, + "275": 3.2687453404, + "276": 1.8502157851, + "277": 0.1158562641, + "278": 1.5828341776, + "279": 3.3643104033, + "280": 1.9360117672, + "281": 0.1894918765, + "282": 1.6476800347, + "283": 3.4205786342, + "284": 1.985251627, + "285": 0.2323728348, + "286": 1.6851271841, + "287": 3.453228499, + "288": 2.0137447718, + "289": 0.2572254558, + "290": 1.7068109252, + "291": 3.4721441634, + "292": 2.0302473486, + "293": 0.2716219719, + "294": 1.7193705627, + "295": 3.4831010899, + "296": 2.0398061846, + "297": 0.2799610612, + "298": 1.7266455753, + "299": 3.4894477906, + "300": 2.0453430347, + "301": 0.2847913961, + "302": 1.7308595496, + "303": 3.4931240523, + "304": 2.0485501976, + "305": 0.287589318, + "306": 1.7333004506, + "307": 3.4952534891, + "308": 2.0504079137, + "309": 0.2892099855, + "310": 1.7347143174, + "311": 3.4964869434, + "312": 2.0514839765, + "313": 0.2901487403, + "314": 1.7355332851, + "315": 3.497201409, + "316": 2.0521072748, + "317": 0.2906925044, + "318": 1.7360076637, + "319": 3.4976152559, + "320": 2.0524683139, + "321": 0.2910074742, + "322": 1.7362824426, + "323": 3.4978549724, + "324": 2.0526774421, + "325": 0.2911899172, + "326": 1.7364416055, + "327": 3.4979938258, + "328": 2.0527985775, + "329": 0.2912955954, + "330": 1.7365337989, + "331": 3.4980742551, + "332": 2.0528687439, + "333": 0.2913568084, + "334": 1.736587201, + "335": 3.498120843, + "336": 2.052909387, + "337": 0.2913922654, + "338": 1.7366181337, + "339": 3.4981478286, + "340": 2.0529329292, + "341": 0.2914128035, + "342": 1.7366360511, + "343": 3.4981634597, + "344": 2.0529465657, + "345": 0.2914247, + "346": 1.7366464295, + "347": 3.4981725138, + "348": 2.0529544645, + "349": 0.2914315909, + "350": 1.7366524411, + "351": 3.4981777583, + "352": 2.0529590398, + "353": 0.2914355824, + "354": 1.7366559233, + "355": 3.4981807962, + "356": 2.05296169, + "357": 0.2914378944, + "358": 1.7366579403, + "359": 3.4981825558, + "360": 2.0529632251, + "361": 0.2914392336, + "362": 1.7366591087, + "363": 3.4981835751, + "364": 2.0529641143, + "365": 0.2914400094, + "366": 1.7366597854, + "367": 3.4981841655, + "368": 2.0529646294, + "369": 0.2914404587, + "370": 1.7366601774, + "371": 3.4981845074, + "372": 2.0529649277, + "373": 0.291440719, + "374": 1.7366604045, + "375": 3.4981847055, + "376": 2.0529651005, + "377": 0.2914408697, + "378": 1.736660536, + "379": 3.4981848203, + "380": 2.0529652006, + "381": 0.2914409571, + "382": 1.7366606122, + "383": 3.4981848867, + "384": 2.0529652586, + "385": 0.2914410076, + "386": 1.7366606563, + "387": 3.4981849252, + "388": 2.0529652922, + "389": 0.2914410369, + "390": 1.7366606819, + "391": 3.4981849475, + "392": 2.0529653117, + "393": 0.2914410539, + "394": 1.7366606967, + "395": 3.4981849604, + "396": 2.0529653229, + "397": 0.2914410637, + "398": 1.7366607052 + }, + "flow_out": { + "0": 0.0, + "1": 6.546176607, + "2": 1.9010793755, + "3": -0.8967162947, + "4": 1.8741904684, + "5": 5.6090813728, + "6": 2.3696269926, + "7": -1.1309901033, + "8": 1.9913273727, + "9": 5.5505129207, + "10": 2.3989112186, + "11": -1.1456322163, + "12": 1.9986484292, + "13": 5.5468523924, + "14": 2.4007414828, + "15": -1.1465473484, + "16": 1.9991059952, + "17": 5.5466236094, + "18": 2.4008558743, + "19": -1.1466045441, + "20": 1.9991345931, + "21": 5.5466093104, + "22": 2.4008630238, + "23": -1.1466081189, + "24": 1.9991363805, + "25": 5.5466084168, + "26": 2.4008634706, + "27": -1.1466083423, + "28": 1.9991364922, + "29": 5.5466083609, + "30": 2.4008634985, + "31": -1.1466083563, + "32": 1.9991364991, + "33": 5.5466083574, + "34": 2.4008635003, + "35": -1.1466083571, + "36": 1.9991364996, + "37": 5.5466083572, + "38": 2.4008635004, + "39": -1.1466083572, + "40": 1.9991364996, + "41": 5.5466083572, + "42": 2.4008635004, + "43": -1.1466083572, + "44": 1.9991364996, + "45": 5.5466083572, + "46": 2.4008635004, + "47": -1.1466083572, + "48": 1.9991364996, + "49": 5.5466083572, + "50": 2.4008635004, + "51": -1.1466083572, + "52": 1.9991364996, + "53": 5.5466083572, + "54": 2.4008635004, + "55": -1.1466083572, + "56": 1.9991364996, + "57": 5.5466083572, + "58": 2.4008635004, + "59": -1.1466083572, + "60": 1.9991364996, + "61": 5.5466083572, + "62": 2.4008635004, + "63": -1.1466083572, + "64": 1.9991364996, + "65": 5.5466083572, + "66": 2.4008635004, + "67": -1.1466083572, + "68": 1.9991364996, + "69": 5.5466083572, + "70": 2.4008635004, + "71": -1.1466083572, + "72": 1.9991364996, + "73": 5.5466083572, + "74": 2.4008635004, + "75": -1.1466083572, + "76": 1.9991364996, + "77": 5.5466083572, + "78": 2.4008635004, + "79": -1.1466083572, + "80": 1.9991364996, + "81": 5.5466083572, + "82": 2.4008635004, + "83": -1.1466083572, + "84": 1.9991364996, + "85": 5.5466083572, + "86": 2.4008635004, + "87": -1.1466083572, + "88": 1.9991364996, + "89": 5.5466083572, + "90": 2.4008635004, + "91": -1.1466083572, + "92": 1.9991364996, + "93": 5.5466083572, + "94": 2.4008635004, + "95": -1.1466083572, + "96": 1.9991364996, + "97": 5.5466083572, + "98": 2.4008635004, + "99": -1.1466083572, + "100": 1.9991364996, + "101": 5.5466083572, + "102": 2.4008635004, + "103": -1.1466083572, + "104": 1.9991364996, + "105": 5.5466083572, + "106": 2.4008635004, + "107": -1.1466083572, + "108": 1.9991364996, + "109": 5.5466083572, + "110": 2.4008635004, + "111": -1.1466083572, + "112": 1.9991364996, + "113": 5.5466083572, + "114": 2.4008635004, + "115": -1.1466083572, + "116": 1.9991364996, + "117": 5.5466083572, + "118": 2.4008635004, + "119": -1.1466083572, + "120": 1.9991364996, + "121": 5.5466083572, + "122": 2.4008635004, + "123": -1.1466083572, + "124": 1.9991364996, + "125": 5.5466083572, + "126": 2.4008635004, + "127": -1.1466083572, + "128": 1.9991364996, + "129": 5.5466083572, + "130": 2.4008635004, + "131": -1.1466083572, + "132": 1.9991364996, + "133": 0.0, + "134": 3.2536738585, + "135": 0.6909412988, + "136": -0.7839437793, + "137": 0.6555866679, + "138": 2.4801000786, + "139": 0.6801409881, + "140": -1.1260276014, + "141": 0.5235960749, + "142": 2.2817675803, + "143": 0.5486954336, + "144": -1.2614884804, + "145": 0.4158142516, + "146": 2.1825419891, + "147": 0.4647297155, + "148": -1.3360392249, + "149": 0.3514259605, + "150": 2.1260449752, + "151": 0.4156042473, + "152": -1.378977379, + "153": 0.314007409, + "154": 2.0933808115, + "155": 0.3871182519, + "156": -1.4038335747, + "157": 0.2923254553, + "158": 2.0744642533, + "159": 0.370616122, + "160": -1.4182303142, + "161": 0.2797659295, + "162": 2.063507271, + "163": 0.361057314, + "164": -1.4265694174, + "165": 0.2724909239, + "166": 2.0571605668, + "167": 0.3555204655, + "168": -1.4313997532, + "169": 0.26827695, + "170": 2.0534843049, + "171": 0.3523133027, + "172": -1.4341976752, + "173": 0.265836049, + "174": 2.0513548681, + "175": 0.3504555867, + "176": -1.4358183426, + "177": 0.2644221822, + "178": 2.0501214138, + "179": 0.3493795239, + "180": -1.4367570975, + "181": 0.2636032145, + "182": 2.0494069481, + "183": 0.3487562256, + "184": -1.4373008616, + "185": 0.2631288359, + "186": 2.0489931013, + "187": 0.3483951864, + "188": -1.4376158314, + "189": 0.262854057, + "190": 2.0487533847, + "191": 0.3481860583, + "192": -1.4377982743, + "193": 0.2626948941, + "194": 2.0486145314, + "195": 0.3480649229, + "196": -1.4379039525, + "197": 0.2626027007, + "198": 2.048534102, + "199": 0.3479947565, + "200": -1.4379651656, + "201": 0.2625492986, + "202": 2.0484875142, + "203": 0.3479541134, + "204": -1.4380006226, + "205": 0.262518366, + "206": 2.0484605286, + "207": 0.3479305712, + "208": -1.4380211607, + "209": 0.2625004486, + "210": 2.0484448975, + "211": 0.3479169347, + "212": -1.4380330572, + "213": 0.2624900701, + "214": 2.0484358434, + "215": 0.3479090359, + "216": -1.4380399481, + "217": 0.2624840585, + "218": 2.0484305988, + "219": 0.3479044605, + "220": -1.4380439396, + "221": 0.2624805763, + "222": 2.048427561, + "223": 0.3479018103, + "224": -1.4380462516, + "225": 0.2624785593, + "226": 2.0484258014, + "227": 0.3479002752, + "228": -1.4380475908, + "229": 0.262477391, + "230": 2.0484247821, + "231": 0.3478993861, + "232": -1.4380483665, + "233": 0.2624767142, + "234": 2.0484241917, + "235": 0.347898871, + "236": -1.4380488159, + "237": 0.2624763222, + "238": 2.0484238497, + "239": 0.3478985727, + "240": -1.4380490762, + "241": 0.2624760951, + "242": 2.0484236517, + "243": 0.3478983998, + "244": -1.4380492269, + "245": 0.2624759636, + "246": 2.0484235369, + "247": 0.3478982997, + "248": -1.4380493142, + "249": 0.2624758874, + "250": 2.0484234705, + "251": 0.3478982418, + "252": -1.4380493648, + "253": 0.2624758433, + "254": 2.048423432, + "255": 0.3478982082, + "256": -1.4380493941, + "257": 0.2624758178, + "258": 2.0484234097, + "259": 0.3478981887, + "260": -1.4380494111, + "261": 0.2624758029, + "262": 2.0484233967, + "263": 0.3478981775, + "264": -1.4380494209, + "265": 0.2624757944, + "266": 0.0, + "267": 3.2925027485, + "268": 1.2101380767, + "269": -0.1127725154, + "270": 1.2186038005, + "271": 3.1289812942, + "272": 1.6894860045, + "273": -0.0049625019, + "274": 1.4677312978, + "275": 3.2687453404, + "276": 1.8502157851, + "277": 0.1158562641, + "278": 1.5828341776, + "279": 3.3643104033, + "280": 1.9360117672, + "281": 0.1894918765, + "282": 1.6476800347, + "283": 3.4205786342, + "284": 1.985251627, + "285": 0.2323728348, + "286": 1.6851271841, + "287": 3.453228499, + "288": 2.0137447718, + "289": 0.2572254558, + "290": 1.7068109252, + "291": 3.4721441634, + "292": 2.0302473486, + "293": 0.2716219719, + "294": 1.7193705627, + "295": 3.4831010899, + "296": 2.0398061846, + "297": 0.2799610612, + "298": 1.7266455753, + "299": 3.4894477906, + "300": 2.0453430347, + "301": 0.2847913961, + "302": 1.7308595496, + "303": 3.4931240523, + "304": 2.0485501976, + "305": 0.287589318, + "306": 1.7333004506, + "307": 3.4952534891, + "308": 2.0504079137, + "309": 0.2892099855, + "310": 1.7347143174, + "311": 3.4964869434, + "312": 2.0514839765, + "313": 0.2901487403, + "314": 1.7355332851, + "315": 3.497201409, + "316": 2.0521072748, + "317": 0.2906925044, + "318": 1.7360076637, + "319": 3.4976152559, + "320": 2.0524683139, + "321": 0.2910074742, + "322": 1.7362824426, + "323": 3.4978549724, + "324": 2.0526774421, + "325": 0.2911899172, + "326": 1.7364416055, + "327": 3.4979938258, + "328": 2.0527985775, + "329": 0.2912955954, + "330": 1.7365337989, + "331": 3.4980742551, + "332": 2.0528687439, + "333": 0.2913568084, + "334": 1.736587201, + "335": 3.498120843, + "336": 2.052909387, + "337": 0.2913922654, + "338": 1.7366181337, + "339": 3.4981478286, + "340": 2.0529329292, + "341": 0.2914128035, + "342": 1.7366360511, + "343": 3.4981634597, + "344": 2.0529465657, + "345": 0.2914247, + "346": 1.7366464295, + "347": 3.4981725138, + "348": 2.0529544645, + "349": 0.2914315909, + "350": 1.7366524411, + "351": 3.4981777583, + "352": 2.0529590398, + "353": 0.2914355824, + "354": 1.7366559233, + "355": 3.4981807962, + "356": 2.05296169, + "357": 0.2914378944, + "358": 1.7366579403, + "359": 3.4981825558, + "360": 2.0529632251, + "361": 0.2914392336, + "362": 1.7366591087, + "363": 3.4981835751, + "364": 2.0529641143, + "365": 0.2914400094, + "366": 1.7366597854, + "367": 3.4981841655, + "368": 2.0529646294, + "369": 0.2914404587, + "370": 1.7366601774, + "371": 3.4981845074, + "372": 2.0529649277, + "373": 0.291440719, + "374": 1.7366604045, + "375": 3.4981847055, + "376": 2.0529651005, + "377": 0.2914408697, + "378": 1.736660536, + "379": 3.4981848203, + "380": 2.0529652006, + "381": 0.2914409571, + "382": 1.7366606122, + "383": 3.4981848867, + "384": 2.0529652586, + "385": 0.2914410076, + "386": 1.7366606563, + "387": 3.4981849252, + "388": 2.0529652922, + "389": 0.2914410369, + "390": 1.7366606819, + "391": 3.4981849475, + "392": 2.0529653117, + "393": 0.2914410539, + "394": 1.7366606967, + "395": 3.4981849604, + "396": 2.0529653229, + "397": 0.2914410637, + "398": 1.7366607052 + }, + "pressure_in": { + "0": 0.0, + "1": 10776.1397501814, + "2": 9961.3040427155, + "3": 6847.202087351, + "4": 9446.6632155065, + "5": 16680.0953197416, + "6": 16371.1527268483, + "7": 11791.816872832, + "8": 14087.4346621121, + "9": 20564.4783239725, + "10": 19842.1171683967, + "11": 14778.7350272407, + "12": 16713.792326415, + "13": 22845.417733995, + "14": 21837.148609853, + "15": 16516.6236726673, + "16": 18231.2088489758, + "17": 24168.5654988248, + "18": 22991.781411135, + "19": 17523.7620450512, + "20": 19109.914571469, + "21": 24935.1062709546, + "22": 23660.5300162879, + "23": 18107.166829494, + "24": 19618.8806648942, + "25": 25379.1246751628, + "26": 24047.8919655218, + "27": 18445.0999261054, + "28": 19913.6930797171, + "29": 25636.3182296493, + "30": 24272.2671433314, + "31": 18640.8443054979, + "32": 20084.4600715253, + "33": 25785.2949732437, + "34": 24402.2341363481, + "35": 18754.2272259663, + "36": 20183.3750867392, + "37": 25871.5882174419, + "38": 24477.5161757978, + "39": 18819.9031138073, + "40": 20240.6705889742, + "41": 25921.5726893289, + "42": 24521.1225207182, + "43": 18857.9451945618, + "44": 20273.8584177488, + "45": 25950.5256791939, + "46": 24546.3810463036, + "47": 18879.980677518, + "48": 20293.0821253042, + "49": 25967.2963999854, + "50": 24561.011786761, + "51": 18892.7445037716, + "52": 20304.2172596542, + "53": 25977.0106670499, + "54": 24569.4864922862, + "55": 18900.1378184975, + "56": 20310.6671713913, + "57": 25982.6375560651, + "58": 24574.3953780632, + "59": 18904.4203198062, + "60": 20314.403216248, + "61": 25985.8968734978, + "62": 24577.2387995249, + "63": 18906.9009145245, + "64": 20316.5672817019, + "65": 25987.7847995079, + "66": 24578.8858220827, + "67": 18908.337773433, + "68": 20317.8207942984, + "69": 25988.8783611792, + "70": 24579.8398429138, + "71": 18909.1700591376, + "72": 20318.5468785427, + "73": 25989.5117954996, + "74": 24580.3924496416, + "75": 18909.6521520488, + "76": 20318.9674553531, + "77": 25989.8787057972, + "78": 24580.7125413897, + "79": 18909.9313993958, + "80": 20319.2110701332, + "81": 25990.0912348032, + "82": 24580.8979512337, + "83": 18910.0931505417, + "84": 20319.3521814822, + "85": 25990.2143400381, + "86": 24581.0053479737, + "87": 18910.1868432249, + "88": 20319.4339187759, + "89": 25990.2856474759, + "90": 24581.0675564278, + "91": 18910.2411137454, + "92": 20319.4812642603, + "93": 25990.3269515738, + "94": 24581.1035900333, + "95": 18910.2725493847, + "96": 20319.5086886439, + "97": 25990.3508765466, + "98": 24581.1244621277, + "99": 18910.2907581546, + "100": 20319.5245739352, + "101": 25990.3647348403, + "102": 24581.1365520731, + "103": 18910.3013053967, + "104": 20319.5337753264, + "105": 25990.3727621141, + "106": 24581.1435550493, + "107": 18910.307414778, + "108": 20319.5391051374, + "109": 25990.3774118296, + "110": 24581.1476114511, + "111": 18910.3109535741, + "112": 20319.5421923754, + "113": 25990.3801051294, + "114": 24581.1499610799, + "115": 18910.3130033852, + "116": 20319.5439806262, + "117": 25990.3816651955, + "118": 24581.1513220782, + "119": 18910.3141907172, + "120": 20319.545016452, + "121": 25990.3825688477, + "122": 24581.1521104225, + "123": 18910.314878467, + "124": 20319.5456164435, + "125": 25990.3830922789, + "126": 24581.1525670627, + "127": 18910.3152768389, + "128": 20319.5459639823, + "129": 25990.383395471, + "130": 24581.152831567, + "131": 18910.3155075919, + "132": 20319.5461652906, + "133": 0.0, + "134": 8812.2867680853, + "135": 9390.9802300702, + "136": 7116.2169757699, + "137": 8884.4060749905, + "138": 14997.3709079035, + "139": 15660.264629074, + "140": 12131.1139038153, + "141": 13490.0364503138, + "142": 18899.3244477755, + "143": 19122.4438028018, + "144": 15122.4246921343, + "145": 16114.1977976617, + "146": 21181.3620162755, + "147": 21116.9261650193, + "148": 16860.5878771803, + "149": 17631.4770504127, + "150": 22504.5784160102, + "151": 22271.5246488489, + "152": 17867.7434082904, + "153": 18510.1741935428, + "154": 23271.1234778216, + "155": 22940.2711091611, + "156": 18451.1492651536, + "157": 19019.1397507579, + "158": 23715.1421501348, + "159": 23327.6329243423, + "160": 18789.0824287912, + "161": 19313.9521320675, + "162": 23972.3357213779, + "163": 23552.0080937737, + "164": 18984.8268123729, + "165": 19484.7191217812, + "166": 24121.3124660196, + "167": 23681.9750862667, + "168": 19098.2097331032, + "169": 19583.6341368642, + "170": 24207.6057102832, + "171": 23757.2571256837, + "172": 19163.8856209605, + "173": 19640.929639091, + "174": 24257.5901821744, + "175": 23800.8634706021, + "176": 19201.9277017161, + "177": 19674.1174678651, + "178": 24286.5431720396, + "179": 23826.1219961873, + "180": 19223.9631846723, + "181": 19693.3411754205, + "182": 24303.3138928311, + "183": 23840.7527366447, + "184": 19236.7270109259, + "185": 19704.4763097704, + "186": 24313.0281598956, + "187": 23849.2274421699, + "188": 19244.1203256518, + "189": 19710.9262215076, + "190": 24318.6550489108, + "191": 23854.1363279469, + "192": 19248.4028269605, + "193": 19714.6622663643, + "194": 24321.9143663435, + "195": 23856.9797494086, + "196": 19250.8834216788, + "197": 19716.8263318182, + "198": 24323.8022923536, + "199": 23858.6267719664, + "200": 19252.3202805873, + "201": 19718.0798444147, + "202": 24324.895854025, + "203": 23859.5807927976, + "204": 19253.1525662919, + "205": 19718.8059286589, + "206": 24325.5292883454, + "207": 23860.1333995253, + "208": 19253.6346592031, + "209": 19719.2265054694, + "210": 24325.8961986429, + "211": 23860.4534912734, + "212": 19253.9139065501, + "213": 19719.4701202495, + "214": 24326.1087276489, + "215": 23860.6389011174, + "216": 19254.075657696, + "217": 19719.6112315985, + "218": 24326.2318328838, + "219": 23860.7462978575, + "220": 19254.1693503792, + "221": 19719.6929688922, + "222": 24326.3031403216, + "223": 23860.8085063116, + "224": 19254.2236208997, + "225": 19719.7403143766, + "226": 24326.3444444195, + "227": 23860.8445399171, + "228": 19254.255056539, + "229": 19719.7677387601, + "230": 24326.3683693923, + "231": 23860.8654120114, + "232": 19254.2732653089, + "233": 19719.7836240515, + "234": 24326.3822276861, + "235": 23860.8775019569, + "236": 19254.283812551, + "237": 19719.7928254427, + "238": 24326.3902549598, + "239": 23860.8845049331, + "240": 19254.2899219323, + "241": 19719.7981552537, + "242": 24326.3949046753, + "243": 23860.8885613348, + "244": 19254.2934607284, + "245": 19719.8012424917, + "246": 24326.3975979751, + "247": 23860.8909109637, + "248": 19254.2955105395, + "249": 19719.8030307425, + "250": 24326.3991580412, + "251": 23860.892271962, + "252": 19254.2966978715, + "253": 19719.8040665683, + "254": 24326.4000616934, + "255": 23860.8930603062, + "256": 19254.2973856212, + "257": 19719.8046665597, + "258": 24326.4005851246, + "259": 23860.8935169465, + "260": 19254.2977839932, + "261": 19719.8050140986, + "262": 24326.4008883167, + "263": 23860.8937814507, + "264": 19254.2980147461, + "265": 19719.8052154068, + "266": 0.0, + "267": 8812.2867680853, + "268": 9390.9802300702, + "269": 7116.2169757699, + "270": 8884.4060749905, + "271": 14997.3709079035, + "272": 15660.264629074, + "273": 12131.1139038153, + "274": 13490.0364503138, + "275": 18899.3244477755, + "276": 19122.4438028018, + "277": 15122.4246921343, + "278": 16114.1977976617, + "279": 21181.3620162755, + "280": 21116.9261650193, + "281": 16860.5878771803, + "282": 17631.4770504127, + "283": 22504.5784160102, + "284": 22271.5246488489, + "285": 17867.7434082904, + "286": 18510.1741935428, + "287": 23271.1234778216, + "288": 22940.2711091611, + "289": 18451.1492651536, + "290": 19019.1397507579, + "291": 23715.1421501348, + "292": 23327.6329243423, + "293": 18789.0824287912, + "294": 19313.9521320675, + "295": 23972.3357213779, + "296": 23552.0080937737, + "297": 18984.8268123729, + "298": 19484.7191217812, + "299": 24121.3124660196, + "300": 23681.9750862667, + "301": 19098.2097331032, + "302": 19583.6341368642, + "303": 24207.6057102832, + "304": 23757.2571256837, + "305": 19163.8856209605, + "306": 19640.929639091, + "307": 24257.5901821744, + "308": 23800.8634706021, + "309": 19201.9277017161, + "310": 19674.1174678651, + "311": 24286.5431720396, + "312": 23826.1219961873, + "313": 19223.9631846723, + "314": 19693.3411754205, + "315": 24303.3138928311, + "316": 23840.7527366447, + "317": 19236.7270109259, + "318": 19704.4763097704, + "319": 24313.0281598956, + "320": 23849.2274421699, + "321": 19244.1203256518, + "322": 19710.9262215076, + "323": 24318.6550489108, + "324": 23854.1363279469, + "325": 19248.4028269605, + "326": 19714.6622663643, + "327": 24321.9143663435, + "328": 23856.9797494086, + "329": 19250.8834216788, + "330": 19716.8263318182, + "331": 24323.8022923536, + "332": 23858.6267719664, + "333": 19252.3202805873, + "334": 19718.0798444147, + "335": 24324.895854025, + "336": 23859.5807927976, + "337": 19253.1525662919, + "338": 19718.8059286589, + "339": 24325.5292883454, + "340": 23860.1333995253, + "341": 19253.6346592031, + "342": 19719.2265054694, + "343": 24325.8961986429, + "344": 23860.4534912734, + "345": 19253.9139065501, + "346": 19719.4701202495, + "347": 24326.1087276489, + "348": 23860.6389011174, + "349": 19254.075657696, + "350": 19719.6112315985, + "351": 24326.2318328838, + "352": 23860.7462978575, + "353": 19254.1693503792, + "354": 19719.6929688922, + "355": 24326.3031403216, + "356": 23860.8085063116, + "357": 19254.2236208997, + "358": 19719.7403143766, + "359": 24326.3444444195, + "360": 23860.8445399171, + "361": 19254.255056539, + "362": 19719.7677387601, + "363": 24326.3683693923, + "364": 23860.8654120114, + "365": 19254.2732653089, + "366": 19719.7836240515, + "367": 24326.3822276861, + "368": 23860.8775019569, + "369": 19254.283812551, + "370": 19719.7928254427, + "371": 24326.3902549598, + "372": 23860.8845049331, + "373": 19254.2899219323, + "374": 19719.7981552537, + "375": 24326.3949046753, + "376": 23860.8885613348, + "377": 19254.2934607284, + "378": 19719.8012424917, + "379": 24326.3975979751, + "380": 23860.8909109637, + "381": 19254.2955105395, + "382": 19719.8030307425, + "383": 24326.3991580412, + "384": 23860.892271962, + "385": 19254.2966978715, + "386": 19719.8040665683, + "387": 24326.4000616934, + "388": 23860.8930603062, + "389": 19254.2973856212, + "390": 19719.8046665597, + "391": 24326.4005851246, + "392": 23860.8935169465, + "393": 19254.2977839932, + "394": 19719.8050140986, + "395": 24326.4008883167, + "396": 23860.8937814507, + "397": 19254.2980147461, + "398": 19719.8052154068 + }, + "pressure_out": { + "0": 0.0, + "1": 8812.2867680853, + "2": 9390.9802300702, + "3": 7116.2169757699, + "4": 8884.4060749905, + "5": 14997.3709079035, + "6": 15660.264629074, + "7": 12131.1139038153, + "8": 13490.0364503138, + "9": 18899.3244477755, + "10": 19122.4438028018, + "11": 15122.4246921343, + "12": 16114.1977976617, + "13": 21181.3620162755, + "14": 21116.9261650193, + "15": 16860.5878771803, + "16": 17631.4770504127, + "17": 22504.5784160102, + "18": 22271.5246488489, + "19": 17867.7434082904, + "20": 18510.1741935428, + "21": 23271.1234778216, + "22": 22940.2711091611, + "23": 18451.1492651536, + "24": 19019.1397507579, + "25": 23715.1421501348, + "26": 23327.6329243423, + "27": 18789.0824287912, + "28": 19313.9521320675, + "29": 23972.3357213779, + "30": 23552.0080937737, + "31": 18984.8268123729, + "32": 19484.7191217812, + "33": 24121.3124660196, + "34": 23681.9750862667, + "35": 19098.2097331032, + "36": 19583.6341368642, + "37": 24207.6057102832, + "38": 23757.2571256837, + "39": 19163.8856209605, + "40": 19640.929639091, + "41": 24257.5901821744, + "42": 23800.8634706021, + "43": 19201.9277017161, + "44": 19674.1174678651, + "45": 24286.5431720396, + "46": 23826.1219961873, + "47": 19223.9631846723, + "48": 19693.3411754205, + "49": 24303.3138928311, + "50": 23840.7527366447, + "51": 19236.7270109259, + "52": 19704.4763097704, + "53": 24313.0281598956, + "54": 23849.2274421699, + "55": 19244.1203256518, + "56": 19710.9262215076, + "57": 24318.6550489108, + "58": 23854.1363279469, + "59": 19248.4028269605, + "60": 19714.6622663643, + "61": 24321.9143663435, + "62": 23856.9797494086, + "63": 19250.8834216788, + "64": 19716.8263318182, + "65": 24323.8022923536, + "66": 23858.6267719664, + "67": 19252.3202805873, + "68": 19718.0798444147, + "69": 24324.895854025, + "70": 23859.5807927976, + "71": 19253.1525662919, + "72": 19718.8059286589, + "73": 24325.5292883454, + "74": 23860.1333995253, + "75": 19253.6346592031, + "76": 19719.2265054694, + "77": 24325.8961986429, + "78": 23860.4534912734, + "79": 19253.9139065501, + "80": 19719.4701202495, + "81": 24326.1087276489, + "82": 23860.6389011174, + "83": 19254.075657696, + "84": 19719.6112315985, + "85": 24326.2318328838, + "86": 23860.7462978575, + "87": 19254.1693503792, + "88": 19719.6929688922, + "89": 24326.3031403216, + "90": 23860.8085063116, + "91": 19254.2236208997, + "92": 19719.7403143766, + "93": 24326.3444444195, + "94": 23860.8445399171, + "95": 19254.255056539, + "96": 19719.7677387601, + "97": 24326.3683693923, + "98": 23860.8654120114, + "99": 19254.2732653089, + "100": 19719.7836240515, + "101": 24326.3822276861, + "102": 23860.8775019569, + "103": 19254.283812551, + "104": 19719.7928254427, + "105": 24326.3902549598, + "106": 23860.8845049331, + "107": 19254.2899219323, + "108": 19719.7981552537, + "109": 24326.3949046753, + "110": 23860.8885613348, + "111": 19254.2934607284, + "112": 19719.8012424917, + "113": 24326.3975979751, + "114": 23860.8909109637, + "115": 19254.2955105395, + "116": 19719.8030307425, + "117": 24326.3991580412, + "118": 23860.892271962, + "119": 19254.2966978715, + "120": 19719.8040665683, + "121": 24326.4000616934, + "122": 23860.8930603062, + "123": 19254.2973856212, + "124": 19719.8046665597, + "125": 24326.4005851246, + "126": 23860.8935169465, + "127": 19254.2977839932, + "128": 19719.8050140986, + "129": 24326.4008883167, + "130": 23860.8937814507, + "131": 19254.2980147461, + "132": 19719.8052154068, + "133": 0.0, + "134": 7510.8172246966, + "135": 9114.603710538, + "136": 7429.7944874925, + "137": 8622.1714078403, + "138": 14005.3308764717, + "139": 15388.2082338529, + "140": 12581.52494437, + "141": 13280.5980203553, + "142": 17986.6174156714, + "143": 18902.9656293631, + "144": 15627.0200843124, + "145": 15947.8720970227, + "146": 20308.3452206495, + "147": 20931.0342788069, + "148": 17395.0035671312, + "149": 17490.9066662284, + "150": 21654.160425934, + "151": 22105.2829499465, + "152": 18419.3343598726, + "153": 18384.5712299543, + "154": 22433.7711532283, + "155": 22785.4238083945, + "156": 19012.6826950166, + "157": 18902.2095686392, + "158": 22885.356448805, + "159": 23179.3864755488, + "160": 19356.3745544822, + "161": 19202.0457602644, + "162": 23146.9328129946, + "163": 23407.5851681845, + "164": 19555.4545793473, + "165": 19375.7227522367, + "166": 23298.4482392799, + "167": 23539.766900048, + "168": 19670.7696343981, + "169": 19476.3233568639, + "170": 23386.2119883312, + "171": 23616.3318045916, + "172": 19737.5646910415, + "173": 19534.5952194977, + "174": 23437.0482349323, + "175": 23660.6812359162, + "176": 19776.2550387686, + "177": 19568.3485949714, + "178": 23466.4946065125, + "179": 23686.3701866396, + "180": 19798.6660236824, + "181": 19587.8998896202, + "182": 23483.5511135742, + "183": 23701.2502464195, + "184": 19811.6473555723, + "185": 19599.2247754157, + "186": 23493.4309193883, + "187": 23709.869367591, + "188": 19819.1666581949, + "189": 19605.7845987209, + "190": 23499.1536950171, + "191": 23714.8619046418, + "192": 19823.5221366936, + "193": 19609.5843087198, + "194": 23502.4685537819, + "195": 23717.7537802412, + "196": 19826.0450026965, + "197": 19611.7852515508, + "198": 23504.3886515358, + "199": 23719.4288693586, + "200": 19827.5063468106, + "201": 19613.0601249876, + "202": 23505.500848358, + "203": 23720.3991474549, + "204": 19828.3528153182, + "205": 19613.7985822784, + "206": 23506.1450768973, + "207": 23720.9611710358, + "208": 19828.8431234716, + "209": 19614.2263260484, + "210": 23506.5182396349, + "211": 23721.286717399, + "212": 19829.127129413, + "213": 19614.4740922159, + "214": 23506.7343903022, + "215": 23721.4752867726, + "216": 19829.2916369257, + "217": 19614.6176082133, + "218": 23506.8595933472, + "219": 23721.5845136375, + "220": 19829.3869262059, + "221": 19614.7007383747, + "222": 23506.9321159197, + "223": 23721.6477821726, + "224": 19829.4421215387, + "225": 19614.7488906634, + "226": 23506.974123872, + "227": 23721.684429819, + "228": 19829.474092866, + "229": 19614.77678238, + "230": 23506.9984565451, + "231": 23721.7056575903, + "232": 19829.4926119276, + "233": 19614.7929383692, + "234": 23507.0125509951, + "235": 23721.7179535579, + "236": 19829.5033389031, + "237": 19614.8022965594, + "238": 23507.0207150599, + "239": 23721.7250758703, + "240": 19829.509552393, + "241": 19614.8077171945, + "242": 23507.0254440102, + "243": 23721.7292013963, + "244": 19829.513151493, + "245": 19614.8108570415, + "246": 23507.0281832059, + "247": 23721.7315910647, + "248": 19829.5152362345, + "249": 19614.8126757655, + "250": 23507.0297698568, + "251": 23721.7329752555, + "252": 19829.5164437995, + "253": 19614.8137292426, + "254": 23507.0306889079, + "255": 23721.7337770338, + "256": 19829.5171432691, + "257": 19614.8143394584, + "258": 23507.0312212588, + "259": 23721.7342414555, + "260": 19829.5175484297, + "261": 19614.8146929195, + "262": 23507.0315296176, + "263": 23721.7345104671, + "264": 19829.5177831148, + "265": 19614.8148976583, + "266": 0.0, + "267": 7166.0353938276, + "268": 8785.9111917431, + "269": 7172.6032334813, + "270": 8275.1041747348, + "271": 13432.8802607963, + "272": 14815.5216268099, + "273": 12133.5951547609, + "274": 12756.1708014315, + "275": 17264.9517775772, + "276": 18197.3359102754, + "277": 15064.4965600676, + "278": 15322.7807088713, + "279": 19499.2068146089, + "280": 20148.9202813954, + "281": 16765.84193893, + "282": 16807.637033038, + "283": 20794.2890989143, + "284": 21278.8988353335, + "285": 17751.556990878, + "286": 17667.6106014847, + "287": 21544.5092283413, + "288": 21933.3987232411, + "289": 18322.5365372575, + "290": 18165.7342881789, + "291": 21979.0700684173, + "292": 22312.5092500351, + "293": 18653.2714428206, + "294": 18454.2668507389, + "295": 22230.7851764048, + "296": 22532.1050014973, + "297": 18844.8462817799, + "298": 18621.3963341384, + "299": 22376.5885707374, + "300": 22659.3035689046, + "301": 18955.8140350459, + "302": 18718.2043620728, + "303": 22461.0436841254, + "304": 22732.9820268587, + "305": 19020.090961948, + "306": 18774.2794137773, + "307": 22509.9634376361, + "308": 22775.6595137658, + "309": 19057.3227089907, + "310": 18806.7603091761, + "311": 22538.2997003579, + "312": 22800.3800079281, + "313": 19078.8888145002, + "314": 18825.5745328646, + "315": 22554.7131883119, + "316": 22814.6990992325, + "317": 19091.3807587084, + "318": 18836.4724779076, + "319": 22564.2205319392, + "320": 22822.9932851998, + "321": 19098.6165885633, + "322": 18842.7850001848, + "323": 22569.7275626874, + "324": 22827.7976068845, + "325": 19102.8078683847, + "326": 18846.4414636137, + "327": 22572.9174534551, + "328": 22830.5804606741, + "329": 19105.2356239971, + "330": 18848.5594323462, + "331": 22574.7651647854, + "332": 22832.1924000325, + "333": 19106.6418763985, + "334": 18849.7862438923, + "335": 22575.8354325182, + "336": 22833.1260992822, + "337": 19107.4564335995, + "338": 18850.4968618284, + "339": 22576.455374065, + "340": 22833.6669349435, + "341": 19107.9282574578, + "342": 18850.9084799394, + "343": 22576.8144688125, + "344": 22833.9802084227, + "345": 19108.2015565619, + "346": 18851.1469054852, + "347": 22577.0224707418, + "348": 22834.1616688548, + "349": 19108.3598622494, + "350": 18851.2850110238, + "351": 22577.1429537142, + "352": 22834.2667779387, + "353": 19108.4515591863, + "354": 18851.3650072328, + "355": 22577.2127422335, + "356": 22834.3276612916, + "357": 19108.5046736914, + "358": 18851.4113442118, + "359": 22577.2531665135, + "360": 22834.3629273459, + "361": 19108.5354397207, + "362": 18851.438184429, + "363": 22577.2765818608, + "364": 22834.3833548441, + "365": 19108.5532606259, + "366": 18851.4537313481, + "367": 22577.2901449593, + "368": 22834.3951872618, + "369": 19108.5635832014, + "370": 18851.4627367406, + "371": 22577.2980012442, + "372": 22834.4020410677, + "373": 19108.5695624468, + "374": 18851.4679530214, + "375": 22577.3025519162, + "376": 22834.4060110641, + "377": 19108.5730258631, + "378": 18851.4709744982, + "379": 22577.3051878461, + "380": 22834.4083106436, + "381": 19108.5750320112, + "382": 18851.4727246575, + "383": 22577.3067146812, + "384": 22834.4096426513, + "385": 19108.5761940518, + "386": 18851.4737384192, + "387": 22577.3075990848, + "388": 22834.410414203, + "389": 19108.5768671519, + "390": 18851.4743256302, + "391": 22577.3081113664, + "392": 22834.4108611164, + "393": 19108.5772570381, + "394": 18851.4746657661, + "395": 22577.3084081002, + "396": 22834.4111199864, + "397": 19108.5774828758, + "398": 18851.4748627864 + } +} diff --git a/tests/cases/results/result_steadyFlow_RC_R.json b/tests/cases/results/result_steadyFlow_RC_R.json index e74c0035c..286738b19 100644 --- a/tests/cases/results/result_steadyFlow_RC_R.json +++ b/tests/cases/results/result_steadyFlow_RC_R.json @@ -1 +1,620 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0"},"time":{"0":0.0,"1":0.01,"2":0.02,"3":0.03,"4":0.04,"5":0.05,"6":0.06,"7":0.07,"8":0.08,"9":0.09,"10":0.1,"11":0.11,"12":0.12,"13":0.13,"14":0.14,"15":0.15,"16":0.16,"17":0.17,"18":0.18,"19":0.19,"20":0.2,"21":0.21,"22":0.22,"23":0.23,"24":0.24,"25":0.25,"26":0.26,"27":0.27,"28":0.28,"29":0.29,"30":0.3,"31":0.31,"32":0.32,"33":0.33,"34":0.34,"35":0.35,"36":0.36,"37":0.37,"38":0.38,"39":0.39,"40":0.4,"41":0.41,"42":0.42,"43":0.43,"44":0.44,"45":0.45,"46":0.46,"47":0.47,"48":0.48,"49":0.49,"50":0.5,"51":0.51,"52":0.52,"53":0.53,"54":0.54,"55":0.55,"56":0.56,"57":0.57,"58":0.58,"59":0.59,"60":0.6,"61":0.61,"62":0.62,"63":0.63,"64":0.64,"65":0.65,"66":0.66,"67":0.67,"68":0.68,"69":0.69,"70":0.7,"71":0.71,"72":0.72,"73":0.73,"74":0.74,"75":0.75,"76":0.76,"77":0.77,"78":0.78,"79":0.79,"80":0.8,"81":0.81,"82":0.82,"83":0.83,"84":0.84,"85":0.85,"86":0.86,"87":0.87,"88":0.88,"89":0.89,"90":0.9,"91":0.91,"92":0.92,"93":0.93,"94":0.94,"95":0.95,"96":0.96,"97":0.97,"98":0.98,"99":0.99,"100":1.0},"flow_in":{"0":5.0,"1":5.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":5.0,"11":5.0,"12":5.0,"13":5.0,"14":5.0,"15":5.0,"16":5.0,"17":5.0,"18":5.0,"19":5.0,"20":5.0,"21":5.0,"22":5.0,"23":5.0,"24":5.0,"25":5.0,"26":5.0,"27":5.0,"28":5.0,"29":5.0,"30":5.0,"31":5.0,"32":5.0,"33":5.0,"34":5.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":5.0,"40":5.0,"41":5.0,"42":5.0,"43":5.0,"44":5.0,"45":5.0,"46":5.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":5.0,"55":5.0,"56":5.0,"57":5.0,"58":5.0,"59":5.0,"60":5.0,"61":5.0,"62":5.0,"63":5.0,"64":5.0,"65":5.0,"66":5.0,"67":5.0,"68":5.0,"69":5.0,"70":5.0,"71":5.0,"72":5.0,"73":5.0,"74":5.0,"75":5.0,"76":5.0,"77":5.0,"78":5.0,"79":5.0,"80":5.0,"81":5.0,"82":5.0,"83":5.0,"84":5.0,"85":5.0,"86":5.0,"87":5.0,"88":5.0,"89":5.0,"90":5.0,"91":5.0,"92":5.0,"93":5.0,"94":5.0,"95":5.0,"96":5.0,"97":5.0,"98":5.0,"99":5.0,"100":5.0},"flow_out":{"0":5.0,"1":5.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":5.0,"11":5.0,"12":5.0,"13":5.0,"14":5.0,"15":5.0,"16":5.0,"17":5.0,"18":5.0,"19":5.0,"20":5.0,"21":5.0,"22":5.0,"23":5.0,"24":5.0,"25":5.0,"26":5.0,"27":5.0,"28":5.0,"29":5.0,"30":5.0,"31":5.0,"32":5.0,"33":5.0,"34":5.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":5.0,"40":5.0,"41":5.0,"42":5.0,"43":5.0,"44":5.0,"45":5.0,"46":5.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":5.0,"55":5.0,"56":5.0,"57":5.0,"58":5.0,"59":5.0,"60":5.0,"61":5.0,"62":5.0,"63":5.0,"64":5.0,"65":5.0,"66":5.0,"67":5.0,"68":5.0,"69":5.0,"70":5.0,"71":5.0,"72":5.0,"73":5.0,"74":5.0,"75":5.0,"76":5.0,"77":5.0,"78":5.0,"79":5.0,"80":5.0,"81":5.0,"82":5.0,"83":5.0,"84":5.0,"85":5.0,"86":5.0,"87":5.0,"88":5.0,"89":5.0,"90":5.0,"91":5.0,"92":5.0,"93":5.0,"94":5.0,"95":5.0,"96":5.0,"97":5.0,"98":5.0,"99":5.0,"100":5.0},"pressure_in":{"0":1100.0000000036,"1":1100.0000000036,"2":1100.0000000036,"3":1100.0000000036,"4":1100.0000000036,"5":1100.0000000036,"6":1100.0000000036,"7":1100.0000000036,"8":1100.0000000036,"9":1100.0000000036,"10":1100.0000000036,"11":1100.0000000036,"12":1100.0000000036,"13":1100.0000000036,"14":1100.0000000036,"15":1100.0000000036,"16":1100.0000000036,"17":1100.0000000036,"18":1100.0000000036,"19":1100.0000000036,"20":1100.0000000036,"21":1100.0000000036,"22":1100.0000000036,"23":1100.0000000036,"24":1100.0000000036,"25":1100.0000000036,"26":1100.0000000036,"27":1100.0000000036,"28":1100.0000000036,"29":1100.0000000036,"30":1100.0000000036,"31":1100.0000000036,"32":1100.0000000036,"33":1100.0000000036,"34":1100.0000000036,"35":1100.0000000036,"36":1100.0000000036,"37":1100.0000000036,"38":1100.0000000036,"39":1100.0000000036,"40":1100.0000000036,"41":1100.0000000036,"42":1100.0000000036,"43":1100.0000000036,"44":1100.0000000036,"45":1100.0000000036,"46":1100.0000000036,"47":1100.0000000036,"48":1100.0000000036,"49":1100.0000000036,"50":1100.0000000036,"51":1100.0000000036,"52":1100.0000000036,"53":1100.0000000036,"54":1100.0000000036,"55":1100.0000000036,"56":1100.0000000036,"57":1100.0000000036,"58":1100.0000000036,"59":1100.0000000036,"60":1100.0000000036,"61":1100.0000000036,"62":1100.0000000036,"63":1100.0000000036,"64":1100.0000000036,"65":1100.0000000036,"66":1100.0000000036,"67":1100.0000000036,"68":1100.0000000036,"69":1100.0000000036,"70":1100.0000000036,"71":1100.0000000036,"72":1100.0000000036,"73":1100.0000000036,"74":1100.0000000036,"75":1100.0000000036,"76":1100.0000000036,"77":1100.0000000036,"78":1100.0000000036,"79":1100.0000000036,"80":1100.0000000036,"81":1100.0000000036,"82":1100.0000000036,"83":1100.0000000036,"84":1100.0000000036,"85":1100.0000000036,"86":1100.0000000036,"87":1100.0000000036,"88":1100.0000000036,"89":1100.0000000036,"90":1100.0000000036,"91":1100.0000000036,"92":1100.0000000036,"93":1100.0000000036,"94":1100.0000000036,"95":1100.0000000036,"96":1100.0000000036,"97":1100.0000000036,"98":1100.0000000036,"99":1100.0000000036,"100":1100.0000000036},"pressure_out":{"0":600.0,"1":600.0,"2":600.0,"3":600.0,"4":600.0,"5":600.0,"6":600.0,"7":600.0,"8":600.0,"9":600.0,"10":600.0,"11":600.0,"12":600.0,"13":600.0,"14":600.0,"15":600.0,"16":600.0,"17":600.0,"18":600.0,"19":600.0,"20":600.0,"21":600.0,"22":600.0,"23":600.0,"24":600.0,"25":600.0,"26":600.0,"27":600.0,"28":600.0,"29":600.0,"30":600.0,"31":600.0,"32":600.0,"33":600.0,"34":600.0,"35":600.0,"36":600.0,"37":600.0,"38":600.0,"39":600.0,"40":600.0,"41":600.0,"42":600.0,"43":600.0,"44":600.0,"45":600.0,"46":600.0,"47":600.0,"48":600.0,"49":600.0,"50":600.0,"51":600.0,"52":600.0,"53":600.0,"54":600.0,"55":600.0,"56":600.0,"57":600.0,"58":600.0,"59":600.0,"60":600.0,"61":600.0,"62":600.0,"63":600.0,"64":600.0,"65":600.0,"66":600.0,"67":600.0,"68":600.0,"69":600.0,"70":600.0,"71":600.0,"72":600.0,"73":600.0,"74":600.0,"75":600.0,"76":600.0,"77":600.0,"78":600.0,"79":600.0,"80":600.0,"81":600.0,"82":600.0,"83":600.0,"84":600.0,"85":600.0,"86":600.0,"87":600.0,"88":600.0,"89":600.0,"90":600.0,"91":600.0,"92":600.0,"93":600.0,"94":600.0,"95":600.0,"96":600.0,"97":600.0,"98":600.0,"99":600.0,"100":600.0}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.01, + "2": 0.02, + "3": 0.03, + "4": 0.04, + "5": 0.05, + "6": 0.06, + "7": 0.07, + "8": 0.08, + "9": 0.09, + "10": 0.1, + "11": 0.11, + "12": 0.12, + "13": 0.13, + "14": 0.14, + "15": 0.15, + "16": 0.16, + "17": 0.17, + "18": 0.18, + "19": 0.19, + "20": 0.2, + "21": 0.21, + "22": 0.22, + "23": 0.23, + "24": 0.24, + "25": 0.25, + "26": 0.26, + "27": 0.27, + "28": 0.28, + "29": 0.29, + "30": 0.3, + "31": 0.31, + "32": 0.32, + "33": 0.33, + "34": 0.34, + "35": 0.35, + "36": 0.36, + "37": 0.37, + "38": 0.38, + "39": 0.39, + "40": 0.4, + "41": 0.41, + "42": 0.42, + "43": 0.43, + "44": 0.44, + "45": 0.45, + "46": 0.46, + "47": 0.47, + "48": 0.48, + "49": 0.49, + "50": 0.5, + "51": 0.51, + "52": 0.52, + "53": 0.53, + "54": 0.54, + "55": 0.55, + "56": 0.56, + "57": 0.57, + "58": 0.58, + "59": 0.59, + "60": 0.6, + "61": 0.61, + "62": 0.62, + "63": 0.63, + "64": 0.64, + "65": 0.65, + "66": 0.66, + "67": 0.67, + "68": 0.68, + "69": 0.69, + "70": 0.7, + "71": 0.71, + "72": 0.72, + "73": 0.73, + "74": 0.74, + "75": 0.75, + "76": 0.76, + "77": 0.77, + "78": 0.78, + "79": 0.79, + "80": 0.8, + "81": 0.81, + "82": 0.82, + "83": 0.83, + "84": 0.84, + "85": 0.85, + "86": 0.86, + "87": 0.87, + "88": 0.88, + "89": 0.89, + "90": 0.9, + "91": 0.91, + "92": 0.92, + "93": 0.93, + "94": 0.94, + "95": 0.95, + "96": 0.96, + "97": 0.97, + "98": 0.98, + "99": 0.99, + "100": 1.0 + }, + "flow_in": { + "0": 5.0, + "1": 5.0, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 5.0, + "6": 5.0, + "7": 5.0, + "8": 5.0, + "9": 5.0, + "10": 5.0, + "11": 5.0, + "12": 5.0, + "13": 5.0, + "14": 5.0, + "15": 5.0, + "16": 5.0, + "17": 5.0, + "18": 5.0, + "19": 5.0, + "20": 5.0, + "21": 5.0, + "22": 5.0, + "23": 5.0, + "24": 5.0, + "25": 5.0, + "26": 5.0, + "27": 5.0, + "28": 5.0, + "29": 5.0, + "30": 5.0, + "31": 5.0, + "32": 5.0, + "33": 5.0, + "34": 5.0, + "35": 5.0, + "36": 5.0, + "37": 5.0, + "38": 5.0, + "39": 5.0, + "40": 5.0, + "41": 5.0, + "42": 5.0, + "43": 5.0, + "44": 5.0, + "45": 5.0, + "46": 5.0, + "47": 5.0, + "48": 5.0, + "49": 5.0, + "50": 5.0, + "51": 5.0, + "52": 5.0, + "53": 5.0, + "54": 5.0, + "55": 5.0, + "56": 5.0, + "57": 5.0, + "58": 5.0, + "59": 5.0, + "60": 5.0, + "61": 5.0, + "62": 5.0, + "63": 5.0, + "64": 5.0, + "65": 5.0, + "66": 5.0, + "67": 5.0, + "68": 5.0, + "69": 5.0, + "70": 5.0, + "71": 5.0, + "72": 5.0, + "73": 5.0, + "74": 5.0, + "75": 5.0, + "76": 5.0, + "77": 5.0, + "78": 5.0, + "79": 5.0, + "80": 5.0, + "81": 5.0, + "82": 5.0, + "83": 5.0, + "84": 5.0, + "85": 5.0, + "86": 5.0, + "87": 5.0, + "88": 5.0, + "89": 5.0, + "90": 5.0, + "91": 5.0, + "92": 5.0, + "93": 5.0, + "94": 5.0, + "95": 5.0, + "96": 5.0, + "97": 5.0, + "98": 5.0, + "99": 5.0, + "100": 5.0 + }, + "flow_out": { + "0": 5.0, + "1": 5.0, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 5.0, + "6": 5.0, + "7": 5.0, + "8": 5.0, + "9": 5.0, + "10": 5.0, + "11": 5.0, + "12": 5.0, + "13": 5.0, + "14": 5.0, + "15": 5.0, + "16": 5.0, + "17": 5.0, + "18": 5.0, + "19": 5.0, + "20": 5.0, + "21": 5.0, + "22": 5.0, + "23": 5.0, + "24": 5.0, + "25": 5.0, + "26": 5.0, + "27": 5.0, + "28": 5.0, + "29": 5.0, + "30": 5.0, + "31": 5.0, + "32": 5.0, + "33": 5.0, + "34": 5.0, + "35": 5.0, + "36": 5.0, + "37": 5.0, + "38": 5.0, + "39": 5.0, + "40": 5.0, + "41": 5.0, + "42": 5.0, + "43": 5.0, + "44": 5.0, + "45": 5.0, + "46": 5.0, + "47": 5.0, + "48": 5.0, + "49": 5.0, + "50": 5.0, + "51": 5.0, + "52": 5.0, + "53": 5.0, + "54": 5.0, + "55": 5.0, + "56": 5.0, + "57": 5.0, + "58": 5.0, + "59": 5.0, + "60": 5.0, + "61": 5.0, + "62": 5.0, + "63": 5.0, + "64": 5.0, + "65": 5.0, + "66": 5.0, + "67": 5.0, + "68": 5.0, + "69": 5.0, + "70": 5.0, + "71": 5.0, + "72": 5.0, + "73": 5.0, + "74": 5.0, + "75": 5.0, + "76": 5.0, + "77": 5.0, + "78": 5.0, + "79": 5.0, + "80": 5.0, + "81": 5.0, + "82": 5.0, + "83": 5.0, + "84": 5.0, + "85": 5.0, + "86": 5.0, + "87": 5.0, + "88": 5.0, + "89": 5.0, + "90": 5.0, + "91": 5.0, + "92": 5.0, + "93": 5.0, + "94": 5.0, + "95": 5.0, + "96": 5.0, + "97": 5.0, + "98": 5.0, + "99": 5.0, + "100": 5.0 + }, + "pressure_in": { + "0": 1100.0000000036, + "1": 1100.0000000036, + "2": 1100.0000000036, + "3": 1100.0000000036, + "4": 1100.0000000036, + "5": 1100.0000000036, + "6": 1100.0000000036, + "7": 1100.0000000036, + "8": 1100.0000000036, + "9": 1100.0000000036, + "10": 1100.0000000036, + "11": 1100.0000000036, + "12": 1100.0000000036, + "13": 1100.0000000036, + "14": 1100.0000000036, + "15": 1100.0000000036, + "16": 1100.0000000036, + "17": 1100.0000000036, + "18": 1100.0000000036, + "19": 1100.0000000036, + "20": 1100.0000000036, + "21": 1100.0000000036, + "22": 1100.0000000036, + "23": 1100.0000000036, + "24": 1100.0000000036, + "25": 1100.0000000036, + "26": 1100.0000000036, + "27": 1100.0000000036, + "28": 1100.0000000036, + "29": 1100.0000000036, + "30": 1100.0000000036, + "31": 1100.0000000036, + "32": 1100.0000000036, + "33": 1100.0000000036, + "34": 1100.0000000036, + "35": 1100.0000000036, + "36": 1100.0000000036, + "37": 1100.0000000036, + "38": 1100.0000000036, + "39": 1100.0000000036, + "40": 1100.0000000036, + "41": 1100.0000000036, + "42": 1100.0000000036, + "43": 1100.0000000036, + "44": 1100.0000000036, + "45": 1100.0000000036, + "46": 1100.0000000036, + "47": 1100.0000000036, + "48": 1100.0000000036, + "49": 1100.0000000036, + "50": 1100.0000000036, + "51": 1100.0000000036, + "52": 1100.0000000036, + "53": 1100.0000000036, + "54": 1100.0000000036, + "55": 1100.0000000036, + "56": 1100.0000000036, + "57": 1100.0000000036, + "58": 1100.0000000036, + "59": 1100.0000000036, + "60": 1100.0000000036, + "61": 1100.0000000036, + "62": 1100.0000000036, + "63": 1100.0000000036, + "64": 1100.0000000036, + "65": 1100.0000000036, + "66": 1100.0000000036, + "67": 1100.0000000036, + "68": 1100.0000000036, + "69": 1100.0000000036, + "70": 1100.0000000036, + "71": 1100.0000000036, + "72": 1100.0000000036, + "73": 1100.0000000036, + "74": 1100.0000000036, + "75": 1100.0000000036, + "76": 1100.0000000036, + "77": 1100.0000000036, + "78": 1100.0000000036, + "79": 1100.0000000036, + "80": 1100.0000000036, + "81": 1100.0000000036, + "82": 1100.0000000036, + "83": 1100.0000000036, + "84": 1100.0000000036, + "85": 1100.0000000036, + "86": 1100.0000000036, + "87": 1100.0000000036, + "88": 1100.0000000036, + "89": 1100.0000000036, + "90": 1100.0000000036, + "91": 1100.0000000036, + "92": 1100.0000000036, + "93": 1100.0000000036, + "94": 1100.0000000036, + "95": 1100.0000000036, + "96": 1100.0000000036, + "97": 1100.0000000036, + "98": 1100.0000000036, + "99": 1100.0000000036, + "100": 1100.0000000036 + }, + "pressure_out": { + "0": 600.0, + "1": 600.0, + "2": 600.0, + "3": 600.0, + "4": 600.0, + "5": 600.0, + "6": 600.0, + "7": 600.0, + "8": 600.0, + "9": 600.0, + "10": 600.0, + "11": 600.0, + "12": 600.0, + "13": 600.0, + "14": 600.0, + "15": 600.0, + "16": 600.0, + "17": 600.0, + "18": 600.0, + "19": 600.0, + "20": 600.0, + "21": 600.0, + "22": 600.0, + "23": 600.0, + "24": 600.0, + "25": 600.0, + "26": 600.0, + "27": 600.0, + "28": 600.0, + "29": 600.0, + "30": 600.0, + "31": 600.0, + "32": 600.0, + "33": 600.0, + "34": 600.0, + "35": 600.0, + "36": 600.0, + "37": 600.0, + "38": 600.0, + "39": 600.0, + "40": 600.0, + "41": 600.0, + "42": 600.0, + "43": 600.0, + "44": 600.0, + "45": 600.0, + "46": 600.0, + "47": 600.0, + "48": 600.0, + "49": 600.0, + "50": 600.0, + "51": 600.0, + "52": 600.0, + "53": 600.0, + "54": 600.0, + "55": 600.0, + "56": 600.0, + "57": 600.0, + "58": 600.0, + "59": 600.0, + "60": 600.0, + "61": 600.0, + "62": 600.0, + "63": 600.0, + "64": 600.0, + "65": 600.0, + "66": 600.0, + "67": 600.0, + "68": 600.0, + "69": 600.0, + "70": 600.0, + "71": 600.0, + "72": 600.0, + "73": 600.0, + "74": 600.0, + "75": 600.0, + "76": 600.0, + "77": 600.0, + "78": 600.0, + "79": 600.0, + "80": 600.0, + "81": 600.0, + "82": 600.0, + "83": 600.0, + "84": 600.0, + "85": 600.0, + "86": 600.0, + "87": 600.0, + "88": 600.0, + "89": 600.0, + "90": 600.0, + "91": 600.0, + "92": 600.0, + "93": 600.0, + "94": 600.0, + "95": 600.0, + "96": 600.0, + "97": 600.0, + "98": 600.0, + "99": 600.0, + "100": 600.0 + } +} diff --git a/tests/cases/results/result_steadyFlow_RLC_R.json b/tests/cases/results/result_steadyFlow_RLC_R.json index cc3f47fc0..258dff08e 100644 --- a/tests/cases/results/result_steadyFlow_RLC_R.json +++ b/tests/cases/results/result_steadyFlow_RLC_R.json @@ -1 +1,620 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0"},"time":{"0":0.0,"1":0.01,"2":0.02,"3":0.03,"4":0.04,"5":0.05,"6":0.06,"7":0.07,"8":0.08,"9":0.09,"10":0.1,"11":0.11,"12":0.12,"13":0.13,"14":0.14,"15":0.15,"16":0.16,"17":0.17,"18":0.18,"19":0.19,"20":0.2,"21":0.21,"22":0.22,"23":0.23,"24":0.24,"25":0.25,"26":0.26,"27":0.27,"28":0.28,"29":0.29,"30":0.3,"31":0.31,"32":0.32,"33":0.33,"34":0.34,"35":0.35,"36":0.36,"37":0.37,"38":0.38,"39":0.39,"40":0.4,"41":0.41,"42":0.42,"43":0.43,"44":0.44,"45":0.45,"46":0.46,"47":0.47,"48":0.48,"49":0.49,"50":0.5,"51":0.51,"52":0.52,"53":0.53,"54":0.54,"55":0.55,"56":0.56,"57":0.57,"58":0.58,"59":0.59,"60":0.6,"61":0.61,"62":0.62,"63":0.63,"64":0.64,"65":0.65,"66":0.66,"67":0.67,"68":0.68,"69":0.69,"70":0.7,"71":0.71,"72":0.72,"73":0.73,"74":0.74,"75":0.75,"76":0.76,"77":0.77,"78":0.78,"79":0.79,"80":0.8,"81":0.81,"82":0.82,"83":0.83,"84":0.84,"85":0.85,"86":0.86,"87":0.87,"88":0.88,"89":0.89,"90":0.9,"91":0.91,"92":0.92,"93":0.93,"94":0.94,"95":0.95,"96":0.96,"97":0.97,"98":0.98,"99":0.99,"100":1.0},"flow_in":{"0":5.0,"1":5.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":5.0,"11":5.0,"12":5.0,"13":5.0,"14":5.0,"15":5.0,"16":5.0,"17":5.0,"18":5.0,"19":5.0,"20":5.0,"21":5.0,"22":5.0,"23":5.0,"24":5.0,"25":5.0,"26":5.0,"27":5.0,"28":5.0,"29":5.0,"30":5.0,"31":5.0,"32":5.0,"33":5.0,"34":5.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":5.0,"40":5.0,"41":5.0,"42":5.0,"43":5.0,"44":5.0,"45":5.0,"46":5.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":5.0,"55":5.0,"56":5.0,"57":5.0,"58":5.0,"59":5.0,"60":5.0,"61":5.0,"62":5.0,"63":5.0,"64":5.0,"65":5.0,"66":5.0,"67":5.0,"68":5.0,"69":5.0,"70":5.0,"71":5.0,"72":5.0,"73":5.0,"74":5.0,"75":5.0,"76":5.0,"77":5.0,"78":5.0,"79":5.0,"80":5.0,"81":5.0,"82":5.0,"83":5.0,"84":5.0,"85":5.0,"86":5.0,"87":5.0,"88":5.0,"89":5.0,"90":5.0,"91":5.0,"92":5.0,"93":5.0,"94":5.0,"95":5.0,"96":5.0,"97":5.0,"98":5.0,"99":5.0,"100":5.0},"flow_out":{"0":5.0,"1":5.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":5.0,"11":5.0,"12":5.0,"13":5.0,"14":5.0,"15":5.0,"16":5.0,"17":5.0,"18":5.0,"19":5.0,"20":5.0,"21":5.0,"22":5.0,"23":5.0,"24":5.0,"25":5.0,"26":5.0,"27":5.0,"28":5.0,"29":5.0,"30":5.0,"31":5.0,"32":5.0,"33":5.0,"34":5.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":5.0,"40":5.0,"41":5.0,"42":5.0,"43":5.0,"44":5.0,"45":5.0,"46":5.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":5.0,"55":5.0,"56":5.0,"57":5.0,"58":5.0,"59":5.0,"60":5.0,"61":5.0,"62":5.0,"63":5.0,"64":5.0,"65":5.0,"66":5.0,"67":5.0,"68":5.0,"69":5.0,"70":5.0,"71":5.0,"72":5.0,"73":5.0,"74":5.0,"75":5.0,"76":5.0,"77":5.0,"78":5.0,"79":5.0,"80":5.0,"81":5.0,"82":5.0,"83":5.0,"84":5.0,"85":5.0,"86":5.0,"87":5.0,"88":5.0,"89":5.0,"90":5.0,"91":5.0,"92":5.0,"93":5.0,"94":5.0,"95":5.0,"96":5.0,"97":5.0,"98":5.0,"99":5.0,"100":5.0},"pressure_in":{"0":1099.9999999993,"1":1099.9999999993,"2":1099.9999999993,"3":1099.9999999993,"4":1099.9999999993,"5":1099.9999999993,"6":1099.9999999993,"7":1099.9999999993,"8":1099.9999999993,"9":1099.9999999993,"10":1099.9999999993,"11":1099.9999999993,"12":1099.9999999993,"13":1099.9999999993,"14":1099.9999999993,"15":1099.9999999993,"16":1099.9999999993,"17":1099.9999999993,"18":1099.9999999993,"19":1099.9999999993,"20":1099.9999999993,"21":1099.9999999993,"22":1099.9999999993,"23":1099.9999999993,"24":1099.9999999993,"25":1099.9999999993,"26":1099.9999999993,"27":1099.9999999993,"28":1099.9999999993,"29":1099.9999999993,"30":1099.9999999993,"31":1099.9999999993,"32":1099.9999999993,"33":1099.9999999993,"34":1099.9999999993,"35":1099.9999999993,"36":1099.9999999993,"37":1099.9999999993,"38":1099.9999999993,"39":1099.9999999993,"40":1099.9999999993,"41":1099.9999999993,"42":1099.9999999993,"43":1099.9999999993,"44":1099.9999999993,"45":1099.9999999993,"46":1099.9999999993,"47":1099.9999999993,"48":1099.9999999993,"49":1099.9999999993,"50":1099.9999999993,"51":1099.9999999993,"52":1099.9999999993,"53":1099.9999999993,"54":1099.9999999993,"55":1099.9999999993,"56":1099.9999999993,"57":1099.9999999993,"58":1099.9999999993,"59":1099.9999999993,"60":1099.9999999993,"61":1099.9999999993,"62":1099.9999999993,"63":1099.9999999993,"64":1099.9999999993,"65":1099.9999999993,"66":1099.9999999993,"67":1099.9999999993,"68":1099.9999999993,"69":1099.9999999993,"70":1099.9999999993,"71":1099.9999999993,"72":1099.9999999993,"73":1099.9999999993,"74":1099.9999999993,"75":1099.9999999993,"76":1099.9999999993,"77":1099.9999999993,"78":1099.9999999993,"79":1099.9999999993,"80":1099.9999999993,"81":1099.9999999993,"82":1099.9999999993,"83":1099.9999999993,"84":1099.9999999993,"85":1099.9999999993,"86":1099.9999999993,"87":1099.9999999993,"88":1099.9999999993,"89":1099.9999999993,"90":1099.9999999993,"91":1099.9999999993,"92":1099.9999999993,"93":1099.9999999993,"94":1099.9999999993,"95":1099.9999999993,"96":1099.9999999993,"97":1099.9999999993,"98":1099.9999999993,"99":1099.9999999993,"100":1099.9999999993},"pressure_out":{"0":599.9999999993,"1":599.9999999993,"2":599.9999999993,"3":599.9999999993,"4":599.9999999993,"5":599.9999999993,"6":599.9999999993,"7":599.9999999993,"8":599.9999999993,"9":599.9999999993,"10":599.9999999993,"11":599.9999999993,"12":599.9999999993,"13":599.9999999993,"14":599.9999999993,"15":599.9999999993,"16":599.9999999993,"17":599.9999999993,"18":599.9999999993,"19":599.9999999993,"20":599.9999999993,"21":599.9999999993,"22":599.9999999993,"23":599.9999999993,"24":599.9999999993,"25":599.9999999993,"26":599.9999999993,"27":599.9999999993,"28":599.9999999993,"29":599.9999999993,"30":599.9999999993,"31":599.9999999993,"32":599.9999999993,"33":599.9999999993,"34":599.9999999993,"35":599.9999999993,"36":599.9999999993,"37":599.9999999993,"38":599.9999999993,"39":599.9999999993,"40":599.9999999993,"41":599.9999999993,"42":599.9999999993,"43":599.9999999993,"44":599.9999999993,"45":599.9999999993,"46":599.9999999993,"47":599.9999999993,"48":599.9999999993,"49":599.9999999993,"50":599.9999999993,"51":599.9999999993,"52":599.9999999993,"53":599.9999999993,"54":599.9999999993,"55":599.9999999993,"56":599.9999999993,"57":599.9999999993,"58":599.9999999993,"59":599.9999999993,"60":599.9999999993,"61":599.9999999993,"62":599.9999999993,"63":599.9999999993,"64":599.9999999993,"65":599.9999999993,"66":599.9999999993,"67":599.9999999993,"68":599.9999999993,"69":599.9999999993,"70":599.9999999993,"71":599.9999999993,"72":599.9999999993,"73":599.9999999993,"74":599.9999999993,"75":599.9999999993,"76":599.9999999993,"77":599.9999999993,"78":599.9999999993,"79":599.9999999993,"80":599.9999999993,"81":599.9999999993,"82":599.9999999993,"83":599.9999999993,"84":599.9999999993,"85":599.9999999993,"86":599.9999999993,"87":599.9999999993,"88":599.9999999993,"89":599.9999999993,"90":599.9999999993,"91":599.9999999993,"92":599.9999999993,"93":599.9999999993,"94":599.9999999993,"95":599.9999999993,"96":599.9999999993,"97":599.9999999993,"98":599.9999999993,"99":599.9999999993,"100":599.9999999993}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.01, + "2": 0.02, + "3": 0.03, + "4": 0.04, + "5": 0.05, + "6": 0.06, + "7": 0.07, + "8": 0.08, + "9": 0.09, + "10": 0.1, + "11": 0.11, + "12": 0.12, + "13": 0.13, + "14": 0.14, + "15": 0.15, + "16": 0.16, + "17": 0.17, + "18": 0.18, + "19": 0.19, + "20": 0.2, + "21": 0.21, + "22": 0.22, + "23": 0.23, + "24": 0.24, + "25": 0.25, + "26": 0.26, + "27": 0.27, + "28": 0.28, + "29": 0.29, + "30": 0.3, + "31": 0.31, + "32": 0.32, + "33": 0.33, + "34": 0.34, + "35": 0.35, + "36": 0.36, + "37": 0.37, + "38": 0.38, + "39": 0.39, + "40": 0.4, + "41": 0.41, + "42": 0.42, + "43": 0.43, + "44": 0.44, + "45": 0.45, + "46": 0.46, + "47": 0.47, + "48": 0.48, + "49": 0.49, + "50": 0.5, + "51": 0.51, + "52": 0.52, + "53": 0.53, + "54": 0.54, + "55": 0.55, + "56": 0.56, + "57": 0.57, + "58": 0.58, + "59": 0.59, + "60": 0.6, + "61": 0.61, + "62": 0.62, + "63": 0.63, + "64": 0.64, + "65": 0.65, + "66": 0.66, + "67": 0.67, + "68": 0.68, + "69": 0.69, + "70": 0.7, + "71": 0.71, + "72": 0.72, + "73": 0.73, + "74": 0.74, + "75": 0.75, + "76": 0.76, + "77": 0.77, + "78": 0.78, + "79": 0.79, + "80": 0.8, + "81": 0.81, + "82": 0.82, + "83": 0.83, + "84": 0.84, + "85": 0.85, + "86": 0.86, + "87": 0.87, + "88": 0.88, + "89": 0.89, + "90": 0.9, + "91": 0.91, + "92": 0.92, + "93": 0.93, + "94": 0.94, + "95": 0.95, + "96": 0.96, + "97": 0.97, + "98": 0.98, + "99": 0.99, + "100": 1.0 + }, + "flow_in": { + "0": 5.0, + "1": 5.0, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 5.0, + "6": 5.0, + "7": 5.0, + "8": 5.0, + "9": 5.0, + "10": 5.0, + "11": 5.0, + "12": 5.0, + "13": 5.0, + "14": 5.0, + "15": 5.0, + "16": 5.0, + "17": 5.0, + "18": 5.0, + "19": 5.0, + "20": 5.0, + "21": 5.0, + "22": 5.0, + "23": 5.0, + "24": 5.0, + "25": 5.0, + "26": 5.0, + "27": 5.0, + "28": 5.0, + "29": 5.0, + "30": 5.0, + "31": 5.0, + "32": 5.0, + "33": 5.0, + "34": 5.0, + "35": 5.0, + "36": 5.0, + "37": 5.0, + "38": 5.0, + "39": 5.0, + "40": 5.0, + "41": 5.0, + "42": 5.0, + "43": 5.0, + "44": 5.0, + "45": 5.0, + "46": 5.0, + "47": 5.0, + "48": 5.0, + "49": 5.0, + "50": 5.0, + "51": 5.0, + "52": 5.0, + "53": 5.0, + "54": 5.0, + "55": 5.0, + "56": 5.0, + "57": 5.0, + "58": 5.0, + "59": 5.0, + "60": 5.0, + "61": 5.0, + "62": 5.0, + "63": 5.0, + "64": 5.0, + "65": 5.0, + "66": 5.0, + "67": 5.0, + "68": 5.0, + "69": 5.0, + "70": 5.0, + "71": 5.0, + "72": 5.0, + "73": 5.0, + "74": 5.0, + "75": 5.0, + "76": 5.0, + "77": 5.0, + "78": 5.0, + "79": 5.0, + "80": 5.0, + "81": 5.0, + "82": 5.0, + "83": 5.0, + "84": 5.0, + "85": 5.0, + "86": 5.0, + "87": 5.0, + "88": 5.0, + "89": 5.0, + "90": 5.0, + "91": 5.0, + "92": 5.0, + "93": 5.0, + "94": 5.0, + "95": 5.0, + "96": 5.0, + "97": 5.0, + "98": 5.0, + "99": 5.0, + "100": 5.0 + }, + "flow_out": { + "0": 5.0, + "1": 5.0, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 5.0, + "6": 5.0, + "7": 5.0, + "8": 5.0, + "9": 5.0, + "10": 5.0, + "11": 5.0, + "12": 5.0, + "13": 5.0, + "14": 5.0, + "15": 5.0, + "16": 5.0, + "17": 5.0, + "18": 5.0, + "19": 5.0, + "20": 5.0, + "21": 5.0, + "22": 5.0, + "23": 5.0, + "24": 5.0, + "25": 5.0, + "26": 5.0, + "27": 5.0, + "28": 5.0, + "29": 5.0, + "30": 5.0, + "31": 5.0, + "32": 5.0, + "33": 5.0, + "34": 5.0, + "35": 5.0, + "36": 5.0, + "37": 5.0, + "38": 5.0, + "39": 5.0, + "40": 5.0, + "41": 5.0, + "42": 5.0, + "43": 5.0, + "44": 5.0, + "45": 5.0, + "46": 5.0, + "47": 5.0, + "48": 5.0, + "49": 5.0, + "50": 5.0, + "51": 5.0, + "52": 5.0, + "53": 5.0, + "54": 5.0, + "55": 5.0, + "56": 5.0, + "57": 5.0, + "58": 5.0, + "59": 5.0, + "60": 5.0, + "61": 5.0, + "62": 5.0, + "63": 5.0, + "64": 5.0, + "65": 5.0, + "66": 5.0, + "67": 5.0, + "68": 5.0, + "69": 5.0, + "70": 5.0, + "71": 5.0, + "72": 5.0, + "73": 5.0, + "74": 5.0, + "75": 5.0, + "76": 5.0, + "77": 5.0, + "78": 5.0, + "79": 5.0, + "80": 5.0, + "81": 5.0, + "82": 5.0, + "83": 5.0, + "84": 5.0, + "85": 5.0, + "86": 5.0, + "87": 5.0, + "88": 5.0, + "89": 5.0, + "90": 5.0, + "91": 5.0, + "92": 5.0, + "93": 5.0, + "94": 5.0, + "95": 5.0, + "96": 5.0, + "97": 5.0, + "98": 5.0, + "99": 5.0, + "100": 5.0 + }, + "pressure_in": { + "0": 1099.9999999993, + "1": 1099.9999999993, + "2": 1099.9999999993, + "3": 1099.9999999993, + "4": 1099.9999999993, + "5": 1099.9999999993, + "6": 1099.9999999993, + "7": 1099.9999999993, + "8": 1099.9999999993, + "9": 1099.9999999993, + "10": 1099.9999999993, + "11": 1099.9999999993, + "12": 1099.9999999993, + "13": 1099.9999999993, + "14": 1099.9999999993, + "15": 1099.9999999993, + "16": 1099.9999999993, + "17": 1099.9999999993, + "18": 1099.9999999993, + "19": 1099.9999999993, + "20": 1099.9999999993, + "21": 1099.9999999993, + "22": 1099.9999999993, + "23": 1099.9999999993, + "24": 1099.9999999993, + "25": 1099.9999999993, + "26": 1099.9999999993, + "27": 1099.9999999993, + "28": 1099.9999999993, + "29": 1099.9999999993, + "30": 1099.9999999993, + "31": 1099.9999999993, + "32": 1099.9999999993, + "33": 1099.9999999993, + "34": 1099.9999999993, + "35": 1099.9999999993, + "36": 1099.9999999993, + "37": 1099.9999999993, + "38": 1099.9999999993, + "39": 1099.9999999993, + "40": 1099.9999999993, + "41": 1099.9999999993, + "42": 1099.9999999993, + "43": 1099.9999999993, + "44": 1099.9999999993, + "45": 1099.9999999993, + "46": 1099.9999999993, + "47": 1099.9999999993, + "48": 1099.9999999993, + "49": 1099.9999999993, + "50": 1099.9999999993, + "51": 1099.9999999993, + "52": 1099.9999999993, + "53": 1099.9999999993, + "54": 1099.9999999993, + "55": 1099.9999999993, + "56": 1099.9999999993, + "57": 1099.9999999993, + "58": 1099.9999999993, + "59": 1099.9999999993, + "60": 1099.9999999993, + "61": 1099.9999999993, + "62": 1099.9999999993, + "63": 1099.9999999993, + "64": 1099.9999999993, + "65": 1099.9999999993, + "66": 1099.9999999993, + "67": 1099.9999999993, + "68": 1099.9999999993, + "69": 1099.9999999993, + "70": 1099.9999999993, + "71": 1099.9999999993, + "72": 1099.9999999993, + "73": 1099.9999999993, + "74": 1099.9999999993, + "75": 1099.9999999993, + "76": 1099.9999999993, + "77": 1099.9999999993, + "78": 1099.9999999993, + "79": 1099.9999999993, + "80": 1099.9999999993, + "81": 1099.9999999993, + "82": 1099.9999999993, + "83": 1099.9999999993, + "84": 1099.9999999993, + "85": 1099.9999999993, + "86": 1099.9999999993, + "87": 1099.9999999993, + "88": 1099.9999999993, + "89": 1099.9999999993, + "90": 1099.9999999993, + "91": 1099.9999999993, + "92": 1099.9999999993, + "93": 1099.9999999993, + "94": 1099.9999999993, + "95": 1099.9999999993, + "96": 1099.9999999993, + "97": 1099.9999999993, + "98": 1099.9999999993, + "99": 1099.9999999993, + "100": 1099.9999999993 + }, + "pressure_out": { + "0": 599.9999999993, + "1": 599.9999999993, + "2": 599.9999999993, + "3": 599.9999999993, + "4": 599.9999999993, + "5": 599.9999999993, + "6": 599.9999999993, + "7": 599.9999999993, + "8": 599.9999999993, + "9": 599.9999999993, + "10": 599.9999999993, + "11": 599.9999999993, + "12": 599.9999999993, + "13": 599.9999999993, + "14": 599.9999999993, + "15": 599.9999999993, + "16": 599.9999999993, + "17": 599.9999999993, + "18": 599.9999999993, + "19": 599.9999999993, + "20": 599.9999999993, + "21": 599.9999999993, + "22": 599.9999999993, + "23": 599.9999999993, + "24": 599.9999999993, + "25": 599.9999999993, + "26": 599.9999999993, + "27": 599.9999999993, + "28": 599.9999999993, + "29": 599.9999999993, + "30": 599.9999999993, + "31": 599.9999999993, + "32": 599.9999999993, + "33": 599.9999999993, + "34": 599.9999999993, + "35": 599.9999999993, + "36": 599.9999999993, + "37": 599.9999999993, + "38": 599.9999999993, + "39": 599.9999999993, + "40": 599.9999999993, + "41": 599.9999999993, + "42": 599.9999999993, + "43": 599.9999999993, + "44": 599.9999999993, + "45": 599.9999999993, + "46": 599.9999999993, + "47": 599.9999999993, + "48": 599.9999999993, + "49": 599.9999999993, + "50": 599.9999999993, + "51": 599.9999999993, + "52": 599.9999999993, + "53": 599.9999999993, + "54": 599.9999999993, + "55": 599.9999999993, + "56": 599.9999999993, + "57": 599.9999999993, + "58": 599.9999999993, + "59": 599.9999999993, + "60": 599.9999999993, + "61": 599.9999999993, + "62": 599.9999999993, + "63": 599.9999999993, + "64": 599.9999999993, + "65": 599.9999999993, + "66": 599.9999999993, + "67": 599.9999999993, + "68": 599.9999999993, + "69": 599.9999999993, + "70": 599.9999999993, + "71": 599.9999999993, + "72": 599.9999999993, + "73": 599.9999999993, + "74": 599.9999999993, + "75": 599.9999999993, + "76": 599.9999999993, + "77": 599.9999999993, + "78": 599.9999999993, + "79": 599.9999999993, + "80": 599.9999999993, + "81": 599.9999999993, + "82": 599.9999999993, + "83": 599.9999999993, + "84": 599.9999999993, + "85": 599.9999999993, + "86": 599.9999999993, + "87": 599.9999999993, + "88": 599.9999999993, + "89": 599.9999999993, + "90": 599.9999999993, + "91": 599.9999999993, + "92": 599.9999999993, + "93": 599.9999999993, + "94": 599.9999999993, + "95": 599.9999999993, + "96": 599.9999999993, + "97": 599.9999999993, + "98": 599.9999999993, + "99": 599.9999999993, + "100": 599.9999999993 + } +} diff --git a/tests/cases/results/result_steadyFlow_RL_R.json b/tests/cases/results/result_steadyFlow_RL_R.json index 11c405bbc..0c454b6d9 100644 --- a/tests/cases/results/result_steadyFlow_RL_R.json +++ b/tests/cases/results/result_steadyFlow_RL_R.json @@ -1 +1,620 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0"},"time":{"0":0.0,"1":0.01,"2":0.02,"3":0.03,"4":0.04,"5":0.05,"6":0.06,"7":0.07,"8":0.08,"9":0.09,"10":0.1,"11":0.11,"12":0.12,"13":0.13,"14":0.14,"15":0.15,"16":0.16,"17":0.17,"18":0.18,"19":0.19,"20":0.2,"21":0.21,"22":0.22,"23":0.23,"24":0.24,"25":0.25,"26":0.26,"27":0.27,"28":0.28,"29":0.29,"30":0.3,"31":0.31,"32":0.32,"33":0.33,"34":0.34,"35":0.35,"36":0.36,"37":0.37,"38":0.38,"39":0.39,"40":0.4,"41":0.41,"42":0.42,"43":0.43,"44":0.44,"45":0.45,"46":0.46,"47":0.47,"48":0.48,"49":0.49,"50":0.5,"51":0.51,"52":0.52,"53":0.53,"54":0.54,"55":0.55,"56":0.56,"57":0.57,"58":0.58,"59":0.59,"60":0.6,"61":0.61,"62":0.62,"63":0.63,"64":0.64,"65":0.65,"66":0.66,"67":0.67,"68":0.68,"69":0.69,"70":0.7,"71":0.71,"72":0.72,"73":0.73,"74":0.74,"75":0.75,"76":0.76,"77":0.77,"78":0.78,"79":0.79,"80":0.8,"81":0.81,"82":0.82,"83":0.83,"84":0.84,"85":0.85,"86":0.86,"87":0.87,"88":0.88,"89":0.89,"90":0.9,"91":0.91,"92":0.92,"93":0.93,"94":0.94,"95":0.95,"96":0.96,"97":0.97,"98":0.98,"99":0.99,"100":1.0},"flow_in":{"0":5.0,"1":5.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":5.0,"11":5.0,"12":5.0,"13":5.0,"14":5.0,"15":5.0,"16":5.0,"17":5.0,"18":5.0,"19":5.0,"20":5.0,"21":5.0,"22":5.0,"23":5.0,"24":5.0,"25":5.0,"26":5.0,"27":5.0,"28":5.0,"29":5.0,"30":5.0,"31":5.0,"32":5.0,"33":5.0,"34":5.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":5.0,"40":5.0,"41":5.0,"42":5.0,"43":5.0,"44":5.0,"45":5.0,"46":5.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":5.0,"55":5.0,"56":5.0,"57":5.0,"58":5.0,"59":5.0,"60":5.0,"61":5.0,"62":5.0,"63":5.0,"64":5.0,"65":5.0,"66":5.0,"67":5.0,"68":5.0,"69":5.0,"70":5.0,"71":5.0,"72":5.0,"73":5.0,"74":5.0,"75":5.0,"76":5.0,"77":5.0,"78":5.0,"79":5.0,"80":5.0,"81":5.0,"82":5.0,"83":5.0,"84":5.0,"85":5.0,"86":5.0,"87":5.0,"88":5.0,"89":5.0,"90":5.0,"91":5.0,"92":5.0,"93":5.0,"94":5.0,"95":5.0,"96":5.0,"97":5.0,"98":5.0,"99":5.0,"100":5.0},"flow_out":{"0":5.0,"1":5.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":5.0,"11":5.0,"12":5.0,"13":5.0,"14":5.0,"15":5.0,"16":5.0,"17":5.0,"18":5.0,"19":5.0,"20":5.0,"21":5.0,"22":5.0,"23":5.0,"24":5.0,"25":5.0,"26":5.0,"27":5.0,"28":5.0,"29":5.0,"30":5.0,"31":5.0,"32":5.0,"33":5.0,"34":5.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":5.0,"40":5.0,"41":5.0,"42":5.0,"43":5.0,"44":5.0,"45":5.0,"46":5.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":5.0,"55":5.0,"56":5.0,"57":5.0,"58":5.0,"59":5.0,"60":5.0,"61":5.0,"62":5.0,"63":5.0,"64":5.0,"65":5.0,"66":5.0,"67":5.0,"68":5.0,"69":5.0,"70":5.0,"71":5.0,"72":5.0,"73":5.0,"74":5.0,"75":5.0,"76":5.0,"77":5.0,"78":5.0,"79":5.0,"80":5.0,"81":5.0,"82":5.0,"83":5.0,"84":5.0,"85":5.0,"86":5.0,"87":5.0,"88":5.0,"89":5.0,"90":5.0,"91":5.0,"92":5.0,"93":5.0,"94":5.0,"95":5.0,"96":5.0,"97":5.0,"98":5.0,"99":5.0,"100":5.0},"pressure_in":{"0":1100.0000000009,"1":1100.0000000009,"2":1100.0000000009,"3":1100.0000000009,"4":1100.0000000009,"5":1100.0000000009,"6":1100.0000000009,"7":1100.0000000009,"8":1100.0000000009,"9":1100.0000000009,"10":1100.0000000009,"11":1100.0000000009,"12":1100.0000000009,"13":1100.0000000009,"14":1100.0000000009,"15":1100.0000000009,"16":1100.0000000009,"17":1100.0000000009,"18":1100.0000000009,"19":1100.0000000009,"20":1100.0000000009,"21":1100.0000000009,"22":1100.0000000009,"23":1100.0000000009,"24":1100.0000000009,"25":1100.0000000009,"26":1100.0000000009,"27":1100.0000000009,"28":1100.0000000009,"29":1100.0000000009,"30":1100.0000000009,"31":1100.0000000009,"32":1100.0000000009,"33":1100.0000000009,"34":1100.0000000009,"35":1100.0000000009,"36":1100.0000000009,"37":1100.0000000009,"38":1100.0000000009,"39":1100.0000000009,"40":1100.0000000009,"41":1100.0000000009,"42":1100.0000000009,"43":1100.0000000009,"44":1100.0000000009,"45":1100.0000000009,"46":1100.0000000009,"47":1100.0000000009,"48":1100.0000000009,"49":1100.0000000009,"50":1100.0000000009,"51":1100.0000000009,"52":1100.0000000009,"53":1100.0000000009,"54":1100.0000000009,"55":1100.0000000009,"56":1100.0000000009,"57":1100.0000000009,"58":1100.0000000009,"59":1100.0000000009,"60":1100.0000000009,"61":1100.0000000009,"62":1100.0000000009,"63":1100.0000000009,"64":1100.0000000009,"65":1100.0000000009,"66":1100.0000000009,"67":1100.0000000009,"68":1100.0000000009,"69":1100.0000000009,"70":1100.0000000009,"71":1100.0000000009,"72":1100.0000000009,"73":1100.0000000009,"74":1100.0000000009,"75":1100.0000000009,"76":1100.0000000009,"77":1100.0000000009,"78":1100.0000000009,"79":1100.0000000009,"80":1100.0000000009,"81":1100.0000000009,"82":1100.0000000009,"83":1100.0000000009,"84":1100.0000000009,"85":1100.0000000009,"86":1100.0000000009,"87":1100.0000000009,"88":1100.0000000009,"89":1100.0000000009,"90":1100.0000000009,"91":1100.0000000009,"92":1100.0000000009,"93":1100.0000000009,"94":1100.0000000009,"95":1100.0000000009,"96":1100.0000000009,"97":1100.0000000009,"98":1100.0000000009,"99":1100.0000000009,"100":1100.0000000009},"pressure_out":{"0":600.0,"1":600.0,"2":600.0,"3":600.0,"4":600.0,"5":600.0,"6":600.0,"7":600.0,"8":600.0,"9":600.0,"10":600.0,"11":600.0,"12":600.0,"13":600.0,"14":600.0,"15":600.0,"16":600.0,"17":600.0,"18":600.0,"19":600.0,"20":600.0,"21":600.0,"22":600.0,"23":600.0,"24":600.0,"25":600.0,"26":600.0,"27":600.0,"28":600.0,"29":600.0,"30":600.0,"31":600.0,"32":600.0,"33":600.0,"34":600.0,"35":600.0,"36":600.0,"37":600.0,"38":600.0,"39":600.0,"40":600.0,"41":600.0,"42":600.0,"43":600.0,"44":600.0,"45":600.0,"46":600.0,"47":600.0,"48":600.0,"49":600.0,"50":600.0,"51":600.0,"52":600.0,"53":600.0,"54":600.0,"55":600.0,"56":600.0,"57":600.0,"58":600.0,"59":600.0,"60":600.0,"61":600.0,"62":600.0,"63":600.0,"64":600.0,"65":600.0,"66":600.0,"67":600.0,"68":600.0,"69":600.0,"70":600.0,"71":600.0,"72":600.0,"73":600.0,"74":600.0,"75":600.0,"76":600.0,"77":600.0,"78":600.0,"79":600.0,"80":600.0,"81":600.0,"82":600.0,"83":600.0,"84":600.0,"85":600.0,"86":600.0,"87":600.0,"88":600.0,"89":600.0,"90":600.0,"91":600.0,"92":600.0,"93":600.0,"94":600.0,"95":600.0,"96":600.0,"97":600.0,"98":600.0,"99":600.0,"100":600.0}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.01, + "2": 0.02, + "3": 0.03, + "4": 0.04, + "5": 0.05, + "6": 0.06, + "7": 0.07, + "8": 0.08, + "9": 0.09, + "10": 0.1, + "11": 0.11, + "12": 0.12, + "13": 0.13, + "14": 0.14, + "15": 0.15, + "16": 0.16, + "17": 0.17, + "18": 0.18, + "19": 0.19, + "20": 0.2, + "21": 0.21, + "22": 0.22, + "23": 0.23, + "24": 0.24, + "25": 0.25, + "26": 0.26, + "27": 0.27, + "28": 0.28, + "29": 0.29, + "30": 0.3, + "31": 0.31, + "32": 0.32, + "33": 0.33, + "34": 0.34, + "35": 0.35, + "36": 0.36, + "37": 0.37, + "38": 0.38, + "39": 0.39, + "40": 0.4, + "41": 0.41, + "42": 0.42, + "43": 0.43, + "44": 0.44, + "45": 0.45, + "46": 0.46, + "47": 0.47, + "48": 0.48, + "49": 0.49, + "50": 0.5, + "51": 0.51, + "52": 0.52, + "53": 0.53, + "54": 0.54, + "55": 0.55, + "56": 0.56, + "57": 0.57, + "58": 0.58, + "59": 0.59, + "60": 0.6, + "61": 0.61, + "62": 0.62, + "63": 0.63, + "64": 0.64, + "65": 0.65, + "66": 0.66, + "67": 0.67, + "68": 0.68, + "69": 0.69, + "70": 0.7, + "71": 0.71, + "72": 0.72, + "73": 0.73, + "74": 0.74, + "75": 0.75, + "76": 0.76, + "77": 0.77, + "78": 0.78, + "79": 0.79, + "80": 0.8, + "81": 0.81, + "82": 0.82, + "83": 0.83, + "84": 0.84, + "85": 0.85, + "86": 0.86, + "87": 0.87, + "88": 0.88, + "89": 0.89, + "90": 0.9, + "91": 0.91, + "92": 0.92, + "93": 0.93, + "94": 0.94, + "95": 0.95, + "96": 0.96, + "97": 0.97, + "98": 0.98, + "99": 0.99, + "100": 1.0 + }, + "flow_in": { + "0": 5.0, + "1": 5.0, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 5.0, + "6": 5.0, + "7": 5.0, + "8": 5.0, + "9": 5.0, + "10": 5.0, + "11": 5.0, + "12": 5.0, + "13": 5.0, + "14": 5.0, + "15": 5.0, + "16": 5.0, + "17": 5.0, + "18": 5.0, + "19": 5.0, + "20": 5.0, + "21": 5.0, + "22": 5.0, + "23": 5.0, + "24": 5.0, + "25": 5.0, + "26": 5.0, + "27": 5.0, + "28": 5.0, + "29": 5.0, + "30": 5.0, + "31": 5.0, + "32": 5.0, + "33": 5.0, + "34": 5.0, + "35": 5.0, + "36": 5.0, + "37": 5.0, + "38": 5.0, + "39": 5.0, + "40": 5.0, + "41": 5.0, + "42": 5.0, + "43": 5.0, + "44": 5.0, + "45": 5.0, + "46": 5.0, + "47": 5.0, + "48": 5.0, + "49": 5.0, + "50": 5.0, + "51": 5.0, + "52": 5.0, + "53": 5.0, + "54": 5.0, + "55": 5.0, + "56": 5.0, + "57": 5.0, + "58": 5.0, + "59": 5.0, + "60": 5.0, + "61": 5.0, + "62": 5.0, + "63": 5.0, + "64": 5.0, + "65": 5.0, + "66": 5.0, + "67": 5.0, + "68": 5.0, + "69": 5.0, + "70": 5.0, + "71": 5.0, + "72": 5.0, + "73": 5.0, + "74": 5.0, + "75": 5.0, + "76": 5.0, + "77": 5.0, + "78": 5.0, + "79": 5.0, + "80": 5.0, + "81": 5.0, + "82": 5.0, + "83": 5.0, + "84": 5.0, + "85": 5.0, + "86": 5.0, + "87": 5.0, + "88": 5.0, + "89": 5.0, + "90": 5.0, + "91": 5.0, + "92": 5.0, + "93": 5.0, + "94": 5.0, + "95": 5.0, + "96": 5.0, + "97": 5.0, + "98": 5.0, + "99": 5.0, + "100": 5.0 + }, + "flow_out": { + "0": 5.0, + "1": 5.0, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 5.0, + "6": 5.0, + "7": 5.0, + "8": 5.0, + "9": 5.0, + "10": 5.0, + "11": 5.0, + "12": 5.0, + "13": 5.0, + "14": 5.0, + "15": 5.0, + "16": 5.0, + "17": 5.0, + "18": 5.0, + "19": 5.0, + "20": 5.0, + "21": 5.0, + "22": 5.0, + "23": 5.0, + "24": 5.0, + "25": 5.0, + "26": 5.0, + "27": 5.0, + "28": 5.0, + "29": 5.0, + "30": 5.0, + "31": 5.0, + "32": 5.0, + "33": 5.0, + "34": 5.0, + "35": 5.0, + "36": 5.0, + "37": 5.0, + "38": 5.0, + "39": 5.0, + "40": 5.0, + "41": 5.0, + "42": 5.0, + "43": 5.0, + "44": 5.0, + "45": 5.0, + "46": 5.0, + "47": 5.0, + "48": 5.0, + "49": 5.0, + "50": 5.0, + "51": 5.0, + "52": 5.0, + "53": 5.0, + "54": 5.0, + "55": 5.0, + "56": 5.0, + "57": 5.0, + "58": 5.0, + "59": 5.0, + "60": 5.0, + "61": 5.0, + "62": 5.0, + "63": 5.0, + "64": 5.0, + "65": 5.0, + "66": 5.0, + "67": 5.0, + "68": 5.0, + "69": 5.0, + "70": 5.0, + "71": 5.0, + "72": 5.0, + "73": 5.0, + "74": 5.0, + "75": 5.0, + "76": 5.0, + "77": 5.0, + "78": 5.0, + "79": 5.0, + "80": 5.0, + "81": 5.0, + "82": 5.0, + "83": 5.0, + "84": 5.0, + "85": 5.0, + "86": 5.0, + "87": 5.0, + "88": 5.0, + "89": 5.0, + "90": 5.0, + "91": 5.0, + "92": 5.0, + "93": 5.0, + "94": 5.0, + "95": 5.0, + "96": 5.0, + "97": 5.0, + "98": 5.0, + "99": 5.0, + "100": 5.0 + }, + "pressure_in": { + "0": 1100.0000000009, + "1": 1100.0000000009, + "2": 1100.0000000009, + "3": 1100.0000000009, + "4": 1100.0000000009, + "5": 1100.0000000009, + "6": 1100.0000000009, + "7": 1100.0000000009, + "8": 1100.0000000009, + "9": 1100.0000000009, + "10": 1100.0000000009, + "11": 1100.0000000009, + "12": 1100.0000000009, + "13": 1100.0000000009, + "14": 1100.0000000009, + "15": 1100.0000000009, + "16": 1100.0000000009, + "17": 1100.0000000009, + "18": 1100.0000000009, + "19": 1100.0000000009, + "20": 1100.0000000009, + "21": 1100.0000000009, + "22": 1100.0000000009, + "23": 1100.0000000009, + "24": 1100.0000000009, + "25": 1100.0000000009, + "26": 1100.0000000009, + "27": 1100.0000000009, + "28": 1100.0000000009, + "29": 1100.0000000009, + "30": 1100.0000000009, + "31": 1100.0000000009, + "32": 1100.0000000009, + "33": 1100.0000000009, + "34": 1100.0000000009, + "35": 1100.0000000009, + "36": 1100.0000000009, + "37": 1100.0000000009, + "38": 1100.0000000009, + "39": 1100.0000000009, + "40": 1100.0000000009, + "41": 1100.0000000009, + "42": 1100.0000000009, + "43": 1100.0000000009, + "44": 1100.0000000009, + "45": 1100.0000000009, + "46": 1100.0000000009, + "47": 1100.0000000009, + "48": 1100.0000000009, + "49": 1100.0000000009, + "50": 1100.0000000009, + "51": 1100.0000000009, + "52": 1100.0000000009, + "53": 1100.0000000009, + "54": 1100.0000000009, + "55": 1100.0000000009, + "56": 1100.0000000009, + "57": 1100.0000000009, + "58": 1100.0000000009, + "59": 1100.0000000009, + "60": 1100.0000000009, + "61": 1100.0000000009, + "62": 1100.0000000009, + "63": 1100.0000000009, + "64": 1100.0000000009, + "65": 1100.0000000009, + "66": 1100.0000000009, + "67": 1100.0000000009, + "68": 1100.0000000009, + "69": 1100.0000000009, + "70": 1100.0000000009, + "71": 1100.0000000009, + "72": 1100.0000000009, + "73": 1100.0000000009, + "74": 1100.0000000009, + "75": 1100.0000000009, + "76": 1100.0000000009, + "77": 1100.0000000009, + "78": 1100.0000000009, + "79": 1100.0000000009, + "80": 1100.0000000009, + "81": 1100.0000000009, + "82": 1100.0000000009, + "83": 1100.0000000009, + "84": 1100.0000000009, + "85": 1100.0000000009, + "86": 1100.0000000009, + "87": 1100.0000000009, + "88": 1100.0000000009, + "89": 1100.0000000009, + "90": 1100.0000000009, + "91": 1100.0000000009, + "92": 1100.0000000009, + "93": 1100.0000000009, + "94": 1100.0000000009, + "95": 1100.0000000009, + "96": 1100.0000000009, + "97": 1100.0000000009, + "98": 1100.0000000009, + "99": 1100.0000000009, + "100": 1100.0000000009 + }, + "pressure_out": { + "0": 600.0, + "1": 600.0, + "2": 600.0, + "3": 600.0, + "4": 600.0, + "5": 600.0, + "6": 600.0, + "7": 600.0, + "8": 600.0, + "9": 600.0, + "10": 600.0, + "11": 600.0, + "12": 600.0, + "13": 600.0, + "14": 600.0, + "15": 600.0, + "16": 600.0, + "17": 600.0, + "18": 600.0, + "19": 600.0, + "20": 600.0, + "21": 600.0, + "22": 600.0, + "23": 600.0, + "24": 600.0, + "25": 600.0, + "26": 600.0, + "27": 600.0, + "28": 600.0, + "29": 600.0, + "30": 600.0, + "31": 600.0, + "32": 600.0, + "33": 600.0, + "34": 600.0, + "35": 600.0, + "36": 600.0, + "37": 600.0, + "38": 600.0, + "39": 600.0, + "40": 600.0, + "41": 600.0, + "42": 600.0, + "43": 600.0, + "44": 600.0, + "45": 600.0, + "46": 600.0, + "47": 600.0, + "48": 600.0, + "49": 600.0, + "50": 600.0, + "51": 600.0, + "52": 600.0, + "53": 600.0, + "54": 600.0, + "55": 600.0, + "56": 600.0, + "57": 600.0, + "58": 600.0, + "59": 600.0, + "60": 600.0, + "61": 600.0, + "62": 600.0, + "63": 600.0, + "64": 600.0, + "65": 600.0, + "66": 600.0, + "67": 600.0, + "68": 600.0, + "69": 600.0, + "70": 600.0, + "71": 600.0, + "72": 600.0, + "73": 600.0, + "74": 600.0, + "75": 600.0, + "76": 600.0, + "77": 600.0, + "78": 600.0, + "79": 600.0, + "80": 600.0, + "81": 600.0, + "82": 600.0, + "83": 600.0, + "84": 600.0, + "85": 600.0, + "86": 600.0, + "87": 600.0, + "88": 600.0, + "89": 600.0, + "90": 600.0, + "91": 600.0, + "92": 600.0, + "93": 600.0, + "94": 600.0, + "95": 600.0, + "96": 600.0, + "97": 600.0, + "98": 600.0, + "99": 600.0, + "100": 600.0 + } +} diff --git a/tests/cases/results/result_steadyFlow_R_R.json b/tests/cases/results/result_steadyFlow_R_R.json index 8964445e5..4a5d590d9 100644 --- a/tests/cases/results/result_steadyFlow_R_R.json +++ b/tests/cases/results/result_steadyFlow_R_R.json @@ -1 +1,38 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0"},"time":{"0":0.0,"1":0.25,"2":0.5,"3":0.75,"4":1.0},"flow_in":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0},"flow_out":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0},"pressure_in":{"0":1100.000000032,"1":1099.999999984,"2":1100.000000008,"3":1100.000000008,"4":1100.000000008},"pressure_out":{"0":600.0000000175,"1":599.9999999913,"2":600.0000000044,"3":600.0000000044,"4":600.0000000044}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0" + }, + "time": { "0": 0.0, "1": 0.25, "2": 0.5, "3": 0.75, "4": 1.0 }, + "flow_in": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0 + }, + "flow_out": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0 + }, + "pressure_in": { + "0": 1100.000000032, + "1": 1099.999999984, + "2": 1100.000000008, + "3": 1100.000000008, + "4": 1100.000000008 + }, + "pressure_out": { + "0": 600.0000000175, + "1": 599.9999999913, + "2": 600.0000000044, + "3": 600.0000000044, + "4": 600.0000000044 + } +} diff --git a/tests/cases/results/result_steadyFlow_R_RCR.json b/tests/cases/results/result_steadyFlow_R_RCR.json index b7bf4de60..d02994d5c 100644 --- a/tests/cases/results/result_steadyFlow_R_RCR.json +++ b/tests/cases/results/result_steadyFlow_R_RCR.json @@ -1 +1,620 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0"},"time":{"0":0.0,"1":0.01,"2":0.02,"3":0.03,"4":0.04,"5":0.05,"6":0.06,"7":0.07,"8":0.08,"9":0.09,"10":0.1,"11":0.11,"12":0.12,"13":0.13,"14":0.14,"15":0.15,"16":0.16,"17":0.17,"18":0.18,"19":0.19,"20":0.2,"21":0.21,"22":0.22,"23":0.23,"24":0.24,"25":0.25,"26":0.26,"27":0.27,"28":0.28,"29":0.29,"30":0.3,"31":0.31,"32":0.32,"33":0.33,"34":0.34,"35":0.35,"36":0.36,"37":0.37,"38":0.38,"39":0.39,"40":0.4,"41":0.41,"42":0.42,"43":0.43,"44":0.44,"45":0.45,"46":0.46,"47":0.47,"48":0.48,"49":0.49,"50":0.5,"51":0.51,"52":0.52,"53":0.53,"54":0.54,"55":0.55,"56":0.56,"57":0.57,"58":0.58,"59":0.59,"60":0.6,"61":0.61,"62":0.62,"63":0.63,"64":0.64,"65":0.65,"66":0.66,"67":0.67,"68":0.68,"69":0.69,"70":0.7,"71":0.71,"72":0.72,"73":0.73,"74":0.74,"75":0.75,"76":0.76,"77":0.77,"78":0.78,"79":0.79,"80":0.8,"81":0.81,"82":0.82,"83":0.83,"84":0.84,"85":0.85,"86":0.86,"87":0.87,"88":0.88,"89":0.89,"90":0.9,"91":0.91,"92":0.92,"93":0.93,"94":0.94,"95":0.95,"96":0.96,"97":0.97,"98":0.98,"99":0.99,"100":1.0},"flow_in":{"0":5.0,"1":5.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":5.0,"11":5.0,"12":5.0,"13":5.0,"14":5.0,"15":5.0,"16":5.0,"17":5.0,"18":5.0,"19":5.0,"20":5.0,"21":5.0,"22":5.0,"23":5.0,"24":5.0,"25":5.0,"26":5.0,"27":5.0,"28":5.0,"29":5.0,"30":5.0,"31":5.0,"32":5.0,"33":5.0,"34":5.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":5.0,"40":5.0,"41":5.0,"42":5.0,"43":5.0,"44":5.0,"45":5.0,"46":5.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":5.0,"55":5.0,"56":5.0,"57":5.0,"58":5.0,"59":5.0,"60":5.0,"61":5.0,"62":5.0,"63":5.0,"64":5.0,"65":5.0,"66":5.0,"67":5.0,"68":5.0,"69":5.0,"70":5.0,"71":5.0,"72":5.0,"73":5.0,"74":5.0,"75":5.0,"76":5.0,"77":5.0,"78":5.0,"79":5.0,"80":5.0,"81":5.0,"82":5.0,"83":5.0,"84":5.0,"85":5.0,"86":5.0,"87":5.0,"88":5.0,"89":5.0,"90":5.0,"91":5.0,"92":5.0,"93":5.0,"94":5.0,"95":5.0,"96":5.0,"97":5.0,"98":5.0,"99":5.0,"100":5.0},"flow_out":{"0":5.0,"1":5.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":5.0,"11":5.0,"12":5.0,"13":5.0,"14":5.0,"15":5.0,"16":5.0,"17":5.0,"18":5.0,"19":5.0,"20":5.0,"21":5.0,"22":5.0,"23":5.0,"24":5.0,"25":5.0,"26":5.0,"27":5.0,"28":5.0,"29":5.0,"30":5.0,"31":5.0,"32":5.0,"33":5.0,"34":5.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":5.0,"40":5.0,"41":5.0,"42":5.0,"43":5.0,"44":5.0,"45":5.0,"46":5.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":5.0,"55":5.0,"56":5.0,"57":5.0,"58":5.0,"59":5.0,"60":5.0,"61":5.0,"62":5.0,"63":5.0,"64":5.0,"65":5.0,"66":5.0,"67":5.0,"68":5.0,"69":5.0,"70":5.0,"71":5.0,"72":5.0,"73":5.0,"74":5.0,"75":5.0,"76":5.0,"77":5.0,"78":5.0,"79":5.0,"80":5.0,"81":5.0,"82":5.0,"83":5.0,"84":5.0,"85":5.0,"86":5.0,"87":5.0,"88":5.0,"89":5.0,"90":5.0,"91":5.0,"92":5.0,"93":5.0,"94":5.0,"95":5.0,"96":5.0,"97":5.0,"98":5.0,"99":5.0,"100":5.0},"pressure_in":{"0":10500.0000000008,"1":10500.0000000008,"2":10500.0000000008,"3":10500.0000000008,"4":10500.0000000008,"5":10500.0000000008,"6":10500.0000000008,"7":10500.0000000008,"8":10500.0000000008,"9":10500.0000000008,"10":10500.0000000008,"11":10500.0000000008,"12":10500.0000000008,"13":10500.0000000008,"14":10500.0000000008,"15":10500.0000000008,"16":10500.0000000008,"17":10500.0000000008,"18":10500.0000000008,"19":10500.0000000008,"20":10500.0000000008,"21":10500.0000000008,"22":10500.0000000008,"23":10500.0000000008,"24":10500.0000000008,"25":10500.0000000008,"26":10500.0000000008,"27":10500.0000000008,"28":10500.0000000008,"29":10500.0000000008,"30":10500.0000000008,"31":10500.0000000008,"32":10500.0000000008,"33":10500.0000000008,"34":10500.0000000008,"35":10500.0000000008,"36":10500.0000000008,"37":10500.0000000008,"38":10500.0000000008,"39":10500.0000000008,"40":10500.0000000008,"41":10500.0000000008,"42":10500.0000000008,"43":10500.0000000008,"44":10500.0000000008,"45":10500.0000000008,"46":10500.0000000008,"47":10500.0000000008,"48":10500.0000000008,"49":10500.0000000008,"50":10500.0000000008,"51":10500.0000000008,"52":10500.0000000008,"53":10500.0000000008,"54":10500.0000000008,"55":10500.0000000008,"56":10500.0000000008,"57":10500.0000000008,"58":10500.0000000008,"59":10500.0000000008,"60":10500.0000000008,"61":10500.0000000008,"62":10500.0000000008,"63":10500.0000000008,"64":10500.0000000008,"65":10500.0000000008,"66":10500.0000000008,"67":10500.0000000008,"68":10500.0000000008,"69":10500.0000000008,"70":10500.0000000008,"71":10500.0000000008,"72":10500.0000000008,"73":10500.0000000008,"74":10500.0000000008,"75":10500.0000000008,"76":10500.0000000008,"77":10500.0000000008,"78":10500.0000000008,"79":10500.0000000008,"80":10500.0000000008,"81":10500.0000000008,"82":10500.0000000008,"83":10500.0000000008,"84":10500.0000000008,"85":10500.0000000008,"86":10500.0000000008,"87":10500.0000000008,"88":10500.0000000008,"89":10500.0000000008,"90":10500.0000000008,"91":10500.0000000008,"92":10500.0000000008,"93":10500.0000000008,"94":10500.0000000008,"95":10500.0000000008,"96":10500.0000000008,"97":10500.0000000008,"98":10500.0000000008,"99":10500.0000000008,"100":10500.0000000008},"pressure_out":{"0":10000.0000000008,"1":10000.0000000008,"2":10000.0000000008,"3":10000.0000000008,"4":10000.0000000008,"5":10000.0000000008,"6":10000.0000000008,"7":10000.0000000008,"8":10000.0000000008,"9":10000.0000000008,"10":10000.0000000008,"11":10000.0000000008,"12":10000.0000000008,"13":10000.0000000008,"14":10000.0000000008,"15":10000.0000000008,"16":10000.0000000008,"17":10000.0000000008,"18":10000.0000000008,"19":10000.0000000008,"20":10000.0000000008,"21":10000.0000000008,"22":10000.0000000008,"23":10000.0000000008,"24":10000.0000000008,"25":10000.0000000008,"26":10000.0000000008,"27":10000.0000000008,"28":10000.0000000008,"29":10000.0000000008,"30":10000.0000000008,"31":10000.0000000008,"32":10000.0000000008,"33":10000.0000000008,"34":10000.0000000008,"35":10000.0000000008,"36":10000.0000000008,"37":10000.0000000008,"38":10000.0000000008,"39":10000.0000000008,"40":10000.0000000008,"41":10000.0000000008,"42":10000.0000000008,"43":10000.0000000008,"44":10000.0000000008,"45":10000.0000000008,"46":10000.0000000008,"47":10000.0000000008,"48":10000.0000000008,"49":10000.0000000008,"50":10000.0000000008,"51":10000.0000000008,"52":10000.0000000008,"53":10000.0000000008,"54":10000.0000000008,"55":10000.0000000008,"56":10000.0000000008,"57":10000.0000000008,"58":10000.0000000008,"59":10000.0000000008,"60":10000.0000000008,"61":10000.0000000008,"62":10000.0000000008,"63":10000.0000000008,"64":10000.0000000008,"65":10000.0000000008,"66":10000.0000000008,"67":10000.0000000008,"68":10000.0000000008,"69":10000.0000000008,"70":10000.0000000008,"71":10000.0000000008,"72":10000.0000000008,"73":10000.0000000008,"74":10000.0000000008,"75":10000.0000000008,"76":10000.0000000008,"77":10000.0000000008,"78":10000.0000000008,"79":10000.0000000008,"80":10000.0000000008,"81":10000.0000000008,"82":10000.0000000008,"83":10000.0000000008,"84":10000.0000000008,"85":10000.0000000008,"86":10000.0000000008,"87":10000.0000000008,"88":10000.0000000008,"89":10000.0000000008,"90":10000.0000000008,"91":10000.0000000008,"92":10000.0000000008,"93":10000.0000000008,"94":10000.0000000008,"95":10000.0000000008,"96":10000.0000000008,"97":10000.0000000008,"98":10000.0000000008,"99":10000.0000000008,"100":10000.0000000008}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.01, + "2": 0.02, + "3": 0.03, + "4": 0.04, + "5": 0.05, + "6": 0.06, + "7": 0.07, + "8": 0.08, + "9": 0.09, + "10": 0.1, + "11": 0.11, + "12": 0.12, + "13": 0.13, + "14": 0.14, + "15": 0.15, + "16": 0.16, + "17": 0.17, + "18": 0.18, + "19": 0.19, + "20": 0.2, + "21": 0.21, + "22": 0.22, + "23": 0.23, + "24": 0.24, + "25": 0.25, + "26": 0.26, + "27": 0.27, + "28": 0.28, + "29": 0.29, + "30": 0.3, + "31": 0.31, + "32": 0.32, + "33": 0.33, + "34": 0.34, + "35": 0.35, + "36": 0.36, + "37": 0.37, + "38": 0.38, + "39": 0.39, + "40": 0.4, + "41": 0.41, + "42": 0.42, + "43": 0.43, + "44": 0.44, + "45": 0.45, + "46": 0.46, + "47": 0.47, + "48": 0.48, + "49": 0.49, + "50": 0.5, + "51": 0.51, + "52": 0.52, + "53": 0.53, + "54": 0.54, + "55": 0.55, + "56": 0.56, + "57": 0.57, + "58": 0.58, + "59": 0.59, + "60": 0.6, + "61": 0.61, + "62": 0.62, + "63": 0.63, + "64": 0.64, + "65": 0.65, + "66": 0.66, + "67": 0.67, + "68": 0.68, + "69": 0.69, + "70": 0.7, + "71": 0.71, + "72": 0.72, + "73": 0.73, + "74": 0.74, + "75": 0.75, + "76": 0.76, + "77": 0.77, + "78": 0.78, + "79": 0.79, + "80": 0.8, + "81": 0.81, + "82": 0.82, + "83": 0.83, + "84": 0.84, + "85": 0.85, + "86": 0.86, + "87": 0.87, + "88": 0.88, + "89": 0.89, + "90": 0.9, + "91": 0.91, + "92": 0.92, + "93": 0.93, + "94": 0.94, + "95": 0.95, + "96": 0.96, + "97": 0.97, + "98": 0.98, + "99": 0.99, + "100": 1.0 + }, + "flow_in": { + "0": 5.0, + "1": 5.0, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 5.0, + "6": 5.0, + "7": 5.0, + "8": 5.0, + "9": 5.0, + "10": 5.0, + "11": 5.0, + "12": 5.0, + "13": 5.0, + "14": 5.0, + "15": 5.0, + "16": 5.0, + "17": 5.0, + "18": 5.0, + "19": 5.0, + "20": 5.0, + "21": 5.0, + "22": 5.0, + "23": 5.0, + "24": 5.0, + "25": 5.0, + "26": 5.0, + "27": 5.0, + "28": 5.0, + "29": 5.0, + "30": 5.0, + "31": 5.0, + "32": 5.0, + "33": 5.0, + "34": 5.0, + "35": 5.0, + "36": 5.0, + "37": 5.0, + "38": 5.0, + "39": 5.0, + "40": 5.0, + "41": 5.0, + "42": 5.0, + "43": 5.0, + "44": 5.0, + "45": 5.0, + "46": 5.0, + "47": 5.0, + "48": 5.0, + "49": 5.0, + "50": 5.0, + "51": 5.0, + "52": 5.0, + "53": 5.0, + "54": 5.0, + "55": 5.0, + "56": 5.0, + "57": 5.0, + "58": 5.0, + "59": 5.0, + "60": 5.0, + "61": 5.0, + "62": 5.0, + "63": 5.0, + "64": 5.0, + "65": 5.0, + "66": 5.0, + "67": 5.0, + "68": 5.0, + "69": 5.0, + "70": 5.0, + "71": 5.0, + "72": 5.0, + "73": 5.0, + "74": 5.0, + "75": 5.0, + "76": 5.0, + "77": 5.0, + "78": 5.0, + "79": 5.0, + "80": 5.0, + "81": 5.0, + "82": 5.0, + "83": 5.0, + "84": 5.0, + "85": 5.0, + "86": 5.0, + "87": 5.0, + "88": 5.0, + "89": 5.0, + "90": 5.0, + "91": 5.0, + "92": 5.0, + "93": 5.0, + "94": 5.0, + "95": 5.0, + "96": 5.0, + "97": 5.0, + "98": 5.0, + "99": 5.0, + "100": 5.0 + }, + "flow_out": { + "0": 5.0, + "1": 5.0, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 5.0, + "6": 5.0, + "7": 5.0, + "8": 5.0, + "9": 5.0, + "10": 5.0, + "11": 5.0, + "12": 5.0, + "13": 5.0, + "14": 5.0, + "15": 5.0, + "16": 5.0, + "17": 5.0, + "18": 5.0, + "19": 5.0, + "20": 5.0, + "21": 5.0, + "22": 5.0, + "23": 5.0, + "24": 5.0, + "25": 5.0, + "26": 5.0, + "27": 5.0, + "28": 5.0, + "29": 5.0, + "30": 5.0, + "31": 5.0, + "32": 5.0, + "33": 5.0, + "34": 5.0, + "35": 5.0, + "36": 5.0, + "37": 5.0, + "38": 5.0, + "39": 5.0, + "40": 5.0, + "41": 5.0, + "42": 5.0, + "43": 5.0, + "44": 5.0, + "45": 5.0, + "46": 5.0, + "47": 5.0, + "48": 5.0, + "49": 5.0, + "50": 5.0, + "51": 5.0, + "52": 5.0, + "53": 5.0, + "54": 5.0, + "55": 5.0, + "56": 5.0, + "57": 5.0, + "58": 5.0, + "59": 5.0, + "60": 5.0, + "61": 5.0, + "62": 5.0, + "63": 5.0, + "64": 5.0, + "65": 5.0, + "66": 5.0, + "67": 5.0, + "68": 5.0, + "69": 5.0, + "70": 5.0, + "71": 5.0, + "72": 5.0, + "73": 5.0, + "74": 5.0, + "75": 5.0, + "76": 5.0, + "77": 5.0, + "78": 5.0, + "79": 5.0, + "80": 5.0, + "81": 5.0, + "82": 5.0, + "83": 5.0, + "84": 5.0, + "85": 5.0, + "86": 5.0, + "87": 5.0, + "88": 5.0, + "89": 5.0, + "90": 5.0, + "91": 5.0, + "92": 5.0, + "93": 5.0, + "94": 5.0, + "95": 5.0, + "96": 5.0, + "97": 5.0, + "98": 5.0, + "99": 5.0, + "100": 5.0 + }, + "pressure_in": { + "0": 10500.0000000008, + "1": 10500.0000000008, + "2": 10500.0000000008, + "3": 10500.0000000008, + "4": 10500.0000000008, + "5": 10500.0000000008, + "6": 10500.0000000008, + "7": 10500.0000000008, + "8": 10500.0000000008, + "9": 10500.0000000008, + "10": 10500.0000000008, + "11": 10500.0000000008, + "12": 10500.0000000008, + "13": 10500.0000000008, + "14": 10500.0000000008, + "15": 10500.0000000008, + "16": 10500.0000000008, + "17": 10500.0000000008, + "18": 10500.0000000008, + "19": 10500.0000000008, + "20": 10500.0000000008, + "21": 10500.0000000008, + "22": 10500.0000000008, + "23": 10500.0000000008, + "24": 10500.0000000008, + "25": 10500.0000000008, + "26": 10500.0000000008, + "27": 10500.0000000008, + "28": 10500.0000000008, + "29": 10500.0000000008, + "30": 10500.0000000008, + "31": 10500.0000000008, + "32": 10500.0000000008, + "33": 10500.0000000008, + "34": 10500.0000000008, + "35": 10500.0000000008, + "36": 10500.0000000008, + "37": 10500.0000000008, + "38": 10500.0000000008, + "39": 10500.0000000008, + "40": 10500.0000000008, + "41": 10500.0000000008, + "42": 10500.0000000008, + "43": 10500.0000000008, + "44": 10500.0000000008, + "45": 10500.0000000008, + "46": 10500.0000000008, + "47": 10500.0000000008, + "48": 10500.0000000008, + "49": 10500.0000000008, + "50": 10500.0000000008, + "51": 10500.0000000008, + "52": 10500.0000000008, + "53": 10500.0000000008, + "54": 10500.0000000008, + "55": 10500.0000000008, + "56": 10500.0000000008, + "57": 10500.0000000008, + "58": 10500.0000000008, + "59": 10500.0000000008, + "60": 10500.0000000008, + "61": 10500.0000000008, + "62": 10500.0000000008, + "63": 10500.0000000008, + "64": 10500.0000000008, + "65": 10500.0000000008, + "66": 10500.0000000008, + "67": 10500.0000000008, + "68": 10500.0000000008, + "69": 10500.0000000008, + "70": 10500.0000000008, + "71": 10500.0000000008, + "72": 10500.0000000008, + "73": 10500.0000000008, + "74": 10500.0000000008, + "75": 10500.0000000008, + "76": 10500.0000000008, + "77": 10500.0000000008, + "78": 10500.0000000008, + "79": 10500.0000000008, + "80": 10500.0000000008, + "81": 10500.0000000008, + "82": 10500.0000000008, + "83": 10500.0000000008, + "84": 10500.0000000008, + "85": 10500.0000000008, + "86": 10500.0000000008, + "87": 10500.0000000008, + "88": 10500.0000000008, + "89": 10500.0000000008, + "90": 10500.0000000008, + "91": 10500.0000000008, + "92": 10500.0000000008, + "93": 10500.0000000008, + "94": 10500.0000000008, + "95": 10500.0000000008, + "96": 10500.0000000008, + "97": 10500.0000000008, + "98": 10500.0000000008, + "99": 10500.0000000008, + "100": 10500.0000000008 + }, + "pressure_out": { + "0": 10000.0000000008, + "1": 10000.0000000008, + "2": 10000.0000000008, + "3": 10000.0000000008, + "4": 10000.0000000008, + "5": 10000.0000000008, + "6": 10000.0000000008, + "7": 10000.0000000008, + "8": 10000.0000000008, + "9": 10000.0000000008, + "10": 10000.0000000008, + "11": 10000.0000000008, + "12": 10000.0000000008, + "13": 10000.0000000008, + "14": 10000.0000000008, + "15": 10000.0000000008, + "16": 10000.0000000008, + "17": 10000.0000000008, + "18": 10000.0000000008, + "19": 10000.0000000008, + "20": 10000.0000000008, + "21": 10000.0000000008, + "22": 10000.0000000008, + "23": 10000.0000000008, + "24": 10000.0000000008, + "25": 10000.0000000008, + "26": 10000.0000000008, + "27": 10000.0000000008, + "28": 10000.0000000008, + "29": 10000.0000000008, + "30": 10000.0000000008, + "31": 10000.0000000008, + "32": 10000.0000000008, + "33": 10000.0000000008, + "34": 10000.0000000008, + "35": 10000.0000000008, + "36": 10000.0000000008, + "37": 10000.0000000008, + "38": 10000.0000000008, + "39": 10000.0000000008, + "40": 10000.0000000008, + "41": 10000.0000000008, + "42": 10000.0000000008, + "43": 10000.0000000008, + "44": 10000.0000000008, + "45": 10000.0000000008, + "46": 10000.0000000008, + "47": 10000.0000000008, + "48": 10000.0000000008, + "49": 10000.0000000008, + "50": 10000.0000000008, + "51": 10000.0000000008, + "52": 10000.0000000008, + "53": 10000.0000000008, + "54": 10000.0000000008, + "55": 10000.0000000008, + "56": 10000.0000000008, + "57": 10000.0000000008, + "58": 10000.0000000008, + "59": 10000.0000000008, + "60": 10000.0000000008, + "61": 10000.0000000008, + "62": 10000.0000000008, + "63": 10000.0000000008, + "64": 10000.0000000008, + "65": 10000.0000000008, + "66": 10000.0000000008, + "67": 10000.0000000008, + "68": 10000.0000000008, + "69": 10000.0000000008, + "70": 10000.0000000008, + "71": 10000.0000000008, + "72": 10000.0000000008, + "73": 10000.0000000008, + "74": 10000.0000000008, + "75": 10000.0000000008, + "76": 10000.0000000008, + "77": 10000.0000000008, + "78": 10000.0000000008, + "79": 10000.0000000008, + "80": 10000.0000000008, + "81": 10000.0000000008, + "82": 10000.0000000008, + "83": 10000.0000000008, + "84": 10000.0000000008, + "85": 10000.0000000008, + "86": 10000.0000000008, + "87": 10000.0000000008, + "88": 10000.0000000008, + "89": 10000.0000000008, + "90": 10000.0000000008, + "91": 10000.0000000008, + "92": 10000.0000000008, + "93": 10000.0000000008, + "94": 10000.0000000008, + "95": 10000.0000000008, + "96": 10000.0000000008, + "97": 10000.0000000008, + "98": 10000.0000000008, + "99": 10000.0000000008, + "100": 10000.0000000008 + } +} diff --git a/tests/cases/results/result_steadyFlow_R_coronary.json b/tests/cases/results/result_steadyFlow_R_coronary.json index 243d373c7..21c15b56e 100644 --- a/tests/cases/results/result_steadyFlow_R_coronary.json +++ b/tests/cases/results/result_steadyFlow_R_coronary.json @@ -1 +1,620 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch0_seg0","6":"branch0_seg0","7":"branch0_seg0","8":"branch0_seg0","9":"branch0_seg0","10":"branch0_seg0","11":"branch0_seg0","12":"branch0_seg0","13":"branch0_seg0","14":"branch0_seg0","15":"branch0_seg0","16":"branch0_seg0","17":"branch0_seg0","18":"branch0_seg0","19":"branch0_seg0","20":"branch0_seg0","21":"branch0_seg0","22":"branch0_seg0","23":"branch0_seg0","24":"branch0_seg0","25":"branch0_seg0","26":"branch0_seg0","27":"branch0_seg0","28":"branch0_seg0","29":"branch0_seg0","30":"branch0_seg0","31":"branch0_seg0","32":"branch0_seg0","33":"branch0_seg0","34":"branch0_seg0","35":"branch0_seg0","36":"branch0_seg0","37":"branch0_seg0","38":"branch0_seg0","39":"branch0_seg0","40":"branch0_seg0","41":"branch0_seg0","42":"branch0_seg0","43":"branch0_seg0","44":"branch0_seg0","45":"branch0_seg0","46":"branch0_seg0","47":"branch0_seg0","48":"branch0_seg0","49":"branch0_seg0","50":"branch0_seg0","51":"branch0_seg0","52":"branch0_seg0","53":"branch0_seg0","54":"branch0_seg0","55":"branch0_seg0","56":"branch0_seg0","57":"branch0_seg0","58":"branch0_seg0","59":"branch0_seg0","60":"branch0_seg0","61":"branch0_seg0","62":"branch0_seg0","63":"branch0_seg0","64":"branch0_seg0","65":"branch0_seg0","66":"branch0_seg0","67":"branch0_seg0","68":"branch0_seg0","69":"branch0_seg0","70":"branch0_seg0","71":"branch0_seg0","72":"branch0_seg0","73":"branch0_seg0","74":"branch0_seg0","75":"branch0_seg0","76":"branch0_seg0","77":"branch0_seg0","78":"branch0_seg0","79":"branch0_seg0","80":"branch0_seg0","81":"branch0_seg0","82":"branch0_seg0","83":"branch0_seg0","84":"branch0_seg0","85":"branch0_seg0","86":"branch0_seg0","87":"branch0_seg0","88":"branch0_seg0","89":"branch0_seg0","90":"branch0_seg0","91":"branch0_seg0","92":"branch0_seg0","93":"branch0_seg0","94":"branch0_seg0","95":"branch0_seg0","96":"branch0_seg0","97":"branch0_seg0","98":"branch0_seg0","99":"branch0_seg0","100":"branch0_seg0"},"time":{"0":0.0,"1":0.01,"2":0.02,"3":0.03,"4":0.04,"5":0.05,"6":0.06,"7":0.07,"8":0.08,"9":0.09,"10":0.1,"11":0.11,"12":0.12,"13":0.13,"14":0.14,"15":0.15,"16":0.16,"17":0.17,"18":0.18,"19":0.19,"20":0.2,"21":0.21,"22":0.22,"23":0.23,"24":0.24,"25":0.25,"26":0.26,"27":0.27,"28":0.28,"29":0.29,"30":0.3,"31":0.31,"32":0.32,"33":0.33,"34":0.34,"35":0.35,"36":0.36,"37":0.37,"38":0.38,"39":0.39,"40":0.4,"41":0.41,"42":0.42,"43":0.43,"44":0.44,"45":0.45,"46":0.46,"47":0.47,"48":0.48,"49":0.49,"50":0.5,"51":0.51,"52":0.52,"53":0.53,"54":0.54,"55":0.55,"56":0.56,"57":0.57,"58":0.58,"59":0.59,"60":0.6,"61":0.61,"62":0.62,"63":0.63,"64":0.64,"65":0.65,"66":0.66,"67":0.67,"68":0.68,"69":0.69,"70":0.7,"71":0.71,"72":0.72,"73":0.73,"74":0.74,"75":0.75,"76":0.76,"77":0.77,"78":0.78,"79":0.79,"80":0.8,"81":0.81,"82":0.82,"83":0.83,"84":0.84,"85":0.85,"86":0.86,"87":0.87,"88":0.88,"89":0.89,"90":0.9,"91":0.91,"92":0.92,"93":0.93,"94":0.94,"95":0.95,"96":0.96,"97":0.97,"98":0.98,"99":0.99,"100":1.0},"flow_in":{"0":5.0,"1":5.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":5.0,"11":5.0,"12":5.0,"13":5.0,"14":5.0,"15":5.0,"16":5.0,"17":5.0,"18":5.0,"19":5.0,"20":5.0,"21":5.0,"22":5.0,"23":5.0,"24":5.0,"25":5.0,"26":5.0,"27":5.0,"28":5.0,"29":5.0,"30":5.0,"31":5.0,"32":5.0,"33":5.0,"34":5.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":5.0,"40":5.0,"41":5.0,"42":5.0,"43":5.0,"44":5.0,"45":5.0,"46":5.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":5.0,"55":5.0,"56":5.0,"57":5.0,"58":5.0,"59":5.0,"60":5.0,"61":5.0,"62":5.0,"63":5.0,"64":5.0,"65":5.0,"66":5.0,"67":5.0,"68":5.0,"69":5.0,"70":5.0,"71":5.0,"72":5.0,"73":5.0,"74":5.0,"75":5.0,"76":5.0,"77":5.0,"78":5.0,"79":5.0,"80":5.0,"81":5.0,"82":5.0,"83":5.0,"84":5.0,"85":5.0,"86":5.0,"87":5.0,"88":5.0,"89":5.0,"90":5.0,"91":5.0,"92":5.0,"93":5.0,"94":5.0,"95":5.0,"96":5.0,"97":5.0,"98":5.0,"99":5.0,"100":5.0},"flow_out":{"0":5.0,"1":5.0,"2":5.0,"3":5.0,"4":5.0,"5":5.0,"6":5.0,"7":5.0,"8":5.0,"9":5.0,"10":5.0,"11":5.0,"12":5.0,"13":5.0,"14":5.0,"15":5.0,"16":5.0,"17":5.0,"18":5.0,"19":5.0,"20":5.0,"21":5.0,"22":5.0,"23":5.0,"24":5.0,"25":5.0,"26":5.0,"27":5.0,"28":5.0,"29":5.0,"30":5.0,"31":5.0,"32":5.0,"33":5.0,"34":5.0,"35":5.0,"36":5.0,"37":5.0,"38":5.0,"39":5.0,"40":5.0,"41":5.0,"42":5.0,"43":5.0,"44":5.0,"45":5.0,"46":5.0,"47":5.0,"48":5.0,"49":5.0,"50":5.0,"51":5.0,"52":5.0,"53":5.0,"54":5.0,"55":5.0,"56":5.0,"57":5.0,"58":5.0,"59":5.0,"60":5.0,"61":5.0,"62":5.0,"63":5.0,"64":5.0,"65":5.0,"66":5.0,"67":5.0,"68":5.0,"69":5.0,"70":5.0,"71":5.0,"72":5.0,"73":5.0,"74":5.0,"75":5.0,"76":5.0,"77":5.0,"78":5.0,"79":5.0,"80":5.0,"81":5.0,"82":5.0,"83":5.0,"84":5.0,"85":5.0,"86":5.0,"87":5.0,"88":5.0,"89":5.0,"90":5.0,"91":5.0,"92":5.0,"93":5.0,"94":5.0,"95":5.0,"96":5.0,"97":5.0,"98":5.0,"99":5.0,"100":5.0},"pressure_in":{"0":2000.000000294,"1":2000.000000294,"2":2000.000000294,"3":2000.000000294,"4":2000.000000294,"5":2000.000000294,"6":2000.000000294,"7":2000.000000294,"8":2000.000000294,"9":2000.000000294,"10":2000.000000294,"11":2000.000000294,"12":2000.000000294,"13":2000.000000294,"14":2000.000000294,"15":2000.000000294,"16":2000.000000294,"17":2000.000000294,"18":2000.000000294,"19":2000.000000294,"20":2000.000000294,"21":2000.000000294,"22":2000.000000294,"23":2000.000000294,"24":2000.000000294,"25":2000.000000294,"26":2000.000000294,"27":2000.000000294,"28":2000.000000294,"29":2000.000000294,"30":2000.000000294,"31":2000.000000294,"32":2000.000000294,"33":2000.000000294,"34":2000.000000294,"35":2000.000000294,"36":2000.000000294,"37":2000.000000294,"38":2000.000000294,"39":2000.000000294,"40":2000.000000294,"41":2000.000000294,"42":2000.000000294,"43":2000.000000294,"44":2000.000000294,"45":2000.000000294,"46":2000.000000294,"47":2000.000000294,"48":2000.000000294,"49":2000.000000294,"50":2000.000000294,"51":2000.000000294,"52":2000.000000294,"53":2000.000000294,"54":2000.000000294,"55":2000.000000294,"56":2000.000000294,"57":2000.000000294,"58":2000.000000294,"59":2000.000000294,"60":2000.000000294,"61":2000.000000294,"62":2000.000000294,"63":2000.000000294,"64":2000.000000294,"65":2000.000000294,"66":2000.000000294,"67":2000.000000294,"68":2000.000000294,"69":2000.000000294,"70":2000.000000294,"71":2000.000000294,"72":2000.000000294,"73":2000.000000294,"74":2000.000000294,"75":2000.000000294,"76":2000.000000294,"77":2000.000000294,"78":2000.000000294,"79":2000.000000294,"80":2000.000000294,"81":2000.000000294,"82":2000.000000294,"83":2000.000000294,"84":2000.000000294,"85":2000.000000294,"86":2000.000000294,"87":2000.000000294,"88":2000.000000294,"89":2000.000000294,"90":2000.000000294,"91":2000.000000294,"92":2000.000000294,"93":2000.000000294,"94":2000.000000294,"95":2000.000000294,"96":2000.000000294,"97":2000.000000294,"98":2000.000000294,"99":2000.000000294,"100":2000.000000294},"pressure_out":{"0":1500.0000002958,"1":1500.0000002958,"2":1500.0000002958,"3":1500.0000002958,"4":1500.0000002958,"5":1500.0000002958,"6":1500.0000002958,"7":1500.0000002958,"8":1500.0000002958,"9":1500.0000002958,"10":1500.0000002958,"11":1500.0000002958,"12":1500.0000002958,"13":1500.0000002958,"14":1500.0000002958,"15":1500.0000002958,"16":1500.0000002958,"17":1500.0000002958,"18":1500.0000002958,"19":1500.0000002958,"20":1500.0000002958,"21":1500.0000002958,"22":1500.0000002958,"23":1500.0000002958,"24":1500.0000002958,"25":1500.0000002958,"26":1500.0000002958,"27":1500.0000002958,"28":1500.0000002958,"29":1500.0000002958,"30":1500.0000002958,"31":1500.0000002958,"32":1500.0000002958,"33":1500.0000002958,"34":1500.0000002958,"35":1500.0000002958,"36":1500.0000002958,"37":1500.0000002958,"38":1500.0000002958,"39":1500.0000002958,"40":1500.0000002958,"41":1500.0000002958,"42":1500.0000002958,"43":1500.0000002958,"44":1500.0000002958,"45":1500.0000002958,"46":1500.0000002958,"47":1500.0000002958,"48":1500.0000002958,"49":1500.0000002958,"50":1500.0000002958,"51":1500.0000002958,"52":1500.0000002958,"53":1500.0000002958,"54":1500.0000002958,"55":1500.0000002958,"56":1500.0000002958,"57":1500.0000002958,"58":1500.0000002958,"59":1500.0000002958,"60":1500.0000002958,"61":1500.0000002958,"62":1500.0000002958,"63":1500.0000002958,"64":1500.0000002958,"65":1500.0000002958,"66":1500.0000002958,"67":1500.0000002958,"68":1500.0000002958,"69":1500.0000002958,"70":1500.0000002958,"71":1500.0000002958,"72":1500.0000002958,"73":1500.0000002958,"74":1500.0000002958,"75":1500.0000002958,"76":1500.0000002958,"77":1500.0000002958,"78":1500.0000002958,"79":1500.0000002958,"80":1500.0000002958,"81":1500.0000002958,"82":1500.0000002958,"83":1500.0000002958,"84":1500.0000002958,"85":1500.0000002958,"86":1500.0000002958,"87":1500.0000002958,"88":1500.0000002958,"89":1500.0000002958,"90":1500.0000002958,"91":1500.0000002958,"92":1500.0000002958,"93":1500.0000002958,"94":1500.0000002958,"95":1500.0000002958,"96":1500.0000002958,"97":1500.0000002958,"98":1500.0000002958,"99":1500.0000002958,"100":1500.0000002958}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch0_seg0", + "6": "branch0_seg0", + "7": "branch0_seg0", + "8": "branch0_seg0", + "9": "branch0_seg0", + "10": "branch0_seg0", + "11": "branch0_seg0", + "12": "branch0_seg0", + "13": "branch0_seg0", + "14": "branch0_seg0", + "15": "branch0_seg0", + "16": "branch0_seg0", + "17": "branch0_seg0", + "18": "branch0_seg0", + "19": "branch0_seg0", + "20": "branch0_seg0", + "21": "branch0_seg0", + "22": "branch0_seg0", + "23": "branch0_seg0", + "24": "branch0_seg0", + "25": "branch0_seg0", + "26": "branch0_seg0", + "27": "branch0_seg0", + "28": "branch0_seg0", + "29": "branch0_seg0", + "30": "branch0_seg0", + "31": "branch0_seg0", + "32": "branch0_seg0", + "33": "branch0_seg0", + "34": "branch0_seg0", + "35": "branch0_seg0", + "36": "branch0_seg0", + "37": "branch0_seg0", + "38": "branch0_seg0", + "39": "branch0_seg0", + "40": "branch0_seg0", + "41": "branch0_seg0", + "42": "branch0_seg0", + "43": "branch0_seg0", + "44": "branch0_seg0", + "45": "branch0_seg0", + "46": "branch0_seg0", + "47": "branch0_seg0", + "48": "branch0_seg0", + "49": "branch0_seg0", + "50": "branch0_seg0", + "51": "branch0_seg0", + "52": "branch0_seg0", + "53": "branch0_seg0", + "54": "branch0_seg0", + "55": "branch0_seg0", + "56": "branch0_seg0", + "57": "branch0_seg0", + "58": "branch0_seg0", + "59": "branch0_seg0", + "60": "branch0_seg0", + "61": "branch0_seg0", + "62": "branch0_seg0", + "63": "branch0_seg0", + "64": "branch0_seg0", + "65": "branch0_seg0", + "66": "branch0_seg0", + "67": "branch0_seg0", + "68": "branch0_seg0", + "69": "branch0_seg0", + "70": "branch0_seg0", + "71": "branch0_seg0", + "72": "branch0_seg0", + "73": "branch0_seg0", + "74": "branch0_seg0", + "75": "branch0_seg0", + "76": "branch0_seg0", + "77": "branch0_seg0", + "78": "branch0_seg0", + "79": "branch0_seg0", + "80": "branch0_seg0", + "81": "branch0_seg0", + "82": "branch0_seg0", + "83": "branch0_seg0", + "84": "branch0_seg0", + "85": "branch0_seg0", + "86": "branch0_seg0", + "87": "branch0_seg0", + "88": "branch0_seg0", + "89": "branch0_seg0", + "90": "branch0_seg0", + "91": "branch0_seg0", + "92": "branch0_seg0", + "93": "branch0_seg0", + "94": "branch0_seg0", + "95": "branch0_seg0", + "96": "branch0_seg0", + "97": "branch0_seg0", + "98": "branch0_seg0", + "99": "branch0_seg0", + "100": "branch0_seg0" + }, + "time": { + "0": 0.0, + "1": 0.01, + "2": 0.02, + "3": 0.03, + "4": 0.04, + "5": 0.05, + "6": 0.06, + "7": 0.07, + "8": 0.08, + "9": 0.09, + "10": 0.1, + "11": 0.11, + "12": 0.12, + "13": 0.13, + "14": 0.14, + "15": 0.15, + "16": 0.16, + "17": 0.17, + "18": 0.18, + "19": 0.19, + "20": 0.2, + "21": 0.21, + "22": 0.22, + "23": 0.23, + "24": 0.24, + "25": 0.25, + "26": 0.26, + "27": 0.27, + "28": 0.28, + "29": 0.29, + "30": 0.3, + "31": 0.31, + "32": 0.32, + "33": 0.33, + "34": 0.34, + "35": 0.35, + "36": 0.36, + "37": 0.37, + "38": 0.38, + "39": 0.39, + "40": 0.4, + "41": 0.41, + "42": 0.42, + "43": 0.43, + "44": 0.44, + "45": 0.45, + "46": 0.46, + "47": 0.47, + "48": 0.48, + "49": 0.49, + "50": 0.5, + "51": 0.51, + "52": 0.52, + "53": 0.53, + "54": 0.54, + "55": 0.55, + "56": 0.56, + "57": 0.57, + "58": 0.58, + "59": 0.59, + "60": 0.6, + "61": 0.61, + "62": 0.62, + "63": 0.63, + "64": 0.64, + "65": 0.65, + "66": 0.66, + "67": 0.67, + "68": 0.68, + "69": 0.69, + "70": 0.7, + "71": 0.71, + "72": 0.72, + "73": 0.73, + "74": 0.74, + "75": 0.75, + "76": 0.76, + "77": 0.77, + "78": 0.78, + "79": 0.79, + "80": 0.8, + "81": 0.81, + "82": 0.82, + "83": 0.83, + "84": 0.84, + "85": 0.85, + "86": 0.86, + "87": 0.87, + "88": 0.88, + "89": 0.89, + "90": 0.9, + "91": 0.91, + "92": 0.92, + "93": 0.93, + "94": 0.94, + "95": 0.95, + "96": 0.96, + "97": 0.97, + "98": 0.98, + "99": 0.99, + "100": 1.0 + }, + "flow_in": { + "0": 5.0, + "1": 5.0, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 5.0, + "6": 5.0, + "7": 5.0, + "8": 5.0, + "9": 5.0, + "10": 5.0, + "11": 5.0, + "12": 5.0, + "13": 5.0, + "14": 5.0, + "15": 5.0, + "16": 5.0, + "17": 5.0, + "18": 5.0, + "19": 5.0, + "20": 5.0, + "21": 5.0, + "22": 5.0, + "23": 5.0, + "24": 5.0, + "25": 5.0, + "26": 5.0, + "27": 5.0, + "28": 5.0, + "29": 5.0, + "30": 5.0, + "31": 5.0, + "32": 5.0, + "33": 5.0, + "34": 5.0, + "35": 5.0, + "36": 5.0, + "37": 5.0, + "38": 5.0, + "39": 5.0, + "40": 5.0, + "41": 5.0, + "42": 5.0, + "43": 5.0, + "44": 5.0, + "45": 5.0, + "46": 5.0, + "47": 5.0, + "48": 5.0, + "49": 5.0, + "50": 5.0, + "51": 5.0, + "52": 5.0, + "53": 5.0, + "54": 5.0, + "55": 5.0, + "56": 5.0, + "57": 5.0, + "58": 5.0, + "59": 5.0, + "60": 5.0, + "61": 5.0, + "62": 5.0, + "63": 5.0, + "64": 5.0, + "65": 5.0, + "66": 5.0, + "67": 5.0, + "68": 5.0, + "69": 5.0, + "70": 5.0, + "71": 5.0, + "72": 5.0, + "73": 5.0, + "74": 5.0, + "75": 5.0, + "76": 5.0, + "77": 5.0, + "78": 5.0, + "79": 5.0, + "80": 5.0, + "81": 5.0, + "82": 5.0, + "83": 5.0, + "84": 5.0, + "85": 5.0, + "86": 5.0, + "87": 5.0, + "88": 5.0, + "89": 5.0, + "90": 5.0, + "91": 5.0, + "92": 5.0, + "93": 5.0, + "94": 5.0, + "95": 5.0, + "96": 5.0, + "97": 5.0, + "98": 5.0, + "99": 5.0, + "100": 5.0 + }, + "flow_out": { + "0": 5.0, + "1": 5.0, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 5.0, + "6": 5.0, + "7": 5.0, + "8": 5.0, + "9": 5.0, + "10": 5.0, + "11": 5.0, + "12": 5.0, + "13": 5.0, + "14": 5.0, + "15": 5.0, + "16": 5.0, + "17": 5.0, + "18": 5.0, + "19": 5.0, + "20": 5.0, + "21": 5.0, + "22": 5.0, + "23": 5.0, + "24": 5.0, + "25": 5.0, + "26": 5.0, + "27": 5.0, + "28": 5.0, + "29": 5.0, + "30": 5.0, + "31": 5.0, + "32": 5.0, + "33": 5.0, + "34": 5.0, + "35": 5.0, + "36": 5.0, + "37": 5.0, + "38": 5.0, + "39": 5.0, + "40": 5.0, + "41": 5.0, + "42": 5.0, + "43": 5.0, + "44": 5.0, + "45": 5.0, + "46": 5.0, + "47": 5.0, + "48": 5.0, + "49": 5.0, + "50": 5.0, + "51": 5.0, + "52": 5.0, + "53": 5.0, + "54": 5.0, + "55": 5.0, + "56": 5.0, + "57": 5.0, + "58": 5.0, + "59": 5.0, + "60": 5.0, + "61": 5.0, + "62": 5.0, + "63": 5.0, + "64": 5.0, + "65": 5.0, + "66": 5.0, + "67": 5.0, + "68": 5.0, + "69": 5.0, + "70": 5.0, + "71": 5.0, + "72": 5.0, + "73": 5.0, + "74": 5.0, + "75": 5.0, + "76": 5.0, + "77": 5.0, + "78": 5.0, + "79": 5.0, + "80": 5.0, + "81": 5.0, + "82": 5.0, + "83": 5.0, + "84": 5.0, + "85": 5.0, + "86": 5.0, + "87": 5.0, + "88": 5.0, + "89": 5.0, + "90": 5.0, + "91": 5.0, + "92": 5.0, + "93": 5.0, + "94": 5.0, + "95": 5.0, + "96": 5.0, + "97": 5.0, + "98": 5.0, + "99": 5.0, + "100": 5.0 + }, + "pressure_in": { + "0": 2000.000000294, + "1": 2000.000000294, + "2": 2000.000000294, + "3": 2000.000000294, + "4": 2000.000000294, + "5": 2000.000000294, + "6": 2000.000000294, + "7": 2000.000000294, + "8": 2000.000000294, + "9": 2000.000000294, + "10": 2000.000000294, + "11": 2000.000000294, + "12": 2000.000000294, + "13": 2000.000000294, + "14": 2000.000000294, + "15": 2000.000000294, + "16": 2000.000000294, + "17": 2000.000000294, + "18": 2000.000000294, + "19": 2000.000000294, + "20": 2000.000000294, + "21": 2000.000000294, + "22": 2000.000000294, + "23": 2000.000000294, + "24": 2000.000000294, + "25": 2000.000000294, + "26": 2000.000000294, + "27": 2000.000000294, + "28": 2000.000000294, + "29": 2000.000000294, + "30": 2000.000000294, + "31": 2000.000000294, + "32": 2000.000000294, + "33": 2000.000000294, + "34": 2000.000000294, + "35": 2000.000000294, + "36": 2000.000000294, + "37": 2000.000000294, + "38": 2000.000000294, + "39": 2000.000000294, + "40": 2000.000000294, + "41": 2000.000000294, + "42": 2000.000000294, + "43": 2000.000000294, + "44": 2000.000000294, + "45": 2000.000000294, + "46": 2000.000000294, + "47": 2000.000000294, + "48": 2000.000000294, + "49": 2000.000000294, + "50": 2000.000000294, + "51": 2000.000000294, + "52": 2000.000000294, + "53": 2000.000000294, + "54": 2000.000000294, + "55": 2000.000000294, + "56": 2000.000000294, + "57": 2000.000000294, + "58": 2000.000000294, + "59": 2000.000000294, + "60": 2000.000000294, + "61": 2000.000000294, + "62": 2000.000000294, + "63": 2000.000000294, + "64": 2000.000000294, + "65": 2000.000000294, + "66": 2000.000000294, + "67": 2000.000000294, + "68": 2000.000000294, + "69": 2000.000000294, + "70": 2000.000000294, + "71": 2000.000000294, + "72": 2000.000000294, + "73": 2000.000000294, + "74": 2000.000000294, + "75": 2000.000000294, + "76": 2000.000000294, + "77": 2000.000000294, + "78": 2000.000000294, + "79": 2000.000000294, + "80": 2000.000000294, + "81": 2000.000000294, + "82": 2000.000000294, + "83": 2000.000000294, + "84": 2000.000000294, + "85": 2000.000000294, + "86": 2000.000000294, + "87": 2000.000000294, + "88": 2000.000000294, + "89": 2000.000000294, + "90": 2000.000000294, + "91": 2000.000000294, + "92": 2000.000000294, + "93": 2000.000000294, + "94": 2000.000000294, + "95": 2000.000000294, + "96": 2000.000000294, + "97": 2000.000000294, + "98": 2000.000000294, + "99": 2000.000000294, + "100": 2000.000000294 + }, + "pressure_out": { + "0": 1500.0000002958, + "1": 1500.0000002958, + "2": 1500.0000002958, + "3": 1500.0000002958, + "4": 1500.0000002958, + "5": 1500.0000002958, + "6": 1500.0000002958, + "7": 1500.0000002958, + "8": 1500.0000002958, + "9": 1500.0000002958, + "10": 1500.0000002958, + "11": 1500.0000002958, + "12": 1500.0000002958, + "13": 1500.0000002958, + "14": 1500.0000002958, + "15": 1500.0000002958, + "16": 1500.0000002958, + "17": 1500.0000002958, + "18": 1500.0000002958, + "19": 1500.0000002958, + "20": 1500.0000002958, + "21": 1500.0000002958, + "22": 1500.0000002958, + "23": 1500.0000002958, + "24": 1500.0000002958, + "25": 1500.0000002958, + "26": 1500.0000002958, + "27": 1500.0000002958, + "28": 1500.0000002958, + "29": 1500.0000002958, + "30": 1500.0000002958, + "31": 1500.0000002958, + "32": 1500.0000002958, + "33": 1500.0000002958, + "34": 1500.0000002958, + "35": 1500.0000002958, + "36": 1500.0000002958, + "37": 1500.0000002958, + "38": 1500.0000002958, + "39": 1500.0000002958, + "40": 1500.0000002958, + "41": 1500.0000002958, + "42": 1500.0000002958, + "43": 1500.0000002958, + "44": 1500.0000002958, + "45": 1500.0000002958, + "46": 1500.0000002958, + "47": 1500.0000002958, + "48": 1500.0000002958, + "49": 1500.0000002958, + "50": 1500.0000002958, + "51": 1500.0000002958, + "52": 1500.0000002958, + "53": 1500.0000002958, + "54": 1500.0000002958, + "55": 1500.0000002958, + "56": 1500.0000002958, + "57": 1500.0000002958, + "58": 1500.0000002958, + "59": 1500.0000002958, + "60": 1500.0000002958, + "61": 1500.0000002958, + "62": 1500.0000002958, + "63": 1500.0000002958, + "64": 1500.0000002958, + "65": 1500.0000002958, + "66": 1500.0000002958, + "67": 1500.0000002958, + "68": 1500.0000002958, + "69": 1500.0000002958, + "70": 1500.0000002958, + "71": 1500.0000002958, + "72": 1500.0000002958, + "73": 1500.0000002958, + "74": 1500.0000002958, + "75": 1500.0000002958, + "76": 1500.0000002958, + "77": 1500.0000002958, + "78": 1500.0000002958, + "79": 1500.0000002958, + "80": 1500.0000002958, + "81": 1500.0000002958, + "82": 1500.0000002958, + "83": 1500.0000002958, + "84": 1500.0000002958, + "85": 1500.0000002958, + "86": 1500.0000002958, + "87": 1500.0000002958, + "88": 1500.0000002958, + "89": 1500.0000002958, + "90": 1500.0000002958, + "91": 1500.0000002958, + "92": 1500.0000002958, + "93": 1500.0000002958, + "94": 1500.0000002958, + "95": 1500.0000002958, + "96": 1500.0000002958, + "97": 1500.0000002958, + "98": 1500.0000002958, + "99": 1500.0000002958, + "100": 1500.0000002958 + } +} diff --git a/tests/cases/results/result_steadyFlow_R_steadyPressure.json b/tests/cases/results/result_steadyFlow_R_steadyPressure.json index 98e7b1fe1..62a1e7af7 100644 --- a/tests/cases/results/result_steadyFlow_R_steadyPressure.json +++ b/tests/cases/results/result_steadyFlow_R_steadyPressure.json @@ -1 +1,38 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0"},"time":{"0":0.0,"1":0.25,"2":0.5,"3":0.75,"4":1.0},"flow_in":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0},"flow_out":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0},"pressure_in":{"0":1500.0000000437,"1":1499.9999999782,"2":1500.0000000109,"3":1499.9999999945,"4":1500.0000000027},"pressure_out":{"0":1000.0000000291,"1":999.9999999854,"2":1000.0000000073,"3":999.9999999964,"4":1000.0000000018}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0" + }, + "time": { "0": 0.0, "1": 0.25, "2": 0.5, "3": 0.75, "4": 1.0 }, + "flow_in": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0 + }, + "flow_out": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0 + }, + "pressure_in": { + "0": 1500.0000000437, + "1": 1499.9999999782, + "2": 1500.0000000109, + "3": 1499.9999999945, + "4": 1500.0000000027 + }, + "pressure_out": { + "0": 1000.0000000291, + "1": 999.9999999854, + "2": 1000.0000000073, + "3": 999.9999999964, + "4": 1000.0000000018 + } +} diff --git a/tests/cases/results/result_steadyFlow_bifurcationR_R1.json b/tests/cases/results/result_steadyFlow_bifurcationR_R1.json index 9e5e78e03..4c3da5378 100644 --- a/tests/cases/results/result_steadyFlow_bifurcationR_R1.json +++ b/tests/cases/results/result_steadyFlow_bifurcationR_R1.json @@ -1 +1,104 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch1_seg0","6":"branch1_seg0","7":"branch1_seg0","8":"branch1_seg0","9":"branch1_seg0","10":"branch2_seg0","11":"branch2_seg0","12":"branch2_seg0","13":"branch2_seg0","14":"branch2_seg0"},"time":{"0":0.0,"1":0.25,"2":0.5,"3":0.75,"4":1.0,"5":0.0,"6":0.25,"7":0.5,"8":0.75,"9":1.0,"10":0.0,"11":0.25,"12":0.5,"13":0.75,"14":1.0},"flow_in":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0,"5":2.5000000001,"6":2.5,"7":2.5,"8":2.5,"9":2.5,"10":2.5000000001,"11":2.5,"12":2.5,"13":2.5,"14":2.5},"flow_out":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0,"5":2.5000000001,"6":2.5,"7":2.5,"8":2.5,"9":2.5,"10":2.5000000001,"11":2.5,"12":2.5,"13":2.5,"14":2.5},"pressure_in":{"0":1100.000000032,"1":1099.999999984,"2":1100.000000008,"3":1100.000000008,"4":1100.000000008,"5":600.0000000175,"6":599.9999999913,"7":600.0000000044,"8":600.0000000044,"9":600.0000000044,"10":600.0000000175,"11":599.9999999913,"12":600.0000000044,"13":600.0000000044,"14":600.0000000044},"pressure_out":{"0":600.0000000175,"1":599.9999999913,"2":600.0000000044,"3":600.0000000044,"4":600.0000000044,"5":350.0000000102,"6":349.9999999949,"7":350.0000000025,"8":350.0000000025,"9":350.0000000025,"10":350.0000000102,"11":349.9999999949,"12":350.0000000025,"13":350.0000000025,"14":350.0000000025}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch1_seg0", + "6": "branch1_seg0", + "7": "branch1_seg0", + "8": "branch1_seg0", + "9": "branch1_seg0", + "10": "branch2_seg0", + "11": "branch2_seg0", + "12": "branch2_seg0", + "13": "branch2_seg0", + "14": "branch2_seg0" + }, + "time": { + "0": 0.0, + "1": 0.25, + "2": 0.5, + "3": 0.75, + "4": 1.0, + "5": 0.0, + "6": 0.25, + "7": 0.5, + "8": 0.75, + "9": 1.0, + "10": 0.0, + "11": 0.25, + "12": 0.5, + "13": 0.75, + "14": 1.0 + }, + "flow_in": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 2.5000000001, + "6": 2.5, + "7": 2.5, + "8": 2.5, + "9": 2.5, + "10": 2.5000000001, + "11": 2.5, + "12": 2.5, + "13": 2.5, + "14": 2.5 + }, + "flow_out": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 2.5000000001, + "6": 2.5, + "7": 2.5, + "8": 2.5, + "9": 2.5, + "10": 2.5000000001, + "11": 2.5, + "12": 2.5, + "13": 2.5, + "14": 2.5 + }, + "pressure_in": { + "0": 1100.000000032, + "1": 1099.999999984, + "2": 1100.000000008, + "3": 1100.000000008, + "4": 1100.000000008, + "5": 600.0000000175, + "6": 599.9999999913, + "7": 600.0000000044, + "8": 600.0000000044, + "9": 600.0000000044, + "10": 600.0000000175, + "11": 599.9999999913, + "12": 600.0000000044, + "13": 600.0000000044, + "14": 600.0000000044 + }, + "pressure_out": { + "0": 600.0000000175, + "1": 599.9999999913, + "2": 600.0000000044, + "3": 600.0000000044, + "4": 600.0000000044, + "5": 350.0000000102, + "6": 349.9999999949, + "7": 350.0000000025, + "8": 350.0000000025, + "9": 350.0000000025, + "10": 350.0000000102, + "11": 349.9999999949, + "12": 350.0000000025, + "13": 350.0000000025, + "14": 350.0000000025 + } +} diff --git a/tests/cases/results/result_steadyFlow_bifurcationR_R1_blockNames.json b/tests/cases/results/result_steadyFlow_bifurcationR_R1_blockNames.json index 9e5e78e03..4c3da5378 100644 --- a/tests/cases/results/result_steadyFlow_bifurcationR_R1_blockNames.json +++ b/tests/cases/results/result_steadyFlow_bifurcationR_R1_blockNames.json @@ -1 +1,104 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch1_seg0","6":"branch1_seg0","7":"branch1_seg0","8":"branch1_seg0","9":"branch1_seg0","10":"branch2_seg0","11":"branch2_seg0","12":"branch2_seg0","13":"branch2_seg0","14":"branch2_seg0"},"time":{"0":0.0,"1":0.25,"2":0.5,"3":0.75,"4":1.0,"5":0.0,"6":0.25,"7":0.5,"8":0.75,"9":1.0,"10":0.0,"11":0.25,"12":0.5,"13":0.75,"14":1.0},"flow_in":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0,"5":2.5000000001,"6":2.5,"7":2.5,"8":2.5,"9":2.5,"10":2.5000000001,"11":2.5,"12":2.5,"13":2.5,"14":2.5},"flow_out":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0,"5":2.5000000001,"6":2.5,"7":2.5,"8":2.5,"9":2.5,"10":2.5000000001,"11":2.5,"12":2.5,"13":2.5,"14":2.5},"pressure_in":{"0":1100.000000032,"1":1099.999999984,"2":1100.000000008,"3":1100.000000008,"4":1100.000000008,"5":600.0000000175,"6":599.9999999913,"7":600.0000000044,"8":600.0000000044,"9":600.0000000044,"10":600.0000000175,"11":599.9999999913,"12":600.0000000044,"13":600.0000000044,"14":600.0000000044},"pressure_out":{"0":600.0000000175,"1":599.9999999913,"2":600.0000000044,"3":600.0000000044,"4":600.0000000044,"5":350.0000000102,"6":349.9999999949,"7":350.0000000025,"8":350.0000000025,"9":350.0000000025,"10":350.0000000102,"11":349.9999999949,"12":350.0000000025,"13":350.0000000025,"14":350.0000000025}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch1_seg0", + "6": "branch1_seg0", + "7": "branch1_seg0", + "8": "branch1_seg0", + "9": "branch1_seg0", + "10": "branch2_seg0", + "11": "branch2_seg0", + "12": "branch2_seg0", + "13": "branch2_seg0", + "14": "branch2_seg0" + }, + "time": { + "0": 0.0, + "1": 0.25, + "2": 0.5, + "3": 0.75, + "4": 1.0, + "5": 0.0, + "6": 0.25, + "7": 0.5, + "8": 0.75, + "9": 1.0, + "10": 0.0, + "11": 0.25, + "12": 0.5, + "13": 0.75, + "14": 1.0 + }, + "flow_in": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 2.5000000001, + "6": 2.5, + "7": 2.5, + "8": 2.5, + "9": 2.5, + "10": 2.5000000001, + "11": 2.5, + "12": 2.5, + "13": 2.5, + "14": 2.5 + }, + "flow_out": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 2.5000000001, + "6": 2.5, + "7": 2.5, + "8": 2.5, + "9": 2.5, + "10": 2.5000000001, + "11": 2.5, + "12": 2.5, + "13": 2.5, + "14": 2.5 + }, + "pressure_in": { + "0": 1100.000000032, + "1": 1099.999999984, + "2": 1100.000000008, + "3": 1100.000000008, + "4": 1100.000000008, + "5": 600.0000000175, + "6": 599.9999999913, + "7": 600.0000000044, + "8": 600.0000000044, + "9": 600.0000000044, + "10": 600.0000000175, + "11": 599.9999999913, + "12": 600.0000000044, + "13": 600.0000000044, + "14": 600.0000000044 + }, + "pressure_out": { + "0": 600.0000000175, + "1": 599.9999999913, + "2": 600.0000000044, + "3": 600.0000000044, + "4": 600.0000000044, + "5": 350.0000000102, + "6": 349.9999999949, + "7": 350.0000000025, + "8": 350.0000000025, + "9": 350.0000000025, + "10": 350.0000000102, + "11": 349.9999999949, + "12": 350.0000000025, + "13": 350.0000000025, + "14": 350.0000000025 + } +} diff --git a/tests/cases/results/result_steadyFlow_bifurcationR_R2.json b/tests/cases/results/result_steadyFlow_bifurcationR_R2.json index d46da0ab5..87579dca8 100644 --- a/tests/cases/results/result_steadyFlow_bifurcationR_R2.json +++ b/tests/cases/results/result_steadyFlow_bifurcationR_R2.json @@ -1 +1,104 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch1_seg0","6":"branch1_seg0","7":"branch1_seg0","8":"branch1_seg0","9":"branch1_seg0","10":"branch2_seg0","11":"branch2_seg0","12":"branch2_seg0","13":"branch2_seg0","14":"branch2_seg0"},"time":{"0":0.0,"1":0.25,"2":0.5,"3":0.75,"4":1.0,"5":0.0,"6":0.25,"7":0.5,"8":0.75,"9":1.0,"10":0.0,"11":0.25,"12":0.5,"13":0.75,"14":1.0},"flow_in":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0,"5":3.8250000001,"6":3.8249999999,"7":3.825,"8":3.825,"9":3.825,"10":1.175,"11":1.175,"12":1.175,"13":1.175,"14":1.175},"flow_out":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0,"5":3.8250000001,"6":3.8249999999,"7":3.825,"8":3.825,"9":3.825,"10":1.175,"11":1.175,"12":1.175,"13":1.175,"14":1.175},"pressure_in":{"0":3462.5000001008,"1":3462.4999999496,"2":3462.5000000252,"3":3462.4999999874,"4":3462.4999999874,"5":1962.5000000571,"6":1962.4999999714,"7":1962.5000000143,"8":1962.4999999929,"9":1962.4999999929,"10":1962.5000000571,"11":1962.4999999714,"12":1962.5000000143,"13":1962.4999999929,"14":1962.4999999929},"pressure_out":{"0":1962.5000000571,"1":1962.4999999714,"2":1962.5000000143,"3":1962.4999999929,"4":1962.4999999929,"5":432.5000000126,"6":432.4999999937,"7":432.5000000031,"8":432.4999999984,"9":432.4999999984,"10":1375.00000004,"11":1374.99999998,"12":1375.00000001,"13":1374.999999995,"14":1374.999999995}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch1_seg0", + "6": "branch1_seg0", + "7": "branch1_seg0", + "8": "branch1_seg0", + "9": "branch1_seg0", + "10": "branch2_seg0", + "11": "branch2_seg0", + "12": "branch2_seg0", + "13": "branch2_seg0", + "14": "branch2_seg0" + }, + "time": { + "0": 0.0, + "1": 0.25, + "2": 0.5, + "3": 0.75, + "4": 1.0, + "5": 0.0, + "6": 0.25, + "7": 0.5, + "8": 0.75, + "9": 1.0, + "10": 0.0, + "11": 0.25, + "12": 0.5, + "13": 0.75, + "14": 1.0 + }, + "flow_in": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 3.8250000001, + "6": 3.8249999999, + "7": 3.825, + "8": 3.825, + "9": 3.825, + "10": 1.175, + "11": 1.175, + "12": 1.175, + "13": 1.175, + "14": 1.175 + }, + "flow_out": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 3.8250000001, + "6": 3.8249999999, + "7": 3.825, + "8": 3.825, + "9": 3.825, + "10": 1.175, + "11": 1.175, + "12": 1.175, + "13": 1.175, + "14": 1.175 + }, + "pressure_in": { + "0": 3462.5000001008, + "1": 3462.4999999496, + "2": 3462.5000000252, + "3": 3462.4999999874, + "4": 3462.4999999874, + "5": 1962.5000000571, + "6": 1962.4999999714, + "7": 1962.5000000143, + "8": 1962.4999999929, + "9": 1962.4999999929, + "10": 1962.5000000571, + "11": 1962.4999999714, + "12": 1962.5000000143, + "13": 1962.4999999929, + "14": 1962.4999999929 + }, + "pressure_out": { + "0": 1962.5000000571, + "1": 1962.4999999714, + "2": 1962.5000000143, + "3": 1962.4999999929, + "4": 1962.4999999929, + "5": 432.5000000126, + "6": 432.4999999937, + "7": 432.5000000031, + "8": 432.4999999984, + "9": 432.4999999984, + "10": 1375.00000004, + "11": 1374.99999998, + "12": 1375.00000001, + "13": 1374.999999995, + "14": 1374.999999995 + } +} diff --git a/tests/cases/results/result_steadyFlow_blood_vessel_junction.json b/tests/cases/results/result_steadyFlow_blood_vessel_junction.json index 6ff725b03..2ebfaefcf 100644 --- a/tests/cases/results/result_steadyFlow_blood_vessel_junction.json +++ b/tests/cases/results/result_steadyFlow_blood_vessel_junction.json @@ -1 +1,104 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch1_seg0","6":"branch1_seg0","7":"branch1_seg0","8":"branch1_seg0","9":"branch1_seg0","10":"branch2_seg0","11":"branch2_seg0","12":"branch2_seg0","13":"branch2_seg0","14":"branch2_seg0"},"time":{"0":0.0,"1":0.25,"2":0.5,"3":0.75,"4":1.0,"5":0.0,"6":0.25,"7":0.5,"8":0.75,"9":1.0,"10":0.0,"11":0.25,"12":0.5,"13":0.75,"14":1.0},"flow_in":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0,"5":3.8250000001,"6":3.8249999999,"7":3.825,"8":3.825,"9":3.825,"10":1.175,"11":1.175,"12":1.175,"13":1.175,"14":1.175},"flow_out":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0,"5":3.8250000001,"6":3.8249999999,"7":3.825,"8":3.825,"9":3.825,"10":1.175,"11":1.175,"12":1.175,"13":1.175,"14":1.175},"pressure_in":{"0":3462.5000001008,"1":3462.4999999496,"2":3462.5000000252,"3":3462.4999999874,"4":3462.4999999874,"5":1580.000000046,"6":1579.999999977,"7":1580.0000000115,"8":1579.9999999943,"9":1579.9999999943,"10":1727.5000000503,"11":1727.4999999749,"12":1727.5000000126,"13":1727.4999999937,"14":1727.4999999937},"pressure_out":{"0":1962.5000000571,"1":1962.4999999714,"2":1962.5000000143,"3":1962.4999999929,"4":1962.4999999929,"5":432.5000000126,"6":432.4999999937,"7":432.5000000031,"8":432.4999999984,"9":432.4999999984,"10":1375.00000004,"11":1374.99999998,"12":1375.00000001,"13":1374.999999995,"14":1374.999999995}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch1_seg0", + "6": "branch1_seg0", + "7": "branch1_seg0", + "8": "branch1_seg0", + "9": "branch1_seg0", + "10": "branch2_seg0", + "11": "branch2_seg0", + "12": "branch2_seg0", + "13": "branch2_seg0", + "14": "branch2_seg0" + }, + "time": { + "0": 0.0, + "1": 0.25, + "2": 0.5, + "3": 0.75, + "4": 1.0, + "5": 0.0, + "6": 0.25, + "7": 0.5, + "8": 0.75, + "9": 1.0, + "10": 0.0, + "11": 0.25, + "12": 0.5, + "13": 0.75, + "14": 1.0 + }, + "flow_in": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 3.8250000001, + "6": 3.8249999999, + "7": 3.825, + "8": 3.825, + "9": 3.825, + "10": 1.175, + "11": 1.175, + "12": 1.175, + "13": 1.175, + "14": 1.175 + }, + "flow_out": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 3.8250000001, + "6": 3.8249999999, + "7": 3.825, + "8": 3.825, + "9": 3.825, + "10": 1.175, + "11": 1.175, + "12": 1.175, + "13": 1.175, + "14": 1.175 + }, + "pressure_in": { + "0": 3462.5000001008, + "1": 3462.4999999496, + "2": 3462.5000000252, + "3": 3462.4999999874, + "4": 3462.4999999874, + "5": 1580.000000046, + "6": 1579.999999977, + "7": 1580.0000000115, + "8": 1579.9999999943, + "9": 1579.9999999943, + "10": 1727.5000000503, + "11": 1727.4999999749, + "12": 1727.5000000126, + "13": 1727.4999999937, + "14": 1727.4999999937 + }, + "pressure_out": { + "0": 1962.5000000571, + "1": 1962.4999999714, + "2": 1962.5000000143, + "3": 1962.4999999929, + "4": 1962.4999999929, + "5": 432.5000000126, + "6": 432.4999999937, + "7": 432.5000000031, + "8": 432.4999999984, + "9": 432.4999999984, + "10": 1375.00000004, + "11": 1374.99999998, + "12": 1375.00000001, + "13": 1374.999999995, + "14": 1374.999999995 + } +} diff --git a/tests/cases/results/result_steadyFlow_confluenceR_R.json b/tests/cases/results/result_steadyFlow_confluenceR_R.json index 7c9d90086..57d9dc82c 100644 --- a/tests/cases/results/result_steadyFlow_confluenceR_R.json +++ b/tests/cases/results/result_steadyFlow_confluenceR_R.json @@ -1 +1,104 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0","5":"branch1_seg0","6":"branch1_seg0","7":"branch1_seg0","8":"branch1_seg0","9":"branch1_seg0","10":"branch2_seg0","11":"branch2_seg0","12":"branch2_seg0","13":"branch2_seg0","14":"branch2_seg0"},"time":{"0":0.0,"1":0.25,"2":0.5,"3":0.75,"4":1.0,"5":0.0,"6":0.25,"7":0.5,"8":0.75,"9":1.0,"10":0.0,"11":0.25,"12":0.5,"13":0.75,"14":1.0},"flow_in":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0,"5":10.0000000003,"6":9.9999999999,"7":10.0000000001,"8":10.0000000001,"9":10.0000000001,"10":15.0000000004,"11":14.9999999998,"12":15.0000000001,"13":15.0000000001,"14":15.0000000001},"flow_out":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0,"5":10.0000000003,"6":9.9999999999,"7":10.0000000001,"8":10.0000000001,"9":10.0000000001,"10":15.0000000004,"11":14.9999999998,"12":15.0000000001,"13":15.0000000001,"14":15.0000000001},"pressure_in":{"0":6600.0000001921,"1":6599.999999904,"2":6600.000000048,"3":6600.000000048,"4":6600.000000048,"5":8100.0000002357,"6":8099.9999998821,"7":8100.0000000589,"8":8100.0000000589,"9":8100.0000000589,"10":6100.0000001775,"11":6099.9999999112,"12":6100.0000000444,"13":6100.0000000444,"14":6100.0000000444},"pressure_out":{"0":6100.0000001775,"1":6099.9999999112,"2":6100.0000000444,"3":6100.0000000444,"4":6100.0000000444,"5":6100.0000001775,"6":6099.9999999112,"7":6100.0000000444,"8":6100.0000000444,"9":6100.0000000444,"10":1600.0000000466,"11":1599.9999999767,"12":1600.0000000116,"13":1600.0000000116,"14":1600.0000000116}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0", + "5": "branch1_seg0", + "6": "branch1_seg0", + "7": "branch1_seg0", + "8": "branch1_seg0", + "9": "branch1_seg0", + "10": "branch2_seg0", + "11": "branch2_seg0", + "12": "branch2_seg0", + "13": "branch2_seg0", + "14": "branch2_seg0" + }, + "time": { + "0": 0.0, + "1": 0.25, + "2": 0.5, + "3": 0.75, + "4": 1.0, + "5": 0.0, + "6": 0.25, + "7": 0.5, + "8": 0.75, + "9": 1.0, + "10": 0.0, + "11": 0.25, + "12": 0.5, + "13": 0.75, + "14": 1.0 + }, + "flow_in": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 10.0000000003, + "6": 9.9999999999, + "7": 10.0000000001, + "8": 10.0000000001, + "9": 10.0000000001, + "10": 15.0000000004, + "11": 14.9999999998, + "12": 15.0000000001, + "13": 15.0000000001, + "14": 15.0000000001 + }, + "flow_out": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0, + "5": 10.0000000003, + "6": 9.9999999999, + "7": 10.0000000001, + "8": 10.0000000001, + "9": 10.0000000001, + "10": 15.0000000004, + "11": 14.9999999998, + "12": 15.0000000001, + "13": 15.0000000001, + "14": 15.0000000001 + }, + "pressure_in": { + "0": 6600.0000001921, + "1": 6599.999999904, + "2": 6600.000000048, + "3": 6600.000000048, + "4": 6600.000000048, + "5": 8100.0000002357, + "6": 8099.9999998821, + "7": 8100.0000000589, + "8": 8100.0000000589, + "9": 8100.0000000589, + "10": 6100.0000001775, + "11": 6099.9999999112, + "12": 6100.0000000444, + "13": 6100.0000000444, + "14": 6100.0000000444 + }, + "pressure_out": { + "0": 6100.0000001775, + "1": 6099.9999999112, + "2": 6100.0000000444, + "3": 6100.0000000444, + "4": 6100.0000000444, + "5": 6100.0000001775, + "6": 6099.9999999112, + "7": 6100.0000000444, + "8": 6100.0000000444, + "9": 6100.0000000444, + "10": 1600.0000000466, + "11": 1599.9999999767, + "12": 1600.0000000116, + "13": 1600.0000000116, + "14": 1600.0000000116 + } +} diff --git a/tests/cases/results/result_steadyFlow_stenosis_R.json b/tests/cases/results/result_steadyFlow_stenosis_R.json index 917a8f649..5c81e8000 100644 --- a/tests/cases/results/result_steadyFlow_stenosis_R.json +++ b/tests/cases/results/result_steadyFlow_stenosis_R.json @@ -1 +1,38 @@ -{"name":{"0":"branch0_seg0","1":"branch0_seg0","2":"branch0_seg0","3":"branch0_seg0","4":"branch0_seg0"},"time":{"0":0.0,"1":0.25,"2":0.5,"3":0.75,"4":1.0},"flow_in":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0},"flow_out":{"0":5.0000000001,"1":4.9999999999,"2":5.0,"3":5.0,"4":5.0},"pressure_in":{"0":3600.0000001048,"1":3599.9999999476,"2":3600.0000000262,"3":3599.9999999869,"4":3600.0000000065},"pressure_out":{"0":600.0000000175,"1":599.9999999913,"2":600.0000000044,"3":599.9999999978,"4":600.0000000011}} \ No newline at end of file +{ + "name": { + "0": "branch0_seg0", + "1": "branch0_seg0", + "2": "branch0_seg0", + "3": "branch0_seg0", + "4": "branch0_seg0" + }, + "time": { "0": 0.0, "1": 0.25, "2": 0.5, "3": 0.75, "4": 1.0 }, + "flow_in": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0 + }, + "flow_out": { + "0": 5.0000000001, + "1": 4.9999999999, + "2": 5.0, + "3": 5.0, + "4": 5.0 + }, + "pressure_in": { + "0": 3600.0000001048, + "1": 3599.9999999476, + "2": 3600.0000000262, + "3": 3599.9999999869, + "4": 3600.0000000065 + }, + "pressure_out": { + "0": 600.0000000175, + "1": 599.9999999913, + "2": 600.0000000044, + "3": 599.9999999978, + "4": 600.0000000011 + } +} diff --git a/tests/cases/results/result_valve_tanh.json b/tests/cases/results/result_valve_tanh.json index cb5f925d2..d72b129af 100644 --- a/tests/cases/results/result_valve_tanh.json +++ b/tests/cases/results/result_valve_tanh.json @@ -1 +1,2432 @@ -{"name":{"0":"flow:INLET:upstream_vessel","1":"flow:INLET:upstream_vessel","2":"flow:INLET:upstream_vessel","3":"flow:INLET:upstream_vessel","4":"flow:INLET:upstream_vessel","5":"flow:INLET:upstream_vessel","6":"flow:INLET:upstream_vessel","7":"flow:INLET:upstream_vessel","8":"flow:INLET:upstream_vessel","9":"flow:INLET:upstream_vessel","10":"flow:INLET:upstream_vessel","11":"flow:INLET:upstream_vessel","12":"flow:INLET:upstream_vessel","13":"flow:INLET:upstream_vessel","14":"flow:INLET:upstream_vessel","15":"flow:INLET:upstream_vessel","16":"flow:INLET:upstream_vessel","17":"flow:INLET:upstream_vessel","18":"flow:INLET:upstream_vessel","19":"flow:INLET:upstream_vessel","20":"flow:INLET:upstream_vessel","21":"flow:INLET:upstream_vessel","22":"flow:INLET:upstream_vessel","23":"flow:INLET:upstream_vessel","24":"flow:INLET:upstream_vessel","25":"flow:INLET:upstream_vessel","26":"flow:INLET:upstream_vessel","27":"flow:INLET:upstream_vessel","28":"flow:INLET:upstream_vessel","29":"flow:INLET:upstream_vessel","30":"flow:INLET:upstream_vessel","31":"flow:INLET:upstream_vessel","32":"flow:INLET:upstream_vessel","33":"flow:INLET:upstream_vessel","34":"flow:INLET:upstream_vessel","35":"flow:INLET:upstream_vessel","36":"flow:INLET:upstream_vessel","37":"flow:INLET:upstream_vessel","38":"flow:INLET:upstream_vessel","39":"flow:INLET:upstream_vessel","40":"flow:INLET:upstream_vessel","41":"flow:INLET:upstream_vessel","42":"flow:INLET:upstream_vessel","43":"flow:INLET:upstream_vessel","44":"flow:INLET:upstream_vessel","45":"flow:INLET:upstream_vessel","46":"flow:INLET:upstream_vessel","47":"flow:INLET:upstream_vessel","48":"flow:INLET:upstream_vessel","49":"flow:INLET:upstream_vessel","50":"flow:INLET:upstream_vessel","51":"flow:INLET:upstream_vessel","52":"flow:INLET:upstream_vessel","53":"flow:INLET:upstream_vessel","54":"flow:INLET:upstream_vessel","55":"flow:INLET:upstream_vessel","56":"flow:INLET:upstream_vessel","57":"flow:INLET:upstream_vessel","58":"flow:INLET:upstream_vessel","59":"flow:INLET:upstream_vessel","60":"flow:INLET:upstream_vessel","61":"flow:INLET:upstream_vessel","62":"flow:INLET:upstream_vessel","63":"flow:INLET:upstream_vessel","64":"flow:INLET:upstream_vessel","65":"flow:INLET:upstream_vessel","66":"flow:INLET:upstream_vessel","67":"flow:INLET:upstream_vessel","68":"flow:INLET:upstream_vessel","69":"flow:INLET:upstream_vessel","70":"flow:INLET:upstream_vessel","71":"flow:INLET:upstream_vessel","72":"flow:INLET:upstream_vessel","73":"flow:INLET:upstream_vessel","74":"flow:INLET:upstream_vessel","75":"flow:INLET:upstream_vessel","76":"flow:INLET:upstream_vessel","77":"flow:INLET:upstream_vessel","78":"flow:INLET:upstream_vessel","79":"flow:INLET:upstream_vessel","80":"flow:INLET:upstream_vessel","81":"flow:INLET:upstream_vessel","82":"flow:INLET:upstream_vessel","83":"flow:INLET:upstream_vessel","84":"flow:INLET:upstream_vessel","85":"flow:INLET:upstream_vessel","86":"flow:INLET:upstream_vessel","87":"flow:INLET:upstream_vessel","88":"flow:INLET:upstream_vessel","89":"flow:INLET:upstream_vessel","90":"flow:INLET:upstream_vessel","91":"flow:INLET:upstream_vessel","92":"flow:INLET:upstream_vessel","93":"flow:INLET:upstream_vessel","94":"flow:INLET:upstream_vessel","95":"flow:INLET:upstream_vessel","96":"flow:INLET:upstream_vessel","97":"flow:INLET:upstream_vessel","98":"flow:INLET:upstream_vessel","99":"flow:INLET:upstream_vessel","100":"flow:INLET:upstream_vessel","101":"pressure:INLET:upstream_vessel","102":"pressure:INLET:upstream_vessel","103":"pressure:INLET:upstream_vessel","104":"pressure:INLET:upstream_vessel","105":"pressure:INLET:upstream_vessel","106":"pressure:INLET:upstream_vessel","107":"pressure:INLET:upstream_vessel","108":"pressure:INLET:upstream_vessel","109":"pressure:INLET:upstream_vessel","110":"pressure:INLET:upstream_vessel","111":"pressure:INLET:upstream_vessel","112":"pressure:INLET:upstream_vessel","113":"pressure:INLET:upstream_vessel","114":"pressure:INLET:upstream_vessel","115":"pressure:INLET:upstream_vessel","116":"pressure:INLET:upstream_vessel","117":"pressure:INLET:upstream_vessel","118":"pressure:INLET:upstream_vessel","119":"pressure:INLET:upstream_vessel","120":"pressure:INLET:upstream_vessel","121":"pressure:INLET:upstream_vessel","122":"pressure:INLET:upstream_vessel","123":"pressure:INLET:upstream_vessel","124":"pressure:INLET:upstream_vessel","125":"pressure:INLET:upstream_vessel","126":"pressure:INLET:upstream_vessel","127":"pressure:INLET:upstream_vessel","128":"pressure:INLET:upstream_vessel","129":"pressure:INLET:upstream_vessel","130":"pressure:INLET:upstream_vessel","131":"pressure:INLET:upstream_vessel","132":"pressure:INLET:upstream_vessel","133":"pressure:INLET:upstream_vessel","134":"pressure:INLET:upstream_vessel","135":"pressure:INLET:upstream_vessel","136":"pressure:INLET:upstream_vessel","137":"pressure:INLET:upstream_vessel","138":"pressure:INLET:upstream_vessel","139":"pressure:INLET:upstream_vessel","140":"pressure:INLET:upstream_vessel","141":"pressure:INLET:upstream_vessel","142":"pressure:INLET:upstream_vessel","143":"pressure:INLET:upstream_vessel","144":"pressure:INLET:upstream_vessel","145":"pressure:INLET:upstream_vessel","146":"pressure:INLET:upstream_vessel","147":"pressure:INLET:upstream_vessel","148":"pressure:INLET:upstream_vessel","149":"pressure:INLET:upstream_vessel","150":"pressure:INLET:upstream_vessel","151":"pressure:INLET:upstream_vessel","152":"pressure:INLET:upstream_vessel","153":"pressure:INLET:upstream_vessel","154":"pressure:INLET:upstream_vessel","155":"pressure:INLET:upstream_vessel","156":"pressure:INLET:upstream_vessel","157":"pressure:INLET:upstream_vessel","158":"pressure:INLET:upstream_vessel","159":"pressure:INLET:upstream_vessel","160":"pressure:INLET:upstream_vessel","161":"pressure:INLET:upstream_vessel","162":"pressure:INLET:upstream_vessel","163":"pressure:INLET:upstream_vessel","164":"pressure:INLET:upstream_vessel","165":"pressure:INLET:upstream_vessel","166":"pressure:INLET:upstream_vessel","167":"pressure:INLET:upstream_vessel","168":"pressure:INLET:upstream_vessel","169":"pressure:INLET:upstream_vessel","170":"pressure:INLET:upstream_vessel","171":"pressure:INLET:upstream_vessel","172":"pressure:INLET:upstream_vessel","173":"pressure:INLET:upstream_vessel","174":"pressure:INLET:upstream_vessel","175":"pressure:INLET:upstream_vessel","176":"pressure:INLET:upstream_vessel","177":"pressure:INLET:upstream_vessel","178":"pressure:INLET:upstream_vessel","179":"pressure:INLET:upstream_vessel","180":"pressure:INLET:upstream_vessel","181":"pressure:INLET:upstream_vessel","182":"pressure:INLET:upstream_vessel","183":"pressure:INLET:upstream_vessel","184":"pressure:INLET:upstream_vessel","185":"pressure:INLET:upstream_vessel","186":"pressure:INLET:upstream_vessel","187":"pressure:INLET:upstream_vessel","188":"pressure:INLET:upstream_vessel","189":"pressure:INLET:upstream_vessel","190":"pressure:INLET:upstream_vessel","191":"pressure:INLET:upstream_vessel","192":"pressure:INLET:upstream_vessel","193":"pressure:INLET:upstream_vessel","194":"pressure:INLET:upstream_vessel","195":"pressure:INLET:upstream_vessel","196":"pressure:INLET:upstream_vessel","197":"pressure:INLET:upstream_vessel","198":"pressure:INLET:upstream_vessel","199":"pressure:INLET:upstream_vessel","200":"pressure:INLET:upstream_vessel","201":"pressure:INLET:upstream_vessel","202":"flow:downstream_vessel:OUTLET","203":"flow:downstream_vessel:OUTLET","204":"flow:downstream_vessel:OUTLET","205":"flow:downstream_vessel:OUTLET","206":"flow:downstream_vessel:OUTLET","207":"flow:downstream_vessel:OUTLET","208":"flow:downstream_vessel:OUTLET","209":"flow:downstream_vessel:OUTLET","210":"flow:downstream_vessel:OUTLET","211":"flow:downstream_vessel:OUTLET","212":"flow:downstream_vessel:OUTLET","213":"flow:downstream_vessel:OUTLET","214":"flow:downstream_vessel:OUTLET","215":"flow:downstream_vessel:OUTLET","216":"flow:downstream_vessel:OUTLET","217":"flow:downstream_vessel:OUTLET","218":"flow:downstream_vessel:OUTLET","219":"flow:downstream_vessel:OUTLET","220":"flow:downstream_vessel:OUTLET","221":"flow:downstream_vessel:OUTLET","222":"flow:downstream_vessel:OUTLET","223":"flow:downstream_vessel:OUTLET","224":"flow:downstream_vessel:OUTLET","225":"flow:downstream_vessel:OUTLET","226":"flow:downstream_vessel:OUTLET","227":"flow:downstream_vessel:OUTLET","228":"flow:downstream_vessel:OUTLET","229":"flow:downstream_vessel:OUTLET","230":"flow:downstream_vessel:OUTLET","231":"flow:downstream_vessel:OUTLET","232":"flow:downstream_vessel:OUTLET","233":"flow:downstream_vessel:OUTLET","234":"flow:downstream_vessel:OUTLET","235":"flow:downstream_vessel:OUTLET","236":"flow:downstream_vessel:OUTLET","237":"flow:downstream_vessel:OUTLET","238":"flow:downstream_vessel:OUTLET","239":"flow:downstream_vessel:OUTLET","240":"flow:downstream_vessel:OUTLET","241":"flow:downstream_vessel:OUTLET","242":"flow:downstream_vessel:OUTLET","243":"flow:downstream_vessel:OUTLET","244":"flow:downstream_vessel:OUTLET","245":"flow:downstream_vessel:OUTLET","246":"flow:downstream_vessel:OUTLET","247":"flow:downstream_vessel:OUTLET","248":"flow:downstream_vessel:OUTLET","249":"flow:downstream_vessel:OUTLET","250":"flow:downstream_vessel:OUTLET","251":"flow:downstream_vessel:OUTLET","252":"flow:downstream_vessel:OUTLET","253":"flow:downstream_vessel:OUTLET","254":"flow:downstream_vessel:OUTLET","255":"flow:downstream_vessel:OUTLET","256":"flow:downstream_vessel:OUTLET","257":"flow:downstream_vessel:OUTLET","258":"flow:downstream_vessel:OUTLET","259":"flow:downstream_vessel:OUTLET","260":"flow:downstream_vessel:OUTLET","261":"flow:downstream_vessel:OUTLET","262":"flow:downstream_vessel:OUTLET","263":"flow:downstream_vessel:OUTLET","264":"flow:downstream_vessel:OUTLET","265":"flow:downstream_vessel:OUTLET","266":"flow:downstream_vessel:OUTLET","267":"flow:downstream_vessel:OUTLET","268":"flow:downstream_vessel:OUTLET","269":"flow:downstream_vessel:OUTLET","270":"flow:downstream_vessel:OUTLET","271":"flow:downstream_vessel:OUTLET","272":"flow:downstream_vessel:OUTLET","273":"flow:downstream_vessel:OUTLET","274":"flow:downstream_vessel:OUTLET","275":"flow:downstream_vessel:OUTLET","276":"flow:downstream_vessel:OUTLET","277":"flow:downstream_vessel:OUTLET","278":"flow:downstream_vessel:OUTLET","279":"flow:downstream_vessel:OUTLET","280":"flow:downstream_vessel:OUTLET","281":"flow:downstream_vessel:OUTLET","282":"flow:downstream_vessel:OUTLET","283":"flow:downstream_vessel:OUTLET","284":"flow:downstream_vessel:OUTLET","285":"flow:downstream_vessel:OUTLET","286":"flow:downstream_vessel:OUTLET","287":"flow:downstream_vessel:OUTLET","288":"flow:downstream_vessel:OUTLET","289":"flow:downstream_vessel:OUTLET","290":"flow:downstream_vessel:OUTLET","291":"flow:downstream_vessel:OUTLET","292":"flow:downstream_vessel:OUTLET","293":"flow:downstream_vessel:OUTLET","294":"flow:downstream_vessel:OUTLET","295":"flow:downstream_vessel:OUTLET","296":"flow:downstream_vessel:OUTLET","297":"flow:downstream_vessel:OUTLET","298":"flow:downstream_vessel:OUTLET","299":"flow:downstream_vessel:OUTLET","300":"flow:downstream_vessel:OUTLET","301":"flow:downstream_vessel:OUTLET","302":"flow:downstream_vessel:OUTLET","303":"pressure:downstream_vessel:OUTLET","304":"pressure:downstream_vessel:OUTLET","305":"pressure:downstream_vessel:OUTLET","306":"pressure:downstream_vessel:OUTLET","307":"pressure:downstream_vessel:OUTLET","308":"pressure:downstream_vessel:OUTLET","309":"pressure:downstream_vessel:OUTLET","310":"pressure:downstream_vessel:OUTLET","311":"pressure:downstream_vessel:OUTLET","312":"pressure:downstream_vessel:OUTLET","313":"pressure:downstream_vessel:OUTLET","314":"pressure:downstream_vessel:OUTLET","315":"pressure:downstream_vessel:OUTLET","316":"pressure:downstream_vessel:OUTLET","317":"pressure:downstream_vessel:OUTLET","318":"pressure:downstream_vessel:OUTLET","319":"pressure:downstream_vessel:OUTLET","320":"pressure:downstream_vessel:OUTLET","321":"pressure:downstream_vessel:OUTLET","322":"pressure:downstream_vessel:OUTLET","323":"pressure:downstream_vessel:OUTLET","324":"pressure:downstream_vessel:OUTLET","325":"pressure:downstream_vessel:OUTLET","326":"pressure:downstream_vessel:OUTLET","327":"pressure:downstream_vessel:OUTLET","328":"pressure:downstream_vessel:OUTLET","329":"pressure:downstream_vessel:OUTLET","330":"pressure:downstream_vessel:OUTLET","331":"pressure:downstream_vessel:OUTLET","332":"pressure:downstream_vessel:OUTLET","333":"pressure:downstream_vessel:OUTLET","334":"pressure:downstream_vessel:OUTLET","335":"pressure:downstream_vessel:OUTLET","336":"pressure:downstream_vessel:OUTLET","337":"pressure:downstream_vessel:OUTLET","338":"pressure:downstream_vessel:OUTLET","339":"pressure:downstream_vessel:OUTLET","340":"pressure:downstream_vessel:OUTLET","341":"pressure:downstream_vessel:OUTLET","342":"pressure:downstream_vessel:OUTLET","343":"pressure:downstream_vessel:OUTLET","344":"pressure:downstream_vessel:OUTLET","345":"pressure:downstream_vessel:OUTLET","346":"pressure:downstream_vessel:OUTLET","347":"pressure:downstream_vessel:OUTLET","348":"pressure:downstream_vessel:OUTLET","349":"pressure:downstream_vessel:OUTLET","350":"pressure:downstream_vessel:OUTLET","351":"pressure:downstream_vessel:OUTLET","352":"pressure:downstream_vessel:OUTLET","353":"pressure:downstream_vessel:OUTLET","354":"pressure:downstream_vessel:OUTLET","355":"pressure:downstream_vessel:OUTLET","356":"pressure:downstream_vessel:OUTLET","357":"pressure:downstream_vessel:OUTLET","358":"pressure:downstream_vessel:OUTLET","359":"pressure:downstream_vessel:OUTLET","360":"pressure:downstream_vessel:OUTLET","361":"pressure:downstream_vessel:OUTLET","362":"pressure:downstream_vessel:OUTLET","363":"pressure:downstream_vessel:OUTLET","364":"pressure:downstream_vessel:OUTLET","365":"pressure:downstream_vessel:OUTLET","366":"pressure:downstream_vessel:OUTLET","367":"pressure:downstream_vessel:OUTLET","368":"pressure:downstream_vessel:OUTLET","369":"pressure:downstream_vessel:OUTLET","370":"pressure:downstream_vessel:OUTLET","371":"pressure:downstream_vessel:OUTLET","372":"pressure:downstream_vessel:OUTLET","373":"pressure:downstream_vessel:OUTLET","374":"pressure:downstream_vessel:OUTLET","375":"pressure:downstream_vessel:OUTLET","376":"pressure:downstream_vessel:OUTLET","377":"pressure:downstream_vessel:OUTLET","378":"pressure:downstream_vessel:OUTLET","379":"pressure:downstream_vessel:OUTLET","380":"pressure:downstream_vessel:OUTLET","381":"pressure:downstream_vessel:OUTLET","382":"pressure:downstream_vessel:OUTLET","383":"pressure:downstream_vessel:OUTLET","384":"pressure:downstream_vessel:OUTLET","385":"pressure:downstream_vessel:OUTLET","386":"pressure:downstream_vessel:OUTLET","387":"pressure:downstream_vessel:OUTLET","388":"pressure:downstream_vessel:OUTLET","389":"pressure:downstream_vessel:OUTLET","390":"pressure:downstream_vessel:OUTLET","391":"pressure:downstream_vessel:OUTLET","392":"pressure:downstream_vessel:OUTLET","393":"pressure:downstream_vessel:OUTLET","394":"pressure:downstream_vessel:OUTLET","395":"pressure:downstream_vessel:OUTLET","396":"pressure:downstream_vessel:OUTLET","397":"pressure:downstream_vessel:OUTLET","398":"pressure:downstream_vessel:OUTLET","399":"pressure:downstream_vessel:OUTLET","400":"pressure:downstream_vessel:OUTLET","401":"pressure:downstream_vessel:OUTLET","402":"pressure:downstream_vessel:OUTLET","403":"pressure:downstream_vessel:OUTLET","404":"flow:upstream_vessel:valve","405":"flow:upstream_vessel:valve","406":"flow:upstream_vessel:valve","407":"flow:upstream_vessel:valve","408":"flow:upstream_vessel:valve","409":"flow:upstream_vessel:valve","410":"flow:upstream_vessel:valve","411":"flow:upstream_vessel:valve","412":"flow:upstream_vessel:valve","413":"flow:upstream_vessel:valve","414":"flow:upstream_vessel:valve","415":"flow:upstream_vessel:valve","416":"flow:upstream_vessel:valve","417":"flow:upstream_vessel:valve","418":"flow:upstream_vessel:valve","419":"flow:upstream_vessel:valve","420":"flow:upstream_vessel:valve","421":"flow:upstream_vessel:valve","422":"flow:upstream_vessel:valve","423":"flow:upstream_vessel:valve","424":"flow:upstream_vessel:valve","425":"flow:upstream_vessel:valve","426":"flow:upstream_vessel:valve","427":"flow:upstream_vessel:valve","428":"flow:upstream_vessel:valve","429":"flow:upstream_vessel:valve","430":"flow:upstream_vessel:valve","431":"flow:upstream_vessel:valve","432":"flow:upstream_vessel:valve","433":"flow:upstream_vessel:valve","434":"flow:upstream_vessel:valve","435":"flow:upstream_vessel:valve","436":"flow:upstream_vessel:valve","437":"flow:upstream_vessel:valve","438":"flow:upstream_vessel:valve","439":"flow:upstream_vessel:valve","440":"flow:upstream_vessel:valve","441":"flow:upstream_vessel:valve","442":"flow:upstream_vessel:valve","443":"flow:upstream_vessel:valve","444":"flow:upstream_vessel:valve","445":"flow:upstream_vessel:valve","446":"flow:upstream_vessel:valve","447":"flow:upstream_vessel:valve","448":"flow:upstream_vessel:valve","449":"flow:upstream_vessel:valve","450":"flow:upstream_vessel:valve","451":"flow:upstream_vessel:valve","452":"flow:upstream_vessel:valve","453":"flow:upstream_vessel:valve","454":"flow:upstream_vessel:valve","455":"flow:upstream_vessel:valve","456":"flow:upstream_vessel:valve","457":"flow:upstream_vessel:valve","458":"flow:upstream_vessel:valve","459":"flow:upstream_vessel:valve","460":"flow:upstream_vessel:valve","461":"flow:upstream_vessel:valve","462":"flow:upstream_vessel:valve","463":"flow:upstream_vessel:valve","464":"flow:upstream_vessel:valve","465":"flow:upstream_vessel:valve","466":"flow:upstream_vessel:valve","467":"flow:upstream_vessel:valve","468":"flow:upstream_vessel:valve","469":"flow:upstream_vessel:valve","470":"flow:upstream_vessel:valve","471":"flow:upstream_vessel:valve","472":"flow:upstream_vessel:valve","473":"flow:upstream_vessel:valve","474":"flow:upstream_vessel:valve","475":"flow:upstream_vessel:valve","476":"flow:upstream_vessel:valve","477":"flow:upstream_vessel:valve","478":"flow:upstream_vessel:valve","479":"flow:upstream_vessel:valve","480":"flow:upstream_vessel:valve","481":"flow:upstream_vessel:valve","482":"flow:upstream_vessel:valve","483":"flow:upstream_vessel:valve","484":"flow:upstream_vessel:valve","485":"flow:upstream_vessel:valve","486":"flow:upstream_vessel:valve","487":"flow:upstream_vessel:valve","488":"flow:upstream_vessel:valve","489":"flow:upstream_vessel:valve","490":"flow:upstream_vessel:valve","491":"flow:upstream_vessel:valve","492":"flow:upstream_vessel:valve","493":"flow:upstream_vessel:valve","494":"flow:upstream_vessel:valve","495":"flow:upstream_vessel:valve","496":"flow:upstream_vessel:valve","497":"flow:upstream_vessel:valve","498":"flow:upstream_vessel:valve","499":"flow:upstream_vessel:valve","500":"flow:upstream_vessel:valve","501":"flow:upstream_vessel:valve","502":"flow:upstream_vessel:valve","503":"flow:upstream_vessel:valve","504":"flow:upstream_vessel:valve","505":"pressure:upstream_vessel:valve","506":"pressure:upstream_vessel:valve","507":"pressure:upstream_vessel:valve","508":"pressure:upstream_vessel:valve","509":"pressure:upstream_vessel:valve","510":"pressure:upstream_vessel:valve","511":"pressure:upstream_vessel:valve","512":"pressure:upstream_vessel:valve","513":"pressure:upstream_vessel:valve","514":"pressure:upstream_vessel:valve","515":"pressure:upstream_vessel:valve","516":"pressure:upstream_vessel:valve","517":"pressure:upstream_vessel:valve","518":"pressure:upstream_vessel:valve","519":"pressure:upstream_vessel:valve","520":"pressure:upstream_vessel:valve","521":"pressure:upstream_vessel:valve","522":"pressure:upstream_vessel:valve","523":"pressure:upstream_vessel:valve","524":"pressure:upstream_vessel:valve","525":"pressure:upstream_vessel:valve","526":"pressure:upstream_vessel:valve","527":"pressure:upstream_vessel:valve","528":"pressure:upstream_vessel:valve","529":"pressure:upstream_vessel:valve","530":"pressure:upstream_vessel:valve","531":"pressure:upstream_vessel:valve","532":"pressure:upstream_vessel:valve","533":"pressure:upstream_vessel:valve","534":"pressure:upstream_vessel:valve","535":"pressure:upstream_vessel:valve","536":"pressure:upstream_vessel:valve","537":"pressure:upstream_vessel:valve","538":"pressure:upstream_vessel:valve","539":"pressure:upstream_vessel:valve","540":"pressure:upstream_vessel:valve","541":"pressure:upstream_vessel:valve","542":"pressure:upstream_vessel:valve","543":"pressure:upstream_vessel:valve","544":"pressure:upstream_vessel:valve","545":"pressure:upstream_vessel:valve","546":"pressure:upstream_vessel:valve","547":"pressure:upstream_vessel:valve","548":"pressure:upstream_vessel:valve","549":"pressure:upstream_vessel:valve","550":"pressure:upstream_vessel:valve","551":"pressure:upstream_vessel:valve","552":"pressure:upstream_vessel:valve","553":"pressure:upstream_vessel:valve","554":"pressure:upstream_vessel:valve","555":"pressure:upstream_vessel:valve","556":"pressure:upstream_vessel:valve","557":"pressure:upstream_vessel:valve","558":"pressure:upstream_vessel:valve","559":"pressure:upstream_vessel:valve","560":"pressure:upstream_vessel:valve","561":"pressure:upstream_vessel:valve","562":"pressure:upstream_vessel:valve","563":"pressure:upstream_vessel:valve","564":"pressure:upstream_vessel:valve","565":"pressure:upstream_vessel:valve","566":"pressure:upstream_vessel:valve","567":"pressure:upstream_vessel:valve","568":"pressure:upstream_vessel:valve","569":"pressure:upstream_vessel:valve","570":"pressure:upstream_vessel:valve","571":"pressure:upstream_vessel:valve","572":"pressure:upstream_vessel:valve","573":"pressure:upstream_vessel:valve","574":"pressure:upstream_vessel:valve","575":"pressure:upstream_vessel:valve","576":"pressure:upstream_vessel:valve","577":"pressure:upstream_vessel:valve","578":"pressure:upstream_vessel:valve","579":"pressure:upstream_vessel:valve","580":"pressure:upstream_vessel:valve","581":"pressure:upstream_vessel:valve","582":"pressure:upstream_vessel:valve","583":"pressure:upstream_vessel:valve","584":"pressure:upstream_vessel:valve","585":"pressure:upstream_vessel:valve","586":"pressure:upstream_vessel:valve","587":"pressure:upstream_vessel:valve","588":"pressure:upstream_vessel:valve","589":"pressure:upstream_vessel:valve","590":"pressure:upstream_vessel:valve","591":"pressure:upstream_vessel:valve","592":"pressure:upstream_vessel:valve","593":"pressure:upstream_vessel:valve","594":"pressure:upstream_vessel:valve","595":"pressure:upstream_vessel:valve","596":"pressure:upstream_vessel:valve","597":"pressure:upstream_vessel:valve","598":"pressure:upstream_vessel:valve","599":"pressure:upstream_vessel:valve","600":"pressure:upstream_vessel:valve","601":"pressure:upstream_vessel:valve","602":"pressure:upstream_vessel:valve","603":"pressure:upstream_vessel:valve","604":"pressure:upstream_vessel:valve","605":"pressure:upstream_vessel:valve","606":"flow:valve:downstream_vessel","607":"flow:valve:downstream_vessel","608":"flow:valve:downstream_vessel","609":"flow:valve:downstream_vessel","610":"flow:valve:downstream_vessel","611":"flow:valve:downstream_vessel","612":"flow:valve:downstream_vessel","613":"flow:valve:downstream_vessel","614":"flow:valve:downstream_vessel","615":"flow:valve:downstream_vessel","616":"flow:valve:downstream_vessel","617":"flow:valve:downstream_vessel","618":"flow:valve:downstream_vessel","619":"flow:valve:downstream_vessel","620":"flow:valve:downstream_vessel","621":"flow:valve:downstream_vessel","622":"flow:valve:downstream_vessel","623":"flow:valve:downstream_vessel","624":"flow:valve:downstream_vessel","625":"flow:valve:downstream_vessel","626":"flow:valve:downstream_vessel","627":"flow:valve:downstream_vessel","628":"flow:valve:downstream_vessel","629":"flow:valve:downstream_vessel","630":"flow:valve:downstream_vessel","631":"flow:valve:downstream_vessel","632":"flow:valve:downstream_vessel","633":"flow:valve:downstream_vessel","634":"flow:valve:downstream_vessel","635":"flow:valve:downstream_vessel","636":"flow:valve:downstream_vessel","637":"flow:valve:downstream_vessel","638":"flow:valve:downstream_vessel","639":"flow:valve:downstream_vessel","640":"flow:valve:downstream_vessel","641":"flow:valve:downstream_vessel","642":"flow:valve:downstream_vessel","643":"flow:valve:downstream_vessel","644":"flow:valve:downstream_vessel","645":"flow:valve:downstream_vessel","646":"flow:valve:downstream_vessel","647":"flow:valve:downstream_vessel","648":"flow:valve:downstream_vessel","649":"flow:valve:downstream_vessel","650":"flow:valve:downstream_vessel","651":"flow:valve:downstream_vessel","652":"flow:valve:downstream_vessel","653":"flow:valve:downstream_vessel","654":"flow:valve:downstream_vessel","655":"flow:valve:downstream_vessel","656":"flow:valve:downstream_vessel","657":"flow:valve:downstream_vessel","658":"flow:valve:downstream_vessel","659":"flow:valve:downstream_vessel","660":"flow:valve:downstream_vessel","661":"flow:valve:downstream_vessel","662":"flow:valve:downstream_vessel","663":"flow:valve:downstream_vessel","664":"flow:valve:downstream_vessel","665":"flow:valve:downstream_vessel","666":"flow:valve:downstream_vessel","667":"flow:valve:downstream_vessel","668":"flow:valve:downstream_vessel","669":"flow:valve:downstream_vessel","670":"flow:valve:downstream_vessel","671":"flow:valve:downstream_vessel","672":"flow:valve:downstream_vessel","673":"flow:valve:downstream_vessel","674":"flow:valve:downstream_vessel","675":"flow:valve:downstream_vessel","676":"flow:valve:downstream_vessel","677":"flow:valve:downstream_vessel","678":"flow:valve:downstream_vessel","679":"flow:valve:downstream_vessel","680":"flow:valve:downstream_vessel","681":"flow:valve:downstream_vessel","682":"flow:valve:downstream_vessel","683":"flow:valve:downstream_vessel","684":"flow:valve:downstream_vessel","685":"flow:valve:downstream_vessel","686":"flow:valve:downstream_vessel","687":"flow:valve:downstream_vessel","688":"flow:valve:downstream_vessel","689":"flow:valve:downstream_vessel","690":"flow:valve:downstream_vessel","691":"flow:valve:downstream_vessel","692":"flow:valve:downstream_vessel","693":"flow:valve:downstream_vessel","694":"flow:valve:downstream_vessel","695":"flow:valve:downstream_vessel","696":"flow:valve:downstream_vessel","697":"flow:valve:downstream_vessel","698":"flow:valve:downstream_vessel","699":"flow:valve:downstream_vessel","700":"flow:valve:downstream_vessel","701":"flow:valve:downstream_vessel","702":"flow:valve:downstream_vessel","703":"flow:valve:downstream_vessel","704":"flow:valve:downstream_vessel","705":"flow:valve:downstream_vessel","706":"flow:valve:downstream_vessel","707":"pressure:valve:downstream_vessel","708":"pressure:valve:downstream_vessel","709":"pressure:valve:downstream_vessel","710":"pressure:valve:downstream_vessel","711":"pressure:valve:downstream_vessel","712":"pressure:valve:downstream_vessel","713":"pressure:valve:downstream_vessel","714":"pressure:valve:downstream_vessel","715":"pressure:valve:downstream_vessel","716":"pressure:valve:downstream_vessel","717":"pressure:valve:downstream_vessel","718":"pressure:valve:downstream_vessel","719":"pressure:valve:downstream_vessel","720":"pressure:valve:downstream_vessel","721":"pressure:valve:downstream_vessel","722":"pressure:valve:downstream_vessel","723":"pressure:valve:downstream_vessel","724":"pressure:valve:downstream_vessel","725":"pressure:valve:downstream_vessel","726":"pressure:valve:downstream_vessel","727":"pressure:valve:downstream_vessel","728":"pressure:valve:downstream_vessel","729":"pressure:valve:downstream_vessel","730":"pressure:valve:downstream_vessel","731":"pressure:valve:downstream_vessel","732":"pressure:valve:downstream_vessel","733":"pressure:valve:downstream_vessel","734":"pressure:valve:downstream_vessel","735":"pressure:valve:downstream_vessel","736":"pressure:valve:downstream_vessel","737":"pressure:valve:downstream_vessel","738":"pressure:valve:downstream_vessel","739":"pressure:valve:downstream_vessel","740":"pressure:valve:downstream_vessel","741":"pressure:valve:downstream_vessel","742":"pressure:valve:downstream_vessel","743":"pressure:valve:downstream_vessel","744":"pressure:valve:downstream_vessel","745":"pressure:valve:downstream_vessel","746":"pressure:valve:downstream_vessel","747":"pressure:valve:downstream_vessel","748":"pressure:valve:downstream_vessel","749":"pressure:valve:downstream_vessel","750":"pressure:valve:downstream_vessel","751":"pressure:valve:downstream_vessel","752":"pressure:valve:downstream_vessel","753":"pressure:valve:downstream_vessel","754":"pressure:valve:downstream_vessel","755":"pressure:valve:downstream_vessel","756":"pressure:valve:downstream_vessel","757":"pressure:valve:downstream_vessel","758":"pressure:valve:downstream_vessel","759":"pressure:valve:downstream_vessel","760":"pressure:valve:downstream_vessel","761":"pressure:valve:downstream_vessel","762":"pressure:valve:downstream_vessel","763":"pressure:valve:downstream_vessel","764":"pressure:valve:downstream_vessel","765":"pressure:valve:downstream_vessel","766":"pressure:valve:downstream_vessel","767":"pressure:valve:downstream_vessel","768":"pressure:valve:downstream_vessel","769":"pressure:valve:downstream_vessel","770":"pressure:valve:downstream_vessel","771":"pressure:valve:downstream_vessel","772":"pressure:valve:downstream_vessel","773":"pressure:valve:downstream_vessel","774":"pressure:valve:downstream_vessel","775":"pressure:valve:downstream_vessel","776":"pressure:valve:downstream_vessel","777":"pressure:valve:downstream_vessel","778":"pressure:valve:downstream_vessel","779":"pressure:valve:downstream_vessel","780":"pressure:valve:downstream_vessel","781":"pressure:valve:downstream_vessel","782":"pressure:valve:downstream_vessel","783":"pressure:valve:downstream_vessel","784":"pressure:valve:downstream_vessel","785":"pressure:valve:downstream_vessel","786":"pressure:valve:downstream_vessel","787":"pressure:valve:downstream_vessel","788":"pressure:valve:downstream_vessel","789":"pressure:valve:downstream_vessel","790":"pressure:valve:downstream_vessel","791":"pressure:valve:downstream_vessel","792":"pressure:valve:downstream_vessel","793":"pressure:valve:downstream_vessel","794":"pressure:valve:downstream_vessel","795":"pressure:valve:downstream_vessel","796":"pressure:valve:downstream_vessel","797":"pressure:valve:downstream_vessel","798":"pressure:valve:downstream_vessel","799":"pressure:valve:downstream_vessel","800":"pressure:valve:downstream_vessel","801":"pressure:valve:downstream_vessel","802":"pressure:valve:downstream_vessel","803":"pressure:valve:downstream_vessel","804":"pressure:valve:downstream_vessel","805":"pressure:valve:downstream_vessel","806":"pressure:valve:downstream_vessel","807":"pressure:valve:downstream_vessel"},"time":{"0":0.0,"1":0.01,"2":0.02,"3":0.03,"4":0.04,"5":0.05,"6":0.06,"7":0.07,"8":0.08,"9":0.09,"10":0.1,"11":0.11,"12":0.12,"13":0.13,"14":0.14,"15":0.15,"16":0.16,"17":0.17,"18":0.18,"19":0.19,"20":0.2,"21":0.21,"22":0.22,"23":0.23,"24":0.24,"25":0.25,"26":0.26,"27":0.27,"28":0.28,"29":0.29,"30":0.3,"31":0.31,"32":0.32,"33":0.33,"34":0.34,"35":0.35,"36":0.36,"37":0.37,"38":0.38,"39":0.39,"40":0.4,"41":0.41,"42":0.42,"43":0.43,"44":0.44,"45":0.45,"46":0.46,"47":0.47,"48":0.48,"49":0.49,"50":0.5,"51":0.51,"52":0.52,"53":0.53,"54":0.54,"55":0.55,"56":0.56,"57":0.57,"58":0.58,"59":0.59,"60":0.6,"61":0.61,"62":0.62,"63":0.63,"64":0.64,"65":0.65,"66":0.66,"67":0.67,"68":0.68,"69":0.69,"70":0.7,"71":0.71,"72":0.72,"73":0.73,"74":0.74,"75":0.75,"76":0.76,"77":0.77,"78":0.78,"79":0.79,"80":0.8,"81":0.81,"82":0.82,"83":0.83,"84":0.84,"85":0.85,"86":0.86,"87":0.87,"88":0.88,"89":0.89,"90":0.9,"91":0.91,"92":0.92,"93":0.93,"94":0.94,"95":0.95,"96":0.96,"97":0.97,"98":0.98,"99":0.99,"100":1.0,"101":0.0,"102":0.01,"103":0.02,"104":0.03,"105":0.04,"106":0.05,"107":0.06,"108":0.07,"109":0.08,"110":0.09,"111":0.1,"112":0.11,"113":0.12,"114":0.13,"115":0.14,"116":0.15,"117":0.16,"118":0.17,"119":0.18,"120":0.19,"121":0.2,"122":0.21,"123":0.22,"124":0.23,"125":0.24,"126":0.25,"127":0.26,"128":0.27,"129":0.28,"130":0.29,"131":0.3,"132":0.31,"133":0.32,"134":0.33,"135":0.34,"136":0.35,"137":0.36,"138":0.37,"139":0.38,"140":0.39,"141":0.4,"142":0.41,"143":0.42,"144":0.43,"145":0.44,"146":0.45,"147":0.46,"148":0.47,"149":0.48,"150":0.49,"151":0.5,"152":0.51,"153":0.52,"154":0.53,"155":0.54,"156":0.55,"157":0.56,"158":0.57,"159":0.58,"160":0.59,"161":0.6,"162":0.61,"163":0.62,"164":0.63,"165":0.64,"166":0.65,"167":0.66,"168":0.67,"169":0.68,"170":0.69,"171":0.7,"172":0.71,"173":0.72,"174":0.73,"175":0.74,"176":0.75,"177":0.76,"178":0.77,"179":0.78,"180":0.79,"181":0.8,"182":0.81,"183":0.82,"184":0.83,"185":0.84,"186":0.85,"187":0.86,"188":0.87,"189":0.88,"190":0.89,"191":0.9,"192":0.91,"193":0.92,"194":0.93,"195":0.94,"196":0.95,"197":0.96,"198":0.97,"199":0.98,"200":0.99,"201":1.0,"202":0.0,"203":0.01,"204":0.02,"205":0.03,"206":0.04,"207":0.05,"208":0.06,"209":0.07,"210":0.08,"211":0.09,"212":0.1,"213":0.11,"214":0.12,"215":0.13,"216":0.14,"217":0.15,"218":0.16,"219":0.17,"220":0.18,"221":0.19,"222":0.2,"223":0.21,"224":0.22,"225":0.23,"226":0.24,"227":0.25,"228":0.26,"229":0.27,"230":0.28,"231":0.29,"232":0.3,"233":0.31,"234":0.32,"235":0.33,"236":0.34,"237":0.35,"238":0.36,"239":0.37,"240":0.38,"241":0.39,"242":0.4,"243":0.41,"244":0.42,"245":0.43,"246":0.44,"247":0.45,"248":0.46,"249":0.47,"250":0.48,"251":0.49,"252":0.5,"253":0.51,"254":0.52,"255":0.53,"256":0.54,"257":0.55,"258":0.56,"259":0.57,"260":0.58,"261":0.59,"262":0.6,"263":0.61,"264":0.62,"265":0.63,"266":0.64,"267":0.65,"268":0.66,"269":0.67,"270":0.68,"271":0.69,"272":0.7,"273":0.71,"274":0.72,"275":0.73,"276":0.74,"277":0.75,"278":0.76,"279":0.77,"280":0.78,"281":0.79,"282":0.8,"283":0.81,"284":0.82,"285":0.83,"286":0.84,"287":0.85,"288":0.86,"289":0.87,"290":0.88,"291":0.89,"292":0.9,"293":0.91,"294":0.92,"295":0.93,"296":0.94,"297":0.95,"298":0.96,"299":0.97,"300":0.98,"301":0.99,"302":1.0,"303":0.0,"304":0.01,"305":0.02,"306":0.03,"307":0.04,"308":0.05,"309":0.06,"310":0.07,"311":0.08,"312":0.09,"313":0.1,"314":0.11,"315":0.12,"316":0.13,"317":0.14,"318":0.15,"319":0.16,"320":0.17,"321":0.18,"322":0.19,"323":0.2,"324":0.21,"325":0.22,"326":0.23,"327":0.24,"328":0.25,"329":0.26,"330":0.27,"331":0.28,"332":0.29,"333":0.3,"334":0.31,"335":0.32,"336":0.33,"337":0.34,"338":0.35,"339":0.36,"340":0.37,"341":0.38,"342":0.39,"343":0.4,"344":0.41,"345":0.42,"346":0.43,"347":0.44,"348":0.45,"349":0.46,"350":0.47,"351":0.48,"352":0.49,"353":0.5,"354":0.51,"355":0.52,"356":0.53,"357":0.54,"358":0.55,"359":0.56,"360":0.57,"361":0.58,"362":0.59,"363":0.6,"364":0.61,"365":0.62,"366":0.63,"367":0.64,"368":0.65,"369":0.66,"370":0.67,"371":0.68,"372":0.69,"373":0.7,"374":0.71,"375":0.72,"376":0.73,"377":0.74,"378":0.75,"379":0.76,"380":0.77,"381":0.78,"382":0.79,"383":0.8,"384":0.81,"385":0.82,"386":0.83,"387":0.84,"388":0.85,"389":0.86,"390":0.87,"391":0.88,"392":0.89,"393":0.9,"394":0.91,"395":0.92,"396":0.93,"397":0.94,"398":0.95,"399":0.96,"400":0.97,"401":0.98,"402":0.99,"403":1.0,"404":0.0,"405":0.01,"406":0.02,"407":0.03,"408":0.04,"409":0.05,"410":0.06,"411":0.07,"412":0.08,"413":0.09,"414":0.1,"415":0.11,"416":0.12,"417":0.13,"418":0.14,"419":0.15,"420":0.16,"421":0.17,"422":0.18,"423":0.19,"424":0.2,"425":0.21,"426":0.22,"427":0.23,"428":0.24,"429":0.25,"430":0.26,"431":0.27,"432":0.28,"433":0.29,"434":0.3,"435":0.31,"436":0.32,"437":0.33,"438":0.34,"439":0.35,"440":0.36,"441":0.37,"442":0.38,"443":0.39,"444":0.4,"445":0.41,"446":0.42,"447":0.43,"448":0.44,"449":0.45,"450":0.46,"451":0.47,"452":0.48,"453":0.49,"454":0.5,"455":0.51,"456":0.52,"457":0.53,"458":0.54,"459":0.55,"460":0.56,"461":0.57,"462":0.58,"463":0.59,"464":0.6,"465":0.61,"466":0.62,"467":0.63,"468":0.64,"469":0.65,"470":0.66,"471":0.67,"472":0.68,"473":0.69,"474":0.7,"475":0.71,"476":0.72,"477":0.73,"478":0.74,"479":0.75,"480":0.76,"481":0.77,"482":0.78,"483":0.79,"484":0.8,"485":0.81,"486":0.82,"487":0.83,"488":0.84,"489":0.85,"490":0.86,"491":0.87,"492":0.88,"493":0.89,"494":0.9,"495":0.91,"496":0.92,"497":0.93,"498":0.94,"499":0.95,"500":0.96,"501":0.97,"502":0.98,"503":0.99,"504":1.0,"505":0.0,"506":0.01,"507":0.02,"508":0.03,"509":0.04,"510":0.05,"511":0.06,"512":0.07,"513":0.08,"514":0.09,"515":0.1,"516":0.11,"517":0.12,"518":0.13,"519":0.14,"520":0.15,"521":0.16,"522":0.17,"523":0.18,"524":0.19,"525":0.2,"526":0.21,"527":0.22,"528":0.23,"529":0.24,"530":0.25,"531":0.26,"532":0.27,"533":0.28,"534":0.29,"535":0.3,"536":0.31,"537":0.32,"538":0.33,"539":0.34,"540":0.35,"541":0.36,"542":0.37,"543":0.38,"544":0.39,"545":0.4,"546":0.41,"547":0.42,"548":0.43,"549":0.44,"550":0.45,"551":0.46,"552":0.47,"553":0.48,"554":0.49,"555":0.5,"556":0.51,"557":0.52,"558":0.53,"559":0.54,"560":0.55,"561":0.56,"562":0.57,"563":0.58,"564":0.59,"565":0.6,"566":0.61,"567":0.62,"568":0.63,"569":0.64,"570":0.65,"571":0.66,"572":0.67,"573":0.68,"574":0.69,"575":0.7,"576":0.71,"577":0.72,"578":0.73,"579":0.74,"580":0.75,"581":0.76,"582":0.77,"583":0.78,"584":0.79,"585":0.8,"586":0.81,"587":0.82,"588":0.83,"589":0.84,"590":0.85,"591":0.86,"592":0.87,"593":0.88,"594":0.89,"595":0.9,"596":0.91,"597":0.92,"598":0.93,"599":0.94,"600":0.95,"601":0.96,"602":0.97,"603":0.98,"604":0.99,"605":1.0,"606":0.0,"607":0.01,"608":0.02,"609":0.03,"610":0.04,"611":0.05,"612":0.06,"613":0.07,"614":0.08,"615":0.09,"616":0.1,"617":0.11,"618":0.12,"619":0.13,"620":0.14,"621":0.15,"622":0.16,"623":0.17,"624":0.18,"625":0.19,"626":0.2,"627":0.21,"628":0.22,"629":0.23,"630":0.24,"631":0.25,"632":0.26,"633":0.27,"634":0.28,"635":0.29,"636":0.3,"637":0.31,"638":0.32,"639":0.33,"640":0.34,"641":0.35,"642":0.36,"643":0.37,"644":0.38,"645":0.39,"646":0.4,"647":0.41,"648":0.42,"649":0.43,"650":0.44,"651":0.45,"652":0.46,"653":0.47,"654":0.48,"655":0.49,"656":0.5,"657":0.51,"658":0.52,"659":0.53,"660":0.54,"661":0.55,"662":0.56,"663":0.57,"664":0.58,"665":0.59,"666":0.6,"667":0.61,"668":0.62,"669":0.63,"670":0.64,"671":0.65,"672":0.66,"673":0.67,"674":0.68,"675":0.69,"676":0.7,"677":0.71,"678":0.72,"679":0.73,"680":0.74,"681":0.75,"682":0.76,"683":0.77,"684":0.78,"685":0.79,"686":0.8,"687":0.81,"688":0.82,"689":0.83,"690":0.84,"691":0.85,"692":0.86,"693":0.87,"694":0.88,"695":0.89,"696":0.9,"697":0.91,"698":0.92,"699":0.93,"700":0.94,"701":0.95,"702":0.96,"703":0.97,"704":0.98,"705":0.99,"706":1.0,"707":0.0,"708":0.01,"709":0.02,"710":0.03,"711":0.04,"712":0.05,"713":0.06,"714":0.07,"715":0.08,"716":0.09,"717":0.1,"718":0.11,"719":0.12,"720":0.13,"721":0.14,"722":0.15,"723":0.16,"724":0.17,"725":0.18,"726":0.19,"727":0.2,"728":0.21,"729":0.22,"730":0.23,"731":0.24,"732":0.25,"733":0.26,"734":0.27,"735":0.28,"736":0.29,"737":0.3,"738":0.31,"739":0.32,"740":0.33,"741":0.34,"742":0.35,"743":0.36,"744":0.37,"745":0.38,"746":0.39,"747":0.4,"748":0.41,"749":0.42,"750":0.43,"751":0.44,"752":0.45,"753":0.46,"754":0.47,"755":0.48,"756":0.49,"757":0.5,"758":0.51,"759":0.52,"760":0.53,"761":0.54,"762":0.55,"763":0.56,"764":0.57,"765":0.58,"766":0.59,"767":0.6,"768":0.61,"769":0.62,"770":0.63,"771":0.64,"772":0.65,"773":0.66,"774":0.67,"775":0.68,"776":0.69,"777":0.7,"778":0.71,"779":0.72,"780":0.73,"781":0.74,"782":0.75,"783":0.76,"784":0.77,"785":0.78,"786":0.79,"787":0.8,"788":0.81,"789":0.82,"790":0.83,"791":0.84,"792":0.85,"793":0.86,"794":0.87,"795":0.88,"796":0.89,"797":0.9,"798":0.91,"799":0.92,"800":0.93,"801":0.94,"802":0.95,"803":0.96,"804":0.97,"805":0.98,"806":0.99,"807":1.0},"y":{"0":0.0030799151,"1":0.0032356906,"2":0.0033758644,"3":0.0035019462,"4":0.0036148443,"5":0.0037150711,"6":0.0038028836,"7":0.0038783799,"8":0.0039415652,"9":0.0039923965,"10":0.0040308138,"11":0.0040567613,"12":0.004070202,"13":0.0040711274,"14":0.0040595639,"15":0.0040355781,"16":0.0039992785,"17":0.0039508181,"18":0.0038903946,"19":0.0038182509,"20":0.0037346748,"21":0.0036399982,"22":0.0035345961,"23":0.0034188855,"24":0.0032933237,"25":0.0031584067,"26":0.0030146672,"27":0.0028626727,"28":0.0027030232,"29":0.0025363488,"30":0.0023633075,"31":0.0021845822,"32":0.0020008781,"33":0.0018129205,"34":0.001621451,"35":0.0014272254,"36":0.0012310101,"37":0.0010335795,"38":0.0008357128,"39":0.0006381908,"40":0.0004417932,"41":0.000247295,"42":0.0000554638,"43":-0.0001329434,"44":-0.0003171832,"45":-0.0004965322,"46":-0.0006703339,"47":-0.0008385242,"48":-0.001004648,"49":-0.0011726934,"50":-0.0013341471,"51":-0.0014695267,"52":-0.0015341383,"53":-0.0015466264,"54":-0.0015383663,"55":-0.0015195638,"56":-0.0014934079,"57":-0.0014609749,"58":-0.0014226887,"59":-0.0013787867,"60":-0.0013294637,"61":-0.0012749157,"62":-0.0012153541,"63":-0.0011510084,"64":-0.0010821272,"65":-0.0010089771,"66":-0.0009318423,"67":-0.0008510229,"68":-0.000766834,"69":-0.0006796045,"70":-0.0005896755,"71":-0.000497399,"72":-0.0004031368,"73":-0.0003072584,"74":-0.0002101402,"75":-0.0001121636,"76":-0.0000137136,"77":0.0000848229,"78":0.0001830584,"79":0.0002806064,"80":0.000377083,"81":0.0004721087,"82":0.0005653092,"83":0.0006563176,"84":0.0007447754,"85":0.0008303344,"86":0.0009126573,"87":0.00099142,"88":0.001066312,"89":0.0011370383,"90":0.0012033201,"91":0.0012648962,"92":0.001321524,"93":0.0013729803,"94":0.0015436877,"95":0.0018980564,"96":0.0022291811,"97":0.0024877647,"98":0.0027105161,"99":0.0029061218,"100":0.0030799151,"101":2.2,"102":2.3569762988,"103":2.5133330839,"104":2.6684532865,"105":2.8217247179,"106":2.9725424859,"107":3.1203113817,"108":3.2644482289,"109":3.4043841853,"110":3.5395669874,"111":3.6694631307,"112":3.7935599744,"113":3.9113677648,"114":4.0224215686,"115":4.1262831069,"116":4.2225424859,"117":4.3108198138,"118":4.3907667001,"119":4.4620676312,"120":4.5244412147,"121":4.5776412907,"122":4.6214579028,"123":4.6557181268,"124":4.6802867533,"125":4.6950668211,"126":4.7,"127":4.6950668211,"128":4.6802867533,"129":4.6557181268,"130":4.6214579028,"131":4.5776412907,"132":4.5244412147,"133":4.4620676312,"134":4.3907667001,"135":4.3108198138,"136":4.2225424859,"137":4.1262831069,"138":4.0224215686,"139":3.9113677648,"140":3.7935599744,"141":3.6694631307,"142":3.5395669874,"143":3.4043841853,"144":3.2644482289,"145":3.1203113817,"146":2.9725424859,"147":2.8217247179,"148":2.6684532865,"149":2.5133330839,"150":2.3569762988,"151":2.2,"152":2.0430237012,"153":1.8866669161,"154":1.7315467135,"155":1.5782752821,"156":1.4274575141,"157":1.2796886183,"158":1.1355517711,"159":0.9956158147,"160":0.8604330126,"161":0.7305368693,"162":0.6064400256,"163":0.4886322352,"164":0.3775784314,"165":0.2737168931,"166":0.1774575141,"167":0.0891801862,"168":0.0092332999,"169":-0.0620676312,"170":-0.1244412147,"171":-0.1776412907,"172":-0.2214579028,"173":-0.2557181268,"174":-0.2802867533,"175":-0.2950668211,"176":-0.3,"177":-0.2950668211,"178":-0.2802867533,"179":-0.2557181268,"180":-0.2214579028,"181":-0.1776412907,"182":-0.1244412147,"183":-0.0620676312,"184":0.0092332999,"185":0.0891801862,"186":0.1774575141,"187":0.2737168931,"188":0.3775784314,"189":0.4886322352,"190":0.6064400256,"191":0.7305368693,"192":0.8604330126,"193":0.9956158147,"194":1.1355517711,"195":1.2796886183,"196":1.4274575141,"197":1.5782752821,"198":1.7315467135,"199":1.8866669161,"200":2.0430237012,"201":2.2,"202":0.0005575321,"203":0.0006704564,"204":0.0007858317,"205":0.0009027393,"206":0.0010204021,"207":0.0011381408,"208":0.001255344,"209":0.0013714494,"210":0.0014859308,"211":0.0015982899,"212":0.0017080519,"213":0.0018147619,"214":0.0019179842,"215":0.0020173013,"216":0.0021123147,"217":0.0022026446,"218":0.0022879313,"219":0.0023678363,"220":0.0024420425,"221":0.0025102562,"222":0.0025722075,"223":0.0026276515,"224":0.0026763689,"225":0.0027181674,"226":0.0027528817,"227":0.0027803749,"228":0.0028005383,"229":0.0028132923,"230":0.0028185866,"231":0.0028164002,"232":0.0028067418,"233":0.0027896494,"234":0.0027651905,"235":0.0027334617,"236":0.0026945881,"237":0.0026487232,"238":0.0025960479,"239":0.0025367702,"240":0.0024711239,"241":0.0023993683,"242":0.0023217864,"243":0.0022386844,"244":0.0021503903,"245":0.0020572526,"246":0.0019596387,"247":0.0018579334,"248":0.0017525304,"249":0.0016437506,"250":0.0015313583,"251":0.0014147433,"252":0.0012947878,"253":0.0011746516,"254":0.0010626893,"255":0.0009614168,"256":0.0008697248,"257":0.0007867075,"258":0.0007115294,"259":0.0006434397,"260":0.0005817597,"261":0.0005258768,"262":0.0004752376,"263":0.0004293428,"264":0.0003877411,"265":0.0003500256,"266":0.0003158287,"267":0.0002848185,"268":0.0002566957,"269":0.0002311899,"270":0.0002080573,"271":0.0001870775,"272":0.000168052,"273":0.0001508014,"274":0.0001351637,"275":0.0001209929,"276":0.000108157,"277":0.0000965368,"278":0.0000860248,"279":0.0000765238,"280":0.0000679457,"281":0.0000602113,"282":0.0000532486,"283":0.0000469924,"284":0.000041384,"285":0.0000363696,"286":0.0000319009,"287":0.0000279337,"288":0.0000244277,"289":0.0000213464,"290":0.0000186563,"291":0.0000163268,"292":0.0000143298,"293":0.0000126396,"294":0.0000112324,"295":0.0000100861,"296":0.0000273223,"297":0.0000820293,"298":0.0001584293,"299":0.000246389,"300":0.0003438421,"301":0.0004481839,"302":0.0005575321,"303":1.5575320646,"304":1.6704563764,"305":1.7858316995,"306":1.9027393026,"307":2.0204021456,"308":2.1381407834,"309":2.2553440104,"310":2.3714494301,"311":2.4859307957,"312":2.5982899482,"313":2.7080518747,"314":2.8147618759,"315":2.9179841544,"316":3.0173013491,"317":3.112314694,"318":3.202644577,"319":3.2879313476,"320":3.3678362648,"321":3.4420425136,"322":3.5102562363,"323":3.5722075434,"324":3.6276514776,"325":3.6763689107,"326":3.7181673619,"327":3.752881725,"328":3.7803748984,"329":3.8005383109,"330":3.8132923403,"331":3.8185866206,"332":3.8164002362,"333":3.8067418011,"334":3.7896494226,"335":3.7651905498,"336":3.7334617061,"337":3.6945881074,"338":3.6487231681,"339":3.5960478945,"340":3.536770171,"341":3.4711239389,"342":3.3993682734,"343":3.3217863612,"344":3.2386843822,"345":3.1503903018,"346":3.0572525735,"347":2.9596387297,"348":2.8579334439,"349":2.7525303511,"350":2.6437505938,"351":2.5313583377,"352":2.4147433058,"353":2.294787791,"354":2.174651557,"355":2.0626893202,"356":1.9614168019,"357":1.8697248254,"358":1.7867074892,"359":1.7115293674,"360":1.6434396543,"361":1.5817596859,"362":1.5258767658,"363":1.4752376319,"364":1.4293427511,"365":1.387741126,"366":1.3500256069,"367":1.3158286525,"368":1.284818496,"369":1.2566956787,"370":1.2311899153,"371":1.208057259,"372":1.1870775383,"373":1.1680520383,"374":1.1508014048,"375":1.1351637483,"376":1.1209929297,"377":1.1081570101,"378":1.0965368496,"379":1.0860248391,"380":1.0765237555,"381":1.0679457255,"382":1.0602112899,"383":1.0532485571,"384":1.0469924396,"385":1.041383963,"386":1.0363696431,"387":1.031900923,"388":1.0279336654,"389":1.0244276945,"390":1.0213463837,"391":1.0186562832,"392":1.0163267859,"393":1.0143298257,"394":1.0126396076,"395":1.0112323647,"396":1.0100861397,"397":1.0273222766,"398":1.0820293188,"399":1.1584292903,"400":1.2463889911,"401":1.3438420579,"402":1.4481838654,"403":1.5575320646,"404":0.0016703629,"405":0.0018157639,"406":0.0019490699,"407":0.0020778492,"408":0.0021990645,"409":0.0023145361,"410":0.0024233635,"411":0.0025258198,"412":0.0026214765,"413":0.0027101909,"414":0.0027916474,"415":0.0028656108,"416":0.0029318165,"417":0.0029900377,"418":0.00304006,"419":0.0030817006,"420":0.003114803,"421":0.0031392432,"422":0.0031549283,"423":0.0031617995,"424":0.0031598313,"425":0.003149033,"426":0.003129448,"427":0.0031011542,"428":0.0030642636,"429":0.0030189222,"430":0.002965309,"431":0.0029036357,"432":0.0028341459,"433":0.0027571139,"434":0.0026728437,"435":0.0025816679,"436":0.0024839463,"437":0.0023800647,"438":0.002270433,"439":0.0021554839,"440":0.002035671,"441":0.0019114673,"442":0.0017833628,"443":0.0016518631,"444":0.0015174872,"445":0.0013807655,"446":0.0012422375,"447":0.0011024499,"448":0.0009619536,"449":0.0008212932,"450":0.000680889,"451":0.0005396699,"452":0.0003880704,"453":0.0002260486,"454":0.0000828322,"455":-0.0000186068,"456":0.0000091337,"457":-0.0000054311,"458":0.0000009651,"459":-0.0000032408,"460":-0.0000022372,"461":-0.0000039068,"462":-0.0000042881,"463":-0.0000053435,"464":-0.0000060749,"465":-0.0000069654,"466":-0.0000077588,"467":-0.0000085695,"468":-0.0000093274,"469":-0.0000100557,"470":-0.000010732,"471":-0.0000113575,"472":-0.0000119223,"473":-0.0000124232,"474":-0.0000128544,"475":-0.000013212,"476":-0.0000134922,"477":-0.0000136919,"478":-0.0000138083,"479":-0.0000138394,"480":-0.0000137834,"481":-0.0000136393,"482":-0.0000134063,"483":-0.0000130842,"484":-0.0000126733,"485":-0.0000121743,"486":-0.0000115882,"487":-0.0000109168,"488":-0.0000101618,"489":-0.0000093258,"490":-0.0000084114,"491":-0.0000074217,"492":-0.0000063602,"493":-0.0000052307,"494":-0.0000040372,"495":-0.0000027842,"496":-0.0000014762,"497":-0.0000001182,"498":0.000359583,"499":0.0008427122,"500":0.0009523321,"501":0.0011980598,"502":0.0013507895,"503":0.0015251767,"504":0.0016703629,"505":1.8920084896,"506":2.0334072379,"507":2.1757466456,"508":2.3182586646,"509":2.460240285,"510":2.6010353786,"511":2.7400230258,"512":2.8766102371,"513":3.0102276663,"514":3.1403273424,"515":3.2663817557,"516":3.3878838432,"517":3.5043475619,"518":3.6153088335,"519":3.7203267134,"520":3.8189846783,"521":3.9108919631,"522":3.995684893,"523":4.0730281755,"524":4.1426161271,"525":4.2041738125,"526":4.2574580851,"527":4.3022585154,"528":4.3383982005,"529":4.3657344484,"530":4.3841593308,"531":4.3936001027,"532":4.3940194851,"533":4.3854158088,"534":4.3678230189,"535":4.3413105397,"536":4.3059829993,"537":4.2619798163,"538":4.2094746491,"539":4.1486747103,"540":4.0798199484,"541":4.0031821011,"542":3.9190636224,"543":3.8277964894,"544":3.7297408915,"545":3.6252838092,"546":3.5148374867,"547":3.3988378053,"548":3.2777425646,"549":3.1520296982,"550":3.0221957096,"551":2.8887581043,"552":2.7523057099,"553":2.61379788,"554":2.4742456382,"555":2.3334147071,"556":2.1899763734,"557":2.0400807449,"558":1.8862093508,"559":1.7321119123,"560":1.5794138938,"561":1.4290294128,"562":1.2816492624,"563":1.1378846828,"564":0.9983116856,"565":0.8634832358,"566":0.7339315985,"567":0.6101676455,"568":0.4926792735,"569":0.3819296107,"570":0.2783552264,"571":0.1823644158,"572":0.0943355885,"573":0.0146157718,"574":-0.0564807623,"575":-0.1186737406,"576":-0.1717179984,"577":-0.2154044493,"578":-0.2495609138,"579":-0.2740528003,"580":-0.288783639,"581":-0.2936954644,"582":-0.2887690457,"583":-0.2740239645,"584":-0.2495185385,"585":-0.2153495932,"586":-0.1716520806,"587":-0.1185985477,"588":-0.0563984563,"589":0.0147026421,"590":0.0944240757,"591":0.1824511582,"592":0.278436431,"593":0.3820010334,"594":0.4927361975,"595":0.6102048609,"596":0.7339433911,"597":0.8634634147,"598":0.9982537452,"599":1.1253198502,"600":1.2376518783,"601":1.3553571707,"602":1.4827702452,"603":1.6156153022,"604":1.7524115204,"605":1.8920084896,"606":0.0016703629,"607":0.0018157639,"608":0.0019490699,"609":0.0020778492,"610":0.0021990645,"611":0.0023145361,"612":0.0024233635,"613":0.0025258198,"614":0.0026214765,"615":0.0027101909,"616":0.0027916474,"617":0.0028656108,"618":0.0029318165,"619":0.0029900377,"620":0.00304006,"621":0.0030817006,"622":0.003114803,"623":0.0031392432,"624":0.0031549283,"625":0.0031617995,"626":0.0031598313,"627":0.003149033,"628":0.003129448,"629":0.0031011542,"630":0.0030642636,"631":0.0030189222,"632":0.002965309,"633":0.0029036357,"634":0.0028341459,"635":0.0027571139,"636":0.0026728437,"637":0.0025816679,"638":0.0024839463,"639":0.0023800647,"640":0.002270433,"641":0.0021554839,"642":0.002035671,"643":0.0019114673,"644":0.0017833628,"645":0.0016518631,"646":0.0015174872,"647":0.0013807655,"648":0.0012422375,"649":0.0011024499,"650":0.0009619536,"651":0.0008212932,"652":0.000680889,"653":0.0005396699,"654":0.0003880704,"655":0.0002260486,"656":0.0000828322,"657":-0.0000186068,"658":0.0000091337,"659":-0.0000054311,"660":0.0000009651,"661":-0.0000032408,"662":-0.0000022372,"663":-0.0000039068,"664":-0.0000042881,"665":-0.0000053435,"666":-0.0000060749,"667":-0.0000069654,"668":-0.0000077588,"669":-0.0000085695,"670":-0.0000093274,"671":-0.0000100557,"672":-0.000010732,"673":-0.0000113575,"674":-0.0000119223,"675":-0.0000124232,"676":-0.0000128544,"677":-0.000013212,"678":-0.0000134922,"679":-0.0000136919,"680":-0.0000138083,"681":-0.0000138394,"682":-0.0000137834,"683":-0.0000136393,"684":-0.0000134063,"685":-0.0000130842,"686":-0.0000126733,"687":-0.0000121743,"688":-0.0000115882,"689":-0.0000109168,"690":-0.0000101618,"691":-0.0000093258,"692":-0.0000084114,"693":-0.0000074217,"694":-0.0000063602,"695":-0.0000052307,"696":-0.0000040372,"697":-0.0000027842,"698":-0.0000014762,"699":-0.0000001182,"700":0.000359583,"701":0.0008427122,"702":0.0009523321,"703":0.0011980598,"704":0.0013507895,"705":0.0015251767,"706":0.0016703629,"707":1.7245683582,"708":1.8520327666,"709":1.9807386928,"710":2.1105242235,"711":2.2403085954,"712":2.369594391,"713":2.4976803631,"714":2.6240314111,"715":2.7480784423,"716":2.8693090397,"717":2.987216618,"718":3.1013229581,"719":3.2111658088,"720":3.316305116,"721":3.4163206913,"722":3.5108146338,"723":3.5994116523,"724":3.6817605804,"725":3.7575353438,"726":3.8264361821,"727":3.8881906778,"728":3.9425547814,"729":3.989313713,"730":4.0282827812,"731":4.0593080867,"732":4.0822671146,"733":4.0970692068,"734":4.1036559127,"735":4.1020012147,"736":4.0921116276,"737":4.0740261704,"738":4.0478162109,"739":4.0135851831,"740":3.9714681776,"741":3.9216314088,"742":3.8642715582,"743":3.7996149978,"744":3.7279168967,"745":3.6494602142,"746":3.5645545825,"747":3.4735350852,"748":3.3767609344,"749":3.2746140533,"750":3.1674975602,"751":3.0558340877,"752":2.9400627687,"753":2.8206192534,"754":2.6977175862,"755":2.5701653825,"756":2.4373481611,"757":2.3030710154,"758":2.1727908794,"759":2.0636026925,"760":1.9608736896,"761":1.8698213399,"762":1.7863834077,"763":1.7113056472,"764":1.6430489766,"765":1.5813308787,"766":1.5253424156,"767":1.4746301447,"768":1.4286462066,"769":1.3869652433,"770":1.34916866,"771":1.3148959149,"772":1.2838129239,"773":1.2556224778,"774":1.2300541681,"775":1.2068650241,"776":1.1858352152,"777":1.1667666015,"778":1.1494802048,"779":1.1338145302,"780":1.1196237446,"781":1.1067761814,"782":1.0951529129,"783":1.0846464972,"784":1.0751598266,"785":1.0666050965,"786":1.0589028685,"787":1.0519812263,"788":1.0457750125,"789":1.0402251393,"790":1.0352779667,"791":1.0308847409,"792":1.0270010883,"793":1.0235865591,"794":1.0206042159,"795":1.018020264,"796":1.0158037183,"797":1.0139261044,"798":1.0123611898,"799":1.0110847434,"800":1.0100743182,"801":1.0632805766,"802":1.1663005426,"803":1.2536624968,"804":1.3661949681,"805":1.4789210046,"806":1.6007015308,"807":1.7245683582}} \ No newline at end of file +{ + "name": { + "0": "flow:INLET:upstream_vessel", + "1": "flow:INLET:upstream_vessel", + "2": "flow:INLET:upstream_vessel", + "3": "flow:INLET:upstream_vessel", + "4": "flow:INLET:upstream_vessel", + "5": "flow:INLET:upstream_vessel", + "6": "flow:INLET:upstream_vessel", + "7": "flow:INLET:upstream_vessel", + "8": "flow:INLET:upstream_vessel", + "9": "flow:INLET:upstream_vessel", + "10": "flow:INLET:upstream_vessel", + "11": "flow:INLET:upstream_vessel", + "12": "flow:INLET:upstream_vessel", + "13": "flow:INLET:upstream_vessel", + "14": "flow:INLET:upstream_vessel", + "15": "flow:INLET:upstream_vessel", + "16": "flow:INLET:upstream_vessel", + "17": "flow:INLET:upstream_vessel", + "18": "flow:INLET:upstream_vessel", + "19": "flow:INLET:upstream_vessel", + "20": "flow:INLET:upstream_vessel", + "21": "flow:INLET:upstream_vessel", + "22": "flow:INLET:upstream_vessel", + "23": "flow:INLET:upstream_vessel", + "24": "flow:INLET:upstream_vessel", + "25": "flow:INLET:upstream_vessel", + "26": "flow:INLET:upstream_vessel", + "27": "flow:INLET:upstream_vessel", + "28": "flow:INLET:upstream_vessel", + "29": "flow:INLET:upstream_vessel", + "30": "flow:INLET:upstream_vessel", + "31": "flow:INLET:upstream_vessel", + "32": "flow:INLET:upstream_vessel", + "33": "flow:INLET:upstream_vessel", + "34": "flow:INLET:upstream_vessel", + "35": "flow:INLET:upstream_vessel", + "36": "flow:INLET:upstream_vessel", + "37": "flow:INLET:upstream_vessel", + "38": "flow:INLET:upstream_vessel", + "39": "flow:INLET:upstream_vessel", + "40": "flow:INLET:upstream_vessel", + "41": "flow:INLET:upstream_vessel", + "42": "flow:INLET:upstream_vessel", + "43": "flow:INLET:upstream_vessel", + "44": "flow:INLET:upstream_vessel", + "45": "flow:INLET:upstream_vessel", + "46": "flow:INLET:upstream_vessel", + "47": "flow:INLET:upstream_vessel", + "48": "flow:INLET:upstream_vessel", + "49": "flow:INLET:upstream_vessel", + "50": "flow:INLET:upstream_vessel", + "51": "flow:INLET:upstream_vessel", + "52": "flow:INLET:upstream_vessel", + "53": "flow:INLET:upstream_vessel", + "54": "flow:INLET:upstream_vessel", + "55": "flow:INLET:upstream_vessel", + "56": "flow:INLET:upstream_vessel", + "57": "flow:INLET:upstream_vessel", + "58": "flow:INLET:upstream_vessel", + "59": "flow:INLET:upstream_vessel", + "60": "flow:INLET:upstream_vessel", + "61": "flow:INLET:upstream_vessel", + "62": "flow:INLET:upstream_vessel", + "63": "flow:INLET:upstream_vessel", + "64": "flow:INLET:upstream_vessel", + "65": "flow:INLET:upstream_vessel", + "66": "flow:INLET:upstream_vessel", + "67": "flow:INLET:upstream_vessel", + "68": "flow:INLET:upstream_vessel", + "69": "flow:INLET:upstream_vessel", + "70": "flow:INLET:upstream_vessel", + "71": "flow:INLET:upstream_vessel", + "72": "flow:INLET:upstream_vessel", + "73": "flow:INLET:upstream_vessel", + "74": "flow:INLET:upstream_vessel", + "75": "flow:INLET:upstream_vessel", + "76": "flow:INLET:upstream_vessel", + "77": "flow:INLET:upstream_vessel", + "78": "flow:INLET:upstream_vessel", + "79": "flow:INLET:upstream_vessel", + "80": "flow:INLET:upstream_vessel", + "81": "flow:INLET:upstream_vessel", + "82": "flow:INLET:upstream_vessel", + "83": "flow:INLET:upstream_vessel", + "84": "flow:INLET:upstream_vessel", + "85": "flow:INLET:upstream_vessel", + "86": "flow:INLET:upstream_vessel", + "87": "flow:INLET:upstream_vessel", + "88": "flow:INLET:upstream_vessel", + "89": "flow:INLET:upstream_vessel", + "90": "flow:INLET:upstream_vessel", + "91": "flow:INLET:upstream_vessel", + "92": "flow:INLET:upstream_vessel", + "93": "flow:INLET:upstream_vessel", + "94": "flow:INLET:upstream_vessel", + "95": "flow:INLET:upstream_vessel", + "96": "flow:INLET:upstream_vessel", + "97": "flow:INLET:upstream_vessel", + "98": "flow:INLET:upstream_vessel", + "99": "flow:INLET:upstream_vessel", + "100": "flow:INLET:upstream_vessel", + "101": "pressure:INLET:upstream_vessel", + "102": "pressure:INLET:upstream_vessel", + "103": "pressure:INLET:upstream_vessel", + "104": "pressure:INLET:upstream_vessel", + "105": "pressure:INLET:upstream_vessel", + "106": "pressure:INLET:upstream_vessel", + "107": "pressure:INLET:upstream_vessel", + "108": "pressure:INLET:upstream_vessel", + "109": "pressure:INLET:upstream_vessel", + "110": "pressure:INLET:upstream_vessel", + "111": "pressure:INLET:upstream_vessel", + "112": "pressure:INLET:upstream_vessel", + "113": "pressure:INLET:upstream_vessel", + "114": "pressure:INLET:upstream_vessel", + "115": "pressure:INLET:upstream_vessel", + "116": "pressure:INLET:upstream_vessel", + "117": "pressure:INLET:upstream_vessel", + "118": "pressure:INLET:upstream_vessel", + "119": "pressure:INLET:upstream_vessel", + "120": "pressure:INLET:upstream_vessel", + "121": "pressure:INLET:upstream_vessel", + "122": "pressure:INLET:upstream_vessel", + "123": "pressure:INLET:upstream_vessel", + "124": "pressure:INLET:upstream_vessel", + "125": "pressure:INLET:upstream_vessel", + "126": "pressure:INLET:upstream_vessel", + "127": "pressure:INLET:upstream_vessel", + "128": "pressure:INLET:upstream_vessel", + "129": "pressure:INLET:upstream_vessel", + "130": "pressure:INLET:upstream_vessel", + "131": "pressure:INLET:upstream_vessel", + "132": "pressure:INLET:upstream_vessel", + "133": "pressure:INLET:upstream_vessel", + "134": "pressure:INLET:upstream_vessel", + "135": "pressure:INLET:upstream_vessel", + "136": "pressure:INLET:upstream_vessel", + "137": "pressure:INLET:upstream_vessel", + "138": "pressure:INLET:upstream_vessel", + "139": "pressure:INLET:upstream_vessel", + "140": "pressure:INLET:upstream_vessel", + "141": "pressure:INLET:upstream_vessel", + "142": "pressure:INLET:upstream_vessel", + "143": "pressure:INLET:upstream_vessel", + "144": "pressure:INLET:upstream_vessel", + "145": "pressure:INLET:upstream_vessel", + "146": "pressure:INLET:upstream_vessel", + "147": "pressure:INLET:upstream_vessel", + "148": "pressure:INLET:upstream_vessel", + "149": "pressure:INLET:upstream_vessel", + "150": "pressure:INLET:upstream_vessel", + "151": "pressure:INLET:upstream_vessel", + "152": "pressure:INLET:upstream_vessel", + "153": "pressure:INLET:upstream_vessel", + "154": "pressure:INLET:upstream_vessel", + "155": "pressure:INLET:upstream_vessel", + "156": "pressure:INLET:upstream_vessel", + "157": "pressure:INLET:upstream_vessel", + "158": "pressure:INLET:upstream_vessel", + "159": "pressure:INLET:upstream_vessel", + "160": "pressure:INLET:upstream_vessel", + "161": "pressure:INLET:upstream_vessel", + "162": "pressure:INLET:upstream_vessel", + "163": "pressure:INLET:upstream_vessel", + "164": "pressure:INLET:upstream_vessel", + "165": "pressure:INLET:upstream_vessel", + "166": "pressure:INLET:upstream_vessel", + "167": "pressure:INLET:upstream_vessel", + "168": "pressure:INLET:upstream_vessel", + "169": "pressure:INLET:upstream_vessel", + "170": "pressure:INLET:upstream_vessel", + "171": "pressure:INLET:upstream_vessel", + "172": "pressure:INLET:upstream_vessel", + "173": "pressure:INLET:upstream_vessel", + "174": "pressure:INLET:upstream_vessel", + "175": "pressure:INLET:upstream_vessel", + "176": "pressure:INLET:upstream_vessel", + "177": "pressure:INLET:upstream_vessel", + "178": "pressure:INLET:upstream_vessel", + "179": "pressure:INLET:upstream_vessel", + "180": "pressure:INLET:upstream_vessel", + "181": "pressure:INLET:upstream_vessel", + "182": "pressure:INLET:upstream_vessel", + "183": "pressure:INLET:upstream_vessel", + "184": "pressure:INLET:upstream_vessel", + "185": "pressure:INLET:upstream_vessel", + "186": "pressure:INLET:upstream_vessel", + "187": "pressure:INLET:upstream_vessel", + "188": "pressure:INLET:upstream_vessel", + "189": "pressure:INLET:upstream_vessel", + "190": "pressure:INLET:upstream_vessel", + "191": "pressure:INLET:upstream_vessel", + "192": "pressure:INLET:upstream_vessel", + "193": "pressure:INLET:upstream_vessel", + "194": "pressure:INLET:upstream_vessel", + "195": "pressure:INLET:upstream_vessel", + "196": "pressure:INLET:upstream_vessel", + "197": "pressure:INLET:upstream_vessel", + "198": "pressure:INLET:upstream_vessel", + "199": "pressure:INLET:upstream_vessel", + "200": "pressure:INLET:upstream_vessel", + "201": "pressure:INLET:upstream_vessel", + "202": "flow:downstream_vessel:OUTLET", + "203": "flow:downstream_vessel:OUTLET", + "204": "flow:downstream_vessel:OUTLET", + "205": "flow:downstream_vessel:OUTLET", + "206": "flow:downstream_vessel:OUTLET", + "207": "flow:downstream_vessel:OUTLET", + "208": "flow:downstream_vessel:OUTLET", + "209": "flow:downstream_vessel:OUTLET", + "210": "flow:downstream_vessel:OUTLET", + "211": "flow:downstream_vessel:OUTLET", + "212": "flow:downstream_vessel:OUTLET", + "213": "flow:downstream_vessel:OUTLET", + "214": "flow:downstream_vessel:OUTLET", + "215": "flow:downstream_vessel:OUTLET", + "216": "flow:downstream_vessel:OUTLET", + "217": "flow:downstream_vessel:OUTLET", + "218": "flow:downstream_vessel:OUTLET", + "219": "flow:downstream_vessel:OUTLET", + "220": "flow:downstream_vessel:OUTLET", + "221": "flow:downstream_vessel:OUTLET", + "222": "flow:downstream_vessel:OUTLET", + "223": "flow:downstream_vessel:OUTLET", + "224": "flow:downstream_vessel:OUTLET", + "225": "flow:downstream_vessel:OUTLET", + "226": "flow:downstream_vessel:OUTLET", + "227": "flow:downstream_vessel:OUTLET", + "228": "flow:downstream_vessel:OUTLET", + "229": "flow:downstream_vessel:OUTLET", + "230": "flow:downstream_vessel:OUTLET", + "231": "flow:downstream_vessel:OUTLET", + "232": "flow:downstream_vessel:OUTLET", + "233": "flow:downstream_vessel:OUTLET", + "234": "flow:downstream_vessel:OUTLET", + "235": "flow:downstream_vessel:OUTLET", + "236": "flow:downstream_vessel:OUTLET", + "237": "flow:downstream_vessel:OUTLET", + "238": "flow:downstream_vessel:OUTLET", + "239": "flow:downstream_vessel:OUTLET", + "240": "flow:downstream_vessel:OUTLET", + "241": "flow:downstream_vessel:OUTLET", + "242": "flow:downstream_vessel:OUTLET", + "243": "flow:downstream_vessel:OUTLET", + "244": "flow:downstream_vessel:OUTLET", + "245": "flow:downstream_vessel:OUTLET", + "246": "flow:downstream_vessel:OUTLET", + "247": "flow:downstream_vessel:OUTLET", + "248": "flow:downstream_vessel:OUTLET", + "249": "flow:downstream_vessel:OUTLET", + "250": "flow:downstream_vessel:OUTLET", + "251": "flow:downstream_vessel:OUTLET", + "252": "flow:downstream_vessel:OUTLET", + "253": "flow:downstream_vessel:OUTLET", + "254": "flow:downstream_vessel:OUTLET", + "255": "flow:downstream_vessel:OUTLET", + "256": "flow:downstream_vessel:OUTLET", + "257": "flow:downstream_vessel:OUTLET", + "258": "flow:downstream_vessel:OUTLET", + "259": "flow:downstream_vessel:OUTLET", + "260": "flow:downstream_vessel:OUTLET", + "261": "flow:downstream_vessel:OUTLET", + "262": "flow:downstream_vessel:OUTLET", + "263": "flow:downstream_vessel:OUTLET", + "264": "flow:downstream_vessel:OUTLET", + "265": "flow:downstream_vessel:OUTLET", + "266": "flow:downstream_vessel:OUTLET", + "267": "flow:downstream_vessel:OUTLET", + "268": "flow:downstream_vessel:OUTLET", + "269": "flow:downstream_vessel:OUTLET", + "270": "flow:downstream_vessel:OUTLET", + "271": "flow:downstream_vessel:OUTLET", + "272": "flow:downstream_vessel:OUTLET", + "273": "flow:downstream_vessel:OUTLET", + "274": "flow:downstream_vessel:OUTLET", + "275": "flow:downstream_vessel:OUTLET", + "276": "flow:downstream_vessel:OUTLET", + "277": "flow:downstream_vessel:OUTLET", + "278": "flow:downstream_vessel:OUTLET", + "279": "flow:downstream_vessel:OUTLET", + "280": "flow:downstream_vessel:OUTLET", + "281": "flow:downstream_vessel:OUTLET", + "282": "flow:downstream_vessel:OUTLET", + "283": "flow:downstream_vessel:OUTLET", + "284": "flow:downstream_vessel:OUTLET", + "285": "flow:downstream_vessel:OUTLET", + "286": "flow:downstream_vessel:OUTLET", + "287": "flow:downstream_vessel:OUTLET", + "288": "flow:downstream_vessel:OUTLET", + "289": "flow:downstream_vessel:OUTLET", + "290": "flow:downstream_vessel:OUTLET", + "291": "flow:downstream_vessel:OUTLET", + "292": "flow:downstream_vessel:OUTLET", + "293": "flow:downstream_vessel:OUTLET", + "294": "flow:downstream_vessel:OUTLET", + "295": "flow:downstream_vessel:OUTLET", + "296": "flow:downstream_vessel:OUTLET", + "297": "flow:downstream_vessel:OUTLET", + "298": "flow:downstream_vessel:OUTLET", + "299": "flow:downstream_vessel:OUTLET", + "300": "flow:downstream_vessel:OUTLET", + "301": "flow:downstream_vessel:OUTLET", + "302": "flow:downstream_vessel:OUTLET", + "303": "pressure:downstream_vessel:OUTLET", + "304": "pressure:downstream_vessel:OUTLET", + "305": "pressure:downstream_vessel:OUTLET", + "306": "pressure:downstream_vessel:OUTLET", + "307": "pressure:downstream_vessel:OUTLET", + "308": "pressure:downstream_vessel:OUTLET", + "309": "pressure:downstream_vessel:OUTLET", + "310": "pressure:downstream_vessel:OUTLET", + "311": "pressure:downstream_vessel:OUTLET", + "312": "pressure:downstream_vessel:OUTLET", + "313": "pressure:downstream_vessel:OUTLET", + "314": "pressure:downstream_vessel:OUTLET", + "315": "pressure:downstream_vessel:OUTLET", + "316": "pressure:downstream_vessel:OUTLET", + "317": "pressure:downstream_vessel:OUTLET", + "318": "pressure:downstream_vessel:OUTLET", + "319": "pressure:downstream_vessel:OUTLET", + "320": "pressure:downstream_vessel:OUTLET", + "321": "pressure:downstream_vessel:OUTLET", + "322": "pressure:downstream_vessel:OUTLET", + "323": "pressure:downstream_vessel:OUTLET", + "324": "pressure:downstream_vessel:OUTLET", + "325": "pressure:downstream_vessel:OUTLET", + "326": "pressure:downstream_vessel:OUTLET", + "327": "pressure:downstream_vessel:OUTLET", + "328": "pressure:downstream_vessel:OUTLET", + "329": "pressure:downstream_vessel:OUTLET", + "330": "pressure:downstream_vessel:OUTLET", + "331": "pressure:downstream_vessel:OUTLET", + "332": "pressure:downstream_vessel:OUTLET", + "333": "pressure:downstream_vessel:OUTLET", + "334": "pressure:downstream_vessel:OUTLET", + "335": "pressure:downstream_vessel:OUTLET", + "336": "pressure:downstream_vessel:OUTLET", + "337": "pressure:downstream_vessel:OUTLET", + "338": "pressure:downstream_vessel:OUTLET", + "339": "pressure:downstream_vessel:OUTLET", + "340": "pressure:downstream_vessel:OUTLET", + "341": "pressure:downstream_vessel:OUTLET", + "342": "pressure:downstream_vessel:OUTLET", + "343": "pressure:downstream_vessel:OUTLET", + "344": "pressure:downstream_vessel:OUTLET", + "345": "pressure:downstream_vessel:OUTLET", + "346": "pressure:downstream_vessel:OUTLET", + "347": "pressure:downstream_vessel:OUTLET", + "348": "pressure:downstream_vessel:OUTLET", + "349": "pressure:downstream_vessel:OUTLET", + "350": "pressure:downstream_vessel:OUTLET", + "351": "pressure:downstream_vessel:OUTLET", + "352": "pressure:downstream_vessel:OUTLET", + "353": "pressure:downstream_vessel:OUTLET", + "354": "pressure:downstream_vessel:OUTLET", + "355": "pressure:downstream_vessel:OUTLET", + "356": "pressure:downstream_vessel:OUTLET", + "357": "pressure:downstream_vessel:OUTLET", + "358": "pressure:downstream_vessel:OUTLET", + "359": "pressure:downstream_vessel:OUTLET", + "360": "pressure:downstream_vessel:OUTLET", + "361": "pressure:downstream_vessel:OUTLET", + "362": "pressure:downstream_vessel:OUTLET", + "363": "pressure:downstream_vessel:OUTLET", + "364": "pressure:downstream_vessel:OUTLET", + "365": "pressure:downstream_vessel:OUTLET", + "366": "pressure:downstream_vessel:OUTLET", + "367": "pressure:downstream_vessel:OUTLET", + "368": "pressure:downstream_vessel:OUTLET", + "369": "pressure:downstream_vessel:OUTLET", + "370": "pressure:downstream_vessel:OUTLET", + "371": "pressure:downstream_vessel:OUTLET", + "372": "pressure:downstream_vessel:OUTLET", + "373": "pressure:downstream_vessel:OUTLET", + "374": "pressure:downstream_vessel:OUTLET", + "375": "pressure:downstream_vessel:OUTLET", + "376": "pressure:downstream_vessel:OUTLET", + "377": "pressure:downstream_vessel:OUTLET", + "378": "pressure:downstream_vessel:OUTLET", + "379": "pressure:downstream_vessel:OUTLET", + "380": "pressure:downstream_vessel:OUTLET", + "381": "pressure:downstream_vessel:OUTLET", + "382": "pressure:downstream_vessel:OUTLET", + "383": "pressure:downstream_vessel:OUTLET", + "384": "pressure:downstream_vessel:OUTLET", + "385": "pressure:downstream_vessel:OUTLET", + "386": "pressure:downstream_vessel:OUTLET", + "387": "pressure:downstream_vessel:OUTLET", + "388": "pressure:downstream_vessel:OUTLET", + "389": "pressure:downstream_vessel:OUTLET", + "390": "pressure:downstream_vessel:OUTLET", + "391": "pressure:downstream_vessel:OUTLET", + "392": "pressure:downstream_vessel:OUTLET", + "393": "pressure:downstream_vessel:OUTLET", + "394": "pressure:downstream_vessel:OUTLET", + "395": "pressure:downstream_vessel:OUTLET", + "396": "pressure:downstream_vessel:OUTLET", + "397": "pressure:downstream_vessel:OUTLET", + "398": "pressure:downstream_vessel:OUTLET", + "399": "pressure:downstream_vessel:OUTLET", + "400": "pressure:downstream_vessel:OUTLET", + "401": "pressure:downstream_vessel:OUTLET", + "402": "pressure:downstream_vessel:OUTLET", + "403": "pressure:downstream_vessel:OUTLET", + "404": "flow:upstream_vessel:valve", + "405": "flow:upstream_vessel:valve", + "406": "flow:upstream_vessel:valve", + "407": "flow:upstream_vessel:valve", + "408": "flow:upstream_vessel:valve", + "409": "flow:upstream_vessel:valve", + "410": "flow:upstream_vessel:valve", + "411": "flow:upstream_vessel:valve", + "412": "flow:upstream_vessel:valve", + "413": "flow:upstream_vessel:valve", + "414": "flow:upstream_vessel:valve", + "415": "flow:upstream_vessel:valve", + "416": "flow:upstream_vessel:valve", + "417": "flow:upstream_vessel:valve", + "418": "flow:upstream_vessel:valve", + "419": "flow:upstream_vessel:valve", + "420": "flow:upstream_vessel:valve", + "421": "flow:upstream_vessel:valve", + "422": "flow:upstream_vessel:valve", + "423": "flow:upstream_vessel:valve", + "424": "flow:upstream_vessel:valve", + "425": "flow:upstream_vessel:valve", + "426": "flow:upstream_vessel:valve", + "427": "flow:upstream_vessel:valve", + "428": "flow:upstream_vessel:valve", + "429": "flow:upstream_vessel:valve", + "430": "flow:upstream_vessel:valve", + "431": "flow:upstream_vessel:valve", + "432": "flow:upstream_vessel:valve", + "433": "flow:upstream_vessel:valve", + "434": "flow:upstream_vessel:valve", + "435": "flow:upstream_vessel:valve", + "436": "flow:upstream_vessel:valve", + "437": "flow:upstream_vessel:valve", + "438": "flow:upstream_vessel:valve", + "439": "flow:upstream_vessel:valve", + "440": "flow:upstream_vessel:valve", + "441": "flow:upstream_vessel:valve", + "442": "flow:upstream_vessel:valve", + "443": "flow:upstream_vessel:valve", + "444": "flow:upstream_vessel:valve", + "445": "flow:upstream_vessel:valve", + "446": "flow:upstream_vessel:valve", + "447": "flow:upstream_vessel:valve", + "448": "flow:upstream_vessel:valve", + "449": "flow:upstream_vessel:valve", + "450": "flow:upstream_vessel:valve", + "451": "flow:upstream_vessel:valve", + "452": "flow:upstream_vessel:valve", + "453": "flow:upstream_vessel:valve", + "454": "flow:upstream_vessel:valve", + "455": "flow:upstream_vessel:valve", + "456": "flow:upstream_vessel:valve", + "457": "flow:upstream_vessel:valve", + "458": "flow:upstream_vessel:valve", + "459": "flow:upstream_vessel:valve", + "460": "flow:upstream_vessel:valve", + "461": "flow:upstream_vessel:valve", + "462": "flow:upstream_vessel:valve", + "463": "flow:upstream_vessel:valve", + "464": "flow:upstream_vessel:valve", + "465": "flow:upstream_vessel:valve", + "466": "flow:upstream_vessel:valve", + "467": "flow:upstream_vessel:valve", + "468": "flow:upstream_vessel:valve", + "469": "flow:upstream_vessel:valve", + "470": "flow:upstream_vessel:valve", + "471": "flow:upstream_vessel:valve", + "472": "flow:upstream_vessel:valve", + "473": "flow:upstream_vessel:valve", + "474": "flow:upstream_vessel:valve", + "475": "flow:upstream_vessel:valve", + "476": "flow:upstream_vessel:valve", + "477": "flow:upstream_vessel:valve", + "478": "flow:upstream_vessel:valve", + "479": "flow:upstream_vessel:valve", + "480": "flow:upstream_vessel:valve", + "481": "flow:upstream_vessel:valve", + "482": "flow:upstream_vessel:valve", + "483": "flow:upstream_vessel:valve", + "484": "flow:upstream_vessel:valve", + "485": "flow:upstream_vessel:valve", + "486": "flow:upstream_vessel:valve", + "487": "flow:upstream_vessel:valve", + "488": "flow:upstream_vessel:valve", + "489": "flow:upstream_vessel:valve", + "490": "flow:upstream_vessel:valve", + "491": "flow:upstream_vessel:valve", + "492": "flow:upstream_vessel:valve", + "493": "flow:upstream_vessel:valve", + "494": "flow:upstream_vessel:valve", + "495": "flow:upstream_vessel:valve", + "496": "flow:upstream_vessel:valve", + "497": "flow:upstream_vessel:valve", + "498": "flow:upstream_vessel:valve", + "499": "flow:upstream_vessel:valve", + "500": "flow:upstream_vessel:valve", + "501": "flow:upstream_vessel:valve", + "502": "flow:upstream_vessel:valve", + "503": "flow:upstream_vessel:valve", + "504": "flow:upstream_vessel:valve", + "505": "pressure:upstream_vessel:valve", + "506": "pressure:upstream_vessel:valve", + "507": "pressure:upstream_vessel:valve", + "508": "pressure:upstream_vessel:valve", + "509": "pressure:upstream_vessel:valve", + "510": "pressure:upstream_vessel:valve", + "511": "pressure:upstream_vessel:valve", + "512": "pressure:upstream_vessel:valve", + "513": "pressure:upstream_vessel:valve", + "514": "pressure:upstream_vessel:valve", + "515": "pressure:upstream_vessel:valve", + "516": "pressure:upstream_vessel:valve", + "517": "pressure:upstream_vessel:valve", + "518": "pressure:upstream_vessel:valve", + "519": "pressure:upstream_vessel:valve", + "520": "pressure:upstream_vessel:valve", + "521": "pressure:upstream_vessel:valve", + "522": "pressure:upstream_vessel:valve", + "523": "pressure:upstream_vessel:valve", + "524": "pressure:upstream_vessel:valve", + "525": "pressure:upstream_vessel:valve", + "526": "pressure:upstream_vessel:valve", + "527": "pressure:upstream_vessel:valve", + "528": "pressure:upstream_vessel:valve", + "529": "pressure:upstream_vessel:valve", + "530": "pressure:upstream_vessel:valve", + "531": "pressure:upstream_vessel:valve", + "532": "pressure:upstream_vessel:valve", + "533": "pressure:upstream_vessel:valve", + "534": "pressure:upstream_vessel:valve", + "535": "pressure:upstream_vessel:valve", + "536": "pressure:upstream_vessel:valve", + "537": "pressure:upstream_vessel:valve", + "538": "pressure:upstream_vessel:valve", + "539": "pressure:upstream_vessel:valve", + "540": "pressure:upstream_vessel:valve", + "541": "pressure:upstream_vessel:valve", + "542": "pressure:upstream_vessel:valve", + "543": "pressure:upstream_vessel:valve", + "544": "pressure:upstream_vessel:valve", + "545": "pressure:upstream_vessel:valve", + "546": "pressure:upstream_vessel:valve", + "547": "pressure:upstream_vessel:valve", + "548": "pressure:upstream_vessel:valve", + "549": "pressure:upstream_vessel:valve", + "550": "pressure:upstream_vessel:valve", + "551": "pressure:upstream_vessel:valve", + "552": "pressure:upstream_vessel:valve", + "553": "pressure:upstream_vessel:valve", + "554": "pressure:upstream_vessel:valve", + "555": "pressure:upstream_vessel:valve", + "556": "pressure:upstream_vessel:valve", + "557": "pressure:upstream_vessel:valve", + "558": "pressure:upstream_vessel:valve", + "559": "pressure:upstream_vessel:valve", + "560": "pressure:upstream_vessel:valve", + "561": "pressure:upstream_vessel:valve", + "562": "pressure:upstream_vessel:valve", + "563": "pressure:upstream_vessel:valve", + "564": "pressure:upstream_vessel:valve", + "565": "pressure:upstream_vessel:valve", + "566": "pressure:upstream_vessel:valve", + "567": "pressure:upstream_vessel:valve", + "568": "pressure:upstream_vessel:valve", + "569": "pressure:upstream_vessel:valve", + "570": "pressure:upstream_vessel:valve", + "571": "pressure:upstream_vessel:valve", + "572": "pressure:upstream_vessel:valve", + "573": "pressure:upstream_vessel:valve", + "574": "pressure:upstream_vessel:valve", + "575": "pressure:upstream_vessel:valve", + "576": "pressure:upstream_vessel:valve", + "577": "pressure:upstream_vessel:valve", + "578": "pressure:upstream_vessel:valve", + "579": "pressure:upstream_vessel:valve", + "580": "pressure:upstream_vessel:valve", + "581": "pressure:upstream_vessel:valve", + "582": "pressure:upstream_vessel:valve", + "583": "pressure:upstream_vessel:valve", + "584": "pressure:upstream_vessel:valve", + "585": "pressure:upstream_vessel:valve", + "586": "pressure:upstream_vessel:valve", + "587": "pressure:upstream_vessel:valve", + "588": "pressure:upstream_vessel:valve", + "589": "pressure:upstream_vessel:valve", + "590": "pressure:upstream_vessel:valve", + "591": "pressure:upstream_vessel:valve", + "592": "pressure:upstream_vessel:valve", + "593": "pressure:upstream_vessel:valve", + "594": "pressure:upstream_vessel:valve", + "595": "pressure:upstream_vessel:valve", + "596": "pressure:upstream_vessel:valve", + "597": "pressure:upstream_vessel:valve", + "598": "pressure:upstream_vessel:valve", + "599": "pressure:upstream_vessel:valve", + "600": "pressure:upstream_vessel:valve", + "601": "pressure:upstream_vessel:valve", + "602": "pressure:upstream_vessel:valve", + "603": "pressure:upstream_vessel:valve", + "604": "pressure:upstream_vessel:valve", + "605": "pressure:upstream_vessel:valve", + "606": "flow:valve:downstream_vessel", + "607": "flow:valve:downstream_vessel", + "608": "flow:valve:downstream_vessel", + "609": "flow:valve:downstream_vessel", + "610": "flow:valve:downstream_vessel", + "611": "flow:valve:downstream_vessel", + "612": "flow:valve:downstream_vessel", + "613": "flow:valve:downstream_vessel", + "614": "flow:valve:downstream_vessel", + "615": "flow:valve:downstream_vessel", + "616": "flow:valve:downstream_vessel", + "617": "flow:valve:downstream_vessel", + "618": "flow:valve:downstream_vessel", + "619": "flow:valve:downstream_vessel", + "620": "flow:valve:downstream_vessel", + "621": "flow:valve:downstream_vessel", + "622": "flow:valve:downstream_vessel", + "623": "flow:valve:downstream_vessel", + "624": "flow:valve:downstream_vessel", + "625": "flow:valve:downstream_vessel", + "626": "flow:valve:downstream_vessel", + "627": "flow:valve:downstream_vessel", + "628": "flow:valve:downstream_vessel", + "629": "flow:valve:downstream_vessel", + "630": "flow:valve:downstream_vessel", + "631": "flow:valve:downstream_vessel", + "632": "flow:valve:downstream_vessel", + "633": "flow:valve:downstream_vessel", + "634": "flow:valve:downstream_vessel", + "635": "flow:valve:downstream_vessel", + "636": "flow:valve:downstream_vessel", + "637": "flow:valve:downstream_vessel", + "638": "flow:valve:downstream_vessel", + "639": "flow:valve:downstream_vessel", + "640": "flow:valve:downstream_vessel", + "641": "flow:valve:downstream_vessel", + "642": "flow:valve:downstream_vessel", + "643": "flow:valve:downstream_vessel", + "644": "flow:valve:downstream_vessel", + "645": "flow:valve:downstream_vessel", + "646": "flow:valve:downstream_vessel", + "647": "flow:valve:downstream_vessel", + "648": "flow:valve:downstream_vessel", + "649": "flow:valve:downstream_vessel", + "650": "flow:valve:downstream_vessel", + "651": "flow:valve:downstream_vessel", + "652": "flow:valve:downstream_vessel", + "653": "flow:valve:downstream_vessel", + "654": "flow:valve:downstream_vessel", + "655": "flow:valve:downstream_vessel", + "656": "flow:valve:downstream_vessel", + "657": "flow:valve:downstream_vessel", + "658": "flow:valve:downstream_vessel", + "659": "flow:valve:downstream_vessel", + "660": "flow:valve:downstream_vessel", + "661": "flow:valve:downstream_vessel", + "662": "flow:valve:downstream_vessel", + "663": "flow:valve:downstream_vessel", + "664": "flow:valve:downstream_vessel", + "665": "flow:valve:downstream_vessel", + "666": "flow:valve:downstream_vessel", + "667": "flow:valve:downstream_vessel", + "668": "flow:valve:downstream_vessel", + "669": "flow:valve:downstream_vessel", + "670": "flow:valve:downstream_vessel", + "671": "flow:valve:downstream_vessel", + "672": "flow:valve:downstream_vessel", + "673": "flow:valve:downstream_vessel", + "674": "flow:valve:downstream_vessel", + "675": "flow:valve:downstream_vessel", + "676": "flow:valve:downstream_vessel", + "677": "flow:valve:downstream_vessel", + "678": "flow:valve:downstream_vessel", + "679": "flow:valve:downstream_vessel", + "680": "flow:valve:downstream_vessel", + "681": "flow:valve:downstream_vessel", + "682": "flow:valve:downstream_vessel", + "683": "flow:valve:downstream_vessel", + "684": "flow:valve:downstream_vessel", + "685": "flow:valve:downstream_vessel", + "686": "flow:valve:downstream_vessel", + "687": "flow:valve:downstream_vessel", + "688": "flow:valve:downstream_vessel", + "689": "flow:valve:downstream_vessel", + "690": "flow:valve:downstream_vessel", + "691": "flow:valve:downstream_vessel", + "692": "flow:valve:downstream_vessel", + "693": "flow:valve:downstream_vessel", + "694": "flow:valve:downstream_vessel", + "695": "flow:valve:downstream_vessel", + "696": "flow:valve:downstream_vessel", + "697": "flow:valve:downstream_vessel", + "698": "flow:valve:downstream_vessel", + "699": "flow:valve:downstream_vessel", + "700": "flow:valve:downstream_vessel", + "701": "flow:valve:downstream_vessel", + "702": "flow:valve:downstream_vessel", + "703": "flow:valve:downstream_vessel", + "704": "flow:valve:downstream_vessel", + "705": "flow:valve:downstream_vessel", + "706": "flow:valve:downstream_vessel", + "707": "pressure:valve:downstream_vessel", + "708": "pressure:valve:downstream_vessel", + "709": "pressure:valve:downstream_vessel", + "710": "pressure:valve:downstream_vessel", + "711": "pressure:valve:downstream_vessel", + "712": "pressure:valve:downstream_vessel", + "713": "pressure:valve:downstream_vessel", + "714": "pressure:valve:downstream_vessel", + "715": "pressure:valve:downstream_vessel", + "716": "pressure:valve:downstream_vessel", + "717": "pressure:valve:downstream_vessel", + "718": "pressure:valve:downstream_vessel", + "719": "pressure:valve:downstream_vessel", + "720": "pressure:valve:downstream_vessel", + "721": "pressure:valve:downstream_vessel", + "722": "pressure:valve:downstream_vessel", + "723": "pressure:valve:downstream_vessel", + "724": "pressure:valve:downstream_vessel", + "725": "pressure:valve:downstream_vessel", + "726": "pressure:valve:downstream_vessel", + "727": "pressure:valve:downstream_vessel", + "728": "pressure:valve:downstream_vessel", + "729": "pressure:valve:downstream_vessel", + "730": "pressure:valve:downstream_vessel", + "731": "pressure:valve:downstream_vessel", + "732": "pressure:valve:downstream_vessel", + "733": "pressure:valve:downstream_vessel", + "734": "pressure:valve:downstream_vessel", + "735": "pressure:valve:downstream_vessel", + "736": "pressure:valve:downstream_vessel", + "737": "pressure:valve:downstream_vessel", + "738": "pressure:valve:downstream_vessel", + "739": "pressure:valve:downstream_vessel", + "740": "pressure:valve:downstream_vessel", + "741": "pressure:valve:downstream_vessel", + "742": "pressure:valve:downstream_vessel", + "743": "pressure:valve:downstream_vessel", + "744": "pressure:valve:downstream_vessel", + "745": "pressure:valve:downstream_vessel", + "746": "pressure:valve:downstream_vessel", + "747": "pressure:valve:downstream_vessel", + "748": "pressure:valve:downstream_vessel", + "749": "pressure:valve:downstream_vessel", + "750": "pressure:valve:downstream_vessel", + "751": "pressure:valve:downstream_vessel", + "752": "pressure:valve:downstream_vessel", + "753": "pressure:valve:downstream_vessel", + "754": "pressure:valve:downstream_vessel", + "755": "pressure:valve:downstream_vessel", + "756": "pressure:valve:downstream_vessel", + "757": "pressure:valve:downstream_vessel", + "758": "pressure:valve:downstream_vessel", + "759": "pressure:valve:downstream_vessel", + "760": "pressure:valve:downstream_vessel", + "761": "pressure:valve:downstream_vessel", + "762": "pressure:valve:downstream_vessel", + "763": "pressure:valve:downstream_vessel", + "764": "pressure:valve:downstream_vessel", + "765": "pressure:valve:downstream_vessel", + "766": "pressure:valve:downstream_vessel", + "767": "pressure:valve:downstream_vessel", + "768": "pressure:valve:downstream_vessel", + "769": "pressure:valve:downstream_vessel", + "770": "pressure:valve:downstream_vessel", + "771": "pressure:valve:downstream_vessel", + "772": "pressure:valve:downstream_vessel", + "773": "pressure:valve:downstream_vessel", + "774": "pressure:valve:downstream_vessel", + "775": "pressure:valve:downstream_vessel", + "776": "pressure:valve:downstream_vessel", + "777": "pressure:valve:downstream_vessel", + "778": "pressure:valve:downstream_vessel", + "779": "pressure:valve:downstream_vessel", + "780": "pressure:valve:downstream_vessel", + "781": "pressure:valve:downstream_vessel", + "782": "pressure:valve:downstream_vessel", + "783": "pressure:valve:downstream_vessel", + "784": "pressure:valve:downstream_vessel", + "785": "pressure:valve:downstream_vessel", + "786": "pressure:valve:downstream_vessel", + "787": "pressure:valve:downstream_vessel", + "788": "pressure:valve:downstream_vessel", + "789": "pressure:valve:downstream_vessel", + "790": "pressure:valve:downstream_vessel", + "791": "pressure:valve:downstream_vessel", + "792": "pressure:valve:downstream_vessel", + "793": "pressure:valve:downstream_vessel", + "794": "pressure:valve:downstream_vessel", + "795": "pressure:valve:downstream_vessel", + "796": "pressure:valve:downstream_vessel", + "797": "pressure:valve:downstream_vessel", + "798": "pressure:valve:downstream_vessel", + "799": "pressure:valve:downstream_vessel", + "800": "pressure:valve:downstream_vessel", + "801": "pressure:valve:downstream_vessel", + "802": "pressure:valve:downstream_vessel", + "803": "pressure:valve:downstream_vessel", + "804": "pressure:valve:downstream_vessel", + "805": "pressure:valve:downstream_vessel", + "806": "pressure:valve:downstream_vessel", + "807": "pressure:valve:downstream_vessel" + }, + "time": { + "0": 0.0, + "1": 0.01, + "2": 0.02, + "3": 0.03, + "4": 0.04, + "5": 0.05, + "6": 0.06, + "7": 0.07, + "8": 0.08, + "9": 0.09, + "10": 0.1, + "11": 0.11, + "12": 0.12, + "13": 0.13, + "14": 0.14, + "15": 0.15, + "16": 0.16, + "17": 0.17, + "18": 0.18, + "19": 0.19, + "20": 0.2, + "21": 0.21, + "22": 0.22, + "23": 0.23, + "24": 0.24, + "25": 0.25, + "26": 0.26, + "27": 0.27, + "28": 0.28, + "29": 0.29, + "30": 0.3, + "31": 0.31, + "32": 0.32, + "33": 0.33, + "34": 0.34, + "35": 0.35, + "36": 0.36, + "37": 0.37, + "38": 0.38, + "39": 0.39, + "40": 0.4, + "41": 0.41, + "42": 0.42, + "43": 0.43, + "44": 0.44, + "45": 0.45, + "46": 0.46, + "47": 0.47, + "48": 0.48, + "49": 0.49, + "50": 0.5, + "51": 0.51, + "52": 0.52, + "53": 0.53, + "54": 0.54, + "55": 0.55, + "56": 0.56, + "57": 0.57, + "58": 0.58, + "59": 0.59, + "60": 0.6, + "61": 0.61, + "62": 0.62, + "63": 0.63, + "64": 0.64, + "65": 0.65, + "66": 0.66, + "67": 0.67, + "68": 0.68, + "69": 0.69, + "70": 0.7, + "71": 0.71, + "72": 0.72, + "73": 0.73, + "74": 0.74, + "75": 0.75, + "76": 0.76, + "77": 0.77, + "78": 0.78, + "79": 0.79, + "80": 0.8, + "81": 0.81, + "82": 0.82, + "83": 0.83, + "84": 0.84, + "85": 0.85, + "86": 0.86, + "87": 0.87, + "88": 0.88, + "89": 0.89, + "90": 0.9, + "91": 0.91, + "92": 0.92, + "93": 0.93, + "94": 0.94, + "95": 0.95, + "96": 0.96, + "97": 0.97, + "98": 0.98, + "99": 0.99, + "100": 1.0, + "101": 0.0, + "102": 0.01, + "103": 0.02, + "104": 0.03, + "105": 0.04, + "106": 0.05, + "107": 0.06, + "108": 0.07, + "109": 0.08, + "110": 0.09, + "111": 0.1, + "112": 0.11, + "113": 0.12, + "114": 0.13, + "115": 0.14, + "116": 0.15, + "117": 0.16, + "118": 0.17, + "119": 0.18, + "120": 0.19, + "121": 0.2, + "122": 0.21, + "123": 0.22, + "124": 0.23, + "125": 0.24, + "126": 0.25, + "127": 0.26, + "128": 0.27, + "129": 0.28, + "130": 0.29, + "131": 0.3, + "132": 0.31, + "133": 0.32, + "134": 0.33, + "135": 0.34, + "136": 0.35, + "137": 0.36, + "138": 0.37, + "139": 0.38, + "140": 0.39, + "141": 0.4, + "142": 0.41, + "143": 0.42, + "144": 0.43, + "145": 0.44, + "146": 0.45, + "147": 0.46, + "148": 0.47, + "149": 0.48, + "150": 0.49, + "151": 0.5, + "152": 0.51, + "153": 0.52, + "154": 0.53, + "155": 0.54, + "156": 0.55, + "157": 0.56, + "158": 0.57, + "159": 0.58, + "160": 0.59, + "161": 0.6, + "162": 0.61, + "163": 0.62, + "164": 0.63, + "165": 0.64, + "166": 0.65, + "167": 0.66, + "168": 0.67, + "169": 0.68, + "170": 0.69, + "171": 0.7, + "172": 0.71, + "173": 0.72, + "174": 0.73, + "175": 0.74, + "176": 0.75, + "177": 0.76, + "178": 0.77, + "179": 0.78, + "180": 0.79, + "181": 0.8, + "182": 0.81, + "183": 0.82, + "184": 0.83, + "185": 0.84, + "186": 0.85, + "187": 0.86, + "188": 0.87, + "189": 0.88, + "190": 0.89, + "191": 0.9, + "192": 0.91, + "193": 0.92, + "194": 0.93, + "195": 0.94, + "196": 0.95, + "197": 0.96, + "198": 0.97, + "199": 0.98, + "200": 0.99, + "201": 1.0, + "202": 0.0, + "203": 0.01, + "204": 0.02, + "205": 0.03, + "206": 0.04, + "207": 0.05, + "208": 0.06, + "209": 0.07, + "210": 0.08, + "211": 0.09, + "212": 0.1, + "213": 0.11, + "214": 0.12, + "215": 0.13, + "216": 0.14, + "217": 0.15, + "218": 0.16, + "219": 0.17, + "220": 0.18, + "221": 0.19, + "222": 0.2, + "223": 0.21, + "224": 0.22, + "225": 0.23, + "226": 0.24, + "227": 0.25, + "228": 0.26, + "229": 0.27, + "230": 0.28, + "231": 0.29, + "232": 0.3, + "233": 0.31, + "234": 0.32, + "235": 0.33, + "236": 0.34, + "237": 0.35, + "238": 0.36, + "239": 0.37, + "240": 0.38, + "241": 0.39, + "242": 0.4, + "243": 0.41, + "244": 0.42, + "245": 0.43, + "246": 0.44, + "247": 0.45, + "248": 0.46, + "249": 0.47, + "250": 0.48, + "251": 0.49, + "252": 0.5, + "253": 0.51, + "254": 0.52, + "255": 0.53, + "256": 0.54, + "257": 0.55, + "258": 0.56, + "259": 0.57, + "260": 0.58, + "261": 0.59, + "262": 0.6, + "263": 0.61, + "264": 0.62, + "265": 0.63, + "266": 0.64, + "267": 0.65, + "268": 0.66, + "269": 0.67, + "270": 0.68, + "271": 0.69, + "272": 0.7, + "273": 0.71, + "274": 0.72, + "275": 0.73, + "276": 0.74, + "277": 0.75, + "278": 0.76, + "279": 0.77, + "280": 0.78, + "281": 0.79, + "282": 0.8, + "283": 0.81, + "284": 0.82, + "285": 0.83, + "286": 0.84, + "287": 0.85, + "288": 0.86, + "289": 0.87, + "290": 0.88, + "291": 0.89, + "292": 0.9, + "293": 0.91, + "294": 0.92, + "295": 0.93, + "296": 0.94, + "297": 0.95, + "298": 0.96, + "299": 0.97, + "300": 0.98, + "301": 0.99, + "302": 1.0, + "303": 0.0, + "304": 0.01, + "305": 0.02, + "306": 0.03, + "307": 0.04, + "308": 0.05, + "309": 0.06, + "310": 0.07, + "311": 0.08, + "312": 0.09, + "313": 0.1, + "314": 0.11, + "315": 0.12, + "316": 0.13, + "317": 0.14, + "318": 0.15, + "319": 0.16, + "320": 0.17, + "321": 0.18, + "322": 0.19, + "323": 0.2, + "324": 0.21, + "325": 0.22, + "326": 0.23, + "327": 0.24, + "328": 0.25, + "329": 0.26, + "330": 0.27, + "331": 0.28, + "332": 0.29, + "333": 0.3, + "334": 0.31, + "335": 0.32, + "336": 0.33, + "337": 0.34, + "338": 0.35, + "339": 0.36, + "340": 0.37, + "341": 0.38, + "342": 0.39, + "343": 0.4, + "344": 0.41, + "345": 0.42, + "346": 0.43, + "347": 0.44, + "348": 0.45, + "349": 0.46, + "350": 0.47, + "351": 0.48, + "352": 0.49, + "353": 0.5, + "354": 0.51, + "355": 0.52, + "356": 0.53, + "357": 0.54, + "358": 0.55, + "359": 0.56, + "360": 0.57, + "361": 0.58, + "362": 0.59, + "363": 0.6, + "364": 0.61, + "365": 0.62, + "366": 0.63, + "367": 0.64, + "368": 0.65, + "369": 0.66, + "370": 0.67, + "371": 0.68, + "372": 0.69, + "373": 0.7, + "374": 0.71, + "375": 0.72, + "376": 0.73, + "377": 0.74, + "378": 0.75, + "379": 0.76, + "380": 0.77, + "381": 0.78, + "382": 0.79, + "383": 0.8, + "384": 0.81, + "385": 0.82, + "386": 0.83, + "387": 0.84, + "388": 0.85, + "389": 0.86, + "390": 0.87, + "391": 0.88, + "392": 0.89, + "393": 0.9, + "394": 0.91, + "395": 0.92, + "396": 0.93, + "397": 0.94, + "398": 0.95, + "399": 0.96, + "400": 0.97, + "401": 0.98, + "402": 0.99, + "403": 1.0, + "404": 0.0, + "405": 0.01, + "406": 0.02, + "407": 0.03, + "408": 0.04, + "409": 0.05, + "410": 0.06, + "411": 0.07, + "412": 0.08, + "413": 0.09, + "414": 0.1, + "415": 0.11, + "416": 0.12, + "417": 0.13, + "418": 0.14, + "419": 0.15, + "420": 0.16, + "421": 0.17, + "422": 0.18, + "423": 0.19, + "424": 0.2, + "425": 0.21, + "426": 0.22, + "427": 0.23, + "428": 0.24, + "429": 0.25, + "430": 0.26, + "431": 0.27, + "432": 0.28, + "433": 0.29, + "434": 0.3, + "435": 0.31, + "436": 0.32, + "437": 0.33, + "438": 0.34, + "439": 0.35, + "440": 0.36, + "441": 0.37, + "442": 0.38, + "443": 0.39, + "444": 0.4, + "445": 0.41, + "446": 0.42, + "447": 0.43, + "448": 0.44, + "449": 0.45, + "450": 0.46, + "451": 0.47, + "452": 0.48, + "453": 0.49, + "454": 0.5, + "455": 0.51, + "456": 0.52, + "457": 0.53, + "458": 0.54, + "459": 0.55, + "460": 0.56, + "461": 0.57, + "462": 0.58, + "463": 0.59, + "464": 0.6, + "465": 0.61, + "466": 0.62, + "467": 0.63, + "468": 0.64, + "469": 0.65, + "470": 0.66, + "471": 0.67, + "472": 0.68, + "473": 0.69, + "474": 0.7, + "475": 0.71, + "476": 0.72, + "477": 0.73, + "478": 0.74, + "479": 0.75, + "480": 0.76, + "481": 0.77, + "482": 0.78, + "483": 0.79, + "484": 0.8, + "485": 0.81, + "486": 0.82, + "487": 0.83, + "488": 0.84, + "489": 0.85, + "490": 0.86, + "491": 0.87, + "492": 0.88, + "493": 0.89, + "494": 0.9, + "495": 0.91, + "496": 0.92, + "497": 0.93, + "498": 0.94, + "499": 0.95, + "500": 0.96, + "501": 0.97, + "502": 0.98, + "503": 0.99, + "504": 1.0, + "505": 0.0, + "506": 0.01, + "507": 0.02, + "508": 0.03, + "509": 0.04, + "510": 0.05, + "511": 0.06, + "512": 0.07, + "513": 0.08, + "514": 0.09, + "515": 0.1, + "516": 0.11, + "517": 0.12, + "518": 0.13, + "519": 0.14, + "520": 0.15, + "521": 0.16, + "522": 0.17, + "523": 0.18, + "524": 0.19, + "525": 0.2, + "526": 0.21, + "527": 0.22, + "528": 0.23, + "529": 0.24, + "530": 0.25, + "531": 0.26, + "532": 0.27, + "533": 0.28, + "534": 0.29, + "535": 0.3, + "536": 0.31, + "537": 0.32, + "538": 0.33, + "539": 0.34, + "540": 0.35, + "541": 0.36, + "542": 0.37, + "543": 0.38, + "544": 0.39, + "545": 0.4, + "546": 0.41, + "547": 0.42, + "548": 0.43, + "549": 0.44, + "550": 0.45, + "551": 0.46, + "552": 0.47, + "553": 0.48, + "554": 0.49, + "555": 0.5, + "556": 0.51, + "557": 0.52, + "558": 0.53, + "559": 0.54, + "560": 0.55, + "561": 0.56, + "562": 0.57, + "563": 0.58, + "564": 0.59, + "565": 0.6, + "566": 0.61, + "567": 0.62, + "568": 0.63, + "569": 0.64, + "570": 0.65, + "571": 0.66, + "572": 0.67, + "573": 0.68, + "574": 0.69, + "575": 0.7, + "576": 0.71, + "577": 0.72, + "578": 0.73, + "579": 0.74, + "580": 0.75, + "581": 0.76, + "582": 0.77, + "583": 0.78, + "584": 0.79, + "585": 0.8, + "586": 0.81, + "587": 0.82, + "588": 0.83, + "589": 0.84, + "590": 0.85, + "591": 0.86, + "592": 0.87, + "593": 0.88, + "594": 0.89, + "595": 0.9, + "596": 0.91, + "597": 0.92, + "598": 0.93, + "599": 0.94, + "600": 0.95, + "601": 0.96, + "602": 0.97, + "603": 0.98, + "604": 0.99, + "605": 1.0, + "606": 0.0, + "607": 0.01, + "608": 0.02, + "609": 0.03, + "610": 0.04, + "611": 0.05, + "612": 0.06, + "613": 0.07, + "614": 0.08, + "615": 0.09, + "616": 0.1, + "617": 0.11, + "618": 0.12, + "619": 0.13, + "620": 0.14, + "621": 0.15, + "622": 0.16, + "623": 0.17, + "624": 0.18, + "625": 0.19, + "626": 0.2, + "627": 0.21, + "628": 0.22, + "629": 0.23, + "630": 0.24, + "631": 0.25, + "632": 0.26, + "633": 0.27, + "634": 0.28, + "635": 0.29, + "636": 0.3, + "637": 0.31, + "638": 0.32, + "639": 0.33, + "640": 0.34, + "641": 0.35, + "642": 0.36, + "643": 0.37, + "644": 0.38, + "645": 0.39, + "646": 0.4, + "647": 0.41, + "648": 0.42, + "649": 0.43, + "650": 0.44, + "651": 0.45, + "652": 0.46, + "653": 0.47, + "654": 0.48, + "655": 0.49, + "656": 0.5, + "657": 0.51, + "658": 0.52, + "659": 0.53, + "660": 0.54, + "661": 0.55, + "662": 0.56, + "663": 0.57, + "664": 0.58, + "665": 0.59, + "666": 0.6, + "667": 0.61, + "668": 0.62, + "669": 0.63, + "670": 0.64, + "671": 0.65, + "672": 0.66, + "673": 0.67, + "674": 0.68, + "675": 0.69, + "676": 0.7, + "677": 0.71, + "678": 0.72, + "679": 0.73, + "680": 0.74, + "681": 0.75, + "682": 0.76, + "683": 0.77, + "684": 0.78, + "685": 0.79, + "686": 0.8, + "687": 0.81, + "688": 0.82, + "689": 0.83, + "690": 0.84, + "691": 0.85, + "692": 0.86, + "693": 0.87, + "694": 0.88, + "695": 0.89, + "696": 0.9, + "697": 0.91, + "698": 0.92, + "699": 0.93, + "700": 0.94, + "701": 0.95, + "702": 0.96, + "703": 0.97, + "704": 0.98, + "705": 0.99, + "706": 1.0, + "707": 0.0, + "708": 0.01, + "709": 0.02, + "710": 0.03, + "711": 0.04, + "712": 0.05, + "713": 0.06, + "714": 0.07, + "715": 0.08, + "716": 0.09, + "717": 0.1, + "718": 0.11, + "719": 0.12, + "720": 0.13, + "721": 0.14, + "722": 0.15, + "723": 0.16, + "724": 0.17, + "725": 0.18, + "726": 0.19, + "727": 0.2, + "728": 0.21, + "729": 0.22, + "730": 0.23, + "731": 0.24, + "732": 0.25, + "733": 0.26, + "734": 0.27, + "735": 0.28, + "736": 0.29, + "737": 0.3, + "738": 0.31, + "739": 0.32, + "740": 0.33, + "741": 0.34, + "742": 0.35, + "743": 0.36, + "744": 0.37, + "745": 0.38, + "746": 0.39, + "747": 0.4, + "748": 0.41, + "749": 0.42, + "750": 0.43, + "751": 0.44, + "752": 0.45, + "753": 0.46, + "754": 0.47, + "755": 0.48, + "756": 0.49, + "757": 0.5, + "758": 0.51, + "759": 0.52, + "760": 0.53, + "761": 0.54, + "762": 0.55, + "763": 0.56, + "764": 0.57, + "765": 0.58, + "766": 0.59, + "767": 0.6, + "768": 0.61, + "769": 0.62, + "770": 0.63, + "771": 0.64, + "772": 0.65, + "773": 0.66, + "774": 0.67, + "775": 0.68, + "776": 0.69, + "777": 0.7, + "778": 0.71, + "779": 0.72, + "780": 0.73, + "781": 0.74, + "782": 0.75, + "783": 0.76, + "784": 0.77, + "785": 0.78, + "786": 0.79, + "787": 0.8, + "788": 0.81, + "789": 0.82, + "790": 0.83, + "791": 0.84, + "792": 0.85, + "793": 0.86, + "794": 0.87, + "795": 0.88, + "796": 0.89, + "797": 0.9, + "798": 0.91, + "799": 0.92, + "800": 0.93, + "801": 0.94, + "802": 0.95, + "803": 0.96, + "804": 0.97, + "805": 0.98, + "806": 0.99, + "807": 1.0 + }, + "y": { + "0": 0.0030799151, + "1": 0.0032356906, + "2": 0.0033758644, + "3": 0.0035019462, + "4": 0.0036148443, + "5": 0.0037150711, + "6": 0.0038028836, + "7": 0.0038783799, + "8": 0.0039415652, + "9": 0.0039923965, + "10": 0.0040308138, + "11": 0.0040567613, + "12": 0.004070202, + "13": 0.0040711274, + "14": 0.0040595639, + "15": 0.0040355781, + "16": 0.0039992785, + "17": 0.0039508181, + "18": 0.0038903946, + "19": 0.0038182509, + "20": 0.0037346748, + "21": 0.0036399982, + "22": 0.0035345961, + "23": 0.0034188855, + "24": 0.0032933237, + "25": 0.0031584067, + "26": 0.0030146672, + "27": 0.0028626727, + "28": 0.0027030232, + "29": 0.0025363488, + "30": 0.0023633075, + "31": 0.0021845822, + "32": 0.0020008781, + "33": 0.0018129205, + "34": 0.001621451, + "35": 0.0014272254, + "36": 0.0012310101, + "37": 0.0010335795, + "38": 0.0008357128, + "39": 0.0006381908, + "40": 0.0004417932, + "41": 0.000247295, + "42": 0.0000554638, + "43": -0.0001329434, + "44": -0.0003171832, + "45": -0.0004965322, + "46": -0.0006703339, + "47": -0.0008385242, + "48": -0.001004648, + "49": -0.0011726934, + "50": -0.0013341471, + "51": -0.0014695267, + "52": -0.0015341383, + "53": -0.0015466264, + "54": -0.0015383663, + "55": -0.0015195638, + "56": -0.0014934079, + "57": -0.0014609749, + "58": -0.0014226887, + "59": -0.0013787867, + "60": -0.0013294637, + "61": -0.0012749157, + "62": -0.0012153541, + "63": -0.0011510084, + "64": -0.0010821272, + "65": -0.0010089771, + "66": -0.0009318423, + "67": -0.0008510229, + "68": -0.000766834, + "69": -0.0006796045, + "70": -0.0005896755, + "71": -0.000497399, + "72": -0.0004031368, + "73": -0.0003072584, + "74": -0.0002101402, + "75": -0.0001121636, + "76": -0.0000137136, + "77": 0.0000848229, + "78": 0.0001830584, + "79": 0.0002806064, + "80": 0.000377083, + "81": 0.0004721087, + "82": 0.0005653092, + "83": 0.0006563176, + "84": 0.0007447754, + "85": 0.0008303344, + "86": 0.0009126573, + "87": 0.00099142, + "88": 0.001066312, + "89": 0.0011370383, + "90": 0.0012033201, + "91": 0.0012648962, + "92": 0.001321524, + "93": 0.0013729803, + "94": 0.0015436877, + "95": 0.0018980564, + "96": 0.0022291811, + "97": 0.0024877647, + "98": 0.0027105161, + "99": 0.0029061218, + "100": 0.0030799151, + "101": 2.2, + "102": 2.3569762988, + "103": 2.5133330839, + "104": 2.6684532865, + "105": 2.8217247179, + "106": 2.9725424859, + "107": 3.1203113817, + "108": 3.2644482289, + "109": 3.4043841853, + "110": 3.5395669874, + "111": 3.6694631307, + "112": 3.7935599744, + "113": 3.9113677648, + "114": 4.0224215686, + "115": 4.1262831069, + "116": 4.2225424859, + "117": 4.3108198138, + "118": 4.3907667001, + "119": 4.4620676312, + "120": 4.5244412147, + "121": 4.5776412907, + "122": 4.6214579028, + "123": 4.6557181268, + "124": 4.6802867533, + "125": 4.6950668211, + "126": 4.7, + "127": 4.6950668211, + "128": 4.6802867533, + "129": 4.6557181268, + "130": 4.6214579028, + "131": 4.5776412907, + "132": 4.5244412147, + "133": 4.4620676312, + "134": 4.3907667001, + "135": 4.3108198138, + "136": 4.2225424859, + "137": 4.1262831069, + "138": 4.0224215686, + "139": 3.9113677648, + "140": 3.7935599744, + "141": 3.6694631307, + "142": 3.5395669874, + "143": 3.4043841853, + "144": 3.2644482289, + "145": 3.1203113817, + "146": 2.9725424859, + "147": 2.8217247179, + "148": 2.6684532865, + "149": 2.5133330839, + "150": 2.3569762988, + "151": 2.2, + "152": 2.0430237012, + "153": 1.8866669161, + "154": 1.7315467135, + "155": 1.5782752821, + "156": 1.4274575141, + "157": 1.2796886183, + "158": 1.1355517711, + "159": 0.9956158147, + "160": 0.8604330126, + "161": 0.7305368693, + "162": 0.6064400256, + "163": 0.4886322352, + "164": 0.3775784314, + "165": 0.2737168931, + "166": 0.1774575141, + "167": 0.0891801862, + "168": 0.0092332999, + "169": -0.0620676312, + "170": -0.1244412147, + "171": -0.1776412907, + "172": -0.2214579028, + "173": -0.2557181268, + "174": -0.2802867533, + "175": -0.2950668211, + "176": -0.3, + "177": -0.2950668211, + "178": -0.2802867533, + "179": -0.2557181268, + "180": -0.2214579028, + "181": -0.1776412907, + "182": -0.1244412147, + "183": -0.0620676312, + "184": 0.0092332999, + "185": 0.0891801862, + "186": 0.1774575141, + "187": 0.2737168931, + "188": 0.3775784314, + "189": 0.4886322352, + "190": 0.6064400256, + "191": 0.7305368693, + "192": 0.8604330126, + "193": 0.9956158147, + "194": 1.1355517711, + "195": 1.2796886183, + "196": 1.4274575141, + "197": 1.5782752821, + "198": 1.7315467135, + "199": 1.8866669161, + "200": 2.0430237012, + "201": 2.2, + "202": 0.0005575321, + "203": 0.0006704564, + "204": 0.0007858317, + "205": 0.0009027393, + "206": 0.0010204021, + "207": 0.0011381408, + "208": 0.001255344, + "209": 0.0013714494, + "210": 0.0014859308, + "211": 0.0015982899, + "212": 0.0017080519, + "213": 0.0018147619, + "214": 0.0019179842, + "215": 0.0020173013, + "216": 0.0021123147, + "217": 0.0022026446, + "218": 0.0022879313, + "219": 0.0023678363, + "220": 0.0024420425, + "221": 0.0025102562, + "222": 0.0025722075, + "223": 0.0026276515, + "224": 0.0026763689, + "225": 0.0027181674, + "226": 0.0027528817, + "227": 0.0027803749, + "228": 0.0028005383, + "229": 0.0028132923, + "230": 0.0028185866, + "231": 0.0028164002, + "232": 0.0028067418, + "233": 0.0027896494, + "234": 0.0027651905, + "235": 0.0027334617, + "236": 0.0026945881, + "237": 0.0026487232, + "238": 0.0025960479, + "239": 0.0025367702, + "240": 0.0024711239, + "241": 0.0023993683, + "242": 0.0023217864, + "243": 0.0022386844, + "244": 0.0021503903, + "245": 0.0020572526, + "246": 0.0019596387, + "247": 0.0018579334, + "248": 0.0017525304, + "249": 0.0016437506, + "250": 0.0015313583, + "251": 0.0014147433, + "252": 0.0012947878, + "253": 0.0011746516, + "254": 0.0010626893, + "255": 0.0009614168, + "256": 0.0008697248, + "257": 0.0007867075, + "258": 0.0007115294, + "259": 0.0006434397, + "260": 0.0005817597, + "261": 0.0005258768, + "262": 0.0004752376, + "263": 0.0004293428, + "264": 0.0003877411, + "265": 0.0003500256, + "266": 0.0003158287, + "267": 0.0002848185, + "268": 0.0002566957, + "269": 0.0002311899, + "270": 0.0002080573, + "271": 0.0001870775, + "272": 0.000168052, + "273": 0.0001508014, + "274": 0.0001351637, + "275": 0.0001209929, + "276": 0.000108157, + "277": 0.0000965368, + "278": 0.0000860248, + "279": 0.0000765238, + "280": 0.0000679457, + "281": 0.0000602113, + "282": 0.0000532486, + "283": 0.0000469924, + "284": 0.000041384, + "285": 0.0000363696, + "286": 0.0000319009, + "287": 0.0000279337, + "288": 0.0000244277, + "289": 0.0000213464, + "290": 0.0000186563, + "291": 0.0000163268, + "292": 0.0000143298, + "293": 0.0000126396, + "294": 0.0000112324, + "295": 0.0000100861, + "296": 0.0000273223, + "297": 0.0000820293, + "298": 0.0001584293, + "299": 0.000246389, + "300": 0.0003438421, + "301": 0.0004481839, + "302": 0.0005575321, + "303": 1.5575320646, + "304": 1.6704563764, + "305": 1.7858316995, + "306": 1.9027393026, + "307": 2.0204021456, + "308": 2.1381407834, + "309": 2.2553440104, + "310": 2.3714494301, + "311": 2.4859307957, + "312": 2.5982899482, + "313": 2.7080518747, + "314": 2.8147618759, + "315": 2.9179841544, + "316": 3.0173013491, + "317": 3.112314694, + "318": 3.202644577, + "319": 3.2879313476, + "320": 3.3678362648, + "321": 3.4420425136, + "322": 3.5102562363, + "323": 3.5722075434, + "324": 3.6276514776, + "325": 3.6763689107, + "326": 3.7181673619, + "327": 3.752881725, + "328": 3.7803748984, + "329": 3.8005383109, + "330": 3.8132923403, + "331": 3.8185866206, + "332": 3.8164002362, + "333": 3.8067418011, + "334": 3.7896494226, + "335": 3.7651905498, + "336": 3.7334617061, + "337": 3.6945881074, + "338": 3.6487231681, + "339": 3.5960478945, + "340": 3.536770171, + "341": 3.4711239389, + "342": 3.3993682734, + "343": 3.3217863612, + "344": 3.2386843822, + "345": 3.1503903018, + "346": 3.0572525735, + "347": 2.9596387297, + "348": 2.8579334439, + "349": 2.7525303511, + "350": 2.6437505938, + "351": 2.5313583377, + "352": 2.4147433058, + "353": 2.294787791, + "354": 2.174651557, + "355": 2.0626893202, + "356": 1.9614168019, + "357": 1.8697248254, + "358": 1.7867074892, + "359": 1.7115293674, + "360": 1.6434396543, + "361": 1.5817596859, + "362": 1.5258767658, + "363": 1.4752376319, + "364": 1.4293427511, + "365": 1.387741126, + "366": 1.3500256069, + "367": 1.3158286525, + "368": 1.284818496, + "369": 1.2566956787, + "370": 1.2311899153, + "371": 1.208057259, + "372": 1.1870775383, + "373": 1.1680520383, + "374": 1.1508014048, + "375": 1.1351637483, + "376": 1.1209929297, + "377": 1.1081570101, + "378": 1.0965368496, + "379": 1.0860248391, + "380": 1.0765237555, + "381": 1.0679457255, + "382": 1.0602112899, + "383": 1.0532485571, + "384": 1.0469924396, + "385": 1.041383963, + "386": 1.0363696431, + "387": 1.031900923, + "388": 1.0279336654, + "389": 1.0244276945, + "390": 1.0213463837, + "391": 1.0186562832, + "392": 1.0163267859, + "393": 1.0143298257, + "394": 1.0126396076, + "395": 1.0112323647, + "396": 1.0100861397, + "397": 1.0273222766, + "398": 1.0820293188, + "399": 1.1584292903, + "400": 1.2463889911, + "401": 1.3438420579, + "402": 1.4481838654, + "403": 1.5575320646, + "404": 0.0016703629, + "405": 0.0018157639, + "406": 0.0019490699, + "407": 0.0020778492, + "408": 0.0021990645, + "409": 0.0023145361, + "410": 0.0024233635, + "411": 0.0025258198, + "412": 0.0026214765, + "413": 0.0027101909, + "414": 0.0027916474, + "415": 0.0028656108, + "416": 0.0029318165, + "417": 0.0029900377, + "418": 0.00304006, + "419": 0.0030817006, + "420": 0.003114803, + "421": 0.0031392432, + "422": 0.0031549283, + "423": 0.0031617995, + "424": 0.0031598313, + "425": 0.003149033, + "426": 0.003129448, + "427": 0.0031011542, + "428": 0.0030642636, + "429": 0.0030189222, + "430": 0.002965309, + "431": 0.0029036357, + "432": 0.0028341459, + "433": 0.0027571139, + "434": 0.0026728437, + "435": 0.0025816679, + "436": 0.0024839463, + "437": 0.0023800647, + "438": 0.002270433, + "439": 0.0021554839, + "440": 0.002035671, + "441": 0.0019114673, + "442": 0.0017833628, + "443": 0.0016518631, + "444": 0.0015174872, + "445": 0.0013807655, + "446": 0.0012422375, + "447": 0.0011024499, + "448": 0.0009619536, + "449": 0.0008212932, + "450": 0.000680889, + "451": 0.0005396699, + "452": 0.0003880704, + "453": 0.0002260486, + "454": 0.0000828322, + "455": -0.0000186068, + "456": 0.0000091337, + "457": -0.0000054311, + "458": 0.0000009651, + "459": -0.0000032408, + "460": -0.0000022372, + "461": -0.0000039068, + "462": -0.0000042881, + "463": -0.0000053435, + "464": -0.0000060749, + "465": -0.0000069654, + "466": -0.0000077588, + "467": -0.0000085695, + "468": -0.0000093274, + "469": -0.0000100557, + "470": -0.000010732, + "471": -0.0000113575, + "472": -0.0000119223, + "473": -0.0000124232, + "474": -0.0000128544, + "475": -0.000013212, + "476": -0.0000134922, + "477": -0.0000136919, + "478": -0.0000138083, + "479": -0.0000138394, + "480": -0.0000137834, + "481": -0.0000136393, + "482": -0.0000134063, + "483": -0.0000130842, + "484": -0.0000126733, + "485": -0.0000121743, + "486": -0.0000115882, + "487": -0.0000109168, + "488": -0.0000101618, + "489": -0.0000093258, + "490": -0.0000084114, + "491": -0.0000074217, + "492": -0.0000063602, + "493": -0.0000052307, + "494": -0.0000040372, + "495": -0.0000027842, + "496": -0.0000014762, + "497": -0.0000001182, + "498": 0.000359583, + "499": 0.0008427122, + "500": 0.0009523321, + "501": 0.0011980598, + "502": 0.0013507895, + "503": 0.0015251767, + "504": 0.0016703629, + "505": 1.8920084896, + "506": 2.0334072379, + "507": 2.1757466456, + "508": 2.3182586646, + "509": 2.460240285, + "510": 2.6010353786, + "511": 2.7400230258, + "512": 2.8766102371, + "513": 3.0102276663, + "514": 3.1403273424, + "515": 3.2663817557, + "516": 3.3878838432, + "517": 3.5043475619, + "518": 3.6153088335, + "519": 3.7203267134, + "520": 3.8189846783, + "521": 3.9108919631, + "522": 3.995684893, + "523": 4.0730281755, + "524": 4.1426161271, + "525": 4.2041738125, + "526": 4.2574580851, + "527": 4.3022585154, + "528": 4.3383982005, + "529": 4.3657344484, + "530": 4.3841593308, + "531": 4.3936001027, + "532": 4.3940194851, + "533": 4.3854158088, + "534": 4.3678230189, + "535": 4.3413105397, + "536": 4.3059829993, + "537": 4.2619798163, + "538": 4.2094746491, + "539": 4.1486747103, + "540": 4.0798199484, + "541": 4.0031821011, + "542": 3.9190636224, + "543": 3.8277964894, + "544": 3.7297408915, + "545": 3.6252838092, + "546": 3.5148374867, + "547": 3.3988378053, + "548": 3.2777425646, + "549": 3.1520296982, + "550": 3.0221957096, + "551": 2.8887581043, + "552": 2.7523057099, + "553": 2.61379788, + "554": 2.4742456382, + "555": 2.3334147071, + "556": 2.1899763734, + "557": 2.0400807449, + "558": 1.8862093508, + "559": 1.7321119123, + "560": 1.5794138938, + "561": 1.4290294128, + "562": 1.2816492624, + "563": 1.1378846828, + "564": 0.9983116856, + "565": 0.8634832358, + "566": 0.7339315985, + "567": 0.6101676455, + "568": 0.4926792735, + "569": 0.3819296107, + "570": 0.2783552264, + "571": 0.1823644158, + "572": 0.0943355885, + "573": 0.0146157718, + "574": -0.0564807623, + "575": -0.1186737406, + "576": -0.1717179984, + "577": -0.2154044493, + "578": -0.2495609138, + "579": -0.2740528003, + "580": -0.288783639, + "581": -0.2936954644, + "582": -0.2887690457, + "583": -0.2740239645, + "584": -0.2495185385, + "585": -0.2153495932, + "586": -0.1716520806, + "587": -0.1185985477, + "588": -0.0563984563, + "589": 0.0147026421, + "590": 0.0944240757, + "591": 0.1824511582, + "592": 0.278436431, + "593": 0.3820010334, + "594": 0.4927361975, + "595": 0.6102048609, + "596": 0.7339433911, + "597": 0.8634634147, + "598": 0.9982537452, + "599": 1.1253198502, + "600": 1.2376518783, + "601": 1.3553571707, + "602": 1.4827702452, + "603": 1.6156153022, + "604": 1.7524115204, + "605": 1.8920084896, + "606": 0.0016703629, + "607": 0.0018157639, + "608": 0.0019490699, + "609": 0.0020778492, + "610": 0.0021990645, + "611": 0.0023145361, + "612": 0.0024233635, + "613": 0.0025258198, + "614": 0.0026214765, + "615": 0.0027101909, + "616": 0.0027916474, + "617": 0.0028656108, + "618": 0.0029318165, + "619": 0.0029900377, + "620": 0.00304006, + "621": 0.0030817006, + "622": 0.003114803, + "623": 0.0031392432, + "624": 0.0031549283, + "625": 0.0031617995, + "626": 0.0031598313, + "627": 0.003149033, + "628": 0.003129448, + "629": 0.0031011542, + "630": 0.0030642636, + "631": 0.0030189222, + "632": 0.002965309, + "633": 0.0029036357, + "634": 0.0028341459, + "635": 0.0027571139, + "636": 0.0026728437, + "637": 0.0025816679, + "638": 0.0024839463, + "639": 0.0023800647, + "640": 0.002270433, + "641": 0.0021554839, + "642": 0.002035671, + "643": 0.0019114673, + "644": 0.0017833628, + "645": 0.0016518631, + "646": 0.0015174872, + "647": 0.0013807655, + "648": 0.0012422375, + "649": 0.0011024499, + "650": 0.0009619536, + "651": 0.0008212932, + "652": 0.000680889, + "653": 0.0005396699, + "654": 0.0003880704, + "655": 0.0002260486, + "656": 0.0000828322, + "657": -0.0000186068, + "658": 0.0000091337, + "659": -0.0000054311, + "660": 0.0000009651, + "661": -0.0000032408, + "662": -0.0000022372, + "663": -0.0000039068, + "664": -0.0000042881, + "665": -0.0000053435, + "666": -0.0000060749, + "667": -0.0000069654, + "668": -0.0000077588, + "669": -0.0000085695, + "670": -0.0000093274, + "671": -0.0000100557, + "672": -0.000010732, + "673": -0.0000113575, + "674": -0.0000119223, + "675": -0.0000124232, + "676": -0.0000128544, + "677": -0.000013212, + "678": -0.0000134922, + "679": -0.0000136919, + "680": -0.0000138083, + "681": -0.0000138394, + "682": -0.0000137834, + "683": -0.0000136393, + "684": -0.0000134063, + "685": -0.0000130842, + "686": -0.0000126733, + "687": -0.0000121743, + "688": -0.0000115882, + "689": -0.0000109168, + "690": -0.0000101618, + "691": -0.0000093258, + "692": -0.0000084114, + "693": -0.0000074217, + "694": -0.0000063602, + "695": -0.0000052307, + "696": -0.0000040372, + "697": -0.0000027842, + "698": -0.0000014762, + "699": -0.0000001182, + "700": 0.000359583, + "701": 0.0008427122, + "702": 0.0009523321, + "703": 0.0011980598, + "704": 0.0013507895, + "705": 0.0015251767, + "706": 0.0016703629, + "707": 1.7245683582, + "708": 1.8520327666, + "709": 1.9807386928, + "710": 2.1105242235, + "711": 2.2403085954, + "712": 2.369594391, + "713": 2.4976803631, + "714": 2.6240314111, + "715": 2.7480784423, + "716": 2.8693090397, + "717": 2.987216618, + "718": 3.1013229581, + "719": 3.2111658088, + "720": 3.316305116, + "721": 3.4163206913, + "722": 3.5108146338, + "723": 3.5994116523, + "724": 3.6817605804, + "725": 3.7575353438, + "726": 3.8264361821, + "727": 3.8881906778, + "728": 3.9425547814, + "729": 3.989313713, + "730": 4.0282827812, + "731": 4.0593080867, + "732": 4.0822671146, + "733": 4.0970692068, + "734": 4.1036559127, + "735": 4.1020012147, + "736": 4.0921116276, + "737": 4.0740261704, + "738": 4.0478162109, + "739": 4.0135851831, + "740": 3.9714681776, + "741": 3.9216314088, + "742": 3.8642715582, + "743": 3.7996149978, + "744": 3.7279168967, + "745": 3.6494602142, + "746": 3.5645545825, + "747": 3.4735350852, + "748": 3.3767609344, + "749": 3.2746140533, + "750": 3.1674975602, + "751": 3.0558340877, + "752": 2.9400627687, + "753": 2.8206192534, + "754": 2.6977175862, + "755": 2.5701653825, + "756": 2.4373481611, + "757": 2.3030710154, + "758": 2.1727908794, + "759": 2.0636026925, + "760": 1.9608736896, + "761": 1.8698213399, + "762": 1.7863834077, + "763": 1.7113056472, + "764": 1.6430489766, + "765": 1.5813308787, + "766": 1.5253424156, + "767": 1.4746301447, + "768": 1.4286462066, + "769": 1.3869652433, + "770": 1.34916866, + "771": 1.3148959149, + "772": 1.2838129239, + "773": 1.2556224778, + "774": 1.2300541681, + "775": 1.2068650241, + "776": 1.1858352152, + "777": 1.1667666015, + "778": 1.1494802048, + "779": 1.1338145302, + "780": 1.1196237446, + "781": 1.1067761814, + "782": 1.0951529129, + "783": 1.0846464972, + "784": 1.0751598266, + "785": 1.0666050965, + "786": 1.0589028685, + "787": 1.0519812263, + "788": 1.0457750125, + "789": 1.0402251393, + "790": 1.0352779667, + "791": 1.0308847409, + "792": 1.0270010883, + "793": 1.0235865591, + "794": 1.0206042159, + "795": 1.018020264, + "796": 1.0158037183, + "797": 1.0139261044, + "798": 1.0123611898, + "799": 1.0110847434, + "800": 1.0100743182, + "801": 1.0632805766, + "802": 1.1663005426, + "803": 1.2536624968, + "804": 1.3661949681, + "805": 1.4789210046, + "806": 1.6007015308, + "807": 1.7245683582 + } +} diff --git a/tests/cases/steadyFlow_RC_R.json b/tests/cases/steadyFlow_RC_R.json index 5f69acc59..1679e2d1a 100644 --- a/tests/cases/steadyFlow_RC_R.json +++ b/tests/cases/steadyFlow_RC_R.json @@ -1,62 +1,56 @@ { - "description": { - "description of test case": "steady flow -> RC -> R", - "analytical results": [ - "Notes:", - "At steady state for constant flow, capacitor is fully charged", - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet:", - "resistance + distal pressure: R = 100, Pd = 100", - "Solutions:", - "outlet pressure = Q * R + Pd = 5 * 100 + 100 = 600", - "inlet pressure = outlet pressure + Q * R_poiseuille = 600 + 5 * 100 = 1100" - ] - }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 30, - "number_of_time_pts_per_cardiac_cycle": 101, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0001, - "R_poiseuille": 100.0 - } - } + "description": { + "description of test case": "steady flow -> RC -> R", + "analytical results": [ + "Notes:", + "At steady state for constant flow, capacitor is fully charged", + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet:", + "resistance + distal pressure: R = 100, Pd = 100", + "Solutions:", + "outlet pressure = Q * R + Pd = 5 * 100 + 100 = 600", + "inlet pressure = outlet pressure + Q * R_poiseuille = 600 + 5 * 100 = 1100" ] -} \ No newline at end of file + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } + }, + { + "bc_name": "OUT", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 30, + "number_of_time_pts_per_cardiac_cycle": 101, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0001, + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_RLC_R.json b/tests/cases/steadyFlow_RLC_R.json index b3aecfceb..df5745155 100644 --- a/tests/cases/steadyFlow_RLC_R.json +++ b/tests/cases/steadyFlow_RLC_R.json @@ -1,63 +1,57 @@ { - "description": { - "description of test case": "steady flow -> RLC -> R", - "analytical results": [ - "Notes:", - "At steady state for constant flow, dQ/dt = 0 and capacitor is fully charged", - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet:", - "resistance + distal pressure: R = 100, Pd = 100", - "Solutions:", - "outlet pressure = Q * R + Pd = 5 * 100 + 100 = 600", - "inlet pressure = outlet pressure + Q * R_poiseuille = 600 + 5 * 100 = 1100" - ] - }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 30, - "number_of_time_pts_per_cardiac_cycle": 101, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0001, - "L": 1.0, - "R_poiseuille": 100.0 - } - } + "description": { + "description of test case": "steady flow -> RLC -> R", + "analytical results": [ + "Notes:", + "At steady state for constant flow, dQ/dt = 0 and capacitor is fully charged", + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet:", + "resistance + distal pressure: R = 100, Pd = 100", + "Solutions:", + "outlet pressure = Q * R + Pd = 5 * 100 + 100 = 600", + "inlet pressure = outlet pressure + Q * R_poiseuille = 600 + 5 * 100 = 1100" ] -} \ No newline at end of file + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } + }, + { + "bc_name": "OUT", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 30, + "number_of_time_pts_per_cardiac_cycle": 101, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0001, + "L": 1.0, + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_RL_R.json b/tests/cases/steadyFlow_RL_R.json index 2ba14e046..74115b947 100644 --- a/tests/cases/steadyFlow_RL_R.json +++ b/tests/cases/steadyFlow_RL_R.json @@ -1,62 +1,56 @@ { - "description": { - "description of test case": "steady flow -> RL -> R", - "analytical results": [ - "Notes:", - "At steady state for constant flow, dQ/dt = 0", - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet:", - "resistance + distal pressure: R = 100, Pd = 100", - "Solutions:", - "outlet pressure = Q * R + Pd = 5 * 100 + 100 = 600", - "inlet pressure = outlet pressure + Q * R_poiseuille = 600 + 5 * 100 = 1100" - ] - }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 30, - "number_of_time_pts_per_cardiac_cycle": 101, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "L": 1.0, - "R_poiseuille": 100.0 - } - } + "description": { + "description of test case": "steady flow -> RL -> R", + "analytical results": [ + "Notes:", + "At steady state for constant flow, dQ/dt = 0", + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet:", + "resistance + distal pressure: R = 100, Pd = 100", + "Solutions:", + "outlet pressure = Q * R + Pd = 5 * 100 + 100 = 600", + "inlet pressure = outlet pressure + Q * R_poiseuille = 600 + 5 * 100 = 1100" ] -} \ No newline at end of file + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } + }, + { + "bc_name": "OUT", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 30, + "number_of_time_pts_per_cardiac_cycle": 101, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "L": 1.0, + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_R_R.json b/tests/cases/steadyFlow_R_R.json index 591d66b33..396e121ba 100644 --- a/tests/cases/steadyFlow_R_R.json +++ b/tests/cases/steadyFlow_R_R.json @@ -1,59 +1,53 @@ { - "description": { - "description of test case": "steady flow -> R -> R", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet:", - "resistance + distal pressure: R = 100, Pd = 100", - "Solutions:", - "outlet pressure = Q * R + Pd = 5 * 100 + 100 = 600", - "inlet pressure = outlet pressure + Q * R_poiseuille = 600 + 5 * 100 = 1100" - ] - }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 2, - "number_of_time_pts_per_cardiac_cycle": 5, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } + "description": { + "description of test case": "steady flow -> R -> R", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet:", + "resistance + distal pressure: R = 100, Pd = 100", + "Solutions:", + "outlet pressure = Q * R + Pd = 5 * 100 + 100 = 600", + "inlet pressure = outlet pressure + Q * R_poiseuille = 600 + 5 * 100 = 1100" ] -} \ No newline at end of file + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } + }, + { + "bc_name": "OUT", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 2, + "number_of_time_pts_per_cardiac_cycle": 5, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_R_RCR.json b/tests/cases/steadyFlow_R_RCR.json index 5a34fa08f..f2ec33e17 100644 --- a/tests/cases/steadyFlow_R_RCR.json +++ b/tests/cases/steadyFlow_R_RCR.json @@ -1,63 +1,57 @@ { - "description": { - "description of test case": "steady flow -> R -> RCR", - "analytical results": [ - "Notes:", - "At steady state for constant flow, capacitor is fully charged", - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet:", - "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", - "Solutions:", - "outlet pressure = Q * (Rp + Rd) + Pd = 5 * (1000 + 1000) + 0 = 10000", - "inlet pressure = outlet pressure + Q * R_poiseuille = 10000 + 5 * 100 = 10500" - ] - }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RCR", - "bc_values": { - "C": 0.0001, - "Pd": 0.0, - "Rd": 1000.0, - "Rp": 1000.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 30, - "number_of_time_pts_per_cardiac_cycle": 101, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } + "description": { + "description of test case": "steady flow -> R -> RCR", + "analytical results": [ + "Notes:", + "At steady state for constant flow, capacitor is fully charged", + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet:", + "RCR + distal pressure: Rp = 1000, Rd = 1000, Pd = 0", + "Solutions:", + "outlet pressure = Q * (Rp + Rd) + Pd = 5 * (1000 + 1000) + 0 = 10000", + "inlet pressure = outlet pressure + Q * R_poiseuille = 10000 + 5 * 100 = 10500" ] -} \ No newline at end of file + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } + }, + { + "bc_name": "OUT", + "bc_type": "RCR", + "bc_values": { + "C": 0.0001, + "Pd": 0.0, + "Rd": 1000.0, + "Rp": 1000.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 30, + "number_of_time_pts_per_cardiac_cycle": 101, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_R_coronary.json b/tests/cases/steadyFlow_R_coronary.json index 5169f161e..55eeeeb27 100644 --- a/tests/cases/steadyFlow_R_coronary.json +++ b/tests/cases/steadyFlow_R_coronary.json @@ -1,73 +1,61 @@ { - "description": { - "description of test case": "steady flow -> R -> coronary", - "analytical results": [ - "Notes:", - "At steady state for constant flow, capacitors are fully charged", - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet:", - "Coronary: Ra1 = 100, Ra2 = 100, Rv1 = 100, distal pressure = P_v = 0", - "Solutions:", - "outlet pressure = Q * (Ra1 + Ra2 + Rv1) + P_v = 5 * (100 + 100 + 100) + 0 = 1500", - "inlet pressure = outlet pressure + Q * R_poiseuille = 1500 + 5 * 100 = 2000" - ] - }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "CORONARY", - "bc_values": { - "Ca": 0.0001, - "Cc": 0.0001, - "Pim": [ - 1000.0, - 1000.0 - ], - "P_v": 0.0, - "Ra1": 100.0, - "Ra2": 100.0, - "Rv1": 100.0, - "t": [ - 0.0, - 1.0 - ] - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 30, - "number_of_time_pts_per_cardiac_cycle": 101, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } + "description": { + "description of test case": "steady flow -> R -> coronary", + "analytical results": [ + "Notes:", + "At steady state for constant flow, capacitors are fully charged", + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet:", + "Coronary: Ra1 = 100, Ra2 = 100, Rv1 = 100, distal pressure = P_v = 0", + "Solutions:", + "outlet pressure = Q * (Ra1 + Ra2 + Rv1) + P_v = 5 * (100 + 100 + 100) + 0 = 1500", + "inlet pressure = outlet pressure + Q * R_poiseuille = 1500 + 5 * 100 = 2000" ] -} \ No newline at end of file + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } + }, + { + "bc_name": "OUT", + "bc_type": "CORONARY", + "bc_values": { + "Ca": 0.0001, + "Cc": 0.0001, + "Pim": [1000.0, 1000.0], + "P_v": 0.0, + "Ra1": 100.0, + "Ra2": 100.0, + "Rv1": 100.0, + "t": [0.0, 1.0] + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 30, + "number_of_time_pts_per_cardiac_cycle": 101, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_R_steadyPressure.json b/tests/cases/steadyFlow_R_steadyPressure.json index de77a840f..4f4bd53bf 100644 --- a/tests/cases/steadyFlow_R_steadyPressure.json +++ b/tests/cases/steadyFlow_R_steadyPressure.json @@ -1,65 +1,53 @@ { - "description": { - "description of test case": "steady flow -> R -> steady pressure", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet:", - "pressure: Pd = 1000", - "Solutions:", - "outlet pressure = Pd = 1000", - "inlet pressure = outlet pressure + Q * R_poiseuille = 1000 + 5 * 100 = 1500" - ] - }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "PRESSURE", - "bc_values": { - "P": [ - 1000.0, - 1000.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 2, - "number_of_time_pts_per_cardiac_cycle": 5, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } + "description": { + "description of test case": "steady flow -> R -> steady pressure", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet:", + "pressure: Pd = 1000", + "Solutions:", + "outlet pressure = Pd = 1000", + "inlet pressure = outlet pressure + Q * R_poiseuille = 1000 + 5 * 100 = 1500" ] -} \ No newline at end of file + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } + }, + { + "bc_name": "OUT", + "bc_type": "PRESSURE", + "bc_values": { + "P": [1000.0, 1000.0], + "t": [0.0, 1.0] + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 2, + "number_of_time_pts_per_cardiac_cycle": 5, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_bifurcationR_R1.json b/tests/cases/steadyFlow_bifurcationR_R1.json index 8eb47e5bd..9d2f981ca 100644 --- a/tests/cases/steadyFlow_bifurcationR_R1.json +++ b/tests/cases/steadyFlow_bifurcationR_R1.json @@ -1,109 +1,98 @@ { - "description": { - "description of test case": "steady flow -> bifurcation (with R's) -> R", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet1:", - "resistance + distal pressure: R1 = 100, Pd1 = 100", - "outlet2:", - "resistance + distal pressure: R2 = 100, Pd2 = 100", - "Solutions:", - "outlet flow1 = Q1 = (Q * (R2 + R_poiseuille2) - Pd1 + Pd2) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (100 + 100) - 100 + 100) / (100 + 100 + 100 + 100) = 2.5", - "outlet flow2 = Q2 = (Q * (R1 + R_poiseuille1) - Pd2 + Pd1) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (100 + 100) - 100 + 100) / (100 + 100 + 100 + 100) = 2.5", - "outlet pressure1 = Q1 * R1 + Pd1 = 2.5 * 100 + 100 = 350", - "outlet pressure2 = Q2 * R2 + Pd2 = 2.5 * 100 + 100 = 350", - "junction pressure = outlet pressure1 + Q1 * R_poiseuille1 = 350 + 2.5 * 100 = 600", - "inlet pressure = junction pressure + Q * R_poiseuille0 = 600 + 5 * 100 = 1100" - ] + "description": { + "description of test case": "steady flow -> bifurcation (with R's) -> R", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet1:", + "resistance + distal pressure: R1 = 100, Pd1 = 100", + "outlet2:", + "resistance + distal pressure: R2 = 100, Pd2 = 100", + "Solutions:", + "outlet flow1 = Q1 = (Q * (R2 + R_poiseuille2) - Pd1 + Pd2) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (100 + 100) - 100 + 100) / (100 + 100 + 100 + 100) = 2.5", + "outlet flow2 = Q2 = (Q * (R1 + R_poiseuille1) - Pd2 + Pd1) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (100 + 100) - 100 + 100) / (100 + 100 + 100 + 100) = 2.5", + "outlet pressure1 = Q1 * R1 + Pd1 = 2.5 * 100 + 100 = 350", + "outlet pressure2 = Q2 * R2 + Pd2 = 2.5 * 100 + 100 = 350", + "junction pressure = outlet pressure1 + Q1 * R_poiseuille1 = 350 + 2.5 * 100 = 600", + "inlet pressure = junction pressure + Q * R_poiseuille0 = 600 + 5 * 100 = 1100" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT1", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - }, - { - "bc_name": "OUT2", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0 - ], - "junction_name": "J0", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 1, - 2 - ] - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 2, - "number_of_time_pts_per_cardiac_cycle": 5, - "absolute_tolerance": 1e-09 + { + "bc_name": "OUT1", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT1" - }, - "vessel_id": 1, - "vessel_length": 10.0, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT2" - }, - "vessel_id": 2, - "vessel_length": 10.0, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT2", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0], + "junction_name": "J0", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [1, 2] + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 2, + "number_of_time_pts_per_cardiac_cycle": 5, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT1" + }, + "vessel_id": 1, + "vessel_length": 10.0, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT2" + }, + "vessel_id": 2, + "vessel_length": 10.0, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_bifurcationR_R1_blockNames.json b/tests/cases/steadyFlow_bifurcationR_R1_blockNames.json index 1bc2d6099..c4222adac 100644 --- a/tests/cases/steadyFlow_bifurcationR_R1_blockNames.json +++ b/tests/cases/steadyFlow_bifurcationR_R1_blockNames.json @@ -1,109 +1,98 @@ { - "description": { - "description of test case": "steady flow -> bifurcation (with R's) -> R", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet1:", - "resistance + distal pressure: R1 = 100, Pd1 = 100", - "outlet2:", - "resistance + distal pressure: R2 = 100, Pd2 = 100", - "Solutions:", - "outlet flow1 = Q1 = (Q * (R2 + R_poiseuille2) - Pd1 + Pd2) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (100 + 100) - 100 + 100) / (100 + 100 + 100 + 100) = 2.5", - "outlet flow2 = Q2 = (Q * (R1 + R_poiseuille1) - Pd2 + Pd1) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (100 + 100) - 100 + 100) / (100 + 100 + 100 + 100) = 2.5", - "outlet pressure1 = Q1 * R1 + Pd1 = 2.5 * 100 + 100 = 350", - "outlet pressure2 = Q2 * R2 + Pd2 = 2.5 * 100 + 100 = 350", - "junction pressure = outlet pressure1 + Q1 * R_poiseuille1 = 350 + 2.5 * 100 = 600", - "inlet pressure = junction pressure + Q * R_poiseuille0 = 600 + 5 * 100 = 1100" - ] + "description": { + "description of test case": "steady flow -> bifurcation (with R's) -> R", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet1:", + "resistance + distal pressure: R1 = 100, Pd1 = 100", + "outlet2:", + "resistance + distal pressure: R2 = 100, Pd2 = 100", + "Solutions:", + "outlet flow1 = Q1 = (Q * (R2 + R_poiseuille2) - Pd1 + Pd2) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (100 + 100) - 100 + 100) / (100 + 100 + 100 + 100) = 2.5", + "outlet flow2 = Q2 = (Q * (R1 + R_poiseuille1) - Pd2 + Pd1) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (100 + 100) - 100 + 100) / (100 + 100 + 100 + 100) = 2.5", + "outlet pressure1 = Q1 * R1 + Pd1 = 2.5 * 100 + 100 = 350", + "outlet pressure2 = Q2 * R2 + Pd2 = 2.5 * 100 + 100 = 350", + "junction pressure = outlet pressure1 + Q1 * R_poiseuille1 = 350 + 2.5 * 100 = 600", + "inlet pressure = junction pressure + Q * R_poiseuille0 = 600 + 5 * 100 = 1100" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT1", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - }, - { - "bc_name": "OUT2", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - } - ], - "junctions": [ - { - "inlet_blocks": [ - "branch0_seg0" - ], - "junction_name": "J0", - "junction_type": "NORMAL_JUNCTION", - "outlet_blocks": [ - "branch1_seg0", - "branch2_seg0" - ] - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 2, - "number_of_time_pts_per_cardiac_cycle": 5, - "absolute_tolerance": 1e-09 + { + "bc_name": "OUT1", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT1" - }, - "vessel_id": 1, - "vessel_length": 10.0, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT2" - }, - "vessel_id": 2, - "vessel_length": 10.0, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT2", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } + } + ], + "junctions": [ + { + "inlet_blocks": ["branch0_seg0"], + "junction_name": "J0", + "junction_type": "NORMAL_JUNCTION", + "outlet_blocks": ["branch1_seg0", "branch2_seg0"] + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 2, + "number_of_time_pts_per_cardiac_cycle": 5, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT1" + }, + "vessel_id": 1, + "vessel_length": 10.0, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT2" + }, + "vessel_id": 2, + "vessel_length": 10.0, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_bifurcationR_R2.json b/tests/cases/steadyFlow_bifurcationR_R2.json index 39145f680..4854443a8 100644 --- a/tests/cases/steadyFlow_bifurcationR_R2.json +++ b/tests/cases/steadyFlow_bifurcationR_R2.json @@ -1,109 +1,98 @@ { - "description": { - "description of test case": "steady flow -> bifurcation (with R's) -> R", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet1:", - "resistance + distal pressure: R1 = 100, Pd1 = 50", - "outlet2:", - "resistance + distal pressure: R2 = 1000, Pd2 = 200", - "Solutions:", - "outlet flow1 = Q1 = (Q * (R2 + R_poiseuille2) - Pd1 + Pd2) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (1000 + 500) - 50 + 200) / (100 + 400 + 1000 + 500) = 3.825", - "outlet flow2 = Q2 = (Q * (R1 + R_poiseuille1) - Pd2 + Pd1) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (100 + 400) - 200 + 50 ) / (100 + 400 + 1000 + 500) = 1.175", - "outlet pressure1 = Q1 * R1 + Pd1 = 3.825 * 100 + 50 = 432.5", - "outlet pressure2 = Q2 * R2 + Pd2 = 1.175 * 1000 + 200 = 1375.", - "junction pressure = outlet pressure1 + Q1 * R_poiseuille1 = 432.5 + 3.825 * 400 = 1962.5", - "inlet pressure = junction pressure + Q * R_poiseuille0 = 1962.5 + 5 * 300 = 3462.5" - ] + "description": { + "description of test case": "steady flow -> bifurcation (with R's) -> R", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet1:", + "resistance + distal pressure: R1 = 100, Pd1 = 50", + "outlet2:", + "resistance + distal pressure: R2 = 1000, Pd2 = 200", + "Solutions:", + "outlet flow1 = Q1 = (Q * (R2 + R_poiseuille2) - Pd1 + Pd2) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (1000 + 500) - 50 + 200) / (100 + 400 + 1000 + 500) = 3.825", + "outlet flow2 = Q2 = (Q * (R1 + R_poiseuille1) - Pd2 + Pd1) / (R1 + R_poiseuille1 + R2 + R_poiseuille2) = (5 * (100 + 400) - 200 + 50 ) / (100 + 400 + 1000 + 500) = 1.175", + "outlet pressure1 = Q1 * R1 + Pd1 = 3.825 * 100 + 50 = 432.5", + "outlet pressure2 = Q2 * R2 + Pd2 = 1.175 * 1000 + 200 = 1375.", + "junction pressure = outlet pressure1 + Q1 * R_poiseuille1 = 432.5 + 3.825 * 400 = 1962.5", + "inlet pressure = junction pressure + Q * R_poiseuille0 = 1962.5 + 5 * 300 = 3462.5" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT1", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 50.0, - "R": 100.0 - } - }, - { - "bc_name": "OUT2", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 200.0, - "R": 1000.0 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0 - ], - "junction_name": "J0", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 1, - 2 - ] - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 2, - "number_of_time_pts_per_cardiac_cycle": 5, - "absolute_tolerance": 1e-09 + { + "bc_name": "OUT1", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 50.0, + "R": 100.0 + } }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 300.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT1" - }, - "vessel_id": 1, - "vessel_length": 10.0, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 400.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT2" - }, - "vessel_id": 2, - "vessel_length": 10.0, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 500.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT2", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 200.0, + "R": 1000.0 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0], + "junction_name": "J0", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [1, 2] + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 2, + "number_of_time_pts_per_cardiac_cycle": 5, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 300.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT1" + }, + "vessel_id": 1, + "vessel_length": 10.0, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 400.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT2" + }, + "vessel_id": 2, + "vessel_length": 10.0, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 500.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_blood_vessel_junction.json b/tests/cases/steadyFlow_blood_vessel_junction.json index 354f90acd..cdb986f6f 100644 --- a/tests/cases/steadyFlow_blood_vessel_junction.json +++ b/tests/cases/steadyFlow_blood_vessel_junction.json @@ -1,124 +1,104 @@ { - "description": { - "description of test case": "steady flow -> blood vessel junction -> R", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet1:", - "resistance + distal pressure: R1 = 100, Pd1 = 50", - "outlet2:", - "resistance + distal pressure: R2 = 1000, Pd2 = 200", - "Solutions:", - "outlet flow1 = Q1 = (Q * (R2 + R_poiseuille2 + R_poiseuille_junction2) - Pd1 + Pd2) / (R1 + R_poiseuille1 + R2 + R_poiseuille2 + R_poiseuille_junction1 + R_poiseuille_junction2) = (5 * (1000 + 300 + 200) - 50 + 200) / (100 + 300 + 1000 + 300 + 100 + 200) = 3.825", - "outlet flow2 = Q2 = (Q * (R1 + R_poiseuille1 + R_poiseuille_junction1) - Pd2 + Pd1) / (R1 + R_poiseuille1 + R2 + R_poiseuille2 + R_poiseuille_junction1 + R_poiseuille_junction2) = (5 * (100 + 300 + 100) - 200 + 50 ) / (100 + 300 + 1000 + 300 + 100 + 200) = 1.175", - "outlet pressure1 = Q1 * R1 + Pd1 = 3.825 * 100 + 50 = 432.5", - "outlet pressure2 = Q2 * R2 + Pd2 = 1.175 * 1000 + 200 = 1375.0", - "junction pressure1 = outlet pressure1 + Q1 * R_poiseuille1 = 432.5 + 3.825 * 300 = 1580.0", - "junction pressure2 = outlet pressure2 + Q2 * R_poiseuille2 = 1375.0 + 1.175 * 300 = 1727.5", - "inlet pressure = junction pressure1 + Q1 * R_poiseuille_junction1 + Q * R_poiseuille0 = 1580.0 + 3.825 * 100 + 5 * 300 = 3462.5" - ] + "description": { + "description of test case": "steady flow -> blood vessel junction -> R", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet1:", + "resistance + distal pressure: R1 = 100, Pd1 = 50", + "outlet2:", + "resistance + distal pressure: R2 = 1000, Pd2 = 200", + "Solutions:", + "outlet flow1 = Q1 = (Q * (R2 + R_poiseuille2 + R_poiseuille_junction2) - Pd1 + Pd2) / (R1 + R_poiseuille1 + R2 + R_poiseuille2 + R_poiseuille_junction1 + R_poiseuille_junction2) = (5 * (1000 + 300 + 200) - 50 + 200) / (100 + 300 + 1000 + 300 + 100 + 200) = 3.825", + "outlet flow2 = Q2 = (Q * (R1 + R_poiseuille1 + R_poiseuille_junction1) - Pd2 + Pd1) / (R1 + R_poiseuille1 + R2 + R_poiseuille2 + R_poiseuille_junction1 + R_poiseuille_junction2) = (5 * (100 + 300 + 100) - 200 + 50 ) / (100 + 300 + 1000 + 300 + 100 + 200) = 1.175", + "outlet pressure1 = Q1 * R1 + Pd1 = 3.825 * 100 + 50 = 432.5", + "outlet pressure2 = Q2 * R2 + Pd2 = 1.175 * 1000 + 200 = 1375.0", + "junction pressure1 = outlet pressure1 + Q1 * R_poiseuille1 = 432.5 + 3.825 * 300 = 1580.0", + "junction pressure2 = outlet pressure2 + Q2 * R_poiseuille2 = 1375.0 + 1.175 * 300 = 1727.5", + "inlet pressure = junction pressure1 + Q1 * R_poiseuille_junction1 + Q * R_poiseuille0 = 1580.0 + 3.825 * 100 + 5 * 300 = 3462.5" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT1", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 50.0, - "R": 100.0 - } - }, - { - "bc_name": "OUT2", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 200.0, - "R": 1000.0 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0 - ], - "junction_name": "J0", - "junction_type": "BloodVesselJunction", - "junction_values": { - "R_poiseuille": [ - 100, - 200 - ], - "L": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 1, - 2 - ] - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 2, - "number_of_time_pts_per_cardiac_cycle": 5, - "absolute_tolerance": 1e-09 + { + "bc_name": "OUT1", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 50.0, + "R": 100.0 + } }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 300.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT1" - }, - "vessel_id": 1, - "vessel_length": 10.0, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 300.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT2" - }, - "vessel_id": 2, - "vessel_length": 10.0, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 300.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT2", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 200.0, + "R": 1000.0 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0], + "junction_name": "J0", + "junction_type": "BloodVesselJunction", + "junction_values": { + "R_poiseuille": [100, 200], + "L": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [1, 2] + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 2, + "number_of_time_pts_per_cardiac_cycle": 5, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 300.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT1" + }, + "vessel_id": 1, + "vessel_length": 10.0, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 300.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT2" + }, + "vessel_id": 2, + "vessel_length": 10.0, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 300.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_calibration.json b/tests/cases/steadyFlow_calibration.json index c43a18248..69122f2c0 100644 --- a/tests/cases/steadyFlow_calibration.json +++ b/tests/cases/steadyFlow_calibration.json @@ -1,880 +1,203 @@ { - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - } - ], - "junctions": [], - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0001, - "L": 1.0, - "R_poiseuille": 100.0 - } - } - ], - "y": { - "flow:INFLOW:branch0_seg0": [ - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0, - 5.0 - ], - "pressure:INFLOW:branch0_seg0": [ - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316, - 1099.9999999873316 - ], - "flow:branch0_seg0:OUT": [ - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241, - 4.999999999920241 - ], - "pressure:branch0_seg0:OUT": [ - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244, - 599.9999999920244 - ] - }, - "dy": { - "flow:INFLOW:branch0_seg0": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "pressure:INFLOW:branch0_seg0": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "flow:branch0_seg0:OUT": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "pressure:branch0_seg0:OUT": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } }, - "calibration_parameters": { - "tolerance_gradient": 1e-5, - "tolerance_increment": 1e-10, - "maximum_iterations": 100, - "calibrate_stenosis_coefficient": true, - "set_capacitance_to_zero": false, - "initial_damping_factor": 1.0 + { + "bc_name": "OUT", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } } -} \ No newline at end of file + ], + "junctions": [], + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0001, + "L": 1.0, + "R_poiseuille": 100.0 + } + } + ], + "y": { + "flow:INFLOW:branch0_seg0": [ + 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, + 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, + 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, + 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, + 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, + 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, + 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0 + ], + "pressure:INFLOW:branch0_seg0": [ + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316, 1099.9999999873316, + 1099.9999999873316, 1099.9999999873316 + ], + "flow:branch0_seg0:OUT": [ + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241, 4.999999999920241, + 4.999999999920241, 4.999999999920241 + ], + "pressure:branch0_seg0:OUT": [ + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244, 599.9999999920244, + 599.9999999920244, 599.9999999920244 + ] + }, + "dy": { + "flow:INFLOW:branch0_seg0": [ + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + ], + "pressure:INFLOW:branch0_seg0": [ + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + ], + "flow:branch0_seg0:OUT": [ + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + ], + "pressure:branch0_seg0:OUT": [ + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + ] + }, + "calibration_parameters": { + "tolerance_gradient": 1e-5, + "tolerance_increment": 1e-10, + "maximum_iterations": 100, + "calibrate_stenosis_coefficient": true, + "set_capacitance_to_zero": false, + "initial_damping_factor": 1.0 + } +} diff --git a/tests/cases/steadyFlow_confluenceR_R.json b/tests/cases/steadyFlow_confluenceR_R.json index 9d890bf98..e720b7e18 100644 --- a/tests/cases/steadyFlow_confluenceR_R.json +++ b/tests/cases/steadyFlow_confluenceR_R.json @@ -1,117 +1,100 @@ { - "description": { - "description of test case": "steady flow -> confluence (with R's) -> R", - "analytical results": [ - "Boundary conditions:", - "inlet0:", - "flow rate: Q0 = 5", - "inlet1:", - "flow rate: Q1 = 10", - "outlet:", - "resistance + distal pressure: R = 100, Pd = 100", - "Solutions:", - "outlet flow = Qo = Q0 + Q1 = 5 + 10 = 15", - "outlet pressure = Po = Qo * R + Pd = 15 * 100 + 100 = 1600", - "junction flow = Qc = Qo = 15", - "junction pressure = Pc = Qc * R_poiseuille2 + Po = 15 * 300 + 1600 = 6100", - "inlet flow0 = Qi0 = Q0 = 5", - "inlet flow1 = Qi1 = Q1 = 10", - "inlet pressure0 = R_poiseuille0 * Qi0 + Pc = 100 * 5 + 6100 = 6600", - "inlet pressure1 = R_poiseuille1 * Qi1 + Pc = 200 * 10 + 6100 = 8100" - ] + "description": { + "description of test case": "steady flow -> confluence (with R's) -> R", + "analytical results": [ + "Boundary conditions:", + "inlet0:", + "flow rate: Q0 = 5", + "inlet1:", + "flow rate: Q1 = 10", + "outlet:", + "resistance + distal pressure: R = 100, Pd = 100", + "Solutions:", + "outlet flow = Qo = Q0 + Q1 = 5 + 10 = 15", + "outlet pressure = Po = Qo * R + Pd = 15 * 100 + 100 = 1600", + "junction flow = Qc = Qo = 15", + "junction pressure = Pc = Qc * R_poiseuille2 + Po = 15 * 300 + 1600 = 6100", + "inlet flow0 = Qi0 = Q0 = 5", + "inlet flow1 = Qi1 = Q1 = 10", + "inlet pressure0 = R_poiseuille0 * Qi0 + Pc = 100 * 5 + 6100 = 6600", + "inlet pressure1 = R_poiseuille1 * Qi1 + Pc = 200 * 10 + 6100 = 8100" + ] + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW0", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } }, - "boundary_conditions": [ - { - "bc_name": "INFLOW0", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "INFLOW1", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 10.0, - 10.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0, - 1 - ], - "junction_name": "J0", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 2 - ] - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 2, - "number_of_time_pts_per_cardiac_cycle": 5, - "absolute_tolerance": 1e-09 + { + "bc_name": "INFLOW1", + "bc_type": "FLOW", + "bc_values": { + "Q": [10.0, 10.0], + "t": [0.0, 1.0] + } }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW0" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0 - } - }, - { - "boundary_conditions": { - "inlet": "INFLOW1" - }, - "vessel_id": 1, - "vessel_length": 10.0, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 200.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUT" - }, - "vessel_id": 2, - "vessel_length": 10.0, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 300.0 - } - } - ] -} \ No newline at end of file + { + "bc_name": "OUT", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0, 1], + "junction_name": "J0", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [2] + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 2, + "number_of_time_pts_per_cardiac_cycle": 5, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW0" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0 + } + }, + { + "boundary_conditions": { + "inlet": "INFLOW1" + }, + "vessel_id": 1, + "vessel_length": 10.0, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 200.0 + } + }, + { + "boundary_conditions": { + "outlet": "OUT" + }, + "vessel_id": 2, + "vessel_length": 10.0, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 300.0 + } + } + ] +} diff --git a/tests/cases/steadyFlow_stenosis_R.json b/tests/cases/steadyFlow_stenosis_R.json index 95febabd0..b6ea12505 100644 --- a/tests/cases/steadyFlow_stenosis_R.json +++ b/tests/cases/steadyFlow_stenosis_R.json @@ -1,60 +1,54 @@ { - "description": { - "description of test case": "steady flow -> stenosis -> R", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "flow rate: Q = 5", - "outlet:", - "resistance + distal pressure: R = 100, Pd = 100", - "Solutions:", - "outlet pressure = Q * R + Pd = 5 * 100 + 100 = 600", - "inlet pressure = outlet pressure + Q * (R_poiseuille + stenosis_coefficient * abs(Q)) = 600 + 5 * (100 + 100 * abs(5)) = 3600" - ] - }, - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 5.0, - 5.0 - ], - "t": [ - 0.0, - 1.0 - ] - } - }, - { - "bc_name": "OUT", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 100.0, - "R": 100.0 - } - } - ], - "simulation_parameters": { - "number_of_cardiac_cycles": 2, - "number_of_time_pts_per_cardiac_cycle": 5, - "absolute_tolerance": 1e-09 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW", - "outlet": "OUT" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 100.0, - "stenosis_coefficient": 100.0 - } - } + "description": { + "description of test case": "steady flow -> stenosis -> R", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "flow rate: Q = 5", + "outlet:", + "resistance + distal pressure: R = 100, Pd = 100", + "Solutions:", + "outlet pressure = Q * R + Pd = 5 * 100 + 100 = 600", + "inlet pressure = outlet pressure + Q * (R_poiseuille + stenosis_coefficient * abs(Q)) = 600 + 5 * (100 + 100 * abs(5)) = 3600" ] -} \ No newline at end of file + }, + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [5.0, 5.0], + "t": [0.0, 1.0] + } + }, + { + "bc_name": "OUT", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 100.0, + "R": 100.0 + } + } + ], + "simulation_parameters": { + "number_of_cardiac_cycles": 2, + "number_of_time_pts_per_cardiac_cycle": 5, + "absolute_tolerance": 1e-9 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW", + "outlet": "OUT" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 100.0, + "stenosis_coefficient": 100.0 + } + } + ] +} diff --git a/tests/cases/valve_tanh.json b/tests/cases/valve_tanh.json index 4472a4a48..fd930864d 100644 --- a/tests/cases/valve_tanh.json +++ b/tests/cases/valve_tanh.json @@ -1,284 +1,122 @@ { - "description": { - "description of test case": "pulsatile pressure -> RC vessel -> valve -> RC vessel -> R BC", - "analytical results": [ - "Boundary conditions:", - "inlet:", - "Pressure: P(t) = 2.5*SIN(2*PI()*t) + 2.2", - "outlet:", - "Resistance: Rd = 1000, Pd = 1.00" + "description": { + "description of test case": "pulsatile pressure -> RC vessel -> valve -> RC vessel -> R BC", + "analytical results": [ + "Boundary conditions:", + "inlet:", + "Pressure: P(t) = 2.5*SIN(2*PI()*t) + 2.2", + "outlet:", + "Resistance: Rd = 1000, Pd = 1.00" + ] + }, + "simulation_parameters": { + "number_of_cardiac_cycles": 5, + "number_of_time_pts_per_cardiac_cycle": 101, + "output_all_cycles": false, + "steady_initial": true, + "output_variable_based": true, + "absolute_tolerance": 1e-9 + }, + "boundary_conditions": [ + { + "bc_name": "INLET", + "bc_type": "PRESSURE", + "bc_values": { + "P": [ + 2.2, 2.35697629882328, 2.51333308391076, 2.66845328646431, + 2.82172471791214, 2.97254248593737, 3.1203113817117, 3.26444822891268, + 3.40438418525429, 3.53956698744749, 3.66946313073118, + 3.79355997437172, 3.91136776482172, 4.02242156855353, + 4.12628310693947, 4.22254248593737, 4.31081981375504, + 4.39076670010966, 4.46206763116505, 4.52444121472063, + 4.57764129073788, 4.62145790282158, 4.65571812682172, 4.6802867532862, + 4.69506682107068, 4.7, 4.69506682107068, 4.6802867532862, + 4.65571812682172, 4.62145790282158, 4.57764129073788, + 4.52444121472063, 4.46206763116505, 4.39076670010966, + 4.31081981375504, 4.22254248593737, 4.12628310693947, + 4.02242156855353, 3.91136776482172, 3.79355997437172, + 3.66946313073118, 3.53956698744749, 3.40438418525429, + 3.26444822891268, 3.1203113817117, 2.97254248593737, 2.82172471791214, + 2.66845328646431, 2.51333308391076, 2.35697629882328, 2.2, + 2.04302370117672, 1.88666691608924, 1.73154671353569, + 1.57827528208786, 1.42745751406263, 1.2796886182883, 1.13555177108732, + 0.995615814745713, 0.860433012552509, 0.730536869268818, + 0.606440025628276, 0.488632235178278, 0.377578431446472, + 0.273716893060527, 0.177457514062632, 0.089180186244962, + 0.009233299890341, -0.06206763116505, -0.124441214720628, + -0.177641290737883, -0.221457902821577, -0.255718126821721, + -0.280286753286194, -0.295066821070679, -0.3, -0.295066821070679, + -0.280286753286195, -0.255718126821721, -0.221457902821578, + -0.177641290737884, -0.124441214720628, -0.062067631165049, + 0.009233299890342, 0.089180186244962, 0.177457514062631, + 0.273716893060526, 0.377578431446471, 0.488632235178278, + 0.606440025628276, 0.730536869268817, 0.860433012552509, + 0.995615814745712, 1.13555177108732, 1.27968861828831, + 1.42745751406263, 1.57827528208786, 1.73154671353569, + 1.88666691608924, 2.04302370117672, 2.2 + ], + "t": [ + 0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, + 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, + 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, + 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, + 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, + 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, + 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, + 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, + 0.96, 0.97, 0.98, 0.99, 1.0 ] + } }, - "simulation_parameters": { - "number_of_cardiac_cycles": 5, - "number_of_time_pts_per_cardiac_cycle": 101, - "output_all_cycles": false, - "steady_initial": true, - "output_variable_based": true, - "absolute_tolerance": 1e-09 + { + "bc_name": "OUTLET", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 1.0, + "R": 1000.0 + } + } + ], + "junctions": [], + "vessels": [ + { + "boundary_conditions": { + "inlet": "INLET" + }, + "vessel_id": 0, + "vessel_length": 10.0, + "vessel_name": "upstream_vessel", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0001, + "R_poiseuille": 100.0 + } }, - "boundary_conditions": [ - { - "bc_name": "INLET", - "bc_type": "PRESSURE", - "bc_values": { - "P": [ - 2.2, - 2.35697629882328, - 2.51333308391076, - 2.66845328646431, - 2.82172471791214, - 2.97254248593737, - 3.1203113817117, - 3.26444822891268, - 3.40438418525429, - 3.53956698744749, - 3.66946313073118, - 3.79355997437172, - 3.91136776482172, - 4.02242156855353, - 4.12628310693947, - 4.22254248593737, - 4.31081981375504, - 4.39076670010966, - 4.46206763116505, - 4.52444121472063, - 4.57764129073788, - 4.62145790282158, - 4.65571812682172, - 4.6802867532862, - 4.69506682107068, - 4.7, - 4.69506682107068, - 4.6802867532862, - 4.65571812682172, - 4.62145790282158, - 4.57764129073788, - 4.52444121472063, - 4.46206763116505, - 4.39076670010966, - 4.31081981375504, - 4.22254248593737, - 4.12628310693947, - 4.02242156855353, - 3.91136776482172, - 3.79355997437172, - 3.66946313073118, - 3.53956698744749, - 3.40438418525429, - 3.26444822891268, - 3.1203113817117, - 2.97254248593737, - 2.82172471791214, - 2.66845328646431, - 2.51333308391076, - 2.35697629882328, - 2.2, - 2.04302370117672, - 1.88666691608924, - 1.73154671353569, - 1.57827528208786, - 1.42745751406263, - 1.2796886182883, - 1.13555177108732, - 0.995615814745713, - 0.860433012552509, - 0.730536869268818, - 0.606440025628276, - 0.488632235178278, - 0.377578431446472, - 0.273716893060527, - 0.177457514062632, - 0.089180186244962, - 0.009233299890341, - -0.06206763116505, - -0.124441214720628, - -0.177641290737883, - -0.221457902821577, - -0.255718126821721, - -0.280286753286194, - -0.295066821070679, - -0.3, - -0.295066821070679, - -0.280286753286195, - -0.255718126821721, - -0.221457902821578, - -0.177641290737884, - -0.124441214720628, - -0.062067631165049, - 0.009233299890342, - 0.089180186244962, - 0.177457514062631, - 0.273716893060526, - 0.377578431446471, - 0.488632235178278, - 0.606440025628276, - 0.730536869268817, - 0.860433012552509, - 0.995615814745712, - 1.13555177108732, - 1.27968861828831, - 1.42745751406263, - 1.57827528208786, - 1.73154671353569, - 1.88666691608924, - 2.04302370117672, - 2.2 - ], - "t": [ - 0.0, - 0.01, - 0.02, - 0.03, - 0.04, - 0.05, - 0.06, - 0.07, - 0.08, - 0.09, - 0.1, - 0.11, - 0.12, - 0.13, - 0.14, - 0.15, - 0.16, - 0.17, - 0.18, - 0.19, - 0.2, - 0.21, - 0.22, - 0.23, - 0.24, - 0.25, - 0.26, - 0.27, - 0.28, - 0.29, - 0.3, - 0.31, - 0.32, - 0.33, - 0.34, - 0.35, - 0.36, - 0.37, - 0.38, - 0.39, - 0.4, - 0.41, - 0.42, - 0.43, - 0.44, - 0.45, - 0.46, - 0.47, - 0.48, - 0.49, - 0.5, - 0.51, - 0.52, - 0.53, - 0.54, - 0.55, - 0.56, - 0.57, - 0.58, - 0.59, - 0.6, - 0.61, - 0.62, - 0.63, - 0.64, - 0.65, - 0.66, - 0.67, - 0.68, - 0.69, - 0.7, - 0.71, - 0.72, - 0.73, - 0.74, - 0.75, - 0.76, - 0.77, - 0.78, - 0.79, - 0.8, - 0.81, - 0.82, - 0.83, - 0.84, - 0.85, - 0.86, - 0.87, - 0.88, - 0.89, - 0.9, - 0.91, - 0.92, - 0.93, - 0.94, - 0.95, - 0.96, - 0.97, - 0.98, - 0.99, - 1.0 - ] - } - }, - { - "bc_name": "OUTLET", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 1.0, - "R": 1000.0 - } - } - ], - "junctions": [], - "vessels": [ - { - "boundary_conditions": { - "inlet": "INLET" - }, - "vessel_id": 0, - "vessel_length": 10.0, - "vessel_name": "upstream_vessel", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0001, - "R_poiseuille": 100.0 - } - }, - { - "boundary_conditions": { - "outlet": "OUTLET" - }, - "vessel_id": 1, - "vessel_length": 10.0, - "vessel_name": "downstream_vessel", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0001, - "R_poiseuille": 100.0 - } - } - ], - "valves": [ - { - "type": "ValveTanh", - "name": "valve", - "params": { - "Rmax": 100000.0, - "Rmin": 100.0, - "Steepness": 100.0, - "upstream_block": "upstream_vessel", - "downstream_block": "downstream_vessel" - } - } - ] -} \ No newline at end of file + { + "boundary_conditions": { + "outlet": "OUTLET" + }, + "vessel_id": 1, + "vessel_length": 10.0, + "vessel_name": "downstream_vessel", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0001, + "R_poiseuille": 100.0 + } + } + ], + "valves": [ + { + "type": "ValveTanh", + "name": "valve", + "params": { + "Rmax": 100000.0, + "Rmin": 100.0, + "Steepness": 100.0, + "upstream_block": "upstream_vessel", + "downstream_block": "downstream_vessel" + } + } + ] +} diff --git a/tests/cases/vmr/input/0080_0001_calibrate_from_0d.json b/tests/cases/vmr/input/0080_0001_calibrate_from_0d.json index 9466571d7..9a3663b53 100644 --- a/tests/cases/vmr/input/0080_0001_calibrate_from_0d.json +++ b/tests/cases/vmr/input/0080_0001_calibrate_from_0d.json @@ -1,180597 +1,64920 @@ { - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 75.20299897326457, - 96.65267412104662, - 119.99354078316293, - 144.17380006076564, - 167.9658841666732, - 190.3696829636227, - 210.539633459793, - 228.17046625364924, - 242.9747282756045, - 255.2014820400909, - 264.9641929042962, - 272.5425139975115, - 278.1173908184526, - 281.71507365610944, - 283.4287638529393, - 283.1528247869028, - 280.9953282566522, - 277.01330499064323, - 271.42719348182607, - 264.5481890704203, - 256.6550987507877, - 248.09449679231844, - 239.07228804540608, - 229.77115927781313, - 220.27790209477615, - 210.66210491346732, - 201.0046443422202, - 191.43529598397646, - 182.11466390146362, - 173.25197793789246, - 164.97566318917916, - 157.33328152109064, - 150.2111639710666, - 143.3062267750492, - 136.1796666660292, - 128.35920133027145, - 119.3648034925374, - 108.93952592334738, - 97.04733249512748, - 83.91749296354521, - 70.08943644257923, - 56.22987686297122, - 43.0640615598422, - 31.27367207163051, - 21.326966664990948, - 13.43401984507759, - 7.669076370632103, - 3.740251938280678, - 1.4637389428075391, - 0.4392048839653444, - 0.4553672117473945, - 1.308051498843595, - 2.867902490283212, - 5.084102812636766, - 7.812543206442015, - 10.922185934965515, - 14.162611975365328, - 17.2596912659035, - 19.919103623620533, - 21.93250239088451, - 23.144467808458348, - 23.603003428606115, - 23.40149680224406, - 22.765029351425937, - 21.903198808636184, - 20.98860513570841, - 20.10078155357604, - 19.220633057034316, - 18.255074714906527, - 17.079230037750044, - 15.60883210599078, - 13.833341524659831, - 11.832825655557745, - 9.77472462346009, - 7.861520308776615, - 6.256079921580375, - 5.076284178657773, - 4.313387383470458, - 3.8751743405077996, - 3.6233866077584307, - 3.4100685192271674, - 3.1528936655615403, - 2.8632600365853316, - 2.6399974317076484, - 2.6403660750881706, - 3.003355397122063, - 3.82233416362992, - 5.044994517247155, - 6.5484299700527515, - 8.125004113094377, - 9.610667498260323, - 10.97085284285842, - 12.389307510260862, - 14.331752993739022, - 17.43007161210963, - 22.566724857016226, - 30.466563730966133, - 41.76171723743491, - 56.77632872832844, - 75.20299897326457 - ], - "t": [ - 0.0, - 0.007130101010101008, - 0.014260202020202017, - 0.021390303030303023, - 0.028520404040404033, - 0.035650505050505044, - 0.04278060606060605, - 0.04991070707070706, - 0.05704080808080807, - 0.06417090909090907, - 0.07130101010101009, - 0.07843111111111109, - 0.0855612121212121, - 0.09269131313131311, - 0.09982141414141411, - 0.10695151515151513, - 0.11408161616161613, - 0.12121171717171714, - 0.12834181818181814, - 0.13547191919191917, - 0.14260202020202017, - 0.14973212121212118, - 0.15686222222222218, - 0.16399232323232318, - 0.1711224242424242, - 0.17825252525252522, - 0.18538262626262622, - 0.19251272727272722, - 0.19964282828282823, - 0.20677292929292923, - 0.21390303030303026, - 0.22103313131313126, - 0.22816323232323227, - 0.23529333333333327, - 0.24242343434343427, - 0.2495535353535353, - 0.2566836363636363, - 0.2638137373737373, - 0.27094383838383834, - 0.2780739393939393, - 0.28520404040404035, - 0.2923341414141413, - 0.29946424242424236, - 0.3065943434343434, - 0.31372444444444436, - 0.3208545454545454, - 0.32798464646464637, - 0.3351147474747474, - 0.3422448484848484, - 0.3493749494949494, - 0.35650505050505044, - 0.3636351515151514, - 0.37076525252525244, - 0.3778953535353534, - 0.38502545454545445, - 0.3921555555555555, - 0.39928565656565645, - 0.4064157575757575, - 0.41354585858585846, - 0.4206759595959595, - 0.4278060606060605, - 0.4349361616161615, - 0.44206626262626253, - 0.4491963636363635, - 0.45632646464646454, - 0.46345656565656557, - 0.47058666666666654, - 0.4777167676767676, - 0.48484686868686855, - 0.4919769696969696, - 0.4991070707070706, - 0.5062371717171716, - 0.5133672727272726, - 0.5204973737373736, - 0.5276274747474746, - 0.5347575757575757, - 0.5418876767676767, - 0.5490177777777776, - 0.5561478787878786, - 0.5632779797979797, - 0.5704080808080807, - 0.5775381818181817, - 0.5846682828282826, - 0.5917983838383837, - 0.5989284848484847, - 0.6060585858585857, - 0.6131886868686868, - 0.6203187878787877, - 0.6274488888888887, - 0.6345789898989898, - 0.6417090909090908, - 0.6488391919191918, - 0.6559692929292927, - 0.6630993939393938, - 0.6702294949494948, - 0.6773595959595958, - 0.6844896969696967, - 0.6916197979797978, - 0.6987498989898988, - 0.7058799999999998 - ] - } - }, - { - "bc_name": "RESISTANCE_0", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5498.7352908831 - } - }, - { - "bc_name": "RESISTANCE_1", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6395.90661976335 - } - }, - { - "bc_name": "RESISTANCE_2", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6395.90661976335 - } - }, - { - "bc_name": "RESISTANCE_3", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4967.70988574267 - } - }, - { - "bc_name": "RESISTANCE_4", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3714.2687347715 - } - }, - { - "bc_name": "RESISTANCE_5", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5171.48649207728 - } - }, - { - "bc_name": "RESISTANCE_6", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3382.949932341 - } - }, - { - "bc_name": "RESISTANCE_7", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5053.51674230097 - } - }, - { - "bc_name": "RESISTANCE_8", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5972.50259803863 - } - }, - { - "bc_name": "RESISTANCE_9", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4806.11337621455 - } - }, - { - "bc_name": "RESISTANCE_10", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5665.52978369007 - } - }, - { - "bc_name": "RESISTANCE_11", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5714.82998380798 - } - }, - { - "bc_name": "RESISTANCE_12", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4912.03366380404 - } - }, - { - "bc_name": "RESISTANCE_13", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4066.44572311571 - } - }, - { - "bc_name": "RESISTANCE_14", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4093.36138650337 - } - }, - { - "bc_name": "RESISTANCE_15", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6951.52470108444 - } - }, - { - "bc_name": "RESISTANCE_16", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7277.06705089581 - } - }, - { - "bc_name": "RESISTANCE_17", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5492.24220788137 - } - }, - { - "bc_name": "RESISTANCE_18", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4285.29799962289 - } - }, - { - "bc_name": "RESISTANCE_19", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4912.03366380404 - } - }, - { - "bc_name": "RESISTANCE_20", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7787.55548633284 - } - }, - { - "bc_name": "RESISTANCE_21", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6395.90661976335 - } - }, - { - "bc_name": "RESISTANCE_22", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5855.14374377891 - } - }, - { - "bc_name": "RESISTANCE_23", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4535.5587808418 - } - }, - { - "bc_name": "RESISTANCE_24", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5112.56156376216 - } - }, - { - "bc_name": "RESISTANCE_25", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6122.44897959184 - } - }, - { - "bc_name": "RESISTANCE_26", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5440.75561213941 - } - }, - { - "bc_name": "RESISTANCE_27", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5524.35319031397 - } - }, - { - "bc_name": "RESISTANCE_28", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7277.06705089581 - } - }, - { - "bc_name": "RESISTANCE_29", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5346.4499572284 - } - }, - { - "bc_name": "RESISTANCE_30", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5007.41096823299 - } - }, - { - "bc_name": "RESISTANCE_31", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7210.23853872499 - } - }, - { - "bc_name": "RESISTANCE_32", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3743.63581910752 - } - }, - { - "bc_name": "RESISTANCE_33", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5346.4499572284 - } - }, - { - "bc_name": "RESISTANCE_34", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6086.61249581545 - } - }, - { - "bc_name": "RESISTANCE_35", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5346.39278878541 - } - }, - { - "bc_name": "RESISTANCE_36", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4406.3539624138 - } - }, - { - "bc_name": "RESISTANCE_37", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4343.41971912552 - } - }, - { - "bc_name": "RESISTANCE_38", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3712.80695631511 - } - }, - { - "bc_name": "RESISTANCE_39", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5665.52978369007 - } - }, - { - "bc_name": "RESISTANCE_40", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4336.16870587045 - } - }, - { - "bc_name": "RESISTANCE_41", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5053.51674230097 - } - }, - { - "bc_name": "RESISTANCE_42", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3941.84983128883 - } - }, - { - "bc_name": "RESISTANCE_43", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3809.11266720418 - } - }, - { - "bc_name": "RESISTANCE_44", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4321.89471864465 - } - }, - { - "bc_name": "RESISTANCE_45", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4157.55469263198 - } - }, - { - "bc_name": "RESISTANCE_46", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4786.29205954147 - } - }, - { - "bc_name": "RESISTANCE_47", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5260.66600031564 - } - }, - { - "bc_name": "RESISTANCE_48", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5062.6759279885 - } - }, - { - "bc_name": "RESISTANCE_49", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6415.73994867408 - } - }, - { - "bc_name": "RESISTANCE_50", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5053.51674230097 - } - }, - { - "bc_name": "RESISTANCE_51", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4093.36138650337 - } - }, - { - "bc_name": "RESISTANCE_52", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4093.36138650337 - } - }, - { - "bc_name": "RESISTANCE_53", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7675.08794371602 - } - }, - { - "bc_name": "RESISTANCE_54", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3389.07227535534 - } - }, - { - "bc_name": "RESISTANCE_55", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3011.91211240456 - } - }, - { - "bc_name": "RESISTANCE_56", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 8710.04267920913 - } - }, - { - "bc_name": "RESISTANCE_57", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4502.27364819234 - } - }, - { - "bc_name": "RESISTANCE_58", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4165.48066175603 - } - }, - { - "bc_name": "RESISTANCE_59", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5053.51674230097 - } - }, - { - "bc_name": "RESISTANCE_60", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7277.06705089581 - } - }, - { - "bc_name": "RESISTANCE_61", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5384.30475164894 - } - }, - { - "bc_name": "RESISTANCE_62", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4093.36138650337 - } - }, - { - "bc_name": "RESISTANCE_63", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5693.72323950077 - } - }, - { - "bc_name": "RESISTANCE_64", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6846.42331435353 - } - }, - { - "bc_name": "RESISTANCE_65", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5931.12774462936 - } - }, - { - "bc_name": "RESISTANCE_66", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5665.59398087295 - } - }, - { - "bc_name": "RESISTANCE_67", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6508.93351124418 - } - }, - { - "bc_name": "RESISTANCE_68", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4093.36138650337 - } - }, - { - "bc_name": "RESISTANCE_69", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5443.21367335275 - } - }, - { - "bc_name": "RESISTANCE_70", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5616.96773613732 - } - }, - { - "bc_name": "RESISTANCE_71", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5295.95565519798 - } - }, - { - "bc_name": "RESISTANCE_72", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5306.82280518654 - } - }, - { - "bc_name": "RESISTANCE_73", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4933.84535684037 - } - }, - { - "bc_name": "RESISTANCE_74", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5054.2829994137 - } - }, - { - "bc_name": "RESISTANCE_75", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4767.58045292014 - } - }, - { - "bc_name": "RESISTANCE_76", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5664.88789186862 - } - }, - { - "bc_name": "RESISTANCE_77", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7277.06705089581 - } - }, - { - "bc_name": "RESISTANCE_78", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5071.55970747244 - } - }, - { - "bc_name": "RESISTANCE_79", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4912.03366380404 - } - }, - { - "bc_name": "RESISTANCE_80", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6488.66106478928 - } - }, - { - "bc_name": "RESISTANCE_81", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 8134.82110172594 - } - }, - { - "bc_name": "RESISTANCE_82", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4912.03366380404 - } - }, - { - "bc_name": "RESISTANCE_83", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 8732.48046107497 - } - }, - { - "bc_name": "RESISTANCE_84", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4024.68473302925 - } - }, - { - "bc_name": "RESISTANCE_85", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3143.69845644406 - } - }, - { - "bc_name": "RESISTANCE_86", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6798.63574042809 - } - }, - { - "bc_name": "RESISTANCE_87", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5665.52978369007 - } - }, - { - "bc_name": "RESISTANCE_88", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5344.97349783974 - } - }, - { - "bc_name": "RESISTANCE_89", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 2944.53670659458 - } - }, - { - "bc_name": "RESISTANCE_90", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4472.47193523861 - } - }, - { - "bc_name": "RESISTANCE_91", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3717.44908643689 - } - }, - { - "bc_name": "RESISTANCE_92", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7168.03058359716 - } - }, - { - "bc_name": "RESISTANCE_93", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5665.52978369007 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0 - ], - "junction_name": "J0", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 1, - 8 - ] - }, - { - "inlet_vessels": [ - 3 - ], - "junction_name": "J1", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 4, - 37, - 49, - 59, - 70, - 73, - 91, - 94, - 100, - 137, - 156, - 168, - 186, - 198 - ] - }, - { - "inlet_vessels": [ - 4 - ], - "junction_name": "J2", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 5, - 48 - ] - }, - { - "inlet_vessels": [ - 8 - ], - "junction_name": "J3", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 9, - 18, - 26, - 28, - 41, - 51, - 68, - 92, - 105, - 164, - 183, - 212 - ] - }, - { - "inlet_vessels": [ - 9 - ], - "junction_name": "J4", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 10, - 125, - 185 - ] - }, - { - "inlet_vessels": [ - 10 - ], - "junction_name": "J5", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 11, - 16, - 69, - 83, - 87 - ] - }, - { - "inlet_vessels": [ - 11 - ], - "junction_name": "J6", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 12, - 21 - ] - }, - { - "inlet_vessels": [ - 12 - ], - "junction_name": "J7", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 13, - 65 - ] - }, - { - "inlet_vessels": [ - 16 - ], - "junction_name": "J8", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 17, - 184 - ] - }, - { - "inlet_vessels": [ - 18 - ], - "junction_name": "J9", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 19, - 106, - 130 - ] - }, - { - "inlet_vessels": [ - 19 - ], - "junction_name": "J10", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 20, - 148 - ] - }, - { - "inlet_vessels": [ - 21 - ], - "junction_name": "J11", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 22, - 30 - ] - }, - { - "inlet_vessels": [ - 22 - ], - "junction_name": "J12", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 23, - 162 - ] - }, - { - "inlet_vessels": [ - 23 - ], - "junction_name": "J13", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 24, - 63 - ] - }, - { - "inlet_vessels": [ - 24 - ], - "junction_name": "J14", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 25, - 29 - ] - }, - { - "inlet_vessels": [ - 26 - ], - "junction_name": "J15", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 27, - 76, - 149 - ] - }, - { - "inlet_vessels": [ - 30 - ], - "junction_name": "J16", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 31, - 204 - ] - }, - { - "inlet_vessels": [ - 31 - ], - "junction_name": "J17", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 32, - 58 - ] - }, - { - "inlet_vessels": [ - 32 - ], - "junction_name": "J18", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 33, - 170 - ] - }, - { - "inlet_vessels": [ - 33 - ], - "junction_name": "J19", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 34, - 61 - ] - }, - { - "inlet_vessels": [ - 37 - ], - "junction_name": "J20", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 38, - 43, - 56, - 62, - 90, - 113, - 145, - 171 - ] - }, - { - "inlet_vessels": [ - 41 - ], - "junction_name": "J21", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 42, - 139 - ] - }, - { - "inlet_vessels": [ - 43 - ], - "junction_name": "J22", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 44, - 107, - 163 - ] - }, - { - "inlet_vessels": [ - 44 - ], - "junction_name": "J23", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 45, - 143 - ] - }, - { - "inlet_vessels": [ - 49 - ], - "junction_name": "J24", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 50, - 140 - ] - }, - { - "inlet_vessels": [ - 51 - ], - "junction_name": "J25", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 52, - 154 - ] - }, - { - "inlet_vessels": [ - 52 - ], - "junction_name": "J26", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 53, - 136 - ] - }, - { - "inlet_vessels": [ - 56 - ], - "junction_name": "J27", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 57, - 192 - ] - }, - { - "inlet_vessels": [ - 59 - ], - "junction_name": "J28", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 60, - 121 - ] - }, - { - "inlet_vessels": [ - 63 - ], - "junction_name": "J29", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 64, - 120 - ] - }, - { - "inlet_vessels": [ - 70 - ], - "junction_name": "J30", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 71, - 144, - 205 - ] - }, - { - "inlet_vessels": [ - 71 - ], - "junction_name": "J31", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 72, - 112 - ] - }, - { - "inlet_vessels": [ - 73 - ], - "junction_name": "J32", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 74, - 79, - 197 - ] - }, - { - "inlet_vessels": [ - 74 - ], - "junction_name": "J33", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 75, - 211 - ] - }, - { - "inlet_vessels": [ - 81 - ], - "junction_name": "J34", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 82, - 178 - ] - }, - { - "inlet_vessels": [ - 83 - ], - "junction_name": "J35", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 84, - 109, - 135 - ] - }, - { - "inlet_vessels": [ - 87 - ], - "junction_name": "J36", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 88, - 89, - 108 - ] - }, - { - "inlet_vessels": [ - 92 - ], - "junction_name": "J37", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 93, - 97 - ] - }, - { - "inlet_vessels": [ - 94 - ], - "junction_name": "J38", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 95, - 104 - ] - }, - { - "inlet_vessels": [ - 95 - ], - "junction_name": "J39", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 96, - 122 - ] - }, - { - "inlet_vessels": [ - 100 - ], - "junction_name": "J40", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 101, - 126 - ] - }, - { - "inlet_vessels": [ - 113 - ], - "junction_name": "J41", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 114, - 151 - ] - }, - { - "inlet_vessels": [ - 116 - ], - "junction_name": "J42", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 117, - 210 - ] - }, - { - "inlet_vessels": [ - 126 - ], - "junction_name": "J43", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 127, - 195, - 201 - ] - }, - { - "inlet_vessels": [ - 130 - ], - "junction_name": "J44", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 131, - 159 - ] - }, - { - "inlet_vessels": [ - 131 - ], - "junction_name": "J45", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 132, - 155 - ] - }, - { - "inlet_vessels": [ - 137 - ], - "junction_name": "J46", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 138, - 209 - ] - }, - { - "inlet_vessels": [ - 149 - ], - "junction_name": "J47", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 150, - 206 - ] - }, - { - "inlet_vessels": [ - 156 - ], - "junction_name": "J48", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 157, - 189 - ] - }, - { - "inlet_vessels": [ - 157 - ], - "junction_name": "J49", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 158, - 174 - ] - }, - { - "inlet_vessels": [ - 164 - ], - "junction_name": "J50", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 165, - 179 - ] - }, - { - "inlet_vessels": [ - 168 - ], - "junction_name": "J51", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 169, - 182 - ] - }, - { - "inlet_vessels": [ - 176 - ], - "junction_name": "J52", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 177, - 196 - ] - }, - { - "inlet_vessels": [ - 1 - ], - "junction_name": "J53", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 2 - ] - }, - { - "inlet_vessels": [ - 2 - ], - "junction_name": "J54", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 3 - ] - }, - { - "inlet_vessels": [ - 5 - ], - "junction_name": "J55", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 6 - ] - }, - { - "inlet_vessels": [ - 6 - ], - "junction_name": "J56", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 7 - ] - }, - { - "inlet_vessels": [ - 13 - ], - "junction_name": "J57", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 14 - ] - }, - { - "inlet_vessels": [ - 14 - ], - "junction_name": "J58", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 15 - ] - }, - { - "inlet_vessels": [ - 34 - ], - "junction_name": "J59", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 35 - ] - }, - { - "inlet_vessels": [ - 35 - ], - "junction_name": "J60", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 36 - ] - }, - { - "inlet_vessels": [ - 38 - ], - "junction_name": "J61", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 39 - ] - }, - { - "inlet_vessels": [ - 39 - ], - "junction_name": "J62", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 40 - ] - }, - { - "inlet_vessels": [ - 45 - ], - "junction_name": "J63", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 46 - ] - }, - { - "inlet_vessels": [ - 46 - ], - "junction_name": "J64", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 47 - ] - }, - { - "inlet_vessels": [ - 53 - ], - "junction_name": "J65", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 54 - ] - }, - { - "inlet_vessels": [ - 54 - ], - "junction_name": "J66", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 55 - ] - }, - { - "inlet_vessels": [ - 65 - ], - "junction_name": "J67", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 66 - ] - }, - { - "inlet_vessels": [ - 66 - ], - "junction_name": "J68", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 67 - ] - }, - { - "inlet_vessels": [ - 76 - ], - "junction_name": "J69", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 77 - ] - }, - { - "inlet_vessels": [ - 77 - ], - "junction_name": "J70", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 78 - ] - }, - { - "inlet_vessels": [ - 79 - ], - "junction_name": "J71", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 80 - ] - }, - { - "inlet_vessels": [ - 80 - ], - "junction_name": "J72", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 81 - ] - }, - { - "inlet_vessels": [ - 84 - ], - "junction_name": "J73", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 85 - ] - }, - { - "inlet_vessels": [ - 85 - ], - "junction_name": "J74", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 86 - ] - }, - { - "inlet_vessels": [ - 97 - ], - "junction_name": "J75", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 98 - ] - }, - { - "inlet_vessels": [ - 98 - ], - "junction_name": "J76", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 99 - ] - }, - { - "inlet_vessels": [ - 101 - ], - "junction_name": "J77", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 102 - ] - }, - { - "inlet_vessels": [ - 102 - ], - "junction_name": "J78", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 103 - ] - }, - { - "inlet_vessels": [ - 109 - ], - "junction_name": "J79", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 110 - ] - }, - { - "inlet_vessels": [ - 110 - ], - "junction_name": "J80", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 111 - ] - }, - { - "inlet_vessels": [ - 114 - ], - "junction_name": "J81", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 115 - ] - }, - { - "inlet_vessels": [ - 115 - ], - "junction_name": "J82", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 116 - ] - }, - { - "inlet_vessels": [ - 117 - ], - "junction_name": "J83", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 118 - ] - }, - { - "inlet_vessels": [ - 118 - ], - "junction_name": "J84", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 119 - ] - }, - { - "inlet_vessels": [ - 122 - ], - "junction_name": "J85", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 123 - ] - }, - { - "inlet_vessels": [ - 123 - ], - "junction_name": "J86", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 124 - ] - }, - { - "inlet_vessels": [ - 127 - ], - "junction_name": "J87", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 128 - ] - }, - { - "inlet_vessels": [ - 128 - ], - "junction_name": "J88", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 129 - ] - }, - { - "inlet_vessels": [ - 132 - ], - "junction_name": "J89", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 133 - ] - }, - { - "inlet_vessels": [ - 133 - ], - "junction_name": "J90", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 134 - ] - }, - { - "inlet_vessels": [ - 140 - ], - "junction_name": "J91", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 141 - ] - }, - { - "inlet_vessels": [ - 141 - ], - "junction_name": "J92", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 142 - ] - }, - { - "inlet_vessels": [ - 145 - ], - "junction_name": "J93", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 146 - ] - }, - { - "inlet_vessels": [ - 146 - ], - "junction_name": "J94", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 147 - ] - }, - { - "inlet_vessels": [ - 151 - ], - "junction_name": "J95", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 152 - ] - }, - { - "inlet_vessels": [ - 152 - ], - "junction_name": "J96", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 153 - ] - }, - { - "inlet_vessels": [ - 159 - ], - "junction_name": "J97", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 160 - ] - }, - { - "inlet_vessels": [ - 160 - ], - "junction_name": "J98", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 161 - ] - }, - { - "inlet_vessels": [ - 165 - ], - "junction_name": "J99", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 166 - ] - }, - { - "inlet_vessels": [ - 166 - ], - "junction_name": "J100", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 167 - ] - }, - { - "inlet_vessels": [ - 171 - ], - "junction_name": "J101", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 172 - ] - }, - { - "inlet_vessels": [ - 172 - ], - "junction_name": "J102", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 173 - ] - }, - { - "inlet_vessels": [ - 174 - ], - "junction_name": "J103", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 175 - ] - }, - { - "inlet_vessels": [ - 175 - ], - "junction_name": "J104", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 176 - ] - }, - { - "inlet_vessels": [ - 179 - ], - "junction_name": "J105", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 180 - ] - }, - { - "inlet_vessels": [ - 180 - ], - "junction_name": "J106", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 181 - ] - }, - { - "inlet_vessels": [ - 186 - ], - "junction_name": "J107", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 187 - ] - }, - { - "inlet_vessels": [ - 187 - ], - "junction_name": "J108", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 188 - ] - }, - { - "inlet_vessels": [ - 189 - ], - "junction_name": "J109", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 190 - ] - }, - { - "inlet_vessels": [ - 190 - ], - "junction_name": "J110", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 191 - ] - }, - { - "inlet_vessels": [ - 192 - ], - "junction_name": "J111", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 193 - ] - }, - { - "inlet_vessels": [ - 193 - ], - "junction_name": "J112", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 194 - ] - }, - { - "inlet_vessels": [ - 198 - ], - "junction_name": "J113", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 199 - ] - }, - { - "inlet_vessels": [ - 199 - ], - "junction_name": "J114", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 200 - ] - }, - { - "inlet_vessels": [ - 201 - ], - "junction_name": "J115", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 202 - ] - }, - { - "inlet_vessels": [ - 202 - ], - "junction_name": "J116", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 203 - ] - }, - { - "inlet_vessels": [ - 206 - ], - "junction_name": "J117", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 207 - ] - }, - { - "inlet_vessels": [ - 207 - ], - "junction_name": "J118", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 208 - ] - }, - { - "inlet_vessels": [ - 212 - ], - "junction_name": "J119", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 213 - ] - }, - { - "inlet_vessels": [ - 213 - ], - "junction_name": "J120", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 214 - ] - } - ], - "simulation_parameters": { - "density": 1.06, - "model_name": "0080_0001", - "number_of_cardiac_cycles": 3, - "number_of_time_pts_per_cardiac_cycle": 705, - "viscosity": 0.04, - "output_all_cycles": false + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 75.20299897326457, 96.65267412104662, 119.99354078316293, + 144.17380006076564, 167.9658841666732, 190.3696829636227, + 210.539633459793, 228.17046625364924, 242.9747282756045, + 255.2014820400909, 264.9641929042962, 272.5425139975115, + 278.1173908184526, 281.71507365610944, 283.4287638529393, + 283.1528247869028, 280.9953282566522, 277.01330499064323, + 271.42719348182607, 264.5481890704203, 256.6550987507877, + 248.09449679231844, 239.07228804540608, 229.77115927781313, + 220.27790209477615, 210.66210491346732, 201.0046443422202, + 191.43529598397646, 182.11466390146362, 173.25197793789246, + 164.97566318917916, 157.33328152109064, 150.2111639710666, + 143.3062267750492, 136.1796666660292, 128.35920133027145, + 119.3648034925374, 108.93952592334738, 97.04733249512748, + 83.91749296354521, 70.08943644257923, 56.22987686297122, + 43.0640615598422, 31.27367207163051, 21.326966664990948, + 13.43401984507759, 7.669076370632103, 3.740251938280678, + 1.4637389428075391, 0.4392048839653444, 0.4553672117473945, + 1.308051498843595, 2.867902490283212, 5.084102812636766, + 7.812543206442015, 10.922185934965515, 14.162611975365328, + 17.2596912659035, 19.919103623620533, 21.93250239088451, + 23.144467808458348, 23.603003428606115, 23.40149680224406, + 22.765029351425937, 21.903198808636184, 20.98860513570841, + 20.10078155357604, 19.220633057034316, 18.255074714906527, + 17.079230037750044, 15.60883210599078, 13.833341524659831, + 11.832825655557745, 9.77472462346009, 7.861520308776615, + 6.256079921580375, 5.076284178657773, 4.313387383470458, + 3.8751743405077996, 3.6233866077584307, 3.4100685192271674, + 3.1528936655615403, 2.8632600365853316, 2.6399974317076484, + 2.6403660750881706, 3.003355397122063, 3.82233416362992, + 5.044994517247155, 6.5484299700527515, 8.125004113094377, + 9.610667498260323, 10.97085284285842, 12.389307510260862, + 14.331752993739022, 17.43007161210963, 22.566724857016226, + 30.466563730966133, 41.76171723743491, 56.77632872832844, + 75.20299897326457 + ], + "t": [ + 0.0, 0.007130101010101008, 0.014260202020202017, 0.021390303030303023, + 0.028520404040404033, 0.035650505050505044, 0.04278060606060605, + 0.04991070707070706, 0.05704080808080807, 0.06417090909090907, + 0.07130101010101009, 0.07843111111111109, 0.0855612121212121, + 0.09269131313131311, 0.09982141414141411, 0.10695151515151513, + 0.11408161616161613, 0.12121171717171714, 0.12834181818181814, + 0.13547191919191917, 0.14260202020202017, 0.14973212121212118, + 0.15686222222222218, 0.16399232323232318, 0.1711224242424242, + 0.17825252525252522, 0.18538262626262622, 0.19251272727272722, + 0.19964282828282823, 0.20677292929292923, 0.21390303030303026, + 0.22103313131313126, 0.22816323232323227, 0.23529333333333327, + 0.24242343434343427, 0.2495535353535353, 0.2566836363636363, + 0.2638137373737373, 0.27094383838383834, 0.2780739393939393, + 0.28520404040404035, 0.2923341414141413, 0.29946424242424236, + 0.3065943434343434, 0.31372444444444436, 0.3208545454545454, + 0.32798464646464637, 0.3351147474747474, 0.3422448484848484, + 0.3493749494949494, 0.35650505050505044, 0.3636351515151514, + 0.37076525252525244, 0.3778953535353534, 0.38502545454545445, + 0.3921555555555555, 0.39928565656565645, 0.4064157575757575, + 0.41354585858585846, 0.4206759595959595, 0.4278060606060605, + 0.4349361616161615, 0.44206626262626253, 0.4491963636363635, + 0.45632646464646454, 0.46345656565656557, 0.47058666666666654, + 0.4777167676767676, 0.48484686868686855, 0.4919769696969696, + 0.4991070707070706, 0.5062371717171716, 0.5133672727272726, + 0.5204973737373736, 0.5276274747474746, 0.5347575757575757, + 0.5418876767676767, 0.5490177777777776, 0.5561478787878786, + 0.5632779797979797, 0.5704080808080807, 0.5775381818181817, + 0.5846682828282826, 0.5917983838383837, 0.5989284848484847, + 0.6060585858585857, 0.6131886868686868, 0.6203187878787877, + 0.6274488888888887, 0.6345789898989898, 0.6417090909090908, + 0.6488391919191918, 0.6559692929292927, 0.6630993939393938, + 0.6702294949494948, 0.6773595959595958, 0.6844896969696967, + 0.6916197979797978, 0.6987498989898988, 0.7058799999999998 + ] + } }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 1.3805440959686677, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 1, - "vessel_length": 0.4700096249069316, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 2, - "vessel_length": 1.236264289578453, - "vessel_name": "branch1_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 3, - "vessel_length": 0.027089022417558086, - "vessel_name": "branch1_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 4, - "vessel_length": 0.767092376484422, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 5, - "vessel_length": 1.9137134015067134, - "vessel_name": "branch3_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 6, - "vessel_length": 1.3994359853698075, - "vessel_name": "branch3_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_0" - }, - "vessel_id": 7, - "vessel_length": 0.6031024092142984, - "vessel_name": "branch3_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 8, - "vessel_length": 1.6221170932907283, - "vessel_name": "branch4_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 9, - "vessel_length": 0.03377137318889544, - "vessel_name": "branch5_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 10, - "vessel_length": 1.3376670796129662, - "vessel_name": "branch6_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 11, - "vessel_length": 0.597556026956815, - "vessel_name": "branch7_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 12, - "vessel_length": 0.3780642267581488, - "vessel_name": "branch8_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 13, - "vessel_length": 0.06402900125534544, - "vessel_name": "branch9_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 14, - "vessel_length": 0.8652668710938062, - "vessel_name": "branch9_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_1" - }, - "vessel_id": 15, - "vessel_length": 1.475694913974687, - "vessel_name": "branch9_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 16, - "vessel_length": 0.4511882149052207, - "vessel_name": "branch10_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_2" - }, - "vessel_id": 17, - "vessel_length": 0.926581286933064, - "vessel_name": "branch11_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 18, - "vessel_length": 0.2944816785427889, - "vessel_name": "branch12_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 19, - "vessel_length": 0.7814774469262069, - "vessel_name": "branch13_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_3" - }, - "vessel_id": 20, - "vessel_length": 2.546928970164378, - "vessel_name": "branch14_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 21, - "vessel_length": 0.43552068967368024, - "vessel_name": "branch15_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 22, - "vessel_length": 1.422373662231766, - "vessel_name": "branch16_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 23, - "vessel_length": 0.0321936092555048, - "vessel_name": "branch17_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 24, - "vessel_length": 0.06466890835245662, - "vessel_name": "branch18_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_4" - }, - "vessel_id": 25, - "vessel_length": 1.6684049591136723, - "vessel_name": "branch19_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 26, - "vessel_length": 0.45959397190300655, - "vessel_name": "branch20_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_5" - }, - "vessel_id": 27, - "vessel_length": 0.3473633681374321, - "vessel_name": "branch21_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_6" - }, - "vessel_id": 28, - "vessel_length": 1.8491184142546093, - "vessel_name": "branch22_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_7" - }, - "vessel_id": 29, - "vessel_length": 1.1480030859456651, - "vessel_name": "branch23_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 30, - "vessel_length": 0.566556332257165, - "vessel_name": "branch24_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 31, - "vessel_length": 0.031139405875391275, - "vessel_name": "branch25_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 32, - "vessel_length": 0.0709074115605942, - "vessel_name": "branch26_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 33, - "vessel_length": 0.03778956430673017, - "vessel_name": "branch27_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 34, - "vessel_length": 0.1133163787610899, - "vessel_name": "branch28_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 35, - "vessel_length": 0.1408917238471644, - "vessel_name": "branch28_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_8" - }, - "vessel_id": 36, - "vessel_length": 1.1913123850343972, - "vessel_name": "branch28_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 37, - "vessel_length": 0.1558046205341548, - "vessel_name": "branch29_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 38, - "vessel_length": 0.7581169080643847, - "vessel_name": "branch30_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 39, - "vessel_length": 0.951309792830832, - "vessel_name": "branch30_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_9" - }, - "vessel_id": 40, - "vessel_length": 0.8878614004687725, - "vessel_name": "branch30_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 41, - "vessel_length": 1.3933087944952214, - "vessel_name": "branch31_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_10" - }, - "vessel_id": 42, - "vessel_length": 1.3874296295510535, - "vessel_name": "branch32_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 43, - "vessel_length": 1.2720532346178934, - "vessel_name": "branch33_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 44, - "vessel_length": 0.07413814137318625, - "vessel_name": "branch34_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 45, - "vessel_length": 0.6835632147915793, - "vessel_name": "branch35_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 46, - "vessel_length": 0.6971206020209955, - "vessel_name": "branch35_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_11" - }, - "vessel_id": 47, - "vessel_length": 0.7512820508518326, - "vessel_name": "branch35_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_12" - }, - "vessel_id": 48, - "vessel_length": 3.057463759696044, - "vessel_name": "branch36_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 49, - "vessel_length": 0.9496079890052714, - "vessel_name": "branch37_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_13" - }, - "vessel_id": 50, - "vessel_length": 2.0045402443387177, - "vessel_name": "branch38_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 51, - "vessel_length": 0.7139818673389967, - "vessel_name": "branch39_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 52, - "vessel_length": 1.2098135849553884, - "vessel_name": "branch40_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 53, - "vessel_length": 0.21966625688935024, - "vessel_name": "branch41_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 54, - "vessel_length": 0.4635552949302021, - "vessel_name": "branch41_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_14" - }, - "vessel_id": 55, - "vessel_length": 1.235447647190862, - "vessel_name": "branch41_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 56, - "vessel_length": 0.541966306937773, - "vessel_name": "branch42_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_15" - }, - "vessel_id": 57, - "vessel_length": 1.6790196506715351, - "vessel_name": "branch43_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_16" - }, - "vessel_id": 58, - "vessel_length": 0.6101758693529614, - "vessel_name": "branch44_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 59, - "vessel_length": 1.5708710381014765, - "vessel_name": "branch45_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_17" - }, - "vessel_id": 60, - "vessel_length": 0.6994048703533935, - "vessel_name": "branch46_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_18" - }, - "vessel_id": 61, - "vessel_length": 0.8916502618658464, - "vessel_name": "branch47_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_19" - }, - "vessel_id": 62, - "vessel_length": 2.7463421709430342, - "vessel_name": "branch48_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 63, - "vessel_length": 0.4479144623319764, - "vessel_name": "branch49_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_20" - }, - "vessel_id": 64, - "vessel_length": 0.7112296941340819, - "vessel_name": "branch50_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 65, - "vessel_length": 0.42533483343073947, - "vessel_name": "branch51_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 66, - "vessel_length": 0.8114218236874672, - "vessel_name": "branch51_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_21" - }, - "vessel_id": 67, - "vessel_length": 0.3482852208627482, - "vessel_name": "branch51_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_22" - }, - "vessel_id": 68, - "vessel_length": 1.9747651599405993, - "vessel_name": "branch52_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_23" - }, - "vessel_id": 69, - "vessel_length": 0.7711519337457966, - "vessel_name": "branch53_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 70, - "vessel_length": 0.5744528633349233, - "vessel_name": "branch54_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 71, - "vessel_length": 0.5854170378707935, - "vessel_name": "branch55_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_24" - }, - "vessel_id": 72, - "vessel_length": 1.3856830790186532, - "vessel_name": "branch56_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 73, - "vessel_length": 0.13141398733204784, - "vessel_name": "branch57_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 74, - "vessel_length": 0.9837215570289305, - "vessel_name": "branch58_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_25" - }, - "vessel_id": 75, - "vessel_length": 1.6268724719976426, - "vessel_name": "branch59_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 76, - "vessel_length": 0.7189379658116499, - "vessel_name": "branch60_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 77, - "vessel_length": 0.6031613093730539, - "vessel_name": "branch60_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_26" - }, - "vessel_id": 78, - "vessel_length": 0.52456071048224, - "vessel_name": "branch60_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 79, - "vessel_length": 0.7484344961809235, - "vessel_name": "branch61_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 80, - "vessel_length": 0.7031144664254374, - "vessel_name": "branch61_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 81, - "vessel_length": 0.3611216104843036, - "vessel_name": "branch61_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_27" - }, - "vessel_id": 82, - "vessel_length": 2.578388894821237, - "vessel_name": "branch62_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 83, - "vessel_length": 1.01285639512377, - "vessel_name": "branch63_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 84, - "vessel_length": 0.808961964697254, - "vessel_name": "branch64_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 85, - "vessel_length": 1.4447132719150624, - "vessel_name": "branch64_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_28" - }, - "vessel_id": 86, - "vessel_length": 0.31510151228426275, - "vessel_name": "branch64_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 87, - "vessel_length": 1.2040510161756994, - "vessel_name": "branch65_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_29" - }, - "vessel_id": 88, - "vessel_length": 0.9188238112661333, - "vessel_name": "branch66_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_30" - }, - "vessel_id": 89, - "vessel_length": 1.295691750912049, - "vessel_name": "branch67_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_31" - }, - "vessel_id": 90, - "vessel_length": 2.2649380500474936, - "vessel_name": "branch68_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_32" - }, - "vessel_id": 91, - "vessel_length": 1.4445560024538837, - "vessel_name": "branch69_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 92, - "vessel_length": 0.16948463710753808, - "vessel_name": "branch70_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_33" - }, - "vessel_id": 93, - "vessel_length": 2.5753601577939262, - "vessel_name": "branch71_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 94, - "vessel_length": 0.6289952402012521, - "vessel_name": "branch72_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 95, - "vessel_length": 0.6109827240923978, - "vessel_name": "branch73_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_34" - }, - "vessel_id": 96, - "vessel_length": 3.3888546756436506, - "vessel_name": "branch74_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 97, - "vessel_length": 0.611214345422349, - "vessel_name": "branch75_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 98, - "vessel_length": 0.416201834518502, - "vessel_name": "branch75_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_35" - }, - "vessel_id": 99, - "vessel_length": 0.14191378404545324, - "vessel_name": "branch75_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 100, - "vessel_length": 1.4665070334686685, - "vessel_name": "branch76_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 101, - "vessel_length": 0.7221439726843699, - "vessel_name": "branch77_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 102, - "vessel_length": 0.5034373205326561, - "vessel_name": "branch77_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_36" - }, - "vessel_id": 103, - "vessel_length": 0.43643507588657493, - "vessel_name": "branch77_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_37" - }, - "vessel_id": 104, - "vessel_length": 1.8223285969227923, - "vessel_name": "branch78_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_38" - }, - "vessel_id": 105, - "vessel_length": 1.8964600844526125, - "vessel_name": "branch79_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_39" - }, - "vessel_id": 106, - "vessel_length": 1.9462368644775894, - "vessel_name": "branch80_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_40" - }, - "vessel_id": 107, - "vessel_length": 2.0691552767977677, - "vessel_name": "branch81_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_41" - }, - "vessel_id": 108, - "vessel_length": 1.5314877042581692, - "vessel_name": "branch82_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 109, - "vessel_length": 0.24582786567907236, - "vessel_name": "branch83_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 110, - "vessel_length": 0.5047355886889087, - "vessel_name": "branch83_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_42" - }, - "vessel_id": 111, - "vessel_length": 0.7446549997402947, - "vessel_name": "branch83_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_43" - }, - "vessel_id": 112, - "vessel_length": 1.603474169200975, - "vessel_name": "branch84_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 113, - "vessel_length": 2.032819460778153, - "vessel_name": "branch85_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 114, - "vessel_length": 0.23451239270361057, - "vessel_name": "branch86_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 115, - "vessel_length": 0.04826055052317403, - "vessel_name": "branch86_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 116, - "vessel_length": 1.259398809614766, - "vessel_name": "branch86_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 117, - "vessel_length": 0.8920212348651329, - "vessel_name": "branch87_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 118, - "vessel_length": 0.3987976977796542, - "vessel_name": "branch87_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_44" - }, - "vessel_id": 119, - "vessel_length": 0.22559277415133924, - "vessel_name": "branch87_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_45" - }, - "vessel_id": 120, - "vessel_length": 0.8204456954795754, - "vessel_name": "branch88_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_46" - }, - "vessel_id": 121, - "vessel_length": 0.693357974494855, - "vessel_name": "branch89_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 122, - "vessel_length": 1.5854845802238893, - "vessel_name": "branch90_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 123, - "vessel_length": 0.5280646035122366, - "vessel_name": "branch90_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_47" - }, - "vessel_id": 124, - "vessel_length": 0.30456850785941825, - "vessel_name": "branch90_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_48" - }, - "vessel_id": 125, - "vessel_length": 2.1841735530418993, - "vessel_name": "branch91_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 126, - "vessel_length": 0.0525308327091072, - "vessel_name": "branch92_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 127, - "vessel_length": 0.6006926738529617, - "vessel_name": "branch93_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 128, - "vessel_length": 0.3971979355160251, - "vessel_name": "branch93_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_49" - }, - "vessel_id": 129, - "vessel_length": 0.23405158835742126, - "vessel_name": "branch93_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 130, - "vessel_length": 1.7564678632179243, - "vessel_name": "branch94_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 131, - "vessel_length": 0.3506494197134689, - "vessel_name": "branch95_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 132, - "vessel_length": 0.751353956435578, - "vessel_name": "branch96_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 133, - "vessel_length": 0.29667593046399116, - "vessel_name": "branch96_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_50" - }, - "vessel_id": 134, - "vessel_length": 0.2838705083106226, - "vessel_name": "branch96_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_51" - }, - "vessel_id": 135, - "vessel_length": 2.209355069611248, - "vessel_name": "branch97_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_52" - }, - "vessel_id": 136, - "vessel_length": 1.4800327576573449, - "vessel_name": "branch98_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 137, - "vessel_length": 0.04959465207359494, - "vessel_name": "branch99_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_53" - }, - "vessel_id": 138, - "vessel_length": 2.190636927574853, - "vessel_name": "branch100_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_54" - }, - "vessel_id": 139, - "vessel_length": 1.8514224613548453, - "vessel_name": "branch101_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 140, - "vessel_length": 0.9763193461215273, - "vessel_name": "branch102_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 141, - "vessel_length": 0.9700779332887878, - "vessel_name": "branch102_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_55" - }, - "vessel_id": 142, - "vessel_length": 0.2654573437023177, - "vessel_name": "branch102_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_56" - }, - "vessel_id": 143, - "vessel_length": 1.1945502040546236, - "vessel_name": "branch103_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_57" - }, - "vessel_id": 144, - "vessel_length": 1.9310746610389045, - "vessel_name": "branch104_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 145, - "vessel_length": 1.8549457029011562, - "vessel_name": "branch105_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 146, - "vessel_length": 0.7825249302368995, - "vessel_name": "branch105_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_58" - }, - "vessel_id": 147, - "vessel_length": 0.22956112265344816, - "vessel_name": "branch105_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_59" - }, - "vessel_id": 148, - "vessel_length": 2.0704474220346873, - "vessel_name": "branch106_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 149, - "vessel_length": 0.28031060209411607, - "vessel_name": "branch107_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_60" - }, - "vessel_id": 150, - "vessel_length": 1.8429878931971733, - "vessel_name": "branch108_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 151, - "vessel_length": 0.0186622778417643, - "vessel_name": "branch109_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 152, - "vessel_length": 1.1462608351629446, - "vessel_name": "branch109_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_61" - }, - "vessel_id": 153, - "vessel_length": 0.3377410934055567, - "vessel_name": "branch109_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_62" - }, - "vessel_id": 154, - "vessel_length": 1.5473329584349158, - "vessel_name": "branch110_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_63" - }, - "vessel_id": 155, - "vessel_length": 1.3860209873354536, - "vessel_name": "branch111_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 156, - "vessel_length": 0.5165824403623721, - "vessel_name": "branch112_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 157, - "vessel_length": 0.770452476158731, - "vessel_name": "branch113_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_64" - }, - "vessel_id": 158, - "vessel_length": 1.6470438692325127, - "vessel_name": "branch114_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 159, - "vessel_length": 0.22776071817940843, - "vessel_name": "branch115_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 160, - "vessel_length": 0.21714442030142875, - "vessel_name": "branch115_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_65" - }, - "vessel_id": 161, - "vessel_length": 0.8433519629875749, - "vessel_name": "branch115_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_66" - }, - "vessel_id": 162, - "vessel_length": 1.831647199279749, - "vessel_name": "branch116_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_67" - }, - "vessel_id": 163, - "vessel_length": 0.8879559682870087, - "vessel_name": "branch117_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 164, - "vessel_length": 0.96520618026765, - "vessel_name": "branch118_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 165, - "vessel_length": 0.6703950785660061, - "vessel_name": "branch119_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 166, - "vessel_length": 1.2038473751456866, - "vessel_name": "branch119_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_68" - }, - "vessel_id": 167, - "vessel_length": 0.7224027740166741, - "vessel_name": "branch119_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 168, - "vessel_length": 2.2416747602530096, - "vessel_name": "branch120_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_69" - }, - "vessel_id": 169, - "vessel_length": 1.3192362301447014, - "vessel_name": "branch121_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_70" - }, - "vessel_id": 170, - "vessel_length": 1.0517739141509332, - "vessel_name": "branch122_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 171, - "vessel_length": 0.2908085645766913, - "vessel_name": "branch123_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 172, - "vessel_length": 1.424012535465686, - "vessel_name": "branch123_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_71" - }, - "vessel_id": 173, - "vessel_length": 0.2332756260216596, - "vessel_name": "branch123_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 174, - "vessel_length": 0.08933625535225823, - "vessel_name": "branch124_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 175, - "vessel_length": 0.397648710425473, - "vessel_name": "branch124_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 176, - "vessel_length": 0.8945602031072306, - "vessel_name": "branch124_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_72" - }, - "vessel_id": 177, - "vessel_length": 1.1423383551685218, - "vessel_name": "branch125_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_73" - }, - "vessel_id": 178, - "vessel_length": 2.2285190627274383, - "vessel_name": "branch126_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 179, - "vessel_length": 1.6212067636049716, - "vessel_name": "branch127_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 180, - "vessel_length": 1.282198364801577, - "vessel_name": "branch127_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_74" - }, - "vessel_id": 181, - "vessel_length": 0.1940528076665006, - "vessel_name": "branch127_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_75" - }, - "vessel_id": 182, - "vessel_length": 0.5607507398688213, - "vessel_name": "branch128_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_76" - }, - "vessel_id": 183, - "vessel_length": 3.9779415762156565, - "vessel_name": "branch129_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_77" - }, - "vessel_id": 184, - "vessel_length": 1.4286105395948658, - "vessel_name": "branch130_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_78" - }, - "vessel_id": 185, - "vessel_length": 1.9977889411535166, - "vessel_name": "branch131_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 186, - "vessel_length": 0.5617562776124612, - "vessel_name": "branch132_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 187, - "vessel_length": 0.42672901571828004, - "vessel_name": "branch132_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_79" - }, - "vessel_id": 188, - "vessel_length": 0.8735242288475483, - "vessel_name": "branch132_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 189, - "vessel_length": 0.7120827001719353, - "vessel_name": "branch133_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 190, - "vessel_length": 1.0077097131491346, - "vessel_name": "branch133_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_80" - }, - "vessel_id": 191, - "vessel_length": 0.4917976064181432, - "vessel_name": "branch133_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 192, - "vessel_length": 1.262636440146434, - "vessel_name": "branch134_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 193, - "vessel_length": 0.46392895638658593, - "vessel_name": "branch134_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_81" - }, - "vessel_id": 194, - "vessel_length": 0.4552562346352282, - "vessel_name": "branch134_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_82" - }, - "vessel_id": 195, - "vessel_length": 1.009448557146865, - "vessel_name": "branch135_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_83" - }, - "vessel_id": 196, - "vessel_length": 0.7885756149364074, - "vessel_name": "branch136_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_84" - }, - "vessel_id": 197, - "vessel_length": 2.2756488074671433, - "vessel_name": "branch137_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 198, - "vessel_length": 0.2760137505564742, - "vessel_name": "branch138_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 199, - "vessel_length": 1.3368910578317676, - "vessel_name": "branch138_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_85" - }, - "vessel_id": 200, - "vessel_length": 1.2002256069240955, - "vessel_name": "branch138_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 201, - "vessel_length": 1.7693205145222453, - "vessel_name": "branch139_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 202, - "vessel_length": 1.06214931132661, - "vessel_name": "branch139_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_86" - }, - "vessel_id": 203, - "vessel_length": 0.48303953446564885, - "vessel_name": "branch139_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_87" - }, - "vessel_id": 204, - "vessel_length": 0.843109508708837, - "vessel_name": "branch140_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_88" - }, - "vessel_id": 205, - "vessel_length": 2.0603411078869778, - "vessel_name": "branch141_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 206, - "vessel_length": 0.6602430182165941, - "vessel_name": "branch142_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 207, - "vessel_length": 1.585889694767858, - "vessel_name": "branch142_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_89" - }, - "vessel_id": 208, - "vessel_length": 0.09433776315388086, - "vessel_name": "branch142_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_90" - }, - "vessel_id": 209, - "vessel_length": 2.1364480183130805, - "vessel_name": "branch143_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_91" - }, - "vessel_id": 210, - "vessel_length": 1.8509017198379139, - "vessel_name": "branch144_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_92" - }, - "vessel_id": 211, - "vessel_length": 2.022718739860449, - "vessel_name": "branch145_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 212, - "vessel_length": 0.3284897109005369, - "vessel_name": "branch146_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 213, - "vessel_length": 1.512182409452769, - "vessel_name": "branch146_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_93" - }, - "vessel_id": 214, - "vessel_length": 0.487915826971711, - "vessel_name": "branch146_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - } - ], - "calibration_parameters": { - "tolerance_gradient": 1e-05, - "tolerance_increment": 1e-09, - "maximum_iterations": 20, - "calibrate_stenosis_coefficient": true, - "set_capacitance_to_zero": false + { + "bc_name": "RESISTANCE_0", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5498.7352908831 + } }, - "y": { - "flow:branch0_seg0:J0": [ - 74.949190654334, - 96.36050980530744, - 119.73201774152513, - 143.93524042078025, - 167.77059384078947, - 190.19379139976456, - 210.43239482201693, - 228.06402436909718, - 242.9266299175218, - 255.15219259807432, - 264.9433414277329, - 272.5415557666525, - 278.1194585323114, - 281.7601369710557, - 283.4679879051204, - 283.2350006049449, - 281.0789456385515, - 277.10698146456394, - 271.54131372121486, - 264.6462460659405, - 256.7664420404351, - 248.19504839514926, - 239.17432585156752, - 229.87180888646304, - 220.37707774415142, - 210.76043224030906, - 201.10005964228807, - 191.52199698435246, - 182.19678952708583, - 173.32090556715787, - 165.03686434081447, - 157.3930454761719, - 150.27069649390367, - 143.37571924739066, - 136.27197657726956, - 128.46626279175135, - 119.50016249307684, - 109.09308235992572, - 97.20174912447963, - 84.08031104474055, - 70.2303834640588, - 56.34497863998754, - 43.155103000642626, - 31.333682546305095, - 21.343626816718967, - 13.457612258303305, - 7.644899589355277, - 3.735320529608675, - 1.4364284384605837, - 0.41426827092262036, - 0.42801271560558546, - 1.2708635306743246, - 2.8353109230270297, - 5.040029054839122, - 7.773692235814003, - 10.88331681487806, - 14.132563324356031, - 17.238147764778468, - 19.91470026149908, - 21.932161153053507, - 23.162469274592244, - 23.617180550477133, - 23.421654223519692, - 22.780282709367093, - 21.914590692960726, - 20.997467688748152, - 20.109503375749984, - 19.23226546747224, - 18.270525417192964, - 17.100404957507696, - 15.635293103528923, - 13.857434140751206, - 11.856409606416584, - 9.793151967731596, - 7.8699442901119685, - 6.260719930670959, - 5.0752758320827205, - 4.30884890124514, - 3.874000989838576, - 3.623639600590499, - 3.4125050402954775, - 3.1566432387130194, - 2.864530848047883, - 2.6364760087217323, - 2.6276796264207185, - 2.9877959855672755, - 3.797204035389653, - 5.024366033245368, - 6.528722987867772, - 8.111816576738644, - 9.600210952657738, - 10.957232983526128, - 12.365411501975567, - 14.270481449761494, - 17.348419874119212, - 22.42725877280414, - 30.271023633149085, - 41.55504418316319, - 56.487407146390694, - 74.949190654334 - ], - "pressure:branch0_seg0:J0": [ - 10755.625614737077, - 12345.299023589774, - 13919.032506671263, - 15395.187937566676, - 16712.431426370553, - 17825.545666702554, - 18721.47736406064, - 19419.826411025388, - 19948.31597072094, - 20326.734760305364, - 20593.065073811995, - 20754.77579265234, - 20808.43131126481, - 20762.94489868987, - 20597.516209529444, - 20323.007801610216, - 19943.93750283233, - 19469.83165849265, - 18942.436750718007, - 18369.438354691145, - 17780.81171996804, - 17191.26642419597, - 16601.773554741972, - 16017.088596788853, - 15433.853288103623, - 14854.048434251854, - 14286.090213899553, - 13742.485392175695, - 13237.455410562816, - 12783.24338072445, - 12380.244579072627, - 12014.273065442356, - 11659.7940289539, - 11277.768788356532, - 10826.592042759905, - 10274.761300058683, - 9605.526928453743, - 8825.284628340636, - 7960.170921435423, - 7067.997766160997, - 6197.864888613503, - 5413.67887561287, - 4759.281140516517, - 4263.964387176556, - 3919.927417898156, - 3730.329838830119, - 3653.9389359535394, - 3659.595938607575, - 3730.0885001823794, - 3833.4486895234986, - 3969.7085320444144, - 4134.966380444776, - 4324.7567657281415, - 4542.033857750696, - 4772.8875549422655, - 5000.034370921352, - 5204.262689189676, - 5362.43948104414, - 5460.489363009703, - 5493.89234008019, - 5470.973606182047, - 5404.48744568941, - 5319.821592900325, - 5234.16787990735, - 5158.784427901308, - 5099.408871383753, - 5047.839891645779, - 4991.555968403971, - 4918.284527035243, - 4818.883399461685, - 4695.720242217003, - 4555.5853767524195, - 4416.539696481615, - 4296.313844118488, - 4208.288172501538, - 4157.301084358452, - 4141.17652839162, - 4146.536553215931, - 4156.9412509054855, - 4161.382856309344, - 4152.583663929789, - 4133.969750082288, - 4118.093476501715, - 4120.598513064396, - 4154.59812159371, - 4226.244677080121, - 4328.642838251985, - 4448.572379276062, - 4563.5325005803215, - 4659.062890037521, - 4732.598950895489, - 4801.379134116661, - 4904.804231104749, - 5100.434385351346, - 5452.67673941679, - 6027.677343120749, - 6844.701756767903, - 7940.525051152539, - 9266.607319308787, - 10755.625614737077 - ], - "flow:J0:branch1_seg0": [ - 40.07411666272474, - 51.51306553586831, - 63.937586743912554, - 76.71866867277983, - 89.20037388634128, - 100.81856802958772, - 111.16787929520304, - 120.03625852352239, - 127.36428866268847, - 133.2454287375936, - 137.81921709483296, - 141.232860183314, - 143.59797793665402, - 144.9689996114876, - 145.35244623673006, - 144.75033138681545, - 143.16959353604008, - 140.6738100828934, - 137.38308168381127, - 133.4425724275965, - 129.04029192502537, - 124.33273519521678, - 119.44873870582839, - 114.47278622846932, - 109.44666097318392, - 104.40064085116785, - 99.36991617465914, - 94.41631561905287, - 89.62742401483443, - 85.10430570221872, - 80.92027760186944, - 77.09535941132204, - 73.55909474904503, - 70.14495231178404, - 66.61061068346925, - 62.6833046525799, - 58.11544341665748, - 52.75586507022233, - 46.59065089001677, - 39.76718169048796, - 32.569050638787736, - 25.38212134695376, - 18.609508247870522, - 12.614814242609452, - 7.644529918947298, - 3.834500588701631, - 1.1516413092067421, - -0.510396294564862, - -1.3287038548529244, - -1.4936524158502968, - -1.1456805633644076, - -0.3994020701150961, - 0.6867290722233426, - 2.0702176774656045, - 3.694885801985874, - 5.4803361020090975, - 7.302076974286852, - 9.009501569720012, - 10.451868667975322, - 11.509380978490253, - 12.119847477023393, - 12.296571865032934, - 12.11748235989226, - 11.700058854221375, - 11.17155676219654, - 10.629097065470946, - 10.117415274187081, - 9.62516561317484, - 9.097893089058683, - 8.465787678410889, - 7.6796082632991665, - 6.729358356112154, - 5.664397011285738, - 4.573617685723953, - 3.567943256739418, - 2.7425118693553516, - 2.1548697961583505, - 1.8000041897062666, - 1.6261789273334406, - 1.5494242596498577, - 1.4877211498680303, - 1.393965138812575, - 1.2728416243119829, - 1.1803648281628543, - 1.2028523359465362, - 1.4230078331931593, - 1.8844322424565163, - 2.56897922102823, - 3.39710256426169, - 4.258660645669681, - 5.057361018619025, - 5.773163764508877, - 6.507455125985275, - 7.505069446170286, - 9.13836705623067, - 11.855449194574005, - 16.071942405198648, - 22.143887267303796, - 30.17125168926293, - 40.07411666272474 - ], - "pressure:J0:branch1_seg0": [ - 10755.625614737077, - 12345.299023589774, - 13919.032506671263, - 15395.187937566676, - 16712.431426370553, - 17825.545666702554, - 18721.47736406064, - 19419.826411025388, - 19948.31597072094, - 20326.734760305364, - 20593.065073811995, - 20754.77579265234, - 20808.43131126481, - 20762.94489868987, - 20597.516209529444, - 20323.007801610216, - 19943.93750283233, - 19469.83165849265, - 18942.436750718007, - 18369.438354691145, - 17780.81171996804, - 17191.26642419597, - 16601.773554741972, - 16017.088596788853, - 15433.853288103623, - 14854.048434251854, - 14286.090213899553, - 13742.485392175695, - 13237.455410562816, - 12783.24338072445, - 12380.244579072627, - 12014.273065442356, - 11659.7940289539, - 11277.768788356532, - 10826.592042759905, - 10274.761300058683, - 9605.526928453743, - 8825.284628340636, - 7960.170921435423, - 7067.997766160997, - 6197.864888613503, - 5413.67887561287, - 4759.281140516517, - 4263.964387176556, - 3919.927417898156, - 3730.329838830119, - 3653.9389359535394, - 3659.595938607575, - 3730.0885001823794, - 3833.4486895234986, - 3969.7085320444144, - 4134.966380444776, - 4324.7567657281415, - 4542.033857750696, - 4772.8875549422655, - 5000.034370921352, - 5204.262689189676, - 5362.43948104414, - 5460.489363009703, - 5493.89234008019, - 5470.973606182047, - 5404.48744568941, - 5319.821592900325, - 5234.16787990735, - 5158.784427901308, - 5099.408871383753, - 5047.839891645779, - 4991.555968403971, - 4918.284527035243, - 4818.883399461685, - 4695.720242217003, - 4555.5853767524195, - 4416.539696481615, - 4296.313844118488, - 4208.288172501538, - 4157.301084358452, - 4141.17652839162, - 4146.536553215931, - 4156.9412509054855, - 4161.382856309344, - 4152.583663929789, - 4133.969750082288, - 4118.093476501715, - 4120.598513064396, - 4154.59812159371, - 4226.244677080121, - 4328.642838251985, - 4448.572379276062, - 4563.5325005803215, - 4659.062890037521, - 4732.598950895489, - 4801.379134116661, - 4904.804231104749, - 5100.434385351346, - 5452.67673941679, - 6027.677343120749, - 6844.701756767903, - 7940.525051152539, - 9266.607319308787, - 10755.625614737077 - ], - "flow:J0:branch4_seg0": [ - 34.875073991609256, - 44.84744426943913, - 55.794430997612565, - 67.2165717480004, - 78.57021995444818, - 89.3752233701769, - 99.2645155268139, - 108.0277658455748, - 115.5623412548334, - 121.90676386048065, - 127.12412433289992, - 131.3086955833385, - 134.52148059565732, - 136.7911373595682, - 138.11554166839036, - 138.4846692181294, - 137.90935210251146, - 136.43317138167055, - 134.1582320374036, - 131.203673638344, - 127.7261501154098, - 123.86231319993247, - 119.72558714573915, - 115.39902265799373, - 110.93041677096743, - 106.35979138914122, - 101.73014346762893, - 97.10568136529963, - 92.56936551225138, - 88.21659986493914, - 84.116586738945, - 80.29768606484981, - 76.71160174485863, - 73.23076693560665, - 69.66136589380037, - 65.78295813917146, - 61.38471907641938, - 56.33721728970338, - 50.61109823446288, - 44.313129354252595, - 37.66133282527106, - 30.962857293033778, - 24.545594752772104, - 18.718868303695643, - 13.699096897771671, - 9.623111669601673, - 6.493258280148534, - 4.245716824173537, - 2.765132293313508, - 1.9079206867729168, - 1.5736932789699931, - 1.6702656007894205, - 2.1485818508036876, - 2.9698113773735186, - 4.078806433828131, - 5.402980712868965, - 6.830486350069177, - 8.228646195058463, - 9.46283159352376, - 10.422780174563256, - 11.042621797568847, - 11.320608685444205, - 11.304171863627426, - 11.08022385514572, - 10.743033930764184, - 10.368370623277201, - 9.992088101562908, - 9.607099854297399, - 9.172632328134284, - 8.634617279096805, - 7.9556848402297575, - 7.1280757846390514, - 6.192012595130848, - 5.219534282007645, - 4.302001033372551, - 3.5182080613156073, - 2.9204060359243686, - 2.5088447115388735, - 2.247822062505136, - 2.0742153409406403, - 1.9247838904274477, - 1.7626780999004446, - 1.5916892237359006, - 1.456111180558878, - 1.424827290474182, - 1.5647881523741165, - 1.9127717929331367, - 2.455386812217138, - 3.131620423606082, - 3.8531559310689634, - 4.542849934038713, - 5.18406921901725, - 5.85795637599029, - 6.765412003591207, - 8.21005281788854, - 10.571809578230132, - 14.199081227950433, - 19.4111569158594, - 26.316155457127763, - 34.875073991609256 - ], - "pressure:J0:branch4_seg0": [ - 10755.625614737077, - 12345.299023589774, - 13919.032506671263, - 15395.187937566676, - 16712.431426370553, - 17825.545666702554, - 18721.47736406064, - 19419.826411025388, - 19948.31597072094, - 20326.734760305364, - 20593.065073811995, - 20754.77579265234, - 20808.43131126481, - 20762.94489868987, - 20597.516209529444, - 20323.007801610216, - 19943.93750283233, - 19469.83165849265, - 18942.436750718007, - 18369.438354691145, - 17780.81171996804, - 17191.26642419597, - 16601.773554741972, - 16017.088596788853, - 15433.853288103623, - 14854.048434251854, - 14286.090213899553, - 13742.485392175695, - 13237.455410562816, - 12783.24338072445, - 12380.244579072627, - 12014.273065442356, - 11659.7940289539, - 11277.768788356532, - 10826.592042759905, - 10274.761300058683, - 9605.526928453743, - 8825.284628340636, - 7960.170921435423, - 7067.997766160997, - 6197.864888613503, - 5413.67887561287, - 4759.281140516517, - 4263.964387176556, - 3919.927417898156, - 3730.329838830119, - 3653.9389359535394, - 3659.595938607575, - 3730.0885001823794, - 3833.4486895234986, - 3969.7085320444144, - 4134.966380444776, - 4324.7567657281415, - 4542.033857750696, - 4772.8875549422655, - 5000.034370921352, - 5204.262689189676, - 5362.43948104414, - 5460.489363009703, - 5493.89234008019, - 5470.973606182047, - 5404.48744568941, - 5319.821592900325, - 5234.16787990735, - 5158.784427901308, - 5099.408871383753, - 5047.839891645779, - 4991.555968403971, - 4918.284527035243, - 4818.883399461685, - 4695.720242217003, - 4555.5853767524195, - 4416.539696481615, - 4296.313844118488, - 4208.288172501538, - 4157.301084358452, - 4141.17652839162, - 4146.536553215931, - 4156.9412509054855, - 4161.382856309344, - 4152.583663929789, - 4133.969750082288, - 4118.093476501715, - 4120.598513064396, - 4154.59812159371, - 4226.244677080121, - 4328.642838251985, - 4448.572379276062, - 4563.5325005803215, - 4659.062890037521, - 4732.598950895489, - 4801.379134116661, - 4904.804231104749, - 5100.434385351346, - 5452.67673941679, - 6027.677343120749, - 6844.701756767903, - 7940.525051152539, - 9266.607319308787, - 10755.625614737077 - ], - "flow:branch1_seg2:J1": [ - 39.93902314419877, - 51.373178400635695, - 63.79982518723092, - 76.59226467443868, - 89.08969336527267, - 100.72627526803615, - 111.09392174426048, - 119.98121423999707, - 127.32336319452622, - 133.2135325770311, - 137.80175047487725, - 141.22035855292916, - 143.59747378148614, - 144.97755434612964, - 145.36946927936458, - 144.78061800481876, - 143.20466120634222, - 140.71804309871482, - 137.4313006334015, - 133.49318709126695, - 129.0925769124922, - 124.38498617349424, - 119.50087882013679, - 114.52488364177033, - 109.49869400394167, - 104.45214308350614, - 99.42018669908208, - 94.46368067123687, - 89.67118902735488, - 85.14302520881986, - 80.95515513878202, - 77.12718503759008, - 73.5919086345405, - 70.18124879233588, - 66.65490639970552, - 62.73647625728109, - 58.18132026461627, - 52.82783377220077, - 46.67023604551959, - 39.8465304051499, - 32.64368046685318, - 25.447384331545187, - 18.663996909203018, - 12.653398985622411, - 7.671529290560568, - 3.849308096431359, - 1.1564069763463825, - -0.5113806484741821, - -1.3350076132935609, - -1.5029633695094682, - -1.158190508145884, - -0.4145077248471395, - 0.6689223718282789, - 2.0506198568320095, - 3.6741684218039743, - 5.46061507689024, - 7.285377390163343, - 8.997575086283296, - 10.445223773435464, - 11.50908687186897, - 12.123820421364105, - 12.302716833473642, - 12.125835623087228, - 11.706952238540826, - 11.177489458661269, - 10.634093352561335, - 10.122047695677132, - 9.630768220283885, - 9.10519621876832, - 8.475644420153776, - 7.691045545542974, - 6.7417558214337525, - 5.676179685430512, - 4.583480832292487, - 3.574407091664746, - 2.74618526922463, - 2.15560656105957, - 1.799426384205782, - 1.6254198672971232, - 1.5497671569617681, - 1.48894723154884, - 1.3956671270832794, - 1.2737938055575218, - 1.1789148199945747, - 1.1985346268299504, - 1.4150322706684133, - 1.874398150020772, - 2.558557515621416, - 3.3873264149325033, - 4.251036128390733, - 5.051418904518249, - 5.76613732757878, - 6.4956034470544655, - 7.482210095249371, - 9.101598467160613, - 11.795597016990262, - 15.992760430493455, - 22.040319448675557, - 30.04822582820656, - 39.93902314419877 - ], - "pressure:branch1_seg2:J1": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch2_seg0": [ - 1.639143759383196, - 2.1117017679837966, - 2.6273042779576645, - 3.159476398780271, - 3.68079000758662, - 4.167393145845534, - 4.601772980531102, - 4.974394015174677, - 5.282458030708007, - 5.529513978720104, - 5.721667352206519, - 5.864771701154965, - 5.964164160277111, - 6.022110350166485, - 6.039125970270064, - 6.015508395674203, - 5.951052909149523, - 5.8485516507425315, - 5.712717619602981, - 5.54956648622511, - 5.366707712296418, - 5.17090049334543, - 4.967599278689852, - 4.76044155862568, - 4.5513183677440905, - 4.3414360665354055, - 4.1322271638262755, - 3.926123924042953, - 3.726695605609001, - 3.538049996185528, - 3.3634342215160578, - 3.2037887509615466, - 3.0565108305588162, - 2.914924704340276, - 2.7691494682553754, - 2.607720939836925, - 2.4203613296880544, - 2.2000773423963627, - 1.9461455017878206, - 1.6640336794307693, - 1.3653138592402232, - 1.06581370600005, - 0.7825358764513842, - 0.5307413160963315, - 0.3212375907708697, - 0.1599163814984836, - 0.04613356302747182, - -0.02465533944453045, - -0.059703281533959957, - -0.0669021850413633, - -0.05258331770671021, - -0.021429650903483147, - 0.023780176603183628, - 0.08123053383197053, - 0.14877905633629696, - 0.2231251718060022, - 0.2992435290410639, - 0.37097639509116237, - 0.4319861899846998, - 0.4772065345965587, - 0.5038005507723354, - 0.5121160169152862, - 0.5053167180872078, - 0.48810123304756636, - 0.46591360712454777, - 0.44293639667459744, - 0.4212351342414208, - 0.40051901510304866, - 0.37861697894846796, - 0.35264083371443866, - 0.320405947801937, - 0.2813626656177459, - 0.23730955675638357, - 0.19189417730250843, - 0.149670915866789, - 0.1147296986484344, - 0.0895579133128145, - 0.07424612865130953, - 0.06670590736682311, - 0.063504969790909, - 0.06119058552275947, - 0.057631330658921696, - 0.052823060360036894, - 0.04893882552180579, - 0.04953698847325278, - 0.05808622490081634, - 0.0766140089910781, - 0.10456541197615299, - 0.1387817890329082, - 0.17476693902516446, - 0.20839153049582224, - 0.23850582904378856, - 0.2689404522920413, - 0.3094131860570455, - 0.37520952452476614, - 0.4847131228650475, - 0.6556543586479797, - 0.9027104004589821, - 1.231696830768955, - 1.639143759383196 - ], - "pressure:J1:branch2_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch29_seg0": [ - 10.681562566257742, - 13.77483936663529, - 17.164101229816637, - 20.68348785880252, - 24.15426127142766, - 27.419367508126932, - 30.360990413785505, - 32.91259104000491, - 35.04773189470721, - 36.78387061530147, - 38.155843370116976, - 39.19731285346708, - 39.94224240020145, - 40.40357130396221, - 40.58553704169915, - 40.490588684196574, - 40.11774803749684, - 39.48693221999439, - 38.62676300579497, - 37.57722365633159, - 36.38886947804654, - 35.10490163605375, - 33.76239635035624, - 32.38646511118507, - 30.990749625987565, - 29.585021631222723, - 28.179722395873984, - 26.791618496182164, - 25.444683011156016, - 24.166279222613934, - 22.978014680111567, - 21.887162355950778, - 20.87825789392981, - 19.908896247918864, - 18.916380158376263, - 17.826870006588393, - 16.572997267424324, - 15.107921941328842, - 13.425090762055692, - 11.556116733833093, - 9.573745493874302, - 7.578618914880831, - 5.679838641931592, - 3.976490507954333, - 2.5422789137799398, - 1.417794558340504, - 0.6015375344371503, - 0.07013102916923371, - -0.22169059122250873, - -0.3231218270504769, - -0.2733553295140019, - -0.10439318887039095, - 0.16581375003233062, - 0.5243948515727823, - 0.955301632551389, - 1.4369046222978383, - 1.935704172032059, - 2.4109821692184794, - 2.820977086568359, - 3.1318877626440678, - 3.3236195422163095, - 3.3969387495147227, - 3.370549606185758, - 3.273441005169044, - 3.140263688862424, - 2.9976634986195134, - 2.8594765902276436, - 2.7248378164098717, - 2.5806636687204647, - 2.409179123420515, - 2.196537338418139, - 1.9392754338215716, - 1.6489371041139214, - 1.3482952716851404, - 1.0665592958920203, - 0.8302997878789632, - 0.6560825694448236, - 0.5449987865153318, - 0.4848437866250668, - 0.45433258587080283, - 0.43133475197917404, - 0.40236291286152537, - 0.3670158666128374, - 0.33866583514728854, - 0.33977130886250334, - 0.3923544095483907, - 0.5097506668862452, - 0.6887370817731168, - 0.909664158885442, - 1.1440559017658471, - 1.3653336575298982, - 1.5656783507597654, - 1.7689746678233629, - 2.036834278041928, - 2.467266204277183, - 3.1779816098286853, - 4.286309964868184, - 5.889529635790618, - 8.025522069161653, - 10.681562566257742 - ], - "pressure:J1:branch29_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch37_seg0": [ - 2.4390888185126647, - 3.148611356836727, - 3.9249469594669906, - 4.728967694450939, - 5.518831510130013, - 6.257997584713159, - 6.919462166601341, - 7.488366934839278, - 7.959511265471161, - 8.338092286920324, - 8.633123172301723, - 8.853447708891064, - 9.007500239558741, - 9.098621781470593, - 9.127887334380445, - 9.095629275879851, - 9.001485229368166, - 8.849752815215535, - 8.646879391117267, - 8.402115921927491, - 8.127112434707577, - 7.831875304692843, - 7.524957850145392, - 7.211994275113951, - 6.8959031020885035, - 6.578610673107918, - 6.262176276201582, - 5.9501824487102315, - 5.647963512681162, - 5.361753879724086, - 5.096526856567135, - 4.854019802730395, - 4.6306243707193815, - 4.416489252562077, - 4.1969568508398, - 3.9547542950256145, - 3.6740709425671283, - 3.344013804448472, - 2.9630352392052113, - 2.5386635989836175, - 2.0880863328344863, - 1.6349973372326856, - 1.2050184551235108, - 0.8213616357937693, - 0.5011384021175994, - 0.25343814682602794, - 0.0775086805967321, - -0.03268315879244891, - -0.0883470615116199, - -0.10136534652129256, - -0.08126598034441851, - -0.03561071682976833, - 0.03156386569214661, - 0.11745582412699979, - 0.21871352707825978, - 0.33064067670246633, - 0.4457218375738743, - 0.5546941534569496, - 0.6479719386798523, - 0.717765967959567, - 0.7595055205029543, - 0.7735213123185891, - 0.7643388257757753, - 0.738979561357262, - 0.7057364217078778, - 0.6710008601352567, - 0.6380978347131168, - 0.6068006797496319, - 0.5739308752725425, - 0.5351465880398208, - 0.4869979166076151, - 0.4285160611607418, - 0.36228654672049465, - 0.29361321881137903, - 0.22937979557243365, - 0.17587599855995592, - 0.13703353089003645, - 0.1131095784156001, - 0.10119952504774872, - 0.09616392273488227, - 0.09267333900697479, - 0.08741092233601545, - 0.08018057535638644, - 0.07409786777853995, - 0.07448187913851709, - 0.08662325723988946, - 0.11378248255408158, - 0.15531004683490188, - 0.20664651189982136, - 0.2610412795201204, - 0.31210398419488045, - 0.35777125910434293, - 0.4033690679945219, - 0.4630912789614583, - 0.5596678233761663, - 0.7205142242769604, - 0.9730587170777272, - 1.339799394492853, - 1.829520223154029, - 2.4390888185126647 - ], - "pressure:J1:branch37_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch45_seg0": [ - 1.837881272372046, - 2.3538784042402727, - 2.907646721578084, - 3.470479093090502, - 4.012820727807813, - 4.510486734800407, - 4.947151938550472, - 5.315718633365378, - 5.61521799022122, - 5.85164552909906, - 6.032744607827565, - 6.164579588302732, - 6.252814354242465, - 6.2988239789851646, - 6.302458912065402, - 6.263864880775068, - 6.18260687243718, - 6.062528426047342, - 5.908914839640184, - 5.7286855848224505, - 5.530563490390261, - 5.3211956865256145, - 5.106039170527307, - 4.888326915934788, - 4.669358685583457, - 4.450146259981213, - 4.232118423171744, - 4.018077903252736, - 3.812131664589772, - 3.618826081844208, - 3.441318383041212, - 3.279988922112774, - 3.131063356640645, - 2.9861327157598776, - 2.833802485291675, - 2.661437920045325, - 2.458409214071398, - 2.21837545349205, - 1.9425091233745684, - 1.6384897995814305, - 1.3205297141526697, - 1.006835624585283, - 0.7157176964004348, - 0.4626984339953742, - 0.2580454144208275, - 0.10613096206183155, - 0.0038211313210183427, - -0.054572821417855785, - -0.0780415691470746, - -0.07523616638227809, - -0.052165516332591394, - -0.013535427430149837, - 0.038667857128191645, - 0.10297519346850617, - 0.17694099887592143, - 0.2570112337723317, - 0.33737957452133144, - 0.4111503645651698, - 0.4716132812168, - 0.5138056802502794, - 0.535400015508013, - 0.5377629508490631, - 0.5252055753385914, - 0.5032347532488899, - 0.47790574326792756, - 0.4532872895945492, - 0.43089565924883716, - 0.4096758153465142, - 0.3866694654914346, - 0.3585199233907843, - 0.3230228786394166, - 0.28008079866174135, - 0.23236948058902682, - 0.1842701117735651, - 0.14095628173472083, - 0.10667674244801566, - 0.08360131203775084, - 0.07099137620401659, - 0.06600280779279427, - 0.06452215573946425, - 0.06273937567640199, - 0.058820843974643024, - 0.05340571366585946, - 0.0494813001802354, - 0.051303623323999153, - 0.0625863872982417, - 0.08509103645427149, - 0.11746389455037817, - 0.15552243550602218, - 0.19402404267838788, - 0.22860499220426916, - 0.2588385686681025, - 0.29022587788772497, - 0.334803014238951, - 0.41045514728608495, - 0.5374421474509173, - 0.734688847943835, - 1.0167771189195929, - 1.3862843726180107, - 1.837881272372046 - ], - "pressure:J1:branch45_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch54_seg0": [ - 3.7130203967692017, - 4.787714114061026, - 5.9598481331024, - 7.170034991656424, - 8.355000246772027, - 9.460147268475094, - 10.445690827345743, - 11.290523671183905, - 11.987686265697917, - 12.546078918439997, - 12.979871158864432, - 13.302378925649583, - 13.526400666077219, - 13.656548179653292, - 13.694181831696765, - 13.63971578307081, - 13.492453942982337, - 13.259177649914362, - 12.949757574902911, - 12.578312445401004, - 12.16258221207175, - 11.717508687263408, - 11.255800607357674, - 10.78568922860474, - 10.311277670294691, - 9.835313340454176, - 9.360843045199035, - 8.893326287989716, - 8.44091083143309, - 8.013060635061146, - 7.617176656634579, - 7.255636806203461, - 6.922615700857104, - 6.602754764035215, - 6.273590722387854, - 5.908878829522938, - 5.484902954653334, - 4.985609584093295, - 4.409458137785476, - 3.768528505219263, - 3.0895174754657604, - 2.4087106347205913, - 1.7648913749013815, - 1.1928148147165945, - 0.7177846256761682, - 0.3527444734864223, - 0.09568141188743949, - -0.06303994094936974, - -0.14078646629899216, - -0.15564055519262956, - -0.12175998929318932, - -0.0503740441594127, - 0.05276996399699813, - 0.18365797612063586, - 0.3372341788274844, - 0.5064096024118372, - 0.6796792104854963, - 0.8429553443279693, - 0.9817760385752553, - 1.0845700846872441, - 1.1446928380679169, - 1.1630630669062725, - 1.146898271054709, - 1.1069999426111399, - 1.0560093432248285, - 1.0034455765067123, - 0.954059674149335, - 0.9072084224222469, - 0.8578256189087954, - 0.7992255582606812, - 0.7262318247187067, - 0.6375612274677187, - 0.5373881907418148, - 0.43393740560785987, - 0.337729431614702, - 0.2582277967105017, - 0.20118265161785193, - 0.1666759309081439, - 0.1500547383850431, - 0.14336524200278744, - 0.13850340813921858, - 0.13060867880574795, - 0.11962917515593281, - 0.11053392179191454, - 0.11155261803616061, - 0.13068865202949903, - 0.17273752529384453, - 0.23641991109367222, - 0.3145307087779459, - 0.39669110289218756, - 0.4732486274230336, - 0.5413709091001352, - 0.6096314229185981, - 0.7001026760650566, - 0.847708612370219, - 1.0941290600694222, - 1.4807417249766375, - 2.041002358379244, - 2.7870070342631603, - 3.7130203967692017 - ], - "pressure:J1:branch54_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch57_seg0": [ - 4.017919260816963, - 5.170228069392133, - 6.423710923159839, - 7.715118322584508, - 8.977765145398548, - 10.154338662992286, - 11.203270573684092, - 12.102805274372885, - 12.846174702728625, - 13.442438925656504, - 13.906724075438492, - 14.252486013553172, - 14.492692098924763, - 14.632046549768384, - 14.671573471168326, - 14.612051067123184, - 14.452920809199712, - 14.201744843109722, - 13.869646004578643, - 13.47168566978593, - 13.02680494949842, - 12.550816167141205, - 12.056964856410303, - 11.553862247287652, - 11.045817851730394, - 10.535853839064874, - 10.027487690813317, - 9.526818582871067, - 9.042731558356579, - 8.585308459844793, - 8.162249839713766, - 7.775581535575571, - 7.418625003055248, - 7.074540445841873, - 6.719147048073226, - 6.32455303744966, - 5.866020517811185, - 5.327085652145278, - 4.706931301991148, - 4.01931041106147, - 3.2930308266075747, - 2.5668922429094128, - 1.8819644140299343, - 1.2746737776898094, - 0.7710233625518226, - 0.3843564562825467, - 0.1119210733154845, - -0.05679005814824502, - -0.1399891173456432, - -0.15668986413643932, - -0.12150534687278707, - -0.04596236866362284, - 0.06383431797085166, - 0.2036228996681349, - 0.36774632370467575, - 0.5482566362303579, - 0.7326640367496509, - 0.905802880312585, - 1.052346576474568, - 1.1602329704074554, - 1.2228159446851117, - 1.24131812868147, - 1.2237475780392748, - 1.181566160627125, - 1.1280101097835276, - 1.0729068586891708, - 1.0209338102468712, - 0.9711110460423398, - 0.9179550002966451, - 0.8544606481688367, - 0.7754418908017882, - 0.6798678791547578, - 0.5725142697527591, - 0.46232043284644925, - 0.36042658538969996, - 0.27665985401768484, - 0.2168011127178782, - 0.18062672344406971, - 0.16292791224931322, - 0.15528924554619464, - 0.14928558910285808, - 0.14008293252930967, - 0.12798654005447366, - 0.1185240545171655, - 0.12047198587805148, - 0.14214563245821002, - 0.1882350588929703, - 0.25701803041118515, - 0.3404964652253989, - 0.42764277183155064, - 0.5085417536239214, - 0.5808333996864133, - 0.6544785393604929, - 0.7537353505145917, - 0.9163370807155333, - 1.1867894782427828, - 1.608397935113139, - 2.2162396456274847, - 3.0219508364884264, - 4.017919260816963 - ], - "pressure:J1:branch57_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch69_seg0": [ - 1.3803786482874407, - 1.752413884709472, - 2.1441096184454294, - 2.5355493771026065, - 2.906414804315864, - 3.2410246964607192, - 3.5298144125205293, - 3.7702840321456867, - 3.9628592197202885, - 4.112824212218977, - 4.226529381612333, - 4.307156295948637, - 4.358597597205468, - 4.381135520258669, - 4.373912118555648, - 4.337608424963585, - 4.271628909852713, - 4.179462725170194, - 4.0655897553694755, - 3.934667668659654, - 3.7932940844725436, - 3.6456716616593368, - 3.495065806466822, - 3.343403755336893, - 3.191120859380407, - 3.038884281084956, - 2.8878698314351365, - 2.7403147617934414, - 2.599344288965128, - 2.4681777875978135, - 2.3486272252394436, - 2.240195206850761, - 2.1394036072669524, - 2.0392948683558814, - 1.9313611829587614, - 1.8066840139839082, - 1.6585269508764175, - 1.4834205183600866, - 1.2839912414139292, - 1.0671765916435119, - 0.8439783327621657, - 0.6280161485429692, - 0.4318529739714402, - 0.2654867206797618, - 0.13462868634461303, - 0.04126882919011751, - -0.018630388235615504, - -0.04963183716897482, - -0.05822417535547319, - -0.05068333098124486, - -0.030303231684856075, - -3.365090723090772e-05, - 0.03913058535111694, - 0.08647233021576402, - 0.1398559089115363, - 0.19656708787509722, - 0.2521603381856399, - 0.301561742204801, - 0.3402329176872384, - 0.36523728435307945, - 0.37556535489321635, - 0.3729021810309644, - 0.3610693963255878, - 0.34394567516283936, - 0.3257777902592086, - 0.3089922219026243, - 0.2939617505207447, - 0.2794019920410733, - 0.2628996001674355, - 0.2420777574858865, - 0.2157518952177255, - 0.18431962887609238, - 0.15028149975819485, - 0.11704371672876274, - 0.08827078941941204, - 0.0666563062793424, - 0.05321867958542547, - 0.04677172793686716, - 0.044856929854670165, - 0.04447800033264743, - 0.04305619791403534, - 0.039821041585818805, - 0.03581239461268063, - 0.033587417514665034, - 0.036329863381232244, - 0.04641435026533229, - 0.06456119483380374, - 0.08916794326011158, - 0.11663245755951189, - 0.1432252532964501, - 0.16623641035364087, - 0.18632567782676826, - 0.2087241324879512, - 0.24325722359388616, - 0.30356899183728137, - 0.4042081800365394, - 0.5575243073189194, - 0.7729205852713116, - 1.0491679092478758, - 1.3803786482874407 - ], - "pressure:J1:branch69_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch72_seg0": [ - 2.7252952238564, - 3.4882270638616526, - 4.3077784549878215, - 5.141344832325045, - 5.945902996629384, - 6.685727455678286, - 7.336383662391888, - 7.886750048681347, - 8.335613592119673, - 8.690780583300166, - 8.963529946498824, - 9.1627524633822, - 9.296416661275112, - 9.366997553178578, - 9.374229208268037, - 9.318586719661953, - 9.199559098303128, - 9.022707264610236, - 8.79618974359442, - 8.529900238997511, - 8.236584474828256, - 7.926255993173374, - 7.606827059487216, - 7.283234137050245, - 6.957564109578593, - 6.631404916996054, - 6.307045742159857, - 5.988656610856476, - 5.682281456774153, - 5.39452121523611, - 5.1300351889008775, - 4.889206056034276, - 4.666501674836756, - 4.449656710153787, - 4.221896818016404, - 3.9647380393623552, - 3.662691574358661, - 3.306401773794722, - 2.8974747649057395, - 2.4472866014976433, - 1.9764635828823098, - 1.5116209493234682, - 1.0797149654841791, - 0.7036219229718339, - 0.39820447066962666, - 0.17047144907278655, - 0.016104089559182532, - -0.07345860406282792, - -0.11076531889533339, - -0.10864979877831418, - -0.07602641617485223, - -0.019620099201618887, - 0.05710826166330328, - 0.15198781142974438, - 0.26135650601393906, - 0.37968669180840064, - 0.49853449144985695, - 0.607754631507735, - 0.6974840423578649, - 0.7604154648184345, - 0.7931989525001223, - 0.7976668159170475, - 0.7800879299169786, - 0.7484735998506713, - 0.7115709310267684, - 0.6753775435668121, - 0.6421551603507242, - 0.6104124978621088, - 0.5759353885101904, - 0.5338964641191873, - 0.48118895227412, - 0.41764698269245415, - 0.34715413341011714, - 0.27614915438933724, - 0.21210730955573132, - 0.16120505329548332, - 0.12661370913966485, - 0.10737732090472439, - 0.09927686736999115, - 0.09645208000561, - 0.0934257047184459, - 0.08748993746976211, - 0.07958689764352364, - 0.07403527028896503, - 0.07697380209394053, - 0.09377836797197592, - 0.1269351078794684, - 0.17450940209259624, - 0.23041729815014095, - 0.28707572988977165, - 0.33825411300960795, - 0.3834607439912564, - 0.4308513766986909, - 0.4981156698014617, - 0.6114836861527055, - 0.800832780908033, - 1.0934047129200808, - 1.5109999345226954, - 2.05795019502172, - 2.7252952238564 - ], - "pressure:J1:branch72_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch76_seg0": [ - 3.1050370345543024, - 4.003218298105141, - 4.98348353497082, - 5.99600016294434, - 6.987926362152635, - 7.91355600421057, - 8.739589000175547, - 9.448174648283585, - 10.033655684171853, - 10.50307152444865, - 10.868202942674122, - 11.14028006379338, - 11.329849803488989, - 11.441138817924536, - 11.47539186822669, - 11.433113264587792, - 11.31391884650872, - 11.123253836708622, - 10.869247714463862, - 10.563389742355099, - 10.220184310068108, - 9.851922721831881, - 9.469117745163164, - 9.078638993247852, - 8.6840127872536, - 8.287616219987024, - 7.892045843670702, - 7.501850522313018, - 7.123773190925244, - 6.76565295111057, - 6.433688873441251, - 6.129962347450432, - 5.849819980776192, - 5.580752755943771, - 5.304265201177774, - 4.9986388754723485, - 4.644060915105857, - 4.2269833967844415, - 3.7455647078576257, - 3.2094444559758766, - 2.6402891168053375, - 2.0679895456596835, - 1.5248227506985899, - 1.0400639955934772, - 0.6352973982745698, - 0.3220985744689968, - 0.09946643299555849, - -0.04006329513446377, - -0.11062951707428151, - -0.12718743111857442, - -0.10170434279818857, - -0.04373761093161457, - 0.04164549807090535, - 0.15087170456338098, - 0.2796000668572083, - 0.4217817380289301, - 0.5678133321605937, - 0.7058941327929605, - 0.8238961693970958, - 0.9119944909904468, - 0.964527323156788, - 0.981976035850295, - 0.9701643296373673, - 0.9380072027080997, - 0.8959701611168368, - 0.8520861471193416, - 0.8104834646268398, - 0.7708070064211782, - 0.7290012462612909, - 0.6795796679983654, - 0.6182312228230092, - 0.5437959071831119, - 0.45963647431449794, - 0.37250505173679177, - 0.29113002234361945, - 0.22343902760922454, - 0.17435734677487233, - 0.1441321173195518, - 0.12903914528738822, - 0.12256128489000744, - 0.11797085708288718, - 0.111136860350029, - 0.10188512930673549, - 0.0942245431529433, - 0.09490722253234767, - 0.11061558508823469, - 0.1453878892208089, - 0.19832797567974494, - 0.2635730849825889, - 0.3325519256804927, - 0.39722574299059327, - 0.45512009437749207, - 0.5131791840742962, - 0.5895824659981874, - 0.7132911996288389, - 0.9190741468766411, - 1.2415128746575843, - 1.7089016686585894, - 2.331585479031596, - 3.1050370345543024 - ], - "pressure:J1:branch76_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch99_seg0": [ - 1.6982984886161752, - 2.168701493931458, - 2.670481464270211, - 3.1775047195275974, - 3.6632952107289323, - 4.10658002656568, - 4.493399609548059, - 4.818231996638804, - 5.080997843989289, - 5.28744098679905, - 5.444921986192345, - 5.558676941991316, - 5.633651159865693, - 5.67085131972681, - 5.669854845736675, - 5.630900000876513, - 5.5535610111374165, - 5.441606785588689, - 5.300079455225345, - 5.135277044344692, - 4.955189492123065, - 4.7656865161079285, - 4.571484182739354, - 4.375308975772842, - 4.178156157285432, - 3.98088941789456, - 3.7848612149700966, - 3.5927140289200894, - 3.4082652558011026, - 3.2356221199052047, - 3.0775081597014378, - 2.933934173650262, - 2.8011285869694076, - 2.6710783848772355, - 2.5332346097943246, - 2.3761290352158113, - 2.1904440272277976, - 1.9708859360019517, - 1.7192234836990894, - 1.4430850906590194, - 1.1558144760710627, - 0.8741763911720652, - 0.6146786452262428, - 0.3909750442443605, - 0.21171910084505738, - 0.08034107736619582, - -0.0067035584550404, - -0.05490496343669429, - -0.07251528430924212, - -0.06735803165754074, - -0.04459809079324028, - -0.008247357059728686, - 0.04004403282803157, - 0.09907652332110978, - 0.1665522200181171, - 0.23911191596277442, - 0.31137779798346227, - 0.37702637579047893, - 0.4300508100189118, - 0.46616195550861245, - 0.48356918188966364, - 0.4837946349620208, - 0.47104707449489547, - 0.4503840253865924, - 0.4272628116641817, - 0.40518143386886424, - 0.38524291606277683, - 0.36624386870307113, - 0.3453522133662031, - 0.31951496645463967, - 0.2868748705620791, - 0.24754356974173194, - 0.20418923490843854, - 0.1609345516197413, - 0.12248099713189942, - 0.09255664102582699, - 0.07290182438313346, - 0.06259198563167837, - 0.058827865765401735, - 0.05783028149076147, - 0.056204188359114046, - 0.05248679295147184, - 0.04750160668517269, - 0.04415680952935403, - 0.04638929785570648, - 0.057484519204677405, - 0.07880977852137112, - 0.10887466229671686, - 0.1436313694318788, - 0.1782753249158045, - 0.2090034480332613, - 0.23581937615713075, - 0.2642629541626843, - 0.3057889569270056, - 0.3770516610588422, - 0.49651002013212264, - 0.6809314894298655, - 0.9430724759540413, - 1.2841611265179602, - 1.6982984886161752 - ], - "pressure:J1:branch99_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch112_seg0": [ - 2.4765002596030015, - 3.197454017304393, - 3.9876198976665074, - 4.807705409490073, - 5.61533726570599, - 6.373271967383721, - 7.053693135278952, - 7.6410109115151075, - 8.129279769982787, - 8.523178136050252, - 8.831481108868742, - 9.062813446047528, - 9.225700895402262, - 9.323580165203559, - 9.357647374696166, - 9.328430292885866, - 9.235613515753412, - 9.083623441364308, - 8.878992478916324, - 8.631033257377135, - 8.351567539669153, - 8.05075779878512, - 7.737354287709759, - 7.4172244084849765, - 7.09348201677926, - 6.768240820378073, - 6.443708932686173, - 6.123582061966633, - 5.813290941869996, - 5.519156395167565, - 5.246231729009665, - 4.996316579074102, - 4.765864063094565, - 4.544999630419416, - 4.319003287221675, - 4.070446965201038, - 3.7833139822267867, - 3.44642443006904, - 3.0580215595631484, - 2.625441975042811, - 2.1658047638300304, - 1.7029128840643146, - 1.2626252742398387, - 0.8685064759089512, - 0.5381088222716861, - 0.2809916548491814, - 0.09674308449673799, - -0.02036788303275364, - -0.08140045462582035, - -0.09827823123610681, - -0.08059710990120826, - -0.036125575127979516, - 0.030883524047692252, - 0.11744933068960549, - 0.2200108894811603, - 0.33374050288446094, - 0.4509887854383348, - 0.5623545450066193, - 0.6581092178374434, - 0.7303147961821954, - 0.774227896141214, - 0.7900323528721117, - 0.7821691123184525, - 0.7575885117697919, - 0.7246140237198171, - 0.68971178482353, - 0.6563068489069417, - 0.6242889840808402, - 0.5905714948256107, - 0.5508657100261343, - 0.5017354942338722, - 0.44218906442584693, - 0.3747908663279826, - 0.30482673648036307, - 0.23919486875695214, - 0.18423968997677947, - 0.14397683217665264, - 0.11875096365185532, - 0.10573454577195877, - 0.09984371234407449, - 0.09574148799335692, - 0.09008423656232155, - 0.0826223992816587, - 0.07641701330714379, - 0.07675983928002796, - 0.08893943242003183, - 0.11625350618639217, - 0.15810226424769996, - 0.2099600800149444, - 0.2651058222435596, - 0.3171369177617334, - 0.36396147225434494, - 0.4108952965737516, - 0.47216868677145574, - 0.5706517355141594, - 0.7339997816915677, - 0.9899865336597621, - 1.3616052682843294, - 1.8580169522248289, - 2.4765002596030015 - ], - "pressure:J1:branch112_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch120_seg0": [ - 1.7260448522737424, - 2.221755958195449, - 2.760665922021015, - 3.315101965632255, - 3.856237009890843, - 4.359315312194104, - 4.80655840167706, - 5.188639812999839, - 5.5032077975234746, - 5.754368450183842, - 5.948860748697928, - 6.092964004459007, - 6.1921923957823015, - 6.2487584820094035, - 6.263035857921477, - 6.235172677200908, - 6.164989274290685, - 6.055569104971439, - 5.911682385944024, - 5.739848655732303, - 5.5482353659137935, - 5.343674602009705, - 5.131890330535595, - 4.916516627069295, - 4.699348012776546, - 4.4815843157145965, - 4.2646385673262195, - 4.051069263985936, - 3.8446630015206322, - 3.6497555490226685, - 3.4696840521159515, - 3.3053494126579643, - 3.1538435741268773, - 3.007918926613169, - 2.8570660901538427, - 2.689206032022481, - 2.493562028075107, - 2.2631156161358064, - 1.9974109510939633, - 1.7025486692588536, - 1.3910553356008208, - 1.0797901118824882, - 0.786590227586869, - 0.5272687846865797, - 0.31299767952459734, - 0.14946782996406532, - 0.035293615454348656, - -0.034229367508538305, - -0.06720872201838332, - -0.0719348368207072, - -0.054850233909189985, - -0.020925324400418506, - 0.027274567883523476, - 0.08797997482031741, - 0.158908074256516, - 0.23667328862007025, - 0.3159676502391541, - 0.39027119528536897, - 0.45298529275401644, - 0.49886069415757706, - 0.5251094337597839, - 0.5322676941775176, - 0.5238252335689517, - 0.5048784908637385, - 0.4811836135301358, - 0.45704113837100163, - 0.4344987049225882, - 0.4130983997950155, - 0.3904133826712884, - 0.3633395084931667, - 0.3295674651688418, - 0.2886025545130145, - 0.24250331152839674, - 0.19515182523023403, - 0.15141063902290303, - 0.11556268832920154, - 0.09013477357179125, - 0.07502336367121816, - 0.06793996660418242, - 0.06517844066952662, - 0.063049305028549, - 0.05940308444627264, - 0.05435208704542794, - 0.05030977461738725, - 0.05110245732671374, - 0.0604072127088344, - 0.08027019105092346, - 0.10998639029617614, - 0.14609917800602273, - 0.1837683945362789, - 0.2186411746527008, - 0.24963036959943583, - 0.28098329985739817, - 0.32317062824993514, - 0.39251230366417605, - 0.5083043300420343, - 0.689281093527871, - 0.9506728570864384, - 1.2973683030012306, - 1.7260448522737424 - ], - "pressure:J1:branch120_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch132_seg0": [ - 1.013599196906955, - 1.2908322837634303, - 1.5846206697371445, - 1.8798822519916973, - 2.1611666958360387, - 2.4163561379699416, - 2.6377728521583377, - 2.8229205935725417, - 2.9718402325394786, - 3.0883338645042286, - 3.176917199897044, - 3.240305923910272, - 3.281481881725917, - 3.300766908737559, - 3.2977536759150246, - 3.272740596217796, - 3.2253498066810575, - 3.1580253763709547, - 3.0738805370811395, - 2.976538593626498, - 2.8708218221376605, - 2.7600176916363646, - 2.6467435538813207, - 2.532516171230216, - 2.4177777139161636, - 2.303025383018189, - 2.1890828172549743, - 2.077560039788029, - 1.9707495116305123, - 1.8710754055268803, - 1.7800179098531164, - 1.6974175058565624, - 1.6208687045156978, - 1.5454053507361472, - 1.4647461923531548, - 1.3721696525549125, - 1.2623995526316416, - 1.1325566461951775, - 0.9841683726835297, - 0.8220308522291926, - 0.6542166162246801, - 0.49075846967871634, - 0.341213423088579, - 0.213336711803145, - 0.11184885787896433, - 0.038451614105212494, - -0.00939751933374824, - -0.03501825832932126, - -0.04329919067739036, - -0.038890962542124825, - -0.02453615317640963, - -0.002536358100459181, - 0.026289915456088164, - 0.06132213993991742, - 0.10108669671591222, - 0.1436123233516428, - 0.18563845442332036, - 0.2234104172561088, - 0.25345452784906797, - 0.2734165004861723, - 0.2823618564084261, - 0.28139595738726036, - 0.2731827991595777, - 0.2606616869965629, - 0.24704782220734792, - 0.23427638176757765, - 0.22281156444608224, - 0.21181863498165662, - 0.19955170915196307, - 0.18421535026222224, - 0.16480679726555722, - 0.1415088077113745, - 0.11604019655747012, - 0.09088875250438845, - 0.06881863713389623, - 0.05194317103239137, - 0.041159752599410404, - 0.03574666089381644, - 0.03396694110874403, - 0.03357197594196163, - 0.032586888864464605, - 0.03029085902971332, - 0.027312578095831024, - 0.02546669350309236, - 0.02711543680444908, - 0.034116666486190605, - 0.047163627888384185, - 0.06520825796941669, - 0.08571166655135123, - 0.10585517899262402, - 0.12348551754969812, - 0.1388319198081984, - 0.15546677134206482, - 0.1804305810876902, - 0.2237250230015373, - 0.29621794279355773, - 0.4075259287349395, - 0.5648732225753104, - 0.7681871814777058, - 1.013599196906955 - ], - "pressure:J1:branch132_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:J1:branch138_seg0": [ - 1.485253365988929, - 1.9036023216154523, - 2.35350738005036, - 2.811611596059907, - 3.2539441108902714, - 3.660712762619702, - 4.018371770011855, - 4.320802627219127, - 4.5671289049452435, - 4.7618945653884746, - 4.911333423680218, - 5.020432622378221, - 5.0937694674586504, - 5.132603435084388, - 5.136879768764729, - 5.106707941704622, - 5.0417729431813285, - 4.945106958906528, - 4.820960127169935, - 4.674942125680462, - 4.514059546268688, - 4.343801213268305, - 4.168637740666782, - 3.991261236826126, - 3.8128070435429473, - 3.634115918066369, - 3.456358754492988, - 3.2817857385643903, - 3.1137051960424786, - 2.9557855099793455, - 2.8106413629359857, - 2.678625582481198, - 2.5567812871930595, - 2.4384040347782974, - 2.3143062848053786, - 2.1742486149993843, - 2.0095590078985675, - 1.814961676955245, - 1.5912108981026527, - 1.3443734407333343, - 1.0858345405017589, - 0.8302513708926281, - 0.5925321900690363, - 0.3853588434880875, - 0.21721596543422772, - 0.09183608891898733, - 0.006927825279662352, - -0.04209615021739194, - -0.06240686327783781, - -0.061024802050375714, - -0.04293944964424084, - -0.011976352261261458, - 0.030116055103915525, - 0.08212276306314074, - 0.14208234217555935, - 0.20709358513802914, - 0.27250417987950615, - 0.3327407394669073, - 0.38233968403428925, - 0.417216684827276, - 0.4354260108622494, - 0.4379609360910225, - 0.4282331731841037, - 0.41069038974150585, - 0.3902233911658357, - 0.370186220921782, - 0.35188858301321074, - 0.33454404132528837, - 0.3158095761759895, - 0.29298232031909527, - 0.26425105101016627, - 0.22948524040584997, - 0.1907788199510142, - 0.15165042557596625, - 0.11627152222996784, - 0.08811281341282391, - 0.06898455280746388, - 0.058383720057599155, - 0.0540429280679979, - 0.052673259602138436, - 0.051185552160600105, - 0.04803669352172681, - 0.04367978168096512, - 0.04047549314407381, - 0.041838303843048374, - 0.050791573048089046, - 0.06880607536712877, - 0.0948662431395466, - 0.125659210908526, - 0.15695646112249384, - 0.1852110346951885, - 0.20998935720160433, - 0.23562040358088565, - 0.27171609894071796, - 0.3326694737531213, - 0.4348801917759521, - 0.5937419416169288, - 0.8212148826540668, - 1.1198073152294095, - 1.485253365988929 - ], - "pressure:J1:branch138_seg0": [ - 9620.737290200237, - 11067.35909304935, - 12563.83657941459, - 14033.540615293328, - 15407.156226703344, - 16629.200758425817, - 17668.562715478325, - 18524.76856764377, - 19205.645887916722, - 19726.648832593368, - 20120.12607146464, - 20391.91920294175, - 20553.020111602404, - 20607.49386795826, - 20545.7243097541, - 20375.805640759867, - 20095.26499832232, - 19716.29908120739, - 19264.515940162022, - 18753.040991195096, - 18207.195447066046, - 17643.87817920751, - 17070.82460692999, - 16495.41901575082, - 15918.34869090045, - 15341.84329137046, - 14772.112998757526, - 14218.531964217334, - 13693.50422272971, - 13208.684739754523, - 12769.464170846635, - 12369.497481787908, - 11993.270428361386, - 11610.949583756274, - 11188.452413606252, - 10693.002313419762, - 10103.623719491326, - 9410.49243416501, - 8629.419758730583, - 7794.721218104667, - 6948.3622493928415, - 6144.507909713895, - 5429.615053286852, - 4837.651520270548, - 4381.65717310959, - 4068.8833198385287, - 3878.694662970205, - 3788.267282363709, - 3778.613938930554, - 3822.864097560254, - 3911.784689424158, - 4037.99686335354, - 4195.109286433743, - 4382.86974004198, - 4591.103907132728, - 4807.077580647243, - 5014.1382428265515, - 5192.011271801561, - 5324.424182020793, - 5402.879283542126, - 5426.615594569858, - 5402.8383083150575, - 5350.055997878596, - 5282.039514192784, - 5213.113467854361, - 5151.793573577321, - 5096.600221198529, - 5040.755447187792, - 4974.748422627896, - 4889.979997806083, - 4784.173590791941, - 4660.340810014033, - 4529.83417395789, - 4406.979746633539, - 4304.676831618444, - 4231.545057935762, - 4189.468911801835, - 4172.17210472979, - 4168.043752590947, - 4166.856817796817, - 4159.69874663733, - 4145.450475302712, - 4130.469513806616, - 4125.669531527246, - 4143.095456283314, - 4190.328983767934, - 4267.409410991209, - 4366.682613486566, - 4471.842560275719, - 4569.552942372693, - 4652.417836733582, - 4727.021603833841, - 4818.603582110016, - 4969.24813351331, - 5233.652358789474, - 5668.727414212289, - 6312.030050210281, - 7198.184018549119, - 8314.692523336387, - 9620.737290200237 - ], - "flow:branch2_seg0:J2": [ - 1.6357754136001927, - 2.1081291898352403, - 2.6236629382160412, - 3.1560200139711667, - 3.6776556968220855, - 4.164663586346475, - 4.599477214675328, - 4.972598726135809, - 5.28101611001868, - 5.528417120213634, - 5.720895661969881, - 5.86423452433452, - 5.963917780436807, - 6.022116167789613, - 6.039396832566228, - 6.016062590618194, - 5.951837561616891, - 5.849565473087016, - 5.713889839240231, - 5.550840709047487, - 5.368054974951344, - 5.172276453805569, - 4.968984842655805, - 4.761835436019532, - 4.552711682332482, - 4.342823856732831, - 4.13358934913559, - 3.9274305374173912, - 3.727915039837976, - 3.539165696056148, - 3.3644367029130975, - 3.2047109070102313, - 3.057417665952744, - 2.915881598260162, - 2.7702460731180905, - 2.6090284104472485, - 2.421921338708971, - 2.2018566135696314, - 1.948122242660733, - 1.6660838472317379, - 1.367320244633529, - 1.0676686759185698, - 0.7841350680785243, - 0.532000819155344, - 0.3221739612868132, - 0.16052737133896683, - 0.04645285226793311, - -0.024543756045740692, - -0.059749833048297736, - -0.06707593721660261, - -0.052840696350473115, - -0.021782362028309077, - 0.02335510447048887, - 0.08075269385654305, - 0.14825196929092369, - 0.2226060887478524, - 0.2987731733650359, - 0.37059763613718827, - 0.431728058685579, - 0.4770968115995896, - 0.5038043379728122, - 0.5122123746256199, - 0.5054749453901821, - 0.48826728888778315, - 0.46607110468129825, - 0.4430775711662497, - 0.4213648538562622, - 0.40066147534218016, - 0.3787956409536326, - 0.3528725556849086, - 0.3206849826982457, - 0.28167329946004777, - 0.23762347287940927, - 0.19217219837405486, - 0.14988313022722302, - 0.11486618446230047, - 0.08962682181024802, - 0.07426158244262877, - 0.06670548952141579, - 0.06351559320034614, - 0.06121713128147548, - 0.05766997233616411, - 0.052852511624864124, - 0.04892669072543334, - 0.049461444036340375, - 0.057929100460369067, - 0.07639710416308791, - 0.10431399606228739, - 0.13852952607595384, - 0.1745488598951847, - 0.20820911696007127, - 0.23831904497224668, - 0.2686673518321436, - 0.3089375096290434, - 0.3743976035863175, - 0.483413337952588, - 0.6538268076355948, - 0.9003023647252817, - 1.2287146429106126, - 1.6357754136001927 - ], - "pressure:branch2_seg0:J2": [ - 9237.610302862402, - 10626.946174096483, - 12083.132755663917, - 13533.501534585997, - 14907.159194909222, - 16145.713035947145, - 17213.372860957734, - 18105.81919065887, - 18822.49771063615, - 19378.32134387141, - 19803.864644295612, - 20104.837005640493, - 20294.215357526067, - 20376.80151922871, - 20344.8215118594, - 20205.960677253173, - 19957.735662719242, - 19609.285832366033, - 19184.375239458594, - 18696.479842704615, - 18169.04661604785, - 17619.65260529731, - 17057.637387007213, - 16491.22288173599, - 15922.250532663616, - 15353.082913564931, - 14789.158019695606, - 14239.049688059056, - 13714.240487929817, - 13226.460224193834, - 12781.797120594902, - 12376.636226241037, - 11998.204467352427, - 11619.582837220338, - 11209.210658518652, - 10734.883037761174, - 10174.182566815882, - 9514.013392113759, - 8765.414194594698, - 7957.392105295543, - 7127.965873247294, - 6328.5246330589625, - 5604.873190880616, - 4992.911082276975, - 4510.1443875698305, - 4165.669916748445, - 3944.8345596658028, - 3827.6897476111253, - 3795.201418019102, - 3821.735466946904, - 3896.265286790818, - 4009.7050278750376, - 4156.023565775303, - 4333.525961914863, - 4532.783236694863, - 4743.088250045576, - 4948.484240656934, - 5129.629560524203, - 5270.051055788137, - 5360.343605243556, - 5397.160364110543, - 5385.791126927784, - 5342.952517662334, - 5281.292770137974, - 5215.0512045824125, - 5153.977922502606, - 5098.347351201434, - 5043.06401158137, - 4979.705090510307, - 4899.841360986769, - 4800.121087592039, - 4682.367695918826, - 4555.954764532845, - 4433.884287932526, - 4328.916266010387, - 4250.336959303612, - 4201.494948271623, - 4177.718777304251, - 4169.395934608546, - 4166.4776871409285, - 4159.700596609266, - 4146.812733115493, - 4132.3771631544605, - 4125.808969036127, - 4138.543574892813, - 4178.490638487391, - 4247.4563017523615, - 4339.687174753955, - 4440.595540921776, - 4537.486921820954, - 4621.965673330493, - 4697.5708652044605, - 4785.138436184086, - 4922.130397969305, - 5159.005932105144, - 5550.636971433583, - 6137.598026832246, - 6954.734665694448, - 7998.139559181317, - 9237.610302862402 - ], - "flow:J2:branch3_seg0": [ - 0.7376343738029454, - 0.9534953809499547, - 1.190761292961568, - 1.437469794005484, - 1.6808954992908256, - 1.9097391261214278, - 2.1154621820526347, - 2.293154467931572, - 2.4409709096834313, - 2.5602417864199025, - 2.653568319666689, - 2.723626639250686, - 2.772993410276549, - 2.802821557261614, - 2.8135031295982627, - 2.8052015683836946, - 2.777821116512074, - 2.73255413654621, - 2.6714320198055668, - 2.5971872464696095, - 2.513287001063335, - 2.4228993646250756, - 2.328655831450363, - 2.232360828893276, - 2.1350019306182344, - 2.037198491306896, - 1.939609785265316, - 1.8433167654988543, - 1.7499173021838934, - 1.6612962123276116, - 1.5790057963107917, - 1.5036316798591012, - 1.4341724623271035, - 1.3677611619593246, - 1.300009501153126, - 1.2256829535254812, - 1.1399386136911345, - 1.0393133962141774, - 0.9231306884801845, - 0.7935104327967217, - 0.6554777706914952, - 0.5161250404427625, - 0.38325953085246434, - 0.26406454332934004, - 0.16385875663766283, - 0.08565905195690712, - 0.029563670283429527, - -0.006248236911151095, - -0.024995792803132775, - -0.030280239651158152, - -0.025114893612554447, - -0.011800361850300183, - 0.008281216197534198, - 0.0342053006601063, - 0.06497658422761433, - 0.0991390383358704, - 0.1344374373579054, - 0.16808148122866784, - 0.19713390026403352, - 0.2191730697716822, - 0.23272368453730002, - 0.23777575874736986, - 0.23561741708630643, - 0.2283174771956366, - 0.21837407089586758, - 0.207787319264395, - 0.19764161943188144, - 0.18794970723784094, - 0.17781963865651756, - 0.16596200911434666, - 0.15132366430079494, - 0.1335591495447101, - 0.11336711961664246, - 0.0923240893623425, - 0.07248937972399365, - 0.055787679817108894, - 0.04346782176198083, - 0.03570865513299367, - 0.031684944976081215, - 0.02988164898909, - 0.028701370622972865, - 0.027084288791820003, - 0.024902320084754223, - 0.023032919756072648, - 0.023044885421358553, - 0.026542739775838677, - 0.034559855670437324, - 0.046979118086591116, - 0.062491334901112396, - 0.07909798295160733, - 0.09485638598429298, - 0.10906191639909263, - 0.12319984507943267, - 0.14143264880010573, - 0.17052794107686897, - 0.21881656523357196, - 0.29461549442466634, - 0.4049007348428943, - 0.552890182830495, - 0.7376343738029454 - ], - "pressure:J2:branch3_seg0": [ - 9237.610302862402, - 10626.946174096483, - 12083.132755663917, - 13533.501534585997, - 14907.159194909222, - 16145.713035947145, - 17213.372860957734, - 18105.81919065887, - 18822.49771063615, - 19378.32134387141, - 19803.864644295612, - 20104.837005640493, - 20294.215357526067, - 20376.80151922871, - 20344.8215118594, - 20205.960677253173, - 19957.735662719242, - 19609.285832366033, - 19184.375239458594, - 18696.479842704615, - 18169.04661604785, - 17619.65260529731, - 17057.637387007213, - 16491.22288173599, - 15922.250532663616, - 15353.082913564931, - 14789.158019695606, - 14239.049688059056, - 13714.240487929817, - 13226.460224193834, - 12781.797120594902, - 12376.636226241037, - 11998.204467352427, - 11619.582837220338, - 11209.210658518652, - 10734.883037761174, - 10174.182566815882, - 9514.013392113759, - 8765.414194594698, - 7957.392105295543, - 7127.965873247294, - 6328.5246330589625, - 5604.873190880616, - 4992.911082276975, - 4510.1443875698305, - 4165.669916748445, - 3944.8345596658028, - 3827.6897476111253, - 3795.201418019102, - 3821.735466946904, - 3896.265286790818, - 4009.7050278750376, - 4156.023565775303, - 4333.525961914863, - 4532.783236694863, - 4743.088250045576, - 4948.484240656934, - 5129.629560524203, - 5270.051055788137, - 5360.343605243556, - 5397.160364110543, - 5385.791126927784, - 5342.952517662334, - 5281.292770137974, - 5215.0512045824125, - 5153.977922502606, - 5098.347351201434, - 5043.06401158137, - 4979.705090510307, - 4899.841360986769, - 4800.121087592039, - 4682.367695918826, - 4555.954764532845, - 4433.884287932526, - 4328.916266010387, - 4250.336959303612, - 4201.494948271623, - 4177.718777304251, - 4169.395934608546, - 4166.4776871409285, - 4159.700596609266, - 4146.812733115493, - 4132.3771631544605, - 4125.808969036127, - 4138.543574892813, - 4178.490638487391, - 4247.4563017523615, - 4339.687174753955, - 4440.595540921776, - 4537.486921820954, - 4621.965673330493, - 4697.5708652044605, - 4785.138436184086, - 4922.130397969305, - 5159.005932105144, - 5550.636971433583, - 6137.598026832246, - 6954.734665694448, - 7998.139559181317, - 9237.610302862402 - ], - "flow:J2:branch36_seg0": [ - 0.898141039797247, - 1.1546338088852865, - 1.4329016452544732, - 1.7185502199656824, - 1.9967601975312592, - 2.2549244602250478, - 2.4840150326226946, - 2.679444258204237, - 2.840045200335247, - 2.9681753337937318, - 3.067327342303194, - 3.1406078850838353, - 3.190924370160259, - 3.2192946105279994, - 3.225893702967966, - 3.210861022234499, - 3.1740164451048174, - 3.117011336540806, - 3.0424578194346643, - 2.9536534625778788, - 2.8547679738880105, - 2.7493770891804936, - 2.6403290112054427, - 2.5294746071262564, - 2.417709751714247, - 2.3056253654259335, - 2.193979563870275, - 2.0841137719185365, - 1.9779977376540825, - 1.8778694837285368, - 1.7854309066023057, - 1.7010792271511301, - 1.6232452036256413, - 1.5481204363008372, - 1.470236571964964, - 1.383345456921767, - 1.2819827250178366, - 1.162543217355454, - 1.024991554180548, - 0.8725734144350159, - 0.7118424739420337, - 0.5515436354758072, - 0.4008755372260602, - 0.2679362758260039, - 0.15831520464915036, - 0.0748683193820597, - 0.01688918198450359, - -0.018295519134589596, - -0.03475404024516497, - -0.03679569756544445, - -0.027725802737918664, - -0.009982000178008894, - 0.015073888272954673, - 0.04654739319643675, - 0.08327538506330934, - 0.123467050411982, - 0.1643357360071305, - 0.20251615490852043, - 0.23459415842154557, - 0.2579237418279075, - 0.27108065343551224, - 0.27443661587824997, - 0.2698575283038756, - 0.2599498116921466, - 0.2476970337854307, - 0.23529025190185468, - 0.22372323442438077, - 0.2127117681043392, - 0.20097600229711504, - 0.186910546570562, - 0.16936131839745072, - 0.14811414991533758, - 0.1242563532627668, - 0.0998481090117124, - 0.07739375050322933, - 0.05907850464519158, - 0.046159000048267194, - 0.03855292730963508, - 0.035020544545334584, - 0.03363394421125613, - 0.03251576065850261, - 0.030585683544344107, - 0.0279501915401099, - 0.0258937709693607, - 0.02641655861498184, - 0.031386360684530386, - 0.041837248492650594, - 0.05733487797569628, - 0.0760381911748415, - 0.09545087694357736, - 0.11335273097577828, - 0.12925712857315405, - 0.14546750675271092, - 0.16750486082893767, - 0.20386966250944863, - 0.26459677271901605, - 0.3592113132109285, - 0.4954016298823874, - 0.6758244600801178, - 0.898141039797247 - ], - "pressure:J2:branch36_seg0": [ - 9237.610302862402, - 10626.946174096483, - 12083.132755663917, - 13533.501534585997, - 14907.159194909222, - 16145.713035947145, - 17213.372860957734, - 18105.81919065887, - 18822.49771063615, - 19378.32134387141, - 19803.864644295612, - 20104.837005640493, - 20294.215357526067, - 20376.80151922871, - 20344.8215118594, - 20205.960677253173, - 19957.735662719242, - 19609.285832366033, - 19184.375239458594, - 18696.479842704615, - 18169.04661604785, - 17619.65260529731, - 17057.637387007213, - 16491.22288173599, - 15922.250532663616, - 15353.082913564931, - 14789.158019695606, - 14239.049688059056, - 13714.240487929817, - 13226.460224193834, - 12781.797120594902, - 12376.636226241037, - 11998.204467352427, - 11619.582837220338, - 11209.210658518652, - 10734.883037761174, - 10174.182566815882, - 9514.013392113759, - 8765.414194594698, - 7957.392105295543, - 7127.965873247294, - 6328.5246330589625, - 5604.873190880616, - 4992.911082276975, - 4510.1443875698305, - 4165.669916748445, - 3944.8345596658028, - 3827.6897476111253, - 3795.201418019102, - 3821.735466946904, - 3896.265286790818, - 4009.7050278750376, - 4156.023565775303, - 4333.525961914863, - 4532.783236694863, - 4743.088250045576, - 4948.484240656934, - 5129.629560524203, - 5270.051055788137, - 5360.343605243556, - 5397.160364110543, - 5385.791126927784, - 5342.952517662334, - 5281.292770137974, - 5215.0512045824125, - 5153.977922502606, - 5098.347351201434, - 5043.06401158137, - 4979.705090510307, - 4899.841360986769, - 4800.121087592039, - 4682.367695918826, - 4555.954764532845, - 4433.884287932526, - 4328.916266010387, - 4250.336959303612, - 4201.494948271623, - 4177.718777304251, - 4169.395934608546, - 4166.4776871409285, - 4159.700596609266, - 4146.812733115493, - 4132.3771631544605, - 4125.808969036127, - 4138.543574892813, - 4178.490638487391, - 4247.4563017523615, - 4339.687174753955, - 4440.595540921776, - 4537.486921820954, - 4621.965673330493, - 4697.5708652044605, - 4785.138436184086, - 4922.130397969305, - 5159.005932105144, - 5550.636971433583, - 6137.598026832246, - 6954.734665694448, - 7998.139559181317, - 9237.610302862402 - ], - "flow:branch4_seg0:J3": [ - 34.75597828061494, - 44.72274147051993, - 55.6738716887819, - 67.10631079791585, - 78.47464042267241, - 89.29559708168236, - 99.20273638159843, - 107.9805126734021, - 115.52987350753767, - 121.8799526052875, - 127.11127340157233, - 131.29951538832026, - 134.52246573768275, - 136.80116397700374, - 138.13156440730418, - 138.5140669294534, - 137.94140434860674, - 136.47360841188478, - 134.20201785567747, - 131.24860641293938, - 127.77283002820671, - 123.9082151962115, - 119.77150335920875, - 115.4447005531549, - 110.97602129041593, - 106.40486803851593, - 101.7740985200974, - 97.14680625966706, - 92.6075113517956, - 88.24984384288877, - 84.14671363727328, - 80.32515293870289, - 76.74011884805552, - 73.26262887970115, - 69.70106472016765, - 65.8301741707617, - 61.44418322103093, - 56.40155166410859, - 50.68190077048459, - 44.383533836833394, - 37.72662966193519, - 31.018921656595676, - 24.59214351449551, - 18.75050457317566, - 13.720197529667882, - 9.634598679586174, - 6.4948342915867645, - 4.244177733354015, - 2.7581088162105285, - 1.8992823561608756, - 1.562119186326453, - 1.6565225903896628, - 2.1328546382032934, - 2.952118903011163, - 4.060676042175884, - 5.385600007480788, - 6.816072438853321, - 8.218583570793738, - 9.457761971413014, - 10.422993248264184, - 11.0471782701705, - 11.3263419191199, - 11.31213107480395, - 11.086407333836808, - 10.748265690397728, - 10.372670630354602, - 9.996104841129252, - 9.612094734807775, - 9.17915831968942, - 8.64357605719145, - 7.966015297740174, - 7.13908804839364, - 6.202379522361715, - 5.2280979545478665, - 4.30724837526319, - 3.521209455488887, - 2.9206494971297743, - 2.5081004621093665, - 2.247074440472375, - 2.0745026996947007, - 1.9258852984414436, - 1.7642356081184989, - 1.5924806221824963, - 1.454657797674432, - 1.4206698673613642, - 1.557507833785065, - 1.9034164118007901, - 2.4461188689642115, - 3.1229312496414514, - 3.8466073947197637, - 4.537837336735588, - 5.177891800241539, - 5.847319535311115, - 6.743747710197779, - 8.176657010905036, - 10.516228513326281, - 14.126645321638081, - 19.317897731804575, - 26.204516632611973, - 34.75597828061494 - ], - "pressure:branch4_seg0:J3": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch5_seg0": [ - 12.014038829346694, - 15.593223145257383, - 19.67441505978783, - 24.10779003839036, - 28.710175325969306, - 33.297402153445304, - 37.706906382474195, - 41.815161606872266, - 45.53716587672179, - 48.834346090193584, - 51.696088462335354, - 54.124720655095004, - 56.132547903426754, - 57.723178330856435, - 58.89570907810858, - 59.64979564298834, - 59.98317688923891, - 59.91114593109578, - 59.45997276181831, - 58.66850762943225, - 57.58995295312622, - 56.2755248798108, - 54.77478259565022, - 53.128585017871615, - 51.367589582148355, - 49.51740438275272, - 47.60196077728703, - 45.64901512296813, - 43.691940150496826, - 41.76770395485507, - 39.90916010346966, - 38.1372348074153, - 36.45130544539063, - 34.82326382829828, - 33.20018657574229, - 31.51092435457351, - 29.680886815454347, - 27.647529126268854, - 25.37981231145477, - 22.88400864897778, - 20.209346999464668, - 17.442015784027035, - 14.689004418178211, - 12.061890860925127, - 9.658759957651757, - 7.5537718614021685, - 5.782067325661232, - 4.35406409118736, - 3.251277760919183, - 2.441709214770066, - 1.8930923188575386, - 1.5727272950651758, - 1.4569011439915482, - 1.5248930555413607, - 1.7534310624956577, - 2.1142567671228583, - 2.5679135912260023, - 3.0663193998145957, - 3.557647472669952, - 3.994020444390243, - 4.338525846943453, - 4.572907500529162, - 4.698081841261336, - 4.729367519020466, - 4.692840624436931, - 4.613399200585997, - 4.508422395437757, - 4.38372896368619, - 4.233388586398995, - 4.044589595768425, - 3.8049638393301786, - 3.508972644281359, - 3.163986143162508, - 2.7887813942799875, - 2.411029504420067, - 2.0596091052540153, - 1.7575315669323823, - 1.515060648636174, - 1.3297427214344923, - 1.187993832363934, - 1.0716714648386474, - 0.9667340431365834, - 0.8687831554015427, - 0.7858328960991733, - 0.7360403697631371, - 0.7406230840413369, - 0.8158520581526557, - 0.9650176660899524, - 1.1757779387824645, - 1.4248145597855415, - 1.6862403552238234, - 1.9472020289693808, - 2.2219375206404965, - 2.561417663140725, - 3.056485475727485, - 3.8272756371105783, - 5.005711487737816, - 6.718082481438604, - 9.042825215667472, - 12.014038829346694 - ], - "pressure:J3:branch5_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch12_seg0": [ - 4.678828670991579, - 6.0221034501291575, - 7.485228613134444, - 8.994722880407103, - 10.473398131322561, - 11.854620253116284, - 13.089956758761003, - 14.153461805559845, - 15.037370933719123, - 15.751647886196805, - 16.313017069975736, - 16.73716312150879, - 17.0383083822377, - 17.221524930285153, - 17.287598665120427, - 17.23673013468029, - 17.068137353420468, - 16.790379234848526, - 16.41615978827998, - 15.962986140266548, - 15.453000203391209, - 14.904668366232967, - 14.333536857734304, - 13.749719057651795, - 13.158342630172363, - 12.563040661922708, - 11.968027026122735, - 11.380541148860111, - 10.8110992989142, - 10.27163360098706, - 9.771342355720511, - 9.312832774391708, - 8.888502127932128, - 8.479037073622154, - 8.056368180710558, - 7.588175885941519, - 7.0455947271727295, - 6.40962479838312, - 5.67910160561511, - 4.870007138754057, - 4.015788557318025, - 3.161426458153053, - 2.354603482640261, - 1.6376502048687336, - 1.0406741094315575, - 0.5793179029003774, - 0.2503260469636146, - 0.04162426167140179, - -0.06773563629781756, - -0.09960671130119948, - -0.07072583752254741, - 0.005798925625310442, - 0.12307110876975161, - 0.27637075380217435, - 0.459345565201889, - 0.6627308622878597, - 0.8720693379492533, - 1.0696814454338885, - 1.2376394155134525, - 1.3616927694179117, - 1.4340164994578797, - 1.4558462169936766, - 1.4361725581138345, - 1.3882970786641904, - 1.3274290722858382, - 1.2648381654585439, - 1.2058808876826461, - 1.1493151381460633, - 1.0886855009310576, - 1.015778371177685, - 0.9245270240116241, - 0.8136812620426292, - 0.6888101156547134, - 0.5603224822115167, - 0.44120446281826203, - 0.34292033984652465, - 0.2722491831440135, - 0.2289865346721488, - 0.2070949497921181, - 0.196822881646902, - 0.18842774412537724, - 0.1762718455243226, - 0.16074010376809994, - 0.1482973633037057, - 0.14917281876780042, - 0.1731187411489221, - 0.22560643897137944, - 0.30467389294356556, - 0.4011091534566578, - 0.5020371517657171, - 0.5958900635295649, - 0.6798816433484706, - 0.7654959685115725, - 0.8808728317685786, - 1.0698176172971359, - 1.3841445655014233, - 1.8742005394940926, - 2.5812271608125106, - 3.5189436389528144, - 4.678828670991579 - ], - "pressure:J3:branch12_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch20_seg0": [ - 3.9031371951023086, - 4.996995590977235, - 6.170900475464016, - 7.364826679239634, - 8.51669474339929, - 9.57554181982321, - 10.506966843046282, - 11.296431449302231, - 11.941354222843522, - 12.45417780964233, - 12.851347072563625, - 13.144655964281343, - 13.345878856136505, - 13.457509488446707, - 13.478621599305683, - 13.409656193819359, - 13.249214182748581, - 13.005317256589198, - 12.68944979694522, - 12.31580180809368, - 11.90293345369661, - 11.464942445094051, - 11.013155643762685, - 10.554579424827908, - 10.091957778989977, - 9.627528290243795, - 9.164495129353915, - 8.708913806299295, - 8.269607412648979, - 7.856322875987039, - 7.475802092585385, - 7.128849893217263, - 6.807618484601736, - 6.494305013641217, - 6.164938533627161, - 5.7929653742534555, - 5.356178708100406, - 4.84116710739658, - 4.250729106985472, - 3.601191862323315, - 2.922411772823591, - 2.252904562704116, - 1.6311285507998277, - 1.0896349478143865, - 0.6497842056809229, - 0.3209202627711952, - 0.09631115327307573, - -0.03610782972210197, - -0.09474022586802916, - -0.09796931796349087, - -0.05798240442376535, - 0.015541773897128741, - 0.1184370132394612, - 0.24789446384498107, - 0.3986338908646379, - 0.5631893125175711, - 0.7292753818489196, - 0.8822320147703558, - 1.007836301200999, - 1.0956544824585102, - 1.1406306483657598, - 1.1455816410700974, - 1.119666419127712, - 1.0742130895952169, - 1.021876494444563, - 0.9711387535818438, - 0.9249751110075121, - 0.8810581446554826, - 0.8330981618517719, - 0.7739934518393192, - 0.6991632612301414, - 0.6084336983263744, - 0.5075219520608022, - 0.40572874993059527, - 0.3139369875639798, - 0.2410926131549022, - 0.19175040038357472, - 0.16431370758717032, - 0.1527505453442827, - 0.1484818825916001, - 0.1434914870945058, - 0.13401331054050517, - 0.12150545710363368, - 0.11231356067919288, - 0.11545199672592169, - 0.13869577832295982, - 0.18573949104734014, - 0.25367953011897554, - 0.33358547155455104, - 0.41448815337116973, - 0.48726171756914927, - 0.5511160961710186, - 0.6178221158785868, - 0.7129238022946881, - 0.8742291529774777, - 1.1446002669995, - 1.5636564695053408, - 2.1623602390637156, - 2.9460946158748857, - 3.9031371951023086 - ], - "pressure:J3:branch20_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch22_seg0": [ - 1.465339302135, - 1.8650635232021957, - 2.2880271899021114, - 2.7121804983547135, - 3.1154462241767353, - 3.4806760309441587, - 3.7972155805023147, - 4.0616588577463, - 4.2746973825932475, - 4.4420128404588795, - 4.569897324678728, - 4.662611966785018, - 4.723921937770149, - 4.754161424112644, - 4.752544762427829, - 4.719078887734985, - 4.653378212586459, - 4.558771410893025, - 4.439795758857596, - 4.30182316268306, - 4.151746299412082, - 3.994317869449578, - 3.8332801462195016, - 3.670667887887162, - 3.507054521066763, - 3.343086775418748, - 3.1799316378135547, - 3.019966768280396, - 2.866559917557349, - 2.723280201971753, - 2.5922931974203913, - 2.473382717090176, - 2.362954534666649, - 2.253829948097732, - 2.136827665727134, - 2.0022645338526304, - 1.8425191567244568, - 1.6537602261518058, - 1.4382364234325915, - 1.203215946928014, - 0.960561535981591, - 0.7247889637655005, - 0.5096689535787282, - 0.3262928303763369, - 0.18112968556458753, - 0.07632962942319498, - 0.0079900811602333, - -0.028920298939908606, - -0.04157545896396139, - -0.0365317709444773, - -0.017683455486323704, - 0.01188797445833869, - 0.051229992547281014, - 0.09954081986313171, - 0.15487544190316388, - 0.214351533602067, - 0.2732473406849627, - 0.32612698212721364, - 0.36796277776455427, - 0.3953321512171074, - 0.4070156467970652, - 0.4046908564758388, - 0.39219599209138317, - 0.37393271298509323, - 0.35445967691328545, - 0.3364870715167703, - 0.32058421288647027, - 0.3053883237847347, - 0.2882599394111965, - 0.2665354254555228, - 0.23876889841595228, - 0.20527594946304403, - 0.1686195295926627, - 0.13247663889508396, - 0.10090246218224701, - 0.07692480994728874, - 0.0617900586772672, - 0.054364896190410655, - 0.05205112970519315, - 0.051513003574788295, - 0.0499265684406102, - 0.04627926728033299, - 0.04156927079771894, - 0.03853066864051497, - 0.040639283344491406, - 0.05063177382581416, - 0.06944694703294071, - 0.0954919892231313, - 0.12504040712798573, - 0.153900475992485, - 0.17895683829503495, - 0.20060876161508176, - 0.224122995195506, - 0.25983101797196567, - 0.32227306118875504, - 0.4272691287288665, - 0.5885886378048168, - 0.8165200830570126, - 1.1107344111616742, - 1.465339302135 - ], - "pressure:J3:branch22_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch31_seg0": [ - 2.1324603947593945, - 2.729071827776654, - 3.368620346909721, - 4.017311346759052, - 4.641248241691023, - 5.212903475115614, - 5.714018638647153, - 6.136827600151698, - 6.481199571442882, - 6.754119607447194, - 6.96450043572276, - 7.119756706887556, - 7.2258887207433595, - 7.284655750670727, - 7.295748479661144, - 7.25901536366517, - 7.174093306301798, - 7.044897426836611, - 6.8773415311183275, - 6.679064445065658, - 6.459670489818576, - 6.226659718182214, - 5.98610033042405, - 5.741605740650612, - 5.494672557912655, - 5.246431487232671, - 4.998524178600989, - 4.7541639366194435, - 4.518063851748623, - 4.295491312102681, - 4.090209543222544, - 3.9028317542560647, - 3.7292216209605416, - 3.560030085152002, - 3.3822716265955903, - 3.181544322088973, - 2.9454975742872955, - 2.6667822564392263, - 2.346197814290449, - 1.9923614982957247, - 1.6212609059837082, - 1.253643671669153, - 0.9107319006453294, - 0.6108066901555829, - 0.36605349689361805, - 0.18213821865622717, - 0.0559570326799888, - -0.018937390654781554, - -0.05265885268338894, - -0.05520094846390717, - -0.03364756764839967, - 0.0066263048022071535, - 0.06322445557858804, - 0.13447783818831222, - 0.21767119174974953, - 0.3086105000788363, - 0.4006153680036897, - 0.4856395112231889, - 0.555792203406124, - 0.6051212196178412, - 0.6308503952304112, - 0.6343564730639236, - 0.6204434320352752, - 0.5955582074879997, - 0.5666113428730177, - 0.538386717392146, - 0.512720013252718, - 0.4884107589251774, - 0.46204094828452563, - 0.42966750343486376, - 0.3886684781752047, - 0.33882267184797554, - 0.2831505851017884, - 0.22672964033352386, - 0.1756006381389266, - 0.1347725614489887, - 0.10690098612917255, - 0.09126961555578395, - 0.0846194951722198, - 0.08219859948342105, - 0.07957191174049727, - 0.07449600582578418, - 0.0676401156636136, - 0.06243636081507321, - 0.06382355477014047, - 0.07622009691780603, - 0.10174389428392185, - 0.13895507016297043, - 0.18309805133508483, - 0.22802406796486946, - 0.268605975242558, - 0.3041976402288855, - 0.34099063823775194, - 0.39282426253593467, - 0.48034821219752266, - 0.6272384742791518, - 0.8553724617009028, - 1.1818752037430216, - 1.6098337397269582, - 2.1324603947593945 - ], - "pressure:J3:branch31_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch39_seg0": [ - 3.0347432102069494, - 3.905824414632246, - 4.853448293785262, - 5.829193162717441, - 6.782265730607681, - 7.669371787312379, - 8.45955633471803, - 9.136932345248766, - 9.697108964944974, - 10.147667534122924, - 10.500155958884237, - 10.7652179463588, - 10.952618488862658, - 11.065860677322446, - 11.105721732254226, - 11.07241228456479, - 10.965385171095537, - 10.789929300414766, - 10.553863522713959, - 10.268112425424366, - 9.946490032566084, - 9.60051026481093, - 9.239925092450616, - 8.871043264076238, - 8.497015190844976, - 8.12004809922207, - 7.74269128162954, - 7.369458911779563, - 7.007000561455631, - 6.662981672356616, - 6.343383963105955, - 6.050128779292208, - 5.778591520920802, - 5.516580361298607, - 5.2462199494774895, - 4.946688256454106, - 4.599156379210569, - 4.190944629115262, - 3.720749171154422, - 3.1982079426933767, - 2.64443892186967, - 2.088292173423395, - 1.5607289386662044, - 1.0896930959187963, - 0.6956202554774481, - 0.3894218064770252, - 0.1698676964946111, - 0.029680475707484603, - -0.04463081082851336, - -0.06729636073115948, - -0.04945366614958851, - 2.7457119336843435e-05, - 0.07654442189031828, - 0.1768554989003857, - 0.2967858300068969, - 0.430406851034774, - 0.5682786407077659, - 0.6988544902336635, - 0.8103321932385544, - 0.8932502440992496, - 0.9422235326837042, - 0.9578816800792604, - 0.9459419955689092, - 0.915027056077783, - 0.8751570219175103, - 0.8338727871430299, - 0.7948871806328757, - 0.7575927404783752, - 0.7178771594185026, - 0.6703621854138626, - 0.6109426809932438, - 0.5386341810690588, - 0.4568797376725309, - 0.3723602927719912, - 0.29358292427506816, - 0.228175763659394, - 0.18078591755002685, - 0.1514866184528562, - 0.13652933138890996, - 0.1295546582718683, - 0.1240990829601473, - 0.11631133471500309, - 0.10623087876385282, - 0.09792876962576931, - 0.098060386964306, - 0.1130863839864986, - 0.1468066016730099, - 0.19814913653342, - 0.2612554987309966, - 0.32773241147541116, - 0.38985098864917633, - 0.4454533558022898, - 0.5016302511005682, - 0.5763954681371557, - 0.6981167920758774, - 0.9006113634521017, - 1.2171198186177776, - 1.6746381071388634, - 2.2823348977907516, - 3.0347432102069494 - ], - "pressure:J3:branch39_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch52_seg0": [ - 0.8679406784391086, - 1.1011358277265446, - 1.3462656396015744, - 1.5905979857951085, - 1.8215264746817446, - 2.0294540254588482, - 2.2086521029883057, - 2.357639762579209, - 2.4771362890841915, - 2.5705805918487976, - 2.641748624146823, - 2.6929326826715734, - 2.726195369128162, - 2.7416397171061773, - 2.7386483317389025, - 2.717336418147295, - 2.6774838520763953, - 2.6211486785919442, - 2.5511418871139497, - 2.470513364090783, - 2.3833264786224566, - 2.292224706214224, - 2.19924272162572, - 2.105476517824529, - 2.0111668748346787, - 1.9166871170186683, - 1.8227595838792192, - 1.7308247567346027, - 1.6428788978286035, - 1.5609831222554877, - 1.4862935495019243, - 1.4185092617725894, - 1.3553607257154703, - 1.292488444420474, - 1.2244744104513334, - 1.1457337539000945, - 1.0520221848475404, - 0.9413827504651905, - 0.8154637167651378, - 0.6788293460077831, - 0.5385308315705498, - 0.4031120852443895, - 0.28045640971861513, - 0.17678629609543534, - 0.09548284601413713, - 0.037594910807229646, - 0.00047803906044251594, - -0.018889529505968793, - -0.024665670647950888, - -0.0206627316504165, - -0.008936642385879065, - 0.008817442794916681, - 0.03211632452979477, - 0.06054765485954655, - 0.09289824120651342, - 0.12742462133346483, - 0.16132155401800863, - 0.1913988934212677, - 0.21479545127798869, - 0.22964554025210634, - 0.23540584286948102, - 0.2331905004883414, - 0.2253726606133416, - 0.21451213181160803, - 0.2032160891015178, - 0.19295261340126604, - 0.18390292407098094, - 0.17516117469978254, - 0.16513884413977245, - 0.15230184606684039, - 0.13590768386813792, - 0.11624163284844274, - 0.09492189876922233, - 0.07414172505414021, - 0.05624509542278959, - 0.04290601898406475, - 0.03473254370225218, - 0.03092598640241894, - 0.02988514800484473, - 0.029667765597504767, - 0.028679284492476257, - 0.026449314398749483, - 0.023686004979693694, - 0.02206807792047472, - 0.02363379087612132, - 0.02991070954359219, - 0.04130947023824975, - 0.05676990452515919, - 0.07400223092748434, - 0.09057610435594922, - 0.10478731372315062, - 0.11709434406962874, - 0.1308481198828106, - 0.15232389034905067, - 0.1901505178709169, - 0.2535486842208331, - 0.35020936999059593, - 0.48592281972306034, - 0.6598046813309106, - 0.8679406784391086 - ], - "pressure:J3:branch52_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch70_seg0": [ - 1.8193778783708163, - 2.3162981198008006, - 2.84264252129943, - 3.371147140369142, - 3.8743559708443778, - 4.330811625986205, - 4.727055250098649, - 5.058700756888755, - 5.326355917293565, - 5.536823180267386, - 5.698069041760573, - 5.815112858279494, - 5.892841297131569, - 5.931690700022503, - 5.930690151072129, - 5.8900341908143545, - 5.8090853746482445, - 5.692066520913285, - 5.54457313186008, - 5.3732019954018035, - 5.186538580174336, - 4.990509093098673, - 4.789781280600873, - 4.586969223083449, - 4.3828344045626455, - 4.178218330570792, - 3.974600481050209, - 3.7749184528811255, - 3.5833498340696313, - 3.40430363346014, - 3.2405002093297433, - 3.0916693961715582, - 2.953448184557505, - 2.8169490429027504, - 2.6708455032195464, - 2.5031040958627773, - 2.304295241073254, - 2.06947086685508, - 1.8014161003530784, - 1.5089790733435895, - 1.2067723292040902, - 0.9127854438335576, - 0.644138063584233, - 0.41461827928004413, - 0.2324234414654874, - 0.1003731038023289, - 0.01375132781093878, - -0.03358317515469394, - -0.05044129241812853, - -0.045003723248878136, - -0.02213121656541393, - 0.014305890822004372, - 0.06300630222312896, - 0.12297303250101778, - 0.19173206454768346, - 0.2657133746359719, - 0.33908266350926797, - 0.40508785333225933, - 0.4574784403820526, - 0.49199477445150774, - 0.5070508992036769, - 0.504644227708478, - 0.48954040085220574, - 0.4670963296385421, - 0.44299698809297067, - 0.420635224284927, - 0.4007544107104716, - 0.38172638509868717, - 0.3603221978039644, - 0.33326369187354987, - 0.2987471407310548, - 0.25713647293043845, - 0.21156848177539797, - 0.1665758967985589, - 0.12715889499330962, - 0.09709904355106286, - 0.07796569224832231, - 0.06841725475108969, - 0.0652610986073501, - 0.06441402121540023, - 0.062358447604341824, - 0.05782283363686019, - 0.052003978384750245, - 0.048243382005847345, - 0.05082886347086885, - 0.06313841490597019, - 0.08637022196450697, - 0.11860104063644901, - 0.15523235868563695, - 0.19112303465605907, - 0.2224078977182456, - 0.24953930551848996, - 0.27899684667405966, - 0.32350829146305266, - 0.4010886335787575, - 0.5312956863637036, - 0.7313011211915373, - 1.0139531759687495, - 1.3790507727925834, - 1.8193778783708163 - ], - "pressure:J3:branch70_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch79_seg0": [ - 1.3453754356996153, - 1.7100711600543677, - 2.0948558803909263, - 2.479627596315983, - 2.844408495831115, - 3.1738496989218805, - 3.458597409810326, - 3.6959117884415984, - 3.8866793099167993, - 4.036204093222547, - 4.150296658136934, - 4.2327650689503, - 4.286977002206979, - 4.313195111344209, - 4.310637369582192, - 4.2793612672833925, - 4.21901704402046, - 4.132674567819162, - 4.0245103221827785, - 3.8993440614283466, - 3.7634307039380306, - 3.621003102737282, - 3.475374999694432, - 3.328338356454603, - 3.18036255855454, - 3.032029468437579, - 2.884417798990852, - 2.7397162299430353, - 2.6010064295249906, - 2.471531364979193, - 2.353218252025291, - 2.2457956342872327, - 2.145913772285833, - 2.0469572893423247, - 1.9405322021931004, - 1.8178401057216982, - 1.6720174765032176, - 1.4996847362653596, - 1.303024021645052, - 1.0887890366681303, - 0.867849531749452, - 0.6534859201230465, - 0.458221384363663, - 0.2921064167280919, - 0.16091357338929177, - 0.06654558867827466, - 0.005294065210583412, - -0.027468925795207832, - -0.03829328613903464, - -0.033170882152961684, - -0.015572059644906393, - 0.011732254653704914, - 0.04790569857276704, - 0.09223614120997321, - 0.1429091596512113, - 0.19725631339757968, - 0.2509317378322778, - 0.298953447478296, - 0.33675546285637925, - 0.3612688696276962, - 0.37145898606853894, - 0.36892633259757035, - 0.35724272292939263, - 0.3404343537664236, - 0.3226471404231663, - 0.3063078428079544, - 0.29186849976235846, - 0.27803015980358486, - 0.26235393277505736, - 0.2424103872858893, - 0.2169208575591022, - 0.18621996726351778, - 0.15270824030770136, - 0.11977306981899481, - 0.09111748069803678, - 0.06947213384096121, - 0.05592465917179679, - 0.049375651754510703, - 0.047407475892416145, - 0.046966030672971816, - 0.04549003962481539, - 0.04210641102972734, - 0.03778624512890579, - 0.03507171270053271, - 0.0371508778026223, - 0.04649915459479592, - 0.06391401712344447, - 0.08787631000646821, - 0.11492145557561032, - 0.14121597868768912, - 0.1639583835958273, - 0.18361590867282235, - 0.20513474970475018, - 0.23808226594650392, - 0.29582804833807785, - 0.3928334418709925, - 0.5415182974143693, - 0.7511380101179834, - 1.0209950310671672, - 1.3453754356996153 - ], - "pressure:J3:branch79_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch118_seg0": [ - 1.8541853174408005, - 2.3875404666272244, - 2.968209128999933, - 3.5665341172226173, - 4.151655552681672, - 4.696985929193465, - 5.183331312015349, - 5.600502207666285, - 5.9458665646982425, - 6.2237187265989204, - 6.440963378520773, - 6.604315136606779, - 6.719454901218609, - 6.788559387105825, - 6.8119446292173835, - 6.789513715921827, - 6.720990339427429, - 6.609578536738437, - 6.460304516701528, - 6.280133327512009, - 6.077805501294934, - 5.860709994259731, - 5.635004045372404, - 5.404648143109141, - 5.171616121518579, - 4.937236629831374, - 4.703076665726906, - 4.471928230496562, - 4.247915580249704, - 4.035774594306929, - 3.8391919064019477, - 3.6592526959971234, - 3.492944785778106, - 3.332623363799735, - 3.167057961268257, - 2.983337967198115, - 2.7698607213431705, - 2.519057601530298, - 2.230346630804875, - 1.9101583828372655, - 1.5718769297698596, - 1.233495454258236, - 0.9141442289530343, - 0.6308190011073403, - 0.3955310624061901, - 0.21449490525207485, - 0.086375997630423, - 0.006132870628350904, - -0.03472713706369533, - -0.04505590464390224, - -0.031681807759424946, - 0.00017541267524267827, - 0.04778284583564575, - 0.10933419611135563, - 0.18244659299838967, - 0.26349287381299474, - 0.3467921498514445, - 0.42533165383178995, - 0.49195835718677916, - 0.540957123360765, - 0.5692243451669052, - 0.5772648215183177, - 0.5686781649843914, - 0.5489003288308656, - 0.5240457456282683, - 0.4986917349693539, - 0.4750246810024133, - 0.45253747569793046, - 0.42861025643257644, - 0.3998880892409555, - 0.36387103846906604, - 0.3199950615708502, - 0.27044372219991286, - 0.21938796739739017, - 0.17205380597306477, - 0.13306629894702846, - 0.10518053477231272, - 0.08834018482858776, - 0.08010831524963354, - 0.07653217416114111, - 0.0736649480686821, - 0.06917363441287212, - 0.06317257742414104, - 0.05824510300070072, - 0.058509692670773245, - 0.06793751822947192, - 0.08877306800721298, - 0.12028229824982871, - 0.15880839152808685, - 0.19914196861360445, - 0.2365869069878336, - 0.2699239875169244, - 0.30363116202419843, - 0.3488871599077699, - 0.4231426992225344, - 0.5471611088843391, - 0.7410609117244735, - 1.0213414631470474, - 1.3935832853902748, - 1.8541853174408005 - ], - "pressure:J3:branch118_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch129_seg0": [ - 0.8124244385228222, - 1.0388221087167917, - 1.2816283038584473, - 1.5278923030271, - 1.7650836516206365, - 1.9827736512161562, - 2.17398142472183, - 2.3353982156565567, - 2.467344533390562, - 2.5720057303702686, - 2.652580907813003, - 2.712209939544956, - 2.7526065807947693, - 2.7747208448983285, - 2.778248388995725, - 2.7629973986460574, - 2.729145535974743, - 2.6779873465984876, - 2.6120817074016514, - 2.534415231757911, - 2.4487265705313255, - 2.3580000334074254, - 2.264570753738573, - 2.169801235791664, - 2.074289246565716, - 1.9784669112175934, - 1.8829944502361078, - 1.7891436133922614, - 1.698724542091399, - 1.6137310000336276, - 1.535544317957728, - 1.4642807042499926, - 1.3981962698289048, - 1.3336824475148774, - 1.26565924624686, - 1.1886965720991305, - 1.0981343859868047, - 0.9915558254177047, - 0.8692647463036588, - 0.7350250505947914, - 0.5950058221254448, - 0.4571378703099096, - 0.3294054758770104, - 0.21860320784558931, - 0.1288392061671065, - 0.06212067958783324, - 0.016924170203046117, - -0.00940155729159622, - -0.020672925284529402, - -0.020613119489112215, - -0.011844741699331262, - 0.003757367591862538, - 0.02529937440817183, - 0.05218732902396077, - 0.08346433439691762, - 0.11742809261452039, - 0.15160934356168068, - 0.18298306818777485, - 0.20864220616725526, - 0.22636008063618185, - 0.23531485457779003, - 0.23603060675429802, - 0.23034295472121652, - 0.22080653384057583, - 0.20989365487786368, - 0.19936184669354678, - 0.18983376740329638, - 0.18076575744513723, - 0.17084693778001658, - 0.1585960701723356, - 0.14310327155688807, - 0.12433016920593096, - 0.10349100071387009, - 0.08253417153014027, - 0.06372193055322029, - 0.04885460595288589, - 0.038863572744636594, - 0.03339856795104067, - 0.031157183128293072, - 0.030354048053503314, - 0.02939032433899237, - 0.027469091993133708, - 0.02492285173737944, - 0.02310331718419535, - 0.023844903953682255, - 0.0288032244520081, - 0.038629124185779726, - 0.05273982746315537, - 0.06930839927279352, - 0.08599512125361135, - 0.1009766771891647, - 0.11416572867593681, - 0.12804912575253138, - 0.14798897640164246, - 0.18180511794768342, - 0.23850805972185002, - 0.32596979833639417, - 0.4507916392176276, - 0.6138552615090389, - 0.8124244385228222 - ], - "pressure:J3:branch129_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:J3:branch146_seg0": [ - 0.8281269295998592, - 1.0565918356193322, - 1.2996302356482108, - 1.544487049317601, - 1.7783818798462683, - 1.9912066311488497, - 2.176498343815, - 2.3318862772886084, - 2.457593940888803, - 2.5566485149178466, - 2.632608467033778, - 2.6880533413506345, - 2.725226298025522, - 2.7444676148325953, - 2.7454512198200125, - 2.728135431187548, - 2.692297087067728, - 2.639712200545597, - 2.572823130684085, - 2.494702821782983, - 2.4092087616348423, - 2.3191447229136166, - 2.2267488919353493, - 2.1332666839262107, - 2.039119823244668, - 1.9446898846472116, - 1.850619509406354, - 1.7582152814125307, - 1.6693648752096486, - 1.5861065095931592, - 1.5097741465322132, - 1.4403845205616495, - 1.3760613754171869, - 1.3128819816110031, - 1.2456828649083118, - 1.1688989488156838, - 1.0780198503271414, - 0.9705917398201085, - 0.8475591216799723, - 0.7127599094095654, - 0.5727855240745341, - 0.43583326908428255, - 0.30991170749039765, - 0.20160274206020165, - 0.11498568952577731, - 0.051569809828247666, - 0.009491355438576168, - -0.014015258776322802, - -0.023027648513605437, - -0.021315388019685206, - -0.011313733245505175, - 0.0051244908844342825, - 0.027335956616835935, - 0.05480811916496345, - 0.08648266715317324, - 0.12073890504229039, - 0.15493532966004853, - 0.1859748109394452, - 0.21092168974892136, - 0.2276955487350619, - 0.23546077280583838, - 0.23502106184093402, - 0.22845193250495066, - 0.21826199211804304, - 0.20709183940279555, - 0.19659867251922183, - 0.18725075727975238, - 0.17837971238662795, - 0.1685358544619865, - 0.15618943946220165, - 0.1404311233995817, - 0.12134433754401946, - 0.10027811535060394, - 0.07928592552594385, - 0.06069418822421761, - 0.04631616090176996, - 0.03697438167401675, - 0.032160795327174765, - 0.03046704675262138, - 0.03000380206166571, - 0.029113995112350115, - 0.027108515624624817, - 0.02443998302916457, - 0.02258658569925177, - 0.023513328251499266, - 0.028842953815889118, - 0.039225079120347964, - 0.05388220301113596, - 0.07079189266409909, - 0.08755836679765676, - 0.10231421901205884, - 0.11509299965260975, - 0.12866004170828219, - 0.1486920802807112, - 0.18337168248281185, - 0.2417420961929392, - 0.3319364081199632, - 0.46004734837637273, - 0.6264610813474418, - 0.8281269295998592 - ], - "pressure:J3:branch146_seg0": [ - 9771.86540724502, - 11227.272445444783, - 12719.63641131926, - 14172.33567518528, - 15518.869942149606, - 16707.32218857556, - 17711.099865222008, - 18533.340245713014, - 19186.130148915126, - 19685.503282291207, - 20063.985025456797, - 20326.308255952827, - 20480.99666020775, - 20531.24085841406, - 20465.36853151661, - 20291.679308657964, - 20007.824219707192, - 19626.853931213926, - 19176.140906052486, - 18667.982302297594, - 18128.357536241874, - 17573.303094268893, - 17009.21746582039, - 16442.67435029377, - 15873.550564376033, - 15304.033638157582, - 14740.853584591345, - 14194.032299516983, - 13676.489464265702, - 13199.886835895333, - 12768.898907554976, - 12375.663548651939, - 12002.986321019253, - 11619.60661800051, - 11190.569404315896, - 10683.653659394935, - 10079.522860689935, - 9371.33039516836, - 8577.808901891547, - 7736.836912701943, - 6891.788381652393, - 6097.66867597734, - 5399.692074230867, - 4829.602347729512, - 4396.265849145025, - 4105.252798429124, - 3932.1715460592327, - 3852.9863505377084, - 3849.2246357563067, - 3894.2679493934347, - 3980.9521432079678, - 4103.405005124387, - 4255.903952346725, - 4439.020843179754, - 4642.274752398863, - 4852.047307088993, - 5051.283491841981, - 5219.403482426425, - 5340.6560497203245, - 5407.420682858008, - 5420.637150055175, - 5388.658113716114, - 5330.991002698791, - 5261.555090287087, - 5194.061417331398, - 5135.883359561252, - 5084.017980605026, - 5030.463801683828, - 4965.104920877149, - 4879.3838217286875, - 4771.957569733579, - 4646.732021707309, - 4516.30222217747, - 4395.6108293756, - 4297.4449438701395, - 4229.616309716961, - 4192.924197720992, - 4179.850268815262, - 4177.815332666594, - 4176.580755405289, - 4167.792150894796, - 4151.377657364118, - 4134.954948108233, - 4130.358449382914, - 4149.811517653751, - 4200.439940185214, - 4280.935953145391, - 4382.419751655755, - 4487.517642936444, - 4582.846643037068, - 4661.9852424751525, - 4733.638867406106, - 4825.705420748981, - 4982.764835933238, - 5261.0895394266145, - 5717.988071052226, - 6387.618285173897, - 7303.475803065959, - 8446.924665668736, - 9771.86540724502 - ], - "flow:branch5_seg0:J4": [ - 12.01342237653506, - 15.592573092974126, - 19.673757910087687, - 24.107171371942265, - 28.709618327640424, - 33.29692064201669, - 37.7065037918993, - 41.81484911015853, - 45.53691488577024, - 48.83415275745184, - 51.69595481937319, - 54.12462525660274, - 56.132505697355995, - 57.72318116975827, - 58.89575870706679, - 59.64989916537524, - 59.98331980900678, - 59.911330124475725, - 59.460184209448165, - 58.66873700034425, - 57.59019447757026, - 56.2757710268421, - 54.77503050282823, - 53.128834645670956, - 51.3678397564596, - 49.51765381997681, - 47.60220571303812, - 45.649249645497825, - 43.69215874526704, - 41.76790311090928, - 39.909339330767615, - 38.13740006121667, - 36.45146987214081, - 34.82343931023979, - 33.20039020813038, - 31.511167294096573, - 29.681178205584633, - 27.64785800754398, - 25.3801761835279, - 22.884382370477695, - 20.20970920679119, - 17.44234679443215, - 14.689287478030097, - 12.062110284221493, - 9.658921772561799, - 7.553874806025291, - 5.7821200214939905, - 4.354081826544976, - 3.2512683338417645, - 2.441678966823457, - 1.893046928294643, - 1.5726654268264566, - 1.456826280318055, - 1.524808366959556, - 1.7533376609322957, - 2.1141654257753695, - 2.567831898445563, - 3.0662552360263455, - 3.5576054279579874, - 3.994005670523314, - 4.338530798531113, - 4.572927356174479, - 4.698112351863511, - 4.729397519779681, - 4.692868106491009, - 4.613423373050754, - 4.508444691546087, - 4.383754226667658, - 4.233421012194113, - 4.044632276631294, - 3.8050150329632904, - 3.509029460445412, - 3.16404266877723, - 2.788830653614348, - 2.4110659682960933, - 2.059631862379127, - 1.7575419197364872, - 1.5150622104722768, - 1.329742292197813, - 1.187996246208747, - 1.0716771548714528, - 0.9667419339579754, - 0.8687888577577431, - 0.785830106255304, - 0.7360255115555853, - 0.7405928093630639, - 0.8158112903893467, - 0.9649717042408498, - 1.175732565839672, - 1.42477627522211, - 1.6862088529182588, - 1.9471687677022513, - 2.221886758661205, - 2.561326825899827, - 3.0563315365481905, - 3.8270293089069773, - 5.0053699566966205, - 6.71763230284061, - 9.042274734869864, - 12.01342237653506 - ], - "pressure:branch5_seg0:J4": [ - 9744.16229726736, - 11194.599956806338, - 12683.076757851146, - 14133.27148702075, - 15478.767234731991, - 16667.63447263888, - 17673.051391958026, - 18497.787844948314, - 19153.564990495306, - 19656.18379849312, - 20037.966640520597, - 20303.489529522343, - 20461.444670964902, - 20514.88880741616, - 20452.32148827052, - 20281.99643557901, - 20001.430713206617, - 19623.73357092128, - 19175.948930871666, - 18670.432984337487, - 18133.035766741046, - 17579.78759076062, - 17017.18028709012, - 16451.824510771305, - 15883.68021000542, - 15314.959314180587, - 14752.374103834318, - 14205.899387077008, - 13688.421049979448, - 13211.571310962203, - 12780.106289288511, - 12386.293568330993, - 12013.145245396845, - 11629.617712027943, - 11200.969441384785, - 10695.044395769328, - 10092.51891371846, - 9386.303232703764, - 8594.954721654663, - 7755.878940558139, - 6912.223874063475, - 6118.685341796551, - 5420.393522693644, - 4849.050582419695, - 4413.827273363895, - 4120.353741225783, - 3944.635339868977, - 3862.867030340297, - 3856.6415302924306, - 3899.531203665495, - 3984.2772000006726, - 4104.99940511467, - 4255.947897855497, - 4437.645612389175, - 4639.675167777827, - 4848.494546890686, - 5047.117682844224, - 5215.043375938387, - 5336.516145197653, - 5403.866943868288, - 5417.889255965082, - 5386.811023416129, - 5329.97707050948, - 5261.187519072089, - 5194.150451701324, - 5136.239494444195, - 5084.547780182455, - 5031.177206133867, - 4966.08341457796, - 4880.752421281977, - 4773.787334594608, - 4649.040255426197, - 4518.97997659345, - 4398.462355111709, - 4300.226485350159, - 4232.117495768742, - 4194.983100267256, - 4181.436925039981, - 4179.002882090576, - 4177.498489592714, - 4168.578811700477, - 4152.1188132032885, - 4135.632551208695, - 4130.854934061877, - 4149.95810032896, - 4200.059446224051, - 4279.947778979987, - 4380.843622232115, - 4485.50752977499, - 4580.618413565471, - 4659.713260129287, - 4731.3335462445075, - 4823.115141840556, - 4979.300186240946, - 5255.892525202177, - 5709.895689670558, - 6375.669163057067, - 7286.583575651511, - 8424.611486619271, - 9744.16229726736 - ], - "flow:J4:branch6_seg0": [ - 9.96203999028784, - 12.99516949029428, - 16.504387255919095, - 20.369492009960307, - 24.436283311035268, - 28.54252377780184, - 32.5384334476356, - 36.30341043359686, - 39.75026803729962, - 42.83255599775552, - 45.53064108682748, - 47.84181521890379, - 49.773861986476554, - 51.33011836705606, - 52.511435475760806, - 53.31695014833611, - 53.744891269093024, - 53.80563892899215, - 53.51857785421792, - 52.915643959414275, - 52.040470792902916, - 50.938253898080035, - 49.65400978294001, - 48.22611617539057, - 46.68475421629689, - 45.05463247241735, - 43.35789591628008, - 41.618848559088406, - 39.86614928349579, - 38.13199209740735, - 36.44666648797298, - 34.832068339027465, - 33.29309359092391, - 31.812030006947275, - 30.348689138450624, - 28.84486006967294, - 27.23557226532301, - 25.462476808077497, - 23.490295585094017, - 21.314155315144404, - 18.966740527678628, - 16.5141807680862, - 14.045249573797822, - 11.65729693674482, - 9.44106837612504, - 7.468381931731482, - 5.781055434190854, - 4.3966294086822275, - 3.3061982757942356, - 2.4866645676603394, - 1.910271226055955, - 1.5481266706506864, - 1.3776402285670803, - 1.3789827734350064, - 1.5318523411757152, - 1.8122102459670522, - 2.1871974942977466, - 2.6162321978264846, - 3.0540695124121693, - 3.457035655726055, - 3.7892313467367713, - 4.0296914968033555, - 4.1736025221601105, - 4.23034475941996, - 4.220014035184075, - 4.164220915651895, - 4.080123208552897, - 3.975791451308772, - 3.8490425238943717, - 3.690601166936986, - 3.4896709302173825, - 3.2399192617627595, - 2.944769013065141, - 2.6178167950509783, - 2.281309781156459, - 1.960350245355964, - 1.676687404981401, - 1.4426159090008766, - 1.259536883342223, - 1.118356134923628, - 1.0045666983457657, - 0.9050604253561486, - 0.8136150076498511, - 0.7342240817406968, - 0.6802971319963232, - 0.6695845237459149, - 0.7176165464001627, - 0.8303067391524391, - 1.0008172638139663, - 1.2114550664862285, - 1.4401232930371606, - 1.6725658185541832, - 1.9147985052885375, - 2.202798519404917, - 2.6070486969986026, - 3.2261425376652757, - 4.174603931469162, - 5.565337004883307, - 7.479830670928358, - 9.96203999028784 - ], - "pressure:J4:branch6_seg0": [ - 9744.16229726736, - 11194.599956806338, - 12683.076757851146, - 14133.27148702075, - 15478.767234731991, - 16667.63447263888, - 17673.051391958026, - 18497.787844948314, - 19153.564990495306, - 19656.18379849312, - 20037.966640520597, - 20303.489529522343, - 20461.444670964902, - 20514.88880741616, - 20452.32148827052, - 20281.99643557901, - 20001.430713206617, - 19623.73357092128, - 19175.948930871666, - 18670.432984337487, - 18133.035766741046, - 17579.78759076062, - 17017.18028709012, - 16451.824510771305, - 15883.68021000542, - 15314.959314180587, - 14752.374103834318, - 14205.899387077008, - 13688.421049979448, - 13211.571310962203, - 12780.106289288511, - 12386.293568330993, - 12013.145245396845, - 11629.617712027943, - 11200.969441384785, - 10695.044395769328, - 10092.51891371846, - 9386.303232703764, - 8594.954721654663, - 7755.878940558139, - 6912.223874063475, - 6118.685341796551, - 5420.393522693644, - 4849.050582419695, - 4413.827273363895, - 4120.353741225783, - 3944.635339868977, - 3862.867030340297, - 3856.6415302924306, - 3899.531203665495, - 3984.2772000006726, - 4104.99940511467, - 4255.947897855497, - 4437.645612389175, - 4639.675167777827, - 4848.494546890686, - 5047.117682844224, - 5215.043375938387, - 5336.516145197653, - 5403.866943868288, - 5417.889255965082, - 5386.811023416129, - 5329.97707050948, - 5261.187519072089, - 5194.150451701324, - 5136.239494444195, - 5084.547780182455, - 5031.177206133867, - 4966.08341457796, - 4880.752421281977, - 4773.787334594608, - 4649.040255426197, - 4518.97997659345, - 4398.462355111709, - 4300.226485350159, - 4232.117495768742, - 4194.983100267256, - 4181.436925039981, - 4179.002882090576, - 4177.498489592714, - 4168.578811700477, - 4152.1188132032885, - 4135.632551208695, - 4130.854934061877, - 4149.95810032896, - 4200.059446224051, - 4279.947778979987, - 4380.843622232115, - 4485.50752977499, - 4580.618413565471, - 4659.713260129287, - 4731.3335462445075, - 4823.115141840556, - 4979.300186240946, - 5255.892525202177, - 5709.895689670558, - 6375.669163057067, - 7286.583575651511, - 8424.611486619271, - 9744.16229726736 - ], - "flow:J4:branch91_seg0": [ - 1.0110324641653636, - 1.2819224334869819, - 1.5664996325418146, - 1.8499440876868098, - 2.117732166841171, - 2.35879211648231, - 2.5665512925812664, - 2.7392900322337748, - 2.877983459894487, - 2.986504591674029, - 3.069239443087194, - 3.1288511912409005, - 3.1676270254545993, - 3.185743304365816, - 3.182434466138072, - 3.1578536614364685, - 3.1117808747300213, - 3.046581824032533, - 2.9655569499562677, - 2.8722110284583215, - 2.771246764084878, - 2.6657163413166463, - 2.5579592378257474, - 2.449236724365907, - 2.339834207953533, - 2.230193048191126, - 2.1211698855862315, - 2.0144491821783466, - 1.912353356940343, - 1.8172649261758378, - 1.7305183965117956, - 1.6517348338966724, - 1.5782620772093099, - 1.5050413789360155, - 1.4257792291898967, - 1.3340161670357882, - 1.2248563450833083, - 1.0960799415088163, - 0.9495935111063006, - 0.7907543252553916, - 0.6277221856750583, - 0.47040418184936206, - 0.3279356028484356, - 0.20752185429904524, - 0.11302717602986949, - 0.04570402164443462, - 0.002446257587965809, - -0.02024462400314852, - -0.027166968243922607, - -0.022724824409156363, - -0.00929257907322656, - 0.011191955598241331, - 0.03814825608218732, - 0.07109599124725983, - 0.10862174009255243, - 0.1486598184396833, - 0.18795879864326653, - 0.22280718102568461, - 0.2498944164427649, - 0.26705613326509975, - 0.27370504988174293, - 0.2711201413497362, - 0.26206418221693345, - 0.249511240317685, - 0.2364581665602072, - 0.22459558291150264, - 0.21411896078797998, - 0.2039640443996712, - 0.19228996458093944, - 0.17732559464217137, - 0.1582306644477836, - 0.13534659507120897, - 0.11056712048696331, - 0.08644243415736207, - 0.06568476402412501, - 0.0502211735614057, - 0.040742673015996926, - 0.0363139048885246, - 0.035063942444193474, - 0.03475057798869453, - 0.033540769854899274, - 0.030902061084528407, - 0.027672500057271603, - 0.025808884677478654, - 0.027667618439408893, - 0.035014739134479354, - 0.04829319892505216, - 0.06626754470883187, - 0.08626973147997832, - 0.10548417534191733, - 0.12196105845008735, - 0.13627110301146864, - 0.15234330185689413, - 0.17749149515471474, - 0.2217506307096022, - 0.2958254400795055, - 0.4085582852751677, - 0.5666805291138854, - 0.7690536869357355, - 1.0110324641653636 - ], - "pressure:J4:branch91_seg0": [ - 9744.16229726736, - 11194.599956806338, - 12683.076757851146, - 14133.27148702075, - 15478.767234731991, - 16667.63447263888, - 17673.051391958026, - 18497.787844948314, - 19153.564990495306, - 19656.18379849312, - 20037.966640520597, - 20303.489529522343, - 20461.444670964902, - 20514.88880741616, - 20452.32148827052, - 20281.99643557901, - 20001.430713206617, - 19623.73357092128, - 19175.948930871666, - 18670.432984337487, - 18133.035766741046, - 17579.78759076062, - 17017.18028709012, - 16451.824510771305, - 15883.68021000542, - 15314.959314180587, - 14752.374103834318, - 14205.899387077008, - 13688.421049979448, - 13211.571310962203, - 12780.106289288511, - 12386.293568330993, - 12013.145245396845, - 11629.617712027943, - 11200.969441384785, - 10695.044395769328, - 10092.51891371846, - 9386.303232703764, - 8594.954721654663, - 7755.878940558139, - 6912.223874063475, - 6118.685341796551, - 5420.393522693644, - 4849.050582419695, - 4413.827273363895, - 4120.353741225783, - 3944.635339868977, - 3862.867030340297, - 3856.6415302924306, - 3899.531203665495, - 3984.2772000006726, - 4104.99940511467, - 4255.947897855497, - 4437.645612389175, - 4639.675167777827, - 4848.494546890686, - 5047.117682844224, - 5215.043375938387, - 5336.516145197653, - 5403.866943868288, - 5417.889255965082, - 5386.811023416129, - 5329.97707050948, - 5261.187519072089, - 5194.150451701324, - 5136.239494444195, - 5084.547780182455, - 5031.177206133867, - 4966.08341457796, - 4880.752421281977, - 4773.787334594608, - 4649.040255426197, - 4518.97997659345, - 4398.462355111709, - 4300.226485350159, - 4232.117495768742, - 4194.983100267256, - 4181.436925039981, - 4179.002882090576, - 4177.498489592714, - 4168.578811700477, - 4152.1188132032885, - 4135.632551208695, - 4130.854934061877, - 4149.95810032896, - 4200.059446224051, - 4279.947778979987, - 4380.843622232115, - 4485.50752977499, - 4580.618413565471, - 4659.713260129287, - 4731.3335462445075, - 4823.115141840556, - 4979.300186240946, - 5255.892525202177, - 5709.895689670558, - 6375.669163057067, - 7286.583575651511, - 8424.611486619271, - 9744.16229726736 - ], - "flow:J4:branch131_seg0": [ - 1.0403499220818566, - 1.3154811691928616, - 1.6028710216267739, - 1.8877352742951525, - 2.1556028497639828, - 2.395604747732534, - 2.6015190516824336, - 2.772148644327879, - 2.9086633885761493, - 3.015092168022288, - 3.096074289458523, - 3.1539588464580577, - 3.1910166854248576, - 3.207319498336381, - 3.201888765167928, - 3.17509535560266, - 3.126647665183721, - 3.0591093714510458, - 2.9760494052739794, - 2.880882012471642, - 2.7784769205824706, - 2.6718007874454264, - 2.563061482062478, - 2.4534817459144858, - 2.343251332209185, - 2.2328282993683293, - 2.123139911171826, - 2.0159519042310685, - 1.9136561048309109, - 1.8186460873261, - 1.7321544462828458, - 1.6535968882925298, - 1.5801142040075904, - 1.5063679243564878, - 1.4259218404898568, - 1.3322910573878448, - 1.2207495951783138, - 1.089301257957665, - 0.9402870873275785, - 0.7794727300778972, - 0.6152464934375078, - 0.4577618444965862, - 0.3161023013838378, - 0.19729149317762604, - 0.10482622040689159, - 0.039788852649376615, - -0.001381670284828871, - -0.02230295813410106, - -0.02776297370854882, - -0.022260776427726628, - -0.007931718688085763, - 0.013346800577528972, - 0.04103779566878716, - 0.0747296022772899, - 0.11286357966402771, - 0.15329536136863434, - 0.19267560550454954, - 0.22721585717417606, - 0.2536414991030525, - 0.26991388153215884, - 0.2755944019126002, - 0.27211571802138773, - 0.26244564748646637, - 0.24954152004203756, - 0.2363959047467269, - 0.2246068744873567, - 0.21420252220521027, - 0.20399873095921386, - 0.19208852371880247, - 0.17670551505213658, - 0.15711343829812463, - 0.1337636036114436, - 0.10870653522512579, - 0.08457142440600836, - 0.06407142311551045, - 0.04906044346175754, - 0.040111841739089375, - 0.036132396582875766, - 0.03514146641139663, - 0.034889533296424066, - 0.033569686670788135, - 0.03077944751729853, - 0.0275013500506204, - 0.02579713983712853, - 0.028060761119853284, - 0.03599354648266968, - 0.04990154506413207, - 0.06839742037957869, - 0.08864557054572753, - 0.10783703339396428, - 0.12412450143101084, - 0.1383318461365996, - 0.15474495151577355, - 0.18103681134019578, - 0.2275322088399859, - 0.30506133116219575, - 0.42220773995228966, - 0.5856147688434195, - 0.7933903770057685, - 1.0403499220818566 - ], - "pressure:J4:branch131_seg0": [ - 9744.16229726736, - 11194.599956806338, - 12683.076757851146, - 14133.27148702075, - 15478.767234731991, - 16667.63447263888, - 17673.051391958026, - 18497.787844948314, - 19153.564990495306, - 19656.18379849312, - 20037.966640520597, - 20303.489529522343, - 20461.444670964902, - 20514.88880741616, - 20452.32148827052, - 20281.99643557901, - 20001.430713206617, - 19623.73357092128, - 19175.948930871666, - 18670.432984337487, - 18133.035766741046, - 17579.78759076062, - 17017.18028709012, - 16451.824510771305, - 15883.68021000542, - 15314.959314180587, - 14752.374103834318, - 14205.899387077008, - 13688.421049979448, - 13211.571310962203, - 12780.106289288511, - 12386.293568330993, - 12013.145245396845, - 11629.617712027943, - 11200.969441384785, - 10695.044395769328, - 10092.51891371846, - 9386.303232703764, - 8594.954721654663, - 7755.878940558139, - 6912.223874063475, - 6118.685341796551, - 5420.393522693644, - 4849.050582419695, - 4413.827273363895, - 4120.353741225783, - 3944.635339868977, - 3862.867030340297, - 3856.6415302924306, - 3899.531203665495, - 3984.2772000006726, - 4104.99940511467, - 4255.947897855497, - 4437.645612389175, - 4639.675167777827, - 4848.494546890686, - 5047.117682844224, - 5215.043375938387, - 5336.516145197653, - 5403.866943868288, - 5417.889255965082, - 5386.811023416129, - 5329.97707050948, - 5261.187519072089, - 5194.150451701324, - 5136.239494444195, - 5084.547780182455, - 5031.177206133867, - 4966.08341457796, - 4880.752421281977, - 4773.787334594608, - 4649.040255426197, - 4518.97997659345, - 4398.462355111709, - 4300.226485350159, - 4232.117495768742, - 4194.983100267256, - 4181.436925039981, - 4179.002882090576, - 4177.498489592714, - 4168.578811700477, - 4152.1188132032885, - 4135.632551208695, - 4130.854934061877, - 4149.95810032896, - 4200.059446224051, - 4279.947778979987, - 4380.843622232115, - 4485.50752977499, - 4580.618413565471, - 4659.713260129287, - 4731.3335462445075, - 4823.115141840556, - 4979.300186240946, - 5255.892525202177, - 5709.895689670558, - 6375.669163057067, - 7286.583575651511, - 8424.611486619271, - 9744.16229726736 - ], - "flow:branch6_seg0:J5": [ - 9.949951303199382, - 12.982465486658521, - 16.49157598243039, - 20.35748131540242, - 24.425520597315643, - 28.533271730018246, - 32.530741040250255, - 36.29750505701614, - 39.74555103138505, - 42.82896767759098, - 45.528203367788585, - 47.840111074980484, - 49.773186021391375, - 51.33030518874553, - 52.512528488093075, - 53.31907818384881, - 53.747780658563514, - 53.80931664523624, - 53.52277085880953, - 52.92016932615898, - 52.04521379278245, - 50.94307144291381, - 49.65884544210082, - 48.230974109091264, - 46.689612697070885, - 45.05946853680482, - 43.36263600285156, - 41.62337785869977, - 39.87035807298907, - 38.1358165763987, - 36.450095650453854, - 34.835225441597636, - 33.296240198053425, - 31.815401769877585, - 30.352621225376357, - 28.849575261253204, - 27.241239912999234, - 25.468881899368178, - 23.497380916913283, - 21.321420732794646, - 18.97376356237416, - 16.520575721038337, - 14.050684108851442, - 11.661472499856268, - 9.44410819395154, - 7.4702649480458945, - 5.781963444837696, - 4.396859771383335, - 3.305916339680465, - 2.4859868580004543, - 1.9093146816790343, - 1.5468590725153148, - 1.3761297364017304, - 1.3772931890573297, - 1.5300002060329458, - 1.8104116321200314, - 2.185599105008773, - 2.614987930989553, - 3.053266678666779, - 3.456775195179723, - 3.789355998508296, - 4.03010834040659, - 4.174222110978378, - 4.230948604959996, - 4.220561762024133, - 4.164698947727956, - 4.080561081697213, - 3.9762862317320713, - 3.8496784106198687, - 3.6914381606190316, - 3.490674484239136, - 3.2410310693137827, - 2.9458714294689123, - 2.61877130897212, - 2.282009094208138, - 1.960776019803985, - 1.676869941815149, - 1.4426263041458913, - 1.2595120472643846, - 1.1183916822671347, - 1.0046700535128155, - 0.905208816795856, - 0.813720773558285, - 0.7341619486517406, - 0.6799967823399359, - 0.6689800925078565, - 0.7168088057793252, - 0.829399560247106, - 0.9999269548303423, - 1.2107090152343227, - 1.4395139588033694, - 1.6719226462662826, - 1.9138072874087626, - 2.201016337279936, - 2.6040132732688623, - 3.2212893979269497, - 4.167875529790003, - 5.556478569392547, - 7.4690173931228445, - 9.949951303199382 - ], - "pressure:branch6_seg0:J5": [ - 7871.842208222718, - 8949.294638551746, - 10124.060105396304, - 11345.641734743027, - 12559.728794267188, - 13717.19191800497, - 14781.067752541649, - 15731.986660528248, - 16558.072222026036, - 17260.05502994338, - 17847.82946880565, - 18323.43423122074, - 18693.79399941476, - 18960.34455735097, - 19119.70382809996, - 19174.823496939654, - 19123.88278518456, - 18973.923608170782, - 18738.203574039704, - 18427.56476690557, - 18059.708408675484, - 17648.866517684983, - 17205.755211538555, - 16739.547307542573, - 16255.239829999844, - 15757.596012435715, - 15252.484894245457, - 14747.556343775203, - 14252.472203635964, - 13777.308675611841, - 13329.152805509151, - 12909.209995105031, - 12511.843384315282, - 12121.810491087712, - 11718.57602244337, - 11278.981244221462, - 10783.644165644127, - 10218.834195092815, - 9585.644822438882, - 8897.09390384834, - 8176.221035337789, - 7456.305510918006, - 6770.865657661741, - 6149.71915705807, - 5613.156152234441, - 5175.053160455033, - 4833.509495927186, - 4581.750766376444, - 4409.68125205351, - 4302.427105861876, - 4251.533156466107, - 4248.997867633374, - 4289.037552068953, - 4368.26962878947, - 4479.480666603174, - 4614.030850483991, - 4759.677183182877, - 4901.7156218548225, - 5026.17355122247, - 5122.583397176516, - 5184.592506647285, - 5212.158532413945, - 5212.152486007123, - 5191.787039992079, - 5160.601618952775, - 5125.636724264829, - 5089.110835599318, - 5049.571068595063, - 5002.625259602261, - 4943.093018059291, - 4868.089563142555, - 4777.775108429183, - 4677.300357398314, - 4574.742224159219, - 4479.129825981719, - 4398.170456505191, - 4336.208163065592, - 4292.584519908914, - 4262.82578193487, - 4240.979446510514, - 4220.889656009761, - 4199.898396477684, - 4179.511864713094, - 4164.878314125422, - 4163.254193250557, - 4180.707445753494, - 4220.026292248248, - 4278.957270485133, - 4349.695714118819, - 4423.825463019443, - 4494.418797307068, - 4561.612683938233, - 4636.5046660943835, - 4742.049612017433, - 4912.024715192156, - 5185.658276301288, - 5597.579884372511, - 6179.78351609905, - 6940.745261840969, - 7871.842208222718 - ], - "flow:J5:branch7_seg0": [ - 4.689906455136196, - 6.150072052404489, - 7.879286760188654, - 9.829693648252064, - 11.932302127152077, - 14.1080077124446, - 16.277677180462437, - 18.37143151155885, - 20.33348902051738, - 22.127290596701805, - 23.73096877850288, - 25.134448030426785, - 26.3355206068171, - 27.33290172354485, - 28.126036764959387, - 28.71361854880292, - 29.094381810744853, - 29.27170623005097, - 29.253042673036187, - 29.05252281571169, - 28.690103748884656, - 28.188371709812678, - 27.57109305560169, - 26.85991555964967, - 26.0731886012672, - 25.22629967251223, - 24.332728808434982, - 23.406126298234852, - 22.461650098558472, - 21.51612344254642, - 20.58618532127355, - 19.685512293994364, - 18.820685134311333, - 17.988100623922293, - 17.17285844513939, - 16.349854412599836, - 15.488114960594775, - 14.55687475216627, - 13.533383292024087, - 12.407686717461305, - 11.187602668142167, - 9.898111611635017, - 8.57809771741234, - 7.274227145798818, - 6.03397279505795, - 4.898269863354606, - 3.8962624664877885, - 3.044806260244323, - 2.347131987970614, - 1.7975778804660771, - 1.385240976284297, - 1.0969309275372472, - 0.9208280517265375, - 0.8458987595799501, - 0.8613084318701099, - 0.9548144215069988, - 1.1104616649788526, - 1.3085402900528085, - 1.5263585777067323, - 1.7407854242178318, - 1.9311376792714012, - 2.082869347231564, - 2.188775666537135, - 2.2492284920840255, - 2.2708854736982955, - 2.262980078734814, - 2.234353621583229, - 2.190659634446571, - 2.1330498572525958, - 2.058849321628206, - 1.9635620493236872, - 1.8436939328532234, - 1.699345199602377, - 1.535288742935518, - 1.3608588736510319, - 1.1878578726617033, - 1.0277631539281782, - 0.8887518584490324, - 0.7742417892445261, - 0.6823593962243887, - 0.6077235288071043, - 0.5442039422838942, - 0.48771815383410405, - 0.4383523506159707, - 0.4007728558107668, - 0.3826022655281825, - 0.391736187082058, - 0.4327475105023591, - 0.5048765176648417, - 0.6017717048707897, - 0.7137315630433408, - 0.8326869549801363, - 0.9580825184469488, - 1.1022258557259152, - 1.2937078582845176, - 1.5762321271414104, - 2.00471439108108, - 2.6367015546136483, - 3.52076486665611, - 4.689906455136196 - ], - "pressure:J5:branch7_seg0": [ - 7871.842208222718, - 8949.294638551746, - 10124.060105396304, - 11345.641734743027, - 12559.728794267188, - 13717.19191800497, - 14781.067752541649, - 15731.986660528248, - 16558.072222026036, - 17260.05502994338, - 17847.82946880565, - 18323.43423122074, - 18693.79399941476, - 18960.34455735097, - 19119.70382809996, - 19174.823496939654, - 19123.88278518456, - 18973.923608170782, - 18738.203574039704, - 18427.56476690557, - 18059.708408675484, - 17648.866517684983, - 17205.755211538555, - 16739.547307542573, - 16255.239829999844, - 15757.596012435715, - 15252.484894245457, - 14747.556343775203, - 14252.472203635964, - 13777.308675611841, - 13329.152805509151, - 12909.209995105031, - 12511.843384315282, - 12121.810491087712, - 11718.57602244337, - 11278.981244221462, - 10783.644165644127, - 10218.834195092815, - 9585.644822438882, - 8897.09390384834, - 8176.221035337789, - 7456.305510918006, - 6770.865657661741, - 6149.71915705807, - 5613.156152234441, - 5175.053160455033, - 4833.509495927186, - 4581.750766376444, - 4409.68125205351, - 4302.427105861876, - 4251.533156466107, - 4248.997867633374, - 4289.037552068953, - 4368.26962878947, - 4479.480666603174, - 4614.030850483991, - 4759.677183182877, - 4901.7156218548225, - 5026.17355122247, - 5122.583397176516, - 5184.592506647285, - 5212.158532413945, - 5212.152486007123, - 5191.787039992079, - 5160.601618952775, - 5125.636724264829, - 5089.110835599318, - 5049.571068595063, - 5002.625259602261, - 4943.093018059291, - 4868.089563142555, - 4777.775108429183, - 4677.300357398314, - 4574.742224159219, - 4479.129825981719, - 4398.170456505191, - 4336.208163065592, - 4292.584519908914, - 4262.82578193487, - 4240.979446510514, - 4220.889656009761, - 4199.898396477684, - 4179.511864713094, - 4164.878314125422, - 4163.254193250557, - 4180.707445753494, - 4220.026292248248, - 4278.957270485133, - 4349.695714118819, - 4423.825463019443, - 4494.418797307068, - 4561.612683938233, - 4636.5046660943835, - 4742.049612017433, - 4912.024715192156, - 5185.658276301288, - 5597.579884372511, - 6179.78351609905, - 6940.745261840969, - 7871.842208222718 - ], - "flow:J5:branch10_seg0": [ - 0.9505219750032828, - 1.2310358804035406, - 1.5454181776836375, - 1.8805219122090295, - 2.221068894654334, - 2.5527261514540616, - 2.863703090393386, - 3.1460165519074286, - 3.3948007776206093, - 3.60929194742853, - 3.7903885189099755, - 3.939516047849708, - 4.058633013639171, - 4.148213593774045, - 4.208360601334602, - 4.239014706895456, - 4.239931088226809, - 4.212595202821526, - 4.159202890114669, - 4.083163218415051, - 3.9888717424936018, - 3.880314120941244, - 3.761206108289813, - 3.6343265252784978, - 3.5015427756724633, - 3.364347571061926, - 3.2241784323484985, - 3.082929697940378, - 2.943053268874391, - 2.807315739503796, - 2.6780587772215787, - 2.5565484766404167, - 2.4421365960921246, - 2.3318595915732523, - 2.2208576111616463, - 2.102992628213272, - 1.9722514726318805, - 1.8239977928147704, - 1.6566859171343458, - 1.4718668211236918, - 1.2747633204466553, - 1.0732714721633616, - 0.8765029876703159, - 0.6933139302802561, - 0.530983812732716, - 0.39419011575096174, - 0.28432340297116204, - 0.20083354066931278, - 0.14092151280482443, - 0.10122336599979273, - 0.07875538745555646, - 0.0708138215443145, - 0.0757789014877306, - 0.09226823720050498, - 0.11868254860399657, - 0.15299623667030646, - 0.19212492975180426, - 0.23233666811932868, - 0.26967244207666063, - 0.3006805085383754, - 0.32290950401541474, - 0.3356453210162777, - 0.3396933579561395, - 0.3369110637250406, - 0.3298736517756736, - 0.32072485932223593, - 0.31076004011111535, - 0.3001604523137676, - 0.2880832974096911, - 0.2732084278547139, - 0.25439383152046463, - 0.23126244887453393, - 0.20461080669037007, - 0.17619646448485946, - 0.14844344373971738, - 0.12370907898790787, - 0.10366524048009812, - 0.08877819331182918, - 0.07843823667263705, - 0.0711397053664484, - 0.06516888783226531, - 0.0593674388062922, - 0.05353519579003097, - 0.04859150459073203, - 0.04627982166829839, - 0.048442080452773637, - 0.056362049917649065, - 0.07003134467953588, - 0.0880985287946357, - 0.10835570117847558, - 0.12854740157058184, - 0.147762007612659, - 0.1675721449788182, - 0.19270071268972844, - 0.23110046848849322, - 0.2927630112939784, - 0.38833451893820703, - 0.5271409031788001, - 0.7141551857143709, - 0.9505219750032828 - ], - "pressure:J5:branch10_seg0": [ - 7871.842208222718, - 8949.294638551746, - 10124.060105396304, - 11345.641734743027, - 12559.728794267188, - 13717.19191800497, - 14781.067752541649, - 15731.986660528248, - 16558.072222026036, - 17260.05502994338, - 17847.82946880565, - 18323.43423122074, - 18693.79399941476, - 18960.34455735097, - 19119.70382809996, - 19174.823496939654, - 19123.88278518456, - 18973.923608170782, - 18738.203574039704, - 18427.56476690557, - 18059.708408675484, - 17648.866517684983, - 17205.755211538555, - 16739.547307542573, - 16255.239829999844, - 15757.596012435715, - 15252.484894245457, - 14747.556343775203, - 14252.472203635964, - 13777.308675611841, - 13329.152805509151, - 12909.209995105031, - 12511.843384315282, - 12121.810491087712, - 11718.57602244337, - 11278.981244221462, - 10783.644165644127, - 10218.834195092815, - 9585.644822438882, - 8897.09390384834, - 8176.221035337789, - 7456.305510918006, - 6770.865657661741, - 6149.71915705807, - 5613.156152234441, - 5175.053160455033, - 4833.509495927186, - 4581.750766376444, - 4409.68125205351, - 4302.427105861876, - 4251.533156466107, - 4248.997867633374, - 4289.037552068953, - 4368.26962878947, - 4479.480666603174, - 4614.030850483991, - 4759.677183182877, - 4901.7156218548225, - 5026.17355122247, - 5122.583397176516, - 5184.592506647285, - 5212.158532413945, - 5212.152486007123, - 5191.787039992079, - 5160.601618952775, - 5125.636724264829, - 5089.110835599318, - 5049.571068595063, - 5002.625259602261, - 4943.093018059291, - 4868.089563142555, - 4777.775108429183, - 4677.300357398314, - 4574.742224159219, - 4479.129825981719, - 4398.170456505191, - 4336.208163065592, - 4292.584519908914, - 4262.82578193487, - 4240.979446510514, - 4220.889656009761, - 4199.898396477684, - 4179.511864713094, - 4164.878314125422, - 4163.254193250557, - 4180.707445753494, - 4220.026292248248, - 4278.957270485133, - 4349.695714118819, - 4423.825463019443, - 4494.418797307068, - 4561.612683938233, - 4636.5046660943835, - 4742.049612017433, - 4912.024715192156, - 5185.658276301288, - 5597.579884372511, - 6179.78351609905, - 6940.745261840969, - 7871.842208222718 - ], - "flow:J5:branch53_seg0": [ - 0.8128937001632786, - 1.0439074994178321, - 1.2979031896334174, - 1.5642065909655403, - 1.830596591578142, - 2.0861487229955507, - 2.3224466383512827, - 2.5346173149732882, - 2.7195432734657095, - 2.8774679722446574, - 3.0099495106885583, - 3.1177195369224973, - 3.202478555232616, - 3.264345759515207, - 3.302986281501396, - 3.3187020504380067, - 3.3111161754402088, - 3.281821687293516, - 3.2330774080933407, - 3.1675205555778083, - 3.0889743615300898, - 3.0004310433545696, - 2.9045416691752513, - 2.8033257502099356, - 2.697959512808573, - 2.589539088679389, - 2.4792467281822232, - 2.3686956242294444, - 2.2599529141809187, - 2.1552405571761843, - 2.056202199700856, - 1.9634069172798156, - 1.8758371865888348, - 1.790451493690418, - 1.7029757294276573, - 1.6083631100810976, - 1.5021247063389305, - 1.3810463285262504, - 1.2449271678578704, - 1.0959827776487576, - 0.9390983238586835, - 0.7812515409279241, - 0.6297361245760171, - 0.4912497352557512, - 0.3708157035697623, - 0.2715264613547572, - 0.19336426538639528, - 0.13537236766018174, - 0.09505514706290893, - 0.06942516174817645, - 0.05649393895640305, - 0.05424662121375279, - 0.0615918325812009, - 0.07763307862785922, - 0.10089111207664626, - 0.12965933804027077, - 0.16128018592045343, - 0.19262705053754636, - 0.22061510017728778, - 0.24279009310249738, - 0.25755164483041587, - 0.2647793199606807, - 0.26566090317163144, - 0.26177522010102966, - 0.25526987246821864, - 0.24770359213830995, - 0.2397533665989165, - 0.23125305138211427, - 0.22130242312105783, - 0.2087771497243137, - 0.19291629114388203, - 0.17365226383790927, - 0.15197010385334758, - 0.12949652358754693, - 0.10823359052500761, - 0.08995056764024462, - 0.07572594450469888, - 0.06555043440027923, - 0.058636638120979176, - 0.05366065827024232, - 0.049239367885778436, - 0.0446900023428732, - 0.04017024628039552, - 0.03669107588648951, - 0.03580201220318583, - 0.03889574746137222, - 0.04674881573436481, - 0.058999026570624724, - 0.0741540243865595, - 0.09036638577969139, - 0.10596761387581154, - 0.12071484533004466, - 0.13663143150207444, - 0.15832191271888554, - 0.19285909568521112, - 0.24855961971691157, - 0.333534443754714, - 0.45483535108312617, - 0.6147679036937965, - 0.8128937001632786 - ], - "pressure:J5:branch53_seg0": [ - 7871.842208222718, - 8949.294638551746, - 10124.060105396304, - 11345.641734743027, - 12559.728794267188, - 13717.19191800497, - 14781.067752541649, - 15731.986660528248, - 16558.072222026036, - 17260.05502994338, - 17847.82946880565, - 18323.43423122074, - 18693.79399941476, - 18960.34455735097, - 19119.70382809996, - 19174.823496939654, - 19123.88278518456, - 18973.923608170782, - 18738.203574039704, - 18427.56476690557, - 18059.708408675484, - 17648.866517684983, - 17205.755211538555, - 16739.547307542573, - 16255.239829999844, - 15757.596012435715, - 15252.484894245457, - 14747.556343775203, - 14252.472203635964, - 13777.308675611841, - 13329.152805509151, - 12909.209995105031, - 12511.843384315282, - 12121.810491087712, - 11718.57602244337, - 11278.981244221462, - 10783.644165644127, - 10218.834195092815, - 9585.644822438882, - 8897.09390384834, - 8176.221035337789, - 7456.305510918006, - 6770.865657661741, - 6149.71915705807, - 5613.156152234441, - 5175.053160455033, - 4833.509495927186, - 4581.750766376444, - 4409.68125205351, - 4302.427105861876, - 4251.533156466107, - 4248.997867633374, - 4289.037552068953, - 4368.26962878947, - 4479.480666603174, - 4614.030850483991, - 4759.677183182877, - 4901.7156218548225, - 5026.17355122247, - 5122.583397176516, - 5184.592506647285, - 5212.158532413945, - 5212.152486007123, - 5191.787039992079, - 5160.601618952775, - 5125.636724264829, - 5089.110835599318, - 5049.571068595063, - 5002.625259602261, - 4943.093018059291, - 4868.089563142555, - 4777.775108429183, - 4677.300357398314, - 4574.742224159219, - 4479.129825981719, - 4398.170456505191, - 4336.208163065592, - 4292.584519908914, - 4262.82578193487, - 4240.979446510514, - 4220.889656009761, - 4199.898396477684, - 4179.511864713094, - 4164.878314125422, - 4163.254193250557, - 4180.707445753494, - 4220.026292248248, - 4278.957270485133, - 4349.695714118819, - 4423.825463019443, - 4494.418797307068, - 4561.612683938233, - 4636.5046660943835, - 4742.049612017433, - 4912.024715192156, - 5185.658276301288, - 5597.579884372511, - 6179.78351609905, - 6940.745261840969, - 7871.842208222718 - ], - "flow:J5:branch63_seg0": [ - 1.877852769973916, - 2.447129464598367, - 3.096635399812738, - 3.8007773383084813, - 4.5286854559169285, - 5.249530743136166, - 5.9363599540279335, - 6.569054761224366, - 7.134569555919326, - 7.628050421275122, - 8.04924279212852, - 8.400458455498057, - 8.685235317339632, - 8.90521130803325, - 9.061113236621917, - 9.152916102371679, - 9.18032373349288, - 9.145628619921446, - 9.052826842314413, - 8.90846726632065, - 8.721160283774386, - 8.499530763349993, - 8.251805741966775, - 7.984561839986614, - 7.702580204794761, - 7.4095337591961705, - 7.108713551840471, - 6.804028850916489, - 6.500414701932671, - 6.20356123868936, - 5.918711698251269, - 5.649288186911144, - 5.395174528796407, - 5.151743249109335, - 4.91009526292892, - 4.658183596130358, - 4.3832959897115575, - 4.074731401585075, - 3.727111058652494, - 3.3413676380982915, - 2.9259848613246864, - 2.495554110964662, - 2.068349881081908, - 1.6632488663959824, - 1.2967958939584094, - 0.9808443020461238, - 0.7209361777059268, - 0.5177162610689958, - 0.3670052473715869, - 0.26253842871562905, - 0.19785988432732293, - 0.16704066046207275, - 0.16590309704498837, - 0.19106601841912274, - 0.2391512119836654, - 0.3059752231796517, - 0.38553677000630476, - 0.47036167701694703, - 0.552179735424675, - 0.6232976256710211, - 0.6777854843654555, - 0.7129083075132895, - 0.7290956652455748, - 0.7294069492673925, - 0.7186796634175724, - 0.7015471645829807, - 0.6813242575288285, - 0.6591922187765058, - 0.6341620665459725, - 0.6039185900787688, - 0.5660602578287014, - 0.5193588356088314, - 0.4647212287810749, - 0.4051566367481709, - 0.34528027573750714, - 0.2900290029417403, - 0.24335709448092444, - 0.20709463914641865, - 0.18078474108565493, - 0.1619432764697066, - 0.14725804722364494, - 0.13400758420573722, - 0.12114152349836821, - 0.1098200811179952, - 0.10307856266240324, - 0.10462238794481614, - 0.11745626603608694, - 0.14236633103508828, - 0.17748047280179638, - 0.218814905390041, - 0.2617669915869763, - 0.30368619430529087, - 0.3463237752645214, - 0.39756874017928306, - 0.4720407706257757, - 0.5893955089098644, - 0.7716839192611017, - 1.0394814637879413, - 1.4064030657464304, - 1.877852769973916 - ], - "pressure:J5:branch63_seg0": [ - 7871.842208222718, - 8949.294638551746, - 10124.060105396304, - 11345.641734743027, - 12559.728794267188, - 13717.19191800497, - 14781.067752541649, - 15731.986660528248, - 16558.072222026036, - 17260.05502994338, - 17847.82946880565, - 18323.43423122074, - 18693.79399941476, - 18960.34455735097, - 19119.70382809996, - 19174.823496939654, - 19123.88278518456, - 18973.923608170782, - 18738.203574039704, - 18427.56476690557, - 18059.708408675484, - 17648.866517684983, - 17205.755211538555, - 16739.547307542573, - 16255.239829999844, - 15757.596012435715, - 15252.484894245457, - 14747.556343775203, - 14252.472203635964, - 13777.308675611841, - 13329.152805509151, - 12909.209995105031, - 12511.843384315282, - 12121.810491087712, - 11718.57602244337, - 11278.981244221462, - 10783.644165644127, - 10218.834195092815, - 9585.644822438882, - 8897.09390384834, - 8176.221035337789, - 7456.305510918006, - 6770.865657661741, - 6149.71915705807, - 5613.156152234441, - 5175.053160455033, - 4833.509495927186, - 4581.750766376444, - 4409.68125205351, - 4302.427105861876, - 4251.533156466107, - 4248.997867633374, - 4289.037552068953, - 4368.26962878947, - 4479.480666603174, - 4614.030850483991, - 4759.677183182877, - 4901.7156218548225, - 5026.17355122247, - 5122.583397176516, - 5184.592506647285, - 5212.158532413945, - 5212.152486007123, - 5191.787039992079, - 5160.601618952775, - 5125.636724264829, - 5089.110835599318, - 5049.571068595063, - 5002.625259602261, - 4943.093018059291, - 4868.089563142555, - 4777.775108429183, - 4677.300357398314, - 4574.742224159219, - 4479.129825981719, - 4398.170456505191, - 4336.208163065592, - 4292.584519908914, - 4262.82578193487, - 4240.979446510514, - 4220.889656009761, - 4199.898396477684, - 4179.511864713094, - 4164.878314125422, - 4163.254193250557, - 4180.707445753494, - 4220.026292248248, - 4278.957270485133, - 4349.695714118819, - 4423.825463019443, - 4494.418797307068, - 4561.612683938233, - 4636.5046660943835, - 4742.049612017433, - 4912.024715192156, - 5185.658276301288, - 5597.579884372511, - 6179.78351609905, - 6940.745261840969, - 7871.842208222718 - ], - "flow:J5:branch65_seg0": [ - 1.6187764029227094, - 2.110320589834292, - 2.6723324551119467, - 3.2822818256673076, - 3.912867528014162, - 4.536858399987868, - 5.130554177015215, - 5.676384917352222, - 6.163148403862029, - 6.586866739940872, - 6.947653767558662, - 7.247969004283431, - 7.491318528362855, - 7.679632803878185, - 7.814031603675778, - 7.894826775340746, - 7.922027850658766, - 7.897564905148785, - 7.824621045250918, - 7.708495470133773, - 7.556103656099709, - 7.374423805455316, - 7.170198867067294, - 6.9488444339665465, - 6.714341602527873, - 6.469748445355093, - 6.2177684820453845, - 5.961597387378596, - 5.705287089442617, - 5.453575598482955, - 5.210937654006591, - 4.980469566771897, - 4.762406752264728, - 4.553246811582282, - 4.345834176718745, - 4.130181514228645, - 3.8954527837220936, - 3.6322316242758137, - 3.33527348124448, - 3.004516778462603, - 2.646314388601973, - 2.2723869853473757, - 1.8979973981108615, - 1.53943282212546, - 1.2115399886327003, - 0.9254342055394474, - 0.6870771322864228, - 0.49813134174052254, - 0.35580244447053033, - 0.25522202107077924, - 0.19096449465545434, - 0.1578270417579276, - 0.15202785356127316, - 0.17042709522989294, - 0.20996690149852762, - 0.2669664127228038, - 0.3361955543513581, - 0.41112224526292274, - 0.48444082328142346, - 0.5492215436499971, - 0.5999716860256096, - 0.6339060446847786, - 0.6509965180678972, - 0.6536268797825078, - 0.6458531006643721, - 0.6317432529496136, - 0.6143697958751242, - 0.5950208748131133, - 0.5730807662905509, - 0.5466846713330292, - 0.513742054422401, - 0.4730635881392849, - 0.42522409054174215, - 0.3726329412160247, - 0.3191929105548737, - 0.2692294975723891, - 0.22635850842124933, - 0.19245117883833196, - 0.16741064214058723, - 0.14928864593634864, - 0.13528022176402255, - 0.12293984915705924, - 0.11115565415538621, - 0.1007069364405531, - 0.09406352999528167, - 0.0944176111207119, - 0.1045054870091663, - 0.1252553474594979, - 0.15531741118250925, - 0.191400318015325, - 0.2295003887266588, - 0.26707264403815156, - 0.3051974172163993, - 0.35019911596612396, - 0.4143050801848647, - 0.5143391308647849, - 0.6696082567549003, - 0.8983192967290314, - 1.212926371312136, - 1.6187764029227094 - ], - "pressure:J5:branch65_seg0": [ - 7871.842208222718, - 8949.294638551746, - 10124.060105396304, - 11345.641734743027, - 12559.728794267188, - 13717.19191800497, - 14781.067752541649, - 15731.986660528248, - 16558.072222026036, - 17260.05502994338, - 17847.82946880565, - 18323.43423122074, - 18693.79399941476, - 18960.34455735097, - 19119.70382809996, - 19174.823496939654, - 19123.88278518456, - 18973.923608170782, - 18738.203574039704, - 18427.56476690557, - 18059.708408675484, - 17648.866517684983, - 17205.755211538555, - 16739.547307542573, - 16255.239829999844, - 15757.596012435715, - 15252.484894245457, - 14747.556343775203, - 14252.472203635964, - 13777.308675611841, - 13329.152805509151, - 12909.209995105031, - 12511.843384315282, - 12121.810491087712, - 11718.57602244337, - 11278.981244221462, - 10783.644165644127, - 10218.834195092815, - 9585.644822438882, - 8897.09390384834, - 8176.221035337789, - 7456.305510918006, - 6770.865657661741, - 6149.71915705807, - 5613.156152234441, - 5175.053160455033, - 4833.509495927186, - 4581.750766376444, - 4409.68125205351, - 4302.427105861876, - 4251.533156466107, - 4248.997867633374, - 4289.037552068953, - 4368.26962878947, - 4479.480666603174, - 4614.030850483991, - 4759.677183182877, - 4901.7156218548225, - 5026.17355122247, - 5122.583397176516, - 5184.592506647285, - 5212.158532413945, - 5212.152486007123, - 5191.787039992079, - 5160.601618952775, - 5125.636724264829, - 5089.110835599318, - 5049.571068595063, - 5002.625259602261, - 4943.093018059291, - 4868.089563142555, - 4777.775108429183, - 4677.300357398314, - 4574.742224159219, - 4479.129825981719, - 4398.170456505191, - 4336.208163065592, - 4292.584519908914, - 4262.82578193487, - 4240.979446510514, - 4220.889656009761, - 4199.898396477684, - 4179.511864713094, - 4164.878314125422, - 4163.254193250557, - 4180.707445753494, - 4220.026292248248, - 4278.957270485133, - 4349.695714118819, - 4423.825463019443, - 4494.418797307068, - 4561.612683938233, - 4636.5046660943835, - 4742.049612017433, - 4912.024715192156, - 5185.658276301288, - 5597.579884372511, - 6179.78351609905, - 6940.745261840969, - 7871.842208222718 - ], - "flow:branch7_seg0:J6": [ - 4.686682977228516, - 6.146464277040986, - 7.8754292131214685, - 9.825796438303085, - 11.928521117387467, - 14.104467764218311, - 16.27447104112649, - 18.368638596569777, - 20.33107227014303, - 22.12525877976125, - 23.72930451770933, - 25.133111979178707, - 26.334528005163218, - 27.332235728757823, - 28.125706557803134, - 28.71362677020858, - 29.09471072984067, - 29.27234289281707, - 29.253929102501345, - 29.053613379551415, - 28.691358918743234, - 28.189738791435612, - 27.57254468922618, - 26.861431546834762, - 26.074751445961724, - 25.22789707981896, - 24.33433779538992, - 23.40771816180586, - 22.463192168164515, - 21.517590152051607, - 20.58755601550798, - 19.68679925932443, - 18.82192424367216, - 17.989343675261395, - 17.17418114635783, - 16.35133033106819, - 15.489795563617045, - 14.55877742194642, - 13.535498548244256, - 12.40994200550187, - 11.189907275686338, - 9.90036356753866, - 8.580186767072654, - 7.276060387716406, - 6.035519902258234, - 4.899500334668598, - 3.897177629286376, - 3.045463074616958, - 2.3475571873807, - 1.7978096551040768, - 1.3853180073337557, - 1.0968549018064344, - 0.9206278747546947, - 0.8455899203572206, - 0.8609038290388633, - 0.9543590073116338, - 1.1099956355742036, - 1.3081085209771504, - 1.5260023284286295, - 1.7405371545251536, - 1.9309973647128411, - 2.082831031917137, - 2.188817393831513, - 2.2493154124668546, - 2.2709951177998295, - 2.2630961584469484, - 2.234473018309283, - 2.19079447838613, - 2.1332169877138503, - 2.059064306189028, - 1.9638265667713202, - 1.8440007031967873, - 1.6996749485554035, - 1.5356088348941832, - 1.3611411162226295, - 1.1880840525369696, - 1.0279290026720294, - 0.8888604347609915, - 0.7743181210062112, - 0.682423792513526, - 0.6077869035625342, - 0.5442706485546652, - 0.4877769881621878, - 0.4383813163137312, - 0.40074985611204234, - 0.3825095183339028, - 0.3915768995780308, - 0.4325359712009153, - 0.5046394546517846, - 0.6015392400768222, - 0.7135157380204853, - 0.8324704838412261, - 0.9578107861027102, - 1.1018079501179472, - 1.2930252124207733, - 1.5751440898338376, - 2.003143007949845, - 2.634569385448272, - 3.5180256279209834, - 4.686682977228516 - ], - "pressure:branch7_seg0:J6": [ - 7376.099635775394, - 8341.51184448345, - 9414.804155407825, - 10553.536221440429, - 11709.228576922165, - 12835.606116941757, - 13894.979765307025, - 14863.534139296806, - 15724.437703688629, - 16473.2838560184, - 17113.981324744123, - 17646.686078213173, - 18076.346345795257, - 18403.897826430133, - 18627.057223959306, - 18747.743903522372, - 18764.43323955757, - 18682.41023545408, - 18512.021009841526, - 18262.936052513895, - 17950.45663154577, - 17587.94284040075, - 17186.470016265142, - 16755.66547815911, - 16301.717259504974, - 15830.143168792922, - 15346.907778697812, - 14859.258958627785, - 14376.08590058451, - 13906.894808436466, - 13459.084232593306, - 13035.625404835566, - 12633.60231215911, - 12241.85656900762, - 11843.84103166038, - 11419.555965891546, - 10950.723488261794, - 10422.988108845082, - 9833.607310004558, - 9190.069927424962, - 8509.628258910327, - 7819.349292713638, - 7148.534718925026, - 6525.1476448721905, - 5970.61145828518, - 5500.655836474293, - 5118.369015500826, - 4821.381893091253, - 4602.843009849522, - 4451.346418077952, - 4359.113628308047, - 4318.413265342937, - 4323.471118734242, - 4370.216609824659, - 4452.09657246944, - 4561.428929775311, - 4687.345944718452, - 4816.7375918175285, - 4936.500162999538, - 5035.9076444131315, - 5107.373740465216, - 5148.750911589304, - 5163.827753070684, - 5157.741249031646, - 5138.287062661806, - 5111.899178254581, - 5081.550255187789, - 5047.142445343987, - 5005.787112527112, - 4953.415234662467, - 4887.241294940182, - 4806.777416116981, - 4715.541814360145, - 4619.853905301308, - 4527.44022093719, - 4445.499042808685, - 4378.844666000338, - 4328.268382237337, - 4291.202785087908, - 4263.128254254388, - 4238.861129814419, - 4215.536469699506, - 4193.500373695992, - 4176.312244096763, - 4169.75094845698, - 4179.2408232125, - 4208.024274884116, - 4255.28255910685, - 4315.482082271095, - 4381.7895584082125, - 4447.80465370903, - 4512.243205572105, - 4582.57327939574, - 4676.495674935307, - 4821.728554354145, - 5052.162424002069, - 5400.353290803363, - 5897.13794991051, - 6555.9895067219095, - 7376.099635775394 - ], - "flow:J6:branch8_seg0": [ - 0.8399025198139493, - 1.0955009244047746, - 1.3893683982829699, - 1.710791625319776, - 2.0463613287900526, - 2.382345168097092, - 2.706372050903863, - 3.0088160821843606, - 3.282952728182578, - 3.5257144546380026, - 3.7361148436538, - 3.9144693313391645, - 4.061873070693091, - 4.178733613118815, - 4.26522797149936, - 4.321263992185509, - 4.346657819070802, - 4.342367383960479, - 4.310069888290268, - 4.2526139258210005, - 4.173791539906536, - 4.077463336375901, - 3.967415725095364, - 3.846769253417803, - 3.717894433883727, - 3.5826818012617734, - 3.442820627870484, - 3.3002348507945634, - 3.1572650006833753, - 3.0165743132554304, - 2.8806410543973424, - 2.751189287811947, - 2.6284164103979344, - 2.510542277523267, - 2.3938794897022184, - 2.2732556042281806, - 2.143059379375139, - 1.998402624356061, - 1.8365928389279662, - 1.6576019282275314, - 1.4647318317681874, - 1.2640527357176845, - 1.0634180518698018, - 0.8711740287985476, - 0.6948900642212751, - 0.5402200107658072, - 0.41017652699808765, - 0.30565040625552575, - 0.22530021928939162, - 0.16676081826780628, - 0.12742011122059527, - 0.10472839273073994, - 0.09682769204788715, - 0.10212445180119864, - 0.11901053749130869, - 0.1455510967244929, - 0.17900410341472217, - 0.21598089243672317, - 0.25271046182662277, - 0.28562142337493535, - 0.31184815340721767, - 0.32989801320383877, - 0.33965277373879965, - 0.34218424571317085, - 0.33942819211789416, - 0.3333248453994764, - 0.32533608923034874, - 0.31606282459977547, - 0.30518331439007634, - 0.2917828578992424, - 0.27486032875554356, - 0.25387668747955155, - 0.22918026856784035, - 0.20202092420679207, - 0.1743789188219655, - 0.1484259245320523, - 0.1259670878953238, - 0.1079289756232921, - 0.09427300320152238, - 0.08405051464084216, - 0.0759037628667123, - 0.06867199349102299, - 0.061857984543987346, - 0.05589407158192711, - 0.05203441935064924, - 0.05186096136201099, - 0.05671319971902037, - 0.0670115213038553, - 0.08204753482909823, - 0.10017662168493861, - 0.11942293040132154, - 0.13857968860118125, - 0.1582830177591245, - 0.1818113384257223, - 0.21541194098691027, - 0.26763924969354824, - 0.3483153665648074, - 0.46679158365323403, - 0.6295998821450006, - 0.8399025198139493 - ], - "pressure:J6:branch8_seg0": [ - 7376.099635775394, - 8341.51184448345, - 9414.804155407825, - 10553.536221440429, - 11709.228576922165, - 12835.606116941757, - 13894.979765307025, - 14863.534139296806, - 15724.437703688629, - 16473.2838560184, - 17113.981324744123, - 17646.686078213173, - 18076.346345795257, - 18403.897826430133, - 18627.057223959306, - 18747.743903522372, - 18764.43323955757, - 18682.41023545408, - 18512.021009841526, - 18262.936052513895, - 17950.45663154577, - 17587.94284040075, - 17186.470016265142, - 16755.66547815911, - 16301.717259504974, - 15830.143168792922, - 15346.907778697812, - 14859.258958627785, - 14376.08590058451, - 13906.894808436466, - 13459.084232593306, - 13035.625404835566, - 12633.60231215911, - 12241.85656900762, - 11843.84103166038, - 11419.555965891546, - 10950.723488261794, - 10422.988108845082, - 9833.607310004558, - 9190.069927424962, - 8509.628258910327, - 7819.349292713638, - 7148.534718925026, - 6525.1476448721905, - 5970.61145828518, - 5500.655836474293, - 5118.369015500826, - 4821.381893091253, - 4602.843009849522, - 4451.346418077952, - 4359.113628308047, - 4318.413265342937, - 4323.471118734242, - 4370.216609824659, - 4452.09657246944, - 4561.428929775311, - 4687.345944718452, - 4816.7375918175285, - 4936.500162999538, - 5035.9076444131315, - 5107.373740465216, - 5148.750911589304, - 5163.827753070684, - 5157.741249031646, - 5138.287062661806, - 5111.899178254581, - 5081.550255187789, - 5047.142445343987, - 5005.787112527112, - 4953.415234662467, - 4887.241294940182, - 4806.777416116981, - 4715.541814360145, - 4619.853905301308, - 4527.44022093719, - 4445.499042808685, - 4378.844666000338, - 4328.268382237337, - 4291.202785087908, - 4263.128254254388, - 4238.861129814419, - 4215.536469699506, - 4193.500373695992, - 4176.312244096763, - 4169.75094845698, - 4179.2408232125, - 4208.024274884116, - 4255.28255910685, - 4315.482082271095, - 4381.7895584082125, - 4447.80465370903, - 4512.243205572105, - 4582.57327939574, - 4676.495674935307, - 4821.728554354145, - 5052.162424002069, - 5400.353290803363, - 5897.13794991051, - 6555.9895067219095, - 7376.099635775394 - ], - "flow:J6:branch15_seg0": [ - 3.846780457414567, - 5.050963352636209, - 6.486060814838499, - 8.11500481298331, - 9.882159788597416, - 11.722122596121219, - 13.568098990222625, - 15.359822514385424, - 17.048119541960453, - 18.59954432512325, - 19.993189674055536, - 21.21864264783954, - 22.272654934470125, - 23.15350211563901, - 23.860478586303774, - 24.39236277802307, - 24.748052910769864, - 24.929975508856593, - 24.943859214211077, - 24.80099945373041, - 24.517567378836695, - 24.11227545505972, - 23.605128964130813, - 23.01466229341697, - 22.35685701207799, - 21.645215278557192, - 20.89151716751944, - 20.107483311011297, - 19.30592716748113, - 18.50101583879618, - 17.706914961110638, - 16.93560997151248, - 16.19350783327423, - 15.478801397738124, - 14.780301656655617, - 14.078074726840011, - 13.346736184241907, - 12.560374797590361, - 11.698905709316291, - 10.752340077274342, - 9.725175443918149, - 8.636310831820975, - 7.516768715202851, - 6.404886358917859, - 5.340629838036961, - 4.359280323902793, - 3.4870011022882887, - 2.739812668361432, - 2.1222569680913077, - 1.6310488368362708, - 1.2578978961131602, - 0.9921265090756943, - 0.8238001827068073, - 0.7434654685560219, - 0.7418932915475547, - 0.8088079105871414, - 0.9309915321594814, - 1.092127628540427, - 1.2732918666020066, - 1.4549157311502185, - 1.6191492113056232, - 1.752933018713298, - 1.8491646200927134, - 1.907131166753684, - 1.9315669256819357, - 1.9297713130474718, - 1.9091369290789335, - 1.8747316537863545, - 1.8280336733237743, - 1.7672814482897856, - 1.6889662380157764, - 1.5901240157172356, - 1.4704946799875636, - 1.3335879106873905, - 1.1867621974006637, - 1.0396581280049177, - 0.9019619147767053, - 0.7809314591376992, - 0.6800451178046889, - 0.5983732778726839, - 0.531883140695822, - 0.47559865506364224, - 0.42591900361820045, - 0.38248724473180423, - 0.34871543676139305, - 0.3306485569718918, - 0.33486369985901043, - 0.36552444989706, - 0.4225919198226864, - 0.5013626183918837, - 0.5940928076191637, - 0.6938907952400446, - 0.7995277683435856, - 0.9199966116922247, - 1.0776132714338627, - 1.3075048401402893, - 1.6548276413850378, - 2.167777801795037, - 2.8884257457759834, - 3.846780457414567 - ], - "pressure:J6:branch15_seg0": [ - 7376.099635775394, - 8341.51184448345, - 9414.804155407825, - 10553.536221440429, - 11709.228576922165, - 12835.606116941757, - 13894.979765307025, - 14863.534139296806, - 15724.437703688629, - 16473.2838560184, - 17113.981324744123, - 17646.686078213173, - 18076.346345795257, - 18403.897826430133, - 18627.057223959306, - 18747.743903522372, - 18764.43323955757, - 18682.41023545408, - 18512.021009841526, - 18262.936052513895, - 17950.45663154577, - 17587.94284040075, - 17186.470016265142, - 16755.66547815911, - 16301.717259504974, - 15830.143168792922, - 15346.907778697812, - 14859.258958627785, - 14376.08590058451, - 13906.894808436466, - 13459.084232593306, - 13035.625404835566, - 12633.60231215911, - 12241.85656900762, - 11843.84103166038, - 11419.555965891546, - 10950.723488261794, - 10422.988108845082, - 9833.607310004558, - 9190.069927424962, - 8509.628258910327, - 7819.349292713638, - 7148.534718925026, - 6525.1476448721905, - 5970.61145828518, - 5500.655836474293, - 5118.369015500826, - 4821.381893091253, - 4602.843009849522, - 4451.346418077952, - 4359.113628308047, - 4318.413265342937, - 4323.471118734242, - 4370.216609824659, - 4452.09657246944, - 4561.428929775311, - 4687.345944718452, - 4816.7375918175285, - 4936.500162999538, - 5035.9076444131315, - 5107.373740465216, - 5148.750911589304, - 5163.827753070684, - 5157.741249031646, - 5138.287062661806, - 5111.899178254581, - 5081.550255187789, - 5047.142445343987, - 5005.787112527112, - 4953.415234662467, - 4887.241294940182, - 4806.777416116981, - 4715.541814360145, - 4619.853905301308, - 4527.44022093719, - 4445.499042808685, - 4378.844666000338, - 4328.268382237337, - 4291.202785087908, - 4263.128254254388, - 4238.861129814419, - 4215.536469699506, - 4193.500373695992, - 4176.312244096763, - 4169.75094845698, - 4179.2408232125, - 4208.024274884116, - 4255.28255910685, - 4315.482082271095, - 4381.7895584082125, - 4447.80465370903, - 4512.243205572105, - 4582.57327939574, - 4676.495674935307, - 4821.728554354145, - 5052.162424002069, - 5400.353290803363, - 5897.13794991051, - 6555.9895067219095, - 7376.099635775394 - ], - "flow:branch8_seg0:J7": [ - 0.8391819800462726, - 1.0946782533078003, - 1.3884716150225251, - 1.7098648511849628, - 2.045441121006951, - 2.38146327135352, - 2.705554323074953, - 3.0080835835441255, - 3.2823058423914784, - 3.5251572548867327, - 3.735645567806374, - 3.914082425417196, - 4.0615702882212315, - 4.178512471454047, - 4.265090170392222, - 4.321209467964901, - 4.346684337172796, - 4.342472011856807, - 4.31024048085897, - 4.252840837177847, - 4.174065313735295, - 4.077771481122822, - 3.967750945272265, - 3.847125403593722, - 3.7182664657050783, - 3.5830660271041923, - 3.4432114405797223, - 3.3006256094096558, - 3.1576481304481936, - 3.0169432371320375, - 2.8809901772134316, - 2.751519410892096, - 2.6287334340375006, - 2.510856349320212, - 2.3942064119223345, - 2.27361194445897, - 2.143457868090019, - 1.998850535362623, - 1.8370901901106569, - 1.6581364070136022, - 1.4652855512204699, - 1.2646036422871758, - 1.0639412576851246, - 0.8716471821015256, - 0.6953027677450543, - 0.5405624753700227, - 0.4104456505424849, - 0.3058560135626157, - 0.225446601220042, - 0.16685630666182905, - 0.12747320315351443, - 0.10474060016505524, - 0.09680582780353905, - 0.10207239453052853, - 0.11893177865273151, - 0.14545504845709553, - 0.1788999532705541, - 0.2158790013946891, - 0.2526210485798618, - 0.28555266176317895, - 0.311802683337824, - 0.3298759730712516, - 0.33965044897712393, - 0.3421952768169098, - 0.3394473956301235, - 0.33334802171934813, - 0.3253617585168555, - 0.31609266187917767, - 0.30522040696871405, - 0.29183050854996057, - 0.2749193611232181, - 0.25394614481622835, - 0.22925664093184603, - 0.20209752369378167, - 0.1744494956154759, - 0.14848578058727252, - 0.12601419935608965, - 0.10796300958432441, - 0.0942983283736846, - 0.08407120845061485, - 0.07592253048845445, - 0.06869041665099293, - 0.061874426507268765, - 0.05590444632092788, - 0.052033946996350354, - 0.05184558445318221, - 0.05668237252666531, - 0.066967483604256, - 0.08199553402820661, - 0.10012294680994788, - 0.11937101323068051, - 0.13852730711887176, - 0.15822014325220526, - 0.18171966282645133, - 0.2152663633598821, - 0.26740862380369645, - 0.34797952383443226, - 0.46633071450936187, - 0.6289987036721437, - 0.8391819800462726 - ], - "pressure:branch8_seg0:J7": [ - 7221.520036981491, - 8154.935045261428, - 9200.068503848961, - 10316.369041567124, - 11456.450764671206, - 12574.383038600208, - 13631.8959355664, - 14603.583998557131, - 15471.159010476287, - 16229.081628778758, - 16879.689618444812, - 17423.162853912338, - 17864.25041100444, - 18203.951189626034, - 18440.582393815414, - 18575.65298651496, - 18607.77799847949, - 18541.659244528957, - 18386.614023708276, - 18152.152167172142, - 17852.888045944055, - 17502.01205929759, - 17110.87731121792, - 16689.244171494593, - 16243.64894284509, - 15779.745215574128, - 15303.37687911611, - 14821.557639070463, - 14342.868727827627, - 13876.638473300252, - 13430.401664455088, - 13007.777355420816, - 12606.690836409949, - 12217.215740135493, - 11823.897303765036, - 11407.465946488985, - 10949.666232284597, - 10435.729794274086, - 9861.526738974437, - 9232.776205631655, - 8565.15639023996, - 7884.077111733274, - 7217.920153933474, - 6594.477380898816, - 6035.916723317854, - 5558.559298879143, - 5167.083832746602, - 4860.346301017826, - 4632.047259999835, - 4471.641977849583, - 4371.191285078042, - 4322.809728214625, - 4320.7189176251895, - 4360.55825095276, - 4436.082390180548, - 4539.99459086834, - 4661.861180971113, - 4789.065200466395, - 4908.703654940329, - 5009.867792584887, - 5084.521978952453, - 5129.892410292608, - 5148.849835293642, - 5146.082703966737, - 5129.056634123102, - 5104.200643682489, - 5074.888915199153, - 5041.509232298514, - 5001.604026398257, - 4951.350768194558, - 4887.845228904688, - 4810.304218608842, - 4721.677566546338, - 4627.75639349163, - 4535.972551964124, - 4453.496056387033, - 4385.397527936769, - 4332.971251522611, - 4294.246569563439, - 4265.016618947008, - 4240.266067321407, - 4216.923561783319, - 4194.869878291456, - 4177.1589455977455, - 4169.17864688805, - 4176.283725282649, - 4201.9969088594125, - 4246.019301665118, - 4303.542784885833, - 4368.106854603073, - 4433.287197091559, - 4497.157455930462, - 4565.904023661696, - 4655.567247315199, - 4792.108855264055, - 5008.0030227237685, - 5335.691858260733, - 5805.848326207264, - 6433.815041132781, - 7221.520036981491 - ], - "flow:J7:branch9_seg0": [ - 0.41458133627477967, - 0.5412102580908816, - 0.6871674202567071, - 0.8471872943766459, - 1.014641724490045, - 1.1826795677266342, - 1.3450805836490638, - 1.4969525766316387, - 1.6348584319865613, - 1.757168575828531, - 1.8633184595153824, - 1.9534348175657308, - 2.0280382047337415, - 2.0873437120370486, - 2.1314496191147514, - 2.160311588277331, - 2.173841316861759, - 2.1724905808123256, - 2.157078507723183, - 2.129002379054708, - 2.090132188735374, - 2.0423988268557784, - 1.9876991992089341, - 1.9276107030827947, - 1.863340589173967, - 1.7958479621793277, - 1.7259847697880015, - 1.654709093838776, - 1.5831817751432355, - 1.5127266739410694, - 1.4445881407649552, - 1.3796475596844304, - 1.3180406627552892, - 1.2589298126713284, - 1.200519301763677, - 1.1402614436469807, - 1.0753633095698503, - 1.0033640835166142, - 0.9228623269540832, - 0.8337753946856686, - 0.737671257119041, - 0.637510343785037, - 0.5371726428149995, - 0.4408177551160545, - 0.35224539251965437, - 0.27433048752341516, - 0.20865078178466323, - 0.1557021875653786, - 0.11487381746073137, - 0.08501443240746762, - 0.06482225984320546, - 0.05302518440378307, - 0.048675645505550404, - 0.050967499572621824, - 0.05909992738435524, - 0.07211067177283727, - 0.08864861249006974, - 0.10703766592263635, - 0.12540198840806097, - 0.1419513015224221, - 0.15523547353592537, - 0.1644746538127789, - 0.1695713449389481, - 0.17103120430999466, - 0.1697985122654998, - 0.16684049566700535, - 0.16290023381748364, - 0.15829949550259856, - 0.1529013384613992, - 0.14626470953905962, - 0.13789280070846177, - 0.12750526943587656, - 0.11525334320392082, - 0.10173933155486194, - 0.087933846336365, - 0.07491632859083652, - 0.06359742391229788, - 0.054463271924955974, - 0.04751891471801622, - 0.04231334942231408, - 0.03818101078059029, - 0.03453684871974243, - 0.03111603625903914, - 0.028111321648787182, - 0.026128042272691183, - 0.025947571286077383, - 0.028244777268255156, - 0.0332517442959492, - 0.04064420868935413, - 0.04962415476276383, - 0.05921353613264065, - 0.06879170893690256, - 0.07863047142298452, - 0.09030173881902127, - 0.10685173733267661, - 0.13249785484614168, - 0.1721139446237007, - 0.2303826959815143, - 0.3106526382127986, - 0.41458133627477967 - ], - "pressure:J7:branch9_seg0": [ - 7221.520036981491, - 8154.935045261428, - 9200.068503848961, - 10316.369041567124, - 11456.450764671206, - 12574.383038600208, - 13631.8959355664, - 14603.583998557131, - 15471.159010476287, - 16229.081628778758, - 16879.689618444812, - 17423.162853912338, - 17864.25041100444, - 18203.951189626034, - 18440.582393815414, - 18575.65298651496, - 18607.77799847949, - 18541.659244528957, - 18386.614023708276, - 18152.152167172142, - 17852.888045944055, - 17502.01205929759, - 17110.87731121792, - 16689.244171494593, - 16243.64894284509, - 15779.745215574128, - 15303.37687911611, - 14821.557639070463, - 14342.868727827627, - 13876.638473300252, - 13430.401664455088, - 13007.777355420816, - 12606.690836409949, - 12217.215740135493, - 11823.897303765036, - 11407.465946488985, - 10949.666232284597, - 10435.729794274086, - 9861.526738974437, - 9232.776205631655, - 8565.15639023996, - 7884.077111733274, - 7217.920153933474, - 6594.477380898816, - 6035.916723317854, - 5558.559298879143, - 5167.083832746602, - 4860.346301017826, - 4632.047259999835, - 4471.641977849583, - 4371.191285078042, - 4322.809728214625, - 4320.7189176251895, - 4360.55825095276, - 4436.082390180548, - 4539.99459086834, - 4661.861180971113, - 4789.065200466395, - 4908.703654940329, - 5009.867792584887, - 5084.521978952453, - 5129.892410292608, - 5148.849835293642, - 5146.082703966737, - 5129.056634123102, - 5104.200643682489, - 5074.888915199153, - 5041.509232298514, - 5001.604026398257, - 4951.350768194558, - 4887.845228904688, - 4810.304218608842, - 4721.677566546338, - 4627.75639349163, - 4535.972551964124, - 4453.496056387033, - 4385.397527936769, - 4332.971251522611, - 4294.246569563439, - 4265.016618947008, - 4240.266067321407, - 4216.923561783319, - 4194.869878291456, - 4177.1589455977455, - 4169.17864688805, - 4176.283725282649, - 4201.9969088594125, - 4246.019301665118, - 4303.542784885833, - 4368.106854603073, - 4433.287197091559, - 4497.157455930462, - 4565.904023661696, - 4655.567247315199, - 4792.108855264055, - 5008.0030227237685, - 5335.691858260733, - 5805.848326207264, - 6433.815041132781, - 7221.520036981491 - ], - "flow:J7:branch51_seg0": [ - 0.42460064377149304, - 0.5534679952169189, - 0.7013041947658183, - 0.8626775568083175, - 1.030799396516906, - 1.1987837036268862, - 1.3604737394258883, - 1.511131006912487, - 1.6474474104049173, - 1.7679886790582018, - 1.8723271082909905, - 1.9606476078514659, - 2.0335320834874917, - 2.0911687594169974, - 2.1336405512774697, - 2.160897879687569, - 2.172843020311037, - 2.1699814310444805, - 2.1531619731357865, - 2.1238384581231387, - 2.0839331249999224, - 2.035372654267042, - 1.980051746063331, - 1.9195147005109283, - 1.8549258765311123, - 1.7872180649248646, - 1.7172266707917216, - 1.6459165155708797, - 1.5744663553049578, - 1.504216563190968, - 1.4364020364484764, - 1.3718718512076649, - 1.3106927712822114, - 1.2519265366488839, - 1.1936871101586572, - 1.133350500811989, - 1.0680945585201693, - 0.9954864518460084, - 0.9142278631565739, - 0.8243610123279337, - 0.7276142941014287, - 0.6270932985021384, - 0.5267686148701252, - 0.4308294269854711, - 0.3430573752254, - 0.2662319878466077, - 0.2017948687578217, - 0.1501538259972371, - 0.11057278375931064, - 0.08184187425436147, - 0.06265094331030897, - 0.051715415761272164, - 0.048130182297988655, - 0.05110489495790671, - 0.05983185126837628, - 0.07334437668425825, - 0.09025134078048438, - 0.10884133547205271, - 0.12721906017180085, - 0.1436013602407568, - 0.15656720980189864, - 0.16540131925847273, - 0.1700791040381759, - 0.17116407250691512, - 0.16964888336462378, - 0.16650752605234276, - 0.16246152469937192, - 0.15779316637657914, - 0.15231906850731483, - 0.145565799010901, - 0.1370265604147563, - 0.12644087538035179, - 0.11400329772792521, - 0.10035819213891974, - 0.08651564927911089, - 0.07356945199643601, - 0.06241677544379177, - 0.05349973765936845, - 0.04677941365566839, - 0.041757859028300745, - 0.03774151970786418, - 0.034153567931250496, - 0.030758390248229645, - 0.027793124672140686, - 0.02590590472365917, - 0.02589801316710482, - 0.02843759525841016, - 0.03371573930830681, - 0.04135132533885248, - 0.05049879204718405, - 0.06015747709803986, - 0.06973559818196923, - 0.07958967182922073, - 0.09141792400742998, - 0.10841462602720543, - 0.13491076895755483, - 0.17586557921073157, - 0.23594801852784755, - 0.318346065459345, - 0.42460064377149304 - ], - "pressure:J7:branch51_seg0": [ - 7221.520036981491, - 8154.935045261428, - 9200.068503848961, - 10316.369041567124, - 11456.450764671206, - 12574.383038600208, - 13631.8959355664, - 14603.583998557131, - 15471.159010476287, - 16229.081628778758, - 16879.689618444812, - 17423.162853912338, - 17864.25041100444, - 18203.951189626034, - 18440.582393815414, - 18575.65298651496, - 18607.77799847949, - 18541.659244528957, - 18386.614023708276, - 18152.152167172142, - 17852.888045944055, - 17502.01205929759, - 17110.87731121792, - 16689.244171494593, - 16243.64894284509, - 15779.745215574128, - 15303.37687911611, - 14821.557639070463, - 14342.868727827627, - 13876.638473300252, - 13430.401664455088, - 13007.777355420816, - 12606.690836409949, - 12217.215740135493, - 11823.897303765036, - 11407.465946488985, - 10949.666232284597, - 10435.729794274086, - 9861.526738974437, - 9232.776205631655, - 8565.15639023996, - 7884.077111733274, - 7217.920153933474, - 6594.477380898816, - 6035.916723317854, - 5558.559298879143, - 5167.083832746602, - 4860.346301017826, - 4632.047259999835, - 4471.641977849583, - 4371.191285078042, - 4322.809728214625, - 4320.7189176251895, - 4360.55825095276, - 4436.082390180548, - 4539.99459086834, - 4661.861180971113, - 4789.065200466395, - 4908.703654940329, - 5009.867792584887, - 5084.521978952453, - 5129.892410292608, - 5148.849835293642, - 5146.082703966737, - 5129.056634123102, - 5104.200643682489, - 5074.888915199153, - 5041.509232298514, - 5001.604026398257, - 4951.350768194558, - 4887.845228904688, - 4810.304218608842, - 4721.677566546338, - 4627.75639349163, - 4535.972551964124, - 4453.496056387033, - 4385.397527936769, - 4332.971251522611, - 4294.246569563439, - 4265.016618947008, - 4240.266067321407, - 4216.923561783319, - 4194.869878291456, - 4177.1589455977455, - 4169.17864688805, - 4176.283725282649, - 4201.9969088594125, - 4246.019301665118, - 4303.542784885833, - 4368.106854603073, - 4433.287197091559, - 4497.157455930462, - 4565.904023661696, - 4655.567247315199, - 4792.108855264055, - 5008.0030227237685, - 5335.691858260733, - 5805.848326207264, - 6433.815041132781, - 7221.520036981491 - ], - "flow:branch10_seg0:J8": [ - 0.9496766688179484, - 1.230089232996928, - 1.5444052461494955, - 1.8794976868445132, - 2.220074242664257, - 2.5517938971722702, - 2.8628577159956516, - 3.145279135021543, - 3.3941618301246423, - 3.608753967187733, - 3.7899471560474742, - 3.9391610752017407, - 4.05836848745346, - 4.1480351305701975, - 4.208270589564532, - 4.23901386406988, - 4.2400147710339695, - 4.212760026586888, - 4.159433703017638, - 4.083448060362538, - 3.9892002533737316, - 3.880672464505671, - 3.7615870561183966, - 3.6347247243399683, - 3.5019535735084193, - 3.364767688174233, - 3.2246018039936244, - 3.0833487716989514, - 2.943459457618394, - 2.8077023159528776, - 2.678420284473129, - 2.5568880719545746, - 2.4424636145476715, - 2.332187532011951, - 2.221206262852443, - 2.1033812551285536, - 1.9726936015564236, - 1.8244980493292378, - 1.6572419348020069, - 1.472459720036058, - 1.2753694292594306, - 1.0738641464053114, - 0.8770533452266088, - 0.6937975707963571, - 0.5313926723749521, - 0.39451606719320836, - 0.2845666302455343, - 0.2010088320252505, - 0.14103578455904917, - 0.10128655546413395, - 0.07877762499497154, - 0.07079556316881404, - 0.07572774981991866, - 0.09218829038830263, - 0.11857720159892236, - 0.15287728654400093, - 0.19200292392581195, - 0.23222338173185106, - 0.26957871992793325, - 0.30061491602506524, - 0.32287210365484975, - 0.3356346252634057, - 0.33970369911522524, - 0.336933358539456, - 0.3299020378832583, - 0.3207550704878548, - 0.3107912314499453, - 0.3001957652918091, - 0.2881271112368435, - 0.2732648014106158, - 0.25446320539792866, - 0.23134293144982207, - 0.204697375063686, - 0.17628059037691435, - 0.14851774754942126, - 0.12376877604818493, - 0.10370918244414967, - 0.08880713542524302, - 0.07845869251432203, - 0.07115696778731048, - 0.06518580217855006, - 0.059385156599509915, - 0.05355080862723154, - 0.048599278249158155, - 0.04627398739576512, - 0.04841797850045736, - 0.056320500721115746, - 0.06997605977985466, - 0.08803646807025263, - 0.10829473610299348, - 0.1284906921855621, - 0.14770505930279224, - 0.1675007084663059, - 0.1925910351586686, - 0.23092153321355985, - 0.292477972808112, - 0.38792288465793034, - 0.5265822719753016, - 0.7134372302546983, - 0.9496766688179484 - ], - "pressure:branch10_seg0:J8": [ - 7632.733883473775, - 8665.809090084107, - 9803.686584310668, - 10998.090831808599, - 12195.3133699162, - 13346.108162892026, - 14412.09787666978, - 15370.911425084889, - 16208.425960800649, - 16924.31303838236, - 17525.836005767294, - 18015.977290702154, - 18401.754254862182, - 18684.577353051256, - 18862.503678986697, - 18937.33585958089, - 18907.524877709933, - 18779.35311606162, - 18563.929392148675, - 18272.38209922318, - 17921.447483907556, - 17525.167575419793, - 17095.05664888608, - 16640.46582067678, - 16166.931776919559, - 15679.357763802585, - 15183.243375929924, - 14685.794088249362, - 14196.189338134249, - 13724.315452024142, - 13277.620023639696, - 12858.575919013887, - 12462.882665092167, - 12077.23923942439, - 11682.613407687257, - 11256.630061593552, - 10779.399216275933, - 10236.259912419444, - 9625.863352284607, - 8958.198366605608, - 8254.311674250934, - 7545.154561570537, - 6863.359280008944, - 6239.0094611713685, - 5694.243785517859, - 5243.774558665473, - 4888.316778742887, - 4622.9835436066915, - 4437.859155284055, - 4319.310622354187, - 4258.21697934469, - 4246.03581565163, - 4277.119288336833, - 4347.540906224437, - 4450.740510275934, - 4578.800621603147, - 4720.086917568734, - 4860.62895802826, - 4986.588714131404, - 5086.982990721397, - 5154.577820207615, - 5188.428026942646, - 5193.842781472567, - 5177.656075190236, - 5149.174826762163, - 5115.584586921312, - 5079.960593532419, - 5041.666815916365, - 4996.890646451658, - 4940.689933377038, - 4869.765756367399, - 4783.706744356991, - 4686.716342928624, - 4586.0776224365945, - 4490.556955397653, - 4408.024350591145, - 4343.3836414408925, - 4296.842270825264, - 4264.876738160073, - 4241.814421702239, - 4221.585914383518, - 4201.018936789647, - 4180.760695047575, - 4165.181734428284, - 4161.061296357647, - 4174.562880688991, - 4209.144145037998, - 4263.411124589851, - 4330.768021342886, - 4403.139403082621, - 4473.249078679027, - 4539.93276094756, - 4612.046958356204, - 4709.920073881743, - 4864.794257846235, - 5114.016011510576, - 5493.0136800939945, - 6033.77377374342, - 6748.218300870372, - 7632.733883473775 - ], - "flow:J8:branch11_seg0": [ - 0.5157189626620532, - 0.6671939772752096, - 0.8364971081986325, - 1.0165430707924208, - 1.1990864470620064, - 1.3764676846106456, - 1.542445303687414, - 1.692874524275678, - 1.825202103516198, - 1.9391367304978377, - 2.0352310289333024, - 2.1142267816866913, - 2.1772060945098413, - 2.2243819782207725, - 2.2557848763066097, - 2.2714014121451784, - 2.2710810432344632, - 2.255668750155036, - 2.2263711460485696, - 2.185030147126981, - 2.1340393425691935, - 2.075516444757522, - 2.0114390142645897, - 1.943276107409271, - 1.871998776312493, - 1.798398388446374, - 1.7232444488552106, - 1.6475636254791919, - 1.5726845830384524, - 1.5000991166843556, - 1.43104619794675, - 1.366173737143881, - 1.305085422446569, - 1.2461235087066056, - 1.1866373183809777, - 1.1233061506614275, - 1.052916138682588, - 0.9730167732932544, - 0.8828732213835654, - 0.7834008229232682, - 0.6774883326379144, - 0.5694480743010387, - 0.46418602813626914, - 0.36643533983603527, - 0.2800534364905238, - 0.20747939963189826, - 0.149355224913953, - 0.10534530170868557, - 0.0738932518358763, - 0.053169136245170855, - 0.041601090481410904, - 0.037739198496272025, - 0.040747938307512936, - 0.04989831306409379, - 0.06431541686996087, - 0.08291003924334975, - 0.10399990401549587, - 0.12556483863033013, - 0.14548035767483547, - 0.16191574447166157, - 0.1735811100969833, - 0.18014110577092457, - 0.18207743574990734, - 0.18040341744368293, - 0.1765201161175011, - 0.17156576516778166, - 0.1662063886597677, - 0.16051006831161213, - 0.15399829311624946, - 0.1459511003701364, - 0.1357627549344068, - 0.12325224816946252, - 0.10888068606181732, - 0.09361403612440862, - 0.078767755950144, - 0.06560278095744615, - 0.054996208083940734, - 0.04716119452583763, - 0.04174405956038538, - 0.03791606452553356, - 0.03475032472409152, - 0.031645015157051155, - 0.028520225617799207, - 0.02589801593990572, - 0.024734857656267588, - 0.02601779056319238, - 0.03041943565505426, - 0.03790023944765209, - 0.04769508729290765, - 0.05860308387240637, - 0.06941541411500897, - 0.07968108355314017, - 0.09031300982335572, - 0.10392846386888849, - 0.12487563822496692, - 0.1585597011873171, - 0.210698320464552, - 0.2862584627927644, - 0.38775551671721553, - 0.5157189626620532 - ], - "pressure:J8:branch11_seg0": [ - 7632.733883473775, - 8665.809090084107, - 9803.686584310668, - 10998.090831808599, - 12195.3133699162, - 13346.108162892026, - 14412.09787666978, - 15370.911425084889, - 16208.425960800649, - 16924.31303838236, - 17525.836005767294, - 18015.977290702154, - 18401.754254862182, - 18684.577353051256, - 18862.503678986697, - 18937.33585958089, - 18907.524877709933, - 18779.35311606162, - 18563.929392148675, - 18272.38209922318, - 17921.447483907556, - 17525.167575419793, - 17095.05664888608, - 16640.46582067678, - 16166.931776919559, - 15679.357763802585, - 15183.243375929924, - 14685.794088249362, - 14196.189338134249, - 13724.315452024142, - 13277.620023639696, - 12858.575919013887, - 12462.882665092167, - 12077.23923942439, - 11682.613407687257, - 11256.630061593552, - 10779.399216275933, - 10236.259912419444, - 9625.863352284607, - 8958.198366605608, - 8254.311674250934, - 7545.154561570537, - 6863.359280008944, - 6239.0094611713685, - 5694.243785517859, - 5243.774558665473, - 4888.316778742887, - 4622.9835436066915, - 4437.859155284055, - 4319.310622354187, - 4258.21697934469, - 4246.03581565163, - 4277.119288336833, - 4347.540906224437, - 4450.740510275934, - 4578.800621603147, - 4720.086917568734, - 4860.62895802826, - 4986.588714131404, - 5086.982990721397, - 5154.577820207615, - 5188.428026942646, - 5193.842781472567, - 5177.656075190236, - 5149.174826762163, - 5115.584586921312, - 5079.960593532419, - 5041.666815916365, - 4996.890646451658, - 4940.689933377038, - 4869.765756367399, - 4783.706744356991, - 4686.716342928624, - 4586.0776224365945, - 4490.556955397653, - 4408.024350591145, - 4343.3836414408925, - 4296.842270825264, - 4264.876738160073, - 4241.814421702239, - 4221.585914383518, - 4201.018936789647, - 4180.760695047575, - 4165.181734428284, - 4161.061296357647, - 4174.562880688991, - 4209.144145037998, - 4263.411124589851, - 4330.768021342886, - 4403.139403082621, - 4473.249078679027, - 4539.93276094756, - 4612.046958356204, - 4709.920073881743, - 4864.794257846235, - 5114.016011510576, - 5493.0136800939945, - 6033.77377374342, - 6748.218300870372, - 7632.733883473775 - ], - "flow:J8:branch130_seg0": [ - 0.43395770615589513, - 0.562895255721719, - 0.7079081379508627, - 0.8629546160520929, - 1.0209877956022504, - 1.1753262125616248, - 1.3204124123082375, - 1.4524046107458652, - 1.5689597266084434, - 1.6696172366898954, - 1.7547161271141718, - 1.8249342935150483, - 1.8811623929436188, - 1.9236531523494247, - 1.9524857132579232, - 1.9676124519247, - 1.9689337277995058, - 1.957091276431852, - 1.9330625569690683, - 1.8984179132355556, - 1.8551609108045368, - 1.805156019748149, - 1.7501480418538067, - 1.6914486169306975, - 1.629954797195927, - 1.5663692997278589, - 1.501357355138414, - 1.4357851462197597, - 1.3707748745799422, - 1.3076031992685224, - 1.2473740865263792, - 1.1907143348106932, - 1.1373781921011026, - 1.0860640233053462, - 1.034568944471465, - 0.9800751044671264, - 0.9197774628738357, - 0.8514812760359829, - 0.7743687134184412, - 0.6890588971127897, - 0.5978810966215162, - 0.5044160721042728, - 0.41286731709033986, - 0.3273622309603218, - 0.2513392358844284, - 0.18703666756131015, - 0.1352114053315813, - 0.09566353031656491, - 0.06714253272317286, - 0.04811741921896309, - 0.037176534513560636, - 0.03305636467254203, - 0.034979811512405715, - 0.042289977324208826, - 0.054261784728961475, - 0.06996724730065114, - 0.08800301991031609, - 0.10665854310152094, - 0.12409836225309784, - 0.1386991715534037, - 0.14929099355786646, - 0.15549351949248122, - 0.15762626336531788, - 0.15652994109577303, - 0.15338192176575724, - 0.1491893053200732, - 0.14458484279017755, - 0.13968569698019703, - 0.13412881812059402, - 0.12731370104047937, - 0.11870045046352193, - 0.1080906832803596, - 0.09581668900186868, - 0.08266655425250571, - 0.06974999159927728, - 0.05816599509073877, - 0.048712974360208945, - 0.041645940899405376, - 0.03671463295393666, - 0.03324090326177694, - 0.030435477454458536, - 0.027740141442458753, - 0.025030583009432325, - 0.02270126230925244, - 0.021539129739497537, - 0.022400187937264983, - 0.02590106506606149, - 0.032075820332202576, - 0.04034138077734498, - 0.04969165223058711, - 0.059075278070553135, - 0.06802397574965206, - 0.07718769864295023, - 0.08866257128978008, - 0.10604589498859295, - 0.13391827162079492, - 0.17722456419337843, - 0.2403238091825373, - 0.32568171353748276, - 0.43395770615589513 - ], - "pressure:J8:branch130_seg0": [ - 7632.733883473775, - 8665.809090084107, - 9803.686584310668, - 10998.090831808599, - 12195.3133699162, - 13346.108162892026, - 14412.09787666978, - 15370.911425084889, - 16208.425960800649, - 16924.31303838236, - 17525.836005767294, - 18015.977290702154, - 18401.754254862182, - 18684.577353051256, - 18862.503678986697, - 18937.33585958089, - 18907.524877709933, - 18779.35311606162, - 18563.929392148675, - 18272.38209922318, - 17921.447483907556, - 17525.167575419793, - 17095.05664888608, - 16640.46582067678, - 16166.931776919559, - 15679.357763802585, - 15183.243375929924, - 14685.794088249362, - 14196.189338134249, - 13724.315452024142, - 13277.620023639696, - 12858.575919013887, - 12462.882665092167, - 12077.23923942439, - 11682.613407687257, - 11256.630061593552, - 10779.399216275933, - 10236.259912419444, - 9625.863352284607, - 8958.198366605608, - 8254.311674250934, - 7545.154561570537, - 6863.359280008944, - 6239.0094611713685, - 5694.243785517859, - 5243.774558665473, - 4888.316778742887, - 4622.9835436066915, - 4437.859155284055, - 4319.310622354187, - 4258.21697934469, - 4246.03581565163, - 4277.119288336833, - 4347.540906224437, - 4450.740510275934, - 4578.800621603147, - 4720.086917568734, - 4860.62895802826, - 4986.588714131404, - 5086.982990721397, - 5154.577820207615, - 5188.428026942646, - 5193.842781472567, - 5177.656075190236, - 5149.174826762163, - 5115.584586921312, - 5079.960593532419, - 5041.666815916365, - 4996.890646451658, - 4940.689933377038, - 4869.765756367399, - 4783.706744356991, - 4686.716342928624, - 4586.0776224365945, - 4490.556955397653, - 4408.024350591145, - 4343.3836414408925, - 4296.842270825264, - 4264.876738160073, - 4241.814421702239, - 4221.585914383518, - 4201.018936789647, - 4180.760695047575, - 4165.181734428284, - 4161.061296357647, - 4174.562880688991, - 4209.144145037998, - 4263.411124589851, - 4330.768021342886, - 4403.139403082621, - 4473.249078679027, - 4539.93276094756, - 4612.046958356204, - 4709.920073881743, - 4864.794257846235, - 5114.016011510576, - 5493.0136800939945, - 6033.77377374342, - 6748.218300870372, - 7632.733883473775 - ], - "flow:branch12_seg0:J9": [ - 4.67593764438781, - 6.019055268938795, - 7.48214745812489, - 8.991822575958443, - 10.470787291380786, - 11.852363533228761, - 13.088070115054432, - 14.151997673319984, - 15.036195006931706, - 15.750742133754542, - 16.312391143869007, - 16.73671632981225, - 17.038110999964704, - 17.221538710389915, - 17.287831787897378, - 17.237215983780317, - 17.068807828825552, - 16.791243185988492, - 16.417151427105875, - 15.964061696086992, - 15.454132669403974, - 14.90582243617076, - 14.334699135471073, - 13.750889394519145, - 13.159515522801307, - 12.564210091805405, - 11.96917532708152, - 11.381640579934686, - 10.81212399842757, - 10.27256712422566, - 9.77218243112979, - 9.31360737521937, - 8.889272971593826, - 8.47985988246946, - 8.057323138694052, - 7.58931527157544, - 7.046961386396589, - 6.411167183239077, - 5.68080798898315, - 4.871759509377574, - 4.017486702183154, - 3.162978114225325, - 2.3559301402021346, - 1.6386783344670774, - 1.0414321302865805, - 0.5797999390924597, - 0.2505725503452914, - 0.041706990282508745, - -0.06778013522354613, - -0.09974875011826254, - -0.07093879630026739, - 0.005508724312519411, - 0.12271999819178836, - 0.27597361998522363, - 0.45890759675570797, - 0.6623026284953696, - 0.8716864272814107, - 1.0693808011392778, - 1.2374425303844034, - 1.3616237970767868, - 1.4340399735231117, - 1.4559394997767818, - 1.4363157432792433, - 1.3884377742577394, - 1.3275579017344694, - 1.2649514578423495, - 1.2059853879705937, - 1.1494335850391304, - 1.088837574701856, - 1.015978563443576, - 0.9247671291570001, - 0.8139477024476536, - 0.6890751456624665, - 0.560553379367236, - 0.44137530576598905, - 0.34302689076803006, - 0.2722975826592443, - 0.2289937453513912, - 0.2070928828636111, - 0.19683420656088924, - 0.18845445403164054, - 0.17630887135944803, - 0.1607668364553701, - 0.14828422273636963, - 0.14910305004844324, - 0.17297665317445474, - 0.22541517498149255, - 0.30445833151460244, - 0.40089641208270255, - 0.5018577088459585, - 0.5957424394545111, - 0.6797257143317202, - 0.7652578499410226, - 0.8804466095669328, - 1.0690953134472208, - 1.38298881448159, - 1.8725983126634043, - 2.579115466206433, - 3.516361675160856, - 4.67593764438781 - ], - "pressure:branch12_seg0:J9": [ - 9594.410228874644, - 11025.504897586552, - 12502.862760445707, - 13950.909504789364, - 15302.14833257692, - 16503.33164311248, - 17525.274795701876, - 18368.469480108964, - 19041.49897160531, - 19560.544074543173, - 19956.492005827255, - 20234.27953793252, - 20404.228482532566, - 20468.91158765905, - 20418.38113313876, - 20260.313268128917, - 19991.70522850668, - 19625.425993286593, - 19187.014975809085, - 18689.15858151137, - 18157.10204908581, - 17607.338185572706, - 17047.046462986273, - 16483.283187129877, - 15916.477204246246, - 15348.850459750836, - 14786.810477487526, - 14239.922944327061, - 13720.747784172927, - 13240.928995508093, - 12805.713482591718, - 12408.50643019799, - 12033.500557303574, - 11650.904147026524, - 11226.875375045813, - 10729.223696329493, - 10137.884959300993, - 9443.942354787283, - 8664.370475703246, - 7833.768643772951, - 6994.242079857941, - 6199.333570912369, - 5494.3502861897, - 4911.904055560883, - 4463.447042336952, - 4155.364360889649, - 3966.4147860492326, - 3873.419019028347, - 3858.152123955188, - 3894.454468084919, - 3974.030607771625, - 4090.4692407464504, - 4237.7761560061035, - 4416.050252832952, - 4615.375429708, - 4822.878119324233, - 5021.842084882702, - 5192.21146658782, - 5317.9542162194375, - 5390.93976092092, - 5410.705954900077, - 5384.935462795366, - 5331.968568871891, - 5265.257733534494, - 5198.847927556502, - 5140.544695120531, - 5088.281532944695, - 5034.912057220097, - 4970.768772525361, - 4887.360217202505, - 4782.741209554298, - 4660.220321812108, - 4531.383693927096, - 4410.66024807156, - 4310.742114001955, - 4239.897387367042, - 4199.588887377926, - 4183.275028954948, - 4179.154344680493, - 4177.090180576662, - 4168.560163367609, - 4152.813851639436, - 4136.572685138408, - 4130.956535520079, - 4147.988139098063, - 4194.970982993318, - 4271.618438920516, - 4369.825546825267, - 4473.1953640671445, - 4568.55263038981, - 4648.810539063336, - 4721.150395186898, - 4811.331353056227, - 4961.67817742828, - 5226.673200413127, - 5662.566518341554, - 6305.458286191647, - 7188.792487139307, - 8299.3481404131, - 9594.410228874644 - ], - "flow:J9:branch13_seg0": [ - 1.7524860657181602, - 2.2510456266788976, - 2.790318696429805, - 3.3424498168347254, - 3.878859921613518, - 4.37547230667102, - 4.815398461396294, - 5.190326484522885, - 5.498699009717887, - 5.745369188579776, - 5.937171129963199, - 6.0802246364467, - 6.179810228151869, - 6.237455348032728, - 6.253210539396832, - 6.226915632414992, - 6.158134386259654, - 6.050244322850936, - 5.908081802072704, - 5.738287622523278, - 5.5491537020752935, - 5.347435102506573, - 5.138641373143575, - 4.926203423468354, - 4.711679100909735, - 4.496157212921879, - 4.281074685998645, - 4.069095137845694, - 3.8641657911336402, - 3.670725839912682, - 3.4921027499530846, - 3.329011708450119, - 3.1782552306323857, - 3.0322454541806034, - 2.8801983684902566, - 2.7099651115716106, - 2.5109898058470836, - 2.276636478495003, - 2.007253323683154, - 1.7095361009020298, - 1.3966914817991085, - 1.0858944959785166, - 0.7949838528731097, - 0.5393617600269314, - 0.32953079796443335, - 0.17046125324356834, - 0.060039642482407195, - -0.00702867616657626, - -0.03894737792664059, - -0.04404306025282427, - -0.0284100295628488, - 0.003404087297223245, - 0.04913696780841811, - 0.10734734532779723, - 0.17583793177071913, - 0.2511727375749042, - 0.32793008626718534, - 0.3995041708085622, - 0.45926836609345156, - 0.5021313611219349, - 0.5254904635741727, - 0.5302486553716876, - 0.5201190696775145, - 0.5003245770250626, - 0.4766405497655247, - 0.4531413098782938, - 0.43156793097487495, - 0.4111348277510164, - 0.38915082212320784, - 0.36239710381781143, - 0.3286225231791415, - 0.28750639352182783, - 0.24135337880887067, - 0.1942680429264167, - 0.15119704009638493, - 0.11637710155744214, - 0.09213979437641377, - 0.0781343846190097, - 0.07180025987531222, - 0.06930206210068823, - 0.06695817816649513, - 0.06276582777900275, - 0.057101764093067844, - 0.052633508154006844, - 0.05337148448234811, - 0.06298598390109963, - 0.08340437602846539, - 0.11361810007026237, - 0.1499110434900949, - 0.1872789519845454, - 0.22139489473660784, - 0.2514601395495127, - 0.2822011911055501, - 0.32464825204814685, - 0.39560182706621716, - 0.5145827431487415, - 0.7001221939032095, - 0.9669667161741644, - 1.319297047716572, - 1.7524860657181602 - ], - "pressure:J9:branch13_seg0": [ - 9594.410228874644, - 11025.504897586552, - 12502.862760445707, - 13950.909504789364, - 15302.14833257692, - 16503.33164311248, - 17525.274795701876, - 18368.469480108964, - 19041.49897160531, - 19560.544074543173, - 19956.492005827255, - 20234.27953793252, - 20404.228482532566, - 20468.91158765905, - 20418.38113313876, - 20260.313268128917, - 19991.70522850668, - 19625.425993286593, - 19187.014975809085, - 18689.15858151137, - 18157.10204908581, - 17607.338185572706, - 17047.046462986273, - 16483.283187129877, - 15916.477204246246, - 15348.850459750836, - 14786.810477487526, - 14239.922944327061, - 13720.747784172927, - 13240.928995508093, - 12805.713482591718, - 12408.50643019799, - 12033.500557303574, - 11650.904147026524, - 11226.875375045813, - 10729.223696329493, - 10137.884959300993, - 9443.942354787283, - 8664.370475703246, - 7833.768643772951, - 6994.242079857941, - 6199.333570912369, - 5494.3502861897, - 4911.904055560883, - 4463.447042336952, - 4155.364360889649, - 3966.4147860492326, - 3873.419019028347, - 3858.152123955188, - 3894.454468084919, - 3974.030607771625, - 4090.4692407464504, - 4237.7761560061035, - 4416.050252832952, - 4615.375429708, - 4822.878119324233, - 5021.842084882702, - 5192.21146658782, - 5317.9542162194375, - 5390.93976092092, - 5410.705954900077, - 5384.935462795366, - 5331.968568871891, - 5265.257733534494, - 5198.847927556502, - 5140.544695120531, - 5088.281532944695, - 5034.912057220097, - 4970.768772525361, - 4887.360217202505, - 4782.741209554298, - 4660.220321812108, - 4531.383693927096, - 4410.66024807156, - 4310.742114001955, - 4239.897387367042, - 4199.588887377926, - 4183.275028954948, - 4179.154344680493, - 4177.090180576662, - 4168.560163367609, - 4152.813851639436, - 4136.572685138408, - 4130.956535520079, - 4147.988139098063, - 4194.970982993318, - 4271.618438920516, - 4369.825546825267, - 4473.1953640671445, - 4568.55263038981, - 4648.810539063336, - 4721.150395186898, - 4811.331353056227, - 4961.67817742828, - 5226.673200413127, - 5662.566518341554, - 6305.458286191647, - 7188.792487139307, - 8299.3481404131, - 9594.410228874644 - ], - "flow:J9:branch80_seg0": [ - 0.8687246764954609, - 1.1053275438762782, - 1.3557670122941226, - 1.6070962998353424, - 1.8463204907609132, - 2.0633062732786382, - 2.2517047881859398, - 2.4094540517453584, - 2.536884147619462, - 2.6371882868968335, - 2.714120996779033, - 2.770023057074566, - 2.8071781116717727, - 2.825765127838809, - 2.825318943209155, - 2.8059490375048717, - 2.7673645108012073, - 2.7116236157792852, - 2.6413983080128682, - 2.559831716863539, - 2.4710061325760373, - 2.377721719264816, - 2.2821807270165326, - 2.185614888169364, - 2.088385546493885, - 1.9909052486673153, - 1.89389908953379, - 1.7987834039853419, - 1.7075578776629952, - 1.6223136666904923, - 1.5443303890448892, - 1.4734431329130755, - 1.407547120892293, - 1.3423921903538512, - 1.2725843213833192, - 1.1924148273700412, - 1.0974424886013254, - 0.9853583677342228, - 0.8575465825684749, - 0.7182503126354534, - 0.5744399825253141, - 0.43465608777245535, - 0.30701190914260046, - 0.19801035050576368, - 0.1114923366088065, - 0.04877190683969649, - 0.007576095200066745, - -0.01501293501976524, - -0.023155206917116873, - -0.020710890403449568, - -0.009957595127877266, - 0.00729160938077589, - 0.030411889132591845, - 0.05892576804885897, - 0.09163574010900523, - 0.12681297128413277, - 0.1616694302215609, - 0.19299013350486205, - 0.21781177666350504, - 0.23412883566497966, - 0.24121597739409978, - 0.24004055533254237, - 0.23287545468497683, - 0.22226102787534113, - 0.21088288232494232, - 0.20032434277433886, - 0.1909158326808638, - 0.18186774079601614, - 0.1716441553537661, - 0.15870135241625147, - 0.14220699529007916, - 0.12235755137301726, - 0.10066430399376934, - 0.07928882892776044, - 0.06059764497900485, - 0.0463680677170089, - 0.03732038618688646, - 0.032799841470756326, - 0.03127496840986332, - 0.030815030419654485, - 0.02976758544083911, - 0.027552716658070884, - 0.024762386101560792, - 0.02299673140038654, - 0.024289641484854702, - 0.03022729511715942, - 0.04134981077624352, - 0.056716634654808855, - 0.0741286545498632, - 0.09114833483161248, - 0.10596754199852214, - 0.11884980461761013, - 0.1329294792655645, - 0.15429916376895003, - 0.19155031666902572, - 0.2539678637011526, - 0.3496612781398477, - 0.4846940563013747, - 0.6588902993492298, - 0.8687246764954609 - ], - "pressure:J9:branch80_seg0": [ - 9594.410228874644, - 11025.504897586552, - 12502.862760445707, - 13950.909504789364, - 15302.14833257692, - 16503.33164311248, - 17525.274795701876, - 18368.469480108964, - 19041.49897160531, - 19560.544074543173, - 19956.492005827255, - 20234.27953793252, - 20404.228482532566, - 20468.91158765905, - 20418.38113313876, - 20260.313268128917, - 19991.70522850668, - 19625.425993286593, - 19187.014975809085, - 18689.15858151137, - 18157.10204908581, - 17607.338185572706, - 17047.046462986273, - 16483.283187129877, - 15916.477204246246, - 15348.850459750836, - 14786.810477487526, - 14239.922944327061, - 13720.747784172927, - 13240.928995508093, - 12805.713482591718, - 12408.50643019799, - 12033.500557303574, - 11650.904147026524, - 11226.875375045813, - 10729.223696329493, - 10137.884959300993, - 9443.942354787283, - 8664.370475703246, - 7833.768643772951, - 6994.242079857941, - 6199.333570912369, - 5494.3502861897, - 4911.904055560883, - 4463.447042336952, - 4155.364360889649, - 3966.4147860492326, - 3873.419019028347, - 3858.152123955188, - 3894.454468084919, - 3974.030607771625, - 4090.4692407464504, - 4237.7761560061035, - 4416.050252832952, - 4615.375429708, - 4822.878119324233, - 5021.842084882702, - 5192.21146658782, - 5317.9542162194375, - 5390.93976092092, - 5410.705954900077, - 5384.935462795366, - 5331.968568871891, - 5265.257733534494, - 5198.847927556502, - 5140.544695120531, - 5088.281532944695, - 5034.912057220097, - 4970.768772525361, - 4887.360217202505, - 4782.741209554298, - 4660.220321812108, - 4531.383693927096, - 4410.66024807156, - 4310.742114001955, - 4239.897387367042, - 4199.588887377926, - 4183.275028954948, - 4179.154344680493, - 4177.090180576662, - 4168.560163367609, - 4152.813851639436, - 4136.572685138408, - 4130.956535520079, - 4147.988139098063, - 4194.970982993318, - 4271.618438920516, - 4369.825546825267, - 4473.1953640671445, - 4568.55263038981, - 4648.810539063336, - 4721.150395186898, - 4811.331353056227, - 4961.67817742828, - 5226.673200413127, - 5662.566518341554, - 6305.458286191647, - 7188.792487139307, - 8299.3481404131, - 9594.410228874644 - ], - "flow:J9:branch94_seg0": [ - 2.0547269021741883, - 2.662682098383618, - 3.3360617494009626, - 4.042276459288372, - 4.745606879006355, - 5.413584953279104, - 6.020966865472197, - 6.552217137051742, - 7.0006118495943594, - 7.36818465827793, - 7.66109901712678, - 7.886468636290984, - 8.051122660141063, - 8.158318234518378, - 8.209302305291393, - 8.204351313860451, - 8.143308931764691, - 8.02937524735827, - 7.867671317020301, - 7.665942356700179, - 7.433972834752643, - 7.180665614399374, - 6.913877035310966, - 6.639071082881428, - 6.359450875397682, - 6.0771476302162135, - 5.7942015515490874, - 5.51376203810365, - 5.240400329630936, - 4.979527617622483, - 4.7357492921318185, - 4.511152533856175, - 4.303470620069146, - 4.1052222379350045, - 3.904540448820477, - 3.686935332633789, - 3.438529091948181, - 3.1491723370098517, - 2.816008082731522, - 2.4439730958400903, - 2.0463552378587333, - 1.642427530474353, - 1.2539343781864247, - 0.9013062239343823, - 0.6004089957133405, - 0.36056677900919487, - 0.18295681266281746, - 0.06374860146885025, - -0.005677550379788683, - -0.0349947994619887, - -0.03257117160954132, - -0.005186972365479727, - 0.0431711412507784, - 0.1097005066085674, - 0.19143392487598357, - 0.28431691963633265, - 0.3820869107926646, - 0.47688649682585355, - 0.5603623876274465, - 0.6253636002898718, - 0.667333532554839, - 0.685650289072552, - 0.6833212189167517, - 0.6658521693573353, - 0.6400344696440021, - 0.6114858051897171, - 0.583501624314855, - 0.5564310164920977, - 0.5280425972248819, - 0.4948801072095134, - 0.4539376106877795, - 0.40408375755280845, - 0.3470574628598265, - 0.2869965075130589, - 0.2295806206905993, - 0.180281721493579, - 0.1428374020959441, - 0.11805951926162518, - 0.10401765457843558, - 0.09671711404054646, - 0.09172869042430633, - 0.0859903269223744, - 0.07890268626074148, - 0.07265398318197624, - 0.07144192408124046, - 0.0797633741561957, - 0.10066098817678372, - 0.1341235967895312, - 0.17685671404274445, - 0.22343042202980068, - 0.2683800027193812, - 0.3094157701645975, - 0.35012717956990813, - 0.4014991937498359, - 0.481943169711978, - 0.6144382076316959, - 0.8228148406203472, - 1.1274546937308938, - 1.538174328095055, - 2.0547269021741883 - ], - "pressure:J9:branch94_seg0": [ - 9594.410228874644, - 11025.504897586552, - 12502.862760445707, - 13950.909504789364, - 15302.14833257692, - 16503.33164311248, - 17525.274795701876, - 18368.469480108964, - 19041.49897160531, - 19560.544074543173, - 19956.492005827255, - 20234.27953793252, - 20404.228482532566, - 20468.91158765905, - 20418.38113313876, - 20260.313268128917, - 19991.70522850668, - 19625.425993286593, - 19187.014975809085, - 18689.15858151137, - 18157.10204908581, - 17607.338185572706, - 17047.046462986273, - 16483.283187129877, - 15916.477204246246, - 15348.850459750836, - 14786.810477487526, - 14239.922944327061, - 13720.747784172927, - 13240.928995508093, - 12805.713482591718, - 12408.50643019799, - 12033.500557303574, - 11650.904147026524, - 11226.875375045813, - 10729.223696329493, - 10137.884959300993, - 9443.942354787283, - 8664.370475703246, - 7833.768643772951, - 6994.242079857941, - 6199.333570912369, - 5494.3502861897, - 4911.904055560883, - 4463.447042336952, - 4155.364360889649, - 3966.4147860492326, - 3873.419019028347, - 3858.152123955188, - 3894.454468084919, - 3974.030607771625, - 4090.4692407464504, - 4237.7761560061035, - 4416.050252832952, - 4615.375429708, - 4822.878119324233, - 5021.842084882702, - 5192.21146658782, - 5317.9542162194375, - 5390.93976092092, - 5410.705954900077, - 5384.935462795366, - 5331.968568871891, - 5265.257733534494, - 5198.847927556502, - 5140.544695120531, - 5088.281532944695, - 5034.912057220097, - 4970.768772525361, - 4887.360217202505, - 4782.741209554298, - 4660.220321812108, - 4531.383693927096, - 4410.66024807156, - 4310.742114001955, - 4239.897387367042, - 4199.588887377926, - 4183.275028954948, - 4179.154344680493, - 4177.090180576662, - 4168.560163367609, - 4152.813851639436, - 4136.572685138408, - 4130.956535520079, - 4147.988139098063, - 4194.970982993318, - 4271.618438920516, - 4369.825546825267, - 4473.1953640671445, - 4568.55263038981, - 4648.810539063336, - 4721.150395186898, - 4811.331353056227, - 4961.67817742828, - 5226.673200413127, - 5662.566518341554, - 6305.458286191647, - 7188.792487139307, - 8299.3481404131, - 9594.410228874644 - ], - "flow:branch13_seg0:J10": [ - 1.7486958556506902, - 2.247028835000187, - 2.7862330395486183, - 3.3385808694789536, - 3.8753565379394628, - 4.372419444984094, - 4.812826144004403, - 5.188313987461342, - 5.497067003119405, - 5.744113256425074, - 5.936276725703786, - 6.079590401090631, - 6.179498771020734, - 6.237430048746288, - 6.253481816668969, - 6.227509232229397, - 6.15899648328781, - 6.051358095967065, - 5.909376417577986, - 5.7397007548217145, - 5.5506490114743485, - 5.348964157270874, - 5.140184286942491, - 4.927758747614401, - 4.713238047203807, - 4.4977135321021615, - 4.282604234286822, - 4.070564137885387, - 3.8655374577272763, - 3.671982841363818, - 3.493233352712387, - 3.3300560193612734, - 3.179286288859662, - 3.033336559029174, - 2.8814502750173965, - 2.7114563449969187, - 2.512765381398951, - 2.2786583960414153, - 2.0094899787246217, - 1.7118516795885905, - 1.3989503036016375, - 1.087978424225272, - 0.7967745459375282, - 0.5407728706469718, - 0.33057952817712544, - 0.1711451132109187, - 0.06040285865033628, - -0.006890267892939923, - -0.038982741446890214, - -0.04421664221800105, - -0.028676725135796038, - 0.003028002674184321, - 0.0486815796461007, - 0.1068295734579903, - 0.17526176351199096, - 0.25060574913374695, - 0.327417137526341, - 0.39909274742372397, - 0.45899093047339673, - 0.5020188539617407, - 0.5255018650065939, - 0.5303582902291849, - 0.5202962185513, - 0.5005082971068109, - 0.47681138209243484, - 0.45329332427739905, - 0.43170799529039877, - 0.41129078311435435, - 0.3893497143861418, - 0.3626569711347577, - 0.32893641695735004, - 0.2878561785248075, - 0.2417054643069612, - 0.19457753250180929, - 0.1514316572573074, - 0.1165261791071794, - 0.09221419270695691, - 0.07814990310014051, - 0.07180176888697706, - 0.06931770514351386, - 0.06699238044781071, - 0.06281364423795666, - 0.05713802278258794, - 0.05262149759898231, - 0.05328667555485487, - 0.06280882072726686, - 0.08316019137356774, - 0.11333752654333701, - 0.1496302725889849, - 0.18703765347989265, - 0.2211940601108882, - 0.2512530965653091, - 0.28189333819378826, - 0.32410773476245475, - 0.39467498147032404, - 0.5131045050688982, - 0.6980481960358187, - 0.9642337215503533, - 1.3159209658660234, - 1.7486958556506902 - ], - "pressure:branch13_seg0:J10": [ - 9227.688681691236, - 10607.254906504992, - 12051.479993293908, - 13486.311917843579, - 14842.465645263806, - 16063.639047709674, - 17116.27116734656, - 17995.517742335323, - 18702.9826708455, - 19256.090196399982, - 19681.755645363944, - 19986.4614838702, - 20183.10344255747, - 20274.033960236287, - 20252.011674933114, - 20123.543102017735, - 19884.9596288596, - 19547.296078600317, - 19133.700982215603, - 18656.789195414814, - 18140.72679008363, - 17602.753219921688, - 17051.67811047474, - 16495.43433417729, - 15935.488298166127, - 15374.069192908843, - 14816.789412919632, - 14272.3196639957, - 13752.360814487945, - 13268.684327560903, - 12827.385563636266, - 12424.78801054954, - 12047.504843644414, - 11668.87401947919, - 11257.179327599712, - 10780.463236630807, - 10216.830080957425, - 9554.009885975942, - 8804.4573389352, - 7997.207482118282, - 7171.157713064682, - 6377.440291219164, - 5661.008958667293, - 5056.999281899969, - 4581.149950347755, - 4242.148364475377, - 4024.344446307596, - 3906.6375412355615, - 3870.7169140050873, - 3891.465400057434, - 3958.315346126667, - 4063.469757632276, - 4201.013208269603, - 4369.644928272342, - 4560.945946948522, - 4763.604954639206, - 4961.556321201053, - 5135.820519159712, - 5269.969879743125, - 5354.676978282198, - 5386.895250535638, - 5372.886321097383, - 5328.734030029594, - 5267.048642445211, - 5202.442948331643, - 5143.725657051314, - 5090.67701320592, - 5037.8392674538, - 4976.447808295755, - 4898.003122202078, - 4799.39691997527, - 4682.608132084037, - 4557.271880432163, - 4436.729179772685, - 4333.619064394576, - 4257.046681255283, - 4209.969669579756, - 4187.560980681404, - 4179.814303060519, - 4176.498372435053, - 4168.8366864728005, - 4154.673570010916, - 4138.921221379074, - 4131.332799394287, - 4143.455272343498, - 4183.129097537341, - 4251.965554822146, - 4343.572795583992, - 4443.3998750893525, - 4538.753245496744, - 4621.09451106982, - 4694.574599644038, - 4780.524422808205, - 4916.8102052383565, - 5154.02078177724, - 5546.871388717833, - 6134.605697724053, - 6951.52266882623, - 7993.963528508197, - 9227.688681691236 - ], - "flow:J10:branch14_seg0": [ - 0.884432115726828, - 1.1364199101841028, - 1.4091324864513342, - 1.6885113598235444, - 1.9600747165943744, - 2.211613533903027, - 2.434541641939422, - 2.62462770191263, - 2.7810007472890774, - 2.906146533732175, - 3.0034918133902324, - 3.0761214610143797, - 3.126754105409848, - 3.1561357608803835, - 3.164323606130523, - 3.1512356331423494, - 3.116624342158888, - 3.062213767071567, - 2.9904269932115457, - 2.904617666031367, - 2.8089845601034886, - 2.706950867788442, - 2.6013108698332585, - 2.493815555588443, - 2.3852568038072595, - 2.2761879721022584, - 2.167333427898522, - 2.060034011422665, - 1.956282773987806, - 1.8583277733434171, - 1.767858624643785, - 1.6852552590198238, - 1.6089191807757588, - 1.5350276375990133, - 1.4581376798118206, - 1.3721031848933456, - 1.2715731879667365, - 1.1531531839639122, - 1.0170109588917602, - 0.8664802534891415, - 0.7082300386193885, - 0.5509361003155672, - 0.40362296126988645, - 0.27409532924025615, - 0.16769859660059885, - 0.08696639307732829, - 0.030867193259677118, - -0.0032711745120122494, - -0.01958039316408934, - -0.0222861711327614, - -0.01447418845204887, - 0.0015432304054949011, - 0.02461282058486477, - 0.054005903292991195, - 0.08861108065143855, - 0.12670373552609404, - 0.16554319510903248, - 0.20179377867290155, - 0.23209722334931898, - 0.25387557424401974, - 0.26578321098016133, - 0.26827682558918925, - 0.26321852699505155, - 0.2532392138877366, - 0.2412708086917446, - 0.22937936061064437, - 0.21845659732913655, - 0.20811797652953876, - 0.19700816385924844, - 0.18349920811331502, - 0.1664455473715011, - 0.14567547048856655, - 0.12234231717735497, - 0.09851610480935995, - 0.07669709406010936, - 0.05903577383905334, - 0.046721306184530825, - 0.03958896289742649, - 0.03635353472331211, - 0.03507721221098504, - 0.03389358476790052, - 0.03178004612371429, - 0.028916481714247756, - 0.026641731107124433, - 0.026983870558638656, - 0.031799381658210536, - 0.04208152824944531, - 0.05732620295529607, - 0.07566613231260085, - 0.09457466474684834, - 0.1118521580060664, - 0.12707488627356783, - 0.14260574745705076, - 0.16399745288044762, - 0.19972459446271762, - 0.259654410432129, - 0.3531810911107929, - 0.4877740176350075, - 0.6656293986806009, - 0.884432115726828 - ], - "pressure:J10:branch14_seg0": [ - 9227.688681691236, - 10607.254906504992, - 12051.479993293908, - 13486.311917843579, - 14842.465645263806, - 16063.639047709674, - 17116.27116734656, - 17995.517742335323, - 18702.9826708455, - 19256.090196399982, - 19681.755645363944, - 19986.4614838702, - 20183.10344255747, - 20274.033960236287, - 20252.011674933114, - 20123.543102017735, - 19884.9596288596, - 19547.296078600317, - 19133.700982215603, - 18656.789195414814, - 18140.72679008363, - 17602.753219921688, - 17051.67811047474, - 16495.43433417729, - 15935.488298166127, - 15374.069192908843, - 14816.789412919632, - 14272.3196639957, - 13752.360814487945, - 13268.684327560903, - 12827.385563636266, - 12424.78801054954, - 12047.504843644414, - 11668.87401947919, - 11257.179327599712, - 10780.463236630807, - 10216.830080957425, - 9554.009885975942, - 8804.4573389352, - 7997.207482118282, - 7171.157713064682, - 6377.440291219164, - 5661.008958667293, - 5056.999281899969, - 4581.149950347755, - 4242.148364475377, - 4024.344446307596, - 3906.6375412355615, - 3870.7169140050873, - 3891.465400057434, - 3958.315346126667, - 4063.469757632276, - 4201.013208269603, - 4369.644928272342, - 4560.945946948522, - 4763.604954639206, - 4961.556321201053, - 5135.820519159712, - 5269.969879743125, - 5354.676978282198, - 5386.895250535638, - 5372.886321097383, - 5328.734030029594, - 5267.048642445211, - 5202.442948331643, - 5143.725657051314, - 5090.67701320592, - 5037.8392674538, - 4976.447808295755, - 4898.003122202078, - 4799.39691997527, - 4682.608132084037, - 4557.271880432163, - 4436.729179772685, - 4333.619064394576, - 4257.046681255283, - 4209.969669579756, - 4187.560980681404, - 4179.814303060519, - 4176.498372435053, - 4168.8366864728005, - 4154.673570010916, - 4138.921221379074, - 4131.332799394287, - 4143.455272343498, - 4183.129097537341, - 4251.965554822146, - 4343.572795583992, - 4443.3998750893525, - 4538.753245496744, - 4621.09451106982, - 4694.574599644038, - 4780.524422808205, - 4916.8102052383565, - 5154.02078177724, - 5546.871388717833, - 6134.605697724053, - 6951.52266882623, - 7993.963528508197, - 9227.688681691236 - ], - "flow:J10:branch106_seg0": [ - 0.8642637399238621, - 1.1106089248160849, - 1.3771005530972846, - 1.6500695096554097, - 1.915281821345088, - 2.160805911081067, - 2.3782845020649823, - 2.563686285548712, - 2.7160662558303272, - 2.8379667226928995, - 2.932784912313554, - 3.003468940076251, - 3.0527446656108865, - 3.0812942878659064, - 3.089158210538447, - 3.0762735990870484, - 3.042372141128922, - 2.989144328895497, - 2.9189494243664402, - 2.835083088790347, - 2.7416644513708612, - 2.6420132894824317, - 2.538873417109231, - 2.433943192025958, - 2.3279812433965468, - 2.221525559999903, - 2.1152708063882995, - 2.0105301264627213, - 1.9092546837394704, - 1.8136550680204002, - 1.7253747280686016, - 1.6448007603414494, - 1.5703671080839026, - 1.4983089214301613, - 1.423312595205576, - 1.339353160103573, - 1.2411921934322148, - 1.1255052120775033, - 0.9924790198328611, - 0.8453714260994492, - 0.6907202649822489, - 0.5370423239097047, - 0.3931515846676419, - 0.26667754140671557, - 0.1628809315765266, - 0.08417872013359039, - 0.029535665390659167, - -0.0036190933809276747, - -0.01940234828280088, - -0.021930471085239656, - -0.014202536683747167, - 0.0014847722686894198, - 0.024068759061235928, - 0.05282367016499909, - 0.08665068286055243, - 0.12390201360765289, - 0.16187394241730862, - 0.19729896875082234, - 0.22689370712407775, - 0.248143279717721, - 0.2597186540264325, - 0.26208146463999565, - 0.25707769155624854, - 0.24726908321907431, - 0.23554057340069023, - 0.2239139636667547, - 0.21325139796126216, - 0.20317280658481554, - 0.19234155052689328, - 0.17915776302144265, - 0.16249086958584893, - 0.14218070803624094, - 0.11936314712960616, - 0.09606142769244934, - 0.07473456319719805, - 0.05749040526812605, - 0.045492886522426085, - 0.038560940202714035, - 0.03544823416366495, - 0.03424049293252882, - 0.033098795679910184, - 0.03103359811424236, - 0.028221541068340194, - 0.025979766491857875, - 0.026302804996216213, - 0.031009439069056333, - 0.041078663124122464, - 0.05601132358804093, - 0.07396414027638405, - 0.09246298873304433, - 0.10934190210482184, - 0.12417821029174131, - 0.13928759073673752, - 0.1601102818820071, - 0.1949503870076063, - 0.25345009463676915, - 0.3448671049250259, - 0.4764597039153457, - 0.6502915671854227, - 0.8642637399238621 - ], - "pressure:J10:branch106_seg0": [ - 9227.688681691236, - 10607.254906504992, - 12051.479993293908, - 13486.311917843579, - 14842.465645263806, - 16063.639047709674, - 17116.27116734656, - 17995.517742335323, - 18702.9826708455, - 19256.090196399982, - 19681.755645363944, - 19986.4614838702, - 20183.10344255747, - 20274.033960236287, - 20252.011674933114, - 20123.543102017735, - 19884.9596288596, - 19547.296078600317, - 19133.700982215603, - 18656.789195414814, - 18140.72679008363, - 17602.753219921688, - 17051.67811047474, - 16495.43433417729, - 15935.488298166127, - 15374.069192908843, - 14816.789412919632, - 14272.3196639957, - 13752.360814487945, - 13268.684327560903, - 12827.385563636266, - 12424.78801054954, - 12047.504843644414, - 11668.87401947919, - 11257.179327599712, - 10780.463236630807, - 10216.830080957425, - 9554.009885975942, - 8804.4573389352, - 7997.207482118282, - 7171.157713064682, - 6377.440291219164, - 5661.008958667293, - 5056.999281899969, - 4581.149950347755, - 4242.148364475377, - 4024.344446307596, - 3906.6375412355615, - 3870.7169140050873, - 3891.465400057434, - 3958.315346126667, - 4063.469757632276, - 4201.013208269603, - 4369.644928272342, - 4560.945946948522, - 4763.604954639206, - 4961.556321201053, - 5135.820519159712, - 5269.969879743125, - 5354.676978282198, - 5386.895250535638, - 5372.886321097383, - 5328.734030029594, - 5267.048642445211, - 5202.442948331643, - 5143.725657051314, - 5090.67701320592, - 5037.8392674538, - 4976.447808295755, - 4898.003122202078, - 4799.39691997527, - 4682.608132084037, - 4557.271880432163, - 4436.729179772685, - 4333.619064394576, - 4257.046681255283, - 4209.969669579756, - 4187.560980681404, - 4179.814303060519, - 4176.498372435053, - 4168.8366864728005, - 4154.673570010916, - 4138.921221379074, - 4131.332799394287, - 4143.455272343498, - 4183.129097537341, - 4251.965554822146, - 4343.572795583992, - 4443.3998750893525, - 4538.753245496744, - 4621.09451106982, - 4694.574599644038, - 4780.524422808205, - 4916.8102052383565, - 5154.02078177724, - 5546.871388717833, - 6134.605697724053, - 6951.52266882623, - 7993.963528508197, - 9227.688681691236 - ], - "flow:branch15_seg0:J11": [ - 3.8448736873527247, - 5.048787243808724, - 6.4836898556879285, - 8.112556002333037, - 9.879729918857457, - 11.719795553205357, - 13.565942937553789, - 15.357892819547272, - 17.04641678003968, - 18.598078909045572, - 19.99195661302645, - 21.21762701499767, - 22.271861242418808, - 23.15292370414175, - 23.860119920766053, - 24.39222364990911, - 24.748127372847566, - 24.93025576852379, - 24.944313082170787, - 24.801601406093543, - 24.51829242162597, - 24.113090591486223, - 23.606014994868904, - 23.015603071786842, - 22.357839296217673, - 21.646229414368122, - 20.892548393962482, - 20.108514113206315, - 19.306937549673254, - 18.501988452383006, - 17.707835067783307, - 16.936479791294314, - 16.19434308730534, - 15.479629042402408, - 14.781163588817112, - 14.079014814834538, - 13.347788069159598, - 12.561557620160798, - 11.70021935911391, - 10.753751781949006, - 9.726637712600885, - 8.637765197091307, - 7.51814928123248, - 6.406134027789354, - 5.341717247675808, - 4.360181736288787, - 3.487708510107723, - 2.740352276719453, - 2.122640256824008, - 1.6312979507030037, - 1.2580353506210986, - 0.9921562786976182, - 0.8237402743533252, - 0.7433261016724967, - 0.7416836767600717, - 0.8085529514254045, - 0.9307155340109655, - 1.0918579979923926, - 1.2730556113379363, - 1.4547344154103365, - 1.619029718748003, - 1.7528756046490754, - 1.8491593380470002, - 1.9071610967095, - 1.9316183017009334, - 1.9298330123057081, - 1.9092050657794974, - 1.8748107130589124, - 1.8281318766503385, - 1.7674075701434617, - 1.6891224592244811, - 1.5903077828578482, - 1.4706966643100186, - 1.3337903709301686, - 1.186948573851704, - 1.0398159977769375, - 0.9020859621783195, - 0.7810208616404261, - 0.6801115088065326, - 0.5984274969001321, - 0.5319323684896552, - 0.4756470684668783, - 0.4259622339213577, - 0.38251443216386055, - 0.3487138962900178, - 0.3306075417861021, - 0.3347817931719641, - 0.3654076291600376, - 0.4224541334462798, - 0.5012205526060344, - 0.5939555446627993, - 0.6937524024514236, - 0.7993616053708973, - 0.9197541053052357, - 1.0772278853136856, - 1.306894087667498, - 1.6539382254040924, - 2.1665574418453115, - 2.886834256931554, - 3.8448736873527247 - ], - "pressure:branch15_seg0:J11": [ - 7048.064910953878, - 7936.723926027782, - 8939.077780630585, - 10018.240992732342, - 11130.008515838083, - 12230.415412552653, - 13281.69593919703, - 14257.39901099134, - 15137.751796646658, - 15914.836256179773, - 16588.613441075977, - 17157.840146191622, - 17625.939129645358, - 17993.45359707215, - 18258.70173216238, - 18422.951879033, - 18484.902720319442, - 18448.74776718906, - 18322.947668025114, - 18116.31742030081, - 17842.529780156412, - 17514.238161099256, - 17142.611297060506, - 16737.492095916954, - 16305.791352906197, - 15853.522796843718, - 15386.748349068255, - 14912.476400836293, - 14439.095635779027, - 13975.691828105855, - 13529.802980769064, - 13105.439364441347, - 12701.412781391458, - 12309.227464412794, - 11915.010176718159, - 11500.992722816844, - 11049.841756566584, - 10547.028747136972, - 9987.478674475078, - 9375.181753939327, - 8723.54641167873, - 8055.416421978366, - 7397.088229482174, - 6774.997860822227, - 6210.992589574709, - 5721.889027464137, - 5313.868662410248, - 4987.482161622126, - 4738.167668675467, - 4556.910022136403, - 4436.586965129722, - 4369.792335426113, - 4350.794800665741, - 4375.14900748157, - 4436.69947050943, - 4528.344124255474, - 4640.139038417178, - 4760.040868667919, - 4875.5957582843785, - 4976.0007262727195, - 5052.9865562180685, - 5103.060988997734, - 5128.006099463576, - 5131.550215119616, - 5120.233097694867, - 5099.970341750465, - 5074.118815097454, - 5043.401759375185, - 5005.9111534781005, - 4958.353181561801, - 4898.094413513525, - 4824.288915920271, - 4739.4450793919505, - 4648.727883924737, - 4558.949492573345, - 4476.884862779998, - 4407.563131645129, - 4352.662188349943, - 4310.825818734483, - 4278.53331277819, - 4251.310908202893, - 4226.250211670754, - 4203.016612185561, - 4184.156806834806, - 4174.449743985466, - 4178.8268463953755, - 4200.718763572574, - 4240.18086196468, - 4293.141309738523, - 4353.848905684562, - 4416.367102988763, - 4478.630292123292, - 4545.862329117935, - 4632.376830833415, - 4761.880123110417, - 4964.590815571229, - 5271.342134684326, - 5712.013311504465, - 6302.915850091009, - 7048.064910953878 - ], - "flow:J11:branch16_seg0": [ - 1.7600315747994293, - 2.3155743168188976, - 2.9891704353413284, - 3.7673575488332856, - 4.626850491140815, - 5.53793372140948, - 6.46830322874729, - 7.3869696893656265, - 8.26714375355934, - 9.088695259082122, - 9.83769587215544, - 10.505912110184527, - 11.08928929110388, - 11.585646087013375, - 11.993921439901168, - 12.3132071913973, - 12.542841068664654, - 12.683500232416185, - 12.737364239459977, - 12.709093938910119, - 12.60569830897515, - 12.435801524404507, - 12.208997871339793, - 11.93465107750557, - 11.621239363002042, - 11.27614181718175, - 10.905833718409964, - 10.516515926415998, - 10.114672803010375, - 9.707321607279695, - 9.301614801221064, - 8.903971160667261, - 8.518617022308119, - 8.146286641382437, - 7.78338554264111, - 7.4219727681138075, - 7.050886442384435, - 6.657789850727887, - 6.231951784287279, - 5.766564217487436, - 5.261034100056239, - 4.721561161864054, - 4.1606570057505685, - 3.5953259263035076, - 3.0445894994650753, - 2.5265289470828405, - 2.055942422642906, - 1.6431614660229792, - 1.2931989952065013, - 1.0068149650413127, - 0.7816145504774632, - 0.6133805069174297, - 0.497510285329888, - 0.42931890734152983, - 0.4041528466265034, - 0.4169208140807583, - 0.4613565329576208, - 0.5297785565670138, - 0.6131598893440018, - 0.701850034004195, - 0.7866106423368457, - 0.8599938320962451, - 0.9171128864549494, - 0.9561080871787484, - 0.9779097737701342, - 0.9851902755461802, - 0.9812379681651819, - 0.9687521642955119, - 0.9490560073814772, - 0.9219751821802201, - 0.8862944808324694, - 0.8406827723168204, - 0.7846918013739009, - 0.7194317316629711, - 0.6478014813862433, - 0.5740139697338824, - 0.5026977661705724, - 0.4377847374592244, - 0.38170724304369896, - 0.33492682838550647, - 0.296267616029437, - 0.2637181476005244, - 0.2354788204882438, - 0.21091799378725432, - 0.19103237196324455, - 0.17820017016663395, - 0.17539110075704442, - 0.18491057255599697, - 0.20744080839828574, - 0.24156003309484572, - 0.2841888673808553, - 0.33206505705013833, - 0.3838379983725647, - 0.44228254505615944, - 0.5160432919713973, - 0.6199804829495663, - 0.7743581927873409, - 1.0020965633931902, - 1.324926827887958, - 1.7600315747994293 - ], - "pressure:J11:branch16_seg0": [ - 7048.064910953878, - 7936.723926027782, - 8939.077780630585, - 10018.240992732342, - 11130.008515838083, - 12230.415412552653, - 13281.69593919703, - 14257.39901099134, - 15137.751796646658, - 15914.836256179773, - 16588.613441075977, - 17157.840146191622, - 17625.939129645358, - 17993.45359707215, - 18258.70173216238, - 18422.951879033, - 18484.902720319442, - 18448.74776718906, - 18322.947668025114, - 18116.31742030081, - 17842.529780156412, - 17514.238161099256, - 17142.611297060506, - 16737.492095916954, - 16305.791352906197, - 15853.522796843718, - 15386.748349068255, - 14912.476400836293, - 14439.095635779027, - 13975.691828105855, - 13529.802980769064, - 13105.439364441347, - 12701.412781391458, - 12309.227464412794, - 11915.010176718159, - 11500.992722816844, - 11049.841756566584, - 10547.028747136972, - 9987.478674475078, - 9375.181753939327, - 8723.54641167873, - 8055.416421978366, - 7397.088229482174, - 6774.997860822227, - 6210.992589574709, - 5721.889027464137, - 5313.868662410248, - 4987.482161622126, - 4738.167668675467, - 4556.910022136403, - 4436.586965129722, - 4369.792335426113, - 4350.794800665741, - 4375.14900748157, - 4436.69947050943, - 4528.344124255474, - 4640.139038417178, - 4760.040868667919, - 4875.5957582843785, - 4976.0007262727195, - 5052.9865562180685, - 5103.060988997734, - 5128.006099463576, - 5131.550215119616, - 5120.233097694867, - 5099.970341750465, - 5074.118815097454, - 5043.401759375185, - 5005.9111534781005, - 4958.353181561801, - 4898.094413513525, - 4824.288915920271, - 4739.4450793919505, - 4648.727883924737, - 4558.949492573345, - 4476.884862779998, - 4407.563131645129, - 4352.662188349943, - 4310.825818734483, - 4278.53331277819, - 4251.310908202893, - 4226.250211670754, - 4203.016612185561, - 4184.156806834806, - 4174.449743985466, - 4178.8268463953755, - 4200.718763572574, - 4240.18086196468, - 4293.141309738523, - 4353.848905684562, - 4416.367102988763, - 4478.630292123292, - 4545.862329117935, - 4632.376830833415, - 4761.880123110417, - 4964.590815571229, - 5271.342134684326, - 5712.013311504465, - 6302.915850091009, - 7048.064910953878 - ], - "flow:J11:branch24_seg0": [ - 2.084842112553295, - 2.733212926989827, - 3.4945194203465992, - 4.34519845349975, - 5.25287942771664, - 6.181861831795878, - 7.097639708806496, - 7.970923130181644, - 8.77927302648034, - 9.509383649963445, - 10.154260740871004, - 10.711714904813146, - 11.182571951314934, - 11.567277617128374, - 11.866198480864886, - 12.079016458511814, - 12.205286304182911, - 12.246755536107615, - 12.20694884271081, - 12.092507467183424, - 11.912594112650813, - 11.677289067081713, - 11.397017123529114, - 11.080951994281275, - 10.736599933215633, - 10.37008759718637, - 9.986714675552514, - 9.591998186790317, - 9.19226474666288, - 8.794666845103313, - 8.40622026656224, - 8.032508630627053, - 7.675726064997221, - 7.333342401019972, - 6.997778046176003, - 6.657042046720733, - 6.2969016267751625, - 5.903767769432911, - 5.468267574826635, - 4.9871875644615695, - 4.465603612544648, - 3.9162040352272562, - 3.357492275481912, - 2.810808101485847, - 2.2971277482107344, - 1.8336527892059489, - 1.4317660874648173, - 1.097190810696474, - 0.8294412616175062, - 0.6244829856616908, - 0.4764208001436352, - 0.3787757717801887, - 0.3262299890234372, - 0.3140071943309669, - 0.3375308301335683, - 0.39163213734464625, - 0.4693590010533449, - 0.5620794414253786, - 0.6598957219939344, - 0.7528843814061416, - 0.8324190764111572, - 0.8928817725528303, - 0.9320464515920507, - 0.9510530095307522, - 0.9537085279307994, - 0.9446427367595281, - 0.9279670976143153, - 0.9060585487634005, - 0.8790758692688612, - 0.8454323879632416, - 0.8028279783920119, - 0.7496250105410275, - 0.6860048629361175, - 0.6143586392671975, - 0.5391470924654608, - 0.4658020280430549, - 0.39938819600774716, - 0.3432361241812016, - 0.2984042657628336, - 0.26350066851462556, - 0.23566475246021826, - 0.21192892086635395, - 0.19048341343311384, - 0.1715964383766063, - 0.15768152432677318, - 0.15240737161946816, - 0.15939069241491965, - 0.1804970566040406, - 0.21501332504799414, - 0.2596605195111886, - 0.30976667728194407, - 0.3616873454012853, - 0.4155236069983327, - 0.4774715602490763, - 0.5611845933422882, - 0.6869136047179316, - 0.8795800326167517, - 1.1644608784521209, - 1.5619074290435961, - 2.084842112553295 - ], - "pressure:J11:branch24_seg0": [ - 7048.064910953878, - 7936.723926027782, - 8939.077780630585, - 10018.240992732342, - 11130.008515838083, - 12230.415412552653, - 13281.69593919703, - 14257.39901099134, - 15137.751796646658, - 15914.836256179773, - 16588.613441075977, - 17157.840146191622, - 17625.939129645358, - 17993.45359707215, - 18258.70173216238, - 18422.951879033, - 18484.902720319442, - 18448.74776718906, - 18322.947668025114, - 18116.31742030081, - 17842.529780156412, - 17514.238161099256, - 17142.611297060506, - 16737.492095916954, - 16305.791352906197, - 15853.522796843718, - 15386.748349068255, - 14912.476400836293, - 14439.095635779027, - 13975.691828105855, - 13529.802980769064, - 13105.439364441347, - 12701.412781391458, - 12309.227464412794, - 11915.010176718159, - 11500.992722816844, - 11049.841756566584, - 10547.028747136972, - 9987.478674475078, - 9375.181753939327, - 8723.54641167873, - 8055.416421978366, - 7397.088229482174, - 6774.997860822227, - 6210.992589574709, - 5721.889027464137, - 5313.868662410248, - 4987.482161622126, - 4738.167668675467, - 4556.910022136403, - 4436.586965129722, - 4369.792335426113, - 4350.794800665741, - 4375.14900748157, - 4436.69947050943, - 4528.344124255474, - 4640.139038417178, - 4760.040868667919, - 4875.5957582843785, - 4976.0007262727195, - 5052.9865562180685, - 5103.060988997734, - 5128.006099463576, - 5131.550215119616, - 5120.233097694867, - 5099.970341750465, - 5074.118815097454, - 5043.401759375185, - 5005.9111534781005, - 4958.353181561801, - 4898.094413513525, - 4824.288915920271, - 4739.4450793919505, - 4648.727883924737, - 4558.949492573345, - 4476.884862779998, - 4407.563131645129, - 4352.662188349943, - 4310.825818734483, - 4278.53331277819, - 4251.310908202893, - 4226.250211670754, - 4203.016612185561, - 4184.156806834806, - 4174.449743985466, - 4178.8268463953755, - 4200.718763572574, - 4240.18086196468, - 4293.141309738523, - 4353.848905684562, - 4416.367102988763, - 4478.630292123292, - 4545.862329117935, - 4632.376830833415, - 4761.880123110417, - 4964.590815571229, - 5271.342134684326, - 5712.013311504465, - 6302.915850091009, - 7048.064910953878 - ], - "flow:branch16_seg0:J12": [ - 1.7572503363712502, - 2.3123683882249324, - 2.985645816027883, - 3.7636799956258074, - 4.6231656687184834, - 5.534372610698836, - 6.464975531634743, - 7.383961891725048, - 8.264473197112801, - 9.086380304793721, - 9.835732104784544, - 10.504282641908324, - 11.0879967700121, - 11.584681989658609, - 11.993291120446465, - 12.31290872132198, - 12.542868244837141, - 12.683842026124116, - 12.73797539365788, - 12.709938577291013, - 12.606738942083451, - 12.43698926189926, - 12.210302714581168, - 11.936046734663739, - 11.622704749066052, - 11.277661359583538, - 10.907385464145479, - 10.518074277900304, - 10.116208465972626, - 9.708807758903214, - 9.303028338376867, - 8.90531139463884, - 8.51990264485805, - 8.147554081996674, - 7.784693529843866, - 7.423385301344234, - 7.052455238768096, - 6.659549213920214, - 6.233906423394761, - 5.768674112308836, - 5.263235251123256, - 4.723769860269922, - 4.1627769731911375, - 3.5972676123078458, - 3.0463054007057777, - 2.5279751376718322, - 2.0571006097023425, - 1.6440631369060907, - 1.2938577692655127, - 1.0072627032926191, - 0.7818836158750385, - 0.6134795188680836, - 0.49746588466743014, - 0.42914689246830845, - 0.40386804517885166, - 0.41655813055030566, - 0.4609518243205382, - 0.5293726000435237, - 0.6127940734334519, - 0.7015578157242128, - 0.7864073111585401, - 0.8598828705334368, - 0.9170821180808597, - 0.956135491021883, - 0.9779749181113838, - 0.9852756147057822, - 0.981336118546934, - 0.9688674949109686, - 0.9491991031432717, - 0.9221585423089882, - 0.8865223082206642, - 0.8409528199488339, - 0.7849920464549017, - 0.7197376280838202, - 0.6480888794953031, - 0.5742634159251825, - 0.5028991416637814, - 0.4379348914199219, - 0.38182051856068505, - 0.33501816805231943, - 0.2963481966951734, - 0.26379535929596226, - 0.23554812646305637, - 0.21096523788766944, - 0.19103939432239236, - 0.1781509791374036, - 0.17528108196784264, - 0.1847463595708752, - 0.20724127995124814, - 0.2413487004377272, - 0.2839805828906072, - 0.3318546346356078, - 0.38359113134219613, - 0.4419324799983521, - 0.5154958382421695, - 0.6191157673167241, - 0.7730926053955381, - 1.000348013285698, - 1.3226284899531746, - 1.7572503363712502 - ], - "pressure:branch16_seg0:J12": [ - 6028.06583764146, - 6652.99465989796, - 7394.3369814084, - 8233.623617094965, - 9142.963399412836, - 10089.606096747428, - 11040.191447861902, - 11964.998311872805, - 12838.780689733545, - 13644.326828910185, - 14370.996642404503, - 15012.103192188037, - 15565.401046065897, - 16029.375119383243, - 16402.844734833485, - 16685.460155335364, - 16876.431302265508, - 16977.147836367298, - 16991.171515029135, - 16924.05275604782, - 16784.185919744625, - 16581.002080773935, - 16324.381529112514, - 16023.705436236844, - 15687.033392640396, - 15321.37187137597, - 14933.023080518587, - 14528.300967608735, - 14114.039285790936, - 13697.661714732609, - 13286.346539705371, - 12885.97571449883, - 12499.58927213008, - 12125.890919178053, - 11759.097461849635, - 11389.153644946824, - 11003.601183346997, - 10589.656453037944, - 10137.850363548116, - 9643.742423432092, - 9109.757848602309, - 8545.712257659477, - 7967.043177322742, - 7392.739343530408, - 6842.416731739979, - 6333.741518581084, - 5879.596607289171, - 5488.192002009968, - 5162.34472710906, - 4900.707787196381, - 4699.857116094033, - 4554.849040321393, - 4460.926984431562, - 4413.451111170024, - 4407.457961095709, - 4437.506789753668, - 4496.5444365180665, - 4575.975257040271, - 4666.069298069821, - 4756.970064598082, - 4839.665584873991, - 4907.593488893901, - 4957.38254459723, - 4988.381189661516, - 5002.759653010882, - 5003.918565926614, - 4995.154246549858, - 4978.735524560747, - 4955.274264651676, - 4923.90664839388, - 4883.088605676358, - 4831.596423459235, - 4769.614864807902, - 4699.1212298295895, - 4623.86921028249, - 4548.6230865452035, - 4478.094601591966, - 4415.6988030192015, - 4363.058738937717, - 4319.744378072474, - 4283.841748156584, - 4253.151506261331, - 4226.18168286704, - 4202.990414341065, - 4185.400574982509, - 4176.346365459439, - 4178.907201118853, - 4194.908533266313, - 4223.981692282904, - 4263.770703441905, - 4310.563369796101, - 4361.330532035958, - 4416.128544334376, - 4480.2069699089, - 4565.442154839099, - 4689.958657251271, - 4876.338370142653, - 5148.858931428271, - 5527.942276825054, - 6028.06583764146 - ], - "flow:J12:branch17_seg0": [ - 1.4502343268455191, - 1.9084663453891701, - 2.464332698037388, - 3.106799641956577, - 3.8166390653636424, - 4.569307853926032, - 5.338106653717132, - 6.097408340528402, - 6.8250065111901606, - 7.504251280445362, - 8.123595507575613, - 8.676209864572204, - 9.158748322506673, - 9.569391017811009, - 9.907270521295418, - 10.171625773723775, - 10.361905219731453, - 10.478660096524502, - 10.52365205618588, - 10.500736441781328, - 10.415696008310471, - 10.2756407527808, - 10.088513991197294, - 9.862056044562227, - 9.603279406284148, - 9.3182894160216, - 9.012432597999874, - 8.690829951069176, - 8.358835173135894, - 8.022247077376898, - 7.686978527395298, - 7.358355686080001, - 7.039894197145498, - 6.732226405808768, - 6.432414672034007, - 6.133914611326188, - 5.827500992343959, - 5.502969290004098, - 5.151421718384969, - 4.767181696750643, - 4.349722198788589, - 3.9041287486698417, - 3.440710496585366, - 2.9735096579889984, - 2.5182759602334475, - 2.0899509042680204, - 1.7007912638694593, - 1.3593910318317153, - 1.0698862270276879, - 0.8329331992879005, - 0.6465618167058418, - 0.5072698684263591, - 0.41127365148585987, - 0.3546928791462812, - 0.3336820143439323, - 0.3440551582312674, - 0.38063960193779495, - 0.43709785531871, - 0.5059767437360397, - 0.5792978503760977, - 0.6494116333865406, - 0.7101496090286185, - 0.7574529026899486, - 0.7897690226463472, - 0.8078603983968674, - 0.8139324957668659, - 0.8107098915080677, - 0.8004347837410664, - 0.784209378730461, - 0.7618953469382043, - 0.7324835250374491, - 0.6948687170021882, - 0.6486694200880198, - 0.594786867782951, - 0.5356118781478387, - 0.47462580164046175, - 0.4156599004865327, - 0.36197050805273995, - 0.3155871971285501, - 0.2768968638444433, - 0.24492867635056328, - 0.2180197039747208, - 0.1946716237169199, - 0.17435075556237634, - 0.15787263016818393, - 0.14720051424991168, - 0.1447967143010565, - 0.15257782728415792, - 0.17112336577486154, - 0.19926796377107855, - 0.23446397456444673, - 0.27399812959071923, - 0.31672255738055505, - 0.3648885836779352, - 0.42559701889180424, - 0.5110831784139357, - 0.6381088794943025, - 0.825602743158061, - 1.0915326735248965, - 1.4502343268455191 - ], - "pressure:J12:branch17_seg0": [ - 6028.06583764146, - 6652.99465989796, - 7394.3369814084, - 8233.623617094965, - 9142.963399412836, - 10089.606096747428, - 11040.191447861902, - 11964.998311872805, - 12838.780689733545, - 13644.326828910185, - 14370.996642404503, - 15012.103192188037, - 15565.401046065897, - 16029.375119383243, - 16402.844734833485, - 16685.460155335364, - 16876.431302265508, - 16977.147836367298, - 16991.171515029135, - 16924.05275604782, - 16784.185919744625, - 16581.002080773935, - 16324.381529112514, - 16023.705436236844, - 15687.033392640396, - 15321.37187137597, - 14933.023080518587, - 14528.300967608735, - 14114.039285790936, - 13697.661714732609, - 13286.346539705371, - 12885.97571449883, - 12499.58927213008, - 12125.890919178053, - 11759.097461849635, - 11389.153644946824, - 11003.601183346997, - 10589.656453037944, - 10137.850363548116, - 9643.742423432092, - 9109.757848602309, - 8545.712257659477, - 7967.043177322742, - 7392.739343530408, - 6842.416731739979, - 6333.741518581084, - 5879.596607289171, - 5488.192002009968, - 5162.34472710906, - 4900.707787196381, - 4699.857116094033, - 4554.849040321393, - 4460.926984431562, - 4413.451111170024, - 4407.457961095709, - 4437.506789753668, - 4496.5444365180665, - 4575.975257040271, - 4666.069298069821, - 4756.970064598082, - 4839.665584873991, - 4907.593488893901, - 4957.38254459723, - 4988.381189661516, - 5002.759653010882, - 5003.918565926614, - 4995.154246549858, - 4978.735524560747, - 4955.274264651676, - 4923.90664839388, - 4883.088605676358, - 4831.596423459235, - 4769.614864807902, - 4699.1212298295895, - 4623.86921028249, - 4548.6230865452035, - 4478.094601591966, - 4415.6988030192015, - 4363.058738937717, - 4319.744378072474, - 4283.841748156584, - 4253.151506261331, - 4226.18168286704, - 4202.990414341065, - 4185.400574982509, - 4176.346365459439, - 4178.907201118853, - 4194.908533266313, - 4223.981692282904, - 4263.770703441905, - 4310.563369796101, - 4361.330532035958, - 4416.128544334376, - 4480.2069699089, - 4565.442154839099, - 4689.958657251271, - 4876.338370142653, - 5148.858931428271, - 5527.942276825054, - 6028.06583764146 - ], - "flow:J12:branch116_seg0": [ - 0.3070160095257313, - 0.40390204283576214, - 0.5213131179904946, - 0.6568803536692299, - 0.8065266033548409, - 0.9650647567728045, - 1.126868877917612, - 1.286553551196647, - 1.439466685922639, - 1.5821290243483586, - 1.712136597208932, - 1.8280727773361198, - 1.9292484475054303, - 2.015290971847604, - 2.086020599151044, - 2.1412829475982034, - 2.1809630251056893, - 2.205181929599614, - 2.214323337472001, - 2.209202135509688, - 2.19104293377298, - 2.1613485091184628, - 2.1217887233838733, - 2.073990690101512, - 2.019425342781904, - 1.959371943561937, - 1.8949528661456037, - 1.8272443268311283, - 1.7573732928367305, - 1.6865606815263199, - 1.6160498109815677, - 1.54695570855884, - 1.4800084477125535, - 1.4153276761879077, - 1.3522788578098606, - 1.2894706900180468, - 1.2249542464241359, - 1.1565799239161172, - 1.0824847050097919, - 1.0014924155581935, - 0.9135130523346673, - 0.8196411116000805, - 0.7220664766057715, - 0.6237579543188482, - 0.5280294404723306, - 0.4380242334038111, - 0.3563093458328834, - 0.2846721050743755, - 0.22397154223782506, - 0.17432950400471844, - 0.13532179916919665, - 0.10620965044172449, - 0.08619223318157027, - 0.07445401332202715, - 0.07018603083491931, - 0.07250297231903831, - 0.08031222238274338, - 0.09227474472481381, - 0.10681732969741212, - 0.12225996534811513, - 0.1369956777719994, - 0.14973326150481825, - 0.15962921539091135, - 0.1663664683755361, - 0.1701145197145162, - 0.17134311893891624, - 0.17062622703886626, - 0.16843271116990224, - 0.1649897244128108, - 0.16026319537078398, - 0.1540387831832149, - 0.14608410294664576, - 0.136322626366882, - 0.12495076030086921, - 0.11247700134746456, - 0.09963761428472076, - 0.08723924117724864, - 0.07596438336718195, - 0.0662333214321349, - 0.05812130420787606, - 0.0514195203446101, - 0.04577565532124146, - 0.04087650274613644, - 0.0366144823252931, - 0.03316676415420842, - 0.030950464887491907, - 0.03048436766678614, - 0.03216853228671729, - 0.036117914176386635, - 0.04208073666664866, - 0.04951660832616041, - 0.057856505044888554, - 0.06686857396164099, - 0.07704389632041682, - 0.08989881935036523, - 0.1080325889027884, - 0.13498372590123575, - 0.1747452701276369, - 0.23109581642827867, - 0.3070160095257313 - ], - "pressure:J12:branch116_seg0": [ - 6028.06583764146, - 6652.99465989796, - 7394.3369814084, - 8233.623617094965, - 9142.963399412836, - 10089.606096747428, - 11040.191447861902, - 11964.998311872805, - 12838.780689733545, - 13644.326828910185, - 14370.996642404503, - 15012.103192188037, - 15565.401046065897, - 16029.375119383243, - 16402.844734833485, - 16685.460155335364, - 16876.431302265508, - 16977.147836367298, - 16991.171515029135, - 16924.05275604782, - 16784.185919744625, - 16581.002080773935, - 16324.381529112514, - 16023.705436236844, - 15687.033392640396, - 15321.37187137597, - 14933.023080518587, - 14528.300967608735, - 14114.039285790936, - 13697.661714732609, - 13286.346539705371, - 12885.97571449883, - 12499.58927213008, - 12125.890919178053, - 11759.097461849635, - 11389.153644946824, - 11003.601183346997, - 10589.656453037944, - 10137.850363548116, - 9643.742423432092, - 9109.757848602309, - 8545.712257659477, - 7967.043177322742, - 7392.739343530408, - 6842.416731739979, - 6333.741518581084, - 5879.596607289171, - 5488.192002009968, - 5162.34472710906, - 4900.707787196381, - 4699.857116094033, - 4554.849040321393, - 4460.926984431562, - 4413.451111170024, - 4407.457961095709, - 4437.506789753668, - 4496.5444365180665, - 4575.975257040271, - 4666.069298069821, - 4756.970064598082, - 4839.665584873991, - 4907.593488893901, - 4957.38254459723, - 4988.381189661516, - 5002.759653010882, - 5003.918565926614, - 4995.154246549858, - 4978.735524560747, - 4955.274264651676, - 4923.90664839388, - 4883.088605676358, - 4831.596423459235, - 4769.614864807902, - 4699.1212298295895, - 4623.86921028249, - 4548.6230865452035, - 4478.094601591966, - 4415.6988030192015, - 4363.058738937717, - 4319.744378072474, - 4283.841748156584, - 4253.151506261331, - 4226.18168286704, - 4202.990414341065, - 4185.400574982509, - 4176.346365459439, - 4178.907201118853, - 4194.908533266313, - 4223.981692282904, - 4263.770703441905, - 4310.563369796101, - 4361.330532035958, - 4416.128544334376, - 4480.2069699089, - 4565.442154839099, - 4689.958657251271, - 4876.338370142653, - 5148.858931428271, - 5527.942276825054, - 6028.06583764146 - ], - "flow:branch17_seg0:J13": [ - 1.4501882056353166, - 1.9084101772863473, - 2.4642675311110924, - 3.106727542763662, - 3.8165625185246097, - 4.569229604531097, - 5.338029375536118, - 6.09733432313528, - 6.824937467218304, - 7.504188384794367, - 8.123539383340814, - 8.676160873538336, - 9.15870663410137, - 9.569356671767805, - 9.907243654052772, - 10.171606357022947, - 10.361893270137276, - 10.478655523928209, - 10.523654326725042, - 10.50074504097528, - 10.415710234644152, - 10.275659731995713, - 10.088536964047353, - 9.862082281034812, - 9.603308282191016, - 9.318320414459041, - 9.012465200504995, - 8.690863621307402, - 8.35886932833388, - 8.022281106326307, - 7.687011860043322, - 7.358387952118399, - 7.039925309213852, - 6.732256638235089, - 6.432444701612837, - 6.133945407963342, - 5.827533585966765, - 5.503004669992167, - 5.151460500703374, - 4.767223919917259, - 4.349767392651123, - 3.904175851128782, - 3.4407580421490582, - 2.9735559698025757, - 2.5183196081859154, - 2.089990542334643, - 1.700825949661399, - 1.3594204613925644, - 1.0699102575263164, - 0.832952080703215, - 0.6465759475893518, - 0.5072795738137504, - 0.4112793776669391, - 0.3546950106348196, - 0.3336809327002985, - 0.344051396855925, - 0.38063379518975743, - 0.4370907577342581, - 0.5059691885414447, - 0.5792906222472765, - 0.6494053826165771, - 0.7101447710275901, - 0.7574496034304069, - 0.7897671999201118, - 0.8078598189479722, - 0.8139328513698494, - 0.8107109424686729, - 0.8004364155986535, - 0.7842116069383109, - 0.7618982918777868, - 0.732487296916685, - 0.6948733767871954, - 0.6486748985117208, - 0.5947929045782797, - 0.5356181133650872, - 0.47463183857505187, - 0.4156653929035497, - 0.36197522363854245, - 0.3155911108698714, - 0.27690008356746765, - 0.2449313735230124, - 0.2180220550984376, - 0.19467369423106473, - 0.17435246464136284, - 0.15787376746744913, - 0.14720081690592057, - 0.1447959679980281, - 0.1525759507740904, - 0.17112049514577743, - 0.19926436390213703, - 0.234459949245295, - 0.2739938327825989, - 0.31671779897105173, - 0.364882675248467, - 0.4255887275418031, - 0.5110707074769356, - 0.6380904158513299, - 0.8255763694322004, - 1.091496661851161, - 1.4501882056353166 - ], - "pressure:branch17_seg0:J13": [ - 6009.193916273365, - 6629.257037061625, - 7365.799453519927, - 8200.697657752757, - 9106.367291291317, - 10050.267868476938, - 10999.119598511186, - 11923.13508628058, - 12796.963133707732, - 13603.21171565588, - 14331.035676197269, - 14973.642728612656, - 15528.676199991845, - 15994.57832033828, - 16370.175146015225, - 16655.082956325597, - 16848.519330039762, - 16951.821819322366, - 16968.459677099116, - 16903.92421261912, - 16766.514289797837, - 16565.603822210236, - 16311.052808760915, - 16012.23734401832, - 15677.24155271562, - 15313.093333387476, - 14926.101938780672, - 14522.57067482659, - 14109.306651508634, - 13693.704527269843, - 13282.937775889344, - 12882.924160031662, - 12496.782676696923, - 12123.350747356348, - 11756.994103918714, - 11387.799295861365, - 11003.39657666973, - 10591.033586721225, - 10141.158855646396, - 9649.175225028896, - 9117.305827809312, - 8555.125963530443, - 7977.874191067066, - 7404.402937861498, - 6854.288013663798, - 6345.21223062922, - 5890.181884163174, - 5497.548155857664, - 5170.26401379993, - 4907.123264962016, - 4704.769467431717, - 4558.303898889468, - 4462.98688228214, - 4414.174908674506, - 4406.926371026046, - 4435.830664951224, - 4493.888445217216, - 4572.568044606673, - 4662.19003033314, - 4752.915251537841, - 4835.7181366221575, - 4903.979308892912, - 4954.231026073926, - 4985.740812176055, - 5000.597609305726, - 5002.15496550222, - 4993.708203486858, - 4977.55481034945, - 4954.353430956644, - 4923.285457227391, - 4882.827180922788, - 4831.747874812166, - 4770.189366352502, - 4700.06985309185, - 4625.086242802408, - 4549.965523005053, - 4479.413465027992, - 4416.877491945953, - 4364.035696264744, - 4320.515605741688, - 4284.450889272579, - 4253.655309941081, - 4226.615537992354, - 4203.343541757359, - 4185.607276692236, - 4176.303849607616, - 4178.5059840977165, - 4194.071775573576, - 4222.701599199872, - 4262.102322464806, - 4308.603193728505, - 4359.157512012739, - 4413.725917846452, - 4477.3899328835405, - 4561.806588904038, - 4684.876129245279, - 4869.027288127666, - 5138.435448894161, - 5513.600016139673, - 6009.193916273365 - ], - "flow:J13:branch18_seg0": [ - 0.8114065879655309, - 1.067731619485539, - 1.3786897972393297, - 1.7381207443632398, - 2.1352857992497976, - 2.556465166467699, - 2.9867264843073884, - 3.4117306701052934, - 3.8190466137026515, - 4.1993451848967585, - 4.546151873615378, - 4.855629224681295, - 5.125892815755853, - 5.3559174673790775, - 5.54521108542686, - 5.693349209020192, - 5.800020997741233, - 5.865533809049909, - 5.890877536119741, - 5.8782026701690375, - 5.830742494019086, - 5.752474496821236, - 5.647839441584525, - 5.5211695299022505, - 5.376390557721309, - 5.216921675944501, - 5.045759075445124, - 4.865771388831642, - 4.6799562309632865, - 4.4915589629680985, - 4.303888100218282, - 4.119923119865862, - 3.941632432257774, - 3.769373228468412, - 3.6015065945009805, - 3.434377418935377, - 3.2628317623936347, - 3.081163614002501, - 2.8843966879914893, - 2.6693537108176053, - 2.435731454438424, - 2.1863667973345815, - 1.9270174684089163, - 1.6655321206658313, - 1.4107136898920596, - 1.1709250004209768, - 0.9530278851065289, - 0.7618343038702091, - 0.5996728684894549, - 0.4669181965938112, - 0.3624759849730244, - 0.2843943102493746, - 0.23055551596962298, - 0.19878925516820584, - 0.18694295859147123, - 0.19267153204553045, - 0.21308043483768582, - 0.24462401376120252, - 0.2831329172608939, - 0.3241444579221351, - 0.36337859507630094, - 0.39738194321364934, - 0.42388070501146013, - 0.4419999337787166, - 0.4521605556491459, - 0.45559188975490134, - 0.4538146845326022, - 0.4480824496308705, - 0.43901333486065874, - 0.42653256343333806, - 0.4100791918052353, - 0.3890367180081717, - 0.36319218624002975, - 0.3330493957122876, - 0.29994308931842206, - 0.26581815291509137, - 0.23281613988292763, - 0.20275892981798582, - 0.1767827843259282, - 0.1551076068758797, - 0.13719431511032848, - 0.1221153891570573, - 0.10903452512582508, - 0.09765293991989743, - 0.08842486957133049, - 0.08244567590900419, - 0.08109019942795756, - 0.08542972031572214, - 0.09578878889663218, - 0.11151893771345624, - 0.131198928974224, - 0.15331471957171236, - 0.17722608401059553, - 0.20419157285774633, - 0.23817923824890225, - 0.2860293993717746, - 0.35710726920269953, - 0.4619998103627972, - 0.6107620677133337, - 0.8114065879655309 - ], - "pressure:J13:branch18_seg0": [ - 6009.193916273365, - 6629.257037061625, - 7365.799453519927, - 8200.697657752757, - 9106.367291291317, - 10050.267868476938, - 10999.119598511186, - 11923.13508628058, - 12796.963133707732, - 13603.21171565588, - 14331.035676197269, - 14973.642728612656, - 15528.676199991845, - 15994.57832033828, - 16370.175146015225, - 16655.082956325597, - 16848.519330039762, - 16951.821819322366, - 16968.459677099116, - 16903.92421261912, - 16766.514289797837, - 16565.603822210236, - 16311.052808760915, - 16012.23734401832, - 15677.24155271562, - 15313.093333387476, - 14926.101938780672, - 14522.57067482659, - 14109.306651508634, - 13693.704527269843, - 13282.937775889344, - 12882.924160031662, - 12496.782676696923, - 12123.350747356348, - 11756.994103918714, - 11387.799295861365, - 11003.39657666973, - 10591.033586721225, - 10141.158855646396, - 9649.175225028896, - 9117.305827809312, - 8555.125963530443, - 7977.874191067066, - 7404.402937861498, - 6854.288013663798, - 6345.21223062922, - 5890.181884163174, - 5497.548155857664, - 5170.26401379993, - 4907.123264962016, - 4704.769467431717, - 4558.303898889468, - 4462.98688228214, - 4414.174908674506, - 4406.926371026046, - 4435.830664951224, - 4493.888445217216, - 4572.568044606673, - 4662.19003033314, - 4752.915251537841, - 4835.7181366221575, - 4903.979308892912, - 4954.231026073926, - 4985.740812176055, - 5000.597609305726, - 5002.15496550222, - 4993.708203486858, - 4977.55481034945, - 4954.353430956644, - 4923.285457227391, - 4882.827180922788, - 4831.747874812166, - 4770.189366352502, - 4700.06985309185, - 4625.086242802408, - 4549.965523005053, - 4479.413465027992, - 4416.877491945953, - 4364.035696264744, - 4320.515605741688, - 4284.450889272579, - 4253.655309941081, - 4226.615537992354, - 4203.343541757359, - 4185.607276692236, - 4176.303849607616, - 4178.5059840977165, - 4194.071775573576, - 4222.701599199872, - 4262.102322464806, - 4308.603193728505, - 4359.157512012739, - 4413.725917846452, - 4477.3899328835405, - 4561.806588904038, - 4684.876129245279, - 4869.027288127666, - 5138.435448894161, - 5513.600016139673, - 6009.193916273365 - ], - "flow:J13:branch49_seg0": [ - 0.6387816176697856, - 0.8406785578008079, - 1.0855777338717627, - 1.368606798400422, - 1.6812767192748115, - 2.0127644380633978, - 2.3513028912287304, - 2.6856036530299856, - 3.0058908535156523, - 3.30484319989761, - 3.577387509725435, - 3.820531648857041, - 4.032813818345518, - 4.213439204388731, - 4.362032568625914, - 4.478257148002755, - 4.561872272396042, - 4.6131217148783, - 4.6327767906053, - 4.622542370806242, - 4.584967740625066, - 4.523185235174476, - 4.440697522462828, - 4.340912751132563, - 4.2269177244697085, - 4.101398738514537, - 3.966706125059867, - 3.825092232475762, - 3.6789130973705944, - 3.5307221433582074, - 3.3831237598250397, - 3.2384648322525393, - 3.0982928769560796, - 2.9628834097666776, - 2.8309381071118573, - 2.699567989027966, - 2.56470182357313, - 2.421841055989667, - 2.2670638127118843, - 2.0978702090996535, - 1.9140359382127006, - 1.7178090537942001, - 1.513740573740142, - 1.3080238491367437, - 1.1076059182938556, - 0.9190655419136669, - 0.7477980645548699, - 0.5975861575223553, - 0.4702373890368614, - 0.36603388410940385, - 0.2840999626163274, - 0.22288526356437585, - 0.18072386169731613, - 0.15590575546661378, - 0.14673797410882738, - 0.15137986481039464, - 0.1675533603520715, - 0.19246674397305555, - 0.22283627128055083, - 0.25514616432514137, - 0.28602678754027616, - 0.3127628278139409, - 0.3335688984189469, - 0.34776726614139514, - 0.3556992632988264, - 0.3583409616149482, - 0.3568962579360709, - 0.3523539659677831, - 0.3451982720776522, - 0.33536572844444895, - 0.3224081051114499, - 0.30583665877902355, - 0.285482712271691, - 0.2617435088659924, - 0.23567502404666524, - 0.20881368565996056, - 0.18284925302062208, - 0.15921629382055663, - 0.1388083265439432, - 0.12179247669158791, - 0.10773705841268394, - 0.09590666594138028, - 0.08563916910523967, - 0.07669952472146535, - 0.06944889789611866, - 0.06475514099691643, - 0.06370576857007054, - 0.06714623045836829, - 0.07533170624914523, - 0.08774542618868075, - 0.10326102027107102, - 0.12067911321088658, - 0.1394917149604563, - 0.16069110239072068, - 0.18740948929290085, - 0.22504130810516101, - 0.2809831466486304, - 0.36357655906940306, - 0.48073459413782765, - 0.6387816176697856 - ], - "pressure:J13:branch49_seg0": [ - 6009.193916273365, - 6629.257037061625, - 7365.799453519927, - 8200.697657752757, - 9106.367291291317, - 10050.267868476938, - 10999.119598511186, - 11923.13508628058, - 12796.963133707732, - 13603.21171565588, - 14331.035676197269, - 14973.642728612656, - 15528.676199991845, - 15994.57832033828, - 16370.175146015225, - 16655.082956325597, - 16848.519330039762, - 16951.821819322366, - 16968.459677099116, - 16903.92421261912, - 16766.514289797837, - 16565.603822210236, - 16311.052808760915, - 16012.23734401832, - 15677.24155271562, - 15313.093333387476, - 14926.101938780672, - 14522.57067482659, - 14109.306651508634, - 13693.704527269843, - 13282.937775889344, - 12882.924160031662, - 12496.782676696923, - 12123.350747356348, - 11756.994103918714, - 11387.799295861365, - 11003.39657666973, - 10591.033586721225, - 10141.158855646396, - 9649.175225028896, - 9117.305827809312, - 8555.125963530443, - 7977.874191067066, - 7404.402937861498, - 6854.288013663798, - 6345.21223062922, - 5890.181884163174, - 5497.548155857664, - 5170.26401379993, - 4907.123264962016, - 4704.769467431717, - 4558.303898889468, - 4462.98688228214, - 4414.174908674506, - 4406.926371026046, - 4435.830664951224, - 4493.888445217216, - 4572.568044606673, - 4662.19003033314, - 4752.915251537841, - 4835.7181366221575, - 4903.979308892912, - 4954.231026073926, - 4985.740812176055, - 5000.597609305726, - 5002.15496550222, - 4993.708203486858, - 4977.55481034945, - 4954.353430956644, - 4923.285457227391, - 4882.827180922788, - 4831.747874812166, - 4770.189366352502, - 4700.06985309185, - 4625.086242802408, - 4549.965523005053, - 4479.413465027992, - 4416.877491945953, - 4364.035696264744, - 4320.515605741688, - 4284.450889272579, - 4253.655309941081, - 4226.615537992354, - 4203.343541757359, - 4185.607276692236, - 4176.303849607616, - 4178.5059840977165, - 4194.071775573576, - 4222.701599199872, - 4262.102322464806, - 4308.603193728505, - 4359.157512012739, - 4413.725917846452, - 4477.3899328835405, - 4561.806588904038, - 4684.876129245279, - 4869.027288127666, - 5138.435448894161, - 5513.600016139673, - 6009.193916273365 - ], - "flow:branch18_seg0:J14": [ - 0.8113161749231201, - 1.0676213637546401, - 1.3785617198437448, - 1.7379788623422106, - 2.1351349867089664, - 2.556310832604575, - 2.9865739125495145, - 3.4115843906539913, - 3.8189100523469235, - 4.199220688977322, - 4.546040698368775, - 4.855532110267736, - 5.12581010104393, - 5.355849238778565, - 5.545157612681273, - 5.693310437633053, - 5.799996965425143, - 5.865524343249149, - 5.890881602102646, - 5.878219262697553, - 5.830770233732539, - 5.7525116672130965, - 5.64788454118282, - 5.52122111335138, - 5.376447388029651, - 5.2169827269977205, - 5.045823323381594, - 4.865837776792026, - 4.680023611715221, - 4.4916261302620715, - 4.303953927376861, - 4.11998686354539, - 3.941693901611832, - 3.7694329452349367, - 3.6015658708125824, - 3.4344381515328357, - 3.262895978926125, - 3.0812332741621145, - 2.884473025817614, - 2.6694368363092593, - 2.435820474716934, - 2.1864596465057673, - 1.9271112798632741, - 1.6656235983219834, - 1.4107999979117474, - 1.1710034701146568, - 0.9530966386881442, - 0.761892704014566, - 0.5997206177254469, - 0.4669557712853203, - 0.3625041592748352, - 0.2844137307789747, - 0.23056705765474245, - 0.19879367744903462, - 0.18694101647614278, - 0.19266426892922278, - 0.21306909606337013, - 0.24461008240026486, - 0.2831180338057875, - 0.32413017197425775, - 0.3633662004964599, - 0.3973723122610386, - 0.4238741009128639, - 0.44199624908931157, - 0.4521593384135415, - 0.45559253496641927, - 0.45381671651831035, - 0.4480856348554892, - 0.4390176957990625, - 0.42653833175102124, - 0.4100865856507633, - 0.3890458617009503, - 0.3632029501730634, - 0.33306127698677784, - 0.29995538428425106, - 0.2658300802509412, - 0.23282701210349527, - 0.20276828281747733, - 0.1767905562297411, - 0.15511400203451056, - 0.13719966911799417, - 0.12212005057590691, - 0.10903862910650415, - 0.09765633555630295, - 0.08842714901167492, - 0.08244632390973419, - 0.08108878925446002, - 0.08542608328273615, - 0.09578318295064275, - 0.11151187614405242, - 0.1311910100471379, - 0.1533062568879523, - 0.17721672338554814, - 0.20417998530210327, - 0.2381630227360681, - 0.2860050438385291, - 0.3570711976571979, - 0.46194823609557634, - 0.6106915759204675, - 0.8113161749231201 - ], - "pressure:branch18_seg0:J14": [ - 5987.613533731374, - 6602.108526071247, - 7333.152229701824, - 8163.017374457984, - 9064.46948292534, - 10005.20838263595, - 10952.047511750843, - 11875.128210500134, - 12748.976580223542, - 13555.997073143213, - 14285.113849782083, - 14929.41107262314, - 15486.406604117663, - 15954.494111637421, - 16332.50544460705, - 16620.020039296363, - 16816.26360108581, - 16922.512403955963, - 16942.13245293532, - 16880.546902680697, - 16745.944995932987, - 16547.635581874234, - 16295.454920684431, - 15998.772867720909, - 15665.70124961905, - 15303.291996020143, - 14917.862144117107, - 14515.702862578939, - 14103.590650018297, - 13688.887150823213, - 13278.75984151668, - 12879.167284491981, - 12493.318456019799, - 12120.202534783632, - 11754.355688761076, - 11386.026152547127, - 11002.946086796332, - 10592.398797330769, - 10144.739531878948, - 9655.193537711093, - 9125.752709824663, - 8565.7190014669, - 7990.103116531704, - 7417.601405498312, - 6867.743263353317, - 6358.2286584214535, - 5902.204610198817, - 5508.182969945947, - 5179.270782516129, - 4914.423026172151, - 4710.360534126944, - 4562.235873266089, - 4465.329981843782, - 4414.994678500964, - 4406.313241230538, - 4433.910422303256, - 4490.847888831383, - 4568.667067541831, - 4657.746504141139, - 4748.267497900053, - 4831.188967198422, - 4899.826559808802, - 4950.603932217353, - 4982.695406078368, - 4998.0971926162265, - 5000.10943554065, - 4992.025735068542, - 4976.176060479631, - 4953.272288136281, - 4922.547282028966, - 4882.50052452189, - 4831.893623904809, - 4770.819437286713, - 4701.128811366259, - 4626.4539590916465, - 4551.479130633122, - 4480.903133639827, - 4418.209751837533, - 4365.140084375645, - 4321.3869563443905, - 4285.1382735007455, - 4254.223181819832, - 4227.1040723753, - 4203.74042593147, - 4185.837642991606, - 4176.250362456927, - 4178.043579735828, - 4193.112667101024, - 4221.235989060713, - 4260.192459272028, - 4306.35868026038, - 4356.667905321319, - 4410.971911565656, - 4474.160687315619, - 4557.641009935922, - 4679.056852623813, - 4860.66240347301, - 5126.5139696006245, - 5497.198390417798, - 5987.613533731374 - ], - "flow:J14:branch19_seg0": [ - 0.4589651070214469, - 0.6042990790450791, - 0.7811432803958788, - 0.9861441143743156, - 1.213301509026242, - 1.4548348083437133, - 1.702192118718537, - 1.9470868696667059, - 2.182290693796368, - 2.4023097819779116, - 2.6032969378247475, - 2.782947444675583, - 2.9400960298596535, - 3.0741193170703576, - 3.1847165019024555, - 3.2716352342117205, - 3.3346945054438275, - 3.3740436411026513, - 3.390223958772277, - 3.3844303584888222, - 3.358477871597851, - 3.3146302615354277, - 3.2554273932372597, - 3.1833672733844325, - 3.1007279430019876, - 3.0094971548242846, - 2.9114161213679237, - 2.8081409887292517, - 2.7013918885277692, - 2.5930273356059113, - 2.484950993529027, - 2.3788928696800897, - 2.2760266376557077, - 2.1766247443235813, - 2.0798221143661717, - 1.9835933789350937, - 1.8850287272113226, - 1.780863582501321, - 1.6681997694064674, - 1.545135102246552, - 1.411381688081119, - 1.268446234896378, - 1.1195305891240765, - 0.9690737146417049, - 0.8221070114686724, - 0.6834630485753102, - 0.5571577265125982, - 0.44603781378678153, - 0.3515415930352659, - 0.2739638325455949, - 0.2127265401220052, - 0.16674185183203577, - 0.13479562890430682, - 0.11563870841028397, - 0.1080352404770576, - 0.11064165192404295, - 0.12181420006260713, - 0.13953884520941112, - 0.16143916553211415, - 0.1849563018061827, - 0.20761867788288282, - 0.22740497924087136, - 0.24295719142598352, - 0.2537183233796214, - 0.2598795118616736, - 0.2621173008011749, - 0.2612976971962886, - 0.25815340970117284, - 0.2530656519289541, - 0.2460184609261967, - 0.2367071961867229, - 0.2247782699927389, - 0.21009136663522304, - 0.19290839539135834, - 0.17396515962151082, - 0.15435773558798307, - 0.13531203857317153, - 0.11789135022977205, - 0.1027769906540641, - 0.09013099711689969, - 0.0796735276442859, - 0.0708840963410804, - 0.06327645050250277, - 0.0566568915199956, - 0.05125702093677904, - 0.047683008616044735, - 0.04671636971706326, - 0.04898679744964296, - 0.0547123025967118, - 0.06355707149057775, - 0.07473242942578227, - 0.0873684888340051, - 0.10105916949267889, - 0.11645153777208579, - 0.13572091131143765, - 0.16269254799953708, - 0.20265954100479258, - 0.26166715100219745, - 0.34553935379136536, - 0.4589651070214469 - ], - "pressure:J14:branch19_seg0": [ - 5987.613533731374, - 6602.108526071247, - 7333.152229701824, - 8163.017374457984, - 9064.46948292534, - 10005.20838263595, - 10952.047511750843, - 11875.128210500134, - 12748.976580223542, - 13555.997073143213, - 14285.113849782083, - 14929.41107262314, - 15486.406604117663, - 15954.494111637421, - 16332.50544460705, - 16620.020039296363, - 16816.26360108581, - 16922.512403955963, - 16942.13245293532, - 16880.546902680697, - 16745.944995932987, - 16547.635581874234, - 16295.454920684431, - 15998.772867720909, - 15665.70124961905, - 15303.291996020143, - 14917.862144117107, - 14515.702862578939, - 14103.590650018297, - 13688.887150823213, - 13278.75984151668, - 12879.167284491981, - 12493.318456019799, - 12120.202534783632, - 11754.355688761076, - 11386.026152547127, - 11002.946086796332, - 10592.398797330769, - 10144.739531878948, - 9655.193537711093, - 9125.752709824663, - 8565.7190014669, - 7990.103116531704, - 7417.601405498312, - 6867.743263353317, - 6358.2286584214535, - 5902.204610198817, - 5508.182969945947, - 5179.270782516129, - 4914.423026172151, - 4710.360534126944, - 4562.235873266089, - 4465.329981843782, - 4414.994678500964, - 4406.313241230538, - 4433.910422303256, - 4490.847888831383, - 4568.667067541831, - 4657.746504141139, - 4748.267497900053, - 4831.188967198422, - 4899.826559808802, - 4950.603932217353, - 4982.695406078368, - 4998.0971926162265, - 5000.10943554065, - 4992.025735068542, - 4976.176060479631, - 4953.272288136281, - 4922.547282028966, - 4882.50052452189, - 4831.893623904809, - 4770.819437286713, - 4701.128811366259, - 4626.4539590916465, - 4551.479130633122, - 4480.903133639827, - 4418.209751837533, - 4365.140084375645, - 4321.3869563443905, - 4285.1382735007455, - 4254.223181819832, - 4227.1040723753, - 4203.74042593147, - 4185.837642991606, - 4176.250362456927, - 4178.043579735828, - 4193.112667101024, - 4221.235989060713, - 4260.192459272028, - 4306.35868026038, - 4356.667905321319, - 4410.971911565656, - 4474.160687315619, - 4557.641009935922, - 4679.056852623813, - 4860.66240347301, - 5126.5139696006245, - 5497.198390417798, - 5987.613533731374 - ], - "flow:J14:branch23_seg0": [ - 0.35235106790167336, - 0.46332228470956105, - 0.5974184394478661, - 0.7518347479678952, - 0.9218334776827245, - 1.101476024260861, - 1.2843817938309778, - 1.4644975209872861, - 1.6366193585505553, - 1.7969109069994107, - 1.9427437605440274, - 2.072584665592152, - 2.1857140711842757, - 2.281729921708206, - 2.3604411107788184, - 2.421675203421333, - 2.465302459981316, - 2.4914807021464966, - 2.5006576433303698, - 2.4937889042087305, - 2.472292362134688, - 2.437881405677668, - 2.392457147945558, - 2.337853839966948, - 2.275719445027663, - 2.2074855721734363, - 2.1344072020136706, - 2.057696788062774, - 1.9786317231874528, - 1.8985987946561607, - 1.8190029338478344, - 1.7410939938652998, - 1.6656672639561243, - 1.5928082009113558, - 1.5217437564464107, - 1.450844772597742, - 1.3778672517148023, - 1.3003696916607934, - 1.2162732564111471, - 1.1243017340627066, - 1.0244387866358147, - 0.9180134116093892, - 0.8075806907391975, - 0.6965498836802785, - 0.588692986443075, - 0.4875404215393464, - 0.39593891217554616, - 0.3158548902277845, - 0.24817902469018116, - 0.19299193873972537, - 0.14977761915282997, - 0.11767187894693901, - 0.0957714287504356, - 0.0831549690387507, - 0.07890577599908513, - 0.08202261700517982, - 0.09125489600076303, - 0.10507123719085378, - 0.12167886827367325, - 0.139173870168075, - 0.15574752261357705, - 0.16996733302016734, - 0.18091690948688038, - 0.1882779257096902, - 0.19227982655186782, - 0.1934752341652443, - 0.1925190193220217, - 0.1899322251543163, - 0.18595204387010844, - 0.18051987082482446, - 0.17337938946404025, - 0.16426759170821137, - 0.15311158353784032, - 0.14015288159541955, - 0.12599022466274015, - 0.111472344662958, - 0.09751497353032368, - 0.0848769325877052, - 0.07401356557567701, - 0.06498300491761083, - 0.05752614147370823, - 0.051235954234826526, - 0.04576217860400138, - 0.04099944403630735, - 0.037170128074895885, - 0.03476331529368945, - 0.03437241953739677, - 0.0364392858330932, - 0.04107088035393096, - 0.04795480465347467, - 0.05645858062135562, - 0.06593776805394719, - 0.07615755389286925, - 0.08772844753001745, - 0.10244211142463044, - 0.12331249583899209, - 0.15441165665240528, - 0.20028108509337877, - 0.2651522221291023, - 0.35235106790167336 - ], - "pressure:J14:branch23_seg0": [ - 5987.613533731374, - 6602.108526071247, - 7333.152229701824, - 8163.017374457984, - 9064.46948292534, - 10005.20838263595, - 10952.047511750843, - 11875.128210500134, - 12748.976580223542, - 13555.997073143213, - 14285.113849782083, - 14929.41107262314, - 15486.406604117663, - 15954.494111637421, - 16332.50544460705, - 16620.020039296363, - 16816.26360108581, - 16922.512403955963, - 16942.13245293532, - 16880.546902680697, - 16745.944995932987, - 16547.635581874234, - 16295.454920684431, - 15998.772867720909, - 15665.70124961905, - 15303.291996020143, - 14917.862144117107, - 14515.702862578939, - 14103.590650018297, - 13688.887150823213, - 13278.75984151668, - 12879.167284491981, - 12493.318456019799, - 12120.202534783632, - 11754.355688761076, - 11386.026152547127, - 11002.946086796332, - 10592.398797330769, - 10144.739531878948, - 9655.193537711093, - 9125.752709824663, - 8565.7190014669, - 7990.103116531704, - 7417.601405498312, - 6867.743263353317, - 6358.2286584214535, - 5902.204610198817, - 5508.182969945947, - 5179.270782516129, - 4914.423026172151, - 4710.360534126944, - 4562.235873266089, - 4465.329981843782, - 4414.994678500964, - 4406.313241230538, - 4433.910422303256, - 4490.847888831383, - 4568.667067541831, - 4657.746504141139, - 4748.267497900053, - 4831.188967198422, - 4899.826559808802, - 4950.603932217353, - 4982.695406078368, - 4998.0971926162265, - 5000.10943554065, - 4992.025735068542, - 4976.176060479631, - 4953.272288136281, - 4922.547282028966, - 4882.50052452189, - 4831.893623904809, - 4770.819437286713, - 4701.128811366259, - 4626.4539590916465, - 4551.479130633122, - 4480.903133639827, - 4418.209751837533, - 4365.140084375645, - 4321.3869563443905, - 4285.1382735007455, - 4254.223181819832, - 4227.1040723753, - 4203.74042593147, - 4185.837642991606, - 4176.250362456927, - 4178.043579735828, - 4193.112667101024, - 4221.235989060713, - 4260.192459272028, - 4306.35868026038, - 4356.667905321319, - 4410.971911565656, - 4474.160687315619, - 4557.641009935922, - 4679.056852623813, - 4860.66240347301, - 5126.5139696006245, - 5497.198390417798, - 5987.613533731374 - ], - "flow:branch20_seg0:J15": [ - 3.9004110517757167, - 4.994122041120759, - 6.16799634032646, - 7.362093722552615, - 8.514235171281774, - 9.573416330480335, - 10.505190182521023, - 11.295053261432772, - 11.940247336514295, - 12.453325257116363, - 12.85075831833184, - 13.14423570702289, - 13.345693767714364, - 13.457523384449066, - 13.478842144883567, - 13.410115075269367, - 13.249846878973198, - 13.006132219850272, - 12.690384951180688, - 12.31681585007572, - 11.904001003900778, - 11.466030256170233, - 11.014251108417165, - 10.555682474688489, - 10.093063223430084, - 9.628630442755506, - 9.16557731110135, - 8.709949825755567, - 8.270572887559169, - 7.8572023432931575, - 7.476593470670823, - 7.129579633195992, - 6.808344921443888, - 6.49508066555605, - 6.165839031171617, - 5.794039910697056, - 5.3574676642438455, - 4.842621518188883, - 4.252337980430985, - 3.6028437156063906, - 2.9240120728546435, - 2.25436641463527, - 1.6323780630184723, - 1.0906028226161286, - 0.650497518895062, - 0.32137351130230946, - 0.09654253909532387, - -0.0360305904064583, - -0.09478268220184818, - -0.09810359777567068, - -0.05818342525621833, - 0.01526796967742429, - 0.11810582419293404, - 0.24751998354756288, - 0.39822095496349164, - 0.5627857033039407, - 0.7289146573218471, - 0.8819489813623239, - 1.0076511445966043, - 1.0955899941451497, - 1.1406532050625433, - 1.1456698466545452, - 1.1198015886216466, - 1.0743457341580294, - 1.0219978650403159, - 0.9712454686377693, - 0.925073562477828, - 0.8811698127732949, - 0.8332415991069451, - 0.7741822991678129, - 0.6993897126167294, - 0.6086849154781034, - 0.5077717431901045, - 0.40594625783748217, - 0.3140977853317015, - 0.2411927778300755, - 0.19179577654275287, - 0.1643203218822875, - 0.1527485172473253, - 0.14849258590274406, - 0.14351672160028642, - 0.13404824820979586, - 0.12153062509795141, - 0.11230103701168753, - 0.11538602924373094, - 0.1385615812381857, - 0.18555900425365063, - 0.25347626236943127, - 0.333384961876513, - 0.4143191354039134, - 0.48712271055791784, - 0.550969131406737, - 0.6175974189705944, - 0.7125214267671383, - 0.8735473273362075, - 1.1435094317143966, - 1.5621446804714827, - 2.1603681245311024, - 2.943659345574446, - 3.9004110517757167 - ], - "pressure:branch20_seg0:J15": [ - 9382.724801454431, - 10787.911783008485, - 12249.753452779032, - 13694.223038654898, - 15051.127026796756, - 16265.331786443468, - 17305.346577973687, - 18168.24903470837, - 18859.18667067909, - 19395.69864247604, - 19805.9799413194, - 20096.92701949519, - 20280.52377683851, - 20358.602234772283, - 20323.44394041106, - 20180.926365638417, - 19927.991236387596, - 19577.313701000574, - 19151.15820307468, - 18663.567603389383, - 18139.57127769705, - 17595.26657035087, - 17039.615583330073, - 16479.83095153357, - 15916.75429517501, - 15352.717996900004, - 14793.349282996915, - 14247.69861474063, - 13727.937745082605, - 13245.878544049787, - 12807.338915878574, - 12407.687484728112, - 12032.440472107257, - 11653.460555245754, - 11238.024272733022, - 10753.801674531001, - 10178.9636571849, - 9502.979501223646, - 8740.044925031983, - 7921.177036404401, - 7087.570824509521, - 6291.503310485965, - 5578.416297291677, - 4982.467232734223, - 4518.716334229865, - 4194.045778803711, - 3989.6035285360635, - 3884.804635813291, - 3859.483476536083, - 3888.5156460215558, - 3962.4346559284777, - 4073.1133347570044, - 4215.563867647042, - 4388.99247114212, - 4584.217407825924, - 4789.666653189857, - 4988.800717440769, - 5162.069599319576, - 5293.189218125852, - 5373.021941077675, - 5399.667253869324, - 5380.1627431151055, - 5331.2480471374465, - 5266.452862680524, - 5200.405250102755, - 5141.365347716222, - 5088.508034094037, - 5035.63110818655, - 4973.377607772236, - 4893.126988658661, - 4791.99018462394, - 4672.514769061531, - 4545.349472008115, - 4424.158388532103, - 4321.919075377953, - 4247.557216825606, - 4203.466572157716, - 4183.940622912121, - 4178.312580386319, - 4176.142040257906, - 4168.492187412274, - 4153.8238321406025, - 4137.738054323449, - 4130.6591392786295, - 4144.49789082217, - 4187.099574734645, - 4259.379810630132, - 4354.141429057356, - 4456.169652697197, - 4552.1752950796645, - 4633.928769990662, - 4706.689268296588, - 4793.591819774733, - 4934.459261950972, - 5181.947361310109, - 5591.212572154781, - 6201.84491523926, - 7047.929835735482, - 8119.623788298067, - 9382.724801454431 - ], - "flow:J15:branch21_seg0": [ - 1.0085751568434118, - 1.2762832651639544, - 1.5562547752608082, - 1.8346366007171482, - 2.0972725630417175, - 2.333289996318753, - 2.536340182656392, - 2.705507838965828, - 2.8410623698496806, - 2.9468939093741975, - 3.0279934481711552, - 3.0858535320762113, - 3.123246138624126, - 3.1401834837683364, - 3.1355830312564694, - 3.110302541442017, - 3.063645357423929, - 2.9982000533975834, - 2.9176348052116126, - 2.8249422619594875, - 2.724991608869396, - 2.620734858921467, - 2.5142159125316104, - 2.406826123894711, - 2.2987500683146136, - 2.190468456689077, - 2.0829312392361587, - 1.9778200998668563, - 1.8774457681516241, - 1.7841367114855773, - 1.6990856563727452, - 1.6217168349304496, - 1.5494118404749886, - 1.4769215647793303, - 1.398109329601874, - 1.306672315973464, - 1.1981205880196535, - 1.0701634063745127, - 0.9252442686148123, - 0.7687441358511157, - 0.608591052833317, - 0.454737584836634, - 0.31595452252538114, - 0.19903984664092564, - 0.10753348210700306, - 0.042686030533021405, - 0.0011455871624349884, - -0.020562189415504747, - -0.026780946013203303, - -0.02216704346606094, - -0.008655205929124346, - 0.01184193880154042, - 0.03864261686631264, - 0.07143672318005757, - 0.10852150853708699, - 0.14792813225459048, - 0.1864201880324206, - 0.22029334875111342, - 0.24636138304292932, - 0.26272562372110936, - 0.26876674436745934, - 0.26582104900291587, - 0.25689298774164215, - 0.2445879580718908, - 0.2318811592234508, - 0.220399033912484, - 0.2101485690012944, - 0.20006703474223073, - 0.1883652521426349, - 0.17335216746140863, - 0.15431389086122096, - 0.13165343906094332, - 0.10731322707500673, - 0.08381465254369118, - 0.06373196874428019, - 0.048895560188532465, - 0.03989551597947737, - 0.03571432492217145, - 0.034477536005233025, - 0.03408751041897534, - 0.032735966831243836, - 0.030037481328425736, - 0.026913150807359263, - 0.02529040936668913, - 0.027479382137409043, - 0.03507118095427491, - 0.04844126782694095, - 0.06629254740265002, - 0.08584301520387048, - 0.10449999933623982, - 0.12046959821458066, - 0.13448590294198495, - 0.15065371041101513, - 0.1763241310256656, - 0.22144703370285332, - 0.29647230215303316, - 0.4097382922190185, - 0.5678043879371464, - 0.7690925421283927, - 1.0085751568434118 - ], - "pressure:J15:branch21_seg0": [ - 9382.724801454431, - 10787.911783008485, - 12249.753452779032, - 13694.223038654898, - 15051.127026796756, - 16265.331786443468, - 17305.346577973687, - 18168.24903470837, - 18859.18667067909, - 19395.69864247604, - 19805.9799413194, - 20096.92701949519, - 20280.52377683851, - 20358.602234772283, - 20323.44394041106, - 20180.926365638417, - 19927.991236387596, - 19577.313701000574, - 19151.15820307468, - 18663.567603389383, - 18139.57127769705, - 17595.26657035087, - 17039.615583330073, - 16479.83095153357, - 15916.75429517501, - 15352.717996900004, - 14793.349282996915, - 14247.69861474063, - 13727.937745082605, - 13245.878544049787, - 12807.338915878574, - 12407.687484728112, - 12032.440472107257, - 11653.460555245754, - 11238.024272733022, - 10753.801674531001, - 10178.9636571849, - 9502.979501223646, - 8740.044925031983, - 7921.177036404401, - 7087.570824509521, - 6291.503310485965, - 5578.416297291677, - 4982.467232734223, - 4518.716334229865, - 4194.045778803711, - 3989.6035285360635, - 3884.804635813291, - 3859.483476536083, - 3888.5156460215558, - 3962.4346559284777, - 4073.1133347570044, - 4215.563867647042, - 4388.99247114212, - 4584.217407825924, - 4789.666653189857, - 4988.800717440769, - 5162.069599319576, - 5293.189218125852, - 5373.021941077675, - 5399.667253869324, - 5380.1627431151055, - 5331.2480471374465, - 5266.452862680524, - 5200.405250102755, - 5141.365347716222, - 5088.508034094037, - 5035.63110818655, - 4973.377607772236, - 4893.126988658661, - 4791.99018462394, - 4672.514769061531, - 4545.349472008115, - 4424.158388532103, - 4321.919075377953, - 4247.557216825606, - 4203.466572157716, - 4183.940622912121, - 4178.312580386319, - 4176.142040257906, - 4168.492187412274, - 4153.8238321406025, - 4137.738054323449, - 4130.6591392786295, - 4144.49789082217, - 4187.099574734645, - 4259.379810630132, - 4354.141429057356, - 4456.169652697197, - 4552.1752950796645, - 4633.928769990662, - 4706.689268296588, - 4793.591819774733, - 4934.459261950972, - 5181.947361310109, - 5591.212572154781, - 6201.84491523926, - 7047.929835735482, - 8119.623788298067, - 9382.724801454431 - ], - "flow:J15:branch60_seg0": [ - 0.8211795839606992, - 1.0529973105275146, - 1.3022335243337047, - 1.5559687949620375, - 1.8008313803284988, - 2.0259317708251023, - 2.223899517969336, - 2.3915074172274906, - 2.528248001075863, - 2.6369400268059855, - 2.7209440855737657, - 2.7830238961331863, - 2.825712148818996, - 2.849472608309656, - 2.8542421694020255, - 2.839905878748788, - 2.8062053789248576, - 2.7548191660482244, - 2.6879924005004723, - 2.608909720892211, - 2.5214584936923647, - 2.4286483259132665, - 2.3329823455544134, - 2.2359065354908694, - 2.1380126788684857, - 2.0397433805062697, - 1.941719195536838, - 1.8452012896885328, - 1.7520561173676292, - 1.664376813870318, - 1.5836501600795103, - 1.5101505572621643, - 1.4422453977439742, - 1.3762189793291235, - 1.3069733889518151, - 1.2288063512961105, - 1.1368725888082882, - 1.0282552322888596, - 0.9034177261774783, - 0.7657048767109524, - 0.6215314487317258, - 0.4790570620111959, - 0.34655191653204115, - 0.23104138414258074, - 0.1372534116016849, - 0.06710169996899314, - 0.019276919553482135, - -0.008777915271577726, - -0.02115924387667665, - -0.021700623140681517, - -0.013127975495593946, - 0.002470819539576773, - 0.024290863889859432, - 0.051695643379096136, - 0.08366361618571652, - 0.11865174392160989, - 0.1540443568855708, - 0.1867399848766364, - 0.21367283817931554, - 0.23255607450657764, - 0.2422634743057208, - 0.24339406114418285, - 0.23782577374914016, - 0.2280461555875688, - 0.21679399638960636, - 0.20590057902692455, - 0.19606421870974217, - 0.18680376830268547, - 0.17675920783243848, - 0.16438474145997375, - 0.1486359675207441, - 0.12944744051087895, - 0.10799704217054229, - 0.08626169224116086, - 0.06660298896205374, - 0.05097439599348759, - 0.040386996689180506, - 0.03453551971606717, - 0.03215747760758903, - 0.03136933310149354, - 0.030433988805298236, - 0.028494598496119572, - 0.025815719135084052, - 0.023744047352849032, - 0.02422442694787513, - 0.028968100886655444, - 0.03882894271388011, - 0.053216301030578866, - 0.07027242373320196, - 0.08759978461375435, - 0.10316985559161372, - 0.11670622973563725, - 0.13059676712058196, - 0.15019770645747885, - 0.18353093589061692, - 0.23972435534226874, - 0.32746856422835596, - 0.45330187800656524, - 0.6186152526440664, - 0.8211795839606992 - ], - "pressure:J15:branch60_seg0": [ - 9382.724801454431, - 10787.911783008485, - 12249.753452779032, - 13694.223038654898, - 15051.127026796756, - 16265.331786443468, - 17305.346577973687, - 18168.24903470837, - 18859.18667067909, - 19395.69864247604, - 19805.9799413194, - 20096.92701949519, - 20280.52377683851, - 20358.602234772283, - 20323.44394041106, - 20180.926365638417, - 19927.991236387596, - 19577.313701000574, - 19151.15820307468, - 18663.567603389383, - 18139.57127769705, - 17595.26657035087, - 17039.615583330073, - 16479.83095153357, - 15916.75429517501, - 15352.717996900004, - 14793.349282996915, - 14247.69861474063, - 13727.937745082605, - 13245.878544049787, - 12807.338915878574, - 12407.687484728112, - 12032.440472107257, - 11653.460555245754, - 11238.024272733022, - 10753.801674531001, - 10178.9636571849, - 9502.979501223646, - 8740.044925031983, - 7921.177036404401, - 7087.570824509521, - 6291.503310485965, - 5578.416297291677, - 4982.467232734223, - 4518.716334229865, - 4194.045778803711, - 3989.6035285360635, - 3884.804635813291, - 3859.483476536083, - 3888.5156460215558, - 3962.4346559284777, - 4073.1133347570044, - 4215.563867647042, - 4388.99247114212, - 4584.217407825924, - 4789.666653189857, - 4988.800717440769, - 5162.069599319576, - 5293.189218125852, - 5373.021941077675, - 5399.667253869324, - 5380.1627431151055, - 5331.2480471374465, - 5266.452862680524, - 5200.405250102755, - 5141.365347716222, - 5088.508034094037, - 5035.63110818655, - 4973.377607772236, - 4893.126988658661, - 4791.99018462394, - 4672.514769061531, - 4545.349472008115, - 4424.158388532103, - 4321.919075377953, - 4247.557216825606, - 4203.466572157716, - 4183.940622912121, - 4178.312580386319, - 4176.142040257906, - 4168.492187412274, - 4153.8238321406025, - 4137.738054323449, - 4130.6591392786295, - 4144.49789082217, - 4187.099574734645, - 4259.379810630132, - 4354.141429057356, - 4456.169652697197, - 4552.1752950796645, - 4633.928769990662, - 4706.689268296588, - 4793.591819774733, - 4934.459261950972, - 5181.947361310109, - 5591.212572154781, - 6201.84491523926, - 7047.929835735482, - 8119.623788298067, - 9382.724801454431 - ], - "flow:J15:branch107_seg0": [ - 2.0706563109716063, - 2.6648414654292902, - 3.3095080407319464, - 3.9714883268734287, - 4.6161312279115565, - 5.2141945633364815, - 5.744950481895296, - 6.19803800523945, - 6.570936965588749, - 6.86949132093618, - 7.101820784586921, - 7.275358278813489, - 7.396735480271241, - 7.467867292371074, - 7.489016944225071, - 7.4599066550785595, - 7.37999614262441, - 7.253113000404464, - 7.084757745468603, - 6.882963867224023, - 6.657550901339016, - 6.416647071335498, - 6.167052850331143, - 5.912949815302912, - 5.656300476246984, - 5.398418605560155, - 5.140926876328353, - 4.886928436200178, - 4.641071002039917, - 4.4086888179372625, - 4.193857654218568, - 3.997712241003378, - 3.816687683224927, - 3.6419401214475973, - 3.460756312617928, - 3.2585612434274807, - 3.022474487415903, - 2.7442028795255116, - 2.423675985638695, - 2.0683947030443224, - 1.6938895712896007, - 1.3205717677874405, - 0.9698716239610496, - 0.6605215918326225, - 0.40571062518637396, - 0.21158578080029497, - 0.07612003237940675, - -0.006690485719375833, - -0.046842492311968256, - -0.05423593116892823, - -0.03640024383150004, - 0.0009552113363070973, - 0.055172343436761986, - 0.1243876169884092, - 0.2060358302406882, - 0.2962058271277403, - 0.38845011240385563, - 0.4749156477345742, - 0.5476169233743595, - 0.6003082959174629, - 0.6296229863893634, - 0.6364547365074463, - 0.6250828271308644, - 0.60171162049857, - 0.5733227094272588, - 0.5449458556983608, - 0.5188607747667913, - 0.49429900972837876, - 0.46811713913187186, - 0.43644539024643053, - 0.3964398542347645, - 0.3475840359062812, - 0.29246147394455535, - 0.23586991305263022, - 0.1837628276253676, - 0.14132282164805549, - 0.11151326387409494, - 0.09407047724404893, - 0.08611350363450325, - 0.08303574238227517, - 0.08034676596374433, - 0.07551616838525053, - 0.06880175515550808, - 0.06326658029214936, - 0.06368222015844677, - 0.07452229939725535, - 0.09828879371282952, - 0.13396741393620237, - 0.17726952293944057, - 0.22221935145391936, - 0.26348325675172346, - 0.29977699872911473, - 0.33634694143899724, - 0.38599958928399397, - 0.4685693577427374, - 0.6073127742190949, - 0.8249378240241082, - 1.1392618585873906, - 1.5559515508019865, - 2.0706563109716063 - ], - "pressure:J15:branch107_seg0": [ - 9382.724801454431, - 10787.911783008485, - 12249.753452779032, - 13694.223038654898, - 15051.127026796756, - 16265.331786443468, - 17305.346577973687, - 18168.24903470837, - 18859.18667067909, - 19395.69864247604, - 19805.9799413194, - 20096.92701949519, - 20280.52377683851, - 20358.602234772283, - 20323.44394041106, - 20180.926365638417, - 19927.991236387596, - 19577.313701000574, - 19151.15820307468, - 18663.567603389383, - 18139.57127769705, - 17595.26657035087, - 17039.615583330073, - 16479.83095153357, - 15916.75429517501, - 15352.717996900004, - 14793.349282996915, - 14247.69861474063, - 13727.937745082605, - 13245.878544049787, - 12807.338915878574, - 12407.687484728112, - 12032.440472107257, - 11653.460555245754, - 11238.024272733022, - 10753.801674531001, - 10178.9636571849, - 9502.979501223646, - 8740.044925031983, - 7921.177036404401, - 7087.570824509521, - 6291.503310485965, - 5578.416297291677, - 4982.467232734223, - 4518.716334229865, - 4194.045778803711, - 3989.6035285360635, - 3884.804635813291, - 3859.483476536083, - 3888.5156460215558, - 3962.4346559284777, - 4073.1133347570044, - 4215.563867647042, - 4388.99247114212, - 4584.217407825924, - 4789.666653189857, - 4988.800717440769, - 5162.069599319576, - 5293.189218125852, - 5373.021941077675, - 5399.667253869324, - 5380.1627431151055, - 5331.2480471374465, - 5266.452862680524, - 5200.405250102755, - 5141.365347716222, - 5088.508034094037, - 5035.63110818655, - 4973.377607772236, - 4893.126988658661, - 4791.99018462394, - 4672.514769061531, - 4545.349472008115, - 4424.158388532103, - 4321.919075377953, - 4247.557216825606, - 4203.466572157716, - 4183.940622912121, - 4178.312580386319, - 4176.142040257906, - 4168.492187412274, - 4153.8238321406025, - 4137.738054323449, - 4130.6591392786295, - 4144.49789082217, - 4187.099574734645, - 4259.379810630132, - 4354.141429057356, - 4456.169652697197, - 4552.1752950796645, - 4633.928769990662, - 4706.689268296588, - 4793.591819774733, - 4934.459261950972, - 5181.947361310109, - 5591.212572154781, - 6201.84491523926, - 7047.929835735482, - 8119.623788298067, - 9382.724801454431 - ], - "flow:branch24_seg0:J16": [ - 2.0836580921550767, - 2.731842563207067, - 3.4930061091168674, - 4.343611164445213, - 5.251279861321168, - 6.180306440138651, - 7.096176667756086, - 7.9695911669558965, - 8.77808217113485, - 9.508343865946498, - 10.15337201116352, - 10.710971529800126, - 11.181975809024431, - 11.566825726190551, - 11.865893422906623, - 12.078857718036005, - 12.205271537840055, - 12.24688019864404, - 12.207194084562971, - 12.092858014153881, - 11.913033714796393, - 11.67779660190633, - 11.397579138288444, - 11.081556574438563, - 10.7372374111187, - 10.370750690283964, - 9.98739357497143, - 9.592681627201726, - 9.192939929599804, - 8.79532196354789, - 8.406845059996368, - 8.033102176277387, - 7.676295650831826, - 7.333902979949713, - 6.998354171925508, - 6.657660850815143, - 6.297585473347674, - 5.904531938559627, - 5.469114975240276, - 4.988102291402724, - 4.46655929698256, - 3.917165559802238, - 3.358418794920684, - 2.811661181829584, - 2.297886128137734, - 1.8342967958772662, - 1.4322869503466513, - 1.0976006312221658, - 0.8297452491901406, - 0.6246942365808571, - 0.47655286711459527, - 0.37883260106725136, - 0.32622298234796443, - 0.3139432826974847, - 0.33741655146972743, - 0.3914823221649764, - 0.46918895953077705, - 0.5619066312760965, - 0.6597379668223762, - 0.7527563044188554, - 0.8323277938870907, - 0.8928294041092594, - 0.93202845516016, - 0.9510605292576702, - 0.9537331132133171, - 0.9446769625465631, - 0.9280076547594648, - 0.9061070010797594, - 0.8791364471697244, - 0.8455102333889745, - 0.802924908320587, - 0.7497402039737286, - 0.6861334012951639, - 0.6144903246548742, - 0.5392717415136543, - 0.4659112761424003, - 0.3994774811202739, - 0.34330380591342247, - 0.2984560272370234, - 0.2635425971484758, - 0.2357015304944796, - 0.21196374662183165, - 0.19051456661784136, - 0.17161815040180475, - 0.15768624741320222, - 0.15238833326965673, - 0.1593457509683268, - 0.18042874526248504, - 0.2149293452502379, - 0.25957065159568843, - 0.3096772777251209, - 0.36159654391891094, - 0.4154173920857531, - 0.47732222258505935, - 0.5609526255739667, - 0.6865483891677518, - 0.8790453789951183, - 1.1637208932006968, - 1.5609325592039844, - 2.0836580921550767 - ], - "pressure:branch24_seg0:J16": [ - 6584.1065495514495, - 7368.418096637062, - 8275.421288884763, - 9275.077768452362, - 10328.165675115884, - 11393.136250196521, - 12431.474220206419, - 13412.43550425456, - 14312.518171701482, - 15119.253936440207, - 15827.457438578584, - 16435.08268669213, - 16943.991462309346, - 17354.671658804986, - 17666.84206677108, - 17880.68742198224, - 17995.41477203574, - 18013.746559026265, - 17941.14143800062, - 17785.57551889161, - 17558.52781056315, - 17271.783344886895, - 16936.930056062633, - 16564.12855212607, - 16161.302245449107, - 15735.044497444122, - 15291.332109072595, - 14836.642408716009, - 14378.528730635084, - 13925.411788035462, - 13485.074233686018, - 13063.066497109974, - 12660.622691992423, - 12272.962035381677, - 11889.733199354137, - 11495.946206739673, - 11075.082960932406, - 10612.066666343862, - 10098.185025918372, - 9532.376748926281, - 8922.999856596538, - 8287.294337372665, - 7647.982717726009, - 7029.962168341952, - 6456.334767288076, - 5945.568683718796, - 5508.226547565644, - 5148.790566325964, - 4865.241872571631, - 4651.521024100879, - 4500.801295325537, - 4405.693660691666, - 4360.352839735276, - 4359.694390540294, - 4398.228501957752, - 4469.740848247546, - 4565.66560181521, - 4675.487414847198, - 4787.604801895479, - 4890.954285174827, - 4976.284279022704, - 5038.2370977632, - 5075.773269823493, - 5091.01382056377, - 5089.045314338992, - 5075.338080304694, - 5054.104386737801, - 5027.364547402566, - 4994.578271815372, - 4953.43104746836, - 4901.291536947132, - 4836.647859967657, - 4760.483024689577, - 4676.32709398516, - 4589.834349914058, - 4507.36589519018, - 4434.412954525748, - 4374.017478747428, - 4326.521407681447, - 4289.665650228613, - 4259.779516426682, - 4233.659264297791, - 4209.83120352567, - 4189.361389119764, - 4175.682415392732, - 4173.21546255687, - 4185.840562085141, - 4214.971307446826, - 4258.689191748393, - 4312.588582651014, - 4371.143332241792, - 4430.906846862759, - 4493.703718586062, - 4568.996299450142, - 4675.007125345523, - 4837.0755587708645, - 5084.335122885423, - 5445.727427794746, - 5941.922531130078, - 6584.1065495514495 - ], - "flow:J16:branch25_seg0": [ - 1.6542213968725927, - 2.169950734612614, - 2.7764922912267633, - 3.455240340087626, - 4.180474675277973, - 4.923684995060006, - 5.657197100396268, - 6.357398830459044, - 7.006151128634808, - 7.592590088696946, - 8.11093483246154, - 8.559354693571239, - 8.938440696995729, - 9.248557227983481, - 9.490024551615178, - 9.662576357778827, - 9.765869319698005, - 9.80123899446454, - 9.771433103594354, - 9.681715444176493, - 9.539346394954897, - 9.352376181264722, - 9.129158815941683, - 8.877064741637035, - 8.602149211538045, - 8.30934771127428, - 8.002914164270582, - 7.687254745786698, - 7.367410113440375, - 7.0490867127016905, - 6.737911520137156, - 6.438406808786441, - 6.152421490397283, - 5.878062701370221, - 5.6093921528482555, - 5.33691451064439, - 5.0492731033932605, - 4.735561463859673, - 4.388143408819303, - 4.004268555179475, - 3.5877959487511704, - 3.148682727452838, - 2.701608228003909, - 2.2636026110351297, - 1.8514978828394815, - 1.4791540821381632, - 1.1558555330503675, - 0.8863315732528755, - 0.6703231638765395, - 0.5047027814772085, - 0.3847737136979474, - 0.30535590643301996, - 0.26217214472743355, - 0.25137525152793205, - 0.2693116996492011, - 0.31186609408255755, - 0.3735192118371192, - 0.4474079562586771, - 0.5256357248189191, - 0.6002484374697865, - 0.6642990538944721, - 0.7132109704558005, - 0.745103742841906, - 0.7608157514327069, - 0.7633333176275434, - 0.7563478024241169, - 0.7431766453525925, - 0.7257714178381668, - 0.70431468390358, - 0.6775764866779167, - 0.6437229082371289, - 0.6014203710087498, - 0.5507597578054763, - 0.49359677231450516, - 0.4334559561297655, - 0.3746682340711483, - 0.32130524133127153, - 0.27608441394664057, - 0.23991623967571232, - 0.21174092195589775, - 0.18930150059284015, - 0.17021547264924655, - 0.15299549205035987, - 0.13780076022540688, - 0.12651100311244898, - 0.12203944023082015, - 0.1272934714273896, - 0.14381758298159442, - 0.17111514856465962, - 0.20661851160647193, - 0.24661072040693663, - 0.28813057008390874, - 0.3311430381415864, - 0.3804378038561828, - 0.44674824266957563, - 0.5461187664562366, - 0.6984205907261963, - 0.9238765465495717, - 1.2389488049159967, - 1.6542213968725927 - ], - "pressure:J16:branch25_seg0": [ - 6584.1065495514495, - 7368.418096637062, - 8275.421288884763, - 9275.077768452362, - 10328.165675115884, - 11393.136250196521, - 12431.474220206419, - 13412.43550425456, - 14312.518171701482, - 15119.253936440207, - 15827.457438578584, - 16435.08268669213, - 16943.991462309346, - 17354.671658804986, - 17666.84206677108, - 17880.68742198224, - 17995.41477203574, - 18013.746559026265, - 17941.14143800062, - 17785.57551889161, - 17558.52781056315, - 17271.783344886895, - 16936.930056062633, - 16564.12855212607, - 16161.302245449107, - 15735.044497444122, - 15291.332109072595, - 14836.642408716009, - 14378.528730635084, - 13925.411788035462, - 13485.074233686018, - 13063.066497109974, - 12660.622691992423, - 12272.962035381677, - 11889.733199354137, - 11495.946206739673, - 11075.082960932406, - 10612.066666343862, - 10098.185025918372, - 9532.376748926281, - 8922.999856596538, - 8287.294337372665, - 7647.982717726009, - 7029.962168341952, - 6456.334767288076, - 5945.568683718796, - 5508.226547565644, - 5148.790566325964, - 4865.241872571631, - 4651.521024100879, - 4500.801295325537, - 4405.693660691666, - 4360.352839735276, - 4359.694390540294, - 4398.228501957752, - 4469.740848247546, - 4565.66560181521, - 4675.487414847198, - 4787.604801895479, - 4890.954285174827, - 4976.284279022704, - 5038.2370977632, - 5075.773269823493, - 5091.01382056377, - 5089.045314338992, - 5075.338080304694, - 5054.104386737801, - 5027.364547402566, - 4994.578271815372, - 4953.43104746836, - 4901.291536947132, - 4836.647859967657, - 4760.483024689577, - 4676.32709398516, - 4589.834349914058, - 4507.36589519018, - 4434.412954525748, - 4374.017478747428, - 4326.521407681447, - 4289.665650228613, - 4259.779516426682, - 4233.659264297791, - 4209.83120352567, - 4189.361389119764, - 4175.682415392732, - 4173.21546255687, - 4185.840562085141, - 4214.971307446826, - 4258.689191748393, - 4312.588582651014, - 4371.143332241792, - 4430.906846862759, - 4493.703718586062, - 4568.996299450142, - 4675.007125345523, - 4837.0755587708645, - 5084.335122885423, - 5445.727427794746, - 5941.922531130078, - 6584.1065495514495 - ], - "flow:J16:branch140_seg0": [ - 0.4294366952824836, - 0.5618918285944532, - 0.7165138178901042, - 0.8883708243575867, - 1.070805186043195, - 1.2566214450786448, - 1.4389795673598171, - 1.6121923364968533, - 1.7719310425000423, - 1.9157537772495554, - 2.0424371787019813, - 2.1516168362288903, - 2.243535112028698, - 2.3182684982070714, - 2.375868871291446, - 2.416281360257181, - 2.439402218142052, - 2.4456412041795, - 2.4357609809686167, - 2.411142569977388, - 2.3736873198414945, - 2.3254204206416103, - 2.268420322346764, - 2.2044918328015286, - 2.1350881995806557, - 2.061402979009686, - 1.984479410700847, - 1.9054268814150315, - 1.8255298161594284, - 1.7462352508461993, - 1.6689335398592104, - 1.5946953674909474, - 1.523874160434545, - 1.455840278579492, - 1.3889620190772514, - 1.3207463401707507, - 1.2483123699544134, - 1.1689704746999516, - 1.0809715664209725, - 0.9838337362232475, - 0.878763348231388, - 0.7684828323494014, - 0.6568105669167748, - 0.5480585707944541, - 0.44638824529825205, - 0.3551427137391027, - 0.27643141729628407, - 0.21126905796929046, - 0.15942208531360105, - 0.11999145510364873, - 0.09177915341664798, - 0.07347669463423144, - 0.06405083762053077, - 0.06256803116955267, - 0.06810485182052634, - 0.07961622808241897, - 0.09566974769365794, - 0.11449867501741949, - 0.1341022420034572, - 0.15250786694906887, - 0.16802873999261872, - 0.17961843365345878, - 0.1869247123182539, - 0.19024477782496355, - 0.1903997955857742, - 0.18832916012244616, - 0.1848310094068725, - 0.1803355832415927, - 0.1748217632661444, - 0.16793374671105782, - 0.15920200008345808, - 0.1483198329649791, - 0.13537364348968783, - 0.12089355234036901, - 0.10581578538388878, - 0.09124304207125204, - 0.07817223978900237, - 0.06721939196678192, - 0.058539787561311014, - 0.051801675192578, - 0.04640002990163953, - 0.041748273972585126, - 0.037519074567481485, - 0.03381739017639785, - 0.03117524430075326, - 0.030348893038836554, - 0.03205227954093726, - 0.0366111622808906, - 0.04381419668557835, - 0.052952139989216475, - 0.06306655731818427, - 0.07346597383500222, - 0.08427435394416675, - 0.0968844187288766, - 0.11420438290439111, - 0.14042962271151535, - 0.18062478826892192, - 0.23984434665112522, - 0.32198375428798787, - 0.4294366952824836 - ], - "pressure:J16:branch140_seg0": [ - 6584.1065495514495, - 7368.418096637062, - 8275.421288884763, - 9275.077768452362, - 10328.165675115884, - 11393.136250196521, - 12431.474220206419, - 13412.43550425456, - 14312.518171701482, - 15119.253936440207, - 15827.457438578584, - 16435.08268669213, - 16943.991462309346, - 17354.671658804986, - 17666.84206677108, - 17880.68742198224, - 17995.41477203574, - 18013.746559026265, - 17941.14143800062, - 17785.57551889161, - 17558.52781056315, - 17271.783344886895, - 16936.930056062633, - 16564.12855212607, - 16161.302245449107, - 15735.044497444122, - 15291.332109072595, - 14836.642408716009, - 14378.528730635084, - 13925.411788035462, - 13485.074233686018, - 13063.066497109974, - 12660.622691992423, - 12272.962035381677, - 11889.733199354137, - 11495.946206739673, - 11075.082960932406, - 10612.066666343862, - 10098.185025918372, - 9532.376748926281, - 8922.999856596538, - 8287.294337372665, - 7647.982717726009, - 7029.962168341952, - 6456.334767288076, - 5945.568683718796, - 5508.226547565644, - 5148.790566325964, - 4865.241872571631, - 4651.521024100879, - 4500.801295325537, - 4405.693660691666, - 4360.352839735276, - 4359.694390540294, - 4398.228501957752, - 4469.740848247546, - 4565.66560181521, - 4675.487414847198, - 4787.604801895479, - 4890.954285174827, - 4976.284279022704, - 5038.2370977632, - 5075.773269823493, - 5091.01382056377, - 5089.045314338992, - 5075.338080304694, - 5054.104386737801, - 5027.364547402566, - 4994.578271815372, - 4953.43104746836, - 4901.291536947132, - 4836.647859967657, - 4760.483024689577, - 4676.32709398516, - 4589.834349914058, - 4507.36589519018, - 4434.412954525748, - 4374.017478747428, - 4326.521407681447, - 4289.665650228613, - 4259.779516426682, - 4233.659264297791, - 4209.83120352567, - 4189.361389119764, - 4175.682415392732, - 4173.21546255687, - 4185.840562085141, - 4214.971307446826, - 4258.689191748393, - 4312.588582651014, - 4371.143332241792, - 4430.906846862759, - 4493.703718586062, - 4568.996299450142, - 4675.007125345523, - 4837.0755587708645, - 5084.335122885423, - 5445.727427794746, - 5941.922531130078, - 6584.1065495514495 - ], - "flow:branch25_seg0:J17": [ - 1.6541713477729387, - 2.1698912167245905, - 2.7764250398127484, - 3.455167980588132, - 4.180400017384037, - 4.9236108673975005, - 5.657126033955132, - 6.35733275235222, - 7.006091202347413, - 7.592537022759069, - 8.110888746438413, - 8.559315580254816, - 8.93840852281485, - 9.248531888434957, - 9.490006156810738, - 9.662564848831698, - 9.765864675246418, - 9.801241054703386, - 9.771441206391604, - 9.681728974727909, - 9.539364564990578, - 9.352398074505702, - 9.129183715147274, - 8.877091997349867, - 8.602178314753141, - 8.309378257578915, - 8.002945714204596, - 7.68728680956383, - 7.367442129291537, - 7.0491180969208935, - 6.73794175846168, - 6.438435670521455, - 6.1524490789410695, - 5.878089534576556, - 5.609419162360033, - 5.3369428567599195, - 5.04930388754639, - 4.735595604071895, - 4.388181295790261, - 4.004309861628205, - 3.5878398051362934, - 3.148727697856921, - 2.7016525642642844, - 2.263644531486745, - 1.8515360644430352, - 1.4791873898414067, - 1.1558833837691926, - 0.8863540684462939, - 0.6703404743457307, - 0.5047154431917399, - 0.3847822722592468, - 0.3053607301549355, - 0.26217369944065055, - 0.2513738703817728, - 0.2693077469702693, - 0.3118601206019899, - 0.3735118712242226, - 0.4474000335364218, - 0.5256280521554803, - 0.6002417393960563, - 0.6642938438576907, - 0.7132075091740079, - 0.7451019420317074, - 0.7608153455988181, - 0.7633339369509442, - 0.7563490681557767, - 0.743178330265628, - 0.7257734825011947, - 0.7043172400568999, - 0.6775797362459023, - 0.6437269898899519, - 0.601425324927316, - 0.5507654388414366, - 0.49360282367352887, - 0.43346194267492094, - 0.37467373279476895, - 0.32130994012752206, - 0.27608816791636753, - 0.23991915779439188, - 0.21174322019245545, - 0.189303426461898, - 0.17021721834244224, - 0.15299707307601046, - 0.13780200954441943, - 0.12651162322429035, - 0.12203911886580356, - 0.1272920129335228, - 0.143814982363436, - 0.17111166113152518, - 0.20661451548281606, - 0.2466065610435119, - 0.2881263397488772, - 0.33113836404366453, - 0.38043172114256524, - 0.44673920452696797, - 0.5461047009250354, - 0.6983996156956825, - 0.9238467803156716, - 1.238908836216652, - 1.6541713477729387 - ], - "pressure:branch25_seg0:J17": [ - 6560.135577977465, - 7338.968071243204, - 8240.903474280394, - 9236.258679103179, - 10286.081074430127, - 11348.957990796893, - 12386.349055467885, - 13367.305650068025, - 14268.144838227858, - 15076.166844222264, - 15785.930997385805, - 16395.345324451115, - 16906.1893265338, - 17318.949959511803, - 17633.412573332716, - 17849.71148008627, - 17967.0791975364, - 17988.161704920392, - 17918.27075075699, - 17765.333582676638, - 17540.71490184866, - 17256.15362615344, - 16923.252518035188, - 16552.186144856147, - 16150.926973013784, - 15726.096125154316, - 15283.66609964495, - 14830.086347720122, - 14372.86621140474, - 13920.390119626762, - 13480.450090363702, - 13058.670409480472, - 12656.406525105318, - 12269.0655701885, - 11886.476953545864, - 11493.796718924074, - 11074.555974162507, - 10613.655891878665, - 10102.205486597308, - 9538.892245012974, - 8931.814550766117, - 8297.924604911552, - 7659.756066626815, - 7042.118860816348, - 6468.1665738739275, - 5956.447293305766, - 5517.740886633352, - 5156.724382013824, - 4871.5138273168395, - 4656.1996099592825, - 4503.974141563086, - 4407.454083702048, - 4360.787626348904, - 4358.860544640695, - 4396.216791614813, - 4466.68688037964, - 4561.777240663391, - 4671.052230639699, - 4782.957290399859, - 4886.420417381163, - 4972.144270756663, - 5034.6780994041255, - 5072.841983255611, - 5088.673367443032, - 5087.182276931947, - 5073.814524321249, - 5052.82267734187, - 5026.291312922095, - 4993.749811490368, - 4952.934497571064, - 4901.216571112965, - 4837.051718406576, - 4761.3462926821985, - 4677.547283903487, - 4591.247765275949, - 4508.784937781801, - 4435.6707659458325, - 4375.0146713849, - 4327.243431375833, - 4290.163633684094, - 4260.147207321164, - 4233.977516586109, - 4210.124979554087, - 4189.580814750946, - 4175.7080961230595, - 4172.899741679907, - 4185.055748025233, - 4213.6573673433495, - 4256.894235950733, - 4310.431227056552, - 4368.76662080686, - 4428.387411615043, - 4490.94859062907, - 4565.666603146252, - 4670.482154268206, - 4830.481316705925, - 5074.696505191634, - 5432.013698423215, - 5923.315342487924, - 6560.135577977465 - ], - "flow:J17:branch26_seg0": [ - 1.3204303017660857, - 1.7332712666469408, - 2.219751372703468, - 2.765092574988239, - 3.348746617678134, - 3.947787189027927, - 4.539842556409757, - 5.105700553512725, - 5.630579599070915, - 6.1055023934206005, - 6.525626563354559, - 6.889409384473015, - 7.197249507897558, - 7.449453468555865, - 7.646305486851839, - 7.787577517531606, - 7.87300913283801, - 7.90361489757024, - 7.88154620033068, - 7.810995269049069, - 7.697742740587727, - 7.548268578618552, - 7.369315250665102, - 7.16685346867544, - 6.945813353429014, - 6.710204769341483, - 6.463472136853922, - 6.209159954838576, - 5.951311078269798, - 5.694508273476318, - 5.443301242109423, - 5.201384280712908, - 4.970335701864743, - 4.7487580492072174, - 4.531982981450181, - 4.312452623172075, - 4.081045113053977, - 3.828939038436505, - 3.5498475603050856, - 3.2413863779956484, - 2.9064719077663574, - 2.5529402797335874, - 2.1925057020336993, - 1.8388530747269327, - 1.5055882809204948, - 1.2039821409671423, - 0.9416920669206243, - 0.7226627230522911, - 0.5468212108162075, - 0.4117418288949976, - 0.31365455779738377, - 0.24839609664901202, - 0.2124885225556647, - 0.20280765721396138, - 0.21641933581136777, - 0.2500186208096764, - 0.29920003319255256, - 0.3584735241918168, - 0.42149498578135264, - 0.4818390930388736, - 0.533865894618872, - 0.5738074675118464, - 0.6000510968902448, - 0.6132038060842534, - 0.6156128152724837, - 0.6102405958412702, - 0.5997877628348799, - 0.5858741792870675, - 0.5687008363358421, - 0.5473149652793519, - 0.5202465473031911, - 0.48639838778856, - 0.44579138738432883, - 0.39986807856725487, - 0.3514252024499792, - 0.30393809041815895, - 0.26070615190513813, - 0.22397211157915367, - 0.19452800535896808, - 0.17157302268483135, - 0.15332097793216357, - 0.13784280162428655, - 0.12390296152799639, - 0.11157697405290985, - 0.10232993627723187, - 0.0984882927965287, - 0.10240671034049809, - 0.11537934798517054, - 0.1370775038162548, - 0.16548488928051164, - 0.1976281710446613, - 0.231079806520113, - 0.2657026060285565, - 0.30519828504614915, - 0.3580361117985609, - 0.43700065219213124, - 0.558031863109885, - 0.7374314607766638, - 0.9886540431135189, - 1.3204303017660857 - ], - "pressure:J17:branch26_seg0": [ - 6560.135577977465, - 7338.968071243204, - 8240.903474280394, - 9236.258679103179, - 10286.081074430127, - 11348.957990796893, - 12386.349055467885, - 13367.305650068025, - 14268.144838227858, - 15076.166844222264, - 15785.930997385805, - 16395.345324451115, - 16906.1893265338, - 17318.949959511803, - 17633.412573332716, - 17849.71148008627, - 17967.0791975364, - 17988.161704920392, - 17918.27075075699, - 17765.333582676638, - 17540.71490184866, - 17256.15362615344, - 16923.252518035188, - 16552.186144856147, - 16150.926973013784, - 15726.096125154316, - 15283.66609964495, - 14830.086347720122, - 14372.86621140474, - 13920.390119626762, - 13480.450090363702, - 13058.670409480472, - 12656.406525105318, - 12269.0655701885, - 11886.476953545864, - 11493.796718924074, - 11074.555974162507, - 10613.655891878665, - 10102.205486597308, - 9538.892245012974, - 8931.814550766117, - 8297.924604911552, - 7659.756066626815, - 7042.118860816348, - 6468.1665738739275, - 5956.447293305766, - 5517.740886633352, - 5156.724382013824, - 4871.5138273168395, - 4656.1996099592825, - 4503.974141563086, - 4407.454083702048, - 4360.787626348904, - 4358.860544640695, - 4396.216791614813, - 4466.68688037964, - 4561.777240663391, - 4671.052230639699, - 4782.957290399859, - 4886.420417381163, - 4972.144270756663, - 5034.6780994041255, - 5072.841983255611, - 5088.673367443032, - 5087.182276931947, - 5073.814524321249, - 5052.82267734187, - 5026.291312922095, - 4993.749811490368, - 4952.934497571064, - 4901.216571112965, - 4837.051718406576, - 4761.3462926821985, - 4677.547283903487, - 4591.247765275949, - 4508.784937781801, - 4435.6707659458325, - 4375.0146713849, - 4327.243431375833, - 4290.163633684094, - 4260.147207321164, - 4233.977516586109, - 4210.124979554087, - 4189.580814750946, - 4175.7080961230595, - 4172.899741679907, - 4185.055748025233, - 4213.6573673433495, - 4256.894235950733, - 4310.431227056552, - 4368.76662080686, - 4428.387411615043, - 4490.94859062907, - 4565.666603146252, - 4670.482154268206, - 4830.481316705925, - 5074.696505191634, - 5432.013698423215, - 5923.315342487924, - 6560.135577977465 - ], - "flow:J17:branch44_seg0": [ - 0.33374104600685306, - 0.4366199500776498, - 0.5566736671092801, - 0.6900754055998928, - 0.8316533997059029, - 0.9758236783695721, - 1.1172834775453746, - 1.2516321988394934, - 1.3755116032764991, - 1.487034629338469, - 1.5852621830838531, - 1.6699061957818022, - 1.7411590149172955, - 1.79907841987909, - 1.8437006699588963, - 1.8749873313000909, - 1.8928555424084075, - 1.8976261571331432, - 1.8898950060609236, - 1.8707337056788358, - 1.841621824402848, - 1.8041294958871477, - 1.7598684644821696, - 1.7102385286744273, - 1.656364961324126, - 1.5991734882374347, - 1.5394735773506716, - 1.478126854725255, - 1.4161310510217382, - 1.3546098234445743, - 1.2946405163522585, - 1.2370513898085456, - 1.1821133770763286, - 1.129331485369339, - 1.0774361809098512, - 1.0244902335878459, - 0.9682587744924136, - 0.9066565656353895, - 0.8383337354851744, - 0.7629234836325561, - 0.6813678973699357, - 0.5957874181233338, - 0.5091468622305845, - 0.4247914567598125, - 0.34594778352254024, - 0.2752052488742643, - 0.21419131684856837, - 0.16369134539400299, - 0.12351926352952323, - 0.09297361429674234, - 0.07112771446186296, - 0.056964633505923415, - 0.04968517688498586, - 0.048566213167811324, - 0.05288841115890157, - 0.061841499792313556, - 0.07431183803166998, - 0.08892650934460508, - 0.10413306637412768, - 0.11840264635718277, - 0.13042794923881884, - 0.1394000416621615, - 0.14505084514146263, - 0.14761153951456485, - 0.1477211216784606, - 0.14610847231450652, - 0.14339056743074804, - 0.13989930321412714, - 0.13561640372105777, - 0.13026477096655042, - 0.12348044258676084, - 0.11502693713875611, - 0.10497405145710781, - 0.09373474510627386, - 0.08203674022494166, - 0.07073564237661002, - 0.060603788222383964, - 0.05211605633721395, - 0.045391152435423826, - 0.040170197507624066, - 0.035982448529734395, - 0.032374416718155705, - 0.02909411154801404, - 0.02622503549150957, - 0.024181686947058488, - 0.023550826069274878, - 0.024885302593024745, - 0.028435634378265476, - 0.03403415731527039, - 0.04112962620230437, - 0.048978389998850576, - 0.05704653322876419, - 0.06543575801510806, - 0.07523343609641613, - 0.08870309272840703, - 0.109104048732904, - 0.14036775258579762, - 0.186415319539008, - 0.25025479310313353, - 0.33374104600685306 - ], - "pressure:J17:branch44_seg0": [ - 6560.135577977465, - 7338.968071243204, - 8240.903474280394, - 9236.258679103179, - 10286.081074430127, - 11348.957990796893, - 12386.349055467885, - 13367.305650068025, - 14268.144838227858, - 15076.166844222264, - 15785.930997385805, - 16395.345324451115, - 16906.1893265338, - 17318.949959511803, - 17633.412573332716, - 17849.71148008627, - 17967.0791975364, - 17988.161704920392, - 17918.27075075699, - 17765.333582676638, - 17540.71490184866, - 17256.15362615344, - 16923.252518035188, - 16552.186144856147, - 16150.926973013784, - 15726.096125154316, - 15283.66609964495, - 14830.086347720122, - 14372.86621140474, - 13920.390119626762, - 13480.450090363702, - 13058.670409480472, - 12656.406525105318, - 12269.0655701885, - 11886.476953545864, - 11493.796718924074, - 11074.555974162507, - 10613.655891878665, - 10102.205486597308, - 9538.892245012974, - 8931.814550766117, - 8297.924604911552, - 7659.756066626815, - 7042.118860816348, - 6468.1665738739275, - 5956.447293305766, - 5517.740886633352, - 5156.724382013824, - 4871.5138273168395, - 4656.1996099592825, - 4503.974141563086, - 4407.454083702048, - 4360.787626348904, - 4358.860544640695, - 4396.216791614813, - 4466.68688037964, - 4561.777240663391, - 4671.052230639699, - 4782.957290399859, - 4886.420417381163, - 4972.144270756663, - 5034.6780994041255, - 5072.841983255611, - 5088.673367443032, - 5087.182276931947, - 5073.814524321249, - 5052.82267734187, - 5026.291312922095, - 4993.749811490368, - 4952.934497571064, - 4901.216571112965, - 4837.051718406576, - 4761.3462926821985, - 4677.547283903487, - 4591.247765275949, - 4508.784937781801, - 4435.6707659458325, - 4375.0146713849, - 4327.243431375833, - 4290.163633684094, - 4260.147207321164, - 4233.977516586109, - 4210.124979554087, - 4189.580814750946, - 4175.7080961230595, - 4172.899741679907, - 4185.055748025233, - 4213.6573673433495, - 4256.894235950733, - 4310.431227056552, - 4368.76662080686, - 4428.387411615043, - 4490.94859062907, - 4565.666603146252, - 4670.482154268206, - 4830.481316705925, - 5074.696505191634, - 5432.013698423215, - 5923.315342487924, - 6560.135577977465 - ], - "flow:branch26_seg0:J18": [ - 1.3202832289566393, - 1.7330961120146695, - 2.219553214727449, - 2.764879083154765, - 3.3485260806192287, - 3.947567989452957, - 4.539632211237126, - 5.105504777315506, - 5.630401928579189, - 6.105344957670391, - 6.525489737152348, - 6.889293182864226, - 7.197153815319543, - 7.449377981681316, - 7.646250528034453, - 7.7875429089447135, - 7.8729948238836105, - 7.903620423348032, - 7.881569637579543, - 7.811034815814943, - 7.697796064752843, - 7.548332983737989, - 7.369388604631706, - 7.166933839442834, - 6.945899228496171, - 6.710294944422527, - 6.463565316230082, - 6.2092546968545905, - 5.951405728655465, - 5.694601103608565, - 5.443390727515305, - 5.201469712397835, - 4.9704173508521166, - 4.748837417756985, - 4.53206278974535, - 4.3125362826704245, - 4.081135885737483, - 3.8290396653906966, - 3.5499592337356978, - 3.2415081926666875, - 2.906601348160565, - 2.553073135520361, - 2.1926368329787214, - 1.8389772195648044, - 1.5057014836266867, - 1.2040810164030797, - 0.9417748655768231, - 0.7227296768120298, - 0.5468728131093772, - 0.4117796505005692, - 0.31368019831853816, - 0.24841067017121643, - 0.21249339602231426, - 0.2028038169427836, - 0.2164078657466153, - 0.25000112774373173, - 0.2991784391008335, - 0.3584501431951778, - 0.42147227585158015, - 0.48181920109230325, - 0.5338503635818465, - 0.5737970911497184, - 0.6000456338687241, - 0.6132024937943472, - 0.6156145651334577, - 0.6102442848210692, - 0.599792708843312, - 0.5858802491882413, - 0.5687083474082197, - 0.5473245081517495, - 0.5202585392122814, - 0.4864129589212793, - 0.4458081216835512, - 0.39988593966829206, - 0.3514429110877783, - 0.30395439247627193, - 0.2607201111354707, - 0.22398328939603787, - 0.19453670070694698, - 0.17157986343325815, - 0.15332669882631583, - 0.13784797667358323, - 0.12390765074881983, - 0.11158069917639621, - 0.10233182691272959, - 0.09848742712079761, - 0.10240249662264701, - 0.1153717534930819, - 0.13706726674667347, - 0.1654731148796701, - 0.1976158866778692, - 0.23106731077765053, - 0.2656888390562309, - 0.3051804453858333, - 0.35800967450535737, - 0.4369595397076137, - 0.5579704888109948, - 0.7373442365969648, - 0.988536792396211, - 1.3202832289566393 - ], - "pressure:branch26_seg0:J18": [ - 6527.635628217944, - 7299.084545631663, - 8194.274120675993, - 9184.012618289868, - 10229.723929179365, - 11290.171449415613, - 12326.76166096853, - 13308.244896945132, - 14210.667504357223, - 15020.983460631238, - 15733.391504713127, - 16345.7209841683, - 16859.62953363494, - 17275.60759131941, - 17593.52656139277, - 17813.458101475277, - 17934.669569512815, - 17959.694929684712, - 17893.653238530613, - 17744.39705617671, - 17523.132869950594, - 17241.54322079955, - 16911.25179116425, - 16542.460147201957, - 16143.215479835353, - 15720.182366440398, - 15279.333598065476, - 14827.083672804682, - 14370.883592570162, - 13919.06994762204, - 13479.45075022691, - 13057.754324643405, - 12655.508785069123, - 12268.385154261492, - 11886.465189767157, - 11495.10813430496, - 11077.913205340985, - 10619.744164895395, - 10111.454852513272, - 9551.380897936006, - 8947.249463824115, - 8315.611576864312, - 7678.739678799713, - 7061.328249064896, - 6486.6057165608445, - 5973.247971490972, - 5532.349833517684, - 5168.862414961318, - 4881.105522566576, - 4663.377725089504, - 4508.898684057902, - 4410.295229001169, - 4361.698037860145, - 4357.949410543108, - 4393.636478160142, - 4462.6470226193005, - 4556.586582940545, - 4665.12699805468, - 4776.775542123013, - 4880.445164353571, - 4966.770361712987, - 5030.163840203082, - 5069.248439863981, - 5085.93958103636, - 5085.1374377461125, - 5072.255255556772, - 5051.602098817202, - 5025.354100209621, - 4993.1407538574695, - 4952.770997113766, - 4901.621478993761, - 4838.102135760928, - 4763.011351735286, - 4679.680558174487, - 4593.616252744246, - 4511.1226229401145, - 4437.74230268863, - 4376.681744546587, - 4328.4874411975225, - 4291.060913898664, - 4260.835030798593, - 4234.574954144716, - 4210.6727825733615, - 4190.013892606285, - 4175.862885488167, - 4172.572329070476, - 4184.069828673589, - 4211.933160247876, - 4254.502920443466, - 4307.54497660997, - 4365.593555501792, - 4425.043257981235, - 4487.312580233085, - 4561.275185645417, - 4664.4792823197795, - 4821.664110945105, - 5061.7190556254145, - 5413.465571804681, - 5898.099944453904, - 6527.635628217944 - ], - "flow:J18:branch27_seg0": [ - 0.9122227879778022, - 1.1975738994156502, - 1.5339586417643667, - 1.9111908338955954, - 2.315078493149928, - 2.7297637040328895, - 3.139753628314201, - 3.5317263484828025, - 3.8954188882235607, - 4.224580321963933, - 4.515829888924784, - 4.7680787354258545, - 4.981590005808585, - 5.156574561380968, - 5.29322962836278, - 5.391399103264947, - 5.450903069286956, - 5.472436520468395, - 5.45748121526659, - 5.408928995614743, - 5.330772473675515, - 5.227494086182094, - 5.103761668176744, - 4.963713805984679, - 4.810770889604743, - 4.647715344492135, - 4.4769357326851535, - 4.3008861936618965, - 4.122363337689722, - 3.9445373202915412, - 3.770558615950137, - 3.602990638495191, - 3.4429387104323532, - 3.2894532343451277, - 3.139321719170676, - 2.987328508243641, - 2.827167160957316, - 2.6527283880487422, - 2.4596440897223206, - 2.2462396211918567, - 2.0145029833222177, - 1.769829678818515, - 1.5203068369838428, - 1.2753974975199476, - 1.0445227459855448, - 0.8354990068756264, - 0.6536502644858396, - 0.5017306706254464, - 0.3797128326229717, - 0.28593295662876267, - 0.2177887333690676, - 0.17239995576039396, - 0.14735547524341586, - 0.14048929072541974, - 0.14976892155760102, - 0.17290841650775185, - 0.20686369491353018, - 0.24784028816749315, - 0.2914508195506427, - 0.333247060528401, - 0.3693192742087345, - 0.3970475934920216, - 0.4153020028506299, - 0.42448941195176915, - 0.42622427469120455, - 0.4225535295961374, - 0.4153485368491355, - 0.40573719910713735, - 0.3938671577493899, - 0.3790858356293864, - 0.36037860534464755, - 0.3369838671166667, - 0.30890942285268774, - 0.27714542314532326, - 0.2436201996369705, - 0.2107357143160234, - 0.1807772781492944, - 0.15530387580630617, - 0.1348728355845148, - 0.11893908165627266, - 0.1062721179089325, - 0.0955374163052326, - 0.08587543197270393, - 0.07733068512870347, - 0.07090918966800352, - 0.06821639616278548, - 0.07088234473500583, - 0.07980918665316193, - 0.09477918085420516, - 0.11440639428110018, - 0.1366380130252111, - 0.15979019091115243, - 0.1837542435581302, - 0.21107004428541298, - 0.24757269755655445, - 0.3020873821117701, - 0.38563228620290263, - 0.5094906204080727, - 0.682995457421384, - 0.9122227879778022 - ], - "pressure:J18:branch27_seg0": [ - 6527.635628217944, - 7299.084545631663, - 8194.274120675993, - 9184.012618289868, - 10229.723929179365, - 11290.171449415613, - 12326.76166096853, - 13308.244896945132, - 14210.667504357223, - 15020.983460631238, - 15733.391504713127, - 16345.7209841683, - 16859.62953363494, - 17275.60759131941, - 17593.52656139277, - 17813.458101475277, - 17934.669569512815, - 17959.694929684712, - 17893.653238530613, - 17744.39705617671, - 17523.132869950594, - 17241.54322079955, - 16911.25179116425, - 16542.460147201957, - 16143.215479835353, - 15720.182366440398, - 15279.333598065476, - 14827.083672804682, - 14370.883592570162, - 13919.06994762204, - 13479.45075022691, - 13057.754324643405, - 12655.508785069123, - 12268.385154261492, - 11886.465189767157, - 11495.10813430496, - 11077.913205340985, - 10619.744164895395, - 10111.454852513272, - 9551.380897936006, - 8947.249463824115, - 8315.611576864312, - 7678.739678799713, - 7061.328249064896, - 6486.6057165608445, - 5973.247971490972, - 5532.349833517684, - 5168.862414961318, - 4881.105522566576, - 4663.377725089504, - 4508.898684057902, - 4410.295229001169, - 4361.698037860145, - 4357.949410543108, - 4393.636478160142, - 4462.6470226193005, - 4556.586582940545, - 4665.12699805468, - 4776.775542123013, - 4880.445164353571, - 4966.770361712987, - 5030.163840203082, - 5069.248439863981, - 5085.93958103636, - 5085.1374377461125, - 5072.255255556772, - 5051.602098817202, - 5025.354100209621, - 4993.1407538574695, - 4952.770997113766, - 4901.621478993761, - 4838.102135760928, - 4763.011351735286, - 4679.680558174487, - 4593.616252744246, - 4511.1226229401145, - 4437.74230268863, - 4376.681744546587, - 4328.4874411975225, - 4291.060913898664, - 4260.835030798593, - 4234.574954144716, - 4210.6727825733615, - 4190.013892606285, - 4175.862885488167, - 4172.572329070476, - 4184.069828673589, - 4211.933160247876, - 4254.502920443466, - 4307.54497660997, - 4365.593555501792, - 4425.043257981235, - 4487.312580233085, - 4561.275185645417, - 4664.4792823197795, - 4821.664110945105, - 5061.7190556254145, - 5413.465571804681, - 5898.099944453904, - 6527.635628217944 - ], - "flow:J18:branch122_seg0": [ - 0.4080604409788372, - 0.5355222125990196, - 0.6855945729630826, - 0.8536882492591698, - 1.0334475874693008, - 1.217804285420068, - 1.3998785829229248, - 1.5737784288327017, - 1.7349830403556283, - 1.8807646357064591, - 2.0096598482275656, - 2.1212144474383727, - 2.215563809510957, - 2.292803420300347, - 2.353020899671674, - 2.3961438056797673, - 2.422091754596656, - 2.431183902879637, - 2.4240884223129524, - 2.402105820200199, - 2.3670235910773285, - 2.3208388975558965, - 2.2656269364549635, - 2.2032200334581566, - 2.135128338891427, - 2.062579599930392, - 1.986629583544928, - 1.9083685031926934, - 1.829042390965742, - 1.7500637833170247, - 1.6728321115651679, - 1.598479073902643, - 1.527478640419762, - 1.4593841834118575, - 1.392741070574673, - 1.3252077744267838, - 1.2539687247801665, - 1.176311277341954, - 1.0903151440133763, - 0.9952685714748305, - 0.8920983648383467, - 0.7832434567018461, - 0.6723299959948787, - 0.5635797220448571, - 0.461178737641142, - 0.36858200952745324, - 0.28812460109098337, - 0.22099900618658355, - 0.1671599804864055, - 0.12584669387180655, - 0.09589146494947051, - 0.0760107144108225, - 0.06513792077889843, - 0.062314526217363844, - 0.0666389441890143, - 0.07709271123597988, - 0.09231474418730329, - 0.11060985502768467, - 0.13002145630093737, - 0.14857214056390222, - 0.16453108937311206, - 0.17674949765769685, - 0.18474363101809416, - 0.18871308184257826, - 0.1893902904422532, - 0.18769075522493178, - 0.18444417199417665, - 0.18014305008110407, - 0.17484118965882967, - 0.16823867252236313, - 0.15987993386763388, - 0.1494290918046126, - 0.13689869883086359, - 0.1227405165229688, - 0.10782271145080784, - 0.09321867816024848, - 0.07994283298617631, - 0.06867941358973169, - 0.059663865122432186, - 0.052640781776985494, - 0.04705458091738329, - 0.04231056036835063, - 0.0380322187761159, - 0.03425001404769272, - 0.031422637244726055, - 0.030271030958012157, - 0.03152015188764119, - 0.035562566839919985, - 0.042288085892468304, - 0.051066720598569884, - 0.06097787365265813, - 0.07127711986649812, - 0.08193459549810075, - 0.09411040110042031, - 0.11043697694880292, - 0.13487215759584356, - 0.1723382026080922, - 0.227853616188892, - 0.3055413349748269, - 0.4080604409788372 - ], - "pressure:J18:branch122_seg0": [ - 6527.635628217944, - 7299.084545631663, - 8194.274120675993, - 9184.012618289868, - 10229.723929179365, - 11290.171449415613, - 12326.76166096853, - 13308.244896945132, - 14210.667504357223, - 15020.983460631238, - 15733.391504713127, - 16345.7209841683, - 16859.62953363494, - 17275.60759131941, - 17593.52656139277, - 17813.458101475277, - 17934.669569512815, - 17959.694929684712, - 17893.653238530613, - 17744.39705617671, - 17523.132869950594, - 17241.54322079955, - 16911.25179116425, - 16542.460147201957, - 16143.215479835353, - 15720.182366440398, - 15279.333598065476, - 14827.083672804682, - 14370.883592570162, - 13919.06994762204, - 13479.45075022691, - 13057.754324643405, - 12655.508785069123, - 12268.385154261492, - 11886.465189767157, - 11495.10813430496, - 11077.913205340985, - 10619.744164895395, - 10111.454852513272, - 9551.380897936006, - 8947.249463824115, - 8315.611576864312, - 7678.739678799713, - 7061.328249064896, - 6486.6057165608445, - 5973.247971490972, - 5532.349833517684, - 5168.862414961318, - 4881.105522566576, - 4663.377725089504, - 4508.898684057902, - 4410.295229001169, - 4361.698037860145, - 4357.949410543108, - 4393.636478160142, - 4462.6470226193005, - 4556.586582940545, - 4665.12699805468, - 4776.775542123013, - 4880.445164353571, - 4966.770361712987, - 5030.163840203082, - 5069.248439863981, - 5085.93958103636, - 5085.1374377461125, - 5072.255255556772, - 5051.602098817202, - 5025.354100209621, - 4993.1407538574695, - 4952.770997113766, - 4901.621478993761, - 4838.102135760928, - 4763.011351735286, - 4679.680558174487, - 4593.616252744246, - 4511.1226229401145, - 4437.74230268863, - 4376.681744546587, - 4328.4874411975225, - 4291.060913898664, - 4260.835030798593, - 4234.574954144716, - 4210.6727825733615, - 4190.013892606285, - 4175.862885488167, - 4172.572329070476, - 4184.069828673589, - 4211.933160247876, - 4254.502920443466, - 4307.54497660997, - 4365.593555501792, - 4425.043257981235, - 4487.312580233085, - 4561.275185645417, - 4664.4792823197795, - 4821.664110945105, - 5061.7190556254145, - 5413.465571804681, - 5898.099944453904, - 6527.635628217944 - ], - "flow:branch27_seg0:J19": [ - 0.9121438204394643, - 1.1974796554354952, - 1.5338518261312404, - 1.9110755311104872, - 2.314959178199375, - 2.729644931128523, - 3.139639494076211, - 3.5316199675525315, - 3.895322248765249, - 4.224494602666695, - 4.515755315140989, - 4.7680153411284705, - 4.981537716883426, - 5.156533218961884, - 5.293199402200457, - 5.391379895860814, - 5.450894863081973, - 5.472439067997754, - 5.457493502174802, - 5.4089500578939145, - 5.33080104762022, - 5.227528720812581, - 5.103801199371055, - 4.963757178072803, - 4.810817276967698, - 4.6477640879309075, - 4.476986132737586, - 4.300937474237223, - 4.122414607750087, - 3.944587641760188, - 3.7706071596871946, - 3.6030369995866987, - 3.4429830094392453, - 3.2894962613775363, - 3.1393649209117145, - 2.9873737174214043, - 2.827216148947015, - 2.6527826597068773, - 2.4597043199234245, - 2.2463053688322887, - 2.0145729281691893, - 1.7699015689680593, - 1.5203779104259643, - 1.2754649089186094, - 1.0445843193105195, - 0.8355528851929824, - 0.6536954782438269, - 0.5017672936859802, - 0.37974112241876673, - 0.2859537518894476, - 0.2178028909843039, - 0.17240809727869436, - 0.1473583342187038, - 0.14048740339299637, - 0.1497628789481616, - 0.17289907334234778, - 0.2068520841964669, - 0.24782765753312744, - 0.2914384983668711, - 0.33323621610617016, - 0.3693107613501342, - 0.3970418592779758, - 0.4152989335925928, - 0.42448861174046726, - 0.42622515757897994, - 0.42255548541909577, - 0.41535118796816844, - 0.4057404604256738, - 0.3938711908154447, - 0.3790909551998008, - 0.36038504261079873, - 0.3369917013948926, - 0.30891843926702833, - 0.27715507465818656, - 0.24362979913369331, - 0.2107445800367863, - 0.1807848928692131, - 0.15530999333776985, - 0.1348775999598171, - 0.11894282470941091, - 0.10627523904999292, - 0.09554023099610492, - 0.0858779838506202, - 0.07733272736349263, - 0.07091025825829912, - 0.06821599292562971, - 0.07088013903142892, - 0.07980514722354125, - 0.09477369379309887, - 0.11440004824910187, - 0.13663136902925838, - 0.15978343018923935, - 0.18374682476097345, - 0.21106048984797676, - 0.24755859444035502, - 0.30206547547770857, - 0.3855995349347067, - 0.509443979357318, - 0.6829326559325558, - 0.9121438204394643 - ], - "pressure:branch27_seg0:J19": [ - 6515.887882421288, - 7284.6652580054415, - 8177.414053491435, - 9165.121180277862, - 10209.347306215064, - 11268.919940550877, - 12305.226467509183, - 13286.908231992586, - 14189.913321085594, - 15001.069622964445, - 15714.445024580233, - 16327.839650687854, - 16842.86669800883, - 17260.017667518183, - 17579.19494024575, - 17800.447688417713, - 17923.05585797401, - 17949.51309836162, - 17884.868702969976, - 17736.94805102581, - 17516.900414106447, - 17236.387739654285, - 16907.041218792077, - 16539.072269126245, - 16140.555204464768, - 15718.170541253521, - 15277.891381779029, - 14826.119723245361, - 14370.28555162776, - 13918.708135470995, - 13479.201232901414, - 13057.530700812, - 12655.287174293382, - 12268.237190135025, - 11886.554016578119, - 11495.670670577185, - 11079.211303754812, - 10622.02631018969, - 10114.877330830725, - 9555.972578409404, - 8952.904614548645, - 8322.078987900099, - 7685.673236695564, - 7068.339701215747, - 6493.333735221846, - 5979.377610339058, - 5537.680104475593, - 5173.2919973793705, - 4884.607266826159, - 4666.0000590553545, - 4510.700322985398, - 4411.338621901105, - 4362.0392469494445, - 4357.628769665174, - 4392.709682115087, - 4461.190376378355, - 4554.712208941323, - 4662.985878970723, - 4774.541105289475, - 4878.285454719219, - 4964.828808754458, - 5028.534367771113, - 5067.953499976214, - 5084.957228325525, - 5084.405767400255, - 5071.700377104693, - 5051.170437565896, - 5025.0252119511915, - 4992.93051143352, - 4952.721704376556, - 4901.7775808770675, - 4838.491619145318, - 4763.62320331042, - 4680.461876055594, - 4594.482676106927, - 4511.977711642989, - 4438.500614249439, - 4377.292916199351, - 4328.944478281034, - 4291.391369460457, - 4261.088646043679, - 4234.795054115742, - 4210.8744314930145, - 4190.173826916745, - 4175.9220974479795, - 4172.457050957026, - 4183.7161237154905, - 4211.311963940076, - 4253.639815961264, - 4306.50225547135, - 4364.44673788135, - 4423.834661411394, - 4485.999118565708, - 4559.689745725377, - 4662.312628047665, - 4818.481191126553, - 5057.032659409653, - 5406.765114385903, - 5888.9878374731425, - 6515.887882421288 - ], - "flow:J19:branch28_seg0": [ - 0.3662379656402814, - 0.4815790309340524, - 0.6182347496836538, - 0.7721944561659624, - 0.937764588265008, - 1.1084659002985124, - 1.2778794376883682, - 1.440398275749464, - 1.5916674117039953, - 1.728940455531168, - 1.8506912161184808, - 1.9563984545855408, - 2.0461098526577253, - 2.119918556819538, - 2.177916646621333, - 2.220040973749758, - 2.2462257075701837, - 2.256713653750065, - 2.2520756337542056, - 2.2334554839865364, - 2.202446083222801, - 2.1608824156208875, - 2.1106877328083367, - 2.053589776874344, - 1.9910330739952962, - 1.9241898640043626, - 1.854059218418597, - 1.7816489919939615, - 1.7080970291911746, - 1.6346957110592957, - 1.5627496273073433, - 1.4933465551784761, - 1.4270061947869757, - 1.3634302729783974, - 1.3013874738873854, - 1.2388070795422919, - 1.1731254988607425, - 1.1018092305826892, - 1.0229699844823685, - 0.9357970926637943, - 0.8409582758558661, - 0.7405316091651694, - 0.6377486306144735, - 0.5364646791771736, - 0.4405775496125394, - 0.35338053774403794, - 0.27718985341724, - 0.21324405648837588, - 0.16164362782075112, - 0.12177569810477334, - 0.09259211118223311, - 0.07291796453986558, - 0.06173763972365407, - 0.05814338479692271, - 0.06129982108225984, - 0.07027374810022884, - 0.08384277998142274, - 0.10047498529824013, - 0.11838209184883128, - 0.1357264269824749, - 0.1508698229488961, - 0.16267477933091828, - 0.17060649966610555, - 0.17477425940390778, - 0.17579431176589577, - 0.1744961213309574, - 0.171665020979751, - 0.16779921658627878, - 0.16300093121557876, - 0.15703302186480508, - 0.14948828125051428, - 0.14003919233751233, - 0.12865242189953702, - 0.11569529490463652, - 0.10192588482062093, - 0.08831800583719128, - 0.0758226399773146, - 0.06511800230666714, - 0.05647707372852022, - 0.049718789611204954, - 0.044363722856121474, - 0.039860589763600976, - 0.035831152430862066, - 0.032254622096413686, - 0.02950611567593245, - 0.028226312350006236, - 0.029090636419042477, - 0.03250504739524603, - 0.03843093922818157, - 0.046341940065787735, - 0.05541503583720896, - 0.06493305459685028, - 0.07477631292540798, - 0.08587509296738303, - 0.10049503405053982, - 0.12215452829957635, - 0.1553186249155678, - 0.20463118217741544, - 0.27405567244019413, - 0.3662379656402814 - ], - "pressure:J19:branch28_seg0": [ - 6515.887882421288, - 7284.6652580054415, - 8177.414053491435, - 9165.121180277862, - 10209.347306215064, - 11268.919940550877, - 12305.226467509183, - 13286.908231992586, - 14189.913321085594, - 15001.069622964445, - 15714.445024580233, - 16327.839650687854, - 16842.86669800883, - 17260.017667518183, - 17579.19494024575, - 17800.447688417713, - 17923.05585797401, - 17949.51309836162, - 17884.868702969976, - 17736.94805102581, - 17516.900414106447, - 17236.387739654285, - 16907.041218792077, - 16539.072269126245, - 16140.555204464768, - 15718.170541253521, - 15277.891381779029, - 14826.119723245361, - 14370.28555162776, - 13918.708135470995, - 13479.201232901414, - 13057.530700812, - 12655.287174293382, - 12268.237190135025, - 11886.554016578119, - 11495.670670577185, - 11079.211303754812, - 10622.02631018969, - 10114.877330830725, - 9555.972578409404, - 8952.904614548645, - 8322.078987900099, - 7685.673236695564, - 7068.339701215747, - 6493.333735221846, - 5979.377610339058, - 5537.680104475593, - 5173.2919973793705, - 4884.607266826159, - 4666.0000590553545, - 4510.700322985398, - 4411.338621901105, - 4362.0392469494445, - 4357.628769665174, - 4392.709682115087, - 4461.190376378355, - 4554.712208941323, - 4662.985878970723, - 4774.541105289475, - 4878.285454719219, - 4964.828808754458, - 5028.534367771113, - 5067.953499976214, - 5084.957228325525, - 5084.405767400255, - 5071.700377104693, - 5051.170437565896, - 5025.0252119511915, - 4992.93051143352, - 4952.721704376556, - 4901.7775808770675, - 4838.491619145318, - 4763.62320331042, - 4680.461876055594, - 4594.482676106927, - 4511.977711642989, - 4438.500614249439, - 4377.292916199351, - 4328.944478281034, - 4291.391369460457, - 4261.088646043679, - 4234.795054115742, - 4210.8744314930145, - 4190.173826916745, - 4175.9220974479795, - 4172.457050957026, - 4183.7161237154905, - 4211.311963940076, - 4253.639815961264, - 4306.50225547135, - 4364.44673788135, - 4423.834661411394, - 4485.999118565708, - 4559.689745725377, - 4662.312628047665, - 4818.481191126553, - 5057.032659409653, - 5406.765114385903, - 5888.9878374731425, - 6515.887882421288 - ], - "flow:J19:branch47_seg0": [ - 0.5459058547991827, - 0.7159006245014429, - 0.9156170764475868, - 1.1388810749445246, - 1.377194589934367, - 1.6211790308300107, - 1.8617600563878436, - 2.0912216918030677, - 2.3036548370612526, - 2.4955541471355276, - 2.6650640990225085, - 2.8116168865429287, - 2.9354278642257015, - 3.036614662142344, - 3.1152827555791247, - 3.1713389221110555, - 3.204669155511789, - 3.2157254142476894, - 3.205417868420596, - 3.1754945739073763, - 3.1283549643974182, - 3.066646305191693, - 2.9931134665627175, - 2.910167401198458, - 2.8197842029724023, - 2.7235742239265446, - 2.622926914318989, - 2.5192884822432617, - 2.414317578558912, - 2.3098919307008927, - 2.207857532379852, - 2.1096904444082223, - 2.01597681465227, - 1.9260659883991382, - 1.837977447024329, - 1.7485666378791127, - 1.6540906500862729, - 1.550973429124188, - 1.4367343354410569, - 1.3105082761684947, - 1.1736146523133233, - 1.0293699598028903, - 0.8826292798114909, - 0.7390002297414354, - 0.6040067696979803, - 0.48217234744894455, - 0.3765056248265867, - 0.28852323719760437, - 0.21809749459801556, - 0.1641780537846743, - 0.12521077980207074, - 0.0994901327388288, - 0.08562069449504976, - 0.08234401859607363, - 0.08846305786590174, - 0.10262532524211893, - 0.12300930421504419, - 0.1473526722348873, - 0.1730564065180398, - 0.19750978912369524, - 0.2184409384012381, - 0.23436707994705763, - 0.24469243392648724, - 0.24971435233655961, - 0.25043084581308417, - 0.24805936408813833, - 0.2436861669884175, - 0.237941243839395, - 0.23087025959986593, - 0.22205793333499563, - 0.21089676136028446, - 0.19695250905738024, - 0.18026601736749137, - 0.16145977975355005, - 0.1417039143130724, - 0.12242657419959506, - 0.10496225289189845, - 0.09019199103110269, - 0.07840052623129685, - 0.06922403509820593, - 0.061911516193871446, - 0.055679641232503935, - 0.05004683141975811, - 0.04507810526707897, - 0.04140414258236669, - 0.03998968057562347, - 0.04178950261238646, - 0.04730009982829522, - 0.05634275456491731, - 0.06805810818331413, - 0.08121633319204942, - 0.09485037559238908, - 0.1089705118355655, - 0.12518539688059374, - 0.1470635603898152, - 0.17991094717813216, - 0.2302809100191388, - 0.3048127971799027, - 0.4088769834923617, - 0.5459058547991827 - ], - "pressure:J19:branch47_seg0": [ - 6515.887882421288, - 7284.6652580054415, - 8177.414053491435, - 9165.121180277862, - 10209.347306215064, - 11268.919940550877, - 12305.226467509183, - 13286.908231992586, - 14189.913321085594, - 15001.069622964445, - 15714.445024580233, - 16327.839650687854, - 16842.86669800883, - 17260.017667518183, - 17579.19494024575, - 17800.447688417713, - 17923.05585797401, - 17949.51309836162, - 17884.868702969976, - 17736.94805102581, - 17516.900414106447, - 17236.387739654285, - 16907.041218792077, - 16539.072269126245, - 16140.555204464768, - 15718.170541253521, - 15277.891381779029, - 14826.119723245361, - 14370.28555162776, - 13918.708135470995, - 13479.201232901414, - 13057.530700812, - 12655.287174293382, - 12268.237190135025, - 11886.554016578119, - 11495.670670577185, - 11079.211303754812, - 10622.02631018969, - 10114.877330830725, - 9555.972578409404, - 8952.904614548645, - 8322.078987900099, - 7685.673236695564, - 7068.339701215747, - 6493.333735221846, - 5979.377610339058, - 5537.680104475593, - 5173.2919973793705, - 4884.607266826159, - 4666.0000590553545, - 4510.700322985398, - 4411.338621901105, - 4362.0392469494445, - 4357.628769665174, - 4392.709682115087, - 4461.190376378355, - 4554.712208941323, - 4662.985878970723, - 4774.541105289475, - 4878.285454719219, - 4964.828808754458, - 5028.534367771113, - 5067.953499976214, - 5084.957228325525, - 5084.405767400255, - 5071.700377104693, - 5051.170437565896, - 5025.0252119511915, - 4992.93051143352, - 4952.721704376556, - 4901.7775808770675, - 4838.491619145318, - 4763.62320331042, - 4680.461876055594, - 4594.482676106927, - 4511.977711642989, - 4438.500614249439, - 4377.292916199351, - 4328.944478281034, - 4291.391369460457, - 4261.088646043679, - 4234.795054115742, - 4210.8744314930145, - 4190.173826916745, - 4175.9220974479795, - 4172.457050957026, - 4183.7161237154905, - 4211.311963940076, - 4253.639815961264, - 4306.50225547135, - 4364.44673788135, - 4423.834661411394, - 4485.999118565708, - 4559.689745725377, - 4662.312628047665, - 4818.481191126553, - 5057.032659409653, - 5406.765114385903, - 5888.9878374731425, - 6515.887882421288 - ], - "flow:branch29_seg0:J20": [ - 10.680237570599854, - 13.773433418753092, - 17.162667743321705, - 20.6821265609196, - 24.153026273204095, - 27.418291552449414, - 30.360085123137395, - 32.91188267238749, - 35.04716289174095, - 36.783437616916856, - 38.1555385192873, - 39.19710057265905, - 39.94214462311231, - 40.40357290658387, - 40.58564304034156, - 40.49080624096037, - 40.11805648164737, - 39.48733094785457, - 38.62722422840222, - 37.57772522680117, - 36.38939990055608, - 35.105443451257266, - 33.76294200678205, - 32.387014045257, - 30.99129834778626, - 29.585568180659227, - 28.180258887636, - 26.792133160972256, - 25.445163417689617, - 24.166718825594412, - 22.97840972532495, - 21.88752571512016, - 20.878615071023233, - 19.909272954743543, - 18.91681165616491, - 17.82738432332419, - 16.573610879227584, - 15.108621908337149, - 13.425868522577716, - 11.556923626676152, - 9.574535433450496, - 7.579349503046527, - 5.6804687736018185, - 3.9769871261240732, - 2.5426483634423964, - 1.4180358698062507, - 0.6016639633157315, - 0.07017553762019241, - -0.22170849090996836, - -0.32318988523079345, - -0.2734564194548478, - -0.10453182059928005, - 0.16564661242453504, - 0.5242068887441562, - 0.9550942558339688, - 1.4367002952675247, - 1.9355189156578068, - 2.410832860235068, - 2.8208751802482803, - 3.131844207204565, - 3.3236207140644876, - 3.3969764214659843, - 3.3706117127872313, - 3.273506320332366, - 3.140325702608269, - 2.9977191142355086, - 2.859527694036656, - 2.724893890840436, - 2.5807339365478232, - 2.4092702302041107, - 2.196647063389703, - 1.9393976334017387, - 1.6490606536731434, - 1.3484047748150674, - 1.0666429748467579, - 0.8303536999653262, - 0.6561098723947707, - 0.5450050180651039, - 0.48484369904073105, - 0.4543367676751692, - 0.43134516578230614, - 0.4023780887037648, - 0.36702746423724136, - 0.33866113410610116, - 0.33974170928025044, - 0.39229274639878486, - 0.5096654464046355, - 0.6886382186055382, - 0.9095648828088668, - 1.143969993409729, - 1.3652617615993707, - 1.565604801688129, - 1.768867312211072, - 2.0366474379061636, - 2.46694730555651, - 3.1774710167318942, - 4.285591806304218, - 5.888583004229429, - 8.02434941690331, - 10.680237570599854 - ], - "pressure:branch29_seg0:J20": [ - 9371.887196159378, - 10782.675939231347, - 12255.70309064999, - 13716.267437339999, - 15093.959835789403, - 16331.503692806553, - 17394.633619491666, - 18279.05340192079, - 18987.88965692095, - 19536.717888018848, - 19954.877861163208, - 20249.2190279301, - 20432.18556943848, - 20507.51396621198, - 20467.761741788843, - 20319.951830021226, - 20061.398910889697, - 19703.526442653638, - 19269.706795460796, - 18773.371693366804, - 18239.042172017424, - 17683.92458331224, - 17116.909175500845, - 16546.00851390765, - 15972.637037483082, - 15399.190566046618, - 14831.418691898103, - 14278.13738179271, - 13751.21615534764, - 13262.34014042744, - 12817.490756071276, - 12412.18693925651, - 12032.646053195831, - 11651.199642384952, - 11235.270796128674, - 10752.445775282831, - 10180.536716539167, - 9507.574766286109, - 8746.399289098415, - 7927.226482173723, - 7089.918200165837, - 6286.567490657003, - 5563.325023829497, - 4955.475240124231, - 4479.119341524897, - 4143.0449298006115, - 3930.432574646135, - 3820.2741447505277, - 3793.8471653252304, - 3824.994268926682, - 3903.315031322914, - 4020.385506239578, - 4169.73551665599, - 4350.332834859502, - 4552.688687406517, - 4765.100013485737, - 4971.377241184414, - 5151.950206400841, - 5290.302030588182, - 5377.165822182294, - 5410.025032368645, - 5395.1292822919295, - 5349.200001442094, - 5285.517176626169, - 5218.599796011289, - 5157.516828293925, - 5102.045359900223, - 5046.57250732434, - 4982.27105213633, - 4900.661551796352, - 4798.7653155120215, - 4678.735342232745, - 4550.649668204361, - 4427.993573204119, - 4323.54817912085, - 4246.428500191621, - 4199.480347153524, - 4177.620037812757, - 4170.448720336881, - 4167.878862139062, - 4160.84927675462, - 4147.363649224134, - 4132.587882663972, - 4126.44807234061, - 4140.611150779588, - 4182.910916605582, - 4254.632623672291, - 4349.201593425501, - 4451.712636395137, - 4549.133983699037, - 4633.259866974293, - 4708.7140781424805, - 4797.779224850152, - 4939.470689622517, - 5185.735713542237, - 5592.145182045888, - 6198.232132085597, - 7039.268757438424, - 8108.792685897258, - 9371.887196159378 - ], - "flow:J20:branch30_seg0": [ - 0.9515423952069478, - 1.2205557899890367, - 1.5104974367820807, - 1.8065008469777286, - 2.0930960420595586, - 2.3574398946071833, - 2.590621079558739, - 2.788535323801326, - 2.9502899046826587, - 3.0787253636395446, - 3.1777197236266614, - 3.250388036631389, - 3.2997492253811047, - 3.3265890135654663, - 3.3309481578157834, - 3.312930057106048, - 3.27230412649256, - 3.211036143763128, - 3.131817991430742, - 3.0382305969606938, - 2.934782848056197, - 2.8250260109174676, - 2.711870346223489, - 2.5971151123654903, - 2.481536450557396, - 2.3657166700731507, - 2.2504282472238333, - 2.1371188587634626, - 2.0279119058246122, - 1.9251753152111524, - 1.8306095904037865, - 1.7444965881864771, - 1.6650078142971205, - 1.5878959111961197, - 1.507313083250981, - 1.416693181005784, - 1.310427025890437, - 1.1850128106015012, - 1.0408483879670758, - 0.8816593293656706, - 0.7146589183463345, - 0.549197945894426, - 0.39484360938476953, - 0.2597981482330782, - 0.14964671512113353, - 0.06691577558494759, - 0.010301300609600734, - -0.023037602460215547, - -0.03760897720337447, - -0.037928177331068125, - -0.02719798264434039, - -0.007933990215267982, - 0.018690433565620942, - 0.05186210947527916, - 0.09028250868905663, - 0.13210488002344647, - 0.1743344615492568, - 0.2133936828033425, - 0.2457501487910943, - 0.26875450071428564, - 0.28106610676174953, - 0.2832776549032637, - 0.2775145248143819, - 0.26657992369674155, - 0.2536164391212886, - 0.2407976373152076, - 0.22900391072798232, - 0.2177855912523261, - 0.20568006243891848, - 0.19097288197790688, - 0.17249481885268428, - 0.15013658628403975, - 0.12520356413326814, - 0.09992278405736711, - 0.07695850237780147, - 0.05855354247541593, - 0.045906565016116174, - 0.03874132514263628, - 0.035651931401493114, - 0.03455593165977855, - 0.033468876075081734, - 0.03137960714434173, - 0.028541200891059382, - 0.026426080161612426, - 0.027206206015454874, - 0.03281378653859718, - 0.044234338814099695, - 0.06084832338420218, - 0.08057521790855843, - 0.10072970455104577, - 0.11902277100921488, - 0.13512455388201827, - 0.1517328249783914, - 0.17493097540410132, - 0.21388116128763307, - 0.2790906042630875, - 0.3805032447947978, - 0.5258896554001926, - 0.717085196489188, - 0.9515423952069478 - ], - "pressure:J20:branch30_seg0": [ - 9371.887196159378, - 10782.675939231347, - 12255.70309064999, - 13716.267437339999, - 15093.959835789403, - 16331.503692806553, - 17394.633619491666, - 18279.05340192079, - 18987.88965692095, - 19536.717888018848, - 19954.877861163208, - 20249.2190279301, - 20432.18556943848, - 20507.51396621198, - 20467.761741788843, - 20319.951830021226, - 20061.398910889697, - 19703.526442653638, - 19269.706795460796, - 18773.371693366804, - 18239.042172017424, - 17683.92458331224, - 17116.909175500845, - 16546.00851390765, - 15972.637037483082, - 15399.190566046618, - 14831.418691898103, - 14278.13738179271, - 13751.21615534764, - 13262.34014042744, - 12817.490756071276, - 12412.18693925651, - 12032.646053195831, - 11651.199642384952, - 11235.270796128674, - 10752.445775282831, - 10180.536716539167, - 9507.574766286109, - 8746.399289098415, - 7927.226482173723, - 7089.918200165837, - 6286.567490657003, - 5563.325023829497, - 4955.475240124231, - 4479.119341524897, - 4143.0449298006115, - 3930.432574646135, - 3820.2741447505277, - 3793.8471653252304, - 3824.994268926682, - 3903.315031322914, - 4020.385506239578, - 4169.73551665599, - 4350.332834859502, - 4552.688687406517, - 4765.100013485737, - 4971.377241184414, - 5151.950206400841, - 5290.302030588182, - 5377.165822182294, - 5410.025032368645, - 5395.1292822919295, - 5349.200001442094, - 5285.517176626169, - 5218.599796011289, - 5157.516828293925, - 5102.045359900223, - 5046.57250732434, - 4982.27105213633, - 4900.661551796352, - 4798.7653155120215, - 4678.735342232745, - 4550.649668204361, - 4427.993573204119, - 4323.54817912085, - 4246.428500191621, - 4199.480347153524, - 4177.620037812757, - 4170.448720336881, - 4167.878862139062, - 4160.84927675462, - 4147.363649224134, - 4132.587882663972, - 4126.44807234061, - 4140.611150779588, - 4182.910916605582, - 4254.632623672291, - 4349.201593425501, - 4451.712636395137, - 4549.133983699037, - 4633.259866974293, - 4708.7140781424805, - 4797.779224850152, - 4939.470689622517, - 5185.735713542237, - 5592.145182045888, - 6198.232132085597, - 7039.268757438424, - 8108.792685897258, - 9371.887196159378 - ], - "flow:J20:branch33_seg0": [ - 2.892460254473704, - 3.73018150601871, - 4.644659236491027, - 5.589755074692102, - 6.516273534415989, - 7.381587044982141, - 8.154455381559567, - 8.818131900427197, - 9.366926822054168, - 9.80739953102206, - 10.150419872840235, - 10.406210062788743, - 10.584657596916164, - 10.6893998276189, - 10.721506443956686, - 10.681356686308963, - 10.568430166094904, - 10.387989080921827, - 10.147762208591722, - 9.858712410959168, - 9.53464513317238, - 9.187273297523692, - 8.826524808161782, - 8.458902945421556, - 8.087690985413213, - 7.7150940044332135, - 7.343548266432557, - 6.97733308052251, - 6.622808819965839, - 6.287352022147993, - 5.976760351883386, - 5.692907761000631, - 5.43133078536995, - 5.180142915588901, - 4.9219042368772685, - 4.636210321131906, - 4.304592045734982, - 3.9144609404626154, - 3.4645052238050535, - 2.9640071716185927, - 2.4336039926201396, - 1.9014444058767883, - 1.3977057137611937, - 0.9494748068513797, - 0.5765234922281012, - 0.289111836060955, - 0.085871292140844, - -0.04060887033280267, - -0.10364601676517336, - -0.11728409212321132, - -0.09253588592310719, - -0.03813239421073828, - 0.04134035298354807, - 0.14272640724683808, - 0.26204274202884686, - 0.3937218532854604, - 0.5288100993236897, - 0.6563270338792242, - 0.7649889021096216, - 0.8457506894550251, - 0.8933795670563899, - 0.9084973607384061, - 0.8966498075162692, - 0.8661769036538836, - 0.8268701269663924, - 0.7861486316210686, - 0.7477400307967127, - 0.7111935465989244, - 0.6726246483629433, - 0.6268716935715766, - 0.5699283432058272, - 0.5007825822249783, - 0.4226489892949724, - 0.34190391388683034, - 0.2667027935845557, - 0.20440871624346216, - 0.1595196728717139, - 0.13215769068932895, - 0.11873831628024639, - 0.11313235248885326, - 0.1090584772944504, - 0.10272491605769364, - 0.0940659882104244, - 0.08690547219882279, - 0.08760948461871482, - 0.10238519406181218, - 0.13497097820347242, - 0.184409910564253, - 0.24514013541709626, - 0.3091273521629016, - 0.36888714463755296, - 0.42219593828668167, - 0.47567279266425705, - 0.5464185321344613, - 0.6615379887308197, - 0.8534502498988941, - 1.1543314891008196, - 1.5903493813525749, - 2.1711947354285606, - 2.892460254473704 - ], - "pressure:J20:branch33_seg0": [ - 9371.887196159378, - 10782.675939231347, - 12255.70309064999, - 13716.267437339999, - 15093.959835789403, - 16331.503692806553, - 17394.633619491666, - 18279.05340192079, - 18987.88965692095, - 19536.717888018848, - 19954.877861163208, - 20249.2190279301, - 20432.18556943848, - 20507.51396621198, - 20467.761741788843, - 20319.951830021226, - 20061.398910889697, - 19703.526442653638, - 19269.706795460796, - 18773.371693366804, - 18239.042172017424, - 17683.92458331224, - 17116.909175500845, - 16546.00851390765, - 15972.637037483082, - 15399.190566046618, - 14831.418691898103, - 14278.13738179271, - 13751.21615534764, - 13262.34014042744, - 12817.490756071276, - 12412.18693925651, - 12032.646053195831, - 11651.199642384952, - 11235.270796128674, - 10752.445775282831, - 10180.536716539167, - 9507.574766286109, - 8746.399289098415, - 7927.226482173723, - 7089.918200165837, - 6286.567490657003, - 5563.325023829497, - 4955.475240124231, - 4479.119341524897, - 4143.0449298006115, - 3930.432574646135, - 3820.2741447505277, - 3793.8471653252304, - 3824.994268926682, - 3903.315031322914, - 4020.385506239578, - 4169.73551665599, - 4350.332834859502, - 4552.688687406517, - 4765.100013485737, - 4971.377241184414, - 5151.950206400841, - 5290.302030588182, - 5377.165822182294, - 5410.025032368645, - 5395.1292822919295, - 5349.200001442094, - 5285.517176626169, - 5218.599796011289, - 5157.516828293925, - 5102.045359900223, - 5046.57250732434, - 4982.27105213633, - 4900.661551796352, - 4798.7653155120215, - 4678.735342232745, - 4550.649668204361, - 4427.993573204119, - 4323.54817912085, - 4246.428500191621, - 4199.480347153524, - 4177.620037812757, - 4170.448720336881, - 4167.878862139062, - 4160.84927675462, - 4147.363649224134, - 4132.587882663972, - 4126.44807234061, - 4140.611150779588, - 4182.910916605582, - 4254.632623672291, - 4349.201593425501, - 4451.712636395137, - 4549.133983699037, - 4633.259866974293, - 4708.7140781424805, - 4797.779224850152, - 4939.470689622517, - 5185.735713542237, - 5592.145182045888, - 6198.232132085597, - 7039.268757438424, - 8108.792685897258, - 9371.887196159378 - ], - "flow:J20:branch42_seg0": [ - 1.1788189761780254, - 1.5144474711472626, - 1.8773532289437231, - 2.2490175397984156, - 2.6099699575303514, - 2.9438953125026908, - 3.2393272074706174, - 3.4907769478103314, - 3.696789130821703, - 3.8607859956758563, - 3.987483469218687, - 4.080832952554644, - 4.14470071708548, - 4.180143609662702, - 4.187320704318561, - 4.166345716646172, - 4.116925026379083, - 4.04144061139457, - 3.943160059297342, - 3.8265506684796002, - 3.697238169346438, - 3.559712269426799, - 3.4177067156372294, - 3.273553935161249, - 3.128296088599681, - 2.9826910570007255, - 2.8376900162423087, - 2.6950706242762457, - 2.5574575674321838, - 2.427817593488633, - 2.3083256726963026, - 2.1994552088008, - 2.0990479203918646, - 2.0019301777790623, - 1.9008745798634845, - 1.7876747016042656, - 1.6552049872683212, - 1.498912537402962, - 1.3190475984514172, - 1.1200127715476487, - 0.9106559535203788, - 0.7025757524318527, - 0.5077595383894449, - 0.3366123180075296, - 0.19636516405106394, - 0.09038083165867912, - 0.017280945802514547, - -0.026333073082488834, - -0.04606345812580909, - -0.04755471167412025, - -0.034905106570158086, - -0.011364513163859977, - 0.021545281846173114, - 0.06275110822712869, - 0.11064659011280019, - 0.16297256257808765, - 0.21602111121719733, - 0.26534303318601427, - 0.3064954006328741, - 0.3360896897025213, - 0.35232826886573176, - 0.35584660809968904, - 0.3491923372504923, - 0.33583220640231426, - 0.3197102568087789, - 0.303608372429749, - 0.28872607406311024, - 0.27459585763726724, - 0.25944840037610156, - 0.24114923175505937, - 0.21818867283546567, - 0.19035868908452183, - 0.15920439845794113, - 0.1274506490198935, - 0.09842141312189995, - 0.07496469976090528, - 0.05866032781344586, - 0.049255799376362784, - 0.04507953569135114, - 0.043550420129812153, - 0.04216782602375144, - 0.03959963415418029, - 0.03607288340677177, - 0.03335297333474485, - 0.034123285285352314, - 0.040824025858908715, - 0.054769274993036035, - 0.07527975860470407, - 0.09984734702125059, - 0.12514242719528634, - 0.14824994943363878, - 0.1686203420431966, - 0.1894282303430181, - 0.21807991026900353, - 0.26587175719866735, - 0.3458964878220606, - 0.47073733989260164, - 0.6502859375901103, - 0.8872281345561975, - 1.1788189761780254 - ], - "pressure:J20:branch42_seg0": [ - 9371.887196159378, - 10782.675939231347, - 12255.70309064999, - 13716.267437339999, - 15093.959835789403, - 16331.503692806553, - 17394.633619491666, - 18279.05340192079, - 18987.88965692095, - 19536.717888018848, - 19954.877861163208, - 20249.2190279301, - 20432.18556943848, - 20507.51396621198, - 20467.761741788843, - 20319.951830021226, - 20061.398910889697, - 19703.526442653638, - 19269.706795460796, - 18773.371693366804, - 18239.042172017424, - 17683.92458331224, - 17116.909175500845, - 16546.00851390765, - 15972.637037483082, - 15399.190566046618, - 14831.418691898103, - 14278.13738179271, - 13751.21615534764, - 13262.34014042744, - 12817.490756071276, - 12412.18693925651, - 12032.646053195831, - 11651.199642384952, - 11235.270796128674, - 10752.445775282831, - 10180.536716539167, - 9507.574766286109, - 8746.399289098415, - 7927.226482173723, - 7089.918200165837, - 6286.567490657003, - 5563.325023829497, - 4955.475240124231, - 4479.119341524897, - 4143.0449298006115, - 3930.432574646135, - 3820.2741447505277, - 3793.8471653252304, - 3824.994268926682, - 3903.315031322914, - 4020.385506239578, - 4169.73551665599, - 4350.332834859502, - 4552.688687406517, - 4765.100013485737, - 4971.377241184414, - 5151.950206400841, - 5290.302030588182, - 5377.165822182294, - 5410.025032368645, - 5395.1292822919295, - 5349.200001442094, - 5285.517176626169, - 5218.599796011289, - 5157.516828293925, - 5102.045359900223, - 5046.57250732434, - 4982.27105213633, - 4900.661551796352, - 4798.7653155120215, - 4678.735342232745, - 4550.649668204361, - 4427.993573204119, - 4323.54817912085, - 4246.428500191621, - 4199.480347153524, - 4177.620037812757, - 4170.448720336881, - 4167.878862139062, - 4160.84927675462, - 4147.363649224134, - 4132.587882663972, - 4126.44807234061, - 4140.611150779588, - 4182.910916605582, - 4254.632623672291, - 4349.201593425501, - 4451.712636395137, - 4549.133983699037, - 4633.259866974293, - 4708.7140781424805, - 4797.779224850152, - 4939.470689622517, - 5185.735713542237, - 5592.145182045888, - 6198.232132085597, - 7039.268757438424, - 8108.792685897258, - 9371.887196159378 - ], - "flow:J20:branch48_seg0": [ - 0.906246292115497, - 1.1644704077822836, - 1.4441015476312085, - 1.7307268073345732, - 2.009454015768846, - 2.2676949500368644, - 2.4965001439574, - 2.6913931031985956, - 2.8514201909672203, - 2.9789191724266435, - 3.0774794332610544, - 3.1502741723671046, - 3.200138440970984, - 3.2280360472761305, - 3.234107121923361, - 3.218396031645161, - 3.18077169416516, - 3.1229809760381824, - 3.0475413549637174, - 2.9579055869030975, - 2.8583221513190025, - 2.752313340573601, - 2.6427631052419005, - 2.531480633668682, - 2.4193218876133695, - 2.3068752853741756, - 2.194888002210173, - 2.084721664606242, - 1.9783842163023528, - 1.8781326781070085, - 1.7856717886650253, - 1.7013584916331679, - 1.6235666364098922, - 1.5483886862149054, - 1.470275690340356, - 1.3829297226695787, - 1.2808581134335635, - 1.1605454352121012, - 1.0220539833009503, - 0.8687504695772494, - 0.7073709688752619, - 0.5467539516071114, - 0.3961644146903829, - 0.26364392733070724, - 0.15478186508915742, - 0.07226856285245671, - 0.015175449295211724, - -0.019144535785692002, - -0.03491898174664009, - -0.03646092578116347, - -0.027016425868291442, - -0.009040220060237941, - 0.016192683214078612, - 0.04784283416667985, - 0.08471106469197076, - 0.12500138732892332, - 0.16590648038203365, - 0.20401578596076625, - 0.23590678243048296, - 0.2589330769108517, - 0.2717332412088041, - 0.2747198454818429, - 0.26980098004088915, - 0.2596657902150178, - 0.24730743716287526, - 0.23488782636218175, - 0.22337089718581674, - 0.21241965997838472, - 0.20070247400368244, - 0.18659274035904697, - 0.16892896207779515, - 0.14753100359222238, - 0.12355174530046714, - 0.09907839839262778, - 0.07664972910042693, - 0.05845715265538149, - 0.045729813884658764, - 0.038327599508220865, - 0.03496513087941006, - 0.03368910612307208, - 0.03259443366431248, - 0.030628252699990123, - 0.02793958558446423, - 0.02586145784315262, - 0.02643024075867651, - 0.031530979669212526, - 0.04216815166039945, - 0.05786275404137196, - 0.07672991567368674, - 0.09621123902625019, - 0.114083136130206, - 0.1299019246431423, - 0.14606469709225492, - 0.16820872071212462, - 0.20497863744213518, - 0.26643963121665654, - 0.3622310435095391, - 0.5000295286126923, - 0.6821139161458166, - 0.906246292115497 - ], - "pressure:J20:branch48_seg0": [ - 9371.887196159378, - 10782.675939231347, - 12255.70309064999, - 13716.267437339999, - 15093.959835789403, - 16331.503692806553, - 17394.633619491666, - 18279.05340192079, - 18987.88965692095, - 19536.717888018848, - 19954.877861163208, - 20249.2190279301, - 20432.18556943848, - 20507.51396621198, - 20467.761741788843, - 20319.951830021226, - 20061.398910889697, - 19703.526442653638, - 19269.706795460796, - 18773.371693366804, - 18239.042172017424, - 17683.92458331224, - 17116.909175500845, - 16546.00851390765, - 15972.637037483082, - 15399.190566046618, - 14831.418691898103, - 14278.13738179271, - 13751.21615534764, - 13262.34014042744, - 12817.490756071276, - 12412.18693925651, - 12032.646053195831, - 11651.199642384952, - 11235.270796128674, - 10752.445775282831, - 10180.536716539167, - 9507.574766286109, - 8746.399289098415, - 7927.226482173723, - 7089.918200165837, - 6286.567490657003, - 5563.325023829497, - 4955.475240124231, - 4479.119341524897, - 4143.0449298006115, - 3930.432574646135, - 3820.2741447505277, - 3793.8471653252304, - 3824.994268926682, - 3903.315031322914, - 4020.385506239578, - 4169.73551665599, - 4350.332834859502, - 4552.688687406517, - 4765.100013485737, - 4971.377241184414, - 5151.950206400841, - 5290.302030588182, - 5377.165822182294, - 5410.025032368645, - 5395.1292822919295, - 5349.200001442094, - 5285.517176626169, - 5218.599796011289, - 5157.516828293925, - 5102.045359900223, - 5046.57250732434, - 4982.27105213633, - 4900.661551796352, - 4798.7653155120215, - 4678.735342232745, - 4550.649668204361, - 4427.993573204119, - 4323.54817912085, - 4246.428500191621, - 4199.480347153524, - 4177.620037812757, - 4170.448720336881, - 4167.878862139062, - 4160.84927675462, - 4147.363649224134, - 4132.587882663972, - 4126.44807234061, - 4140.611150779588, - 4182.910916605582, - 4254.632623672291, - 4349.201593425501, - 4451.712636395137, - 4549.133983699037, - 4633.259866974293, - 4708.7140781424805, - 4797.779224850152, - 4939.470689622517, - 5185.735713542237, - 5592.145182045888, - 6198.232132085597, - 7039.268757438424, - 8108.792685897258, - 9371.887196159378 - ], - "flow:J20:branch68_seg0": [ - 0.6361298206124528, - 0.8147785901654366, - 1.0067532202223832, - 1.2021715730179046, - 1.3908423979301137, - 1.5643860063095612, - 1.717060721831799, - 1.846310031197076, - 1.9517149286372604, - 2.0352175780466206, - 2.0994396209776043, - 2.1464206609423098, - 2.1781139332010357, - 2.19499819464484, - 2.197052412794901, - 2.1843490591313013, - 2.156740483742307, - 2.1155772425747625, - 2.0626807169017387, - 2.000437032256623, - 1.931843431324305, - 1.859222192698927, - 1.7844615129469932, - 1.7087100958669796, - 1.6324477467274148, - 1.5560484577822993, - 1.480031765325633, - 1.405374928906564, - 1.3335013931452726, - 1.2659765639941745, - 1.2039021745245124, - 1.1474045078192048, - 1.095205182715618, - 1.0444212336800707, - 0.9911363762805264, - 0.930997623242058, - 0.8603436713287383, - 0.7769462955229632, - 0.6811925319571145, - 0.5756767457730952, - 0.46526814294800845, - 0.356206425997065, - 0.2548158029765955, - 0.16645489451215648, - 0.0947033623376513, - 0.04113016074551052, - 0.004740701219557989, - -0.016410776686431865, - -0.02533946243979995, - -0.02502724595639063, - -0.01754922894856395, - -0.004524128636909299, - 0.013302783324175272, - 0.03541568976649509, - 0.06094549678401739, - 0.08864241731265278, - 0.11650188871486598, - 0.14214204245740505, - 0.16323696936022086, - 0.17806727153663068, - 0.18580820962607097, - 0.18690558218587386, - 0.18281883317512787, - 0.17542507900891044, - 0.16679962114827848, - 0.1583466202350013, - 0.15060086696948918, - 0.14321740067920471, - 0.13519766415274817, - 0.1254026868043919, - 0.11308228431561251, - 0.0982009410957066, - 0.08166835847277905, - 0.06498832148489342, - 0.0499299287994396, - 0.03795638806610994, - 0.029820031180795636, - 0.02529059336982395, - 0.02339491300482726, - 0.022741549757442, - 0.022027014110545796, - 0.02061705873484475, - 0.01872393645849442, - 0.01736135662930134, - 0.0179833277448617, - 0.021857520570568206, - 0.02959378947931246, - 0.040732975498424605, - 0.053851415870425565, - 0.06715636979348799, - 0.07915825084710523, - 0.08970984068677908, - 0.10069957148111369, - 0.1162582619535891, - 0.14253795343514913, - 0.18651768495015286, - 0.2547169341964835, - 0.35219552939258986, - 0.4799608672021843, - 0.6361298206124528 - ], - "pressure:J20:branch68_seg0": [ - 9371.887196159378, - 10782.675939231347, - 12255.70309064999, - 13716.267437339999, - 15093.959835789403, - 16331.503692806553, - 17394.633619491666, - 18279.05340192079, - 18987.88965692095, - 19536.717888018848, - 19954.877861163208, - 20249.2190279301, - 20432.18556943848, - 20507.51396621198, - 20467.761741788843, - 20319.951830021226, - 20061.398910889697, - 19703.526442653638, - 19269.706795460796, - 18773.371693366804, - 18239.042172017424, - 17683.92458331224, - 17116.909175500845, - 16546.00851390765, - 15972.637037483082, - 15399.190566046618, - 14831.418691898103, - 14278.13738179271, - 13751.21615534764, - 13262.34014042744, - 12817.490756071276, - 12412.18693925651, - 12032.646053195831, - 11651.199642384952, - 11235.270796128674, - 10752.445775282831, - 10180.536716539167, - 9507.574766286109, - 8746.399289098415, - 7927.226482173723, - 7089.918200165837, - 6286.567490657003, - 5563.325023829497, - 4955.475240124231, - 4479.119341524897, - 4143.0449298006115, - 3930.432574646135, - 3820.2741447505277, - 3793.8471653252304, - 3824.994268926682, - 3903.315031322914, - 4020.385506239578, - 4169.73551665599, - 4350.332834859502, - 4552.688687406517, - 4765.100013485737, - 4971.377241184414, - 5151.950206400841, - 5290.302030588182, - 5377.165822182294, - 5410.025032368645, - 5395.1292822919295, - 5349.200001442094, - 5285.517176626169, - 5218.599796011289, - 5157.516828293925, - 5102.045359900223, - 5046.57250732434, - 4982.27105213633, - 4900.661551796352, - 4798.7653155120215, - 4678.735342232745, - 4550.649668204361, - 4427.993573204119, - 4323.54817912085, - 4246.428500191621, - 4199.480347153524, - 4177.620037812757, - 4170.448720336881, - 4167.878862139062, - 4160.84927675462, - 4147.363649224134, - 4132.587882663972, - 4126.44807234061, - 4140.611150779588, - 4182.910916605582, - 4254.632623672291, - 4349.201593425501, - 4451.712636395137, - 4549.133983699037, - 4633.259866974293, - 4708.7140781424805, - 4797.779224850152, - 4939.470689622517, - 5185.735713542237, - 5592.145182045888, - 6198.232132085597, - 7039.268757438424, - 8108.792685897258, - 9371.887196159378 - ], - "flow:J20:branch85_seg0": [ - 2.1672937778087533, - 2.8298503904934393, - 3.5853362589728865, - 4.402207570273037, - 5.242650250757686, - 6.068767536115526, - 6.847443912304885, - 7.554124413141481, - 8.173649763697126, - 8.700751539598965, - 9.13669494784862, - 9.486217846886964, - 9.755567209202935, - 9.949041454723845, - 10.069371876644404, - 10.118067770362948, - 10.095903764791887, - 10.006122165354121, - 9.853833650436652, - 9.646861909607585, - 9.395375677929204, - 9.109686142096908, - 8.799530469500851, - 8.472704874671685, - 8.134771938459433, - 7.78977516552958, - 7.441134806324717, - 7.092813808361275, - 6.749907773802184, - 6.418405997363255, - 6.1039302418406685, - 5.810030954061684, - 5.536286529578082, - 5.277017932393074, - 5.021444881624331, - 4.7549945992022975, - 4.462185436573029, - 4.129801685782016, - 3.750841864770918, - 3.3260151530028774, - 2.8650993313645245, - 2.3854657115674343, - 1.9092707740653838, - 1.4596150370090852, - 1.0568805894572222, - 0.7159153379701317, - 0.44372416031615397, - 0.24089965586000944, - 0.10203862705788493, - 0.018681539236246013, - -0.018103831612422194, - -0.016553114339720443, - 0.017156302168185356, - 0.07826136910573046, - 0.16233545133224989, - 0.2642705333843264, - 0.37715149638957796, - 0.49238754911223687, - 0.600472388023525, - 0.6925287653882121, - 0.7617937398181487, - 0.8051902033344767, - 0.8235360970596982, - 0.8209158503234036, - 0.80360847537927, - 0.7778359136399073, - 0.7482734170038284, - 0.7169793847850675, - 0.6832740538740685, - 0.6446545328033526, - 0.5982760499309246, - 0.5424748552454377, - 0.4780310603476024, - 0.40826381388026434, - 0.3384833815521254, - 0.27454339518819904, - 0.22126135989049509, - 0.18101994225056672, - 0.1533790611954789, - 0.13543082426590897, - 0.12308238399971135, - 0.11276774532465823, - 0.10283206882369297, - 0.09426001747242635, - 0.09037654041058767, - 0.09550474387769542, - 0.11329300013526923, - 0.14492912663461702, - 0.18843933778709204, - 0.23923038571376656, - 0.2918179573898355, - 0.3427948677741137, - 0.393811743543272, - 0.4537372580064679, - 0.5395040815596157, - 0.674245096617674, - 0.884019405798663, - 1.1935093189796795, - 1.6192036240206955, - 2.1672937778087533 - ], - "pressure:J20:branch85_seg0": [ - 9371.887196159378, - 10782.675939231347, - 12255.70309064999, - 13716.267437339999, - 15093.959835789403, - 16331.503692806553, - 17394.633619491666, - 18279.05340192079, - 18987.88965692095, - 19536.717888018848, - 19954.877861163208, - 20249.2190279301, - 20432.18556943848, - 20507.51396621198, - 20467.761741788843, - 20319.951830021226, - 20061.398910889697, - 19703.526442653638, - 19269.706795460796, - 18773.371693366804, - 18239.042172017424, - 17683.92458331224, - 17116.909175500845, - 16546.00851390765, - 15972.637037483082, - 15399.190566046618, - 14831.418691898103, - 14278.13738179271, - 13751.21615534764, - 13262.34014042744, - 12817.490756071276, - 12412.18693925651, - 12032.646053195831, - 11651.199642384952, - 11235.270796128674, - 10752.445775282831, - 10180.536716539167, - 9507.574766286109, - 8746.399289098415, - 7927.226482173723, - 7089.918200165837, - 6286.567490657003, - 5563.325023829497, - 4955.475240124231, - 4479.119341524897, - 4143.0449298006115, - 3930.432574646135, - 3820.2741447505277, - 3793.8471653252304, - 3824.994268926682, - 3903.315031322914, - 4020.385506239578, - 4169.73551665599, - 4350.332834859502, - 4552.688687406517, - 4765.100013485737, - 4971.377241184414, - 5151.950206400841, - 5290.302030588182, - 5377.165822182294, - 5410.025032368645, - 5395.1292822919295, - 5349.200001442094, - 5285.517176626169, - 5218.599796011289, - 5157.516828293925, - 5102.045359900223, - 5046.57250732434, - 4982.27105213633, - 4900.661551796352, - 4798.7653155120215, - 4678.735342232745, - 4550.649668204361, - 4427.993573204119, - 4323.54817912085, - 4246.428500191621, - 4199.480347153524, - 4177.620037812757, - 4170.448720336881, - 4167.878862139062, - 4160.84927675462, - 4147.363649224134, - 4132.587882663972, - 4126.44807234061, - 4140.611150779588, - 4182.910916605582, - 4254.632623672291, - 4349.201593425501, - 4451.712636395137, - 4549.133983699037, - 4633.259866974293, - 4708.7140781424805, - 4797.779224850152, - 4939.470689622517, - 5185.735713542237, - 5592.145182045888, - 6198.232132085597, - 7039.268757438424, - 8108.792685897258, - 9371.887196159378 - ], - "flow:J20:branch105_seg0": [ - 1.0622508237167234, - 1.366252753249904, - 1.6960481428043752, - 2.034735433921344, - 2.364664710807228, - 2.670850775089834, - 2.9425808651633294, - 3.1744357757271002, - 3.365040673928831, - 3.5171286524024366, - 3.6348759056351634, - 3.722007369927073, - 3.781955951149181, - 3.815876389512774, - 3.8239876065122407, - 3.806357761407257, - 3.762807096990182, - 3.6953625018070366, - 3.6069357523598318, - 3.501576637549519, - 3.384300685311855, - 3.259268586318868, - 3.1299302279002563, - 2.998466115736593, - 2.865917434625851, - 2.732997315687797, - 2.600576433407935, - 2.4702423621472636, - 2.344345724017442, - 2.2255554125596664, - 2.1159014900632083, - 2.015878476750907, - 1.9236433569099327, - 1.8346561564002781, - 1.7424314034799766, - 1.6395466695657204, - 1.5194664670743834, - 1.3779401546372438, - 1.2149166103254005, - 1.0342100529534726, - 0.8436595196729838, - 0.6536450620692434, - 0.4750899974387682, - 0.3175578438508765, - 0.18779182192206434, - 0.08907319943581386, - 0.0204363178926572, - -0.021124490718898416, - -0.04058639726683336, - -0.04303935662570273, - -0.0323436244647736, - -0.011472442033323055, - 0.018059573149088227, - 0.05522820475888153, - 0.09861400041895155, - 0.14614307452214492, - 0.19451670737937307, - 0.23972388069712705, - 0.2777156296357914, - 0.30533550819577576, - 0.3208993218382091, - 0.3248404221489912, - 0.3193569067491533, - 0.30758380774029676, - 0.29306652144849654, - 0.2783892126834754, - 0.2647385640696911, - 0.2517723081006958, - 0.23795286959874695, - 0.22136704675966384, - 0.20061749936734996, - 0.17545364466228972, - 0.14718953036600393, - 0.11824963024615412, - 0.09162495216887509, - 0.06992501915872842, - 0.05464570011154026, - 0.04566600875311836, - 0.0415259580387456, - 0.03993223986463538, - 0.03862282932300871, - 0.03632364232206382, - 0.03316107337507911, - 0.030664563296498908, - 0.031219265079919453, - 0.03705878570935699, - 0.049417012236266, - 0.06778008011530208, - 0.08997121739468335, - 0.11299475743552634, - 0.13419504384615993, - 0.15297108488239453, - 0.17203969110095302, - 0.1979377309572239, - 0.24077005283024033, - 0.31237303137774286, - 0.42421276747611225, - 0.5854310913661999, - 0.7988873597604927, - 1.0622508237167234 - ], - "pressure:J20:branch105_seg0": [ - 9371.887196159378, - 10782.675939231347, - 12255.70309064999, - 13716.267437339999, - 15093.959835789403, - 16331.503692806553, - 17394.633619491666, - 18279.05340192079, - 18987.88965692095, - 19536.717888018848, - 19954.877861163208, - 20249.2190279301, - 20432.18556943848, - 20507.51396621198, - 20467.761741788843, - 20319.951830021226, - 20061.398910889697, - 19703.526442653638, - 19269.706795460796, - 18773.371693366804, - 18239.042172017424, - 17683.92458331224, - 17116.909175500845, - 16546.00851390765, - 15972.637037483082, - 15399.190566046618, - 14831.418691898103, - 14278.13738179271, - 13751.21615534764, - 13262.34014042744, - 12817.490756071276, - 12412.18693925651, - 12032.646053195831, - 11651.199642384952, - 11235.270796128674, - 10752.445775282831, - 10180.536716539167, - 9507.574766286109, - 8746.399289098415, - 7927.226482173723, - 7089.918200165837, - 6286.567490657003, - 5563.325023829497, - 4955.475240124231, - 4479.119341524897, - 4143.0449298006115, - 3930.432574646135, - 3820.2741447505277, - 3793.8471653252304, - 3824.994268926682, - 3903.315031322914, - 4020.385506239578, - 4169.73551665599, - 4350.332834859502, - 4552.688687406517, - 4765.100013485737, - 4971.377241184414, - 5151.950206400841, - 5290.302030588182, - 5377.165822182294, - 5410.025032368645, - 5395.1292822919295, - 5349.200001442094, - 5285.517176626169, - 5218.599796011289, - 5157.516828293925, - 5102.045359900223, - 5046.57250732434, - 4982.27105213633, - 4900.661551796352, - 4798.7653155120215, - 4678.735342232745, - 4550.649668204361, - 4427.993573204119, - 4323.54817912085, - 4246.428500191621, - 4199.480347153524, - 4177.620037812757, - 4170.448720336881, - 4167.878862139062, - 4160.84927675462, - 4147.363649224134, - 4132.587882663972, - 4126.44807234061, - 4140.611150779588, - 4182.910916605582, - 4254.632623672291, - 4349.201593425501, - 4451.712636395137, - 4549.133983699037, - 4633.259866974293, - 4708.7140781424805, - 4797.779224850152, - 4939.470689622517, - 5185.735713542237, - 5592.145182045888, - 6198.232132085597, - 7039.268757438424, - 8108.792685897258, - 9371.887196159378 - ], - "flow:J20:branch123_seg0": [ - 0.8854952304877499, - 1.13289650990702, - 1.3979186714740217, - 1.6670117149044978, - 1.9260753639343204, - 2.163670032805619, - 2.3720958112910524, - 2.548175177084384, - 2.691331476951999, - 2.804509784104733, - 2.8914255458792826, - 2.954749470560832, - 2.99726154920542, - 3.0194883695792165, - 3.0213487163756314, - 3.0030031583525014, - 2.9641741229912824, - 2.906822226000946, - 2.8334924944204714, - 2.7474503840848685, - 2.652891804096699, - 2.552941611701003, - 2.4501548211695447, - 2.3460803323647634, - 2.2413158157898985, - 2.1363702247782905, - 2.0319613504688414, - 1.929457833388696, - 1.8308460171997285, - 1.7383032427225282, - 1.6533084152480664, - 1.5759937268672835, - 1.5045268453507743, - 1.4348199414911287, - 1.3614314044479858, - 1.278337504902575, - 1.1805331319241275, - 1.065002048715745, - 0.9324623219997842, - 0.7865919328375475, - 0.634218606102866, - 0.4840602476026047, - 0.34481892289527966, - 0.2238301503292619, - 0.1259553532360027, - 0.05324016549775602, - 0.004133796039191217, - -0.024064769173287672, - -0.03558382442022297, - -0.034576914975382914, - -0.023804333423191028, - -0.0055110179392231, - 0.019359202173665425, - 0.05011916599712343, - 0.08551640177607561, - 0.12384358683248267, - 0.16227667070181268, - 0.1974998521389513, - 0.22630895926467015, - 0.24638470530126316, - 0.256612258889384, - 0.25769874457344055, - 0.2517422261812198, - 0.24132675929179737, - 0.22934682457288866, - 0.21770489994891742, - 0.20707393322002515, - 0.19693014180856627, - 0.18585376374061385, - 0.17225941617311316, - 0.15513043280404343, - 0.1344593312125426, - 0.1115630073001095, - 0.08854726384703658, - 0.06787227414163384, - 0.05154478641712416, - 0.04056640162600497, - 0.03454605897504611, - 0.032108852549178606, - 0.0313043433856668, - 0.03032332529144425, - 0.028337232265992083, - 0.025690727487255028, - 0.02382921316954185, - 0.024793359366683056, - 0.030317710112633737, - 0.04121890088278036, - 0.0567952897626633, - 0.07501029573607398, - 0.0933777575314642, - 0.10984750830565768, - 0.12428624948980284, - 0.13941776100781159, - 0.1610760484691919, - 0.1978656730722497, - 0.2594582305856262, - 0.3548395815352006, - 0.49089256153539007, - 0.6686755833001758, - 0.8854952304877499 - ], - "pressure:J20:branch123_seg0": [ - 9371.887196159378, - 10782.675939231347, - 12255.70309064999, - 13716.267437339999, - 15093.959835789403, - 16331.503692806553, - 17394.633619491666, - 18279.05340192079, - 18987.88965692095, - 19536.717888018848, - 19954.877861163208, - 20249.2190279301, - 20432.18556943848, - 20507.51396621198, - 20467.761741788843, - 20319.951830021226, - 20061.398910889697, - 19703.526442653638, - 19269.706795460796, - 18773.371693366804, - 18239.042172017424, - 17683.92458331224, - 17116.909175500845, - 16546.00851390765, - 15972.637037483082, - 15399.190566046618, - 14831.418691898103, - 14278.13738179271, - 13751.21615534764, - 13262.34014042744, - 12817.490756071276, - 12412.18693925651, - 12032.646053195831, - 11651.199642384952, - 11235.270796128674, - 10752.445775282831, - 10180.536716539167, - 9507.574766286109, - 8746.399289098415, - 7927.226482173723, - 7089.918200165837, - 6286.567490657003, - 5563.325023829497, - 4955.475240124231, - 4479.119341524897, - 4143.0449298006115, - 3930.432574646135, - 3820.2741447505277, - 3793.8471653252304, - 3824.994268926682, - 3903.315031322914, - 4020.385506239578, - 4169.73551665599, - 4350.332834859502, - 4552.688687406517, - 4765.100013485737, - 4971.377241184414, - 5151.950206400841, - 5290.302030588182, - 5377.165822182294, - 5410.025032368645, - 5395.1292822919295, - 5349.200001442094, - 5285.517176626169, - 5218.599796011289, - 5157.516828293925, - 5102.045359900223, - 5046.57250732434, - 4982.27105213633, - 4900.661551796352, - 4798.7653155120215, - 4678.735342232745, - 4550.649668204361, - 4427.993573204119, - 4323.54817912085, - 4246.428500191621, - 4199.480347153524, - 4177.620037812757, - 4170.448720336881, - 4167.878862139062, - 4160.84927675462, - 4147.363649224134, - 4132.587882663972, - 4126.44807234061, - 4140.611150779588, - 4182.910916605582, - 4254.632623672291, - 4349.201593425501, - 4451.712636395137, - 4549.133983699037, - 4633.259866974293, - 4708.7140781424805, - 4797.779224850152, - 4939.470689622517, - 5185.735713542237, - 5592.145182045888, - 6198.232132085597, - 7039.268757438424, - 8108.792685897258, - 9371.887196159378 - ], - "flow:branch31_seg0:J21": [ - 2.1230881716146426, - 2.7192410310388833, - 3.3587355132608328, - 4.008065067240953, - 4.632978345405365, - 5.205799424136603, - 5.7081116503712215, - 6.132277747016929, - 6.477556558703047, - 6.751323150699165, - 6.9625841954898435, - 7.1183926185121145, - 7.225307511406177, - 7.284732753058047, - 7.296508436260495, - 7.260567695741146, - 7.1762176850492585, - 7.047625502111383, - 6.880466402857143, - 6.682448911495928, - 6.463234183852835, - 6.230292969555476, - 5.989762529988169, - 5.745298929334598, - 5.4983793348410055, - 5.250132865536241, - 5.002163256760014, - 4.757651361923551, - 4.521316460902198, - 4.298456985590335, - 4.092880808047969, - 3.9052992654727574, - 3.73168517134449, - 3.5626679688119087, - 3.3853422751834663, - 3.185215806614574, - 2.949908838461949, - 2.671765493102715, - 2.3517191199269623, - 1.9980393700033188, - 1.6267714539638312, - 1.2586877062891524, - 0.9150517979524879, - 0.614158569809355, - 0.368527806168519, - 0.18371206285527464, - 0.05676047899413349, - -0.018669987079985368, - -0.05280797012746366, - -0.055669615372734696, - -0.03434832296394255, - 0.005671858353197829, - 0.062070612665440415, - 0.1331740589864224, - 0.2162344022912318, - 0.3072075165892006, - 0.39936287097429773, - 0.4846581563797549, - 0.5551515166526256, - 0.6048998944952659, - 0.6309306964611257, - 0.6346639404826928, - 0.6209133301391455, - 0.5960186451827642, - 0.5670323297014601, - 0.5387568175541739, - 0.5130615595910922, - 0.4887985298597907, - 0.4625394294182221, - 0.4303240317039806, - 0.3894557916216696, - 0.3396960924063665, - 0.28401908739230636, - 0.22748582348422114, - 0.1761595144684857, - 0.13512046808260386, - 0.10705835874238344, - 0.09129215980251358, - 0.08461222352508667, - 0.08223590662513978, - 0.07965989097366831, - 0.07461774550189725, - 0.06772770258217492, - 0.062392486903382456, - 0.06359340216745696, - 0.07575225970937174, - 0.10111508258090614, - 0.13824734064411442, - 0.18240042043926233, - 0.2274365246682472, - 0.2681230509284957, - 0.30368682919189444, - 0.34020891248391644, - 0.3914241422993926, - 0.47797665093138625, - 0.6234477716728, - 0.8501272739283401, - 1.1749793537913615, - 1.6014281524813896, - 2.1230881716146426 - ], - "pressure:branch31_seg0:J21": [ - 9184.742175643965, - 10547.563040486048, - 11969.24538773742, - 13376.081780949859, - 14699.085422308654, - 15884.176302670925, - 16900.22250528929, - 17743.432711036716, - 18418.734199355677, - 18943.90827597395, - 19345.451641387655, - 19631.79355020678, - 19815.148119878308, - 19897.757494840593, - 19873.474280971663, - 19747.205003825842, - 19516.02043949031, - 19191.15594327709, - 18792.744128112816, - 18334.075019852262, - 17838.182143651065, - 17320.81010077499, - 16790.889542455516, - 16255.573917029402, - 15716.066720248515, - 15174.521150744677, - 14636.087211025668, - 14109.139546009907, - 13605.167502138996, - 13135.681652806861, - 12706.934137846025, - 12315.597390392142, - 11948.73131896771, - 11580.427093487082, - 11179.471510937386, - 10714.34506688827, - 10162.670102645403, - 9512.411544068613, - 8774.915665863575, - 7977.80554355327, - 7159.939720033662, - 6371.389686029964, - 5657.460409343798, - 5053.574022534892, - 4577.252269924922, - 4237.327451791986, - 4018.397685458604, - 3900.8496647602624, - 3865.1530718060403, - 3886.572525056024, - 3954.3119187675197, - 4059.879070238139, - 4197.790806429739, - 4366.765193536997, - 4558.377856594695, - 4761.484077141169, - 4960.084062926445, - 5135.165280066093, - 5270.270787363089, - 5355.6730811377465, - 5388.453765832851, - 5374.8476673881, - 5330.274302457694, - 5268.126705996344, - 5203.047349218199, - 5143.790650561204, - 5090.527358588119, - 5037.853913687762, - 4976.905593081368, - 4899.097037939655, - 4800.995693902403, - 4684.434838156001, - 4559.046413475259, - 4437.974266725674, - 4334.106300318824, - 4256.785900579653, - 4209.148964078063, - 4186.51475828502, - 4178.931087199131, - 4176.0683078814745, - 4168.889465321821, - 4155.058012324776, - 4139.294243234919, - 4131.325428366057, - 4142.8025619716955, - 4181.867381049641, - 4250.316107307113, - 4341.819215413978, - 4442.198921331403, - 4538.257019417055, - 4621.184192815656, - 4694.771164912996, - 4779.960259018463, - 4914.327559228645, - 5148.515337991309, - 5536.7523542230365, - 6119.306255882888, - 6930.033264148384, - 7962.896206699886, - 9184.742175643965 - ], - "flow:J21:branch32_seg0": [ - 0.8309142976404413, - 1.0597080607348788, - 1.302833401457364, - 1.547619626054783, - 1.7811997597987366, - 1.9935117763958325, - 2.178182078534326, - 2.333071583945953, - 2.4582488579441635, - 2.5569041899906804, - 2.6326715438301904, - 2.687950855640217, - 2.725201052243009, - 2.7447102725420627, - 2.746226064989109, - 2.7298398594092554, - 2.6952123262026464, - 2.644156938178642, - 2.579012985303184, - 2.5026894406048523, - 2.4189690797815593, - 2.3305499288939093, - 2.239607411555546, - 2.1474077073195237, - 2.054367409453243, - 1.9608909851475005, - 1.8676252251446799, - 1.775855533212594, - 1.687446006613251, - 1.6044232181956584, - 1.528120902131982, - 1.4586013356400656, - 1.3940848465957574, - 1.3307074728062693, - 1.2634119138962472, - 1.1866679515548113, - 1.0959714392078062, - 0.988704464859876, - 0.8657496565567644, - 0.7306908168649185, - 0.5899605689599666, - 0.45169474196238435, - 0.323901655909172, - 0.21327382952726093, - 0.12414225552432023, - 0.05824073333703896, - 0.013914876434199615, - -0.011440449922565897, - -0.021815494085203842, - -0.02104890168989702, - -0.011584358322249374, - 0.004613341651953398, - 0.026817181087714904, - 0.054475698444968294, - 0.0864488683967013, - 0.12114210569407383, - 0.1558791063431996, - 0.18754029284332532, - 0.2131536790425571, - 0.2306218632024361, - 0.23899992220925062, - 0.23906425071998857, - 0.2328731069832215, - 0.22286068506340417, - 0.21171434601133737, - 0.20112646290498365, - 0.19160384919260892, - 0.18253907957606044, - 0.1725162201405529, - 0.1600154776576455, - 0.14410934269292217, - 0.12485067386206232, - 0.10355438319126341, - 0.08224980371948391, - 0.0632629226263057, - 0.048443680320577706, - 0.0386621163078301, - 0.033455797583260755, - 0.031463132614611866, - 0.03081306678133917, - 0.029820268617872746, - 0.027772960450523684, - 0.02508316569190621, - 0.023190573047703555, - 0.024058246956273475, - 0.029306504517143256, - 0.0396435417095576, - 0.05432026369038038, - 0.0713326110046313, - 0.08831359599858363, - 0.10336365983938678, - 0.1164630244876159, - 0.13032189147567363, - 0.1505697188851121, - 0.1853786728845131, - 0.24380360697931905, - 0.3340758329590478, - 0.4623190334638006, - 0.628954613199529, - 0.8309142976404413 - ], - "pressure:J21:branch32_seg0": [ - 9184.742175643965, - 10547.563040486048, - 11969.24538773742, - 13376.081780949859, - 14699.085422308654, - 15884.176302670925, - 16900.22250528929, - 17743.432711036716, - 18418.734199355677, - 18943.90827597395, - 19345.451641387655, - 19631.79355020678, - 19815.148119878308, - 19897.757494840593, - 19873.474280971663, - 19747.205003825842, - 19516.02043949031, - 19191.15594327709, - 18792.744128112816, - 18334.075019852262, - 17838.182143651065, - 17320.81010077499, - 16790.889542455516, - 16255.573917029402, - 15716.066720248515, - 15174.521150744677, - 14636.087211025668, - 14109.139546009907, - 13605.167502138996, - 13135.681652806861, - 12706.934137846025, - 12315.597390392142, - 11948.73131896771, - 11580.427093487082, - 11179.471510937386, - 10714.34506688827, - 10162.670102645403, - 9512.411544068613, - 8774.915665863575, - 7977.80554355327, - 7159.939720033662, - 6371.389686029964, - 5657.460409343798, - 5053.574022534892, - 4577.252269924922, - 4237.327451791986, - 4018.397685458604, - 3900.8496647602624, - 3865.1530718060403, - 3886.572525056024, - 3954.3119187675197, - 4059.879070238139, - 4197.790806429739, - 4366.765193536997, - 4558.377856594695, - 4761.484077141169, - 4960.084062926445, - 5135.165280066093, - 5270.270787363089, - 5355.6730811377465, - 5388.453765832851, - 5374.8476673881, - 5330.274302457694, - 5268.126705996344, - 5203.047349218199, - 5143.790650561204, - 5090.527358588119, - 5037.853913687762, - 4976.905593081368, - 4899.097037939655, - 4800.995693902403, - 4684.434838156001, - 4559.046413475259, - 4437.974266725674, - 4334.106300318824, - 4256.785900579653, - 4209.148964078063, - 4186.51475828502, - 4178.931087199131, - 4176.0683078814745, - 4168.889465321821, - 4155.058012324776, - 4139.294243234919, - 4131.325428366057, - 4142.8025619716955, - 4181.867381049641, - 4250.316107307113, - 4341.819215413978, - 4442.198921331403, - 4538.257019417055, - 4621.184192815656, - 4694.771164912996, - 4779.960259018463, - 4914.327559228645, - 5148.515337991309, - 5536.7523542230365, - 6119.306255882888, - 6930.033264148384, - 7962.896206699886, - 9184.742175643965 - ], - "flow:J21:branch101_seg0": [ - 1.2921738739742017, - 1.6595329703040043, - 2.055902111803469, - 2.4604454411861703, - 2.851778585606628, - 3.2122876477407707, - 3.529929571836897, - 3.7992061630709753, - 4.019307700758886, - 4.194418960708485, - 4.329912651659652, - 4.4304417628718955, - 4.500106459163168, - 4.540022480515984, - 4.550282371271386, - 4.530727836331892, - 4.481005358846611, - 4.403468563932741, - 4.30145341755396, - 4.179759470891076, - 4.0442651040712745, - 3.899743040661568, - 3.7501551184326227, - 3.597891222015073, - 3.444011925387762, - 3.2892418803887407, - 3.1345380316153335, - 2.9817958287109563, - 2.833870454288949, - 2.694033767394676, - 2.564759905915987, - 2.4466979298326925, - 2.337600324748733, - 2.23196049600564, - 2.121930361287219, - 1.998547855059762, - 1.8539373992541426, - 1.6830610282428389, - 1.4859694633701979, - 1.2673485531384003, - 1.0368108850038644, - 0.806992964326768, - 0.5911501420433161, - 0.4008847402820942, - 0.24438555064419873, - 0.12547132951823567, - 0.04284560255993387, - -0.007229537157419475, - -0.03099247604225981, - -0.03462071368283768, - -0.022763964641693175, - 0.0010585167012444323, - 0.035253431577725515, - 0.07869836054145408, - 0.12978553389453049, - 0.18606541089512665, - 0.24348376463109814, - 0.2971178635364296, - 0.3419978376100685, - 0.3742780312928298, - 0.39193077425187484, - 0.3955996897627044, - 0.3880402231559242, - 0.37315796011936003, - 0.3553179836901227, - 0.33763035464919045, - 0.32145771039848314, - 0.30625945028373025, - 0.2900232092776692, - 0.270308554046335, - 0.2453464489287474, - 0.21484541854430422, - 0.1804647042010429, - 0.1452360197647372, - 0.11289659184218004, - 0.08667678776202616, - 0.06839624243455336, - 0.05783636221925282, - 0.0531490909104748, - 0.05142283984380065, - 0.04983962235579556, - 0.046844785051373565, - 0.04264453689026872, - 0.03920191385567891, - 0.039535155211183476, - 0.04644575519222848, - 0.061471540871348554, - 0.08392707695373401, - 0.11106780943463106, - 0.13912292866966355, - 0.1647593910891089, - 0.18722380470427855, - 0.20988702100824277, - 0.24085442341428054, - 0.2925979780468731, - 0.3796441646934808, - 0.5160514409692923, - 0.7126603203275612, - 0.972473539281861, - 1.2921738739742017 - ], - "pressure:J21:branch101_seg0": [ - 9184.742175643965, - 10547.563040486048, - 11969.24538773742, - 13376.081780949859, - 14699.085422308654, - 15884.176302670925, - 16900.22250528929, - 17743.432711036716, - 18418.734199355677, - 18943.90827597395, - 19345.451641387655, - 19631.79355020678, - 19815.148119878308, - 19897.757494840593, - 19873.474280971663, - 19747.205003825842, - 19516.02043949031, - 19191.15594327709, - 18792.744128112816, - 18334.075019852262, - 17838.182143651065, - 17320.81010077499, - 16790.889542455516, - 16255.573917029402, - 15716.066720248515, - 15174.521150744677, - 14636.087211025668, - 14109.139546009907, - 13605.167502138996, - 13135.681652806861, - 12706.934137846025, - 12315.597390392142, - 11948.73131896771, - 11580.427093487082, - 11179.471510937386, - 10714.34506688827, - 10162.670102645403, - 9512.411544068613, - 8774.915665863575, - 7977.80554355327, - 7159.939720033662, - 6371.389686029964, - 5657.460409343798, - 5053.574022534892, - 4577.252269924922, - 4237.327451791986, - 4018.397685458604, - 3900.8496647602624, - 3865.1530718060403, - 3886.572525056024, - 3954.3119187675197, - 4059.879070238139, - 4197.790806429739, - 4366.765193536997, - 4558.377856594695, - 4761.484077141169, - 4960.084062926445, - 5135.165280066093, - 5270.270787363089, - 5355.6730811377465, - 5388.453765832851, - 5374.8476673881, - 5330.274302457694, - 5268.126705996344, - 5203.047349218199, - 5143.790650561204, - 5090.527358588119, - 5037.853913687762, - 4976.905593081368, - 4899.097037939655, - 4800.995693902403, - 4684.434838156001, - 4559.046413475259, - 4437.974266725674, - 4334.106300318824, - 4256.785900579653, - 4209.148964078063, - 4186.51475828502, - 4178.931087199131, - 4176.0683078814745, - 4168.889465321821, - 4155.058012324776, - 4139.294243234919, - 4131.325428366057, - 4142.8025619716955, - 4181.867381049641, - 4250.316107307113, - 4341.819215413978, - 4442.198921331403, - 4538.257019417055, - 4621.184192815656, - 4694.771164912996, - 4779.960259018463, - 4914.327559228645, - 5148.515337991309, - 5536.7523542230365, - 6119.306255882888, - 6930.033264148384, - 7962.896206699886, - 9184.742175643965 - ], - "flow:branch33_seg0:J22": [ - 2.882569603134752, - 3.719577035869661, - 4.633776948658314, - 5.579316365114009, - 6.506715608611205, - 7.373159553559981, - 8.147301824596195, - 8.81243176698175, - 9.362328084379541, - 9.803868017994308, - 10.147864536358565, - 10.404422897461115, - 10.583725677062446, - 10.689256352463488, - 10.722164278149622, - 10.68285102695254, - 10.570666683856466, - 10.390919967309241, - 10.15120113302615, - 9.862480863125882, - 9.538661373722162, - 9.191389008677525, - 8.830685552321954, - 8.463092992096728, - 8.091882559009907, - 7.719275427260438, - 7.347659930245271, - 6.981292133287339, - 6.6265213919942845, - 6.290769129935841, - 5.979839163630118, - 5.695742172740416, - 5.4340880395746725, - 5.183012933267219, - 4.925145247861601, - 4.640046311503761, - 4.3091420304511745, - 3.9196970658375943, - 3.4703353678212925, - 2.9701193308314644, - 2.4396421155721453, - 1.9070918881542582, - 1.402621071890263, - 0.9534159690750614, - 0.5794922547643192, - 0.29111629628334806, - 0.08696624397132256, - -0.04014594844593492, - -0.10369381185554007, - -0.11772986476799865, - -0.0932427357787954, - -0.039143448610773776, - 0.04011524581094063, - 0.14132955379266554, - 0.2604903965017932, - 0.3921710816010524, - 0.5273812871066449, - 0.6551433415743864, - 0.7641521426191951, - 0.8453349871560344, - 0.8933176357885223, - 0.908726145482335, - 0.8970786555099822, - 0.8666586148274711, - 0.8273412263528023, - 0.7865766510829012, - 0.7481335006643474, - 0.7116170707716545, - 0.6731487423188484, - 0.6275473324038592, - 0.5707472798258454, - 0.5017001752791708, - 0.42359019186989, - 0.34275044595351867, - 0.2673672123313803, - 0.20485288306947572, - 0.15976524648284537, - 0.13223301209568825, - 0.11875677779072726, - 0.11316865290306212, - 0.10913423078083087, - 0.102836714861429, - 0.0941573835928289, - 0.08688898047656538, - 0.0874125558073191, - 0.10195845065366324, - 0.13435516512327417, - 0.1836783309315137, - 0.24438859797363802, - 0.3084623140794183, - 0.368322872625607, - 0.4216339928539495, - 0.47488562768428266, - 0.5450732825368636, - 0.659233283743638, - 0.8497438389705976, - 1.1490596275047447, - 1.5833922587547715, - 2.1624618769149206, - 2.882569603134752 - ], - "pressure:branch33_seg0:J22": [ - 8788.985955024697, - 10116.495020766168, - 11536.622576546852, - 12978.168849418631, - 14367.989670109731, - 15644.360122907947, - 16765.774450696124, - 17716.92430347816, - 18492.627806250584, - 19106.50994272029, - 19580.90849821706, - 19926.690179506553, - 20158.58536529403, - 20280.89157295077, - 20291.087063936568, - 20193.045095957204, - 19984.61996916337, - 19675.16972467951, - 19281.755354911154, - 18819.31092050214, - 18310.5914687162, - 17772.978089275897, - 17218.85442794585, - 16657.334158861093, - 16091.728097759864, - 15524.929968869781, - 14961.42799169207, - 14408.691308676238, - 13877.300017210411, - 13378.794922048295, - 12920.635380867741, - 12502.73729946826, - 12115.341237562314, - 11736.111478667193, - 11336.11003612467, - 10883.696908405922, - 10353.419709257609, - 9728.985789149889, - 9015.019339956461, - 8232.423649921519, - 7416.019036748511, - 6612.879198924603, - 5868.622682053561, - 5221.910392425976, - 4696.80897594553, - 4305.752866493704, - 4040.1818810310083, - 3884.8972076551536, - 3820.0402722673825, - 3822.1661188789276, - 3877.4970877294013, - 3974.621252676762, - 4107.262977115407, - 4272.13653307542, - 4461.650511214615, - 4666.334230829875, - 4871.34018402312, - 5058.75731073532, - 5211.739032912274, - 5318.62316700357, - 5373.521581613446, - 5379.785054050337, - 5349.671712384804, - 5295.769240907688, - 5232.979301716704, - 5171.654166824562, - 5114.831370514005, - 5059.730444313831, - 4999.160118710463, - 4924.947117159638, - 4832.284469121273, - 4721.230785548396, - 4598.89914253101, - 4476.579311681418, - 4366.8707405451, - 4280.103765929498, - 4221.435271252836, - 4188.640123431274, - 4174.30714567815, - 4168.647295748746, - 4162.245863922156, - 4151.01595110162, - 4137.1166317067655, - 4128.1306437347, - 4134.642747208195, - 4165.370085370314, - 4224.226791233546, - 4307.554290704448, - 4403.966812380925, - 4501.035378245851, - 4588.599891153791, - 4666.610538305236, - 4750.270139807364, - 4871.089855353476, - 5074.745504669902, - 5413.122932043685, - 5931.365711700228, - 6666.968267534888, - 7625.377285353697, - 8788.985955024697 - ], - "flow:J22:branch34_seg0": [ - 1.2045347019937205, - 1.5573538393200774, - 1.9443292626976707, - 2.346106563494374, - 2.7416538765019594, - 3.1125561601161422, - 3.4451158853979105, - 3.7317275445613114, - 3.9694151957222195, - 4.160798134201112, - 4.310259559036739, - 4.422192079899522, - 4.500947005657759, - 4.548142536166105, - 4.564406482030754, - 4.5498652515823235, - 4.504286278665223, - 4.4297902709766515, - 4.329460725975191, - 4.207944699665525, - 4.071067151958567, - 3.923836058654835, - 3.770611228619912, - 3.6142590756432496, - 3.4562729721262695, - 3.2976316219100332, - 3.13933359897052, - 2.9831388303462067, - 2.8316910219331164, - 2.6881233206182613, - 2.5549596576467355, - 2.4331918990201067, - 2.3211311971254367, - 2.2139577129580337, - 2.104438787181759, - 1.9839475120461338, - 1.8444967326999722, - 1.6804946935412823, - 1.491008841802603, - 1.279551758771462, - 1.0545942257500693, - 0.82789412805693, - 0.612237287566557, - 0.4192989213235285, - 0.25785088424274166, - 0.13250421869290693, - 0.04306288363986111, - -0.013329648321679358, - -0.04229925672837154, - -0.04975410555546988, - -0.04048954284870668, - -0.01837866447871383, - 0.014594726274106656, - 0.05699762186968898, - 0.10717146054125924, - 0.16285918787436637, - 0.22032202044520194, - 0.27495625675125934, - 0.32195192080540785, - 0.3573670140665662, - 0.37879539863113754, - 0.3863417350105568, - 0.3821811616150948, - 0.36977775129712265, - 0.35330261678250124, - 0.33598695921646576, - 0.3195590476609818, - 0.30397524753212607, - 0.2876806487973635, - 0.2685056332768416, - 0.24467486071784972, - 0.2156544153737572, - 0.18267048558372934, - 0.148322252163882, - 0.11605219985538293, - 0.08904346969252852, - 0.06932338933960472, - 0.05707931847640351, - 0.05093861499566745, - 0.04833574809381889, - 0.04658050823547536, - 0.04396945168491656, - 0.04033423736799191, - 0.03717632871325827, - 0.03714034122161447, - 0.04289021211577118, - 0.056137535103243576, - 0.07662376487951311, - 0.10214032497426193, - 0.12933121839367334, - 0.15494059992061684, - 0.17780861303718937, - 0.2004210342989368, - 0.22969229985408193, - 0.2768357366261245, - 0.3554675218903278, - 0.47947742944561605, - 0.6601689843972248, - 0.9022062999264734, - 1.2045347019937205 - ], - "pressure:J22:branch34_seg0": [ - 8788.985955024697, - 10116.495020766168, - 11536.622576546852, - 12978.168849418631, - 14367.989670109731, - 15644.360122907947, - 16765.774450696124, - 17716.92430347816, - 18492.627806250584, - 19106.50994272029, - 19580.90849821706, - 19926.690179506553, - 20158.58536529403, - 20280.89157295077, - 20291.087063936568, - 20193.045095957204, - 19984.61996916337, - 19675.16972467951, - 19281.755354911154, - 18819.31092050214, - 18310.5914687162, - 17772.978089275897, - 17218.85442794585, - 16657.334158861093, - 16091.728097759864, - 15524.929968869781, - 14961.42799169207, - 14408.691308676238, - 13877.300017210411, - 13378.794922048295, - 12920.635380867741, - 12502.73729946826, - 12115.341237562314, - 11736.111478667193, - 11336.11003612467, - 10883.696908405922, - 10353.419709257609, - 9728.985789149889, - 9015.019339956461, - 8232.423649921519, - 7416.019036748511, - 6612.879198924603, - 5868.622682053561, - 5221.910392425976, - 4696.80897594553, - 4305.752866493704, - 4040.1818810310083, - 3884.8972076551536, - 3820.0402722673825, - 3822.1661188789276, - 3877.4970877294013, - 3974.621252676762, - 4107.262977115407, - 4272.13653307542, - 4461.650511214615, - 4666.334230829875, - 4871.34018402312, - 5058.75731073532, - 5211.739032912274, - 5318.62316700357, - 5373.521581613446, - 5379.785054050337, - 5349.671712384804, - 5295.769240907688, - 5232.979301716704, - 5171.654166824562, - 5114.831370514005, - 5059.730444313831, - 4999.160118710463, - 4924.947117159638, - 4832.284469121273, - 4721.230785548396, - 4598.89914253101, - 4476.579311681418, - 4366.8707405451, - 4280.103765929498, - 4221.435271252836, - 4188.640123431274, - 4174.30714567815, - 4168.647295748746, - 4162.245863922156, - 4151.01595110162, - 4137.1166317067655, - 4128.1306437347, - 4134.642747208195, - 4165.370085370314, - 4224.226791233546, - 4307.554290704448, - 4403.966812380925, - 4501.035378245851, - 4588.599891153791, - 4666.610538305236, - 4750.270139807364, - 4871.089855353476, - 5074.745504669902, - 5413.122932043685, - 5931.365711700228, - 6666.968267534888, - 7625.377285353697, - 8788.985955024697 - ], - "flow:J22:branch81_seg0": [ - 0.9901539845250821, - 1.2782568963830558, - 1.5933123167340886, - 1.9194138943331815, - 2.239539638327109, - 2.538888132781025, - 2.8065591745481915, - 3.0366201769122956, - 3.2269772101193714, - 3.379899525534696, - 3.499042608558717, - 3.588004240584444, - 3.6502316275939486, - 3.686984513803504, - 3.6986982587559143, - 3.6854557071207803, - 3.6470756466148933, - 3.585337910769681, - 3.502848859573005, - 3.403408419101367, - 3.2917632900541993, - 3.171981445091784, - 3.047532111600223, - 2.920681660158358, - 2.792587072303261, - 2.6640086732184542, - 2.5357688246779784, - 2.4093239361489003, - 2.2868521471904213, - 2.1709033552699486, - 2.0635023985731618, - 1.9653600652676781, - 1.8749879768547775, - 1.7883544990545723, - 1.6994749757505467, - 1.6013104100476756, - 1.4874338228143276, - 1.3534313122720634, - 1.1987455193832703, - 1.0264628616411138, - 0.8436484518134703, - 0.6599637098784273, - 0.48582848186802763, - 0.3306465893834793, - 0.20133208151837892, - 0.1014793215802271, - 0.030730447558807213, - -0.013435584341142585, - -0.035613657728192, - -0.04063660157938327, - -0.03235599072587462, - -0.013812443256899455, - 0.013405726554759616, - 0.04818877993109705, - 0.08919747751788547, - 0.13454069182393447, - 0.18114881631848273, - 0.22525365684773957, - 0.2629498035272271, - 0.291084882473272, - 0.3077976614226193, - 0.31327179874882766, - 0.30936418027127066, - 0.29894847450010975, - 0.2854130374808561, - 0.27134247370877873, - 0.2580674829244774, - 0.24546787991588867, - 0.23222185332981823, - 0.2165457625742138, - 0.19703009263099527, - 0.17329334501348903, - 0.14640283176297988, - 0.11853605007620792, - 0.09250786213400201, - 0.0708797879493121, - 0.05523845264689037, - 0.0456663925150455, - 0.04096156263896098, - 0.03900772876622789, - 0.03762939683891247, - 0.03548257205255385, - 0.03250534715763431, - 0.02998736658184509, - 0.030116818792439288, - 0.0350509528841498, - 0.04612316569155328, - 0.06304074509718777, - 0.08392899330922955, - 0.10601831393729, - 0.12669306199799024, - 0.1451161641896684, - 0.1634707666507743, - 0.18756079176139304, - 0.22665537489825088, - 0.29191699030236395, - 0.394518289645217, - 0.5435318041290328, - 0.7425249589226397, - 0.9901539845250821 - ], - "pressure:J22:branch81_seg0": [ - 8788.985955024697, - 10116.495020766168, - 11536.622576546852, - 12978.168849418631, - 14367.989670109731, - 15644.360122907947, - 16765.774450696124, - 17716.92430347816, - 18492.627806250584, - 19106.50994272029, - 19580.90849821706, - 19926.690179506553, - 20158.58536529403, - 20280.89157295077, - 20291.087063936568, - 20193.045095957204, - 19984.61996916337, - 19675.16972467951, - 19281.755354911154, - 18819.31092050214, - 18310.5914687162, - 17772.978089275897, - 17218.85442794585, - 16657.334158861093, - 16091.728097759864, - 15524.929968869781, - 14961.42799169207, - 14408.691308676238, - 13877.300017210411, - 13378.794922048295, - 12920.635380867741, - 12502.73729946826, - 12115.341237562314, - 11736.111478667193, - 11336.11003612467, - 10883.696908405922, - 10353.419709257609, - 9728.985789149889, - 9015.019339956461, - 8232.423649921519, - 7416.019036748511, - 6612.879198924603, - 5868.622682053561, - 5221.910392425976, - 4696.80897594553, - 4305.752866493704, - 4040.1818810310083, - 3884.8972076551536, - 3820.0402722673825, - 3822.1661188789276, - 3877.4970877294013, - 3974.621252676762, - 4107.262977115407, - 4272.13653307542, - 4461.650511214615, - 4666.334230829875, - 4871.34018402312, - 5058.75731073532, - 5211.739032912274, - 5318.62316700357, - 5373.521581613446, - 5379.785054050337, - 5349.671712384804, - 5295.769240907688, - 5232.979301716704, - 5171.654166824562, - 5114.831370514005, - 5059.730444313831, - 4999.160118710463, - 4924.947117159638, - 4832.284469121273, - 4721.230785548396, - 4598.89914253101, - 4476.579311681418, - 4366.8707405451, - 4280.103765929498, - 4221.435271252836, - 4188.640123431274, - 4174.30714567815, - 4168.647295748746, - 4162.245863922156, - 4151.01595110162, - 4137.1166317067655, - 4128.1306437347, - 4134.642747208195, - 4165.370085370314, - 4224.226791233546, - 4307.554290704448, - 4403.966812380925, - 4501.035378245851, - 4588.599891153791, - 4666.610538305236, - 4750.270139807364, - 4871.089855353476, - 5074.745504669902, - 5413.122932043685, - 5931.365711700228, - 6666.968267534888, - 7625.377285353697, - 8788.985955024697 - ], - "flow:J22:branch117_seg0": [ - 0.6878809166159496, - 0.8839663001665281, - 1.096135369226556, - 1.3137959072864527, - 1.5255220937821352, - 1.721715260662814, - 1.895626764650091, - 2.044084045508139, - 2.1659356785379495, - 2.2631703582585017, - 2.3385623687631067, - 2.394226576977149, - 2.43254704381074, - 2.4541293024938766, - 2.459059537362952, - 2.4475300682494336, - 2.4193047585763523, - 2.375791785562908, - 2.318891547477953, - 2.2511277443589894, - 2.175830931709396, - 2.095571504930908, - 2.01254221210182, - 1.928152256295122, - 1.843022514580377, - 1.757635132131952, - 1.6725575065967722, - 1.588829366792233, - 1.5079782228707468, - 1.4317424540476322, - 1.3613771074102194, - 1.297190208452631, - 1.2379688655944578, - 1.180700721254613, - 1.1212314849292953, - 1.0547883894099523, - 0.9772114749368745, - 0.8857710600242491, - 0.7805810066354193, - 0.6641047104188885, - 0.5413994380086057, - 0.41923405021890037, - 0.3045553024556781, - 0.2034704583680537, - 0.12030928900319875, - 0.057132756010214045, - 0.01317291277265425, - -0.013380715783112979, - -0.025780897398976547, - -0.027339157633145497, - -0.020397202204214093, - -0.006952340875160492, - 0.012114792982074355, - 0.036143151991879514, - 0.06412145844264852, - 0.0947712019027516, - 0.1259104503429601, - 0.15493342797538737, - 0.17925041828656021, - 0.19688309061619627, - 0.2067245757347657, - 0.20911261172295056, - 0.205533313623617, - 0.19793238903023894, - 0.18862557208944516, - 0.1792472181576567, - 0.17050697007888815, - 0.16217394332363969, - 0.15324624019166658, - 0.14249593655280376, - 0.12904232647700037, - 0.11275241489192456, - 0.09451687452318079, - 0.07589214371342873, - 0.05880715034199534, - 0.044929625427635095, - 0.035203404496350295, - 0.02948730110423922, - 0.026856600156098826, - 0.025825176043015288, - 0.024924325706443033, - 0.023384691123958575, - 0.02131779906720268, - 0.01972528518146202, - 0.02015539579326536, - 0.02401728565374226, - 0.03209446432847734, - 0.04401382095481284, - 0.05831927969014653, - 0.0731127817484549, - 0.08668921070699992, - 0.09870921562709173, - 0.11099382673457155, - 0.12782019092138872, - 0.15574217221926268, - 0.20235932677790575, - 0.27506390841391193, - 0.3796914702285138, - 0.5177306180658079, - 0.6878809166159496 - ], - "pressure:J22:branch117_seg0": [ - 8788.985955024697, - 10116.495020766168, - 11536.622576546852, - 12978.168849418631, - 14367.989670109731, - 15644.360122907947, - 16765.774450696124, - 17716.92430347816, - 18492.627806250584, - 19106.50994272029, - 19580.90849821706, - 19926.690179506553, - 20158.58536529403, - 20280.89157295077, - 20291.087063936568, - 20193.045095957204, - 19984.61996916337, - 19675.16972467951, - 19281.755354911154, - 18819.31092050214, - 18310.5914687162, - 17772.978089275897, - 17218.85442794585, - 16657.334158861093, - 16091.728097759864, - 15524.929968869781, - 14961.42799169207, - 14408.691308676238, - 13877.300017210411, - 13378.794922048295, - 12920.635380867741, - 12502.73729946826, - 12115.341237562314, - 11736.111478667193, - 11336.11003612467, - 10883.696908405922, - 10353.419709257609, - 9728.985789149889, - 9015.019339956461, - 8232.423649921519, - 7416.019036748511, - 6612.879198924603, - 5868.622682053561, - 5221.910392425976, - 4696.80897594553, - 4305.752866493704, - 4040.1818810310083, - 3884.8972076551536, - 3820.0402722673825, - 3822.1661188789276, - 3877.4970877294013, - 3974.621252676762, - 4107.262977115407, - 4272.13653307542, - 4461.650511214615, - 4666.334230829875, - 4871.34018402312, - 5058.75731073532, - 5211.739032912274, - 5318.62316700357, - 5373.521581613446, - 5379.785054050337, - 5349.671712384804, - 5295.769240907688, - 5232.979301716704, - 5171.654166824562, - 5114.831370514005, - 5059.730444313831, - 4999.160118710463, - 4924.947117159638, - 4832.284469121273, - 4721.230785548396, - 4598.89914253101, - 4476.579311681418, - 4366.8707405451, - 4280.103765929498, - 4221.435271252836, - 4188.640123431274, - 4174.30714567815, - 4168.647295748746, - 4162.245863922156, - 4151.01595110162, - 4137.1166317067655, - 4128.1306437347, - 4134.642747208195, - 4165.370085370314, - 4224.226791233546, - 4307.554290704448, - 4403.966812380925, - 4501.035378245851, - 4588.599891153791, - 4666.610538305236, - 4750.270139807364, - 4871.089855353476, - 5074.745504669902, - 5413.122932043685, - 5931.365711700228, - 6666.968267534888, - 7625.377285353697, - 8788.985955024697 - ], - "flow:branch34_seg0:J23": [ - 1.204234335545964, - 1.5570224543293967, - 1.943982314660989, - 2.3457648873087114, - 2.7413327439405495, - 3.1122669944839223, - 3.444866156231876, - 3.7315215694530965, - 3.9692485257222243, - 4.1606682417685645, - 4.310162084626887, - 4.422122414196281, - 4.500904933259962, - 4.548126452728698, - 4.5644171118710215, - 4.549902174625978, - 4.504348319474506, - 4.429876169189971, - 4.329564284266091, - 4.208061564540887, - 4.071193653916901, - 3.9239672694815697, - 3.7707451939845296, - 3.614394372130273, - 3.456408701548079, - 3.297767380485508, - 3.139467793816644, - 2.983269199491002, - 2.831814831916056, - 2.6882383475102785, - 2.5550643268052076, - 2.433287796513517, - 2.3212222863347476, - 2.2140496742683, - 2.104539540335097, - 1.98406448436527, - 1.8446346356502745, - 1.6806552510456807, - 1.4911898093963862, - 1.2797451527802441, - 1.0547901621519884, - 0.8280817207305302, - 0.6124055021249323, - 0.4194389078302245, - 0.2579609452650541, - 0.1325828418423127, - 0.043111355299605775, - -0.013303828282174055, - -0.04229271289389511, - -0.049761868031124604, - -0.040507563388141925, - -0.018406892336347024, - 0.014558878318120463, - 0.05695519304399781, - 0.10712349235468223, - 0.16280950675820205, - 0.2202743325775049, - 0.27491468684373555, - 0.32192028047097565, - 0.35734766873396273, - 0.37878818386402924, - 0.38634513883537885, - 0.382191977434717, - 0.3697921057262498, - 0.35331783396034105, - 0.3360012117950181, - 0.3195721725587243, - 0.3039887376031676, - 0.2876965047814664, - 0.26852571080035076, - 0.24469940487791805, - 0.21568266720781473, - 0.18270046501802473, - 0.14835056471460892, - 0.11607596934090504, - 0.08906093610081618, - 0.06933432980012419, - 0.057084369226785246, - 0.050940605613829675, - 0.048337061315051916, - 0.04658250641179972, - 0.043972655918676495, - 0.04033739864391228, - 0.037177100906210125, - 0.03713621725272117, - 0.04287945265338077, - 0.056120267446858746, - 0.07660166825605991, - 0.10211650129640099, - 0.12930888534313492, - 0.154921103190014, - 0.1777901936151916, - 0.20039809509391018, - 0.2296554365624037, - 0.27677315224098514, - 0.35536507934107714, - 0.4793282757382099, - 0.6599673257249927, - 0.9019479708806193, - 1.204234335545964 - ], - "pressure:branch34_seg0:J23": [ - 8761.965879413381, - 10085.25735228728, - 11502.438670859165, - 12942.489056026672, - 14332.207883648993, - 15609.712427697803, - 16733.196607246835, - 17686.869059010864, - 18465.215823929284, - 19081.721948320675, - 19558.42055911898, - 19906.346068919327, - 20140.29855723219, - 20264.620114171415, - 20276.994899184563, - 20181.164388619807, - 19975.01754033323, - 19667.810767524352, - 19276.336007358776, - 18815.577118343255, - 18308.194815733597, - 17771.576387160356, - 17218.24334492497, - 16657.356175002078, - 16092.310709246824, - 15526.022825470107, - 14962.92975587418, - 14410.4396526828, - 13879.071212670904, - 13380.348728014955, - 12921.792082965245, - 12503.497713522545, - 12115.886302429333, - 11736.866257957277, - 11337.671182551667, - 10886.716348728149, - 10358.428314953813, - 9736.340496899456, - 9024.715717560657, - 8244.052919873027, - 7428.927123211273, - 6626.163947796754, - 5881.336744473176, - 5233.227076480575, - 4706.223091243705, - 4312.924440514842, - 4045.136119658574, - 3887.910444041159, - 3821.3728867228315, - 3822.2035098423244, - 3876.485635472559, - 3972.6929534132532, - 4104.54312578574, - 4268.659068280448, - 4457.531552981162, - 4661.780884152449, - 4866.631100114737, - 5054.251433385873, - 5207.791703589574, - 5315.492926574407, - 5371.331601261908, - 5378.523620734313, - 5349.127623570932, - 5295.694538141968, - 5233.12602482603, - 5171.825222240159, - 5114.968287340932, - 5059.898876487552, - 4999.504088160658, - 4925.631845779606, - 4833.403476571054, - 4722.787269122484, - 4600.764122059276, - 4478.523038188572, - 4368.644111462914, - 4281.501426657116, - 4222.347191049661, - 4189.0840959194375, - 4174.430687770983, - 4168.623911201202, - 4162.242248599398, - 4151.11138233016, - 4137.260616934736, - 4128.165737754814, - 4134.355066650253, - 4164.57656045723, - 4222.850089344083, - 4305.647073782501, - 4401.741268371511, - 4498.739121743736, - 4586.410169594993, - 4664.508283997637, - 4747.927208140648, - 4867.838245690442, - 5069.621053854876, - 5404.97465639515, - 5919.238067691411, - 6649.992530282476, - 7603.19871056429, - 8761.965879413381 - ], - "flow:J23:branch35_seg0": [ - 0.7060233141896941, - 0.9152180807683267, - 1.14597467897987, - 1.3867697026390626, - 1.6250208643302717, - 1.8495169628256654, - 2.0517436724630937, - 2.226727685841943, - 2.3724480723943033, - 2.490198043665339, - 2.58244129027289, - 2.6518978892328766, - 2.701174981860368, - 2.731378513113695, - 2.742991374216859, - 2.7360601953860586, - 2.7104872206414288, - 2.6674173331128603, - 2.608600893606043, - 2.5367924932203856, - 2.4554027356209436, - 2.367490815783064, - 2.275739316992756, - 2.1819401693706792, - 2.087076345173213, - 1.9917616609793096, - 1.8965862172224932, - 1.8025643454442768, - 1.7112344922087994, - 1.6244540648456849, - 1.543784671252446, - 1.4699265833718727, - 1.4020142539483023, - 1.3373461972730647, - 1.271707679950219, - 1.1999809841411142, - 1.1173074312133542, - 1.0201869441126725, - 0.907768639024877, - 0.781887557171713, - 0.6473791499169663, - 0.5111055105258233, - 0.3807135918486603, - 0.26330688572977395, - 0.16434980566750795, - 0.08683399057671645, - 0.030953629439835338, - -0.0048619750491412095, - -0.023874422912215018, - -0.029584892448835536, - -0.02497704769916263, - -0.012429773199095525, - 0.0067704433044148875, - 0.03171033663013741, - 0.06143351855761067, - 0.09461479155124626, - 0.12908525899015738, - 0.16213416106325346, - 0.19087243195191797, - 0.21286643490098972, - 0.22657786976294822, - 0.2319318662687126, - 0.23009415904492037, - 0.22309605339032682, - 0.21341072597968286, - 0.20303188339829695, - 0.1930996746327416, - 0.18368936417396384, - 0.17394826384534964, - 0.1626034445684504, - 0.14855557596358476, - 0.13141058929194596, - 0.11179776298924768, - 0.09120252555587903, - 0.07165525043225708, - 0.055089971361428125, - 0.04279589237347239, - 0.03499878428343446, - 0.030964641408223078, - 0.02920631898225036, - 0.02811544241883211, - 0.026601729596880636, - 0.024468868052897132, - 0.02252553887410894, - 0.022300065897097442, - 0.02540171502976397, - 0.03292280771796092, - 0.04482028334716213, - 0.059889445239133976, - 0.07616385870886751, - 0.09166784064496215, - 0.10557271190825328, - 0.11914845244997849, - 0.136290274016948, - 0.1634935612521491, - 0.20881297338308574, - 0.28062658208625596, - 0.3858541136479824, - 0.5277486994879297, - 0.7060233141896941 - ], - "pressure:J23:branch35_seg0": [ - 8761.965879413381, - 10085.25735228728, - 11502.438670859165, - 12942.489056026672, - 14332.207883648993, - 15609.712427697803, - 16733.196607246835, - 17686.869059010864, - 18465.215823929284, - 19081.721948320675, - 19558.42055911898, - 19906.346068919327, - 20140.29855723219, - 20264.620114171415, - 20276.994899184563, - 20181.164388619807, - 19975.01754033323, - 19667.810767524352, - 19276.336007358776, - 18815.577118343255, - 18308.194815733597, - 17771.576387160356, - 17218.24334492497, - 16657.356175002078, - 16092.310709246824, - 15526.022825470107, - 14962.92975587418, - 14410.4396526828, - 13879.071212670904, - 13380.348728014955, - 12921.792082965245, - 12503.497713522545, - 12115.886302429333, - 11736.866257957277, - 11337.671182551667, - 10886.716348728149, - 10358.428314953813, - 9736.340496899456, - 9024.715717560657, - 8244.052919873027, - 7428.927123211273, - 6626.163947796754, - 5881.336744473176, - 5233.227076480575, - 4706.223091243705, - 4312.924440514842, - 4045.136119658574, - 3887.910444041159, - 3821.3728867228315, - 3822.2035098423244, - 3876.485635472559, - 3972.6929534132532, - 4104.54312578574, - 4268.659068280448, - 4457.531552981162, - 4661.780884152449, - 4866.631100114737, - 5054.251433385873, - 5207.791703589574, - 5315.492926574407, - 5371.331601261908, - 5378.523620734313, - 5349.127623570932, - 5295.694538141968, - 5233.12602482603, - 5171.825222240159, - 5114.968287340932, - 5059.898876487552, - 4999.504088160658, - 4925.631845779606, - 4833.403476571054, - 4722.787269122484, - 4600.764122059276, - 4478.523038188572, - 4368.644111462914, - 4281.501426657116, - 4222.347191049661, - 4189.0840959194375, - 4174.430687770983, - 4168.623911201202, - 4162.242248599398, - 4151.11138233016, - 4137.260616934736, - 4128.165737754814, - 4134.355066650253, - 4164.57656045723, - 4222.850089344083, - 4305.647073782501, - 4401.741268371511, - 4498.739121743736, - 4586.410169594993, - 4664.508283997637, - 4747.927208140648, - 4867.838245690442, - 5069.621053854876, - 5404.97465639515, - 5919.238067691411, - 6649.992530282476, - 7603.19871056429, - 8761.965879413381 - ], - "flow:J23:branch103_seg0": [ - 0.49821102135627, - 0.6418043735610699, - 0.798007635681119, - 0.9589951846696487, - 1.116311879610278, - 1.2627500316582567, - 1.3931224837687828, - 1.5047938836111527, - 1.5968004533279214, - 1.6704701981032262, - 1.7277207943539976, - 1.7702245249634037, - 1.799729951399593, - 1.8167479396150035, - 1.8214257376541623, - 1.8138419792399207, - 1.7938610988330772, - 1.762458836077111, - 1.7209633906600479, - 1.6712690713205007, - 1.6157909182959571, - 1.5564764536985058, - 1.4950058769917736, - 1.4324542027595932, - 1.369332356374866, - 1.3060057195061985, - 1.2428815765941508, - 1.1807048540467247, - 1.1205803397072571, - 1.063784282664594, - 1.0112796555527617, - 0.9633612131416445, - 0.9192080323864453, - 0.8767034769952353, - 0.8328318603848781, - 0.7840835002241554, - 0.7273272044369202, - 0.6604683069330076, - 0.583421170371509, - 0.49785759560853077, - 0.4074110122350222, - 0.316976210204707, - 0.23169191027627203, - 0.15613202210045043, - 0.0936111395975462, - 0.04574885126559622, - 0.012157725859770428, - -0.008441853233032846, - -0.018418289981680096, - -0.020176975582289078, - -0.015530515688979295, - -0.005977119137251498, - 0.0077884350137055755, - 0.02524485641386039, - 0.04568997379707157, - 0.06819471520695577, - 0.09118907358734753, - 0.112780525780482, - 0.13104784851905768, - 0.144481233832973, - 0.15221031410108107, - 0.15441327256666623, - 0.15209781838979664, - 0.1466960523359231, - 0.13990710798065817, - 0.13296932839672107, - 0.12647249792598264, - 0.12029937342920377, - 0.11374824093611675, - 0.10592226623190025, - 0.09614382891433329, - 0.0842720779158688, - 0.07090270202877712, - 0.057148039158729895, - 0.044420718908647974, - 0.03397096473938807, - 0.026538437426651806, - 0.022085584943350788, - 0.019975964205606586, - 0.019130742332801553, - 0.01846706399296761, - 0.017370926321795873, - 0.015868530591015156, - 0.014651562032101191, - 0.014836151355623717, - 0.017477737623616794, - 0.02319745972889781, - 0.031781384908897786, - 0.04222705605726701, - 0.05314502663426742, - 0.06325326254505188, - 0.07221748170693831, - 0.08124964264393163, - 0.0933651625454557, - 0.11327959098883605, - 0.14655210595799145, - 0.19870169365195386, - 0.2741132120770104, - 0.3741992713926896, - 0.49821102135627 - ], - "pressure:J23:branch103_seg0": [ - 8761.965879413381, - 10085.25735228728, - 11502.438670859165, - 12942.489056026672, - 14332.207883648993, - 15609.712427697803, - 16733.196607246835, - 17686.869059010864, - 18465.215823929284, - 19081.721948320675, - 19558.42055911898, - 19906.346068919327, - 20140.29855723219, - 20264.620114171415, - 20276.994899184563, - 20181.164388619807, - 19975.01754033323, - 19667.810767524352, - 19276.336007358776, - 18815.577118343255, - 18308.194815733597, - 17771.576387160356, - 17218.24334492497, - 16657.356175002078, - 16092.310709246824, - 15526.022825470107, - 14962.92975587418, - 14410.4396526828, - 13879.071212670904, - 13380.348728014955, - 12921.792082965245, - 12503.497713522545, - 12115.886302429333, - 11736.866257957277, - 11337.671182551667, - 10886.716348728149, - 10358.428314953813, - 9736.340496899456, - 9024.715717560657, - 8244.052919873027, - 7428.927123211273, - 6626.163947796754, - 5881.336744473176, - 5233.227076480575, - 4706.223091243705, - 4312.924440514842, - 4045.136119658574, - 3887.910444041159, - 3821.3728867228315, - 3822.2035098423244, - 3876.485635472559, - 3972.6929534132532, - 4104.54312578574, - 4268.659068280448, - 4457.531552981162, - 4661.780884152449, - 4866.631100114737, - 5054.251433385873, - 5207.791703589574, - 5315.492926574407, - 5371.331601261908, - 5378.523620734313, - 5349.127623570932, - 5295.694538141968, - 5233.12602482603, - 5171.825222240159, - 5114.968287340932, - 5059.898876487552, - 4999.504088160658, - 4925.631845779606, - 4833.403476571054, - 4722.787269122484, - 4600.764122059276, - 4478.523038188572, - 4368.644111462914, - 4281.501426657116, - 4222.347191049661, - 4189.0840959194375, - 4174.430687770983, - 4168.623911201202, - 4162.242248599398, - 4151.11138233016, - 4137.260616934736, - 4128.165737754814, - 4134.355066650253, - 4164.57656045723, - 4222.850089344083, - 4305.647073782501, - 4401.741268371511, - 4498.739121743736, - 4586.410169594993, - 4664.508283997637, - 4747.927208140648, - 4867.838245690442, - 5069.621053854876, - 5404.97465639515, - 5919.238067691411, - 6649.992530282476, - 7603.19871056429, - 8761.965879413381 - ], - "flow:branch37_seg0:J24": [ - 2.435188617522192, - 3.1444777885679773, - 3.9207359458395357, - 4.724973545356831, - 5.5152122498375125, - 6.25484785988328, - 6.916814472580796, - 7.486298959376389, - 7.95785080081028, - 8.336829828549908, - 8.632236410942477, - 8.852831018271733, - 9.007219803900712, - 9.098632752261928, - 9.12820455602202, - 9.09627430211695, - 9.002396303096347, - 8.8509284917885, - 8.648237532632573, - 8.40359110396663, - 8.128671432970057, - 7.833466875537871, - 7.526560046111868, - 7.213605888229119, - 6.897513888770933, - 6.58021492271654, - 6.26375065241442, - 5.951692155661998, - 5.649371924161715, - 5.363042029218671, - 5.097683908222526, - 4.8550842179133324, - 4.631671889063613, - 4.417595594414772, - 4.1982258891565625, - 3.9562681899528043, - 3.6758775977097624, - 3.346073739763807, - 2.965323010200886, - 2.5410348925313606, - 2.090405163664035, - 1.6371393970228825, - 1.2068632687667513, - 0.822812431005031, - 0.502215363877545, - 0.25413908532230234, - 0.07787278702214791, - -0.03255819367586007, - -0.0884038716285104, - -0.10156857462611052, - -0.08156516714954098, - -0.03601993339270627, - 0.031071255336321376, - 0.11690263442822244, - 0.21810357723321974, - 0.3300405947359734, - 0.44517877543346634, - 0.5542576284169067, - 0.6476753138211804, - 0.7176413581548903, - 0.7595119221690072, - 0.7736342664963213, - 0.7645228891449514, - 0.7391719906183977, - 0.7059184871191587, - 0.6711638635233084, - 0.6382475882413957, - 0.6069653827590714, - 0.5741377344332511, - 0.5354150438230915, - 0.4873210853611198, - 0.42887556794615017, - 0.3626495030652279, - 0.29393418545742933, - 0.22962421662484048, - 0.17603261520628666, - 0.1371120678925045, - 0.11312648044086128, - 0.1011984981045647, - 0.09617612977456154, - 0.0927041594239356, - 0.08745573193936494, - 0.08021455247020558, - 0.07408337788419678, - 0.07439375494563903, - 0.08644053954007162, - 0.11353079036480775, - 0.155018848598963, - 0.20635477660828733, - 0.26078953866805177, - 0.3118936567593539, - 0.357555515628636, - 0.40305257334452876, - 0.4625391308854447, - 0.5587252106286037, - 0.7190056251510593, - 0.9709389539746491, - 1.3370080212732893, - 1.826064820277328, - 2.435188617522192 - ], - "pressure:branch37_seg0:J24": [ - 8866.279815758553, - 10196.179384244902, - 11610.694039541351, - 13038.665164097909, - 14408.798432837095, - 15661.073327186214, - 16755.93728350677, - 17680.838789828067, - 18432.43842997635, - 19024.13372347616, - 19480.011288817008, - 19809.600507738498, - 20026.85988831058, - 20136.328067786435, - 20134.155439558228, - 20025.263217709722, - 19807.44641967452, - 19490.089494693533, - 19091.97062949552, - 18627.17435081833, - 18118.44824420855, - 17583.10544828759, - 17032.40001833797, - 16475.18499967334, - 15914.368893029901, - 15352.695289599274, - 14794.959489660632, - 14248.83557899645, - 13725.015135760881, - 13234.868648561227, - 12785.385106054573, - 12375.360047878818, - 11994.287361891022, - 11618.899949458155, - 11219.840101410571, - 10765.760447294164, - 10232.433763775884, - 9604.704319859224, - 8888.954493173524, - 8108.109291387852, - 7297.3997721387295, - 6504.444583212751, - 5774.3741665773, - 5144.5822745321975, - 4636.837718239417, - 4262.83469394691, - 4012.4174573091364, - 3869.0446141632383, - 3813.764365152816, - 3822.659906790479, - 3882.8485374035754, - 3983.846205628835, - 4119.134757534264, - 4285.992166288457, - 4476.427610924359, - 4680.510736467657, - 4883.359417641644, - 5066.927352522556, - 5214.697708288277, - 5315.772907383704, - 5365.143662835703, - 5366.640023082555, - 5333.500446094592, - 5278.183193786509, - 5215.206666626181, - 5154.585477270675, - 5098.5547703874145, - 5043.761004692882, - 4982.813700165007, - 4907.622048270074, - 4813.920521334753, - 4702.231493280794, - 4580.201227404605, - 4459.46846492571, - 4352.427634203675, - 4268.949439595156, - 4213.598641363948, - 4183.569838781358, - 4170.864052329001, - 4165.853731239942, - 4159.364939305208, - 4147.8453028781605, - 4134.105733085891, - 4126.116964569597, - 4134.50494133292, - 4167.615554244943, - 4228.660863623172, - 4313.437727861446, - 4409.881792415928, - 4505.697936099967, - 4591.424673281643, - 4668.120460312282, - 4752.438953152686, - 4877.171564168298, - 5088.752785632435, - 5439.274240114099, - 5971.641336676528, - 6722.4524100712315, - 7694.62876245527, - 8866.279815758553 - ], - "flow:J24:branch38_seg0": [ - 1.037755471437798, - 1.3392623530216863, - 1.668864553456932, - 2.009956124218892, - 2.344742926437136, - 2.657758891239613, - 2.937615711250395, - 3.178131770781192, - 3.3771183822835655, - 3.5369064040052356, - 3.6613544836570058, - 3.7541851957532044, - 3.8190246079933257, - 3.85722246589737, - 3.8692348894130704, - 3.855202915820121, - 3.814938866605785, - 3.7503150966179066, - 3.664058778665838, - 3.5601055556690753, - 3.443413982737447, - 3.3182097183223136, - 3.18810639189513, - 3.0554781291238435, - 2.921537805841889, - 2.7870940158645032, - 2.653016635341962, - 2.520830211418357, - 2.39280757736404, - 2.2716018974105765, - 2.1593165536960823, - 2.0566766654201056, - 1.9621281623014282, - 1.8714511295018947, - 1.7784053081089417, - 1.675643810983633, - 1.5564665271022564, - 1.4162591521668502, - 1.2544385454346163, - 1.0742230378998876, - 0.8829680276722207, - 0.690767992252454, - 0.5085058967594055, - 0.3460155082243865, - 0.21054495476740187, - 0.10589441500865909, - 0.03169449618280727, - -0.014644771573217915, - -0.0379104188400521, - -0.043163194376689674, - -0.034423261923891564, - -0.014897000671357323, - 0.01373039730054225, - 0.0502842621220012, - 0.0933324034017431, - 0.1408888455608867, - 0.18974231041221534, - 0.23595170131851242, - 0.2754433995488717, - 0.3049278300846498, - 0.3224673831764374, - 0.32824266249578105, - 0.3242009174932435, - 0.31332928714862796, - 0.29916701785802413, - 0.2844156675223586, - 0.27046715700478746, - 0.2572065497822722, - 0.24326460279116227, - 0.22678900729061874, - 0.2063157387466534, - 0.18144740810907198, - 0.15330075468054175, - 0.12414284532366235, - 0.09690628812045748, - 0.07426210009846516, - 0.05786708689882485, - 0.04780846474762432, - 0.042836659525790695, - 0.04075449326507038, - 0.03929213883818195, - 0.03705291421834813, - 0.03397045554301517, - 0.03138557754710242, - 0.03157425923210171, - 0.03678108760515177, - 0.048389023158199894, - 0.06609560278759154, - 0.08794170189433821, - 0.11104892327320942, - 0.13269868748546249, - 0.15203234757404627, - 0.17134813914826422, - 0.19671855011580328, - 0.2378396037698942, - 0.3063689675806076, - 0.41396837846690104, - 0.5701382652892748, - 0.7785338827243167, - 1.037755471437798 - ], - "pressure:J24:branch38_seg0": [ - 8866.279815758553, - 10196.179384244902, - 11610.694039541351, - 13038.665164097909, - 14408.798432837095, - 15661.073327186214, - 16755.93728350677, - 17680.838789828067, - 18432.43842997635, - 19024.13372347616, - 19480.011288817008, - 19809.600507738498, - 20026.85988831058, - 20136.328067786435, - 20134.155439558228, - 20025.263217709722, - 19807.44641967452, - 19490.089494693533, - 19091.97062949552, - 18627.17435081833, - 18118.44824420855, - 17583.10544828759, - 17032.40001833797, - 16475.18499967334, - 15914.368893029901, - 15352.695289599274, - 14794.959489660632, - 14248.83557899645, - 13725.015135760881, - 13234.868648561227, - 12785.385106054573, - 12375.360047878818, - 11994.287361891022, - 11618.899949458155, - 11219.840101410571, - 10765.760447294164, - 10232.433763775884, - 9604.704319859224, - 8888.954493173524, - 8108.109291387852, - 7297.3997721387295, - 6504.444583212751, - 5774.3741665773, - 5144.5822745321975, - 4636.837718239417, - 4262.83469394691, - 4012.4174573091364, - 3869.0446141632383, - 3813.764365152816, - 3822.659906790479, - 3882.8485374035754, - 3983.846205628835, - 4119.134757534264, - 4285.992166288457, - 4476.427610924359, - 4680.510736467657, - 4883.359417641644, - 5066.927352522556, - 5214.697708288277, - 5315.772907383704, - 5365.143662835703, - 5366.640023082555, - 5333.500446094592, - 5278.183193786509, - 5215.206666626181, - 5154.585477270675, - 5098.5547703874145, - 5043.761004692882, - 4982.813700165007, - 4907.622048270074, - 4813.920521334753, - 4702.231493280794, - 4580.201227404605, - 4459.46846492571, - 4352.427634203675, - 4268.949439595156, - 4213.598641363948, - 4183.569838781358, - 4170.864052329001, - 4165.853731239942, - 4159.364939305208, - 4147.8453028781605, - 4134.105733085891, - 4126.116964569597, - 4134.50494133292, - 4167.615554244943, - 4228.660863623172, - 4313.437727861446, - 4409.881792415928, - 4505.697936099967, - 4591.424673281643, - 4668.120460312282, - 4752.438953152686, - 4877.171564168298, - 5088.752785632435, - 5439.274240114099, - 5971.641336676528, - 6722.4524100712315, - 7694.62876245527, - 8866.279815758553 - ], - "flow:J24:branch102_seg0": [ - 1.3974331460843936, - 1.8052154355462902, - 2.2518713923826037, - 2.715017421137939, - 3.170469323400376, - 3.597088968643668, - 3.979198761330401, - 4.308167188595198, - 4.580732418526714, - 4.7999234245446685, - 4.97088192728547, - 5.098645822518527, - 5.188195195907385, - 5.241410286364555, - 5.258969666608948, - 5.241071386296831, - 5.187457436490564, - 5.100613395170594, - 4.984178753966734, - 4.8434855482975525, - 4.685257450232612, - 4.515257157215557, - 4.338453654216737, - 4.158127759105274, - 3.9759760829290425, - 3.793120906852038, - 3.610734017072457, - 3.4308619442436408, - 3.2565643467976755, - 3.0914401318080955, - 2.938367354526444, - 2.798407552493227, - 2.669543726762185, - 2.5461444649128784, - 2.41982058104762, - 2.2806243789691703, - 2.1194110706075064, - 1.9298145875969572, - 1.7108844647662698, - 1.4668118546314728, - 1.207437135991814, - 0.9463714047704285, - 0.6983573720073457, - 0.47679692278064456, - 0.2916704091101431, - 0.14824467031364322, - 0.04617829083934064, - -0.017913422102642153, - -0.050493452788458335, - -0.058405380249420845, - -0.047141905225649414, - -0.021122932721348936, - 0.017340858035779127, - 0.06661837230622124, - 0.12477117383147664, - 0.18915174917508665, - 0.2554364650212511, - 0.3183059270983942, - 0.3722319142723086, - 0.4127135280702405, - 0.4370445389925699, - 0.4453916040005401, - 0.44032197165170794, - 0.42584270346976966, - 0.40675146926113476, - 0.38674819600094984, - 0.3677804312366082, - 0.34975883297679905, - 0.33087313164208887, - 0.30862603653247267, - 0.2810053466144664, - 0.24742815983707828, - 0.20934874838468626, - 0.169791340133767, - 0.13271792850438302, - 0.10177051510782148, - 0.07924498099367965, - 0.06531801569323697, - 0.05836183857877401, - 0.05542163650949118, - 0.05341202058575366, - 0.050402817721016825, - 0.0462440969271904, - 0.04269780033709436, - 0.04281949571353731, - 0.04965945193491985, - 0.06514176720660785, - 0.0889232458113715, - 0.11841307471394918, - 0.1497406153948423, - 0.1791949692738914, - 0.2055231680545898, - 0.2317044341962645, - 0.26582058076964127, - 0.3208856068587095, - 0.4126366575704516, - 0.5569705755077482, - 0.7668697559840144, - 1.0475309375530113, - 1.3974331460843936 - ], - "pressure:J24:branch102_seg0": [ - 8866.279815758553, - 10196.179384244902, - 11610.694039541351, - 13038.665164097909, - 14408.798432837095, - 15661.073327186214, - 16755.93728350677, - 17680.838789828067, - 18432.43842997635, - 19024.13372347616, - 19480.011288817008, - 19809.600507738498, - 20026.85988831058, - 20136.328067786435, - 20134.155439558228, - 20025.263217709722, - 19807.44641967452, - 19490.089494693533, - 19091.97062949552, - 18627.17435081833, - 18118.44824420855, - 17583.10544828759, - 17032.40001833797, - 16475.18499967334, - 15914.368893029901, - 15352.695289599274, - 14794.959489660632, - 14248.83557899645, - 13725.015135760881, - 13234.868648561227, - 12785.385106054573, - 12375.360047878818, - 11994.287361891022, - 11618.899949458155, - 11219.840101410571, - 10765.760447294164, - 10232.433763775884, - 9604.704319859224, - 8888.954493173524, - 8108.109291387852, - 7297.3997721387295, - 6504.444583212751, - 5774.3741665773, - 5144.5822745321975, - 4636.837718239417, - 4262.83469394691, - 4012.4174573091364, - 3869.0446141632383, - 3813.764365152816, - 3822.659906790479, - 3882.8485374035754, - 3983.846205628835, - 4119.134757534264, - 4285.992166288457, - 4476.427610924359, - 4680.510736467657, - 4883.359417641644, - 5066.927352522556, - 5214.697708288277, - 5315.772907383704, - 5365.143662835703, - 5366.640023082555, - 5333.500446094592, - 5278.183193786509, - 5215.206666626181, - 5154.585477270675, - 5098.5547703874145, - 5043.761004692882, - 4982.813700165007, - 4907.622048270074, - 4813.920521334753, - 4702.231493280794, - 4580.201227404605, - 4459.46846492571, - 4352.427634203675, - 4268.949439595156, - 4213.598641363948, - 4183.569838781358, - 4170.864052329001, - 4165.853731239942, - 4159.364939305208, - 4147.8453028781605, - 4134.105733085891, - 4126.116964569597, - 4134.50494133292, - 4167.615554244943, - 4228.660863623172, - 4313.437727861446, - 4409.881792415928, - 4505.697936099967, - 4591.424673281643, - 4668.120460312282, - 4752.438953152686, - 4877.171564168298, - 5088.752785632435, - 5439.274240114099, - 5971.641336676528, - 6722.4524100712315, - 7694.62876245527, - 8866.279815758553 - ], - "flow:branch39_seg0:J25": [ - 3.031222009411537, - 3.9021311493552244, - 4.849735578220009, - 5.825721979754405, - 6.779163493366121, - 7.666709833034014, - 8.457346024852507, - 9.135233097079771, - 9.695750716638013, - 10.146626519649892, - 10.499445234934742, - 10.764713238432249, - 10.952407390664458, - 11.065896170009399, - 11.106013151713762, - 11.073001322207325, - 10.96618792472387, - 10.790958115581777, - 10.55504003863353, - 10.269385103557763, - 9.947828734962133, - 9.601873948088137, - 9.241298825534248, - 8.872428067325142, - 8.498404747939139, - 8.121435336076928, - 7.744054842423226, - 7.3707651598145265, - 7.008218323998471, - 6.664091388698823, - 6.344383132467039, - 6.051051639864743, - 5.779513478772157, - 5.517568497168294, - 5.247371409781217, - 4.948065803634514, - 4.600811996271775, - 4.192814298582143, - 3.722819931666208, - 3.2003359676118674, - 2.6465026189488374, - 2.0901795545974853, - 1.5623439730956643, - 1.0909447142855637, - 0.6965431425381837, - 0.39000762274132267, - 0.17016538610163134, - 0.029778116410803787, - -0.04468869527914307, - -0.06747352231924297, - -0.04971739489819265, - -0.00033109027160506686, - 0.07611130611928042, - 0.176366364728687, - 0.2962469823046441, - 0.42988096468705017, - 0.5678095223590438, - 0.6984874018509643, - 0.8100931179654586, - 0.8931686469417872, - 0.942254966134573, - 0.9579980247043808, - 0.9461189730321774, - 0.915200034750423, - 0.8753148946483192, - 0.8340114008963203, - 0.7950150385969756, - 0.757738013550427, - 0.7180640691968012, - 0.6706084755492306, - 0.6112380022316685, - 0.5389616861385296, - 0.4572051940070408, - 0.37264339298056803, - 0.29379181558530865, - 0.22830546220980383, - 0.1808441895620256, - 0.151494471296789, - 0.13652621978461055, - 0.12956849688115243, - 0.1241320566935236, - 0.11635700391652892, - 0.10626366824803501, - 0.09791210363773736, - 0.09797374085586674, - 0.11291050594378094, - 0.1465704320825813, - 0.1978835668035194, - 0.26099394150884936, - 0.32751238687558326, - 0.3896703210047192, - 0.4452621050834019, - 0.5013370216276957, - 0.5758696683067798, - 0.6972259571208456, - 0.8991872360936385, - 1.2151494127158913, - 1.6720474055598042, - 2.2791768974789077, - 3.031222009411537 - ], - "pressure:branch39_seg0:J25": [ - 9168.157672956777, - 10520.331103758404, - 11930.096352755145, - 13324.84118426492, - 14637.14556911525, - 15813.564896572405, - 16823.16375119892, - 17662.497416684997, - 18336.304219161808, - 18860.972586281736, - 19263.363233381486, - 19550.677080635855, - 19734.635187509273, - 19817.965391171358, - 19793.93553152774, - 19668.39891067929, - 19438.513687972765, - 19115.338477550053, - 18719.95604288652, - 18264.801972629342, - 17772.696764110657, - 17259.330058194973, - 16733.009791809083, - 16200.966089083793, - 15664.439675592324, - 15125.698787703803, - 14590.183249893287, - 14066.341330724917, - 13565.58257532327, - 13099.170476146066, - 12673.060603376956, - 12283.434504468172, - 11917.34398104661, - 11548.926730625128, - 11147.376009472224, - 10681.839844602873, - 10130.88996644244, - 9482.965330083865, - 8749.785331414318, - 7959.288741177115, - 7149.379536613652, - 6369.43576145763, - 5663.695200267103, - 5066.55682312326, - 4594.405067448134, - 4256.347513337249, - 4037.069105270963, - 3917.121702141592, - 3878.3871744347, - 3896.3985401071245, - 3960.9692790444315, - 4064.032555724439, - 4199.640031236877, - 4366.5763118874265, - 4556.081779044579, - 4756.781179123082, - 4952.87476911686, - 5125.506786937721, - 5258.568348010012, - 5342.728457436036, - 5375.3493713852, - 5362.444845277827, - 5319.523596887508, - 5259.398522220507, - 5196.184850535202, - 5138.414068661876, - 5085.96836554916, - 5033.473892988912, - 4972.3516558829715, - 4894.359142772283, - 4796.478162336289, - 4680.688266808497, - 4556.616716774663, - 4437.251172758812, - 4335.041824783068, - 4258.9352033385185, - 4211.822483746647, - 4188.991905204085, - 4180.547637281106, - 4176.629676018284, - 4168.5545340303215, - 4154.27490582839, - 4138.646971775003, - 4131.2586316691, - 4143.421947911188, - 4182.87327996895, - 4251.026839028917, - 4341.55773518214, - 4440.308851540305, - 4534.585825595034, - 4616.174999967087, - 4689.327550968162, - 4775.24229063715, - 4911.315166160073, - 5147.579869089511, - 5537.528499789352, - 6119.712880516132, - 6927.764452262515, - 7955.284531297517, - 9168.157672956777 - ], - "flow:J25:branch40_seg0": [ - 1.9135651610006912, - 2.474176412356408, - 3.0903523514908824, - 3.730952766123503, - 4.362642394926786, - 4.956092914112526, - 5.489450466506498, - 5.950379600141431, - 6.33452400348546, - 6.64563569292263, - 6.890575703976649, - 7.076501778852547, - 7.210046390949438, - 7.294040431884945, - 7.329523909153255, - 7.316625146519113, - 7.25505324220904, - 7.147806038698078, - 6.999511889025016, - 6.8171509702880035, - 6.6094665923193, - 6.3842253967986995, - 6.148150441062257, - 5.905758215037322, - 5.6595153829811995, - 5.411023986004698, - 5.16192413557774, - 4.914986217107192, - 4.674356869552654, - 4.444970692556939, - 4.230964265754714, - 4.034108082458392, - 3.8520979711649828, - 3.6778021762685675, - 3.500129184738215, - 3.305688016327685, - 3.081834386086519, - 2.8194748565429584, - 2.51645700795517, - 2.1777031227595005, - 1.8158702106865343, - 1.4489827974373675, - 1.0971838248928782, - 0.7792415215011507, - 0.5096073572125709, - 0.2965280325927096, - 0.14070220564010955, - 0.03818693172520915, - -0.01929470986896758, - -0.04087853070979389, - -0.034294940325303294, - -0.005705665418693546, - 0.04142362901129232, - 0.10469691486291786, - 0.18147537016079998, - 0.26805480428693257, - 0.35856227440676447, - 0.44565534676239843, - 0.5215689364005676, - 0.5797853962189535, - 0.6162442808090836, - 0.6307032282056866, - 0.6262587492355768, - 0.6082538211581414, - 0.5831558114255543, - 0.5561661580062974, - 0.5302073419549673, - 0.5053956741442548, - 0.47943413467696866, - 0.44894963266487664, - 0.4110882221305447, - 0.3648544165478356, - 0.3119968331064345, - 0.256521199672458, - 0.20382901610298612, - 0.15904542968279425, - 0.12557268560557955, - 0.10399984712127569, - 0.09233339919210054, - 0.08667045727264866, - 0.08278774770878167, - 0.07785236881472872, - 0.07142602470577303, - 0.06571876630011952, - 0.06481236406969162, - 0.07297051972227932, - 0.09302147751338441, - 0.12479527576552929, - 0.16502116554146135, - 0.2084613803821233, - 0.24993500044896488, - 0.2873867626624735, - 0.32440584098205366, - 0.371580239725874, - 0.44640707868759516, - 0.5704775410517078, - 0.76590701528013, - 1.051088172046028, - 1.43419758615907, - 1.9135651610006912 - ], - "pressure:J25:branch40_seg0": [ - 9168.157672956777, - 10520.331103758404, - 11930.096352755145, - 13324.84118426492, - 14637.14556911525, - 15813.564896572405, - 16823.16375119892, - 17662.497416684997, - 18336.304219161808, - 18860.972586281736, - 19263.363233381486, - 19550.677080635855, - 19734.635187509273, - 19817.965391171358, - 19793.93553152774, - 19668.39891067929, - 19438.513687972765, - 19115.338477550053, - 18719.95604288652, - 18264.801972629342, - 17772.696764110657, - 17259.330058194973, - 16733.009791809083, - 16200.966089083793, - 15664.439675592324, - 15125.698787703803, - 14590.183249893287, - 14066.341330724917, - 13565.58257532327, - 13099.170476146066, - 12673.060603376956, - 12283.434504468172, - 11917.34398104661, - 11548.926730625128, - 11147.376009472224, - 10681.839844602873, - 10130.88996644244, - 9482.965330083865, - 8749.785331414318, - 7959.288741177115, - 7149.379536613652, - 6369.43576145763, - 5663.695200267103, - 5066.55682312326, - 4594.405067448134, - 4256.347513337249, - 4037.069105270963, - 3917.121702141592, - 3878.3871744347, - 3896.3985401071245, - 3960.9692790444315, - 4064.032555724439, - 4199.640031236877, - 4366.5763118874265, - 4556.081779044579, - 4756.781179123082, - 4952.87476911686, - 5125.506786937721, - 5258.568348010012, - 5342.728457436036, - 5375.3493713852, - 5362.444845277827, - 5319.523596887508, - 5259.398522220507, - 5196.184850535202, - 5138.414068661876, - 5085.96836554916, - 5033.473892988912, - 4972.3516558829715, - 4894.359142772283, - 4796.478162336289, - 4680.688266808497, - 4556.616716774663, - 4437.251172758812, - 4335.041824783068, - 4258.9352033385185, - 4211.822483746647, - 4188.991905204085, - 4180.547637281106, - 4176.629676018284, - 4168.5545340303215, - 4154.27490582839, - 4138.646971775003, - 4131.2586316691, - 4143.421947911188, - 4182.87327996895, - 4251.026839028917, - 4341.55773518214, - 4440.308851540305, - 4534.585825595034, - 4616.174999967087, - 4689.327550968162, - 4775.24229063715, - 4911.315166160073, - 5147.579869089511, - 5537.528499789352, - 6119.712880516132, - 6927.764452262515, - 7955.284531297517, - 9168.157672956777 - ], - "flow:J25:branch110_seg0": [ - 1.1176568484108458, - 1.4279547369988166, - 1.7593832267291254, - 2.094769213630902, - 2.416521098439335, - 2.7106169189214895, - 2.967895558346009, - 3.184853496938341, - 3.361226713152552, - 3.5009908267272634, - 3.608869530958094, - 3.688211459579698, - 3.7423609997150216, - 3.7718557381244544, - 3.776489242560506, - 3.75637617568821, - 3.711134682514829, - 3.643152076883698, - 3.5555281496085134, - 3.452234133269758, - 3.3383621426428336, - 3.217648551289436, - 3.093148384471991, - 2.9666698522878234, - 2.83888936495794, - 2.7104113500722318, - 2.582130706845486, - 2.4557789427073353, - 2.3338614544458145, - 2.2191206961418843, - 2.1134188667123244, - 2.0169435574063495, - 1.9274155076071748, - 1.8397663208997266, - 1.7472422250430026, - 1.642377787306829, - 1.5189776101852566, - 1.3733394420391838, - 1.206362923711038, - 1.022632844852367, - 0.8306324082623031, - 0.6411967571601178, - 0.4651601482027859, - 0.3117031927844132, - 0.18693578532561275, - 0.09347959014861315, - 0.0294631804615218, - -0.008408815314405349, - -0.025393985410175485, - -0.026594991609449087, - -0.015422454572889365, - 0.0053745751470884815, - 0.0346876771079881, - 0.07166944986576915, - 0.1147716121438441, - 0.1618261604001176, - 0.2092472479522794, - 0.2528320550885657, - 0.28852418156489096, - 0.31338325072283363, - 0.3260106853254897, - 0.3272947964986942, - 0.31986022379660045, - 0.30694621359228186, - 0.29215908322276507, - 0.27784524289002305, - 0.26480769664200837, - 0.25234233940617234, - 0.23862993451983266, - 0.22165884288435397, - 0.20014978010112386, - 0.17410726959069392, - 0.14520836090060615, - 0.11612219330811004, - 0.08996279948232253, - 0.06926003252700957, - 0.05527150395644609, - 0.04749462417551328, - 0.04419282059250998, - 0.04289803960850372, - 0.04134430898474195, - 0.038504635101800216, - 0.03483764354226198, - 0.03219333733761785, - 0.03316137678617508, - 0.039939986221501605, - 0.053548954569196866, - 0.07308829103799014, - 0.09597277596738801, - 0.11905100649345995, - 0.1397353205557543, - 0.1578753424209285, - 0.1769311806456421, - 0.2042894285809058, - 0.2508188784332504, - 0.32870969504193104, - 0.44924239743576105, - 0.6209592335137762, - 0.8449793113198375, - 1.1176568484108458 - ], - "pressure:J25:branch110_seg0": [ - 9168.157672956777, - 10520.331103758404, - 11930.096352755145, - 13324.84118426492, - 14637.14556911525, - 15813.564896572405, - 16823.16375119892, - 17662.497416684997, - 18336.304219161808, - 18860.972586281736, - 19263.363233381486, - 19550.677080635855, - 19734.635187509273, - 19817.965391171358, - 19793.93553152774, - 19668.39891067929, - 19438.513687972765, - 19115.338477550053, - 18719.95604288652, - 18264.801972629342, - 17772.696764110657, - 17259.330058194973, - 16733.009791809083, - 16200.966089083793, - 15664.439675592324, - 15125.698787703803, - 14590.183249893287, - 14066.341330724917, - 13565.58257532327, - 13099.170476146066, - 12673.060603376956, - 12283.434504468172, - 11917.34398104661, - 11548.926730625128, - 11147.376009472224, - 10681.839844602873, - 10130.88996644244, - 9482.965330083865, - 8749.785331414318, - 7959.288741177115, - 7149.379536613652, - 6369.43576145763, - 5663.695200267103, - 5066.55682312326, - 4594.405067448134, - 4256.347513337249, - 4037.069105270963, - 3917.121702141592, - 3878.3871744347, - 3896.3985401071245, - 3960.9692790444315, - 4064.032555724439, - 4199.640031236877, - 4366.5763118874265, - 4556.081779044579, - 4756.781179123082, - 4952.87476911686, - 5125.506786937721, - 5258.568348010012, - 5342.728457436036, - 5375.3493713852, - 5362.444845277827, - 5319.523596887508, - 5259.398522220507, - 5196.184850535202, - 5138.414068661876, - 5085.96836554916, - 5033.473892988912, - 4972.3516558829715, - 4894.359142772283, - 4796.478162336289, - 4680.688266808497, - 4556.616716774663, - 4437.251172758812, - 4335.041824783068, - 4258.9352033385185, - 4211.822483746647, - 4188.991905204085, - 4180.547637281106, - 4176.629676018284, - 4168.5545340303215, - 4154.27490582839, - 4138.646971775003, - 4131.2586316691, - 4143.421947911188, - 4182.87327996895, - 4251.026839028917, - 4341.55773518214, - 4440.308851540305, - 4534.585825595034, - 4616.174999967087, - 4689.327550968162, - 4775.24229063715, - 4911.315166160073, - 5147.579869089511, - 5537.528499789352, - 6119.712880516132, - 6927.764452262515, - 7955.284531297517, - 9168.157672956777 - ], - "flow:branch40_seg0:J26": [ - 1.9080596564603929, - 2.4682748151086917, - 3.084314941377937, - 3.7251796665511145, - 4.357368617610304, - 4.951456801579867, - 5.485521984799038, - 5.947252419281818, - 6.331993868098642, - 6.643678371921335, - 6.889150389246225, - 7.075488055787133, - 7.209494011829213, - 7.293913597232261, - 7.329830377696673, - 7.317389364676152, - 7.25622577713352, - 7.149351778240231, - 7.001334192577119, - 6.81916438499191, - 6.611616535194187, - 6.386436388737321, - 6.150394803694814, - 5.908026298104314, - 5.661794671874243, - 5.41330663931263, - 5.164176843504424, - 4.9171635376952025, - 4.676406520102323, - 4.446863387112111, - 4.232676948826367, - 4.035690195276528, - 3.8536409146974377, - 3.6794098650189704, - 3.5019457284326507, - 3.3078345028051395, - 3.084382377565791, - 2.8224061708475836, - 2.519722169120102, - 2.1811315981269632, - 1.8192676222150235, - 1.4521700148617607, - 1.099972611707497, - 0.7814964073730234, - 0.511326210496384, - 0.2976997321537116, - 0.14137353754587464, - 0.03850195084365327, - -0.019271561043856765, - -0.04107830272903616, - -0.034650065594946634, - -0.006234224928384321, - 0.04077191958526214, - 0.10394041736477415, - 0.18062555352047793, - 0.26720104636107583, - 0.357771198117095, - 0.4449978413660459, - 0.5211019258267295, - 0.5795522442046872, - 0.6162075189472643, - 0.6308265605107322, - 0.6264948174290527, - 0.6085201335664888, - 0.5834146897211264, - 0.5564005888272571, - 0.5304232070486676, - 0.5056290310000885, - 0.47972442811302896, - 0.4493258205932003, - 0.4115458450808036, - 0.36537099318143496, - 0.31252735490492944, - 0.25700012290032065, - 0.20420755266560287, - 0.15930163386637122, - 0.1257162089200162, - 0.10404853391341103, - 0.09235024087071526, - 0.08669608818593663, - 0.08283531688033889, - 0.07792084155933898, - 0.0714832663855855, - 0.06571523594738203, - 0.0647074200316128, - 0.07273521364996464, - 0.09267861820333194, - 0.12438650160943106, - 0.16459961844655716, - 0.20808669249294998, - 0.24961733891519056, - 0.2870712438229757, - 0.3239657202648333, - 0.3708286592128894, - 0.445118869323001, - 0.5684076009816046, - 0.7629674365682578, - 1.0471884219689733, - 1.4293255837917924, - 1.9080596564603929 - ], - "pressure:branch40_seg0:J26": [ - 8540.659884455665, - 9794.081326211808, - 11134.656458290521, - 12494.187507439805, - 13804.166726330333, - 15007.14643121403, - 16064.885345621336, - 16963.272267218752, - 17698.65685947865, - 18284.079836620935, - 18740.10358036658, - 19077.073091074435, - 19308.465837973166, - 19438.301801433045, - 19464.21340958508, - 19389.69998242597, - 19212.56222373928, - 18941.210711039836, - 18591.368339266606, - 18176.09316655142, - 17715.93262306161, - 17226.87396385986, - 16720.004340273274, - 16203.739108648078, - 15681.2462356417, - 15155.275811868441, - 14630.197860108143, - 14113.060166934572, - 13613.804225253372, - 13143.27084766022, - 12708.68364813093, - 12310.22574170101, - 11939.157364773197, - 11575.20405327495, - 11191.657734542312, - 10759.170495950792, - 10253.94157248999, - 9660.3516382807, - 8982.017592861788, - 8237.710027264386, - 7459.167415760965, - 6689.892928868682, - 5972.659596054735, - 5344.334126283936, - 4828.200686913514, - 4437.443541112815, - 4165.475524908496, - 3998.490239640204, - 3918.8799999121047, - 3904.9027220839957, - 3943.4187170786595, - 4023.9072673876444, - 4139.978831368099, - 4288.374940118135, - 4462.0528518963765, - 4651.746869471809, - 4843.389801484342, - 5020.006355303771, - 5165.463343652706, - 5268.399564895771, - 5322.946691957524, - 5331.881509603449, - 5306.277227880675, - 5257.740596451966, - 5200.195797237902, - 5143.399834517167, - 5090.333025520839, - 5038.531654634182, - 4981.363656059876, - 4911.174976719489, - 4823.431064542455, - 4718.030727044299, - 4601.475510996734, - 4484.382859723176, - 4378.583169735757, - 4293.919872468419, - 4235.460860730894, - 4201.478249141321, - 4185.12931173438, - 4177.342239333899, - 4169.3639058177505, - 4157.189604894922, - 4142.704644291052, - 4132.928878821647, - 4137.761452805331, - 4165.481816867124, - 4219.906871399299, - 4297.775713850554, - 4388.57666956124, - 4480.68185001131, - 4564.45494739695, - 4639.686540413255, - 4720.438526267463, - 4836.155851706094, - 5029.732488511817, - 5350.292335638126, - 5840.235385397228, - 6535.26338372351, - 7441.465609318525, - 8540.659884455665 - ], - "flow:J26:branch41_seg0": [ - 0.9372543816257864, - 1.214266374389897, - 1.5199364659858712, - 1.8389588065839353, - 2.1546864864414865, - 2.4523284263134215, - 2.720716713143076, - 2.9533927333610137, - 3.147793459072656, - 3.3056442596473157, - 3.4302211154336577, - 3.5250690356378986, - 3.593586543993443, - 3.637235403186059, - 3.6566285668123846, - 3.6518415363348256, - 3.622713379949346, - 3.5706650007492726, - 3.497911087375494, - 3.407900492416203, - 3.304960642516812, - 3.1929882807417864, - 3.0754073954582695, - 2.954540244149934, - 2.8316804277516883, - 2.7076564415712325, - 2.583272273541616, - 2.459874580268118, - 2.3394910107878473, - 2.2245730685819782, - 2.1172113886405843, - 2.0183959167577727, - 1.9271081244643198, - 1.839937927914881, - 1.7514819460972972, - 1.655112210878233, - 1.544472443537649, - 1.4148873024861364, - 1.2650708847613676, - 1.0972134607162927, - 0.917412330227922, - 0.7345033034337315, - 0.5584673639474246, - 0.3987255187837989, - 0.2626682857644766, - 0.15456186111061276, - 0.07500090934878936, - 0.02219824401327334, - -0.007903181629064612, - -0.019812668694243456, - -0.017433057111532417, - -0.003919704623868741, - 0.01896438455811789, - 0.04996988263050212, - 0.08779436733044141, - 0.13065790334298627, - 0.17568109472507767, - 0.21925238743732328, - 0.2575048126809109, - 0.2871448235018001, - 0.3060383524900608, - 0.3139609446332882, - 0.31234474564091974, - 0.303778373188117, - 0.29147577606702735, - 0.27807023447337326, - 0.2650986339037029, - 0.25271273459868704, - 0.23983713571980292, - 0.22481699902354185, - 0.206197981748704, - 0.18342364957939758, - 0.15727549197906998, - 0.1296754276007828, - 0.10328575643159214, - 0.08068109192132637, - 0.06362044016614211, - 0.052482257859209756, - 0.046369671021319746, - 0.04337717925802179, - 0.0413992500392523, - 0.03897649226900575, - 0.03580648231522987, - 0.03290773336373884, - 0.03226565778359213, - 0.03600603234465722, - 0.04560536039827258, - 0.06107047690816828, - 0.08086973290405841, - 0.10244848090242838, - 0.12319721717722162, - 0.14197141308107314, - 0.16036130972998025, - 0.18341376820316155, - 0.21963306010142492, - 0.2796521833656413, - 0.3745698705057473, - 0.5136507007656018, - 0.7013292875214344, - 0.9372543816257864 - ], - "pressure:J26:branch41_seg0": [ - 8540.659884455665, - 9794.081326211808, - 11134.656458290521, - 12494.187507439805, - 13804.166726330333, - 15007.14643121403, - 16064.885345621336, - 16963.272267218752, - 17698.65685947865, - 18284.079836620935, - 18740.10358036658, - 19077.073091074435, - 19308.465837973166, - 19438.301801433045, - 19464.21340958508, - 19389.69998242597, - 19212.56222373928, - 18941.210711039836, - 18591.368339266606, - 18176.09316655142, - 17715.93262306161, - 17226.87396385986, - 16720.004340273274, - 16203.739108648078, - 15681.2462356417, - 15155.275811868441, - 14630.197860108143, - 14113.060166934572, - 13613.804225253372, - 13143.27084766022, - 12708.68364813093, - 12310.22574170101, - 11939.157364773197, - 11575.20405327495, - 11191.657734542312, - 10759.170495950792, - 10253.94157248999, - 9660.3516382807, - 8982.017592861788, - 8237.710027264386, - 7459.167415760965, - 6689.892928868682, - 5972.659596054735, - 5344.334126283936, - 4828.200686913514, - 4437.443541112815, - 4165.475524908496, - 3998.490239640204, - 3918.8799999121047, - 3904.9027220839957, - 3943.4187170786595, - 4023.9072673876444, - 4139.978831368099, - 4288.374940118135, - 4462.0528518963765, - 4651.746869471809, - 4843.389801484342, - 5020.006355303771, - 5165.463343652706, - 5268.399564895771, - 5322.946691957524, - 5331.881509603449, - 5306.277227880675, - 5257.740596451966, - 5200.195797237902, - 5143.399834517167, - 5090.333025520839, - 5038.531654634182, - 4981.363656059876, - 4911.174976719489, - 4823.431064542455, - 4718.030727044299, - 4601.475510996734, - 4484.382859723176, - 4378.583169735757, - 4293.919872468419, - 4235.460860730894, - 4201.478249141321, - 4185.12931173438, - 4177.342239333899, - 4169.3639058177505, - 4157.189604894922, - 4142.704644291052, - 4132.928878821647, - 4137.761452805331, - 4165.481816867124, - 4219.906871399299, - 4297.775713850554, - 4388.57666956124, - 4480.68185001131, - 4564.45494739695, - 4639.686540413255, - 4720.438526267463, - 4836.155851706094, - 5029.732488511817, - 5350.292335638126, - 5840.235385397228, - 6535.26338372351, - 7441.465609318525, - 8540.659884455665 - ], - "flow:J26:branch98_seg0": [ - 0.9708052748346065, - 1.2540084407187952, - 1.5643784753920653, - 1.8862208599671788, - 2.2026821311688174, - 2.4991283752664435, - 2.7648052716559612, - 2.9938596859208038, - 3.1842004090259857, - 3.3380341122740202, - 3.4589292738125677, - 3.5504190201492354, - 3.6159074678357683, - 3.6566781940462003, - 3.673201810884288, - 3.6655478283413263, - 3.633512397184172, - 3.578686777490958, - 3.503423105201624, - 3.411263892575708, - 3.306655892677374, - 3.193448107995534, - 3.0749874082365456, - 2.953486053954379, - 2.830114244122555, - 2.7056501977413965, - 2.580904569962809, - 2.457288957427084, - 2.3369155093144753, - 2.222290318530132, - 2.1154655601857844, - 2.017294278518755, - 1.9265327902331173, - 1.839471937104089, - 1.7504637823353528, - 1.6527222919269062, - 1.5399099340281415, - 1.407518868361447, - 1.254651284358734, - 1.0839181374106703, - 0.9018552919871015, - 0.7176667114280292, - 0.5415052477600721, - 0.3827708885892244, - 0.24865792473190745, - 0.14313787104309886, - 0.06637262819708525, - 0.016303706830379926, - -0.011368379414792153, - -0.02126563403479271, - -0.017217008483414214, - -0.0023145203045155808, - 0.021807535027144245, - 0.05397053473427203, - 0.0928311861900365, - 0.13654314301808962, - 0.1820901033920173, - 0.22574545392872256, - 0.2635971131458187, - 0.29240742070288717, - 0.31016916645720355, - 0.31686561587744383, - 0.31415007178813287, - 0.3047417603783719, - 0.2919389136540992, - 0.2783303543538839, - 0.2653245731449647, - 0.2529162964014014, - 0.23988729239322598, - 0.22450882156965843, - 0.20534786333209964, - 0.18194734360203738, - 0.15525186292585952, - 0.1273246952995379, - 0.10092179623401072, - 0.07862054194504485, - 0.062095768753874056, - 0.05156627605420127, - 0.04598056984939551, - 0.043318908927914845, - 0.0414360668410866, - 0.03894434929033322, - 0.03567678407035565, - 0.032807502583643185, - 0.032441762248020665, - 0.036729181305307425, - 0.04707325780505935, - 0.06331602470126278, - 0.08372988554249873, - 0.10563821159052163, - 0.12642012173796896, - 0.14509983074190247, - 0.16360441053485303, - 0.18741489100972786, - 0.2254858092215761, - 0.28875541761596324, - 0.38839756606251064, - 0.5335377212033717, - 0.7279962962703578, - 0.9708052748346065 - ], - "pressure:J26:branch98_seg0": [ - 8540.659884455665, - 9794.081326211808, - 11134.656458290521, - 12494.187507439805, - 13804.166726330333, - 15007.14643121403, - 16064.885345621336, - 16963.272267218752, - 17698.65685947865, - 18284.079836620935, - 18740.10358036658, - 19077.073091074435, - 19308.465837973166, - 19438.301801433045, - 19464.21340958508, - 19389.69998242597, - 19212.56222373928, - 18941.210711039836, - 18591.368339266606, - 18176.09316655142, - 17715.93262306161, - 17226.87396385986, - 16720.004340273274, - 16203.739108648078, - 15681.2462356417, - 15155.275811868441, - 14630.197860108143, - 14113.060166934572, - 13613.804225253372, - 13143.27084766022, - 12708.68364813093, - 12310.22574170101, - 11939.157364773197, - 11575.20405327495, - 11191.657734542312, - 10759.170495950792, - 10253.94157248999, - 9660.3516382807, - 8982.017592861788, - 8237.710027264386, - 7459.167415760965, - 6689.892928868682, - 5972.659596054735, - 5344.334126283936, - 4828.200686913514, - 4437.443541112815, - 4165.475524908496, - 3998.490239640204, - 3918.8799999121047, - 3904.9027220839957, - 3943.4187170786595, - 4023.9072673876444, - 4139.978831368099, - 4288.374940118135, - 4462.0528518963765, - 4651.746869471809, - 4843.389801484342, - 5020.006355303771, - 5165.463343652706, - 5268.399564895771, - 5322.946691957524, - 5331.881509603449, - 5306.277227880675, - 5257.740596451966, - 5200.195797237902, - 5143.399834517167, - 5090.333025520839, - 5038.531654634182, - 4981.363656059876, - 4911.174976719489, - 4823.431064542455, - 4718.030727044299, - 4601.475510996734, - 4484.382859723176, - 4378.583169735757, - 4293.919872468419, - 4235.460860730894, - 4201.478249141321, - 4185.12931173438, - 4177.342239333899, - 4169.3639058177505, - 4157.189604894922, - 4142.704644291052, - 4132.928878821647, - 4137.761452805331, - 4165.481816867124, - 4219.906871399299, - 4297.775713850554, - 4388.57666956124, - 4480.68185001131, - 4564.45494739695, - 4639.686540413255, - 4720.438526267463, - 4836.155851706094, - 5029.732488511817, - 5350.292335638126, - 5840.235385397228, - 6535.26338372351, - 7441.465609318525, - 8540.659884455665 - ], - "flow:branch42_seg0:J27": [ - 1.1771538354504678, - 1.5126620288967545, - 1.8755208411488629, - 2.2472596693943387, - 2.608360242156156, - 2.94247582746859, - 3.238122149836896, - 3.489816610719788, - 3.6960142772437, - 3.8601908796456885, - 3.9870527962655817, - 4.080531680091514, - 4.1445434967271355, - 4.180119185579816, - 4.18743122190181, - 4.166597110383023, - 4.1173014139787405, - 4.041933944964221, - 3.943738986297169, - 3.8271851329955267, - 3.6979144059881883, - 3.5604053041128667, - 3.4184073641651587, - 3.27425953922765, - 3.1290019616458893, - 2.9833952275185096, - 2.8383824502834827, - 2.695737375696559, - 2.5580828341340762, - 2.4283931271467813, - 2.308844254934611, - 2.1999326299164936, - 2.099512325972742, - 2.0024135249211232, - 1.9014203372461569, - 1.7883205826831783, - 1.6559710515961303, - 1.49979411286494, - 1.3200292105460025, - 1.1210419229643305, - 0.9116727145624026, - 0.703526828599935, - 0.508587432256158, - 0.3372762477064195, - 0.1968653992218448, - 0.09071870285338374, - 0.017465649411834653, - -0.026254848640106503, - -0.04607128153340943, - -0.047629607596973315, - -0.03502401027189038, - -0.011534668684931804, - 0.021339057580726604, - 0.06251595152948419, - 0.11038523138759328, - 0.16271144263292622, - 0.21578049645683903, - 0.26514365792981465, - 0.306354409622841, - 0.3360195788095392, - 0.35231772325523064, - 0.3558850226442753, - 0.349264467771166, - 0.3359132718707953, - 0.3197895652191667, - 0.30368045074551364, - 0.28879234395941994, - 0.274667183471139, - 0.25953664701307, - 0.2412629808749196, - 0.21832654217514882, - 0.19051317284326053, - 0.15936287220046075, - 0.12759320666435225, - 0.09853333167102875, - 0.07503955101892351, - 0.05870174733608092, - 0.0492685459606915, - 0.04508268851091399, - 0.043556555602647415, - 0.042180585235468665, - 0.03961845278814016, - 0.03608826994619386, - 0.033350207450933256, - 0.03409015654726513, - 0.040752214996892244, - 0.05466563224912547, - 0.07515661437164901, - 0.09972081882169748, - 0.1250304358103984, - 0.14815490614448992, - 0.1685256900337459, - 0.18929568420215961, - 0.21785345243834675, - 0.26548382874285104, - 0.345272632372836, - 0.4698499656539037, - 0.6491148399480599, - 0.8857580322256926, - 1.1771538354504678 - ], - "pressure:branch42_seg0:J27": [ - 9092.866555608274, - 10461.957312326449, - 11905.905168581383, - 13351.59706337934, - 14727.450260874975, - 15974.389666469286, - 17055.39389283456, - 17961.70405311612, - 18692.64221207863, - 19263.87519647103, - 19701.433316616254, - 20014.04987078552, - 20215.35244165545, - 20308.97460026769, - 20289.71654857315, - 20163.101578855978, - 19926.47578041501, - 19590.37542645163, - 19175.354321290088, - 18695.45289483706, - 18174.436970744122, - 17629.507483018275, - 17071.058942492473, - 16507.49316288844, - 15940.937608988408, - 15373.900977586987, - 14811.473872900015, - 14261.83073553115, - 13736.244389219379, - 13246.384537485013, - 12798.848671983144, - 12391.21819361768, - 12011.418809553717, - 11634.156233411546, - 11228.434535919783, - 10762.195515476684, - 10211.804836386154, - 9563.401550918812, - 8826.348050867507, - 8026.721123286117, - 7202.265708154138, - 6402.912167116916, - 5674.448450591775, - 5053.643964500921, - 4559.897849848328, - 4203.427764058488, - 3970.934070055644, - 3843.8094806841887, - 3802.673122846587, - 3822.5599592683143, - 3891.6133207608805, - 4000.149659715233, - 4142.022001431554, - 4315.217367484807, - 4511.246345457384, - 4719.517885238343, - 4924.40684201858, - 5107.127649875167, - 5251.023578436905, - 5345.8373451259795, - 5387.485780261003, - 5381.144753064253, - 5341.592252254637, - 5281.810104652102, - 5216.5742038567905, - 5155.483477733689, - 5099.718700431036, - 5044.859802780846, - 4982.72926808701, - 4904.910300132552, - 4807.586362660713, - 4691.974478997617, - 4566.850130042262, - 4444.761639393003, - 4338.459785292161, - 4257.6138974705245, - 4206.084974665303, - 4179.99161503539, - 4170.24954341597, - 4166.772627231691, - 4160.327432611096, - 4147.972173956526, - 4133.571894598819, - 4126.064499210385, - 4136.708996138065, - 4173.752332236237, - 4239.714318390342, - 4329.236556051577, - 4428.921684100207, - 4525.969452722695, - 4611.205388925748, - 4687.145632293306, - 4772.87670461407, - 4904.09908295857, - 5129.91339176363, - 5504.3034239022045, - 6069.235446464726, - 6860.717668468427, - 7877.706032020985, - 9092.866555608274 - ], - "flow:J27:branch43_seg0": [ - 0.6475639759276746, - 0.8310446525353187, - 1.0289159799589156, - 1.2311069651964472, - 1.4270034190780947, - 1.6077977644989494, - 1.7673788520954394, - 1.9029445327498054, - 2.0137563187194107, - 2.10181222392955, - 2.169738176048267, - 2.2196244013427817, - 2.253596280781553, - 2.2721567539364935, - 2.2753526861072695, - 2.2632684657479185, - 2.235715478401173, - 2.194052420056575, - 2.140090914131554, - 2.076268188430335, - 2.005686947734983, - 1.930755668884465, - 1.8534795379195135, - 1.7751000066115186, - 1.6961459975159192, - 1.6170226150667881, - 1.538250624119951, - 1.46081446960609, - 1.3861611898667514, - 1.3159154668428932, - 1.2512369920259745, - 1.1923448890315065, - 1.1380068256739464, - 1.0853293388000538, - 1.0303376132307434, - 0.9685471440069516, - 0.8961109710351964, - 0.8106077991575596, - 0.7122988873940649, - 0.6036771093581957, - 0.48965038536792743, - 0.3766058430724691, - 0.2710616235574042, - 0.1786341306991889, - 0.10318120267454127, - 0.04643944423357231, - 0.007528787344627667, - -0.015436790280468496, - -0.025554365689302118, - -0.025910722920198262, - -0.01867939572856821, - -0.005617507527938298, - 0.012496049817625692, - 0.035095849610632106, - 0.06128436746537869, - 0.08982939071897929, - 0.11867913988225337, - 0.14539312029203977, - 0.16755765288238827, - 0.18336093297242329, - 0.19185641868848044, - 0.19344950042886397, - 0.1895825586548411, - 0.18215131070499263, - 0.17331624388148337, - 0.16456538823475156, - 0.15650740656308942, - 0.14884936138184607, - 0.14059760374608601, - 0.13058102256196502, - 0.11799295352097235, - 0.10275084892558295, - 0.08573923960410364, - 0.06846665784493802, - 0.05275470897527563, - 0.040142039408125524, - 0.0314587287048248, - 0.026518408442574574, - 0.02438116964239021, - 0.02362183276025092, - 0.022877262279039946, - 0.021453716707951303, - 0.019513086309444948, - 0.018051584575558815, - 0.018551980269984898, - 0.022334154221962266, - 0.0300883335029261, - 0.04139781148669322, - 0.054848944160090056, - 0.06861611800891235, - 0.08112165691286066, - 0.09212062708741552, - 0.10342837256754976, - 0.11917353941923721, - 0.1455901856860557, - 0.18983822194386224, - 0.2587491632054775, - 0.35764371183607835, - 0.487779354622112, - 0.6475639759276746 - ], - "pressure:J27:branch43_seg0": [ - 9092.866555608274, - 10461.957312326449, - 11905.905168581383, - 13351.59706337934, - 14727.450260874975, - 15974.389666469286, - 17055.39389283456, - 17961.70405311612, - 18692.64221207863, - 19263.87519647103, - 19701.433316616254, - 20014.04987078552, - 20215.35244165545, - 20308.97460026769, - 20289.71654857315, - 20163.101578855978, - 19926.47578041501, - 19590.37542645163, - 19175.354321290088, - 18695.45289483706, - 18174.436970744122, - 17629.507483018275, - 17071.058942492473, - 16507.49316288844, - 15940.937608988408, - 15373.900977586987, - 14811.473872900015, - 14261.83073553115, - 13736.244389219379, - 13246.384537485013, - 12798.848671983144, - 12391.21819361768, - 12011.418809553717, - 11634.156233411546, - 11228.434535919783, - 10762.195515476684, - 10211.804836386154, - 9563.401550918812, - 8826.348050867507, - 8026.721123286117, - 7202.265708154138, - 6402.912167116916, - 5674.448450591775, - 5053.643964500921, - 4559.897849848328, - 4203.427764058488, - 3970.934070055644, - 3843.8094806841887, - 3802.673122846587, - 3822.5599592683143, - 3891.6133207608805, - 4000.149659715233, - 4142.022001431554, - 4315.217367484807, - 4511.246345457384, - 4719.517885238343, - 4924.40684201858, - 5107.127649875167, - 5251.023578436905, - 5345.8373451259795, - 5387.485780261003, - 5381.144753064253, - 5341.592252254637, - 5281.810104652102, - 5216.5742038567905, - 5155.483477733689, - 5099.718700431036, - 5044.859802780846, - 4982.72926808701, - 4904.910300132552, - 4807.586362660713, - 4691.974478997617, - 4566.850130042262, - 4444.761639393003, - 4338.459785292161, - 4257.6138974705245, - 4206.084974665303, - 4179.99161503539, - 4170.24954341597, - 4166.772627231691, - 4160.327432611096, - 4147.972173956526, - 4133.571894598819, - 4126.064499210385, - 4136.708996138065, - 4173.752332236237, - 4239.714318390342, - 4329.236556051577, - 4428.921684100207, - 4525.969452722695, - 4611.205388925748, - 4687.145632293306, - 4772.87670461407, - 4904.09908295857, - 5129.91339176363, - 5504.3034239022045, - 6069.235446464726, - 6860.717668468427, - 7877.706032020985, - 9092.866555608274 - ], - "flow:J27:branch134_seg0": [ - 0.5295898595227932, - 0.6816173763614355, - 0.8466048611899474, - 1.016152704197892, - 1.1813568230780607, - 1.334678062969641, - 1.4707432977414565, - 1.5868720779699825, - 1.6822579585242898, - 1.7583786557161387, - 1.8173146202173156, - 1.8609072787487333, - 1.890947215945584, - 1.9079624316433228, - 1.9120785357945405, - 1.9033286446351045, - 1.8815859355775675, - 1.8478815249076477, - 1.803648072165615, - 1.7509169445651913, - 1.6922274582532053, - 1.6296496352284024, - 1.5649278262456445, - 1.499159532616131, - 1.4328559641299703, - 1.3663726124517213, - 1.3001318261635313, - 1.2349229060904683, - 1.1719216442673248, - 1.112477660303888, - 1.0576072629086362, - 1.007587740884987, - 0.9615055002987959, - 0.9170841861210695, - 0.871082724015414, - 0.8197734386762268, - 0.7598600805609338, - 0.6891863137073805, - 0.6077303231519381, - 0.517364813606135, - 0.42202232919447524, - 0.32692098552746585, - 0.23752580869875398, - 0.1586421170072306, - 0.09368419654730353, - 0.04427925861981142, - 0.009936862067206982, - -0.01081805835963801, - -0.02051691584410732, - -0.021718884676775057, - -0.016344614543322176, - -0.0059171611569935065, - 0.008843007763100907, - 0.02742010191885209, - 0.04910086392221461, - 0.07288205191394698, - 0.09710135657458567, - 0.11975053763777484, - 0.13879675674045272, - 0.15265864583711586, - 0.16046130456675015, - 0.16243552221541138, - 0.15968190911632482, - 0.15376196116580274, - 0.14647332133768334, - 0.1391150625107621, - 0.1322849373963306, - 0.12581782208929293, - 0.11893904326698396, - 0.11068195831295458, - 0.10033358865417646, - 0.08776232391767755, - 0.07362363259635708, - 0.05912654881941429, - 0.045778622695753134, - 0.034897511610797995, - 0.027243018631256118, - 0.022750137518116925, - 0.02070151886852378, - 0.019934722842396505, - 0.01930332295642874, - 0.018164736080188856, - 0.01657518363674891, - 0.015298622875374436, - 0.015538176277280234, - 0.01841806077492998, - 0.02457729874619937, - 0.03375880288495579, - 0.0448718746616074, - 0.05641431780148608, - 0.0670332492316293, - 0.07640506294633036, - 0.08586731163460982, - 0.09867991301910954, - 0.11989364305679528, - 0.15543441042897374, - 0.21110080244842622, - 0.2914711281119815, - 0.39797867760358074, - 0.5295898595227932 - ], - "pressure:J27:branch134_seg0": [ - 9092.866555608274, - 10461.957312326449, - 11905.905168581383, - 13351.59706337934, - 14727.450260874975, - 15974.389666469286, - 17055.39389283456, - 17961.70405311612, - 18692.64221207863, - 19263.87519647103, - 19701.433316616254, - 20014.04987078552, - 20215.35244165545, - 20308.97460026769, - 20289.71654857315, - 20163.101578855978, - 19926.47578041501, - 19590.37542645163, - 19175.354321290088, - 18695.45289483706, - 18174.436970744122, - 17629.507483018275, - 17071.058942492473, - 16507.49316288844, - 15940.937608988408, - 15373.900977586987, - 14811.473872900015, - 14261.83073553115, - 13736.244389219379, - 13246.384537485013, - 12798.848671983144, - 12391.21819361768, - 12011.418809553717, - 11634.156233411546, - 11228.434535919783, - 10762.195515476684, - 10211.804836386154, - 9563.401550918812, - 8826.348050867507, - 8026.721123286117, - 7202.265708154138, - 6402.912167116916, - 5674.448450591775, - 5053.643964500921, - 4559.897849848328, - 4203.427764058488, - 3970.934070055644, - 3843.8094806841887, - 3802.673122846587, - 3822.5599592683143, - 3891.6133207608805, - 4000.149659715233, - 4142.022001431554, - 4315.217367484807, - 4511.246345457384, - 4719.517885238343, - 4924.40684201858, - 5107.127649875167, - 5251.023578436905, - 5345.8373451259795, - 5387.485780261003, - 5381.144753064253, - 5341.592252254637, - 5281.810104652102, - 5216.5742038567905, - 5155.483477733689, - 5099.718700431036, - 5044.859802780846, - 4982.72926808701, - 4904.910300132552, - 4807.586362660713, - 4691.974478997617, - 4566.850130042262, - 4444.761639393003, - 4338.459785292161, - 4257.6138974705245, - 4206.084974665303, - 4179.99161503539, - 4170.24954341597, - 4166.772627231691, - 4160.327432611096, - 4147.972173956526, - 4133.571894598819, - 4126.064499210385, - 4136.708996138065, - 4173.752332236237, - 4239.714318390342, - 4329.236556051577, - 4428.921684100207, - 4525.969452722695, - 4611.205388925748, - 4687.145632293306, - 4772.87670461407, - 4904.09908295857, - 5129.91339176363, - 5504.3034239022045, - 6069.235446464726, - 6860.717668468427, - 7877.706032020985, - 9092.866555608274 - ], - "flow:branch45_seg0:J28": [ - 1.829583774963638, - 2.345078825210663, - 2.8986772862900376, - 3.461965400330882, - 4.005100393475459, - 4.5037628420007385, - 4.941495598458901, - 5.311295739175523, - 5.611664769026798, - 5.848941807541905, - 6.030842518189103, - 6.163255119038695, - 6.252206610992092, - 6.298837853393559, - 6.303125512686186, - 6.265229750467034, - 6.184539606855929, - 6.065025469239736, - 5.9118022579842435, - 5.731824220862786, - 5.533882252909456, - 5.324585353716653, - 5.109452566505257, - 4.891760967241394, - 4.6727914030732745, - 4.453565379157468, - 4.235474404015431, - 4.021296900088426, - 3.815135788632324, - 3.621574772162714, - 3.4437882109711735, - 3.282261057543104, - 3.1332981153938717, - 2.988490894437701, - 2.8365048377291693, - 2.664659637868735, - 2.4622529087692584, - 2.2227588223524424, - 1.9473786125513923, - 1.643539963852116, - 1.3254716537102496, - 1.0114046722357017, - 0.7196567928819322, - 0.46580095583919, - 0.2603522688207521, - 0.10763662069252242, - 0.0046081882848433104, - -0.05429732758489238, - -0.07815547098234635, - -0.07566374527908423, - -0.052799120477774075, - -0.014404210669524246, - 0.03762075587140286, - 0.10179828478289837, - 0.17564262244932174, - 0.25573271909902484, - 0.33622122121372766, - 0.41021762352865965, - 0.4709775365498642, - 0.513535551077371, - 0.535409242550318, - 0.5379998850858054, - 0.5255950044420646, - 0.5036434573572186, - 0.4782934062534683, - 0.453634951241596, - 0.4312152451889606, - 0.4100268942985011, - 0.3871097879117111, - 0.3590909241158775, - 0.3237103239070834, - 0.280845944020594, - 0.23314264225254314, - 0.18495478248330477, - 0.14147884339207803, - 0.10701281919788183, - 0.08377112476146635, - 0.07102954930095405, - 0.06600199417120617, - 0.06454862450172193, - 0.06280494042922513, - 0.05891604712131976, - 0.05347814953484953, - 0.04945119646434362, - 0.051117342979973945, - 0.062199171973988804, - 0.0845567344688879, - 0.11684481503320313, - 0.15490126604968274, - 0.19348703777923734, - 0.22815569324560955, - 0.25837820950698354, - 0.2895525193855459, - 0.33363035655753703, - 0.40845394555939585, - 0.5342390884285443, - 0.730185943299562, - 1.0108447732400638, - 1.378937407849367, - 1.829583774963638 - ], - "pressure:branch45_seg0:J28": [ - 8921.573823281697, - 10275.378347058464, - 11715.219367917205, - 13167.44114421981, - 14557.090913878243, - 15823.390215731137, - 16926.743502385427, - 17853.662134305247, - 18602.799112167828, - 19190.478428796407, - 19639.632887167565, - 19962.9138346282, - 20174.92026373234, - 20278.699691434926, - 20271.889376985462, - 20156.84410655813, - 19931.64521213363, - 19607.052050776307, - 19199.26838072132, - 18724.9615221462, - 18207.412992265425, - 17663.5928677599, - 17106.06354763714, - 16543.028256685717, - 15977.111258720082, - 15410.836825177174, - 14848.422438130856, - 14297.545132249188, - 13769.200244882568, - 13275.153018103088, - 12822.871130585789, - 12411.757119764097, - 12030.871490828018, - 11656.560822402307, - 11258.512046274682, - 10804.095020441471, - 10267.432017993802, - 9633.366002236171, - 8908.217722944926, - 8114.711009563502, - 7290.743223267717, - 6484.967484913876, - 5744.271080392907, - 5107.143650837632, - 4597.203635862945, - 4224.563214471363, - 3978.2976837198307, - 3841.974367320114, - 3793.417530573693, - 3809.082950703894, - 3875.191501267735, - 3980.5199724510912, - 4119.828411640516, - 4290.228947828517, - 4484.357893505655, - 4692.530546665477, - 4899.301187656213, - 5086.3434399266125, - 5236.574809556027, - 5338.333142506484, - 5386.529098137676, - 5385.700159788079, - 5348.718679810943, - 5289.472386482981, - 5223.429187326611, - 5160.613074942498, - 5103.643121820078, - 5048.912949761924, - 4988.347271253317, - 4913.293236261771, - 4818.803956606365, - 4705.382925539324, - 4580.934658781494, - 4457.4154994414175, - 4348.060341589956, - 4263.324297837069, - 4207.96864817979, - 4179.042826750627, - 4168.3075393563, - 4165.228640448986, - 4160.10624759948, - 4149.073952238296, - 4134.848028149169, - 4125.8352700267515, - 4133.310658794655, - 4166.329683677143, - 4228.554350316558, - 4315.476902278968, - 4415.018791194541, - 4513.765224604634, - 4601.265473210611, - 4678.084889081718, - 4760.864243616607, - 4883.088689927863, - 5092.740223687347, - 5442.964185711563, - 5980.228669635219, - 6741.169760337381, - 7728.11858054374, - 8921.573823281697 - ], - "flow:J28:branch46_seg0": [ - 0.8503901995160029, - 1.0900641550346968, - 1.3474860914271112, - 1.6094379056944963, - 1.8620385076273542, - 2.0939751064458747, - 2.297588945233977, - 2.4696127759204334, - 2.609348242868305, - 2.7197413472882745, - 2.804373537944255, - 2.8659921616648707, - 2.9074004635691835, - 2.929132038972835, - 2.931182307058253, - 2.9136204156068684, - 2.8761643402105466, - 2.82065534298451, - 2.7494638828737434, - 2.6658250167531374, - 2.5738216503900064, - 2.476527911376235, - 2.3765134943069453, - 2.275303048479848, - 2.1734947384786074, - 2.0715635927408282, - 1.9701551271075757, - 1.8705596306587664, - 1.774683561515234, - 1.6846584420414674, - 1.601963250691062, - 1.5268290547682832, - 1.4575426511174863, - 1.390200872128427, - 1.3195359785815903, - 1.2396510672580487, - 1.1455635942341142, - 1.034232259728618, - 0.9062032362685429, - 0.7649194920008209, - 0.6169924612185815, - 0.4708953524060539, - 0.3351503763693106, - 0.21700777324289247, - 0.12137006150151568, - 0.05025619117084964, - 0.0022620926263523947, - -0.025195623827000593, - -0.03633924540807077, - -0.03521206408569206, - -0.024600692243436396, - -0.006760108220457283, - 0.017424567515541212, - 0.04726334107307314, - 0.08160312871726864, - 0.11885406312654058, - 0.15629806672342783, - 0.1907316712904168, - 0.21901662944832356, - 0.2388397421006998, - 0.24904263595068268, - 0.2502732542014014, - 0.24452039661746525, - 0.2343191946547237, - 0.22252976229080415, - 0.21105688821263197, - 0.2006247352532008, - 0.19076793265511688, - 0.18011135166423378, - 0.16708599893381976, - 0.150638075747968, - 0.13070799180767312, - 0.10852215741080243, - 0.08610398170787859, - 0.06587082997819334, - 0.04982390598086338, - 0.03899642999682241, - 0.033055601002744246, - 0.03070836986262944, - 0.030029139088567965, - 0.02921968152811846, - 0.027413882933743507, - 0.02488533266346046, - 0.02300825800461953, - 0.023773580248821338, - 0.028914620913523714, - 0.03929997265103598, - 0.054307638360904, - 0.0720058281684797, - 0.08995729275383581, - 0.10609108698246944, - 0.12015502992909058, - 0.1346513363059894, - 0.15513087150040705, - 0.18988636655404575, - 0.24831858324227613, - 0.3393648090925241, - 0.46979466599806696, - 0.6408894469016148, - 0.8503901995160029 - ], - "pressure:J28:branch46_seg0": [ - 8921.573823281697, - 10275.378347058464, - 11715.219367917205, - 13167.44114421981, - 14557.090913878243, - 15823.390215731137, - 16926.743502385427, - 17853.662134305247, - 18602.799112167828, - 19190.478428796407, - 19639.632887167565, - 19962.9138346282, - 20174.92026373234, - 20278.699691434926, - 20271.889376985462, - 20156.84410655813, - 19931.64521213363, - 19607.052050776307, - 19199.26838072132, - 18724.9615221462, - 18207.412992265425, - 17663.5928677599, - 17106.06354763714, - 16543.028256685717, - 15977.111258720082, - 15410.836825177174, - 14848.422438130856, - 14297.545132249188, - 13769.200244882568, - 13275.153018103088, - 12822.871130585789, - 12411.757119764097, - 12030.871490828018, - 11656.560822402307, - 11258.512046274682, - 10804.095020441471, - 10267.432017993802, - 9633.366002236171, - 8908.217722944926, - 8114.711009563502, - 7290.743223267717, - 6484.967484913876, - 5744.271080392907, - 5107.143650837632, - 4597.203635862945, - 4224.563214471363, - 3978.2976837198307, - 3841.974367320114, - 3793.417530573693, - 3809.082950703894, - 3875.191501267735, - 3980.5199724510912, - 4119.828411640516, - 4290.228947828517, - 4484.357893505655, - 4692.530546665477, - 4899.301187656213, - 5086.3434399266125, - 5236.574809556027, - 5338.333142506484, - 5386.529098137676, - 5385.700159788079, - 5348.718679810943, - 5289.472386482981, - 5223.429187326611, - 5160.613074942498, - 5103.643121820078, - 5048.912949761924, - 4988.347271253317, - 4913.293236261771, - 4818.803956606365, - 4705.382925539324, - 4580.934658781494, - 4457.4154994414175, - 4348.060341589956, - 4263.324297837069, - 4207.96864817979, - 4179.042826750627, - 4168.3075393563, - 4165.228640448986, - 4160.10624759948, - 4149.073952238296, - 4134.848028149169, - 4125.8352700267515, - 4133.310658794655, - 4166.329683677143, - 4228.554350316558, - 4315.476902278968, - 4415.018791194541, - 4513.765224604634, - 4601.265473210611, - 4678.084889081718, - 4760.864243616607, - 4883.088689927863, - 5092.740223687347, - 5442.964185711563, - 5980.228669635219, - 6741.169760337381, - 7728.11858054374, - 8921.573823281697 - ], - "flow:J28:branch89_seg0": [ - 0.9791935754476354, - 1.2550146701759666, - 1.5511911948629264, - 1.8525274946363857, - 2.143061885848105, - 2.409787735554864, - 2.6439066532249234, - 2.8416829632550904, - 3.0023165261584914, - 3.129200460253632, - 3.226468980244848, - 3.297262957373825, - 3.344806147422908, - 3.369705814420724, - 3.3719432056279333, - 3.351609334860166, - 3.3083752666453816, - 3.2443701262552276, - 3.1623383751105005, - 3.0659992041096493, - 2.960060602519451, - 2.8480574423404197, - 2.7329390721983122, - 2.616457918761545, - 2.4992966645946693, - 2.3820017864166405, - 2.2653192769078556, - 2.15073726942966, - 2.0404522271170897, - 1.9369163301212464, - 1.841824960280111, - 1.75543200277482, - 1.6757554642763857, - 1.598290022309274, - 1.5169688591475785, - 1.4250085706106868, - 1.316689314535144, - 1.1885265626238242, - 1.0411753762828497, - 0.8786204718512953, - 0.708479192491668, - 0.5405093198296478, - 0.3845064165126215, - 0.24879318259629757, - 0.1389822073192364, - 0.05738042952167278, - 0.002346095658490916, - -0.02910170375789178, - -0.04181622557427558, - -0.04045168119339215, - -0.02819842823433768, - -0.007644102449066961, - 0.020196188355861653, - 0.05453494370982525, - 0.09403949373205311, - 0.1368786559724843, - 0.17992315449029983, - 0.21948595223824283, - 0.2519609071015406, - 0.2746958089766712, - 0.28636660659963525, - 0.2877266308844039, - 0.2810746078245994, - 0.2693242627024949, - 0.25576364396266416, - 0.2425780630289641, - 0.23059050993575972, - 0.2192589616433842, - 0.20699843624747732, - 0.19200492518205772, - 0.1730722481591153, - 0.15013795221292087, - 0.12462048484174068, - 0.09885080077542616, - 0.07560801341388469, - 0.05718891321701847, - 0.044774694764643935, - 0.03797394829820981, - 0.03529362430857671, - 0.03451948541315394, - 0.03358525890110667, - 0.031502164187576245, - 0.02859281687138908, - 0.026442938459724077, - 0.02734376273115261, - 0.03328455106046509, - 0.04525676181785194, - 0.06253717667229912, - 0.08289543788120304, - 0.10352974502540147, - 0.12206460626314013, - 0.13822317957789304, - 0.15490118307955644, - 0.17849948505713006, - 0.2185675790053501, - 0.2859205051862682, - 0.39082113420703785, - 0.5410501072419973, - 0.7380479609477524, - 0.9791935754476354 - ], - "pressure:J28:branch89_seg0": [ - 8921.573823281697, - 10275.378347058464, - 11715.219367917205, - 13167.44114421981, - 14557.090913878243, - 15823.390215731137, - 16926.743502385427, - 17853.662134305247, - 18602.799112167828, - 19190.478428796407, - 19639.632887167565, - 19962.9138346282, - 20174.92026373234, - 20278.699691434926, - 20271.889376985462, - 20156.84410655813, - 19931.64521213363, - 19607.052050776307, - 19199.26838072132, - 18724.9615221462, - 18207.412992265425, - 17663.5928677599, - 17106.06354763714, - 16543.028256685717, - 15977.111258720082, - 15410.836825177174, - 14848.422438130856, - 14297.545132249188, - 13769.200244882568, - 13275.153018103088, - 12822.871130585789, - 12411.757119764097, - 12030.871490828018, - 11656.560822402307, - 11258.512046274682, - 10804.095020441471, - 10267.432017993802, - 9633.366002236171, - 8908.217722944926, - 8114.711009563502, - 7290.743223267717, - 6484.967484913876, - 5744.271080392907, - 5107.143650837632, - 4597.203635862945, - 4224.563214471363, - 3978.2976837198307, - 3841.974367320114, - 3793.417530573693, - 3809.082950703894, - 3875.191501267735, - 3980.5199724510912, - 4119.828411640516, - 4290.228947828517, - 4484.357893505655, - 4692.530546665477, - 4899.301187656213, - 5086.3434399266125, - 5236.574809556027, - 5338.333142506484, - 5386.529098137676, - 5385.700159788079, - 5348.718679810943, - 5289.472386482981, - 5223.429187326611, - 5160.613074942498, - 5103.643121820078, - 5048.912949761924, - 4988.347271253317, - 4913.293236261771, - 4818.803956606365, - 4705.382925539324, - 4580.934658781494, - 4457.4154994414175, - 4348.060341589956, - 4263.324297837069, - 4207.96864817979, - 4179.042826750627, - 4168.3075393563, - 4165.228640448986, - 4160.10624759948, - 4149.073952238296, - 4134.848028149169, - 4125.8352700267515, - 4133.310658794655, - 4166.329683677143, - 4228.554350316558, - 4315.476902278968, - 4415.018791194541, - 4513.765224604634, - 4601.265473210611, - 4678.084889081718, - 4760.864243616607, - 4883.088689927863, - 5092.740223687347, - 5442.964185711563, - 5980.228669635219, - 6741.169760337381, - 7728.11858054374, - 8921.573823281697 - ], - "flow:branch49_seg0:J29": [ - 0.638260408636253, - 0.8400431290538642, - 1.0848397668157466, - 1.367789492387499, - 1.6804081679544103, - 2.0118757944232093, - 2.3504245653253437, - 2.6847617104151285, - 3.005104974760225, - 3.304126860195044, - 3.5767479055738365, - 3.819973017010409, - 4.032338102073776, - 4.2130468926073, - 4.361725216675419, - 4.478034434906095, - 4.561734412155137, - 4.613067713831651, - 4.632800661837661, - 4.622638319230159, - 4.585127821199507, - 4.523399552905804, - 4.440957438022839, - 4.3412099480037405, - 4.227245086116865, - 4.101750364933802, - 3.967076122095958, - 3.8254745135045187, - 3.6793010545802507, - 3.5311088314459873, - 3.383502694474363, - 3.238831746937057, - 3.098646694199747, - 2.9632271553540415, - 2.831279361727695, - 2.69991769309512, - 2.5650716542801395, - 2.4222422900122726, - 2.267503533606085, - 2.098349010182274, - 1.9145486420299411, - 1.7183437310510992, - 1.5142806936113817, - 1.3085504174265596, - 1.1081026284834588, - 0.9195170427606109, - 0.7481935600597199, - 0.5979220252954889, - 0.4705119316350943, - 0.3662498626555705, - 0.28426185044502844, - 0.2229967750644427, - 0.18079004039622762, - 0.15593097546735182, - 0.14672657812582146, - 0.15133787005743077, - 0.1674879448853754, - 0.19238645266032617, - 0.22275055367039917, - 0.2550639397706909, - 0.28595549504472034, - 0.312707474408985, - 0.3335309805095248, - 0.34774615038410717, - 0.3556923380404665, - 0.35834473933669064, - 0.3569080034506923, - 0.35237234340446183, - 0.34522341962183206, - 0.33539898684565644, - 0.32245072901229554, - 0.30588935931234057, - 0.28554473648585826, - 0.26181194875418734, - 0.23574582099841304, - 0.2088823397316877, - 0.1829118108457247, - 0.1592700893978814, - 0.1388530171496986, - 0.12182924942807656, - 0.10776784792709357, - 0.09593347896794972, - 0.08566277708197624, - 0.0767190490659235, - 0.06946198214576256, - 0.06475881515311618, - 0.0636975795680415, - 0.0671252162172304, - 0.07529936535299503, - 0.08770472318509695, - 0.10321540118127788, - 0.12063037248185017, - 0.1394377902405433, - 0.16062430915287615, - 0.1873159697709178, - 0.22490080139588386, - 0.28077506589287843, - 0.3632791116415414, - 0.4803281112536423, - 0.638260408636253 - ], - "pressure:branch49_seg0:J29": [ - 5866.352831788457, - 6449.308814525511, - 7148.940442562021, - 7949.67506505139, - 8826.253833407545, - 9747.754204886056, - 10681.56834757846, - 11597.459840137142, - 12469.426109649192, - 13278.783552141598, - 14013.17847470508, - 14665.113875294139, - 15231.406652257981, - 15710.18795489969, - 16100.36031433718, - 16401.266749765247, - 16612.19094719344, - 16734.11267255423, - 16769.785659657526, - 16724.26338234623, - 16605.132642578636, - 16421.319322864314, - 16182.512777526408, - 15898.029126409778, - 15576.110548997927, - 15223.925916054528, - 14847.821114338447, - 14454.003811307244, - 14049.070129121425, - 13640.179784196514, - 13234.456177282525, - 12838.059955286031, - 12454.676803658362, - 12084.132447976846, - 11721.888039924013, - 11359.095932727922, - 10984.059013830672, - 10584.293748443804, - 10149.670119140825, - 9674.449128777374, - 9159.384233921524, - 8612.258139223291, - 8046.822807186772, - 7480.885027195097, - 6933.673566252888, - 6422.961912032874, - 5962.615317338268, - 5561.994273141083, - 5225.048798722058, - 4951.59735704935, - 4738.787212052526, - 4582.06403563976, - 4476.808492953268, - 4418.371455569701, - 4401.985888048219, - 4422.463128546805, - 4473.221862294172, - 4546.220851686366, - 4632.1737787841985, - 4721.389268703554, - 4804.770906671317, - 4875.3035975566745, - 4928.806350843003, - 4963.970672658799, - 4982.285621626819, - 4986.745527923763, - 4980.634982485919, - 4966.455197795633, - 4945.2052436352715, - 4916.400306296099, - 4878.671171940745, - 4830.736161599344, - 4772.424527916803, - 4705.217260158579, - 4632.384722134918, - 4558.369578193174, - 4487.820798247714, - 4424.418284642708, - 4370.232840895152, - 4325.317952324435, - 4288.162592545756, - 4256.67798725741, - 4229.199611875881, - 4205.401133180483, - 4186.6435268025225, - 4175.546155143433, - 4175.123745119047, - 4187.465117669209, - 4212.784733711648, - 4249.249829125052, - 4293.502900444512, - 4342.380957640795, - 4395.144750858313, - 4455.634824135229, - 4533.8759512868, - 4646.083346517665, - 4813.496563512541, - 5059.503072807464, - 5405.1137790128, - 5866.352831788457 - ], - "flow:J29:branch50_seg0": [ - 0.2219844358187029, - 0.29210047267382894, - 0.37708441163569784, - 0.47522897772856837, - 0.5835744076383458, - 0.6983622867836078, - 0.8155167800009395, - 0.9311374798257276, - 1.0418505404632243, - 1.145138641672309, - 1.2392618216622833, - 1.3231959552015673, - 1.3964456926381834, - 1.4587397848211532, - 1.509950837860431, - 1.5499636685756149, - 1.578695529956538, - 1.596234834229628, - 1.6028511029187906, - 1.5991396653162941, - 1.5859879513111936, - 1.5644815133473369, - 1.5358338623169716, - 1.5012229290624828, - 1.4617138638734422, - 1.4182335543041857, - 1.3715928464002765, - 1.3225702994368418, - 1.2719815868219106, - 1.2207111564975694, - 1.169659859206186, - 1.1196378123609267, - 1.0711755792906203, - 1.024360338218967, - 0.9787340322157391, - 0.933288185430188, - 0.886607828404832, - 0.8371347197451313, - 0.783516434197021, - 0.724896469927067, - 0.6612105815350181, - 0.5932510756890245, - 0.5226049950908208, - 0.45142357567988406, - 0.38211484863967327, - 0.31695202308683273, - 0.25779356250250907, - 0.20594085567218592, - 0.16200739662647595, - 0.12608231536801198, - 0.09785766999152139, - 0.07679256367732364, - 0.062311063986528054, - 0.053821611725378575, - 0.05073759967542884, - 0.05242180485218358, - 0.058083057069183444, - 0.06675203408261764, - 0.07728980253300578, - 0.08847873529671242, - 0.09915379447588767, - 0.1083794940446838, - 0.11554390716952387, - 0.12041867107189927, - 0.12312783210686648, - 0.12401248098096963, - 0.1234900299267295, - 0.12190116908577774, - 0.11941032288113625, - 0.11599239176601643, - 0.11149015136143069, - 0.10573454367072953, - 0.0986695520598378, - 0.09043580659758656, - 0.0814025905960732, - 0.0721042193983351, - 0.06312605782364067, - 0.0549624637152251, - 0.04791953453793026, - 0.04205092439129618, - 0.03720360791027447, - 0.0331218777198208, - 0.02957733756479167, - 0.02649131954805068, - 0.023992372252727632, - 0.02238357336147262, - 0.022042291641657535, - 0.02325934890554956, - 0.026119245521727112, - 0.03043873855408099, - 0.03582467496509588, - 0.04186201467887648, - 0.04837967040333704, - 0.05573027530677593, - 0.06501061250631235, - 0.07809990059142398, - 0.09756953811932075, - 0.12631099865843612, - 0.16705543802871065, - 0.2219844358187029 - ], - "pressure:J29:branch50_seg0": [ - 5866.352831788457, - 6449.308814525511, - 7148.940442562021, - 7949.67506505139, - 8826.253833407545, - 9747.754204886056, - 10681.56834757846, - 11597.459840137142, - 12469.426109649192, - 13278.783552141598, - 14013.17847470508, - 14665.113875294139, - 15231.406652257981, - 15710.18795489969, - 16100.36031433718, - 16401.266749765247, - 16612.19094719344, - 16734.11267255423, - 16769.785659657526, - 16724.26338234623, - 16605.132642578636, - 16421.319322864314, - 16182.512777526408, - 15898.029126409778, - 15576.110548997927, - 15223.925916054528, - 14847.821114338447, - 14454.003811307244, - 14049.070129121425, - 13640.179784196514, - 13234.456177282525, - 12838.059955286031, - 12454.676803658362, - 12084.132447976846, - 11721.888039924013, - 11359.095932727922, - 10984.059013830672, - 10584.293748443804, - 10149.670119140825, - 9674.449128777374, - 9159.384233921524, - 8612.258139223291, - 8046.822807186772, - 7480.885027195097, - 6933.673566252888, - 6422.961912032874, - 5962.615317338268, - 5561.994273141083, - 5225.048798722058, - 4951.59735704935, - 4738.787212052526, - 4582.06403563976, - 4476.808492953268, - 4418.371455569701, - 4401.985888048219, - 4422.463128546805, - 4473.221862294172, - 4546.220851686366, - 4632.1737787841985, - 4721.389268703554, - 4804.770906671317, - 4875.3035975566745, - 4928.806350843003, - 4963.970672658799, - 4982.285621626819, - 4986.745527923763, - 4980.634982485919, - 4966.455197795633, - 4945.2052436352715, - 4916.400306296099, - 4878.671171940745, - 4830.736161599344, - 4772.424527916803, - 4705.217260158579, - 4632.384722134918, - 4558.369578193174, - 4487.820798247714, - 4424.418284642708, - 4370.232840895152, - 4325.317952324435, - 4288.162592545756, - 4256.67798725741, - 4229.199611875881, - 4205.401133180483, - 4186.6435268025225, - 4175.546155143433, - 4175.123745119047, - 4187.465117669209, - 4212.784733711648, - 4249.249829125052, - 4293.502900444512, - 4342.380957640795, - 4395.144750858313, - 4455.634824135229, - 4533.8759512868, - 4646.083346517665, - 4813.496563512541, - 5059.503072807464, - 5405.1137790128, - 5866.352831788457 - ], - "flow:J29:branch88_seg0": [ - 0.41627597281755013, - 0.5479426563800353, - 0.7077553551800487, - 0.8925605146589306, - 1.0968337603160645, - 1.3135135076396012, - 1.5349077853244044, - 1.7536242305894012, - 1.9632544342970006, - 2.158988218522735, - 2.3374860839115543, - 2.4967770618088414, - 2.635892409435593, - 2.7543071077861487, - 2.851774378814987, - 2.9280707663304812, - 2.9830388821985987, - 3.016832879602025, - 3.0299495589188714, - 3.0234986539138644, - 2.9991398698883125, - 2.9589180395584664, - 2.9051235757058667, - 2.8399870189412564, - 2.765531222243423, - 2.6835168106296163, - 2.595483275695682, - 2.502904214067676, - 2.407319467758339, - 2.3103976749484176, - 2.2138428352681756, - 2.119193934576131, - 2.027471114909127, - 1.938866817135074, - 1.852545329511955, - 1.7666295076649323, - 1.6784638258753068, - 1.585107570267141, - 1.483987099409065, - 1.3734525402552062, - 1.2533380604949234, - 1.1250926553620748, - 0.9916756985205609, - 0.8571268417466757, - 0.7259877798437856, - 0.6025650196737778, - 0.49039999755721086, - 0.3919811696233031, - 0.3085045350086183, - 0.24016754728755849, - 0.18640418045350707, - 0.146204211387119, - 0.11847897640969957, - 0.1021093637419732, - 0.0959889784503926, - 0.09891606520524714, - 0.10940488781619198, - 0.1256344185777086, - 0.14546075113739337, - 0.1665852044739786, - 0.1868017005688326, - 0.20432798036430114, - 0.21798707334000095, - 0.22732747931220793, - 0.23256450593360006, - 0.23433225835572102, - 0.23341797352396282, - 0.23047117431868422, - 0.2258130967406958, - 0.21940659507964, - 0.21096057765086482, - 0.20015481564161103, - 0.18687518442602047, - 0.17137614215660074, - 0.1543432304023398, - 0.1367781203333526, - 0.11978575302208401, - 0.10430762568265635, - 0.09093348261176834, - 0.07977832503678035, - 0.07056424001681909, - 0.06281160124812894, - 0.05608543951718457, - 0.050227729517872806, - 0.045469609893034925, - 0.04237524179164356, - 0.041655287926383976, - 0.04386586731168085, - 0.04918011983126792, - 0.05726598463101594, - 0.067390726216182, - 0.07876835780297373, - 0.09105811983720628, - 0.10489403384610019, - 0.1223053572646055, - 0.14680090080445993, - 0.18320552777355764, - 0.23696811298310527, - 0.3132726732249317, - 0.41627597281755013 - ], - "pressure:J29:branch88_seg0": [ - 5866.352831788457, - 6449.308814525511, - 7148.940442562021, - 7949.67506505139, - 8826.253833407545, - 9747.754204886056, - 10681.56834757846, - 11597.459840137142, - 12469.426109649192, - 13278.783552141598, - 14013.17847470508, - 14665.113875294139, - 15231.406652257981, - 15710.18795489969, - 16100.36031433718, - 16401.266749765247, - 16612.19094719344, - 16734.11267255423, - 16769.785659657526, - 16724.26338234623, - 16605.132642578636, - 16421.319322864314, - 16182.512777526408, - 15898.029126409778, - 15576.110548997927, - 15223.925916054528, - 14847.821114338447, - 14454.003811307244, - 14049.070129121425, - 13640.179784196514, - 13234.456177282525, - 12838.059955286031, - 12454.676803658362, - 12084.132447976846, - 11721.888039924013, - 11359.095932727922, - 10984.059013830672, - 10584.293748443804, - 10149.670119140825, - 9674.449128777374, - 9159.384233921524, - 8612.258139223291, - 8046.822807186772, - 7480.885027195097, - 6933.673566252888, - 6422.961912032874, - 5962.615317338268, - 5561.994273141083, - 5225.048798722058, - 4951.59735704935, - 4738.787212052526, - 4582.06403563976, - 4476.808492953268, - 4418.371455569701, - 4401.985888048219, - 4422.463128546805, - 4473.221862294172, - 4546.220851686366, - 4632.1737787841985, - 4721.389268703554, - 4804.770906671317, - 4875.3035975566745, - 4928.806350843003, - 4963.970672658799, - 4982.285621626819, - 4986.745527923763, - 4980.634982485919, - 4966.455197795633, - 4945.2052436352715, - 4916.400306296099, - 4878.671171940745, - 4830.736161599344, - 4772.424527916803, - 4705.217260158579, - 4632.384722134918, - 4558.369578193174, - 4487.820798247714, - 4424.418284642708, - 4370.232840895152, - 4325.317952324435, - 4288.162592545756, - 4256.67798725741, - 4229.199611875881, - 4205.401133180483, - 4186.6435268025225, - 4175.546155143433, - 4175.123745119047, - 4187.465117669209, - 4212.784733711648, - 4249.249829125052, - 4293.502900444512, - 4342.380957640795, - 4395.144750858313, - 4455.634824135229, - 4533.8759512868, - 4646.083346517665, - 4813.496563512541, - 5059.503072807464, - 5405.1137790128, - 5866.352831788457 - ], - "flow:branch54_seg0:J30": [ - 3.710188333539493, - 4.784711064574856, - 5.956787701240605, - 7.16713064476082, - 8.352367113844016, - 9.457854606847821, - 10.443762746146337, - 11.289016491827937, - 11.986475810178558, - 12.545158158935397, - 12.979223698842373, - 13.301928316767508, - 13.526194473450898, - 13.656553927143067, - 13.694410247872176, - 13.64018239149532, - 13.493114169000027, - 13.260030355692361, - 12.950743254734823, - 12.579383684959865, - 12.163714706181011, - 11.718665195574081, - 11.25696509710272, - 10.786860677468752, - 10.312448623154223, - 9.836479623870439, - 9.36198775353237, - 8.894424203745473, - 8.441935373255763, - 8.013997935659981, - 7.618018777721663, - 7.256411477152699, - 6.92337769902923, - 6.603559036796604, - 6.274512658028996, - 5.909978185418775, - 5.486214727628478, - 4.987105545113472, - 4.411119938093049, - 3.770251724010097, - 3.0912034978718257, - 2.410269052760395, - 1.7662345409299667, - 1.1938722517780183, - 0.7185704819146863, - 0.35325689883697253, - 0.0959487847948267, - -0.06294692854917387, - -0.1408261335845108, - -0.1557870107038079, - -0.12197659983859246, - -0.0506707577988841, - 0.052412482615523524, - 0.18325624637834953, - 0.33679108046579515, - 0.5059733636152718, - 0.6792840760782104, - 0.8426373241687134, - 0.9815594719939856, - 1.0844783437404457, - 1.1446964366329921, - 1.1631443276426365, - 1.1470314565051973, - 1.1071395722539799, - 1.0561416802771582, - 1.0035641704179874, - 0.9541686527521176, - 0.9073281622861876, - 0.857975850026617, - 0.7994204336304942, - 0.72646645627917, - 0.6378223714466424, - 0.5376520149382288, - 0.43417095817445844, - 0.33790758220706163, - 0.2583422570720051, - 0.20124033807915284, - 0.1666887319916775, - 0.1500542924899652, - 0.1433741793423506, - 0.13852575928219235, - 0.13064118479831635, - 0.11965390516865478, - 0.11052361284677024, - 0.11148895414743869, - 0.1305563666940345, - 0.17255503695680804, - 0.23620852297805067, - 0.31431869844403837, - 0.3965079109212928, - 0.47309543948875427, - 0.5412139522500876, - 0.6094016999674512, - 0.6997023794458919, - 0.8470253570288268, - 1.0930353807809778, - 1.4792043366094714, - 2.0389769959581976, - 2.7844991096662075, - 3.710188333539493 - ], - "pressure:branch54_seg0:J30": [ - 9049.830482974878, - 10411.671554877286, - 11850.904609331865, - 13294.691475789385, - 14671.544805109746, - 15922.120729517317, - 17008.53743794058, - 17920.88862586782, - 18658.28704551437, - 19235.187368559837, - 19677.44492386812, - 19994.10505070533, - 20198.727735227392, - 20295.51526802257, - 20279.55289830088, - 20156.230051554154, - 19923.18896529574, - 19590.614777641786, - 19178.63395107665, - 18701.337657146403, - 18182.160326990703, - 17638.403059506727, - 17080.65143320479, - 16517.443152947948, - 15951.155601457538, - 15384.379370981353, - 14822.171028457393, - 14272.577080111922, - 13746.716244707683, - 13256.111652982008, - 12807.479873482038, - 12398.57042352264, - 12017.728333756211, - 11640.144694973935, - 11235.22039099266, - 10771.062088566909, - 10223.907079274966, - 9579.611120948693, - 8846.707592344697, - 8050.595540190553, - 7228.376125149395, - 6429.379675442519, - 5699.375250883965, - 5075.270550013087, - 4577.1492423273, - 4215.663977252476, - 3978.3323177630414, - 3847.0172770873423, - 3802.529066266206, - 3820.1071784449146, - 3887.549764473788, - 3994.9770934049848, - 4135.94131396197, - 4308.295459777432, - 4503.613653464285, - 4711.372164223348, - 4916.201005408176, - 5099.488294386381, - 5244.628390633361, - 5341.17210287124, - 5384.926560422762, - 5380.602396189228, - 5342.599885344025, - 5283.832059628062, - 5218.952099698631, - 5157.703735496608, - 5101.557313031622, - 5046.378155262473, - 4984.214399677311, - 4906.762073220845, - 4810.101066486054, - 4695.2757613062195, - 4570.772755307124, - 4448.907558898729, - 4342.307658237985, - 4260.67935146744, - 4208.052981837508, - 4180.859677290993, - 4170.246317929601, - 4166.326980509386, - 4159.885756571327, - 4147.828160930738, - 4133.740028988516, - 4126.296174733112, - 4136.556968632435, - 4172.793838427138, - 4237.637718907892, - 4326.070320309888, - 4425.058626497449, - 4521.925062046783, - 4607.503291221061, - 4683.981967420184, - 4769.909558732794, - 4900.28282048065, - 5123.617799779641, - 5493.412197501482, - 6051.836957089696, - 6835.185865637224, - 7843.262008128316, - 9049.830482974878 - ], - "flow:J30:branch55_seg0": [ - 1.9403311179050808, - 2.5053468397402483, - 3.123263747611446, - 3.7629870775711183, - 4.39101221923632, - 4.978215871223855, - 5.503158468313064, - 5.954237593088356, - 6.327206842777145, - 6.626560702712413, - 6.859583944275374, - 7.033286345512023, - 7.154575593797316, - 7.22595786654233, - 7.248295647148296, - 7.221821542470621, - 7.146137958014232, - 7.0247373788423175, - 6.8626974373051555, - 6.667437942070752, - 6.448306779378035, - 6.213246682877971, - 5.96908380133174, - 5.720283610208853, - 5.469108785514761, - 5.217057394968153, - 4.965722402067828, - 4.717939561878048, - 4.477962020596011, - 4.250784424194968, - 4.0403654437802325, - 3.848117534911464, - 3.671151133634062, - 3.5015500551455365, - 3.3276080697946964, - 3.1355081673086733, - 2.9126212655571115, - 2.650239899818704, - 2.3472452501355066, - 2.0096385711136535, - 1.6512421993800588, - 1.291041813203228, - 0.9494791040643792, - 0.6450383957942268, - 0.3913834738772277, - 0.1955940339072874, - 0.056952336620774424, - -0.029391753633400575, - -0.07251850441044105, - -0.08195168718032735, - -0.0652486464456853, - -0.0284739130779431, - 0.025271229247092377, - 0.09379650693572494, - 0.17444111519465197, - 0.2635507112561898, - 0.355111570052694, - 0.44173912311857927, - 0.5157855741724652, - 0.571067061061349, - 0.6039067395136648, - 0.6146456517204748, - 0.6069409573548319, - 0.5864037575016091, - 0.5597113163154939, - 0.5319593533291201, - 0.5057774071338175, - 0.4809607351954468, - 0.4549281725810447, - 0.4241792321524855, - 0.3859284045731763, - 0.33940778143108324, - 0.28669723408534087, - 0.23204141659628788, - 0.18096263059320664, - 0.13849889984707492, - 0.10778464127989007, - 0.08898610790936269, - 0.07977728526535445, - 0.07600953777181861, - 0.07339073200627164, - 0.06927834930393614, - 0.06352489679196545, - 0.05863930078337206, - 0.05890714785647877, - 0.06856393945201592, - 0.09024632691709673, - 0.12340746669932008, - 0.16437826562603972, - 0.20774555128376898, - 0.24836180819292908, - 0.284553927109529, - 0.32057078622262963, - 0.36775889862127786, - 0.4442834899150653, - 0.5720111471317472, - 0.7729366099043595, - 1.0649070217742553, - 1.454829145726095, - 1.9403311179050808 - ], - "pressure:J30:branch55_seg0": [ - 9049.830482974878, - 10411.671554877286, - 11850.904609331865, - 13294.691475789385, - 14671.544805109746, - 15922.120729517317, - 17008.53743794058, - 17920.88862586782, - 18658.28704551437, - 19235.187368559837, - 19677.44492386812, - 19994.10505070533, - 20198.727735227392, - 20295.51526802257, - 20279.55289830088, - 20156.230051554154, - 19923.18896529574, - 19590.614777641786, - 19178.63395107665, - 18701.337657146403, - 18182.160326990703, - 17638.403059506727, - 17080.65143320479, - 16517.443152947948, - 15951.155601457538, - 15384.379370981353, - 14822.171028457393, - 14272.577080111922, - 13746.716244707683, - 13256.111652982008, - 12807.479873482038, - 12398.57042352264, - 12017.728333756211, - 11640.144694973935, - 11235.22039099266, - 10771.062088566909, - 10223.907079274966, - 9579.611120948693, - 8846.707592344697, - 8050.595540190553, - 7228.376125149395, - 6429.379675442519, - 5699.375250883965, - 5075.270550013087, - 4577.1492423273, - 4215.663977252476, - 3978.3323177630414, - 3847.0172770873423, - 3802.529066266206, - 3820.1071784449146, - 3887.549764473788, - 3994.9770934049848, - 4135.94131396197, - 4308.295459777432, - 4503.613653464285, - 4711.372164223348, - 4916.201005408176, - 5099.488294386381, - 5244.628390633361, - 5341.17210287124, - 5384.926560422762, - 5380.602396189228, - 5342.599885344025, - 5283.832059628062, - 5218.952099698631, - 5157.703735496608, - 5101.557313031622, - 5046.378155262473, - 4984.214399677311, - 4906.762073220845, - 4810.101066486054, - 4695.2757613062195, - 4570.772755307124, - 4448.907558898729, - 4342.307658237985, - 4260.67935146744, - 4208.052981837508, - 4180.859677290993, - 4170.246317929601, - 4166.326980509386, - 4159.885756571327, - 4147.828160930738, - 4133.740028988516, - 4126.296174733112, - 4136.556968632435, - 4172.793838427138, - 4237.637718907892, - 4326.070320309888, - 4425.058626497449, - 4521.925062046783, - 4607.503291221061, - 4683.981967420184, - 4769.909558732794, - 4900.28282048065, - 5123.617799779641, - 5493.412197501482, - 6051.836957089696, - 6835.185865637224, - 7843.262008128316, - 9049.830482974878 - ], - "flow:J30:branch104_seg0": [ - 0.9581720068720414, - 1.2342734670845894, - 1.5346879476031707, - 1.8441309829809254, - 2.146391271134595, - 2.427610742773391, - 2.6777943384482117, - 2.8917800686841053, - 3.0679714212940037, - 3.2088147080420972, - 3.318027315969776, - 3.3990061843749713, - 3.4550259821687055, - 3.487196652536055, - 3.495827925684058, - 3.4810190348590666, - 3.4425758000659084, - 3.382289753922413, - 3.3027056575863734, - 3.2074533004440373, - 3.1010824238476755, - 2.9873776391560427, - 2.86954683333551, - 2.74964618515324, - 2.6286778320895197, - 2.5073238291493625, - 2.386361916181258, - 2.2672041064623722, - 2.1519552401338227, - 2.0430448624780015, - 1.9423492745840842, - 1.850430194057321, - 1.765732140266566, - 1.6842436975929362, - 1.6001609030061208, - 1.5067408984194486, - 1.3979439503486004, - 1.2697262448470028, - 1.1218226765081456, - 0.9574377277178029, - 0.7835229185759706, - 0.6094442366792777, - 0.44515186395349543, - 0.2995037145199846, - 0.17890413552980905, - 0.08656089075463574, - 0.021832912070586415, - -0.01782204196181143, - -0.03690895813928765, - -0.04007649174584235, - -0.0309145438800797, - -0.01226695878389556, - 0.014439905902063658, - 0.04820537870247026, - 0.0877245483738769, - 0.1311663825833856, - 0.1755495554030025, - 0.2172424709699433, - 0.2525389551867957, - 0.2785048662350051, - 0.29348436135650424, - 0.29778081442185134, - 0.29330462383402534, - 0.2828546804655469, - 0.269685055214627, - 0.25620864306176966, - 0.24359702345824455, - 0.23163568239186172, - 0.21898535501572658, - 0.20391677522551924, - 0.1851149699869123, - 0.16228518911001255, - 0.1365443954975523, - 0.11003705805212087, - 0.08547777045815588, - 0.06528318599797645, - 0.050893108659454706, - 0.04227873681165923, - 0.03820223308029845, - 0.036597877003107585, - 0.035384533538397066, - 0.03334485185380742, - 0.030508798313205073, - 0.028194306718745676, - 0.028540824226627612, - 0.03359797869138609, - 0.04456752560275065, - 0.061068568494400725, - 0.08120083873053409, - 0.10227516146251275, - 0.12182417076762764, - 0.13917873097239442, - 0.15663522731136265, - 0.17996529064985456, - 0.21822722160570482, - 0.2821506561970109, - 0.3823229187556245, - 0.5272220854730402, - 0.7197336676797181, - 0.9581720068720414 - ], - "pressure:J30:branch104_seg0": [ - 9049.830482974878, - 10411.671554877286, - 11850.904609331865, - 13294.691475789385, - 14671.544805109746, - 15922.120729517317, - 17008.53743794058, - 17920.88862586782, - 18658.28704551437, - 19235.187368559837, - 19677.44492386812, - 19994.10505070533, - 20198.727735227392, - 20295.51526802257, - 20279.55289830088, - 20156.230051554154, - 19923.18896529574, - 19590.614777641786, - 19178.63395107665, - 18701.337657146403, - 18182.160326990703, - 17638.403059506727, - 17080.65143320479, - 16517.443152947948, - 15951.155601457538, - 15384.379370981353, - 14822.171028457393, - 14272.577080111922, - 13746.716244707683, - 13256.111652982008, - 12807.479873482038, - 12398.57042352264, - 12017.728333756211, - 11640.144694973935, - 11235.22039099266, - 10771.062088566909, - 10223.907079274966, - 9579.611120948693, - 8846.707592344697, - 8050.595540190553, - 7228.376125149395, - 6429.379675442519, - 5699.375250883965, - 5075.270550013087, - 4577.1492423273, - 4215.663977252476, - 3978.3323177630414, - 3847.0172770873423, - 3802.529066266206, - 3820.1071784449146, - 3887.549764473788, - 3994.9770934049848, - 4135.94131396197, - 4308.295459777432, - 4503.613653464285, - 4711.372164223348, - 4916.201005408176, - 5099.488294386381, - 5244.628390633361, - 5341.17210287124, - 5384.926560422762, - 5380.602396189228, - 5342.599885344025, - 5283.832059628062, - 5218.952099698631, - 5157.703735496608, - 5101.557313031622, - 5046.378155262473, - 4984.214399677311, - 4906.762073220845, - 4810.101066486054, - 4695.2757613062195, - 4570.772755307124, - 4448.907558898729, - 4342.307658237985, - 4260.67935146744, - 4208.052981837508, - 4180.859677290993, - 4170.246317929601, - 4166.326980509386, - 4159.885756571327, - 4147.828160930738, - 4133.740028988516, - 4126.296174733112, - 4136.556968632435, - 4172.793838427138, - 4237.637718907892, - 4326.070320309888, - 4425.058626497449, - 4521.925062046783, - 4607.503291221061, - 4683.981967420184, - 4769.909558732794, - 4900.28282048065, - 5123.617799779641, - 5493.412197501482, - 6051.836957089696, - 6835.185865637224, - 7843.262008128316, - 9049.830482974878 - ], - "flow:J30:branch141_seg0": [ - 0.8116852087623707, - 1.045090757750018, - 1.2988360060259891, - 1.5600125842087753, - 1.814963623473102, - 2.0520279928505727, - 2.262809939385063, - 2.4429988300554775, - 2.5912975461074086, - 2.709782748180888, - 2.801612438597223, - 2.869635786880517, - 2.9165928974848763, - 2.9433994080646815, - 2.9502866750398242, - 2.9373418141656322, - 2.904400410919882, - 2.8530032229276303, - 2.7853401598432956, - 2.7044924424450763, - 2.6143255029553023, - 2.5180408735400692, - 2.4183344624354692, - 2.31693088210666, - 2.2146620055499437, - 2.112098399752924, - 2.009903435283286, - 1.9092805354050515, - 1.812018112525933, - 1.720168648987011, - 1.635304059357349, - 1.557863748183914, - 1.4864944251286023, - 1.4177652840581296, - 1.34674368522818, - 1.267729119690654, - 1.1756495117227672, - 1.0671394004477672, - 0.9420520114493969, - 0.8031754251786403, - 0.6564383799157963, - 0.5097830028778906, - 0.3716035729120922, - 0.2493301414638067, - 0.14828287250764968, - 0.07110197417504945, - 0.017163536103465906, - -0.015733132953961858, - -0.03139867103478208, - -0.03375883177763826, - -0.02581340951282746, - -0.009929885937045439, - 0.012701347466367491, - 0.04125436074015431, - 0.07462541689726629, - 0.11125626977569641, - 0.14862295062251374, - 0.18365573008019073, - 0.2132349426347247, - 0.23490641644409124, - 0.24730533576282313, - 0.25071786150031034, - 0.2467858753163404, - 0.23788113428682375, - 0.22674530874703713, - 0.21539617402709774, - 0.20479422216005544, - 0.1947317446988792, - 0.18406232242984605, - 0.17132442625248936, - 0.1554230817190815, - 0.1361294009055467, - 0.11441038535533568, - 0.09209248352604969, - 0.07146718115569908, - 0.05456017122695373, - 0.042562588139808094, - 0.03542388727065555, - 0.03207477414431232, - 0.030766764567424422, - 0.02975049373752367, - 0.028017983640572796, - 0.025620210063484226, - 0.023690005344652505, - 0.0240409820643323, - 0.02839444855063249, - 0.03774118443696065, - 0.05173248778432991, - 0.06873959408746451, - 0.08648719817501095, - 0.10290946052819752, - 0.11748129416816411, - 0.1321956864334589, - 0.15197819017475953, - 0.18451464550805655, - 0.23887357745221985, - 0.3239448079494873, - 0.44684788871090203, - 0.6099362962603944, - 0.8116852087623707 - ], - "pressure:J30:branch141_seg0": [ - 9049.830482974878, - 10411.671554877286, - 11850.904609331865, - 13294.691475789385, - 14671.544805109746, - 15922.120729517317, - 17008.53743794058, - 17920.88862586782, - 18658.28704551437, - 19235.187368559837, - 19677.44492386812, - 19994.10505070533, - 20198.727735227392, - 20295.51526802257, - 20279.55289830088, - 20156.230051554154, - 19923.18896529574, - 19590.614777641786, - 19178.63395107665, - 18701.337657146403, - 18182.160326990703, - 17638.403059506727, - 17080.65143320479, - 16517.443152947948, - 15951.155601457538, - 15384.379370981353, - 14822.171028457393, - 14272.577080111922, - 13746.716244707683, - 13256.111652982008, - 12807.479873482038, - 12398.57042352264, - 12017.728333756211, - 11640.144694973935, - 11235.22039099266, - 10771.062088566909, - 10223.907079274966, - 9579.611120948693, - 8846.707592344697, - 8050.595540190553, - 7228.376125149395, - 6429.379675442519, - 5699.375250883965, - 5075.270550013087, - 4577.1492423273, - 4215.663977252476, - 3978.3323177630414, - 3847.0172770873423, - 3802.529066266206, - 3820.1071784449146, - 3887.549764473788, - 3994.9770934049848, - 4135.94131396197, - 4308.295459777432, - 4503.613653464285, - 4711.372164223348, - 4916.201005408176, - 5099.488294386381, - 5244.628390633361, - 5341.17210287124, - 5384.926560422762, - 5380.602396189228, - 5342.599885344025, - 5283.832059628062, - 5218.952099698631, - 5157.703735496608, - 5101.557313031622, - 5046.378155262473, - 4984.214399677311, - 4906.762073220845, - 4810.101066486054, - 4695.2757613062195, - 4570.772755307124, - 4448.907558898729, - 4342.307658237985, - 4260.67935146744, - 4208.052981837508, - 4180.859677290993, - 4170.246317929601, - 4166.326980509386, - 4159.885756571327, - 4147.828160930738, - 4133.740028988516, - 4126.296174733112, - 4136.556968632435, - 4172.793838427138, - 4237.637718907892, - 4326.070320309888, - 4425.058626497449, - 4521.925062046783, - 4607.503291221061, - 4683.981967420184, - 4769.909558732794, - 4900.28282048065, - 5123.617799779641, - 5493.412197501482, - 6051.836957089696, - 6835.185865637224, - 7843.262008128316, - 9049.830482974878 - ], - "flow:branch55_seg0:J31": [ - 1.9380460231776224, - 2.5028630170513484, - 3.120689421749719, - 3.760485601998193, - 4.388692350432481, - 4.976149381285427, - 5.501389529979628, - 5.952804236059151, - 6.326049668532338, - 6.6256658194146345, - 6.858924994766549, - 7.032821018164398, - 7.1543132576364155, - 7.2258847264505475, - 7.248415496664571, - 7.222137428143493, - 7.146634410739841, - 7.025403708821482, - 6.8634892640886935, - 6.668317819569466, - 6.449251363547472, - 6.214220291066312, - 5.970072509127961, - 5.721280395790451, - 5.47010705326058, - 5.218054301389972, - 4.966705057926343, - 4.7188898332454965, - 4.478858640074865, - 4.251613486549374, - 4.041116009833189, - 3.8488066237074405, - 3.6718133916628215, - 3.5022290005683954, - 3.3283635086816403, - 3.1363942500077844, - 2.91366958457029, - 2.6514533910779217, - 2.3486047343327607, - 2.0110777416715733, - 1.6526820242472928, - 1.2924045736741527, - 0.9506834396429691, - 0.6460227868786313, - 0.3921413413678544, - 0.19612084770439986, - 0.057259379204645106, - -0.029243941493515398, - -0.07250236454032369, - -0.08203573362551987, - -0.06540131014686153, - -0.02870005054919783, - 0.024991820362604233, - 0.093472907052267, - 0.17407879990030126, - 0.26318253753634413, - 0.35476554164261886, - 0.4414450009586377, - 0.5155694322224409, - 0.5709466211334558, - 0.6038731664652599, - 0.6146857682592527, - 0.6070323664859242, - 0.5865146360560793, - 0.5598240191429977, - 0.5320633512151568, - 0.5058730013372778, - 0.4810610427902107, - 0.45504899597338433, - 0.42433348997237624, - 0.38611616926791276, - 0.3396209803076574, - 0.28691969334570516, - 0.23224651473409108, - 0.18112931315705022, - 0.1386160250497583, - 0.10785399507706947, - 0.08901335614745845, - 0.0797863762319332, - 0.07601828570437405, - 0.0734067245894631, - 0.06930311635022736, - 0.06354717309376384, - 0.058640018188900196, - 0.05886845796687613, - 0.06847344797761001, - 0.09010938924816776, - 0.12323899453351415, - 0.1642009482664759, - 0.20758388850696188, - 0.248222590040096, - 0.2844190387436766, - 0.3203925833277959, - 0.36746325013330644, - 0.443778986245933, - 0.5711933074455592, - 0.7717599673876846, - 1.0633359531851545, - 1.4528374206533856, - 1.9380460231776224 - ], - "pressure:branch55_seg0:J31": [ - 8683.765781958948, - 9989.061707490819, - 11388.85611784329, - 12812.751539650022, - 14188.279831822894, - 15453.892915900678, - 16567.712967582345, - 17513.463941999424, - 18285.535223608986, - 18896.93969662284, - 19369.379991778707, - 19714.14434817275, - 19945.933601120876, - 20069.38114408128, - 20082.398627286188, - 19988.593597894367, - 19785.965499330803, - 19483.383389846218, - 19097.310180811848, - 18642.526761827994, - 18141.26769400812, - 17610.878744928494, - 17063.845445267736, - 16509.323256861215, - 15950.79588869931, - 15391.133549606726, - 14834.66496707864, - 14288.608518140029, - 13763.259553522885, - 13269.962980606486, - 12816.243342211974, - 12402.35862395016, - 12019.060539274375, - 11644.796053798469, - 11251.257107941181, - 10807.237292541427, - 10287.278960060201, - 9674.83711251845, - 8973.624438777188, - 8203.544888600356, - 7398.475120499803, - 6604.504741760302, - 5866.803637375481, - 5223.983380757832, - 4700.51764309492, - 4309.218945095517, - 4042.4867059401245, - 3885.590724189318, - 3818.9669554731436, - 3819.5232402237775, - 3873.185265669033, - 3968.459483415413, - 4098.934402731707, - 4261.1978921487735, - 4447.952944481207, - 4649.979705848077, - 4852.816539698165, - 5038.927387976844, - 5191.633506360622, - 5299.181614065469, - 5355.48164566708, - 5363.502953619135, - 5334.981966580412, - 5282.332702401485, - 5220.288817926562, - 5159.286381093044, - 5102.665846368015, - 5047.961488327419, - 4988.2451518391845, - 4915.461984683229, - 4824.691883018533, - 4715.755365496591, - 4595.364065174133, - 4474.485211474245, - 4365.530178403213, - 4278.826160869977, - 4219.708008389152, - 4186.301387627476, - 4171.521470295414, - 4165.762198718994, - 4159.682263720246, - 4148.998327114088, - 4135.5424475654545, - 4126.566322744214, - 4132.410480493955, - 4161.784176656208, - 4218.795280890469, - 4300.154757104026, - 4394.951258357284, - 4490.962958127787, - 4578.001794127999, - 4655.570919705779, - 4738.0272152623875, - 4855.8081941793525, - 5053.47068643296, - 5382.057080798546, - 5886.53506853049, - 6604.328056149463, - 7542.185409866366, - 8683.765781958948 - ], - "flow:J31:branch56_seg0": [ - 0.8422575356816145, - 1.085933338251874, - 1.351520315053113, - 1.6256805540549981, - 1.8940258759287285, - 2.1441880148805135, - 2.3671897437609766, - 2.558366069850907, - 2.7160123669616905, - 2.842264745740924, - 2.940365676140197, - 3.013226764198366, - 3.063833312214007, - 3.093152995034852, - 3.1014775230541605, - 3.08894283068052, - 3.0553356007990637, - 3.0022469027740843, - 2.9319199024920923, - 2.847547660944341, - 2.7532045175568323, - 2.6522451841951717, - 2.547549032554673, - 2.44098285463656, - 2.3334527464583297, - 2.2255853446035037, - 2.1180684987280265, - 2.01214579225192, - 1.9096719673348677, - 1.8128044382936095, - 1.7232020993680317, - 1.6414014821507352, - 1.566065814294721, - 1.4936680602314252, - 1.4191149015062081, - 1.3364490519484387, - 1.2403084049942041, - 1.127058006272582, - 0.9964265808605368, - 0.8511641189597032, - 0.6973549890480446, - 0.5432698130757386, - 0.39767010954377296, - 0.2684024785823181, - 0.1611880403135169, - 0.07890196243685123, - 0.02101307653740212, - -0.01463324210328268, - -0.03201103890816122, - -0.03523200354837286, - -0.027445801309889026, - -0.011225839405612139, - 0.012177067659109515, - 0.0418601743206845, - 0.0766472318341592, - 0.11496381339064199, - 0.15417875681474894, - 0.19109270129591246, - 0.22243400035764882, - 0.2456047223850313, - 0.25908801141860516, - 0.26312647926025023, - 0.25938697329256816, - 0.25029477137116757, - 0.23873403560580736, - 0.22684874959286877, - 0.21569135730853387, - 0.20510676747770268, - 0.1939349941976067, - 0.1806575304565052, - 0.16410458098799066, - 0.1439984378225697, - 0.12130468951578356, - 0.0978888880135904, - 0.07614042360086995, - 0.0582006385914938, - 0.045362855558690775, - 0.03761619046162464, - 0.03390842952579308, - 0.03242655203031461, - 0.03132566410834317, - 0.029524396326468198, - 0.027024847111028132, - 0.024963864048986407, - 0.02521723602444762, - 0.029589276264387693, - 0.03916634204485785, - 0.0536367150695496, - 0.07134341807285406, - 0.08994042282960663, - 0.1072366356673062, - 0.12260588332666432, - 0.13801965734459232, - 0.1585102447452027, - 0.19201532501844307, - 0.24797258516633064, - 0.33578032967988386, - 0.4629880834823521, - 0.6322147116652019, - 0.8422575356816145 - ], - "pressure:J31:branch56_seg0": [ - 8683.765781958948, - 9989.061707490819, - 11388.85611784329, - 12812.751539650022, - 14188.279831822894, - 15453.892915900678, - 16567.712967582345, - 17513.463941999424, - 18285.535223608986, - 18896.93969662284, - 19369.379991778707, - 19714.14434817275, - 19945.933601120876, - 20069.38114408128, - 20082.398627286188, - 19988.593597894367, - 19785.965499330803, - 19483.383389846218, - 19097.310180811848, - 18642.526761827994, - 18141.26769400812, - 17610.878744928494, - 17063.845445267736, - 16509.323256861215, - 15950.79588869931, - 15391.133549606726, - 14834.66496707864, - 14288.608518140029, - 13763.259553522885, - 13269.962980606486, - 12816.243342211974, - 12402.35862395016, - 12019.060539274375, - 11644.796053798469, - 11251.257107941181, - 10807.237292541427, - 10287.278960060201, - 9674.83711251845, - 8973.624438777188, - 8203.544888600356, - 7398.475120499803, - 6604.504741760302, - 5866.803637375481, - 5223.983380757832, - 4700.51764309492, - 4309.218945095517, - 4042.4867059401245, - 3885.590724189318, - 3818.9669554731436, - 3819.5232402237775, - 3873.185265669033, - 3968.459483415413, - 4098.934402731707, - 4261.1978921487735, - 4447.952944481207, - 4649.979705848077, - 4852.816539698165, - 5038.927387976844, - 5191.633506360622, - 5299.181614065469, - 5355.48164566708, - 5363.502953619135, - 5334.981966580412, - 5282.332702401485, - 5220.288817926562, - 5159.286381093044, - 5102.665846368015, - 5047.961488327419, - 4988.2451518391845, - 4915.461984683229, - 4824.691883018533, - 4715.755365496591, - 4595.364065174133, - 4474.485211474245, - 4365.530178403213, - 4278.826160869977, - 4219.708008389152, - 4186.301387627476, - 4171.521470295414, - 4165.762198718994, - 4159.682263720246, - 4148.998327114088, - 4135.5424475654545, - 4126.566322744214, - 4132.410480493955, - 4161.784176656208, - 4218.795280890469, - 4300.154757104026, - 4394.951258357284, - 4490.962958127787, - 4578.001794127999, - 4655.570919705779, - 4738.0272152623875, - 4855.8081941793525, - 5053.47068643296, - 5382.057080798546, - 5886.53506853049, - 6604.328056149463, - 7542.185409866366, - 8683.765781958948 - ], - "flow:J31:branch84_seg0": [ - 1.0957884874960078, - 1.416929678799475, - 1.7691691066966062, - 2.1348050479431953, - 2.494666474503753, - 2.831961366404913, - 3.134199786218653, - 3.3944381662082432, - 3.6100373015706477, - 3.7834010736737103, - 3.9185593186263517, - 4.019594253966032, - 4.090479945422408, - 4.132731731415696, - 4.146937973610411, - 4.133194597462973, - 4.091298809940777, - 4.023156806047397, - 3.9315693615966003, - 3.820770158625124, - 3.696046845990641, - 3.561975106871139, - 3.422523476573288, - 3.2802975411538915, - 3.1366543068022494, - 2.992468956786468, - 2.8486365591983156, - 2.7067440409935783, - 2.5691866727399963, - 2.438809048255765, - 2.3179139104651574, - 2.207405141556705, - 2.1057475773681, - 2.00856094033697, - 1.9092486071754327, - 1.7999451980593453, - 1.6733611795760857, - 1.5243953848053389, - 1.3521781534722237, - 1.1599136227118696, - 0.9553270351992481, - 0.749134760598414, - 0.5530133300991961, - 0.3776203082963132, - 0.23095330105433756, - 0.11721888526754864, - 0.036246302667243005, - -0.014610699390232722, - -0.040491325632162484, - -0.046803730077147, - -0.0379555088369725, - -0.017474211143585695, - 0.012814752703494713, - 0.05161273273158253, - 0.0974315680661421, - 0.1482187241457021, - 0.20058678482786993, - 0.2503522996627252, - 0.29313543186479196, - 0.3253418987484246, - 0.3447851550466548, - 0.35155928899900263, - 0.3476453931933559, - 0.3362198646849118, - 0.32108998353719037, - 0.3052146016222881, - 0.29018164402874397, - 0.27595427531250805, - 0.2611140017757776, - 0.24367595951587107, - 0.222011588279922, - 0.19562254248508767, - 0.16561500382992156, - 0.13435762672050067, - 0.10498888955618024, - 0.08041538645826453, - 0.062491139518378695, - 0.05139716568583379, - 0.04587794670614012, - 0.043591733674059434, - 0.042081060481119946, - 0.039778720023759165, - 0.03652232598273572, - 0.0336761541399138, - 0.03365122194242851, - 0.03888417171322231, - 0.05094304720330989, - 0.06960227946396458, - 0.09285753019362185, - 0.11764346567735524, - 0.14098595437278982, - 0.1618131554170123, - 0.18237292598320354, - 0.2089530053881037, - 0.2517636612274897, - 0.32322072227922843, - 0.4359796377078007, - 0.6003478697028026, - 0.8206227089881833, - 1.0957884874960078 - ], - "pressure:J31:branch84_seg0": [ - 8683.765781958948, - 9989.061707490819, - 11388.85611784329, - 12812.751539650022, - 14188.279831822894, - 15453.892915900678, - 16567.712967582345, - 17513.463941999424, - 18285.535223608986, - 18896.93969662284, - 19369.379991778707, - 19714.14434817275, - 19945.933601120876, - 20069.38114408128, - 20082.398627286188, - 19988.593597894367, - 19785.965499330803, - 19483.383389846218, - 19097.310180811848, - 18642.526761827994, - 18141.26769400812, - 17610.878744928494, - 17063.845445267736, - 16509.323256861215, - 15950.79588869931, - 15391.133549606726, - 14834.66496707864, - 14288.608518140029, - 13763.259553522885, - 13269.962980606486, - 12816.243342211974, - 12402.35862395016, - 12019.060539274375, - 11644.796053798469, - 11251.257107941181, - 10807.237292541427, - 10287.278960060201, - 9674.83711251845, - 8973.624438777188, - 8203.544888600356, - 7398.475120499803, - 6604.504741760302, - 5866.803637375481, - 5223.983380757832, - 4700.51764309492, - 4309.218945095517, - 4042.4867059401245, - 3885.590724189318, - 3818.9669554731436, - 3819.5232402237775, - 3873.185265669033, - 3968.459483415413, - 4098.934402731707, - 4261.1978921487735, - 4447.952944481207, - 4649.979705848077, - 4852.816539698165, - 5038.927387976844, - 5191.633506360622, - 5299.181614065469, - 5355.48164566708, - 5363.502953619135, - 5334.981966580412, - 5282.332702401485, - 5220.288817926562, - 5159.286381093044, - 5102.665846368015, - 5047.961488327419, - 4988.2451518391845, - 4915.461984683229, - 4824.691883018533, - 4715.755365496591, - 4595.364065174133, - 4474.485211474245, - 4365.530178403213, - 4278.826160869977, - 4219.708008389152, - 4186.301387627476, - 4171.521470295414, - 4165.762198718994, - 4159.682263720246, - 4148.998327114088, - 4135.5424475654545, - 4126.566322744214, - 4132.410480493955, - 4161.784176656208, - 4218.795280890469, - 4300.154757104026, - 4394.951258357284, - 4490.962958127787, - 4578.001794127999, - 4655.570919705779, - 4738.0272152623875, - 4855.8081941793525, - 5053.47068643296, - 5382.057080798546, - 5886.53506853049, - 6604.328056149463, - 7542.185409866366, - 8683.765781958948 - ], - "flow:branch57_seg0:J32": [ - 4.017055611361484, - 5.16931153013678, - 6.422776333605764, - 7.71423066583436, - 8.976959719035454, - 10.153636848031688, - 11.202679990174838, - 12.102343035431044, - 12.845803357398145, - 13.442156286326163, - 13.906525005595487, - 14.252347348806067, - 14.492628100129338, - 14.632047367088102, - 14.671642371358082, - 14.612192707193753, - 14.453121736397053, - 14.202004654376166, - 13.869946597432616, - 13.472012612097881, - 13.02715073538389, - 12.55116941218187, - 12.057320630826435, - 11.55422017226369, - 11.046175649686894, - 10.536210229382784, - 10.027837535078936, - 9.527154212403078, - 9.04304487033316, - 8.585595181566362, - 8.162507517936747, - 7.775818547370696, - 7.418857954949699, - 7.074786094646157, - 6.71942837330445, - 6.324888315351444, - 5.866420499902154, - 5.327541938338455, - 4.707438318966523, - 4.019836470273771, - 3.2935458993295255, - 2.567368686710683, - 1.8823754244029802, - 1.274997797066671, - 0.7712644873826793, - 0.3845140378554444, - 0.11200374200165478, - -0.0567608360923747, - -0.14000062522707007, - -0.1567341048868325, - -0.12157115781290016, - -0.04605267196840784, - 0.06372541332609727, - 0.2035003963353627, - 0.3676111504446108, - 0.5481234249320164, - 0.7325432303735177, - 0.9057054829141526, - 1.0522800634373985, - 1.1602044812882748, - 1.222816620771485, - 1.241342615518816, - 1.2237880118173288, - 1.181608713709341, - 1.1280505302401376, - 1.0729431190070309, - 1.0209671333074668, - 0.971147604790511, - 0.9180008036358217, - 0.8545200290321695, - 0.7755134093706784, - 0.6799475373023925, - 0.572594820378079, - 0.46239184372835995, - 0.36048117802900187, - 0.2766950506488103, - 0.21681896191076044, - 0.1806308299776393, - 0.1629278846998535, - 0.155291984077586, - 0.14929238121239485, - 0.14009282657457545, - 0.12799410652224022, - 0.1185210075077006, - 0.12045271753778267, - 0.14210547036445387, - 0.1881795344182041, - 0.25695359871991796, - 0.340431747510253, - 0.42758675027345033, - 0.5084948584394041, - 0.5807854367421617, - 0.6544085674675116, - 0.7536136089269475, - 0.916129303306952, - 1.1864567967982664, - 1.6079299665018787, - 2.2156227379601003, - 3.0211865741326527, - 4.017055611361484 - ], - "pressure:branch57_seg0:J32": [ - 9516.889026001594, - 10948.99922679007, - 12436.039362556621, - 13902.246008477316, - 15277.699456955906, - 16506.190641836973, - 17555.14444661834, - 18422.670622597343, - 19114.559638319937, - 19646.361501291056, - 20049.347949260777, - 20329.71573229333, - 20499.254231304833, - 20561.75851864769, - 20508.621135480575, - 20347.425903096777, - 20075.57267859319, - 19705.028014895764, - 19260.311206810133, - 18754.834274979243, - 18213.52148400574, - 17653.447388585028, - 17082.816410134543, - 16509.276382952674, - 15933.804589666915, - 15358.679137340694, - 14789.901399731478, - 14236.594148860719, - 13710.943466362498, - 13224.613991926495, - 12783.277479165165, - 12381.342403318688, - 12004.067089371412, - 11622.466065690249, - 11203.083935652005, - 10713.23373313357, - 10131.437773828493, - 9446.860119880293, - 8674.18185309281, - 7845.902839283529, - 7003.249104915832, - 6199.518112560244, - 5481.161275476954, - 4882.641732298945, - 4418.455490161339, - 4096.309623956053, - 3897.2580692865245, - 3799.115804249003, - 3783.0089530657783, - 3822.29042508989, - 3907.214596487205, - 4029.96692954466, - 4184.099072068803, - 4369.103676899093, - 4575.0509929087875, - 4789.6832724760125, - 4996.536992766376, - 5175.63249050563, - 5310.556861692589, - 5392.519463902864, - 5419.979319639275, - 5399.76831267265, - 5349.6664927200145, - 5283.268788437943, - 5215.018215211959, - 5153.675979047343, - 5098.2981432224215, - 5042.591696474172, - 4977.306746459705, - 4893.883558516147, - 4789.711292052589, - 4667.457299637997, - 4537.928958470704, - 4415.120522307035, - 4311.890434263901, - 4237.094391225166, - 4193.016836329752, - 4173.8927656890455, - 4168.587811128206, - 4166.938772317975, - 4159.926582567121, - 4146.058195520923, - 4131.188023794109, - 4125.818775839427, - 4141.870770624944, - 4187.02977149892, - 4261.902085359177, - 4359.268734714563, - 4463.411332446867, - 4561.078428039301, - 4644.51857653946, - 4719.456041968934, - 4809.898970037884, - 4956.6567403375375, - 5213.338537243121, - 5636.271958371944, - 6264.049241683461, - 7131.4037058074555, - 8228.516073479968, - 9516.889026001594 - ], - "flow:J32:branch58_seg0": [ - 1.3883918290270552, - 1.7801463819120371, - 2.201813790922085, - 2.6316021347693384, - 3.047012485899345, - 3.4294280819152148, - 3.7660445163485763, - 4.0510594419558075, - 4.283426333830537, - 4.467418161735722, - 4.608799794823118, - 4.712185056886572, - 4.781948358808258, - 4.8192375227854285, - 4.824064846557057, - 4.796562071593419, - 4.736388923182973, - 4.646401891070563, - 4.5305551917277205, - 4.39406402998638, - 4.2434899814122895, - 4.0839886806183285, - 3.9197565474224647, - 3.753362163452447, - 3.5858903947728815, - 3.418148059509884, - 3.251239874124628, - 3.0872663262440856, - 2.929319082682028, - 2.78084022215636, - 2.6442911627250383, - 2.5200428609076257, - 2.4053768321405533, - 2.2940567888044527, - 2.177514438069752, - 2.046168951252285, - 1.8918751989454619, - 1.7095989186433522, - 1.5000022846839813, - 1.2686364813379185, - 1.0260986612580785, - 0.7860768110388126, - 0.5625301139141102, - 0.367381901321648, - 0.2086659527290685, - 0.08997484286491547, - 0.009282913885266348, - -0.03766379519475649, - -0.057501020210436, - -0.056836417934691505, - -0.04034437158826716, - -0.011644074010911868, - 0.027584970364177522, - 0.0761916125344744, - 0.13231734980496043, - 0.19326313976663528, - 0.25466973752058253, - 0.3113223602264821, - 0.3580863370085315, - 0.39112670365563745, - 0.40854827376080166, - 0.41126461554508076, - 0.40243055439576314, - 0.3861733929734505, - 0.3670849775490779, - 0.3483235494550119, - 0.33114316382562775, - 0.314845130110893, - 0.2972613389579502, - 0.2758699312370641, - 0.24896765020010658, - 0.21641003928412306, - 0.18012763711110047, - 0.1433968317247971, - 0.11011476221168333, - 0.08354535957064939, - 0.06541060039925256, - 0.05527358392175652, - 0.05104162412222197, - 0.04965087149034297, - 0.04820373717661944, - 0.04523545653258874, - 0.04114420688587818, - 0.0381104792887139, - 0.03932287410872929, - 0.04760681818088793, - 0.06437746986794686, - 0.08870298178354794, - 0.11751119746967235, - 0.14686215613945167, - 0.17341948097582705, - 0.19673641894478344, - 0.22080494235450762, - 0.25456523395116215, - 0.31143741755796706, - 0.40677343135158367, - 0.555017870876591, - 0.7674233015626507, - 1.046527323656569, - 1.3883918290270552 - ], - "pressure:J32:branch58_seg0": [ - 9516.889026001594, - 10948.99922679007, - 12436.039362556621, - 13902.246008477316, - 15277.699456955906, - 16506.190641836973, - 17555.14444661834, - 18422.670622597343, - 19114.559638319937, - 19646.361501291056, - 20049.347949260777, - 20329.71573229333, - 20499.254231304833, - 20561.75851864769, - 20508.621135480575, - 20347.425903096777, - 20075.57267859319, - 19705.028014895764, - 19260.311206810133, - 18754.834274979243, - 18213.52148400574, - 17653.447388585028, - 17082.816410134543, - 16509.276382952674, - 15933.804589666915, - 15358.679137340694, - 14789.901399731478, - 14236.594148860719, - 13710.943466362498, - 13224.613991926495, - 12783.277479165165, - 12381.342403318688, - 12004.067089371412, - 11622.466065690249, - 11203.083935652005, - 10713.23373313357, - 10131.437773828493, - 9446.860119880293, - 8674.18185309281, - 7845.902839283529, - 7003.249104915832, - 6199.518112560244, - 5481.161275476954, - 4882.641732298945, - 4418.455490161339, - 4096.309623956053, - 3897.2580692865245, - 3799.115804249003, - 3783.0089530657783, - 3822.29042508989, - 3907.214596487205, - 4029.96692954466, - 4184.099072068803, - 4369.103676899093, - 4575.0509929087875, - 4789.6832724760125, - 4996.536992766376, - 5175.63249050563, - 5310.556861692589, - 5392.519463902864, - 5419.979319639275, - 5399.76831267265, - 5349.6664927200145, - 5283.268788437943, - 5215.018215211959, - 5153.675979047343, - 5098.2981432224215, - 5042.591696474172, - 4977.306746459705, - 4893.883558516147, - 4789.711292052589, - 4667.457299637997, - 4537.928958470704, - 4415.120522307035, - 4311.890434263901, - 4237.094391225166, - 4193.016836329752, - 4173.8927656890455, - 4168.587811128206, - 4166.938772317975, - 4159.926582567121, - 4146.058195520923, - 4131.188023794109, - 4125.818775839427, - 4141.870770624944, - 4187.02977149892, - 4261.902085359177, - 4359.268734714563, - 4463.411332446867, - 4561.078428039301, - 4644.51857653946, - 4719.456041968934, - 4809.898970037884, - 4956.6567403375375, - 5213.338537243121, - 5636.271958371944, - 6264.049241683461, - 7131.4037058074555, - 8228.516073479968, - 9516.889026001594 - ], - "flow:J32:branch61_seg0": [ - 1.4511715828943228, - 1.8828891762273725, - 2.362504533171866, - 2.8668897342972266, - 3.3704814637648974, - 3.849763653053833, - 4.286168805168831, - 4.6681062692632285, - 4.990177803773391, - 5.253455326710209, - 5.462295329784255, - 5.621754212811948, - 5.736941103710777, - 5.810547258538488, - 5.8437533811539835, - 5.837075963666315, - 5.79054661298769, - 5.706363238609374, - 5.588257746364127, - 5.441670786560805, - 5.273459827645203, - 5.0900702089498076, - 4.897155040263631, - 4.6987486623928, - 4.497271044972555, - 4.2942988013474, - 4.0912994024565075, - 3.89045732816075, - 3.6949295108750473, - 3.508487133454525, - 3.334389587421232, - 3.1741652450927176, - 3.0263357101451667, - 2.885725107331439, - 2.7440128446857472, - 2.5909077455187206, - 2.416461785043805, - 2.2131562770133457, - 1.9786020268634799, - 1.7159470296400225, - 1.434278568581828, - 1.147117925255194, - 0.8699541572677253, - 0.6175495627264748, - 0.40152795116146006, - 0.22896083283387758, - 0.10123808984450604, - 0.01582901283204017, - -0.03317408962523736, - -0.052704200132594047, - -0.048930063249249915, - -0.02687433662044492, - 0.010325666911131648, - 0.060461626258752586, - 0.1213124798279271, - 0.18996729163381984, - 0.26200050361447336, - 0.3318610129243715, - 0.3936002753671052, - 0.4420944643886743, - 0.47396824267207904, - 0.4886189221098191, - 0.48809522499721614, - 0.47621883462846026, - 0.45782155072512903, - 0.43703969462740505, - 0.41639763604556107, - 0.39634432190985774, - 0.3754676979213833, - 0.3514033026694096, - 0.32201847239613574, - 0.2864332276875259, - 0.2457377010495468, - 0.20277120419225664, - 0.16150359407724516, - 0.125839737059561, - 0.098526634637458, - 0.08029335699161678, - 0.06989725449620415, - 0.06458770490978366, - 0.06122547593928071, - 0.05755368431012182, - 0.053010020094237026, - 0.04899900940745385, - 0.04839944028811726, - 0.05437240000669467, - 0.06915031128894521, - 0.09286350662109367, - 0.12329870108374644, - 0.1567036275303414, - 0.18920572070275335, - 0.21904605427012064, - 0.2485446605830226, - 0.285237379020349, - 0.3419624058695626, - 0.4349889247557406, - 0.5813006983221917, - 0.7955763784723148, - 1.0854894418704737, - 1.4511715828943228 - ], - "pressure:J32:branch61_seg0": [ - 9516.889026001594, - 10948.99922679007, - 12436.039362556621, - 13902.246008477316, - 15277.699456955906, - 16506.190641836973, - 17555.14444661834, - 18422.670622597343, - 19114.559638319937, - 19646.361501291056, - 20049.347949260777, - 20329.71573229333, - 20499.254231304833, - 20561.75851864769, - 20508.621135480575, - 20347.425903096777, - 20075.57267859319, - 19705.028014895764, - 19260.311206810133, - 18754.834274979243, - 18213.52148400574, - 17653.447388585028, - 17082.816410134543, - 16509.276382952674, - 15933.804589666915, - 15358.679137340694, - 14789.901399731478, - 14236.594148860719, - 13710.943466362498, - 13224.613991926495, - 12783.277479165165, - 12381.342403318688, - 12004.067089371412, - 11622.466065690249, - 11203.083935652005, - 10713.23373313357, - 10131.437773828493, - 9446.860119880293, - 8674.18185309281, - 7845.902839283529, - 7003.249104915832, - 6199.518112560244, - 5481.161275476954, - 4882.641732298945, - 4418.455490161339, - 4096.309623956053, - 3897.2580692865245, - 3799.115804249003, - 3783.0089530657783, - 3822.29042508989, - 3907.214596487205, - 4029.96692954466, - 4184.099072068803, - 4369.103676899093, - 4575.0509929087875, - 4789.6832724760125, - 4996.536992766376, - 5175.63249050563, - 5310.556861692589, - 5392.519463902864, - 5419.979319639275, - 5399.76831267265, - 5349.6664927200145, - 5283.268788437943, - 5215.018215211959, - 5153.675979047343, - 5098.2981432224215, - 5042.591696474172, - 4977.306746459705, - 4893.883558516147, - 4789.711292052589, - 4667.457299637997, - 4537.928958470704, - 4415.120522307035, - 4311.890434263901, - 4237.094391225166, - 4193.016836329752, - 4173.8927656890455, - 4168.587811128206, - 4166.938772317975, - 4159.926582567121, - 4146.058195520923, - 4131.188023794109, - 4125.818775839427, - 4141.870770624944, - 4187.02977149892, - 4261.902085359177, - 4359.268734714563, - 4463.411332446867, - 4561.078428039301, - 4644.51857653946, - 4719.456041968934, - 4809.898970037884, - 4956.6567403375375, - 5213.338537243121, - 5636.271958371944, - 6264.049241683461, - 7131.4037058074555, - 8228.516073479968, - 9516.889026001594 - ], - "flow:J32:branch137_seg0": [ - 1.177492199440106, - 1.5062759719973708, - 1.8584580095118113, - 2.215738796767797, - 2.5594657693712115, - 2.874445113062641, - 3.150466668657426, - 3.383177324212009, - 3.5721992197942174, - 3.7212827978802316, - 3.835429880988111, - 3.918408079107546, - 3.973738637610303, - 4.002262585764188, - 4.003824143647042, - 3.978554671934019, - 3.926186200226389, - 3.8492395246962285, - 3.7511336593407685, - 3.6362777955506957, - 3.510200926326396, - 3.377110522613735, - 3.240409043140336, - 3.1021093464184415, - 2.9630142099414547, - 2.8237633685254986, - 2.685298258497804, - 2.549430557998244, - 2.4187962767760864, - 2.2962678259554763, - 2.1838267677904795, - 2.0816104413703522, - 1.9871454126639791, - 1.8950041985102644, - 1.797901090548951, - 1.6878116185804368, - 1.5580835159128872, - 1.4047867426817562, - 1.2288340074190613, - 1.03525295929583, - 0.8331686694896187, - 0.6341739504166772, - 0.4498911532211448, - 0.29006633301854867, - 0.1610705834921507, - 0.0655783621566513, - 0.0014827382718823937, - -0.03492605372965839, - -0.04932551539139671, - -0.04719348681954692, - -0.032296722975383094, - -0.0075342613370510654, - 0.02581477605078809, - 0.06684715754213576, - 0.11398132081172319, - 0.16489299353156125, - 0.2158729892384618, - 0.2625221097632991, - 0.3005934510617615, - 0.32698331324396285, - 0.3403001043386043, - 0.3414590778639161, - 0.3332622324243495, - 0.31921648610743014, - 0.30314400196593094, - 0.2875798749246138, - 0.2734263334362779, - 0.2599581527697603, - 0.24527176675648812, - 0.22724679512569565, - 0.20452728677443607, - 0.1771042703307437, - 0.14672948221743165, - 0.11622380781130612, - 0.08886282174007344, - 0.0673099540185999, - 0.05288172687404985, - 0.04506388906426604, - 0.04198900608142734, - 0.04105340767745938, - 0.03986316809649467, - 0.03730368573186488, - 0.03383987954212503, - 0.031411518811532826, - 0.032730403140936115, - 0.040126252176871255, - 0.05465175326131204, - 0.0753871103152764, - 0.09962184895683429, - 0.1240209666036573, - 0.14586965676082392, - 0.16500296352725766, - 0.1850589645299815, - 0.21381099595543654, - 0.2627294798794221, - 0.34469444069094235, - 0.4716113973030959, - 0.6526230579251348, - 0.8891698086056096, - 1.177492199440106 - ], - "pressure:J32:branch137_seg0": [ - 9516.889026001594, - 10948.99922679007, - 12436.039362556621, - 13902.246008477316, - 15277.699456955906, - 16506.190641836973, - 17555.14444661834, - 18422.670622597343, - 19114.559638319937, - 19646.361501291056, - 20049.347949260777, - 20329.71573229333, - 20499.254231304833, - 20561.75851864769, - 20508.621135480575, - 20347.425903096777, - 20075.57267859319, - 19705.028014895764, - 19260.311206810133, - 18754.834274979243, - 18213.52148400574, - 17653.447388585028, - 17082.816410134543, - 16509.276382952674, - 15933.804589666915, - 15358.679137340694, - 14789.901399731478, - 14236.594148860719, - 13710.943466362498, - 13224.613991926495, - 12783.277479165165, - 12381.342403318688, - 12004.067089371412, - 11622.466065690249, - 11203.083935652005, - 10713.23373313357, - 10131.437773828493, - 9446.860119880293, - 8674.18185309281, - 7845.902839283529, - 7003.249104915832, - 6199.518112560244, - 5481.161275476954, - 4882.641732298945, - 4418.455490161339, - 4096.309623956053, - 3897.2580692865245, - 3799.115804249003, - 3783.0089530657783, - 3822.29042508989, - 3907.214596487205, - 4029.96692954466, - 4184.099072068803, - 4369.103676899093, - 4575.0509929087875, - 4789.6832724760125, - 4996.536992766376, - 5175.63249050563, - 5310.556861692589, - 5392.519463902864, - 5419.979319639275, - 5399.76831267265, - 5349.6664927200145, - 5283.268788437943, - 5215.018215211959, - 5153.675979047343, - 5098.2981432224215, - 5042.591696474172, - 4977.306746459705, - 4893.883558516147, - 4789.711292052589, - 4667.457299637997, - 4537.928958470704, - 4415.120522307035, - 4311.890434263901, - 4237.094391225166, - 4193.016836329752, - 4173.8927656890455, - 4168.587811128206, - 4166.938772317975, - 4159.926582567121, - 4146.058195520923, - 4131.188023794109, - 4125.818775839427, - 4141.870770624944, - 4187.02977149892, - 4261.902085359177, - 4359.268734714563, - 4463.411332446867, - 4561.078428039301, - 4644.51857653946, - 4719.456041968934, - 4809.898970037884, - 4956.6567403375375, - 5213.338537243121, - 5636.271958371944, - 6264.049241683461, - 7131.4037058074555, - 8228.516073479968, - 9516.889026001594 - ], - "flow:branch58_seg0:J33": [ - 1.3842033518835852, - 1.7756848016814184, - 2.197253026578389, - 2.627254970697556, - 3.0430563320079167, - 3.425964765285464, - 3.7631217771012473, - 4.048756945639179, - 4.281570433218125, - 4.46600480997008, - 4.607789255267851, - 4.711482521667613, - 4.781605165168542, - 4.819215973605165, - 4.824377528870835, - 4.797224821664768, - 4.7373518256133265, - 4.647651242253435, - 4.532011835270324, - 4.395651610710209, - 4.245174906366089, - 4.0857122306857585, - 3.9214946090412854, - 3.7551116586367748, - 3.5876393209256743, - 3.4198911789730992, - 3.2529518865720157, - 3.0889112134114187, - 2.930856530834001, - 2.7822510059323093, - 2.645559012399791, - 2.5212102281080857, - 2.40651891923344, - 2.2952557658226613, - 2.1788792722125367, - 2.047793117785472, - 1.8938054781530251, - 1.7118112305517337, - 1.5024606508005793, - 1.2711991315139513, - 1.028616455132127, - 0.7884177469475966, - 0.564555494357097, - 0.36899208914984816, - 0.20986737186006568, - 0.09077204232937204, - 0.009706843297503145, - -0.03750324901445944, - -0.05754409653192198, - -0.0570435693599843, - -0.04065665713531327, - -0.012079732611519954, - 0.027059526388230937, - 0.07559791134792945, - 0.13166063288880234, - 0.19261310273728008, - 0.2540767362825799, - 0.3108389371122259, - 0.35775199660700163, - 0.39097412282887983, - 0.40853964829103623, - 0.41137527910651683, - 0.4026203520896874, - 0.3863787901055004, - 0.3672822252992534, - 0.34850157637805895, - 0.33130674146644046, - 0.3150229809025444, - 0.29748322889937, - 0.27615648641910656, - 0.24931431072054006, - 0.2167966943027103, - 0.18052123332587616, - 0.1437475421848567, - 0.11038591562389899, - 0.08372200093477057, - 0.06550369719054762, - 0.0552972629908095, - 0.05104410650884765, - 0.04966445503303072, - 0.04823618988140587, - 0.04528303875384519, - 0.041181597662836855, - 0.038098878730272547, - 0.03923330086470757, - 0.04741784562665926, - 0.06411204583878338, - 0.08839182164096078, - 0.11719599123425006, - 0.14658689987565754, - 0.1731875033886019, - 0.19650210212286862, - 0.22046839163993304, - 0.25398504586882065, - 0.3104428228328785, - 0.4051816714014941, - 0.5527624381434594, - 0.7644532965589483, - 1.0428243267841288, - 1.3842033518835852 - ], - "pressure:branch58_seg0:J33": [ - 9098.436075092264, - 10472.588869810217, - 11922.263780663394, - 13373.798633085755, - 14754.61372695742, - 16005.20626317698, - 17088.328040686378, - 17995.206006873006, - 18725.167419450623, - 19294.642434437348, - 19729.76730431342, - 20039.817484016057, - 20238.832481408597, - 20330.23609945074, - 20309.05453539466, - 20180.425226931507, - 19941.694183103104, - 19603.45426950409, - 19185.85729547539, - 18703.437210675358, - 18180.074745571474, - 17632.970466765833, - 17072.811052067493, - 16507.89830586328, - 15940.308280336063, - 15372.465129362263, - 14809.28712761166, - 14258.907919001571, - 13732.624679746055, - 13242.213179523, - 12794.372984857713, - 12386.890991500575, - 12007.676420172986, - 11631.331996855317, - 11226.71203648622, - 10761.401489064152, - 10211.370998273038, - 9562.576123785208, - 8824.259872952503, - 8022.420927494489, - 7195.268300183844, - 6393.0832119623465, - 5662.080817770782, - 5039.414661498193, - 4545.080970886684, - 4188.933192463108, - 3957.633358167088, - 3832.591061000412, - 3793.6195370312344, - 3815.768762765778, - 3886.8656989327546, - 3996.9671512082487, - 4140.251051261009, - 4314.614804186902, - 4511.717132202464, - 4721.134211879705, - 4927.131995155677, - 5110.876084314208, - 5255.567939568527, - 5350.782094451979, - 5392.331463871402, - 5385.464168137557, - 5344.979290453324, - 5284.101730179925, - 5217.8782427153055, - 5156.013280207989, - 5099.812749977801, - 5044.852409841317, - 4982.81380932321, - 4905.127255881619, - 4807.756018850282, - 4691.880032043234, - 4566.270389882282, - 4443.531377111381, - 4336.614070624058, - 4255.363255594389, - 4203.74504323348, - 4177.860624838545, - 4168.636691677977, - 4165.754341412053, - 4159.809641452702, - 4147.752930439115, - 4133.3689207524885, - 4125.659568608667, - 4136.030966577397, - 4172.916296366836, - 4239.001901564802, - 4328.952535665728, - 4429.345913022598, - 4527.163449605012, - 4612.9456311694585, - 4688.980880866082, - 4774.245294038432, - 4904.5018984055405, - 5129.152980084829, - 5502.432497161642, - 6067.338522732871, - 6859.86290590112, - 7879.028843175469, - 9098.436075092264 - ], - "flow:J33:branch59_seg0": [ - 0.7443768913008747, - 0.9552113309609476, - 1.1823562008540764, - 1.4141688315132364, - 1.6384216186037928, - 1.8450140150209262, - 2.026990242600952, - 2.1812199594446864, - 2.3069500965772476, - 2.4065856278797284, - 2.4832044556397648, - 2.539260642408661, - 2.5772146209459605, - 2.5976302228425445, - 2.600551555888539, - 2.5860477872034493, - 2.55389409823512, - 2.505648507933686, - 2.443386892148653, - 2.3699294083559073, - 2.2888420357661037, - 2.2028865458333358, - 2.1143587622295197, - 2.024658909458742, - 1.9343698212382752, - 1.8439322549858486, - 1.7539249814829196, - 1.6654708143651296, - 1.5802313413855338, - 1.5000762615049457, - 1.4263369530696646, - 1.3592615002197903, - 1.297414137835207, - 1.2374458879745696, - 1.1747637103828628, - 1.1041926169094132, - 1.0213037682611141, - 0.9233294339623008, - 0.8106010398781233, - 0.6860256788302246, - 0.5553005639541868, - 0.4258087071929806, - 0.30506796930848146, - 0.199536614927441, - 0.11363427036077103, - 0.04929800766404316, - 0.0054637467388030225, - -0.020089681325465555, - -0.03098426222017221, - -0.03078536779438902, - -0.0220061061605758, - -0.006657986408153181, - 0.014393990487888702, - 0.040515500912517356, - 0.07069701459107436, - 0.10353322805638965, - 0.13666433552438745, - 0.16728351009956088, - 0.1926149051147385, - 0.21058114348189141, - 0.22010884899705271, - 0.22169072549366675, - 0.21701067241231684, - 0.20827569978169655, - 0.19798834081840364, - 0.18786230867246664, - 0.17859029057321363, - 0.16981725843846188, - 0.16037816648827732, - 0.14890803703950092, - 0.13446734815001055, - 0.11696426486663894, - 0.09742561558131368, - 0.07760102401216905, - 0.059600156001623245, - 0.04519941593385368, - 0.03534882548579634, - 0.029819135559668686, - 0.027512278974435332, - 0.026766142451760302, - 0.02600087952299831, - 0.024416230847369817, - 0.02220612780739835, - 0.0205325706504452, - 0.021118356532112668, - 0.025493977414866496, - 0.03445596876913495, - 0.04751452270992147, - 0.06302688378343285, - 0.07887241765994309, - 0.09322133920885309, - 0.10579027681387776, - 0.11868085329609693, - 0.13666869999202144, - 0.1669568286901804, - 0.21780159264343893, - 0.29708548391972517, - 0.41088950930641754, - 0.5606143474656546, - 0.7443768913008747 - ], - "pressure:J33:branch59_seg0": [ - 9098.436075092264, - 10472.588869810217, - 11922.263780663394, - 13373.798633085755, - 14754.61372695742, - 16005.20626317698, - 17088.328040686378, - 17995.206006873006, - 18725.167419450623, - 19294.642434437348, - 19729.76730431342, - 20039.817484016057, - 20238.832481408597, - 20330.23609945074, - 20309.05453539466, - 20180.425226931507, - 19941.694183103104, - 19603.45426950409, - 19185.85729547539, - 18703.437210675358, - 18180.074745571474, - 17632.970466765833, - 17072.811052067493, - 16507.89830586328, - 15940.308280336063, - 15372.465129362263, - 14809.28712761166, - 14258.907919001571, - 13732.624679746055, - 13242.213179523, - 12794.372984857713, - 12386.890991500575, - 12007.676420172986, - 11631.331996855317, - 11226.71203648622, - 10761.401489064152, - 10211.370998273038, - 9562.576123785208, - 8824.259872952503, - 8022.420927494489, - 7195.268300183844, - 6393.0832119623465, - 5662.080817770782, - 5039.414661498193, - 4545.080970886684, - 4188.933192463108, - 3957.633358167088, - 3832.591061000412, - 3793.6195370312344, - 3815.768762765778, - 3886.8656989327546, - 3996.9671512082487, - 4140.251051261009, - 4314.614804186902, - 4511.717132202464, - 4721.134211879705, - 4927.131995155677, - 5110.876084314208, - 5255.567939568527, - 5350.782094451979, - 5392.331463871402, - 5385.464168137557, - 5344.979290453324, - 5284.101730179925, - 5217.8782427153055, - 5156.013280207989, - 5099.812749977801, - 5044.852409841317, - 4982.81380932321, - 4905.127255881619, - 4807.756018850282, - 4691.880032043234, - 4566.270389882282, - 4443.531377111381, - 4336.614070624058, - 4255.363255594389, - 4203.74504323348, - 4177.860624838545, - 4168.636691677977, - 4165.754341412053, - 4159.809641452702, - 4147.752930439115, - 4133.3689207524885, - 4125.659568608667, - 4136.030966577397, - 4172.916296366836, - 4239.001901564802, - 4328.952535665728, - 4429.345913022598, - 4527.163449605012, - 4612.9456311694585, - 4688.980880866082, - 4774.245294038432, - 4904.5018984055405, - 5129.152980084829, - 5502.432497161642, - 6067.338522732871, - 6859.86290590112, - 7879.028843175469, - 9098.436075092264 - ], - "flow:J33:branch145_seg0": [ - 0.6398264605827105, - 0.8204734707204708, - 1.0148968257243132, - 1.2130861391843195, - 1.404634713404124, - 1.5809507502645377, - 1.7361315345002963, - 1.8675369861944937, - 1.9746203366408777, - 2.0594191820903527, - 2.1245847996280847, - 2.172221879258952, - 2.20439054422258, - 2.2215857507626215, - 2.2238259729822953, - 2.2111770344613197, - 2.183457727378206, - 2.142002734319749, - 2.088624943121669, - 2.025722202354302, - 1.956332870599986, - 1.882825684852423, - 1.8071358468117649, - 1.7304527491780326, - 1.6532694996873991, - 1.5759589239872507, - 1.4990269050890963, - 1.423440399046289, - 1.3506251894484667, - 1.282174744427364, - 1.2192220593301257, - 1.161948727888295, - 1.109104781398234, - 1.0578098778480918, - 1.004115561829674, - 0.9436005008760582, - 0.8725017098919111, - 0.7884817965894332, - 0.6918596109224556, - 0.5851734526837267, - 0.4733158911779399, - 0.362609039754616, - 0.2594875250486154, - 0.1694554742224072, - 0.09623310149929465, - 0.04147403466532888, - 0.0042430965587001235, - -0.017413567688993888, - -0.02655983431174977, - -0.02625820156559528, - -0.01865055097473747, - -0.005421746203366774, - 0.012665535900342233, - 0.0350824104354121, - 0.06096361829772793, - 0.08907987468089046, - 0.11741240075819247, - 0.14355542701266505, - 0.16513709149226316, - 0.18039297934698836, - 0.18843079929398343, - 0.1896845536128501, - 0.1856096796773706, - 0.17810309032380384, - 0.1692938844808498, - 0.16063926770559228, - 0.15271645089322683, - 0.14520572246408253, - 0.13710506241109274, - 0.1272484493796057, - 0.1148469625705295, - 0.09983242943607139, - 0.08309561774456248, - 0.0661465181726876, - 0.05078575962227574, - 0.038522585000916904, - 0.030154871704751278, - 0.02547812743114081, - 0.023531827534412318, - 0.022898312581270414, - 0.022235310358407565, - 0.02086680790647537, - 0.01897546985543849, - 0.017566308079827352, - 0.0181149443325949, - 0.021923868211792753, - 0.029656077069648436, - 0.040877298931039315, - 0.05416910745081722, - 0.06771448221571442, - 0.07996616417974876, - 0.09071182530899081, - 0.10178753834383608, - 0.11731634587679922, - 0.14348599414269814, - 0.18738007875805512, - 0.2556769542237342, - 0.35356378725253074, - 0.4822099793184743, - 0.6398264605827105 - ], - "pressure:J33:branch145_seg0": [ - 9098.436075092264, - 10472.588869810217, - 11922.263780663394, - 13373.798633085755, - 14754.61372695742, - 16005.20626317698, - 17088.328040686378, - 17995.206006873006, - 18725.167419450623, - 19294.642434437348, - 19729.76730431342, - 20039.817484016057, - 20238.832481408597, - 20330.23609945074, - 20309.05453539466, - 20180.425226931507, - 19941.694183103104, - 19603.45426950409, - 19185.85729547539, - 18703.437210675358, - 18180.074745571474, - 17632.970466765833, - 17072.811052067493, - 16507.89830586328, - 15940.308280336063, - 15372.465129362263, - 14809.28712761166, - 14258.907919001571, - 13732.624679746055, - 13242.213179523, - 12794.372984857713, - 12386.890991500575, - 12007.676420172986, - 11631.331996855317, - 11226.71203648622, - 10761.401489064152, - 10211.370998273038, - 9562.576123785208, - 8824.259872952503, - 8022.420927494489, - 7195.268300183844, - 6393.0832119623465, - 5662.080817770782, - 5039.414661498193, - 4545.080970886684, - 4188.933192463108, - 3957.633358167088, - 3832.591061000412, - 3793.6195370312344, - 3815.768762765778, - 3886.8656989327546, - 3996.9671512082487, - 4140.251051261009, - 4314.614804186902, - 4511.717132202464, - 4721.134211879705, - 4927.131995155677, - 5110.876084314208, - 5255.567939568527, - 5350.782094451979, - 5392.331463871402, - 5385.464168137557, - 5344.979290453324, - 5284.101730179925, - 5217.8782427153055, - 5156.013280207989, - 5099.812749977801, - 5044.852409841317, - 4982.81380932321, - 4905.127255881619, - 4807.756018850282, - 4691.880032043234, - 4566.270389882282, - 4443.531377111381, - 4336.614070624058, - 4255.363255594389, - 4203.74504323348, - 4177.860624838545, - 4168.636691677977, - 4165.754341412053, - 4159.809641452702, - 4147.752930439115, - 4133.3689207524885, - 4125.659568608667, - 4136.030966577397, - 4172.916296366836, - 4239.001901564802, - 4328.952535665728, - 4429.345913022598, - 4527.163449605012, - 4612.9456311694585, - 4688.980880866082, - 4774.245294038432, - 4904.5018984055405, - 5129.152980084829, - 5502.432497161642, - 6067.338522732871, - 6859.86290590112, - 7879.028843175469, - 9098.436075092264 - ], - "flow:branch61_seg2:J34": [ - 1.4452983447288947, - 1.8765615209109412, - 2.3559790410681707, - 2.8605930043065855, - 3.3646794251091783, - 3.8446215136239443, - 4.281785290163602, - 4.664579044648829, - 4.98732129718562, - 5.251260216067728, - 5.460687783024657, - 5.620616735176786, - 5.736324728788777, - 5.810404221140177, - 5.844101761587924, - 5.837925382308296, - 5.791833739178003, - 5.708081686162518, - 5.5902921348239945, - 5.443910071285023, - 5.275858176210643, - 5.092538322659585, - 4.899656921737386, - 4.7012732346550345, - 4.49979827719262, - 4.296821305067038, - 4.093783325192229, - 3.8928534760912736, - 3.6971825729426717, - 3.5105654856215525, - 3.33626712761258, - 3.1758929057303225, - 3.028008803813437, - 2.8874575067558115, - 2.745955801782086, - 2.5931981597147993, - 2.419169579869151, - 2.2162712957686543, - 1.982080549648312, - 1.7196039173427224, - 1.437910938404445, - 1.150535629108309, - 0.8729550631482678, - 0.6199802495541168, - 0.403381293531398, - 0.23024228045169123, - 0.1019693762146363, - 0.016164326128982574, - -0.03315608757313812, - -0.05293919938400315, - -0.049330349545588285, - -0.027459351252610068, - 0.009602418048772677, - 0.059631074576984834, - 0.1203872752105849, - 0.18903636466638388, - 0.2611351895767128, - 0.33113631799635956, - 0.3930787930727384, - 0.44182089996766977, - 0.4739061116713219, - 0.48873933895729177, - 0.4883376778309761, - 0.47649801509586437, - 0.4581017401651054, - 0.4372983308511468, - 0.41663673280452723, - 0.39659990447008875, - 0.3757801246759804, - 0.3518034209455761, - 0.3225038208308465, - 0.28697796940908366, - 0.24630047370027094, - 0.20328372565125039, - 0.16191267484291616, - 0.1261201827312998, - 0.09868814902362313, - 0.080352026114706, - 0.06991564666243018, - 0.06461172349470251, - 0.06127089733980741, - 0.0576197298065799, - 0.05306529704649203, - 0.04899258031096198, - 0.04828829920074868, - 0.05412623700345302, - 0.06879175249432899, - 0.09243035851736275, - 0.12285026550019572, - 0.15630236948481913, - 0.18886136120200447, - 0.21870442073781426, - 0.24807636274362665, - 0.28445030918256864, - 0.34062248752985486, - 0.43283151275481374, - 0.5782145461841899, - 0.7914971583316508, - 1.080351383501336, - 1.4452983447288947 - ], - "pressure:branch61_seg2:J34": [ - 8446.727702056965, - 9694.169463598184, - 11038.666368727934, - 12415.735151808583, - 13756.914635793877, - 15001.725331107058, - 16107.291949340817, - 17056.747340561207, - 17841.18109195641, - 18468.266525116785, - 18959.278848593927, - 19323.336670622804, - 19573.87454488431, - 19716.739896895862, - 19749.574681742473, - 19677.041529912192, - 19498.0541991615, - 19220.09028002446, - 18858.813608571305, - 18428.07221382134, - 17949.091923769596, - 17438.49009068827, - 16908.464318488102, - 16368.669869065128, - 15823.20219424797, - 15275.51304305372, - 14730.123470440498, - 14194.020430149767, - 13676.976265451098, - 13189.84240836698, - 12739.898042989938, - 12327.666691415749, - 11945.42784496058, - 11573.18670373267, - 11184.774231809264, - 10750.982368278968, - 10247.463639166852, - 9657.516804281848, - 8982.991631533758, - 8241.500918390617, - 7463.1720515891975, - 6690.992968775407, - 5967.684575505332, - 5330.267847525493, - 4803.747287796239, - 4402.182064937263, - 4119.761062751842, - 3944.9309331246027, - 3860.5129616359213, - 3844.4179587977173, - 3883.6148245299732, - 3966.185052909481, - 4085.3169483080933, - 4237.542703097693, - 4414.657334207905, - 4607.919692178019, - 4803.875392400193, - 4985.617131508998, - 5137.1721196095, - 5247.15681437467, - 5309.162730857184, - 5324.605847773422, - 5304.30392925068, - 5259.403438892476, - 5203.242646543904, - 5146.095180192946, - 5091.570829542754, - 5038.014083985317, - 4979.56166044742, - 4909.008647129706, - 4821.740583609782, - 4717.36457727485, - 4601.93220203803, - 4485.264648105811, - 4378.803520190443, - 4292.387222656403, - 4231.513720640707, - 4194.813232235863, - 4176.242850453799, - 4167.446925522392, - 4159.485302233097, - 4148.2237848740015, - 4135.055374616051, - 4126.277423464539, - 4131.227986268349, - 4157.949462615121, - 4210.440950258294, - 4286.297832208743, - 4375.571322858514, - 4467.128510233194, - 4551.642009991253, - 4628.227970635547, - 4709.738887494854, - 4824.021796875743, - 5012.424866330516, - 5322.755637276693, - 5798.202331277917, - 6475.984187393128, - 7362.5445851416125, - 8446.727702056965 - ], - "flow:J34:branch62_seg0": [ - 0.67622025389341, - 0.8783711050875878, - 1.1033731414648424, - 1.340464584350908, - 1.5775877597731163, - 1.803621194109502, - 2.0097457533984526, - 2.1904271121768986, - 2.3429358140263368, - 2.467774963826902, - 2.566924315564642, - 2.6427362325717816, - 2.697675231885972, - 2.732995818798868, - 2.7492991482479607, - 2.746833854499624, - 2.7255944302673814, - 2.6866047831060027, - 2.6315687267249244, - 2.5630294123591804, - 2.4842128841342745, - 2.39814337058915, - 2.3075095232353857, - 2.2142364960181506, - 2.1194803907851045, - 2.0239971273466844, - 1.9284691825194364, - 1.8339115554577916, - 1.7417955505813818, - 1.653897553547171, - 1.571758501903405, - 1.4961476116902528, - 1.4264197388761144, - 1.3601915439158685, - 1.2935998736023864, - 1.2218209656549586, - 1.1401479445988594, - 1.0449837915648093, - 0.9351315095223346, - 0.8119542908443188, - 0.6796501074469107, - 0.5445298241666465, - 0.4138513283442134, - 0.29458839616087673, - 0.19229638901998966, - 0.11035847549239473, - 0.04951376046627929, - 0.008660865650579722, - -0.014965461074491062, - -0.02461505244582396, - -0.0231941563701629, - -0.013115018707352643, - 0.004149399290856984, - 0.02753789077583046, - 0.0560014890672268, - 0.0882069561262076, - 0.12208096857891754, - 0.1550277547507302, - 0.18424781311741878, - 0.2073156108192137, - 0.22259013039421185, - 0.22975952461134463, - 0.2297447631857739, - 0.22431210959809472, - 0.21573974983004698, - 0.20598664588324136, - 0.196268826015501, - 0.18683416234002895, - 0.17704231900176418, - 0.16578912763542955, - 0.15205721224940894, - 0.1354101567933088, - 0.11633017982821242, - 0.09612312003671676, - 0.07664908100871774, - 0.05975524905632551, - 0.04676014245692729, - 0.03803343944506393, - 0.03303182727355661, - 0.030471412355080753, - 0.028870726031162138, - 0.027151635874783763, - 0.025018307771040905, - 0.023101142625785887, - 0.022739989372705903, - 0.025422251308539066, - 0.032229332379883874, - 0.04325204395044398, - 0.05748426183018257, - 0.07318069287777623, - 0.08850213141975073, - 0.10257305756357633, - 0.11640858210617784, - 0.13346954555221813, - 0.15971550811825944, - 0.20275171055521815, - 0.27061371108404547, - 0.37024107629798714, - 0.5053478781980117, - 0.67622025389341 - ], - "pressure:J34:branch62_seg0": [ - 8446.727702056965, - 9694.169463598184, - 11038.666368727934, - 12415.735151808583, - 13756.914635793877, - 15001.725331107058, - 16107.291949340817, - 17056.747340561207, - 17841.18109195641, - 18468.266525116785, - 18959.278848593927, - 19323.336670622804, - 19573.87454488431, - 19716.739896895862, - 19749.574681742473, - 19677.041529912192, - 19498.0541991615, - 19220.09028002446, - 18858.813608571305, - 18428.07221382134, - 17949.091923769596, - 17438.49009068827, - 16908.464318488102, - 16368.669869065128, - 15823.20219424797, - 15275.51304305372, - 14730.123470440498, - 14194.020430149767, - 13676.976265451098, - 13189.84240836698, - 12739.898042989938, - 12327.666691415749, - 11945.42784496058, - 11573.18670373267, - 11184.774231809264, - 10750.982368278968, - 10247.463639166852, - 9657.516804281848, - 8982.991631533758, - 8241.500918390617, - 7463.1720515891975, - 6690.992968775407, - 5967.684575505332, - 5330.267847525493, - 4803.747287796239, - 4402.182064937263, - 4119.761062751842, - 3944.9309331246027, - 3860.5129616359213, - 3844.4179587977173, - 3883.6148245299732, - 3966.185052909481, - 4085.3169483080933, - 4237.542703097693, - 4414.657334207905, - 4607.919692178019, - 4803.875392400193, - 4985.617131508998, - 5137.1721196095, - 5247.15681437467, - 5309.162730857184, - 5324.605847773422, - 5304.30392925068, - 5259.403438892476, - 5203.242646543904, - 5146.095180192946, - 5091.570829542754, - 5038.014083985317, - 4979.56166044742, - 4909.008647129706, - 4821.740583609782, - 4717.36457727485, - 4601.93220203803, - 4485.264648105811, - 4378.803520190443, - 4292.387222656403, - 4231.513720640707, - 4194.813232235863, - 4176.242850453799, - 4167.446925522392, - 4159.485302233097, - 4148.2237848740015, - 4135.055374616051, - 4126.277423464539, - 4131.227986268349, - 4157.949462615121, - 4210.440950258294, - 4286.297832208743, - 4375.571322858514, - 4467.128510233194, - 4551.642009991253, - 4628.227970635547, - 4709.738887494854, - 4824.021796875743, - 5012.424866330516, - 5322.755637276693, - 5798.202331277917, - 6475.984187393128, - 7362.5445851416125, - 8446.727702056965 - ], - "flow:J34:branch126_seg0": [ - 0.7690780908354848, - 0.9981904158233531, - 1.2526058996033282, - 1.5201284199556775, - 1.7870916653360622, - 2.0410003195144424, - 2.2720395367651487, - 2.474151932471931, - 2.644385483159283, - 2.7834852522408244, - 2.8937634674600146, - 2.9778805026050037, - 3.0386494969028055, - 3.077408402341309, - 3.094802613339962, - 3.0910915278086732, - 3.066239308910622, - 3.0214769030565165, - 2.958723408099069, - 2.880880658925842, - 2.7916452920763692, - 2.6943949520704336, - 2.592147398502, - 2.487036738636885, - 2.380317886407516, - 2.2728241777203526, - 2.1653141426727913, - 2.0589419206334822, - 1.95538702236129, - 1.8566679320743824, - 1.7645086257091747, - 1.6797452940400697, - 1.6015890649373223, - 1.5272659628399423, - 1.4523559281796992, - 1.3713771940598407, - 1.2790216352702917, - 1.1712875042038453, - 1.0469490401259771, - 0.9076496264984037, - 0.7582608309575346, - 0.6060058049416626, - 0.4591037348040543, - 0.32539185339323984, - 0.21108490451140832, - 0.11988380495929649, - 0.05245561574835701, - 0.00750346047840285, - -0.018190626498647056, - -0.02832414693817919, - -0.026136193175425388, - -0.014344332545257419, - 0.005453018757915692, - 0.032093183801154355, - 0.0643857861433581, - 0.10082940854017626, - 0.13905422099779519, - 0.17610856324562937, - 0.2088309799553196, - 0.2345052891484561, - 0.2513159812771101, - 0.2589798143459471, - 0.2585929146452022, - 0.2521859054977696, - 0.24236199033505845, - 0.23131168496790536, - 0.22036790678902637, - 0.2097657421300598, - 0.19873780567421628, - 0.1860142933101465, - 0.1704466085814375, - 0.1515678126157749, - 0.12997029387205852, - 0.10716060561453367, - 0.08526359383419842, - 0.06636493367497426, - 0.05192800656669586, - 0.04231858666964208, - 0.036883819388873584, - 0.03414031113962178, - 0.032400171308645274, - 0.03046809393179613, - 0.028046989275451132, - 0.025891437685176093, - 0.02554830982804278, - 0.028703985694913964, - 0.036562420114445104, - 0.0491783145669188, - 0.06536600367001315, - 0.0831216766070429, - 0.10035922978225371, - 0.11613136317423797, - 0.13166778063744888, - 0.1509807636303505, - 0.1809069794115954, - 0.23007980219959553, - 0.30760083510014435, - 0.4212560820336636, - 0.5750035053033242, - 0.7690780908354848 - ], - "pressure:J34:branch126_seg0": [ - 8446.727702056965, - 9694.169463598184, - 11038.666368727934, - 12415.735151808583, - 13756.914635793877, - 15001.725331107058, - 16107.291949340817, - 17056.747340561207, - 17841.18109195641, - 18468.266525116785, - 18959.278848593927, - 19323.336670622804, - 19573.87454488431, - 19716.739896895862, - 19749.574681742473, - 19677.041529912192, - 19498.0541991615, - 19220.09028002446, - 18858.813608571305, - 18428.07221382134, - 17949.091923769596, - 17438.49009068827, - 16908.464318488102, - 16368.669869065128, - 15823.20219424797, - 15275.51304305372, - 14730.123470440498, - 14194.020430149767, - 13676.976265451098, - 13189.84240836698, - 12739.898042989938, - 12327.666691415749, - 11945.42784496058, - 11573.18670373267, - 11184.774231809264, - 10750.982368278968, - 10247.463639166852, - 9657.516804281848, - 8982.991631533758, - 8241.500918390617, - 7463.1720515891975, - 6690.992968775407, - 5967.684575505332, - 5330.267847525493, - 4803.747287796239, - 4402.182064937263, - 4119.761062751842, - 3944.9309331246027, - 3860.5129616359213, - 3844.4179587977173, - 3883.6148245299732, - 3966.185052909481, - 4085.3169483080933, - 4237.542703097693, - 4414.657334207905, - 4607.919692178019, - 4803.875392400193, - 4985.617131508998, - 5137.1721196095, - 5247.15681437467, - 5309.162730857184, - 5324.605847773422, - 5304.30392925068, - 5259.403438892476, - 5203.242646543904, - 5146.095180192946, - 5091.570829542754, - 5038.014083985317, - 4979.56166044742, - 4909.008647129706, - 4821.740583609782, - 4717.36457727485, - 4601.93220203803, - 4485.264648105811, - 4378.803520190443, - 4292.387222656403, - 4231.513720640707, - 4194.813232235863, - 4176.242850453799, - 4167.446925522392, - 4159.485302233097, - 4148.2237848740015, - 4135.055374616051, - 4126.277423464539, - 4131.227986268349, - 4157.949462615121, - 4210.440950258294, - 4286.297832208743, - 4375.571322858514, - 4467.128510233194, - 4551.642009991253, - 4628.227970635547, - 4709.738887494854, - 4824.021796875743, - 5012.424866330516, - 5322.755637276693, - 5798.202331277917, - 6475.984187393128, - 7362.5445851416125, - 8446.727702056965 - ], - "flow:branch63_seg0:J35": [ - 1.8731630568210285, - 2.4418782253813593, - 3.091017550071438, - 3.7950979676948986, - 4.5231712338463375, - 5.24436363770398, - 5.931675556050902, - 6.5649694429681436, - 7.131030541449756, - 7.625071341959703, - 8.046799143659191, - 8.398493579234408, - 8.683771623719704, - 8.904224476633276, - 9.060616628681942, - 9.1529135853074, - 9.180789582815505, - 9.146544090258343, - 9.054107789613523, - 8.910047401471767, - 8.72298215555406, - 8.501517674116428, - 8.253917709297115, - 7.986769240948724, - 7.704857319101173, - 7.411862456011013, - 7.1110602219386845, - 6.8063516163987385, - 6.502665940767177, - 6.205703632910603, - 5.920715021487205, - 5.6511700142170085, - 5.396986687146806, - 5.153560729006128, - 4.912027887434462, - 4.660338243519449, - 4.3857476184312505, - 4.077505639039028, - 3.730194618949593, - 3.344655637923979, - 2.929345924364973, - 2.4988403166413224, - 2.0714010019385514, - 1.6659296084017299, - 1.2990616254139629, - 0.9826500570916084, - 0.7222831469709835, - 0.5186865879009325, - 0.3676373344796755, - 0.26288748652660104, - 0.19798205190937768, - 0.16693844632137966, - 0.16561861783750467, - 0.19062194255296946, - 0.238566414025889, - 0.30531512712916326, - 0.38485990371442547, - 0.4697333905217961, - 0.5516601895586457, - 0.6229342586000828, - 0.677578603869358, - 0.712849603706725, - 0.7291535485010486, - 0.7295310137265287, - 0.7188373730832012, - 0.7017148483409564, - 0.6814972871457765, - 0.6593880794537137, - 0.634405097496956, - 0.6042313342266326, - 0.5664451544527335, - 0.5198053592262895, - 0.4652014638969313, - 0.4056232319023175, - 0.3456922750056278, - 0.29035987035106975, - 0.24360048677630025, - 0.20725481733533466, - 0.1808978883815703, - 0.16203878274367242, - 0.1473517258364176, - 0.1341057970914062, - 0.12122808590097986, - 0.10986313447383295, - 0.10304606223045348, - 0.10448849102352499, - 0.11722554342833993, - 0.14205941305687517, - 0.17713606322752243, - 0.21847669819168522, - 0.261452509865437, - 0.3033704579056251, - 0.3459276365734642, - 0.39696030602411647, - 0.471047867082375, - 0.5878136863578775, - 0.7693995303905065, - 1.036381466467414, - 1.4024194013242766, - 1.8731630568210285 - ], - "pressure:branch63_seg0:J35": [ - 7477.963330109598, - 8480.904751675977, - 9595.266589972598, - 10775.077862961869, - 11967.91546272513, - 13124.362838733114, - 14204.61789549309, - 15183.972003121602, - 16045.670664944495, - 16787.142534250168, - 17413.94866395905, - 17928.392875845242, - 18337.243865326145, - 18642.37760180056, - 18842.299935790885, - 18938.895849603738, - 18930.741166343036, - 18823.16719229025, - 18626.62646113924, - 18351.67608764646, - 18014.277622314137, - 17628.53453054416, - 17206.264153008022, - 16757.282404539383, - 16287.765132416134, - 15802.948697404938, - 15308.396645601291, - 14811.131900171986, - 14320.010194478495, - 13844.74722373053, - 13392.98852275774, - 12967.971724030793, - 12566.550632598515, - 12176.923677002877, - 11781.441666232273, - 11358.60233667768, - 10888.574116194366, - 10355.901986012344, - 9757.344444636206, - 9100.71320180836, - 8404.696462980744, - 7698.308617139454, - 7013.114942219606, - 6379.233195036201, - 5819.853741512077, - 5351.062851169492, - 4975.914165628871, - 4691.152596018058, - 4488.078903293829, - 4353.970976599735, - 4279.5224612373795, - 4255.956285694341, - 4277.257806049532, - 4339.034605779171, - 4434.863295353728, - 4557.154590274004, - 4694.755984012931, - 4834.179006014407, - 4961.754898152252, - 5066.221006991086, - 5139.654443441316, - 5180.075294962546, - 5191.733788324457, - 5180.648655779904, - 5155.636242638319, - 5123.995516963808, - 5089.307896390209, - 5051.64643976374, - 5007.872689512266, - 4953.4298389957785, - 4884.95450193668, - 4801.649068483672, - 4706.971794868037, - 4607.539235239698, - 4511.686894964751, - 4427.245766523632, - 4359.4997087579195, - 4309.364293547825, - 4274.123787430162, - 4248.634453396597, - 4227.067990237639, - 4206.009181959233, - 4185.5021202662065, - 4169.214947018724, - 4163.363776003242, - 4173.963683359707, - 4204.791963895231, - 4255.20138705079, - 4319.4625191707455, - 4390.11927482406, - 4459.967167729387, - 4527.076447850109, - 4598.759179337641, - 4693.309400083463, - 4839.828665133457, - 5074.1252625810685, - 5431.362385479911, - 5943.817773023515, - 6626.138953069636, - 7477.963330109598 - ], - "flow:J35:branch64_seg0": [ - 0.40665989840437206, - 0.5297464268041658, - 0.6700054161790806, - 0.8218784726139796, - 0.9786830282398954, - 1.1337739538899172, - 1.2813691651244807, - 1.4171843665301194, - 1.538439238337053, - 1.644155469125571, - 1.7343114621270828, - 1.8094168042556438, - 1.870254803067658, - 1.917165644879866, - 1.9503003598731217, - 1.9696550320823278, - 1.9751550271708294, - 1.9673066069903937, - 1.9469856333080735, - 1.9156077986993947, - 1.8750412776448064, - 1.8271455455276364, - 1.7736865319435238, - 1.7160730509996063, - 1.6553218704513812, - 1.5922146466755152, - 1.5274556737129767, - 1.4618873312570728, - 1.3965762074023613, - 1.3327524441838052, - 1.2715423508101122, - 1.2136753082304523, - 1.1591081006864319, - 1.1068190168330727, - 1.0548680053601238, - 1.000641633182775, - 0.9413975572883515, - 0.8748356858652143, - 0.7998294292213461, - 0.7166121635964368, - 0.6270512760388015, - 0.5343283710222214, - 0.44239978116353385, - 0.3553385283011705, - 0.27669435892407307, - 0.20899665924798824, - 0.1534046671362327, - 0.11002224558555092, - 0.07792447387922742, - 0.05574199161870473, - 0.042082373719822624, - 0.03567117328243608, - 0.03561787942916301, - 0.041200790797268606, - 0.051694463474133895, - 0.06619727120121967, - 0.08340715840352773, - 0.10170700445817155, - 0.11931052648703819, - 0.1345652661387713, - 0.14619948500271593, - 0.15364436126200093, - 0.15701290202863788, - 0.15697633370004302, - 0.1545908361342716, - 0.1508559687927908, - 0.14647850932688722, - 0.14170193912999177, - 0.13630053905102585, - 0.1297661511830623, - 0.12157933956713118, - 0.11148006245670748, - 0.09967398072897946, - 0.086821723380325, - 0.07392682269971766, - 0.06205624624233137, - 0.05205786245796683, - 0.044314517673318975, - 0.0387152753130279, - 0.03471192106934709, - 0.03158445331136036, - 0.02874792585053899, - 0.025984352048068163, - 0.023555436938218398, - 0.022126820562952357, - 0.02250124683257242, - 0.025325545891070715, - 0.03075741160937495, - 0.038377785666902656, - 0.04731756278734503, - 0.05657842950262701, - 0.06559670514601317, - 0.07477052028414193, - 0.08583130456472621, - 0.10196322374031448, - 0.12743120984197961, - 0.16699777301419005, - 0.2250871068607074, - 0.3046047899604326, - 0.40665989840437206 - ], - "pressure:J35:branch64_seg0": [ - 7477.963330109598, - 8480.904751675977, - 9595.266589972598, - 10775.077862961869, - 11967.91546272513, - 13124.362838733114, - 14204.61789549309, - 15183.972003121602, - 16045.670664944495, - 16787.142534250168, - 17413.94866395905, - 17928.392875845242, - 18337.243865326145, - 18642.37760180056, - 18842.299935790885, - 18938.895849603738, - 18930.741166343036, - 18823.16719229025, - 18626.62646113924, - 18351.67608764646, - 18014.277622314137, - 17628.53453054416, - 17206.264153008022, - 16757.282404539383, - 16287.765132416134, - 15802.948697404938, - 15308.396645601291, - 14811.131900171986, - 14320.010194478495, - 13844.74722373053, - 13392.98852275774, - 12967.971724030793, - 12566.550632598515, - 12176.923677002877, - 11781.441666232273, - 11358.60233667768, - 10888.574116194366, - 10355.901986012344, - 9757.344444636206, - 9100.71320180836, - 8404.696462980744, - 7698.308617139454, - 7013.114942219606, - 6379.233195036201, - 5819.853741512077, - 5351.062851169492, - 4975.914165628871, - 4691.152596018058, - 4488.078903293829, - 4353.970976599735, - 4279.5224612373795, - 4255.956285694341, - 4277.257806049532, - 4339.034605779171, - 4434.863295353728, - 4557.154590274004, - 4694.755984012931, - 4834.179006014407, - 4961.754898152252, - 5066.221006991086, - 5139.654443441316, - 5180.075294962546, - 5191.733788324457, - 5180.648655779904, - 5155.636242638319, - 5123.995516963808, - 5089.307896390209, - 5051.64643976374, - 5007.872689512266, - 4953.4298389957785, - 4884.95450193668, - 4801.649068483672, - 4706.971794868037, - 4607.539235239698, - 4511.686894964751, - 4427.245766523632, - 4359.4997087579195, - 4309.364293547825, - 4274.123787430162, - 4248.634453396597, - 4227.067990237639, - 4206.009181959233, - 4185.5021202662065, - 4169.214947018724, - 4163.363776003242, - 4173.963683359707, - 4204.791963895231, - 4255.20138705079, - 4319.4625191707455, - 4390.11927482406, - 4459.967167729387, - 4527.076447850109, - 4598.759179337641, - 4693.309400083463, - 4839.828665133457, - 5074.1252625810685, - 5431.362385479911, - 5943.817773023515, - 6626.138953069636, - 7477.963330109598 - ], - "flow:J35:branch83_seg0": [ - 0.7715962377751319, - 1.0044072439204914, - 1.26897683029155, - 1.5547901782932718, - 1.8491382193241517, - 2.1395527365958262, - 2.4152870010774157, - 2.668505012964763, - 2.8940918719280972, - 3.0904405807241373, - 3.257647397125512, - 3.3966959672816417, - 3.5091254760673207, - 3.595506393946921, - 3.656100047528412, - 3.6908772405710355, - 3.699681159608236, - 3.6835308544650234, - 3.644066974473749, - 3.584031633814575, - 3.506992709364632, - 3.41641177966248, - 3.3156147598412957, - 3.207201515635628, - 3.093028439078, - 2.9745383171074304, - 2.8530294761077366, - 2.7300927530403483, - 2.60775166377416, - 2.4883361211005335, - 2.3739456873806324, - 2.2659209550754764, - 2.164107354090407, - 2.0664730795115203, - 1.9692921486225758, - 1.8675835656375244, - 1.7561730065469383, - 1.6307885050538464, - 1.489440372987622, - 1.3326933535925811, - 1.1642341388196498, - 0.99018351308686, - 0.8180421466318344, - 0.6554577882475562, - 0.5090782044719622, - 0.38349755871280805, - 0.28071682371584633, - 0.20087212887641095, - 0.14205222359658248, - 0.10164638582022163, - 0.07705583191709474, - 0.06586087605214695, - 0.066477027271841, - 0.0775675967903397, - 0.09775805691692227, - 0.12537471687518373, - 0.1579274257530633, - 0.1923479379997898, - 0.22527276464975193, - 0.25361610727416284, - 0.2750244181770945, - 0.28850752036735644, - 0.2943565543709259, - 0.293889774393948, - 0.289139403438709, - 0.28197802208761796, - 0.27370147292284924, - 0.2647199473206346, - 0.25455525905348086, - 0.24221958141248107, - 0.22672519577467237, - 0.2076116552781448, - 0.18531677860529325, - 0.1611189174091304, - 0.13694561207270647, - 0.11481095709428299, - 0.09628659800308095, - 0.08203218769847659, - 0.07179836112677922, - 0.06450230345563092, - 0.05876037372299291, - 0.05349362341335023, - 0.048326693332416897, - 0.0438007300713352, - 0.04121215987757842, - 0.04208614849478661, - 0.04762803284123559, - 0.05808448366348354, - 0.07260661976699553, - 0.08951222250812525, - 0.10690354299631095, - 0.12375429398885485, - 0.14090284087288207, - 0.16172849349739193, - 0.19235727605653027, - 0.24088089788084843, - 0.316346862617298, - 0.42700511250286766, - 0.5780648322740316, - 0.7715962377751319 - ], - "pressure:J35:branch83_seg0": [ - 7477.963330109598, - 8480.904751675977, - 9595.266589972598, - 10775.077862961869, - 11967.91546272513, - 13124.362838733114, - 14204.61789549309, - 15183.972003121602, - 16045.670664944495, - 16787.142534250168, - 17413.94866395905, - 17928.392875845242, - 18337.243865326145, - 18642.37760180056, - 18842.299935790885, - 18938.895849603738, - 18930.741166343036, - 18823.16719229025, - 18626.62646113924, - 18351.67608764646, - 18014.277622314137, - 17628.53453054416, - 17206.264153008022, - 16757.282404539383, - 16287.765132416134, - 15802.948697404938, - 15308.396645601291, - 14811.131900171986, - 14320.010194478495, - 13844.74722373053, - 13392.98852275774, - 12967.971724030793, - 12566.550632598515, - 12176.923677002877, - 11781.441666232273, - 11358.60233667768, - 10888.574116194366, - 10355.901986012344, - 9757.344444636206, - 9100.71320180836, - 8404.696462980744, - 7698.308617139454, - 7013.114942219606, - 6379.233195036201, - 5819.853741512077, - 5351.062851169492, - 4975.914165628871, - 4691.152596018058, - 4488.078903293829, - 4353.970976599735, - 4279.5224612373795, - 4255.956285694341, - 4277.257806049532, - 4339.034605779171, - 4434.863295353728, - 4557.154590274004, - 4694.755984012931, - 4834.179006014407, - 4961.754898152252, - 5066.221006991086, - 5139.654443441316, - 5180.075294962546, - 5191.733788324457, - 5180.648655779904, - 5155.636242638319, - 5123.995516963808, - 5089.307896390209, - 5051.64643976374, - 5007.872689512266, - 4953.4298389957785, - 4884.95450193668, - 4801.649068483672, - 4706.971794868037, - 4607.539235239698, - 4511.686894964751, - 4427.245766523632, - 4359.4997087579195, - 4309.364293547825, - 4274.123787430162, - 4248.634453396597, - 4227.067990237639, - 4206.009181959233, - 4185.5021202662065, - 4169.214947018724, - 4163.363776003242, - 4173.963683359707, - 4204.791963895231, - 4255.20138705079, - 4319.4625191707455, - 4390.11927482406, - 4459.967167729387, - 4527.076447850109, - 4598.759179337641, - 4693.309400083463, - 4839.828665133457, - 5074.1252625810685, - 5431.362385479911, - 5943.817773023515, - 6626.138953069636, - 7477.963330109598 - ], - "flow:J35:branch97_seg0": [ - 0.6949069206415246, - 0.9077245546567011, - 1.1520353036008073, - 1.418429316787647, - 1.6953499862822894, - 1.971036947218235, - 2.2350193898490054, - 2.479280063473261, - 2.6984994311846076, - 2.8904752921099957, - 3.0548402844065974, - 3.19238080769712, - 3.3043913445847255, - 3.3915524378064914, - 3.454216221280409, - 3.4923813126540364, - 3.505953396036441, - 3.4957066288029206, - 3.4630551818316992, - 3.4104079689577964, - 3.340948168544624, - 3.257960348926311, - 3.164616417512297, - 3.0634946743134885, - 2.956507009571792, - 2.845109492228066, - 2.730575072117972, - 2.614371532101319, - 2.4983380695906563, - 2.3846150676262643, - 2.2752269832964607, - 2.1715737509110813, - 2.0737712323699666, - 1.9802686326615353, - 1.8878677334517624, - 1.7921130446991484, - 1.6881770545959613, - 1.571881448119967, - 1.440924816740626, - 1.2953501207349616, - 1.1380605095065217, - 0.9743284325322407, - 0.8109590741431829, - 0.6551332918530037, - 0.5132890620179275, - 0.3901558391308118, - 0.2881616561189043, - 0.20779221343897059, - 0.14766063700386564, - 0.10549910908767467, - 0.07884384627246029, - 0.06540639698679661, - 0.06352371113650067, - 0.07185355496536118, - 0.08911389363483278, - 0.11374313905275987, - 0.1435253195578344, - 0.1756784480638348, - 0.20707689842185562, - 0.23475288518714862, - 0.2563547006895477, - 0.2706977220773676, - 0.2777840921014851, - 0.27866490563253776, - 0.2751071335102206, - 0.26888085746054774, - 0.26131730489603994, - 0.2529661930030873, - 0.24354929939244913, - 0.23224560163108923, - 0.2181406191109299, - 0.20071364149143725, - 0.1802107045626586, - 0.1576825911128621, - 0.13481984023320373, - 0.11349266701445541, - 0.09525602631525243, - 0.0809081119635391, - 0.07038425194176316, - 0.06282455821869438, - 0.05700689880206431, - 0.05186424782751695, - 0.0469170405204948, - 0.04250696746427935, - 0.039707081789922716, - 0.03990109569616595, - 0.044271964696033644, - 0.053217517784016656, - 0.06615165779362427, - 0.0816469128962149, - 0.09797053736649901, - 0.1140194587707571, - 0.13025427541644022, - 0.14940050796199839, - 0.1767273672855302, - 0.21950157863504943, - 0.28605489475901835, - 0.3842892471038392, - 0.5197497790898122, - 0.6949069206415246 - ], - "pressure:J35:branch97_seg0": [ - 7477.963330109598, - 8480.904751675977, - 9595.266589972598, - 10775.077862961869, - 11967.91546272513, - 13124.362838733114, - 14204.61789549309, - 15183.972003121602, - 16045.670664944495, - 16787.142534250168, - 17413.94866395905, - 17928.392875845242, - 18337.243865326145, - 18642.37760180056, - 18842.299935790885, - 18938.895849603738, - 18930.741166343036, - 18823.16719229025, - 18626.62646113924, - 18351.67608764646, - 18014.277622314137, - 17628.53453054416, - 17206.264153008022, - 16757.282404539383, - 16287.765132416134, - 15802.948697404938, - 15308.396645601291, - 14811.131900171986, - 14320.010194478495, - 13844.74722373053, - 13392.98852275774, - 12967.971724030793, - 12566.550632598515, - 12176.923677002877, - 11781.441666232273, - 11358.60233667768, - 10888.574116194366, - 10355.901986012344, - 9757.344444636206, - 9100.71320180836, - 8404.696462980744, - 7698.308617139454, - 7013.114942219606, - 6379.233195036201, - 5819.853741512077, - 5351.062851169492, - 4975.914165628871, - 4691.152596018058, - 4488.078903293829, - 4353.970976599735, - 4279.5224612373795, - 4255.956285694341, - 4277.257806049532, - 4339.034605779171, - 4434.863295353728, - 4557.154590274004, - 4694.755984012931, - 4834.179006014407, - 4961.754898152252, - 5066.221006991086, - 5139.654443441316, - 5180.075294962546, - 5191.733788324457, - 5180.648655779904, - 5155.636242638319, - 5123.995516963808, - 5089.307896390209, - 5051.64643976374, - 5007.872689512266, - 4953.4298389957785, - 4884.95450193668, - 4801.649068483672, - 4706.971794868037, - 4607.539235239698, - 4511.686894964751, - 4427.245766523632, - 4359.4997087579195, - 4309.364293547825, - 4274.123787430162, - 4248.634453396597, - 4227.067990237639, - 4206.009181959233, - 4185.5021202662065, - 4169.214947018724, - 4163.363776003242, - 4173.963683359707, - 4204.791963895231, - 4255.20138705079, - 4319.4625191707455, - 4390.11927482406, - 4459.967167729387, - 4527.076447850109, - 4598.759179337641, - 4693.309400083463, - 4839.828665133457, - 5074.1252625810685, - 5431.362385479911, - 5943.817773023515, - 6626.138953069636, - 7477.963330109598 - ], - "flow:branch65_seg0:J36": [ - 1.6155960584881472, - 2.106783187767921, - 2.6685762807208784, - 3.2785182805879285, - 3.9092483362883295, - 4.533500058759304, - 5.127538888388375, - 5.67378247574268, - 6.160912166350953, - 6.584999315598605, - 6.9461347978190195, - 7.246756474601778, - 7.4904268386531205, - 7.679043994839596, - 7.813753211642455, - 7.894860947438204, - 7.922356248311554, - 7.898175669595883, - 7.825458967177705, - 7.709518325099021, - 7.557276745222615, - 7.37569877360355, - 7.171552127708288, - 6.95025886378733, - 6.715801724581032, - 6.471243559780075, - 6.219276973254939, - 5.9630920032793595, - 5.706736747270895, - 5.454956358936638, - 5.212229899625915, - 4.981685940117817, - 4.7635825224702195, - 4.554431832723772, - 4.347101633059023, - 4.131602195279339, - 3.8970758929523894, - 3.6340733023753953, - 3.33732504587192, - 3.006707810861624, - 2.6485573560232685, - 2.274583529686713, - 1.9000398145482147, - 1.54122934414045, - 1.2130604343735325, - 0.9266467769093588, - 0.6879810096198924, - 0.498782066188822, - 0.3562249099803034, - 0.25545301046571756, - 0.1910420018569772, - 0.1577518073158051, - 0.15182875281754835, - 0.17011965140107999, - 0.2095639422802249, - 0.26651333260194804, - 0.3357326522959212, - 0.41069427820126164, - 0.484088718923835, - 0.5489773505798909, - 0.5998346577904314, - 0.6338698529184126, - 0.6510391807049386, - 0.6537135645813014, - 0.6459617551878325, - 0.6318580185227894, - 0.6144878694366713, - 0.5951546179447996, - 0.573247047562022, - 0.5468989407644802, - 0.5140057407281463, - 0.4733692416097358, - 0.42555242437434904, - 0.3729513143503035, - 0.3194732984885511, - 0.2694539335346417, - 0.2265229853627724, - 0.19255879265177986, - 0.16748658101412256, - 0.1493531488043563, - 0.13534392472797704, - 0.1230068974575134, - 0.11121463296470353, - 0.10073571470244441, - 0.09404005577725665, - 0.09432422377398861, - 0.10434572664754743, - 0.12504375761581935, - 0.1550808276778159, - 0.19116886247393486, - 0.22928579129648713, - 0.2668571415098163, - 0.30492595822669677, - 0.34978062309679586, - 0.41362134546819995, - 0.513250454016512, - 0.6680395578829058, - 0.8961972968912624, - 1.2102097187336547, - 1.6155960584881472 - ], - "pressure:branch65_seg0:J36": [ - 7125.482108724204, - 8041.720142963373, - 9069.494007098745, - 10166.08755986, - 11281.95036531966, - 12369.757594703067, - 13390.606081197233, - 14318.734493662278, - 15137.611644680146, - 15843.818127760476, - 16441.174115493744, - 16933.34992842862, - 17327.096827319954, - 17625.18272718612, - 17827.97166245165, - 17936.96349802621, - 17951.537506470046, - 17876.12089482774, - 17718.544449770587, - 17488.175303751257, - 17198.445018160248, - 16861.690644499286, - 16488.918710497543, - 16089.13684142162, - 15668.376610604902, - 15231.572179731596, - 14783.597067078423, - 14330.49483813913, - 13879.951517455977, - 13440.644511924607, - 13019.97263485763, - 12621.997752641046, - 12245.267482330033, - 11880.91587533494, - 11514.221509367992, - 11126.251352210933, - 10698.247831785933, - 10214.766148871156, - 9669.967252477803, - 9067.67314866551, - 8422.396830441503, - 7758.29871840335, - 7103.735142781083, - 6487.301664953211, - 5933.039839768368, - 5458.520066306709, - 5070.369504980978, - 4768.638455118604, - 4546.864488792221, - 4394.682727335642, - 4303.0976439222095, - 4263.38673528961, - 4269.398149475396, - 4316.320138478701, - 4398.246909589657, - 4508.197877213633, - 4636.060300047311, - 4769.458714786308, - 4895.338115099127, - 5002.238728906034, - 5081.599178395713, - 5130.182215866575, - 5150.200912655883, - 5146.698582109783, - 5127.543828379352, - 5099.787169128856, - 5067.743515575594, - 5032.478569968402, - 4991.85759044498, - 4942.012087726475, - 4879.526726191072, - 4803.040077950796, - 4714.847653340285, - 4620.3412821069605, - 4527.012810383516, - 4442.433757530784, - 4372.274953573091, - 4318.515203283185, - 4279.666897021686, - 4251.492460707967, - 4228.692557455481, - 4207.536343673567, - 4187.173094605895, - 4170.156754937033, - 4161.732925126463, - 4167.6055608097495, - 4191.944782481301, - 4235.131195406203, - 4293.060527729787, - 4359.183550960002, - 4426.514213514423, - 4492.033328371112, - 4560.487992959553, - 4646.594637448847, - 4775.458299004706, - 4979.332225605743, - 5292.020218554244, - 5744.85010029929, - 6354.8727698363855, - 7125.482108724204 - ], - "flow:J36:branch66_seg0": [ - 0.5377655124111046, - 0.6997030934224263, - 0.8838357954811988, - 1.0826983880890193, - 1.2872889719909995, - 1.4888046630969725, - 1.6797166734222302, - 1.8545995368757449, - 2.0099882055398006, - 2.144865422427427, - 2.2594331167714636, - 2.3545034144313637, - 2.431276922173543, - 2.4903032466484962, - 2.531896460771387, - 2.5561581017075583, - 2.5630546244499035, - 2.5532916769343172, - 2.5279530787997, - 2.4888121369585754, - 2.438188219577408, - 2.378329910998428, - 2.311409934464289, - 2.239142853406886, - 2.162760060833055, - 2.083224577839057, - 2.0014007942104413, - 1.9183422180653158, - 1.8353924784479407, - 1.7541120399271992, - 1.6759317564002376, - 1.601802564886388, - 1.531699377490453, - 1.4643408623402365, - 1.3972884781457813, - 1.327212347795932, - 1.2505845152698634, - 1.1644075409585093, - 1.0671570342010226, - 0.958999240738367, - 0.8422145432822487, - 0.7208020002300066, - 0.5998085446967187, - 0.4845261400027421, - 0.3797019562889593, - 0.2887873641201002, - 0.2134957441777382, - 0.15423145396498217, - 0.10992541068079924, - 0.07891563048181842, - 0.05945624259108516, - 0.0498556723087728, - 0.048955158898197494, - 0.05576751584263745, - 0.06928782492987534, - 0.08831916679410129, - 0.111110637701094, - 0.13550159856825802, - 0.1591089674452587, - 0.17971585821101768, - 0.19559287982706905, - 0.20594144187033583, - 0.21086355959849948, - 0.21119927123588428, - 0.20832366051976653, - 0.20354990012331525, - 0.19782648886345724, - 0.19150683926046358, - 0.18432390026290377, - 0.17563150132104866, - 0.1647485131495672, - 0.1513255244697136, - 0.13561703911809275, - 0.11846404431953513, - 0.10117993401457206, - 0.08517596884931951, - 0.07159319210954655, - 0.06096505066857755, - 0.05319403106663075, - 0.04758606093002842, - 0.04320015853923183, - 0.0392673537995446, - 0.035479008880039395, - 0.03215445153739872, - 0.030152755316864573, - 0.030526022951207335, - 0.03414139368138387, - 0.04123082322960777, - 0.05126923431404242, - 0.06313184516631035, - 0.07550094568670827, - 0.08761072840915969, - 0.09994745422092813, - 0.11474680168070311, - 0.13617250167428321, - 0.16981673153166685, - 0.22200734219903387, - 0.29859117253744394, - 0.40333390839383026, - 0.5377655124111046 - ], - "pressure:J36:branch66_seg0": [ - 7125.482108724204, - 8041.720142963373, - 9069.494007098745, - 10166.08755986, - 11281.95036531966, - 12369.757594703067, - 13390.606081197233, - 14318.734493662278, - 15137.611644680146, - 15843.818127760476, - 16441.174115493744, - 16933.34992842862, - 17327.096827319954, - 17625.18272718612, - 17827.97166245165, - 17936.96349802621, - 17951.537506470046, - 17876.12089482774, - 17718.544449770587, - 17488.175303751257, - 17198.445018160248, - 16861.690644499286, - 16488.918710497543, - 16089.13684142162, - 15668.376610604902, - 15231.572179731596, - 14783.597067078423, - 14330.49483813913, - 13879.951517455977, - 13440.644511924607, - 13019.97263485763, - 12621.997752641046, - 12245.267482330033, - 11880.91587533494, - 11514.221509367992, - 11126.251352210933, - 10698.247831785933, - 10214.766148871156, - 9669.967252477803, - 9067.67314866551, - 8422.396830441503, - 7758.29871840335, - 7103.735142781083, - 6487.301664953211, - 5933.039839768368, - 5458.520066306709, - 5070.369504980978, - 4768.638455118604, - 4546.864488792221, - 4394.682727335642, - 4303.0976439222095, - 4263.38673528961, - 4269.398149475396, - 4316.320138478701, - 4398.246909589657, - 4508.197877213633, - 4636.060300047311, - 4769.458714786308, - 4895.338115099127, - 5002.238728906034, - 5081.599178395713, - 5130.182215866575, - 5150.200912655883, - 5146.698582109783, - 5127.543828379352, - 5099.787169128856, - 5067.743515575594, - 5032.478569968402, - 4991.85759044498, - 4942.012087726475, - 4879.526726191072, - 4803.040077950796, - 4714.847653340285, - 4620.3412821069605, - 4527.012810383516, - 4442.433757530784, - 4372.274953573091, - 4318.515203283185, - 4279.666897021686, - 4251.492460707967, - 4228.692557455481, - 4207.536343673567, - 4187.173094605895, - 4170.156754937033, - 4161.732925126463, - 4167.6055608097495, - 4191.944782481301, - 4235.131195406203, - 4293.060527729787, - 4359.183550960002, - 4426.514213514423, - 4492.033328371112, - 4560.487992959553, - 4646.594637448847, - 4775.458299004706, - 4979.332225605743, - 5292.020218554244, - 5744.85010029929, - 6354.8727698363855, - 7125.482108724204 - ], - "flow:J36:branch67_seg0": [ - 0.5495884307405191, - 0.7168592451495417, - 0.9082726097781536, - 1.1161595724251439, - 1.3311860218365492, - 1.5440414528582358, - 1.7466163462372362, - 1.932892678066033, - 2.099013012841245, - 2.2436300117739267, - 2.366769728666746, - 2.4692845933669347, - 2.5523915142484834, - 2.616753141297967, - 2.6627741331877917, - 2.690555509843694, - 2.7001016115243064, - 2.692060784099895, - 2.6674904263525523, - 2.628195774457078, - 2.576520010669668, - 2.514834274053293, - 2.445443495437549, - 2.3701942450399534, - 2.2904468198977326, - 2.207243292138668, - 2.121497658420046, - 2.03429135136984, - 1.9469979959310593, - 1.8612313267392062, - 1.7785217955422217, - 1.6999456910533144, - 1.6256053028987223, - 1.5543325436149535, - 1.4837105121104863, - 1.4103428001838516, - 1.3305243415684638, - 1.241022523757404, - 1.1400117146003694, - 1.0274204253122816, - 0.9053807953498858, - 0.7778591790765217, - 0.6500494123721142, - 0.5275172209321821, - 0.4153668184322176, - 0.3174125599432172, - 0.2357361144087239, - 0.17094353005096052, - 0.12208841502651337, - 0.0875258421542479, - 0.06539790869020824, - 0.05391598631973569, - 0.05179221789771359, - 0.05794602768519703, - 0.07133824045484871, - 0.09072528668583793, - 0.11432698122227859, - 0.13992002493507436, - 0.16500871567484482, - 0.18721788324693114, - 0.20465319306098279, - 0.2163492790042175, - 0.22227645184483477, - 0.22323994071776757, - 0.2206239656063955, - 0.21582267520625356, - 0.2098981720695066, - 0.20330389445864191, - 0.19583840710274536, - 0.18686760252519313, - 0.1756700873929653, - 0.1618304043033125, - 0.1455304833765711, - 0.12758115013068336, - 0.1093124728271995, - 0.09220614627945098, - 0.07750761247553631, - 0.06586901414180257, - 0.057273371723884636, - 0.05105910160313412, - 0.046267022833583346, - 0.04205392722441415, - 0.03802637576028202, - 0.03443835719809484, - 0.032127443628176384, - 0.03218589017732249, - 0.03556092830450398, - 0.04258343752688278, - 0.052808788654506125, - 0.06511839642506746, - 0.07813732574728764, - 0.09097410517683772, - 0.1039631629423247, - 0.11922593014913326, - 0.1409029528333415, - 0.17471591516729798, - 0.22727841626163378, - 0.3048109195558304, - 0.4116132145117981, - 0.5495884307405191 - ], - "pressure:J36:branch67_seg0": [ - 7125.482108724204, - 8041.720142963373, - 9069.494007098745, - 10166.08755986, - 11281.95036531966, - 12369.757594703067, - 13390.606081197233, - 14318.734493662278, - 15137.611644680146, - 15843.818127760476, - 16441.174115493744, - 16933.34992842862, - 17327.096827319954, - 17625.18272718612, - 17827.97166245165, - 17936.96349802621, - 17951.537506470046, - 17876.12089482774, - 17718.544449770587, - 17488.175303751257, - 17198.445018160248, - 16861.690644499286, - 16488.918710497543, - 16089.13684142162, - 15668.376610604902, - 15231.572179731596, - 14783.597067078423, - 14330.49483813913, - 13879.951517455977, - 13440.644511924607, - 13019.97263485763, - 12621.997752641046, - 12245.267482330033, - 11880.91587533494, - 11514.221509367992, - 11126.251352210933, - 10698.247831785933, - 10214.766148871156, - 9669.967252477803, - 9067.67314866551, - 8422.396830441503, - 7758.29871840335, - 7103.735142781083, - 6487.301664953211, - 5933.039839768368, - 5458.520066306709, - 5070.369504980978, - 4768.638455118604, - 4546.864488792221, - 4394.682727335642, - 4303.0976439222095, - 4263.38673528961, - 4269.398149475396, - 4316.320138478701, - 4398.246909589657, - 4508.197877213633, - 4636.060300047311, - 4769.458714786308, - 4895.338115099127, - 5002.238728906034, - 5081.599178395713, - 5130.182215866575, - 5150.200912655883, - 5146.698582109783, - 5127.543828379352, - 5099.787169128856, - 5067.743515575594, - 5032.478569968402, - 4991.85759044498, - 4942.012087726475, - 4879.526726191072, - 4803.040077950796, - 4714.847653340285, - 4620.3412821069605, - 4527.012810383516, - 4442.433757530784, - 4372.274953573091, - 4318.515203283185, - 4279.666897021686, - 4251.492460707967, - 4228.692557455481, - 4207.536343673567, - 4187.173094605895, - 4170.156754937033, - 4161.732925126463, - 4167.6055608097495, - 4191.944782481301, - 4235.131195406203, - 4293.060527729787, - 4359.183550960002, - 4426.514213514423, - 4492.033328371112, - 4560.487992959553, - 4646.594637448847, - 4775.458299004706, - 4979.332225605743, - 5292.020218554244, - 5744.85010029929, - 6354.8727698363855, - 7125.482108724204 - ], - "flow:J36:branch82_seg0": [ - 0.5282421153365235, - 0.6902208491959525, - 0.876467875461526, - 1.0796603200737653, - 1.2907733424607803, - 1.500653942804095, - 1.7012058687289089, - 1.8862902608009031, - 2.051910947969908, - 2.196503881397251, - 2.3199319523808093, - 2.42296846680348, - 2.506758402231096, - 2.5719876068931335, - 2.619082617683276, - 2.648147335886951, - 2.6592000123373447, - 2.6528232085616708, - 2.6300154620254528, - 2.5925104136833683, - 2.5425685149755397, - 2.4825345885518293, - 2.41469869780645, - 2.340921765340491, - 2.2625948438502443, - 2.1807756898023496, - 2.0963785206244507, - 2.010458433844205, - 1.9243462728918967, - 1.839612992270232, - 1.7577763476834556, - 1.6799376841781135, - 1.6062778420810422, - 1.5357584267685818, - 1.4661026428027548, - 1.3940470472995563, - 1.3159670361140616, - 1.2286432376594822, - 1.1301562970705274, - 1.0202881448109753, - 0.9009620173911341, - 0.7759223503801848, - 0.6501818574793821, - 0.5291859832055257, - 0.41799165965235535, - 0.3204468528460411, - 0.23874915103343022, - 0.1736070821728794, - 0.12421108427299081, - 0.08901153782965127, - 0.06618785057568384, - 0.05398014868729661, - 0.051081376021637294, - 0.05640610787324555, - 0.06893787689550089, - 0.0874688791220088, - 0.11029503337254871, - 0.13527265469792926, - 0.15997103580373148, - 0.18204360912194203, - 0.19958858490237963, - 0.21157913204385934, - 0.21789916926160444, - 0.2192743526276495, - 0.21701412906167042, - 0.2124854431932207, - 0.2067632085037076, - 0.20034388422569405, - 0.19308474019637276, - 0.1843998369182383, - 0.17358714018561378, - 0.1602133128367097, - 0.1444049018796852, - 0.12690611990008496, - 0.10898089164677947, - 0.09207181840587123, - 0.07742218077768956, - 0.0657247278413998, - 0.057019178223607137, - 0.05070798627119375, - 0.045876743355161835, - 0.04168561643355466, - 0.037709248324382105, - 0.03414290596695086, - 0.031759856832215716, - 0.031612310645458795, - 0.03464340466165955, - 0.04122949685932875, - 0.05100280470926736, - 0.06291862088255708, - 0.07564751986249119, - 0.08827230792381893, - 0.101015341063444, - 0.11580789126695945, - 0.13654589096057532, - 0.16871780731754712, - 0.21875379942223813, - 0.2927952047979882, - 0.395262595828026, - 0.5282421153365235 - ], - "pressure:J36:branch82_seg0": [ - 7125.482108724204, - 8041.720142963373, - 9069.494007098745, - 10166.08755986, - 11281.95036531966, - 12369.757594703067, - 13390.606081197233, - 14318.734493662278, - 15137.611644680146, - 15843.818127760476, - 16441.174115493744, - 16933.34992842862, - 17327.096827319954, - 17625.18272718612, - 17827.97166245165, - 17936.96349802621, - 17951.537506470046, - 17876.12089482774, - 17718.544449770587, - 17488.175303751257, - 17198.445018160248, - 16861.690644499286, - 16488.918710497543, - 16089.13684142162, - 15668.376610604902, - 15231.572179731596, - 14783.597067078423, - 14330.49483813913, - 13879.951517455977, - 13440.644511924607, - 13019.97263485763, - 12621.997752641046, - 12245.267482330033, - 11880.91587533494, - 11514.221509367992, - 11126.251352210933, - 10698.247831785933, - 10214.766148871156, - 9669.967252477803, - 9067.67314866551, - 8422.396830441503, - 7758.29871840335, - 7103.735142781083, - 6487.301664953211, - 5933.039839768368, - 5458.520066306709, - 5070.369504980978, - 4768.638455118604, - 4546.864488792221, - 4394.682727335642, - 4303.0976439222095, - 4263.38673528961, - 4269.398149475396, - 4316.320138478701, - 4398.246909589657, - 4508.197877213633, - 4636.060300047311, - 4769.458714786308, - 4895.338115099127, - 5002.238728906034, - 5081.599178395713, - 5130.182215866575, - 5150.200912655883, - 5146.698582109783, - 5127.543828379352, - 5099.787169128856, - 5067.743515575594, - 5032.478569968402, - 4991.85759044498, - 4942.012087726475, - 4879.526726191072, - 4803.040077950796, - 4714.847653340285, - 4620.3412821069605, - 4527.012810383516, - 4442.433757530784, - 4372.274953573091, - 4318.515203283185, - 4279.666897021686, - 4251.492460707967, - 4228.692557455481, - 4207.536343673567, - 4187.173094605895, - 4170.156754937033, - 4161.732925126463, - 4167.6055608097495, - 4191.944782481301, - 4235.131195406203, - 4293.060527729787, - 4359.183550960002, - 4426.514213514423, - 4492.033328371112, - 4560.487992959553, - 4646.594637448847, - 4775.458299004706, - 4979.332225605743, - 5292.020218554244, - 5744.85010029929, - 6354.8727698363855, - 7125.482108724204 - ], - "flow:branch70_seg0:J37": [ - 1.8186523680433213, - 2.315533128601853, - 2.841869204376648, - 3.3704191572327087, - 3.873700589920196, - 4.330245084483982, - 4.72658156653204, - 5.0583331097879185, - 5.3260606121934515, - 5.53659569660962, - 5.697911809996416, - 5.815000605305239, - 5.892791652624604, - 5.931694065923405, - 5.930748572190995, - 5.890156048951498, - 5.8092535816868835, - 5.692283293689016, - 5.544821970856737, - 5.373471912899714, - 5.186822797113993, - 4.990798748265059, - 4.7900730059734276, - 4.58726297817656, - 4.383128805435501, - 4.178511865032751, - 3.974888716253904, - 3.7751944281207286, - 3.5836070594342866, - 3.404537981701698, - 3.2407111073021984, - 3.091863858921076, - 2.9536416953790887, - 2.81715558074242, - 2.6710851879970594, - 2.503390048781576, - 2.304638221397706, - 2.069857946558578, - 1.801844345222202, - 1.5094188808194808, - 1.207198553076896, - 0.9131749331791958, - 0.6444711116784857, - 0.4148764273965056, - 0.23261380587372096, - 0.10049420269552439, - 0.013813304049883941, - -0.03356232206764463, - -0.05045238823927468, - -0.045039318382028785, - -0.022184626373750422, - 0.014233085380617544, - 0.06291820219345387, - 0.12287337583359184, - 0.1916221528761594, - 0.26560589702866183, - 0.3389865505838322, - 0.40501237589502287, - 0.4574289940095658, - 0.49197742519981325, - 0.5070567516702482, - 0.5046676041857385, - 0.489576311785659, - 0.46713162733553576, - 0.44302931704237664, - 0.42066366102291286, - 0.4007806433716533, - 0.3817561161345033, - 0.36036036433515756, - 0.3333139304517703, - 0.2988073949128456, - 0.2572033381388182, - 0.21163499798070803, - 0.16663385424843966, - 0.12720178811861563, - 0.0971258061577795, - 0.07797786210459891, - 0.06841908475131511, - 0.065260594056328, - 0.06441687062240521, - 0.062365152540094074, - 0.05783212482789092, - 0.05201068764749174, - 0.048240088838734194, - 0.050811363842699124, - 0.06310276938696509, - 0.0863222346656655, - 0.11854695183919874, - 0.15517896928855107, - 0.19107799340203582, - 0.2223708365512564, - 0.24950016119261142, - 0.27893708490362357, - 0.3234013396961635, - 0.4009073970903455, - 0.5310056947569521, - 0.7308990919294698, - 1.013423291935406, - 1.3784028581269474, - 1.8186523680433213 - ], - "pressure:branch70_seg0:J37": [ - 9676.988592201795, - 11120.703908986827, - 12606.080134558593, - 14056.978437345275, - 15405.81334703656, - 16600.04292758797, - 17611.73937518501, - 18442.742806850216, - 19103.498604192126, - 19610.59126879061, - 19995.722056143295, - 20263.889514813985, - 20424.947270092816, - 20481.2547907039, - 20422.375929931055, - 20255.906751893646, - 19979.01408358299, - 19605.114473556696, - 19159.93826243876, - 18656.553641948427, - 18120.54537199585, - 17568.08002908713, - 17006.159099315097, - 16441.46747346587, - 15874.098905813276, - 15306.207351733567, - 14744.245336681724, - 14197.972073580526, - 13680.169520160243, - 13202.515700284946, - 12770.083848121089, - 12375.727715975421, - 12002.983404763416, - 11621.260992432013, - 11196.12514970411, - 10695.166492264889, - 10098.535916481074, - 9398.171639893453, - 8612.104303557699, - 7776.253366613042, - 6933.83684238445, - 6139.136697328664, - 5437.67766638478, - 4861.606029721702, - 4421.573481013716, - 4123.054995756751, - 3943.2706342283273, - 3858.665385421445, - 3850.364280101537, - 3892.111188437034, - 3976.0396858134745, - 4095.917111177166, - 4246.104329917167, - 4426.962617850046, - 4628.362010546836, - 4837.189033188677, - 5036.486436567545, - 5205.932139497218, - 5329.5476157823205, - 5399.398408531632, - 5415.63347224513, - 5386.39898461215, - 5330.560943085487, - 5261.954565084528, - 5194.642869915537, - 5136.18225491233, - 5084.107559424542, - 5030.821526818017, - 4966.322944395127, - 4882.022230388081, - 4776.132081968342, - 4652.27829183669, - 4522.55082543819, - 4401.6638370302935, - 4302.462534505189, - 4233.095587512337, - 4194.697350160824, - 4180.252225906561, - 4177.536060952186, - 4176.25033734087, - 4167.849326751956, - 4151.8858702553935, - 4135.493853102323, - 4130.192063757796, - 4148.215580105796, - 4196.853915718514, - 4275.438287960692, - 4375.4198783582, - 4479.936930076172, - 4575.548618735227, - 4655.338267642309, - 4727.115000303946, - 4817.65095688509, - 4970.391643673526, - 5240.909790380821, - 5685.896347705151, - 6341.26108003972, - 7240.109504113204, - 8366.667331424836, - 9676.988592201795 - ], - "flow:J37:branch71_seg0": [ - 0.8631889735736948, - 1.1038940626283194, - 1.3614493371629153, - 1.6222908268648044, - 1.8728640049027883, - 2.102171305818654, - 2.3029390337442464, - 2.472083156440914, - 2.6096807457767723, - 2.7185399662655847, - 2.8023050461674295, - 2.8638859159818804, - 2.9056065688381802, - 2.928029512053635, - 2.930888267764583, - 2.9140721378467536, - 2.877417232136494, - 2.8226573494006657, - 2.7523133205148214, - 2.6696727661617623, - 2.5787748724023074, - 2.482712174336726, - 2.3839642176443103, - 2.283935408831502, - 2.183176740324946, - 2.0821121960141165, - 1.981413065644708, - 1.8824242951648604, - 1.7871083630136015, - 1.6976082126827767, - 1.615406451584086, - 1.5406167203127563, - 1.4713853855544463, - 1.4037299544675965, - 1.3322542918245934, - 1.2510772075923602, - 1.1553183684107746, - 1.0422376840301844, - 0.9125274035199425, - 0.7700531237480656, - 0.6216050970442502, - 0.47572265217096693, - 0.34092966736137315, - 0.22431759087162015, - 0.1303933870709133, - 0.06096477035204642, - 0.01433269106263556, - -0.0123451658213057, - -0.023310574897996098, - -0.02252015706118326, - -0.012705709901635786, - 0.004135425681536972, - 0.02718620302634465, - 0.05586307910270841, - 0.0891119896174503, - 0.12522560312079883, - 0.16149864130486857, - 0.19469435876870442, - 0.22169152016968793, - 0.24019499723661736, - 0.24924714009410637, - 0.24954058667851883, - 0.243141619943026, - 0.23269526171203753, - 0.22096967856657254, - 0.2097904863057888, - 0.1997676678747942, - 0.19028743703627332, - 0.1798860940198334, - 0.16696103626087178, - 0.1505049163190157, - 0.13052659954738396, - 0.10834922988102304, - 0.08608507007954523, - 0.0661719727190046, - 0.05056375825104286, - 0.04020740601694865, - 0.034685265536401465, - 0.03257869687436017, - 0.03193344342207498, - 0.030994051618321326, - 0.02894956808043993, - 0.026182151855219767, - 0.024171334462808475, - 0.02494443238029292, - 0.030248410430627565, - 0.04083247267270781, - 0.055997325237112525, - 0.07372009462137467, - 0.09149224973363132, - 0.10730809358333396, - 0.12106308997478539, - 0.13546613734733784, - 0.15628743357128191, - 0.19199440750511831, - 0.2520890259212231, - 0.34526787379584395, - 0.4781918828955824, - 0.6517915127602447, - 0.8631889735736948 - ], - "pressure:J37:branch71_seg0": [ - 9676.988592201795, - 11120.703908986827, - 12606.080134558593, - 14056.978437345275, - 15405.81334703656, - 16600.04292758797, - 17611.73937518501, - 18442.742806850216, - 19103.498604192126, - 19610.59126879061, - 19995.722056143295, - 20263.889514813985, - 20424.947270092816, - 20481.2547907039, - 20422.375929931055, - 20255.906751893646, - 19979.01408358299, - 19605.114473556696, - 19159.93826243876, - 18656.553641948427, - 18120.54537199585, - 17568.08002908713, - 17006.159099315097, - 16441.46747346587, - 15874.098905813276, - 15306.207351733567, - 14744.245336681724, - 14197.972073580526, - 13680.169520160243, - 13202.515700284946, - 12770.083848121089, - 12375.727715975421, - 12002.983404763416, - 11621.260992432013, - 11196.12514970411, - 10695.166492264889, - 10098.535916481074, - 9398.171639893453, - 8612.104303557699, - 7776.253366613042, - 6933.83684238445, - 6139.136697328664, - 5437.67766638478, - 4861.606029721702, - 4421.573481013716, - 4123.054995756751, - 3943.2706342283273, - 3858.665385421445, - 3850.364280101537, - 3892.111188437034, - 3976.0396858134745, - 4095.917111177166, - 4246.104329917167, - 4426.962617850046, - 4628.362010546836, - 4837.189033188677, - 5036.486436567545, - 5205.932139497218, - 5329.5476157823205, - 5399.398408531632, - 5415.63347224513, - 5386.39898461215, - 5330.560943085487, - 5261.954565084528, - 5194.642869915537, - 5136.18225491233, - 5084.107559424542, - 5030.821526818017, - 4966.322944395127, - 4882.022230388081, - 4776.132081968342, - 4652.27829183669, - 4522.55082543819, - 4401.6638370302935, - 4302.462534505189, - 4233.095587512337, - 4194.697350160824, - 4180.252225906561, - 4177.536060952186, - 4176.25033734087, - 4167.849326751956, - 4151.8858702553935, - 4135.493853102323, - 4130.192063757796, - 4148.215580105796, - 4196.853915718514, - 4275.438287960692, - 4375.4198783582, - 4479.936930076172, - 4575.548618735227, - 4655.338267642309, - 4727.115000303946, - 4817.65095688509, - 4970.391643673526, - 5240.909790380821, - 5685.896347705151, - 6341.26108003972, - 7240.109504113204, - 8366.667331424836, - 9676.988592201795 - ], - "flow:J37:branch75_seg0": [ - 0.9554633944696267, - 1.2116390659735334, - 1.4804198672137325, - 1.7481283303679036, - 2.000836585017408, - 2.2280737786653284, - 2.4236425327877926, - 2.5862499533470036, - 2.71637986641668, - 2.8180557303440352, - 2.8956067638289875, - 2.9511146893233593, - 2.9871850837864233, - 3.00366455386977, - 2.999860304426413, - 2.9760839111047446, - 2.931836349550391, - 2.8696259442883516, - 2.792508650341916, - 2.703799146737953, - 2.6080479247116855, - 2.508086573928332, - 2.406108788329117, - 2.303327569345058, - 2.1999520651105535, - 2.0963996690186333, - 1.993475650609196, - 1.8927701329558684, - 1.7964986964206862, - 1.7069297690189214, - 1.6253046557181114, - 1.5512471386083198, - 1.4822563098246424, - 1.413425626274823, - 1.3388308961724658, - 1.2523128411892153, - 1.1493198529869313, - 1.027620262528393, - 0.8893169417022594, - 0.7393657570714152, - 0.5855934560326459, - 0.43745228100822897, - 0.3035414443171126, - 0.19055883652488534, - 0.1022204188028077, - 0.039529432343477965, - -0.0005193870127516175, - -0.021217156246338933, - -0.02714181334127857, - -0.022519161320845537, - -0.009478916472114638, - 0.01009765969908057, - 0.03573199916710922, - 0.06701029673088342, - 0.1025101632587092, - 0.14038029390786286, - 0.17748790927896363, - 0.21031801712631842, - 0.2357374738398779, - 0.2517824279631959, - 0.25780961157614174, - 0.2551270175072197, - 0.246434691842633, - 0.23443636562349826, - 0.22205963847580412, - 0.2108731747171241, - 0.20101297549685906, - 0.19146867909822995, - 0.18047427031532412, - 0.16635289419089855, - 0.14830247859382983, - 0.12667673859143422, - 0.10328576809968504, - 0.08054878416889444, - 0.06102981539961103, - 0.04656204790673664, - 0.03777045608765027, - 0.03373381921491365, - 0.03268189718196782, - 0.03248342720033022, - 0.03137110092177274, - 0.028882556747450994, - 0.025828535792271977, - 0.024068754375925726, - 0.025866931462406203, - 0.03285435895633751, - 0.04548976199295771, - 0.06254962660208621, - 0.08145887466717643, - 0.0995857436684045, - 0.11506274296792246, - 0.12843707121782605, - 0.14347094755628573, - 0.16711390612488158, - 0.20891298958522725, - 0.2789166688357289, - 0.3856312181336257, - 0.5352314090398237, - 0.7266113453667027, - 0.9554633944696267 - ], - "pressure:J37:branch75_seg0": [ - 9676.988592201795, - 11120.703908986827, - 12606.080134558593, - 14056.978437345275, - 15405.81334703656, - 16600.04292758797, - 17611.73937518501, - 18442.742806850216, - 19103.498604192126, - 19610.59126879061, - 19995.722056143295, - 20263.889514813985, - 20424.947270092816, - 20481.2547907039, - 20422.375929931055, - 20255.906751893646, - 19979.01408358299, - 19605.114473556696, - 19159.93826243876, - 18656.553641948427, - 18120.54537199585, - 17568.08002908713, - 17006.159099315097, - 16441.46747346587, - 15874.098905813276, - 15306.207351733567, - 14744.245336681724, - 14197.972073580526, - 13680.169520160243, - 13202.515700284946, - 12770.083848121089, - 12375.727715975421, - 12002.983404763416, - 11621.260992432013, - 11196.12514970411, - 10695.166492264889, - 10098.535916481074, - 9398.171639893453, - 8612.104303557699, - 7776.253366613042, - 6933.83684238445, - 6139.136697328664, - 5437.67766638478, - 4861.606029721702, - 4421.573481013716, - 4123.054995756751, - 3943.2706342283273, - 3858.665385421445, - 3850.364280101537, - 3892.111188437034, - 3976.0396858134745, - 4095.917111177166, - 4246.104329917167, - 4426.962617850046, - 4628.362010546836, - 4837.189033188677, - 5036.486436567545, - 5205.932139497218, - 5329.5476157823205, - 5399.398408531632, - 5415.63347224513, - 5386.39898461215, - 5330.560943085487, - 5261.954565084528, - 5194.642869915537, - 5136.18225491233, - 5084.107559424542, - 5030.821526818017, - 4966.322944395127, - 4882.022230388081, - 4776.132081968342, - 4652.27829183669, - 4522.55082543819, - 4401.6638370302935, - 4302.462534505189, - 4233.095587512337, - 4194.697350160824, - 4180.252225906561, - 4177.536060952186, - 4176.25033734087, - 4167.849326751956, - 4151.8858702553935, - 4135.493853102323, - 4130.192063757796, - 4148.215580105796, - 4196.853915718514, - 4275.438287960692, - 4375.4198783582, - 4479.936930076172, - 4575.548618735227, - 4655.338267642309, - 4727.115000303946, - 4817.65095688509, - 4970.391643673526, - 5240.909790380821, - 5685.896347705151, - 6341.26108003972, - 7240.109504113204, - 8366.667331424836, - 9676.988592201795 - ], - "flow:branch72_seg0:J38": [ - 2.715009961186218, - 3.477311173540112, - 4.296646992248354, - 5.130771575242964, - 5.936308492244737, - 6.67736659559065, - 7.32934746555766, - 7.881242279087834, - 8.331188681315782, - 8.687412455820105, - 8.961157290082854, - 9.161099584661805, - 9.29565314089873, - 9.367006136752973, - 9.375048795421087, - 9.320272672105506, - 9.201951358789827, - 9.025800987608482, - 8.79976938935775, - 8.53379396553438, - 8.240702815137622, - 7.930463339909763, - 7.61106465789351, - 7.287497405265367, - 6.961825909533835, - 6.635649987144189, - 6.311212903053393, - 5.992654556816505, - 5.686013693595473, - 5.397936817502059, - 5.133104902438102, - 4.892029558915035, - 4.669276628634272, - 4.45258266352941, - 4.225247413855371, - 3.968730987944185, - 3.667454990065011, - 3.3118358509105525, - 2.9035131684157824, - 2.453552124273777, - 1.9825986737793022, - 1.517296349644723, - 1.0846113780242288, - 0.7074825375188808, - 0.4010778352287825, - 0.1723497374989197, - 0.017090020310191897, - -0.0731094920900398, - -0.11090157484534141, - -0.10917609809815086, - -0.07680981239617589, - -0.02069528367708807, - 0.05581144666917214, - 0.15052892517565028, - 0.25974665682548376, - 0.3781000596145475, - 0.4970954442386821, - 0.6065942405500513, - 0.6966913885059408, - 0.7600755910384468, - 0.7932064994946659, - 0.7979580655777883, - 0.7805692151777583, - 0.7489802997633933, - 0.7120523464047539, - 0.6758094645426305, - 0.6425521082425432, - 0.6108479392771403, - 0.5764808710193474, - 0.5346036027770429, - 0.48204065190396295, - 0.4185956709793727, - 0.3481135328160384, - 0.2769998089154017, - 0.21275776180008696, - 0.1616245506663166, - 0.12682658603963892, - 0.10742647722238716, - 0.09927668695751678, - 0.09648473606683619, - 0.09350658682666722, - 0.08760775652984285, - 0.07967703712170059, - 0.07399908523758676, - 0.07674448859096686, - 0.09330026515338474, - 0.126274001486414, - 0.17374211861387434, - 0.22964650483184873, - 0.2864083947917626, - 0.3376954287656508, - 0.38288941857218883, - 0.43001812756957347, - 0.496666152643506, - 0.6090098324639629, - 0.7968717143688159, - 1.087832535315226, - 1.503653930855614, - 2.048849115170172, - 2.715009961186218 - ], - "pressure:branch72_seg0:J38": [ - 9495.000005252161, - 10926.720464747646, - 12415.323297952984, - 13884.95650190561, - 15264.969707571265, - 16498.6219746295, - 17552.886364586888, - 18425.575608992232, - 19121.406136416485, - 19656.803272982856, - 20062.68204220947, - 20345.33984519364, - 20517.158193257226, - 20581.684511071355, - 20530.59925190325, - 20371.40008250814, - 20101.264426380298, - 19732.01036314436, - 19288.0380396008, - 18782.81708823971, - 18241.287349678874, - 17680.63556214055, - 17109.306470976982, - 16535.021795513447, - 15958.81829400183, - 15382.941564364855, - 14813.274619230117, - 14258.879413263794, - 13731.895423074806, - 13244.100468818357, - 12801.251597537695, - 12398.139065168974, - 12020.173255337102, - 11638.535172337246, - 11219.86191129941, - 10731.287429553473, - 10151.015287336013, - 9467.76695988971, - 8695.883031900235, - 7867.390697955668, - 7023.429513844437, - 6217.3795477262765, - 5495.805011121336, - 4893.647260322396, - 4425.931623629971, - 4100.457265945359, - 3898.7930492394285, - 3798.8549299303936, - 3781.4509317850334, - 3819.9913596645943, - 3904.4328973107326, - 4026.7303355158283, - 4180.627843117022, - 4365.383404226652, - 4571.254206585502, - 4786.2170971405085, - 4993.71894679725, - 5173.830029310106, - 5310.012274020184, - 5393.33202293847, - 5421.888919533237, - 5402.500892086365, - 5352.837248744159, - 5286.428231805265, - 5217.933113545273, - 5156.258513361585, - 5100.633118329905, - 5044.901112894246, - 4979.821596096037, - 4896.753915779292, - 4792.914818981474, - 4670.852463195781, - 4541.212129078921, - 4417.949056619905, - 4314.025187640063, - 4238.442874260456, - 4193.66552605805, - 4174.0357277438425, - 4168.596247619543, - 4167.023766538226, - 4160.210995798275, - 4146.51302143548, - 4131.6109097112785, - 4125.9370395809465, - 4141.459436760988, - 4185.974253560437, - 4260.346826742586, - 4357.476199933393, - 4461.725186069945, - 4559.8247131642875, - 4643.751025399886, - 4718.888412576481, - 4808.853448999965, - 4954.175566714298, - 5208.292290000039, - 5627.653259613852, - 6251.5214089491, - 7114.664124041301, - 8208.312323050797, - 9495.000005252161 - ], - "flow:J38:branch73_seg0": [ - 1.5580057525925526, - 2.0044048498808236, - 2.4890225700703215, - 2.986783365127542, - 3.4718164537113245, - 3.922004312076494, - 4.321503874767007, - 4.662168337899159, - 4.942053371108228, - 5.165191273901888, - 5.337647239891572, - 5.465076059881705, - 5.552519727409799, - 5.601760243812261, - 5.613177248528926, - 5.586858684222408, - 5.522516124502855, - 5.423071395932524, - 5.292877874270757, - 5.137795088288696, - 4.965170480592952, - 4.781213578771871, - 4.590965426493071, - 4.397671493885377, - 4.20288005922807, - 4.007612693391642, - 3.8131478004384487, - 3.6217857604865222, - 3.436953741925267, - 3.2625559001870257, - 3.101593654906536, - 2.9548025251527323, - 2.819486780986742, - 2.689041869337771, - 2.553911992770378, - 2.403190526583654, - 2.227255877528253, - 2.019799988191664, - 1.7806948861170726, - 1.5155261859651272, - 1.2357812509929447, - 0.9567016229169367, - 0.6943870245268627, - 0.46297853368753383, - 0.2723172762734475, - 0.12737212316923083, - 0.026819263400589755, - -0.03394615232149755, - -0.06210315973675079, - -0.06523133367796152, - -0.04909861473036119, - -0.01800947330967646, - 0.025677814954885848, - 0.08047699253396773, - 0.14437855690154955, - 0.21429685996852568, - 0.2854381060276175, - 0.35193886047208545, - 0.4078387309117627, - 0.44849111476193115, - 0.4713999123894589, - 0.4771974255034625, - 0.4690799042791686, - 0.4516675876668104, - 0.4301822153295489, - 0.4084527672809998, - 0.3882613025184092, - 0.3691241262870325, - 0.34879781018847195, - 0.3244610249827198, - 0.2940563098744486, - 0.257172923233735, - 0.2156981369760557, - 0.17320450542895496, - 0.13407161164233053, - 0.10214630878945118, - 0.07964773678158439, - 0.06645239751915485, - 0.06040111133026953, - 0.05813066395350244, - 0.056328302870052235, - 0.05306863296055194, - 0.048516103516360876, - 0.04489547007033623, - 0.045703763523446024, - 0.054233309456258316, - 0.07232502409753407, - 0.09924900962988745, - 0.131839317512099, - 0.16570186197424777, - 0.1969210149990148, - 0.22458491367178926, - 0.2526246853156664, - 0.290600538405674, - 0.3533025080688238, - 0.45819397589572836, - 0.6220003405702029, - 0.8582497947772677, - 1.1715284748168457, - 1.5580057525925526 - ], - "pressure:J38:branch73_seg0": [ - 9495.000005252161, - 10926.720464747646, - 12415.323297952984, - 13884.95650190561, - 15264.969707571265, - 16498.6219746295, - 17552.886364586888, - 18425.575608992232, - 19121.406136416485, - 19656.803272982856, - 20062.68204220947, - 20345.33984519364, - 20517.158193257226, - 20581.684511071355, - 20530.59925190325, - 20371.40008250814, - 20101.264426380298, - 19732.01036314436, - 19288.0380396008, - 18782.81708823971, - 18241.287349678874, - 17680.63556214055, - 17109.306470976982, - 16535.021795513447, - 15958.81829400183, - 15382.941564364855, - 14813.274619230117, - 14258.879413263794, - 13731.895423074806, - 13244.100468818357, - 12801.251597537695, - 12398.139065168974, - 12020.173255337102, - 11638.535172337246, - 11219.86191129941, - 10731.287429553473, - 10151.015287336013, - 9467.76695988971, - 8695.883031900235, - 7867.390697955668, - 7023.429513844437, - 6217.3795477262765, - 5495.805011121336, - 4893.647260322396, - 4425.931623629971, - 4100.457265945359, - 3898.7930492394285, - 3798.8549299303936, - 3781.4509317850334, - 3819.9913596645943, - 3904.4328973107326, - 4026.7303355158283, - 4180.627843117022, - 4365.383404226652, - 4571.254206585502, - 4786.2170971405085, - 4993.71894679725, - 5173.830029310106, - 5310.012274020184, - 5393.33202293847, - 5421.888919533237, - 5402.500892086365, - 5352.837248744159, - 5286.428231805265, - 5217.933113545273, - 5156.258513361585, - 5100.633118329905, - 5044.901112894246, - 4979.821596096037, - 4896.753915779292, - 4792.914818981474, - 4670.852463195781, - 4541.212129078921, - 4417.949056619905, - 4314.025187640063, - 4238.442874260456, - 4193.66552605805, - 4174.0357277438425, - 4168.596247619543, - 4167.023766538226, - 4160.210995798275, - 4146.51302143548, - 4131.6109097112785, - 4125.9370395809465, - 4141.459436760988, - 4185.974253560437, - 4260.346826742586, - 4357.476199933393, - 4461.725186069945, - 4559.8247131642875, - 4643.751025399886, - 4718.888412576481, - 4808.853448999965, - 4954.175566714298, - 5208.292290000039, - 5627.653259613852, - 6251.5214089491, - 7114.664124041301, - 8208.312323050797, - 9495.000005252161 - ], - "flow:J38:branch78_seg0": [ - 1.1570042085936656, - 1.4729063236592888, - 1.807624422178032, - 2.1439882101154217, - 2.4644920385334115, - 2.755362283514158, - 3.0078435907906527, - 3.2190739411886757, - 3.3891353102075517, - 3.522221181918217, - 3.6235100501912836, - 3.696023524780098, - 3.743133413488929, - 3.765245892940712, - 3.761871546892163, - 3.7334139878830994, - 3.6794352342869705, - 3.602729591675958, - 3.506891515086994, - 3.395998877245684, - 3.2755323345446685, - 3.1492497611378907, - 3.02009923140044, - 2.889825911379992, - 2.7589458503057647, - 2.6280372937525494, - 2.4980651026149436, - 2.370868796329983, - 2.249059951670206, - 2.1353809173150338, - 2.0315112475315673, - 1.9372270337623034, - 1.8497898476475307, - 1.7635407941916392, - 1.671335421084992, - 1.5655404613605313, - 1.4401991125367577, - 1.2920358627188886, - 1.1228182822987107, - 0.9380259383086492, - 0.7468174227863571, - 0.5605947267277859, - 0.390224353497366, - 0.24450400383134704, - 0.12876055895533497, - 0.04497761432968886, - -0.009729243090397861, - -0.03916333976854223, - -0.04879841510859062, - -0.04394476442018934, - -0.027711197665814688, - -0.00268581036741161, - 0.030133631714286305, - 0.07005193264168258, - 0.1153680999239342, - 0.1638031996460218, - 0.2116573382110647, - 0.25465538007796584, - 0.28885265759417816, - 0.3115844762765156, - 0.3218065871052071, - 0.3207606400743259, - 0.3114893108985898, - 0.29731271209658294, - 0.28187013107520503, - 0.2673566972616307, - 0.2542908057241341, - 0.24172381299010784, - 0.22768306083087544, - 0.21014257779432297, - 0.18798434202951433, - 0.16142274774563778, - 0.13241539583998274, - 0.10379530348644674, - 0.07868615015775642, - 0.05947824187686542, - 0.04717884925805453, - 0.040974079703232316, - 0.03887557562724724, - 0.03835407211333375, - 0.037178283956614995, - 0.03453912356929089, - 0.03116093360533971, - 0.02910361516725053, - 0.03104072506752083, - 0.03906695569712643, - 0.05394897738887994, - 0.07449310898398688, - 0.09780718731974972, - 0.12070653281751476, - 0.14077441376663594, - 0.15830450490039952, - 0.17739344225390707, - 0.2060656142378319, - 0.25570732439513905, - 0.3386777384730875, - 0.46583219474502274, - 0.6454041360783461, - 0.8773206403533267, - 1.1570042085936656 - ], - "pressure:J38:branch78_seg0": [ - 9495.000005252161, - 10926.720464747646, - 12415.323297952984, - 13884.95650190561, - 15264.969707571265, - 16498.6219746295, - 17552.886364586888, - 18425.575608992232, - 19121.406136416485, - 19656.803272982856, - 20062.68204220947, - 20345.33984519364, - 20517.158193257226, - 20581.684511071355, - 20530.59925190325, - 20371.40008250814, - 20101.264426380298, - 19732.01036314436, - 19288.0380396008, - 18782.81708823971, - 18241.287349678874, - 17680.63556214055, - 17109.306470976982, - 16535.021795513447, - 15958.81829400183, - 15382.941564364855, - 14813.274619230117, - 14258.879413263794, - 13731.895423074806, - 13244.100468818357, - 12801.251597537695, - 12398.139065168974, - 12020.173255337102, - 11638.535172337246, - 11219.86191129941, - 10731.287429553473, - 10151.015287336013, - 9467.76695988971, - 8695.883031900235, - 7867.390697955668, - 7023.429513844437, - 6217.3795477262765, - 5495.805011121336, - 4893.647260322396, - 4425.931623629971, - 4100.457265945359, - 3898.7930492394285, - 3798.8549299303936, - 3781.4509317850334, - 3819.9913596645943, - 3904.4328973107326, - 4026.7303355158283, - 4180.627843117022, - 4365.383404226652, - 4571.254206585502, - 4786.2170971405085, - 4993.71894679725, - 5173.830029310106, - 5310.012274020184, - 5393.33202293847, - 5421.888919533237, - 5402.500892086365, - 5352.837248744159, - 5286.428231805265, - 5217.933113545273, - 5156.258513361585, - 5100.633118329905, - 5044.901112894246, - 4979.821596096037, - 4896.753915779292, - 4792.914818981474, - 4670.852463195781, - 4541.212129078921, - 4417.949056619905, - 4314.025187640063, - 4238.442874260456, - 4193.66552605805, - 4174.0357277438425, - 4168.596247619543, - 4167.023766538226, - 4160.210995798275, - 4146.51302143548, - 4131.6109097112785, - 4125.9370395809465, - 4141.459436760988, - 4185.974253560437, - 4260.346826742586, - 4357.476199933393, - 4461.725186069945, - 4559.8247131642875, - 4643.751025399886, - 4718.888412576481, - 4808.853448999965, - 4954.175566714298, - 5208.292290000039, - 5627.653259613852, - 6251.5214089491, - 7114.664124041301, - 8208.312323050797, - 9495.000005252161 - ], - "flow:branch73_seg0:J39": [ - 1.5547081033350376, - 2.0008849078509536, - 2.485419884713848, - 2.983343900132279, - 3.4686811848857375, - 3.919255278570164, - 4.319181484267944, - 4.660332691688047, - 4.940578567522856, - 5.164065640252687, - 5.3368400327357755, - 5.464516635942851, - 5.552241756040433, - 5.601738660547596, - 5.613420192340011, - 5.587375748683044, - 5.523274136325909, - 5.424057361265357, - 5.294026084190103, - 5.139048414488543, - 4.966501886144524, - 4.7825747415517466, - 4.5923390083878, - 4.399053535319586, - 4.204261501905944, - 4.008990034053855, - 3.814500915196598, - 3.623086656970493, - 3.4381709056070293, - 3.263673465220408, - 3.102598425366523, - 2.9557269297900364, - 2.820389215120826, - 2.6899866049632104, - 2.5549855682090845, - 2.4044672990613427, - 2.2287728480474955, - 2.021543360583182, - 1.7826332994100103, - 1.5175504203478705, - 1.2377733709651029, - 0.9585558418379803, - 0.6959928651571973, - 0.4642558732956167, - 0.2732728734948709, - 0.1280081950206987, - 0.027157041375208846, - -0.03381450867753417, - -0.06213544094375607, - -0.06539264029862603, - -0.04934262009701713, - -0.018352233923316752, - 0.025264919327140943, - 0.08000986853723527, - 0.14386099651370846, - 0.21378298452900113, - 0.284968029620731, - 0.35155377167415597, - 0.4075711627536639, - 0.44836563911668437, - 0.47139066609282737, - 0.4772832039062632, - 0.46922854302987427, - 0.45183047680964666, - 0.4303389933637826, - 0.40859393226881324, - 0.3883906938887816, - 0.3692642221377259, - 0.348972217477235, - 0.3246865486283777, - 0.29432922300900427, - 0.2574777938317385, - 0.21600953326893393, - 0.17348256660861008, - 0.13428749571916723, - 0.1022878926056433, - 0.0797232882124923, - 0.06647228045342418, - 0.06040348921927726, - 0.05814118181128361, - 0.056353214659951814, - 0.05310592564846016, - 0.04854599983439337, - 0.044887780821297706, - 0.04563479283846771, - 0.0540865974081264, - 0.07211648455928912, - 0.09900340297646483, - 0.13158996661453953, - 0.1654832993705875, - 0.19673696929917167, - 0.2244002617493052, - 0.25236160242218364, - 0.29014718784456317, - 0.3525248648870511, - 0.45694498265923833, - 0.6202297405259047, - 0.855919081754125, - 1.1686109649007166, - 1.5547081033350376 - ], - "pressure:branch73_seg0:J39": [ - 9267.0101199697, - 10666.388459493592, - 12134.10127134224, - 13595.519829607143, - 14979.016882423333, - 16225.817427173379, - 17300.15182069286, - 18196.70015982184, - 18915.470294453342, - 19473.33560788078, - 19899.088420287182, - 20199.65595242674, - 20388.858620318864, - 20470.421746611817, - 20437.40076295639, - 20296.894008244504, - 20045.775372094235, - 19694.367401521522, - 19265.948589010208, - 18773.79494665264, - 18242.1587822578, - 17688.67126086657, - 17122.77444755942, - 16552.76611902639, - 15980.368962144736, - 15407.868468845942, - 14840.679083982423, - 14287.338365077896, - 13759.433735032306, - 13268.835363300721, - 12821.759122802603, - 12414.810232227615, - 12034.919963861963, - 11655.190519342714, - 11243.646611178525, - 10767.638151240866, - 10204.296150764174, - 9540.307839143376, - 8787.051507611242, - 7973.262567051812, - 7137.78324752843, - 6332.530524945549, - 5603.695039267785, - 4987.799704008373, - 4502.446155206863, - 4156.985589495549, - 3936.457747068587, - 3820.3111992095414, - 3789.3106384876432, - 3817.5712059706557, - 3893.7050616122065, - 4008.726811592604, - 4156.494644670926, - 4335.2980430656635, - 4536.216688671532, - 4748.237769023079, - 4955.2160038997845, - 5137.853718078611, - 5279.415645494569, - 5370.254547411379, - 5406.8814558709855, - 5395.093771463952, - 5351.2874288470575, - 5288.352223391477, - 5221.187022623659, - 5159.376821480527, - 5103.27313374373, - 5047.789842518367, - 4984.304887666023, - 4904.206759802864, - 4804.0316839792295, - 4685.510444267012, - 4558.07630312587, - 4434.95717372766, - 4329.06110378712, - 4249.86886568611, - 4200.78755803108, - 4177.18442621611, - 4169.297538729453, - 4166.774788699801, - 4160.361201061472, - 4147.584285497593, - 4133.001397391302, - 4126.1719871390105, - 4138.715618561918, - 4178.731849253604, - 4248.2100055752935, - 4341.183548877953, - 4443.105793155053, - 4541.091891354577, - 4626.289016299044, - 4702.217636178664, - 4789.739870476141, - 4926.584355723915, - 5163.679095449443, - 5556.494769495625, - 6146.112073611463, - 6967.89416995703, - 8018.725911289979, - 9267.0101199697 - ], - "flow:J39:branch74_seg0": [ - 0.7127742126772879, - 0.9178090938572527, - 1.1409852025419907, - 1.3707205496301849, - 1.5951372847103227, - 1.8039631206079545, - 1.9897435811607547, - 2.1484971027000963, - 2.279256505781459, - 2.3837343364132164, - 2.4646186299727444, - 2.5245791701587765, - 2.5659158548693695, - 2.5895233126113224, - 2.595635958750164, - 2.5842850667422828, - 2.555356473778764, - 2.510145511341822, - 2.4506465737221235, - 2.379520591998694, - 2.3001123477357397, - 2.215332783612482, - 2.1275190604623098, - 2.0382117265205957, - 1.9481701151680475, - 1.8578784380328623, - 1.7679349509765956, - 1.67938374083018, - 1.5937844120803273, - 1.5129223516443417, - 1.4382044419738498, - 1.3700032153704662, - 1.30713488728325, - 1.24664666563313, - 1.1841752740480265, - 1.114722461147139, - 1.0338313686719764, - 0.9385268623676304, - 0.8286278178836376, - 0.7065975539061579, - 0.5776217724489866, - 0.4486353124906111, - 0.3270588448140021, - 0.21946377061799802, - 0.13043883952459873, - 0.0624169243624377, - 0.014946706245490644, - -0.014084156654944264, - -0.027871408338361978, - -0.0299138210714279, - -0.02292553345664629, - -0.00888710333716142, - 0.01102464194896995, - 0.0361076019949139, - 0.06545806893656199, - 0.09763916620474941, - 0.13047914395070695, - 0.16129906760576643, - 0.1873452939711081, - 0.20644768575998645, - 0.21741563267669206, - 0.22048326951119268, - 0.21705399846718143, - 0.20923865566110797, - 0.1994260906247548, - 0.1894046252083351, - 0.18004248151154287, - 0.17116123688742993, - 0.16176708046076074, - 0.1505757351565603, - 0.13663423326412624, - 0.1197181430387779, - 0.10064765358199607, - 0.08104388742990397, - 0.06290256159403713, - 0.04800374787503704, - 0.037399932484904974, - 0.031094169183414726, - 0.028120097175037585, - 0.026959036939394672, - 0.026096626242010965, - 0.02461007585331042, - 0.022536805414040285, - 0.020859924552195628, - 0.021162473185278613, - 0.024961910450400727, - 0.03313209146746623, - 0.045381990928262964, - 0.060309247344719964, - 0.07591251828764904, - 0.09038630484897985, - 0.10326387940447222, - 0.11626742279277259, - 0.1337014811211455, - 0.16228116915579235, - 0.21003162223521993, - 0.28462396636642656, - 0.39237908310585795, - 0.5356901435727173, - 0.7127742126772879 - ], - "pressure:J39:branch74_seg0": [ - 9267.0101199697, - 10666.388459493592, - 12134.10127134224, - 13595.519829607143, - 14979.016882423333, - 16225.817427173379, - 17300.15182069286, - 18196.70015982184, - 18915.470294453342, - 19473.33560788078, - 19899.088420287182, - 20199.65595242674, - 20388.858620318864, - 20470.421746611817, - 20437.40076295639, - 20296.894008244504, - 20045.775372094235, - 19694.367401521522, - 19265.948589010208, - 18773.79494665264, - 18242.1587822578, - 17688.67126086657, - 17122.77444755942, - 16552.76611902639, - 15980.368962144736, - 15407.868468845942, - 14840.679083982423, - 14287.338365077896, - 13759.433735032306, - 13268.835363300721, - 12821.759122802603, - 12414.810232227615, - 12034.919963861963, - 11655.190519342714, - 11243.646611178525, - 10767.638151240866, - 10204.296150764174, - 9540.307839143376, - 8787.051507611242, - 7973.262567051812, - 7137.78324752843, - 6332.530524945549, - 5603.695039267785, - 4987.799704008373, - 4502.446155206863, - 4156.985589495549, - 3936.457747068587, - 3820.3111992095414, - 3789.3106384876432, - 3817.5712059706557, - 3893.7050616122065, - 4008.726811592604, - 4156.494644670926, - 4335.2980430656635, - 4536.216688671532, - 4748.237769023079, - 4955.2160038997845, - 5137.853718078611, - 5279.415645494569, - 5370.254547411379, - 5406.8814558709855, - 5395.093771463952, - 5351.2874288470575, - 5288.352223391477, - 5221.187022623659, - 5159.376821480527, - 5103.27313374373, - 5047.789842518367, - 4984.304887666023, - 4904.206759802864, - 4804.0316839792295, - 4685.510444267012, - 4558.07630312587, - 4434.95717372766, - 4329.06110378712, - 4249.86886568611, - 4200.78755803108, - 4177.18442621611, - 4169.297538729453, - 4166.774788699801, - 4160.361201061472, - 4147.584285497593, - 4133.001397391302, - 4126.1719871390105, - 4138.715618561918, - 4178.731849253604, - 4248.2100055752935, - 4341.183548877953, - 4443.105793155053, - 4541.091891354577, - 4626.289016299044, - 4702.217636178664, - 4789.739870476141, - 4926.584355723915, - 5163.679095449443, - 5556.494769495625, - 6146.112073611463, - 6967.89416995703, - 8018.725911289979, - 9267.0101199697 - ], - "flow:J39:branch90_seg0": [ - 0.8419338906577497, - 1.0830758139937011, - 1.3444346821718567, - 1.6126233505020942, - 1.8735439001754155, - 2.1152921579622093, - 2.3294379031071886, - 2.51183558898795, - 2.661322061741397, - 2.780331303839471, - 2.8722214027630306, - 2.939937465784075, - 2.9863259011710643, - 3.0122153479362748, - 3.017784233589845, - 3.003090681940762, - 2.967917662547144, - 2.913911849923536, - 2.8433795104679773, - 2.7595278224898494, - 2.666389538408784, - 2.567241957939263, - 2.4648199479254895, - 2.3608418087989915, - 2.2560913867378964, - 2.151111596020992, - 2.046565964220003, - 1.9437029161403128, - 1.8443864935267016, - 1.750751113576067, - 1.6643939833926733, - 1.5857237144195706, - 1.5132543278375759, - 1.443339939330081, - 1.3708102941610576, - 1.289744837914203, - 1.1949414793755186, - 1.0830164982155512, - 0.9540054815263729, - 0.8109528664417127, - 0.6601515985161162, - 0.5099205293473692, - 0.3689340203431953, - 0.2447921026776188, - 0.14283403397027208, - 0.06559127065826104, - 0.012210335129718206, - -0.0197303520225899, - -0.034264032605394096, - -0.03547881922719814, - -0.026417086640370825, - -0.009465130586155333, - 0.01424027737817099, - 0.04390226654232135, - 0.07840292757714647, - 0.11614381832425165, - 0.15448888567002403, - 0.19025470406838946, - 0.2202258687825557, - 0.2419179533566979, - 0.25397503341613537, - 0.25679993439507054, - 0.2521745445626929, - 0.2425918211485388, - 0.2309129027390278, - 0.21918930706047818, - 0.2083482123772387, - 0.198102985250296, - 0.18720513701647426, - 0.1741108134718173, - 0.15769498974487806, - 0.1377596507929606, - 0.11536187968693788, - 0.09243867917870612, - 0.07138493412513006, - 0.05428414473060627, - 0.04232335572758733, - 0.03537811127000946, - 0.03228339204423967, - 0.03118214487188895, - 0.030256588417940853, - 0.028495849795149734, - 0.026009194420353095, - 0.024027856269102088, - 0.0244723196531891, - 0.029124686957725663, - 0.03898439309182291, - 0.05362141204820186, - 0.0712807192698196, - 0.08957078108293842, - 0.1063506644501918, - 0.121136382344833, - 0.13609417962941103, - 0.15644570672341768, - 0.19024369573125866, - 0.2469133604240184, - 0.33560577415947823, - 0.4635399986482671, - 0.6329208213279993, - 0.8419338906577497 - ], - "pressure:J39:branch90_seg0": [ - 9267.0101199697, - 10666.388459493592, - 12134.10127134224, - 13595.519829607143, - 14979.016882423333, - 16225.817427173379, - 17300.15182069286, - 18196.70015982184, - 18915.470294453342, - 19473.33560788078, - 19899.088420287182, - 20199.65595242674, - 20388.858620318864, - 20470.421746611817, - 20437.40076295639, - 20296.894008244504, - 20045.775372094235, - 19694.367401521522, - 19265.948589010208, - 18773.79494665264, - 18242.1587822578, - 17688.67126086657, - 17122.77444755942, - 16552.76611902639, - 15980.368962144736, - 15407.868468845942, - 14840.679083982423, - 14287.338365077896, - 13759.433735032306, - 13268.835363300721, - 12821.759122802603, - 12414.810232227615, - 12034.919963861963, - 11655.190519342714, - 11243.646611178525, - 10767.638151240866, - 10204.296150764174, - 9540.307839143376, - 8787.051507611242, - 7973.262567051812, - 7137.78324752843, - 6332.530524945549, - 5603.695039267785, - 4987.799704008373, - 4502.446155206863, - 4156.985589495549, - 3936.457747068587, - 3820.3111992095414, - 3789.3106384876432, - 3817.5712059706557, - 3893.7050616122065, - 4008.726811592604, - 4156.494644670926, - 4335.2980430656635, - 4536.216688671532, - 4748.237769023079, - 4955.2160038997845, - 5137.853718078611, - 5279.415645494569, - 5370.254547411379, - 5406.8814558709855, - 5395.093771463952, - 5351.2874288470575, - 5288.352223391477, - 5221.187022623659, - 5159.376821480527, - 5103.27313374373, - 5047.789842518367, - 4984.304887666023, - 4904.206759802864, - 4804.0316839792295, - 4685.510444267012, - 4558.07630312587, - 4434.95717372766, - 4329.06110378712, - 4249.86886568611, - 4200.78755803108, - 4177.18442621611, - 4169.297538729453, - 4166.774788699801, - 4160.361201061472, - 4147.584285497593, - 4133.001397391302, - 4126.1719871390105, - 4138.715618561918, - 4178.731849253604, - 4248.2100055752935, - 4341.183548877953, - 4443.105793155053, - 4541.091891354577, - 4626.289016299044, - 4702.217636178664, - 4789.739870476141, - 4926.584355723915, - 5163.679095449443, - 5556.494769495625, - 6146.112073611463, - 6967.89416995703, - 8018.725911289979, - 9267.0101199697 - ], - "flow:branch76_seg0:J40": [ - 3.094826196025214, - 3.9924153534040276, - 4.972501135706047, - 5.985608500443213, - 6.978534708847373, - 7.905404301574382, - 8.73275373118044, - 9.442851604014155, - 10.029389521551012, - 10.499834350837483, - 10.865935538722182, - 11.138706371348762, - 11.32914210185143, - 11.441180272298944, - 11.476220343165028, - 11.434785310493623, - 11.316274206593675, - 11.126289825213762, - 10.872753108612319, - 10.567196061773744, - 10.224207817636822, - 9.856031832601483, - 9.473256520635886, - 9.082805212977831, - 8.688180064154428, - 8.291769914206967, - 7.896125268497491, - 7.505765106490777, - 7.127427455405456, - 6.768997451509885, - 6.436694900590078, - 6.132729840492718, - 5.852546020885365, - 5.583634368568656, - 5.307573231360463, - 5.002588057288082, - 4.648777047529423, - 4.232364920542242, - 3.7515469448038217, - 3.2156520712320087, - 2.6463673122017153, - 2.0736126165607573, - 1.529673180139631, - 1.0438853701335142, - 0.6381391187151386, - 0.32395217815732547, - 0.10043313005574857, - -0.039728090805127916, - -0.11077498097536982, - -0.1277196375705933, - -0.10249043328402285, - -0.044814029819200955, - 0.040348980970843905, - 0.14941524187535418, - 0.2779941795086185, - 0.42020147261382995, - 0.5663827965492473, - 0.7047436308843653, - 0.8231135809784528, - 0.9116641256967611, - 0.9645419119852074, - 0.9822713811560358, - 0.9706472134185811, - 0.9385129362990797, - 0.8964491766361722, - 0.8525152728615235, - 0.8108777651044689, - 0.7712403963803277, - 0.7295452424089381, - 0.6802855077089415, - 0.6190811486424805, - 0.544741873568849, - 0.46059214742480825, - 0.3733509736328825, - 0.29177512985268944, - 0.2238532773718653, - 0.1745658898725095, - 0.14417801574196687, - 0.1290372080024677, - 0.12259354058663495, - 0.1180518539203015, - 0.11125471522270423, - 0.10197475769434158, - 0.09418704913933602, - 0.09467618084110062, - 0.11013570290399204, - 0.14472606704561333, - 0.19756158421090192, - 0.2628047205673404, - 0.3318883322533374, - 0.39667107488828257, - 0.4545517535759403, - 0.5123469246053718, - 0.5881318672647003, - 0.7108153315817771, - 0.9151124405173382, - 1.2359474073854508, - 1.7015770539456831, - 2.3225270251804826, - 3.094826196025214 - ], - "pressure:branch76_seg0:J40": [ - 8777.685456243633, - 10094.966168954994, - 11500.86941193329, - 12924.14205615138, - 14292.466309732015, - 15545.557742374542, - 16643.32274645592, - 17571.315337105832, - 18326.40846588523, - 18922.19218492447, - 19381.072585211507, - 19714.455499647127, - 19936.58891153843, - 20051.906640281322, - 20058.116521557615, - 19958.796427624275, - 19752.111479167957, - 19447.513209556782, - 19061.327628174116, - 18608.238208210936, - 18110.328704941378, - 17584.335911220413, - 17042.204819436516, - 16492.649180452987, - 15938.804401612853, - 15383.497767632003, - 14831.162138166395, - 14289.168064488926, - 13767.968085845412, - 13278.845980248712, - 12829.175257334326, - 12418.68140114451, - 12037.667720073972, - 11664.087592894763, - 11269.291304755243, - 10822.098582715169, - 10297.362675897226, - 9679.205830892428, - 8972.142292239163, - 8196.806707834612, - 7387.731378892297, - 6591.293936881101, - 5852.857719019539, - 5210.743741128375, - 4689.055184102815, - 4300.419256804151, - 4036.403180320611, - 3882.1169080143904, - 3817.954180367878, - 3820.6307346635326, - 3876.432753521023, - 3974.012920189776, - 4106.932180172346, - 4271.981110988426, - 4461.50613943992, - 4665.866669306371, - 4870.31253087153, - 5057.001775973817, - 5209.214749404553, - 5315.327255415026, - 5369.729473765917, - 5375.787037300261, - 5345.5656591752695, - 5291.806611666532, - 5229.241218973475, - 5168.081726937242, - 5111.356661047105, - 5056.264601540811, - 4995.650480326853, - 4921.431195708237, - 4828.876464221457, - 4718.069604239662, - 4596.148892230631, - 4474.33986874202, - 4365.155812449582, - 4278.835729290782, - 4220.459407725811, - 4187.839402705681, - 4173.501099364939, - 4167.791636610408, - 4161.374351288307, - 4150.2037610976, - 4136.463372729941, - 4127.720718554119, - 4134.48717023882, - 4165.432974361607, - 4224.344358687208, - 4307.516698422708, - 4403.686390255212, - 4500.393757405512, - 4587.638655705187, - 4665.51698133349, - 4749.33085325385, - 4870.5646643530345, - 5074.810785892486, - 5413.602003780671, - 5931.555878017703, - 6665.814108402497, - 7620.761927218373, - 8777.685456243633 - ], - "flow:J40:branch77_seg0": [ - 0.9711371444763853, - 1.2524386036993138, - 1.5592250134001084, - 1.8759109739242017, - 2.185815466694685, - 2.4746361374672383, - 2.732007937204389, - 2.9525041422824203, - 3.1342995579207793, - 3.2798712029579766, - 3.3929430300719, - 3.477024001918533, - 3.535542418042076, - 3.569683588176325, - 3.5798664979497343, - 3.56619926271826, - 3.528494640996232, - 3.4685217124760923, - 3.3887586001432117, - 3.2928649778325436, - 3.1854132339131813, - 3.070230438665665, - 2.9506213014730958, - 2.828711040199047, - 2.7055625506349905, - 2.581894629224696, - 2.458488130625554, - 2.336759559576006, - 2.2188283549246646, - 2.107172679085995, - 2.003737806030915, - 1.9092004864017587, - 1.8220900608004633, - 1.7384443054433127, - 1.6524469532336696, - 1.5572498101641277, - 1.4466182412229442, - 1.3162851543322074, - 1.1657539204603802, - 0.9980298536775447, - 0.8200080055223975, - 0.6411159613076732, - 0.4714951715121882, - 0.3203137983568787, - 0.19437537094359095, - 0.097176885584523, - 0.028348372788976933, - -0.01448325708308092, - -0.03586042784046302, - -0.04048821873068107, - -0.032104999005204936, - -0.01372518931661883, - 0.013149808838240436, - 0.04742148691543817, - 0.08774299848800875, - 0.13227304351053198, - 0.17797444520900008, - 0.22114509663359969, - 0.25796935746938726, - 0.28537988417913857, - 0.3015751457229147, - 0.3067685574643474, - 0.3028111158496604, - 0.2925173004630184, - 0.27921811550391085, - 0.2654274465917448, - 0.2524274890495832, - 0.240087149134278, - 0.22709766975286358, - 0.21171082285848675, - 0.19254765365198445, - 0.16925230858257656, - 0.14289250910438808, - 0.11560180880469118, - 0.0901458995069846, - 0.06902984814747558, - 0.05379642781998394, - 0.04449719383940975, - 0.0399543421178135, - 0.038082023865588406, - 0.03674177471263207, - 0.03463827802015523, - 0.03172416989645854, - 0.02927826884507295, - 0.029454161017450475, - 0.034361977242468256, - 0.045297104041701675, - 0.061951331732215294, - 0.08246367896095744, - 0.10411441517489563, - 0.12434031969102095, - 0.1423440450678894, - 0.16030653115281396, - 0.18395539963968235, - 0.22241372617671637, - 0.2865954001174651, - 0.387463504368432, - 0.5337984852062866, - 0.7288074446731454, - 0.9711371444763853 - ], - "pressure:J40:branch77_seg0": [ - 8777.685456243633, - 10094.966168954994, - 11500.86941193329, - 12924.14205615138, - 14292.466309732015, - 15545.557742374542, - 16643.32274645592, - 17571.315337105832, - 18326.40846588523, - 18922.19218492447, - 19381.072585211507, - 19714.455499647127, - 19936.58891153843, - 20051.906640281322, - 20058.116521557615, - 19958.796427624275, - 19752.111479167957, - 19447.513209556782, - 19061.327628174116, - 18608.238208210936, - 18110.328704941378, - 17584.335911220413, - 17042.204819436516, - 16492.649180452987, - 15938.804401612853, - 15383.497767632003, - 14831.162138166395, - 14289.168064488926, - 13767.968085845412, - 13278.845980248712, - 12829.175257334326, - 12418.68140114451, - 12037.667720073972, - 11664.087592894763, - 11269.291304755243, - 10822.098582715169, - 10297.362675897226, - 9679.205830892428, - 8972.142292239163, - 8196.806707834612, - 7387.731378892297, - 6591.293936881101, - 5852.857719019539, - 5210.743741128375, - 4689.055184102815, - 4300.419256804151, - 4036.403180320611, - 3882.1169080143904, - 3817.954180367878, - 3820.6307346635326, - 3876.432753521023, - 3974.012920189776, - 4106.932180172346, - 4271.981110988426, - 4461.50613943992, - 4665.866669306371, - 4870.31253087153, - 5057.001775973817, - 5209.214749404553, - 5315.327255415026, - 5369.729473765917, - 5375.787037300261, - 5345.5656591752695, - 5291.806611666532, - 5229.241218973475, - 5168.081726937242, - 5111.356661047105, - 5056.264601540811, - 4995.650480326853, - 4921.431195708237, - 4828.876464221457, - 4718.069604239662, - 4596.148892230631, - 4474.33986874202, - 4365.155812449582, - 4278.835729290782, - 4220.459407725811, - 4187.839402705681, - 4173.501099364939, - 4167.791636610408, - 4161.374351288307, - 4150.2037610976, - 4136.463372729941, - 4127.720718554119, - 4134.48717023882, - 4165.432974361607, - 4224.344358687208, - 4307.516698422708, - 4403.686390255212, - 4500.393757405512, - 4587.638655705187, - 4665.51698133349, - 4749.33085325385, - 4870.5646643530345, - 5074.810785892486, - 5413.602003780671, - 5931.555878017703, - 6665.814108402497, - 7620.761927218373, - 8777.685456243633 - ], - "flow:J40:branch92_seg0": [ - 2.1236890515488294, - 2.739976749704714, - 3.413276122305937, - 4.109697526519012, - 4.792719242152688, - 5.430768164107144, - 6.0007457939760505, - 6.490347461731737, - 6.895089963630234, - 7.219963147879509, - 7.472992508650279, - 7.661682369430229, - 7.793599683809352, - 7.871496684122618, - 7.8963538452152955, - 7.868586047775362, - 7.787779565597443, - 7.657768112737673, - 7.483994508469108, - 7.274331083941199, - 7.038794583723639, - 6.785801393935818, - 6.522635219162791, - 6.254094172778784, - 5.982617513519438, - 5.709875284982269, - 5.4376371378719375, - 5.1690055469147715, - 4.908599100480792, - 4.661824772423892, - 4.432957094559162, - 4.223529354090958, - 4.030455960084901, - 3.845190063125343, - 3.6551262781267932, - 3.4453382471239524, - 3.2021588063064783, - 2.916079766210034, - 2.5857930243434413, - 2.217622217554464, - 1.826359306679318, - 1.432496655253084, - 1.0581780086274428, - 0.7235715717766358, - 0.4437637477715477, - 0.22677529257280243, - 0.07208475726677165, - -0.02524483372204699, - -0.0749145531349068, - -0.08723141883991221, - -0.07038543427881791, - -0.031088840502582114, - 0.027199172132603464, - 0.10199375495991603, - 0.19025118102060973, - 0.2879284291032981, - 0.38840835134024726, - 0.4835985342507656, - 0.5651442235090655, - 0.6262842415176225, - 0.6629667662622929, - 0.6755028236916883, - 0.6678360975689206, - 0.6459956358360616, - 0.6172310611322614, - 0.5870878262697788, - 0.5584502760548856, - 0.5311532472460496, - 0.5024475726560749, - 0.46857468485045484, - 0.426533494990496, - 0.37548956498627245, - 0.31769963832042003, - 0.25774916482819127, - 0.20162923034570487, - 0.1548234292243897, - 0.12076946205252556, - 0.09968082190255712, - 0.0890828658846542, - 0.08451151672104656, - 0.08131007920766943, - 0.07661643720254901, - 0.07025058779788303, - 0.06490878029426309, - 0.06522201982365015, - 0.07577372566152378, - 0.09942896300391167, - 0.13561025247868666, - 0.18034104160638295, - 0.22777391707844183, - 0.2723307551972617, - 0.3122077085080509, - 0.3520403934525579, - 0.4041764676250182, - 0.48840160540506083, - 0.6285170403998732, - 0.8484839030170189, - 1.167778568739397, - 1.593719580507337, - 2.1236890515488294 - ], - "pressure:J40:branch92_seg0": [ - 8777.685456243633, - 10094.966168954994, - 11500.86941193329, - 12924.14205615138, - 14292.466309732015, - 15545.557742374542, - 16643.32274645592, - 17571.315337105832, - 18326.40846588523, - 18922.19218492447, - 19381.072585211507, - 19714.455499647127, - 19936.58891153843, - 20051.906640281322, - 20058.116521557615, - 19958.796427624275, - 19752.111479167957, - 19447.513209556782, - 19061.327628174116, - 18608.238208210936, - 18110.328704941378, - 17584.335911220413, - 17042.204819436516, - 16492.649180452987, - 15938.804401612853, - 15383.497767632003, - 14831.162138166395, - 14289.168064488926, - 13767.968085845412, - 13278.845980248712, - 12829.175257334326, - 12418.68140114451, - 12037.667720073972, - 11664.087592894763, - 11269.291304755243, - 10822.098582715169, - 10297.362675897226, - 9679.205830892428, - 8972.142292239163, - 8196.806707834612, - 7387.731378892297, - 6591.293936881101, - 5852.857719019539, - 5210.743741128375, - 4689.055184102815, - 4300.419256804151, - 4036.403180320611, - 3882.1169080143904, - 3817.954180367878, - 3820.6307346635326, - 3876.432753521023, - 3974.012920189776, - 4106.932180172346, - 4271.981110988426, - 4461.50613943992, - 4665.866669306371, - 4870.31253087153, - 5057.001775973817, - 5209.214749404553, - 5315.327255415026, - 5369.729473765917, - 5375.787037300261, - 5345.5656591752695, - 5291.806611666532, - 5229.241218973475, - 5168.081726937242, - 5111.356661047105, - 5056.264601540811, - 4995.650480326853, - 4921.431195708237, - 4828.876464221457, - 4718.069604239662, - 4596.148892230631, - 4474.33986874202, - 4365.155812449582, - 4278.835729290782, - 4220.459407725811, - 4187.839402705681, - 4173.501099364939, - 4167.791636610408, - 4161.374351288307, - 4150.2037610976, - 4136.463372729941, - 4127.720718554119, - 4134.48717023882, - 4165.432974361607, - 4224.344358687208, - 4307.516698422708, - 4403.686390255212, - 4500.393757405512, - 4587.638655705187, - 4665.51698133349, - 4749.33085325385, - 4870.5646643530345, - 5074.810785892486, - 5413.602003780671, - 5931.555878017703, - 6665.814108402497, - 7620.761927218373, - 8777.685456243633 - ], - "flow:branch85_seg0:J41": [ - 2.1574998907153566, - 2.819377756866547, - 3.5746183619046885, - 4.391962437378909, - 5.233306279502737, - 6.060562948390898, - 6.840511188309062, - 7.548634901131185, - 8.169241985325243, - 8.697387819353388, - 9.134283171173838, - 9.484549161902185, - 9.754731179917579, - 9.948972230076926, - 10.0700830895874, - 10.119595525248835, - 10.098153293556663, - 10.009046599644092, - 9.85724704174075, - 9.650587016093935, - 9.3993341822594, - 9.113732224557236, - 8.803612940820678, - 8.476810879769763, - 8.138875582005435, - 7.793866310926561, - 7.44515466941191, - 7.096680298940448, - 6.7535280469845524, - 6.421732748284332, - 6.106922142330159, - 5.812783901475206, - 5.538969056176547, - 5.279819578258305, - 5.0246224766124135, - 4.758769173101089, - 4.466671760791215, - 4.134967359287067, - 3.756591604140526, - 3.332034596975889, - 2.8710325049317045, - 2.3909991164297195, - 1.9140671237119196, - 1.4634375924642395, - 1.0597378963538666, - 0.7178205802650286, - 0.44473449829994277, - 0.2412956760291481, - 0.10194089678198821, - 0.01820107382101394, - -0.018831643005877217, - -0.01757470038969627, - 0.015929883107687295, - 0.07687120203306705, - 0.16079632610542935, - 0.2627392159633035, - 0.37574718799145723, - 0.49123162688757055, - 0.5996644844454125, - 0.69214063957941, - 0.7617552751701318, - 0.8054365827918225, - 0.8239760200278451, - 0.821401992450496, - 0.8040787963498335, - 0.7782596787162906, - 0.748660775991418, - 0.717396281658562, - 0.6837915170368881, - 0.6453232646151406, - 0.59908683247449, - 0.5433820833480383, - 0.47895930718353863, - 0.4090947477425829, - 0.33913046156521504, - 0.2749700406461479, - 0.22149103742594956, - 0.1810820062511268, - 0.15338788097526335, - 0.13546091943311017, - 0.12315424449663881, - 0.11287681666979008, - 0.10292083867419022, - 0.09424049033435675, - 0.09017650329036943, - 0.0950757644261836, - 0.11267730704456261, - 0.14420113461214998, - 0.18769512939624622, - 0.23857599403725205, - 0.29126603581186944, - 0.3422449831134561, - 0.3930348113737834, - 0.45240021867403046, - 0.5372074710271659, - 0.6705501354732775, - 0.8787697092015861, - 1.1865930956837367, - 1.6105348936015904, - 2.1574998907153566 - ], - "pressure:branch85_seg0:J41": [ - 8188.052125468802, - 9370.079543433796, - 10656.329194440817, - 11987.25985840947, - 13298.736724553393, - 14533.141118696152, - 15647.804858282969, - 16621.611595667455, - 17442.443285465488, - 18114.757907550887, - 18653.618473322145, - 19065.92848377152, - 19363.46787905964, - 19551.1405347709, - 19627.788116146865, - 19597.871854580546, - 19460.44099925221, - 19223.05789414567, - 18900.370010418814, - 18505.073448551862, - 18056.762930439425, - 17571.5862560026, - 17061.77941063496, - 16537.269814440773, - 16003.083814478445, - 15463.446503852258, - 14923.460635680982, - 14390.248653088975, - 13873.30446929503, - 13383.010545751298, - 12926.686932257342, - 12505.60480824133, - 12113.25043709369, - 11732.262921732043, - 11339.041128314595, - 10906.614745328676, - 10411.870865136652, - 9838.153038740862, - 9185.474990714425, - 8467.945818958844, - 7711.860516618378, - 6955.624772286247, - 6238.529635571266, - 5595.952316722251, - 5052.539083106693, - 4623.989405169837, - 4308.333780025882, - 4096.703060848993, - 3975.146538117691, - 3924.74305242893, - 3933.266625277163, - 3989.6656470854778, - 4086.6086472012958, - 4219.591544245287, - 4380.7821699940605, - 4561.236567172598, - 4747.803138950241, - 4924.537831126167, - 5076.062981092149, - 5190.8606360361855, - 5261.913629694914, - 5289.6570336459345, - 5282.607624284445, - 5250.146633461937, - 5204.3622684145785, - 5154.691923545416, - 5104.95182099968, - 5054.311028727076, - 4998.061727690201, - 4930.0869510962075, - 4846.411586314095, - 4746.564665682942, - 4635.705212684122, - 4522.671243916129, - 4417.854299421982, - 4330.401878032698, - 4265.732077439115, - 4223.395698251593, - 4198.464189450825, - 4183.646410176664, - 4171.1979723444065, - 4157.187799112949, - 4142.482259903698, - 4132.42679996601, - 4135.226643941595, - 4158.163303599007, - 4205.111876860184, - 4274.141803927349, - 4356.743187584598, - 4443.113250509234, - 4524.644922317133, - 4600.247391149343, - 4681.094243266613, - 4792.0764340570995, - 4970.736639449702, - 5261.43915451815, - 5704.63062876594, - 6336.319719369049, - 7167.080559131629, - 8188.052125468802 - ], - "flow:J41:branch86_seg0": [ - 1.4627437121661797, - 1.9198668831294354, - 2.4478231742694163, - 3.025736229716338, - 3.6273345021469923, - 4.225341620220752, - 4.7950890991389485, - 5.31741412135344, - 5.7795443278852, - 6.1761870059840085, - 6.5069287810322285, - 6.774560914617898, - 6.9834142939036195, - 7.136738281257954, - 7.23687726514796, - 7.2850655719436626, - 7.281958611985487, - 7.229560744304342, - 7.131086303617515, - 6.991794526541603, - 6.818624350331571, - 6.6189152788648125, - 6.399849749553046, - 6.167354844350452, - 5.925823696012432, - 5.678448150206017, - 5.427783394616318, - 5.176603650222607, - 4.928395218806097, - 4.687347172462586, - 4.4575717246229045, - 4.242051217582208, - 4.041168289428864, - 3.851750522438715, - 3.666939475898424, - 3.4768803230783547, - 3.270542229659448, - 3.037988045765313, - 2.7731074786602323, - 2.474960155368492, - 2.1490608936039246, - 1.8065827826185508, - 1.4626237748647712, - 1.1336686540580865, - 0.8349688744615162, - 0.5781039351636726, - 0.36950918993723386, - 0.21085653825283981, - 0.09917347125968033, - 0.028996571743038005, - -0.00601521264849708, - -0.01197425629253354, - 0.0064274615436248125, - 0.04545355579813574, - 0.1018609892276451, - 0.17213148246444823, - 0.2515455297237053, - 0.33420989922017064, - 0.4134187475176253, - 0.48265901698351743, - 0.5366372571862311, - 0.5725374191292167, - 0.590233401919728, - 0.5920916105213521, - 0.582287692432582, - 0.5652843670617238, - 0.5447287815984233, - 0.5225636244708064, - 0.49876634667489456, - 0.4718498652168516, - 0.43980712907720104, - 0.4012438206722124, - 0.3562996717407261, - 0.3069118904541781, - 0.25658132566844244, - 0.20944043587892608, - 0.1691468614265955, - 0.13782548719664764, - 0.11568507493050477, - 0.10102504366809359, - 0.09109934010026488, - 0.08325245656404158, - 0.07595301644013426, - 0.06945647099584325, - 0.06576378447766563, - 0.0678180567912502, - 0.07839314498839192, - 0.09875181820506587, - 0.12802939852377937, - 0.1633618477632584, - 0.20091532908718665, - 0.23785338083177732, - 0.2744564452540944, - 0.31584171951979884, - 0.37279858078192546, - 0.46087607099816214, - 0.5985007667291613, - 0.8036073394324748, - 1.0894873261745692, - 1.4627437121661797 - ], - "pressure:J41:branch86_seg0": [ - 8188.052125468802, - 9370.079543433796, - 10656.329194440817, - 11987.25985840947, - 13298.736724553393, - 14533.141118696152, - 15647.804858282969, - 16621.611595667455, - 17442.443285465488, - 18114.757907550887, - 18653.618473322145, - 19065.92848377152, - 19363.46787905964, - 19551.1405347709, - 19627.788116146865, - 19597.871854580546, - 19460.44099925221, - 19223.05789414567, - 18900.370010418814, - 18505.073448551862, - 18056.762930439425, - 17571.5862560026, - 17061.77941063496, - 16537.269814440773, - 16003.083814478445, - 15463.446503852258, - 14923.460635680982, - 14390.248653088975, - 13873.30446929503, - 13383.010545751298, - 12926.686932257342, - 12505.60480824133, - 12113.25043709369, - 11732.262921732043, - 11339.041128314595, - 10906.614745328676, - 10411.870865136652, - 9838.153038740862, - 9185.474990714425, - 8467.945818958844, - 7711.860516618378, - 6955.624772286247, - 6238.529635571266, - 5595.952316722251, - 5052.539083106693, - 4623.989405169837, - 4308.333780025882, - 4096.703060848993, - 3975.146538117691, - 3924.74305242893, - 3933.266625277163, - 3989.6656470854778, - 4086.6086472012958, - 4219.591544245287, - 4380.7821699940605, - 4561.236567172598, - 4747.803138950241, - 4924.537831126167, - 5076.062981092149, - 5190.8606360361855, - 5261.913629694914, - 5289.6570336459345, - 5282.607624284445, - 5250.146633461937, - 5204.3622684145785, - 5154.691923545416, - 5104.95182099968, - 5054.311028727076, - 4998.061727690201, - 4930.0869510962075, - 4846.411586314095, - 4746.564665682942, - 4635.705212684122, - 4522.671243916129, - 4417.854299421982, - 4330.401878032698, - 4265.732077439115, - 4223.395698251593, - 4198.464189450825, - 4183.646410176664, - 4171.1979723444065, - 4157.187799112949, - 4142.482259903698, - 4132.42679996601, - 4135.226643941595, - 4158.163303599007, - 4205.111876860184, - 4274.141803927349, - 4356.743187584598, - 4443.113250509234, - 4524.644922317133, - 4600.247391149343, - 4681.094243266613, - 4792.0764340570995, - 4970.736639449702, - 5261.43915451815, - 5704.63062876594, - 6336.319719369049, - 7167.080559131629, - 8188.052125468802 - ], - "flow:J41:branch109_seg0": [ - 0.6947561785491773, - 0.8995108737371116, - 1.1267951876352722, - 1.3662262076625697, - 1.6059717773557438, - 1.8352213281701477, - 2.0454220891701134, - 2.2312207797777437, - 2.3896976574400437, - 2.521200813369381, - 2.627354390141609, - 2.7099882472842864, - 2.771316886013963, - 2.812233948818973, - 2.8332058244394385, - 2.8345299533051733, - 2.81619468157118, - 2.7794858553397512, - 2.726160738123234, - 2.658792489552333, - 2.58070983192783, - 2.494816945692426, - 2.4037631912676325, - 2.3094560354193105, - 2.213051885993006, - 2.115418160720545, - 2.0173712747955923, - 1.9200766487178416, - 1.8251328281784551, - 1.734385575821745, - 1.649350417707253, - 1.5707326838929976, - 1.4978007667476836, - 1.4280690558195903, - 1.3576830007139897, - 1.2818888500227352, - 1.196129531131767, - 1.0969793135217547, - 0.983484125480294, - 0.8570744416073967, - 0.7219716113277796, - 0.5844163338111682, - 0.4514433488471484, - 0.32976893840615323, - 0.22476902189235068, - 0.13971664510135587, - 0.07522530836270896, - 0.03043913777630828, - 0.0027674255223078697, - -0.01079549792202407, - -0.012816430357380138, - -0.005600444097162729, - 0.009502421564062483, - 0.03141764623493131, - 0.058935336877784295, - 0.09060773349885527, - 0.12420165826775201, - 0.15702172766739983, - 0.18624573692778718, - 0.20948162259589254, - 0.22511801798390088, - 0.23289916366260596, - 0.2337426181081171, - 0.229310381929144, - 0.22179110391725132, - 0.21297531165456682, - 0.20393199439299464, - 0.19483265718775558, - 0.18502517036199354, - 0.17347339939828907, - 0.159279703397289, - 0.14213826267582574, - 0.12265963544281254, - 0.10218285728840476, - 0.08254913589677255, - 0.06552960476722183, - 0.05234417599935407, - 0.04325651905447916, - 0.037702806044758584, - 0.03443587576501659, - 0.032054904396373936, - 0.029624360105748503, - 0.026967822234055954, - 0.024784019338513524, - 0.0244127188127038, - 0.027257707634933414, - 0.03428416205617067, - 0.045449316407084085, - 0.059665730872466814, - 0.07521414627399366, - 0.0903507067246828, - 0.10439160228167885, - 0.11857836611968899, - 0.1365584991542316, - 0.16440889024524047, - 0.20967406447511525, - 0.2802689424724246, - 0.382985756251262, - 0.5210475674270219, - 0.6947561785491773 - ], - "pressure:J41:branch109_seg0": [ - 8188.052125468802, - 9370.079543433796, - 10656.329194440817, - 11987.25985840947, - 13298.736724553393, - 14533.141118696152, - 15647.804858282969, - 16621.611595667455, - 17442.443285465488, - 18114.757907550887, - 18653.618473322145, - 19065.92848377152, - 19363.46787905964, - 19551.1405347709, - 19627.788116146865, - 19597.871854580546, - 19460.44099925221, - 19223.05789414567, - 18900.370010418814, - 18505.073448551862, - 18056.762930439425, - 17571.5862560026, - 17061.77941063496, - 16537.269814440773, - 16003.083814478445, - 15463.446503852258, - 14923.460635680982, - 14390.248653088975, - 13873.30446929503, - 13383.010545751298, - 12926.686932257342, - 12505.60480824133, - 12113.25043709369, - 11732.262921732043, - 11339.041128314595, - 10906.614745328676, - 10411.870865136652, - 9838.153038740862, - 9185.474990714425, - 8467.945818958844, - 7711.860516618378, - 6955.624772286247, - 6238.529635571266, - 5595.952316722251, - 5052.539083106693, - 4623.989405169837, - 4308.333780025882, - 4096.703060848993, - 3975.146538117691, - 3924.74305242893, - 3933.266625277163, - 3989.6656470854778, - 4086.6086472012958, - 4219.591544245287, - 4380.7821699940605, - 4561.236567172598, - 4747.803138950241, - 4924.537831126167, - 5076.062981092149, - 5190.8606360361855, - 5261.913629694914, - 5289.6570336459345, - 5282.607624284445, - 5250.146633461937, - 5204.3622684145785, - 5154.691923545416, - 5104.95182099968, - 5054.311028727076, - 4998.061727690201, - 4930.0869510962075, - 4846.411586314095, - 4746.564665682942, - 4635.705212684122, - 4522.671243916129, - 4417.854299421982, - 4330.401878032698, - 4265.732077439115, - 4223.395698251593, - 4198.464189450825, - 4183.646410176664, - 4171.1979723444065, - 4157.187799112949, - 4142.482259903698, - 4132.42679996601, - 4135.226643941595, - 4158.163303599007, - 4205.111876860184, - 4274.141803927349, - 4356.743187584598, - 4443.113250509234, - 4524.644922317133, - 4600.247391149343, - 4681.094243266613, - 4792.0764340570995, - 4970.736639449702, - 5261.43915451815, - 5704.63062876594, - 6336.319719369049, - 7167.080559131629, - 8188.052125468802 - ], - "flow:branch86_seg2:J42": [ - 1.4584841425230315, - 1.9150807240055348, - 2.4426997152092955, - 3.020561158737772, - 3.6223359824936754, - 4.2207047003251725, - 4.790951550656987, - 5.313869642528622, - 5.776575414282102, - 6.173777732080619, - 6.505033026592683, - 6.773124650756234, - 6.9824299751839565, - 7.136179398287776, - 7.236748684975762, - 7.2853553538685265, - 7.28264903020038, - 7.230641657595003, - 7.132470461311437, - 6.993420403989773, - 6.820441821344916, - 6.620848866106082, - 6.401862919442873, - 6.169418722375718, - 5.927916056137933, - 5.680557267411281, - 5.42988386461615, - 5.178662001020364, - 4.930372546573707, - 4.689209469582033, - 4.459292444659226, - 4.243642774398263, - 4.042676606437598, - 3.8532462711472344, - 3.668526719381064, - 3.478664828983305, - 3.272597820525748, - 3.040355213365227, - 2.7757754361699907, - 2.4778369000511518, - 2.15202449037381, - 1.809487390013676, - 1.4653133163445595, - 1.1360041981403974, - 0.8369045799988108, - 0.5795993942336678, - 0.3705531834928872, - 0.21153634590914036, - 0.09952948641082743, - 0.029092189608717595, - -0.006116649641580127, - -0.012264280254883596, - 0.0059897379974316305, - 0.04489311260503375, - 0.1011952567212403, - 0.17141344620804838, - 0.2508294191979849, - 0.333554941809577, - 0.41288299176761334, - 0.48228299222647253, - 0.5364305067697769, - 0.5724897391857959, - 0.5903074717572656, - 0.5922402425314631, - 0.582473940351248, - 0.5654780749547437, - 0.5449206970633569, - 0.5227666850392322, - 0.49900252301539716, - 0.47214264651127297, - 0.4401616348952886, - 0.40165277556877127, - 0.35674168762281233, - 0.307343553489909, - 0.25696280760947476, - 0.2097441806729548, - 0.1693637139515771, - 0.13795711115010845, - 0.11576285227388934, - 0.10108003411024544, - 0.09115059169574868, - 0.08331062667208329, - 0.07600697371407347, - 0.06947900232107938, - 0.06572286550847098, - 0.06768877404143928, - 0.07817221218434682, - 0.09845568833497208, - 0.12769604122662281, - 0.16303267106933259, - 0.20061176743437056, - 0.2375593409040767, - 0.27410594467829774, - 0.31531568764931195, - 0.3719411573627633, - 0.459488797624656, - 0.5964724449202693, - 0.8008449278495351, - 1.0858941774495028, - 1.4584841425230315 - ], - "pressure:branch86_seg2:J42": [ - 7299.473462265168, - 8294.191441514427, - 9419.019253497303, - 10627.294451102443, - 11862.604339256308, - 13069.338449248302, - 14200.110016157754, - 15222.306139037733, - 16113.911459513512, - 16869.016234210103, - 17492.181352525335, - 17989.036789755977, - 18369.428831324436, - 18639.404872551655, - 18801.695160965683, - 18859.492100365496, - 18813.42351407085, - 18668.352212214177, - 18433.184859491543, - 18119.25483794876, - 17742.159266673123, - 17316.9614465044, - 16857.472048876305, - 16374.927199349067, - 15876.947196419738, - 15369.245956908153, - 14856.847684425285, - 14345.766329239726, - 13843.723749155335, - 13359.755752698899, - 12901.794158834453, - 12474.464119083417, - 12076.405009610306, - 11697.820380548897, - 11322.077729442653, - 10927.194453484373, - 10490.729895141265, - 9993.702698321607, - 9427.537723008403, - 8795.201038325473, - 8112.312241727277, - 7406.226302345643, - 6709.911898829908, - 6057.074544821492, - 5476.750138131299, - 4989.548645269741, - 4603.799000895986, - 4319.413987278975, - 4127.629834621473, - 4015.1442789457537, - 3969.4434690626676, - 3978.4289922457697, - 4033.6315871394045, - 4128.43174075755, - 4255.83281952823, - 4408.459668067872, - 4575.702696282704, - 4744.4807053826435, - 4900.792964458746, - 5032.082351701616, - 5128.776439270561, - 5187.01385191293, - 5209.356052506225, - 5201.901904453475, - 5174.158269162224, - 5135.294384303137, - 5091.54619759085, - 5045.3812155523565, - 4995.316186481809, - 4937.389266023107, - 4867.512006183535, - 4783.610954572784, - 4687.44377607369, - 4584.34805508482, - 4482.415612931736, - 4390.218460383194, - 4314.54277530583, - 4258.147528690667, - 4219.913003919736, - 4195.203344387493, - 4177.737467285471, - 4162.651699431098, - 4148.0378173868885, - 4135.872753902021, - 4131.46510417127, - 4141.1557260912095, - 4170.036830055736, - 4219.342064114669, - 4285.222873137731, - 4360.699396682739, - 4437.765369420059, - 4512.019008844473, - 4587.18287018943, - 4677.89045352331, - 4810.581321435221, - 5020.292525225875, - 5345.415753921005, - 5821.705420649711, - 6470.494297491031, - 7299.473462265168 - ], - "flow:J42:branch87_seg0": [ - 0.6911058320140254, - 0.9061771845147183, - 1.1536800987910214, - 1.4237163363920935, - 1.703858681583466, - 1.9813874356093881, - 2.2449360300183545, - 2.4858202513528256, - 2.698283367023983, - 2.880145520844186, - 3.0314066615851547, - 3.153451449386266, - 3.2483809877579173, - 3.3176525909907917, - 3.3623252077401884, - 3.3829368680932004, - 3.3797601382114197, - 3.3537889427895347, - 3.3065205267914557, - 3.240476757353702, - 3.1589583898621103, - 3.0653617208071715, - 2.9630301948383373, - 2.8546738913398606, - 2.742272461240709, - 2.6272708883758296, - 2.51082530083383, - 2.3942278433687108, - 2.2791215467695136, - 2.167479359713305, - 2.0612066761833203, - 1.9616608932673187, - 1.8689404850482438, - 1.7814442698056208, - 1.6958711260270656, - 1.6075395977934845, - 1.5112739666082553, - 1.4024893883678404, - 1.278477483502138, - 1.1389560167314863, - 0.9867073735232792, - 0.827122638131418, - 0.6673432232636616, - 0.515071086443313, - 0.377387725612118, - 0.2595330029540016, - 0.16429595357197765, - 0.0923438610392967, - 0.042099597483700256, - 0.010937644946516846, - -0.004099042320540356, - -0.005877311186487003, - 0.003498691135508237, - 0.02232880379224492, - 0.04910753458620092, - 0.08221471957973019, - 0.11941446147882083, - 0.15792600313014685, - 0.19460921289704067, - 0.22644337493679648, - 0.251002355114735, - 0.26706194508713876, - 0.27465691958758526, - 0.2749682334955507, - 0.27000659747486905, - 0.26185609676745647, - 0.25218459380691377, - 0.2418411814950302, - 0.23074670709562586, - 0.21815823917260185, - 0.20311751968908745, - 0.1849956604168738, - 0.16391268200733133, - 0.14082142741712805, - 0.11740590769873668, - 0.09561278441504703, - 0.07712982543365621, - 0.0628864141061145, - 0.05292372642983009, - 0.04638442481607541, - 0.04194600858998971, - 0.038380224525060416, - 0.035009843346973955, - 0.032012199655184974, - 0.030378613711803736, - 0.03151126570321016, - 0.03669965276586961, - 0.046481816245067815, - 0.060384111535338125, - 0.07700724658597188, - 0.09452837623429301, - 0.11165339628246644, - 0.1286104072294023, - 0.1479328392111856, - 0.17482555753804815, - 0.21665568650906178, - 0.2821253246847796, - 0.3795569444609865, - 0.514892768025115, - 0.6911058320140254 - ], - "pressure:J42:branch87_seg0": [ - 7299.473462265168, - 8294.191441514427, - 9419.019253497303, - 10627.294451102443, - 11862.604339256308, - 13069.338449248302, - 14200.110016157754, - 15222.306139037733, - 16113.911459513512, - 16869.016234210103, - 17492.181352525335, - 17989.036789755977, - 18369.428831324436, - 18639.404872551655, - 18801.695160965683, - 18859.492100365496, - 18813.42351407085, - 18668.352212214177, - 18433.184859491543, - 18119.25483794876, - 17742.159266673123, - 17316.9614465044, - 16857.472048876305, - 16374.927199349067, - 15876.947196419738, - 15369.245956908153, - 14856.847684425285, - 14345.766329239726, - 13843.723749155335, - 13359.755752698899, - 12901.794158834453, - 12474.464119083417, - 12076.405009610306, - 11697.820380548897, - 11322.077729442653, - 10927.194453484373, - 10490.729895141265, - 9993.702698321607, - 9427.537723008403, - 8795.201038325473, - 8112.312241727277, - 7406.226302345643, - 6709.911898829908, - 6057.074544821492, - 5476.750138131299, - 4989.548645269741, - 4603.799000895986, - 4319.413987278975, - 4127.629834621473, - 4015.1442789457537, - 3969.4434690626676, - 3978.4289922457697, - 4033.6315871394045, - 4128.43174075755, - 4255.83281952823, - 4408.459668067872, - 4575.702696282704, - 4744.4807053826435, - 4900.792964458746, - 5032.082351701616, - 5128.776439270561, - 5187.01385191293, - 5209.356052506225, - 5201.901904453475, - 5174.158269162224, - 5135.294384303137, - 5091.54619759085, - 5045.3812155523565, - 4995.316186481809, - 4937.389266023107, - 4867.512006183535, - 4783.610954572784, - 4687.44377607369, - 4584.34805508482, - 4482.415612931736, - 4390.218460383194, - 4314.54277530583, - 4258.147528690667, - 4219.913003919736, - 4195.203344387493, - 4177.737467285471, - 4162.651699431098, - 4148.0378173868885, - 4135.872753902021, - 4131.46510417127, - 4141.1557260912095, - 4170.036830055736, - 4219.342064114669, - 4285.222873137731, - 4360.699396682739, - 4437.765369420059, - 4512.019008844473, - 4587.18287018943, - 4677.89045352331, - 4810.581321435221, - 5020.292525225875, - 5345.415753921005, - 5821.705420649711, - 6470.494297491031, - 7299.473462265168 - ], - "flow:J42:branch144_seg0": [ - 0.7673783105090064, - 1.0089035394908166, - 1.289019616418275, - 1.596844822345679, - 1.9184773009102103, - 2.2393172647157855, - 2.5460155206386332, - 2.828049391175798, - 3.078292047258121, - 3.2936322112364325, - 3.473626365007529, - 3.6196732013699666, - 3.7340489874260374, - 3.8185268072969833, - 3.8744234772355735, - 3.9024184857753266, - 3.9028888919889613, - 3.87685271480547, - 3.825949934519981, - 3.7529436466360715, - 3.6614834314828064, - 3.55548714529891, - 3.4388327246045374, - 3.314744831035856, - 3.1856435948972255, - 3.0532863790354505, - 2.919058563782319, - 2.784434157651653, - 2.6512509998041933, - 2.5217301098687286, - 2.398085768475905, - 2.281981881130944, - 2.1737361213893536, - 2.0718020013416125, - 1.9726555933539982, - 1.8711252311898208, - 1.761323853917493, - 1.637865824997387, - 1.4972979526678534, - 1.3388808833196655, - 1.16531711685053, - 0.9823647518822579, - 0.7979700930808982, - 0.6209331116970844, - 0.4595168543866929, - 0.3200663912796662, - 0.20625722992090953, - 0.11919248486984367, - 0.05742988892712716, - 0.018154544662200754, - -0.0020176073210397705, - -0.006386969068396594, - 0.0024910468619233923, - 0.02256430881278883, - 0.05208772213503939, - 0.0891987266283182, - 0.13141495771916406, - 0.17562893867943008, - 0.21827377887057267, - 0.25583961728967625, - 0.28542815165504165, - 0.3054277940986571, - 0.3156505521696802, - 0.3172720090359124, - 0.3124673428763789, - 0.3036219781872872, - 0.29273610325644317, - 0.280925503544202, - 0.2682558159197714, - 0.253984407338671, - 0.2370441152062012, - 0.21665711515189748, - 0.19282900561548094, - 0.16652212607278102, - 0.1395568999107381, - 0.11413139625790779, - 0.09223388851792089, - 0.07507069704399393, - 0.06283912584405923, - 0.05469560929417005, - 0.049204583105758974, - 0.04493040214702288, - 0.04099713036709954, - 0.03746680266589443, - 0.03534425179666725, - 0.036177508338229115, - 0.041472559418477196, - 0.051973872089904255, - 0.06731192969128469, - 0.08602542448336073, - 0.10608339120007756, - 0.12590594462161026, - 0.14549553744889543, - 0.16738284843812634, - 0.19711559982471508, - 0.2428331111155943, - 0.3143471202354897, - 0.4212879833885486, - 0.5710014094243878, - 0.7673783105090064 - ], - "pressure:J42:branch144_seg0": [ - 7299.473462265168, - 8294.191441514427, - 9419.019253497303, - 10627.294451102443, - 11862.604339256308, - 13069.338449248302, - 14200.110016157754, - 15222.306139037733, - 16113.911459513512, - 16869.016234210103, - 17492.181352525335, - 17989.036789755977, - 18369.428831324436, - 18639.404872551655, - 18801.695160965683, - 18859.492100365496, - 18813.42351407085, - 18668.352212214177, - 18433.184859491543, - 18119.25483794876, - 17742.159266673123, - 17316.9614465044, - 16857.472048876305, - 16374.927199349067, - 15876.947196419738, - 15369.245956908153, - 14856.847684425285, - 14345.766329239726, - 13843.723749155335, - 13359.755752698899, - 12901.794158834453, - 12474.464119083417, - 12076.405009610306, - 11697.820380548897, - 11322.077729442653, - 10927.194453484373, - 10490.729895141265, - 9993.702698321607, - 9427.537723008403, - 8795.201038325473, - 8112.312241727277, - 7406.226302345643, - 6709.911898829908, - 6057.074544821492, - 5476.750138131299, - 4989.548645269741, - 4603.799000895986, - 4319.413987278975, - 4127.629834621473, - 4015.1442789457537, - 3969.4434690626676, - 3978.4289922457697, - 4033.6315871394045, - 4128.43174075755, - 4255.83281952823, - 4408.459668067872, - 4575.702696282704, - 4744.4807053826435, - 4900.792964458746, - 5032.082351701616, - 5128.776439270561, - 5187.01385191293, - 5209.356052506225, - 5201.901904453475, - 5174.158269162224, - 5135.294384303137, - 5091.54619759085, - 5045.3812155523565, - 4995.316186481809, - 4937.389266023107, - 4867.512006183535, - 4783.610954572784, - 4687.44377607369, - 4584.34805508482, - 4482.415612931736, - 4390.218460383194, - 4314.54277530583, - 4258.147528690667, - 4219.913003919736, - 4195.203344387493, - 4177.737467285471, - 4162.651699431098, - 4148.0378173868885, - 4135.872753902021, - 4131.46510417127, - 4141.1557260912095, - 4170.036830055736, - 4219.342064114669, - 4285.222873137731, - 4360.699396682739, - 4437.765369420059, - 4512.019008844473, - 4587.18287018943, - 4677.89045352331, - 4810.581321435221, - 5020.292525225875, - 5345.415753921005, - 5821.705420649711, - 6470.494297491031, - 7299.473462265168 - ], - "flow:branch92_seg0:J43": [ - 2.123503815350703, - 2.7397728607861165, - 3.413063366423297, - 4.109488633781354, - 4.792523600051598, - 5.430592599488747, - 6.00059473001692, - 6.490223382251788, - 6.894989475153591, - 7.2198851667240636, - 7.472934173423598, - 7.6616407324512785, - 7.79357482263445, - 7.871487385625673, - 7.89636062073152, - 7.868608841585096, - 7.787817381889724, - 7.657820183397935, - 7.484057400226979, - 7.274401998523181, - 7.038871270507925, - 6.785880998388924, - 6.522716471810322, - 6.254176287678854, - 5.982699953107566, - 5.709957763157765, - 5.437718700078762, - 5.16908480201936, - 4.908674359201553, - 4.661894705455624, - 4.433020744292247, - 4.223587753456524, - 4.030511512594198, - 3.8452463124226415, - 3.6551880003335278, - 3.4454099728453285, - 3.2022434589028284, - 2.9161782158490364, - 2.5859040542828526, - 2.217740923484009, - 1.826479657874601, - 1.432612028719513, - 1.058281594293807, - 0.7236580473324578, - 0.4438316420940113, - 0.2268237252633575, - 0.07211476477680562, - -0.02522904621973607, - -0.07491059214934895, - -0.08723634863670701, - -0.070396806977645, - -0.03110641987982008, - 0.027176867948157497, - 0.10196735473449685, - 0.19022142682628804, - 0.2878976892082984, - 0.3883788902031057, - 0.4835729190456052, - 0.5651247429034849, - 0.6262724166896236, - 0.6629622984358504, - 0.675504899919625, - 0.6678427813979847, - 0.6460044729118661, - 0.6172404446285676, - 0.5870966418296414, - 0.5584584132919783, - 0.531161611919801, - 0.5024573970077153, - 0.468587081587684, - 0.42654867583534983, - 0.37550705021067987, - 0.3177181521141754, - 0.2577666473627343, - 0.20164389642192465, - 0.1548341828414806, - 0.12077615841478785, - 0.09968391453317292, - 0.08908409204417828, - 0.08451231513543024, - 0.08131132919634798, - 0.07661840985165555, - 0.07025251433382332, - 0.06490920177796156, - 0.0652194255244683, - 0.07576701056166775, - 0.09941829788876816, - 0.13559662986369697, - 0.18032633248615795, - 0.22776012591001413, - 0.2723186837138888, - 0.3121962888530139, - 0.3520261421464595, - 0.40415361985278886, - 0.4883627797115897, - 0.62845379900937, - 0.8483916440551216, - 1.1676535222509263, - 1.5935602955844408, - 2.123503815350703 - ], - "pressure:branch92_seg0:J43": [ - 8738.778857105779, - 10050.046027382632, - 11451.720391321858, - 12872.829505208669, - 14240.931068637117, - 15495.514410649757, - 16596.06028613831, - 17527.47181335245, - 18286.097896632196, - 18885.426015595745, - 19347.406605242388, - 19683.676402583947, - 19908.62510630293, - 20026.695379046956, - 20035.91386369274, - 19939.662171797267, - 19736.133343444482, - 19434.669963451168, - 19051.200598207375, - 18600.488938672053, - 18104.4944867818, - 17579.953410577746, - 17039.004370817405, - 16490.424004929122, - 15937.456561400515, - 15382.958506652047, - 14831.286025312753, - 14289.723411171994, - 13768.637912304132, - 13279.295861636821, - 12829.15281808892, - 12418.19669617738, - 12036.981012310831, - 11663.797641029701, - 11270.237533326808, - 10825.19640045377, - 10303.35393129767, - 9688.580834637169, - 8984.909970659914, - 8212.384739478188, - 7405.212463885559, - 6609.4199843845745, - 5870.297672524312, - 5226.32792759908, - 4702.0690784997905, - 4310.360420813111, - 4043.2885458301807, - 3886.316392766411, - 3819.814798101919, - 3820.6720949032024, - 3874.993236885346, - 3971.261389858733, - 4103.042837704356, - 4267.001401675246, - 4455.596444273617, - 4659.3299635005205, - 4863.541671981257, - 5050.505604764731, - 5203.492436658814, - 5310.748202907418, - 5366.453898089807, - 5373.807273501967, - 5344.586965604185, - 5291.4808995591075, - 5229.230872814327, - 5168.11565897794, - 5111.357094869649, - 5056.3283428743425, - 4995.980880293344, - 4922.2593275866, - 4830.33052454413, - 4720.151523730812, - 4598.674915561736, - 4476.984175793383, - 4367.5683108359835, - 4280.72936714837, - 4221.681907311282, - 4188.415321763202, - 4173.640460456076, - 4167.735074454663, - 4161.350293419892, - 4150.317705729921, - 4136.638686769014, - 4127.730878294063, - 4134.032153359536, - 4164.253645721565, - 4222.341379008184, - 4304.763609517344, - 4400.482576447055, - 4497.085733683337, - 4584.466170322739, - 4662.439509005267, - 4745.868468747025, - 4865.759690389387, - 5067.284614625483, - 5401.714719231999, - 5913.958470283535, - 6641.265068741004, - 7588.769017948518, - 8738.778857105779 - ], - "flow:J43:branch93_seg0": [ - 0.6716309730036798, - 0.8650869460595045, - 1.0754601322141384, - 1.292090536304838, - 1.5035484925773186, - 1.7001326520694304, - 1.8748985138103682, - 2.0243393295984298, - 2.147276916133176, - 2.2455483958264915, - 2.321771220263955, - 2.37827841551199, - 2.4174360121352603, - 2.4399776845826975, - 2.44614359462733, - 2.436033897669009, - 2.40948879059932, - 2.3677885875422633, - 2.312666544153682, - 2.2466326142273543, - 2.1728611133299256, - 2.0939321709923018, - 2.0120769392023363, - 1.928718949114936, - 1.8445435930285963, - 1.7600351682486732, - 1.6757325021162999, - 1.5926241857450294, - 1.5121816081957045, - 1.436110752865096, - 1.3657161922729157, - 1.3014152910511814, - 1.242136532711555, - 1.1850805291802635, - 1.1262199383501776, - 1.0608475169771883, - 0.9847327288640353, - 0.8950199880502128, - 0.7915099197095471, - 0.676370607346686, - 0.5544253153668117, - 0.43221054898063055, - 0.3166626135846481, - 0.21400408879066124, - 0.12880293376259383, - 0.06334853698886189, - 0.017239158508163148, - -0.011192680425462955, - -0.02510980652836825, - -0.027750355255475548, - -0.02160992664679459, - -0.00873700023954743, - 0.009893909936350287, - 0.033552988383444206, - 0.06129217013533088, - 0.09184626904521036, - 0.12309969404998745, - 0.15249726281175105, - 0.17743323461769744, - 0.19584479093836407, - 0.20653780181967304, - 0.20972429920977556, - 0.20673468897905578, - 0.1995059710914149, - 0.19033288285580877, - 0.1809063050317158, - 0.17205377847254014, - 0.1636417174823777, - 0.15473975158135145, - 0.14414104709483622, - 0.13091930035297725, - 0.1148657609122383, - 0.0967607853647299, - 0.07809380701972878, - 0.06077137352321, - 0.04649472496978423, - 0.03628545315989618, - 0.030123913540290117, - 0.02716859192842847, - 0.02596985197209297, - 0.025062051190175863, - 0.023594288695426055, - 0.021577747575411785, - 0.019927859599152668, - 0.020143334120543872, - 0.023659025199894598, - 0.031331757209230704, - 0.04289771064416029, - 0.05702822454737218, - 0.07184680560044006, - 0.08561056004273834, - 0.09783667159635448, - 0.1101187714543857, - 0.12648853314088135, - 0.15328878370857377, - 0.19802738807271042, - 0.26818468540146845, - 0.3696993697507256, - 0.5045306237445826, - 0.6716309730036798 - ], - "pressure:J43:branch93_seg0": [ - 8738.778857105779, - 10050.046027382632, - 11451.720391321858, - 12872.829505208669, - 14240.931068637117, - 15495.514410649757, - 16596.06028613831, - 17527.47181335245, - 18286.097896632196, - 18885.426015595745, - 19347.406605242388, - 19683.676402583947, - 19908.62510630293, - 20026.695379046956, - 20035.91386369274, - 19939.662171797267, - 19736.133343444482, - 19434.669963451168, - 19051.200598207375, - 18600.488938672053, - 18104.4944867818, - 17579.953410577746, - 17039.004370817405, - 16490.424004929122, - 15937.456561400515, - 15382.958506652047, - 14831.286025312753, - 14289.723411171994, - 13768.637912304132, - 13279.295861636821, - 12829.15281808892, - 12418.19669617738, - 12036.981012310831, - 11663.797641029701, - 11270.237533326808, - 10825.19640045377, - 10303.35393129767, - 9688.580834637169, - 8984.909970659914, - 8212.384739478188, - 7405.212463885559, - 6609.4199843845745, - 5870.297672524312, - 5226.32792759908, - 4702.0690784997905, - 4310.360420813111, - 4043.2885458301807, - 3886.316392766411, - 3819.814798101919, - 3820.6720949032024, - 3874.993236885346, - 3971.261389858733, - 4103.042837704356, - 4267.001401675246, - 4455.596444273617, - 4659.3299635005205, - 4863.541671981257, - 5050.505604764731, - 5203.492436658814, - 5310.748202907418, - 5366.453898089807, - 5373.807273501967, - 5344.586965604185, - 5291.4808995591075, - 5229.230872814327, - 5168.11565897794, - 5111.357094869649, - 5056.3283428743425, - 4995.980880293344, - 4922.2593275866, - 4830.33052454413, - 4720.151523730812, - 4598.674915561736, - 4476.984175793383, - 4367.5683108359835, - 4280.72936714837, - 4221.681907311282, - 4188.415321763202, - 4173.640460456076, - 4167.735074454663, - 4161.350293419892, - 4150.317705729921, - 4136.638686769014, - 4127.730878294063, - 4134.032153359536, - 4164.253645721565, - 4222.341379008184, - 4304.763609517344, - 4400.482576447055, - 4497.085733683337, - 4584.466170322739, - 4662.439509005267, - 4745.868468747025, - 4865.759690389387, - 5067.284614625483, - 5401.714719231999, - 5913.958470283535, - 6641.265068741004, - 7588.769017948518, - 8738.778857105779 - ], - "flow:J43:branch135_seg0": [ - 0.8994157175736659, - 1.156413723721067, - 1.4348589515878107, - 1.7206690185783742, - 1.9987932504215171, - 2.256575948109829, - 2.485089031864017, - 2.680031556611657, - 2.840011477665415, - 2.967603014511091, - 3.066404091518818, - 3.139370631912451, - 3.1896177710590488, - 3.218033418679514, - 3.224830499524959, - 3.210209727871879, - 3.173920037659368, - 3.1177440771300717, - 3.0440771436006466, - 2.9562106024712933, - 2.858398742568074, - 2.7540010718500447, - 2.6458906659469377, - 2.535904742836038, - 2.4248852841642337, - 2.313460483479662, - 2.2023613098428445, - 2.0929258781967754, - 1.9871295846378207, - 1.8872322424925778, - 1.794910122273997, - 1.7106170428820597, - 1.63283096445018, - 1.5577136884968579, - 1.4798692811247158, - 1.3930628491662076, - 1.2917903746540211, - 1.1723989811714457, - 1.0348567469218022, - 0.8822373141466395, - 0.7210565379974908, - 0.5600745931463665, - 0.4084375288219312, - 0.2742624844814875, - 0.1633949305376475, - 0.07871738611503634, - 0.01945671979815059, - -0.016688684960399495, - -0.03392766520195939, - -0.03658049162986546, - -0.02783474721430366, - -0.010346179013144847, - 0.014647381837410175, - 0.04623004571385209, - 0.08310119733101028, - 0.12356125986277583, - 0.16476911796427976, - 0.20331529115422936, - 0.2357746945122438, - 0.2594901329743914, - 0.2729646734220029, - 0.276573760955344, - 0.27218503847823083, - 0.2623678575292644, - 0.25015863121465864, - 0.23774251106833041, - 0.22612426504385244, - 0.21505382664407016, - 0.20325317500771872, - 0.18911864092208439, - 0.17146827920833205, - 0.15008450823986366, - 0.1260792323887578, - 0.10146897560591468, - 0.07878200012183734, - 0.06023398837480171, - 0.04711174713584179, - 0.03930318158683081, - 0.035630617033563905, - 0.034159464860284414, - 0.03295986671216351, - 0.03096975064802895, - 0.028280663034483466, - 0.026164947212900674, - 0.0266338989025778, - 0.03155922375372221, - 0.04200993941385858, - 0.05755375507440517, - 0.07634479322587673, - 0.09588990604101938, - 0.11392589998930389, - 0.1299334958500809, - 0.14619552495549099, - 0.168223296976057, - 0.20454911441336998, - 0.2651510980202985, - 0.35980106365153014, - 0.496241166352279, - 0.6766777874354155, - 0.8994157175736659 - ], - "pressure:J43:branch135_seg0": [ - 8738.778857105779, - 10050.046027382632, - 11451.720391321858, - 12872.829505208669, - 14240.931068637117, - 15495.514410649757, - 16596.06028613831, - 17527.47181335245, - 18286.097896632196, - 18885.426015595745, - 19347.406605242388, - 19683.676402583947, - 19908.62510630293, - 20026.695379046956, - 20035.91386369274, - 19939.662171797267, - 19736.133343444482, - 19434.669963451168, - 19051.200598207375, - 18600.488938672053, - 18104.4944867818, - 17579.953410577746, - 17039.004370817405, - 16490.424004929122, - 15937.456561400515, - 15382.958506652047, - 14831.286025312753, - 14289.723411171994, - 13768.637912304132, - 13279.295861636821, - 12829.15281808892, - 12418.19669617738, - 12036.981012310831, - 11663.797641029701, - 11270.237533326808, - 10825.19640045377, - 10303.35393129767, - 9688.580834637169, - 8984.909970659914, - 8212.384739478188, - 7405.212463885559, - 6609.4199843845745, - 5870.297672524312, - 5226.32792759908, - 4702.0690784997905, - 4310.360420813111, - 4043.2885458301807, - 3886.316392766411, - 3819.814798101919, - 3820.6720949032024, - 3874.993236885346, - 3971.261389858733, - 4103.042837704356, - 4267.001401675246, - 4455.596444273617, - 4659.3299635005205, - 4863.541671981257, - 5050.505604764731, - 5203.492436658814, - 5310.748202907418, - 5366.453898089807, - 5373.807273501967, - 5344.586965604185, - 5291.4808995591075, - 5229.230872814327, - 5168.11565897794, - 5111.357094869649, - 5056.3283428743425, - 4995.980880293344, - 4922.2593275866, - 4830.33052454413, - 4720.151523730812, - 4598.674915561736, - 4476.984175793383, - 4367.5683108359835, - 4280.72936714837, - 4221.681907311282, - 4188.415321763202, - 4173.640460456076, - 4167.735074454663, - 4161.350293419892, - 4150.317705729921, - 4136.638686769014, - 4127.730878294063, - 4134.032153359536, - 4164.253645721565, - 4222.341379008184, - 4304.763609517344, - 4400.482576447055, - 4497.085733683337, - 4584.466170322739, - 4662.439509005267, - 4745.868468747025, - 4865.759690389387, - 5067.284614625483, - 5401.714719231999, - 5913.958470283535, - 6641.265068741004, - 7588.769017948518, - 8738.778857105779 - ], - "flow:J43:branch139_seg0": [ - 0.5524571247733573, - 0.718272191005545, - 0.9027442826213481, - 1.0967290788981416, - 1.2901818570527623, - 1.4738839993094872, - 1.6406071843425356, - 1.7858524960417002, - 1.9077010813549986, - 2.0067337563864807, - 2.084758861640824, - 2.1439916850268372, - 2.186521039440142, - 2.213476282363461, - 2.2253865265792303, - 2.2223652160442064, - 2.2044085536310356, - 2.172287518725601, - 2.127313712472651, - 2.071558781824534, - 2.007611414609924, - 1.9379477555465776, - 1.8647488666610494, - 1.789552595727881, - 1.7132710759147363, - 1.6364621114294298, - 1.5596248881196189, - 1.4835347380775554, - 1.4093631663680282, - 1.3385517100979505, - 1.2723944297453347, - 1.2115554195232825, - 1.1555440154324625, - 1.10245209474552, - 1.0490987808586343, - 0.9914996067019323, - 0.9257203553847719, - 0.8487592466273778, - 0.7595373876515035, - 0.6591330019906836, - 0.5509978045102987, - 0.4403268865925157, - 0.33318145188722786, - 0.23539147406030902, - 0.15163377779377002, - 0.08475780215945933, - 0.03541888647049188, - 0.002652319166126371, - -0.01587312041902133, - -0.022905501751366002, - -0.020952133116546742, - -0.0120232406271278, - 0.002635576174397033, - 0.022184320637200532, - 0.04582805935994688, - 0.07249016030031227, - 0.10051007818883845, - 0.12776036507962477, - 0.15191681377354363, - 0.1709374927768682, - 0.18345982319417425, - 0.18920683975450556, - 0.1889230539406982, - 0.18413064429118697, - 0.17674893055810026, - 0.16844782572959519, - 0.16028036977558582, - 0.15246606779335337, - 0.14446447041864527, - 0.1353273935707634, - 0.12416109627404043, - 0.11055678105857795, - 0.09487813436068773, - 0.07820386473709082, - 0.06209052277687733, - 0.048105469496894655, - 0.037378958119049885, - 0.030256819406051988, - 0.0262848830821859, - 0.02438299830305286, - 0.023289411294008595, - 0.022054370508200548, - 0.020394103723928067, - 0.01881639496590819, - 0.018442192501346624, - 0.020548761608050938, - 0.026076601265678873, - 0.03514516414513149, - 0.04695331471290903, - 0.060023414268554676, - 0.07278222368184657, - 0.0844261214065785, - 0.09571184573658287, - 0.10944178973585048, - 0.130524881589646, - 0.16527531291636124, - 0.22040589500212293, - 0.3017129861479217, - 0.41235188440444254, - 0.5524571247733573 - ], - "pressure:J43:branch139_seg0": [ - 8738.778857105779, - 10050.046027382632, - 11451.720391321858, - 12872.829505208669, - 14240.931068637117, - 15495.514410649757, - 16596.06028613831, - 17527.47181335245, - 18286.097896632196, - 18885.426015595745, - 19347.406605242388, - 19683.676402583947, - 19908.62510630293, - 20026.695379046956, - 20035.91386369274, - 19939.662171797267, - 19736.133343444482, - 19434.669963451168, - 19051.200598207375, - 18600.488938672053, - 18104.4944867818, - 17579.953410577746, - 17039.004370817405, - 16490.424004929122, - 15937.456561400515, - 15382.958506652047, - 14831.286025312753, - 14289.723411171994, - 13768.637912304132, - 13279.295861636821, - 12829.15281808892, - 12418.19669617738, - 12036.981012310831, - 11663.797641029701, - 11270.237533326808, - 10825.19640045377, - 10303.35393129767, - 9688.580834637169, - 8984.909970659914, - 8212.384739478188, - 7405.212463885559, - 6609.4199843845745, - 5870.297672524312, - 5226.32792759908, - 4702.0690784997905, - 4310.360420813111, - 4043.2885458301807, - 3886.316392766411, - 3819.814798101919, - 3820.6720949032024, - 3874.993236885346, - 3971.261389858733, - 4103.042837704356, - 4267.001401675246, - 4455.596444273617, - 4659.3299635005205, - 4863.541671981257, - 5050.505604764731, - 5203.492436658814, - 5310.748202907418, - 5366.453898089807, - 5373.807273501967, - 5344.586965604185, - 5291.4808995591075, - 5229.230872814327, - 5168.11565897794, - 5111.357094869649, - 5056.3283428743425, - 4995.980880293344, - 4922.2593275866, - 4830.33052454413, - 4720.151523730812, - 4598.674915561736, - 4476.984175793383, - 4367.5683108359835, - 4280.72936714837, - 4221.681907311282, - 4188.415321763202, - 4173.640460456076, - 4167.735074454663, - 4161.350293419892, - 4150.317705729921, - 4136.638686769014, - 4127.730878294063, - 4134.032153359536, - 4164.253645721565, - 4222.341379008184, - 4304.763609517344, - 4400.482576447055, - 4497.085733683337, - 4584.466170322739, - 4662.439509005267, - 4745.868468747025, - 4865.759690389387, - 5067.284614625483, - 5401.714719231999, - 5913.958470283535, - 6641.265068741004, - 7588.769017948518, - 8738.778857105779 - ], - "flow:branch94_seg0:J44": [ - 2.0477280860461167, - 2.6552821059563807, - 3.328549648886337, - 4.0351818581868475, - 4.739200466850724, - 5.408017384813045, - 6.016287582344923, - 6.548572306753992, - 6.997660628064986, - 7.365919497193026, - 7.659494851458902, - 7.885335884144039, - 8.050581322381449, - 8.158300375567249, - 8.209827394941897, - 8.205468406867539, - 8.144916567321708, - 8.031442184218093, - 7.870066082892164, - 7.668549216348119, - 7.43672625252172, - 7.183476784766825, - 6.916710503594407, - 6.641925746492375, - 6.362310987251275, - 6.080002017229966, - 5.797005280972807, - 5.5164523506365235, - 5.242909146541169, - 4.981823940454739, - 4.73781215126342, - 4.513058166136352, - 4.305356084288474, - 4.1072233933841, - 3.9068438171390247, - 3.6896849092291966, - 3.4418058481583738, - 3.1529018300782186, - 2.8201299916047433, - 2.448233130650459, - 2.0505011129002217, - 1.6462423305402663, - 1.2572009339868473, - 0.903867561800748, - 0.60230175379262, - 0.3617890734000731, - 0.18359193586606343, - 0.06397626419641617, - -0.0057634067459217, - -0.03533019460151623, - -0.03307309405986201, - -0.0058882199021144995, - 0.04232634401371942, - 0.1087433687105335, - 0.1903708661331667, - 0.28327431968014677, - 0.38114753890241065, - 0.4761375340166861, - 0.5598626752672318, - 0.6251695971523326, - 0.6673665493665867, - 0.6858617244850603, - 0.6836543294463521, - 0.6661934965015233, - 0.6403491964475012, - 0.6117644106905962, - 0.5837578632314853, - 0.5567174251006056, - 0.5284095390744249, - 0.4953605808883467, - 0.4545177124394494, - 0.40472897729151747, - 0.34770505692789444, - 0.28756300144785796, - 0.23000677864877211, - 0.1805489444988205, - 0.14296728506589643, - 0.11808189647362316, - 0.10401662863025189, - 0.09674461354845584, - 0.09179173140379868, - 0.08607876852560212, - 0.07896897713281821, - 0.07262957819139873, - 0.07128179137425367, - 0.07943188497577158, - 0.10020673525580653, - 0.13360433482200434, - 0.17633953721024248, - 0.22298864162144663, - 0.26801396780237874, - 0.3090368960413478, - 0.349558207116754, - 0.4004948012683859, - 0.48021882718822995, - 0.6116893983515047, - 0.8189644042604265, - 1.122389526471956, - 1.5319262634823383, - 2.0477280860461167 - ], - "pressure:branch94_seg0:J44": [ - 8399.200820433432, - 9630.872717192879, - 10960.219679461861, - 12322.026264557682, - 13648.804337667023, - 14882.037357733201, - 15980.340014539861, - 16924.880729398374, - 17708.64382295744, - 18340.6310865664, - 18838.723611091777, - 19212.886938531108, - 19475.915129334957, - 19632.246299847095, - 19680.268529566667, - 19623.11149885492, - 19459.088205453078, - 19196.51428231949, - 18850.301630380727, - 18434.13439440684, - 17968.728430206247, - 17470.695169271956, - 16952.25329804667, - 16422.68696648132, - 15886.091309791846, - 15345.841780963257, - 14806.541212227037, - 14275.244173065754, - 13761.791303833616, - 13276.911462691383, - 12828.087668369282, - 12415.998917856625, - 12032.704485065682, - 11658.989024834367, - 11268.938159002702, - 10833.701720815927, - 10329.207615025209, - 9739.388967990903, - 9066.396392327739, - 8327.440491296544, - 7552.975439412345, - 6784.9632295603, - 6065.493344202857, - 5431.078328520421, - 4905.606363412262, - 4502.837626452811, - 4217.464717767655, - 4037.0661411350993, - 3944.796984469786, - 3919.7540721505466, - 3948.7877250550996, - 4021.1091043998026, - 4129.93876281324, - 4271.736510336246, - 4439.495811003816, - 4624.183109976801, - 4812.322153731208, - 4987.4815800383785, - 5133.843940446661, - 5239.832663926564, - 5299.217763723375, - 5313.88379036633, - 5293.708834643221, - 5249.798041372889, - 5195.492780278202, - 5140.477433610423, - 5088.205844193108, - 5036.835942204104, - 4980.379560003231, - 4911.652350404564, - 4826.165395360295, - 4723.542871359017, - 4609.709115464528, - 4494.588614300162, - 4389.52503669714, - 4304.180400588539, - 4243.808353203924, - 4207.26709675127, - 4188.370448563976, - 4178.671450410459, - 4169.726356138305, - 4157.411893662193, - 4143.129498571339, - 4133.247326560849, - 4137.053190677118, - 4162.586651784486, - 4213.774867946798, - 4287.93237639399, - 4375.491333382547, - 4465.368856549077, - 4548.207098829766, - 4623.313922987658, - 4703.481147243862, - 4816.294678102018, - 5002.645809609981, - 5309.910893565887, - 5780.173468462744, - 6449.852281755219, - 7327.476306210116, - 8399.200820433432 - ], - "flow:J44:branch95_seg0": [ - 1.3907694912940078, - 1.8055800360156002, - 2.266514482091252, - 2.7514925707505076, - 3.2358649522315712, - 3.697115311668083, - 4.117564626124827, - 4.486227669202755, - 4.797896162479795, - 5.053907116371661, - 5.258307468422339, - 5.415908288854934, - 5.531604490198349, - 5.6076216065928834, - 5.644972484636806, - 5.6438576218393015, - 5.604103137638279, - 5.527847764183574, - 5.418447586887246, - 5.281189657771925, - 5.12275337373973, - 4.949277015171888, - 4.766251796315991, - 4.57752631316187, - 4.385374888419375, - 4.1912993557149365, - 3.9966777305375585, - 3.8036272313271806, - 3.615241017283287, - 3.435238331603108, - 3.2668273729086996, - 3.1116018789554722, - 2.9681862967915955, - 2.8316201903754843, - 2.6939164502056685, - 2.545162100059112, - 2.375735307511165, - 2.178429527841009, - 1.9510278127676508, - 1.6965247823353868, - 1.4237999849776166, - 1.1459196150839466, - 0.8777711096765546, - 0.6335010782953339, - 0.4243194279146148, - 0.25682003623644234, - 0.13216071207778393, - 0.04793760840022278, - -0.0017012255105110633, - -0.02336886689198312, - -0.022877478589152216, - -0.005017132954105025, - 0.02744371802964096, - 0.07251023788762062, - 0.1281491025468565, - 0.1916832224178161, - 0.2588489737200956, - 0.3243021315448226, - 0.38228925828676735, - 0.4278401937582912, - 0.45764478050838286, - 0.4711654561318944, - 0.47032823463510776, - 0.45881664885748125, - 0.4413126086577614, - 0.4217340897657895, - 0.40245106089994215, - 0.3838269576039166, - 0.3644090697147784, - 0.3418473707334567, - 0.31402196257356874, - 0.28007708656374697, - 0.2410903106702073, - 0.1998142087864119, - 0.16012558734638407, - 0.125825396115119, - 0.0995715740868887, - 0.08203082153599699, - 0.07200341094121611, - 0.0667819065062009, - 0.06330579012628344, - 0.05940503875756136, - 0.05455625067483673, - 0.05015869591399873, - 0.049050158021041755, - 0.05432616339821083, - 0.06818843826382559, - 0.09073775658168208, - 0.11983189727802532, - 0.15180073648387013, - 0.18283119193359543, - 0.21117613009708583, - 0.2390388388855943, - 0.2736771916259966, - 0.32748116518487413, - 0.4160916766842236, - 0.5560510151046248, - 0.7614564275733297, - 1.0395458983443846, - 1.3907694912940078 - ], - "pressure:J44:branch95_seg0": [ - 8399.200820433432, - 9630.872717192879, - 10960.219679461861, - 12322.026264557682, - 13648.804337667023, - 14882.037357733201, - 15980.340014539861, - 16924.880729398374, - 17708.64382295744, - 18340.6310865664, - 18838.723611091777, - 19212.886938531108, - 19475.915129334957, - 19632.246299847095, - 19680.268529566667, - 19623.11149885492, - 19459.088205453078, - 19196.51428231949, - 18850.301630380727, - 18434.13439440684, - 17968.728430206247, - 17470.695169271956, - 16952.25329804667, - 16422.68696648132, - 15886.091309791846, - 15345.841780963257, - 14806.541212227037, - 14275.244173065754, - 13761.791303833616, - 13276.911462691383, - 12828.087668369282, - 12415.998917856625, - 12032.704485065682, - 11658.989024834367, - 11268.938159002702, - 10833.701720815927, - 10329.207615025209, - 9739.388967990903, - 9066.396392327739, - 8327.440491296544, - 7552.975439412345, - 6784.9632295603, - 6065.493344202857, - 5431.078328520421, - 4905.606363412262, - 4502.837626452811, - 4217.464717767655, - 4037.0661411350993, - 3944.796984469786, - 3919.7540721505466, - 3948.7877250550996, - 4021.1091043998026, - 4129.93876281324, - 4271.736510336246, - 4439.495811003816, - 4624.183109976801, - 4812.322153731208, - 4987.4815800383785, - 5133.843940446661, - 5239.832663926564, - 5299.217763723375, - 5313.88379036633, - 5293.708834643221, - 5249.798041372889, - 5195.492780278202, - 5140.477433610423, - 5088.205844193108, - 5036.835942204104, - 4980.379560003231, - 4911.652350404564, - 4826.165395360295, - 4723.542871359017, - 4609.709115464528, - 4494.588614300162, - 4389.52503669714, - 4304.180400588539, - 4243.808353203924, - 4207.26709675127, - 4188.370448563976, - 4178.671450410459, - 4169.726356138305, - 4157.411893662193, - 4143.129498571339, - 4133.247326560849, - 4137.053190677118, - 4162.586651784486, - 4213.774867946798, - 4287.93237639399, - 4375.491333382547, - 4465.368856549077, - 4548.207098829766, - 4623.313922987658, - 4703.481147243862, - 4816.294678102018, - 5002.645809609981, - 5309.910893565887, - 5780.173468462744, - 6449.852281755219, - 7327.476306210116, - 8399.200820433432 - ], - "flow:J44:branch115_seg0": [ - 0.6569585947521088, - 0.8497020699407807, - 1.062035166795085, - 1.2836892874363404, - 1.503335514619152, - 1.7109020731449616, - 1.8987229562200956, - 2.062344637551236, - 2.1997644655851913, - 2.312012380821364, - 2.4011873830365613, - 2.4694275952891047, - 2.5189768321831036, - 2.5506787689743664, - 2.5648549103050895, - 2.5616107850282392, - 2.5408134296834266, - 2.5035944200345215, - 2.451618496004917, - 2.3873595585761938, - 2.3139728787819887, - 2.2341997695949356, - 2.1504587072784154, - 2.0643994333305042, - 1.9769360988319002, - 1.888702661515028, - 1.800327550435249, - 1.7128251193093436, - 1.627668129257882, - 1.5465856088516308, - 1.4709847783547219, - 1.4014562871808807, - 1.3371697874968775, - 1.2756032030086148, - 1.2129273669333571, - 1.1445228091700852, - 1.0660705406472086, - 0.9744723022372088, - 0.8691021788370917, - 0.7517083483150718, - 0.6267011279226052, - 0.5003227154563193, - 0.37942982431029265, - 0.27036648350541426, - 0.17798232587800503, - 0.10496903716363078, - 0.05143122378827952, - 0.016038655796193395, - -0.004062181235410636, - -0.011961327709533105, - -0.0101956154707098, - -0.0008710869480094747, - 0.014882625984078465, - 0.03623313082291288, - 0.06222176358631025, - 0.0915910972623307, - 0.12229856518231516, - 0.1518354024718635, - 0.17757341698046444, - 0.1973294033940413, - 0.20972176885820384, - 0.21469626835316585, - 0.2133260948112442, - 0.2073768476440421, - 0.1990365877897399, - 0.1900303209248067, - 0.18130680233154303, - 0.17289046749668902, - 0.1640004693596466, - 0.1535132101548901, - 0.14049574986588065, - 0.12465189072777044, - 0.10661474625768717, - 0.08774879266144607, - 0.06988119130238807, - 0.054723548383701484, - 0.04339571097900773, - 0.036051074937626174, - 0.03201321768903578, - 0.029962707042254934, - 0.028485941277515237, - 0.026673729768040767, - 0.024412726457981475, - 0.022470882277400003, - 0.022231633353211926, - 0.025105721577560757, - 0.032018296991980916, - 0.04286657824032228, - 0.05650763993221716, - 0.0711879051375765, - 0.08518277586878333, - 0.09786076594426199, - 0.11051936823115975, - 0.12681760964238936, - 0.15273766200335576, - 0.19559772166728107, - 0.26291338915580165, - 0.3609330988986262, - 0.4923803651379539, - 0.6569585947521088 - ], - "pressure:J44:branch115_seg0": [ - 8399.200820433432, - 9630.872717192879, - 10960.219679461861, - 12322.026264557682, - 13648.804337667023, - 14882.037357733201, - 15980.340014539861, - 16924.880729398374, - 17708.64382295744, - 18340.6310865664, - 18838.723611091777, - 19212.886938531108, - 19475.915129334957, - 19632.246299847095, - 19680.268529566667, - 19623.11149885492, - 19459.088205453078, - 19196.51428231949, - 18850.301630380727, - 18434.13439440684, - 17968.728430206247, - 17470.695169271956, - 16952.25329804667, - 16422.68696648132, - 15886.091309791846, - 15345.841780963257, - 14806.541212227037, - 14275.244173065754, - 13761.791303833616, - 13276.911462691383, - 12828.087668369282, - 12415.998917856625, - 12032.704485065682, - 11658.989024834367, - 11268.938159002702, - 10833.701720815927, - 10329.207615025209, - 9739.388967990903, - 9066.396392327739, - 8327.440491296544, - 7552.975439412345, - 6784.9632295603, - 6065.493344202857, - 5431.078328520421, - 4905.606363412262, - 4502.837626452811, - 4217.464717767655, - 4037.0661411350993, - 3944.796984469786, - 3919.7540721505466, - 3948.7877250550996, - 4021.1091043998026, - 4129.93876281324, - 4271.736510336246, - 4439.495811003816, - 4624.183109976801, - 4812.322153731208, - 4987.4815800383785, - 5133.843940446661, - 5239.832663926564, - 5299.217763723375, - 5313.88379036633, - 5293.708834643221, - 5249.798041372889, - 5195.492780278202, - 5140.477433610423, - 5088.205844193108, - 5036.835942204104, - 4980.379560003231, - 4911.652350404564, - 4826.165395360295, - 4723.542871359017, - 4609.709115464528, - 4494.588614300162, - 4389.52503669714, - 4304.180400588539, - 4243.808353203924, - 4207.26709675127, - 4188.370448563976, - 4178.671450410459, - 4169.726356138305, - 4157.411893662193, - 4143.129498571339, - 4133.247326560849, - 4137.053190677118, - 4162.586651784486, - 4213.774867946798, - 4287.93237639399, - 4375.491333382547, - 4465.368856549077, - 4548.207098829766, - 4623.313922987658, - 4703.481147243862, - 4816.294678102018, - 5002.645809609981, - 5309.910893565887, - 5780.173468462744, - 6449.852281755219, - 7327.476306210116, - 8399.200820433432 - ], - "flow:branch95_seg0:J45": [ - 1.3897663188708451, - 1.8044644534631606, - 2.26533708448417, - 2.7503217722086024, - 3.2347530085851823, - 3.6961022092032696, - 4.116677614901886, - 4.485485860287658, - 4.797283984591912, - 5.053419952986704, - 5.257933643351097, - 5.415631585072565, - 5.531424529840153, - 5.607532520395675, - 5.64497567917615, - 5.643953769312938, - 5.604287920263098, - 5.528114936339305, - 5.418780129735372, - 5.281572867560993, - 5.123173439219664, - 4.949718151224962, - 4.766705937695266, - 4.5779880994438145, - 4.38584080411321, - 4.191767166054481, - 3.9971419730829503, - 3.8040803508624967, - 3.6156736673452947, - 3.4356430072729256, - 3.2671982994647246, - 3.1119436073484263, - 2.9685109813541395, - 2.8319459620872722, - 2.694268798925849, - 2.5455655593267985, - 2.3762071489036987, - 2.178975669581925, - 1.9516428535409935, - 1.6971846098670782, - 1.4244726583290537, - 1.1465698017392885, - 0.8783617921778847, - 0.6340028469331043, - 0.42472224753089227, - 0.2571166700518858, - 0.13235628102542638, - 0.048052841044841525, - -0.0016539931306992347, - -0.02337383174307938, - -0.022921573112432363, - -0.005098174465024134, - 0.027334405455017734, - 0.07237609023851864, - 0.12799398522330385, - 0.19151999782179369, - 0.2586897632770116, - 0.3241608022678053, - 0.38217848979090596, - 0.42776922308526577, - 0.45761304925149454, - 0.4711690413537525, - 0.47035834018322, - 0.4588604530480807, - 0.44136093804757337, - 0.42178085612330074, - 0.4024950819184907, - 0.38387240939861267, - 0.36446220108926625, - 0.3419140503960598, - 0.3141036170030493, - 0.2801717571551952, - 0.2411914395284722, - 0.19991108778784547, - 0.16020869301393842, - 0.12588843843306813, - 0.09961315023484878, - 0.08205269538391718, - 0.0720143868587404, - 0.06678941786317806, - 0.06331459993852355, - 0.05941709046579833, - 0.054567977583707836, - 0.05016272899326651, - 0.04903859482476529, - 0.05429280269059552, - 0.06813360278835806, - 0.09066640118805311, - 0.11975317766661062, - 0.1517252297950639, - 0.1827638152054177, - 0.21111200035386996, - 0.23896044356032706, - 0.27355471397558345, - 0.32727542291514466, - 0.4157576893003908, - 0.5555624498011157, - 0.7607890031808755, - 1.0386901871856802, - 1.3897663188708451 - ], - "pressure:branch95_seg0:J45": [ - 8199.227920919759, - 9396.23160357296, - 10699.0161508019, - 12044.17041616362, - 13364.468683674671, - 14600.668043670337, - 15709.488078786993, - 16668.96929863255, - 17469.651276744105, - 18119.161859181528, - 18633.281542533077, - 19022.73233909105, - 19300.589022375403, - 19471.68581229283, - 19535.699535298492, - 19495.08174730104, - 19348.395883417368, - 19103.159134680045, - 18772.619193680475, - 18370.52547218091, - 17916.812585456228, - 17428.091256549757, - 16917.337626695986, - 16394.196187812442, - 15863.363626616207, - 15328.408731246302, - 14793.660045050252, - 14265.758899707516, - 13754.08390803911, - 13269.177942838318, - 12818.86030659841, - 12404.948318980327, - 12020.789582065141, - 11648.926116315764, - 11264.785207656572, - 10840.150651052, - 10350.39076801384, - 9778.34640923463, - 9123.74717753798, - 8401.006563026764, - 7638.56204775063, - 6876.395585469416, - 6155.961867418207, - 5514.307243371096, - 4977.215331166178, - 4559.688818763011, - 4258.99917840124, - 4064.492275203919, - 3959.6749281269526, - 3924.52567809185, - 3945.154562518664, - 4010.1137128700925, - 4112.4489045583105, - 4248.046398369729, - 4410.362704288793, - 4590.964025699604, - 4776.948434073726, - 4952.500838103437, - 5101.887932264932, - 5213.007066762275, - 5278.741231822432, - 5299.997085614532, - 5285.2720114338435, - 5245.248907706739, - 5193.08806168705, - 5138.757401873575, - 5086.586691541805, - 5035.598078880887, - 4980.431480137598, - 4914.147164141374, - 4831.8808168951755, - 4732.6630036311435, - 4621.492603774315, - 4507.539788720186, - 4401.882623595983, - 4314.368971843516, - 4250.845926953397, - 4211.052020075974, - 4189.717671433393, - 4178.720028876233, - 4169.664937780343, - 4157.902121857959, - 4143.977720969128, - 4133.470210392948, - 4135.183013658992, - 4157.2422190673615, - 4204.216817502374, - 4274.314276070204, - 4359.090760570519, - 4447.850243065363, - 4530.926899362393, - 4606.387962093362, - 4684.923698818821, - 4791.681653657201, - 4965.25395399901, - 5251.474932821143, - 5693.185601376522, - 6327.2664135206705, - 7165.699496532789, - 8199.227920919759 - ], - "flow:J45:branch96_seg0": [ - 0.7340181714978201, - 0.9533211547914917, - 1.1971789417833205, - 1.4539308781553069, - 1.710514327852626, - 1.954983754366782, - 2.177943717096394, - 2.373538478096174, - 2.5389534136928837, - 2.6748832346397307, - 2.783450057432568, - 2.8671990182989915, - 2.9287374045187384, - 2.9692485574579117, - 2.9892834806160873, - 2.9889475372884804, - 2.96814679803345, - 2.9280018028939296, - 2.870270887605488, - 2.797751706335492, - 2.7139751732701143, - 2.622191964722777, - 2.525322373348317, - 2.425412659486669, - 2.3236759561273073, - 2.2209116999714347, - 2.1178460669973056, - 2.0155950794026665, - 1.9157909349527875, - 1.8204028040883424, - 1.7311341560449733, - 1.6488474502411516, - 1.5728340492868067, - 1.5004887560841271, - 1.427601495250195, - 1.3489285469998868, - 1.259364173125183, - 1.1550703568144942, - 1.0348387662335914, - 0.9002137300382871, - 0.7558668678538285, - 0.6086964669432192, - 0.4665788407163725, - 0.33701837577390503, - 0.2259859696082071, - 0.13699415752707222, - 0.07069303770343129, - 0.025840821038479622, - -0.0006597760436054448, - -0.01230165142055051, - -0.012171603494620025, - -0.002822063770582496, - 0.014280768149584552, - 0.03807034426725821, - 0.06747220431241327, - 0.10108049335331887, - 0.13664259062435527, - 0.17133471441957746, - 0.2021097998400231, - 0.22632781627923632, - 0.24221883397926627, - 0.24948328722413732, - 0.2491250239273913, - 0.2430849530733154, - 0.23384263801197405, - 0.2234793840426593, - 0.21326268702620677, - 0.2033987332220981, - 0.19312740186357055, - 0.18120705758170788, - 0.16650868636560368, - 0.14857029401637134, - 0.12794951241576183, - 0.10609300395048885, - 0.08505127504246518, - 0.06684140592766316, - 0.05288112436501058, - 0.04353526021473327, - 0.038183603440967946, - 0.035396059243567965, - 0.03355040605015135, - 0.03149026206142612, - 0.028925493674905257, - 0.026585533492279777, - 0.02596708682933072, - 0.028711017963847667, - 0.03599421155362248, - 0.04788366368702783, - 0.06325888584046672, - 0.08018291495319431, - 0.0966301579697827, - 0.11165583929442503, - 0.126396558866604, - 0.14466213821101845, - 0.172983868429375, - 0.21962612121710734, - 0.29336890428461776, - 0.4016886740224141, - 0.5484645098578582, - 0.7340181714978201 - ], - "pressure:J45:branch96_seg0": [ - 8199.227920919759, - 9396.23160357296, - 10699.0161508019, - 12044.17041616362, - 13364.468683674671, - 14600.668043670337, - 15709.488078786993, - 16668.96929863255, - 17469.651276744105, - 18119.161859181528, - 18633.281542533077, - 19022.73233909105, - 19300.589022375403, - 19471.68581229283, - 19535.699535298492, - 19495.08174730104, - 19348.395883417368, - 19103.159134680045, - 18772.619193680475, - 18370.52547218091, - 17916.812585456228, - 17428.091256549757, - 16917.337626695986, - 16394.196187812442, - 15863.363626616207, - 15328.408731246302, - 14793.660045050252, - 14265.758899707516, - 13754.08390803911, - 13269.177942838318, - 12818.86030659841, - 12404.948318980327, - 12020.789582065141, - 11648.926116315764, - 11264.785207656572, - 10840.150651052, - 10350.39076801384, - 9778.34640923463, - 9123.74717753798, - 8401.006563026764, - 7638.56204775063, - 6876.395585469416, - 6155.961867418207, - 5514.307243371096, - 4977.215331166178, - 4559.688818763011, - 4258.99917840124, - 4064.492275203919, - 3959.6749281269526, - 3924.52567809185, - 3945.154562518664, - 4010.1137128700925, - 4112.4489045583105, - 4248.046398369729, - 4410.362704288793, - 4590.964025699604, - 4776.948434073726, - 4952.500838103437, - 5101.887932264932, - 5213.007066762275, - 5278.741231822432, - 5299.997085614532, - 5285.2720114338435, - 5245.248907706739, - 5193.08806168705, - 5138.757401873575, - 5086.586691541805, - 5035.598078880887, - 4980.431480137598, - 4914.147164141374, - 4831.8808168951755, - 4732.6630036311435, - 4621.492603774315, - 4507.539788720186, - 4401.882623595983, - 4314.368971843516, - 4250.845926953397, - 4211.052020075974, - 4189.717671433393, - 4178.720028876233, - 4169.664937780343, - 4157.902121857959, - 4143.977720969128, - 4133.470210392948, - 4135.183013658992, - 4157.2422190673615, - 4204.216817502374, - 4274.314276070204, - 4359.090760570519, - 4447.850243065363, - 4530.926899362393, - 4606.387962093362, - 4684.923698818821, - 4791.681653657201, - 4965.25395399901, - 5251.474932821143, - 5693.185601376522, - 6327.2664135206705, - 7165.699496532789, - 8199.227920919759 - ], - "flow:J45:branch111_seg0": [ - 0.6557481473730251, - 0.8511432986716688, - 1.0681581427008502, - 1.2963908940532956, - 1.5242386807325565, - 1.7411184548364875, - 1.9387338978054915, - 2.111947382191483, - 2.2583305708990284, - 2.3785367183469734, - 2.474483585918529, - 2.548432566773574, - 2.6026871253214137, - 2.638283962937764, - 2.6556921985600623, - 2.655006232024458, - 2.6361411222296467, - 2.6001131334453755, - 2.548509242129883, - 2.4838211612255003, - 2.409198265949548, - 2.327526186502185, - 2.241383564346949, - 2.1525754399571455, - 2.0621648479859025, - 1.9708554660830482, - 1.879295906085645, - 1.7884852714598307, - 1.6998827323925072, - 1.6152402031845834, - 1.536064143419751, - 1.4630961571072745, - 1.395676932067333, - 1.3314572060031455, - 1.2666673036756537, - 1.1966370123269112, - 1.1168429757785157, - 1.0239053127674307, - 0.9168040873074021, - 0.7969708798287909, - 0.6686057904752253, - 0.5378733347960692, - 0.41178295146151217, - 0.29698447115919924, - 0.19873627792268517, - 0.1201225125248137, - 0.061663243321995125, - 0.022212020006361917, - -0.00099421708709379, - -0.011072180322528873, - -0.010749969617812334, - -0.0022761106944416383, - 0.013053637305433182, - 0.034305745971260425, - 0.06052178091089056, - 0.09043950446847482, - 0.12204717265265629, - 0.15282608784822788, - 0.1800686899508828, - 0.20144140680602948, - 0.21539421527222832, - 0.2216857541296152, - 0.22123331625582876, - 0.2157754999747653, - 0.20751830003559935, - 0.19830147208064144, - 0.18923239489228397, - 0.18047367617651455, - 0.17133479922569572, - 0.16070699281435197, - 0.14759493063744558, - 0.13160146313882398, - 0.11324192711271037, - 0.09381808383735664, - 0.07515741797147321, - 0.05904703250540496, - 0.04673202586983821, - 0.038517435169183906, - 0.03383078341777246, - 0.0313933586196101, - 0.029764193888372224, - 0.027926828404372207, - 0.025642483908802575, - 0.023577195500986733, - 0.023071507995434573, - 0.025581784726747846, - 0.032139391234735575, - 0.04278273750102528, - 0.05649429182614389, - 0.07154231484186961, - 0.08613365723563501, - 0.09945616105944492, - 0.11256388469372301, - 0.12889257576456503, - 0.15429155448576964, - 0.19613156808328355, - 0.26219354551649793, - 0.35910032915846135, - 0.49022567732782213, - 0.6557481473730251 - ], - "pressure:J45:branch111_seg0": [ - 8199.227920919759, - 9396.23160357296, - 10699.0161508019, - 12044.17041616362, - 13364.468683674671, - 14600.668043670337, - 15709.488078786993, - 16668.96929863255, - 17469.651276744105, - 18119.161859181528, - 18633.281542533077, - 19022.73233909105, - 19300.589022375403, - 19471.68581229283, - 19535.699535298492, - 19495.08174730104, - 19348.395883417368, - 19103.159134680045, - 18772.619193680475, - 18370.52547218091, - 17916.812585456228, - 17428.091256549757, - 16917.337626695986, - 16394.196187812442, - 15863.363626616207, - 15328.408731246302, - 14793.660045050252, - 14265.758899707516, - 13754.08390803911, - 13269.177942838318, - 12818.86030659841, - 12404.948318980327, - 12020.789582065141, - 11648.926116315764, - 11264.785207656572, - 10840.150651052, - 10350.39076801384, - 9778.34640923463, - 9123.74717753798, - 8401.006563026764, - 7638.56204775063, - 6876.395585469416, - 6155.961867418207, - 5514.307243371096, - 4977.215331166178, - 4559.688818763011, - 4258.99917840124, - 4064.492275203919, - 3959.6749281269526, - 3924.52567809185, - 3945.154562518664, - 4010.1137128700925, - 4112.4489045583105, - 4248.046398369729, - 4410.362704288793, - 4590.964025699604, - 4776.948434073726, - 4952.500838103437, - 5101.887932264932, - 5213.007066762275, - 5278.741231822432, - 5299.997085614532, - 5285.2720114338435, - 5245.248907706739, - 5193.08806168705, - 5138.757401873575, - 5086.586691541805, - 5035.598078880887, - 4980.431480137598, - 4914.147164141374, - 4831.8808168951755, - 4732.6630036311435, - 4621.492603774315, - 4507.539788720186, - 4401.882623595983, - 4314.368971843516, - 4250.845926953397, - 4211.052020075974, - 4189.717671433393, - 4178.720028876233, - 4169.664937780343, - 4157.902121857959, - 4143.977720969128, - 4133.470210392948, - 4135.183013658992, - 4157.2422190673615, - 4204.216817502374, - 4274.314276070204, - 4359.090760570519, - 4447.850243065363, - 4530.926899362393, - 4606.387962093362, - 4684.923698818821, - 4791.681653657201, - 4965.25395399901, - 5251.474932821143, - 5693.185601376522, - 6327.2664135206705, - 7165.699496532789, - 8199.227920919759 - ], - "flow:branch99_seg0:J46": [ - 1.6981352660163684, - 2.1685282634190877, - 2.670304811955378, - 3.17733692511152, - 3.663142948279887, - 4.106447340825758, - 4.493287944976981, - 4.818144588018886, - 5.08092761964737, - 5.287387533040496, - 5.444884330989389, - 5.55865070952272, - 5.6336390415320725, - 5.670851454825024, - 5.669867850950981, - 5.630926755408732, - 5.553598974726212, - 5.441655880989205, - 5.300136262487957, - 5.135338836081224, - 4.955254848679846, - 4.765753285457285, - 4.5715514322985324, - 4.375376632847343, - 4.178223791126081, - 3.98095678624712, - 3.7849273469249196, - 3.5927774754990125, - 3.4083244856808803, - 3.235676325039709, - 3.077556875767547, - 2.9339789825169063, - 2.8011726254688267, - 2.671124819538059, - 2.5332877831398632, - 2.376192402129425, - 2.190519621010833, - 1.9709721726174492, - 1.719319310643377, - 1.443184522145578, - 1.1559118377356608, - 0.8742664581868904, - 0.6147563503996237, - 0.391036312098546, - 0.21176470156387509, - 0.08037088675588458, - -0.006687910638087542, - -0.05489942187839411, - -0.0725174455388959, - -0.06736638309517444, - -0.044610522485003384, - -0.008264419592331568, - 0.040023453040595965, - 0.09905337153537244, - 0.16652667238010224, - 0.2390867367466385, - 0.3113549608377867, - 0.37700796065669406, - 0.4300382305275572, - 0.46615656142173184, - 0.48356930112087304, - 0.4837992562674651, - 0.47105471186727016, - 0.45039206620799466, - 0.4272704513655961, - 0.40518828832260617, - 0.385249215601042, - 0.36625077913587656, - 0.3453608700838742, - 0.3195261885152631, - 0.28688838668084415, - 0.24755862498599435, - 0.20420446015472224, - 0.16094805119074237, - 0.12249131965428302, - 0.09256329848002762, - 0.07290520296999488, - 0.06259276601210255, - 0.05882786318256992, - 0.05783079995395118, - 0.05620547200867958, - 0.0524886626587117, - 0.047503037081170894, - 0.04415623522488073, - 0.046385658774078777, - 0.05747693200955459, - 0.07879928721095181, - 0.10886248610812625, - 0.1436191373820439, - 0.17826473457206995, - 0.20899458178199248, - 0.23581030915767096, - 0.26424973047293104, - 0.3057659533669975, - 0.3770124018420165, - 0.4964471597074302, - 0.6808430615641993, - 0.9429558983902077, - 1.2840166963021802, - 1.6981352660163684 - ], - "pressure:branch99_seg0:J46": [ - 9585.80444406688, - 11027.716186326288, - 12521.060820104994, - 13989.48004047372, - 15363.338834441884, - 16586.98330429306, - 17628.792142415125, - 18487.90830270668, - 19171.48567133446, - 19695.180780965555, - 20091.008169309745, - 20364.89099329194, - 20528.257385995294, - 20584.89293318255, - 20525.63363987589, - 20358.320570777534, - 20080.354218064, - 19704.002566408482, - 19254.363539470593, - 18744.785609578863, - 18200.410956231954, - 17638.22289041604, - 17066.11265839466, - 16491.530273785444, - 15915.239183973523, - 15339.460334925723, - 14770.319890373843, - 14217.098341861078, - 13692.139110224385, - 13207.099315159077, - 12767.494371539999, - 12367.21820730977, - 11991.0249994865, - 11609.328244002805, - 11188.242867806193, - 10694.966530121967, - 10108.364112811934, - 9418.196615487774, - 8640.029850527604, - 7807.484659643547, - 6962.4328843784915, - 6158.742756704009, - 5442.94974424255, - 4849.137796798034, - 4390.924231614149, - 4075.5464731070065, - 3882.9996163073392, - 3790.5482692649075, - 3779.2140894658633, - 3822.1903885567713, - 3910.042817083853, - 4035.285194478789, - 4191.506818493621, - 4378.409895711911, - 4585.915502312726, - 4801.471237145951, - 5008.465457115039, - 5186.728866884812, - 5319.912584093491, - 5399.437645127837, - 5424.2491059545555, - 5401.489077067093, - 5349.4222784411195, - 5281.781872037696, - 5212.983607626126, - 5151.612306107579, - 5096.367479466944, - 5040.618368107292, - 4974.909322605652, - 4890.6411282337085, - 4785.398445563635, - 4662.094658262648, - 4531.895056679182, - 4409.043031392007, - 4306.437996804724, - 4232.800109504058, - 4190.1326342466255, - 4172.339280308396, - 4167.933779921313, - 4166.693886392639, - 4159.65027028381, - 4145.555154115848, - 4130.600296122557, - 4125.576301838986, - 4142.521460558496, - 4189.054166464669, - 4265.439069676001, - 4364.131641411603, - 4469.020612860541, - 4566.761580607431, - 4649.812654479745, - 4724.45120419098, - 4815.519267747935, - 4964.695077191236, - 5226.373433778618, - 5657.257310987249, - 6295.398720148946, - 7175.285477230954, - 8285.505709864088, - 9585.80444406688 - ], - "flow:J46:branch100_seg0": [ - 0.6244421009073824, - 0.7968063117210489, - 0.9803772420121755, - 1.1655950727405229, - 1.3427993393782658, - 1.5042667475569245, - 1.6449694696571997, - 1.7629793030759398, - 1.8583269437645542, - 1.9331502161754441, - 1.9901721966082906, - 2.0312769645235385, - 2.058261600708924, - 2.071470005995237, - 2.0707208646925888, - 2.0561165987517507, - 2.027495676196969, - 1.9862643604639727, - 1.934292478248383, - 1.8738803059042946, - 1.8079619681813857, - 1.7386669667122259, - 1.6676983586030436, - 1.5960367163028735, - 1.5240284138242604, - 1.4519862566956376, - 1.3804109043639072, - 1.310278942941601, - 1.2429955071048748, - 1.1800627200317269, - 1.1224622189620328, - 1.0701681521105826, - 1.0217686368222922, - 0.974295163621114, - 0.9238697034956447, - 0.8662966476977108, - 0.7981964510062356, - 0.717673607540573, - 0.6254412409781933, - 0.5243496010160852, - 0.41931970848120304, - 0.31651084950570785, - 0.22195086420302867, - 0.140598133625125, - 0.0755591652549678, - 0.028044282538585045, - -0.0033099916638090784, - -0.020537061124822245, - -0.026663585518331454, - -0.024553578388084675, - -0.01606544915363012, - -0.0026485487604635425, - 0.015108572515625735, - 0.03677838452986123, - 0.06150854055742128, - 0.08805944092304085, - 0.11445114977835673, - 0.13836293552360968, - 0.1576044765890682, - 0.1706270227642134, - 0.17680248695145942, - 0.17671497912621734, - 0.1719324869156917, - 0.16430855591810603, - 0.1558374897107195, - 0.1477814681570818, - 0.14051819936205642, - 0.13358565909409412, - 0.1259346311073562, - 0.11644768291335661, - 0.10445917048623138, - 0.09002819872106285, - 0.07415396820163772, - 0.058357668900358206, - 0.044360244936957796, - 0.03351387238823639, - 0.02643502488550225, - 0.0227607704803595, - 0.021448374083686748, - 0.021110922457598658, - 0.020511451826634376, - 0.019134108319858723, - 0.017302795102234845, - 0.016099393978182656, - 0.016971233221372003, - 0.021111797670089902, - 0.029000529958068705, - 0.04006733837868437, - 0.05280717044426236, - 0.06545916489122197, - 0.07664622210895584, - 0.08640649999825951, - 0.0968183629239337, - 0.11212357948752445, - 0.13845502021810313, - 0.18257539372332504, - 0.25058107694414367, - 0.3471001015947517, - 0.4724700756672985, - 0.6244421009073824 - ], - "pressure:J46:branch100_seg0": [ - 9585.80444406688, - 11027.716186326288, - 12521.060820104994, - 13989.48004047372, - 15363.338834441884, - 16586.98330429306, - 17628.792142415125, - 18487.90830270668, - 19171.48567133446, - 19695.180780965555, - 20091.008169309745, - 20364.89099329194, - 20528.257385995294, - 20584.89293318255, - 20525.63363987589, - 20358.320570777534, - 20080.354218064, - 19704.002566408482, - 19254.363539470593, - 18744.785609578863, - 18200.410956231954, - 17638.22289041604, - 17066.11265839466, - 16491.530273785444, - 15915.239183973523, - 15339.460334925723, - 14770.319890373843, - 14217.098341861078, - 13692.139110224385, - 13207.099315159077, - 12767.494371539999, - 12367.21820730977, - 11991.0249994865, - 11609.328244002805, - 11188.242867806193, - 10694.966530121967, - 10108.364112811934, - 9418.196615487774, - 8640.029850527604, - 7807.484659643547, - 6962.4328843784915, - 6158.742756704009, - 5442.94974424255, - 4849.137796798034, - 4390.924231614149, - 4075.5464731070065, - 3882.9996163073392, - 3790.5482692649075, - 3779.2140894658633, - 3822.1903885567713, - 3910.042817083853, - 4035.285194478789, - 4191.506818493621, - 4378.409895711911, - 4585.915502312726, - 4801.471237145951, - 5008.465457115039, - 5186.728866884812, - 5319.912584093491, - 5399.437645127837, - 5424.2491059545555, - 5401.489077067093, - 5349.4222784411195, - 5281.781872037696, - 5212.983607626126, - 5151.612306107579, - 5096.367479466944, - 5040.618368107292, - 4974.909322605652, - 4890.6411282337085, - 4785.398445563635, - 4662.094658262648, - 4531.895056679182, - 4409.043031392007, - 4306.437996804724, - 4232.800109504058, - 4190.1326342466255, - 4172.339280308396, - 4167.933779921313, - 4166.693886392639, - 4159.65027028381, - 4145.555154115848, - 4130.600296122557, - 4125.576301838986, - 4142.521460558496, - 4189.054166464669, - 4265.439069676001, - 4364.131641411603, - 4469.020612860541, - 4566.761580607431, - 4649.812654479745, - 4724.45120419098, - 4815.519267747935, - 4964.695077191236, - 5226.373433778618, - 5657.257310987249, - 6295.398720148946, - 7175.285477230954, - 8285.505709864088, - 9585.80444406688 - ], - "flow:J46:branch143_seg0": [ - 1.0736931651089865, - 1.3717219516980388, - 1.6899275699432021, - 2.0117418523709976, - 2.3203436089016214, - 2.6021805932688338, - 2.84831847531978, - 3.055165284942946, - 3.2226006758828154, - 3.354237316865053, - 3.454712134381098, - 3.5273737449991804, - 3.575377440823149, - 3.5993814488297864, - 3.5991469862583907, - 3.574810156656981, - 3.5261032985292426, - 3.4553915205252332, - 3.365843784239575, - 3.261458530176929, - 3.14729288049846, - 3.027086318745058, - 2.9038530736954886, - 2.7793399165444703, - 2.6541953773018223, - 2.5289705295514833, - 2.4045164425610133, - 2.282498532557412, - 2.1653289785760053, - 2.0556136050079825, - 1.955094656805514, - 1.8638108304063228, - 1.779403988646535, - 1.696829655916944, - 1.6094180796442186, - 1.5098957544317144, - 1.3923231700045977, - 1.2532985650768762, - 1.093878069665184, - 0.9188349211294924, - 0.7365921292544577, - 0.5577556086811825, - 0.392805486196595, - 0.25043817847342104, - 0.13620553630890728, - 0.05232660421729952, - -0.0033779189742784627, - -0.03436236075357186, - -0.04585386002056444, - -0.04281280470708977, - -0.028545073331373263, - -0.005615870831868026, - 0.02491488052497023, - 0.06227498700551122, - 0.10501813182268094, - 0.15102729582359767, - 0.19690381105942995, - 0.23864502513308442, - 0.27243375393848895, - 0.2955295386575186, - 0.3067668141694137, - 0.30708427714124786, - 0.29912222495157853, - 0.2860835102898886, - 0.2714329616548768, - 0.2574068201655243, - 0.24473101623898563, - 0.23266512004178252, - 0.21942623897651808, - 0.2030785056019065, - 0.18242921619461275, - 0.15753042626493155, - 0.13005049195308452, - 0.10259038229038416, - 0.07813107471732522, - 0.05904942609179123, - 0.046470178084492636, - 0.03983199553174304, - 0.03737948909888317, - 0.0367198774963525, - 0.035694020182045226, - 0.03335455433885298, - 0.03020024197893604, - 0.02805684124669807, - 0.02941442555270678, - 0.036365134339464686, - 0.049798757252883095, - 0.06879514772944188, - 0.09081196693778157, - 0.11280556968084798, - 0.13234835967303665, - 0.14940380915941143, - 0.1674313675489974, - 0.1936423738794731, - 0.23855738162391335, - 0.3138717659841052, - 0.43026198462005555, - 0.595855796795456, - 0.8115466206348818, - 1.0736931651089865 - ], - "pressure:J46:branch143_seg0": [ - 9585.80444406688, - 11027.716186326288, - 12521.060820104994, - 13989.48004047372, - 15363.338834441884, - 16586.98330429306, - 17628.792142415125, - 18487.90830270668, - 19171.48567133446, - 19695.180780965555, - 20091.008169309745, - 20364.89099329194, - 20528.257385995294, - 20584.89293318255, - 20525.63363987589, - 20358.320570777534, - 20080.354218064, - 19704.002566408482, - 19254.363539470593, - 18744.785609578863, - 18200.410956231954, - 17638.22289041604, - 17066.11265839466, - 16491.530273785444, - 15915.239183973523, - 15339.460334925723, - 14770.319890373843, - 14217.098341861078, - 13692.139110224385, - 13207.099315159077, - 12767.494371539999, - 12367.21820730977, - 11991.0249994865, - 11609.328244002805, - 11188.242867806193, - 10694.966530121967, - 10108.364112811934, - 9418.196615487774, - 8640.029850527604, - 7807.484659643547, - 6962.4328843784915, - 6158.742756704009, - 5442.94974424255, - 4849.137796798034, - 4390.924231614149, - 4075.5464731070065, - 3882.9996163073392, - 3790.5482692649075, - 3779.2140894658633, - 3822.1903885567713, - 3910.042817083853, - 4035.285194478789, - 4191.506818493621, - 4378.409895711911, - 4585.915502312726, - 4801.471237145951, - 5008.465457115039, - 5186.728866884812, - 5319.912584093491, - 5399.437645127837, - 5424.2491059545555, - 5401.489077067093, - 5349.4222784411195, - 5281.781872037696, - 5212.983607626126, - 5151.612306107579, - 5096.367479466944, - 5040.618368107292, - 4974.909322605652, - 4890.6411282337085, - 4785.398445563635, - 4662.094658262648, - 4531.895056679182, - 4409.043031392007, - 4306.437996804724, - 4232.800109504058, - 4190.1326342466255, - 4172.339280308396, - 4167.933779921313, - 4166.693886392639, - 4159.65027028381, - 4145.555154115848, - 4130.600296122557, - 4125.576301838986, - 4142.521460558496, - 4189.054166464669, - 4265.439069676001, - 4364.131641411603, - 4469.020612860541, - 4566.761580607431, - 4649.812654479745, - 4724.45120419098, - 4815.519267747935, - 4964.695077191236, - 5226.373433778618, - 5657.257310987249, - 6295.398720148946, - 7175.285477230954, - 8285.505709864088, - 9585.80444406688 - ], - "flow:branch107_seg0:J47": [ - 2.069505548035455, - 2.6636080442472863, - 3.3082474129658017, - 3.9702835514095467, - 4.615030171498411, - 5.213228480892624, - 5.744134467554228, - 6.197388317173372, - 6.5704126151411435, - 6.869088233219578, - 7.101528231535012, - 7.275150668445269, - 7.396626768717775, - 7.4678470545302975, - 7.489090427064963, - 7.460078024599744, - 7.380251522913675, - 7.2534497195272225, - 7.0851510515701674, - 6.8833966138837335, - 6.658010979179962, - 6.4171182632071035, - 6.167529757291438, - 5.91343047030074, - 5.656782397182368, - 5.398900149495338, - 5.141401089078301, - 4.887385381920785, - 4.641499864975508, - 4.409082785657408, - 4.194213014606335, - 3.9980394777656088, - 3.8170069030432345, - 3.642274281914943, - 3.461136425930337, - 3.2590121267745706, - 3.023010872059223, - 2.7448178569535377, - 2.424359912703724, - 2.0691074905883293, - 1.6945916448479428, - 1.3212243380894708, - 0.9704375008071161, - 0.6609725643291915, - 0.4060500903061341, - 0.21181169130356584, - 0.07624490280216335, - -0.0066369948508078905, - -0.046846773519901665, - -0.054283430127204095, - -0.03647818351787146, - 0.0008436639464058648, - 0.05503585888977957, - 0.12423008329466603, - 0.20586024348050672, - 0.29603048866795784, - 0.38828881198429616, - 0.4747835804671317, - 0.5475254000831856, - 0.6002658035112426, - 0.6296206492980727, - 0.6364854043032908, - 0.6251350658184874, - 0.6017680115386986, - 0.5733766346174751, - 0.5449937023473758, - 0.5189044578906301, - 0.4943466341623539, - 0.4681768807005007, - 0.4365233953444782, - 0.3965346960622556, - 0.34769085239963055, - 0.2925703811169285, - 0.23596734841854095, - 0.18383857222848188, - 0.14137292036898252, - 0.1115396159084614, - 0.09407800526434254, - 0.08611504390340961, - 0.08303993187395117, - 0.08035634218786304, - 0.07553045959777539, - 0.06881353816333446, - 0.06326505488534492, - 0.06365911036430738, - 0.07447162583998974, - 0.09821627714185695, - 0.1338815788475029, - 0.17718243102899725, - 0.2221432074287236, - 0.2634195107789188, - 0.299713361572686, - 0.3362563540318001, - 0.3858422691375206, - 0.4682992312796565, - 0.6068775730703658, - 0.8243218486969092, - 1.1384441998231674, - 1.5549347124681308, - 2.069505548035455 - ], - "pressure:branch107_seg0:J47": [ - 9198.70450218019, - 10577.044596074036, - 12020.913956403518, - 13457.206496571254, - 14815.038544812944, - 16037.962894191573, - 17092.23956044878, - 17972.025661534768, - 18679.737603552254, - 19232.73418411277, - 19657.322403791393, - 19961.45183579691, - 20158.03180279478, - 20248.915238553753, - 20227.879580092052, - 20099.918852461233, - 19861.896551850245, - 19525.779032741888, - 19112.162593035184, - 18635.389465579417, - 18119.807844451916, - 17581.811200016924, - 17031.205956869628, - 16475.59220067028, - 15916.344713881257, - 15355.835661840496, - 14799.307373706777, - 14255.349895751859, - 13735.716714385315, - 13252.186464150214, - 12811.05467623764, - 12408.999328207761, - 12032.801856759466, - 11655.927209640286, - 11246.707873497406, - 10773.030184157271, - 10212.176294242025, - 9552.084261493024, - 8804.693013922943, - 7998.169455782012, - 7172.230703723598, - 6377.668799399065, - 5659.84983692069, - 5053.919772136052, - 4577.172794337078, - 4237.554679330841, - 4018.9349697495863, - 3901.8723886178245, - 3866.2391928640027, - 3887.4441182527194, - 3954.9533172479164, - 4059.9765472339213, - 4197.410528941563, - 4365.939137965219, - 4557.024486700015, - 4759.798493014819, - 4958.167430015192, - 5133.114440405529, - 5268.197358718604, - 5353.670677137579, - 5386.481592272703, - 5372.895391033691, - 5328.391058815507, - 5266.242504076277, - 5201.224935959035, - 5142.046220408132, - 5088.836240414022, - 5036.217447429935, - 4975.301848314062, - 4897.5180941992385, - 4799.413747628819, - 4682.885479043202, - 4557.629825724801, - 4436.726964588247, - 4333.081280604816, - 4256.009185797826, - 4208.603529918856, - 4186.063304080958, - 4178.545122285242, - 4175.693362065899, - 4168.442993532811, - 4154.569382345512, - 4138.78544712097, - 4130.809134779591, - 4142.280772521351, - 4181.290569475699, - 4249.643049893259, - 4340.9878536931255, - 4441.1345786516, - 4536.969057320089, - 4619.652496682237, - 4692.976711891848, - 4777.903847750787, - 4911.998328884462, - 5145.974557733776, - 5534.011660321448, - 6117.205832046234, - 6930.104762505705, - 7967.319867184211, - 9198.70450218019 - ], - "flow:J47:branch108_seg0": [ - 0.6253936793424686, - 0.800959174904293, - 0.9893581768650341, - 1.1808575132179628, - 1.3654220687411545, - 1.534905985310589, - 1.6838209823459103, - 1.809816976128853, - 1.9125759037134933, - 1.9942160451382631, - 2.057302260563161, - 2.1038539296632877, - 2.1357549337897503, - 2.153327147196233, - 2.156485707141366, - 2.14518233715561, - 2.1192157806732177, - 2.0799110946003876, - 2.029015863920008, - 1.968926436007391, - 1.9026030612811449, - 1.8323039318765886, - 1.7598860727702417, - 1.686429204303131, - 1.6123634808632403, - 1.538028142685167, - 1.4639129403993396, - 1.3909900879042663, - 1.3206842593084855, - 1.2545706149768434, - 1.1937474626093585, - 1.1383634955238318, - 1.0871357511153432, - 1.0372018642178928, - 0.9846841292387325, - 0.9252839981386493, - 0.8554005879969282, - 0.7728967710554204, - 0.6782332113641818, - 0.574028270226059, - 0.4651779021823537, - 0.3578694427792944, - 0.2583200271436387, - 0.1717600178869012, - 0.10164789357933174, - 0.04937446393205679, - 0.013854170890518762, - -0.0068816880806595515, - -0.015899393546369774, - -0.01609551901036421, - -0.009470853485841276, - 0.002434585578566247, - 0.01901161847219417, - 0.03979833426422133, - 0.06399549991160548, - 0.09040986519405209, - 0.11705270794100579, - 0.14157452906450915, - 0.16167648287662506, - 0.1756687274528157, - 0.18274568264692442, - 0.18339516775068382, - 0.17907144853065296, - 0.171647346807249, - 0.16317625508376535, - 0.15500809848494052, - 0.14762898713082956, - 0.1406460639265478, - 0.13302160150171896, - 0.12359795184885192, - 0.11161835443637382, - 0.09706320835559717, - 0.08085583622882016, - 0.06450448277123165, - 0.04978221413728168, - 0.03813756467814692, - 0.030297816802220354, - 0.025999119560658902, - 0.024259972406300827, - 0.023666315202067502, - 0.022923963661821697, - 0.021420063977110063, - 0.019390774991202356, - 0.0178748074041016, - 0.01834204975390776, - 0.022060918696021167, - 0.029636447742645584, - 0.040584224583213535, - 0.053470444450677924, - 0.06649162489542287, - 0.07815333607203172, - 0.08831526419391447, - 0.09886492054269987, - 0.11392016941477559, - 0.13958767016309492, - 0.18276073810993465, - 0.24990779070832364, - 0.3459192842743115, - 0.47169666958400697, - 0.6253936793424686 - ], - "pressure:J47:branch108_seg0": [ - 9198.70450218019, - 10577.044596074036, - 12020.913956403518, - 13457.206496571254, - 14815.038544812944, - 16037.962894191573, - 17092.23956044878, - 17972.025661534768, - 18679.737603552254, - 19232.73418411277, - 19657.322403791393, - 19961.45183579691, - 20158.03180279478, - 20248.915238553753, - 20227.879580092052, - 20099.918852461233, - 19861.896551850245, - 19525.779032741888, - 19112.162593035184, - 18635.389465579417, - 18119.807844451916, - 17581.811200016924, - 17031.205956869628, - 16475.59220067028, - 15916.344713881257, - 15355.835661840496, - 14799.307373706777, - 14255.349895751859, - 13735.716714385315, - 13252.186464150214, - 12811.05467623764, - 12408.999328207761, - 12032.801856759466, - 11655.927209640286, - 11246.707873497406, - 10773.030184157271, - 10212.176294242025, - 9552.084261493024, - 8804.693013922943, - 7998.169455782012, - 7172.230703723598, - 6377.668799399065, - 5659.84983692069, - 5053.919772136052, - 4577.172794337078, - 4237.554679330841, - 4018.9349697495863, - 3901.8723886178245, - 3866.2391928640027, - 3887.4441182527194, - 3954.9533172479164, - 4059.9765472339213, - 4197.410528941563, - 4365.939137965219, - 4557.024486700015, - 4759.798493014819, - 4958.167430015192, - 5133.114440405529, - 5268.197358718604, - 5353.670677137579, - 5386.481592272703, - 5372.895391033691, - 5328.391058815507, - 5266.242504076277, - 5201.224935959035, - 5142.046220408132, - 5088.836240414022, - 5036.217447429935, - 4975.301848314062, - 4897.5180941992385, - 4799.413747628819, - 4682.885479043202, - 4557.629825724801, - 4436.726964588247, - 4333.081280604816, - 4256.009185797826, - 4208.603529918856, - 4186.063304080958, - 4178.545122285242, - 4175.693362065899, - 4168.442993532811, - 4154.569382345512, - 4138.78544712097, - 4130.809134779591, - 4142.280772521351, - 4181.290569475699, - 4249.643049893259, - 4340.9878536931255, - 4441.1345786516, - 4536.969057320089, - 4619.652496682237, - 4692.976711891848, - 4777.903847750787, - 4911.998328884462, - 5145.974557733776, - 5534.011660321448, - 6117.205832046234, - 6930.104762505705, - 7967.319867184211, - 9198.70450218019 - ], - "flow:J47:branch142_seg0": [ - 1.4441118686929864, - 1.862648869342994, - 2.3188892361007674, - 2.7894260381915843, - 3.2496081027572576, - 3.678322495582035, - 4.060313485208318, - 4.387571341044519, - 4.6578367114276515, - 4.874872188081314, - 5.0442259709718495, - 5.1712967387819795, - 5.260871834928026, - 5.314519907334065, - 5.332604719923596, - 5.314895687444134, - 5.261035742240458, - 5.1735386249268345, - 5.05613518765016, - 4.914470177876342, - 4.755407917898816, - 4.584814331330514, - 4.407643684521196, - 4.227001265997608, - 4.044418916319128, - 3.860872006810173, - 3.677488148678963, - 3.496395294016519, - 3.320815605667023, - 3.1545121706805648, - 3.0004655519969767, - 2.8596759822417774, - 2.7298711519278913, - 2.6050724176970492, - 2.476452296691604, - 2.3337281286359213, - 2.1676102840622953, - 1.9719210858981175, - 1.7461267013395416, - 1.4950792203622707, - 1.2294137426655891, - 0.9633548953101764, - 0.7121174736634774, - 0.48921254644229023, - 0.3044021967268024, - 0.16243722737150898, - 0.062390731911644605, - 0.000244693229851663, - -0.030947379973531895, - -0.03818791111683989, - -0.027007330032030184, - -0.0015909216321603806, - 0.03602424041758539, - 0.08443174903044467, - 0.14186474356890127, - 0.20562062347390567, - 0.27123610404329035, - 0.3332090514026225, - 0.3858489172065606, - 0.42459707605842684, - 0.4468749666511482, - 0.4530902365526071, - 0.44606361728783456, - 0.4301206647314498, - 0.41020037953370964, - 0.38998560386243525, - 0.3712754707598006, - 0.35370057023580614, - 0.33515527919878174, - 0.31292544349562634, - 0.2849163416258817, - 0.25062764404403326, - 0.21171454488810834, - 0.1714628656473093, - 0.1340563580912002, - 0.1032353556908356, - 0.08124179910624105, - 0.06807888570368363, - 0.06185507149710878, - 0.05937361667188367, - 0.05743237852604134, - 0.05411039562066533, - 0.049422763172132074, - 0.04539024748124332, - 0.04531706061039965, - 0.05241070714396857, - 0.06857982939921137, - 0.09329735426428934, - 0.12371198657831932, - 0.1556515825333007, - 0.18526617470688703, - 0.21139809737877152, - 0.23739143348910033, - 0.27192209972274506, - 0.3287115611165615, - 0.4241168349604311, - 0.5744140579885856, - 0.7925249155488561, - 1.0832380428841235, - 1.4441118686929864 - ], - "pressure:J47:branch142_seg0": [ - 9198.70450218019, - 10577.044596074036, - 12020.913956403518, - 13457.206496571254, - 14815.038544812944, - 16037.962894191573, - 17092.23956044878, - 17972.025661534768, - 18679.737603552254, - 19232.73418411277, - 19657.322403791393, - 19961.45183579691, - 20158.03180279478, - 20248.915238553753, - 20227.879580092052, - 20099.918852461233, - 19861.896551850245, - 19525.779032741888, - 19112.162593035184, - 18635.389465579417, - 18119.807844451916, - 17581.811200016924, - 17031.205956869628, - 16475.59220067028, - 15916.344713881257, - 15355.835661840496, - 14799.307373706777, - 14255.349895751859, - 13735.716714385315, - 13252.186464150214, - 12811.05467623764, - 12408.999328207761, - 12032.801856759466, - 11655.927209640286, - 11246.707873497406, - 10773.030184157271, - 10212.176294242025, - 9552.084261493024, - 8804.693013922943, - 7998.169455782012, - 7172.230703723598, - 6377.668799399065, - 5659.84983692069, - 5053.919772136052, - 4577.172794337078, - 4237.554679330841, - 4018.9349697495863, - 3901.8723886178245, - 3866.2391928640027, - 3887.4441182527194, - 3954.9533172479164, - 4059.9765472339213, - 4197.410528941563, - 4365.939137965219, - 4557.024486700015, - 4759.798493014819, - 4958.167430015192, - 5133.114440405529, - 5268.197358718604, - 5353.670677137579, - 5386.481592272703, - 5372.895391033691, - 5328.391058815507, - 5266.242504076277, - 5201.224935959035, - 5142.046220408132, - 5088.836240414022, - 5036.217447429935, - 4975.301848314062, - 4897.5180941992385, - 4799.413747628819, - 4682.885479043202, - 4557.629825724801, - 4436.726964588247, - 4333.081280604816, - 4256.009185797826, - 4208.603529918856, - 4186.063304080958, - 4178.545122285242, - 4175.693362065899, - 4168.442993532811, - 4154.569382345512, - 4138.78544712097, - 4130.809134779591, - 4142.280772521351, - 4181.290569475699, - 4249.643049893259, - 4340.9878536931255, - 4441.1345786516, - 4536.969057320089, - 4619.652496682237, - 4692.976711891848, - 4777.903847750787, - 4911.998328884462, - 5145.974557733776, - 5534.011660321448, - 6117.205832046234, - 6930.104762505705, - 7967.319867184211, - 9198.70450218019 - ], - "flow:branch112_seg0:J48": [ - 2.4742612865651807, - 3.1950794128172326, - 3.9851996338794304, - 4.805408176286221, - 5.613254209318862, - 6.371458009762304, - 7.05216750587276, - 7.639818055908055, - 8.128321778737599, - 8.522449401185774, - 8.830968544280879, - 9.062456722720169, - 9.225537451355168, - 9.323584375536672, - 9.357827735619999, - 9.328799021615374, - 9.236135474196855, - 9.08429768155755, - 8.879771965326665, - 8.63188051354477, - 8.352463277285146, - 8.051672553473841, - 7.738275366193239, - 7.418150965313281, - 7.0944081662174785, - 6.769163265503181, - 6.444614321435223, - 6.124450471300032, - 5.814101356997493, - 5.519897823266334, - 5.246897877662316, - 4.9969293311036855, - 4.766466672443542, - 4.545635556822332, - 4.319732136417969, - 4.071316019157752, - 3.7843509465462937, - 3.447607111459033, - 3.0593354272105397, - 2.6268045472895145, - 2.167138082462195, - 1.7041454133057705, - 1.263687677168497, - 0.8693430196336427, - 0.5387305832647786, - 0.2813971543657855, - 0.09695477570403294, - -0.020294144935058066, - -0.0814317097771642, - -0.09839393904742115, - -0.08076832625926737, - -0.03636010472112136, - 0.030600952547559818, - 0.1171317393327769, - 0.2196605857708284, - 0.3333955605075324, - 0.4506762766575937, - 0.5621029522437765, - 0.6579378154921468, - 0.7302420571849828, - 0.7742305899576565, - 0.7900965152671837, - 0.7822743700795671, - 0.7576989339747991, - 0.7247187079988294, - 0.6898055965398321, - 0.6563930388615945, - 0.6243836452882482, - 0.59069022851531, - 0.5510197197860309, - 0.5019209472054872, - 0.4423955109623768, - 0.3749994715268621, - 0.3050114544144104, - 0.2393358217399312, - 0.1843302961535607, - 0.14402252762692955, - 0.1187611435134524, - 0.1057342054262755, - 0.09985074536992226, - 0.09575912000137089, - 0.09010991369712397, - 0.08264196292529413, - 0.07640892152555345, - 0.07670959173170772, - 0.0888349512954856, - 0.1161092997905256, - 0.15793515564909816, - 0.20979243357642033, - 0.2649609191248284, - 0.31701573820722406, - 0.36383737707443353, - 0.41071378991569624, - 0.4718524729808758, - 0.570111958475007, - 0.7331356711684919, - 0.9887716289427289, - 1.3600044921043288, - 1.8560345540387544, - 2.4742612865651807 - ], - "pressure:branch112_seg0:J48": [ - 9223.39023987699, - 10608.376426716031, - 12061.317259521311, - 13508.742796308221, - 14880.258657066852, - 16118.10487206625, - 17186.72297799533, - 18079.49269339821, - 18797.98240375637, - 19356.888534779828, - 19784.02849985987, - 20086.971794565103, - 20278.47532112166, - 20362.525440592384, - 20332.703041186684, - 20195.43395990265, - 19948.2452962684, - 19602.078815569377, - 19178.87541438519, - 18692.268793324838, - 18166.232397515894, - 17617.874109250955, - 17056.72385935963, - 16490.971616808318, - 15922.442563516815, - 15353.654358169091, - 14790.09909383144, - 14240.271790066408, - 13715.696304000834, - 13227.90050475645, - 12783.10563638564, - 12377.66860854407, - 11998.712701506485, - 11619.824220127677, - 11209.412197679676, - 10735.46706114176, - 10175.350321664337, - 9516.34943562744, - 8769.532373404658, - 7963.065742181103, - 7135.463117659414, - 6337.400594162551, - 5614.598079300976, - 5002.7312963411205, - 4519.420513401969, - 4174.179183177929, - 3951.9676047467806, - 3833.1820510539646, - 3799.0365640351633, - 3824.137358889171, - 3897.4619507944553, - 4010.021358688417, - 4155.338910244574, - 4331.909907332895, - 4530.634600651291, - 4740.283217753016, - 4945.074282112934, - 5125.911118358908, - 5266.36235003737, - 5356.744631967167, - 5393.9562652885825, - 5383.5513207231115, - 5341.237966380526, - 5280.048004230954, - 5214.434397532558, - 5153.653463334939, - 5098.144749463123, - 5042.924912485352, - 4979.5930992040885, - 4899.833013737846, - 4800.346868580523, - 4682.863836224976, - 4556.795899044547, - 4435.068683414856, - 4330.300020859915, - 4251.756918429863, - 4202.710581624444, - 4178.699571206017, - 4170.001190157981, - 4166.716335667998, - 4159.801202650722, - 4146.878460295182, - 4132.469610364656, - 4125.941608822215, - 4138.617799846305, - 4178.429306760086, - 4247.124567262793, - 4338.782737136557, - 4439.327015442527, - 4535.974757595851, - 4620.2500950502135, - 4695.85613138752, - 4783.545447454784, - 4920.549376831851, - 5157.2048578682825, - 5547.878307870904, - 6132.901843745087, - 6947.786080045362, - 7988.338784129362, - 9223.39023987699 - ], - "flow:J48:branch113_seg0": [ - 1.7693756186445178, - 2.2918799312755573, - 2.868688288226766, - 3.47143763636171, - 4.069030797634585, - 4.633557710421751, - 5.143611970189147, - 5.586497860593209, - 5.956796694110499, - 6.257127462876196, - 6.4933688902191955, - 6.671920777364627, - 6.799162681175073, - 6.877943816220137, - 6.909500065636316, - 6.894220371104156, - 6.831937999744121, - 6.725600629800563, - 6.579674933084635, - 6.400872218308872, - 6.197677358402964, - 5.977678005117477, - 5.747529978175535, - 5.511804017339834, - 5.273063570906106, - 5.032987079543944, - 4.79318905249258, - 4.556273984855904, - 4.326095957350885, - 4.107244373437156, - 3.903561322455767, - 3.716712404594358, - 3.544565268110359, - 3.380434591060265, - 3.213931127858022, - 3.032437336113751, - 2.8239878707886312, - 2.579872464178015, - 2.2979348474944956, - 1.9826322351936143, - 1.6457411219546043, - 1.3041532815158245, - 0.9767377719028445, - 0.6811037718568289, - 0.43084184949096244, - 0.23369888366444824, - 0.09035363014713212, - -0.00281646677119551, - -0.05356839790064137, - -0.07051864301165735, - -0.060971869645264326, - -0.030882702199211777, - 0.016351453891267825, - 0.0783429068492998, - 0.15251904518234993, - 0.2354525706181544, - 0.32171398983877786, - 0.40454525575513733, - 0.4767883105688489, - 0.5324123618723838, - 0.5675868856428882, - 0.5820265107188797, - 0.5785572323564149, - 0.5620726927238247, - 0.5386112681055497, - 0.51307906935908, - 0.4883049936472821, - 0.46454678124000864, - 0.439804186726644, - 0.41103652109590866, - 0.3756248294466557, - 0.3326201804098228, - 0.28358172126408293, - 0.23214085140657945, - 0.18324774662873458, - 0.14163412189442334, - 0.11047849253919088, - 0.09037575350270322, - 0.07956259714129575, - 0.07447951337837223, - 0.07122348546541003, - 0.06714919091040916, - 0.06177519465287232, - 0.057050798746522705, - 0.05667377493540779, - 0.06453829751194157, - 0.08327796250296626, - 0.11279054138608441, - 0.15012362080016636, - 0.19051961037837248, - 0.22920913981820115, - 0.26425116191493847, - 0.2988670627260713, - 0.3427165791631431, - 0.4118680166369317, - 0.5262433436025289, - 0.7064337013065656, - 0.9697664569693428, - 1.3243071682960952, - 1.7693756186445178 - ], - "pressure:J48:branch113_seg0": [ - 9223.39023987699, - 10608.376426716031, - 12061.317259521311, - 13508.742796308221, - 14880.258657066852, - 16118.10487206625, - 17186.72297799533, - 18079.49269339821, - 18797.98240375637, - 19356.888534779828, - 19784.02849985987, - 20086.971794565103, - 20278.47532112166, - 20362.525440592384, - 20332.703041186684, - 20195.43395990265, - 19948.2452962684, - 19602.078815569377, - 19178.87541438519, - 18692.268793324838, - 18166.232397515894, - 17617.874109250955, - 17056.72385935963, - 16490.971616808318, - 15922.442563516815, - 15353.654358169091, - 14790.09909383144, - 14240.271790066408, - 13715.696304000834, - 13227.90050475645, - 12783.10563638564, - 12377.66860854407, - 11998.712701506485, - 11619.824220127677, - 11209.412197679676, - 10735.46706114176, - 10175.350321664337, - 9516.34943562744, - 8769.532373404658, - 7963.065742181103, - 7135.463117659414, - 6337.400594162551, - 5614.598079300976, - 5002.7312963411205, - 4519.420513401969, - 4174.179183177929, - 3951.9676047467806, - 3833.1820510539646, - 3799.0365640351633, - 3824.137358889171, - 3897.4619507944553, - 4010.021358688417, - 4155.338910244574, - 4331.909907332895, - 4530.634600651291, - 4740.283217753016, - 4945.074282112934, - 5125.911118358908, - 5266.36235003737, - 5356.744631967167, - 5393.9562652885825, - 5383.5513207231115, - 5341.237966380526, - 5280.048004230954, - 5214.434397532558, - 5153.653463334939, - 5098.144749463123, - 5042.924912485352, - 4979.5930992040885, - 4899.833013737846, - 4800.346868580523, - 4682.863836224976, - 4556.795899044547, - 4435.068683414856, - 4330.300020859915, - 4251.756918429863, - 4202.710581624444, - 4178.699571206017, - 4170.001190157981, - 4166.716335667998, - 4159.801202650722, - 4146.878460295182, - 4132.469610364656, - 4125.941608822215, - 4138.617799846305, - 4178.429306760086, - 4247.124567262793, - 4338.782737136557, - 4439.327015442527, - 4535.974757595851, - 4620.2500950502135, - 4695.85613138752, - 4783.545447454784, - 4920.549376831851, - 5157.2048578682825, - 5547.878307870904, - 6132.901843745087, - 6947.786080045362, - 7988.338784129362, - 9223.39023987699 - ], - "flow:J48:branch133_seg0": [ - 0.7048856679206633, - 0.903199481541676, - 1.1165113456526639, - 1.333970539924512, - 1.544223411684276, - 1.737900299340554, - 1.9085555356836124, - 2.0533201953148477, - 2.1715250846271013, - 2.2653219383095795, - 2.3375996540616817, - 2.390535945355542, - 2.426374770180098, - 2.4456405593165345, - 2.448327669983681, - 2.4345786505112184, - 2.4041974744527335, - 2.3586970517569896, - 2.3000970322420264, - 2.2310082952358994, - 2.154785918882181, - 2.0739945483563615, - 1.9907453880177024, - 1.9063469479734472, - 1.8213445953113707, - 1.7361761859592362, - 1.6514252689426439, - 1.5681764864441272, - 1.4880053996466085, - 1.4126534498291752, - 1.3433365552065486, - 1.2802169265093255, - 1.2219014043331835, - 1.1652009657620663, - 1.1058010085599468, - 1.0388786830440007, - 0.9603630757576622, - 0.8677346472810181, - 0.7614005797160452, - 0.6441723120959002, - 0.5213969605075904, - 0.3999921317899459, - 0.2869499052656524, - 0.18823924777681358, - 0.10788873377381641, - 0.047698270701337225, - 0.006601145556900815, - -0.017477678163862555, - -0.027863311876522835, - -0.027875296035763823, - -0.019796456614003068, - -0.005477402521909587, - 0.014249498656291994, - 0.03878883248347708, - 0.06714154058847843, - 0.09794298988937797, - 0.12896228681881583, - 0.15755769648863913, - 0.18114950492329793, - 0.197829695312599, - 0.20664370431476833, - 0.20807000454830427, - 0.2037171377231522, - 0.1956262412509745, - 0.1861074398932795, - 0.17672652718075196, - 0.1680880452143123, - 0.15983686404823963, - 0.15088604178866585, - 0.13998319869012224, - 0.12629611775883154, - 0.10977533055255398, - 0.0914177502627791, - 0.07287060300783095, - 0.05608807511119661, - 0.042696174259137354, - 0.033544035087738684, - 0.028385390010749193, - 0.026171608284979737, - 0.02537123199155005, - 0.02453563453596085, - 0.022960722786714783, - 0.02086676827242182, - 0.019358122779030745, - 0.020035816796299927, - 0.024296653783544044, - 0.03283133728755933, - 0.04514461426301379, - 0.05966881277625401, - 0.07444130874645594, - 0.08780659838902294, - 0.09958621515949492, - 0.111846727189625, - 0.12913589381773274, - 0.15824394183807522, - 0.2068923275659633, - 0.2823379276361633, - 0.3902380351349859, - 0.5317273857426594, - 0.7048856679206633 - ], - "pressure:J48:branch133_seg0": [ - 9223.39023987699, - 10608.376426716031, - 12061.317259521311, - 13508.742796308221, - 14880.258657066852, - 16118.10487206625, - 17186.72297799533, - 18079.49269339821, - 18797.98240375637, - 19356.888534779828, - 19784.02849985987, - 20086.971794565103, - 20278.47532112166, - 20362.525440592384, - 20332.703041186684, - 20195.43395990265, - 19948.2452962684, - 19602.078815569377, - 19178.87541438519, - 18692.268793324838, - 18166.232397515894, - 17617.874109250955, - 17056.72385935963, - 16490.971616808318, - 15922.442563516815, - 15353.654358169091, - 14790.09909383144, - 14240.271790066408, - 13715.696304000834, - 13227.90050475645, - 12783.10563638564, - 12377.66860854407, - 11998.712701506485, - 11619.824220127677, - 11209.412197679676, - 10735.46706114176, - 10175.350321664337, - 9516.34943562744, - 8769.532373404658, - 7963.065742181103, - 7135.463117659414, - 6337.400594162551, - 5614.598079300976, - 5002.7312963411205, - 4519.420513401969, - 4174.179183177929, - 3951.9676047467806, - 3833.1820510539646, - 3799.0365640351633, - 3824.137358889171, - 3897.4619507944553, - 4010.021358688417, - 4155.338910244574, - 4331.909907332895, - 4530.634600651291, - 4740.283217753016, - 4945.074282112934, - 5125.911118358908, - 5266.36235003737, - 5356.744631967167, - 5393.9562652885825, - 5383.5513207231115, - 5341.237966380526, - 5280.048004230954, - 5214.434397532558, - 5153.653463334939, - 5098.144749463123, - 5042.924912485352, - 4979.5930992040885, - 4899.833013737846, - 4800.346868580523, - 4682.863836224976, - 4556.795899044547, - 4435.068683414856, - 4330.300020859915, - 4251.756918429863, - 4202.710581624444, - 4178.699571206017, - 4170.001190157981, - 4166.716335667998, - 4159.801202650722, - 4146.878460295182, - 4132.469610364656, - 4125.941608822215, - 4138.617799846305, - 4178.429306760086, - 4247.124567262793, - 4338.782737136557, - 4439.327015442527, - 4535.974757595851, - 4620.2500950502135, - 4695.85613138752, - 4783.545447454784, - 4920.549376831851, - 5157.2048578682825, - 5547.878307870904, - 6132.901843745087, - 6947.786080045362, - 7988.338784129362, - 9223.39023987699 - ], - "flow:branch113_seg0:J49": [ - 1.7664345169109927, - 2.2887113685985465, - 2.8654237975792434, - 3.468291273114187, - 4.066135345808626, - 4.630995516486293, - 5.141429973438607, - 5.584748534830507, - 5.95538400105568, - 6.256040226582715, - 6.492576812044783, - 6.671364116603736, - 6.798864079723333, - 6.877882038035894, - 6.909681075995857, - 6.894651478686855, - 6.832592763088815, - 6.726466711905321, - 6.580695575830591, - 6.4019968906903815, - 6.198879204419893, - 5.978912814271139, - 5.748780556101333, - 5.513064233673108, - 5.2743248938552165, - 5.034245799099416, - 4.7944278754284495, - 4.557468656684735, - 4.327218739966125, - 4.108279418048982, - 3.9044957011831056, - 3.7175716985501035, - 3.5453976623740866, - 3.381296565688157, - 3.214899462544199, - 3.033579690197477, - 2.825341412107223, - 2.581432017854002, - 2.299675246130824, - 1.9844621101387416, - 1.6475573240835015, - 1.305859344277958, - 0.9782320517983817, - 0.68231128605632, - 0.43176032573107587, - 0.23432646224467776, - 0.09070730292894631, - -0.002658100102659244, - -0.053568178746982276, - -0.07064142914199549, - -0.06117682732598114, - -0.03117949865079787, - 0.015988463646399557, - 0.07792674752786177, - 0.15205529045750982, - 0.2349866141574425, - 0.32128157453281647, - 0.40418389592387083, - 0.4765290552840303, - 0.5322779225059243, - 0.5675594247731793, - 0.5820887106851468, - 0.5786809268998829, - 0.5622153017469198, - 0.5387528639666083, - 0.5132086674667758, - 0.48842432855344237, - 0.46467418266160515, - 0.4399601806448928, - 0.411236701467145, - 0.37586762569710797, - 0.3328934925163717, - 0.2838637118060983, - 0.2323968954547774, - 0.18345147277664062, - 0.14177308577920533, - 0.11055748605807783, - 0.09040307011572501, - 0.07957052928444248, - 0.07449066018257716, - 0.07124548002468631, - 0.06718197665137213, - 0.06180280767324779, - 0.057047619909660494, - 0.05661803651678378, - 0.06441463975448204, - 0.08309726702092195, - 0.11257321365249863, - 0.14989869497352074, - 0.1903183343201985, - 0.22903724935337552, - 0.2640813413119076, - 0.29863398217890397, - 0.3423229344529239, - 0.4111953184636932, - 0.5251595248522117, - 0.7048865321048167, - 0.9677149103531429, - 1.3217252270643485, - 1.7664345169109927 - ], - "pressure:branch113_seg0:J49": [ - 8760.121533141139, - 10069.05864195296, - 11466.405067215406, - 12882.452045149188, - 14246.571807400318, - 15498.713858763043, - 16598.534990696568, - 17531.7851514145, - 18293.78417376245, - 18896.815894768886, - 19363.50944911168, - 19703.47838893122, - 19930.62192045434, - 20049.613512909593, - 20057.302745805024, - 19958.40907719254, - 19750.88755760621, - 19443.925147248086, - 19055.435126715493, - 18599.36230558354, - 18098.05230879687, - 17568.673019695958, - 17022.764686797374, - 16469.395090361646, - 15911.80618712, - 15352.947128056472, - 14797.583698214823, - 14253.22878562026, - 13730.346466642277, - 13240.147752110974, - 12789.714810212412, - 12378.316828429055, - 11996.092319524541, - 11620.73663873214, - 11223.704524839426, - 10774.203046844448, - 10247.944200487045, - 9629.371432696227, - 8923.739481300208, - 8152.449470695303, - 7349.486908858106, - 6561.160670385684, - 5831.945803764648, - 5199.216464349381, - 4685.462352172203, - 4303.15509024568, - 4043.445709195215, - 3890.933707720284, - 3827.23903430252, - 3829.0206865446075, - 3883.280164145559, - 3979.2630837043807, - 4110.24603963507, - 4273.209670007788, - 4460.26015470809, - 4661.66821974912, - 4862.861394953094, - 5046.14644628348, - 5195.144017511566, - 5298.7811940907195, - 5351.658171481278, - 5357.104095833374, - 5327.547896458213, - 5275.090447369977, - 5214.015626901686, - 5154.3395424954315, - 5098.6770973602115, - 5044.133612153094, - 4983.730640645984, - 4909.628258443308, - 4817.51153307915, - 4707.6506463411115, - 4587.245764345948, - 4467.48498271015, - 4360.499520215625, - 4276.135237746379, - 4219.175213088137, - 4187.254952708937, - 4172.869351425859, - 4166.700909675246, - 4159.72599039541, - 4148.219209836105, - 4134.606472004611, - 4126.413599417224, - 4133.91787764829, - 4165.376221094201, - 4224.215323081133, - 4306.635858021229, - 4401.198746571229, - 4495.938476484982, - 4581.404406748087, - 4658.191337314533, - 4741.95903734858, - 4864.206725721303, - 5070.013093085549, - 5410.411020149704, - 5928.20188984307, - 6660.165621281385, - 7610.715284443078, - 8760.121533141139 - ], - "flow:J49:branch114_seg0": [ - 0.6053750241193208, - 0.7809438479030296, - 0.9728174309449438, - 1.1714379488246993, - 1.366467497629334, - 1.5489394863074109, - 1.7122486981946232, - 1.8528275994500094, - 1.9693110341252063, - 2.0630435187026133, - 2.1362279029505356, - 2.1909363899039644, - 2.229284982069782, - 2.252016585422806, - 2.259396680516079, - 2.251542987732463, - 2.228340678257963, - 2.190921015090116, - 2.140870071460644, - 2.0804708156542873, - 2.0126233750481455, - 1.9397567943475842, - 1.8639716005500042, - 1.7866527588483945, - 1.7085078521233106, - 1.6300286748852975, - 1.5517379840503642, - 1.474539707150333, - 1.3997664772554852, - 1.3289660549531377, - 1.2633489320537366, - 1.2033297373532925, - 1.147997121074213, - 1.0948820116389724, - 1.0403682989912217, - 0.9801961567548018, - 0.9104899749698168, - 0.8285778383087951, - 0.7341504233437766, - 0.6290674586086307, - 0.5175953459447867, - 0.4055934790592295, - 0.29935267514424085, - 0.2045627390683845, - 0.12543660117894956, - 0.06417996414753109, - 0.02057023298323405, - -0.006836250656308287, - -0.020806623146353575, - -0.024257449345272485, - -0.019480082945941484, - -0.008353454132486763, - 0.008157020056146234, - 0.029352517248763137, - 0.054362904446169334, - 0.08202957185566706, - 0.11046252255806834, - 0.13736231262409623, - 0.16036416280372953, - 0.17756681504756655, - 0.1878401760409728, - 0.19129658919630857, - 0.18906867173745856, - 0.1828678269691861, - 0.1747439202308145, - 0.1662486149282799, - 0.15817654982213056, - 0.15046123484349622, - 0.14231300357011256, - 0.1326693359498373, - 0.12069533849424051, - 0.10617499782414329, - 0.08976995862601814, - 0.0727926994264841, - 0.05694144197374104, - 0.04375705685587632, - 0.03419229530903752, - 0.028284392765152416, - 0.025315335041903125, - 0.024016434521829777, - 0.023077826459937657, - 0.021708311595887365, - 0.019879597649304744, - 0.018372666791353975, - 0.018505142246411355, - 0.02156507194408652, - 0.028343871809107864, - 0.03865112635890533, - 0.051340887324585124, - 0.06475335091667399, - 0.07732307628147865, - 0.08857497623410931, - 0.09986987962160385, - 0.11475335533460196, - 0.1388672224383818, - 0.17896809049107593, - 0.241827459899931, - 0.3329498057657792, - 0.4543814961086984, - 0.6053750241193208 - ], - "pressure:J49:branch114_seg0": [ - 8760.121533141139, - 10069.05864195296, - 11466.405067215406, - 12882.452045149188, - 14246.571807400318, - 15498.713858763043, - 16598.534990696568, - 17531.7851514145, - 18293.78417376245, - 18896.815894768886, - 19363.50944911168, - 19703.47838893122, - 19930.62192045434, - 20049.613512909593, - 20057.302745805024, - 19958.40907719254, - 19750.88755760621, - 19443.925147248086, - 19055.435126715493, - 18599.36230558354, - 18098.05230879687, - 17568.673019695958, - 17022.764686797374, - 16469.395090361646, - 15911.80618712, - 15352.947128056472, - 14797.583698214823, - 14253.22878562026, - 13730.346466642277, - 13240.147752110974, - 12789.714810212412, - 12378.316828429055, - 11996.092319524541, - 11620.73663873214, - 11223.704524839426, - 10774.203046844448, - 10247.944200487045, - 9629.371432696227, - 8923.739481300208, - 8152.449470695303, - 7349.486908858106, - 6561.160670385684, - 5831.945803764648, - 5199.216464349381, - 4685.462352172203, - 4303.15509024568, - 4043.445709195215, - 3890.933707720284, - 3827.23903430252, - 3829.0206865446075, - 3883.280164145559, - 3979.2630837043807, - 4110.24603963507, - 4273.209670007788, - 4460.26015470809, - 4661.66821974912, - 4862.861394953094, - 5046.14644628348, - 5195.144017511566, - 5298.7811940907195, - 5351.658171481278, - 5357.104095833374, - 5327.547896458213, - 5275.090447369977, - 5214.015626901686, - 5154.3395424954315, - 5098.6770973602115, - 5044.133612153094, - 4983.730640645984, - 4909.628258443308, - 4817.51153307915, - 4707.6506463411115, - 4587.245764345948, - 4467.48498271015, - 4360.499520215625, - 4276.135237746379, - 4219.175213088137, - 4187.254952708937, - 4172.869351425859, - 4166.700909675246, - 4159.72599039541, - 4148.219209836105, - 4134.606472004611, - 4126.413599417224, - 4133.91787764829, - 4165.376221094201, - 4224.215323081133, - 4306.635858021229, - 4401.198746571229, - 4495.938476484982, - 4581.404406748087, - 4658.191337314533, - 4741.95903734858, - 4864.206725721303, - 5070.013093085549, - 5410.411020149704, - 5928.20188984307, - 6660.165621281385, - 7610.715284443078, - 8760.121533141139 - ], - "flow:J49:branch124_seg0": [ - 1.161059492791672, - 1.5077675206955166, - 1.8926063666342996, - 2.2968533242894886, - 2.699667848179293, - 3.0820560301788826, - 3.429181275243984, - 3.7319209353804967, - 3.986072966930474, - 4.192996707880102, - 4.3563489090942475, - 4.48042772669977, - 4.56957909765355, - 4.625865452613089, - 4.650284395479776, - 4.643108490954392, - 4.6042520848308515, - 4.535545696815204, - 4.439825504369948, - 4.321526075036094, - 4.186255829371748, - 4.0391560199235546, - 3.8848089555513274, - 3.726411474824713, - 3.565817041731907, - 3.404217124214118, - 3.242689891378085, - 3.082928949534402, - 2.92745226271064, - 2.779313363095844, - 2.641146769129369, - 2.5142419611968103, - 2.397400541299873, - 2.2864145540491854, - 2.174531163552977, - 2.0533835334426755, - 1.9148514371374068, - 1.752854179545206, - 1.5655248227870469, - 1.355394651530111, - 1.1299619781387147, - 0.9002658652187288, - 0.6788793766541408, - 0.47774854698793534, - 0.30632372455212636, - 0.17014649809714666, - 0.07013706994571227, - 0.0041781505536490435, - -0.032761555600628704, - -0.046383979796723, - -0.04169674438003967, - -0.0228260445183111, - 0.007831443590253322, - 0.04857423027909863, - 0.09769238601134056, - 0.15295704230177548, - 0.21081905197474815, - 0.26682158329977457, - 0.3161648924803008, - 0.354711107458358, - 0.37971924873220664, - 0.3907921214888383, - 0.3896122551624244, - 0.37934747477773373, - 0.36400894373579373, - 0.34696005253849604, - 0.3302477787313118, - 0.3142129478181089, - 0.2976471770747802, - 0.27856736551730765, - 0.25517228720286755, - 0.22671849469222838, - 0.19409375318008018, - 0.1596041960282933, - 0.12651003080289955, - 0.09801602892332904, - 0.0763651907490403, - 0.06211867735057258, - 0.054255194242539356, - 0.05047422566074739, - 0.048167653564748655, - 0.04547366505548475, - 0.04192321002394304, - 0.038674953118306515, - 0.03811289427037243, - 0.042849567810395534, - 0.05475339521181407, - 0.0739220872935933, - 0.09855780764893564, - 0.12556498340352457, - 0.15171417307189686, - 0.17550636507779827, - 0.19876410255730015, - 0.22756957911832193, - 0.2723280960253115, - 0.3461914343611358, - 0.46305907220488557, - 0.6347651045873637, - 0.8673437309556503, - 1.161059492791672 - ], - "pressure:J49:branch124_seg0": [ - 8760.121533141139, - 10069.05864195296, - 11466.405067215406, - 12882.452045149188, - 14246.571807400318, - 15498.713858763043, - 16598.534990696568, - 17531.7851514145, - 18293.78417376245, - 18896.815894768886, - 19363.50944911168, - 19703.47838893122, - 19930.62192045434, - 20049.613512909593, - 20057.302745805024, - 19958.40907719254, - 19750.88755760621, - 19443.925147248086, - 19055.435126715493, - 18599.36230558354, - 18098.05230879687, - 17568.673019695958, - 17022.764686797374, - 16469.395090361646, - 15911.80618712, - 15352.947128056472, - 14797.583698214823, - 14253.22878562026, - 13730.346466642277, - 13240.147752110974, - 12789.714810212412, - 12378.316828429055, - 11996.092319524541, - 11620.73663873214, - 11223.704524839426, - 10774.203046844448, - 10247.944200487045, - 9629.371432696227, - 8923.739481300208, - 8152.449470695303, - 7349.486908858106, - 6561.160670385684, - 5831.945803764648, - 5199.216464349381, - 4685.462352172203, - 4303.15509024568, - 4043.445709195215, - 3890.933707720284, - 3827.23903430252, - 3829.0206865446075, - 3883.280164145559, - 3979.2630837043807, - 4110.24603963507, - 4273.209670007788, - 4460.26015470809, - 4661.66821974912, - 4862.861394953094, - 5046.14644628348, - 5195.144017511566, - 5298.7811940907195, - 5351.658171481278, - 5357.104095833374, - 5327.547896458213, - 5275.090447369977, - 5214.015626901686, - 5154.3395424954315, - 5098.6770973602115, - 5044.133612153094, - 4983.730640645984, - 4909.628258443308, - 4817.51153307915, - 4707.6506463411115, - 4587.245764345948, - 4467.48498271015, - 4360.499520215625, - 4276.135237746379, - 4219.175213088137, - 4187.254952708937, - 4172.869351425859, - 4166.700909675246, - 4159.72599039541, - 4148.219209836105, - 4134.606472004611, - 4126.413599417224, - 4133.91787764829, - 4165.376221094201, - 4224.215323081133, - 4306.635858021229, - 4401.198746571229, - 4495.938476484982, - 4581.404406748087, - 4658.191337314533, - 4741.95903734858, - 4864.206725721303, - 5070.013093085549, - 5410.411020149704, - 5928.20188984307, - 6660.165621281385, - 7610.715284443078, - 8760.121533141139 - ], - "flow:branch118_seg0:J50": [ - 1.849482722522924, - 2.382586904248572, - 2.96320593272488, - 3.5618296384557078, - 4.147425210434948, - 4.693333226462732, - 5.180280458901831, - 5.598138369653267, - 5.94396899916335, - 6.2222581483416, - 6.439956272739669, - 6.603596850230396, - 6.719141062418726, - 6.788587443339006, - 6.812327881409787, - 6.790306907285159, - 6.7220818957053, - 6.610983300894425, - 6.461915310962808, - 6.28187905290721, - 6.0796428202152955, - 5.862581730625185, - 5.636888731339347, - 5.406545904567395, - 5.17351805963801, - 4.939132998187813, - 4.704938654791862, - 4.473710623604197, - 4.249576333075786, - 4.037287164239799, - 3.8405527973405924, - 3.660507767518057, - 3.4941948967980254, - 3.33395909308256, - 3.1686097733916516, - 2.9851905509283503, - 2.7720834460598196, - 2.5215655113436317, - 2.233120698752929, - 1.913005882510653, - 1.5746347306209918, - 1.2360138015609738, - 0.9162957782468552, - 0.6324842984386313, - 0.3967573990923674, - 0.21527292971855902, - 0.08677166979778819, - 0.0062633849627319535, - -0.03480245425417134, - -0.04528913706623764, - -0.03202966907546203, - -0.0002978601309067841, - 0.047210786099941185, - 0.10868772257242379, - 0.1817339510399187, - 0.262796743806135, - 0.34617045115777106, - 0.4248444013987046, - 0.4916402523357643, - 0.5408473958963012, - 0.5692646118692233, - 0.577418047159949, - 0.5689120575983322, - 0.5491293962940076, - 0.5242550649249074, - 0.4988756250925272, - 0.4751943060639687, - 0.45273004262394395, - 0.42885781820319807, - 0.4002141490572512, - 0.36426197576641384, - 0.32042859768098, - 0.27087458339777104, - 0.21976282680862233, - 0.17233054998089478, - 0.13323829594269107, - 0.10525804377234745, - 0.08835094333971459, - 0.08010444165705637, - 0.07655055682478924, - 0.07370854362435349, - 0.06923399094321135, - 0.06321595579593528, - 0.0582232197492321, - 0.05839539758279015, - 0.0677053561909111, - 0.0884611353059157, - 0.11993129625944317, - 0.1584624620539853, - 0.1988506953326039, - 0.23634753702337732, - 0.26967068631679586, - 0.30324319586636517, - 0.34819180815877726, - 0.4219642793595383, - 0.5452760369291227, - 0.7384493855514784, - 1.0179017173966116, - 1.3893799524501664, - 1.849482722522924 - ], - "pressure:branch118_seg0:J50": [ - 9282.193770254322, - 10664.794282409914, - 12107.511749955338, - 13536.620924588537, - 14883.904027246785, - 16094.119934130988, - 17134.808209698727, - 18002.071896820024, - 18699.498791199356, - 19243.26133051023, - 19661.128442741767, - 19959.299238429336, - 20149.67936035234, - 20235.017404795424, - 20207.516566167556, - 20073.90866977753, - 19830.918556348824, - 19489.92975318977, - 19074.281772585306, - 18596.516790195335, - 18080.80811106177, - 17544.01102347786, - 16994.508375907066, - 16440.025420986327, - 15881.843303874615, - 15322.264593888129, - 14767.096312139125, - 14225.149819870654, - 13708.228697837088, - 13227.912222262968, - 12790.074631529234, - 12390.308508982936, - 12014.861514349528, - 11636.631211262717, - 11223.692919437424, - 10744.390687623127, - 10177.402240111027, - 9511.369281470495, - 8759.496912202976, - 7951.803375796171, - 7127.471963730313, - 6337.626553087882, - 5627.020883327035, - 5029.924040644059, - 4561.118697971723, - 4229.026332195477, - 4016.8413674464787, - 3903.4314005928436, - 3870.8209902975364, - 3893.768589537175, - 3962.364783979491, - 4069.084001029035, - 4207.810743450715, - 4377.634569319446, - 4569.684983157797, - 4772.283738483633, - 4969.4297181724205, - 5141.995101888124, - 5273.7961268364525, - 5355.797423579792, - 5385.639255144656, - 5369.700044122676, - 5324.362067031955, - 5262.378804474934, - 5197.997666089048, - 5139.749331117889, - 5087.051491918224, - 5034.152147274851, - 4972.227871057474, - 4892.910327221558, - 4793.418579219569, - 4675.988259994041, - 4550.628324429901, - 4430.758133991987, - 4328.879596149374, - 4253.821019421399, - 4208.190673677502, - 4186.874415387183, - 4179.536106160302, - 4176.1884067728, - 4168.182426033039, - 4153.700711675992, - 4138.0128042038405, - 4131.046996635821, - 4144.301147570069, - 4185.4112963878715, - 4255.486801406766, - 4347.853811628559, - 4447.734963979199, - 4542.442511673815, - 4623.94325440165, - 4697.085058004973, - 4784.0538083193715, - 4923.402379883971, - 5166.201300913291, - 5567.0270961584865, - 6163.965368067789, - 6991.208747305304, - 8042.579151604474, - 9282.193770254322 - ], - "flow:J50:branch119_seg0": [ - 1.0423609410415111, - 1.3415747061506598, - 1.6666195696076938, - 2.0009419704881575, - 2.3271489923152346, - 2.630450237079729, - 2.9002813290192773, - 3.1312798006173748, - 3.3219501686514388, - 3.4750447877532493, - 3.5945673957270436, - 3.6841280999933916, - 3.747083954455719, - 3.784444150844753, - 3.796363727909602, - 3.782809968288631, - 3.7434991039865944, - 3.680366039597973, - 3.5962010112060896, - 3.494954355659124, - 3.381574401495833, - 3.2601484615089085, - 3.1340987154640647, - 3.0055942640968993, - 2.8756685107253257, - 2.745034336968039, - 2.6145489444912706, - 2.485783582017086, - 2.3610728597671957, - 2.243091363257816, - 2.133886118958887, - 2.0340375290688573, - 1.9418014001253439, - 1.8527772721218418, - 1.760630447043002, - 1.658072700063069, - 1.5386419010732075, - 1.3981055953004573, - 1.2363618376039507, - 1.0570743731389922, - 0.8679129508528655, - 0.6790731887543199, - 0.5012827305896316, - 0.3439872660421499, - 0.2138787973877968, - 0.1142226694941, - 0.04411694361638971, - 0.0006668988318086211, - -0.02101229306597002, - -0.025900964998123357, - -0.017759812511927892, - 0.0004975428966489292, - 0.02745050803962755, - 0.06212521153182882, - 0.10317067358715706, - 0.14860022625370103, - 0.1951750668667503, - 0.23894602883686014, - 0.2758991559268819, - 0.3028849564423522, - 0.3181665114149928, - 0.32213502551781426, - 0.3168987268398415, - 0.3055039702246895, - 0.2914378672798027, - 0.27723400473695814, - 0.2640594964749987, - 0.2515775169869043, - 0.2382608158852426, - 0.22220155560175586, - 0.20199206385196772, - 0.1773576906049454, - 0.14957174155594996, - 0.1210117231590875, - 0.09463633401808193, - 0.07304254254879598, - 0.057736893117419405, - 0.048622923609101275, - 0.044294714129745935, - 0.042487578679254394, - 0.0409639876727209, - 0.038452017965644056, - 0.0350593205473557, - 0.032284170529505635, - 0.03248666468868954, - 0.037888689182552664, - 0.04974979373952954, - 0.0675895023947471, - 0.08928609095281743, - 0.11189068513509624, - 0.1327480826887244, - 0.15121030868508634, - 0.16987902583856873, - 0.1951302543190642, - 0.236864991821487, - 0.30673739540427947, - 0.4161132944466336, - 0.5740548183278401, - 0.7835021647574735, - 1.0423609410415111 - ], - "pressure:J50:branch119_seg0": [ - 9282.193770254322, - 10664.794282409914, - 12107.511749955338, - 13536.620924588537, - 14883.904027246785, - 16094.119934130988, - 17134.808209698727, - 18002.071896820024, - 18699.498791199356, - 19243.26133051023, - 19661.128442741767, - 19959.299238429336, - 20149.67936035234, - 20235.017404795424, - 20207.516566167556, - 20073.90866977753, - 19830.918556348824, - 19489.92975318977, - 19074.281772585306, - 18596.516790195335, - 18080.80811106177, - 17544.01102347786, - 16994.508375907066, - 16440.025420986327, - 15881.843303874615, - 15322.264593888129, - 14767.096312139125, - 14225.149819870654, - 13708.228697837088, - 13227.912222262968, - 12790.074631529234, - 12390.308508982936, - 12014.861514349528, - 11636.631211262717, - 11223.692919437424, - 10744.390687623127, - 10177.402240111027, - 9511.369281470495, - 8759.496912202976, - 7951.803375796171, - 7127.471963730313, - 6337.626553087882, - 5627.020883327035, - 5029.924040644059, - 4561.118697971723, - 4229.026332195477, - 4016.8413674464787, - 3903.4314005928436, - 3870.8209902975364, - 3893.768589537175, - 3962.364783979491, - 4069.084001029035, - 4207.810743450715, - 4377.634569319446, - 4569.684983157797, - 4772.283738483633, - 4969.4297181724205, - 5141.995101888124, - 5273.7961268364525, - 5355.797423579792, - 5385.639255144656, - 5369.700044122676, - 5324.362067031955, - 5262.378804474934, - 5197.997666089048, - 5139.749331117889, - 5087.051491918224, - 5034.152147274851, - 4972.227871057474, - 4892.910327221558, - 4793.418579219569, - 4675.988259994041, - 4550.628324429901, - 4430.758133991987, - 4328.879596149374, - 4253.821019421399, - 4208.190673677502, - 4186.874415387183, - 4179.536106160302, - 4176.1884067728, - 4168.182426033039, - 4153.700711675992, - 4138.0128042038405, - 4131.046996635821, - 4144.301147570069, - 4185.4112963878715, - 4255.486801406766, - 4347.853811628559, - 4447.734963979199, - 4542.442511673815, - 4623.94325440165, - 4697.085058004973, - 4784.0538083193715, - 4923.402379883971, - 5166.201300913291, - 5567.0270961584865, - 6163.965368067789, - 6991.208747305304, - 8042.579151604474, - 9282.193770254322 - ], - "flow:J50:branch127_seg0": [ - 0.8071217814814132, - 1.0410121980979126, - 1.296586363117186, - 1.5608876679675507, - 1.8202762181197123, - 2.062882989383003, - 2.2799991298825537, - 2.466858569035893, - 2.6220188305119128, - 2.7472133605883493, - 2.845388877012624, - 2.9194687502370043, - 2.972057107963006, - 3.004143292494254, - 3.015964153500185, - 3.007496938996528, - 2.978582791718707, - 2.9306172612964523, - 2.8657142997567173, - 2.786924697248087, - 2.6980684187194623, - 2.6024332691162755, - 2.502790015875283, - 2.4009516404704954, - 2.2978495489126844, - 2.194098661219774, - 2.0903897103005917, - 1.9879270415871115, - 1.8885034733085904, - 1.7941958009819838, - 1.7066666783817057, - 1.6264702384491994, - 1.552393496672682, - 1.4811818209607175, - 1.40797932634865, - 1.3271178508652808, - 1.2334415449866118, - 1.1234599160431746, - 0.9967588611489779, - 0.8559315093716602, - 0.7067217797681266, - 0.5569406128066541, - 0.41501304765722336, - 0.28849703239648145, - 0.18287860170457063, - 0.10105026022445908, - 0.04265472618139847, - 0.005596486130923331, - -0.013790161188201318, - -0.01938817206811429, - -0.014269856563534132, - -0.0007954030275557127, - 0.01976027806031364, - 0.04656251104059496, - 0.07856327745276163, - 0.11419651755243407, - 0.15099538429102077, - 0.18589837256184444, - 0.2157410964088824, - 0.23796243945394896, - 0.25109810045423053, - 0.2552830216421349, - 0.25201333075849075, - 0.24362542606931784, - 0.23281719764510472, - 0.22164162035556903, - 0.21113480958896988, - 0.2011525256370397, - 0.19059700231795546, - 0.17801259345549528, - 0.16226991191444604, - 0.1430709070760346, - 0.12130284184182102, - 0.09875110364953482, - 0.07769421596281281, - 0.06019575339389511, - 0.04752115065492802, - 0.0397280197306133, - 0.03580972752731044, - 0.03406297814553486, - 0.03274455595163256, - 0.030781972977567303, - 0.028156635248579604, - 0.025939049219726455, - 0.025908732894100624, - 0.02981666700835844, - 0.03871134156638615, - 0.05234179386469606, - 0.06917637110116784, - 0.0869600101975077, - 0.10359945433465294, - 0.11846037763170948, - 0.13336417002779632, - 0.15306155383971312, - 0.18509928753805144, - 0.23853864152484333, - 0.322336091104845, - 0.4438468990687711, - 0.6058777876926934, - 0.8071217814814132 - ], - "pressure:J50:branch127_seg0": [ - 9282.193770254322, - 10664.794282409914, - 12107.511749955338, - 13536.620924588537, - 14883.904027246785, - 16094.119934130988, - 17134.808209698727, - 18002.071896820024, - 18699.498791199356, - 19243.26133051023, - 19661.128442741767, - 19959.299238429336, - 20149.67936035234, - 20235.017404795424, - 20207.516566167556, - 20073.90866977753, - 19830.918556348824, - 19489.92975318977, - 19074.281772585306, - 18596.516790195335, - 18080.80811106177, - 17544.01102347786, - 16994.508375907066, - 16440.025420986327, - 15881.843303874615, - 15322.264593888129, - 14767.096312139125, - 14225.149819870654, - 13708.228697837088, - 13227.912222262968, - 12790.074631529234, - 12390.308508982936, - 12014.861514349528, - 11636.631211262717, - 11223.692919437424, - 10744.390687623127, - 10177.402240111027, - 9511.369281470495, - 8759.496912202976, - 7951.803375796171, - 7127.471963730313, - 6337.626553087882, - 5627.020883327035, - 5029.924040644059, - 4561.118697971723, - 4229.026332195477, - 4016.8413674464787, - 3903.4314005928436, - 3870.8209902975364, - 3893.768589537175, - 3962.364783979491, - 4069.084001029035, - 4207.810743450715, - 4377.634569319446, - 4569.684983157797, - 4772.283738483633, - 4969.4297181724205, - 5141.995101888124, - 5273.7961268364525, - 5355.797423579792, - 5385.639255144656, - 5369.700044122676, - 5324.362067031955, - 5262.378804474934, - 5197.997666089048, - 5139.749331117889, - 5087.051491918224, - 5034.152147274851, - 4972.227871057474, - 4892.910327221558, - 4793.418579219569, - 4675.988259994041, - 4550.628324429901, - 4430.758133991987, - 4328.879596149374, - 4253.821019421399, - 4208.190673677502, - 4186.874415387183, - 4179.536106160302, - 4176.1884067728, - 4168.182426033039, - 4153.700711675992, - 4138.0128042038405, - 4131.046996635821, - 4144.301147570069, - 4185.4112963878715, - 4255.486801406766, - 4347.853811628559, - 4447.734963979199, - 4542.442511673815, - 4623.94325440165, - 4697.085058004973, - 4784.0538083193715, - 4923.402379883971, - 5166.201300913291, - 5567.0270961584865, - 6163.965368067789, - 6991.208747305304, - 8042.579151604474, - 9282.193770254322 - ], - "flow:branch120_seg0:J51": [ - 1.714579434568278, - 2.209604966934831, - 2.748287440731905, - 3.303361383435326, - 3.8455987046570446, - 4.350056791227816, - 4.798775271195424, - 5.182560587370538, - 5.498325830924037, - 5.7506565321245615, - 5.946252778749196, - 6.091150140730769, - 6.191366604918954, - 6.24878926879072, - 6.263966563566846, - 6.237066374494553, - 6.1676651222721475, - 6.059022373909975, - 5.9156722128862995, - 5.744182440158496, - 5.552815961970437, - 5.3483512411922245, - 5.136598544662836, - 4.921252881378908, - 4.704082060676271, - 4.486299415930567, - 4.269266056658968, - 4.055506915645432, - 3.8488031109991643, - 3.6535425546971125, - 3.4730858196729146, - 3.3084791602704553, - 3.156923674353556, - 3.0111718179647617, - 2.860796919777103, - 2.693656508348864, - 2.498872611303358, - 2.2691710821926914, - 2.004136275098747, - 1.709520287594945, - 1.3978734141305484, - 1.08608955293569, - 0.7920163068033554, - 0.5315371232856831, - 0.3161669608964612, - 0.15153180740955552, - 0.03636660654685029, - -0.0338597719113264, - -0.06737407329739892, - -0.07253131178351693, - -0.0557290283323926, - -0.022128212695463088, - 0.025826364945728895, - 0.08635352213548501, - 0.15711452718142976, - 0.2349086611126435, - 0.31437052334793864, - 0.3889870610710469, - 0.45211237968494233, - 0.49849337532817967, - 0.5251272988651621, - 0.5325989782751814, - 0.5243657416178794, - 0.5054438946519099, - 0.4817187807190905, - 0.4575204618434252, - 0.4349391667580637, - 0.4135828312565186, - 0.391021765108595, - 0.364128930991112, - 0.33051775863170973, - 0.2896596478497734, - 0.2435706671517372, - 0.196095783094177, - 0.15212966971896086, - 0.11602359607370089, - 0.09036624999114394, - 0.07507348481473289, - 0.0679373488212458, - 0.06521460505082916, - 0.06314004729029284, - 0.0595348615888994, - 0.05445198790557652, - 0.050267245307073896, - 0.05084346709570944, - 0.05987021495132181, - 0.0795303793568105, - 0.10913035393052421, - 0.14524141413168573, - 0.183028082109771, - 0.2180224658991168, - 0.2489957073963095, - 0.28005244533339824, - 0.32154714370548837, - 0.38974082532493776, - 0.5038691418718474, - 0.6830488925275345, - 0.9424670489440292, - 1.2872095787736337, - 1.714579434568278 - ], - "pressure:branch120_seg0:J51": [ - 8643.496253630481, - 9947.583023770869, - 11349.80972859263, - 12779.348946100168, - 14162.34038952514, - 15436.763098709356, - 16559.91115185697, - 17513.548094205842, - 18292.613982609608, - 18910.233545876723, - 19386.76214348079, - 19735.346110051414, - 19970.81171478046, - 20097.470192211276, - 20114.455566709534, - 20023.869683960915, - 19824.12031858769, - 19524.562735910695, - 19139.691037391927, - 18685.52857835983, - 18184.22693204302, - 17652.938505609276, - 17105.013665921513, - 16549.46838517062, - 15989.926111559056, - 15429.300988117393, - 14871.620031986635, - 14323.959189971272, - 13796.582958536628, - 13300.85628987121, - 12844.657312502699, - 12428.796761379603, - 12044.325140320596, - 11670.20838862614, - 11278.211024252281, - 10836.873407955007, - 10319.81889295572, - 9710.240608733091, - 9010.8809130445, - 8240.518275134225, - 7433.473919625345, - 6635.390105175636, - 5892.026926009992, - 5242.548569753221, - 4712.967542389543, - 4315.976264548751, - 4044.535557249172, - 3884.7178120006465, - 3815.8151116171534, - 3815.2185216209336, - 3868.2289655531304, - 3962.7783352106003, - 4092.7489615368163, - 4254.523251579757, - 4441.164490721328, - 4643.659711634718, - 4847.579970883978, - 5035.496188371998, - 5190.551608520827, - 5300.424440203138, - 5358.793651062689, - 5368.508143150076, - 5340.508458898102, - 5287.770372721254, - 5225.28701492237, - 5163.562424081944, - 5106.448222707731, - 5051.703955504716, - 4992.374134171036, - 4920.30795091539, - 4830.195413794998, - 4721.630265007041, - 4601.115338122078, - 4479.442022601194, - 4369.23993771089, - 4281.120277249421, - 4220.694884292605, - 4186.398251818161, - 4171.336635027224, - 4165.745524798143, - 4160.1045968015405, - 4149.815453962681, - 4136.352923785407, - 4126.841052624971, - 4131.67038362664, - 4159.867779365617, - 4215.897645484596, - 4296.669333119701, - 4391.769204190298, - 4488.620880603741, - 4576.596473466506, - 4654.606959606988, - 4736.298059137072, - 4851.512000971858, - 5044.651768723067, - 5366.548511559776, - 5863.835458421396, - 6574.33154405226, - 7505.496425972577, - 8643.496253630481 - ], - "flow:J51:branch121_seg0": [ - 0.7775752840940786, - 1.004754392340853, - 1.253347559485209, - 1.5107172773282007, - 1.7633003168386348, - 1.999347995842835, - 2.210214232087434, - 2.391180508111509, - 2.540629966984781, - 2.660444998711551, - 2.7535401888022983, - 2.822887685727098, - 2.871261613837652, - 2.899664175971647, - 2.908482646485644, - 2.89770156074224, - 2.867188999814021, - 2.8183200361601757, - 2.753064226916385, - 2.6744925002718247, - 2.586339618568464, - 2.4918208127999866, - 2.3937216145217395, - 2.2938123391125127, - 2.193001556602839, - 2.0918659700390645, - 1.9910137231921785, - 1.8915707159712845, - 1.7952439181519688, - 1.704051767642077, - 1.619614239037027, - 1.5425375674598576, - 1.4716673193576626, - 1.403839120456678, - 1.3343245931815926, - 1.2575280821167794, - 1.1683071355943961, - 1.063141192061849, - 0.9415246369619249, - 0.8058532647798848, - 0.6617412768230744, - 0.5168360666624414, - 0.3794262219810677, - 0.256997930084705, - 0.15511707845671951, - 0.07658179183595457, - 0.021132133964627958, - -0.013218031079105314, - -0.030221270522595243, - -0.03368976294629262, - -0.026737480187159962, - -0.011805966980780265, - 0.009892595471581337, - 0.03747319574869407, - 0.0699225835796838, - 0.10578724284555407, - 0.14265280670016278, - 0.17755228498536205, - 0.2073890620237648, - 0.22964207859905889, - 0.24282362448288272, - 0.24707196319783817, - 0.24384012620572804, - 0.2354393300749165, - 0.2245792384300648, - 0.21332905431193858, - 0.20277405503158474, - 0.1928290889880468, - 0.18243649128243253, - 0.170163222246128, - 0.15485234601283593, - 0.1361817816146274, - 0.11497545775369199, - 0.09294946326703302, - 0.07235284814911046, - 0.055238722418250515, - 0.04288632114927116, - 0.03537452582348534, - 0.031764354439681335, - 0.0303539208026049, - 0.029396163733131624, - 0.027799432750196806, - 0.02548719953539081, - 0.02347486310470038, - 0.023505508543821028, - 0.027317332438521854, - 0.03599911528012245, - 0.04934302473266791, - 0.06588434542157795, - 0.0834046601783154, - 0.09979074154677059, - 0.11432064597514686, - 0.1286610183615192, - 0.1473579576948876, - 0.17773181129256235, - 0.22860621762056746, - 0.3089522094402517, - 0.4259375348277272, - 0.5824396107056213, - 0.7775752840940786 - ], - "pressure:J51:branch121_seg0": [ - 8643.496253630481, - 9947.583023770869, - 11349.80972859263, - 12779.348946100168, - 14162.34038952514, - 15436.763098709356, - 16559.91115185697, - 17513.548094205842, - 18292.613982609608, - 18910.233545876723, - 19386.76214348079, - 19735.346110051414, - 19970.81171478046, - 20097.470192211276, - 20114.455566709534, - 20023.869683960915, - 19824.12031858769, - 19524.562735910695, - 19139.691037391927, - 18685.52857835983, - 18184.22693204302, - 17652.938505609276, - 17105.013665921513, - 16549.46838517062, - 15989.926111559056, - 15429.300988117393, - 14871.620031986635, - 14323.959189971272, - 13796.582958536628, - 13300.85628987121, - 12844.657312502699, - 12428.796761379603, - 12044.325140320596, - 11670.20838862614, - 11278.211024252281, - 10836.873407955007, - 10319.81889295572, - 9710.240608733091, - 9010.8809130445, - 8240.518275134225, - 7433.473919625345, - 6635.390105175636, - 5892.026926009992, - 5242.548569753221, - 4712.967542389543, - 4315.976264548751, - 4044.535557249172, - 3884.7178120006465, - 3815.8151116171534, - 3815.2185216209336, - 3868.2289655531304, - 3962.7783352106003, - 4092.7489615368163, - 4254.523251579757, - 4441.164490721328, - 4643.659711634718, - 4847.579970883978, - 5035.496188371998, - 5190.551608520827, - 5300.424440203138, - 5358.793651062689, - 5368.508143150076, - 5340.508458898102, - 5287.770372721254, - 5225.28701492237, - 5163.562424081944, - 5106.448222707731, - 5051.703955504716, - 4992.374134171036, - 4920.30795091539, - 4830.195413794998, - 4721.630265007041, - 4601.115338122078, - 4479.442022601194, - 4369.23993771089, - 4281.120277249421, - 4220.694884292605, - 4186.398251818161, - 4171.336635027224, - 4165.745524798143, - 4160.1045968015405, - 4149.815453962681, - 4136.352923785407, - 4126.841052624971, - 4131.67038362664, - 4159.867779365617, - 4215.897645484596, - 4296.669333119701, - 4391.769204190298, - 4488.620880603741, - 4576.596473466506, - 4654.606959606988, - 4736.298059137072, - 4851.512000971858, - 5044.651768723067, - 5366.548511559776, - 5863.835458421396, - 6574.33154405226, - 7505.496425972577, - 8643.496253630481 - ], - "flow:J51:branch128_seg0": [ - 0.9370041504741997, - 1.204850574593979, - 1.4949398812466956, - 1.7926441061071254, - 2.08229838781841, - 2.3507087953849823, - 2.5885610391079883, - 2.791380079259029, - 2.957695863939255, - 3.0902115334130116, - 3.1927125899468973, - 3.2682624550036707, - 3.3201049910813025, - 3.349125092819073, - 3.3554839170812008, - 3.3393648137523138, - 3.300476122458126, - 3.240702337749799, - 3.162607985969913, - 3.0696899398866724, - 2.9664763434019723, - 2.8565304283922384, - 2.7428769301410973, - 2.627440542266395, - 2.5110805040734316, - 2.394433445891503, - 2.2782523334667895, - 2.1639361996741466, - 2.0535591928471946, - 1.949490787055035, - 1.8534715806358875, - 1.7659415928105986, - 1.685256354995893, - 1.6073326975080835, - 1.5264723265955107, - 1.4361284262320855, - 1.3305654757089622, - 1.2060298901308422, - 1.062611638136821, - 0.9036670228150604, - 0.7361321373074744, - 0.5692534862732486, - 0.412590084822288, - 0.2745391932009781, - 0.16104988243974164, - 0.07495001557360093, - 0.01523447258222234, - -0.020641740832221093, - -0.03715280277480366, - -0.03884154883722433, - -0.028991548145232634, - -0.010322245714682824, - 0.015933769474147555, - 0.04888032638679095, - 0.08719194360174595, - 0.1291214182670894, - 0.17171771664777583, - 0.21143477608568484, - 0.24472331766117747, - 0.26885129672912067, - 0.2823036743822795, - 0.2855270150773432, - 0.2805256154121514, - 0.27000456457699334, - 0.2571395422890257, - 0.24419140753148658, - 0.23216511172647897, - 0.22075374226847194, - 0.2085852738261625, - 0.19396570874498395, - 0.17566541261887383, - 0.1534778662351459, - 0.1285952093980452, - 0.10314631982714396, - 0.07977682156985044, - 0.06078487365545038, - 0.04747992884187279, - 0.03969895899124758, - 0.03617299438156446, - 0.034860684248224263, - 0.033743883557161215, - 0.03173542883870259, - 0.028964788370185707, - 0.026792382202373524, - 0.027337958551888406, - 0.03255288251279997, - 0.043531264076688045, - 0.05978732919785633, - 0.07935706871010777, - 0.0996234219314556, - 0.11823172435234625, - 0.13467506142116267, - 0.151391426971879, - 0.17418918601060074, - 0.21200901403237538, - 0.27526292425127996, - 0.37409668308728283, - 0.5165295141163021, - 0.7047699680680126, - 0.9370041504741997 - ], - "pressure:J51:branch128_seg0": [ - 8643.496253630481, - 9947.583023770869, - 11349.80972859263, - 12779.348946100168, - 14162.34038952514, - 15436.763098709356, - 16559.91115185697, - 17513.548094205842, - 18292.613982609608, - 18910.233545876723, - 19386.76214348079, - 19735.346110051414, - 19970.81171478046, - 20097.470192211276, - 20114.455566709534, - 20023.869683960915, - 19824.12031858769, - 19524.562735910695, - 19139.691037391927, - 18685.52857835983, - 18184.22693204302, - 17652.938505609276, - 17105.013665921513, - 16549.46838517062, - 15989.926111559056, - 15429.300988117393, - 14871.620031986635, - 14323.959189971272, - 13796.582958536628, - 13300.85628987121, - 12844.657312502699, - 12428.796761379603, - 12044.325140320596, - 11670.20838862614, - 11278.211024252281, - 10836.873407955007, - 10319.81889295572, - 9710.240608733091, - 9010.8809130445, - 8240.518275134225, - 7433.473919625345, - 6635.390105175636, - 5892.026926009992, - 5242.548569753221, - 4712.967542389543, - 4315.976264548751, - 4044.535557249172, - 3884.7178120006465, - 3815.8151116171534, - 3815.2185216209336, - 3868.2289655531304, - 3962.7783352106003, - 4092.7489615368163, - 4254.523251579757, - 4441.164490721328, - 4643.659711634718, - 4847.579970883978, - 5035.496188371998, - 5190.551608520827, - 5300.424440203138, - 5358.793651062689, - 5368.508143150076, - 5340.508458898102, - 5287.770372721254, - 5225.28701492237, - 5163.562424081944, - 5106.448222707731, - 5051.703955504716, - 4992.374134171036, - 4920.30795091539, - 4830.195413794998, - 4721.630265007041, - 4601.115338122078, - 4479.442022601194, - 4369.23993771089, - 4281.120277249421, - 4220.694884292605, - 4186.398251818161, - 4171.336635027224, - 4165.745524798143, - 4160.1045968015405, - 4149.815453962681, - 4136.352923785407, - 4126.841052624971, - 4131.67038362664, - 4159.867779365617, - 4215.897645484596, - 4296.669333119701, - 4391.769204190298, - 4488.620880603741, - 4576.596473466506, - 4654.606959606988, - 4736.298059137072, - 4851.512000971858, - 5044.651768723067, - 5366.548511559776, - 5863.835458421396, - 6574.33154405226, - 7505.496425972577, - 8643.496253630481 - ], - "flow:branch124_seg2:J52": [ - 1.1567367058316544, - 1.5029848038569789, - 1.8875775646560962, - 2.2918792047779637, - 2.694971948148608, - 3.0778051178573604, - 3.4254878055216595, - 3.728859748984172, - 3.983581489393177, - 4.191041432506781, - 4.354874851983057, - 4.479364920260473, - 4.568923845752419, - 4.625594122889988, - 4.650402167413849, - 4.6436122562296305, - 4.605124146486171, - 4.536766381999302, - 4.441309789138786, - 4.323209480687929, - 4.188086277188186, - 4.04106188960103, - 3.88675947409371, - 3.7283850034082713, - 3.5677988903407054, - 3.40620043439214, - 3.244651510457173, - 3.084836482577265, - 2.9292665181185757, - 2.7810029473534614, - 2.642687906981854, - 2.5156560677674142, - 2.398743332258232, - 2.2877648987875645, - 2.1760013858327536, - 2.0550805114946473, - 1.9168454675095765, - 1.7551720093055685, - 1.5681386523767884, - 1.3581950041215878, - 1.1328078245627917, - 0.9030034949584332, - 0.6813487782825696, - 0.479819714400233, - 0.30796659713626207, - 0.1713363618194855, - 0.07088647830692625, - 0.004592504830266528, - -0.032633504833718734, - -0.04647246578924686, - -0.04194085742229854, - -0.023223782408883956, - 0.00731942960920641, - 0.047965034642079935, - 0.0970000595292903, - 0.15223703172248554, - 0.21012459046918924, - 0.26621125492082354, - 0.3156937798353593, - 0.3544154723256461, - 0.37959789615152495, - 0.3908245287028343, - 0.38975623695877926, - 0.379547329293492, - 0.3642257114363394, - 0.3471669901263442, - 0.33044048567647616, - 0.31441104543966203, - 0.29787836564036885, - 0.27885778527929367, - 0.2555261034403598, - 0.22712566381148006, - 0.1945272918526726, - 0.1600161870328448, - 0.1268592469602401, - 0.0982765746342585, - 0.07653302235411207, - 0.06220084898559409, - 0.05429126861066862, - 0.05049803168904326, - 0.04819838438618359, - 0.045519709274245534, - 0.04196822650598828, - 0.038686568607118825, - 0.038055961201910925, - 0.04269864596741254, - 0.05450939625929703, - 0.07360808440680175, - 0.09821575296868616, - 0.12524078920777335, - 0.15142783213605956, - 0.17523429285002604, - 0.19842839738754098, - 0.22703792612689994, - 0.2714325112898419, - 0.3447294419343068, - 0.4609287761850321, - 0.6318808201355101, - 0.8636369000306856, - 1.1567367058316544 - ], - "pressure:branch124_seg2:J52": [ - 8139.23884084945, - 9341.184739359149, - 10657.694685557099, - 12024.463722565497, - 13371.535575904325, - 14636.573235594571, - 15773.12520763573, - 16756.33927110444, - 17574.53667364064, - 18235.11821819815, - 18753.791091571624, - 19142.980112182384, - 19417.312184110964, - 19582.811664403234, - 19640.614517142432, - 19593.045550665578, - 19439.072535363168, - 19185.700166006824, - 18845.150062981145, - 18431.85418200587, - 17965.757927711125, - 17463.923934966962, - 16940.45606006751, - 16405.50372179242, - 15864.261492093281, - 15320.35851935466, - 14777.70897366162, - 14242.53653692765, - 13723.875582025876, - 13232.278830671428, - 12775.937312120759, - 12357.646193582665, - 11971.579212957879, - 11601.018972130245, - 11221.63790180655, - 10804.606885166288, - 10323.771264489304, - 9760.270236842664, - 9111.583837035414, - 8390.212440237052, - 7623.912071024448, - 6852.611941310454, - 6118.887419613296, - 5461.773613004905, - 4909.985282627403, - 4479.93328629802, - 4170.828695251572, - 3973.145902337293, - 3869.4004639467007, - 3839.2505794431986, - 3867.2596021225913, - 3940.5034609617824, - 4051.6358145641643, - 4195.770590594501, - 4366.482670706478, - 4555.793037625256, - 4750.954434690401, - 4936.217435553016, - 5095.486585639854, - 5215.884280054088, - 5289.368739270129, - 5316.108657168081, - 5303.995368819888, - 5263.937601115526, - 5209.662276288247, - 5152.017210677161, - 5096.455360446885, - 5042.84724745573, - 4986.214813828888, - 4919.536038006592, - 4837.304750414209, - 4737.923476750692, - 4625.694155962341, - 4509.3893771288895, - 4400.298312167128, - 4308.854296413042, - 4241.69592894522, - 4199.285283992751, - 4176.9967205989715, - 4166.579950051392, - 4159.19453610185, - 4149.452384798327, - 4137.043520469147, - 4126.992437375353, - 4128.002014607681, - 4148.634334024713, - 4194.271797235268, - 4263.949329437934, - 4349.88228038269, - 4441.281915430456, - 4527.738506130875, - 4605.96827877252, - 4685.033510507657, - 4788.714456519212, - 4954.93894811175, - 5229.735320202841, - 5658.512534417656, - 6279.701020074318, - 7108.248141881357, - 8139.23884084945 - ], - "flow:J52:branch125_seg0": [ - 0.712930754887276, - 0.9272139382068546, - 1.1657217771708799, - 1.4169003455852225, - 1.6677670691742803, - 1.9064292798778035, - 2.123526734884179, - 2.3132094676303203, - 2.4727006594305414, - 2.602759464351906, - 2.7055705905871648, - 2.783832085090827, - 2.8402782804028033, - 2.876224688897178, - 2.8923536888277837, - 2.8888143687689896, - 2.865563788008808, - 2.8236955106948884, - 2.7648916215994297, - 2.691911903277729, - 2.608215366963, - 2.5170040190290934, - 2.421175759977212, - 2.3227476481284235, - 2.2229089597960203, - 2.122415844214723, - 2.02192637438009, - 1.9224736501141992, - 1.82560165659319, - 1.733204304564701, - 1.6469409830962363, - 1.5676788943688216, - 1.4947467271828292, - 1.4256152178577068, - 1.356153732768446, - 1.2811818127639407, - 1.1956069489033136, - 1.0955729428516408, - 0.9797790242545462, - 0.8496463786697898, - 0.7097265276322152, - 0.5667963430409405, - 0.4286556539394512, - 0.3027819163282346, - 0.19518208680733262, - 0.10938607372621541, - 0.046107449893597705, - 0.0041407911287320975, - -0.01963152290142828, - -0.02871839474920006, - -0.026277337072867387, - -0.0149266117970465, - 0.0038309959115224706, - 0.028902085235520077, - 0.05923715985165127, - 0.09348354779186384, - 0.12945997806830922, - 0.16441921376395996, - 0.19537464747807803, - 0.21971759785148867, - 0.2356879314038415, - 0.24297770368603822, - 0.24256459061316032, - 0.23639296100715226, - 0.2269536824052672, - 0.2163622437478197, - 0.20594259633631018, - 0.19595812931303852, - 0.18569270705326466, - 0.17392481526205045, - 0.1595104562334059, - 0.14195296350457376, - 0.12175484973954336, - 0.10030944743193478, - 0.07963364620626275, - 0.06173625095618965, - 0.0480502115758064, - 0.038973063338557, - 0.0339226373185162, - 0.03148512440568701, - 0.030035007899576745, - 0.028384093695625615, - 0.026191380994145693, - 0.02413360480285503, - 0.023668630405296803, - 0.026429178517745507, - 0.033615386806066856, - 0.04534104855609746, - 0.06054581363405679, - 0.0773251707274464, - 0.09364929555856132, - 0.10851331695578653, - 0.1229365933119055, - 0.14057357727602607, - 0.16778365352679575, - 0.21267634879464994, - 0.2839657398001166, - 0.38906321323862175, - 0.5319004865031236, - 0.712930754887276 - ], - "pressure:J52:branch125_seg0": [ - 8139.23884084945, - 9341.184739359149, - 10657.694685557099, - 12024.463722565497, - 13371.535575904325, - 14636.573235594571, - 15773.12520763573, - 16756.33927110444, - 17574.53667364064, - 18235.11821819815, - 18753.791091571624, - 19142.980112182384, - 19417.312184110964, - 19582.811664403234, - 19640.614517142432, - 19593.045550665578, - 19439.072535363168, - 19185.700166006824, - 18845.150062981145, - 18431.85418200587, - 17965.757927711125, - 17463.923934966962, - 16940.45606006751, - 16405.50372179242, - 15864.261492093281, - 15320.35851935466, - 14777.70897366162, - 14242.53653692765, - 13723.875582025876, - 13232.278830671428, - 12775.937312120759, - 12357.646193582665, - 11971.579212957879, - 11601.018972130245, - 11221.63790180655, - 10804.606885166288, - 10323.771264489304, - 9760.270236842664, - 9111.583837035414, - 8390.212440237052, - 7623.912071024448, - 6852.611941310454, - 6118.887419613296, - 5461.773613004905, - 4909.985282627403, - 4479.93328629802, - 4170.828695251572, - 3973.145902337293, - 3869.4004639467007, - 3839.2505794431986, - 3867.2596021225913, - 3940.5034609617824, - 4051.6358145641643, - 4195.770590594501, - 4366.482670706478, - 4555.793037625256, - 4750.954434690401, - 4936.217435553016, - 5095.486585639854, - 5215.884280054088, - 5289.368739270129, - 5316.108657168081, - 5303.995368819888, - 5263.937601115526, - 5209.662276288247, - 5152.017210677161, - 5096.455360446885, - 5042.84724745573, - 4986.214813828888, - 4919.536038006592, - 4837.304750414209, - 4737.923476750692, - 4625.694155962341, - 4509.3893771288895, - 4400.298312167128, - 4308.854296413042, - 4241.69592894522, - 4199.285283992751, - 4176.9967205989715, - 4166.579950051392, - 4159.19453610185, - 4149.452384798327, - 4137.043520469147, - 4126.992437375353, - 4128.002014607681, - 4148.634334024713, - 4194.271797235268, - 4263.949329437934, - 4349.88228038269, - 4441.281915430456, - 4527.738506130875, - 4605.96827877252, - 4685.033510507657, - 4788.714456519212, - 4954.93894811175, - 5229.735320202841, - 5658.512534417656, - 6279.701020074318, - 7108.248141881357, - 8139.23884084945 - ], - "flow:J52:branch136_seg0": [ - 0.44380595094437864, - 0.5757708656501244, - 0.7218557874852164, - 0.8749788591927408, - 1.0272048789743278, - 1.1713758379795562, - 1.3019610706374816, - 1.415650281353851, - 1.5108808299626362, - 1.5882819681548757, - 1.6493042613958915, - 1.6955328351696461, - 1.7286455653496162, - 1.7493694339928103, - 1.758048478586064, - 1.754797887460641, - 1.739560358477363, - 1.7130708713044132, - 1.6764181675393555, - 1.6312975774102003, - 1.579870910225186, - 1.5240578705719354, - 1.4655837141164985, - 1.405637355279848, - 1.3448899305446844, - 1.283784590177417, - 1.2227251360770839, - 1.1623628324630657, - 1.1036648615253848, - 1.0477986427887602, - 0.9957469238856181, - 0.9479771733985922, - 0.9039966050754028, - 0.8621496809298579, - 0.819847653064307, - 0.7738986987307073, - 0.7212385186062629, - 0.6595990664539276, - 0.5883596281222425, - 0.5085486254517979, - 0.4230812969305768, - 0.3362071519174927, - 0.25269312434311836, - 0.17703779807199851, - 0.11278451032892953, - 0.06195028809327008, - 0.024779028413328553, - 0.0004517137015344308, - -0.013001981932290458, - -0.0177540710400468, - -0.015663520349431158, - -0.008297170611837457, - 0.0034884336976839397, - 0.01906294940655986, - 0.03776289967763904, - 0.058753483930621644, - 0.08066461240087998, - 0.10179204115686365, - 0.12031913235728124, - 0.1346978744741575, - 0.1439099647476835, - 0.1478468250167961, - 0.14719164634561888, - 0.14315436828633973, - 0.13727202903107227, - 0.13080474637852454, - 0.12449788934016595, - 0.11845291612662352, - 0.11218565858710423, - 0.10493297001724317, - 0.09601564720695384, - 0.08517270030690624, - 0.07277244211312925, - 0.05970673960091, - 0.04722560075397735, - 0.03654032367806886, - 0.028482810778305667, - 0.023227785647037084, - 0.02036863129215241, - 0.01901290728335625, - 0.01816337648660685, - 0.017135615578619923, - 0.01577684551184259, - 0.014552963804263802, - 0.014387330796614124, - 0.016269467449667046, - 0.02089400945323017, - 0.028267035850704295, - 0.03766993933462937, - 0.047915618480326945, - 0.05777853657749824, - 0.06672097589423949, - 0.07549180407563542, - 0.08646434885087383, - 0.10364885776304608, - 0.13205309313965685, - 0.1769630363849155, - 0.24281760689688828, - 0.3317364135275623, - 0.44380595094437864 - ], - "pressure:J52:branch136_seg0": [ - 8139.23884084945, - 9341.184739359149, - 10657.694685557099, - 12024.463722565497, - 13371.535575904325, - 14636.573235594571, - 15773.12520763573, - 16756.33927110444, - 17574.53667364064, - 18235.11821819815, - 18753.791091571624, - 19142.980112182384, - 19417.312184110964, - 19582.811664403234, - 19640.614517142432, - 19593.045550665578, - 19439.072535363168, - 19185.700166006824, - 18845.150062981145, - 18431.85418200587, - 17965.757927711125, - 17463.923934966962, - 16940.45606006751, - 16405.50372179242, - 15864.261492093281, - 15320.35851935466, - 14777.70897366162, - 14242.53653692765, - 13723.875582025876, - 13232.278830671428, - 12775.937312120759, - 12357.646193582665, - 11971.579212957879, - 11601.018972130245, - 11221.63790180655, - 10804.606885166288, - 10323.771264489304, - 9760.270236842664, - 9111.583837035414, - 8390.212440237052, - 7623.912071024448, - 6852.611941310454, - 6118.887419613296, - 5461.773613004905, - 4909.985282627403, - 4479.93328629802, - 4170.828695251572, - 3973.145902337293, - 3869.4004639467007, - 3839.2505794431986, - 3867.2596021225913, - 3940.5034609617824, - 4051.6358145641643, - 4195.770590594501, - 4366.482670706478, - 4555.793037625256, - 4750.954434690401, - 4936.217435553016, - 5095.486585639854, - 5215.884280054088, - 5289.368739270129, - 5316.108657168081, - 5303.995368819888, - 5263.937601115526, - 5209.662276288247, - 5152.017210677161, - 5096.455360446885, - 5042.84724745573, - 4986.214813828888, - 4919.536038006592, - 4837.304750414209, - 4737.923476750692, - 4625.694155962341, - 4509.3893771288895, - 4400.298312167128, - 4308.854296413042, - 4241.69592894522, - 4199.285283992751, - 4176.9967205989715, - 4166.579950051392, - 4159.19453610185, - 4149.452384798327, - 4137.043520469147, - 4126.992437375353, - 4128.002014607681, - 4148.634334024713, - 4194.271797235268, - 4263.949329437934, - 4349.88228038269, - 4441.281915430456, - 4527.738506130875, - 4605.96827877252, - 4685.033510507657, - 4788.714456519212, - 4954.93894811175, - 5229.735320202841, - 5658.512534417656, - 6279.701020074318, - 7108.248141881357, - 8139.23884084945 - ], - "flow:branch1_seg0:J53": [ - 40.0356929872175, - 51.47282722230463, - 63.89867943453984, - 76.68307774272138, - 89.16951464013097, - 100.79285226864292, - 111.14791997218535, - 120.02098504281439, - 127.3537864704326, - 133.2367549626806, - 137.8150476759863, - 141.22987911192885, - 143.5982773888604, - 144.97221805437886, - 145.35760163083518, - 144.7598022444683, - 143.1799246632298, - 140.68684792038482, - 137.39720300926402, - 133.45706666314, - 129.05535214900138, - 124.3475466529661, - 119.46355637851003, - 114.48752822280413, - 109.46138021560849, - 104.41519067364696, - 99.38410496995378, - 94.4295923914959, - 89.6397404292106, - 85.11504150137816, - 80.93000767319734, - 77.10423099331824, - 73.56830363128917, - 70.15523873450884, - 66.62342329338745, - 62.6985413472591, - 58.13462990246702, - 52.77662443557636, - 46.61349783142114, - 39.78990328404685, - 32.59012776959069, - 25.40022324246308, - 18.624542135796162, - 12.62503944946119, - 7.651355598186557, - 3.838223941019531, - 1.1521656117002306, - -0.5108797229727617, - -1.3309588183552616, - -1.4964307789096574, - -1.14940772287575, - -0.4038305876492564, - 0.6816592142296848, - 2.0645124270484065, - 3.6890379841062417, - 5.474728645645474, - 7.297425031713291, - 9.006251956565768, - 10.450228994962869, - 11.509444871293578, - 12.121312899034379, - 12.298418044710415, - 12.120047296204929, - 11.702052509627679, - 11.173244242154208, - 10.63048445642229, - 10.118711451387766, - 9.626777142684961, - 9.099998367730782, - 8.468677550667445, - 7.682940952498441, - 6.732911463490286, - 5.667742692990605, - 4.576382379997456, - 3.5696388818734626, - 2.743483071977461, - 2.1549512979469307, - 1.7997664836399783, - 1.6259394882338822, - 1.5495179221274984, - 1.4880770541898263, - 1.394468084801566, - 1.2730976632700557, - 1.179897221476254, - 1.201512676029213, - 1.4206609572296514, - 1.8814154958523333, - 2.5659897601467683, - 3.3942989836224573, - 4.256546742730182, - 5.055742234739812, - 5.771169784330154, - 6.504023763201, - 7.498082767760344, - 9.127596985248935, - 11.837524629585738, - 16.048579420939696, - 22.11380617523166, - 30.13523833145012, - 40.0356929872175 - ], - "pressure:branch1_seg0:J53": [ - 10460.944616346052, - 12013.082063735459, - 13567.552787556002, - 15042.203326296085, - 16374.56160537876, - 17516.65350860346, - 18450.83294216467, - 19190.194590943654, - 19760.01290542456, - 20174.881347956536, - 20475.66150798491, - 20665.73601668965, - 20747.767348925587, - 20728.652436957123, - 20589.758734606898, - 20343.270703036003, - 19988.890604422704, - 19539.77014782959, - 19031.560924855516, - 18474.256122212446, - 17896.491852334937, - 17313.34481427929, - 16727.911478881244, - 16145.276150848857, - 15563.404507465651, - 14984.141464414943, - 14415.48550026139, - 13868.958866808267, - 13358.636661511027, - 12896.02778152924, - 12483.639130302767, - 12108.50183453337, - 11748.299471656805, - 11366.05233724204, - 10922.473726583587, - 10384.886195608375, - 9736.935684538055, - 8978.712057696946, - 8135.536537516096, - 7257.994153682352, - 6393.765292577806, - 5603.97364107839, - 4934.063222793606, - 4413.058657257052, - 4040.100596781757, - 3818.474548298282, - 3712.340477149206, - 3693.3708844668467, - 3742.6204210841775, - 3830.944298060994, - 3954.5612194476735, - 4109.834250391521, - 4291.063146232581, - 4500.529427752467, - 4725.65791409133, - 4949.766735032289, - 5154.794912942593, - 5318.16802039122, - 5425.188236145596, - 5470.291811748494, - 5459.745335425234, - 5404.1010637575, - 5327.953993119424, - 5246.7018596931575, - 5173.0074245079, - 5113.101741602826, - 5060.606011667821, - 5004.470871679862, - 4933.048455699755, - 4837.525606347561, - 4718.805283983307, - 4582.9162253539425, - 4446.03914224584, - 4325.17467794559, - 4233.344618179601, - 4176.741796908671, - 4153.72543183402, - 4153.308760842726, - 4159.861304804097, - 4162.8392830190505, - 4154.443869743345, - 4136.97226433466, - 4121.307103196007, - 4121.861530430868, - 4151.551017677068, - 4216.828686891225, - 4312.565387443197, - 4427.252840885824, - 4539.63318744127, - 4635.769692579037, - 4711.771686541371, - 4781.975032759863, - 4882.316433208743, - 5065.829502383006, - 5395.7084356772275, - 5933.599493388358, - 6706.109042123171, - 7747.098508281309, - 9019.03533977048, - 10460.944616346052 - ], - "flow:J53:branch1_seg1": [ - 40.0356929872175, - 51.47282722230463, - 63.89867943453984, - 76.68307774272138, - 89.16951464013097, - 100.79285226864292, - 111.14791997218535, - 120.02098504281439, - 127.3537864704326, - 133.2367549626806, - 137.8150476759863, - 141.22987911192885, - 143.5982773888604, - 144.97221805437886, - 145.35760163083518, - 144.7598022444683, - 143.1799246632298, - 140.68684792038482, - 137.39720300926402, - 133.45706666314, - 129.05535214900138, - 124.3475466529661, - 119.46355637851003, - 114.48752822280413, - 109.46138021560849, - 104.41519067364696, - 99.38410496995378, - 94.4295923914959, - 89.6397404292106, - 85.11504150137816, - 80.93000767319734, - 77.10423099331824, - 73.56830363128917, - 70.15523873450884, - 66.62342329338745, - 62.6985413472591, - 58.13462990246702, - 52.77662443557636, - 46.61349783142114, - 39.78990328404685, - 32.59012776959069, - 25.40022324246308, - 18.624542135796162, - 12.62503944946119, - 7.651355598186557, - 3.838223941019531, - 1.1521656117002306, - -0.5108797229727617, - -1.3309588183552616, - -1.4964307789096574, - -1.14940772287575, - -0.4038305876492564, - 0.6816592142296848, - 2.0645124270484065, - 3.6890379841062417, - 5.474728645645474, - 7.297425031713291, - 9.006251956565768, - 10.450228994962869, - 11.509444871293578, - 12.121312899034379, - 12.298418044710415, - 12.120047296204929, - 11.702052509627679, - 11.173244242154208, - 10.63048445642229, - 10.118711451387766, - 9.626777142684961, - 9.099998367730782, - 8.468677550667445, - 7.682940952498441, - 6.732911463490286, - 5.667742692990605, - 4.576382379997456, - 3.5696388818734626, - 2.743483071977461, - 2.1549512979469307, - 1.7997664836399783, - 1.6259394882338822, - 1.5495179221274984, - 1.4880770541898263, - 1.394468084801566, - 1.2730976632700557, - 1.179897221476254, - 1.201512676029213, - 1.4206609572296514, - 1.8814154958523333, - 2.5659897601467683, - 3.3942989836224573, - 4.256546742730182, - 5.055742234739812, - 5.771169784330154, - 6.504023763201, - 7.498082767760344, - 9.127596985248935, - 11.837524629585738, - 16.048579420939696, - 22.11380617523166, - 30.13523833145012, - 40.0356929872175 - ], - "pressure:J53:branch1_seg1": [ - 10460.944616346052, - 12013.082063735459, - 13567.552787556002, - 15042.203326296085, - 16374.56160537876, - 17516.65350860346, - 18450.83294216467, - 19190.194590943654, - 19760.01290542456, - 20174.881347956536, - 20475.66150798491, - 20665.73601668965, - 20747.767348925587, - 20728.652436957123, - 20589.758734606898, - 20343.270703036003, - 19988.890604422704, - 19539.77014782959, - 19031.560924855516, - 18474.256122212446, - 17896.491852334937, - 17313.34481427929, - 16727.911478881244, - 16145.276150848857, - 15563.404507465651, - 14984.141464414943, - 14415.48550026139, - 13868.958866808267, - 13358.636661511027, - 12896.02778152924, - 12483.639130302767, - 12108.50183453337, - 11748.299471656805, - 11366.05233724204, - 10922.473726583587, - 10384.886195608375, - 9736.935684538055, - 8978.712057696946, - 8135.536537516096, - 7257.994153682352, - 6393.765292577806, - 5603.97364107839, - 4934.063222793606, - 4413.058657257052, - 4040.100596781757, - 3818.474548298282, - 3712.340477149206, - 3693.3708844668467, - 3742.6204210841775, - 3830.944298060994, - 3954.5612194476735, - 4109.834250391521, - 4291.063146232581, - 4500.529427752467, - 4725.65791409133, - 4949.766735032289, - 5154.794912942593, - 5318.16802039122, - 5425.188236145596, - 5470.291811748494, - 5459.745335425234, - 5404.1010637575, - 5327.953993119424, - 5246.7018596931575, - 5173.0074245079, - 5113.101741602826, - 5060.606011667821, - 5004.470871679862, - 4933.048455699755, - 4837.525606347561, - 4718.805283983307, - 4582.9162253539425, - 4446.03914224584, - 4325.17467794559, - 4233.344618179601, - 4176.741796908671, - 4153.72543183402, - 4153.308760842726, - 4159.861304804097, - 4162.8392830190505, - 4154.443869743345, - 4136.97226433466, - 4121.307103196007, - 4121.861530430868, - 4151.551017677068, - 4216.828686891225, - 4312.565387443197, - 4427.252840885824, - 4539.63318744127, - 4635.769692579037, - 4711.771686541371, - 4781.975032759863, - 4882.316433208743, - 5065.829502383006, - 5395.7084356772275, - 5933.599493388358, - 6706.109042123171, - 7747.098508281309, - 9019.03533977048, - 10460.944616346052 - ], - "flow:branch1_seg1:J54": [ - 39.94110048614296, - 51.37538181751742, - 63.80207088699505, - 76.59439639889625, - 89.09162662208585, - 100.72795860910098, - 111.0953374739277, - 119.98232132774255, - 127.32425192580395, - 133.21420909623257, - 137.8022256548453, - 141.2206897101017, - 143.59762513609982, - 144.9775502651509, - 145.36930188695257, - 144.78027525127598, - 143.20417703440103, - 140.7174173011311, - 137.43057744294586, - 133.49240086598513, - 129.0917457772506, - 124.38413733385215, - 119.50002404833477, - 114.52402377955163, - 109.49783444779032, - 104.4512869994566, - 99.4193464106617, - 94.46287473959903, - 89.6704368215479, - 85.14233717946338, - 80.95453677856831, - 77.12661635968153, - 73.59134926894494, - 70.18065849066781, - 66.65422966531108, - 62.7356696074891, - 58.180357304462206, - 52.82673617065573, - 46.6690164388675, - 39.84526593633098, - 32.64244315972988, - 25.446240800982036, - 18.66301086912385, - 12.652622761198678, - 7.67095196535771, - 3.848931652837018, - 1.1562100577531391, - -0.5114494863895561, - -1.3349788662982007, - -1.5028563760118394, - -1.1580316446956005, - -0.41429031917358355, - 0.6691845379584999, - 2.0509145974953387, - 3.674493453403063, - 5.460935182404585, - 7.28566738628147, - 8.997808461847828, - 10.44538278191473, - 11.509154250845098, - 12.123817808332465, - 12.30265731185021, - 12.12573784605502, - 11.706849835300421, - 11.177392347607107, - 10.634006315091503, - 10.121967696911518, - 9.630680316339832, - 9.105086015438777, - 8.475501455175554, - 7.6908734836828625, - 6.741564242729805, - 5.675986171853323, - 4.583309419007208, - 3.5742763135781117, - 2.746101087543681, - 2.1555641648380557, - 1.799416808319135, - 1.6254201346527808, - 1.5497605888074695, - 1.4889308478326309, - 1.3956432903905844, - 1.2737756668661937, - 1.1789224160506393, - 1.1985813078936753, - 1.4151293435364685, - 1.8745320358216235, - 2.5587125864668856, - 3.3874819757598, - 4.251170576179574, - 5.051531332117444, - 5.766252572249136, - 6.495772002803178, - 7.482503861714914, - 9.102099328184062, - 11.79639912644617, - 15.99388735795939, - 22.041805131800665, - 30.050064611276305, - 39.94110048614296 - ], - "pressure:branch1_seg1:J54": [ - 9637.414660634131, - 11086.11290363266, - 12583.713221164864, - 14053.477279151777, - 15426.228234911947, - 16646.635819616928, - 17683.85904612262, - 18537.697591392774, - 19216.327592086163, - 19735.18662145785, - 20126.79419358005, - 20396.94127706971, - 20556.455102225005, - 20609.456236572943, - 20546.149403951364, - 20374.710733883232, - 20092.709538093008, - 19712.361849298562, - 19259.474275327644, - 18747.10906452672, - 18200.651777758092, - 17636.96433483701, - 17063.688787905325, - 16488.16324936248, - 15911.020617835586, - 15334.482630915507, - 14764.79499910372, - 14211.374318650725, - 13686.65766744584, - 13202.29672773448, - 12763.624880437692, - 12364.165086246965, - 11988.268417735202, - 11605.959619885476, - 11183.053453317105, - 10686.775731790169, - 10096.243836772239, - 9401.829923394822, - 8619.53510103095, - 7783.997161427052, - 6937.294668715162, - 6133.730219244264, - 5419.74049351724, - 4829.194446033649, - 4374.856232216449, - 4063.898189492736, - 3875.383637083432, - 3786.378788559776, - 3777.8980243738793, - 3823.02541409762, - 3912.63622547973, - 4039.4266170399596, - 4197.018548473667, - 4385.210496520619, - 4593.780220001289, - 4809.914950528803, - 5016.934220334596, - 5194.517723071363, - 5326.42428818088, - 5404.214995824096, - 5427.268538196289, - 5402.856793825302, - 5349.60969281053, - 5281.3300256209095, - 5212.30944076872, - 5151.018095582039, - 5095.8788103943025, - 5040.028624714418, - 4973.914180581843, - 4888.932158576092, - 4782.869203080191, - 4658.797059815218, - 4528.164168644142, - 4405.349902565738, - 4303.255838880053, - 4230.45339104606, - 4188.7567460518885, - 4171.796079738545, - 4167.880336290041, - 4166.776354285577, - 4159.593688612304, - 4145.281288185712, - 4130.286728806888, - 4125.593274799454, - 4143.26325477176, - 4190.8557353177075, - 4268.30731383298, - 4367.887084259589, - 4473.190394905454, - 4570.869076770987, - 4653.597017085973, - 4728.112762468151, - 4819.868571731328, - 4971.16649497749, - 5236.872730782005, - 5673.9918231567835, - 6319.862489306684, - 7209.091042709269, - 8328.682760529231, - 9637.414660634131 - ], - "flow:J54:branch1_seg2": [ - 39.94110048614296, - 51.37538181751742, - 63.80207088699505, - 76.59439639889625, - 89.09162662208585, - 100.72795860910098, - 111.0953374739277, - 119.98232132774255, - 127.32425192580395, - 133.21420909623257, - 137.8022256548453, - 141.2206897101017, - 143.59762513609982, - 144.9775502651509, - 145.36930188695257, - 144.78027525127598, - 143.20417703440103, - 140.7174173011311, - 137.43057744294586, - 133.49240086598513, - 129.0917457772506, - 124.38413733385215, - 119.50002404833477, - 114.52402377955163, - 109.49783444779032, - 104.4512869994566, - 99.4193464106617, - 94.46287473959903, - 89.6704368215479, - 85.14233717946338, - 80.95453677856831, - 77.12661635968153, - 73.59134926894494, - 70.18065849066781, - 66.65422966531108, - 62.7356696074891, - 58.180357304462206, - 52.82673617065573, - 46.6690164388675, - 39.84526593633098, - 32.64244315972988, - 25.446240800982036, - 18.66301086912385, - 12.652622761198678, - 7.67095196535771, - 3.848931652837018, - 1.1562100577531391, - -0.5114494863895561, - -1.3349788662982007, - -1.5028563760118394, - -1.1580316446956005, - -0.41429031917358355, - 0.6691845379584999, - 2.0509145974953387, - 3.674493453403063, - 5.460935182404585, - 7.28566738628147, - 8.997808461847828, - 10.44538278191473, - 11.509154250845098, - 12.123817808332465, - 12.30265731185021, - 12.12573784605502, - 11.706849835300421, - 11.177392347607107, - 10.634006315091503, - 10.121967696911518, - 9.630680316339832, - 9.105086015438777, - 8.475501455175554, - 7.6908734836828625, - 6.741564242729805, - 5.675986171853323, - 4.583309419007208, - 3.5742763135781117, - 2.746101087543681, - 2.1555641648380557, - 1.799416808319135, - 1.6254201346527808, - 1.5497605888074695, - 1.4889308478326309, - 1.3956432903905844, - 1.2737756668661937, - 1.1789224160506393, - 1.1985813078936753, - 1.4151293435364685, - 1.8745320358216235, - 2.5587125864668856, - 3.3874819757598, - 4.251170576179574, - 5.051531332117444, - 5.766252572249136, - 6.495772002803178, - 7.482503861714914, - 9.102099328184062, - 11.79639912644617, - 15.99388735795939, - 22.041805131800665, - 30.050064611276305, - 39.94110048614296 - ], - "pressure:J54:branch1_seg2": [ - 9637.414660634131, - 11086.11290363266, - 12583.713221164864, - 14053.477279151777, - 15426.228234911947, - 16646.635819616928, - 17683.85904612262, - 18537.697591392774, - 19216.327592086163, - 19735.18662145785, - 20126.79419358005, - 20396.94127706971, - 20556.455102225005, - 20609.456236572943, - 20546.149403951364, - 20374.710733883232, - 20092.709538093008, - 19712.361849298562, - 19259.474275327644, - 18747.10906452672, - 18200.651777758092, - 17636.96433483701, - 17063.688787905325, - 16488.16324936248, - 15911.020617835586, - 15334.482630915507, - 14764.79499910372, - 14211.374318650725, - 13686.65766744584, - 13202.29672773448, - 12763.624880437692, - 12364.165086246965, - 11988.268417735202, - 11605.959619885476, - 11183.053453317105, - 10686.775731790169, - 10096.243836772239, - 9401.829923394822, - 8619.53510103095, - 7783.997161427052, - 6937.294668715162, - 6133.730219244264, - 5419.74049351724, - 4829.194446033649, - 4374.856232216449, - 4063.898189492736, - 3875.383637083432, - 3786.378788559776, - 3777.8980243738793, - 3823.02541409762, - 3912.63622547973, - 4039.4266170399596, - 4197.018548473667, - 4385.210496520619, - 4593.780220001289, - 4809.914950528803, - 5016.934220334596, - 5194.517723071363, - 5326.42428818088, - 5404.214995824096, - 5427.268538196289, - 5402.856793825302, - 5349.60969281053, - 5281.3300256209095, - 5212.30944076872, - 5151.018095582039, - 5095.8788103943025, - 5040.028624714418, - 4973.914180581843, - 4888.932158576092, - 4782.869203080191, - 4658.797059815218, - 4528.164168644142, - 4405.349902565738, - 4303.255838880053, - 4230.45339104606, - 4188.7567460518885, - 4171.796079738545, - 4167.880336290041, - 4166.776354285577, - 4159.593688612304, - 4145.281288185712, - 4130.286728806888, - 4125.593274799454, - 4143.26325477176, - 4190.8557353177075, - 4268.30731383298, - 4367.887084259589, - 4473.190394905454, - 4570.869076770987, - 4653.597017085973, - 4728.112762468151, - 4819.868571731328, - 4971.16649497749, - 5236.872730782005, - 5673.9918231567835, - 6319.862489306684, - 7209.091042709269, - 8328.682760529231, - 9637.414660634131 - ], - "flow:branch3_seg0:J55": [ - 0.731474469601887, - 0.9468967296473995, - 1.18395051010995, - 1.4309024108257344, - 1.6748576419578116, - 1.904397770273316, - 2.110910134062903, - 2.2894908875243107, - 2.4380524314023444, - 2.5579943855873752, - 2.651921123954103, - 2.7224819309134167, - 2.772383210337519, - 2.802709616939906, - 2.813906270442271, - 2.806109037762309, - 2.7791906589065656, - 2.734393677825567, - 2.6735743886961885, - 2.5995309897686303, - 2.515802376503726, - 2.4254759913665414, - 2.331264896472914, - 2.234989941676199, - 2.137629093224276, - 2.039822076405582, - 1.942192945561711, - 1.8458066815757208, - 1.7522581749013022, - 1.6634536272566458, - 1.580953713325486, - 1.5054196413690009, - 1.4359060053169725, - 1.36955643832476, - 1.302026557603385, - 1.2280683967483013, - 1.1427603350674604, - 1.0425744291031929, - 0.9267737622856098, - 0.7973356852023334, - 0.6592727128415137, - 0.5196833949374298, - 0.3863719018509689, - 0.266556713186811, - 0.16575669721100883, - 0.0869720595237177, - 0.030278292436499394, - -0.005926819768554608, - -0.02500155328448219, - -0.030545709290937813, - -0.025537536747720954, - -0.012421260435154412, - 0.007515896277492843, - 0.03334012970849013, - 0.0640116559647381, - 0.0981636523631932, - 0.13353457153385373, - 0.16732635302777715, - 0.19659419157424193, - 0.21889011182637402, - 0.23267329348009957, - 0.23791568132025592, - 0.23587638223887034, - 0.2286170614771085, - 0.21867345807130922, - 0.20805843659019962, - 0.19788997814633746, - 0.18821537235001973, - 0.17814555878419702, - 0.16638325953896263, - 0.15183271155112898, - 0.13412720654120613, - 0.1139569871330392, - 0.09285939071094312, - 0.07291344929138925, - 0.05607661943640106, - 0.043634184558203316, - 0.035765396373007186, - 0.03169785632333602, - 0.02990535569815674, - 0.028747277934455667, - 0.027152324987039, - 0.024960144969164322, - 0.023027156527922272, - 0.022927768127615933, - 0.026285108334537368, - 0.03417940026026637, - 0.04651989081133178, - 0.06202137045557981, - 0.0786786355436618, - 0.09449902220848232, - 0.1087083774608874, - 0.12271320468928767, - 0.14060566405606378, - 0.1691214934262151, - 0.2165287421124433, - 0.2913617020967156, - 0.4006521003413675, - 0.5474772794068977, - 0.731474469601887 - ], - "pressure:branch3_seg0:J55": [ - 8662.242884152007, - 9956.971903689666, - 11343.182196190135, - 12752.984612890285, - 14114.88764656981, - 15367.923418020999, - 16470.49260855133, - 17408.573203654116, - 18175.107065854485, - 18781.432055662415, - 19251.835991817516, - 19595.281717437032, - 19825.86502534461, - 19949.27162419383, - 19962.00663663819, - 19868.956341052253, - 19668.573119453973, - 19368.166569522127, - 18985.482252151192, - 18535.14449667664, - 18038.577932241817, - 17513.09883104361, - 16970.825768647173, - 16420.846759759126, - 15866.696818865257, - 15311.291657830345, - 14759.039277253702, - 14217.26277523626, - 13696.15892805828, - 13206.988648143733, - 12756.983555243656, - 12346.072033310691, - 11965.228484471278, - 11592.584082986928, - 11200.32033185182, - 10757.688407158588, - 10240.022430152934, - 9631.01148832351, - 8934.378642883014, - 8170.70718316685, - 7372.847358229123, - 6586.6464546970155, - 5856.60919604804, - 5220.52736379704, - 4702.438490329282, - 4314.593408635419, - 4049.573073159736, - 3893.133257730302, - 3826.0053658919924, - 3825.3238540399716, - 3877.6091432664916, - 3971.342064025709, - 4100.424526403351, - 4261.4110651608025, - 4446.318132077748, - 4646.351004719274, - 4847.122639263111, - 5031.008627201004, - 5181.647094297033, - 5287.769344378276, - 5343.434554123894, - 5351.12632738537, - 5323.340307228322, - 5271.951186286277, - 5210.9784578069575, - 5151.035859049253, - 5095.16855554262, - 5040.824585151372, - 4981.251931917528, - 4908.593304665122, - 4818.123781605293, - 4709.887023537327, - 4590.606066272062, - 4471.070081582466, - 4363.5155008632455, - 4277.986656782623, - 4219.680431244563, - 4186.490160755603, - 4171.499295767141, - 4165.3816772358, - 4158.798836229273, - 4147.849684420666, - 4134.480971009722, - 4125.866612583555, - 4132.173539061538, - 4161.815278556413, - 4218.623604272823, - 4299.472577543338, - 4393.147605576968, - 4487.752315132282, - 4573.663471516883, - 4650.545955779242, - 4732.971702765072, - 4851.311016208346, - 5049.727039664262, - 5378.664453447323, - 5882.37560507787, - 6597.275985735815, - 7528.86507837424, - 8662.242884152007 - ], - "flow:J55:branch3_seg1": [ - 0.731474469601887, - 0.9468967296473995, - 1.18395051010995, - 1.4309024108257344, - 1.6748576419578116, - 1.904397770273316, - 2.110910134062903, - 2.2894908875243107, - 2.4380524314023444, - 2.5579943855873752, - 2.651921123954103, - 2.7224819309134167, - 2.772383210337519, - 2.802709616939906, - 2.813906270442271, - 2.806109037762309, - 2.7791906589065656, - 2.734393677825567, - 2.6735743886961885, - 2.5995309897686303, - 2.515802376503726, - 2.4254759913665414, - 2.331264896472914, - 2.234989941676199, - 2.137629093224276, - 2.039822076405582, - 1.942192945561711, - 1.8458066815757208, - 1.7522581749013022, - 1.6634536272566458, - 1.580953713325486, - 1.5054196413690009, - 1.4359060053169725, - 1.36955643832476, - 1.302026557603385, - 1.2280683967483013, - 1.1427603350674604, - 1.0425744291031929, - 0.9267737622856098, - 0.7973356852023334, - 0.6592727128415137, - 0.5196833949374298, - 0.3863719018509689, - 0.266556713186811, - 0.16575669721100883, - 0.0869720595237177, - 0.030278292436499394, - -0.005926819768554608, - -0.02500155328448219, - -0.030545709290937813, - -0.025537536747720954, - -0.012421260435154412, - 0.007515896277492843, - 0.03334012970849013, - 0.0640116559647381, - 0.0981636523631932, - 0.13353457153385373, - 0.16732635302777715, - 0.19659419157424193, - 0.21889011182637402, - 0.23267329348009957, - 0.23791568132025592, - 0.23587638223887034, - 0.2286170614771085, - 0.21867345807130922, - 0.20805843659019962, - 0.19788997814633746, - 0.18821537235001973, - 0.17814555878419702, - 0.16638325953896263, - 0.15183271155112898, - 0.13412720654120613, - 0.1139569871330392, - 0.09285939071094312, - 0.07291344929138925, - 0.05607661943640106, - 0.043634184558203316, - 0.035765396373007186, - 0.03169785632333602, - 0.02990535569815674, - 0.028747277934455667, - 0.027152324987039, - 0.024960144969164322, - 0.023027156527922272, - 0.022927768127615933, - 0.026285108334537368, - 0.03417940026026637, - 0.04651989081133178, - 0.06202137045557981, - 0.0786786355436618, - 0.09449902220848232, - 0.1087083774608874, - 0.12271320468928767, - 0.14060566405606378, - 0.1691214934262151, - 0.2165287421124433, - 0.2913617020967156, - 0.4006521003413675, - 0.5474772794068977, - 0.731474469601887 - ], - "pressure:J55:branch3_seg1": [ - 8662.242884152007, - 9956.971903689666, - 11343.182196190135, - 12752.984612890285, - 14114.88764656981, - 15367.923418020999, - 16470.49260855133, - 17408.573203654116, - 18175.107065854485, - 18781.432055662415, - 19251.835991817516, - 19595.281717437032, - 19825.86502534461, - 19949.27162419383, - 19962.00663663819, - 19868.956341052253, - 19668.573119453973, - 19368.166569522127, - 18985.482252151192, - 18535.14449667664, - 18038.577932241817, - 17513.09883104361, - 16970.825768647173, - 16420.846759759126, - 15866.696818865257, - 15311.291657830345, - 14759.039277253702, - 14217.26277523626, - 13696.15892805828, - 13206.988648143733, - 12756.983555243656, - 12346.072033310691, - 11965.228484471278, - 11592.584082986928, - 11200.32033185182, - 10757.688407158588, - 10240.022430152934, - 9631.01148832351, - 8934.378642883014, - 8170.70718316685, - 7372.847358229123, - 6586.6464546970155, - 5856.60919604804, - 5220.52736379704, - 4702.438490329282, - 4314.593408635419, - 4049.573073159736, - 3893.133257730302, - 3826.0053658919924, - 3825.3238540399716, - 3877.6091432664916, - 3971.342064025709, - 4100.424526403351, - 4261.4110651608025, - 4446.318132077748, - 4646.351004719274, - 4847.122639263111, - 5031.008627201004, - 5181.647094297033, - 5287.769344378276, - 5343.434554123894, - 5351.12632738537, - 5323.340307228322, - 5271.951186286277, - 5210.9784578069575, - 5151.035859049253, - 5095.16855554262, - 5040.824585151372, - 4981.251931917528, - 4908.593304665122, - 4818.123781605293, - 4709.887023537327, - 4590.606066272062, - 4471.070081582466, - 4363.5155008632455, - 4277.986656782623, - 4219.680431244563, - 4186.490160755603, - 4171.499295767141, - 4165.3816772358, - 4158.798836229273, - 4147.849684420666, - 4134.480971009722, - 4125.866612583555, - 4132.173539061538, - 4161.815278556413, - 4218.623604272823, - 4299.472577543338, - 4393.147605576968, - 4487.752315132282, - 4573.663471516883, - 4650.545955779242, - 4732.971702765072, - 4851.311016208346, - 5049.727039664262, - 5378.664453447323, - 5882.37560507787, - 6597.275985735815, - 7528.86507837424, - 8662.242884152007 - ], - "flow:branch3_seg1:J56": [ - 0.7277065923153374, - 0.9427625253371889, - 1.1796082831662489, - 1.4266171076349061, - 1.6708274013957694, - 1.9007657190085223, - 2.107768055908414, - 2.2868857157800697, - 2.435957481381016, - 2.5563628794154933, - 2.650684901067625, - 2.7216003193302654, - 2.7718510817783457, - 2.802501668751253, - 2.814040786076316, - 2.80656433980682, - 2.779950432775351, - 2.7354731743321454, - 2.6748689007859956, - 2.600983937231495, - 2.517385923000632, - 2.4271190673700955, - 2.3329434550801533, - 2.236687794085477, - 2.139330583400258, - 2.041524869258695, - 1.943877361517689, - 1.8474426349178323, - 1.7538126674011725, - 1.6648983439575626, - 1.582269849950957, - 1.5066245421090185, - 1.4370513352384209, - 1.3707135311840564, - 1.3032911603187338, - 1.229537192992188, - 1.1444853660732135, - 1.0445820160746155, - 0.9290409561606676, - 0.7997548812363309, - 0.6617272086188751, - 0.5220358980877825, - 0.3884880176379454, - 0.26831475800577564, - 0.16714542987507486, - 0.08798233044627156, - 0.03089643675384271, - -0.0055936767041428965, - -0.024908107753543605, - -0.030640229431909204, - -0.025756213238373873, - -0.012771037958640364, - 0.007062242801953889, - 0.032810147311877126, - 0.06341269044860572, - 0.0975393381407347, - 0.13293596461768506, - 0.16680383334219875, - 0.19619564118765906, - 0.21864326502964324, - 0.2325797104203165, - 0.23795877426459472, - 0.23600671139459234, - 0.22879294234224157, - 0.21886434947435382, - 0.20823762385773273, - 0.1980553906680773, - 0.18838574256339252, - 0.17834500615613486, - 0.16663566671544922, - 0.15214025321008565, - 0.13447803293569272, - 0.1143319813150264, - 0.09321497313188165, - 0.07321225566546603, - 0.056297293232581314, - 0.04377475278365252, - 0.03583203952734502, - 0.03172287320267589, - 0.029923310163997716, - 0.028773343968558244, - 0.027191936451488118, - 0.024999118356031323, - 0.023036313682317025, - 0.022875814781878487, - 0.026151149980194608, - 0.0339644200011237, - 0.04624253347675516, - 0.061724916802920526, - 0.07840004311145442, - 0.09425386582814936, - 0.10847532273943242, - 0.12242323268883462, - 0.14014216538987065, - 0.16834226488159992, - 0.21524684213323725, - 0.2894949739247243, - 0.39816156387062984, - 0.5442546356083081, - 0.7277065923153374 - ], - "pressure:branch3_seg1:J56": [ - 8193.515261280865, - 9409.098163597799, - 10736.222932724693, - 12109.916884422531, - 13458.760449715453, - 14720.226989351419, - 15848.407865062709, - 16820.017154331897, - 17624.48167727583, - 18270.463312423864, - 18775.214783830543, - 19151.726090908593, - 19414.817269226707, - 19570.29993206413, - 19619.035458847517, - 19562.833522278204, - 19400.778963795117, - 19139.948228984103, - 18792.238420909245, - 18373.050453156717, - 17902.545783575093, - 17397.60027957485, - 16872.52977971004, - 16337.108876589586, - 15796.174169729311, - 15253.127615864123, - 14711.604426723543, - 14177.848161641708, - 13661.036975067807, - 13171.910490318276, - 12718.694047301216, - 12304.099782396823, - 11921.966795206947, - 11554.844025059541, - 11177.800559600337, - 10761.417671127761, - 10279.131169979144, - 9712.324292092526, - 9059.002375333022, - 8332.525923281304, - 7561.966446666645, - 6788.291326849174, - 6054.904792159929, - 5401.002086853913, - 4855.606654357132, - 4433.950965771539, - 4134.11969788676, - 3946.282624066005, - 3851.4199200931976, - 3828.8596883592413, - 3863.140879497015, - 3941.0417947380615, - 4055.9553937916603, - 4203.241476084828, - 4376.399907250507, - 4567.7259510643535, - 4764.23638738198, - 4949.870511212587, - 5108.3724604441195, - 5226.838183076025, - 5297.415150920503, - 5320.630166196679, - 5304.924863400117, - 5261.825176387401, - 5205.342665937089, - 5146.442743870805, - 5090.4701300990955, - 5036.950015287809, - 4980.467486688631, - 4913.6718780713945, - 4830.8153681987715, - 4730.42803250669, - 4617.137134257607, - 4499.969957083424, - 4390.631528533527, - 4299.750525843083, - 4233.936144365276, - 4193.291548504517, - 4172.909298600811, - 4164.128789683105, - 4157.733830124032, - 4148.38088087819, - 4135.93140046934, - 4125.753306459963, - 4126.9430511218425, - 4148.3246651375375, - 4195.319127828405, - 4266.740880789705, - 4354.4006143323095, - 4446.984403697985, - 4533.830391644409, - 4611.660121611716, - 4690.006027678599, - 4793.476343132581, - 4961.1029710571, - 5239.6165225394525, - 5675.679276117965, - 6307.477972496625, - 7148.201712038566, - 8193.515261280865 - ], - "flow:J56:branch3_seg2": [ - 0.7277065923153374, - 0.9427625253371889, - 1.1796082831662489, - 1.4266171076349061, - 1.6708274013957694, - 1.9007657190085223, - 2.107768055908414, - 2.2868857157800697, - 2.435957481381016, - 2.5563628794154933, - 2.650684901067625, - 2.7216003193302654, - 2.7718510817783457, - 2.802501668751253, - 2.814040786076316, - 2.80656433980682, - 2.779950432775351, - 2.7354731743321454, - 2.6748689007859956, - 2.600983937231495, - 2.517385923000632, - 2.4271190673700955, - 2.3329434550801533, - 2.236687794085477, - 2.139330583400258, - 2.041524869258695, - 1.943877361517689, - 1.8474426349178323, - 1.7538126674011725, - 1.6648983439575626, - 1.582269849950957, - 1.5066245421090185, - 1.4370513352384209, - 1.3707135311840564, - 1.3032911603187338, - 1.229537192992188, - 1.1444853660732135, - 1.0445820160746155, - 0.9290409561606676, - 0.7997548812363309, - 0.6617272086188751, - 0.5220358980877825, - 0.3884880176379454, - 0.26831475800577564, - 0.16714542987507486, - 0.08798233044627156, - 0.03089643675384271, - -0.0055936767041428965, - -0.024908107753543605, - -0.030640229431909204, - -0.025756213238373873, - -0.012771037958640364, - 0.007062242801953889, - 0.032810147311877126, - 0.06341269044860572, - 0.0975393381407347, - 0.13293596461768506, - 0.16680383334219875, - 0.19619564118765906, - 0.21864326502964324, - 0.2325797104203165, - 0.23795877426459472, - 0.23600671139459234, - 0.22879294234224157, - 0.21886434947435382, - 0.20823762385773273, - 0.1980553906680773, - 0.18838574256339252, - 0.17834500615613486, - 0.16663566671544922, - 0.15214025321008565, - 0.13447803293569272, - 0.1143319813150264, - 0.09321497313188165, - 0.07321225566546603, - 0.056297293232581314, - 0.04377475278365252, - 0.03583203952734502, - 0.03172287320267589, - 0.029923310163997716, - 0.028773343968558244, - 0.027191936451488118, - 0.024999118356031323, - 0.023036313682317025, - 0.022875814781878487, - 0.026151149980194608, - 0.0339644200011237, - 0.04624253347675516, - 0.061724916802920526, - 0.07840004311145442, - 0.09425386582814936, - 0.10847532273943242, - 0.12242323268883462, - 0.14014216538987065, - 0.16834226488159992, - 0.21524684213323725, - 0.2894949739247243, - 0.39816156387062984, - 0.5442546356083081, - 0.7277065923153374 - ], - "pressure:J56:branch3_seg2": [ - 8193.515261280865, - 9409.098163597799, - 10736.222932724693, - 12109.916884422531, - 13458.760449715453, - 14720.226989351419, - 15848.407865062709, - 16820.017154331897, - 17624.48167727583, - 18270.463312423864, - 18775.214783830543, - 19151.726090908593, - 19414.817269226707, - 19570.29993206413, - 19619.035458847517, - 19562.833522278204, - 19400.778963795117, - 19139.948228984103, - 18792.238420909245, - 18373.050453156717, - 17902.545783575093, - 17397.60027957485, - 16872.52977971004, - 16337.108876589586, - 15796.174169729311, - 15253.127615864123, - 14711.604426723543, - 14177.848161641708, - 13661.036975067807, - 13171.910490318276, - 12718.694047301216, - 12304.099782396823, - 11921.966795206947, - 11554.844025059541, - 11177.800559600337, - 10761.417671127761, - 10279.131169979144, - 9712.324292092526, - 9059.002375333022, - 8332.525923281304, - 7561.966446666645, - 6788.291326849174, - 6054.904792159929, - 5401.002086853913, - 4855.606654357132, - 4433.950965771539, - 4134.11969788676, - 3946.282624066005, - 3851.4199200931976, - 3828.8596883592413, - 3863.140879497015, - 3941.0417947380615, - 4055.9553937916603, - 4203.241476084828, - 4376.399907250507, - 4567.7259510643535, - 4764.23638738198, - 4949.870511212587, - 5108.3724604441195, - 5226.838183076025, - 5297.415150920503, - 5320.630166196679, - 5304.924863400117, - 5261.825176387401, - 5205.342665937089, - 5146.442743870805, - 5090.4701300990955, - 5036.950015287809, - 4980.467486688631, - 4913.6718780713945, - 4830.8153681987715, - 4730.42803250669, - 4617.137134257607, - 4499.969957083424, - 4390.631528533527, - 4299.750525843083, - 4233.936144365276, - 4193.291548504517, - 4172.909298600811, - 4164.128789683105, - 4157.733830124032, - 4148.38088087819, - 4135.93140046934, - 4125.753306459963, - 4126.9430511218425, - 4148.3246651375375, - 4195.319127828405, - 4266.740880789705, - 4354.4006143323095, - 4446.984403697985, - 4533.830391644409, - 4611.660121611716, - 4690.006027678599, - 4793.476343132581, - 4961.1029710571, - 5239.6165225394525, - 5675.679276117965, - 6307.477972496625, - 7148.201712038566, - 8193.515261280865 - ], - "flow:branch9_seg0:J57": [ - 0.4144761982836396, - 0.5410892773772346, - 0.6870346753695753, - 0.8470490912015646, - 1.0145035583485689, - 1.1825463688950804, - 1.3449564261823295, - 1.4968406253359092, - 1.6347593015824693, - 1.757082846578453, - 1.8632458981464608, - 1.953374779625694, - 2.027990765982733, - 2.08730856797511, - 2.1314270079100894, - 2.160301422273958, - 2.1738433942508313, - 2.172504486817071, - 2.157102477902514, - 2.129035065111355, - 2.090172144013978, - 2.0424441863886944, - 1.9877488375311976, - 1.9276636294747156, - 1.8633960236754241, - 1.7959053330292913, - 1.726043254781649, - 1.6547677278029729, - 1.583239449971944, - 1.5127823707297487, - 1.4446409988176896, - 1.379697571020957, - 1.3180885729446066, - 1.2589770463367937, - 1.2005681276166926, - 1.1403143121633168, - 1.0754221743615955, - 1.0034302260260726, - 0.922935857860156, - 0.8338547168169085, - 0.7377538800039298, - 0.6375930221723412, - 0.5372517101062336, - 0.4408898199915827, - 0.3523087349665079, - 0.274383503327097, - 0.20869287406228493, - 0.1557346483402549, - 0.11489721884231967, - 0.08503003996590448, - 0.0648313152282534, - 0.053028009287814704, - 0.04867323535831462, - 0.050960437363477856, - 0.05908875896787027, - 0.07209670695106342, - 0.08863320410836009, - 0.10702235096460298, - 0.12538831991602575, - 0.14194051410822145, - 0.15522812101442565, - 0.16447082100527366, - 0.16957051641080592, - 0.17103252480642123, - 0.16980118519097046, - 0.166843852244575, - 0.16290400953228873, - 0.15830387657692147, - 0.15290674528464238, - 0.1462716316423113, - 0.13790139629631631, - 0.127515448385609, - 0.11526463701893779, - 0.10175079479734986, - 0.08794455717853726, - 0.07492555334922449, - 0.06360479224071494, - 0.05446868878270502, - 0.04752294641697516, - 0.042316585023268606, - 0.038183883204317925, - 0.034539636954817154, - 0.031118554332695475, - 0.02811301566008203, - 0.026128208840000878, - 0.025945602520778717, - 0.0282405029655002, - 0.03324543460987863, - 0.04063660914333056, - 0.04961616621342114, - 0.05920572601205319, - 0.06878386379294195, - 0.07862126203029275, - 0.09028859667789407, - 0.10683106841869076, - 0.1324650916001176, - 0.17206596496786125, - 0.23031643682432285, - 0.31056561987871795, - 0.4144761982836396 - ], - "pressure:branch9_seg0:J57": [ - 7206.676452752687, - 8136.952293668722, - 9179.279887528723, - 10293.295821764454, - 11431.729113791323, - 12548.689480312742, - 13605.860537061342, - 14577.70143716129, - 15445.77984164772, - 16204.450909660969, - 16855.912213975374, - 17400.33146946779, - 17842.440346570293, - 18183.24532387374, - 18421.11268186123, - 18557.52272813628, - 18591.100386269136, - 18526.487307437066, - 18372.91485706676, - 18139.868582227886, - 17841.895949326354, - 17492.171367963416, - 17102.068320936643, - 16681.359570028624, - 16236.613240193186, - 15773.494917824828, - 15297.8379679543, - 14816.633939838965, - 14338.433868944781, - 13872.548268459828, - 13426.521911040854, - 13004.032503316432, - 12603.08425622589, - 12213.865775847018, - 11821.028385339445, - 11405.374946841144, - 10948.659527381003, - 10436.076485230611, - 9863.369657424417, - 9236.095368089607, - 8569.776748798186, - 7889.666624655216, - 7224.052484511942, - 6600.70441678067, - 6041.851289714153, - 5563.868718071417, - 5171.584327145899, - 4863.966630793647, - 4634.774543756119, - 4473.544512712608, - 4372.325959153218, - 4323.222198389665, - 4320.454520438758, - 4359.635224859614, - 4434.546966841675, - 4537.930309941198, - 4659.393067424207, - 4786.366032399278, - 4905.9677697436455, - 5007.276545136884, - 5082.215524025163, - 5127.952013820259, - 5147.274585819579, - 5144.824067940956, - 5128.032925593592, - 5103.329191145251, - 5074.121774350569, - 5040.84360616973, - 5001.078608213979, - 4951.028555378538, - 4887.780159742168, - 4810.52359199781, - 4722.155174807314, - 4628.416104582774, - 4536.708362882077, - 4454.196991615469, - 4385.975095060365, - 4333.382786807437, - 4294.505885547058, - 4265.1682133753875, - 4240.3718301846675, - 4217.028070186848, - 4194.975108096339, - 4177.219121368435, - 4169.109977104402, - 4175.993452235877, - 4201.416821832221, - 4245.129898964998, - 4302.390844306376, - 4366.7778255505, - 4431.867066024383, - 4495.674107817169, - 4564.266564828506, - 4653.528126143576, - 4789.251445025941, - 5003.773504064664, - 5329.514331481811, - 5797.124328770062, - 6422.1191959282305, - 7206.676452752687 - ], - "flow:J57:branch9_seg1": [ - 0.4144761982836396, - 0.5410892773772346, - 0.6870346753695753, - 0.8470490912015646, - 1.0145035583485689, - 1.1825463688950804, - 1.3449564261823295, - 1.4968406253359092, - 1.6347593015824693, - 1.757082846578453, - 1.8632458981464608, - 1.953374779625694, - 2.027990765982733, - 2.08730856797511, - 2.1314270079100894, - 2.160301422273958, - 2.1738433942508313, - 2.172504486817071, - 2.157102477902514, - 2.129035065111355, - 2.090172144013978, - 2.0424441863886944, - 1.9877488375311976, - 1.9276636294747156, - 1.8633960236754241, - 1.7959053330292913, - 1.726043254781649, - 1.6547677278029729, - 1.583239449971944, - 1.5127823707297487, - 1.4446409988176896, - 1.379697571020957, - 1.3180885729446066, - 1.2589770463367937, - 1.2005681276166926, - 1.1403143121633168, - 1.0754221743615955, - 1.0034302260260726, - 0.922935857860156, - 0.8338547168169085, - 0.7377538800039298, - 0.6375930221723412, - 0.5372517101062336, - 0.4408898199915827, - 0.3523087349665079, - 0.274383503327097, - 0.20869287406228493, - 0.1557346483402549, - 0.11489721884231967, - 0.08503003996590448, - 0.0648313152282534, - 0.053028009287814704, - 0.04867323535831462, - 0.050960437363477856, - 0.05908875896787027, - 0.07209670695106342, - 0.08863320410836009, - 0.10702235096460298, - 0.12538831991602575, - 0.14194051410822145, - 0.15522812101442565, - 0.16447082100527366, - 0.16957051641080592, - 0.17103252480642123, - 0.16980118519097046, - 0.166843852244575, - 0.16290400953228873, - 0.15830387657692147, - 0.15290674528464238, - 0.1462716316423113, - 0.13790139629631631, - 0.127515448385609, - 0.11526463701893779, - 0.10175079479734986, - 0.08794455717853726, - 0.07492555334922449, - 0.06360479224071494, - 0.05446868878270502, - 0.04752294641697516, - 0.042316585023268606, - 0.038183883204317925, - 0.034539636954817154, - 0.031118554332695475, - 0.02811301566008203, - 0.026128208840000878, - 0.025945602520778717, - 0.0282405029655002, - 0.03324543460987863, - 0.04063660914333056, - 0.04961616621342114, - 0.05920572601205319, - 0.06878386379294195, - 0.07862126203029275, - 0.09028859667789407, - 0.10683106841869076, - 0.1324650916001176, - 0.17206596496786125, - 0.23031643682432285, - 0.31056561987871795, - 0.4144761982836396 - ], - "pressure:J57:branch9_seg1": [ - 7206.676452752687, - 8136.952293668722, - 9179.279887528723, - 10293.295821764454, - 11431.729113791323, - 12548.689480312742, - 13605.860537061342, - 14577.70143716129, - 15445.77984164772, - 16204.450909660969, - 16855.912213975374, - 17400.33146946779, - 17842.440346570293, - 18183.24532387374, - 18421.11268186123, - 18557.52272813628, - 18591.100386269136, - 18526.487307437066, - 18372.91485706676, - 18139.868582227886, - 17841.895949326354, - 17492.171367963416, - 17102.068320936643, - 16681.359570028624, - 16236.613240193186, - 15773.494917824828, - 15297.8379679543, - 14816.633939838965, - 14338.433868944781, - 13872.548268459828, - 13426.521911040854, - 13004.032503316432, - 12603.08425622589, - 12213.865775847018, - 11821.028385339445, - 11405.374946841144, - 10948.659527381003, - 10436.076485230611, - 9863.369657424417, - 9236.095368089607, - 8569.776748798186, - 7889.666624655216, - 7224.052484511942, - 6600.70441678067, - 6041.851289714153, - 5563.868718071417, - 5171.584327145899, - 4863.966630793647, - 4634.774543756119, - 4473.544512712608, - 4372.325959153218, - 4323.222198389665, - 4320.454520438758, - 4359.635224859614, - 4434.546966841675, - 4537.930309941198, - 4659.393067424207, - 4786.366032399278, - 4905.9677697436455, - 5007.276545136884, - 5082.215524025163, - 5127.952013820259, - 5147.274585819579, - 5144.824067940956, - 5128.032925593592, - 5103.329191145251, - 5074.121774350569, - 5040.84360616973, - 5001.078608213979, - 4951.028555378538, - 4887.780159742168, - 4810.52359199781, - 4722.155174807314, - 4628.416104582774, - 4536.708362882077, - 4454.196991615469, - 4385.975095060365, - 4333.382786807437, - 4294.505885547058, - 4265.1682133753875, - 4240.3718301846675, - 4217.028070186848, - 4194.975108096339, - 4177.219121368435, - 4169.109977104402, - 4175.993452235877, - 4201.416821832221, - 4245.129898964998, - 4302.390844306376, - 4366.7778255505, - 4431.867066024383, - 4495.674107817169, - 4564.266564828506, - 4653.528126143576, - 4789.251445025941, - 5003.773504064664, - 5329.514331481811, - 5797.124328770062, - 6422.1191959282305, - 7206.676452752687 - ], - "flow:branch9_seg1:J58": [ - 0.4131395086251972, - 0.5395508253381138, - 0.6853462220464278, - 0.8452908489813631, - 1.012745456426397, - 1.1808512243417446, - 1.343376140301206, - 1.4954154446569616, - 1.6334974262981963, - 1.7559914277272495, - 1.8623220034936927, - 1.9526103250355398, - 2.0273865454903035, - 2.086860782269003, - 2.1311386615328343, - 2.1601712743596146, - 2.1738690170133994, - 2.1726806526785025, - 2.1574066261024667, - 2.1294501699205353, - 2.0906798361946604, - 2.0430206983098818, - 1.9883798901343022, - 1.9283365808750565, - 1.8641009410088045, - 1.7966349579141063, - 1.726787130072471, - 1.6555135909726582, - 1.5839732249456298, - 1.513491073576365, - 1.445313669630435, - 1.3803340337711785, - 1.318698263253383, - 1.25957802451899, - 1.201189228837176, - 1.140986710565413, - 1.076170723145235, - 1.004271378715607, - 0.9238710398496598, - 0.8348637178315952, - 0.7388051133814818, - 0.6386452042021445, - 0.5382582232121332, - 0.4418074260800719, - 0.3531155908154292, - 0.27505908884742225, - 0.20922940592587602, - 0.15614862501041396, - 0.11519578188083404, - 0.08522932307500054, - 0.06494714353380354, - 0.05306444333326885, - 0.048642971061420175, - 0.050870921892028756, - 0.058946907904682995, - 0.0719191524389506, - 0.08843717049352973, - 0.10682738315846342, - 0.1252142117406145, - 0.14180296403962694, - 0.15513430188862143, - 0.1644218069877252, - 0.16955974295330106, - 0.17104918432636776, - 0.16983511590828473, - 0.16688651776786795, - 0.1629520302685695, - 0.15835959631992225, - 0.15297549373752362, - 0.1463596456978849, - 0.1380106859294567, - 0.1276448922905654, - 0.1154083215378104, - 0.10189669675039754, - 0.08808095401745869, - 0.07504309733317596, - 0.0636987416557296, - 0.054537793163438514, - 0.047574375101815426, - 0.042357840937796674, - 0.038220471410644774, - 0.03457514109471487, - 0.031150634998128004, - 0.028134650335310953, - 0.02613044185758512, - 0.02592070660432967, - 0.028186248706319503, - 0.03316524183652349, - 0.0405399672608201, - 0.049514508500436615, - 0.0591063060954928, - 0.06868401158606884, - 0.07850414256688654, - 0.09012158673671421, - 0.10656853247972883, - 0.13204885306111266, - 0.17145637383188017, - 0.22947457607293167, - 0.3094594981202298, - 0.4131395086251972 - ], - "pressure:branch9_seg1:J58": [ - 6995.941009462796, - 7881.204892580147, - 8883.043995074877, - 9963.715875966858, - 11077.630062537353, - 12179.565883697314, - 13230.607273026242, - 14203.188720665745, - 15077.187159925945, - 15845.314647596393, - 16507.720123820258, - 17064.608178125036, - 17520.34764778998, - 17876.073763479944, - 18130.932985536918, - 18285.864232175965, - 18339.728403332734, - 18296.409146471324, - 18163.728723654185, - 17950.93012258951, - 17671.59078641661, - 17338.585647095642, - 16963.59373046091, - 16556.517715354606, - 16124.363229310016, - 15672.968097954177, - 15208.004500790732, - 14736.139731425339, - 14265.495353264152, - 13805.094993119019, - 13362.632553800408, - 12942.581812467492, - 12544.056533471003, - 12158.899273436797, - 11773.259152259558, - 11368.994806088045, - 10927.989245142098, - 10434.99477958953, - 9883.951135262261, - 9278.091847512494, - 8630.802170576113, - 7965.025817506506, - 7307.727223400221, - 6686.304481802223, - 6123.868296509035, - 5637.532817582882, - 5234.174683509917, - 4914.418213756564, - 4672.813660555574, - 4500.089418322438, - 4388.140198420242, - 4328.91256092512, - 4316.608140640365, - 4346.488733716488, - 4412.735102991163, - 4508.579702992024, - 4624.248247263731, - 4747.854500041477, - 4866.836838528472, - 4970.070456076255, - 5048.959304949834, - 5099.834476987487, - 5124.259324139468, - 5126.274460144687, - 5112.820805844892, - 5090.276801219816, - 5062.558068889566, - 5030.728391669083, - 4992.9539944178005, - 4945.791677877387, - 4886.201716133051, - 4813.001003033048, - 4728.342514432391, - 4637.249586847011, - 4546.695476804612, - 4463.767631003045, - 4393.861401700948, - 4338.9729104054495, - 4297.966804495111, - 4267.121964710323, - 4241.693678385587, - 4218.349603064688, - 4196.329083210645, - 4177.964305775759, - 4168.0582371422715, - 4171.834810227464, - 4193.164237262282, - 4232.4771623511315, - 4286.006222916373, - 4347.847178494456, - 4411.601926342091, - 4474.4858558077585, - 4540.898708889654, - 4624.503586824752, - 4748.712050737504, - 4943.856020065784, - 5242.038651505666, - 5673.60289143097, - 6256.338540277806, - 6995.941009462796 - ], - "flow:J58:branch9_seg2": [ - 0.4131395086251972, - 0.5395508253381138, - 0.6853462220464278, - 0.8452908489813631, - 1.012745456426397, - 1.1808512243417446, - 1.343376140301206, - 1.4954154446569616, - 1.6334974262981963, - 1.7559914277272495, - 1.8623220034936927, - 1.9526103250355398, - 2.0273865454903035, - 2.086860782269003, - 2.1311386615328343, - 2.1601712743596146, - 2.1738690170133994, - 2.1726806526785025, - 2.1574066261024667, - 2.1294501699205353, - 2.0906798361946604, - 2.0430206983098818, - 1.9883798901343022, - 1.9283365808750565, - 1.8641009410088045, - 1.7966349579141063, - 1.726787130072471, - 1.6555135909726582, - 1.5839732249456298, - 1.513491073576365, - 1.445313669630435, - 1.3803340337711785, - 1.318698263253383, - 1.25957802451899, - 1.201189228837176, - 1.140986710565413, - 1.076170723145235, - 1.004271378715607, - 0.9238710398496598, - 0.8348637178315952, - 0.7388051133814818, - 0.6386452042021445, - 0.5382582232121332, - 0.4418074260800719, - 0.3531155908154292, - 0.27505908884742225, - 0.20922940592587602, - 0.15614862501041396, - 0.11519578188083404, - 0.08522932307500054, - 0.06494714353380354, - 0.05306444333326885, - 0.048642971061420175, - 0.050870921892028756, - 0.058946907904682995, - 0.0719191524389506, - 0.08843717049352973, - 0.10682738315846342, - 0.1252142117406145, - 0.14180296403962694, - 0.15513430188862143, - 0.1644218069877252, - 0.16955974295330106, - 0.17104918432636776, - 0.16983511590828473, - 0.16688651776786795, - 0.1629520302685695, - 0.15835959631992225, - 0.15297549373752362, - 0.1463596456978849, - 0.1380106859294567, - 0.1276448922905654, - 0.1154083215378104, - 0.10189669675039754, - 0.08808095401745869, - 0.07504309733317596, - 0.0636987416557296, - 0.054537793163438514, - 0.047574375101815426, - 0.042357840937796674, - 0.038220471410644774, - 0.03457514109471487, - 0.031150634998128004, - 0.028134650335310953, - 0.02613044185758512, - 0.02592070660432967, - 0.028186248706319503, - 0.03316524183652349, - 0.0405399672608201, - 0.049514508500436615, - 0.0591063060954928, - 0.06868401158606884, - 0.07850414256688654, - 0.09012158673671421, - 0.10656853247972883, - 0.13204885306111266, - 0.17145637383188017, - 0.22947457607293167, - 0.3094594981202298, - 0.4131395086251972 - ], - "pressure:J58:branch9_seg2": [ - 6995.941009462796, - 7881.204892580147, - 8883.043995074877, - 9963.715875966858, - 11077.630062537353, - 12179.565883697314, - 13230.607273026242, - 14203.188720665745, - 15077.187159925945, - 15845.314647596393, - 16507.720123820258, - 17064.608178125036, - 17520.34764778998, - 17876.073763479944, - 18130.932985536918, - 18285.864232175965, - 18339.728403332734, - 18296.409146471324, - 18163.728723654185, - 17950.93012258951, - 17671.59078641661, - 17338.585647095642, - 16963.59373046091, - 16556.517715354606, - 16124.363229310016, - 15672.968097954177, - 15208.004500790732, - 14736.139731425339, - 14265.495353264152, - 13805.094993119019, - 13362.632553800408, - 12942.581812467492, - 12544.056533471003, - 12158.899273436797, - 11773.259152259558, - 11368.994806088045, - 10927.989245142098, - 10434.99477958953, - 9883.951135262261, - 9278.091847512494, - 8630.802170576113, - 7965.025817506506, - 7307.727223400221, - 6686.304481802223, - 6123.868296509035, - 5637.532817582882, - 5234.174683509917, - 4914.418213756564, - 4672.813660555574, - 4500.089418322438, - 4388.140198420242, - 4328.91256092512, - 4316.608140640365, - 4346.488733716488, - 4412.735102991163, - 4508.579702992024, - 4624.248247263731, - 4747.854500041477, - 4866.836838528472, - 4970.070456076255, - 5048.959304949834, - 5099.834476987487, - 5124.259324139468, - 5126.274460144687, - 5112.820805844892, - 5090.276801219816, - 5062.558068889566, - 5030.728391669083, - 4992.9539944178005, - 4945.791677877387, - 4886.201716133051, - 4813.001003033048, - 4728.342514432391, - 4637.249586847011, - 4546.695476804612, - 4463.767631003045, - 4393.861401700948, - 4338.9729104054495, - 4297.966804495111, - 4267.121964710323, - 4241.693678385587, - 4218.349603064688, - 4196.329083210645, - 4177.964305775759, - 4168.0582371422715, - 4171.834810227464, - 4193.164237262282, - 4232.4771623511315, - 4286.006222916373, - 4347.847178494456, - 4411.601926342091, - 4474.4858558077585, - 4540.898708889654, - 4624.503586824752, - 4748.712050737504, - 4943.856020065784, - 5242.038651505666, - 5673.60289143097, - 6256.338540277806, - 6995.941009462796 - ], - "flow:branch28_seg0:J59": [ - 0.366104117160841, - 0.4814191733500718, - 0.6180534548807687, - 0.7719986277824088, - 0.9375618255850244, - 1.108263953942861, - 1.2776852867161077, - 1.4402172259954418, - 1.5915028853417326, - 1.7287944712781325, - 1.8505641694481385, - 1.956290418464574, - 2.0460206944283668, - 2.119848009326463, - 2.1778649960036933, - 2.220008053233735, - 2.24621149296412, - 2.256717727207922, - 2.2520962863423697, - 2.233491083911399, - 2.202494481824702, - 2.160941151649919, - 2.110754821875908, - 2.0536634189669485, - 1.9911118618199257, - 1.924272672914158, - 1.854144860660746, - 1.7817361509268699, - 1.7081841928922799, - 1.6347812836711502, - 1.5628321972998167, - 1.4934254220777745, - 1.4270815483560553, - 1.363503442904653, - 1.3014609041867264, - 1.2388838772828, - 1.1732086780057236, - 1.101901361177288, - 1.0230722307262239, - 0.9359087329349718, - 0.8410770903162701, - 0.7406537858689929, - 0.6378694868766027, - 0.5365793802614627, - 0.4406823769764427, - 0.3534723208995799, - 0.2772669314271713, - 0.2133065249004967, - 0.1616919186302769, - 0.12181123022448645, - 0.09261633586721649, - 0.07293194897910531, - 0.06174262693673469, - 0.05814028760606999, - 0.061289646604272434, - 0.07025794035793845, - 0.08382309050236357, - 0.10045353184392711, - 0.11836113328779974, - 0.13570795033770294, - 0.1508552924699756, - 0.16266496510549877, - 0.17060121803651093, - 0.17477284730355952, - 0.1757957752190209, - 0.17449942188553225, - 0.17166951191757188, - 0.16780474574532073, - 0.16300776726720398, - 0.15704169694308173, - 0.1494991914019122, - 0.14005247749329464, - 0.12866772282055045, - 0.11571168986562007, - 0.10194220903088035, - 0.08833309882096875, - 0.07583561654771097, - 0.06512843898448004, - 0.05648520499488999, - 0.049725174850733564, - 0.04436904196251084, - 0.03986538166333865, - 0.035835497731970194, - 0.03225810821983786, - 0.02950795808632194, - 0.02822566475395732, - 0.029086930875657346, - 0.03249822287444498, - 0.03842164428583983, - 0.046331169645621756, - 0.05540374629596409, - 0.06492156533744498, - 0.07476372254127699, - 0.08585891254830824, - 0.10047118319727122, - 0.12211749498660661, - 0.15526323027443317, - 0.20455223864250574, - 0.27394931506191367, - 0.366104117160841 - ], - "pressure:branch28_seg0:J59": [ - 6489.011376940383, - 7251.32528878713, - 8137.900815388518, - 9120.141951848256, - 10159.959728782935, - 11216.374915424727, - 12250.79213405501, - 13231.682154400649, - 14134.814814867766, - 14946.760817108341, - 15661.33406417295, - 16276.251534172314, - 16793.026295486336, - 17212.154069018023, - 17533.587379096924, - 17757.344835655225, - 17882.729822351488, - 17912.14699229619, - 17850.514017875284, - 17705.576173496425, - 17488.35088864591, - 17210.44370584469, - 16883.47738434086, - 16517.673258331317, - 16121.151551708417, - 15700.619302209572, - 15262.04822184056, - 14811.80940868263, - 14357.28141027598, - 13906.736638484963, - 13467.987556683063, - 13046.863407528697, - 12645.080052546373, - 12258.60267137005, - 11877.807509268783, - 11488.303722350354, - 11073.799358446588, - 10619.140815142173, - 10114.920608218847, - 9559.095742569194, - 8958.963101193582, - 8330.607046057672, - 7695.971888229792, - 7079.582458982585, - 6504.704185291205, - 5990.135674026933, - 5547.302737108863, - 5181.452682589001, - 4891.152200857106, - 4670.936818754857, - 4514.076447285811, - 4413.225486907061, - 4362.497555020861, - 4356.695663222189, - 4390.4547839645875, - 4457.729609491435, - 4550.245526215981, - 4657.805051796413, - 4769.001117920019, - 4872.74956082462, - 4959.624281971757, - 5023.892583125237, - 5063.965834052626, - 5081.613136767106, - 5081.600785144199, - 5069.295970220922, - 5049.058367748207, - 5023.160933821681, - 4991.346460837671, - 4951.5103868374035, - 4901.044896416627, - 4838.314483652512, - 4763.999516714765, - 4681.299757384733, - 4595.6146509760465, - 4513.199225221063, - 4439.619241715394, - 4378.181980264196, - 4329.564619175484, - 4291.781409786713, - 4261.341074477316, - 4234.997858733865, - 4211.0633071455095, - 4190.304932526672, - 4175.8717592046105, - 4172.060991561124, - 4182.820133332475, - 4209.829704505725, - 4251.595847112019, - 4304.007411220752, - 4361.652966827172, - 4420.837875268169, - 4482.725688706493, - 4555.804209577334, - 4657.164245433856, - 4811.1270685367535, - 5046.364522338443, - 5391.587882580091, - 5868.301829723173, - 6489.011376940383 - ], - "flow:J59:branch28_seg1": [ - 0.366104117160841, - 0.4814191733500718, - 0.6180534548807687, - 0.7719986277824088, - 0.9375618255850244, - 1.108263953942861, - 1.2776852867161077, - 1.4402172259954418, - 1.5915028853417326, - 1.7287944712781325, - 1.8505641694481385, - 1.956290418464574, - 2.0460206944283668, - 2.119848009326463, - 2.1778649960036933, - 2.220008053233735, - 2.24621149296412, - 2.256717727207922, - 2.2520962863423697, - 2.233491083911399, - 2.202494481824702, - 2.160941151649919, - 2.110754821875908, - 2.0536634189669485, - 1.9911118618199257, - 1.924272672914158, - 1.854144860660746, - 1.7817361509268699, - 1.7081841928922799, - 1.6347812836711502, - 1.5628321972998167, - 1.4934254220777745, - 1.4270815483560553, - 1.363503442904653, - 1.3014609041867264, - 1.2388838772828, - 1.1732086780057236, - 1.101901361177288, - 1.0230722307262239, - 0.9359087329349718, - 0.8410770903162701, - 0.7406537858689929, - 0.6378694868766027, - 0.5365793802614627, - 0.4406823769764427, - 0.3534723208995799, - 0.2772669314271713, - 0.2133065249004967, - 0.1616919186302769, - 0.12181123022448645, - 0.09261633586721649, - 0.07293194897910531, - 0.06174262693673469, - 0.05814028760606999, - 0.061289646604272434, - 0.07025794035793845, - 0.08382309050236357, - 0.10045353184392711, - 0.11836113328779974, - 0.13570795033770294, - 0.1508552924699756, - 0.16266496510549877, - 0.17060121803651093, - 0.17477284730355952, - 0.1757957752190209, - 0.17449942188553225, - 0.17166951191757188, - 0.16780474574532073, - 0.16300776726720398, - 0.15704169694308173, - 0.1494991914019122, - 0.14005247749329464, - 0.12866772282055045, - 0.11571168986562007, - 0.10194220903088035, - 0.08833309882096875, - 0.07583561654771097, - 0.06512843898448004, - 0.05648520499488999, - 0.049725174850733564, - 0.04436904196251084, - 0.03986538166333865, - 0.035835497731970194, - 0.03225810821983786, - 0.02950795808632194, - 0.02822566475395732, - 0.029086930875657346, - 0.03249822287444498, - 0.03842164428583983, - 0.046331169645621756, - 0.05540374629596409, - 0.06492156533744498, - 0.07476372254127699, - 0.08585891254830824, - 0.10047118319727122, - 0.12211749498660661, - 0.15526323027443317, - 0.20455223864250574, - 0.27394931506191367, - 0.366104117160841 - ], - "pressure:J59:branch28_seg1": [ - 6489.011376940383, - 7251.32528878713, - 8137.900815388518, - 9120.141951848256, - 10159.959728782935, - 11216.374915424727, - 12250.79213405501, - 13231.682154400649, - 14134.814814867766, - 14946.760817108341, - 15661.33406417295, - 16276.251534172314, - 16793.026295486336, - 17212.154069018023, - 17533.587379096924, - 17757.344835655225, - 17882.729822351488, - 17912.14699229619, - 17850.514017875284, - 17705.576173496425, - 17488.35088864591, - 17210.44370584469, - 16883.47738434086, - 16517.673258331317, - 16121.151551708417, - 15700.619302209572, - 15262.04822184056, - 14811.80940868263, - 14357.28141027598, - 13906.736638484963, - 13467.987556683063, - 13046.863407528697, - 12645.080052546373, - 12258.60267137005, - 11877.807509268783, - 11488.303722350354, - 11073.799358446588, - 10619.140815142173, - 10114.920608218847, - 9559.095742569194, - 8958.963101193582, - 8330.607046057672, - 7695.971888229792, - 7079.582458982585, - 6504.704185291205, - 5990.135674026933, - 5547.302737108863, - 5181.452682589001, - 4891.152200857106, - 4670.936818754857, - 4514.076447285811, - 4413.225486907061, - 4362.497555020861, - 4356.695663222189, - 4390.4547839645875, - 4457.729609491435, - 4550.245526215981, - 4657.805051796413, - 4769.001117920019, - 4872.74956082462, - 4959.624281971757, - 5023.892583125237, - 5063.965834052626, - 5081.613136767106, - 5081.600785144199, - 5069.295970220922, - 5049.058367748207, - 5023.160933821681, - 4991.346460837671, - 4951.5103868374035, - 4901.044896416627, - 4838.314483652512, - 4763.999516714765, - 4681.299757384733, - 4595.6146509760465, - 4513.199225221063, - 4439.619241715394, - 4378.181980264196, - 4329.564619175484, - 4291.781409786713, - 4261.341074477316, - 4234.997858733865, - 4211.0633071455095, - 4190.304932526672, - 4175.8717592046105, - 4172.060991561124, - 4182.820133332475, - 4209.829704505725, - 4251.595847112019, - 4304.007411220752, - 4361.652966827172, - 4420.837875268169, - 4482.725688706493, - 4555.804209577334, - 4657.164245433856, - 4811.1270685367535, - 5046.364522338443, - 5391.587882580091, - 5868.301829723173, - 6489.011376940383 - ], - "flow:branch28_seg1:J60": [ - 0.365937743142102, - 0.48122016961432684, - 0.6178274521886906, - 0.771754162580941, - 0.9373083774701707, - 1.1080112348190245, - 1.2774420623043046, - 1.4399901771802164, - 1.5912963977180357, - 1.7286111105192383, - 1.850404476335298, - 1.9561545196951642, - 2.045908412114714, - 2.119759017557245, - 2.1777996422110295, - 2.219966128447332, - 2.2461929804934933, - 2.2567221120777092, - 2.2521214705108386, - 2.2335350450891673, - 2.202554535807879, - 2.1610142326358845, - 2.1108384337891986, - 2.0537552963731227, - 1.9912102325722205, - 1.9243761192123687, - 1.8542518988267251, - 1.7818451404516844, - 1.7082932499432633, - 1.6348884105684516, - 1.5629356225774889, - 1.49352423801818, - 1.4271759537433877, - 1.3635950614723662, - 1.3015527515180425, - 1.238979815581924, - 1.173312482703807, - 1.1020162758533465, - 1.023199758228347, - 0.9360480461306815, - 0.8412254782414872, - 0.740806528759678, - 0.6380207630938145, - 0.5367231474167808, - 0.4408139384133257, - 0.3535876725024235, - 0.2773639535582974, - 0.2133852616426294, - 0.16175289054973566, - 0.1218561889824668, - 0.09264708548702506, - 0.07294984676901876, - 0.061749220707126594, - 0.05813672560919845, - 0.06127719110168534, - 0.07023837724726924, - 0.08379859882614336, - 0.10042675061959173, - 0.11833488470446457, - 0.1356847280809197, - 0.15083695635939268, - 0.1626525045425252, - 0.1705944325212726, - 0.17477093413847783, - 0.17579749817930754, - 0.17450348063107202, - 0.1716750846360007, - 0.1678116220114944, - 0.1630162664909296, - 0.15705247596187843, - 0.1495127518320962, - 0.1400690074493114, - 0.12868679035359792, - 0.1157321636964133, - 0.1019626419165335, - 0.08835203638057756, - 0.07585193714094572, - 0.0651415975640451, - 0.05649546766423779, - 0.04973322838605322, - 0.044375736260990464, - 0.03987139776923641, - 0.03584095370206563, - 0.03226250703749715, - 0.029510331001229597, - 0.028224955379373307, - 0.029082414410766196, - 0.03248980267141933, - 0.038410109069364734, - 0.04631774764135848, - 0.055389639317621045, - 0.06490720087407735, - 0.07474802262460253, - 0.08583882544237074, - 0.10044166500236956, - 0.12207170591820721, - 0.15519467688523103, - 0.20445440825024624, - 0.27381734258732104, - 0.365937743142102 - ], - "pressure:branch28_seg1:J60": [ - 6455.955296206129, - 7210.3142129147645, - 8089.290093683835, - 9064.798331834892, - 10099.180892398119, - 11151.696490833347, - 12183.771130138297, - 13163.665115720472, - 14066.9323225159, - 14879.827000446881, - 15595.850579972393, - 16212.620397713905, - 16731.52614258309, - 17153.06966692216, - 17477.26665123364, - 17704.09768722667, - 17832.89604938617, - 17865.957619387627, - 17808.036926941775, - 17666.78053509433, - 17453.042694555814, - 17178.35854364886, - 16854.339599188665, - 16491.21861056448, - 16097.171777461763, - 15678.938397751539, - 15242.488168542588, - 14794.153758071732, - 14341.25005230392, - 13891.991254460274, - 13454.188132304807, - 13033.747638352343, - 12632.539876739811, - 12246.775203026858, - 11867.080005706564, - 11479.280967196819, - 11067.189678757417, - 10615.648161639172, - 10115.040383649284, - 9563.013419519391, - 8966.499760518747, - 8341.1869780301, - 7708.73192292206, - 7093.502015270296, - 6518.775178186228, - 6003.444915083577, - 5559.205009452846, - 5191.5454063772695, - 4899.246684520634, - 4677.043494868748, - 4518.255200142343, - 4415.565919178554, - 4363.075515683938, - 4355.558240028845, - 4387.689023922991, - 4453.478959574448, - 4544.756988154932, - 4651.438559745145, - 4762.194223273021, - 4865.949646518789, - 4953.234539516986, - 5018.1979777365095, - 5059.078240598174, - 5077.519370817983, - 5078.171809443724, - 5066.360616231337, - 5046.482966561748, - 5020.890295516836, - 4989.420269807641, - 4950.042411280995, - 4900.165482797026, - 4838.118212898166, - 4764.483669819078, - 4682.351031729794, - 4597.026579781588, - 4514.719694854214, - 4441.011111952922, - 4379.289367607967, - 4330.339046310844, - 4292.270945821368, - 4261.65999964459, - 4235.25478113176, - 4211.302427139191, - 4190.472448721984, - 4175.815491016998, - 4171.578801135295, - 4181.722229908979, - 4208.00985516159, - 4249.084735726334, - 4300.941760990785, - 4358.220231020239, - 4417.15660601291, - 4478.705670516413, - 4551.0328211678025, - 4650.840739295837, - 4802.091064105384, - 5033.251676452042, - 5372.927631594197, - 5842.864058081606, - 6455.955296206129 - ], - "flow:J60:branch28_seg2": [ - 0.365937743142102, - 0.48122016961432684, - 0.6178274521886906, - 0.771754162580941, - 0.9373083774701707, - 1.1080112348190245, - 1.2774420623043046, - 1.4399901771802164, - 1.5912963977180357, - 1.7286111105192383, - 1.850404476335298, - 1.9561545196951642, - 2.045908412114714, - 2.119759017557245, - 2.1777996422110295, - 2.219966128447332, - 2.2461929804934933, - 2.2567221120777092, - 2.2521214705108386, - 2.2335350450891673, - 2.202554535807879, - 2.1610142326358845, - 2.1108384337891986, - 2.0537552963731227, - 1.9912102325722205, - 1.9243761192123687, - 1.8542518988267251, - 1.7818451404516844, - 1.7082932499432633, - 1.6348884105684516, - 1.5629356225774889, - 1.49352423801818, - 1.4271759537433877, - 1.3635950614723662, - 1.3015527515180425, - 1.238979815581924, - 1.173312482703807, - 1.1020162758533465, - 1.023199758228347, - 0.9360480461306815, - 0.8412254782414872, - 0.740806528759678, - 0.6380207630938145, - 0.5367231474167808, - 0.4408139384133257, - 0.3535876725024235, - 0.2773639535582974, - 0.2133852616426294, - 0.16175289054973566, - 0.1218561889824668, - 0.09264708548702506, - 0.07294984676901876, - 0.061749220707126594, - 0.05813672560919845, - 0.06127719110168534, - 0.07023837724726924, - 0.08379859882614336, - 0.10042675061959173, - 0.11833488470446457, - 0.1356847280809197, - 0.15083695635939268, - 0.1626525045425252, - 0.1705944325212726, - 0.17477093413847783, - 0.17579749817930754, - 0.17450348063107202, - 0.1716750846360007, - 0.1678116220114944, - 0.1630162664909296, - 0.15705247596187843, - 0.1495127518320962, - 0.1400690074493114, - 0.12868679035359792, - 0.1157321636964133, - 0.1019626419165335, - 0.08835203638057756, - 0.07585193714094572, - 0.0651415975640451, - 0.05649546766423779, - 0.04973322838605322, - 0.044375736260990464, - 0.03987139776923641, - 0.03584095370206563, - 0.03226250703749715, - 0.029510331001229597, - 0.028224955379373307, - 0.029082414410766196, - 0.03248980267141933, - 0.038410109069364734, - 0.04631774764135848, - 0.055389639317621045, - 0.06490720087407735, - 0.07474802262460253, - 0.08583882544237074, - 0.10044166500236956, - 0.12207170591820721, - 0.15519467688523103, - 0.20445440825024624, - 0.27381734258732104, - 0.365937743142102 - ], - "pressure:J60:branch28_seg2": [ - 6455.955296206129, - 7210.3142129147645, - 8089.290093683835, - 9064.798331834892, - 10099.180892398119, - 11151.696490833347, - 12183.771130138297, - 13163.665115720472, - 14066.9323225159, - 14879.827000446881, - 15595.850579972393, - 16212.620397713905, - 16731.52614258309, - 17153.06966692216, - 17477.26665123364, - 17704.09768722667, - 17832.89604938617, - 17865.957619387627, - 17808.036926941775, - 17666.78053509433, - 17453.042694555814, - 17178.35854364886, - 16854.339599188665, - 16491.21861056448, - 16097.171777461763, - 15678.938397751539, - 15242.488168542588, - 14794.153758071732, - 14341.25005230392, - 13891.991254460274, - 13454.188132304807, - 13033.747638352343, - 12632.539876739811, - 12246.775203026858, - 11867.080005706564, - 11479.280967196819, - 11067.189678757417, - 10615.648161639172, - 10115.040383649284, - 9563.013419519391, - 8966.499760518747, - 8341.1869780301, - 7708.73192292206, - 7093.502015270296, - 6518.775178186228, - 6003.444915083577, - 5559.205009452846, - 5191.5454063772695, - 4899.246684520634, - 4677.043494868748, - 4518.255200142343, - 4415.565919178554, - 4363.075515683938, - 4355.558240028845, - 4387.689023922991, - 4453.478959574448, - 4544.756988154932, - 4651.438559745145, - 4762.194223273021, - 4865.949646518789, - 4953.234539516986, - 5018.1979777365095, - 5059.078240598174, - 5077.519370817983, - 5078.171809443724, - 5066.360616231337, - 5046.482966561748, - 5020.890295516836, - 4989.420269807641, - 4950.042411280995, - 4900.165482797026, - 4838.118212898166, - 4764.483669819078, - 4682.351031729794, - 4597.026579781588, - 4514.719694854214, - 4441.011111952922, - 4379.289367607967, - 4330.339046310844, - 4292.270945821368, - 4261.65999964459, - 4235.25478113176, - 4211.302427139191, - 4190.472448721984, - 4175.815491016998, - 4171.578801135295, - 4181.722229908979, - 4208.00985516159, - 4249.084735726334, - 4300.941760990785, - 4358.220231020239, - 4417.15660601291, - 4478.705670516413, - 4551.0328211678025, - 4650.840739295837, - 4802.091064105384, - 5033.251676452042, - 5372.927631594197, - 5842.864058081606, - 6455.955296206129 - ], - "flow:branch30_seg0:J61": [ - 0.9480476849009974, - 1.216807736587695, - 1.5066502857016155, - 1.8028093607652615, - 2.08971497345257, - 2.354457890433391, - 2.588089209027723, - 2.7865170205582817, - 2.9486613510664395, - 3.077474440291671, - 3.176814142617925, - 3.249754419260042, - 3.299418061572718, - 3.3265367031333755, - 3.331179244373441, - 3.313456896985264, - 3.273093519402913, - 3.212071180539768, - 3.133032904252752, - 3.039562375730405, - 2.9362024641942, - 2.826481041845821, - 2.713341468560364, - 2.5985966689641393, - 2.4830186088523583, - 2.3671952796501, - 2.251882276034173, - 2.1385190622562202, - 2.0292251259734413, - 1.92638417474154, - 1.8316989150506058, - 1.7454994088744826, - 1.6659830865131817, - 1.5889107161323854, - 1.5084586420881343, - 1.4180487007104747, - 1.3120347195546513, - 1.1868630887300875, - 1.0429088318040995, - 0.8838199109294377, - 0.7167939419838243, - 0.5511954434670271, - 0.39658283963354807, - 0.26119342427348335, - 0.15069834546123329, - 0.06762641602898051, - 0.010690293622633391, - -0.022872439644436873, - -0.03762472569143073, - -0.03808488147518486, - -0.02744727268329376, - -0.008290895087852747, - 0.01825773622539141, - 0.05136855617610879, - 0.08973390639807972, - 0.13155662346868477, - 0.1738290859041709, - 0.21297474549430653, - 0.24545368961690528, - 0.26860676409181056, - 0.28104349323206435, - 0.2833579597952269, - 0.2776657188775968, - 0.26675004482659065, - 0.2537829761234362, - 0.24094902730120768, - 0.2291430997570657, - 0.2179353350643873, - 0.20586525291217067, - 0.1912115545544896, - 0.17278413480543361, - 0.150460846604598, - 0.12553628584189455, - 0.10022221386009157, - 0.0771937166096381, - 0.05871098931541693, - 0.04599379054328204, - 0.03876831242689733, - 0.03565866511219746, - 0.03456881100851691, - 0.03349562195611515, - 0.03141908310647191, - 0.028573529290054557, - 0.02642039315863538, - 0.02713685102732942, - 0.03266327539215207, - 0.04401695574061938, - 0.060589891281188336, - 0.08030957429348597, - 0.10049446478768982, - 0.1188230818529322, - 0.13492579109339065, - 0.15145475532563055, - 0.17445610400954611, - 0.21306770788052223, - 0.27778230233627155, - 0.3786419114250554, - 0.5234326293500144, - 0.7140005112439608, - 0.9480476849009974 - ], - "pressure:branch30_seg0:J61": [ - 9172.003161241606, - 10555.15195071957, - 12010.49137173248, - 13464.332777476038, - 14844.962905105596, - 16093.578064068557, - 17173.664952394043, - 18077.4259050214, - 18805.136366159, - 19372.611163860696, - 19806.61828815408, - 20115.64691109902, - 20313.116936571234, - 20402.59234108298, - 20378.46096955784, - 20246.427371249967, - 20003.871386469185, - 19661.66549919362, - 19240.86949502217, - 18755.590135632887, - 18229.843082931995, - 17680.8374946235, - 17118.72134945967, - 16551.79223135165, - 15982.003215757768, - 15411.844415387817, - 14846.54076613935, - 14294.437619510316, - 13766.988614175265, - 13275.913696503492, - 12827.708659911443, - 12419.501944665883, - 12038.783762413255, - 11659.631593131222, - 11250.569895387423, - 10779.324743839652, - 10222.43886885335, - 9566.47070359566, - 8821.603945809416, - 8014.89425579048, - 7184.819431309027, - 6381.953523387251, - 5652.370271450206, - 5032.609507755543, - 4541.491321039274, - 4188.8116838286505, - 3960.398640847504, - 3837.0877031011437, - 3799.4427215214555, - 3822.1867262317833, - 3893.753728043783, - 4004.6624520527685, - 4148.74720045416, - 4324.2183187054625, - 4522.339995558412, - 4732.264721253612, - 4938.16375738442, - 5121.014439557389, - 5264.123100540356, - 5357.3973430942215, - 5397.097221287527, - 5388.699993835089, - 5347.422609014344, - 5286.437018442331, - 5220.534216281002, - 5159.208460581902, - 5103.338285379854, - 5048.2090698039265, - 4985.44036182723, - 4906.559562204795, - 4807.899863749527, - 4690.901120564229, - 4564.676959721228, - 4442.026735289615, - 4335.780677307739, - 4255.5274385154635, - 4204.914431708048, - 4179.764712947295, - 4170.661677843299, - 4167.4597870025855, - 4160.913377817565, - 4148.281300841059, - 4133.730108159766, - 4126.465280721394, - 4137.898910593062, - 4176.233724904843, - 4243.736111775619, - 4334.731129973447, - 4435.45668037464, - 4532.961075221276, - 4618.2295308171515, - 4694.245519727028, - 4780.881256434867, - 4914.720130522453, - 5145.709759816224, - 5528.357840774142, - 6104.368990956243, - 6909.668169653153, - 7941.863640255966, - 9172.003161241606 - ], - "flow:J61:branch30_seg1": [ - 0.9480476849009974, - 1.216807736587695, - 1.5066502857016155, - 1.8028093607652615, - 2.08971497345257, - 2.354457890433391, - 2.588089209027723, - 2.7865170205582817, - 2.9486613510664395, - 3.077474440291671, - 3.176814142617925, - 3.249754419260042, - 3.299418061572718, - 3.3265367031333755, - 3.331179244373441, - 3.313456896985264, - 3.273093519402913, - 3.212071180539768, - 3.133032904252752, - 3.039562375730405, - 2.9362024641942, - 2.826481041845821, - 2.713341468560364, - 2.5985966689641393, - 2.4830186088523583, - 2.3671952796501, - 2.251882276034173, - 2.1385190622562202, - 2.0292251259734413, - 1.92638417474154, - 1.8316989150506058, - 1.7454994088744826, - 1.6659830865131817, - 1.5889107161323854, - 1.5084586420881343, - 1.4180487007104747, - 1.3120347195546513, - 1.1868630887300875, - 1.0429088318040995, - 0.8838199109294377, - 0.7167939419838243, - 0.5511954434670271, - 0.39658283963354807, - 0.26119342427348335, - 0.15069834546123329, - 0.06762641602898051, - 0.010690293622633391, - -0.022872439644436873, - -0.03762472569143073, - -0.03808488147518486, - -0.02744727268329376, - -0.008290895087852747, - 0.01825773622539141, - 0.05136855617610879, - 0.08973390639807972, - 0.13155662346868477, - 0.1738290859041709, - 0.21297474549430653, - 0.24545368961690528, - 0.26860676409181056, - 0.28104349323206435, - 0.2833579597952269, - 0.2776657188775968, - 0.26675004482659065, - 0.2537829761234362, - 0.24094902730120768, - 0.2291430997570657, - 0.2179353350643873, - 0.20586525291217067, - 0.1912115545544896, - 0.17278413480543361, - 0.150460846604598, - 0.12553628584189455, - 0.10022221386009157, - 0.0771937166096381, - 0.05871098931541693, - 0.04599379054328204, - 0.03876831242689733, - 0.03565866511219746, - 0.03456881100851691, - 0.03349562195611515, - 0.03141908310647191, - 0.028573529290054557, - 0.02642039315863538, - 0.02713685102732942, - 0.03266327539215207, - 0.04401695574061938, - 0.060589891281188336, - 0.08030957429348597, - 0.10049446478768982, - 0.1188230818529322, - 0.13492579109339065, - 0.15145475532563055, - 0.17445610400954611, - 0.21306770788052223, - 0.27778230233627155, - 0.3786419114250554, - 0.5234326293500144, - 0.7140005112439608, - 0.9480476849009974 - ], - "pressure:J61:branch30_seg1": [ - 9172.003161241606, - 10555.15195071957, - 12010.49137173248, - 13464.332777476038, - 14844.962905105596, - 16093.578064068557, - 17173.664952394043, - 18077.4259050214, - 18805.136366159, - 19372.611163860696, - 19806.61828815408, - 20115.64691109902, - 20313.116936571234, - 20402.59234108298, - 20378.46096955784, - 20246.427371249967, - 20003.871386469185, - 19661.66549919362, - 19240.86949502217, - 18755.590135632887, - 18229.843082931995, - 17680.8374946235, - 17118.72134945967, - 16551.79223135165, - 15982.003215757768, - 15411.844415387817, - 14846.54076613935, - 14294.437619510316, - 13766.988614175265, - 13275.913696503492, - 12827.708659911443, - 12419.501944665883, - 12038.783762413255, - 11659.631593131222, - 11250.569895387423, - 10779.324743839652, - 10222.43886885335, - 9566.47070359566, - 8821.603945809416, - 8014.89425579048, - 7184.819431309027, - 6381.953523387251, - 5652.370271450206, - 5032.609507755543, - 4541.491321039274, - 4188.8116838286505, - 3960.398640847504, - 3837.0877031011437, - 3799.4427215214555, - 3822.1867262317833, - 3893.753728043783, - 4004.6624520527685, - 4148.74720045416, - 4324.2183187054625, - 4522.339995558412, - 4732.264721253612, - 4938.16375738442, - 5121.014439557389, - 5264.123100540356, - 5357.3973430942215, - 5397.097221287527, - 5388.699993835089, - 5347.422609014344, - 5286.437018442331, - 5220.534216281002, - 5159.208460581902, - 5103.338285379854, - 5048.2090698039265, - 4985.44036182723, - 4906.559562204795, - 4807.899863749527, - 4690.901120564229, - 4564.676959721228, - 4442.026735289615, - 4335.780677307739, - 4255.5274385154635, - 4204.914431708048, - 4179.764712947295, - 4170.661677843299, - 4167.4597870025855, - 4160.913377817565, - 4148.281300841059, - 4133.730108159766, - 4126.465280721394, - 4137.898910593062, - 4176.233724904843, - 4243.736111775619, - 4334.731129973447, - 4435.45668037464, - 4532.961075221276, - 4618.2295308171515, - 4694.245519727028, - 4780.881256434867, - 4914.720130522453, - 5145.709759816224, - 5528.357840774142, - 6104.368990956243, - 6909.668169653153, - 7941.863640255966, - 9172.003161241606 - ], - "flow:branch30_seg1:J62": [ - 0.9447124091747185, - 1.2131968576705456, - 1.502924426490975, - 1.7992045512419659, - 2.0863865328108435, - 2.35150165716199, - 2.5855666673886373, - 2.7844806167267624, - 2.947019608313964, - 3.076207655726341, - 3.175885509063162, - 3.249101740473401, - 3.299057306725215, - 3.3264500730262117, - 3.331370390092653, - 3.313932899726788, - 3.2738308443276365, - 3.213052045266424, - 3.1341924140599002, - 3.0408437512199047, - 2.937573987036311, - 2.8278903456882603, - 2.7147703098541864, - 2.6000359774853976, - 2.4844594619435996, - 2.3686338548951347, - 2.2532992515464296, - 2.1398875512436906, - 2.030514066048243, - 1.9275741891188278, - 1.8327744065740517, - 1.7464877207286207, - 1.6669358921897526, - 1.5898918198602503, - 1.5095558544969374, - 1.4193397103927845, - 1.3135640690243697, - 1.1886327642429462, - 1.044887462636277, - 0.8859089328933617, - 0.7188749314165811, - 0.5531563600867623, - 0.39830441565773733, - 0.26258935687588014, - 0.15176292637539054, - 0.06835796411510352, - 0.011105255215184531, - -0.02268012904999635, - -0.03761811340556084, - -0.038217758235742236, - -0.027675228232064118, - -0.008624409062323753, - 0.01784974559224685, - 0.05089748592539095, - 0.0892080479117744, - 0.13102472083284822, - 0.17333206711062385, - 0.21255530116633228, - 0.24514951048510042, - 0.26844217940496157, - 0.28100447922877747, - 0.28342346675014596, - 0.2778038071782626, - 0.2669129114345111, - 0.25394605754771876, - 0.24109795742363183, - 0.22927958170994306, - 0.21807972389680838, - 0.2060412502714942, - 0.19143774452649792, - 0.17305944920998861, - 0.15077216466000984, - 0.12585910435832937, - 0.10051703080089462, - 0.0774302026101479, - 0.0588743358249267, - 0.046088213646430044, - 0.03880256560278296, - 0.03566935630529682, - 0.03458116104497116, - 0.033519656637973114, - 0.03145607065465057, - 0.028605963893460682, - 0.02642005851496899, - 0.02707754756267487, - 0.03252793437240893, - 0.043814151875899605, - 0.060343123580332364, - 0.08005179209762062, - 0.10026222505854528, - 0.11862469060438469, - 0.1347327093093956, - 0.1511946813321954, - 0.17401808839701052, - 0.21231732371838816, - 0.2765664670813314, - 0.37689957425708354, - 0.5211173277791199, - 0.711074422002286, - 0.9447124091747185 - ], - "pressure:branch30_seg1:J62": [ - 8843.62626230063, - 10179.242546760166, - 11602.66605775814, - 13041.884913537326, - 14423.263265409527, - 15685.99429690635, - 16790.109802059986, - 17721.788208580223, - 18477.725837005248, - 19073.337127430284, - 19531.163723113674, - 19862.696475133307, - 20082.557413738698, - 20194.1471733996, - 20194.91583702031, - 20088.058716063555, - 19871.407250077667, - 19555.113737289077, - 19155.918454469927, - 18689.4458599458, - 18178.738893250924, - 17640.819856145736, - 17087.99582982625, - 16528.84445214976, - 15966.213444002517, - 15402.77653481502, - 14842.885391180418, - 14294.12515773689, - 13767.28290201051, - 13274.014186529384, - 12821.680106963639, - 12409.888233504385, - 12028.188961191383, - 11653.53316722914, - 11256.315963868157, - 10804.549193636723, - 10272.768885580484, - 9645.446084073232, - 8928.361392610324, - 8143.449910802856, - 7327.0708374645565, - 6527.047385263683, - 5789.330475108418, - 5152.210901094264, - 4639.093062156337, - 4261.07078045698, - 4008.1289393252323, - 3864.3948550687046, - 3808.9609980876658, - 3818.3572694272225, - 3879.0781771792, - 3979.932944488265, - 4115.313260017022, - 4282.208424277333, - 4473.126418097842, - 4678.527660658583, - 4883.242859724346, - 5069.182229514982, - 5219.45969418744, - 5322.570332355962, - 5373.0704897739215, - 5375.077680828102, - 5341.232842285326, - 5284.695298524129, - 5220.602101508526, - 5159.023040232014, - 5102.643375954042, - 5048.181259522175, - 4987.969548986813, - 4913.605644444226, - 4820.297375442642, - 4708.3888691393995, - 4585.4641227122665, - 4463.161573850767, - 4354.365703936259, - 4269.387499975523, - 4213.095536101576, - 4182.7871164354, - 4170.603738288099, - 4166.372558549164, - 4160.586796396872, - 4149.358243255002, - 4135.226379195616, - 4126.238276543459, - 4133.336126499748, - 4165.331851354885, - 4225.9527102792135, - 4310.996508251531, - 4408.651007557349, - 4506.036619856851, - 4592.911595745144, - 4669.667802340483, - 4752.343915488125, - 4873.526455360097, - 5079.974397638864, - 5424.096917618295, - 5951.288539445242, - 6698.3296015000205, - 7668.726093912861, - 8843.62626230063 - ], - "flow:J62:branch30_seg2": [ - 0.9447124091747185, - 1.2131968576705456, - 1.502924426490975, - 1.7992045512419659, - 2.0863865328108435, - 2.35150165716199, - 2.5855666673886373, - 2.7844806167267624, - 2.947019608313964, - 3.076207655726341, - 3.175885509063162, - 3.249101740473401, - 3.299057306725215, - 3.3264500730262117, - 3.331370390092653, - 3.313932899726788, - 3.2738308443276365, - 3.213052045266424, - 3.1341924140599002, - 3.0408437512199047, - 2.937573987036311, - 2.8278903456882603, - 2.7147703098541864, - 2.6000359774853976, - 2.4844594619435996, - 2.3686338548951347, - 2.2532992515464296, - 2.1398875512436906, - 2.030514066048243, - 1.9275741891188278, - 1.8327744065740517, - 1.7464877207286207, - 1.6669358921897526, - 1.5898918198602503, - 1.5095558544969374, - 1.4193397103927845, - 1.3135640690243697, - 1.1886327642429462, - 1.044887462636277, - 0.8859089328933617, - 0.7188749314165811, - 0.5531563600867623, - 0.39830441565773733, - 0.26258935687588014, - 0.15176292637539054, - 0.06835796411510352, - 0.011105255215184531, - -0.02268012904999635, - -0.03761811340556084, - -0.038217758235742236, - -0.027675228232064118, - -0.008624409062323753, - 0.01784974559224685, - 0.05089748592539095, - 0.0892080479117744, - 0.13102472083284822, - 0.17333206711062385, - 0.21255530116633228, - 0.24514951048510042, - 0.26844217940496157, - 0.28100447922877747, - 0.28342346675014596, - 0.2778038071782626, - 0.2669129114345111, - 0.25394605754771876, - 0.24109795742363183, - 0.22927958170994306, - 0.21807972389680838, - 0.2060412502714942, - 0.19143774452649792, - 0.17305944920998861, - 0.15077216466000984, - 0.12585910435832937, - 0.10051703080089462, - 0.0774302026101479, - 0.0588743358249267, - 0.046088213646430044, - 0.03880256560278296, - 0.03566935630529682, - 0.03458116104497116, - 0.033519656637973114, - 0.03145607065465057, - 0.028605963893460682, - 0.02642005851496899, - 0.02707754756267487, - 0.03252793437240893, - 0.043814151875899605, - 0.060343123580332364, - 0.08005179209762062, - 0.10026222505854528, - 0.11862469060438469, - 0.1347327093093956, - 0.1511946813321954, - 0.17401808839701052, - 0.21231732371838816, - 0.2765664670813314, - 0.37689957425708354, - 0.5211173277791199, - 0.711074422002286, - 0.9447124091747185 - ], - "pressure:J62:branch30_seg2": [ - 8843.62626230063, - 10179.242546760166, - 11602.66605775814, - 13041.884913537326, - 14423.263265409527, - 15685.99429690635, - 16790.109802059986, - 17721.788208580223, - 18477.725837005248, - 19073.337127430284, - 19531.163723113674, - 19862.696475133307, - 20082.557413738698, - 20194.1471733996, - 20194.91583702031, - 20088.058716063555, - 19871.407250077667, - 19555.113737289077, - 19155.918454469927, - 18689.4458599458, - 18178.738893250924, - 17640.819856145736, - 17087.99582982625, - 16528.84445214976, - 15966.213444002517, - 15402.77653481502, - 14842.885391180418, - 14294.12515773689, - 13767.28290201051, - 13274.014186529384, - 12821.680106963639, - 12409.888233504385, - 12028.188961191383, - 11653.53316722914, - 11256.315963868157, - 10804.549193636723, - 10272.768885580484, - 9645.446084073232, - 8928.361392610324, - 8143.449910802856, - 7327.0708374645565, - 6527.047385263683, - 5789.330475108418, - 5152.210901094264, - 4639.093062156337, - 4261.07078045698, - 4008.1289393252323, - 3864.3948550687046, - 3808.9609980876658, - 3818.3572694272225, - 3879.0781771792, - 3979.932944488265, - 4115.313260017022, - 4282.208424277333, - 4473.126418097842, - 4678.527660658583, - 4883.242859724346, - 5069.182229514982, - 5219.45969418744, - 5322.570332355962, - 5373.0704897739215, - 5375.077680828102, - 5341.232842285326, - 5284.695298524129, - 5220.602101508526, - 5159.023040232014, - 5102.643375954042, - 5048.181259522175, - 4987.969548986813, - 4913.605644444226, - 4820.297375442642, - 4708.3888691393995, - 4585.4641227122665, - 4463.161573850767, - 4354.365703936259, - 4269.387499975523, - 4213.095536101576, - 4182.7871164354, - 4170.603738288099, - 4166.372558549164, - 4160.586796396872, - 4149.358243255002, - 4135.226379195616, - 4126.238276543459, - 4133.336126499748, - 4165.331851354885, - 4225.9527102792135, - 4310.996508251531, - 4408.651007557349, - 4506.036619856851, - 4592.911595745144, - 4669.667802340483, - 4752.343915488125, - 4873.526455360097, - 5079.974397638864, - 5424.096917618295, - 5951.288539445242, - 6698.3296015000205, - 7668.726093912861, - 8843.62626230063 - ], - "flow:branch35_seg0:J63": [ - 0.703972263165754, - 0.9129529078454167, - 1.1436013863835386, - 1.3844303343738777, - 1.622820199347383, - 1.8475339890686113, - 2.050030144664552, - 2.225312874338655, - 2.37130311151569, - 2.489305306441046, - 2.5817706471992348, - 2.6514182490147755, - 2.700884199263277, - 2.7312657069862225, - 2.7430615819311717, - 2.7363101817459574, - 2.7109093518742555, - 2.668003078965038, - 2.609307797587701, - 2.537591099282553, - 2.456267689062701, - 2.368388368618653, - 2.276656032556116, - 2.1828660960068995, - 2.088005328604554, - 1.9926909281527687, - 1.8975049465790583, - 1.8034571525496563, - 1.7120827403699084, - 1.625242385391292, - 1.544502246528971, - 1.4705839190550711, - 1.4026381481246621, - 1.3379754086075986, - 1.2723963054258323, - 1.200779896376055, - 1.1182490826273412, - 1.0212837174812202, - 0.9090053804583978, - 0.7832101070222511, - 0.6487202619257498, - 0.5123905382166087, - 0.3818670427222515, - 0.2642679328223778, - 0.16510643451744142, - 0.08737540957408507, - 0.03128853021249772, - -0.004682647942301175, - -0.02382766525160173, - -0.02963641260209693, - -0.02509921262785749, - -0.012621888167429936, - 0.006525992759056249, - 0.031420614194002126, - 0.06110575679787252, - 0.09427489255171931, - 0.1287585435736091, - 0.16184889163286612, - 0.19065480662832404, - 0.21273265087700544, - 0.22652725528401327, - 0.23195420519749924, - 0.23016744732888766, - 0.22319398955598188, - 0.2135148549469481, - 0.2031295220576577, - 0.1931895984923943, - 0.1837816470298851, - 0.17405652786163106, - 0.16274043616199457, - 0.14872309099156286, - 0.13160359772150146, - 0.11200282254752963, - 0.0913965110601216, - 0.07181846569099301, - 0.05521024705550464, - 0.04287148485202872, - 0.03503398050333269, - 0.030978601175546423, - 0.029215348585727392, - 0.02812901588402171, - 0.026623561048439052, - 0.02449054813340228, - 0.022531123236710183, - 0.022272366798962936, - 0.025328788776972245, - 0.03280525773767601, - 0.04466943331596457, - 0.05972652206778258, - 0.0760108239178212, - 0.09153411110608611, - 0.10544657955708692, - 0.11899203038926189, - 0.13603953257015844, - 0.16306805427261756, - 0.20811599188054178, - 0.27961086857883527, - 0.3844795463490067, - 0.5259864884655023, - 0.703972263165754 - ], - "pressure:branch35_seg0:J63": [ - 8558.822722581344, - 9847.974142161776, - 11239.798386974488, - 12664.747627108822, - 14049.71946832571, - 15331.95625219822, - 16467.55634807857, - 17437.185147355623, - 18233.23262100355, - 18867.62110584591, - 19360.233330542305, - 19723.249341013052, - 19971.698726794464, - 20110.45286649986, - 20138.59899740675, - 20058.988586915737, - 19869.86792051268, - 19579.68339299979, - 19203.35868636904, - 18756.099134884967, - 18259.75401980683, - 17731.76338374564, - 17185.512722134972, - 16630.51065112584, - 16070.79285209989, - 15509.450058643655, - 14950.602740344873, - 14401.20701160565, - 13871.303554646283, - 13372.209367096744, - 12911.853819829434, - 12491.515652878914, - 12102.95317746841, - 11725.9169797114, - 11332.96429607967, - 10893.083046540629, - 10379.999569711821, - 9776.11470127824, - 9083.067037133065, - 8318.476375784754, - 7514.947018211053, - 6717.285217961918, - 5970.589486432604, - 5314.292796258974, - 4774.888712125106, - 4366.262639060156, - 4082.887703849038, - 3911.591044257215, - 3832.71337465838, - 3823.848894899032, - 3870.1560525133823, - 3959.41648703587, - 4085.1211122909012, - 4243.313173723683, - 4427.0426702635295, - 4627.507937053471, - 4830.560231402749, - 5018.998578475209, - 5176.0293746287625, - 5289.254576478622, - 5351.779699444627, - 5365.767676104801, - 5341.799232206946, - 5292.11590651333, - 5231.472031755245, - 5170.601963144689, - 5113.650958581414, - 5058.863642221085, - 4999.755192531514, - 4928.39604388685, - 4839.465923972985, - 4732.289613306879, - 4612.877724321688, - 4491.655201346658, - 4380.963317000695, - 4291.413912946951, - 4228.900888667419, - 4192.281055743367, - 4175.190227277227, - 4168.178409623855, - 4161.844649424223, - 4151.415759185406, - 4138.001091392576, - 4128.264653117469, - 4132.2493151252, - 4158.858210348015, - 4212.791617089094, - 4291.480183240276, - 4384.898573992577, - 4480.9815394254165, - 4569.129727350513, - 4647.757372064552, - 4729.550058274606, - 4843.147780542654, - 5031.634259853636, - 5345.174108338345, - 5830.081574656599, - 6524.548103008897, - 7438.179850530551, - 8558.822722581344 - ], - "flow:J63:branch35_seg1": [ - 0.703972263165754, - 0.9129529078454167, - 1.1436013863835386, - 1.3844303343738777, - 1.622820199347383, - 1.8475339890686113, - 2.050030144664552, - 2.225312874338655, - 2.37130311151569, - 2.489305306441046, - 2.5817706471992348, - 2.6514182490147755, - 2.700884199263277, - 2.7312657069862225, - 2.7430615819311717, - 2.7363101817459574, - 2.7109093518742555, - 2.668003078965038, - 2.609307797587701, - 2.537591099282553, - 2.456267689062701, - 2.368388368618653, - 2.276656032556116, - 2.1828660960068995, - 2.088005328604554, - 1.9926909281527687, - 1.8975049465790583, - 1.8034571525496563, - 1.7120827403699084, - 1.625242385391292, - 1.544502246528971, - 1.4705839190550711, - 1.4026381481246621, - 1.3379754086075986, - 1.2723963054258323, - 1.200779896376055, - 1.1182490826273412, - 1.0212837174812202, - 0.9090053804583978, - 0.7832101070222511, - 0.6487202619257498, - 0.5123905382166087, - 0.3818670427222515, - 0.2642679328223778, - 0.16510643451744142, - 0.08737540957408507, - 0.03128853021249772, - -0.004682647942301175, - -0.02382766525160173, - -0.02963641260209693, - -0.02509921262785749, - -0.012621888167429936, - 0.006525992759056249, - 0.031420614194002126, - 0.06110575679787252, - 0.09427489255171931, - 0.1287585435736091, - 0.16184889163286612, - 0.19065480662832404, - 0.21273265087700544, - 0.22652725528401327, - 0.23195420519749924, - 0.23016744732888766, - 0.22319398955598188, - 0.2135148549469481, - 0.2031295220576577, - 0.1931895984923943, - 0.1837816470298851, - 0.17405652786163106, - 0.16274043616199457, - 0.14872309099156286, - 0.13160359772150146, - 0.11200282254752963, - 0.0913965110601216, - 0.07181846569099301, - 0.05521024705550464, - 0.04287148485202872, - 0.03503398050333269, - 0.030978601175546423, - 0.029215348585727392, - 0.02812901588402171, - 0.026623561048439052, - 0.02449054813340228, - 0.022531123236710183, - 0.022272366798962936, - 0.025328788776972245, - 0.03280525773767601, - 0.04466943331596457, - 0.05972652206778258, - 0.0760108239178212, - 0.09153411110608611, - 0.10544657955708692, - 0.11899203038926189, - 0.13603953257015844, - 0.16306805427261756, - 0.20811599188054178, - 0.27961086857883527, - 0.3844795463490067, - 0.5259864884655023, - 0.703972263165754 - ], - "pressure:J63:branch35_seg1": [ - 8558.822722581344, - 9847.974142161776, - 11239.798386974488, - 12664.747627108822, - 14049.71946832571, - 15331.95625219822, - 16467.55634807857, - 17437.185147355623, - 18233.23262100355, - 18867.62110584591, - 19360.233330542305, - 19723.249341013052, - 19971.698726794464, - 20110.45286649986, - 20138.59899740675, - 20058.988586915737, - 19869.86792051268, - 19579.68339299979, - 19203.35868636904, - 18756.099134884967, - 18259.75401980683, - 17731.76338374564, - 17185.512722134972, - 16630.51065112584, - 16070.79285209989, - 15509.450058643655, - 14950.602740344873, - 14401.20701160565, - 13871.303554646283, - 13372.209367096744, - 12911.853819829434, - 12491.515652878914, - 12102.95317746841, - 11725.9169797114, - 11332.96429607967, - 10893.083046540629, - 10379.999569711821, - 9776.11470127824, - 9083.067037133065, - 8318.476375784754, - 7514.947018211053, - 6717.285217961918, - 5970.589486432604, - 5314.292796258974, - 4774.888712125106, - 4366.262639060156, - 4082.887703849038, - 3911.591044257215, - 3832.71337465838, - 3823.848894899032, - 3870.1560525133823, - 3959.41648703587, - 4085.1211122909012, - 4243.313173723683, - 4427.0426702635295, - 4627.507937053471, - 4830.560231402749, - 5018.998578475209, - 5176.0293746287625, - 5289.254576478622, - 5351.779699444627, - 5365.767676104801, - 5341.799232206946, - 5292.11590651333, - 5231.472031755245, - 5170.601963144689, - 5113.650958581414, - 5058.863642221085, - 4999.755192531514, - 4928.39604388685, - 4839.465923972985, - 4732.289613306879, - 4612.877724321688, - 4491.655201346658, - 4380.963317000695, - 4291.413912946951, - 4228.900888667419, - 4192.281055743367, - 4175.190227277227, - 4168.178409623855, - 4161.844649424223, - 4151.415759185406, - 4138.001091392576, - 4128.264653117469, - 4132.2493151252, - 4158.858210348015, - 4212.791617089094, - 4291.480183240276, - 4384.898573992577, - 4480.9815394254165, - 4569.129727350513, - 4647.757372064552, - 4729.550058274606, - 4843.147780542654, - 5031.634259853636, - 5345.174108338345, - 5830.081574656599, - 6524.548103008897, - 7438.179850530551, - 8558.822722581344 - ], - "flow:branch35_seg1:J64": [ - 0.7024882278963676, - 0.9112999621146236, - 1.1418583402178808, - 1.382698539312844, - 1.6211789249577298, - 1.8460460484939194, - 2.0487374476373508, - 2.224236662536683, - 2.37042951256735, - 2.4886210494073158, - 2.581252200278176, - 2.651044634752964, - 2.7006504493569965, - 2.731163805268922, - 2.7430953892062293, - 2.736476190807208, - 2.7112035679628916, - 2.6684194456984813, - 2.6098164348111204, - 2.538171507290666, - 2.456899712825097, - 2.3690474312409964, - 2.277331221614704, - 2.1835490121910386, - 2.088691251535773, - 1.9933775583748727, - 1.8981848597451967, - 1.8041195927151983, - 1.7127143336408088, - 1.625831114321632, - 1.5450397808295133, - 1.4710759645507716, - 1.4031023805039256, - 1.3384396061718256, - 1.272899302468797, - 1.2013593956980875, - 1.1189305215888046, - 1.0220792046737497, - 0.90990576108391, - 0.7841788033226977, - 0.6497101417554209, - 0.5133462901239421, - 0.38273308050736754, - 0.2649981765254912, - 0.16568797525439902, - 0.0877978277586857, - 0.03155785343775628, - -0.004532639382595061, - -0.02377933193390386, - -0.029663607219630402, - -0.02518180780402229, - -0.01275666200910648, - 0.0063512000825881225, - 0.031210933907808002, - 0.06086717532253266, - 0.0940248579405223, - 0.1285153814297091, - 0.16163359502419955, - 0.1904871456859229, - 0.2126250674243883, - 0.22648138649331417, - 0.23196371710918984, - 0.23021630111654837, - 0.22326382365066258, - 0.21359126929051614, - 0.20320218779952215, - 0.19325674782630664, - 0.183849661594053, - 0.1741349588331181, - 0.1628388179502789, - 0.14884371767675306, - 0.13174377003917834, - 0.11215327161285064, - 0.09154100054909613, - 0.07194237438294956, - 0.055303761237581406, - 0.042931975832832654, - 0.03506418216402896, - 0.030991303366780416, - 0.029222494628909336, - 0.028138545368614088, - 0.02663900757376693, - 0.024506693148098047, - 0.022536946461480283, - 0.02225521084574043, - 0.025279447832003168, - 0.03272280035954561, - 0.044560997447131864, - 0.059607345192921185, - 0.07589676429153146, - 0.09143334303369456, - 0.1053526528763892, - 0.11887967468767612, - 0.13586398815783393, - 0.16277158904988556, - 0.20762864707321546, - 0.27889406340714684, - 0.38350020733597256, - 0.5247238752383944, - 0.7024882278963676 - ], - "pressure:branch35_seg1:J64": [ - 8264.964988095135, - 9502.10257458812, - 10853.21002570661, - 12250.988032495743, - 13622.808021830853, - 14905.127824849731, - 16051.44485802204, - 17037.60279239891, - 17853.512130105068, - 18508.804106165007, - 19020.263799670007, - 19401.76492284894, - 19668.46509151015, - 19825.94313985251, - 19875.289199063875, - 19817.98309499838, - 19652.855878311722, - 19387.299798380638, - 19033.455992137377, - 18606.84724663347, - 18128.073444536298, - 17614.52319959252, - 17080.704905027982, - 16536.52303587421, - 15986.862951948779, - 15435.048117375118, - 14884.748830760558, - 14342.274197368122, - 13816.973764390232, - 13319.807409028826, - 12859.24367182397, - 12438.13369457965, - 12050.087964313794, - 11677.479174842521, - 11294.77001037958, - 10871.885872887031, - 10381.691086529021, - 9805.192976286919, - 9140.43091782058, - 8401.007226807353, - 7616.766680105321, - 6829.496537037221, - 6083.500261263141, - 5418.889372828475, - 4864.943606891362, - 4437.233401067029, - 4133.869766080528, - 3944.1714519159714, - 3848.853850755336, - 3826.8657545526858, - 3862.169952934139, - 3941.6624283188266, - 4058.516591278843, - 4208.036558476003, - 4384.057911473997, - 4578.562109749366, - 4778.327243052525, - 4967.084237876094, - 5128.190711694039, - 5248.409236496496, - 5319.739085721699, - 5342.910424521939, - 5326.3811099547975, - 5281.999442762445, - 5224.233585357605, - 5164.198886776182, - 5107.352627220954, - 5053.164154386834, - 4996.025751617301, - 4928.352586641383, - 4844.250779095372, - 4742.17489240071, - 4626.803046334886, - 4507.4722525085235, - 4396.146462557134, - 4303.709548029657, - 4236.893569766332, - 4195.870636133913, - 4175.524953021472, - 4166.892491193089, - 4160.645043609492, - 4151.212989058016, - 4138.452788593624, - 4127.899881522467, - 4128.89216249106, - 4150.51155407406, - 4198.347224054848, - 4271.12864236844, - 4360.542650968214, - 4454.983873367938, - 4543.41552480711, - 4622.456637135594, - 4701.757513532066, - 4806.4076077111795, - 4976.20838495979, - 5258.999882233713, - 5702.203036102829, - 6344.699174412115, - 7200.882392236193, - 8264.964988095135 - ], - "flow:J64:branch35_seg2": [ - 0.7024882278963676, - 0.9112999621146236, - 1.1418583402178808, - 1.382698539312844, - 1.6211789249577298, - 1.8460460484939194, - 2.0487374476373508, - 2.224236662536683, - 2.37042951256735, - 2.4886210494073158, - 2.581252200278176, - 2.651044634752964, - 2.7006504493569965, - 2.731163805268922, - 2.7430953892062293, - 2.736476190807208, - 2.7112035679628916, - 2.6684194456984813, - 2.6098164348111204, - 2.538171507290666, - 2.456899712825097, - 2.3690474312409964, - 2.277331221614704, - 2.1835490121910386, - 2.088691251535773, - 1.9933775583748727, - 1.8981848597451967, - 1.8041195927151983, - 1.7127143336408088, - 1.625831114321632, - 1.5450397808295133, - 1.4710759645507716, - 1.4031023805039256, - 1.3384396061718256, - 1.272899302468797, - 1.2013593956980875, - 1.1189305215888046, - 1.0220792046737497, - 0.90990576108391, - 0.7841788033226977, - 0.6497101417554209, - 0.5133462901239421, - 0.38273308050736754, - 0.2649981765254912, - 0.16568797525439902, - 0.0877978277586857, - 0.03155785343775628, - -0.004532639382595061, - -0.02377933193390386, - -0.029663607219630402, - -0.02518180780402229, - -0.01275666200910648, - 0.0063512000825881225, - 0.031210933907808002, - 0.06086717532253266, - 0.0940248579405223, - 0.1285153814297091, - 0.16163359502419955, - 0.1904871456859229, - 0.2126250674243883, - 0.22648138649331417, - 0.23196371710918984, - 0.23021630111654837, - 0.22326382365066258, - 0.21359126929051614, - 0.20320218779952215, - 0.19325674782630664, - 0.183849661594053, - 0.1741349588331181, - 0.1628388179502789, - 0.14884371767675306, - 0.13174377003917834, - 0.11215327161285064, - 0.09154100054909613, - 0.07194237438294956, - 0.055303761237581406, - 0.042931975832832654, - 0.03506418216402896, - 0.030991303366780416, - 0.029222494628909336, - 0.028138545368614088, - 0.02663900757376693, - 0.024506693148098047, - 0.022536946461480283, - 0.02225521084574043, - 0.025279447832003168, - 0.03272280035954561, - 0.044560997447131864, - 0.059607345192921185, - 0.07589676429153146, - 0.09143334303369456, - 0.1053526528763892, - 0.11887967468767612, - 0.13586398815783393, - 0.16277158904988556, - 0.20762864707321546, - 0.27889406340714684, - 0.38350020733597256, - 0.5247238752383944, - 0.7024882278963676 - ], - "pressure:J64:branch35_seg2": [ - 8264.964988095135, - 9502.10257458812, - 10853.21002570661, - 12250.988032495743, - 13622.808021830853, - 14905.127824849731, - 16051.44485802204, - 17037.60279239891, - 17853.512130105068, - 18508.804106165007, - 19020.263799670007, - 19401.76492284894, - 19668.46509151015, - 19825.94313985251, - 19875.289199063875, - 19817.98309499838, - 19652.855878311722, - 19387.299798380638, - 19033.455992137377, - 18606.84724663347, - 18128.073444536298, - 17614.52319959252, - 17080.704905027982, - 16536.52303587421, - 15986.862951948779, - 15435.048117375118, - 14884.748830760558, - 14342.274197368122, - 13816.973764390232, - 13319.807409028826, - 12859.24367182397, - 12438.13369457965, - 12050.087964313794, - 11677.479174842521, - 11294.77001037958, - 10871.885872887031, - 10381.691086529021, - 9805.192976286919, - 9140.43091782058, - 8401.007226807353, - 7616.766680105321, - 6829.496537037221, - 6083.500261263141, - 5418.889372828475, - 4864.943606891362, - 4437.233401067029, - 4133.869766080528, - 3944.1714519159714, - 3848.853850755336, - 3826.8657545526858, - 3862.169952934139, - 3941.6624283188266, - 4058.516591278843, - 4208.036558476003, - 4384.057911473997, - 4578.562109749366, - 4778.327243052525, - 4967.084237876094, - 5128.190711694039, - 5248.409236496496, - 5319.739085721699, - 5342.910424521939, - 5326.3811099547975, - 5281.999442762445, - 5224.233585357605, - 5164.198886776182, - 5107.352627220954, - 5053.164154386834, - 4996.025751617301, - 4928.352586641383, - 4844.250779095372, - 4742.17489240071, - 4626.803046334886, - 4507.4722525085235, - 4396.146462557134, - 4303.709548029657, - 4236.893569766332, - 4195.870636133913, - 4175.524953021472, - 4166.892491193089, - 4160.645043609492, - 4151.212989058016, - 4138.452788593624, - 4127.899881522467, - 4128.89216249106, - 4150.51155407406, - 4198.347224054848, - 4271.12864236844, - 4360.542650968214, - 4454.983873367938, - 4543.41552480711, - 4622.456637135594, - 4701.757513532066, - 4806.4076077111795, - 4976.20838495979, - 5258.999882233713, - 5702.203036102829, - 6344.699174412115, - 7200.882392236193, - 8264.964988095135 - ], - "flow:branch41_seg0:J65": [ - 0.9366173953562464, - 1.213563816804231, - 1.5192011793725242, - 1.838235491308459, - 2.1540072251913838, - 2.4517167176446115, - 2.7201873218389445, - 2.9529561729907607, - 3.1474381851245896, - 3.305364455950614, - 3.4300096764126526, - 3.524915305958836, - 3.5934899949983494, - 3.637193241799392, - 3.656641358190959, - 3.6519094991276146, - 3.622834648032064, - 3.5708351647881402, - 3.498118754012926, - 3.4081372455041485, - 3.3052183119294276, - 3.193257101379996, - 3.075683264507202, - 2.9548201729459156, - 2.8319626397240247, - 2.707939922850036, - 2.583553571717984, - 2.4601489881112486, - 2.3397526757956677, - 2.2248173796009683, - 2.1174348284078257, - 2.0186016624110166, - 1.9273043716918639, - 1.840136125699518, - 1.7516985864551793, - 1.6553626837787305, - 1.5447671745419904, - 1.4152298938741927, - 1.2654567839272453, - 1.0976269557096863, - 0.9178325902142379, - 0.7349077792760589, - 0.5588326337570684, - 0.39903290028875177, - 0.26291318282939047, - 0.1547397089191926, - 0.07511485262211777, - 0.022263285828512516, - -0.007880151949841225, - -0.019821153139215716, - -0.01746475717232538, - -0.003974313474273537, - 0.018892817272558444, - 0.04988334139217191, - 0.08769489018107987, - 0.13055401556444005, - 0.17558064675347104, - 0.2191641259548291, - 0.2574368407246056, - 0.28710264234485683, - 0.3060215951489968, - 0.31396623778033245, - 0.3123662525900272, - 0.30380784843130887, - 0.2915072089876494, - 0.2780999895488497, - 0.2651262759815796, - 0.2527412730163569, - 0.23987077877709428, - 0.22485962299845144, - 0.20625018295736766, - 0.18348403899702745, - 0.15733978109998387, - 0.12973645810666273, - 0.10333747906759878, - 0.0807196445959423, - 0.06364523729560845, - 0.052494459980383656, - 0.04637531489752499, - 0.04338117423375404, - 0.04140441343428057, - 0.03898405008051032, - 0.03581387549509268, - 0.03291004614521833, - 0.03225764451826532, - 0.03598385976834747, - 0.04556924517795417, - 0.06102408497975158, - 0.0808191962697744, - 0.10240062924217805, - 0.1231551312915464, - 0.14193146118684605, - 0.16031175470401998, - 0.18333486018754336, - 0.2194995923818754, - 0.2794346835626153, - 0.37425360843394023, - 0.5132217520414365, - 0.7007804046402152, - 0.9366173953562464 - ], - "pressure:branch41_seg0:J65": [ - 8455.544810598778, - 9694.727094307242, - 11024.721198023712, - 12378.005258162804, - 13686.075524420796, - 14891.05626322219, - 15953.813671081112, - 16858.865827474292, - 17601.520497716927, - 18194.26422182297, - 18656.849727672754, - 18999.985837846, - 19237.317000181683, - 19373.06768332957, - 19405.404371459856, - 19337.546638517175, - 19167.39890063675, - 18903.01032044517, - 18559.422650682496, - 18149.741002843337, - 17694.19498835782, - 17208.791612355562, - 16704.951650342642, - 16191.238292884182, - 15671.07031724098, - 15147.26470921566, - 14624.060922216522, - 14108.322947368224, - 13609.792096334575, - 13139.232320164869, - 12704.01529763411, - 12304.815400332296, - 11933.442155768176, - 11570.360360574925, - 11189.425781677473, - 10761.535157590515, - 10262.634783588239, - 9676.625069744756, - 9006.078313990856, - 8268.591803641606, - 7495.050380213551, - 6728.138906242156, - 6010.374797158046, - 5378.871876122325, - 4857.742157113257, - 4460.6917794384935, - 4182.244207150136, - 4009.34508495971, - 3924.504415556245, - 3906.360067305532, - 3941.42477347721, - 4018.8857909886237, - 4132.284011755547, - 4278.107716779769, - 4449.528083438782, - 4637.546064072264, - 4828.344438086079, - 5005.209457763453, - 5152.036900169365, - 5257.22528544288, - 5314.520702661039, - 5326.264424488778, - 5302.952052908481, - 5256.012165722402, - 5199.306844652936, - 5142.7334017830935, - 5089.658698251457, - 5037.9948517513985, - 4981.376279238869, - 4912.24459197583, - 4825.889401429264, - 4721.947391890597, - 4606.515151070354, - 4489.888688557707, - 4383.792089204735, - 4298.159964796074, - 4238.324895893666, - 4202.9424913556995, - 4185.567688593304, - 4177.258398792495, - 4169.272739444366, - 4157.369749771096, - 4143.056669181127, - 4133.012517637681, - 4136.931333907209, - 4163.142318086866, - 4215.74697658093, - 4291.8844561849455, - 4381.523254553024, - 4473.198970307164, - 4557.1272615943935, - 4632.54575633852, - 4712.599652244426, - 4825.679756571146, - 5013.706020039928, - 5325.162210709135, - 5802.837927831189, - 6482.668107667947, - 7372.2830096308, - 8455.544810598778 - ], - "flow:J65:branch41_seg1": [ - 0.9366173953562464, - 1.213563816804231, - 1.5192011793725242, - 1.838235491308459, - 2.1540072251913838, - 2.4517167176446115, - 2.7201873218389445, - 2.9529561729907607, - 3.1474381851245896, - 3.305364455950614, - 3.4300096764126526, - 3.524915305958836, - 3.5934899949983494, - 3.637193241799392, - 3.656641358190959, - 3.6519094991276146, - 3.622834648032064, - 3.5708351647881402, - 3.498118754012926, - 3.4081372455041485, - 3.3052183119294276, - 3.193257101379996, - 3.075683264507202, - 2.9548201729459156, - 2.8319626397240247, - 2.707939922850036, - 2.583553571717984, - 2.4601489881112486, - 2.3397526757956677, - 2.2248173796009683, - 2.1174348284078257, - 2.0186016624110166, - 1.9273043716918639, - 1.840136125699518, - 1.7516985864551793, - 1.6553626837787305, - 1.5447671745419904, - 1.4152298938741927, - 1.2654567839272453, - 1.0976269557096863, - 0.9178325902142379, - 0.7349077792760589, - 0.5588326337570684, - 0.39903290028875177, - 0.26291318282939047, - 0.1547397089191926, - 0.07511485262211777, - 0.022263285828512516, - -0.007880151949841225, - -0.019821153139215716, - -0.01746475717232538, - -0.003974313474273537, - 0.018892817272558444, - 0.04988334139217191, - 0.08769489018107987, - 0.13055401556444005, - 0.17558064675347104, - 0.2191641259548291, - 0.2574368407246056, - 0.28710264234485683, - 0.3060215951489968, - 0.31396623778033245, - 0.3123662525900272, - 0.30380784843130887, - 0.2915072089876494, - 0.2780999895488497, - 0.2651262759815796, - 0.2527412730163569, - 0.23987077877709428, - 0.22485962299845144, - 0.20625018295736766, - 0.18348403899702745, - 0.15733978109998387, - 0.12973645810666273, - 0.10333747906759878, - 0.0807196445959423, - 0.06364523729560845, - 0.052494459980383656, - 0.04637531489752499, - 0.04338117423375404, - 0.04140441343428057, - 0.03898405008051032, - 0.03581387549509268, - 0.03291004614521833, - 0.03225764451826532, - 0.03598385976834747, - 0.04556924517795417, - 0.06102408497975158, - 0.0808191962697744, - 0.10240062924217805, - 0.1231551312915464, - 0.14193146118684605, - 0.16031175470401998, - 0.18333486018754336, - 0.2194995923818754, - 0.2794346835626153, - 0.37425360843394023, - 0.5132217520414365, - 0.7007804046402152, - 0.9366173953562464 - ], - "pressure:J65:branch41_seg1": [ - 8455.544810598778, - 9694.727094307242, - 11024.721198023712, - 12378.005258162804, - 13686.075524420796, - 14891.05626322219, - 15953.813671081112, - 16858.865827474292, - 17601.520497716927, - 18194.26422182297, - 18656.849727672754, - 18999.985837846, - 19237.317000181683, - 19373.06768332957, - 19405.404371459856, - 19337.546638517175, - 19167.39890063675, - 18903.01032044517, - 18559.422650682496, - 18149.741002843337, - 17694.19498835782, - 17208.791612355562, - 16704.951650342642, - 16191.238292884182, - 15671.07031724098, - 15147.26470921566, - 14624.060922216522, - 14108.322947368224, - 13609.792096334575, - 13139.232320164869, - 12704.01529763411, - 12304.815400332296, - 11933.442155768176, - 11570.360360574925, - 11189.425781677473, - 10761.535157590515, - 10262.634783588239, - 9676.625069744756, - 9006.078313990856, - 8268.591803641606, - 7495.050380213551, - 6728.138906242156, - 6010.374797158046, - 5378.871876122325, - 4857.742157113257, - 4460.6917794384935, - 4182.244207150136, - 4009.34508495971, - 3924.504415556245, - 3906.360067305532, - 3941.42477347721, - 4018.8857909886237, - 4132.284011755547, - 4278.107716779769, - 4449.528083438782, - 4637.546064072264, - 4828.344438086079, - 5005.209457763453, - 5152.036900169365, - 5257.22528544288, - 5314.520702661039, - 5326.264424488778, - 5302.952052908481, - 5256.012165722402, - 5199.306844652936, - 5142.7334017830935, - 5089.658698251457, - 5037.9948517513985, - 4981.376279238869, - 4912.24459197583, - 4825.889401429264, - 4721.947391890597, - 4606.515151070354, - 4489.888688557707, - 4383.792089204735, - 4298.159964796074, - 4238.324895893666, - 4202.9424913556995, - 4185.567688593304, - 4177.258398792495, - 4169.272739444366, - 4157.369749771096, - 4143.056669181127, - 4133.012517637681, - 4136.931333907209, - 4163.142318086866, - 4215.74697658093, - 4291.8844561849455, - 4381.523254553024, - 4473.198970307164, - 4557.1272615943935, - 4632.54575633852, - 4712.599652244426, - 4825.679756571146, - 5013.706020039928, - 5325.162210709135, - 5802.837927831189, - 6482.668107667947, - 7372.2830096308, - 8455.544810598778 - ], - "flow:branch41_seg1:J66": [ - 0.9352949544865754, - 1.2120999234404652, - 1.5176645153490727, - 1.8367185358145386, - 2.152577870545014, - 2.450425916737802, - 2.7190674508884047, - 2.9520291429632115, - 3.146683205462154, - 3.3047686618204652, - 3.429557800449649, - 3.524585915596355, - 3.5932805097051714, - 3.637098036083792, - 3.656661595227998, - 3.652044951693688, - 3.623082288998919, - 3.571185957206221, - 3.4985489013063154, - 3.4086297374563337, - 3.305755663300841, - 3.1938187980500654, - 3.0762604969473055, - 2.9554062365997256, - 2.8325537340739553, - 2.7085338947455293, - 2.5841433696776615, - 2.4607249766410186, - 2.3403027660859284, - 2.2253316510297583, - 2.1179057839219655, - 2.0190351606054686, - 1.9277168303922647, - 1.8405511342927316, - 1.7521503384616108, - 1.6558834753960434, - 1.5453792878988668, - 1.415942186020167, - 1.2662603073318808, - 1.0984900630782377, - 0.9187125872764638, - 0.7357573522727838, - 0.5596028234507605, - 0.39968399580763037, - 0.26343455131440846, - 0.15512083964447448, - 0.07536172243178214, - 0.022406421278103276, - -0.007826503239983393, - -0.019834591762387117, - -0.01752790612507486, - -0.004085809441685725, - 0.018745283817164223, - 0.049703950018981556, - 0.08748803495943075, - 0.1303369251199553, - 0.17536965724215675, - 0.21897756017927994, - 0.2572918930817275, - 0.2870109231880255, - 0.3059833471057258, - 0.3139747245031081, - 0.31240926986316775, - 0.30386861365690293, - 0.2915728341136743, - 0.2781624803825099, - 0.2651844121814694, - 0.25280097858702316, - 0.2399406696369517, - 0.22494788752711742, - 0.2063583486383724, - 0.18360957176504086, - 0.15747403001071453, - 0.12986470336641331, - 0.10344704430604842, - 0.0808021602792011, - 0.06369899968021696, - 0.0525216508579851, - 0.04638808126937936, - 0.04338978855107329, - 0.041415063441003076, - 0.038999644662556725, - 0.03582942486457927, - 0.032915557888373415, - 0.03224211511150056, - 0.03593917103043833, - 0.04549524153953963, - 0.06092803259106644, - 0.08071382062889643, - 0.10230006542315308, - 0.12306628560327804, - 0.1418475119066971, - 0.16020914943688114, - 0.18317313274396352, - 0.21922671399977767, - 0.27898913487965354, - 0.37360366196402883, - 0.5123373759444497, - 0.6996451745501729, - 0.9352949544865754 - ], - "pressure:branch41_seg1:J66": [ - 8276.245779545441, - 9485.37560586953, - 10793.017415863958, - 12133.087304432265, - 13437.087276010781, - 14646.27350688798, - 15719.622366236152, - 16638.682295251412, - 17396.718963480427, - 18004.92269574077, - 18481.319742912394, - 18837.482770844654, - 19087.33132222663, - 19235.5447407703, - 19281.451787145554, - 19227.59916533644, - 19072.177665164927, - 18822.510396998317, - 18492.092488138624, - 18094.211295005938, - 17648.411599444436, - 17170.713043952284, - 16673.2692604821, - 16164.936948047176, - 15649.667452344196, - 15130.42854052356, - 14611.179553433398, - 14098.397049195668, - 13601.403549668974, - 13130.787983577367, - 12694.24470928716, - 12293.470288315215, - 11921.435883646525, - 11560.175054795604, - 11184.728346772235, - 10766.51751971895, - 10280.935812137146, - 9710.914100003341, - 9056.794672262893, - 8333.69245891414, - 7570.725916163952, - 6808.812022870668, - 6089.952424085449, - 5451.752344948811, - 4920.107786707101, - 4509.799903276121, - 4217.668423165008, - 4032.298704276953, - 3936.4102665404366, - 3909.4689755148624, - 3937.2573723432447, - 4008.3307642216105, - 4116.082647048646, - 4256.482247113269, - 4423.141353592133, - 4607.612870866842, - 4796.620306692592, - 4973.999970279591, - 5123.714807534085, - 5233.639451067549, - 5296.738181380027, - 5314.421227211059, - 5295.9320378894645, - 5252.368599198407, - 5197.44282674953, - 5141.336937094412, - 5088.244185222942, - 5036.8669302258195, - 4981.400527849759, - 4914.494484435139, - 4831.064911242768, - 4730.1974178169085, - 4617.14184029657, - 4501.505843819693, - 4394.7905289118435, - 4307.120548548021, - 4244.382792335768, - 4206.046242171005, - 4186.497749128867, - 4177.081821586582, - 4169.078038155018, - 4157.748960382928, - 4143.8028619644665, - 4133.19924073463, - 4135.195055435009, - 4158.229539268929, - 4206.992937505423, - 4279.468330392989, - 4366.658431803809, - 4457.4229127814115, - 4541.676912264848, - 4617.496591418675, - 4696.0980300365, - 4803.644743171968, - 4980.011582190664, - 5272.2986591574845, - 5724.141373406777, - 6371.986349097344, - 7226.605063114165, - 8276.245779545441 - ], - "flow:J66:branch41_seg2": [ - 0.9352949544865754, - 1.2120999234404652, - 1.5176645153490727, - 1.8367185358145386, - 2.152577870545014, - 2.450425916737802, - 2.7190674508884047, - 2.9520291429632115, - 3.146683205462154, - 3.3047686618204652, - 3.429557800449649, - 3.524585915596355, - 3.5932805097051714, - 3.637098036083792, - 3.656661595227998, - 3.652044951693688, - 3.623082288998919, - 3.571185957206221, - 3.4985489013063154, - 3.4086297374563337, - 3.305755663300841, - 3.1938187980500654, - 3.0762604969473055, - 2.9554062365997256, - 2.8325537340739553, - 2.7085338947455293, - 2.5841433696776615, - 2.4607249766410186, - 2.3403027660859284, - 2.2253316510297583, - 2.1179057839219655, - 2.0190351606054686, - 1.9277168303922647, - 1.8405511342927316, - 1.7521503384616108, - 1.6558834753960434, - 1.5453792878988668, - 1.415942186020167, - 1.2662603073318808, - 1.0984900630782377, - 0.9187125872764638, - 0.7357573522727838, - 0.5596028234507605, - 0.39968399580763037, - 0.26343455131440846, - 0.15512083964447448, - 0.07536172243178214, - 0.022406421278103276, - -0.007826503239983393, - -0.019834591762387117, - -0.01752790612507486, - -0.004085809441685725, - 0.018745283817164223, - 0.049703950018981556, - 0.08748803495943075, - 0.1303369251199553, - 0.17536965724215675, - 0.21897756017927994, - 0.2572918930817275, - 0.2870109231880255, - 0.3059833471057258, - 0.3139747245031081, - 0.31240926986316775, - 0.30386861365690293, - 0.2915728341136743, - 0.2781624803825099, - 0.2651844121814694, - 0.25280097858702316, - 0.2399406696369517, - 0.22494788752711742, - 0.2063583486383724, - 0.18360957176504086, - 0.15747403001071453, - 0.12986470336641331, - 0.10344704430604842, - 0.0808021602792011, - 0.06369899968021696, - 0.0525216508579851, - 0.04638808126937936, - 0.04338978855107329, - 0.041415063441003076, - 0.038999644662556725, - 0.03582942486457927, - 0.032915557888373415, - 0.03224211511150056, - 0.03593917103043833, - 0.04549524153953963, - 0.06092803259106644, - 0.08071382062889643, - 0.10230006542315308, - 0.12306628560327804, - 0.1418475119066971, - 0.16020914943688114, - 0.18317313274396352, - 0.21922671399977767, - 0.27898913487965354, - 0.37360366196402883, - 0.5123373759444497, - 0.6996451745501729, - 0.9352949544865754 - ], - "pressure:J66:branch41_seg2": [ - 8276.245779545441, - 9485.37560586953, - 10793.017415863958, - 12133.087304432265, - 13437.087276010781, - 14646.27350688798, - 15719.622366236152, - 16638.682295251412, - 17396.718963480427, - 18004.92269574077, - 18481.319742912394, - 18837.482770844654, - 19087.33132222663, - 19235.5447407703, - 19281.451787145554, - 19227.59916533644, - 19072.177665164927, - 18822.510396998317, - 18492.092488138624, - 18094.211295005938, - 17648.411599444436, - 17170.713043952284, - 16673.2692604821, - 16164.936948047176, - 15649.667452344196, - 15130.42854052356, - 14611.179553433398, - 14098.397049195668, - 13601.403549668974, - 13130.787983577367, - 12694.24470928716, - 12293.470288315215, - 11921.435883646525, - 11560.175054795604, - 11184.728346772235, - 10766.51751971895, - 10280.935812137146, - 9710.914100003341, - 9056.794672262893, - 8333.69245891414, - 7570.725916163952, - 6808.812022870668, - 6089.952424085449, - 5451.752344948811, - 4920.107786707101, - 4509.799903276121, - 4217.668423165008, - 4032.298704276953, - 3936.4102665404366, - 3909.4689755148624, - 3937.2573723432447, - 4008.3307642216105, - 4116.082647048646, - 4256.482247113269, - 4423.141353592133, - 4607.612870866842, - 4796.620306692592, - 4973.999970279591, - 5123.714807534085, - 5233.639451067549, - 5296.738181380027, - 5314.421227211059, - 5295.9320378894645, - 5252.368599198407, - 5197.44282674953, - 5141.336937094412, - 5088.244185222942, - 5036.8669302258195, - 4981.400527849759, - 4914.494484435139, - 4831.064911242768, - 4730.1974178169085, - 4617.14184029657, - 4501.505843819693, - 4394.7905289118435, - 4307.120548548021, - 4244.382792335768, - 4206.046242171005, - 4186.497749128867, - 4177.081821586582, - 4169.078038155018, - 4157.748960382928, - 4143.8028619644665, - 4133.19924073463, - 4135.195055435009, - 4158.229539268929, - 4206.992937505423, - 4279.468330392989, - 4366.658431803809, - 4457.4229127814115, - 4541.676912264848, - 4617.496591418675, - 4696.0980300365, - 4803.644743171968, - 4980.011582190664, - 5272.2986591574845, - 5724.141373406777, - 6371.986349097344, - 7226.605063114165, - 8276.245779545441 - ], - "flow:branch51_seg0:J67": [ - 0.4240367712772316, - 0.5528193101301994, - 0.7005925540964181, - 0.8619368125062845, - 1.0300589924761288, - 1.1980700323583984, - 1.3598086021694664, - 1.5105313675507237, - 1.6469164954686164, - 1.767529578572845, - 1.8719385783987834, - 1.960326170285538, - 2.033278164918457, - 2.09098072665611, - 2.1335196792540474, - 2.1608437024151423, - 2.172854446771867, - 2.1700562370938212, - 2.153290676802879, - 2.124013827252849, - 2.08414741713647, - 2.035615865785898, - 1.9803178562352388, - 1.9197984087796365, - 1.855223005569458, - 1.7875255559283898, - 1.7175401130741363, - 1.646230731890581, - 1.574775403924064, - 1.5045149885588627, - 1.4366852292123737, - 1.3721397870987309, - 1.3109494695934274, - 1.2521796433420946, - 1.1939488010574917, - 1.1336339140618727, - 1.0684101532746217, - 0.9958410729329277, - 0.9146220812437603, - 0.8247862294644517, - 0.7280571338568511, - 0.6275363590374021, - 0.5271922378126352, - 0.4312154377233466, - 0.3433965993220628, - 0.26651584664675476, - 0.20202016699722533, - 0.1503275379870187, - 0.1106979712308636, - 0.081925319643294, - 0.06269931110570189, - 0.05173040315856925, - 0.04811713494931186, - 0.051066939919813495, - 0.0597719037820281, - 0.0732694733408287, - 0.09016873718552335, - 0.10875926856458303, - 0.1271458515446782, - 0.1435436221786919, - 0.15652789241882561, - 0.16538086171599273, - 0.1700747366373459, - 0.17117120037156427, - 0.16966323892392485, - 0.16652553111454288, - 0.1624817691674039, - 0.15781665876309542, - 0.1523480680734682, - 0.14560293092601684, - 0.13707266402291407, - 0.12649545933106046, - 0.11406384552272564, - 0.1004196260537896, - 0.08657302769927724, - 0.07361884876981616, - 0.062456217300296005, - 0.053528719026518186, - 0.04680098404226987, - 0.041775180259438514, - 0.03775690436196859, - 0.03416850636907216, - 0.030771876667289696, - 0.02780218196165165, - 0.025906760459520402, - 0.025887411289513464, - 0.028414634400984157, - 0.03368187957029459, - 0.041310569788366856, - 0.05045597326900921, - 0.060115628167171975, - 0.06969355496672484, - 0.0795402840362556, - 0.09134739781811621, - 0.10830367926835165, - 0.13473489623400986, - 0.17560808394507252, - 0.23559251517062835, - 0.3178792418684298, - 0.4240367712772316 - ], - "pressure:branch51_seg0:J67": [ - 7094.03117311169, - 8000.500064621637, - 9021.383527983558, - 10117.630465753244, - 11242.784151510448, - 12351.308214060675, - 13404.578775129065, - 14375.923280424684, - 15246.157844209461, - 16008.84358845533, - 16665.030405729627, - 17215.084454393244, - 17663.539066760106, - 18011.429661133876, - 18257.616405987173, - 18403.17221155088, - 18446.87561998723, - 18393.03338498925, - 18250.007076130267, - 18027.252361127954, - 17738.821586637456, - 17397.710266910482, - 17015.495578772458, - 16601.993990131996, - 16163.98919135111, - 15707.225872933857, - 15237.425660117406, - 14761.397493377792, - 14287.466770549807, - 13824.792120958182, - 13381.009667678072, - 12960.227955864879, - 12561.01991345751, - 12174.448024550986, - 11785.917992839803, - 11376.764430121892, - 10928.754671808998, - 10426.871760601156, - 9865.905081957038, - 9250.17297752577, - 8594.169369523377, - 7921.935166943447, - 7261.112525355294, - 6639.288469101188, - 6079.193090310857, - 5597.5358424936985, - 5200.1765358433795, - 4886.94704715934, - 4651.927573846682, - 4485.279379050536, - 4378.941619183907, - 4324.914638877887, - 4317.434533339052, - 4351.942747394304, - 4422.460288239719, - 4521.992911217594, - 4640.479841726928, - 4765.717797746086, - 4884.987807218926, - 4987.243335818124, - 5064.146045654839, - 5112.453715123431, - 5134.277340084456, - 5134.009753760034, - 5118.847858242603, - 5095.187423953302, - 5066.724394897729, - 5034.217030585291, - 4995.536423432001, - 4947.05614001888, - 4885.775970525155, - 4810.682743799802, - 4724.286647270998, - 4631.953452800012, - 4540.878553360712, - 4458.200083085049, - 4389.173571285352, - 4335.485156824463, - 4295.61797517048, - 4265.614404638253, - 4240.595619653423, - 4217.328272610471, - 4195.330872756127, - 4177.263149883882, - 4168.202313838693, - 4173.450991253947, - 4196.739652708227, - 4238.166053874364, - 4293.518075303872, - 4356.6065146829715, - 4420.995481195221, - 4484.264388837246, - 4551.5897417115475, - 4637.690021413587, - 4767.126446720572, - 4971.187535711056, - 5282.198519968569, - 5730.655309619839, - 6333.241719151336, - 7094.03117311169 - ], - "flow:J67:branch51_seg1": [ - 0.4240367712772316, - 0.5528193101301994, - 0.7005925540964181, - 0.8619368125062845, - 1.0300589924761288, - 1.1980700323583984, - 1.3598086021694664, - 1.5105313675507237, - 1.6469164954686164, - 1.767529578572845, - 1.8719385783987834, - 1.960326170285538, - 2.033278164918457, - 2.09098072665611, - 2.1335196792540474, - 2.1608437024151423, - 2.172854446771867, - 2.1700562370938212, - 2.153290676802879, - 2.124013827252849, - 2.08414741713647, - 2.035615865785898, - 1.9803178562352388, - 1.9197984087796365, - 1.855223005569458, - 1.7875255559283898, - 1.7175401130741363, - 1.646230731890581, - 1.574775403924064, - 1.5045149885588627, - 1.4366852292123737, - 1.3721397870987309, - 1.3109494695934274, - 1.2521796433420946, - 1.1939488010574917, - 1.1336339140618727, - 1.0684101532746217, - 0.9958410729329277, - 0.9146220812437603, - 0.8247862294644517, - 0.7280571338568511, - 0.6275363590374021, - 0.5271922378126352, - 0.4312154377233466, - 0.3433965993220628, - 0.26651584664675476, - 0.20202016699722533, - 0.1503275379870187, - 0.1106979712308636, - 0.081925319643294, - 0.06269931110570189, - 0.05173040315856925, - 0.04811713494931186, - 0.051066939919813495, - 0.0597719037820281, - 0.0732694733408287, - 0.09016873718552335, - 0.10875926856458303, - 0.1271458515446782, - 0.1435436221786919, - 0.15652789241882561, - 0.16538086171599273, - 0.1700747366373459, - 0.17117120037156427, - 0.16966323892392485, - 0.16652553111454288, - 0.1624817691674039, - 0.15781665876309542, - 0.1523480680734682, - 0.14560293092601684, - 0.13707266402291407, - 0.12649545933106046, - 0.11406384552272564, - 0.1004196260537896, - 0.08657302769927724, - 0.07361884876981616, - 0.062456217300296005, - 0.053528719026518186, - 0.04680098404226987, - 0.041775180259438514, - 0.03775690436196859, - 0.03416850636907216, - 0.030771876667289696, - 0.02780218196165165, - 0.025906760459520402, - 0.025887411289513464, - 0.028414634400984157, - 0.03368187957029459, - 0.041310569788366856, - 0.05045597326900921, - 0.060115628167171975, - 0.06969355496672484, - 0.0795402840362556, - 0.09134739781811621, - 0.10830367926835165, - 0.13473489623400986, - 0.17560808394507252, - 0.23559251517062835, - 0.3178792418684298, - 0.4240367712772316 - ], - "pressure:J67:branch51_seg1": [ - 7094.03117311169, - 8000.500064621637, - 9021.383527983558, - 10117.630465753244, - 11242.784151510448, - 12351.308214060675, - 13404.578775129065, - 14375.923280424684, - 15246.157844209461, - 16008.84358845533, - 16665.030405729627, - 17215.084454393244, - 17663.539066760106, - 18011.429661133876, - 18257.616405987173, - 18403.17221155088, - 18446.87561998723, - 18393.03338498925, - 18250.007076130267, - 18027.252361127954, - 17738.821586637456, - 17397.710266910482, - 17015.495578772458, - 16601.993990131996, - 16163.98919135111, - 15707.225872933857, - 15237.425660117406, - 14761.397493377792, - 14287.466770549807, - 13824.792120958182, - 13381.009667678072, - 12960.227955864879, - 12561.01991345751, - 12174.448024550986, - 11785.917992839803, - 11376.764430121892, - 10928.754671808998, - 10426.871760601156, - 9865.905081957038, - 9250.17297752577, - 8594.169369523377, - 7921.935166943447, - 7261.112525355294, - 6639.288469101188, - 6079.193090310857, - 5597.5358424936985, - 5200.1765358433795, - 4886.94704715934, - 4651.927573846682, - 4485.279379050536, - 4378.941619183907, - 4324.914638877887, - 4317.434533339052, - 4351.942747394304, - 4422.460288239719, - 4521.992911217594, - 4640.479841726928, - 4765.717797746086, - 4884.987807218926, - 4987.243335818124, - 5064.146045654839, - 5112.453715123431, - 5134.277340084456, - 5134.009753760034, - 5118.847858242603, - 5095.187423953302, - 5066.724394897729, - 5034.217030585291, - 4995.536423432001, - 4947.05614001888, - 4885.775970525155, - 4810.682743799802, - 4724.286647270998, - 4631.953452800012, - 4540.878553360712, - 4458.200083085049, - 4389.173571285352, - 4335.485156824463, - 4295.61797517048, - 4265.614404638253, - 4240.595619653423, - 4217.328272610471, - 4195.330872756127, - 4177.263149883882, - 4168.202313838693, - 4173.450991253947, - 4196.739652708227, - 4238.166053874364, - 4293.518075303872, - 4356.6065146829715, - 4420.995481195221, - 4484.264388837246, - 4551.5897417115475, - 4637.690021413587, - 4767.126446720572, - 4971.187535711056, - 5282.198519968569, - 5730.655309619839, - 6333.241719151336, - 7094.03117311169 - ], - "flow:branch51_seg1:J68": [ - 0.4231527153948997, - 0.5517962950733092, - 0.6994653680001892, - 0.8607574066220784, - 1.0288746245610676, - 1.196924025806243, - 1.3587370426738277, - 1.5095611173393522, - 1.646055751223704, - 1.7667836266597463, - 1.8713052210081595, - 1.9598008986640152, - 2.0328606855507143, - 2.090668570003168, - 2.1333149108785245, - 2.1607452490248393, - 2.1728610818604515, - 2.1701645902653066, - 2.1534863160383653, - 2.124285624759191, - 2.0844827152321153, - 2.035998936768064, - 1.9807387781816057, - 1.920248347385831, - 1.8556951858889985, - 1.7880149314171916, - 1.7180398040272238, - 1.6467326636166726, - 1.5752702437804609, - 1.5049938116070696, - 1.4371405516835722, - 1.3725707984423228, - 1.3113616649635453, - 1.2525847386360107, - 1.1943655821414256, - 1.1340831492256715, - 1.0689089231681577, - 0.996401338603813, - 0.9152455952048457, - 0.8254607694741415, - 0.7287625513883386, - 0.628245214894523, - 0.5278734817356, - 0.4318398934355602, - 0.3439481560182997, - 0.266979990520017, - 0.20239137188018613, - 0.1506152795772743, - 0.11090705709954411, - 0.08206665077270762, - 0.06278319482708777, - 0.051760450723807715, - 0.04810154319540547, - 0.05101063796859689, - 0.05967987665670413, - 0.07315228760630198, - 0.09003780336819465, - 0.10862772842881126, - 0.12702710273461526, - 0.1434483468481067, - 0.15646163998983398, - 0.1653448795942894, - 0.17006484111059086, - 0.17118056177576738, - 0.16968496209546818, - 0.16655363785301253, - 0.16251372360774832, - 0.15785366439273507, - 0.15239348064286576, - 0.14566090000422274, - 0.13714482419944973, - 0.12658135895413125, - 0.11415973861634233, - 0.10051780152659362, - 0.08666564890080036, - 0.073699427718505, - 0.06252114502758727, - 0.053576999053175735, - 0.04683691365247497, - 0.04180364316705496, - 0.03778185899374798, - 0.03419255489813567, - 0.03079377638913891, - 0.02781752410276799, - 0.025909609734865224, - 0.025872520293858458, - 0.02838007917792698, - 0.033629525958725544, - 0.041246551486821686, - 0.05038780404269569, - 0.06004847897236199, - 0.06962635356744035, - 0.07946267611279789, - 0.09123844651106118, - 0.10813349077381963, - 0.13446516740236888, - 0.17521104384907668, - 0.23504102434688756, - 0.3171522099397143, - 0.4231527153948997 - ], - "pressure:branch51_seg1:J68": [ - 6804.59563126498, - 7648.473265615811, - 8611.96550255063, - 9659.372227978776, - 10746.46253790404, - 11828.812520365538, - 12867.237281415628, - 13832.372636172726, - 14703.446671534273, - 15472.024798359384, - 16136.330808230297, - 16697.311318741, - 17158.95234906783, - 17522.396257638648, - 17787.773331474404, - 17955.116982653784, - 18023.642003777528, - 17996.841148954376, - 17880.817189068443, - 17684.92004586942, - 17421.875768657326, - 17104.134486855335, - 16743.70013760139, - 16350.425393112611, - 15931.584669269807, - 15493.089131884475, - 15040.355427001228, - 14579.702504365927, - 14118.854809856895, - 13666.532926911854, - 13230.56654801063, - 12816.090322240276, - 12423.096529106226, - 12044.868268759483, - 11668.752269768118, - 11277.5054471558, - 10853.01897356152, - 10379.846561619112, - 9850.422612827933, - 9265.961244124734, - 8638.339567103745, - 7988.440491350051, - 7342.1907219361865, - 6726.5834318400475, - 6165.513939562981, - 5676.475152933118, - 5267.871379107734, - 4941.71232527491, - 4692.932429058347, - 4513.3002397972905, - 4394.526929636063, - 4328.400524413766, - 4309.189876419218, - 4331.946280947575, - 4391.292555216006, - 4480.889673795017, - 4591.545488354354, - 4712.005932736084, - 4830.004512854672, - 4934.219616996083, - 5015.722550394296, - 5070.259687451462, - 5098.230459107676, - 5103.418617279219, - 5092.393026665544, - 5071.4302795054255, - 5044.926683157962, - 5014.441582673538, - 4978.568373669155, - 4934.129552095032, - 4877.927719806859, - 4808.453062655874, - 4727.2550532969535, - 4638.745559435518, - 4549.57334956045, - 4466.777685937426, - 4395.989547171342, - 4339.7531999813855, - 4297.5321773051155, - 4265.9434143765875, - 4240.428428119786, - 4217.410721208539, - 4195.6223774172495, - 4176.853869575136, - 4165.48106919771, - 4166.677360716371, - 4184.598937487023, - 4220.202200616156, - 4270.617317828273, - 4330.247072144078, - 4392.665538970288, - 4454.3964586683505, - 4518.402935182106, - 4596.465112160911, - 4710.009138139056, - 4887.585363022826, - 5161.137367379317, - 5560.664317723436, - 6105.596308593205, - 6804.59563126498 - ], - "flow:J68:branch51_seg2": [ - 0.4231527153948997, - 0.5517962950733092, - 0.6994653680001892, - 0.8607574066220784, - 1.0288746245610676, - 1.196924025806243, - 1.3587370426738277, - 1.5095611173393522, - 1.646055751223704, - 1.7667836266597463, - 1.8713052210081595, - 1.9598008986640152, - 2.0328606855507143, - 2.090668570003168, - 2.1333149108785245, - 2.1607452490248393, - 2.1728610818604515, - 2.1701645902653066, - 2.1534863160383653, - 2.124285624759191, - 2.0844827152321153, - 2.035998936768064, - 1.9807387781816057, - 1.920248347385831, - 1.8556951858889985, - 1.7880149314171916, - 1.7180398040272238, - 1.6467326636166726, - 1.5752702437804609, - 1.5049938116070696, - 1.4371405516835722, - 1.3725707984423228, - 1.3113616649635453, - 1.2525847386360107, - 1.1943655821414256, - 1.1340831492256715, - 1.0689089231681577, - 0.996401338603813, - 0.9152455952048457, - 0.8254607694741415, - 0.7287625513883386, - 0.628245214894523, - 0.5278734817356, - 0.4318398934355602, - 0.3439481560182997, - 0.266979990520017, - 0.20239137188018613, - 0.1506152795772743, - 0.11090705709954411, - 0.08206665077270762, - 0.06278319482708777, - 0.051760450723807715, - 0.04810154319540547, - 0.05101063796859689, - 0.05967987665670413, - 0.07315228760630198, - 0.09003780336819465, - 0.10862772842881126, - 0.12702710273461526, - 0.1434483468481067, - 0.15646163998983398, - 0.1653448795942894, - 0.17006484111059086, - 0.17118056177576738, - 0.16968496209546818, - 0.16655363785301253, - 0.16251372360774832, - 0.15785366439273507, - 0.15239348064286576, - 0.14566090000422274, - 0.13714482419944973, - 0.12658135895413125, - 0.11415973861634233, - 0.10051780152659362, - 0.08666564890080036, - 0.073699427718505, - 0.06252114502758727, - 0.053576999053175735, - 0.04683691365247497, - 0.04180364316705496, - 0.03778185899374798, - 0.03419255489813567, - 0.03079377638913891, - 0.02781752410276799, - 0.025909609734865224, - 0.025872520293858458, - 0.02838007917792698, - 0.033629525958725544, - 0.041246551486821686, - 0.05038780404269569, - 0.06004847897236199, - 0.06962635356744035, - 0.07946267611279789, - 0.09123844651106118, - 0.10813349077381963, - 0.13446516740236888, - 0.17521104384907668, - 0.23504102434688756, - 0.3171522099397143, - 0.4231527153948997 - ], - "pressure:J68:branch51_seg2": [ - 6804.59563126498, - 7648.473265615811, - 8611.96550255063, - 9659.372227978776, - 10746.46253790404, - 11828.812520365538, - 12867.237281415628, - 13832.372636172726, - 14703.446671534273, - 15472.024798359384, - 16136.330808230297, - 16697.311318741, - 17158.95234906783, - 17522.396257638648, - 17787.773331474404, - 17955.116982653784, - 18023.642003777528, - 17996.841148954376, - 17880.817189068443, - 17684.92004586942, - 17421.875768657326, - 17104.134486855335, - 16743.70013760139, - 16350.425393112611, - 15931.584669269807, - 15493.089131884475, - 15040.355427001228, - 14579.702504365927, - 14118.854809856895, - 13666.532926911854, - 13230.56654801063, - 12816.090322240276, - 12423.096529106226, - 12044.868268759483, - 11668.752269768118, - 11277.5054471558, - 10853.01897356152, - 10379.846561619112, - 9850.422612827933, - 9265.961244124734, - 8638.339567103745, - 7988.440491350051, - 7342.1907219361865, - 6726.5834318400475, - 6165.513939562981, - 5676.475152933118, - 5267.871379107734, - 4941.71232527491, - 4692.932429058347, - 4513.3002397972905, - 4394.526929636063, - 4328.400524413766, - 4309.189876419218, - 4331.946280947575, - 4391.292555216006, - 4480.889673795017, - 4591.545488354354, - 4712.005932736084, - 4830.004512854672, - 4934.219616996083, - 5015.722550394296, - 5070.259687451462, - 5098.230459107676, - 5103.418617279219, - 5092.393026665544, - 5071.4302795054255, - 5044.926683157962, - 5014.441582673538, - 4978.568373669155, - 4934.129552095032, - 4877.927719806859, - 4808.453062655874, - 4727.2550532969535, - 4638.745559435518, - 4549.57334956045, - 4466.777685937426, - 4395.989547171342, - 4339.7531999813855, - 4297.5321773051155, - 4265.9434143765875, - 4240.428428119786, - 4217.410721208539, - 4195.6223774172495, - 4176.853869575136, - 4165.48106919771, - 4166.677360716371, - 4184.598937487023, - 4220.202200616156, - 4270.617317828273, - 4330.247072144078, - 4392.665538970288, - 4454.3964586683505, - 4518.402935182106, - 4596.465112160911, - 4710.009138139056, - 4887.585363022826, - 5161.137367379317, - 5560.664317723436, - 6105.596308593205, - 6804.59563126498 - ], - "flow:branch60_seg0:J69": [ - 0.8195195373998002, - 1.0512186954741756, - 1.3004160682991648, - 1.5542324712770446, - 1.7992450413978478, - 2.0245402355615307, - 2.2227243366456726, - 2.3905722225164663, - 2.5274931904804805, - 2.636359836257115, - 2.7205232444917486, - 2.7827252804159066, - 2.825556166620141, - 2.849444148853357, - 2.854348765607279, - 2.840153651597298, - 2.806574148302678, - 2.7553051178111483, - 2.6885598058725706, - 2.6095338026296218, - 2.5221218925700284, - 2.4293276565983843, - 2.3336698534306315, - 2.2365994432108387, - 2.1387073947554343, - 2.0404375365385152, - 1.9424027350646988, - 1.8458598586138384, - 1.7526741117297289, - 1.6649444621743454, - 1.5841621304726459, - 1.5106220595055297, - 1.4427055311347905, - 1.3767008357354562, - 1.3075217131033832, - 1.2294568829529442, - 1.137646506168864, - 1.029142359320488, - 0.9044041552079473, - 0.7667326433782398, - 0.622543422094164, - 0.4799973945098989, - 0.3473670217532025, - 0.23169062860292022, - 0.13774190666392003, - 0.0674265537039606, - 0.019456165157292805, - -0.008701379554168505, - -0.02116583003361869, - -0.02176944522930135, - -0.01324057150848661, - 0.0023097529130255232, - 0.024093881919868845, - 0.05146839170555687, - 0.08341035403801683, - 0.11839896894908887, - 0.15381195165007566, - 0.18654983591347105, - 0.21354120917081934, - 0.23249520823433772, - 0.24226042863024794, - 0.24343849389443875, - 0.23790124181782604, - 0.22812747909651132, - 0.21687169904513104, - 0.20596951121075463, - 0.19612716646849615, - 0.18687245534156527, - 0.1768454273129665, - 0.16449733551429085, - 0.1487728236889513, - 0.12960150869209838, - 0.10815405307258061, - 0.0864020676811437, - 0.06671201010761137, - 0.051046410908864054, - 0.040424806138728876, - 0.03454622658798341, - 0.03215964157900501, - 0.03137540202289928, - 0.030447841947103885, - 0.028515231465709424, - 0.02583268085165106, - 0.023741739369161977, - 0.0241909427100507, - 0.028894833136075798, - 0.03872423054347996, - 0.05309247842149585, - 0.07014686856825776, - 0.08749009840014946, - 0.10307805439458134, - 0.11661448116128018, - 0.13046594632710357, - 0.14997037399140975, - 0.1831406352978661, - 0.23909568720925226, - 0.3265791349734437, - 0.45212165943967697, - 0.6171478394752603, - 0.8195195373998002 - ], - "pressure:branch60_seg0:J69": [ - 9030.904794930388, - 10382.573230221069, - 11806.125297326973, - 13229.097345519302, - 14579.951180892233, - 15801.717151484947, - 16859.318597993, - 17744.270715946543, - 18458.10238689456, - 19017.847705752112, - 19447.951877592885, - 19758.18950185387, - 19961.641429442145, - 20060.152798906198, - 20048.930144737264, - 19931.422835323436, - 19704.985168716627, - 19381.093353639055, - 18978.129662344865, - 18511.45422435101, - 18004.703613723625, - 17474.15778805896, - 16930.610086551787, - 16381.597974054803, - 15828.867478382472, - 15274.780637960095, - 14724.093158831498, - 14185.01086884087, - 13668.951439812208, - 13187.614129050315, - 12747.717003410418, - 12347.037260267576, - 11973.284229713741, - 11601.295267661033, - 11200.25231311486, - 10738.2233899116, - 10191.592281393254, - 9547.559772150707, - 8815.98012716277, - 8022.789528515527, - 7206.866618177916, - 6417.558730072133, - 5700.202476000404, - 5090.555573117773, - 4607.936018875786, - 4260.5050055361, - 4034.018220379458, - 3910.3996673413403, - 3868.6651048521417, - 3885.2319418488887, - 3948.582513640871, - 4049.2873351717703, - 4182.612650659398, - 4346.752981671123, - 4533.8815237401805, - 4733.741825005248, - 4930.626567381743, - 5106.002529480688, - 5243.375629370178, - 5332.35535896096, - 5369.25919004788, - 5359.729702244169, - 5318.027181969869, - 5257.616471209797, - 5193.333046645574, - 5134.121094361696, - 5080.943025966359, - 5029.000837154631, - 4969.6767435034635, - 4894.40957328208, - 4799.195167274961, - 4685.456381101238, - 4562.1885450923955, - 4441.9498802444905, - 4337.689384669907, - 4259.034312372537, - 4209.59931928772, - 4185.246399198791, - 4176.786964290803, - 4173.828144504916, - 4167.186445007464, - 4154.105200587776, - 4138.564575986708, - 4129.787538931683, - 4139.214900386363, - 4175.253464906903, - 4240.345135829557, - 4328.8099758433455, - 4427.3831682231385, - 4522.871357697852, - 4605.896490531435, - 4679.044422222944, - 4761.505250534493, - 4888.980776386736, - 5110.690985468264, - 5479.72458509745, - 6038.881760567466, - 6822.787797136465, - 7828.6589565406375, - 9030.904794930388 - ], - "flow:J69:branch60_seg1": [ - 0.8195195373998002, - 1.0512186954741756, - 1.3004160682991648, - 1.5542324712770446, - 1.7992450413978478, - 2.0245402355615307, - 2.2227243366456726, - 2.3905722225164663, - 2.5274931904804805, - 2.636359836257115, - 2.7205232444917486, - 2.7827252804159066, - 2.825556166620141, - 2.849444148853357, - 2.854348765607279, - 2.840153651597298, - 2.806574148302678, - 2.7553051178111483, - 2.6885598058725706, - 2.6095338026296218, - 2.5221218925700284, - 2.4293276565983843, - 2.3336698534306315, - 2.2365994432108387, - 2.1387073947554343, - 2.0404375365385152, - 1.9424027350646988, - 1.8458598586138384, - 1.7526741117297289, - 1.6649444621743454, - 1.5841621304726459, - 1.5106220595055297, - 1.4427055311347905, - 1.3767008357354562, - 1.3075217131033832, - 1.2294568829529442, - 1.137646506168864, - 1.029142359320488, - 0.9044041552079473, - 0.7667326433782398, - 0.622543422094164, - 0.4799973945098989, - 0.3473670217532025, - 0.23169062860292022, - 0.13774190666392003, - 0.0674265537039606, - 0.019456165157292805, - -0.008701379554168505, - -0.02116583003361869, - -0.02176944522930135, - -0.01324057150848661, - 0.0023097529130255232, - 0.024093881919868845, - 0.05146839170555687, - 0.08341035403801683, - 0.11839896894908887, - 0.15381195165007566, - 0.18654983591347105, - 0.21354120917081934, - 0.23249520823433772, - 0.24226042863024794, - 0.24343849389443875, - 0.23790124181782604, - 0.22812747909651132, - 0.21687169904513104, - 0.20596951121075463, - 0.19612716646849615, - 0.18687245534156527, - 0.1768454273129665, - 0.16449733551429085, - 0.1487728236889513, - 0.12960150869209838, - 0.10815405307258061, - 0.0864020676811437, - 0.06671201010761137, - 0.051046410908864054, - 0.040424806138728876, - 0.03454622658798341, - 0.03215964157900501, - 0.03137540202289928, - 0.030447841947103885, - 0.028515231465709424, - 0.02583268085165106, - 0.023741739369161977, - 0.0241909427100507, - 0.028894833136075798, - 0.03872423054347996, - 0.05309247842149585, - 0.07014686856825776, - 0.08749009840014946, - 0.10307805439458134, - 0.11661448116128018, - 0.13046594632710357, - 0.14997037399140975, - 0.1831406352978661, - 0.23909568720925226, - 0.3265791349734437, - 0.45212165943967697, - 0.6171478394752603, - 0.8195195373998002 - ], - "pressure:J69:branch60_seg1": [ - 9030.904794930388, - 10382.573230221069, - 11806.125297326973, - 13229.097345519302, - 14579.951180892233, - 15801.717151484947, - 16859.318597993, - 17744.270715946543, - 18458.10238689456, - 19017.847705752112, - 19447.951877592885, - 19758.18950185387, - 19961.641429442145, - 20060.152798906198, - 20048.930144737264, - 19931.422835323436, - 19704.985168716627, - 19381.093353639055, - 18978.129662344865, - 18511.45422435101, - 18004.703613723625, - 17474.15778805896, - 16930.610086551787, - 16381.597974054803, - 15828.867478382472, - 15274.780637960095, - 14724.093158831498, - 14185.01086884087, - 13668.951439812208, - 13187.614129050315, - 12747.717003410418, - 12347.037260267576, - 11973.284229713741, - 11601.295267661033, - 11200.25231311486, - 10738.2233899116, - 10191.592281393254, - 9547.559772150707, - 8815.98012716277, - 8022.789528515527, - 7206.866618177916, - 6417.558730072133, - 5700.202476000404, - 5090.555573117773, - 4607.936018875786, - 4260.5050055361, - 4034.018220379458, - 3910.3996673413403, - 3868.6651048521417, - 3885.2319418488887, - 3948.582513640871, - 4049.2873351717703, - 4182.612650659398, - 4346.752981671123, - 4533.8815237401805, - 4733.741825005248, - 4930.626567381743, - 5106.002529480688, - 5243.375629370178, - 5332.35535896096, - 5369.25919004788, - 5359.729702244169, - 5318.027181969869, - 5257.616471209797, - 5193.333046645574, - 5134.121094361696, - 5080.943025966359, - 5029.000837154631, - 4969.6767435034635, - 4894.40957328208, - 4799.195167274961, - 4685.456381101238, - 4562.1885450923955, - 4441.9498802444905, - 4337.689384669907, - 4259.034312372537, - 4209.59931928772, - 4185.246399198791, - 4176.786964290803, - 4173.828144504916, - 4167.186445007464, - 4154.105200587776, - 4138.564575986708, - 4129.787538931683, - 4139.214900386363, - 4175.253464906903, - 4240.345135829557, - 4328.8099758433455, - 4427.3831682231385, - 4522.871357697852, - 4605.896490531435, - 4679.044422222944, - 4761.505250534493, - 4888.980776386736, - 5110.690985468264, - 5479.72458509745, - 6038.881760567466, - 6822.787797136465, - 7828.6589565406375, - 9030.904794930388 - ], - "flow:branch60_seg1:J70": [ - 0.8183748712279572, - 1.049975789129666, - 1.2991355512330833, - 1.5529938590358716, - 1.7981007336492951, - 2.0235267394953302, - 2.2218624593343135, - 2.3898747884070466, - 2.526929710838574, - 2.6359251651848794, - 2.7202005119487644, - 2.782495481173353, - 2.8254250682077324, - 2.849403937256174, - 2.8544050185854046, - 2.840307166021789, - 2.8068168965017515, - 2.755631879202652, - 2.6889478288023203, - 2.6099663475058925, - 2.522584964971351, - 2.4298046112555634, - 2.3341544454302663, - 2.2370883019239924, - 2.1391980823030776, - 2.0409284956885547, - 1.942887534305005, - 1.8463292734292966, - 1.7531172800520223, - 1.665353702659943, - 1.5845325527537548, - 1.5109624050801276, - 1.4430330226806036, - 1.3770387324625215, - 1.3079003090999133, - 1.2299028619257661, - 1.1381754464182972, - 1.0297542478245796, - 0.9050884825622632, - 0.7674540910764395, - 0.6232632365548418, - 0.48067499329105945, - 0.34796269174190725, - 0.23217538548302613, - 0.13811269743022211, - 0.06768049504953, - 0.01960475222512126, - -0.008630545793139923, - -0.021158321801093574, - -0.02180853953631599, - -0.013313288520004695, - 0.0022024370220281348, - 0.023960384076708283, - 0.05131158991521597, - 0.0832344428711082, - 0.11822011286149163, - 0.15364398161510875, - 0.1864084862369782, - 0.21343928399911044, - 0.23244111197730952, - 0.24224887410671878, - 0.24346328494135844, - 0.23794971989529118, - 0.22818389575937573, - 0.2169274741987312, - 0.20601953133746392, - 0.1961725813352845, - 0.18692043663906116, - 0.17690418960594348, - 0.1645734617799495, - 0.14886639384178776, - 0.12970845146238355, - 0.10826507899555611, - 0.08650382608059233, - 0.06679392643266725, - 0.051103009264911875, - 0.040456785612074435, - 0.03455788121205608, - 0.03216303943700641, - 0.03137924320673764, - 0.030456511398061187, - 0.02852901177682204, - 0.025845260920511808, - 0.02374297588859602, - 0.024171712804908374, - 0.028848863802087902, - 0.03865487363101501, - 0.05300724621833049, - 0.07005816870525998, - 0.08741022656170584, - 0.10301030462742136, - 0.11654941711400169, - 0.1303788718306229, - 0.14982332058489145, - 0.18288686516049107, - 0.23868405396003686, - 0.32598647864066377, - 0.451326056410727, - 0.6161488449475524, - 0.8183748712279572 - ], - "pressure:branch60_seg1:J70": [ - 8676.905893750822, - 9971.221441724347, - 11351.048569237302, - 12745.602446288727, - 14082.5105390617, - 15303.510303415307, - 16370.579069064508, - 17269.996905846205, - 18000.271534701773, - 18577.790373171352, - 19023.23420613025, - 19349.348045224062, - 19569.94712158051, - 19687.066893755396, - 19698.707613984443, - 19605.893642310337, - 19406.558531963216, - 19110.82102063941, - 18733.16992384561, - 18290.103301041214, - 17803.734177460487, - 17290.305984752085, - 16762.32485446339, - 16227.533169821776, - 15688.5356563269, - 15147.719345382438, - 14608.96250122562, - 14079.624006473734, - 13570.332036849057, - 13092.612294783617, - 12654.006543672964, - 12254.63737782085, - 11884.358387346909, - 11521.035626424271, - 11135.826853820947, - 10697.363261637633, - 10180.356493233425, - 9570.004173551539, - 8871.740186400206, - 8106.562585619353, - 7310.8847710857435, - 6531.023752076116, - 5812.048230018777, - 5191.227944294143, - 4691.945401456923, - 4323.680706091857, - 4076.5996655387107, - 3935.270536995319, - 3877.858890891554, - 3882.4212176330198, - 3935.4810510741286, - 4026.3372379825632, - 4150.571454624988, - 4305.35405673308, - 4484.205142690941, - 4678.1258803121, - 4872.266159551815, - 5049.120435309301, - 5192.075293093357, - 5289.521471125292, - 5336.169486083916, - 5336.260492790813, - 5301.594125747496, - 5245.597342975481, - 5183.214314359365, - 5124.011069161415, - 5070.679284756312, - 5019.778760932098, - 4963.430931356242, - 4893.158137528004, - 4803.901196164844, - 4695.990991097293, - 4576.8262226573, - 4457.8442854433915, - 4351.944157641043, - 4269.388090912356, - 4214.961716750196, - 4186.030560150782, - 4174.868811242908, - 4171.147330387584, - 4165.485383566933, - 4153.966812878852, - 4139.000061250071, - 4128.635951336983, - 4133.811419736214, - 4163.476014296349, - 4221.483995631775, - 4303.650753342292, - 4398.635502822609, - 4493.356188924918, - 4577.368960002549, - 4650.7051410673275, - 4728.712063630656, - 4843.030674824594, - 5039.426414222807, - 5368.823304944472, - 5876.891365857387, - 6598.682820049302, - 7537.728660752901, - 8676.905893750822 - ], - "flow:J70:branch60_seg2": [ - 0.8183748712279572, - 1.049975789129666, - 1.2991355512330833, - 1.5529938590358716, - 1.7981007336492951, - 2.0235267394953302, - 2.2218624593343135, - 2.3898747884070466, - 2.526929710838574, - 2.6359251651848794, - 2.7202005119487644, - 2.782495481173353, - 2.8254250682077324, - 2.849403937256174, - 2.8544050185854046, - 2.840307166021789, - 2.8068168965017515, - 2.755631879202652, - 2.6889478288023203, - 2.6099663475058925, - 2.522584964971351, - 2.4298046112555634, - 2.3341544454302663, - 2.2370883019239924, - 2.1391980823030776, - 2.0409284956885547, - 1.942887534305005, - 1.8463292734292966, - 1.7531172800520223, - 1.665353702659943, - 1.5845325527537548, - 1.5109624050801276, - 1.4430330226806036, - 1.3770387324625215, - 1.3079003090999133, - 1.2299028619257661, - 1.1381754464182972, - 1.0297542478245796, - 0.9050884825622632, - 0.7674540910764395, - 0.6232632365548418, - 0.48067499329105945, - 0.34796269174190725, - 0.23217538548302613, - 0.13811269743022211, - 0.06768049504953, - 0.01960475222512126, - -0.008630545793139923, - -0.021158321801093574, - -0.02180853953631599, - -0.013313288520004695, - 0.0022024370220281348, - 0.023960384076708283, - 0.05131158991521597, - 0.0832344428711082, - 0.11822011286149163, - 0.15364398161510875, - 0.1864084862369782, - 0.21343928399911044, - 0.23244111197730952, - 0.24224887410671878, - 0.24346328494135844, - 0.23794971989529118, - 0.22818389575937573, - 0.2169274741987312, - 0.20601953133746392, - 0.1961725813352845, - 0.18692043663906116, - 0.17690418960594348, - 0.1645734617799495, - 0.14886639384178776, - 0.12970845146238355, - 0.10826507899555611, - 0.08650382608059233, - 0.06679392643266725, - 0.051103009264911875, - 0.040456785612074435, - 0.03455788121205608, - 0.03216303943700641, - 0.03137924320673764, - 0.030456511398061187, - 0.02852901177682204, - 0.025845260920511808, - 0.02374297588859602, - 0.024171712804908374, - 0.028848863802087902, - 0.03865487363101501, - 0.05300724621833049, - 0.07005816870525998, - 0.08741022656170584, - 0.10301030462742136, - 0.11654941711400169, - 0.1303788718306229, - 0.14982332058489145, - 0.18288686516049107, - 0.23868405396003686, - 0.32598647864066377, - 0.451326056410727, - 0.6161488449475524, - 0.8183748712279572 - ], - "pressure:J70:branch60_seg2": [ - 8676.905893750822, - 9971.221441724347, - 11351.048569237302, - 12745.602446288727, - 14082.5105390617, - 15303.510303415307, - 16370.579069064508, - 17269.996905846205, - 18000.271534701773, - 18577.790373171352, - 19023.23420613025, - 19349.348045224062, - 19569.94712158051, - 19687.066893755396, - 19698.707613984443, - 19605.893642310337, - 19406.558531963216, - 19110.82102063941, - 18733.16992384561, - 18290.103301041214, - 17803.734177460487, - 17290.305984752085, - 16762.32485446339, - 16227.533169821776, - 15688.5356563269, - 15147.719345382438, - 14608.96250122562, - 14079.624006473734, - 13570.332036849057, - 13092.612294783617, - 12654.006543672964, - 12254.63737782085, - 11884.358387346909, - 11521.035626424271, - 11135.826853820947, - 10697.363261637633, - 10180.356493233425, - 9570.004173551539, - 8871.740186400206, - 8106.562585619353, - 7310.8847710857435, - 6531.023752076116, - 5812.048230018777, - 5191.227944294143, - 4691.945401456923, - 4323.680706091857, - 4076.5996655387107, - 3935.270536995319, - 3877.858890891554, - 3882.4212176330198, - 3935.4810510741286, - 4026.3372379825632, - 4150.571454624988, - 4305.35405673308, - 4484.205142690941, - 4678.1258803121, - 4872.266159551815, - 5049.120435309301, - 5192.075293093357, - 5289.521471125292, - 5336.169486083916, - 5336.260492790813, - 5301.594125747496, - 5245.597342975481, - 5183.214314359365, - 5124.011069161415, - 5070.679284756312, - 5019.778760932098, - 4963.430931356242, - 4893.158137528004, - 4803.901196164844, - 4695.990991097293, - 4576.8262226573, - 4457.8442854433915, - 4351.944157641043, - 4269.388090912356, - 4214.961716750196, - 4186.030560150782, - 4174.868811242908, - 4171.147330387584, - 4165.485383566933, - 4153.966812878852, - 4139.000061250071, - 4128.635951336983, - 4133.811419736214, - 4163.476014296349, - 4221.483995631775, - 4303.650753342292, - 4398.635502822609, - 4493.356188924918, - 4577.368960002549, - 4650.7051410673275, - 4728.712063630656, - 4843.030674824594, - 5039.426414222807, - 5368.823304944472, - 5876.891365857387, - 6598.682820049302, - 7537.728660752901, - 8676.905893750822 - ], - "flow:branch61_seg0:J71": [ - 1.448598603495338, - 1.880150037698941, - 2.3597062003536347, - 2.8642244589863375, - 3.3680578579209577, - 3.8476437290080874, - 4.284381341526333, - 4.666699801981257, - 4.9890449159824835, - 5.252593508895272, - 5.461680073407669, - 5.621327199268599, - 5.736734176319732, - 5.8105372664959285, - 5.843948199722315, - 5.837485381355622, - 5.791139830138325, - 5.707131853950149, - 5.589153023210898, - 5.442645788486709, - 5.274494012443867, - 5.091127574307878, - 4.898220928448698, - 4.699821332995652, - 4.498343211762722, - 4.2953673017504475, - 4.09234868220393, - 3.891465232072606, - 3.695871260223065, - 3.509350975780836, - 3.335165605548599, - 3.1748797151398405, - 3.0270350121998812, - 2.886459840177292, - 2.7448500167827627, - 2.591904712054542, - 2.4176470663832657, - 2.214514727208501, - 1.980111279933704, - 1.7175196172188805, - 1.4358226969494123, - 1.1485525145404578, - 0.871194116304557, - 0.6185339437237788, - 0.4022611445239007, - 0.2294459532144374, - 0.10149443222731083, - 0.015924342556128304, - -0.033203060270146675, - -0.05283324761804049, - -0.04912307232034398, - -0.027142726613825444, - 0.010002477279657071, - 0.06009678930189802, - 0.1209091821583015, - 0.18956843844171367, - 0.26163702629853436, - 0.3315651680445086, - 0.3933962466575605, - 0.4420022145443752, - 0.4739643039655091, - 0.4886880255491486, - 0.4882126015699063, - 0.4763453775311305, - 0.4579427575880679, - 0.4371488771271761, - 0.4164978556647324, - 0.3964533524097272, - 0.37560388988244164, - 0.3515793214268436, - 0.32223143481097705, - 0.28667067934315343, - 0.24597924249718692, - 0.20298616074171072, - 0.1616694561190792, - 0.12594740867788093, - 0.0985829859052169, - 0.0803071742065737, - 0.06989828267727691, - 0.06459579384735537, - 0.061245333195787385, - 0.05758291434384552, - 0.05303294941293771, - 0.048991712182843636, - 0.048344103276656544, - 0.054255905134450826, - 0.06898690622654076, - 0.09267217365840273, - 0.1231051352703537, - 0.1565348793285957, - 0.1890637161515729, - 0.21890256060726576, - 0.24833805699438882, - 0.2848805865629577, - 0.341350403199951, - 0.4340094539163406, - 0.5799132714914599, - 0.7937500732646866, - 1.0832134023649467, - 1.448598603495338 - ], - "pressure:branch61_seg0:J71": [ - 9081.303539859888, - 10438.628974115358, - 11867.994062738402, - 13298.396365727109, - 14660.461076913785, - 15896.174127690212, - 16968.63168858065, - 17870.12047170062, - 18600.047568632635, - 19170.93037557263, - 19610.076344560915, - 19924.72045642736, - 20127.43620974461, - 20222.794102027896, - 20204.718962734023, - 20079.684200424665, - 19845.652669575247, - 19512.692982406654, - 19101.86132953084, - 18626.674866862384, - 18110.55263559637, - 17570.457199532153, - 17016.143693576076, - 16456.141789690933, - 15892.683781404194, - 15328.51840805143, - 14769.052872518567, - 14222.53749351635, - 13700.170012144945, - 13213.317519533875, - 12768.294341892179, - 12362.009891478985, - 11982.611624495925, - 11604.736513020309, - 11197.88270203831, - 10730.778872680705, - 10180.78511260951, - 9534.58247997527, - 8801.69709099238, - 8008.549189764999, - 7191.8308262749315, - 6400.694465386535, - 5680.087281686848, - 5065.522782350111, - 4575.756471042958, - 4221.088658279386, - 3987.995345863948, - 3858.4837450561436, - 3814.5486234802274, - 3831.2254642465405, - 3897.503543989557, - 4003.893752920083, - 4143.766516835628, - 4315.466012014207, - 4509.695045353188, - 4715.680862838935, - 4918.169348707156, - 5098.422788299854, - 5240.172482002232, - 5333.632148603645, - 5375.181656800968, - 5369.483344186211, - 5331.52612940152, - 5273.8759282464525, - 5210.522502381832, - 5150.880959496543, - 5095.842166218134, - 5041.004536061461, - 4978.498813583799, - 4900.307280100177, - 4803.006248718836, - 4688.0135543246815, - 4564.192385072234, - 4443.84931769716, - 4339.262728982557, - 4259.692561968572, - 4208.751026282263, - 4182.453590140437, - 4171.740286331132, - 4167.191996252928, - 4159.797565354294, - 4146.981666570383, - 4132.792914595376, - 4126.013693868244, - 4137.534085650585, - 4175.162355226912, - 4240.93167311988, - 4329.5680602224975, - 4427.679734632759, - 4522.880645740805, - 4606.7803305805965, - 4682.3917369278115, - 4769.172798383284, - 4902.676915229794, - 5131.493464406305, - 5508.563901616092, - 6074.299042329528, - 6864.438916290588, - 7875.960618969564, - 9081.303539859888 - ], - "flow:J71:branch61_seg1": [ - 1.448598603495338, - 1.880150037698941, - 2.3597062003536347, - 2.8642244589863375, - 3.3680578579209577, - 3.8476437290080874, - 4.284381341526333, - 4.666699801981257, - 4.9890449159824835, - 5.252593508895272, - 5.461680073407669, - 5.621327199268599, - 5.736734176319732, - 5.8105372664959285, - 5.843948199722315, - 5.837485381355622, - 5.791139830138325, - 5.707131853950149, - 5.589153023210898, - 5.442645788486709, - 5.274494012443867, - 5.091127574307878, - 4.898220928448698, - 4.699821332995652, - 4.498343211762722, - 4.2953673017504475, - 4.09234868220393, - 3.891465232072606, - 3.695871260223065, - 3.509350975780836, - 3.335165605548599, - 3.1748797151398405, - 3.0270350121998812, - 2.886459840177292, - 2.7448500167827627, - 2.591904712054542, - 2.4176470663832657, - 2.214514727208501, - 1.980111279933704, - 1.7175196172188805, - 1.4358226969494123, - 1.1485525145404578, - 0.871194116304557, - 0.6185339437237788, - 0.4022611445239007, - 0.2294459532144374, - 0.10149443222731083, - 0.015924342556128304, - -0.033203060270146675, - -0.05283324761804049, - -0.04912307232034398, - -0.027142726613825444, - 0.010002477279657071, - 0.06009678930189802, - 0.1209091821583015, - 0.18956843844171367, - 0.26163702629853436, - 0.3315651680445086, - 0.3933962466575605, - 0.4420022145443752, - 0.4739643039655091, - 0.4886880255491486, - 0.4882126015699063, - 0.4763453775311305, - 0.4579427575880679, - 0.4371488771271761, - 0.4164978556647324, - 0.3964533524097272, - 0.37560388988244164, - 0.3515793214268436, - 0.32223143481097705, - 0.28667067934315343, - 0.24597924249718692, - 0.20298616074171072, - 0.1616694561190792, - 0.12594740867788093, - 0.0985829859052169, - 0.0803071742065737, - 0.06989828267727691, - 0.06459579384735537, - 0.061245333195787385, - 0.05758291434384552, - 0.05303294941293771, - 0.048991712182843636, - 0.048344103276656544, - 0.054255905134450826, - 0.06898690622654076, - 0.09267217365840273, - 0.1231051352703537, - 0.1565348793285957, - 0.1890637161515729, - 0.21890256060726576, - 0.24833805699438882, - 0.2848805865629577, - 0.341350403199951, - 0.4340094539163406, - 0.5799132714914599, - 0.7937500732646866, - 1.0832134023649467, - 1.448598603495338 - ], - "pressure:J71:branch61_seg1": [ - 9081.303539859888, - 10438.628974115358, - 11867.994062738402, - 13298.396365727109, - 14660.461076913785, - 15896.174127690212, - 16968.63168858065, - 17870.12047170062, - 18600.047568632635, - 19170.93037557263, - 19610.076344560915, - 19924.72045642736, - 20127.43620974461, - 20222.794102027896, - 20204.718962734023, - 20079.684200424665, - 19845.652669575247, - 19512.692982406654, - 19101.86132953084, - 18626.674866862384, - 18110.55263559637, - 17570.457199532153, - 17016.143693576076, - 16456.141789690933, - 15892.683781404194, - 15328.51840805143, - 14769.052872518567, - 14222.53749351635, - 13700.170012144945, - 13213.317519533875, - 12768.294341892179, - 12362.009891478985, - 11982.611624495925, - 11604.736513020309, - 11197.88270203831, - 10730.778872680705, - 10180.78511260951, - 9534.58247997527, - 8801.69709099238, - 8008.549189764999, - 7191.8308262749315, - 6400.694465386535, - 5680.087281686848, - 5065.522782350111, - 4575.756471042958, - 4221.088658279386, - 3987.995345863948, - 3858.4837450561436, - 3814.5486234802274, - 3831.2254642465405, - 3897.503543989557, - 4003.893752920083, - 4143.766516835628, - 4315.466012014207, - 4509.695045353188, - 4715.680862838935, - 4918.169348707156, - 5098.422788299854, - 5240.172482002232, - 5333.632148603645, - 5375.181656800968, - 5369.483344186211, - 5331.52612940152, - 5273.8759282464525, - 5210.522502381832, - 5150.880959496543, - 5095.842166218134, - 5041.004536061461, - 4978.498813583799, - 4900.307280100177, - 4803.006248718836, - 4688.0135543246815, - 4564.192385072234, - 4443.84931769716, - 4339.262728982557, - 4259.692561968572, - 4208.751026282263, - 4182.453590140437, - 4171.740286331132, - 4167.191996252928, - 4159.797565354294, - 4146.981666570383, - 4132.792914595376, - 4126.013693868244, - 4137.534085650585, - 4175.162355226912, - 4240.93167311988, - 4329.5680602224975, - 4427.679734632759, - 4522.880645740805, - 4606.7803305805965, - 4682.3917369278115, - 4769.172798383284, - 4902.676915229794, - 5131.493464406305, - 5508.563901616092, - 6074.299042329528, - 6864.438916290588, - 7875.960618969564, - 9081.303539859888 - ], - "flow:branch61_seg1:J72": [ - 1.4464160965380066, - 1.87779061340416, - 2.357267114283864, - 2.8618624938379496, - 3.3658741463487076, - 3.8457010280567596, - 4.28272063680425, - 4.665355228127055, - 4.987954509531106, - 5.251753405040018, - 5.4610604812247034, - 5.620887064309136, - 5.736489105475496, - 5.810471154915806, - 5.844066997486407, - 5.837791369981977, - 5.791610843223292, - 5.70776631495548, - 5.589908203079037, - 5.443479078633186, - 5.2753892545561945, - 5.092050336620405, - 4.899157766982022, - 4.700767353506664, - 4.499290543551256, - 4.296313294520298, - 4.093280868414783, - 3.892365505971071, - 3.69671916923996, - 3.5101344341039002, - 3.3358742903096767, - 3.175531913116489, - 3.027664750582543, - 2.8871093104141448, - 2.745575058917199, - 2.5927570188532787, - 2.418652623590649, - 2.215673315245801, - 1.9814066343263406, - 1.7188853295440119, - 1.4371834927802185, - 1.149837640957259, - 0.8723269829356156, - 0.6194564643936127, - 0.40296813120395125, - 0.22994054223482108, - 0.10178078225158117, - 0.016061092461544364, - -0.03318789261975039, - -0.05291465046156945, - -0.0492675494471852, - -0.027357464195641876, - 0.009735252802622333, - 0.059788400113954206, - 0.12056498347225018, - 0.18922041121319746, - 0.26131181507811224, - 0.33129056710998483, - 0.3931965506419505, - 0.44189360096125746, - 0.4739354201094057, - 0.4887286048224151, - 0.48829980732338835, - 0.4764480023795738, - 0.4580472064028945, - 0.4372459707288364, - 0.4165877826324595, - 0.39654898770618247, - 0.37572014611412075, - 0.3517278191661559, - 0.3224117860495129, - 0.2868733587819138, - 0.24618962127625746, - 0.20317889002032216, - 0.1618246265995503, - 0.12605515514265558, - 0.09864647803332272, - 0.08033171879211053, - 0.06990680957193023, - 0.06460531050349502, - 0.06126222612010959, - 0.05760738202983388, - 0.0530537890027613, - 0.04899048640979245, - 0.0483044436327307, - 0.05416673172102736, - 0.06885529696560021, - 0.09251173334718059, - 0.12293784042282363, - 0.15638413189147604, - 0.18893361037763493, - 0.21877418048006791, - 0.24816447457552215, - 0.28459110151355954, - 0.34085844462188725, - 0.4332158835006777, - 0.5787740409339938, - 0.7922440677032266, - 1.0813087612930241, - 1.4464160965380066 - ], - "pressure:branch61_seg1:J72": [ - 8653.393625214729, - 9936.504671697901, - 11308.394956582253, - 12702.498935759846, - 14050.078305043324, - 15291.46710359886, - 16385.751414781353, - 17319.137439411566, - 18085.387352989917, - 18693.76821679484, - 19167.574364727927, - 19515.27226829066, - 19750.018292159137, - 19877.243392342723, - 19893.35016907154, - 19803.616808132294, - 19606.644106898806, - 19310.731014554258, - 18933.329153434654, - 18488.16292133454, - 17997.173743693853, - 17477.08883879576, - 16939.29003981805, - 16393.06713612793, - 15841.899864632062, - 15289.0072241432, - 14739.19861165131, - 14199.872758070951, - 13681.26524912809, - 13194.39932388541, - 12746.231074762076, - 12336.10046622679, - 11954.940238369953, - 11580.991477231708, - 11186.672574087805, - 10742.109543783203, - 10223.525874386705, - 9615.324843966126, - 8921.877101627822, - 8163.684916324696, - 7373.007986730097, - 6594.855913611693, - 5872.664255595453, - 5242.948448191297, - 4728.656203180559, - 4342.608084136442, - 4076.461855271007, - 3916.556039084127, - 3845.458865901189, - 3840.122118606459, - 3888.195473958332, - 3978.5529303155467, - 4104.450964991928, - 4263.024909533361, - 4445.697451259486, - 4643.075446004823, - 4841.118312803748, - 5022.318726362311, - 5170.60869623456, - 5275.141856554998, - 5330.415850824199, - 5338.90857057938, - 5312.818540480919, - 5263.748324534697, - 5205.24162896988, - 5147.294398632925, - 5092.619713391088, - 5038.66156898499, - 4978.900713668302, - 4905.865963295049, - 4815.3342322623585, - 4707.506951390459, - 4589.357406172826, - 4471.51839370503, - 4365.702995806381, - 4281.557723540562, - 4223.9639393981515, - 4190.688751346154, - 4174.704474399622, - 4167.310126290867, - 4159.538482549055, - 4147.769000176306, - 4134.267876590534, - 4126.145268114916, - 4133.247980403063, - 4163.536602508156, - 4220.3681110172465, - 4300.399177815903, - 4392.546662831735, - 4485.271042470562, - 4569.5564036324, - 4645.794117130255, - 4728.998551925467, - 4849.539156416129, - 5051.123797794794, - 5383.236973984209, - 5888.142551535132, - 6602.562742193212, - 7529.81702809906, - 8653.393625214729 - ], - "flow:J72:branch61_seg2": [ - 1.4464160965380066, - 1.87779061340416, - 2.357267114283864, - 2.8618624938379496, - 3.3658741463487076, - 3.8457010280567596, - 4.28272063680425, - 4.665355228127055, - 4.987954509531106, - 5.251753405040018, - 5.4610604812247034, - 5.620887064309136, - 5.736489105475496, - 5.810471154915806, - 5.844066997486407, - 5.837791369981977, - 5.791610843223292, - 5.70776631495548, - 5.589908203079037, - 5.443479078633186, - 5.2753892545561945, - 5.092050336620405, - 4.899157766982022, - 4.700767353506664, - 4.499290543551256, - 4.296313294520298, - 4.093280868414783, - 3.892365505971071, - 3.69671916923996, - 3.5101344341039002, - 3.3358742903096767, - 3.175531913116489, - 3.027664750582543, - 2.8871093104141448, - 2.745575058917199, - 2.5927570188532787, - 2.418652623590649, - 2.215673315245801, - 1.9814066343263406, - 1.7188853295440119, - 1.4371834927802185, - 1.149837640957259, - 0.8723269829356156, - 0.6194564643936127, - 0.40296813120395125, - 0.22994054223482108, - 0.10178078225158117, - 0.016061092461544364, - -0.03318789261975039, - -0.05291465046156945, - -0.0492675494471852, - -0.027357464195641876, - 0.009735252802622333, - 0.059788400113954206, - 0.12056498347225018, - 0.18922041121319746, - 0.26131181507811224, - 0.33129056710998483, - 0.3931965506419505, - 0.44189360096125746, - 0.4739354201094057, - 0.4887286048224151, - 0.48829980732338835, - 0.4764480023795738, - 0.4580472064028945, - 0.4372459707288364, - 0.4165877826324595, - 0.39654898770618247, - 0.37572014611412075, - 0.3517278191661559, - 0.3224117860495129, - 0.2868733587819138, - 0.24618962127625746, - 0.20317889002032216, - 0.1618246265995503, - 0.12605515514265558, - 0.09864647803332272, - 0.08033171879211053, - 0.06990680957193023, - 0.06460531050349502, - 0.06126222612010959, - 0.05760738202983388, - 0.0530537890027613, - 0.04899048640979245, - 0.0483044436327307, - 0.05416673172102736, - 0.06885529696560021, - 0.09251173334718059, - 0.12293784042282363, - 0.15638413189147604, - 0.18893361037763493, - 0.21877418048006791, - 0.24816447457552215, - 0.28459110151355954, - 0.34085844462188725, - 0.4332158835006777, - 0.5787740409339938, - 0.7922440677032266, - 1.0813087612930241, - 1.4464160965380066 - ], - "pressure:J72:branch61_seg2": [ - 8653.393625214729, - 9936.504671697901, - 11308.394956582253, - 12702.498935759846, - 14050.078305043324, - 15291.46710359886, - 16385.751414781353, - 17319.137439411566, - 18085.387352989917, - 18693.76821679484, - 19167.574364727927, - 19515.27226829066, - 19750.018292159137, - 19877.243392342723, - 19893.35016907154, - 19803.616808132294, - 19606.644106898806, - 19310.731014554258, - 18933.329153434654, - 18488.16292133454, - 17997.173743693853, - 17477.08883879576, - 16939.29003981805, - 16393.06713612793, - 15841.899864632062, - 15289.0072241432, - 14739.19861165131, - 14199.872758070951, - 13681.26524912809, - 13194.39932388541, - 12746.231074762076, - 12336.10046622679, - 11954.940238369953, - 11580.991477231708, - 11186.672574087805, - 10742.109543783203, - 10223.525874386705, - 9615.324843966126, - 8921.877101627822, - 8163.684916324696, - 7373.007986730097, - 6594.855913611693, - 5872.664255595453, - 5242.948448191297, - 4728.656203180559, - 4342.608084136442, - 4076.461855271007, - 3916.556039084127, - 3845.458865901189, - 3840.122118606459, - 3888.195473958332, - 3978.5529303155467, - 4104.450964991928, - 4263.024909533361, - 4445.697451259486, - 4643.075446004823, - 4841.118312803748, - 5022.318726362311, - 5170.60869623456, - 5275.141856554998, - 5330.415850824199, - 5338.90857057938, - 5312.818540480919, - 5263.748324534697, - 5205.24162896988, - 5147.294398632925, - 5092.619713391088, - 5038.66156898499, - 4978.900713668302, - 4905.865963295049, - 4815.3342322623585, - 4707.506951390459, - 4589.357406172826, - 4471.51839370503, - 4365.702995806381, - 4281.557723540562, - 4223.9639393981515, - 4190.688751346154, - 4174.704474399622, - 4167.310126290867, - 4159.538482549055, - 4147.769000176306, - 4134.267876590534, - 4126.145268114916, - 4133.247980403063, - 4163.536602508156, - 4220.3681110172465, - 4300.399177815903, - 4392.546662831735, - 4485.271042470562, - 4569.5564036324, - 4645.794117130255, - 4728.998551925467, - 4849.539156416129, - 5051.123797794794, - 5383.236973984209, - 5888.142551535132, - 6602.562742193212, - 7529.81702809906, - 8653.393625214729 - ], - "flow:branch64_seg0:J73": [ - 0.40493572894164, - 0.527777110896723, - 0.6678621156471715, - 0.8196688975173843, - 0.9764980369072678, - 1.1316929696380074, - 1.2794549823026156, - 1.4154830554250968, - 1.5369554419841644, - 1.6428919747126167, - 1.73325920587141, - 1.8085623116413394, - 1.8695969349300186, - 1.9166982655049638, - 1.9500275128457767, - 1.9695740659388838, - 1.9752627321812641, - 1.9675964063436198, - 1.9474264245384416, - 1.9161777175545784, - 1.8757167433741317, - 1.827896039480433, - 1.7744950497696976, - 1.7169247719135512, - 1.656205603249189, - 1.5931226893503565, - 1.528375655106216, - 1.4628042468550033, - 1.3974725842511524, - 1.3336122389419842, - 1.2723525231052304, - 1.2144372006089437, - 1.1598359500264546, - 1.1075381857547681, - 1.0556174220358723, - 1.0014624832250425, - 0.9423211652357285, - 0.8758817696184606, - 0.8009969705918835, - 0.7178712149287946, - 0.6283581096794998, - 0.5356270622834168, - 0.4436293183429311, - 0.3564433984791995, - 0.27764955432236166, - 0.20977881865381087, - 0.15400725082042574, - 0.11047113579839983, - 0.07823150000567694, - 0.05592998680466447, - 0.04217291439330043, - 0.03566898610356719, - 0.03553894342763076, - 0.04105425668649987, - 0.0514884319172082, - 0.06595300642962663, - 0.08314674246439915, - 0.10145530911050338, - 0.11909243381886658, - 0.13439971524994354, - 0.1460940038065727, - 0.15359829696406427, - 0.15701533681408367, - 0.15701191754662444, - 0.15464543470451428, - 0.15091825918907883, - 0.14654465071267098, - 0.1417758641111851, - 0.1363900317431704, - 0.12987994937727193, - 0.1217200707812147, - 0.11164592873399938, - 0.09985678887717858, - 0.08700512233412683, - 0.07409529913405996, - 0.06219788223089503, - 0.05216723885550441, - 0.04439105558888126, - 0.03876946709913426, - 0.03475453653157344, - 0.031622978354165415, - 0.02878689946762364, - 0.026020137731450045, - 0.023578130697302677, - 0.022124207986187618, - 0.022463184279861027, - 0.025249584547280775, - 0.03064878708840796, - 0.038250019885749435, - 0.047186035671666404, - 0.056452601372597194, - 0.06547225174773988, - 0.07462403544367055, - 0.08561857101064055, - 0.101623569956826, - 0.1268881180435416, - 0.16620155532042405, - 0.22399040730036054, - 0.3031690623785069, - 0.40493572894164 - ], - "pressure:branch64_seg0:J73": [ - 7330.775973795096, - 8304.463243798902, - 9393.847164404187, - 10554.639092186859, - 11735.246670810853, - 12886.368442306899, - 13967.418764626347, - 14951.956503305022, - 15821.762710889247, - 16573.109895414622, - 17210.094747319697, - 17735.169378630966, - 18154.991527926082, - 18471.605310796273, - 18684.168949323746, - 18794.157569474297, - 18800.327103394993, - 18707.411898925806, - 18524.81536518798, - 18263.008019865814, - 17937.288553535935, - 17561.63761651761, - 17148.217699494893, - 16706.999235406052, - 16244.52913577477, - 15766.179204535501, - 15277.375379803067, - 14784.896513514339, - 14297.289261534854, - 13824.100100044, - 13373.137592089899, - 12948.309283465878, - 12547.322025119218, - 12159.586199846848, - 11768.498823677806, - 11353.198266203823, - 10893.767948924795, - 10374.256718020919, - 9789.946066672403, - 9146.863532069467, - 8462.171999166212, - 7763.318109055197, - 7081.0969691891105, - 6445.602365270895, - 5880.946195473845, - 5403.865264413863, - 5019.054038247765, - 4724.495871356836, - 4511.934242861188, - 4369.456802439603, - 4287.488756995868, - 4257.0135076581255, - 4271.980936353514, - 4327.67205071238, - 4417.963407646664, - 4535.649493954841, - 4669.997500353717, - 4807.982633302855, - 4936.097665500692, - 5042.841084589088, - 5119.816006680569, - 5164.383367111986, - 5179.883594388304, - 5171.935282003195, - 5149.073823831123, - 5118.654193229242, - 5084.71301671047, - 5047.836166095324, - 5005.315751997919, - 4952.822074563754, - 4886.83390178594, - 4806.234711366163, - 4713.900455670105, - 4615.924406815976, - 4520.3809915171005, - 4435.115247897689, - 4365.706391737435, - 4313.597652153235, - 4276.676056167021, - 4250.088331320671, - 4228.135227023166, - 4207.158901342029, - 4186.705282600562, - 4169.930740931622, - 4162.674909977322, - 4170.92154786447, - 4198.760368383767, - 4246.095639115619, - 4307.928198461783, - 4377.141863898591, - 4446.464256137026, - 4513.271186947258, - 4583.566383972638, - 4673.993174867488, - 4811.972682047525, - 5031.995439755913, - 5369.313471000201, - 5856.165465770608, - 6509.147624644576, - 7330.775973795096 - ], - "flow:J73:branch64_seg1": [ - 0.40493572894164, - 0.527777110896723, - 0.6678621156471715, - 0.8196688975173843, - 0.9764980369072678, - 1.1316929696380074, - 1.2794549823026156, - 1.4154830554250968, - 1.5369554419841644, - 1.6428919747126167, - 1.73325920587141, - 1.8085623116413394, - 1.8695969349300186, - 1.9166982655049638, - 1.9500275128457767, - 1.9695740659388838, - 1.9752627321812641, - 1.9675964063436198, - 1.9474264245384416, - 1.9161777175545784, - 1.8757167433741317, - 1.827896039480433, - 1.7744950497696976, - 1.7169247719135512, - 1.656205603249189, - 1.5931226893503565, - 1.528375655106216, - 1.4628042468550033, - 1.3974725842511524, - 1.3336122389419842, - 1.2723525231052304, - 1.2144372006089437, - 1.1598359500264546, - 1.1075381857547681, - 1.0556174220358723, - 1.0014624832250425, - 0.9423211652357285, - 0.8758817696184606, - 0.8009969705918835, - 0.7178712149287946, - 0.6283581096794998, - 0.5356270622834168, - 0.4436293183429311, - 0.3564433984791995, - 0.27764955432236166, - 0.20977881865381087, - 0.15400725082042574, - 0.11047113579839983, - 0.07823150000567694, - 0.05592998680466447, - 0.04217291439330043, - 0.03566898610356719, - 0.03553894342763076, - 0.04105425668649987, - 0.0514884319172082, - 0.06595300642962663, - 0.08314674246439915, - 0.10145530911050338, - 0.11909243381886658, - 0.13439971524994354, - 0.1460940038065727, - 0.15359829696406427, - 0.15701533681408367, - 0.15701191754662444, - 0.15464543470451428, - 0.15091825918907883, - 0.14654465071267098, - 0.1417758641111851, - 0.1363900317431704, - 0.12987994937727193, - 0.1217200707812147, - 0.11164592873399938, - 0.09985678887717858, - 0.08700512233412683, - 0.07409529913405996, - 0.06219788223089503, - 0.05216723885550441, - 0.04439105558888126, - 0.03876946709913426, - 0.03475453653157344, - 0.031622978354165415, - 0.02878689946762364, - 0.026020137731450045, - 0.023578130697302677, - 0.022124207986187618, - 0.022463184279861027, - 0.025249584547280775, - 0.03064878708840796, - 0.038250019885749435, - 0.047186035671666404, - 0.056452601372597194, - 0.06547225174773988, - 0.07462403544367055, - 0.08561857101064055, - 0.101623569956826, - 0.1268881180435416, - 0.16620155532042405, - 0.22399040730036054, - 0.3031690623785069, - 0.40493572894164 - ], - "pressure:J73:branch64_seg1": [ - 7330.775973795096, - 8304.463243798902, - 9393.847164404187, - 10554.639092186859, - 11735.246670810853, - 12886.368442306899, - 13967.418764626347, - 14951.956503305022, - 15821.762710889247, - 16573.109895414622, - 17210.094747319697, - 17735.169378630966, - 18154.991527926082, - 18471.605310796273, - 18684.168949323746, - 18794.157569474297, - 18800.327103394993, - 18707.411898925806, - 18524.81536518798, - 18263.008019865814, - 17937.288553535935, - 17561.63761651761, - 17148.217699494893, - 16706.999235406052, - 16244.52913577477, - 15766.179204535501, - 15277.375379803067, - 14784.896513514339, - 14297.289261534854, - 13824.100100044, - 13373.137592089899, - 12948.309283465878, - 12547.322025119218, - 12159.586199846848, - 11768.498823677806, - 11353.198266203823, - 10893.767948924795, - 10374.256718020919, - 9789.946066672403, - 9146.863532069467, - 8462.171999166212, - 7763.318109055197, - 7081.0969691891105, - 6445.602365270895, - 5880.946195473845, - 5403.865264413863, - 5019.054038247765, - 4724.495871356836, - 4511.934242861188, - 4369.456802439603, - 4287.488756995868, - 4257.0135076581255, - 4271.980936353514, - 4327.67205071238, - 4417.963407646664, - 4535.649493954841, - 4669.997500353717, - 4807.982633302855, - 4936.097665500692, - 5042.841084589088, - 5119.816006680569, - 5164.383367111986, - 5179.883594388304, - 5171.935282003195, - 5149.073823831123, - 5118.654193229242, - 5084.71301671047, - 5047.836166095324, - 5005.315751997919, - 4952.822074563754, - 4886.83390178594, - 4806.234711366163, - 4713.900455670105, - 4615.924406815976, - 4520.3809915171005, - 4435.115247897689, - 4365.706391737435, - 4313.597652153235, - 4276.676056167021, - 4250.088331320671, - 4228.135227023166, - 4207.158901342029, - 4186.705282600562, - 4169.930740931622, - 4162.674909977322, - 4170.92154786447, - 4198.760368383767, - 4246.095639115619, - 4307.928198461783, - 4377.141863898591, - 4446.464256137026, - 4513.271186947258, - 4583.566383972638, - 4673.993174867488, - 4811.972682047525, - 5031.995439755913, - 5369.313471000201, - 5856.165465770608, - 6509.147624644576, - 7330.775973795096 - ], - "flow:branch64_seg1:J74": [ - 0.40236184791485213, - 0.5248164838258856, - 0.6646204435110833, - 0.8163048068815396, - 0.9731511194744346, - 1.1284894918843886, - 1.276495247510506, - 1.412837303874349, - 1.53464346530013, - 1.6409169175380138, - 1.731606981536714, - 1.8072165382292862, - 1.8685515532452146, - 1.9159446663155166, - 1.9495721902827645, - 1.9694105016657062, - 1.9753888089072225, - 1.9680035833905534, - 1.9480676721611128, - 1.9170221704043462, - 1.8767275884250978, - 1.8290267637435778, - 1.7757188487510918, - 1.7182174614052925, - 1.6575495324908813, - 1.5945057565762841, - 1.5297794778731582, - 1.4642066052638754, - 1.3988474318258903, - 1.3349342145593452, - 1.273601316682441, - 1.2156118241713065, - 1.160955190194789, - 1.1086388683163562, - 1.0567568825960911, - 1.0027032085637162, - 0.9437120553120868, - 0.8774572191337576, - 0.8027582107362371, - 0.7197775160715026, - 0.6303472611724567, - 0.5376144400967567, - 0.44552324551345757, - 0.358157531569937, - 0.27914209816857144, - 0.2110106473165338, - 0.15496557092245178, - 0.11119112800260801, - 0.0787303507560648, - 0.05624287697983629, - 0.042332501798286536, - 0.03568494572347567, - 0.03543472942903233, - 0.04084431918038226, - 0.05118553995853358, - 0.06558733445538578, - 0.08275156462307498, - 0.10106840450048976, - 0.11875228267205953, - 0.13413555965156332, - 0.14592077432866188, - 0.1535166220511641, - 0.15700894211722102, - 0.15705966835014445, - 0.154725181992415, - 0.15101164208496493, - 0.14664478635203967, - 0.14188727687527283, - 0.13652364892138125, - 0.13004908787355893, - 0.12192961734003407, - 0.11189440426591124, - 0.10013302395577028, - 0.08728538532639168, - 0.07435611159705398, - 0.062420244471053155, - 0.05234123915220678, - 0.0445148940088152, - 0.038857049907808854, - 0.03482207464926554, - 0.031682643470161656, - 0.028846611877326227, - 0.026075715203237766, - 0.023615671797039828, - 0.022125328767868886, - 0.022412249797938162, - 0.025140937751056525, - 0.030488766190077055, - 0.03805864016497757, - 0.04698576107727624, - 0.05625921073743602, - 0.06528190459502865, - 0.07440494494194545, - 0.08530715675577376, - 0.1011308343199964, - 0.12609913875631587, - 0.16503777529849742, - 0.22237708387671734, - 0.30104323981678455, - 0.40236184791485213 - ], - "pressure:branch64_seg1:J74": [ - 7025.674697091326, - 7937.610843984938, - 8973.64406309609, - 10092.872684293625, - 11245.669467953898, - 12383.215001469209, - 13463.445437183891, - 14455.951218872924, - 15340.388109753385, - 16110.304201530695, - 16766.36476527494, - 17311.95286106015, - 17753.137204031827, - 18092.25682407822, - 18330.109106486376, - 18466.902624620874, - 18501.953085333338, - 18439.13490768931, - 18285.172278722872, - 18050.573008715666, - 17749.30707315647, - 17394.94006342064, - 17000.381251393384, - 16575.865211106575, - 16128.667351576534, - 15664.465936460756, - 15188.401910004659, - 14706.730066414953, - 14227.372410602708, - 13759.44907090863, - 13311.129713005084, - 12887.605380132198, - 12488.29371115863, - 12105.183534245049, - 11723.752370839598, - 11324.559368779643, - 10887.480839843505, - 10395.7734107685, - 9841.712899049977, - 9227.590667777635, - 8567.643167613169, - 7885.863910996805, - 7211.495495586115, - 6574.407793061551, - 6000.526342500037, - 5507.934541423972, - 5104.473386253983, - 4790.7275383923525, - 4559.412234674793, - 4400.260824050678, - 4303.226418905841, - 4258.842916001047, - 4260.863063276405, - 4304.054146544101, - 4382.9142816461945, - 4490.898360565592, - 4618.242312328098, - 4752.904821521245, - 4881.746248387514, - 4992.749585384138, - 5076.68928631407, - 5129.633160975077, - 5152.832009340697, - 5151.295049691886, - 5132.92209553387, - 5105.060275722404, - 5072.7173692762435, - 5037.506065385509, - 4997.5934692372275, - 4949.147013281647, - 4888.353839740443, - 4813.434662333688, - 4726.114644806762, - 4631.38838341742, - 4536.7591283381835, - 4450.073248215466, - 4377.467851474911, - 4321.4989619652115, - 4281.21177670158, - 4252.423199231221, - 4229.733394205024, - 4208.973809312931, - 4188.698713778844, - 4171.01334942987, - 4160.962838988544, - 4164.461998524579, - 4186.187820414776, - 4227.1174760465365, - 4283.870607476437, - 4349.951703448946, - 4418.0055013013325, - 4484.068598524448, - 4551.489713010497, - 4633.524819886824, - 4754.133947166577, - 4944.974796507177, - 5241.28357643266, - 5675.3656314044, - 6267.474915437141, - 7025.674697091326 - ], - "flow:J74:branch64_seg2": [ - 0.40236184791485213, - 0.5248164838258856, - 0.6646204435110833, - 0.8163048068815396, - 0.9731511194744346, - 1.1284894918843886, - 1.276495247510506, - 1.412837303874349, - 1.53464346530013, - 1.6409169175380138, - 1.731606981536714, - 1.8072165382292862, - 1.8685515532452146, - 1.9159446663155166, - 1.9495721902827645, - 1.9694105016657062, - 1.9753888089072225, - 1.9680035833905534, - 1.9480676721611128, - 1.9170221704043462, - 1.8767275884250978, - 1.8290267637435778, - 1.7757188487510918, - 1.7182174614052925, - 1.6575495324908813, - 1.5945057565762841, - 1.5297794778731582, - 1.4642066052638754, - 1.3988474318258903, - 1.3349342145593452, - 1.273601316682441, - 1.2156118241713065, - 1.160955190194789, - 1.1086388683163562, - 1.0567568825960911, - 1.0027032085637162, - 0.9437120553120868, - 0.8774572191337576, - 0.8027582107362371, - 0.7197775160715026, - 0.6303472611724567, - 0.5376144400967567, - 0.44552324551345757, - 0.358157531569937, - 0.27914209816857144, - 0.2110106473165338, - 0.15496557092245178, - 0.11119112800260801, - 0.0787303507560648, - 0.05624287697983629, - 0.042332501798286536, - 0.03568494572347567, - 0.03543472942903233, - 0.04084431918038226, - 0.05118553995853358, - 0.06558733445538578, - 0.08275156462307498, - 0.10106840450048976, - 0.11875228267205953, - 0.13413555965156332, - 0.14592077432866188, - 0.1535166220511641, - 0.15700894211722102, - 0.15705966835014445, - 0.154725181992415, - 0.15101164208496493, - 0.14664478635203967, - 0.14188727687527283, - 0.13652364892138125, - 0.13004908787355893, - 0.12192961734003407, - 0.11189440426591124, - 0.10013302395577028, - 0.08728538532639168, - 0.07435611159705398, - 0.062420244471053155, - 0.05234123915220678, - 0.0445148940088152, - 0.038857049907808854, - 0.03482207464926554, - 0.031682643470161656, - 0.028846611877326227, - 0.026075715203237766, - 0.023615671797039828, - 0.022125328767868886, - 0.022412249797938162, - 0.025140937751056525, - 0.030488766190077055, - 0.03805864016497757, - 0.04698576107727624, - 0.05625921073743602, - 0.06528190459502865, - 0.07440494494194545, - 0.08530715675577376, - 0.1011308343199964, - 0.12609913875631587, - 0.16503777529849742, - 0.22237708387671734, - 0.30104323981678455, - 0.40236184791485213 - ], - "pressure:J74:branch64_seg2": [ - 7025.674697091326, - 7937.610843984938, - 8973.64406309609, - 10092.872684293625, - 11245.669467953898, - 12383.215001469209, - 13463.445437183891, - 14455.951218872924, - 15340.388109753385, - 16110.304201530695, - 16766.36476527494, - 17311.95286106015, - 17753.137204031827, - 18092.25682407822, - 18330.109106486376, - 18466.902624620874, - 18501.953085333338, - 18439.13490768931, - 18285.172278722872, - 18050.573008715666, - 17749.30707315647, - 17394.94006342064, - 17000.381251393384, - 16575.865211106575, - 16128.667351576534, - 15664.465936460756, - 15188.401910004659, - 14706.730066414953, - 14227.372410602708, - 13759.44907090863, - 13311.129713005084, - 12887.605380132198, - 12488.29371115863, - 12105.183534245049, - 11723.752370839598, - 11324.559368779643, - 10887.480839843505, - 10395.7734107685, - 9841.712899049977, - 9227.590667777635, - 8567.643167613169, - 7885.863910996805, - 7211.495495586115, - 6574.407793061551, - 6000.526342500037, - 5507.934541423972, - 5104.473386253983, - 4790.7275383923525, - 4559.412234674793, - 4400.260824050678, - 4303.226418905841, - 4258.842916001047, - 4260.863063276405, - 4304.054146544101, - 4382.9142816461945, - 4490.898360565592, - 4618.242312328098, - 4752.904821521245, - 4881.746248387514, - 4992.749585384138, - 5076.68928631407, - 5129.633160975077, - 5152.832009340697, - 5151.295049691886, - 5132.92209553387, - 5105.060275722404, - 5072.7173692762435, - 5037.506065385509, - 4997.5934692372275, - 4949.147013281647, - 4888.353839740443, - 4813.434662333688, - 4726.114644806762, - 4631.38838341742, - 4536.7591283381835, - 4450.073248215466, - 4377.467851474911, - 4321.4989619652115, - 4281.21177670158, - 4252.423199231221, - 4229.733394205024, - 4208.973809312931, - 4188.698713778844, - 4171.01334942987, - 4160.962838988544, - 4164.461998524579, - 4186.187820414776, - 4227.1174760465365, - 4283.870607476437, - 4349.951703448946, - 4418.0055013013325, - 4484.068598524448, - 4551.489713010497, - 4633.524819886824, - 4754.133947166577, - 4944.974796507177, - 5241.28357643266, - 5675.3656314044, - 6267.474915437141, - 7025.674697091326 - ], - "flow:branch75_seg0:J75": [ - 0.953859774866407, - 1.2099446839745664, - 1.4787020589524256, - 1.7465072595087339, - 1.999373865296754, - 2.2268053247335664, - 2.422578912744442, - 2.585422465929177, - 2.715710076107613, - 2.817543479057026, - 2.8952449361621704, - 2.950858652749844, - 2.987065393541882, - 3.0036626133958166, - 2.9999829748522693, - 2.9763426718061656, - 2.932204476375362, - 2.8700998666576787, - 2.7930570240680046, - 2.704395809611924, - 2.608677354446487, - 2.5087292743742093, - 2.406756251694158, - 2.3039798517033563, - 2.200605637439643, - 2.0970517105805886, - 1.9941161410984654, - 1.8933844724683624, - 1.7970714263229732, - 1.7074533218058712, - 1.6257749949778575, - 1.5516813671667513, - 1.4826861579121509, - 1.4138828014888787, - 1.3393581604538194, - 1.2529426649456166, - 1.1500714849921507, - 1.0284740289191117, - 0.8902611994610855, - 0.7403398986382711, - 0.5865410918885758, - 0.43832299424598575, - 0.304286894242856, - 0.19114257531601886, - 0.10265115146254457, - 0.039806128133181906, - -0.0003751048342257617, - -0.021167184913577462, - -0.027162710364891186, - -0.022596750833538418, - -0.009595152872702042, - 0.009937184429074139, - 0.03553804737847288, - 0.06679048399260465, - 0.1022667295372925, - 0.14014175548313065, - 0.17727321773935978, - 0.21014765385232845, - 0.23562435680220958, - 0.2517397692188681, - 0.25781828509265864, - 0.25517675033222265, - 0.24651184066365944, - 0.2345145490868172, - 0.22213170884045666, - 0.2109367806409749, - 0.2010714359423477, - 0.19153415896955553, - 0.18055816876680755, - 0.16646281166120455, - 0.14843524451637477, - 0.12682451538366327, - 0.10343374418685294, - 0.08067823867627222, - 0.06112693425422197, - 0.04662277096110394, - 0.03779930901745552, - 0.03373857752477443, - 0.032681222310124526, - 0.032489381702497634, - 0.03138557195257265, - 0.028902887420296536, - 0.02584372555692062, - 0.024062838052222563, - 0.025829882352571616, - 0.032777706624779274, - 0.045385421620300674, - 0.06243036942571191, - 0.08134046644865973, - 0.09948490305764845, - 0.11497931015349654, - 0.1283505706797226, - 0.1433406896640613, - 0.1668835734798396, - 0.20851788712133384, - 0.27828705680521093, - 0.38474948135126114, - 0.5340687909142156, - 0.725183247160571, - 0.953859774866407 - ], - "pressure:branch75_seg0:J75": [ - 9373.141140996997, - 10778.004466105856, - 12238.262275090188, - 13679.595824728929, - 15030.546084520205, - 16236.669187104448, - 17267.154981861047, - 18119.41959829198, - 18799.25212934539, - 19326.193701562606, - 19727.48712738573, - 20011.090146602342, - 20189.40578638528, - 20262.847432452036, - 20224.641653878814, - 20079.320130615983, - 19823.912196967103, - 19471.98682692463, - 19044.234520626585, - 18556.187836030058, - 18032.802189996237, - 17489.72595324307, - 16936.45237287594, - 16379.615223113937, - 15819.825433872358, - 15259.274572443454, - 14703.269980629522, - 14160.890561651822, - 13644.42967012978, - 13165.834482388946, - 12731.022193673225, - 12335.606801374206, - 11964.82042035669, - 11590.331818723884, - 11179.19548222564, - 10698.668810279678, - 10126.522428816934, - 9452.442129740606, - 8691.017916439865, - 7872.987887728276, - 7040.907119968838, - 6247.12359282203, - 5537.437003344186, - 4945.9353056977, - 4488.3068325719805, - 4169.89425289339, - 3971.5799181878297, - 3872.9127312968985, - 3852.09293972109, - 3884.6947684796546, - 3961.0302776448098, - 4072.792938561577, - 4215.984581425721, - 4389.637438107519, - 4584.903305978162, - 4790.467157760482, - 4989.433275565569, - 5162.285574541952, - 5292.592442405411, - 5371.100345528447, - 5395.9120463780255, - 5374.629805345223, - 5323.799181231726, - 5257.5095967498155, - 5190.7535209390035, - 5131.543935331286, - 5079.103953696452, - 5027.021715964329, - 4965.5813532696675, - 4885.980829373597, - 4785.0764334237465, - 4665.5724613956345, - 4538.260760674075, - 4416.921271380893, - 4314.866183782817, - 4241.156349525653, - 4198.111842626453, - 4179.8338029141305, - 4175.572064712588, - 4174.43488306716, - 4167.35352256214, - 4152.801287158006, - 4136.415818510515, - 4128.869669568558, - 4142.365333804075, - 4184.937036516264, - 4257.65360302174, - 4353.005543731663, - 4455.757793392112, - 4552.143150240776, - 4633.5679619656985, - 4705.195721449423, - 4790.239303599726, - 4928.7961240187105, - 5174.049861456906, - 5581.122214185976, - 6191.170298979188, - 7037.146355653127, - 8108.762743942479, - 9373.141140996997 - ], - "flow:J75:branch75_seg1": [ - 0.953859774866407, - 1.2099446839745664, - 1.4787020589524256, - 1.7465072595087339, - 1.999373865296754, - 2.2268053247335664, - 2.422578912744442, - 2.585422465929177, - 2.715710076107613, - 2.817543479057026, - 2.8952449361621704, - 2.950858652749844, - 2.987065393541882, - 3.0036626133958166, - 2.9999829748522693, - 2.9763426718061656, - 2.932204476375362, - 2.8700998666576787, - 2.7930570240680046, - 2.704395809611924, - 2.608677354446487, - 2.5087292743742093, - 2.406756251694158, - 2.3039798517033563, - 2.200605637439643, - 2.0970517105805886, - 1.9941161410984654, - 1.8933844724683624, - 1.7970714263229732, - 1.7074533218058712, - 1.6257749949778575, - 1.5516813671667513, - 1.4826861579121509, - 1.4138828014888787, - 1.3393581604538194, - 1.2529426649456166, - 1.1500714849921507, - 1.0284740289191117, - 0.8902611994610855, - 0.7403398986382711, - 0.5865410918885758, - 0.43832299424598575, - 0.304286894242856, - 0.19114257531601886, - 0.10265115146254457, - 0.039806128133181906, - -0.0003751048342257617, - -0.021167184913577462, - -0.027162710364891186, - -0.022596750833538418, - -0.009595152872702042, - 0.009937184429074139, - 0.03553804737847288, - 0.06679048399260465, - 0.1022667295372925, - 0.14014175548313065, - 0.17727321773935978, - 0.21014765385232845, - 0.23562435680220958, - 0.2517397692188681, - 0.25781828509265864, - 0.25517675033222265, - 0.24651184066365944, - 0.2345145490868172, - 0.22213170884045666, - 0.2109367806409749, - 0.2010714359423477, - 0.19153415896955553, - 0.18055816876680755, - 0.16646281166120455, - 0.14843524451637477, - 0.12682451538366327, - 0.10343374418685294, - 0.08067823867627222, - 0.06112693425422197, - 0.04662277096110394, - 0.03779930901745552, - 0.03373857752477443, - 0.032681222310124526, - 0.032489381702497634, - 0.03138557195257265, - 0.028902887420296536, - 0.02584372555692062, - 0.024062838052222563, - 0.025829882352571616, - 0.032777706624779274, - 0.045385421620300674, - 0.06243036942571191, - 0.08134046644865973, - 0.09948490305764845, - 0.11497931015349654, - 0.1283505706797226, - 0.1433406896640613, - 0.1668835734798396, - 0.20851788712133384, - 0.27828705680521093, - 0.38474948135126114, - 0.5340687909142156, - 0.725183247160571, - 0.953859774866407 - ], - "pressure:J75:branch75_seg1": [ - 9373.141140996997, - 10778.004466105856, - 12238.262275090188, - 13679.595824728929, - 15030.546084520205, - 16236.669187104448, - 17267.154981861047, - 18119.41959829198, - 18799.25212934539, - 19326.193701562606, - 19727.48712738573, - 20011.090146602342, - 20189.40578638528, - 20262.847432452036, - 20224.641653878814, - 20079.320130615983, - 19823.912196967103, - 19471.98682692463, - 19044.234520626585, - 18556.187836030058, - 18032.802189996237, - 17489.72595324307, - 16936.45237287594, - 16379.615223113937, - 15819.825433872358, - 15259.274572443454, - 14703.269980629522, - 14160.890561651822, - 13644.42967012978, - 13165.834482388946, - 12731.022193673225, - 12335.606801374206, - 11964.82042035669, - 11590.331818723884, - 11179.19548222564, - 10698.668810279678, - 10126.522428816934, - 9452.442129740606, - 8691.017916439865, - 7872.987887728276, - 7040.907119968838, - 6247.12359282203, - 5537.437003344186, - 4945.9353056977, - 4488.3068325719805, - 4169.89425289339, - 3971.5799181878297, - 3872.9127312968985, - 3852.09293972109, - 3884.6947684796546, - 3961.0302776448098, - 4072.792938561577, - 4215.984581425721, - 4389.637438107519, - 4584.903305978162, - 4790.467157760482, - 4989.433275565569, - 5162.285574541952, - 5292.592442405411, - 5371.100345528447, - 5395.9120463780255, - 5374.629805345223, - 5323.799181231726, - 5257.5095967498155, - 5190.7535209390035, - 5131.543935331286, - 5079.103953696452, - 5027.021715964329, - 4965.5813532696675, - 4885.980829373597, - 4785.0764334237465, - 4665.5724613956345, - 4538.260760674075, - 4416.921271380893, - 4314.866183782817, - 4241.156349525653, - 4198.111842626453, - 4179.8338029141305, - 4175.572064712588, - 4174.43488306716, - 4167.35352256214, - 4152.801287158006, - 4136.415818510515, - 4128.869669568558, - 4142.365333804075, - 4184.937036516264, - 4257.65360302174, - 4353.005543731663, - 4455.757793392112, - 4552.143150240776, - 4633.5679619656985, - 4705.195721449423, - 4790.239303599726, - 4928.7961240187105, - 5174.049861456906, - 5581.122214185976, - 6191.170298979188, - 7037.146355653127, - 8108.762743942479, - 9373.141140996997 - ], - "flow:branch75_seg1:J76": [ - 0.9528206003649448, - 1.2088301712912146, - 1.47756616392622, - 1.7454230289240917, - 1.9983847224745175, - 2.225940024106799, - 2.421851531184051, - 2.5848434128493967, - 2.7152438314398295, - 2.817188253911161, - 2.894985262967128, - 2.950676450999205, - 2.9869704363602456, - 3.00364617462449, - 3.0000518757306773, - 2.976497936545393, - 2.932436254434471, - 2.870404262616692, - 2.7934122233692924, - 2.7047865218064127, - 2.6090917378726703, - 2.5091530756231384, - 2.4071847948839955, - 2.3044113091438407, - 2.2010381050264, - 2.0974838225154238, - 1.9945416514393235, - 1.8937945445208624, - 1.7974560255551126, - 1.7078062341976485, - 1.6260926460140344, - 1.5519736712587149, - 1.4829704952153784, - 1.4141811557656991, - 1.3396981583361094, - 1.2533474747883993, - 1.150553064350666, - 1.0290281826462397, - 0.890877173924524, - 0.7409819677777516, - 0.5871736867231224, - 0.4389101989964664, - 0.3047945411656611, - 0.1915468841061103, - 0.10295319285312536, - 0.040005107784148786, - -0.00026626898740233834, - -0.0211229468210656, - -0.027169834270185957, - -0.02264177357556319, - -0.009667104134434544, - 0.009835866608617344, - 0.03541464879828344, - 0.06664769476573502, - 0.10210823627996969, - 0.13998352609172982, - 0.17712764280319945, - 0.21002884464588822, - 0.23554273421059913, - 0.25170233373808554, - 0.25781726234665725, - 0.25520624193465513, - 0.2465597949988252, - 0.23456628436253765, - 0.22218079323068424, - 0.21097975721633358, - 0.20111040021774299, - 0.1915765167137945, - 0.18061152889124707, - 0.16653269339883237, - 0.14852077601914457, - 0.12692110491502978, - 0.10353218453931072, - 0.08076614616481828, - 0.061195145107122005, - 0.04666733072355936, - 0.03782208036888068, - 0.03374436343112906, - 0.03268175360212197, - 0.032492310293178506, - 0.031393989325339454, - 0.0289159273550154, - 0.025854675585911476, - 0.024061844062723898, - 0.02580912221084337, - 0.032731965577766954, - 0.0453197159860919, - 0.06235220726598799, - 0.08126157228283042, - 0.09941615360856726, - 0.1149221455365857, - 0.12829427909927274, - 0.143260583254128, - 0.16674383468441978, - 0.20827552371038194, - 0.2778966923551227, - 0.3841937401603616, - 0.5333296795159524, - 0.7242660475158408, - 0.9528206003649448 - ], - "pressure:branch75_seg1:J76": [ - 9161.783480285316, - 10539.40129963336, - 11981.960078117521, - 13416.342451035827, - 14768.45486195244, - 15982.526457263062, - 17025.82810249849, - 17892.588299127, - 18585.528373838748, - 19126.14590875376, - 19538.510027954533, - 19832.79933577736, - 20023.001679663346, - 20108.315889006397, - 20084.454456408122, - 19953.78457948323, - 19713.3569452125, - 19376.74352667192, - 18961.16368721677, - 18483.8481191005, - 17969.338379155248, - 17432.87280644171, - 16885.714292160897, - 16334.432939881315, - 15780.006435495165, - 15224.66156855977, - 14672.900072818897, - 14133.33555673358, - 13617.915204192484, - 13138.771680257647, - 12702.390279561943, - 12306.31955265095, - 11936.93733375252, - 11567.51293917841, - 11166.129532650195, - 10699.841144393273, - 10144.729434636089, - 9489.02921894698, - 8744.81541541064, - 7939.318517225841, - 7114.577530141373, - 6321.59863163734, - 5606.330604158097, - 5004.252628187622, - 4534.49614270377, - 4202.371048319048, - 3991.212096410163, - 3882.8397934442974, - 3853.326630823066, - 3879.5884178825836, - 3950.6633606580076, - 4056.770093025267, - 4195.103696622829, - 4363.726666955043, - 4554.709026225219, - 4757.965468887078, - 4956.655236890557, - 5131.820943812214, - 5266.7425223815735, - 5351.214809633796, - 5381.980187902684, - 5366.227564516377, - 5318.872729921154, - 5254.216247653849, - 5187.86332656617, - 5128.141388688246, - 5075.453836253395, - 5024.2092644237255, - 4964.895798527354, - 4888.563657825144, - 4791.134676837797, - 4674.665245793125, - 4549.058824279307, - 4427.428674667237, - 4323.419653411679, - 4246.713270671824, - 4200.459666009003, - 4179.519724030108, - 4174.186501083763, - 4173.144546454209, - 4166.976726291872, - 4153.408259276079, - 4137.035456688029, - 4127.94703784893, - 4138.304149546595, - 4176.676276705682, - 4245.303827646152, - 4337.420419805287, - 4438.927002057071, - 4535.828072355066, - 4618.3715271800975, - 4689.898194513742, - 4771.142959040347, - 4899.874396779675, - 5127.59787084707, - 5508.351080191891, - 6086.8830859244035, - 6896.14149528541, - 7929.420652673453, - 9161.783480285316 - ], - "flow:J76:branch75_seg2": [ - 0.9528206003649448, - 1.2088301712912146, - 1.47756616392622, - 1.7454230289240917, - 1.9983847224745175, - 2.225940024106799, - 2.421851531184051, - 2.5848434128493967, - 2.7152438314398295, - 2.817188253911161, - 2.894985262967128, - 2.950676450999205, - 2.9869704363602456, - 3.00364617462449, - 3.0000518757306773, - 2.976497936545393, - 2.932436254434471, - 2.870404262616692, - 2.7934122233692924, - 2.7047865218064127, - 2.6090917378726703, - 2.5091530756231384, - 2.4071847948839955, - 2.3044113091438407, - 2.2010381050264, - 2.0974838225154238, - 1.9945416514393235, - 1.8937945445208624, - 1.7974560255551126, - 1.7078062341976485, - 1.6260926460140344, - 1.5519736712587149, - 1.4829704952153784, - 1.4141811557656991, - 1.3396981583361094, - 1.2533474747883993, - 1.150553064350666, - 1.0290281826462397, - 0.890877173924524, - 0.7409819677777516, - 0.5871736867231224, - 0.4389101989964664, - 0.3047945411656611, - 0.1915468841061103, - 0.10295319285312536, - 0.040005107784148786, - -0.00026626898740233834, - -0.0211229468210656, - -0.027169834270185957, - -0.02264177357556319, - -0.009667104134434544, - 0.009835866608617344, - 0.03541464879828344, - 0.06664769476573502, - 0.10210823627996969, - 0.13998352609172982, - 0.17712764280319945, - 0.21002884464588822, - 0.23554273421059913, - 0.25170233373808554, - 0.25781726234665725, - 0.25520624193465513, - 0.2465597949988252, - 0.23456628436253765, - 0.22218079323068424, - 0.21097975721633358, - 0.20111040021774299, - 0.1915765167137945, - 0.18061152889124707, - 0.16653269339883237, - 0.14852077601914457, - 0.12692110491502978, - 0.10353218453931072, - 0.08076614616481828, - 0.061195145107122005, - 0.04666733072355936, - 0.03782208036888068, - 0.03374436343112906, - 0.03268175360212197, - 0.032492310293178506, - 0.031393989325339454, - 0.0289159273550154, - 0.025854675585911476, - 0.024061844062723898, - 0.02580912221084337, - 0.032731965577766954, - 0.0453197159860919, - 0.06235220726598799, - 0.08126157228283042, - 0.09941615360856726, - 0.1149221455365857, - 0.12829427909927274, - 0.143260583254128, - 0.16674383468441978, - 0.20827552371038194, - 0.2778966923551227, - 0.3841937401603616, - 0.5333296795159524, - 0.7242660475158408, - 0.9528206003649448 - ], - "pressure:J76:branch75_seg2": [ - 9161.783480285316, - 10539.40129963336, - 11981.960078117521, - 13416.342451035827, - 14768.45486195244, - 15982.526457263062, - 17025.82810249849, - 17892.588299127, - 18585.528373838748, - 19126.14590875376, - 19538.510027954533, - 19832.79933577736, - 20023.001679663346, - 20108.315889006397, - 20084.454456408122, - 19953.78457948323, - 19713.3569452125, - 19376.74352667192, - 18961.16368721677, - 18483.8481191005, - 17969.338379155248, - 17432.87280644171, - 16885.714292160897, - 16334.432939881315, - 15780.006435495165, - 15224.66156855977, - 14672.900072818897, - 14133.33555673358, - 13617.915204192484, - 13138.771680257647, - 12702.390279561943, - 12306.31955265095, - 11936.93733375252, - 11567.51293917841, - 11166.129532650195, - 10699.841144393273, - 10144.729434636089, - 9489.02921894698, - 8744.81541541064, - 7939.318517225841, - 7114.577530141373, - 6321.59863163734, - 5606.330604158097, - 5004.252628187622, - 4534.49614270377, - 4202.371048319048, - 3991.212096410163, - 3882.8397934442974, - 3853.326630823066, - 3879.5884178825836, - 3950.6633606580076, - 4056.770093025267, - 4195.103696622829, - 4363.726666955043, - 4554.709026225219, - 4757.965468887078, - 4956.655236890557, - 5131.820943812214, - 5266.7425223815735, - 5351.214809633796, - 5381.980187902684, - 5366.227564516377, - 5318.872729921154, - 5254.216247653849, - 5187.86332656617, - 5128.141388688246, - 5075.453836253395, - 5024.2092644237255, - 4964.895798527354, - 4888.563657825144, - 4791.134676837797, - 4674.665245793125, - 4549.058824279307, - 4427.428674667237, - 4323.419653411679, - 4246.713270671824, - 4200.459666009003, - 4179.519724030108, - 4174.186501083763, - 4173.144546454209, - 4166.976726291872, - 4153.408259276079, - 4137.035456688029, - 4127.94703784893, - 4138.304149546595, - 4176.676276705682, - 4245.303827646152, - 4337.420419805287, - 4438.927002057071, - 4535.828072355066, - 4618.3715271800975, - 4689.898194513742, - 4771.142959040347, - 4899.874396779675, - 5127.59787084707, - 5508.351080191891, - 6086.8830859244035, - 6896.14149528541, - 7929.420652673453, - 9161.783480285316 - ], - "flow:branch77_seg0:J77": [ - 0.968255387781929, - 1.2492670589034616, - 1.5559158102133699, - 1.872662220785561, - 2.182773104049671, - 2.4719062116977986, - 2.729659136232165, - 2.950575143025554, - 3.1327373583754397, - 3.2786589691263566, - 3.3920363155519384, - 3.47637688685958, - 3.535156220995886, - 3.5695394296835663, - 3.579972320982529, - 3.5665542362258975, - 3.529083218245562, - 3.469331958609167, - 3.3897370746333393, - 3.293968119965399, - 3.186606095408047, - 3.071468609118652, - 2.9518850607776623, - 2.8299881949946792, - 2.7068447379440603, - 2.58317740599283, - 2.459756634028595, - 2.3379921362732357, - 2.219998722243908, - 2.1082601846762543, - 2.004727563772271, - 1.9101086168569172, - 1.8229540059007496, - 1.739319192307355, - 1.653407092289914, - 1.5583656603582439, - 1.4479352267936971, - 1.317816722366966, - 1.1674811075837517, - 0.9998762891266545, - 0.8218798302011272, - 0.6429101859563744, - 0.47310587721203906, - 0.3216582288220019, - 0.1954307654087592, - 0.09792961417238787, - 0.02881454034974431, - -0.01423813574737398, - -0.03579914716092513, - -0.040565155441307316, - -0.032282057851121475, - -0.013998780151453241, - 0.012802762375362044, - 0.04701077828966464, - 0.08728014133135571, - 0.13179492407305637, - 0.17751629130553323, - 0.220746828313595, - 0.25766655699659996, - 0.2851962017156451, - 0.3015058712064855, - 0.30680101857540054, - 0.3029151954621111, - 0.2926547950435569, - 0.27936406078420273, - 0.26556453867454854, - 0.2525540305397005, - 0.24021725443915434, - 0.227250514851264, - 0.2119037085679368, - 0.1927838441432653, - 0.16952431494127665, - 0.1431804764875924, - 0.1158736785739492, - 0.09037390990734608, - 0.06919697714249368, - 0.053900461312690766, - 0.0445451910551075, - 0.03997335859819244, - 0.03809443920517751, - 0.03676123368913448, - 0.03466897648968358, - 0.03175412639605286, - 0.029284773565566767, - 0.02941372035869001, - 0.03425741514360327, - 0.04513111735923636, - 0.06173938769396191, - 0.08223488470119916, - 0.10389995403138874, - 0.12415262434737163, - 0.14216644509976992, - 0.1600847769020903, - 0.18359976801162028, - 0.22180937688198823, - 0.28561105756172, - 0.38602771088680143, - 0.5318527173127617, - 0.726329075940283, - 0.968255387781929 - ], - "pressure:branch77_seg0:J77": [ - 8566.280607539375, - 9851.550357902184, - 11235.68061652669, - 12648.603052767206, - 14017.298346101463, - 15280.173849542829, - 16394.70169940476, - 17342.501910894178, - 18118.046433993495, - 18734.016323377746, - 19210.299411003863, - 19559.921298470417, - 19797.67718071536, - 19928.247807061183, - 19951.109841466136, - 19868.57842960517, - 19679.154048255667, - 19391.61326895476, - 19019.98610620545, - 18579.552020319727, - 18091.65175836614, - 17573.06344833278, - 17036.876827342883, - 16492.114125925582, - 15942.554887601615, - 15391.17713557642, - 14841.977425630803, - 14301.84526245366, - 13780.766484695974, - 13289.908454099275, - 12837.153315884067, - 12423.668503148243, - 12041.140248414134, - 11669.440137749374, - 11281.200704926585, - 10845.622179561256, - 10336.513216776177, - 9736.663836379093, - 9047.754825986896, - 8287.217305918562, - 7487.833574683376, - 6694.01625924832, - 5950.8601212475205, - 5297.645308787273, - 4761.074780263582, - 4354.967932149375, - 4073.7773432186136, - 3904.5599550021416, - 3827.465083430691, - 3820.2395281006457, - 3868.01826579685, - 3958.542711162362, - 4085.360047731082, - 4244.549922618558, - 4429.158492865426, - 4630.257841557103, - 4833.6387888516865, - 5022.08875346988, - 5178.821799259813, - 5291.404192371701, - 5353.156434989621, - 5366.435804552973, - 5341.670831089717, - 5291.42776881835, - 5230.4730911105535, - 5169.410996014943, - 5112.391147114367, - 5057.573841871639, - 4998.385794472928, - 4926.885454585239, - 4837.744523231825, - 4730.332523873942, - 4610.752975428478, - 4489.453736890941, - 4378.835431081983, - 4289.506735683201, - 4227.306164488746, - 4191.061367438242, - 4174.297403660979, - 4167.526435803361, - 4161.339990228647, - 4150.977236428435, - 4137.59229969698, - 4127.929708677637, - 4132.0894598905425, - 4159.020995983492, - 4213.373124635209, - 4292.43974057579, - 4386.24111218912, - 4482.518756146329, - 4570.671672374042, - 4649.219204435656, - 4731.014939228889, - 4844.890546137541, - 5034.166895881425, - 5348.962167778326, - 5835.608858006796, - 6531.948967965036, - 7446.51854524428, - 8566.280607539375 - ], - "flow:J77:branch77_seg1": [ - 0.968255387781929, - 1.2492670589034616, - 1.5559158102133699, - 1.872662220785561, - 2.182773104049671, - 2.4719062116977986, - 2.729659136232165, - 2.950575143025554, - 3.1327373583754397, - 3.2786589691263566, - 3.3920363155519384, - 3.47637688685958, - 3.535156220995886, - 3.5695394296835663, - 3.579972320982529, - 3.5665542362258975, - 3.529083218245562, - 3.469331958609167, - 3.3897370746333393, - 3.293968119965399, - 3.186606095408047, - 3.071468609118652, - 2.9518850607776623, - 2.8299881949946792, - 2.7068447379440603, - 2.58317740599283, - 2.459756634028595, - 2.3379921362732357, - 2.219998722243908, - 2.1082601846762543, - 2.004727563772271, - 1.9101086168569172, - 1.8229540059007496, - 1.739319192307355, - 1.653407092289914, - 1.5583656603582439, - 1.4479352267936971, - 1.317816722366966, - 1.1674811075837517, - 0.9998762891266545, - 0.8218798302011272, - 0.6429101859563744, - 0.47310587721203906, - 0.3216582288220019, - 0.1954307654087592, - 0.09792961417238787, - 0.02881454034974431, - -0.01423813574737398, - -0.03579914716092513, - -0.040565155441307316, - -0.032282057851121475, - -0.013998780151453241, - 0.012802762375362044, - 0.04701077828966464, - 0.08728014133135571, - 0.13179492407305637, - 0.17751629130553323, - 0.220746828313595, - 0.25766655699659996, - 0.2851962017156451, - 0.3015058712064855, - 0.30680101857540054, - 0.3029151954621111, - 0.2926547950435569, - 0.27936406078420273, - 0.26556453867454854, - 0.2525540305397005, - 0.24021725443915434, - 0.227250514851264, - 0.2119037085679368, - 0.1927838441432653, - 0.16952431494127665, - 0.1431804764875924, - 0.1158736785739492, - 0.09037390990734608, - 0.06919697714249368, - 0.053900461312690766, - 0.0445451910551075, - 0.03997335859819244, - 0.03809443920517751, - 0.03676123368913448, - 0.03466897648968358, - 0.03175412639605286, - 0.029284773565566767, - 0.02941372035869001, - 0.03425741514360327, - 0.04513111735923636, - 0.06173938769396191, - 0.08223488470119916, - 0.10389995403138874, - 0.12415262434737163, - 0.14216644509976992, - 0.1600847769020903, - 0.18359976801162028, - 0.22180937688198823, - 0.28561105756172, - 0.38602771088680143, - 0.5318527173127617, - 0.726329075940283, - 0.968255387781929 - ], - "pressure:J77:branch77_seg1": [ - 8566.280607539375, - 9851.550357902184, - 11235.68061652669, - 12648.603052767206, - 14017.298346101463, - 15280.173849542829, - 16394.70169940476, - 17342.501910894178, - 18118.046433993495, - 18734.016323377746, - 19210.299411003863, - 19559.921298470417, - 19797.67718071536, - 19928.247807061183, - 19951.109841466136, - 19868.57842960517, - 19679.154048255667, - 19391.61326895476, - 19019.98610620545, - 18579.552020319727, - 18091.65175836614, - 17573.06344833278, - 17036.876827342883, - 16492.114125925582, - 15942.554887601615, - 15391.17713557642, - 14841.977425630803, - 14301.84526245366, - 13780.766484695974, - 13289.908454099275, - 12837.153315884067, - 12423.668503148243, - 12041.140248414134, - 11669.440137749374, - 11281.200704926585, - 10845.622179561256, - 10336.513216776177, - 9736.663836379093, - 9047.754825986896, - 8287.217305918562, - 7487.833574683376, - 6694.01625924832, - 5950.8601212475205, - 5297.645308787273, - 4761.074780263582, - 4354.967932149375, - 4073.7773432186136, - 3904.5599550021416, - 3827.465083430691, - 3820.2395281006457, - 3868.01826579685, - 3958.542711162362, - 4085.360047731082, - 4244.549922618558, - 4429.158492865426, - 4630.257841557103, - 4833.6387888516865, - 5022.08875346988, - 5178.821799259813, - 5291.404192371701, - 5353.156434989621, - 5366.435804552973, - 5341.670831089717, - 5291.42776881835, - 5230.4730911105535, - 5169.410996014943, - 5112.391147114367, - 5057.573841871639, - 4998.385794472928, - 4926.885454585239, - 4837.744523231825, - 4730.332523873942, - 4610.752975428478, - 4489.453736890941, - 4378.835431081983, - 4289.506735683201, - 4227.306164488746, - 4191.061367438242, - 4174.297403660979, - 4167.526435803361, - 4161.339990228647, - 4150.977236428435, - 4137.59229969698, - 4127.929708677637, - 4132.0894598905425, - 4159.020995983492, - 4213.373124635209, - 4292.43974057579, - 4386.24111218912, - 4482.518756146329, - 4570.671672374042, - 4649.219204435656, - 4731.014939228889, - 4844.890546137541, - 5034.166895881425, - 5348.962167778326, - 5835.608858006796, - 6531.948967965036, - 7446.51854524428, - 8566.280607539375 - ], - "flow:branch77_seg1:J78": [ - 0.966534164486992, - 1.2473528713663768, - 1.5539050056686972, - 1.8706700885857384, - 2.1808917076921674, - 2.4702065180429615, - 2.7281889041080554, - 2.949355158856056, - 3.131747395229148, - 3.2778874945514516, - 3.391453017742299, - 3.4759579374685297, - 3.5348964178566136, - 3.569428220013788, - 3.580014917415997, - 3.566747927586729, - 3.529421830036801, - 3.46980787000759, - 3.3903191206888863, - 3.294631605453236, - 3.1873274210133733, - 3.0722208355875065, - 2.9526553000287623, - 2.8307673883400164, - 2.707627817779979, - 2.583961451150205, - 2.4605333126829705, - 2.3387490745131827, - 2.220720377283449, - 2.1089328467248825, - 2.0053416717596204, - 1.9106713581382995, - 1.8234851506426086, - 1.7398516857499315, - 1.6539850460857668, - 1.5590324571851524, - 1.4487204202803292, - 1.3187334711610386, - 1.1685194219812567, - 1.0009942928620084, - 0.823023256169709, - 0.6440152749075225, - 0.47410774830841457, - 0.3225051533479679, - 0.1961033969315651, - 0.09841678595312457, - 0.02912578744847229, - -0.014067064866629566, - -0.035745481823212896, - -0.04059890951557378, - -0.032380891343270865, - -0.014156962259434412, - 0.012598368596267446, - 0.046765324146427846, - 0.0870019937195444, - 0.13150400910125032, - 0.1772336930031596, - 0.2204971877765378, - 0.25747248301249087, - 0.2850722907997036, - 0.30145278528296154, - 0.30681235796902323, - 0.3029723832223479, - 0.2927361214840122, - 0.27945300728237354, - 0.26564906331757954, - 0.2526321438808781, - 0.24029626704975865, - 0.2273416053170898, - 0.21201772103145627, - 0.19292410153049372, - 0.16968755068816624, - 0.14335531623519882, - 0.11604152171810714, - 0.09051768459791466, - 0.06930514404543774, - 0.05396985271181768, - 0.04457966621287883, - 0.03998777476041674, - 0.03810225453234156, - 0.03677225925155696, - 0.034686867266834995, - 0.03177277794443584, - 0.029291314091711797, - 0.029393569456208635, - 0.034199725591621384, - 0.045035315224608886, - 0.06161344802786773, - 0.08209628239896964, - 0.10376736934267908, - 0.1240354046720203, - 0.14205747376547412, - 0.15995444235532486, - 0.18339626994240646, - 0.22146449238236207, - 0.285046226828184, - 0.38519415146690633, - 0.5307103429967472, - 0.7248644701754713, - 0.966534164486992 - ], - "pressure:branch77_seg1:J78": [ - 8396.970087636684, - 9656.091371859779, - 11022.07537827749, - 12425.79541588303, - 13793.751773251695, - 15063.39488690612, - 16190.316574649221, - 17152.980930693495, - 17944.100260089097, - 18575.53703976115, - 19065.16309663153, - 19427.332741602542, - 19677.203704201696, - 19819.677320399303, - 19855.633612349684, - 19786.34997121982, - 19610.63570098076, - 19336.737183069097, - 18976.82160259193, - 18546.6669874564, - 18066.997613883086, - 17554.603632221617, - 17023.4820213956, - 16482.87575374978, - 15937.076572780901, - 15389.18208571676, - 14842.84244721008, - 14304.564910555364, - 13783.962106860326, - 13292.090391619698, - 12837.233318659715, - 12421.68096974869, - 12038.21085787566, - 11668.22933093801, - 11285.397730201477, - 10859.240770605416, - 10362.760816464657, - 9777.741823087154, - 9103.608356476809, - 8355.265745022618, - 7564.106240914738, - 6772.9374290588685, - 6026.620721288794, - 5365.15103769757, - 4817.269529923466, - 4397.71230879085, - 4103.201354577289, - 3922.3552581361287, - 3835.1193919080124, - 3820.10463263626, - 3861.531840188344, - 3946.440106725121, - 4068.3651904234544, - 4222.826400262702, - 4403.435907859223, - 4601.8146193886105, - 4804.198788137226, - 4993.886367012049, - 5154.057295182508, - 5271.635103867312, - 5339.132847763421, - 5358.097466389865, - 5337.643480216318, - 5290.212839005752, - 5230.577867412791, - 5169.635885776647, - 5112.42292443834, - 5057.855852271436, - 4999.8244330275575, - 4930.509059003961, - 4844.114322827165, - 4739.450915189665, - 4621.804979598041, - 4501.001831424368, - 4389.343191524555, - 4297.717881340194, - 4232.552289540869, - 4193.479106167837, - 4174.809795581843, - 4167.198974752176, - 4161.1942472984765, - 4151.476070813144, - 4138.385491134643, - 4128.015201515254, - 4130.127754448737, - 4153.8902686801275, - 4204.613774951483, - 4280.384288870448, - 4372.251334242268, - 4468.11574326453, - 4556.918867801259, - 4635.946414451575, - 4716.120293144883, - 4824.159426662484, - 5001.572693437531, - 5297.307683450274, - 5759.022071978927, - 6425.082858298913, - 7307.246453295392, - 8396.970087636684 - ], - "flow:J78:branch77_seg2": [ - 0.966534164486992, - 1.2473528713663768, - 1.5539050056686972, - 1.8706700885857384, - 2.1808917076921674, - 2.4702065180429615, - 2.7281889041080554, - 2.949355158856056, - 3.131747395229148, - 3.2778874945514516, - 3.391453017742299, - 3.4759579374685297, - 3.5348964178566136, - 3.569428220013788, - 3.580014917415997, - 3.566747927586729, - 3.529421830036801, - 3.46980787000759, - 3.3903191206888863, - 3.294631605453236, - 3.1873274210133733, - 3.0722208355875065, - 2.9526553000287623, - 2.8307673883400164, - 2.707627817779979, - 2.583961451150205, - 2.4605333126829705, - 2.3387490745131827, - 2.220720377283449, - 2.1089328467248825, - 2.0053416717596204, - 1.9106713581382995, - 1.8234851506426086, - 1.7398516857499315, - 1.6539850460857668, - 1.5590324571851524, - 1.4487204202803292, - 1.3187334711610386, - 1.1685194219812567, - 1.0009942928620084, - 0.823023256169709, - 0.6440152749075225, - 0.47410774830841457, - 0.3225051533479679, - 0.1961033969315651, - 0.09841678595312457, - 0.02912578744847229, - -0.014067064866629566, - -0.035745481823212896, - -0.04059890951557378, - -0.032380891343270865, - -0.014156962259434412, - 0.012598368596267446, - 0.046765324146427846, - 0.0870019937195444, - 0.13150400910125032, - 0.1772336930031596, - 0.2204971877765378, - 0.25747248301249087, - 0.2850722907997036, - 0.30145278528296154, - 0.30681235796902323, - 0.3029723832223479, - 0.2927361214840122, - 0.27945300728237354, - 0.26564906331757954, - 0.2526321438808781, - 0.24029626704975865, - 0.2273416053170898, - 0.21201772103145627, - 0.19292410153049372, - 0.16968755068816624, - 0.14335531623519882, - 0.11604152171810714, - 0.09051768459791466, - 0.06930514404543774, - 0.05396985271181768, - 0.04457966621287883, - 0.03998777476041674, - 0.03810225453234156, - 0.03677225925155696, - 0.034686867266834995, - 0.03177277794443584, - 0.029291314091711797, - 0.029393569456208635, - 0.034199725591621384, - 0.045035315224608886, - 0.06161344802786773, - 0.08209628239896964, - 0.10376736934267908, - 0.1240354046720203, - 0.14205747376547412, - 0.15995444235532486, - 0.18339626994240646, - 0.22146449238236207, - 0.285046226828184, - 0.38519415146690633, - 0.5307103429967472, - 0.7248644701754713, - 0.966534164486992 - ], - "pressure:J78:branch77_seg2": [ - 8396.970087636684, - 9656.091371859779, - 11022.07537827749, - 12425.79541588303, - 13793.751773251695, - 15063.39488690612, - 16190.316574649221, - 17152.980930693495, - 17944.100260089097, - 18575.53703976115, - 19065.16309663153, - 19427.332741602542, - 19677.203704201696, - 19819.677320399303, - 19855.633612349684, - 19786.34997121982, - 19610.63570098076, - 19336.737183069097, - 18976.82160259193, - 18546.6669874564, - 18066.997613883086, - 17554.603632221617, - 17023.4820213956, - 16482.87575374978, - 15937.076572780901, - 15389.18208571676, - 14842.84244721008, - 14304.564910555364, - 13783.962106860326, - 13292.090391619698, - 12837.233318659715, - 12421.68096974869, - 12038.21085787566, - 11668.22933093801, - 11285.397730201477, - 10859.240770605416, - 10362.760816464657, - 9777.741823087154, - 9103.608356476809, - 8355.265745022618, - 7564.106240914738, - 6772.9374290588685, - 6026.620721288794, - 5365.15103769757, - 4817.269529923466, - 4397.71230879085, - 4103.201354577289, - 3922.3552581361287, - 3835.1193919080124, - 3820.10463263626, - 3861.531840188344, - 3946.440106725121, - 4068.3651904234544, - 4222.826400262702, - 4403.435907859223, - 4601.8146193886105, - 4804.198788137226, - 4993.886367012049, - 5154.057295182508, - 5271.635103867312, - 5339.132847763421, - 5358.097466389865, - 5337.643480216318, - 5290.212839005752, - 5230.577867412791, - 5169.635885776647, - 5112.42292443834, - 5057.855852271436, - 4999.8244330275575, - 4930.509059003961, - 4844.114322827165, - 4739.450915189665, - 4621.804979598041, - 4501.001831424368, - 4389.343191524555, - 4297.717881340194, - 4232.552289540869, - 4193.479106167837, - 4174.809795581843, - 4167.198974752176, - 4161.1942472984765, - 4151.476070813144, - 4138.385491134643, - 4128.015201515254, - 4130.127754448737, - 4153.8902686801275, - 4204.613774951483, - 4280.384288870448, - 4372.251334242268, - 4468.11574326453, - 4556.918867801259, - 4635.946414451575, - 4716.120293144883, - 4824.159426662484, - 5001.572693437531, - 5297.307683450274, - 5759.022071978927, - 6425.082858298913, - 7307.246453295392, - 8396.970087636684 - ], - "flow:branch83_seg0:J79": [ - 0.7709964795681099, - 1.0037220981802724, - 1.2682310504549819, - 1.55402121091903, - 1.8483776888267298, - 2.1388283037073443, - 2.4146205454272915, - 2.667912588499386, - 2.8935751340512286, - 3.090000519340929, - 3.2572808698979103, - 3.396398294681694, - 3.508896253462049, - 3.5953434904031765, - 3.656004866376457, - 3.6908488648110573, - 3.699718478123859, - 3.6836315701019204, - 3.6442202834792665, - 3.5842299252927345, - 3.507227764479508, - 3.416672980047913, - 3.3158961758912393, - 3.2074979814067537, - 3.093336056351294, - 2.9748544000614103, - 2.8533497206086533, - 2.7304119392115833, - 2.6080637113330383, - 2.488635444123004, - 2.3742277446220283, - 2.266186203363267, - 2.1643607354910013, - 2.0667234133151196, - 1.9695529737046258, - 1.8678692122326421, - 1.7564943855632222, - 1.6311524894838774, - 1.4898466208081527, - 1.3331314664275837, - 1.1646889111046197, - 0.9906354895054341, - 0.8184700984676833, - 0.655842399034422, - 0.5094107461705384, - 0.3837698922380084, - 0.28092667542804156, - 0.2010284765205889, - 0.14215918851223674, - 0.10171191384341383, - 0.07708742580529339, - 0.06586019686699296, - 0.06644963134263401, - 0.077516666153551, - 0.09768641480994222, - 0.12528975387326077, - 0.15783682173053815, - 0.19226034671823988, - 0.225196844651959, - 0.2535584534096741, - 0.2749876595349969, - 0.2884914376025046, - 0.29435735762895376, - 0.29390212682466443, - 0.28915838479357026, - 0.28199968984732093, - 0.2737244850911116, - 0.264745665513079, - 0.25458638809241524, - 0.24225916045080229, - 0.22677414412962496, - 0.20766935273202275, - 0.18538037734592944, - 0.16118273458450877, - 0.13700425053008733, - 0.11486026635708031, - 0.09632468595533424, - 0.08205884965278983, - 0.07181724011976118, - 0.0645171436076187, - 0.0587737836821482, - 0.05350718586042785, - 0.048339148762801216, - 0.04380863780063528, - 0.041211271982318276, - 0.042072933850553065, - 0.047601633070457436, - 0.05804671405785614, - 0.0725621782367983, - 0.08946645854134333, - 0.10685975338627196, - 0.123710985777644, - 0.1408518854618607, - 0.1616545221680753, - 0.1922391888777159, - 0.24069208555076954, - 0.3160700128537226, - 0.4266237209886572, - 0.5775654951861071, - 0.7709964795681099 - ], - "pressure:branch83_seg0:J79": [ - 7404.78874751695, - 8393.63025492759, - 9496.229719561192, - 10667.402483508165, - 11855.072953282031, - 13009.840502087374, - 14091.461775744623, - 15074.234735950457, - 15940.739708537438, - 16687.820870824366, - 17320.207831004034, - 17840.41190967451, - 18255.12647642065, - 18566.28342005627, - 18772.790867746266, - 18876.230819155975, - 18875.293723703293, - 18775.069553163128, - 18585.37319183791, - 18316.793794582692, - 17984.981508354118, - 17603.96871736388, - 17185.793412739673, - 16740.34915730759, - 16274.002914379249, - 15792.066071856027, - 15300.024775840024, - 14804.777685993598, - 14315.03349307658, - 13840.428416907527, - 13388.711171484978, - 12963.47478182837, - 12562.002559671635, - 12173.117034745395, - 11779.670335807603, - 11360.461686021164, - 10895.560027757261, - 10369.257089918876, - 9777.540527697965, - 9127.285575069365, - 8436.473858456306, - 7733.326259616741, - 7049.072229709057, - 6413.850456276141, - 5851.374786938591, - 5378.064014530705, - 4997.790297952479, - 4707.944208344734, - 4500.001710390512, - 4361.645808531889, - 4283.413769231923, - 4256.384405834934, - 4274.5251640243605, - 4333.28472764195, - 4426.401791816898, - 4546.4723636053795, - 4682.55600544302, - 4821.3930240892405, - 4949.3797704157605, - 5055.1041484856105, - 5130.399231285922, - 5172.961349672691, - 5186.539162687528, - 5176.997221235991, - 5153.0257525499155, - 5121.948068843103, - 5087.598984783388, - 5050.313023717689, - 5007.160926672318, - 4953.692793302841, - 4886.451048135419, - 4804.467627883832, - 4710.908690895023, - 4612.12650280043, - 4516.338989190053, - 4431.399885246858, - 4362.751618416412, - 4311.587059047517, - 4275.489933674441, - 4249.45470861783, - 4227.708504047645, - 4206.697202033508, - 4186.2063859860755, - 4169.647158648256, - 4163.054490002141, - 4172.444561753853, - 4201.765811292083, - 4250.646147296012, - 4313.745190219931, - 4383.74936216365, - 4453.399355310628, - 4520.4005746991, - 4591.389051065287, - 4683.825747037254, - 4825.9852437777145, - 5053.030242608686, - 5400.240333015392, - 5899.926210582373, - 6567.72926318347, - 7404.78874751695 - ], - "flow:J79:branch83_seg1": [ - 0.7709964795681099, - 1.0037220981802724, - 1.2682310504549819, - 1.55402121091903, - 1.8483776888267298, - 2.1388283037073443, - 2.4146205454272915, - 2.667912588499386, - 2.8935751340512286, - 3.090000519340929, - 3.2572808698979103, - 3.396398294681694, - 3.508896253462049, - 3.5953434904031765, - 3.656004866376457, - 3.6908488648110573, - 3.699718478123859, - 3.6836315701019204, - 3.6442202834792665, - 3.5842299252927345, - 3.507227764479508, - 3.416672980047913, - 3.3158961758912393, - 3.2074979814067537, - 3.093336056351294, - 2.9748544000614103, - 2.8533497206086533, - 2.7304119392115833, - 2.6080637113330383, - 2.488635444123004, - 2.3742277446220283, - 2.266186203363267, - 2.1643607354910013, - 2.0667234133151196, - 1.9695529737046258, - 1.8678692122326421, - 1.7564943855632222, - 1.6311524894838774, - 1.4898466208081527, - 1.3331314664275837, - 1.1646889111046197, - 0.9906354895054341, - 0.8184700984676833, - 0.655842399034422, - 0.5094107461705384, - 0.3837698922380084, - 0.28092667542804156, - 0.2010284765205889, - 0.14215918851223674, - 0.10171191384341383, - 0.07708742580529339, - 0.06586019686699296, - 0.06644963134263401, - 0.077516666153551, - 0.09768641480994222, - 0.12528975387326077, - 0.15783682173053815, - 0.19226034671823988, - 0.225196844651959, - 0.2535584534096741, - 0.2749876595349969, - 0.2884914376025046, - 0.29435735762895376, - 0.29390212682466443, - 0.28915838479357026, - 0.28199968984732093, - 0.2737244850911116, - 0.264745665513079, - 0.25458638809241524, - 0.24225916045080229, - 0.22677414412962496, - 0.20766935273202275, - 0.18538037734592944, - 0.16118273458450877, - 0.13700425053008733, - 0.11486026635708031, - 0.09632468595533424, - 0.08205884965278983, - 0.07181724011976118, - 0.0645171436076187, - 0.0587737836821482, - 0.05350718586042785, - 0.048339148762801216, - 0.04380863780063528, - 0.041211271982318276, - 0.042072933850553065, - 0.047601633070457436, - 0.05804671405785614, - 0.0725621782367983, - 0.08946645854134333, - 0.10685975338627196, - 0.123710985777644, - 0.1408518854618607, - 0.1616545221680753, - 0.1922391888777159, - 0.24069208555076954, - 0.3160700128537226, - 0.4266237209886572, - 0.5775654951861071, - 0.7709964795681099 - ], - "pressure:J79:branch83_seg1": [ - 7404.78874751695, - 8393.63025492759, - 9496.229719561192, - 10667.402483508165, - 11855.072953282031, - 13009.840502087374, - 14091.461775744623, - 15074.234735950457, - 15940.739708537438, - 16687.820870824366, - 17320.207831004034, - 17840.41190967451, - 18255.12647642065, - 18566.28342005627, - 18772.790867746266, - 18876.230819155975, - 18875.293723703293, - 18775.069553163128, - 18585.37319183791, - 18316.793794582692, - 17984.981508354118, - 17603.96871736388, - 17185.793412739673, - 16740.34915730759, - 16274.002914379249, - 15792.066071856027, - 15300.024775840024, - 14804.777685993598, - 14315.03349307658, - 13840.428416907527, - 13388.711171484978, - 12963.47478182837, - 12562.002559671635, - 12173.117034745395, - 11779.670335807603, - 11360.461686021164, - 10895.560027757261, - 10369.257089918876, - 9777.540527697965, - 9127.285575069365, - 8436.473858456306, - 7733.326259616741, - 7049.072229709057, - 6413.850456276141, - 5851.374786938591, - 5378.064014530705, - 4997.790297952479, - 4707.944208344734, - 4500.001710390512, - 4361.645808531889, - 4283.413769231923, - 4256.384405834934, - 4274.5251640243605, - 4333.28472764195, - 4426.401791816898, - 4546.4723636053795, - 4682.55600544302, - 4821.3930240892405, - 4949.3797704157605, - 5055.1041484856105, - 5130.399231285922, - 5172.961349672691, - 5186.539162687528, - 5176.997221235991, - 5153.0257525499155, - 5121.948068843103, - 5087.598984783388, - 5050.313023717689, - 5007.160926672318, - 4953.692793302841, - 4886.451048135419, - 4804.467627883832, - 4710.908690895023, - 4612.12650280043, - 4516.338989190053, - 4431.399885246858, - 4362.751618416412, - 4311.587059047517, - 4275.489933674441, - 4249.45470861783, - 4227.708504047645, - 4206.697202033508, - 4186.2063859860755, - 4169.647158648256, - 4163.054490002141, - 4172.444561753853, - 4201.765811292083, - 4250.646147296012, - 4313.745190219931, - 4383.74936216365, - 4453.399355310628, - 4520.4005746991, - 4591.389051065287, - 4683.825747037254, - 4825.9852437777145, - 5053.030242608686, - 5400.240333015392, - 5899.926210582373, - 6567.72926318347, - 7404.78874751695 - ], - "flow:branch83_seg1:J80": [ - 0.7698317929430306, - 1.0023865220571446, - 1.2667732695340652, - 1.552512989400147, - 1.8468814499037691, - 2.137399482548769, - 2.413303305940712, - 2.6667381869090514, - 2.892549455228894, - 3.089125848637383, - 3.2565506708251952, - 3.3958042873175702, - 3.508436753803999, - 3.595014393840208, - 3.655809000257907, - 3.6907841235428647, - 3.699783114784425, - 3.6838212353566737, - 3.6445143467962513, - 3.5846137280435655, - 3.5076848598168118, - 3.417182683922739, - 3.316446544379129, - 3.208078539463403, - 3.0939390616278972, - 2.975474445818388, - 2.853978505917293, - 2.731039379539746, - 2.6086779921616055, - 2.4892254009395303, - 2.3747843513645286, - 2.2667097161787395, - 2.1648600813806773, - 2.067215565705058, - 1.9700640117089583, - 1.8684271647728226, - 1.7571210325225226, - 1.6318622388234445, - 1.490639486171396, - 1.3339882496015536, - 1.165580709156321, - 0.9915242908495123, - 0.8193144177545454, - 0.6566041544154899, - 0.5100714893215549, - 0.38431301332488016, - 0.2813474363758942, - 0.2013431250683474, - 0.14237585541361517, - 0.10184633278021374, - 0.0771540747688883, - 0.06586316076393504, - 0.06639951387432722, - 0.07741964038581205, - 0.09754833204694621, - 0.1251245289225758, - 0.1576593824075482, - 0.19208769082984686, - 0.22504607612653008, - 0.25344261624508463, - 0.27491262202701017, - 0.28845723696888165, - 0.29435669384954805, - 0.2939249218646638, - 0.2891948815867441, - 0.2820418875193492, - 0.2737694987845966, - 0.26479582678985847, - 0.2546468093624141, - 0.2423357897498261, - 0.22686906283988936, - 0.20778162747697596, - 0.1855046369027419, - 0.16130814804506988, - 0.1371202469778771, - 0.11495849160844361, - 0.09640102648489539, - 0.08211276148327887, - 0.07185540242036675, - 0.0645467837950771, - 0.05880028749750168, - 0.05353385666534641, - 0.04836382279164204, - 0.04382484314161372, - 0.04121072325008646, - 0.04204864332428662, - 0.047551493702446185, - 0.057973886409868725, - 0.07247569288284968, - 0.08937667048487061, - 0.1067734312401209, - 0.12362588714198479, - 0.14075294392070586, - 0.16151245872117384, - 0.19201326958498874, - 0.24033073929692791, - 0.31553816827584885, - 0.42588810503199814, - 0.5766000212941429, - 0.7698317929430306 - ], - "pressure:branch83_seg1:J80": [ - 7248.5576617436445, - 8207.12586173254, - 9284.370023184953, - 10436.769009316966, - 11613.017917918889, - 12763.785455525545, - 13847.909398909595, - 14837.528153490306, - 15713.922777916901, - 16472.640663577127, - 17116.603785905525, - 17648.838144401136, - 18075.831783575253, - 18399.637846897942, - 18620.05212186262, - 18737.96272504512, - 18752.333018233432, - 18667.77512972844, - 18492.68154860977, - 18237.739459828303, - 17917.932202291104, - 17547.11815893502, - 17137.810143644503, - 16700.05545779307, - 16240.624478113206, - 15764.990571828655, - 15278.473160547337, - 14787.703164596434, - 14301.076231471348, - 13828.04790428604, - 13376.589495473301, - 12951.038899052151, - 12549.590515993255, - 12162.406875002815, - 11773.404325356261, - 11362.036687108497, - 10908.159971668176, - 10395.55599841516, - 9818.568497985993, - 9182.071413312988, - 8502.561839046004, - 7806.5398984608355, - 7124.522087103838, - 6486.669036130154, - 5917.806896877459, - 5435.057149540194, - 5044.012024455156, - 4743.451817871586, - 4525.223358104428, - 4377.881253286836, - 4291.634690025558, - 4257.25992668442, - 4268.676036315274, - 4321.007745587071, - 4408.34055713635, - 4523.650376295274, - 4656.460953990156, - 4794.003565206713, - 4922.818811824785, - 5031.1716619428435, - 5110.396798949919, - 5157.503030837366, - 5175.146911448323, - 5168.889455904025, - 5147.14403927374, - 5117.271739112809, - 5083.651707118438, - 5047.172237270779, - 5005.348506836857, - 4953.9625278631465, - 4889.358691450738, - 4810.206422770379, - 4719.054673050272, - 4621.689320773469, - 4526.074101251895, - 4440.107751014236, - 4369.564126852139, - 4316.229801567519, - 4278.31796557955, - 4251.125844210945, - 4229.002683624013, - 4208.098412590263, - 4187.650695789056, - 4170.523415738272, - 4162.362232263385, - 4169.186015269622, - 4195.299188810399, - 4240.911086988449, - 4301.523459962168, - 4370.1171723283915, - 4439.323408361716, - 4506.080155539352, - 4575.587979339338, - 4663.532285283731, - 4796.426934825181, - 5008.038845296748, - 5333.881211893793, - 5806.343226052089, - 6443.131147851473, - 7248.5576617436445 - ], - "flow:J80:branch83_seg2": [ - 0.7698317929430306, - 1.0023865220571446, - 1.2667732695340652, - 1.552512989400147, - 1.8468814499037691, - 2.137399482548769, - 2.413303305940712, - 2.6667381869090514, - 2.892549455228894, - 3.089125848637383, - 3.2565506708251952, - 3.3958042873175702, - 3.508436753803999, - 3.595014393840208, - 3.655809000257907, - 3.6907841235428647, - 3.699783114784425, - 3.6838212353566737, - 3.6445143467962513, - 3.5846137280435655, - 3.5076848598168118, - 3.417182683922739, - 3.316446544379129, - 3.208078539463403, - 3.0939390616278972, - 2.975474445818388, - 2.853978505917293, - 2.731039379539746, - 2.6086779921616055, - 2.4892254009395303, - 2.3747843513645286, - 2.2667097161787395, - 2.1648600813806773, - 2.067215565705058, - 1.9700640117089583, - 1.8684271647728226, - 1.7571210325225226, - 1.6318622388234445, - 1.490639486171396, - 1.3339882496015536, - 1.165580709156321, - 0.9915242908495123, - 0.8193144177545454, - 0.6566041544154899, - 0.5100714893215549, - 0.38431301332488016, - 0.2813474363758942, - 0.2013431250683474, - 0.14237585541361517, - 0.10184633278021374, - 0.0771540747688883, - 0.06586316076393504, - 0.06639951387432722, - 0.07741964038581205, - 0.09754833204694621, - 0.1251245289225758, - 0.1576593824075482, - 0.19208769082984686, - 0.22504607612653008, - 0.25344261624508463, - 0.27491262202701017, - 0.28845723696888165, - 0.29435669384954805, - 0.2939249218646638, - 0.2891948815867441, - 0.2820418875193492, - 0.2737694987845966, - 0.26479582678985847, - 0.2546468093624141, - 0.2423357897498261, - 0.22686906283988936, - 0.20778162747697596, - 0.1855046369027419, - 0.16130814804506988, - 0.1371202469778771, - 0.11495849160844361, - 0.09640102648489539, - 0.08211276148327887, - 0.07185540242036675, - 0.0645467837950771, - 0.05880028749750168, - 0.05353385666534641, - 0.04836382279164204, - 0.04382484314161372, - 0.04121072325008646, - 0.04204864332428662, - 0.047551493702446185, - 0.057973886409868725, - 0.07247569288284968, - 0.08937667048487061, - 0.1067734312401209, - 0.12362588714198479, - 0.14075294392070586, - 0.16151245872117384, - 0.19201326958498874, - 0.24033073929692791, - 0.31553816827584885, - 0.42588810503199814, - 0.5766000212941429, - 0.7698317929430306 - ], - "pressure:J80:branch83_seg2": [ - 7248.5576617436445, - 8207.12586173254, - 9284.370023184953, - 10436.769009316966, - 11613.017917918889, - 12763.785455525545, - 13847.909398909595, - 14837.528153490306, - 15713.922777916901, - 16472.640663577127, - 17116.603785905525, - 17648.838144401136, - 18075.831783575253, - 18399.637846897942, - 18620.05212186262, - 18737.96272504512, - 18752.333018233432, - 18667.77512972844, - 18492.68154860977, - 18237.739459828303, - 17917.932202291104, - 17547.11815893502, - 17137.810143644503, - 16700.05545779307, - 16240.624478113206, - 15764.990571828655, - 15278.473160547337, - 14787.703164596434, - 14301.076231471348, - 13828.04790428604, - 13376.589495473301, - 12951.038899052151, - 12549.590515993255, - 12162.406875002815, - 11773.404325356261, - 11362.036687108497, - 10908.159971668176, - 10395.55599841516, - 9818.568497985993, - 9182.071413312988, - 8502.561839046004, - 7806.5398984608355, - 7124.522087103838, - 6486.669036130154, - 5917.806896877459, - 5435.057149540194, - 5044.012024455156, - 4743.451817871586, - 4525.223358104428, - 4377.881253286836, - 4291.634690025558, - 4257.25992668442, - 4268.676036315274, - 4321.007745587071, - 4408.34055713635, - 4523.650376295274, - 4656.460953990156, - 4794.003565206713, - 4922.818811824785, - 5031.1716619428435, - 5110.396798949919, - 5157.503030837366, - 5175.146911448323, - 5168.889455904025, - 5147.14403927374, - 5117.271739112809, - 5083.651707118438, - 5047.172237270779, - 5005.348506836857, - 4953.9625278631465, - 4889.358691450738, - 4810.206422770379, - 4719.054673050272, - 4621.689320773469, - 4526.074101251895, - 4440.107751014236, - 4369.564126852139, - 4316.229801567519, - 4278.31796557955, - 4251.125844210945, - 4229.002683624013, - 4208.098412590263, - 4187.650695789056, - 4170.523415738272, - 4162.362232263385, - 4169.186015269622, - 4195.299188810399, - 4240.911086988449, - 4301.523459962168, - 4370.1171723283915, - 4439.323408361716, - 4506.080155539352, - 4575.587979339338, - 4663.532285283731, - 4796.426934825181, - 5008.038845296748, - 5333.881211893793, - 5806.343226052089, - 6443.131147851473, - 7248.5576617436445 - ], - "flow:branch86_seg0:J81": [ - 1.4620894112425835, - 1.9191347505594607, - 2.447042779353707, - 3.024951684039041, - 3.6265803233171656, - 4.224645142167144, - 4.794470418217991, - 5.316887097257155, - 5.779104295875436, - 6.175831531114166, - 6.506650665971243, - 6.7743513899812156, - 6.983272727997246, - 7.136660619278202, - 7.236864289004813, - 7.285115874461582, - 7.282069215722786, - 7.22972977468087, - 7.131300601817906, - 6.992044426564204, - 6.8189022428189245, - 6.619209795132589, - 6.4001554846085495, - 6.16766768316635, - 5.926140438172196, - 5.678767101014013, - 5.428100674554537, - 5.1769141099765354, - 4.928692858473569, - 4.68762693647659, - 4.457829653091716, - 4.242289637781514, - 4.041394593652607, - 3.8519757963631975, - 3.667179838932225, - 3.4771518997531854, - 3.2708560712060746, - 3.0383496498662095, - 2.7735146669631487, - 2.4753982048606553, - 2.1495105499044698, - 1.8070216930385326, - 1.463028024994389, - 1.1340174990633656, - 0.8352558158939302, - 0.5783234325033519, - 0.3696602865886078, - 0.2109530459619611, - 0.09922181691564201, - 0.02900641840480156, - -0.006034312973109362, - -0.012021299590415835, - 0.006358697626961883, - 0.045366669319865535, - 0.10175858774628646, - 0.17202187094867527, - 0.2514369820826208, - 0.33411145039141943, - 0.4133391215247552, - 0.4826042865057891, - 0.5366083407447827, - 0.5725324828571059, - 0.5902466544239365, - 0.5921155359098285, - 0.5823167114073909, - 0.5653140678542757, - 0.5447579480898497, - 0.522594475271391, - 0.4988024084198068, - 0.4718947427365595, - 0.4398615186421529, - 0.40130644287996764, - 0.35636703222240096, - 0.3069772071393245, - 0.25663849966939206, - 0.2094853744292631, - 0.169178409916503, - 0.1378440988588777, - 0.11569584848135983, - 0.10103275304939, - 0.09110682924585656, - 0.08326119069235557, - 0.07596107913073295, - 0.06945951732787838, - 0.0657568730485439, - 0.06779740358832684, - 0.07835852310883903, - 0.09870598682110229, - 0.1279782569779648, - 0.1633118600582372, - 0.2008695960775184, - 0.237809078562057, - 0.27440296253919827, - 0.3157603777877777, - 0.3726651052209374, - 0.4606601510258672, - 0.5981857599010619, - 0.8031793795874341, - 1.0889329077111842, - 1.4620894112425835 - ], - "pressure:branch86_seg0:J81": [ - 8046.878187935866, - 9199.147326945204, - 10459.667749607854, - 11770.972805611684, - 13070.153059287259, - 14299.880346274678, - 15416.754729510585, - 16397.959414125253, - 17229.67626622116, - 17914.787310220174, - 18466.789467459843, - 18892.276595955558, - 19202.76555923411, - 19403.352966222024, - 19493.43071042334, - 19477.3425460195, - 19354.352207216278, - 19131.526281278533, - 18822.70418152859, - 18440.316489873687, - 18003.32355441798, - 17527.717231220893, - 17025.961786819134, - 16508.19847928318, - 15979.85961828205, - 15445.39640051192, - 14909.897700564594, - 14380.311367521428, - 13865.846710459977, - 13376.684090091461, - 12920.227474009354, - 12498.286301982915, - 12105.163472651255, - 11724.675383121834, - 11334.33134568992, - 10907.946373441153, - 10422.535165660913, - 9861.0488327674, - 9222.155709767603, - 8518.23130560235, - 7773.843585142065, - 7025.6888654250415, - 6312.036050432503, - 5668.0093421680485, - 5118.923048943563, - 4681.250372022917, - 4354.657209880633, - 4131.646056341247, - 3999.089799649207, - 3938.941707448144, - 3938.936285116382, - 3987.857318057231, - 4078.2162699328574, - 4205.1625355179, - 4360.989829219163, - 4537.026192010553, - 4720.513858253775, - 4895.956857523353, - 5048.196589412771, - 5165.569898816234, - 5240.63745820602, - 5273.151862659587, - 5270.736020573152, - 5242.215349533613, - 5199.271152894591, - 5151.314535966505, - 5102.531924167371, - 5052.6119641107425, - 4997.357247468514, - 4930.986400340696, - 4849.506847836616, - 4752.196381721046, - 4643.673333307659, - 4532.2258843032905, - 4427.8836749901575, - 4339.70300852435, - 4273.321178532563, - 4228.784342903933, - 4201.775443630216, - 4185.413527629982, - 4172.180549079728, - 4158.0033515024525, - 4143.312460528981, - 4132.922265521595, - 4134.583230263758, - 4155.423748409334, - 4199.515832008784, - 4265.435069789617, - 4345.382653361801, - 4430.018088766334, - 4510.827268529272, - 4586.1902651779155, - 4666.101650382232, - 4773.83418328096, - 4945.1676814432485, - 5223.008190161098, - 5647.4686903921865, - 6254.486359933954, - 7056.360586735033, - 8046.878187935866 - ], - "flow:J81:branch86_seg1": [ - 1.4620894112425835, - 1.9191347505594607, - 2.447042779353707, - 3.024951684039041, - 3.6265803233171656, - 4.224645142167144, - 4.794470418217991, - 5.316887097257155, - 5.779104295875436, - 6.175831531114166, - 6.506650665971243, - 6.7743513899812156, - 6.983272727997246, - 7.136660619278202, - 7.236864289004813, - 7.285115874461582, - 7.282069215722786, - 7.22972977468087, - 7.131300601817906, - 6.992044426564204, - 6.8189022428189245, - 6.619209795132589, - 6.4001554846085495, - 6.16766768316635, - 5.926140438172196, - 5.678767101014013, - 5.428100674554537, - 5.1769141099765354, - 4.928692858473569, - 4.68762693647659, - 4.457829653091716, - 4.242289637781514, - 4.041394593652607, - 3.8519757963631975, - 3.667179838932225, - 3.4771518997531854, - 3.2708560712060746, - 3.0383496498662095, - 2.7735146669631487, - 2.4753982048606553, - 2.1495105499044698, - 1.8070216930385326, - 1.463028024994389, - 1.1340174990633656, - 0.8352558158939302, - 0.5783234325033519, - 0.3696602865886078, - 0.2109530459619611, - 0.09922181691564201, - 0.02900641840480156, - -0.006034312973109362, - -0.012021299590415835, - 0.006358697626961883, - 0.045366669319865535, - 0.10175858774628646, - 0.17202187094867527, - 0.2514369820826208, - 0.33411145039141943, - 0.4133391215247552, - 0.4826042865057891, - 0.5366083407447827, - 0.5725324828571059, - 0.5902466544239365, - 0.5921155359098285, - 0.5823167114073909, - 0.5653140678542757, - 0.5447579480898497, - 0.522594475271391, - 0.4988024084198068, - 0.4718947427365595, - 0.4398615186421529, - 0.40130644287996764, - 0.35636703222240096, - 0.3069772071393245, - 0.25663849966939206, - 0.2094853744292631, - 0.169178409916503, - 0.1378440988588777, - 0.11569584848135983, - 0.10103275304939, - 0.09110682924585656, - 0.08326119069235557, - 0.07596107913073295, - 0.06945951732787838, - 0.0657568730485439, - 0.06779740358832684, - 0.07835852310883903, - 0.09870598682110229, - 0.1279782569779648, - 0.1633118600582372, - 0.2008695960775184, - 0.237809078562057, - 0.27440296253919827, - 0.3157603777877777, - 0.3726651052209374, - 0.4606601510258672, - 0.5981857599010619, - 0.8031793795874341, - 1.0889329077111842, - 1.4620894112425835 - ], - "pressure:J81:branch86_seg1": [ - 8046.878187935866, - 9199.147326945204, - 10459.667749607854, - 11770.972805611684, - 13070.153059287259, - 14299.880346274678, - 15416.754729510585, - 16397.959414125253, - 17229.67626622116, - 17914.787310220174, - 18466.789467459843, - 18892.276595955558, - 19202.76555923411, - 19403.352966222024, - 19493.43071042334, - 19477.3425460195, - 19354.352207216278, - 19131.526281278533, - 18822.70418152859, - 18440.316489873687, - 18003.32355441798, - 17527.717231220893, - 17025.961786819134, - 16508.19847928318, - 15979.85961828205, - 15445.39640051192, - 14909.897700564594, - 14380.311367521428, - 13865.846710459977, - 13376.684090091461, - 12920.227474009354, - 12498.286301982915, - 12105.163472651255, - 11724.675383121834, - 11334.33134568992, - 10907.946373441153, - 10422.535165660913, - 9861.0488327674, - 9222.155709767603, - 8518.23130560235, - 7773.843585142065, - 7025.6888654250415, - 6312.036050432503, - 5668.0093421680485, - 5118.923048943563, - 4681.250372022917, - 4354.657209880633, - 4131.646056341247, - 3999.089799649207, - 3938.941707448144, - 3938.936285116382, - 3987.857318057231, - 4078.2162699328574, - 4205.1625355179, - 4360.989829219163, - 4537.026192010553, - 4720.513858253775, - 4895.956857523353, - 5048.196589412771, - 5165.569898816234, - 5240.63745820602, - 5273.151862659587, - 5270.736020573152, - 5242.215349533613, - 5199.271152894591, - 5151.314535966505, - 5102.531924167371, - 5052.6119641107425, - 4997.357247468514, - 4930.986400340696, - 4849.506847836616, - 4752.196381721046, - 4643.673333307659, - 4532.2258843032905, - 4427.8836749901575, - 4339.70300852435, - 4273.321178532563, - 4228.784342903933, - 4201.775443630216, - 4185.413527629982, - 4172.180549079728, - 4158.0033515024525, - 4143.312460528981, - 4132.922265521595, - 4134.583230263758, - 4155.423748409334, - 4199.515832008784, - 4265.435069789617, - 4345.382653361801, - 4430.018088766334, - 4510.827268529272, - 4586.1902651779155, - 4666.101650382232, - 4773.83418328096, - 4945.1676814432485, - 5223.008190161098, - 5647.4686903921865, - 6254.486359933954, - 7056.360586735033, - 8046.878187935866 - ], - "flow:branch86_seg1:J82": [ - 1.4619593313273458, - 1.918988397275649, - 2.446885932365547, - 3.024793041858117, - 3.626426886504451, - 4.2245026195050315, - 4.794343079856798, - 5.316777849842249, - 5.779012674428692, - 6.175757083339196, - 6.5065919983834455, - 6.774306864625979, - 6.983242092512711, - 7.136643059943132, - 7.236859942841081, - 7.285124376508159, - 7.282090031404337, - 7.22976258322004, - 7.131342765713713, - 6.992094068958276, - 6.818957814537161, - 6.619268990440257, - 6.400217167962909, - 6.1677309557764755, - 5.926204611318044, - 5.678831805797626, - 5.428165134409585, - 5.1769773042341605, - 4.928753598479078, - 4.687684176906324, - 4.457882574736342, - 4.242338599723859, - 4.041440975197759, - 3.852021743396167, - 3.667228518686948, - 3.4772065453847087, - 3.270918961316861, - 3.038422053041571, - 2.7735962861575922, - 2.475486275653174, - 2.1496013731584247, - 1.8071108196653136, - 1.4631106804627505, - 1.1340894225986249, - 0.8353155462982296, - 0.5783696955505034, - 0.36969272369121536, - 0.21097427072884237, - 0.09923306358873468, - 0.02900962644512185, - -0.00603720977248713, - -0.012030011262295866, - 0.00634542314891447, - 0.045349598382961744, - 0.10173826419443628, - 0.1719999056550228, - 0.2514150302847125, - 0.3340913254983473, - 0.4133226041916801, - 0.48259262868517283, - 0.5366018556409979, - 0.572530877122458, - 0.5902488039298035, - 0.5921200079538707, - 0.5823223714915003, - 0.5653199856754616, - 0.5447638276943625, - 0.5226006967656345, - 0.49880963409427387, - 0.47190368754622053, - 0.43987234802363, - 0.4013189453033894, - 0.3563805612006044, - 0.30699044632468686, - 0.25665023232792983, - 0.2094947496737331, - 0.16918513323365, - 0.13784821173616202, - 0.11569829492497737, - 0.1010344761245584, - 0.09110841812427269, - 0.08326297922919838, - 0.07596273935646557, - 0.0694602282758513, - 0.06575565996149305, - 0.06779350132426559, - 0.07835181868717865, - 0.09869696936194357, - 0.1279680745077468, - 0.16330177407251695, - 0.20086027196039205, - 0.2378000470056314, - 0.27439223560783915, - 0.31574434501854737, - 0.3726390182158447, - 0.46061796175415626, - 0.5981240230015238, - 0.8030951963751545, - 1.0888233253870916, - 1.4619593313273458 - ], - "pressure:branch86_seg1:J82": [ - 8017.4695805941565, - 9163.533505201432, - 10418.684269946476, - 11725.887089967218, - 13022.488396454226, - 14251.22179101299, - 15368.536038493778, - 16351.26043624991, - 17185.225101773394, - 17872.983920188763, - 18427.707330106965, - 18855.92566133429, - 19169.10047251546, - 19372.368246252554, - 19465.235761032753, - 19452.02155272674, - 19332.03426763501, - 19112.23791861202, - 18806.302883215634, - 18426.604768121913, - 17991.971729060366, - 17518.36276824924, - 17018.28951527407, - 16501.93738985344, - 15974.822989644408, - 15441.444484735008, - 14906.887780635236, - 14378.064306674432, - 13864.124089452425, - 13375.20519177579, - 12918.728981713695, - 12496.616624747874, - 12103.340800479202, - 11722.963019298704, - 11333.223706519382, - 10908.101611918291, - 10424.638236238767, - 9865.703720592912, - 9229.68675237528, - 8528.60215301675, - 7786.658874109033, - 7040.196973476333, - 6327.272395636563, - 5682.9559581747435, - 5132.7004882519705, - 4693.139644671605, - 4364.279088393019, - 4138.906619256033, - 4004.0664885027154, - 3941.894162859102, - 3940.116120437777, - 3987.4821735439996, - 4076.471096183478, - 4202.160477080197, - 4356.870398445842, - 4531.985372514304, - 4714.829796941902, - 4890.0011568592445, - 5042.3866670043, - 5160.293066658813, - 5236.193634687645, - 5269.699175223857, - 5268.246299453309, - 5240.545080519456, - 5198.192014487785, - 5150.592414436514, - 5102.009651217895, - 5052.240352810629, - 4997.193248488464, - 4931.156860923695, - 4850.135066791323, - 4753.353454053276, - 4645.317938935499, - 4534.20225759486, - 4429.960633612766, - 4341.630235876488, - 4274.893760808228, - 4229.900397616662, - 4202.4601509618, - 4185.777525860693, - 4172.381707139646, - 4158.170055386859, - 4143.482502004909, - 4133.022981580004, - 4134.447276221602, - 4154.851857977935, - 4198.3495224399285, - 4263.62101070986, - 4343.015649547808, - 4427.289050765826, - 4507.9466224836, - 4583.258583278253, - 4662.974338291521, - 4770.029911501084, - 4939.83817282409, - 5215.001151135549, - 5635.561756494792, - 6237.441855028859, - 7033.298846208474, - 8017.4695805941565 - ], - "flow:J82:branch86_seg2": [ - 1.4619593313273458, - 1.918988397275649, - 2.446885932365547, - 3.024793041858117, - 3.626426886504451, - 4.2245026195050315, - 4.794343079856798, - 5.316777849842249, - 5.779012674428692, - 6.175757083339196, - 6.5065919983834455, - 6.774306864625979, - 6.983242092512711, - 7.136643059943132, - 7.236859942841081, - 7.285124376508159, - 7.282090031404337, - 7.22976258322004, - 7.131342765713713, - 6.992094068958276, - 6.818957814537161, - 6.619268990440257, - 6.400217167962909, - 6.1677309557764755, - 5.926204611318044, - 5.678831805797626, - 5.428165134409585, - 5.1769773042341605, - 4.928753598479078, - 4.687684176906324, - 4.457882574736342, - 4.242338599723859, - 4.041440975197759, - 3.852021743396167, - 3.667228518686948, - 3.4772065453847087, - 3.270918961316861, - 3.038422053041571, - 2.7735962861575922, - 2.475486275653174, - 2.1496013731584247, - 1.8071108196653136, - 1.4631106804627505, - 1.1340894225986249, - 0.8353155462982296, - 0.5783696955505034, - 0.36969272369121536, - 0.21097427072884237, - 0.09923306358873468, - 0.02900962644512185, - -0.00603720977248713, - -0.012030011262295866, - 0.00634542314891447, - 0.045349598382961744, - 0.10173826419443628, - 0.1719999056550228, - 0.2514150302847125, - 0.3340913254983473, - 0.4133226041916801, - 0.48259262868517283, - 0.5366018556409979, - 0.572530877122458, - 0.5902488039298035, - 0.5921200079538707, - 0.5823223714915003, - 0.5653199856754616, - 0.5447638276943625, - 0.5226006967656345, - 0.49880963409427387, - 0.47190368754622053, - 0.43987234802363, - 0.4013189453033894, - 0.3563805612006044, - 0.30699044632468686, - 0.25665023232792983, - 0.2094947496737331, - 0.16918513323365, - 0.13784821173616202, - 0.11569829492497737, - 0.1010344761245584, - 0.09110841812427269, - 0.08326297922919838, - 0.07596273935646557, - 0.0694602282758513, - 0.06575565996149305, - 0.06779350132426559, - 0.07835181868717865, - 0.09869696936194357, - 0.1279680745077468, - 0.16330177407251695, - 0.20086027196039205, - 0.2378000470056314, - 0.27439223560783915, - 0.31574434501854737, - 0.3726390182158447, - 0.46061796175415626, - 0.5981240230015238, - 0.8030951963751545, - 1.0888233253870916, - 1.4619593313273458 - ], - "pressure:J82:branch86_seg2": [ - 8017.4695805941565, - 9163.533505201432, - 10418.684269946476, - 11725.887089967218, - 13022.488396454226, - 14251.22179101299, - 15368.536038493778, - 16351.26043624991, - 17185.225101773394, - 17872.983920188763, - 18427.707330106965, - 18855.92566133429, - 19169.10047251546, - 19372.368246252554, - 19465.235761032753, - 19452.02155272674, - 19332.03426763501, - 19112.23791861202, - 18806.302883215634, - 18426.604768121913, - 17991.971729060366, - 17518.36276824924, - 17018.28951527407, - 16501.93738985344, - 15974.822989644408, - 15441.444484735008, - 14906.887780635236, - 14378.064306674432, - 13864.124089452425, - 13375.20519177579, - 12918.728981713695, - 12496.616624747874, - 12103.340800479202, - 11722.963019298704, - 11333.223706519382, - 10908.101611918291, - 10424.638236238767, - 9865.703720592912, - 9229.68675237528, - 8528.60215301675, - 7786.658874109033, - 7040.196973476333, - 6327.272395636563, - 5682.9559581747435, - 5132.7004882519705, - 4693.139644671605, - 4364.279088393019, - 4138.906619256033, - 4004.0664885027154, - 3941.894162859102, - 3940.116120437777, - 3987.4821735439996, - 4076.471096183478, - 4202.160477080197, - 4356.870398445842, - 4531.985372514304, - 4714.829796941902, - 4890.0011568592445, - 5042.3866670043, - 5160.293066658813, - 5236.193634687645, - 5269.699175223857, - 5268.246299453309, - 5240.545080519456, - 5198.192014487785, - 5150.592414436514, - 5102.009651217895, - 5052.240352810629, - 4997.193248488464, - 4931.156860923695, - 4850.135066791323, - 4753.353454053276, - 4645.317938935499, - 4534.20225759486, - 4429.960633612766, - 4341.630235876488, - 4274.893760808228, - 4229.900397616662, - 4202.4601509618, - 4185.777525860693, - 4172.381707139646, - 4158.170055386859, - 4143.482502004909, - 4133.022981580004, - 4134.447276221602, - 4154.851857977935, - 4198.3495224399285, - 4263.62101070986, - 4343.015649547808, - 4427.289050765826, - 4507.9466224836, - 4583.258583278253, - 4662.974338291521, - 4770.029911501084, - 4939.83817282409, - 5215.001151135549, - 5635.561756494792, - 6237.441855028859, - 7033.298846208474, - 8017.4695805941565 - ], - "flow:branch87_seg0:J83": [ - 0.6883278844883765, - 0.9029445020723696, - 1.1501107075015877, - 1.4199832389488298, - 1.700130022494641, - 1.9778202894338632, - 2.241658608253943, - 2.482912802664006, - 2.69578620826025, - 2.8780649285170212, - 3.0297141623001207, - 3.152124918758887, - 3.2474009875570267, - 3.316997843446769, - 3.36199718305772, - 3.3829206320500727, - 3.380048112839918, - 3.3543779695909945, - 3.3073604285806253, - 3.241529940291334, - 3.160184637619508, - 3.066708555295415, - 2.9644633081543272, - 2.856164278310599, - 2.7437988614570146, - 2.6288202380108237, - 2.512380665950049, - 2.395767962194954, - 2.280621090621476, - 2.168911281436489, - 2.062549086942357, - 1.9629092015469713, - 1.87011108718138, - 1.7825768747282407, - 1.6970270540098433, - 1.6087910988135983, - 1.5126807430083329, - 1.404099130105621, - 1.2803030078492437, - 1.1409609522615918, - 0.9888296507909244, - 0.8292680479373462, - 0.6694064642098231, - 0.5169475624960683, - 0.37901494218584914, - 0.26086244467008995, - 0.1653045844414057, - 0.09306189610289634, - 0.042553048265539524, - 0.01116899607020998, - -0.004045894820269185, - -0.005980112228777351, - 0.00326694089616116, - 0.021989246184934096, - 0.048677608129120975, - 0.0817235419868011, - 0.1188977572948888, - 0.1574252418015251, - 0.19416760186500703, - 0.22609439942836285, - 0.25076658122963685, - 0.2669447243424586, - 0.2746388680998126, - 0.2750256943306216, - 0.27011248974059915, - 0.2619840039462258, - 0.25232081917568466, - 0.2419854667157045, - 0.23090811415196458, - 0.2183511247969648, - 0.20335042439629056, - 0.1852696721308944, - 0.16421909672647705, - 0.14113699664854892, - 0.11770410886280208, - 0.09587007134951968, - 0.07733122712248212, - 0.06302754955089986, - 0.05301573277475744, - 0.04644558920919239, - 0.04199313882710127, - 0.03842524428999053, - 0.035052621187610114, - 0.032040751428012666, - 0.03037363487962301, - 0.031454293535117736, - 0.03658074705752641, - 0.04630283773678307, - 0.06016526090719568, - 0.07677280903206048, - 0.0942986385451147, - 0.11143119203423378, - 0.12836913909843253, - 0.14761015181248308, - 0.17432797977462094, - 0.21585783272636844, - 0.28092633605192147, - 0.37787012581969676, - 0.5126410511803184, - 0.6883278844883765 - ], - "pressure:branch87_seg0:J83": [ - 7118.754718111929, - 8076.539467403834, - 9170.494709892742, - 10356.27118328248, - 11578.895489765851, - 12783.031805349967, - 13920.194428725556, - 14954.872142118258, - 15863.295499666654, - 16637.48435637565, - 17279.375765774632, - 17794.805497195248, - 18193.212669636523, - 18480.786503939824, - 18661.348533146014, - 18737.56532745262, - 18710.39619668289, - 18584.396736794362, - 18366.9836404015, - 18069.302387665204, - 17706.212305317873, - 17292.537595411206, - 16842.514769895504, - 16367.670497830632, - 15876.176326819172, - 15374.07189305184, - 14866.356792979965, - 14358.797940667555, - 13858.765149515435, - 13375.014206774953, - 12915.66708486339, - 12486.097643438348, - 12086.005142920718, - 11707.25364345178, - 11334.582735112452, - 10946.99817162123, - 10522.042525559, - 10040.217234816171, - 9491.089516220978, - 8875.149861853086, - 8205.949017426165, - 7508.511555651365, - 6814.627042020193, - 6157.794438042746, - 5568.082040018964, - 5067.281338168294, - 4665.877747268203, - 4365.607644440374, - 4158.7614017533815, - 4033.167109751041, - 3976.1588956379464, - 3975.394592969202, - 4022.0733416501116, - 4109.146065169738, - 4229.868136753683, - 4377.109005450352, - 4540.796979032547, - 4708.449136034015, - 4866.299101566476, - 5001.474084815071, - 5103.845483428982, - 5168.703292968252, - 5197.19844542521, - 5194.865885702808, - 5170.753379962184, - 5133.951802056919, - 5091.28133563429, - 5045.921797387418, - 4997.052240712458, - 4941.141623685624, - 4874.049175832354, - 4793.319289506126, - 4699.991437164439, - 4598.682569729815, - 4497.029033410631, - 4403.530469731748, - 4325.288211354169, - 4265.793649079406, - 4224.698357733681, - 4197.902145358776, - 4179.426572504786, - 4164.143403549566, - 4149.538268728823, - 4136.879455171165, - 4130.8875096311485, - 4137.754670146611, - 4162.871292111744, - 4208.117710507339, - 4270.699234806516, - 4344.162055252196, - 4420.552961888359, - 4494.747654547001, - 4568.857463485128, - 4655.365697190588, - 4778.441378357076, - 4971.267583451323, - 5271.91639112955, - 5716.326978822985, - 6328.286824762049, - 7118.754718111929 - ], - "flow:J83:branch87_seg1": [ - 0.6883278844883765, - 0.9029445020723696, - 1.1501107075015877, - 1.4199832389488298, - 1.700130022494641, - 1.9778202894338632, - 2.241658608253943, - 2.482912802664006, - 2.69578620826025, - 2.8780649285170212, - 3.0297141623001207, - 3.152124918758887, - 3.2474009875570267, - 3.316997843446769, - 3.36199718305772, - 3.3829206320500727, - 3.380048112839918, - 3.3543779695909945, - 3.3073604285806253, - 3.241529940291334, - 3.160184637619508, - 3.066708555295415, - 2.9644633081543272, - 2.856164278310599, - 2.7437988614570146, - 2.6288202380108237, - 2.512380665950049, - 2.395767962194954, - 2.280621090621476, - 2.168911281436489, - 2.062549086942357, - 1.9629092015469713, - 1.87011108718138, - 1.7825768747282407, - 1.6970270540098433, - 1.6087910988135983, - 1.5126807430083329, - 1.404099130105621, - 1.2803030078492437, - 1.1409609522615918, - 0.9888296507909244, - 0.8292680479373462, - 0.6694064642098231, - 0.5169475624960683, - 0.37901494218584914, - 0.26086244467008995, - 0.1653045844414057, - 0.09306189610289634, - 0.042553048265539524, - 0.01116899607020998, - -0.004045894820269185, - -0.005980112228777351, - 0.00326694089616116, - 0.021989246184934096, - 0.048677608129120975, - 0.0817235419868011, - 0.1188977572948888, - 0.1574252418015251, - 0.19416760186500703, - 0.22609439942836285, - 0.25076658122963685, - 0.2669447243424586, - 0.2746388680998126, - 0.2750256943306216, - 0.27011248974059915, - 0.2619840039462258, - 0.25232081917568466, - 0.2419854667157045, - 0.23090811415196458, - 0.2183511247969648, - 0.20335042439629056, - 0.1852696721308944, - 0.16421909672647705, - 0.14113699664854892, - 0.11770410886280208, - 0.09587007134951968, - 0.07733122712248212, - 0.06302754955089986, - 0.05301573277475744, - 0.04644558920919239, - 0.04199313882710127, - 0.03842524428999053, - 0.035052621187610114, - 0.032040751428012666, - 0.03037363487962301, - 0.031454293535117736, - 0.03658074705752641, - 0.04630283773678307, - 0.06016526090719568, - 0.07677280903206048, - 0.0942986385451147, - 0.11143119203423378, - 0.12836913909843253, - 0.14761015181248308, - 0.17432797977462094, - 0.21585783272636844, - 0.28092633605192147, - 0.37787012581969676, - 0.5126410511803184, - 0.6883278844883765 - ], - "pressure:J83:branch87_seg1": [ - 7118.754718111929, - 8076.539467403834, - 9170.494709892742, - 10356.27118328248, - 11578.895489765851, - 12783.031805349967, - 13920.194428725556, - 14954.872142118258, - 15863.295499666654, - 16637.48435637565, - 17279.375765774632, - 17794.805497195248, - 18193.212669636523, - 18480.786503939824, - 18661.348533146014, - 18737.56532745262, - 18710.39619668289, - 18584.396736794362, - 18366.9836404015, - 18069.302387665204, - 17706.212305317873, - 17292.537595411206, - 16842.514769895504, - 16367.670497830632, - 15876.176326819172, - 15374.07189305184, - 14866.356792979965, - 14358.797940667555, - 13858.765149515435, - 13375.014206774953, - 12915.66708486339, - 12486.097643438348, - 12086.005142920718, - 11707.25364345178, - 11334.582735112452, - 10946.99817162123, - 10522.042525559, - 10040.217234816171, - 9491.089516220978, - 8875.149861853086, - 8205.949017426165, - 7508.511555651365, - 6814.627042020193, - 6157.794438042746, - 5568.082040018964, - 5067.281338168294, - 4665.877747268203, - 4365.607644440374, - 4158.7614017533815, - 4033.167109751041, - 3976.1588956379464, - 3975.394592969202, - 4022.0733416501116, - 4109.146065169738, - 4229.868136753683, - 4377.109005450352, - 4540.796979032547, - 4708.449136034015, - 4866.299101566476, - 5001.474084815071, - 5103.845483428982, - 5168.703292968252, - 5197.19844542521, - 5194.865885702808, - 5170.753379962184, - 5133.951802056919, - 5091.28133563429, - 5045.921797387418, - 4997.052240712458, - 4941.141623685624, - 4874.049175832354, - 4793.319289506126, - 4699.991437164439, - 4598.682569729815, - 4497.029033410631, - 4403.530469731748, - 4325.288211354169, - 4265.793649079406, - 4224.698357733681, - 4197.902145358776, - 4179.426572504786, - 4164.143403549566, - 4149.538268728823, - 4136.879455171165, - 4130.8875096311485, - 4137.754670146611, - 4162.871292111744, - 4208.117710507339, - 4270.699234806516, - 4344.162055252196, - 4420.552961888359, - 4494.747654547001, - 4568.857463485128, - 4655.365697190588, - 4778.441378357076, - 4971.267583451323, - 5271.91639112955, - 5716.326978822985, - 6328.286824762049, - 7118.754718111929 - ], - "flow:branch87_seg1:J84": [ - 0.6873286061608532, - 0.9017682179172327, - 1.1488014778151825, - 1.4186010260696476, - 1.6987375259118056, - 1.9764778841055517, - 2.2404168248909535, - 2.4818030142696794, - 2.6948268536420037, - 2.8772613208467175, - 3.0290565956200743, - 3.1516059113204276, - 3.2470122135067543, - 3.3167312589640363, - 3.3618525450127397, - 3.382893013223197, - 3.3801350294017025, - 3.354576996352631, - 3.3076561143833128, - 3.241908679287867, - 3.1606303406411467, - 3.0672025898384274, - 2.9649919517863434, - 2.856715996893099, - 2.7443655031124807, - 2.6293963234214384, - 2.5129601249349682, - 2.3963433029844037, - 2.2811831491248165, - 2.169449855630324, - 2.063055721359866, - 1.9633810008232317, - 1.8705522543981157, - 1.7830010115272448, - 1.6974556032992023, - 1.6092501949007905, - 1.513193720338935, - 1.4046851271426584, - 1.2809687368411415, - 1.1416963994730174, - 0.9896139182529278, - 0.8300674758283689, - 0.6701823788221102, - 0.5176615229494751, - 0.3796398325912655, - 0.2613781581513469, - 0.16570276934936778, - 0.09334942029558607, - 0.04273952036856122, - 0.011270272873547852, - -0.004014513177773431, - -0.006008101676286058, - 0.003189457877004891, - 0.021869604438755463, - 0.04852320169288625, - 0.08154429878815424, - 0.11870632834074563, - 0.15723696049599337, - 0.19399853971890763, - 0.2259575608032897, - 0.25067069178930934, - 0.2668929890768216, - 0.27462543757473246, - 0.2750423273563999, - 0.2701490314330801, - 0.26203032127990766, - 0.25237110113231287, - 0.24203865903915786, - 0.23096695961388786, - 0.2184206416738119, - 0.20343438798461042, - 0.18536922633632053, - 0.16433135016921951, - 0.1412542737214525, - 0.11781681754259248, - 0.09596908767136098, - 0.07741010870552446, - 0.06308423698886055, - 0.05305334783915815, - 0.04647020779129113, - 0.042011478718988485, - 0.03844215445077248, - 0.03506881321688694, - 0.03205256571452404, - 0.030374297347802733, - 0.03143682634987054, - 0.03654074210996578, - 0.04624008153790449, - 0.06008619807552098, - 0.07668615583685742, - 0.0942124303032559, - 0.11134798219575205, - 0.1282811219134018, - 0.14749653304563595, - 0.1741556434904849, - 0.21558283172047005, - 0.2805086370130448, - 0.37727380953107004, - 0.5118406628508246, - 0.6873286061608532 - ], - "pressure:branch87_seg1:J84": [ - 7020.544822166004, - 7957.922140818396, - 9034.5476973111, - 10207.308928665456, - 11422.052804097308, - 12623.644089543015, - 13763.069253043426, - 14803.30341707368, - 15719.699445532775, - 16503.199279476263, - 17154.329812944303, - 17679.050960928744, - 18086.574064332868, - 18383.156170416292, - 18573.203711540496, - 18659.09787010612, - 18641.970604273032, - 18526.21934664635, - 18318.46184010142, - 18029.723334634917, - 17674.456094820085, - 17267.341612169203, - 16822.821957342312, - 16352.565380880065, - 15865.02631993937, - 15366.410022980475, - 14861.69991723362, - 14356.525692419551, - 13858.063366838733, - 13374.910032968775, - 12915.281496752743, - 12484.94188092992, - 12084.149890699364, - 11705.663170516053, - 11334.9605438145, - 10951.59407127105, - 10533.119948107797, - 10059.784918081026, - 9520.182395724385, - 8913.486573341132, - 8252.13898928843, - 7559.900055860574, - 6867.904527491581, - 6209.514728887712, - 5615.310578654602, - 5107.70584331374, - 4698.324588470525, - 4389.859982926869, - 4175.183011336862, - 4042.729778508326, - 3979.7626969046783, - 3973.8291093811695, - 4015.949101239077, - 4098.852902899759, - 4215.940249087914, - 4360.207172311966, - 4521.8766864087775, - 4688.794811083995, - 4847.330170863942, - 4984.452675725516, - 5089.749122345747, - 5158.067623329785, - 5189.804308349954, - 5190.1922675574315, - 5168.029207439252, - 5132.353444008886, - 5090.289749844958, - 5045.392591727337, - 4997.193340307756, - 4942.392938337487, - 4876.828983871096, - 4797.844231409466, - 4706.0962658547005, - 4605.817970358851, - 4504.395961795688, - 4410.28368935136, - 4330.742418731408, - 4269.651716331337, - 4227.06936792932, - 4199.183582281668, - 4180.1850773052665, - 4164.80773428635, - 4150.21899648776, - 4137.310508261659, - 4130.486460289182, - 4135.854601538844, - 4158.957925423002, - 4202.015683344347, - 4262.796571056954, - 4335.131354646111, - 4411.101953291504, - 4485.208930213934, - 4558.708775971206, - 4642.935965009087, - 4760.834933884415, - 4944.582314452944, - 5232.032449244405, - 5659.196531163515, - 6251.157368860843, - 7020.544822166004 - ], - "flow:J84:branch87_seg2": [ - 0.6873286061608532, - 0.9017682179172327, - 1.1488014778151825, - 1.4186010260696476, - 1.6987375259118056, - 1.9764778841055517, - 2.2404168248909535, - 2.4818030142696794, - 2.6948268536420037, - 2.8772613208467175, - 3.0290565956200743, - 3.1516059113204276, - 3.2470122135067543, - 3.3167312589640363, - 3.3618525450127397, - 3.382893013223197, - 3.3801350294017025, - 3.354576996352631, - 3.3076561143833128, - 3.241908679287867, - 3.1606303406411467, - 3.0672025898384274, - 2.9649919517863434, - 2.856715996893099, - 2.7443655031124807, - 2.6293963234214384, - 2.5129601249349682, - 2.3963433029844037, - 2.2811831491248165, - 2.169449855630324, - 2.063055721359866, - 1.9633810008232317, - 1.8705522543981157, - 1.7830010115272448, - 1.6974556032992023, - 1.6092501949007905, - 1.513193720338935, - 1.4046851271426584, - 1.2809687368411415, - 1.1416963994730174, - 0.9896139182529278, - 0.8300674758283689, - 0.6701823788221102, - 0.5176615229494751, - 0.3796398325912655, - 0.2613781581513469, - 0.16570276934936778, - 0.09334942029558607, - 0.04273952036856122, - 0.011270272873547852, - -0.004014513177773431, - -0.006008101676286058, - 0.003189457877004891, - 0.021869604438755463, - 0.04852320169288625, - 0.08154429878815424, - 0.11870632834074563, - 0.15723696049599337, - 0.19399853971890763, - 0.2259575608032897, - 0.25067069178930934, - 0.2668929890768216, - 0.27462543757473246, - 0.2750423273563999, - 0.2701490314330801, - 0.26203032127990766, - 0.25237110113231287, - 0.24203865903915786, - 0.23096695961388786, - 0.2184206416738119, - 0.20343438798461042, - 0.18536922633632053, - 0.16433135016921951, - 0.1412542737214525, - 0.11781681754259248, - 0.09596908767136098, - 0.07741010870552446, - 0.06308423698886055, - 0.05305334783915815, - 0.04647020779129113, - 0.042011478718988485, - 0.03844215445077248, - 0.03506881321688694, - 0.03205256571452404, - 0.030374297347802733, - 0.03143682634987054, - 0.03654074210996578, - 0.04624008153790449, - 0.06008619807552098, - 0.07668615583685742, - 0.0942124303032559, - 0.11134798219575205, - 0.1282811219134018, - 0.14749653304563595, - 0.1741556434904849, - 0.21558283172047005, - 0.2805086370130448, - 0.37727380953107004, - 0.5118406628508246, - 0.6873286061608532 - ], - "pressure:J84:branch87_seg2": [ - 7020.544822166004, - 7957.922140818396, - 9034.5476973111, - 10207.308928665456, - 11422.052804097308, - 12623.644089543015, - 13763.069253043426, - 14803.30341707368, - 15719.699445532775, - 16503.199279476263, - 17154.329812944303, - 17679.050960928744, - 18086.574064332868, - 18383.156170416292, - 18573.203711540496, - 18659.09787010612, - 18641.970604273032, - 18526.21934664635, - 18318.46184010142, - 18029.723334634917, - 17674.456094820085, - 17267.341612169203, - 16822.821957342312, - 16352.565380880065, - 15865.02631993937, - 15366.410022980475, - 14861.69991723362, - 14356.525692419551, - 13858.063366838733, - 13374.910032968775, - 12915.281496752743, - 12484.94188092992, - 12084.149890699364, - 11705.663170516053, - 11334.9605438145, - 10951.59407127105, - 10533.119948107797, - 10059.784918081026, - 9520.182395724385, - 8913.486573341132, - 8252.13898928843, - 7559.900055860574, - 6867.904527491581, - 6209.514728887712, - 5615.310578654602, - 5107.70584331374, - 4698.324588470525, - 4389.859982926869, - 4175.183011336862, - 4042.729778508326, - 3979.7626969046783, - 3973.8291093811695, - 4015.949101239077, - 4098.852902899759, - 4215.940249087914, - 4360.207172311966, - 4521.8766864087775, - 4688.794811083995, - 4847.330170863942, - 4984.452675725516, - 5089.749122345747, - 5158.067623329785, - 5189.804308349954, - 5190.1922675574315, - 5168.029207439252, - 5132.353444008886, - 5090.289749844958, - 5045.392591727337, - 4997.193340307756, - 4942.392938337487, - 4876.828983871096, - 4797.844231409466, - 4706.0962658547005, - 4605.817970358851, - 4504.395961795688, - 4410.28368935136, - 4330.742418731408, - 4269.651716331337, - 4227.06936792932, - 4199.183582281668, - 4180.1850773052665, - 4164.80773428635, - 4150.21899648776, - 4137.310508261659, - 4130.486460289182, - 4135.854601538844, - 4158.957925423002, - 4202.015683344347, - 4262.796571056954, - 4335.131354646111, - 4411.101953291504, - 4485.208930213934, - 4558.708775971206, - 4642.935965009087, - 4760.834933884415, - 4944.582314452944, - 5232.032449244405, - 5659.196531163515, - 6251.157368860843, - 7020.544822166004 - ], - "flow:branch90_seg0:J85": [ - 0.8371388995164721, - 1.0779123939154023, - 1.3391082882406071, - 1.6074916844495972, - 1.8688220797157602, - 2.1111138407371497, - 2.3258775379815324, - 2.508979470325467, - 2.6590405750837625, - 2.778568551905291, - 2.8709414930190698, - 2.939047934773435, - 2.985848255509739, - 3.0121314332794946, - 3.01809554058416, - 3.0038004933018536, - 2.969000999241053, - 2.9153448824632946, - 2.845052186207993, - 2.761368171226676, - 2.668356110737511, - 2.569255514262271, - 2.466859498169833, - 2.362894126956664, - 2.2581435165851507, - 2.1531605116723442, - 2.048582220059056, - 1.9456474630957004, - 1.8462149337341198, - 1.7524364939333574, - 1.665914962179702, - 1.5871196505934877, - 1.5146061687732184, - 1.4447363943883813, - 1.3723804116443423, - 1.2916003527344782, - 1.197141201046564, - 1.0855632043265917, - 0.9568473829734072, - 0.813943534824602, - 0.6631187830328065, - 0.5127027389848914, - 0.3713649702786256, - 0.24674137532033266, - 0.14431795636318123, - 0.06660389586435335, - 0.012763949444805254, - -0.01948081847702992, - -0.034276136612587535, - -0.03568676325398808, - -0.02675116518687108, - -0.009953751025026714, - 0.013646997830647002, - 0.04322624539385618, - 0.07764699903918308, - 0.115382511281709, - 0.1537827513619025, - 0.18966288974577386, - 0.2198024377268686, - 0.24169606376906122, - 0.25393612581031405, - 0.2569065595912781, - 0.25237981247669083, - 0.2428300339534454, - 0.23114722704341376, - 0.2194016263454454, - 0.20854233747557094, - 0.19830971073859985, - 0.1874587679966994, - 0.1744387074223062, - 0.1580914854415999, - 0.13820518419667727, - 0.11582346337462764, - 0.09285685650332272, - 0.07171712960148348, - 0.05451057339090727, - 0.042452867581121934, - 0.03542104189254943, - 0.032293992228189246, - 0.031199527147029213, - 0.03029056106134371, - 0.028548870866473456, - 0.026054804272132203, - 0.024024613514453057, - 0.024382371742060857, - 0.02892478041037775, - 0.038687010591700544, - 0.05326366534323831, - 0.07091189370885415, - 0.08924094719681475, - 0.10607137457149, - 0.120861618241287, - 0.13571751822327227, - 0.15580446784720184, - 0.1891480347152579, - 0.24513215805729197, - 0.33307487168074745, - 0.4602082513639805, - 0.6286878158267397, - 0.8371388995164721 - ], - "pressure:branch90_seg0:J85": [ - 8688.41366192405, - 9999.356163855131, - 11404.857319605784, - 12833.739675656398, - 14212.06095332212, - 15478.083462636338, - 16590.060881613826, - 17531.831647105715, - 18298.24864077356, - 18903.86238333912, - 19370.218351791547, - 19709.598559584458, - 19937.136448789923, - 20056.816397346203, - 20066.96676255012, - 19970.258128728492, - 19764.722157421747, - 19459.519422667996, - 19070.2490340718, - 18612.68888151948, - 18109.209208615976, - 17577.046447627956, - 17029.168276591165, - 16474.413447585423, - 15916.105184904001, - 15356.943934864199, - 14800.952508694361, - 14255.318744627408, - 13730.419503204848, - 13237.78677745842, - 12785.106842120114, - 12372.947821770284, - 11991.915317490872, - 11620.263936892039, - 11229.375085606314, - 10787.51125981395, - 10268.596560492839, - 9656.055076115488, - 8953.590066884395, - 8181.090212441805, - 7373.431290248416, - 6577.196570626673, - 5838.170618066038, - 5195.360035686112, - 4673.958442068847, - 4285.869773249703, - 4023.2013655380865, - 3871.1894055981506, - 3808.802781654048, - 3813.158955289119, - 3869.8066277649355, - 3966.9670546330503, - 4098.956896137082, - 4262.274128814593, - 4449.940065478154, - 4652.999254330034, - 4856.750193799567, - 5043.581727551905, - 5196.6122652175145, - 5303.838754566911, - 5359.101996943769, - 5365.664985419224, - 5335.253801764471, - 5280.788071206153, - 5217.401693178751, - 5155.581232705255, - 5098.775622470792, - 5044.398031642259, - 4985.209680247096, - 4912.889438249929, - 4822.19706558406, - 4712.958970725702, - 4591.968019580729, - 4470.322827768377, - 4360.800884425647, - 4273.968629470889, - 4215.250627057617, - 4182.660202944148, - 4169.052514679547, - 4164.386033575161, - 4159.071606972732, - 4148.712888484451, - 4135.092160400014, - 4125.654499260647, - 4131.028826681436, - 4160.224694649487, - 4217.567085170753, - 4299.668361253496, - 4395.546069364406, - 4492.537529719109, - 4580.012828292047, - 4657.1994895470425, - 4738.39717927959, - 4854.268646079227, - 5049.923165683905, - 5376.763396552325, - 5881.290851301234, - 6600.646332535919, - 7541.356746790193, - 8688.41366192405 - ], - "flow:J85:branch90_seg1": [ - 0.8371388995164721, - 1.0779123939154023, - 1.3391082882406071, - 1.6074916844495972, - 1.8688220797157602, - 2.1111138407371497, - 2.3258775379815324, - 2.508979470325467, - 2.6590405750837625, - 2.778568551905291, - 2.8709414930190698, - 2.939047934773435, - 2.985848255509739, - 3.0121314332794946, - 3.01809554058416, - 3.0038004933018536, - 2.969000999241053, - 2.9153448824632946, - 2.845052186207993, - 2.761368171226676, - 2.668356110737511, - 2.569255514262271, - 2.466859498169833, - 2.362894126956664, - 2.2581435165851507, - 2.1531605116723442, - 2.048582220059056, - 1.9456474630957004, - 1.8462149337341198, - 1.7524364939333574, - 1.665914962179702, - 1.5871196505934877, - 1.5146061687732184, - 1.4447363943883813, - 1.3723804116443423, - 1.2916003527344782, - 1.197141201046564, - 1.0855632043265917, - 0.9568473829734072, - 0.813943534824602, - 0.6631187830328065, - 0.5127027389848914, - 0.3713649702786256, - 0.24674137532033266, - 0.14431795636318123, - 0.06660389586435335, - 0.012763949444805254, - -0.01948081847702992, - -0.034276136612587535, - -0.03568676325398808, - -0.02675116518687108, - -0.009953751025026714, - 0.013646997830647002, - 0.04322624539385618, - 0.07764699903918308, - 0.115382511281709, - 0.1537827513619025, - 0.18966288974577386, - 0.2198024377268686, - 0.24169606376906122, - 0.25393612581031405, - 0.2569065595912781, - 0.25237981247669083, - 0.2428300339534454, - 0.23114722704341376, - 0.2194016263454454, - 0.20854233747557094, - 0.19830971073859985, - 0.1874587679966994, - 0.1744387074223062, - 0.1580914854415999, - 0.13820518419667727, - 0.11582346337462764, - 0.09285685650332272, - 0.07171712960148348, - 0.05451057339090727, - 0.042452867581121934, - 0.03542104189254943, - 0.032293992228189246, - 0.031199527147029213, - 0.03029056106134371, - 0.028548870866473456, - 0.026054804272132203, - 0.024024613514453057, - 0.024382371742060857, - 0.02892478041037775, - 0.038687010591700544, - 0.05326366534323831, - 0.07091189370885415, - 0.08924094719681475, - 0.10607137457149, - 0.120861618241287, - 0.13571751822327227, - 0.15580446784720184, - 0.1891480347152579, - 0.24513215805729197, - 0.33307487168074745, - 0.4602082513639805, - 0.6286878158267397, - 0.8371388995164721 - ], - "pressure:J85:branch90_seg1": [ - 8688.41366192405, - 9999.356163855131, - 11404.857319605784, - 12833.739675656398, - 14212.06095332212, - 15478.083462636338, - 16590.060881613826, - 17531.831647105715, - 18298.24864077356, - 18903.86238333912, - 19370.218351791547, - 19709.598559584458, - 19937.136448789923, - 20056.816397346203, - 20066.96676255012, - 19970.258128728492, - 19764.722157421747, - 19459.519422667996, - 19070.2490340718, - 18612.68888151948, - 18109.209208615976, - 17577.046447627956, - 17029.168276591165, - 16474.413447585423, - 15916.105184904001, - 15356.943934864199, - 14800.952508694361, - 14255.318744627408, - 13730.419503204848, - 13237.78677745842, - 12785.106842120114, - 12372.947821770284, - 11991.915317490872, - 11620.263936892039, - 11229.375085606314, - 10787.51125981395, - 10268.596560492839, - 9656.055076115488, - 8953.590066884395, - 8181.090212441805, - 7373.431290248416, - 6577.196570626673, - 5838.170618066038, - 5195.360035686112, - 4673.958442068847, - 4285.869773249703, - 4023.2013655380865, - 3871.1894055981506, - 3808.802781654048, - 3813.158955289119, - 3869.8066277649355, - 3966.9670546330503, - 4098.956896137082, - 4262.274128814593, - 4449.940065478154, - 4652.999254330034, - 4856.750193799567, - 5043.581727551905, - 5196.6122652175145, - 5303.838754566911, - 5359.101996943769, - 5365.664985419224, - 5335.253801764471, - 5280.788071206153, - 5217.401693178751, - 5155.581232705255, - 5098.775622470792, - 5044.398031642259, - 4985.209680247096, - 4912.889438249929, - 4822.19706558406, - 4712.958970725702, - 4591.968019580729, - 4470.322827768377, - 4360.800884425647, - 4273.968629470889, - 4215.250627057617, - 4182.660202944148, - 4169.052514679547, - 4164.386033575161, - 4159.071606972732, - 4148.712888484451, - 4135.092160400014, - 4125.654499260647, - 4131.028826681436, - 4160.224694649487, - 4217.567085170753, - 4299.668361253496, - 4395.546069364406, - 4492.537529719109, - 4580.012828292047, - 4657.1994895470425, - 4738.39717927959, - 4854.268646079227, - 5049.923165683905, - 5376.763396552325, - 5881.290851301234, - 6600.646332535919, - 7541.356746790193, - 8688.41366192405 - ], - "flow:branch90_seg1:J86": [ - 0.8356369424117072, - 1.0762502621664913, - 1.3373673032904678, - 1.6057746228905685, - 1.8672069004759932, - 2.1096608404330746, - 2.3246257609415495, - 2.507945418259861, - 2.6582077459746936, - 2.777922104215045, - 2.870455625791696, - 2.9387028190760542, - 2.9856394973920057, - 3.0120513859297384, - 3.018149757898315, - 3.0039846685893394, - 2.9693110422357996, - 2.9157752857201387, - 2.8455707935455883, - 2.76195468952266, - 2.6689905322504424, - 2.5699131308229886, - 2.467530621828852, - 2.363571096955499, - 2.258822261257522, - 2.1538392189715623, - 2.0492533124907824, - 1.9462998681186892, - 1.8468350569569296, - 1.7530123478979744, - 1.666438779873452, - 1.5875984301866635, - 1.5150589004983415, - 1.4451924405708063, - 1.3728793680469917, - 1.2921801897919831, - 1.1978258481995658, - 1.086363315247347, - 0.9577513866526216, - 0.814911793142187, - 0.6641027559186612, - 0.5136457864846264, - 0.37221172763686844, - 0.2474468754591185, - 0.14487189556384003, - 0.06699828951563208, - 0.013006671116053756, - -0.019353363733281812, - -0.03424613291480685, - -0.035727906219587595, - -0.02684377811459196, - -0.01009598286336802, - 0.013466788189221071, - 0.04301281158567039, - 0.07740630984260813, - 0.11513244686243185, - 0.1535420279517053, - 0.18945262645907684, - 0.21964219953650516, - 0.24159732745888848, - 0.25389931327077697, - 0.25692446575222005, - 0.2524348169666329, - 0.2429036556296175, - 0.23122519291649948, - 0.21947403604207455, - 0.20860845411924323, - 0.19837685002706013, - 0.18753710392623602, - 0.17453793620651248, - 0.1582135021339782, - 0.13834651017600844, - 0.11597410863525379, - 0.09299980977606885, - 0.07183768133568051, - 0.05459933457309765, - 0.04250801694449312, - 0.03544629027788736, - 0.03230300709268074, - 0.031204622589732802, - 0.03029946148868828, - 0.02856443422082708, - 0.02607091701101784, - 0.024029476466867202, - 0.024362987192613567, - 0.028872210276583026, - 0.03860114830497756, - 0.05315244446659111, - 0.07079168703439362, - 0.08912775880865209, - 0.10597285946462665, - 0.12077002485436332, - 0.13560557938247084, - 0.15562536739477922, - 0.18884242482877447, - 0.24462924197693545, - 0.332337370287471, - 0.4592056402772454, - 0.6274018478328058, - 0.8356369424117072 - ], - "pressure:branch90_seg1:J86": [ - 8496.287608952953, - 9777.708766696358, - 11162.390277781136, - 12580.265906948898, - 13956.653072949666, - 15228.883960691077, - 16353.232620253964, - 17309.828164820243, - 18091.99609565122, - 18713.421113824126, - 19193.158803582362, - 19545.396264842704, - 19785.627322421962, - 19917.928786423938, - 19942.44323842776, - 19860.276683199136, - 19669.89749277824, - 19380.135485335177, - 19003.932997042117, - 18557.954963233045, - 18063.926901393996, - 17538.93665114484, - 16997.13661605779, - 16447.531183690055, - 15893.978871073778, - 15339.32443493829, - 14787.128893893825, - 14244.129013336698, - 13720.301111358247, - 13227.047731520166, - 12772.55627152215, - 12358.695460986908, - 11977.290669829063, - 11608.332791880946, - 11224.3104205453, - 10793.803903904181, - 10289.658902526036, - 9694.252078081334, - 9008.720626354407, - 8249.992073622681, - 7451.660555661259, - 6658.482375406225, - 5916.129519410369, - 5264.410345176135, - 4731.052478515634, - 4328.81012726085, - 4052.1318702143503, - 3888.1840410807577, - 3815.3460323407953, - 3811.745888150971, - 3861.9094466646666, - 3953.13937716264, - 4079.8745198443066, - 4238.037307226155, - 4421.300489324423, - 4621.364265963442, - 4824.02317199423, - 5012.232532561728, - 5169.065184649375, - 5281.7202356359685, - 5343.178961456861, - 5355.863417103443, - 5329.898874047703, - 5278.259368310379, - 5216.1433346396425, - 5154.320096742754, - 5097.27999145134, - 5043.26447950028, - 4985.494841556242, - 4915.75318217814, - 4828.211488438248, - 4722.061816772463, - 4603.222691162393, - 4482.08125820772, - 4371.367086450975, - 4282.003945713192, - 4220.080349803186, - 4184.502171577411, - 4168.979706131544, - 4163.589321715164, - 4158.63784207827, - 4149.085051758004, - 4135.791032572284, - 4125.496377323913, - 4128.495902705879, - 4154.103865584644, - 4207.412320098982, - 4285.884337305803, - 4379.749811912065, - 4476.401756561701, - 4564.63032775287, - 4642.246226388911, - 4721.371443146583, - 4830.317047744995, - 5012.260595050012, - 5317.23118675904, - 5793.514403489076, - 6478.863335188978, - 7382.978368327828, - 8496.287608952953 - ], - "flow:J86:branch90_seg2": [ - 0.8356369424117072, - 1.0762502621664913, - 1.3373673032904678, - 1.6057746228905685, - 1.8672069004759932, - 2.1096608404330746, - 2.3246257609415495, - 2.507945418259861, - 2.6582077459746936, - 2.777922104215045, - 2.870455625791696, - 2.9387028190760542, - 2.9856394973920057, - 3.0120513859297384, - 3.018149757898315, - 3.0039846685893394, - 2.9693110422357996, - 2.9157752857201387, - 2.8455707935455883, - 2.76195468952266, - 2.6689905322504424, - 2.5699131308229886, - 2.467530621828852, - 2.363571096955499, - 2.258822261257522, - 2.1538392189715623, - 2.0492533124907824, - 1.9462998681186892, - 1.8468350569569296, - 1.7530123478979744, - 1.666438779873452, - 1.5875984301866635, - 1.5150589004983415, - 1.4451924405708063, - 1.3728793680469917, - 1.2921801897919831, - 1.1978258481995658, - 1.086363315247347, - 0.9577513866526216, - 0.814911793142187, - 0.6641027559186612, - 0.5136457864846264, - 0.37221172763686844, - 0.2474468754591185, - 0.14487189556384003, - 0.06699828951563208, - 0.013006671116053756, - -0.019353363733281812, - -0.03424613291480685, - -0.035727906219587595, - -0.02684377811459196, - -0.01009598286336802, - 0.013466788189221071, - 0.04301281158567039, - 0.07740630984260813, - 0.11513244686243185, - 0.1535420279517053, - 0.18945262645907684, - 0.21964219953650516, - 0.24159732745888848, - 0.25389931327077697, - 0.25692446575222005, - 0.2524348169666329, - 0.2429036556296175, - 0.23122519291649948, - 0.21947403604207455, - 0.20860845411924323, - 0.19837685002706013, - 0.18753710392623602, - 0.17453793620651248, - 0.1582135021339782, - 0.13834651017600844, - 0.11597410863525379, - 0.09299980977606885, - 0.07183768133568051, - 0.05459933457309765, - 0.04250801694449312, - 0.03544629027788736, - 0.03230300709268074, - 0.031204622589732802, - 0.03029946148868828, - 0.02856443422082708, - 0.02607091701101784, - 0.024029476466867202, - 0.024362987192613567, - 0.028872210276583026, - 0.03860114830497756, - 0.05315244446659111, - 0.07079168703439362, - 0.08912775880865209, - 0.10597285946462665, - 0.12077002485436332, - 0.13560557938247084, - 0.15562536739477922, - 0.18884242482877447, - 0.24462924197693545, - 0.332337370287471, - 0.4592056402772454, - 0.6274018478328058, - 0.8356369424117072 - ], - "pressure:J86:branch90_seg2": [ - 8496.287608952953, - 9777.708766696358, - 11162.390277781136, - 12580.265906948898, - 13956.653072949666, - 15228.883960691077, - 16353.232620253964, - 17309.828164820243, - 18091.99609565122, - 18713.421113824126, - 19193.158803582362, - 19545.396264842704, - 19785.627322421962, - 19917.928786423938, - 19942.44323842776, - 19860.276683199136, - 19669.89749277824, - 19380.135485335177, - 19003.932997042117, - 18557.954963233045, - 18063.926901393996, - 17538.93665114484, - 16997.13661605779, - 16447.531183690055, - 15893.978871073778, - 15339.32443493829, - 14787.128893893825, - 14244.129013336698, - 13720.301111358247, - 13227.047731520166, - 12772.55627152215, - 12358.695460986908, - 11977.290669829063, - 11608.332791880946, - 11224.3104205453, - 10793.803903904181, - 10289.658902526036, - 9694.252078081334, - 9008.720626354407, - 8249.992073622681, - 7451.660555661259, - 6658.482375406225, - 5916.129519410369, - 5264.410345176135, - 4731.052478515634, - 4328.81012726085, - 4052.1318702143503, - 3888.1840410807577, - 3815.3460323407953, - 3811.745888150971, - 3861.9094466646666, - 3953.13937716264, - 4079.8745198443066, - 4238.037307226155, - 4421.300489324423, - 4621.364265963442, - 4824.02317199423, - 5012.232532561728, - 5169.065184649375, - 5281.7202356359685, - 5343.178961456861, - 5355.863417103443, - 5329.898874047703, - 5278.259368310379, - 5216.1433346396425, - 5154.320096742754, - 5097.27999145134, - 5043.26447950028, - 4985.494841556242, - 4915.75318217814, - 4828.211488438248, - 4722.061816772463, - 4603.222691162393, - 4482.08125820772, - 4371.367086450975, - 4282.003945713192, - 4220.080349803186, - 4184.502171577411, - 4168.979706131544, - 4163.589321715164, - 4158.63784207827, - 4149.085051758004, - 4135.791032572284, - 4125.496377323913, - 4128.495902705879, - 4154.103865584644, - 4207.412320098982, - 4285.884337305803, - 4379.749811912065, - 4476.401756561701, - 4564.63032775287, - 4642.246226388911, - 4721.371443146583, - 4830.317047744995, - 5012.260595050012, - 5317.23118675904, - 5793.514403489076, - 6478.863335188978, - 7382.978368327828, - 8496.287608952953 - ], - "flow:branch93_seg0:J87": [ - 0.6702316127504692, - 0.8635440942991949, - 1.0738484826896546, - 1.29050584832927, - 1.502062309305847, - 1.6987973224692796, - 1.8737484707041627, - 2.02339295682124, - 2.1465102206623725, - 2.24495297590716, - 2.3213248857966353, - 2.3779595826687214, - 2.41724425959895, - 2.4399041686483485, - 2.4461920997565243, - 2.436203645719192, - 2.4097728888031247, - 2.368181010049688, - 2.3131414507723282, - 2.2471689473760366, - 2.1734416619561014, - 2.0945351901092693, - 2.0126927785638515, - 1.929341421794099, - 1.8451686166798715, - 1.7606605798744035, - 1.6763511325904936, - 1.5932256068548127, - 1.512753076148136, - 1.436642085055538, - 1.3662000109469667, - 1.3018591524826024, - 1.2425582095253525, - 1.1855067762679583, - 1.1266867984212694, - 1.0613894192143314, - 0.9853719558026688, - 0.8957640181105655, - 0.7923495270121118, - 0.6772693674238256, - 0.5553377920966666, - 0.4330864823646797, - 0.3174502046697518, - 0.2146629078234094, - 0.1293211286373574, - 0.06371923689840434, - 0.01746987558455, - -0.01107023864346057, - -0.025077735773934077, - -0.027786051168991407, - -0.02169488148702328, - -0.008869170542043026, - 0.009725817004779673, - 0.0333535607979646, - 0.06106719489857629, - 0.09161337511081055, - 0.12287599360143261, - 0.15230220902169464, - 0.1772843529294982, - 0.19575355365956232, - 0.20650250921744107, - 0.20973891253029364, - 0.20678450038799712, - 0.19957261286810443, - 0.19040399143633835, - 0.18097323285515132, - 0.17211556909686673, - 0.1637050743554472, - 0.15481396226732247, - 0.14423457766846012, - 0.13103391611485596, - 0.1149979610061409, - 0.0969010325492193, - 0.07822656913959744, - 0.060883124484002085, - 0.046577012221150633, - 0.03633699089512362, - 0.030148013479484117, - 0.027178273417256937, - 0.025975962317294755, - 0.025071427513103116, - 0.023609140377636974, - 0.021592398726553746, - 0.019931401022136995, - 0.02012424979307927, - 0.023608944052863234, - 0.03125162000643473, - 0.04279488905032447, - 0.05691685572727983, - 0.0717420567052657, - 0.08551871762144994, - 0.09775004009611934, - 0.11001137522879642, - 0.1263170259791038, - 0.15299741407821968, - 0.19755235266105092, - 0.26749046626612766, - 0.3687572318222505, - 0.5033288528094157, - 0.6702316127504692 - ], - "pressure:branch93_seg0:J87": [ - 8518.475539871768, - 9794.398214688897, - 11170.097001953456, - 12575.993403713583, - 13939.07056920157, - 15197.845239660282, - 16309.701833768642, - 17255.81804814184, - 18030.343654948185, - 18646.036903942208, - 19122.230974575294, - 19472.195240246845, - 19710.838256738687, - 19842.682967211727, - 19867.55554888987, - 19787.47398525088, - 19600.97245834787, - 19316.834375616767, - 18948.52673218457, - 18511.486063424578, - 18026.910294345253, - 17511.42728189801, - 16978.310493996712, - 16436.537611629286, - 15889.932551117821, - 15341.484882873212, - 14795.080399101069, - 14257.520498158287, - 13738.701492524307, - 13249.748879075478, - 12798.583192670068, - 12386.60534768871, - 12005.694934445542, - 11636.04118258425, - 11250.55321047093, - 10818.563201247456, - 10313.785323170474, - 9718.918000302087, - 9035.28529224642, - 8279.754186274464, - 7484.866981921739, - 6694.61341239063, - 5953.884078358672, - 5301.940895207412, - 4765.835449573805, - 4359.355533163088, - 4077.305262413146, - 3907.1639684158295, - 3828.9126789305174, - 3820.6060028598113, - 3867.2854327503155, - 3956.5420355203473, - 4082.08031452433, - 4239.863641683115, - 4423.0760048945185, - 4622.969464005697, - 4825.4154955595, - 5013.3578766028795, - 5170.059961064646, - 5283.0077253905565, - 5345.391441686158, - 5359.481648821212, - 5335.413748801797, - 5285.720558138693, - 5225.169386164761, - 5164.344049407098, - 5107.537388140905, - 5053.0387967533225, - 4994.347343895068, - 4923.555974325958, - 4835.247709921135, - 4728.709354798248, - 4609.898628866295, - 4489.113471740205, - 4378.727053955284, - 4289.372436813931, - 4226.966862109148, - 4190.454620376417, - 4173.534009426034, - 4166.728275579618, - 4160.638752162058, - 4150.4332184976965, - 4137.117862917276, - 4127.318707074256, - 4131.065821424429, - 4157.330457588605, - 4210.879333059629, - 4289.123179650202, - 4382.298720501335, - 4478.185970905212, - 4566.096913508843, - 4644.330618923766, - 4725.357907986642, - 4837.554081392306, - 5023.809176298415, - 5333.82917496911, - 5814.191894693196, - 6502.608165242351, - 7407.998423366777, - 8518.475539871768 - ], - "flow:J87:branch93_seg1": [ - 0.6702316127504692, - 0.8635440942991949, - 1.0738484826896546, - 1.29050584832927, - 1.502062309305847, - 1.6987973224692796, - 1.8737484707041627, - 2.02339295682124, - 2.1465102206623725, - 2.24495297590716, - 2.3213248857966353, - 2.3779595826687214, - 2.41724425959895, - 2.4399041686483485, - 2.4461920997565243, - 2.436203645719192, - 2.4097728888031247, - 2.368181010049688, - 2.3131414507723282, - 2.2471689473760366, - 2.1734416619561014, - 2.0945351901092693, - 2.0126927785638515, - 1.929341421794099, - 1.8451686166798715, - 1.7606605798744035, - 1.6763511325904936, - 1.5932256068548127, - 1.512753076148136, - 1.436642085055538, - 1.3662000109469667, - 1.3018591524826024, - 1.2425582095253525, - 1.1855067762679583, - 1.1266867984212694, - 1.0613894192143314, - 0.9853719558026688, - 0.8957640181105655, - 0.7923495270121118, - 0.6772693674238256, - 0.5553377920966666, - 0.4330864823646797, - 0.3174502046697518, - 0.2146629078234094, - 0.1293211286373574, - 0.06371923689840434, - 0.01746987558455, - -0.01107023864346057, - -0.025077735773934077, - -0.027786051168991407, - -0.02169488148702328, - -0.008869170542043026, - 0.009725817004779673, - 0.0333535607979646, - 0.06106719489857629, - 0.09161337511081055, - 0.12287599360143261, - 0.15230220902169464, - 0.1772843529294982, - 0.19575355365956232, - 0.20650250921744107, - 0.20973891253029364, - 0.20678450038799712, - 0.19957261286810443, - 0.19040399143633835, - 0.18097323285515132, - 0.17211556909686673, - 0.1637050743554472, - 0.15481396226732247, - 0.14423457766846012, - 0.13103391611485596, - 0.1149979610061409, - 0.0969010325492193, - 0.07822656913959744, - 0.060883124484002085, - 0.046577012221150633, - 0.03633699089512362, - 0.030148013479484117, - 0.027178273417256937, - 0.025975962317294755, - 0.025071427513103116, - 0.023609140377636974, - 0.021592398726553746, - 0.019931401022136995, - 0.02012424979307927, - 0.023608944052863234, - 0.03125162000643473, - 0.04279488905032447, - 0.05691685572727983, - 0.0717420567052657, - 0.08551871762144994, - 0.09775004009611934, - 0.11001137522879642, - 0.1263170259791038, - 0.15299741407821968, - 0.19755235266105092, - 0.26749046626612766, - 0.3687572318222505, - 0.5033288528094157, - 0.6702316127504692 - ], - "pressure:J87:branch93_seg1": [ - 8518.475539871768, - 9794.398214688897, - 11170.097001953456, - 12575.993403713583, - 13939.07056920157, - 15197.845239660282, - 16309.701833768642, - 17255.81804814184, - 18030.343654948185, - 18646.036903942208, - 19122.230974575294, - 19472.195240246845, - 19710.838256738687, - 19842.682967211727, - 19867.55554888987, - 19787.47398525088, - 19600.97245834787, - 19316.834375616767, - 18948.52673218457, - 18511.486063424578, - 18026.910294345253, - 17511.42728189801, - 16978.310493996712, - 16436.537611629286, - 15889.932551117821, - 15341.484882873212, - 14795.080399101069, - 14257.520498158287, - 13738.701492524307, - 13249.748879075478, - 12798.583192670068, - 12386.60534768871, - 12005.694934445542, - 11636.04118258425, - 11250.55321047093, - 10818.563201247456, - 10313.785323170474, - 9718.918000302087, - 9035.28529224642, - 8279.754186274464, - 7484.866981921739, - 6694.61341239063, - 5953.884078358672, - 5301.940895207412, - 4765.835449573805, - 4359.355533163088, - 4077.305262413146, - 3907.1639684158295, - 3828.9126789305174, - 3820.6060028598113, - 3867.2854327503155, - 3956.5420355203473, - 4082.08031452433, - 4239.863641683115, - 4423.0760048945185, - 4622.969464005697, - 4825.4154955595, - 5013.3578766028795, - 5170.059961064646, - 5283.0077253905565, - 5345.391441686158, - 5359.481648821212, - 5335.413748801797, - 5285.720558138693, - 5225.169386164761, - 5164.344049407098, - 5107.537388140905, - 5053.0387967533225, - 4994.347343895068, - 4923.555974325958, - 4835.247709921135, - 4728.709354798248, - 4609.898628866295, - 4489.113471740205, - 4378.727053955284, - 4289.372436813931, - 4226.966862109148, - 4190.454620376417, - 4173.534009426034, - 4166.728275579618, - 4160.638752162058, - 4150.4332184976965, - 4137.117862917276, - 4127.318707074256, - 4131.065821424429, - 4157.330457588605, - 4210.879333059629, - 4289.123179650202, - 4382.298720501335, - 4478.185970905212, - 4566.096913508843, - 4644.330618923766, - 4725.357907986642, - 4837.554081392306, - 5023.809176298415, - 5333.82917496911, - 5814.191894693196, - 6502.608165242351, - 7407.998423366777, - 8518.475539871768 - ], - "flow:branch93_seg1:J88": [ - 0.669329889057482, - 0.8625395094613172, - 1.0727924838782528, - 1.2894584171292915, - 1.5010719597286961, - 1.6979020116582821, - 1.8729738566586889, - 2.0227491123017476, - 2.1459878122866582, - 2.2445459437334367, - 2.3210165237042815, - 2.377738056499888, - 2.417106265825355, - 2.439844157890971, - 2.446213152983707, - 2.4363038821174086, - 2.409949385183157, - 2.368429883704964, - 2.3134462097620876, - 2.2475169348046204, - 2.1738201973314926, - 2.094930117616813, - 2.013097353102564, - 1.929750717479263, - 1.8455800107792024, - 1.761072531755479, - 1.6767593196121018, - 1.5936235929195073, - 1.5131327347261476, - 1.4369960634409435, - 1.3665232839070658, - 1.3021552986537352, - 1.2428373253171867, - 1.185786245270711, - 1.1269897339379984, - 1.061738667755729, - 0.9857831137091382, - 0.8962444714170644, - 0.7928940570327593, - 0.677856210466504, - 0.5559387845753067, - 0.4336678806906498, - 0.31797792371304906, - 0.21510971519376504, - 0.12967645955307378, - 0.0639769504101957, - 0.01763516961456081, - -0.01097895852249949, - -0.025048572225086028, - -0.02780291908523503, - -0.021746241128644827, - -0.008951659883228725, - 0.009618964670661478, - 0.033224887433519305, - 0.06092133729340111, - 0.09146054722076649, - 0.12272723120275487, - 0.15217054485413065, - 0.17718176225798207, - 0.19568762978860543, - 0.2064739144870915, - 0.2097444460996643, - 0.20681418003733346, - 0.19961522922953193, - 0.19045077559054147, - 0.18101769524283037, - 0.17215664325418523, - 0.16374652415221178, - 0.1548616264650862, - 0.14429419039660232, - 0.13110733196794067, - 0.11508356565256934, - 0.09699286695103572, - 0.07831492394381834, - 0.06095902163387411, - 0.04663429099059888, - 0.03637381662327116, - 0.03016645339058648, - 0.02718599854164266, - 0.025980014006514437, - 0.025077136235682147, - 0.0236185008681121, - 0.021602263009638106, - 0.019935061048556503, - 0.020113996748153458, - 0.023579067426341645, - 0.031201642902916625, - 0.042728861994096735, - 0.05684405416801403, - 0.07167225183081123, - 0.0854569546467127, - 0.09769282440144128, - 0.10994339589339792, - 0.12621124834590922, - 0.1528180959423866, - 0.197258326840588, - 0.2670556611195544, - 0.36816011778589564, - 0.5025628358362603, - 0.669329889057482 - ], - "pressure:branch93_seg1:J88": [ - 8373.43379610187, - 9626.019211132678, - 10984.559734529534, - 12380.36945459179, - 13740.068001598545, - 15001.55034602009, - 16120.823109756255, - 17076.569822291076, - 17861.563791848275, - 18488.029777329353, - 18973.565309658305, - 19332.550826193085, - 19580.20448109801, - 19721.118667114824, - 19756.312835062607, - 19686.88285384439, - 19511.611410708305, - 19238.916272187606, - 18880.617139585585, - 18452.614795805184, - 17975.592221628922, - 17466.102782922768, - 16938.17429673771, - 16400.908330289174, - 15858.515680946706, - 15314.074694711726, - 14771.16145490817, - 14236.259371254919, - 13718.954629191769, - 13230.272947535444, - 12778.445654285611, - 12365.798110243877, - 11985.083181924485, - 11617.747979195223, - 11237.570902157895, - 10814.174175744613, - 10320.635448292938, - 9738.895260827374, - 9068.4785732771, - 8324.161460649886, - 7537.393607138055, - 6750.805088962559, - 6009.029708145938, - 5351.836635768387, - 4807.926485841106, - 4391.707522531243, - 4099.776764408647, - 3920.948992617111, - 3834.93881669064, - 3820.5886428050994, - 3862.226938361928, - 3946.8630425419124, - 4068.286423914764, - 4221.9973966378275, - 4401.664009120138, - 4599.021200770727, - 4800.296772046297, - 4988.877874254416, - 5148.025835755237, - 5264.71815562423, - 5331.508018790472, - 5350.046482513351, - 5329.375668802116, - 5281.938372784915, - 5222.512051187747, - 5161.877564835322, - 5105.037787605999, - 5050.885112914189, - 4993.280088466295, - 4924.41628151991, - 4838.491997098207, - 4734.353511394757, - 4617.302737923915, - 4497.118760136855, - 4386.097118974923, - 4295.087305284322, - 4230.466802325247, - 4191.813364914726, - 4173.472584642998, - 4166.067381284789, - 4160.1698967216125, - 4150.510286097854, - 4137.437613319623, - 4127.056288496137, - 4129.124018894038, - 4152.785588439424, - 4203.341650357545, - 4278.826498272762, - 4370.323613650689, - 4465.7356525175255, - 4553.996254931061, - 4632.408157636911, - 4711.867900515637, - 4819.013663793675, - 4995.234886540986, - 5289.194439594955, - 5748.572373535563, - 6411.381704420301, - 7289.024402336383, - 8373.43379610187 - ], - "flow:J88:branch93_seg2": [ - 0.669329889057482, - 0.8625395094613172, - 1.0727924838782528, - 1.2894584171292915, - 1.5010719597286961, - 1.6979020116582821, - 1.8729738566586889, - 2.0227491123017476, - 2.1459878122866582, - 2.2445459437334367, - 2.3210165237042815, - 2.377738056499888, - 2.417106265825355, - 2.439844157890971, - 2.446213152983707, - 2.4363038821174086, - 2.409949385183157, - 2.368429883704964, - 2.3134462097620876, - 2.2475169348046204, - 2.1738201973314926, - 2.094930117616813, - 2.013097353102564, - 1.929750717479263, - 1.8455800107792024, - 1.761072531755479, - 1.6767593196121018, - 1.5936235929195073, - 1.5131327347261476, - 1.4369960634409435, - 1.3665232839070658, - 1.3021552986537352, - 1.2428373253171867, - 1.185786245270711, - 1.1269897339379984, - 1.061738667755729, - 0.9857831137091382, - 0.8962444714170644, - 0.7928940570327593, - 0.677856210466504, - 0.5559387845753067, - 0.4336678806906498, - 0.31797792371304906, - 0.21510971519376504, - 0.12967645955307378, - 0.0639769504101957, - 0.01763516961456081, - -0.01097895852249949, - -0.025048572225086028, - -0.02780291908523503, - -0.021746241128644827, - -0.008951659883228725, - 0.009618964670661478, - 0.033224887433519305, - 0.06092133729340111, - 0.09146054722076649, - 0.12272723120275487, - 0.15217054485413065, - 0.17718176225798207, - 0.19568762978860543, - 0.2064739144870915, - 0.2097444460996643, - 0.20681418003733346, - 0.19961522922953193, - 0.19045077559054147, - 0.18101769524283037, - 0.17215664325418523, - 0.16374652415221178, - 0.1548616264650862, - 0.14429419039660232, - 0.13110733196794067, - 0.11508356565256934, - 0.09699286695103572, - 0.07831492394381834, - 0.06095902163387411, - 0.04663429099059888, - 0.03637381662327116, - 0.03016645339058648, - 0.02718599854164266, - 0.025980014006514437, - 0.025077136235682147, - 0.0236185008681121, - 0.021602263009638106, - 0.019935061048556503, - 0.020113996748153458, - 0.023579067426341645, - 0.031201642902916625, - 0.042728861994096735, - 0.05684405416801403, - 0.07167225183081123, - 0.0854569546467127, - 0.09769282440144128, - 0.10994339589339792, - 0.12621124834590922, - 0.1528180959423866, - 0.197258326840588, - 0.2670556611195544, - 0.36816011778589564, - 0.5025628358362603, - 0.669329889057482 - ], - "pressure:J88:branch93_seg2": [ - 8373.43379610187, - 9626.019211132678, - 10984.559734529534, - 12380.36945459179, - 13740.068001598545, - 15001.55034602009, - 16120.823109756255, - 17076.569822291076, - 17861.563791848275, - 18488.029777329353, - 18973.565309658305, - 19332.550826193085, - 19580.20448109801, - 19721.118667114824, - 19756.312835062607, - 19686.88285384439, - 19511.611410708305, - 19238.916272187606, - 18880.617139585585, - 18452.614795805184, - 17975.592221628922, - 17466.102782922768, - 16938.17429673771, - 16400.908330289174, - 15858.515680946706, - 15314.074694711726, - 14771.16145490817, - 14236.259371254919, - 13718.954629191769, - 13230.272947535444, - 12778.445654285611, - 12365.798110243877, - 11985.083181924485, - 11617.747979195223, - 11237.570902157895, - 10814.174175744613, - 10320.635448292938, - 9738.895260827374, - 9068.4785732771, - 8324.161460649886, - 7537.393607138055, - 6750.805088962559, - 6009.029708145938, - 5351.836635768387, - 4807.926485841106, - 4391.707522531243, - 4099.776764408647, - 3920.948992617111, - 3834.93881669064, - 3820.5886428050994, - 3862.226938361928, - 3946.8630425419124, - 4068.286423914764, - 4221.9973966378275, - 4401.664009120138, - 4599.021200770727, - 4800.296772046297, - 4988.877874254416, - 5148.025835755237, - 5264.71815562423, - 5331.508018790472, - 5350.046482513351, - 5329.375668802116, - 5281.938372784915, - 5222.512051187747, - 5161.877564835322, - 5105.037787605999, - 5050.885112914189, - 4993.280088466295, - 4924.41628151991, - 4838.491997098207, - 4734.353511394757, - 4617.302737923915, - 4497.118760136855, - 4386.097118974923, - 4295.087305284322, - 4230.466802325247, - 4191.813364914726, - 4173.472584642998, - 4166.067381284789, - 4160.1698967216125, - 4150.510286097854, - 4137.437613319623, - 4127.056288496137, - 4129.124018894038, - 4152.785588439424, - 4203.341650357545, - 4278.826498272762, - 4370.323613650689, - 4465.7356525175255, - 4553.996254931061, - 4632.408157636911, - 4711.867900515637, - 4819.013663793675, - 4995.234886540986, - 5289.194439594955, - 5748.572373535563, - 6411.381704420301, - 7289.024402336383, - 8373.43379610187 - ], - "flow:branch96_seg0:J89": [ - 0.7323138686601587, - 0.9514086907203646, - 1.195146672030303, - 1.4518928233208512, - 1.7085634523098878, - 1.953193925252371, - 2.176367370040456, - 2.3722080798672662, - 2.537852711264793, - 2.6740031038456036, - 2.782768942355408, - 2.866691984553033, - 2.9283989132139707, - 2.9690695047515847, - 2.989265715404524, - 2.9890906056269166, - 2.9684459637844207, - 2.928446286794235, - 2.8708322561510373, - 2.7984056588940525, - 2.7146968139489642, - 2.6229536163150287, - 2.526109290636442, - 2.4262141140619167, - 2.3244855483642546, - 2.221725367836653, - 2.1186548555386513, - 2.0163865718553264, - 1.9165494216060173, - 1.8211145361226408, - 1.7317885565461322, - 1.6494501180602839, - 1.5734034210610268, - 1.501055074529137, - 1.4282077131176016, - 1.3496174084370378, - 1.2601670984786428, - 1.156002084896695, - 1.0358916361610904, - 0.9013504421393186, - 0.7570346127485975, - 0.6098339314558945, - 0.4676215357332978, - 0.33791387285184815, - 0.22671266676921076, - 0.13753723912927687, - 0.07105918845073761, - 0.026063390495633037, - -0.0005600785740988666, - -0.012295992663785768, - -0.012237463759397419, - -0.0029533811725741942, - 0.014098823920204466, - 0.03784346025423166, - 0.06720780503673088, - 0.10079882893993142, - 0.13636434455286128, - 0.17108387967908661, - 0.20190915576833243, - 0.22619357371257295, - 0.24215327782126925, - 0.249480700330637, - 0.24917047730453512, - 0.24315759158091074, - 0.23392565746879426, - 0.22356098849901096, - 0.21333983189654485, - 0.20347743763551762, - 0.19321792289251613, - 0.18131972559005197, - 0.16664694738460564, - 0.148731816283819, - 0.12812390857853018, - 0.10626255117863771, - 0.0851994422688015, - 0.06695642398950871, - 0.05295912547362858, - 0.04357848773380867, - 0.03820589596887924, - 0.03541007987017412, - 0.03356536900363746, - 0.031510545240906705, - 0.028946084614964576, - 0.02659468091427134, - 0.025950997843664475, - 0.028658745400694362, - 0.0359043110957382, - 0.04776349205158178, - 0.06312375568625572, - 0.0800508073379517, - 0.09651094362553922, - 0.11154361452757454, - 0.1262641007903725, - 0.14446047938701764, - 0.17264717974611354, - 0.21907737579316228, - 0.29255897520509394, - 0.4005732046254887, - 0.5470236122638379, - 0.7323138686601587 - ], - "pressure:branch96_seg0:J89": [ - 7917.587422115537, - 9064.24024373901, - 10327.373885093944, - 11646.184538345713, - 12954.021536472486, - 14190.903959350131, - 15311.085635976073, - 16288.233098702185, - 17109.978818641677, - 17781.684299818025, - 18316.24122536893, - 18725.55076751229, - 19022.837475640314, - 19213.562736582608, - 19299.189509311644, - 19281.09322177649, - 19158.35011425774, - 18937.4094486966, - 18629.016842012326, - 18247.15065894094, - 17810.58013929901, - 17335.812821419167, - 16836.88070829229, - 16323.843452487075, - 15802.222623717129, - 15275.861734437465, - 14748.701446881227, - 14226.80849317082, - 13718.915658565029, - 13235.247071614334, - 12784.079345353157, - 12368.72659046667, - 11984.311453670223, - 11615.829257993495, - 11240.603219587096, - 10831.371219634291, - 10362.791539667738, - 9816.36978986131, - 9188.469205761945, - 8489.675299239156, - 7745.653652876362, - 6993.492691379746, - 6273.714845156815, - 5623.923110968112, - 5072.492871458529, - 4636.007296212661, - 4315.204692166455, - 4101.989129339165, - 3980.28999201678, - 3931.439369978286, - 3940.5583648110705, - 3995.3152148264294, - 4088.5335235437933, - 4215.342875408287, - 4369.832067851157, - 4544.366063276047, - 4726.892754603957, - 4902.474509777369, - 5055.556061037622, - 5173.310822807622, - 5247.530976563387, - 5277.732998406693, - 5270.458787242037, - 5235.87274465509, - 5186.80385178309, - 5133.553979949823, - 5081.6545645048955, - 5031.299837343088, - 4977.999320226114, - 4915.184431219516, - 4837.4894900790205, - 4743.153263394869, - 4635.916871340665, - 4523.879391398143, - 4417.7244328995685, - 4327.516313446574, - 4259.8770827005055, - 4215.752361129261, - 4191.1193335525795, - 4178.3498601858955, - 4169.143923844285, - 4158.159065090745, - 4144.772842961754, - 4133.474390079537, - 4132.365174169619, - 4149.677610333474, - 4190.797167706475, - 4255.163958675068, - 4335.9245750897135, - 4422.903811167208, - 4506.077972556681, - 4581.851952868055, - 4658.051352096036, - 4756.430177609969, - 4912.381209221663, - 5169.424696121938, - 5571.381178072671, - 6155.670330240665, - 6938.677657127458, - 7917.587422115537 - ], - "flow:J89:branch96_seg1": [ - 0.7323138686601587, - 0.9514086907203646, - 1.195146672030303, - 1.4518928233208512, - 1.7085634523098878, - 1.953193925252371, - 2.176367370040456, - 2.3722080798672662, - 2.537852711264793, - 2.6740031038456036, - 2.782768942355408, - 2.866691984553033, - 2.9283989132139707, - 2.9690695047515847, - 2.989265715404524, - 2.9890906056269166, - 2.9684459637844207, - 2.928446286794235, - 2.8708322561510373, - 2.7984056588940525, - 2.7146968139489642, - 2.6229536163150287, - 2.526109290636442, - 2.4262141140619167, - 2.3244855483642546, - 2.221725367836653, - 2.1186548555386513, - 2.0163865718553264, - 1.9165494216060173, - 1.8211145361226408, - 1.7317885565461322, - 1.6494501180602839, - 1.5734034210610268, - 1.501055074529137, - 1.4282077131176016, - 1.3496174084370378, - 1.2601670984786428, - 1.156002084896695, - 1.0358916361610904, - 0.9013504421393186, - 0.7570346127485975, - 0.6098339314558945, - 0.4676215357332978, - 0.33791387285184815, - 0.22671266676921076, - 0.13753723912927687, - 0.07105918845073761, - 0.026063390495633037, - -0.0005600785740988666, - -0.012295992663785768, - -0.012237463759397419, - -0.0029533811725741942, - 0.014098823920204466, - 0.03784346025423166, - 0.06720780503673088, - 0.10079882893993142, - 0.13636434455286128, - 0.17108387967908661, - 0.20190915576833243, - 0.22619357371257295, - 0.24215327782126925, - 0.249480700330637, - 0.24917047730453512, - 0.24315759158091074, - 0.23392565746879426, - 0.22356098849901096, - 0.21333983189654485, - 0.20347743763551762, - 0.19321792289251613, - 0.18131972559005197, - 0.16664694738460564, - 0.148731816283819, - 0.12812390857853018, - 0.10626255117863771, - 0.0851994422688015, - 0.06695642398950871, - 0.05295912547362858, - 0.04357848773380867, - 0.03820589596887924, - 0.03541007987017412, - 0.03356536900363746, - 0.031510545240906705, - 0.028946084614964576, - 0.02659468091427134, - 0.025950997843664475, - 0.028658745400694362, - 0.0359043110957382, - 0.04776349205158178, - 0.06312375568625572, - 0.0800508073379517, - 0.09651094362553922, - 0.11154361452757454, - 0.1262641007903725, - 0.14446047938701764, - 0.17264717974611354, - 0.21907737579316228, - 0.29255897520509394, - 0.4005732046254887, - 0.5470236122638379, - 0.7323138686601587 - ], - "pressure:J89:branch96_seg1": [ - 7917.587422115537, - 9064.24024373901, - 10327.373885093944, - 11646.184538345713, - 12954.021536472486, - 14190.903959350131, - 15311.085635976073, - 16288.233098702185, - 17109.978818641677, - 17781.684299818025, - 18316.24122536893, - 18725.55076751229, - 19022.837475640314, - 19213.562736582608, - 19299.189509311644, - 19281.09322177649, - 19158.35011425774, - 18937.4094486966, - 18629.016842012326, - 18247.15065894094, - 17810.58013929901, - 17335.812821419167, - 16836.88070829229, - 16323.843452487075, - 15802.222623717129, - 15275.861734437465, - 14748.701446881227, - 14226.80849317082, - 13718.915658565029, - 13235.247071614334, - 12784.079345353157, - 12368.72659046667, - 11984.311453670223, - 11615.829257993495, - 11240.603219587096, - 10831.371219634291, - 10362.791539667738, - 9816.36978986131, - 9188.469205761945, - 8489.675299239156, - 7745.653652876362, - 6993.492691379746, - 6273.714845156815, - 5623.923110968112, - 5072.492871458529, - 4636.007296212661, - 4315.204692166455, - 4101.989129339165, - 3980.28999201678, - 3931.439369978286, - 3940.5583648110705, - 3995.3152148264294, - 4088.5335235437933, - 4215.342875408287, - 4369.832067851157, - 4544.366063276047, - 4726.892754603957, - 4902.474509777369, - 5055.556061037622, - 5173.310822807622, - 5247.530976563387, - 5277.732998406693, - 5270.458787242037, - 5235.87274465509, - 5186.80385178309, - 5133.553979949823, - 5081.6545645048955, - 5031.299837343088, - 4977.999320226114, - 4915.184431219516, - 4837.4894900790205, - 4743.153263394869, - 4635.916871340665, - 4523.879391398143, - 4417.7244328995685, - 4327.516313446574, - 4259.8770827005055, - 4215.752361129261, - 4191.1193335525795, - 4178.3498601858955, - 4169.143923844285, - 4158.159065090745, - 4144.772842961754, - 4133.474390079537, - 4132.365174169619, - 4149.677610333474, - 4190.797167706475, - 4255.163958675068, - 4335.9245750897135, - 4422.903811167208, - 4506.077972556681, - 4581.851952868055, - 4658.051352096036, - 4756.430177609969, - 4912.381209221663, - 5169.424696121938, - 5571.381178072671, - 6155.670330240665, - 6938.677657127458, - 7917.587422115537 - ], - "flow:branch96_seg1:J90": [ - 0.731700498542667, - 0.9507112202043246, - 1.194398117419755, - 1.4511329697193203, - 1.7078280186886328, - 1.9525131017242403, - 2.175763159870873, - 2.3716920310551415, - 2.5374239600819903, - 2.673658440367333, - 2.7824991919997686, - 2.866489473199051, - 2.9282595649979553, - 2.968989809753979, - 2.989246610531545, - 2.9891310369446416, - 2.9685450180976862, - 2.928600577555001, - 2.8710319124279033, - 2.7986422547628433, - 2.7149604733939423, - 2.6232341717382646, - 2.5264006394339225, - 2.4265116096915196, - 2.3247866227792358, - 2.2220283409569106, - 2.118956741625672, - 2.0166830995717318, - 1.9168350126243923, - 1.8213836651580035, - 1.7320370911404617, - 1.6496788682954007, - 1.573617849482823, - 1.5012659041548828, - 1.428430104178451, - 1.34986730391867, - 1.260456963712727, - 1.1563393086977947, - 1.0362747613945678, - 0.9017677055669359, - 0.7574681364306729, - 0.6102609138304806, - 0.46801816617671016, - 0.3382599443311124, - 0.22699760358962967, - 0.13775422245482608, - 0.07121007093419295, - 0.026158176905100552, - -0.000513334351766749, - -0.012286179872771738, - -0.012256342194966288, - -0.002997034282824371, - 0.01403531574354509, - 0.037762253183941934, - 0.06711214919259435, - 0.10069510042095338, - 0.136260007198081, - 0.17098791307301228, - 0.20183028574153639, - 0.22613805415291782, - 0.24212333760416094, - 0.2494751071542667, - 0.24918371796410702, - 0.24318265847153653, - 0.23395597080668207, - 0.2235915098612215, - 0.2133688848932708, - 0.2035065833802301, - 0.1932506153474949, - 0.181359848805775, - 0.1666963761885918, - 0.14879027084773563, - 0.1281880013474063, - 0.10632625434193538, - 0.08525657613274056, - 0.0670021327083562, - 0.0529911430536876, - 0.04359736653059709, - 0.03821587031895358, - 0.03541576689530764, - 0.033570773505997645, - 0.03151774467487876, - 0.02895384999425975, - 0.026599153827315963, - 0.02594710207047871, - 0.02864222533280876, - 0.0358737739621944, - 0.047720842413375084, - 0.0630744310247361, - 0.08000122502830088, - 0.09646544823580527, - 0.11150140360541158, - 0.12621678164700256, - 0.14439149156298886, - 0.17253323071573548, - 0.21889076083045486, - 0.29227910891064984, - 0.4001818830679745, - 0.5465133499925876, - 0.731700498542667 - ], - "pressure:branch96_seg1:J90": [ - 7799.644979564952, - 8924.972266522136, - 10171.131057175304, - 11478.4115908688, - 12780.434812700327, - 14016.9531617459, - 15141.228631113085, - 16125.127324284049, - 16955.12148876475, - 17635.61586350865, - 18178.302689175147, - 18595.582287430254, - 18900.7226695916, - 19099.44946008162, - 19193.969248915757, - 19185.201405202613, - 19072.4454986582, - 18861.706824668374, - 18562.67547090437, - 18189.4242051296, - 17760.222157690543, - 17291.5209674511, - 16797.782362500344, - 16289.228644253677, - 15771.72064261409, - 15249.214107403022, - 14725.48712395534, - 14206.365370924987, - 13700.310132613122, - 13217.406005449126, - 12766.11710027746, - 12350.37290889425, - 11966.03460819943, - 11599.123273660281, - 11227.757949028488, - 10825.085744471173, - 10365.481463950693, - 9829.910536222995, - 9213.337496572114, - 8524.755695618733, - 7788.672713046806, - 7040.954873791954, - 6321.7261528319805, - 5668.803205844472, - 5111.6305100807085, - 4667.44087466779, - 4338.41076793474, - 4117.511778115811, - 3988.8537353352663, - 3934.3407146651134, - 3938.6872490598225, - 3989.2009214363584, - 4078.612336494552, - 4201.740879558021, - 4352.938789485994, - 4524.900151083523, - 4705.9313454486255, - 4881.46337737428, - 5036.020978214642, - 5156.4802489738695, - 5234.190525498525, - 5268.090042586375, - 5263.904271159851, - 5231.585121739779, - 5183.816379398025, - 5131.032918965634, - 5079.263377183459, - 5029.186844541697, - 4976.674751502514, - 4915.3158201057595, - 4839.53875985773, - 4747.255557322608, - 4641.685559142763, - 4530.480724549534, - 4424.156967022496, - 4332.86415611512, - 4263.542021663371, - 4217.637274542153, - 4191.643071574094, - 4178.1412221526525, - 4168.874250938565, - 4158.214953864413, - 4145.057089722807, - 4133.437034582771, - 4131.161669340286, - 4146.505099999153, - 4185.186604738638, - 4247.157318757159, - 4326.227654635947, - 4412.43911654573, - 4495.625725532298, - 4571.506712545899, - 4646.720079955505, - 4741.606596083443, - 4890.2232126078825, - 5135.111682085679, - 5520.481573748043, - 6083.959695230439, - 6843.7338136305425, - 7799.644979564952 - ], - "flow:J90:branch96_seg2": [ - 0.731700498542667, - 0.9507112202043246, - 1.194398117419755, - 1.4511329697193203, - 1.7078280186886328, - 1.9525131017242403, - 2.175763159870873, - 2.3716920310551415, - 2.5374239600819903, - 2.673658440367333, - 2.7824991919997686, - 2.866489473199051, - 2.9282595649979553, - 2.968989809753979, - 2.989246610531545, - 2.9891310369446416, - 2.9685450180976862, - 2.928600577555001, - 2.8710319124279033, - 2.7986422547628433, - 2.7149604733939423, - 2.6232341717382646, - 2.5264006394339225, - 2.4265116096915196, - 2.3247866227792358, - 2.2220283409569106, - 2.118956741625672, - 2.0166830995717318, - 1.9168350126243923, - 1.8213836651580035, - 1.7320370911404617, - 1.6496788682954007, - 1.573617849482823, - 1.5012659041548828, - 1.428430104178451, - 1.34986730391867, - 1.260456963712727, - 1.1563393086977947, - 1.0362747613945678, - 0.9017677055669359, - 0.7574681364306729, - 0.6102609138304806, - 0.46801816617671016, - 0.3382599443311124, - 0.22699760358962967, - 0.13775422245482608, - 0.07121007093419295, - 0.026158176905100552, - -0.000513334351766749, - -0.012286179872771738, - -0.012256342194966288, - -0.002997034282824371, - 0.01403531574354509, - 0.037762253183941934, - 0.06711214919259435, - 0.10069510042095338, - 0.136260007198081, - 0.17098791307301228, - 0.20183028574153639, - 0.22613805415291782, - 0.24212333760416094, - 0.2494751071542667, - 0.24918371796410702, - 0.24318265847153653, - 0.23395597080668207, - 0.2235915098612215, - 0.2133688848932708, - 0.2035065833802301, - 0.1932506153474949, - 0.181359848805775, - 0.1666963761885918, - 0.14879027084773563, - 0.1281880013474063, - 0.10632625434193538, - 0.08525657613274056, - 0.0670021327083562, - 0.0529911430536876, - 0.04359736653059709, - 0.03821587031895358, - 0.03541576689530764, - 0.033570773505997645, - 0.03151774467487876, - 0.02895384999425975, - 0.026599153827315963, - 0.02594710207047871, - 0.02864222533280876, - 0.0358737739621944, - 0.047720842413375084, - 0.0630744310247361, - 0.08000122502830088, - 0.09646544823580527, - 0.11150140360541158, - 0.12621678164700256, - 0.14439149156298886, - 0.17253323071573548, - 0.21889076083045486, - 0.29227910891064984, - 0.4001818830679745, - 0.5465133499925876, - 0.731700498542667 - ], - "pressure:J90:branch96_seg2": [ - 7799.644979564952, - 8924.972266522136, - 10171.131057175304, - 11478.4115908688, - 12780.434812700327, - 14016.9531617459, - 15141.228631113085, - 16125.127324284049, - 16955.12148876475, - 17635.61586350865, - 18178.302689175147, - 18595.582287430254, - 18900.7226695916, - 19099.44946008162, - 19193.969248915757, - 19185.201405202613, - 19072.4454986582, - 18861.706824668374, - 18562.67547090437, - 18189.4242051296, - 17760.222157690543, - 17291.5209674511, - 16797.782362500344, - 16289.228644253677, - 15771.72064261409, - 15249.214107403022, - 14725.48712395534, - 14206.365370924987, - 13700.310132613122, - 13217.406005449126, - 12766.11710027746, - 12350.37290889425, - 11966.03460819943, - 11599.123273660281, - 11227.757949028488, - 10825.085744471173, - 10365.481463950693, - 9829.910536222995, - 9213.337496572114, - 8524.755695618733, - 7788.672713046806, - 7040.954873791954, - 6321.7261528319805, - 5668.803205844472, - 5111.6305100807085, - 4667.44087466779, - 4338.41076793474, - 4117.511778115811, - 3988.8537353352663, - 3934.3407146651134, - 3938.6872490598225, - 3989.2009214363584, - 4078.612336494552, - 4201.740879558021, - 4352.938789485994, - 4524.900151083523, - 4705.9313454486255, - 4881.46337737428, - 5036.020978214642, - 5156.4802489738695, - 5234.190525498525, - 5268.090042586375, - 5263.904271159851, - 5231.585121739779, - 5183.816379398025, - 5131.032918965634, - 5079.263377183459, - 5029.186844541697, - 4976.674751502514, - 4915.3158201057595, - 4839.53875985773, - 4747.255557322608, - 4641.685559142763, - 4530.480724549534, - 4424.156967022496, - 4332.86415611512, - 4263.542021663371, - 4217.637274542153, - 4191.643071574094, - 4178.1412221526525, - 4168.874250938565, - 4158.214953864413, - 4145.057089722807, - 4133.437034582771, - 4131.161669340286, - 4146.505099999153, - 4185.186604738638, - 4247.157318757159, - 4326.227654635947, - 4412.43911654573, - 4495.625725532298, - 4571.506712545899, - 4646.720079955505, - 4741.606596083443, - 4890.2232126078825, - 5135.111682085679, - 5520.481573748043, - 6083.959695230439, - 6843.7338136305425, - 7799.644979564952 - ], - "flow:branch102_seg0:J91": [ - 1.3922637301239242, - 1.7995575898546443, - 2.2459719284479642, - 2.70924419750276, - 3.165076786753555, - 3.5922557016008225, - 3.9750376316372398, - 4.304764100016881, - 4.5779813667757026, - 4.797783702796489, - 4.969291202184233, - 5.09751475338636, - 5.187532565814189, - 5.2411872587793, - 5.2591947282106615, - 5.241744486773994, - 5.188551378249365, - 5.102105981097334, - 4.985965018593024, - 4.845486017713339, - 4.687415689452641, - 4.517489496903191, - 4.340727364054278, - 4.160422651347315, - 3.978276283854583, - 3.795419892743149, - 3.613003243961263, - 3.4330613610316196, - 3.2586464864531455, - 3.093370660752207, - 2.940120247374177, - 2.8000154582205456, - 2.6710808375837813, - 2.5477076076243432, - 2.421545127102186, - 2.2826356031383823, - 2.1217848758602065, - 1.9325691337476203, - 1.7139794681592755, - 1.4701040963431193, - 1.2107522178023693, - 0.9495288230375464, - 0.7011707698720769, - 0.4791187717231149, - 0.29348049734447434, - 0.149524520510198, - 0.046947516463780106, - -0.017519328382198784, - -0.050414869675534206, - -0.058565601080234696, - -0.047467977415592395, - -0.021621826915579005, - 0.016715283514536137, - 0.0658874830739969, - 0.12394799148085708, - 0.18830719413839314, - 0.25463445266418394, - 0.317614813657946, - 0.3717138184164613, - 0.41240935487637354, - 0.4369429052161859, - 0.4454640365118002, - 0.4405165476909822, - 0.4260905826624942, - 0.40700939352009463, - 0.386988855823593, - 0.36800235091875416, - 0.3499893743307035, - 0.3311471389960702, - 0.3089739765962019, - 0.2814290585318483, - 0.2479119325789905, - 0.2098581701644491, - 0.1702669022453052, - 0.1331112232805111, - 0.1020539211921861, - 0.0794189526875711, - 0.0653935034892146, - 0.05839015278745082, - 0.05544393887369789, - 0.05344761830279236, - 0.05045810796958874, - 0.04629592880386154, - 0.04270463410176488, - 0.042739944709216854, - 0.04946454898303661, - 0.06483869989618402, - 0.08854342032141853, - 0.11800829082714089, - 0.14936569476833364, - 0.1788692040281861, - 0.2052106143640122, - 0.23130329564191002, - 0.265166582326234, - 0.3197748144301135, - 0.41082813568913157, - 0.554355939395725, - 0.7633619756644882, - 1.0430544213864867, - 1.3922637301239242 - ], - "pressure:branch102_seg0:J91": [ - 8560.042384428523, - 9843.621577007632, - 11226.934309815451, - 12640.809533470916, - 14012.97332644778, - 15281.50072345197, - 16403.244074394563, - 17359.759705756835, - 18144.046739538746, - 18767.907544748945, - 19251.664501585394, - 19607.103356888823, - 19848.993477412543, - 19982.28686499731, - 20005.750185937173, - 19922.516222751194, - 19730.86385193032, - 19439.232314593017, - 19062.91848400278, - 18616.833657038507, - 18122.688882836297, - 17597.79830472301, - 17055.158507443208, - 16504.142783768428, - 15948.649907367922, - 15391.716175538597, - 14837.522939797227, - 14293.045842145335, - 13768.29498277408, - 13274.463336563214, - 12819.289591671624, - 12403.699590063343, - 12019.266451831814, - 11645.559533279364, - 11255.146961339433, - 10817.256126337554, - 10306.088093642624, - 9704.485266401216, - 9014.588193487794, - 8254.517096144244, - 7456.86122116106, - 6666.356584656564, - 5927.761280805553, - 5279.937895090822, - 4748.616762318994, - 4347.382013796172, - 4070.2741516295796, - 3903.8122925314133, - 3828.6630979824436, - 3822.384327096809, - 3870.452613617805, - 3960.9333752160064, - 4087.26451591369, - 4245.65859327389, - 4429.061043374947, - 4628.588989039855, - 4830.151707588622, - 5016.607992819896, - 5171.357578265219, - 5282.294442448583, - 5342.830787451826, - 5355.269497397269, - 5330.41657406114, - 5280.440191442834, - 5219.9076658832355, - 5159.407600802939, - 5102.838478435158, - 5048.295616405828, - 4989.273880279777, - 4917.914644916183, - 4829.082856777686, - 4722.241309408185, - 4603.524434977982, - 4483.392770238827, - 4374.065156640558, - 4285.957410204355, - 4224.7620666532885, - 4189.172243933812, - 4172.6871551868235, - 4165.958161780244, - 4159.698463725698, - 4149.317741615812, - 4136.101972417852, - 4126.7901968186, - 4131.381260934957, - 4158.6202172805815, - 4212.975410738516, - 4291.726772553639, - 4384.714166881714, - 4479.966643956878, - 4567.157342537373, - 4645.041080612736, - 4726.678133551676, - 4840.946472308349, - 5030.944586320909, - 5346.635854254457, - 5833.454380060716, - 6529.13909721269, - 7442.43514623867, - 8560.042384428523 - ], - "flow:J91:branch102_seg1": [ - 1.3922637301239242, - 1.7995575898546443, - 2.2459719284479642, - 2.70924419750276, - 3.165076786753555, - 3.5922557016008225, - 3.9750376316372398, - 4.304764100016881, - 4.5779813667757026, - 4.797783702796489, - 4.969291202184233, - 5.09751475338636, - 5.187532565814189, - 5.2411872587793, - 5.2591947282106615, - 5.241744486773994, - 5.188551378249365, - 5.102105981097334, - 4.985965018593024, - 4.845486017713339, - 4.687415689452641, - 4.517489496903191, - 4.340727364054278, - 4.160422651347315, - 3.978276283854583, - 3.795419892743149, - 3.613003243961263, - 3.4330613610316196, - 3.2586464864531455, - 3.093370660752207, - 2.940120247374177, - 2.8000154582205456, - 2.6710808375837813, - 2.5477076076243432, - 2.421545127102186, - 2.2826356031383823, - 2.1217848758602065, - 1.9325691337476203, - 1.7139794681592755, - 1.4701040963431193, - 1.2107522178023693, - 0.9495288230375464, - 0.7011707698720769, - 0.4791187717231149, - 0.29348049734447434, - 0.149524520510198, - 0.046947516463780106, - -0.017519328382198784, - -0.050414869675534206, - -0.058565601080234696, - -0.047467977415592395, - -0.021621826915579005, - 0.016715283514536137, - 0.0658874830739969, - 0.12394799148085708, - 0.18830719413839314, - 0.25463445266418394, - 0.317614813657946, - 0.3717138184164613, - 0.41240935487637354, - 0.4369429052161859, - 0.4454640365118002, - 0.4405165476909822, - 0.4260905826624942, - 0.40700939352009463, - 0.386988855823593, - 0.36800235091875416, - 0.3499893743307035, - 0.3311471389960702, - 0.3089739765962019, - 0.2814290585318483, - 0.2479119325789905, - 0.2098581701644491, - 0.1702669022453052, - 0.1331112232805111, - 0.1020539211921861, - 0.0794189526875711, - 0.0653935034892146, - 0.05839015278745082, - 0.05544393887369789, - 0.05344761830279236, - 0.05045810796958874, - 0.04629592880386154, - 0.04270463410176488, - 0.042739944709216854, - 0.04946454898303661, - 0.06483869989618402, - 0.08854342032141853, - 0.11800829082714089, - 0.14936569476833364, - 0.1788692040281861, - 0.2052106143640122, - 0.23130329564191002, - 0.265166582326234, - 0.3197748144301135, - 0.41082813568913157, - 0.554355939395725, - 0.7633619756644882, - 1.0430544213864867, - 1.3922637301239242 - ], - "pressure:J91:branch102_seg1": [ - 8560.042384428523, - 9843.621577007632, - 11226.934309815451, - 12640.809533470916, - 14012.97332644778, - 15281.50072345197, - 16403.244074394563, - 17359.759705756835, - 18144.046739538746, - 18767.907544748945, - 19251.664501585394, - 19607.103356888823, - 19848.993477412543, - 19982.28686499731, - 20005.750185937173, - 19922.516222751194, - 19730.86385193032, - 19439.232314593017, - 19062.91848400278, - 18616.833657038507, - 18122.688882836297, - 17597.79830472301, - 17055.158507443208, - 16504.142783768428, - 15948.649907367922, - 15391.716175538597, - 14837.522939797227, - 14293.045842145335, - 13768.29498277408, - 13274.463336563214, - 12819.289591671624, - 12403.699590063343, - 12019.266451831814, - 11645.559533279364, - 11255.146961339433, - 10817.256126337554, - 10306.088093642624, - 9704.485266401216, - 9014.588193487794, - 8254.517096144244, - 7456.86122116106, - 6666.356584656564, - 5927.761280805553, - 5279.937895090822, - 4748.616762318994, - 4347.382013796172, - 4070.2741516295796, - 3903.8122925314133, - 3828.6630979824436, - 3822.384327096809, - 3870.452613617805, - 3960.9333752160064, - 4087.26451591369, - 4245.65859327389, - 4429.061043374947, - 4628.588989039855, - 4830.151707588622, - 5016.607992819896, - 5171.357578265219, - 5282.294442448583, - 5342.830787451826, - 5355.269497397269, - 5330.41657406114, - 5280.440191442834, - 5219.9076658832355, - 5159.407600802939, - 5102.838478435158, - 5048.295616405828, - 4989.273880279777, - 4917.914644916183, - 4829.082856777686, - 4722.241309408185, - 4603.524434977982, - 4483.392770238827, - 4374.065156640558, - 4285.957410204355, - 4224.7620666532885, - 4189.172243933812, - 4172.6871551868235, - 4165.958161780244, - 4159.698463725698, - 4149.317741615812, - 4136.101972417852, - 4126.7901968186, - 4131.381260934957, - 4158.6202172805815, - 4212.975410738516, - 4291.726772553639, - 4384.714166881714, - 4479.966643956878, - 4567.157342537373, - 4645.041080612736, - 4726.678133551676, - 4840.946472308349, - 5030.944586320909, - 5346.635854254457, - 5833.454380060716, - 6529.13909721269, - 7442.43514623867, - 8560.042384428523 - ], - "flow:branch102_seg1:J92": [ - 1.3873212585365524, - 1.7940649635056032, - 2.2401869508514376, - 2.7035059667211767, - 3.159647714785306, - 3.587339194590308, - 3.9707702171940813, - 4.30121819302081, - 4.5751033827615935, - 4.795531439424647, - 4.967588691117036, - 5.0962904455026266, - 5.18677243141116, - 5.240864068236907, - 5.259320135803511, - 5.242309028269544, - 5.189539478040813, - 5.103497718866983, - 4.987661776915317, - 4.84741758206499, - 4.6895170590468895, - 4.519678776769323, - 4.342968380788847, - 4.162688621290702, - 3.980551290261166, - 3.797696382534724, - 3.61525622648463, - 3.4352547377883997, - 3.260735699425365, - 3.0953169228328625, - 2.941896128319285, - 2.8016417117494807, - 2.6726175530982106, - 2.54924732201765, - 2.423216228660657, - 2.2845630681435236, - 2.1240517823322786, - 1.9352130975326063, - 1.7169697549214682, - 1.473317808920649, - 1.2140314173816362, - 0.9526912907311397, - 0.7040319610628135, - 0.4815269641663405, - 0.2953930004499241, - 0.15091008181361545, - 0.04782488612000744, - -0.01703577617397765, - -0.050265475468461204, - -0.0586658919647161, - -0.047749790137317775, - -0.022076223472824976, - 0.016129190965100914, - 0.06518770842641257, - 0.1231534384241464, - 0.18747698813730282, - 0.253829659732791, - 0.3169043416070909, - 0.37116252261164534, - 0.41205855952649023, - 0.4367956140401042, - 0.44549895459546085, - 0.4406812004298693, - 0.42632344061508204, - 0.40726321237841123, - 0.38723011745213254, - 0.3682254607396235, - 0.3502158076420278, - 0.33140881120623045, - 0.3093021275765611, - 0.28183105919901774, - 0.24837790485855016, - 0.21035723483903115, - 0.17074468846409085, - 0.13351935407612922, - 0.10236043481135643, - 0.07961626006769829, - 0.06549081273909618, - 0.05843071110581909, - 0.05546743521806396, - 0.05347944847705985, - 0.050509178811631646, - 0.04634855450519496, - 0.04272195339703034, - 0.042680384057106086, - 0.04929779753017769, - 0.06456299489947422, - 0.08818296196294491, - 0.11761315189735906, - 0.14898846666122084, - 0.17853603428591774, - 0.20489886246436598, - 0.23092740017765762, - 0.2645770541706894, - 0.31877885751940543, - 0.4091942656926403, - 0.5519560813912748, - 0.7600901999209699, - 1.0388414771523133, - 1.3873212585365524 - ], - "pressure:branch102_seg1:J92": [ - 8257.731244117818, - 9495.194138485853, - 10847.339499952863, - 12246.87416046345, - 13620.599519475918, - 14904.874532790704, - 16053.005416372143, - 17040.364427713605, - 17856.930432483747, - 18512.583104001, - 19023.69843366681, - 19404.67576159156, - 19670.853783239963, - 19827.6211937384, - 19876.51520936152, - 19818.598149984908, - 19652.81016801206, - 19386.838887921185, - 19032.16829317504, - 18604.74923376954, - 18125.214053074822, - 17610.804496886605, - 17076.311082891396, - 16531.563808916937, - 15981.455091742302, - 15429.336463817728, - 14878.777908865013, - 14336.059791587688, - 13810.527111446985, - 13313.142429928748, - 12852.426861721679, - 12431.362475082855, - 12043.576619842894, - 11671.508494919008, - 11289.614852771083, - 10867.725813603407, - 10378.438873522582, - 9802.748179934191, - 9138.53469045076, - 8399.103787054006, - 7614.555262943327, - 6826.605532925621, - 6079.716523986899, - 5414.117330499224, - 4859.53930238288, - 4431.397618516135, - 4127.839725074528, - 3938.498375758161, - 3843.6105858613273, - 3822.2792185718945, - 3858.336320162396, - 3938.415379089637, - 4055.85129569418, - 4205.850175430774, - 4382.297623203011, - 4577.270120802322, - 4777.505596062811, - 4966.774627584953, - 5128.410363264748, - 5249.051435769475, - 5320.651908551765, - 5343.991350687081, - 5327.318938735202, - 5282.660040004969, - 5224.589537046931, - 5164.209011014765, - 5107.101713779506, - 5052.791213678663, - 4995.64659769049, - 4928.061728448566, - 4844.041195775371, - 4742.0007035051985, - 4626.593153729823, - 4507.093686702063, - 4395.539233396553, - 4302.875203860635, - 4235.888732561214, - 4194.790556651421, - 4174.52423765898, - 4166.060251784268, - 4160.0166256524435, - 4150.770225026099, - 4138.092802954569, - 4127.50142227022, - 4128.356866333191, - 4149.812175223243, - 4197.542738154873, - 4270.283002955667, - 4359.844464684891, - 4454.516294013226, - 4543.146864015262, - 4622.238819810134, - 4701.31124696704, - 4805.353993333516, - 4974.186776678836, - 5255.568085330181, - 5697.449485560717, - 6338.7557675246335, - 7193.801816638327, - 8257.731244117818 - ], - "flow:J92:branch102_seg2": [ - 1.3873212585365524, - 1.7940649635056032, - 2.2401869508514376, - 2.7035059667211767, - 3.159647714785306, - 3.587339194590308, - 3.9707702171940813, - 4.30121819302081, - 4.5751033827615935, - 4.795531439424647, - 4.967588691117036, - 5.0962904455026266, - 5.18677243141116, - 5.240864068236907, - 5.259320135803511, - 5.242309028269544, - 5.189539478040813, - 5.103497718866983, - 4.987661776915317, - 4.84741758206499, - 4.6895170590468895, - 4.519678776769323, - 4.342968380788847, - 4.162688621290702, - 3.980551290261166, - 3.797696382534724, - 3.61525622648463, - 3.4352547377883997, - 3.260735699425365, - 3.0953169228328625, - 2.941896128319285, - 2.8016417117494807, - 2.6726175530982106, - 2.54924732201765, - 2.423216228660657, - 2.2845630681435236, - 2.1240517823322786, - 1.9352130975326063, - 1.7169697549214682, - 1.473317808920649, - 1.2140314173816362, - 0.9526912907311397, - 0.7040319610628135, - 0.4815269641663405, - 0.2953930004499241, - 0.15091008181361545, - 0.04782488612000744, - -0.01703577617397765, - -0.050265475468461204, - -0.0586658919647161, - -0.047749790137317775, - -0.022076223472824976, - 0.016129190965100914, - 0.06518770842641257, - 0.1231534384241464, - 0.18747698813730282, - 0.253829659732791, - 0.3169043416070909, - 0.37116252261164534, - 0.41205855952649023, - 0.4367956140401042, - 0.44549895459546085, - 0.4406812004298693, - 0.42632344061508204, - 0.40726321237841123, - 0.38723011745213254, - 0.3682254607396235, - 0.3502158076420278, - 0.33140881120623045, - 0.3093021275765611, - 0.28183105919901774, - 0.24837790485855016, - 0.21035723483903115, - 0.17074468846409085, - 0.13351935407612922, - 0.10236043481135643, - 0.07961626006769829, - 0.06549081273909618, - 0.05843071110581909, - 0.05546743521806396, - 0.05347944847705985, - 0.050509178811631646, - 0.04634855450519496, - 0.04272195339703034, - 0.042680384057106086, - 0.04929779753017769, - 0.06456299489947422, - 0.08818296196294491, - 0.11761315189735906, - 0.14898846666122084, - 0.17853603428591774, - 0.20489886246436598, - 0.23092740017765762, - 0.2645770541706894, - 0.31877885751940543, - 0.4091942656926403, - 0.5519560813912748, - 0.7600901999209699, - 1.0388414771523133, - 1.3873212585365524 - ], - "pressure:J92:branch102_seg2": [ - 8257.731244117818, - 9495.194138485853, - 10847.339499952863, - 12246.87416046345, - 13620.599519475918, - 14904.874532790704, - 16053.005416372143, - 17040.364427713605, - 17856.930432483747, - 18512.583104001, - 19023.69843366681, - 19404.67576159156, - 19670.853783239963, - 19827.6211937384, - 19876.51520936152, - 19818.598149984908, - 19652.81016801206, - 19386.838887921185, - 19032.16829317504, - 18604.74923376954, - 18125.214053074822, - 17610.804496886605, - 17076.311082891396, - 16531.563808916937, - 15981.455091742302, - 15429.336463817728, - 14878.777908865013, - 14336.059791587688, - 13810.527111446985, - 13313.142429928748, - 12852.426861721679, - 12431.362475082855, - 12043.576619842894, - 11671.508494919008, - 11289.614852771083, - 10867.725813603407, - 10378.438873522582, - 9802.748179934191, - 9138.53469045076, - 8399.103787054006, - 7614.555262943327, - 6826.605532925621, - 6079.716523986899, - 5414.117330499224, - 4859.53930238288, - 4431.397618516135, - 4127.839725074528, - 3938.498375758161, - 3843.6105858613273, - 3822.2792185718945, - 3858.336320162396, - 3938.415379089637, - 4055.85129569418, - 4205.850175430774, - 4382.297623203011, - 4577.270120802322, - 4777.505596062811, - 4966.774627584953, - 5128.410363264748, - 5249.051435769475, - 5320.651908551765, - 5343.991350687081, - 5327.318938735202, - 5282.660040004969, - 5224.589537046931, - 5164.209011014765, - 5107.101713779506, - 5052.791213678663, - 4995.64659769049, - 4928.061728448566, - 4844.041195775371, - 4742.0007035051985, - 4626.593153729823, - 4507.093686702063, - 4395.539233396553, - 4302.875203860635, - 4235.888732561214, - 4194.790556651421, - 4174.52423765898, - 4166.060251784268, - 4160.0166256524435, - 4150.770225026099, - 4138.092802954569, - 4127.50142227022, - 4128.356866333191, - 4149.812175223243, - 4197.542738154873, - 4270.283002955667, - 4359.844464684891, - 4454.516294013226, - 4543.146864015262, - 4622.238819810134, - 4701.31124696704, - 4805.353993333516, - 4974.186776678836, - 5255.568085330181, - 5697.449485560717, - 6338.7557675246335, - 7193.801816638327, - 8257.731244117818 - ], - "flow:branch105_seg0:J93": [ - 1.0545862388133065, - 1.3580376391303646, - 1.6876194590263358, - 2.0266527175069977, - 2.3572660798356107, - 2.664328495836349, - 2.9370453783843984, - 3.170026559072024, - 3.36148357536093, - 3.5143973459482702, - 3.632900429936934, - 3.7206260697445686, - 3.781237012862186, - 3.8157680614726486, - 3.8244996225102335, - 3.807517667215169, - 3.7645414550179788, - 3.697634377951118, - 3.6096005890686524, - 3.504495866040424, - 3.3874115521196795, - 3.262456075026738, - 3.133152366663951, - 3.0017109288035124, - 2.86916335615325, - 2.7362353547602054, - 2.603760299614123, - 2.4733077809990096, - 2.3472199508718083, - 2.2282007031684024, - 2.1182846907993524, - 2.018072687844391, - 1.9257784813629786, - 1.8368792691473916, - 1.7449426409242685, - 1.6425194425082121, - 1.5229926291876512, - 1.3819976301205203, - 1.219433824351891, - 1.0389448573426436, - 0.8483357373382536, - 0.6580177450267767, - 0.47889461630429786, - 0.3206070231502342, - 0.19008776716387546, - 0.09062262880219174, - 0.021281251534726608, - -0.02076822072330205, - -0.040625119757222126, - -0.043386034707281175, - -0.03289197149278551, - -0.012256544071522855, - 0.01710985313532592, - 0.054145763176390485, - 0.09741118505802984, - 0.14494191421828176, - 0.19341049136166594, - 0.23880789662944785, - 0.27706865673439396, - 0.30501489281708644, - 0.3208525701461272, - 0.32501850120943915, - 0.31968969102612393, - 0.3079570802503026, - 0.29343132257656573, - 0.2787205839987213, - 0.26504321064995456, - 0.25210042704037644, - 0.23835913027539962, - 0.22189087929210172, - 0.20125230729955954, - 0.17616466164961994, - 0.1479186058605304, - 0.11890500731367465, - 0.09213894873838892, - 0.07026827160548023, - 0.05483525446197053, - 0.04572377920497488, - 0.04154001662672292, - 0.03996044131858718, - 0.038681661803881544, - 0.036410348803795095, - 0.03323179127454975, - 0.030651442202554485, - 0.03106614650698441, - 0.03672751822711251, - 0.04893939746038633, - 0.06721309800162345, - 0.08938906642017301, - 0.11247994111281527, - 0.1337583451099997, - 0.1525358505547474, - 0.17142924116320563, - 0.19689387912540068, - 0.23898176277630787, - 0.3094974662167227, - 0.4201239971949595, - 0.5800373218171458, - 0.7921175395038043, - 1.0545862388133065 - ], - "pressure:branch105_seg0:J93": [ - 8759.781316558508, - 10080.276081303844, - 11492.558673883235, - 12925.267688742597, - 14305.24332428439, - 15571.341661357807, - 16682.478274652025, - 17623.092095699696, - 18389.18362183701, - 18994.684026752497, - 19461.381080659514, - 19801.152870765676, - 20028.43468861123, - 20147.237374460183, - 20155.484075841192, - 20056.15657569372, - 19847.369813310277, - 19538.762785856277, - 19146.51738594171, - 18686.139506814536, - 18180.199651897135, - 17645.877010353222, - 17095.704794187506, - 16538.512790425575, - 15977.50813521703, - 15415.481632589268, - 14856.747817804324, - 14308.697028283614, - 13781.881784414198, - 13287.784170958997, - 12833.939617703943, - 12420.32059606909, - 12037.125876234533, - 11662.175602414172, - 11266.49021228741, - 10818.465289175696, - 10292.480002907128, - 9672.54366579139, - 8963.217218201095, - 8185.261328841007, - 7373.918673653112, - 6575.968102658203, - 5837.112943546932, - 5195.816916230629, - 4676.228633453038, - 4290.283461843397, - 4029.2689260161746, - 3877.960929847643, - 3816.0412802573424, - 3820.326254181613, - 3876.9371524667863, - 3974.5171276141764, - 4107.018971483824, - 4271.264871106525, - 4459.92287954057, - 4663.567871066189, - 4867.4213030894925, - 5053.681717634949, - 5205.531880057276, - 5311.2231251134945, - 5365.012552930617, - 5370.408488137203, - 5339.391995183531, - 5284.927434803331, - 5221.929220893908, - 5160.636048216025, - 5104.145701984092, - 5049.6013191114625, - 4989.700973486945, - 4916.21543353809, - 4824.245380640653, - 4713.844096133952, - 4592.139211257586, - 4470.412169898879, - 4361.333981939946, - 4275.253739265097, - 4217.300298200331, - 4185.257870300245, - 4171.640647629687, - 4166.574905260699, - 4160.627154377837, - 4149.658092554712, - 4135.809998828611, - 4126.716124175086, - 4133.018177622285, - 4163.5284866099155, - 4222.191468900979, - 4305.278698764456, - 4401.549069400347, - 4498.353303157057, - 4585.447268435041, - 4662.711830827996, - 4745.257457717251, - 4864.514705566881, - 5066.126051467513, - 5401.771302079705, - 5916.803696792349, - 6648.445917223545, - 7601.928725494247, - 8759.781316558508 - ], - "flow:J93:branch105_seg1": [ - 1.0545862388133065, - 1.3580376391303646, - 1.6876194590263358, - 2.0266527175069977, - 2.3572660798356107, - 2.664328495836349, - 2.9370453783843984, - 3.170026559072024, - 3.36148357536093, - 3.5143973459482702, - 3.632900429936934, - 3.7206260697445686, - 3.781237012862186, - 3.8157680614726486, - 3.8244996225102335, - 3.807517667215169, - 3.7645414550179788, - 3.697634377951118, - 3.6096005890686524, - 3.504495866040424, - 3.3874115521196795, - 3.262456075026738, - 3.133152366663951, - 3.0017109288035124, - 2.86916335615325, - 2.7362353547602054, - 2.603760299614123, - 2.4733077809990096, - 2.3472199508718083, - 2.2282007031684024, - 2.1182846907993524, - 2.018072687844391, - 1.9257784813629786, - 1.8368792691473916, - 1.7449426409242685, - 1.6425194425082121, - 1.5229926291876512, - 1.3819976301205203, - 1.219433824351891, - 1.0389448573426436, - 0.8483357373382536, - 0.6580177450267767, - 0.47889461630429786, - 0.3206070231502342, - 0.19008776716387546, - 0.09062262880219174, - 0.021281251534726608, - -0.02076822072330205, - -0.040625119757222126, - -0.043386034707281175, - -0.03289197149278551, - -0.012256544071522855, - 0.01710985313532592, - 0.054145763176390485, - 0.09741118505802984, - 0.14494191421828176, - 0.19341049136166594, - 0.23880789662944785, - 0.27706865673439396, - 0.30501489281708644, - 0.3208525701461272, - 0.32501850120943915, - 0.31968969102612393, - 0.3079570802503026, - 0.29343132257656573, - 0.2787205839987213, - 0.26504321064995456, - 0.25210042704037644, - 0.23835913027539962, - 0.22189087929210172, - 0.20125230729955954, - 0.17616466164961994, - 0.1479186058605304, - 0.11890500731367465, - 0.09213894873838892, - 0.07026827160548023, - 0.05483525446197053, - 0.04572377920497488, - 0.04154001662672292, - 0.03996044131858718, - 0.038681661803881544, - 0.036410348803795095, - 0.03323179127454975, - 0.030651442202554485, - 0.03106614650698441, - 0.03672751822711251, - 0.04893939746038633, - 0.06721309800162345, - 0.08938906642017301, - 0.11247994111281527, - 0.1337583451099997, - 0.1525358505547474, - 0.17142924116320563, - 0.19689387912540068, - 0.23898176277630787, - 0.3094974662167227, - 0.4201239971949595, - 0.5800373218171458, - 0.7921175395038043, - 1.0545862388133065 - ], - "pressure:J93:branch105_seg1": [ - 8759.781316558508, - 10080.276081303844, - 11492.558673883235, - 12925.267688742597, - 14305.24332428439, - 15571.341661357807, - 16682.478274652025, - 17623.092095699696, - 18389.18362183701, - 18994.684026752497, - 19461.381080659514, - 19801.152870765676, - 20028.43468861123, - 20147.237374460183, - 20155.484075841192, - 20056.15657569372, - 19847.369813310277, - 19538.762785856277, - 19146.51738594171, - 18686.139506814536, - 18180.199651897135, - 17645.877010353222, - 17095.704794187506, - 16538.512790425575, - 15977.50813521703, - 15415.481632589268, - 14856.747817804324, - 14308.697028283614, - 13781.881784414198, - 13287.784170958997, - 12833.939617703943, - 12420.32059606909, - 12037.125876234533, - 11662.175602414172, - 11266.49021228741, - 10818.465289175696, - 10292.480002907128, - 9672.54366579139, - 8963.217218201095, - 8185.261328841007, - 7373.918673653112, - 6575.968102658203, - 5837.112943546932, - 5195.816916230629, - 4676.228633453038, - 4290.283461843397, - 4029.2689260161746, - 3877.960929847643, - 3816.0412802573424, - 3820.326254181613, - 3876.9371524667863, - 3974.5171276141764, - 4107.018971483824, - 4271.264871106525, - 4459.92287954057, - 4663.567871066189, - 4867.4213030894925, - 5053.681717634949, - 5205.531880057276, - 5311.2231251134945, - 5365.012552930617, - 5370.408488137203, - 5339.391995183531, - 5284.927434803331, - 5221.929220893908, - 5160.636048216025, - 5104.145701984092, - 5049.6013191114625, - 4989.700973486945, - 4916.21543353809, - 4824.245380640653, - 4713.844096133952, - 4592.139211257586, - 4470.412169898879, - 4361.333981939946, - 4275.253739265097, - 4217.300298200331, - 4185.257870300245, - 4171.640647629687, - 4166.574905260699, - 4160.627154377837, - 4149.658092554712, - 4135.809998828611, - 4126.716124175086, - 4133.018177622285, - 4163.5284866099155, - 4222.191468900979, - 4305.278698764456, - 4401.549069400347, - 4498.353303157057, - 4585.447268435041, - 4662.711830827996, - 4745.257457717251, - 4864.514705566881, - 5066.126051467513, - 5401.771302079705, - 5916.803696792349, - 6648.445917223545, - 7601.928725494247, - 8759.781316558508 - ], - "flow:branch105_seg1:J94": [ - 1.051992276951761, - 1.3551756712822856, - 1.6846300912625485, - 2.0237114226760564, - 2.3545060902794086, - 2.6618471694807235, - 2.934907990400555, - 3.1682655284321046, - 3.360057853578536, - 3.513289723790786, - 3.632069439636374, - 3.7200332976372747, - 3.7808803241638698, - 3.8156329718115845, - 3.8245932563874847, - 3.8078385222646016, - 3.7650779828066177, - 3.698374000454003, - 3.61049421766522, - 3.5055039067932463, - 3.3885008456330317, - 3.2635855441360166, - 3.134304340779788, - 3.0028736501455398, - 2.8703297075622065, - 2.737401491206969, - 2.604912903850302, - 2.4744274036151275, - 2.3482828135283698, - 2.229187564699236, - 2.119182015851282, - 2.018894762215537, - 1.9265585435577415, - 1.837667791209641, - 1.7458071728589875, - 1.6435240523356527, - 1.5241785800792458, - 1.3833790411669604, - 1.2209913531108192, - 1.040610202145384, - 0.8500231561417944, - 0.6596329650817455, - 0.4803415111543076, - 0.321811880659604, - 0.1910301306039261, - 0.09129183656844288, - 0.021692758140122656, - -0.02055372913129195, - -0.04057511759619859, - -0.043457631478475596, - -0.033052145674381216, - -0.012502055931276849, - 0.016799611006346523, - 0.05377814577937621, - 0.09699715908806672, - 0.14451353142162404, - 0.1929995604893941, - 0.23845038504543825, - 0.27679717743170834, - 0.3048499150041415, - 0.3207915266109615, - 0.32504926947976787, - 0.31978459871943365, - 0.30808211596184454, - 0.293563339670371, - 0.278843655691408, - 0.26515613991348647, - 0.25221607476936847, - 0.23849510635062227, - 0.22206307921523719, - 0.20146387716304104, - 0.17640884522598474, - 0.148177322954277, - 0.11914921893466725, - 0.092343561076224, - 0.07041785278839732, - 0.0549276898828279, - 0.045765690058723135, - 0.04155588558643096, - 0.03997039923305687, - 0.03869845492571435, - 0.036437889957800285, - 0.033259195791659306, - 0.030658307443062298, - 0.031030755349640407, - 0.03663463040900332, - 0.04879046560268992, - 0.06702236230632344, - 0.08918308899844024, - 0.11228705163427151, - 0.13359024798759556, - 0.15237809608725678, - 0.1712332249629902, - 0.1965784417210216, - 0.2384432750599475, - 0.308617246462852, - 0.41883670754140606, - 0.5782902162117844, - 0.7898886876989551, - 1.051992276951761 - ], - "pressure:branch105_seg1:J94": [ - 8455.399278059747, - 9729.478722801281, - 11109.432075971377, - 12525.549248179896, - 13903.510616775062, - 15180.557247984154, - 16312.410214353737, - 17277.90295892298, - 18070.012657263756, - 18701.555943299278, - 19190.57692674995, - 19551.55914180563, - 19799.72701151651, - 19939.283307495767, - 19970.821726464437, - 19895.199429410783, - 19711.063495753013, - 19427.210201911923, - 19056.087866495385, - 18614.335459115668, - 18123.45050687034, - 17600.522574862178, - 17059.874836098235, - 16510.657644928677, - 15956.963526762933, - 15401.779457269302, - 14848.710225628483, - 14304.440640311992, - 13778.868150976874, - 13283.314173699833, - 12826.083407462651, - 12409.272746989833, - 12025.039574368213, - 11653.94107961962, - 11268.81438090798, - 10838.509938825795, - 10335.778031925793, - 9742.7805335613, - 9059.975777120833, - 8303.477686276045, - 7506.272127945788, - 6712.373039841016, - 5967.239786109987, - 5310.766906991558, - 4771.074100387203, - 4361.533293950908, - 4077.394408488314, - 3906.3424975317466, - 3827.223098273424, - 3818.453416953862, - 3864.428186379632, - 3952.3939322938663, - 4076.507262909498, - 4232.54831718368, - 4414.26398233574, - 4613.302412274911, - 4815.619294334772, - 5004.311534589547, - 5162.458954555572, - 5277.0823969277435, - 5340.972307031307, - 5356.253349312162, - 5332.522158751498, - 5282.644612723706, - 5221.673383378205, - 5160.371732986207, - 5103.46968459505, - 5049.450404325566, - 4991.762155382923, - 4922.327387844378, - 4835.31182336421, - 4729.762176801917, - 4611.364393720669, - 4490.301444291481, - 4379.167571917545, - 4288.88929931375, - 4225.678637472038, - 4188.735170136635, - 4171.982315557927, - 4165.687339491379, - 4160.262043443085, - 4150.538666486813, - 4137.177584055443, - 4126.687723401716, - 4129.179184256178, - 4153.939092285339, - 4206.160552618417, - 4283.51461114043, - 4376.599909680829, - 4472.940539998819, - 4561.340553141742, - 4639.389243772857, - 4718.705879369941, - 4826.969166078877, - 5006.718238849923, - 5307.565032727156, - 5777.693538500343, - 6455.160032174209, - 7350.704298006685, - 8455.399278059747 - ], - "flow:J94:branch105_seg2": [ - 1.051992276951761, - 1.3551756712822856, - 1.6846300912625485, - 2.0237114226760564, - 2.3545060902794086, - 2.6618471694807235, - 2.934907990400555, - 3.1682655284321046, - 3.360057853578536, - 3.513289723790786, - 3.632069439636374, - 3.7200332976372747, - 3.7808803241638698, - 3.8156329718115845, - 3.8245932563874847, - 3.8078385222646016, - 3.7650779828066177, - 3.698374000454003, - 3.61049421766522, - 3.5055039067932463, - 3.3885008456330317, - 3.2635855441360166, - 3.134304340779788, - 3.0028736501455398, - 2.8703297075622065, - 2.737401491206969, - 2.604912903850302, - 2.4744274036151275, - 2.3482828135283698, - 2.229187564699236, - 2.119182015851282, - 2.018894762215537, - 1.9265585435577415, - 1.837667791209641, - 1.7458071728589875, - 1.6435240523356527, - 1.5241785800792458, - 1.3833790411669604, - 1.2209913531108192, - 1.040610202145384, - 0.8500231561417944, - 0.6596329650817455, - 0.4803415111543076, - 0.321811880659604, - 0.1910301306039261, - 0.09129183656844288, - 0.021692758140122656, - -0.02055372913129195, - -0.04057511759619859, - -0.043457631478475596, - -0.033052145674381216, - -0.012502055931276849, - 0.016799611006346523, - 0.05377814577937621, - 0.09699715908806672, - 0.14451353142162404, - 0.1929995604893941, - 0.23845038504543825, - 0.27679717743170834, - 0.3048499150041415, - 0.3207915266109615, - 0.32504926947976787, - 0.31978459871943365, - 0.30808211596184454, - 0.293563339670371, - 0.278843655691408, - 0.26515613991348647, - 0.25221607476936847, - 0.23849510635062227, - 0.22206307921523719, - 0.20146387716304104, - 0.17640884522598474, - 0.148177322954277, - 0.11914921893466725, - 0.092343561076224, - 0.07041785278839732, - 0.0549276898828279, - 0.045765690058723135, - 0.04155588558643096, - 0.03997039923305687, - 0.03869845492571435, - 0.036437889957800285, - 0.033259195791659306, - 0.030658307443062298, - 0.031030755349640407, - 0.03663463040900332, - 0.04879046560268992, - 0.06702236230632344, - 0.08918308899844024, - 0.11228705163427151, - 0.13359024798759556, - 0.15237809608725678, - 0.1712332249629902, - 0.1965784417210216, - 0.2384432750599475, - 0.308617246462852, - 0.41883670754140606, - 0.5782902162117844, - 0.7898886876989551, - 1.051992276951761 - ], - "pressure:J94:branch105_seg2": [ - 8455.399278059747, - 9729.478722801281, - 11109.432075971377, - 12525.549248179896, - 13903.510616775062, - 15180.557247984154, - 16312.410214353737, - 17277.90295892298, - 18070.012657263756, - 18701.555943299278, - 19190.57692674995, - 19551.55914180563, - 19799.72701151651, - 19939.283307495767, - 19970.821726464437, - 19895.199429410783, - 19711.063495753013, - 19427.210201911923, - 19056.087866495385, - 18614.335459115668, - 18123.45050687034, - 17600.522574862178, - 17059.874836098235, - 16510.657644928677, - 15956.963526762933, - 15401.779457269302, - 14848.710225628483, - 14304.440640311992, - 13778.868150976874, - 13283.314173699833, - 12826.083407462651, - 12409.272746989833, - 12025.039574368213, - 11653.94107961962, - 11268.81438090798, - 10838.509938825795, - 10335.778031925793, - 9742.7805335613, - 9059.975777120833, - 8303.477686276045, - 7506.272127945788, - 6712.373039841016, - 5967.239786109987, - 5310.766906991558, - 4771.074100387203, - 4361.533293950908, - 4077.394408488314, - 3906.3424975317466, - 3827.223098273424, - 3818.453416953862, - 3864.428186379632, - 3952.3939322938663, - 4076.507262909498, - 4232.54831718368, - 4414.26398233574, - 4613.302412274911, - 4815.619294334772, - 5004.311534589547, - 5162.458954555572, - 5277.0823969277435, - 5340.972307031307, - 5356.253349312162, - 5332.522158751498, - 5282.644612723706, - 5221.673383378205, - 5160.371732986207, - 5103.46968459505, - 5049.450404325566, - 4991.762155382923, - 4922.327387844378, - 4835.31182336421, - 4729.762176801917, - 4611.364393720669, - 4490.301444291481, - 4379.167571917545, - 4288.88929931375, - 4225.678637472038, - 4188.735170136635, - 4171.982315557927, - 4165.687339491379, - 4160.262043443085, - 4150.538666486813, - 4137.177584055443, - 4126.687723401716, - 4129.179184256178, - 4153.939092285339, - 4206.160552618417, - 4283.51461114043, - 4376.599909680829, - 4472.940539998819, - 4561.340553141742, - 4639.389243772857, - 4718.705879369941, - 4826.969166078877, - 5006.718238849923, - 5307.565032727156, - 5777.693538500343, - 6455.160032174209, - 7350.704298006685, - 8455.399278059747 - ], - "flow:branch109_seg0:J95": [ - 0.6946893014628084, - 0.8994360133003612, - 1.1267153653923714, - 1.366145928764326, - 1.6058945747077624, - 1.835150004214356, - 2.045358707225023, - 2.2311667629753105, - 2.389652540085929, - 2.5211643509540127, - 2.627325849145676, - 2.7099667334128523, - 2.771302331320084, - 2.8122259383008092, - 2.833204436451403, - 2.8345350435270276, - 2.816205946810702, - 2.7795031029138797, - 2.7261826262646083, - 2.658818030768696, - 2.5807382460123245, - 2.494847070283205, - 2.4037944711170227, - 2.3094880473845567, - 2.213084301422647, - 2.115450804880285, - 2.0174037510245233, - 1.9201084308952423, - 1.8251633029934606, - 1.7344142254884318, - 1.6493768362486863, - 1.570757106144289, - 1.497823944946916, - 1.4280921211928361, - 1.357707599314392, - 1.2819166305016212, - 1.1961616264812074, - 1.0970162905741272, - 0.9835257663439766, - 0.857119247904269, - 0.7220176187808153, - 0.5844612582962074, - 0.45148474492225776, - 0.329804682721583, - 0.22479844174798394, - 0.13973916827399344, - 0.07524083412207416, - 0.030449070735604874, - 0.00277242242666309, - -0.010794448904545005, - -0.012818352756589038, - -0.005605230944520011, - 0.009495406784067285, - 0.03140877202894347, - 0.0589248713122869, - 0.09059652434025392, - 0.12419055116434392, - 0.15701164675983728, - 0.18623757514142936, - 0.20947600264486246, - 0.22511503714821945, - 0.23289863714272768, - 0.23374395605354154, - 0.22931281749925564, - 0.22179406594158246, - 0.21297834775590477, - 0.20393497831318647, - 0.1948358135047965, - 0.18502885825094387, - 0.17347798700671788, - 0.15928526315623742, - 0.14214466536208212, - 0.1226665249896602, - 0.10218954183148243, - 0.08255499198434649, - 0.0655342127146882, - 0.052347415599332425, - 0.043258435202728825, - 0.037703917733072745, - 0.03443667024155199, - 0.03205567338174255, - 0.029625254629902828, - 0.026968648188824166, - 0.02478433410572416, - 0.02441201777134955, - 0.027255603412424122, - 0.03428062953583711, - 0.045444635638743944, - 0.05966050326781434, - 0.07520903201656853, - 0.0903460243546493, - 0.10438706639176838, - 0.11857289613202379, - 0.13655018965669835, - 0.16439526190759277, - 0.20965202063467908, - 0.280236775236712, - 0.3829420405176873, - 0.5209909210291719, - 0.6946893014628084 - ], - "pressure:branch109_seg0:J95": [ - 8184.1227559032595, - 9365.493074036243, - 10651.250896081876, - 11981.889413049814, - 13293.271119017601, - 14527.7644101818, - 15642.666310878287, - 16616.79499782023, - 17437.98568788075, - 18110.67851398948, - 18649.884280581966, - 19062.526692728276, - 19360.392623911295, - 19548.384860173483, - 19625.375803077033, - 19595.805692227907, - 19458.7288614539, - 19221.698999036253, - 18899.3213960638, - 18504.300828521493, - 18056.218897155886, - 17571.22021883557, - 17061.55983771877, - 16537.17002571007, - 16003.088237455899, - 15463.543735276811, - 14923.632796533437, - 14390.470469081341, - 13873.542898474052, - 13383.230227284432, - 12926.860095208956, - 12505.728544564521, - 12113.345915506981, - 11732.385765536324, - 11339.272508776441, - 10907.046201236806, - 10412.579482246516, - 9839.195490476877, - 9186.860801381421, - 8469.626137501626, - 7713.752854581525, - 6957.607583833907, - 6240.469723915885, - 5597.727607622162, - 5054.069505516781, - 4625.213999277728, - 4309.240765531234, - 4097.320297174796, - 3975.5004784755556, - 3924.8826941583307, - 3933.2263621871043, - 3989.4650019492497, - 4086.269282137558, - 4219.122162857626, - 4380.2020641038935, - 4560.577436453275, - 4747.105375791255, - 4923.853512650252, - 5075.444589690654, - 5190.348208354905, - 5261.52907123358, - 5289.405412084998, - 5282.464082982325, - 5250.080400000546, - 5204.341287522404, - 5154.6878695406795, - 5104.954113494617, - 5054.325586907276, - 4998.105317456076, - 4930.180475906144, - 4846.5673833960345, - 4746.784023425362, - 4635.972190253817, - 4522.955347899063, - 4418.121652439918, - 4330.623217794791, - 4265.88980839641, - 4223.488799078847, - 4198.509941625585, - 4183.666208425358, - 4171.213764512597, - 4157.211186490262, - 4142.507953269813, - 4132.435077751396, - 4135.1895230814, - 4158.055718272338, - 4204.922223356924, - 4273.874561911161, - 4356.425432457689, - 4442.777404420846, - 4524.314827617285, - 4599.92175676832, - 4680.730177386144, - 4791.58386099566, - 4969.982752522889, - 5260.260517076099, - 5702.888258174227, - 6333.881494570775, - 7163.878914088377, - 8184.1227559032595 - ], - "flow:J95:branch109_seg1": [ - 0.6946893014628084, - 0.8994360133003612, - 1.1267153653923714, - 1.366145928764326, - 1.6058945747077624, - 1.835150004214356, - 2.045358707225023, - 2.2311667629753105, - 2.389652540085929, - 2.5211643509540127, - 2.627325849145676, - 2.7099667334128523, - 2.771302331320084, - 2.8122259383008092, - 2.833204436451403, - 2.8345350435270276, - 2.816205946810702, - 2.7795031029138797, - 2.7261826262646083, - 2.658818030768696, - 2.5807382460123245, - 2.494847070283205, - 2.4037944711170227, - 2.3094880473845567, - 2.213084301422647, - 2.115450804880285, - 2.0174037510245233, - 1.9201084308952423, - 1.8251633029934606, - 1.7344142254884318, - 1.6493768362486863, - 1.570757106144289, - 1.497823944946916, - 1.4280921211928361, - 1.357707599314392, - 1.2819166305016212, - 1.1961616264812074, - 1.0970162905741272, - 0.9835257663439766, - 0.857119247904269, - 0.7220176187808153, - 0.5844612582962074, - 0.45148474492225776, - 0.329804682721583, - 0.22479844174798394, - 0.13973916827399344, - 0.07524083412207416, - 0.030449070735604874, - 0.00277242242666309, - -0.010794448904545005, - -0.012818352756589038, - -0.005605230944520011, - 0.009495406784067285, - 0.03140877202894347, - 0.0589248713122869, - 0.09059652434025392, - 0.12419055116434392, - 0.15701164675983728, - 0.18623757514142936, - 0.20947600264486246, - 0.22511503714821945, - 0.23289863714272768, - 0.23374395605354154, - 0.22931281749925564, - 0.22179406594158246, - 0.21297834775590477, - 0.20393497831318647, - 0.1948358135047965, - 0.18502885825094387, - 0.17347798700671788, - 0.15928526315623742, - 0.14214466536208212, - 0.1226665249896602, - 0.10218954183148243, - 0.08255499198434649, - 0.0655342127146882, - 0.052347415599332425, - 0.043258435202728825, - 0.037703917733072745, - 0.03443667024155199, - 0.03205567338174255, - 0.029625254629902828, - 0.026968648188824166, - 0.02478433410572416, - 0.02441201777134955, - 0.027255603412424122, - 0.03428062953583711, - 0.045444635638743944, - 0.05966050326781434, - 0.07520903201656853, - 0.0903460243546493, - 0.10438706639176838, - 0.11857289613202379, - 0.13655018965669835, - 0.16439526190759277, - 0.20965202063467908, - 0.280236775236712, - 0.3829420405176873, - 0.5209909210291719, - 0.6946893014628084 - ], - "pressure:J95:branch109_seg1": [ - 8184.1227559032595, - 9365.493074036243, - 10651.250896081876, - 11981.889413049814, - 13293.271119017601, - 14527.7644101818, - 15642.666310878287, - 16616.79499782023, - 17437.98568788075, - 18110.67851398948, - 18649.884280581966, - 19062.526692728276, - 19360.392623911295, - 19548.384860173483, - 19625.375803077033, - 19595.805692227907, - 19458.7288614539, - 19221.698999036253, - 18899.3213960638, - 18504.300828521493, - 18056.218897155886, - 17571.22021883557, - 17061.55983771877, - 16537.17002571007, - 16003.088237455899, - 15463.543735276811, - 14923.632796533437, - 14390.470469081341, - 13873.542898474052, - 13383.230227284432, - 12926.860095208956, - 12505.728544564521, - 12113.345915506981, - 11732.385765536324, - 11339.272508776441, - 10907.046201236806, - 10412.579482246516, - 9839.195490476877, - 9186.860801381421, - 8469.626137501626, - 7713.752854581525, - 6957.607583833907, - 6240.469723915885, - 5597.727607622162, - 5054.069505516781, - 4625.213999277728, - 4309.240765531234, - 4097.320297174796, - 3975.5004784755556, - 3924.8826941583307, - 3933.2263621871043, - 3989.4650019492497, - 4086.269282137558, - 4219.122162857626, - 4380.2020641038935, - 4560.577436453275, - 4747.105375791255, - 4923.853512650252, - 5075.444589690654, - 5190.348208354905, - 5261.52907123358, - 5289.405412084998, - 5282.464082982325, - 5250.080400000546, - 5204.341287522404, - 5154.6878695406795, - 5104.954113494617, - 5054.325586907276, - 4998.105317456076, - 4930.180475906144, - 4846.5673833960345, - 4746.784023425362, - 4635.972190253817, - 4522.955347899063, - 4418.121652439918, - 4330.623217794791, - 4265.88980839641, - 4223.488799078847, - 4198.509941625585, - 4183.666208425358, - 4171.213764512597, - 4157.211186490262, - 4142.507953269813, - 4132.435077751396, - 4135.1895230814, - 4158.055718272338, - 4204.922223356924, - 4273.874561911161, - 4356.425432457689, - 4442.777404420846, - 4524.314827617285, - 4599.92175676832, - 4680.730177386144, - 4791.58386099566, - 4969.982752522889, - 5260.260517076099, - 5702.888258174227, - 6333.881494570775, - 7163.878914088377, - 8184.1227559032595 - ], - "flow:branch109_seg1:J96": [ - 0.6918772721755747, - 0.8962889866280329, - 1.1233601691158863, - 1.3627721456543465, - 1.6026506188310583, - 1.8321534615707395, - 2.0426961212876735, - 2.228897970941491, - 2.3877577955705176, - 2.5196331946751913, - 2.626127538453902, - 2.709063597753432, - 2.7706916015961047, - 2.811890210340364, - 2.833146967654268, - 2.834749757516805, - 2.8166800825231997, - 2.78022863655017, - 2.7271029898782104, - 2.6598917017122865, - 2.5819325723296593, - 2.4961131391467113, - 2.4051090166714792, - 2.310833325970293, - 2.214446496437034, - 2.116822605547997, - 2.01876846454726, - 1.9214439232356388, - 1.8264437934480886, - 1.735617976716472, - 1.6504867940842665, - 1.571783199227823, - 1.4987978852565735, - 1.4290614540739095, - 1.3587415629774153, - 1.2830845262559984, - 1.1975110026220253, - 1.0985709084737545, - 0.9852763883677799, - 0.8590027592285037, - 0.7239513613696005, - 0.5863492302581258, - 0.453224149611353, - 0.3313062319226476, - 0.22603413060921096, - 0.14068503998840023, - 0.07589250350335995, - 0.030865877080694926, - 0.002981874362612658, - -0.010750844549095515, - -0.012899473107740126, - -0.005806762934276622, - 0.009200280019537732, - 0.03103558769406476, - 0.05848482029754979, - 0.09012530518841635, - 0.12372373823240765, - 0.1565880642088226, - 0.18589475474058442, - 0.20924008721111556, - 0.22499008080465693, - 0.2328767971181007, - 0.23380041496912327, - 0.22941531500447793, - 0.22191861926208906, - 0.21310596905866647, - 0.2040603894647819, - 0.1949684980085201, - 0.18518393324358273, - 0.17367093356533078, - 0.15951907220539768, - 0.14241386428876343, - 0.12295615286559768, - 0.10247047239086911, - 0.08280101980866125, - 0.06572773281801722, - 0.05248343109163093, - 0.04333882273184277, - 0.03775054401991538, - 0.034470041181298185, - 0.03208799669286178, - 0.0296628633317918, - 0.027003351464638444, - 0.024797501292754934, - 0.024382428191844413, - 0.027166994742947256, - 0.0341319751438433, - 0.04524776057916417, - 0.05944071589163545, - 0.07499409193602982, - 0.09014927897612321, - 0.10419642950346927, - 0.11834285195465004, - 0.13620054125577674, - 0.1638217693291826, - 0.20872436329039967, - 0.27888343182903624, - 0.3811034123146584, - 0.5186084836590829, - 0.6918772721755747 - ], - "pressure:branch109_seg1:J96": [ - 7822.719923353362, - 8940.702043652467, - 10176.919842800355, - 11474.99121015529, - 12770.915779709803, - 14006.460714937215, - 15136.154917778947, - 16132.716137720006, - 16980.80258929083, - 17682.897085430963, - 18249.01491524861, - 18688.331530604857, - 19012.913102899554, - 19227.521293100366, - 19333.972472241414, - 19334.44590133934, - 19228.6519837701, - 19023.668724602005, - 18729.847025800933, - 18360.859719516127, - 17935.032040903636, - 17468.032953030746, - 16973.812606290205, - 16462.59496643597, - 15940.36663820573, - 15411.732943103016, - 14881.196336860565, - 14355.187885600659, - 13842.48754854094, - 13353.14984100885, - 12895.175755098444, - 12471.950901602058, - 12079.08787379024, - 11702.42239825303, - 11320.693238558422, - 10908.00863721447, - 10440.034196056653, - 9898.591453932335, - 9279.49283145891, - 8591.560106739433, - 7858.191665834461, - 7113.962543296217, - 6397.020406844357, - 5743.4267633831205, - 5181.4980356317565, - 4728.464588942143, - 4386.590968600758, - 4150.659368088028, - 4006.566870687092, - 3937.606275286982, - 3930.2988853712877, - 3972.3471967123432, - 4056.57916496773, - 4177.429287141423, - 4328.077304329402, - 4500.601202794783, - 4682.7323333364175, - 4859.664560400505, - 5016.156267954116, - 5139.567038438687, - 5221.468657868885, - 5260.816321442436, - 5263.242155017907, - 5237.748944327854, - 5196.2271438309035, - 5148.299671962769, - 5099.3703809942435, - 5050.056564833548, - 4996.61669151063, - 4933.357199456187, - 4855.569009153414, - 4761.817565336459, - 4655.747051872246, - 4544.849641070865, - 4439.156457196257, - 4348.162201139827, - 4278.249361891898, - 4230.467741025907, - 4201.471698940503, - 4184.414555367645, - 4171.669419523982, - 4158.408925315526, - 4144.003974794564, - 4132.50715655279, - 4131.333644182416, - 4148.006133259711, - 4187.511485861137, - 4249.316136111992, - 4327.05644301734, - 4411.370845938773, - 4492.9678854334525, - 4568.5995619665255, - 4645.754999815077, - 4745.036912077011, - 4900.08718008094, - 5152.210028423513, - 5543.839811731696, - 6111.4831034588915, - 6871.041396586325, - 7822.719923353362 - ], - "flow:J96:branch109_seg2": [ - 0.6918772721755747, - 0.8962889866280329, - 1.1233601691158863, - 1.3627721456543465, - 1.6026506188310583, - 1.8321534615707395, - 2.0426961212876735, - 2.228897970941491, - 2.3877577955705176, - 2.5196331946751913, - 2.626127538453902, - 2.709063597753432, - 2.7706916015961047, - 2.811890210340364, - 2.833146967654268, - 2.834749757516805, - 2.8166800825231997, - 2.78022863655017, - 2.7271029898782104, - 2.6598917017122865, - 2.5819325723296593, - 2.4961131391467113, - 2.4051090166714792, - 2.310833325970293, - 2.214446496437034, - 2.116822605547997, - 2.01876846454726, - 1.9214439232356388, - 1.8264437934480886, - 1.735617976716472, - 1.6504867940842665, - 1.571783199227823, - 1.4987978852565735, - 1.4290614540739095, - 1.3587415629774153, - 1.2830845262559984, - 1.1975110026220253, - 1.0985709084737545, - 0.9852763883677799, - 0.8590027592285037, - 0.7239513613696005, - 0.5863492302581258, - 0.453224149611353, - 0.3313062319226476, - 0.22603413060921096, - 0.14068503998840023, - 0.07589250350335995, - 0.030865877080694926, - 0.002981874362612658, - -0.010750844549095515, - -0.012899473107740126, - -0.005806762934276622, - 0.009200280019537732, - 0.03103558769406476, - 0.05848482029754979, - 0.09012530518841635, - 0.12372373823240765, - 0.1565880642088226, - 0.18589475474058442, - 0.20924008721111556, - 0.22499008080465693, - 0.2328767971181007, - 0.23380041496912327, - 0.22941531500447793, - 0.22191861926208906, - 0.21310596905866647, - 0.2040603894647819, - 0.1949684980085201, - 0.18518393324358273, - 0.17367093356533078, - 0.15951907220539768, - 0.14241386428876343, - 0.12295615286559768, - 0.10247047239086911, - 0.08280101980866125, - 0.06572773281801722, - 0.05248343109163093, - 0.04333882273184277, - 0.03775054401991538, - 0.034470041181298185, - 0.03208799669286178, - 0.0296628633317918, - 0.027003351464638444, - 0.024797501292754934, - 0.024382428191844413, - 0.027166994742947256, - 0.0341319751438433, - 0.04524776057916417, - 0.05944071589163545, - 0.07499409193602982, - 0.09014927897612321, - 0.10419642950346927, - 0.11834285195465004, - 0.13620054125577674, - 0.1638217693291826, - 0.20872436329039967, - 0.27888343182903624, - 0.3811034123146584, - 0.5186084836590829, - 0.6918772721755747 - ], - "pressure:J96:branch109_seg2": [ - 7822.719923353362, - 8940.702043652467, - 10176.919842800355, - 11474.99121015529, - 12770.915779709803, - 14006.460714937215, - 15136.154917778947, - 16132.716137720006, - 16980.80258929083, - 17682.897085430963, - 18249.01491524861, - 18688.331530604857, - 19012.913102899554, - 19227.521293100366, - 19333.972472241414, - 19334.44590133934, - 19228.6519837701, - 19023.668724602005, - 18729.847025800933, - 18360.859719516127, - 17935.032040903636, - 17468.032953030746, - 16973.812606290205, - 16462.59496643597, - 15940.36663820573, - 15411.732943103016, - 14881.196336860565, - 14355.187885600659, - 13842.48754854094, - 13353.14984100885, - 12895.175755098444, - 12471.950901602058, - 12079.08787379024, - 11702.42239825303, - 11320.693238558422, - 10908.00863721447, - 10440.034196056653, - 9898.591453932335, - 9279.49283145891, - 8591.560106739433, - 7858.191665834461, - 7113.962543296217, - 6397.020406844357, - 5743.4267633831205, - 5181.4980356317565, - 4728.464588942143, - 4386.590968600758, - 4150.659368088028, - 4006.566870687092, - 3937.606275286982, - 3930.2988853712877, - 3972.3471967123432, - 4056.57916496773, - 4177.429287141423, - 4328.077304329402, - 4500.601202794783, - 4682.7323333364175, - 4859.664560400505, - 5016.156267954116, - 5139.567038438687, - 5221.468657868885, - 5260.816321442436, - 5263.242155017907, - 5237.748944327854, - 5196.2271438309035, - 5148.299671962769, - 5099.3703809942435, - 5050.056564833548, - 4996.61669151063, - 4933.357199456187, - 4855.569009153414, - 4761.817565336459, - 4655.747051872246, - 4544.849641070865, - 4439.156457196257, - 4348.162201139827, - 4278.249361891898, - 4230.467741025907, - 4201.471698940503, - 4184.414555367645, - 4171.669419523982, - 4158.408925315526, - 4144.003974794564, - 4132.50715655279, - 4131.333644182416, - 4148.006133259711, - 4187.511485861137, - 4249.316136111992, - 4327.05644301734, - 4411.370845938773, - 4492.9678854334525, - 4568.5995619665255, - 4645.754999815077, - 4745.036912077011, - 4900.08718008094, - 5152.210028423513, - 5543.839811731696, - 6111.4831034588915, - 6871.041396586325, - 7822.719923353362 - ], - "flow:branch115_seg0:J97": [ - 0.6565073892896292, - 0.8492002341531841, - 1.061505461932825, - 1.28316247674466, - 1.5028351197371608, - 1.7104461044501378, - 1.898323693868399, - 2.062010684592347, - 2.1994888514675317, - 2.311793030325268, - 2.401019040577969, - 2.469302972241671, - 2.518895743590988, - 2.550638574279572, - 2.5648562397094588, - 2.561653938005923, - 2.5408964698520573, - 2.5037145385151356, - 2.451768045091636, - 2.3875319255077168, - 2.3141618451720576, - 2.2343982343588626, - 2.1506630356828533, - 2.0646072084661498, - 1.9771457370058334, - 1.8889131555107919, - 1.8005364450083432, - 1.7130290178866632, - 1.6278628285083572, - 1.5467677296731708, - 1.4711517202527693, - 1.4016100879380071, - 1.3373159050246335, - 1.2757497892508087, - 1.2130858839568077, - 1.1447042954792863, - 1.0662827746789982, - 0.9747179613155657, - 0.8693788445588155, - 0.7520051908423769, - 0.6270037881693115, - 0.5006152983547726, - 0.37969567470552773, - 0.2705923631767516, - 0.17816369817333844, - 0.10510263534363622, - 0.0515193448904222, - 0.01609060789877527, - -0.004040845118332127, - -0.011963495279846375, - -0.01021540710068983, - -0.0009075082215121647, - 0.014833475845701112, - 0.036172798543002246, - 0.06215199102394262, - 0.09151766368865272, - 0.12222692257363649, - 0.15177178984169412, - 0.17752354122070108, - 0.19729742353885676, - 0.2097074441449258, - 0.21469784010842222, - 0.21333960875076444, - 0.20739653967620664, - 0.1990583275551295, - 0.19005136458623934, - 0.18132661289279964, - 0.17291091815438123, - 0.16402436868596573, - 0.15354319872142297, - 0.1405324741322755, - 0.12469447420037216, - 0.10666024238551425, - 0.08779238804448841, - 0.0699186008748204, - 0.05475193829451967, - 0.04341444381195774, - 0.03606094101125074, - 0.03201817153300899, - 0.029966092178776105, - 0.028489904634659436, - 0.026679149571000767, - 0.024418003350682036, - 0.02247270510196177, - 0.02222644731178628, - 0.025090734906600378, - 0.03199364809956957, - 0.04283449032392333, - 0.0564722286804914, - 0.07115392777380358, - 0.08515245007409598, - 0.09783190561959933, - 0.11048410772069496, - 0.12676254684241664, - 0.1526451768203258, - 0.19544758364880205, - 0.26269373217055975, - 0.36063298440919195, - 0.4919955467570587, - 0.6565073892896292 - ], - "pressure:branch115_seg0:J97": [ - 8306.483520106347, - 9522.05080915209, - 10838.72523906299, - 12192.113153756707, - 13514.737768842726, - 14747.821326409523, - 15849.215915174767, - 16798.753209432565, - 17588.388172638835, - 18226.698080709448, - 18730.57718573044, - 19110.426254364225, - 19379.206714865995, - 19541.42578465622, - 19596.111891998986, - 19545.975285205586, - 19389.44564690383, - 19134.540012555528, - 18795.28504390995, - 18385.511263027292, - 17925.585562727454, - 17432.064923813385, - 16917.551276294027, - 16391.43563987927, - 15858.051320124141, - 15320.84183492105, - 14784.247817794074, - 14255.132211276039, - 13743.132016126032, - 13258.902038822645, - 12810.07960836318, - 12397.879669628448, - 12014.91918215253, - 11642.754663381915, - 11256.061904247239, - 10826.246645856092, - 10328.949185655296, - 9747.641889200086, - 9083.417130954955, - 8352.213997610545, - 7583.68943208013, - 6818.92953012605, - 6099.75715473394, - 5462.911875980569, - 4933.182338731189, - 4524.743031972538, - 4233.388521317634, - 4047.5160843848007, - 3950.274957582567, - 3921.2081001430874, - 3946.8262820618183, - 4016.016102092504, - 4122.023744648407, - 4261.047097521927, - 4426.317112307686, - 4609.11029025953, - 4796.186270663032, - 4971.396241048695, - 5118.956928221094, - 5227.0480256193205, - 5289.046153613732, - 5306.444268779956, - 5288.491281973467, - 5246.152259883929, - 5192.719954678599, - 5137.988694278239, - 5085.807467676487, - 5034.703508290851, - 4978.9368139490525, - 4911.412393849097, - 4827.445882827819, - 4726.404489232454, - 4613.810655601317, - 4499.255511417086, - 4393.994052450978, - 4307.784476976483, - 4246.142823539225, - 4208.300510271158, - 4188.478713804978, - 4178.334525399843, - 4169.428184309936, - 4157.401010848447, - 4143.27177195387, - 4133.074751857497, - 4135.906130632388, - 4159.86450588853, - 4209.179636250519, - 4281.545204819476, - 4367.895001559049, - 4457.278853014363, - 4540.165297305512, - 4615.290166466202, - 4694.500974981057, - 4804.304255479248, - 4984.594389993208, - 5282.040667581538, - 5739.198664795878, - 6392.603196070807, - 7252.235796286889, - 8306.483520106347 - ], - "flow:J97:branch115_seg1": [ - 0.6565073892896292, - 0.8492002341531841, - 1.061505461932825, - 1.28316247674466, - 1.5028351197371608, - 1.7104461044501378, - 1.898323693868399, - 2.062010684592347, - 2.1994888514675317, - 2.311793030325268, - 2.401019040577969, - 2.469302972241671, - 2.518895743590988, - 2.550638574279572, - 2.5648562397094588, - 2.561653938005923, - 2.5408964698520573, - 2.5037145385151356, - 2.451768045091636, - 2.3875319255077168, - 2.3141618451720576, - 2.2343982343588626, - 2.1506630356828533, - 2.0646072084661498, - 1.9771457370058334, - 1.8889131555107919, - 1.8005364450083432, - 1.7130290178866632, - 1.6278628285083572, - 1.5467677296731708, - 1.4711517202527693, - 1.4016100879380071, - 1.3373159050246335, - 1.2757497892508087, - 1.2130858839568077, - 1.1447042954792863, - 1.0662827746789982, - 0.9747179613155657, - 0.8693788445588155, - 0.7520051908423769, - 0.6270037881693115, - 0.5006152983547726, - 0.37969567470552773, - 0.2705923631767516, - 0.17816369817333844, - 0.10510263534363622, - 0.0515193448904222, - 0.01609060789877527, - -0.004040845118332127, - -0.011963495279846375, - -0.01021540710068983, - -0.0009075082215121647, - 0.014833475845701112, - 0.036172798543002246, - 0.06215199102394262, - 0.09151766368865272, - 0.12222692257363649, - 0.15177178984169412, - 0.17752354122070108, - 0.19729742353885676, - 0.2097074441449258, - 0.21469784010842222, - 0.21333960875076444, - 0.20739653967620664, - 0.1990583275551295, - 0.19005136458623934, - 0.18132661289279964, - 0.17291091815438123, - 0.16402436868596573, - 0.15354319872142297, - 0.1405324741322755, - 0.12469447420037216, - 0.10666024238551425, - 0.08779238804448841, - 0.0699186008748204, - 0.05475193829451967, - 0.04341444381195774, - 0.03606094101125074, - 0.03201817153300899, - 0.029966092178776105, - 0.028489904634659436, - 0.026679149571000767, - 0.024418003350682036, - 0.02247270510196177, - 0.02222644731178628, - 0.025090734906600378, - 0.03199364809956957, - 0.04283449032392333, - 0.0564722286804914, - 0.07115392777380358, - 0.08515245007409598, - 0.09783190561959933, - 0.11048410772069496, - 0.12676254684241664, - 0.1526451768203258, - 0.19544758364880205, - 0.26269373217055975, - 0.36063298440919195, - 0.4919955467570587, - 0.6565073892896292 - ], - "pressure:J97:branch115_seg1": [ - 8306.483520106347, - 9522.05080915209, - 10838.72523906299, - 12192.113153756707, - 13514.737768842726, - 14747.821326409523, - 15849.215915174767, - 16798.753209432565, - 17588.388172638835, - 18226.698080709448, - 18730.57718573044, - 19110.426254364225, - 19379.206714865995, - 19541.42578465622, - 19596.111891998986, - 19545.975285205586, - 19389.44564690383, - 19134.540012555528, - 18795.28504390995, - 18385.511263027292, - 17925.585562727454, - 17432.064923813385, - 16917.551276294027, - 16391.43563987927, - 15858.051320124141, - 15320.84183492105, - 14784.247817794074, - 14255.132211276039, - 13743.132016126032, - 13258.902038822645, - 12810.07960836318, - 12397.879669628448, - 12014.91918215253, - 11642.754663381915, - 11256.061904247239, - 10826.246645856092, - 10328.949185655296, - 9747.641889200086, - 9083.417130954955, - 8352.213997610545, - 7583.68943208013, - 6818.92953012605, - 6099.75715473394, - 5462.911875980569, - 4933.182338731189, - 4524.743031972538, - 4233.388521317634, - 4047.5160843848007, - 3950.274957582567, - 3921.2081001430874, - 3946.8262820618183, - 4016.016102092504, - 4122.023744648407, - 4261.047097521927, - 4426.317112307686, - 4609.11029025953, - 4796.186270663032, - 4971.396241048695, - 5118.956928221094, - 5227.0480256193205, - 5289.046153613732, - 5306.444268779956, - 5288.491281973467, - 5246.152259883929, - 5192.719954678599, - 5137.988694278239, - 5085.807467676487, - 5034.703508290851, - 4978.9368139490525, - 4911.412393849097, - 4827.445882827819, - 4726.404489232454, - 4613.810655601317, - 4499.255511417086, - 4393.994052450978, - 4307.784476976483, - 4246.142823539225, - 4208.300510271158, - 4188.478713804978, - 4178.334525399843, - 4169.428184309936, - 4157.401010848447, - 4143.27177195387, - 4133.074751857497, - 4135.906130632388, - 4159.86450588853, - 4209.179636250519, - 4281.545204819476, - 4367.895001559049, - 4457.278853014363, - 4540.165297305512, - 4615.290166466202, - 4694.500974981057, - 4804.304255479248, - 4984.594389993208, - 5282.040667581538, - 5739.198664795878, - 6392.603196070807, - 7252.235796286889, - 8306.483520106347 - ], - "flow:branch115_seg1:J98": [ - 0.6560841529035897, - 0.848727568140521, - 1.0610051719920142, - 1.2826630928963356, - 1.5023591748748581, - 1.7100111947963823, - 1.897942051700463, - 2.061690124043795, - 2.199224094563622, - 2.311582012364679, - 2.400856406301988, - 2.4691823403783135, - 2.5188163268964927, - 2.550597986006589, - 2.5648551198983958, - 2.561692289774134, - 2.540972803871144, - 2.5038262470850605, - 2.4519079603770972, - 2.387693939134152, - 2.314339945211495, - 2.234585663585041, - 2.1508562894305903, - 2.0648038368229766, - 1.9773442220137714, - 1.8891125318587145, - 1.8007344524375468, - 1.7132225185663352, - 1.6280478963631773, - 1.5469410654687599, - 1.4713108064793485, - 1.401756604142273, - 1.337454701663848, - 1.2758885067367745, - 1.2132352329397944, - 1.144874769148786, - 1.0664818619129552, - 0.9749487414349549, - 0.8696391701544034, - 0.7522852822059743, - 0.6272903626217067, - 0.5008932476830571, - 0.37994919638538854, - 0.2708087976725281, - 0.178338248115266, - 0.10523199539563498, - 0.051605501707594016, - 0.01614206178610497, - -0.004018891771121605, - -0.011964116289728672, - -0.01023308337824281, - -0.000941017221517102, - 0.014787759471753379, - 0.036116279902589137, - 0.06208644592299641, - 0.0914482995235783, - 0.12215886534149945, - 0.15171095988035527, - 0.17747543867706825, - 0.19726597302620802, - 0.2096927931683063, - 0.2146984657255122, - 0.21335172113448375, - 0.207414865449457, - 0.19907885510074694, - 0.19007134079991145, - 0.18134543665557692, - 0.1729302358070346, - 0.16404678275531753, - 0.1535712320768896, - 0.1405668599040539, - 0.12473449448139197, - 0.10670320599469729, - 0.08783382657706412, - 0.0699544513942495, - 0.054779413301848975, - 0.04343277517835401, - 0.03607081339475686, - 0.03202316809643144, - 0.02996935501435055, - 0.028493600036847835, - 0.026684212102144764, - 0.024423038737133976, - 0.022474684102550855, - 0.022221979584348607, - 0.02507716135821711, - 0.031970872217376524, - 0.04280446959193374, - 0.056438839780742, - 0.07112163150217635, - 0.08512349807594059, - 0.09780452626554599, - 0.11045119724555304, - 0.1267117119706684, - 0.1525599439040032, - 0.1953089300244621, - 0.2624899561723795, - 0.36035350094055724, - 0.4916360720947956, - 0.6560841529035897 - ], - "pressure:branch115_seg1:J98": [ - 8217.97554704522, - 9418.141549375097, - 10722.685188007463, - 12067.994461278575, - 13386.607227129049, - 14619.502725773866, - 15723.809234090339, - 16678.0703051624, - 17473.286344455573, - 18117.607319979503, - 18626.98392812791, - 19012.247292999225, - 19286.503445554932, - 19454.333926765343, - 19515.37942582941, - 19471.94001092488, - 19322.568698855208, - 19074.99741573421, - 18742.39502601028, - 18338.741699088336, - 17884.06832284683, - 17394.87425038198, - 16884.131803955515, - 16361.329785915636, - 15831.029871870196, - 15296.741703408938, - 14762.750165474286, - 14235.735453835998, - 13725.140261298131, - 13241.546400755267, - 12792.739337130524, - 12380.443931264097, - 11997.80924032348, - 11627.130877753834, - 11243.64871455214, - 10819.014528161008, - 10328.592321829714, - 9755.423130194307, - 9099.58141665305, - 8375.79439574854, - 7612.959125872442, - 6851.319726338601, - 6132.445668376806, - 5493.290508271282, - 4959.506813203293, - 4545.661788047242, - 4248.597154784292, - 4057.502847140984, - 3955.5128962501467, - 3922.6045719143863, - 3944.9626233010304, - 4011.161724792353, - 4114.474517983845, - 4250.848052286671, - 4413.740393396404, - 4594.721594163076, - 4780.778719483307, - 4956.0326110521355, - 5104.734536767937, - 5214.828116687987, - 5279.321374433565, - 5299.329393603048, - 5283.496742704071, - 5242.660471946214, - 5190.063678679186, - 5135.6040042162485, - 5083.509320146591, - 5032.659017681252, - 4977.550052890831, - 4911.1737216792935, - 4828.658727509632, - 4729.127429934968, - 4617.719642743982, - 4503.706572584117, - 4398.258767511203, - 4311.2255941707135, - 4248.372853717467, - 4209.288431894579, - 4188.582212008436, - 4178.011787605876, - 4169.141684507409, - 4157.38909607304, - 4143.407041212063, - 4132.911198569309, - 4134.813351392653, - 4157.26972981092, - 4204.795803256942, - 4275.448562756895, - 4360.643107304647, - 4449.553838403578, - 4532.485227544785, - 4607.628143573825, - 4685.929271001226, - 4792.863629436794, - 4967.375125656172, - 5255.452202740487, - 5700.104611735082, - 6337.97981030841, - 7180.424965194409, - 8217.97554704522 - ], - "flow:J98:branch115_seg2": [ - 0.6560841529035897, - 0.848727568140521, - 1.0610051719920142, - 1.2826630928963356, - 1.5023591748748581, - 1.7100111947963823, - 1.897942051700463, - 2.061690124043795, - 2.199224094563622, - 2.311582012364679, - 2.400856406301988, - 2.4691823403783135, - 2.5188163268964927, - 2.550597986006589, - 2.5648551198983958, - 2.561692289774134, - 2.540972803871144, - 2.5038262470850605, - 2.4519079603770972, - 2.387693939134152, - 2.314339945211495, - 2.234585663585041, - 2.1508562894305903, - 2.0648038368229766, - 1.9773442220137714, - 1.8891125318587145, - 1.8007344524375468, - 1.7132225185663352, - 1.6280478963631773, - 1.5469410654687599, - 1.4713108064793485, - 1.401756604142273, - 1.337454701663848, - 1.2758885067367745, - 1.2132352329397944, - 1.144874769148786, - 1.0664818619129552, - 0.9749487414349549, - 0.8696391701544034, - 0.7522852822059743, - 0.6272903626217067, - 0.5008932476830571, - 0.37994919638538854, - 0.2708087976725281, - 0.178338248115266, - 0.10523199539563498, - 0.051605501707594016, - 0.01614206178610497, - -0.004018891771121605, - -0.011964116289728672, - -0.01023308337824281, - -0.000941017221517102, - 0.014787759471753379, - 0.036116279902589137, - 0.06208644592299641, - 0.0914482995235783, - 0.12215886534149945, - 0.15171095988035527, - 0.17747543867706825, - 0.19726597302620802, - 0.2096927931683063, - 0.2146984657255122, - 0.21335172113448375, - 0.207414865449457, - 0.19907885510074694, - 0.19007134079991145, - 0.18134543665557692, - 0.1729302358070346, - 0.16404678275531753, - 0.1535712320768896, - 0.1405668599040539, - 0.12473449448139197, - 0.10670320599469729, - 0.08783382657706412, - 0.0699544513942495, - 0.054779413301848975, - 0.04343277517835401, - 0.03607081339475686, - 0.03202316809643144, - 0.02996935501435055, - 0.028493600036847835, - 0.026684212102144764, - 0.024423038737133976, - 0.022474684102550855, - 0.022221979584348607, - 0.02507716135821711, - 0.031970872217376524, - 0.04280446959193374, - 0.056438839780742, - 0.07112163150217635, - 0.08512349807594059, - 0.09780452626554599, - 0.11045119724555304, - 0.1267117119706684, - 0.1525599439040032, - 0.1953089300244621, - 0.2624899561723795, - 0.36035350094055724, - 0.4916360720947956, - 0.6560841529035897 - ], - "pressure:J98:branch115_seg2": [ - 8217.97554704522, - 9418.141549375097, - 10722.685188007463, - 12067.994461278575, - 13386.607227129049, - 14619.502725773866, - 15723.809234090339, - 16678.0703051624, - 17473.286344455573, - 18117.607319979503, - 18626.98392812791, - 19012.247292999225, - 19286.503445554932, - 19454.333926765343, - 19515.37942582941, - 19471.94001092488, - 19322.568698855208, - 19074.99741573421, - 18742.39502601028, - 18338.741699088336, - 17884.06832284683, - 17394.87425038198, - 16884.131803955515, - 16361.329785915636, - 15831.029871870196, - 15296.741703408938, - 14762.750165474286, - 14235.735453835998, - 13725.140261298131, - 13241.546400755267, - 12792.739337130524, - 12380.443931264097, - 11997.80924032348, - 11627.130877753834, - 11243.64871455214, - 10819.014528161008, - 10328.592321829714, - 9755.423130194307, - 9099.58141665305, - 8375.79439574854, - 7612.959125872442, - 6851.319726338601, - 6132.445668376806, - 5493.290508271282, - 4959.506813203293, - 4545.661788047242, - 4248.597154784292, - 4057.502847140984, - 3955.5128962501467, - 3922.6045719143863, - 3944.9626233010304, - 4011.161724792353, - 4114.474517983845, - 4250.848052286671, - 4413.740393396404, - 4594.721594163076, - 4780.778719483307, - 4956.0326110521355, - 5104.734536767937, - 5214.828116687987, - 5279.321374433565, - 5299.329393603048, - 5283.496742704071, - 5242.660471946214, - 5190.063678679186, - 5135.6040042162485, - 5083.509320146591, - 5032.659017681252, - 4977.550052890831, - 4911.1737216792935, - 4828.658727509632, - 4729.127429934968, - 4617.719642743982, - 4503.706572584117, - 4398.258767511203, - 4311.2255941707135, - 4248.372853717467, - 4209.288431894579, - 4188.582212008436, - 4178.011787605876, - 4169.141684507409, - 4157.38909607304, - 4143.407041212063, - 4132.911198569309, - 4134.813351392653, - 4157.26972981092, - 4204.795803256942, - 4275.448562756895, - 4360.643107304647, - 4449.553838403578, - 4532.485227544785, - 4607.628143573825, - 4685.929271001226, - 4792.863629436794, - 4967.375125656172, - 5255.452202740487, - 5700.104611735082, - 6337.97981030841, - 7180.424965194409, - 8217.97554704522 - ], - "flow:branch119_seg0:J99": [ - 1.0399369463233883, - 1.3389744807565316, - 1.663949826902352, - 1.998383686205572, - 2.3248050470227684, - 2.6283826812781066, - 2.898520831456057, - 3.1298775128826746, - 3.3208145553165744, - 3.474160766451188, - 3.5939253625272345, - 3.68367115793574, - 3.746834881739557, - 3.784389650224653, - 3.7965044816573412, - 3.783157801634065, - 3.7440339423012254, - 3.681068877973121, - 3.5970267980809676, - 3.495866046487571, - 3.3825466393413337, - 3.2611464695102157, - 3.1351104220990997, - 3.0066148965786783, - 2.876692423437608, - 2.746058225162942, - 2.6155574543992115, - 2.4867564656910806, - 2.3619868185620483, - 2.2439338998247336, - 2.134647138866763, - 2.0347393328119487, - 1.9424864948289398, - 1.8534905875324728, - 1.7614370558480252, - 1.659025767409532, - 1.5397726657370399, - 1.3994044923649487, - 1.2378045056663292, - 1.0585844180018475, - 0.8694022952879101, - 0.6804635235790402, - 0.5024924944959492, - 0.34495711737801305, - 0.21461488660694256, - 0.11471967468229877, - 0.04439509309698648, - 0.0007943149961494706, - -0.021010091516763037, - -0.025993871617711724, - -0.017917546557136302, - 0.00026367079467167794, - 0.027164564792394603, - 0.06179562812198396, - 0.10279985781054632, - 0.14822905377818338, - 0.1948326842672027, - 0.23866266515108836, - 0.2756994649861421, - 0.30278803508096835, - 0.31815571992713393, - 0.32219204849536376, - 0.31700435757493156, - 0.3056217369369439, - 0.2915508068577034, - 0.27733590403341774, - 0.2641531986522814, - 0.251679246806748, - 0.2383879540945784, - 0.22236679202806384, - 0.20219223067530376, - 0.17758288994136492, - 0.1498024367833078, - 0.12121868983485948, - 0.09479867130059594, - 0.07315126048691083, - 0.057797154598115894, - 0.04864184427258689, - 0.04430070269536104, - 0.04249869241893291, - 0.04098454568274479, - 0.038481773994266645, - 0.03508382684368196, - 0.03228157176181857, - 0.03243931657521035, - 0.03778419454727416, - 0.04959839738914439, - 0.0674107175935638, - 0.08910270687921225, - 0.11172853037255147, - 0.13261137971167078, - 0.15107342790430286, - 0.16968565148128986, - 0.1947977062882679, - 0.23629532386525331, - 0.3058209563269172, - 0.41481777335432934, - 0.5723406152741579, - 0.7813530048606028, - 1.0399369463233883 - ], - "pressure:branch119_seg0:J99": [ - 9032.76160036504, - 10378.001457278113, - 11794.930324203744, - 13211.340785977229, - 14558.047418194497, - 15778.199425440827, - 16836.56806091801, - 17725.246726755777, - 18444.35820813866, - 19009.689301352213, - 19446.324887528695, - 19762.008717200384, - 19969.667818743073, - 20072.158441861615, - 20063.63871189739, - 19949.563136267017, - 19726.764863474313, - 19405.67060545293, - 19007.192214259845, - 18544.398889286695, - 18040.62922171184, - 17512.872032856707, - 16970.78757832533, - 16422.513581246305, - 15870.031562279493, - 15315.7569060068, - 14764.94466286175, - 14225.82095099306, - 13709.631014257437, - 13227.897993297496, - 12787.074442441537, - 12384.532153228867, - 12008.153028863117, - 11632.985272048014, - 11228.584571722164, - 10763.644236573671, - 10215.609698261098, - 9571.348065700264, - 8840.886030900752, - 8050.508588878034, - 7237.378570065728, - 6450.5844638397275, - 5734.614013968129, - 5125.006012102867, - 4639.577150917524, - 4288.060729691346, - 4057.0382305482253, - 3927.411538915568, - 3880.8646588836687, - 3893.150789647685, - 3953.021953665328, - 4051.872737689135, - 4183.695088353687, - 4346.756366810685, - 4533.017078595709, - 4731.786015454748, - 4927.629739140464, - 5102.1399276605625, - 5239.007088186596, - 5328.327802935726, - 5366.33294998586, - 5358.31977515238, - 5318.934291272759, - 5260.6302865107145, - 5197.80436469838, - 5139.519215967198, - 5086.463813385528, - 5033.989140282069, - 4973.90025898203, - 4897.920363564048, - 4802.522880993088, - 4689.099739996738, - 4566.440220743734, - 4447.106915563201, - 4343.523891408608, - 4265.001055013191, - 4215.0675078255, - 4189.747010919183, - 4179.879569811697, - 4175.572361137907, - 4168.024105201319, - 4154.564822161742, - 4139.270209670228, - 4131.134926858045, - 4141.253734441238, - 4177.603874151074, - 4242.399055011339, - 4330.112808211301, - 4427.357209981666, - 4521.682028036836, - 4604.26025395772, - 4678.0274713444305, - 4762.288277504853, - 4892.556918040199, - 5117.2900162977485, - 5489.585003033966, - 6049.633446757164, - 6832.277951665516, - 7836.438567423602, - 9032.76160036504 - ], - "flow:J99:branch119_seg1": [ - 1.0399369463233883, - 1.3389744807565316, - 1.663949826902352, - 1.998383686205572, - 2.3248050470227684, - 2.6283826812781066, - 2.898520831456057, - 3.1298775128826746, - 3.3208145553165744, - 3.474160766451188, - 3.5939253625272345, - 3.68367115793574, - 3.746834881739557, - 3.784389650224653, - 3.7965044816573412, - 3.783157801634065, - 3.7440339423012254, - 3.681068877973121, - 3.5970267980809676, - 3.495866046487571, - 3.3825466393413337, - 3.2611464695102157, - 3.1351104220990997, - 3.0066148965786783, - 2.876692423437608, - 2.746058225162942, - 2.6155574543992115, - 2.4867564656910806, - 2.3619868185620483, - 2.2439338998247336, - 2.134647138866763, - 2.0347393328119487, - 1.9424864948289398, - 1.8534905875324728, - 1.7614370558480252, - 1.659025767409532, - 1.5397726657370399, - 1.3994044923649487, - 1.2378045056663292, - 1.0585844180018475, - 0.8694022952879101, - 0.6804635235790402, - 0.5024924944959492, - 0.34495711737801305, - 0.21461488660694256, - 0.11471967468229877, - 0.04439509309698648, - 0.0007943149961494706, - -0.021010091516763037, - -0.025993871617711724, - -0.017917546557136302, - 0.00026367079467167794, - 0.027164564792394603, - 0.06179562812198396, - 0.10279985781054632, - 0.14822905377818338, - 0.1948326842672027, - 0.23866266515108836, - 0.2756994649861421, - 0.30278803508096835, - 0.31815571992713393, - 0.32219204849536376, - 0.31700435757493156, - 0.3056217369369439, - 0.2915508068577034, - 0.27733590403341774, - 0.2641531986522814, - 0.251679246806748, - 0.2383879540945784, - 0.22236679202806384, - 0.20219223067530376, - 0.17758288994136492, - 0.1498024367833078, - 0.12121868983485948, - 0.09479867130059594, - 0.07315126048691083, - 0.057797154598115894, - 0.04864184427258689, - 0.04430070269536104, - 0.04249869241893291, - 0.04098454568274479, - 0.038481773994266645, - 0.03508382684368196, - 0.03228157176181857, - 0.03243931657521035, - 0.03778419454727416, - 0.04959839738914439, - 0.0674107175935638, - 0.08910270687921225, - 0.11172853037255147, - 0.13261137971167078, - 0.15107342790430286, - 0.16968565148128986, - 0.1947977062882679, - 0.23629532386525331, - 0.3058209563269172, - 0.41481777335432934, - 0.5723406152741579, - 0.7813530048606028, - 1.0399369463233883 - ], - "pressure:J99:branch119_seg1": [ - 9032.76160036504, - 10378.001457278113, - 11794.930324203744, - 13211.340785977229, - 14558.047418194497, - 15778.199425440827, - 16836.56806091801, - 17725.246726755777, - 18444.35820813866, - 19009.689301352213, - 19446.324887528695, - 19762.008717200384, - 19969.667818743073, - 20072.158441861615, - 20063.63871189739, - 19949.563136267017, - 19726.764863474313, - 19405.67060545293, - 19007.192214259845, - 18544.398889286695, - 18040.62922171184, - 17512.872032856707, - 16970.78757832533, - 16422.513581246305, - 15870.031562279493, - 15315.7569060068, - 14764.94466286175, - 14225.82095099306, - 13709.631014257437, - 13227.897993297496, - 12787.074442441537, - 12384.532153228867, - 12008.153028863117, - 11632.985272048014, - 11228.584571722164, - 10763.644236573671, - 10215.609698261098, - 9571.348065700264, - 8840.886030900752, - 8050.508588878034, - 7237.378570065728, - 6450.5844638397275, - 5734.614013968129, - 5125.006012102867, - 4639.577150917524, - 4288.060729691346, - 4057.0382305482253, - 3927.411538915568, - 3880.8646588836687, - 3893.150789647685, - 3953.021953665328, - 4051.872737689135, - 4183.695088353687, - 4346.756366810685, - 4533.017078595709, - 4731.786015454748, - 4927.629739140464, - 5102.1399276605625, - 5239.007088186596, - 5328.327802935726, - 5366.33294998586, - 5358.31977515238, - 5318.934291272759, - 5260.6302865107145, - 5197.80436469838, - 5139.519215967198, - 5086.463813385528, - 5033.989140282069, - 4973.90025898203, - 4897.920363564048, - 4802.522880993088, - 4689.099739996738, - 4566.440220743734, - 4447.106915563201, - 4343.523891408608, - 4265.001055013191, - 4215.0675078255, - 4189.747010919183, - 4179.879569811697, - 4175.572361137907, - 4168.024105201319, - 4154.564822161742, - 4139.270209670228, - 4131.134926858045, - 4141.253734441238, - 4177.603874151074, - 4242.399055011339, - 4330.112808211301, - 4427.357209981666, - 4521.682028036836, - 4604.26025395772, - 4678.0274713444305, - 4762.288277504853, - 4892.556918040199, - 5117.2900162977485, - 5489.585003033966, - 6049.633446757164, - 6832.277951665516, - 7836.438567423602, - 9032.76160036504 - ], - "flow:branch119_seg1:J100": [ - 1.0362253076335532, - 1.334952568625698, - 1.659791825330528, - 1.994361308933639, - 2.321086027761284, - 2.6250749843624486, - 2.895686447870915, - 3.127588904305578, - 3.3189612421016896, - 3.4727105157997316, - 3.592855634119815, - 3.6829065907200946, - 3.7463918439960895, - 3.7842550298549757, - 3.796677485171595, - 3.783649481111156, - 3.744826613807399, - 3.682129306705488, - 3.5982857342259145, - 3.497269758981158, - 3.3840527992532325, - 3.262698485960456, - 3.136689350669647, - 3.0082091060542338, - 2.8782931381604238, - 2.7476607800096158, - 2.6171390602774403, - 2.488287556365704, - 2.363432043542291, - 2.2452715586627376, - 2.135859362869915, - 2.035855558175331, - 1.9435659460740051, - 1.854601449159533, - 1.7626788805830922, - 1.6604837021014718, - 1.541497876364356, - 1.4013983946077921, - 1.2400281161168198, - 1.0609310779816499, - 0.8717385950027283, - 0.6826647845491283, - 0.5044280250513583, - 0.34653098583826275, - 0.21582689319999146, - 0.1155573337624817, - 0.04488325517441373, - 0.0010387044025438974, - -0.020974185670027807, - -0.02611262060030071, - -0.018143864592089942, - -8.448804282250194e-05, - 0.026733290187592018, - 0.06129189586534002, - 0.10222924966731217, - 0.14764982187984588, - 0.1942899504828979, - 0.2382036288982842, - 0.2753660645815398, - 0.30260900431413207, - 0.3181158422271273, - 0.3222637403795595, - 0.31715652092981456, - 0.3058018467172415, - 0.2917284091713832, - 0.277497725516946, - 0.264301745276765, - 0.25183728650630816, - 0.2385819813345766, - 0.22261762422623924, - 0.20249746459119472, - 0.17792950793491766, - 0.1501623966033455, - 0.12154733657279719, - 0.09506320557115973, - 0.07333496418280795, - 0.05790484386624362, - 0.04868229490601493, - 0.04431580502922856, - 0.04251636645737565, - 0.04101441262746382, - 0.03852642341438008, - 0.03512324315561693, - 0.032283992405388234, - 0.032375640044200606, - 0.037635020567506935, - 0.04937309618321367, - 0.06713756207936379, - 0.0888171262301962, - 0.11147039580556803, - 0.13239146180929315, - 0.15085844113037036, - 0.16939494365845645, - 0.19430751148191266, - 0.23545599013226476, - 0.3044616967710172, - 0.41287902215426886, - 0.5697591023035158, - 0.7780858527029648, - 1.0362253076335532 - ], - "pressure:branch119_seg1:J100": [ - 8522.225831294123, - 9788.439177053657, - 11148.82186593622, - 12534.54785892889, - 13874.631349550873, - 15109.572207182533, - 16198.855125660997, - 17125.829302410166, - 17885.4928306884, - 18491.3619136737, - 18963.04095415735, - 19312.351086560415, - 19553.336000912706, - 19689.45164976497, - 19719.028897055945, - 19644.11607846698, - 19462.575245954817, - 19183.124887444723, - 18820.527619160486, - 18389.793355884267, - 17912.351843499044, - 17404.96028002388, - 16880.198680966438, - 16346.730642425508, - 15807.972808770794, - 15266.668867971028, - 14726.865617395759, - 14195.602125952579, - 13683.006299418143, - 13200.317297859268, - 12755.221732943714, - 12348.552872906588, - 11971.531603678359, - 11603.678530477122, - 11217.615449842708, - 10782.90389795405, - 10274.356302825516, - 9675.844847134187, - 8990.562162509113, - 8237.210420658743, - 7449.082721399406, - 6670.653698924186, - 5945.973873951254, - 5312.785700419962, - 4795.486238826956, - 4406.094055420636, - 4137.631790785195, - 3975.9955520873627, - 3901.483991500024, - 3892.3710132412834, - 3934.738171433915, - 4017.5540362543748, - 4135.215581153845, - 4284.39396008887, - 4458.629820592201, - 4649.162253378174, - 4841.858674859928, - 5019.757583190188, - 5166.438659112403, - 5270.050702213491, - 5324.416672532297, - 5332.437663982355, - 5304.939127730324, - 5254.214314931925, - 5194.724011839319, - 5136.464030322658, - 5082.798826666905, - 5031.275926799973, - 4974.960346345854, - 4905.836942000239, - 4818.833981233496, - 4713.6801027261035, - 4596.794541278569, - 4478.856886855827, - 4372.151225262487, - 4286.917398006123, - 4228.484746509014, - 4195.176926907549, - 4180.188941858598, - 4173.937377727874, - 4167.29703168269, - 4155.941574117461, - 4141.511245725929, - 4131.113189974066, - 4134.949051667293, - 4161.750845804433, - 4215.7797456178405, - 4293.87337745033, - 4385.657847617509, - 4478.973132032421, - 4563.521382886258, - 4638.434895102106, - 4717.240390497774, - 4829.220060237737, - 5017.617734972933, - 5332.0048081226005, - 5817.158151345297, - 6509.284545591913, - 7415.88234792869, - 8522.225831294123 - ], - "flow:J100:branch119_seg2": [ - 1.0362253076335532, - 1.334952568625698, - 1.659791825330528, - 1.994361308933639, - 2.321086027761284, - 2.6250749843624486, - 2.895686447870915, - 3.127588904305578, - 3.3189612421016896, - 3.4727105157997316, - 3.592855634119815, - 3.6829065907200946, - 3.7463918439960895, - 3.7842550298549757, - 3.796677485171595, - 3.783649481111156, - 3.744826613807399, - 3.682129306705488, - 3.5982857342259145, - 3.497269758981158, - 3.3840527992532325, - 3.262698485960456, - 3.136689350669647, - 3.0082091060542338, - 2.8782931381604238, - 2.7476607800096158, - 2.6171390602774403, - 2.488287556365704, - 2.363432043542291, - 2.2452715586627376, - 2.135859362869915, - 2.035855558175331, - 1.9435659460740051, - 1.854601449159533, - 1.7626788805830922, - 1.6604837021014718, - 1.541497876364356, - 1.4013983946077921, - 1.2400281161168198, - 1.0609310779816499, - 0.8717385950027283, - 0.6826647845491283, - 0.5044280250513583, - 0.34653098583826275, - 0.21582689319999146, - 0.1155573337624817, - 0.04488325517441373, - 0.0010387044025438974, - -0.020974185670027807, - -0.02611262060030071, - -0.018143864592089942, - -8.448804282250194e-05, - 0.026733290187592018, - 0.06129189586534002, - 0.10222924966731217, - 0.14764982187984588, - 0.1942899504828979, - 0.2382036288982842, - 0.2753660645815398, - 0.30260900431413207, - 0.3181158422271273, - 0.3222637403795595, - 0.31715652092981456, - 0.3058018467172415, - 0.2917284091713832, - 0.277497725516946, - 0.264301745276765, - 0.25183728650630816, - 0.2385819813345766, - 0.22261762422623924, - 0.20249746459119472, - 0.17792950793491766, - 0.1501623966033455, - 0.12154733657279719, - 0.09506320557115973, - 0.07333496418280795, - 0.05790484386624362, - 0.04868229490601493, - 0.04431580502922856, - 0.04251636645737565, - 0.04101441262746382, - 0.03852642341438008, - 0.03512324315561693, - 0.032283992405388234, - 0.032375640044200606, - 0.037635020567506935, - 0.04937309618321367, - 0.06713756207936379, - 0.0888171262301962, - 0.11147039580556803, - 0.13239146180929315, - 0.15085844113037036, - 0.16939494365845645, - 0.19430751148191266, - 0.23545599013226476, - 0.3044616967710172, - 0.41287902215426886, - 0.5697591023035158, - 0.7780858527029648, - 1.0362253076335532 - ], - "pressure:J100:branch119_seg2": [ - 8522.225831294123, - 9788.439177053657, - 11148.82186593622, - 12534.54785892889, - 13874.631349550873, - 15109.572207182533, - 16198.855125660997, - 17125.829302410166, - 17885.4928306884, - 18491.3619136737, - 18963.04095415735, - 19312.351086560415, - 19553.336000912706, - 19689.45164976497, - 19719.028897055945, - 19644.11607846698, - 19462.575245954817, - 19183.124887444723, - 18820.527619160486, - 18389.793355884267, - 17912.351843499044, - 17404.96028002388, - 16880.198680966438, - 16346.730642425508, - 15807.972808770794, - 15266.668867971028, - 14726.865617395759, - 14195.602125952579, - 13683.006299418143, - 13200.317297859268, - 12755.221732943714, - 12348.552872906588, - 11971.531603678359, - 11603.678530477122, - 11217.615449842708, - 10782.90389795405, - 10274.356302825516, - 9675.844847134187, - 8990.562162509113, - 8237.210420658743, - 7449.082721399406, - 6670.653698924186, - 5945.973873951254, - 5312.785700419962, - 4795.486238826956, - 4406.094055420636, - 4137.631790785195, - 3975.9955520873627, - 3901.483991500024, - 3892.3710132412834, - 3934.738171433915, - 4017.5540362543748, - 4135.215581153845, - 4284.39396008887, - 4458.629820592201, - 4649.162253378174, - 4841.858674859928, - 5019.757583190188, - 5166.438659112403, - 5270.050702213491, - 5324.416672532297, - 5332.437663982355, - 5304.939127730324, - 5254.214314931925, - 5194.724011839319, - 5136.464030322658, - 5082.798826666905, - 5031.275926799973, - 4974.960346345854, - 4905.836942000239, - 4818.833981233496, - 4713.6801027261035, - 4596.794541278569, - 4478.856886855827, - 4372.151225262487, - 4286.917398006123, - 4228.484746509014, - 4195.176926907549, - 4180.188941858598, - 4173.937377727874, - 4167.29703168269, - 4155.941574117461, - 4141.511245725929, - 4131.113189974066, - 4134.949051667293, - 4161.750845804433, - 4215.7797456178405, - 4293.87337745033, - 4385.657847617509, - 4478.973132032421, - 4563.521382886258, - 4638.434895102106, - 4717.240390497774, - 4829.220060237737, - 5017.617734972933, - 5332.0048081226005, - 5817.158151345297, - 6509.284545591913, - 7415.88234792869, - 8522.225831294123 - ], - "flow:branch123_seg0:J101": [ - 0.884473139712119, - 1.1318002456211413, - 1.396793379946414, - 1.6659318856425651, - 1.9250862776725552, - 2.1627976485707117, - 2.371355085969529, - 2.5475846455879925, - 2.6908549772706207, - 2.8041437602091617, - 2.891160538717788, - 2.9545640341253905, - 2.9971645706557117, - 3.0194729487732577, - 3.021416183639218, - 3.003157120521667, - 2.964404885612748, - 2.907124840806724, - 2.833847740299043, - 2.747839843861944, - 2.6533069723846556, - 2.553367161201605, - 2.450585093225959, - 2.346513664402114, - 2.2417493328990425, - 2.136802711031173, - 2.032386658862769, - 1.9298674144178996, - 1.8312301741675578, - 1.738656885589369, - 1.6536271027224387, - 1.576287104151556, - 1.5048121406506503, - 1.435116773234007, - 1.3617664492326937, - 1.2787339344737336, - 1.181003309625044, - 1.0655431948699101, - 0.9330649676359182, - 0.787223919874975, - 0.6348431829331427, - 0.4846446525126016, - 0.34532783248637794, - 0.2242384876833438, - 0.12626317070899726, - 0.053448218620721175, - 0.00424774946154624, - -0.024016333783961046, - -0.03558834302434824, - -0.03462268702903336, - -0.023877216154888112, - -0.005615382596189545, - 0.019232656255392222, - 0.049974804285804815, - 0.08535593166087745, - 0.12368319880421277, - 0.16212880609155753, - 0.19737725603550588, - 0.22622217854886267, - 0.2463414203960562, - 0.25660558356990504, - 0.25772219067900737, - 0.25178642365023635, - 0.24137651507359265, - 0.2293955449952977, - 0.2177491942736999, - 0.2071146578440991, - 0.19697394626292708, - 0.1859079272580023, - 0.17232921684269528, - 0.15521504869216465, - 0.13455417785014834, - 0.11166033999150932, - 0.08863487402111629, - 0.0679411135644791, - 0.051590883284195574, - 0.04059195220081187, - 0.03455398284694028, - 0.03211083692697039, - 0.03130811086465812, - 0.030331144100582554, - 0.028348775812955786, - 0.025700187521220778, - 0.02382756435764549, - 0.02477309594515764, - 0.030273712455689016, - 0.04115533625909572, - 0.056719704147565705, - 0.0749325864475839, - 0.09330892708703428, - 0.10978907341482404, - 0.12422809870415115, - 0.13933644234611367, - 0.16093720639014966, - 0.1976278402100482, - 0.2590757048870167, - 0.3542953115375027, - 0.490174037881939, - 0.6677734863721932, - 0.884473139712119 - ], - "pressure:branch123_seg0:J101": [ - 9275.478855904596, - 10672.870152701375, - 12137.007349770995, - 13593.733272633048, - 14971.908633234818, - 16213.598928884572, - 17283.542796214904, - 18175.910750562543, - 18892.392591131516, - 19448.98569029716, - 19873.701280399004, - 20174.208252098648, - 20363.4975016227, - 20445.06519158163, - 20412.423366503444, - 20271.89023289632, - 20020.778391796706, - 19670.32633096096, - 19242.73270766809, - 18751.79392957703, - 18221.803026150603, - 17669.92666019157, - 17105.657957233423, - 16537.11791645085, - 15965.940428186454, - 15394.55563029707, - 14828.440984763194, - 14276.189145647535, - 13749.475536111731, - 13260.02213955001, - 12814.045395728475, - 12407.857299080468, - 12028.256097713764, - 11648.384929819977, - 11236.173547506418, - 10759.261374807886, - 10194.828667838568, - 9530.215334977222, - 8777.065189600182, - 7964.058539877407, - 7130.491198012964, - 6327.7531065040785, - 5601.9563269585915, - 4988.976975272853, - 4506.215400957588, - 4162.8463940305855, - 3943.2868766862093, - 3827.384290946045, - 3796.01982520079, - 3823.4455544721804, - 3898.7414729780094, - 4012.956661722031, - 4159.838978327685, - 4337.999123475946, - 4538.312038050932, - 4749.522191206154, - 4955.571157458129, - 5137.1553998472555, - 5277.659631054685, - 5367.439863515512, - 5403.363902441411, - 5391.394080493771, - 5347.522584689345, - 5285.00502073911, - 5218.523152292447, - 5157.330711858028, - 5101.717341480718, - 5046.481930765989, - 4982.982716882949, - 4902.726976216736, - 4802.3992293397505, - 4683.821902470868, - 4556.628573460832, - 4433.987102909585, - 4328.725046595547, - 4250.18726553714, - 4201.599673827086, - 4178.285793412825, - 4170.31156864706, - 4167.526699309208, - 4160.771389261802, - 4147.6970167666805, - 4133.0034507762175, - 4126.291030883925, - 4139.134012851984, - 4179.544819070001, - 4249.30093352739, - 4342.214758620504, - 4443.918563814192, - 4541.389263479784, - 4626.008115361811, - 4701.6161283694655, - 4789.35739092471, - 4927.124576084127, - 5165.932497618391, - 5560.873098979887, - 6152.562331908175, - 6976.512260359519, - 8028.172617607336, - 9275.478855904596 - ], - "flow:J101:branch123_seg1": [ - 0.884473139712119, - 1.1318002456211413, - 1.396793379946414, - 1.6659318856425651, - 1.9250862776725552, - 2.1627976485707117, - 2.371355085969529, - 2.5475846455879925, - 2.6908549772706207, - 2.8041437602091617, - 2.891160538717788, - 2.9545640341253905, - 2.9971645706557117, - 3.0194729487732577, - 3.021416183639218, - 3.003157120521667, - 2.964404885612748, - 2.907124840806724, - 2.833847740299043, - 2.747839843861944, - 2.6533069723846556, - 2.553367161201605, - 2.450585093225959, - 2.346513664402114, - 2.2417493328990425, - 2.136802711031173, - 2.032386658862769, - 1.9298674144178996, - 1.8312301741675578, - 1.738656885589369, - 1.6536271027224387, - 1.576287104151556, - 1.5048121406506503, - 1.435116773234007, - 1.3617664492326937, - 1.2787339344737336, - 1.181003309625044, - 1.0655431948699101, - 0.9330649676359182, - 0.787223919874975, - 0.6348431829331427, - 0.4846446525126016, - 0.34532783248637794, - 0.2242384876833438, - 0.12626317070899726, - 0.053448218620721175, - 0.00424774946154624, - -0.024016333783961046, - -0.03558834302434824, - -0.03462268702903336, - -0.023877216154888112, - -0.005615382596189545, - 0.019232656255392222, - 0.049974804285804815, - 0.08535593166087745, - 0.12368319880421277, - 0.16212880609155753, - 0.19737725603550588, - 0.22622217854886267, - 0.2463414203960562, - 0.25660558356990504, - 0.25772219067900737, - 0.25178642365023635, - 0.24137651507359265, - 0.2293955449952977, - 0.2177491942736999, - 0.2071146578440991, - 0.19697394626292708, - 0.1859079272580023, - 0.17232921684269528, - 0.15521504869216465, - 0.13455417785014834, - 0.11166033999150932, - 0.08863487402111629, - 0.0679411135644791, - 0.051590883284195574, - 0.04059195220081187, - 0.03455398284694028, - 0.03211083692697039, - 0.03130811086465812, - 0.030331144100582554, - 0.028348775812955786, - 0.025700187521220778, - 0.02382756435764549, - 0.02477309594515764, - 0.030273712455689016, - 0.04115533625909572, - 0.056719704147565705, - 0.0749325864475839, - 0.09330892708703428, - 0.10978907341482404, - 0.12422809870415115, - 0.13933644234611367, - 0.16093720639014966, - 0.1976278402100482, - 0.2590757048870167, - 0.3542953115375027, - 0.490174037881939, - 0.6677734863721932, - 0.884473139712119 - ], - "pressure:J101:branch123_seg1": [ - 9275.478855904596, - 10672.870152701375, - 12137.007349770995, - 13593.733272633048, - 14971.908633234818, - 16213.598928884572, - 17283.542796214904, - 18175.910750562543, - 18892.392591131516, - 19448.98569029716, - 19873.701280399004, - 20174.208252098648, - 20363.4975016227, - 20445.06519158163, - 20412.423366503444, - 20271.89023289632, - 20020.778391796706, - 19670.32633096096, - 19242.73270766809, - 18751.79392957703, - 18221.803026150603, - 17669.92666019157, - 17105.657957233423, - 16537.11791645085, - 15965.940428186454, - 15394.55563029707, - 14828.440984763194, - 14276.189145647535, - 13749.475536111731, - 13260.02213955001, - 12814.045395728475, - 12407.857299080468, - 12028.256097713764, - 11648.384929819977, - 11236.173547506418, - 10759.261374807886, - 10194.828667838568, - 9530.215334977222, - 8777.065189600182, - 7964.058539877407, - 7130.491198012964, - 6327.7531065040785, - 5601.9563269585915, - 4988.976975272853, - 4506.215400957588, - 4162.8463940305855, - 3943.2868766862093, - 3827.384290946045, - 3796.01982520079, - 3823.4455544721804, - 3898.7414729780094, - 4012.956661722031, - 4159.838978327685, - 4337.999123475946, - 4538.312038050932, - 4749.522191206154, - 4955.571157458129, - 5137.1553998472555, - 5277.659631054685, - 5367.439863515512, - 5403.363902441411, - 5391.394080493771, - 5347.522584689345, - 5285.00502073911, - 5218.523152292447, - 5157.330711858028, - 5101.717341480718, - 5046.481930765989, - 4982.982716882949, - 4902.726976216736, - 4802.3992293397505, - 4683.821902470868, - 4556.628573460832, - 4433.987102909585, - 4328.725046595547, - 4250.18726553714, - 4201.599673827086, - 4178.285793412825, - 4170.31156864706, - 4167.526699309208, - 4160.771389261802, - 4147.6970167666805, - 4133.0034507762175, - 4126.291030883925, - 4139.134012851984, - 4179.544819070001, - 4249.30093352739, - 4342.214758620504, - 4443.918563814192, - 4541.389263479784, - 4626.008115361811, - 4701.6161283694655, - 4789.35739092471, - 4927.124576084127, - 5165.932497618391, - 5560.873098979887, - 6152.562331908175, - 6976.512260359519, - 8028.172617607336, - 9275.478855904596 - ], - "flow:branch123_seg1:J102": [ - 0.8800903082302718, - 1.1270815194792518, - 1.3919436375233287, - 1.6612644340746994, - 1.9207997479131476, - 2.159006387405374, - 2.368131510799493, - 2.5449999940934362, - 2.6887713163805214, - 2.8025402245094204, - 2.8899925667090827, - 2.95374627739526, - 2.9967252103084787, - 3.019387601962622, - 3.0216883867079107, - 3.0038001130721708, - 2.9653832809796357, - 2.908415077532922, - 2.8353673229955834, - 2.7495107429851426, - 2.6550917020374, - 2.5551978426034903, - 2.4524384655706575, - 2.3483803693434084, - 2.2436174889420077, - 2.1386674137447823, - 2.034221855255403, - 1.9316371265363363, - 1.8328932007966445, - 1.7401900135202526, - 1.6550102994440592, - 1.577559963693733, - 1.5060452095425425, - 1.4363941549907513, - 1.363202665528337, - 1.2804295794890035, - 1.18301316314327, - 1.0678637249677625, - 0.9356535684977214, - 0.789948184741933, - 0.6375452678975156, - 0.4871815485097902, - 0.3475442092573648, - 0.22602507741455655, - 0.12761520546068408, - 0.054368647970976326, - 0.00475745020207798, - -0.023791201235304652, - -0.03559819129471634, - -0.03481138511613854, - -0.024185264453005124, - -0.006060439981428198, - 0.018692209102861554, - 0.049354896987351335, - 0.08466605094332681, - 0.12299010231325579, - 0.16148621592305318, - 0.19684008046847923, - 0.22583810176033575, - 0.2461420199421268, - 0.25656719747784384, - 0.25781641621429285, - 0.2519725281232382, - 0.24159042434660508, - 0.2296070546662646, - 0.21794168487098334, - 0.20729130138877302, - 0.19716251658934802, - 0.186139849004804, - 0.17262789369736675, - 0.1555780273496395, - 0.1349625031332246, - 0.11208132215680669, - 0.08901593585586103, - 0.06824303338834128, - 0.051795592480118904, - 0.04070746969211673, - 0.03459215765149563, - 0.03212154273771697, - 0.031324151034171056, - 0.030363818937419428, - 0.028397997623379013, - 0.02574173756198513, - 0.023823611260720426, - 0.02469007275486384, - 0.03008995902889327, - 0.04088515999930449, - 0.05639531336409313, - 0.07459658669470043, - 0.09300922961801242, - 0.10953399520310347, - 0.12397706231296664, - 0.13899103481560862, - 0.160350205164164, - 0.19662133709174848, - 0.25745129456854987, - 0.3519759923664181, - 0.4871063039569432, - 0.6639094900400024, - 0.8800903082302718 - ], - "pressure:branch123_seg1:J102": [ - 8743.887161622411, - 10064.052216523072, - 11474.975292625599, - 12905.219379394075, - 14279.933746767803, - 15538.437099733579, - 16640.493971897333, - 17570.83312209556, - 18325.819739382132, - 18921.828470072945, - 19379.54537934556, - 19711.971994652646, - 19934.272785179008, - 20049.011792129444, - 20055.09701594029, - 19954.19038654271, - 19744.35867087652, - 19436.171307141158, - 19043.953910971937, - 18584.527864410375, - 18080.62521321003, - 17548.69467828033, - 17001.960179931306, - 16448.694862540673, - 15891.83368258124, - 15334.07498610962, - 14779.32619061693, - 14234.960200576123, - 13711.623109753325, - 13220.978384533284, - 12770.653730428194, - 12361.097289664529, - 11982.310218870161, - 11612.007857272933, - 11221.106610486331, - 10777.563372622746, - 10255.111170165164, - 9637.879591585708, - 8930.526643898107, - 8153.256110090091, - 7342.508049539963, - 6545.259003640519, - 5807.531050091225, - 5168.040642564188, - 4652.007519278552, - 4270.088749385638, - 4013.1711537333003, - 3866.753604815004, - 3808.456033565347, - 3815.7863865218583, - 3874.6614962573854, - 3973.142516316914, - 4106.402939148918, - 4270.966522409089, - 4459.812673359626, - 4663.933521900762, - 4868.139654999115, - 5054.636098187283, - 5206.456413826705, - 5311.591390157589, - 5364.186507181078, - 5368.27252609751, - 5335.562262899944, - 5279.5433736796485, - 5215.6583217459465, - 5153.950428229587, - 5097.646853033841, - 5043.78343111841, - 4984.706388692565, - 4911.957695501098, - 4820.286101051212, - 4709.811671508133, - 4587.794950579593, - 4465.551576909836, - 4356.162606222348, - 4270.204921198831, - 4212.851012812523, - 4181.692632571022, - 4169.304321771525, - 4165.280035562211, - 4159.967383029156, - 4149.191899453653, - 4135.034636672246, - 4125.339353660674, - 4131.047920042139, - 4161.253584582418, - 4220.146000916907, - 4303.7691953094445, - 4400.902719374689, - 4498.428947247654, - 4585.5644555875815, - 4661.942268389449, - 4742.576206411572, - 4859.0462672383865, - 5057.495141282015, - 5389.56308735409, - 5902.5846679128135, - 6633.005393341507, - 7585.058498154173, - 8743.887161622411 - ], - "flow:J102:branch123_seg2": [ - 0.8800903082302718, - 1.1270815194792518, - 1.3919436375233287, - 1.6612644340746994, - 1.9207997479131476, - 2.159006387405374, - 2.368131510799493, - 2.5449999940934362, - 2.6887713163805214, - 2.8025402245094204, - 2.8899925667090827, - 2.95374627739526, - 2.9967252103084787, - 3.019387601962622, - 3.0216883867079107, - 3.0038001130721708, - 2.9653832809796357, - 2.908415077532922, - 2.8353673229955834, - 2.7495107429851426, - 2.6550917020374, - 2.5551978426034903, - 2.4524384655706575, - 2.3483803693434084, - 2.2436174889420077, - 2.1386674137447823, - 2.034221855255403, - 1.9316371265363363, - 1.8328932007966445, - 1.7401900135202526, - 1.6550102994440592, - 1.577559963693733, - 1.5060452095425425, - 1.4363941549907513, - 1.363202665528337, - 1.2804295794890035, - 1.18301316314327, - 1.0678637249677625, - 0.9356535684977214, - 0.789948184741933, - 0.6375452678975156, - 0.4871815485097902, - 0.3475442092573648, - 0.22602507741455655, - 0.12761520546068408, - 0.054368647970976326, - 0.00475745020207798, - -0.023791201235304652, - -0.03559819129471634, - -0.03481138511613854, - -0.024185264453005124, - -0.006060439981428198, - 0.018692209102861554, - 0.049354896987351335, - 0.08466605094332681, - 0.12299010231325579, - 0.16148621592305318, - 0.19684008046847923, - 0.22583810176033575, - 0.2461420199421268, - 0.25656719747784384, - 0.25781641621429285, - 0.2519725281232382, - 0.24159042434660508, - 0.2296070546662646, - 0.21794168487098334, - 0.20729130138877302, - 0.19716251658934802, - 0.186139849004804, - 0.17262789369736675, - 0.1555780273496395, - 0.1349625031332246, - 0.11208132215680669, - 0.08901593585586103, - 0.06824303338834128, - 0.051795592480118904, - 0.04070746969211673, - 0.03459215765149563, - 0.03212154273771697, - 0.031324151034171056, - 0.030363818937419428, - 0.028397997623379013, - 0.02574173756198513, - 0.023823611260720426, - 0.02469007275486384, - 0.03008995902889327, - 0.04088515999930449, - 0.05639531336409313, - 0.07459658669470043, - 0.09300922961801242, - 0.10953399520310347, - 0.12397706231296664, - 0.13899103481560862, - 0.160350205164164, - 0.19662133709174848, - 0.25745129456854987, - 0.3519759923664181, - 0.4871063039569432, - 0.6639094900400024, - 0.8800903082302718 - ], - "pressure:J102:branch123_seg2": [ - 8743.887161622411, - 10064.052216523072, - 11474.975292625599, - 12905.219379394075, - 14279.933746767803, - 15538.437099733579, - 16640.493971897333, - 17570.83312209556, - 18325.819739382132, - 18921.828470072945, - 19379.54537934556, - 19711.971994652646, - 19934.272785179008, - 20049.011792129444, - 20055.09701594029, - 19954.19038654271, - 19744.35867087652, - 19436.171307141158, - 19043.953910971937, - 18584.527864410375, - 18080.62521321003, - 17548.69467828033, - 17001.960179931306, - 16448.694862540673, - 15891.83368258124, - 15334.07498610962, - 14779.32619061693, - 14234.960200576123, - 13711.623109753325, - 13220.978384533284, - 12770.653730428194, - 12361.097289664529, - 11982.310218870161, - 11612.007857272933, - 11221.106610486331, - 10777.563372622746, - 10255.111170165164, - 9637.879591585708, - 8930.526643898107, - 8153.256110090091, - 7342.508049539963, - 6545.259003640519, - 5807.531050091225, - 5168.040642564188, - 4652.007519278552, - 4270.088749385638, - 4013.1711537333003, - 3866.753604815004, - 3808.456033565347, - 3815.7863865218583, - 3874.6614962573854, - 3973.142516316914, - 4106.402939148918, - 4270.966522409089, - 4459.812673359626, - 4663.933521900762, - 4868.139654999115, - 5054.636098187283, - 5206.456413826705, - 5311.591390157589, - 5364.186507181078, - 5368.27252609751, - 5335.562262899944, - 5279.5433736796485, - 5215.6583217459465, - 5153.950428229587, - 5097.646853033841, - 5043.78343111841, - 4984.706388692565, - 4911.957695501098, - 4820.286101051212, - 4709.811671508133, - 4587.794950579593, - 4465.551576909836, - 4356.162606222348, - 4270.204921198831, - 4212.851012812523, - 4181.692632571022, - 4169.304321771525, - 4165.280035562211, - 4159.967383029156, - 4149.191899453653, - 4135.034636672246, - 4125.339353660674, - 4131.047920042139, - 4161.253584582418, - 4220.146000916907, - 4303.7691953094445, - 4400.902719374689, - 4498.428947247654, - 4585.5644555875815, - 4661.942268389449, - 4742.576206411572, - 4859.0462672383865, - 5057.495141282015, - 5389.56308735409, - 5902.5846679128135, - 6633.005393341507, - 7585.058498154173, - 8743.887161622411 - ], - "flow:branch124_seg0:J103": [ - 1.1607808068633108, - 1.5074611805714488, - 1.8922859331633584, - 2.29653836246669, - 2.6993723307662054, - 3.081789922599727, - 3.4289511687521936, - 3.7317316018075632, - 3.9859192103594205, - 4.192876568016091, - 4.356258985099948, - 4.480363292539176, - 4.569540414682171, - 4.625850965333173, - 4.650294452346778, - 4.643143104076494, - 4.604309850200917, - 4.53562530899943, - 4.4399215076549, - 4.321634143632639, - 4.18637282270154, - 4.039277399460758, - 3.884932855522858, - 3.7265366940331135, - 3.565942678674606, - 3.4043427698947886, - 3.2428140137691495, - 3.0830494118964245, - 2.9275665135788467, - 2.779419508577559, - 2.641243344032462, - 2.514330617793286, - 2.397485099257647, - 2.2865001706398393, - 2.1746250946173484, - 2.0534925571362512, - 1.914979818609595, - 1.7530031598175126, - 1.5656923871834625, - 1.3555733850856853, - 1.130142577331553, - 0.9004386054776377, - 0.6790340739746006, - 0.47787716104682054, - 0.30642474306653944, - 0.170218732727213, - 0.07018148272006455, - 0.004201804197206004, - -0.032755493281292354, - -0.04639125040270867, - -0.04171344696774352, - -0.0228523482650141, - 0.007798085302546067, - 0.04853491382841379, - 0.09764793353997869, - 0.1529111959351549, - 0.210775237428719, - 0.2667835139556555, - 0.3161359874647712, - 0.35469362850340397, - 0.3797127610445708, - 0.3907951922463963, - 0.3896221743121792, - 0.3793605471057744, - 0.3640227980616223, - 0.34697312976460265, - 0.3302599141458963, - 0.31422552870851866, - 0.29766203842124883, - 0.2785861452866687, - 0.25519514980707925, - 0.22674466107575303, - 0.19412140306379277, - 0.15963017967176246, - 0.12653173150976427, - 0.09803189973358753, - 0.07637515675602495, - 0.06212326891198549, - 0.054257106418769914, - 0.05047562357958705, - 0.048169649242535445, - 0.04547666676349606, - 0.04192604524562161, - 0.03867545337304531, - 0.03810882821916361, - 0.04283935512379146, - 0.05473730973243679, - 0.07390174574638109, - 0.09853592832729689, - 0.12554453631946802, - 0.1516962651090031, - 0.1754892150187718, - 0.19874239056371495, - 0.2275345823872599, - 0.2722688712984964, - 0.3460950403520586, - 0.46291934730375883, - 0.6345770156114195, - 0.8671032018598068, - 1.1607808068633108 - ], - "pressure:branch124_seg0:J103": [ - 8718.195846025183, - 10019.909420300542, - 11411.775968153119, - 12824.45746150366, - 14187.37686366667, - 15440.315896481077, - 16542.526489429514, - 17479.087812660135, - 18244.78703849718, - 18851.622709861625, - 19321.77765594032, - 19665.01476627284, - 19895.304495047643, - 20017.40734515533, - 20028.44132179258, - 19932.999171208958, - 19729.081863369673, - 19425.70938681808, - 19040.45737608587, - 18587.272110676335, - 18088.343190935753, - 17560.839546407944, - 17016.461817279775, - 16464.35722179083, - 15907.896362866426, - 15350.070492907016, - 14795.589311541527, - 14251.879064961166, - 13729.306125667199, - 13239.042662052925, - 12788.23985704812, - 12376.40856760735, - 11993.957601116674, - 11618.952607128096, - 11223.133016032669, - 10775.837213463406, - 10252.659958027329, - 9637.809361355517, - 8936.027218988685, - 8168.124156054972, - 7367.65145722313, - 6580.50586659898, - 5851.023636948528, - 5216.699054912954, - 4700.421832749377, - 4314.93751027713, - 4051.94290141464, - 3896.4166621748573, - 3830.0533105367554, - 3829.7004054888853, - 3882.1998637164766, - 3976.6554091654148, - 4106.304857222261, - 4267.999995404, - 4453.945500185193, - 4654.536161689896, - 4855.318419129003, - 5038.728763593975, - 5188.405750478784, - 5293.163797015025, - 5347.41427157991, - 5354.277599367186, - 5325.893744817432, - 5274.26687310809, - 5213.646996328066, - 5154.1110571297, - 5098.459468313162, - 5043.983212307908, - 4983.838814107045, - 4910.239009284188, - 4818.790592307307, - 4709.637749171296, - 4589.784359470614, - 4470.258998015394, - 4363.135899957092, - 4278.300442427476, - 4220.66190798783, - 4188.042068064322, - 4173.132345244276, - 4166.682841152722, - 4159.681974302054, - 4148.292985796948, - 4134.75975320744, - 4126.440333553006, - 4133.507870779397, - 4164.237233330243, - 4222.190045770447, - 4303.757634412382, - 4397.736819073576, - 4492.248866575864, - 4577.776308008016, - 4654.652259098017, - 4738.091996745406, - 4859.078442470293, - 5062.204704006571, - 5398.179776680658, - 5909.966270229526, - 6634.448999569641, - 7576.7755791942445, - 8718.195846025183 - ], - "flow:J103:branch124_seg1": [ - 1.1607808068633108, - 1.5074611805714488, - 1.8922859331633584, - 2.29653836246669, - 2.6993723307662054, - 3.081789922599727, - 3.4289511687521936, - 3.7317316018075632, - 3.9859192103594205, - 4.192876568016091, - 4.356258985099948, - 4.480363292539176, - 4.569540414682171, - 4.625850965333173, - 4.650294452346778, - 4.643143104076494, - 4.604309850200917, - 4.53562530899943, - 4.4399215076549, - 4.321634143632639, - 4.18637282270154, - 4.039277399460758, - 3.884932855522858, - 3.7265366940331135, - 3.565942678674606, - 3.4043427698947886, - 3.2428140137691495, - 3.0830494118964245, - 2.9275665135788467, - 2.779419508577559, - 2.641243344032462, - 2.514330617793286, - 2.397485099257647, - 2.2865001706398393, - 2.1746250946173484, - 2.0534925571362512, - 1.914979818609595, - 1.7530031598175126, - 1.5656923871834625, - 1.3555733850856853, - 1.130142577331553, - 0.9004386054776377, - 0.6790340739746006, - 0.47787716104682054, - 0.30642474306653944, - 0.170218732727213, - 0.07018148272006455, - 0.004201804197206004, - -0.032755493281292354, - -0.04639125040270867, - -0.04171344696774352, - -0.0228523482650141, - 0.007798085302546067, - 0.04853491382841379, - 0.09764793353997869, - 0.1529111959351549, - 0.210775237428719, - 0.2667835139556555, - 0.3161359874647712, - 0.35469362850340397, - 0.3797127610445708, - 0.3907951922463963, - 0.3896221743121792, - 0.3793605471057744, - 0.3640227980616223, - 0.34697312976460265, - 0.3302599141458963, - 0.31422552870851866, - 0.29766203842124883, - 0.2785861452866687, - 0.25519514980707925, - 0.22674466107575303, - 0.19412140306379277, - 0.15963017967176246, - 0.12653173150976427, - 0.09803189973358753, - 0.07637515675602495, - 0.06212326891198549, - 0.054257106418769914, - 0.05047562357958705, - 0.048169649242535445, - 0.04547666676349606, - 0.04192604524562161, - 0.03867545337304531, - 0.03810882821916361, - 0.04283935512379146, - 0.05473730973243679, - 0.07390174574638109, - 0.09853592832729689, - 0.12554453631946802, - 0.1516962651090031, - 0.1754892150187718, - 0.19874239056371495, - 0.2275345823872599, - 0.2722688712984964, - 0.3460950403520586, - 0.46291934730375883, - 0.6345770156114195, - 0.8671032018598068, - 1.1607808068633108 - ], - "pressure:J103:branch124_seg1": [ - 8718.195846025183, - 10019.909420300542, - 11411.775968153119, - 12824.45746150366, - 14187.37686366667, - 15440.315896481077, - 16542.526489429514, - 17479.087812660135, - 18244.78703849718, - 18851.622709861625, - 19321.77765594032, - 19665.01476627284, - 19895.304495047643, - 20017.40734515533, - 20028.44132179258, - 19932.999171208958, - 19729.081863369673, - 19425.70938681808, - 19040.45737608587, - 18587.272110676335, - 18088.343190935753, - 17560.839546407944, - 17016.461817279775, - 16464.35722179083, - 15907.896362866426, - 15350.070492907016, - 14795.589311541527, - 14251.879064961166, - 13729.306125667199, - 13239.042662052925, - 12788.23985704812, - 12376.40856760735, - 11993.957601116674, - 11618.952607128096, - 11223.133016032669, - 10775.837213463406, - 10252.659958027329, - 9637.809361355517, - 8936.027218988685, - 8168.124156054972, - 7367.65145722313, - 6580.50586659898, - 5851.023636948528, - 5216.699054912954, - 4700.421832749377, - 4314.93751027713, - 4051.94290141464, - 3896.4166621748573, - 3830.0533105367554, - 3829.7004054888853, - 3882.1998637164766, - 3976.6554091654148, - 4106.304857222261, - 4267.999995404, - 4453.945500185193, - 4654.536161689896, - 4855.318419129003, - 5038.728763593975, - 5188.405750478784, - 5293.163797015025, - 5347.41427157991, - 5354.277599367186, - 5325.893744817432, - 5274.26687310809, - 5213.646996328066, - 5154.1110571297, - 5098.459468313162, - 5043.983212307908, - 4983.838814107045, - 4910.239009284188, - 4818.790592307307, - 4709.637749171296, - 4589.784359470614, - 4470.258998015394, - 4363.135899957092, - 4278.300442427476, - 4220.66190798783, - 4188.042068064322, - 4173.132345244276, - 4166.682841152722, - 4159.681974302054, - 4148.292985796948, - 4134.75975320744, - 4126.440333553006, - 4133.507870779397, - 4164.237233330243, - 4222.190045770447, - 4303.757634412382, - 4397.736819073576, - 4492.248866575864, - 4577.776308008016, - 4654.652259098017, - 4738.091996745406, - 4859.078442470293, - 5062.204704006571, - 5398.179776680658, - 5909.966270229526, - 6634.448999569641, - 7576.7755791942445, - 8718.195846025183 - ], - "flow:branch124_seg1:J104": [ - 1.1595590292249307, - 1.5061161455129193, - 1.890877302207077, - 2.2951517479207983, - 2.698069431637343, - 3.080615198228992, - 3.4279341917786903, - 3.7308933521131737, - 3.9852381753349055, - 4.192343840720198, - 4.3558595620632055, - 4.480076681108915, - 4.569367207369137, - 4.625784437624814, - 4.650336070642849, - 4.64329269251245, - 4.604561573440339, - 4.5359734639960285, - 4.440342103086278, - 4.322108400451172, - 4.186886777738794, - 4.03981104519594, - 3.8854779185654333, - 3.7270877017796025, - 3.566495633692984, - 3.4048958552597712, - 3.243360547509676, - 3.08358007656338, - 2.928070152320044, - 2.779887686364426, - 2.6416695643184047, - 2.514721846226825, - 2.3978578544418716, - 2.28687697186918, - 2.175037751028792, - 2.0539708995210213, - 1.9155428113012374, - 1.7536567754979446, - 1.5664279816883764, - 1.3563588304210548, - 1.1309372766963692, - 0.901199736481549, - 0.679716840785723, - 0.47844594594145246, - 0.3068725489721301, - 0.17053994390037971, - 0.07038008746512962, - 0.004308604953987546, - -0.032726712398358844, - -0.04642154456347124, - -0.04178567681084939, - -0.02296700441675409, - 0.0076521974139756015, - 0.04836260183655988, - 0.09745286962605795, - 0.1527096178519254, - 0.21058217656292869, - 0.2666153044329464, - 0.31600776739687336, - 0.35461537473579857, - 0.37968297010409735, - 0.3908076610805598, - 0.38966501836474565, - 0.37941767590682185, - 0.3640836651078064, - 0.3470307309045414, - 0.33031340820126576, - 0.31428087706776664, - 0.2977272386849642, - 0.2786684316496486, - 0.2552953363651261, - 0.2268594640229073, - 0.1942429341632441, - 0.15974468164523553, - 0.12662769298101045, - 0.09810241919535713, - 0.07641972312307022, - 0.06214411509463802, - 0.054265910648491976, - 0.05048189618431262, - 0.04817838193756814, - 0.0454897929227545, - 0.04193854416916422, - 0.03867790466463358, - 0.03809140582200466, - 0.042795079502767064, - 0.054667142304950844, - 0.07381265897888069, - 0.09843982583536344, - 0.1254544313368826, - 0.1516171974768613, - 0.1754136345395538, - 0.19864727530298446, - 0.22738186929564505, - 0.27201071218652534, - 0.3456745271868306, - 0.4623091340831008, - 0.6337546126739222, - 0.8660501626529169, - 1.1595590292249307 - ], - "pressure:branch124_seg1:J104": [ - 8530.974696451827, - 9800.34461849352, - 11167.650216328471, - 12565.196880755166, - 13922.635365662853, - 15179.035512902446, - 16291.846737755921, - 17243.078515843215, - 18025.272870206216, - 18649.066241590488, - 19134.61747907852, - 19492.429041475276, - 19736.74164759558, - 19872.714963038205, - 19898.69652719574, - 19818.650624829865, - 19630.826861330457, - 19343.53545959165, - 18972.75699620892, - 18532.50283977781, - 18044.253877430696, - 17525.161767193993, - 16987.66567794889, - 16441.24995732603, - 15889.863570925883, - 15336.691819974423, - 14786.190690055508, - 14245.399227189257, - 13724.24984660911, - 13233.729011795282, - 12781.304841927453, - 12367.557092401661, - 11984.102178334622, - 11610.669846115856, - 11220.272241165605, - 10782.838333811169, - 10273.428846235844, - 9675.232562574278, - 8990.681509163082, - 8237.938397612386, - 7448.640786037007, - 6666.810436677345, - 5936.178026117681, - 5294.752996107714, - 4767.242771932239, - 4367.5938889821555, - 4089.9261022210007, - 3920.9492377237125, - 3842.6551178235063, - 3832.767535569594, - 3877.407457520198, - 3965.038609600064, - 4088.7253941894805, - 4244.748383121232, - 4425.754595828674, - 4622.6804853515605, - 4821.61211173423, - 5005.568041223168, - 5158.272648661911, - 5268.021254164129, - 5328.409164840711, - 5341.615554269463, - 5318.461732234377, - 5270.5499116888595, - 5211.970617131563, - 5153.06071649633, - 5097.457688131146, - 5043.280926768837, - 4984.288518407421, - 4912.933490507166, - 4824.470163948735, - 4718.482286643621, - 4601.10091503179, - 4482.635951988114, - 4374.907192787703, - 4287.974996062026, - 4227.307413819668, - 4191.5632944515755, - 4174.30656467524, - 4166.596790980527, - 4159.478043731687, - 4148.6175635005175, - 4135.443411360909, - 4126.56450432832, - 4131.684343668486, - 4159.16268607979, - 4213.153704153765, - 4290.90070170657, - 4382.271308277535, - 4475.761305926183, - 4561.560514628226, - 4638.837374584013, - 4720.825550712101, - 4836.196199552959, - 5027.382498651097, - 5343.615202370245, - 5828.602199843275, - 6519.700414339704, - 7425.268573206841, - 8530.974696451827 - ], - "flow:J104:branch124_seg2": [ - 1.1595590292249307, - 1.5061161455129193, - 1.890877302207077, - 2.2951517479207983, - 2.698069431637343, - 3.080615198228992, - 3.4279341917786903, - 3.7308933521131737, - 3.9852381753349055, - 4.192343840720198, - 4.3558595620632055, - 4.480076681108915, - 4.569367207369137, - 4.625784437624814, - 4.650336070642849, - 4.64329269251245, - 4.604561573440339, - 4.5359734639960285, - 4.440342103086278, - 4.322108400451172, - 4.186886777738794, - 4.03981104519594, - 3.8854779185654333, - 3.7270877017796025, - 3.566495633692984, - 3.4048958552597712, - 3.243360547509676, - 3.08358007656338, - 2.928070152320044, - 2.779887686364426, - 2.6416695643184047, - 2.514721846226825, - 2.3978578544418716, - 2.28687697186918, - 2.175037751028792, - 2.0539708995210213, - 1.9155428113012374, - 1.7536567754979446, - 1.5664279816883764, - 1.3563588304210548, - 1.1309372766963692, - 0.901199736481549, - 0.679716840785723, - 0.47844594594145246, - 0.3068725489721301, - 0.17053994390037971, - 0.07038008746512962, - 0.004308604953987546, - -0.032726712398358844, - -0.04642154456347124, - -0.04178567681084939, - -0.02296700441675409, - 0.0076521974139756015, - 0.04836260183655988, - 0.09745286962605795, - 0.1527096178519254, - 0.21058217656292869, - 0.2666153044329464, - 0.31600776739687336, - 0.35461537473579857, - 0.37968297010409735, - 0.3908076610805598, - 0.38966501836474565, - 0.37941767590682185, - 0.3640836651078064, - 0.3470307309045414, - 0.33031340820126576, - 0.31428087706776664, - 0.2977272386849642, - 0.2786684316496486, - 0.2552953363651261, - 0.2268594640229073, - 0.1942429341632441, - 0.15974468164523553, - 0.12662769298101045, - 0.09810241919535713, - 0.07641972312307022, - 0.06214411509463802, - 0.054265910648491976, - 0.05048189618431262, - 0.04817838193756814, - 0.0454897929227545, - 0.04193854416916422, - 0.03867790466463358, - 0.03809140582200466, - 0.042795079502767064, - 0.054667142304950844, - 0.07381265897888069, - 0.09843982583536344, - 0.1254544313368826, - 0.1516171974768613, - 0.1754136345395538, - 0.19864727530298446, - 0.22738186929564505, - 0.27201071218652534, - 0.3456745271868306, - 0.4623091340831008, - 0.6337546126739222, - 0.8660501626529169, - 1.1595590292249307 - ], - "pressure:J104:branch124_seg2": [ - 8530.974696451827, - 9800.34461849352, - 11167.650216328471, - 12565.196880755166, - 13922.635365662853, - 15179.035512902446, - 16291.846737755921, - 17243.078515843215, - 18025.272870206216, - 18649.066241590488, - 19134.61747907852, - 19492.429041475276, - 19736.74164759558, - 19872.714963038205, - 19898.69652719574, - 19818.650624829865, - 19630.826861330457, - 19343.53545959165, - 18972.75699620892, - 18532.50283977781, - 18044.253877430696, - 17525.161767193993, - 16987.66567794889, - 16441.24995732603, - 15889.863570925883, - 15336.691819974423, - 14786.190690055508, - 14245.399227189257, - 13724.24984660911, - 13233.729011795282, - 12781.304841927453, - 12367.557092401661, - 11984.102178334622, - 11610.669846115856, - 11220.272241165605, - 10782.838333811169, - 10273.428846235844, - 9675.232562574278, - 8990.681509163082, - 8237.938397612386, - 7448.640786037007, - 6666.810436677345, - 5936.178026117681, - 5294.752996107714, - 4767.242771932239, - 4367.5938889821555, - 4089.9261022210007, - 3920.9492377237125, - 3842.6551178235063, - 3832.767535569594, - 3877.407457520198, - 3965.038609600064, - 4088.7253941894805, - 4244.748383121232, - 4425.754595828674, - 4622.6804853515605, - 4821.61211173423, - 5005.568041223168, - 5158.272648661911, - 5268.021254164129, - 5328.409164840711, - 5341.615554269463, - 5318.461732234377, - 5270.5499116888595, - 5211.970617131563, - 5153.06071649633, - 5097.457688131146, - 5043.280926768837, - 4984.288518407421, - 4912.933490507166, - 4824.470163948735, - 4718.482286643621, - 4601.10091503179, - 4482.635951988114, - 4374.907192787703, - 4287.974996062026, - 4227.307413819668, - 4191.5632944515755, - 4174.30656467524, - 4166.596790980527, - 4159.478043731687, - 4148.6175635005175, - 4135.443411360909, - 4126.56450432832, - 4131.684343668486, - 4159.16268607979, - 4213.153704153765, - 4290.90070170657, - 4382.271308277535, - 4475.761305926183, - 4561.560514628226, - 4638.837374584013, - 4720.825550712101, - 4836.196199552959, - 5027.382498651097, - 5343.615202370245, - 5828.602199843275, - 6519.700414339704, - 7425.268573206841, - 8530.974696451827 - ], - "flow:branch127_seg0:J105": [ - 0.8022968269736408, - 1.0358404739788822, - 1.29127933554874, - 1.5558063134497047, - 1.81562421940092, - 2.058782283906102, - 2.2765094185020263, - 2.4640819360857895, - 2.6197709886857785, - 2.745464276129427, - 2.8441201737017554, - 2.91856664689996, - 2.9715678927672773, - 3.0040405737094438, - 3.0162491737221093, - 3.0081934923103097, - 2.979650601323653, - 2.932018411473263, - 2.867358767235435, - 2.788738676892484, - 2.7000019502468193, - 2.604417126157248, - 2.504800547956487, - 2.40297966541819, - 2.2998838822639605, - 2.19613282264053, - 2.092392996390105, - 1.9898590490106955, - 1.890317796567695, - 1.7958678320212325, - 1.7081764538311208, - 1.6278626705014916, - 1.5537537242618071, - 1.4825992820073042, - 1.4095836659345768, - 1.3290146533642175, - 1.235692402318267, - 1.1260449397400514, - 0.9996290292696177, - 0.8589340326721934, - 0.7096809340621426, - 0.5597009098635026, - 0.4174124389017792, - 0.2904178911503305, - 0.18433455374997343, - 0.10203126626863648, - 0.04320101889920177, - 0.005844685673519733, - -0.013789681972545672, - -0.019575872747900798, - -0.014585399440927994, - -0.0012621957606086878, - 0.01919041847810965, - 0.04590641774871257, - 0.07782541480543408, - 0.11345871353280487, - 0.15031565298000055, - 0.1853367098642863, - 0.2153463570874396, - 0.23777244956559776, - 0.25107914872773646, - 0.25539831277844743, - 0.25222469058480673, - 0.2438600996347221, - 0.2330416797018842, - 0.2218438939765521, - 0.2113207730498081, - 0.20135472424722278, - 0.19085010486511025, - 0.17834176940031507, - 0.1626685394211717, - 0.1435190374164369, - 0.12176149031408343, - 0.09916193428231733, - 0.07801575186799357, - 0.06041038398396264, - 0.04763954901293583, - 0.03976440276028303, - 0.035820961031315796, - 0.03408497954294071, - 0.03278556617250368, - 0.03084129611210389, - 0.028205271182640174, - 0.025933348812224918, - 0.02581364528633676, - 0.029607676127227155, - 0.038409225937911295, - 0.05198570489591497, - 0.06881170387561944, - 0.08663815489823279, - 0.10332844392837395, - 0.1181885932519352, - 0.13297891729188205, - 0.15239782715551162, - 0.1839620243341736, - 0.23670949824868454, - 0.31975220593723985, - 0.4404305998931964, - 0.6015961838956664, - 0.8022968269736408 - ], - "pressure:branch127_seg0:J105": [ - 8706.777822123273, - 9997.338502043318, - 11372.892685234008, - 12763.829703703728, - 14100.823441330724, - 15325.678718646364, - 16400.0310360677, - 17310.78321827873, - 18054.525498834377, - 18645.064505149217, - 19104.229745408105, - 19441.529041519872, - 19670.441737953483, - 19794.446714922884, - 19809.933394222386, - 19720.87679523107, - 19524.620504306484, - 19230.332919263885, - 18855.800435014247, - 18414.630320720902, - 17928.911406030027, - 17415.569940166977, - 16885.71773115899, - 16347.951774475345, - 15805.184992552247, - 15260.080657523318, - 14717.307225861336, - 14184.372510390242, - 13671.772556664935, - 13190.749406619396, - 12748.375180027067, - 12343.960003144106, - 11967.470132484157, - 11596.769798334042, - 11203.505879398876, - 10757.216791856476, - 10234.191022119128, - 9619.525832194373, - 8919.192629008947, - 8154.927220757232, - 7360.944380601315, - 6583.253344241761, - 5865.587371683548, - 5244.503664633237, - 4741.259917331348, - 4367.309852594935, - 4113.294091128239, - 3963.06516114623, - 3898.2589930996664, - 3896.1307947670266, - 3944.0264779296344, - 4032.1056136285833, - 4154.299183963658, - 4307.931523484917, - 4485.830824171514, - 4678.388084081641, - 4871.09431406861, - 5046.5262904924, - 5188.465365530764, - 5286.025063917914, - 5334.022935534966, - 5336.179096008024, - 5304.875585385479, - 5252.10961555047, - 5192.107146594546, - 5134.44382482774, - 5081.323286261051, - 5029.482282509935, - 4971.651116591109, - 4899.857002405811, - 4809.817794757766, - 4701.93256027742, - 4583.492511463729, - 4465.8479857492775, - 4361.116726008238, - 4279.010952807095, - 4224.075777656341, - 4193.761257010441, - 4180.384510162581, - 4174.453709478738, - 4167.136533782632, - 4154.843653313104, - 4140.205927539123, - 4130.974625889132, - 4137.536219953871, - 4168.139980048868, - 4226.114782570503, - 4307.415077597727, - 4400.497026594438, - 4493.375542134134, - 4576.572999459648, - 4650.873205589974, - 4732.096210421512, - 4851.804373328045, - 5054.897636665651, - 5392.031525053217, - 5905.247851986323, - 6630.142647059657, - 7571.051232653055, - 8706.777822123273 - ], - "flow:J105:branch127_seg1": [ - 0.8022968269736408, - 1.0358404739788822, - 1.29127933554874, - 1.5558063134497047, - 1.81562421940092, - 2.058782283906102, - 2.2765094185020263, - 2.4640819360857895, - 2.6197709886857785, - 2.745464276129427, - 2.8441201737017554, - 2.91856664689996, - 2.9715678927672773, - 3.0040405737094438, - 3.0162491737221093, - 3.0081934923103097, - 2.979650601323653, - 2.932018411473263, - 2.867358767235435, - 2.788738676892484, - 2.7000019502468193, - 2.604417126157248, - 2.504800547956487, - 2.40297966541819, - 2.2998838822639605, - 2.19613282264053, - 2.092392996390105, - 1.9898590490106955, - 1.890317796567695, - 1.7958678320212325, - 1.7081764538311208, - 1.6278626705014916, - 1.5537537242618071, - 1.4825992820073042, - 1.4095836659345768, - 1.3290146533642175, - 1.235692402318267, - 1.1260449397400514, - 0.9996290292696177, - 0.8589340326721934, - 0.7096809340621426, - 0.5597009098635026, - 0.4174124389017792, - 0.2904178911503305, - 0.18433455374997343, - 0.10203126626863648, - 0.04320101889920177, - 0.005844685673519733, - -0.013789681972545672, - -0.019575872747900798, - -0.014585399440927994, - -0.0012621957606086878, - 0.01919041847810965, - 0.04590641774871257, - 0.07782541480543408, - 0.11345871353280487, - 0.15031565298000055, - 0.1853367098642863, - 0.2153463570874396, - 0.23777244956559776, - 0.25107914872773646, - 0.25539831277844743, - 0.25222469058480673, - 0.2438600996347221, - 0.2330416797018842, - 0.2218438939765521, - 0.2113207730498081, - 0.20135472424722278, - 0.19085010486511025, - 0.17834176940031507, - 0.1626685394211717, - 0.1435190374164369, - 0.12176149031408343, - 0.09916193428231733, - 0.07801575186799357, - 0.06041038398396264, - 0.04763954901293583, - 0.03976440276028303, - 0.035820961031315796, - 0.03408497954294071, - 0.03278556617250368, - 0.03084129611210389, - 0.028205271182640174, - 0.025933348812224918, - 0.02581364528633676, - 0.029607676127227155, - 0.038409225937911295, - 0.05198570489591497, - 0.06881170387561944, - 0.08663815489823279, - 0.10332844392837395, - 0.1181885932519352, - 0.13297891729188205, - 0.15239782715551162, - 0.1839620243341736, - 0.23670949824868454, - 0.31975220593723985, - 0.4404305998931964, - 0.6015961838956664, - 0.8022968269736408 - ], - "pressure:J105:branch127_seg1": [ - 8706.777822123273, - 9997.338502043318, - 11372.892685234008, - 12763.829703703728, - 14100.823441330724, - 15325.678718646364, - 16400.0310360677, - 17310.78321827873, - 18054.525498834377, - 18645.064505149217, - 19104.229745408105, - 19441.529041519872, - 19670.441737953483, - 19794.446714922884, - 19809.933394222386, - 19720.87679523107, - 19524.620504306484, - 19230.332919263885, - 18855.800435014247, - 18414.630320720902, - 17928.911406030027, - 17415.569940166977, - 16885.71773115899, - 16347.951774475345, - 15805.184992552247, - 15260.080657523318, - 14717.307225861336, - 14184.372510390242, - 13671.772556664935, - 13190.749406619396, - 12748.375180027067, - 12343.960003144106, - 11967.470132484157, - 11596.769798334042, - 11203.505879398876, - 10757.216791856476, - 10234.191022119128, - 9619.525832194373, - 8919.192629008947, - 8154.927220757232, - 7360.944380601315, - 6583.253344241761, - 5865.587371683548, - 5244.503664633237, - 4741.259917331348, - 4367.309852594935, - 4113.294091128239, - 3963.06516114623, - 3898.2589930996664, - 3896.1307947670266, - 3944.0264779296344, - 4032.1056136285833, - 4154.299183963658, - 4307.931523484917, - 4485.830824171514, - 4678.388084081641, - 4871.09431406861, - 5046.5262904924, - 5188.465365530764, - 5286.025063917914, - 5334.022935534966, - 5336.179096008024, - 5304.875585385479, - 5252.10961555047, - 5192.107146594546, - 5134.44382482774, - 5081.323286261051, - 5029.482282509935, - 4971.651116591109, - 4899.857002405811, - 4809.817794757766, - 4701.93256027742, - 4583.492511463729, - 4465.8479857492775, - 4361.116726008238, - 4279.010952807095, - 4224.075777656341, - 4193.761257010441, - 4180.384510162581, - 4174.453709478738, - 4167.136533782632, - 4154.843653313104, - 4140.205927539123, - 4130.974625889132, - 4137.536219953871, - 4168.139980048868, - 4226.114782570503, - 4307.415077597727, - 4400.497026594438, - 4493.375542134134, - 4576.572999459648, - 4650.873205589974, - 4732.096210421512, - 4851.804373328045, - 5054.897636665651, - 5392.031525053217, - 5905.247851986323, - 6630.142647059657, - 7571.051232653055, - 8706.777822123273 - ], - "flow:branch127_seg1:J106": [ - 0.7995257211138764, - 1.032799365310923, - 1.2881050525262066, - 1.5526969357584137, - 1.8127144859888298, - 2.0561688618625675, - 2.274251584202553, - 2.4622302162269873, - 2.6182668024819256, - 2.744280440605288, - 2.8432321145502377, - 2.9179249787351043, - 2.971174352305829, - 3.0038852849495163, - 3.0163336165115124, - 3.008520472251711, - 2.980211903482543, - 2.9327917984601735, - 2.8682917633747187, - 2.789793873668596, - 2.701143588823838, - 2.6056015938519916, - 2.5060112140010284, - 2.404204375203455, - 2.30111537810427, - 2.1973671742427348, - 2.093614303558458, - 1.9910461858184811, - 1.8914447893215447, - 1.7969156472403895, - 1.7091305319570596, - 1.6287396780668832, - 1.55459306526609, - 1.4834516192632639, - 1.410522691369854, - 1.3301066786555475, - 1.236980197957161, - 1.1275393171668362, - 1.001305061446533, - 0.8607183091368833, - 0.7114784338121614, - 0.561414073894672, - 0.41894116402074627, - 0.2916844215617623, - 0.18532880783261946, - 0.10273761872026374, - 0.04363590341452798, - 0.006080524109219316, - -0.013724919645835791, - -0.01963764062148139, - -0.01473812572074066, - -0.0015097877184653183, - 0.018874998963443152, - 0.045531221125844956, - 0.07739689438270256, - 0.11301613867224025, - 0.14989294650161417, - 0.18497070223245646, - 0.21507092326341215, - 0.23761019176640935, - 0.25102548394852253, - 0.2554355122484307, - 0.252327762999091, - 0.24399230135650457, - 0.23317761034531848, - 0.22197004392448647, - 0.21143690392266332, - 0.2014755846898527, - 0.19099472334934658, - 0.17852675788806224, - 0.16289466842288716, - 0.14377898190325253, - 0.12203577304574642, - 0.09941837013817678, - 0.07822877085911113, - 0.06056482406804574, - 0.04773525628819964, - 0.039807039514267555, - 0.035838789495987476, - 0.03409944497089981, - 0.032806936193551024, - 0.03087380521562453, - 0.02823621700965761, - 0.02594037952450539, - 0.025774130272797815, - 0.029505853304558766, - 0.038247974241435986, - 0.05178320882329164, - 0.0685948964015747, - 0.08643659715334605, - 0.10315382754079544, - 0.11802161936721488, - 0.1327651754751646, - 0.1520487856446296, - 0.18336756351226288, - 0.23574078359331996, - 0.31835374373217445, - 0.4385464720453209, - 0.5991908295398003, - 0.7995257211138764 - ], - "pressure:branch127_seg1:J106": [ - 8113.7815063753615, - 9304.919045916902, - 10604.353087039259, - 11947.107829972816, - 13263.23429946056, - 14492.439937371259, - 15590.93142650743, - 16536.045575824723, - 17319.15328330763, - 17950.43208940879, - 18445.626136687126, - 18818.360844027404, - 19082.78485453204, - 19243.343882135243, - 19300.86383455813, - 19255.804719482614, - 19106.81331725259, - 18861.12252086134, - 18529.84495885296, - 18128.32301104993, - 17676.2809297302, - 17190.237150035748, - 16684.185976447694, - 16167.306006556033, - 15644.111132772727, - 15117.693009646993, - 14591.510536556787, - 14071.741279133617, - 13567.555522523402, - 13089.659740468798, - 12646.34354715148, - 12240.446109737442, - 11865.682586012457, - 11505.03667065508, - 11133.831966626845, - 10723.085405976983, - 10246.710656729367, - 9686.869409123423, - 9042.088261693627, - 8325.75618804745, - 7567.27454460549, - 6806.926517230482, - 6087.366530601724, - 5446.898163851543, - 4913.407870917173, - 4501.021674700314, - 4207.45294969027, - 4022.1753520789125, - 3926.0954687038457, - 3899.357923422376, - 3926.7287167089125, - 3995.962246648478, - 4101.124537330711, - 4237.944503986595, - 4400.850821505546, - 4582.237686800611, - 4769.277252139063, - 4946.302156737728, - 5097.235519301917, - 5209.270684206034, - 5274.814610619137, - 5294.820253149702, - 5277.35602970198, - 5234.036997961601, - 5178.7899379108485, - 5122.0479140201305, - 5068.8422931969235, - 5018.3450984115925, - 4964.843575031949, - 4900.859256255969, - 4820.632204874053, - 4722.775941514673, - 4611.950606630759, - 4497.2957872622865, - 4390.498283777275, - 4302.05794900669, - 4238.354442720403, - 4199.398412453981, - 4180.105038495121, - 4171.6421746006745, - 4165.0238753772, - 4154.97174277648, - 4141.496336260622, - 4130.162212556961, - 4130.1560836461595, - 4150.335393871033, - 4196.063213182107, - 4265.908997118678, - 4351.76950264627, - 4442.223806061637, - 4526.543683493888, - 4601.566791167243, - 4676.811228553876, - 4776.745794845139, - 4940.033031636341, - 5212.815094061396, - 5641.011193676428, - 6261.529167968133, - 7087.718103786139, - 8113.7815063753615 - ], - "flow:J106:branch127_seg2": [ - 0.7995257211138764, - 1.032799365310923, - 1.2881050525262066, - 1.5526969357584137, - 1.8127144859888298, - 2.0561688618625675, - 2.274251584202553, - 2.4622302162269873, - 2.6182668024819256, - 2.744280440605288, - 2.8432321145502377, - 2.9179249787351043, - 2.971174352305829, - 3.0038852849495163, - 3.0163336165115124, - 3.008520472251711, - 2.980211903482543, - 2.9327917984601735, - 2.8682917633747187, - 2.789793873668596, - 2.701143588823838, - 2.6056015938519916, - 2.5060112140010284, - 2.404204375203455, - 2.30111537810427, - 2.1973671742427348, - 2.093614303558458, - 1.9910461858184811, - 1.8914447893215447, - 1.7969156472403895, - 1.7091305319570596, - 1.6287396780668832, - 1.55459306526609, - 1.4834516192632639, - 1.410522691369854, - 1.3301066786555475, - 1.236980197957161, - 1.1275393171668362, - 1.001305061446533, - 0.8607183091368833, - 0.7114784338121614, - 0.561414073894672, - 0.41894116402074627, - 0.2916844215617623, - 0.18532880783261946, - 0.10273761872026374, - 0.04363590341452798, - 0.006080524109219316, - -0.013724919645835791, - -0.01963764062148139, - -0.01473812572074066, - -0.0015097877184653183, - 0.018874998963443152, - 0.045531221125844956, - 0.07739689438270256, - 0.11301613867224025, - 0.14989294650161417, - 0.18497070223245646, - 0.21507092326341215, - 0.23761019176640935, - 0.25102548394852253, - 0.2554355122484307, - 0.252327762999091, - 0.24399230135650457, - 0.23317761034531848, - 0.22197004392448647, - 0.21143690392266332, - 0.2014755846898527, - 0.19099472334934658, - 0.17852675788806224, - 0.16289466842288716, - 0.14377898190325253, - 0.12203577304574642, - 0.09941837013817678, - 0.07822877085911113, - 0.06056482406804574, - 0.04773525628819964, - 0.039807039514267555, - 0.035838789495987476, - 0.03409944497089981, - 0.032806936193551024, - 0.03087380521562453, - 0.02823621700965761, - 0.02594037952450539, - 0.025774130272797815, - 0.029505853304558766, - 0.038247974241435986, - 0.05178320882329164, - 0.0685948964015747, - 0.08643659715334605, - 0.10315382754079544, - 0.11802161936721488, - 0.1327651754751646, - 0.1520487856446296, - 0.18336756351226288, - 0.23574078359331996, - 0.31835374373217445, - 0.4385464720453209, - 0.5991908295398003, - 0.7995257211138764 - ], - "pressure:J106:branch127_seg2": [ - 8113.7815063753615, - 9304.919045916902, - 10604.353087039259, - 11947.107829972816, - 13263.23429946056, - 14492.439937371259, - 15590.93142650743, - 16536.045575824723, - 17319.15328330763, - 17950.43208940879, - 18445.626136687126, - 18818.360844027404, - 19082.78485453204, - 19243.343882135243, - 19300.86383455813, - 19255.804719482614, - 19106.81331725259, - 18861.12252086134, - 18529.84495885296, - 18128.32301104993, - 17676.2809297302, - 17190.237150035748, - 16684.185976447694, - 16167.306006556033, - 15644.111132772727, - 15117.693009646993, - 14591.510536556787, - 14071.741279133617, - 13567.555522523402, - 13089.659740468798, - 12646.34354715148, - 12240.446109737442, - 11865.682586012457, - 11505.03667065508, - 11133.831966626845, - 10723.085405976983, - 10246.710656729367, - 9686.869409123423, - 9042.088261693627, - 8325.75618804745, - 7567.27454460549, - 6806.926517230482, - 6087.366530601724, - 5446.898163851543, - 4913.407870917173, - 4501.021674700314, - 4207.45294969027, - 4022.1753520789125, - 3926.0954687038457, - 3899.357923422376, - 3926.7287167089125, - 3995.962246648478, - 4101.124537330711, - 4237.944503986595, - 4400.850821505546, - 4582.237686800611, - 4769.277252139063, - 4946.302156737728, - 5097.235519301917, - 5209.270684206034, - 5274.814610619137, - 5294.820253149702, - 5277.35602970198, - 5234.036997961601, - 5178.7899379108485, - 5122.0479140201305, - 5068.8422931969235, - 5018.3450984115925, - 4964.843575031949, - 4900.859256255969, - 4820.632204874053, - 4722.775941514673, - 4611.950606630759, - 4497.2957872622865, - 4390.498283777275, - 4302.05794900669, - 4238.354442720403, - 4199.398412453981, - 4180.105038495121, - 4171.6421746006745, - 4165.0238753772, - 4154.97174277648, - 4141.496336260622, - 4130.162212556961, - 4130.1560836461595, - 4150.335393871033, - 4196.063213182107, - 4265.908997118678, - 4351.76950264627, - 4442.223806061637, - 4526.543683493888, - 4601.566791167243, - 4676.811228553876, - 4776.745794845139, - 4940.033031636341, - 5212.815094061396, - 5641.011193676428, - 6261.529167968133, - 7087.718103786139, - 8113.7815063753615 - ], - "flow:branch132_seg0:J107": [ - 1.0111428346533875, - 1.288225602277476, - 1.581962607211436, - 1.8773576896305975, - 2.1588760141509913, - 2.414360100316108, - 2.636093084264852, - 2.82160591555459, - 2.970783994719028, - 3.0875298724791187, - 3.1763509529508527, - 3.239911447777488, - 3.2812998069287644, - 3.300769200996651, - 3.2979495832432, - 3.273143419211826, - 3.225921236985074, - 3.158764267870309, - 3.0747354361850303, - 2.9774684203074937, - 2.871805260200673, - 2.761022368115886, - 2.6477554286538467, - 2.5335341812638252, - 2.418795368227616, - 2.304039034801121, - 2.190077848770598, - 2.0785146360737463, - 1.971640625786308, - 1.8718909030409874, - 1.7807508104409417, - 1.6980916422731334, - 1.6215313292499571, - 1.5461040974368476, - 1.465546410632878, - 1.373123312796819, - 1.2635372372784464, - 1.1338544156644799, - 0.98561041065203, - 0.8235270296406061, - 0.6556815157965515, - 0.4921135164369111, - 0.3423823901015785, - 0.21425827881287293, - 0.11253469155056162, - 0.03889987229384058, - -0.009162327973602738, - -0.03493508264996998, - -0.04333184093928273, - -0.03901674767065829, - -0.02472329202220499, - -0.0027931825308003637, - 0.0259801709010145, - 0.06097373648328767, - 0.10070224439032259, - 0.1432334623556171, - 0.18529488578487813, - 0.2231334261791842, - 0.253265361700981, - 0.2733354869557236, - 0.2823637676579602, - 0.28146556311829124, - 0.273297771784857, - 0.2607826817106991, - 0.24716275714227393, - 0.23437950513850297, - 0.22290634532607892, - 0.21192262765505124, - 0.1996819994580677, - 0.18438425457000132, - 0.1650102137778857, - 0.14173536196822686, - 0.11626928375890101, - 0.09109184224699816, - 0.06897389295192403, - 0.05204326793351526, - 0.04121052733302086, - 0.03575835340101815, - 0.0339668814414227, - 0.03357979100385758, - 0.032606221712785446, - 0.030318999881972637, - 0.02733408833935812, - 0.02545800822174158, - 0.02706061908034351, - 0.03400242395066494, - 0.04700570952440483, - 0.06502502565420176, - 0.08552761858951986, - 0.10569586084392725, - 0.12335214246347326, - 0.13869548046489305, - 0.15526770322223404, - 0.18008424852728688, - 0.2231339775674279, - 0.29527164468375766, - 0.4061948757482672, - 0.5631186112552613, - 0.7660134615377073, - 1.0111428346533875 - ], - "pressure:branch132_seg0:J107": [ - 9451.504551894428, - 10877.154451331844, - 12361.114779611069, - 13827.725068741454, - 15205.597644278121, - 16438.02746523707, - 17491.92984334833, - 18364.071641068324, - 19059.524365187717, - 19595.09519224849, - 20000.568921279497, - 20283.395992875, - 20456.038468196843, - 20521.574397594883, - 20472.5195302188, - 20315.32541391345, - 20047.402556187382, - 19681.062444663163, - 19239.177553646845, - 18736.080653047575, - 18196.71950043265, - 17637.866046134543, - 17068.565615741485, - 16496.319537046704, - 15922.169857908451, - 15348.397862458103, - 14780.639593276697, - 14227.86794927261, - 13702.196823152099, - 13215.405293010166, - 12773.397690896685, - 12371.349910672743, - 11994.798251332555, - 11615.261791694686, - 11199.515132075381, - 10714.63676460257, - 10138.320303190627, - 9459.320199428535, - 8691.466445861097, - 7866.013088545852, - 7024.409329768101, - 6219.636441647671, - 5498.358384986785, - 4895.660270194428, - 4427.447313085248, - 4101.195586752313, - 3898.569250871254, - 3798.329678053817, - 3780.2904430164353, - 3818.413633997004, - 3902.428970289817, - 4023.8540765498165, - 4176.9088856172775, - 4360.673125732866, - 4565.645325145486, - 4780.024137823896, - 4987.253165492666, - 5167.522488808615, - 5304.2734623831575, - 5388.263597185954, - 5417.503516960474, - 5398.831800883984, - 5349.371558216685, - 5282.984924543337, - 5214.493390782808, - 5152.7159459062805, - 5097.156530709786, - 5041.770280972324, - 4977.27679872691, - 4894.993904855605, - 4791.908052649091, - 4670.466177522993, - 4541.231093073425, - 4417.994126632352, - 4313.850953800427, - 4237.936614166206, - 4192.8343400714675, - 4172.995275884121, - 4167.630308344911, - 4166.281252023018, - 4159.759154725805, - 4146.289903259845, - 4131.358453077756, - 4125.3371640828655, - 4140.214149972564, - 4183.958361910321, - 4257.619995581163, - 4354.166159608389, - 4458.277627163262, - 4556.482107864017, - 4640.478322360257, - 4715.332118709772, - 4804.218981044692, - 4947.254466776196, - 5197.690402244577, - 5611.581528381639, - 6229.241462291491, - 7085.437057857196, - 8171.255126695136, - 9451.504551894428 - ], - "flow:J107:branch132_seg1": [ - 1.0111428346533875, - 1.288225602277476, - 1.581962607211436, - 1.8773576896305975, - 2.1588760141509913, - 2.414360100316108, - 2.636093084264852, - 2.82160591555459, - 2.970783994719028, - 3.0875298724791187, - 3.1763509529508527, - 3.239911447777488, - 3.2812998069287644, - 3.300769200996651, - 3.2979495832432, - 3.273143419211826, - 3.225921236985074, - 3.158764267870309, - 3.0747354361850303, - 2.9774684203074937, - 2.871805260200673, - 2.761022368115886, - 2.6477554286538467, - 2.5335341812638252, - 2.418795368227616, - 2.304039034801121, - 2.190077848770598, - 2.0785146360737463, - 1.971640625786308, - 1.8718909030409874, - 1.7807508104409417, - 1.6980916422731334, - 1.6215313292499571, - 1.5461040974368476, - 1.465546410632878, - 1.373123312796819, - 1.2635372372784464, - 1.1338544156644799, - 0.98561041065203, - 0.8235270296406061, - 0.6556815157965515, - 0.4921135164369111, - 0.3423823901015785, - 0.21425827881287293, - 0.11253469155056162, - 0.03889987229384058, - -0.009162327973602738, - -0.03493508264996998, - -0.04333184093928273, - -0.03901674767065829, - -0.02472329202220499, - -0.0027931825308003637, - 0.0259801709010145, - 0.06097373648328767, - 0.10070224439032259, - 0.1432334623556171, - 0.18529488578487813, - 0.2231334261791842, - 0.253265361700981, - 0.2733354869557236, - 0.2823637676579602, - 0.28146556311829124, - 0.273297771784857, - 0.2607826817106991, - 0.24716275714227393, - 0.23437950513850297, - 0.22290634532607892, - 0.21192262765505124, - 0.1996819994580677, - 0.18438425457000132, - 0.1650102137778857, - 0.14173536196822686, - 0.11626928375890101, - 0.09109184224699816, - 0.06897389295192403, - 0.05204326793351526, - 0.04121052733302086, - 0.03575835340101815, - 0.0339668814414227, - 0.03357979100385758, - 0.032606221712785446, - 0.030318999881972637, - 0.02733408833935812, - 0.02545800822174158, - 0.02706061908034351, - 0.03400242395066494, - 0.04700570952440483, - 0.06502502565420176, - 0.08552761858951986, - 0.10569586084392725, - 0.12335214246347326, - 0.13869548046489305, - 0.15526770322223404, - 0.18008424852728688, - 0.2231339775674279, - 0.29527164468375766, - 0.4061948757482672, - 0.5631186112552613, - 0.7660134615377073, - 1.0111428346533875 - ], - "pressure:J107:branch132_seg1": [ - 9451.504551894428, - 10877.154451331844, - 12361.114779611069, - 13827.725068741454, - 15205.597644278121, - 16438.02746523707, - 17491.92984334833, - 18364.071641068324, - 19059.524365187717, - 19595.09519224849, - 20000.568921279497, - 20283.395992875, - 20456.038468196843, - 20521.574397594883, - 20472.5195302188, - 20315.32541391345, - 20047.402556187382, - 19681.062444663163, - 19239.177553646845, - 18736.080653047575, - 18196.71950043265, - 17637.866046134543, - 17068.565615741485, - 16496.319537046704, - 15922.169857908451, - 15348.397862458103, - 14780.639593276697, - 14227.86794927261, - 13702.196823152099, - 13215.405293010166, - 12773.397690896685, - 12371.349910672743, - 11994.798251332555, - 11615.261791694686, - 11199.515132075381, - 10714.63676460257, - 10138.320303190627, - 9459.320199428535, - 8691.466445861097, - 7866.013088545852, - 7024.409329768101, - 6219.636441647671, - 5498.358384986785, - 4895.660270194428, - 4427.447313085248, - 4101.195586752313, - 3898.569250871254, - 3798.329678053817, - 3780.2904430164353, - 3818.413633997004, - 3902.428970289817, - 4023.8540765498165, - 4176.9088856172775, - 4360.673125732866, - 4565.645325145486, - 4780.024137823896, - 4987.253165492666, - 5167.522488808615, - 5304.2734623831575, - 5388.263597185954, - 5417.503516960474, - 5398.831800883984, - 5349.371558216685, - 5282.984924543337, - 5214.493390782808, - 5152.7159459062805, - 5097.156530709786, - 5041.770280972324, - 4977.27679872691, - 4894.993904855605, - 4791.908052649091, - 4670.466177522993, - 4541.231093073425, - 4417.994126632352, - 4313.850953800427, - 4237.936614166206, - 4192.8343400714675, - 4172.995275884121, - 4167.630308344911, - 4166.281252023018, - 4159.759154725805, - 4146.289903259845, - 4131.358453077756, - 4125.3371640828655, - 4140.214149972564, - 4183.958361910321, - 4257.619995581163, - 4354.166159608389, - 4458.277627163262, - 4556.482107864017, - 4640.478322360257, - 4715.332118709772, - 4804.218981044692, - 4947.254466776196, - 5197.690402244577, - 5611.581528381639, - 6229.241462291491, - 7085.437057857196, - 8171.255126695136, - 9451.504551894428 - ], - "flow:branch132_seg1:J108": [ - 1.0097387456375084, - 1.2867227559556977, - 1.580425211844173, - 1.875888014001719, - 2.1575345331313325, - 2.413184210288695, - 2.635101330001896, - 2.8208200267416688, - 2.9701522642836977, - 3.087049446628582, - 3.1760053917662825, - 3.2396715401328855, - 3.2811803068900582, - 3.300757554533041, - 3.2980515769606678, - 3.273362651218965, - 3.226242221802353, - 3.159182979800925, - 3.0752238575932878, - 2.9780028639100125, - 2.8723726235796807, - 2.7616028095444585, - 2.6483412634250234, - 2.5341235193936185, - 2.4193846405809647, - 2.304626477955796, - 2.1906552051100046, - 2.0790700154076043, - 1.9721606793388713, - 1.8723682031365385, - 1.7811801065600095, - 1.698486249979487, - 1.6219154572286452, - 1.546505946975707, - 1.466002848347994, - 1.3736659156311437, - 1.2641826117955317, - 1.1345962368279894, - 0.9864364953051473, - 0.8243900995732315, - 0.6565326399000786, - 0.4929063765964971, - 0.34307023534074393, - 0.21480704997821048, - 0.1129454878586218, - 0.039172703416017904, - -0.009015202080106057, - -0.0348777667868373, - -0.04334497494051289, - -0.03908460617048137, - -0.02482765701981158, - -0.002938405935260114, - 0.025804726105117057, - 0.06077415907412573, - 0.10048162939099575, - 0.1430140040135425, - 0.18509349141947698, - 0.22296831083845403, - 0.2531503413885206, - 0.27328106333630614, - 0.2823588366168701, - 0.2815020966922226, - 0.27336121575553946, - 0.260852277450998, - 0.24723002881338285, - 0.23443988453883147, - 0.22296155596032977, - 0.211982175134569, - 0.1997558797535069, - 0.1844797455183507, - 0.1651261525246824, - 0.1418654700092699, - 0.11640221094163158, - 0.09121099304050383, - 0.0690667587868281, - 0.052104494326205605, - 0.04124293194358633, - 0.03576719208004039, - 0.033967875325348965, - 0.0335837441526519, - 0.032616602615642684, - 0.03033489484107147, - 0.02734708331532059, - 0.025455161037871675, - 0.027031807670227146, - 0.03394036592403938, - 0.046917262653563205, - 0.06492015549536499, - 0.08542094779435826, - 0.10560218382973088, - 0.12327326640872724, - 0.13861699805777686, - 0.1551568378784734, - 0.1798935239306816, - 0.22280620852067878, - 0.2947448581595117, - 0.40544563830180474, - 0.5621265548969844, - 0.7647760929887243, - 1.0097387456375084 - ], - "pressure:branch132_seg1:J108": [ - 9278.242917907028, - 10681.195472393456, - 12150.67337048414, - 13611.990571972401, - 14991.871586865325, - 16232.48790495689, - 17298.974724473384, - 18185.24873384691, - 18893.883389145813, - 19442.89068067928, - 19859.398041675002, - 20152.612257165314, - 20336.228357445027, - 20412.489322122547, - 20375.957327135417, - 20231.417144608873, - 19976.288111443948, - 19622.89358803503, - 19191.393633619547, - 18697.277321903995, - 18165.13008413871, - 17611.50652167546, - 17046.77750515333, - 16478.513105209044, - 15908.108378807143, - 15337.904774990033, - 14772.954814767236, - 14221.833817325387, - 13696.349891002612, - 13208.385089674677, - 12764.32125139268, - 12360.853172291292, - 11984.5283793714, - 11608.265146944073, - 11199.71779501912, - 10725.893224542531, - 10163.165520998895, - 9499.03867833009, - 8745.245266227032, - 7930.085764271316, - 7094.396952674778, - 6289.9318325360755, - 5563.449840833034, - 4951.133924607136, - 4471.632599366757, - 4132.695829120604, - 3918.1504137184033, - 3808.4919078625207, - 3782.251257112084, - 3814.332172113601, - 3893.449320436687, - 4010.002680142016, - 4158.886665854603, - 4338.470941533752, - 4539.960315227078, - 4752.460696424426, - 4959.542105501228, - 5141.874857629898, - 5282.672565057396, - 5371.928501440144, - 5406.523415434353, - 5392.8908154984165, - 5346.746916087333, - 5282.064489843117, - 5214.105839273517, - 5151.966372702158, - 5096.125069120261, - 5041.261777639987, - 4978.33871215898, - 4898.603283130821, - 4798.32943840091, - 4679.398649417005, - 4551.602839738704, - 4428.170065756572, - 4322.382673977109, - 4243.857190972302, - 4195.86449110741, - 4173.558270907381, - 4166.991409415993, - 4165.477052769749, - 4159.583239244905, - 4146.89896961265, - 4132.042668022421, - 4124.84830177254, - 4137.212137468733, - 4177.49513912328, - 4247.696952143999, - 4341.424984238132, - 4444.356453460557, - 4542.900903287562, - 4627.8818525054185, - 4702.887070434285, - 4789.033205003343, - 4924.4484470522775, - 5160.885025315826, - 5553.481016464983, - 6145.16238946192, - 6970.905146285565, - 8025.035970270333, - 9278.242917907028 - ], - "flow:J108:branch132_seg2": [ - 1.0097387456375084, - 1.2867227559556977, - 1.580425211844173, - 1.875888014001719, - 2.1575345331313325, - 2.413184210288695, - 2.635101330001896, - 2.8208200267416688, - 2.9701522642836977, - 3.087049446628582, - 3.1760053917662825, - 3.2396715401328855, - 3.2811803068900582, - 3.300757554533041, - 3.2980515769606678, - 3.273362651218965, - 3.226242221802353, - 3.159182979800925, - 3.0752238575932878, - 2.9780028639100125, - 2.8723726235796807, - 2.7616028095444585, - 2.6483412634250234, - 2.5341235193936185, - 2.4193846405809647, - 2.304626477955796, - 2.1906552051100046, - 2.0790700154076043, - 1.9721606793388713, - 1.8723682031365385, - 1.7811801065600095, - 1.698486249979487, - 1.6219154572286452, - 1.546505946975707, - 1.466002848347994, - 1.3736659156311437, - 1.2641826117955317, - 1.1345962368279894, - 0.9864364953051473, - 0.8243900995732315, - 0.6565326399000786, - 0.4929063765964971, - 0.34307023534074393, - 0.21480704997821048, - 0.1129454878586218, - 0.039172703416017904, - -0.009015202080106057, - -0.0348777667868373, - -0.04334497494051289, - -0.03908460617048137, - -0.02482765701981158, - -0.002938405935260114, - 0.025804726105117057, - 0.06077415907412573, - 0.10048162939099575, - 0.1430140040135425, - 0.18509349141947698, - 0.22296831083845403, - 0.2531503413885206, - 0.27328106333630614, - 0.2823588366168701, - 0.2815020966922226, - 0.27336121575553946, - 0.260852277450998, - 0.24723002881338285, - 0.23443988453883147, - 0.22296155596032977, - 0.211982175134569, - 0.1997558797535069, - 0.1844797455183507, - 0.1651261525246824, - 0.1418654700092699, - 0.11640221094163158, - 0.09121099304050383, - 0.0690667587868281, - 0.052104494326205605, - 0.04124293194358633, - 0.03576719208004039, - 0.033967875325348965, - 0.0335837441526519, - 0.032616602615642684, - 0.03033489484107147, - 0.02734708331532059, - 0.025455161037871675, - 0.027031807670227146, - 0.03394036592403938, - 0.046917262653563205, - 0.06492015549536499, - 0.08542094779435826, - 0.10560218382973088, - 0.12327326640872724, - 0.13861699805777686, - 0.1551568378784734, - 0.1798935239306816, - 0.22280620852067878, - 0.2947448581595117, - 0.40544563830180474, - 0.5621265548969844, - 0.7647760929887243, - 1.0097387456375084 - ], - "pressure:J108:branch132_seg2": [ - 9278.242917907028, - 10681.195472393456, - 12150.67337048414, - 13611.990571972401, - 14991.871586865325, - 16232.48790495689, - 17298.974724473384, - 18185.24873384691, - 18893.883389145813, - 19442.89068067928, - 19859.398041675002, - 20152.612257165314, - 20336.228357445027, - 20412.489322122547, - 20375.957327135417, - 20231.417144608873, - 19976.288111443948, - 19622.89358803503, - 19191.393633619547, - 18697.277321903995, - 18165.13008413871, - 17611.50652167546, - 17046.77750515333, - 16478.513105209044, - 15908.108378807143, - 15337.904774990033, - 14772.954814767236, - 14221.833817325387, - 13696.349891002612, - 13208.385089674677, - 12764.32125139268, - 12360.853172291292, - 11984.5283793714, - 11608.265146944073, - 11199.71779501912, - 10725.893224542531, - 10163.165520998895, - 9499.03867833009, - 8745.245266227032, - 7930.085764271316, - 7094.396952674778, - 6289.9318325360755, - 5563.449840833034, - 4951.133924607136, - 4471.632599366757, - 4132.695829120604, - 3918.1504137184033, - 3808.4919078625207, - 3782.251257112084, - 3814.332172113601, - 3893.449320436687, - 4010.002680142016, - 4158.886665854603, - 4338.470941533752, - 4539.960315227078, - 4752.460696424426, - 4959.542105501228, - 5141.874857629898, - 5282.672565057396, - 5371.928501440144, - 5406.523415434353, - 5392.8908154984165, - 5346.746916087333, - 5282.064489843117, - 5214.105839273517, - 5151.966372702158, - 5096.125069120261, - 5041.261777639987, - 4978.33871215898, - 4898.603283130821, - 4798.32943840091, - 4679.398649417005, - 4551.602839738704, - 4428.170065756572, - 4322.382673977109, - 4243.857190972302, - 4195.86449110741, - 4173.558270907381, - 4166.991409415993, - 4165.477052769749, - 4159.583239244905, - 4146.89896961265, - 4132.042668022421, - 4124.84830177254, - 4137.212137468733, - 4177.49513912328, - 4247.696952143999, - 4341.424984238132, - 4444.356453460557, - 4542.900903287562, - 4627.8818525054185, - 4702.887070434285, - 4789.033205003343, - 4924.4484470522775, - 5160.885025315826, - 5553.481016464983, - 6145.16238946192, - 6970.905146285565, - 8025.035970270333, - 9278.242917907028 - ], - "flow:branch133_seg0:J109": [ - 0.7024768763956566, - 0.900602761083745, - 1.1138346045723704, - 1.3313889134468948, - 1.5418460485730807, - 1.7357952299923043, - 1.90676175135419, - 2.0518808037508456, - 2.1703622072362063, - 2.2644264038898454, - 2.336946561160371, - 2.3900764984494893, - 2.4261271365148365, - 2.445587353534942, - 2.4484737177121665, - 2.4349298597939586, - 2.404732355510858, - 2.359405460288429, - 2.3009326198376603, - 2.2319297328601833, - 2.1557710343924033, - 2.075007098284673, - 1.9917711500292774, - 1.907380757802006, - 1.8223794214713946, - 1.73720894706205, - 1.6524418366704712, - 1.5691570365698242, - 1.4889272280129273, - 1.4135034907059678, - 1.3441041530764912, - 1.2809228287807077, - 1.2225848747031312, - 1.1659081999011462, - 1.1065948449409084, - 1.0398146205764327, - 0.9614717882257149, - 0.8690122605429218, - 0.7628266944888952, - 0.6456724423926444, - 0.5228867815307954, - 0.40139253943259723, - 0.2881775226794948, - 0.18923243805858966, - 0.10864514171643458, - 0.04821608147167136, - 0.006894174400211545, - -0.017345369405981366, - -0.02786123069275718, - -0.027974515002507222, - -0.019963509158830002, - -0.0057199227477058604, - 0.01395250125735654, - 0.03844802583711827, - 0.066761570285361, - 0.0975609017184636, - 0.128607352308462, - 0.15726068544929064, - 0.18093594019232484, - 0.19771826649337668, - 0.20662005202019615, - 0.20812005790415475, - 0.20381787056438067, - 0.19574284504928305, - 0.18622348235321323, - 0.176832886080305, - 0.16818603070362867, - 0.15994137567706904, - 0.15101384801867396, - 0.14014709616826304, - 0.1264949254711328, - 0.10999924338098702, - 0.09164894401088912, - 0.07308077992566574, - 0.056255603547718434, - 0.042810756692983475, - 0.03360944785774633, - 0.028408361193840853, - 0.026178469356513676, - 0.02538049075402097, - 0.024553649359693386, - 0.022987545558332927, - 0.020889429931995347, - 0.01935571366212087, - 0.01999049288035971, - 0.024195779916948004, - 0.03268366457178794, - 0.04496674233378359, - 0.059484473112101054, - 0.074276092298056, - 0.08766534634507654, - 0.09944678273484758, - 0.11165585519614846, - 0.12881407429686753, - 0.15769419860954464, - 0.20600650010244856, - 0.28107277334053615, - 0.3885595140699011, - 0.5296140795427435, - 0.7024768763956566 - ], - "pressure:branch133_seg0:J109": [ - 9032.381043699688, - 10390.161494416712, - 11824.8127368169, - 13264.01133150062, - 14636.065939530528, - 15882.005376273071, - 16964.292709943988, - 17873.113842125706, - 18607.42366793779, - 19182.31949794416, - 19623.0374331161, - 19938.750179502953, - 20143.15917680337, - 20239.89361387961, - 20224.38436710708, - 20101.657294234472, - 19869.336682057772, - 19538.011288027024, - 19127.2180935256, - 18651.37989022732, - 18133.984801845323, - 17592.03175196889, - 17036.266880244566, - 16475.076234247128, - 15910.751357019924, - 15345.905841207381, - 14785.513654061402, - 14237.636177256216, - 13713.415522727035, - 13224.406989666451, - 12777.298681701199, - 12369.954006062015, - 11990.658678105032, - 11614.61583133531, - 11211.283251946596, - 10748.794026904001, - 10203.315665204775, - 9560.845765789609, - 8830.04546605631, - 8036.063551297601, - 7216.249645528657, - 6419.793685783515, - 5692.306379130511, - 5070.530072280406, - 4574.677488363921, - 4214.992847020233, - 3978.8516040104987, - 3848.4643687770044, - 3804.2433130401796, - 3821.716858316291, - 3888.8368008962198, - 3995.58245728482, - 4135.879119436112, - 4307.511931945007, - 4502.075837613093, - 4709.183829615753, - 4913.3542074284405, - 5096.02765030169, - 5240.622808881644, - 5336.698721777773, - 5380.029256744429, - 5375.521579524331, - 5337.420330897793, - 5278.706683480131, - 5214.0985409796685, - 5153.188282175985, - 5097.429659861208, - 5042.6601787452455, - 4980.869087683993, - 4903.7525378541395, - 4807.363775538632, - 4692.79700154364, - 4568.588948678569, - 4447.011236550388, - 4340.739970105197, - 4259.469205664343, - 4207.193431812076, - 4180.265081870754, - 4169.880694725931, - 4166.070236206065, - 4159.620169723309, - 4147.486641504584, - 4133.267694785736, - 4125.673848864741, - 4135.803007585611, - 4171.923228028996, - 4236.696099290766, - 4324.990338000499, - 4423.818322407011, - 4520.437352951196, - 4605.612871551207, - 4681.536250393518, - 4766.735681665796, - 4896.185121885201, - 5118.364646829121, - 5486.548365475251, - 6043.18927742688, - 6824.248543073359, - 7829.107102616656, - 9032.381043699688 - ], - "flow:J109:branch133_seg1": [ - 0.7024768763956566, - 0.900602761083745, - 1.1138346045723704, - 1.3313889134468948, - 1.5418460485730807, - 1.7357952299923043, - 1.90676175135419, - 2.0518808037508456, - 2.1703622072362063, - 2.2644264038898454, - 2.336946561160371, - 2.3900764984494893, - 2.4261271365148365, - 2.445587353534942, - 2.4484737177121665, - 2.4349298597939586, - 2.404732355510858, - 2.359405460288429, - 2.3009326198376603, - 2.2319297328601833, - 2.1557710343924033, - 2.075007098284673, - 1.9917711500292774, - 1.907380757802006, - 1.8223794214713946, - 1.73720894706205, - 1.6524418366704712, - 1.5691570365698242, - 1.4889272280129273, - 1.4135034907059678, - 1.3441041530764912, - 1.2809228287807077, - 1.2225848747031312, - 1.1659081999011462, - 1.1065948449409084, - 1.0398146205764327, - 0.9614717882257149, - 0.8690122605429218, - 0.7628266944888952, - 0.6456724423926444, - 0.5228867815307954, - 0.40139253943259723, - 0.2881775226794948, - 0.18923243805858966, - 0.10864514171643458, - 0.04821608147167136, - 0.006894174400211545, - -0.017345369405981366, - -0.02786123069275718, - -0.027974515002507222, - -0.019963509158830002, - -0.0057199227477058604, - 0.01395250125735654, - 0.03844802583711827, - 0.066761570285361, - 0.0975609017184636, - 0.128607352308462, - 0.15726068544929064, - 0.18093594019232484, - 0.19771826649337668, - 0.20662005202019615, - 0.20812005790415475, - 0.20381787056438067, - 0.19574284504928305, - 0.18622348235321323, - 0.176832886080305, - 0.16818603070362867, - 0.15994137567706904, - 0.15101384801867396, - 0.14014709616826304, - 0.1264949254711328, - 0.10999924338098702, - 0.09164894401088912, - 0.07308077992566574, - 0.056255603547718434, - 0.042810756692983475, - 0.03360944785774633, - 0.028408361193840853, - 0.026178469356513676, - 0.02538049075402097, - 0.024553649359693386, - 0.022987545558332927, - 0.020889429931995347, - 0.01935571366212087, - 0.01999049288035971, - 0.024195779916948004, - 0.03268366457178794, - 0.04496674233378359, - 0.059484473112101054, - 0.074276092298056, - 0.08766534634507654, - 0.09944678273484758, - 0.11165585519614846, - 0.12881407429686753, - 0.15769419860954464, - 0.20600650010244856, - 0.28107277334053615, - 0.3885595140699011, - 0.5296140795427435, - 0.7024768763956566 - ], - "pressure:J109:branch133_seg1": [ - 9032.381043699688, - 10390.161494416712, - 11824.8127368169, - 13264.01133150062, - 14636.065939530528, - 15882.005376273071, - 16964.292709943988, - 17873.113842125706, - 18607.42366793779, - 19182.31949794416, - 19623.0374331161, - 19938.750179502953, - 20143.15917680337, - 20239.89361387961, - 20224.38436710708, - 20101.657294234472, - 19869.336682057772, - 19538.011288027024, - 19127.2180935256, - 18651.37989022732, - 18133.984801845323, - 17592.03175196889, - 17036.266880244566, - 16475.076234247128, - 15910.751357019924, - 15345.905841207381, - 14785.513654061402, - 14237.636177256216, - 13713.415522727035, - 13224.406989666451, - 12777.298681701199, - 12369.954006062015, - 11990.658678105032, - 11614.61583133531, - 11211.283251946596, - 10748.794026904001, - 10203.315665204775, - 9560.845765789609, - 8830.04546605631, - 8036.063551297601, - 7216.249645528657, - 6419.793685783515, - 5692.306379130511, - 5070.530072280406, - 4574.677488363921, - 4214.992847020233, - 3978.8516040104987, - 3848.4643687770044, - 3804.2433130401796, - 3821.716858316291, - 3888.8368008962198, - 3995.58245728482, - 4135.879119436112, - 4307.511931945007, - 4502.075837613093, - 4709.183829615753, - 4913.3542074284405, - 5096.02765030169, - 5240.622808881644, - 5336.698721777773, - 5380.029256744429, - 5375.521579524331, - 5337.420330897793, - 5278.706683480131, - 5214.0985409796685, - 5153.188282175985, - 5097.429659861208, - 5042.6601787452455, - 4980.869087683993, - 4903.7525378541395, - 4807.363775538632, - 4692.79700154364, - 4568.588948678569, - 4447.011236550388, - 4340.739970105197, - 4259.469205664343, - 4207.193431812076, - 4180.265081870754, - 4169.880694725931, - 4166.070236206065, - 4159.620169723309, - 4147.486641504584, - 4133.267694785736, - 4125.673848864741, - 4135.803007585611, - 4171.923228028996, - 4236.696099290766, - 4324.990338000499, - 4423.818322407011, - 4520.437352951196, - 4605.612871551207, - 4681.536250393518, - 4766.735681665796, - 4896.185121885201, - 5118.364646829121, - 5486.548365475251, - 6043.18927742688, - 6824.248543073359, - 7829.107102616656, - 9032.381043699688 - ], - "flow:branch133_seg1:J110": [ - 0.6996133660109528, - 0.8974871766383758, - 1.1106088939876972, - 1.3282541768481297, - 1.5389385835583032, - 1.7332046098836171, - 1.9045460225241377, - 2.0500813997035165, - 2.168909146989288, - 2.2633038168822, - 2.3361172531999133, - 2.3894912825483363, - 2.4257957170419044, - 2.445493194823525, - 2.44862261009128, - 2.4353243681079224, - 2.4053538930326197, - 2.3602406141168766, - 2.3019253017100954, - 2.233032926710693, - 2.1569552672433927, - 2.0762270936047633, - 1.9930103121477987, - 1.9086298732165103, - 1.8236305240906954, - 1.7384584985776312, - 1.6536736230175955, - 1.570348347986945, - 1.4900514646864103, - 1.414542860971092, - 1.3450449703451852, - 1.2817867965847616, - 1.2234143335977206, - 1.1667586084839516, - 1.107541046915706, - 1.0409245395624123, - 0.9627844827753913, - 0.8705331549532104, - 0.7645304486251769, - 0.6474763979236378, - 0.5246921206150033, - 0.40310111633365975, - 0.28968654683913936, - 0.19046599724691193, - 0.10959343249558293, - 0.048874711246318855, - 0.007277667654413892, - -0.01716042239496403, - -0.027841800612159174, - -0.02807938579635156, - -0.020154481341703955, - -0.00600267523315237, - 0.013603431458240247, - 0.038042442335132286, - 0.06630801668552307, - 0.09709970326206063, - 0.12817355568774952, - 0.1568917878477248, - 0.18066513169946577, - 0.19756666913516094, - 0.20657757239497487, - 0.20817052786294463, - 0.2039322378111503, - 0.19588162621069521, - 0.18636468107547605, - 0.17696278080308578, - 0.1683053646755046, - 0.16006666103450307, - 0.1511650049158701, - 0.1403403257707555, - 0.1267305301413746, - 0.11026690149280492, - 0.0919280884534353, - 0.07333794860100235, - 0.05646446841237072, - 0.04295738662714921, - 0.033695942375468566, - 0.028442251560512933, - 0.026189913625878206, - 0.025391298783789235, - 0.024573862822027545, - 0.02301895427510488, - 0.02091772171225681, - 0.01935708051284157, - 0.01994221805952541, - 0.02408275998021206, - 0.032512120875739244, - 0.04475532213965122, - 0.059262051363033266, - 0.07407356242207273, - 0.08749110871153581, - 0.09927853436065864, - 0.11143376337547012, - 0.12844479562038968, - 0.15706268168795495, - 0.20498208296735893, - 0.27959704500415894, - 0.3865882598064601, - 0.5271166672166363, - 0.6996133660109528 - ], - "pressure:branch133_seg1:J110": [ - 8714.873970267969, - 10025.892659897145, - 11428.2318546845, - 12851.343189717101, - 14221.58314304206, - 15478.3214654906, - 16580.93843717062, - 17513.889623640036, - 18272.86260809304, - 18872.8421669088, - 19334.727336332668, - 19670.711917533947, - 19895.666755641334, - 20012.788771905478, - 20020.62840428032, - 19921.57962763041, - 19713.735377727586, - 19407.25736245785, - 19017.204991930157, - 18559.681306676626, - 18057.26467252953, - 17526.600807592364, - 16980.58435568195, - 16427.759247571834, - 15871.220059166255, - 15313.767369238058, - 14759.501209912889, - 14215.771291032426, - 13693.102513072672, - 13202.986423691724, - 12752.919665110569, - 12343.143692154968, - 11963.845179917282, - 11592.950155515908, - 11201.703458775222, - 10758.514892020698, - 10237.612119504134, - 9623.136963434776, - 8919.648988053046, - 8147.339222608718, - 7341.739182140389, - 6549.341443509679, - 5815.589973300829, - 5178.781651162047, - 4663.550865879609, - 4281.120669221737, - 4022.7011191825636, - 3873.8042348338804, - 3813.1883328976005, - 3818.2744226027467, - 3875.22992932715, - 3972.3414788134805, - 4104.247623408714, - 4267.541974439858, - 4455.019313189134, - 4657.579783447944, - 4860.314876285885, - 5045.5823034632, - 5196.638879159603, - 5301.697202458575, - 5354.945404192465, - 5360.105611708705, - 5328.881841903153, - 5274.321869636489, - 5211.502322327076, - 5150.468100044413, - 5094.383398809373, - 5040.421059162648, - 4981.208153159557, - 4908.51019045679, - 4817.299381579268, - 4707.664019860651, - 4586.725709558779, - 4465.634682754968, - 4357.1457739468715, - 4271.626568653435, - 4214.198124333681, - 4182.570745263493, - 4169.426675219548, - 4164.72948388416, - 4159.0244304988055, - 4148.210654766747, - 4134.352229181711, - 4125.087064434635, - 4131.084923670568, - 4161.194113761986, - 4219.4581199241165, - 4302.0761384875295, - 4397.9437818092965, - 4494.335714487098, - 4580.830028770694, - 4657.183732742143, - 4738.308663460773, - 4855.398766447905, - 5053.930620314101, - 5385.0609026671, - 5894.904038141314, - 6620.052219957801, - 7565.177749156537, - 8714.873970267969 - ], - "flow:J110:branch133_seg2": [ - 0.6996133660109528, - 0.8974871766383758, - 1.1106088939876972, - 1.3282541768481297, - 1.5389385835583032, - 1.7332046098836171, - 1.9045460225241377, - 2.0500813997035165, - 2.168909146989288, - 2.2633038168822, - 2.3361172531999133, - 2.3894912825483363, - 2.4257957170419044, - 2.445493194823525, - 2.44862261009128, - 2.4353243681079224, - 2.4053538930326197, - 2.3602406141168766, - 2.3019253017100954, - 2.233032926710693, - 2.1569552672433927, - 2.0762270936047633, - 1.9930103121477987, - 1.9086298732165103, - 1.8236305240906954, - 1.7384584985776312, - 1.6536736230175955, - 1.570348347986945, - 1.4900514646864103, - 1.414542860971092, - 1.3450449703451852, - 1.2817867965847616, - 1.2234143335977206, - 1.1667586084839516, - 1.107541046915706, - 1.0409245395624123, - 0.9627844827753913, - 0.8705331549532104, - 0.7645304486251769, - 0.6474763979236378, - 0.5246921206150033, - 0.40310111633365975, - 0.28968654683913936, - 0.19046599724691193, - 0.10959343249558293, - 0.048874711246318855, - 0.007277667654413892, - -0.01716042239496403, - -0.027841800612159174, - -0.02807938579635156, - -0.020154481341703955, - -0.00600267523315237, - 0.013603431458240247, - 0.038042442335132286, - 0.06630801668552307, - 0.09709970326206063, - 0.12817355568774952, - 0.1568917878477248, - 0.18066513169946577, - 0.19756666913516094, - 0.20657757239497487, - 0.20817052786294463, - 0.2039322378111503, - 0.19588162621069521, - 0.18636468107547605, - 0.17696278080308578, - 0.1683053646755046, - 0.16006666103450307, - 0.1511650049158701, - 0.1403403257707555, - 0.1267305301413746, - 0.11026690149280492, - 0.0919280884534353, - 0.07333794860100235, - 0.05646446841237072, - 0.04295738662714921, - 0.033695942375468566, - 0.028442251560512933, - 0.026189913625878206, - 0.025391298783789235, - 0.024573862822027545, - 0.02301895427510488, - 0.02091772171225681, - 0.01935708051284157, - 0.01994221805952541, - 0.02408275998021206, - 0.032512120875739244, - 0.04475532213965122, - 0.059262051363033266, - 0.07407356242207273, - 0.08749110871153581, - 0.09927853436065864, - 0.11143376337547012, - 0.12844479562038968, - 0.15706268168795495, - 0.20498208296735893, - 0.27959704500415894, - 0.3865882598064601, - 0.5271166672166363, - 0.6996133660109528 - ], - "pressure:J110:branch133_seg2": [ - 8714.873970267969, - 10025.892659897145, - 11428.2318546845, - 12851.343189717101, - 14221.58314304206, - 15478.3214654906, - 16580.93843717062, - 17513.889623640036, - 18272.86260809304, - 18872.8421669088, - 19334.727336332668, - 19670.711917533947, - 19895.666755641334, - 20012.788771905478, - 20020.62840428032, - 19921.57962763041, - 19713.735377727586, - 19407.25736245785, - 19017.204991930157, - 18559.681306676626, - 18057.26467252953, - 17526.600807592364, - 16980.58435568195, - 16427.759247571834, - 15871.220059166255, - 15313.767369238058, - 14759.501209912889, - 14215.771291032426, - 13693.102513072672, - 13202.986423691724, - 12752.919665110569, - 12343.143692154968, - 11963.845179917282, - 11592.950155515908, - 11201.703458775222, - 10758.514892020698, - 10237.612119504134, - 9623.136963434776, - 8919.648988053046, - 8147.339222608718, - 7341.739182140389, - 6549.341443509679, - 5815.589973300829, - 5178.781651162047, - 4663.550865879609, - 4281.120669221737, - 4022.7011191825636, - 3873.8042348338804, - 3813.1883328976005, - 3818.2744226027467, - 3875.22992932715, - 3972.3414788134805, - 4104.247623408714, - 4267.541974439858, - 4455.019313189134, - 4657.579783447944, - 4860.314876285885, - 5045.5823034632, - 5196.638879159603, - 5301.697202458575, - 5354.945404192465, - 5360.105611708705, - 5328.881841903153, - 5274.321869636489, - 5211.502322327076, - 5150.468100044413, - 5094.383398809373, - 5040.421059162648, - 4981.208153159557, - 4908.51019045679, - 4817.299381579268, - 4707.664019860651, - 4586.725709558779, - 4465.634682754968, - 4357.1457739468715, - 4271.626568653435, - 4214.198124333681, - 4182.570745263493, - 4169.426675219548, - 4164.72948388416, - 4159.0244304988055, - 4148.210654766747, - 4134.352229181711, - 4125.087064434635, - 4131.084923670568, - 4161.194113761986, - 4219.4581199241165, - 4302.0761384875295, - 4397.9437818092965, - 4494.335714487098, - 4580.830028770694, - 4657.183732742143, - 4738.308663460773, - 4855.398766447905, - 5053.930620314101, - 5385.0609026671, - 5894.904038141314, - 6620.052219957801, - 7565.177749156537, - 8714.873970267969 - ], - "flow:branch134_seg0:J111": [ - 0.5271135340814403, - 0.678930472185504, - 0.843826860991603, - 1.0134588506556703, - 1.1788634434802727, - 1.3324590902625466, - 1.4688458052755844, - 1.5853363195533017, - 1.6810208865621405, - 1.7574222364495313, - 1.8166125061039127, - 1.8604131314738983, - 1.8906710506040125, - 1.9078919845245326, - 1.9122158821612762, - 1.9036781281875992, - 1.8821319291136764, - 1.848610255036039, - 1.8045099043699746, - 1.7518712528726612, - 1.6932498520494326, - 1.630700866674887, - 1.5659944825324488, - 1.500234117961289, - 1.4339319118255864, - 1.3674471444166454, - 1.301190675635734, - 1.2359462978699516, - 1.1728866793148767, - 1.1133693990964344, - 1.0584139612510486, - 1.0083285622893905, - 0.9622184597094475, - 0.9178160053870196, - 0.8718993022428398, - 0.8207327223763909, - 0.7609964740779817, - 0.6905029272049319, - 0.6092039431627769, - 0.5189229488733437, - 0.423577156581527, - 0.3283881983284426, - 0.23881643038001926, - 0.15969034929265488, - 0.094487087468056, - 0.044833468211159834, - 0.010254117527418402, - -0.010667372826815591, - -0.020506805430190646, - -0.02181346614121694, - -0.0165110808517905, - -0.006163110056203328, - 0.008541180638342657, - 0.027070713962360386, - 0.048709890363288114, - 0.07248530028366194, - 0.09672930346355547, - 0.11943511351349853, - 0.13856652079560122, - 0.15253183034839962, - 0.16042928895846345, - 0.16248216401713306, - 0.1597835306069258, - 0.15388318670543533, - 0.14659525098365725, - 0.13922656206127593, - 0.13238704535515328, - 0.12592550345170447, - 0.1190698375247934, - 0.11085002684369068, - 0.1005380051465042, - 0.08799386814617548, - 0.07386433928123001, - 0.05934719435657096, - 0.04595656588101171, - 0.03502154032576591, - 0.027315700354332676, - 0.02277756281656773, - 0.020710534639112134, - 0.01994420689495631, - 0.019320918248339602, - 0.018192050732830048, - 0.01659953655659625, - 0.015299268388281053, - 0.015495371219057657, - 0.018318950838233674, - 0.024427259980246543, - 0.03357528574500084, - 0.04467947952745958, - 0.0562403058859883, - 0.06688448809259567, - 0.07626081754616225, - 0.08567465628650395, - 0.09835647646001758, - 0.11934027944116471, - 0.15453553871142428, - 0.20981284616255502, - 0.2897579918531473, - 0.39580874949070105, - 0.5271135340814403 - ], - "pressure:branch134_seg0:J111": [ - 8629.391393357322, - 9922.198040601008, - 11308.25614815702, - 12717.498558842159, - 14077.433226848334, - 15327.321879391075, - 16426.113934568242, - 17357.56979863043, - 18116.84871449903, - 18717.902232207805, - 19181.53543180698, - 19519.86791085337, - 19747.4847547402, - 19868.257623325164, - 19880.604067375647, - 19787.127336996153, - 19585.922378269475, - 19286.27342519961, - 18903.497845195703, - 18453.06571252821, - 17957.099204121412, - 17432.524127575143, - 16892.071140207056, - 16344.504241762213, - 15793.121982951045, - 15240.672893484547, - 14691.229938726688, - 14151.93103839669, - 13633.05483489427, - 13145.94579943351, - 12698.176780651613, - 12290.222909258371, - 11912.78574082681, - 11544.490712223058, - 11157.101672515091, - 10719.476752640661, - 10206.001009200227, - 9600.455283440959, - 8906.575255200005, - 8143.92679658488, - 7346.844922269158, - 6561.061369057219, - 5831.583402072997, - 5196.717919136573, - 4681.058424083875, - 4296.597342709967, - 4035.4710532310582, - 3883.209467666601, - 3819.455890312949, - 3821.6475574118253, - 3875.7372309816865, - 3970.2261284359965, - 4099.332959984432, - 4259.679881093425, - 4444.301963322276, - 4644.196622920924, - 4844.894346062076, - 5029.006272226358, - 5179.907727947206, - 5285.782960913844, - 5340.6077931006, - 5347.622600026759, - 5318.256617942924, - 5265.228784329386, - 5203.355243151425, - 5142.859101223232, - 5087.108009244236, - 5033.536341662093, - 4975.056559477454, - 4903.536091065485, - 4813.921927803715, - 4706.061063298628, - 4586.698183877582, - 4466.766396682812, - 4358.788651555589, - 4273.121208517246, - 4215.0530018010795, - 4182.642509540098, - 4168.804880746305, - 4163.747027575409, - 4158.102137784134, - 4147.573640938682, - 4133.983355456273, - 4124.660312950389, - 4130.035807621077, - 4158.9201844743875, - 4215.497731901323, - 4296.363619905777, - 4390.73431677814, - 4486.168222068773, - 4572.2930181248585, - 4648.488568547642, - 4728.930126426053, - 4843.8849823539185, - 5037.77323523399, - 5361.223606116973, - 5859.665322233993, - 6569.892640931727, - 7498.245848982881, - 8629.391393357322 - ], - "flow:J111:branch134_seg1": [ - 0.5271135340814403, - 0.678930472185504, - 0.843826860991603, - 1.0134588506556703, - 1.1788634434802727, - 1.3324590902625466, - 1.4688458052755844, - 1.5853363195533017, - 1.6810208865621405, - 1.7574222364495313, - 1.8166125061039127, - 1.8604131314738983, - 1.8906710506040125, - 1.9078919845245326, - 1.9122158821612762, - 1.9036781281875992, - 1.8821319291136764, - 1.848610255036039, - 1.8045099043699746, - 1.7518712528726612, - 1.6932498520494326, - 1.630700866674887, - 1.5659944825324488, - 1.500234117961289, - 1.4339319118255864, - 1.3674471444166454, - 1.301190675635734, - 1.2359462978699516, - 1.1728866793148767, - 1.1133693990964344, - 1.0584139612510486, - 1.0083285622893905, - 0.9622184597094475, - 0.9178160053870196, - 0.8718993022428398, - 0.8207327223763909, - 0.7609964740779817, - 0.6905029272049319, - 0.6092039431627769, - 0.5189229488733437, - 0.423577156581527, - 0.3283881983284426, - 0.23881643038001926, - 0.15969034929265488, - 0.094487087468056, - 0.044833468211159834, - 0.010254117527418402, - -0.010667372826815591, - -0.020506805430190646, - -0.02181346614121694, - -0.0165110808517905, - -0.006163110056203328, - 0.008541180638342657, - 0.027070713962360386, - 0.048709890363288114, - 0.07248530028366194, - 0.09672930346355547, - 0.11943511351349853, - 0.13856652079560122, - 0.15253183034839962, - 0.16042928895846345, - 0.16248216401713306, - 0.1597835306069258, - 0.15388318670543533, - 0.14659525098365725, - 0.13922656206127593, - 0.13238704535515328, - 0.12592550345170447, - 0.1190698375247934, - 0.11085002684369068, - 0.1005380051465042, - 0.08799386814617548, - 0.07386433928123001, - 0.05934719435657096, - 0.04595656588101171, - 0.03502154032576591, - 0.027315700354332676, - 0.02277756281656773, - 0.020710534639112134, - 0.01994420689495631, - 0.019320918248339602, - 0.018192050732830048, - 0.01659953655659625, - 0.015299268388281053, - 0.015495371219057657, - 0.018318950838233674, - 0.024427259980246543, - 0.03357528574500084, - 0.04467947952745958, - 0.0562403058859883, - 0.06688448809259567, - 0.07626081754616225, - 0.08567465628650395, - 0.09835647646001758, - 0.11934027944116471, - 0.15453553871142428, - 0.20981284616255502, - 0.2897579918531473, - 0.39580874949070105, - 0.5271135340814403 - ], - "pressure:J111:branch134_seg1": [ - 8629.391393357322, - 9922.198040601008, - 11308.25614815702, - 12717.498558842159, - 14077.433226848334, - 15327.321879391075, - 16426.113934568242, - 17357.56979863043, - 18116.84871449903, - 18717.902232207805, - 19181.53543180698, - 19519.86791085337, - 19747.4847547402, - 19868.257623325164, - 19880.604067375647, - 19787.127336996153, - 19585.922378269475, - 19286.27342519961, - 18903.497845195703, - 18453.06571252821, - 17957.099204121412, - 17432.524127575143, - 16892.071140207056, - 16344.504241762213, - 15793.121982951045, - 15240.672893484547, - 14691.229938726688, - 14151.93103839669, - 13633.05483489427, - 13145.94579943351, - 12698.176780651613, - 12290.222909258371, - 11912.78574082681, - 11544.490712223058, - 11157.101672515091, - 10719.476752640661, - 10206.001009200227, - 9600.455283440959, - 8906.575255200005, - 8143.92679658488, - 7346.844922269158, - 6561.061369057219, - 5831.583402072997, - 5196.717919136573, - 4681.058424083875, - 4296.597342709967, - 4035.4710532310582, - 3883.209467666601, - 3819.455890312949, - 3821.6475574118253, - 3875.7372309816865, - 3970.2261284359965, - 4099.332959984432, - 4259.679881093425, - 4444.301963322276, - 4644.196622920924, - 4844.894346062076, - 5029.006272226358, - 5179.907727947206, - 5285.782960913844, - 5340.6077931006, - 5347.622600026759, - 5318.256617942924, - 5265.228784329386, - 5203.355243151425, - 5142.859101223232, - 5087.108009244236, - 5033.536341662093, - 4975.056559477454, - 4903.536091065485, - 4813.921927803715, - 4706.061063298628, - 4586.698183877582, - 4466.766396682812, - 4358.788651555589, - 4273.121208517246, - 4215.0530018010795, - 4182.642509540098, - 4168.804880746305, - 4163.747027575409, - 4158.102137784134, - 4147.573640938682, - 4133.983355456273, - 4124.660312950389, - 4130.035807621077, - 4158.9201844743875, - 4215.497731901323, - 4296.363619905777, - 4390.73431677814, - 4486.168222068773, - 4572.2930181248585, - 4648.488568547642, - 4728.930126426053, - 4843.8849823539185, - 5037.77323523399, - 5361.223606116973, - 5859.665322233993, - 6569.892640931727, - 7498.245848982881, - 8629.391393357322 - ], - "flow:branch134_seg1:J112": [ - 0.5262883320466905, - 0.678016979531089, - 0.8428704851975977, - 1.0125152401279394, - 1.1779754735130001, - 1.331659334680077, - 1.4681558551617446, - 1.584766129696258, - 1.6805599871484707, - 1.7570639013738323, - 1.816343061752214, - 1.860220860380144, - 1.890554275764473, - 1.9078463519266784, - 1.9122439156927247, - 1.9037785415832829, - 1.8823018732259598, - 1.848845818078366, - 1.8047946728749193, - 1.7521933864594854, - 1.6935982827085116, - 1.6310623739867303, - 1.5663635060315961, - 1.5006065634404067, - 1.4343055668998614, - 1.3678208281367663, - 1.3015602223936318, - 1.2363056054658326, - 1.1732282407952865, - 1.113686753930386, - 1.0587027654402323, - 1.0085928343550783, - 0.9624685261163263, - 0.9180678713140857, - 0.8721747308931357, - 0.8210523193562789, - 0.7613738072297191, - 0.6909433399938111, - 0.609701282128415, - 0.5194556595028952, - 0.424118215849316, - 0.3289069057367892, - 0.239282086699206, - 0.16007880585535766, - 0.09479213127564327, - 0.045050848416462036, - 0.010388805601457999, - -0.01059609840769611, - -0.020488995670441556, - -0.02183474301756715, - -0.016561078610238637, - -0.00624049820450307, - 0.008442919796899066, - 0.026953818554814036, - 0.048577939430432586, - 0.07234819051981696, - 0.0965971930977658, - 0.11931963677825878, - 0.13847833080699434, - 0.15247742742136508, - 0.1604086418924501, - 0.16249136579372883, - 0.1598134583291166, - 0.1539232126027534, - 0.1466377171376603, - 0.1392661259395696, - 0.13242326409976818, - 0.1259624066224765, - 0.11911301110730425, - 0.11090470458137172, - 0.10060521865193782, - 0.08807169609076147, - 0.07394710202263528, - 0.0594256959792581, - 0.046022744573931185, - 0.03507032630788276, - 0.027346116449882184, - 0.022791655948735896, - 0.020715891362237095, - 0.019947329836556185, - 0.019326073872703804, - 0.01820074853523617, - 0.016608428975720936, - 0.015301917567431999, - 0.015484705671719152, - 0.018290035195606128, - 0.024380133895557318, - 0.03351437970093092, - 0.04461347034165786, - 0.056178216433686756, - 0.0668303835983356, - 0.07621039023716442, - 0.0856128143714346, - 0.09825745553955532, - 0.1191713288311929, - 0.15425821785578753, - 0.2094065952131456, - 0.2892052344014818, - 0.39510164106473533, - 0.5262883320466905 - ], - "pressure:branch134_seg1:J112": [ - 8450.165225210787, - 9713.13889359163, - 11076.36135944203, - 12470.947217041552, - 13824.094246125249, - 15074.500983145177, - 16179.58004342219, - 17120.172424083226, - 17889.966481285825, - 18502.166213071887, - 18975.53532978151, - 19323.55815660678, - 19561.127307647548, - 19692.216410884208, - 19716.662842662477, - 19635.88480046988, - 19448.31493973283, - 19162.777458803233, - 18792.51191625785, - 18353.58194609342, - 17867.445973151473, - 17350.911702670248, - 16817.60940759024, - 16276.424541067006, - 15731.108146476347, - 15184.503554791892, - 14640.292253297945, - 14105.212467948255, - 13589.158546936676, - 13103.3333591802, - 12655.688802786855, - 12247.793244743814, - 11871.416569572633, - 11506.705109979746, - 11126.490138039673, - 10699.99974404735, - 10200.86396760561, - 9611.997244656965, - 8934.963884143606, - 8186.8230126406725, - 7400.61463855139, - 6620.405828947343, - 5890.904447847686, - 5250.965441832926, - 4727.180316011324, - 4332.191248809235, - 4060.2252736300497, - 3898.4073749514105, - 3826.010568257061, - 3821.4232190801895, - 3869.7573270366474, - 3958.829362933295, - 4082.986436638302, - 4238.339368969405, - 4418.511922251302, - 4615.098864668294, - 4814.0878085058575, - 4998.637416876475, - 5152.1450070798655, - 5262.192520861599, - 5322.038759571294, - 5334.175363817117, - 5308.7157795842195, - 5258.304790735149, - 5197.754158905266, - 5137.513050177713, - 5081.791181422599, - 5028.732319669613, - 4971.668704743955, - 4902.585893738845, - 4815.959464882013, - 4711.115209551429, - 4594.0187476802685, - 4474.976634083117, - 4366.416967183995, - 4278.950199346854, - 4218.404939685417, - 4183.590337544005, - 4168.181659196269, - 4162.512824925157, - 4157.173887148676, - 4147.351551149436, - 4134.082680771243, - 4124.076619048515, - 4127.439235477236, - 4153.194648218975, - 4206.154058018825, - 4283.660275266417, - 4375.953314259988, - 4470.719930840606, - 4557.144122022315, - 4633.4104761628405, - 4711.813722415163, - 4820.525440868972, - 5002.159132712275, - 5306.015010765135, - 5778.832995517465, - 6457.689624546671, - 7351.717786997341, - 8450.165225210787 - ], - "flow:J112:branch134_seg2": [ - 0.5262883320466905, - 0.678016979531089, - 0.8428704851975977, - 1.0125152401279394, - 1.1779754735130001, - 1.331659334680077, - 1.4681558551617446, - 1.584766129696258, - 1.6805599871484707, - 1.7570639013738323, - 1.816343061752214, - 1.860220860380144, - 1.890554275764473, - 1.9078463519266784, - 1.9122439156927247, - 1.9037785415832829, - 1.8823018732259598, - 1.848845818078366, - 1.8047946728749193, - 1.7521933864594854, - 1.6935982827085116, - 1.6310623739867303, - 1.5663635060315961, - 1.5006065634404067, - 1.4343055668998614, - 1.3678208281367663, - 1.3015602223936318, - 1.2363056054658326, - 1.1732282407952865, - 1.113686753930386, - 1.0587027654402323, - 1.0085928343550783, - 0.9624685261163263, - 0.9180678713140857, - 0.8721747308931357, - 0.8210523193562789, - 0.7613738072297191, - 0.6909433399938111, - 0.609701282128415, - 0.5194556595028952, - 0.424118215849316, - 0.3289069057367892, - 0.239282086699206, - 0.16007880585535766, - 0.09479213127564327, - 0.045050848416462036, - 0.010388805601457999, - -0.01059609840769611, - -0.020488995670441556, - -0.02183474301756715, - -0.016561078610238637, - -0.00624049820450307, - 0.008442919796899066, - 0.026953818554814036, - 0.048577939430432586, - 0.07234819051981696, - 0.0965971930977658, - 0.11931963677825878, - 0.13847833080699434, - 0.15247742742136508, - 0.1604086418924501, - 0.16249136579372883, - 0.1598134583291166, - 0.1539232126027534, - 0.1466377171376603, - 0.1392661259395696, - 0.13242326409976818, - 0.1259624066224765, - 0.11911301110730425, - 0.11090470458137172, - 0.10060521865193782, - 0.08807169609076147, - 0.07394710202263528, - 0.0594256959792581, - 0.046022744573931185, - 0.03507032630788276, - 0.027346116449882184, - 0.022791655948735896, - 0.020715891362237095, - 0.019947329836556185, - 0.019326073872703804, - 0.01820074853523617, - 0.016608428975720936, - 0.015301917567431999, - 0.015484705671719152, - 0.018290035195606128, - 0.024380133895557318, - 0.03351437970093092, - 0.04461347034165786, - 0.056178216433686756, - 0.0668303835983356, - 0.07621039023716442, - 0.0856128143714346, - 0.09825745553955532, - 0.1191713288311929, - 0.15425821785578753, - 0.2094065952131456, - 0.2892052344014818, - 0.39510164106473533, - 0.5262883320466905 - ], - "pressure:J112:branch134_seg2": [ - 8450.165225210787, - 9713.13889359163, - 11076.36135944203, - 12470.947217041552, - 13824.094246125249, - 15074.500983145177, - 16179.58004342219, - 17120.172424083226, - 17889.966481285825, - 18502.166213071887, - 18975.53532978151, - 19323.55815660678, - 19561.127307647548, - 19692.216410884208, - 19716.662842662477, - 19635.88480046988, - 19448.31493973283, - 19162.777458803233, - 18792.51191625785, - 18353.58194609342, - 17867.445973151473, - 17350.911702670248, - 16817.60940759024, - 16276.424541067006, - 15731.108146476347, - 15184.503554791892, - 14640.292253297945, - 14105.212467948255, - 13589.158546936676, - 13103.3333591802, - 12655.688802786855, - 12247.793244743814, - 11871.416569572633, - 11506.705109979746, - 11126.490138039673, - 10699.99974404735, - 10200.86396760561, - 9611.997244656965, - 8934.963884143606, - 8186.8230126406725, - 7400.61463855139, - 6620.405828947343, - 5890.904447847686, - 5250.965441832926, - 4727.180316011324, - 4332.191248809235, - 4060.2252736300497, - 3898.4073749514105, - 3826.010568257061, - 3821.4232190801895, - 3869.7573270366474, - 3958.829362933295, - 4082.986436638302, - 4238.339368969405, - 4418.511922251302, - 4615.098864668294, - 4814.0878085058575, - 4998.637416876475, - 5152.1450070798655, - 5262.192520861599, - 5322.038759571294, - 5334.175363817117, - 5308.7157795842195, - 5258.304790735149, - 5197.754158905266, - 5137.513050177713, - 5081.791181422599, - 5028.732319669613, - 4971.668704743955, - 4902.585893738845, - 4815.959464882013, - 4711.115209551429, - 4594.0187476802685, - 4474.976634083117, - 4366.416967183995, - 4278.950199346854, - 4218.404939685417, - 4183.590337544005, - 4168.181659196269, - 4162.512824925157, - 4157.173887148676, - 4147.351551149436, - 4134.082680771243, - 4124.076619048515, - 4127.439235477236, - 4153.194648218975, - 4206.154058018825, - 4283.660275266417, - 4375.953314259988, - 4470.719930840606, - 4557.144122022315, - 4633.4104761628405, - 4711.813722415163, - 4820.525440868972, - 5002.159132712275, - 5306.015010765135, - 5778.832995517465, - 6457.689624546671, - 7351.717786997341, - 8450.165225210787 - ], - "flow:branch138_seg0:J113": [ - 1.483430309144912, - 1.9016675483600232, - 2.351534441814228, - 2.809737653081795, - 3.2522436889014523, - 3.6592310163258177, - 4.017124809231392, - 4.319826579650248, - 4.566344756998147, - 4.761297698413377, - 4.910912988832974, - 5.020139736395265, - 5.0936342084438735, - 5.132605015953004, - 5.13702507922238, - 5.107006805383784, - 5.042196978200436, - 4.945655308735894, - 4.821594589928707, - 4.675632240396301, - 4.514789464043845, - 4.344546901042151, - 4.169388786653602, - 3.9920168338876314, - 3.8135623812486044, - 3.63486829127981, - 3.457097317821368, - 3.2824943067659875, - 3.1143666656041695, - 2.9563908584321736, - 2.8111854068328754, - 2.6791259950781425, - 2.5572731107290863, - 2.438922636496676, - 2.31490016776552, - 2.1749563631008697, - 2.010403325917616, - 1.8159248582844298, - 1.5922811865475075, - 1.3454839684605746, - 1.0869219280821443, - 0.8312572649134288, - 0.5933999992345593, - 0.3860430508707623, - 0.2177251895435933, - 0.09216894587801117, - 0.00710252128488039, - -0.042034314595610744, - -0.06243104428121764, - -0.061118110924774156, - -0.04307832029536923, - -0.012166941741485849, - 0.02988618500389345, - 0.08186417234206957, - 0.1417969955905545, - 0.20681236295081318, - 0.2722491263137142, - 0.3325350848286901, - 0.3821992137801778, - 0.4171564733817539, - 0.4354273730389505, - 0.43801257464565196, - 0.42831849038885006, - 0.410780201981237, - 0.39030871667928285, - 0.37026277327050433, - 0.35195893779698145, - 0.3346212229138407, - 0.3159062665536035, - 0.2931076667205052, - 0.26440201946148406, - 0.22965339613440922, - 0.19094886899617886, - 0.15180119340425197, - 0.11638679908881502, - 0.088187152128845, - 0.0690222709429738, - 0.05839242211439768, - 0.05404289168265638, - 0.05267904964056056, - 0.0511998915759804, - 0.04805757858385686, - 0.04369575673470263, - 0.04046907173881463, - 0.04179764712993033, - 0.050706816056873084, - 0.06868888496535855, - 0.09473024022016466, - 0.1255225914606178, - 0.1568381853221118, - 0.18511201778806705, - 0.20988809231976094, - 0.235472698316285, - 0.27145914111321345, - 0.332230933320526, - 0.4341780236153183, - 0.5927542041325581, - 0.8199127450742267, - 1.1181941065145393, - 1.483430309144912 - ], - "pressure:branch138_seg0:J113": [ - 9541.402045383782, - 10977.750867142242, - 12468.02596427147, - 13936.11071281438, - 15312.012031257957, - 16539.64666863728, - 17586.728911002363, - 18451.624898643982, - 19140.653610559817, - 19669.571466753616, - 20069.82800490692, - 20347.681531774873, - 20514.857042267984, - 20575.09315690463, - 20519.679023835397, - 20356.176547392104, - 20081.968598412914, - 19709.173212624162, - 19262.419265968423, - 18755.168771818433, - 18212.431796110075, - 17651.269915136385, - 17079.830153415394, - 16505.6822786917, - 15929.723799328207, - 15354.196769144764, - 14785.119138874717, - 14231.656898923426, - 13706.053801532278, - 13219.986340678004, - 12779.102060217117, - 12377.672764025418, - 12000.778949742931, - 11619.238143458684, - 11199.408374168548, - 10708.507034732585, - 10125.088753024249, - 9438.487280169533, - 8663.66507044153, - 7833.468598577855, - 6989.440800772587, - 6185.114129851915, - 5467.057948031465, - 4869.685010250576, - 4407.268155147125, - 4087.3379622483753, - 3890.6041750184277, - 3794.645720126511, - 3780.4565349029385, - 3821.319371072791, - 3907.531358787889, - 4031.3698052074833, - 4186.416039225162, - 4372.229563673166, - 4578.87910181517, - 4794.017616874754, - 5001.114749929927, - 5180.123005498944, - 5314.621754701242, - 5395.853149592756, - 5422.416480644409, - 5401.281682831932, - 5350.364319969105, - 5283.361649532202, - 5214.7582825521795, - 5153.271258905421, - 5097.862696385149, - 5042.124127262864, - 4976.712327559008, - 4893.025830832915, - 4788.487385772161, - 4665.831342229724, - 4535.980633867625, - 4413.029318169092, - 4309.883832513475, - 4235.385457695717, - 4191.742484358623, - 4173.091205322208, - 4168.1678866219445, - 4166.750635318921, - 4159.814682457306, - 4145.920059797169, - 4131.019952355298, - 4125.724147289862, - 4142.020476025908, - 4187.6064754589, - 4263.008480181303, - 4360.891501351285, - 4465.414900406863, - 4563.252443413108, - 4646.671973238763, - 4721.546218982136, - 4812.140596414905, - 4959.568972687276, - 5217.7509918721735, - 5643.209524662115, - 6274.476623340654, - 7146.235910577662, - 8248.24455823191, - 9541.402045383782 - ], - "flow:J113:branch138_seg1": [ - 1.483430309144912, - 1.9016675483600232, - 2.351534441814228, - 2.809737653081795, - 3.2522436889014523, - 3.6592310163258177, - 4.017124809231392, - 4.319826579650248, - 4.566344756998147, - 4.761297698413377, - 4.910912988832974, - 5.020139736395265, - 5.0936342084438735, - 5.132605015953004, - 5.13702507922238, - 5.107006805383784, - 5.042196978200436, - 4.945655308735894, - 4.821594589928707, - 4.675632240396301, - 4.514789464043845, - 4.344546901042151, - 4.169388786653602, - 3.9920168338876314, - 3.8135623812486044, - 3.63486829127981, - 3.457097317821368, - 3.2824943067659875, - 3.1143666656041695, - 2.9563908584321736, - 2.8111854068328754, - 2.6791259950781425, - 2.5572731107290863, - 2.438922636496676, - 2.31490016776552, - 2.1749563631008697, - 2.010403325917616, - 1.8159248582844298, - 1.5922811865475075, - 1.3454839684605746, - 1.0869219280821443, - 0.8312572649134288, - 0.5933999992345593, - 0.3860430508707623, - 0.2177251895435933, - 0.09216894587801117, - 0.00710252128488039, - -0.042034314595610744, - -0.06243104428121764, - -0.061118110924774156, - -0.04307832029536923, - -0.012166941741485849, - 0.02988618500389345, - 0.08186417234206957, - 0.1417969955905545, - 0.20681236295081318, - 0.2722491263137142, - 0.3325350848286901, - 0.3821992137801778, - 0.4171564733817539, - 0.4354273730389505, - 0.43801257464565196, - 0.42831849038885006, - 0.410780201981237, - 0.39030871667928285, - 0.37026277327050433, - 0.35195893779698145, - 0.3346212229138407, - 0.3159062665536035, - 0.2931076667205052, - 0.26440201946148406, - 0.22965339613440922, - 0.19094886899617886, - 0.15180119340425197, - 0.11638679908881502, - 0.088187152128845, - 0.0690222709429738, - 0.05839242211439768, - 0.05404289168265638, - 0.05267904964056056, - 0.0511998915759804, - 0.04805757858385686, - 0.04369575673470263, - 0.04046907173881463, - 0.04179764712993033, - 0.050706816056873084, - 0.06868888496535855, - 0.09473024022016466, - 0.1255225914606178, - 0.1568381853221118, - 0.18511201778806705, - 0.20988809231976094, - 0.235472698316285, - 0.27145914111321345, - 0.332230933320526, - 0.4341780236153183, - 0.5927542041325581, - 0.8199127450742267, - 1.1181941065145393, - 1.483430309144912 - ], - "pressure:J113:branch138_seg1": [ - 9541.402045383782, - 10977.750867142242, - 12468.02596427147, - 13936.11071281438, - 15312.012031257957, - 16539.64666863728, - 17586.728911002363, - 18451.624898643982, - 19140.653610559817, - 19669.571466753616, - 20069.82800490692, - 20347.681531774873, - 20514.857042267984, - 20575.09315690463, - 20519.679023835397, - 20356.176547392104, - 20081.968598412914, - 19709.173212624162, - 19262.419265968423, - 18755.168771818433, - 18212.431796110075, - 17651.269915136385, - 17079.830153415394, - 16505.6822786917, - 15929.723799328207, - 15354.196769144764, - 14785.119138874717, - 14231.656898923426, - 13706.053801532278, - 13219.986340678004, - 12779.102060217117, - 12377.672764025418, - 12000.778949742931, - 11619.238143458684, - 11199.408374168548, - 10708.507034732585, - 10125.088753024249, - 9438.487280169533, - 8663.66507044153, - 7833.468598577855, - 6989.440800772587, - 6185.114129851915, - 5467.057948031465, - 4869.685010250576, - 4407.268155147125, - 4087.3379622483753, - 3890.6041750184277, - 3794.645720126511, - 3780.4565349029385, - 3821.319371072791, - 3907.531358787889, - 4031.3698052074833, - 4186.416039225162, - 4372.229563673166, - 4578.87910181517, - 4794.017616874754, - 5001.114749929927, - 5180.123005498944, - 5314.621754701242, - 5395.853149592756, - 5422.416480644409, - 5401.281682831932, - 5350.364319969105, - 5283.361649532202, - 5214.7582825521795, - 5153.271258905421, - 5097.862696385149, - 5042.124127262864, - 4976.712327559008, - 4893.025830832915, - 4788.487385772161, - 4665.831342229724, - 4535.980633867625, - 4413.029318169092, - 4309.883832513475, - 4235.385457695717, - 4191.742484358623, - 4173.091205322208, - 4168.1678866219445, - 4166.750635318921, - 4159.814682457306, - 4145.920059797169, - 4131.019952355298, - 4125.724147289862, - 4142.020476025908, - 4187.6064754589, - 4263.008480181303, - 4360.891501351285, - 4465.414900406863, - 4563.252443413108, - 4646.671973238763, - 4721.546218982136, - 4812.140596414905, - 4959.568972687276, - 5217.7509918721735, - 5643.209524662115, - 6274.476623340654, - 7146.235910577662, - 8248.24455823191, - 9541.402045383782 - ], - "flow:branch138_seg1:J114": [ - 1.4766064410083273, - 1.8944050523559073, - 2.344116499663436, - 2.8026744308430254, - 3.2458225180722104, - 3.6536167552108987, - 4.012391767104587, - 4.316105687126111, - 4.563346792199979, - 4.759017226175378, - 4.909286773877049, - 5.01901103716946, - 5.093089528101671, - 5.132581099664156, - 5.137543317917272, - 5.108094663622106, - 5.043771696906147, - 4.947693539239637, - 4.823967947323406, - 4.678217499346735, - 4.517530549694315, - 4.347349571552868, - 4.172213601295339, - 3.994859488298721, - 3.8164038580666935, - 3.6376998785687036, - 3.4598778331463778, - 3.2851649718185434, - 3.116861742374192, - 2.958679209952326, - 2.8132411015989818, - 2.681018652602555, - 2.5591261701986756, - 2.440870213573699, - 2.317120006619115, - 2.177599978774113, - 2.013547494745599, - 1.8195271290776986, - 1.5962833375420604, - 1.349653049005428, - 1.0910149765692492, - 0.8350589754911822, - 0.5966854308860756, - 0.3886510455183025, - 0.21966722253400134, - 0.09345136231415126, - 0.007780474365371506, - -0.04178405034347302, - -0.06250931986152942, - -0.061461257062384436, - -0.043591630776210546, - -0.012879313087169837, - 0.02902867978723052, - 0.08089637829236378, - 0.14072726465254812, - 0.20575491962839312, - 0.2712858188706251, - 0.331751715600223, - 0.3816591972432015, - 0.41691358130249656, - 0.43541798189500824, - 0.4381963380920083, - 0.4286303934284061, - 0.41111613008139763, - 0.3906301540534185, - 0.370552203437559, - 0.35222461860729193, - 0.33491035558656723, - 0.3162674710294609, - 0.2935744485282808, - 0.26496672447614594, - 0.23028328974486123, - 0.19158920189733425, - 0.15237087318477296, - 0.11682610863828458, - 0.08847210337029923, - 0.0691709108029825, - 0.05842860552570299, - 0.054045379548039375, - 0.052700418167520066, - 0.05125258716010611, - 0.04813506553459855, - 0.043756440148834425, - 0.04044931268355222, - 0.04165055751296051, - 0.05039717578620503, - 0.06825522615278241, - 0.09422285885393836, - 0.1250093879413933, - 0.15639081915484587, - 0.18473565581716833, - 0.20950763038997702, - 0.2349244698397686, - 0.2705121817961607, - 0.3306063489919268, - 0.43157925048334483, - 0.5890741831276286, - 0.815064556490517, - 1.1121579940493724, - 1.4766064410083273 - ], - "pressure:branch138_seg1:J114": [ - 9043.098111837591, - 10412.030168427149, - 11860.344653972128, - 13314.22162792764, - 14700.065228456902, - 15957.931423786382, - 17049.64290397006, - 17964.46506529812, - 18701.91895528455, - 19278.278963033397, - 19718.40878114245, - 20033.15794955947, - 20236.646651854724, - 20332.18133814989, - 20315.892692713875, - 20191.65011077098, - 19957.18015952084, - 19623.301079530065, - 19208.48936641719, - 18728.22171527107, - 18206.16381609528, - 17659.429891762065, - 17099.44380402667, - 16534.457979124927, - 15966.745029074857, - 15398.777890357782, - 14835.214014084191, - 14284.019304988844, - 13756.399018029704, - 13264.110727017594, - 12814.17912618299, - 12404.942869736968, - 12024.711750256363, - 11648.726196319036, - 11246.047105151865, - 10784.151969439445, - 10238.218681339711, - 9593.870072604415, - 8859.269044252589, - 8059.226578545078, - 7232.030403193558, - 6427.357483129089, - 5691.840075137662, - 5063.126610863295, - 4562.6058779344585, - 4200.233370790011, - 3963.4762638287502, - 3834.4870943623005, - 3792.3163766887096, - 3812.453479911863, - 3882.1298147482685, - 3990.9108917111867, - 4133.109526097751, - 4306.41537238743, - 4502.832234546072, - 4712.153942661343, - 4918.75937183762, - 5103.978273031816, - 5250.884576176322, - 5348.545796873014, - 5392.492939093384, - 5387.751784363309, - 5348.326271379651, - 5287.843043472672, - 5221.501872987394, - 5159.120053854725, - 5102.507674731009, - 5047.52283039522, - 4985.9118537769245, - 4909.062205382573, - 4812.596966310967, - 4697.437354609009, - 4572.0667415695, - 4448.863578806045, - 4340.909033460048, - 4258.28385019283, - 4205.247844071173, - 4178.268592511905, - 4168.519205136803, - 4165.614545848926, - 4160.021125609819, - 4148.369074657686, - 4134.056127275194, - 4125.8820566249215, - 4135.2275937965305, - 4170.782556723072, - 4235.588356673316, - 4324.578027874503, - 4424.865097863534, - 4523.198792346877, - 4609.761501291597, - 4686.226513723905, - 4770.75990529978, - 4898.360930685807, - 5118.012355116952, - 5483.62364679124, - 6039.480374244969, - 6821.977966298584, - 7831.2167794767465, - 9043.098111837591 - ], - "flow:J114:branch138_seg2": [ - 1.4766064410083273, - 1.8944050523559073, - 2.344116499663436, - 2.8026744308430254, - 3.2458225180722104, - 3.6536167552108987, - 4.012391767104587, - 4.316105687126111, - 4.563346792199979, - 4.759017226175378, - 4.909286773877049, - 5.01901103716946, - 5.093089528101671, - 5.132581099664156, - 5.137543317917272, - 5.108094663622106, - 5.043771696906147, - 4.947693539239637, - 4.823967947323406, - 4.678217499346735, - 4.517530549694315, - 4.347349571552868, - 4.172213601295339, - 3.994859488298721, - 3.8164038580666935, - 3.6376998785687036, - 3.4598778331463778, - 3.2851649718185434, - 3.116861742374192, - 2.958679209952326, - 2.8132411015989818, - 2.681018652602555, - 2.5591261701986756, - 2.440870213573699, - 2.317120006619115, - 2.177599978774113, - 2.013547494745599, - 1.8195271290776986, - 1.5962833375420604, - 1.349653049005428, - 1.0910149765692492, - 0.8350589754911822, - 0.5966854308860756, - 0.3886510455183025, - 0.21966722253400134, - 0.09345136231415126, - 0.007780474365371506, - -0.04178405034347302, - -0.06250931986152942, - -0.061461257062384436, - -0.043591630776210546, - -0.012879313087169837, - 0.02902867978723052, - 0.08089637829236378, - 0.14072726465254812, - 0.20575491962839312, - 0.2712858188706251, - 0.331751715600223, - 0.3816591972432015, - 0.41691358130249656, - 0.43541798189500824, - 0.4381963380920083, - 0.4286303934284061, - 0.41111613008139763, - 0.3906301540534185, - 0.370552203437559, - 0.35222461860729193, - 0.33491035558656723, - 0.3162674710294609, - 0.2935744485282808, - 0.26496672447614594, - 0.23028328974486123, - 0.19158920189733425, - 0.15237087318477296, - 0.11682610863828458, - 0.08847210337029923, - 0.0691709108029825, - 0.05842860552570299, - 0.054045379548039375, - 0.052700418167520066, - 0.05125258716010611, - 0.04813506553459855, - 0.043756440148834425, - 0.04044931268355222, - 0.04165055751296051, - 0.05039717578620503, - 0.06825522615278241, - 0.09422285885393836, - 0.1250093879413933, - 0.15639081915484587, - 0.18473565581716833, - 0.20950763038997702, - 0.2349244698397686, - 0.2705121817961607, - 0.3306063489919268, - 0.43157925048334483, - 0.5890741831276286, - 0.815064556490517, - 1.1121579940493724, - 1.4766064410083273 - ], - "pressure:J114:branch138_seg2": [ - 9043.098111837591, - 10412.030168427149, - 11860.344653972128, - 13314.22162792764, - 14700.065228456902, - 15957.931423786382, - 17049.64290397006, - 17964.46506529812, - 18701.91895528455, - 19278.278963033397, - 19718.40878114245, - 20033.15794955947, - 20236.646651854724, - 20332.18133814989, - 20315.892692713875, - 20191.65011077098, - 19957.18015952084, - 19623.301079530065, - 19208.48936641719, - 18728.22171527107, - 18206.16381609528, - 17659.429891762065, - 17099.44380402667, - 16534.457979124927, - 15966.745029074857, - 15398.777890357782, - 14835.214014084191, - 14284.019304988844, - 13756.399018029704, - 13264.110727017594, - 12814.17912618299, - 12404.942869736968, - 12024.711750256363, - 11648.726196319036, - 11246.047105151865, - 10784.151969439445, - 10238.218681339711, - 9593.870072604415, - 8859.269044252589, - 8059.226578545078, - 7232.030403193558, - 6427.357483129089, - 5691.840075137662, - 5063.126610863295, - 4562.6058779344585, - 4200.233370790011, - 3963.4762638287502, - 3834.4870943623005, - 3792.3163766887096, - 3812.453479911863, - 3882.1298147482685, - 3990.9108917111867, - 4133.109526097751, - 4306.41537238743, - 4502.832234546072, - 4712.153942661343, - 4918.75937183762, - 5103.978273031816, - 5250.884576176322, - 5348.545796873014, - 5392.492939093384, - 5387.751784363309, - 5348.326271379651, - 5287.843043472672, - 5221.501872987394, - 5159.120053854725, - 5102.507674731009, - 5047.52283039522, - 4985.9118537769245, - 4909.062205382573, - 4812.596966310967, - 4697.437354609009, - 4572.0667415695, - 4448.863578806045, - 4340.909033460048, - 4258.28385019283, - 4205.247844071173, - 4178.268592511905, - 4168.519205136803, - 4165.614545848926, - 4160.021125609819, - 4148.369074657686, - 4134.056127275194, - 4125.8820566249215, - 4135.2275937965305, - 4170.782556723072, - 4235.588356673316, - 4324.578027874503, - 4424.865097863534, - 4523.198792346877, - 4609.761501291597, - 4686.226513723905, - 4770.75990529978, - 4898.360930685807, - 5118.012355116952, - 5483.62364679124, - 6039.480374244969, - 6821.977966298584, - 7831.2167794767465, - 9043.098111837591 - ], - "flow:branch139_seg0:J115": [ - 0.5482654940394789, - 0.7136545382539023, - 0.89792440637579, - 1.0919940542596236, - 1.2857449550453166, - 1.4699006781244561, - 1.6371793851121101, - 1.7830343504713717, - 1.9054193694658372, - 2.004963241435936, - 2.083432893576128, - 2.143045638497746, - 2.1859543622067097, - 2.2132625455111175, - 2.2255373915117875, - 2.2228782987088453, - 2.2052629565752833, - 2.1734653836698103, - 2.1287370760398705, - 2.0731645612442486, - 2.0093484398393002, - 1.9397509165069784, - 1.8665897070060677, - 1.7914128824592481, - 1.7151387251480512, - 1.6383307751948415, - 1.5614730083795598, - 1.485330985272751, - 1.4110693436310338, - 1.340137456962063, - 1.2738378252475646, - 1.2128795774599825, - 1.1568025977437735, - 1.1037254785680797, - 1.0504950874089458, - 0.993121791815692, - 0.9276345503696215, - 0.8509871483913769, - 0.762050703788838, - 0.6618217354015407, - 0.5537255152948215, - 0.4429430933934284, - 0.33553127155020085, - 0.23735434484905032, - 0.15317546967450807, - 0.08585845923316626, - 0.03610131887391079, - 0.003012402733680593, - -0.015782058464436158, - -0.023015897124632773, - -0.0212087051480558, - -0.012420557816694882, - 0.002131355485438936, - 0.02158682586116121, - 0.045154531684721944, - 0.07179365254004297, - 0.09984186109952282, - 0.1271786386878827, - 0.15147390739703834, - 0.17066744548947665, - 0.1833570625777784, - 0.1892529971938112, - 0.18907379999230192, - 0.18433085776739394, - 0.17696183419704245, - 0.16864776964358372, - 0.16046480390487877, - 0.15265537459993947, - 0.14468659369793418, - 0.13560766152600442, - 0.12450453904869353, - 0.11095265267543705, - 0.09529769672613239, - 0.07860042000940982, - 0.06242362911839576, - 0.048350058733829575, - 0.037531516481111825, - 0.030327468591975635, - 0.026312912290996297, - 0.024400899544502877, - 0.023317455139955305, - 0.022098945756136464, - 0.02043792392849377, - 0.0188265923442499, - 0.018384257445713353, - 0.02039778061084564, - 0.02583572656459253, - 0.03483675516061949, - 0.04661993780071232, - 0.059710514925000256, - 0.07250830068740982, - 0.08416758866215827, - 0.09539028420445125, - 0.10892683735941246, - 0.12964935138433625, - 0.16384797338345444, - 0.218321525290647, - 0.29888662994738646, - 0.40874875138939615, - 0.5482654940394789 - ], - "pressure:branch139_seg0:J115": [ - 8211.732494547654, - 9427.244250610585, - 10753.474715901502, - 12124.297637501106, - 13468.924293016675, - 14725.214242847958, - 15847.816070061848, - 16813.43905215404, - 17612.58449906402, - 18254.196607234135, - 18755.11274673171, - 19128.60086286708, - 19389.41961212877, - 19543.554572318248, - 19592.037194795845, - 19536.97409357667, - 19377.286906852874, - 19120.14258358649, - 18777.700132488, - 18364.362506536556, - 17899.966238906374, - 17401.279933042922, - 16882.02790548433, - 16351.960261718525, - 15815.889878470221, - 15277.185327812698, - 14739.631906505743, - 14209.427907099716, - 13695.668794980136, - 13208.942996677242, - 12757.440608972824, - 12343.766540234463, - 11961.797767012173, - 11594.447228670475, - 11216.941687033534, - 10800.175279003239, - 10317.876470483869, - 9751.367035589094, - 9098.543222452141, - 8372.463511186725, - 7601.602702062484, - 6826.4990103890395, - 6090.325697743371, - 5432.448299755875, - 4881.635032053466, - 4454.253405993138, - 4149.030245611268, - 3955.9160122105827, - 3857.0133593679875, - 3831.5092781602953, - 3863.7999672282367, - 3940.9661718291018, - 4055.6836496513783, - 4203.249051207003, - 4377.234243100056, - 4569.481349499036, - 4767.036017944895, - 4953.868676814314, - 5113.671865160218, - 5233.497616232533, - 5305.4702618360525, - 5330.086952442782, - 5315.584060996161, - 5273.322148105361, - 5217.304049852532, - 5158.463706669182, - 5102.181180244639, - 5048.091977766411, - 4990.934057440945, - 4923.452217482312, - 4840.053292162166, - 4739.184512772534, - 4625.379514774595, - 4507.701930092485, - 4397.702874533368, - 4305.971550264123, - 4239.137026629989, - 4197.509557417202, - 4176.146024737424, - 4166.539507892804, - 4159.656273602213, - 4150.060570280302, - 4137.592084144722, - 4127.535475868612, - 4128.87717613852, - 4150.371419238285, - 4197.406553617442, - 4268.813498453703, - 4356.510697800822, - 4449.346380431063, - 4536.732988500184, - 4615.507422569735, - 4695.201767906608, - 4800.383101982245, - 4969.949909529312, - 5250.828255233872, - 5688.818385930018, - 6322.448904757477, - 7165.693861031877, - 8211.732494547654 - ], - "flow:J115:branch139_seg1": [ - 0.5482654940394789, - 0.7136545382539023, - 0.89792440637579, - 1.0919940542596236, - 1.2857449550453166, - 1.4699006781244561, - 1.6371793851121101, - 1.7830343504713717, - 1.9054193694658372, - 2.004963241435936, - 2.083432893576128, - 2.143045638497746, - 2.1859543622067097, - 2.2132625455111175, - 2.2255373915117875, - 2.2228782987088453, - 2.2052629565752833, - 2.1734653836698103, - 2.1287370760398705, - 2.0731645612442486, - 2.0093484398393002, - 1.9397509165069784, - 1.8665897070060677, - 1.7914128824592481, - 1.7151387251480512, - 1.6383307751948415, - 1.5614730083795598, - 1.485330985272751, - 1.4110693436310338, - 1.340137456962063, - 1.2738378252475646, - 1.2128795774599825, - 1.1568025977437735, - 1.1037254785680797, - 1.0504950874089458, - 0.993121791815692, - 0.9276345503696215, - 0.8509871483913769, - 0.762050703788838, - 0.6618217354015407, - 0.5537255152948215, - 0.4429430933934284, - 0.33553127155020085, - 0.23735434484905032, - 0.15317546967450807, - 0.08585845923316626, - 0.03610131887391079, - 0.003012402733680593, - -0.015782058464436158, - -0.023015897124632773, - -0.0212087051480558, - -0.012420557816694882, - 0.002131355485438936, - 0.02158682586116121, - 0.045154531684721944, - 0.07179365254004297, - 0.09984186109952282, - 0.1271786386878827, - 0.15147390739703834, - 0.17066744548947665, - 0.1833570625777784, - 0.1892529971938112, - 0.18907379999230192, - 0.18433085776739394, - 0.17696183419704245, - 0.16864776964358372, - 0.16046480390487877, - 0.15265537459993947, - 0.14468659369793418, - 0.13560766152600442, - 0.12450453904869353, - 0.11095265267543705, - 0.09529769672613239, - 0.07860042000940982, - 0.06242362911839576, - 0.048350058733829575, - 0.037531516481111825, - 0.030327468591975635, - 0.026312912290996297, - 0.024400899544502877, - 0.023317455139955305, - 0.022098945756136464, - 0.02043792392849377, - 0.0188265923442499, - 0.018384257445713353, - 0.02039778061084564, - 0.02583572656459253, - 0.03483675516061949, - 0.04661993780071232, - 0.059710514925000256, - 0.07250830068740982, - 0.08416758866215827, - 0.09539028420445125, - 0.10892683735941246, - 0.12964935138433625, - 0.16384797338345444, - 0.218321525290647, - 0.29888662994738646, - 0.40874875138939615, - 0.5482654940394789 - ], - "pressure:J115:branch139_seg1": [ - 8211.732494547654, - 9427.244250610585, - 10753.474715901502, - 12124.297637501106, - 13468.924293016675, - 14725.214242847958, - 15847.816070061848, - 16813.43905215404, - 17612.58449906402, - 18254.196607234135, - 18755.11274673171, - 19128.60086286708, - 19389.41961212877, - 19543.554572318248, - 19592.037194795845, - 19536.97409357667, - 19377.286906852874, - 19120.14258358649, - 18777.700132488, - 18364.362506536556, - 17899.966238906374, - 17401.279933042922, - 16882.02790548433, - 16351.960261718525, - 15815.889878470221, - 15277.185327812698, - 14739.631906505743, - 14209.427907099716, - 13695.668794980136, - 13208.942996677242, - 12757.440608972824, - 12343.766540234463, - 11961.797767012173, - 11594.447228670475, - 11216.941687033534, - 10800.175279003239, - 10317.876470483869, - 9751.367035589094, - 9098.543222452141, - 8372.463511186725, - 7601.602702062484, - 6826.4990103890395, - 6090.325697743371, - 5432.448299755875, - 4881.635032053466, - 4454.253405993138, - 4149.030245611268, - 3955.9160122105827, - 3857.0133593679875, - 3831.5092781602953, - 3863.7999672282367, - 3940.9661718291018, - 4055.6836496513783, - 4203.249051207003, - 4377.234243100056, - 4569.481349499036, - 4767.036017944895, - 4953.868676814314, - 5113.671865160218, - 5233.497616232533, - 5305.4702618360525, - 5330.086952442782, - 5315.584060996161, - 5273.322148105361, - 5217.304049852532, - 5158.463706669182, - 5102.181180244639, - 5048.091977766411, - 4990.934057440945, - 4923.452217482312, - 4840.053292162166, - 4739.184512772534, - 4625.379514774595, - 4507.701930092485, - 4397.702874533368, - 4305.971550264123, - 4239.137026629989, - 4197.509557417202, - 4176.146024737424, - 4166.539507892804, - 4159.656273602213, - 4150.060570280302, - 4137.592084144722, - 4127.535475868612, - 4128.87717613852, - 4150.371419238285, - 4197.406553617442, - 4268.813498453703, - 4356.510697800822, - 4449.346380431063, - 4536.732988500184, - 4615.507422569735, - 4695.201767906608, - 4800.383101982245, - 4969.949909529312, - 5250.828255233872, - 5688.818385930018, - 6322.448904757477, - 7165.693861031877, - 8211.732494547654 - ], - "flow:branch139_seg1:J116": [ - 0.5461409804238712, - 0.7112620686768311, - 0.8953806897908683, - 1.089440907903933, - 1.283303213811866, - 1.4676685887964858, - 1.6352256679119914, - 1.7813924155354672, - 1.9040771263447716, - 2.0039052735621414, - 2.0826238514988904, - 2.1424557489344656, - 2.1855715791559938, - 2.2130737124765476, - 2.225546192224984, - 2.223080657103246, - 2.2056537434629373, - 2.1740349855559042, - 2.1294489338258606, - 2.0739890269408, - 2.010254449602586, - 1.9407040375117355, - 1.867571271188989, - 1.7924090921896694, - 1.7161419504774622, - 1.639336640304487, - 1.5624716935788707, - 1.4863079173257725, - 1.412005702464143, - 1.3410151448266592, - 1.2746435930397184, - 1.2136183563456135, - 1.157495614435223, - 1.1044109689971802, - 1.0512267485128335, - 0.9939545488783457, - 0.9286093691867089, - 0.8521265829727739, - 0.7633474296846394, - 0.6632306415176378, - 0.5551824537599732, - 0.44436877678181463, - 0.3368434028326632, - 0.23848361407000188, - 0.15409074531122657, - 0.08653963485886826, - 0.03655538678488887, - 0.0032791535491267687, - -0.0156744639100717, - -0.023028714514275083, - -0.0213124178348894, - -0.012604150926338393, - 0.0018849840958022977, - 0.021285222571736144, - 0.04480819977219708, - 0.07142552840283041, - 0.09947791783612552, - 0.1268497029061784, - 0.15120955731605804, - 0.1704879077310659, - 0.18326778753692244, - 0.18924794703700448, - 0.18913191991011122, - 0.18442626845409832, - 0.1770723143822664, - 0.1687563240453535, - 0.16056648469000498, - 0.15275693672728824, - 0.14480077434602637, - 0.1357482101382754, - 0.12467708173524264, - 0.11115520582314742, - 0.09551796800874425, - 0.07881661594299512, - 0.06261419913254841, - 0.04849898316985235, - 0.037632281454171496, - 0.030382783001908994, - 0.026338906997030058, - 0.02441425281309811, - 0.023331560239346957, - 0.022120424630396575, - 0.020461481157422506, - 0.018837916606383998, - 0.01836536103088461, - 0.02033421996964991, - 0.025723825720137344, - 0.03468429072381844, - 0.04644699111941395, - 0.05953999021685292, - 0.0723542255351323, - 0.08402507860747428, - 0.09522763156471245, - 0.10868388348228812, - 0.1292441242448698, - 0.16318239958593317, - 0.21732933385297304, - 0.2975114146671812, - 0.4069649809896248, - 0.5461409804238712 - ], - "pressure:branch139_seg1:J116": [ - 7862.489058344989, - 9013.21570835158, - 10287.58024609352, - 11622.64719394938, - 12948.88746383978, - 14203.382121293705, - 15337.729827733203, - 16323.159419785114, - 17146.83181996965, - 17814.44593204672, - 18339.381437091382, - 18736.18437051527, - 19019.6411422693, - 19196.7829085627, - 19270.696777679663, - 19242.45936885679, - 19111.623263949023, - 18884.00120536831, - 18569.06535069108, - 18181.099289675712, - 17738.43375540086, - 17257.795049538134, - 16753.936288747416, - 16237.174058356404, - 15713.34902061158, - 15186.169101903522, - 14659.043383959004, - 14137.451976852964, - 13629.647323595042, - 13145.713503237752, - 12694.330005989244, - 12279.750093375662, - 11898.027035470257, - 11535.155837804565, - 11168.772148038692, - 10771.152419044525, - 10315.43935419453, - 9781.430064000926, - 9162.976374606018, - 8468.549977885756, - 7722.906645353237, - 6962.810818088636, - 6230.032220077014, - 5564.369317374118, - 4997.328532371217, - 4547.502294242638, - 4217.958333291335, - 4001.6103613575447, - 3881.712837954232, - 3839.0576322884162, - 3856.9260061331265, - 3921.5329154808433, - 4024.9318172165054, - 4161.565788138081, - 4325.750701926953, - 4510.154629975077, - 4702.986266001839, - 4889.362520101344, - 5053.290640186678, - 5181.032892849354, - 5263.472331836302, - 5299.32578049566, - 5294.419101911497, - 5259.327398263557, - 5207.502077281347, - 5150.253630633335, - 5094.377189771318, - 5040.975081694983, - 4985.958246035138, - 4922.6253479267325, - 4844.9032675354665, - 4750.267858562427, - 4641.6759686690875, - 4526.85036693128, - 4416.701903323584, - 4321.972950226727, - 4250.184357267471, - 4203.181299783022, - 4177.5267662168535, - 4165.490499888783, - 4158.276452110765, - 4149.633902142894, - 4137.992252321803, - 4127.237627209155, - 4125.3802428696035, - 4141.192229341814, - 4180.957913249637, - 4245.042510858468, - 4327.35868428324, - 4417.553536271372, - 4504.782250154073, - 4583.972882272299, - 4661.194117640597, - 4756.773099790064, - 4905.4726646921645, - 5151.239851957138, - 5540.359655866573, - 6112.123708315963, - 6886.116114889485, - 7862.489058344989 - ], - "flow:J116:branch139_seg2": [ - 0.5461409804238712, - 0.7112620686768311, - 0.8953806897908683, - 1.089440907903933, - 1.283303213811866, - 1.4676685887964858, - 1.6352256679119914, - 1.7813924155354672, - 1.9040771263447716, - 2.0039052735621414, - 2.0826238514988904, - 2.1424557489344656, - 2.1855715791559938, - 2.2130737124765476, - 2.225546192224984, - 2.223080657103246, - 2.2056537434629373, - 2.1740349855559042, - 2.1294489338258606, - 2.0739890269408, - 2.010254449602586, - 1.9407040375117355, - 1.867571271188989, - 1.7924090921896694, - 1.7161419504774622, - 1.639336640304487, - 1.5624716935788707, - 1.4863079173257725, - 1.412005702464143, - 1.3410151448266592, - 1.2746435930397184, - 1.2136183563456135, - 1.157495614435223, - 1.1044109689971802, - 1.0512267485128335, - 0.9939545488783457, - 0.9286093691867089, - 0.8521265829727739, - 0.7633474296846394, - 0.6632306415176378, - 0.5551824537599732, - 0.44436877678181463, - 0.3368434028326632, - 0.23848361407000188, - 0.15409074531122657, - 0.08653963485886826, - 0.03655538678488887, - 0.0032791535491267687, - -0.0156744639100717, - -0.023028714514275083, - -0.0213124178348894, - -0.012604150926338393, - 0.0018849840958022977, - 0.021285222571736144, - 0.04480819977219708, - 0.07142552840283041, - 0.09947791783612552, - 0.1268497029061784, - 0.15120955731605804, - 0.1704879077310659, - 0.18326778753692244, - 0.18924794703700448, - 0.18913191991011122, - 0.18442626845409832, - 0.1770723143822664, - 0.1687563240453535, - 0.16056648469000498, - 0.15275693672728824, - 0.14480077434602637, - 0.1357482101382754, - 0.12467708173524264, - 0.11115520582314742, - 0.09551796800874425, - 0.07881661594299512, - 0.06261419913254841, - 0.04849898316985235, - 0.037632281454171496, - 0.030382783001908994, - 0.026338906997030058, - 0.02441425281309811, - 0.023331560239346957, - 0.022120424630396575, - 0.020461481157422506, - 0.018837916606383998, - 0.01836536103088461, - 0.02033421996964991, - 0.025723825720137344, - 0.03468429072381844, - 0.04644699111941395, - 0.05953999021685292, - 0.0723542255351323, - 0.08402507860747428, - 0.09522763156471245, - 0.10868388348228812, - 0.1292441242448698, - 0.16318239958593317, - 0.21732933385297304, - 0.2975114146671812, - 0.4069649809896248, - 0.5461409804238712 - ], - "pressure:J116:branch139_seg2": [ - 7862.489058344989, - 9013.21570835158, - 10287.58024609352, - 11622.64719394938, - 12948.88746383978, - 14203.382121293705, - 15337.729827733203, - 16323.159419785114, - 17146.83181996965, - 17814.44593204672, - 18339.381437091382, - 18736.18437051527, - 19019.6411422693, - 19196.7829085627, - 19270.696777679663, - 19242.45936885679, - 19111.623263949023, - 18884.00120536831, - 18569.06535069108, - 18181.099289675712, - 17738.43375540086, - 17257.795049538134, - 16753.936288747416, - 16237.174058356404, - 15713.34902061158, - 15186.169101903522, - 14659.043383959004, - 14137.451976852964, - 13629.647323595042, - 13145.713503237752, - 12694.330005989244, - 12279.750093375662, - 11898.027035470257, - 11535.155837804565, - 11168.772148038692, - 10771.152419044525, - 10315.43935419453, - 9781.430064000926, - 9162.976374606018, - 8468.549977885756, - 7722.906645353237, - 6962.810818088636, - 6230.032220077014, - 5564.369317374118, - 4997.328532371217, - 4547.502294242638, - 4217.958333291335, - 4001.6103613575447, - 3881.712837954232, - 3839.0576322884162, - 3856.9260061331265, - 3921.5329154808433, - 4024.9318172165054, - 4161.565788138081, - 4325.750701926953, - 4510.154629975077, - 4702.986266001839, - 4889.362520101344, - 5053.290640186678, - 5181.032892849354, - 5263.472331836302, - 5299.32578049566, - 5294.419101911497, - 5259.327398263557, - 5207.502077281347, - 5150.253630633335, - 5094.377189771318, - 5040.975081694983, - 4985.958246035138, - 4922.6253479267325, - 4844.9032675354665, - 4750.267858562427, - 4641.6759686690875, - 4526.85036693128, - 4416.701903323584, - 4321.972950226727, - 4250.184357267471, - 4203.181299783022, - 4177.5267662168535, - 4165.490499888783, - 4158.276452110765, - 4149.633902142894, - 4137.992252321803, - 4127.237627209155, - 4125.3802428696035, - 4141.192229341814, - 4180.957913249637, - 4245.042510858468, - 4327.35868428324, - 4417.553536271372, - 4504.782250154073, - 4583.972882272299, - 4661.194117640597, - 4756.773099790064, - 4905.4726646921645, - 5151.239851957138, - 5540.359655866573, - 6112.123708315963, - 6886.116114889485, - 7862.489058344989 - ], - "flow:branch142_seg0:J117": [ - 1.440787718910678, - 1.859059368766086, - 2.315200435309213, - 2.7858750016251967, - 3.2463411102886237, - 3.6754351952332724, - 4.057860371069384, - 4.385599107360593, - 4.656241726886987, - 4.873641189850543, - 5.043319549474467, - 5.170652880068272, - 5.260514021301669, - 5.314426430183637, - 5.332787399100994, - 5.315361129521087, - 5.261758216233942, - 5.174500224826164, - 5.057269711663035, - 4.915726811276503, - 4.756750209862633, - 4.586193007399194, - 4.409042285038119, - 4.228411647881176, - 4.045833603759618, - 3.862286792253155, - 3.6788831651042586, - 3.4977431837696793, - 3.3220846894103064, - 3.1556824837249313, - 3.0015229854341534, - 2.860649325207976, - 2.7308135268046403, - 2.606049720665846, - 2.4775532114774066, - 2.335028312940849, - 2.1691522497066953, - 1.973699768990556, - 1.74810918681295, - 1.4971604288341887, - 1.2314776521036261, - 0.965288215238554, - 0.7138056381878308, - 0.4905742254727572, - 0.3054367694351164, - 0.16313925852234895, - 0.06279026537538022, - 0.00042972376702374846, - -0.030939357858190977, - -0.038311155805163546, - -0.027222577208423755, - -0.001907641058010633, - 0.035634534533822336, - 0.0839778384039641, - 0.1413558780719526, - 0.20510742987279457, - 0.27075836623356153, - 0.332810683598982, - 0.3855658741964306, - 0.42445339856327413, - 0.44685197042136265, - 0.45316766156498217, - 0.4462076031701755, - 0.4302836501783371, - 0.4103592166245055, - 0.39012776838673935, - 0.3714050023028075, - 0.3538393622023989, - 0.3353272934683962, - 0.3131489500121838, - 0.28518942532397507, - 0.25093717859244474, - 0.21203357375815057, - 0.1717518291592954, - 0.1342856176008911, - 0.10339091392893125, - 0.08132823033234257, - 0.06810768244313585, - 0.06186342774424711, - 0.059386067853557094, - 0.05745883553730476, - 0.05415086978311664, - 0.04945796063652545, - 0.045390417664468684, - 0.04525651366897069, - 0.05227226780824894, - 0.06837524824619891, - 0.0930504329732512, - 0.12345737807978366, - 0.1554251023887057, - 0.1850748994940758, - 0.21121104365263782, - 0.23713380245107404, - 0.27148171131156096, - 0.3279528774093974, - 0.4228905726039089, - 0.5726632050424414, - 0.7901928482372599, - 1.080313421505619, - 1.440787718910678 - ], - "pressure:branch142_seg0:J117": [ - 8962.189993641852, - 10305.761185969359, - 11726.728250190028, - 13153.10271880617, - 14513.3052578608, - 15749.103750598979, - 16823.822377996457, - 17727.404626490166, - 18459.122394349324, - 19035.4371628572, - 19480.16557613437, - 19802.90093720256, - 20017.290960329807, - 20125.67906121719, - 20123.625893417924, - 20014.975539437055, - 19796.78926755932, - 19479.872513218932, - 19082.73102491671, - 18620.031534004014, - 18115.26118562057, - 17585.132887595904, - 17040.619065855662, - 16489.82434350059, - 15934.882489210555, - 15378.275621522127, - 14824.766213497027, - 14282.360812814739, - 13762.249855286791, - 13276.128695616617, - 12830.891210893966, - 12424.898963108753, - 12046.570121679584, - 11671.545101382302, - 11269.55304881506, - 10808.85668127574, - 10265.538403952374, - 9625.760100320467, - 8898.195600346453, - 8107.472896454064, - 7291.162424465676, - 6498.057072314316, - 5773.35416151764, - 5153.544141239609, - 4658.761582651903, - 4298.591403565992, - 4060.31839299677, - 3926.284841912254, - 3876.363497577196, - 3886.7646669813403, - 3945.552792954251, - 4042.998117229319, - 4173.814577689322, - 4335.9400819506145, - 4521.664150618457, - 4720.949301962191, - 4918.35910855099, - 5095.561311362129, - 5235.977155100685, - 5328.983427982405, - 5370.180016039664, - 5364.6525071362485, - 5326.181647049434, - 5267.754728193477, - 5204.213982028228, - 5144.863252810375, - 5091.108974483869, - 5038.675165371794, - 4979.342937127559, - 4904.641987502165, - 4810.4226345767465, - 4697.706223532797, - 4574.9589799019495, - 4454.436866635746, - 4348.924030286403, - 4268.205971251933, - 4216.303440478894, - 4189.6043493907355, - 4179.381202096262, - 4175.445251969257, - 4168.605093537346, - 4155.749538153988, - 4140.414511168011, - 4131.369303565559, - 4139.820322747254, - 4174.193773684973, - 4237.351474792792, - 4324.133554904368, - 4421.731229295871, - 4517.290900613539, - 4601.252954714984, - 4675.540114284423, - 4758.271924837767, - 4884.019159539002, - 5100.896976198118, - 5461.769050912841, - 6009.500139810359, - 6779.583022481643, - 7771.945030823429, - 8962.189993641852 - ], - "flow:J117:branch142_seg1": [ - 1.440787718910678, - 1.859059368766086, - 2.315200435309213, - 2.7858750016251967, - 3.2463411102886237, - 3.6754351952332724, - 4.057860371069384, - 4.385599107360593, - 4.656241726886987, - 4.873641189850543, - 5.043319549474467, - 5.170652880068272, - 5.260514021301669, - 5.314426430183637, - 5.332787399100994, - 5.315361129521087, - 5.261758216233942, - 5.174500224826164, - 5.057269711663035, - 4.915726811276503, - 4.756750209862633, - 4.586193007399194, - 4.409042285038119, - 4.228411647881176, - 4.045833603759618, - 3.862286792253155, - 3.6788831651042586, - 3.4977431837696793, - 3.3220846894103064, - 3.1556824837249313, - 3.0015229854341534, - 2.860649325207976, - 2.7308135268046403, - 2.606049720665846, - 2.4775532114774066, - 2.335028312940849, - 2.1691522497066953, - 1.973699768990556, - 1.74810918681295, - 1.4971604288341887, - 1.2314776521036261, - 0.965288215238554, - 0.7138056381878308, - 0.4905742254727572, - 0.3054367694351164, - 0.16313925852234895, - 0.06279026537538022, - 0.00042972376702374846, - -0.030939357858190977, - -0.038311155805163546, - -0.027222577208423755, - -0.001907641058010633, - 0.035634534533822336, - 0.0839778384039641, - 0.1413558780719526, - 0.20510742987279457, - 0.27075836623356153, - 0.332810683598982, - 0.3855658741964306, - 0.42445339856327413, - 0.44685197042136265, - 0.45316766156498217, - 0.4462076031701755, - 0.4302836501783371, - 0.4103592166245055, - 0.39012776838673935, - 0.3714050023028075, - 0.3538393622023989, - 0.3353272934683962, - 0.3131489500121838, - 0.28518942532397507, - 0.25093717859244474, - 0.21203357375815057, - 0.1717518291592954, - 0.1342856176008911, - 0.10339091392893125, - 0.08132823033234257, - 0.06810768244313585, - 0.06186342774424711, - 0.059386067853557094, - 0.05745883553730476, - 0.05415086978311664, - 0.04945796063652545, - 0.045390417664468684, - 0.04525651366897069, - 0.05227226780824894, - 0.06837524824619891, - 0.0930504329732512, - 0.12345737807978366, - 0.1554251023887057, - 0.1850748994940758, - 0.21121104365263782, - 0.23713380245107404, - 0.27148171131156096, - 0.3279528774093974, - 0.4228905726039089, - 0.5726632050424414, - 0.7901928482372599, - 1.080313421505619, - 1.440787718910678 - ], - "pressure:J117:branch142_seg1": [ - 8962.189993641852, - 10305.761185969359, - 11726.728250190028, - 13153.10271880617, - 14513.3052578608, - 15749.103750598979, - 16823.822377996457, - 17727.404626490166, - 18459.122394349324, - 19035.4371628572, - 19480.16557613437, - 19802.90093720256, - 20017.290960329807, - 20125.67906121719, - 20123.625893417924, - 20014.975539437055, - 19796.78926755932, - 19479.872513218932, - 19082.73102491671, - 18620.031534004014, - 18115.26118562057, - 17585.132887595904, - 17040.619065855662, - 16489.82434350059, - 15934.882489210555, - 15378.275621522127, - 14824.766213497027, - 14282.360812814739, - 13762.249855286791, - 13276.128695616617, - 12830.891210893966, - 12424.898963108753, - 12046.570121679584, - 11671.545101382302, - 11269.55304881506, - 10808.85668127574, - 10265.538403952374, - 9625.760100320467, - 8898.195600346453, - 8107.472896454064, - 7291.162424465676, - 6498.057072314316, - 5773.35416151764, - 5153.544141239609, - 4658.761582651903, - 4298.591403565992, - 4060.31839299677, - 3926.284841912254, - 3876.363497577196, - 3886.7646669813403, - 3945.552792954251, - 4042.998117229319, - 4173.814577689322, - 4335.9400819506145, - 4521.664150618457, - 4720.949301962191, - 4918.35910855099, - 5095.561311362129, - 5235.977155100685, - 5328.983427982405, - 5370.180016039664, - 5364.6525071362485, - 5326.181647049434, - 5267.754728193477, - 5204.213982028228, - 5144.863252810375, - 5091.108974483869, - 5038.675165371794, - 4979.342937127559, - 4904.641987502165, - 4810.4226345767465, - 4697.706223532797, - 4574.9589799019495, - 4454.436866635746, - 4348.924030286403, - 4268.205971251933, - 4216.303440478894, - 4189.6043493907355, - 4179.381202096262, - 4175.445251969257, - 4168.605093537346, - 4155.749538153988, - 4140.414511168011, - 4131.369303565559, - 4139.820322747254, - 4174.193773684973, - 4237.351474792792, - 4324.133554904368, - 4421.731229295871, - 4517.290900613539, - 4601.252954714984, - 4675.540114284423, - 4758.271924837767, - 4884.019159539002, - 5100.896976198118, - 5461.769050912841, - 6009.500139810359, - 6779.583022481643, - 7771.945030823429, - 8962.189993641852 - ], - "flow:branch142_seg1:J118": [ - 1.4345066227339087, - 1.8522110768957498, - 2.3081144285674835, - 2.778989991062975, - 3.239951906842349, - 3.669742754752077, - 4.0529908804521, - 4.381637583710174, - 4.653036146788843, - 4.871150399227688, - 5.041463888400879, - 5.169326739888791, - 5.25973506945444, - 5.314164792001121, - 5.33305867379463, - 5.316172269502732, - 5.263078034179406, - 5.176287163974968, - 5.059402239160932, - 4.918112006321433, - 4.759313271633237, - 4.588836835000977, - 4.4117334400610675, - 4.231128127369456, - 4.048561077568198, - 3.8650173623679143, - 3.6815808829671433, - 3.5003586866452996, - 3.324558822453652, - 3.1579734771034333, - 3.0036003790427523, - 2.862559029455445, - 2.7326469177116794, - 2.6079289134201056, - 2.479645771803278, - 2.337482230128977, - 2.1720566389411227, - 1.9770678154676902, - 1.751879127185062, - 1.5011512596086511, - 1.2354713487902738, - 0.9690641336208354, - 0.717137919506232, - 0.4932997770885656, - 0.3075376077851052, - 0.16459715508695666, - 0.06365306589382237, - 0.0008634975775538416, - -0.030867959058490987, - -0.03850376795775696, - -0.02760434447779142, - -0.0024896485205740683, - 0.034908671066514525, - 0.08312146045789763, - 0.1403891894526836, - 0.20411909950751933, - 0.2698244343624057, - 0.332015447663569, - 0.3849835347622775, - 0.424130204008487, - 0.44676851801756307, - 0.45328574357340384, - 0.446463676555895, - 0.4305910705007689, - 0.41066711357234664, - 0.3904067116139271, - 0.3716589551523289, - 0.35410603919891076, - 0.3356516859512189, - 0.3135678827647142, - 0.28570333923470026, - 0.25152517667483754, - 0.21264753276845225, - 0.17231780534926636, - 0.1347458944127121, - 0.10371439960728095, - 0.0815180993186137, - 0.06818211261718313, - 0.06188973360102757, - 0.05941112879132639, - 0.05750614706466993, - 0.05422545514845138, - 0.0495272256675395, - 0.04540103931273639, - 0.0451569632479703, - 0.05202871649740641, - 0.0679998018083144, - 0.09258572255775861, - 0.12296811853361159, - 0.15498022419258337, - 0.18469500993158705, - 0.2108473344373569, - 0.236654455932971, - 0.27067948633285094, - 0.3265730216763076, - 0.4206459207243088, - 0.5694302941782478, - 0.785856411620819, - 1.0748278455844353, - 1.4345066227339087 - ], - "pressure:branch142_seg1:J118": [ - 8258.503561820216, - 9493.882194311287, - 10840.031861458083, - 12228.393733698025, - 13585.775386207612, - 14849.797505193741, - 15975.61629392274, - 16940.168424464595, - 17735.998500721897, - 18375.012672145465, - 18873.728881546645, - 19247.598327866745, - 19511.282195211435, - 19669.027167341275, - 19721.85774613415, - 19669.276594816376, - 19509.941995400506, - 19251.414072429427, - 18904.68392584363, - 18486.40055537486, - 18017.02652877623, - 17513.707482964925, - 16991.126088920322, - 16458.43053725758, - 15920.03881780613, - 15378.831093594385, - 14838.074754133771, - 14304.061265563847, - 13786.321041406423, - 13296.045738933706, - 12841.967576577697, - 12427.143724380969, - 12044.84163006107, - 11677.251248566532, - 11298.365033834969, - 10877.744582760604, - 10387.946884184948, - 9810.647687198678, - 9144.485664843596, - 8403.71283644777, - 7619.812372248826, - 6835.003195425445, - 6094.083097279649, - 5436.941965337829, - 4892.5373499480065, - 4474.627608129827, - 4180.282254934871, - 3997.8826257092473, - 3906.5702137557546, - 3885.685855635846, - 3919.0740476000324, - 3994.1596157365766, - 4105.27628105452, - 4248.20794814431, - 4417.65094964869, - 4605.85587220458, - 4799.503724511334, - 4982.325680303274, - 5137.524996077976, - 5251.7040453397285, - 5317.121394513475, - 5335.10921818369, - 5314.129914126303, - 5266.827700290741, - 5207.928353171865, - 5148.2903839296805, - 5093.161854135492, - 5041.444944664194, - 4986.86802526074, - 4921.377545963717, - 4838.745261346996, - 4737.5280586421695, - 4622.658858175502, - 4503.829702164662, - 4393.454952920126, - 4302.6062506059925, - 4237.907380500054, - 4199.252896556476, - 4181.1302867302675, - 4173.996507134232, - 4168.328199209505, - 4158.513744786283, - 4144.60758160816, - 4132.609041924621, - 4132.335082427076, - 4153.253603805692, - 4201.060383489267, - 4274.147582356395, - 4363.997755823017, - 4458.314454558074, - 4545.632048956121, - 4622.499459892781, - 4698.80890087509, - 4800.227078851063, - 4967.33025361133, - 5248.377389190787, - 5691.763911680967, - 6335.435206317574, - 7193.124135790833, - 8258.503561820216 - ], - "flow:J118:branch142_seg2": [ - 1.4345066227339087, - 1.8522110768957498, - 2.3081144285674835, - 2.778989991062975, - 3.239951906842349, - 3.669742754752077, - 4.0529908804521, - 4.381637583710174, - 4.653036146788843, - 4.871150399227688, - 5.041463888400879, - 5.169326739888791, - 5.25973506945444, - 5.314164792001121, - 5.33305867379463, - 5.316172269502732, - 5.263078034179406, - 5.176287163974968, - 5.059402239160932, - 4.918112006321433, - 4.759313271633237, - 4.588836835000977, - 4.4117334400610675, - 4.231128127369456, - 4.048561077568198, - 3.8650173623679143, - 3.6815808829671433, - 3.5003586866452996, - 3.324558822453652, - 3.1579734771034333, - 3.0036003790427523, - 2.862559029455445, - 2.7326469177116794, - 2.6079289134201056, - 2.479645771803278, - 2.337482230128977, - 2.1720566389411227, - 1.9770678154676902, - 1.751879127185062, - 1.5011512596086511, - 1.2354713487902738, - 0.9690641336208354, - 0.717137919506232, - 0.4932997770885656, - 0.3075376077851052, - 0.16459715508695666, - 0.06365306589382237, - 0.0008634975775538416, - -0.030867959058490987, - -0.03850376795775696, - -0.02760434447779142, - -0.0024896485205740683, - 0.034908671066514525, - 0.08312146045789763, - 0.1403891894526836, - 0.20411909950751933, - 0.2698244343624057, - 0.332015447663569, - 0.3849835347622775, - 0.424130204008487, - 0.44676851801756307, - 0.45328574357340384, - 0.446463676555895, - 0.4305910705007689, - 0.41066711357234664, - 0.3904067116139271, - 0.3716589551523289, - 0.35410603919891076, - 0.3356516859512189, - 0.3135678827647142, - 0.28570333923470026, - 0.25152517667483754, - 0.21264753276845225, - 0.17231780534926636, - 0.1347458944127121, - 0.10371439960728095, - 0.0815180993186137, - 0.06818211261718313, - 0.06188973360102757, - 0.05941112879132639, - 0.05750614706466993, - 0.05422545514845138, - 0.0495272256675395, - 0.04540103931273639, - 0.0451569632479703, - 0.05202871649740641, - 0.0679998018083144, - 0.09258572255775861, - 0.12296811853361159, - 0.15498022419258337, - 0.18469500993158705, - 0.2108473344373569, - 0.236654455932971, - 0.27067948633285094, - 0.3265730216763076, - 0.4206459207243088, - 0.5694302941782478, - 0.785856411620819, - 1.0748278455844353, - 1.4345066227339087 - ], - "pressure:J118:branch142_seg2": [ - 8258.503561820216, - 9493.882194311287, - 10840.031861458083, - 12228.393733698025, - 13585.775386207612, - 14849.797505193741, - 15975.61629392274, - 16940.168424464595, - 17735.998500721897, - 18375.012672145465, - 18873.728881546645, - 19247.598327866745, - 19511.282195211435, - 19669.027167341275, - 19721.85774613415, - 19669.276594816376, - 19509.941995400506, - 19251.414072429427, - 18904.68392584363, - 18486.40055537486, - 18017.02652877623, - 17513.707482964925, - 16991.126088920322, - 16458.43053725758, - 15920.03881780613, - 15378.831093594385, - 14838.074754133771, - 14304.061265563847, - 13786.321041406423, - 13296.045738933706, - 12841.967576577697, - 12427.143724380969, - 12044.84163006107, - 11677.251248566532, - 11298.365033834969, - 10877.744582760604, - 10387.946884184948, - 9810.647687198678, - 9144.485664843596, - 8403.71283644777, - 7619.812372248826, - 6835.003195425445, - 6094.083097279649, - 5436.941965337829, - 4892.5373499480065, - 4474.627608129827, - 4180.282254934871, - 3997.8826257092473, - 3906.5702137557546, - 3885.685855635846, - 3919.0740476000324, - 3994.1596157365766, - 4105.27628105452, - 4248.20794814431, - 4417.65094964869, - 4605.85587220458, - 4799.503724511334, - 4982.325680303274, - 5137.524996077976, - 5251.7040453397285, - 5317.121394513475, - 5335.10921818369, - 5314.129914126303, - 5266.827700290741, - 5207.928353171865, - 5148.2903839296805, - 5093.161854135492, - 5041.444944664194, - 4986.86802526074, - 4921.377545963717, - 4838.745261346996, - 4737.5280586421695, - 4622.658858175502, - 4503.829702164662, - 4393.454952920126, - 4302.6062506059925, - 4237.907380500054, - 4199.252896556476, - 4181.1302867302675, - 4173.996507134232, - 4168.328199209505, - 4158.513744786283, - 4144.60758160816, - 4132.609041924621, - 4132.335082427076, - 4153.253603805692, - 4201.060383489267, - 4274.147582356395, - 4363.997755823017, - 4458.314454558074, - 4545.632048956121, - 4622.499459892781, - 4698.80890087509, - 4800.227078851063, - 4967.33025361133, - 5248.377389190787, - 5691.763911680967, - 6335.435206317574, - 7193.124135790833, - 8258.503561820216 - ], - "flow:branch146_seg0:J119": [ - 0.8269986771372467, - 1.0554022516368762, - 1.298427745081228, - 1.543355112994367, - 1.7773628829182033, - 1.990325799610116, - 2.175761905310737, - 2.3313147413464197, - 2.4571348633154346, - 2.5562948787041746, - 2.632364069597185, - 2.6878788612966162, - 2.7251491802610954, - 2.7444729244796466, - 2.745542136137818, - 2.728324998166216, - 2.692558713291421, - 2.6400493393159796, - 2.5732101181197273, - 2.4951225672591195, - 2.4096507325518006, - 2.3195951398506214, - 2.2272025208654047, - 2.133723467741656, - 2.0395776088367596, - 1.9451463204592447, - 1.851067699226094, - 1.7586443981459339, - 1.6697648260688793, - 1.5864708814672317, - 1.510102051178919, - 1.4406868762378844, - 1.3763622703475553, - 1.3132031533150417, - 1.2460556032031993, - 1.1693436523891396, - 1.0785532430017732, - 0.9711936945219234, - 0.8482250751834425, - 0.713443810420015, - 0.5734482640555895, - 0.4364388556328706, - 0.31042950232593053, - 0.20200404707004746, - 0.1152815944230433, - 0.051758016598504486, - 0.00958763792848632, - -0.013982899314954717, - -0.023044949220752703, - -0.021370774819435973, - -0.011396809104940214, - 0.005011255175021875, - 0.027198942242398858, - 0.05465314260488989, - 0.08631174712844264, - 0.12057178385527277, - 0.1547858943170756, - 0.18585747553417964, - 0.21084483924588457, - 0.22766861593440832, - 0.23546990980571395, - 0.23505743690301312, - 0.22850779010817202, - 0.21831688139241617, - 0.20714210502245167, - 0.1966428846358811, - 0.18729154410240723, - 0.17842594534261938, - 0.1685952111340096, - 0.156267572538459, - 0.14052482914178782, - 0.1214483176373907, - 0.10038154463492549, - 0.07937603569749377, - 0.06076086484431228, - 0.046357751667493084, - 0.03699328417113801, - 0.03216362431782264, - 0.030466255410386656, - 0.03000823537457859, - 0.029124426126897435, - 0.027122966430556332, - 0.02445041300274895, - 0.02258145306585329, - 0.02348609868402958, - 0.02878750314090425, - 0.03915044274550015, - 0.05379808881246849, - 0.07070887534199448, - 0.0874883400707003, - 0.10225660238327496, - 0.11503213264039126, - 0.12856709183158394, - 0.14852571885523672, - 0.1830897751628191, - 0.24129103802217508, - 0.33131112067577884, - 0.4592232461092661, - 0.6254534445799859, - 0.8269986771372467 - ], - "pressure:branch146_seg0:J119": [ - 9663.97973409224, - 11105.081401994697, - 12588.303136762592, - 14037.485652389969, - 15385.225708183469, - 16578.931578741798, - 17590.555405656916, - 18421.7181169793, - 19082.920629489465, - 19590.444829139906, - 19975.989992823248, - 20244.63664327687, - 20406.117682656415, - 20462.979319244438, - 20404.76568823143, - 20239.069050959093, - 19963.1228325879, - 19590.18452287724, - 19146.006831908286, - 18643.58917297433, - 18108.42454044602, - 17556.735886391474, - 16995.509586918004, - 16431.459152289637, - 15864.72576352137, - 15297.456603052966, - 14736.101550514195, - 14190.384319863279, - 13673.045508354093, - 13195.727602641113, - 12763.527439742318, - 12369.325236838022, - 11996.744594123225, - 11615.325588937912, - 11190.709680597773, - 10690.561006530037, - 10095.039286951562, - 9396.047122716187, - 8611.42875680707, - 7777.0165517517025, - 6935.827706924146, - 6141.994481858815, - 5440.9971608858705, - 4864.987515695671, - 4424.636344195016, - 4125.564744236995, - 3945.160874641197, - 3859.8844992966515, - 3851.001095437941, - 3892.2751088809177, - 3975.7672557174633, - 4095.282433835163, - 4245.082405898851, - 4425.532535225781, - 4626.551708318407, - 4835.016919931338, - 5034.061684297908, - 5203.404159271272, - 5327.085301676313, - 5397.142247841192, - 5413.7157271671895, - 5384.841990698675, - 5329.322097142214, - 5260.968439662072, - 5193.786103938731, - 5135.368922989761, - 5083.301172510054, - 5030.033459681661, - 4965.617298365718, - 4881.483424937724, - 4775.83632634369, - 4652.256756351176, - 4522.7676501029555, - 4402.043099028407, - 4302.8883233283195, - 4233.451500694181, - 4194.89893574227, - 4180.287049049402, - 4177.42607406178, - 4176.068066818193, - 4167.683375130922, - 4151.783242787447, - 4135.453125240812, - 4130.156179485991, - 4148.079799384796, - 4196.517210405097, - 4274.814141983527, - 4374.502887379242, - 4478.791488408532, - 4574.274361129807, - 4654.049010982496, - 4725.85657950961, - 4816.341049435374, - 4968.784331235828, - 5238.590495444438, - 5682.361862370358, - 6335.914258575241, - 7232.437600190886, - 8356.432995182226, - 9663.97973409224 - ], - "flow:J119:branch146_seg1": [ - 0.8269986771372467, - 1.0554022516368762, - 1.298427745081228, - 1.543355112994367, - 1.7773628829182033, - 1.990325799610116, - 2.175761905310737, - 2.3313147413464197, - 2.4571348633154346, - 2.5562948787041746, - 2.632364069597185, - 2.6878788612966162, - 2.7251491802610954, - 2.7444729244796466, - 2.745542136137818, - 2.728324998166216, - 2.692558713291421, - 2.6400493393159796, - 2.5732101181197273, - 2.4951225672591195, - 2.4096507325518006, - 2.3195951398506214, - 2.2272025208654047, - 2.133723467741656, - 2.0395776088367596, - 1.9451463204592447, - 1.851067699226094, - 1.7586443981459339, - 1.6697648260688793, - 1.5864708814672317, - 1.510102051178919, - 1.4406868762378844, - 1.3763622703475553, - 1.3132031533150417, - 1.2460556032031993, - 1.1693436523891396, - 1.0785532430017732, - 0.9711936945219234, - 0.8482250751834425, - 0.713443810420015, - 0.5734482640555895, - 0.4364388556328706, - 0.31042950232593053, - 0.20200404707004746, - 0.1152815944230433, - 0.051758016598504486, - 0.00958763792848632, - -0.013982899314954717, - -0.023044949220752703, - -0.021370774819435973, - -0.011396809104940214, - 0.005011255175021875, - 0.027198942242398858, - 0.05465314260488989, - 0.08631174712844264, - 0.12057178385527277, - 0.1547858943170756, - 0.18585747553417964, - 0.21084483924588457, - 0.22766861593440832, - 0.23546990980571395, - 0.23505743690301312, - 0.22850779010817202, - 0.21831688139241617, - 0.20714210502245167, - 0.1966428846358811, - 0.18729154410240723, - 0.17842594534261938, - 0.1685952111340096, - 0.156267572538459, - 0.14052482914178782, - 0.1214483176373907, - 0.10038154463492549, - 0.07937603569749377, - 0.06076086484431228, - 0.046357751667493084, - 0.03699328417113801, - 0.03216362431782264, - 0.030466255410386656, - 0.03000823537457859, - 0.029124426126897435, - 0.027122966430556332, - 0.02445041300274895, - 0.02258145306585329, - 0.02348609868402958, - 0.02878750314090425, - 0.03915044274550015, - 0.05379808881246849, - 0.07070887534199448, - 0.0874883400707003, - 0.10225660238327496, - 0.11503213264039126, - 0.12856709183158394, - 0.14852571885523672, - 0.1830897751628191, - 0.24129103802217508, - 0.33131112067577884, - 0.4592232461092661, - 0.6254534445799859, - 0.8269986771372467 - ], - "pressure:J119:branch146_seg1": [ - 9663.97973409224, - 11105.081401994697, - 12588.303136762592, - 14037.485652389969, - 15385.225708183469, - 16578.931578741798, - 17590.555405656916, - 18421.7181169793, - 19082.920629489465, - 19590.444829139906, - 19975.989992823248, - 20244.63664327687, - 20406.117682656415, - 20462.979319244438, - 20404.76568823143, - 20239.069050959093, - 19963.1228325879, - 19590.18452287724, - 19146.006831908286, - 18643.58917297433, - 18108.42454044602, - 17556.735886391474, - 16995.509586918004, - 16431.459152289637, - 15864.72576352137, - 15297.456603052966, - 14736.101550514195, - 14190.384319863279, - 13673.045508354093, - 13195.727602641113, - 12763.527439742318, - 12369.325236838022, - 11996.744594123225, - 11615.325588937912, - 11190.709680597773, - 10690.561006530037, - 10095.039286951562, - 9396.047122716187, - 8611.42875680707, - 7777.0165517517025, - 6935.827706924146, - 6141.994481858815, - 5440.9971608858705, - 4864.987515695671, - 4424.636344195016, - 4125.564744236995, - 3945.160874641197, - 3859.8844992966515, - 3851.001095437941, - 3892.2751088809177, - 3975.7672557174633, - 4095.282433835163, - 4245.082405898851, - 4425.532535225781, - 4626.551708318407, - 4835.016919931338, - 5034.061684297908, - 5203.404159271272, - 5327.085301676313, - 5397.142247841192, - 5413.7157271671895, - 5384.841990698675, - 5329.322097142214, - 5260.968439662072, - 5193.786103938731, - 5135.368922989761, - 5083.301172510054, - 5030.033459681661, - 4965.617298365718, - 4881.483424937724, - 4775.83632634369, - 4652.256756351176, - 4522.7676501029555, - 4402.043099028407, - 4302.8883233283195, - 4233.451500694181, - 4194.89893574227, - 4180.287049049402, - 4177.42607406178, - 4176.068066818193, - 4167.683375130922, - 4151.783242787447, - 4135.453125240812, - 4130.156179485991, - 4148.079799384796, - 4196.517210405097, - 4274.814141983527, - 4374.502887379242, - 4478.791488408532, - 4574.274361129807, - 4654.049010982496, - 4725.85657950961, - 4816.341049435374, - 4968.784331235828, - 5238.590495444438, - 5682.361862370358, - 6335.914258575241, - 7232.437600190886, - 8356.432995182226, - 9663.97973409224 - ], - "flow:branch146_seg1:J120": [ - 0.8236065998361441, - 1.0518259917259982, - 1.2948070515294834, - 1.539945382587997, - 1.7742925627882191, - 1.9876681956085014, - 2.1735359469433244, - 2.3295885652222226, - 2.4557377296591762, - 2.5552266883107926, - 2.631612612669293, - 2.6873468887848695, - 2.7249038608231015, - 2.7444739990746596, - 2.745803400802012, - 2.7288723611414003, - 2.6933340021250185, - 2.6410456115750147, - 2.5743621289103604, - 2.4963750136190157, - 2.410971674459578, - 2.3209442075560953, - 2.2285615824176435, - 2.1350932756255996, - 2.0409506117184475, - 1.9465164675458981, - 1.8524138077750882, - 1.7599355078033883, - 1.670968280197662, - 1.5875710535522944, - 1.511090557423565, - 1.4416000310755395, - 1.3772678782439973, - 1.3141676931889101, - 1.2471694144528778, - 1.170674914541, - 1.080142925243314, - 0.9729982513391987, - 0.850221138082441, - 0.7155025067868295, - 0.5754501941850944, - 0.4382780222902958, - 0.3120039433703543, - 0.20323610169092113, - 0.1161904326000682, - 0.052340997515196934, - 0.009890813197197201, - -0.013879328592057316, - -0.02309046543542537, - -0.02153649945626499, - -0.011644158950249903, - 0.004670181752500525, - 0.026786855729257243, - 0.0541868963162246, - 0.08579546232132575, - 0.12006661772550438, - 0.1543320031934317, - 0.18549809562913297, - 0.2106068126956211, - 0.22758041541857535, - 0.23548976776431887, - 0.2351634579691372, - 0.22867181835172984, - 0.21848240801651353, - 0.20729437655472713, - 0.19677739204031008, - 0.18741529624572467, - 0.1785648398555193, - 0.1687733676941658, - 0.15650097698111037, - 0.14080649967936365, - 0.12176155638743494, - 0.10069485747696115, - 0.07964979290040373, - 0.06096578811401838, - 0.04648548784934925, - 0.037053669369526435, - 0.03217317940211172, - 0.030464621204316797, - 0.030021094337627747, - 0.02915533761340886, - 0.027166112299639056, - 0.024482387370208372, - 0.02256825744549482, - 0.02340678663696534, - 0.028623977233275734, - 0.03892866094736895, - 0.053545284038658936, - 0.07045815116097603, - 0.08727514594070893, - 0.1020802742958327, - 0.11484864486104429, - 0.12828977941062916, - 0.1480350760021316, - 0.18224887413410767, - 0.23995232032151573, - 0.32943901344862075, - 0.4567572882710788, - 0.6224285771112473, - 0.8236065998361441 - ], - "pressure:branch146_seg1:J120": [ - 8885.746225599565, - 10210.468887678278, - 11609.027160091891, - 13009.116344028464, - 14338.791531057701, - 15541.689061449366, - 16582.926675735944, - 17452.97332298426, - 18153.68726619718, - 18703.132312039936, - 19124.073398424764, - 19428.279373529484, - 19628.93530288936, - 19727.34475893171, - 19720.090798733385, - 19608.82811010799, - 19391.320489225618, - 19078.728439454706, - 18687.118465356863, - 18232.915316971805, - 17738.85561325809, - 17220.8118761843, - 16690.25862413323, - 16154.28143475025, - 15614.697154712074, - 15073.66089801637, - 14535.351339752371, - 14007.613329470087, - 13501.58149168288, - 13028.909150913996, - 12596.652974116487, - 12203.547768156397, - 11837.912348879647, - 11475.671485421737, - 11086.625857454983, - 10638.946011488453, - 10108.262510222057, - 9481.368332092354, - 8766.626394925477, - 7988.181605207739, - 7184.6954242357715, - 6404.380063103069, - 5692.661119242722, - 5085.776704933904, - 4604.701209697359, - 4257.163754635058, - 4030.2587230785807, - 3906.7240599576035, - 3864.308633197676, - 3880.4023033521844, - 3942.596184693434, - 4041.080854427921, - 4171.837835228563, - 4332.691846677037, - 4516.629206383191, - 4713.945883559523, - 4909.117192407875, - 5084.006449761933, - 5222.0290663733695, - 5312.305507083121, - 5350.737000006474, - 5342.803577912235, - 5301.831957294564, - 5241.7254775945175, - 5177.50797023709, - 5118.2172057189855, - 5065.425011834721, - 5014.615420703448, - 4957.170944936846, - 4884.402625008539, - 4791.768873371962, - 4680.391331076619, - 4558.798766986891, - 4439.26622279064, - 4334.941495400101, - 4255.755208931079, - 4205.680017346243, - 4180.973915820298, - 4172.839803108505, - 4170.601986218147, - 4164.921834660861, - 4152.612388570127, - 4137.150480301746, - 4127.537882807603, - 4135.235244024029, - 4169.008429010651, - 4231.851364407258, - 4318.4378433632755, - 4416.135868140626, - 4511.434857357278, - 4594.360423284931, - 4666.530442594547, - 4745.8267085492125, - 4866.6999022408545, - 5077.44110167312, - 5430.36038367134, - 5969.920217748131, - 6730.014025631465, - 7709.470892311856, - 8885.746225599565 - ], - "flow:J120:branch146_seg2": [ - 0.8236065998361441, - 1.0518259917259982, - 1.2948070515294834, - 1.539945382587997, - 1.7742925627882191, - 1.9876681956085014, - 2.1735359469433244, - 2.3295885652222226, - 2.4557377296591762, - 2.5552266883107926, - 2.631612612669293, - 2.6873468887848695, - 2.7249038608231015, - 2.7444739990746596, - 2.745803400802012, - 2.7288723611414003, - 2.6933340021250185, - 2.6410456115750147, - 2.5743621289103604, - 2.4963750136190157, - 2.410971674459578, - 2.3209442075560953, - 2.2285615824176435, - 2.1350932756255996, - 2.0409506117184475, - 1.9465164675458981, - 1.8524138077750882, - 1.7599355078033883, - 1.670968280197662, - 1.5875710535522944, - 1.511090557423565, - 1.4416000310755395, - 1.3772678782439973, - 1.3141676931889101, - 1.2471694144528778, - 1.170674914541, - 1.080142925243314, - 0.9729982513391987, - 0.850221138082441, - 0.7155025067868295, - 0.5754501941850944, - 0.4382780222902958, - 0.3120039433703543, - 0.20323610169092113, - 0.1161904326000682, - 0.052340997515196934, - 0.009890813197197201, - -0.013879328592057316, - -0.02309046543542537, - -0.02153649945626499, - -0.011644158950249903, - 0.004670181752500525, - 0.026786855729257243, - 0.0541868963162246, - 0.08579546232132575, - 0.12006661772550438, - 0.1543320031934317, - 0.18549809562913297, - 0.2106068126956211, - 0.22758041541857535, - 0.23548976776431887, - 0.2351634579691372, - 0.22867181835172984, - 0.21848240801651353, - 0.20729437655472713, - 0.19677739204031008, - 0.18741529624572467, - 0.1785648398555193, - 0.1687733676941658, - 0.15650097698111037, - 0.14080649967936365, - 0.12176155638743494, - 0.10069485747696115, - 0.07964979290040373, - 0.06096578811401838, - 0.04648548784934925, - 0.037053669369526435, - 0.03217317940211172, - 0.030464621204316797, - 0.030021094337627747, - 0.02915533761340886, - 0.027166112299639056, - 0.024482387370208372, - 0.02256825744549482, - 0.02340678663696534, - 0.028623977233275734, - 0.03892866094736895, - 0.053545284038658936, - 0.07045815116097603, - 0.08727514594070893, - 0.1020802742958327, - 0.11484864486104429, - 0.12828977941062916, - 0.1480350760021316, - 0.18224887413410767, - 0.23995232032151573, - 0.32943901344862075, - 0.4567572882710788, - 0.6224285771112473, - 0.8236065998361441 - ], - "pressure:J120:branch146_seg2": [ - 8885.746225599565, - 10210.468887678278, - 11609.027160091891, - 13009.116344028464, - 14338.791531057701, - 15541.689061449366, - 16582.926675735944, - 17452.97332298426, - 18153.68726619718, - 18703.132312039936, - 19124.073398424764, - 19428.279373529484, - 19628.93530288936, - 19727.34475893171, - 19720.090798733385, - 19608.82811010799, - 19391.320489225618, - 19078.728439454706, - 18687.118465356863, - 18232.915316971805, - 17738.85561325809, - 17220.8118761843, - 16690.25862413323, - 16154.28143475025, - 15614.697154712074, - 15073.66089801637, - 14535.351339752371, - 14007.613329470087, - 13501.58149168288, - 13028.909150913996, - 12596.652974116487, - 12203.547768156397, - 11837.912348879647, - 11475.671485421737, - 11086.625857454983, - 10638.946011488453, - 10108.262510222057, - 9481.368332092354, - 8766.626394925477, - 7988.181605207739, - 7184.6954242357715, - 6404.380063103069, - 5692.661119242722, - 5085.776704933904, - 4604.701209697359, - 4257.163754635058, - 4030.2587230785807, - 3906.7240599576035, - 3864.308633197676, - 3880.4023033521844, - 3942.596184693434, - 4041.080854427921, - 4171.837835228563, - 4332.691846677037, - 4516.629206383191, - 4713.945883559523, - 4909.117192407875, - 5084.006449761933, - 5222.0290663733695, - 5312.305507083121, - 5350.737000006474, - 5342.803577912235, - 5301.831957294564, - 5241.7254775945175, - 5177.50797023709, - 5118.2172057189855, - 5065.425011834721, - 5014.615420703448, - 4957.170944936846, - 4884.402625008539, - 4791.768873371962, - 4680.391331076619, - 4558.798766986891, - 4439.26622279064, - 4334.941495400101, - 4255.755208931079, - 4205.680017346243, - 4180.973915820298, - 4172.839803108505, - 4170.601986218147, - 4164.921834660861, - 4152.612388570127, - 4137.150480301746, - 4127.537882807603, - 4135.235244024029, - 4169.008429010651, - 4231.851364407258, - 4318.4378433632755, - 4416.135868140626, - 4511.434857357278, - 4594.360423284931, - 4666.530442594547, - 4745.8267085492125, - 4866.6999022408545, - 5077.44110167312, - 5430.36038367134, - 5969.920217748131, - 6730.014025631465, - 7709.470892311856, - 8885.746225599565 - ], - "flow:INFLOW:branch0_seg0": [ - 75.20299897326457, - 96.65267412104662, - 119.99354078316293, - 144.17380006076564, - 167.9658841666732, - 190.3696829636227, - 210.539633459793, - 228.17046625364924, - 242.9747282756045, - 255.2014820400909, - 264.9641929042962, - 272.5425139975115, - 278.1173908184526, - 281.71507365610944, - 283.4287638529393, - 283.1528247869028, - 280.9953282566522, - 277.01330499064323, - 271.42719348182607, - 264.5481890704203, - 256.6550987507877, - 248.09449679231844, - 239.07228804540608, - 229.77115927781313, - 220.27790209477615, - 210.66210491346732, - 201.0046443422202, - 191.43529598397646, - 182.11466390146362, - 173.25197793789246, - 164.97566318917916, - 157.33328152109064, - 150.2111639710666, - 143.3062267750492, - 136.1796666660292, - 128.35920133027145, - 119.3648034925374, - 108.93952592334738, - 97.04733249512748, - 83.91749296354521, - 70.08943644257923, - 56.22987686297122, - 43.0640615598422, - 31.27367207163051, - 21.326966664990948, - 13.43401984507759, - 7.669076370632103, - 3.740251938280678, - 1.4637389428075391, - 0.4392048839653444, - 0.4553672117473945, - 1.308051498843595, - 2.867902490283212, - 5.084102812636766, - 7.812543206442015, - 10.922185934965515, - 14.162611975365328, - 17.2596912659035, - 19.919103623620533, - 21.93250239088451, - 23.144467808458348, - 23.603003428606115, - 23.40149680224406, - 22.765029351425937, - 21.903198808636184, - 20.98860513570841, - 20.10078155357604, - 19.220633057034316, - 18.255074714906527, - 17.079230037750044, - 15.60883210599078, - 13.833341524659831, - 11.832825655557745, - 9.77472462346009, - 7.861520308776615, - 6.256079921580375, - 5.076284178657773, - 4.313387383470458, - 3.8751743405077996, - 3.6233866077584307, - 3.4100685192271674, - 3.1528936655615403, - 2.8632600365853316, - 2.6399974317076484, - 2.6403660750881706, - 3.003355397122063, - 3.82233416362992, - 5.044994517247155, - 6.5484299700527515, - 8.125004113094377, - 9.610667498260323, - 10.97085284285842, - 12.389307510260862, - 14.331752993739022, - 17.43007161210963, - 22.566724857016226, - 30.466563730966133, - 41.76171723743491, - 56.77632872832844, - 75.20299897326457 - ], - "pressure:INFLOW:branch0_seg0": [ - 11455.530661134664, - 13142.547841529014, - 14763.510394132121, - 16249.710664505408, - 17535.888161659597, - 18587.606268173553, - 19393.064899776487, - 20001.973776560888, - 20428.547541994274, - 20723.354867197653, - 20904.875959279325, - 20995.736532174706, - 20980.67271733656, - 20865.506004170195, - 20636.18339830412, - 20288.217895599315, - 19848.163239259928, - 19310.940940010383, - 18732.387076349693, - 18120.082602927345, - 17500.09292648975, - 16892.554917235255, - 16289.310521123409, - 15696.689861326186, - 15107.507241624719, - 14524.120380656475, - 13955.935177029432, - 13418.075986275006, - 12923.852253608407, - 12489.16204361351, - 12107.556636984156, - 11762.815204852399, - 11422.494758030829, - 11041.549614326172, - 10572.683286604823, - 9989.270733257361, - 9269.932140616691, - 8438.227929667344, - 7522.677468070257, - 6594.170665796328, - 5710.075396696302, - 4938.179270325767, - 4318.198210485975, - 3882.113220021603, - 3607.349119046286, - 3489.6918024198835, - 3487.8391304967818, - 3549.7079565289364, - 3674.977498217753, - 3815.6963784558047, - 3985.260020368263, - 4177.8680823016575, - 4390.119927759745, - 4630.024698437404, - 4876.185720474534, - 5113.615333634182, - 5318.046479390925, - 5466.242718323684, - 5544.237772464338, - 5552.509546905261, - 5499.871123287262, - 5409.348461970017, - 5303.871230896729, - 5207.580254655142, - 5127.489589658275, - 5068.4816145137265, - 5018.133787758523, - 4960.68102024367, - 4882.555023262397, - 4773.504285863146, - 4639.360878434664, - 4489.290909679206, - 4344.58254481853, - 4225.365300046456, - 4146.13540094184, - 4107.505133284955, - 4107.455012920686, - 4126.355222702349, - 4145.732583573649, - 4154.1765635983675, - 4144.919350303133, - 4124.074544380092, - 4108.226198268442, - 4115.612053633329, - 4160.292387869727, - 4246.579391727154, - 4365.645122600358, - 4497.607383095225, - 4619.388125321377, - 4713.944247844363, - 4782.4162403723785, - 4848.529409177998, - 4959.456091941184, - 5185.592198420191, - 5588.781625658173, - 6252.99794133431, - 7176.347324649182, - 8398.58888095605, - 9859.083351771742, - 11455.530661134664 - ], - "flow:branch3_seg2:RESISTANCE_0": [ - 0.7261826032376304, - 0.9410458101057495, - 1.1777811897838324, - 1.4247796129928059, - 1.6690671390134888, - 1.8991554323954325, - 2.106359290511575, - 2.285696157731837, - 2.434986704950421, - 2.555600374714106, - 2.6500978557484736, - 2.721172683578064, - 2.7715738019855074, - 2.8023634556100236, - 2.8140487584415452, - 2.806711181308158, - 2.7802314260955208, - 2.735888615427329, - 2.675386934352762, - 2.6015823286971633, - 2.518044307289192, - 2.427810936223212, - 2.3336553922853005, - 2.2374098686318145, - 2.1400567291614614, - 2.0422523890958315, - 1.944599434356485, - 1.8481484497101373, - 1.7544888443935198, - 1.6655311931135095, - 1.5828502211917606, - 1.5071556292293895, - 1.4375482028405875, - 1.3712050664067599, - 1.3038156786326, - 1.2301351770068882, - 1.1451845373016913, - 1.045399700747246, - 0.9299723874892999, - 0.8007649778082363, - 0.6627715676482867, - 0.5230561119524078, - 0.3894257195089242, - 0.2691191205067661, - 0.1677953653577665, - 0.08846630023501217, - 0.031216701113062992, - -0.005407441455629138, - -0.024834497309810067, - -0.03065233782077302, - -0.025831733249454362, - -0.012902279406556779, - 0.006885277319563784, - 0.032594315274332326, - 0.06316592735868616, - 0.09727648484215407, - 0.13267611169978233, - 0.16656937800463803, - 0.19600800266426344, - 0.21851586602347575, - 0.23251710771826783, - 0.2379579838817453, - 0.2360492958291748, - 0.22886162191087767, - 0.21894412002844518, - 0.20831530125360162, - 0.19812770294474838, - 0.18845778847689812, - 0.17842591053944443, - 0.16673553333042965, - 0.1522632666634543, - 0.13462226745718123, - 0.11448920505448476, - 0.09336943863920592, - 0.0733481800610444, - 0.056403192972595745, - 0.04384586114437342, - 0.03587079759710009, - 0.03174017305122055, - 0.029931810294576564, - 0.028783038976499874, - 0.0272072178359366, - 0.02501614918851577, - 0.023044670295652697, - 0.022862362128078496, - 0.026105766938026857, - 0.03388442981824113, - 0.046132670990962764, - 0.061601218201375915, - 0.07827849475314223, - 0.0941442282951032, - 0.10837445624164692, - 0.12230859865173224, - 0.13997069810501606, - 0.16805586546213833, - 0.21477394451248877, - 0.2887867656258714, - 0.39718262061064163, - 0.5429816433942994, - 0.7261826032376304 - ], - "pressure:branch3_seg2:RESISTANCE_0": [ - 7992.085908048119, - 9173.56180636616, - 10475.306993202645, - 11833.485939694305, - 13176.758380146757, - 14441.95299898512, - 15581.312166015488, - 16567.43812675596, - 17388.34732734203, - 18051.569969834527, - 18571.186603697766, - 18962.008267777772, - 19239.150676264755, - 19408.454831243955, - 19472.709218308297, - 19432.361823975367, - 19286.756659493683, - 19042.927281575554, - 18710.24455269308, - 18304.412562944926, - 17845.059096498368, - 17348.889674602517, - 16831.15326231883, - 16301.92460481588, - 15766.605461131983, - 15228.805284811573, - 14691.837536327319, - 14161.479103212023, - 13646.469726127356, - 13157.315149639888, - 12702.674371449257, - 12286.44984729677, - 11903.697035305115, - 11538.893689688555, - 11168.337284903777, - 10763.187710364507, - 10296.066629834442, - 9747.376227577512, - 9112.671986634226, - 8402.19464317737, - 7643.405408821549, - 6875.147101904806, - 6140.348947041265, - 5478.814805381978, - 4921.662297139374, - 4485.452767156122, - 4170.65237607535, - 3969.265910834548, - 3862.441673211206, - 3830.450908276845, - 3856.9581367565465, - 3928.0537808943322, - 4036.8603173846022, - 4178.227511681142, - 4346.3327139485655, - 4533.897640174609, - 4728.550817660743, - 4914.920917214551, - 5076.796121545494, - 5200.560904121168, - 5277.550025944506, - 5307.467963717945, - 5296.9725933639875, - 5257.449477130088, - 5202.9157595317565, - 5144.470698634124, - 5088.451792283891, - 5035.279492339702, - 4980.116851091194, - 4915.834561368249, - 4836.25539790748, - 4739.252213005505, - 4628.545832258245, - 4512.413827335346, - 4402.322226223714, - 4309.146227716902, - 4240.096784033727, - 4196.244020659299, - 4173.530809695482, - 4163.587101586805, - 4157.2703121989425, - 4148.605288881208, - 4136.557182384888, - 4125.71654182147, - 4124.714077466614, - 4142.548701957697, - 4185.321510053013, - 4252.671346040705, - 4337.728792485295, - 4429.432721616309, - 4516.67419055924, - 4594.922447166211, - 4671.542607784737, - 4768.661817359595, - 4923.094718256562, - 5179.985068252991, - 5586.961979686966, - 6183.002092877169, - 6984.712324833937, - 7992.085908048119 - ], - "flow:branch9_seg2:RESISTANCE_1": [ - 0.4110597472861178, - 0.5371321082335098, - 0.6826681666496176, - 0.842474943302066, - 1.009904603705952, - 1.1780916581853071, - 1.3407862894350069, - 1.493060948927704, - 1.6314047708340254, - 1.7541726669006101, - 1.8607730086188707, - 1.9513225054506476, - 2.02635737465349, - 2.086084898475238, - 2.1306211186050596, - 2.159908113174401, - 2.1738589202581733, - 2.1729164812706068, - 2.1578537528591086, - 2.1300836411450397, - 2.0914691113922195, - 2.043928055514439, - 1.9893811166663804, - 1.9294096083316892, - 1.8652290449942135, - 1.7978057997682113, - 1.7279843620725774, - 1.6567181828656254, - 1.585163151724995, - 1.514644554402191, - 1.4464125438664743, - 1.3813746307762835, - 1.319692257368675, - 1.260552070233818, - 1.2021870592471287, - 1.1420576426691524, - 1.0773560267358158, - 1.0056018302376613, - 0.9253524794655282, - 0.8364696449219348, - 0.7404900540658583, - 0.6403443274729904, - 0.5398984651646603, - 0.443318019581351, - 0.35445682694989766, - 0.2761939420845139, - 0.21014255296563406, - 0.15686054087125326, - 0.11571702982561606, - 0.08558573562380922, - 0.06516341879307867, - 0.05315010751669122, - 0.0486173224641705, - 0.05074632718754874, - 0.058735145988285234, - 0.07164450336961, - 0.08812668197691723, - 0.10651227126366293, - 0.12492671329066478, - 0.14156890499073557, - 0.15496880730714338, - 0.16432871536619437, - 0.16952950017363266, - 0.17106688831876135, - 0.16988409395291076, - 0.16695206298626647, - 0.16302752138245338, - 0.15844707881939732, - 0.15308236003653822, - 0.1464957248333185, - 0.13818017702746718, - 0.12784742016848175, - 0.11563580273874301, - 0.10213138614321196, - 0.08830433595388439, - 0.07523930559896898, - 0.06385832660366066, - 0.054657687662610435, - 0.047663651872751164, - 0.0424280371811534, - 0.0382812056133507, - 0.034633185062556866, - 0.031203780759534793, - 0.028173057877448303, - 0.02614018642399308, - 0.02588921279293546, - 0.028107957982780627, - 0.03304373551548524, - 0.04038947404607893, - 0.049352261253804784, - 0.05894529359978236, - 0.06852301173168485, - 0.0783206005372753, - 0.08986776235988912, - 0.10617531216250746, - 0.1314256182869185, - 0.17053617437795254, - 0.22819139443237432, - 0.30775896589895024, - 0.4110597472861178 - ], - "pressure:branch9_seg2:RESISTANCE_1": [ - 6628.09975878553, - 7434.446806738149, - 8365.281846175998, - 9387.39106685044, - 10458.255540172382, - 11533.964235275385, - 12574.543904285303, - 13548.47840695685, - 14433.312573290852, - 15218.524572437545, - 15900.330403702403, - 16479.476529904998, - 16959.39254655254, - 17341.40421154613, - 17626.2537166937, - 17813.570599132723, - 17902.798658510856, - 17896.770906751557, - 17800.43110239276, - 17622.816061049176, - 17375.841134584065, - 17071.77298058483, - 16722.895853318714, - 16339.323686163661, - 15928.830796253362, - 15497.598015786445, - 15051.026620227545, - 14595.214792872563, - 14137.555495522825, - 13686.52513208948, - 13250.119564224331, - 12834.143145355189, - 12439.628444954746, - 12061.37333056487, - 11688.076170432543, - 11303.494036898961, - 10889.668543241545, - 10430.735402863198, - 9917.468049028, - 9348.981739187304, - 8735.105238668744, - 8094.582523012409, - 7452.140167346724, - 6834.42065610074, - 6266.072765909162, - 5765.510662516878, - 5343.05214560687, - 5002.265371738108, - 4739.115317081011, - 4546.398373033637, - 4415.779141625063, - 4338.943124507139, - 4309.951854583757, - 4323.568769987521, - 4374.66450903924, - 4457.231553371346, - 4562.650028633944, - 4680.242540861293, - 4798.019592521041, - 4904.461496582894, - 4990.166020512589, - 5050.03111842785, - 5083.29485240571, - 5093.127843420283, - 5085.562801105921, - 5066.80980483701, - 5041.708803213645, - 5012.412720303148, - 4978.10047992669, - 4935.972976228451, - 4882.787508970049, - 4816.700160975257, - 4738.595796218376, - 4652.222808718976, - 4563.786286881257, - 4480.223572746843, - 4407.431893851363, - 4348.585466342246, - 4303.852266535026, - 4270.3657638705035, - 4243.843016394951, - 4220.510617605097, - 4198.576467921554, - 4179.192247377348, - 4166.190191391063, - 4164.584987482798, - 4178.775874530097, - 4210.344646725201, - 4257.327304420077, - 4314.652454453501, - 4376.008593538742, - 4437.266784340806, - 4499.9312474401995, - 4573.7858161809345, - 4678.087381915622, - 4839.585982007792, - 5089.733446613063, - 5458.490850223052, - 5967.397607284619, - 6628.09975878553 - ], - "flow:branch11_seg0:RESISTANCE_2": [ - 0.5144052555984566, - 0.6657059381855717, - 0.834893001101948, - 1.014904826860333, - 1.1974813196380998, - 1.3749519643159032, - 1.5410629715559105, - 1.6916567477013718, - 1.824144798107363, - 1.938243133919079, - 2.0344919256316474, - 2.113630394983397, - 2.176753689230311, - 2.2240682856847562, - 2.255613558778624, - 2.2713718148853452, - 2.271189002672034, - 2.2559083710826195, - 2.2267197591029224, - 2.1854697733121515, - 2.13455231884011, - 2.0760806648456027, - 2.012042372927533, - 1.943908697421736, - 1.8726530640613734, - 1.7990689263191626, - 1.723922032617561, - 1.6482368275284454, - 1.573340065553008, - 1.500725321824699, - 1.431633834131117, - 1.3667257150094474, - 1.305613813056169, - 1.2466490007634174, - 1.1871901272243885, - 1.1239171795609026, - 1.0536080776856371, - 0.9738016668632042, - 0.8837482680309399, - 0.7843405242644496, - 0.6784573671630163, - 0.5704038028280649, - 0.465082079336866, - 0.367232117971438, - 0.28073349115575674, - 0.20802809305702594, - 0.1497712876795811, - 0.10564943517924823, - 0.07409576620233507, - 0.05328739377416914, - 0.04165046075563847, - 0.03772269003914886, - 0.04067718925852698, - 0.04977911880465448, - 0.06415434888410981, - 0.08272371573949296, - 0.10380487969263426, - 0.12537998727539787, - 0.14532384036344906, - 0.16180116198415267, - 0.1735118582073258, - 0.18011588071905646, - 0.18208724177897065, - 0.1804353197205237, - 0.176563894448739, - 0.17161349597948644, - 0.1662559846523709, - 0.16056547166441404, - 0.15406604303605792, - 0.14603780586031703, - 0.13587012509071913, - 0.12337816907829594, - 0.10901789933311086, - 0.09374971286042741, - 0.07889011245042528, - 0.06570332332038831, - 0.055071779231060936, - 0.047212417659417416, - 0.041780012163998126, - 0.037944863339092666, - 0.03477758044958153, - 0.03167338398465803, - 0.028546052140944952, - 0.025913079075847386, - 0.024729738705636984, - 0.02598497593053432, - 0.030358255047229575, - 0.03781551383978493, - 0.04759756184308053, - 0.058505006135790474, - 0.06932310878499627, - 0.0795898818093445, - 0.09020305462547894, - 0.10376436797247696, - 0.12460963397990546, - 0.15813444050599657, - 0.21007706750677854, - 0.28540676401506304, - 0.38665180941606586, - 0.5144052555984566 - ], - "pressure:branch11_seg0:RESISTANCE_2": [ - 7289.087979523227, - 8256.79301685687, - 9338.89767254204, - 10490.236500545778, - 11657.978699316274, - 12793.064370424707, - 13855.494861246625, - 14818.678590990545, - 15666.059789621766, - 16395.8220909439, - 17011.420375002534, - 17517.582635007333, - 17921.31333054244, - 18223.93307121686, - 18425.69369222017, - 18526.482026769074, - 18525.312776923784, - 18427.579284186882, - 18240.891647604232, - 17977.060590419896, - 17651.397306300663, - 17277.418067448692, - 16867.835132251566, - 16432.058506055237, - 15976.31412895026, - 15505.676855255273, - 15025.044340374548, - 14540.968836126925, - 14061.936140409387, - 13597.499020305073, - 13155.596316796398, - 12740.450048029723, - 12349.58402978042, - 11972.450596504108, - 11592.157193632163, - 11187.46932881933, - 10737.778878705705, - 10227.344527426952, - 9651.371397703486, - 9015.56875129165, - 8338.349965865149, - 7647.249458446209, - 6973.621549963966, - 6347.782334323236, - 5794.54519447238, - 5329.528257480179, - 4956.923170320314, - 4674.723921837212, - 4472.909601549953, - 4339.821194590144, - 4265.392457663182, - 4240.270802936673, - 4259.1675040519785, - 4317.382595488675, - 4409.3252247144865, - 4528.093161109644, - 4662.926317189857, - 4800.918690600562, - 4928.4777125900155, - 5033.865123019843, - 5108.765642515676, - 5151.00435381552, - 5163.612995068569, - 5153.047455839615, - 5128.286181315887, - 5096.623894975928, - 5062.357752813373, - 5025.961763123851, - 4984.392024535067, - 4933.044169237716, - 4868.012632495806, - 4788.115248342155, - 4696.268304017338, - 4598.614409084921, - 4503.57379245555, - 4419.232320565324, - 4351.233957346089, - 4300.9662146429, - 4266.221056373509, - 4241.691802616518, - 4221.434157016833, - 4201.5800062977805, - 4181.577883856379, - 4164.737633999663, - 4157.169099492399, - 4165.197479568495, - 4193.168564421039, - 4240.864495297632, - 4303.429560876755, - 4373.192556033198, - 4442.384130380532, - 4508.04945193057, - 4575.930314201975, - 4662.667208010726, - 4795.991582858366, - 5010.413114844876, - 5342.633306727076, - 5824.435011289177, - 6471.988867387694, - 7289.087979523227 - ], - "flow:branch14_seg0:RESISTANCE_3": [ - 0.8761887145104839, - 1.1275486476019838, - 1.4000006687449968, - 1.6797406765611467, - 1.9520180845727593, - 2.2044876080467573, - 2.4284590873446823, - 2.6197637419408712, - 2.777079042735751, - 2.903079434648764, - 3.0012567117857913, - 3.0745385549797613, - 3.125870103871185, - 3.1559308891429216, - 3.164787905211531, - 3.1523981126824276, - 3.118448926709237, - 3.064615344200227, - 2.9932442571669284, - 2.9077368037073663, - 2.8123146982031506, - 2.7103660475856115, - 2.604776762762977, - 2.4973095133070937, - 2.388761319120958, - 2.2796945187475095, - 2.1707882090423896, - 2.0633701122434798, - 1.9594209516545158, - 1.8612239624458349, - 1.770475378456567, - 1.687665455214127, - 1.6112651668649254, - 1.5374590499285699, - 1.4608796672310602, - 1.375340625404532, - 1.2754111959430665, - 1.1575826112170655, - 1.0219314189532538, - 0.871645534220188, - 0.7133344208953969, - 0.5557076924751583, - 0.40777803042735616, - 0.277427006141236, - 0.17023687483745512, - 0.08868679464542686, - 0.031825546262634036, - -0.0028174045047367536, - -0.019566183100204738, - -0.02259459384420712, - -0.01500063925605442, - 0.0007490789704814877, - 0.02364535599841374, - 0.05288894714517763, - 0.0873485122425668, - 0.1254345981406545, - 0.1643679290768226, - 0.2008135390972218, - 0.2314020595465201, - 0.2535262056210677, - 0.26573878870724776, - 0.26846549210266707, - 0.2635749080331983, - 0.25364513380476406, - 0.24165964333167866, - 0.2297291011872081, - 0.21877698942110185, - 0.2084636515348067, - 0.197439339656534, - 0.18406107029882607, - 0.16712623227311893, - 0.14644291349916438, - 0.12313272810325498, - 0.09922678231332403, - 0.07725793320290177, - 0.05941428542343634, - 0.04693507050826361, - 0.03965729861831321, - 0.03637544511916225, - 0.035114860836381115, - 0.033961046624466154, - 0.031880871721502946, - 0.029001887644879782, - 0.02663882550775118, - 0.026828844354549807, - 0.031452008835154116, - 0.04156763147271833, - 0.0567158963691095, - 0.07503804204298752, - 0.09401617538515221, - 0.11138266716885828, - 0.12660932490291363, - 0.14195531377653467, - 0.1628792537078046, - 0.19780566433285676, - 0.25655046967116085, - 0.3487922613665459, - 0.48197513124795194, - 0.6583040476570594, - 0.8761887145104839 - ], - "pressure:branch14_seg0:RESISTANCE_3": [ - 8351.651338849893, - 9600.334563348155, - 10953.797162170868, - 12343.46436443689, - 13696.05953588057, - 14950.254883491089, - 16062.880215323803, - 17013.226239149873, - 17794.72301408718, - 18420.656406600905, - 18908.372636789816, - 19272.415573669943, - 19527.415816548346, - 19676.749076715947, - 19720.748162998163, - 19659.19926816903, - 19490.549561397092, - 19223.11994138214, - 18868.56908677063, - 18443.792864914874, - 17969.763528083207, - 17463.312208572326, - 16938.775274530428, - 16404.909157014867, - 15865.673219676879, - 15323.86099725538, - 14782.846045913508, - 14249.224104537896, - 13732.83483186545, - 13245.020677823324, - 12794.208040022682, - 12382.83236569362, - 12003.297897987704, - 11636.650521254687, - 11256.2263647842, - 10831.293221085602, - 10334.872806473257, - 9749.534581306832, - 9075.658812485111, - 8329.082137209076, - 7542.638454522585, - 6759.594597492091, - 6024.722952942652, - 5377.17688097981, - 4844.687406047963, - 4439.570266494916, - 4157.100080788047, - 3985.0039517896835, - 3901.8008787868607, - 3886.756612795792, - 3924.481176075239, - 4002.721207006863, - 4116.463268745225, - 4261.736945579622, - 4432.922067772315, - 4622.122693197488, - 4815.53218617398, - 4996.58340336424, - 5148.538298790462, - 5258.444637958608, - 5319.113207686277, - 5332.65867909919, - 5308.363676270233, - 5259.035438672449, - 5199.494999163828, - 5140.227527010472, - 5085.820613120228, - 5034.586942547474, - 4979.821359446269, - 4913.361998503855, - 4829.234636230099, - 4726.485909086758, - 4610.687670657004, - 4491.929867428336, - 4382.794998524101, - 4294.152933052341, - 4232.159813751931, - 4196.005954388043, - 4179.702658316753, - 4173.440441313369, - 4167.708627046529, - 4157.374921617004, - 4143.072963958667, - 4131.33395681943, - 4132.277915323149, - 4155.244455216861, - 4205.495933793931, - 4280.748119071582, - 4371.767223263723, - 4466.045083880537, - 4552.316776795123, - 4627.95839494741, - 4704.192815581394, - 4808.13687882665, - 4981.64115416223, - 5273.468304377352, - 5731.69876486113, - 6393.312624182572, - 7269.263525370387, - 8351.651338849893 - ], - "flow:branch19_seg0:RESISTANCE_4": [ - 0.45655957347516607, - 0.6013626306153139, - 0.7777289124553926, - 0.9823580772302187, - 1.2092735644059205, - 1.4507095000331987, - 1.6981108773226685, - 1.9431709958123768, - 2.1786329110366487, - 2.3989732984900156, - 2.6003157678288673, - 2.7803420003408847, - 2.937875391482105, - 3.0722859537921416, - 3.1832776966736644, - 3.2705894351699154, - 3.334042871611482, - 3.3737817752362838, - 3.3903244094654506, - 3.384866516821889, - 3.3592129814391214, - 3.315618550473122, - 3.2566286741238772, - 3.1847427912735746, - 3.102244507448243, - 3.0111272243504943, - 2.913132303854691, - 2.809915054511557, - 2.7031932253590165, - 2.5948236707309573, - 2.486712172381404, - 2.380598738876312, - 2.277671728917377, - 2.17822262072652, - 2.081407393995989, - 1.9852164581339096, - 1.8867436996674367, - 1.7827230505290368, - 1.6702370984615518, - 1.5473538839967413, - 1.4137587938936809, - 1.2709269819336837, - 1.1220388567782693, - 0.9715215621823541, - 0.8244184072370123, - 0.6855663634019412, - 0.5590022975441269, - 0.44760592297644347, - 0.3528249433505283, - 0.27497482515226995, - 0.21348567337135588, - 0.1672664900139083, - 0.13510904059171633, - 0.11576125798609774, - 0.10798713080626497, - 0.11045058414397224, - 0.12151336149279213, - 0.13916777311263598, - 0.16104166248969992, - 0.18457380985308666, - 0.2072860458807525, - 0.22714579255460526, - 0.24277872357014288, - 0.25361805406179855, - 0.2598455128085996, - 0.2621334388339357, - 0.2613512041173061, - 0.25823788595883107, - 0.25318153415043837, - 0.2461718355066264, - 0.23690390535449235, - 0.22502172010082597, - 0.21037825617401898, - 0.19322548114400456, - 0.1742937566603221, - 0.15467697853657178, - 0.13560345211379882, - 0.11814240628084514, - 0.1029857700575376, - 0.09030281863524993, - 0.07981730666672877, - 0.07100916635597872, - 0.06338655037108039, - 0.0567481567101582, - 0.05131868398533478, - 0.04770136478774454, - 0.046679916921717496, - 0.04889084744831083, - 0.054563573632013924, - 0.06336907953029819, - 0.07452115858980941, - 0.08714252863045914, - 0.10080948339964474, - 0.11614318414390194, - 0.13529035412529658, - 0.162046482599555, - 0.20170242470691452, - 0.2602977490727033, - 0.34366600934880914, - 0.45655957347516607 - ], - "pressure:branch19_seg0:RESISTANCE_4": [ - 5694.784949319421, - 6232.622417154403, - 6887.694183660905, - 7647.741892606448, - 8490.566992058599, - 9387.324939209302, - 10306.240139814989, - 11216.459276060716, - 12091.028106007645, - 12909.431518133122, - 13657.271556980108, - 14325.9373638382, - 14911.058713236562, - 15410.295662447787, - 15822.548822850427, - 16146.8480833256, - 16382.531198414319, - 16530.132165702016, - 16591.57595481017, - 16571.303874806446, - 16476.01975039788, - 16314.098318450717, - 16094.994065058683, - 15827.990577916356, - 15521.56978163162, - 15183.13570582433, - 14819.156236460343, - 14435.779634336035, - 14039.386080997127, - 13636.872432441014, - 13235.317274251966, - 12841.18346584475, - 12458.884890790761, - 12089.504177536553, - 11729.906407841529, - 11372.627422200594, - 11006.87313420187, - 10620.512489336472, - 10202.709434471208, - 9746.288152956344, - 9250.080086667562, - 8719.564353173784, - 8166.553844930283, - 7607.492163570284, - 7061.111514370554, - 6545.377709194826, - 6075.284756433587, - 5661.528685209945, - 5309.486655934393, - 5020.330395912336, - 4791.943161924868, - 4620.272694233628, - 4500.831285254787, - 4428.9684212355805, - 4400.09322371139, - 4409.243151423204, - 4450.333279449665, - 4515.906508560038, - 4597.1520119811175, - 4684.556731194979, - 4768.916079369289, - 4842.680515520465, - 4900.745422424316, - 4941.0056087753255, - 4964.136064095649, - 4972.634036199024, - 4969.728606247792, - 4958.164905950375, - 4939.384256516456, - 4913.348352003574, - 4878.924768803457, - 4834.791139615001, - 4780.401379382908, - 4716.691363374356, - 4646.373851029305, - 4573.511865367311, - 4502.667662513368, - 4437.812645899615, - 4381.516825851078, - 4334.40893591865, - 4295.462926645899, - 4262.7471264782, - 4234.434682248322, - 4209.777904224453, - 4189.611383436347, - 4176.17568783705, - 4172.381755964067, - 4180.593746093744, - 4201.663775598791, - 4234.369790850636, - 4275.791609429078, - 4322.670769561045, - 4373.433512359767, - 4430.386997622503, - 4501.504732443754, - 4600.88418389922, - 4748.177009816495, - 4965.815791112139, - 5275.467913727972, - 5694.784949319421 - ], - "flow:branch21_seg0:RESISTANCE_5": [ - 1.0076529874721285, - 1.2752946836254933, - 1.555244235275581, - 1.8336706344345952, - 2.0963895942442305, - 2.3325151359815424, - 2.5356855702407763, - 2.7049865395258292, - 2.8406416042835003, - 2.9465703870178395, - 3.0277585866623995, - 3.0856868193954456, - 3.123158709181402, - 3.1401669957805916, - 3.135641666103824, - 3.1104396515684334, - 3.0638498451547718, - 2.9984697497339594, - 2.91794992523289, - 2.8252890618825, - 2.7253603537512587, - 2.621112563989305, - 2.514598223120456, - 2.4072114512940774, - 2.2991364223273005, - 2.1908545143182745, - 2.0833114362410434, - 1.9781864801439595, - 1.8777896644437149, - 1.78445265519624, - 1.6993706640599315, - 1.6219792790055816, - 1.5496678129062256, - 1.477189454704909, - 1.398413981419489, - 1.3070336284052768, - 1.1985504063380452, - 1.070656228476995, - 0.9257923944012098, - 0.7693154906021163, - 0.6091539286083844, - 0.455260885794045, - 0.31640842964925475, - 0.19940172665056013, - 0.10780598008494847, - 0.042867477532374375, - 0.00124601720102628, - -0.020519066312724658, - -0.02678418852904077, - -0.022204978912988175, - -0.008717595025800813, - 0.011752603735924703, - 0.038533270812073646, - 0.07131048445911695, - 0.1083807841493445, - 0.14778756914077276, - 0.18629083910205008, - 0.2201873960639027, - 0.24628789854757455, - 0.26269142681733204, - 0.26876474775376213, - 0.26584552926958427, - 0.2569347973361338, - 0.24463314050868568, - 0.2319243903829967, - 0.2204374076887516, - 0.21018360521360702, - 0.20010521426249656, - 0.18841312460378204, - 0.17341466276569886, - 0.15438988237699952, - 0.1317390439037989, - 0.10740052901838917, - 0.08389279196731828, - 0.06379274896564509, - 0.04893579626636687, - 0.039916712105662375, - 0.03572042017957435, - 0.03447880212632659, - 0.034090872976969985, - 0.03274363446579608, - 0.030048926524689004, - 0.02692259902879414, - 0.025289212994221485, - 0.027460906552084007, - 0.035030623305082546, - 0.04838319337130121, - 0.06622377678674318, - 0.08577320387472377, - 0.10443893058243689, - 0.12041845687837696, - 0.1344348701904035, - 0.15058113215444982, - 0.17619815034112885, - 0.22123073126034104, - 0.29612380207341804, - 0.40924493702121817, - 0.5671493605620672, - 0.7682778754748111, - 1.0076529874721285 - ], - "pressure:branch21_seg0:RESISTANCE_5": [ - 9210.063813413428, - 10594.169229787207, - 12041.924554608728, - 13481.802916897286, - 14840.45046876541, - 16061.570518294346, - 17112.26367465545, - 17987.80135040869, - 18689.339685384854, - 19237.14895441768, - 19657.012632195598, - 19956.58770528446, - 20150.373077145137, - 20238.33120154622, - 20214.928520250625, - 20084.596642507713, - 19843.658087970965, - 19505.54580765151, - 19089.1386228998, - 18609.944219739038, - 18093.16425546759, - 17554.048218884735, - 17003.21074386897, - 16447.86150394106, - 15888.952951508518, - 15328.974526903488, - 14772.816951310671, - 14229.164660874387, - 13709.963884632998, - 13227.272802098792, - 12787.272434218334, - 12387.043931806611, - 12013.086161651489, - 11638.26531124544, - 11230.879015242894, - 10758.306753988643, - 10197.287236450935, - 9535.884223227184, - 8786.722862113736, - 7977.504667794649, - 7149.231313394067, - 6353.37552125504, - 5635.301919910506, - 5030.203335870258, - 4556.5171697744645, - 4220.6885810081, - 4005.443761124003, - 3892.885925733707, - 3860.485930820815, - 3884.167251494621, - 3953.9170750806697, - 4059.778431467072, - 4198.274289500195, - 4367.7812071238095, - 4559.489761229079, - 4763.281417508443, - 4962.400558013995, - 5137.696144470143, - 5272.6745405008805, - 5357.5051653703395, - 5388.913262555137, - 5373.81656359679, - 5327.73483376843, - 5264.116981655111, - 5198.3938520489255, - 5138.989076210912, - 5085.961675218272, - 5033.8414125527315, - 4973.375928818533, - 4895.811586020947, - 4797.425191226053, - 4680.286686027673, - 4554.420385060554, - 4432.850440441636, - 4328.903339568309, - 4252.070809370562, - 4205.428737462571, - 4183.727670449994, - 4177.306659459303, - 4175.3004891035225, - 4168.33326334138, - 4154.397617623851, - 4138.229857209022, - 4129.782823394882, - 4141.013707294301, - 4180.160395231283, - 4249.213030963247, - 4341.475367106983, - 4442.574965220325, - 4539.1045187540685, - 4621.742423143317, - 4694.228115253834, - 4777.72829089844, - 4910.206354418151, - 5143.091738345232, - 5530.400242405247, - 6115.404663756247, - 6932.005257136996, - 7972.138655179815, - 9210.063813413428 - ], - "flow:branch22_seg0:RESISTANCE_6": [ - 1.4576658115956491, - 1.8569799641524358, - 2.279859373723507, - 2.704497927039966, - 3.1085352838651117, - 3.4747057157650967, - 3.7922255691021713, - 4.057791448509152, - 4.271590294034614, - 4.439619605828606, - 4.568246529718696, - 4.661433302661092, - 4.723405340730625, - 4.75420423113176, - 4.753168134618819, - 4.720373047878183, - 4.655160280902705, - 4.561065398667037, - 4.4424272414111465, - 4.304675431343625, - 4.15474871676212, - 3.997377064324914, - 3.836360563379583, - 3.673769829086107, - 3.51016318003131, - 3.3461861100957364, - 3.1829745551166844, - 3.0228794197294997, - 2.869273638970626, - 2.7257519680133067, - 2.5945172063473603, - 2.4754339427421077, - 2.364997857414993, - 2.2560127858692995, - 2.1393628414624746, - 2.005290143963092, - 1.8461484979083962, - 1.6578538965502152, - 1.4427639798397698, - 1.2078628138562235, - 0.9650613893141501, - 0.7288981973673544, - 0.5131799228637198, - 0.3290107183103944, - 0.1831318772416256, - 0.07760079694366963, - 0.008637543873015385, - -0.02870563895518208, - -0.041696411380686124, - -0.036911072180032416, - -0.018249960450287553, - 0.011116444114516195, - 0.05029708961785072, - 0.09848676188770934, - 0.1537131549471024, - 0.2132163333681329, - 0.27223358129883296, - 0.32533236649428965, - 0.36744368972188335, - 0.3951530296743, - 0.4070806816530431, - 0.40493979085610327, - 0.39257683283533285, - 0.3743056978761713, - 0.35480065990642323, - 0.33678699442955656, - 0.3208610821635837, - 0.30570274087066385, - 0.28866408232540375, - 0.2670674915916089, - 0.2394065917611698, - 0.20598294023102862, - 0.16932207966544804, - 0.1330878534743678, - 0.10135372584959183, - 0.0772053900740631, - 0.06191682137994065, - 0.05438284340918368, - 0.052045281002855465, - 0.051543485426026714, - 0.049997912210084455, - 0.04637767710359556, - 0.04163981640274546, - 0.038494661341085736, - 0.040452687994129016, - 0.050252989534946516, - 0.06893840342797372, - 0.09492000934252168, - 0.12447656795340602, - 0.15342562887856503, - 0.1785663306309041, - 0.2001950551684685, - 0.22348917449427572, - 0.25869563207349255, - 0.3203496636642429, - 0.42419325345289627, - 0.5843281681926499, - 0.8109086369036876, - 1.1038765213428956, - 1.4576658115956491 - ], - "pressure:branch22_seg0:RESISTANCE_6": [ - 8930.210458713289, - 10281.070244088078, - 11711.650114084929, - 13148.181079296228, - 14515.019228231093, - 15753.755466052418, - 16827.909232416, - 17726.30530618793, - 18449.576096192875, - 19018.01084515766, - 19453.14928862887, - 19768.39547584943, - 19978.043777843788, - 20082.234882042485, - 20078.729819414133, - 19967.78568294378, - 19747.17415731632, - 19428.855881823525, - 19027.508935761656, - 18561.501459213876, - 18054.306890264277, - 17521.926469299433, - 16977.21570832064, - 16427.179394743252, - 15873.706292392793, - 15318.980074748768, - 14766.843555875112, - 14225.249728448915, - 13705.609062823494, - 13220.082435768963, - 12776.12180767036, - 12373.269089114028, - 11999.669341728662, - 11630.978301316974, - 11236.35737977833, - 10782.796156844019, - 10244.427936090651, - 9607.436727165814, - 8879.798307982983, - 8085.13942441212, - 7263.7543616852145, - 6464.826107467368, - 5735.06198533058, - 5112.026787247613, - 4618.525971724038, - 4261.519610770196, - 4028.22037846081, - 3901.8902606387614, - 3857.943127940845, - 3874.131690865925, - 3937.261297529474, - 4036.606373865075, - 4169.152535919657, - 4332.17578446451, - 4519.003907128222, - 4720.300180541722, - 4919.952575435835, - 5099.583107220194, - 5242.043605283772, - 5335.782915001014, - 5376.13356445549, - 5368.891038078834, - 5327.067770078934, - 5265.257435305045, - 5199.272868424975, - 5138.333540018799, - 5084.456976196155, - 5033.177066544869, - 4975.536137772001, - 4902.475952610314, - 4808.900513400439, - 4695.82997371796, - 4571.808117948065, - 4449.229544906521, - 4341.874580005385, - 4260.181969127411, - 4208.4615066980405, - 4182.974436431609, - 4175.066579847278, - 4173.369030534595, - 4168.140433728297, - 4155.893359619741, - 4139.865414082359, - 4129.225511979316, - 4135.849418112752, - 4169.00334754718, - 4232.215167212361, - 4320.1096391830915, - 4420.097997136016, - 4518.031220834117, - 4603.080956126198, - 4676.249848337173, - 4755.0526877343555, - 4874.154371019933, - 5082.726873018411, - 5434.024538067984, - 5975.752937052265, - 6742.263318348063, - 7733.359003189766, - 8930.210458713289 - ], - "flow:branch23_seg0:RESISTANCE_7": [ - 0.3511085934167681, - 0.46180531835089467, - 0.5956542667536479, - 0.7498781935443294, - 0.9197515659570107, - 1.0993434533368334, - 1.282271685295094, - 1.4624726400513923, - 1.6347276989313675, - 1.7951852032683546, - 1.9412016772397531, - 2.0712367847896194, - 2.184565103865978, - 2.2807811584804583, - 2.359696295566915, - 2.421133544546207, - 2.4649645580013706, - 2.491344278991713, - 2.50070855716939, - 2.4940134215351897, - 2.472671503550566, - 2.4383915363087705, - 2.3930774941981117, - 2.338564365423551, - 2.276502983770067, - 2.208327875360085, - 2.1352941068015387, - 2.0586137048776623, - 1.9795628336160689, - 1.8995274210166713, - 1.819913483581374, - 1.7419760257343162, - 1.6665179145722586, - 1.5936344297457181, - 1.5225634049540968, - 1.4516838477948213, - 1.378753703826776, - 1.3013307196219845, - 1.2173261510150493, - 1.1254484332911774, - 1.0256674110497026, - 0.9192957763223601, - 0.808877505490848, - 0.6978157188509885, - 0.589888512393963, - 0.48862857074326344, - 0.3968934364927149, - 0.31666654412698164, - 0.24884346451717287, - 0.19351552281660006, - 0.150170913152013, - 0.11794385673239939, - 0.09593411567610133, - 0.08321889652771865, - 0.07888138909411481, - 0.08192422895219034, - 0.09109965334591297, - 0.10487956819021452, - 0.1214734119224554, - 0.13897606060376902, - 0.15557539675337123, - 0.16983311142366625, - 0.18082439872970218, - 0.18822585483529047, - 0.19226205099501215, - 0.19348342719247166, - 0.1925465747485028, - 0.18997581834898275, - 0.1860118821012923, - 0.18059908495603433, - 0.17348099671289594, - 0.16439335995454882, - 0.15325982090837734, - 0.1403167637485173, - 0.12616010798648572, - 0.1116374476442371, - 0.09766573854527262, - 0.08500686599024003, - 0.07412165011641714, - 0.06507196864011193, - 0.05760058054722693, - 0.051300692852773166, - 0.04581916141779535, - 0.04104669180725624, - 0.037202092205484864, - 0.03477291924172917, - 0.03435371213701542, - 0.03638982893293684, - 0.04099411852110329, - 0.047857705000714026, - 0.05634940032855889, - 0.06582096251799674, - 0.07602849159445958, - 0.08756912465174062, - 0.1022197478270146, - 0.12297892353456044, - 0.15391749966960633, - 0.19957400070467157, - 0.26418479905575115, - 0.3511085934167681 - ], - "pressure:branch23_seg0:RESISTANCE_7": [ - 5773.3331551973815, - 6332.740907969876, - 7009.148809662567, - 7788.522005762675, - 8646.979937321288, - 9554.550546976656, - 10478.98142981724, - 11389.629971656808, - 12260.12379565281, - 13070.998480247601, - 13808.895176113814, - 14466.029769203975, - 15038.736327033177, - 15524.965769905599, - 15923.764736392981, - 16234.238902710747, - 16455.73966303844, - 16589.050024720364, - 16636.372561270815, - 16602.538581251407, - 16494.686841403298, - 16321.452453021355, - 16092.457182553808, - 15816.974173616356, - 15503.345942380149, - 15158.821890622115, - 14789.74451845817, - 14402.238823529495, - 14002.753922115557, - 13598.293624567532, - 13195.963258817756, - 12802.105010735271, - 12420.776182635405, - 12052.458271827245, - 11693.299658150298, - 11335.108629359022, - 10966.554925798084, - 10575.29657888027, - 10150.77808499535, - 9686.472500233362, - 9182.227433772161, - 8644.676596771615, - 8086.676016468646, - 7525.423418254257, - 6980.0114734739045, - 6468.292663017677, - 6004.7076262253, - 5599.27968247229, - 5256.534614149711, - 4976.933934448813, - 4757.891223820322, - 4595.0312546487285, - 4483.804659727016, - 4419.548086878638, - 4397.628420443066, - 4413.005462609991, - 4459.373623401386, - 4529.010653774545, - 4612.8679208945505, - 4701.3178490401815, - 4785.202872183278, - 4857.254471976563, - 4912.799126397056, - 4950.2025087440525, - 4970.599493612415, - 4976.771738674926, - 4972.037339164264, - 4959.045978658912, - 4939.014160465793, - 4911.660499469554, - 4875.689121359678, - 4829.764596853423, - 4773.501070882533, - 4708.093114828622, - 4636.5522179202035, - 4563.161710737901, - 4492.555444887726, - 4428.5836204922125, - 4373.574999830288, - 4327.84228297729, - 4290.085498161668, - 4258.248910223128, - 4230.54789934302, - 4206.430144264038, - 4187.001395809042, - 4174.725529566757, - 4172.607059444595, - 4182.896609762066, - 4206.164464282266, - 4240.849713469209, - 4283.762637978992, - 4331.627336079061, - 4383.211255164491, - 4441.532037536213, - 4515.569207037601, - 4620.476049032052, - 4776.824661513459, - 5007.550553889043, - 5334.062305089656, - 5773.3331551973815 - ], - "flow:branch28_seg2:RESISTANCE_8": [ - 0.36458152664169846, - 0.4795955258606708, - 0.6159798501022837, - 0.7697528327871013, - 0.9352308679184547, - 1.105937356600963, - 1.275444008043062, - 1.438123093051125, - 1.5895971248732064, - 1.727101006903872, - 1.849088337791004, - 1.955033680168856, - 2.0449813091498084, - 2.1190230411876105, - 2.177257566019287, - 2.219616219140887, - 2.2460352152566796, - 2.2567523429398313, - 2.2523227887997046, - 2.2338910250248962, - 2.2030431918778723, - 2.1616105178548786, - 2.1115217660004126, - 2.0545069806527185, - 1.9920156369343038, - 1.9252235274373541, - 1.855129157840877, - 1.7827388461044278, - 1.7091880107387134, - 1.6357678263190658, - 1.5637851164280323, - 1.4943361063354608, - 1.4279515153916085, - 1.3643473159981006, - 1.3023060998668512, - 1.2397657436534752, - 1.1741619991008438, - 1.1029562251299885, - 1.0242428449505772, - 0.9371880912453501, - 0.8424407832436346, - 0.7420587659354613, - 0.6392624719594748, - 0.5379047983358586, - 0.441896651195559, - 0.3545382873134326, - 0.2781647346333575, - 0.21403596635775557, - 0.1622576235922507, - 0.12222913160091217, - 0.09290294808097992, - 0.07309994068381259, - 0.06180618383743929, - 0.05811003326282046, - 0.061177215222597704, - 0.0700796012855787, - 0.08359880251035472, - 0.10020750137959024, - 0.11811930698928107, - 0.13549334156746237, - 0.15068524965978441, - 0.16254880556064327, - 0.1705373250089266, - 0.17475405441758723, - 0.17581076296232953, - 0.17453621006472952, - 0.1717204342884958, - 0.1678677037268499, - 0.16308556506482397, - 0.15714030945332805, - 0.14962328403606062, - 0.14020388769306058, - 0.12884261847057288, - 0.11589983441295186, - 0.10213036235308691, - 0.08850785364065711, - 0.07598653308376503, - 0.06525037679381192, - 0.056580391273602405, - 0.049799827587526393, - 0.04443097806102949, - 0.039920925758829606, - 0.03588587582503914, - 0.0322989000826727, - 0.02953034945424209, - 0.028219951942277534, - 0.029046325902725833, - 0.03242167067624536, - 0.03831622592850877, - 0.04620805429748781, - 0.05527403976286233, - 0.06478942811179879, - 0.07461963650296881, - 0.08567529090799615, - 0.10020209750532755, - 0.12170043659740302, - 0.15463832499806585, - 0.20365936694543882, - 0.27274343355555947, - 0.36458152664169846 - ], - "pressure:branch28_seg2:RESISTANCE_8": [ - 6176.464115064434, - 6863.385524210558, - 7677.941255075336, - 8596.350793668556, - 9584.668788408893, - 10604.213735567226, - 11616.59265168999, - 12588.19390954719, - 13492.872958139962, - 14314.11525080851, - 15042.684901459703, - 15675.443734061515, - 16212.656181837669, - 16654.870618796725, - 17002.67646964945, - 17255.663635467623, - 17413.451158406773, - 17477.459231337907, - 17451.00370772785, - 17340.919950696374, - 17156.681187081907, - 16909.224433835894, - 16610.06923325258, - 16269.548279636863, - 15896.318566923703, - 15497.40251942469, - 15078.763714901852, - 14646.412389983083, - 14207.129834673444, - 13768.627592478624, - 13338.710670640567, - 12923.92627743147, - 12527.44413554958, - 12147.567889425685, - 11777.026564896323, - 11403.504124929677, - 11011.685590148021, - 10586.408920111737, - 10116.2930524898, - 9596.358309813719, - 9030.479766616307, - 8430.947907446885, - 7816.99677460656, - 7211.637805558361, - 6638.2288973300465, - 6116.4808420836425, - 5660.339600280454, - 5277.330365145403, - 4968.084078456291, - 4729.013806042453, - 4553.863098779101, - 4435.589585650539, - 4368.137593543959, - 4346.0623246343075, - 4364.381076857733, - 4417.550600747631, - 4498.294065186013, - 4597.489562332562, - 4704.467867872003, - 4808.234334528605, - 4898.968045079162, - 4969.823163519018, - 5017.534616678372, - 5042.719044026824, - 5049.030238555667, - 5041.417968063415, - 5024.600739924364, - 5001.59029663539, - 4973.028961052259, - 4937.520906466595, - 4892.625452632444, - 4836.36808350192, - 4768.512873553595, - 4691.212062143602, - 4608.973854492438, - 4527.613385815646, - 4452.829766258735, - 4388.708044924042, - 4336.926533879631, - 4296.429599648377, - 4264.364131902897, - 4237.427832810717, - 4213.328486597938, - 4191.905264657554, - 4175.37008883645, - 4167.543736291777, - 4172.479256917507, - 4192.638512346629, - 4227.8437589050545, - 4274.977724342056, - 4329.124346087786, - 4385.955027723156, - 4444.665972878678, - 4510.695897535722, - 4597.457287679489, - 4725.856173760425, - 4922.577797807291, - 5215.356098196537, - 5627.960865508556, - 6176.464115064434 - ], - "flow:branch30_seg2:RESISTANCE_9": [ - 0.9418335491613341, - 1.2100299354605426, - 1.4996264788848697, - 1.795970681135594, - 2.08336118053307, - 2.3487900169501206, - 2.5832381666989552, - 2.782567889222666, - 2.9454768183216076, - 3.07501310007866, - 3.1749928330207635, - 3.2484687709764377, - 3.298682966607554, - 3.3263190757804417, - 3.331491722302681, - 3.3143035711353033, - 3.274438393310451, - 3.213883201829427, - 3.1351886684696355, - 3.0419625903750744, - 2.938779361702982, - 2.829136349272163, - 2.716039399193993, - 2.6013155546185374, - 2.485742242505727, - 2.3699160901812744, - 2.2545658350246716, - 2.1411166385098106, - 2.031679358553468, - 1.928654365023794, - 1.833755131609211, - 1.7473858440678698, - 1.667789587589455, - 1.5907575514347383, - 1.5105097424466578, - 1.4204522516530664, - 1.3148796560653375, - 1.1901657012082456, - 1.0466138242932492, - 0.887749809731781, - 0.7207342581970676, - 0.5549287610465039, - 0.39988408176191304, - 0.2638952348155534, - 0.15277851433856982, - 0.06907249449190257, - 0.011536727692316262, - -0.022460309787394456, - -0.037576696267516606, - -0.03830623167140883, - -0.027857984211230123, - -0.008900327495384918, - 0.017504070323812487, - 0.05048955286085383, - 0.08874979058075277, - 0.13055228247817283, - 0.17288084387337213, - 0.21216514133388029, - 0.24485644121454905, - 0.2682676165428722, - 0.2809452830413468, - 0.28346483046895815, - 0.27791385783834566, - 0.26705372845508646, - 0.2540925580939395, - 0.24123298193849751, - 0.22940290972160657, - 0.21820667882426611, - 0.20619174638758897, - 0.19162956175892137, - 0.17329488834572432, - 0.15104311060248912, - 0.12614496884498422, - 0.10078503636581679, - 0.07765275361786979, - 0.05903521927825309, - 0.04618590941012037, - 0.03884496583722555, - 0.035684424479667166, - 0.03459123332022756, - 0.03353819732071206, - 0.031487024447913084, - 0.02863637370313062, - 0.026426762289899472, - 0.02703619796094422, - 0.03242220700697126, - 0.043646158203188984, - 0.06012969052672271, - 0.0798234236334971, - 0.10005043678753263, - 0.11844165299159456, - 0.1345606364679099, - 0.1509778449898262, - 0.17366430367812752, - 0.21171151764991114, - 0.27557478276273384, - 0.3754557997765016, - 0.5191657984254774, - 0.7085895137961541, - 0.9418335491613341 - ], - "pressure:branch30_seg2:RESISTANCE_9": [ - 8525.558818791911, - 9814.541058436944, - 11206.374879494098, - 12630.638713894936, - 14011.87003724612, - 15287.551118383175, - 16414.3355069198, - 17372.33675261814, - 18155.295535865345, - 18777.86159232302, - 19258.375524166422, - 19611.5092124051, - 19852.844329703665, - 19985.666603666006, - 20010.52692930696, - 19927.918726069034, - 19736.322161679836, - 19445.28704590365, - 19067.072196488203, - 18619.017095545903, - 18123.10680002396, - 17596.150051371736, - 17052.59328679198, - 16501.217482807122, - 15945.759041528327, - 15389.08542152631, - 14834.699017268407, - 14289.449316377535, - 13763.48134132282, - 13268.331541835436, - 12812.235066729103, - 12397.134478582544, - 12014.585845625028, - 11644.3611462648, - 11258.681078075275, - 10825.854566943877, - 10318.460703128005, - 9719.07129648872, - 9029.144700666851, - 8265.626235283831, - 7462.930559016996, - 6666.050541311769, - 5920.888234291204, - 5267.3104179663105, - 4733.270861360787, - 4330.970239706038, - 4054.446821279786, - 3891.053204696881, - 3818.4021374347385, - 3814.895907571669, - 3865.111369448033, - 3956.2240169717393, - 4083.126546521475, - 4241.658515363641, - 4425.541555646397, - 4626.449071113687, - 4829.884936231073, - 5018.689723731213, - 5175.807817373537, - 5288.324580271894, - 5349.2548828094, - 5361.3641134032505, - 5334.685509592261, - 5282.4904964959605, - 5220.1976422518555, - 5158.393061278736, - 5101.536392955552, - 5047.726037876658, - 4989.98091037843, - 4919.993400047684, - 4831.874880907994, - 4724.9303142516765, - 4605.267022108046, - 4483.384311400021, - 4372.207937862736, - 4282.729957040972, - 4220.974717008612, - 4185.693309908887, - 4170.5033898142465, - 4165.249389160104, - 4160.188378757199, - 4150.3302093763095, - 4136.629658700893, - 4126.010015731529, - 4128.939032662079, - 4154.824802782602, - 4208.768384760723, - 4287.990109948123, - 4382.640424060191, - 4479.8537425406685, - 4568.244012743865, - 4645.713674840364, - 4724.616640317651, - 4833.650332878435, - 5016.509556875921, - 5323.443649583393, - 5803.483141483177, - 6494.169688285793, - 7404.561540501059, - 8525.558818791911 - ], - "flow:branch32_seg0:RESISTANCE_10": [ - 0.8268974182908504, - 1.0553911701319845, - 1.2984195460221517, - 1.5433935303919084, - 1.777336222266294, - 1.9901154128848235, - 2.1753086508466075, - 2.33077915595518, - 2.4563999474180336, - 2.55547910880276, - 2.6316313308425254, - 2.6872140179147888, - 2.724797151802632, - 2.744615577211594, - 2.746448124756344, - 2.7303940597688956, - 2.6960668600893913, - 2.645284761008097, - 2.580344297350924, - 2.5041621831342127, - 2.4205410723123952, - 2.332166021887538, - 2.241247514945326, - 2.1490636938657066, - 2.0560311601742756, - 1.962557081540782, - 1.8692702252146172, - 1.7774468625874869, - 1.6889455764271983, - 1.605808047398215, - 1.5293735926712257, - 1.4597565237345524, - 1.3952066478154053, - 1.3318733817589827, - 1.2647279467468222, - 1.18822407002429, - 1.0978218504370572, - 0.9908410765013341, - 0.8681345599796815, - 0.7332012718759837, - 0.5924539456820107, - 0.4540361557078201, - 0.3259504346716226, - 0.21493092805676522, - 0.12540178150332743, - 0.059095442237680526, - 0.014402146981253004, - -0.011216476699698335, - -0.021806767326604047, - -0.021200449810180055, - -0.011849245866869479, - 0.004224847058878917, - 0.02634032950659627, - 0.05392079751887897, - 0.08582700882031419, - 0.12051553317033539, - 0.15529655556622493, - 0.18705475661590576, - 0.21280823852639075, - 0.2304472178865849, - 0.23897208993722238, - 0.2391568265188863, - 0.23304902556025056, - 0.22305984413745958, - 0.21190782665430047, - 0.20130008203113134, - 0.1917620892176096, - 0.18270839621262924, - 0.1727261410842017, - 0.16028812160805664, - 0.14444268531470347, - 0.12522880118619642, - 0.10394382593880047, - 0.08260272963802598, - 0.06354287353700097, - 0.048633564831082284, - 0.03876770655253691, - 0.03349087779656604, - 0.03147347824048686, - 0.030828434944058528, - 0.02985258234572911, - 0.027822117264587404, - 0.0251258895167357, - 0.02319064292925205, - 0.02398448773073387, - 0.029137424011982497, - 0.03939357526747628, - 0.05401953924111813, - 0.0710213153686451, - 0.08803646344166502, - 0.1031296708121732, - 0.11623426429681193, - 0.13000678702985236, - 0.15003131813147397, - 0.1844510736422636, - 0.24230733598787227, - 0.33194178279793735, - 0.45947915127144334, - 0.6254063463528141, - 0.8268974182908504 - ], - "pressure:branch32_seg0:RESISTANCE_10": [ - 8683.81195138324, - 9978.350107826273, - 11355.234609713838, - 12743.142014389925, - 14068.551302880884, - 15274.058144679626, - 16323.275950090117, - 17204.098727268076, - 17915.807062751595, - 18477.143002519795, - 18908.585684580266, - 19223.4910536457, - 19436.419418051686, - 19548.701297471995, - 19559.08365016681, - 19468.128866831124, - 19273.647094656215, - 18985.939599832844, - 18618.017468816488, - 18186.40543173723, - 17712.647537830977, - 17211.956057513835, - 16696.8545485441, - 16174.58436464316, - 15647.505774162208, - 15117.925597661164, - 14589.40613471846, - 14069.178138915879, - 13567.77146627988, - 13096.75331942378, - 12663.711639667914, - 12269.294062153982, - 11903.584817600558, - 11544.768312459533, - 11164.353850559308, - 10730.918858420055, - 10218.742390836893, - 9612.639629821837, - 8917.44220581556, - 8152.973643252826, - 7355.565474726131, - 6571.355363034796, - 5845.681895638802, - 5216.697574341752, - 4709.467528034897, - 4333.806988077916, - 4080.5957926713704, - 3935.452717189793, - 3875.4531102251253, - 3878.888220172798, - 3931.8677446269844, - 4022.9359968436142, - 4148.2319213318315, - 4304.489884303529, - 4485.255474716519, - 4681.784342573823, - 4878.837260864929, - 5058.764294788311, - 5204.6714135858865, - 5304.605576504962, - 5352.903493009994, - 5353.95012361555, - 5319.346195371548, - 5262.752190506042, - 5199.570103306972, - 5139.471610206629, - 5085.4338278449995, - 5034.139860472897, - 4977.585096734398, - 4907.11712694218, - 4817.3443356866255, - 4708.487502896199, - 4587.89684168697, - 4466.988224978334, - 4359.004042565131, - 4274.534910037519, - 4218.6395961187545, - 4188.743565638369, - 4177.313928367801, - 4173.659416360115, - 4168.130694399789, - 4156.627034007838, - 4141.351475398772, - 4130.387278218599, - 4134.884829585022, - 4164.078943559893, - 4222.185473963922, - 4305.049308471769, - 4401.373377497904, - 4497.773205679495, - 4583.2842215685205, - 4657.528686258892, - 4735.55732399948, - 4849.006901360144, - 5044.013051353856, - 5371.799428845888, - 5879.626056892896, - 6602.1928165129975, - 7542.2582821706565, - 8683.81195138324 - ], - "flow:branch35_seg2:RESISTANCE_11": [ - 0.7006860419206479, - 0.9092667166561171, - 1.139694578514175, - 1.3805238383901586, - 1.619096262947749, - 1.8441416886411266, - 2.0470709241396987, - 2.2228335105145347, - 2.369284473191877, - 2.4877190627469936, - 2.5805608224591685, - 2.6505412639081882, - 2.7003231036285498, - 2.7310020498127083, - 2.7431044065389645, - 2.7366503386693797, - 2.711540064436273, - 2.668910824231308, - 2.61042928861313, - 2.5388815721634495, - 2.4576790139611853, - 2.3698661081649393, - 2.2781734659976483, - 2.184402582681863, - 2.08954993112479, - 1.994237863788126, - 1.899038580688581, - 1.8049543447407412, - 1.7135140168489997, - 1.6265796009972513, - 1.54572600096795, - 1.4717036283807503, - 1.403689578064251, - 1.3390198582330868, - 1.2735188611011394, - 1.2020656413526096, - 1.1197579843177474, - 1.0230479890231952, - 0.9110083253785151, - 0.7853757341389488, - 0.6509469599579228, - 0.5145537346609252, - 0.3838417090226345, - 0.2659490281365609, - 0.1664559549126735, - 0.08836621471347947, - 0.03193423452364809, - -0.00431405212807085, - -0.023694338366549432, - -0.029678389776931914, - -0.02527193389076805, - -0.012912585639843018, - 0.006142832692056926, - 0.03095614787206873, - 0.060575033198518605, - 0.09371404618002471, - 0.12820805961671017, - 0.16135625495275574, - 0.1902651363757975, - 0.21247493947366872, - 0.22640852214826337, - 0.23196277677107233, - 0.23026779313045945, - 0.2233465107542452, - 0.21368586467735812, - 0.20329404826641786, - 0.19334207699055192, - 0.18393446492892992, - 0.17423028603470322, - 0.16295669306058663, - 0.14898902159274965, - 0.13191487443775957, - 0.112339596385347, - 0.09172385279579091, - 0.07210330790616001, - 0.055428974521013384, - 0.04301576805493824, - 0.035109384826794904, - 0.03101147381624492, - 0.0292322257296032, - 0.028149628633813123, - 0.026657104620438785, - 0.024527080150129187, - 0.022547206156808393, - 0.022239664410002063, - 0.02522583857911122, - 0.032627690127268356, - 0.04443097359365252, - 0.05946046692712139, - 0.0757523132597587, - 0.0913036538615728, - 0.10523378077797617, - 0.11874483717749999, - 0.1356619167294188, - 0.16243269038014388, - 0.20706912111659723, - 0.2780572468151608, - 0.3823379480609716, - 0.5232142846189387, - 0.7006860419206479 - ], - "pressure:branch35_seg2:RESISTANCE_11": [ - 8003.301601603853, - 9195.304695625013, - 10512.160749676208, - 11888.459024993761, - 13251.859870165243, - 14537.956216636594, - 15697.662296255061, - 16702.115594901614, - 17539.05794756764, - 18215.891491077207, - 18746.46636322984, - 19146.392688302814, - 19430.887438585865, - 19606.212400110722, - 19675.37531120466, - 19638.49141062603, - 19494.990462537036, - 19251.371602426745, - 18917.159569176853, - 18508.27653393723, - 18044.217719561017, - 17542.381892551326, - 17018.374031799107, - 16482.489376217898, - 15940.422599055852, - 15395.730338821553, - 14851.682621327256, - 14314.007208728879, - 13791.441281163918, - 13294.625874829515, - 12832.561297083243, - 12409.53602274931, - 12020.847288680356, - 11651.270834744755, - 11276.943772365781, - 10868.600769707264, - 10398.22650338745, - 9845.545322544214, - 9205.257693371834, - 8487.28879401247, - 7719.051204636191, - 6939.587111120631, - 6192.5901077586495, - 5518.8534801594105, - 4950.267482118337, - 4503.9978934002065, - 4181.498720965701, - 3974.34592554679, - 3863.590884656351, - 3829.393048231649, - 3854.5751944522267, - 3925.2067684169365, - 4034.105244454083, - 4175.909122042491, - 4345.176015993058, - 4534.559841013571, - 4731.687263263417, - 4921.123563878974, - 5086.3329062337225, - 5213.258154911906, - 5292.886210962548, - 5324.627831818681, - 5314.941288487243, - 5275.387336437251, - 5220.178386574101, - 5160.790922562632, - 5103.917098717317, - 5050.1541952315265, - 4994.696462718564, - 4930.269795564834, - 4850.446927856461, - 4752.871079747174, - 4641.001693791867, - 4523.186224187775, - 4411.0581459538635, - 4315.767165564415, - 4244.827801056889, - 4199.644165121221, - 4176.225300407152, - 4166.057200092981, - 4159.8703417495735, - 4151.34082076639, - 4139.16809305722, - 4127.853449796029, - 4126.095901000107, - 4143.161378678605, - 4185.461701841709, - 4252.915460102787, - 4338.806459246337, - 4431.911591159683, - 4520.784858719342, - 4600.393165699454, - 4677.606555924373, - 4774.284789386143, - 4927.275209335044, - 5182.364822077898, - 5588.0498913143765, - 6183.996369526459, - 6989.080681696953, - 8003.301601603853 - ], - "flow:branch36_seg0:RESISTANCE_12": [ - 0.8862554675400106, - 1.1419064617401211, - 1.4197683065295743, - 1.705890379060042, - 1.9851248196218316, - 2.2446337570434665, - 2.475246476298561, - 2.6723885034579653, - 2.834425292724165, - 2.9638478649444044, - 3.0641558107715507, - 3.1384036069324046, - 3.189749541841526, - 3.2190790505622067, - 3.2266695935359664, - 3.212607380522976, - 3.1766514620226496, - 3.120551982710054, - 3.046581267187387, - 2.9581641680381567, - 2.8596102869103954, - 2.754337999788148, - 2.6453532464182916, - 2.534538483142968, - 2.42277056335848, - 2.3106800968628245, - 2.198957116923333, - 2.0889122330993835, - 1.9825095899447926, - 1.882028467401955, - 1.789186672759023, - 1.7045272122598984, - 1.6265889645531588, - 1.5515835412659025, - 1.474127559142068, - 1.3879471608102227, - 1.2874259454404797, - 1.1688341866471263, - 1.0320205946907768, - 0.8799551098326605, - 0.7191671940070486, - 0.5584136755079429, - 0.40688647325631344, - 0.2727507710304265, - 0.1619835367721381, - 0.07740819410529935, - 0.018272589365985314, - -0.017671684202563855, - -0.034762628984157086, - -0.03730680297165947, - -0.028540663593427863, - -0.011180545707235846, - 0.013595917738452678, - 0.04487670226666937, - 0.08141183306025802, - 0.12158320912589889, - 0.16259192969205716, - 0.20105746425013737, - 0.23355129297933586, - 0.2573764838140768, - 0.2709824073150055, - 0.27470589490404984, - 0.27035674339846305, - 0.2605276074754677, - 0.24827484075709078, - 0.2358137879643791, - 0.2242030021615809, - 0.213225079422004, - 0.2016056869537295, - 0.18772430808900636, - 0.1703444941003244, - 0.14921109514326877, - 0.1253955629632395, - 0.100882067202542, - 0.07821303238262428, - 0.05963701270518504, - 0.04648102097256828, - 0.03866318313560176, - 0.03504602933815298, - 0.03368022680084213, - 0.032604661090370815, - 0.030717116786289928, - 0.028061803255244416, - 0.02588256433362182, - 0.026190351374623975, - 0.030888896920838318, - 0.041102663366139054, - 0.0564481695933685, - 0.07513070667518196, - 0.09464103320692245, - 0.1126623426097928, - 0.12857383422899496, - 0.1445269874794455, - 0.16590704024792707, - 0.2011532525634411, - 0.26017842777656947, - 0.35292882530256386, - 0.48720155280834876, - 0.6653773923659017, - 0.8862554675400106 - ], - "pressure:branch36_seg0:RESISTANCE_12": [ - 8352.31669128692, - 9608.082980982836, - 10972.949716475321, - 12378.39096870236, - 13749.99994083536, - 15024.716577508441, - 16157.49401779086, - 17125.862291748428, - 17921.792455398714, - 18557.52048700064, - 19050.236493650616, - 19414.944167855996, - 19667.157128629093, - 19811.224662807905, - 19848.509665421563, - 19779.435601714176, - 19602.818919627578, - 19327.256388722235, - 18963.90974393922, - 18529.601976462298, - 18045.501994664188, - 17528.400976454068, - 16993.064199059954, - 16448.738351405085, - 15899.730566890332, - 15349.138422072174, - 14800.351383588884, - 14259.807209716244, - 13737.15384462317, - 13243.587188115927, - 12787.545167421862, - 12371.695047490677, - 11988.85975105727, - 11620.430586902396, - 11239.96419524712, - 10816.643177481052, - 10322.87958365838, - 9740.352872215703, - 9068.319902860158, - 8321.36912213441, - 7531.573466866115, - 6741.946772423561, - 5997.640053981514, - 5338.760969129963, - 4794.6685856067825, - 4379.231655299508, - 4088.7555740905877, - 3912.1960923008924, - 3828.2447961874905, - 3815.747727914303, - 3858.807299641776, - 3944.0807831063585, - 4065.7836056215897, - 4219.435872254391, - 4398.897664623983, - 4596.220816179742, - 4797.6570321102445, - 4986.601032755752, - 5146.211813339458, - 5263.2419527662605, - 5330.074707029964, - 5348.3646034141075, - 5327.00142480968, - 5278.720378269824, - 5218.534375674418, - 5157.325264870177, - 5100.292694143615, - 5046.368768088174, - 4989.293921131059, - 4921.108120847521, - 4835.737889464463, - 4731.929922356802, - 4614.947226567091, - 4494.536110173029, - 4383.185048011645, - 4291.939014016578, - 4227.316339745239, - 4188.914857111896, - 4171.147275891673, - 4164.438407850292, - 4159.155192872823, - 4149.883511709256, - 4136.840522256806, - 4126.136027312324, - 4127.647887619009, - 4150.72730151293, - 4200.89766612648, - 4276.275309302747, - 4368.044560373882, - 4463.879941089598, - 4552.401219542327, - 4630.559002017184, - 4708.921427827221, - 4813.940966759909, - 4987.071548175299, - 5277.005195834117, - 5732.598270813009, - 6392.150428452211, - 7267.356150435459, - 8352.31669128692 - ], - "flow:branch38_seg0:RESISTANCE_13": [ - 1.0303081379755072, - 1.3311175664474872, - 1.6603771277003485, - 2.0016567801946037, - 2.3369967138134027, - 2.6508206430887236, - 2.931645750238176, - 3.173253256947065, - 3.373176307576696, - 3.533841565665316, - 3.6590777573908873, - 3.752567334663085, - 3.818079180394904, - 3.8569080265727007, - 3.8695634336907805, - 3.8561746015599794, - 3.8165142183423737, - 3.752462555845102, - 3.666626980848873, - 3.5629801832470376, - 3.4465148167169932, - 3.3214164294303057, - 3.1913723760541015, - 3.058774735813304, - 2.924842221483028, - 2.7903969953162657, - 2.656276970964194, - 2.523990145903672, - 2.3957987643361407, - 2.274375151847684, - 2.161834477128364, - 2.0589866787324627, - 1.9643375607509266, - 1.8736992285905687, - 1.780887114427408, - 1.6785395336516735, - 1.5598849568894422, - 1.4202258282527715, - 1.2588952327925056, - 1.0789629134069418, - 0.887739604929651, - 0.6953116075912554, - 0.5125531494976933, - 0.3493538405368384, - 0.21314637017239868, - 0.10773265131915098, - 0.032797249810146124, - -0.014081136694143766, - -0.0378003875264297, - -0.043396558190734874, - -0.03489463712104147, - -0.015617369348605456, - 0.01282782012537261, - 0.04923047759207618, - 0.09214584315521132, - 0.13967217143332958, - 0.1885877045518967, - 0.2349575196736955, - 0.27469899684438315, - 0.30449196503424153, - 0.32232314429367603, - 0.3283486857017735, - 0.3244823779953289, - 0.31368681255838415, - 0.2995385339021005, - 0.28476210474658203, - 0.27078658479103385, - 0.25753864378260194, - 0.24365965837450587, - 0.22729087942217138, - 0.20692677753817948, - 0.18214472283031152, - 0.15403471454485748, - 0.12482749613389472, - 0.09747193255491887, - 0.07466917346646926, - 0.05811660502552504, - 0.04791621699519799, - 0.04287689669491846, - 0.04078657976982305, - 0.03934356378549838, - 0.037132723715653765, - 0.034045065249822024, - 0.03139496915545726, - 0.03145881653550838, - 0.036499198649587665, - 0.047951379774851366, - 0.06554776513498571, - 0.08735840455319951, - 0.11050919117080392, - 0.13222998217382836, - 0.15158229229271972, - 0.1707694454462889, - 0.19577399304633472, - 0.2362351996401422, - 0.3037572355956639, - 0.41019476202889027, - 0.5650792111780694, - 0.7720798910527904, - 1.0303081379755072 - ], - "pressure:branch38_seg0:RESISTANCE_13": [ - 8188.692121161811, - 9411.917335044578, - 10750.83346969623, - 12138.628652967907, - 13502.27029182198, - 14778.418266834979, - 15920.378322746377, - 16902.86213507539, - 17715.838369260502, - 18369.17492086824, - 18878.44109709, - 19258.61138874442, - 19525.011753633993, - 19682.907149107214, - 19734.36967525682, - 19679.924716101006, - 19518.647920388645, - 19258.18531136816, - 18909.139604533568, - 18487.665527710946, - 18014.06543609375, - 17505.359634143122, - 16976.542549474816, - 16437.341442422396, - 15892.712142337907, - 15345.997927398754, - 14800.606127988101, - 14262.668933996181, - 13741.385638680604, - 13247.623108991658, - 12789.982563602722, - 12371.75757368384, - 11986.872072671153, - 11618.296214507325, - 11240.880789815214, - 10824.689907698486, - 10342.187511495604, - 9774.271245156948, - 9118.22913523984, - 8386.544124624124, - 7608.944919706609, - 6826.446912922168, - 6083.269562644383, - 5419.628430705074, - 4865.74814538519, - 4437.088979196678, - 4132.368236220426, - 3941.7398219134916, - 3845.286775811033, - 3822.5302515473445, - 3857.1028521194658, - 3935.4928152060447, - 4051.163634285719, - 4199.193065051243, - 4373.706069801398, - 4566.969304163347, - 4765.88166460727, - 4954.442000990974, - 5116.048560862018, - 5237.20004893659, - 5309.709571574227, - 5334.212108662642, - 5318.489978225521, - 5274.590397325841, - 5217.057190094546, - 5156.969642952167, - 5100.1389496006095, - 5046.266916546782, - 4989.828775692844, - 4923.266024529497, - 4840.456509518245, - 4739.681629141417, - 4625.373806172285, - 4506.604237780918, - 4395.364323261772, - 4302.638141091309, - 4235.328019948051, - 4193.848695668006, - 4173.356573185525, - 4164.856412865514, - 4158.98846668767, - 4149.9982055411565, - 4137.4424099783355, - 4126.6659380495585, - 4126.9255699550995, - 4147.422010245767, - 4193.991683202942, - 4265.546429192956, - 4354.2382105735705, - 4448.379627801493, - 4536.706045478431, - 4615.401164193806, - 4693.424681073903, - 4795.104316720552, - 4959.6376172260425, - 5234.21231155344, - 5667.034735696846, - 6296.86394151666, - 7138.620970875264, - 8188.692121161811 - ], - "flow:branch41_seg2:RESISTANCE_14": [ - 0.9318190054700553, - 1.2082215247084218, - 1.5135676881872409, - 1.8326436830512907, - 2.1487111094501348, - 2.4469138666131967, - 2.716005319172187, - 2.949474172422308, - 3.1445982181374554, - 3.3031173318958205, - 3.428295690225167, - 3.5236607273782936, - 3.5926777615495027, - 3.6368027967475203, - 3.6566776941555768, - 3.652368148740755, - 3.6237082532809737, - 3.5720925099025553, - 3.499673313428191, - 3.4099293189980284, - 3.307181373233805, - 3.1953157199492326, - 3.077803356325711, - 2.956974737180788, - 2.8341371876226917, - 2.7101262137117117, - 2.5857268214973845, - 2.4622749754578637, - 2.341787871517732, - 2.2267237654115895, - 2.1191841729984198, - 2.0202110200597407, - 1.928829704786518, - 1.841662322959802, - 1.7533491329777278, - 1.6572567245827523, - 1.546989313840313, - 1.4178195682903956, - 1.2683852440085253, - 1.100784638633045, - 0.9210682019407033, - 0.7380468209844118, - 0.5616956824330037, - 0.4014708587775975, - 0.26487986042315353, - 0.15619144234943838, - 0.07607096183829198, - 0.022829259674693528, - -0.007651575834319464, - -0.019845780835617863, - -0.01767884790340511, - -0.004367824458790125, - 0.018363491423756328, - 0.04923381417064867, - 0.08694248871569095, - 0.12975830101537936, - 0.17480104234972918, - 0.2184682097955556, - 0.2568889384150165, - 0.28674614417323235, - 0.3058625917792522, - 0.31398248965397085, - 0.31251279882264005, - 0.3040256109844602, - 0.2917473536580223, - 0.2783308478523106, - 0.26534154859391007, - 0.2529605327955265, - 0.24012455326907042, - 0.2251783568095467, - 0.20664133586010713, - 0.18394038804498905, - 0.15783125545391968, - 0.1302106484393621, - 0.10374762653390808, - 0.0810333101799578, - 0.06385331565204011, - 0.05260385105711698, - 0.046427668006371, - 0.04341418262800855, - 0.041442700532316565, - 0.03904007245302131, - 0.03587142696919614, - 0.03293406567574308, - 0.03220768350473276, - 0.035829416561282974, - 0.04530657101596502, - 0.060677241254510024, - 0.08043432691280435, - 0.10202878644716581, - 0.12282421780410552, - 0.1416210325285065, - 0.15994109215104138, - 0.18276046965294726, - 0.21853427771252384, - 0.2778541761959272, - 0.37193459929680595, - 0.5100481168038226, - 0.6966882385400888, - 0.9318190054700553 - ], - "pressure:branch41_seg2:RESISTANCE_14": [ - 7813.271936201095, - 8944.68733558368, - 10194.579530684823, - 11500.672887421473, - 12794.451086173996, - 14015.102737694117, - 15116.59129903719, - 16072.263687882456, - 16870.976922191167, - 17519.852941472385, - 18032.253199883617, - 18422.616760588684, - 18705.128423276095, - 18885.748138533767, - 18967.10327614462, - 18949.462749350198, - 18832.147439933906, - 18620.865549053025, - 18324.427606563266, - 17957.073005092265, - 17536.48853135845, - 17078.581985727404, - 16597.56141403414, - 16102.966210041788, - 15600.147727867983, - 15092.525995758107, - 14583.314327163487, - 14077.981307492748, - 13584.784048652598, - 13113.78507974519, - 12673.58666464081, - 12268.453782101127, - 11894.397034713824, - 11537.589439781752, - 11176.091637990194, - 10782.750683930088, - 10331.38632260728, - 9802.647873868782, - 9190.95918103515, - 8504.909334636573, - 7769.265012160164, - 7020.092358449158, - 6298.223417436916, - 5642.365311126565, - 5083.248992718541, - 4638.348019015459, - 4310.385937823036, - 4092.4484100348486, - 3967.679334933894, - 3917.7640470424735, - 3926.634086634335, - 3981.1209160173635, - 4074.1684067153897, - 4200.531793836416, - 4354.887026155315, - 4530.147618954635, - 4714.52383707492, - 4893.269334155642, - 5050.53926112787, - 5172.755594287438, - 5251.006122765035, - 5284.243799187758, - 5278.227823488691, - 5243.4866965118845, - 5193.227352078291, - 5138.308745271392, - 5085.138849249319, - 5034.458877254527, - 4981.916574302984, - 4920.736390840477, - 4844.857665065238, - 4751.934481841805, - 4645.060366658424, - 4531.99924043325, - 4423.676528395273, - 4330.69862291119, - 4260.374696690272, - 4214.326572698577, - 4189.045223482677, - 4176.709938796095, - 4168.639950111406, - 4158.805125105491, - 4145.834714034482, - 4133.811032737652, - 4130.8376880069945, - 4145.6627502529, - 4184.456168351625, - 4247.37387639076, - 4328.246767934263, - 4416.640694754626, - 4501.763910486805, - 4578.706066068927, - 4653.6966907262495, - 4747.1046494565935, - 4893.539774015849, - 5136.357555919112, - 5521.4627270661495, - 6086.811266583527, - 6850.796734071048, - 7813.271936201095 - ], - "flow:branch43_seg0:RESISTANCE_15": [ - 0.6437108110208085, - 0.8268637729286447, - 1.0245930405177823, - 1.2269147398038256, - 1.4231229748257448, - 1.6043441202499693, - 1.7644252568352494, - 1.900553927661607, - 2.0118305450993326, - 2.100323145647952, - 2.1686450350257216, - 2.21885493234399, - 2.2531660835354974, - 2.2720467790023258, - 2.2755660163257474, - 2.2638119609253877, - 2.2365648145688617, - 2.1951861292582975, - 2.1414318341929404, - 2.077753051312643, - 2.0072778529306055, - 1.932391531349031, - 1.8551394448194636, - 1.7767722941341186, - 1.6978204212572905, - 1.618694848646584, - 1.5398984699789129, - 1.462407160978312, - 1.3876630995018056, - 1.3173033663550695, - 1.2524925826911222, - 1.1934979604631826, - 1.1391165369298888, - 1.0864683151203867, - 1.0316083877621032, - 0.9700398839803809, - 0.8978792653755643, - 0.8126564969118318, - 0.7145919367649843, - 0.6061017911102496, - 0.49207001210466733, - 0.37888929295696677, - 0.273070417549503, - 0.18026581133386627, - 0.10443116631773634, - 0.04730246889524652, - 0.008022975215173806, - -0.015201879307249392, - -0.02553828123655012, - -0.02605767630486861, - -0.018938260687267755, - -0.006000138087748681, - 0.012026427422872788, - 0.034552230381252685, - 0.06067598339860164, - 0.08921197867747586, - 0.11810012741873503, - 0.1449021678146683, - 0.1671992038083397, - 0.18316340314827448, - 0.1918064137444918, - 0.19352188332097442, - 0.18974057538706673, - 0.1823398883352574, - 0.17350596096970314, - 0.16473892407033475, - 0.15666634094101226, - 0.14901696104351125, - 0.14080115267549367, - 0.1308425561762333, - 0.11831103011198071, - 0.10311113303109873, - 0.08611380826856749, - 0.06881004475449462, - 0.053031679714177625, - 0.04033514272340254, - 0.03157195727987656, - 0.026561190975663364, - 0.02439527405902367, - 0.023636643059179466, - 0.02290464935481, - 0.02149620453045824, - 0.01955096897602895, - 0.018052598075128008, - 0.01848541261219712, - 0.022179991402391963, - 0.029854921095266624, - 0.04111230416050784, - 0.05454957029647087, - 0.06834530497551299, - 0.08089010545762473, - 0.09189608665378554, - 0.10312852439401807, - 0.11867024302435784, - 0.1447292033588137, - 0.18843966910642607, - 0.2567452639618698, - 0.3549783437382871, - 0.4844030154758789, - 0.6437108110208085 - ], - "pressure:branch43_seg0:RESISTANCE_15": [ - 8473.771603166246, - 9746.96394194535, - 11121.483829718572, - 12527.928119870887, - 13891.874512181934, - 15151.637780957248, - 16264.445756107492, - 17210.74757388271, - 17984.289728654185, - 18599.448227231107, - 19074.38952886543, - 19423.42487031229, - 19661.939685342688, - 19793.189306254004, - 19817.653371436747, - 19735.944764983236, - 19546.53555405179, - 19258.89060101699, - 18885.21629108079, - 18442.55165895341, - 17952.64157658684, - 17432.06746233918, - 16895.047674618578, - 16350.276490875793, - 15801.440596375644, - 15251.397223884866, - 14703.642251220548, - 14164.959502583504, - 13645.374312970196, - 13156.26689003895, - 12705.733126502382, - 12295.630552853716, - 11917.596743881888, - 11551.611329504958, - 11170.251189374158, - 10742.256214526702, - 10240.629891849789, - 9648.201711779348, - 8966.503499617558, - 8212.331572274421, - 7419.636843808514, - 6632.8582789667735, - 5897.255752730813, - 5252.122240248398, - 4724.955832220802, - 4327.824280947586, - 4054.7719103844674, - 3893.3237604927517, - 3821.4700071608804, - 3817.8594195138435, - 3867.3502130368815, - 3957.2898918730966, - 4082.602007295899, - 4239.190682972839, - 4420.790597357969, - 4619.159273409093, - 4819.975952952557, - 5006.290998804348, - 5161.289395275324, - 5272.264921319917, - 5332.347022971257, - 5344.272152106135, - 5317.986296601169, - 5266.54023775552, - 5205.130973466284, - 5144.186699905005, - 5088.069938879964, - 5034.895085574506, - 4977.782690764857, - 4908.555261212115, - 4821.442048234178, - 4715.779588222485, - 4597.622265283396, - 4477.334725793595, - 4367.651031473104, - 4279.390740963499, - 4218.473240892644, - 4183.640775157545, - 4168.584350211028, - 4163.310708076603, - 4158.22223575964, - 4148.431396773043, - 4134.909043767002, - 4124.493081438001, - 4127.501802383426, - 4153.184758103569, - 4206.5372214426725, - 4284.793197890266, - 4378.202685349461, - 4474.104075740428, - 4561.309566162004, - 4637.817916306786, - 4715.900484711406, - 4823.939125667517, - 5005.0886321170665, - 5308.943014457499, - 5783.771044317383, - 6466.640724846746, - 7366.339527360361, - 8473.771603166246 - ], - "flow:branch44_seg0:RESISTANCE_16": [ - 0.33305015306824726, - 0.43579720060114757, - 0.5557429107301551, - 0.6890726855161876, - 0.8306176444725905, - 0.9747942483509615, - 1.1162956644260689, - 1.2507128458354626, - 1.3746772966986345, - 1.4862953557823402, - 1.5846197079758735, - 1.6693605785551697, - 1.7407097176854796, - 1.79872401909064, - 1.8434426764953233, - 1.874824912293184, - 1.8927884584538124, - 1.897652222125087, - 1.8900051788016472, - 1.8709195210223508, - 1.8418723324745048, - 1.8044320294545684, - 1.7602130133734966, - 1.7106160220693085, - 1.6567682968849997, - 1.599597012205816, - 1.5399112031421873, - 1.4785718101809546, - 1.4165755657382484, - 1.3550457806275589, - 1.2950607572010995, - 1.2374525904119733, - 1.1824968192239773, - 1.129704228048638, - 1.0778110063792947, - 1.0248831666678933, - 0.9686851329552162, - 0.907129215829879, - 0.8388582683937683, - 0.7634956351139265, - 0.6819758410483807, - 0.5964113755869602, - 0.5097626881473049, - 0.4253744397643981, - 0.34647935921178524, - 0.275669524902467, - 0.21458007736551285, - 0.16400569849613217, - 0.12376152608582276, - 0.09315116410198357, - 0.07124806883626858, - 0.057033015402873095, - 0.04970801038791874, - 0.04854813208687858, - 0.05283450155749287, - 0.061759314091900275, - 0.07421040523407953, - 0.08881669763793448, - 0.1040264194957993, - 0.11830924651947104, - 0.13035503724372233, - 0.13935133870372887, - 0.145025215911453, - 0.14760539786399707, - 0.14772935420838829, - 0.1461258066048907, - 0.14341380226492573, - 0.13992781686848493, - 0.1356516888041409, - 0.13030960240609132, - 0.1235367771676807, - 0.11509538365377099, - 0.1050526540361298, - 0.09381863232861645, - 0.08211990309476652, - 0.07081219253899577, - 0.06066933243895147, - 0.05216853569567759, - 0.04543197619065073, - 0.04020231692076544, - 0.03600931177320128, - 0.03239871847925204, - 0.029116130789663172, - 0.026242522917822465, - 0.024190553388445817, - 0.023546742304505493, - 0.02486549265106117, - 0.02839994926872112, - 0.03398606644060003, - 0.04107432241567219, - 0.04892069651562066, - 0.05698784560345676, - 0.06537108942813191, - 0.07514961894224567, - 0.08857886745832305, - 0.10891086079170387, - 0.14007937623544453, - 0.18600552043854945, - 0.24970394351101133, - 0.33305015306824726 - ], - "pressure:branch44_seg0:RESISTANCE_16": [ - 6422.628295188749, - 7170.325449367242, - 8043.178424443345, - 9013.428135442138, - 10043.460292484178, - 11092.643106077532, - 12122.35839865279, - 13100.521240561373, - 14002.618861420156, - 14814.870961463133, - 15530.383865111375, - 16147.048862268193, - 16666.261331743153, - 17088.435292979382, - 17413.855961339304, - 17642.226595447355, - 17772.948525330114, - 17808.342459685682, - 17752.69441267991, - 17613.806801309518, - 17402.42846260683, - 17129.9728671249, - 16808.188122178297, - 16447.267490935028, - 16055.4139842306, - 15639.374712234328, - 15205.037077691337, - 14758.666202251197, - 14307.515374537898, - 13859.759002660201, - 13423.243965136298, - 13004.025472732641, - 12604.108640963903, - 12219.93341519043, - 11842.302961615622, - 11457.143523176686, - 11048.186663721028, - 10600.240127420566, - 10103.427865299802, - 9555.008929790321, - 8961.783922400129, - 8339.125570063312, - 7708.577261692828, - 7094.478319902766, - 6520.353528735575, - 6005.065616603844, - 5560.513610775248, - 5192.480464685355, - 4899.6209236477225, - 4676.867267039133, - 4517.476974168367, - 4414.033077201481, - 4360.7285245595085, - 4352.288012391961, - 4383.480210434536, - 4448.426669664092, - 4539.0340947625455, - 4645.325063950389, - 4756.007229735547, - 4859.944319663154, - 4947.602346444589, - 5013.069035379127, - 5054.358220258287, - 5073.13437733046, - 5074.036415959978, - 5062.367292530023, - 5042.6318551057775, - 5017.264105637433, - 4986.146434994986, - 4947.271714084701, - 4897.985410700787, - 4836.556824097069, - 4763.475207295477, - 4681.724478078683, - 4596.592041033683, - 4514.305073127217, - 4440.494800091337, - 4378.633932204497, - 4329.611536994067, - 4291.554955833773, - 4261.042176230198, - 4234.7676467366155, - 4210.880036019033, - 4189.968598857666, - 4175.036279005994, - 4170.351222580051, - 4179.947857275329, - 4205.6683350705225, - 4246.318884284446, - 4297.9005982889585, - 4354.999188720697, - 4413.704373542453, - 4474.7098009586225, - 4545.86881589199, - 4643.594357786629, - 4791.551636552009, - 5018.367013312991, - 5352.574644068096, - 5816.112339802729, - 6422.628295188749 - ], - "flow:branch46_seg0:RESISTANCE_17": [ - 0.848380475129587, - 1.087856786936846, - 1.3451944484078118, - 1.6071974327049345, - 1.859949613871118, - 2.0921121940622163, - 2.295998399838869, - 2.468312845741347, - 2.6083020357738462, - 2.7189377352847006, - 2.8037747328270246, - 2.8655705055129532, - 2.9071563759057404, - 2.929052345170956, - 2.9312770870795144, - 2.9138868346848277, - 2.8765922266790773, - 2.821236108964708, - 2.75015863085882, - 2.666604151485942, - 2.5746582693109383, - 2.4773918277047926, - 2.377391794274785, - 2.2761876770508906, - 2.1743811035141203, - 2.0724489167566778, - 1.971029217998982, - 1.8714072346197796, - 1.7754859928525097, - 1.6854007190288172, - 1.602635845801184, - 1.5274442985622665, - 1.4581272763867221, - 1.3907962924955224, - 1.320194771860872, - 1.2404226992724643, - 1.1464781069676324, - 1.0352976328338837, - 0.9074027995045272, - 0.7661964852875544, - 0.6182807679576559, - 0.47212063369414986, - 0.3362399214635854, - 0.21790709902715152, - 0.12206474373349124, - 0.05073929323575028, - 0.002551514582849719, - -0.02505524365628969, - -0.03632019796279102, - -0.035281700094733845, - -0.024735175354764775, - -0.006956209784346822, - 0.01718049115382859, - 0.046976311033623534, - 0.08128259898200484, - 0.11852500337878365, - 0.15598498220480267, - 0.19046308339099, - 0.2188168804385518, - 0.23872387563132663, - 0.24900610197195214, - 0.2503069646248778, - 0.24460040747456743, - 0.23441936269096217, - 0.22263273393732966, - 0.21115094370241902, - 0.20071018367675006, - 0.1908556640262151, - 0.1802154323897882, - 0.167218681726983, - 0.15080167356638433, - 0.13089670856930177, - 0.10872079801247032, - 0.08628981308118204, - 0.06602445049939767, - 0.04993364033260314, - 0.039061192565138965, - 0.03308226182387463, - 0.030716306659770785, - 0.030034094179441806, - 0.029231848963923075, - 0.02743526649200892, - 0.024906477580695828, - 0.02301239921734263, - 0.023743853712108808, - 0.02883928666149309, - 0.03918178982427007, - 0.05415784252410852, - 0.07184653044704677, - 0.08981020557937669, - 0.1059645641619779, - 0.12003666886352751, - 0.1345016667359309, - 0.15488589160313035, - 0.1894643013571296, - 0.2476294785264208, - 0.3383576680621335, - 0.4684278939048264, - 0.6391586973951566, - 0.848380475129587 - ], - "pressure:branch46_seg0:RESISTANCE_17": [ - 8658.511053849168, - 9973.772961344757, - 11387.133727353084, - 12826.11757630062, - 14214.29377383561, - 15489.386895851805, - 16609.179320823125, - 17555.571993636397, - 18324.426531780024, - 18932.06459033201, - 19398.009929023898, - 19737.4072800382, - 19965.806952660954, - 20086.064919241824, - 20098.28374065366, - 20002.77226244586, - 19797.94124223028, - 19493.912036054975, - 19103.537310772048, - 18644.635872502775, - 18139.64681758034, - 17605.435961580635, - 17056.211557186798, - 16500.374032958352, - 15941.227672739922, - 15381.391414289048, - 14824.369864061415, - 14277.221802113309, - 13750.399109446715, - 13255.628966243677, - 12801.064236172924, - 12388.094046751436, - 12007.388171834258, - 11637.590100208832, - 11249.829448638595, - 10811.701904558364, - 10295.73544949956, - 9685.105356769925, - 8982.675954988485, - 8207.136676026663, - 7394.747730098344, - 6592.000871586709, - 5845.711088637021, - 5195.798566673908, - 4669.409137627304, - 4277.672487907458, - 4013.013536085952, - 3861.3905332621744, - 3799.5206757501523, - 3805.2243575738903, - 3863.1484258972137, - 3960.794811015533, - 4093.3594186671903, - 4257.005278229431, - 4445.423720895263, - 4649.968026246238, - 4855.707303060843, - 5045.069385643224, - 5200.795306541546, - 5310.129345771395, - 5366.601823270366, - 5373.746476039424, - 5342.404681996801, - 5286.487918115954, - 5221.752898186625, - 5158.692125236407, - 5101.34894234107, - 5047.225533578005, - 4988.786804282787, - 4917.405501727217, - 4827.239316580444, - 4717.916427677064, - 4596.120955718634, - 4472.92455351466, - 4361.622273784966, - 4273.247647027891, - 4213.533530496438, - 4180.695794721268, - 4167.701395907021, - 4163.954519727812, - 4159.548394694071, - 4149.681128611885, - 4135.792407418348, - 4125.389670286106, - 4129.406995535405, - 4157.392347447442, - 4214.195879853194, - 4296.4479885987, - 4393.5985470111045, - 4492.259401781556, - 4580.983051830169, - 4658.270459225745, - 4737.715731077473, - 4849.67083126805, - 5039.583832800384, - 5359.041073878463, - 5857.342265891162, - 6571.719450253064, - 7509.414375368155, - 8658.511053849168 - ], - "flow:branch47_seg0:RESISTANCE_18": [ - 0.5442446723565345, - 0.7139168348971404, - 0.9133674212587305, - 1.1364512750677087, - 1.3746789326729758, - 1.6186736573161893, - 1.8593515250073738, - 2.088975819404874, - 2.3016140185986464, - 2.4937433957482753, - 2.6634883103486473, - 2.810276941378878, - 2.934322129037769, - 3.0357398186816713, - 3.114642356727535, - 3.1709308959850975, - 3.2044931945967443, - 3.215776336351961, - 3.2056744364381293, - 3.175936537108917, - 3.1289556724635017, - 3.067375210641746, - 2.993945961824923, - 2.9110811629898454, - 2.820761776076197, - 2.724601662823158, - 2.6239894799810655, - 2.5203698351572976, - 2.4153989574568198, - 2.3109535390503817, - 2.2088818614697896, - 2.110668822205077, - 2.016911621099471, - 1.9269737376015377, - 1.8388884844351945, - 1.7495195234659526, - 1.6551227691049784, - 1.5521166485609115, - 1.4380030730238855, - 1.3118935331340806, - 1.175088852919846, - 1.0308857885958398, - 0.884128624909701, - 0.7404231016003053, - 0.6053070774068247, - 0.4833107749378823, - 0.37746157344792675, - 0.2892979492226327, - 0.21869632972050215, - 0.16461862356488785, - 0.12551110196137574, - 0.09966342294728969, - 0.08568238388718054, - 0.08230543437625118, - 0.0883366862347501, - 0.10242909784577847, - 0.12276495926318894, - 0.1470864871108216, - 0.17279640758515305, - 0.1972806237596647, - 0.21826075695938363, - 0.23424541947499813, - 0.24462700102395882, - 0.2496969072274468, - 0.2504490546672664, - 0.248100345824539, - 0.2437419058449257, - 0.23800986396102294, - 0.23095510269055305, - 0.22216560570406377, - 0.21103216928594817, - 0.19711738032392387, - 0.1804558879202246, - 0.1616632006511039, - 0.14190643040281797, - 0.12261379177871841, - 0.10512320008117812, - 0.09032141950276594, - 0.07850136113271229, - 0.06930322444720917, - 0.061977490617726595, - 0.055739083270471744, - 0.05010073122200343, - 0.045121333466508505, - 0.04142695984226715, - 0.039981587409187266, - 0.04174346206133486, - 0.04721536754275937, - 0.056227389349590186, - 0.06792446109753553, - 0.08107626401914093, - 0.0947078273293268, - 0.10881427167588027, - 0.12498455049898395, - 0.1467674549553822, - 0.179451159096339, - 0.22959321634847987, - 0.3038328652875577, - 0.40755684048492724, - 0.5442446723565345 - ], - "pressure:branch47_seg0:RESISTANCE_18": [ - 6331.250605754873, - 7058.346384481821, - 7913.051583240756, - 8869.032375716535, - 9889.908880307234, - 10935.498985739334, - 11966.875370709864, - 12950.883900156296, - 13862.10194980478, - 14685.433585372873, - 15412.84112835601, - 16041.874155277237, - 16573.444749814735, - 17008.04977237212, - 17346.17066082522, - 17587.383825507357, - 17731.20827661059, - 17779.55990140369, - 17736.27024991055, - 17608.83448940209, - 17407.507484116537, - 17143.61685425591, - 16828.950641187374, - 16473.850284500255, - 16086.804796432036, - 15674.73005546528, - 15243.576869594368, - 14799.535812909438, - 14349.704320680921, - 13902.12457811404, - 13464.717022359771, - 13043.844881661822, - 12642.067335313719, - 12256.656703069712, - 11879.185143879704, - 11496.212514209836, - 11091.694291575863, - 10650.28236925946, - 10161.271692280821, - 9620.854733257682, - 9034.605910796574, - 8416.652807709417, - 7787.754627734877, - 7171.933636162365, - 6592.921207969043, - 6070.130697037496, - 5616.535325630909, - 5238.7279230987515, - 4936.178944276136, - 4704.4398582632875, - 4536.852474165549, - 4426.087466991591, - 4366.174548274655, - 4351.703313290644, - 4377.549024815089, - 4437.939208101693, - 4525.0844343543295, - 4629.309428987561, - 4739.484099766678, - 4844.406262361647, - 4934.312385194225, - 5002.811427497035, - 5047.299598141718, - 5069.0256570537995, - 5072.24883297308, - 5062.183915667643, - 5043.506701541531, - 5018.943193922688, - 4988.711439562525, - 4951.045825708632, - 4903.335732897152, - 4843.706715593015, - 4772.307255524712, - 4691.774990362809, - 4607.111342338821, - 4524.436636635521, - 4449.484239021829, - 4386.054198318304, - 4335.401725829686, - 4295.984969091041, - 4264.592016565791, - 4237.858582039766, - 4213.696563285294, - 4192.358360044346, - 4176.526868142526, - 4170.333016546338, - 4177.883174468772, - 4201.331920082446, - 4239.951119103815, - 4290.076557266731, - 4346.4359520181215, - 4404.8512630029945, - 4465.301580743071, - 4534.5960442370615, - 4627.942281130043, - 4768.001693105551, - 4982.875350745127, - 5301.014369836462, - 5745.502513262683, - 6331.250605754873 - ], - "flow:branch48_seg0:RESISTANCE_19": [ - 0.8971196633946733, - 1.1546947558060292, - 1.434076121669213, - 1.721119060454291, - 2.000664866184031, - 2.2599504492284, - 2.4899299456785937, - 2.6861638478236904, - 2.8472022770152305, - 2.9756815409216815, - 3.075139958665888, - 3.1486394034360723, - 3.199291242229254, - 3.227914868934552, - 3.2347231378351426, - 3.2197825765976793, - 3.1828405382010816, - 3.1256884827589144, - 3.0507148274156566, - 2.9613794730301226, - 2.8620231273263492, - 2.756104229037291, - 2.64659451320411, - 2.5353388358369817, - 2.4231811438622683, - 2.310725063504887, - 2.198672949122856, - 2.0883650695209437, - 1.981799449475471, - 1.8812752902040313, - 1.7885024231434545, - 1.703965045440207, - 1.6261045481259344, - 1.5510329355055854, - 1.4732646934183464, - 1.3864695931718265, - 1.2850572325959904, - 1.1653763204041174, - 1.0274308111574268, - 0.8743838770130983, - 0.7129314349308689, - 0.5519506831346455, - 0.4006826939401551, - 0.2672612310157157, - 0.1575029252502059, - 0.07410258242471443, - 0.016171499076180585, - -0.018727398056282426, - -0.03497006089808312, - -0.03687732939631275, - -0.02767117092762787, - -0.009975544607977406, - 0.015060899231349918, - 0.046553977817647564, - 0.08327926676998691, - 0.12357267913720593, - 0.16459194832042354, - 0.20292853446627293, - 0.23514033577123977, - 0.2585554135781793, - 0.2716810024853763, - 0.274934210372599, - 0.2701986248326896, - 0.26011037641349705, - 0.24774122854898872, - 0.23528159447338604, - 0.2237329071967898, - 0.2128100499474575, - 0.2011864287611357, - 0.18721705211371734, - 0.169685269703233, - 0.14837746491421486, - 0.12441910408842387, - 0.0998571317155109, - 0.07725943599337659, - 0.05886334410689719, - 0.04595344135494158, - 0.038394693931726114, - 0.03498107252659358, - 0.03372272264492713, - 0.032664739456819844, - 0.030731661896548797, - 0.02802354324552245, - 0.025845004554215914, - 0.026246630083812342, - 0.0311350749633739, - 0.04159837838474243, - 0.05718740479846456, - 0.07603730370214912, - 0.09559962452377964, - 0.1135646874625772, - 0.12938444514866745, - 0.1453369128415864, - 0.16696255379614883, - 0.20284368445351142, - 0.26300733141625776, - 0.3573537987229991, - 0.4936006836677308, - 0.6740466660299226, - 0.8971196633946733 - ], - "pressure:branch48_seg0:RESISTANCE_19": [ - 8405.681987055184, - 9670.899511937203, - 11043.23018609671, - 12453.194764366257, - 13826.333172685963, - 15099.952685138966, - 16229.61971368702, - 17193.52724700336, - 17984.55343235833, - 18615.647901767577, - 19104.190997875805, - 19465.222744857856, - 19714.026282143543, - 19854.626500100116, - 19888.06894613205, - 19814.68040637751, - 19633.21987016388, - 19352.48704987636, - 18984.21393093184, - 18545.395662822233, - 18057.353948012744, - 17537.07675398385, - 16999.161343297652, - 16452.669710780996, - 15901.747352146645, - 15349.35929973173, - 14798.955541786772, - 14257.11952379934, - 13733.665610731829, - 13239.887556364916, - 12784.184110275748, - 12368.933665147677, - 11986.480281259444, - 11617.725992872236, - 11235.725769764857, - 10809.385315500702, - 10311.244386426362, - 9723.367716825109, - 9045.774731634772, - 8294.003038975829, - 7500.943208364548, - 6710.200336317014, - 5967.166881137733, - 5311.796163778904, - 4772.659670976622, - 4362.994379445011, - 4078.4349478563754, - 3907.0103903120817, - 3827.2258836433384, - 3817.8573165741213, - 3863.0782768866156, - 3949.999789070837, - 4072.979644031551, - 4227.674706224271, - 4408.070561871094, - 4605.993159848411, - 4807.481190941016, - 4995.791792644751, - 5154.017245026515, - 5269.032895454793, - 5333.506230024198, - 5349.486096681589, - 5326.224741091729, - 5276.670925247838, - 5215.913254544803, - 5154.711112526762, - 5097.983571851376, - 5044.33012933773, - 4987.234510775213, - 4918.616462420734, - 4832.499757033947, - 4727.835102608524, - 4610.150827702677, - 4489.501592557503, - 4378.5009504459795, - 4288.13872781716, - 4224.724850903118, - 4187.596029104091, - 4170.8282058465975, - 4164.647148867009, - 4159.450299831286, - 4149.954957780491, - 4136.652587801073, - 4125.951532411476, - 4127.9243305330965, - 4151.936536345154, - 4203.332634985513, - 4279.906457515646, - 4372.497795489849, - 4468.588573907832, - 4556.833567835564, - 4634.540750142861, - 4712.899808471227, - 4819.125684841377, - 4995.375006525693, - 5290.900865743924, - 5754.333889215625, - 6423.583174652582, - 7309.939914513858, - 8405.681987055184 - ], - "flow:branch50_seg0:RESISTANCE_20": [ - 0.22152322295486504, - 0.2915321399918065, - 0.37641814225773845, - 0.4744838142727215, - 0.582775374287747, - 0.6975380489173655, - 0.8146959728008476, - 0.9303448974757836, - 1.041106155708273, - 1.1444563691425107, - 1.238649385613974, - 1.3226582467587062, - 1.3959847692326783, - 1.4583563905788248, - 1.5096463816347538, - 1.549738037410408, - 1.5785490425280537, - 1.5961666583875318, - 1.6028566382895582, - 1.5992138174364243, - 1.5861234833926596, - 1.5646696359352588, - 1.5360663626429836, - 1.5014918881094381, - 1.462012460745049, - 1.4185560301187945, - 1.371933694487669, - 1.3229239210398338, - 1.2723419362435497, - 1.2210717780591305, - 1.1700146356630259, - 1.1199822870530611, - 1.0715079804944017, - 1.0246826971444134, - 0.9790524545117669, - 0.9336121397845408, - 0.8869480428252248, - 0.8375019349716344, - 0.7839180185169187, - 0.725334394238458, - 0.6616813901255413, - 0.5937449150551074, - 0.523107454022111, - 0.4519175689350403, - 0.38258448926036787, - 0.3173825363068869, - 0.2581742897522487, - 0.206266764396539, - 0.16227634229422175, - 0.12629618911729645, - 0.09802007579407397, - 0.07690724567752999, - 0.06238247946600637, - 0.05385379798151839, - 0.05073474044144268, - 0.05238913242683008, - 0.05802697085093339, - 0.06668026503607002, - 0.07721098905214073, - 0.08840125363327775, - 0.09908495717561924, - 0.10832451140823234, - 0.1155048221552978, - 0.1203954521380601, - 0.12311839671695964, - 0.12401372322040491, - 0.1234992825017964, - 0.12191687539534982, - 0.11943229172374117, - 0.11602162391041602, - 0.11152786083560065, - 0.10578155676576423, - 0.09872542425702939, - 0.09049828074222943, - 0.08146815408175365, - 0.07216873889545754, - 0.06318567797295664, - 0.055014483960932434, - 0.04796313934588882, - 0.042086848597463054, - 0.037233561313932115, - 0.03314773205263098, - 0.029600053613028265, - 0.026510430071876086, - 0.0240059803178267, - 0.022389044577320154, - 0.02203720041812045, - 0.023242461360627086, - 0.026091491245980775, - 0.030402529169052128, - 0.03578316288682986, - 0.04181727426967166, - 0.048330623292260906, - 0.055670961052728056, - 0.0649293748342258, - 0.07797931081748435, - 0.09739038644668564, - 0.12605273590962343, - 0.16669993279995562, - 0.22152322295486504 - ], - "pressure:branch50_seg0:RESISTANCE_20": [ - 5724.124390272292, - 6269.322716235545, - 6930.377168894466, - 7694.069031015663, - 8537.395563334216, - 9431.116259772336, - 10343.490092678512, - 11244.112510519306, - 12106.671954740852, - 12911.517476384322, - 13645.050818580901, - 14299.274486089136, - 14870.308848475028, - 15356.031310480683, - 15755.45496172225, - 16067.670955614112, - 16292.038256584798, - 16429.236417627373, - 16481.335007316862, - 16452.966337796308, - 16351.024635095866, - 16183.951607626032, - 15961.202029771697, - 15691.951390930912, - 15384.503159762082, - 15046.083795022148, - 14683.009769392329, - 14301.343439294711, - 13907.433426084803, - 13508.164224430579, - 13110.553895047313, - 12720.924204135668, - 12343.427852148598, - 11978.773359897306, - 11623.425313540745, - 11269.556341286045, - 10906.15709699575, - 10521.09278850272, - 10103.8050659366, - 9647.581841277613, - 9151.8805398765, - 8622.821470719628, - 8072.728323511494, - 7518.333143330273, - 6978.397938325425, - 6470.63411188293, - 6009.546606590208, - 5605.3138727243895, - 5262.736019735394, - 4982.538580463331, - 4762.336779020901, - 4597.919443014796, - 4484.8070202165445, - 4418.389439930834, - 4394.09960627243, - 4406.9832756547785, - 4450.888255205463, - 4518.276263811774, - 4600.284861398183, - 4687.429667730533, - 4770.629601866049, - 4842.583143121504, - 4898.500211473388, - 4936.586263827272, - 4957.7913458216635, - 4964.763750645628, - 4960.757515005033, - 4948.434431861615, - 4929.085598658526, - 4902.524833816805, - 4867.529404529247, - 4822.779742744054, - 4767.829719313369, - 4703.760382697839, - 4633.437770280771, - 4561.018058527042, - 4491.061973155958, - 4427.42834639773, - 4372.515608954824, - 4326.753668697633, - 4288.958424686021, - 4257.139802605958, - 4229.512059909884, - 4205.451445151282, - 4185.947903728889, - 4173.35592693186, - 4170.61592101955, - 4180.001957484829, - 4202.188935799244, - 4235.761382828845, - 4277.663366457674, - 4324.654343662268, - 4375.377410577533, - 4432.540698175594, - 4504.641109214437, - 4606.268209777154, - 4757.433038288962, - 4980.642675100254, - 5297.18497624761, - 5724.124390272292 - ], - "flow:branch51_seg2:RESISTANCE_21": [ - 0.4227308155387928, - 0.5513003161500909, - 0.6989127276963935, - 0.8601712715307613, - 1.028278947673251, - 1.1963419908762554, - 1.3581883479804957, - 1.5090589708046482, - 1.6456076667378348, - 1.766393315633189, - 1.8709711501031903, - 1.9595220855313171, - 2.032636009759686, - 2.090496795945694, - 2.133197238569801, - 2.160680890888763, - 2.172849844561363, - 2.170204982674455, - 2.15357230777917, - 2.1244119497342218, - 2.084642556450102, - 2.036184830718737, - 1.9809452243356145, - 1.9204704846564022, - 1.8559294763851188, - 1.7882585859107933, - 1.7182895899339847, - 1.6469847619688531, - 1.57552014067446, - 1.5052367866827656, - 1.437372701539955, - 1.3727908081902676, - 1.3115711153689604, - 1.2527889651675788, - 1.1945731301061353, - 1.1343041501918756, - 1.0691524173944564, - 0.9966744307359275, - 0.9155502976328904, - 0.8257927990249486, - 0.7291133199850016, - 0.6286014645537157, - 0.5282200951806448, - 0.4321622486177767, - 0.3442360696122562, - 0.2672253015520295, - 0.202591108286941, - 0.1507717177725357, - 0.11102282581960321, - 0.08214718689817718, - 0.06283317439449844, - 0.05178299477231595, - 0.048100199557727014, - 0.0509877550861561, - 0.05963845674875215, - 0.0730967668918387, - 0.08997362238510337, - 0.10856147372724502, - 0.12696555213310864, - 0.14339704269339695, - 0.15642423267217292, - 0.16532279233128955, - 0.17005629267990854, - 0.17118270959690032, - 0.16969430703703137, - 0.16656688240411135, - 0.16252923208978362, - 0.15787152494741563, - 0.1524150567967507, - 0.14568818503773917, - 0.13717905516084442, - 0.12662271564930414, - 0.11420663653521447, - 0.10056692031811017, - 0.08671313286109879, - 0.07374174640134122, - 0.06255592369220755, - 0.05360356032148236, - 0.04685668300900489, - 0.0418188244628069, - 0.03779480780233827, - 0.034204804458569604, - 0.03080515347117039, - 0.027826245719550825, - 0.025912848810936997, - 0.025867568619996752, - 0.028365452630420323, - 0.0336055323026786, - 0.04121590647452531, - 0.05035402788053395, - 0.06001453565672534, - 0.06959270247453606, - 0.07942545286214335, - 0.09118859392012818, - 0.10805709930319098, - 0.13434438668225532, - 0.1750302290633333, - 0.23478515455388407, - 0.3168118349639578, - 0.4227308155387928 - ], - "pressure:branch51_seg2:RESISTANCE_21": [ - 6702.746821482525, - 7525.065341541992, - 8469.180541710222, - 9500.575129713852, - 10575.776128386638, - 11650.69165894631, - 12685.845845733898, - 13650.800260982722, - 14524.15296922184, - 15296.68670056405, - 15965.556764331242, - 16531.920278422233, - 16999.550110391334, - 17369.62229578314, - 17642.73033942949, - 17818.513213231614, - 17896.344704581792, - 17879.428414930953, - 17773.047379463827, - 17586.540452409474, - 17332.179126639607, - 17022.248037855687, - 16668.94067371675, - 16282.149885874016, - 15869.351623825505, - 15436.534927475492, - 14989.019762929225, - 14532.960741725954, - 14075.879697310265, - 13626.353928255618, - 13192.301576846532, - 12779.24181765441, - 12387.686379078737, - 12011.721235481795, - 11639.378190637253, - 11253.903423037256, - 10837.199023949188, - 10373.636589292786, - 9854.774209356512, - 9280.693629836574, - 8662.340709849706, - 8019.476268332046, - 7377.446403457913, - 6763.069386746253, - 6200.701756394347, - 5708.148075164883, - 5294.753810597639, - 4963.321827774454, - 4709.091626604434, - 4524.405736476989, - 4400.875116050517, - 4330.199199055427, - 4306.6443847632045, - 4325.112920282418, - 4380.442000311814, - 4466.520095246809, - 4574.46288701697, - 4693.349048463352, - 4811.059815370058, - 4916.154094617185, - 4999.474785239353, - 5056.3891418694575, - 5086.664168083841, - 5093.868625499842, - 5084.348941714304, - 5064.3462258018, - 5038.5217914281, - 5008.73153148331, - 4973.8324707179445, - 4930.808027104184, - 4876.384426996126, - 4808.867065233797, - 4729.454982636485, - 4642.216631391814, - 4553.60910048672, - 4470.645323961249, - 4399.101846448402, - 4341.843366303052, - 4298.690969037449, - 4266.469296212388, - 4240.732061415659, - 4217.770735264276, - 4196.026885009083, - 4176.974069200836, - 4164.7361612467985, - 4164.44655337382, - 4180.422786251488, - 4213.937846515374, - 4262.613089059963, - 4321.059660252857, - 4382.847365888873, - 4444.108426444106, - 4506.9977797386855, - 4582.23373150066, - 4690.123116745705, - 4858.254152109084, - 5118.477000724869, - 5500.663924233348, - 6025.298912465352, - 6702.746821482525 - ], - "flow:branch52_seg0:RESISTANCE_22": [ - 0.8617807927699843, - 1.094647368432805, - 1.3397098008390615, - 1.5844320327452723, - 1.8159802044876876, - 2.0246628012340118, - 2.2046474965621377, - 2.354536296577616, - 2.474642764142903, - 2.5686599572078666, - 2.64042365404471, - 2.6919865751171757, - 2.725780258298576, - 2.7416732951212577, - 2.7391474837377165, - 2.71837345066755, - 2.6789124425017468, - 2.6229878102741244, - 2.5532520447998954, - 2.472800828547782, - 2.3857346502779984, - 2.2946787320163584, - 2.2017139460010524, - 2.1079652166774387, - 2.013661115513243, - 1.9191740417328824, - 1.8252014176457028, - 1.7331622762188355, - 1.6450569536359894, - 1.5629672423532768, - 1.4880789143555797, - 1.4201560033939828, - 1.3570010708112186, - 1.2942406240270317, - 1.2265091731715414, - 1.1481621202634913, - 1.0549351039258614, - 0.9446687261656468, - 0.8190983829124957, - 0.6825604984156572, - 0.542144628616343, - 0.4064129683474079, - 0.28327733700315005, - 0.17897073279620185, - 0.09709248652043409, - 0.03861735944407045, - 0.0009993098996359338, - -0.018716273757162397, - -0.024762137508477243, - -0.020967006079713024, - -0.009391366085011921, - 0.008197928404204847, - 0.03136714064253797, - 0.059701163470944965, - 0.09196472286203929, - 0.12651276857713858, - 0.1605071192424204, - 0.19076031931285622, - 0.2143780599839192, - 0.2295011564112096, - 0.23545757136286538, - 0.23339004392216636, - 0.22567827711686061, - 0.21481163742980663, - 0.20348998782879707, - 0.19319360224074353, - 0.18412538419537477, - 0.17541372248678427, - 0.1654633943802016, - 0.15272907413864992, - 0.13641976568591457, - 0.11680942076356371, - 0.09548623138155748, - 0.07463281128206496, - 0.05660782181420762, - 0.04313166780028577, - 0.03483466298401939, - 0.030940609115676615, - 0.029880558122908022, - 0.029692267665914995, - 0.02873654821504609, - 0.026528309492516177, - 0.023742678411065646, - 0.0220392669426791, - 0.02348410568584363, - 0.0296067039187469, - 0.04090121305100195, - 0.05631059966208857, - 0.07354933378044602, - 0.09019456327752544, - 0.10447347109091236, - 0.11676196031699133, - 0.13033914936907573, - 0.15141246668965122, - 0.1886064794850264, - 0.25107960098629045, - 0.3467891203232435, - 0.48141815835228907, - 0.6542993825585444, - 0.8617807927699843 - ], - "pressure:branch52_seg0:RESISTANCE_22": [ - 9044.850417296004, - 10408.317690923384, - 11843.19345886212, - 13276.07730397138, - 14631.825133132428, - 15853.691733907202, - 16907.52799673364, - 17785.148466406798, - 18488.38909855906, - 19038.87327834104, - 19459.060038905733, - 19760.968353634144, - 19958.835226292966, - 20051.89124141494, - 20037.102252694633, - 19915.467302930796, - 19684.41742784558, - 19356.97066733489, - 18948.657736400815, - 18477.604300882853, - 17967.81931189179, - 17434.673821748107, - 16890.351636518837, - 16341.43935053246, - 15789.275282588227, - 15236.03988367517, - 14685.816661664634, - 14146.91425855633, - 13631.044930241758, - 13150.397870796163, - 12711.915945638384, - 12314.21753846234, - 11944.436330061593, - 11576.964892716387, - 11180.387511982794, - 10721.65425530471, - 10175.79667384426, - 9530.171181952383, - 8794.938772249521, - 7995.48983204905, - 7173.334730466322, - 6378.606349009942, - 5657.629527508343, - 5046.899366451209, - 4567.490465018058, - 4225.110190550211, - 4004.8511031069493, - 3889.4135268038967, - 3854.0141254846462, - 3876.2351655265943, - 3944.012201621806, - 4047.0000492078275, - 4182.65911729339, - 4348.558893793225, - 4537.466671714031, - 4739.750445442582, - 4938.792255064233, - 5115.929090185937, - 5254.214356718304, - 5342.762260151119, - 5377.637925890656, - 5365.532255531158, - 5320.378752367589, - 5256.753014988035, - 5190.463129157427, - 5130.176311498, - 5077.080591342436, - 5026.072559791464, - 4967.81195842966, - 4893.250682936061, - 4797.757337583668, - 4682.935949198217, - 4558.08561029075, - 4435.985838058814, - 4330.446933744411, - 4251.542114879593, - 4202.961959037527, - 4180.161713892364, - 4173.954962953968, - 4172.85249526269, - 4167.256620499129, - 4154.327065358136, - 4138.016794959105, - 4128.043075956902, - 4136.502814484709, - 4172.351507223765, - 4238.482481708542, - 4328.706655319917, - 4429.641921543685, - 4527.102132897275, - 4610.707190648822, - 4682.658061461393, - 4762.154454997809, - 4885.541757068043, - 5103.318048392918, - 5469.107154905383, - 6029.500148271231, - 6817.7725180179705, - 7830.016936346063, - 9044.850417296004 - ], - "flow:branch53_seg0:RESISTANCE_23": [ - 0.8105306218571235, - 1.04126024795822, - 1.295069897663861, - 1.5613408159704552, - 1.827812795431563, - 2.0835389617385554, - 2.3200796128205683, - 2.5325519853089324, - 2.7177535600903937, - 2.8759608417542855, - 3.008712767173204, - 3.116724711427678, - 3.201736774628015, - 3.263844819452447, - 3.302732829945594, - 3.3186980639523544, - 3.311348787333518, - 3.282281380883483, - 3.2337219558370864, - 3.1683165445278405, - 3.0898927218628573, - 3.0014331107796366, - 2.9056071508737484, - 2.804439608355703, - 2.699108723579434, - 2.5907144525726906, - 2.480431309877306, - 2.3698683276584145, - 2.2610897315739407, - 2.1563226282362744, - 2.057214228292917, - 1.964357608081354, - 1.8767525166326688, - 1.7913691678191461, - 1.7039510284819985, - 1.6094499282079067, - 1.5033609840430804, - 1.3824451972024159, - 1.246482117056507, - 1.097641245162555, - 0.9407942194068007, - 0.7829103335113051, - 0.6312770146609913, - 0.4926044092846061, - 0.3719613130356954, - 0.2724401421485019, - 0.19404649749032118, - 0.13586426210424482, - 0.09537609324746368, - 0.06960299695385651, - 0.05655696292064332, - 0.05419627554111215, - 0.06144933262751924, - 0.07740987599847929, - 0.1005967559739447, - 0.12932672595587, - 0.16093881230748855, - 0.1923098669854454, - 0.2203524766036155, - 0.24260602635528097, - 0.25744645169625435, - 0.264748902742235, - 0.2656894456615612, - 0.261837375868012, - 0.2553491916909403, - 0.24778809222528306, - 0.23984063303433392, - 0.2313518081398933, - 0.22142489410775015, - 0.2089346940846942, - 0.19311020153892627, - 0.17387730414039304, - 0.15221225663367013, - 0.12973198308636985, - 0.10844170523593173, - 0.09011790077802186, - 0.07584920694443603, - 0.06563171037130369, - 0.05869406878080702, - 0.05370903961847723, - 0.0492867165096072, - 0.04473958140540464, - 0.040213978067797376, - 0.03671296605851338, - 0.03578592172136118, - 0.03882861983831204, - 0.046632856996425394, - 0.058844556798664197, - 0.0739804766999588, - 0.0901957653374343, - 0.10580883618705034, - 0.1205554699593967, - 0.13643175439201055, - 0.1580156322673734, - 0.19235952907938167, - 0.24776379419345182, - 0.33238477559346113, - 0.45327457867878806, - 0.6127615909268392, - 0.8105306218571235 - ], - "pressure:branch53_seg0:RESISTANCE_23": [ - 7675.209279105243, - 8721.697060768412, - 9872.865646153217, - 11080.5530477615, - 12289.152374054622, - 13449.013433139315, - 14521.857460180372, - 15485.538394906263, - 16325.531023632047, - 17043.089449175823, - 17645.19361018326, - 18135.088132382436, - 18520.665342108197, - 18802.360030172575, - 18978.738887634234, - 19051.150144921783, - 19017.817068820383, - 18885.980138259634, - 18665.736011597823, - 18369.085924019593, - 18013.390066504246, - 17612.176300705898, - 17177.55202682215, - 16718.700691018246, - 16240.966271677407, - 15749.337684019827, - 15249.142007788945, - 14747.677102949996, - 14254.305386311418, - 13779.128030824904, - 13329.616057206626, - 12908.45939804678, - 12511.121356280246, - 12123.860158831398, - 11727.37004935595, - 11298.754754208574, - 10817.582111951562, - 10269.161453203991, - 9652.492911177917, - 8977.416387711153, - 8266.027482795722, - 7549.935837768982, - 6862.194006989258, - 6233.236254012184, - 5686.0523994724945, - 5234.668278975426, - 4879.109295583824, - 4615.220346989499, - 4431.58387721092, - 4314.688484006969, - 4255.517429792468, - 4244.810393419411, - 4277.707060175612, - 4350.097042808778, - 4455.262499881824, - 4585.568967506668, - 4728.94744333948, - 4871.232705848356, - 4998.421610139766, - 5099.353893120832, - 5166.663514587511, - 5199.784210550776, - 5204.050098247284, - 5186.578809270736, - 5157.1512685547, - 5122.857457480421, - 5086.811289161529, - 5048.309724872521, - 5003.28562276737, - 4946.635586378329, - 4874.862670260007, - 4787.63073358306, - 4689.367637126587, - 4587.407035043405, - 4490.843728392288, - 4407.7350361847875, - 4343.018536576724, - 4296.676480276233, - 4265.210399042122, - 4242.600506252164, - 4222.542799844009, - 4201.919001294469, - 4181.392861337978, - 4165.513815577438, - 4161.309151493837, - 4175.1094876556235, - 4210.506064025877, - 4265.892946292925, - 4334.54280070736, - 4408.088195470947, - 4478.902196058828, - 4545.7864203528525, - 4617.794241618335, - 4715.689188440554, - 4871.457951194583, - 5122.747252328792, - 5506.5506875610545, - 6054.853495458946, - 6778.216214290816, - 7675.209279105243 - ], - "flow:branch56_seg0:RESISTANCE_24": [ - 0.8374705774570483, - 1.0806411758412258, - 1.3459691193646286, - 1.6202023017461007, - 1.8888680080971068, - 2.139536865996504, - 2.3631674681356016, - 2.5550442498158876, - 2.713324707573849, - 2.84016823449732, - 2.9387920147383952, - 3.012101888573566, - 3.063150027993617, - 3.092886429869263, - 3.1016374508366473, - 3.0895230159852085, - 3.0563192032837017, - 3.003612516030173, - 2.93357065570029, - 2.84941455744901, - 2.7552274390284204, - 2.6543455540757575, - 2.549694297310202, - 2.4431494165656353, - 2.335626154463344, - 2.2277590217972367, - 2.1202175685633446, - 2.0142347106679117, - 1.9116573420923804, - 1.8146503560722094, - 1.7248829138193753, - 1.6429406954920671, - 1.5675254044907698, - 1.4951378138484677, - 1.420720641860547, - 1.338310022361608, - 1.242502042874132, - 1.1296144950826212, - 0.9993117673898596, - 0.8542538879274727, - 0.7004922095424461, - 0.5462800680019421, - 0.4003763136685914, - 0.2706613314229099, - 0.16296833443491496, - 0.08017760117302183, - 0.021803848772873755, - -0.014209742867489501, - -0.03189946667509066, - -0.03535219710575342, - -0.02773244080729517, - -0.011675946787551237, - 0.011604583787290505, - 0.04118223372265528, - 0.07588019791564699, - 0.11416763350017906, - 0.1534125521405412, - 0.19042226563838047, - 0.22192066717137865, - 0.24528722950084128, - 0.2589655639103435, - 0.26317525864547064, - 0.25955677186000836, - 0.2505241529659432, - 0.2389788097972805, - 0.22707891428302474, - 0.2159032690740073, - 0.205323272848878, - 0.19418782717443442, - 0.18097662847026866, - 0.16449488265193804, - 0.14444876453898853, - 0.12178404779624774, - 0.09834355118854021, - 0.07652415348899475, - 0.058484412906029196, - 0.04554201576877446, - 0.03770025235589427, - 0.033941648684504666, - 0.0324472749926271, - 0.031356357068932035, - 0.029574264846232004, - 0.027074961603063913, - 0.02497738566713994, - 0.025154047744784615, - 0.02942096772868442, - 0.038893548464088455, - 0.05328547199470654, - 0.07096248938272713, - 0.08958114624681816, - 0.106922012672707, - 0.1223097848215114, - 0.13765491326181836, - 0.1579284439222896, - 0.19102875246682666, - 0.246355859215157, - 0.33342009065902933, - 0.4597887215079159, - 0.6281081442106426, - 0.8374705774570483 - ], - "pressure:branch56_seg0:RESISTANCE_24": [ - 8280.619885088607, - 9523.844539824604, - 10880.3499856744, - 12282.384013426095, - 13655.953977217263, - 14937.513945345876, - 16080.839166323218, - 17061.82102532023, - 17871.039609948264, - 18519.53495030923, - 19023.75509844268, - 19398.556341656622, - 19659.54309715715, - 19811.57228243116, - 19856.31241587269, - 19794.376621884523, - 19624.620085296436, - 19355.15390189082, - 18997.060578913864, - 18566.80734563817, - 18085.26990419955, - 17569.5050567107, - 17034.46906377171, - 16489.75180166141, - 15940.032504626912, - 15388.555148164936, - 14838.74284785022, - 14296.898962156361, - 13772.465850265231, - 13276.511662122095, - 12817.570087183021, - 12398.635451313416, - 12013.07013322024, - 11642.984119609062, - 11262.521746419738, - 10841.192380723633, - 10351.368187294252, - 9774.223649428011, - 9108.04293217263, - 8366.425593112386, - 7580.309546221541, - 6791.890478716108, - 6045.948552302822, - 5382.772719829461, - 4832.185642742285, - 4408.912922031844, - 4110.4735191782775, - 3926.351814784729, - 3835.9120127724186, - 3818.259715882581, - 3857.216189059314, - 3939.3060032334333, - 4058.329149034359, - 4209.546705240319, - 4386.942183314202, - 4582.689054858701, - 4783.331117472389, - 4972.5455561872905, - 5133.583073184846, - 5253.046061627708, - 5322.977388386015, - 5344.499711883999, - 5325.999975425663, - 5279.820155247754, - 5220.793877523205, - 5159.954929104235, - 5102.818754958369, - 5048.727872913024, - 4991.797221362502, - 4924.254154656361, - 4839.990214481866, - 4737.503201514964, - 4621.62844184247, - 4501.787459850407, - 4390.234445827271, - 4298.00516150256, - 4231.836359355686, - 4191.74486113888, - 4172.528768475117, - 4164.888690976127, - 4159.311305930223, - 4150.200249729368, - 4137.42240803216, - 4126.698421925084, - 4127.6016176730245, - 4149.416508778359, - 4197.84566095582, - 4271.425256027062, - 4361.800095687012, - 4456.98912513924, - 4545.645372310572, - 4624.316304750479, - 4702.769218605386, - 4806.4188922218655, - 4975.6462574353345, - 5258.509496831013, - 5703.630740089447, - 6349.698145032715, - 7210.241555977312, - 8280.619885088607 - ], - "flow:branch59_seg0:RESISTANCE_25": [ - 0.7399222674832457, - 0.9503728159032936, - 1.177353710257105, - 1.40931814107541, - 1.6339324906252433, - 1.8410248891628167, - 2.023586724053157, - 2.178465843427394, - 2.304739137972515, - 2.4048822487933363, - 2.4819537677519143, - 2.5383843079673416, - 2.576727095806321, - 2.59750928417026, - 2.6008054495244726, - 2.5866787668594275, - 2.5548763670513153, - 2.5069608796270697, - 2.444936907200436, - 2.3716465825571325, - 2.290680903170424, - 2.204776307636377, - 2.116275855528152, - 2.026589150054852, - 1.936301765086792, - 1.8458614382877843, - 1.7558261645788036, - 1.6673086918875775, - 1.5819646951945827, - 1.5016770014923604, - 1.4277842415029487, - 1.3605887385785302, - 1.2986891600009274, - 1.2387545017641135, - 1.1762248124654606, - 1.105911808198079, - 1.023341566650287, - 0.9256941752912905, - 0.8132500264654071, - 0.6888277252411622, - 0.5580996106788296, - 0.42845018721377404, - 0.30739261641103716, - 0.2014244350284699, - 0.11507975145746974, - 0.05029380047772004, - 0.006032038847043486, - -0.019823222464201335, - -0.030972000820573168, - -0.030960920945565736, - -0.022310304204728196, - -0.0071032147767598214, - 0.013848180880748332, - 0.039884149721746226, - 0.06999168936578856, - 0.1028171143904976, - 0.13599241491336841, - 0.16671411154456253, - 0.1922000960268351, - 0.21035268748107966, - 0.22005257187357954, - 0.2217782461292701, - 0.21719575246429584, - 0.2084964726691682, - 0.19821008979238638, - 0.1880642421959514, - 0.17877443567827436, - 0.17001053555657386, - 0.1606122239196519, - 0.14920891876946338, - 0.13483401395148298, - 0.11738050135525205, - 0.09785930012890397, - 0.07799930161207695, - 0.059921951136742854, - 0.045423608467578425, - 0.03547931673473201, - 0.029867551755514827, - 0.02752634833968975, - 0.026780713405293012, - 0.02603086542416305, - 0.024464834674872617, - 0.02225031708936197, - 0.020534682270817412, - 0.02104219583914359, - 0.02531631869530061, - 0.03418587969544538, - 0.04718265540512563, - 0.06267949847216246, - 0.07855797249117685, - 0.09295307040483235, - 0.10553175183416273, - 0.11833773449847364, - 0.13609319850744173, - 0.16597056214805034, - 0.21619583565146264, - 0.29477889524577866, - 0.40781718481147433, - 0.5567187619966205, - 0.7399222674832457 - ], - "pressure:branch59_seg0:RESISTANCE_25": [ - 8529.136331530079, - 9817.609076958945, - 11207.288021982278, - 12627.478414747411, - 14002.668309950477, - 15270.580954058065, - 16388.306473794848, - 17336.545980167724, - 18109.6477835052, - 18722.768870163287, - 19194.63531276683, - 19540.128416126587, - 19774.880178406063, - 19902.118066348536, - 19922.298670557997, - 19835.80877669038, - 19641.100206436633, - 19347.740079349416, - 18968.001472655735, - 18519.285199329388, - 18023.57695818627, - 17497.630454916605, - 16955.790952213178, - 16406.688673805227, - 15853.908765837508, - 15300.192479312967, - 14748.956109666147, - 14207.012399311707, - 13684.498133844392, - 13192.940825463436, - 12740.536172467038, - 12329.13513415427, - 11950.158122454663, - 11583.211235290493, - 11200.37640284976, - 10769.888621620894, - 10264.356530511965, - 9666.515358926272, - 8978.08179468617, - 8216.312603517323, - 7415.936391911203, - 6622.164411512904, - 5880.995610679821, - 5232.210826704919, - 4703.569906882469, - 4306.921227414612, - 4035.9308500839406, - 3877.6333318518286, - 3809.375505180164, - 3809.443341149597, - 3862.4063007873788, - 3955.5109299382048, - 4083.784780902541, - 4243.188671765793, - 4427.52054713748, - 4628.4925370846795, - 4831.606621918584, - 5019.698642109566, - 5175.7352817969495, - 5286.8735968229375, - 5346.260644123956, - 5356.825996709818, - 5328.769913046709, - 5275.509016341847, - 5212.531161994203, - 5150.413727730315, - 5093.537361295557, - 5039.880829938208, - 4982.340146446849, - 4912.523992466104, - 4824.514371131529, - 4717.656130746442, - 4598.13857221778, - 4476.546744563738, - 4365.869088592303, - 4277.103725311704, - 4216.220306539177, - 4181.8625617684565, - 4167.528663304224, - 4162.963551460976, - 4158.372645454059, - 4148.784702091058, - 4135.226431159359, - 4124.72254451521, - 4127.8297704437355, - 4153.997869563065, - 4208.3013042578295, - 4287.873400439546, - 4382.752031462219, - 4479.96717851741, - 4568.100431049995, - 4645.112766331609, - 4723.51674182739, - 4832.223664331276, - 5015.146298865615, - 5322.647973376301, - 5803.768746402728, - 6495.839907009029, - 7407.482216305843, - 8529.136331530079 - ], - "flow:branch60_seg2:RESISTANCE_26": [ - 0.8171673284647981, - 1.048644864320239, - 1.297752159048213, - 1.5516377262809518, - 1.796832824397398, - 2.02239319452673, - 2.2208919764219957, - 2.3890764308329464, - 2.52628489841894, - 2.635425417832606, - 2.719822630678265, - 2.782224890208835, - 2.825260112784746, - 2.8493382824087448, - 2.8544452521880506, - 2.8404511582211978, - 2.8070606482653964, - 2.7559690050175933, - 2.6893550316722563, - 2.610427083176368, - 2.52308166270675, - 2.430319256104965, - 2.334679429313551, - 2.237618278421964, - 2.139730642712063, - 2.0414619215339176, - 1.9434157306838111, - 1.84684312682894, - 1.7536054251771351, - 1.6658064806504669, - 1.5849440512224044, - 1.511339292521528, - 1.443390674633519, - 1.3774021626387367, - 1.3083012015210316, - 1.2303710850525018, - 1.1387296438553474, - 1.0304005707461377, - 0.9058161614350811, - 0.768229923433417, - 0.6240476587915156, - 0.481422307064891, - 0.34862902876278223, - 0.23272804151182025, - 0.13854226823591764, - 0.06798196697608666, - 0.019790122059695454, - -0.008535083063389437, - -0.021136604457999232, - -0.021839810743331804, - -0.013384419215436925, - 0.002093980792018385, - 0.023822398117338727, - 0.0511461783764753, - 0.08304771044957202, - 0.11802642196122491, - 0.15345818036781683, - 0.18624806034258953, - 0.2133193177474714, - 0.23237058377024858, - 0.24222627005732475, - 0.24348294783888352, - 0.23799706045034372, - 0.22824373019605448, - 0.21698877602402228, - 0.20607505930957248, - 0.19622272908077412, - 0.18697176255967618, - 0.17696531662990636, - 0.16465201965884424, - 0.14896402640046455, - 0.1298219565906661, - 0.10838511461326843, - 0.08661671136559916, - 0.0668878636609343, - 0.05117067441586126, - 0.04049710887632192, - 0.034575164492702364, - 0.03216876450583053, - 0.03138288711833448, - 0.03046464277113381, - 0.028543039643429424, - 0.025859519584411846, - 0.023747378995729335, - 0.02415576438747172, - 0.028805401729668913, - 0.03858488495634809, - 0.0529175212961368, - 0.06996226502577252, - 0.08732126069037485, - 0.10293392409317988, - 0.11647874202918691, - 0.13029060071088963, - 0.1496789850040313, - 0.18263712264404958, - 0.23827473116896794, - 0.3253859999448315, - 0.45050753231910245, - 0.6151111572168652, - 0.8171673284647981 - ], - "pressure:branch60_seg2:RESISTANCE_26": [ - 8445.00772840182, - 9704.42043069151, - 11059.752342507601, - 12441.08166727032, - 13775.12827341645, - 15002.34712307385, - 16082.330484673359, - 16997.380998884346, - 17743.898738935884, - 18337.7056324476, - 18796.89024188654, - 19136.405685637674, - 19370.549814387236, - 19501.553250899044, - 19529.339025386835, - 19453.200580099867, - 19271.53097566565, - 18993.553830931734, - 18631.12348160619, - 18201.695802872535, - 17726.470716257787, - 17221.773131943562, - 16701.420207584142, - 16173.334206150026, - 15640.751502802323, - 15106.095406554567, - 14572.650043437958, - 14047.222107035652, - 13539.938558510616, - 13062.24595833723, - 12622.293241615269, - 12221.827737633312, - 11852.13591352201, - 11493.108546549665, - 11117.147104544287, - 10693.148386013454, - 10194.549700515494, - 9605.157688038702, - 8927.324363894497, - 8178.7512673337915, - 7394.290801812397, - 6618.301118972408, - 5895.805344795819, - 5265.216397957648, - 4752.774623423092, - 4368.87326834942, - 4106.673217661212, - 3952.5626989227885, - 3884.0009006735695, - 3880.1749271301546, - 3926.178646038384, - 4010.392837745886, - 4128.611846251531, - 4277.273857041291, - 4450.842296703839, - 4641.152917666269, - 4833.928456064902, - 5012.330179559023, - 5159.618275212305, - 5263.271557744091, - 5316.893938221985, - 5323.731214914654, - 5293.8838423178895, - 5240.818355999818, - 5179.58290092396, - 5120.204035460518, - 5066.599914475532, - 5016.267666458156, - 4961.825039608189, - 4894.831400008945, - 4809.47686264521, - 4705.329538899586, - 4588.696920604514, - 4470.260358467443, - 4362.920519597243, - 4277.407134005056, - 4219.334872394269, - 4187.115020254314, - 4174.022386020688, - 4169.746619214216, - 4164.750676128869, - 4154.295703127507, - 4139.695326306119, - 4128.203685544616, - 4130.4256106566545, - 4155.723151120626, - 4208.930929370005, - 4286.911300972462, - 4379.647586076955, - 4474.093639160245, - 4559.038325189501, - 4632.732369390237, - 4707.879317026787, - 4813.366777680014, - 4992.683950010606, - 5295.3945808385715, - 5769.345705311437, - 6450.101384776235, - 7345.669480717225, - 8445.00772840182 - ], - "flow:branch62_seg0:RESISTANCE_27": [ - 0.669246548836566, - 0.8706416300312722, - 1.0952215836467585, - 1.3323674041457474, - 1.5699077164612332, - 1.7966365050826543, - 2.0036603860532582, - 2.1853263246999837, - 2.3387652459572776, - 2.46451411589431, - 2.5644372343709416, - 2.640917943672161, - 2.6965363926870762, - 2.732481094229552, - 2.7494404535857075, - 2.747604065041003, - 2.726930542500894, - 2.68854479062242, - 2.6339557970651137, - 2.5657307913874132, - 2.487168975564631, - 2.4012330763172836, - 2.310680608936207, - 2.217455612815018, - 2.122714527580592, - 2.0272358317320016, - 1.9316778471922667, - 1.8370353794352003, - 1.7447729030487538, - 1.6566748376765432, - 1.574297709427085, - 1.4984792538161298, - 1.428629542720829, - 1.3624096030848345, - 1.2960030985037785, - 1.2245872532899755, - 1.1433796852685065, - 1.0487285793184398, - 0.9393682596040545, - 0.8164946013631272, - 0.684279513750701, - 0.5490024888825046, - 0.417911908552261, - 0.2980076208671066, - 0.1950252702825126, - 0.11238435165852012, - 0.050815046297237786, - 0.009403293808964291, - -0.014695700497159236, - -0.024717448735623353, - -0.02355279873683572, - -0.0137263356974778, - 0.0033324311767489543, - 0.02655801399690221, - 0.05488843643778488, - 0.08704138897223163, - 0.12094897312481709, - 0.1540250629803218, - 0.18346739373769622, - 0.20681177468713802, - 0.22236455535835192, - 0.229797573623007, - 0.2299614586285236, - 0.2246167424374785, - 0.2160832175770155, - 0.20632117593225238, - 0.1965827676556376, - 0.18715756869011857, - 0.17741778571002434, - 0.16625952936484012, - 0.15263044975909512, - 0.13606522735767962, - 0.11703096988280538, - 0.09679543017430793, - 0.07722391573406055, - 0.06019026027635524, - 0.04704724151742268, - 0.03818316977184519, - 0.03310008846086379, - 0.030515855759681312, - 0.0289248202200737, - 0.027228158433931993, - 0.025092659529192898, - 0.02312225440624953, - 0.02265154864779845, - 0.02518469029619346, - 0.03184414167650388, - 0.04274623482009677, - 0.05693203881270721, - 0.07265703771205978, - 0.08803484055509232, - 0.10212600597929634, - 0.115861238219676, - 0.13261324193549504, - 0.1582910858129332, - 0.2004188451390874, - 0.26719430362339325, - 0.36565386086611606, - 0.49943032635204243, - 0.669246548836566 - ], - "pressure:branch62_seg0:RESISTANCE_27": [ - 7696.154307171899, - 8808.731866483415, - 10049.39084971969, - 11359.468119762905, - 12671.724701931133, - 13924.2546086879, - 15067.927645999038, - 16071.514453733462, - 16919.165247899527, - 17613.846418714544, - 18165.85701705705, - 18588.363467482708, - 18895.619423738575, - 19094.19065037963, - 19187.880141344493, - 19177.735282428905, - 19063.527442229413, - 18851.47099137697, - 18549.90211066264, - 18173.003082887837, - 17738.999865010403, - 17264.25960584082, - 16764.015793773367, - 16249.007989034262, - 15725.624772565656, - 15198.16673454748, - 14670.270677795419, - 14147.432259102487, - 13637.741753330749, - 13151.056924831288, - 12695.976573577493, - 12277.128646438436, - 11891.254172106603, - 11525.431837316095, - 11158.57885187614, - 10764.052499530299, - 10315.433212053254, - 9792.547072931258, - 9188.402041823343, - 8509.604555914522, - 7779.201714855177, - 7031.8836509483735, - 6307.692985280883, - 5645.299351075076, - 5076.388474077043, - 4619.850851626114, - 4279.720263128097, - 4050.9471161530114, - 3917.81576007462, - 3862.4520832209364, - 3868.886021157339, - 3923.1708735983175, - 4017.4095268027745, - 4145.715849352189, - 4302.223108946423, - 4479.847374858107, - 4667.1648455472805, - 4849.88884806365, - 5012.538681913431, - 5141.501287287384, - 5227.42034080666, - 5268.482958970666, - 5269.388317623739, - 5239.8622176824165, - 5192.720012394893, - 5138.791046490668, - 5084.992639659172, - 5032.924511684661, - 4979.118510505612, - 4917.476361466753, - 4842.184512065714, - 4750.672372844192, - 4645.520411837614, - 4533.732143491252, - 4425.612185253995, - 4331.51225638351, - 4258.905578772246, - 4209.937315745393, - 4181.856579288447, - 4167.580365121155, - 4158.790922862022, - 4149.417963910867, - 4137.62071372356, - 4126.7354998964165, - 4124.135155038017, - 4138.129124184846, - 4174.918285663404, - 4235.145298702311, - 4313.512690246058, - 4400.383138083379, - 4485.335552279305, - 4563.180126945749, - 4639.058400992594, - 4731.60238616423, - 4873.4558649089395, - 5106.1844865431585, - 5475.075703655613, - 6019.001072826348, - 6758.029516722453, - 7696.154307171899 - ], - "flow:branch64_seg2:RESISTANCE_28": [ - 0.401995985925716, - 0.5243882576055637, - 0.6641460034769174, - 0.8158050654008444, - 0.9726474082044817, - 1.1280020957121883, - 1.27604087050806, - 1.4124263346576955, - 1.5342816923843885, - 1.6406062372657524, - 1.731344780012459, - 1.8070012937593594, - 1.86838153799959, - 1.9158184506680858, - 1.9494907673224198, - 1.9693729348837448, - 1.9753949581659933, - 1.968052224718773, - 1.9481533052427609, - 1.9171401877556176, - 1.8768720010506308, - 1.829191084034147, - 1.775898445296865, - 1.7184083341754959, - 1.6577489106435217, - 1.5947115517878954, - 1.5299891807436437, - 1.4644171258776677, - 1.3990550273499271, - 1.3351348917630688, - 1.2737918648786815, - 1.2157912782070466, - 1.1611252027461196, - 1.108804462853786, - 1.0569258136897677, - 1.0028845720037176, - 0.9439137578956114, - 0.8776853900470725, - 0.8030142271892073, - 0.7200571016722955, - 0.6306424244230651, - 0.5379130329165582, - 0.4458118044160254, - 0.358423204342821, - 0.27937625757539875, - 0.21120669422077032, - 0.15512155599678365, - 0.11130975747643869, - 0.07881462386627965, - 0.056298051912932925, - 0.042362985099415544, - 0.03569360540344642, - 0.035424541620485424, - 0.04081725334848003, - 0.05114407885967289, - 0.06553516112941592, - 0.08269335168003637, - 0.10100981878146502, - 0.11869913059295875, - 0.13409245599003392, - 0.14589069179105715, - 0.1535004731895268, - 0.15700468932178266, - 0.15706454931194158, - 0.15473585333518533, - 0.15102504721295923, - 0.146659492446928, - 0.14190345075791594, - 0.1365426308331023, - 0.13007277967312614, - 0.12195920709889899, - 0.11193006468831139, - 0.10017332758866491, - 0.08732733082824509, - 0.07439623144769342, - 0.062455409789925954, - 0.052369411153589424, - 0.044535641125554117, - 0.03887177666451213, - 0.03483293667796434, - 0.03169186932055282, - 0.02885560574677454, - 0.026084300577567766, - 0.023622188038268637, - 0.02212717222829838, - 0.02240697262117411, - 0.025127210911772824, - 0.03046691771493129, - 0.03803124496851267, - 0.04695602454527886, - 0.05622984574373157, - 0.06525333099187383, - 0.07437367326350121, - 0.08526504940024471, - 0.1010654965380649, - 0.12599477586835905, - 0.16488066730845993, - 0.22215448682552338, - 0.3007474046256674, - 0.401995985925716 - ], - "pressure:branch64_seg2:RESISTANCE_28": [ - 6924.351743772403, - 7815.008511298113, - 8832.03499888601, - 9935.668161382388, - 11077.020406384043, - 12207.54688404859, - 13284.83497437061, - 14277.321141755056, - 15164.070750443092, - 15937.80159270076, - 16598.112052369124, - 17148.669575742333, - 17595.337728678856, - 17940.539322854987, - 18185.57502890757, - 18330.258895368483, - 18374.08156257546, - 18320.647998943183, - 18175.84222767586, - 17950.157692264616, - 17657.12339759443, - 17310.14616741728, - 16922.332062006906, - 16503.972668613256, - 16062.549976302394, - 15603.82288919862, - 15132.833855416646, - 14655.661615491917, - 14180.017241918296, - 13714.866129350372, - 13268.468809607779, - 12846.394651407003, - 12448.585954868504, - 12067.84442251951, - 11690.320014043053, - 11297.05827478, - 10867.923706469397, - 10385.975432964191, - 9842.588374079143, - 9238.903809342994, - 8588.227207666137, - 7913.429208084519, - 7243.202392816264, - 6607.269690599638, - 6032.039758804514, - 5535.965275442593, - 5127.829964027884, - 4809.0085685749955, - 4572.53930246605, - 4408.684698605226, - 4307.278283044547, - 4258.744759809096, - 4256.786764619521, - 4296.02988945029, - 4371.178891118143, - 4475.903761730021, - 4600.765064838933, - 4734.055224071557, - 4862.781532207999, - 4974.799793258773, - 5060.656346265098, - 5116.03323574442, - 5141.533651499677, - 5141.969256661731, - 5125.023179897724, - 5098.019394933411, - 5066.250960186642, - 5031.640925918848, - 4992.6298798782, - 4945.548339177737, - 4886.505327532776, - 4813.522585747948, - 4727.968021574066, - 4634.486841812901, - 4540.386364578829, - 4453.492204732465, - 4380.0957163806015, - 4323.088846625292, - 4281.872525175103, - 4252.481615785155, - 4229.623858013891, - 4208.984177813492, - 4188.817204278682, - 4170.90024624335, - 4160.020915952046, - 4162.057042171871, - 4181.85239860697, - 4220.70980304568, - 4275.75591966491, - 4340.702139059505, - 4408.188357738664, - 4473.8528649221635, - 4540.222207159915, - 4619.479481583524, - 4734.460394839578, - 4915.872432056637, - 5198.847671400107, - 5615.633096286683, - 6187.559028843875, - 6924.351743772403 - ], - "flow:branch66_seg0:RESISTANCE_29": [ - 0.5362385257655186, - 0.6979397494026515, - 0.8819039030794014, - 1.0806906959638103, - 1.2852911960596909, - 1.4868935313298557, - 1.6779534076966678, - 1.8530252474020186, - 2.008612952180157, - 2.143693494629628, - 2.258454219101812, - 2.353705787700164, - 2.4306559348168673, - 2.4898519835562576, - 2.531616918786634, - 2.5560476288165854, - 2.563110491838518, - 2.5535077306057907, - 2.528306572949678, - 2.489284438295437, - 2.438757990941356, - 2.3789721752026063, - 2.3121085673870243, - 2.2398840859112954, - 2.163533880087387, - 2.0840235846047093, - 2.0022148202718277, - 1.919158786388597, - 1.836196625653818, - 1.7548890184386492, - 1.6766692252881032, - 1.602499027648319, - 1.532363835757838, - 1.4649937885435367, - 1.3979620803644197, - 1.3279426426945622, - 1.251401845969562, - 1.1653332719281, - 1.068195025398996, - 0.9601295428410864, - 0.8434027787537596, - 0.7220002731258565, - 0.6009623673151772, - 0.48558430968591754, - 0.3806333118380396, - 0.28956582015756954, - 0.21411256544311824, - 0.15470096924682317, - 0.11025789935866173, - 0.07913125252223606, - 0.05957323580722354, - 0.04988256874285409, - 0.04890573774593927, - 0.05564999612082172, - 0.06911146836710706, - 0.08810147718471004, - 0.11087124905564316, - 0.13526366220307762, - 0.15889593954920336, - 0.17954650620123874, - 0.19547701461839445, - 0.2058812751957161, - 0.21085112840345765, - 0.21122182970667916, - 0.20836812565184643, - 0.20360485152589328, - 0.1978867895276494, - 0.19157417214774158, - 0.18440422039849755, - 0.1757324355640508, - 0.16487382937326606, - 0.15147502274264849, - 0.13578423625268746, - 0.11863575161731041, - 0.10134207142373831, - 0.08531653853867698, - 0.07170518170133393, - 0.061046818224816356, - 0.053252852348034604, - 0.04763078841663101, - 0.043238784655757305, - 0.03930499879323806, - 0.035514008030939424, - 0.03217926034490382, - 0.030156718162025423, - 0.030499388092023176, - 0.034080128061755637, - 0.04113764974662947, - 0.05115486615502129, - 0.06300990902099726, - 0.07538138430976142, - 0.08749288328506492, - 0.09981415464694243, - 0.1145619722835342, - 0.13588346072875448, - 0.1693570143617713, - 0.22132556220132046, - 0.29763871377606876, - 0.4020794974362836, - 0.5362385257655186 - ], - "pressure:branch66_seg0:RESISTANCE_29": [ - 6865.972443143277, - 7730.499943341807, - 8714.055084898424, - 9776.858725212842, - 10870.745060199373, - 11948.60185698169, - 12970.093924811099, - 13906.106754715669, - 14737.94863227201, - 15460.149992673374, - 16073.71246311918, - 16582.97020797778, - 16994.380318738597, - 17310.869030989397, - 17534.163167165494, - 17664.78073576019, - 17702.541979461705, - 17651.20129707973, - 17516.464568807092, - 17307.83467865396, - 17037.697556358828, - 16718.055684359526, - 16360.572751213778, - 15974.428175317018, - 15566.225620655405, - 15141.127804772825, - 14703.741340204382, - 14259.686411401823, - 13816.133370689788, - 13381.4263175719, - 12963.228107827754, - 12566.680857828911, - 12191.70656414584, - 11831.515978098463, - 11473.134304771276, - 11098.77888523611, - 10689.557345859506, - 10229.396021856819, - 9710.05124785605, - 9132.28455325645, - 8508.21075039435, - 7859.1383293726285, - 7212.015223028106, - 6595.152211751057, - 6034.0369537961915, - 5547.149166796245, - 5143.742116355422, - 4826.10099041287, - 4588.488341310211, - 4422.071281662938, - 4317.505324033487, - 4265.694657521675, - 4260.4720794800005, - 4296.529919379928, - 4368.501007095312, - 4470.030138925952, - 4591.767584771403, - 4722.1804010002015, - 4848.529189206605, - 4958.9364104001215, - 5044.108076445651, - 5099.733934964265, - 5126.305006434226, - 5128.286942400979, - 5113.029756479075, - 5087.563149732108, - 5056.991817406167, - 5023.24172448536, - 4984.907936262284, - 4938.544672605062, - 4880.489678000781, - 4808.853628863605, - 4724.963624105474, - 4633.280109160129, - 4540.8203134288815, - 4455.140603820984, - 4382.368165640152, - 4325.383758686999, - 4283.71371015844, - 4253.655626692851, - 4230.173998373382, - 4209.142209116971, - 4188.873866718026, - 4171.044805094653, - 4160.23138452751, - 4162.06345216009, - 4181.207699218113, - 4218.940385728344, - 4272.496931966538, - 4335.879325390276, - 4402.022798918741, - 4466.776322097226, - 4532.651382842933, - 4611.499851815303, - 4725.494122801297, - 4904.458802190821, - 5182.3060425648, - 5590.310488537579, - 6148.697911870636, - 6865.972443143277 - ], - "flow:branch67_seg0:RESISTANCE_30": [ - 0.5474903156196168, - 0.714438153570356, - 0.9056221248582773, - 1.1134074474233508, - 1.328449837846871, - 1.5414261174877262, - 1.7442052842532934, - 1.9307417002643135, - 2.0971351818653097, - 2.2420307640500132, - 2.3654346352421847, - 2.4681972827984735, - 2.551545607198086, - 2.61613904821764, - 2.6623945418769512, - 2.6904067233253808, - 2.7001798178179106, - 2.692357602225711, - 2.6679746376906155, - 2.6288419542625108, - 2.577299126586991, - 2.5157122215646424, - 2.446398380607815, - 2.371207353932474, - 2.291504533047481, - 2.208335559847752, - 2.1226105789462215, - 2.0354078477897004, - 1.948097584433817, - 1.8622938377319291, - 1.7795303458106633, - 1.7008983113181697, - 1.626514410843489, - 1.5552262397104457, - 1.4846329980759536, - 1.4113434561426474, - 1.3316447082338254, - 1.2422918317449954, - 1.1414352146962963, - 1.028970656848385, - 0.9070105799183782, - 0.7795028058922723, - 0.651632086837371, - 0.5289686264950857, - 0.41664426890798817, - 0.3184802014110457, - 0.23658188243907244, - 0.17158721335423346, - 0.1225440454730771, - 0.0878210938283737, - 0.06555783101950469, - 0.053952185914730874, - 0.05172364953213754, - 0.05778397903848078, - 0.07109542852383864, - 0.09042583762210053, - 0.11399791025148386, - 0.13959316284895248, - 0.1647162872554486, - 0.18698563029962073, - 0.20449450268437963, - 0.216267113908052, - 0.2222597920731414, - 0.22327122419086604, - 0.22068522792702164, - 0.21589824854490136, - 0.20998104701212233, - 0.20339644256284078, - 0.19594884730726744, - 0.1870064278938198, - 0.1758424414414491, - 0.16203597308474324, - 0.1457603229635137, - 0.1278170873173313, - 0.10953514970938437, - 0.0923990984700816, - 0.07766124999098759, - 0.06598111403598764, - 0.05735399925166625, - 0.05112044574429376, - 0.04632004831967314, - 0.04210564384699848, - 0.038074444691632285, - 0.03447236149812466, - 0.032132715119895086, - 0.03214903409152245, - 0.03547645191608231, - 0.04245514076175078, - 0.052651456908691996, - 0.06495078622414494, - 0.07797306692692402, - 0.09081220026152294, - 0.10377988175414128, - 0.11897155186486345, - 0.14050498138800163, - 0.1740829343885617, - 0.22634004542474676, - 0.3035006660850354, - 0.40988840682901545, - 0.5474903156196168 - ], - "pressure:branch67_seg0:RESISTANCE_30": [ - 6740.5090114350105, - 7576.485446312326, - 8533.822161089805, - 9574.28866433998, - 10651.094288781762, - 11717.554047428834, - 12732.952671219882, - 13667.01716672834, - 14500.21771153964, - 15225.769439019827, - 15843.703337149918, - 16358.27814564794, - 16775.6374594304, - 17099.083364467628, - 17330.703630758286, - 17470.972135387292, - 17519.91003594276, - 17480.7409877905, - 17358.645463739427, - 17162.69203552515, - 16904.595914889007, - 16596.20497118057, - 16249.122083722998, - 15872.609712036197, - 15473.504932537573, - 15057.043703920574, - 14627.783494302686, - 14191.12358184965, - 13753.925211482087, - 13324.270589131575, - 12909.83977191576, - 12516.096859943575, - 12143.626100846706, - 11786.656930809833, - 11433.167558366158, - 11066.17670223255, - 10667.092317799481, - 10219.665744026142, - 9714.63521359761, - 9151.47895309251, - 8540.774726186652, - 7902.290899993353, - 7261.989658882004, - 6647.763302162632, - 6085.309081981274, - 5593.761253710722, - 5183.662713010619, - 4858.207694158523, - 4612.628397393528, - 4438.756308478419, - 4327.275002100633, - 4269.160767509569, - 4258.001569984264, - 4288.348130425434, - 4355.004028581494, - 4451.799331120562, - 4569.83438614892, - 4698.000334740178, - 4823.8021434495495, - 4935.31389606428, - 5022.988015685112, - 5081.938318251274, - 5111.94612062423, - 5117.010776904149, - 5104.061630848765, - 5080.091257786032, - 5050.461397929548, - 5017.489577388741, - 4980.196407219023, - 4935.418038165584, - 4879.515369954779, - 4810.38070887285, - 4728.881839940682, - 4639.032684960398, - 4547.487510061813, - 4461.680259133926, - 4387.881795011555, - 4329.394554120036, - 4286.19504492482, - 4254.981080720937, - 4230.943518005012, - 4209.840262823972, - 4189.654391958259, - 4171.617281066602, - 4159.901710130468, - 4159.983425927985, - 4176.645174438581, - 4211.590337508268, - 4262.647482818032, - 4324.235279334139, - 4389.443190556644, - 4453.734007638921, - 4518.66851817761, - 4594.739453715817, - 4702.566184893651, - 4870.704795039468, - 5132.37762601023, - 5518.7525642202245, - 6051.479704107157, - 6740.5090114350105 - ], - "flow:branch68_seg0:RESISTANCE_31": [ - 0.6308281282485112, - 0.8090992654202368, - 1.0009276466381873, - 1.1965876159948958, - 1.3857332426234745, - 1.5598831179980106, - 1.713239564841487, - 1.843268222551077, - 1.9492608562326115, - 2.033333229997196, - 2.0980777827807753, - 2.1454685944187304, - 2.1776197833382818, - 2.1949261970929554, - 2.1974087489337255, - 2.185153372302027, - 2.157941463511127, - 2.117149398227823, - 2.064524065112502, - 2.0024552375587397, - 1.9339938985696856, - 1.861425245828475, - 1.7866882579072894, - 1.7109525370451883, - 1.6346908586742803, - 1.5582860792400854, - 1.4822317602301605, - 1.4074927517140428, - 1.3354867184926338, - 1.267803601797269, - 1.2055479937249178, - 1.1489200691616295, - 1.0966807481152248, - 1.0459582991358973, - 0.9928733768231073, - 0.9330543137692019, - 0.8627832052724599, - 0.7797527347645539, - 0.684316274420302, - 0.5789499635517992, - 0.46849939453232886, - 0.3592269277676671, - 0.25744266214638634, - 0.1685586998743818, - 0.09628655495056679, - 0.0421979708470265, - 0.005321424053775631, - -0.01616684813860993, - -0.025367843995804367, - -0.025268311164231786, - -0.017929052540328623, - -0.005067152566679523, - 0.0126454612765168, - 0.03466707511661969, - 0.06011369249690647, - 0.08781226496704081, - 0.11573791782738081, - 0.14150992003186194, - 0.16279102261413436, - 0.17784715360523132, - 0.1857771373239049, - 0.18702941826174077, - 0.1830494095580353, - 0.17568314608596472, - 0.16705158716389126, - 0.1585754982722218, - 0.1508113425580753, - 0.14344432307921073, - 0.13547886553824814, - 0.12576533906809623, - 0.11352158515930502, - 0.09869263906800747, - 0.08217229055099896, - 0.0654409133017929, - 0.050284457127295575, - 0.03819276966662238, - 0.02995039178442407, - 0.025329952079997397, - 0.02340443002065373, - 0.022761221325218878, - 0.022067877964859428, - 0.0206770839266826, - 0.018772682927703097, - 0.01735184836448872, - 0.017876829018872414, - 0.021627753434251804, - 0.029263031435111025, - 0.04034085112076508, - 0.05344907770991366, - 0.06680090545919373, - 0.07885679432712098, - 0.08940893656361347, - 0.10027663420390583, - 0.11553448878828354, - 0.1412982405408814, - 0.18452476011256544, - 0.2518848089328947, - 0.3484620759419192, - 0.4752753233992787, - 0.6308281282485112 - ], - "pressure:branch68_seg0:RESISTANCE_31": [ - 8547.421281609164, - 9832.79870518707, - 11215.927092265965, - 12626.682143807458, - 13990.467230356122, - 15246.129373295757, - 16351.865936488522, - 17289.40357544488, - 18053.63574763645, - 18659.817616995948, - 19126.641286648617, - 19468.340343102063, - 19700.158084515642, - 19824.94145593671, - 19842.841246893415, - 19754.477057996948, - 19558.272704520532, - 19264.15218334067, - 18884.710978399347, - 18437.17992591773, - 17943.55734112614, - 17420.32004442811, - 16881.448533850547, - 16335.37592053251, - 15785.511028114743, - 15234.614342895527, - 14686.244560933685, - 14147.358481384674, - 13628.17780563096, - 13140.16638921302, - 12691.288604637992, - 12282.987760583761, - 11906.329794738145, - 11540.608838328888, - 11157.853885643986, - 10726.544171862299, - 10219.872717220165, - 9621.203218875595, - 8933.083574501967, - 8173.367339194611, - 7376.9923898263205, - 6589.111838738211, - 5855.223004119833, - 5214.348433871646, - 4693.2490292656385, - 4303.257435657224, - 4037.3687367934317, - 3882.4331685012808, - 3816.0917935770885, - 3816.809449035162, - 3869.7272544108982, - 3962.4646212821285, - 4090.1767922358963, - 4248.957881030725, - 4432.434062346257, - 4632.147377038088, - 4833.497995510768, - 5019.320279025624, - 5172.762105010884, - 5281.320400926981, - 5338.497475146823, - 5347.526719426118, - 5318.8299072862, - 5265.717390513474, - 5203.481791724267, - 5142.3671689398925, - 5086.38575418909, - 5033.267786427044, - 4975.8349374866175, - 4905.798094584602, - 4817.517708292771, - 4710.597469696623, - 4591.481816146121, - 4470.844595097948, - 4361.56293067809, - 4274.378979750929, - 4214.949469093966, - 4181.634996671254, - 4167.751523311809, - 4163.113835187542, - 4158.11466417011, - 4148.086707396617, - 4134.355521920591, - 4124.110965795748, - 4127.896201542072, - 4154.941261317684, - 4209.993437013358, - 4289.8671594359075, - 4384.380599963326, - 4480.650462963603, - 4567.576297497717, - 4643.659760117383, - 4722.018452470631, - 4832.031223613173, - 5017.794019401897, - 5329.467536712603, - 5815.149556687338, - 6511.49468924054, - 7425.848453278462, - 8547.421281609164 - ], - "flow:branch69_seg0:RESISTANCE_32": [ - 1.3729031608017483, - 1.7444822037496186, - 2.1360218620963543, - 2.527868625914787, - 2.8994463917318605, - 3.2349530140856357, - 3.5247047831955496, - 3.7662858746118957, - 3.959646820341909, - 4.110378904484961, - 4.2248076363950435, - 4.305956814368371, - 4.358044488744514, - 4.381143421492404, - 4.374508922791168, - 4.338834951443368, - 4.273368333767661, - 4.181711460469492, - 4.068191460626443, - 3.937497046131639, - 3.796286511632562, - 3.6487286818125795, - 3.4981446062405213, - 3.3465012552814293, - 3.194217248442663, - 3.041968458504471, - 2.8908972857581783, - 2.743219072128684, - 2.6020552915674773, - 2.4706587049936637, - 2.3508567967223026, - 2.242246093317787, - 2.1414197996269735, - 2.0414212181951776, - 1.9337965256551357, - 1.8095864587975463, - 1.6619894704341656, - 1.487369899406477, - 1.2883794117409346, - 1.071729179687233, - 0.8484352130053354, - 0.6321385039101061, - 0.435408882226633, - 0.2682896568762398, - 0.1367143459628384, - 0.04263181029110577, - -0.01791568605256795, - -0.049379528010522394, - -0.058323942361158794, - -0.05106653121542971, - -0.030872926442040136, - -0.0008154386056521796, - 0.03818778366350841, - 0.0854121070216801, - 0.13868597500602234, - 0.195414357240779, - 0.251115201161364, - 0.30071931509587346, - 0.33965775388405506, - 0.36499134327074545, - 0.3755715769775307, - 0.37311416369896405, - 0.36141939045440974, - 0.3443138289506491, - 0.326127412357764, - 0.30930595070341504, - 0.2942501274765902, - 0.2797184667796325, - 0.2632961738707986, - 0.24259186079343645, - 0.2163709864807477, - 0.18500902599212635, - 0.15097851813356972, - 0.11766151638289475, - 0.08874293899630421, - 0.06696057346500202, - 0.05337295876241912, - 0.04680712129639849, - 0.0448566770716238, - 0.04450185000652866, - 0.0431150956421382, - 0.03990668360830352, - 0.035877782759120104, - 0.033560816500301134, - 0.03616284065062075, - 0.04606645263555009, - 0.06408050018544222, - 0.0886103907709307, - 0.11607249360344178, - 0.14274062162233705, - 0.16583070331937486, - 0.18591046918323995, - 0.2081180297708377, - 0.24220265293812854, - 0.301769367776623, - 0.4013272063014029, - 0.5534724037486259, - 0.7675800679992674, - 1.0425519709879452, - 1.3729031608017483 - ], - "pressure:branch69_seg0:RESISTANCE_32": [ - 9138.649448943357, - 10529.706063752696, - 11995.487953340653, - 13462.419533972703, - 14853.471367669448, - 16109.485976660819, - 17194.211078150463, - 18098.602705195783, - 18822.47566764717, - 19386.761696933823, - 19815.141196447476, - 20118.934165799543, - 20313.931449328076, - 20400.405441346236, - 20375.568294366465, - 20242.017937419034, - 19996.934762532437, - 19653.804808586006, - 19228.82727098849, - 18739.55497952846, - 18210.914164542395, - 17658.51138743854, - 17094.779448339785, - 16527.08196795984, - 15956.986105281017, - 15387.022081852625, - 14821.466628325023, - 14268.61317807984, - 13740.147392810268, - 13248.24642480408, - 12799.751709801978, - 12393.15279019837, - 12015.695865629586, - 11641.337594321576, - 11238.429940308239, - 10773.432684926429, - 10220.883312496879, - 9567.171231680435, - 8822.22331439404, - 8011.163745459845, - 7175.232453598891, - 6365.496345874912, - 5629.01228746119, - 5003.378769377958, - 4510.808722532339, - 4158.59797203918, - 3931.930195969722, - 3814.1410302091845, - 3780.656400265204, - 3807.825504584344, - 3883.4230067309068, - 3995.9472948275975, - 4141.961154775039, - 4318.751823231805, - 4518.189783640395, - 4730.560187334453, - 4939.083861790073, - 5124.783599490392, - 5270.554933677955, - 5365.394666332531, - 5405.0032082117805, - 5395.80354783979, - 5352.022575825135, - 5287.98558307371, - 5219.902262495373, - 5156.928836116408, - 5100.565316998317, - 5046.1640715020685, - 4984.6849875366825, - 4907.175579490255, - 4809.014175204957, - 4691.606416562318, - 4564.208588400606, - 4439.481867261511, - 4331.221245119439, - 4249.67600129156, - 4198.8089201947405, - 4174.228815874507, - 4166.927063011472, - 4165.598719700992, - 4160.407216390156, - 4148.396090177836, - 4133.3133526472, - 4124.639474769022, - 4134.380505580341, - 4171.456022145666, - 4238.894055800548, - 4330.72503283517, - 4433.5331446669725, - 4533.368903947054, - 4619.809760854204, - 4694.981091581461, - 4778.118110852191, - 4905.718527022046, - 5128.714614317997, - 5501.422904692286, - 6070.999115560896, - 6872.540236595045, - 7901.934901871615, - 9138.649448943357 - ], - "flow:branch71_seg0:RESISTANCE_33": [ - 0.8562108934554932, - 1.0965344577019467, - 1.3539971094532848, - 1.615271481485937, - 1.8665417311345223, - 2.0966966501404465, - 2.2983538807674853, - 2.468525684305884, - 2.606800813958277, - 2.716339925615957, - 2.8007556316012305, - 2.8627911942167117, - 2.9051033630767966, - 2.928036226991861, - 2.9314344983496925, - 2.915208810516932, - 2.8790264227156537, - 2.8247233962482237, - 2.7546997083600275, - 2.6722646408448782, - 2.5815069744187227, - 2.485499711063983, - 2.3867710582606207, - 2.2867629827565863, - 2.1860095243737083, - 2.0849380930418686, - 1.9841879321655498, - 1.8850842643621135, - 1.7895860201962674, - 1.6998718434129771, - 1.617438681385575, - 1.5424940060355297, - 1.4732472605370195, - 1.405714253732898, - 1.3345470472107088, - 1.2538189383679168, - 1.1585905625091868, - 1.0459519504232218, - 0.9166319725733449, - 0.7742821867068794, - 0.6257122701226097, - 0.4794905837271822, - 0.34414864181618676, - 0.22683099067354842, - 0.13224243763747984, - 0.06214696335390561, - 0.014941487031570177, - -0.01214139735503548, - -0.0234107047508171, - -0.022864566632380373, - -0.013215130659978291, - 0.0034337481970901024, - 0.026340256635744155, - 0.054906382223360826, - 0.08805326988669522, - 0.12419075165464631, - 0.1605699124012804, - 0.19396024658277838, - 0.22120740692117452, - 0.24001800062869147, - 0.24929156016366644, - 0.2497613305167698, - 0.2434796782818397, - 0.23303526468838404, - 0.22128169786821364, - 0.21006543688508084, - 0.20002056764966814, - 0.19057188920428586, - 0.18025180082634404, - 0.16744055510795533, - 0.15108352806045888, - 0.13116932840182854, - 0.10899142432838564, - 0.08664483568887102, - 0.06658971772682014, - 0.050822711740021814, - 0.04032864993239568, - 0.0347025970993176, - 0.03257436880751684, - 0.03195962156151471, - 0.03105773148965356, - 0.02903843190977676, - 0.026247653536324193, - 0.02414364244583953, - 0.024780351147041746, - 0.029911609064004533, - 0.040376328048594486, - 0.055478126206657485, - 0.07320629944182987, - 0.09105650243703353, - 0.10694821636397578, - 0.12068808312481122, - 0.13489701850540328, - 0.15527817013992626, - 0.19026297152393828, - 0.24933262648885604, - 0.34141363771980127, - 0.47311880267551176, - 0.6455654023598625, - 0.8562108934554932 - ], - "pressure:branch71_seg0:RESISTANCE_33": [ - 8576.688694693612, - 9861.56660448004, - 11238.077787923892, - 12634.968143102744, - 13978.371958589189, - 15208.88371546432, - 16287.03400752505, - 17196.8490392744, - 17936.130100290186, - 18521.775479127224, - 18973.099826781596, - 19304.769857873776, - 19530.989751266025, - 19653.599160563834, - 19671.76784831957, - 19585.0180203001, - 19391.570694587543, - 19101.242281053383, - 18726.86413793856, - 18286.129174748068, - 17800.897852965794, - 17287.599823909233, - 16759.75202235148, - 16225.063851350436, - 15686.39052808869, - 15146.017178367563, - 14607.361485059611, - 14077.508684570752, - 13566.932101134877, - 13087.279744509073, - 12646.554968913471, - 12245.867012593719, - 11875.642753085005, - 11514.580911745605, - 11134.089003478983, - 10702.480209409308, - 10193.34646337247, - 9591.129760603193, - 8899.726970558942, - 8138.660964001709, - 7344.339339834312, - 6562.572410859614, - 5838.973491318363, - 5211.74054038467, - 4706.0275750506835, - 4331.265629565364, - 4078.883912700867, - 3934.086626630477, - 3873.835838586307, - 3876.7557387062643, - 3928.345965248191, - 4017.358362901465, - 4139.826863963559, - 4292.5542248896545, - 4469.7724010195425, - 4662.979638872147, - 4857.479001289993, - 5035.998752046505, - 5181.674331272317, - 5282.244229195314, - 5331.824851174435, - 5334.3364548586915, - 5300.751915535926, - 5244.911380925919, - 5182.0715241029375, - 5122.104346049406, - 5068.399955355368, - 5017.8830688851895, - 4962.7072328183485, - 4894.212548695226, - 4806.760522136757, - 4700.290250223634, - 4581.717195938761, - 4462.242278062827, - 4355.018593492409, - 4270.72108500867, - 4214.615108706135, - 4184.535698777359, - 4173.157232717691, - 4169.870517330597, - 4165.048607194471, - 4154.252523042006, - 4139.331766126625, - 4128.082776121896, - 4131.486907330207, - 4158.920921000879, - 4214.870017368448, - 4295.611025484696, - 4390.393816519621, - 4485.829033559846, - 4570.793286804833, - 4644.252796860625, - 4720.2201588184535, - 4829.186966103113, - 5016.231455966309, - 5332.0444102269885, - 5824.350928784225, - 6528.50600232844, - 7450.483117835021, - 8576.688694693612 - ], - "flow:branch74_seg0:RESISTANCE_34": [ - 0.7022031091942411, - 0.90643445976161, - 1.1292576744834553, - 1.3594305251310652, - 1.5847563419373996, - 1.7947830839533205, - 1.981926177190448, - 2.1422308329347466, - 2.2742542450660803, - 2.379871860632999, - 2.461816686880436, - 2.522634093533184, - 2.5648767053199464, - 2.5893499871028105, - 2.5963326365972175, - 2.5858578816106723, - 2.557749728951109, - 2.513308904204293, - 2.4543344004295617, - 2.383574590753006, - 2.3044430093633963, - 2.2197647417702586, - 2.132007348827462, - 2.042727731774639, - 1.9526852383643418, - 1.8623864506538608, - 1.77237064240622, - 1.6836607559761676, - 1.597804947338481, - 1.5166272677851451, - 1.4415470728673707, - 1.3730711720835704, - 1.3101076639092915, - 1.2497199584258047, - 1.1876339266342293, - 1.118812535867187, - 1.0386807695411153, - 0.9441406407091139, - 0.8348908340763732, - 0.7131847537475748, - 0.5841532400606788, - 0.45475527374044006, - 0.3324015048743925, - 0.22374169157108584, - 0.13369207056588803, - 0.06463364851277809, - 0.01615248305886774, - -0.01354438691276111, - -0.0279057049251337, - -0.030377679580477265, - -0.023664674857447443, - -0.009966516408384392, - 0.009715327378250581, - 0.03461720931981048, - 0.06379212684620246, - 0.09596268946723646, - 0.1289257758416564, - 0.15999890389601176, - 0.18641733594162646, - 0.20596422310852136, - 0.21733508354682837, - 0.22072257710898224, - 0.21750891485874052, - 0.20976441141795457, - 0.19994222336636813, - 0.18987160344890414, - 0.1804692821307158, - 0.1716163557673614, - 0.16232627747858733, - 0.15129928147581098, - 0.13750886901366746, - 0.12070014320545414, - 0.10166435286277915, - 0.08196372817237527, - 0.06363188428770368, - 0.04849955535129092, - 0.03768247082904758, - 0.031186339834208196, - 0.028142009366932005, - 0.026997086033230304, - 0.026171700554363596, - 0.024727243184674525, - 0.022637206691238587, - 0.02085185772980701, - 0.0209625004180554, - 0.02451921366531502, - 0.03247481301457001, - 0.04459241596021095, - 0.0594966601211461, - 0.07518713821219944, - 0.08977280272218867, - 0.10265955158028145, - 0.11543648382248616, - 0.13228421768065188, - 0.1598592452646772, - 0.20609415535160697, - 0.27903337508315496, - 0.3850267366295963, - 0.5263505202951005, - 0.7022031091942411 - ], - "pressure:branch74_seg0:RESISTANCE_34": [ - 8273.038219022128, - 9516.11530942274, - 10872.353872506492, - 12273.326821455701, - 13644.797753658959, - 14923.149146068468, - 16062.216635871127, - 17037.92895666177, - 17841.504306680537, - 18484.357805368378, - 18983.12420877345, - 19353.29619606916, - 19610.410604826346, - 19759.369987539547, - 19801.870669206095, - 19738.114894614384, - 19567.0314614024, - 19296.53738217408, - 18937.582430564293, - 18506.894888785446, - 18025.251616685804, - 17509.847815029407, - 16975.702570543603, - 16432.292137768265, - 15884.238372222766, - 15334.624642587172, - 14786.733299286152, - 14246.79059603863, - 13724.219558346143, - 13230.122479595511, - 12773.138427020724, - 12356.352153647826, - 11973.117678013883, - 11605.561115224467, - 11227.667498306268, - 10808.778361284189, - 10321.047351052162, - 9745.618221547296, - 9080.656983331033, - 8339.879233985052, - 7554.514410424408, - 6766.919131686539, - 6022.199153196337, - 5360.8289757514585, - 4812.731827297775, - 4392.399972688019, - 4097.3139052245515, - 3916.5605653686284, - 3829.1487876981423, - 3814.1028358715894, - 3854.9622943032514, - 3938.337676688978, - 4058.1334330213977, - 4209.701538816218, - 4387.277956396741, - 4583.0877048433385, - 4783.7212382705275, - 4972.8513277702405, - 5133.650086378931, - 5252.624414063248, - 5321.83443529522, - 5342.452795940119, - 5322.892479130468, - 5275.754687713894, - 5215.970835182859, - 5154.674874152616, - 5097.446587727659, - 5043.562255499932, - 4987.017148900375, - 4919.90009723857, - 4835.963200424038, - 4733.654999881032, - 4617.791520513582, - 4497.881452097601, - 4386.30262203782, - 4294.19799964266, - 4228.358597821282, - 4188.819165733639, - 4170.289505870124, - 4163.320801200464, - 4158.296999630928, - 4149.5051473549065, - 4136.78390511725, - 4125.91717781921, - 4126.590616988073, - 4148.238952282877, - 4196.661602693753, - 4270.416756202019, - 4361.133114952653, - 4456.634974966977, - 4545.412262833249, - 4623.848909463351, - 4701.617144906942, - 4804.162772334226, - 4972.001279799611, - 5253.4152612776215, - 5697.368027530691, - 6342.508546392744, - 7202.691654007121, - 8273.038219022128 - ], - "flow:branch75_seg2:RESISTANCE_35": [ - 0.952466624900672, - 1.2084462972839334, - 1.4771734838506956, - 1.745045106808948, - 1.9980372046554482, - 2.2256342943555945, - 2.421594131294321, - 2.5846352862510384, - 2.7150770789794367, - 2.817061354326704, - 2.8948907068812173, - 2.950610312710284, - 2.986933897033826, - 3.0036368928700177, - 3.0000727858074128, - 2.976547994216989, - 2.9325135130210995, - 2.8705074554374748, - 2.793533208752971, - 2.704920716153065, - 2.6092345685554506, - 2.5092993149507112, - 2.4073330844682213, - 2.304560525629378, - 2.2011877279556638, - 2.0976334718794987, - 1.99468928801074, - 1.89393728606899, - 1.7975905034831503, - 1.7079298938720375, - 1.6262041675923466, - 1.5520759980538457, - 1.4830688482202825, - 1.4142833500737184, - 1.3398136741857674, - 1.2534845952753662, - 1.1507159989049052, - 1.0292172687138548, - 0.8910882524281566, - 0.741203500929788, - 0.5873939265565895, - 0.43911596770237427, - 0.3049737242431694, - 0.19169106334781214, - 0.10306191897712687, - 0.04007782256389711, - -0.00022525868424785376, - -0.021104809801438605, - -0.027170626469790127, - -0.022655691183328653, - -0.009690780827592952, - 0.009802094736325434, - 0.03537319127689425, - 0.06659895150976991, - 0.102054068135521, - 0.13992868549711265, - 0.1770764126909108, - 0.20998627534599168, - 0.23551284891872523, - 0.25168715711301176, - 0.25781531416042963, - 0.2552156338583258, - 0.24657568849038813, - 0.23458418323929217, - 0.2221981250723094, - 0.21099484033114346, - 0.20112394829537272, - 0.19159094341089106, - 0.1806294550017875, - 0.16655618539336536, - 0.14854978081164497, - 0.12695422781271679, - 0.10356634964412516, - 0.08079711600567394, - 0.061219705847265236, - 0.04668386114734833, - 0.03783085456325281, - 0.03374705353459259, - 0.032682178705519545, - 0.03249307782813944, - 0.031396614302111034, - 0.028920339508821717, - 0.025858685147251433, - 0.024062198671165238, - 0.025802853902409283, - 0.03271733145001844, - 0.04529777241100718, - 0.06232533221613797, - 0.08123413540472486, - 0.09939187176627601, - 0.11490190427505673, - 0.12827502384495224, - 0.14323435489542954, - 0.16669851549411824, - 0.2081964252886832, - 0.2777679900064931, - 0.38400847670091515, - 0.5330813802279832, - 0.7239558638743323, - 0.952466624900672 - ], - "pressure:branch75_seg2:RESISTANCE_35": [ - 9091.260694927729, - 10459.828569433252, - 11896.549661844381, - 13328.696575148624, - 14681.291702694843, - 15898.115141816255, - 16945.793400917028, - 17817.475456052867, - 18514.868516052222, - 19060.116510338354, - 19476.22279959164, - 19774.121698390125, - 19968.321847680356, - 20057.62262417008, - 20038.567507872103, - 19912.794731755377, - 19677.369099031774, - 19345.860359905666, - 18934.32580250945, - 18460.568611077004, - 17948.99288157447, - 17414.69976235665, - 16869.548243005436, - 16320.085775544418, - 15767.414195505102, - 15213.772467571454, - 14663.392425288122, - 14124.732648651054, - 13609.62490501145, - 13130.264068348488, - 12693.326234708504, - 12297.007923641999, - 11928.0685953972, - 11560.314304133397, - 11162.170165982872, - 10700.621001033813, - 10151.179718485182, - 9501.599783545167, - 8763.10780695329, - 7961.765052393518, - 7139.438653118496, - 6346.686443164501, - 5629.509320062711, - 5023.855718757351, - 4550.009500417698, - 4213.27178154584, - 3997.7956785949254, - 3886.1653970689013, - 3853.735158575132, - 3877.8737760325025, - 3947.1892792656563, - 4051.4058486132817, - 4188.118974759115, - 4355.064154092502, - 4544.621133945965, - 4747.113715085984, - 4945.7200558746745, - 5121.669108253718, - 5258.144197125379, - 5344.618401818906, - 5377.381936465767, - 5363.483024445451, - 5317.290482834808, - 5253.179185633668, - 5186.958453568234, - 5127.061292817355, - 5074.287626818431, - 5023.320438248582, - 4964.716015663796, - 4889.4747885146935, - 4793.205476907032, - 4677.747168083728, - 4552.706384898179, - 4430.973118367393, - 4326.304593873383, - 4248.5902585908425, - 4201.258608030565, - 4179.4250036601015, - 4173.731764552986, - 4172.720756985807, - 4166.858632297083, - 4153.619494599191, - 4137.250687798737, - 4127.64596545784, - 4136.952192033924, - 4173.91970493268, - 4241.179683766251, - 4332.2157067190155, - 4433.30959573104, - 4530.387986475102, - 4613.310712433874, - 4684.808662465928, - 4764.7871221192545, - 4890.235741138987, - 5112.099866814316, - 5484.0567787261325, - 6052.060150666244, - 6849.062447086663, - 7869.552410016644, - 9091.260694927729 - ], - "flow:branch77_seg2:RESISTANCE_36": [ - 0.9650674408145027, - 1.2457077094794227, - 1.5521672834925782, - 1.8689359555574077, - 2.179243033887259, - 2.468709480138733, - 2.7268887403914364, - 2.948268062209645, - 3.130863825065678, - 3.2771968323586864, - 3.390926749317477, - 3.47557807162154, - 3.5346546488573, - 3.569315670805566, - 3.580036643196333, - 3.5669000913858855, - 3.5297010423630133, - 3.4702075125266094, - 3.39081320900485, - 3.2952001538680955, - 3.1879481872077835, - 3.072870767626543, - 2.953322502230979, - 2.831442922815242, - 2.7083073194411904, - 2.58464218825388, - 2.4612086029054607, - 2.3394087557436216, - 2.2213513073185642, - 2.1095223353363473, - 2.005881171790942, - 1.9111652042019946, - 1.8239484159450983, - 1.7403125088348748, - 1.6544808038234953, - 1.5596009962221187, - 1.4493887392940463, - 1.3195160592918094, - 1.1694089992594336, - 1.0019576013831106, - 0.8240155149025141, - 0.6449804980382524, - 0.4749897183982984, - 0.32325812070933735, - 0.19670674384875403, - 0.09885860957555692, - 0.029414632511773793, - -0.013903752757309795, - -0.0356875095985638, - -0.0406189463632931, - -0.03246027436576626, - -0.01428797454969361, - 0.012426202840959362, - 0.04655600762135901, - 0.08676373977075912, - 0.13125231843754923, - 0.17698654596451355, - 0.22027621720054835, - 0.25729781256326245, - 0.2849568090869111, - 0.30139930432617457, - 0.30681637320197813, - 0.30301761594576393, - 0.2928048378699873, - 0.2795300334507994, - 0.2657229514061479, - 0.2527005065849486, - 0.2403645315853111, - 0.22741907531669311, - 0.21211398981649388, - 0.19304299517765777, - 0.16982717923036175, - 0.14350627348410908, - 0.11618840693072978, - 0.0906455830985093, - 0.06940323954424907, - 0.05403408556930485, - 0.04461317198169816, - 0.040002205536856614, - 0.03810917569847732, - 0.036781238503817267, - 0.03470179870354965, - 0.03178920517242243, - 0.029298722708974115, - 0.029379205676541315, - 0.03415385743676533, - 0.04495603710457979, - 0.061506589145099606, - 0.08197682081011413, - 0.1036512191954859, - 0.123931896238821, - 0.1419625396306726, - 0.1598448393498493, - 0.18322919018055359, - 0.22118208360705774, - 0.2845815969733284, - 0.38450128274121037, - 0.5297508615546499, - 0.7236282346638488, - 0.9650674408145027 - ], - "pressure:branch77_seg2:RESISTANCE_36": [ - 8251.42874182953, - 9488.029101674074, - 10838.398459946586, - 12234.193353268003, - 13601.516177431795, - 14877.007799857816, - 16014.637006285382, - 16990.112658175527, - 17794.694221356178, - 18439.489247873647, - 18940.62351811001, - 19313.62720756809, - 19573.939517756728, - 19726.668249159782, - 19773.908648334764, - 19716.02435121234, - 19552.112174152382, - 19289.96262321976, - 18940.123219303576, - 18518.818254943242, - 18046.228126672908, - 17539.156282916752, - 17012.384309991314, - 16475.339742295455, - 15932.76068845399, - 15387.848347634357, - 14843.95627973941, - 14307.263040576447, - 13787.060134916232, - 13294.302101109724, - 12837.622449452254, - 12420.270370362838, - 12035.962329838057, - 11667.432919142853, - 11289.228045665228, - 10871.15402948784, - 10385.519814466263, - 9813.254816329107, - 9151.829977569163, - 8413.979847025095, - 7629.90402918114, - 6841.012373210479, - 6091.972827770156, - 5423.389701070028, - 4865.759540191475, - 4434.606026021975, - 4128.611282521201, - 3937.735143945406, - 3841.7482006716873, - 3820.01854474303, - 3855.968541427367, - 3936.0421267280894, - 4053.754248126019, - 4204.1422486565425, - 4381.311748532725, - 4577.344173423294, - 4778.865368104667, - 4969.614982487159, - 5132.7452359085355, - 5254.620564836904, - 5327.0720188864025, - 5350.941541791968, - 5334.202872703801, - 5289.201757562349, - 5230.708270509592, - 5169.86937983277, - 5112.487878494562, - 5058.131206174671, - 5001.088943650193, - 4933.649319511308, - 4849.6157667173, - 4747.318664127262, - 4631.339436797944, - 4510.9672472657685, - 4398.416524261425, - 4304.8152395701545, - 4237.093307053711, - 4195.581427137403, - 4175.26387687262, - 4166.92251734331, - 4161.071156023781, - 4151.908408220272, - 4139.074490173487, - 4128.100542902352, - 4128.4551793453975, - 4149.493985048206, - 4197.092212230186, - 4270.019802794067, - 4360.2188892027325, - 4455.723960411052, - 4545.0878020613845, - 4624.53719901594, - 4703.3329412406065, - 4806.372668181955, - 4973.6065505169, - 5252.967247453474, - 5693.248750759921, - 6333.269807903455, - 7187.562139125553, - 8251.42874182953 - ], - "flow:branch78_seg0:RESISTANCE_37": [ - 1.1476565032849453, - 1.4629293894299418, - 1.7974127514731992, - 2.134239447278353, - 2.4556058095076208, - 2.7475704950931683, - 3.0012604875484006, - 3.2138710091513243, - 3.384954738538112, - 3.519029846482123, - 3.62122174363849, - 3.694437401328576, - 3.742345110128211, - 3.765184559644362, - 3.7625596154296486, - 3.734879167016878, - 3.6815834152303104, - 3.605523646738148, - 3.5101456721109816, - 3.3995508132931094, - 3.2793057777617753, - 3.153107706958788, - 3.0239924172129684, - 2.8937432128604947, - 2.7628614947486008, - 2.6319413492187596, - 2.5019004986433635, - 2.374556180340269, - 2.2525099774519353, - 2.138548782000626, - 2.0343594431388405, - 1.9398475605758967, - 1.8523483343050857, - 1.7662191897232409, - 1.674378954626676, - 1.5691598877475779, - 1.4444993206823187, - 1.2969776490177534, - 1.12831283473979, - 0.9437639227134548, - 0.7524642571312524, - 0.5658509434014014, - 0.394776651565681, - 0.24812522774364987, - 0.1314698165064947, - 0.04678139065098809, - -0.008771358182094012, - -0.03878977679515466, - -0.048889491691644735, - -0.04440188495817456, - -0.02840270139302909, - -0.003657521985393158, - 0.02896308555548414, - 0.06872782555488036, - 0.11390090207632211, - 0.16234651035456518, - 0.21032488564555232, - 0.2535637778759356, - 0.28809409073573583, - 0.3112287248561083, - 0.32178021801531037, - 0.3210034339641761, - 0.31191046016175145, - 0.2977742897703185, - 0.2823144245415784, - 0.26775688218827687, - 0.25465767388826666, - 0.24212105417299876, - 0.2281775898106682, - 0.21078198544501142, - 0.18875803874742111, - 0.1622869470322047, - 0.13329810036631987, - 0.10458349672087351, - 0.07929808953212573, - 0.05987958492456236, - 0.04739314357459551, - 0.04103052899293021, - 0.03888244050292749, - 0.03838405678795239, - 0.03724897181838124, - 0.0346448135967127, - 0.031245604240573727, - 0.029081722541291315, - 0.030845148041015315, - 0.03865103539345241, - 0.05335785552706417, - 0.07379704641722624, - 0.09710043076690184, - 0.12008700553455826, - 0.1402526389799661, - 0.1577808595368385, - 0.17664729252113281, - 0.20477998898075786, - 0.2535023163393656, - 0.3351365242456656, - 0.4608124235086114, - 0.6387972415971721, - 0.8690498354333973, - 1.1476565032849453 - ], - "pressure:branch78_seg0:RESISTANCE_37": [ - 8983.753887150473, - 10353.116357738269, - 11805.91798815635, - 13268.897700644346, - 14664.726695414583, - 15932.851868075135, - 17034.733983849997, - 17958.1907158737, - 18701.279159713806, - 19283.623627401696, - 19727.485928645514, - 20045.49226000538, - 20253.57554710384, - 20352.77686250626, - 20341.37562804246, - 20221.1478225722, - 19989.662003316804, - 19659.30250501583, - 19245.035929249945, - 18764.676038626494, - 18242.40138017275, - 17694.27019093145, - 17133.468295408853, - 16567.741332823905, - 15999.26709750368, - 15430.625955778585, - 14865.803961097557, - 14312.694137861303, - 13782.596253591719, - 13287.61495005338, - 12835.076921118452, - 12424.572146702889, - 12044.52628191002, - 11670.431256941822, - 11271.53056881428, - 10814.519998903615, - 10273.066833714998, - 9632.318296008767, - 8899.73621575122, - 8098.162832112874, - 7267.268092361019, - 6456.728145655426, - 5713.680693060724, - 5076.712006994279, - 4570.028593484122, - 4202.191214641616, - 3960.90230990838, - 3830.519718567447, - 3786.6524177284864, - 3806.1439773063225, - 3875.6351466930837, - 3983.113846885509, - 4124.7988369284085, - 4297.513792767687, - 4493.719424104482, - 4704.139034405233, - 4912.5292557357125, - 5100.333912882302, - 5250.31355466513, - 5350.796980698311, - 5396.626544152208, - 5393.252644987009, - 5353.758043268065, - 5292.358722036997, - 5225.210038547465, - 5161.98052202813, - 5105.085162392933, - 5050.63336111046, - 4990.07104304619, - 4914.514632018293, - 4818.855387639008, - 4703.880325896358, - 4577.969597653047, - 4453.250021952541, - 4343.424885762815, - 4259.082169934395, - 4204.848314353245, - 4177.2128087140445, - 4167.88275880814, - 4165.7180691528265, - 4160.7879187131075, - 4149.47696654139, - 4134.7127735945, - 4125.314127151983, - 4132.973424240692, - 4166.87766929254, - 4230.755561866501, - 4319.531546621802, - 4420.747925728543, - 4520.588267849536, - 4608.1760778049775, - 4684.308496612877, - 4766.253333666423, - 4888.44544222133, - 5100.066959632396, - 5454.6385880078105, - 6000.501767085324, - 6773.564535676145, - 7773.648192124207, - 8983.753887150473 - ], - "flow:branch79_seg0:RESISTANCE_38": [ - 1.3375972579640714, - 1.7018855429881714, - 2.0865934561297452, - 2.4718649274669664, - 2.837433467044441, - 3.167830315330251, - 3.453570682655611, - 3.6920203219733243, - 3.883554247372479, - 4.033798083000168, - 4.148638773812605, - 4.231581535388899, - 4.286459955710639, - 4.313240623654184, - 4.311266437073022, - 4.280665392198781, - 4.220811667724872, - 4.134984262597506, - 4.027160019080205, - 3.9022162840161494, - 3.7664549304546164, - 3.6240855120103608, - 3.4784797832892136, - 3.3314660906538958, - 3.1834982520959625, - 3.035156933132451, - 2.887489428170203, - 2.742657336393734, - 2.6037474901030593, - 2.474028861673011, - 2.3554660864575854, - 2.2478695527286834, - 2.147980573524539, - 2.0491659886279665, - 1.943098263059491, - 1.8209035777313531, - 1.6756935156042685, - 1.5038326645359352, - 1.307613798384077, - 1.0935023429657098, - 0.872416424061084, - 0.6576589873971372, - 0.4617890451308901, - 0.2948698568208296, - 0.16295036813381383, - 0.06783944012455431, - 0.005953612558860693, - -0.02724989464627725, - -0.038415804782010454, - -0.033556307693154, - -0.01614801284101734, - 0.01094771830793596, - 0.04695706590602804, - 0.0911643402826095, - 0.1417274011971606, - 0.19610215156265678, - 0.2499010800527411, - 0.29814556491652344, - 0.33622762978242926, - 0.361086520967732, - 0.3715247931354283, - 0.36917909964677, - 0.35762960769124397, - 0.34081338578239745, - 0.32299372454139613, - 0.30661273335196393, - 0.292149957949747, - 0.2783497465111613, - 0.2627646895738141, - 0.24295116185804497, - 0.21756905903120294, - 0.18693871387923233, - 0.15342261132755985, - 0.12039471811231685, - 0.09157660531000947, - 0.06975772611013377, - 0.05605380951163495, - 0.04939407279669305, - 0.04740160317893018, - 0.0469970168890061, - 0.04556255470571403, - 0.04220646812507355, - 0.03785802186955262, - 0.035035209104362496, - 0.036961273833650686, - 0.04611413346229092, - 0.06339699211444183, - 0.08729470379908735, - 0.11434807670290498, - 0.14073303986719884, - 0.1635612091846496, - 0.1831952604141736, - 0.20449052731628034, - 0.23692849009494316, - 0.29387369537605174, - 0.38970868827226096, - 0.5371913624885578, - 0.7454417623700936, - 1.0140379014306107, - 1.3375972579640714 - ], - "pressure:branch79_seg0:RESISTANCE_38": [ - 8965.240404117021, - 10317.772482858602, - 11746.118698920103, - 13176.5572977707, - 14533.8427145239, - 15760.542431184047, - 16821.44125468967, - 17706.758734279316, - 18417.887224871636, - 18975.71358293357, - 19402.094898650026, - 19710.045360806485, - 19913.798341528614, - 20013.229791764174, - 20005.90001809258, - 19892.284245812978, - 19670.058921224878, - 19351.398334425525, - 18951.06773303508, - 18487.175764341253, - 17983.120066439245, - 17454.529899272868, - 16913.923936797673, - 16368.090476107689, - 15818.714455798887, - 15267.951774842197, - 14719.690835196672, - 14181.957237351326, - 13666.211793742646, - 13184.591567743908, - 12744.390871164052, - 12344.905712259992, - 11974.037215411627, - 11607.157737222242, - 11213.348747891083, - 10759.66347018004, - 10220.526541387651, - 9582.44037802291, - 8853.917606814024, - 8058.9631057099605, - 7238.113768057544, - 6440.760863291242, - 5713.5335791120815, - 5093.794855612016, - 4604.003260341331, - 4250.874745206967, - 4021.104614123743, - 3897.826401598448, - 3856.369532772908, - 3874.411907368608, - 3939.045545593205, - 4039.646764689483, - 4173.342520944049, - 4337.47559676915, - 4525.206481065281, - 4727.089432470192, - 4926.834468410477, - 5105.956927416565, - 5247.348282761545, - 5339.644546880618, - 5378.39983639675, - 5369.690729294676, - 5326.809695220294, - 5264.374309538191, - 5198.213347323423, - 5137.3938892839615, - 5083.696396162987, - 5032.458875135187, - 4974.594567323637, - 4901.0307637913875, - 4806.791915849983, - 4693.067357295415, - 4568.628538592994, - 4446.0023469110065, - 4339.006257230725, - 4257.99697075843, - 4207.11697388276, - 4182.390657080297, - 4174.99300202322, - 4173.490851231561, - 4168.164970058862, - 4155.704468456264, - 4139.559526949605, - 4129.078968078632, - 4136.230074603846, - 4170.212875503238, - 4234.380793331955, - 4323.108383514717, - 4423.5523346238, - 4521.514609402308, - 4606.271195244078, - 4679.168637229702, - 4758.233852320432, - 4878.669746173741, - 5090.096300470233, - 5445.913128753687, - 5993.487827519908, - 6766.681360855479, - 7763.926974398747, - 8965.240404117021 - ], - "flow:branch80_seg0:RESISTANCE_39": [ - 0.8626577428025872, - 1.098900132312233, - 1.349229651939006, - 1.6009071290269736, - 1.840717345673876, - 2.058423910809493, - 2.247590527081025, - 2.40623679652148, - 2.5342742292951463, - 2.6351793606192246, - 2.712691178845358, - 2.769008925243101, - 2.806680792337863, - 2.8257259725994035, - 2.825753890351256, - 2.806900136845702, - 2.7687451883921197, - 2.7134064635078516, - 2.6434706319190253, - 2.562093141530775, - 2.4733990413621543, - 2.3801686032842744, - 2.2846496361209327, - 2.1881037701040458, - 2.0908801862871815, - 1.9933956319166297, - 1.8963464706737576, - 1.8011336748608933, - 1.7097521088251466, - 1.6243244885982764, - 1.54613891240793, - 1.475113911903776, - 1.4091973780345233, - 1.344138935944088, - 1.2745887483486782, - 1.1948024964779702, - 1.1002852286502747, - 0.9885947566834261, - 0.8611260911258032, - 0.7219555691104093, - 0.5780533850706077, - 0.43798932171181676, - 0.30987550436649475, - 0.20026637863985106, - 0.11316862331650329, - 0.049864824005788476, - 0.008155895851596493, - -0.0147924085287406, - -0.02321221704006134, - -0.020989257192908416, - -0.010384629797589561, - 0.006689217613604977, - 0.029682715124474547, - 0.05809714214405768, - 0.09071355928846608, - 0.12590589839193564, - 0.1608492027234898, - 0.19233251641483365, - 0.21736855070714792, - 0.23394971661409647, - 0.24123475010154044, - 0.2402160214913414, - 0.2331590014760297, - 0.22255482846896465, - 0.2111559475865326, - 0.2005674767718337, - 0.19113996100034014, - 0.1821174556529332, - 0.1719627393898395, - 0.1591175433000426, - 0.14270954504780073, - 0.12291731004875604, - 0.10122757262183917, - 0.07978369721588752, - 0.06097254787557612, - 0.04660605875793489, - 0.03743913476216022, - 0.03282442036576717, - 0.031277409375374335, - 0.030840323648221885, - 0.02982249277706935, - 0.027629248234932163, - 0.024820234133601404, - 0.022977135735987836, - 0.024153489116549413, - 0.029943313456837217, - 0.040958820113731774, - 0.05626779689291402, - 0.07367957478578664, - 0.09076253792670001, - 0.10564638327201135, - 0.11851828643734479, - 0.1324359467893628, - 0.15343258533544057, - 0.19006466911871833, - 0.2515992006838698, - 0.34633905978908275, - 0.48031784480856476, - 0.6534844525157406, - 0.8626577428025872 - ], - "pressure:branch80_seg0:RESISTANCE_39": [ - 8886.413134978908, - 10224.851428915914, - 11643.100778098224, - 13068.987020424083, - 14427.638945270272, - 15661.061974150974, - 16732.791072717206, - 17631.606237303422, - 18357.00612610985, - 18928.687152953575, - 19367.832667701707, - 19686.902537268426, - 19900.333622301005, - 20008.23465830851, - 20008.392827163123, - 19901.576325143058, - 19685.408328284124, - 19371.885134260872, - 18975.661597447248, - 18514.61500193067, - 18012.115935787755, - 17483.91611211105, - 16942.750558739823, - 16395.767079328994, - 15844.943969537473, - 15292.642323301357, - 14742.807409797724, - 14203.376479331539, - 13685.651495275775, - 13201.658768530675, - 12758.6960579693, - 12356.30180222641, - 11982.849716352546, - 11614.259175008709, - 11220.220515725683, - 10768.18912942319, - 10232.698733472373, - 9599.913037989789, - 8877.735516785848, - 8089.260779295937, - 7273.978669680392, - 6480.44154709651, - 5754.6088992243585, - 5133.615132855828, - 4640.160205978852, - 4281.510645563259, - 4045.2074708598934, - 3915.1931689079097, - 3867.490493014054, - 3880.084738236046, - 3940.1655705891603, - 4036.8979616194633, - 4167.168306598499, - 4328.151089164435, - 4512.94037193334, - 4712.323617281767, - 4910.2959487127355, - 5088.665600120298, - 5230.5079980688915, - 5324.449087363015, - 5365.722661561308, - 5359.951024278729, - 5319.969267197884, - 5259.891009194954, - 5195.3103100548005, - 5135.32101329039, - 5081.909141900786, - 5030.791869131549, - 4973.260021698069, - 4900.485180673985, - 4807.525177885174, - 4695.391681012294, - 4572.507827619678, - 4451.016912829521, - 4344.441785976544, - 4263.04801399349, - 4211.112533070605, - 4184.967731214617, - 4176.20309437285, - 4173.726772167642, - 4167.960221052368, - 4155.534328775974, - 4139.61977572208, - 4129.177646856128, - 4135.842311969844, - 4168.644734212079, - 4231.053415259152, - 4317.786879159428, - 4416.433825398493, - 4513.217861867017, - 4597.5427309667175, - 4670.468881722689, - 4749.319800966329, - 4868.276882006507, - 5075.817043719297, - 5424.44276502708, - 5961.194258490264, - 6720.255055400749, - 7701.335628906327, - 8886.413134978908 - ], - "flow:branch81_seg0:RESISTANCE_40": [ - 0.9808091814012995, - 1.267950889555309, - 1.5825249903147678, - 1.908794166767694, - 2.2295615704086202, - 2.5299057007781856, - 2.798803522640715, - 3.0302255892132988, - 3.2218038130210584, - 3.3758684474907286, - 3.4960187149720148, - 3.585843732933777, - 3.648928674732353, - 3.68648922790184, - 3.699033166403741, - 3.6866077685597465, - 3.649007973333642, - 3.5880116530953012, - 3.5060705720164353, - 3.407042652862522, - 3.295696568835047, - 3.1760603615603538, - 3.051696280063267, - 2.9248870753511245, - 2.796805803912897, - 2.6682282851318178, - 2.5399396403523635, - 2.4133754869166806, - 2.290699395450079, - 2.174477318748618, - 2.0667542108943024, - 1.9683394778643004, - 1.87781876055481, - 1.7912133437149167, - 1.7026083988673075, - 1.604949286403608, - 1.4917241575770077, - 1.3584260826317605, - 1.204374511897575, - 1.0324769606794273, - 0.8497398814321077, - 0.6657940879506321, - 0.49105478006422265, - 0.334993679500825, - 0.20474861428643976, - 0.10391872681688193, - 0.03223236767904784, - -0.012636669139068494, - -0.035413247524408935, - -0.04088037689180983, - -0.03291783512359113, - -0.014691681205088928, - 0.012289834638396111, - 0.04686870613299146, - 0.08770530829057704, - 0.13299585428367078, - 0.1796666420372923, - 0.22396232633927646, - 0.2619677531894772, - 0.29048548844872013, - 0.3075753866037451, - 0.31337931616030196, - 0.30970165839260116, - 0.2993952905888275, - 0.28588622526153107, - 0.2717854414274775, - 0.25847536104996754, - 0.24588735132609524, - 0.23271522183957372, - 0.2171707082804387, - 0.19779392629707232, - 0.17417222550828712, - 0.1473351280144962, - 0.11941599062711664, - 0.0932460580781378, - 0.07142174152032214, - 0.055577569595002776, - 0.04582248580097703, - 0.04102292506252549, - 0.039048509656322346, - 0.037691655537038224, - 0.03558236116714835, - 0.03260359544330837, - 0.030010952924205622, - 0.029987784329101763, - 0.03471534018029022, - 0.04558524060732788, - 0.06235300771257687, - 0.08318805033263642, - 0.10532425076143516, - 0.12608740278332656, - 0.14454363656031533, - 0.16275672225369148, - 0.18641222650172512, - 0.2247052706598996, - 0.2887251815348188, - 0.38987311114305456, - 0.537254394828529, - 0.7344846040899026, - 0.9808091814012995 - ], - "pressure:branch81_seg0:RESISTANCE_40": [ - 8251.95407882273, - 9497.04896787033, - 10861.095339260832, - 12275.853531886136, - 13666.755109417236, - 14969.097928517618, - 16135.084248754647, - 17138.569371674548, - 17969.284870476, - 18637.335117144758, - 19158.326946999077, - 19547.823378889123, - 19821.370329327765, - 19984.23922455648, - 20038.631858136785, - 19984.753236847664, - 19821.714181441097, - 19557.223846450346, - 19201.91349495097, - 18772.511730908303, - 18289.696325827146, - 17770.933547753593, - 17231.669909431606, - 16681.80380434249, - 16126.42180332395, - 15568.887990106965, - 15012.606783295763, - 14463.80326188297, - 13931.85903310699, - 13427.900501182841, - 12960.794932005854, - 12534.052046444562, - 12141.538944814205, - 11766.003246554194, - 11381.797257520613, - 10958.330870212434, - 10467.36760987638, - 9889.364668746028, - 9221.371068638262, - 8475.994286430367, - 7683.615481995973, - 6885.99548872509, - 6128.296370182578, - 5451.589109715873, - 4886.824533839199, - 4449.609131177264, - 4138.764984045997, - 3944.2052707327325, - 3845.4421843114133, - 3821.7357890375442, - 3856.262713472082, - 3935.2943917218686, - 4052.2907963593357, - 4202.230616818515, - 4379.3050131483205, - 4575.692461355359, - 4778.064870690935, - 4970.138430766316, - 5134.936373327405, - 5258.594084520832, - 5332.698766087165, - 5357.865583801382, - 5341.918639278178, - 5297.228489736263, - 5238.650903418482, - 5177.5075258290135, - 5119.792771823436, - 5065.209037989588, - 5008.092462320459, - 4940.6888290773595, - 4856.667833420613, - 4754.240153680846, - 4637.869971371876, - 4516.807881537822, - 4403.330638984199, - 4308.696720499189, - 4239.993718026188, - 4197.6940289553895, - 4176.882323879391, - 4168.320925582624, - 4162.4373772121535, - 4153.291120973969, - 4140.374690260135, - 4129.132554903291, - 4129.032091966245, - 4149.531571703422, - 4196.66529377107, - 4269.373160760174, - 4359.7174205547535, - 4455.703720120988, - 4545.736250153544, - 4625.76559348555, - 4704.740605706505, - 4807.314862948415, - 4973.359962679605, - 5250.9610967680455, - 5689.555583798866, - 6328.625693946835, - 7183.8491551982825, - 8251.95407882273 - ], - "flow:branch82_seg0:RESISTANCE_41": [ - 0.5259235490907741, - 0.6875452551245437, - 0.8735384147361279, - 1.0766180653984445, - 1.2877481159828361, - 1.4977616963568374, - 1.6985389446999675, - 1.883910543066106, - 2.049832997649836, - 2.1947339208616747, - 2.3184541392813185, - 2.421764837480324, - 2.505822080544362, - 2.571308078128968, - 2.618663002287159, - 2.6479835710587922, - 2.6592878845581693, - 2.6531534318533367, - 2.630553297182725, - 2.5932276170321624, - 2.5434328514854765, - 2.4835081836557005, - 2.415757283591882, - 2.3420445951156057, - 2.2637668218473386, - 2.1819856803105964, - 2.0976110976716145, - 2.0116946566645963, - 1.9255634432514284, - 1.8407887924829212, - 1.7588921300495257, - 1.6809913691998746, - 1.6072832849925762, - 1.5367468237887432, - 1.4671229811146216, - 1.3951539675362907, - 1.317206393880259, - 1.230047202679695, - 1.1317304528648005, - 1.0220018348754785, - 0.9027628727616356, - 0.7777376122151055, - 0.6519288593780848, - 0.5307871488474518, - 0.4194001520798226, - 0.3216233403885368, - 0.23968055115650258, - 0.17431555804342405, - 0.12471221026642786, - 0.08933593580286368, - 0.06636319582576303, - 0.0540191606864529, - 0.05100498013776685, - 0.056226734867385726, - 0.06866953207410678, - 0.08713822414546352, - 0.10993188867693998, - 0.13491214677967636, - 0.15964871200046762, - 0.18178783231001377, - 0.19941404716205424, - 0.21148903315141548, - 0.21788126647464642, - 0.2193092153693905, - 0.21708193666252523, - 0.21256892698799312, - 0.20685468569014487, - 0.20044603511851528, - 0.19320667583164697, - 0.1845531513701568, - 0.17377747381532033, - 0.16044027214446935, - 0.144658569363114, - 0.12716638612895775, - 0.10922638587499658, - 0.0922844034700119, - 0.07759133417629806, - 0.06584804835679957, - 0.05710784657656609, - 0.050775479056323965, - 0.045935141364987164, - 0.04174262158949158, - 0.03776222397435584, - 0.03418030768106744, - 0.031765477360818896, - 0.031571383359911304, - 0.034549922951439736, - 0.041087713302148915, - 0.05082909423257894, - 0.06273370223908982, - 0.07546639343390518, - 0.08809377680906907, - 0.1008130825725979, - 0.11552688860651877, - 0.13610602517750858, - 0.1680180685737613, - 0.2177165941867771, - 0.29134715372629794, - 0.3933564414357684, - 0.5259235490907741 - ], - "pressure:branch82_seg0:RESISTANCE_41": [ - 6656.763460500572, - 7473.521457861473, - 8413.44100391207, - 9439.707418554715, - 10506.656663985794, - 11567.963808516377, - 12582.594994491506, - 13519.373470381879, - 14357.865372544427, - 15090.124613970325, - 15715.346809115126, - 16237.429152122602, - 16662.21383725838, - 16993.148422438473, - 17232.45732450228, - 17380.629309683514, - 17437.755847212837, - 17406.755287764114, - 17292.545128827915, - 17103.91917926928, - 16852.280497900156, - 16549.45018574555, - 16207.06987796709, - 15834.561572632208, - 15438.983534870982, - 15025.701166910572, - 14599.312800919815, - 14165.132627851943, - 13729.867098833798, - 13301.456981852429, - 12887.590827106695, - 12493.918027914999, - 12121.432990330486, - 11764.975802694256, - 11413.13054807725, - 11049.433933032265, - 10655.524564539772, - 10215.064132562315, - 9718.218791324129, - 9163.703383205544, - 8561.127291828647, - 7929.310044446214, - 7293.533405656326, - 6681.341743298794, - 6118.445690258957, - 5624.328935368234, - 5210.2296780733095, - 4879.906591015981, - 4629.235242550752, - 4450.460647268895, - 4334.367521178093, - 4271.986732934037, - 4256.754521066933, - 4283.142746017251, - 4346.022630022473, - 4439.354474613475, - 4554.542639941681, - 4680.78079249086, - 4805.7874389811495, - 4917.667854125256, - 5006.742225983435, - 5067.763369843723, - 5100.066627963364, - 5107.282791610104, - 5096.02720137519, - 5073.220631426776, - 5044.3436173585515, - 5011.957394399265, - 4975.373171039544, - 4931.642440293494, - 4877.187373360489, - 4809.787601421401, - 4730.034502193803, - 4641.637461360598, - 4550.977369720322, - 4465.360777988963, - 4391.109106317392, - 4331.764214818931, - 4287.595458791432, - 4255.594733509485, - 4231.134005947925, - 4209.94703707003, - 4189.832031080927, - 4171.730757123273, - 4159.52737167008, - 4158.546514386915, - 4173.598614080309, - 4206.637447075273, - 4255.865678700333, - 4316.025814571764, - 4380.370682699311, - 4444.183375997155, - 4508.460600623595, - 4582.817065758982, - 4686.814076962577, - 4848.082122546576, - 5099.234453799624, - 5471.3277191775815, - 5986.833362487588, - 6656.763460500572 - ], - "flow:branch83_seg2:RESISTANCE_42": [ - 0.7681226837167291, - 1.0004094484637351, - 1.2646022137975896, - 1.5502497215733593, - 1.8446210067381281, - 2.1352290384951202, - 2.411293311446406, - 2.6649347683299345, - 2.89096951590536, - 3.087774847376672, - 3.255417292510424, - 3.394878863295916, - 3.507714191344565, - 3.5944884458016175, - 3.6554842831049963, - 3.690656769519108, - 3.699851513204429, - 3.684079325491844, - 3.6449335945490953, - 3.585172731089161, - 3.5083576899336126, - 3.4179390307979536, - 3.3172672409691994, - 3.208946794603646, - 3.094842951932794, - 2.9764053086954396, - 2.8549243956883688, - 2.731985669236832, - 2.6096072914673485, - 2.4901202830334994, - 2.3756308834522843, - 2.2675062077036037, - 2.165617326752074, - 2.067958048237402, - 1.9708292231950169, - 1.8692568581415872, - 1.7580492619514163, - 1.6329134138810186, - 1.4918161257307458, - 1.335265493547739, - 1.1669182597830026, - 0.9928656741040159, - 0.8205978738134608, - 0.6577721094530959, - 0.5110913273090472, - 0.38515773273869236, - 0.28200953954629693, - 0.20184174437811142, - 0.14272382408110781, - 0.1020676330979142, - 0.07726947452089676, - 0.06588190207499303, - 0.06633632357360811, - 0.07728346755815792, - 0.09734919467886087, - 0.12488134894933892, - 0.15739403659224396, - 0.19182583574340548, - 0.22481369855961175, - 0.2532597492915591, - 0.27479018999112104, - 0.2883970341917056, - 0.2943482724541729, - 0.2939543128318191, - 0.28924717503499325, - 0.2821042094411856, - 0.27383664902733423, - 0.2648701642610973, - 0.2547353616116844, - 0.24244740160443506, - 0.2270078642054884, - 0.20794716278682174, - 0.1856894616225788, - 0.16149713910830307, - 0.13729757318876332, - 0.11511088545565512, - 0.0965209512581527, - 0.08219902147130496, - 0.07191644214337754, - 0.06459300060149382, - 0.05884074294032132, - 0.05357411159533214, - 0.048401647777029586, - 0.043851436854729316, - 0.04121385241220879, - 0.04201756381448597, - 0.04748175167616854, - 0.05786882496610355, - 0.07234819027001575, - 0.08924186035896722, - 0.1066424392916633, - 0.12349766046534649, - 0.14060778284088096, - 0.16130937088119776, - 0.19169318170506977, - 0.2398187099725206, - 0.3147773304807495, - 0.42482502761960156, - 0.5751979046730518, - 0.7681226837167291 - ], - "pressure:branch83_seg2:RESISTANCE_42": [ - 7026.824271217912, - 7942.463815646526, - 8983.872023105509, - 10109.851603439503, - 11270.219004202521, - 12415.752225155, - 13503.9561329129, - 14503.772666937091, - 15394.767698532693, - 16170.544761189625, - 16831.366105256955, - 17381.10267452902, - 17825.882593361013, - 18167.933673652755, - 18408.37010463639, - 18547.014764273874, - 18583.259063118607, - 18521.087467644695, - 18366.780874732343, - 18131.21252518512, - 17828.41916816568, - 17472.002391906422, - 17075.1693141544, - 16648.18638092322, - 16198.406167941706, - 15731.5427639283, - 15252.683247486564, - 14768.077249364705, - 14285.680061600671, - 13814.680217564497, - 13363.380197140925, - 12937.168962282825, - 12535.538294093833, - 12150.580083556979, - 11767.712840950373, - 11367.329830900906, - 10928.966186620642, - 10435.699465016158, - 9879.515143525696, - 9262.41606046695, - 8598.816545453483, - 7912.727389959385, - 7233.6735904475645, - 6591.838878674184, - 6013.645262326353, - 5517.233943815603, - 5110.639255882411, - 4794.629846023902, - 4561.595881875011, - 4401.335282307064, - 4303.584665103974, - 4258.696564579298, - 4260.487825886948, - 4303.639823555542, - 4382.73590662097, - 4491.263524287072, - 4619.423656587006, - 4755.148638261981, - 4885.181839738624, - 4997.311900017183, - 5082.1816640563275, - 5135.817800572774, - 5159.2766881136395, - 5157.723758442729, - 5139.168928112458, - 5111.0124303916045, - 5078.422948769097, - 5043.078412306052, - 5003.128542192317, - 4954.691249110858, - 4893.830911219641, - 4818.696488548225, - 4730.959972969074, - 4635.597470547695, - 4540.206415710492, - 4452.749824412882, - 4379.471095432786, - 4323.016198918769, - 4282.483815329766, - 4253.615908523438, - 4230.941372632215, - 4210.181102753509, - 4189.792027123985, - 4171.855778967587, - 4161.458817177829, - 4164.626926833299, - 4186.165934834003, - 4227.110217929518, - 4284.185701609914, - 4350.778012199897, - 4419.368481330072, - 4485.8092320698925, - 4553.254765069223, - 4634.857316393356, - 4754.625735963348, - 4944.329341445086, - 5239.804967049091, - 5673.596463449599, - 6266.343763493156, - 7026.824271217912 - ], - "flow:branch84_seg0:RESISTANCE_43": [ - 1.0895451595950243, - 1.4100289868713436, - 1.7619321016613827, - 2.127664841233411, - 2.487945361725091, - 2.8259018024029507, - 3.128960542151772, - 3.390112264738718, - 3.6065377499900064, - 3.7806716916241645, - 3.9165110351805956, - 4.018130435936375, - 4.089591456675561, - 4.132386130879417, - 4.14714806689212, - 4.1339522346970226, - 4.092581947108262, - 4.024937650898958, - 3.933721435457014, - 3.823203549576976, - 3.6986833677795112, - 3.5647123248306443, - 3.425319108526868, - 3.283120917735273, - 3.139486615721551, - 2.995301663215687, - 2.8514371910365464, - 2.7094662189010803, - 2.5717738085532655, - 2.4412143588780437, - 2.320103995120033, - 2.2094107814193733, - 2.1076497207881473, - 2.0104767051389376, - 1.911342116563549, - 1.8023718992095443, - 1.6762218814563776, - 1.5277292644976201, - 1.3559405422898696, - 1.1639424247812011, - 0.9594172645939171, - 0.7530589868240798, - 0.5565406511929172, - 0.38056389657331224, - 0.23327281961176072, - 0.11888042120085733, - 0.037275646312136784, - -0.01405988259768584, - -0.04034698020595658, - -0.046961344731659964, - -0.03832989006667974, - -0.018061708540431296, - 0.012067781156960127, - 0.05072836069043413, - 0.0964310969828519, - 0.147180449942521, - 0.19958783160678623, - 0.24947846134992402, - 0.2924666602722272, - 0.32492863163854224, - 0.34462621164347174, - 0.35162352199115104, - 0.3478672475753431, - 0.33651917876804305, - 0.32140920351178154, - 0.3055146689893027, - 0.2904578899728933, - 0.27623658341037716, - 0.26144379125613487, - 0.24409226643753568, - 0.22252076682773356, - 0.19620993762882855, - 0.16624015351086793, - 0.13495039857898225, - 0.10548899687104854, - 0.08078504902150314, - 0.06272438014307173, - 0.05150643589284446, - 0.04592105743989872, - 0.04361870310279088, - 0.04212111609160348, - 0.03984380798334783, - 0.03658767525530847, - 0.033693661283652636, - 0.03356856161410575, - 0.03866433483529868, - 0.05058696441800543, - 0.06914399152969174, - 0.09236070311946644, - 0.11717506123342084, - 0.1405758693283694, - 0.16142713913034626, - 0.18189709621736216, - 0.2081936269448048, - 0.250475850708587, - 0.3211104452306774, - 0.43289948216759133, - 0.5961735576879311, - 0.8152654790341882, - 1.0895451595950243 - ], - "pressure:branch84_seg0:RESISTANCE_43": [ - 8149.200268904407, - 9369.959275016714, - 10710.397887192057, - 12103.515098307158, - 13475.864192658932, - 14763.178351808203, - 15917.563236292375, - 16912.3195708605, - 17736.708628236996, - 18400.004431105855, - 18917.431795351367, - 19304.511542003907, - 19576.714621312873, - 19739.724356911654, - 19795.954234370107, - 19745.689822801454, - 19588.105736301222, - 19330.44099074625, - 18982.98814905192, - 18562.01306999365, - 18087.70166818635, - 17577.39087145127, - 17046.426405506223, - 16504.777475708444, - 15957.658236462941, - 15408.441507452622, - 14860.445524114411, - 14319.662095777921, - 13795.176191344179, - 13297.860537763088, - 12836.537517042743, - 12414.894594562023, - 12027.275249483484, - 11657.132284663652, - 11279.517467563064, - 10864.437632291932, - 10383.918001700313, - 9818.292893456412, - 9163.930295612043, - 8432.587834130423, - 7653.528455699073, - 6867.486525863549, - 6118.926044273005, - 5448.610759117985, - 4887.562452097593, - 4451.828918278755, - 4140.987136545782, - 3945.4443230977513, - 3845.313806614055, - 3820.1189469136925, - 3852.9971302144663, - 3930.200917207293, - 4044.9675380700237, - 4192.230041292434, - 4366.3169130297765, - 4559.626916240867, - 4759.252537593224, - 4949.291567322604, - 5113.038460377841, - 5236.689766711691, - 5311.720068221736, - 5338.3736117034405, - 5324.0655392446915, - 5280.8394666025015, - 5223.283868452733, - 5162.739795663845, - 5105.386827985147, - 5051.216269013672, - 4994.868857035629, - 4928.774944053795, - 4846.606671639507, - 4746.385758853312, - 4632.227474536214, - 4513.041272671452, - 4400.819474232173, - 4306.719353548519, - 4237.924230945504, - 4195.193817401973, - 4173.91848158573, - 4165.148554515858, - 4159.444076861303, - 4150.76955369902, - 4138.366577278548, - 4127.34295200005, - 4126.866433264115, - 4146.27680759016, - 4191.6914469600315, - 4262.377253996808, - 4350.812324204244, - 4445.333010024649, - 4534.469324561932, - 4613.894160491933, - 4691.866533329212, - 4792.032981626638, - 4953.090735762822, - 5222.145864499747, - 5647.962901150703, - 6269.892250441279, - 7104.4380633234105, - 8149.200268904407 - ], - "flow:branch87_seg2:RESISTANCE_44": [ - 0.6867574484776074, - 0.9010915042283251, - 1.1480449516615596, - 1.41779820848811, - 1.6979249697276602, - 1.9756913398132885, - 2.2396865968454205, - 2.481147918994124, - 2.6942586278861613, - 2.8767840116980374, - 3.028664898523533, - 3.151295651713606, - 3.246778211862291, - 3.316568809380741, - 3.361761213297472, - 3.3828701842739184, - 3.3801793682258863, - 3.354686609238603, - 3.3078230815476255, - 3.2421251899488164, - 3.1608866390463226, - 3.067488125622095, - 2.965298424323336, - 2.8570364549598946, - 2.744695131760891, - 2.6297317299448677, - 2.5132978451321697, - 2.3966791081239363, - 2.2815117805969685, - 2.1697653348276855, - 2.063353023088197, - 1.963658073498019, - 1.87081095232612, - 1.7832488800287272, - 1.6977047067117401, - 1.6095155067060671, - 1.5134892057098752, - 1.405022349423595, - 1.2813522019937509, - 1.1421214012297578, - 0.9900689457914792, - 0.8305333751356241, - 0.6706367754774929, - 0.518082207075605, - 0.38000978698374677, - 0.26168501277135026, - 0.16594178695932008, - 0.09352320631417628, - 0.04285364744814392, - 0.011334004849338969, - -0.003992616991606198, - -0.006021198281694724, - 0.003147085164218283, - 0.021802034058740243, - 0.048435027605106165, - 0.08144102884465954, - 0.11859512090087743, - 0.1571267138985468, - 0.19389860665471953, - 0.22587569530047133, - 0.2506123023620277, - 0.26686030763174984, - 0.27461552061185746, - 0.2750505321830199, - 0.27016941262016825, - 0.2620568932698577, - 0.25240025478739003, - 0.2420694801740219, - 0.2310008502150488, - 0.2184604201419872, - 0.20348243937371993, - 0.1854264530925821, - 0.1643961658533521, - 0.14132251762925332, - 0.11788299326308393, - 0.09602776933976018, - 0.07745727311755758, - 0.06311854962688505, - 0.05307631463780809, - 0.04648512842694742, - 0.04202241016032165, - 0.03845205092906477, - 0.03507832618792556, - 0.03205981583864596, - 0.030375469538427895, - 0.03142782070819333, - 0.03651877052790444, - 0.046204746402342754, - 0.06004089869763299, - 0.07663587614839001, - 0.09416200351135587, - 0.11129936124117658, - 0.12823041188183393, - 0.1474323754123351, - 0.1740592636164436, - 0.2154295068872416, - 0.2802742756000547, - 0.37693627660894796, - 0.5113862436327228, - 0.6867574484776074 - ], - "pressure:branch87_seg2:RESISTANCE_44": [ - 6967.093389565247, - 7893.422613139962, - 8960.729413352748, - 10126.57458936861, - 11337.252959320853, - 12537.729967211022, - 13678.689674325433, - 14722.260087276865, - 15643.302134523987, - 16432.157626839118, - 17088.57082947329, - 17618.56803402889, - 18031.233606458165, - 18332.8612212842, - 18528.178033094773, - 18619.4087832739, - 18607.77935960707, - 18497.602339176246, - 18295.06310635156, - 18011.123735624573, - 17660.01927152874, - 17256.360729631313, - 16814.70759928833, - 16346.810765666401, - 15861.283394247082, - 15364.423675100987, - 14861.208683257704, - 14357.19477968681, - 13859.45371508759, - 13376.497341290013, - 12916.594533184356, - 12485.72345707502, - 12084.447974440827, - 11706.013916625141, - 11336.301005755633, - 10955.156568009616, - 10540.141004883197, - 10071.358671551532, - 9536.869314520485, - 8935.128452025918, - 8277.97374791027, - 7588.47780765677, - 6897.421538065056, - 6238.096754583822, - 5641.362291398334, - 5129.975074644956, - 4716.182932661942, - 4403.197451439952, - 4184.208952580793, - 4047.9843756994505, - 3981.744329710406, - 3972.9770149464307, - 4012.601370750359, - 4093.2260958541806, - 4208.331090003916, - 4350.97955244472, - 4511.555626678525, - 4678.085114956119, - 4837.009364053588, - 4975.210974589297, - 5082.119986005823, - 5152.342154169546, - 5185.859368190238, - 5187.739442402194, - 5166.643757542433, - 5131.5823030074225, - 5089.847328150186, - 5045.198807909161, - 4997.361354546844, - 4943.162936044546, - 4878.4296800662105, - 4800.3936083178405, - 4709.502920967032, - 4609.781042567434, - 4508.477886001746, - 4414.021909152737, - 4333.762179607388, - 4271.791726280946, - 4228.390243918264, - 4199.903831043943, - 4180.6164325366135, - 4165.18571583138, - 4150.60483269049, - 4137.559148753764, - 4130.279581374482, - 4134.827732337251, - 4156.830281475945, - 4198.692049452602, - 4258.490442983978, - 4330.212188384433, - 4405.958265672728, - 4480.024121536764, - 4553.198339881725, - 4636.187204651807, - 4751.265812155085, - 4930.063648056191, - 5210.315911487833, - 5628.078903141792, - 6209.157505543791, - 6967.093389565247 - ], - "flow:branch88_seg0:RESISTANCE_45": [ - 0.4152195142649909, - 0.5466406880508362, - 0.7062288742620417, - 0.8908530893837509, - 1.0950026970433224, - 1.3116244801292851, - 1.5330264226947552, - 1.7518073724849368, - 1.9615478980830217, - 2.1574239438784435, - 2.3360818126219844, - 2.495544041895259, - 2.634835381611413, - 2.753427799319692, - 2.851076033872556, - 2.9275531426045367, - 2.982702720359371, - 3.016676277298413, - 3.029961990286333, - 3.0236684414489226, - 2.999450419367864, - 2.95934920236002, - 2.905656513316138, - 2.840603567060492, - 2.7662157350371355, - 2.6842560759437046, - 2.5962646650936763, - 2.503714890194126, - 2.4081455700439296, - 2.3112244027521904, - 2.21465616381169, - 2.1199836411133246, - 2.0282331270370664, - 1.9396057813231964, - 1.8532752282456588, - 1.767372034286792, - 1.6792435684164242, - 1.5859491480613672, - 1.4849074080557667, - 1.3744561127322583, - 1.2544169893294659, - 1.1262243696658347, - 0.9928271801460636, - 0.8582589455747546, - 0.7270640881800144, - 0.6035516750122953, - 0.49127257924668116, - 0.392728128157418, - 0.3091209588162849, - 0.24065776838973563, - 0.1867764527112231, - 0.1464671241035259, - 0.11864274095340728, - 0.10218322991036063, - 0.0959825363111915, - 0.09884129702983548, - 0.10927645082510369, - 0.12547002258068532, - 0.1452801856708761, - 0.1664076623215859, - 0.18664394182451835, - 0.20420195187717158, - 0.2178974660933135, - 0.2272742284880325, - 0.23254284511586965, - 0.23433507296290473, - 0.23343915009606928, - 0.2305071416076899, - 0.22586341208563535, - 0.21947354785236325, - 0.21104695065222245, - 0.2002625045676687, - 0.1870031736833344, - 0.1715192667890811, - 0.15449344577289476, - 0.1369259565627213, - 0.11992237385850073, - 0.10442684108452203, - 0.09103341707069695, - 0.07986065654908671, - 0.07063288569511636, - 0.06287084969126344, - 0.05613749562890353, - 0.05027152795170939, - 0.04550080869694087, - 0.04238780685629657, - 0.04164365975332212, - 0.04382721376800877, - 0.04911656365975648, - 0.0571830466973734, - 0.06729562844643924, - 0.07866585921684452, - 0.09094576200257123, - 0.10475817754621392, - 0.12211931258973077, - 0.14652475642745777, - 0.18279526385491332, - 0.2363766340614274, - 0.3124584369523539, - 0.4152195142649909 - ], - "pressure:branch88_seg0:RESISTANCE_45": [ - 5725.297840004784, - 6271.688557789329, - 6935.185170260351, - 7702.770442213111, - 8551.533601537141, - 9452.15051233249, - 10372.641197603396, - 11282.234962062046, - 12154.242668497463, - 12968.608041868418, - 13711.387902438755, - 14374.360842051416, - 14953.472205131306, - 15446.526667884931, - 15852.504543677418, - 16170.462305964991, - 16399.749691756275, - 16540.99661283359, - 16596.23269121148, - 16570.066917709195, - 16469.379166359817, - 16302.656163408605, - 16079.425872114187, - 15808.964690139492, - 15499.693210036066, - 15158.941444765655, - 14793.112341674809, - 14408.331590739153, - 14010.996915277055, - 13608.041861387914, - 13206.554126421634, - 12812.947935413735, - 12431.490155064592, - 12063.01711799637, - 11704.093121931342, - 11346.945894775583, - 10980.546977941774, - 10592.670322798227, - 10172.583762486245, - 9713.376461306707, - 9214.307240504002, - 8681.339413060685, - 8126.733301788842, - 7567.258506667696, - 7021.808711657011, - 6508.299098693261, - 6041.492617208455, - 5631.788672149447, - 5284.187292917541, - 4999.5478342870865, - 4775.533317442701, - 4607.945079132925, - 4492.263684397559, - 4423.8323670221125, - 4398.052644251313, - 4409.938098292223, - 4453.322820922077, - 4520.648481164968, - 4603.010317682397, - 4690.848957375028, - 4774.982396183857, - 4847.980783271545, - 4904.9206326688745, - 4943.905035164734, - 4965.809596949475, - 4973.260882245182, - 4969.536033925935, - 4957.346048276236, - 4938.039488810504, - 4911.473278782182, - 4876.439240049816, - 4831.602315623545, - 4776.475922284219, - 4712.100732515741, - 4641.314950453983, - 4568.277153250465, - 4497.5838281869765, - 4433.160303187688, - 4377.476410328601, - 4331.025047392326, - 4292.660085375868, - 4260.388996163672, - 4232.394708384553, - 4208.006626941408, - 4188.172100716516, - 4175.229625305774, - 4172.135793025794, - 4181.21403826617, - 4203.204799729578, - 4236.741644135658, - 4278.785255841112, - 4326.057612136919, - 4377.111979588779, - 4434.537852648835, - 4506.717721118426, - 4608.184688671735, - 4758.9813070308965, - 4981.74878417064, - 5298.063040803713, - 5725.297840004784 - ], - "flow:branch89_seg0:RESISTANCE_46": [ - 0.9768303367380349, - 1.2524186681583787, - 1.5484957244549822, - 1.8498918280229941, - 2.1406041880860887, - 2.4075956401137377, - 2.6420348492753303, - 2.840152982185876, - 3.0010850900234183, - 3.128254509044892, - 3.2257640531805936, - 3.2967665499185044, - 3.344518731926704, - 3.3696118993465864, - 3.3720546639016704, - 3.3519228132054826, - 3.308878806250039, - 3.245053604401696, - 3.1631560000122794, - 3.0669161443263837, - 2.9610451690920687, - 2.8490741042716614, - 2.733972625429848, - 2.6174988737164377, - 2.500339618795177, - 2.3830434707384742, - 2.2663477039503745, - 2.1517344988347564, - 2.0413962823324607, - 1.937789586490218, - 1.842616216864923, - 1.7561557600741027, - 1.6764431609044397, - 1.5989903732178148, - 1.5177437021455178, - 1.425916080576512, - 1.317764818459397, - 1.1897794427615012, - 1.042586004302458, - 0.8801220913306778, - 0.7099940535654932, - 0.5419500074566085, - 0.3857874584407473, - 0.24985054886618602, - 0.1397989547804085, - 0.05794842055882479, - 0.002686395634075819, - -0.028936621290814722, - -0.04179379058037573, - -0.040533503993552954, - -0.02835649313340216, - -0.0078745991331401, - 0.019909291273002738, - 0.054197541230475946, - 0.09366270312576476, - 0.13649181950772407, - 0.17955507911732133, - 0.21917017113416276, - 0.25172604360953765, - 0.27455955171221236, - 0.2863236217519516, - 0.28776623819989217, - 0.28116865509573724, - 0.2694420198883733, - 0.25588470365555666, - 0.24268864150615815, - 0.2306909681955655, - 0.21936209835967546, - 0.20712078682867535, - 0.19216089540547765, - 0.17326456112327485, - 0.15035979789434145, - 0.12485400088754002, - 0.0990692656914502, - 0.07578861899446061, - 0.057317931405520016, - 0.044850843720990206, - 0.03800530431221552, - 0.03530296130419609, - 0.03452530891548929, - 0.0335995582191334, - 0.031527298503084694, - 0.028617675349885126, - 0.02644781600506111, - 0.02730883355033805, - 0.033196012788759666, - 0.045117849421858175, - 0.062361092885271925, - 0.08270817510040586, - 0.10335682661618813, - 0.12191585990036193, - 0.13808403587372095, - 0.15472525269490012, - 0.1782115348976581, - 0.21807147391295278, - 0.2851104812198877, - 0.3896371855273345, - 0.5394432525524445, - 0.7360130145958187, - 0.9768303367380349 - ], - "pressure:branch89_seg0:RESISTANCE_46": [ - 8674.395284248476, - 9993.441526627954, - 11410.5527901928, - 12853.12256747711, - 14244.55682805766, - 15522.45589486305, - 16644.550420118358, - 17592.80166651929, - 18363.069736387377, - 18971.739716866367, - 19438.448873692585, - 19778.287560036864, - 20006.843449608485, - 20126.946677579013, - 20138.638462172352, - 20042.281545041304, - 19836.260356339622, - 19530.774299534263, - 19138.788445949736, - 18678.156388868916, - 18171.426980768993, - 17635.50076232068, - 17084.59146809862, - 16527.114075127727, - 15966.355663596305, - 15404.942041537704, - 14846.402019577723, - 14297.829746014237, - 13769.718816505334, - 13273.826910880276, - 12818.299367562922, - 12404.474369760692, - 12022.946589309518, - 11652.234926615678, - 11263.364629998166, - 10823.850814035857, - 10306.20728693532, - 9693.631899495043, - 8989.121113781926, - 8211.521377163057, - 7397.238900902181, - 6592.931017358005, - 5845.491449005634, - 5194.857698110303, - 4668.118627197666, - 4276.358065183673, - 4011.857874092164, - 3860.5008792858152, - 3798.962712007009, - 3804.9948116902638, - 3863.2775420791545, - 3961.30986869698, - 4094.291682731071, - 4258.405261238099, - 4447.297052246037, - 4652.289711902187, - 4858.403049429574, - 5048.012449787788, - 5203.83436370812, - 5313.122202231426, - 5369.42847725052, - 5376.333260900264, - 5344.755301276681, - 5288.628200298536, - 5223.738925264712, - 5160.578717781831, - 5103.1543492823685, - 5048.93106954327, - 4990.34057736407, - 4918.738167833618, - 4828.294793104269, - 4718.665906735946, - 4596.587713050016, - 4473.1744397235925, - 4361.746465296801, - 4273.340359955583, - 4213.66923716551, - 4180.904486250013, - 4167.970283368573, - 4164.248211915424, - 4159.817298708339, - 4149.898858484108, - 4135.972552289691, - 4125.586971737237, - 4129.708053177322, - 4157.8858124192775, - 4214.947204431428, - 4297.478403701104, - 4394.865481742236, - 4493.695958532467, - 4582.524912173273, - 4659.91052445183, - 4739.560248384148, - 4851.972454399358, - 5042.753764002071, - 5363.622032354797, - 5863.917367191569, - 6580.932956264988, - 7521.773247479146, - 8674.395284248476 - ], - "flow:branch90_seg2:RESISTANCE_47": [ - 0.8347571674750895, - 1.0752671055490177, - 1.3363322768604555, - 1.6047457647009153, - 1.8662321972299154, - 2.1087794522132888, - 2.323863936827521, - 2.50731056634203, - 2.6576948473204123, - 2.7775235647018177, - 2.8701530666617896, - 2.9384865296509197, - 2.9855046665000637, - 3.0119929848300644, - 3.018172146316042, - 3.0040843917379387, - 2.9694863126334674, - 2.916023159230639, - 2.8458733441378317, - 2.762300301298707, - 2.6693659352439774, - 2.570303995531718, - 2.467930502947807, - 2.363974808596461, - 2.259227421186261, - 2.154244536861765, - 2.049654718200946, - 1.9466911236389244, - 1.8472082431996293, - 1.7533597228568683, - 1.666755549853922, - 1.5878876242559816, - 1.5153302378527764, - 1.4454635187326856, - 1.3731731340079658, - 1.2925194999921639, - 1.1982259140796587, - 1.0868323314095916, - 0.9582836322867717, - 0.8154854322043376, - 0.6646904884232249, - 0.5142132370370466, - 0.37272572843565427, - 0.24788041832423266, - 0.1452152536313227, - 0.06724559700571238, - 0.013163648358831246, - -0.019268343717781553, - -0.03422139933299582, - -0.03574694077033006, - -0.026895587107783617, - -0.01017701291740796, - 0.013362421460893103, - 0.042887378537817995, - 0.07726449427922052, - 0.11498354733061485, - 0.15339692109227093, - 0.18932425252994142, - 0.21954253142602645, - 0.24153336850334056, - 0.2538724862298774, - 0.2569316110441901, - 0.2524650447153556, - 0.24294652591637736, - 0.23127179686546548, - 0.21951769263504553, - 0.2086483095176312, - 0.19841667845007752, - 0.18758274401348163, - 0.17459527386041926, - 0.15828449068757577, - 0.13842966668414544, - 0.11606360541096358, - 0.09308606123653869, - 0.07191177553141562, - 0.0546550764312172, - 0.04254336221123341, - 0.03546355598069571, - 0.03230949486361238, - 0.03120751257532025, - 0.030304315188573995, - 0.028573326614774467, - 0.026080731683382506, - 0.024033551264327078, - 0.02435349045630666, - 0.02884353476517486, - 0.03855244053398735, - 0.05308753535915576, - 0.07072031146793122, - 0.08905938543217416, - 0.10591280502580386, - 0.12071519967466741, - 0.13554129003606288, - 0.1555251285533527, - 0.18867139995866827, - 0.24434660609812744, - 0.33191721461802903, - 0.458626789000419, - 0.6266573150087699, - 0.8347571674750895 - ], - "pressure:branch90_seg2:RESISTANCE_47": [ - 8390.378649455995, - 9655.621103419528, - 11028.997774004185, - 12441.031483512626, - 13816.624268661768, - 15092.584366422694, - 16224.072001828195, - 17189.123448587667, - 17980.24492251256, - 18610.62378190235, - 19097.916653489352, - 19457.396178920088, - 19704.742892840564, - 19844.08908848474, - 19876.59559322448, - 19802.48462169467, - 19620.475683273547, - 19339.223889897617, - 18970.189142710467, - 18530.539277703756, - 18041.642617938753, - 17520.51083976915, - 16981.95808799941, - 16435.081901186073, - 15884.040881615347, - 15331.760991434405, - 14781.548888426254, - 14239.891807243543, - 13716.54560050308, - 13222.839880355978, - 12767.244251953927, - 12352.346437245422, - 11970.646261522312, - 11603.10078769365, - 11222.805218622581, - 10798.513388353751, - 10302.466326895992, - 9716.46189389022, - 9040.210123029998, - 8288.996486950064, - 7495.714653181255, - 6704.104092993039, - 5959.785567024327, - 5303.016088822309, - 4762.928947505513, - 4352.756625838879, - 4068.249557361414, - 3897.635679321471, - 3818.9726480456843, - 3810.947284074228, - 3857.511299343555, - 3945.46213416062, - 4069.295236261208, - 4224.616174116566, - 4405.462698086278, - 4603.890038037849, - 4805.96996734321, - 4994.971658319433, - 5153.939930696126, - 5269.626379627232, - 5334.5383567251165, - 5350.631390626493, - 5327.134277002239, - 5277.060528783089, - 5215.643678602059, - 5153.809262112924, - 5096.629067902736, - 5042.803874217884, - 4985.810163677634, - 4917.487421013306, - 4831.681838537408, - 4727.232240960311, - 4609.571862859506, - 4488.694677450358, - 4377.3038325604475, - 4286.522102326356, - 4222.80641912375, - 4185.561923197936, - 4168.969461116379, - 4163.172300359411, - 4158.42088057538, - 4149.314727838258, - 4136.202018430124, - 4125.432486003088, - 4127.1155792325035, - 4150.736202668077, - 4201.811513146338, - 4278.2757923044655, - 4371.035938071079, - 4467.511680952045, - 4556.171892397305, - 4634.042346649837, - 4712.037456131638, - 4817.165755975341, - 4991.53721899452, - 5284.425882992937, - 5745.1056058605345, - 6411.68235572844, - 7295.634830915721, - 8390.378649455995 - ], - "flow:branch91_seg0:RESISTANCE_48": [ - 1.0018691890039109, - 1.2722699657716228, - 1.5567381879661046, - 1.8407578269597589, - 2.109462159151261, - 2.351641831272337, - 2.560564991451291, - 2.7346469943021336, - 2.8742407324176433, - 2.9836231291047306, - 3.0672380325653017, - 3.1274196421349396, - 3.166984897278008, - 3.1857671927524427, - 3.183156122810744, - 3.159369252938408, - 3.1138873741619477, - 3.04929826790235, - 2.9686805184870715, - 2.8756034349644692, - 2.7748209377948405, - 2.6693632085999264, - 2.561633648675217, - 2.452939488515843, - 2.3435467169567477, - 2.233896426961183, - 2.1248076945687218, - 2.0179343150683797, - 1.9156021026830725, - 1.8202280918546876, - 1.7331853162649025, - 1.654195919941326, - 1.5807115125205553, - 1.507654955841196, - 1.4288085590246817, - 1.3376308843571278, - 1.229186493570804, - 1.100969599577279, - 0.9550032797219207, - 0.7963129132038976, - 0.6331131664241939, - 0.4753369078745614, - 0.33215617317958307, - 0.21080113692211253, - 0.11545037896426529, - 0.047250063307254966, - 0.0032466151295095238, - -0.019969925338225607, - -0.027294174423408726, - -0.023166743680866093, - -0.009959594077427157, - 0.010277043477938947, - 0.037038326682260224, - 0.06984041574721088, - 0.10723376328190813, - 0.14730275529455916, - 0.1867440746131608, - 0.22185200387187098, - 0.2492667342263008, - 0.2668344124892717, - 0.2737740290254914, - 0.27141240309377634, - 0.2625139709671371, - 0.24995522486673907, - 0.23686522481259348, - 0.22495444706428103, - 0.21445035827973105, - 0.204339677617523, - 0.19277258776787104, - 0.17796029073711878, - 0.15899228721263567, - 0.13619203420214404, - 0.1114086534062631, - 0.08717594260814694, - 0.06622896792983253, - 0.0505607658523187, - 0.04089902720758797, - 0.03633878019591674, - 0.035059356552347966, - 0.03478821298286544, - 0.03362675085651293, - 0.031020219056700844, - 0.02775797579732227, - 0.02576814022329707, - 0.027447582777432776, - 0.03456519068386786, - 0.047688506824037254, - 0.06558464571519193, - 0.0855954381188827, - 0.10491448106991037, - 0.12149153189836195, - 0.1357753984934738, - 0.15158679210545165, - 0.17614212132545426, - 0.21945924503019604, - 0.29216579769748735, - 0.4034806383737712, - 0.5599893094963929, - 0.7608736281908173, - 1.0018691890039109 - ], - "pressure:branch91_seg0:RESISTANCE_48": [ - 9071.139026163459, - 10440.090529614748, - 11880.260950396436, - 13318.160339805594, - 14678.523294137733, - 15904.600490433255, - 16962.310744270533, - 17843.631509599516, - 18550.349367254836, - 19104.11699390824, - 19527.43215287916, - 19832.11213895497, - 20032.418203752506, - 20127.50687892329, - 20114.28787798316, - 19993.86266447829, - 19763.60265163702, - 19436.608938166253, - 19028.46739883292, - 18557.248288635667, - 18047.019166252412, - 17513.120859236995, - 16967.721009473375, - 16417.437701321578, - 15863.617550053408, - 15308.493666395902, - 14756.212766897808, - 14215.147481158647, - 13697.072652857742, - 13214.224944081168, - 12773.555579397456, - 12373.657864063742, - 12001.630123532108, - 11631.768452649787, - 11232.594697478193, - 10770.9916787688, - 10221.972872009499, - 9572.852289227028, - 8833.872115398237, - 8030.474216823768, - 7204.246787348344, - 6405.4767211810295, - 5680.599062289055, - 5066.217841488187, - 4583.487854459536, - 4238.211758101572, - 4015.4365602636108, - 3897.898739706437, - 3860.8184401722892, - 3881.714284436999, - 3948.577802811673, - 4051.0293406266524, - 4186.513044907254, - 4352.579391604113, - 4541.889792034933, - 4744.7461133561455, - 4944.424731238537, - 5122.164799578133, - 5260.9566950158005, - 5349.896156868389, - 5385.02918645578, - 5373.073039700373, - 5328.023161575997, - 5264.442300007792, - 5198.171871836302, - 5137.8714640462995, - 5084.692666611304, - 5033.505567007164, - 4974.945139668451, - 4899.955280052646, - 4803.926425207244, - 4688.496133138981, - 4563.025907769502, - 4440.343546141973, - 4334.295801673886, - 4254.972772181196, - 4206.058520522002, - 4182.971467750333, - 4176.494160468338, - 4175.121448446092, - 4169.2413420977355, - 4156.04531629929, - 4139.529635878792, - 4129.455743217519, - 4137.95821660878, - 4173.9923588215515, - 4240.431455539769, - 4331.033807107957, - 4432.341964110096, - 4530.148017810042, - 4614.072253996284, - 4686.386841565957, - 4766.434803393268, - 4890.750477539207, - 5110.0510369889025, - 5478.140750984628, - 6041.691715304324, - 6834.044397118291, - 7851.0566016829225, - 9071.139026163459 - ], - "flow:branch93_seg2:RESISTANCE_49": [ - 0.668798750600175, - 0.8619435589807685, - 1.0721633488905535, - 1.2888307384908981, - 1.5004752913795856, - 1.6973604883017863, - 1.8725039606565543, - 2.0223560914710332, - 2.1456685735838694, - 2.2442967162695915, - 2.3208264769764333, - 2.3776010276948387, - 2.4170191361958535, - 2.4398036475817295, - 2.446221389942345, - 2.4363592030470564, - 2.4100506352704385, - 2.3685748012475774, - 2.3136251673706765, - 2.2477228669089087, - 2.1740449456971924, - 2.095165326202173, - 2.0133388058043473, - 1.9299951387258418, - 1.8458258593836974, - 1.7613188298933238, - 1.6770036479849972, - 1.5938622743181965, - 1.5133610139761942, - 1.4372092837210273, - 1.3667183855998302, - 1.3023338545017145, - 1.2430047399565605, - 1.185952826286109, - 1.1271690433624926, - 1.0619444272227596, - 0.9860250302734678, - 0.8965278801958438, - 0.7932162293520438, - 0.6782049886236687, - 0.5562980669825727, - 0.43401722983991337, - 0.3182970108985124, - 0.2153820187510205, - 0.1298945401859315, - 0.06413644929296107, - 0.0177393882715144, - -0.010920130823965512, - -0.02502789549864387, - -0.027810336377119695, - -0.02177512485865498, - -0.008999140910772242, - 0.00955661594117023, - 0.03314901976848374, - 0.060835055500803564, - 0.09136940439205267, - 0.12263772711421511, - 0.15209057178546218, - 0.17711863185608584, - 0.1956459209571253, - 0.2064546907930417, - 0.20974612832086584, - 0.20683067782896652, - 0.19964019352456894, - 0.1904787192222366, - 0.18104442737314175, - 0.17218135111122265, - 0.1637711955175357, - 0.15488963630029662, - 0.1443290269734664, - 0.13115038604980994, - 0.11513415497434813, - 0.09704754674118765, - 0.07836810902202762, - 0.06100531379545517, - 0.046669766361427265, - 0.03639697619896851, - 0.030178504605981225, - 0.027191151862525593, - 0.025982443333092756, - 0.025080364455193058, - 0.023623928692701555, - 0.02160824476771098, - 0.01993777032238457, - 0.020108786768926783, - 0.023562431530907164, - 0.031172883820855323, - 0.04269006616735197, - 0.05680075557155414, - 0.07163019659377264, - 0.08541952134246318, - 0.09765855029173111, - 0.10990384672495032, - 0.12615088176888245, - 0.15271593132774036, - 0.19709013616613097, - 0.2668047503402786, - 0.3678124696390036, - 0.502115190589721, - 0.668798750600175 - ], - "pressure:branch93_seg2:RESISTANCE_49": [ - 8289.838861848855, - 9529.005724855228, - 10877.721228981309, - 12267.80285601517, - 13625.659268902387, - 14888.823492098712, - 16012.498464434695, - 16973.91076649508, - 17765.051584156558, - 18397.82409924887, - 18888.819142278233, - 19253.069895390323, - 19505.96622880145, - 19652.14572871084, - 19693.320294754136, - 19630.04706830874, - 19461.258139031896, - 19195.159973786846, - 18842.617412557804, - 18419.805390775717, - 17947.107008322444, - 17441.035882392043, - 16916.058206614714, - 16381.346912270159, - 15841.338704343652, - 15299.163579298483, - 14758.21929844951, - 14224.805866027777, - 13708.330714132979, - 13219.761016174254, - 12767.509745080173, - 12354.435336837341, - 11973.795166530539, - 11607.76492484672, - 11230.62346040949, - 10812.159285004871, - 10325.080177118056, - 9750.889736072564, - 9088.069050590528, - 8350.186838902919, - 7568.06373171026, - 6783.541679896793, - 6041.110848365133, - 5380.835021926992, - 4832.369590585532, - 4410.48277989496, - 4112.811301998595, - 3928.9392804279373, - 3838.42753101811, - 3820.576113919249, - 3859.2964615569604, - 3941.26385215501, - 4060.3127626679, - 4211.675490388047, - 4389.301895856311, - 4585.202337844649, - 4785.81176506126, - 4974.773557220672, - 5135.347082053588, - 5254.213350879759, - 5323.559607312071, - 5344.6766145479, - 5325.971842358639, - 5279.839564956601, - 5221.061928286378, - 5160.533965182688, - 5103.670772740949, - 5049.713401523967, - 4992.731627247411, - 4924.977504106929, - 4840.426771063792, - 4737.670797525757, - 4621.631822548252, - 4501.789407754668, - 4390.394228798899, - 4298.421084440295, - 4232.513534210661, - 4192.617437591838, - 4173.45135925487, - 4165.696599656283, - 4159.909096162488, - 4150.564983058393, - 4137.63287917693, - 4126.915549544811, - 4128.012746592772, - 4150.170433260739, - 4198.997116044839, - 4272.888362921421, - 4363.418876635291, - 4458.560713818045, - 4547.029435473459, - 4625.551862436256, - 4704.114499946217, - 4808.351251725079, - 4978.785701418351, - 5263.479060090661, - 5710.749895254139, - 6358.789155083427, - 7220.440487102573, - 8289.838861848855 - ], - "flow:branch96_seg2:RESISTANCE_50": [ - 0.7310944301563245, - 0.9500180738588738, - 1.1936510429958365, - 1.4503707288324266, - 1.7070868898926954, - 1.9518244914243355, - 2.175150161095806, - 2.371165998021291, - 2.5369861552137865, - 2.6733057801969413, - 2.7822219710379517, - 2.8662806688000613, - 2.9281142725666807, - 2.9689044294088895, - 2.9892222078608057, - 2.9891661907832168, - 2.968639141006266, - 2.928750548916611, - 2.871228160564345, - 2.7988765780210443, - 2.7152227074395325, - 2.623514195400207, - 2.5266920618782476, - 2.4268095051320677, - 2.3250883371561324, - 2.2223321147415254, - 2.1192597301604317, - 2.0169811667279784, - 1.9171226766191223, - 1.8216552176296599, - 1.732288309469507, - 1.6499100327543994, - 1.5738338489807078, - 1.5014772730996635, - 1.4286516848352044, - 1.3501150923912915, - 1.2607437779876796, - 1.156673331464802, - 1.036655134687682, - 0.9021835174450787, - 0.7579022207921196, - 0.6106904258785346, - 0.46841932683985016, - 0.338612218523712, - 0.22728929510625123, - 0.13797795343793937, - 0.0713674626571408, - 0.026258194071242504, - -0.0004624293537863114, - -0.012273112257730765, - -0.012272913148659742, - -0.0030385982668584494, - 0.013973416772481222, - 0.03768220341639461, - 0.06701741763167234, - 0.10059159050958248, - 0.13615509976579848, - 0.17089063441126187, - 0.20174947834066653, - 0.22608008723076578, - 0.2420910020064852, - 0.2494675595307144, - 0.24919544661121884, - 0.24320695386690963, - 0.23398610635759978, - 0.22362216515837305, - 0.21339815020450453, - 0.20353573711047998, - 0.19328296589052585, - 0.18139930285970737, - 0.16674506758814647, - 0.14884816527586056, - 0.1282518999770352, - 0.10639035817251144, - 0.085314678047749, - 0.06704916334798414, - 0.05302448331629284, - 0.04361745852236945, - 0.038226569601316804, - 0.035421661393854394, - 0.03357612336806978, - 0.03152481459588952, - 0.028961675335474026, - 0.026604081158694014, - 0.025944071740468345, - 0.02862689129529355, - 0.035844392928248515, - 0.04767896625191096, - 0.0630254001045863, - 0.07995135482167258, - 0.09641937264387752, - 0.11145890522263202, - 0.1261701772647683, - 0.14432488843818214, - 0.17242378108538725, - 0.2187111278490993, - 0.2920076494701936, - 0.3997996138758712, - 0.5460128311028698, - 0.7310944301563245 - ], - "pressure:branch96_seg2:RESISTANCE_50": [ - 7693.597942997972, - 8799.93224173434, - 10031.135530244475, - 11328.47276069793, - 12625.792178635227, - 13862.577745445953, - 14991.157756116307, - 15981.727069775385, - 16819.70201035864, - 17508.595517515194, - 18059.005311437893, - 18483.797347914726, - 18796.274499786145, - 19002.408240309323, - 19105.084473882456, - 19104.801390643002, - 19001.067600925133, - 18799.48993297325, - 18508.799580377938, - 18143.16964666339, - 17720.423411121443, - 17256.9729101192, - 16767.680637340683, - 16262.922464560033, - 15748.87283914724, - 15229.592548799417, - 14708.71452764998, - 14191.848094965584, - 13687.211543339577, - 13204.765140991401, - 12753.147974396397, - 12336.847973814698, - 11952.395705423982, - 11586.740537793552, - 11218.715208231195, - 10821.829223432615, - 10370.189789812517, - 9844.268045930414, - 9237.754079136468, - 8558.199510036686, - 7829.071561800061, - 7085.134291540085, - 6366.164910602533, - 5710.182515457253, - 5147.610258165227, - 4696.273897767051, - 4359.6566673934, - 4131.696223361612, - 3996.6631055185094, - 3936.977621725419, - 3936.9786279264426, - 3983.644392785304, - 4069.6148956068823, - 4189.427645851541, - 4337.673642027432, - 4507.341286774858, - 4687.062076216122, - 4862.598682099746, - 5018.544366545045, - 5141.499505921538, - 5222.41093180019, - 5259.688488749429, - 5258.313361554961, - 5228.050413210447, - 5181.452705943946, - 5129.07835557743, - 5077.411124834521, - 5027.571255144379, - 4975.75870412936, - 4915.704414043255, - 4841.648990752806, - 4751.206695282344, - 4647.123123765856, - 4536.645456244182, - 4430.139153878316, - 4337.834069536312, - 4266.960114190744, - 4219.421556899412, - 4192.178609480988, - 4178.003958893959, - 4168.677501582102, - 4158.311178358261, - 4145.358311192903, - 4133.444169548996, - 4130.108800903915, - 4143.666474440795, - 4180.140239780519, - 4239.946454209635, - 4317.499914618743, - 4403.035510160969, - 4486.256913937991, - 4562.259443621108, - 4636.603103186589, - 4728.348240053074, - 4870.346464485841, - 5104.260346312952, - 5474.665545477576, - 6019.394042287178, - 6758.284983489504, - 7693.597942997972 - ], - "flow:branch97_seg0:RESISTANCE_51": [ - 0.690096963118332, - 0.9022364789252597, - 1.146067550562968, - 1.4122833579011747, - 1.6892782394898591, - 1.965259253333077, - 2.2297090931785926, - 2.4745645431716077, - 2.6943894314694052, - 2.8869776261411935, - 3.0519293783714305, - 3.190018646465417, - 3.3025753303192324, - 3.3902654556920666, - 3.4534697452462058, - 3.492167834881266, - 3.5062637321356163, - 3.496522624384441, - 3.46428920610336, - 3.4119991331055184, - 3.3428312651953185, - 3.2600502471504886, - 3.166866350712634, - 3.065863790959413, - 2.9589643702013797, - 2.847633927233675, - 2.7331320607306764, - 2.6169191909829683, - 2.5008277063297384, - 2.38700218881936, - 2.2774754919928664, - 2.173688040032376, - 2.0757917157289247, - 1.982266372264529, - 1.8899516166488843, - 1.7943978255808137, - 1.6907493626893224, - 1.5747953668829604, - 1.4441765793747923, - 1.298854937216005, - 1.1416957927018736, - 0.9779381389638558, - 0.8143732837762849, - 0.6581976703784507, - 0.5159356635310359, - 0.3923204375442235, - 0.2898263476487585, - 0.20903075096486867, - 0.1485057788818583, - 0.10601444770466632, - 0.07908963422902016, - 0.06539486446695603, - 0.0632995305748524, - 0.07144220859849555, - 0.0885376495945266, - 0.11306165801541244, - 0.14280023868402056, - 0.1749789979244371, - 0.20647225291697952, - 0.23429546473402263, - 0.25606484235421234, - 0.2705730644260156, - 0.2777937748711514, - 0.27876589691258574, - 0.2752601747693315, - 0.26905463549810604, - 0.26150147719748496, - 0.25317212300960734, - 0.24379889789632556, - 0.23256326257688453, - 0.21853335797282478, - 0.20117613579949076, - 0.18071991825014752, - 0.15819263088001118, - 0.13528748944277186, - 0.11388497824615212, - 0.09555832879139803, - 0.08111902383323294, - 0.07053347313249635, - 0.06294224823827287, - 0.05711366892568101, - 0.05197252367129702, - 0.04701633645071184, - 0.042569386147147725, - 0.03969849837966953, - 0.03979337164276383, - 0.04405866687295759, - 0.0529136481156203, - 0.06579523820920193, - 0.08128088822527162, - 0.09762094883258253, - 0.11367355871241559, - 0.12984596395190215, - 0.1488056984860525, - 0.17577650240528497, - 0.21798085103797474, - 0.2838273126734641, - 0.3812242869777442, - 0.5157398127085405, - 0.690096963118332 - ], - "pressure:branch97_seg0:RESISTANCE_51": [ - 6823.816261771821, - 7692.17996432742, - 8690.268657798953, - 9779.98616403399, - 10913.826316588184, - 12043.51634206206, - 13126.005105152695, - 14128.286949429008, - 15028.109658979629, - 15816.44273854552, - 16491.649871760845, - 17056.899149667286, - 17517.634333147358, - 17876.581706326157, - 18135.29970464845, - 18293.70497049205, - 18351.404572021118, - 18311.530697690698, - 18179.587667943913, - 17965.545502237102, - 17682.416422546718, - 17343.56379974658, - 16962.12843622393, - 16548.688458192097, - 16111.11049702159, - 15655.394760635272, - 15186.697241609332, - 14710.995967969322, - 14235.79156738794, - 13769.862589212196, - 13321.530237631361, - 12896.690689372721, - 12495.965655588361, - 12113.132625991737, - 11735.254969950161, - 11344.11877125811, - 10919.848155487654, - 10445.206546443118, - 9910.536645305296, - 9315.682646669255, - 8672.373472979205, - 8002.054216423612, - 7332.524154009796, - 6693.240928613622, - 6110.911123017939, - 5604.909330179631, - 5185.36398025673, - 4854.638404591395, - 4606.887820947605, - 4432.955446645761, - 4322.742454825746, - 4266.684813084658, - 4258.1078542388905, - 4291.4387780436, - 4361.416596102002, - 4461.802225214339, - 4583.532983012635, - 4715.252273552945, - 4844.165547474722, - 4958.05600837511, - 5047.165938133804, - 5106.55333414934, - 5136.110311468582, - 5140.0895582959565, - 5125.739370642951, - 5100.3378558076865, - 5069.420049273777, - 5035.324992466607, - 4996.956994720897, - 4950.965478951463, - 4893.53600918888, - 4822.486626167596, - 4738.751935137199, - 4646.539606873618, - 4552.780585362024, - 4465.172372455576, - 4390.154773233502, - 4331.049479869801, - 4287.718995376535, - 4256.645368518256, - 4232.786887021921, - 4211.742321555219, - 4191.454856162194, - 4173.251881501886, - 4161.500300369506, - 4161.888650921268, - 4179.34804571858, - 4215.594684015508, - 4268.323687501337, - 4331.712049322023, - 4398.5978224651135, - 4464.306955899826, - 4530.506455034025, - 4608.11550027447, - 4718.51674760041, - 4891.274398635989, - 5160.807762132576, - 5559.488775911977, - 6110.109434823618, - 6823.816261771821 - ], - "flow:branch98_seg0:RESISTANCE_52": [ - 0.9665649091287856, - 1.2493362195130961, - 1.5594927832453909, - 1.8814197975023674, - 2.1981780707037353, - 2.4950758851195483, - 2.761300800032692, - 2.9909727919027023, - 3.1818523388481803, - 3.336185659018969, - 3.457533801155577, - 3.549405109646262, - 3.6152721977179416, - 3.656403097136385, - 3.6732903731555004, - 3.666001767347636, - 3.634319177187956, - 3.5798170556790163, - 3.5048011566010953, - 3.412833972953631, - 3.308364264160175, - 3.1952300341845987, - 3.076815996243474, - 2.955341715906898, - 2.8319852456384313, - 2.7075298888484083, - 2.5827699163090005, - 2.459108615516892, - 2.338650554800026, - 2.223910264739004, - 2.11694706354522, - 2.0186587529136792, - 1.9278350644078532, - 1.8407880635604725, - 1.7519035384041035, - 1.6543878925849282, - 1.5418704622518746, - 1.4097978613191875, - 1.257218272649603, - 1.0866683017511822, - 0.9046497918236303, - 0.7203557009656312, - 0.5439328315445872, - 0.3848126995031999, - 0.25028405613147003, - 0.14431797353976633, - 0.06712745047654849, - 0.01673385904083601, - -0.011217361204929652, - -0.02132397199247632, - -0.01742934303391809, - -0.0026794041229315163, - 0.021330004856102716, - 0.05339362840790306, - 0.09216826642493213, - 0.13585135731643105, - 0.18142178144058246, - 0.22515876090097925, - 0.26314589690847995, - 0.29212821021920804, - 0.31005914705607207, - 0.3169020276640584, - 0.31429410953839426, - 0.30493836451363293, - 0.2921481800167556, - 0.2785282940449161, - 0.26550843492807813, - 0.25310629403440793, - 0.24011151887013615, - 0.22479306075942543, - 0.20569587757987454, - 0.18234973554697542, - 0.15567999753562978, - 0.127730757012893, - 0.10126554336055192, - 0.0788764081662085, - 0.06226009439154222, - 0.051646808123857885, - 0.04601775627123508, - 0.043345462073126693, - 0.04147052894762874, - 0.038994778174712696, - 0.035725970388964357, - 0.032822588174661355, - 0.032387819396494336, - 0.03658075709927761, - 0.046832026021975455, - 0.06300664824661564, - 0.08339324604420734, - 0.10531982763064719, - 0.12614030265925494, - 0.14483397439969062, - 0.16327391234016864, - 0.18688784197399674, - 0.22459420435130936, - 0.28730283148695335, - 0.38628709855212706, - 0.5306777024720742, - 0.7243385739367378, - 0.9665649091287856 - ], - "pressure:branch98_seg0:RESISTANCE_52": [ - 7955.499476576909, - 9112.984639715005, - 10382.567541467351, - 11700.331150899181, - 12996.937235277146, - 14212.247284544073, - 15302.002071374684, - 16242.132534456703, - 17023.47150139658, - 17655.213554834547, - 18151.935354180452, - 18527.99782088377, - 18797.6156158378, - 18965.979251309407, - 19035.104974889276, - 19005.270077313922, - 18875.58178612988, - 18652.484906462676, - 18345.417721803275, - 17968.962803435283, - 17541.330531400894, - 17078.231242927082, - 16593.519792398936, - 16096.281663815904, - 15591.339051643616, - 15081.898299815835, - 14571.210645641799, - 14065.02025197461, - 13571.941877543106, - 13102.268404731125, - 12664.429367187697, - 12262.099791703906, - 11890.325612194343, - 11534.01078011475, - 11170.17429698198, - 10771.00751780583, - 10310.433013171929, - 9769.812128298996, - 9145.24873167035, - 8447.126066325482, - 7702.05852615916, - 6947.676210880284, - 6225.513649496056, - 5574.177445182523, - 5023.503091026003, - 4589.745620266094, - 4273.77691375512, - 4067.4977324449487, - 3953.08328678528, - 3911.713276439118, - 3927.6554002328385, - 3988.0322306243543, - 4086.3114182519, - 4217.55941681022, - 4376.278022844773, - 4555.088700343151, - 4741.624914819532, - 4920.656177705013, - 5076.151253421967, - 5194.786335619644, - 5268.1841400914955, - 5296.19452334468, - 5285.519371989923, - 5247.222926563593, - 5194.868079217824, - 5139.116963892116, - 5085.821975325537, - 5035.055530681414, - 4981.863219797691, - 4919.159234866537, - 4840.987562648381, - 4745.42336632709, - 4636.254490563287, - 4521.848148625421, - 4413.516464975367, - 4321.869643493637, - 4253.853066302393, - 4210.409050110348, - 4187.3673066141955, - 4176.428640730283, - 4168.753861872094, - 4158.619719255634, - 4145.239307685551, - 4133.3547150392615, - 4131.575049310656, - 4148.738258599242, - 4190.700406970075, - 4256.908981025696, - 4340.358693252533, - 4430.112115656481, - 4515.337844187243, - 4591.857798261512, - 4667.339128196581, - 4763.999475943302, - 4918.345243724098, - 5175.034316641779, - 5580.212693317699, - 6171.255615977512, - 6963.97954930756, - 7955.499476576909 - ], - "flow:branch100_seg0:RESISTANCE_53": [ - 0.6194928319781505, - 0.7915552825540968, - 0.9750218351918353, - 1.160509705073546, - 1.3381875229062516, - 1.5002454399182443, - 1.6415848842891272, - 1.7603312998069938, - 1.8561939091817536, - 1.931530479023541, - 1.989024433437648, - 2.0304809421984866, - 2.0578892018846853, - 2.0714705972956393, - 2.071112067377153, - 2.056920109691496, - 2.028645602203508, - 1.9877475888504956, - 1.9360137054358542, - 1.8757510289035875, - 1.8099422124591702, - 1.740690178431377, - 1.6697358148492984, - 1.598086943409573, - 1.5260774930976415, - 1.4540276576542748, - 1.3824145484177937, - 1.312201573062467, - 1.2447894200615959, - 1.1817060211236472, - 1.1239374115072025, - 1.071526662436981, - 1.023102992269154, - 0.9757023471578943, - 0.9254790610325248, - 0.8682164817648941, - 0.8004817873574152, - 0.7202861025791113, - 0.6283411205185582, - 0.5273622468397968, - 0.4222696970998723, - 0.31924315343297544, - 0.22430593300747861, - 0.14245910081284263, - 0.07694068938735361, - 0.02894985415876639, - -0.0028369848256890036, - -0.0203705123082661, - -0.026729330356446552, - -0.024809068463762594, - -0.01644188706759301, - -0.003167651990692066, - 0.014484395926484437, - 0.036076603653517586, - 0.06073362561850053, - 0.08729631126401168, - 0.11375898874133679, - 0.13780391700196237, - 0.15722264374162295, - 0.17046225831551862, - 0.17680428236942472, - 0.17685413876350184, - 0.1721621985433525, - 0.16455212137224862, - 0.1560688174510236, - 0.1479893276124995, - 0.14070919681110647, - 0.13379483933447225, - 0.12619707631285348, - 0.11678731563435168, - 0.10486914684905735, - 0.09048434358204324, - 0.07461591353592881, - 0.058766773229135164, - 0.04467340831216589, - 0.03371485769757229, - 0.026537791443046733, - 0.022783522997368588, - 0.021448297577593766, - 0.021126540001380482, - 0.020550402981091776, - 0.019190699569820346, - 0.01734613763809014, - 0.0160825264125995, - 0.016861212278876905, - 0.020882838468643732, - 0.028683418670685593, - 0.03969884391276211, - 0.052436695948126937, - 0.0651381847169918, - 0.07637700553800192, - 0.08613195411737531, - 0.09641789992962181, - 0.11142877525355466, - 0.13726430291087865, - 0.18067363129353328, - 0.24789697241148004, - 0.3435693307989299, - 0.46808608686848086, - 0.6194928319781505 - ], - "pressure:branch100_seg0:RESISTANCE_53": [ - 8753.661965933998, - 10074.256405915678, - 11482.378332140725, - 12906.014045975406, - 14269.706923488979, - 15513.515688531454, - 16598.30835399394, - 17509.69753609461, - 18245.45149355998, - 18823.66629247361, - 19264.93744883388, - 19583.11979941275, - 19793.48060288853, - 19897.71900706599, - 19894.967258411143, - 19786.04273508023, - 19569.033403544665, - 19255.137554337027, - 18858.075449459702, - 18395.554107350843, - 17890.465653668074, - 17358.950202223554, - 16814.369221740697, - 16264.457832372802, - 15711.778968450075, - 15158.790145091967, - 14609.153233779036, - 14070.262473136938, - 13552.868270380011, - 13068.697635742734, - 12625.318476550321, - 12223.06136824034, - 11851.405441144767, - 11487.601321326976, - 11102.133183492353, - 10662.63785172928, - 10142.768115311148, - 9527.259181931138, - 8821.573358633002, - 8046.551622691116, - 7239.957061207843, - 6449.219278027313, - 5720.567762129673, - 5092.386127121273, - 4589.526557498076, - 4221.192676626285, - 3977.225891967849, - 3842.654526575508, - 3793.850038837634, - 3808.5882177389503, - 3872.8070707955762, - 3974.6879923963506, - 4110.16901254737, - 4275.891105751335, - 4465.1359177627155, - 4669.006866113297, - 4872.110242977961, - 5056.657181978605, - 5205.697617460489, - 5307.3128236560415, - 5355.988416010935, - 5356.3710682200335, - 5320.360014403728, - 5261.9520028570405, - 5196.841899208367, - 5134.831104157335, - 5078.955460014887, - 5025.88715830743, - 4967.573658940993, - 4895.352918204169, - 4803.879924648984, - 4693.475294521599, - 4571.683698388963, - 4450.040152702029, - 4341.872337541408, - 4257.764497838738, - 4202.679883157377, - 4173.865542672481, - 4163.617570151026, - 4161.14805245703, - 4156.7261501586845, - 4146.290306899804, - 4132.133131856144, - 4122.434804573835, - 4128.411287078044, - 4159.277621761256, - 4219.1477608239375, - 4303.692118294304, - 4401.456252879772, - 4498.941296196931, - 4585.200234381849, - 4660.070322614968, - 4739.0158613082585, - 4854.225649531599, - 5052.515596373867, - 5385.686009288391, - 5901.631064239054, - 6635.924828645448, - 7591.601881945488, - 8753.661965933998 - ], - "flow:branch101_seg0:RESISTANCE_54": [ - 1.2855638558388067, - 1.6524325713949852, - 2.0486448535877306, - 2.4535003474941837, - 2.845432216857697, - 3.20671085930454, - 3.525213174837035, - 3.7954457344589314, - 4.016275185265492, - 4.192082450474918, - 4.3282083414466275, - 4.429235281155376, - 4.499447555156556, - 4.539871986629149, - 4.550652892618461, - 4.531644776181935, - 4.482415885185675, - 4.405328216795082, - 4.303646696911014, - 4.182184134503231, - 4.046852144978671, - 3.9024016197631908, - 3.752852585098925, - 3.6006144762650205, - 3.4467476553201135, - 3.2919812352628104, - 3.1372422566094778, - 2.9844111823207657, - 2.836334219348775, - 2.6963083720440126, - 2.5668169082360195, - 2.4485949486100886, - 2.3394433937013672, - 2.233877281107125, - 2.1240954660528635, - 2.00110903099181, - 1.8569831501044525, - 1.6865770673445373, - 1.4898927796043009, - 1.2714762147718865, - 1.0409078646058392, - 0.8108376739786091, - 0.5945115325325698, - 0.4036005704403929, - 0.24644764788835413, - 0.12686844191271576, - 0.04363941704381757, - -0.006866731210977605, - -0.03098214782144132, - -0.03487275173378177, - -0.02320125591077296, - 0.00041823673960369247, - 0.034468392602939935, - 0.0777854723597869, - 0.12876287168278924, - 0.1850358116367583, - 0.24252736966482613, - 0.2963217172369966, - 0.3414325761070549, - 0.3739938960559686, - 0.39188767196973134, - 0.39575392358340067, - 0.3883307516458166, - 0.37348576760547336, - 0.35563585895114364, - 0.3379153005519969, - 0.32171739818404416, - 0.30653768108795365, - 0.29036861818108045, - 0.2707574131920861, - 0.24589507915555528, - 0.2154673607509709, - 0.1811047495651854, - 0.14581533157978677, - 0.11335534846655199, - 0.0869872057299966, - 0.0685682252803833, - 0.057892712856071324, - 0.053165432904417255, - 0.05144803397605919, - 0.049892941617723355, - 0.046925802553985915, - 0.042714678221816064, - 0.03920143952753371, - 0.0394128664189216, - 0.04616650030674829, - 0.06105951169037242, - 0.08343213007807361, - 0.11055614348878189, - 0.13866809581853753, - 0.1643757060639644, - 0.18684824026165442, - 0.20936826036346617, - 0.23996667977434102, - 0.29106820525496835, - 0.3771770424196593, - 0.5125347297024351, - 0.707982978033227, - 0.9666312243919567, - 1.2855638558388067 - ], - "pressure:branch101_seg0:RESISTANCE_54": [ - 8355.868822022208, - 9599.213414608876, - 10942.00547534358, - 12314.090005267233, - 13642.375437555304, - 14866.774868349916, - 15946.20223555757, - 16862.039911270447, - 17610.446880580916, - 18206.270408908225, - 18667.610891958488, - 19009.998492389397, - 19247.952963596454, - 19384.95428354722, - 19421.491553138814, - 19357.07167271705, - 19190.23140309513, - 18928.975723380798, - 18584.369703425706, - 18172.72430067587, - 17714.074407009502, - 17224.521136841202, - 16717.688649654385, - 16201.742695752868, - 15680.27691879142, - 15155.762335419215, - 14631.340752948408, - 14113.38519626376, - 13611.541666436558, - 13136.983949502855, - 12698.128019616002, - 12297.465253909584, - 11927.54274535651, - 11569.771559946324, - 11197.713054207738, - 10780.903136897534, - 10292.450109821024, - 9714.931579187483, - 9048.354312609039, - 8308.124788257157, - 7526.711985134979, - 6746.987480694515, - 6013.842552285148, - 5366.8315035971345, - 4834.228890784956, - 4428.966319103915, - 4146.897138415872, - 3975.728151630558, - 3893.999261787392, - 3880.8137239336897, - 3920.369266839375, - 4000.4174345387255, - 4115.8158737466865, - 4262.620587799973, - 4435.386678515278, - 4626.09973916601, - 4820.942784545917, - 5003.255716473589, - 5156.139677587572, - 5266.49234427541, - 5327.135644126164, - 5340.238650279599, - 5315.080984070738, - 5264.770260231518, - 5204.275629693503, - 5144.219376519139, - 5089.3235146849975, - 5037.878356326901, - 4983.080233510742, - 4916.61644239623, - 4832.3561954124, - 4729.234458565103, - 4612.777085686541, - 4493.178697578802, - 4383.169468751235, - 4293.805927250163, - 4231.382671268066, - 4195.202588085618, - 4179.181494663624, - 4173.361105569801, - 4168.09078517255, - 4158.034936434513, - 4143.763131712281, - 4131.856511856783, - 4132.573052872651, - 4155.461606239784, - 4205.935098216577, - 4281.757518921441, - 4373.682760768037, - 4468.956199014924, - 4556.081148163341, - 4632.242190769706, - 4708.564166537201, - 4812.264421432292, - 4985.45118466705, - 5277.280257364992, - 5736.017242591265, - 6398.405482275919, - 7274.983083079566, - 8355.868822022208 - ], - "flow:branch102_seg2:RESISTANCE_55": [ - 1.3860396661159984, - 1.7926171562157338, - 2.238646945357276, - 2.7019574278511125, - 3.1581642887741737, - 3.5859828711484796, - 3.9695844752349156, - 4.300218866844683, - 4.574287746745838, - 4.794890314142266, - 4.967096705449828, - 5.095932762717216, - 5.18653997642586, - 5.240748822133862, - 5.259326706572677, - 5.242433022123852, - 5.18977867451023, - 5.103847167062831, - 4.988098047882807, - 4.847923368782142, - 4.690071970421449, - 4.520261697872069, - 4.3435679911717475, - 4.16329611449911, - 3.981162339910075, - 3.798308430257977, - 3.6158635486789468, - 3.4358485811841817, - 3.261304641614977, - 3.0958493196874013, - 2.9423841664084738, - 2.802088038964451, - 2.6730345109366387, - 2.5496592639260434, - 2.4236558100270016, - 2.2850640944612572, - 2.1246388635256626, - 1.9359008760058318, - 1.7177530428959886, - 1.4741686436431798, - 1.214911539074449, - 0.9535509967702137, - 0.7048216560067235, - 0.4822051299686874, - 0.2959401406223445, - 0.15131454366430863, - 0.048093046545155727, - -0.01688074300441122, - -0.05020576421138049, - -0.05867708127321825, - -0.04781498983264733, - -0.02218765600573514, - 0.015980542918067154, - 0.06500569030941812, - 0.12294526614675257, - 0.18725549124938362, - 0.2536104956541131, - 0.3167065374502767, - 0.371004148440303, - 0.4119512487105113, - 0.43674320115395915, - 0.44549821904939296, - 0.44071781506352425, - 0.42638244281387644, - 0.4073308895874, - 0.3872957545434738, - 0.36828638568718786, - 0.3502761926990341, - 0.33147651154493124, - 0.30938568780610765, - 0.2819342795376875, - 0.24849966351273936, - 0.21048984281840077, - 0.17087496334782637, - 0.13363412875407846, - 0.1024497652864264, - 0.0796758545404662, - 0.06552300114697066, - 0.05844498189549379, - 0.05547401700230695, - 0.05348712803427789, - 0.050521912076230434, - 0.046363019253933754, - 0.04272934535188641, - 0.042669519174355415, - 0.04925992721302827, - 0.06449563759302995, - 0.08809049596171623, - 0.11750856528953509, - 0.14888549180420835, - 0.1784435145953966, - 0.2048143807248241, - 0.23083205566786974, - 0.264434547962584, - 0.3185394002156389, - 0.40879899554373306, - 0.5513628764059971, - 0.7592638042782078, - 1.0377697937607975, - 1.3860396661159984 - ], - "pressure:branch102_seg2:RESISTANCE_55": [ - 8173.629658647948, - 9398.205325710387, - 10741.60785011905, - 12137.058304146238, - 13511.113274322468, - 14799.665244487385, - 15955.039562173142, - 16950.881291040118, - 17776.35267004755, - 18440.788214816395, - 18959.458730629125, - 19347.50161202722, - 19620.40257646751, - 19783.674855454912, - 19839.629810619037, - 19788.74751780447, - 19630.157250456254, - 19371.339102338236, - 19022.712928279765, - 18600.519114444054, - 18125.084575761477, - 17613.630959059286, - 17081.445043662934, - 16538.48199478671, - 15989.911073024037, - 15439.17116774235, - 14889.663219068256, - 14347.47395805666, - 13821.762952321364, - 13323.426064145899, - 12861.20251015308, - 12438.64290458097, - 12049.945020365461, - 11678.349619523346, - 11298.838290520009, - 10881.412223728617, - 10398.2255275384, - 9829.763296856563, - 9172.72119601822, - 8439.066393515895, - 7658.2067800383975, - 6871.011796967649, - 6121.860882811689, - 5451.359471616304, - 4890.34569408715, - 4454.7461068454995, - 4143.852029411791, - 3948.1566856786253, - 3847.7846506592164, - 3822.2697881926474, - 3854.9854529685485, - 3932.172730130461, - 4047.1319907777274, - 4194.791426018156, - 4369.300336270206, - 4562.997082208285, - 4762.8525236935475, - 4952.892256224196, - 5116.431888439688, - 5239.760955711374, - 5314.432137565951, - 5340.801482009525, - 5326.403325342302, - 5283.226444027758, - 5225.8448401048145, - 5165.500774192352, - 5108.246225884937, - 5054.0011074771755, - 4997.378120099788, - 4930.842500507832, - 4848.161271441613, - 4747.459146462478, - 4632.976907122873, - 4513.660371814003, - 4401.494251025039, - 4307.569688979192, - 4238.976671356613, - 4196.3495207956585, - 4175.031148880303, - 4166.082863732984, - 4160.098528784175, - 4151.167558924237, - 4138.641339258568, - 4127.697032820464, - 4127.51684163172, - 4147.366571429086, - 4193.255192063702, - 4264.3208317748185, - 4352.925471106833, - 4447.430016126405, - 4536.456182989914, - 4615.882914099737, - 4694.245864397302, - 4795.45361794673, - 4958.412677787565, - 5230.266646216988, - 5659.656525777442, - 6285.8358486158995, - 7124.671411715729, - 8173.629658647948 - ], - "flow:branch103_seg0:RESISTANCE_56": [ - 0.4960923983534153, - 0.6394651247818954, - 0.7955569319823267, - 0.9565799158131154, - 1.1140401601668033, - 1.2607032182467544, - 1.391353837494791, - 1.5033338765698432, - 1.5956189688964493, - 1.669548947790352, - 1.7270289197521873, - 1.7697297346478675, - 1.799430178604714, - 1.816631979027887, - 1.8214986814252763, - 1.8141005734517228, - 1.794297408515532, - 1.763064037993411, - 1.721693599115763, - 1.6720938177826914, - 1.6166841338963918, - 1.5574032644042122, - 1.4959524330269274, - 1.4334102682414742, - 1.370291562172082, - 1.3069652140756791, - 1.2438301618820553, - 1.1816266251428473, - 1.1214560453144897, - 1.0645980963322077, - 1.0120204078452428, - 0.9640398077962464, - 0.9198522351083892, - 0.877353272417146, - 0.8335431418636737, - 0.7849087815948851, - 0.7282999553683838, - 0.6616012048447844, - 0.5846985322894696, - 0.4992234186143824, - 0.40879575823220843, - 0.31830286798451357, - 0.23288253046924043, - 0.15712378068193245, - 0.09439184409499235, - 0.04630741537211897, - 0.012503001333626878, - -0.008257055768920104, - -0.018370278066111766, - -0.020230412215116688, - -0.01565679243050362, - -0.006175675589936933, - 0.007535862532092277, - 0.02494561671119902, - 0.04535144529111242, - 0.06784372952764411, - 0.09085179257139754, - 0.11248610273088026, - 0.1308233172591422, - 0.1443433254650931, - 0.15215827144152427, - 0.1544364776983483, - 0.15217360313471062, - 0.1467972122327867, - 0.14001461289856101, - 0.13307012903398072, - 0.12656533993263688, - 0.12039468674957628, - 0.11386010034758949, - 0.10606382653326932, - 0.09631689472885767, - 0.08447142480712136, - 0.07111445617911553, - 0.05734829396487315, - 0.044589143819109923, - 0.03409502842467666, - 0.026616394797136088, - 0.02212183725250481, - 0.01999034127678711, - 0.01914009380663514, - 0.018481108324586278, - 0.017393484842511367, - 0.015890899053790493, - 0.014657261481382647, - 0.014807443168414109, - 0.01740230153182334, - 0.023075959251681204, - 0.03162556340400948, - 0.04205881547475934, - 0.052987051565841596, - 0.06311523417591873, - 0.07208722522613926, - 0.08108796035492588, - 0.09310587087652131, - 0.11283961219242446, - 0.1458314870164143, - 0.19765187461459785, - 0.2726929679656428, - 0.3723785225756443, - 0.4960923983534153 - ], - "pressure:branch103_seg0:RESISTANCE_56": [ - 8319.985962489462, - 9568.768528716102, - 10928.33483130674, - 12330.851892806508, - 13702.337341405831, - 14979.77883674553, - 16117.75130646103, - 17093.102226024243, - 17896.909318843736, - 18540.842590282657, - 19041.49559926999, - 19413.421519448373, - 19672.113653903965, - 19821.942069749046, - 19864.331255337314, - 19799.893419142263, - 19627.407007364625, - 19355.363017101397, - 18995.024728819473, - 18563.008516528975, - 18080.387805037815, - 17564.04890170031, - 17028.809537731275, - 16484.064613199844, - 15934.297989478984, - 15382.722794840856, - 14832.8137956803, - 14291.018335884048, - 13766.930017546289, - 13271.694855258322, - 12813.740944562698, - 12395.82787036187, - 12010.952226359977, - 11640.784447497137, - 11259.196340594666, - 10835.588986977486, - 10342.523694524725, - 9761.574730814255, - 9091.749170712215, - 8347.257282591958, - 7559.628501282191, - 6771.431565059783, - 6027.416779629304, - 5367.554835658328, - 4821.156990636638, - 4402.339564255021, - 4107.901675234099, - 3927.0806918480957, - 3838.994094015227, - 3822.79224618834, - 3862.628669710795, - 3945.2096020387, - 4064.6376842791765, - 4216.277386213736, - 4394.013024049406, - 4589.9217797025, - 4790.322990779527, - 4978.75875560387, - 5138.476676762844, - 5256.236525259935, - 5324.305038250363, - 5344.148311979343, - 5324.438577952362, - 5277.609983736493, - 5218.533254059413, - 5158.046503213838, - 5101.38951252188, - 5047.642859938822, - 4990.726333486538, - 4922.82045582501, - 4837.924263817243, - 4734.749715243633, - 4618.409948428844, - 4498.506088013876, - 4387.373345693842, - 4295.969152727783, - 4230.829934649734, - 4191.682146611836, - 4173.116725692771, - 4165.711033939857, - 4159.971242266233, - 4150.497995318451, - 4137.41040896952, - 4126.6653730631715, - 4127.97346196685, - 4150.574789058646, - 4199.992589945834, - 4274.460007002958, - 4365.334077822136, - 4460.5194805839365, - 4548.736383380529, - 4626.882808345436, - 4705.279595461423, - 4809.956109019434, - 4981.837838101424, - 5269.1984758855, - 5720.55626351884, - 6374.1673893009565, - 7242.4328244547005, - 8319.985962489462 - ], - "flow:branch104_seg0:RESISTANCE_57": [ - 0.9522527204445869, - 1.2278470898148983, - 1.5280342406795715, - 1.8376737835871162, - 2.140410401619171, - 2.422288948493255, - 2.673243141870182, - 2.888097116369982, - 3.0649999900233325, - 3.2065182576996802, - 3.3163384287036592, - 3.39781456841377, - 3.4543568945854752, - 3.487014459277399, - 3.4961420101449123, - 3.4818377260769764, - 3.443858711072546, - 3.384009637444952, - 3.3047478692638617, - 3.2097211010750315, - 3.103516705415108, - 2.9898863731516814, - 2.8720945481023494, - 2.7522151999637057, - 2.6312511162982086, - 2.509894163254859, - 2.3888958462346106, - 2.269654632019124, - 2.154267331481845, - 2.0451828276790254, - 1.9442848266291815, - 1.852207778772591, - 1.7674418309635156, - 1.6859979142647619, - 1.6021144536737664, - 1.5090337355812138, - 1.4006574235108704, - 1.2728673985412562, - 1.125341842542074, - 0.9611628764372626, - 0.7872491131767612, - 0.6129706010942082, - 0.4482675000958164, - 0.302049049932074, - 0.18086290739339075, - 0.0879215717529005, - 0.02262404565188287, - -0.01744250966151841, - -0.03686991348663554, - -0.04029664708015601, - -0.03131176403162026, - -0.012854749453720487, - 0.013714281400166143, - 0.04736569129775504, - 0.08678468461957732, - 0.13021203327812095, - 0.174653395698068, - 0.21648149745511172, - 0.25198059022376396, - 0.2781948975545133, - 0.2933993297366434, - 0.2978862430177314, - 0.2935425467899373, - 0.28314237585097907, - 0.2699770531223557, - 0.2564779363088826, - 0.24384455613482844, - 0.23189568777004121, - 0.21929887857423394, - 0.20431724731953502, - 0.18560229753866594, - 0.16283819895996804, - 0.137121116617302, - 0.11056827923599821, - 0.08590895722613974, - 0.06558567606295095, - 0.051071887740115986, - 0.0423484751768612, - 0.038225345638792305, - 0.036620578907723224, - 0.035426165648507216, - 0.0334092119396223, - 0.030566470310943342, - 0.028195705292810517, - 0.028439706008165016, - 0.033362327561030566, - 0.04421156923519911, - 0.060631272352743126, - 0.08074106387273995, - 0.1018564808110664, - 0.1214638409724722, - 0.13882921730880984, - 0.1561724125171607, - 0.1791965047098593, - 0.21691536262056577, - 0.28002469761676124, - 0.37926669101087396, - 0.5231453647669955, - 0.7145683839773088, - 0.9522527204445869 - ], - "pressure:branch104_seg0:RESISTANCE_57": [ - 8286.302329677132, - 9527.103596483268, - 10878.628295347226, - 12272.710249818185, - 13635.71334752678, - 14904.807701108717, - 16034.67215285302, - 17002.003540452853, - 17798.468686791835, - 18435.62265408889, - 18930.06311604008, - 19296.89099281335, - 19551.46001794371, - 19698.493310870297, - 19739.588042613635, - 19675.18624139831, - 19504.194322959556, - 19234.73741589732, - 18877.879245706474, - 18450.04273141702, - 17971.881479515156, - 17460.28662893019, - 16929.955599038094, - 16390.225968951007, - 15845.612562686101, - 15299.230350974118, - 14754.462816778227, - 14217.606240237388, - 13698.10103769234, - 13206.972750794772, - 12752.702339512773, - 12338.146273344704, - 11956.506780259857, - 11589.823980301488, - 11212.157686163464, - 10793.082821940548, - 10305.143008017969, - 9729.797346095434, - 9065.596922885394, - 8326.418290204236, - 7543.41093681852, - 6758.761384423074, - 6017.222953022452, - 5358.90747797071, - 4813.294301892714, - 4394.846975610737, - 4100.859644553973, - 3920.4690483926047, - 3833.0015600979896, - 3817.5734677405067, - 3858.025869922019, - 3941.124400280399, - 4060.7454477518622, - 4212.253303758295, - 4389.728398629406, - 4585.250206105629, - 4785.337381018722, - 4973.658941313365, - 5133.485571220405, - 5251.509556321254, - 5319.964070670585, - 5340.165382097751, - 5320.608873035601, - 5273.784457480434, - 5214.510571889406, - 5153.733853986235, - 5096.854919340995, - 5043.0578441764965, - 4986.343562082905, - 4918.892158477939, - 4834.632333252291, - 4732.142132096566, - 4616.356789956787, - 4496.808649930207, - 4385.785634262932, - 4294.284661037104, - 4228.939614335763, - 4189.66442382991, - 4171.100966362578, - 4163.87586739779, - 4158.498292055772, - 4149.417414522633, - 4136.618613799214, - 4125.944780932019, - 4127.043338922898, - 4149.206328220389, - 4198.052583112868, - 4271.978579770128, - 4362.518364201253, - 4457.585749453272, - 4545.863450418588, - 4624.047126688623, - 4702.130937450636, - 4805.791701003374, - 4975.612321014659, - 5259.747816922973, - 5706.562428575366, - 6354.343589964413, - 7216.182405012423, - 8286.302329677132 - ], - "flow:branch105_seg2:RESISTANCE_58": [ - 1.0511632374977042, - 1.3542468052787566, - 1.6836507466547161, - 2.0227354688106596, - 2.3535793293093383, - 2.6610068808823697, - 2.934179591374074, - 3.1676569101547134, - 3.3595640049701774, - 3.512904541819401, - 3.6317760413087155, - 3.719822211286336, - 3.780746947545112, - 3.8155725247904986, - 3.8246093205611422, - 3.807928592740061, - 3.76524026970494, - 3.698604769682234, - 3.6107779936219924, - 3.5058293876656412, - 3.3888550675349767, - 3.263955323731391, - 3.1346831713919214, - 3.0032565208537423, - 2.8707143470099266, - 2.7377864524231086, - 2.6052943830769815, - 2.4747995715480484, - 2.348638163712221, - 2.229518806732258, - 2.119484483736212, - 2.019171179003732, - 1.9268177122462802, - 1.8379261472887443, - 1.746086168018197, - 1.6438451394712306, - 1.5245566682038563, - 1.3838219663196791, - 1.2214941302822868, - 1.0411530868145957, - 0.8505804296329591, - 0.6601724789077009, - 0.4808317059240581, - 0.32222751402560107, - 0.19136059806423925, - 0.09153121647856767, - 0.021846936022432668, - -0.020468666186225372, - -0.04054780033326254, - -0.043472426941236174, - -0.03309901770337954, - -0.012576936700697905, - 0.01670231102561585, - 0.053660313363865626, - 0.0968635412134971, - 0.14437280242266606, - 0.19286188062627632, - 0.23832802520725402, - 0.2767014326371094, - 0.3047876899110279, - 0.32076421999332105, - 0.32505410105373417, - 0.3198118515251439, - 0.3081217919866771, - 0.29360695310457247, - 0.2788848635712059, - 0.2651939479901541, - 0.2522538459913214, - 0.23853826865601907, - 0.22211710952834712, - 0.20153081050904703, - 0.1764874326598294, - 0.14826200070432327, - 0.11923114356741288, - 0.09241431840288152, - 0.07047148043401819, - 0.05496208601567422, - 0.04578297475880473, - 0.04156283434888953, - 0.03997358590912607, - 0.038703286496276725, - 0.03644638008452522, - 0.03326855472462945, - 0.030662392950661338, - 0.03102224798699765, - 0.036608144934590914, - 0.048745093280070824, - 0.06696160749747267, - 0.08911577438687532, - 0.11222219734163984, - 0.13353298635970048, - 0.15232582313275814, - 0.17117237452748277, - 0.1964843714047472, - 0.2382830735131161, - 0.3083530656511961, - 0.4184430512164444, - 0.5777457328051377, - 0.7891886561436593, - 1.0511632374977042 - ], - "pressure:branch105_seg2:RESISTANCE_58": [ - 8377.600138145548, - 9640.08887863354, - 11012.21462634132, - 12424.665479178815, - 13802.789182146778, - 15083.372703115241, - 16221.268345987912, - 17193.813602327315, - 17993.198894634912, - 18631.935935543643, - 19127.09286790032, - 19493.84748628379, - 19747.628296992298, - 19892.693565542457, - 19930.336163569307, - 19860.852914406583, - 19683.035530320984, - 19405.466643589963, - 19039.625906326648, - 18602.464517737215, - 18115.210249310865, - 17594.942781838752, - 17056.462131165106, - 16509.006959908955, - 15956.905097895442, - 15403.196523586103, - 14851.303370888772, - 14307.729757005502, - 13782.20685240545, - 13286.017474464597, - 12827.671629895156, - 12409.81849891517, - 12025.121919090876, - 11654.84582426703, - 11272.288166639486, - 10846.405139389053, - 10349.511319154368, - 9763.283640017826, - 9087.110178139366, - 8335.903049053795, - 7542.076330904227, - 6748.935694313569, - 6001.895172585827, - 5341.232478359361, - 4796.108870658657, - 4380.2715121884785, - 4090.002989520065, - 3913.7381668293388, - 3830.098921835051, - 3817.916446256679, - 3861.126681833452, - 3946.611013389114, - 4068.573153583837, - 4222.520997620952, - 4402.48320775403, - 4600.382116575141, - 4802.362434138655, - 4991.750780155321, - 5151.594466730068, - 5268.58722826568, - 5335.137155365435, - 5353.00657196382, - 5331.170082928379, - 5282.475365986117, - 5222.014085314207, - 5160.6895060623265, - 5103.660261967721, - 5049.758517330433, - 4992.626545175413, - 4924.224524385476, - 4838.472693923454, - 4734.154987787489, - 4616.582496807117, - 4495.655022809115, - 4383.950056176567, - 4292.54758895322, - 4227.9435064280615, - 4189.708095995466, - 4172.129182728069, - 4165.509199085508, - 4160.217791446645, - 4150.8166914331005, - 4137.579521350016, - 4126.723604879145, - 4128.2225740740405, - 4151.490519787801, - 4202.046743413628, - 4277.9272811108185, - 4370.210034865941, - 4466.459392846369, - 4555.229072387864, - 4633.510270545574, - 4712.01521592109, - 4817.451849423763, - 4991.563534742675, - 5283.438731963245, - 5742.0164378882855, - 6405.588677411866, - 7286.350085643641, - 8377.600138145548 - ], - "flow:branch106_seg0:RESISTANCE_59": [ - 0.8588823392917576, - 1.1048194114137544, - 1.3711422552138965, - 1.644348599018053, - 1.9100282252980654, - 2.1561602604502617, - 2.3743196218455798, - 2.5605171294351403, - 2.7135111336744275, - 2.8359684118956605, - 2.93132943876782, - 3.0024383526856657, - 3.0521699136427447, - 3.0811625479206928, - 3.0894626257100675, - 3.077033518484396, - 3.043563865057045, - 2.990711966496669, - 2.920787952601531, - 2.8371181493952378, - 2.7438368991908133, - 2.6442410277120976, - 2.5411341133925607, - 2.436222198292804, - 2.3302671531397725, - 2.223812806203449, - 2.1175242167771593, - 2.0127059976638426, - 1.9113012696852982, - 1.8155437560541516, - 1.7270810909559697, - 1.6463725623887424, - 1.5718974824667622, - 1.4998954372037554, - 1.4251022520889847, - 1.3414664997511174, - 1.2436977440005381, - 1.1283965968780199, - 0.9956905983787536, - 0.8487423826677964, - 0.6940507789374963, - 0.5401551690155293, - 0.39586158616632466, - 0.2688498139482173, - 0.16453542459423998, - 0.08529953097966561, - 0.03015927603760015, - -0.0033243377639422724, - -0.019394109809022862, - -0.02213258627432697, - -0.01454669563510268, - 0.0009658402686263427, - 0.023436872699598245, - 0.052094394058020216, - 0.08582638801990065, - 0.12307372643432733, - 0.1611072191148363, - 0.19665976135306995, - 0.2264406946657759, - 0.24791612626073328, - 0.2596904125994675, - 0.2622050421872859, - 0.2573106497452801, - 0.24753412168386682, - 0.23579426335799047, - 0.22414212248514845, - 0.21346043328330092, - 0.20339845196446693, - 0.19262313966738337, - 0.1795247445806779, - 0.1629353814535932, - 0.1426817482717356, - 0.11987902189774134, - 0.09652504705651244, - 0.07510020994907671, - 0.05773696884444267, - 0.045631998947644956, - 0.03860519045514726, - 0.03546239482748989, - 0.03426511576713797, - 0.03314291053739463, - 0.03109945946973788, - 0.02827722736003708, - 0.025977651453532997, - 0.02620128231718555, - 0.030782282089785475, - 0.04074288723681168, - 0.05561285303653777, - 0.07355420407421875, - 0.0920986546874277, - 0.10903570557181572, - 0.12387437521422007, - 0.13886263951037697, - 0.15937938807681115, - 0.19369612248878526, - 0.2514216309804188, - 0.3419998152046901, - 0.4726721493442876, - 0.6455077975265461, - 0.8588823392917576 - ], - "pressure:branch106_seg0:RESISTANCE_59": [ - 8339.37628127752, - 9582.22339279851, - 10928.090342799736, - 12308.743175316877, - 13651.359614811181, - 14895.191975269418, - 15997.663960570342, - 16938.616182548903, - 17711.773944443805, - 18330.61385015141, - 18812.52239601288, - 19171.872483023555, - 19423.191758940913, - 19569.70652166794, - 19611.651103738946, - 19548.840402282156, - 19379.70094832803, - 19112.61299409077, - 18759.250819182813, - 18336.424067854783, - 17865.02570820395, - 17361.716304222213, - 16840.663786461435, - 16310.489667037958, - 15775.04407242586, - 15237.075247892431, - 14699.944081711123, - 14170.243456523802, - 13657.792965935754, - 13173.880767599641, - 12726.83320845742, - 12318.971308096458, - 11942.610244826528, - 11578.746703610008, - 11200.778090422502, - 10778.123415728152, - 10284.047371668665, - 9701.371094278513, - 9030.739109058699, - 8288.133840712124, - 7506.397231367667, - 6728.6831900603875, - 5999.493153325339, - 5357.637035951817, - 4830.48252288859, - 4430.06260791616, - 4151.4104063916875, - 3982.2004034528545, - 3900.9915413780795, - 3887.152604712269, - 3925.488030062852, - 4003.8808899678925, - 4117.438628574595, - 4262.259892552229, - 4432.725088789788, - 4620.955137073242, - 4813.1580291023765, - 4992.823396534653, - 5143.321841631761, - 5251.848294745017, - 5311.349847886456, - 5324.057570609182, - 5299.323676460113, - 5249.9178282201865, - 5190.59025761813, - 5131.7059686335715, - 5077.7258734159805, - 5026.877482360533, - 4972.424261263698, - 4906.231302395762, - 4822.396678088928, - 4720.044603711989, - 4604.810644210899, - 4486.790941351475, - 4378.520168327977, - 4290.774738705101, - 4229.602070666583, - 4194.091976304804, - 4178.209805982807, - 4172.159336206112, - 4166.488253289306, - 4156.161639106832, - 4141.899441889798, - 4130.278496546087, - 4131.408618859652, - 4154.558777906963, - 4204.894862780908, - 4280.040483907267, - 4370.707401755688, - 4464.422093406311, - 4550.013763615771, - 4625.001229087134, - 4700.744673645794, - 4804.426406023848, - 4977.846597915855, - 5269.563421536162, - 5727.301792000738, - 6387.656620330743, - 7261.084462086224, - 8339.37628127752 - ], - "flow:branch108_seg0:RESISTANCE_60": [ - 0.6212719607654583, - 0.7965119452271269, - 0.9847901057531668, - 1.1764633401099849, - 1.3613821611728723, - 1.531337376457022, - 1.68079011363253, - 1.8073824683305895, - 1.910607110954806, - 1.9926968567792962, - 2.0561847532144815, - 2.103060408773877, - 2.135315509599119, - 2.1532148164715164, - 2.1567147722205036, - 2.1457614476152633, - 2.1201125775012386, - 2.0811034088246814, - 2.0304216184877943, - 1.9704824371481382, - 1.9042648072222197, - 1.8340103081253967, - 1.7616169093293221, - 1.688174683116058, - 1.61411427348653, - 1.539779086060346, - 1.4656392784332835, - 1.39265783034826, - 1.3222541236342498, - 1.2560181363991185, - 1.1950551755078958, - 1.1395675036968458, - 1.0883022909171396, - 1.0384124538429027, - 0.9860487548038791, - 0.9268962461260051, - 0.8573127745030238, - 0.7751019470566133, - 0.6806904511203411, - 0.5766068777861921, - 0.467733727110937, - 0.36026253669733, - 0.2604084177934435, - 0.17344308647650947, - 0.10292577858186464, - 0.050240754738389924, - 0.014345711389056954, - -0.006654928759191452, - -0.015891285731989068, - -0.016249773880376652, - -0.009738516571028477, - 0.002040992973353208, - 0.018527815193944388, - 0.03923534732423496, - 0.0633644577351587, - 0.0897740252692725, - 0.1164613754937761, - 0.14108197809650502, - 0.16132712879642175, - 0.1754923392581776, - 0.18271856808573705, - 0.18349201622405115, - 0.17925050626887468, - 0.17184941367916595, - 0.16337289357691975, - 0.15518404864930438, - 0.14778935323823408, - 0.14081814510692658, - 0.13323512973048787, - 0.12387548248720819, - 0.1119572655291248, - 0.0974470421505121, - 0.0812511568458001, - 0.06486211935326354, - 0.050065518537642455, - 0.03832940128761894, - 0.030404167481110786, - 0.0260341635649751, - 0.024270090989706047, - 0.023681881904966607, - 0.02295693839659177, - 0.021470333681507813, - 0.019434275746727795, - 0.017874571970600786, - 0.018266321162520673, - 0.02188850561819506, - 0.02938224074094907, - 0.04027794599882105, - 0.05315496853554045, - 0.0662113749050832, - 0.0779167593759259, - 0.08808347832880503, - 0.09854474684680509, - 0.1133722357590492, - 0.1386438753823865, - 0.181235902725727, - 0.2477324300478413, - 0.34302424313414154, - 0.46806711865366374, - 0.6212719607654583 - ], - "pressure:branch108_seg0:RESISTANCE_60": [ - 8520.03771533175, - 9795.270832257254, - 11165.383630624568, - 12560.202608901203, - 13905.869268748442, - 15142.644766020623, - 16230.222355386708, - 17151.44340865528, - 17902.616054336457, - 18499.98863889226, - 18961.994318171437, - 19303.111606731854, - 19537.834138170547, - 19668.088594445537, - 19693.55800710609, - 19613.849929523534, - 19427.201381924053, - 19143.32904586504, - 18774.51425932407, - 18338.332817739592, - 17856.462684817277, - 17345.215984262595, - 16818.404367181327, - 16283.96036266034, - 15745.017795969456, - 15204.075652828205, - 14664.555301585557, - 14133.46441039937, - 13621.13191600991, - 13139.128195717589, - 12695.496641691016, - 12291.709133423905, - 11918.648742647541, - 11555.597053100055, - 11174.54290416015, - 10744.086132282566, - 10237.722543648024, - 9639.468840010872, - 8952.430053707241, - 8195.006911657805, - 7402.729694151693, - 6620.654635472283, - 5894.009516900578, - 5261.156969803879, - 4747.997792005885, - 4364.605340918874, - 4103.394703670968, - 3950.5716372004285, - 3883.3580482033717, - 3880.749305910604, - 3928.132161936366, - 4013.8524427174984, - 4133.8281534729385, - 4284.518253243643, - 4460.107407582404, - 4652.29160131331, - 4846.497238307763, - 5025.663014281282, - 5172.988333380065, - 5276.069519700314, - 5328.655271403579, - 5334.283705366483, - 5303.4179530256215, - 5249.559706000422, - 5187.87550085811, - 5128.284727250464, - 5074.473032923154, - 5023.74308392588, - 4968.560972583562, - 4900.450192021484, - 4813.720528090387, - 4708.128659640746, - 4590.27011632974, - 4471.005991596906, - 4363.330135336292, - 4277.925623190695, - 4220.253165386709, - 4188.452353876313, - 4175.615079463433, - 4171.334642513838, - 4166.059179995284, - 4155.24105780544, - 4140.424527694536, - 4129.074458736124, - 4131.925243872859, - 4158.284123027514, - 4212.816535977448, - 4292.105313705781, - 4385.812270121384, - 4480.824614716291, - 4566.005482367128, - 4639.989377874842, - 4716.116730317754, - 4824.01736132857, - 5007.920777353669, - 5317.865816164745, - 5801.7655041394955, - 6495.210417369935, - 7405.155806762316, - 8520.03771533175 - ], - "flow:branch109_seg2:RESISTANCE_61": [ - 0.6910671756890264, - 0.8953641465028855, - 1.1223629874953212, - 1.361753666010438, - 1.601657039801237, - 1.8312255066065497, - 2.041864828944902, - 2.228178426426486, - 2.387152715201456, - 2.5191416424274347, - 2.6257369139483364, - 2.7087661180889975, - 2.7704827496990974, - 2.8117643990102876, - 2.833106364648593, - 2.8347910657194086, - 2.8168010295801853, - 2.7804265989937256, - 2.727363316363312, - 2.660203429086593, - 2.5822833450097398, - 2.496489076121765, - 2.405502116770395, - 2.3112369373216026, - 2.2148564837296165, - 2.1172362532587243, - 2.0191813417423266, - 1.9218500286943252, - 1.8268357224115739, - 1.7359882579475503, - 1.6508300190196759, - 1.5721002949607232, - 1.4990955242267803, - 1.4293535623440805, - 1.3590476173408559, - 1.2834253030006453, - 1.1979023290799382, - 1.0990232162770226, - 0.9857889005263002, - 0.8595603314652356, - 0.7245324069529049, - 0.5869244637409579, - 0.4537628992770814, - 0.3317814708564726, - 0.22643172782958615, - 0.14099495287639355, - 0.07611493138090594, - 0.03101278725864231, - 0.003062212414820427, - -0.010723116235307969, - -0.012913574654798688, - -0.005857441541699321, - 0.00911982310559908, - 0.030928977119094512, - 0.05835727136818872, - 0.08998547453000215, - 0.12358169118612322, - 0.15645592349027446, - 0.18578428094253432, - 0.20915941769398477, - 0.22494266361937618, - 0.23286212145460075, - 0.23381093147620718, - 0.22944258608909057, - 0.22195477248387555, - 0.2131441879786332, - 0.20409832480213938, - 0.1950078454053082, - 0.1852286501503733, - 0.1737256890624393, - 0.15958598293176657, - 0.14249241105285176, - 0.1230421486852758, - 0.1025562328410511, - 0.08287867042770836, - 0.06579105249494237, - 0.052529290391239214, - 0.04336775003318082, - 0.03776758140385382, - 0.03448083564909736, - 0.03209761206640916, - 0.02967390984980611, - 0.027014304664644433, - 0.024803579115899477, - 0.024377284001351616, - 0.02714540949511031, - 0.03409224160605157, - 0.04519194108637524, - 0.059376076257702595, - 0.07492861049888416, - 0.0900882028768754, - 0.10413867459499694, - 0.11827766334665167, - 0.13610661412650865, - 0.16366928944135015, - 0.20847684433163136, - 0.27851410825790746, - 0.3805887533670598, - 0.5179367010136449, - 0.6910671756890264 - ], - "pressure:branch109_seg2:RESISTANCE_61": [ - 7719.91627777104, - 8819.913428471586, - 10042.144366645956, - 11331.096734475363, - 12622.809609913775, - 13858.876196562382, - 14993.022500712887, - 15996.191688929785, - 16852.157707370872, - 17562.826315398746, - 18136.76774235205, - 18583.822280732245, - 18916.123433566278, - 19138.396414108418, - 19253.308061104268, - 19262.379005084975, - 19165.51516801822, - 18969.664148573018, - 18683.95526376799, - 18322.345963583753, - 17902.80048463986, - 17440.857995002087, - 16950.956477428423, - 16443.40402380725, - 15924.462289565836, - 15398.845218784349, - 14870.887692784088, - 14346.82624145551, - 13835.240260662664, - 13346.08982607376, - 12887.571915572353, - 12463.66708822572, - 12070.58715426991, - 11695.07517751557, - 11316.526543765538, - 10909.352957332856, - 10448.871202476443, - 9916.475925572875, - 9306.78786122654, - 8627.134777037205, - 7900.103281480167, - 7159.1801789794445, - 6442.197734699589, - 5785.4125500415785, - 5218.177428076922, - 4758.159794730883, - 4408.825986705645, - 4165.982297798585, - 4015.4878848556755, - 3941.263474301747, - 3929.4693786253933, - 3967.4617496745227, - 4048.103906881674, - 4165.531038465982, - 4313.213333521006, - 4483.509218091275, - 4664.401487070255, - 4841.406372272307, - 4999.319186660569, - 5125.178046541848, - 5210.159852574376, - 5252.800627027059, - 5257.909309334807, - 5234.388806510111, - 5194.072136136092, - 5146.633264119709, - 5097.927580035748, - 5048.981668624622, - 4996.327501146174, - 4934.392053102379, - 4858.259566196078, - 4766.222565905785, - 4661.496425819225, - 4551.194011797286, - 4445.244018994257, - 4353.239076564502, - 4281.833707854296, - 4232.505182571979, - 4202.352168011059, - 4184.655327226261, - 4171.823325165752, - 4158.7733738043125, - 4144.453248968336, - 4132.550028891636, - 4130.254726080774, - 4145.159157329978, - 4182.5630184738275, - 4242.327183127609, - 4318.698889528618, - 4402.438473543594, - 4484.0623388174745, - 4559.714360452265, - 4635.84298477131, - 4731.839489172209, - 4880.245332838067, - 5121.502863543579, - 5498.604836494318, - 6048.2058331784065, - 6787.729040321144, - 7719.91627777104 - ], - "flow:branch110_seg0:RESISTANCE_62": [ - 1.1123438853162642, - 1.4222569613330462, - 1.7535510908641865, - 2.0891889419094207, - 2.411420171854483, - 2.706129628676785, - 2.964090351212784, - 3.1818221270876506, - 3.3587726557090316, - 3.499090910040136, - 3.6074849384920475, - 3.687225639340346, - 3.7418216863344216, - 3.7717283706240514, - 3.776780861262943, - 3.7571106193040915, - 3.7122643079262603, - 3.644642798678092, - 3.557287117618314, - 3.454178654316661, - 3.340439409864605, - 3.219785584792988, - 3.0953181110084222, - 2.968862774187899, - 2.841093238055749, - 2.7126185167955916, - 2.5843090431163214, - 2.457884636513572, - 2.3358440548633106, - 2.2209519198068, - 2.115076304079138, - 2.0184746684101973, - 1.9289082953666055, - 1.8413208132837284, - 1.7489974083229067, - 1.6444506237192793, - 1.5214375399153515, - 1.3761692870202094, - 1.2095153858099243, - 1.0259439318376924, - 0.8339146192772774, - 0.6442773657045133, - 0.46785729668052495, - 0.31388582100219425, - 0.18860118796747624, - 0.09461669450815495, - 0.030116661224934546, - -0.008100282672781648, - -0.02536810416569626, - -0.026785291807347743, - -0.015763478237980074, - 0.004865620585546963, - 0.03405944823533498, - 0.07093980990302658, - 0.11395153727992945, - 0.16100183856217534, - 0.20848293633181883, - 0.25219612360825766, - 0.2880716502557126, - 0.31315622174339336, - 0.3259732567357962, - 0.3274121010181501, - 0.3200869066642488, - 0.30720266952995645, - 0.2924088347002063, - 0.2780717620644372, - 0.26501641634992606, - 0.2525678518225722, - 0.238910209111411, - 0.2220218159079398, - 0.20059127585014558, - 0.17460574179346827, - 0.14572054178542604, - 0.11658494074182484, - 0.09032901428587749, - 0.06950841308095539, - 0.05541120395123038, - 0.04754264105668524, - 0.044209787212224204, - 0.04292314942453838, - 0.041390292897584155, - 0.038570649896816266, - 0.03489288086086969, - 0.03219013849545244, - 0.03306057161737032, - 0.03971355199199879, - 0.05321871102343526, - 0.07269425844157464, - 0.0955659890285776, - 0.11868900474132618, - 0.13942807787772682, - 0.15757019387368335, - 0.17650621095680105, - 0.20356469605670038, - 0.2495772860771057, - 0.3267147698826101, - 0.4464087290553665, - 0.6171989450169112, - 0.8402797580444747, - 1.1123438853162642 - ], - "pressure:branch110_seg0:RESISTANCE_62": [ - 8552.225508666728, - 9820.811727206308, - 11176.918324604323, - 12550.805343921853, - 13869.81421810446, - 15076.166528898255, - 16132.09298976162, - 17023.34783374261, - 17747.67029492273, - 18322.04361902323, - 18765.73954961584, - 19092.147055400976, - 19315.628406022246, - 19438.047272691765, - 19458.728942778667, - 19378.211533881127, - 19194.639374560003, - 18917.840099706482, - 18560.26172796468, - 18138.201525663993, - 17672.625694293874, - 17178.745985611793, - 16669.255634546425, - 16151.628241688019, - 15628.621356113234, - 15102.727892965115, - 14577.510847883821, - 14060.010063584527, - 13560.453859070933, - 13090.158829817683, - 12656.771672625802, - 12261.346267305496, - 11894.718734359702, - 11536.191517260593, - 11158.278456323456, - 10730.330685143881, - 10226.79367786618, - 9632.158220780397, - 8949.983576656068, - 8198.559275301854, - 7412.513902190265, - 6636.260090972965, - 5914.108992625912, - 5283.848099461292, - 4771.01282027473, - 4386.300323818266, - 4122.27837814855, - 3965.842615687473, - 3895.1591819593446, - 3889.3581207895772, - 3934.4743868636674, - 4018.916743426254, - 4138.417630252131, - 4289.382278622939, - 4465.444822634361, - 4658.038709126457, - 4852.396001325508, - 5031.329874203874, - 5178.1813697030375, - 5280.861586027694, - 5333.3263421550555, - 5339.216051781636, - 5309.231384064744, - 5256.491545284679, - 5195.935033034271, - 5137.24821351152, - 5083.807965476288, - 5032.851492122622, - 4976.945824818095, - 4907.815528198921, - 4820.092583034432, - 4713.724401319162, - 4595.4868389648145, - 4476.224294680369, - 4368.749299158722, - 4283.523054142708, - 4225.81808263363, - 4193.609211113825, - 4179.966635880049, - 4174.699962441521, - 4168.425426723035, - 4156.883608939968, - 4141.8291711797465, - 4130.7658699434805, - 4134.328867274273, - 4161.5619202449425, - 4216.843416742811, - 4296.563870525239, - 4390.186129352584, - 4484.83698901066, - 4569.729510179072, - 4643.991747266385, - 4721.503708408588, - 4832.263866493792, - 5020.61002577633, - 5336.361623437811, - 5826.3122541132825, - 6525.41832932284, - 7438.568715439647, - 8552.225508666728 - ], - "flow:branch111_seg0:RESISTANCE_63": [ - 0.6527544807224976, - 0.8477847711076575, - 1.0645898388906003, - 1.2928132196168698, - 1.5208147314266687, - 1.7379776767348558, - 1.9359681323910487, - 2.1096136484043684, - 2.256399946115725, - 2.376993128968232, - 2.473289284149159, - 2.547543656962449, - 2.602094037557126, - 2.637970732319271, - 2.6556620510531936, - 2.6552584214050543, - 2.6366672782107945, - 2.6008943053905806, - 2.5494954190584194, - 2.484969652754556, - 2.410465436575845, - 2.3288634246556654, - 2.242765050512799, - 2.1539823916692216, - 2.063586044067756, - 1.9722837950194483, - 1.880715617159022, - 1.789874538602453, - 1.7012139583097683, - 1.6164892829323823, - 1.5372125247229358, - 1.4641537688865687, - 1.3966762548700964, - 1.332451367927839, - 1.267731780764638, - 1.1978468414229633, - 1.118253246225936, - 1.025541760454468, - 0.9186531471618662, - 0.7989668952865607, - 0.6706559151164907, - 0.5398699257711408, - 0.4136127785714504, - 0.29855553050813316, - 0.20001088436348666, - 0.12107475245721049, - 0.062304866913687224, - 0.02260181177758451, - -0.0008199610040350149, - -0.011062863501190689, - -0.01086603431354332, - -0.002507070964207152, - 0.012733878067904384, - 0.033907173728251534, - 0.060057382026792755, - 0.08994492632776983, - 0.1215587483099797, - 0.1523859323646395, - 0.17971677947935236, - 0.20120617576138713, - 0.21527957598528222, - 0.2216815915296501, - 0.22131341009428773, - 0.2159031818220313, - 0.20766409599749597, - 0.19844472289929344, - 0.18936780092697986, - 0.18061186129962495, - 0.17149379940894866, - 0.16090494289873886, - 0.14783782654921762, - 0.13188516334281836, - 0.11354816300805962, - 0.09411569125157908, - 0.07541737848469278, - 0.059248725106968894, - 0.0468687277863278, - 0.038593102529554016, - 0.03386978648292846, - 0.03141793881392168, - 0.02979047631473855, - 0.02796246637066475, - 0.0256786256946485, - 0.023593169328880576, - 0.02304309227671409, - 0.025489778685169478, - 0.03198132324561731, - 0.04257159220219982, - 0.056256978745021335, - 0.07131042167756185, - 0.08592445803504092, - 0.0992591753951329, - 0.1123311799124349, - 0.1285380457675311, - 0.15369954257064497, - 0.1951667430298294, - 0.26076988904266235, - 0.35714014256155724, - 0.4876939654503343, - 0.6527544807224976 - ], - "pressure:branch111_seg0:RESISTANCE_63": [ - 7715.603356577941, - 8826.05185335051, - 10060.479906227793, - 11359.920672866387, - 12658.098179299146, - 13894.563887758806, - 15021.86674632782, - 16010.55625628796, - 16846.316810807388, - 17532.941018540074, - 18081.224675168287, - 18504.00852328987, - 18814.6032930054, - 19018.875263729096, - 19119.604736341847, - 19117.30658083409, - 19011.453756780043, - 18807.77235008756, - 18515.12131649368, - 18147.72946134278, - 17723.523074245266, - 17258.903802585308, - 16768.683488844847, - 16263.179600922496, - 15748.487815818047, - 15228.63807859301, - 14707.274216310358, - 14190.050256231507, - 13685.241449791423, - 13202.84259663604, - 12751.46267606663, - 12335.486340112095, - 11951.288050412766, - 11585.609319075329, - 11217.113901593315, - 10819.208398372519, - 10366.02449568379, - 9838.150954578137, - 9229.556773036038, - 8548.096379284869, - 7817.529169607419, - 7072.8699426707, - 6353.996689506753, - 5698.892562335641, - 5137.806620453485, - 4688.366131782423, - 4353.746668680464, - 4127.688460972854, - 3994.3313689758415, - 3936.0111169878455, - 3937.1318079077646, - 3984.725431788016, - 4071.5031774841964, - 4192.0580630423365, - 4340.950111749526, - 4511.121517307607, - 4691.121870217156, - 4866.64332447754, - 5022.257603849823, - 5144.612278863686, - 5224.742324777273, - 5261.193629461886, - 5259.09730626701, - 5228.292963822261, - 5181.381889390863, - 5128.889330527998, - 5077.2078489511005, - 5027.3539520111635, - 4975.438231125015, - 4915.148212733093, - 4840.747668700563, - 4749.91761947036, - 4645.51181452161, - 4534.868698480795, - 4428.405680540522, - 4336.345843052342, - 4265.857564602849, - 4218.7384447569575, - 4191.84519041478, - 4177.885048362039, - 4168.6187273090245, - 4158.210544608412, - 4145.206987876062, - 4133.332976501324, - 4130.200990005888, - 4144.131745269481, - 4181.092803393557, - 4241.390863864214, - 4319.311667264628, - 4405.021805124134, - 4488.230083555622, - 4564.154273680951, - 4638.582649587973, - 4730.860058346606, - 4874.1226574351185, - 5110.225420366615, - 5483.751577404243, - 6032.457129461357, - 6775.794464848855, - 7715.603356577941 - ], - "flow:branch114_seg0:RESISTANCE_64": [ - 0.6020987223111337, - 0.7773469052173516, - 0.9690584328871749, - 1.1677475565990607, - 1.363008921269388, - 1.5458280897828496, - 1.7095603567605073, - 1.8506184029844943, - 1.9675179927325988, - 2.0616432300894463, - 2.1351811413055177, - 2.1901869927505087, - 2.228836831146828, - 2.2518514877895845, - 2.2595184503234815, - 2.251952087532916, - 2.2290203097708035, - 2.1918560045028155, - 2.1419961816391173, - 2.0817371777008646, - 2.0139938413126455, - 1.9411781210640706, - 1.865422212885608, - 1.7881188695739416, - 1.7099788945279828, - 1.6314999473542204, - 1.5531913963170751, - 1.4759500802972738, - 1.4011038296074172, - 1.3302083642950104, - 1.264479047425039, - 1.2043674266489182, - 1.148987674788886, - 1.0958859164679948, - 1.0414708787568907, - 0.9814768754251336, - 0.911998556598281, - 0.8303282650561543, - 0.7361188016346211, - 0.6311661838774896, - 0.5197147483048594, - 0.4076196034228167, - 0.30116590136173677, - 0.2060686375711199, - 0.12661839077999248, - 0.0650240520745202, - 0.02108752215403744, - -0.006561780568040155, - -0.02073803966056258, - -0.024344998401095417, - -0.01967769043873703, - -0.008663887653342726, - 0.007763965209066932, - 0.02888989498592903, - 0.05384007065897446, - 0.0814909185191493, - 0.10994838011141699, - 0.13691620219809383, - 0.16002614008045513, - 0.17736335664442954, - 0.18776573025177817, - 0.19133400939252657, - 0.1891861774611854, - 0.18302178621114296, - 0.1749066674897567, - 0.16640207440218435, - 0.1583189336223716, - 0.15060905341877465, - 0.14248789992283728, - 0.13289052132144039, - 0.1209644931275924, - 0.1064827572547322, - 0.09009488380421146, - 0.07309760297860325, - 0.05719561323736366, - 0.04394251576239575, - 0.03430847240665396, - 0.028337515403260783, - 0.025337353465375335, - 0.024032835169845904, - 0.023101390403085387, - 0.021743696767879135, - 0.019912842033057793, - 0.018378153708678045, - 0.018456670885084157, - 0.021444165660677625, - 0.028154031721114414, - 0.03841162349034417, - 0.05108370315099031, - 0.0645134343177342, - 0.07711315699775215, - 0.08837362641950178, - 0.09961406307831097, - 0.11434011285757696, - 0.13816780135622247, - 0.17783009449104267, - 0.24017974664123518, - 0.3307345588312212, - 0.4515501380941528, - 0.6020987223111337 - ], - "pressure:branch114_seg0:RESISTANCE_64": [ - 8121.222729973418, - 9321.045975220639, - 10633.584247889648, - 11993.894096779179, - 13330.736056250596, - 14582.393473871884, - 15703.373883819679, - 16669.11698016474, - 17469.46105685453, - 18113.882276363507, - 18617.353946202067, - 18993.947289960928, - 19258.560444653478, - 19416.12852646429, - 19468.61979750665, - 19416.81727489246, - 19259.816616982353, - 19005.37405093385, - 18664.01259723029, - 18251.453947767717, - 17787.654390127314, - 17289.12714536603, - 16770.470129412977, - 16241.21871748651, - 15706.239370548858, - 15168.939276932495, - 14632.805787398538, - 14103.97904056922, - 13591.549924854238, - 13106.16955825743, - 12656.158830802331, - 12244.609228857118, - 11865.456004579479, - 11501.898888378162, - 11129.350505541435, - 10718.606162409491, - 10242.92818055124, - 9683.77879244717, - 9038.780925645251, - 8320.230876530393, - 7557.187169607767, - 6789.736356261512, - 6060.90924857129, - 5409.833124623983, - 4865.883102662066, - 4444.182186116734, - 4143.374103317348, - 3954.075272535298, - 3857.0186017739366, - 3832.323835358841, - 3864.278201407599, - 3939.6833575772152, - 4052.155392419185, - 4196.7924505808905, - 4367.611915006045, - 4556.921324457588, - 4751.753152970208, - 4936.386278841771, - 5094.606696352832, - 5213.304620042423, - 5284.523673232389, - 5308.95362273373, - 5294.248656123685, - 5252.044624150597, - 5196.485086137752, - 5138.259041743905, - 5082.918438255793, - 5030.133334679015, - 4974.532480044986, - 4908.824763431703, - 4827.174125957706, - 4728.026031845446, - 4615.827712981126, - 4499.457133256067, - 4390.585379947033, - 4299.849064407014, - 4233.89032536477, - 4193.010626127736, - 4172.470247489361, - 4163.538963016849, - 4157.161897849666, - 4147.8665524918415, - 4135.331745950165, - 4124.824620025866, - 4125.362181852989, - 4145.815835736122, - 4191.754419168487, - 4261.982234606463, - 4348.740656236454, - 4440.6862808019505, - 4526.949315912814, - 4604.043256292445, - 4681.000043896833, - 4781.820814433929, - 4944.95525649821, - 5216.500104917167, - 5643.372217040075, - 6263.348794444503, - 7090.503393047364, - 8121.222729973418 - ], - "flow:branch115_seg2:RESISTANCE_65": [ - 0.6544619725817437, - 0.8469090431050385, - 1.0590755029092203, - 1.2807304549317, - 1.5005115932622741, - 1.7083186845918457, - 1.8964540041793725, - 2.060435544916889, - 2.198187237938986, - 2.310754561287791, - 2.400216316635493, - 2.4687067125981006, - 2.518500059531868, - 2.5504321521193454, - 2.564842416938936, - 2.561831750040347, - 2.5412597718209997, - 2.5042509449240566, - 2.452442891398898, - 2.3883160569762194, - 2.315025543369563, - 2.2353085300140965, - 2.151602634689997, - 2.065563625233831, - 1.9781115208395101, - 1.8898835583600333, - 1.8015007051667034, - 1.7139721361594118, - 1.6287658955349782, - 1.5476143214586169, - 1.4719294177989588, - 1.4023261590619651, - 1.3379928479031085, - 1.2764245169854247, - 1.2138100157037393, - 1.145529020265539, - 1.0672450031812266, - 0.9758345095288568, - 0.8706398502645418, - 0.7533646680761423, - 0.6283982615992849, - 0.5019710209119222, - 0.38093569200697197, - 0.2716545953233063, - 0.17902304928002666, - 0.1057422234729109, - 0.05194825301897202, - 0.01634898573961508, - -0.00392781428527088, - -0.011961447523666674, - -0.010297681299490633, - -0.0010670966840191458, - 0.014613907500942476, - 0.03589990447160402, - 0.061834873818796765, - 0.09118071824246864, - 0.12189496539573867, - 0.15147369178537867, - 0.17728638813470832, - 0.19714028238068082, - 0.2096323246971161, - 0.21469785814645528, - 0.2133961478990372, - 0.20748457975464585, - 0.19915801371492925, - 0.1901487487053225, - 0.181418443991256, - 0.1730047587555615, - 0.16413267521041527, - 0.15367833008612983, - 0.14069842492054108, - 0.12488815425699536, - 0.10686889410656289, - 0.08799459697464318, - 0.07009456809843083, - 0.054887735537327446, - 0.043505734440107996, - 0.03611085948624664, - 0.03204356013381665, - 0.029982167187192387, - 0.02850768546608938, - 0.02670354093620382, - 0.024442643569999572, - 0.022483219750703703, - 0.02220626391433402, - 0.025026844970452117, - 0.0318848032648915, - 0.04268967879159139, - 0.056310253308372124, - 0.07099633448316807, - 0.08501072941598227, - 0.09769848486529464, - 0.11032563874910703, - 0.12651977246432827, - 0.15223870248368795, - 0.19478530329752544, - 0.2617170718950026, - 0.3592895157232759, - 0.4902637373913385, - 0.6544619725817437 - ], - "pressure:branch115_seg2:RESISTANCE_65": [ - 7880.697563384439, - 9022.125722737796, - 10280.512098962168, - 11595.175934637187, - 12898.72594193588, - 14131.256346851429, - 15247.110960601722, - 16219.706426477074, - 17036.729314830103, - 17704.380489482865, - 18234.98958870886, - 18641.214876443337, - 18936.545577940156, - 19125.938898229826, - 19211.408019708742, - 19193.551369736688, - 19071.53633895801, - 18852.032258953364, - 18544.752075295048, - 18164.407628475445, - 17729.71222980487, - 17256.90044017328, - 16760.43008202747, - 16250.121725921577, - 15731.4321232222, - 15208.140807108051, - 14683.930814383588, - 14164.787690296738, - 13659.418592513593, - 13178.098239988944, - 12729.201408043546, - 12316.375589031946, - 11934.806502313775, - 11569.636866617382, - 11198.262260849448, - 10793.278954375026, - 10328.96644868522, - 9786.799133633387, - 9162.876171483973, - 8467.302084649898, - 7726.110364048377, - 6976.254249130625, - 6258.378251782136, - 5610.218107278123, - 5060.8085745129165, - 4626.17063541898, - 4307.11172476585, - 4095.9679229167823, - 3975.703631716878, - 3928.0551267264527, - 3937.9231367392404, - 3992.6709132512124, - 4085.676952236288, - 4211.9269194410745, - 4365.750535692321, - 4539.8044877431375, - 4721.974611189302, - 4897.4098159296955, - 5050.508215410899, - 5168.264198412121, - 5242.356097182216, - 5272.40042316494, - 5264.6798134010105, - 5229.617547565545, - 5180.231620709892, - 5126.796519052695, - 5075.015966544025, - 5025.113324608022, - 4972.4918637407345, - 4910.485807322153, - 4833.500331671872, - 4739.727596689217, - 4632.853062873292, - 4520.9071954937845, - 4414.739837596416, - 4324.546171085321, - 4257.0380685882, - 4213.1781205812895, - 4189.054448546379, - 4176.828063648073, - 4168.082724203089, - 4157.382112526564, - 4143.972441430111, - 4132.350848451999, - 4130.708188006868, - 4147.437414564785, - 4188.1128412764465, - 4252.197938290123, - 4332.9833057043925, - 4420.088329220105, - 4503.209495830312, - 4578.4621941928, - 4653.355456928784, - 4749.404932707373, - 4901.947192107377, - 5154.296516633997, - 5551.277386359608, - 6129.992015060769, - 6906.81685502745, - 7880.697563384439 - ], - "flow:branch116_seg0:RESISTANCE_66": [ - 0.3050339787828627, - 0.4014899628741598, - 0.5185163995479931, - 0.6537882663628916, - 0.8032459312281177, - 0.9617132085859441, - 1.1235608927959795, - 1.2833869581129909, - 1.4365143821664945, - 1.579440886035749, - 1.7097389068883064, - 1.8259807414789566, - 1.9274691885940751, - 2.01382604750567, - 2.084875850980981, - 2.1404570478292433, - 2.1804566199768356, - 2.204991173932925, - 2.2144250688625453, - 2.209574259553656, - 2.1916554085980513, - 2.1621638033825943, - 2.122774409541965, - 2.0751155882446377, - 2.0206628018612, - 1.9606999294247651, - 1.8963492057473195, - 1.8286860531615814, - 1.7588354413724294, - 1.6880170854433343, - 1.617476093043301, - 1.548336141726258, - 1.4813394915965479, - 1.4166212892098224, - 1.3535642651515978, - 1.290789614962065, - 1.2263508145428843, - 1.158096451271534, - 1.0841473777660804, - 1.0033025043495323, - 0.9154500969210064, - 0.8216593023868295, - 0.724102808161244, - 0.6257404432042991, - 0.5298970219596695, - 0.43971937478710904, - 0.3577917960595167, - 0.28592926845516453, - 0.2249974265258186, - 0.17513497464986472, - 0.13592407274016155, - 0.1066225633981601, - 0.08643494959113643, - 0.0745430206931165, - 0.0701376389241949, - 0.07234012166533679, - 0.08006216887035035, - 0.09196987665209752, - 0.10649338989553486, - 0.1219505447286366, - 0.1367285390165947, - 0.1495269224506811, - 0.15948887669524442, - 0.1662893262969122, - 0.1700904936674912, - 0.17135895833316245, - 0.17067169662070078, - 0.16850299084216847, - 0.16508555989197193, - 0.16038981127901292, - 0.15420089027247738, - 0.14628426827551028, - 0.13655782013071588, - 0.1252097128060695, - 0.11274422039309005, - 0.0998960893299297, - 0.0874741823304999, - 0.07616589733485768, - 0.06640046236156574, - 0.05825879311524688, - 0.0515347299304684, - 0.04587614586564679, - 0.04096501449581591, - 0.03668745921506512, - 0.03321511430922458, - 0.03096289301246837, - 0.03045172762569682, - 0.03208742530781307, - 0.03599430498783806, - 0.04192606233647043, - 0.049343898376093286, - 0.05767225337504748, - 0.06666441688537934, - 0.07679002723877941, - 0.08954209591166747, - 0.10749565263475819, - 0.13418891274398023, - 0.1736105500334109, - 0.22954711301644773, - 0.3050339787828627 - ], - "pressure:branch116_seg0:RESISTANCE_66": [ - 5727.198674153913, - 6273.679117040744, - 6936.703392263025, - 7703.098866670959, - 8549.865313126713, - 9447.676565890535, - 10364.639831369139, - 11270.149425015808, - 12137.707237039913, - 12947.47077706878, - 13685.686459730687, - 14344.265498113102, - 14919.257833216665, - 15408.520733273286, - 15811.060072185215, - 16125.96056649844, - 16352.581901695334, - 16491.584722912365, - 16545.0333412418, - 16517.55062521899, - 16416.029691100764, - 16248.942230105795, - 16025.777917452082, - 15755.762386374454, - 15447.255007598682, - 15107.52971844697, - 14742.944645715212, - 14359.592695698564, - 13963.847489985654, - 13562.619438898457, - 13162.962816952018, - 12771.243924932332, - 12391.668107218797, - 12025.001049323653, - 11667.745553367607, - 11312.089873102388, - 10947.005793312803, - 10560.304283594327, - 10141.338857850695, - 9683.304629637467, - 9185.568558905212, - 8654.187997931087, - 8101.472511451544, - 7544.1912886070495, - 7001.181378097203, - 6490.271443067063, - 6026.103046160519, - 5618.959142314986, - 5273.744065436582, - 4991.24365821661, - 4769.090608372397, - 4603.080153413861, - 4488.7053301405995, - 4421.3304893550085, - 4396.371384921558, - 4408.849757882749, - 4452.599742047489, - 4520.063979581751, - 4602.348308794899, - 4689.92227217874, - 4773.648387665971, - 4846.158831815035, - 4902.599219820764, - 4941.127806151204, - 4962.663677126247, - 4969.850282901024, - 4965.956537079617, - 4953.669530674479, - 4934.307754452997, - 4907.703549375723, - 4872.639635772997, - 4827.787269838133, - 4772.6811637737155, - 4708.387395220899, - 4637.762976437304, - 4564.970682420397, - 4494.593200893463, - 4430.525049488157, - 4375.198059882868, - 4329.070667606664, - 4290.974855699976, - 4258.915615882058, - 4231.091139553868, - 4206.8562481023955, - 4187.183351704349, - 4174.423180281854, - 4171.52712474333, - 4180.794323685656, - 4202.929117684801, - 4236.536046415211, - 4278.5624936324, - 4325.747571585047, - 4376.69351904421, - 4434.061116115097, - 4506.309159631891, - 4608.026722537495, - 4759.2598963421815, - 4982.606887285335, - 5299.520741832749, - 5727.198674153913 - ], - "flow:branch117_seg0:RESISTANCE_67": [ - 0.6857555203684889, - 0.8816230469116908, - 1.093683567067095, - 1.3113830738617056, - 1.5232559147436373, - 1.7196759047817927, - 1.8938664002075096, - 2.042633039293314, - 2.1647620080415204, - 2.2622558883527883, - 2.337876499289433, - 2.3937365270532327, - 2.4322513992777575, - 2.4540167683875005, - 2.4591350778528778, - 2.447790836220478, - 2.4197424439073645, - 2.3763975056833697, - 2.319621652684539, - 2.2519515468894626, - 2.1767227246008582, - 2.0964965637766957, - 2.0134868064748592, - 1.929106408548568, - 1.8439798884470087, - 1.7585928933833912, - 1.6735043887002061, - 1.5897493754893894, - 1.5088520339491795, - 1.4325543832581475, - 1.36211600680432, - 1.297867312417792, - 1.2386122467677345, - 1.1813504755335769, - 1.1219436144411719, - 1.0556153959750372, - 0.9781866780567571, - 0.8869066187708061, - 0.781861105726319, - 0.6654729044280682, - 0.542785759524467, - 0.42056151918028867, - 0.30574575213120664, - 0.2044611205951611, - 0.12108819437368001, - 0.05768913948453926, - 0.013515733602733697, - -0.013198222555045927, - -0.025734858498291727, - -0.027394415386883246, - -0.020525030870799287, - -0.007152512210256039, - 0.01186067072026456, - 0.03584249320506336, - 0.06378158134601936, - 0.09441928931573305, - 0.12557277090248437, - 0.15463916838074956, - 0.17902654517509284, - 0.1967463468387999, - 0.2066737256416717, - 0.2091368784523666, - 0.20561003206587228, - 0.19803409009238493, - 0.18873332764390444, - 0.17934813221634885, - 0.17059990238271977, - 0.16226949443462763, - 0.15335859178210617, - 0.1426382264373393, - 0.12921625078490223, - 0.11295257202695246, - 0.09472923932763815, - 0.07609264718365129, - 0.05897542185702581, - 0.04505322353120391, - 0.03528079665926175, - 0.029522979069349326, - 0.026870651274827583, - 0.025834490477944373, - 0.0249385032421938, - 0.023407406713264783, - 0.021340181733319134, - 0.019730696904343557, - 0.02012608066658708, - 0.02394093292642561, - 0.03197201605828612, - 0.04385722481902458, - 0.05815050220047164, - 0.07295462544342139, - 0.0865511697440322, - 0.09857875136336007, - 0.11083121817975536, - 0.1275587651286069, - 0.15529837165862087, - 0.20163301613658738, - 0.2740068793055599, - 0.3782630937919271, - 0.5159014951647243, - 0.6857555203684889 - ], - "pressure:branch117_seg0:RESISTANCE_67": [ - 8462.537087047149, - 9737.425794328705, - 11117.713620380084, - 12534.70523553686, - 13913.771469675768, - 15192.256125113368, - 16326.050478130039, - 17294.362640630803, - 18089.291978009696, - 18723.87316270894, - 19216.082691375224, - 19579.671898026056, - 19830.36264052954, - 19972.031980912558, - 20005.34671691266, - 19931.507802391883, - 19748.94268172853, - 19466.81336077957, - 19097.263108566007, - 18656.802889246992, - 18167.14348684126, - 17644.956740174413, - 17104.651749112232, - 16555.42534935768, - 16001.34248997304, - 15445.56421637902, - 14891.728796824975, - 14346.572984602395, - 13820.017567280756, - 13323.401231868693, - 12864.922522890745, - 12446.732042944586, - 12061.044760423953, - 11688.331698724747, - 11301.656389762564, - 10869.930425847215, - 10365.95204905625, - 9771.816212261565, - 9088.081952200464, - 8330.518888456847, - 7531.956419594928, - 6736.406965732345, - 5989.078771967367, - 5329.823839588381, - 4787.155006174896, - 4374.494773225758, - 4086.9730113758824, - 3913.0936469226017, - 3831.4935171133416, - 3820.691571667372, - 3865.403938745733, - 3952.444773585081, - 4076.2003171169627, - 4232.296405148979, - 4414.150072223252, - 4613.5688763350345, - 4816.344816626969, - 5005.536065224393, - 5164.271879292432, - 5279.608890153935, - 5344.225538722762, - 5360.258036595609, - 5337.302027961547, - 5287.9907253710735, - 5227.452680990037, - 5166.365067962045, - 5109.42342163387, - 5055.2013501781985, - 4997.200877287765, - 4927.422732042432, - 4840.059984931181, - 4734.200781247454, - 4615.586320354334, - 4494.281981212949, - 4382.867099664956, - 4292.248436431827, - 4228.6403596788605, - 4191.163107816248, - 4173.899282551681, - 4167.1549808178115, - 4161.323059473389, - 4151.357253967291, - 4137.901824020041, - 4127.425794280883, - 4129.9993209007525, - 4154.829940615261, - 4207.103726743815, - 4284.463760334718, - 4377.497752468328, - 4473.856806348953, - 4562.355809184313, - 4640.642538245582, - 4720.393030102225, - 4829.271520998516, - 5009.826775530451, - 5311.415895704673, - 5782.492559023398, - 6461.089327249174, - 7356.96853037865, - 8462.537087047149 - ], - "flow:branch119_seg2:RESISTANCE_68": [ - 1.0340403151052706, - 1.3325289863406067, - 1.6572488954103797, - 1.991847702717776, - 2.318715262286743, - 2.6229344974132744, - 2.893832904640563, - 3.1260511403673124, - 3.3177115776403805, - 3.471728503616374, - 3.5921089865196225, - 3.682364969956129, - 3.746049005377527, - 3.7841017807235815, - 3.7967198702837512, - 3.783884787774154, - 3.7452505306632133, - 3.682728324677207, - 3.5990179380459018, - 3.498106361104161, - 3.3849624054142713, - 3.2636463228868737, - 3.13766059599679, - 3.009192234829945, - 2.8792824343607766, - 2.7486529015460373, - 2.6181226903462216, - 2.489246622549086, - 2.3643463226943444, - 2.246123580598875, - 2.1366371677365854, - 2.0365689408952665, - 1.9442418560662096, - 1.855281603198556, - 1.7634205469237032, - 1.661341392237271, - 1.5425079545163953, - 1.4025760568337116, - 1.241356389371039, - 1.0623550300611653, - 0.873187057558754, - 0.6840563869674275, - 0.5056819065977154, - 0.3475831821914671, - 0.21665980005674565, - 0.11615697819939942, - 0.04526388020279485, - 0.0012505069695239834, - -0.020905563198658415, - -0.026148813090709065, - -0.018257974777525887, - -0.0002729825394868282, - 0.02648805263062326, - 0.06099537285413122, - 0.10189008892095008, - 0.14729459596463054, - 0.19394560822554713, - 0.2379009480600896, - 0.27513349465753534, - 0.30246441162198384, - 0.3180598590186088, - 0.3222855530445061, - 0.31723310565582225, - 0.3059060721119136, - 0.2918388656504942, - 0.27760068079780137, - 0.2643960681531517, - 0.25193336102094843, - 0.23869461615182283, - 0.2227607696500617, - 0.20267416800534482, - 0.17813526159774296, - 0.15038218189672203, - 0.12175666069844444, - 0.09524081820207966, - 0.07346693879739888, - 0.057988257919725984, - 0.048722275296977355, - 0.04433237102530931, - 0.04252680245725257, - 0.0410299712580617, - 0.03855144272911754, - 0.035148977878491944, - 0.03229344012864368, - 0.032350023211917864, - 0.03756101790863559, - 0.04925037324697046, - 0.06697796679119325, - 0.0886432249874141, - 0.11130564673101329, - 0.13224749008501002, - 0.15072437083738444, - 0.1692315128460395, - 0.19404722890330922, - 0.23501202906214566, - 0.303733065198584, - 0.4118101859634009, - 0.5683000338575567, - 0.7762155288390095, - 1.0340403151052706 - ], - "pressure:branch119_seg2:RESISTANCE_68": [ - 8231.700697939692, - 9453.522699083116, - 10782.71863629821, - 12152.352474100386, - 13490.33952094059, - 14735.618791039122, - 15844.503870848566, - 16795.05703021438, - 17579.59246346831, - 18210.03940112639, - 18702.800221531183, - 19072.250579031057, - 19332.932350561732, - 19488.69611181255, - 19540.34651238959, - 19487.80788125222, - 19329.66390499805, - 19073.73792121593, - 18731.08105693008, - 18318.01350442558, - 17854.874405088343, - 17358.283837308838, - 16842.57872760641, - 16316.711298618675, - 15784.943537649831, - 15250.229652088992, - 14715.922325791546, - 14188.386006226357, - 13677.123941638263, - 13193.195534138122, - 12745.028079380863, - 12335.41266361275, - 11957.484539645064, - 11593.338075623036, - 11217.317574944145, - 10799.470704783795, - 10313.042499391713, - 9740.250672677268, - 9080.320311140651, - 8347.60305881, - 7573.2701846055015, - 6799.090000603474, - 6068.9387903204915, - 5421.7835765805185, - 4885.866859559823, - 4474.4724893343355, - 4184.281419425434, - 4004.1187769426024, - 3913.425974839506, - 3891.963458191598, - 3924.263511049923, - 3997.8825838136754, - 4107.425171841862, - 4248.676103996476, - 4416.072955656413, - 4601.930011562234, - 4792.889463792365, - 4972.814554601715, - 5125.2208231648865, - 5237.09614332489, - 5300.933945503479, - 5318.231238260266, - 5297.549745212087, - 5251.184103479821, - 5193.601943734678, - 5135.319907644768, - 5081.268656121423, - 5030.254291975164, - 4976.0633249221155, - 4910.840332913334, - 4828.618613354774, - 4728.172001398877, - 4614.568616594168, - 4497.394013452604, - 4388.855087647379, - 4299.726730457877, - 4236.366895839204, - 4198.437880363234, - 4180.468415727142, - 4173.0775710699745, - 4166.950500037092, - 4156.804987061366, - 4142.87746882288, - 4131.188720859949, - 4131.4203358681525, - 4152.75082034497, - 4200.599576120027, - 4273.165023009575, - 4361.848754338612, - 4454.614236428516, - 4540.336769375968, - 4615.969319590764, - 4691.725740063525, - 4793.305433950786, - 4960.989165126795, - 5242.2892008881945, - 5684.6879137913575, - 6325.257414541081, - 7176.330673353895, - 8231.700697939692 - ], - "flow:branch121_seg0:RESISTANCE_69": [ - 0.7737524978955908, - 1.000510253428796, - 1.2488967274531673, - 1.5063154977158413, - 1.7591498289728893, - 1.9956050770152085, - 2.2069833186031693, - 2.388505690651667, - 2.538460723605428, - 2.6587598674795614, - 2.7522689945354597, - 2.821978023017432, - 2.8707052395483306, - 2.8994361637444643, - 2.908597802865394, - 2.8981541684272543, - 2.8679632135678963, - 2.8193992729729023, - 2.754378205751046, - 2.6759848737177667, - 2.587956696807708, - 2.4935027686018434, - 2.395439771383652, - 2.295547429997358, - 2.1947428028565286, - 2.0936070295383105, - 1.9927359896845342, - 1.8932462910214636, - 1.7968378432841725, - 1.7055338402732343, - 1.6209639623463772, - 1.5437728666760608, - 1.472833747237782, - 1.4050121412866372, - 1.3356028894921703, - 1.259007976867091, - 1.1700523843972588, - 1.0651771468912437, - 0.9438268129816237, - 0.8083240677105596, - 0.664258678374341, - 0.5192578353557883, - 0.3816096885680446, - 0.2588319219734491, - 0.1565614467300979, - 0.07761559579778429, - 0.021781902587615982, - -0.012872792353626386, - -0.03012777397005226, - -0.033782756740742464, - -0.026968719109920138, - -0.012163416355973847, - 0.009436362520325484, - 0.0369287151186189, - 0.06930853009405855, - 0.10514821159031704, - 0.14203519798127473, - 0.17701077516879485, - 0.20697267312328174, - 0.22938237354427454, - 0.2427190104144446, - 0.24710815905940794, - 0.2439744259682891, - 0.23562313262353712, - 0.22477683796797707, - 0.21351468048038322, - 0.2029445299685849, - 0.19300172277466554, - 0.18263662628008281, - 0.17041474847023189, - 0.1551623362224975, - 0.13654212575564542, - 0.1153598320066919, - 0.0933162255069752, - 0.07266430111820604, - 0.05546993813441172, - 0.043031351733715174, - 0.03544344225920192, - 0.031790978516670426, - 0.030368117904738996, - 0.02941949680427388, - 0.027838841681106594, - 0.025528052979367607, - 0.02348770657776656, - 0.023458110828353376, - 0.02718587906040247, - 0.03578417011016943, - 0.049062797331440054, - 0.06557848774582214, - 0.08311456859520683, - 0.09953602697839926, - 0.11408398170677905, - 0.12837462443787911, - 0.14690567903550295, - 0.17696098447586628, - 0.22734447508311917, - 0.30709156659358383, - 0.4233894071865862, - 0.5791825827450817, - 0.7737524978955908 - ], - "pressure:branch121_seg0:RESISTANCE_69": [ - 8210.700176336124, - 9444.99109179325, - 10797.011743478583, - 12198.197113550023, - 13574.428402541385, - 14861.50484182135, - 16012.081776682202, - 17000.146834236006, - 17816.384119997983, - 18471.198064826294, - 18980.18822380023, - 19359.629360789448, - 19624.862012074856, - 19781.25057150732, - 19831.119330840687, - 19774.2723970675, - 19609.936578765468, - 19345.592673286912, - 18991.669111128907, - 18564.957454305684, - 18085.80127810853, - 17571.668364596488, - 17037.890517288484, - 16494.15515879139, - 15945.454034001199, - 15394.950409810368, - 14845.887786432984, - 14304.344098312411, - 13779.572317362074, - 13282.585119741094, - 12822.253203855851, - 12402.085576442109, - 12015.94879154006, - 11646.781298678048, - 11268.971910253224, - 10852.049434543134, - 10367.845137290149, - 9796.986810501288, - 9136.451013698526, - 8398.880617862233, - 7614.70192077044, - 6825.431349404179, - 6076.1830746974665, - 5407.877456786049, - 4851.197407561157, - 4421.47827231192, - 4117.563549996549, - 3928.9306406465103, - 3835.0080887785307, - 3815.11323658524, - 3852.203499388073, - 3932.7919257764815, - 4050.364137497348, - 4200.010887073015, - 4376.261138687962, - 4571.344183057002, - 4772.12793174904, - 4962.507471729553, - 5125.596484355017, - 5247.577272102303, - 5320.171436270553, - 5344.062510189195, - 5327.00493137898, - 5281.547057254646, - 5222.50835788029, - 5161.206028252366, - 5103.670440457147, - 5049.549616387697, - 4993.130181422764, - 4926.603889014135, - 4843.581750115655, - 4742.2279659017795, - 4626.928214934501, - 4506.940154625236, - 4394.52731741124, - 4300.93472571326, - 4233.22884213981, - 4191.926229535978, - 4172.045088951203, - 4164.3001546130645, - 4159.13660726818, - 4150.532763688902, - 4137.954647031368, - 4126.8486055997955, - 4126.6875096119165, - 4146.978548623697, - 4193.7808840332555, - 4266.059289287429, - 4355.957721175855, - 4451.410356232243, - 4540.795863040031, - 4619.983489136865, - 4697.770511051788, - 4798.63900081922, - 4962.236450348999, - 5236.484555333638, - 5670.565014253512, - 6303.599010350741, - 7151.6145537657885, - 8210.700176336124 - ], - "flow:branch122_seg0:RESISTANCE_70": [ - 0.40669613690151274, - 0.5338945168640119, - 0.6837502753274475, - 0.8516980247254117, - 1.0313886904076925, - 1.2157552673258507, - 1.3979100554895385, - 1.5719440592353935, - 1.733316958536805, - 1.8792870771478762, - 2.0083746237879447, - 2.1201220752813867, - 2.2146630237693308, - 2.2920914576767646, - 2.3525007011859045, - 2.3958136700436667, - 2.421951356746806, - 2.4312289778930674, - 2.424301378214357, - 2.4024700119780156, - 2.367517230955502, - 2.3214369292799635, - 2.2663093125600393, - 2.203968568766837, - 2.135928809276038, - 2.0634206565679882, - 1.987499155829707, - 1.9092531923349718, - 1.8299268157172337, - 1.7509317634880162, - 1.6736693527701725, - 1.599278639150803, - 1.5282426752097942, - 1.4601263751595859, - 1.3934864455012161, - 1.3259879903020098, - 1.2548143274113155, - 1.1772481878507655, - 1.0913549358947885, - 0.996403509816896, - 0.893305577148526, - 0.7844840171174478, - 0.6735561991050808, - 0.5647424521282024, - 0.4622405459770317, - 0.3695109019447052, - 0.2889038822266439, - 0.22163008777856386, - 0.16764731279288764, - 0.1262047782143772, - 0.09613511365769076, - 0.07615059879409233, - 0.06518671650444322, - 0.06228148609070622, - 0.06653425349941376, - 0.07693115766559802, - 0.0921141754574674, - 0.11039181509504174, - 0.12980889182235658, - 0.14838518047889449, - 0.1643844426373381, - 0.1766508352034836, - 0.18469094098208894, - 0.18869949495271066, - 0.18940568683975076, - 0.18772460850042855, - 0.18448998725680543, - 0.18019939196402848, - 0.17491087075005446, - 0.16832713838522428, - 0.15999115845962386, - 0.14956442226049999, - 0.13705440433659802, - 0.12290712056278032, - 0.10798834306873625, - 0.09337157969400325, - 0.08007410355046492, - 0.06878482492768492, - 0.05974594567546439, - 0.05270528039880208, - 0.04710838479556277, - 0.04235910331176264, - 0.03807622619357271, - 0.034285196020040515, - 0.03144096743204137, - 0.03026391084148679, - 0.031481898983509116, - 0.03549267482290311, - 0.04219325631026966, - 0.050957134013545784, - 0.06086320001561927, - 0.07116043741287159, - 0.08180648239525073, - 0.09394526041623928, - 0.11019308093184266, - 0.13449323723718792, - 0.171771837719908, - 0.227047322943229, - 0.3044559220036642, - 0.40669613690151274 - ], - "pressure:branch122_seg0:RESISTANCE_70": [ - 6283.399079387483, - 6997.8682757257775, - 7839.603236089281, - 8782.960325814523, - 9792.276997436931, - 10827.858111608304, - 11851.015679706667, - 12828.559063737937, - 13734.9854326009, - 14554.894879279429, - 15279.975463893814, - 15907.657293528047, - 16438.690750928643, - 16873.603766046344, - 17212.92053780165, - 17456.208086432016, - 17603.022629340816, - 17655.134727987475, - 17616.222624103284, - 17493.59654431795, - 17297.26790102622, - 17038.436333243248, - 16728.786288757285, - 16378.620342224069, - 15996.44320838971, - 15589.167254021673, - 15162.718633895625, - 14723.213581462718, - 14277.639883376205, - 13833.927223690209, - 13399.946755471889, - 12982.09651720366, - 12583.089799641597, - 12200.482739954532, - 11826.168405125003, - 11447.031760031952, - 11047.25159191221, - 10611.565088583877, - 10129.10546359524, - 9595.766366815487, - 9016.668605354796, - 8405.4214136641, - 7782.343438848523, - 7171.140132831187, - 6595.390233087487, - 6074.53081437441, - 5621.763785311875, - 5243.889052409474, - 4940.669547007773, - 4707.888167376523, - 4538.987831725142, - 4426.735456513953, - 4365.151683430187, - 4348.833097930181, - 4372.720755254189, - 4431.119830511357, - 4516.402351585488, - 4619.067263722487, - 4728.132357229916, - 4832.474771270864, - 4922.342110616845, - 4991.242041899678, - 5036.403056653236, - 5058.918974974784, - 5062.885632019809, - 5053.443069225917, - 5035.274306061861, - 5011.17417073351, - 4981.468717702739, - 4944.488105426125, - 4897.66517513494, - 4839.098534311247, - 4768.830167254189, - 4689.3653307426775, - 4605.567038896021, - 4523.4651506133905, - 4448.77365614308, - 4385.36214235466, - 4334.591049224096, - 4295.043859524142, - 4263.606277498217, - 4236.929716633879, - 4212.872934043164, - 4191.578839871711, - 4175.60289965872, - 4168.991410765969, - 4175.832810862705, - 4198.36120934946, - 4235.998159377357, - 4285.224577680112, - 4340.8666308058055, - 4398.705881037517, - 4458.5043722210075, - 4526.687496721035, - 4617.950980339729, - 4754.444174289946, - 4963.836870449738, - 5274.317487548467, - 5709.119090970521, - 6283.399079387483 - ], - "flow:branch123_seg2:RESISTANCE_71": [ - 0.879416642367815, - 1.1263363671553672, - 1.3911672944050846, - 1.6605011293051526, - 1.9200838414995132, - 2.1583646341132723, - 2.3675815742612762, - 2.5445460303841934, - 2.6884055327393113, - 2.8022581725236817, - 2.889780051185617, - 2.9535957624592273, - 2.996635005735074, - 3.019353702255103, - 3.0217145774621006, - 3.00388417265408, - 2.9655229155987373, - 2.908607758898605, - 2.835599107393908, - 2.749772521021314, - 2.6553739683415047, - 2.555490003389294, - 2.4527364173811947, - 2.3486807764997946, - 2.243918815804349, - 2.1389687349848643, - 2.0345197923351193, - 1.9319266814346983, - 1.8331682151213702, - 1.7404449903565535, - 1.6552419321946654, - 1.5777717955974815, - 1.5062454312854812, - 1.4365966883723436, - 1.3634252236701296, - 1.28068901646292, - 1.1833199245757635, - 1.0682222688947502, - 0.9360582942309538, - 0.7903808218332845, - 0.6379842910447315, - 0.48760121100670617, - 0.34791967371298965, - 0.22633735753284914, - 0.12785878702917391, - 0.05454035580588557, - 0.004862828664599411, - -0.023737063420270384, - -0.0355870043797876, - -0.03483088978481705, - -0.024227787524166648, - -0.006124372039263612, - 0.018611594910302072, - 0.04925885597749905, - 0.08455833892912665, - 0.12287849936873664, - 0.16137896620729952, - 0.19674697493221313, - 0.22576783139994924, - 0.24609937669739557, - 0.2565519718613612, - 0.2578257807588775, - 0.25199796773316235, - 0.24162361675287464, - 0.2296418799518993, - 0.21797365564985724, - 0.2073204080433627, - 0.19719220995944306, - 0.1861747689790728, - 0.17267231701337726, - 0.1556329082326358, - 0.13502615896561726, - 0.11214879434705885, - 0.0890796508035763, - 0.06829642015139152, - 0.0518344939279454, - 0.04073105103120577, - 0.03460264127073759, - 0.032125152204440496, - 0.03132610069324917, - 0.030367919651208518, - 0.028405250926253907, - 0.02574915108590276, - 0.023825756108870246, - 0.024681060972701938, - 0.03006587844978987, - 0.0408462263018324, - 0.05634503725675243, - 0.07454262601975795, - 0.09295886358547066, - 0.10949042412930912, - 0.1239367522856161, - 0.1389413745053485, - 0.16026991150734377, - 0.1964832373529956, - 0.2572245621259221, - 0.3516429716468033, - 0.48665226647005333, - 0.66333181088939, - 0.879416642367815 - ], - "pressure:branch123_seg2:RESISTANCE_71": [ - 8656.35154042305, - 9964.027453291617, - 11366.560300131081, - 12792.940346206258, - 14167.678878843608, - 15429.603390011504, - 16537.607027351543, - 17474.802939524743, - 18236.676484576295, - 18839.635016101547, - 19303.147004354778, - 19641.112181364737, - 19869.0461051869, - 19989.36331450087, - 20001.86640490459, - 19907.437371727086, - 19704.277855484346, - 19402.857709491793, - 19016.20712867712, - 18561.673333210838, - 18061.742784303697, - 17532.761735251435, - 16988.58330033997, - 16437.50924055887, - 15882.694542364201, - 15326.883568334762, - 14773.726599829391, - 14230.39803397196, - 13707.377575801207, - 13216.319489239786, - 12765.08787152717, - 12354.809463506355, - 11976.009009932463, - 11607.152356024202, - 11219.639523735392, - 10781.472239286742, - 10265.809846465465, - 9656.257765961569, - 8956.323216927392, - 8184.8217831480115, - 7377.73651408582, - 6581.314390912348, - 5841.567163554944, - 5197.672608608659, - 4676.134466233907, - 4287.843305766689, - 4024.753324966544, - 3873.2895647416262, - 3810.5328029033094, - 3814.5371522685214, - 3870.690711648455, - 3966.565597264125, - 4097.566181317469, - 4259.87271688262, - 4446.817213245856, - 4649.759083634102, - 4853.655848715552, - 5040.96325453535, - 5194.6564234643465, - 5302.33138576127, - 5357.687866231368, - 5364.433901665812, - 5333.57006231484, - 5278.627959571776, - 5215.173212801556, - 5153.378814323039, - 5096.9596874151985, - 5043.321199495699, - 4984.973320629898, - 4913.464933783135, - 4823.2249804895355, - 4714.092550173622, - 4592.935041645942, - 4470.761880436262, - 4360.694812530539, - 4273.513181252028, - 4214.709840050872, - 4182.2540537225495, - 4169.133381491203, - 4164.901640121714, - 4159.827155813416, - 4149.432949280212, - 4135.366362309935, - 4125.18014780414, - 4129.709804434667, - 4158.227559004659, - 4215.319803176686, - 4297.40081870224, - 4393.774441822645, - 4491.306019306251, - 4578.85643085764, - 4655.36354415388, - 4734.82735805258, - 4847.782344205397, - 5039.5665120112035, - 5361.249874446601, - 5861.28558430351, - 6576.288822726993, - 7511.975855152381, - 8656.35154042305 - ], - "flow:branch125_seg0:RESISTANCE_72": [ - 0.7100692683589616, - 0.9239799569631025, - 1.1622671280419359, - 1.4134164505793936, - 1.6644174021707159, - 1.9033511643312742, - 2.1208172614491994, - 2.3109182251772635, - 2.470819884374434, - 2.6012681689754853, - 2.7044230577858954, - 2.782990056485977, - 2.8397241754599505, - 2.875940867940053, - 2.8923454046599253, - 2.889073466228491, - 2.8660846459710525, - 2.824466631678646, - 2.7658602021764236, - 2.693039004846554, - 2.6094582612621955, - 2.5183142625794233, - 2.422527435045483, - 2.3241205470061987, - 2.2242917186997264, - 2.123802240519475, - 2.023302730056372, - 1.9238201449670531, - 1.8268928963836994, - 1.7344153387140304, - 1.6480537561330244, - 1.5686989618055553, - 1.4957024944438657, - 1.426557678785229, - 1.3571554877166638, - 1.2823175367145614, - 1.1969320062874742, - 1.0971197986137897, - 0.981538466889763, - 0.8515580487192714, - 0.7117052870507122, - 0.5687348027173293, - 0.4304435236909739, - 0.3043238204099958, - 0.1964377936679695, - 0.11032658053702371, - 0.04673948774727624, - 0.00451883076888953, - -0.019471322581720137, - -0.028723737230163218, - -0.026407502963911776, - -0.015167212335063828, - 0.003503598793347251, - 0.028499240780218787, - 0.058772415969262935, - 0.09298766544613096, - 0.12896799461426298, - 0.1639725264428156, - 0.1950134943870959, - 0.21946927378084802, - 0.23556143495608423, - 0.242965332064461, - 0.24263776742636528, - 0.23651816454777208, - 0.22710083732071734, - 0.21650808966458612, - 0.20608003838193859, - 0.19609571364230324, - 0.18584701324826394, - 0.17411431213959683, - 0.15974247385085447, - 0.14222522553568445, - 0.1220516846212584, - 0.10060168911952785, - 0.07989251166983609, - 0.061940039634696034, - 0.048189745576268074, - 0.03905126849373778, - 0.03396047278648517, - 0.03150516127327761, - 0.030054995022583655, - 0.0284134348644549, - 0.026223374160301162, - 0.024149440341056327, - 0.023644291050417352, - 0.026345387366507187, - 0.03346657237843587, - 0.04513715306951012, - 0.06031394628040039, - 0.07709535776784271, - 0.09344070456607192, - 0.10831980844490285, - 0.12271672275233796, - 0.14024745360036087, - 0.16724263304715067, - 0.21178705893745056, - 0.2826400893363925, - 0.3872248672489781, - 0.5295056574661129, - 0.7100692683589616 - ], - "pressure:branch125_seg0:RESISTANCE_72": [ - 7767.211786589459, - 8902.397907147068, - 10166.94570081161, - 11499.750653160536, - 12831.768227188893, - 14099.747365151563, - 15253.801408691876, - 16262.633538291904, - 17111.203309906614, - 17803.469241524937, - 18350.893957930508, - 18767.83509836716, - 19068.91301477041, - 19261.10858435224, - 19348.164553925788, - 19330.800956440682, - 19208.80336083417, - 18987.943933480652, - 18676.929996867697, - 18290.48080617656, - 17846.93261004864, - 17363.247559283012, - 16854.92383848942, - 16332.695920855109, - 15802.922018183273, - 15269.642163695018, - 14736.309069659346, - 14208.372618388434, - 13693.996885162305, - 13203.234873152953, - 12744.92925722007, - 12323.807424982171, - 11936.428107289103, - 11569.488822691428, - 11201.18369239885, - 10804.031947327461, - 10350.906067224047, - 9821.220367305325, - 9207.85072025843, - 8518.067672883582, - 7775.893847892552, - 7017.1748211635895, - 6283.287507868112, - 5613.992590313259, - 5041.46056323771, - 4584.483613612127, - 4247.038179479982, - 4022.9806341771214, - 3895.6691412761834, - 3846.5682162167836, - 3858.8600610430813, - 3918.5102916891765, - 4017.592977976759, - 4150.240420902967, - 4310.894797381595, - 4492.4690635905845, - 4683.410294958147, - 4869.173142750787, - 5033.902059332559, - 5163.684547137932, - 5249.082795047414, - 5288.3739650694015, - 5286.635637577782, - 5254.159989462979, - 5204.183902570541, - 5147.970067739398, - 5092.630247378988, - 5039.645205156305, - 4985.25716818169, - 4922.9938023717805, - 4846.725003188628, - 4753.764070345569, - 4646.70666335953, - 4532.875338059796, - 4422.9754028931175, - 4327.704814887563, - 4254.734440800276, - 4206.238162214031, - 4179.222211458236, - 4166.192308326109, - 4158.496532995615, - 4149.785064112371, - 4138.162800022826, - 4127.15680073441, - 4124.476062958823, - 4138.810302488055, - 4176.60116950931, - 4238.5348732704715, - 4319.075425591624, - 4408.131402776403, - 4494.873261923929, - 4573.834029708849, - 4650.235902879861, - 4743.268385135736, - 4886.527019054064, - 5122.916394212648, - 5498.920871750329, - 6053.933756252208, - 6808.992698516459, - 7767.211786589459 - ], - "flow:branch126_seg0:RESISTANCE_73": [ - 0.762620938976332, - 0.9910319926348229, - 1.2450551056722041, - 1.5126262663109715, - 1.7799744702368068, - 2.034526198249945, - 2.2663977241425, - 2.4694219850614316, - 2.6405175547771362, - 2.780460194978155, - 2.8914557234550067, - 2.976192938649178, - 3.0375915857934883, - 3.076928989108169, - 3.0949309834714294, - 3.0918026478822114, - 3.0674751532223974, - 3.02327224296545, - 2.960933304984778, - 2.883382327891618, - 2.7943833018926956, - 2.6972571814556305, - 2.5950852963330027, - 2.4900192791832247, - 2.3833144725057225, - 2.275825064812349, - 2.1682872966329447, - 2.0618366394093277, - 1.9581462376037237, - 1.8592419766781256, - 1.7668622350339265, - 1.681906536453701, - 1.6036371642307963, - 1.5293212627228232, - 1.4545821619219668, - 1.3739391199376227, - 1.2820143551087266, - 1.1747553798040096, - 1.050872697286392, - 0.9118550652494003, - 0.7625495683844914, - 0.6101501881087528, - 0.4628672293777346, - 0.32856204553203455, - 0.21361591570972402, - 0.12176349800592323, - 0.05366400193219543, - 0.00819363882422182, - -0.01793876153268608, - -0.02841744167988153, - -0.0264673441113125, - -0.0149097649625215, - 0.004696916891400991, - 0.031186005492692962, - 0.06335506990340403, - 0.09974976491848186, - 0.1380053709019243, - 0.17517916849480303, - 0.2081071631493646, - 0.23403748881662687, - 0.25110595308096834, - 0.25901402416608643, - 0.25879287247627836, - 0.2524677107274668, - 0.2426800127544386, - 0.23162160609828722, - 0.22065883374149953, - 0.21006537682114695, - 0.19908553841943152, - 0.18644982276243316, - 0.17097734144690638, - 0.15217442269700787, - 0.1306193890724217, - 0.10778354445171821, - 0.0857964769493275, - 0.06676845491538813, - 0.052194553941926854, - 0.04245783679364609, - 0.03694743591795065, - 0.03418166126167007, - 0.032450307978599054, - 0.03053893177393211, - 0.028115863039140203, - 0.02591114306103751, - 0.025466718897526535, - 0.028484399336337056, - 0.03620607828139291, - 0.04871016711113405, - 0.06485463584334514, - 0.08263648269659257, - 0.0999260943475867, - 0.11571704692063149, - 0.13116090728751167, - 0.15018832508162672, - 0.17958905065721162, - 0.2279213914461246, - 0.3044366341866192, - 0.41701018235218223, - 0.5695254131389036, - 0.762620938976332 - ], - "pressure:branch126_seg0:RESISTANCE_73": [ - 7761.653778797618, - 8888.59859534158, - 10141.909352131199, - 11462.06408067317, - 12781.118775272269, - 14037.037636605577, - 15181.055888014058, - 16182.746195074871, - 17026.90527729266, - 17717.36062287244, - 18264.995395677997, - 18683.07571141535, - 18986.007141544582, - 19180.09180623887, - 19268.91086254191, - 19253.47613852041, - 19133.448041949527, - 18915.357718419455, - 18607.78703871316, - 18225.162510463633, - 17786.05507927554, - 17306.849820929205, - 16802.749539917302, - 16284.37005904116, - 15757.905044062813, - 15227.568929005345, - 14696.994210788414, - 14171.783129913067, - 13660.190722415571, - 13172.212393876083, - 12716.42503449874, - 12297.266755521561, - 11911.097776796774, - 11544.43461120225, - 11175.683445741524, - 10777.803147485585, - 10324.260573355892, - 9795.06137606926, - 9183.843378136782, - 8497.951879792125, - 7761.301647334451, - 7009.386672575647, - 6282.715330498902, - 5620.074322782204, - 5052.947893871626, - 4599.762269269166, - 4263.769886762634, - 4039.4261468685136, - 3910.49292470449, - 3858.7927373144344, - 3868.4142171485046, - 3925.437525368082, - 4022.173861596104, - 4152.866928398521, - 4311.584117475207, - 4491.14991448897, - 4679.897158443493, - 4863.30692709324, - 5025.768560629713, - 5153.704777524495, - 5237.917940683512, - 5276.935140488385, - 5275.844012250468, - 5244.636642324829, - 5196.345654126448, - 5141.785185791943, - 5087.696562301309, - 5035.430084061939, - 4981.257259344777, - 4918.914592320141, - 4842.5757622227275, - 4749.805068853495, - 4643.455866288294, - 4530.787340336908, - 4422.306549429702, - 4328.425231267694, - 4256.51985761873, - 4208.480400925817, - 4181.292935150938, - 4167.647030704981, - 4159.1048013482505, - 4149.67436673568, - 4137.719320309222, - 4126.8415728821265, - 4124.64885278652, - 4139.537621407972, - 4177.635191218049, - 4239.328431832188, - 4318.982743925262, - 4406.715626458204, - 4492.019896624033, - 4569.930014656637, - 4646.127633419461, - 4740.005970355615, - 4885.064603724454, - 5123.5288989110595, - 5501.043274033761, - 6056.46375195347, - 6808.950315217973, - 7761.653778797618 - ], - "flow:branch127_seg2:RESISTANCE_74": [ - 0.7990729321809197, - 1.0322887946494608, - 1.2875627844357813, - 1.552152486709081, - 1.8121936025126177, - 2.0556929818088867, - 2.2738353989000233, - 2.461879235602577, - 2.617979609486724, - 2.744053293244055, - 2.8430564941444025, - 2.9177958292184014, - 2.9710885717336004, - 3.00384051014706, - 3.0163315577643997, - 3.0085598183427997, - 2.9802922396764817, - 2.932910988584016, - 2.868441620297718, - 2.789968501702868, - 2.701335672072403, - 2.605803793678483, - 2.506219641762028, - 2.4044159970116366, - 2.301328774294553, - 2.1975814553276387, - 2.093827398513135, - 1.991254951546606, - 1.891645106440926, - 1.7971033705425006, - 1.709302889262854, - 1.6288976280709249, - 1.5547410650390452, - 1.4835982774700973, - 1.4106795410018154, - 1.3302855659860542, - 1.2371897194640045, - 1.1277844353050235, - 1.001583576409851, - 0.861020264662513, - 0.7117901446511687, - 0.5617179835289301, - 0.4192199193834698, - 0.29192364667593457, - 0.18552193795221777, - 0.10288063134171703, - 0.04373141278190125, - 0.006136822124523409, - -0.013701601771551093, - -0.019638780815499864, - -0.014758019290828867, - -0.0015459275106961823, - 0.018825691861709185, - 0.045469962183526835, - 0.07732609387458167, - 0.11294037554150745, - 0.14981779913599788, - 0.18490289112420463, - 0.21501679471217566, - 0.2375738527584693, - 0.25100822778368476, - 0.25543600187609405, - 0.25234100932566406, - 0.24401308714006814, - 0.23320105897076887, - 0.22199253720198042, - 0.21145766672088187, - 0.2014962150157564, - 0.19101808996446054, - 0.17855590559661724, - 0.1629308952545573, - 0.14382184967569306, - 0.12208246498246843, - 0.09946415728081466, - 0.07826900375729662, - 0.06059602352965423, - 0.04775599424464356, - 0.03981821128023463, - 0.035843838186717165, - 0.0341020107354886, - 0.032810059406983234, - 0.030878807987540523, - 0.02824182575936794, - 0.02594339549784098, - 0.02577056254172735, - 0.029492615308027124, - 0.03822424332468836, - 0.051750684156124806, - 0.06855820345426053, - 0.08640058205576084, - 0.10312161595518789, - 0.11799223503864682, - 0.13273177398996497, - 0.1519983970435572, - 0.1832824748551602, - 0.23560027528985694, - 0.3181431803356165, - 0.4382533958066598, - 0.5988113357375949, - 0.7990729321809197 - ], - "pressure:branch127_seg2:RESISTANCE_74": [ - 8037.74073641368, - 9216.47970528203, - 10506.706692051534, - 11844.017926071409, - 13158.339316825794, - 14389.054089970716, - 15491.607600125457, - 16442.034367115706, - 17231.009833040473, - 17868.221909528602, - 18368.612104726762, - 18746.365855378768, - 19015.722457865468, - 19181.26002338647, - 19244.39331300365, - 19205.112742569185, - 19062.24040028142, - 18822.762148393816, - 18496.915716281448, - 18100.290367056517, - 17652.314963065324, - 17169.469814196884, - 16666.143328154514, - 16151.598897214255, - 15630.566899978527, - 15106.1985894893, - 14581.79622401155, - 14063.366049100363, - 13559.909702408491, - 13082.069013922019, - 12638.300534049962, - 12231.909589344175, - 11857.101333517194, - 11497.525551776564, - 11128.973621706193, - 10722.639720528741, - 10252.106966136324, - 9699.141698365562, - 9061.286842740281, - 8350.840085834425, - 7596.588827260621, - 6838.081654615217, - 6117.856111555453, - 5474.464724521027, - 4936.680377010177, - 4518.987825959388, - 4220.0309361639065, - 4030.0172357344045, - 3929.7482271013128, - 3899.740043995007, - 3924.4087939933447, - 3991.186444864362, - 4094.1503743288363, - 4228.818056848183, - 4389.827961681367, - 4569.832620046841, - 4756.221555182651, - 4933.55153915151, - 5085.755730102173, - 5199.765485102344, - 5267.666618400037, - 5290.045841720547, - 5274.402873489598, - 5232.311197966501, - 5177.664147801228, - 5121.013106776682, - 5067.766890003041, - 5017.418894000345, - 4964.45948468785, - 4901.4720781019, - 4822.498853964364, - 4725.916329760088, - 4616.039327287408, - 4501.719999195433, - 4394.593695071551, - 4305.269451558004, - 4240.372309830801, - 4200.252508340753, - 4180.164901980861, - 4171.361213106205, - 4164.83132547047, - 4155.070234253586, - 4141.742179807978, - 4130.1252628118045, - 4129.25171613998, - 4148.06402415961, - 4192.196143201426, - 4260.56260313833, - 4345.512562189216, - 4435.692993023882, - 4520.205830394376, - 4595.366147618658, - 4669.863948759501, - 4767.242914115385, - 4925.361496750903, - 5189.790466054714, - 5606.985667749714, - 6214.0566878609225, - 7025.561954074735, - 8037.74073641368 - ], - "flow:branch128_seg0:RESISTANCE_75": [ - 0.9351004941589702, - 1.2027368718681204, - 1.4927231655450852, - 1.790451650740427, - 2.080230988187321, - 2.348844358199768, - 2.586951582221679, - 2.790047494408725, - 2.9566151754878387, - 3.0893719411683933, - 3.192079137428928, - 3.267809078147084, - 3.319827428004578, - 3.349010956670899, - 3.355540534802367, - 3.3395893368499703, - 3.3008607491201434, - 3.2412387864515066, - 3.163261398664924, - 3.070432326001921, - 2.967280928713405, - 2.857367473646611, - 2.7437321160682995, - 2.628304244222033, - 2.5119473557727647, - 2.3953002781245285, - 2.279109906527985, - 2.1647706444758787, - 2.0543531094018666, - 1.9502291042474844, - 1.8541440657331876, - 1.766557079416095, - 1.6858374472267306, - 1.6079169404576055, - 1.527108832094001, - 1.4368651891315496, - 1.3314343513965083, - 1.2070436441269243, - 1.0637581778484737, - 0.9048979071289583, - 0.7373866532049641, - 0.5704607483781643, - 0.41367896976116386, - 0.2754542106368606, - 0.1617708033995769, - 0.07546627304937271, - 0.015559266584275384, - -0.02046895895076997, - -0.037105667501630614, - -0.03888749864078925, - -0.029106548743306714, - -0.010500182252830332, - 0.015706535854384418, - 0.04860905002577817, - 0.08688595648109147, - 0.12880288477329072, - 0.1714097581655571, - 0.2111646498094646, - 0.244515471560434, - 0.26872148964154574, - 0.28225119575232693, - 0.28554477616904816, - 0.2805923589200652, - 0.2700961003800292, - 0.2572380291261458, - 0.24428396698272495, - 0.23225012329017425, - 0.2208397910121993, - 0.20868497565969799, - 0.19409097903850647, - 0.1758198188342278, - 0.15365740842125034, - 0.12878678878562383, - 0.10332921243332636, - 0.07993222778302443, - 0.06090033008348393, - 0.047552416838145845, - 0.03973348017696505, - 0.03618635650555379, - 0.03486777578778768, - 0.033755491917737086, - 0.031755045387791454, - 0.028985160490462417, - 0.026798855920690222, - 0.027314465683320938, - 0.03248753146543945, - 0.043424277906495924, - 0.05964774636851888, - 0.07920463027360697, - 0.0994787547218736, - 0.11810466052748934, - 0.134557052044938, - 0.15124879091531399, - 0.1739641202046922, - 0.2116254817348191, - 0.27463508336839915, - 0.37317058457758556, - 0.5152609192253912, - 0.7031483412929428, - 0.9351004941589702 - ], - "pressure:branch128_seg0:RESISTANCE_75": [ - 8457.16683746827, - 9733.144800324764, - 11115.677785673823, - 12535.122291968657, - 13916.668596840615, - 15197.304449104962, - 16332.49979605091, - 17300.775897061852, - 18094.900717462868, - 18727.82927851437, - 19217.49409978033, - 19578.542684849017, - 19826.54435282277, - 19965.679173639557, - 19996.80946270495, - 19920.760843146454, - 19736.119185316522, - 19451.866681532792, - 19080.10321175172, - 18637.533139460877, - 18145.750554056747, - 17621.72931416739, - 17079.963604616438, - 16529.65193908001, - 15974.911112146665, - 15418.786784860675, - 14864.839840419465, - 14319.718209658535, - 13793.293727780048, - 13296.87415612626, - 12838.78100468742, - 12421.203000791864, - 12036.365660198948, - 11664.873375244837, - 11279.614217373062, - 10849.370389184976, - 10346.720388064396, - 9753.677683561018, - 9070.552695344326, - 8313.173573916365, - 7514.550194064189, - 6718.71751312593, - 5971.247770017468, - 5312.250110306843, - 4770.25532014101, - 4358.791528244924, - 4073.180055228964, - 3901.412591414684, - 3822.0957449266707, - 3813.6007216172147, - 3860.2321871594436, - 3948.939536339307, - 4073.882173322453, - 4230.747556737918, - 4413.235787752521, - 4613.078115724867, - 4816.209812469878, - 5005.744456779328, - 5164.747182648076, - 5280.151321294616, - 5344.655283682129, - 5360.357693297009, - 5336.746645626054, - 5286.704888581782, - 5225.402999409513, - 5163.643465948628, - 5106.271147986526, - 5051.871470856731, - 4993.922410773292, - 4924.344357752116, - 4837.235131510025, - 4731.57405683552, - 4613.001376808696, - 4491.63033341276, - 4380.083326736706, - 4289.3472232824015, - 4225.709973006655, - 4188.432563418189, - 4171.521365938278, - 4165.234926282659, - 4159.932023445708, - 4150.394733672426, - 4137.1890845790795, - 4126.765701648104, - 4129.2239126737595, - 4153.886919978257, - 4206.028738529181, - 4283.375429647289, - 4376.614447073215, - 4473.272966492842, - 4562.073470929627, - 4640.511571132004, - 4720.090779095656, - 4828.387938997339, - 5007.941510058731, - 5308.344855153272, - 5778.120784636878, - 6455.547886652638, - 7351.316287451455, - 8457.16683746827 - ], - "flow:branch129_seg0:RESISTANCE_76": [ - 0.7989233204113203, - 1.0246184733176378, - 1.2672883714864542, - 1.5144233385002734, - 1.7529835127911446, - 1.9723319137406583, - 2.165262298573339, - 2.328654930289816, - 2.4619255262813784, - 2.5678387609234945, - 2.649710605846622, - 2.710164910469678, - 2.7517228716670576, - 2.7748175045254575, - 2.779365356723356, - 2.7652892480548794, - 2.732294365389495, - 2.6820320147416337, - 2.61671488977293, - 2.539430306849287, - 2.4540020471423865, - 2.363371447412557, - 2.269976927881051, - 2.175244528886854, - 2.079743249219669, - 1.9839041547752971, - 1.8883310691881523, - 1.794249511874766, - 1.7034781130708065, - 1.6180590137586932, - 1.5394356302592855, - 1.4678711795045145, - 1.4017772239845365, - 1.3375137213229085, - 1.270114759932168, - 1.1940200535605316, - 1.104518706983231, - 0.9987562664571501, - 0.8772229054106278, - 0.7431852444438348, - 0.6028980851755483, - 0.46433632763671356, - 0.33554359538690076, - 0.2233434470788054, - 0.13232156352096966, - 0.06432182043913952, - 0.018032334459012186, - -0.009046844293541132, - -0.0209010168479898, - -0.02129207177914449, - -0.012846776637085076, - 0.002394841608027097, - 0.023655567097192305, - 0.05033326716918358, - 0.08142073843167859, - 0.11543601657864196, - 0.14983401064282917, - 0.18159552996631725, - 0.2077409749858817, - 0.2260574451567592, - 0.23543891748175966, - 0.2364760471408253, - 0.2310164225094258, - 0.22146297000750462, - 0.21049156884019013, - 0.19988671369011285, - 0.19031825279636605, - 0.18131754856608087, - 0.17155830883701392, - 0.15953333560727823, - 0.1442261902006301, - 0.1255733161545572, - 0.10472451757946255, - 0.08360409266333312, - 0.06450869763555296, - 0.049339963748863645, - 0.039079970726382404, - 0.03342449732066301, - 0.031144319304273374, - 0.030407528956068137, - 0.02951659339444626, - 0.027642802865913887, - 0.025046350606023397, - 0.023037722007883153, - 0.023512905108778823, - 0.028132668655415218, - 0.037731751377801326, - 0.051732815875038224, - 0.06831850677163505, - 0.0851642374714347, - 0.10029460074647428, - 0.11344102300060482, - 0.12693232748055358, - 0.1459843718184813, - 0.17840537723429536, - 0.23307553223015634, - 0.31845006252653835, - 0.4409013733327073, - 0.6017728360142705, - 0.7989233204113203 - ], - "pressure:branch129_seg0:RESISTANCE_76": [ - 8524.81104432956, - 9803.348783281996, - 11178.046551139516, - 12578.038433433452, - 13929.455076255874, - 15172.039176895516, - 16264.968177907727, - 17190.56911893894, - 17945.53210451366, - 18545.51870502642, - 19009.31352801639, - 19351.780386286882, - 19587.201577484666, - 19718.030083531372, - 19743.79315638125, - 19664.053578820567, - 19477.141267515803, - 19192.410685913877, - 18822.396495547004, - 18384.587997514744, - 17900.646483477707, - 17387.234296435407, - 16858.164813574494, - 16321.516393544596, - 15780.512350700004, - 15237.594625014426, - 14696.183809683287, - 14163.222334810542, - 13649.012536798016, - 13165.122915370503, - 12719.730262166968, - 12314.325671598033, - 11939.910823247208, - 11575.86528513028, - 11194.057724823355, - 10762.989744063376, - 10255.97464953169, - 9656.842280781018, - 8968.369415330479, - 8209.061092665303, - 7414.350062741739, - 6629.41324018396, - 5899.816850701318, - 5264.2155890849235, - 4748.586823023064, - 4363.375901788628, - 4101.151153138982, - 3947.750641301898, - 3880.5980827300805, - 3878.3828003855265, - 3926.224450579036, - 4012.5665092282566, - 4133.006135624171, - 4284.132315744895, - 4460.239355288619, - 4652.9320926018945, - 4847.792872680678, - 5027.718318923656, - 5175.829333842503, - 5279.59008393528, - 5332.735072917076, - 5338.610296165013, - 5307.6821346964525, - 5253.562897292776, - 5191.411139663223, - 5131.33582412853, - 5077.131565867725, - 5026.143585455291, - 4970.858586480256, - 4902.7384612310825, - 4816.02519855789, - 4710.358758225741, - 4592.2526516176795, - 4472.607812239177, - 4364.4345401558585, - 4278.505363226174, - 4220.383652982464, - 4188.346030163619, - 4175.429077327268, - 4171.255242604876, - 4166.208192529409, - 4155.593379252427, - 4140.884768283558, - 4129.506112458692, - 4132.197971453377, - 4158.368414032014, - 4212.746141519104, - 4292.0606022627735, - 4386.01668180118, - 4481.4458576721545, - 4567.157669388499, - 4641.630677637316, - 4718.05740503129, - 4825.985100316562, - 5009.646461338814, - 5319.3467604214475, - 5802.9839033713915, - 6496.656851300701, - 7407.975652392682, - 8524.81104432956 - ], - "flow:branch130_seg0:RESISTANCE_77": [ - 0.43210272668360367, - 0.5607949660501025, - 0.7056447262790544, - 0.8606439178479841, - 1.018724562490277, - 1.1731896389017364, - 1.318464362675905, - 1.4506889942962207, - 1.5674704013464962, - 1.6683587628399108, - 1.7536754799607206, - 1.8240947812078538, - 1.8805259766272333, - 1.9232123696724663, - 1.9522457828135453, - 1.967572443002708, - 1.9690876813051366, - 1.9574309146064246, - 1.9335556974188761, - 1.8990391538783689, - 1.855885411413301, - 1.8059525329245982, - 1.750999576644956, - 1.6923412514393963, - 1.6308779174786396, - 1.5673152504925085, - 1.5023131179707945, - 1.4367345668605205, - 1.3716991209342788, - 1.308486001053445, - 1.2482023680124574, - 1.1914923361406962, - 1.138123078604958, - 1.086805056746949, - 1.0353488395426085, - 0.9809374625352041, - 0.9207541796554153, - 0.8525891785704437, - 0.775603696574658, - 0.6903847270005379, - 0.5992478028886685, - 0.5057634741807155, - 0.41412999465200834, - 0.3284843925268849, - 0.25229657393177973, - 0.18780868307450807, - 0.13579634542487032, - 0.09609089615847065, - 0.06742680467732357, - 0.04828307917986535, - 0.03724529325688364, - 0.0330322902881564, - 0.03487937828312721, - 0.042121358328690135, - 0.05403420743533679, - 0.06970424841067331, - 0.08772796753203708, - 0.10639805242659876, - 0.1238780284268521, - 0.13853812779992855, - 0.14919390734396615, - 0.15545847807922186, - 0.15764051586189412, - 0.15657518720158814, - 0.1534437874631961, - 0.1492566558198338, - 0.14465479261773384, - 0.13976387601802617, - 0.13422448229885625, - 0.12743617244314207, - 0.1188520784511484, - 0.10826842667191817, - 0.09601027251091941, - 0.08285782285281304, - 0.06992232996284725, - 0.05830747341331319, - 0.04881921786867528, - 0.041717861195125924, - 0.03676512057919747, - 0.03328141894783309, - 0.030473883438058277, - 0.027780142538920447, - 0.025066959886179668, - 0.022722369402788045, - 0.021531673406419535, - 0.022353596221141143, - 0.025814472117641325, - 0.03195609525303269, - 0.040203730946455685, - 0.049553370348608634, - 0.05894521244249842, - 0.06789540720360054, - 0.07703245135457767, - 0.08843056632966373, - 0.10566965370535389, - 0.13331677767168904, - 0.17634625301037074, - 0.23912028874746205, - 0.3241224719817189, - 0.43210272668360367 - ], - "pressure:branch130_seg0:RESISTANCE_77": [ - 7143.4405149514905, - 8079.942569751437, - 9134.0239872437, - 10261.963497125444, - 11412.326947636244, - 12536.379665704178, - 13593.553571409171, - 14555.761081490207, - 15405.587210893018, - 16139.758582135612, - 16760.61405318606, - 17273.060030038676, - 17683.713622867705, - 17994.345367218753, - 18205.62346136275, - 18317.156595225584, - 18328.183085950437, - 18243.356013087265, - 18069.614456758773, - 17818.435255049335, - 17504.402577633948, - 17141.03767282742, - 16741.141325335517, - 16314.280759721412, - 15867.00795731739, - 15404.45816772555, - 14931.43329091382, - 14454.213777383755, - 13980.946476693589, - 13520.940364824444, - 13082.252325113583, - 12669.569620724335, - 12281.197955180245, - 11907.753269200175, - 11533.302926418728, - 11137.347687604277, - 10699.389902745022, - 10203.348619325301, - 9643.120104896432, - 9022.975949297312, - 8359.766441722837, - 7679.4747135070775, - 7012.651738869788, - 6389.40294959092, - 5834.979085212853, - 5365.696379473637, - 4987.19911092339, - 4698.259894325857, - 4489.66937866454, - 4350.359204615593, - 4270.03649636062, - 4239.3781912715685, - 4252.819574459877, - 4305.519948832687, - 4392.21055054896, - 4506.242489416767, - 4637.402301969446, - 4773.265761593087, - 4900.468718994979, - 5007.151245105653, - 5084.694067327178, - 5130.281768612713, - 5146.160603864808, - 5138.40813577252, - 5115.620729913084, - 5085.150692193409, - 5051.662625112677, - 5016.071097076265, - 4975.760557560556, - 4926.361571578266, - 4863.8945440273355, - 4786.876600386545, - 4697.67319063674, - 4601.961932591168, - 4507.8294834945, - 4423.307393597005, - 4354.2607218026415, - 4302.583673136896, - 4266.542247589089, - 4241.191117232336, - 4220.760493079933, - 4201.157959939167, - 4181.413947853845, - 4164.352205699312, - 4155.687431096505, - 4161.668618529895, - 4186.853644483556, - 4231.546647841134, - 4291.565245793532, - 4359.603198624698, - 4427.94826327336, - 4493.079430668477, - 4559.570313602131, - 4642.515160529652, - 4767.965155258801, - 4969.155130126251, - 5282.283507330704, - 5739.094374444849, - 6357.660961313069, - 7143.4405149514905 - ], - "flow:branch131_seg0:RESISTANCE_78": [ - 1.0303736246337971, - 1.3049665596553748, - 1.5922335462688433, - 1.8777190480275887, - 2.1465808728353846, - 2.387800797009027, - 2.594983387452465, - 2.7670757745042494, - 2.904574189084199, - 3.0119433073812423, - 3.093885359536312, - 3.152393025758162, - 3.1903117743856964, - 3.207341549358306, - 3.2026725846146182, - 3.176745187481732, - 3.128942927663497, - 3.0620705779078032, - 2.9794552494053064, - 2.884581960191926, - 2.782375291892006, - 2.675778533408504, - 2.5670692781192583, - 2.457520071698141, - 2.347300017534358, - 2.23686675899716, - 2.1271067818645872, - 2.0197523925026126, - 1.9171990748499836, - 1.8218776319730505, - 1.7350629565900861, - 1.656280432525798, - 1.5827838490266761, - 1.5092153377646451, - 1.429221044084373, - 1.3362269598846586, - 1.2254641024470232, - 1.094625399937384, - 0.946177656809139, - 0.7855259527035894, - 0.6211180262502666, - 0.4631348052144017, - 0.32070032078156163, - 0.20086518407399803, - 0.10746767375630722, - 0.041475085148851884, - -0.0005073809962336292, - -0.022001531068528243, - -0.02789977024500914, - -0.02274028393243962, - -0.008656710751124659, - 0.01235212617844475, - 0.039830721643667, - 0.07336357866059992, - 0.11135336891973747, - 0.15181813924243207, - 0.19135267946206694, - 0.22617493207910142, - 0.2529567888135763, - 0.26967072056577873, - 0.27566810733508706, - 0.27243296939440254, - 0.2629346532117971, - 0.2500247856184166, - 0.23683924042896648, - 0.22499772907798898, - 0.21456337754862925, - 0.20440747521899677, - 0.1926134460096144, - 0.1773957926955727, - 0.15794193277221089, - 0.13468356443117907, - 0.10962254230220819, - 0.0853702565486597, - 0.06466454561802809, - 0.04943099588057207, - 0.04028278713248924, - 0.03616008549048043, - 0.0351366944647161, - 0.03493033176502464, - 0.03366304699947817, - 0.03090793414593077, - 0.02759451948200107, - 0.025753306263086535, - 0.02782202490018687, - 0.035505207801432556, - 0.04924408546687627, - 0.06765441618512745, - 0.0879115806577791, - 0.10721652583332829, - 0.12361300330668204, - 0.13779235314100083, - 0.15392258038456708, - 0.17957040608708155, - 0.2250418569652711, - 0.3010829568720406, - 0.416685878954464, - 0.5783353884105682, - 0.7844886752322906, - 1.0303736246337971 - ], - "pressure:branch131_seg0:RESISTANCE_78": [ - 9224.601358335101, - 10617.21582354713, - 12074.10749814302, - 13521.964265930226, - 14885.513063502962, - 16108.87431158156, - 17159.613189364267, - 18032.390005498848, - 18729.721424723866, - 19274.250318905983, - 19689.824328963252, - 19986.549451552222, - 20178.856649249403, - 20265.224169827812, - 20241.545236358117, - 20110.052893739332, - 19867.62087891905, - 19528.47376435407, - 19109.485193101205, - 18628.32964221124, - 18109.98242142637, - 17569.370596154273, - 17018.045117199996, - 16462.459775929077, - 15903.4721902766, - 15343.40332591446, - 14786.749048395806, - 14242.29485288731, - 13722.189579212614, - 13238.761190259827, - 12798.475380570284, - 12398.925105872864, - 12026.182794361835, - 11653.075696906584, - 11247.379860249996, - 10775.754809789427, - 10214.014364924198, - 9550.458073098343, - 8797.596480383914, - 7982.841770905424, - 7149.037155515661, - 6347.815817253456, - 5625.450825049254, - 5017.699774183724, - 4544.02872407828, - 4209.343370704905, - 3996.4267869831638, - 3887.417921530149, - 3857.504649377673, - 3883.671292271757, - 3955.0969745553525, - 4061.644545428216, - 4201.003883007573, - 4371.067769531084, - 4563.735259104654, - 4768.954757845357, - 4969.4565390767075, - 5146.059672372687, - 5281.8854578785495, - 5366.651160706461, - 5397.067265795815, - 5380.660070567725, - 5332.48879292719, - 5267.015628611796, - 5200.144348907924, - 5140.08941706473, - 5087.1709802748255, - 5035.664715226837, - 4975.850591899778, - 4898.6733545100005, - 4800.011942367867, - 4682.055738627936, - 4554.957268570573, - 4431.960353328767, - 4326.950104058405, - 4249.692247008146, - 4203.296560125823, - 4182.38803259228, - 4177.197843901024, - 4176.151263148144, - 4169.724152793303, - 4155.7514334557145, - 4138.9472531519805, - 4129.609430378067, - 4140.101060464082, - 4179.0667812911815, - 4248.744319685139, - 4342.113411157064, - 4444.848830284206, - 4542.755012391486, - 4625.910726889825, - 4697.822146187713, - 4779.627556748558, - 4909.702036165707, - 5140.313214279844, - 5525.960192678905, - 6112.247314378197, - 6932.062453268461, - 7977.581156276519, - 9224.601358335101 - ], - "flow:branch132_seg2:RESISTANCE_79": [ - 1.0067890538148327, - 1.2835371976110777, - 1.577156095357424, - 1.8727421217814135, - 2.1546451254895618, - 2.4106378259949897, - 2.632949433484105, - 2.8190940987369637, - 2.9687664116938994, - 3.0859950665341414, - 3.1752346920972774, - 3.239136848454306, - 3.2808980019509884, - 3.300706557982198, - 3.298245561848229, - 3.2738024081703667, - 3.2269047133458435, - 3.160056670981443, - 3.0762497655394516, - 2.9791329064352237, - 2.873576245344007, - 2.762835895368698, - 2.649588588371145, - 2.5353780764517744, - 2.420639535328966, - 2.305878395968824, - 2.191887250845567, - 2.080258197733418, - 1.973277061224563, - 1.8733951127953958, - 1.7821050916751726, - 1.699335317107375, - 1.6227343825413139, - 1.547355766626243, - 1.4669608441634017, - 1.374801140159771, - 1.2655305349653014, - 1.1361557565169709, - 0.9881781991721825, - 0.8262211988103065, - 0.6583513858601308, - 0.4946111586330747, - 0.34455827452209253, - 0.21600638802329802, - 0.11384965732121549, - 0.03978135411903292, - -0.008677941575207156, - -0.03473550483604661, - -0.04336039969372308, - -0.03921751674602983, - -0.02504143848417677, - -0.0032394120053507516, - 0.02543965017093166, - 0.06035381321254416, - 0.10001633797407099, - 0.14254650987670395, - 0.18465941768551303, - 0.22260700759264762, - 0.25289399678894375, - 0.27314971255088194, - 0.2823362142355168, - 0.281572269301708, - 0.27349033660883165, - 0.2609995341979883, - 0.24737488005937966, - 0.2345698290775099, - 0.22307979516422397, - 0.2121076583275578, - 0.19990984182760477, - 0.1846783281421278, - 0.1653689513063008, - 0.14214024766264644, - 0.11668564136926138, - 0.09146802765073588, - 0.06927071894555466, - 0.0522421468139694, - 0.041318214695781, - 0.03579077799989508, - 0.03397218976090969, - 0.03359097357718944, - 0.03263695666778459, - 0.03036791820376117, - 0.02737590807991448, - 0.02545352633283654, - 0.026976569945978777, - 0.03381652781141076, - 0.04673495321040211, - 0.06469923277679679, - 0.08519349847292132, - 0.10539968566063858, - 0.1231019918941784, - 0.13845087819826105, - 0.1549299941586802, - 0.17950738481827538, - 0.22213946703382037, - 0.2936670791653543, - 0.40389775425714985, - 0.5600645381103699, - 0.7621895932966429, - 1.0067890538148327 - ], - "pressure:branch132_seg2:RESISTANCE_79": [ - 8944.381724687875, - 10303.77792341031, - 11746.043833469403, - 13197.972345814105, - 14582.689389956011, - 15840.134152526773, - 16932.136252367694, - 17846.48511442728, - 18581.680554211158, - 19157.51165314889, - 19595.859698060285, - 19909.749241275676, - 20114.88143309067, - 20212.181727147312, - 20200.093231290768, - 20080.027637575582, - 19849.664581842713, - 19521.30474738938, - 19109.642406599072, - 18632.60112535619, - 18114.10325263738, - 17570.14292561722, - 17013.86834131009, - 16452.86246200185, - 15889.26288547085, - 15325.552305637322, - 14765.62396341631, - 14217.298296670868, - 13691.80335274736, - 13201.179859656952, - 12752.760202745032, - 12346.19228372254, - 11969.925914455198, - 11599.663615549412, - 11204.761050013023, - 10752.06948150097, - 10215.328590321495, - 9579.835323336107, - 8852.964580171016, - 8057.426342304756, - 7232.844169957006, - 6428.546661698783, - 5691.481843594753, - 5060.030649567158, - 4558.233349374364, - 4194.407350624399, - 3956.373658850057, - 3828.3780309161107, - 3786.012257028433, - 3806.362237532703, - 3875.9956111756455, - 3983.087899178786, - 4123.960418035014, - 4295.459962238959, - 4490.283619059038, - 4699.193255172146, - 4906.053276009691, - 5092.453115093767, - 5241.223825601243, - 5340.72058330833, - 5385.844988835848, - 5382.092465603687, - 5342.39374014768, - 5281.038498217691, - 5214.113738431161, - 5151.214896941488, - 5094.775463561177, - 5040.87995805561, - 4980.963872782935, - 4906.14616480918, - 4811.297855764519, - 4697.197681500362, - 4572.163798488377, - 4448.294030982174, - 4339.260103376473, - 4255.61518381961, - 4201.956461513959, - 4174.805506389222, - 4165.872539738727, - 4163.999993011105, - 4159.313829836271, - 4148.1682365165225, - 4133.471382065745, - 4124.028578209415, - 4131.509819708612, - 4165.107923002615, - 4228.563663445802, - 4316.80480942192, - 4417.473332436228, - 4516.726804119421, - 4603.681128265535, - 4679.07537449309, - 4760.021346840401, - 4880.746317128795, - 5090.156540129613, - 5441.502578811226, - 5982.959365645971, - 6750.055865100998, - 7742.90094047422, - 8944.381724687875 - ], - "flow:branch133_seg2:RESISTANCE_80": [ - 0.6984567292640412, - 0.8962083925703149, - 1.109274007432903, - 1.3269402596565485, - 1.5377047576929768, - 1.7320960478576257, - 1.903593021148243, - 2.049294343771899, - 2.1682731876019514, - 2.262811510804842, - 2.3357466246175167, - 2.3892278051526157, - 2.4256372710801326, - 2.4454329182532732, - 2.4486656820771473, - 2.435467957131299, - 2.405593514728215, - 2.360571755153118, - 2.3023244230477187, - 2.2334836267061045, - 2.157441994440252, - 2.0767313540391017, - 1.9935247582364473, - 1.9091488640309355, - 1.824151078860486, - 1.7389789681905503, - 1.6541880872290584, - 1.5708481712824616, - 1.4905260902682107, - 1.4149832176926775, - 1.3454452382019966, - 1.28215318829776, - 1.2237612076102589, - 1.167109235161013, - 1.1079256975079024, - 1.041372009513673, - 0.9633127555119659, - 0.8711494790791781, - 0.765225702253051, - 0.6482195669879562, - 0.5254459255153188, - 0.40382232498507986, - 0.2903324916758951, - 0.19100382218350145, - 0.11001401612991496, - 0.04917276241005327, - 0.007461120666548984, - -0.017064921647850072, - -0.027820262905269927, - -0.02811155488629403, - -0.020226361119322835, - -0.006112184520248552, - 0.01346503678132302, - 0.03787790708256339, - 0.06612311168158319, - 0.09690821089290441, - 0.1279896139411843, - 0.15673183211996286, - 0.18054395014937885, - 0.19749280524900026, - 0.20655043374799753, - 0.2081851359714533, - 0.20397487373252446, - 0.195937762067061, - 0.18642396368282924, - 0.17701770712290016, - 0.16835565715645753, - 0.16011810561343404, - 0.15122543748308165, - 0.14041694554776984, - 0.1268248297679091, - 0.11037595174918434, - 0.09204368180876961, - 0.07344711601075796, - 0.05655602737442362, - 0.0430243337829491, - 0.033737038509105206, - 0.02846086014587359, - 0.02619676698877559, - 0.025395320307105226, - 0.02458117332284, - 0.02303131474465167, - 0.02093014737453864, - 0.019360408207384532, - 0.01992656766157382, - 0.024041444585057442, - 0.0324456081468597, - 0.04466969776871903, - 0.059169911491483373, - 0.07398735931298644, - 0.08741616024824755, - 0.09920861741642742, - 0.11134730164723174, - 0.12830549854840842, - 0.1568242806710854, - 0.2045915245995758, - 0.2790247289693205, - 0.38580981201668263, - 0.526124255813067, - 0.6984567292640412 - ], - "pressure:branch133_seg2:RESISTANCE_80": [ - 8531.04898461565, - 9814.192502808388, - 11196.703062212653, - 12609.065598134826, - 13976.644990383651, - 15237.984186209167, - 16350.769919529204, - 17296.176418725623, - 18068.189810219323, - 18681.61694711639, - 19154.86818036866, - 19501.88943420573, - 19738.13811815938, - 19866.585363224043, - 19887.561671979678, - 19801.926107979747, - 19608.080976726564, - 19315.950038303334, - 18938.002842343183, - 18491.31824745226, - 17997.90986886579, - 17474.20587898064, - 16934.306480462295, - 16386.819900924216, - 15835.298081695393, - 15282.645123385464, - 14732.465835441444, - 14191.70136769595, - 13670.518607975931, - 13180.34651197273, - 12729.138131927435, - 12318.457472003112, - 11939.5717004202, - 11571.97625254526, - 11187.954336099028, - 10756.11001209274, - 10249.609969905368, - 9651.593706512527, - 8964.290219985405, - 8205.077065749318, - 7408.440518543418, - 6619.266197223372, - 5882.869134580639, - 5238.3590642280205, - 4712.84366304328, - 4318.065388898247, - 4047.4126831687304, - 3888.271507329916, - 3818.4837432743734, - 3816.5936483386167, - 3867.7579981226822, - 3959.3401062826547, - 4086.3700598989262, - 4244.776900902335, - 4428.050460251003, - 4627.804534879177, - 4829.481224677574, - 5015.979736689892, - 5170.488499817533, - 5280.4638759952, - 5339.235757375969, - 5349.842786045831, - 5322.523821383541, - 5270.373727846486, - 5208.641914692465, - 5147.607903986635, - 5091.4027976281195, - 5037.952117661706, - 4980.250608202198, - 4910.117967412449, - 4821.923334963561, - 4715.192140603993, - 4596.240254412416, - 4475.5734419800665, - 4365.972892803579, - 4278.1703194559195, - 4217.908208215327, - 4183.672875098944, - 4168.981941983424, - 4163.781626104566, - 4158.49890226675, - 4148.4423952545285, - 4134.808632349471, - 4124.623126933683, - 4128.296743740543, - 4154.996785420351, - 4209.528554305939, - 4288.846528687793, - 4382.933500901817, - 4479.07889766075, - 4566.213835436185, - 4642.731093121548, - 4721.4949008677395, - 4831.530892829436, - 5016.579604004058, - 5326.525059855145, - 5809.496894976611, - 6502.389105646322, - 7412.841973935482, - 8531.04898461565 - ], - "flow:branch134_seg2:RESISTANCE_81": [ - 0.5255024007223444, - 0.6771399076291391, - 0.8419478110241333, - 1.0115988139393304, - 1.1771077800836125, - 1.3308744587956214, - 1.467476684897873, - 1.5842006781338278, - 1.6801021641013278, - 1.7567073293478388, - 1.8160726417424584, - 1.8600269615708254, - 1.890433381066574, - 1.907794119911772, - 1.912263535033686, - 1.9038677751139848, - 1.8824588240238114, - 1.8490670320920786, - 1.8050647749490458, - 1.7525016538789162, - 1.693933005600451, - 1.6314109560351342, - 1.566720161059372, - 1.5009667966267288, - 1.4346672553941269, - 1.3681827268402456, - 1.3019186034949128, - 1.2366548458703355, - 1.173561223758874, - 1.1139967656778187, - 1.0589854979679665, - 1.008851229345359, - 0.9627114728757692, - 0.9183108453932315, - 0.8724383069874162, - 0.8213566359351958, - 0.7617325651759943, - 0.691363261788106, - 0.6101771698127223, - 0.5199680376192792, - 0.42464226014477324, - 0.3294124091918056, - 0.23973940689476095, - 0.16046418705756912, - 0.0950973125057145, - 0.045270648377059804, - 0.010528471404511328, - -0.010520056502955044, - -0.02046640146643357, - -0.021851051327309273, - -0.016606641808757434, - -0.006312433808321032, - 0.008350211717997774, - 0.02684226057655873, - 0.04845161595761708, - 0.07221571821430658, - 0.09646823765803259, - 0.11920567128367335, - 0.13838991588466282, - 0.15242093590036462, - 0.16038505447913776, - 0.1624976193036723, - 0.15984037772360102, - 0.15396114052310378, - 0.14667884481891807, - 0.13930473368140947, - 0.13245861467559902, - 0.12599794520112245, - 0.11915395346355806, - 0.11095621291791585, - 0.10066885237719614, - 0.08814606325344741, - 0.07402689842577229, - 0.05950238687747854, - 0.04608844742872991, - 0.03511967158918632, - 0.027377458981315186, - 0.02280698446319341, - 0.02072189325761741, - 0.019950269341817612, - 0.01933071475042495, - 0.018208874275746495, - 0.016617194531516177, - 0.015305374099720185, - 0.015475944274810085, - 0.01826409326011077, - 0.024336410993157444, - 0.033456519067382916, - 0.0445499049773136, - 0.05611750514557581, - 0.06677707967661038, - 0.07616144015838425, - 0.08555484237180352, - 0.09816663934767304, - 0.11901652982970382, - 0.1540030653713606, - 0.20902879582720107, - 0.288685828413637, - 0.39443466478328043, - 0.5255024007223444 - ], - "pressure:branch134_seg2:RESISTANCE_81": [ - 8273.86801840377, - 9507.412009402275, - 10848.094819671083, - 12228.175378114598, - 13574.56120842995, - 14825.425631158709, - 15936.66030259805, - 16886.189105851605, - 17666.330537586902, - 18289.499852335415, - 18772.426048313722, - 19129.986576765536, - 19377.337359707486, - 19518.56386440695, - 19554.921756853073, - 19486.623751893254, - 19312.4657647991, - 19040.8295111684, - 18682.879021237688, - 18255.28743478381, - 17778.841958868587, - 17270.236270741498, - 16743.988226685244, - 16209.096370189101, - 15669.761463135383, - 15128.921717316965, - 14589.874928439986, - 14058.965935737646, - 13545.710607201003, - 13061.164396690368, - 12613.657575291569, - 12205.824268980783, - 11830.485604423466, - 11469.294443048644, - 11096.129549635285, - 10680.589294048264, - 10195.558145065512, - 9623.11645095196, - 8962.682116783944, - 8228.84696464834, - 7453.388818510296, - 6678.711017463881, - 5949.237186122762, - 5304.34745494721, - 4772.599624488911, - 4367.268625706522, - 4084.6472313503364, - 3913.4212223684117, - 3832.5094854744616, - 3821.2456065677075, - 3863.907939785316, - 3947.6494802528214, - 4066.927478487447, - 4217.356987756217, - 4393.145227904745, - 4586.461948406037, - 4783.751855346875, - 4968.716810203831, - 5124.777208004633, - 5238.917045707102, - 5303.703725578355, - 5320.889062491742, - 5299.272877613794, - 5251.446334773137, - 5192.206162009719, - 5132.219087121842, - 5076.527133768448, - 5023.9707433961985, - 4968.296094989421, - 4901.608942212258, - 4817.923104604549, - 4716.052455388214, - 4601.195575409296, - 4483.041272373973, - 4373.921274689019, - 4284.692245529399, - 4221.710731032837, - 4184.530738477923, - 4167.568894539778, - 4161.291872026934, - 4156.251906263203, - 4147.125934697016, - 4134.177904726464, - 4123.5064801962135, - 4124.89403805586, - 4147.57513125624, - 4196.972349687411, - 4271.162797299643, - 4361.405507089336, - 4455.5058650344445, - 4542.219596864924, - 4618.559690538262, - 4694.973337080984, - 4797.56804925097, - 4967.17817831287, - 5251.787385913424, - 5699.411859163478, - 6347.40756874849, - 7207.655434331226, - 8273.86801840377 - ], - "flow:branch135_seg0:RESISTANCE_82": [ - 0.8961448829856461, - 1.1528075000843176, - 1.431091896806186, - 1.7169649649168426, - 1.995319434737329, - 2.253454719392908, - 2.482400864449866, - 2.6778194587256627, - 2.838219358386507, - 2.966211216307684, - 3.065360784835569, - 3.138625346465811, - 3.1891695154203354, - 3.2178615332229046, - 3.22494380271541, - 3.210606419627649, - 3.1745840112691552, - 3.1186612342794917, - 3.0451871113511366, - 2.9574641527232974, - 2.85975565332889, - 2.7554105208247, - 2.647330088507588, - 2.5373596788701596, - 2.4263461892015474, - 2.31492230070201, - 2.203807283941245, - 2.094331635909518, - 1.988465339162576, - 1.8884741958287192, - 1.7960410252373327, - 1.711654550981784, - 1.6338166177109428, - 1.558710012150054, - 1.480960516536557, - 1.3943294715749055, - 1.2932844777923542, - 1.174138050497358, - 1.036819228532214, - 0.884338091240714, - 0.7231894026164071, - 0.5621220770274354, - 0.41027855023980686, - 0.275802531611995, - 0.1646062837285618, - 0.07958398235974905, - 0.019996097929413283, - -0.01640241435962831, - -0.033852644229622135, - -0.03666389216380296, - -0.02803329878841187, - -0.010655104629319356, - 0.014254481901628107, - 0.045763903460902214, - 0.08257533137910054, - 0.12301687688324087, - 0.16424621837732845, - 0.20285934164464048, - 0.23542666001325077, - 0.259276836823031, - 0.2728821467223917, - 0.27660788482171816, - 0.27230144977126186, - 0.2625236200513332, - 0.2503248411736386, - 0.23789895642532927, - 0.22626870414042757, - 0.21520192420216913, - 0.20342663929452687, - 0.18933726073542062, - 0.17173618309631414, - 0.15039351525121844, - 0.1264070542489897, - 0.10177930871397327, - 0.07904322676537422, - 0.06042634893330849, - 0.04723223514265252, - 0.039359531110212766, - 0.03565325798773972, - 0.034173754041259274, - 0.032981783839270834, - 0.031004462932860456, - 0.02831490820869385, - 0.02617322864049622, - 0.026589299505483145, - 0.031442174282924285, - 0.041822634476725636, - 0.057313425838866845, - 0.07608447557669616, - 0.0956450535656076, - 0.11371121141569984, - 0.12973098803226857, - 0.14594448852257094, - 0.167822420135127, - 0.20386808566581094, - 0.2640407833112128, - 0.3581784354253008, - 0.4940390673459585, - 0.6738688060155668, - 0.8961448829856461 - ], - "pressure:branch135_seg0:RESISTANCE_82": [ - 8400.893832871225, - 9661.629248299947, - 11028.571573109168, - 12432.789707243652, - 13800.076233472208, - 15068.045441516053, - 16192.636613233988, - 17152.539326849965, - 17940.42903365483, - 18569.12934845647, - 19056.155366817093, - 19416.033359908688, - 19664.30801932231, - 19805.244176650987, - 19840.032522814305, - 19769.606814436367, - 19592.66353192815, - 19317.96896878153, - 18957.06160353897, - 18526.163477670532, - 18046.216039405426, - 17533.66923589075, - 17002.774513950604, - 16462.59615978923, - 15917.29416140065, - 15369.976270138972, - 14824.175567255941, - 14286.427498757339, - 13766.408685274091, - 13275.248823135933, - 12821.213977538902, - 12406.704775225911, - 12024.362226678606, - 11655.436051789467, - 11273.527911992187, - 10847.99330281003, - 10351.656891791272, - 9766.405629996269, - 9091.89095382957, - 8342.898474358595, - 7551.330690958125, - 6760.16256552621, - 6014.302050314648, - 5353.751319840499, - 4807.551606948374, - 4389.919200450675, - 4097.221506174001, - 3918.4307884978425, - 3832.714671935314, - 3818.9057274453185, - 3861.2994926438437, - 3946.661767369429, - 4069.0184949608815, - 4223.793834387029, - 4404.612807533917, - 4603.263040466516, - 4805.782953821948, - 4995.451915175598, - 5155.423679342036, - 5272.576550719355, - 5339.406290951502, - 5357.70724191791, - 5336.553887979083, - 5288.52485923585, - 5228.604046731313, - 5167.567682545067, - 5110.439491803097, - 5056.079096196459, - 4998.238500329237, - 4929.03099854483, - 4842.57391266231, - 4737.738009731812, - 4619.9157058133405, - 4498.94339068174, - 4387.262990767214, - 4295.816260141181, - 4231.006329037417, - 4192.335341804908, - 4174.130003460068, - 4166.862630269224, - 4161.007632510807, - 4151.294965654375, - 4138.083782308624, - 4127.563780172558, - 4129.607534267901, - 4153.445018540917, - 4204.434188458647, - 4280.525477108449, - 4372.7295053256075, - 4468.811722890607, - 4557.553298425855, - 4636.242980453062, - 4715.884240669529, - 4823.349377244809, - 5000.40689976575, - 5295.977216241866, - 5758.384532457739, - 6425.736530037699, - 7309.066260135896, - 8400.893832871225 - ], - "flow:branch136_seg0:RESISTANCE_83": [ - 0.4425822391515432, - 0.5743876439152705, - 0.7203779456674727, - 0.8734882422695772, - 1.0257714503215143, - 1.1700583977020766, - 1.300801220833379, - 1.41466932287462, - 1.5100755092813618, - 1.5876433292799825, - 1.648812785590174, - 1.6951721547720457, - 1.7284081397666529, - 1.7492477243605393, - 1.7580447120390645, - 1.7549085880992816, - 1.7397831302868985, - 1.7134007688267525, - 1.6768326231301458, - 1.6317799179453112, - 1.5804028305541529, - 1.524618639502183, - 1.4661622191853172, - 1.406224938233686, - 1.345481723459397, - 1.2843779243638656, - 1.2233141623880195, - 1.1629390751995754, - 1.104217458316519, - 1.0483169191054884, - 0.9962231518106552, - 0.9484137166264173, - 0.9044056041752851, - 0.8625529396080882, - 0.8202762198991005, - 0.7743845173574968, - 0.7218052898269154, - 0.6602606889126093, - 0.5891121729543345, - 0.5093663030164225, - 0.4239276930040236, - 0.3370363408970271, - 0.25345793609310013, - 0.17769744286839054, - 0.11332175511707504, - 0.06235272291087724, - 0.025049531861205693, - 0.0006135533960738607, - -0.012933329185087342, - -0.017756244840511234, - -0.015719106420609478, - -0.008399996136626408, - 0.0033484776121384574, - 0.018890717464965276, - 0.03756418365379856, - 0.058541429161413625, - 0.08045419941518366, - 0.1016009709270862, - 0.12016461443751862, - 0.13459159350656974, - 0.14385578337057908, - 0.14784145486774966, - 0.14722288540584033, - 0.14320788367747786, - 0.13733495105393753, - 0.13086712364340197, - 0.12455667750273357, - 0.11851175942888632, - 0.1122516425396426, - 0.10501399182254827, - 0.09611484858738702, - 0.08528911576092209, - 0.0728993756210966, - 0.059831726316362153, - 0.047336331824754746, - 0.03662751360619583, - 0.02854252666128226, - 0.02326127095848089, - 0.020384839398341844, - 0.019021488502829517, - 0.01817192440378044, - 0.017148157787044458, - 0.01579052584500936, - 0.014559746471743285, - 0.014376948112958438, - 0.016233672057679827, - 0.020830408688377308, - 0.02817987416525222, - 0.037570796289369934, - 0.047817332478334924, - 0.05768931370368761, - 0.0666382070923266, - 0.07539778751718976, - 0.08632494161069532, - 0.10341761072183715, - 0.13167298164616534, - 0.17639634958321063, - 0.24203165124179493, - 0.3307124271338583, - 0.4425822391515432 - ], - "pressure:branch136_seg0:RESISTANCE_83": [ - 7863.840755809661, - 9014.828877572987, - 10289.686335130533, - 11626.719008597802, - 12956.529147461162, - 14216.512096250071, - 15358.22124466995, - 16352.572220884778, - 17185.704879547327, - 17863.06435209346, - 18397.22543413679, - 18802.057719705244, - 19092.290309275235, - 19274.271574558265, - 19351.091097577308, - 19323.704956549638, - 19191.622191738184, - 18961.23873577045, - 18641.908117977087, - 18248.486250231945, - 17799.836838441715, - 17312.702480043517, - 16802.2329318021, - 16278.831797002023, - 15748.392860842661, - 15214.805129143482, - 14681.567020809676, - 14154.34275160089, - 13641.557379526863, - 13153.40701310299, - 12698.49920805707, - 12281.004249455686, - 11896.704267347382, - 11531.226691770411, - 11162.04606295333, - 10761.297667183313, - 10302.150590114097, - 9764.71356514526, - 9143.410539705143, - 8447.0312886209, - 7700.940296066224, - 6942.163261555494, - 6212.316474637385, - 5550.739447831204, - 4988.580012374581, - 4543.4939345140565, - 4217.744547537053, - 4004.3578430430416, - 3886.059955594574, - 3843.943938868172, - 3861.73321031647, - 3925.647197863805, - 4028.2405153223463, - 4163.962821158496, - 4327.028499793028, - 4510.211886315449, - 4701.564724404521, - 4886.228493447027, - 5048.335147688239, - 5174.3184605210645, - 5255.2178174962155, - 5290.022615969522, - 5284.62097022958, - 5249.560046085474, - 5198.274776701196, - 5141.794600213091, - 5086.688752589036, - 5033.901623620367, - 4979.235275201001, - 4916.032631729889, - 4838.321037308535, - 4743.785536924614, - 4635.592373235791, - 4521.479381010018, - 4412.363592758633, - 4318.849046903863, - 4248.24705637936, - 4202.128594144707, - 4177.010211748171, - 4165.104776691522, - 4157.685974796144, - 4148.7459528187965, - 4136.890458411644, - 4126.142701582704, - 4124.546418486298, - 4140.760224055188, - 4180.901136867462, - 4245.080200543616, - 4327.08624450395, - 4416.563921567786, - 4502.770804730277, - 4580.91684139481, - 4657.409706302142, - 4752.830865918834, - 4902.0922649595, - 5148.831739476621, - 5539.377676140337, - 6112.536665430686, - 6886.939808181098, - 7863.840755809661 - ], - "flow:branch137_seg0:RESISTANCE_84": [ - 1.1679463080785455, - 1.4961129550708643, - 1.8480725690581323, - 2.2058446615287464, - 2.5504660493093554, - 2.8665692893430785, - 3.143821984790078, - 3.377946060297976, - 3.5679827078856627, - 3.7180723425764284, - 3.8331359576719177, - 3.9168138182784835, - 3.972962120434282, - 4.002218031632897, - 4.004539568755744, - 3.980066857137701, - 3.9283808847801542, - 3.8520854965036047, - 3.754450929006255, - 3.6398917001098523, - 3.514036166577144, - 3.3810332322565624, - 3.2443645350230153, - 3.1060910445664476, - 2.966994641203919, - 2.827730691752093, - 2.689194669212339, - 2.553173883098781, - 2.4222946165208605, - 2.2994778179740463, - 2.1867112775576767, - 2.084266815721779, - 1.9897454452293286, - 1.897734918397196, - 1.801010737546423, - 1.691513021155381, - 1.562482640038666, - 1.409828051642077, - 1.2344352946795136, - 1.0410908517886945, - 0.838902725987571, - 0.6395041692692881, - 0.4545013227140609, - 0.29372971081711374, - 0.1638025711010548, - 0.06739021242856809, - 0.002443982053927919, - -0.03456369185276268, - -0.04942611643644016, - -0.04766763948025119, - -0.03300954188591133, - -0.008528452085735674, - 0.024616300574748885, - 0.06549370669578515, - 0.11248439260477194, - 0.16341202414066883, - 0.21452275891800898, - 0.26142208897331404, - 0.29983349233638923, - 0.32663780906853823, - 0.3402822144200705, - 0.34171235530798605, - 0.3336954687997421, - 0.31968458122773263, - 0.3035931741028976, - 0.2879852448512876, - 0.273798864263401, - 0.2603634939755916, - 0.2457778178490897, - 0.2279004218523397, - 0.20531783805295437, - 0.17798559658975932, - 0.14762629386540524, - 0.11702235250226667, - 0.08947963009006507, - 0.06771119370353564, - 0.053092865599957476, - 0.04511697143952025, - 0.041994323740691786, - 0.04108452353216426, - 0.03993736692859492, - 0.03741224493230948, - 0.033924918779447, - 0.03138451707496087, - 0.03252540606252956, - 0.03969458680961445, - 0.05404611060504865, - 0.07467777831331489, - 0.09890368907998816, - 0.12339431098104707, - 0.14534164466003072, - 0.164469063520496, - 0.18429091498594033, - 0.21248618236607533, - 0.2604585307295368, - 0.34106085913965295, - 0.46646475520630837, - 0.6458495466542563, - 0.8807258741414833, - 1.1679463080785455 - ], - "pressure:branch137_seg0:RESISTANCE_84": [ - 8699.6156751216, - 10020.382969160984, - 11436.909454218408, - 12876.829332688823, - 14263.821770764785, - 15536.037654989594, - 16651.89234554634, - 17594.16793787757, - 18359.00553213978, - 18963.068993465648, - 19426.16376846762, - 19762.94077654341, - 19988.919991015373, - 20106.665810167295, - 20116.009265182787, - 20017.514316357814, - 19809.494572498625, - 19502.429688101456, - 19109.48133487896, - 18648.416555312004, - 18141.887710935665, - 17606.592831727532, - 17056.54441248867, - 16500.037206465455, - 15940.21803543301, - 15379.724544212886, - 14822.160729322544, - 14274.71994807667, - 13747.972162010452, - 13253.673267939552, - 12799.823494329268, - 12387.516832794932, - 12007.098116028967, - 11636.784753409702, - 11247.500419424838, - 10806.806631964244, - 10287.500026986856, - 9673.11343564024, - 8967.212884409102, - 8189.062456890378, - 7375.318993778797, - 6572.802666766657, - 5828.224534668881, - 5181.169482762734, - 4658.2537071413535, - 4270.224359116854, - 4008.8362572602405, - 3859.892037083058, - 3800.0754637653326, - 3807.15277912429, - 3866.1470007274834, - 3964.6756690941684, - 4098.07284910685, - 4262.591521448022, - 4451.714217620494, - 4656.681878752358, - 4862.386472704626, - 5051.141490367511, - 5205.735279057108, - 5313.614203388269, - 5368.528633297843, - 5374.284499495518, - 5342.019058759361, - 5285.629653452105, - 5220.866812863823, - 5158.049818290668, - 5100.954108921656, - 5046.880979241718, - 4988.178231214476, - 4916.227348480038, - 4825.339568230296, - 4715.335913293907, - 4593.149291113786, - 4469.97807553904, - 4359.127301140591, - 4271.5162075538055, - 4212.682045612923, - 4180.581586153154, - 4168.013913633051, - 4164.352254623683, - 4159.735310954903, - 4149.572491007417, - 4135.537102680897, - 4125.312786725091, - 4129.90450521544, - 4158.758197516559, - 4216.518556231749, - 4299.554514274141, - 4397.0561674804985, - 4495.623199548083, - 4583.954298336588, - 4660.936129006558, - 4740.712831979905, - 4854.189894148411, - 5047.263472214395, - 5371.662432813199, - 5876.373578775056, - 6598.340810253248, - 7543.643979641067, - 8699.6156751216 - ], - "flow:branch138_seg2:RESISTANCE_85": [ - 1.4705152629435954, - 1.8877604771710204, - 2.337241613871005, - 2.7959876075677945, - 3.239619589229704, - 3.6480961523186464, - 4.00768269969753, - 4.31227993196117, - 4.560266468362278, - 4.756648272270967, - 4.907536262556462, - 5.017781562813535, - 5.0923939976671155, - 5.132384800951292, - 5.137863580426209, - 5.10893504658215, - 5.045095673797029, - 4.949470836790136, - 4.826082480694187, - 4.680570348057779, - 4.520052519593053, - 4.349946378358234, - 4.17484909882579, - 3.997513184712621, - 3.8190608823160885, - 3.640352720123941, - 3.462493645717206, - 3.287696288247343, - 3.1192519649664026, - 2.9608880102175066, - 2.8152394025795298, - 2.682850533044404, - 2.560878281363457, - 2.442664014367678, - 2.31911496039807, - 2.179942314427297, - 2.016323508450753, - 1.8227524581104204, - 1.5999032306506422, - 1.353493200806172, - 1.0948658743634672, - 0.8387057750477453, - 0.5999071312277088, - 0.39128732346368733, - 0.22168743088560866, - 0.09484635710560586, - 0.008591418547690103, - -0.0414021125198007, - -0.06248078442809298, - -0.06169334430550196, - -0.04400783225343504, - -0.013484090620268415, - 0.02828473152926532, - 0.0800298942980174, - 0.13976098507743384, - 0.2047702798119492, - 0.2703572745884319, - 0.3309611492944609, - 0.38107843962573995, - 0.4165870672937832, - 0.4353267602892706, - 0.43830744470491906, - 0.4288786741406851, - 0.41141792740944666, - 0.3909364753055489, - 0.370831677440506, - 0.352479136153472, - 0.3351748933051991, - 0.3165853085286825, - 0.2939812217824826, - 0.26546567103623386, - 0.23085343688352067, - 0.19218512356210996, - 0.1529218641129235, - 0.11727490054045624, - 0.08878729329078044, - 0.0693546622060887, - 0.05849933285149013, - 0.05406625077928692, - 0.05271803371648858, - 0.051292054589665015, - 0.04820061837491182, - 0.04381787412207887, - 0.040455670570502304, - 0.04155197259988949, - 0.0501604361022475, - 0.06789159799385346, - 0.09377084725005123, - 0.1245321740461746, - 0.1559553181822084, - 0.1843623230044981, - 0.20915249621919133, - 0.23446192105110536, - 0.26974380823428723, - 0.3292846607745613, - 0.4294287240106572, - 0.5859582343324246, - 0.8108793926155949, - 1.106862329375854, - 1.4705152629435954 - ], - "pressure:branch138_seg2:RESISTANCE_85": [ - 8621.856562293213, - 9933.549698218638, - 11346.582853863101, - 12788.741926147595, - 14183.387102127363, - 15467.514243003643, - 16597.945916956687, - 17555.507765861024, - 18335.102657564097, - 18952.46783138554, - 19426.814173542003, - 19773.392153790373, - 20007.951150071105, - 20133.670176627536, - 20150.893807206026, - 20059.951220013267, - 19859.259482328314, - 19558.64382983204, - 19170.74804523004, - 18713.301778467077, - 18208.682128890763, - 17673.919715259213, - 17123.466667865516, - 16565.976028395846, - 16004.975800802977, - 15443.171227165567, - 14884.03592948855, - 14334.525746620038, - 13804.987587524984, - 13307.1390674245, - 12849.263764409767, - 12433.073079601816, - 12049.629100263419, - 11677.999091579122, - 11289.59812131974, - 10852.081289002186, - 10337.713101208505, - 9729.18408904134, - 9028.613316656289, - 8253.974486181894, - 7440.928159249708, - 6635.638050428316, - 5884.927122450331, - 5229.089354798921, - 4695.918434288137, - 4297.168346432234, - 4026.0088292270384, - 3868.8442427779796, - 3802.57925443599, - 3805.0547287339214, - 3860.6526456734277, - 3956.61008513051, - 4087.918666849486, - 4250.589855174059, - 4438.36639305903, - 4642.736012570444, - 4848.921746812076, - 5039.442054179949, - 5196.99570243555, - 5308.624120426023, - 5367.536064370174, - 5376.906437366794, - 5347.265225897847, - 5292.373903350492, - 5227.986393985736, - 5164.7829719702795, - 5107.0881162544065, - 5052.688794722357, - 4994.248745754486, - 4923.18831314113, - 4833.544020275494, - 4724.7335931955295, - 4603.172076293716, - 4479.740228168346, - 4367.676923808662, - 4278.120476870072, - 4217.0301445244795, - 4182.904262388237, - 4168.967989120563, - 4164.729601221291, - 4160.246752841374, - 4150.52820958486, - 4136.750183242241, - 4126.180429126897, - 4129.626872124479, - 4156.689285549196, - 4212.430711818798, - 4293.787267759438, - 4390.491603326582, - 4489.276493043652, - 4578.579550255681, - 4656.512379525693, - 4736.077579303268, - 4846.99319358147, - 5034.171679807695, - 5348.994416825045, - 5841.075996811531, - 6548.160294927942, - 7478.6413963549485, - 8621.856562293213 - ], - "flow:branch139_seg2:RESISTANCE_86": [ - 0.5452152695059653, - 0.7102027086599215, - 0.894239942700361, - 1.0882790391676562, - 1.2821771897561796, - 1.4666275049728628, - 1.6343050280336717, - 1.780608532819561, - 1.903431783388461, - 2.003392222629937, - 2.0822266584590206, - 2.1421624999510995, - 2.1853734980999056, - 2.2129646632470306, - 2.225527342555237, - 2.2231496214765336, - 2.2058095557340462, - 2.17427323902811, - 2.12975552402822, - 2.0743513987572264, - 2.010657201267678, - 1.9411319896382473, - 1.8680145949542204, - 1.7928604145751652, - 1.7165974425718913, - 1.639793907279489, - 1.562926866638218, - 1.4867550634163387, - 1.412436738276602, - 1.3414213681647509, - 1.2750185428069967, - 1.2139620940621443, - 1.1578153439535548, - 1.1047227508942978, - 1.0515533417797593, - 0.9943207754232358, - 0.929035465692106, - 0.8526257995248924, - 0.7639191493620522, - 0.6638587455588061, - 0.5558407788777, - 0.44502195913117526, - 0.3374544046152012, - 0.23901999407546506, - 0.1545332970260852, - 0.08687657986578916, - 0.036788915147175194, - 0.0034226335572461334, - -0.015607489779726359, - -0.02302031121518611, - -0.021349321232160868, - -0.012678342588122993, - 0.001780565174253513, - 0.021154077007454083, - 0.04465569461381355, - 0.07126032789295864, - 0.0993112761983113, - 0.1266955251461501, - 0.1510815707426611, - 0.170396032267945, - 0.183216639873928, - 0.18923630977983483, - 0.18915111618432154, - 0.18446568121578227, - 0.17712115773761525, - 0.16880592561809474, - 0.16061346559339934, - 0.15280300322904558, - 0.1448509940593932, - 0.13580877957838036, - 0.12475165601437078, - 0.11124402454142586, - 0.09561631886088465, - 0.07891569681559328, - 0.06270426300475444, - 0.048571903063236534, - 0.03768366184924281, - 0.030413167663740946, - 0.026354036561547528, - 0.024421408921625837, - 0.02333770799056438, - 0.02212941519509343, - 0.020472149729794612, - 0.018844776680654082, - 0.01836050973069647, - 0.020310705678356418, - 0.02567854390427434, - 0.034619319285083265, - 0.0463705014636674, - 0.059461889749536055, - 0.07228210386323147, - 0.08395922673228488, - 0.0951568635751754, - 0.10858414163879264, - 0.12908036121464564, - 0.16291237141429799, - 0.21691862655007835, - 0.29693057547518514, - 0.40620266741856653, - 0.5452152695059653 - ], - "pressure:branch139_seg2:RESISTANCE_86": [ - 7705.720017490387, - 8827.40951804418, - 10078.61163496104, - 11397.81277124397, - 12716.05566783801, - 13970.06617320338, - 15110.044574351054, - 16104.708810938291, - 16939.739352011573, - 17619.333966867554, - 18155.30057987165, - 18562.78253397233, - 18856.55837036637, - 19044.14065185568, - 19129.54973239599, - 19113.384472889535, - 18995.4956821913, - 18781.091752312856, - 18478.432024032416, - 18101.759557797883, - 17668.72591028755, - 17196.049321642877, - 16698.950788897066, - 16188.004892129438, - 15669.520724996715, - 15147.36146496656, - 14624.770455201873, - 14106.90611140475, - 13601.642889940984, - 13118.835256578821, - 12667.38663483619, - 12252.28608021582, - 11870.564778218679, - 11509.607577494013, - 11148.128132390468, - 10759.024761242583, - 10315.173721179604, - 9795.692233861007, - 9192.608031650272, - 8512.333794151857, - 7777.958985265319, - 7024.542196624536, - 6293.229575981788, - 5624.009874398367, - 5049.615596247732, - 4589.642220881709, - 4249.114433371162, - 4022.2692388286823, - 3892.890362165186, - 3842.4932894166577, - 3853.853741637151, - 3912.8045669509943, - 4011.1054140318415, - 4142.818863998646, - 4302.597801415115, - 4483.473012087695, - 4674.181191789365, - 4860.356725410923, - 5026.148566571071, - 5157.46055500399, - 5244.623196088029, - 5285.548739055906, - 5284.9695388325945, - 5253.11497319603, - 5203.182233380952, - 5146.649999103225, - 5090.952447577301, - 5037.851958997739, - 4983.789145248728, - 4922.314422705498, - 4847.141067256892, - 4755.307601156397, - 4649.060522775779, - 4535.519076851279, - 4425.3034435413265, - 4329.222676146328, - 4255.197490278469, - 4205.768048658341, - 4178.171494871886, - 4165.032263526175, - 4157.664575644325, - 4149.4498330601355, - 4138.182688836377, - 4127.11877226148, - 4123.826417667591, - 4137.085089538191, - 4173.579066349751, - 4234.364141400858, - 4314.256148552462, - 4403.25972884459, - 4490.419694717901, - 4569.808199600818, - 4645.936853649227, - 4737.224026189202, - 4876.570357141258, - 5106.5818708551415, - 5473.750727227937, - 6017.722822851473, - 6760.62397256909, - 7705.720017490387 - ], - "flow:branch140_seg0:RESISTANCE_87": [ - 0.4280410747651334, - 0.5602323215901331, - 0.7146388061765866, - 0.8863535542111274, - 1.0687239871191392, - 1.2545551514338276, - 1.4369987077462754, - 1.6103506306017752, - 1.770260867720051, - 1.914274854686779, - 2.0411528404892008, - 2.1505268558195714, - 2.2426385623440117, - 2.3175624638170205, - 2.3753564173627026, - 2.4159608461131916, - 2.439273042046413, - 2.445698909630127, - 2.4359870878290906, - 2.411519935738364, - 2.374193979328288, - 2.3260308248045627, - 2.2691144872065125, - 2.2052516625074974, - 2.1358995089610078, - 2.062254500920298, - 1.9853588928525967, - 1.9063206677432893, - 1.8264222447249758, - 1.7471100537331326, - 1.6697763839168664, - 1.5954998356567784, - 1.524643154890139, - 1.4565882450857335, - 1.3897149445453651, - 1.3215365767752123, - 1.2491706158102596, - 1.1699223056264905, - 1.082027855557237, - 0.984985329146535, - 0.879985979020093, - 0.7697364604662457, - 0.658046449167733, - 0.5492270351240157, - 0.44745244279571605, - 0.3560710159044623, - 0.2772075707459395, - 0.21189593376323823, - 0.15990444324911526, - 0.12034423865498918, - 0.09201758277437376, - 0.07361101652590672, - 0.06409404651999145, - 0.06252941736592749, - 0.06799456274953325, - 0.07944963005625656, - 0.09546506905563841, - 0.11427780101802945, - 0.13388837155671107, - 0.15232119524845342, - 0.16788356775059068, - 0.1795220147978622, - 0.18687457811324248, - 0.19023351659978638, - 0.1904170963636801, - 0.18836446770380985, - 0.18487799478903044, - 0.18039315580414625, - 0.1748930440348747, - 0.16802436753009328, - 0.1593158206889653, - 0.14845796723062504, - 0.13553204048366632, - 0.12106225578712451, - 0.10598266231554784, - 0.09139630360207503, - 0.07830319369517257, - 0.06732400181654509, - 0.05862110340246556, - 0.05186572351092209, - 0.04645370583845347, - 0.041796932536860815, - 0.03756314103334088, - 0.03385220036257689, - 0.031192500968633637, - 0.03033989118438355, - 0.03201157211263281, - 0.036538620282071, - 0.04371694485970703, - 0.05284072452123364, - 0.06295060415685505, - 0.0733480398228934, - 0.08414402494624632, - 0.09671477190613476, - 0.113952277367961, - 0.14003727079990022, - 0.18003974756235672, - 0.23901418502102637, - 0.3208691079758541, - 0.4280410747651334 - ], - "pressure:branch140_seg0:RESISTANCE_87": [ - 6424.079457724572, - 7173.012903754732, - 8047.807440974168, - 9020.662460262694, - 10053.887579567487, - 11106.719575730156, - 12140.358977860666, - 13122.489459858441, - 14028.465670968977, - 14844.381203396928, - 15563.212210855154, - 16182.873952271148, - 16704.735569011882, - 17129.21916431747, - 17456.65252944773, - 17686.698129883353, - 17818.774070266238, - 17855.180014447807, - 17800.15739878015, - 17661.538019888067, - 17450.06670214206, - 17177.196915711425, - 16854.735709871118, - 16492.91897446827, - 16100.002282987585, - 15682.764296512849, - 15247.10993877033, - 14799.31652036355, - 14346.649625083426, - 13897.30404480942, - 13459.167835183314, - 13038.35183878609, - 12636.911203529273, - 12251.344085106073, - 11872.471409160959, - 11486.204835955783, - 11076.213328783493, - 10627.229667130236, - 10129.261042441824, - 9579.463718777462, - 8984.586773368, - 8359.96484236369, - 7727.1817568112865, - 7110.662125502903, - 6534.055141444007, - 6016.330945715511, - 5569.527748325492, - 5199.502723778444, - 4904.943385772241, - 4680.8138683953475, - 4520.328355831381, - 4416.045406535226, - 4362.126729516229, - 4353.262276443449, - 4384.225220386464, - 4449.124245386879, - 4539.860192036748, - 4646.444285282254, - 4757.548556744308, - 4861.980268367383, - 4950.149353283121, - 5016.087321665337, - 5057.743488115091, - 5076.773654152189, - 5077.813730772212, - 5066.184501964862, - 5046.431785826148, - 5021.022796982233, - 4989.8617499398015, - 4950.94705862743, - 4901.608527126362, - 4840.09303497119, - 4766.860812004501, - 4684.881815842659, - 4599.447929903505, - 4516.808480176737, - 4442.6290760380525, - 4380.426137448841, - 4331.119607279444, - 4292.846801303764, - 4262.184853990535, - 4235.801766154469, - 4211.815094293344, - 4190.790649397623, - 4175.722043265576, - 4170.891557139042, - 4180.362515226864, - 4206.010641463015, - 4246.679653154607, - 4298.370698566811, - 4355.648522751947, - 4414.555504191887, - 4475.720479452518, - 4546.940420756998, - 4644.600021347496, - 4792.385328543507, - 5019.020552062573, - 5353.141983961035, - 5816.893487903266, - 6424.079457724572 - ], - "flow:branch141_seg0:RESISTANCE_88": [ - 0.8058034877887582, - 1.038702057837852, - 1.292217789200531, - 1.5535860331832867, - 1.8090075400698769, - 2.0467252023762206, - 2.258272634458894, - 2.4393250527257844, - 2.588332421339242, - 2.707490387429656, - 2.7999258146775494, - 2.8684453732245885, - 2.915923737513628, - 2.9432160686156217, - 2.9505986103594477, - 2.938157201783215, - 2.905679053632571, - 2.8547178408323117, - 2.787376342127911, - 2.7067536617451156, - 2.616752559938317, - 2.5205419312935122, - 2.4208740484005156, - 2.319491262794812, - 2.217226189747646, - 2.1146591759850524, - 2.0124275159406593, - 1.9117211645384145, - 1.8143205579874186, - 1.722297401062411, - 1.6372310259142488, - 1.55963315318659, - 1.4881958646126179, - 1.419510617365968, - 1.3486868722702012, - 1.2700093120331435, - 1.1783475171260318, - 1.0702621286203968, - 0.9455498617699113, - 0.8068772391613469, - 0.6601403995039955, - 0.5132856521110996, - 0.3746975406510101, - 0.2518572364697954, - 0.1502272715169049, - 0.0724525316867012, - 0.01794871731466895, - -0.015356377671696649, - -0.03135980489942552, - -0.03397720995361706, - -0.026207494104884477, - -0.010513091990488844, - 0.011981359482572167, - 0.040421148719255014, - 0.07369272577257316, - 0.11030911810279452, - 0.14773346033708937, - 0.18290032677482299, - 0.2126805874259347, - 0.23459858724267205, - 0.24722080539951108, - 0.2508224259913633, - 0.24702199241844527, - 0.2381666917514814, - 0.22703516254534126, - 0.21566350005253018, - 0.2050399458780362, - 0.1949898379043049, - 0.1843735206595715, - 0.1717219110513076, - 0.15590675708264323, - 0.13667824849666704, - 0.1149827597041062, - 0.09261969351344967, - 0.07189511175470159, - 0.054860386599361474, - 0.04274004236362905, - 0.035493127690693925, - 0.03209773573415988, - 0.030789308617444694, - 0.029791807086864183, - 0.028081844438727847, - 0.025677435906462806, - 0.02369140054758431, - 0.023940658938179652, - 0.0281606399379201, - 0.037387989450211254, - 0.05129855906353893, - 0.06828333123937426, - 0.08607168656637261, - 0.10255183262543031, - 0.11713439145619532, - 0.13173634848542182, - 0.15121519662729196, - 0.18321264228676912, - 0.2367633852883689, - 0.32091079483176943, - 0.44279993768551196, - 0.6048058397836495, - 0.8058034877887582 - ], - "pressure:branch141_seg0:RESISTANCE_88": [ - 8305.998286697743, - 9550.834971294922, - 10905.869836713899, - 12302.876173978639, - 13668.097359065756, - 14938.691964061578, - 16069.407382079517, - 17037.127759435843, - 17833.568195657608, - 18470.464366467364, - 18964.529275368845, - 19330.76449988645, - 19584.535098732144, - 19730.411885166566, - 19769.871375134015, - 19703.372376018255, - 19529.777534894147, - 19257.391203058993, - 18897.45267717916, - 18466.526587208315, - 17985.4730832746, - 17471.229822957615, - 16938.50763030876, - 16396.6193281091, - 15850.015222917353, - 15301.797252603728, - 14755.371739026292, - 14217.09895971715, - 13696.495299028562, - 13204.63396407685, - 12749.956443352627, - 12335.19787013455, - 11953.36745594914, - 11586.246629723224, - 11207.6955891686, - 10787.166114826836, - 10297.236250283899, - 9719.522713217566, - 9052.938952046205, - 8311.737459327496, - 7527.432940202196, - 6742.4982073552155, - 6001.748424485377, - 5345.1702541702125, - 4801.960784910631, - 4386.256861716811, - 4094.9354183671226, - 3916.9205683219634, - 3831.3826739151464, - 3817.39271326738, - 3858.9216385646014, - 3942.8078019304858, - 4063.0400489024396, - 4215.049968656657, - 4392.885666237976, - 4588.59931282951, - 4788.6314302459, - 4976.597399357657, - 5135.772103296608, - 5252.9232314427245, - 5320.388652974982, - 5339.639219587706, - 5319.32600286016, - 5271.994655479834, - 5212.496926882585, - 5151.715692232134, - 5094.9330767165975, - 5041.215515946577, - 4984.471581628818, - 4916.849063567632, - 4832.317484740866, - 4729.54161594584, - 4613.579803326922, - 4494.049807207428, - 4383.277466953105, - 4292.227312454829, - 4227.444393730145, - 4188.709826862201, - 4170.561546839749, - 4163.56803857705, - 4158.2364193320445, - 4149.096714295459, - 4136.245214412523, - 4125.629908053545, - 4126.962187545391, - 4149.5178741503905, - 4198.83781274889, - 4273.189438671982, - 4363.972595818668, - 4459.050883611631, - 4547.136827537824, - 4625.08021801895, - 4703.127291356761, - 4807.2412184435, - 4978.266717491974, - 5264.494019625152, - 5714.259693546493, - 6365.753931774149, - 7231.671184982314, - 8305.998286697743 - ], - "flow:branch142_seg2:RESISTANCE_89": [ - 1.4341168907595092, - 1.8517717929720163, - 2.3076491172561684, - 2.7785236369684783, - 3.2395069056476093, - 3.669337625165031, - 4.052638089841078, - 4.381341015462577, - 4.652794593286732, - 4.870960333013447, - 5.041317405130747, - 5.169219674207023, - 5.259664494032773, - 5.314128853382463, - 5.333059025885881, - 5.316207859443518, - 5.263148650697551, - 5.1763907092515975, - 5.059531942626453, - 4.918262707788459, - 4.759478371727813, - 4.5890102256843, - 4.411911749320628, - 4.231308815085036, - 4.048743105634025, - 3.865200006609941, - 3.6817624650587177, - 3.500536534112324, - 3.3247293635069193, - 3.1581330595649875, - 3.0037466463079303, - 2.862692789985874, - 2.732771986995211, - 2.6080529394477927, - 2.479778757438948, - 2.337634443554025, - 2.172235582755976, - 1.9772777367790781, - 1.7521178799276105, - 1.5014101951602197, - 1.2357384644389704, - 0.9693240237401959, - 0.717375571666516, - 0.493503024646479, - 0.3077005529203162, - 0.16471661986333044, - 0.06373201573547456, - 0.0009088022626959791, - -0.030850511808276176, - -0.03850665997545076, - -0.027622951854672364, - -0.00252155039336693, - 0.03486580075340397, - 0.08306843061722842, - 0.14032823422245996, - 0.20405396829231306, - 0.26975994609582743, - 0.33195748014742876, - 0.3849375568568924, - 0.4240996955507538, - 0.44675458548596886, - 0.45328714626344524, - 0.4464759503008604, - 0.43060965126113554, - 0.4106876932942374, - 0.3904261614930491, - 0.37167668684040367, - 0.35412350667846687, - 0.3356714707430058, - 0.3135926803649051, - 0.28573436337765423, - 0.2515620409553324, - 0.21268766754753354, - 0.1723571238412572, - 0.13478031300914275, - 0.10374086674657508, - 0.08153536383408168, - 0.06819112041658039, - 0.06189348203974088, - 0.05941280972671887, - 0.05750853766153498, - 0.05422965960407241, - 0.04953209179129512, - 0.045403734407107287, - 0.04515394735196401, - 0.0520172809683154, - 0.0679792048780221, - 0.09255747806961134, - 0.12293632420363847, - 0.1549491572714102, - 0.18466745941696389, - 0.21082251951208525, - 0.23662642297335432, - 0.27063694445096736, - 0.32650048794955694, - 0.4205256829881482, - 0.5692492832985617, - 0.7856036833662984, - 1.0745014155246795, - 1.4341168907595092 - ], - "pressure:branch142_seg2:RESISTANCE_89": [ - 8221.809826388668, - 9451.610016642562, - 10793.957531701366, - 12180.464839194357, - 13537.84699494601, - 14803.499326187017, - 15932.141614080398, - 16900.01944413793, - 17699.324468177583, - 18341.721496924256, - 18843.344149001623, - 19219.957075153456, - 19486.275167051703, - 19646.64747235803, - 19702.388060156518, - 19652.769182018037, - 19496.53439424268, - 19241.072451066484, - 18896.977523251375, - 18481.005075758367, - 18013.458769795554, - 17511.5090564653, - 16990.036092130493, - 16458.244122955108, - 15920.672690111125, - 15380.223297792589, - 14840.08472332754, - 14306.45831746911, - 13788.787650338958, - 13298.238718198952, - 12843.642257364067, - 12428.303999817055, - 12045.747426460804, - 11678.50761294592, - 11300.799575512481, - 10882.250425644623, - 10395.227408795841, - 9821.166875078248, - 9158.175411727521, - 8419.9574313046, - 7637.67726829137, - 6853.210168486964, - 6111.338703186328, - 5452.137770887009, - 4905.035572713319, - 4484.014133373763, - 4186.661259718368, - 4001.676001621544, - 3908.1595355633017, - 3885.6157262539286, - 3917.6632043194227, - 3991.5752023092036, - 4101.663630123211, - 4243.598043111633, - 4412.201636639636, - 4599.844399763003, - 4793.318063248139, - 4976.460985322746, - 5132.462765911957, - 5247.77712080478, - 5314.485275802883, - 5333.720640800222, - 5313.664824272581, - 5266.945924352305, - 5208.284987851539, - 5148.624163731108, - 5093.415647387026, - 5041.729664082737, - 4987.396966959371, - 4922.385158253843, - 4840.355321300937, - 4739.733663578825, - 4625.266644133697, - 4506.51187779365, - 4395.865578981727, - 4304.4687901092275, - 4239.083871694998, - 4199.791257130431, - 4181.24762976497, - 4173.943199082242, - 4168.336000086966, - 4158.68122329032, - 4144.84906243388, - 4132.692962578199, - 4131.957455425498, - 4152.166793188448, - 4199.167264048449, - 4271.538891645793, - 4360.990519191426, - 4455.253481241563, - 4542.760112766815, - 4619.774647280086, - 4695.755188195217, - 4795.900417096472, - 4960.392671488512, - 5237.253309624358, - 5675.175409875272, - 6312.238882507971, - 7162.908859300255, - 8221.809826388668 - ], - "flow:branch143_seg0:RESISTANCE_90": [ - 1.065898795045103, - 1.3634488769624697, - 1.6814883566771421, - 2.0037252882554744, - 2.3130709407075334, - 2.595837645346385, - 2.8429790624455182, - 3.0509855854753862, - 3.219234067969192, - 3.3516805936052685, - 3.45289931651362, - 3.5261162582012737, - 3.574787518747, - 3.599379381006369, - 3.5997609807585693, - 3.5760738235894305, - 3.527913358852361, - 3.457727336778958, - 3.3685549863209396, - 3.264406326969361, - 3.150413475129027, - 3.0302749413157772, - 2.907064411389273, - 2.7825713083687917, - 2.6574250271387343, - 2.5321881007800613, - 2.4076746754159197, - 2.285529382393725, - 2.168157355007488, - 2.058204669276221, - 1.9574208907064359, - 1.8659527733503196, - 1.7815069875947032, - 1.699046628106367, - 1.6119527990156117, - 1.5129189245359498, - 1.3959219290070375, - 1.2574131733084493, - 1.0984459875332158, - 0.9235814335422963, - 0.7412413668671388, - 0.5620627248274548, - 0.39651917464653896, - 0.25337407705911197, - 0.13838609484740663, - 0.05375665282495754, - -0.002629355563721553, - -0.03409747281600659, - -0.04595577979869511, - -0.04321379865509773, - -0.02913727022860456, - -0.006432647439447889, - 0.023932390783740827, - 0.061169774130570516, - 0.10379765799736551, - 0.14982483149001935, - 0.19581257516945064, - 0.23776315963871825, - 0.2718308066446599, - 0.2952683068302547, - 0.3067683481675586, - 0.3073027252627204, - 0.2994835816314723, - 0.28646720984086715, - 0.27179764206346774, - 0.2577344971753228, - 0.2450320530173601, - 0.23299458437124781, - 0.21983935643358057, - 0.20361307699544257, - 0.18307465409696444, - 0.15824888152968725, - 0.13077833881377157, - 0.10323537825321315, - 0.07862524927212594, - 0.05936701677836273, - 0.046632810156482817, - 0.03986846961928709, - 0.037379607538388024, - 0.03674433508252839, - 0.03575518882373805, - 0.03344362156676707, - 0.030268666027704408, - 0.02803072460995645, - 0.029241771113484864, - 0.03600523630607689, - 0.04929976356584336, - 0.06821478686773687, - 0.09022819913158843, - 0.11229944681767506, - 0.13192379262180903, - 0.14897130314063323, - 0.1668014132427422, - 0.19254988456720362, - 0.23668498485424952, - 0.3108805424686215, - 0.4260388799793009, - 0.5902980479107561, - 0.8046451709376508, - 1.065898795045103 - ], - "pressure:branch143_seg0:RESISTANCE_90": [ - 8766.202446643876, - 10096.986837347247, - 11519.409484669011, - 12960.605117650506, - 14344.144866530414, - 15608.811017247584, - 16714.14406925856, - 17644.447405856205, - 18396.93402195623, - 18989.29739078345, - 19441.995288311744, - 19769.456005193777, - 19987.136852037227, - 20097.123265827508, - 20098.82996000971, - 19992.889814345162, - 19777.493487420565, - 19463.588473451222, - 19064.76763862848, - 18598.965682585815, - 18089.135851912117, - 17551.81963109164, - 17000.763993869474, - 16443.9720844796, - 15884.258853878688, - 15324.14021548398, - 14767.25741498243, - 14220.96601991917, - 13696.022921452168, - 13204.262620314963, - 12753.509999134298, - 12344.421411289957, - 11966.740004448788, - 11597.938360867518, - 11208.413654526646, - 10765.487430278416, - 10242.22165126812, - 9622.745128621362, - 8911.768851617766, - 8129.692041425364, - 7314.1812105511835, - 6512.809762634531, - 5772.420880390622, - 5132.208448763864, - 4617.9279254322955, - 4239.425121091988, - 3987.240281033491, - 3846.5000097678494, - 3793.46406458833, - 3805.7274983000234, - 3868.6843766331026, - 3970.230164857785, - 4106.036946123442, - 4272.580098083862, - 4463.232112336713, - 4669.087354040965, - 4874.766247012169, - 5062.389058717825, - 5214.755653851515, - 5319.579215663736, - 5371.012827798914, - 5373.402814359859, - 5338.4319139115005, - 5280.216556379387, - 5214.607326192888, - 5151.710305359467, - 5094.8989803540435, - 5041.0617396629905, - 4982.225351910108, - 4909.653772509695, - 4817.79625250219, - 4706.763681424426, - 4583.9024500817195, - 4460.717331961238, - 4350.649220770722, - 4264.517316420067, - 4207.56393468618, - 4177.310611473175, - 4166.179245665674, - 4163.338007435611, - 4158.914078553325, - 4148.575658870106, - 4134.375759326018, - 4124.366629142432, - 4129.7830006417325, - 4160.0324089005635, - 4219.491808962134, - 4304.088719834237, - 4402.543088383149, - 4501.256124234873, - 4589.02546009128, - 4665.269972452405, - 4745.014639486302, - 4860.173954860253, - 5057.566952253007, - 5389.404501402665, - 5904.446934027914, - 6639.091452706994, - 7597.752944843917, - 8766.202446643876 - ], - "flow:branch144_seg0:RESISTANCE_91": [ - 0.7622285364327086, - 1.0029131840464365, - 1.2824075326683342, - 1.5899320160992898, - 1.9115750781964886, - 2.232716155126168, - 2.539952475456487, - 2.822672366644389, - 3.0736751026767513, - 3.2897865683232688, - 3.47049881097917, - 3.6172227252741243, - 3.732239795698705, - 3.8173194679146616, - 3.873821013644067, - 3.9023930939050504, - 3.9034264277117217, - 3.8779476304872302, - 3.8275087240480836, - 3.754896582915349, - 3.663756195555145, - 3.5579824128751674, - 3.4414871516692798, - 3.3175048582078777, - 3.1884699321124645, - 3.056154961962268, - 2.9219380191153146, - 2.7872850454598104, - 2.654026374072143, - 2.5243798908343122, - 2.4005695000491127, - 2.2842913039290167, - 2.1759019228221397, - 2.0738980166050327, - 1.974795642244751, - 1.8734432524017728, - 1.7639301699234777, - 1.6408484671275618, - 1.5006802524321787, - 1.3425947489754806, - 1.1692471979467445, - 0.9863362654733154, - 0.8017879455351865, - 0.6244036208187761, - 0.46252496599203097, - 0.3225227669663924, - 0.20811937819643458, - 0.12051710911874158, - 0.05826525481009949, - 0.018579373701325112, - -0.0019219156850104238, - -0.006579547643679766, - 0.002060131995989658, - 0.021934215741834115, - 0.05129064714777907, - 0.08828869298910139, - 0.13045820689002727, - 0.17470229559346354, - 0.21745724569747252, - 0.2551950499285232, - 0.2849934053371329, - 0.3052125893650972, - 0.31561864960943004, - 0.3173794790954728, - 0.312664070958402, - 0.3038590869155114, - 0.29298838715578795, - 0.2811926853738191, - 0.26855481336941894, - 0.25434187748561476, - 0.2374757884715342, - 0.21716486213722408, - 0.1933966098070621, - 0.1671063604409642, - 0.14010859235478454, - 0.11460701076043962, - 0.09260585674281485, - 0.0753310450297965, - 0.06300867173078722, - 0.05480834463568861, - 0.04929159285095526, - 0.045013675072407035, - 0.041076263546802654, - 0.03751943953585188, - 0.03533455170955849, - 0.03607130280766511, - 0.04125158209803235, - 0.05164172034155623, - 0.06690625175108833, - 0.08559127063946975, - 0.10565823294772608, - 0.12549476577278323, - 0.1450486876104101, - 0.16678440055769078, - 0.1961921296476757, - 0.24135200277765295, - 0.3121219577722489, - 0.41815886950603004, - 0.566825477025184, - 0.7622285364327086 - ], - "pressure:branch144_seg0:RESISTANCE_91": [ - 6832.5457764179, - 7727.278699808937, - 8766.284710757685, - 9909.49132074507, - 11105.183028097063, - 12299.008631146662, - 13441.144009478834, - 14492.140810692841, - 15425.230702449504, - 16228.614072985685, - 16900.402634354825, - 17445.84131550905, - 17873.411418883556, - 18189.690768637116, - 18399.73238819117, - 18505.94764185496, - 18509.789007670555, - 18415.072876204857, - 18227.56880954177, - 17957.636871823666, - 17618.82712209397, - 17225.61847030131, - 16792.553267957264, - 16331.655404394822, - 15851.974636262974, - 15360.100471356198, - 14861.155819785441, - 14360.590245883779, - 13865.207919673901, - 13383.253719001672, - 12922.994894885835, - 12490.736620946655, - 12087.804615171435, - 11708.610287191657, - 11340.202256162302, - 10963.429907132324, - 10556.3205987205, - 10098.770635104727, - 9577.702433437888, - 8990.027623033866, - 8345.61692782602, - 7665.654849003351, - 6979.605865645889, - 6320.188669780645, - 5718.413012281329, - 5197.961965414314, - 4772.673192346148, - 4447.016217193481, - 4215.598118264817, - 4068.0678757925607, - 3991.855376292549, - 3974.5408666228345, - 4006.6584358064315, - 4080.5393302711905, - 4189.670369382269, - 4327.208721095043, - 4483.9717420215275, - 4648.446889152348, - 4807.386239357152, - 4947.674605220005, - 5058.448474311063, - 5133.612261504318, - 5172.296260653021, - 5178.842054617281, - 5161.31276494595, - 5128.5806850596155, - 5088.1694121689015, - 5044.319491355639, - 4997.338845618376, - 4944.502980101542, - 4881.804152904384, - 4806.2993183582175, - 4717.9420504472555, - 4620.209386959056, - 4519.846558651252, - 4425.045727450658, - 4343.257557547283, - 4279.039324526353, - 4233.231529163217, - 4202.747230695059, - 4182.238986812803, - 4166.336045275086, - 4151.698918396302, - 4138.476606226176, - 4130.354396972355, - 4133.093231668944, - 4152.350656184407, - 4190.975466105747, - 4247.720584448999, - 4317.181190845669, - 4391.779101546061, - 4465.520402374645, - 4538.211111246189, - 4619.012517485112, - 4728.334253124861, - 4896.213782235501, - 5159.29748677734, - 5553.484307430675, - 6106.144851736425, - 6832.5457764179 - ], - "flow:branch145_seg0:RESISTANCE_92": [ - 0.6338318555886765, - 0.8139626413622034, - 1.0081660047562258, - 1.2065601709820482, - 1.398595715156974, - 1.575584909865192, - 1.731553876197562, - 1.8638328594756806, - 1.9716470153121288, - 2.0571286293840405, - 2.122902946939745, - 2.171043460653549, - 2.203734860948216, - 2.2214228852401763, - 2.2241670955506043, - 2.21202504071465, - 2.1847780012372704, - 2.14376696970754, - 2.0907087361697276, - 2.0280309013911038, - 1.958805371177372, - 1.8853667697364362, - 1.809713866494088, - 1.733048599578035, - 1.6558677878959382, - 1.578553658012388, - 1.5015841473187304, - 1.4259126657114096, - 1.3529570375583382, - 1.2843283242140495, - 1.2211693129686971, - 1.1637345065097229, - 1.110820268163586, - 1.0595705201930805, - 1.0060813352283027, - 0.9459135457412698, - 0.8752435146511824, - 0.7916637817394002, - 0.6954244364084433, - 0.5889446754373112, - 0.4770836164745323, - 0.3661651359100266, - 0.26261754530507914, - 0.1719977177467776, - 0.09817997700628057, - 0.042815480961765455, - 0.005008913525046657, - -0.017054290655151322, - -0.026542973768990057, - -0.026494291536159637, - -0.01905994041560731, - -0.006021031565196734, - 0.01193077961907427, - 0.0342324266287638, - 0.060014034613507086, - 0.08811569478102171, - 0.11650764317792695, - 0.14278864049603898, - 0.16457840467029927, - 0.18008512778850713, - 0.18835479707739078, - 0.18980224403952295, - 0.18585873727859298, - 0.17840028191500665, - 0.16959245205556325, - 0.16091116468963726, - 0.15296439135090234, - 0.14546592687660337, - 0.13742012803977446, - 0.12765345769282227, - 0.1153405442082947, - 0.10039278865444115, - 0.08367952813830494, - 0.06668283211640164, - 0.05121916366805445, - 0.038824609670212167, - 0.03033071190043043, - 0.025543437720752196, - 0.023550822935423293, - 0.022917919072345035, - 0.022275654551237544, - 0.02093223340080365, - 0.01903498812650094, - 0.017569224135502538, - 0.018012508599209755, - 0.021684802146877093, - 0.029292534292547967, - 0.040430502288322484, - 0.053701378755319114, - 0.06729105358548905, - 0.07960489912228146, - 0.09036374475323186, - 0.10132571347512326, - 0.11654186010950601, - 0.14215875064440084, - 0.18521909352913624, - 0.25257272144116255, - 0.34942903406707426, - 0.47696748068730166, - 0.6338318555886765 - ], - "pressure:branch145_seg0:RESISTANCE_92": [ - 8542.326125717773, - 9833.509107189804, - 11225.56475543559, - 12647.660206549543, - 14024.176860333133, - 15292.840820967871, - 16410.831141730338, - 17359.010939435022, - 18131.826105815402, - 18744.56092981811, - 19216.033249672633, - 19561.10592428326, - 19795.438881416045, - 19922.22718050423, - 19941.897763937202, - 19854.863143525363, - 19659.555531239028, - 19365.58720296905, - 18985.26416225837, - 18535.98752565154, - 18039.77680791379, - 17513.366666768557, - 16971.08434258949, - 16421.545364635578, - 15868.310946031457, - 15314.120898481971, - 14762.401091825323, - 14219.98559735794, - 13697.03742351118, - 13205.104707346396, - 12752.378983109953, - 12340.684533849042, - 11961.393655076181, - 11594.033894221953, - 11210.621780502743, - 10779.337225312254, - 10272.772281114749, - 9673.670199434207, - 8983.823628756543, - 8220.573445581349, - 7418.749953822583, - 6623.682892850082, - 5881.45059653602, - 5231.884901117814, - 4702.757077877886, - 4305.902676985356, - 4034.904045338128, - 3876.7543230023207, - 3808.7391522442626, - 3809.0881079780684, - 3862.377764179387, - 3955.841061595866, - 4084.5201931956813, - 4244.379081025726, - 4429.182435554678, - 4630.615995085277, - 4834.1303495222055, - 5022.513342065868, - 5178.703038076335, - 5289.855703639022, - 5349.132946017974, - 5359.508290110672, - 5331.241113041703, - 5277.778676889123, - 5214.643883081512, - 5152.416149737558, - 5095.453435404592, - 5041.7042127228015, - 4984.03168059094, - 4914.023888844076, - 4825.764548413797, - 4718.6185794476405, - 4598.817416916349, - 4476.984580011242, - 4366.140531638883, - 4277.295989512302, - 4216.411470524559, - 4182.09614279256, - 4167.813019069996, - 4163.276344822975, - 4158.6725730929165, - 4149.0428891999545, - 4135.443377049168, - 4124.9367359333555, - 4128.114212526442, - 4154.437324988068, - 4208.969781680053, - 4288.807076912891, - 4383.9331252994625, - 4481.34433010326, - 4569.610351512681, - 4646.7300860395335, - 4725.305813094486, - 4834.375617534241, - 5017.9982723450275, - 5326.656127082992, - 5809.4489918726185, - 6503.718002989603, - 7417.917488947865, - 8542.326125717773 - ], - "flow:branch146_seg2:RESISTANCE_93": [ - 0.8225057305812477, - 1.050624999228304, - 1.29356931613001, - 1.538744595535678, - 1.7731811085684273, - 1.9866839643617422, - 2.1727005783491875, - 2.3289098049455452, - 2.4551915767532564, - 2.55480688001425, - 2.631298867234142, - 2.687124446921222, - 2.7247748579430464, - 2.7444317416697968, - 2.745854621329462, - 2.7290160565171018, - 2.6935644718169125, - 2.6413573690824204, - 2.5747336932957268, - 2.496791006328363, - 2.4114169821217, - 2.321403274562714, - 2.2290281739590334, - 2.1355636598925485, - 2.041422886897096, - 1.9469891487784379, - 1.8528810973955487, - 1.7603887679170511, - 1.6713970198860946, - 1.587967121814626, - 1.511449176082063, - 1.4419287428051535, - 1.377582165347721, - 1.3144908346985604, - 1.2475304077806133, - 1.1711001565984624, - 1.0806479582181407, - 0.9735852664471751, - 0.8508794873093369, - 0.7161993103217532, - 0.5761486986800487, - 0.43893742104124167, - 0.3125855174506217, - 0.20371180710258857, - 0.11655455588533165, - 0.05259052601176541, - 0.01003847248129197, - -0.013809094079607193, - -0.023082512327654136, - -0.021573387332896623, - -0.011714376824776088, - 0.004567639847798419, - 0.026658812508207844, - 0.05403541860853012, - 0.08562577919439049, - 0.11989291647219669, - 0.15416778094662512, - 0.18535910505549733, - 0.21050587912769383, - 0.2275253827121928, - 0.23547687389970753, - 0.23518707434077687, - 0.22871851968413578, - 0.21853778638972512, - 0.20734931793180428, - 0.19682630847803428, - 0.18745931010707706, - 0.1786106633162641, - 0.16882906817225446, - 0.15657320891131396, - 0.14089605502509678, - 0.12186480772813524, - 0.10080267153844935, - 0.07974943885553641, - 0.06104675775179126, - 0.04654186698982343, - 0.037085476538735694, - 0.0321849941619318, - 0.03046759869070639, - 0.030023805325199267, - 0.02916303986738069, - 0.02717925233680428, - 0.024495044928378448, - 0.022570682824028, - 0.02338971685847662, - 0.028581167622816227, - 0.03886252016430372, - 0.05346267667351675, - 0.07037167652187229, - 0.08719669744156168, - 0.1020138914575378, - 0.11478636294783773, - 0.12820854161178358, - 0.14789864650735893, - 0.18201170970466238, - 0.23956571932837342, - 0.32887704477193275, - 0.4559972637051584, - 0.6214737836474044, - 0.8225057305812477 - ], - "pressure:branch146_seg2:RESISTANCE_93": [ - 8658.930713863818, - 9951.347224617313, - 11327.755487802167, - 12716.803335499515, - 14045.010382470999, - 15254.617170870912, - 16308.499837677966, - 17193.50786344682, - 17908.961002760552, - 18473.33447029704, - 18906.702102104973, - 19222.983586513892, - 19436.29311152621, - 19547.659771734638, - 19555.721138825087, - 19460.321748366063, - 19259.46973936813, - 18963.688843905693, - 18586.23042443728, - 18144.643810002846, - 17660.954733106515, - 17150.979391990717, - 16627.625508249195, - 16098.099520087404, - 15564.742166822063, - 15029.725010925618, - 14496.553042930826, - 13972.53499550752, - 13468.349596535496, - 12995.67502416136, - 12562.160323626747, - 12168.290238321373, - 11803.73278725777, - 11446.286974372315, - 11066.920681340083, - 10633.902816892696, - 10121.443192968738, - 9514.876324018303, - 8819.683077681984, - 8056.64852368618, - 7263.187612206092, - 6485.8130320852615, - 5769.962559066669, - 5153.135310429042, - 4659.343307793114, - 4296.953191459585, - 4055.873264825513, - 3920.764166206207, - 3868.225338925283, - 3876.7753315303926, - 3932.6318492018618, - 4024.878099598872, - 4150.03629626306, - 4305.139273500788, - 4484.115402277489, - 4678.256889126697, - 4872.44215463851, - 5049.157530370057, - 5191.627327839812, - 5288.051832301411, - 5333.1012424490245, - 5331.459374416602, - 5294.811585351976, - 5237.132337652686, - 5173.74373637046, - 5114.125312896072, - 5061.056304641637, - 5010.924032702933, - 4955.506114082548, - 4886.070178414977, - 4797.250796149119, - 4689.428697767414, - 4570.100537876611, - 4450.822821068613, - 4344.862224240485, - 4262.684333619387, - 4209.108871872547, - 4181.345043012317, - 4171.615087819713, - 4169.100763289629, - 4164.224070951586, - 4152.984863612593, - 4137.777406594553, - 4126.874875777753, - 4131.515137493778, - 4160.927456419704, - 4219.176765460118, - 4301.894387009603, - 4397.692829262871, - 4493.015486394578, - 4576.962740402806, - 4649.325558042433, - 4725.369311025027, - 4836.924186754891, - 5030.1927623121155, - 5356.266718006034, - 5862.262692327357, - 6582.4660788027495, - 7519.978231036926, - 8658.930713863818 - ] - }, - "dy": { - "flow:branch0_seg0:J0": [ - 2800.401380819581, - 3167.615496930888, - 3363.5435643203987, - 3396.394082129692, - 3262.4646633636075, - 3020.6787504494628, - 2654.7255466410684, - 2286.599151826968, - 1894.3988712484784, - 1537.2369295902722, - 1217.08238506428, - 915.7429188433683, - 648.6554007522348, - 367.2506202650928, - 106.29453467404072, - -177.41662615889362, - -433.34926855509303, - -676.4738045060478, - -885.42502162504, - -1041.098335745656, - -1163.3131068883035, - -1237.0886691047574, - -1288.0556303511573, - -1320.0025200101609, - -1341.2037736610657, - -1354.2166825584272, - -1353.0554621816655, - -1329.7110006197818, - -1281.4875309773836, - -1207.569177540975, - -1115.2144060137339, - -1033.4849647832825, - -973.7398726336046, - -969.1652731150409, - -1035.2616434833164, - -1166.7186572019236, - -1354.4791993824056, - -1569.7935627252984, - -1762.184948160183, - -1908.737855860648, - -1962.0631593496007, - -1913.4168533055563, - -1767.3196862614789, - -1536.6382408167506, - -1250.8976463615893, - -963.2447567288997, - -668.6348788990089, - -432.93901991944784, - -224.73510335570708, - -65.53307960451293, - 60.35521697008884, - 172.7583416294763, - 262.2583299960229, - 350.00953062891756, - 413.64184095331404, - 451.8094331409885, - 452.22801207979325, - 414.1006538828541, - 331.1954202177733, - 231.36583362378323, - 114.31151452330766, - 14.406822276148318, - -65.23311282838337, - -110.49200979730666, - -128.41119957108654, - -127.13168349147523, - -122.18294660060921, - -126.46806236451653, - -146.70159908267726, - -183.68637757841697, - -228.80099924429734, - -267.4400847780316, - -289.7704015193585, - -284.5591782599053, - -250.95648204242855, - -197.6378056143267, - -137.10663914190528, - -80.540318673086, - -45.61365134977352, - -29.469302521041048, - -31.468432447904505, - -39.8606823247559, - -39.6147451331667, - -21.34549282541707, - 22.989881740108267, - 80.20057833732832, - 146.48289371157318, - 195.61165886892718, - 221.88948433232335, - 217.93167925624107, - 198.1906358390363, - 186.9645409866745, - 217.89855543426413, - 335.8826251460457, - 550.0742658769589, - 891.4133012527609, - 1334.723380929358, - 1825.5530367942338, - 2361.079160061276, - 2800.401380819581 - ], - "pressure:branch0_seg0:J0": [ - 214717.57335549564, - 222260.8983309318, - 216237.37728996488, - 197771.0735255309, - 169794.7813431496, - 144424.26694727893, - 110670.31810822758, - 84904.05506950876, - 61615.35218500044, - 46092.81721144755, - 27453.200461929333, - 14617.96746490255, - 614.1476055835519, - -18097.66688118614, - -28863.92059302984, - -50899.87184529623, - -58993.076626968126, - -71017.54350511535, - -79564.11600739663, - -80219.13139160773, - -83720.36699521374, - -82426.17853806276, - -82046.61214253545, - -81946.69255640452, - -81505.3434428925, - -80671.8540906669, - -78537.29489030215, - -73755.32436950592, - -67715.26290232934, - -60385.53636233725, - -53326.98697069324, - -49964.79741215652, - -50924.27776247625, - -57127.72701744827, - -70189.17920611122, - -85253.57130647515, - -103699.63654831544, - -116588.38748620005, - -124958.01790457232, - -126330.88165062443, - -116651.37828075743, - -100714.91060898478, - -81972.00586453511, - -57833.325045208585, - -35603.646103118626, - -20820.185746338124, - -2158.708968788019, - 4031.937759216816, - 12008.652222863364, - 16784.327639131978, - 20084.816140820563, - 25026.460363019578, - 28076.875809760266, - 31444.98569446739, - 32604.892771831022, - 30880.477042825125, - 25598.323175204783, - 18705.557475162375, - 8774.627675721913, - 277.8402252608992, - -7616.634834720464, - -10485.309658581677, - -13522.99613126637, - -11281.896625873112, - -9295.438135126826, - -7660.7583715543715, - -7212.09898282093, - -8902.362779341945, - -11870.130781957283, - -15851.791026165001, - -18840.559982352162, - -19635.354364611667, - -18610.86900692805, - -15139.308201105014, - -9616.703336287888, - -4787.085202447059, - -873.465920349813, - 1564.6860762806366, - 1195.340347977375, - -488.3647195043678, - -2010.5365316010673, - -2729.197268225342, - -1323.2993475253472, - 2190.0142627906125, - 7687.87980462862, - 12532.395631187857, - 16622.15229408798, - 16597.814489052646, - 15444.971674381142, - 11616.32909692662, - 9151.75545934258, - 11058.602655405182, - 19120.278716862034, - 38673.19897922885, - 61646.72967407551, - 97977.24594153147, - 134064.62913412886, - 165740.58233729377, - 201283.01546728465, - 214717.57335549564 - ], - "flow:J0:branch1_seg0": [ - 1500.058159019963, - 1688.4525533344943, - 1782.5159331153209, - 1786.271369170367, - 1700.718234577124, - 1553.8221808228225, - 1347.7058063916054, - 1137.8902532029574, - 922.6139329435819, - 729.2214740176964, - 557.0108877960655, - 401.4910496367971, - 261.7192719532724, - 119.52122308068947, - -14.193357081813284, - -158.418891816261, - -287.19923909682694, - -410.574591320891, - -512.4273169047342, - -588.0277535018532, - -643.7547081208367, - -674.2675978466591, - -693.0231676758921, - -702.0686729685488, - -706.7434982608961, - -707.754260811222, - -702.138324683194, - -685.3188455685626, - -655.7532289447073, - -612.4206106060321, - -560.8473682117412, - -514.4642944704966, - -482.37372113186126, - -480.41466328795553, - -517.6323332704945, - -590.6165512825505, - -694.7787101257983, - -811.0092038061817, - -916.2948288819812, - -992.5255481219476, - -1018.3208310336136, - -987.0006620177801, - -903.0456662289313, - -771.9541578941831, - -615.6372886593492, - -455.64845532833397, - -297.99224688683734, - -172.50221754124016, - -64.11830801993649, - 15.091740980688057, - 77.39589769381995, - 130.19040574267464, - 172.418440225228, - 212.71849292291085, - 241.25552568482127, - 256.11234372763846, - 251.05498292012527, - 225.06887477723117, - 176.58855941630856, - 118.19982875173304, - 53.07417575581721, - -2.4939405026798767, - -45.6520706310892, - -68.97297836235782, - -77.0312381788839, - -74.22702898876027, - -69.46826028613067, - -70.07109327452866, - -79.64402676565956, - -98.9127362690373, - -122.2511808524636, - -142.7708960926667, - -153.75192528200643, - -149.76775427594245, - -130.10645578948723, - -100.17106015925188, - -65.87291032480437, - -35.1542796852146, - -16.000363279976387, - -8.11050240631161, - -10.198912068672529, - -15.877471446939634, - -16.756072401001674, - -7.344550674942743, - 15.91218957504488, - 47.141723915643155, - 82.2598324218168, - 108.41693231623513, - 121.45685729575949, - 117.88281732457467, - 105.39377044688162, - 97.83942403007174, - 113.5904291899021, - 176.81245595178956, - 292.5040515480717, - 479.06177792836667, - 715.0819186743063, - 983.8909409255499, - 1266.3122631543145, - 1500.058159019963 - ], - "pressure:J0:branch1_seg0": [ - 214717.57335549564, - 222260.8983309318, - 216237.37728996488, - 197771.0735255309, - 169794.7813431496, - 144424.26694727893, - 110670.31810822758, - 84904.05506950876, - 61615.35218500044, - 46092.81721144755, - 27453.200461929333, - 14617.96746490255, - 614.1476055835519, - -18097.66688118614, - -28863.92059302984, - -50899.87184529623, - -58993.076626968126, - -71017.54350511535, - -79564.11600739663, - -80219.13139160773, - -83720.36699521374, - -82426.17853806276, - -82046.61214253545, - -81946.69255640452, - -81505.3434428925, - -80671.8540906669, - -78537.29489030215, - -73755.32436950592, - -67715.26290232934, - -60385.53636233725, - -53326.98697069324, - -49964.79741215652, - -50924.27776247625, - -57127.72701744827, - -70189.17920611122, - -85253.57130647515, - -103699.63654831544, - -116588.38748620005, - -124958.01790457232, - -126330.88165062443, - -116651.37828075743, - -100714.91060898478, - -81972.00586453511, - -57833.325045208585, - -35603.646103118626, - -20820.185746338124, - -2158.708968788019, - 4031.937759216816, - 12008.652222863364, - 16784.327639131978, - 20084.816140820563, - 25026.460363019578, - 28076.875809760266, - 31444.98569446739, - 32604.892771831022, - 30880.477042825125, - 25598.323175204783, - 18705.557475162375, - 8774.627675721913, - 277.8402252608992, - -7616.634834720464, - -10485.309658581677, - -13522.99613126637, - -11281.896625873112, - -9295.438135126826, - -7660.7583715543715, - -7212.09898282093, - -8902.362779341945, - -11870.130781957283, - -15851.791026165001, - -18840.559982352162, - -19635.354364611667, - -18610.86900692805, - -15139.308201105014, - -9616.703336287888, - -4787.085202447059, - -873.465920349813, - 1564.6860762806366, - 1195.340347977375, - -488.3647195043678, - -2010.5365316010673, - -2729.197268225342, - -1323.2993475253472, - 2190.0142627906125, - 7687.87980462862, - 12532.395631187857, - 16622.15229408798, - 16597.814489052646, - 15444.971674381142, - 11616.32909692662, - 9151.75545934258, - 11058.602655405182, - 19120.278716862034, - 38673.19897922885, - 61646.72967407551, - 97977.24594153147, - 134064.62913412886, - 165740.58233729377, - 201283.01546728465, - 214717.57335549564 - ], - "flow:J0:branch4_seg0": [ - 1300.3432217996237, - 1479.1629435964228, - 1581.0276312050594, - 1610.1227129593995, - 1561.7464287864877, - 1466.8565696266496, - 1307.0197402494714, - 1148.7088986239714, - 971.7849383048871, - 808.0154555725427, - 660.0714972681382, - 514.2518692066152, - 386.93612879900314, - 247.72939718429564, - 120.4878917557387, - -18.997734342566297, - -146.1500294582197, - -265.8992131851174, - -372.99770472032156, - -453.07058224385827, - -519.5583987674885, - -562.8210712581251, - -595.0324626752681, - -617.9338470415869, - -634.460275400109, - -646.4624217472135, - -650.9171374985048, - -644.3921550512258, - -625.7343020326844, - -595.1485669350078, - -554.367037801985, - -519.020670312796, - -491.3661515017185, - -488.7506098270698, - -517.6293102127858, - -576.1021059193477, - -659.7004892565946, - -758.7843589190965, - -845.8901192781922, - -916.21230773875, - -943.7423283160338, - -926.4161912877754, - -864.2740200325535, - -764.6840829225628, - -635.260357702242, - -507.5963014005617, - -370.64263201217125, - -260.43680237820786, - -160.61679533577038, - -80.62482058519993, - -17.04068072373122, - 42.567935886802005, - 89.83988977079507, - 137.29103770600722, - 172.38631526849514, - 195.69708941335074, - 201.17302915967147, - 189.0317791056212, - 154.6068608014603, - 113.16600487205255, - 61.23733876749007, - 16.90076277882902, - -19.581042197297936, - -41.51903143495124, - -51.37996139219524, - -52.90465450271281, - -52.71468631448306, - -56.396969089981674, - -67.0575723170172, - -84.77364130938176, - -106.54981839183182, - -124.6691886853624, - -136.01847623734966, - -134.79142398396147, - -120.85002625294199, - -97.466745455072, - -71.23372881709994, - -45.38603898787181, - -29.613288069797466, - -21.35880011473039, - -21.269520379232457, - -23.983210877816507, - -22.85867273216534, - -14.000942150474105, - 7.077692165063096, - 33.05885442168409, - 64.2230612897561, - 87.19472655269256, - 100.43262703656356, - 100.04886193166651, - 92.79686539215628, - 89.12511695660008, - 104.30812624436328, - 159.07016919425357, - 257.57021432888644, - 412.35152332439134, - 619.6414622550515, - 841.6620958686948, - 1094.7668969069769, - 1300.3432217996237 - ], - "pressure:J0:branch4_seg0": [ - 214717.57335549564, - 222260.8983309318, - 216237.37728996488, - 197771.0735255309, - 169794.7813431496, - 144424.26694727893, - 110670.31810822758, - 84904.05506950876, - 61615.35218500044, - 46092.81721144755, - 27453.200461929333, - 14617.96746490255, - 614.1476055835519, - -18097.66688118614, - -28863.92059302984, - -50899.87184529623, - -58993.076626968126, - -71017.54350511535, - -79564.11600739663, - -80219.13139160773, - -83720.36699521374, - -82426.17853806276, - -82046.61214253545, - -81946.69255640452, - -81505.3434428925, - -80671.8540906669, - -78537.29489030215, - -73755.32436950592, - -67715.26290232934, - -60385.53636233725, - -53326.98697069324, - -49964.79741215652, - -50924.27776247625, - -57127.72701744827, - -70189.17920611122, - -85253.57130647515, - -103699.63654831544, - -116588.38748620005, - -124958.01790457232, - -126330.88165062443, - -116651.37828075743, - -100714.91060898478, - -81972.00586453511, - -57833.325045208585, - -35603.646103118626, - -20820.185746338124, - -2158.708968788019, - 4031.937759216816, - 12008.652222863364, - 16784.327639131978, - 20084.816140820563, - 25026.460363019578, - 28076.875809760266, - 31444.98569446739, - 32604.892771831022, - 30880.477042825125, - 25598.323175204783, - 18705.557475162375, - 8774.627675721913, - 277.8402252608992, - -7616.634834720464, - -10485.309658581677, - -13522.99613126637, - -11281.896625873112, - -9295.438135126826, - -7660.7583715543715, - -7212.09898282093, - -8902.362779341945, - -11870.130781957283, - -15851.791026165001, - -18840.559982352162, - -19635.354364611667, - -18610.86900692805, - -15139.308201105014, - -9616.703336287888, - -4787.085202447059, - -873.465920349813, - 1564.6860762806366, - 1195.340347977375, - -488.3647195043678, - -2010.5365316010673, - -2729.197268225342, - -1323.2993475253472, - 2190.0142627906125, - 7687.87980462862, - 12532.395631187857, - 16622.15229408798, - 16597.814489052646, - 15444.971674381142, - 11616.32909692662, - 9151.75545934258, - 11058.602655405182, - 19120.278716862034, - 38673.19897922885, - 61646.72967407551, - 97977.24594153147, - 134064.62913412886, - 165740.58233729377, - 201283.01546728465, - 214717.57335549564 - ], - "flow:branch1_seg2:J1": [ - 1502.6122808653017, - 1688.263465111065, - 1785.376099577735, - 1787.038112357154, - 1703.7474577289054, - 1551.3305462040075, - 1352.1160610853537, - 1134.6435674368363, - 926.3675669328113, - 729.2974898694877, - 557.3476319102739, - 405.44676946622405, - 260.87756381956905, - 125.25142845193474, - -14.061563808754272, - -152.95022890816014, - -284.9784063239146, - -409.46822853272465, - -509.47664575769187, - -588.2483085270541, - -642.7120903663106, - -674.4325028140098, - -692.9698947765795, - -702.0878237004068, - -706.8467423246896, - -707.9585354393496, - -702.2779147989443, - -685.839661495297, - -655.9311668948973, - -612.5196219641266, - -561.1441411838694, - -513.6631509041973, - -482.21710934623394, - -479.90129581054015, - -515.8656403371543, - -589.7735015622014, - -693.0330062240903, - -808.2306945564469, - -916.6634584720144, - -990.9464195092551, - -1019.21688011135, - -989.8940786359426, - -905.3157667518029, - -774.324064521443, - -620.8553388913573, - -455.6673330725698, - -301.3666872628906, - -172.23634204278073, - -64.79439754381833, - 14.963418874591886, - 77.76012433337884, - 130.1080835416584, - 173.34241330395267, - 212.3133383058218, - 242.0338345979232, - 256.26602904023446, - 251.76416165086022, - 224.96921647565418, - 178.13406885099997, - 117.60372224750392, - 54.932872933805996, - -2.7104884321525513, - -45.03341082966883, - -68.83081558462992, - -77.21164042237541, - -74.42153252342167, - -69.38041184598339, - -69.74100437885241, - -79.31627937568558, - -98.5141525513646, - -121.65030536214469, - -142.90396691243515, - -154.00711516582146, - -150.00784412816543, - -130.59171931752053, - -100.4544202969799, - -65.7099373142965, - -35.04597339039006, - -15.581992854250007, - -7.942843706106435, - -10.117802949040085, - -15.888911736385317, - -17.03494805487856, - -7.375946412653881, - 14.977487386059623, - 47.376055605407544, - 81.1651812852055, - 108.66455865640474, - 121.44903328156808, - 118.20004404680722, - 105.52113972436028, - 97.38489391226886, - 112.92543695660014, - 172.77431476754435, - 290.1375136207347, - 475.40977698100545, - 708.337661746352, - 984.2898042962208, - 1262.8076432964274, - 1502.6122808653017 - ], - "pressure:branch1_seg2:J1": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch2_seg0": [ - 62.03673432739508, - 69.882870144741, - 74.17682116976873, - 74.47332824344502, - 71.14166235666029, - 64.91298312146611, - 56.75285276280922, - 47.560837392187324, - 38.80111307765717, - 30.668410106819874, - 23.33455684695893, - 16.943124290136165, - 10.958157235728422, - 5.268953430999989, - -0.41676443582801076, - -6.195588838302717, - -11.781642597407773, - -16.860213346006233, - -21.071709595384206, - -24.42817040501468, - -26.713843158976566, - -28.079409119966325, - -28.850975851474523, - -29.217308490742816, - -29.40709688841282, - -29.43825067981861, - -29.19693081429213, - -28.52796103299828, - -27.3027816480633, - -25.528759607231716, - -23.40661694684156, - -21.409815799727625, - -20.07137010465976, - -19.889026062244433, - -21.278037428854798, - -24.24129355301159, - -28.507978917802173, - -33.293472288856705, - -37.813001892829305, - -41.0471151248725, - -42.33694841714081, - -41.258898713414276, - -37.86671935798941, - -32.53053646722146, - -26.1590521283038, - -19.229074098142384, - -12.760797876498987, - -7.29070725431748, - -2.7658264780565807, - 0.6106199256348066, - 3.2654731899152223, - 5.451301712196512, - 7.225598318713541, - 8.815677860597171, - 10.07104051106577, - 10.683123709026013, - 10.516319348710917, - 9.444919112927792, - 7.5486320545626, - 5.033063204258342, - 2.4048246624106335, - 0.028863215139058436, - -1.811859614312836, - -2.880310821089606, - -3.245628039973255, - -3.1529043013609552, - -2.9407641965154383, - -2.924053157259971, - -3.2860783590086755, - -4.049446827728293, - -4.996713653268009, - -5.894687729612022, - -6.383217831281847, - -6.256128485134812, - -5.48677237431668, - -4.2529773535755915, - -2.81327066233077, - -1.5128143231332132, - -0.669464912091035, - -0.32296058734147737, - -0.3824795454747825, - -0.613914605433834, - -0.681290263584975, - -0.3165055023357222, - 0.5692264135495065, - 1.8926692091482313, - 3.3033185846836224, - 4.445007154233019, - 5.032622961440394, - 4.957194142222945, - 4.447624476150437, - 4.08995290391587, - 4.669195878886755, - 7.041174460232417, - 11.792678742931198, - 19.318434701446876, - 28.887049877599548, - 40.36365203693726, - 51.9930413776949, - 62.03673432739508 - ], - "pressure:J1:branch2_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch29_seg0": [ - 405.16177306318656, - 458.6058527428069, - 489.02270982416985, - 493.94261017171084, - 475.5255175969276, - 437.5741413822372, - 385.9020770543805, - 327.9237293936632, - 271.2574297296281, - 216.5637372078201, - 168.27750670938315, - 125.0151606230117, - 83.95679502808625, - 45.46304278894074, - 6.056922898377791, - -32.9118065509681, - -70.41254091114565, - -105.65547027351467, - -134.6650155444621, - -157.91093775957722, - -174.45063385182965, - -184.75687279309753, - -191.10094354189988, - -194.60713312172436, - -196.62834092711182, - -197.46576136484188, - -196.3802613610782, - -192.39079470986982, - -184.71579552209633, - -173.35185960507224, - -159.59715020749243, - -146.58340419589217, - -137.46327078802764, - -135.87027325461784, - -144.30310142650382, - -163.0773444734541, - -189.99763328874087, - -220.87017946583538, - -250.56493093072095, - -271.9158094951779, - -281.4132556711276, - -275.7070170841168, - -254.8485146693177, - -221.2072872887059, - -180.47458769706307, - -135.85920625926425, - -93.47049746724288, - -56.99508909545906, - -26.30818528107897, - -2.8349349157497343, - 15.820654173666192, - 31.400243149556303, - 44.29327683874242, - 55.82596534923563, - 64.77996567077957, - 69.56992087435952, - 69.32062594663125, - 63.00735605551679, - 51.15192484957371, - 35.29861534115475, - 18.496782234023353, - 2.597598012260613, - -9.459559008253784, - -16.77708006725277, - -19.888473323376623, - -19.844862528571642, - -18.9200149072908, - -19.15734224986367, - -21.697930475734672, - -26.730492719202278, - -32.951108045410045, - -38.80954707660757, - -42.136163941223046, - -41.536463362580456, - -36.82363927441301, - -29.052312066702296, - -19.853855337921072, - -11.458156044890599, - -5.849884265655305, - -3.2997864495790896, - -3.4392965007358725, - -4.686940237025659, - -4.924446205626398, - -2.458244441154184, - 3.3245763209837267, - 11.868831457699665, - 20.978313153285253, - 28.68343598955172, - 32.64473590498993, - 32.38419939477365, - 29.441682034082945, - 27.337133449017593, - 31.136425598979148, - 46.26208764233262, - 76.7862513663201, - 125.24864596812297, - 187.4671590198962, - 261.8056567135627, - 337.929623108303, - 405.16177306318656 - ], - "pressure:J1:branch29_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch37_seg0": [ - 92.95016948500177, - 105.13583073800892, - 111.85839065411388, - 112.64668287144377, - 107.97093795369031, - 98.77495366616434, - 86.43623852825168, - 72.81490499303769, - 59.5040015531332, - 46.90655526844965, - 35.91478098803601, - 26.165254907167792, - 17.056417911692783, - 8.499762418967576, - -0.23320128261349551, - -8.902928748773933, - -17.27290727778714, - -25.145066075116326, - -31.57733386335059, - -36.68924682662968, - -40.244781705816244, - -42.357277906228084, - -43.576965467083085, - -44.16039491897136, - -44.448169444158864, - -44.5100666336717, - -44.17563631600542, - -43.20628260553197, - -41.410069206204106, - -38.760798804940336, - -35.56397184068246, - -32.52591423783501, - -30.388685146849625, - -30.008712029967953, - -31.98164227179033, - -36.36632183195892, - -42.66672662487698, - -49.90704269089239, - -56.82808264130306, - -61.80555644365724, - -63.967694623255674, - -62.53883813390197, - -57.56744194738644, - -49.60463061890784, - -40.035264180949135, - -29.622709646544813, - -19.794289174489457, - -11.446388095929839, - -4.502940557638945, - 0.6759626128773678, - 4.718872215299459, - 8.036532680583377, - 10.76335273163747, - 13.219784429245847, - 15.11484649351378, - 16.102670333461027, - 15.944455302191868, - 14.40183131256386, - 11.573342506299841, - 7.847978353517384, - 3.876918011547979, - 0.168958335435424, - -2.616005088028059, - -4.266946446257023, - -4.900666180746532, - -4.779008891155665, - -4.450573485041278, - -4.404442869441316, - -4.919187283963838, - -6.047838512824451, - -7.476956538849837, - -8.840968728542284, - -9.621311931579319, - -9.48330088747727, - -8.374194730734514, - -6.541456169363917, - -4.367770685732705, - -2.3893196579782114, - -1.0692666656354888, - -0.48879001862842464, - -0.562033027313221, - -0.9158780672375586, - -1.0411138455210307, - -0.5332437687305568, - 0.7722926298153027, - 2.733422195458586, - 4.866162579564669, - 6.666194552681488, - 7.586473156301862, - 7.5019695142008995, - 6.758526822106332, - 6.178591737990824, - 6.944911054471298, - 10.346823504523027, - 17.313267791222003, - 28.482758973777173, - 42.83301651584412, - 59.97183760387025, - 77.52119728299157, - 92.95016948500177 - ], - "pressure:J1:branch37_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch45_seg0": [ - 68.15732363905113, - 75.72615439612869, - 79.06095486788902, - 78.0771505824244, - 73.41431133072714, - 65.87603756095442, - 56.47508017957163, - 46.67349255183144, - 37.49210752857624, - 28.988981839781438, - 21.75236589035203, - 15.395503008544505, - 9.287538661776258, - 3.5252983869558854, - -2.484198071074784, - -8.495066821264963, - -14.108246895521306, - -19.450405969895957, - -23.541392789774083, - -26.68117897399426, - -28.760100346543354, - -29.82630899843298, - -30.412263223239208, - -30.640943161736267, - -30.74069886709271, - -30.71529178862711, - -30.385110373720753, - -29.551268758640386, - -28.107356093161087, - -26.056108535087027, - -23.704408067080884, - -21.622716199691627, - -20.367946895437566, - -20.532937250505036, - -22.497853828924455, - -26.148141120533033, - -31.02274423974109, - -36.264105507792245, - -41.00727531210371, - -43.97172915420645, - -44.739072172211536, - -42.83008960669453, - -38.502290540179224, - -32.181811231409135, - -25.12990127791878, - -17.747737609448876, - -11.028149080930373, - -5.6535813194576505, - -1.2292839989672422, - 1.9054978965554241, - 4.363787546313048, - 6.443734974786921, - 8.172282700869088, - 9.766685416447958, - 10.933843200353868, - 11.387197865579934, - 10.979417946086908, - 9.564799271493714, - 7.27070222146005, - 4.453888496864975, - 1.6284681623676778, - -0.871880696996601, - -2.5811122100913324, - -3.4148416999772606, - -3.5871715075348556, - -3.3005625246555943, - -2.999100862371145, - -3.0240047988263483, - -3.509215178073608, - -4.444110180031003, - -5.511176475137996, - -6.438454282724807, - -6.84630231722844, - -6.528845914254651, - -5.511743789931856, - -4.06075802314854, - -2.461213488753302, - -1.1298211313289421, - -0.36679334337434094, - -0.1584708381733764, - -0.37559698677795367, - -0.7036750652756254, - -0.748466452950148, - -0.24712949437234596, - 0.8544875661784629, - 2.379650228818162, - 3.9079730125511203, - 5.074285551706451, - 5.499482174559183, - 5.18188825411046, - 4.491974275042848, - 4.121954988340138, - 4.96632390648041, - 7.979702758912777, - 13.636287117247866, - 22.44012697597156, - 33.16490110286188, - 45.652515997202634, - 57.9808358657585, - 68.15732363905113 - ], - "pressure:J1:branch45_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch54_seg0": [ - 141.0039553957928, - 159.01082404544314, - 168.65154455486413, - 169.26014506733236, - 161.6979449435731, - 147.42269983857938, - 128.55061484083174, - 107.92057361889667, - 87.94140076463347, - 69.04433773980051, - 52.71484600868882, - 38.21563829286243, - 24.632767788000393, - 11.889729704719281, - -1.2259619265512527, - -14.179761557056198, - -26.717508387565104, - -38.49451513745077, - -48.02240092342366, - -55.55979708113417, - -60.75360419379618, - -63.777054638527794, - -65.5013420088742, - -66.30461469511376, - -66.68923617016118, - -66.75704023052958, - -66.21996213133018, - -64.71457080634498, - -61.94690689674427, - -57.89914054664907, - -53.03779224496248, - -48.47889333401771, - -45.32989986300149, - -44.89822609685756, - -48.053956535801085, - -54.86773674831621, - -64.49698752247204, - -75.49413186273702, - -85.90196331333075, - -93.24018716135235, - -96.26680180130165, - -93.8288215598461, - -86.02352498029099, - -73.77500734590423, - -59.21702835311292, - -43.47895259697053, - -28.725926535769773, - -16.299658458509303, - -6.012676773356063, - 1.6113677202943677, - 7.5328390823375075, - 12.433320859884208, - 16.45301014823082, - 20.09469677963866, - 22.890226866427373, - 24.29040821270048, - 23.95356871668189, - 21.514601935474744, - 17.14485317798222, - 11.456796932796701, - 5.458524186803928, - -0.11733770151308448, - -4.222404218392903, - -6.6046854085668505, - -7.461477650759442, - -7.196735486895461, - -6.662518735333338, - -6.598986310967436, - -7.412546169039466, - -9.158632125804964, - -11.341224840888623, - -13.392707651842622, - -14.530099919071562, - -14.246755608390956, - -12.495836513367259, - -9.666060782477018, - -6.3619949504111935, - -3.38706538085387, - -1.4534860552023228, - -0.6460964131182381, - -0.8200990806362964, - -1.3905914584583388, - -1.5762705382672506, - -0.7712037742736835, - 1.254223243200356, - 4.261448390179208, - 7.4894975518884594, - 10.185960069696968, - 11.500825049180065, - 11.285268922524724, - 10.09966153853843, - 9.215284601854389, - 10.452737924477692, - 15.74551788995839, - 26.517543444408, - 43.644781962081716, - 65.52495723526216, - 91.49586856748778, - 117.97968585338707, - 141.0039553957928 - ], - "pressure:J1:branch54_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch57_seg0": [ - 151.40289931138074, - 170.189681027259, - 180.15096876706454, - 180.48563563712995, - 172.208320341156, - 156.88264776605007, - 136.85682889789177, - 114.85207352510382, - 93.75458767753457, - 73.8092109402886, - 56.37754132895847, - 40.98006536610013, - 26.341069856967177, - 12.636588607730404, - -1.4392676257648283, - -15.434729229840126, - -28.790113578775088, - -41.361735256875285, - -51.47666097493828, - -59.45643987356962, - -64.96818148901426, - -68.19851801865833, - -70.06507991804948, - -70.97518158386326, - -71.43754252161294, - -71.52966040225259, - -70.94317373509352, - -69.27795111496174, - -66.25599357662671, - -61.87481105884071, - -56.6893131061414, - -51.870655995854186, - -48.671871131984936, - -48.39500357364005, - -51.96495868524775, - -59.3758834072977, - -69.766812946312, - -81.38278826838824, - -92.3494858407947, - -99.89037284389157, - -102.80858844909517, - -99.91376836291779, - -91.44194552003972, - -78.26695267481476, - -62.79553841791597, - -46.10993927731065, - -30.51417809421093, - -17.405143807344583, - -6.540587211842659, - 1.5524793502795062, - 7.910699788829206, - 13.190423471678889, - 17.561719744364535, - 21.46549446536108, - 24.456966106247783, - 25.89802809554397, - 25.450051878545707, - 22.75465732304322, - 18.050134856026556, - 11.938021748486028, - 5.608649615258255, - -0.22401679462480417, - -4.514499659300234, - -6.95304139828814, - -7.820372977267682, - -7.552608511840186, - -7.042706176042949, - -7.064219644361777, - -8.009489677607158, - -9.925299603478852, - -12.246384222421435, - -14.388747373752095, - -15.519994230180277, - -15.138252460598675, - -13.199333338661601, - -10.170257617431812, - -6.668218486448121, - -3.5671258735692035, - -1.5781274780635952, - -0.7918904104385047, - -0.9976307080623574, - -1.5719715634821474, - -1.6950647900668723, - -0.736358598968327, - 1.494969781930232, - 4.752228757749718, - 8.153968176867576, - 10.936466949607413, - 12.240523053934234, - 11.93882144754992, - 10.6722151605666, - 9.845486594905994, - 11.382742792162095, - 17.355371709811998, - 29.123549028749622, - 47.720699955764886, - 71.15595222736837, - 98.95823837985674, - 127.06530001442773, - 151.40289931138074 - ], - "pressure:J1:branch57_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch69_seg0": [ - 49.509261596282684, - 54.04443345469397, - 55.52168823469264, - 53.79885727644824, - 49.74349950599598, - 43.955454072069145, - 37.080996101833314, - 30.125656128048867, - 24.013631755616817, - 18.261482875903877, - 13.457146709475596, - 9.311495847976586, - 5.060596028758007, - 1.1313141062395518, - -3.0753327569452678, - -7.281135884191966, - -11.018040239948311, - -14.689261020235822, - -17.263093670709818, - -19.15648437785622, - -20.41539592612894, - -20.926979879228647, - -21.223571949903445, - -21.328951151789163, - -21.35730128701353, - -21.312703337964198, - -21.007633277196355, - -20.302536958381662, - -19.15552197781405, - -17.61268679778398, - -15.91331711667108, - -14.555912769231403, - -13.91291933972198, - -14.350576897162739, - -16.127139901525375, - -19.04641014546905, - -22.67676290426373, - -26.331888786361432, - -29.501579933199576, - -31.11377805320789, - -31.099145657176898, - -29.197633316041326, - -25.6582390529166, - -20.818674324571518, - -15.807325619417819, - -10.710224955452963, - -6.133028679814655, - -2.7602972208425705, - 0.0771688688497099, - 2.025443632257714, - 3.532192780563916, - 4.94379524937369, - 6.063716800097138, - 7.106175243476253, - 7.842207547678863, - 7.968928422419857, - 7.479750921513589, - 6.28140397362291, - 4.5006165080892355, - 2.4271954806551492, - 0.5033986533802017, - -1.1439704502504882, - -2.160715385449954, - -2.5160418987701902, - -2.502304283419844, - -2.224322973995448, - -2.0175098267480225, - -2.11957321994498, - -2.5647578475761943, - -3.310343393902119, - -4.066728922689739, - -4.651834030700224, - -4.820486989710533, - -4.429692148651388, - -3.5663754642009855, - -2.4738982061213677, - -1.3600397627532557, - -0.49144634024920164, - -0.10281080032342134, - -0.09186080321818588, - -0.31718453016654585, - -0.5558611633631543, - -0.5129764505040862, - -0.033068691761285574, - 0.8629082769087877, - 2.0111347221331113, - 3.046956668632635, - 3.7584177698118104, - 3.888592372648957, - 3.494923995586804, - 2.9541806667484405, - 2.8089154223307125, - 3.7091991047592856, - 6.319588556648418, - 10.845785858103428, - 17.68692514456484, - 25.536358569407046, - 34.41160421283758, - 43.066464540611165, - 49.509261596282684 - ], - "pressure:J1:branch69_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch72_seg0": [ - 100.79332891299008, - 111.97709918613509, - 117.0623000293487, - 115.75937492406973, - 108.97862475351704, - 97.9800799096503, - 84.30405159596751, - 69.62994493706508, - 56.203142200453435, - 43.70060692957905, - 32.71605228790415, - 23.308343071608878, - 14.121358027365654, - 5.4892859257412, - -3.336847734041166, - -12.412482727636474, - -20.756735734657653, - -28.556609166593336, - -34.74840875565598, - -39.452705113440665, - -42.572184519105846, - -44.263054086634455, - -45.167215716015725, - -45.55562080169184, - -45.74023286469336, - -45.697794480244525, - -45.202943505239126, - -43.95863392692067, - -41.81227282881546, - -38.79478638408041, - -35.34283310249002, - -32.28470349819158, - -30.486267201921084, - -30.729318661950934, - -33.60980240363028, - -38.932052553772905, - -46.15605287008557, - -53.76386334440083, - -60.72916066373855, - -65.12113229011364, - -66.23474068304117, - -63.483989255051696, - -57.20374119677245, - -47.99927296915972, - -37.60598974471797, - -26.699511381998764, - -16.803251903247325, - -8.753649695888909, - -2.178349154091405, - 2.5641130214811545, - 6.326849029255565, - 9.455543429284468, - 12.05531336049274, - 14.423757603692062, - 16.179740589358488, - 16.842359335880417, - 16.236691858001446, - 14.157668049339632, - 10.824133976453485, - 6.63938274336031, - 2.5256886613702636, - -1.0956604151211529, - -3.7000388764328234, - -4.953910000799109, - -5.235387900395462, - -4.87873877126853, - -4.475090101058981, - -4.531573762598959, - -5.248062585167476, - -6.606715065345823, - -8.161741833495737, - -9.520051257902663, - -10.104309106563536, - -9.650479835486239, - -8.164492243219582, - -6.050073956816429, - -3.7106918964196294, - -1.7589357814887592, - -0.6326693087620558, - -0.31268530463711125, - -0.5973467003765707, - -1.0392871022477435, - -1.077327279037451, - -0.32015403347998034, - 1.2866077847182515, - 3.5375645189400817, - 5.75319281602005, - 7.423960011724043, - 8.08503838769999, - 7.650722980086798, - 6.678444952961334, - 6.198487353193861, - 7.503442970999236, - 11.997907625739469, - 20.34791915714833, - 33.27964319572549, - 49.06524374246729, - 67.61731021251585, - 85.70851861099825, - 100.79332891299008 - ], - "pressure:J1:branch72_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch76_seg0": [ - 117.76818509242322, - 132.91189189130756, - 141.04466797659987, - 141.66570009141404, - 135.4137174091733, - 123.53264710568064, - 107.77326796692155, - 90.58152784399856, - 73.82734925263473, - 58.08522160680193, - 44.36514247944873, - 32.24666401668426, - 20.900133424084718, - 10.247210749403193, - -0.6037458192615552, - -11.426823193401676, - -21.747949900523047, - -31.546590947318567, - -39.49235110605091, - -45.80105120427835, - -50.20926547761645, - -52.818328555077, - -54.35508645664184, - -55.11045170486981, - -55.508815181095656, - -55.623583643600426, - -55.239616742044745, - -54.044822904573095, - -51.81732162688149, - -48.50466704657907, - -44.52929125283493, - -40.755360219449535, - -38.138979505882524, - -37.7460669249992, - -40.33080547175504, - -45.92605218382614, - -53.94055701857965, - -63.07677024640454, - -71.82285962949024, - -78.08202094302618, - -80.80114194563336, - -78.97711929331501, - -72.73922899250488, - -62.67604319147045, - -50.62071872832578, - -37.49295939821153, - -25.063676051990104, - -14.532583912230766, - -5.724437707224099, - 0.8315822921981336, - 5.980581785887955, - 10.193979008292422, - 13.68143923601274, - 16.81018640327799, - 19.20582245341758, - 20.4478482608969, - 20.220261117230326, - 18.23505990204845, - 14.619606836828682, - 9.886794194321498, - 4.851080897587143, - 0.17000444551299096, - -3.3396436660972073, - -5.400163065687744, - -6.194005414436359, - -6.0375411290556436, - -5.632902370979824, - -5.595145770829107, - -6.262434686318638, - -7.709087157688159, - -9.519911802157996, - -11.240647744767806, - -12.214056396853879, - -12.025444118279093, - -10.60167008332729, - -8.279261382623064, - -5.519006756304397, - -3.0274381872116485, - -1.3615809427560157, - -0.6385175610563517, - -0.7364103612963192, - -1.180667715502795, - -1.323943311569768, - -0.6576634409725289, - 1.0198127665624317, - 3.518465439709289, - 6.2227696409848186, - 8.48874674168554, - 9.632193606761067, - 9.504193706552, - 8.557623085891782, - 7.848065362702776, - 8.86401698912803, - 13.271416940900139, - 22.14211550741645, - 36.40757578089026, - 54.59844005154395, - 76.30335893264622, - 98.41373070396827, - 117.76818509242322 - ], - "pressure:J1:branch76_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch99_seg0": [ - 62.30088800290295, - 68.8005984258145, - 71.43933729833482, - 70.13035888118225, - 65.5785354834154, - 58.49779737059409, - 49.89485954655197, - 40.95717619578016, - 32.798211116929004, - 25.23938056526417, - 18.79543345407094, - 13.211965764223315, - 7.711453833776245, - 2.57500772978629, - -2.8340303152479582, - -8.269353897679979, - -13.24815452018805, - -18.00970451561697, - -21.58687213164584, - -24.30709727987234, - -26.072907279525218, - -26.94658955841411, - -27.416520268399864, - -27.59328061135761, - -27.66973898126609, - -27.629907922483163, - -27.30329214724298, - -26.500750191693246, - -25.140763550526405, - -23.23423164571394, - -21.09562902032023, - -19.240302206411275, - -18.209280412348782, - -18.497779436735716, - -20.445324310421636, - -23.895696757739987, - -28.421321428279036, - -33.134472948958326, - -37.36223738231118, - -39.837632341478965, - -40.295823140326554, - -38.310974844425004, - -34.201153697925605, - -28.324850616045456, - -21.915959554367138, - -15.252312875820158, - -9.282085834771518, - -4.559546061189373, - -0.6951684440663481, - 2.0184588324139376, - 4.169277855641238, - 5.99322049217463, - 7.529751214230029, - 8.934167440230354, - 9.950231203413063, - 10.283407435813375, - 9.826665288001605, - 8.450527533153867, - 6.309548171227726, - 3.703964426686877, - 1.1788829215123098, - -1.0291885227831792, - -2.49893670718364, - -3.1536912701067097, - -3.2404524893987388, - -2.944585310280841, - -2.67141900781842, - -2.7261528529618193, - -3.2049152455517134, - -4.086349170615651, - -5.055749379980956, - -5.874229782158829, - -6.189485915491371, - -5.838514852308723, - -4.855158675482326, - -3.5123825316315984, - -2.0583605964441127, - -0.890147194187255, - -0.25276571920512203, - -0.12413450878924281, - -0.35773184650408074, - -0.6605338505834895, - -0.6732881944315088, - -0.16475417033157616, - 0.8799846515200188, - 2.3016938805796907, - 3.6658060869126547, - 4.673576749977844, - 4.985919758517623, - 4.629130470951351, - 3.973984874450776, - 3.682426047630781, - 4.566621110761676, - 7.495111054575995, - 12.82420643160958, - 21.03710211924353, - 30.850258483958555, - 42.26219126443599, - 53.30036761197389, - 62.30088800290295 - ], - "pressure:J1:branch99_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch112_seg0": [ - 94.37916848982024, - 106.90967051527053, - 113.97780854548904, - 115.030628735081, - 110.54681675631215, - 101.43401459980979, - 89.06869511758227, - 75.29920812590494, - 61.79820715090302, - 48.90524974736351, - 37.613905732876844, - 27.56337713308864, - 18.139192448570512, - 9.318470227235936, - 0.31406382209227107, - -8.591778414312286, - -17.185491136790795, - -25.286596667901648, - -31.923094432400006, - -37.223465400021084, - -40.95301733434391, - -43.20678123858567, - -44.538243229591636, - -45.20544684161286, - -45.54537454836865, - -45.63897573120871, - -45.31645933624648, - -44.34448288442027, - -42.532176728004195, - -39.857725238930534, - -36.620840103468865, - -33.53899380368829, - -31.35429597417242, - -30.93136867632342, - -32.87531324754306, - -37.26309128531015, - -43.59130612035261, - -50.89578764777424, - -57.92426424201209, - -63.01051422793691, - -65.29104016838885, - -63.96092577707959, - -59.037111676527374, - -51.06540786601452, - -41.426880689202484, - -30.881621749736027, - -20.868454830614354, - -12.31147663326033, - -5.150608839707122, - 0.2444862495630406, - 4.469460570882416, - 7.951603706535214, - 10.806416741527075, - 13.362555212497801, - 15.339931160646502, - 16.38352159258379, - 16.267366031580597, - 14.74603044966214, - 11.919539360869036, - 8.168233199711178, - 4.162335398062424, - 0.3868221741180063, - -2.4681122737557524, - -4.191350875964019, - -4.8958700998521, - -4.829191282446515, - -4.5384420535055465, - -4.515895028327425, - -5.043744525854397, - -6.1804110473007485, - -7.618992756126141, - -8.99588875786357, - -9.79469378122879, - -9.67281146682756, - -8.57562728523977, - -6.744276041202237, - -4.560663314535266, - -2.557001493995147, - -1.206582086182503, - -0.591234039733824, - -0.6312344227418067, - -0.9584893461594987, - -1.0651736508215193, - -0.5436921293696092, - 0.771491542212468, - 2.748091744762337, - 4.895627799542853, - 6.724776906561946, - 7.6754759872546146, - 7.621941325037716, - 6.908502849813567, - 6.353682275321422, - 7.146219364810106, - 10.579493508933632, - 17.61070154593389, - 28.885057619688272, - 43.399057864262, - 60.76428555615038, - 78.61901035886179, - 94.37916848982024 - ], - "pressure:J1:branch112_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch120_seg0": [ - 65.09970809089617, - 73.19534034745293, - 77.36749603345048, - 77.43948676897931, - 73.7458230130064, - 67.01969219239236, - 58.22436632182549, - 48.731508950843505, - 39.53630840422276, - 31.0137237115966, - 23.523892682294104, - 16.97942358492393, - 10.799489509224179, - 4.954450887708817, - -0.9642440551265412, - -6.9906528867242885, - -12.605387606258631, - -17.965436081557453, - -22.27295523460629, - -25.63983505805687, - -27.951299971221147, - -29.270257813202697, - -30.017936490236128, - -30.353791119385424, - -30.519564075599114, - -30.530098727768603, - -30.269626545270413, - -29.54600546562576, - -28.253464180458877, - -26.3518092446915, - -24.123823405196138, - -22.030452689298777, - -20.641368509974296, - -20.522377646902175, - -22.089356530616737, - -25.290493513327267, - -29.8342081017534, - -34.85645364683775, - -39.59875917355758, - -42.86273582994993, - -44.09336685401059, - -42.77779989212417, - -39.10883592188549, - -33.35878721843614, - -26.634577976606316, - -19.42991063498136, - -12.702488142479922, - -7.0980334492783905, - -2.4461090788188136, - 0.9497665961312702, - 3.6413407797170088, - 5.815798798826888, - 7.648435650865127, - 9.297782740586127, - 10.540003002728353, - 11.149389344929988, - 10.934542021073568, - 9.756013117731378, - 7.697786525893819, - 5.05314738286456, - 2.287446231075766, - -0.21760224271263007, - -2.0770366621917637, - -3.10009017104338, - -3.4417767516475415, - -3.2905421554160443, - -3.0396693568340387, - -3.024579855828074, - -3.411994420788594, - -4.23660222927147, - -5.240482840352552, - -6.173950911844445, - -6.663734604215298, - -6.506408564597544, - -5.660199731926845, - -4.350027059999582, - -2.814106659221647, - -1.4756319579989954, - -0.6046024259875366, - -0.26883233823482555, - -0.37376751381286494, - -0.6441902000150436, - -0.7178894360664174, - -0.3202185979709495, - 0.6412843577368511, - 2.045001481391898, - 3.5313833205690535, - 4.7302329065556945, - 5.2978499938049675, - 5.1567993692361895, - 4.587456718284902, - 4.206362196409958, - 4.83131390940052, - 7.414288562949147, - 12.421474868711266, - 20.461449138537603, - 30.544907493046516, - 42.56169774114624, - 54.60542187581235, - 65.09970809089617 - ], - "pressure:J1:branch120_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch132_seg0": [ - 36.814746711775726, - 40.42218463642474, - 41.74555625490318, - 40.70339093799057, - 37.84204794730484, - 33.595113714584016, - 28.491820991749602, - 23.27469229488656, - 18.59780672480535, - 14.207661749641964, - 10.55099031137095, - 7.351073766255011, - 4.158856881927374, - 1.1911031308696785, - -1.9871175657082014, - -5.1254528460118305, - -8.011138707534872, - -10.783094247419521, - -12.792853779932782, - -14.301379786258389, - -15.288038052115413, - -15.731724777356515, - -15.97782004529657, - -16.066920882191955, - -16.096937231330777, - -16.070646587237864, - -15.860397287399723, - -15.3635960595857, - -14.533533815272715, - -13.399599412418288, - -12.12923002523388, - -11.078897570046003, - -10.528251477239488, - -10.774870610827305, - -12.005015763977722, - -14.116365363651788, - -16.78913754971056, - -19.560024998855564, - -21.987880943339643, - -23.32519033150826, - -23.462121342809482, - -22.17747509678895, - -19.629280053646905, - -16.094438343072135, - -12.330109479583763, - -8.4618563670212, - -4.993969557815999, - -2.3456019198500373, - -0.15521477003412806, - 1.3691109338133807, - 2.5489382901010185, - 3.6170375460455806, - 4.47857376201011, - 5.280850651190766, - 5.85527510942549, - 5.9998940620361, - 5.68538852132566, - 4.83434401657039, - 3.5378080683602557, - 1.9998890640217335, - 0.5367966982022677, - -0.7370882359861929, - -1.5423128657850427, - -1.8716245112382135, - -1.8909937743270868, - -1.6964219419913995, - -1.5355940120846328, - -1.5872334830262134, - -1.8958127249179964, - -2.4339383452835577, - -3.005138617682758, - -3.4655931967953304, - -3.6242038242372288, - -3.3722663755669777, - -2.760949860086893, - -1.952305409991596, - -1.1100166032084273, - -0.43692671822168233, - -0.10758400767947848, - -0.06576516506659169, - -0.22142593552052692, - -0.40265603991532434, - -0.3928985110995898, - -0.06649747334781392, - 0.5759587421586996, - 1.4222915683227662, - 2.21304603675215, - 2.7815538413040346, - 2.9211566583764417, - 2.6679905360078076, - 2.270396773382168, - 2.1218300454705217, - 2.7128520263071305, - 4.532801715157847, - 7.805796653154919, - 12.767724587687262, - 18.607488759391696, - 25.26501452391486, - 31.775056594067767, - 36.814746711775726 - ], - "pressure:J1:branch132_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:J1:branch138_seg0": [ - 55.23413874641218, - 61.45103355956694, - 64.29585536704053, - 63.62476216847136, - 59.93969833743604, - 53.87228390380223, - 46.30431117913754, - 38.298241485568965, - 30.842269996130415, - 23.902929580415215, - 17.953470480476263, - 12.759679793631078, - 7.7537371836310545, - 3.061210356560663, - -1.8318389410187759, - -6.732667312045369, - -11.322548829832918, - -15.663529827183602, - -19.042502955358945, - -21.64051938729703, - -23.3588370603004, - -24.27334543062328, - -24.7659306098995, - -24.96778461534177, - -25.057693336744272, - -25.03875390909379, - -24.77687122679735, - -24.110004075754244, - -22.947209244192866, - -21.292638036134626, - -19.38992474444824, - -17.68712838484154, - -16.652702995015275, - -16.754758687798677, - -18.303332530578878, - -21.226618624529323, - -25.16477669113613, - -29.399712852366825, - -33.27197657328212, - -35.72264526885924, - -36.40713918581906, - -34.93072770022304, - -31.487739144425436, - -26.420364365711944, - -20.702405043870396, - -14.69131622166477, - -9.225894033014121, - -4.784585119222376, - -1.1621781177857669, - 1.4394647268419747, - 3.4791572449687496, - 5.181548462439248, - 6.6095260561599565, - 7.909558710344202, - 8.873734682867074, - 9.259331495002797, - 8.949056753284852, - 7.820004422511204, - 5.985439737369604, - 3.6967516788034094, - 1.4130766002065267, - -0.6259895546270535, - -2.0411745943918342, - -2.7470379495893176, - -2.9070600292368627, - -2.693506714483056, - -2.4541067543624435, - -2.467801374615994, - -2.850110196083193, - -3.594886172886978, - -4.457995433680808, - -5.216658387321142, - -5.5590543769561105, - -5.322480048011409, - -4.515725952612819, - -3.348373695895079, - -2.0507281138126765, - -0.9641433052824084, - -0.3263748433315164, - -0.14181926809124756, - -0.3055657896208858, - -0.5642553216852144, - -0.6047991253316193, - -0.2072122955851905, - 0.6696633085842815, - 1.9035620105142854, - 3.137165856950657, - 4.09194346130674, - 4.458144216099145, - 4.224999987967272, - 3.6788654963399643, - 3.3767209331830728, - 4.039434324976412, - 6.433028836866828, - 10.969936107774318, - 18.02885085750293, - 26.702870803443904, - 36.85657255365201, - 46.849389497570705, - 55.23413874641218 - ], - "pressure:J1:branch138_seg0": [ - 194616.12636109465, - 207236.89692532187, - 210945.77394465817, - 200775.18214484997, - 182289.9999906703, - 159081.22116170637, - 133469.0306268753, - 105121.13736853511, - 83997.62133445959, - 64001.693351767586, - 45046.95328568408, - 31095.416687356865, - 14486.563938194166, - -498.82486710101216, - -15623.95662945344, - -32401.714503050953, - -45597.04373559015, - -58775.655975007336, - -68192.72144753118, - -73902.68600266585, - -78255.41231767174, - -79820.67503257125, - -80457.05914414542, - -80920.73187213525, - -80910.41342374358, - -80578.38390188, - -79120.18085674138, - -75897.82073853265, - -70951.38899184424, - -64876.03589353471, - -58380.88070144503, - -53684.29759313553, - -52680.906341498834, - -55550.37957768088, - -63646.04198112638, - -75812.18185507468, - -90506.38195025953, - -103373.2470564001, - -114670.24321045136, - -119069.74428832174, - -116505.6921915325, - -107579.95442196766, - -92857.2661182151, - -73296.26761939406, - -54185.52105771797, - -35788.35094035297, - -18600.622782555078, - -6889.226254732972, - 2569.346317702157, - 9815.001496230983, - 14838.38041339701, - 20285.63717846353, - 24480.854141582495, - 27715.85353819505, - 30442.68857491467, - 30118.7674335162, - 27314.59304440731, - 22070.53837664597, - 14993.2745511752, - 6528.390793084528, - -204.29945063223136, - -5548.322906629491, - -9182.179176423097, - -9649.898216063768, - -9155.245019585565, - -8185.0004741231305, - -7544.668460330367, - -8292.995492187087, - -10362.991484881373, - -13424.723455879526, - -16200.96963002002, - -17996.713671853347, - -18185.198675772557, - -16160.298609525416, - -12347.39676307047, - -8039.542513433666, - -4066.436281460884, - -1013.7454774995846, - -40.308573312522256, - -612.2721169649017, - -1526.917149596937, - -2235.3801525912854, - -1698.013885094062, - 673.5058751736459, - 4395.27725211561, - 9054.344672101652, - 12603.28802791847, - 14576.204146591977, - 14646.685852418948, - 12659.512220762983, - 10612.612959956556, - 10886.089486956296, - 15803.99000946991, - 27798.071861453314, - 46934.009843030464, - 75209.30398054043, - 106001.008747077, - 139252.04390167212, - 172545.85035340267, - 194616.12636109465 - ], - "flow:branch2_seg0:J2": [ - 62.00731498078637, - 69.87502325837386, - 74.19804010062664, - 74.49926342155113, - 71.18831067932294, - 64.97198393405172, - 56.819230706427184, - 47.63421547845742, - 38.883157658714495, - 30.70533564035567, - 23.402165933451954, - 16.99244387090649, - 11.006138286511685, - 5.331859923552846, - -0.3884898826035899, - -6.125906582311653, - -11.748027590662957, - -16.841719987020575, - -21.05151604187257, - -24.419596183642646, - -26.712144989015428, - -28.078728010893116, - -28.852533601313183, - -29.219961076056464, - -29.406558138662703, - -29.44177771243295, - -29.201173808247503, - -28.537656147134005, - -27.31326945393306, - -25.546102025883673, - -23.416933427117062, - -21.421245082189337, - -20.069760715731196, - -19.87603596140836, - -21.24743487699465, - -24.211163038129474, - -28.450556897610635, - -33.25779533926403, - -37.7875718786312, - -41.035483915980244, - -42.35172584560217, - -41.3026927667474, - -37.90080616688992, - -32.57228495949333, - -26.202170338021297, - -19.262431424701514, - -12.783869026342906, - -7.30539878841485, - -2.776115328588648, - 0.6103484034499945, - 3.251019413434274, - 5.45002768442691, - 7.217601875988526, - 8.808510321262066, - 10.069922231706, - 10.683646942636894, - 10.526369980295453, - 9.462081901466474, - 7.569311955289431, - 5.058850427410635, - 2.4309181790792938, - 0.0359454690682833, - -1.79946703108089, - -2.878155943062377, - -3.249479139528767, - -3.155623368097752, - -2.940136068490174, - -2.9195081424077207, - -3.281221412436393, - -4.043034763938563, - -4.992724413518862, - -5.892760656601648, - -6.388121615749717, - -6.2610385469309, - -5.496498074548848, - -4.258932784102554, - -2.82215107560833, - -1.513564507008723, - -0.6709580882993275, - -0.32070929493348094, - -0.3795759177183366, - -0.6134915935049031, - -0.6848040194799029, - -0.3252282360551386, - 0.5573590413554609, - 1.8783563344532481, - 3.2903124379328617, - 4.444558992359671, - 5.034273705950084, - 4.961556997429201, - 4.451929685601282, - 4.08384910590817, - 4.6522878394707305, - 6.992529426067448, - 11.751900937750687, - 19.256963069912484, - 28.837540798768945, - 40.291238892316066, - 51.96818084454086, - 62.00731498078637 - ], - "pressure:branch2_seg0:J2": [ - 186185.38601511417, - 200121.0181262323, - 206526.8145315477, - 199397.63595493202, - 183554.43020055306, - 162506.72643010737, - 138469.48450170923, - 111522.85898612953, - 89074.90169365972, - 68693.89490738827, - 50221.833905782965, - 35022.1598220102, - 18798.137125484544, - 3686.6762434785487, - -11808.007899132112, - -27365.820896161556, - -41389.784976498326, - -55327.72327680736, - -64739.69362284167, - -71061.28891502849, - -76180.86154514694, - -78151.944595301, - -79170.01786579443, - -79780.3523193819, - -79779.68927107079, - -79649.40918828818, - -78432.17631974527, - -75629.57127071965, - -71145.583771911, - -65568.74817470064, - -59249.71494736896, - -54392.00700970595, - -52675.8584606147, - -54506.95182976724, - -61190.17565123947, - -72238.70947437796, - -85562.53058694194, - -98765.56844558504, - -110310.56750603546, - -115937.32797962574, - -115124.44454141684, - -108033.65708551495, - -94671.38130741731, - -76188.49770940543, - -58035.08822917503, - -40116.6681635509, - -22237.81190946032, - -10106.069663694541, - -73.20866679621673, - 7790.337457244091, - 12801.016840618255, - 18705.599323581835, - 23057.77549196057, - 26245.79742117268, - 29247.309977317203, - 29571.337625915086, - 27422.719862180515, - 22958.119165108157, - 16468.98617771939, - 8668.657452101717, - 1665.429591298207, - -4074.174995154281, - -7809.470419062031, - -9066.424238170755, - -9052.491288119689, - -8228.68422917245, - -7561.875730357198, - -8072.036889613164, - -9867.51604405849, - -12705.49556656644, - -15381.546381804885, - -17225.741569220445, - -17860.30282289183, - -16257.236239954658, - -12928.96741167466, - -8861.464000218453, - -5094.036122322756, - -1800.508472248054, - -459.3058622663757, - -712.041920812084, - -1380.417311339217, - -2054.299124034961, - -1748.6795848655818, - 169.10712052633312, - 3511.8115769925435, - 7772.698078742238, - 11475.44563001766, - 13846.93534443955, - 14242.658940821575, - 12753.172892703158, - 10891.428143728257, - 10763.703802732813, - 14727.59984498183, - 24970.513365814117, - 42416.92009617123, - 68765.34412200852, - 98046.04405421598, - 128747.77783708065, - 163329.05312460993, - 186185.38601511417 - ], - "flow:J2:branch3_seg0": [ - 28.240748287634347, - 32.04168729548129, - 34.26030472566396, - 34.64714482070177, - 33.34047808175564, - 30.638332423421982, - 26.975097164738475, - 22.777643762925347, - 18.68950761735658, - 14.846036672794527, - 11.392706082319236, - 8.344797663664423, - 5.523873724099189, - 2.8532408203322426, - 0.17851114291629128, - -2.4947204854670018, - -5.12926600146001, - -7.531482431765456, - -9.54239355238897, - -11.169218500707878, - -12.299497085740166, - -12.994258079928523, - -13.396913338060221, - -13.595452116063447, - -13.697346886849832, - -13.724372955272052, - -13.627731508970479, - -13.342959642555593, - -12.804900333789238, - -12.013944189911554, - -11.045146110832682, - -10.111868161874757, - -9.446829889246386, - -9.29026286768342, - -9.83798354937831, - -11.121919275809955, - -13.013624263158, - -15.212968836529086, - -17.327506236685316, - -18.906423326370806, - -19.629255198617596, - -19.277217215536393, - -17.833542494098367, - -15.473169247759696, - -12.583184102601104, - -9.390242895630042, - -6.361540119802423, - -3.7594517652939614, - -1.5903667598202378, - 0.05223955385055482, - 1.3333431682125712, - 2.390049871807227, - 3.240254122745954, - 3.9982424460707695, - 4.606163451193175, - 4.928982422272362, - 4.90271452940719, - 4.462077082739214, - 3.6321130269529647, - 2.5048825159163597, - 1.2927958385485645, - 0.16716709692974724, - -0.716789779626285, - -1.2637458781087918, - -1.4792363528679675, - -1.4665063676328975, - -1.3784765687389366, - -1.361658760807946, - -1.510182903359434, - -1.8419497519747596, - -2.2704552965641223, - -2.6902138199816443, - -2.940793865984767, - -2.9160162034052455, - -2.5987511927047025, - -2.0532879653677347, - -1.3999414589981456, - -0.7872510337722665, - -0.37134031635790693, - -0.17852927722664394, - -0.17992927317520035, - -0.2757723908433614, - -0.31467129369290014, - -0.1700312336181739, - 0.2111429450411856, - 0.798594634908853, - 1.4476989509267142, - 1.9972523341977952, - 2.301769703675559, - 2.3064756417181758, - 2.0968612044683144, - 1.9225622212483164, - 2.139229732250618, - 3.130787764721702, - 5.20918878773878, - 8.542106060332605, - 12.867662070643123, - 18.086649367558294, - 23.491245925314814, - 28.240748287634347 - ], - "pressure:J2:branch3_seg0": [ - 186185.38601511417, - 200121.0181262323, - 206526.8145315477, - 199397.63595493202, - 183554.43020055306, - 162506.72643010737, - 138469.48450170923, - 111522.85898612953, - 89074.90169365972, - 68693.89490738827, - 50221.833905782965, - 35022.1598220102, - 18798.137125484544, - 3686.6762434785487, - -11808.007899132112, - -27365.820896161556, - -41389.784976498326, - -55327.72327680736, - -64739.69362284167, - -71061.28891502849, - -76180.86154514694, - -78151.944595301, - -79170.01786579443, - -79780.3523193819, - -79779.68927107079, - -79649.40918828818, - -78432.17631974527, - -75629.57127071965, - -71145.583771911, - -65568.74817470064, - -59249.71494736896, - -54392.00700970595, - -52675.8584606147, - -54506.95182976724, - -61190.17565123947, - -72238.70947437796, - -85562.53058694194, - -98765.56844558504, - -110310.56750603546, - -115937.32797962574, - -115124.44454141684, - -108033.65708551495, - -94671.38130741731, - -76188.49770940543, - -58035.08822917503, - -40116.6681635509, - -22237.81190946032, - -10106.069663694541, - -73.20866679621673, - 7790.337457244091, - 12801.016840618255, - 18705.599323581835, - 23057.77549196057, - 26245.79742117268, - 29247.309977317203, - 29571.337625915086, - 27422.719862180515, - 22958.119165108157, - 16468.98617771939, - 8668.657452101717, - 1665.429591298207, - -4074.174995154281, - -7809.470419062031, - -9066.424238170755, - -9052.491288119689, - -8228.68422917245, - -7561.875730357198, - -8072.036889613164, - -9867.51604405849, - -12705.49556656644, - -15381.546381804885, - -17225.741569220445, - -17860.30282289183, - -16257.236239954658, - -12928.96741167466, - -8861.464000218453, - -5094.036122322756, - -1800.508472248054, - -459.3058622663757, - -712.041920812084, - -1380.417311339217, - -2054.299124034961, - -1748.6795848655818, - 169.10712052633312, - 3511.8115769925435, - 7772.698078742238, - 11475.44563001766, - 13846.93534443955, - 14242.658940821575, - 12753.172892703158, - 10891.428143728257, - 10763.703802732813, - 14727.59984498183, - 24970.513365814117, - 42416.92009617123, - 68765.34412200852, - 98046.04405421598, - 128747.77783708065, - 163329.05312460993, - 186185.38601511417 - ], - "flow:J2:branch36_seg0": [ - 33.766566693152164, - 37.83333596289253, - 39.93773537496278, - 39.852118600848364, - 37.847832597566516, - 34.33365151062805, - 29.844133541688386, - 24.856571715532674, - 20.193650041357703, - 15.859298967560836, - 12.009459851131718, - 8.64764620724104, - 5.482264562411354, - 2.478619103219393, - -0.5670010255204079, - -3.6311860968457665, - -6.618761589202423, - -9.310237555256103, - -11.509122489482813, - -13.250377682935113, - -14.41264790327389, - -15.08446993096571, - -15.455620263251015, - -15.624508959991424, - -15.709211251812132, - -15.717404757160809, - -15.57344229927712, - -15.194696504578467, - -14.508369120144186, - -13.532157835972557, - -12.371787316284903, - -11.309376920315229, - -10.622930826484929, - -10.585773093724717, - -11.409451327616244, - -13.089243762318459, - -15.436932634452086, - -18.044826502735237, - -20.46006564194592, - -22.12906058960991, - -22.72247064698455, - -22.025475551211144, - -20.06726367279198, - -17.099115711733692, - -13.618986235420138, - -9.872188529071462, - -6.422328906540485, - -3.545947023120897, - -1.1857485687684137, - 0.5581088495994397, - 1.9176762452217162, - 3.059977812619673, - 3.9773477532425683, - 4.810267875191324, - 5.463758780512841, - 5.754664520364487, - 5.6236554508883065, - 5.000004818727405, - 3.937198928336412, - 2.5539679114942953, - 1.1381223405308247, - -0.13122162786157704, - -1.0826772514546554, - -1.614410064953687, - -1.7702427866608288, - -1.6891170004649745, - -1.561659499751172, - -1.5578493815997647, - -1.7710385090769847, - -2.2010850119637864, - -2.722269116954705, - -3.2025468366200207, - -3.447327749764957, - -3.3450223435256228, - -2.8977468818440926, - -2.2056448187348408, - -1.4222096166101648, - -0.7263134732364802, - -0.299617771941449, - -0.14218001770683925, - -0.19964664454312725, - -0.3377192026615461, - -0.37013272578699075, - -0.15519700243696202, - 0.3462160963142744, - 1.079761699544373, - 1.8426134870061313, - 2.447306658161848, - 2.732504002274517, - 2.6550813557110273, - 2.3550684811330136, - 2.161286884659844, - 2.513058107220232, - 3.8617416613458038, - 6.542712150011856, - 10.714857009579742, - 15.96987872812577, - 22.204589524757793, - 28.476934919226288, - 33.766566693152164 - ], - "pressure:J2:branch36_seg0": [ - 186185.38601511417, - 200121.0181262323, - 206526.8145315477, - 199397.63595493202, - 183554.43020055306, - 162506.72643010737, - 138469.48450170923, - 111522.85898612953, - 89074.90169365972, - 68693.89490738827, - 50221.833905782965, - 35022.1598220102, - 18798.137125484544, - 3686.6762434785487, - -11808.007899132112, - -27365.820896161556, - -41389.784976498326, - -55327.72327680736, - -64739.69362284167, - -71061.28891502849, - -76180.86154514694, - -78151.944595301, - -79170.01786579443, - -79780.3523193819, - -79779.68927107079, - -79649.40918828818, - -78432.17631974527, - -75629.57127071965, - -71145.583771911, - -65568.74817470064, - -59249.71494736896, - -54392.00700970595, - -52675.8584606147, - -54506.95182976724, - -61190.17565123947, - -72238.70947437796, - -85562.53058694194, - -98765.56844558504, - -110310.56750603546, - -115937.32797962574, - -115124.44454141684, - -108033.65708551495, - -94671.38130741731, - -76188.49770940543, - -58035.08822917503, - -40116.6681635509, - -22237.81190946032, - -10106.069663694541, - -73.20866679621673, - 7790.337457244091, - 12801.016840618255, - 18705.599323581835, - 23057.77549196057, - 26245.79742117268, - 29247.309977317203, - 29571.337625915086, - 27422.719862180515, - 22958.119165108157, - 16468.98617771939, - 8668.657452101717, - 1665.429591298207, - -4074.174995154281, - -7809.470419062031, - -9066.424238170755, - -9052.491288119689, - -8228.68422917245, - -7561.875730357198, - -8072.036889613164, - -9867.51604405849, - -12705.49556656644, - -15381.546381804885, - -17225.741569220445, - -17860.30282289183, - -16257.236239954658, - -12928.96741167466, - -8861.464000218453, - -5094.036122322756, - -1800.508472248054, - -459.3058622663757, - -712.041920812084, - -1380.417311339217, - -2054.299124034961, - -1748.6795848655818, - 169.10712052633312, - 3511.8115769925435, - 7772.698078742238, - 11475.44563001766, - 13846.93534443955, - 14242.658940821575, - 12753.172892703158, - 10891.428143728257, - 10763.703802732813, - 14727.59984498183, - 24970.513365814117, - 42416.92009617123, - 68765.34412200852, - 98046.04405421598, - 128747.77783708065, - 163329.05312460993, - 186185.38601511417 - ], - "flow:branch4_seg0:J3": [ - 1303.013637850359, - 1478.852522878191, - 1583.1157417802604, - 1610.416407185155, - 1565.984129695414, - 1462.012373466607, - 1312.4739450618422, - 1143.9366762241586, - 974.197252957987, - 808.6578448384206, - 657.6747259342634, - 519.0813196884475, - 384.0743321777852, - 253.36471620813487, - 120.17396038997028, - -15.204776341719572, - -143.0310135753859, - -266.180127795879, - -369.11819163266216, - -453.6963247694945, - -518.3828337065286, - -562.74889593674, - -595.0824715848455, - -617.6701044914656, - -634.6552634253873, - -646.5702752367298, - -651.0498631097556, - -644.8563933830475, - -626.1759986910791, - -594.6954848727019, - -555.2418954862032, - -517.5307575420574, - -491.41126078705486, - -488.238416018142, - -516.2208430913979, - -575.1304179956744, - -659.6508028521586, - -755.3665887479791, - -847.64533835475, - -914.4803515358274, - -944.855460950496, - -928.7140891156475, - -867.3709084847081, - -765.5425100545065, - -642.3618882366977, - -506.6389508377626, - -374.6807160804954, - -260.88779104314966, - -160.84101410342015, - -82.11541171681452, - -15.978789031314582, - 41.6034635037689, - 91.17736923307355, - 136.70476044138198, - 173.11773945573282, - 195.92599009995328, - 201.95546178835664, - 188.40868064738893, - 156.422301295158, - 111.84014876412004, - 62.889611524555576, - 16.569423381885905, - -19.44303845007621, - -41.294974144290386, - -51.626862127246234, - -53.09629278121859, - -52.60737564789498, - -56.12488480374792, - -66.59032035793344, - -84.6038720279211, - -105.57805345599844, - -124.95014204087184, - -136.1552871383623, - -135.0976966958339, - -121.1809015462762, - -98.22610155363722, - -70.68020583430443, - -45.69540549157318, - -29.00005501302321, - -21.252621341614752, - -21.18864665517238, - -24.017424845547605, - -23.169837460078966, - -13.771745944559177, - 5.991379777595249, - 33.74596671207631, - 63.18372201772934, - 87.5462664153834, - 100.49159923225206, - 100.42767327383235, - 92.77026224162802, - 88.709818487761, - 103.658694839347, - 155.49912285364803, - 253.904247681615, - 410.6279498030188, - 608.4094232554453, - 844.6280801889754, - 1087.9985881650828, - 1303.013637850359 - ], - "pressure:branch4_seg0:J3": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch5_seg0": [ - 460.08761313791126, - 540.4454011651198, - 601.2549465716148, - 637.8403104186793, - 648.5537986859634, - 634.7342980253716, - 599.3892759679215, - 550.2245290920478, - 492.9408361918411, - 431.56415012831104, - 370.55641480658625, - 310.9864798605433, - 251.93649414189102, - 193.79103908567504, - 135.10123673829887, - 75.78013083260689, - 18.283233473716574, - -37.85198445367059, - -88.07851870069142, - -132.22993771859527, - -169.1835360995578, - -198.30806955426357, - -221.54287567591493, - -239.55038126051764, - -253.7517315278725, - -264.67208766271324, - -272.00462106291855, - -275.0018470637035, - -273.0918498739514, - -265.9621922530134, - -254.78702222249183, - -242.21456396621676, - -231.42369528469044, - -226.40300952744076, - -230.58264318841893, - -245.20492523501255, - -269.8829346837797, - -301.2655128708748, - -334.9623537447109, - -364.1284767321434, - -383.95032948652823, - -389.73046729274466, - -379.9592846697155, - -354.49032060037183, - -317.80011580286686, - -272.543821986996, - -223.97109703179945, - -177.366197998333, - -133.13637197296345, - -94.62237631873205, - -60.41825233926769, - -29.945327150339832, - -3.0430622767362205, - 21.399592606812202, - 42.17640463378555, - 58.098963243962785, - 67.97266738497197, - 70.65754058011426, - 65.99164135670803, - 55.331621023770104, - 40.81182749418697, - 24.90340042848425, - 10.360144051978383, - -0.9120026483013526, - -8.712429755795618, - -13.212889156263909, - -16.069917446069375, - -19.05712505164345, - -23.422693391029902, - -29.848282994912136, - -37.496237544347544, - -45.23848871265047, - -51.10338617177217, - -53.51369551320279, - -51.73563881745721, - -46.32711640792425, - -38.29740470873068, - -29.731619935837802, - -22.584674374795863, - -17.688971570613965, - -15.244492593083697, - -14.282395408981696, - -13.019609982297503, - -9.807084095957745, - -3.6120633725144353, - 5.3932860778714415, - 15.839911022122356, - 25.729382548487955, - 32.90709795484074, - 36.2812767530628, - 36.67246095697439, - 36.86174985261524, - 41.375957164565094, - 56.10771168589389, - 85.30278640762943, - 133.99798636919414, - 199.32847527954507, - 281.3902098724388, - 371.89407693858243, - 460.08761313791126 - ], - "pressure:J3:branch5_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch12_seg0": [ - 176.33347258523884, - 198.5856692116671, - 210.37733835430035, - 211.1710794656926, - 201.90224212366138, - 184.4863090071416, - 161.41180238061156, - 136.18585081503275, - 111.86496565811869, - 88.85362156848623, - 68.59467240874552, - 50.72227048543571, - 33.682693256416265, - 17.549812257549238, - 1.091608617502958, - -15.590224831413263, - -31.329634085300732, - -46.19882980418368, - -58.37807943254123, - -67.96650210304988, - -74.67113439360865, - -78.72517824757647, - -81.1725362995432, - -82.48780416277216, - -83.28428504190892, - -83.60968129552303, - -83.14154490141976, - -81.39095831825944, - -78.04549653090017, - -73.06889611944516, - -67.13817958742196, - -61.60251117951956, - -57.89870640674161, - -57.58843781079181, - -61.75820475455217, - -70.33863165286719, - -82.46796397783127, - -95.95060857030184, - -108.68807291457168, - -117.51981071474744, - -120.92150955873801, - -117.58510603411429, - -107.82087442135129, - -92.59604225717116, - -74.60293713635382, - -55.277600140008325, - -37.23087940314861, - -22.01957122260547, - -9.35869954811368, - 0.05866251705618651, - 7.583376730087866, - 13.792892955542058, - 19.012727683074015, - 23.778450459073433, - 27.421185079834864, - 29.30029179744615, - 28.97711079960714, - 26.033600135688097, - 20.71362935623946, - 13.76292114894166, - 6.505849608549489, - -0.15859892922571078, - -5.132348170359763, - -7.903677555090141, - -8.882310854529084, - -8.570666913600103, - -7.98976782620427, - -8.036099969017116, - -9.162378694387622, - -11.426440332540121, - -14.177601674698364, - -16.722409725887093, - -18.06940850624426, - -17.67577276986177, - -15.455368789822872, - -11.970145322945543, - -7.907215636571674, - -4.331233099250959, - -2.033100748344721, - -1.1123512357255785, - -1.3609215967508825, - -2.0343341304681846, - -2.1748263107358903, - -1.056837526920245, - 1.556724329488501, - 5.355236127844056, - 9.347750354663223, - 12.595732564171678, - 14.168801508855452, - 13.842264529750059, - 12.391664487213607, - 11.44488033090243, - 13.223304037910776, - 20.197478576262515, - 33.82756057098754, - 55.432498970108455, - 82.73527939735011, - 115.22726912609312, - 147.8488887644716, - 176.33347258523884 - ], - "pressure:J3:branch12_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch20_seg0": [ - 144.54082541729974, - 160.49558883303817, - 167.7357879224204, - 165.69116486870647, - 155.96878766968337, - 140.31333100463823, - 120.74918472154293, - 100.15080402232344, - 81.10445153986372, - 63.257742730802065, - 48.05611486952751, - 34.693026586346384, - 21.720074177988288, - 9.472330035586747, - -3.370927639183267, - -16.201819237991174, - -28.308949797207354, - -39.78604166021111, - -48.64888027657434, - -55.44972999869584, - -60.0777376666184, - -62.53183606650883, - -63.96079815088466, - -64.65590549750404, - -65.03845770878664, - -65.16130651879539, - -64.60370443000699, - -62.96491080990327, - -60.002707590045844, - -55.78641660212114, - -50.872650474236195, - -46.57701795825956, - -44.01377550665729, - -44.413286210411165, - -48.58986590967402, - -56.34331407753264, - -66.60012542611477, - -77.6586237436885, - -87.65083251316067, - -93.88276257930568, - -95.45735367395937, - -91.47743195140285, - -82.29805418670526, - -68.99082042553682, - -54.151638935031826, - -38.6567070487493, - -24.46271439237909, - -13.175254282727828, - -3.8690616439343346, - 2.833934171021851, - 8.019858274598166, - 12.57790171556809, - 16.313169849936216, - 19.78123508808431, - 22.41142420282063, - 23.46919145941848, - 22.723738954949972, - 19.860447926232847, - 15.132275337889691, - 9.273370112237, - 3.4291343826675313, - -1.773980476274169, - -5.330862082937553, - -7.047509727937808, - -7.399204289241839, - -6.80799441465193, - -6.188341780951427, - -6.273610080641266, - -7.3464518435754185, - -9.355454268392826, - -11.641032404592357, - -13.609376251425648, - -14.496186086658676, - -13.822975696253607, - -11.687281866620456, - -8.629069998680139, - -5.3015302495160554, - -2.490181568918728, - -0.9266522173638753, - -0.5123137163777874, - -0.9645085346224863, - -1.644737980949267, - -1.719826652374993, - -0.6369482740557928, - 1.707846179348935, - 4.946739570377715, - 8.171610532323301, - 10.639734054580376, - 11.554509853589444, - 10.891886586041693, - 9.466936880546033, - 8.729410194861048, - 10.587549320167552, - 16.994621478516486, - 29.08673633256865, - 47.75209608034928, - 70.52652588589328, - 96.83698720212337, - 123.15349641252483, - 144.54082541729974 - ], - "pressure:J3:branch20_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch22_seg0": [ - 53.09344981928633, - 58.25955798723253, - 59.98555936161681, - 58.43734781632398, - 54.21146442711287, - 48.09441482422342, - 40.67486940185955, - 33.332053017953676, - 26.58775844087436, - 20.47552816060922, - 15.32444384390491, - 10.782589118604115, - 6.336644423930579, - 2.018696990738703, - -2.4667956023737743, - -7.081909180234316, - -11.22057625612793, - -15.201492809396047, - -18.134893829753647, - -20.29348054426185, - -21.71467400087633, - -22.354067574304178, - -22.730568263512016, - -22.884718646015536, - -22.97841965223404, - -22.985663911147608, - -22.733350352027472, - -22.053448870631396, - -20.89272459018405, - -19.269847549125558, - -17.461390462883244, - -15.970951176373648, - -15.198225888312583, - -15.60491455638852, - -17.447123730562783, - -20.521265571447316, - -24.442648095841683, - -28.455904262017327, - -31.89274756613583, - -33.79697728090037, - -33.89034197585595, - -31.915280756175278, - -28.190846042033108, - -23.055547965498544, - -17.584493021566555, - -12.083035712163152, - -7.146612020701531, - -3.444152427887415, - -0.3662806683385674, - 1.7249613172545812, - 3.395075909309895, - 4.888002447273539, - 6.128662433217724, - 7.326918891030001, - 8.158460200235655, - 8.408787287031055, - 7.9684225438013465, - 6.760754538374951, - 4.887376360773772, - 2.7120875004201412, - 0.595168643370182, - -1.166707131249177, - -2.2913953349827763, - -2.7102045341667127, - -2.6805721432203633, - -2.364342861671338, - -2.12288022283074, - -2.203671377471269, - -2.6649630500010044, - -3.466666315354123, - -4.31497105167359, - -4.988655059832767, - -5.210049839893293, - -4.839912085177825, - -3.938958047062418, - -2.764933154862588, - -1.5432240125783705, - -0.591879303067141, - -0.1372815837381404, - -0.10207950738630193, - -0.35745543057795376, - -0.6363655527050059, - -0.6234807277660774, - -0.14527978659375235, - 0.8104605303196792, - 2.038813555906928, - 3.210780318204432, - 4.009882035474966, - 4.199958588805575, - 3.8103536100401554, - 3.21236602591919, - 2.990140591614344, - 3.8472880699654013, - 6.545593197248596, - 11.27818087904411, - 18.494677260835594, - 26.97703182549842, - 36.58126323307447, - 45.9012740407493, - 53.09344981928633 - ], - "pressure:J3:branch22_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch31_seg0": [ - 78.84602018177819, - 87.52795473204087, - 91.19018613313551, - 89.9418434846495, - 84.37528835794774, - 75.64939761323211, - 64.75560395494158, - 53.607131965398544, - 43.11795927726421, - 33.59745598269247, - 25.403823975257236, - 18.253001023059507, - 11.453535602118775, - 4.891026368622371, - -1.7763374572706612, - -8.687736266362942, - -15.010558715640453, - -21.04934737114, - -25.82481635483403, - -29.447458743605907, - -31.926132808638933, - -33.27551395666498, - -34.07603230366724, - -34.47982967587952, - -34.7432258605805, - -34.85132518651089, - -34.621823372683345, - -33.807335528516944, - -32.29540707730718, - -30.066800598492033, - -27.476973041243127, - -25.167372286372725, - -23.765446994274765, - -23.97662933788814, - -26.240547610642096, - -30.40705265586925, - -36.06414789402353, - -42.13235559793283, - -47.65471207557056, - -51.264717547348376, - -52.30508586337402, - -50.284867971415245, - -45.496937686264054, - -38.34763850809615, - -30.180664737004186, - -21.68474910803906, - -13.834052628622446, - -7.517980975403166, - -2.297751542829176, - 1.4300067425699408, - 4.391269766884348, - 6.867118137900656, - 8.961385569948114, - 10.920807767064945, - 12.354872804153645, - 12.995612334472844, - 12.610836633230539, - 11.06245794329019, - 8.457958736405573, - 5.249251958771797, - 1.9703974171734915, - -0.8869842468406541, - -2.914905721617598, - -3.895527292550546, - -4.101716830246181, - -3.7839244716557405, - -3.439711913396432, - -3.465122140836483, - -4.02505558951301, - -5.115446719565249, - -6.384344279057823, - -7.492854997005645, - -8.0044443779336, - -7.686388818054894, - -6.534684100319276, - -4.867146729229139, - -3.004434798135286, - -1.446353089504609, - -0.5339593851495184, - -0.2685650094838828, - -0.5125442302877065, - -0.8919095979156321, - -0.952646796572494, - -0.385628351275108, - 0.8946370212857804, - 2.665280757398357, - 4.479712010684877, - 5.848665575601999, - 6.400487438896126, - 6.068366061471199, - 5.284668235597568, - 4.849505641995426, - 5.790677826832608, - 9.272806575931613, - 15.752363491835734, - 25.908428555427054, - 38.395167027814686, - 52.85862405562118, - 67.08924932589446, - 78.84602018177819 - ], - "pressure:J3:branch31_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch39_seg0": [ - 114.40369006605889, - 128.72275184874297, - 136.15031195803704, - 136.31121780617823, - 129.9104123178987, - 118.26609386702164, - 103.02427786572623, - 86.58410152177058, - 70.74911724788562, - 55.89889635528091, - 43.020343715929855, - 31.6318022611012, - 20.920647934402215, - 10.799279783929672, - 0.4497501536669445, - -9.923064201832485, - -19.82521849959782, - -29.187908854911306, - -36.81490008081787, - -42.859360782156394, - -47.11565773096573, - -49.686810995574284, - -51.2722478209303, - -52.148165461654045, - -52.70144122315445, - -52.984792411659235, - -52.77122047065112, - -51.75618607850443, - -49.72276288135783, - -46.64421335369792, - -42.917599585145595, - -39.424211420052714, - -37.05249799004025, - -36.84233527652409, - -39.49414625359293, - -45.02288357618303, - -52.8300702842968, - -61.66752010518126, - -70.05800778003612, - -76.02794566342482, - -78.55323526546903, - -76.72678145675953, - -70.65182786249368, - -60.96218613959662, - -49.35980461705822, - -36.782591462361715, - -24.896480658332194, - -14.843827356343535, - -6.427902471476115, - -0.1355076382875522, - 4.8420967641842525, - 8.982530671356677, - 12.428749129118716, - 15.569879823760923, - 17.989497551709896, - 19.269278034258726, - 19.112994848689727, - 17.243478476186283, - 13.790887684379049, - 9.270587348608174, - 4.482285288959593, - 0.05160384262064764, - -3.2487448247178277, - -5.14796008735454, - -5.846387954880967, - -5.664257346775854, - -5.27932414627956, - -5.281426107325891, - -5.986646993471083, - -7.442541572140982, - -9.241334812821245, - -10.924891019515721, - -11.860443966586656, - -11.653374667346542, - -10.251823706765439, - -7.988898689360642, - -5.3315547647071675, - -2.947687472944127, - -1.3932063599026632, - -0.7404187110501363, - -0.870758629625503, - -1.3089984833214547, - -1.4259278294943394, - -0.737833275794852, - 0.9388127039389097, - 3.39926608269396, - 6.035585347915566, - 8.217771036218982, - 9.30032480039483, - 9.14164505955228, - 8.213519226358349, - 7.55425038534792, - 8.624818116064061, - 13.027478654826938, - 21.807597733636978, - 35.77932753483337, - 53.55170195101689, - 74.6093305587105, - 95.94662365982073, - 114.40369006605889 - ], - "pressure:J3:branch39_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch52_seg0": [ - 31.043550840352673, - 33.86840228792598, - 34.66443987035161, - 33.56013998191772, - 30.947430658066935, - 27.31870730494042, - 22.959991365769312, - 18.720112509011297, - 14.87760494063895, - 11.413594519253303, - 8.479088101235561, - 5.916070455252073, - 3.3591841548049506, - 0.8663465665104345, - -1.7010052695785818, - -4.394562137897371, - -6.721211420978713, - -8.997140657280772, - -10.635501106422776, - -11.810867216315911, - -12.592759912636739, - -12.914232951917253, - -13.112233667983404, - -13.192468113634334, - -13.242081328374569, - -13.240178917163895, - -13.079624545096783, - -12.659251743307594, - -11.961782771715924, - -11.00022454215478, - -9.94905859256471, - -9.112593859889664, - -8.7199986463969, - -9.028226548101644, - -10.184666490371976, - -12.03135800164051, - -14.352134631348354, - -16.65713372514047, - -18.599289121413392, - -19.60148330051216, - -19.529154009557672, - -18.260052905007676, - -16.015144356827747, - -12.966240430827682, - -9.788449466887307, - -6.639398870942635, - -3.8132451377605037, - -1.7622828375224189, - -0.03140976311124503, - 1.124774891869567, - 2.0581710052219706, - 2.9109569943283007, - 3.613511881846019, - 4.296777158450529, - 4.755787776240936, - 4.8618383372684475, - 4.560762398184832, - 3.8185918221290813, - 2.6960509981842233, - 1.4215914684854838, - 0.20630935309071508, - -0.7783549050356204, - -1.3951586974331693, - -1.5861681225796196, - -1.5408176339366968, - -1.3452339781227607, - -1.211311233462054, - -1.279459344556508, - -1.5685279211413614, - -2.0510019573537783, - -2.5415710434477297, - -2.9146567867483832, - -3.0142699159468753, - -2.765597728511732, - -2.2120636530585296, - -1.521228236845854, - -0.8168450269223066, - -0.2849766542197465, - -0.053047566843566624, - -0.06043125811717011, - -0.2221618203612706, - -0.3822210782307546, - -0.35546133608877617, - -0.04962018657371669, - 0.5316496930592719, - 1.2561151971075908, - 1.9268404869470712, - 2.3580553772554134, - 2.432420125997603, - 2.1708403156085114, - 1.8157358451066858, - 1.7187605515889999, - 2.2852402644344725, - 3.9694950461699396, - 6.814263734307549, - 11.133441203697096, - 16.102089480289436, - 21.676294635400765, - 27.043012464395787, - 31.043550840352673 - ], - "pressure:J3:branch52_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch70_seg0": [ - 66.00227498726848, - 72.43869283484439, - 74.72313407257059, - 72.85350289707985, - 67.70091846393719, - 60.10445996062894, - 50.99319908757035, - 41.76213947887926, - 33.44756011378571, - 25.773337659998198, - 19.30624223547381, - 13.667488129281747, - 8.035709338824981, - 2.7080997642520623, - -2.942345874550371, - -8.654457095945945, - -13.836413066816506, - -18.823909971957335, - -22.48251693384744, - -25.221713404563804, - -27.01512634619195, - -27.852318438567, - -28.338965213819534, - -28.549490567467924, - -28.672530784753242, - -28.685519998220176, - -28.373083060457926, - -27.53390663459676, - -26.0931716018462, - -24.084297251680123, - -21.844009245832616, - -19.98016330007129, - -19.024454430663706, - -19.506999129866767, - -21.761621735392502, - -25.567291510452876, - -30.414760511449355, - -35.37136315467859, - -39.68839124866788, - -42.05214849440561, - -42.22614246418107, - -39.83768832656003, - -35.2501120688184, - -28.897416742892425, - -22.146598959660505, - -15.26129053062865, - -9.127334904608686, - -4.455906086714216, - -0.602251921493175, - 2.0535092706243767, - 4.162385654134667, - 6.0433491047968495, - 7.613760007596678, - 9.093575952229067, - 10.153920212076876, - 10.465584395828314, - 9.935611523262914, - 8.442086329706964, - 6.146150685895492, - 3.4245661042278206, - 0.8265353096730829, - -1.39001541808692, - -2.7981144256955535, - -3.338758488811837, - -3.3265985221801913, - -2.9518170020999905, - -2.6570438319238527, - -2.7565150177278834, - -3.3242095180188205, - -4.311790223559572, - -5.356666554949806, - -6.198167449427372, - -6.4810181582358135, - -6.031817778720093, - -4.926671814842502, - -3.4774261974430107, - -1.9617634286188792, - -0.7763260435530367, - -0.19878860583886246, - -0.14668801377453342, - -0.44933178733409457, - -0.7870361783489018, - -0.7710518496071739, - -0.17721530568551938, - 0.992190109987963, - 2.5244876886515506, - 3.9596952796593015, - 4.968118088060229, - 5.213413211490304, - 4.747320981434027, - 4.018860038243907, - 3.7500550426800157, - 4.813938811444334, - 8.12255694836141, - 13.991445710912673, - 22.921869187042056, - 33.40417341484641, - 45.387479585097125, - 56.96454959428762, - 66.00227498726848 - ], - "pressure:J3:branch70_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch79_seg0": [ - 48.49444678045786, - 53.07587609021357, - 54.49576124279723, - 52.93466378660795, - 48.96554276098023, - 43.328835987470356, - 36.5387854982262, - 29.870973157910854, - 23.781865669525732, - 18.28100476771588, - 13.644349737989247, - 9.569919908120168, - 5.560692082903297, - 1.6633099018110125, - -2.3755893775945314, - -6.555136686091184, - -10.261691784226254, - -13.845964900792477, - -16.469143167478663, - -18.387644980346106, - -19.6561653965371, - -20.215716441222117, - -20.55267881174564, - -20.694413454136942, - -20.784460004958902, - -20.7956563935919, - -20.567492398524987, - -19.945286871939146, - -18.88661986726741, - -17.408958359920216, - -15.770366900842754, - -14.43399368729276, - -13.762314532813779, - -14.171156859892188, - -15.89310857493057, - -18.72548450735857, - -22.322699488724272, - -25.97486806383349, - -29.09183637829787, - -30.793180072993323, - -30.835073416269363, - -28.991580584595802, - -25.567621886793756, - -20.85846520978818, - -15.866849574693541, - -10.864481927715731, - -6.374342978046016, - -3.0353586657463123, - -0.24858826475661264, - 1.635074095693289, - 3.1447041625052203, - 4.501764256014181, - 5.627166130676516, - 6.716240293358029, - 7.464142814431782, - 7.674264986131175, - 7.250039749614918, - 6.12674467154618, - 4.398399217589798, - 2.405726172277283, - 0.47780765741552766, - -1.1138084605479472, - -2.123984084842853, - -2.482479860963173, - -2.441790883946786, - -2.146847738306417, - -1.9288343643558572, - -2.0121728522039515, - -2.443415911307074, - -3.183924011473681, - -3.9586467447657787, - -4.566547827120913, - -4.755964198676815, - -4.402655467097966, - -3.5654979539825304, - -2.48810174144617, - -1.3733810793857286, - -0.5131977353583963, - -0.1121940763437637, - -0.09287026169944897, - -0.3330084118794722, - -0.5875489001824414, - -0.5673345744073091, - -0.11756012563081665, - 0.768243184948787, - 1.896360139676428, - 2.9636466002844686, - 3.679174121525157, - 3.8361255407303165, - 3.4634281832344316, - 2.912415993404129, - 2.722899253327364, - 3.536585939510132, - 6.05493320097745, - 10.422338412632671, - 17.070881815485798, - 24.832789340573044, - 33.588924459787485, - 42.04928958554292, - 48.49444678045786 - ], - "pressure:J3:branch79_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch118_seg0": [ - 70.02629725077624, - 78.84671985994045, - 83.43334015127022, - 83.65196676944547, - 79.80562398900811, - 72.75468897610517, - 63.42861269005642, - 53.34229085350875, - 43.595300982456855, - 34.49248367562384, - 26.48756956747873, - 19.456715703324967, - 12.828936281374737, - 6.493344873200724, - 0.09699856382678683, - -6.469111773661654, - -12.642328824079252, - -18.45675636288513, - -23.25769998837567, - -26.994400262396557, - -29.59368846027708, - -31.142637908407927, - -32.052655579466794, - -32.523016664610104, - -32.80335416523712, - -32.90831304392293, - -32.715395398482016, - -32.02135531526577, - -30.698969790628496, - -28.725483938303245, - -26.367287416327777, - -24.162555669910734, - -22.676532908136963, - -22.548410940754724, - -24.209901392204014, - -27.62757166929172, - -32.4867245649766, - -37.89020744958962, - -42.97395697182152, - -46.53841127406516, - -47.894119765597985, - -46.55518958785312, - -42.64787983215757, - -36.55973660111341, - -29.326408990090826, - -21.618538078565468, - -14.41405425677101, - -8.368564016697464, - -3.367914656987482, - 0.32162885040261874, - 3.252694866166162, - 5.648822699994755, - 7.6644484375352695, - 9.52222673577275, - 10.93371244038733, - 11.668387244202666, - 11.522765798889491, - 10.340923331873942, - 8.201045872856737, - 5.422690303941779, - 2.4994473504401777, - -0.1546299241103157, - -2.149824485957881, - -3.246378701289883, - -3.6099838467032073, - -3.4562564046520334, - -3.192666279549923, - -3.180818539147545, - -3.6095571246626905, - -4.503048941511438, - -5.606368018806992, - -6.6292557110007815, - -7.175423765848195, - -7.02652037864001, - -6.1386500200792575, - -4.738120005799953, - -3.103538722600766, - -1.6638047171386285, - -0.7383391099222759, - -0.37107343585913494, - -0.4836065436929241, - -0.7720403457081478, - -0.8513021429892821, - -0.427820951441412, - 0.6059517658156391, - 2.1146220112635894, - 3.7233437112369137, - 5.022598556220331, - 5.663312011151428, - 5.531192321614106, - 4.934785441775476, - 4.523966855276262, - 5.18793898983035, - 7.932501146324145, - 13.321497589183489, - 21.896214758400102, - 32.794421739163376, - 45.72161651776717, - 58.703943622159386, - 70.02629725077624 - ], - "pressure:J3:branch118_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch129_seg0": [ - 29.849354788974637, - 33.20136713369343, - 34.56025776257379, - 34.20397322271168, - 32.11803550463038, - 28.89596141981801, - 24.680504797603845, - 20.539223113428232, - 16.423339479996034, - 12.907168166413589, - 9.678441704447543, - 6.921580725868705, - 4.338761843708854, - 1.6806041927426139, - -0.779270199910898, - -3.6405784750919494, - -5.9657995277754114, - -8.286730393924085, - -10.165892908634952, - -11.5019964648655, - -12.446206353352627, - -12.930029147769856, - -13.215479742085895, - -13.341817978925322, - -13.426276996233097, - -13.432535077549455, - -13.320638180365151, - -12.966255565070291, - -12.365196281696635, - -11.465978320877577, - -10.468112657766055, - -9.572632740880243, - -9.045114442646383, - -9.153110692068912, - -10.076309631975866, - -11.654658633683889, - -13.882326171246039, - -16.130190508182686, - -18.140175298120568, - -19.440525013992236, - -19.677339726384183, - -18.741609557577586, - -16.89858547918647, - -14.121613205607659, - -10.985490346669799, - -7.864679416287311, - -4.9224550193392425, - -2.64599102426818, - -0.7156001256385767, - 0.6097580887631637, - 1.726290811480185, - 2.598020448089624, - 3.3769139477094576, - 4.118695658476753, - 4.614964519304458, - 4.85097701389783, - 4.6700718800568435, - 4.070168669646688, - 3.0556182835236223, - 1.8608048167623514, - 0.6026800225093648, - -0.3989521900545844, - -1.167616349872624, - -1.485890412969817, - -1.532788030372528, - -1.4041942765342141, - -1.2803704363947954, - -1.3022877173363678, - -1.5155315625565817, - -1.9344717478454387, - -2.408491927085413, - -2.8103639996817904, - -2.9774364104195987, - -2.8499491011767284, - -2.393754833976708, - -1.7749120634960658, - -1.068559075431732, - -0.5102397418411908, - -0.1761135182833673, - -0.09146297973082917, - -0.19413406206895184, - -0.33600938158284654, - -0.3468026801453725, - -0.12019259939551187, - 0.383518287185344, - 1.0440726709706418, - 1.735679606516173, - 2.2009046467087465, - 2.394685360135149, - 2.247061694823211, - 1.9466258844724846, - 1.8125833447334982, - 2.198201783887118, - 3.6350428491107083, - 6.038371752409484, - 9.94646891108975, - 14.654487046917762, - 20.108159255595403, - 25.405743079937693, - 29.849354788974637 - ], - "pressure:J3:branch129_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:J3:branch146_seg0": [ - 30.292641994960835, - 33.384540893724896, - 34.544678379576574, - 33.81919666714773, - 31.5245847365228, - 28.06587547601478, - 23.867837330028713, - 19.61746667688097, - 15.706493415712925, - 12.142861123228132, - 9.123220967679295, - 6.480375431518495, - 3.9009589393694077, - 1.4308263875150862, - -1.1533622628495346, - -3.7863072878174995, - -6.191865071361056, - -8.494020555513723, - -10.227348852656393, - -11.53323255065606, - -12.390014537277114, - -12.812484653975835, - -13.055400055308953, - -13.162093008373123, - -13.228999131268363, - -13.243214819946854, - -13.117364937112669, - -12.75565058334751, - -12.119309834187488, - -11.212175983875209, - -10.189245299462298, - -9.312190297226204, - -8.830497755661717, - -9.001899128022588, - -9.982703819074551, - -11.685980904322442, - -13.90426712252818, - -16.212300696554653, - -18.244962742237156, - -19.433912861977397, - -19.6157757445804, - -18.608032691439803, - -16.573739992357126, - -13.696481968003429, - -10.568436648814822, - -7.362056555305861, - -4.487447648986045, - -2.2527041489026765, - -0.4191815237772368, - 0.8501622949490701, - 1.863539363380544, - 2.737431223243813, - 3.4799364391513175, - 4.180360007269127, - 4.683367220751925, - 4.8628139660337855, - 4.650439273097722, - 3.9918862226033123, - 2.9512674047190393, - 1.7049308056785721, - 0.4821689965164349, - -0.5635492077950675, - -1.2502283236351879, - -1.538416712275332, - -1.552261382192602, - -1.3878682168830134, - -1.24720616647212, - -1.2765766058408028, - -1.5208887582682051, - -1.9648029432737184, - -2.4507873997509035, - -2.8544745005750056, - -3.007255740146201, - -2.8290366917903316, - -2.340507942289429, - -1.6790030056036944, - -0.970754331106193, - -0.4079061299388825, - -0.11269746649659136, - -0.06539564179672681, - -0.19572301488741908, - -0.35382780715306084, - -0.36156657759986705, - -0.10972546523500176, - 0.41340934473094504, - 1.11168683231392, - 1.7891667471708264, - 2.276247811077986, - 2.420462837365013, - 2.232037177198793, - 1.900223226015924, - 1.7516164428179404, - 2.1871945147357033, - 3.638903494022726, - 6.261105066465419, - 10.294059156558156, - 15.107280866536833, - 20.641921687263054, - 25.998440676721, - 30.292641994960835 - ], - "pressure:J3:branch146_seg0": [ - 196227.7777161944, - 207587.85617472779, - 209438.9436674669, - 197659.32333723904, - 177910.08271316334, - 154332.56615907073, - 128386.29489788554, - 100535.64628485043, - 80358.9078136201, - 61628.989713343384, - 43057.54854933462, - 29980.426254528476, - 13709.542118514266, - -1344.3983482349895, - -15923.965472639386, - -33387.39801837398, - -45929.745218339136, - -58778.80997060232, - -67946.10517756414, - -73153.89426415329, - -77256.58174820883, - -78547.04509196256, - -79169.2601753987, - -79714.31634356861, - -79875.34418191973, - -79638.54765025637, - -78217.54104463564, - -74895.90425625491, - -69876.53833211094, - -63697.07513368014, - -57299.28787918171, - -52925.514324476295, - -52487.24796987119, - -56045.3759426704, - -65005.457389586554, - -77654.42901496579, - -92900.62010876831, - -105394.34224911255, - -116078.13312110885, - -119535.19405493153, - -115678.77058735277, - -105541.46121350031, - -90176.35384559406, - -70130.93076324058, - -51011.94757122539, - -33125.413183919816, - -16534.86215409167, - -5896.984633328012, - 2990.567890481694, - 9570.956246738473, - 14392.70198550549, - 19658.173056066225, - 23748.099961258245, - 27060.228832935725, - 29688.182305843282, - 29154.142888837116, - 26064.806418292603, - 20597.550075077514, - 13325.508467186191, - 4878.948957911156, - -1626.3206710823445, - -6390.6870621697, - -9736.300398803636, - -9623.617149854212, - -8787.974482587842, - -7699.0554627583315, - -7129.321805217597, - -8093.1642607362, - -10376.207874371383, - -13622.708493539669, - -16422.211056438806, - -18110.575492243188, - -18029.228167237663, - -15731.8477199224, - -11651.299760549937, - -7307.882304554643, - -3368.0892828699034, - -565.3402707561778, - 81.22893642078864, - -758.1800030220285, - -1811.6121901831161, - -2516.1756831052303, - -1800.3852062061965, - 838.2515313950072, - 4818.619228170186, - 9590.45353652413, - 13079.147869192388, - 14692.875282967918, - 14498.52413106825, - 12198.576278836945, - 10078.818816165787, - 10662.98486739937, - 16191.530917613845, - 29352.073327707167, - 49236.4942109069, - 78630.561987597, - 109736.19570090872, - 143302.8144497451, - 175793.0342397772, - 196227.7777161944 - ], - "flow:branch5_seg0:J4": [ - 460.08544330848247, - 540.4435826782346, - 601.2605443541877, - 637.8448843415409, - 648.5630069628261, - 634.7416378596063, - 599.4037256931147, - 550.2336176236571, - 492.9560308816805, - 431.57022455445474, - 370.5676793596393, - 310.99684563336945, - 251.94350798406435, - 193.80494392965204, - 135.1054659041003, - 75.79560895374969, - 18.289048263589393, - -37.848842891869815, - -88.07325851481625, - -132.22905980479908, - -169.1826817869269, - -198.30819526173923, - -221.5430793061646, - -239.5507450948991, - -253.75159755918813, - -264.67275180954323, - -272.00530999394573, - -275.003702130429, - -273.0934943454251, - -265.9650304074305, - -254.78880245485715, - -242.21575877458574, - -231.42341903100856, - -226.4005462131727, - -230.57635859334115, - -245.19945669791733, - -269.87236586851935, - -301.2582347942345, - -334.95876965099484, - -364.12582437605533, - -383.9535983619746, - -389.7396187850786, - -379.96585119282526, - -354.4980492321421, - -317.81024349148316, - -272.54842834857584, - -223.97636592077134, - -177.3676879250381, - -133.13823284614972, - -94.62222168411388, - -60.42043787096408, - -29.94534963243049, - -3.0436750093625187, - 21.397843496738965, - 42.17675957021912, - 58.09912640115766, - 67.97468160266816, - 70.66015637667327, - 65.99609054605914, - 55.33527182504322, - 40.81709725789496, - 24.904312908924652, - 10.36262312464346, - -0.9118117433056951, - -8.713249819519012, - -13.213441230973583, - -16.06971553611732, - -19.05611632209796, - -23.421716012375846, - -29.847053108252116, - -37.49523735388723, - -45.23832888993239, - -51.104435278534616, - -53.51461831232184, - -51.73748650211065, - -46.32811036132715, - -38.29871700075146, - -29.73153747852951, - -22.584569390644408, - -17.68857037257365, - -15.243984472454247, - -14.28232982107229, - -13.020379529152063, - -9.808542003852502, - -3.6146722111593235, - 5.391151414648471, - 15.83714660778807, - 25.729547728442213, - 32.907337802486865, - 36.28226268918327, - 36.67321470417246, - 36.86036665720018, - 41.37279287834487, - 56.0970538191708, - 85.29529182090396, - 133.98638520980464, - 199.31670917751117, - 281.37930039624973, - 371.88938156690745, - 460.08544330848247 - ], - "pressure:branch5_seg0:J4": [ - 195548.8072754528, - 206967.3124863604, - 208997.2532421916, - 197397.86613709707, - 177882.80152028622, - 154412.0345750485, - 128705.89564193199, - 100877.40172696082, - 80826.59070524527, - 62069.570381278456, - 43521.46078780469, - 30459.408247752086, - 14142.089027938073, - -826.3023645671624, - -15481.142446911002, - -32847.68190284743, - -45468.18347975933, - -58334.40288806534, - -67518.17517878403, - -72828.63041907475, - -76958.2079253504, - -78322.62750147842, - -78984.95109439963, - -79563.05290364864, - -79753.0083051904, - -79541.34242220712, - -78147.44571589968, - -74867.7440570583, - -69883.59279479505, - -63742.47534790441, - -57376.177089135344, - -52993.48711293999, - -52535.60738154333, - -56038.12634665773, - -64901.56912063187, - -77477.68882920303, - -92630.50589242867, - -105078.99273026442, - -115788.93264985319, - -119271.32938910747, - -115539.07940448736, - -105540.42176314308, - -90285.07140864516, - -70369.57777450186, - -51362.706801692286, - -33455.05705281733, - -16943.407606364242, - -6229.498652963175, - 2666.7829130088403, - 9288.04103998311, - 14151.643354016644, - 19430.124173103653, - 23555.367975238136, - 26873.841402415466, - 29540.4028286251, - 29041.065446319055, - 26010.203119049627, - 20588.786047890822, - 13393.536090315038, - 4967.847532197428, - -1485.1863223363741, - -6273.945043167741, - -9617.022425466022, - -9545.546067427422, - -8739.210842763374, - -7670.258610318091, - -7106.580908541793, - -8061.316166369229, - -10331.006341758633, - -13559.35158228166, - -16349.992150690543, - -18052.735445205522, - -17989.452056887203, - -15721.182089473961, - -11678.708464042747, - -7357.448626374721, - -3427.464957876491, - -627.5631071747639, - 37.43694357220103, - -784.0748031069759, - -1823.4055782684095, - -2521.5528051989613, - -1815.7809488616601, - 805.8308305737601, - 4750.156037038277, - 9514.300217416518, - 12980.407640885074, - 14622.59233806489, - 14446.883515779873, - 12183.652254913824, - 10080.15044916391, - 10646.200238671807, - 16124.035097060616, - 29142.694097580657, - 48932.37010680301, - 78138.16293664902, - 109082.92025823686, - 142633.29840168802, - 174992.1228522285, - 195548.8072754528 - ], - "flow:J4:branch6_seg0": [ - 387.321401910672, - 461.30864339312535, - 520.5020506786706, - 559.8940785202326, - 576.8747233452552, - 571.5968417532197, - 546.4525441440883, - 507.1593338722544, - 458.7394568372483, - 405.3049271416615, - 351.14614061878876, - 297.4426147262499, - 244.37463087154617, - 192.0561750951668, - 139.29411170892564, - 86.34924563350842, - 34.13912390919618, - -16.705563997066648, - -63.17354449937498, - -104.67184820253793, - -139.82902694533405, - -168.24459872190496, - -191.02124591067388, - -208.83483263888516, - -222.9100753139234, - -233.83718713012266, - -241.55520407069284, - -245.56574601450603, - -245.30561165976658, - -240.44537832709543, - -231.70785333048593, - -221.05063153385674, - -211.08593939913214, - -205.25068710518906, - -206.6111866397817, - -216.85946590064106, - -236.04405394390832, - -262.1244277242852, - -291.352501612955, - -318.3239538676139, - -338.4841530564416, - -347.383861610014, - -342.91378841815543, - -324.64622277686476, - -295.3457322548251, - -257.37057963973496, - -215.34800148448795, - -173.4052268884693, - -133.17008274458118, - -97.29570380494349, - -65.26470620239891, - -36.77214675001365, - -11.51492637833265, - 11.340757810550182, - 31.067974161004305, - 46.786519285921855, - 57.419376322415445, - 61.88486259850664, - 59.873080362262996, - 52.20306723817445, - 40.49131284114722, - 26.814093994358633, - 13.679298301292674, - 2.778293713358336, - -5.1550578516398184, - -10.114188955419687, - -13.265383547407362, - -16.05770311863224, - -19.72159903971827, - -24.99814331462775, - -31.511201886654337, - -38.40816752780889, - -44.081555882726256, - -47.10996726241976, - -46.66212245095404, - -42.8640882369307, - -36.47239172009491, - -29.111482418239564, - -22.470047776928315, - -17.52218894349109, - -14.691609522343812, - -13.367130719080752, - -12.1991752552519, - -9.74360155156712, - -4.937912804786367, - 2.360749959346234, - 11.2616040345366, - 20.19816698444057, - 27.244143376619512, - 31.270399133515454, - 32.49003461505253, - 32.84300638866131, - 35.93115413910601, - 46.54819341272605, - 69.00598394880848, - 107.42610643027412, - 161.15377836241487, - 230.18039885673022, - 308.26021948264804, - 387.321401910672 - ], - "pressure:J4:branch6_seg0": [ - 195548.8072754528, - 206967.3124863604, - 208997.2532421916, - 197397.86613709707, - 177882.80152028622, - 154412.0345750485, - 128705.89564193199, - 100877.40172696082, - 80826.59070524527, - 62069.570381278456, - 43521.46078780469, - 30459.408247752086, - 14142.089027938073, - -826.3023645671624, - -15481.142446911002, - -32847.68190284743, - -45468.18347975933, - -58334.40288806534, - -67518.17517878403, - -72828.63041907475, - -76958.2079253504, - -78322.62750147842, - -78984.95109439963, - -79563.05290364864, - -79753.0083051904, - -79541.34242220712, - -78147.44571589968, - -74867.7440570583, - -69883.59279479505, - -63742.47534790441, - -57376.177089135344, - -52993.48711293999, - -52535.60738154333, - -56038.12634665773, - -64901.56912063187, - -77477.68882920303, - -92630.50589242867, - -105078.99273026442, - -115788.93264985319, - -119271.32938910747, - -115539.07940448736, - -105540.42176314308, - -90285.07140864516, - -70369.57777450186, - -51362.706801692286, - -33455.05705281733, - -16943.407606364242, - -6229.498652963175, - 2666.7829130088403, - 9288.04103998311, - 14151.643354016644, - 19430.124173103653, - 23555.367975238136, - 26873.841402415466, - 29540.4028286251, - 29041.065446319055, - 26010.203119049627, - 20588.786047890822, - 13393.536090315038, - 4967.847532197428, - -1485.1863223363741, - -6273.945043167741, - -9617.022425466022, - -9545.546067427422, - -8739.210842763374, - -7670.258610318091, - -7106.580908541793, - -8061.316166369229, - -10331.006341758633, - -13559.35158228166, - -16349.992150690543, - -18052.735445205522, - -17989.452056887203, - -15721.182089473961, - -11678.708464042747, - -7357.448626374721, - -3427.464957876491, - -627.5631071747639, - 37.43694357220103, - -784.0748031069759, - -1823.4055782684095, - -2521.5528051989613, - -1815.7809488616601, - 805.8308305737601, - 4750.156037038277, - 9514.300217416518, - 12980.407640885074, - 14622.59233806489, - 14446.883515779873, - 12183.652254913824, - 10080.15044916391, - 10646.200238671807, - 16124.035097060616, - 29142.694097580657, - 48932.37010680301, - 78138.16293664902, - 109082.92025823686, - 142633.29840168802, - 174992.1228522285, - 195548.8072754528 - ], - "flow:J4:branch91_seg0": [ - 36.064179976938675, - 39.324683140969235, - 40.21914023208681, - 38.929168124686356, - 35.887141770816385, - 31.67160151789817, - 26.61697853618317, - 21.70586667526215, - 17.25198278415813, - 13.267762019335335, - 9.842333310153407, - 6.887741829208247, - 3.914794855634324, - 1.012851854969545, - -1.945493732276082, - -5.104268817022234, - -7.769912758067324, - -10.41082315952429, - -12.312152711640156, - -13.671755193516116, - -14.58243806920811, - -14.960398960869123, - -15.198233187197413, - -15.298216047253, - -15.365004277282173, - -15.365676924023871, - -15.183655694567205, - -14.695682452407752, - -13.890167945695062, - -12.772019740360873, - -11.561891624066833, - -10.593320984013085, - -10.150424971124014, - -10.517991433751211, - -11.874575570153116, - -14.016847339522107, - -16.72920002188389, - -19.384514491726325, - -21.63524839249959, - -22.78736688624834, - -22.689083066344494, - -21.200526810608725, - -18.609087131055414, - -15.064187213026788, - -11.38371012098317, - -7.735731253258859, - -4.4602397709016595, - -2.086636852961817, - -0.07109055042893192, - 1.2673636427334758, - 2.3693303677421187, - 3.3562383155082207, - 4.184041355696412, - 4.982478913388488, - 5.514836678244232, - 5.639617999296135, - 5.286201480229069, - 4.421432096698646, - 3.11774217025489, - 1.636885646422444, - 0.2285995700588504, - -0.9011633928478957, - -1.6206071799399544, - -1.8333269412523956, - -1.7795469234780046, - -1.5555109820607815, - -1.4048506503450084, - -1.489508545203958, - -1.826934612146311, - -2.3900260495242147, - -2.9572815684706253, - -3.389083312057254, - -3.499648247037277, - -3.210879179136209, - -2.5648313414935053, - -1.7674292478664768, - -0.9475913316791928, - -0.3376766515845228, - -0.06812804410175757, - -0.07914180499422188, - -0.2662537069725518, - -0.44907428703517566, - -0.4132935962973993, - -0.052501117550715654, - 0.6255983113561513, - 1.469048053869879, - 2.2460880753223575, - 2.738065070748285, - 2.822608918308292, - 2.5165671902392157, - 2.1060750814963636, - 2.0041439722218133, - 2.673103525675359, - 4.656309659985911, - 7.953501777876486, - 12.993181895485387, - 18.744916392627058, - 25.235691663539658, - 31.424887403221327, - 36.064179976938675 - ], - "pressure:J4:branch91_seg0": [ - 195548.8072754528, - 206967.3124863604, - 208997.2532421916, - 197397.86613709707, - 177882.80152028622, - 154412.0345750485, - 128705.89564193199, - 100877.40172696082, - 80826.59070524527, - 62069.570381278456, - 43521.46078780469, - 30459.408247752086, - 14142.089027938073, - -826.3023645671624, - -15481.142446911002, - -32847.68190284743, - -45468.18347975933, - -58334.40288806534, - -67518.17517878403, - -72828.63041907475, - -76958.2079253504, - -78322.62750147842, - -78984.95109439963, - -79563.05290364864, - -79753.0083051904, - -79541.34242220712, - -78147.44571589968, - -74867.7440570583, - -69883.59279479505, - -63742.47534790441, - -57376.177089135344, - -52993.48711293999, - -52535.60738154333, - -56038.12634665773, - -64901.56912063187, - -77477.68882920303, - -92630.50589242867, - -105078.99273026442, - -115788.93264985319, - -119271.32938910747, - -115539.07940448736, - -105540.42176314308, - -90285.07140864516, - -70369.57777450186, - -51362.706801692286, - -33455.05705281733, - -16943.407606364242, - -6229.498652963175, - 2666.7829130088403, - 9288.04103998311, - 14151.643354016644, - 19430.124173103653, - 23555.367975238136, - 26873.841402415466, - 29540.4028286251, - 29041.065446319055, - 26010.203119049627, - 20588.786047890822, - 13393.536090315038, - 4967.847532197428, - -1485.1863223363741, - -6273.945043167741, - -9617.022425466022, - -9545.546067427422, - -8739.210842763374, - -7670.258610318091, - -7106.580908541793, - -8061.316166369229, - -10331.006341758633, - -13559.35158228166, - -16349.992150690543, - -18052.735445205522, - -17989.452056887203, - -15721.182089473961, - -11678.708464042747, - -7357.448626374721, - -3427.464957876491, - -627.5631071747639, - 37.43694357220103, - -784.0748031069759, - -1823.4055782684095, - -2521.5528051989613, - -1815.7809488616601, - 805.8308305737601, - 4750.156037038277, - 9514.300217416518, - 12980.407640885074, - 14622.59233806489, - 14446.883515779873, - 12183.652254913824, - 10080.15044916391, - 10646.200238671807, - 16124.035097060616, - 29142.694097580657, - 48932.37010680301, - 78138.16293664902, - 109082.92025823686, - 142633.29840168802, - 174992.1228522285, - 195548.8072754528 - ], - "flow:J4:branch131_seg0": [ - 36.69986142087407, - 39.810256144142876, - 40.539353443429775, - 39.02163769661995, - 35.80114184675237, - 31.473194588493048, - 26.334203012830567, - 21.36841707613305, - 16.96459126030143, - 12.997535393450708, - 9.579205430724295, - 6.66648907791801, - 3.6540822568694358, - 0.7359169795232008, - -2.243152072542333, - -5.449367862746782, - -8.080162887525274, - -10.732455735274883, - -12.58756130378879, - -13.88545640873758, - -14.771216772382646, - -15.103197578962435, - -15.323600208304002, - -15.417696408753583, - -15.476517967967794, - -15.46988775540695, - -15.266450228674818, - -14.742273663519244, - -13.897714739968713, - -12.747632339960635, - -11.519057500288813, - -10.571806256708102, - -10.187054660748624, - -10.631867674233737, - -12.09059638342031, - -14.323143457754734, - -17.099111902725106, - -19.749292578211996, - -21.971019645547955, - -23.014503622192834, - -22.780362239189632, - -21.15523036445074, - -18.44297564361298, - -14.787639242251203, - -11.080801115675435, - -7.442117455581923, - -4.168124665381487, - -1.8758241836061869, - 0.1029404488600605, - 1.4061184780964677, - 2.474937963694063, - 3.470558802074756, - 4.287210013273937, - 5.0746067728001405, - 5.593948730970395, - 5.67298911593941, - 5.269103800024017, - 4.353861681467898, - 3.005268013540682, - 1.4953189404453018, - 0.09718484668920113, - -1.0086176925863803, - -1.6960679967086605, - -1.8567785154127816, - -1.7786450444008683, - -1.5437412934931436, - -1.3994813383667724, - -1.5089046582621377, - -1.8731823605103366, - -2.4588837440979088, - -3.0267538987621343, - -3.4410780500672207, - -3.523231148771176, - -3.193771870766493, - -2.5105327096648944, - -1.6965928765299791, - -0.8787339489781135, - -0.2823784087052944, - -0.0463935696146207, - -0.08723962408853701, - -0.2861212431375103, - -0.46612481495604424, - -0.4079106776028584, - -0.012439334734422153, - 0.6976422822708457, - 1.5613534014322197, - 2.3294544979287624, - 2.793315673253329, - 2.8405855075587336, - 2.495296365428287, - 2.0771050076237083, - 2.0132162963167315, - 2.7685352135628833, - 4.8925507464589675, - 8.335806094219967, - 13.567096884046194, - 19.41801442246954, - 25.963209875979217, - 32.20427468103834, - 36.69986142087407 - ], - "pressure:J4:branch131_seg0": [ - 195548.8072754528, - 206967.3124863604, - 208997.2532421916, - 197397.86613709707, - 177882.80152028622, - 154412.0345750485, - 128705.89564193199, - 100877.40172696082, - 80826.59070524527, - 62069.570381278456, - 43521.46078780469, - 30459.408247752086, - 14142.089027938073, - -826.3023645671624, - -15481.142446911002, - -32847.68190284743, - -45468.18347975933, - -58334.40288806534, - -67518.17517878403, - -72828.63041907475, - -76958.2079253504, - -78322.62750147842, - -78984.95109439963, - -79563.05290364864, - -79753.0083051904, - -79541.34242220712, - -78147.44571589968, - -74867.7440570583, - -69883.59279479505, - -63742.47534790441, - -57376.177089135344, - -52993.48711293999, - -52535.60738154333, - -56038.12634665773, - -64901.56912063187, - -77477.68882920303, - -92630.50589242867, - -105078.99273026442, - -115788.93264985319, - -119271.32938910747, - -115539.07940448736, - -105540.42176314308, - -90285.07140864516, - -70369.57777450186, - -51362.706801692286, - -33455.05705281733, - -16943.407606364242, - -6229.498652963175, - 2666.7829130088403, - 9288.04103998311, - 14151.643354016644, - 19430.124173103653, - 23555.367975238136, - 26873.841402415466, - 29540.4028286251, - 29041.065446319055, - 26010.203119049627, - 20588.786047890822, - 13393.536090315038, - 4967.847532197428, - -1485.1863223363741, - -6273.945043167741, - -9617.022425466022, - -9545.546067427422, - -8739.210842763374, - -7670.258610318091, - -7106.580908541793, - -8061.316166369229, - -10331.006341758633, - -13559.35158228166, - -16349.992150690543, - -18052.735445205522, - -17989.452056887203, - -15721.182089473961, - -11678.708464042747, - -7357.448626374721, - -3427.464957876491, - -627.5631071747639, - 37.43694357220103, - -784.0748031069759, - -1823.4055782684095, - -2521.5528051989613, - -1815.7809488616601, - 805.8308305737601, - 4750.156037038277, - 9514.300217416518, - 12980.407640885074, - 14622.59233806489, - 14446.883515779873, - 12183.652254913824, - 10080.15044916391, - 10646.200238671807, - 16124.035097060616, - 29142.694097580657, - 48932.37010680301, - 78138.16293664902, - 109082.92025823686, - 142633.29840168802, - 174992.1228522285, - 195548.8072754528 - ], - "flow:branch6_seg0:J5": [ - 387.2803229650557, - 461.280531887894, - 520.6190330551129, - 559.9906637866077, - 577.0539323614103, - 571.7571489948828, - 546.7325900395009, - 507.35148564975725, - 459.04127361128667, - 405.42190523690357, - 351.3781641015066, - 297.6387798809987, - 244.52049389016574, - 192.32388112169568, - 139.3765764545244, - 86.65410259460472, - 34.24552024280715, - -16.644912926270464, - -63.079582919535575, - -104.65647442395422, - -139.8177852222454, - -168.2503389166296, - -191.02749556279718, - -208.8447946468893, - -222.90821591447082, - -233.85170293417568, - -241.569694701646, - -245.60302245239677, - -245.3378322523224, - -240.50406243944707, - -231.7407606711047, - -221.07750432054817, - -211.07901725930904, - -205.2009097404971, - -206.4855723901782, - -216.7509564138281, - -235.82870663450814, - -261.9858787913083, - -291.2773825111018, - -318.2761954849362, - -338.55032826351083, - -347.5676413164458, - -343.04012856351767, - -324.8011751597216, - -295.53312730388507, - -257.4629281659046, - -215.4416604350213, - -173.42946118242216, - -133.20337756737277, - -97.28440365912375, - -65.30876421003487, - -36.766627282407775, - -11.527940565517426, - 11.308719195417789, - 31.075815155371505, - 46.7907985264659, - 57.45981607844165, - 61.940289295714564, - 59.95972931462235, - 52.28014379561315, - 40.59461328586435, - 26.832229361911267, - 13.728752933926991, - 2.780651477932198, - -5.171991201750547, - -10.125534063593744, - -13.261739847316726, - -16.037824329613304, - -19.703097440502756, - -24.97380635891824, - -31.49381693544801, - -38.40500342470677, - -44.1034832563025, - -47.12836619617856, - -46.699107388417104, - -42.88183287708965, - -36.49983038942117, - -29.107806924262075, - -22.468648043595273, - -17.51369464133752, - -14.681163727679387, - -13.365622336014344, - -12.214143791474381, - -9.773802388890648, - -4.988374441745018, - 2.3160765961303262, - 11.20808455907494, - 20.201569178116554, - 27.249592055611014, - 31.290050856802726, - 32.50567072161301, - 32.81547563445228, - 35.868152508165736, - 46.338410554197054, - 68.86419952616805, - 107.19601854582272, - 160.94650997384096, - 229.95781678762367, - 308.1911460726058, - 387.2803229650557 - ], - "pressure:branch6_seg0:J5": [ - 141562.72244171088, - 158775.84248539543, - 169830.55045265402, - 171892.8215361213, - 167015.37831601404, - 156578.95862366434, - 141910.18239955048, - 123950.94683353114, - 107338.50004633219, - 90391.18386290768, - 74126.71327952594, - 59634.853253599, - 44467.296228882195, - 30009.37236025772, - 15218.904345395336, - 140.50609267939242, - -13942.117592694054, - -27512.173812228768, - -38669.53329631953, - -47721.907695381145, - -55051.91189831737, - -60087.42000393759, - -63900.16763367834, - -66803.92548165537, - -68938.2554624677, - -70495.98662693187, - -71058.05093579451, - -70343.37598286798, - -68213.00735095944, - -64902.46252365505, - -60727.71713102366, - -57037.37145594497, - -54902.11761174823, - -55057.93703068314, - -58531.02752307346, - -65205.54370120507, - -74226.35823184383, - -83933.60921086078, - -93276.18658226015, - -99471.13053846036, - -101704.18429541387, - -99435.36317768223, - -92413.90560277346, - -81310.77376853279, - -68685.47154373796, - -54855.044834067674, - -41012.76236944321, - -29585.301642580984, - -19299.687020647765, - -10737.912902423464, - -3776.0586875187655, - 2960.70092820685, - 8509.408699635213, - 13401.70576900764, - 17625.04959472924, - 19943.632825127683, - 20471.95115330417, - 19013.372645934633, - 15731.678217094024, - 11029.395132666856, - 6297.763961941654, - 1820.8394069033168, - -1728.9785212156862, - -3724.027059036325, - -4751.715993830678, - -5063.49722676959, - -5237.755726942154, - -5930.736376987262, - -7344.566369773142, - -9437.865411063347, - -11627.522624177318, - -13491.193392231546, - -14504.04543462909, - -14124.627259002558, - -12486.026835225479, - -10058.68486544628, - -7392.17911701336, - -4900.852560201377, - -3455.5114784854086, - -2895.4155541031714, - -2840.4461616573535, - -2974.199695622186, - -2619.0712290402867, - -1306.0945152005538, - 975.7456428093541, - 4034.9057031905622, - 6960.972250653084, - 9260.762890253256, - 10407.62519242226, - 10228.687303041597, - 9525.45812746222, - 9574.980183567788, - 11980.00195714398, - 18421.58356640205, - 29934.67304998579, - 47641.41544634903, - 68914.65114982704, - 93579.30686599176, - 120077.74365933512, - 141562.72244171088 - ], - "flow:J5:branch7_seg0": [ - 184.43132709772556, - 224.58262005613145, - 259.4569525075233, - 285.94582400007465, - 301.9208491766864, - 306.5400686720847, - 300.3880030270557, - 285.48633997271185, - 264.1256394432094, - 238.50184814500426, - 211.04516050480183, - 182.68393868227494, - 154.13884331237125, - 125.6507487252909, - 96.80793467768848, - 67.94391575549346, - 39.05799040841032, - 10.800813294386716, - -15.711925749073282, - -39.99376507653583, - -61.17362746682196, - -78.98600949221513, - -93.64423581825191, - -105.42801202738497, - -114.88275792203451, - -122.36500244440346, - -127.97102499314991, - -131.58164427161657, - -132.94436434907695, - -131.8878299748943, - -128.60936739763764, - -123.86813954015582, - -118.81013506797308, - -115.06618820167154, - -114.20644398326567, - -117.41146289960693, - -125.04270435039972, - -136.66838618998938, - -150.70467632468456, - -164.8480747784584, - -176.76673712244613, - -184.0483027957526, - -185.1340749205319, - -179.4227379398171, - -167.53692329188192, - -150.4164401650132, - -130.17191506499282, - -108.6460075861245, - -87.1932771127467, - -67.17834596919771, - -48.84054980457007, - -32.26481119705563, - -17.384711193288506, - -3.8987724792166265, - 7.970072602366408, - 17.875454453589725, - 25.31470491982992, - 29.719736409645105, - 30.82576255854181, - 28.808485113913722, - 24.270464967670396, - 18.113553921338553, - 11.585799219688619, - 5.568123557798343, - 0.7245676061224119, - -2.7381250693466566, - -5.149140876413685, - -7.080539106908582, - -9.145744710021905, - -11.785747378279673, - -15.025585682913318, - -18.586314766591133, - -21.80444344795997, - -23.991662936490247, - -24.644504036033954, - -23.608835676861556, - -21.11161160339809, - -17.77934733254, - -14.390086356946112, - -11.524706256508676, - -9.552075154250904, - -8.36557796084857, - -7.481092239537067, - -6.252495491774891, - -4.102773636971361, - -0.7925533282629695, - 3.4527285174939872, - 8.035840821593482, - 12.053791909390558, - 14.874220043782927, - 16.325331066659036, - 17.021221778994914, - 18.433426125068223, - 22.6614717761685, - 32.034281356219445, - 48.579482076371505, - 72.93721458588445, - 105.36462242188946, - 143.602754859867, - 184.43132709772556 - ], - "pressure:J5:branch7_seg0": [ - 141562.72244171088, - 158775.84248539543, - 169830.55045265402, - 171892.8215361213, - 167015.37831601404, - 156578.95862366434, - 141910.18239955048, - 123950.94683353114, - 107338.50004633219, - 90391.18386290768, - 74126.71327952594, - 59634.853253599, - 44467.296228882195, - 30009.37236025772, - 15218.904345395336, - 140.50609267939242, - -13942.117592694054, - -27512.173812228768, - -38669.53329631953, - -47721.907695381145, - -55051.91189831737, - -60087.42000393759, - -63900.16763367834, - -66803.92548165537, - -68938.2554624677, - -70495.98662693187, - -71058.05093579451, - -70343.37598286798, - -68213.00735095944, - -64902.46252365505, - -60727.71713102366, - -57037.37145594497, - -54902.11761174823, - -55057.93703068314, - -58531.02752307346, - -65205.54370120507, - -74226.35823184383, - -83933.60921086078, - -93276.18658226015, - -99471.13053846036, - -101704.18429541387, - -99435.36317768223, - -92413.90560277346, - -81310.77376853279, - -68685.47154373796, - -54855.044834067674, - -41012.76236944321, - -29585.301642580984, - -19299.687020647765, - -10737.912902423464, - -3776.0586875187655, - 2960.70092820685, - 8509.408699635213, - 13401.70576900764, - 17625.04959472924, - 19943.632825127683, - 20471.95115330417, - 19013.372645934633, - 15731.678217094024, - 11029.395132666856, - 6297.763961941654, - 1820.8394069033168, - -1728.9785212156862, - -3724.027059036325, - -4751.715993830678, - -5063.49722676959, - -5237.755726942154, - -5930.736376987262, - -7344.566369773142, - -9437.865411063347, - -11627.522624177318, - -13491.193392231546, - -14504.04543462909, - -14124.627259002558, - -12486.026835225479, - -10058.68486544628, - -7392.17911701336, - -4900.852560201377, - -3455.5114784854086, - -2895.4155541031714, - -2840.4461616573535, - -2974.199695622186, - -2619.0712290402867, - -1306.0945152005538, - 975.7456428093541, - 4034.9057031905622, - 6960.972250653084, - 9260.762890253256, - 10407.62519242226, - 10228.687303041597, - 9525.45812746222, - 9574.980183567788, - 11980.00195714398, - 18421.58356640205, - 29934.67304998579, - 47641.41544634903, - 68914.65114982704, - 93579.30686599176, - 120077.74365933512, - 141562.72244171088 - ], - "flow:J5:branch10_seg0": [ - 36.363950898126305, - 42.03174059131079, - 45.90994631381478, - 47.705319285602535, - 47.44983475688335, - 45.32411041051247, - 41.721981764028214, - 37.28868254532241, - 32.52973411121992, - 27.656904702481935, - 23.128841085640744, - 18.79991555631915, - 14.600505149504738, - 10.537030822793453, - 6.3479417559969775, - 2.217940551710723, - -1.8610693462599812, - -5.77177858535718, - -9.143477390416098, - -12.040709464424845, - -14.332563455991032, - -16.027770239359217, - -17.30951599760197, - -18.24656023040368, - -18.960690623513404, - -19.491255047798926, - -19.785293489154604, - -19.774295822691194, - -19.392466965958423, - -18.630262907441914, - -17.58518653260612, - -16.509751209613267, - -15.661594680833996, - -15.37841670437979, - -15.901900061166053, - -17.31607471919715, - -19.47294284508404, - -22.120839988079627, - -24.79374675549467, - -26.919330225942243, - -28.161002353505076, - -28.15898351400386, - -26.84110176603695, - -24.34231068944954, - -21.086957681539584, - -17.300094675702823, - -13.4910172078652, - -10.013181300146224, - -6.8826247449256925, - -4.295729912012774, - -2.0934123882046825, - -0.15438933039579172, - 1.5235845494679299, - 3.0528411497930756, - 4.325364913512702, - 5.2233028593983395, - 5.658794463791844, - 5.531831078022654, - 4.858558834540551, - 3.7683651225150228, - 2.464307704397412, - 1.1275090102680643, - 0.03706974309823131, - -0.7377240401154823, - -1.1847769691900758, - -1.3574325660020896, - -1.4302218099705672, - -1.5625694733184015, - -1.85730361448385, - -2.346669437528522, - -2.9398954714521874, - -3.5218631747079248, - -3.9177679761516133, - -3.996076071722099, - -3.7272641174088257, - -3.170240966042851, - -2.4474291154612007, - -1.733614959964769, - -1.2018708629797592, - -0.893411323147322, - -0.8051432170552959, - -0.8261308216085295, - -0.7895790731318888, - -0.5546457194243304, - -0.04906762989005871, - 0.6920483752239649, - 1.5229380703294324, - 2.277826220220426, - 2.7446941535455296, - 2.8752597468052175, - 2.761482743670898, - 2.666138986607864, - 3.0024772677063973, - 4.232320222821908, - 6.751502980118075, - 10.827566017359928, - 16.199332508988984, - 22.77036094364645, - 29.807398776772427, - 36.363950898126305 - ], - "pressure:J5:branch10_seg0": [ - 141562.72244171088, - 158775.84248539543, - 169830.55045265402, - 171892.8215361213, - 167015.37831601404, - 156578.95862366434, - 141910.18239955048, - 123950.94683353114, - 107338.50004633219, - 90391.18386290768, - 74126.71327952594, - 59634.853253599, - 44467.296228882195, - 30009.37236025772, - 15218.904345395336, - 140.50609267939242, - -13942.117592694054, - -27512.173812228768, - -38669.53329631953, - -47721.907695381145, - -55051.91189831737, - -60087.42000393759, - -63900.16763367834, - -66803.92548165537, - -68938.2554624677, - -70495.98662693187, - -71058.05093579451, - -70343.37598286798, - -68213.00735095944, - -64902.46252365505, - -60727.71713102366, - -57037.37145594497, - -54902.11761174823, - -55057.93703068314, - -58531.02752307346, - -65205.54370120507, - -74226.35823184383, - -83933.60921086078, - -93276.18658226015, - -99471.13053846036, - -101704.18429541387, - -99435.36317768223, - -92413.90560277346, - -81310.77376853279, - -68685.47154373796, - -54855.044834067674, - -41012.76236944321, - -29585.301642580984, - -19299.687020647765, - -10737.912902423464, - -3776.0586875187655, - 2960.70092820685, - 8509.408699635213, - 13401.70576900764, - 17625.04959472924, - 19943.632825127683, - 20471.95115330417, - 19013.372645934633, - 15731.678217094024, - 11029.395132666856, - 6297.763961941654, - 1820.8394069033168, - -1728.9785212156862, - -3724.027059036325, - -4751.715993830678, - -5063.49722676959, - -5237.755726942154, - -5930.736376987262, - -7344.566369773142, - -9437.865411063347, - -11627.522624177318, - -13491.193392231546, - -14504.04543462909, - -14124.627259002558, - -12486.026835225479, - -10058.68486544628, - -7392.17911701336, - -4900.852560201377, - -3455.5114784854086, - -2895.4155541031714, - -2840.4461616573535, - -2974.199695622186, - -2619.0712290402867, - -1306.0945152005538, - 975.7456428093541, - 4034.9057031905622, - 6960.972250653084, - 9260.762890253256, - 10407.62519242226, - 10228.687303041597, - 9525.45812746222, - 9574.980183567788, - 11980.00195714398, - 18421.58356640205, - 29934.67304998579, - 47641.41544634903, - 68914.65114982704, - 93579.30686599176, - 120077.74365933512, - 141562.72244171088 - ], - "flow:J5:branch53_seg0": [ - 30.191376403601524, - 34.25351644304523, - 36.829173057267184, - 37.58493845476531, - 36.81088821026716, - 34.692624701053425, - 31.527378871574953, - 27.813334949010507, - 24.102829532431937, - 20.28329364574671, - 16.80411099645098, - 13.534955142115733, - 10.235210992113933, - 7.093842766034165, - 3.7953237592466027, - 0.5540526408085906, - -2.5582073290477307, - -5.599856245977217, - -8.075795227834007, - -10.157646560259394, - -11.817328064771377, - -12.970483915439765, - -13.86116737338635, - -14.517280195969493, - -15.008565408083944, - -15.37410429097107, - -15.532006806862391, - -15.425647988548489, - -15.016701075406804, - -14.323681076526283, - -13.432676517675004, - -12.607050283587629, - -12.048322279933487, - -11.997728756126726, - -12.6494393233708, - -14.010090182181548, - -15.885525299301545, - -18.033156478800024, - -20.1130804711278, - -21.56545345312252, - -22.236626368763726, - -21.887423211450415, - -20.491006514670996, - -18.193331160757978, - -15.489087835489894, - -12.455624924828436, - -9.441845720387178, - -6.876367479499707, - -4.541993981253851, - -2.643847301016311, - -1.0611320120735768, - 0.41534244983870133, - 1.6547343669940744, - 2.7831302831499185, - 3.7178611054967434, - 4.292307155754954, - 4.489550182665817, - 4.2364177360024815, - 3.5634117040343503, - 2.598365905247096, - 1.5523877467199467, - 0.5178565160103853, - -0.2634162693611535, - -0.7546241487541523, - -1.0232312148844578, - -1.0972985404061504, - -1.1343524694417555, - -1.2677037016108719, - -1.5503165845417366, - -1.987692850122772, - -2.4673928811725063, - -2.8976276902375266, - -3.1506730390188062, - -3.112807937117523, - -2.801538494453557, - -2.2962559532723437, - -1.7069892991655966, - -1.155855162037293, - -0.8051600791694331, - -0.6376779792311478, - -0.616194571240127, - -0.6513573434853684, - -0.5946291160237219, - -0.3443306898778868, - 0.12687407810114168, - 0.7677157382152894, - 1.4206120444263768, - 1.9714318524059844, - 2.250438776210823, - 2.2501928396448934, - 2.1097338843119564, - 2.0759239430031617, - 2.500259045021617, - 3.7527477510208276, - 6.094726908966726, - 9.758768223869765, - 14.283410432709971, - 19.629570672536314, - 25.327757863511476, - 30.191376403601524 - ], - "pressure:J5:branch53_seg0": [ - 141562.72244171088, - 158775.84248539543, - 169830.55045265402, - 171892.8215361213, - 167015.37831601404, - 156578.95862366434, - 141910.18239955048, - 123950.94683353114, - 107338.50004633219, - 90391.18386290768, - 74126.71327952594, - 59634.853253599, - 44467.296228882195, - 30009.37236025772, - 15218.904345395336, - 140.50609267939242, - -13942.117592694054, - -27512.173812228768, - -38669.53329631953, - -47721.907695381145, - -55051.91189831737, - -60087.42000393759, - -63900.16763367834, - -66803.92548165537, - -68938.2554624677, - -70495.98662693187, - -71058.05093579451, - -70343.37598286798, - -68213.00735095944, - -64902.46252365505, - -60727.71713102366, - -57037.37145594497, - -54902.11761174823, - -55057.93703068314, - -58531.02752307346, - -65205.54370120507, - -74226.35823184383, - -83933.60921086078, - -93276.18658226015, - -99471.13053846036, - -101704.18429541387, - -99435.36317768223, - -92413.90560277346, - -81310.77376853279, - -68685.47154373796, - -54855.044834067674, - -41012.76236944321, - -29585.301642580984, - -19299.687020647765, - -10737.912902423464, - -3776.0586875187655, - 2960.70092820685, - 8509.408699635213, - 13401.70576900764, - 17625.04959472924, - 19943.632825127683, - 20471.95115330417, - 19013.372645934633, - 15731.678217094024, - 11029.395132666856, - 6297.763961941654, - 1820.8394069033168, - -1728.9785212156862, - -3724.027059036325, - -4751.715993830678, - -5063.49722676959, - -5237.755726942154, - -5930.736376987262, - -7344.566369773142, - -9437.865411063347, - -11627.522624177318, - -13491.193392231546, - -14504.04543462909, - -14124.627259002558, - -12486.026835225479, - -10058.68486544628, - -7392.17911701336, - -4900.852560201377, - -3455.5114784854086, - -2895.4155541031714, - -2840.4461616573535, - -2974.199695622186, - -2619.0712290402867, - -1306.0945152005538, - 975.7456428093541, - 4034.9057031905622, - 6960.972250653084, - 9260.762890253256, - 10407.62519242226, - 10228.687303041597, - 9525.45812746222, - 9574.980183567788, - 11980.00195714398, - 18421.58356640205, - 29934.67304998579, - 47641.41544634903, - 68914.65114982704, - 93579.30686599176, - 120077.74365933512, - 141562.72244171088 - ], - "flow:J5:branch63_seg0": [ - 73.18487590502569, - 86.03489864539777, - 95.62603697675398, - 101.13222727445749, - 102.2822883233433, - 99.29777992993327, - 92.88592436017744, - 84.19233698833058, - 74.36049011587424, - 64.05700669404867, - 54.10031960055045, - 44.5525180699128, - 35.33680693953331, - 26.393005705473318, - 17.359806140823434, - 8.363684480848516, - -0.5536245238977683, - -9.105256099479284, - -16.774512637500653, - -23.466668831646754, - -28.89185933673141, - -33.07369752318959, - -36.25243512387077, - -38.60777283007642, - -40.39829458842981, - -41.72990294855826, - -42.56355736666732, - -42.781068660800244, - -42.24376796541488, - -40.901139532004464, - -38.901181891238096, - -36.667753739378234, - -34.729039547162174, - -33.75771672094733, - -34.31131992413642, - -36.666357890198, - -40.70306207563374, - -45.9507246875871, - -51.55715997979516, - -56.4334227570891, - -59.713803759601134, - -60.60484786950409, - -58.79828769941056, - -54.41769078939929, - -48.1165895282152, - -40.43709587767554, - -32.40657652673802, - -24.72796261519005, - -17.705376803872433, - -11.724712091755336, - -6.584439855435267, - -2.129156918080428, - 1.7409438605135945, - 5.22678355732019, - 8.184880274979562, - 10.416065976581155, - 11.719024040947625, - 11.881805462157649, - 10.883864018214219, - 8.905748212150206, - 6.3246401798375995, - 3.5411175858845, - 1.062024271871017, - -0.8401844974252085, - -2.0588292410676354, - -2.6731329723162935, - -2.9682352753781487, - -3.264080620194327, - -3.812840018600162, - -4.732159313927514, - -5.9146987760385, - -7.155167888269744, - -8.106915616391257, - -8.492373217326417, - -8.179294221359191, - -7.223943987941567, - -5.830144967517371, - -4.339088452218242, - -3.0995493640867515, - -2.273382232073071, - -1.9078422594588427, - -1.8339339900415454, - -1.7488851485719055, - -1.3519055769850776, - -0.44869768775965235, - 0.9624196294812744, - 2.6514309252540964, - 4.288062203579765, - 5.4702525573216825, - 6.004468265014235, - 5.9743822944571985, - 5.823732942954197, - 6.319286663312993, - 8.395848157356944, - 12.92518251727393, - 20.543685068659986, - 31.048330838869884, - 44.29708198888476, - 58.880785580681874, - 73.18487590502569 - ], - "pressure:J5:branch63_seg0": [ - 141562.72244171088, - 158775.84248539543, - 169830.55045265402, - 171892.8215361213, - 167015.37831601404, - 156578.95862366434, - 141910.18239955048, - 123950.94683353114, - 107338.50004633219, - 90391.18386290768, - 74126.71327952594, - 59634.853253599, - 44467.296228882195, - 30009.37236025772, - 15218.904345395336, - 140.50609267939242, - -13942.117592694054, - -27512.173812228768, - -38669.53329631953, - -47721.907695381145, - -55051.91189831737, - -60087.42000393759, - -63900.16763367834, - -66803.92548165537, - -68938.2554624677, - -70495.98662693187, - -71058.05093579451, - -70343.37598286798, - -68213.00735095944, - -64902.46252365505, - -60727.71713102366, - -57037.37145594497, - -54902.11761174823, - -55057.93703068314, - -58531.02752307346, - -65205.54370120507, - -74226.35823184383, - -83933.60921086078, - -93276.18658226015, - -99471.13053846036, - -101704.18429541387, - -99435.36317768223, - -92413.90560277346, - -81310.77376853279, - -68685.47154373796, - -54855.044834067674, - -41012.76236944321, - -29585.301642580984, - -19299.687020647765, - -10737.912902423464, - -3776.0586875187655, - 2960.70092820685, - 8509.408699635213, - 13401.70576900764, - 17625.04959472924, - 19943.632825127683, - 20471.95115330417, - 19013.372645934633, - 15731.678217094024, - 11029.395132666856, - 6297.763961941654, - 1820.8394069033168, - -1728.9785212156862, - -3724.027059036325, - -4751.715993830678, - -5063.49722676959, - -5237.755726942154, - -5930.736376987262, - -7344.566369773142, - -9437.865411063347, - -11627.522624177318, - -13491.193392231546, - -14504.04543462909, - -14124.627259002558, - -12486.026835225479, - -10058.68486544628, - -7392.17911701336, - -4900.852560201377, - -3455.5114784854086, - -2895.4155541031714, - -2840.4461616573535, - -2974.199695622186, - -2619.0712290402867, - -1306.0945152005538, - 975.7456428093541, - 4034.9057031905622, - 6960.972250653084, - 9260.762890253256, - 10407.62519242226, - 10228.687303041597, - 9525.45812746222, - 9574.980183567788, - 11980.00195714398, - 18421.58356640205, - 29934.67304998579, - 47641.41544634903, - 68914.65114982704, - 93579.30686599176, - 120077.74365933512, - 141562.72244171088 - ], - "flow:J5:branch65_seg0": [ - 63.10879266057834, - 74.37775615200961, - 82.79692419975719, - 87.62235477169722, - 88.59007189423129, - 85.90256528129669, - 80.20930201667264, - 72.57079119438875, - 63.92258040855821, - 54.9228520496208, - 46.29973191406165, - 38.06745243037299, - 30.209127496643116, - 22.649253102095447, - 15.065570120755911, - 7.574509165745258, - 0.16043103362035366, - -6.9688352898324935, - -13.373871914709328, - -18.99768449107332, - -23.60240689792157, - -27.192377746419442, - -29.96014124968299, - -32.045169363056615, - -33.65790737239996, - -34.89143820245103, - -35.71781204582005, - -36.04036570873768, - -35.740531896476114, - -34.76114894857366, - -33.21234833194065, - -31.42480954781777, - -29.829925683410643, - -29.00085935736743, - -29.41646909823352, - -31.346970722644322, - -34.72447206408537, - -39.21277144684934, - -44.10871898000068, - -48.50991427032509, - -51.67215865918821, - -52.868083925737125, - -51.775657662868475, - -48.425104580295084, - -43.30356896675653, - -36.85367252268403, - -29.930305915037636, - -23.165942201461338, - -16.880104924573487, - -11.44176838514226, - -6.72923014975161, - -2.633612286715312, - 0.9375078507954718, - 4.14473668437099, - 6.87763625901603, - 8.983668081142236, - 10.27774247120646, - 10.570498609885997, - 9.828132199292103, - 8.199179441786642, - 5.982812687240541, - 3.532192328409944, - 1.3072759686295563, - -0.4549393935715883, - -1.6297213827313919, - -2.259544915522438, - -2.5797894161119275, - -2.862931427580926, - -3.3368925128552487, - -4.1215373790597445, - -5.146244123870552, - -6.244029904899554, - -7.123683176780952, - -7.535446033522472, - -7.3465065191608, - -6.582556292971142, - -5.403655403878746, - -4.099901017501937, - -2.9719813804137503, - -2.1845168503772743, - -1.7999085256741447, - -1.6886222200304535, - -1.5999582142095983, - -1.2704249108284362, - -0.5147095652252764, - 0.6864461814726294, - 2.1603750015710323, - 3.628408080316979, - 4.730414659142173, - 5.285909961555144, - 5.334740732514038, - 5.228457982892535, - 5.612703407056577, - 7.296022646828866, - 11.058505763589595, - 17.486517159561558, - 26.478221607388367, - 37.89618076066717, - 50.572448991773854, - 63.10879266057834 - ], - "pressure:J5:branch65_seg0": [ - 141562.72244171088, - 158775.84248539543, - 169830.55045265402, - 171892.8215361213, - 167015.37831601404, - 156578.95862366434, - 141910.18239955048, - 123950.94683353114, - 107338.50004633219, - 90391.18386290768, - 74126.71327952594, - 59634.853253599, - 44467.296228882195, - 30009.37236025772, - 15218.904345395336, - 140.50609267939242, - -13942.117592694054, - -27512.173812228768, - -38669.53329631953, - -47721.907695381145, - -55051.91189831737, - -60087.42000393759, - -63900.16763367834, - -66803.92548165537, - -68938.2554624677, - -70495.98662693187, - -71058.05093579451, - -70343.37598286798, - -68213.00735095944, - -64902.46252365505, - -60727.71713102366, - -57037.37145594497, - -54902.11761174823, - -55057.93703068314, - -58531.02752307346, - -65205.54370120507, - -74226.35823184383, - -83933.60921086078, - -93276.18658226015, - -99471.13053846036, - -101704.18429541387, - -99435.36317768223, - -92413.90560277346, - -81310.77376853279, - -68685.47154373796, - -54855.044834067674, - -41012.76236944321, - -29585.301642580984, - -19299.687020647765, - -10737.912902423464, - -3776.0586875187655, - 2960.70092820685, - 8509.408699635213, - 13401.70576900764, - 17625.04959472924, - 19943.632825127683, - 20471.95115330417, - 19013.372645934633, - 15731.678217094024, - 11029.395132666856, - 6297.763961941654, - 1820.8394069033168, - -1728.9785212156862, - -3724.027059036325, - -4751.715993830678, - -5063.49722676959, - -5237.755726942154, - -5930.736376987262, - -7344.566369773142, - -9437.865411063347, - -11627.522624177318, - -13491.193392231546, - -14504.04543462909, - -14124.627259002558, - -12486.026835225479, - -10058.68486544628, - -7392.17911701336, - -4900.852560201377, - -3455.5114784854086, - -2895.4155541031714, - -2840.4461616573535, - -2974.199695622186, - -2619.0712290402867, - -1306.0945152005538, - 975.7456428093541, - 4034.9057031905622, - 6960.972250653084, - 9260.762890253256, - 10407.62519242226, - 10228.687303041597, - 9525.45812746222, - 9574.980183567788, - 11980.00195714398, - 18421.58356640205, - 29934.67304998579, - 47641.41544634903, - 68914.65114982704, - 93579.30686599176, - 120077.74365933512, - 141562.72244171088 - ], - "flow:branch7_seg0:J6": [ - 184.36719744606762, - 224.54010835041123, - 259.43585469599924, - 285.94718277532263, - 301.9486487963387, - 306.586293475664, - 300.43957680643985, - 285.5600993587576, - 264.1885370059142, - 238.54790377196514, - 211.1066205099679, - 182.73143447317145, - 154.18830272162168, - 125.70267587627205, - 96.84569462001903, - 67.99767382395208, - 39.10233906437867, - 10.829574314098114, - -15.680261925302748, - -39.969443273755736, - -61.158004794583846, - -78.97186715516226, - -93.63539480566422, - -105.42114316476018, - -114.87620164802838, - -122.3619475555291, - -127.97085521764582, - -131.58618402270216, - -132.9536295629294, - -131.90129952392562, - -128.62281454688298, - -123.88064955807917, - -118.81326623025244, - -115.0599153579601, - -114.18867692395976, - -117.38730965553879, - -125.00350356211237, - -136.63799612036277, - -150.6795145940032, - -164.83224346412538, - -176.7694407186604, - -184.0670758980774, - -185.15949383869548, - -179.45411461774884, - -167.5767952200926, - -150.4579496216668, - -130.20601620952024, - -108.6796009566493, - -87.21894430197845, - -67.1999014084434, - -48.86459767618932, - -32.28288728573874, - -17.402259472560782, - -3.91346661397765, - 7.958360332073979, - 17.869734631239552, - 25.31686537707088, - 29.729239749189727, - 30.838662442004, - 28.82891997104246, - 24.288068209387585, - 18.122455642937503, - 11.597192617712123, - 5.573348044630873, - 0.7247292415379535, - -2.737571884541652, - -5.147609297518526, - -7.077179243945711, - -9.14070932454056, - -11.779754710739985, - -15.019627622308953, - -18.581449402690104, - -21.80415013448771, - -23.9940898277346, - -24.651090267249394, - -23.616742137297845, - -21.120755085212696, - -17.785713150820477, - -14.394096168768518, - -11.525282314956266, - -9.551242191958762, - -8.365719666253252, - -7.483640761306354, - -6.2590766582257285, - -4.111557651297322, - -0.804654630346525, - 3.4428726807833345, - 8.032609398393483, - 12.052138354987555, - 14.8754769185566, - 16.327468048600103, - 17.018115327908227, - 18.42102406135859, - 22.632230780537057, - 31.993661883893093, - 48.5255621775544, - 72.8739804163473, - 105.27978857870454, - 143.53548294840996, - 184.36719744606762 - ], - "pressure:branch7_seg0:J6": [ - 125710.76462065487, - 143669.76321750772, - 156574.4248025455, - 161906.10660299863, - 160813.02958558028, - 154138.09541846978, - 142895.48523226145, - 128073.7140947318, - 113130.99916563186, - 97452.24309446827, - 82053.81447621025, - 67698.5048474972, - 52984.5831250533, - 38733.99036348259, - 24201.529094754354, - 9570.383889056919, - -4524.535955186949, - -18125.38552329195, - -29720.299967195744, - -39571.94825804886, - -47750.24105362679, - -53796.1863125891, - -58537.083840037565, - -62205.88983323421, - -64999.28455927871, - -67125.72132195387, - -68287.57822426973, - -68284.0791393595, - -66966.53810460644, - -64476.42905399037, - -61036.99450440188, - -57716.1151336632, - -55417.728369630095, - -54908.30267690634, - -57150.53394451961, - -62263.74490105951, - -69656.59228902562, - -78231.33425823667, - -86861.62449051568, - -93345.9532351928, - -96721.06944655585, - -96237.02118034086, - -91455.87824352102, - -82795.65453635994, - -72192.49128200483, - -59944.36133105285, - -47199.72703755718, - -36041.58809029945, - -25683.70819145327, - -16787.704709803576, - -9313.513611022125, - -2213.3949057145423, - 3761.5816491806295, - 9078.402891415102, - 13721.95276390042, - 16757.513938401713, - 18185.245025163495, - 17790.1991823783, - 15621.492469774978, - 12016.769911489271, - 7967.846005081198, - 3880.1923141107495, - 418.55743972070906, - -1904.3423710799937, - -3337.010044801564, - -4041.388640479055, - -4485.197669168361, - -5214.366731243049, - -6474.787224852363, - -8306.553216245775, - -10300.459861646958, - -12125.642417654391, - -13324.427080741738, - -13384.188757253487, - -12340.458049676768, - -10479.530282700725, - -8239.929080158381, - -5974.12175369013, - -4443.114205811683, - -3617.869920238584, - -3285.1857675550054, - -3221.6978881993336, - -2872.55213522935, - -1810.4377385206321, - 78.65713016025659, - 2682.890715988601, - 5370.689039104315, - 7673.726793113511, - 9074.782556628303, - 9372.94512873413, - 9076.114612608326, - 9164.663144600609, - 10986.020820549864, - 16016.291540026292, - 25381.68493504272, - 40143.9234104229, - 58545.3073385875, - 80445.86595312755, - 104731.77394269878, - 125710.76462065487 - ], - "flow:J6:branch8_seg0": [ - 32.743149631830974, - 38.7676585543946, - 43.4467407385287, - 46.38112378012367, - 47.40471335820739, - 46.558676375870625, - 44.10675058823536, - 40.54014203921977, - 36.318367327563855, - 31.755496298637034, - 27.25433542025327, - 22.832937667499902, - 18.51241111620319, - 14.281320547197556, - 9.986451417928864, - 5.717337952844665, - 1.4629844289233722, - -2.6423738219823028, - -6.3572133686857, - -9.649761455901158, - -12.38190690790099, - -14.547091537620801, - -16.245830831952524, - -17.545847420351233, - -18.557628228491065, - -19.33236083829597, - -19.855757918933126, - -20.08281735398585, - -19.955394633794395, - -19.45133926216071, - -18.63017500000254, - -17.674985374380917, - -16.810025623182074, - -16.33735920414228, - -16.50870780537009, - -17.466129671164822, - -19.169936475597073, - -21.453804508062046, - -23.945290332425767, - -26.17785191128074, - -27.768979283712266, - -28.3462200780632, - -27.74224844607013, - -25.985662783777695, - -23.333644054525834, - -20.001917250834925, - -16.427962695875046, - -12.933790942419686, - -9.661543681466231, - -6.8051304243439175, - -4.30211390041765, - -2.093733089236217, - -0.1555782669264729, - 1.597964000191494, - 3.102624709276482, - 4.274867525601644, - 5.02596755436832, - 5.259425617963329, - 4.95855877375245, - 4.199364609178512, - 3.1316452035908053, - 1.9294067411771783, - 0.8269462507999478, - -0.06008436766925775, - -0.6674072724753239, - -1.0128365170774534, - -1.2118996344918953, - -1.3969072171929717, - -1.6772573641569162, - -2.1084916484241067, - -2.651458590750601, - -3.223163683137153, - -3.6784996961436542, - -3.892926386719776, - -3.8055595815620045, - -3.4304155065053403, - -2.849893554946635, - -2.2048393301593423, - -1.6486862440031318, - -1.2555123381700075, - -1.055710634490129, - -0.9846579360659434, - -0.9172132064448273, - -0.7251397864431702, - -0.31942562830161664, - 0.3055156429455084, - 1.061286537408518, - 1.8097455124634423, - 2.3715562468751425, - 2.6615709280891933, - 2.7053190509396488, - 2.682517801758522, - 2.9206725787682286, - 3.8243375021705353, - 5.791159705442833, - 9.113336307236464, - 13.737079491223817, - 19.615702176541706, - 26.191234299507382, - 32.743149631830974 - ], - "pressure:J6:branch8_seg0": [ - 125710.76462065487, - 143669.76321750772, - 156574.4248025455, - 161906.10660299863, - 160813.02958558028, - 154138.09541846978, - 142895.48523226145, - 128073.7140947318, - 113130.99916563186, - 97452.24309446827, - 82053.81447621025, - 67698.5048474972, - 52984.5831250533, - 38733.99036348259, - 24201.529094754354, - 9570.383889056919, - -4524.535955186949, - -18125.38552329195, - -29720.299967195744, - -39571.94825804886, - -47750.24105362679, - -53796.1863125891, - -58537.083840037565, - -62205.88983323421, - -64999.28455927871, - -67125.72132195387, - -68287.57822426973, - -68284.0791393595, - -66966.53810460644, - -64476.42905399037, - -61036.99450440188, - -57716.1151336632, - -55417.728369630095, - -54908.30267690634, - -57150.53394451961, - -62263.74490105951, - -69656.59228902562, - -78231.33425823667, - -86861.62449051568, - -93345.9532351928, - -96721.06944655585, - -96237.02118034086, - -91455.87824352102, - -82795.65453635994, - -72192.49128200483, - -59944.36133105285, - -47199.72703755718, - -36041.58809029945, - -25683.70819145327, - -16787.704709803576, - -9313.513611022125, - -2213.3949057145423, - 3761.5816491806295, - 9078.402891415102, - 13721.95276390042, - 16757.513938401713, - 18185.245025163495, - 17790.1991823783, - 15621.492469774978, - 12016.769911489271, - 7967.846005081198, - 3880.1923141107495, - 418.55743972070906, - -1904.3423710799937, - -3337.010044801564, - -4041.388640479055, - -4485.197669168361, - -5214.366731243049, - -6474.787224852363, - -8306.553216245775, - -10300.459861646958, - -12125.642417654391, - -13324.427080741738, - -13384.188757253487, - -12340.458049676768, - -10479.530282700725, - -8239.929080158381, - -5974.12175369013, - -4443.114205811683, - -3617.869920238584, - -3285.1857675550054, - -3221.6978881993336, - -2872.55213522935, - -1810.4377385206321, - 78.65713016025659, - 2682.890715988601, - 5370.689039104315, - 7673.726793113511, - 9074.782556628303, - 9372.94512873413, - 9076.114612608326, - 9164.663144600609, - 10986.020820549864, - 16016.291540026292, - 25381.68493504272, - 40143.9234104229, - 58545.3073385875, - 80445.86595312755, - 104731.77394269878, - 125710.76462065487 - ], - "flow:J6:branch15_seg0": [ - 151.6240478142371, - 185.77244979601758, - 215.98911395747157, - 239.56605899520156, - 254.5439354381308, - 260.02761709979694, - 256.33282621820035, - 245.01995731953713, - 227.87016967835024, - 206.7924074733389, - 183.852285089709, - 159.89849680566576, - 135.67589160543213, - 111.42135532907096, - 86.85924320209645, - 62.28033587110409, - 37.639354635449095, - 13.471948136073037, - -9.323048556614802, - -30.31968181785906, - -48.776097886677, - -64.42477561754768, - -77.38956397371985, - -87.87529574439877, - -96.31857341953346, - -103.02958671722585, - -108.11509729871554, - -111.50336666871358, - -112.9982349291259, - -112.44996026177556, - -109.99263954688057, - -106.20566418369799, - -102.00324060707828, - -98.7225561538191, - -97.67996911858789, - -99.92117998437634, - -105.83356708651372, - -115.18419161230095, - -126.7342242615773, - -138.65439155284815, - -149.00046143495896, - -155.72085582001216, - -157.41724539262475, - -153.46845183397122, - -144.24315116556605, - -130.45603237083225, - -113.77805351364455, - -95.74581001422983, - -77.55740062051295, - -60.394770984099644, - -44.56248377577232, - -30.189154196502308, - -17.246681205634268, - -5.511430614169223, - 4.855735622797692, - 13.594867105637656, - 20.290897822701858, - 24.46981413122646, - 25.880103668251735, - 24.629555361863286, - 21.156423005797162, - 16.19304890176049, - 10.770246366912305, - 5.6334324123002375, - 1.3921365140135005, - -1.7247353674638732, - -3.9357096630268793, - -5.680272026752402, - -7.463451960383884, - -9.671263062315992, - -12.368169031558452, - -15.358285719553, - -18.125650438344255, - -20.101163441014574, - -20.845530685687557, - -20.186326630792934, - -18.270861530266114, - -15.580873820660814, - -12.74540992476552, - -10.269769976786286, - -8.495531557468672, - -7.381061730187421, - -6.566427554861522, - -5.533936871782587, - -3.7921320229957223, - -1.110170273291881, - 2.3815861433749044, - 6.222863885930057, - 9.680582108112436, - 12.213905990467271, - 13.622148997660387, - 14.335597526149664, - 15.500351482590418, - 18.80789327836645, - 26.202502178450167, - 39.41222587031908, - 59.136900925123854, - 85.66408640216243, - 117.34424864890237, - 151.6240478142371 - ], - "pressure:J6:branch15_seg0": [ - 125710.76462065487, - 143669.76321750772, - 156574.4248025455, - 161906.10660299863, - 160813.02958558028, - 154138.09541846978, - 142895.48523226145, - 128073.7140947318, - 113130.99916563186, - 97452.24309446827, - 82053.81447621025, - 67698.5048474972, - 52984.5831250533, - 38733.99036348259, - 24201.529094754354, - 9570.383889056919, - -4524.535955186949, - -18125.38552329195, - -29720.299967195744, - -39571.94825804886, - -47750.24105362679, - -53796.1863125891, - -58537.083840037565, - -62205.88983323421, - -64999.28455927871, - -67125.72132195387, - -68287.57822426973, - -68284.0791393595, - -66966.53810460644, - -64476.42905399037, - -61036.99450440188, - -57716.1151336632, - -55417.728369630095, - -54908.30267690634, - -57150.53394451961, - -62263.74490105951, - -69656.59228902562, - -78231.33425823667, - -86861.62449051568, - -93345.9532351928, - -96721.06944655585, - -96237.02118034086, - -91455.87824352102, - -82795.65453635994, - -72192.49128200483, - -59944.36133105285, - -47199.72703755718, - -36041.58809029945, - -25683.70819145327, - -16787.704709803576, - -9313.513611022125, - -2213.3949057145423, - 3761.5816491806295, - 9078.402891415102, - 13721.95276390042, - 16757.513938401713, - 18185.245025163495, - 17790.1991823783, - 15621.492469774978, - 12016.769911489271, - 7967.846005081198, - 3880.1923141107495, - 418.55743972070906, - -1904.3423710799937, - -3337.010044801564, - -4041.388640479055, - -4485.197669168361, - -5214.366731243049, - -6474.787224852363, - -8306.553216245775, - -10300.459861646958, - -12125.642417654391, - -13324.427080741738, - -13384.188757253487, - -12340.458049676768, - -10479.530282700725, - -8239.929080158381, - -5974.12175369013, - -4443.114205811683, - -3617.869920238584, - -3285.1857675550054, - -3221.6978881993336, - -2872.55213522935, - -1810.4377385206321, - 78.65713016025659, - 2682.890715988601, - 5370.689039104315, - 7673.726793113511, - 9074.782556628303, - 9372.94512873413, - 9076.114612608326, - 9164.663144600609, - 10986.020820549864, - 16016.291540026292, - 25381.68493504272, - 40143.9234104229, - 58545.3073385875, - 80445.86595312755, - 104731.77394269878, - 125710.76462065487 - ], - "flow:branch8_seg0:J7": [ - 32.72645615320988, - 38.75530124935514, - 43.43883816741335, - 46.37888767759596, - 47.408773108679185, - 46.567106286104305, - 44.11669139500176, - 40.55574177729728, - 36.33166485196241, - 31.766313813621437, - 27.268036744751576, - 22.8442214510736, - 18.524021063952716, - 14.293309756644277, - 9.99607884590204, - 5.729404195888228, - 1.4745107759039997, - -2.634314348974883, - -6.348648838807025, - -9.642613476357923, - -12.376809074542196, - -14.542571077339545, - -16.242696941116822, - -17.543377978043473, - -18.555489989012937, - -19.331029246916696, - -19.855227958534503, - -20.083336074650127, - -19.95716065126841, - -19.453961322109592, - -18.633200390962507, - -17.677785092548636, - -16.811072740814204, - -16.336565977621987, - -16.50566880181029, - -17.461413033552464, - -19.162306786088706, - -21.44709960696543, - -23.939456961326762, - -26.17351745668447, - -27.76831867264054, - -28.348635502587868, - -27.74712083640889, - -25.992131247605002, - -23.342500665998926, - -20.01191340196155, - -16.436834996821386, - -12.942740161954449, - -9.668796670942946, - -6.811550591058289, - -4.308471558471686, - -2.0991311303585407, - -0.16032792747294963, - 1.5939452062754698, - 3.099161697940586, - 4.27288974881933, - 5.025688248097051, - 5.260768778010253, - 4.960771778687516, - 4.203328309379629, - 3.1352057333873202, - 1.9315228958249961, - 0.8296037943313195, - -0.05848513877639905, - -0.6669197258688866, - -1.0123904683788765, - -1.2114034402571248, - -1.3961542884088993, - -1.676091011816526, - -2.10710013160676, - -2.6499571805339603, - -3.221819866534649, - -3.678030220000186, - -3.893204410789841, - -3.8067618193166877, - -3.4321830606733887, - -2.851898600378436, - -2.2065630396062943, - -1.6497673325320736, - -1.2558775294645472, - -1.0557404603685787, - -0.9847882111553269, - -0.9177590068787626, - -0.726450049783773, - -0.32120464749042554, - 0.3030044372409314, - 1.0591240412780558, - 1.808761361077559, - 2.3708476447779434, - 2.661512495817185, - 2.705575347736905, - 2.681966708524194, - 2.9182445823604617, - 3.818801438193481, - 5.7821742778817855, - 9.10135447660046, - 13.721991195220186, - 19.595779353405476, - 26.17308755135609, - 32.72645615320988 - ], - "pressure:branch8_seg0:J7": [ - 121112.22320788993, - 139427.10476446166, - 152913.29993067918, - 159226.0724831402, - 159182.07744718785, - 153448.6318017155, - 142996.4959305093, - 128946.17075833051, - 114230.65966552611, - 98774.48095673538, - 83576.40858256092, - 69191.87205529529, - 54658.30859976604, - 40510.45114356522, - 26097.94344391345, - 11690.380987666078, - -2370.2513071995827, - -15941.030154298356, - -27599.81812473617, - -37648.3006338826, - -46000.946892155975, - -52258.011529889314, - -57183.83744673738, - -60976.7282338252, - -63877.4338087479, - -66099.94690173218, - -67386.27151132672, - -67557.05464693358, - -66452.47309131641, - -64165.94941143411, - -60903.22863442084, - -57628.785350161445, - -55206.957605343, - -54442.80352493653, - -56284.1151258738, - -60931.441514184764, - -67870.42043062142, - -76204.85448567104, - -84708.90173029357, - -91377.26373320041, - -95175.38011056873, - -95239.24544338435, - -91102.17035127357, - -83096.80091758839, - -72996.33907408013, - -61093.220135195865, - -48576.34319455542, - -37416.91370231874, - -26989.011480164136, - -18010.12536951452, - -10415.51885417621, - -3276.56890130265, - 2763.536584645192, - 8152.283544889091, - 12863.010734265625, - 16082.478359701694, - 17747.093939955615, - 17629.97820457468, - 15737.846324415594, - 12410.015560189557, - 8475.820707463738, - 4427.646279292867, - 950.1144932260239, - -1512.1013759709135, - -3069.53276463276, - -3865.2756156015857, - -4353.075320319422, - -5050.9315177381395, - -6230.187013843829, - -7966.2491955725, - -9900.908562649654, - -11729.59922669136, - -13001.878829510288, - -13206.448165853108, - -12341.21785488959, - -10630.787825216337, - -8481.780826338183, - -6247.546588492191, - -4651.3815472589895, - -3724.7558320758244, - -3313.2212492142035, - -3213.579505129243, - -2898.3641123773064, - -1943.8492149176698, - -187.49263825326582, - 2277.0441970262013, - 4920.867178420542, - 7258.469288224365, - 8752.563730056147, - 9201.248754962657, - 9002.176708496932, - 9048.040471410606, - 10619.993873180172, - 15154.332442047165, - 23820.730382968264, - 37686.159476024695, - 55260.48681178412, - 76414.06444496092, - 100133.78939429113, - 121112.22320788993 - ], - "flow:J7:branch9_seg0": [ - 16.202264878093402, - 19.229700652737097, - 21.603696762037632, - 23.118583100638876, - 23.68209682154988, - 23.31047058911819, - 22.130192446130067, - 20.37642204921172, - 18.284158306726052, - 16.01375137546677, - 13.760022460280274, - 11.545521340582837, - 9.38195417886658, - 7.261077435619071, - 5.114181966693719, - 2.976424556020151, - 0.8440526969249542, - -1.2115507133967984, - -3.0814774189766587, - -4.741589355649068, - -6.122447136617561, - -7.2215309626082815, - -8.084135675456062, - -8.74512674963083, - -9.259554635639422, - -9.653442649662654, - -9.921727677777938, - -10.042990461238801, - -9.98811305810638, - -9.74569842440174, - -9.343109581574852, - -8.868987812953636, - -8.434223316397082, - -8.187692813922942, - -8.256554877982929, - -8.714328544921322, - -9.547211549685638, - -10.674038618770677, - -11.912830532512821, - -13.036007048868173, - -13.84711670259995, - -14.161101137348426, - -13.888782802701314, - -13.04099839844264, - -11.737878413047705, - -10.088507586316865, - -8.309817644406838, - -6.560418485758127, - -4.918666290994264, - -3.4803758859305374, - -2.218534283838747, - -1.1063666685194347, - -0.13049772065331633, - 0.7518452494994856, - 1.5108727894898517, - 2.1056896494966137, - 2.4922636634869564, - 2.622536376472559, - 2.4865027595966303, - 2.1189939505224498, - 1.5933786631181246, - 0.9970396895922438, - 0.442994505630505, - -0.006370517851127072, - -0.3167695177629415, - -0.4965308783632302, - -0.6003110690325119, - -0.6934678336673935, - -0.8315290489989169, - -1.0433506077738746, - -1.3119152991234784, - -1.5971037567166653, - -1.8272666796560644, - -1.9404797974811643, - -1.904609367569003, - -1.7245049801418086, - -1.4398522253662813, - -1.1193443086847727, - -0.8394979410464257, - -0.6387316933251935, - -0.533807960125761, - -0.49470437847096177, - -0.4605528786818855, - -0.3675255171928839, - -0.17012434063510606, - 0.13667435309572507, - 0.5111656159548139, - 0.8848989717069112, - 1.170653338272177, - 1.3227968270722181, - 1.351007130977256, - 1.3416069448285206, - 1.4546048660599467, - 1.8898968265696439, - 2.847237320537015, - 4.472916970551962, - 6.750839645215326, - 9.66006891922622, - 12.92730580672785, - 16.202264878093402 - ], - "pressure:J7:branch9_seg0": [ - 121112.22320788993, - 139427.10476446166, - 152913.29993067918, - 159226.0724831402, - 159182.07744718785, - 153448.6318017155, - 142996.4959305093, - 128946.17075833051, - 114230.65966552611, - 98774.48095673538, - 83576.40858256092, - 69191.87205529529, - 54658.30859976604, - 40510.45114356522, - 26097.94344391345, - 11690.380987666078, - -2370.2513071995827, - -15941.030154298356, - -27599.81812473617, - -37648.3006338826, - -46000.946892155975, - -52258.011529889314, - -57183.83744673738, - -60976.7282338252, - -63877.4338087479, - -66099.94690173218, - -67386.27151132672, - -67557.05464693358, - -66452.47309131641, - -64165.94941143411, - -60903.22863442084, - -57628.785350161445, - -55206.957605343, - -54442.80352493653, - -56284.1151258738, - -60931.441514184764, - -67870.42043062142, - -76204.85448567104, - -84708.90173029357, - -91377.26373320041, - -95175.38011056873, - -95239.24544338435, - -91102.17035127357, - -83096.80091758839, - -72996.33907408013, - -61093.220135195865, - -48576.34319455542, - -37416.91370231874, - -26989.011480164136, - -18010.12536951452, - -10415.51885417621, - -3276.56890130265, - 2763.536584645192, - 8152.283544889091, - 12863.010734265625, - 16082.478359701694, - 17747.093939955615, - 17629.97820457468, - 15737.846324415594, - 12410.015560189557, - 8475.820707463738, - 4427.646279292867, - 950.1144932260239, - -1512.1013759709135, - -3069.53276463276, - -3865.2756156015857, - -4353.075320319422, - -5050.9315177381395, - -6230.187013843829, - -7966.2491955725, - -9900.908562649654, - -11729.59922669136, - -13001.878829510288, - -13206.448165853108, - -12341.21785488959, - -10630.787825216337, - -8481.780826338183, - -6247.546588492191, - -4651.3815472589895, - -3724.7558320758244, - -3313.2212492142035, - -3213.579505129243, - -2898.3641123773064, - -1943.8492149176698, - -187.49263825326582, - 2277.0441970262013, - 4920.867178420542, - 7258.469288224365, - 8752.563730056147, - 9201.248754962657, - 9002.176708496932, - 9048.040471410606, - 10619.993873180172, - 15154.332442047165, - 23820.730382968264, - 37686.159476024695, - 55260.48681178412, - 76414.06444496092, - 100133.78939429113, - 121112.22320788993 - ], - "flow:J7:branch51_seg0": [ - 16.524191275116486, - 19.525600596618098, - 21.83514140537552, - 23.260304576956838, - 23.726676287128978, - 23.256635696986134, - 21.9864989488718, - 20.179319728085343, - 18.04750654523581, - 15.75256243815491, - 13.508014284472107, - 11.298700110490074, - 9.142066885087711, - 7.0322323210251145, - 4.881896879207984, - 2.7529796398679878, - 0.6304580789797886, - -1.422763635578491, - -3.267171419831024, - -4.90102412071115, - -6.2543619379243784, - -7.321040114732183, - -8.15856126566071, - -8.798251228412104, - -9.295935353373071, - -9.677586597253983, - -9.9335002807566, - -10.040345613410892, - -9.969047593161571, - -9.708262897707465, - -9.290090809387621, - -8.808797279594254, - -8.37684942441626, - -8.1488731636988, - -8.249113923826918, - -8.747084488631609, - -9.61509523640299, - -10.7730609881941, - -12.026626428814502, - -13.137510407816649, - -13.921201970040595, - -14.18753436523952, - -13.858338033707732, - -12.951132849162008, - -11.604622252951335, - -9.923405815644594, - -8.127017352414581, - -6.38232167619637, - -4.750130379948617, - -3.331174705127753, - -2.0899372746329283, - -0.9927644618391254, - -0.029830206819678764, - 0.8420999567759766, - 1.5882889084507539, - 2.1672000993226916, - 2.5334245846100822, - 2.6382324015376457, - 2.4742690190909666, - 2.0843343588571797, - 1.541827070269257, - 0.9344832062328047, - 0.3866092887008049, - -0.052114620925135836, - -0.35015020810590236, - -0.5158595900156537, - -0.6110923712245722, - -0.7026864547414665, - -0.8445619628176165, - -1.0637495238328916, - -1.3380418814104877, - -1.6247161098180507, - -1.850763540344089, - -1.9527246133086744, - -1.9021524517476776, - -1.7076780805315686, - -1.412046375012147, - -1.0872187309215022, - -0.8102693914856567, - -0.6171458361393597, - -0.5219325002428352, - -0.49008383268435785, - -0.4572061281968739, - -0.35892453259087687, - -0.1510803068553302, - 0.16633008414521533, - 0.5479584253232112, - 0.923862389370658, - 1.2001943065057963, - 1.338715668744964, - 1.3545682167596527, - 1.340359763695648, - 1.4636397163005448, - 1.9289046116237532, - 2.9349369573447253, - 4.628437506048573, - 6.971151550004874, - 9.935710434179295, - 13.24578174462815, - 16.524191275116486 - ], - "pressure:J7:branch51_seg0": [ - 121112.22320788993, - 139427.10476446166, - 152913.29993067918, - 159226.0724831402, - 159182.07744718785, - 153448.6318017155, - 142996.4959305093, - 128946.17075833051, - 114230.65966552611, - 98774.48095673538, - 83576.40858256092, - 69191.87205529529, - 54658.30859976604, - 40510.45114356522, - 26097.94344391345, - 11690.380987666078, - -2370.2513071995827, - -15941.030154298356, - -27599.81812473617, - -37648.3006338826, - -46000.946892155975, - -52258.011529889314, - -57183.83744673738, - -60976.7282338252, - -63877.4338087479, - -66099.94690173218, - -67386.27151132672, - -67557.05464693358, - -66452.47309131641, - -64165.94941143411, - -60903.22863442084, - -57628.785350161445, - -55206.957605343, - -54442.80352493653, - -56284.1151258738, - -60931.441514184764, - -67870.42043062142, - -76204.85448567104, - -84708.90173029357, - -91377.26373320041, - -95175.38011056873, - -95239.24544338435, - -91102.17035127357, - -83096.80091758839, - -72996.33907408013, - -61093.220135195865, - -48576.34319455542, - -37416.91370231874, - -26989.011480164136, - -18010.12536951452, - -10415.51885417621, - -3276.56890130265, - 2763.536584645192, - 8152.283544889091, - 12863.010734265625, - 16082.478359701694, - 17747.093939955615, - 17629.97820457468, - 15737.846324415594, - 12410.015560189557, - 8475.820707463738, - 4427.646279292867, - 950.1144932260239, - -1512.1013759709135, - -3069.53276463276, - -3865.2756156015857, - -4353.075320319422, - -5050.9315177381395, - -6230.187013843829, - -7966.2491955725, - -9900.908562649654, - -11729.59922669136, - -13001.878829510288, - -13206.448165853108, - -12341.21785488959, - -10630.787825216337, - -8481.780826338183, - -6247.546588492191, - -4651.3815472589895, - -3724.7558320758244, - -3313.2212492142035, - -3213.579505129243, - -2898.3641123773064, - -1943.8492149176698, - -187.49263825326582, - 2277.0441970262013, - 4920.867178420542, - 7258.469288224365, - 8752.563730056147, - 9201.248754962657, - 9002.176708496932, - 9048.040471410606, - 10619.993873180172, - 15154.332442047165, - 23820.730382968264, - 37686.159476024695, - 55260.48681178412, - 76414.06444496092, - 100133.78939429113, - 121112.22320788993 - ], - "flow:branch10_seg0:J8": [ - 36.34706776217695, - 42.02048934522931, - 45.90429908615476, - 47.70554590310693, - 47.456999633775986, - 45.33612939758734, - 41.7354352100686, - 37.30798033110224, - 32.54622119377338, - 27.669002031100206, - 23.144995553492475, - 18.81242468639979, - 14.61352976013968, - 10.550705267221492, - 6.357900537607887, - 2.2320957051567127, - -1.84937505835498, - -5.764174949325078, - -9.135105751825085, - -12.03425758462687, - -14.328398704588103, - -16.023996596986276, - -17.307140305250396, - -18.244711609762597, - -18.958931227788597, - -19.490421248680168, - -19.78522069109388, - -19.775460543502874, - -19.39487349422735, - -18.633777271061447, - -17.58870104591608, - -16.513030093559284, - -15.662426939161861, - -15.376791912603236, - -15.897267793931958, - -17.309769521893628, - -19.462683572365755, - -22.112875996183288, - -24.787138618892822, - -26.915147649554964, - -28.161663535340033, - -28.163851846498094, - -26.84771312098848, - -24.35048930994747, - -21.097386382884196, - -17.31097821359713, - -13.499971358762735, - -10.022025993256358, - -6.889402532094915, - -4.301432398822738, - -2.0997736609230637, - -0.1591768143915181, - 1.5189390738124366, - 3.04894477866305, - 4.322255133094362, - 5.221764089744272, - 5.659322589094355, - 5.534287934794759, - 4.8619117081573435, - 3.7737014244388454, - 2.4689132943361334, - 1.1298436074141023, - 0.04006759578279267, - -0.7363358278839445, - -1.1847151047878826, - -1.3572701475376259, - -1.4298070406235024, - -1.5616811171269436, - -1.8559804899672512, - -2.3450976415586706, - -2.93833071286641, - -3.520580322652801, - -3.917680925492983, - -3.9966985738122287, - -3.7289763624775976, - -3.172302408199068, - -2.4498217273392027, - -1.735284464548928, - -1.2029291642636566, - -0.8935738892053172, - -0.804935545001288, - -0.8261758850826038, - -0.7902507929903707, - -0.5563703957980207, - -0.05136779229460719, - 0.6888775842261778, - 1.520351252023738, - 2.2769707681819624, - 2.744247044285295, - 2.8755728384018195, - 2.762029434085298, - 2.6653192092344584, - 2.999231846748923, - 4.224671153072444, - 6.740876948546065, - 10.813458398992568, - 16.182767988883054, - 22.748099992405166, - 29.789733920821913, - 36.34706776217695 - ], - "pressure:branch10_seg0:J8": [ - 135078.03665695092, - 153169.28414904195, - 165142.71248315935, - 168798.48584743583, - 165486.38440010312, - 156314.64249918854, - 142564.79662804116, - 125683.66779619087, - 109148.81349796237, - 92267.77528938453, - 76304.88834963452, - 61622.332846529556, - 46756.55230167993, - 32469.89630232822, - 17801.94157394239, - 3109.8008993659782, - -11019.133853641446, - -24564.610737993535, - -35871.08531137931, - -45280.606602914144, - -52836.9345579572, - -58165.69164357218, - -62209.554253260525, - -65231.829009207046, - -67481.64545381269, - -69147.4059012149, - -69879.91390564831, - -69429.51133013132, - -67613.12382322179, - -64579.8942988769, - -60618.75973406719, - -56930.89925473628, - -54482.239586671356, - -54182.37309984123, - -56986.417606196104, - -62954.72053690199, - -71316.14336994466, - -80826.3011753255, - -90103.7999580596, - -96750.0427600101, - -99782.75949807772, - -98411.12541363333, - -92322.30943558174, - -82176.01095851627, - -70119.40126765787, - -56609.78156076966, - -43024.458770887606, - -31426.169736456002, - -20956.556557642063, - -12271.202103410815, - -5114.5785973296115, - 1620.7677499585902, - 7230.229869201826, - 12252.952467536483, - 16543.6566364899, - 19160.49948664358, - 20069.19808443824, - 19020.6898900087, - 16116.9071145584, - 11801.30443336161, - 7153.378247236522, - 2623.438800661939, - -997.0900013303518, - -3264.670817779078, - -4491.728230644828, - -4908.3666397799025, - -5107.715408317201, - -5704.489273234549, - -6965.574923718585, - -8902.15824116213, - -11033.239468627264, - -12947.271698990426, - -14102.877316294363, - -13968.056665349402, - -12608.175892484696, - -10374.696601563935, - -7790.318233830218, - -5301.678197432434, - -3715.5784010877423, - -2962.988838369506, - -2807.845156823598, - -2920.051637660973, - -2657.6901664001366, - -1548.671310859524, - 520.5311529303137, - 3372.2264106632724, - 6279.83950445731, - 8701.129888142757, - 10027.071778927437, - 10092.571790619722, - 9507.809675273442, - 9399.889584843106, - 11313.297559036055, - 16872.25471560182, - 27299.298683233028, - 43582.72985228824, - 63769.59183203193, - 87548.03594537493, - 113276.81978803083, - 135078.03665695092 - ], - "flow:J8:branch11_seg0": [ - 19.657704877573842, - 22.665791559330383, - 24.697541878191355, - 25.597715472638352, - 25.405264877169664, - 24.21821620434443, - 22.247716121616765, - 19.85269345789839, - 17.296099086045242, - 14.678700060842575, - 12.265445289151534, - 9.953115561012664, - 7.705024675789396, - 5.53344279052073, - 3.283210193806424, - 1.0752582381974018, - -1.105321817822051, - -3.2014760689032373, - -4.98963871931157, - -6.525480829075524, - -7.739608668993897, - -8.62943744923932, - -9.30515393737256, - -9.798467989468424, - -10.174042909217002, - -10.453863258786198, - -10.604869838407776, - -10.590461068754003, - -10.375927992969904, - -9.957960708508717, - -9.390080398190134, - -8.81422481639215, - -8.366602174811414, - -8.23007285027039, - -8.532911548366998, - -9.316093103385306, - -10.489035603742398, - -11.92122070775426, - -13.354994255031409, - -14.4766374433003, - -15.117441369478046, - -15.083551986106372, - -14.340218900245356, - -12.966412119496363, - -11.205118359602228, - -9.165557807710606, - -7.119778982040368, - -5.270214150221524, - -3.602008754005325, - -2.229561261817106, - -1.0639021640686273, - -0.0294285871715314, - 0.862019944925989, - 1.676120259975063, - 2.3516732577743715, - 2.8217823140588894, - 3.0425058092337904, - 2.959759115222188, - 2.5836520358054584, - 1.9892305169245186, - 1.2851713914540142, - 0.5665289190543201, - -0.009589339658811277, - -0.41502870159435856, - -0.6467859352913108, - -0.7317930993822519, - -0.7678515512774604, - -0.8408065212445898, - -1.0034889252337944, - -1.2713437370579364, - -1.5915527940732874, - -1.9020482238846534, - -2.1096477186120484, - -2.1422452723119467, - -1.9886139852474076, - -1.682547022029638, - -1.291807360819749, - -0.909086082295378, - -0.6297311068002346, - -0.4709007379746919, - -0.42900932399110453, - -0.4432146294788733, - -0.4219259259677519, - -0.29055260999496385, - -0.012065767077346261, - 0.3909667336683973, - 0.8382504815215097, - 1.2412780623034958, - 1.482910205043377, - 1.5429011968613575, - 1.4757694752683401, - 1.4258808423050846, - 1.618777852895269, - 2.3025713931386584, - 3.688184798236936, - 5.918262893733211, - 8.830397340457392, - 12.373241763246725, - 16.16631751875226, - 19.657704877573842 - ], - "pressure:J8:branch11_seg0": [ - 135078.03665695092, - 153169.28414904195, - 165142.71248315935, - 168798.48584743583, - 165486.38440010312, - 156314.64249918854, - 142564.79662804116, - 125683.66779619087, - 109148.81349796237, - 92267.77528938453, - 76304.88834963452, - 61622.332846529556, - 46756.55230167993, - 32469.89630232822, - 17801.94157394239, - 3109.8008993659782, - -11019.133853641446, - -24564.610737993535, - -35871.08531137931, - -45280.606602914144, - -52836.9345579572, - -58165.69164357218, - -62209.554253260525, - -65231.829009207046, - -67481.64545381269, - -69147.4059012149, - -69879.91390564831, - -69429.51133013132, - -67613.12382322179, - -64579.8942988769, - -60618.75973406719, - -56930.89925473628, - -54482.239586671356, - -54182.37309984123, - -56986.417606196104, - -62954.72053690199, - -71316.14336994466, - -80826.3011753255, - -90103.7999580596, - -96750.0427600101, - -99782.75949807772, - -98411.12541363333, - -92322.30943558174, - -82176.01095851627, - -70119.40126765787, - -56609.78156076966, - -43024.458770887606, - -31426.169736456002, - -20956.556557642063, - -12271.202103410815, - -5114.5785973296115, - 1620.7677499585902, - 7230.229869201826, - 12252.952467536483, - 16543.6566364899, - 19160.49948664358, - 20069.19808443824, - 19020.6898900087, - 16116.9071145584, - 11801.30443336161, - 7153.378247236522, - 2623.438800661939, - -997.0900013303518, - -3264.670817779078, - -4491.728230644828, - -4908.3666397799025, - -5107.715408317201, - -5704.489273234549, - -6965.574923718585, - -8902.15824116213, - -11033.239468627264, - -12947.271698990426, - -14102.877316294363, - -13968.056665349402, - -12608.175892484696, - -10374.696601563935, - -7790.318233830218, - -5301.678197432434, - -3715.5784010877423, - -2962.988838369506, - -2807.845156823598, - -2920.051637660973, - -2657.6901664001366, - -1548.671310859524, - 520.5311529303137, - 3372.2264106632724, - 6279.83950445731, - 8701.129888142757, - 10027.071778927437, - 10092.571790619722, - 9507.809675273442, - 9399.889584843106, - 11313.297559036055, - 16872.25471560182, - 27299.298683233028, - 43582.72985228824, - 63769.59183203193, - 87548.03594537493, - 113276.81978803083, - 135078.03665695092 - ], - "flow:J8:branch130_seg0": [ - 16.689362884603092, - 19.354697785898633, - 21.206757207963705, - 22.107830430468844, - 22.05173475660566, - 21.117913193242607, - 19.487719088451016, - 17.455286873203814, - 15.250122107728343, - 12.990301970257688, - 10.879550264340779, - 8.85930912538724, - 6.908505084351385, - 5.017262476701922, - 3.0746903438015836, - 1.1568374669584105, - -0.7440532405331118, - -2.562698880420876, - -4.145467032512455, - -5.508776755551042, - -6.58879003559406, - -7.394559147747787, - -8.001986367877086, - -8.446243620295343, - -8.78488831857067, - -9.036557989894051, - -9.180350852686175, - -9.184999474748498, - -9.01894550125738, - -8.675816562552697, - -8.19862064772692, - -7.6988052771669215, - -7.295824764350411, - -7.146719062331858, - -7.3643562455652, - -7.993676418508583, - -8.97364796862394, - -10.191655288428855, - -11.432144363861635, - -12.43851020625496, - -13.044222165861973, - -13.080299860391793, - -12.507494220743283, - -11.384077190450954, - -9.892268023282083, - -8.14542040588659, - -6.380192376722406, - -4.751811843034829, - -3.287393778089614, - -2.0718711370056475, - -1.0358714968544072, - -0.12974822721999035, - 0.6569191288864613, - 1.3728245186880035, - 1.9705818753200173, - 2.3999817756853847, - 2.6168167798605073, - 2.574528819572511, - 2.2782596723519544, - 1.78447090751444, - 1.183741902882153, - 0.5633146883597502, - 0.04965693544154157, - -0.3213071262895635, - -0.5379291694965647, - -0.6254770481554238, - -0.6619554893460488, - -0.7208745958824124, - -0.8524915647333897, - -1.0737539045007858, - -1.3467779187931161, - -1.6185320987681444, - -1.8080332068809573, - -1.8544533015002496, - -1.7403623772302321, - -1.4897553861693869, - -1.1580143665194593, - -0.8261983822535419, - -0.5731980574634141, - -0.4226731512306112, - -0.37592622101019807, - -0.3829612556037238, - -0.36832486702261646, - -0.26581778580306326, - -0.039302025217252824, - 0.29791085055778993, - 0.6821007705022214, - 1.03569270587849, - 1.261336839241936, - 1.3326716415404425, - 1.2862599588169714, - 1.2394383669293472, - 1.3804539938536218, - 1.9220997599337626, - 3.0526921503092055, - 4.895195505259432, - 7.35237064842555, - 10.374858229158333, - 13.623416402069841, - 16.689362884603092 - ], - "pressure:J8:branch130_seg0": [ - 135078.03665695092, - 153169.28414904195, - 165142.71248315935, - 168798.48584743583, - 165486.38440010312, - 156314.64249918854, - 142564.79662804116, - 125683.66779619087, - 109148.81349796237, - 92267.77528938453, - 76304.88834963452, - 61622.332846529556, - 46756.55230167993, - 32469.89630232822, - 17801.94157394239, - 3109.8008993659782, - -11019.133853641446, - -24564.610737993535, - -35871.08531137931, - -45280.606602914144, - -52836.9345579572, - -58165.69164357218, - -62209.554253260525, - -65231.829009207046, - -67481.64545381269, - -69147.4059012149, - -69879.91390564831, - -69429.51133013132, - -67613.12382322179, - -64579.8942988769, - -60618.75973406719, - -56930.89925473628, - -54482.239586671356, - -54182.37309984123, - -56986.417606196104, - -62954.72053690199, - -71316.14336994466, - -80826.3011753255, - -90103.7999580596, - -96750.0427600101, - -99782.75949807772, - -98411.12541363333, - -92322.30943558174, - -82176.01095851627, - -70119.40126765787, - -56609.78156076966, - -43024.458770887606, - -31426.169736456002, - -20956.556557642063, - -12271.202103410815, - -5114.5785973296115, - 1620.7677499585902, - 7230.229869201826, - 12252.952467536483, - 16543.6566364899, - 19160.49948664358, - 20069.19808443824, - 19020.6898900087, - 16116.9071145584, - 11801.30443336161, - 7153.378247236522, - 2623.438800661939, - -997.0900013303518, - -3264.670817779078, - -4491.728230644828, - -4908.3666397799025, - -5107.715408317201, - -5704.489273234549, - -6965.574923718585, - -8902.15824116213, - -11033.239468627264, - -12947.271698990426, - -14102.877316294363, - -13968.056665349402, - -12608.175892484696, - -10374.696601563935, - -7790.318233830218, - -5301.678197432434, - -3715.5784010877423, - -2962.988838369506, - -2807.845156823598, - -2920.051637660973, - -2657.6901664001366, - -1548.671310859524, - 520.5311529303137, - 3372.2264106632724, - 6279.83950445731, - 8701.129888142757, - 10027.071778927437, - 10092.571790619722, - 9507.809675273442, - 9399.889584843106, - 11313.297559036055, - 16872.25471560182, - 27299.298683233028, - 43582.72985228824, - 63769.59183203193, - 87548.03594537493, - 113276.81978803083, - 135078.03665695092 - ], - "flow:branch12_seg0:J9": [ - 176.32338494344887, - 198.57719937908053, - 210.40366849946867, - 211.19255134844278, - 201.94544683128117, - 184.5207101706061, - 161.47958120765617, - 136.2284433280454, - 111.93625077906226, - 88.88206483149378, - 68.64751060259667, - 50.770899784977274, - 33.71557450661465, - 17.615070000206103, - 1.1114096083603116, - -15.517582230618954, - -31.30237224194031, - -46.18413202007999, - -58.35341459539159, - -67.96240735241489, - -74.66714425300783, - -78.72577920733204, - -81.17349818012109, - -82.48951616540711, - -83.28365590808488, - -83.6128003039815, - -83.14477731089072, - -81.39966291422452, - -78.05320591397832, - -73.08220698664819, - -67.14651769392417, - -61.608102669954256, - -57.89739684568871, - -57.57686874753277, - -61.72870444474342, - -70.31298360889951, - -82.41836807578582, - -95.91647273976005, - -108.6712877095877, - -117.50738064260365, - -120.9368710732627, - -117.62807454578432, - -107.85167465285681, - -92.63227636772433, - -74.65043600040242, - -55.29916513102548, - -37.25555693746798, - -22.026515408297886, - -9.367396121792476, - 0.05942313156120982, - 7.573133288496423, - 13.792808466101945, - 19.00986776483078, - 23.770249222144678, - 27.422863881642105, - 29.3010617684523, - 28.98656724999151, - 26.045872817166963, - 20.73450484619214, - 13.780041387193826, - 6.530576034216426, - -0.1543399094106672, - -5.1207210753412005, - -7.902787750197156, - -8.886165158135801, - -8.573257734164141, - -7.988816113790089, - -8.031361992628552, - -9.157792817657677, - -11.420673290968894, - -14.17291454209013, - -16.721667494478314, - -18.07434066114548, - -17.680103884435642, - -15.46403699122878, - -11.974799305144742, - -7.913364261192244, - -4.330832299830485, - -2.032599945504374, - -1.1104650536499765, - -1.358536780355297, - -2.0340291407657167, - -2.1784414633279625, - -1.0636804791287982, - 1.5444811405254115, - 5.345224490340621, - 9.33477970216518, - 12.596520979209798, - 14.16993270138332, - 13.846891700667554, - 12.395197924439055, - 11.438379893190481, - 13.208450332068, - 20.14744734119931, - 33.79241481516181, - 55.37810011237908, - 82.68012431419501, - 115.17614425622682, - 147.82696287163049, - 176.32338494344887 - ], - "pressure:branch12_seg0:J9": [ - 192690.02637190212, - 204917.845099224, - 208142.87710770886, - 197611.9126441905, - 179152.4375647104, - 156320.043420518, - 131334.51940489493, - 103469.34627425164, - 83425.92691076368, - 64206.7678361875, - 45701.24385854845, - 32213.322170503463, - 15916.542159600482, - 1096.988751399725, - -13853.574756537391, - -30615.217103695224, - -43998.70475725305, - -56817.44757279587, - -66223.6829384844, - -72043.10148459855, - -76327.0611389431, - -77979.3118438909, - -78752.391818223, - -79379.3204048116, - -79584.896579099, - -79434.83701451115, - -78106.34731926424, - -75016.04383440442, - -70163.05593412914, - -64233.47702645138, - -57869.767634935844, - -53411.42431236228, - -52633.451666930145, - -55690.67142091837, - -63914.40659679198, - -76084.93340015106, - -90685.9638871108, - -103318.94939326902, - -114194.58402094596, - -118266.49426139292, - -115355.3831447381, - -106266.50772676132, - -91442.5698248248, - -72180.37638079088, - -53367.35776050462, - -35226.12934596816, - -18678.89589900397, - -7444.2207980374205, - 1656.8168284676974, - 8605.86170489576, - 13537.172985351426, - 18989.36214109534, - 23089.757131988405, - 26434.965992354893, - 29267.785228677265, - 28942.202224198016, - 26206.657879338276, - 21060.904192631882, - 14147.15565114076, - 5847.2778191606885, - -594.3394452901767, - -5615.2651586617985, - -9076.91193835681, - -9385.934185067645, - -8740.364939774665, - -7753.468613470339, - -7162.523161897597, - -7985.200034314741, - -10143.902155017862, - -13240.795243326535, - -16027.372607190355, - -17819.706100165808, - -17929.49203198635, - -15826.520241584014, - -12007.715498624188, - -7726.662438305714, - -3849.250402307893, - -908.582546391482, - -123.62982107459149, - -782.4240287835731, - -1733.4080804185141, - -2436.173658254096, - -1842.902615930321, - 595.0349888294811, - 4348.568047083188, - 9010.621406818444, - 12487.591824003252, - 14333.318528051479, - 14344.630873264954, - 12314.027370411057, - 10268.492874317897, - 10614.138887535837, - 15677.127411461845, - 27776.384505935268, - 47111.280083285405, - 75214.11452637814, - 105784.19402988718, - 138997.43653481614, - 171623.27929785743, - 192690.02637190212 - ], - "flow:J9:branch13_seg0": [ - 65.69149561064827, - 73.48884214272803, - 77.26866854338341, - 76.92414164588227, - 72.90235034398546, - 65.99654616290344, - 57.198076383474245, - 47.70961816938881, - 38.86309986899542, - 30.530644870896612, - 23.30149308008793, - 16.994896895519194, - 10.941602674263159, - 5.211179323675215, - -0.7009414652331499, - -6.706697390010354, - -12.414314698119455, - -17.690449887574506, - -22.008335072308622, - -25.337340002474242, - -27.569857873223782, - -28.871068356553856, - -29.599868668361957, - -29.96376771928154, - -30.18089461499212, - -30.24766718791687, - -30.027944598602268, - -29.33330304916703, - -28.032458240838572, - -26.14343237164686, - -23.911138138632708, - -21.885503867206406, - -20.593015302417975, - -20.614855161124115, - -22.329028950828526, - -25.68978806174886, - -30.32159025078124, - -35.37352065555535, - -40.0382121781258, - -43.14885500555849, - -44.14519446429868, - -42.61523539633227, - -38.670869413375485, - -32.811005941557966, - -25.99571869551729, - -18.79939259688601, - -12.256715365050692, - -6.80479366055074, - -2.3820311485958325, - 0.8457160686459659, - 3.403571326626957, - 5.5212655530778285, - 7.29936255613988, - 8.959670713607887, - 10.21448888782635, - 10.796828535693866, - 10.563957735430858, - 9.352276606880453, - 7.28420141381847, - 4.62851543610366, - 1.939894176550318, - -0.4863648799226228, - -2.2454815359435254, - -3.1510290327952633, - -3.3855364409763538, - -3.1723209983855494, - -2.897248001427303, - -2.8993041670738084, - -3.341102972455439, - -4.21261887347401, - -5.259456250317606, - -6.20217250894621, - -6.656995764690413, - -6.438512503108801, - -5.536707738268945, - -4.174303220585485, - -2.6396729967263415, - -1.3238969181634648, - -0.5345384560257257, - -0.2669622227983124, - -0.4337603482680491, - -0.7316564624312301, - -0.7949082290503893, - -0.3554207082431864, - 0.6547842740733135, - 2.108535206424668, - 3.5955427616227906, - 4.770038123918149, - 5.290715452029292, - 5.0799487731386135, - 4.464853636852687, - 4.082701883658512, - 4.795272338717524, - 7.499814638284704, - 12.78698796084568, - 20.99199963845044, - 31.3059211544533, - 43.471002199898955, - 55.43849410898953, - 65.69149561064827 - ], - "pressure:J9:branch13_seg0": [ - 192690.02637190212, - 204917.845099224, - 208142.87710770886, - 197611.9126441905, - 179152.4375647104, - 156320.043420518, - 131334.51940489493, - 103469.34627425164, - 83425.92691076368, - 64206.7678361875, - 45701.24385854845, - 32213.322170503463, - 15916.542159600482, - 1096.988751399725, - -13853.574756537391, - -30615.217103695224, - -43998.70475725305, - -56817.44757279587, - -66223.6829384844, - -72043.10148459855, - -76327.0611389431, - -77979.3118438909, - -78752.391818223, - -79379.3204048116, - -79584.896579099, - -79434.83701451115, - -78106.34731926424, - -75016.04383440442, - -70163.05593412914, - -64233.47702645138, - -57869.767634935844, - -53411.42431236228, - -52633.451666930145, - -55690.67142091837, - -63914.40659679198, - -76084.93340015106, - -90685.9638871108, - -103318.94939326902, - -114194.58402094596, - -118266.49426139292, - -115355.3831447381, - -106266.50772676132, - -91442.5698248248, - -72180.37638079088, - -53367.35776050462, - -35226.12934596816, - -18678.89589900397, - -7444.2207980374205, - 1656.8168284676974, - 8605.86170489576, - 13537.172985351426, - 18989.36214109534, - 23089.757131988405, - 26434.965992354893, - 29267.785228677265, - 28942.202224198016, - 26206.657879338276, - 21060.904192631882, - 14147.15565114076, - 5847.2778191606885, - -594.3394452901767, - -5615.2651586617985, - -9076.91193835681, - -9385.934185067645, - -8740.364939774665, - -7753.468613470339, - -7162.523161897597, - -7985.200034314741, - -10143.902155017862, - -13240.795243326535, - -16027.372607190355, - -17819.706100165808, - -17929.49203198635, - -15826.520241584014, - -12007.715498624188, - -7726.662438305714, - -3849.250402307893, - -908.582546391482, - -123.62982107459149, - -782.4240287835731, - -1733.4080804185141, - -2436.173658254096, - -1842.902615930321, - 595.0349888294811, - 4348.568047083188, - 9010.621406818444, - 12487.591824003252, - 14333.318528051479, - 14344.630873264954, - 12314.027370411057, - 10268.492874317897, - 10614.138887535837, - 15677.127411461845, - 27776.384505935268, - 47111.280083285405, - 75214.11452637814, - 105784.19402988718, - 138997.43653481614, - 171623.27929785743, - 192690.02637190212 - ], - "flow:J9:branch80_seg0": [ - 31.439279906218026, - 34.47902631024528, - 35.544470231703535, - 34.63922461517638, - 32.18310638746275, - 28.567208311916847, - 24.247889267119646, - 19.856901460892047, - 15.930528835859125, - 12.287812171145438, - 9.208790605369815, - 6.531900637457148, - 3.8371873285921665, - 1.2993080045338772, - -1.3977596680859394, - -4.125941687487132, - -6.591160267187311, - -8.958407819766215, - -10.699066375158793, - -12.002364610289808, - -12.851933793368497, - -13.254835046125077, - -13.48981255557199, - -13.59527171101844, - -13.65905924298823, - -13.666426648732415, - -13.516611091313914, - -13.113777802702943, - -12.42368145587796, - -11.464650536268476, - -10.400163587559648, - -9.518223622030243, - -9.074844102826699, - -9.317070516005213, - -10.40114796751753, - -12.21846964303662, - -14.528755706063809, - -16.87330349128914, - -18.91585200250624, - -20.019319551925218, - -20.08417532440375, - -18.933794909797637, - -16.74643619618259, - -13.727654606486313, - -10.523219249636382, - -7.252788104160629, - -4.353803367242014, - -2.1354336624359913, - -0.3083536080727434, - 0.9550119478186246, - 1.9669049101231713, - 2.8652894830513356, - 3.6188070611024705, - 4.326521792009125, - 4.831189892886689, - 4.974692069197666, - 4.717891277903254, - 4.001349238195579, - 2.9090295688911874, - 1.6116291143381818, - 0.385555789560167, - -0.6614432047398409, - -1.3259379608552426, - -1.57704383360575, - -1.569716284605738, - -1.394773340226795, - -1.2602430299042406, - -1.314171966874521, - -1.5892728798955846, - -2.0610251930542054, - -2.556784423804282, - -2.953970122999078, - -3.0816956745035817, - -2.863183330169377, - -2.334298915996225, - -1.6454816735628661, - -0.9267777831813607, - -0.36923233090234997, - -0.1001385150100517, - -0.0788579258922589, - -0.22342075762469174, - -0.38045150387002175, - -0.3668124310442965, - -0.07711601708157957, - 0.48263464100785813, - 1.2144407500804224, - 1.8912810337554171, - 2.3642914368179353, - 2.474806661076667, - 2.249367774449483, - 1.9045012530525651, - 1.7858374551837677, - 2.307467350577523, - 3.900134874974058, - 6.710346932217331, - 10.970024515611444, - 15.958824050271065, - 21.67358890955129, - 27.151643211763062, - 31.439279906218026 - ], - "pressure:J9:branch80_seg0": [ - 192690.02637190212, - 204917.845099224, - 208142.87710770886, - 197611.9126441905, - 179152.4375647104, - 156320.043420518, - 131334.51940489493, - 103469.34627425164, - 83425.92691076368, - 64206.7678361875, - 45701.24385854845, - 32213.322170503463, - 15916.542159600482, - 1096.988751399725, - -13853.574756537391, - -30615.217103695224, - -43998.70475725305, - -56817.44757279587, - -66223.6829384844, - -72043.10148459855, - -76327.0611389431, - -77979.3118438909, - -78752.391818223, - -79379.3204048116, - -79584.896579099, - -79434.83701451115, - -78106.34731926424, - -75016.04383440442, - -70163.05593412914, - -64233.47702645138, - -57869.767634935844, - -53411.42431236228, - -52633.451666930145, - -55690.67142091837, - -63914.40659679198, - -76084.93340015106, - -90685.9638871108, - -103318.94939326902, - -114194.58402094596, - -118266.49426139292, - -115355.3831447381, - -106266.50772676132, - -91442.5698248248, - -72180.37638079088, - -53367.35776050462, - -35226.12934596816, - -18678.89589900397, - -7444.2207980374205, - 1656.8168284676974, - 8605.86170489576, - 13537.172985351426, - 18989.36214109534, - 23089.757131988405, - 26434.965992354893, - 29267.785228677265, - 28942.202224198016, - 26206.657879338276, - 21060.904192631882, - 14147.15565114076, - 5847.2778191606885, - -594.3394452901767, - -5615.2651586617985, - -9076.91193835681, - -9385.934185067645, - -8740.364939774665, - -7753.468613470339, - -7162.523161897597, - -7985.200034314741, - -10143.902155017862, - -13240.795243326535, - -16027.372607190355, - -17819.706100165808, - -17929.49203198635, - -15826.520241584014, - -12007.715498624188, - -7726.662438305714, - -3849.250402307893, - -908.582546391482, - -123.62982107459149, - -782.4240287835731, - -1733.4080804185141, - -2436.173658254096, - -1842.902615930321, - 595.0349888294811, - 4348.568047083188, - 9010.621406818444, - 12487.591824003252, - 14333.318528051479, - 14344.630873264954, - 12314.027370411057, - 10268.492874317897, - 10614.138887535837, - 15677.127411461845, - 27776.384505935268, - 47111.280083285405, - 75214.11452637814, - 105784.19402988718, - 138997.43653481614, - 171623.27929785743, - 192690.02637190212 - ], - "flow:J9:branch94_seg0": [ - 79.19260942658329, - 90.60933092610735, - 97.59052972438066, - 99.6291850873845, - 96.85999009983074, - 89.95695569578272, - 80.03361555706245, - 68.66192369776621, - 57.14262207420881, - 46.063607789452035, - 36.137226917134136, - 27.244102251997965, - 18.936784503762095, - 11.10458267199835, - 3.2101107416820827, - -4.6849431531234345, - -12.296897276629283, - -19.535274312737197, - -25.646013147927153, - -30.622702739649114, - -34.24535258641155, - -36.599875804659796, - -38.08381695618723, - -38.93047673510771, - -39.44370205010439, - -39.69870646733278, - -39.60022162097251, - -38.95258206235527, - -37.597066217259844, - -35.47412407873409, - -32.835215967729994, - -30.204375180717346, - -28.22953744044789, - -27.644943070411546, - -28.9985275263962, - -32.404725904114976, - -37.56802211894239, - -43.66964859291562, - -49.71722352895564, - -54.339206085119855, - -56.7075012845611, - -56.07904423965358, - -52.43436904329898, - -46.093615819680366, - -38.13149805524862, - -29.246984429979044, - -20.645038205175307, - -13.086288085311168, - -6.6770113651238985, - -1.741304884903409, - 2.2026570517462964, - 5.40625342997278, - 8.091698147588422, - 10.484056716527716, - 12.377185100928983, - 13.529541163560703, - 13.704718236657387, - 12.692246972091569, - 10.541273863482935, - 7.539896836752351, - 4.205126068105961, - 0.9934681752518932, - -1.5493015785422897, - -3.1747148837962436, - -3.9309124325538023, - -4.0061633955520435, - -3.831325082458508, - -3.8178858586801856, - -4.227416965306769, - -5.147029224441012, - -6.356673867968413, - -7.565524862532894, - -8.33564922195144, - -8.378408051157455, - -7.593030336963515, - -6.15501441099632, - -4.346913481284573, - -2.6377030507647135, - -1.3979229744686417, - -0.7646449049594259, - -0.701355674462566, - -0.9219211744644575, - -1.0167208032332617, - -0.6311437538040363, - 0.4070622254442819, - 2.0222485338355995, - 3.847955906787041, - 5.462191418473768, - 6.40441058827731, - 6.5175751530794495, - 6.025843034533629, - 5.569840554348218, - 6.105710642772772, - 8.747497827940677, - 14.295079922098276, - 23.416075958317318, - 35.41537910947175, - 50.03155314677658, - 65.236825550878, - 79.19260942658329 - ], - "pressure:J9:branch94_seg0": [ - 192690.02637190212, - 204917.845099224, - 208142.87710770886, - 197611.9126441905, - 179152.4375647104, - 156320.043420518, - 131334.51940489493, - 103469.34627425164, - 83425.92691076368, - 64206.7678361875, - 45701.24385854845, - 32213.322170503463, - 15916.542159600482, - 1096.988751399725, - -13853.574756537391, - -30615.217103695224, - -43998.70475725305, - -56817.44757279587, - -66223.6829384844, - -72043.10148459855, - -76327.0611389431, - -77979.3118438909, - -78752.391818223, - -79379.3204048116, - -79584.896579099, - -79434.83701451115, - -78106.34731926424, - -75016.04383440442, - -70163.05593412914, - -64233.47702645138, - -57869.767634935844, - -53411.42431236228, - -52633.451666930145, - -55690.67142091837, - -63914.40659679198, - -76084.93340015106, - -90685.9638871108, - -103318.94939326902, - -114194.58402094596, - -118266.49426139292, - -115355.3831447381, - -106266.50772676132, - -91442.5698248248, - -72180.37638079088, - -53367.35776050462, - -35226.12934596816, - -18678.89589900397, - -7444.2207980374205, - 1656.8168284676974, - 8605.86170489576, - 13537.172985351426, - 18989.36214109534, - 23089.757131988405, - 26434.965992354893, - 29267.785228677265, - 28942.202224198016, - 26206.657879338276, - 21060.904192631882, - 14147.15565114076, - 5847.2778191606885, - -594.3394452901767, - -5615.2651586617985, - -9076.91193835681, - -9385.934185067645, - -8740.364939774665, - -7753.468613470339, - -7162.523161897597, - -7985.200034314741, - -10143.902155017862, - -13240.795243326535, - -16027.372607190355, - -17819.706100165808, - -17929.49203198635, - -15826.520241584014, - -12007.715498624188, - -7726.662438305714, - -3849.250402307893, - -908.582546391482, - -123.62982107459149, - -782.4240287835731, - -1733.4080804185141, - -2436.173658254096, - -1842.902615930321, - 595.0349888294811, - 4348.568047083188, - 9010.621406818444, - 12487.591824003252, - 14333.318528051479, - 14344.630873264954, - 12314.027370411057, - 10268.492874317897, - 10614.138887535837, - 15677.127411461845, - 27776.384505935268, - 47111.280083285405, - 75214.11452637814, - 105784.19402988718, - 138997.43653481614, - 171623.27929785743, - 192690.02637190212 - ], - "flow:branch13_seg0:J10": [ - 65.65627582151527, - 73.47569774919049, - 77.2905787805759, - 76.95391942383108, - 72.95503934545681, - 66.06725319877303, - 57.278343853291474, - 47.802135199421976, - 38.949344361889096, - 30.576768005650447, - 23.381152978848704, - 17.047630362542435, - 10.998115496537265, - 5.277167196280765, - -0.6705346582757844, - -6.629630931959339, - -12.380851622035939, - -17.67759024400528, - -21.986526931969426, - -25.328386270777866, - -27.570788198364394, - -28.869840448569246, - -29.602084039123472, - -29.966078542570585, - -30.179245997391366, - -30.251301256967782, - -30.032500293199764, - -29.34392862118547, - -28.044764944153293, - -26.16360316313923, - -23.92390828329175, - -21.898976190873825, - -20.591886399691063, - -20.599375481850583, - -22.29389259319963, - -25.653789758297115, - -30.25557544124017, - -35.336018309201904, - -40.01068860069247, - -43.13907537680462, - -44.16434294252748, - -42.66392846335597, - -38.70798476950846, - -32.85081738403682, - -26.04121970719276, - -18.835735787074015, - -12.274652885622254, - -6.821259408992734, - -2.391144491713076, - 0.8450991844958279, - 3.384866529196129, - 5.519834283744672, - 7.289336340792972, - 8.948980329609771, - 10.21158478831547, - 10.79756254736002, - 10.574820366760715, - 9.372435263516211, - 7.307720053252359, - 4.659960584066811, - 1.96663581120791, - -0.4785670751548543, - -2.2314549652389144, - -3.1501010001406695, - -3.390783119683291, - -3.175141664050055, - -2.89628159139679, - -2.8940400663348784, - -3.335537195684015, - -4.206412532233208, - -5.255209502515904, - -6.199890702166622, - -6.663125311148412, - -6.4441768242971325, - -5.547317272986547, - -4.181145424556586, - -2.6503707477829055, - -1.324925612517218, - -0.5361127207455262, - -0.26507407509158615, - -0.4303776759406294, - -0.7311413683634217, - -0.7989878685040546, - -0.36598858910518645, - 0.6412141405679155, - 2.0911560158797426, - 3.5822615732313556, - 4.77002540786536, - 5.292639242309739, - 5.085258957098637, - 4.469459657115026, - 4.0753901365847485, - 4.775478040666483, - 7.447264020131336, - 12.741674501401357, - 20.93163752425697, - 31.25324846021737, - 43.38408800174226, - 55.4202986472589, - 65.65627582151527 - ], - "pressure:branch13_seg0:J10": [ - 184456.9865506136, - 198963.2275607149, - 204642.15359777075, - 196925.58453574943, - 181081.42040495833, - 160225.3758004603, - 136562.66079216407, - 109538.86311631388, - 88448.69344510249, - 68965.98688450937, - 50357.94165541766, - 35808.46521692216, - 20025.256429556488, - 4949.907455619304, - -10061.947158501058, - -25954.71869329019, - -40494.9716508452, - -53410.63379011456, - -63013.05459240887, - -69792.54165610654, - -74526.86889406286, - -76576.52525295905, - -77715.25398602079, - -78379.00630480735, - -78649.47616307363, - -78663.41327692449, - -77539.94624793621, - -74895.39600608703, - -70501.75264919263, - -65040.1642717734, - -58816.0102809609, - -54171.34318169163, - -52629.395905235455, - -54559.97667392165, - -61470.11494419953, - -72496.00815863561, - -86019.80802128401, - -99091.99549163865, - -110172.69507890721, - -115687.43475295178, - -114471.6131696808, - -107113.02444589564, - -93493.96078914162, - -75339.27986015934, - -57303.55182038604, - -39013.351793033966, - -22126.469517623893, - -10452.970396677149, - -588.9993757072253, - 6705.31923122407, - 11812.120519773984, - 17612.28771207582, - 21602.53372866529, - 25096.840628593865, - 28245.805742460696, - 28456.90398367617, - 26408.215216999994, - 22025.653358277224, - 15661.672469103496, - 7915.055036584265, - 1156.8908208789962, - -4151.390493009158, - -7953.546612827675, - -9035.276852431016, - -8715.459218650132, - -7859.0064229762775, - -7209.8022362773745, - -7759.195994667608, - -9635.788149257898, - -12508.566702992774, - -15212.044298163886, - -17180.65545684084, - -17681.09065900062, - -15980.392572406603, - -12652.313622861127, - -8588.821394685032, - -4828.304236272316, - -1624.196496497532, - -528.4700763230047, - -806.8288337501895, - -1510.006150122177, - -2251.1030049213277, - -1913.3082086041027, - 58.44818502223054, - 3437.424437662351, - 7749.3365013219045, - 11437.758646345237, - 13636.175693919467, - 14077.518853945543, - 12538.188536817092, - 10587.0970239786, - 10477.947199353532, - 14531.247982532812, - 24914.87681865172, - 42673.42541836858, - 68823.67982025877, - 97821.49705699064, - 129695.4302714788, - 163067.02933765246, - 184456.9865506136 - ], - "flow:J10:branch14_seg0": [ - 33.20215173384943, - 37.16142137193652, - 39.092237830463276, - 38.93050822748928, - 36.91062893618448, - 33.43315377163337, - 28.996910479159883, - 24.192070714907246, - 19.72842225195737, - 15.496816585775976, - 11.841121280936084, - 8.641878370372886, - 5.576742043282914, - 2.6790395351133407, - -0.3207394618183993, - -3.3484704824747182, - -6.25946993787739, - -8.925685900791617, - -11.119041133886551, - -12.811932044088746, - -13.94470916354618, - -14.60859175589679, - -14.97851949389219, - -15.163960497549656, - -15.273627817241259, - -15.30860790046599, - -15.197550242621384, - -14.849009310942787, - -14.191182592789078, - -13.2405779896088, - -12.108724440915108, - -11.085666502578084, - -10.426377216182049, - -10.429845213984487, - -11.284912599926113, - -12.979025446016307, - -15.309630036199087, - -17.870821561440547, - -20.232473930575253, - -21.818234935682113, - -22.335049026881524, - -21.580801357692103, - -19.58504767545978, - -16.63313041645932, - -13.184052594075151, - -9.537674297186486, - -6.2266512770469244, - -3.459336575737255, - -1.2199275487278258, - 0.41973714926709255, - 1.7116689567730605, - 2.789548501494189, - 3.6845839371187745, - 4.525784124698059, - 5.164166204625245, - 5.45967581714026, - 5.34720095729007, - 4.739521462385444, - 3.698611687836978, - 2.3575374344204243, - 0.9996454378901081, - -0.2323950239116606, - -1.1255875653825618, - -1.5903120313450563, - -1.7122546709096975, - -1.606395481314948, - -1.466625732337896, - -1.465431544565945, - -1.688250090374809, - -2.1268743383708753, - -2.6572203855983942, - -3.1354406735663294, - -3.3681474957137487, - -3.2587952252653176, - -2.8060495916373673, - -2.1160030601598754, - -1.3421200625709744, - -0.672737725565075, - -0.27420222181049453, - -0.13589629984216675, - -0.2186275542740623, - -0.36911900881024107, - -0.40262322762685565, - -0.18341574462469515, - 0.3243322854643101, - 1.057705550381735, - 1.80958132860917, - 2.407312291069359, - 2.6751733564133153, - 2.5719084476088936, - 2.2622923877961294, - 2.064879324072364, - 2.4200386097350934, - 3.7711299115444636, - 6.448052946442275, - 10.580115069845107, - 15.801130429226179, - 21.950786919124873, - 28.018309214865873, - 33.20215173384943 - ], - "pressure:J10:branch14_seg0": [ - 184456.9865506136, - 198963.2275607149, - 204642.15359777075, - 196925.58453574943, - 181081.42040495833, - 160225.3758004603, - 136562.66079216407, - 109538.86311631388, - 88448.69344510249, - 68965.98688450937, - 50357.94165541766, - 35808.46521692216, - 20025.256429556488, - 4949.907455619304, - -10061.947158501058, - -25954.71869329019, - -40494.9716508452, - -53410.63379011456, - -63013.05459240887, - -69792.54165610654, - -74526.86889406286, - -76576.52525295905, - -77715.25398602079, - -78379.00630480735, - -78649.47616307363, - -78663.41327692449, - -77539.94624793621, - -74895.39600608703, - -70501.75264919263, - -65040.1642717734, - -58816.0102809609, - -54171.34318169163, - -52629.395905235455, - -54559.97667392165, - -61470.11494419953, - -72496.00815863561, - -86019.80802128401, - -99091.99549163865, - -110172.69507890721, - -115687.43475295178, - -114471.6131696808, - -107113.02444589564, - -93493.96078914162, - -75339.27986015934, - -57303.55182038604, - -39013.351793033966, - -22126.469517623893, - -10452.970396677149, - -588.9993757072253, - 6705.31923122407, - 11812.120519773984, - 17612.28771207582, - 21602.53372866529, - 25096.840628593865, - 28245.805742460696, - 28456.90398367617, - 26408.215216999994, - 22025.653358277224, - 15661.672469103496, - 7915.055036584265, - 1156.8908208789962, - -4151.390493009158, - -7953.546612827675, - -9035.276852431016, - -8715.459218650132, - -7859.0064229762775, - -7209.8022362773745, - -7759.195994667608, - -9635.788149257898, - -12508.566702992774, - -15212.044298163886, - -17180.65545684084, - -17681.09065900062, - -15980.392572406603, - -12652.313622861127, - -8588.821394685032, - -4828.304236272316, - -1624.196496497532, - -528.4700763230047, - -806.8288337501895, - -1510.006150122177, - -2251.1030049213277, - -1913.3082086041027, - 58.44818502223054, - 3437.424437662351, - 7749.3365013219045, - 11437.758646345237, - 13636.175693919467, - 14077.518853945543, - 12538.188536817092, - 10587.0970239786, - 10477.947199353532, - 14531.247982532812, - 24914.87681865172, - 42673.42541836858, - 68823.67982025877, - 97821.49705699064, - 129695.4302714788, - 163067.02933765246, - 184456.9865506136 - ], - "flow:J10:branch106_seg0": [ - 32.45412408766575, - 36.31427637725358, - 38.19834095011235, - 38.02341119634053, - 36.04441040927169, - 32.63409942713882, - 28.281433374130895, - 23.610064484513664, - 19.220922109931553, - 15.07995141987427, - 11.540031697911598, - 8.405751992170558, - 5.421373453254594, - 2.5981276611657793, - -0.3497951964582558, - -3.28116044948197, - -6.121381684157966, - -8.751904343212384, - -10.867485798081523, - -12.516454226690277, - -13.626079034820574, - -14.261248692671801, - -14.623564545232512, - -14.80211804502035, - -14.905618180149588, - -14.942693356501039, - -14.834950050578614, - -14.49491931024319, - -13.853582351363945, - -12.923025173530228, - -11.815183842375484, - -10.813309688296068, - -10.165509183507412, - -10.169530267866465, - -11.008979993272453, - -12.674764312281036, - -14.94594540504154, - -17.465196747761855, - -19.77821467011682, - -21.320840441122204, - -21.829293915646147, - -21.083127105663696, - -19.122937094048687, - -16.2176869675776, - -12.857167113117649, - -9.29806148988752, - -6.048001608575314, - -3.36192283325548, - -1.171216942985256, - 0.4253620352287328, - 1.673197572423069, - 2.730285782250483, - 3.6047524036742176, - 4.423196204911727, - 5.04741858369024, - 5.337886730219691, - 5.227619409470589, - 4.632913801130897, - 3.6091083654152656, - 2.302423149646416, - 0.9669903733178545, - -0.24617205124314462, - -1.1058673998562862, - -1.5597889687956241, - -1.6785284487736927, - -1.568746182735204, - -1.4296558590588737, - -1.4286085217688838, - -1.6472871053092257, - -2.079538193862306, - -2.59798911691749, - -3.0644500286003087, - -3.294977815434684, - -3.1853815990318854, - -2.7412676813491488, - -2.065142364396706, - -1.3082506852118947, - -0.65218788695211, - -0.261910498935048, - -0.12917777524941926, - -0.21175012166656645, - -0.3620223595531797, - -0.39636464087719125, - -0.18257284448051547, - 0.3168818551036167, - 1.033450465498001, - 1.772680244622199, - 2.3627131167960056, - 2.6174658858963906, - 2.51335050948973, - 2.2071672693188624, - 2.0105108125123325, - 2.355439430931349, - 3.676134108586742, - 6.293621554959072, - 10.351522454411977, - 15.4521180309912, - 21.43330108261717, - 27.40198943239307, - 32.45412408766575 - ], - "pressure:J10:branch106_seg0": [ - 184456.9865506136, - 198963.2275607149, - 204642.15359777075, - 196925.58453574943, - 181081.42040495833, - 160225.3758004603, - 136562.66079216407, - 109538.86311631388, - 88448.69344510249, - 68965.98688450937, - 50357.94165541766, - 35808.46521692216, - 20025.256429556488, - 4949.907455619304, - -10061.947158501058, - -25954.71869329019, - -40494.9716508452, - -53410.63379011456, - -63013.05459240887, - -69792.54165610654, - -74526.86889406286, - -76576.52525295905, - -77715.25398602079, - -78379.00630480735, - -78649.47616307363, - -78663.41327692449, - -77539.94624793621, - -74895.39600608703, - -70501.75264919263, - -65040.1642717734, - -58816.0102809609, - -54171.34318169163, - -52629.395905235455, - -54559.97667392165, - -61470.11494419953, - -72496.00815863561, - -86019.80802128401, - -99091.99549163865, - -110172.69507890721, - -115687.43475295178, - -114471.6131696808, - -107113.02444589564, - -93493.96078914162, - -75339.27986015934, - -57303.55182038604, - -39013.351793033966, - -22126.469517623893, - -10452.970396677149, - -588.9993757072253, - 6705.31923122407, - 11812.120519773984, - 17612.28771207582, - 21602.53372866529, - 25096.840628593865, - 28245.805742460696, - 28456.90398367617, - 26408.215216999994, - 22025.653358277224, - 15661.672469103496, - 7915.055036584265, - 1156.8908208789962, - -4151.390493009158, - -7953.546612827675, - -9035.276852431016, - -8715.459218650132, - -7859.0064229762775, - -7209.8022362773745, - -7759.195994667608, - -9635.788149257898, - -12508.566702992774, - -15212.044298163886, - -17180.65545684084, - -17681.09065900062, - -15980.392572406603, - -12652.313622861127, - -8588.821394685032, - -4828.304236272316, - -1624.196496497532, - -528.4700763230047, - -806.8288337501895, - -1510.006150122177, - -2251.1030049213277, - -1913.3082086041027, - 58.44818502223054, - 3437.424437662351, - 7749.3365013219045, - 11437.758646345237, - 13636.175693919467, - 14077.518853945543, - 12538.188536817092, - 10587.0970239786, - 10477.947199353532, - 14531.247982532812, - 24914.87681865172, - 42673.42541836858, - 68823.67982025877, - 97821.49705699064, - 129695.4302714788, - 163067.02933765246, - 184456.9865506136 - ], - "flow:branch15_seg0:J11": [ - 151.57997391137428, - 185.73990603098665, - 215.96839529271713, - 239.56035963440831, - 254.5548979344372, - 260.05011612454405, - 256.35927342945155, - 245.06133879798463, - 227.9053850617156, - 206.82100576464939, - 183.8884881471847, - 159.92826570895818, - 135.7065142666036, - 111.45297218116943, - 86.88459682988017, - 62.312149767031826, - 37.66972891487911, - 13.493137333673872, - -9.300518020521363, - -30.30090063471331, - -48.76273503109055, - -64.41292625670604, - -77.38136977591238, - -87.86884197209531, - -96.31297985689402, - -103.0261155388633, - -108.1137377530778, - -111.50477536425967, - -113.0029381205756, - -112.45691999258752, - -110.00065554412845, - -106.21306856403237, - -102.00598935442882, - -98.7204216047993, - -97.67188398075474, - -99.90865770243148, - -105.81334214439927, - -115.16644090073127, - -126.71880243174351, - -138.64296075601882, - -148.99877486963598, - -155.72731680658845, - -157.43020301400165, - -153.4856168361614, - -144.2666162289926, - -130.48248520379062, - -113.80150405629618, - -95.76944322310217, - -77.5765266902762, - -60.4116876413459, - -44.579235869223915, - -30.203370309149733, - -17.25918679787116, - -5.5220060789412395, - 4.846626862287936, - 13.589689677701077, - 20.290215157566756, - 24.473422484708887, - 25.886005438892525, - 24.640082400023175, - 21.165863429667617, - 16.198647568279043, - 10.777267918417751, - 5.637640803384104, - 1.3933986264442082, - -1.723579723435276, - -3.934415363075352, - -5.678290875588136, - -7.46037074134591, - -9.667583707976693, - -12.36419998044947, - -15.35473808489522, - -18.12442284256782, - -20.101918066534466, - -20.848732809644297, - -20.191021329665695, - -18.276177713922763, - -15.585436450329308, - -12.748262632773205, - -10.270721991818695, - -8.495595294225462, - -7.381395144964283, - -6.567866844583471, - -5.537406011988905, - -3.796844306273431, - -1.1168207045587846, - 2.3758661754998833, - 6.220272411977858, - 9.678725250508156, - 12.213773505569387, - 13.622846066170942, - 14.334146764016065, - 15.493917907659593, - 18.793217611119164, - 26.17868885216017, - 39.38048432896063, - 59.096953127120244, - 85.61136687669764, - 117.29627777448275, - 151.57997391137428 - ], - "pressure:branch15_seg0:J11": [ - 114932.75198396185, - 133224.308433428, - 147203.9865396237, - 154590.5033090977, - 155947.21763314045, - 151768.02210104518, - 142848.07451337087, - 130185.44589563968, - 116512.3808164267, - 101790.33810709858, - 87045.70045656743, - 72898.71921371382, - 58521.79515404704, - 44466.8830429515, - 30164.823087845554, - 15834.376622560427, - 1828.2280937623898, - -11734.85618633243, - -23580.852251044456, - -33901.329143601346, - -42608.577040704244, - -49310.95270098117, - -54663.05041945017, - -58852.29551374581, - -62098.88425535698, - -64612.19761518071, - -66180.7952818618, - -66650.7276771623, - -65877.86477772462, - -63941.784827049734, - -61018.04894554193, - -57982.60134362939, - -55632.73636465029, - -54738.86142257787, - -56212.31639119371, - -60305.65244188746, - -66621.359446826, - -74369.129103396, - -82463.40424750857, - -89043.85374103823, - -93090.49508183681, - -93734.08337281787, - -90436.63013537358, - -83424.52758886707, - -74214.02639752593, - -63103.97502521703, - -51187.78396711801, - -40289.672757794986, - -29957.3043468625, - -20884.932902037017, - -13085.739211141929, - -5764.856945933071, - 495.9184376427337, - 6095.10808330771, - 11008.845860444748, - 14505.542614419528, - 16517.406269571384, - 16819.345010739486, - 15397.229409310487, - 12533.551708227418, - 8988.232959611925, - 5207.043611137182, - 1838.6437803275142, - -654.6850430140585, - -2338.22704372707, - -3303.3415819270795, - -3936.9504737866214, - -4708.811593491187, - -5881.861044061928, - -7546.461481194941, - -9406.95914697584, - -11192.839330825747, - -12492.680180767062, - -12829.01371521332, - -12169.063976724556, - -10690.905869007787, - -8747.393007956902, - -6660.2412064947885, - -5098.410885849227, - -4117.12173001083, - -3608.916668873575, - -3408.119608772346, - -3046.922892723609, - -2130.931988770404, - -492.28248925724245, - 1813.5700692686469, - 4320.683456164829, - 6597.090667647118, - 8144.306074294666, - 8740.218277058775, - 8717.255040393095, - 8860.928965026653, - 10339.375036530193, - 14492.21794361903, - 22457.88382154461, - 35277.72930332869, - 51740.46775508888, - 71763.95851929228, - 94416.48248547022, - 114932.75198396185 - ], - "flow:J11:branch16_seg0": [ - 69.36650091626578, - 86.4061599342277, - 102.24826062699958, - 115.46783724472408, - 124.90868676808917, - 129.89749956155399, - 130.33252409870434, - 126.70181239422575, - 119.7458292300229, - 110.36524976227498, - 99.53351907151651, - 87.83398562941642, - 75.74325295205844, - 63.474994318240896, - 51.0265309684599, - 38.51337466577826, - 25.942007810664045, - 13.54644118927086, - 1.6728284579518116, - -9.424040134895867, - -19.385902323732992, - -28.03927659199011, - -35.35832338851555, - -41.400825515427805, - -46.33726250437146, - -50.31454106017766, - -53.41441280218378, - -55.63706204326758, - -56.91487636689671, - -57.17953962956111, - -56.462835412793, - -54.975523779813194, - -53.09978384474863, - -51.4195808563456, - -50.56293728106401, - -51.08537273969834, - -53.29624692524595, - -57.213302273090065, - -62.40806466377171, - -68.14109212006714, - -73.50941258800292, - -77.5255375702427, - -79.40947934923479, - -78.70131185810105, - -75.36294685451806, - -69.61618597029074, - -62.120752102189414, - -53.561681151436126, - -44.58395902331402, - -35.797237119721856, - -27.482166613001016, - -19.805238233195773, - -12.806551634013355, - -6.431429887547324, - -0.7382297627000041, - 4.170626698619257, - 8.112943392892667, - 10.869129270501034, - 12.289819363350663, - 12.36526818283393, - 11.24214492596172, - 9.22365556558421, - 6.752602644963566, - 4.217794558800315, - 1.9607104411346767, - 0.1595167260296859, - -1.2013704303269637, - -2.269522956083818, - -3.2603844872855765, - -4.368122836390799, - -5.672615262132487, - -7.131734466625862, - -8.551619991383433, - -9.684852439911614, - -10.304679066619059, - -10.282381253780333, - -9.629265150917478, - -8.515892302613521, - -7.204839400811052, - -5.948274996424433, - -4.943134028020116, - -4.231620563605814, - -3.706150956529142, - -3.159232287633291, - -2.3609645299285127, - -1.1647297493761988, - 0.4290638963835972, - 2.259328019683349, - 4.028177690586282, - 5.463660166836144, - 6.412301082493514, - 6.981320017847893, - 7.602034429195748, - 8.990141846804175, - 12.040042670776431, - 17.61192540408233, - 26.22441657030973, - 38.153140249678174, - 52.860344126316214, - 69.36650091626578 - ], - "pressure:J11:branch16_seg0": [ - 114932.75198396185, - 133224.308433428, - 147203.9865396237, - 154590.5033090977, - 155947.21763314045, - 151768.02210104518, - 142848.07451337087, - 130185.44589563968, - 116512.3808164267, - 101790.33810709858, - 87045.70045656743, - 72898.71921371382, - 58521.79515404704, - 44466.8830429515, - 30164.823087845554, - 15834.376622560427, - 1828.2280937623898, - -11734.85618633243, - -23580.852251044456, - -33901.329143601346, - -42608.577040704244, - -49310.95270098117, - -54663.05041945017, - -58852.29551374581, - -62098.88425535698, - -64612.19761518071, - -66180.7952818618, - -66650.7276771623, - -65877.86477772462, - -63941.784827049734, - -61018.04894554193, - -57982.60134362939, - -55632.73636465029, - -54738.86142257787, - -56212.31639119371, - -60305.65244188746, - -66621.359446826, - -74369.129103396, - -82463.40424750857, - -89043.85374103823, - -93090.49508183681, - -93734.08337281787, - -90436.63013537358, - -83424.52758886707, - -74214.02639752593, - -63103.97502521703, - -51187.78396711801, - -40289.672757794986, - -29957.3043468625, - -20884.932902037017, - -13085.739211141929, - -5764.856945933071, - 495.9184376427337, - 6095.10808330771, - 11008.845860444748, - 14505.542614419528, - 16517.406269571384, - 16819.345010739486, - 15397.229409310487, - 12533.551708227418, - 8988.232959611925, - 5207.043611137182, - 1838.6437803275142, - -654.6850430140585, - -2338.22704372707, - -3303.3415819270795, - -3936.9504737866214, - -4708.811593491187, - -5881.861044061928, - -7546.461481194941, - -9406.95914697584, - -11192.839330825747, - -12492.680180767062, - -12829.01371521332, - -12169.063976724556, - -10690.905869007787, - -8747.393007956902, - -6660.2412064947885, - -5098.410885849227, - -4117.12173001083, - -3608.916668873575, - -3408.119608772346, - -3046.922892723609, - -2130.931988770404, - -492.28248925724245, - 1813.5700692686469, - 4320.683456164829, - 6597.090667647118, - 8144.306074294666, - 8740.218277058775, - 8717.255040393095, - 8860.928965026653, - 10339.375036530193, - 14492.21794361903, - 22457.88382154461, - 35277.72930332869, - 51740.46775508888, - 71763.95851929228, - 94416.48248547022, - 114932.75198396185 - ], - "flow:J11:branch24_seg0": [ - 82.21347299510855, - 99.33374609675724, - 113.72013466571775, - 124.09252238968439, - 129.64621116634785, - 130.1526165629959, - 126.02674933075068, - 118.35952640376277, - 108.15955583169615, - 96.45575600236988, - 84.35496907566535, - 72.09428007954457, - 59.9632613145405, - 47.97797786292971, - 35.858065861419796, - 23.798775101254623, - 11.727721104217725, - -0.053303855592715964, - -10.973346478468727, - -20.876860499810242, - -29.376832707362045, - -36.37364966471174, - -42.02304638739676, - -46.46801645667002, - -49.97571735252269, - -52.71157447868178, - -54.69932495089223, - -55.86771332099227, - -56.08806175368265, - -55.27738036302344, - -53.53782013132818, - -51.23754478421702, - -48.90620550968474, - -47.30084074845471, - -47.108946699689525, - -48.82328496273678, - -52.51709521915397, - -57.95313862764177, - -64.31073776797113, - -70.50186863595096, - -75.48936228163356, - -78.20177923634553, - -78.02072366476705, - -74.78430497806244, - -68.90366937447423, - -60.86629923349984, - -51.680751954106775, - -42.20776207166596, - -32.99256766696162, - -24.614450521623326, - -17.097069256222266, - -10.39813207595382, - -4.452635163857596, - 0.9094238086061772, - 5.584856624988012, - 9.419062979082044, - 12.177271764673943, - 13.604293214207859, - 13.596186075541992, - 12.274814217188974, - 9.923718503705452, - 6.9749920026949, - 4.0246652734537784, - 1.4198462445834001, - -0.5673118146906565, - -1.8830964494655322, - -2.733044932748174, - -3.408767919504703, - -4.199986254060185, - -5.299460871585643, - -6.691584718316613, - -8.223003618269264, - -9.572802851184166, - -10.417065626622845, - -10.54405374302539, - -9.908640075885183, - -8.646912563005268, - -7.0695441477159155, - -5.5434232319621, - -4.322446995394363, - -3.552461266205257, - -3.149774581358404, - -2.861715888054433, - -2.378173724355703, - -1.435879776344968, - 0.04790904481738187, - 1.9468022791162918, - 3.9609443922944236, - 5.650547559921868, - 6.750113338733265, - 7.2105449836774405, - 7.35282674616809, - 7.891883478463923, - 9.80307576431506, - 14.138646181384189, - 21.768558924878263, - 32.87253655681057, - 47.45822662702018, - 64.43593364816617, - 82.21347299510855 - ], - "pressure:J11:branch24_seg0": [ - 114932.75198396185, - 133224.308433428, - 147203.9865396237, - 154590.5033090977, - 155947.21763314045, - 151768.02210104518, - 142848.07451337087, - 130185.44589563968, - 116512.3808164267, - 101790.33810709858, - 87045.70045656743, - 72898.71921371382, - 58521.79515404704, - 44466.8830429515, - 30164.823087845554, - 15834.376622560427, - 1828.2280937623898, - -11734.85618633243, - -23580.852251044456, - -33901.329143601346, - -42608.577040704244, - -49310.95270098117, - -54663.05041945017, - -58852.29551374581, - -62098.88425535698, - -64612.19761518071, - -66180.7952818618, - -66650.7276771623, - -65877.86477772462, - -63941.784827049734, - -61018.04894554193, - -57982.60134362939, - -55632.73636465029, - -54738.86142257787, - -56212.31639119371, - -60305.65244188746, - -66621.359446826, - -74369.129103396, - -82463.40424750857, - -89043.85374103823, - -93090.49508183681, - -93734.08337281787, - -90436.63013537358, - -83424.52758886707, - -74214.02639752593, - -63103.97502521703, - -51187.78396711801, - -40289.672757794986, - -29957.3043468625, - -20884.932902037017, - -13085.739211141929, - -5764.856945933071, - 495.9184376427337, - 6095.10808330771, - 11008.845860444748, - 14505.542614419528, - 16517.406269571384, - 16819.345010739486, - 15397.229409310487, - 12533.551708227418, - 8988.232959611925, - 5207.043611137182, - 1838.6437803275142, - -654.6850430140585, - -2338.22704372707, - -3303.3415819270795, - -3936.9504737866214, - -4708.811593491187, - -5881.861044061928, - -7546.461481194941, - -9406.95914697584, - -11192.839330825747, - -12492.680180767062, - -12829.01371521332, - -12169.063976724556, - -10690.905869007787, - -8747.393007956902, - -6660.2412064947885, - -5098.410885849227, - -4117.12173001083, - -3608.916668873575, - -3408.119608772346, - -3046.922892723609, - -2130.931988770404, - -492.28248925724245, - 1813.5700692686469, - 4320.683456164829, - 6597.090667647118, - 8144.306074294666, - 8740.218277058775, - 8717.255040393095, - 8860.928965026653, - 10339.375036530193, - 14492.21794361903, - 22457.88382154461, - 35277.72930332869, - 51740.46775508888, - 71763.95851929228, - 94416.48248547022, - 114932.75198396185 - ], - "flow:branch16_seg0:J12": [ - 69.29795240862737, - 86.35330127622925, - 102.21225581290881, - 115.45486635877654, - 124.92082229667963, - 129.92677045674284, - 130.36880216896606, - 126.76015317459309, - 119.79642970088489, - 110.4083221379406, - 99.58625044635268, - 87.87887110371754, - 75.78873221140461, - 63.52187722924488, - 51.06559515418901, - 38.55981661328538, - 25.98876438622468, - 13.580417543499546, - 1.7082261947533752, - -9.39387310909179, - -19.363540420130462, - -28.019774551330052, - -35.3443773900871, - -41.38982069046707, - -46.327992339750836, - -50.30833413421773, - -53.41149677139833, - -55.63814381889848, - -56.920991470982415, - -57.18881392755887, - -56.47438566760776, - -54.98619016613576, - -53.10444649322587, - -51.41767118993494, - -50.5528799863193, - -51.06840376975795, - -53.26887878648665, - -57.18735631875419, - -62.3849340379153, - -68.1225766030314, - -73.50419126830205, - -77.53140798523201, - -79.42654552113905, - -78.72543041608849, - -75.39711852660062, - -69.65586298841639, - -62.157635465193565, - -53.598749012882564, - -44.61489709430414, - -35.82498834307985, - -27.50841001008153, - -19.828513044128773, - -12.826362939833231, - -6.4482884637799875, - -0.7530697541281179, - 4.161665827320793, - 8.110436992803157, - 10.872794400695327, - 12.297225447032597, - 12.379344474583682, - 11.255401003814809, - 9.23227335377022, - 6.763186524267253, - 4.224833597045438, - 1.9635148502224145, - 0.16182887980401398, - -1.1992028272566875, - -2.2666362267697466, - -3.255844714077729, - -4.362623747309532, - -5.666479337037953, - -7.12608333900346, - -8.549012339447707, - -9.685387748914357, - -10.308808894254282, - -10.289165754033846, - -9.636919531694472, - -8.52310298066428, - -7.209403065009956, - -5.950163187744348, - -4.943679091410942, - -4.2322906802182745, - -3.708180301989013, - -3.163924881902836, - -2.3675110237889623, - -1.1740052676244086, - 0.4206851019515804, - 2.254920600822186, - 4.024748832110126, - 5.46279765997847, - 6.412905246442745, - 6.979503466792477, - 7.593414803326023, - 8.970518198681162, - 12.005727259483207, - 17.565482775064215, - 26.16419213465115, - 38.07498783461256, - 52.78437197441739, - 69.29795240862737 - ], - "pressure:branch16_seg0:J12": [ - 78885.14505035791, - 96085.5811631656, - 111456.43617989562, - 123314.69321130206, - 130921.58181355725, - 133840.63050986774, - 132184.94840456333, - 126598.73463791197, - 118125.84735512413, - 107613.60606746264, - 96015.10595024136, - 83827.62743955404, - 71332.51892314642, - 58769.21048830592, - 45989.966527601406, - 33222.9674078161, - 20447.9171506656, - 7856.494580602647, - -3871.5275521093918, - -14702.300979772743, - -24319.051625002463, - -32458.489969460257, - -39289.52928458405, - -44873.99268794662, - -49394.16296200275, - -53023.99987533684, - -55768.43796412225, - -57595.71124411061, - -58424.52120496869, - -58210.27117080994, - -57020.80314137102, - -55201.177171287585, - -53230.105419420164, - -51728.12102247162, - -51383.049594917386, - -52689.795767205396, - -55771.02792373927, - -60525.11676286982, - -66337.58757881242, - -72226.96672869573, - -77301.28057350207, - -80567.31831241345, - -81325.65504865885, - -79232.8133997475, - -74664.89382528828, - -67798.41830040932, - -59350.552111182646, - -50349.18360746139, - -41117.75361225299, - -32314.39022088464, - -24176.851747262615, - -16612.51464868027, - -9808.727712968384, - -3650.783740146696, - 1843.5701794646282, - 6424.37543152572, - 9924.471979806283, - 12132.433436449883, - 12918.87077189747, - 12357.307188992056, - 10693.227410024156, - 8284.371354301047, - 5643.884624944157, - 3122.0570452020293, - 997.6451291282583, - -605.2680103472616, - -1796.3605542344803, - -2790.79640579214, - -3811.940970077701, - -5036.289962442875, - -6452.10859317038, - -7972.8038664802625, - -9368.407075427425, - -10323.77450792143, - -10663.355956066333, - -10324.38916096267, - -9392.879491851381, - -8067.019155539254, - -6699.04773100542, - -5509.849819776263, - -4616.751073340646, - -4023.594037545277, - -3541.6893679399273, - -2922.1066890361913, - -1944.9543393129204, - -516.2242170746418, - 1275.3405579293355, - 3203.762387079405, - 4908.564068017254, - 6155.70271319722, - 6884.797970318826, - 7351.279439872608, - 8144.04078999479, - 10114.56313488483, - 14198.152614444083, - 21333.63951159651, - 31591.010845036402, - 45156.27058245797, - 61592.13513781729, - 78885.14505035791 - ], - "flow:J12:branch17_seg0": [ - 57.19795605159472, - 71.28834417559348, - 84.39475322105018, - 95.34524587635234, - 103.17900717953081, - 107.3290362211422, - 107.70770251471276, - 104.74161661831086, - 98.99773539744031, - 91.24759892448039, - 82.31312986182436, - 72.64277108525584, - 62.655430967691714, - 52.521899995358574, - 42.229859773857385, - 31.898413697137634, - 21.51270260643388, - 11.258333043588918, - 1.4476525912874618, - -7.727825606268003, - -15.969031977721798, - -23.125015613581706, - -29.180966295430153, - -34.17964609742301, - -38.26280336728835, - -41.554238981297914, - -44.1207761193267, - -45.96309188165219, - -47.025901988878395, - -47.249910866973764, - -46.662318955729525, - -45.43448917399458, - -43.87986388708981, - -42.48507000313602, - -41.76738515228239, - -42.18883462743818, - -44.00102823369802, - -47.23365706475837, - -51.5245369873385, - -56.26331040407902, - -60.711556677007884, - -64.04295354874796, - -65.61514885179699, - -65.04328242092342, - -62.30081701974378, - -57.56450073930698, - -51.374259759557205, - -44.30575004140463, - -36.8844959954663, - -29.62202475106097, - -22.749967965990372, - -16.4038346629594, - -10.61682571503627, - -5.345722612487539, - -0.6390447511431067, - 3.423881624980624, - 6.689279065295989, - 8.974986359845708, - 10.155603102808165, - 10.22774053817177, - 9.302492784425029, - 7.6328292491209835, - 5.594740098737167, - 3.4977003516969902, - 1.628368603200025, - 0.138800279250909, - -0.9867239110269577, - -1.869239461487078, - -2.68645525539245, - -3.6003584217734264, - -4.677022945624005, - -5.8824915743248685, - -7.058401421350547, - -7.998320863755933, - -8.515038302405634, - -8.500742301011936, - -7.963534175173085, - -7.044673371765804, - -5.959590512044689, - -4.918887529578984, - -4.08678107324215, - -3.498361157472635, - -3.065057507026946, - -2.615748915835595, - -1.9586449776501142, - -0.9739685406478621, - 0.3423995333789698, - 1.8575940377791014, - 3.319839580264995, - 4.50891953027788, - 5.2952547954475, - 5.763987983795598, - 6.270197914992107, - 7.404553539907318, - 9.905893891447139, - 14.490596747887096, - 21.58518379185307, - 31.414565843791856, - 43.55810740579931, - 57.19795605159472 - ], - "pressure:J12:branch17_seg0": [ - 78885.14505035791, - 96085.5811631656, - 111456.43617989562, - 123314.69321130206, - 130921.58181355725, - 133840.63050986774, - 132184.94840456333, - 126598.73463791197, - 118125.84735512413, - 107613.60606746264, - 96015.10595024136, - 83827.62743955404, - 71332.51892314642, - 58769.21048830592, - 45989.966527601406, - 33222.9674078161, - 20447.9171506656, - 7856.494580602647, - -3871.5275521093918, - -14702.300979772743, - -24319.051625002463, - -32458.489969460257, - -39289.52928458405, - -44873.99268794662, - -49394.16296200275, - -53023.99987533684, - -55768.43796412225, - -57595.71124411061, - -58424.52120496869, - -58210.27117080994, - -57020.80314137102, - -55201.177171287585, - -53230.105419420164, - -51728.12102247162, - -51383.049594917386, - -52689.795767205396, - -55771.02792373927, - -60525.11676286982, - -66337.58757881242, - -72226.96672869573, - -77301.28057350207, - -80567.31831241345, - -81325.65504865885, - -79232.8133997475, - -74664.89382528828, - -67798.41830040932, - -59350.552111182646, - -50349.18360746139, - -41117.75361225299, - -32314.39022088464, - -24176.851747262615, - -16612.51464868027, - -9808.727712968384, - -3650.783740146696, - 1843.5701794646282, - 6424.37543152572, - 9924.471979806283, - 12132.433436449883, - 12918.87077189747, - 12357.307188992056, - 10693.227410024156, - 8284.371354301047, - 5643.884624944157, - 3122.0570452020293, - 997.6451291282583, - -605.2680103472616, - -1796.3605542344803, - -2790.79640579214, - -3811.940970077701, - -5036.289962442875, - -6452.10859317038, - -7972.8038664802625, - -9368.407075427425, - -10323.77450792143, - -10663.355956066333, - -10324.38916096267, - -9392.879491851381, - -8067.019155539254, - -6699.04773100542, - -5509.849819776263, - -4616.751073340646, - -4023.594037545277, - -3541.6893679399273, - -2922.1066890361913, - -1944.9543393129204, - -516.2242170746418, - 1275.3405579293355, - 3203.762387079405, - 4908.564068017254, - 6155.70271319722, - 6884.797970318826, - 7351.279439872608, - 8144.04078999479, - 10114.56313488483, - 14198.152614444083, - 21333.63951159651, - 31591.010845036402, - 45156.27058245797, - 61592.13513781729, - 78885.14505035791 - ], - "flow:J12:branch116_seg0": [ - 12.09999635703258, - 15.064957100636235, - 17.817502591858887, - 20.10962048242206, - 21.741815117148313, - 22.597734235598097, - 22.661099654253416, - 22.018536556280644, - 20.798694303448947, - 19.160723213458546, - 17.27312058452737, - 15.236100018458693, - 13.13330124371075, - 10.999977233890613, - 8.835735380335707, - 6.6614029161481465, - 4.4760617797927065, - 2.322084499911051, - 0.2605736034638459, - -1.6660475028222168, - -3.394508442407319, - -4.894758937746356, - -6.163411094661481, - -7.210174593040686, - -8.06518897246378, - -8.754095152920343, - -9.290720652068527, - -9.675051937248785, - -9.895089482103293, - -9.938903060588228, - -9.81206671187741, - -9.551700992138962, - -9.224582606136451, - -8.932601186795145, - -8.785494834037378, - -8.879569142319335, - -9.267850552790556, - -9.953699253996053, - -10.860397050576912, - -11.85926619895014, - -12.792634591295545, - -13.48845443648237, - -13.811396669344246, - -13.682147995165026, - -13.096301506856058, - -12.09136224910992, - -10.783375705635839, - -9.292998971478282, - -7.730401098838216, - -6.202963592019014, - -4.758442044091218, - -3.424678381169482, - -2.209537224796992, - -1.1025658512923553, - -0.11402500298495168, - 0.7377842023401405, - 1.4211579275072346, - 1.897808040849647, - 2.141622344224313, - 2.1516039364119663, - 1.9529082193894869, - 1.5994441046489356, - 1.1684464255300628, - 0.7271332453483438, - 0.3351462470222243, - 0.023028600553338212, - -0.21247891622942686, - -0.3973967652825229, - -0.5693894586853774, - -0.7622653255361546, - -0.9894563914143331, - -1.2435917646786443, - -1.490610918097384, - -1.6870668851583819, - -1.793770591848688, - -1.7884234530218759, - -1.6733853565211674, - -1.4784296088985225, - -1.2498125529652855, - -1.0312756581654317, - -0.856898018168819, - -0.7339295227456261, - -0.643122794962061, - -0.5481759660672415, - -0.40886604613880034, - -0.200036726976577, - 0.07828556857261658, - 0.3973265630430298, - 0.7049092518451888, - 0.9538781297006172, - 1.1176504509952043, - 1.2155154829969008, - 1.3232168883339017, - 1.5659646587741465, - 2.099833368036008, - 3.074886027177215, - 4.579008342797696, - 6.660421990820722, - 9.226264568618243, - 12.09999635703258 - ], - "pressure:J12:branch116_seg0": [ - 78885.14505035791, - 96085.5811631656, - 111456.43617989562, - 123314.69321130206, - 130921.58181355725, - 133840.63050986774, - 132184.94840456333, - 126598.73463791197, - 118125.84735512413, - 107613.60606746264, - 96015.10595024136, - 83827.62743955404, - 71332.51892314642, - 58769.21048830592, - 45989.966527601406, - 33222.9674078161, - 20447.9171506656, - 7856.494580602647, - -3871.5275521093918, - -14702.300979772743, - -24319.051625002463, - -32458.489969460257, - -39289.52928458405, - -44873.99268794662, - -49394.16296200275, - -53023.99987533684, - -55768.43796412225, - -57595.71124411061, - -58424.52120496869, - -58210.27117080994, - -57020.80314137102, - -55201.177171287585, - -53230.105419420164, - -51728.12102247162, - -51383.049594917386, - -52689.795767205396, - -55771.02792373927, - -60525.11676286982, - -66337.58757881242, - -72226.96672869573, - -77301.28057350207, - -80567.31831241345, - -81325.65504865885, - -79232.8133997475, - -74664.89382528828, - -67798.41830040932, - -59350.552111182646, - -50349.18360746139, - -41117.75361225299, - -32314.39022088464, - -24176.851747262615, - -16612.51464868027, - -9808.727712968384, - -3650.783740146696, - 1843.5701794646282, - 6424.37543152572, - 9924.471979806283, - 12132.433436449883, - 12918.87077189747, - 12357.307188992056, - 10693.227410024156, - 8284.371354301047, - 5643.884624944157, - 3122.0570452020293, - 997.6451291282583, - -605.2680103472616, - -1796.3605542344803, - -2790.79640579214, - -3811.940970077701, - -5036.289962442875, - -6452.10859317038, - -7972.8038664802625, - -9368.407075427425, - -10323.77450792143, - -10663.355956066333, - -10324.38916096267, - -9392.879491851381, - -8067.019155539254, - -6699.04773100542, - -5509.849819776263, - -4616.751073340646, - -4023.594037545277, - -3541.6893679399273, - -2922.1066890361913, - -1944.9543393129204, - -516.2242170746418, - 1275.3405579293355, - 3203.762387079405, - 4908.564068017254, - 6155.70271319722, - 6884.797970318826, - 7351.279439872608, - 8144.04078999479, - 10114.56313488483, - 14198.152614444083, - 21333.63951159651, - 31591.010845036402, - 45156.27058245797, - 61592.13513781729, - 78885.14505035791 - ], - "flow:branch17_seg0:J13": [ - 57.196526686768784, - 71.28701115151733, - 84.3936013372016, - 95.3444388564851, - 103.17859791791605, - 107.32899239389786, - 107.70794957741421, - 104.74225986937161, - 98.99853083682427, - 91.2484491189885, - 82.31413272355991, - 72.64377173392343, - 62.65644579089117, - 52.522952399418834, - 42.23086897039861, - 31.89946153123491, - 21.513782861129517, - 11.259316108838593, - 1.4485827133956761, - -7.726976242810809, - -15.968303203938998, - -23.124396973197715, - -29.180459460649594, - -34.17923577121037, - -38.262469486086836, - -41.55397621275684, - -44.12058811650935, - -45.96298204388144, - -47.02588230176772, - -47.24996808631295, - -46.66245015697062, - -45.43465519056162, - -43.8800022787213, - -42.48515449683489, - -41.76735634297275, - -42.188670487879605, - -44.00069622810564, - -47.23321966352724, - -51.52405476944604, - -56.26283443614342, - -60.71121099755128, - -64.04277950767171, - -65.61519989775263, - -65.04356262211708, - -62.301289235005946, - -57.565149481160354, - -51.37500241144403, - -44.30651165777774, - -36.88524309544014, - -29.622724719004804, - -22.75061035724342, - -16.404439424536825, - -10.617354716158717, - -5.34618921688575, - -0.6394690908477881, - 3.423547444792982, - 6.689047669845472, - 8.974863254896578, - 10.155585765962448, - 10.227843117128305, - 9.302669600382641, - 7.633017000750045, - 5.594962093289169, - 3.497900130606885, - 1.6285158904368464, - 0.13891435710719216, - -0.9866367931526895, - -1.8691611509034418, - -2.686364908186169, - -3.6002478313100883, - -4.676900865456779, - -5.882366408796012, - -7.058299488743536, - -7.998265543636947, - -8.51504039649658, - -8.500800419736144, - -7.963628039124685, - -7.044794382011552, - -5.959697793278431, - -4.918967647684623, - -4.086841137091606, - -3.498403326085655, - -3.0650996592093014, - -2.6158118475497307, - -1.9587393412661152, - -0.9741041652719664, - 0.34224056858851054, - 1.857452482187256, - 3.319713606984284, - 4.508834925488097, - 5.295213235426933, - 5.763948464604601, - 6.270099012710413, - 7.404318339483352, - 9.905440895353458, - 14.489869768474186, - 21.58420965209714, - 31.41331129507233, - 43.55663547285412, - 57.196526686768784 - ], - "pressure:branch17_seg0:J13": [ - 78219.41351089117, - 95401.79957707184, - 110800.40530825648, - 122744.75042643459, - 130470.97565063064, - 133525.1359607296, - 132007.13140078142, - 126554.43277009593, - 118180.19058631588, - 107746.14982915569, - 96205.34504375399, - 84053.21567623092, - 71590.8570943945, - 59052.84646764772, - 46299.078027745556, - 33557.320715803005, - 20801.711712450087, - 8225.067187537079, - -3504.887438187432, - -14348.514328175763, - -23984.989367800805, - -32153.808951055566, - -39014.27876908328, - -44626.21419483454, - -49171.21218136808, - -52822.4579403164, - -55589.128041625096, - -57441.69096499047, - -58300.01280192426, - -58117.24979513728, - -56959.30221997845, - -55161.512250860615, - -53196.62634386047, - -51682.68247157101, - -51303.3176350806, - -52557.94176608506, - -55579.21187364585, - -60277.58420919001, - -66047.84754479257, - -71924.48896766754, - -77017.65087359573, - -80331.94935391293, - -81164.75690220829, - -79162.49026351176, - -74679.13106052214, - -67890.04413278654, - -59505.90410178976, - -50538.46279692926, - -41326.82874255198, - -32527.958352532576, - -24383.476732297237, - -16814.556674804942, - -10000.51681359358, - -3831.854392611771, - 1673.2726916579356, - 6274.22864860897, - 9802.05934624921, - 12045.424669439784, - 12872.959389499505, - 12354.107221932023, - 10725.188315631187, - 8341.84470084497, - 5714.687155054466, - 3192.401231276538, - 1059.7492320510585, - -555.1092350454207, - -1756.6155548759723, - -2755.2351331855443, - -3773.6082529019914, - -4989.778166550904, - -6397.430146267152, - -7913.274493774673, - -9310.574752921477, - -10277.45914375936, - -10635.581119883998, - -10317.738678900867, - -9404.944706690445, - -8093.271870872434, - -6728.942868067368, - -5535.812065828141, - -4635.6017201149025, - -4035.126825537484, - -3550.9318452337407, - -2936.798939944681, - -1971.9214817912928, - -559.4224378761259, - 1218.7786942549333, - 3140.6998960639903, - 4848.5233491026365, - 6107.735288238251, - 6850.846513626133, - 7323.371163163718, - 8103.482498809829, - 10033.589025412226, - 14045.326869746243, - 21075.126646246023, - 31217.894760109957, - 44664.633739341145, - 60984.62597578038, - 78219.41351089117 - ], - "flow:J13:branch18_seg0": [ - 31.994471193208547, - 39.87757305577799, - 47.213297047712864, - 53.34392563964932, - 57.73295614816791, - 60.06312574096282, - 60.28441653320202, - 58.630251279450455, - 55.42361468676056, - 51.09296258134061, - 46.09428471959486, - 40.68434184026437, - 35.09494517607291, - 29.42223698470757, - 23.662142193308643, - 17.878104407669642, - 12.063578062998445, - 6.324619704224452, - 0.8321709698196078, - -4.3051511665397495, - -8.91971326041053, - -12.927681905727807, - -16.320080068226677, - -19.120768184883392, - -21.408892019383742, - -23.25341288449999, - -24.69171474997128, - -25.724454485038994, - -26.32073413659735, - -26.44791554299183, - -26.1207814730325, - -25.43547760150539, - -24.567328541085345, - -23.787426578568567, - -23.385748181053987, - -23.620286214590234, - -24.63277138117828, - -26.43892365169909, - -28.837233676261288, - -31.487428481773723, - -33.97535489718947, - -35.840391889975685, - -36.722286545307014, - -36.40569819684903, - -34.875314155525075, - -32.22851645358844, - -28.76776158114251, - -24.814661396271006, - -20.66249764240384, - -16.59792447982273, - -12.750836474447492, - -9.197066519043782, - -5.956846481070421, - -3.0051731912414716, - -0.3689866071883806, - 1.9061714271061236, - 3.735179172595884, - 5.016322603977815, - 5.679422694807413, - 5.721900803796531, - 5.206559348833433, - 4.27490867214877, - 3.1352393567617316, - 1.9623499364211232, - 0.91636448785816, - 0.0818640739039219, - -0.549113276205956, - -1.0440657065412495, - -1.5022392173284647, - -2.0140537727300374, - -2.616435927110266, - -3.290795132551606, - -3.9485715119919034, - -4.474529584912214, - -4.764140905658044, - -4.757025193383251, - -4.457674133079811, - -3.94442890146364, - -3.3381823370423813, - -2.756188490288625, - -2.290139183526182, - -1.9601976969075512, - -1.7169390903420203, - -1.4648995264514473, - -1.0970446640126785, - -0.5461816353969967, - 0.18990203257480798, - 1.036854374349905, - 1.855040461718976, - 2.520703490472746, - 2.9614802681052588, - 3.2251445424601464, - 3.509876703502567, - 4.145675791562205, - 5.545564225528327, - 8.109972404100233, - 12.076784029274016, - 17.5741451453898, - 24.366731766888428, - 31.994471193208547 - ], - "pressure:J13:branch18_seg0": [ - 78219.41351089117, - 95401.79957707184, - 110800.40530825648, - 122744.75042643459, - 130470.97565063064, - 133525.1359607296, - 132007.13140078142, - 126554.43277009593, - 118180.19058631588, - 107746.14982915569, - 96205.34504375399, - 84053.21567623092, - 71590.8570943945, - 59052.84646764772, - 46299.078027745556, - 33557.320715803005, - 20801.711712450087, - 8225.067187537079, - -3504.887438187432, - -14348.514328175763, - -23984.989367800805, - -32153.808951055566, - -39014.27876908328, - -44626.21419483454, - -49171.21218136808, - -52822.4579403164, - -55589.128041625096, - -57441.69096499047, - -58300.01280192426, - -58117.24979513728, - -56959.30221997845, - -55161.512250860615, - -53196.62634386047, - -51682.68247157101, - -51303.3176350806, - -52557.94176608506, - -55579.21187364585, - -60277.58420919001, - -66047.84754479257, - -71924.48896766754, - -77017.65087359573, - -80331.94935391293, - -81164.75690220829, - -79162.49026351176, - -74679.13106052214, - -67890.04413278654, - -59505.90410178976, - -50538.46279692926, - -41326.82874255198, - -32527.958352532576, - -24383.476732297237, - -16814.556674804942, - -10000.51681359358, - -3831.854392611771, - 1673.2726916579356, - 6274.22864860897, - 9802.05934624921, - 12045.424669439784, - 12872.959389499505, - 12354.107221932023, - 10725.188315631187, - 8341.84470084497, - 5714.687155054466, - 3192.401231276538, - 1059.7492320510585, - -555.1092350454207, - -1756.6155548759723, - -2755.2351331855443, - -3773.6082529019914, - -4989.778166550904, - -6397.430146267152, - -7913.274493774673, - -9310.574752921477, - -10277.45914375936, - -10635.581119883998, - -10317.738678900867, - -9404.944706690445, - -8093.271870872434, - -6728.942868067368, - -5535.812065828141, - -4635.6017201149025, - -4035.126825537484, - -3550.9318452337407, - -2936.798939944681, - -1971.9214817912928, - -559.4224378761259, - 1218.7786942549333, - 3140.6998960639903, - 4848.5233491026365, - 6107.735288238251, - 6850.846513626133, - 7323.371163163718, - 8103.482498809829, - 10033.589025412226, - 14045.326869746243, - 21075.126646246023, - 31217.894760109957, - 44664.633739341145, - 60984.62597578038, - 78219.41351089117 - ], - "flow:J13:branch49_seg0": [ - 25.202055493560312, - 31.40943809573904, - 37.180304289488475, - 42.00051321683603, - 45.44564176974982, - 47.26586665293509, - 47.42353304421227, - 46.11200858992132, - 43.574916150064375, - 40.15548653764862, - 36.21984800396572, - 31.959429893659276, - 27.561500614818655, - 23.10071541470932, - 18.56872677709257, - 14.021357123567336, - 9.450204798134793, - 4.934696404617816, - 0.6164117435741083, - -3.421825076269055, - -7.048589943530577, - -10.196715067470826, - -12.860379392424967, - -15.058467586326302, - -16.853577466703367, - -18.30056332825785, - -19.428873366539477, - -20.238527558840065, - -20.7051481651728, - -20.802052543321203, - -20.541668683938497, - -19.999177589056057, - -19.31267373763492, - -18.697727918266082, - -18.38160816191769, - -18.56838427329174, - -19.367924846927, - -20.794296011827335, - -22.686821093183056, - -24.775405954370356, - -26.735856100362152, - -28.202387617696004, - -28.892913352446737, - -28.63786442526709, - -27.42597507948161, - -25.336633027571846, - -22.60724083030113, - -19.49185026150675, - -16.222745453036065, - -13.02480023918222, - -9.999773882795843, - -7.207372905493217, - -4.660508235088269, - -2.341016025644248, - -0.2704824836594434, - 1.5173760176867692, - 2.9538684972495632, - 3.9585406509186694, - 4.4761630711552, - 4.50594231333163, - 4.096110251549216, - 3.358108328601124, - 2.459722736527304, - 1.5355501941855605, - 0.7121514025785449, - 0.057050283203126176, - -0.4375235169465973, - -0.8250954443616955, - -1.1841256908576563, - -1.586194058580135, - -2.0604649383464477, - -2.591571276244531, - -3.1097279767516723, - -3.5237359587249744, - -3.7508994908383464, - -3.7437752263528505, - -3.5059539060446636, - -3.100365480547858, - -2.621515456236064, - -2.1627791573960833, - -1.7967019535654314, - -1.53820562917814, - -1.348160568867268, - -1.1509123210982601, - -0.8616946772534277, - -0.42792252987499846, - 0.1523385360136817, - 0.8205981078373783, - 1.4646731452653248, - 1.988131435015392, - 2.333732967321628, - 2.538803922144491, - 2.760222309207801, - 3.2586425479210117, - 4.359876669825272, - 6.379897364373817, - 9.507425622823048, - 13.839166149682635, - 19.189903705965605, - 25.202055493560312 - ], - "pressure:J13:branch49_seg0": [ - 78219.41351089117, - 95401.79957707184, - 110800.40530825648, - 122744.75042643459, - 130470.97565063064, - 133525.1359607296, - 132007.13140078142, - 126554.43277009593, - 118180.19058631588, - 107746.14982915569, - 96205.34504375399, - 84053.21567623092, - 71590.8570943945, - 59052.84646764772, - 46299.078027745556, - 33557.320715803005, - 20801.711712450087, - 8225.067187537079, - -3504.887438187432, - -14348.514328175763, - -23984.989367800805, - -32153.808951055566, - -39014.27876908328, - -44626.21419483454, - -49171.21218136808, - -52822.4579403164, - -55589.128041625096, - -57441.69096499047, - -58300.01280192426, - -58117.24979513728, - -56959.30221997845, - -55161.512250860615, - -53196.62634386047, - -51682.68247157101, - -51303.3176350806, - -52557.94176608506, - -55579.21187364585, - -60277.58420919001, - -66047.84754479257, - -71924.48896766754, - -77017.65087359573, - -80331.94935391293, - -81164.75690220829, - -79162.49026351176, - -74679.13106052214, - -67890.04413278654, - -59505.90410178976, - -50538.46279692926, - -41326.82874255198, - -32527.958352532576, - -24383.476732297237, - -16814.556674804942, - -10000.51681359358, - -3831.854392611771, - 1673.2726916579356, - 6274.22864860897, - 9802.05934624921, - 12045.424669439784, - 12872.959389499505, - 12354.107221932023, - 10725.188315631187, - 8341.84470084497, - 5714.687155054466, - 3192.401231276538, - 1059.7492320510585, - -555.1092350454207, - -1756.6155548759723, - -2755.2351331855443, - -3773.6082529019914, - -4989.778166550904, - -6397.430146267152, - -7913.274493774673, - -9310.574752921477, - -10277.45914375936, - -10635.581119883998, - -10317.738678900867, - -9404.944706690445, - -8093.271870872434, - -6728.942868067368, - -5535.812065828141, - -4635.6017201149025, - -4035.126825537484, - -3550.9318452337407, - -2936.798939944681, - -1971.9214817912928, - -559.4224378761259, - 1218.7786942549333, - 3140.6998960639903, - 4848.5233491026365, - 6107.735288238251, - 6850.846513626133, - 7323.371163163718, - 8103.482498809829, - 10033.589025412226, - 14045.326869746243, - 21075.126646246023, - 31217.894760109957, - 44664.633739341145, - 60984.62597578038, - 78219.41351089117 - ], - "flow:branch18_seg0:J14": [ - 31.991654445823684, - 39.87493751652151, - 47.211011897324546, - 53.342314478856565, - 57.73212378802352, - 60.06301416562912, - 60.284884391562635, - 58.631496503438235, - 55.425172140750455, - 51.094636807449355, - 46.09625717963647, - 40.68631611851648, - 35.0969477543802, - 29.424313383050144, - 23.664138518584334, - 17.88017235641915, - 12.065709780859583, - 6.326567348367848, - 0.834011069665631, - -4.303469395939859, - -8.918267216802423, - -12.92645479952775, - -16.31907310172684, - -19.119952637473553, - -21.40822869260989, - -23.252889979020654, - -24.691339328404382, - -25.724232910832814, - -26.320689563307127, - -26.44802307115428, - -26.121035731360116, - -25.435802626225218, - -24.56760299516015, - -23.78759785665831, - -23.38569834312649, - -23.619969919258544, - -24.632126254243598, - -26.43806589250479, - -28.836283297329413, - -31.486487346468294, - -33.97466459708523, - -35.84003755115623, - -36.72237501016952, - -36.40624135253544, - -34.87623510885688, - -32.22978720751117, - -28.76922336830293, - -24.816161445364155, - -20.663973376739605, - -16.599308323912222, - -12.752105957399241, - -9.198262496505953, - -5.957893490145104, - -3.006097202324632, - -0.3698271286811945, - 1.9055071751716932, - 3.7347162242560374, - 5.016072348240893, - 5.679381996964621, - 5.722095639216948, - 5.2069038527895914, - 4.275279205709085, - 3.1356768229866163, - 1.9627455030701635, - 0.9166581826089608, - 0.08209140431394968, - -0.5489399939951837, - -1.043910682235904, - -1.5020614034904092, - -2.0138360933364194, - -2.616195636702889, - -3.2905482979651555, - -3.9483688641154218, - -4.474417947187621, - -4.76414172888566, - -4.757136392067709, - -4.457856562515887, - -3.9446661137232546, - -3.3383942684744667, - -2.756348008361152, - -2.2902593996860166, - -1.9602818734026048, - -1.7170221299571973, - -1.4650222063380247, - -1.0972290163067064, - -0.5464467138585792, - 0.18958945068904604, - 1.0365734188588693, - 1.854790156079875, - 2.520534256013284, - 2.961396259388968, - 3.225066571198075, - 3.50968497986523, - 4.145219136385144, - 5.544682309690697, - 8.108549987646356, - 12.074875941864315, - 17.57168841173295, - 24.363837223664472, - 31.991654445823684 - ], - "pressure:branch18_seg0:J14": [ - 77457.69007752174, - 94618.05090053368, - 110048.59045397563, - 122090.46448304142, - 129952.57274916836, - 133160.60285270927, - 131799.88496147146, - 126499.93022632317, - 118237.27906660165, - 107893.43110359309, - 96419.27597188913, - 84307.47107037656, - 71883.18382833179, - 59374.317597837755, - 46649.627575732186, - 33937.86972777428, - 21204.729989266554, - 8644.519585208485, - -3086.2728071609727, - -13944.192401193357, - -23603.132590018722, - -31804.89396739224, - -38698.84746681046, - -44341.94794587736, - -48915.0520372689, - -52590.74858476107, - -55382.72748295827, - -57264.08858255617, - -58156.09588756818, - -58009.24409132514, - -56887.30437189102, - -55114.35389299925, - -53156.679434791295, - -51629.134165601674, - -51210.76510401306, - -52406.16496631637, - -55358.76100121437, - -59993.811438003686, - -65715.75195864667, - -71577.40145720575, - -76691.85822494629, - -80060.74894286733, - -80978.40156858324, - -79078.80834035364, - -74692.78505576467, - -67992.52318651821, - -59680.65345904517, - -50752.915613721154, - -41564.08747463716, - -32770.59767629748, - -24618.920085572496, - -17044.656672879486, - -10219.002822127854, - -4038.638841116288, - 1478.8140989418018, - 6102.715628586005, - 9661.993548398412, - 11945.70486779776, - 12820.00170831392, - 12349.990234246805, - 10760.92991173292, - 8406.737722510154, - 5795.276514560886, - 3272.4542074950127, - 1130.528394571185, - -497.7838586113365, - -1711.1227102297537, - -2714.5233639300754, - -3729.733154622538, - -4936.654840235983, - -6334.862161507402, - -7845.035347481674, - -9244.363825876879, - -10224.281997817627, - -10603.512173752166, - -10309.784161127096, - -9418.446279234402, - -8122.9268529875335, - -6762.723325773178, - -5565.307098383825, - -4656.971062734627, - -4048.202359306589, - -3561.4303609727217, - -2953.520851337641, - -2002.5932301452692, - -608.6614897093278, - 1154.372635885188, - 3068.87647027454, - 4779.845169465207, - 6052.782148021837, - 6811.781386986336, - 7291.209013648518, - 8056.91981694405, - 9941.00535249477, - 13870.56828375645, - 20780.353058025456, - 30791.55485785454, - 44101.171779937824, - 60290.48685108468, - 77457.69007752174 - ], - "flow:J14:branch19_seg0": [ - 18.11325183614736, - 22.642934308600907, - 26.888490960042535, - 30.46775037675938, - 33.06424447778117, - 34.4875692127719, - 34.69958685052379, - 33.82067691143797, - 32.03497818897885, - 29.587764337937305, - 26.735340771980095, - 23.636380964122566, - 20.426734100469655, - 17.163509137879327, - 13.85182829262025, - 10.522739361522659, - 7.174663462285487, - 3.8693054822671216, - 0.6965939167175856, - -2.2763109301139557, - -4.953134207107606, - -7.285141137352385, - -9.262450513559571, - -10.897905244027772, - -12.235527767171103, - -13.314771920228214, - -14.158817529604184, - -14.769536087706467, - -15.130087250812197, - -15.221839296291847, - -15.051400933956637, - -14.670494605663247, - -14.177346864447209, - -13.724109126848592, - -13.47700864262749, - -13.585950454280038, - -14.138225899127116, - -15.146995784307812, - -16.50405579706393, - -18.021281806396104, - -19.46067338953895, - -20.559484029332673, - -21.106579233164798, - -20.972463265376653, - -20.13878390912738, - -18.6579505560833, - -16.698246604435454, - -14.440714189944751, - -12.058069579362993, - -9.714923132664937, - -7.491057999396399, - -5.4341573152760265, - -3.556772163641337, - -1.8462227543875596, - -0.3162568613452827, - 1.0079897311055788, - 2.0786415676283707, - 2.8379578619567996, - 3.2444002056811363, - 3.29325139973596, - 3.0181259717907, - 2.498572992016037, - 1.8500468832896229, - 1.1754405259068916, - 0.5685254333338083, - 0.07973196129059769, - -0.29147279468126147, - -0.5814397104887257, - -0.8463879270634623, - -1.1386869111919655, - -1.4818943081307907, - -1.8675485489747217, - -2.2469565299287555, - -2.5552549630394146, - -2.7315536182199853, - -2.7391622096415893, - -2.57823599631949, - -2.2910781350329787, - -1.9454658399481897, - -1.6092573304375974, - -1.336362902082189, - -1.141110742298861, - -0.9978759314995117, - -0.8534607749043472, - -0.6465598812677609, - -0.3367698781010591, - 0.07991070196382308, - 0.5630403568479108, - 1.035601416239282, - 1.4252568325475097, - 1.6877174417779728, - 1.8460333098972583, - 2.0083357529912025, - 2.3594044392343845, - 3.1342108764974315, - 4.562704006987474, - 6.790260592941719, - 9.895754291217733, - 13.753789015158011, - 18.11325183614736 - ], - "pressure:J14:branch19_seg0": [ - 77457.69007752174, - 94618.05090053368, - 110048.59045397563, - 122090.46448304142, - 129952.57274916836, - 133160.60285270927, - 131799.88496147146, - 126499.93022632317, - 118237.27906660165, - 107893.43110359309, - 96419.27597188913, - 84307.47107037656, - 71883.18382833179, - 59374.317597837755, - 46649.627575732186, - 33937.86972777428, - 21204.729989266554, - 8644.519585208485, - -3086.2728071609727, - -13944.192401193357, - -23603.132590018722, - -31804.89396739224, - -38698.84746681046, - -44341.94794587736, - -48915.0520372689, - -52590.74858476107, - -55382.72748295827, - -57264.08858255617, - -58156.09588756818, - -58009.24409132514, - -56887.30437189102, - -55114.35389299925, - -53156.679434791295, - -51629.134165601674, - -51210.76510401306, - -52406.16496631637, - -55358.76100121437, - -59993.811438003686, - -65715.75195864667, - -71577.40145720575, - -76691.85822494629, - -80060.74894286733, - -80978.40156858324, - -79078.80834035364, - -74692.78505576467, - -67992.52318651821, - -59680.65345904517, - -50752.915613721154, - -41564.08747463716, - -32770.59767629748, - -24618.920085572496, - -17044.656672879486, - -10219.002822127854, - -4038.638841116288, - 1478.8140989418018, - 6102.715628586005, - 9661.993548398412, - 11945.70486779776, - 12820.00170831392, - 12349.990234246805, - 10760.92991173292, - 8406.737722510154, - 5795.276514560886, - 3272.4542074950127, - 1130.528394571185, - -497.7838586113365, - -1711.1227102297537, - -2714.5233639300754, - -3729.733154622538, - -4936.654840235983, - -6334.862161507402, - -7845.035347481674, - -9244.363825876879, - -10224.281997817627, - -10603.512173752166, - -10309.784161127096, - -9418.446279234402, - -8122.9268529875335, - -6762.723325773178, - -5565.307098383825, - -4656.971062734627, - -4048.202359306589, - -3561.4303609727217, - -2953.520851337641, - -2002.5932301452692, - -608.6614897093278, - 1154.372635885188, - 3068.87647027454, - 4779.845169465207, - 6052.782148021837, - 6811.781386986336, - 7291.209013648518, - 8056.91981694405, - 9941.00535249477, - 13870.56828375645, - 20780.353058025456, - 30791.55485785454, - 44101.171779937824, - 60290.48685108468, - 77457.69007752174 - ], - "flow:J14:branch23_seg0": [ - 13.878402609676362, - 17.23200320792066, - 20.322520937282015, - 22.874564102097693, - 24.667879310241876, - 25.575444952857765, - 25.58529754103793, - 24.810819592000563, - 23.39019395177185, - 21.50687246951171, - 19.360916407655335, - 17.0499351543932, - 14.670213653911105, - 12.260804245168666, - 9.812310225963918, - 7.35743299489744, - 4.891046318574369, - 2.4572618661013346, - 0.13741715294622597, - -2.0271584658257185, - -3.9651330096948016, - -5.641313662175506, - -7.056622588168516, - -8.222047393443404, - -9.172700925438175, - -9.938118058794164, - -10.532521798800872, - -10.954696823126081, - -11.190602312494317, - -11.22618377486323, - -11.069634797403335, - -10.765308020561658, - -10.390256130714592, - -10.063488729809286, - -9.908689700500576, - -10.034019464978646, - -10.493900355117702, - -11.291070108197717, - -12.332227500265402, - -13.465205540071343, - -14.513991207546868, - -15.280553521822835, - -15.615795777005081, - -15.433778087158542, - -14.737451199729376, - -13.571836651427882, - -12.070976763867668, - -10.375447255419564, - -8.605903797376273, - -6.884385191247425, - -5.261047958002902, - -3.7641051812300317, - -2.401121326503769, - -1.1598744479370082, - -0.05357026733590781, - 0.8975174440660987, - 1.6560746566276863, - 2.178114486284027, - 2.434981791283472, - 2.4288442394810827, - 2.188777880998911, - 1.7767062136930583, - 1.2856299396970265, - 0.7873049771632938, - 0.34813274927513904, - 0.0023594430232593516, - -0.2574671993136964, - -0.4624709717472139, - -0.6556734764270623, - -0.875149182144317, - -1.1343013285722847, - -1.422999748990399, - -1.7014123341866398, - -1.9191629841482205, - -2.0325881106657024, - -2.017974182426107, - -1.8796205661963863, - -1.6535879786902845, - -1.3929284285262562, - -1.1470906779235552, - -0.9538964976038203, - -0.8191711311037242, - -0.7191461984576694, - -0.6115614314336569, - -0.45066913503893385, - -0.20967683575750115, - 0.10967874872522966, - 0.4735330620109557, - 0.8191887398405937, - 1.0952774234657914, - 1.2736788176109528, - 1.3790332613008187, - 1.5013492268740567, - 1.7858146971508257, - 2.4104714331932353, - 3.5458459806590406, - 5.284615348922455, - 7.675934120514933, - 10.610048208506564, - 13.878402609676362 - ], - "pressure:J14:branch23_seg0": [ - 77457.69007752174, - 94618.05090053368, - 110048.59045397563, - 122090.46448304142, - 129952.57274916836, - 133160.60285270927, - 131799.88496147146, - 126499.93022632317, - 118237.27906660165, - 107893.43110359309, - 96419.27597188913, - 84307.47107037656, - 71883.18382833179, - 59374.317597837755, - 46649.627575732186, - 33937.86972777428, - 21204.729989266554, - 8644.519585208485, - -3086.2728071609727, - -13944.192401193357, - -23603.132590018722, - -31804.89396739224, - -38698.84746681046, - -44341.94794587736, - -48915.0520372689, - -52590.74858476107, - -55382.72748295827, - -57264.08858255617, - -58156.09588756818, - -58009.24409132514, - -56887.30437189102, - -55114.35389299925, - -53156.679434791295, - -51629.134165601674, - -51210.76510401306, - -52406.16496631637, - -55358.76100121437, - -59993.811438003686, - -65715.75195864667, - -71577.40145720575, - -76691.85822494629, - -80060.74894286733, - -80978.40156858324, - -79078.80834035364, - -74692.78505576467, - -67992.52318651821, - -59680.65345904517, - -50752.915613721154, - -41564.08747463716, - -32770.59767629748, - -24618.920085572496, - -17044.656672879486, - -10219.002822127854, - -4038.638841116288, - 1478.8140989418018, - 6102.715628586005, - 9661.993548398412, - 11945.70486779776, - 12820.00170831392, - 12349.990234246805, - 10760.92991173292, - 8406.737722510154, - 5795.276514560886, - 3272.4542074950127, - 1130.528394571185, - -497.7838586113365, - -1711.1227102297537, - -2714.5233639300754, - -3729.733154622538, - -4936.654840235983, - -6334.862161507402, - -7845.035347481674, - -9244.363825876879, - -10224.281997817627, - -10603.512173752166, - -10309.784161127096, - -9418.446279234402, - -8122.9268529875335, - -6762.723325773178, - -5565.307098383825, - -4656.971062734627, - -4048.202359306589, - -3561.4303609727217, - -2953.520851337641, - -2002.5932301452692, - -608.6614897093278, - 1154.372635885188, - 3068.87647027454, - 4779.845169465207, - 6052.782148021837, - 6811.781386986336, - 7291.209013648518, - 8056.91981694405, - 9941.00535249477, - 13870.56828375645, - 20780.353058025456, - 30791.55485785454, - 44101.171779937824, - 60290.48685108468, - 77457.69007752174 - ], - "flow:branch20_seg0:J15": [ - 144.5315352883037, - 160.48770013993993, - 167.76079568714803, - 165.711429988228, - 156.0095384904021, - 140.3456823060453, - 120.81315970546666, - 100.19085750893994, - 81.17176490637749, - 63.28449333498455, - 48.1059881538339, - 34.73895718877885, - 21.751070614321872, - 9.534014638659096, - -3.3523146848931766, - -16.13313819584572, - -28.28326241023429, - -39.772237712003765, - -48.625610951143884, - -55.44591379522593, - -60.07399993837791, - -62.53243038154567, - -63.96171812753508, - -64.65753523124911, - -65.03786408623944, - -65.16426097831524, - -64.6067552704199, - -62.973129945548756, - -60.00996163977232, - -55.79896912540231, - -50.88048274590144, - -46.58226301199569, - -44.01252103336976, - -44.402351642632404, - -48.56198638863634, - -56.31913133696077, - -66.55327486125577, - -77.62641034386549, - -87.63503876130285, - -93.87103810616358, - -95.47188825092252, - -91.51806714548273, - -82.32709584292799, - -69.02496829295049, - -54.19644989669948, - -38.676956106580604, - -24.485924467482004, - -13.181696538436848, - -3.877206146580027, - 2.834739735645852, - 8.010207874067664, - 12.577882881520498, - 16.31051231706735, - 19.77349864915587, - 22.413047496600143, - 23.46992488104003, - 22.732674272154075, - 19.87202576847236, - 15.151989051101157, - 9.28950545020549, - 3.4524935611072674, - -1.7699970560366505, - -5.3198806763960125, - -7.046676406248509, - -7.402850019790141, - -6.810440308868185, - -6.1874336865842565, - -6.269125682087197, - -7.3421264259434444, - -9.350019034260134, - -11.636620900173542, - -13.608692005903755, - -14.500864105470798, - -13.827062154477751, - -11.695459344919275, - -8.633432979147168, - -5.307315536078544, - -2.4897663685684477, - -0.9261623693153211, - -0.5105306790765856, - -0.9622586776164864, - -1.644456018583637, - -1.7232480703359643, - -0.6434100214623943, - 1.6962806427905945, - 4.937300432685269, - 8.15935741430088, - 10.640501338821265, - 11.55558401310738, - 10.896254602330949, - 9.470264710564798, - 8.723250262708593, - 10.573521137765914, - 16.94732185642866, - 29.053626251460624, - 47.700820030062964, - 70.47458727245191, - 96.78887403537529, - 123.13307636120514, - 144.5315352883037 - ], - "pressure:branch20_seg0:J15": [ - 188322.59469332267, - 202283.41825730682, - 206529.3717149342, - 197698.9259920071, - 180744.546203056, - 158748.70069994783, - 133808.76282864378, - 106971.1177218153, - 86074.6469125871, - 66153.16370664393, - 48055.705477494645, - 33912.7399783613, - 17889.111702100352, - 3178.1674245907107, - -12022.852189192976, - -28293.79807219119, - -41910.78704438895, - -55139.34751523065, - -64615.86270952294, - -70912.53575023031, - -75462.64676149571, - -77249.73741372048, - -78222.27301429085, - -78835.96653957774, - -79056.74151271654, - -78981.9730462283, - -77799.54712394362, - -74966.6630040057, - -70418.56803991256, - -64661.58425798792, - -58367.29429199485, - -53747.10459713581, - -52363.910780259415, - -54828.2396108362, - -62366.004876515064, - -73960.25121834251, - -88003.24219382004, - -100967.74260665833, - -112146.036674449, - -116958.01338607253, - -115164.73064796822, - -106955.46222326688, - -92818.43932849204, - -74115.05847954506, - -55537.51155607755, - -37267.586212802504, - -20555.593424302195, - -8985.13624308712, - 616.2532993536412, - 7657.4123960031, - 12753.675153730388, - 18186.37611466241, - 22298.885863520463, - 25857.52499624835, - 28719.797315461827, - 28761.351367394804, - 26461.595695703727, - 21696.673441125, - 14987.544038774742, - 7031.225798088782, - 373.37455847262544, - -5029.597632278616, - -8576.69626899711, - -9255.611408206478, - -8848.12301578865, - -7842.928262924437, - -7178.104394383703, - -7829.945455435431, - -9799.03296893579, - -12774.722855926639, - -15566.1136951747, - -17498.03054755017, - -17835.720763803703, - -15995.97852016698, - -12441.76801902455, - -8276.4975211711, - -4350.842113644521, - -1299.0992861666384, - -282.1211935955459, - -675.969198757711, - -1566.5873392817396, - -2339.9412130742853, - -1922.4091629043626, - 240.66773459729478, - 3813.088614056522, - 8289.263033473662, - 11910.684909302903, - 14073.863189610956, - 14286.091680846306, - 12485.172993467759, - 10473.130810185537, - 10474.057063582031, - 14847.992689671824, - 25942.525228853054, - 44227.529907650765, - 71211.91930043125, - 101076.71734346535, - 133842.0344304102, - 166404.04495752236, - 188322.59469332267 - ], - "flow:J15:branch21_seg0": [ - 35.74246903153015, - 38.705193187003225, - 39.6519605948569, - 38.15413519719362, - 35.10512256948816, - 30.95576585178509, - 26.12147310195929, - 21.129922806651184, - 16.980254234713254, - 12.978038296168556, - 9.622543010207075, - 6.779270488748543, - 3.7273137772890883, - 0.9379341943157303, - -2.0926664507130606, - -5.099223982532316, - -7.786332353822374, - -10.430293904071076, - -12.233500332828015, - -13.529100089893964, - -14.443555946887395, - -14.793374506727654, - -15.014699172264542, - -15.12915970115992, - -15.170871234882899, - -15.173653545050646, - -14.965713493399665, - -14.458497016489579, - -13.622680198092146, - -12.534008421465511, - -11.320059261533652, - -10.407212119671852, - -10.04164837727436, - -10.43673250587523, - -11.796339298343522, - -13.973013578230056, - -16.579536256338066, - -19.162178949161294, - -21.369816950438974, - -22.387711537784423, - -22.217901062217422, - -20.756219908824793, - -18.096108238330295, - -14.556229223064436, - -11.013766303595734, - -7.452121050614766, - -4.205940529121769, - -1.9381729333971587, - -0.008454657397452499, - 1.355248918128224, - 2.3440320719566294, - 3.4001187729425606, - 4.1884209013059905, - 4.912480586277723, - 5.469559071367116, - 5.526720401493991, - 5.150794516799252, - 4.281410614088822, - 3.0068340315892232, - 1.5255222851572647, - 0.20881552229551034, - -0.9146286455341606, - -1.5834435801449618, - -1.7700119313778881, - -1.7274124618111963, - -1.5210469977929117, - -1.379372225929648, - -1.4819445639590902, - -1.8387495094066975, - -2.3991978127898177, - -2.9418206808190894, - -3.336697133461424, - -3.437221745863184, - -3.112227205754949, - -2.463975464419167, - -1.6699477748350562, - -0.9040932698593103, - -0.2958175296850856, - -0.07176425598927301, - -0.10978933953348881, - -0.2785902811754141, - -0.44393246868743297, - -0.38957954072757206, - -0.010470685363371375, - 0.6579440347855295, - 1.4968548284588368, - 2.218004029449205, - 2.6957604788153047, - 2.7523130198060186, - 2.4322321082774083, - 2.044475259495472, - 1.9859112798782481, - 2.728801999912342, - 4.71199137853407, - 8.11639841779422, - 13.170434795142496, - 18.84994397344514, - 25.104514618266336, - 31.414644842096884, - 35.74246903153015 - ], - "pressure:J15:branch21_seg0": [ - 188322.59469332267, - 202283.41825730682, - 206529.3717149342, - 197698.9259920071, - 180744.546203056, - 158748.70069994783, - 133808.76282864378, - 106971.1177218153, - 86074.6469125871, - 66153.16370664393, - 48055.705477494645, - 33912.7399783613, - 17889.111702100352, - 3178.1674245907107, - -12022.852189192976, - -28293.79807219119, - -41910.78704438895, - -55139.34751523065, - -64615.86270952294, - -70912.53575023031, - -75462.64676149571, - -77249.73741372048, - -78222.27301429085, - -78835.96653957774, - -79056.74151271654, - -78981.9730462283, - -77799.54712394362, - -74966.6630040057, - -70418.56803991256, - -64661.58425798792, - -58367.29429199485, - -53747.10459713581, - -52363.910780259415, - -54828.2396108362, - -62366.004876515064, - -73960.25121834251, - -88003.24219382004, - -100967.74260665833, - -112146.036674449, - -116958.01338607253, - -115164.73064796822, - -106955.46222326688, - -92818.43932849204, - -74115.05847954506, - -55537.51155607755, - -37267.586212802504, - -20555.593424302195, - -8985.13624308712, - 616.2532993536412, - 7657.4123960031, - 12753.675153730388, - 18186.37611466241, - 22298.885863520463, - 25857.52499624835, - 28719.797315461827, - 28761.351367394804, - 26461.595695703727, - 21696.673441125, - 14987.544038774742, - 7031.225798088782, - 373.37455847262544, - -5029.597632278616, - -8576.69626899711, - -9255.611408206478, - -8848.12301578865, - -7842.928262924437, - -7178.104394383703, - -7829.945455435431, - -9799.03296893579, - -12774.722855926639, - -15566.1136951747, - -17498.03054755017, - -17835.720763803703, - -15995.97852016698, - -12441.76801902455, - -8276.4975211711, - -4350.842113644521, - -1299.0992861666384, - -282.1211935955459, - -675.969198757711, - -1566.5873392817396, - -2339.9412130742853, - -1922.4091629043626, - 240.66773459729478, - 3813.088614056522, - 8289.263033473662, - 11910.684909302903, - 14073.863189610956, - 14286.091680846306, - 12485.172993467759, - 10473.130810185537, - 10474.057063582031, - 14847.992689671824, - 25942.525228853054, - 44227.529907650765, - 71211.91930043125, - 101076.71734346535, - 133842.0344304102, - 166404.04495752236, - 188322.59469332267 - ], - "flow:J15:branch60_seg0": [ - 30.612113535900413, - 34.068769167999875, - 35.61073473345975, - 35.222146562072076, - 33.17399617499403, - 29.8229997582219, - 25.638241835342697, - 21.285149365391636, - 17.18330569007964, - 13.379429996453085, - 10.187811609182331, - 7.331721519640223, - 4.619774510574142, - 2.0391704841889084, - -0.6896933822186704, - -3.377273314556701, - -5.971945997074649, - -8.404502556161416, - -10.287098131248616, - -11.75459914782568, - -12.724390446072428, - -13.245474984831441, - -13.54481791240821, - -13.681443421818672, - -13.762139264637737, - -13.789912398524162, - -13.679891284097174, - -13.345918875824843, - -12.728915914836685, - -11.835062438543627, - -10.790350717562095, - -9.860668246371926, - -9.284320701717359, - -9.347557720597182, - -10.210958678755956, - -11.846841697392637, - -14.022660586892401, - -16.409340150284624, - -18.55418989000671, - -19.921523695691008, - -20.304273887015945, - -19.479414339528873, - -17.539204166719514, - -14.721461186592306, - -11.548922392924053, - -8.222448897864707, - -5.211418628529781, - -2.783188942763458, - -0.799758166696228, - 0.6102437742502357, - 1.714451641473418, - 2.6606758831288433, - 3.451736265307942, - 4.196521318805913, - 4.752658526112446, - 4.995622033031943, - 4.852624459299548, - 4.251250506638278, - 3.247507052728971, - 2.0053209977121043, - 0.7429094353720003, - -0.38248975509038885, - -1.1396715477044341, - -1.5205283588957053, - -1.5919834593358086, - -1.4547493610699689, - -1.3123650911077451, - -1.3175262808654689, - -1.5373429102701932, - -1.9623141330110756, - -2.455855936188963, - -2.888268457364703, - -3.0871068584727963, - -2.954981399026058, - -2.5076044184646746, - -1.8530226040620832, - -1.133271604881199, - -0.5285230779421823, - -0.18323354825277485, - -0.08735094648915423, - -0.1905679240599013, - -0.34587885672602026, - -0.3752021243061909, - -0.15819990399190517, - 0.33536618549236896, - 1.0235616615260088, - 1.7237349989510042, - 2.2668074777108114, - 2.4687138128452983, - 2.3346143945945204, - 2.020711313831071, - 1.83451218246509, - 2.1888785266943325, - 3.500565481235904, - 6.036324952126741, - 9.957424593060852, - 14.797601171930879, - 20.4193610854808, - 25.9921078223515, - 30.612113535900413 - ], - "pressure:J15:branch60_seg0": [ - 188322.59469332267, - 202283.41825730682, - 206529.3717149342, - 197698.9259920071, - 180744.546203056, - 158748.70069994783, - 133808.76282864378, - 106971.1177218153, - 86074.6469125871, - 66153.16370664393, - 48055.705477494645, - 33912.7399783613, - 17889.111702100352, - 3178.1674245907107, - -12022.852189192976, - -28293.79807219119, - -41910.78704438895, - -55139.34751523065, - -64615.86270952294, - -70912.53575023031, - -75462.64676149571, - -77249.73741372048, - -78222.27301429085, - -78835.96653957774, - -79056.74151271654, - -78981.9730462283, - -77799.54712394362, - -74966.6630040057, - -70418.56803991256, - -64661.58425798792, - -58367.29429199485, - -53747.10459713581, - -52363.910780259415, - -54828.2396108362, - -62366.004876515064, - -73960.25121834251, - -88003.24219382004, - -100967.74260665833, - -112146.036674449, - -116958.01338607253, - -115164.73064796822, - -106955.46222326688, - -92818.43932849204, - -74115.05847954506, - -55537.51155607755, - -37267.586212802504, - -20555.593424302195, - -8985.13624308712, - 616.2532993536412, - 7657.4123960031, - 12753.675153730388, - 18186.37611466241, - 22298.885863520463, - 25857.52499624835, - 28719.797315461827, - 28761.351367394804, - 26461.595695703727, - 21696.673441125, - 14987.544038774742, - 7031.225798088782, - 373.37455847262544, - -5029.597632278616, - -8576.69626899711, - -9255.611408206478, - -8848.12301578865, - -7842.928262924437, - -7178.104394383703, - -7829.945455435431, - -9799.03296893579, - -12774.722855926639, - -15566.1136951747, - -17498.03054755017, - -17835.720763803703, - -15995.97852016698, - -12441.76801902455, - -8276.4975211711, - -4350.842113644521, - -1299.0992861666384, - -282.1211935955459, - -675.969198757711, - -1566.5873392817396, - -2339.9412130742853, - -1922.4091629043626, - 240.66773459729478, - 3813.088614056522, - 8289.263033473662, - 11910.684909302903, - 14073.863189610956, - 14286.091680846306, - 12485.172993467759, - 10473.130810185537, - 10474.057063582031, - 14847.992689671824, - 25942.525228853054, - 44227.529907650765, - 71211.91930043125, - 101076.71734346535, - 133842.0344304102, - 166404.04495752236, - 188322.59469332267 - ], - "flow:J15:branch107_seg0": [ - 78.17695272087319, - 87.7137377849378, - 92.49810035883189, - 92.3351482289596, - 87.73041974591898, - 79.56691669604295, - 69.05344476816633, - 57.775785336895595, - 47.008204981582914, - 36.92702504236092, - 28.295633534443525, - 20.627965180395396, - 13.403982326455045, - 6.55690996015331, - -0.5699548519631061, - -7.656640898756275, - -14.524984059334184, - -20.937441251770228, - -26.105012487068034, - -30.162214557507447, - -32.90605354541596, - -34.49358088998947, - -35.40220104285346, - -35.846932108272284, - -36.10485358671966, - -36.200695034741294, - -35.96115049292435, - -35.16871405323684, - -33.65836552684392, - -31.429898265393152, - -28.770072766805953, - -26.31438264595184, - -24.686551954375222, - -24.61806141615946, - -26.554688411538166, - -30.499276061337632, - -35.95107801802538, - -42.054891244419636, - -47.71103192085819, - -51.56180287268738, - -52.94971330168983, - -51.282432897130136, - -46.69178343787833, - -39.747277883293606, - -31.633761200179794, - -23.00238615810107, - -15.068565309830452, - -8.46033466227622, - -3.068993322486332, - 0.8692470432673882, - 3.951724160637605, - 6.517088225449094, - 8.670355150453414, - 10.664496744072169, - 12.190829899120532, - 12.947582446514172, - 12.729255296055587, - 11.33936464774505, - 8.897647966783193, - 5.758662167335841, - 2.5007686034398526, - -0.472878655411901, - -2.59676554854661, - -3.756136115974737, - -4.083454098642807, - -3.834643950004895, - -3.495696369547, - -3.469654837262524, - -3.966034006266613, - -4.988507088459503, - -6.238944283165252, - -7.383726415077626, - -7.976535501134793, - -7.759853549696848, - -6.723879462035394, - -5.110462600250012, - -3.2699506613379907, - -1.6654257609412397, - -0.671164565073279, - -0.31339039305400307, - -0.4931004723811457, - -0.854644693170177, - -0.9584664053021915, - -0.47473943210711095, - 0.7029704225127467, - 2.416883942700347, - 4.217618385900678, - 5.677933382295108, - 6.334557180456047, - 6.129408099459044, - 5.405078137238245, - 4.9028268003653706, - 5.655840611159305, - 8.734764996658754, - 14.900902881539418, - 24.572960641859662, - 36.82704212707633, - 51.26499833162787, - 65.72632369675722, - 78.17695272087319 - ], - "pressure:J15:branch107_seg0": [ - 188322.59469332267, - 202283.41825730682, - 206529.3717149342, - 197698.9259920071, - 180744.546203056, - 158748.70069994783, - 133808.76282864378, - 106971.1177218153, - 86074.6469125871, - 66153.16370664393, - 48055.705477494645, - 33912.7399783613, - 17889.111702100352, - 3178.1674245907107, - -12022.852189192976, - -28293.79807219119, - -41910.78704438895, - -55139.34751523065, - -64615.86270952294, - -70912.53575023031, - -75462.64676149571, - -77249.73741372048, - -78222.27301429085, - -78835.96653957774, - -79056.74151271654, - -78981.9730462283, - -77799.54712394362, - -74966.6630040057, - -70418.56803991256, - -64661.58425798792, - -58367.29429199485, - -53747.10459713581, - -52363.910780259415, - -54828.2396108362, - -62366.004876515064, - -73960.25121834251, - -88003.24219382004, - -100967.74260665833, - -112146.036674449, - -116958.01338607253, - -115164.73064796822, - -106955.46222326688, - -92818.43932849204, - -74115.05847954506, - -55537.51155607755, - -37267.586212802504, - -20555.593424302195, - -8985.13624308712, - 616.2532993536412, - 7657.4123960031, - 12753.675153730388, - 18186.37611466241, - 22298.885863520463, - 25857.52499624835, - 28719.797315461827, - 28761.351367394804, - 26461.595695703727, - 21696.673441125, - 14987.544038774742, - 7031.225798088782, - 373.37455847262544, - -5029.597632278616, - -8576.69626899711, - -9255.611408206478, - -8848.12301578865, - -7842.928262924437, - -7178.104394383703, - -7829.945455435431, - -9799.03296893579, - -12774.722855926639, - -15566.1136951747, - -17498.03054755017, - -17835.720763803703, - -15995.97852016698, - -12441.76801902455, - -8276.4975211711, - -4350.842113644521, - -1299.0992861666384, - -282.1211935955459, - -675.969198757711, - -1566.5873392817396, - -2339.9412130742853, - -1922.4091629043626, - 240.66773459729478, - 3813.088614056522, - 8289.263033473662, - 11910.684909302903, - 14073.863189610956, - 14286.091680846306, - 12485.172993467759, - 10473.130810185537, - 10474.057063582031, - 14847.992689671824, - 25942.525228853054, - 44227.529907650765, - 71211.91930043125, - 101076.71734346535, - 133842.0344304102, - 166404.04495752236, - 188322.59469332267 - ], - "flow:branch24_seg0:J16": [ - 82.1837085908402, - 99.31032635117322, - 113.70369110984171, - 124.08573844706649, - 129.65006409743287, - 130.16392421960302, - 126.04139142884593, - 118.38367883853199, - 108.18088523267177, - 96.47429659056894, - 84.37769311706423, - 72.11390521696468, - 59.98322979611179, - 47.998573579095094, - 35.87549261109337, - 23.819277439999336, - 11.748354416867715, - -0.03793679106447034, - -10.957446521562284, - -20.863208065705454, - -29.366520463442377, - -36.364665661908894, - -42.01650462298993, - -46.462831927920185, - -49.97137713042238, - -52.70860947297953, - -54.69781803642953, - -55.867954478531836, - -56.09047988457526, - -55.28120834505106, - -53.54268558059054, - -51.24212244869896, - -48.90834661821881, - -47.30025237854857, - -47.10491879336777, - -48.816276028947726, - -52.505642149814314, - -57.942120548235515, - -64.30076057062396, - -70.49375720980284, - -75.48676936239974, - -78.20388693205813, - -78.02763756342324, - -74.79435725342907, - -68.91809366170358, - -60.88319504867223, - -51.69664343808114, - -42.22381770748407, - -33.00613083160682, - -24.626682418744817, - -17.108637387640183, - -10.408415693057202, - -4.461432628188976, - 0.9018984724173726, - 5.578225794574922, - 9.414922972491532, - 12.175872810729066, - 13.605539195903317, - 13.599089639053451, - 12.280584459041242, - 9.929255705491913, - 6.978706258910383, - 4.029234912596816, - 1.422964635608119, - -0.565953776756076, - -1.8819772391466423, - -2.7320228387122323, - -3.4074757739441925, - -4.198023191752695, - -5.297095955574453, - -6.688942615810578, - -8.220548940926017, - -9.571604731838347, - -10.417184334585162, - -10.5456954582154, - -9.911428360686717, - -8.650114939351232, - -7.072603872812062, - -5.545413587589004, - -4.323334941883735, - -3.552776867497148, - -3.150117840219187, - -2.862602841159795, - -2.3801582714978418, - -1.438646941877998, - 0.0439852450743008, - 1.9432164636789129, - 3.9589714279597192, - 5.648980486946447, - 6.749629463798809, - 7.21070314141084, - 7.352018934307188, - 7.8882717310028, - 9.79486955449872, - 14.124256059647772, - 21.748960337247915, - 32.846994692199736, - 47.42499326142445, - 64.40333378571405, - 82.1837085908402 - ], - "pressure:branch24_seg0:J16": [ - 100197.41098694803, - 119164.36045927039, - 134624.3214506266, - 144853.4681703126, - 149450.04151111364, - 148392.05706614122, - 142265.39976361883, - 132271.84070207865, - 119990.6669830531, - 106262.4778607145, - 92272.4082803719, - 78329.79649914027, - 64431.98898224128, - 50748.22095915278, - 36859.83511112169, - 23046.464976434094, - 9310.249133022195, - -4083.371826623265, - -16207.849477766376, - -27079.130078875936, - -36359.55414412213, - -43826.811520423165, - -49843.77478320873, - -54564.57710647941, - -58268.72794309751, - -61155.68236066506, - -63165.554273469315, - -64194.03888756336, - -64096.598084408986, - -62832.19419797972, - -60540.70832498665, - -57789.762471178285, - -55244.7483947863, - -53738.63871664211, - -54093.6107638768, - -56764.13065406306, - -61654.19271049123, - -68352.67006970532, - -75845.05073515391, - -82691.9819127599, - -87790.43532117532, - -90022.97228707006, - -88760.45698849128, - -83949.38557158015, - -76448.09349637455, - -66687.00983580713, - -55787.646533152416, - -45045.207944711125, - -34672.070113209236, - -25364.556797088284, - -17134.829312226895, - -9667.400834834232, - -3121.5407224090623, - 2764.8931859628683, - 7909.077421859828, - 11951.826156781683, - 14688.290010029992, - 15851.716856039278, - 15355.27892441948, - 13400.843361491434, - 10432.480401091449, - 6939.88157492241, - 3607.378868763489, - 818.6837919170388, - -1232.205480169437, - -2531.3419576756587, - -3373.4477387322836, - -4134.504561332514, - -5118.803619865267, - -6503.656817185726, - -8171.322067357712, - -9918.860626120373, - -11369.457582448842, - -12112.568535356148, - -11983.100963009034, - -11006.616421824267, - -9404.20675656071, - -7517.293201842406, - -5846.283960681147, - -4603.236335350678, - -3859.1809382151473, - -3496.204388840213, - -3164.0133572126274, - -2497.5528175081577, - -1239.3921597393103, - 646.7414062238864, - 2918.1216643849402, - 5198.831665029353, - 6978.382072175042, - 7997.735900818145, - 8327.605778133962, - 8473.318921523978, - 9365.400023243297, - 12188.265790666299, - 18110.046344814215, - 28151.309466597657, - 41998.192735124794, - 59633.7970872772, - 79994.12826272323, - 100197.41098694803 - ], - "flow:J16:branch25_seg0": [ - 65.3416857123591, - 79.07606505938169, - 90.66619867812247, - 99.08314753083206, - 103.65676911011101, - 104.18838668744957, - 100.99865940948453, - 94.95362904712968, - 86.83930830948975, - 77.50460924387711, - 67.83063816485421, - 58.01383268042205, - 48.305180986707065, - 38.70856131115695, - 29.009972783311355, - 19.36033951423575, - 9.69466731848977, - 0.25686082047934805, - -8.506314942959788, - -16.463423401509004, - -23.301661372757774, - -28.940523139195047, - -33.49613637918756, - -37.08239650494004, - -39.91303449084799, - -42.1218809465304, - -43.73244571818104, - -44.68991824542092, - -44.89185540991623, - -44.268995880140416, - -42.89978840319678, - -41.06950621962961, - -39.198517455349, - -37.89074557339598, - -37.696479503381674, - -39.017324759239735, - -41.92283637873893, - -46.2355581163558, - -51.304753606086315, - -56.272578357345424, - -60.30414753621801, - -62.537306319691204, - -62.46922794681082, - -59.95804451229211, - -55.31518192422714, - -48.93116096016951, - -41.606291106222756, - -34.0248888318754, - -26.639017067586153, - -19.912178035992426, - -13.871509640496699, - -8.491467692805385, - -3.713437294077916, - 0.594228040438479, - 4.3532016466269114, - 7.446569930797671, - 9.683926877991114, - 10.86125417057935, - 10.89140964731274, - 9.867651405956472, - 8.007821996399544, - 5.659260695515598, - 3.296588848608572, - 1.1990976179293231, - -0.407627116544836, - -1.4766839771147884, - -2.1675063382026014, - -2.7106395498706357, - -3.3392291056310235, - -4.21067129743083, - -5.318247775572816, - -6.542410415757684, - -7.629270332671304, - -8.320086131029054, - -8.441406619713238, - -7.951915972456652, - -6.956087238185443, - -5.7001776454497595, - -4.4745791508755275, - -3.487670607404048, - -2.860345096972569, - -2.5298917429136387, - -2.2984206762625417, - -1.9187050029672146, - -1.177258855270071, - -0.003922820168000275, - 1.5077528398323166, - 3.119841750729722, - 4.482052253935195, - 5.378968111109483, - 5.762668371820696, - 5.880485060354271, - 6.295427875503573, - 7.782414560279445, - 11.184116839128555, - 17.200151755050012, - 25.99887399827204, - 37.588962910476816, - 51.117354881420695, - 65.3416857123591 - ], - "pressure:J16:branch25_seg0": [ - 100197.41098694803, - 119164.36045927039, - 134624.3214506266, - 144853.4681703126, - 149450.04151111364, - 148392.05706614122, - 142265.39976361883, - 132271.84070207865, - 119990.6669830531, - 106262.4778607145, - 92272.4082803719, - 78329.79649914027, - 64431.98898224128, - 50748.22095915278, - 36859.83511112169, - 23046.464976434094, - 9310.249133022195, - -4083.371826623265, - -16207.849477766376, - -27079.130078875936, - -36359.55414412213, - -43826.811520423165, - -49843.77478320873, - -54564.57710647941, - -58268.72794309751, - -61155.68236066506, - -63165.554273469315, - -64194.03888756336, - -64096.598084408986, - -62832.19419797972, - -60540.70832498665, - -57789.762471178285, - -55244.7483947863, - -53738.63871664211, - -54093.6107638768, - -56764.13065406306, - -61654.19271049123, - -68352.67006970532, - -75845.05073515391, - -82691.9819127599, - -87790.43532117532, - -90022.97228707006, - -88760.45698849128, - -83949.38557158015, - -76448.09349637455, - -66687.00983580713, - -55787.646533152416, - -45045.207944711125, - -34672.070113209236, - -25364.556797088284, - -17134.829312226895, - -9667.400834834232, - -3121.5407224090623, - 2764.8931859628683, - 7909.077421859828, - 11951.826156781683, - 14688.290010029992, - 15851.716856039278, - 15355.27892441948, - 13400.843361491434, - 10432.480401091449, - 6939.88157492241, - 3607.378868763489, - 818.6837919170388, - -1232.205480169437, - -2531.3419576756587, - -3373.4477387322836, - -4134.504561332514, - -5118.803619865267, - -6503.656817185726, - -8171.322067357712, - -9918.860626120373, - -11369.457582448842, - -12112.568535356148, - -11983.100963009034, - -11006.616421824267, - -9404.20675656071, - -7517.293201842406, - -5846.283960681147, - -4603.236335350678, - -3859.1809382151473, - -3496.204388840213, - -3164.0133572126274, - -2497.5528175081577, - -1239.3921597393103, - 646.7414062238864, - 2918.1216643849402, - 5198.831665029353, - 6978.382072175042, - 7997.735900818145, - 8327.605778133962, - 8473.318921523978, - 9365.400023243297, - 12188.265790666299, - 18110.046344814215, - 28151.309466597657, - 41998.192735124794, - 59633.7970872772, - 79994.12826272323, - 100197.41098694803 - ], - "flow:J16:branch140_seg0": [ - 16.842022878481163, - 20.234261291791903, - 23.037492431719443, - 25.002590916234546, - 25.99329498732235, - 25.975537532155595, - 25.042732019361768, - 23.430049791404784, - 21.341576923181737, - 18.969687346692563, - 16.54705495221283, - 14.100072536544404, - 11.67804880940155, - 9.290012267933955, - 6.865519827784183, - 4.458937925763438, - 2.0536870983757782, - -0.294797611544892, - -2.45113157860177, - -4.399784664197042, - -6.0648590906843935, - -7.424142522710075, - -8.520368243800267, - -9.380435422977056, - -10.058342639570247, - -10.586728526447056, - -10.965372318248894, - -11.178036233110507, - -11.198624474662061, - -11.012212464910652, - -10.64289717739649, - -10.172616229069687, - -9.709829162870744, - -9.409506805155026, - -9.408439289987346, - -9.79895126970928, - -10.582805771075236, - -11.706562431879549, - -12.996006964537743, - -14.221178852459008, - -15.182621826179735, - -15.666580612368067, - -15.558409616613007, - -14.836312741137007, - -13.602911737476479, - -11.952034088502419, - -10.090352331858508, - -8.19892887560889, - -6.367113764020823, - -4.714504382752273, - -3.237127747143511, - -1.916948000251821, - -0.7479953341111032, - 0.3076704319789434, - 1.2250241479480193, - 1.9683530416939834, - 2.4919459327379974, - 2.7442850253240425, - 2.707679991740884, - 2.41293305308487, - 1.9214337090923046, - 1.3194455633946702, - 0.7326460639879977, - 0.223867017678838, - -0.15832666021150224, - -0.4052932620315612, - -0.5645165005097048, - -0.6968362240739826, - -0.8587940861215024, - -1.0864246581434411, - -1.3706948402378099, - -1.6781385251681273, - -1.9423343991671211, - -2.0970982035560652, - -2.1042888385020557, - -1.9595123882301173, - -1.6940277011658338, - -1.3724262273622478, - -1.070834436713593, - -0.8356643344796738, - -0.6924317705245684, - -0.6202260973055663, - -0.5641821648971711, - -0.4614532685306186, - -0.26138808660797824, - 0.04790806524232612, - 0.435463623846686, - 0.8391296772299867, - 1.1669282330112594, - 1.3706613526893718, - 1.4480347695901936, - 1.4715338739528785, - 1.5928438554991755, - 2.0124549942192487, - 2.940139220519352, - 4.548808582197937, - 6.848120693927704, - 9.836030350947876, - 13.285978904293655, - 16.842022878481163 - ], - "pressure:J16:branch140_seg0": [ - 100197.41098694803, - 119164.36045927039, - 134624.3214506266, - 144853.4681703126, - 149450.04151111364, - 148392.05706614122, - 142265.39976361883, - 132271.84070207865, - 119990.6669830531, - 106262.4778607145, - 92272.4082803719, - 78329.79649914027, - 64431.98898224128, - 50748.22095915278, - 36859.83511112169, - 23046.464976434094, - 9310.249133022195, - -4083.371826623265, - -16207.849477766376, - -27079.130078875936, - -36359.55414412213, - -43826.811520423165, - -49843.77478320873, - -54564.57710647941, - -58268.72794309751, - -61155.68236066506, - -63165.554273469315, - -64194.03888756336, - -64096.598084408986, - -62832.19419797972, - -60540.70832498665, - -57789.762471178285, - -55244.7483947863, - -53738.63871664211, - -54093.6107638768, - -56764.13065406306, - -61654.19271049123, - -68352.67006970532, - -75845.05073515391, - -82691.9819127599, - -87790.43532117532, - -90022.97228707006, - -88760.45698849128, - -83949.38557158015, - -76448.09349637455, - -66687.00983580713, - -55787.646533152416, - -45045.207944711125, - -34672.070113209236, - -25364.556797088284, - -17134.829312226895, - -9667.400834834232, - -3121.5407224090623, - 2764.8931859628683, - 7909.077421859828, - 11951.826156781683, - 14688.290010029992, - 15851.716856039278, - 15355.27892441948, - 13400.843361491434, - 10432.480401091449, - 6939.88157492241, - 3607.378868763489, - 818.6837919170388, - -1232.205480169437, - -2531.3419576756587, - -3373.4477387322836, - -4134.504561332514, - -5118.803619865267, - -6503.656817185726, - -8171.322067357712, - -9918.860626120373, - -11369.457582448842, - -12112.568535356148, - -11983.100963009034, - -11006.616421824267, - -9404.20675656071, - -7517.293201842406, - -5846.283960681147, - -4603.236335350678, - -3859.1809382151473, - -3496.204388840213, - -3164.0133572126274, - -2497.5528175081577, - -1239.3921597393103, - 646.7414062238864, - 2918.1216643849402, - 5198.831665029353, - 6978.382072175042, - 7997.735900818145, - 8327.605778133962, - 8473.318921523978, - 9365.400023243297, - 12188.265790666299, - 18110.046344814215, - 28151.309466597657, - 41998.192735124794, - 59633.7970872772, - 79994.12826272323, - 100197.41098694803 - ], - "flow:branch25_seg0:J17": [ - 65.34026932042416, - 79.0748552951955, - 90.66525562547798, - 99.08261985532658, - 103.65668699708544, - 104.18866143084384, - 100.99918629898924, - 94.95450380674207, - 86.84022531214926, - 77.5055178847982, - 67.83164627480208, - 58.01477839548927, - 48.3061311297414, - 38.70952843495567, - 29.010884980304176, - 19.361305767858948, - 9.695640289656046, - 0.2577264887446491, - -8.505499461518514, - -16.46271495255266, - -23.30107607660557, - -28.94004377078181, - -33.49576494273263, - -37.08210340659094, - -39.91280210407537, - -42.12170703776496, - -43.732336931619116, - -44.68988505255919, - -44.89191202200978, - -44.2691234368903, - -42.899979204731984, - -41.069706454225724, - -39.19865536820412, - -37.890790871797776, - -37.6963819995037, - -39.01707321542123, - -41.922413011329326, - -46.23506630876734, - -51.30425143654473, - -56.27213818450584, - -60.30389587250215, - -62.537263088866936, - -62.46943205610026, - -59.95847275611779, - -55.31579483081678, - -48.931899586910234, - -41.60707535511811, - -34.02564965955041, - -26.639710404998457, - -19.91280380709555, - -13.872062450412082, - -8.491976834096949, - -3.71387617069129, - 0.5938495817343956, - 4.3528652716114795, - 7.446328482584005, - 9.68379481389179, - 10.861233856384185, - 10.891488638019489, - 9.867842537078518, - 8.008053371325964, - 5.659474230026054, - 3.2968134629791064, - 1.1992704976226587, - -0.4075186700912874, - -1.4766099736427811, - -2.16745329434605, - -2.7105833554787533, - -3.3391479972703793, - -4.2105628531341575, - -5.318124385495923, - -6.542291775255094, - -7.629187290274926, - -8.32006139441892, - -8.441449463449848, - -7.952015849117013, - -6.956214308442808, - -5.700316222866618, - -4.474684937733963, - -3.4877336378408357, - -2.86038016986076, - -2.529913205995081, - -2.298452303447992, - -1.9187715176868954, - -1.1773655409001391, - -0.004075654630666961, - 1.507588985945212, - 3.119710944273127, - 4.481949712437963, - 5.378919842818817, - 5.7626610167985195, - 5.88046340610341, - 6.295314956275373, - 7.782125878051144, - 11.183570461816194, - 17.199310339295263, - 25.99776450667017, - 37.587592078759045, - 51.11583220006635, - 65.34026932042416 - ], - "pressure:branch25_seg0:J17": [ - 99427.43115641548, - 118420.87418956892, - 133951.42992487704, - 144320.2521644928, - 149078.6120570523, - 148179.27637377067, - 142197.0904545859, - 132340.31734532438, - 120134.47130629298, - 106461.87291499508, - 92512.82277809165, - 78585.07985332458, - 64714.70483049782, - 51052.793843394036, - 37189.45317513703, - 23405.152999461476, - 9686.301939831872, - -3694.799387348884, - -15830.171650839728, - -26725.97365431119, - -36033.10318448498, - -43537.245478165794, - -49586.356783111165, - -54333.173107355025, - -58059.68902733321, - -60964.91153230161, - -62996.5418661126, - -64052.837043607185, - -63989.38360927978, - -62759.39236957744, - -60500.628887128405, - -57765.21555105269, - -55211.98388486941, - -53675.866611303165, - -53974.733139348056, - -56572.86510267381, - -61389.72587658209, - -68032.46834847884, - -75491.70518009127, - -82349.37629782864, - -87498.31238810353, - -89810.04701551724, - -88650.52344921281, - -83951.86480952999, - -76539.60785812773, - -66850.24936032674, - -56005.352842999884, - -45274.430263529764, - -34902.55576161497, - -25585.378343948272, - -17336.21939131341, - -9862.815505995639, - -3304.1233381604193, - 2594.9902103276236, - 7749.7635390083715, - 11818.757010822786, - 14590.780152411297, - 15797.372124384809, - 15348.02118412932, - 13439.979575892106, - 10502.084080757517, - 7025.810176557135, - 3696.0528175306954, - 893.5331711678494, - -1175.2327616145558, - -2491.173146711127, - -3343.8486616781333, - -4104.464126075148, - -5079.219512680976, - -6449.67586278374, - -8107.006276988576, - -9851.845939992236, - -11309.446882218705, - -12072.660944061738, - -11969.870077482776, - -11019.077184579259, - -9434.689370071228, - -7558.577181062157, - -5882.825405110907, - -4627.203162294567, - -3871.28476755272, - -3499.9633161847173, - -3169.0323683733536, - -2515.039588307158, - -1276.3298835544344, - 588.1599555536864, - 2846.7339155251784, - 5126.523014361675, - 6917.183955969272, - 7957.53882905335, - 8305.313626881783, - 8451.740102267466, - 9314.899770007589, - 12070.913991771296, - 17888.700563693, - 27787.820799903435, - 41498.64812332769, - 59007.89558685174, - 79247.40951360918, - 99427.43115641548 - ], - "flow:J17:branch26_seg0": [ - 52.257263079049345, - 63.36221977889358, - 72.78006881654001, - 79.67744492492889, - 83.48690872272466, - 84.03643101027984, - 81.57436639853722, - 76.7826060882561, - 70.2901841974627, - 62.797249307537406, - 55.00226737097412, - 47.0837674511978, - 39.2548776550316, - 31.51080775892897, - 23.694418374379957, - 15.911716430815302, - 8.11136259724401, - 0.4970151741574265, - -6.594779535476573, - -13.041598595311582, - -18.588551497606865, - -23.174478659355227, - -26.88049517897821, - -29.80018287116911, - -32.10569265534782, - -33.90505285423702, - -35.22251113025602, - -36.01589501107716, - -36.20281630520231, - -35.72556642019393, - -34.64374972553456, - -33.17854770955926, - -31.66615032567679, - -30.590252714153085, - -30.3949066175349, - -31.410392966757136, - -33.70628821384716, - -37.14586292789065, - -41.213966790211146, - -45.23278954737135, - -48.52037830698517, - -50.38083925291781, - -50.39987806805599, - -48.45266947883911, - -44.76819569587186, - -39.66580356477176, - -33.78690081022424, - -27.671832922436707, - -21.706771828833993, - -16.26147034577375, - -11.365590637271593, - -7.00968517076422, - -3.1381350240590375, - 0.3512157968953129, - 3.398955396663444, - 5.916582211559317, - 7.748876296374631, - 8.731728014418847, - 8.791773747825365, - 7.997684492925846, - 6.519826893530226, - 4.638897877849323, - 2.7307994540992997, - 1.0272248298081268, - -0.28341240106697774, - -1.1614787061609242, - -1.7290690067956487, - -2.1693775754166453, - -2.671964689573629, - -3.3663088902745084, - -4.25319921820899, - -5.239045957699109, - -6.121174121302041, - -6.692683382945381, - -6.809262774054883, - -6.432723395434134, - -5.643174468811873, - -4.636934226630448, - -3.645023974099423, - -2.8400277210641898, - -2.323467531314643, - -2.0487945504630587, - -1.8609208565722826, - -1.561361406487035, - -0.9757896115163568, - -0.04292513700168892, - 1.1678785246264696, - 2.46675780793379, - 3.575407945078451, - 4.315122466881019, - 4.639253815490992, - 4.738654460576222, - 5.058371558088907, - 6.217584697607294, - 8.896691973438383, - 13.66004425867018, - 20.67187756492783, - 29.942768598087028, - 40.79075738493723, - 52.257263079049345 - ], - "pressure:J17:branch26_seg0": [ - 99427.43115641548, - 118420.87418956892, - 133951.42992487704, - 144320.2521644928, - 149078.6120570523, - 148179.27637377067, - 142197.0904545859, - 132340.31734532438, - 120134.47130629298, - 106461.87291499508, - 92512.82277809165, - 78585.07985332458, - 64714.70483049782, - 51052.793843394036, - 37189.45317513703, - 23405.152999461476, - 9686.301939831872, - -3694.799387348884, - -15830.171650839728, - -26725.97365431119, - -36033.10318448498, - -43537.245478165794, - -49586.356783111165, - -54333.173107355025, - -58059.68902733321, - -60964.91153230161, - -62996.5418661126, - -64052.837043607185, - -63989.38360927978, - -62759.39236957744, - -60500.628887128405, - -57765.21555105269, - -55211.98388486941, - -53675.866611303165, - -53974.733139348056, - -56572.86510267381, - -61389.72587658209, - -68032.46834847884, - -75491.70518009127, - -82349.37629782864, - -87498.31238810353, - -89810.04701551724, - -88650.52344921281, - -83951.86480952999, - -76539.60785812773, - -66850.24936032674, - -56005.352842999884, - -45274.430263529764, - -34902.55576161497, - -25585.378343948272, - -17336.21939131341, - -9862.815505995639, - -3304.1233381604193, - 2594.9902103276236, - 7749.7635390083715, - 11818.757010822786, - 14590.780152411297, - 15797.372124384809, - 15348.02118412932, - 13439.979575892106, - 10502.084080757517, - 7025.810176557135, - 3696.0528175306954, - 893.5331711678494, - -1175.2327616145558, - -2491.173146711127, - -3343.8486616781333, - -4104.464126075148, - -5079.219512680976, - -6449.67586278374, - -8107.006276988576, - -9851.845939992236, - -11309.446882218705, - -12072.660944061738, - -11969.870077482776, - -11019.077184579259, - -9434.689370071228, - -7558.577181062157, - -5882.825405110907, - -4627.203162294567, - -3871.28476755272, - -3499.9633161847173, - -3169.0323683733536, - -2515.039588307158, - -1276.3298835544344, - 588.1599555536864, - 2846.7339155251784, - 5126.523014361675, - 6917.183955969272, - 7957.53882905335, - 8305.313626881783, - 8451.740102267466, - 9314.899770007589, - 12070.913991771296, - 17888.700563693, - 27787.820799903435, - 41498.64812332769, - 59007.89558685174, - 79247.40951360918, - 99427.43115641548 - ], - "flow:J17:branch44_seg0": [ - 13.083006241374905, - 15.712635516301805, - 17.885186808938617, - 19.405174930397912, - 20.16977827436115, - 20.152230420565107, - 19.424819900451304, - 18.171897718484583, - 16.550041114687442, - 14.708268577259398, - 12.82937890382965, - 10.93101094429197, - 9.051253474711269, - 7.198720676026892, - 5.316466605925555, - 3.4495893370473203, - 1.5842776924106248, - -0.23928868541410572, - -1.910719926038393, - -3.421116357241422, - -4.712524578997697, - -5.765565111425254, - -6.615269763750225, - -7.281920535420805, - -7.807109448728086, - -8.21665418352863, - -8.509825801364977, - -8.673990041482025, - -8.689095716808664, - -8.543557016696337, - -8.256229479197996, - -7.89115874466554, - -7.532505042525637, - -7.300538157643535, - -7.3014753819675935, - -7.606680248664153, - -8.21612479747991, - -9.089203380877628, - -10.09028464633278, - -11.039348637133974, - -11.783517565517906, - -12.15642383594888, - -12.069553988045413, - -11.505803277278424, - -10.547599134944713, - -9.26609602213819, - -7.820174544894186, - -6.353816737113721, - -4.932938576164243, - -3.651333461321872, - -2.506471813140429, - -1.482291663332876, - -0.5757411466322548, - 0.24263378483903764, - 0.9539098749479967, - 1.5297462710245153, - 1.9349185175171681, - 2.1295058419653676, - 2.0997148901941665, - 1.8701580441528354, - 1.4882264777959464, - 1.020576352176721, - 0.5660140088797649, - 0.17204566781457378, - -0.124106269024213, - -0.3151312674817813, - -0.43838428755036024, - -0.5412057800620983, - -0.6671833076968157, - -0.844253962859594, - -1.0649251672870474, - -1.3032458175559014, - -1.5080131689727863, - -1.6273780114735863, - -1.6321866893950276, - -1.5192924536828876, - -1.3130398396309497, - -1.063381996236239, - -0.8296609636346308, - -0.6477059167767104, - -0.5369126385461799, - -0.4811186555320396, - -0.43753144687569284, - -0.357410111199871, - -0.2015759293837771, - 0.03884948237101179, - 0.3397104613187733, - 0.652953136339292, - 0.906541767359512, - 1.0637973759378054, - 1.1234072013075345, - 1.1418089455272145, - 1.2369433981863176, - 1.5645411804439218, - 2.2868784883776554, - 3.5392660806249587, - 5.325886941742467, - 7.644823480672103, - 10.325074815129351, - 13.083006241374905 - ], - "pressure:J17:branch44_seg0": [ - 99427.43115641548, - 118420.87418956892, - 133951.42992487704, - 144320.2521644928, - 149078.6120570523, - 148179.27637377067, - 142197.0904545859, - 132340.31734532438, - 120134.47130629298, - 106461.87291499508, - 92512.82277809165, - 78585.07985332458, - 64714.70483049782, - 51052.793843394036, - 37189.45317513703, - 23405.152999461476, - 9686.301939831872, - -3694.799387348884, - -15830.171650839728, - -26725.97365431119, - -36033.10318448498, - -43537.245478165794, - -49586.356783111165, - -54333.173107355025, - -58059.68902733321, - -60964.91153230161, - -62996.5418661126, - -64052.837043607185, - -63989.38360927978, - -62759.39236957744, - -60500.628887128405, - -57765.21555105269, - -55211.98388486941, - -53675.866611303165, - -53974.733139348056, - -56572.86510267381, - -61389.72587658209, - -68032.46834847884, - -75491.70518009127, - -82349.37629782864, - -87498.31238810353, - -89810.04701551724, - -88650.52344921281, - -83951.86480952999, - -76539.60785812773, - -66850.24936032674, - -56005.352842999884, - -45274.430263529764, - -34902.55576161497, - -25585.378343948272, - -17336.21939131341, - -9862.815505995639, - -3304.1233381604193, - 2594.9902103276236, - 7749.7635390083715, - 11818.757010822786, - 14590.780152411297, - 15797.372124384809, - 15348.02118412932, - 13439.979575892106, - 10502.084080757517, - 7025.810176557135, - 3696.0528175306954, - 893.5331711678494, - -1175.2327616145558, - -2491.173146711127, - -3343.8486616781333, - -4104.464126075148, - -5079.219512680976, - -6449.67586278374, - -8107.006276988576, - -9851.845939992236, - -11309.446882218705, - -12072.660944061738, - -11969.870077482776, - -11019.077184579259, - -9434.689370071228, - -7558.577181062157, - -5882.825405110907, - -4627.203162294567, - -3871.28476755272, - -3499.9633161847173, - -3169.0323683733536, - -2515.039588307158, - -1276.3298835544344, - 588.1599555536864, - 2846.7339155251784, - 5126.523014361675, - 6917.183955969272, - 7957.53882905335, - 8305.313626881783, - 8451.740102267466, - 9314.899770007589, - 12070.913991771296, - 17888.700563693, - 27787.820799903435, - 41498.64812332769, - 59007.89558685174, - 79247.40951360918, - 99427.43115641548 - ], - "flow:branch26_seg0:J18": [ - 52.25307555588596, - 63.35862863083536, - 72.77725740819321, - 79.67585469391881, - 83.48662712348532, - 84.03720512977007, - 81.57589933953612, - 76.78515341729536, - 70.29288150697022, - 62.7999391563125, - 55.00523823105615, - 47.08656568594893, - 39.257687262953844, - 31.513665932324177, - 23.697127037856816, - 15.914572686962549, - 8.114238807096047, - 0.49959348249236585, - -6.592359786669717, - -13.039494919660747, - -18.58680734440642, - -23.17305352287133, - -26.879388082715124, - -29.79930950074528, - -32.10500158995518, - -33.90453385348472, - -35.222184075866494, - -36.01579036346284, - -36.20297518105566, - -35.7259357002305, - -34.6443078526407, - -33.179137178843305, - -31.666563217264596, - -30.59039718187281, - -30.39463186149955, - -31.40966138434616, - -33.70505363653508, - -37.144413586968064, - -41.21247828466737, - -45.23148015676345, - -48.519615669592724, - -50.38069081521075, - -50.40046324634328, - -48.453927598275925, - -44.76999690821639, - -39.66797835484122, - -33.78922303101278, - -27.67408209088237, - -21.70882881124413, - -16.26332667127754, - -11.367226050102024, - -7.01119343039425, - -3.1394355739772535, - 0.35009364225910194, - 3.397957719380578, - 5.915861814568252, - 7.748476282427428, - 8.731656461780734, - 8.791998615212004, - 7.9982376852270605, - 6.52050639032841, - 4.639534186060039, - 2.7314647654768747, - 1.0277396871747393, - -0.2830854353744568, - -1.1612568202005407, - -1.7289114129108412, - -2.1692121184659574, - -2.671726661770991, - -3.3659889429290604, - -4.25283481146311, - -5.238694820543778, - -6.1209249148903595, - -6.6926058080909385, - -6.809384283810311, - -6.433013833629539, - -5.643546568847028, - -4.637342845657221, - -3.645338313417562, - -2.8402171428099696, - -2.3235741678045394, - -2.0488588153244582, - -1.8610129109842157, - -1.5615541118346035, - -0.9761014196752883, - -0.043372195385890176, - 1.1673950129032933, - 2.4663659104193845, - 3.575100680392201, - 4.314975958418189, - 4.639229804712052, - 4.738592732815263, - 5.058046159186947, - 6.216745709611411, - 8.895096592787226, - 13.657570318316646, - 20.668613350220387, - 29.938744563293763, - 40.78626064835088, - 52.25307555588596 - ], - "pressure:branch26_seg0:J18": [ - 98385.92640079554, - 117422.63881679134, - 133063.0774829879, - 143634.88758830517, - 148625.5483576112, - 147953.7411557411, - 142178.2719420078, - 132509.36769823494, - 120406.93783342291, - 106810.00402673546, - 92909.67267954153, - 78996.68014294164, - 65157.08808710755, - 51517.26494933376, - 37683.01216006689, - 23931.255811773994, - 10229.020884239004, - -3140.7503369250608, - -15298.367429023108, - -26234.58327291807, - -35585.451721567835, - -43146.8162855005, - -49245.48331651244, - -54032.805338807004, - -57793.737041427004, - -60726.98309118561, - -62790.78473908624, - -63887.13048020776, - -63871.84539752091, - -62690.64586008942, - -60477.63859322173, - -57763.62751304014, - -55199.11438552454, - -53620.0955536476, - -53839.847646827926, - -56336.384329717024, - -61051.6730662079, - -67617.02832329331, - -75031.63858387207, - -81907.09343150862, - -87128.484918356, - -89553.69582148355, - -88540.16233164053, - -83998.9851845556, - -76711.19680073479, - -67120.60644988564, - -56347.43928395145, - -45628.677094122235, - -35253.837384371516, - -25917.165732421538, - -17636.08187695854, - -10148.679207026762, - -3567.8036766279934, - 2352.0163071618595, - 7525.563251632867, - 11633.833071551111, - 14457.531880493612, - 15726.431948010862, - 15344.47017981858, - 13501.481642933604, - 10606.201167778321, - 7153.003996958429, - 3825.260963839472, - 1001.9401266515563, - -1093.1579277593935, - -2434.3463381288925, - -3303.065392146341, - -4064.020581808726, - -5026.183872855061, - -6377.089113226282, - -8020.262680588127, - -9761.654520478904, - -11229.69855118176, - -12021.542830443608, - -11956.483311720049, - -11041.990373125183, - -9483.21816338986, - -7621.717760060555, - -5938.87182438893, - -4665.247370290798, - -3891.608696489863, - -3507.692626986413, - -3177.8510910306527, - -2540.75246184218, - -1328.9427762970397, - 505.7762008598712, - 2746.905384495474, - 5025.59320056185, - 6832.886453301861, - 7903.640666738259, - 8277.429298931202, - 8426.153583868483, - 9250.26834993864, - 11914.433709643687, - 17588.67736225749, - 27292.3996716764, - 40815.985644544875, - 58152.20557364013, - 78232.46496685054, - 98385.92640079554 - ], - "flow:J18:branch27_seg0": [ - 36.11225425255321, - 43.803585581452985, - 50.33467280220491, - 55.1263009737574, - 57.783402790780684, - 58.184301229783436, - 56.49854043011864, - 53.19595793198943, - 48.71097144318853, - 43.529303625362445, - 38.134411327098825, - 32.65199569860567, - 27.230717171646386, - 21.86786580617494, - 16.455624806141437, - 11.066541481719003, - 5.665047420172578, - 0.3911941115003875, - -4.522513452181445, - -8.990730267536634, - -12.837189033093214, - -16.018592445781277, - -18.590309219703165, - -20.61685755082987, - -22.21711780339963, - -23.466212204464323, - -24.381422383815316, - -24.933975679135784, - -25.06707236692581, - -24.740571114660526, - -23.99514558330861, - -22.982881530684917, - -21.935872770716475, - -21.188272570033725, - -21.047639152638673, - -21.7433902700256, - -23.325153628782857, - -25.69983809828099, - -28.51254387089054, - -31.29525141352036, - -33.575889940692875, - -34.87240604960941, - -34.896598031851624, - -33.56017426665042, - -31.01971419797123, - -27.495480000993485, - -23.429870595090275, - -19.197427331939114, - -15.066387141890235, - -11.293124566231633, - -7.899876803098572, - -4.880589510673035, - -2.196929701364341, - 0.22148643157122014, - 2.334384638801817, - 4.080897022042055, - 5.353770081811803, - 6.039470418074865, - 6.0866838127132326, - 5.542213083412438, - 4.52309794006864, - 3.2232729417910764, - 1.9025408777736144, - 0.7217481726297732, - -0.18806025214526392, - -0.798603836825906, - -1.1935412507260896, - -1.4992420089728355, - -1.8469075138863653, - -2.3265570710861545, - -2.939462602362418, - -3.6214397310092465, - -4.232808065840989, - -4.630364411672936, - -4.713838563590342, - -4.456131125947336, - -3.9119928957522836, - -3.216683834669821, - -2.529848533106406, - -1.9713821724328096, - -1.6120201657265023, - -1.4203656949636065, - -1.289721066658423, - -1.0829534695068392, - -0.6791912618574751, - -0.03540937628531643, - 0.8012793139205283, - 1.700062419847125, - 2.468698365188353, - 2.9830856476081316, - 3.210003697942476, - 3.2801897958225643, - 3.500265658152035, - 4.297862740531863, - 6.143670367977172, - 9.429154351606579, - 14.270263378511476, - 20.675435589630897, - 28.176700337525347, - 36.11225425255321 - ], - "pressure:J18:branch27_seg0": [ - 98385.92640079554, - 117422.63881679134, - 133063.0774829879, - 143634.88758830517, - 148625.5483576112, - 147953.7411557411, - 142178.2719420078, - 132509.36769823494, - 120406.93783342291, - 106810.00402673546, - 92909.67267954153, - 78996.68014294164, - 65157.08808710755, - 51517.26494933376, - 37683.01216006689, - 23931.255811773994, - 10229.020884239004, - -3140.7503369250608, - -15298.367429023108, - -26234.58327291807, - -35585.451721567835, - -43146.8162855005, - -49245.48331651244, - -54032.805338807004, - -57793.737041427004, - -60726.98309118561, - -62790.78473908624, - -63887.13048020776, - -63871.84539752091, - -62690.64586008942, - -60477.63859322173, - -57763.62751304014, - -55199.11438552454, - -53620.0955536476, - -53839.847646827926, - -56336.384329717024, - -61051.6730662079, - -67617.02832329331, - -75031.63858387207, - -81907.09343150862, - -87128.484918356, - -89553.69582148355, - -88540.16233164053, - -83998.9851845556, - -76711.19680073479, - -67120.60644988564, - -56347.43928395145, - -45628.677094122235, - -35253.837384371516, - -25917.165732421538, - -17636.08187695854, - -10148.679207026762, - -3567.8036766279934, - 2352.0163071618595, - 7525.563251632867, - 11633.833071551111, - 14457.531880493612, - 15726.431948010862, - 15344.47017981858, - 13501.481642933604, - 10606.201167778321, - 7153.003996958429, - 3825.260963839472, - 1001.9401266515563, - -1093.1579277593935, - -2434.3463381288925, - -3303.065392146341, - -4064.020581808726, - -5026.183872855061, - -6377.089113226282, - -8020.262680588127, - -9761.654520478904, - -11229.69855118176, - -12021.542830443608, - -11956.483311720049, - -11041.990373125183, - -9483.21816338986, - -7621.717760060555, - -5938.87182438893, - -4665.247370290798, - -3891.608696489863, - -3507.692626986413, - -3177.8510910306527, - -2540.75246184218, - -1328.9427762970397, - 505.7762008598712, - 2746.905384495474, - 5025.59320056185, - 6832.886453301861, - 7903.640666738259, - 8277.429298931202, - 8426.153583868483, - 9250.26834993864, - 11914.433709643687, - 17588.67736225749, - 27292.3996716764, - 40815.985644544875, - 58152.20557364013, - 78232.46496685054, - 98385.92640079554 - ], - "flow:J18:branch122_seg0": [ - 16.14082130333277, - 19.555043049382505, - 22.44258460598888, - 24.549553720161207, - 25.703224332705144, - 25.852903899987837, - 25.07735890941769, - 23.589195485305368, - 21.581910063781837, - 19.270635530950532, - 16.870826903955273, - 14.43456998734432, - 12.02697009130711, - 9.645800126148472, - 7.241502231715018, - 4.848031205243862, - 2.4491913869252446, - 0.10839937099258472, - -2.069846334486661, - -4.048764652125649, - -5.749618311311969, - -7.1544610770905095, - -8.28907886301283, - -9.182451949915855, - -9.887883786554422, - -10.438321649020764, - -10.840761692051542, - -11.08181468432615, - -11.135902814131724, - -10.985364585570379, - -10.649162269332091, - -10.1962556481594, - -9.730690446549021, - -9.402124611839968, - -9.346992708862468, - -9.666271114319823, - -10.379900007752097, - -11.444575488686725, - -12.699934413776209, - -13.936228743242324, - -14.943725728899265, - -15.508284765600864, - -15.503865214490968, - -14.893753331625502, - -13.750282710245274, - -12.172498353848182, - -10.35935243592236, - -8.476654758943258, - -6.642441669353893, - -4.970202105045833, - -3.467349247003552, - -2.130603919721323, - -0.9425058726129412, - 0.12860721068781833, - 1.0635730805787587, - 1.8349647925261965, - 2.3947062006155737, - 2.6921860437057714, - 2.70531480249869, - 2.4560246018145566, - 1.997408450259721, - 1.4162612442691533, - 0.8289238877032878, - 0.3059915145450886, - -0.09502518322933776, - -0.36265298337462, - -0.5353701621846964, - -0.6699701094931467, - -0.8248191478846949, - -1.0394318718429234, - -1.3133722091006936, - -1.6172550895344466, - -1.888116849049288, - -2.062241396417964, - -2.0955457202199894, - -1.9768827076821776, - -1.7315536730946648, - -1.4206590109873811, - -1.115489780311148, - -0.8688349703771382, - -0.7115540020780444, - -0.6284931203608566, - -0.5712918443257703, - -0.4786006423277846, - -0.2969101578178309, - -0.007962819100559834, - 0.3661156989827625, - 0.7663034905722768, - 1.106402315203837, - 1.3318903108100768, - 1.4292261067695677, - 1.45840293699272, - 1.5577805010349604, - 1.9188829690794509, - 2.7514262248102734, - 4.228415966710152, - 6.39834997170866, - 9.263308973663081, - 12.609560310825465, - 16.14082130333277 - ], - "pressure:J18:branch122_seg0": [ - 98385.92640079554, - 117422.63881679134, - 133063.0774829879, - 143634.88758830517, - 148625.5483576112, - 147953.7411557411, - 142178.2719420078, - 132509.36769823494, - 120406.93783342291, - 106810.00402673546, - 92909.67267954153, - 78996.68014294164, - 65157.08808710755, - 51517.26494933376, - 37683.01216006689, - 23931.255811773994, - 10229.020884239004, - -3140.7503369250608, - -15298.367429023108, - -26234.58327291807, - -35585.451721567835, - -43146.8162855005, - -49245.48331651244, - -54032.805338807004, - -57793.737041427004, - -60726.98309118561, - -62790.78473908624, - -63887.13048020776, - -63871.84539752091, - -62690.64586008942, - -60477.63859322173, - -57763.62751304014, - -55199.11438552454, - -53620.0955536476, - -53839.847646827926, - -56336.384329717024, - -61051.6730662079, - -67617.02832329331, - -75031.63858387207, - -81907.09343150862, - -87128.484918356, - -89553.69582148355, - -88540.16233164053, - -83998.9851845556, - -76711.19680073479, - -67120.60644988564, - -56347.43928395145, - -45628.677094122235, - -35253.837384371516, - -25917.165732421538, - -17636.08187695854, - -10148.679207026762, - -3567.8036766279934, - 2352.0163071618595, - 7525.563251632867, - 11633.833071551111, - 14457.531880493612, - 15726.431948010862, - 15344.47017981858, - 13501.481642933604, - 10606.201167778321, - 7153.003996958429, - 3825.260963839472, - 1001.9401266515563, - -1093.1579277593935, - -2434.3463381288925, - -3303.065392146341, - -4064.020581808726, - -5026.183872855061, - -6377.089113226282, - -8020.262680588127, - -9761.654520478904, - -11229.69855118176, - -12021.542830443608, - -11956.483311720049, - -11041.990373125183, - -9483.21816338986, - -7621.717760060555, - -5938.87182438893, - -4665.247370290798, - -3891.608696489863, - -3507.692626986413, - -3177.8510910306527, - -2540.75246184218, - -1328.9427762970397, - 505.7762008598712, - 2746.905384495474, - 5025.59320056185, - 6832.886453301861, - 7903.640666738259, - 8277.429298931202, - 8426.153583868483, - 9250.26834993864, - 11914.433709643687, - 17588.67736225749, - 27292.3996716764, - 40815.985644544875, - 58152.20557364013, - 78232.46496685054, - 98385.92640079554 - ], - "flow:branch27_seg0:J19": [ - 36.109986158987525, - 43.80162785185144, - 50.33313185164781, - 55.125415734950565, - 57.783219941978054, - 58.18469083630678, - 56.49935111292558, - 53.19730849576274, - 48.71242122600355, - 43.530762152860774, - 38.13601352880227, - 32.653513067037565, - 27.232239274374802, - 21.869413248220457, - 16.457099933829017, - 11.068088531173798, - 5.666606078671565, - 0.39260408615928405, - -4.521195823614658, - -8.989582914362058, - -12.836233729612891, - -16.017813926417936, - -18.589702350689457, - -20.6163790906239, - -22.216740039175825, - -23.465927229013865, - -24.381240999373034, - -24.93391389928645, - -25.067151869998295, - -24.74076509818329, - -23.9954432382179, - -22.983198756792646, - -21.936100279147503, - -21.18835888131359, - -21.04750080576418, - -21.743003963366718, - -23.324498033054905, - -25.699057037664012, - -28.511735342716126, - -31.29453595076014, - -33.57546253792361, - -34.872309557570155, - -34.896900579640054, - -33.56084813809836, - -31.020681129189565, - -27.496651904883088, - -23.431130627698433, - -19.19864593077226, - -15.067507229033685, - -11.294134882385562, - -7.900764387231234, - -4.881409093153861, - -2.1976364146268477, - 0.2208757213686484, - 2.3338415740036904, - 4.08050169418594, - 5.353545934420356, - 6.039422765949946, - 6.086798674419373, - 5.5425035985991, - 4.523462269294348, - 3.223620733402696, - 1.9029023102428773, - 0.7220301220120707, - -0.18787829026599293, - -0.7984811467937598, - -1.193455137637164, - -1.4991528622082557, - -1.8467799564597853, - -2.3263844542717655, - -2.939265583049939, - -3.6212490344530157, - -4.232670278172491, - -4.630318916209102, - -4.713900313763711, - -4.456284653035995, - -3.9121918138939074, - -3.2169043459320354, - -2.530019925917907, - -1.9714872378498833, - -1.6120802420321094, - -1.4204012005029603, - -1.2897698959010886, - -1.0830548665391166, - -0.6793572875460836, - -0.03564781229614416, - 0.8010182169959349, - 1.6998465350542866, - 2.468528708617181, - 2.983003147511569, - 3.2099887553824114, - 3.280158023144772, - 3.5000959315205673, - 4.2974195973100064, - 6.142821555791888, - 9.42782596012553, - 14.268508278304726, - 20.673275420832177, - 28.174269105050485, - 36.109986158987525 - ], - "pressure:branch27_seg0:J19": [ - 98009.06628257461, - 117061.43883837278, - 132741.73094639447, - 143387.1186876584, - 148462.0713138286, - 147872.83113872254, - 142172.39481373303, - 132571.66588158486, - 120506.92684044954, - 106937.3864608916, - 93054.68284485258, - 79147.02587503655, - 65318.38754849159, - 51686.485663794265, - 37862.610602227396, - 24122.475840848103, - 10426.242288448175, - -2939.5645531360537, - -15105.35363526688, - -26056.294488796062, - -35423.142238104, - -43005.36691275905, - -49122.11564521528, - -53924.24452394105, - -57697.74460076749, - -60641.216709560904, - -62716.722693335265, - -63827.600626499065, - -63829.782453311804, - -62666.27303950009, - -60469.871439928465, - -57763.66068340806, - -55195.12391886957, - -53600.62911043687, - -53791.773673584095, - -56251.53131643824, - -60930.01431207033, - -67467.23212840503, - -74865.63992808007, - -81747.42128430179, - -86995.0107873976, - -89461.32049512841, - -88500.72570647465, - -84016.66545600773, - -76774.0474448089, - -67219.3173459437, - -56472.18136236735, - -45757.81871392324, - -35381.86395739509, - -26038.028192468686, - -17745.26435737492, - -10252.678795096404, - -3663.646033098636, - 2263.7669373586145, - 7444.180002226476, - 11566.708554728084, - 14409.160802534345, - 15700.652644008485, - 15343.139655204648, - 13523.742419305207, - 10643.990997771485, - 7199.185580299905, - 3872.2078337571297, - 1041.3863493379467, - -1063.2808032616938, - -2413.6607003042404, - -3288.2447775865617, - -4049.3805540616017, - -5007.019747582447, - -6350.858925622541, - -7988.90278828284, - -9729.02911153166, - -11200.836603928374, - -12003.043271346516, - -11951.652870773942, - -11050.333162059946, - -9500.865169738008, - -7644.6947295837, - -5959.30411851096, - -4679.165056637467, - -3899.0948728789417, - -3510.582490385299, - -3181.090639993243, - -2550.0636741942435, - -1347.9749896034712, - 475.9749787704894, - 2710.7464987940357, - 4989.013186242446, - 6802.307738475745, - 7884.068034675118, - 8267.321312070018, - 8416.957594763786, - 9227.030177930103, - 11858.037005192604, - 17480.35537390467, - 27113.357799745663, - 40569.137045628355, - 57842.70858976298, - 77865.20615015425, - 98009.06628257461 - ], - "flow:J19:branch28_seg0": [ - 14.560902531333676, - 17.749179960482046, - 20.494743256502165, - 22.55029340695457, - 23.737608984086606, - 23.996993286473696, - 23.3887809075462, - 22.092420843620843, - 20.286740496731777, - 18.178670179412194, - 15.960188924752002, - 13.699624853715813, - 11.462794361501805, - 9.247104659077701, - 7.017845712365985, - 4.794165984556232, - 2.56357034899055, - 0.3848085776923266, - -1.6591321010828743, - -3.523298681620786, - -5.135218486482348, - -6.476517225282952, - -7.562604178316469, - -8.42067085693027, - -9.098684386176153, - -9.628364619716208, - -10.02016415198979, - -10.263978482162404, - -10.336997689695044, - -10.22171731068733, - -9.931793239976418, - -9.524067910453018, - -9.091762029107365, - -8.769031662417882, - -8.683359185932193, - -8.933546490835525, - -9.549284053982385, - -10.497371870314527, - -11.640303942399534, - -12.79373404398904, - -13.75884521989815, - -14.337121936656494, - -14.402440445174788, - -13.910022970698764, - -12.910608412758808, - -11.495402516840386, - -9.840975288021744, - -8.098198663632168, - -6.388884151965879, - -4.817106930898668, - -3.3998197177236773, - -2.1398011881056647, - -1.0185344039589075, - -0.009398355205396223, - 0.8750040802490868, - 1.6121653008950878, - 2.1579345300376853, - 2.466040658156609, - 2.5128610782475955, - 2.3128944964656424, - 1.9109012095938374, - 1.3860557598294834, - 0.8406695563764697, - 0.34586237300358325, - -0.04069141334767849, - -0.3050097434308139, - -0.4765990281445293, - -0.6055120596595086, - -0.7464456422844098, - -0.9383309417664069, - -1.185921441396019, - -1.4652501562102318, - -1.7210350743600533, - -1.8950535471165435, - -1.943296949959267, - -1.8511718525425125, - -1.6380307975150532, - -1.3569987016636567, - -1.0721730869566477, - -0.8356943514483963, - -0.6791775957396106, - -0.5933749777763714, - -0.5376829809951013, - -0.45651552337357554, - -0.2988422075459801, - -0.043463599939774736, - 0.2944857840262232, - 0.6632992323463007, - 0.986956239834933, - 1.2108767839698735, - 1.3161411374076264, - 1.3501212344777613, - 1.4321315809552304, - 1.7337488890154076, - 2.4485748388150723, - 3.7395581228142643, - 5.671415988996081, - 8.251387340521969, - 11.29857430837994, - 14.560902531333676 - ], - "pressure:J19:branch28_seg0": [ - 98009.06628257461, - 117061.43883837278, - 132741.73094639447, - 143387.1186876584, - 148462.0713138286, - 147872.83113872254, - 142172.39481373303, - 132571.66588158486, - 120506.92684044954, - 106937.3864608916, - 93054.68284485258, - 79147.02587503655, - 65318.38754849159, - 51686.485663794265, - 37862.610602227396, - 24122.475840848103, - 10426.242288448175, - -2939.5645531360537, - -15105.35363526688, - -26056.294488796062, - -35423.142238104, - -43005.36691275905, - -49122.11564521528, - -53924.24452394105, - -57697.74460076749, - -60641.216709560904, - -62716.722693335265, - -63827.600626499065, - -63829.782453311804, - -62666.27303950009, - -60469.871439928465, - -57763.66068340806, - -55195.12391886957, - -53600.62911043687, - -53791.773673584095, - -56251.53131643824, - -60930.01431207033, - -67467.23212840503, - -74865.63992808007, - -81747.42128430179, - -86995.0107873976, - -89461.32049512841, - -88500.72570647465, - -84016.66545600773, - -76774.0474448089, - -67219.3173459437, - -56472.18136236735, - -45757.81871392324, - -35381.86395739509, - -26038.028192468686, - -17745.26435737492, - -10252.678795096404, - -3663.646033098636, - 2263.7669373586145, - 7444.180002226476, - 11566.708554728084, - 14409.160802534345, - 15700.652644008485, - 15343.139655204648, - 13523.742419305207, - 10643.990997771485, - 7199.185580299905, - 3872.2078337571297, - 1041.3863493379467, - -1063.2808032616938, - -2413.6607003042404, - -3288.2447775865617, - -4049.3805540616017, - -5007.019747582447, - -6350.858925622541, - -7988.90278828284, - -9729.02911153166, - -11200.836603928374, - -12003.043271346516, - -11951.652870773942, - -11050.333162059946, - -9500.865169738008, - -7644.6947295837, - -5959.30411851096, - -4679.165056637467, - -3899.0948728789417, - -3510.582490385299, - -3181.090639993243, - -2550.0636741942435, - -1347.9749896034712, - 475.9749787704894, - 2710.7464987940357, - 4989.013186242446, - 6802.307738475745, - 7884.068034675118, - 8267.321312070018, - 8416.957594763786, - 9227.030177930103, - 11858.037005192604, - 17480.35537390467, - 27113.357799745663, - 40569.137045628355, - 57842.70858976298, - 77865.20615015425, - 98009.06628257461 - ], - "flow:J19:branch47_seg0": [ - 21.5490836276539, - 26.05244789136917, - 29.838388595145705, - 32.57512232799664, - 34.04561095789068, - 34.18769754983258, - 33.11057020538018, - 31.104887652140828, - 28.425680729271523, - 25.352091973450484, - 22.17582460405147, - 18.95388821332293, - 15.76944491287383, - 12.62230858914508, - 9.439254221463626, - 6.273922546619878, - 3.1030357296788944, - 0.007795508467286381, - -2.8620637225321723, - -5.466284232740426, - -7.7010152431304855, - -9.541296701135272, - -11.027098172373602, - -12.19570823369429, - -13.118055652997786, - -13.83756260929721, - -14.361076847383766, - -14.669935417124458, - -14.73015418030302, - -14.519047787494701, - -14.063649998242239, - -13.459130846341495, - -12.84433825004046, - -12.419327218894963, - -12.364141619833267, - -12.809457472530495, - -13.775213979071811, - -15.201685167349494, - -16.871431400317324, - -18.50080190677029, - -19.816617318026687, - -20.53518762091284, - -20.494460134465744, - -19.650825167399432, - -18.110072716430544, - -16.00124938804252, - -13.590155339676764, - -11.10044726714015, - -8.678623077067988, - -6.47702795148693, - -4.500944669507531, - -2.741607905048258, - -1.1791020106679233, - 0.23027407657408266, - 1.4588374937545845, - 2.4683363932908367, - 3.1956114043826966, - 3.573382107793401, - 3.573937596171888, - 3.2296091021333995, - 2.6125610597004836, - 1.8375649735731996, - 1.0622327538663174, - 0.37616774900848526, - -0.1471868769182745, - -0.49347140336310685, - -0.7168561094929436, - -0.8936408025486344, - -1.1003343141754212, - -1.3880535125053952, - -1.7533441416538968, - -2.155998878242764, - -2.5116352038124834, - -2.7352653690925703, - -2.7706033638044265, - -2.6051128004934787, - -2.2741610163787986, - -1.8599056442683453, - -1.4578468389612351, - -1.1357928864015048, - -0.932902646292505, - -0.827026222726607, - -0.7520869149059868, - -0.6265393431655998, - -0.38051508000008566, - 0.007815787643615376, - 0.5065324329697236, - 1.0365473027080039, - 1.4815724687822651, - 1.7721263635416784, - 1.8938476179747938, - 1.9300367886669993, - 2.0679643505653402, - 2.563670708294543, - 3.69424671697683, - 5.688267837311317, - 8.597092289308623, - 12.421888080310083, - 16.875694796670576, - 21.5490836276539 - ], - "pressure:J19:branch47_seg0": [ - 98009.06628257461, - 117061.43883837278, - 132741.73094639447, - 143387.1186876584, - 148462.0713138286, - 147872.83113872254, - 142172.39481373303, - 132571.66588158486, - 120506.92684044954, - 106937.3864608916, - 93054.68284485258, - 79147.02587503655, - 65318.38754849159, - 51686.485663794265, - 37862.610602227396, - 24122.475840848103, - 10426.242288448175, - -2939.5645531360537, - -15105.35363526688, - -26056.294488796062, - -35423.142238104, - -43005.36691275905, - -49122.11564521528, - -53924.24452394105, - -57697.74460076749, - -60641.216709560904, - -62716.722693335265, - -63827.600626499065, - -63829.782453311804, - -62666.27303950009, - -60469.871439928465, - -57763.66068340806, - -55195.12391886957, - -53600.62911043687, - -53791.773673584095, - -56251.53131643824, - -60930.01431207033, - -67467.23212840503, - -74865.63992808007, - -81747.42128430179, - -86995.0107873976, - -89461.32049512841, - -88500.72570647465, - -84016.66545600773, - -76774.0474448089, - -67219.3173459437, - -56472.18136236735, - -45757.81871392324, - -35381.86395739509, - -26038.028192468686, - -17745.26435737492, - -10252.678795096404, - -3663.646033098636, - 2263.7669373586145, - 7444.180002226476, - 11566.708554728084, - 14409.160802534345, - 15700.652644008485, - 15343.139655204648, - 13523.742419305207, - 10643.990997771485, - 7199.185580299905, - 3872.2078337571297, - 1041.3863493379467, - -1063.2808032616938, - -2413.6607003042404, - -3288.2447775865617, - -4049.3805540616017, - -5007.019747582447, - -6350.858925622541, - -7988.90278828284, - -9729.02911153166, - -11200.836603928374, - -12003.043271346516, - -11951.652870773942, - -11050.333162059946, - -9500.865169738008, - -7644.6947295837, - -5959.30411851096, - -4679.165056637467, - -3899.0948728789417, - -3510.582490385299, - -3181.090639993243, - -2550.0636741942435, - -1347.9749896034712, - 475.9749787704894, - 2710.7464987940357, - 4989.013186242446, - 6802.307738475745, - 7884.068034675118, - 8267.321312070018, - 8416.957594763786, - 9227.030177930103, - 11858.037005192604, - 17480.35537390467, - 27113.357799745663, - 40569.137045628355, - 57842.70858976298, - 77865.20615015425, - 98009.06628257461 - ], - "flow:branch29_seg0:J20": [ - 405.15012227905754, - 458.6026400798879, - 489.03094995455314, - 493.9527690547242, - 475.54384053887577, - 437.59733253235066, - 385.92821454219944, - 327.95260779774134, - 271.2896642780953, - 216.5783175751883, - 168.3040908238167, - 125.03456169476748, - 83.97566746320886, - 45.48775543205791, - 6.068069250799816, - -32.88442619640998, - -70.39929731607268, - -105.64816677139211, - -134.65704529794857, - -157.90753175143166, - -174.4499381287498, - -184.75659156363912, - -191.10154606711654, - -194.6081694083354, - -196.62812888053233, - -197.4671442827319, - -196.3819298994169, - -192.39460475998948, - -184.71992406280285, - -173.35867961419416, - -159.6012265549844, - -146.58790621486114, - -137.46266110369572, - -135.86518863355323, - -144.2910932214475, - -163.06549931580653, - -189.9750851285553, - -220.85614248551713, - -250.55491630262838, - -271.91121690757353, - -281.4190346851978, - -275.72418722452016, - -254.86192043650973, - -221.2237088281487, - -180.49157019234346, - -135.87237607955402, - -93.4796240273681, - -57.00091409430526, - -26.31228026640803, - -2.835087504882336, - 15.814955916366472, - 31.399712356187113, - 44.290129513892055, - 55.82313235020413, - 64.77950913707026, - 69.57012200152998, - 69.32456635673182, - 63.01409278379867, - 51.160054091588236, - 35.308749449777544, - 18.507032235092492, - 2.6004014789687004, - -9.454679032018996, - -16.77622543949698, - -19.889979253498257, - -19.845930225220847, - -18.919773064476477, - -19.155562967532376, - -21.696022841276854, - -26.72797176128769, - -32.94953144599045, - -38.80877774020131, - -42.13807770358231, - -41.53839025619776, - -36.8274604547943, - -29.054663481405807, - -19.857355419066213, - -11.458470140299182, - -5.850476873388685, - -3.298909828322585, - -3.43815847281086, - -4.686770003335046, - -4.925821001607535, - -2.461665491364883, - 3.3199151911187115, - 11.863208408856252, - 20.973202315576366, - 28.683246974212643, - 32.64537353684815, - 32.38591124110644, - 29.44337591855642, - 27.33474868853523, - 31.129796117915454, - 46.24300368706578, - 76.77020910505513, - 125.22446843147125, - 187.44762297998983, - 261.7771033191625, - 337.9197075013529, - 405.15012227905754 - ], - "pressure:branch29_seg0:J20": [ - 189220.67853600596, - 203313.69937130672, - 208591.90251670068, - 200381.0631962309, - 183667.95523750965, - 161935.09417040885, - 137272.43548205373, - 109665.09980361549, - 88271.94528846069, - 67794.45411732348, - 48941.961434126606, - 34249.037279165175, - 17820.16655482755, - 2755.6918728732994, - -12570.658037644704, - -28809.219465774404, - -42802.392203670606, - -56080.065204158615, - -65878.87287208463, - -72216.59016460448, - -76950.63994303394, - -78908.47587281774, - -79808.30062479162, - -80381.95043847084, - -80444.01173645892, - -80232.39833220119, - -78921.71155108573, - -75999.33921338282, - -71335.91477371543, - -65598.99059350319, - -59178.22452932108, - -54433.281651083664, - -52906.78602935285, - -55082.497992031604, - -62222.14815937722, - -73595.88799041475, - -87433.3147547916, - -100478.78664263102, - -111891.61578587546, - -117233.4820640451, - -115865.67938743554, - -108294.57313036721, - -94419.4338083265, - -75876.20606457737, - -57128.46340946728, - -38733.2316595061, - -21408.660430498378, - -9195.605521001398, - 694.8842000813845, - 8327.408232858363, - 13527.405341860971, - 19227.994685856243, - 23410.520474757286, - 26811.413026181996, - 29723.41914426087, - 29762.246680494358, - 27443.47808758199, - 22718.71308547368, - 16057.378594823422, - 7985.962875019535, - 1195.1809444301355, - -4393.112168973449, - -8247.711346181757, - -9237.443710193676, - -9038.159925103793, - -8207.806292984205, - -7563.703075096828, - -8144.830605778319, - -10043.207206849436, - -12922.316755501864, - -15679.893012376951, - -17578.189224332742, - -18014.274925604186, - -16262.855543601467, - -12789.352369680984, - -8613.89379810823, - -4740.353857208179, - -1531.1760462214374, - -383.1777764669326, - -681.0596035425347, - -1445.675156466398, - -2141.2849429628986, - -1750.4891018125238, - 326.1228016404991, - 3783.140150549683, - 8198.59821077116, - 11812.9640177273, - 14034.761485468736, - 14414.566934083348, - 12766.123140964868, - 10844.630301128771, - 10822.466008783813, - 15091.139257881932, - 25840.882444187617, - 44017.08985374199, - 70714.3718094203, - 100759.2365161795, - 133151.68560010204, - 166679.0722717274, - 189220.67853600596 - ], - "flow:J20:branch30_seg0": [ - 35.5029875164262, - 39.57488867405088, - 41.5051063192601, - 41.16213578895959, - 38.87816882091124, - 35.06004481451263, - 30.24617814841196, - 25.11009336711507, - 20.325377115671586, - 15.805007235546926, - 11.95320532505068, - 8.55214120402017, - 5.290314700334353, - 2.237825546447526, - -0.9588926468614815, - -4.117955038467379, - -7.137516937499506, - -9.960064364642674, - -12.18102300083288, - -13.895981187047024, - -15.044179079632041, - -15.67037157569332, - -16.014502548094498, - -16.166802750417933, - -16.23642006924303, - -16.236049037251895, - -16.074242178411758, - -15.655625315973877, - -14.913023520268668, - -13.86306148401267, - -12.635674239530067, - -11.54366515578787, - -10.860850050095372, - -10.901866767680918, - -11.858177643381335, - -13.711305314363743, - -16.202555288428353, - -18.931625572662757, - -21.429370108314075, - -23.044931889692467, - -23.53645920564359, - -22.65925221015184, - -20.477754814283188, - -17.268719929855617, - -13.59969085933843, - -9.730593146645038, - -6.190483012842919, - -3.2934208081865872, - -0.9276466845401264, - 0.7971253868002451, - 2.1334223815213362, - 3.2710960185657325, - 4.204279465254882, - 5.059568526824666, - 5.700901941740441, - 5.964865025636578, - 5.787869705521492, - 5.085231812198123, - 3.9249222968451813, - 2.4671217091228654, - 1.0045747985781115, - -0.32077633601200956, - -1.2450378477924944, - -1.7257263054126162, - -1.8513386830053786, - -1.731247914538422, - -1.5857989425645165, - -1.5950556171640689, - -1.8402757712647813, - -2.31300069315971, - -2.868770796652001, - -3.3582715056645926, - -3.5883494519696875, - -3.444375018818691, - -2.9394179607222113, - -2.192947330280324, - -1.3673722547418872, - -0.6599822295857174, - -0.24670513992556328, - -0.11550124753318562, - -0.2097169545586217, - -0.36874397518549096, - -0.39402639265727984, - -0.14425246373102518, - 0.4115320143365052, - 1.197021156686379, - 1.9883882968770337, - 2.611975248392567, - 2.8619264687377846, - 2.727674330392408, - 2.389628393086693, - 2.19339676224073, - 2.609205585411306, - 4.107987032650855, - 7.016277338220123, - 11.5055073409464, - 17.089664229686488, - 23.597662392209564, - 30.082577814580933, - 35.5029875164262 - ], - "pressure:J20:branch30_seg0": [ - 189220.67853600596, - 203313.69937130672, - 208591.90251670068, - 200381.0631962309, - 183667.95523750965, - 161935.09417040885, - 137272.43548205373, - 109665.09980361549, - 88271.94528846069, - 67794.45411732348, - 48941.961434126606, - 34249.037279165175, - 17820.16655482755, - 2755.6918728732994, - -12570.658037644704, - -28809.219465774404, - -42802.392203670606, - -56080.065204158615, - -65878.87287208463, - -72216.59016460448, - -76950.63994303394, - -78908.47587281774, - -79808.30062479162, - -80381.95043847084, - -80444.01173645892, - -80232.39833220119, - -78921.71155108573, - -75999.33921338282, - -71335.91477371543, - -65598.99059350319, - -59178.22452932108, - -54433.281651083664, - -52906.78602935285, - -55082.497992031604, - -62222.14815937722, - -73595.88799041475, - -87433.3147547916, - -100478.78664263102, - -111891.61578587546, - -117233.4820640451, - -115865.67938743554, - -108294.57313036721, - -94419.4338083265, - -75876.20606457737, - -57128.46340946728, - -38733.2316595061, - -21408.660430498378, - -9195.605521001398, - 694.8842000813845, - 8327.408232858363, - 13527.405341860971, - 19227.994685856243, - 23410.520474757286, - 26811.413026181996, - 29723.41914426087, - 29762.246680494358, - 27443.47808758199, - 22718.71308547368, - 16057.378594823422, - 7985.962875019535, - 1195.1809444301355, - -4393.112168973449, - -8247.711346181757, - -9237.443710193676, - -9038.159925103793, - -8207.806292984205, - -7563.703075096828, - -8144.830605778319, - -10043.207206849436, - -12922.316755501864, - -15679.893012376951, - -17578.189224332742, - -18014.274925604186, - -16262.855543601467, - -12789.352369680984, - -8613.89379810823, - -4740.353857208179, - -1531.1760462214374, - -383.1777764669326, - -681.0596035425347, - -1445.675156466398, - -2141.2849429628986, - -1750.4891018125238, - 326.1228016404991, - 3783.140150549683, - 8198.59821077116, - 11812.9640177273, - 14034.761485468736, - 14414.566934083348, - 12766.123140964868, - 10844.630301128771, - 10822.466008783813, - 15091.139257881932, - 25840.882444187617, - 44017.08985374199, - 70714.3718094203, - 100759.2365161795, - 133151.68560010204, - 166679.0722717274, - 189220.67853600596 - ], - "flow:J20:branch33_seg0": [ - 109.89178747345537, - 123.99545093072017, - 131.65094620811533, - 132.2647011633894, - 126.5052152671693, - 115.5018468699621, - 100.90538584934336, - 84.83569105766102, - 69.29824349204597, - 54.541023603110766, - 41.73828195313413, - 30.374722262147113, - 19.70209069888373, - 9.700483167192289, - -0.5851756894458459, - -10.749266158836404, - -20.596118831429003, - -29.822295017034083, - -37.330257732748024, - -43.27237966726436, - -47.38480923672393, - -49.809909074816204, - -51.199793228682395, - -51.86807456089752, - -52.1965184118671, - -52.26826360261704, - -51.86318017214828, - -50.701297182501, - -48.55136294931338, - -45.40851376930231, - -41.62333933133073, - -38.06908174172812, - -35.60796484701539, - -35.24886766963221, - -37.6708766940425, - -42.944761778751, - -50.41876153788776, - -58.96158729960993, - -67.07279145098366, - -72.8156982076249, - -75.21281534133934, - -73.37763676272415, - -67.35350753500308, - -57.87250203964498, - -46.55399053639799, - -34.300313365923124, - -22.795351089429772, - -13.062028882128763, - -5.007974270292688, - 1.0021028055929957, - 5.673310084013366, - 9.5456565293043, - 12.72243611180139, - 15.591202289583343, - 17.8056733798211, - 18.9236728033554, - 18.689144596197487, - 16.816980984548714, - 13.444084252003186, - 9.02414900243239, - 4.369318767853665, - 0.026388984710541567, - -3.192002951628003, - -5.072276156373277, - -5.765580300428544, - -5.587959645742155, - -5.1911027714265945, - -5.151573780378134, - -5.7891285302055495, - -7.145639222840773, - -8.845056429858044, - -10.444034468203666, - -11.336297507463849, - -11.127323429936162, - -9.777870516868205, - -7.584892726359738, - -5.021536901873948, - -2.703680142539975, - -1.1919607692714909, - -0.5521084329084797, - -0.6723809575603134, - -1.1021259137495665, - -1.2392735058559083, - -0.6103845921603441, - 0.9605188129854357, - 3.300053092262305, - 5.807295764048073, - 7.909118674989195, - 8.948305576841108, - 8.79922487052458, - 7.8945615129569005, - 7.218222883588306, - 8.185169910727373, - 12.28871647468178, - 20.66347932432904, - 33.95974849480914, - 50.992980260010015, - 71.22619187194282, - 91.88182508203217, - 109.89178747345537 - ], - "pressure:J20:branch33_seg0": [ - 189220.67853600596, - 203313.69937130672, - 208591.90251670068, - 200381.0631962309, - 183667.95523750965, - 161935.09417040885, - 137272.43548205373, - 109665.09980361549, - 88271.94528846069, - 67794.45411732348, - 48941.961434126606, - 34249.037279165175, - 17820.16655482755, - 2755.6918728732994, - -12570.658037644704, - -28809.219465774404, - -42802.392203670606, - -56080.065204158615, - -65878.87287208463, - -72216.59016460448, - -76950.63994303394, - -78908.47587281774, - -79808.30062479162, - -80381.95043847084, - -80444.01173645892, - -80232.39833220119, - -78921.71155108573, - -75999.33921338282, - -71335.91477371543, - -65598.99059350319, - -59178.22452932108, - -54433.281651083664, - -52906.78602935285, - -55082.497992031604, - -62222.14815937722, - -73595.88799041475, - -87433.3147547916, - -100478.78664263102, - -111891.61578587546, - -117233.4820640451, - -115865.67938743554, - -108294.57313036721, - -94419.4338083265, - -75876.20606457737, - -57128.46340946728, - -38733.2316595061, - -21408.660430498378, - -9195.605521001398, - 694.8842000813845, - 8327.408232858363, - 13527.405341860971, - 19227.994685856243, - 23410.520474757286, - 26811.413026181996, - 29723.41914426087, - 29762.246680494358, - 27443.47808758199, - 22718.71308547368, - 16057.378594823422, - 7985.962875019535, - 1195.1809444301355, - -4393.112168973449, - -8247.711346181757, - -9237.443710193676, - -9038.159925103793, - -8207.806292984205, - -7563.703075096828, - -8144.830605778319, - -10043.207206849436, - -12922.316755501864, - -15679.893012376951, - -17578.189224332742, - -18014.274925604186, - -16262.855543601467, - -12789.352369680984, - -8613.89379810823, - -4740.353857208179, - -1531.1760462214374, - -383.1777764669326, - -681.0596035425347, - -1445.675156466398, - -2141.2849429628986, - -1750.4891018125238, - 326.1228016404991, - 3783.140150549683, - 8198.59821077116, - 11812.9640177273, - 14034.761485468736, - 14414.566934083348, - 12766.123140964868, - 10844.630301128771, - 10822.466008783813, - 15091.139257881932, - 25840.882444187617, - 44017.08985374199, - 70714.3718094203, - 100759.2365161795, - 133151.68560010204, - 166679.0722717274, - 189220.67853600596 - ], - "flow:J20:branch42_seg0": [ - 44.22754941032907, - 49.46064584356887, - 52.026191212420926, - 51.75976984905533, - 49.039418238913655, - 44.36269919057419, - 38.382551411694564, - 31.977166714773812, - 25.933538482347547, - 20.213407457627493, - 15.343992955392316, - 11.01831996191692, - 6.908504832823321, - 3.0541319898452466, - -0.972870607781877, - -4.9346291598777485, - -8.756948262962363, - -12.328503399855542, - -15.153783439878017, - -17.351822693560827, - -18.835244302195647, - -19.655158891788165, - -20.11187528517053, - -20.315538896716024, - -20.40908324175259, - -20.415312616723053, - -20.222524071066015, - -19.71524027300345, - -18.8047848558209, - -17.507715727264195, - -15.975646966762334, - -14.59713351305573, - -13.704443189214349, - -13.702663613453765, - -14.837096928666401, - -17.101600314342676, - -20.177045270439656, - -23.601574791120946, - -26.755368914443146, - -28.849526685562434, - -29.55397152264257, - -28.549862392345904, - -25.89045793641721, - -21.927563887014372, - -17.35239463026732, - -12.499358910523897, - -8.028973116551422, - -4.350726795874568, - -1.332958065918247, - 0.8731641562436735, - 2.5780537382911084, - 4.027452638113735, - 5.209384238288579, - 6.29606370885249, - 7.116052671611233, - 7.47521506987404, - 7.287814537726369, - 6.444443981592248, - 5.018061754958189, - 3.2142990309454436, - 1.3739231486393673, - -0.30754410800213494, - -1.4927108921120142, - -2.131611911541243, - -2.3170938906000553, - -2.1817029369642023, - -2.001422556352897, - -2.0029667014940644, - -2.2960979426012247, - -2.8756500430674947, - -3.5684312155321596, - -4.1884762700080636, - -4.495264679597388, - -4.338089718455287, - -3.7294538861782147, - -2.807900079611309, - -1.77754907174177, - -0.8802220714303047, - -0.34336584716057367, - -0.15642037604392936, - -0.25882777554817504, - -0.4542819474994726, - -0.4947552705706261, - -0.20123643467387217, - 0.47646745028184295, - 1.4446526821721386, - 2.4406540411966033, - 3.2395989476189886, - 3.5783799009806887, - 3.4360882736788074, - 3.0254850150520816, - 2.766391808292685, - 3.245425859526135, - 5.050487843320488, - 8.61544432595495, - 14.151786274575144, - 21.093701769238915, - 29.205891888130992, - 37.3633098669644, - 44.22754941032907 - ], - "pressure:J20:branch42_seg0": [ - 189220.67853600596, - 203313.69937130672, - 208591.90251670068, - 200381.0631962309, - 183667.95523750965, - 161935.09417040885, - 137272.43548205373, - 109665.09980361549, - 88271.94528846069, - 67794.45411732348, - 48941.961434126606, - 34249.037279165175, - 17820.16655482755, - 2755.6918728732994, - -12570.658037644704, - -28809.219465774404, - -42802.392203670606, - -56080.065204158615, - -65878.87287208463, - -72216.59016460448, - -76950.63994303394, - -78908.47587281774, - -79808.30062479162, - -80381.95043847084, - -80444.01173645892, - -80232.39833220119, - -78921.71155108573, - -75999.33921338282, - -71335.91477371543, - -65598.99059350319, - -59178.22452932108, - -54433.281651083664, - -52906.78602935285, - -55082.497992031604, - -62222.14815937722, - -73595.88799041475, - -87433.3147547916, - -100478.78664263102, - -111891.61578587546, - -117233.4820640451, - -115865.67938743554, - -108294.57313036721, - -94419.4338083265, - -75876.20606457737, - -57128.46340946728, - -38733.2316595061, - -21408.660430498378, - -9195.605521001398, - 694.8842000813845, - 8327.408232858363, - 13527.405341860971, - 19227.994685856243, - 23410.520474757286, - 26811.413026181996, - 29723.41914426087, - 29762.246680494358, - 27443.47808758199, - 22718.71308547368, - 16057.378594823422, - 7985.962875019535, - 1195.1809444301355, - -4393.112168973449, - -8247.711346181757, - -9237.443710193676, - -9038.159925103793, - -8207.806292984205, - -7563.703075096828, - -8144.830605778319, - -10043.207206849436, - -12922.316755501864, - -15679.893012376951, - -17578.189224332742, - -18014.274925604186, - -16262.855543601467, - -12789.352369680984, - -8613.89379810823, - -4740.353857208179, - -1531.1760462214374, - -383.1777764669326, - -681.0596035425347, - -1445.675156466398, - -2141.2849429628986, - -1750.4891018125238, - 326.1228016404991, - 3783.140150549683, - 8198.59821077116, - 11812.9640177273, - 14034.761485468736, - 14414.566934083348, - 12766.123140964868, - 10844.630301128771, - 10822.466008783813, - 15091.139257881932, - 25840.882444187617, - 44017.08985374199, - 70714.3718094203, - 100759.2365161795, - 133151.68560010204, - 166679.0722717274, - 189220.67853600596 - ], - "flow:J20:branch48_seg0": [ - 34.01494179538844, - 38.069767287418486, - 40.09694367125536, - 39.960464807544255, - 37.90407055181183, - 34.31065983042032, - 29.73181670024459, - 24.762577076517186, - 20.105094230985724, - 15.717901821965679, - 11.908110110077148, - 8.5767480752579, - 5.390821466088583, - 2.4116084139667886, - -0.6677553450929934, - -3.757688683626939, - -6.6885157044238595, - -9.419953186283026, - -11.63086471863024, - -13.34482638534919, - -14.494889815890643, - -15.156114211549948, - -15.515231442932757, - -15.680868860326411, - -15.761996718423514, - -15.764787048846788, - -15.62039345329307, - -15.232588122156452, - -14.5369854136737, - -13.53830113911239, - -12.36856868207265, - -11.297524544989402, - -10.610693508595203, - -10.602662484552328, - -11.464253663845305, - -13.186569696782914, - -15.567684648678409, - -18.17523812651475, - -20.607468551608022, - -22.232983610839383, - -22.79138864386007, - -22.03655910759057, - -20.040718010098445, - -17.027864077560004, - -13.5052797860659, - -9.762118814658297, - -6.33005203806324, - -3.451260338616629, - -1.115749419473205, - 0.6086379216427784, - 1.9621654936891326, - 3.0717058880783026, - 4.003704509953226, - 4.844553797050062, - 5.479807449374031, - 5.765560965157674, - 5.625656370356942, - 4.979275618139193, - 3.893676480876225, - 2.4966599761594814, - 1.086481083318665, - -0.1989742368145812, - -1.129660795986782, - -1.6304571535346608, - -1.7783720398284986, - -1.6853866384832188, - -1.5522539299418987, - -1.5523937947713742, - -1.7710741741480298, - -2.2092895804426673, - -2.739902701737812, - -3.2204338435902145, - -3.4576970184805598, - -3.3500651542860664, - -2.889246842502493, - -2.1880919113627404, - -1.3909119187166943, - -0.7035561901757121, - -0.2777517353149578, - -0.12752500032647496, - -0.20149294773439025, - -0.346348805588892, - -0.37735057038232717, - -0.15212086632431016, - 0.362297860579557, - 1.1091038317715598, - 1.8702451818361439, - 2.480484512239877, - 2.750703189684621, - 2.6536630079419923, - 2.3448925542197774, - 2.1514078808152384, - 2.51413979949424, - 3.895565576634842, - 6.60019485170858, - 10.817260469450535, - 16.136352284140067, - 22.420720295222374, - 28.638399504817432, - 34.01494179538844 - ], - "pressure:J20:branch48_seg0": [ - 189220.67853600596, - 203313.69937130672, - 208591.90251670068, - 200381.0631962309, - 183667.95523750965, - 161935.09417040885, - 137272.43548205373, - 109665.09980361549, - 88271.94528846069, - 67794.45411732348, - 48941.961434126606, - 34249.037279165175, - 17820.16655482755, - 2755.6918728732994, - -12570.658037644704, - -28809.219465774404, - -42802.392203670606, - -56080.065204158615, - -65878.87287208463, - -72216.59016460448, - -76950.63994303394, - -78908.47587281774, - -79808.30062479162, - -80381.95043847084, - -80444.01173645892, - -80232.39833220119, - -78921.71155108573, - -75999.33921338282, - -71335.91477371543, - -65598.99059350319, - -59178.22452932108, - -54433.281651083664, - -52906.78602935285, - -55082.497992031604, - -62222.14815937722, - -73595.88799041475, - -87433.3147547916, - -100478.78664263102, - -111891.61578587546, - -117233.4820640451, - -115865.67938743554, - -108294.57313036721, - -94419.4338083265, - -75876.20606457737, - -57128.46340946728, - -38733.2316595061, - -21408.660430498378, - -9195.605521001398, - 694.8842000813845, - 8327.408232858363, - 13527.405341860971, - 19227.994685856243, - 23410.520474757286, - 26811.413026181996, - 29723.41914426087, - 29762.246680494358, - 27443.47808758199, - 22718.71308547368, - 16057.378594823422, - 7985.962875019535, - 1195.1809444301355, - -4393.112168973449, - -8247.711346181757, - -9237.443710193676, - -9038.159925103793, - -8207.806292984205, - -7563.703075096828, - -8144.830605778319, - -10043.207206849436, - -12922.316755501864, - -15679.893012376951, - -17578.189224332742, - -18014.274925604186, - -16262.855543601467, - -12789.352369680984, - -8613.89379810823, - -4740.353857208179, - -1531.1760462214374, - -383.1777764669326, - -681.0596035425347, - -1445.675156466398, - -2141.2849429628986, - -1750.4891018125238, - 326.1228016404991, - 3783.140150549683, - 8198.59821077116, - 11812.9640177273, - 14034.761485468736, - 14414.566934083348, - 12766.123140964868, - 10844.630301128771, - 10822.466008783813, - 15091.139257881932, - 25840.882444187617, - 44017.08985374199, - 70714.3718094203, - 100759.2365161795, - 133151.68560010204, - 166679.0722717274, - 189220.67853600596 - ], - "flow:J20:branch68_seg0": [ - 23.60524491752825, - 26.238099193739714, - 27.44075922364129, - 27.136782405516456, - 25.561327168816824, - 22.983154315296872, - 19.772966266421, - 16.36425417220294, - 13.221354362628805, - 10.257928776363094, - 7.730307384209962, - 5.51146694159324, - 3.36240848161397, - 1.3573593546504352, - -0.7484033661157476, - -2.8392581615562054, - -4.814528541255932, - -6.666121255979133, - -8.112588184724222, - -9.224049575794792, - -9.960967344047903, - -10.357591310436435, - -10.57360871611712, - -10.66798819232245, - -10.711542407961723, - -10.707813703275713, - -10.595843828885409, - -10.310072344762627, - -9.809320296504737, - -9.10449011656185, - -8.29060040343598, - -7.572690119168699, - -7.1392729296343385, - -7.193033947427464, - -7.85853374929679, - -9.112368383146967, - -10.784546863908158, - -12.5855707911799, - -14.225727744226907, - -15.256910944819067, - -15.537747026668034, - -14.907168900453438, - -13.428920729536197, - -11.277011904422112, - -8.841684071829402, - -6.284541336748749, - -3.9633592433386964, - -2.0721933455514567, - -0.532427624671145, - 0.5843879018876198, - 1.4560619870259723, - 2.19552343910874, - 2.807821666389559, - 3.367566251327158, - 3.783054674800044, - 3.94390311377431, - 3.8101470278932577, - 3.3266595580369467, - 2.5454864845820513, - 1.5701728979071938, - 0.606818043979278, - -0.2595108087235179, - -0.8567362201375135, - -1.1558344907506968, - -1.2251539220767889, - -1.1381066766979375, - -1.0414747218558527, - -1.0532576578609958, - -1.2224047345993327, - -1.541609709154465, - -1.910433572099815, - -2.2309301140916826, - -2.373145999673619, - -2.2665719320782602, - -1.9206973341280904, - -1.421163599451432, - -0.8725785658357527, - -0.4114872245739338, - -0.14725535304140486, - -0.07126998528749877, - -0.14126379030375644, - -0.2481418827207007, - -0.26006955212955724, - -0.08474769570671077, - 0.2923446786177899, - 0.8199681531968217, - 1.3409176109913603, - 1.744452448142301, - 1.8962297365636225, - 1.7943376788932375, - 1.5643864214017709, - 1.4419768728662474, - 1.738338407869339, - 2.7681928867146715, - 4.729000339630103, - 7.743607688846504, - 11.45950546575875, - 15.78926856488073, - 20.05346996401652, - 23.60524491752825 - ], - "pressure:J20:branch68_seg0": [ - 189220.67853600596, - 203313.69937130672, - 208591.90251670068, - 200381.0631962309, - 183667.95523750965, - 161935.09417040885, - 137272.43548205373, - 109665.09980361549, - 88271.94528846069, - 67794.45411732348, - 48941.961434126606, - 34249.037279165175, - 17820.16655482755, - 2755.6918728732994, - -12570.658037644704, - -28809.219465774404, - -42802.392203670606, - -56080.065204158615, - -65878.87287208463, - -72216.59016460448, - -76950.63994303394, - -78908.47587281774, - -79808.30062479162, - -80381.95043847084, - -80444.01173645892, - -80232.39833220119, - -78921.71155108573, - -75999.33921338282, - -71335.91477371543, - -65598.99059350319, - -59178.22452932108, - -54433.281651083664, - -52906.78602935285, - -55082.497992031604, - -62222.14815937722, - -73595.88799041475, - -87433.3147547916, - -100478.78664263102, - -111891.61578587546, - -117233.4820640451, - -115865.67938743554, - -108294.57313036721, - -94419.4338083265, - -75876.20606457737, - -57128.46340946728, - -38733.2316595061, - -21408.660430498378, - -9195.605521001398, - 694.8842000813845, - 8327.408232858363, - 13527.405341860971, - 19227.994685856243, - 23410.520474757286, - 26811.413026181996, - 29723.41914426087, - 29762.246680494358, - 27443.47808758199, - 22718.71308547368, - 16057.378594823422, - 7985.962875019535, - 1195.1809444301355, - -4393.112168973449, - -8247.711346181757, - -9237.443710193676, - -9038.159925103793, - -8207.806292984205, - -7563.703075096828, - -8144.830605778319, - -10043.207206849436, - -12922.316755501864, - -15679.893012376951, - -17578.189224332742, - -18014.274925604186, - -16262.855543601467, - -12789.352369680984, - -8613.89379810823, - -4740.353857208179, - -1531.1760462214374, - -383.1777764669326, - -681.0596035425347, - -1445.675156466398, - -2141.2849429628986, - -1750.4891018125238, - 326.1228016404991, - 3783.140150549683, - 8198.59821077116, - 11812.9640177273, - 14034.761485468736, - 14414.566934083348, - 12766.123140964868, - 10844.630301128771, - 10822.466008783813, - 15091.139257881932, - 25840.882444187617, - 44017.08985374199, - 70714.3718094203, - 100759.2365161795, - 133151.68560010204, - 166679.0722717274, - 189220.67853600596 - ], - "flow:J20:branch85_seg0": [ - 85.1774414967754, - 100.11967780031212, - 111.13118460314305, - 117.11208699333089, - 117.70936392512218, - 113.22191317994293, - 104.58107787906052, - 93.12187832812316, - 80.46001812913357, - 67.394413996124, - 54.91350910408457, - 43.287118780655746, - 32.320623246475556, - 21.996177519358607, - 11.835895218050593, - 1.83347196035469, - -7.8954829892374505, - -17.135808878711554, - -25.358436046643476, - -32.38250971439315, - -37.91036721523284, - -41.975560893411824, - -44.82637591379285, - -46.72075369344742, - -47.97116377069428, - -48.72704522919259, - -48.98072306465651, - -48.6022518664736, - -47.43559150750857, - -45.41078095889201, - -42.689263542699315, - -39.73427531395627, - -37.179726583393304, - -35.795096433580454, - -36.247410682573374, - -38.881388802009866, - -43.60439031251546, - -49.789510374847694, - -56.51171053057439, - -62.41255525090451, - -66.42735087611466, - -67.58111219668149, - -65.4742793602079, - -60.198247024666486, - -52.49284824204859, - -43.09185021517028, - -33.25080867071407, - -23.83403164230676, - -15.353680639226033, - -8.236288606309735, - -2.300727305435739, - 2.6226965264886615, - 6.741211119525432, - 10.295479591112333, - 13.197922000971802, - 15.243261712370504, - 16.21580830674411, - 15.878719628293503, - 14.217530420118898, - 11.404152060107764, - 7.935875701072784, - 4.261508937754877, - 0.9735193202014915, - -1.542619268449387, - -3.1585873602967154, - -3.961388733484718, - -4.280523329794721, - -4.515799747500288, - -4.997005998840809, - -5.900314709283701, - -7.138380675973864, - -8.480977806738455, - -9.520710446982457, - -9.926037299981921, - -9.50676508653113, - -8.316457986603092, - -6.577273324652324, - -4.704339172241837, - -3.110127324337501, - -2.0255946333106456, - -1.521334026131419, - -1.4127161229019576, - -1.3522996765133122, - -0.9667901295215935, - -0.012467622517247869, - 1.5572525294542563, - 3.4676701409669004, - 5.352257083675417, - 6.740152815162225, - 7.365443715734821, - 7.298137492392121, - 7.038929279362437, - 7.475489213571462, - 9.72315381574312, - 14.817124877970272, - 23.55153260287755, - 35.76208218678157, - 51.28425251327438, - 68.34589398936237, - 85.1774414967754 - ], - "pressure:J20:branch85_seg0": [ - 189220.67853600596, - 203313.69937130672, - 208591.90251670068, - 200381.0631962309, - 183667.95523750965, - 161935.09417040885, - 137272.43548205373, - 109665.09980361549, - 88271.94528846069, - 67794.45411732348, - 48941.961434126606, - 34249.037279165175, - 17820.16655482755, - 2755.6918728732994, - -12570.658037644704, - -28809.219465774404, - -42802.392203670606, - -56080.065204158615, - -65878.87287208463, - -72216.59016460448, - -76950.63994303394, - -78908.47587281774, - -79808.30062479162, - -80381.95043847084, - -80444.01173645892, - -80232.39833220119, - -78921.71155108573, - -75999.33921338282, - -71335.91477371543, - -65598.99059350319, - -59178.22452932108, - -54433.281651083664, - -52906.78602935285, - -55082.497992031604, - -62222.14815937722, - -73595.88799041475, - -87433.3147547916, - -100478.78664263102, - -111891.61578587546, - -117233.4820640451, - -115865.67938743554, - -108294.57313036721, - -94419.4338083265, - -75876.20606457737, - -57128.46340946728, - -38733.2316595061, - -21408.660430498378, - -9195.605521001398, - 694.8842000813845, - 8327.408232858363, - 13527.405341860971, - 19227.994685856243, - 23410.520474757286, - 26811.413026181996, - 29723.41914426087, - 29762.246680494358, - 27443.47808758199, - 22718.71308547368, - 16057.378594823422, - 7985.962875019535, - 1195.1809444301355, - -4393.112168973449, - -8247.711346181757, - -9237.443710193676, - -9038.159925103793, - -8207.806292984205, - -7563.703075096828, - -8144.830605778319, - -10043.207206849436, - -12922.316755501864, - -15679.893012376951, - -17578.189224332742, - -18014.274925604186, - -16262.855543601467, - -12789.352369680984, - -8613.89379810823, - -4740.353857208179, - -1531.1760462214374, - -383.1777764669326, - -681.0596035425347, - -1445.675156466398, - -2141.2849429628986, - -1750.4891018125238, - 326.1228016404991, - 3783.140150549683, - 8198.59821077116, - 11812.9640177273, - 14034.761485468736, - 14414.566934083348, - 12766.123140964868, - 10844.630301128771, - 10822.466008783813, - 15091.139257881932, - 25840.882444187617, - 44017.08985374199, - 70714.3718094203, - 100759.2365161795, - 133151.68560010204, - 166679.0722717274, - 189220.67853600596 - ], - "flow:J20:branch105_seg0": [ - 40.00359393386263, - 44.860484838445856, - 47.33400935739604, - 47.25449970497698, - 44.90552277777813, - 40.7249688452627, - 35.34517242191625, - 29.506824166657633, - 23.979199940653817, - 18.763716420465713, - 14.255267617272855, - 10.286186346887987, - 6.515607374999557, - 2.9857518043655302, - -0.6672541987539986, - -4.304206020399829, - -7.782943606639791, - -11.034845364536256, - -13.658289113411449, - -15.70524001833354, - -17.090312576488216, - -17.886367948779476, - -18.32653789303374, - -18.53009514196204, - -18.628852656662588, - -18.63811816195724, - -18.47401194889754, - -18.026952010189152, - -17.218289720898706, - -16.0515000523944, - -14.673748667295136, - -13.405630869889787, - -12.573599924779831, - -12.533879810199823, - -13.515961934415303, - -15.519846993490475, - -18.298880771537114, - -21.385184511905816, - -24.271360923590095, - -26.22792774636278, - -26.939077025456495, - -26.10306285410824, - -23.785566136953886, - -20.256013083063326, - -16.117095189049838, - -11.699375164107524, - -7.621496284543018, - -4.203888093820188, - -1.4132366100510492, - 0.6480808129116697, - 2.2574076912725562, - 3.5862702931636012, - 4.692851878086413, - 5.693915263972122, - 6.454261307602125, - 6.80734059096449, - 6.66231216828936, - 5.921040487442977, - 4.652991393348155, - 3.01935395719619, - 1.348138136089795, - -0.18507684474880914, - -1.2949832782704116, - -1.9063596905570033, - -2.0981133552022606, - -1.995960351732889, - -1.8395382819214194, - -1.834703651147423, - -2.0858070258633536, - -2.597239433543611, - -3.22113314702959, - -3.7910935672637396, - -4.08273957526332, - -3.9673506030593426, - -3.436831018806701, - -2.616614217685315, - -1.6791907377144197, - -0.8602801084685765, - -0.3476721234941236, - -0.15782716870448352, - -0.23587158807999964, - -0.40537915276597486, - -0.44690980413425596, - -0.19209668079324432, - 0.40580402109709723, - 1.2775941608330619, - 2.1797638814243268, - 2.9122690669463753, - 3.2436750953125193, - 3.1422157721388944, - 2.784685173159746, - 2.548637553040329, - 2.9538538686260107, - 4.543703568316645, - 7.694648570368236, - 12.631200466633663, - 18.877869966377197, - 26.255356481093663, - 33.632138725797134, - 40.00359393386263 - ], - "pressure:J20:branch105_seg0": [ - 189220.67853600596, - 203313.69937130672, - 208591.90251670068, - 200381.0631962309, - 183667.95523750965, - 161935.09417040885, - 137272.43548205373, - 109665.09980361549, - 88271.94528846069, - 67794.45411732348, - 48941.961434126606, - 34249.037279165175, - 17820.16655482755, - 2755.6918728732994, - -12570.658037644704, - -28809.219465774404, - -42802.392203670606, - -56080.065204158615, - -65878.87287208463, - -72216.59016460448, - -76950.63994303394, - -78908.47587281774, - -79808.30062479162, - -80381.95043847084, - -80444.01173645892, - -80232.39833220119, - -78921.71155108573, - -75999.33921338282, - -71335.91477371543, - -65598.99059350319, - -59178.22452932108, - -54433.281651083664, - -52906.78602935285, - -55082.497992031604, - -62222.14815937722, - -73595.88799041475, - -87433.3147547916, - -100478.78664263102, - -111891.61578587546, - -117233.4820640451, - -115865.67938743554, - -108294.57313036721, - -94419.4338083265, - -75876.20606457737, - -57128.46340946728, - -38733.2316595061, - -21408.660430498378, - -9195.605521001398, - 694.8842000813845, - 8327.408232858363, - 13527.405341860971, - 19227.994685856243, - 23410.520474757286, - 26811.413026181996, - 29723.41914426087, - 29762.246680494358, - 27443.47808758199, - 22718.71308547368, - 16057.378594823422, - 7985.962875019535, - 1195.1809444301355, - -4393.112168973449, - -8247.711346181757, - -9237.443710193676, - -9038.159925103793, - -8207.806292984205, - -7563.703075096828, - -8144.830605778319, - -10043.207206849436, - -12922.316755501864, - -15679.893012376951, - -17578.189224332742, - -18014.274925604186, - -16262.855543601467, - -12789.352369680984, - -8613.89379810823, - -4740.353857208179, - -1531.1760462214374, - -383.1777764669326, - -681.0596035425347, - -1445.675156466398, - -2141.2849429628986, - -1750.4891018125238, - 326.1228016404991, - 3783.140150549683, - 8198.59821077116, - 11812.9640177273, - 14034.761485468736, - 14414.566934083348, - 12766.123140964868, - 10844.630301128771, - 10822.466008783813, - 15091.139257881932, - 25840.882444187617, - 44017.08985374199, - 70714.3718094203, - 100759.2365161795, - 133151.68560010204, - 166679.0722717274, - 189220.67853600596 - ], - "flow:J20:branch123_seg0": [ - 32.726575735293345, - 36.28362551163259, - 37.845809359324285, - 37.302328341953896, - 35.04075378836238, - 31.432045486384524, - 26.963065865109947, - 22.27412291468354, - 17.966838524633225, - 13.88491826398339, - 10.461416374600022, - 7.4278581222821405, - 4.485296661977073, - 1.744417636247647, - -1.1674741131856106, - -4.014894934000502, - -6.7272424426303, - -9.280575304350348, - -11.231803061092704, - -12.730722509685005, - -13.729168558537722, - -14.245517657167865, - -14.533621039286238, - -14.658047312234014, - -14.712551603933294, - -14.70975488286423, - -14.55101118206009, - -14.150577644933689, - -13.45056579881207, - -12.474316366645382, - -11.344384721861934, - -10.3679049562904, - -9.786110070966808, - -9.887117907034927, - -10.838781925227194, - -12.607658032923824, - -14.921220435158672, - -17.42585101767473, - -19.68111807888412, - -21.070682571772892, - -21.420225043472318, - -20.509532800464363, - -18.410715914011107, - -15.395786881921884, - -12.028586877346854, - -8.504225125777042, - -5.299100571884815, - -2.733364187820344, - -0.6286069522354973, - 0.8877021163484573, - 2.055261845988723, - 3.0793110233640326, - 3.9084405245925424, - 4.674782921482112, - 5.241835711149406, - 5.446302720397646, - 5.245813644003459, - 4.561740713546956, - 3.463301008855866, - 2.112840815906187, - 0.7819025555608317, - -0.4156141091949489, - -1.217066366294277, - -1.6113404628780024, - -1.6957397020597609, - -1.5641773275776751, - -1.4276585306178018, - -1.449812017215076, - -1.6942286637534998, - -2.145228369794206, - -2.6574229071065947, - -3.094560164640708, - -3.283873024151141, - -3.118577099581929, - -2.6271778090569886, - -1.9265956300520415, - -1.170942643789626, - -0.5349230012829447, - -0.18563858084307028, - -0.09266298420786429, - -0.19727043289416013, - -0.3490322029229177, - -0.36113622936420164, - -0.11003662845373743, - 0.42341797573758166, - 1.157562802479631, - 1.8782673982358555, - 2.4330909922080246, - 2.6260007535656134, - 2.4672635918016437, - 2.1415993562872098, - 1.975785648328938, - 2.408173472689449, - 3.8651964890035804, - 6.634039476874453, - 10.863825093332078, - 16.0354668179973, - 21.997759312408196, - 27.92209255378417, - 32.726575735293345 - ], - "pressure:J20:branch123_seg0": [ - 189220.67853600596, - 203313.69937130672, - 208591.90251670068, - 200381.0631962309, - 183667.95523750965, - 161935.09417040885, - 137272.43548205373, - 109665.09980361549, - 88271.94528846069, - 67794.45411732348, - 48941.961434126606, - 34249.037279165175, - 17820.16655482755, - 2755.6918728732994, - -12570.658037644704, - -28809.219465774404, - -42802.392203670606, - -56080.065204158615, - -65878.87287208463, - -72216.59016460448, - -76950.63994303394, - -78908.47587281774, - -79808.30062479162, - -80381.95043847084, - -80444.01173645892, - -80232.39833220119, - -78921.71155108573, - -75999.33921338282, - -71335.91477371543, - -65598.99059350319, - -59178.22452932108, - -54433.281651083664, - -52906.78602935285, - -55082.497992031604, - -62222.14815937722, - -73595.88799041475, - -87433.3147547916, - -100478.78664263102, - -111891.61578587546, - -117233.4820640451, - -115865.67938743554, - -108294.57313036721, - -94419.4338083265, - -75876.20606457737, - -57128.46340946728, - -38733.2316595061, - -21408.660430498378, - -9195.605521001398, - 694.8842000813845, - 8327.408232858363, - 13527.405341860971, - 19227.994685856243, - 23410.520474757286, - 26811.413026181996, - 29723.41914426087, - 29762.246680494358, - 27443.47808758199, - 22718.71308547368, - 16057.378594823422, - 7985.962875019535, - 1195.1809444301355, - -4393.112168973449, - -8247.711346181757, - -9237.443710193676, - -9038.159925103793, - -8207.806292984205, - -7563.703075096828, - -8144.830605778319, - -10043.207206849436, - -12922.316755501864, - -15679.893012376951, - -17578.189224332742, - -18014.274925604186, - -16262.855543601467, - -12789.352369680984, - -8613.89379810823, - -4740.353857208179, - -1531.1760462214374, - -383.1777764669326, - -681.0596035425347, - -1445.675156466398, - -2141.2849429628986, - -1750.4891018125238, - 326.1228016404991, - 3783.140150549683, - 8198.59821077116, - 11812.9640177273, - 14034.761485468736, - 14414.566934083348, - 12766.123140964868, - 10844.630301128771, - 10822.466008783813, - 15091.139257881932, - 25840.882444187617, - 44017.08985374199, - 70714.3718094203, - 100759.2365161795, - 133151.68560010204, - 166679.0722717274, - 189220.67853600596 - ], - "flow:branch31_seg0:J21": [ - 78.82019707304845, - 87.5082034774812, - 91.2839890522491, - 90.01738870800328, - 84.51885880236567, - 75.76276617790828, - 64.97397852116825, - 53.74345603233902, - 43.34632282640021, - 33.6852886633263, - 25.57260911932327, - 18.406982407298667, - 11.557234259961316, - 5.098944027296249, - -1.7163089888306045, - -8.455565966027274, - -14.925672918777897, - -21.005303855424152, - -25.747432401319355, - -29.435200867892114, - -31.914122549614344, - -33.27729980534251, - -34.0787030286308, - -34.48484470703722, - -34.740297268841076, - -34.86067893963704, - -34.63136696511977, - -33.834527793719936, - -32.319127739931474, - -30.10892100609169, - -27.50256199680074, - -25.184583654202463, - -23.76027453679665, - -23.938382751041157, - -26.144115122272225, - -30.32372820795351, - -35.90179789630417, - -42.020821009596425, - -47.59912462785872, - -51.222719467916804, - -52.353692948047446, - -50.424095622281804, - -45.595937134112965, - -38.46490452582822, - -30.33549267763275, - -21.754797958091892, - -13.914447491754082, - -7.540393600005504, - -2.3259869075884962, - 1.4329605849529157, - 4.357573033301678, - 6.867175048673569, - 8.952148632627553, - 10.8939955934224, - 12.360662200344732, - 12.998320508015832, - 12.642079071554939, - 11.102896424525534, - 8.52647496857554, - 5.3054302645683675, - 2.0515116015813457, - -0.8733391765496303, - -2.8767745746611317, - -3.8926763541550895, - -4.114435761734945, - -3.7924077022038563, - -3.436508482115649, - -3.449488235963236, - -4.010012452736008, - -5.096558595079193, - -6.369047126351368, - -7.490465161823828, - -8.0207446069583, - -7.700580690368473, - -6.563129770018151, - -4.882282427185043, - -3.0245886682496264, - -1.4448508456414364, - -0.5322509938730627, - -0.2623327395087743, - -0.5046959972647406, - -0.890941811918085, - -0.9645852600945912, - -0.4081890333437604, - 0.854357770127092, - 2.6323507824091905, - 4.437083080500591, - 5.851434220594522, - 6.404299650339154, - 6.083596814600141, - 5.296255760395737, - 4.828019920770024, - 5.741818364556105, - 9.108269899082048, - 15.637607914603418, - 25.731122990242614, - 38.217084602871566, - 52.69440154196959, - 67.02438331457466, - 78.82019707304845 - ], - "pressure:branch31_seg0:J21": [ - 182616.55096749892, - 196600.3188856652, - 200943.61250514883, - 192666.69222650072, - 176268.4335547909, - 154968.91960812148, - 130897.65774648856, - 104745.28707551511, - 84298.84815870026, - 64923.56771565293, - 47390.98120712286, - 33557.54173104289, - 18398.504615338785, - 4336.987003711713, - -10073.473541465824, - -25363.21100759878, - -38806.67816672484, - -51272.34576303642, - -60640.12369063142, - -67039.69778769053, - -71581.97713341707, - -73624.312890607, - -74739.02782809555, - -75471.39792145361, - -75838.54159989646, - -75926.06952664077, - -74986.25322151739, - -72538.02732986868, - -68401.55612578864, - -63114.84171701488, - -57140.24413840922, - -52660.975391941654, - -51088.828852609935, - -53125.80710691329, - -59972.80526384705, - -70891.8644273326, - -84362.1146030666, - -97311.9036649219, - -108609.235156582, - -114281.20347281473, - -113539.15120910606, - -106562.79591776205, - -93377.6473993581, - -75673.23592611663, - -57426.694464224354, - -39168.7986616534, - -22470.55239538015, - -10407.077822677635, - -545.9348381084375, - 6761.3005003701255, - 12050.28715608105, - 17554.376914219494, - 21656.537086212615, - 25291.21723062624, - 28257.845231526077, - 28536.956310008594, - 26542.799127643633, - 22111.97403903276, - 15714.426394904933, - 7965.0200648169875, - 1277.241570713875, - -4231.267543605106, - -8015.431809483655, - -9051.79559196184, - -8808.699056711032, - -7903.0247931430995, - -7216.976514639547, - -7721.651626107497, - -9543.719043844907, - -12372.932318794206, - -15155.110217250121, - -17186.409847973737, - -17696.3279213567, - -16088.846547436684, - -12778.234071775449, - -8709.68682289952, - -4821.481143739233, - -1658.777673458696, - -482.13658731300444, - -677.8133963189746, - -1466.5650172875294, - -2235.479646584359, - -1941.9094327829946, - 1.9583597818764724, - 3366.1222992835364, - 7698.879152198969, - 11371.841295812212, - 13689.644067263676, - 14164.275413686435, - 12615.798112996335, - 10671.058290081472, - 10447.7985930865, - 14329.153611518657, - 24529.55183832225, - 42047.44911343023, - 67768.48233336411, - 96922.65542727133, - 129000.47865622987, - 160901.73463059272, - 182616.55096749892 - ], - "flow:J21:branch32_seg0": [ - 30.366934261793794, - 33.42179615441699, - 34.57402492026066, - 33.77685647506531, - 31.449717325266413, - 27.9733026496433, - 23.801219974000638, - 19.533975381131864, - 15.687570382020164, - 12.099171680813672, - 9.12550886096015, - 6.501291827422759, - 3.933000093548689, - 1.5249589158956058, - -1.054933386031143, - -3.589826651164322, - -5.994290275212568, - -8.2683210079656, - -9.972541984821111, - -11.282135556637705, - -12.155015088738852, - -12.598903365905073, - -12.866006324325879, - -12.99986491622471, - -13.083935795845182, - -13.12219553798068, - -13.014451940665445, - -12.678976214841514, - -12.065166417743542, - -11.195725228255414, - -10.190775022085454, - -9.339352744201388, - -8.864221898966772, - -9.025669305226362, - -9.978223366068937, - -11.671667870758734, - -13.849742856297174, - -16.176793830944455, - -18.246317610233515, - -19.488478600343782, - -19.75720099339497, - -18.855079258746933, - -16.86495976212209, - -14.035944376477326, - -10.926265008892555, - -7.6868606303865255, - -4.759950033329211, - -2.4611850531552983, - -0.5698365401778506, - 0.7701438129322983, - 1.8083646173086583, - 2.739544507980556, - 3.4983811623784957, - 4.212037063627635, - 4.74158945884086, - 4.927505164551432, - 4.731350678971898, - 4.083903060538883, - 3.0526406660465617, - 1.8012458883781146, - 0.5787752287843336, - -0.5007704983036967, - -1.2022305922584458, - -1.5207039127832078, - -1.559659884033271, - -1.4095429194898563, - -1.2732011404740669, - -1.3014374351768248, - -1.545954439526361, - -1.9864368002853237, - -2.474182640196274, - -2.8827652762550073, - -3.0492069196850906, - -2.8763627875245654, - -2.39875489893792, - -1.7350268313645318, - -1.0302132847333552, - -0.4494117679816841, - -0.14738946859634808, - -0.08674352579217708, - -0.2044654489033924, - -0.35700018511885573, - -0.36522370788287417, - -0.11723397062032624, - 0.39981697757423384, - 1.0990140600680849, - 1.7770576743322704, - 2.2842092890938965, - 2.4418800410934227, - 2.26740296919654, - 1.9461123408089824, - 1.7947588137107546, - 2.2270322103091234, - 3.6450686905467435, - 6.292205317256412, - 10.315089589118667, - 15.153021882199127, - 20.681131987945758, - 26.108223317393158, - 30.366934261793794 - ], - "pressure:J21:branch32_seg0": [ - 182616.55096749892, - 196600.3188856652, - 200943.61250514883, - 192666.69222650072, - 176268.4335547909, - 154968.91960812148, - 130897.65774648856, - 104745.28707551511, - 84298.84815870026, - 64923.56771565293, - 47390.98120712286, - 33557.54173104289, - 18398.504615338785, - 4336.987003711713, - -10073.473541465824, - -25363.21100759878, - -38806.67816672484, - -51272.34576303642, - -60640.12369063142, - -67039.69778769053, - -71581.97713341707, - -73624.312890607, - -74739.02782809555, - -75471.39792145361, - -75838.54159989646, - -75926.06952664077, - -74986.25322151739, - -72538.02732986868, - -68401.55612578864, - -63114.84171701488, - -57140.24413840922, - -52660.975391941654, - -51088.828852609935, - -53125.80710691329, - -59972.80526384705, - -70891.8644273326, - -84362.1146030666, - -97311.9036649219, - -108609.235156582, - -114281.20347281473, - -113539.15120910606, - -106562.79591776205, - -93377.6473993581, - -75673.23592611663, - -57426.694464224354, - -39168.7986616534, - -22470.55239538015, - -10407.077822677635, - -545.9348381084375, - 6761.3005003701255, - 12050.28715608105, - 17554.376914219494, - 21656.537086212615, - 25291.21723062624, - 28257.845231526077, - 28536.956310008594, - 26542.799127643633, - 22111.97403903276, - 15714.426394904933, - 7965.0200648169875, - 1277.241570713875, - -4231.267543605106, - -8015.431809483655, - -9051.79559196184, - -8808.699056711032, - -7903.0247931430995, - -7216.976514639547, - -7721.651626107497, - -9543.719043844907, - -12372.932318794206, - -15155.110217250121, - -17186.409847973737, - -17696.3279213567, - -16088.846547436684, - -12778.234071775449, - -8709.68682289952, - -4821.481143739233, - -1658.777673458696, - -482.13658731300444, - -677.8133963189746, - -1466.5650172875294, - -2235.479646584359, - -1941.9094327829946, - 1.9583597818764724, - 3366.1222992835364, - 7698.879152198969, - 11371.841295812212, - 13689.644067263676, - 14164.275413686435, - 12615.798112996335, - 10671.058290081472, - 10447.7985930865, - 14329.153611518657, - 24529.55183832225, - 42047.44911343023, - 67768.48233336411, - 96922.65542727133, - 129000.47865622987, - 160901.73463059272, - 182616.55096749892 - ], - "flow:J21:branch101_seg0": [ - 48.45326281125467, - 54.08640732306327, - 56.70996413198903, - 56.24053223293918, - 53.06914147710037, - 47.78946352826578, - 41.17275854716891, - 34.209480651208096, - 27.658752444380596, - 21.586116982511623, - 16.44710025836182, - 11.905690579875253, - 7.624234166415369, - 3.5739851114020595, - -0.6613756027963412, - -4.865739314860597, - -8.931382643565104, - -12.736982847456458, - -15.77489041649876, - -18.15306531125452, - -19.75910746087232, - -20.67839643943882, - -21.212696704303944, - -21.484979790812485, - -21.656361472997226, - -21.738483401656133, - -21.616915024454773, - -21.15555157887815, - -20.253961322187276, - -18.913195777838155, - -17.31178697471674, - -15.845230910001002, - -14.896052637830309, - -14.912713445815541, - -16.165891756204786, - -18.652060337194975, - -22.05205504000703, - -25.844027178652006, - -29.352807017625388, - -31.7342408675728, - -32.596491954652734, - -31.56901636353473, - -28.730977371990807, - -24.428960149350853, - -19.409227668740215, - -14.06793732770542, - -9.154497458424883, - -5.079208546850205, - -1.7561503674106411, - 0.6628167720205969, - 2.549208415993004, - 4.127630540693012, - 5.453767470249032, - 6.681958529794783, - 7.619072741503853, - 8.070815343464325, - 7.910728392583086, - 7.01899336398646, - 5.473834302529025, - 3.504184376190168, - 1.4727363727971365, - -0.37256867824603757, - -1.6745439824025754, - -2.371972441371976, - -2.5547758777017644, - -2.3828647827141656, - -2.163307341641411, - -2.148050800786336, - -2.4640580132097494, - -3.110121794793965, - -3.894864486155082, - -4.6076998855688345, - -4.971537687273206, - -4.824217902843912, - -4.164374871080261, - -3.147255595820533, - -1.9943753835163205, - -0.9954390776597599, - -0.38486152527671896, - -0.17558921371657601, - -0.3002305483613669, - -0.5339416267992307, - -0.5993615522117102, - -0.2909550627234171, - 0.4545407925528548, - 1.5333367223411174, - 2.6600254061683772, - 3.5672249315006184, - 3.962419609245734, - 3.8161938454035877, - 3.3501434195867805, - 3.033261107059228, - 3.514786154246928, - 5.463201208535205, - 9.345402597346968, - 15.416033401124176, - 23.064062720672254, - 32.013269554023815, - 40.91615999718174, - 48.45326281125467 - ], - "pressure:J21:branch101_seg0": [ - 182616.55096749892, - 196600.3188856652, - 200943.61250514883, - 192666.69222650072, - 176268.4335547909, - 154968.91960812148, - 130897.65774648856, - 104745.28707551511, - 84298.84815870026, - 64923.56771565293, - 47390.98120712286, - 33557.54173104289, - 18398.504615338785, - 4336.987003711713, - -10073.473541465824, - -25363.21100759878, - -38806.67816672484, - -51272.34576303642, - -60640.12369063142, - -67039.69778769053, - -71581.97713341707, - -73624.312890607, - -74739.02782809555, - -75471.39792145361, - -75838.54159989646, - -75926.06952664077, - -74986.25322151739, - -72538.02732986868, - -68401.55612578864, - -63114.84171701488, - -57140.24413840922, - -52660.975391941654, - -51088.828852609935, - -53125.80710691329, - -59972.80526384705, - -70891.8644273326, - -84362.1146030666, - -97311.9036649219, - -108609.235156582, - -114281.20347281473, - -113539.15120910606, - -106562.79591776205, - -93377.6473993581, - -75673.23592611663, - -57426.694464224354, - -39168.7986616534, - -22470.55239538015, - -10407.077822677635, - -545.9348381084375, - 6761.3005003701255, - 12050.28715608105, - 17554.376914219494, - 21656.537086212615, - 25291.21723062624, - 28257.845231526077, - 28536.956310008594, - 26542.799127643633, - 22111.97403903276, - 15714.426394904933, - 7965.0200648169875, - 1277.241570713875, - -4231.267543605106, - -8015.431809483655, - -9051.79559196184, - -8808.699056711032, - -7903.0247931430995, - -7216.976514639547, - -7721.651626107497, - -9543.719043844907, - -12372.932318794206, - -15155.110217250121, - -17186.409847973737, - -17696.3279213567, - -16088.846547436684, - -12778.234071775449, - -8709.68682289952, - -4821.481143739233, - -1658.777673458696, - -482.13658731300444, - -677.8133963189746, - -1466.5650172875294, - -2235.479646584359, - -1941.9094327829946, - 1.9583597818764724, - 3366.1222992835364, - 7698.879152198969, - 11371.841295812212, - 13689.644067263676, - 14164.275413686435, - 12615.798112996335, - 10671.058290081472, - 10447.7985930865, - 14329.153611518657, - 24529.55183832225, - 42047.44911343023, - 67768.48233336411, - 96922.65542727133, - 129000.47865622987, - 160901.73463059272, - 182616.55096749892 - ], - "flow:branch33_seg0:J22": [ - 109.72992120314544, - 123.93519779444435, - 131.659976207901, - 132.33209847168797, - 126.65586164295496, - 115.71460045561504, - 101.1050512615104, - 85.11741296577588, - 69.50989037390794, - 54.66913770110095, - 41.9200678772708, - 30.49731091513657, - 19.835782218701496, - 9.830947316549922, - -0.5138825814892976, - -10.616544378339528, - -20.500793152257376, - -29.799086310429534, - -37.283389065885885, - -43.244028078200074, - -47.38566989332488, - -49.79833858013784, - -51.203778179334144, - -51.87061027373483, - -52.19266348772973, - -52.274815931692025, - -51.87605137353129, - -50.72817803502526, - -48.592849231748495, - -45.46245365513182, - -41.66977200939925, - -38.11055573998472, - -35.60892877658291, - -35.20923258658187, - -37.59487175169011, - -42.85356003139838, - -50.27469841962879, - -58.87191969616072, - -67.01123926963923, - -72.79651373292307, - -75.25964368670044, - -73.47571687609725, - -67.45223334989676, - -57.958697116103195, - -46.66659824853161, - -34.40998298103333, - -22.855197900185054, - -13.139620796301674, - -5.04386364803652, - 0.9707301371526381, - 5.617814713808589, - 9.517242053095448, - 12.683754583919088, - 15.56317294589328, - 17.78763143495093, - 18.92328195346397, - 18.716196872577832, - 16.87074263640798, - 13.499575864165294, - 9.108568274615072, - 4.428698977253976, - 0.04482091501308287, - -3.1668110583055222, - -5.067349387596607, - -5.778187749672612, - -5.594542233160925, - -5.189539406039685, - -5.141869369868269, - -5.77458503389107, - -7.1322482770090225, - -8.832154407836603, - -10.43531869315615, - -11.345594205622678, - -11.141996601954474, - -9.804304657092016, - -7.612783779487673, - -5.053026427531005, - -2.7196837827082083, - -1.2012543297404443, - -0.5484382848892324, - -0.66297559723805, - -1.1005339702640242, - -1.248299374130304, - -0.6362849216597569, - 0.9299970263391742, - 3.2562443172421283, - 5.7795680054841485, - 7.910135533308463, - 8.955259568846659, - 8.811185505307572, - 7.90441906705084, - 7.204847938033832, - 8.136550115965967, - 12.185414845359027, - 20.530859392562984, - 33.817311394770925, - 50.8262419165326, - 70.9729530529429, - 91.74675973975747, - 109.72992120314544 - ], - "pressure:branch33_seg0:J22": [ - 175734.34770948224, - 193960.67858331883, - 202949.6646734555, - 199902.94644595406, - 187852.0480717702, - 169128.74491564155, - 145986.64487082083, - 120403.7990118848, - 97519.26352372004, - 75985.63620312263, - 56995.845100628045, - 40779.71011150707, - 24614.89954163625, - 9451.283708023639, - -6126.687118735516, - -21628.583141414038, - -36255.15146634269, - -50102.81050803467, - -60544.06106454288, - -68355.18870417301, - -73962.43889620446, - -76770.59288992024, - -78369.54987440522, - -79155.42370530654, - -79425.53224228897, - -79425.74396162093, - -78512.63660996704, - -76269.69936748204, - -72427.98901073575, - -67276.43246491815, - -61228.59573403091, - -56111.454096078596, - -53295.50139768855, - -53839.65454657612, - -58986.503719482076, - -68454.5049900506, - -80746.3887124333, - -93906.30235105456, - -105825.69581453111, - -113094.39743874353, - -114586.48643442118, - -109715.9690679729, - -98426.24964464488, - -82049.21997414058, - -64432.09620828253, - -46014.87783398018, - -28490.00827458385, - -15106.551187326244, - -3860.5869225789847, - 4518.206226933814, - 10600.215502189816, - 16496.34732942347, - 20968.6137241203, - 24862.264847091, - 28066.4785917094, - 29063.257926415663, - 27891.397458881584, - 24293.276051234072, - 18495.992443618685, - 11285.416099087617, - 4236.015642681616, - -1961.423207476813, - -6323.948383491446, - -8382.737444473529, - -8888.291561282487, - -8336.318186262872, - -7687.886454592248, - -7899.736281432919, - -9277.490144484946, - -11724.835148446418, - -14352.95338314931, - -16532.39367162207, - -17523.60180280404, - -16563.700791976036, - -13907.573304986076, - -10219.32751133064, - -6381.583263747779, - -2961.516656096637, - -1171.608929916863, - -760.1725395407846, - -1175.2290618830268, - -1873.0387099135246, - -1841.801609249967, - -435.15085936052213, - 2420.052391199272, - 6308.767965942845, - 10090.493936727747, - 12901.180527700644, - 13926.946361936893, - 13063.836049534932, - 11420.436380259995, - 10794.25618507035, - 13436.152869120864, - 21575.090226640943, - 36622.83203850532, - 59789.08069761541, - 87216.639356093, - 118134.91464625044, - 150928.52323161685, - 175734.34770948224 - ], - "flow:J22:branch34_seg0": [ - 46.164270702022925, - 52.353693366654454, - 55.828065709688666, - 56.34179879009608, - 54.12711276974631, - 49.62132486242529, - 43.502293317454935, - 36.75260170090374, - 30.076733609257346, - 23.72712583513754, - 18.251006792034477, - 13.331020373674535, - 8.775580415308756, - 4.495763914979792, - 0.09021183861991536, - -4.21017777090699, - -8.438854084022909, - -12.416332521186929, - -15.652249858608306, - -18.247462991981468, - -20.05957369671858, - -21.137302300167747, - -21.767707116346443, - -22.06994671870583, - -22.218271345728294, - -22.260509561809577, - -22.105207738495434, - -21.640265938852377, - -20.761359622222074, - -19.45559109754628, - -17.85952038013697, - -16.333910862483453, - -15.229322009705834, - -14.994990253534896, - -15.925666246543916, - -18.07770825994092, - -21.17158224392491, - -24.807093226021493, - -28.284533094487326, - -30.820519518566865, - -31.975834799767338, - -31.338696088259034, - -28.898895033169808, - -24.963587440491935, - -20.209089735434407, - -15.009599334681756, - -10.07933683111365, - -5.885751182633816, - -2.3865681860308254, - 0.22718245574551305, - 2.251436039670723, - 3.929523449216354, - 5.298345347322685, - 6.538906662904225, - 7.5025581621468405, - 8.022335847437724, - 7.977720314196838, - 7.240745797056728, - 5.8502103100152265, - 4.014149229076571, - 2.0253906418628804, - 0.14662427246323245, - -1.251087899642621, - -2.1035892996953924, - -2.4405260874462353, - -2.38563367919153, - -2.2195888979888294, - -2.1877054086734544, - -2.4360757791014707, - -2.9926268419288964, - -3.7070823725737574, - -4.3953076544427505, - -4.803445321963146, - -4.750786310367105, - -4.216467987894383, - -3.3083829608239887, - -2.227012436274914, - -1.227671783541218, - -0.5558647081812476, - -0.24990107886968038, - -0.27812950204964293, - -0.4565575369378469, - -0.5292178389047415, - -0.29278835781691914, - 0.3459366766850315, - 1.3131466163957772, - 2.3845872407527526, - 3.3063140797636015, - 3.7817783398960705, - 3.756898056904476, - 3.391440469823125, - 3.0823789616463526, - 3.424694694238198, - 5.049440160950401, - 8.471372056712557, - 13.973205170279535, - 21.10087770641458, - 29.60046698268371, - 38.41172795517311, - 46.164270702022925 - ], - "pressure:J22:branch34_seg0": [ - 175734.34770948224, - 193960.67858331883, - 202949.6646734555, - 199902.94644595406, - 187852.0480717702, - 169128.74491564155, - 145986.64487082083, - 120403.7990118848, - 97519.26352372004, - 75985.63620312263, - 56995.845100628045, - 40779.71011150707, - 24614.89954163625, - 9451.283708023639, - -6126.687118735516, - -21628.583141414038, - -36255.15146634269, - -50102.81050803467, - -60544.06106454288, - -68355.18870417301, - -73962.43889620446, - -76770.59288992024, - -78369.54987440522, - -79155.42370530654, - -79425.53224228897, - -79425.74396162093, - -78512.63660996704, - -76269.69936748204, - -72427.98901073575, - -67276.43246491815, - -61228.59573403091, - -56111.454096078596, - -53295.50139768855, - -53839.65454657612, - -58986.503719482076, - -68454.5049900506, - -80746.3887124333, - -93906.30235105456, - -105825.69581453111, - -113094.39743874353, - -114586.48643442118, - -109715.9690679729, - -98426.24964464488, - -82049.21997414058, - -64432.09620828253, - -46014.87783398018, - -28490.00827458385, - -15106.551187326244, - -3860.5869225789847, - 4518.206226933814, - 10600.215502189816, - 16496.34732942347, - 20968.6137241203, - 24862.264847091, - 28066.4785917094, - 29063.257926415663, - 27891.397458881584, - 24293.276051234072, - 18495.992443618685, - 11285.416099087617, - 4236.015642681616, - -1961.423207476813, - -6323.948383491446, - -8382.737444473529, - -8888.291561282487, - -8336.318186262872, - -7687.886454592248, - -7899.736281432919, - -9277.490144484946, - -11724.835148446418, - -14352.95338314931, - -16532.39367162207, - -17523.60180280404, - -16563.700791976036, - -13907.573304986076, - -10219.32751133064, - -6381.583263747779, - -2961.516656096637, - -1171.608929916863, - -760.1725395407846, - -1175.2290618830268, - -1873.0387099135246, - -1841.801609249967, - -435.15085936052213, - 2420.052391199272, - 6308.767965942845, - 10090.493936727747, - 12901.180527700644, - 13926.946361936893, - 13063.836049534932, - 11420.436380259995, - 10794.25618507035, - 13436.152869120864, - 21575.090226640943, - 36622.83203850532, - 59789.08069761541, - 87216.639356093, - 118134.91464625044, - 150928.52323161685, - 175734.34770948224 - ], - "flow:J22:branch81_seg0": [ - 37.76643251840542, - 42.69110085676951, - 45.38558403526863, - 45.667379545309245, - 43.73527006228493, - 39.98487035308629, - 34.97179675487911, - 29.442576288737396, - 24.05963277773533, - 18.950665039362203, - 14.524965429516461, - 10.577196503474077, - 6.900414717099882, - 3.4388365733361486, - -0.11350194088490934, - -3.614106016547075, - -7.0414182338880655, - -10.228305203326176, - -12.83623129605195, - -14.906888520986433, - -16.336237867156225, - -17.183515347642896, - -17.668150788861183, - -17.898658228055062, - -18.012372753778966, - -18.038632608337583, - -17.902456258797645, - -17.509928307677317, - -16.776136226827333, - -15.700380976431788, - -14.394683870151175, - -13.163451759729245, - -12.294643309891224, - -12.145419010740573, - -12.950562853381768, - -14.744107050703875, - -17.302057254010567, - -20.25913699241014, - -23.06431709027187, - -25.081484547964145, - -25.944811398369097, - -25.350759352521493, - -23.294244428644017, - -20.048037441505063, - -16.14682833735628, - -11.91408216212637, - -7.937908558466658, - -4.5635839597602255, - -1.7713606312505825, - 0.30996354479845606, - 1.9264524964456038, - 3.2661679748104646, - 4.359082453855877, - 5.353835566677823, - 6.122747206876065, - 6.52089460106656, - 6.45532049498736, - 5.826228886066829, - 4.674728544633098, - 3.161116401228435, - 1.5490404331123737, - 0.043337267511575885, - -1.0783839802076876, - -1.7433790700127005, - -1.9902989384612295, - -1.931826416367346, - -1.7928199186151461, - -1.7722266884114597, - -1.9859925684215094, - -2.4487436438003334, - -3.0352439188500204, - -3.5915602860075517, - -3.907434291195567, - -3.844599934274963, - -3.3889243243642544, - -2.635874097510851, - -1.752971334515564, - -0.9474661376558519, - -0.4194434222191049, - -0.18962713641810905, - -0.22678529155574204, - -0.37584852190893253, - -0.4292694977971232, - -0.22309350659987345, - 0.3103024814008967, - 1.1099254152228129, - 1.9797010383461686, - 2.713020764495232, - 3.0837189511050362, - 3.0426488541466026, - 2.732578697992606, - 2.487347897017836, - 2.797349614316813, - 4.173977166167253, - 7.031733855705122, - 11.5736658984147, - 17.429612030707162, - 24.393452369466168, - 31.530396126310684, - 37.76643251840542 - ], - "pressure:J22:branch81_seg0": [ - 175734.34770948224, - 193960.67858331883, - 202949.6646734555, - 199902.94644595406, - 187852.0480717702, - 169128.74491564155, - 145986.64487082083, - 120403.7990118848, - 97519.26352372004, - 75985.63620312263, - 56995.845100628045, - 40779.71011150707, - 24614.89954163625, - 9451.283708023639, - -6126.687118735516, - -21628.583141414038, - -36255.15146634269, - -50102.81050803467, - -60544.06106454288, - -68355.18870417301, - -73962.43889620446, - -76770.59288992024, - -78369.54987440522, - -79155.42370530654, - -79425.53224228897, - -79425.74396162093, - -78512.63660996704, - -76269.69936748204, - -72427.98901073575, - -67276.43246491815, - -61228.59573403091, - -56111.454096078596, - -53295.50139768855, - -53839.65454657612, - -58986.503719482076, - -68454.5049900506, - -80746.3887124333, - -93906.30235105456, - -105825.69581453111, - -113094.39743874353, - -114586.48643442118, - -109715.9690679729, - -98426.24964464488, - -82049.21997414058, - -64432.09620828253, - -46014.87783398018, - -28490.00827458385, - -15106.551187326244, - -3860.5869225789847, - 4518.206226933814, - 10600.215502189816, - 16496.34732942347, - 20968.6137241203, - 24862.264847091, - 28066.4785917094, - 29063.257926415663, - 27891.397458881584, - 24293.276051234072, - 18495.992443618685, - 11285.416099087617, - 4236.015642681616, - -1961.423207476813, - -6323.948383491446, - -8382.737444473529, - -8888.291561282487, - -8336.318186262872, - -7687.886454592248, - -7899.736281432919, - -9277.490144484946, - -11724.835148446418, - -14352.95338314931, - -16532.39367162207, - -17523.60180280404, - -16563.700791976036, - -13907.573304986076, - -10219.32751133064, - -6381.583263747779, - -2961.516656096637, - -1171.608929916863, - -760.1725395407846, - -1175.2290618830268, - -1873.0387099135246, - -1841.801609249967, - -435.15085936052213, - 2420.052391199272, - 6308.767965942845, - 10090.493936727747, - 12901.180527700644, - 13926.946361936893, - 13063.836049534932, - 11420.436380259995, - 10794.25618507035, - 13436.152869120864, - 21575.090226640943, - 36622.83203850532, - 59789.08069761541, - 87216.639356093, - 118134.91464625044, - 150928.52323161685, - 175734.34770948224 - ], - "flow:J22:branch117_seg0": [ - 25.79921798271755, - 28.890403571019483, - 30.44632646294234, - 30.32292013628083, - 28.79347881092287, - 26.108405240101657, - 22.630961189175476, - 18.92223497613408, - 15.373523986915561, - 11.991346826603769, - 9.144095655722484, - 6.589094037988649, - 4.159787086293205, - 1.8963468282337466, - -0.49059247922540755, - -2.7922605908886617, - -5.020520834347612, - -7.154448585919446, - -8.794907911225573, - -10.089676565233216, - -10.989858329452186, - -11.477520932320806, - -11.76792027412708, - -11.902005326973306, - -11.962019388226699, - -11.975673761544181, - -11.868387376236306, - -11.577983788495116, - -11.055353382697556, - -10.306481581153408, - -9.415567759108976, - -8.613193117772344, - -8.084963456983926, - -8.06882332230513, - -8.718642651766919, - -10.031744720753434, - -11.801058921693073, - -13.805689477728812, - -15.662389084879742, - -16.894509666391933, - -17.338997488562978, - -16.78626143531625, - -15.259093888083292, - -12.94707223410616, - -10.31068017574088, - -7.4863014842251365, - -4.83795251060476, - -2.6902856539076345, - -0.8859348307551339, - 0.43358413660867484, - 1.4399261776922316, - 2.321550629068635, - 3.0263267827405325, - 3.670430716311261, - 4.16232606592809, - 4.3800515049596225, - 4.283156063393939, - 3.803767953284429, - 2.974637009517008, - 1.933302644309915, - 0.8542679022786345, - -0.14514062496161806, - -0.8373391784554481, - -1.2203810178883685, - -1.3473627237652936, - -1.2770821376021384, - -1.1771305894356505, - -1.1819372727831734, - -1.3525166863680969, - -1.6908777912798345, - -2.0898281164127983, - -2.4484507527056767, - -2.6347145924640714, - -2.546610357312465, - -2.198912344833436, - -1.6685267211527732, - -1.073042656740539, - -0.5445458615111461, - -0.22594619934009139, - -0.10891006960149731, - -0.15806080363266578, - -0.2681279114172504, - -0.28981203742842393, - -0.12040305724295981, - 0.2737578682532447, - 0.8331722856235608, - 1.4152797263852492, - 1.8908006890496256, - 2.0897622778456104, - 2.0116385942564183, - 1.7803998992350947, - 1.635121079369549, - 1.9145058074109709, - 2.9619975182413794, - 5.027753480145338, - 8.270440326076322, - 12.295752179411442, - 16.979033700793106, - 21.804635658273273, - 25.79921798271755 - ], - "pressure:J22:branch117_seg0": [ - 175734.34770948224, - 193960.67858331883, - 202949.6646734555, - 199902.94644595406, - 187852.0480717702, - 169128.74491564155, - 145986.64487082083, - 120403.7990118848, - 97519.26352372004, - 75985.63620312263, - 56995.845100628045, - 40779.71011150707, - 24614.89954163625, - 9451.283708023639, - -6126.687118735516, - -21628.583141414038, - -36255.15146634269, - -50102.81050803467, - -60544.06106454288, - -68355.18870417301, - -73962.43889620446, - -76770.59288992024, - -78369.54987440522, - -79155.42370530654, - -79425.53224228897, - -79425.74396162093, - -78512.63660996704, - -76269.69936748204, - -72427.98901073575, - -67276.43246491815, - -61228.59573403091, - -56111.454096078596, - -53295.50139768855, - -53839.65454657612, - -58986.503719482076, - -68454.5049900506, - -80746.3887124333, - -93906.30235105456, - -105825.69581453111, - -113094.39743874353, - -114586.48643442118, - -109715.9690679729, - -98426.24964464488, - -82049.21997414058, - -64432.09620828253, - -46014.87783398018, - -28490.00827458385, - -15106.551187326244, - -3860.5869225789847, - 4518.206226933814, - 10600.215502189816, - 16496.34732942347, - 20968.6137241203, - 24862.264847091, - 28066.4785917094, - 29063.257926415663, - 27891.397458881584, - 24293.276051234072, - 18495.992443618685, - 11285.416099087617, - 4236.015642681616, - -1961.423207476813, - -6323.948383491446, - -8382.737444473529, - -8888.291561282487, - -8336.318186262872, - -7687.886454592248, - -7899.736281432919, - -9277.490144484946, - -11724.835148446418, - -14352.95338314931, - -16532.39367162207, - -17523.60180280404, - -16563.700791976036, - -13907.573304986076, - -10219.32751133064, - -6381.583263747779, - -2961.516656096637, - -1171.608929916863, - -760.1725395407846, - -1175.2290618830268, - -1873.0387099135246, - -1841.801609249967, - -435.15085936052213, - 2420.052391199272, - 6308.767965942845, - 10090.493936727747, - 12901.180527700644, - 13926.946361936893, - 13063.836049534932, - 11420.436380259995, - 10794.25618507035, - 13436.152869120864, - 21575.090226640943, - 36622.83203850532, - 59789.08069761541, - 87216.639356093, - 118134.91464625044, - 150928.52323161685, - 175734.34770948224 - ], - "flow:branch34_seg0:J23": [ - 46.15817553367678, - 52.35041836533066, - 55.82711053721097, - 56.34340400519804, - 54.131551664681425, - 49.62688925614951, - 43.50747974304584, - 36.759871849199655, - 30.082120616060607, - 23.73077011405831, - 18.255569040393762, - 13.334401416523274, - 8.77899625712196, - 4.499458124507272, - 0.09270880834927106, - -4.20658816715029, - -8.435057391551446, - -12.414298842178955, - -15.649903694999146, - -18.245836463272006, - -20.05872352888312, - -21.136554236179972, - -21.767482199873445, - -22.06982681819929, - -22.21814389691026, - -22.26059022230098, - -22.105555402084665, - -21.641000603444805, - -20.76261971388512, - -19.457018798360693, - -17.86103808427796, - -16.33503787235929, - -15.229446321808936, - -14.99419553224123, - -15.923950988026652, - -18.07540336186723, - -21.168221243893715, - -24.804342664676263, - -28.282551006040922, - -30.819300862931915, - -31.976516087321446, - -31.34062455843369, - -28.90206628779217, - -24.967153081634354, - -20.21351755540342, - -15.014083215980614, - -10.083057537733776, - -5.889184156585378, - -2.3888656712518186, - 0.22531587586519092, - 2.2497311575385424, - 3.928040729470121, - 5.29721192413935, - 6.53809557103985, - 7.501899245802555, - 8.022290516002375, - 7.978393358812238, - 7.242002537084987, - 5.851630893339203, - 4.016153923715955, - 2.026995444073834, - 0.14728288185394728, - -1.2502502514751646, - -2.1032588852535232, - -2.440695643852692, - -2.3857733718747456, - -2.2196289324136558, - -2.1875505340519594, - -2.4356298246352424, - -2.9920534201675246, - -3.706460764749083, - -4.394832527648574, - -4.803422874642655, - -4.751175747065896, - -4.217287439348543, - -3.309435750363622, - -2.227978833224435, - -1.2284506613236428, - -0.5561671320883125, - -0.24980854772784084, - -0.2779062936006587, - -0.4564731525723705, - -0.5293969732734066, - -0.29334412707345864, - 0.34517898647475503, - 1.3121208148404342, - 2.383777498160682, - 3.306172519644602, - 3.7817516270318454, - 3.7571712220556215, - 3.3917750910568087, - 3.082268501782455, - 3.423551672466825, - 5.046828533889526, - 8.466855863762259, - 13.967435061565697, - 21.09375257556223, - 29.591769800113724, - 38.40391483386206, - 46.15817553367678 - ], - "pressure:branch34_seg0:J23": [ - 175073.45046226247, - 193464.76891667978, - 202612.81431302158, - 199792.72470031868, - 187949.08744056785, - 169366.00445312573, - 146304.76775823013, - 120816.13774657164, - 97884.82764286468, - 76318.21463818678, - 57323.908884048, - 41052.42909845465, - 24901.77859599509, - 9740.13477279741, - -5838.523378834657, - -21307.948436066952, - -35951.07115503002, - -49814.387402037726, - -60283.681176919046, - -68154.5151465285, - -73798.22177259813, - -76645.28995445407, - -78274.0896773103, - -79070.59986142218, - -79350.48477745253, - -79359.35863786512, - -78463.74525970755, - -76250.48039089712, - -72445.56607103982, - -67321.6228146377, - -61293.75187687801, - -56163.453031589044, - -53295.65357378062, - -53770.684874135746, - -58829.33267884947, - -68209.49567727445, - -80430.34701045114, - -93582.52090865835, - -105517.1104688854, - -112863.75009117305, - -114476.75762831692, - -109726.21528664911, - -98558.03779931275, - -82286.68606653203, - -64725.92324190695, - -46318.649984957214, - -28794.86251148291, - -15363.007071953603, - -4064.7238593678585, - 4346.4235933374885, - 10467.34553913159, - 16369.002500731654, - 20854.267188023463, - 24766.957049657743, - 27982.402467370455, - 29019.50385988773, - 27896.75872089806, - 24348.455736178745, - 18592.52081554713, - 11421.117912643918, - 4367.0671570022205, - -1851.4912965074373, - -6235.649550758077, - -8339.091350671915, - -8875.521251479093, - -8337.856184148919, - -7690.790492741264, - -7887.244815949139, - -9241.743492819403, - -11668.406136205671, - -14289.29454663249, - -16479.180164628015, - -17493.173628246048, - -16568.507002496386, - -13949.085184082498, - -10284.44749563031, - -6450.3876279368515, - -3023.840054947542, - -1206.8316031457493, - -765.0778114201506, - -1164.24318966209, - -1860.4538277342112, - -1843.8358815805957, - -465.81624320553817, - 2361.5639932143445, - 6226.0253102623155, - 10011.08008450296, - 12844.060164311795, - 13897.816059242603, - 13069.76624898455, - 11440.737094412816, - 10791.258744683211, - 13363.852191200853, - 21388.226875519973, - 36292.61519314789, - 59292.20356957474, - 86593.97849252264, - 117436.6299621526, - 150175.1800082715, - 175073.45046226247 - ], - "flow:J23:branch35_seg0": [ - 27.304708222527246, - 31.13106213597581, - 33.36816794953887, - 33.85857191699821, - 32.68527053209216, - 30.101338985959522, - 26.51203452848594, - 22.49260438666826, - 18.462793753853145, - 14.629450276170449, - 11.29161421340619, - 8.293465258024542, - 5.542770215986682, - 2.9535337901147054, - 0.31358711805097905, - -2.2739269110692995, - -4.831286754744151, - -7.228194047822214, - -9.217433479103331, - -10.822893063010579, - -11.951542854343145, - -12.64371026379398, - -13.048564039124393, - -13.246728635653419, - -13.346400776627389, - -13.377945466885977, - -13.296968260030505, - -13.037416477381475, - -12.534092167928323, - -11.773145868649683, - -10.83054959916308, - -9.906836147458279, - -9.213790206644749, - -9.021222973529516, - -9.510721060417355, - -10.731453320308173, - -12.539723781434972, - -14.701099751736404, - -16.800606439111395, - -18.38762284702035, - -19.16847802192369, - -18.888979953343167, - -17.52717471465079, - -15.252675739629973, - -12.435788896598822, - -9.325110461370818, - -6.352336299389201, - -3.780211969010114, - -1.634701520782638, - -0.016911380866002378, - 1.2399404438383759, - 2.2642285209575905, - 3.1044750326878514, - 3.861438844282872, - 4.455179431510344, - 4.796615469777293, - 4.804283633103534, - 4.4008752627275305, - 3.6028913452711655, - 2.5245247661911234, - 1.3334544989977297, - 0.19712522921176412, - -0.6716139352991647, - -1.219912183489385, - -1.4503523576075963, - -1.4381051181527804, - -1.344179830756093, - -1.315646711007968, - -1.447894866122074, - -1.7643914695656462, - -2.186265545255499, - -2.604509963159615, - -2.866188120263121, - -2.8626139416722616, - -2.5700396417702622, - -2.0445596067071894, - -1.401864982768906, - -0.7961520905738814, - -0.37178412393732274, - -0.16511911703621004, - -0.16456424750758072, - -0.2643181906883917, - -0.3154322741555315, - -0.1926206067878332, - 0.16780801389031155, - 0.7307170679800846, - 1.3716779349295192, - 1.935790004502029, - 2.24829517030394, - 2.2639459543852243, - 2.0619214955020224, - 1.868394378060727, - 2.0315050032017576, - 2.9288964359227463, - 4.880798454591589, - 8.06032493409384, - 12.25388138529521, - 17.303109811826122, - 22.568639923472137, - 27.304708222527246 - ], - "pressure:J23:branch35_seg0": [ - 175073.45046226247, - 193464.76891667978, - 202612.81431302158, - 199792.72470031868, - 187949.08744056785, - 169366.00445312573, - 146304.76775823013, - 120816.13774657164, - 97884.82764286468, - 76318.21463818678, - 57323.908884048, - 41052.42909845465, - 24901.77859599509, - 9740.13477279741, - -5838.523378834657, - -21307.948436066952, - -35951.07115503002, - -49814.387402037726, - -60283.681176919046, - -68154.5151465285, - -73798.22177259813, - -76645.28995445407, - -78274.0896773103, - -79070.59986142218, - -79350.48477745253, - -79359.35863786512, - -78463.74525970755, - -76250.48039089712, - -72445.56607103982, - -67321.6228146377, - -61293.75187687801, - -56163.453031589044, - -53295.65357378062, - -53770.684874135746, - -58829.33267884947, - -68209.49567727445, - -80430.34701045114, - -93582.52090865835, - -105517.1104688854, - -112863.75009117305, - -114476.75762831692, - -109726.21528664911, - -98558.03779931275, - -82286.68606653203, - -64725.92324190695, - -46318.649984957214, - -28794.86251148291, - -15363.007071953603, - -4064.7238593678585, - 4346.4235933374885, - 10467.34553913159, - 16369.002500731654, - 20854.267188023463, - 24766.957049657743, - 27982.402467370455, - 29019.50385988773, - 27896.75872089806, - 24348.455736178745, - 18592.52081554713, - 11421.117912643918, - 4367.0671570022205, - -1851.4912965074373, - -6235.649550758077, - -8339.091350671915, - -8875.521251479093, - -8337.856184148919, - -7690.790492741264, - -7887.244815949139, - -9241.743492819403, - -11668.406136205671, - -14289.29454663249, - -16479.180164628015, - -17493.173628246048, - -16568.507002496386, - -13949.085184082498, - -10284.44749563031, - -6450.3876279368515, - -3023.840054947542, - -1206.8316031457493, - -765.0778114201506, - -1164.24318966209, - -1860.4538277342112, - -1843.8358815805957, - -465.81624320553817, - 2361.5639932143445, - 6226.0253102623155, - 10011.08008450296, - 12844.060164311795, - 13897.816059242603, - 13069.76624898455, - 11440.737094412816, - 10791.258744683211, - 13363.852191200853, - 21388.226875519973, - 36292.61519314789, - 59292.20356957474, - 86593.97849252264, - 117436.6299621526, - 150175.1800082715, - 175073.45046226247 - ], - "flow:J23:branch103_seg0": [ - 18.853467311149373, - 21.219356229355107, - 22.458942587671668, - 22.484832088200047, - 21.446281132590048, - 19.525550270188997, - 16.995445214559975, - 14.267267462531052, - 11.619326862207027, - 9.101319837887855, - 6.963954826985704, - 5.0409361584991155, - 3.2362260411367108, - 1.5459243343947038, - -0.22087830970174951, - -1.9326612560808096, - -3.6037706368055105, - -5.1861047943554395, - -6.432470215896217, - -7.422943400262289, - -8.107180674540732, - -8.492843972385762, - -8.718918160747581, - -8.823098182544411, - -8.871743120282753, - -8.882644755414415, - -8.808587142054078, - -8.603584126063327, - -8.228527545956865, - -7.683872929711325, - -7.0304884851153355, - -6.4282017249011085, - -6.015656115164937, - -5.972972558712101, - -6.4132299276098435, - -7.343950041559342, - -8.628497462458876, - -10.103242912939537, - -11.481944566929549, - -12.431678015910839, - -12.808038065397767, - -12.451644605090467, - -11.374891573141225, - -9.714477342004432, - -7.777728658804562, - -5.6889727546098126, - -3.7307212383445623, - -2.1089721875752554, - -0.7541641504691877, - 0.24222725673119727, - 1.009790713700173, - 1.6638122085125298, - 2.1927368914514984, - 2.676656726756982, - 3.0467198142921856, - 3.2256750462251156, - 3.174109725708763, - 2.841127274357429, - 2.2487395480681225, - 1.491629157524779, - 0.6935409450762045, - -0.049842347357770087, - -0.5786363161759831, - -0.8833467017641383, - -0.9903432862451607, - -0.9476682537219926, - -0.8754491016576594, - -0.8719038230440319, - -0.9877349585131201, - -1.2276619506018243, - -1.5201952194936275, - -1.7903225644889065, - -1.9372347543795518, - -1.8885618053936353, - -1.6472477975783155, - -1.2648761436564455, - -0.8261138504555381, - -0.43229857074975603, - -0.18438300815098527, - -0.0846894306916218, - -0.11334204609309241, - -0.1921549618839757, - -0.21396469911786528, - -0.10072352028561392, - 0.17737097258444195, - 0.5814037468603483, - 1.0120995632311571, - 1.3703825151425548, - 1.5334564567279059, - 1.4932252676703914, - 1.3298535955547581, - 1.2138741237217376, - 1.3920466692650557, - 2.1179320979667726, - 3.586057409170701, - 5.90711012747178, - 8.83987119026716, - 12.28865998828773, - 15.835274910389806, - 18.853467311149373 - ], - "pressure:J23:branch103_seg0": [ - 175073.45046226247, - 193464.76891667978, - 202612.81431302158, - 199792.72470031868, - 187949.08744056785, - 169366.00445312573, - 146304.76775823013, - 120816.13774657164, - 97884.82764286468, - 76318.21463818678, - 57323.908884048, - 41052.42909845465, - 24901.77859599509, - 9740.13477279741, - -5838.523378834657, - -21307.948436066952, - -35951.07115503002, - -49814.387402037726, - -60283.681176919046, - -68154.5151465285, - -73798.22177259813, - -76645.28995445407, - -78274.0896773103, - -79070.59986142218, - -79350.48477745253, - -79359.35863786512, - -78463.74525970755, - -76250.48039089712, - -72445.56607103982, - -67321.6228146377, - -61293.75187687801, - -56163.453031589044, - -53295.65357378062, - -53770.684874135746, - -58829.33267884947, - -68209.49567727445, - -80430.34701045114, - -93582.52090865835, - -105517.1104688854, - -112863.75009117305, - -114476.75762831692, - -109726.21528664911, - -98558.03779931275, - -82286.68606653203, - -64725.92324190695, - -46318.649984957214, - -28794.86251148291, - -15363.007071953603, - -4064.7238593678585, - 4346.4235933374885, - 10467.34553913159, - 16369.002500731654, - 20854.267188023463, - 24766.957049657743, - 27982.402467370455, - 29019.50385988773, - 27896.75872089806, - 24348.455736178745, - 18592.52081554713, - 11421.117912643918, - 4367.0671570022205, - -1851.4912965074373, - -6235.649550758077, - -8339.091350671915, - -8875.521251479093, - -8337.856184148919, - -7690.790492741264, - -7887.244815949139, - -9241.743492819403, - -11668.406136205671, - -14289.29454663249, - -16479.180164628015, - -17493.173628246048, - -16568.507002496386, - -13949.085184082498, - -10284.44749563031, - -6450.3876279368515, - -3023.840054947542, - -1206.8316031457493, - -765.0778114201506, - -1164.24318966209, - -1860.4538277342112, - -1843.8358815805957, - -465.81624320553817, - 2361.5639932143445, - 6226.0253102623155, - 10011.08008450296, - 12844.060164311795, - 13897.816059242603, - 13069.76624898455, - 11440.737094412816, - 10791.258744683211, - 13363.852191200853, - 21388.226875519973, - 36292.61519314789, - 59292.20356957474, - 86593.97849252264, - 117436.6299621526, - 150175.1800082715, - 175073.45046226247 - ], - "flow:branch37_seg0:J24": [ - 92.91668341947934, - 105.1271886248399, - 111.88348692195004, - 112.67691566727518, - 108.02505305665179, - 98.84333299883286, - 86.51313508885698, - 72.89995045560933, - 59.599171055563254, - 46.949034982772844, - 35.99326653644003, - 26.22240795415822, - 17.11202972440056, - 8.572829551544377, - -0.2006583322012855, - -8.82192228183097, - -17.234040182267528, - -25.123944360838454, - -31.554102498314965, - -36.67945547505448, - -40.243004841865584, - -42.35659189024747, - -43.57884811492968, - -44.16353822702827, - -44.447548372247304, - -44.51419523113634, - -44.180577062222994, - -43.21755192075175, - -41.42221058459361, - -38.78092054812325, - -35.57584257654515, - -32.53911258401156, - -30.386716662923796, - -29.993543879036665, - -31.946014121790267, - -36.33139907702176, - -42.599959544210385, - -49.8657541822006, - -56.79874988624618, - -61.79222114104042, - -63.98504195321134, - -62.5899132768774, - -57.606943763886754, - -49.652864913292326, - -40.08504927642077, - -29.661143112913397, - -19.82062387623139, - -11.463077985632191, - -4.514587430483867, - 0.6759684483835452, - 4.702160165092413, - 8.035246523877962, - 10.754181336346475, - 13.21152106050452, - 15.11363552213871, - 16.10332387354989, - 15.956166396200238, - 14.421787656309322, - 11.597336333059488, - 7.87791075624783, - 3.9071921110712466, - 0.17702422147183852, - -2.6016542333334294, - -4.264494428168309, - -4.905193262999439, - -4.7821755765610146, - -4.449818017665897, - -4.399132998209128, - -4.913553705657982, - -6.04042874719938, - -7.4723882036438125, - -8.838779141031093, - -9.627084607725118, - -9.489016571016052, - -8.385477881580131, - -6.548290427905702, - -4.378034655633308, - -2.3900802052980405, - -1.0709409377503978, - -0.4861463519231714, - -0.5586531340747855, - -0.9154032380830709, - -1.0452213430840067, - -0.5434012301702092, - 0.7585089098694855, - 2.716806103468711, - 4.851080862152086, - 6.665769908361843, - 7.588439245660992, - 7.50704220634593, - 6.763506932649503, - 6.171433014002654, - 6.925229714305192, - 10.290215040571189, - 17.266086689833628, - 28.411698033262176, - 42.776129899272185, - 59.888064357076274, - 77.49328352000721, - 92.91668341947934 - ], - "pressure:branch37_seg0:J24": [ - 176666.1194213594, - 193589.93308682882, - 201756.72807320103, - 197572.91386599338, - 184600.81349331656, - 165453.70383784032, - 142346.19254029865, - 116496.48252603771, - 94210.62014201304, - 73260.40360899402, - 54409.881294042534, - 38736.61590765508, - 22677.99178175796, - 7681.411327639267, - -7597.806345688747, - -23081.584199498026, - -37367.55636835391, - -50902.942443979955, - -61061.11845178395, - -68418.49868554383, - -73783.96371134564, - -76376.24612073254, - -77792.92680090987, - -78525.54412163816, - -78730.58801502103, - -78670.42615584485, - -77661.23282360255, - -75272.4847561615, - -71276.86259080053, - -66062.46923545866, - -60012.260321982496, - -55046.50414015267, - -52602.77727374778, - -53513.781312962186, - -59040.86304069583, - -68813.30325784309, - -81293.8641910343, - -94217.1573769151, - -105855.99391581675, - -112591.36631922584, - -113393.17928712137, - -107992.14770029689, - -96303.7923660855, - -79637.90088888285, - -62021.252153396264, - -43881.81292097619, - -26547.206864166877, - -13588.766127538054, - -2785.280147674854, - 5385.056658923246, - 11181.94428131157, - 16998.632803756274, - 21358.989986143555, - 25033.81084138627, - 28143.318451405754, - 28890.407920918788, - 27443.599424841977, - 23632.70938181227, - 17723.57316118582, - 10394.57391606331, - 3500.5584846821093, - -2448.1657613147363, - -6659.534402081987, - -8465.951275859508, - -8813.247649048897, - -8231.499988256388, - -7603.102933689972, - -7897.630919747159, - -9370.385887953284, - -11874.137761589833, - -14479.367841378042, - -16546.115937959956, - -17402.568446077858, - -16275.776917412071, - -13470.810602896861, - -9727.420104757812, - -5950.60127811499, - -2615.9112544615523, - -987.3546803142414, - -752.5819236777706, - -1219.1763826917404, - -1888.8737740768895, - -1767.0781642885038, - -221.45727226563758, - 2724.068403160029, - 6676.445791265133, - 10354.836049039683, - 12971.20823591052, - 13840.768055331093, - 12828.002028495603, - 11161.707909392928, - 10717.011069938955, - 13727.303554118405, - 22380.086169185877, - 37938.356173414366, - 61631.59725674065, - 89275.41916991348, - 120020.8225075486, - 152715.86990047235, - 176666.1194213594 - ], - "flow:J24:branch38_seg0": [ - 39.52056327238514, - 44.66317058770733, - 47.480009660962814, - 47.76291958252043, - 45.739166614686035, - 41.80616606763026, - 36.555527591233755, - 30.76548451663122, - 25.13709427582146, - 19.787832950946417, - 15.151540787896735, - 11.026805320107279, - 7.17144553689112, - 3.558623203920303, - -0.1526225138812952, - -3.8089304653567333, - -7.367736864141661, - -10.699172978460743, - -13.41575360070116, - -15.575813547657411, - -17.07279828346408, - -17.95958592604041, - -18.470159840847845, - -18.714362980096475, - -18.83380193969743, - -18.8605771733453, - -18.716860195693, - -18.304291217224385, - -17.53740070436936, - -16.41239420699253, - -15.0512089622901, - -13.766490528181182, - -12.864200711331648, - -12.712860265763894, - -13.559847530715444, - -15.437209278030167, - -18.112868928384117, - -21.19670683726254, - -24.13330815974666, - -26.236580971204614, - -27.143523584569696, - -26.526226725542884, - -24.389643830700958, - -20.998215579486118, - -16.927320649248497, - -12.500663352348374, - -8.333879448027544, - -4.797567935784692, - -1.86323757777023, - 0.3265012637233394, - 2.0275851273960717, - 3.4347802396857494, - 4.583952056585488, - 5.6233026043928325, - 6.425885834974789, - 6.837654951989177, - 6.765166113366003, - 6.102906079911846, - 4.895950200374884, - 3.309514274363422, - 1.6255739049773898, - 0.04852832514163683, - -1.125197988016346, - -1.821077107999074, - -2.084387029610089, - -2.0275578155352716, - -1.8854602051558969, - -1.8662800809569409, - -2.0886772665448183, - -2.5706963525128637, - -3.1802458625995302, - -3.7591924565488313, - -4.088418739225713, - -4.023155629397636, - -3.5475281334775284, - -2.762991753917088, - -1.8399307171400467, - -0.9986751045477082, - -0.44433819070632424, - -0.20229100788421345, - -0.23780354788840508, - -0.39057463208508675, - -0.44347201438386485, - -0.2251872283099052, - 0.33271125284607295, - 1.1689597269962453, - 2.074352341043774, - 2.839611230656247, - 3.225136559140234, - 3.1833018577541545, - 2.8634673513812654, - 2.6149586479623603, - 2.946382635991416, - 4.395407232859887, - 7.381581765129706, - 12.138186888165542, - 18.254893710847075, - 25.537318538160317, - 32.997884554856064, - 39.52056327238514 - ], - "pressure:J24:branch38_seg0": [ - 176666.1194213594, - 193589.93308682882, - 201756.72807320103, - 197572.91386599338, - 184600.81349331656, - 165453.70383784032, - 142346.19254029865, - 116496.48252603771, - 94210.62014201304, - 73260.40360899402, - 54409.881294042534, - 38736.61590765508, - 22677.99178175796, - 7681.411327639267, - -7597.806345688747, - -23081.584199498026, - -37367.55636835391, - -50902.942443979955, - -61061.11845178395, - -68418.49868554383, - -73783.96371134564, - -76376.24612073254, - -77792.92680090987, - -78525.54412163816, - -78730.58801502103, - -78670.42615584485, - -77661.23282360255, - -75272.4847561615, - -71276.86259080053, - -66062.46923545866, - -60012.260321982496, - -55046.50414015267, - -52602.77727374778, - -53513.781312962186, - -59040.86304069583, - -68813.30325784309, - -81293.8641910343, - -94217.1573769151, - -105855.99391581675, - -112591.36631922584, - -113393.17928712137, - -107992.14770029689, - -96303.7923660855, - -79637.90088888285, - -62021.252153396264, - -43881.81292097619, - -26547.206864166877, - -13588.766127538054, - -2785.280147674854, - 5385.056658923246, - 11181.94428131157, - 16998.632803756274, - 21358.989986143555, - 25033.81084138627, - 28143.318451405754, - 28890.407920918788, - 27443.599424841977, - 23632.70938181227, - 17723.57316118582, - 10394.57391606331, - 3500.5584846821093, - -2448.1657613147363, - -6659.534402081987, - -8465.951275859508, - -8813.247649048897, - -8231.499988256388, - -7603.102933689972, - -7897.630919747159, - -9370.385887953284, - -11874.137761589833, - -14479.367841378042, - -16546.115937959956, - -17402.568446077858, - -16275.776917412071, - -13470.810602896861, - -9727.420104757812, - -5950.60127811499, - -2615.9112544615523, - -987.3546803142414, - -752.5819236777706, - -1219.1763826917404, - -1888.8737740768895, - -1767.0781642885038, - -221.45727226563758, - 2724.068403160029, - 6676.445791265133, - 10354.836049039683, - 12971.20823591052, - 13840.768055331093, - 12828.002028495603, - 11161.707909392928, - 10717.011069938955, - 13727.303554118405, - 22380.086169185877, - 37938.356173414366, - 61631.59725674065, - 89275.41916991348, - 120020.8225075486, - 152715.86990047235, - 176666.1194213594 - ], - "flow:J24:branch102_seg0": [ - 53.3961201470945, - 60.46401803713258, - 64.40347726098774, - 64.91399608475479, - 62.28588644196561, - 57.03716693120282, - 49.95760749762238, - 42.134465938976966, - 34.462076779742425, - 27.161202031827898, - 20.841725748541702, - 15.195602634052284, - 9.94058418750872, - 5.0142063476214656, - -0.048035818320274516, - -5.012991816475938, - -9.866303318123833, - -14.42477138237777, - -18.138348897614645, - -21.10364192740007, - -23.170206558403443, - -24.397005964206762, - -25.10868827408086, - -25.449175246933542, - -25.613746432549263, - -25.653618057790354, - -25.463716866531847, - -24.913260703526237, - -23.884809880225394, - -22.36852634113081, - -20.524633614254583, - -18.77262205582931, - -17.52251595159138, - -17.280683613271858, - -18.386166591076286, - -20.894189798992198, - -24.487090615824822, - -28.669047344936857, - -32.66544172649916, - -35.55564016983631, - -36.841518368640976, - -36.0636865513346, - -33.21729993318552, - -28.654649333806052, - -23.15772862717226, - -17.160479760564993, - -11.486744428203858, - -6.6655100498475095, - -2.6513498527136132, - 0.3494671846602233, - 2.6745750376963455, - 4.600466284192208, - 6.170229279760984, - 7.588218456111659, - 8.687749687163905, - 9.26566892156074, - 9.191000282834239, - 8.318881576397434, - 6.701386132684881, - 4.568396481884112, - 2.281618206093523, - 0.12849589633009667, - -1.4764562453170547, - -2.443417320169379, - -2.8208062333892805, - -2.7546177610257954, - -2.564357812510015, - -2.532852917252183, - -2.824876439113152, - -3.469732394686429, - -4.292142341044185, - -5.079586684482322, - -5.538665868499356, - -5.465860941618371, - -4.837949748102625, - -3.7852986739886187, - -2.5381039384933253, - -1.3914051007503134, - -0.626602747044079, - -0.28385534403896223, - -0.320849586186365, - -0.5248286059979874, - -0.601749328700166, - -0.31821400186030857, - 0.4257976570234014, - 1.5478463764724923, - 2.776728521108243, - 3.826158677705544, - 4.363302686520832, - 4.32374034859178, - 3.900039581268292, - 3.5564743660402223, - 3.978847078313928, - 5.894807807711356, - 9.88450492470378, - 16.27351114509672, - 24.52123618842537, - 34.350745818915144, - 44.4953989651512, - 53.3961201470945 - ], - "pressure:J24:branch102_seg0": [ - 176666.1194213594, - 193589.93308682882, - 201756.72807320103, - 197572.91386599338, - 184600.81349331656, - 165453.70383784032, - 142346.19254029865, - 116496.48252603771, - 94210.62014201304, - 73260.40360899402, - 54409.881294042534, - 38736.61590765508, - 22677.99178175796, - 7681.411327639267, - -7597.806345688747, - -23081.584199498026, - -37367.55636835391, - -50902.942443979955, - -61061.11845178395, - -68418.49868554383, - -73783.96371134564, - -76376.24612073254, - -77792.92680090987, - -78525.54412163816, - -78730.58801502103, - -78670.42615584485, - -77661.23282360255, - -75272.4847561615, - -71276.86259080053, - -66062.46923545866, - -60012.260321982496, - -55046.50414015267, - -52602.77727374778, - -53513.781312962186, - -59040.86304069583, - -68813.30325784309, - -81293.8641910343, - -94217.1573769151, - -105855.99391581675, - -112591.36631922584, - -113393.17928712137, - -107992.14770029689, - -96303.7923660855, - -79637.90088888285, - -62021.252153396264, - -43881.81292097619, - -26547.206864166877, - -13588.766127538054, - -2785.280147674854, - 5385.056658923246, - 11181.94428131157, - 16998.632803756274, - 21358.989986143555, - 25033.81084138627, - 28143.318451405754, - 28890.407920918788, - 27443.599424841977, - 23632.70938181227, - 17723.57316118582, - 10394.57391606331, - 3500.5584846821093, - -2448.1657613147363, - -6659.534402081987, - -8465.951275859508, - -8813.247649048897, - -8231.499988256388, - -7603.102933689972, - -7897.630919747159, - -9370.385887953284, - -11874.137761589833, - -14479.367841378042, - -16546.115937959956, - -17402.568446077858, - -16275.776917412071, - -13470.810602896861, - -9727.420104757812, - -5950.60127811499, - -2615.9112544615523, - -987.3546803142414, - -752.5819236777706, - -1219.1763826917404, - -1888.8737740768895, - -1767.0781642885038, - -221.45727226563758, - 2724.068403160029, - 6676.445791265133, - 10354.836049039683, - 12971.20823591052, - 13840.768055331093, - 12828.002028495603, - 11161.707909392928, - 10717.011069938955, - 13727.303554118405, - 22380.086169185877, - 37938.356173414366, - 61631.59725674065, - 89275.41916991348, - 120020.8225075486, - 152715.86990047235, - 176666.1194213594 - ], - "flow:branch39_seg0:J25": [ - 114.39426475491987, - 128.71539703352494, - 136.18586534971465, - 136.33977450600085, - 129.9647183870403, - 118.3084067239419, - 103.10681756169366, - 86.63472955080775, - 70.83511138445239, - 55.93169995183019, - 43.08346159528652, - 31.68990344310496, - 20.95922227531586, - 10.877896331636423, - 0.4721196847728938, - -9.83538101314121, - -19.793341080889558, - -29.171457501667764, - -36.785705427021576, - -42.855036624136986, - -47.111191360274745, - -49.687654747203176, - -51.273341860220874, - -52.150108912154295, - -52.70039808891447, - -52.98835212075611, - -52.77483410269972, - -51.76645194030004, - -49.731667689678815, - -46.65999741484364, - -42.92718028793794, - -39.43052893886241, - -37.05048593217525, - -36.82789214432226, - -39.4577875799387, - -44.99157766469588, - -52.76910092654712, - -61.62561606941986, - -70.03736734356055, - -76.01227623600812, - -78.57167374381, - -76.77926165346693, - -70.68903813606121, - -61.00615704976733, - -49.41793020617355, - -36.80866635258565, - -24.926551235194342, - -14.852017284965573, - -6.4383885361378725, - -0.13427532930072417, - 4.829537375515027, - 8.982610472896782, - 12.42536500520387, - 15.559835492132185, - 17.991737368077224, - 19.270323682274647, - 19.124764578477247, - 17.258655459653667, - 13.816659121053222, - 9.291617986707216, - 4.512771444631136, - 0.05665578642450442, - -3.2344535781000845, - -5.14692767207121, - -5.851197854875738, - -5.667460028258924, - -5.2781156927153425, - -5.27553826528042, - -5.980991422014178, - -7.435450992437932, - -9.235594891995525, - -10.92402727289791, - -11.86659961285709, - -11.65871840500307, - -10.26251094106547, - -7.9945597367010395, - -5.33908360835307, - -2.9470777561502226, - -1.3925227172489478, - -0.73805782819932, - -0.8678036887311035, - -1.3086379542231672, - -1.4304240036033988, - -0.746304941416536, - 0.923667649495687, - 3.3869297565943985, - 6.0195673272314165, - 8.218851331956877, - 9.301778751004893, - 9.147384383379963, - 8.217870508750645, - 7.5461515209234875, - 8.606445034880645, - 12.965550220843816, - 21.764495324425383, - 35.71271304046969, - 53.48467429589131, - 74.54781224646814, - 95.92220388111976, - 114.39426475491987 - ], - "pressure:branch39_seg0:J25": [ - 181283.05211140093, - 194864.53657498272, - 199351.42907566755, - 191081.46876201802, - 174840.73965678382, - 153854.83363911277, - 130229.06805566336, - 104135.64245057054, - 84076.7391011975, - 65029.960532604346, - 47380.94037638497, - 33707.08738527401, - 18455.745989336945, - 4365.01423053609, - -9924.21257446297, - -25262.983644435095, - -38520.17493547139, - -50875.692738862235, - -60167.73060868293, - -66449.39512152255, - -71014.77051287908, - -73087.05286943198, - -74237.30538046925, - -75040.2551724066, - -75435.12552081826, - -75529.9971946793, - -74572.90133614284, - -72091.27622902878, - -67943.26630939865, - -62702.54231246149, - -56812.50860911148, - -52445.246482904244, - -51064.93433941334, - -53189.6543895645, - -60062.66181698763, - -70900.68465157127, - -84227.32753095265, - -96816.97211541147, - -107848.09612048294, - -113247.81329290394, - -112302.79692064913, - -105341.80054264358, - -92375.37413715078, - -74915.08785954097, - -57055.557193004366, - -39195.49466636751, - -22679.428604912533, - -10832.878209228631, - -1068.1500537487925, - 6318.504731380643, - 11630.933380987519, - 17241.98521887826, - 21400.723107606347, - 24977.611452147034, - 27976.344053146444, - 28205.07191542352, - 26175.477059583423, - 21778.772952824005, - 15481.228023037334, - 7806.414305757194, - 1299.299532848752, - -4025.322205627385, - -7767.886573962561, - -8760.381737259388, - -8548.565918180415, - -7747.569877080571, - -7152.269398928631, - -7727.923358873465, - -9570.983362350222, - -12373.227834667794, - -15079.00236609121, - -17019.555448188366, - -17481.093096334316, - -15855.273031343542, - -12568.84396500458, - -8583.238310580478, - -4808.527850566029, - -1723.8662876060616, - -603.472507742897, - -835.8902959638823, - -1564.9719495725205, - -2254.568833957394, - -1887.672946619836, - 106.57994938295012, - 3450.706504033132, - 7736.2832958120225, - 11288.47669166632, - 13479.642626468329, - 13914.552029120754, - 12385.060816093504, - 10530.357749405888, - 10472.047941990746, - 14507.496298908729, - 24814.06664375708, - 42247.191973604466, - 67842.397449973, - 96634.66251751386, - 128238.53015689302, - 159963.8670772874, - 181283.05211140093 - ], - "flow:J25:branch40_seg0": [ - 73.30364287905587, - 83.27275326278178, - 88.94670749280141, - 89.93055790958779, - 86.5151730352917, - 79.45254174832331, - 69.85812451530389, - 59.18406051442181, - 48.68885105151708, - 38.74420718735703, - 30.046962356687597, - 22.324742984104237, - 15.160358159973466, - 8.425582015272795, - 1.5748168183996618, - -5.232094765495071, - -11.868831184502824, - -18.10658589438302, - -23.32867549666002, - -27.543409738859257, - -30.550917088156044, - -32.46073218121765, - -33.640314895756894, - -34.306404287163645, - -34.72243594679023, - -34.94745178852547, - -34.86656672971636, - -34.29681839346249, - -33.075545810988174, - -31.169850337440305, - -28.79197839049093, - -26.466389015202868, - -24.766434185430285, - -24.377411068509144, - -25.780672294177347, - -29.08317599172167, - -33.94636263768549, - -39.661032240545985, - -45.2444314622446, - -49.46514442956084, - -51.56399479949454, - -50.887289760629294, - -47.381561525438634, - -41.44316111636789, - -34.03345750477341, - -25.816868997820837, - -17.93561500170522, - -11.063259741328155, - -5.299700361801777, - -0.9015438068602168, - 2.5689730842960308, - 5.409061448454677, - 7.771945712808657, - 9.900482853635005, - 11.581969744720947, - 12.564581824211452, - 12.640369238293468, - 11.607927765491137, - 9.526063737894683, - 6.675248877185825, - 3.556156152092233, - 0.5815425416441005, - -1.719287062916225, - -3.1516555703734426, - -3.7612958539007706, - -3.748258550976335, - -3.5273400613168326, - -3.487927727008645, - -3.874660778163377, - -4.747106821646981, - -5.892366847362171, - -7.020633924628324, - -7.719834117348945, - -7.7153565982422805, - -6.93576979971766, - -5.544866627416179, - -3.8390403073358517, - -2.240515368056212, - -1.121477076692055, - -0.5786906446345006, - -0.5729228397063627, - -0.8211737215390064, - -0.9306167188456991, - -0.5685985855062938, - 0.41993335143772137, - 1.9506230020408397, - 3.6645896003741156, - 5.162362548051814, - 6.001434359734858, - 6.047381621257589, - 5.529021379106657, - 5.061800898613934, - 5.569712369882725, - 8.071300491650838, - 13.373851060599483, - 21.967734795416934, - 33.236212621236774, - 46.801612310594805, - 60.78078821124237, - 73.30364287905587 - ], - "pressure:J25:branch40_seg0": [ - 181283.05211140093, - 194864.53657498272, - 199351.42907566755, - 191081.46876201802, - 174840.73965678382, - 153854.83363911277, - 130229.06805566336, - 104135.64245057054, - 84076.7391011975, - 65029.960532604346, - 47380.94037638497, - 33707.08738527401, - 18455.745989336945, - 4365.01423053609, - -9924.21257446297, - -25262.983644435095, - -38520.17493547139, - -50875.692738862235, - -60167.73060868293, - -66449.39512152255, - -71014.77051287908, - -73087.05286943198, - -74237.30538046925, - -75040.2551724066, - -75435.12552081826, - -75529.9971946793, - -74572.90133614284, - -72091.27622902878, - -67943.26630939865, - -62702.54231246149, - -56812.50860911148, - -52445.246482904244, - -51064.93433941334, - -53189.6543895645, - -60062.66181698763, - -70900.68465157127, - -84227.32753095265, - -96816.97211541147, - -107848.09612048294, - -113247.81329290394, - -112302.79692064913, - -105341.80054264358, - -92375.37413715078, - -74915.08785954097, - -57055.557193004366, - -39195.49466636751, - -22679.428604912533, - -10832.878209228631, - -1068.1500537487925, - 6318.504731380643, - 11630.933380987519, - 17241.98521887826, - 21400.723107606347, - 24977.611452147034, - 27976.344053146444, - 28205.07191542352, - 26175.477059583423, - 21778.772952824005, - 15481.228023037334, - 7806.414305757194, - 1299.299532848752, - -4025.322205627385, - -7767.886573962561, - -8760.381737259388, - -8548.565918180415, - -7747.569877080571, - -7152.269398928631, - -7727.923358873465, - -9570.983362350222, - -12373.227834667794, - -15079.00236609121, - -17019.555448188366, - -17481.093096334316, - -15855.273031343542, - -12568.84396500458, - -8583.238310580478, - -4808.527850566029, - -1723.8662876060616, - -603.472507742897, - -835.8902959638823, - -1564.9719495725205, - -2254.568833957394, - -1887.672946619836, - 106.57994938295012, - 3450.706504033132, - 7736.2832958120225, - 11288.47669166632, - 13479.642626468329, - 13914.552029120754, - 12385.060816093504, - 10530.357749405888, - 10472.047941990746, - 14507.496298908729, - 24814.06664375708, - 42247.191973604466, - 67842.397449973, - 96634.66251751386, - 128238.53015689302, - 159963.8670772874, - 181283.05211140093 - ], - "flow:J25:branch110_seg0": [ - 41.090621875864755, - 45.442643770742976, - 47.23915785691338, - 46.40921659641417, - 43.44954535174609, - 38.855864975616434, - 33.24869304638886, - 27.45066903638492, - 22.14626033293303, - 17.187492764472843, - 13.036499238599122, - 9.36516045900198, - 5.7988641153416856, - 2.4523143163649825, - -1.1026971336261702, - -4.603286247647627, - -7.924509896392088, - -11.064871607281493, - -13.457029930363236, - -15.311626885277903, - -16.560274272117915, - -17.22692256598532, - -17.63302696446206, - -17.843704624988657, - -17.977962142125023, - -18.040900332231132, - -17.908267372983655, - -17.46963354683599, - -16.656121878688367, - -15.4901470774036, - -14.135201897446422, - -12.964139923658678, - -12.284051746745284, - -12.45048107581262, - -13.677115285761912, - -15.908401672975575, - -18.822738288861572, - -21.964583828874005, - -24.792935881317607, - -26.547131806445375, - -27.007678944314844, - -25.89197189283747, - -23.307476610622565, - -19.562995933399193, - -15.384472701400153, - -10.991797354764751, - -6.990936233489124, - -3.7887575436374314, - -1.1386881743360975, - 0.7672684775594912, - 2.2605642912189907, - 3.573549024442104, - 4.653419292395193, - 5.65935263849715, - 6.409767623356275, - 6.7057418580632415, - 6.484395340183709, - 5.650727694162421, - 4.290595383158699, - 2.6163691095215085, - 0.9566152925394571, - -0.5248867552196284, - -1.5151665151839544, - -1.9952721016975896, - -2.089902000975233, - -1.9192014772823844, - -1.7507756313986607, - -1.7876105382719407, - -2.1063306438508134, - -2.688344170790776, - -3.3432280446332796, - -3.9033933482697676, - -4.146765495508005, - -3.94336180676077, - -3.3267411413478887, - -2.449693109284816, - -1.5000433010172614, - -0.706562388094044, - -0.2710456405568838, - -0.15936718356485366, - -0.29488084902473605, - -0.48746423268415745, - -0.49980728475768765, - -0.17770635591026857, - 0.503734298057984, - 1.4363067545536026, - 2.354977726857345, - 3.056488783905037, - 3.3003443912699684, - 3.100002762122285, - 2.688849129644018, - 2.4843506223095617, - 3.036732664998006, - 4.89424972919301, - 8.390644263825893, - 13.744978245053058, - 20.248461674654912, - 27.74619993587293, - 35.14141566987769, - 41.090621875864755 - ], - "pressure:J25:branch110_seg0": [ - 181283.05211140093, - 194864.53657498272, - 199351.42907566755, - 191081.46876201802, - 174840.73965678382, - 153854.83363911277, - 130229.06805566336, - 104135.64245057054, - 84076.7391011975, - 65029.960532604346, - 47380.94037638497, - 33707.08738527401, - 18455.745989336945, - 4365.01423053609, - -9924.21257446297, - -25262.983644435095, - -38520.17493547139, - -50875.692738862235, - -60167.73060868293, - -66449.39512152255, - -71014.77051287908, - -73087.05286943198, - -74237.30538046925, - -75040.2551724066, - -75435.12552081826, - -75529.9971946793, - -74572.90133614284, - -72091.27622902878, - -67943.26630939865, - -62702.54231246149, - -56812.50860911148, - -52445.246482904244, - -51064.93433941334, - -53189.6543895645, - -60062.66181698763, - -70900.68465157127, - -84227.32753095265, - -96816.97211541147, - -107848.09612048294, - -113247.81329290394, - -112302.79692064913, - -105341.80054264358, - -92375.37413715078, - -74915.08785954097, - -57055.557193004366, - -39195.49466636751, - -22679.428604912533, - -10832.878209228631, - -1068.1500537487925, - 6318.504731380643, - 11630.933380987519, - 17241.98521887826, - 21400.723107606347, - 24977.611452147034, - 27976.344053146444, - 28205.07191542352, - 26175.477059583423, - 21778.772952824005, - 15481.228023037334, - 7806.414305757194, - 1299.299532848752, - -4025.322205627385, - -7767.886573962561, - -8760.381737259388, - -8548.565918180415, - -7747.569877080571, - -7152.269398928631, - -7727.923358873465, - -9570.983362350222, - -12373.227834667794, - -15079.00236609121, - -17019.555448188366, - -17481.093096334316, - -15855.273031343542, - -12568.84396500458, - -8583.238310580478, - -4808.527850566029, - -1723.8662876060616, - -603.472507742897, - -835.8902959638823, - -1564.9719495725205, - -2254.568833957394, - -1887.672946619836, - 106.57994938295012, - 3450.706504033132, - 7736.2832958120225, - 11288.47669166632, - 13479.642626468329, - 13914.552029120754, - 12385.060816093504, - 10530.357749405888, - 10472.047941990746, - 14507.496298908729, - 24814.06664375708, - 42247.191973604466, - 67842.397449973, - 96634.66251751386, - 128238.53015689302, - 159963.8670772874, - 181283.05211140093 - ], - "flow:branch40_seg0:J26": [ - 73.22164785284674, - 83.23422789910647, - 88.95701045674843, - 89.97157142248038, - 86.5995818578953, - 79.56444440780577, - 69.97344336330737, - 59.33035578236954, - 48.796457148185354, - 38.812629287067836, - 30.14693753176426, - 22.38901869939578, - 15.2313931027615, - 8.498555932481567, - 1.6122690379436475, - -5.150184889745087, - -11.819750099897096, - -18.093309127339165, - -23.297387770326402, - -27.52632996532135, - -30.549138451968005, - -32.45354511367476, - -33.640876831746965, - -34.30632127796411, - -34.71866787339266, - -34.950140092293154, - -34.87243071888611, - -34.31069192770991, - -33.09637896014288, - -31.198319653769264, - -28.816119827276232, - -26.486934245749396, - -24.766735373037598, - -24.356079801233843, - -25.737235919905526, - -29.032827372584467, - -33.86515991342377, - -39.6116610155713, - -45.20927372885254, - -49.452110851280494, - -51.58844158837203, - -50.94105718593854, - -47.43501417867876, - -41.49319087717537, - -34.10149879963962, - -25.880082291803337, - -17.97191347061801, - -11.10570079918117, - -5.323219496863584, - -0.9191588707693427, - 2.536458647310347, - 5.394159281754367, - 7.752153524380258, - 9.88227253503448, - 11.572169902757425, - 12.56475111332943, - 12.654860824036644, - 11.636318426630448, - 9.55757017796661, - 6.72024240602071, - 3.5881205395353652, - 0.5919002181212024, - -1.7027471296069163, - -3.150079193436982, - -3.7683221550133923, - -3.751687023841127, - -3.5264869039097864, - -3.4822632096588384, - -3.86640966768029, - -4.738927525835554, - -5.884197057463228, - -7.014943267572195, - -7.72506216437656, - -7.723336476758023, - -6.950789047419578, - -5.559871379065814, - -3.8568684072436255, - -2.248763493347342, - -1.1256459817394975, - -0.5770424301063166, - -0.567959919687001, - -0.8200356360479588, - -0.9356337636305637, - -0.5827667646203175, - 0.40233124351915434, - 1.9267422966264953, - 3.648945145274082, - 5.162588745319063, - 6.003819873268566, - 6.054470225637734, - 5.534920146798879, - 5.0543117021215505, - 5.543139017652987, - 8.010577778308464, - 13.300499320471294, - 21.883843921686257, - 33.13819617085287, - 46.655165198266054, - 60.70990560897919, - 73.22164785284674 - ], - "pressure:branch40_seg0:J26": [ - 165938.67613592747, - 183129.24144902802, - 191524.73471595807, - 188489.30045774748, - 177011.83975361264, - 159390.96545130233, - 137830.07547445156, - 113739.69613989611, - 92626.00863230845, - 72877.15337242118, - 55068.06669240418, - 40097.92903586765, - 25153.11750313591, - 11042.331084390918, - -3252.438945198475, - -17754.53596201868, - -31500.12325610435, - -44191.09160780878, - -54083.780668821724, - -61649.60495937461, - -67082.42351831641, - -70043.93991671632, - -71870.92825802107, - -72942.12947469288, - -73551.70116752914, - -73864.40041379113, - -73304.58003911086, - -71505.21472643579, - -68190.77397318027, - -63648.40477015337, - -58228.432449679756, - -53625.42240933476, - -51135.590985125375, - -51678.87229557168, - -56488.53425433111, - -65286.57253820207, - -76863.95328316299, - -89228.09558184557, - -100517.0012430929, - -107689.2168521567, - -109466.7669198002, - -105362.9398531959, - -95211.88605724143, - -80254.95470821219, - -63853.03628956632, - -46413.582149148926, - -29866.957086904364, - -16984.896685980057, - -6062.842787708685, - 2165.2225423583495, - 8300.949927562422, - 14178.345788920557, - 18636.233354043798, - 22590.915462840338, - 25907.08877323693, - 27065.03140854244, - 26171.803068721158, - 22977.493573646305, - 17697.34533722982, - 10969.016716487897, - 4392.410960552316, - -1363.6366594671363, - -5604.442957997814, - -7653.552258378556, - -8178.37069992617, - -7752.926668680681, - -7211.324470161683, - -7444.008202723033, - -8764.542464806438, - -11082.42398489812, - -13595.1007395031, - -15732.194333263318, - -16730.26164244082, - -15906.82061412981, - -13484.150669596384, - -10058.23601623628, - -6449.037123145814, - -3199.5377844504374, - -1479.7827807126607, - -1029.5891690120457, - -1351.7594596492381, - -1968.4408515216617, - -1920.079626499264, - -588.0207960616715, - 2094.6870380321293, - 5789.105339915722, - 9393.860932027661, - 12069.13459815791, - 13160.316520442202, - 12462.540878839962, - 10979.631961032084, - 10430.312643549143, - 12922.619028988234, - 20567.40385663611, - 34745.41112385864, - 56489.37093496825, - 82338.06853248642, - 111828.57616649158, - 142685.36897299153, - 165938.67613592747 - ], - "flow:J26:branch41_seg0": [ - 36.148288409636734, - 41.22689097412905, - 44.207386626391546, - 44.86353713202118, - 43.31998529062607, - 39.92369561828633, - 35.218427848432974, - 29.945130609142048, - 24.681938446695504, - 19.682930243121262, - 15.32124331663644, - 11.414727704111158, - 7.824753376888718, - 4.446880040896017, - 1.0085584283990436, - -2.371804247602635, - -5.714030608955431, - -8.856397211694427, - -11.486256792887092, - -13.630886407806946, - -15.17210750858872, - -16.15526279742678, - -16.768669344136026, - -17.113834131038757, - -17.326663512591438, - -17.446178064734678, - -17.414815489096693, - -17.147363556522063, - -16.558548296292702, - -15.629116202730609, - -14.452790125769706, - -13.287566251691178, - -12.40908401605635, - -12.165597099570011, - -12.801864538848395, - -14.389328895919618, - -16.754823259862103, - -19.596771701706444, - -22.389090452970127, - -24.543117748173593, - -25.667126085591196, - -25.419359373847215, - -23.748680031051748, - -20.855436272612344, - -17.210034396297043, - -13.131104051220664, - -9.185093349024005, - -5.732158289371872, - -2.8186585723012247, - -0.5878689008867487, - 1.1637998517342554, - 2.6042438915929935, - 3.7929280834964128, - 4.863453921170334, - 5.717547210313154, - 6.233268295189983, - 6.304951781891989, - 5.8290624005378415, - 4.823633920490447, - 3.4321471369533465, - 1.8780890254641704, - 0.3811243602093764, - -0.7818423606122393, - -1.5290239658712972, - -1.8600240772808623, - -1.869257274463159, - -1.7634094938968587, - -1.73625073904127, - -1.9157476584706619, - -2.3368753945659524, - -2.900088931106822, - -3.4647671814877454, - -3.8299303690380526, - -3.8491599861490213, - -3.486324583660262, - -2.8104799145114723, - -1.9703609264576931, - -1.1667677116204123, - -0.5935870277458117, - -0.30322768549067064, - -0.2839156882353955, - -0.4022126587869801, - -0.46359116509403414, - -0.30126954304646475, - 0.17184466227596557, - 0.9159759986015168, - 1.76951273369057, - 2.5298275815101996, - 2.967807614011962, - 3.0159167913488094, - 2.7726136557686516, - 2.5309193823929363, - 2.746304532321972, - 3.9189569460332434, - 6.476585141826047, - 10.65914342601511, - 16.192683770516158, - 22.87371709963869, - 29.860928065729574, - 36.148288409636734 - ], - "pressure:J26:branch41_seg0": [ - 165938.67613592747, - 183129.24144902802, - 191524.73471595807, - 188489.30045774748, - 177011.83975361264, - 159390.96545130233, - 137830.07547445156, - 113739.69613989611, - 92626.00863230845, - 72877.15337242118, - 55068.06669240418, - 40097.92903586765, - 25153.11750313591, - 11042.331084390918, - -3252.438945198475, - -17754.53596201868, - -31500.12325610435, - -44191.09160780878, - -54083.780668821724, - -61649.60495937461, - -67082.42351831641, - -70043.93991671632, - -71870.92825802107, - -72942.12947469288, - -73551.70116752914, - -73864.40041379113, - -73304.58003911086, - -71505.21472643579, - -68190.77397318027, - -63648.40477015337, - -58228.432449679756, - -53625.42240933476, - -51135.590985125375, - -51678.87229557168, - -56488.53425433111, - -65286.57253820207, - -76863.95328316299, - -89228.09558184557, - -100517.0012430929, - -107689.2168521567, - -109466.7669198002, - -105362.9398531959, - -95211.88605724143, - -80254.95470821219, - -63853.03628956632, - -46413.582149148926, - -29866.957086904364, - -16984.896685980057, - -6062.842787708685, - 2165.2225423583495, - 8300.949927562422, - 14178.345788920557, - 18636.233354043798, - 22590.915462840338, - 25907.08877323693, - 27065.03140854244, - 26171.803068721158, - 22977.493573646305, - 17697.34533722982, - 10969.016716487897, - 4392.410960552316, - -1363.6366594671363, - -5604.442957997814, - -7653.552258378556, - -8178.37069992617, - -7752.926668680681, - -7211.324470161683, - -7444.008202723033, - -8764.542464806438, - -11082.42398489812, - -13595.1007395031, - -15732.194333263318, - -16730.26164244082, - -15906.82061412981, - -13484.150669596384, - -10058.23601623628, - -6449.037123145814, - -3199.5377844504374, - -1479.7827807126607, - -1029.5891690120457, - -1351.7594596492381, - -1968.4408515216617, - -1920.079626499264, - -588.0207960616715, - 2094.6870380321293, - 5789.105339915722, - 9393.860932027661, - 12069.13459815791, - 13160.316520442202, - 12462.540878839962, - 10979.631961032084, - 10430.312643549143, - 12922.619028988234, - 20567.40385663611, - 34745.41112385864, - 56489.37093496825, - 82338.06853248642, - 111828.57616649158, - 142685.36897299153, - 165938.67613592747 - ], - "flow:J26:branch98_seg0": [ - 37.07335944321044, - 42.007336924977025, - 44.74962383035722, - 45.108034290460026, - 43.27959656726681, - 39.64074878952027, - 34.75501551487451, - 29.38522517322693, - 24.11451870149044, - 19.129699043946903, - 14.82569421512882, - 10.974290995283466, - 7.406639725871922, - 4.051675891584134, - 0.6037106095387698, - -2.778380642143432, - -6.105719490942981, - -9.236911915645432, - -11.811130977439852, - -13.895443557513074, - -15.377030943377678, - -16.29828231624862, - -16.872207487613952, - -17.192487146926997, - -17.392004360800076, - -17.503962027558124, - -17.457615229789916, - -17.163328371187916, - -16.537830663849498, - -15.569203451039556, - -14.363329701505252, - -13.199367994060092, - -12.357651356980943, - -12.190482701663232, - -12.935371381057147, - -14.64349847666559, - -17.110336653561554, - -20.014889313864415, - -22.820183275882005, - -24.90899310310704, - -25.921315502780498, - -25.521697812091148, - -23.686334147626823, - -20.637754604562986, - -16.89146440334255, - -12.748978240582728, - -8.786820121594006, - -5.373542509809282, - -2.504560924562356, - -0.33128996988258497, - 1.372658795576102, - 2.7899153901613722, - 3.9592254408838365, - 5.018818613864168, - 5.854622692444276, - 6.331482818139405, - 6.349909042144605, - 5.807256026092756, - 4.733936257476091, - 3.288095269067376, - 1.7100315140711981, - 0.21077585791196665, - -0.9209047689947308, - -1.6210552275656793, - -1.9082980777326215, - -1.8824297493779583, - -1.7630774100128934, - -1.7460124706175166, - -1.9506620092097142, - -2.4020521312695813, - -2.9841081263564835, - -3.5501760860844334, - -3.8951317953385285, - -3.8741764906091034, - -3.464464463759319, - -2.749391464554281, - -1.8865074807859386, - -1.0819957817269197, - -0.5320589539937102, - -0.2738147446156309, - -0.2840442314516029, - -0.4178229772609837, - -0.47204259853651975, - -0.281497221573846, - 0.23048658124320368, - 1.0107662980249883, - 1.879432411583529, - 2.6327611638088904, - 3.0360122592566423, - 3.0385534342889007, - 2.762306491030227, - 2.5233923197287087, - 2.79683448533102, - 4.0916208322750744, - 6.823914178645223, - 11.22470049567101, - 16.9455124003366, - 23.781448098627592, - 30.848977543249482, - 37.07335944321044 - ], - "pressure:J26:branch98_seg0": [ - 165938.67613592747, - 183129.24144902802, - 191524.73471595807, - 188489.30045774748, - 177011.83975361264, - 159390.96545130233, - 137830.07547445156, - 113739.69613989611, - 92626.00863230845, - 72877.15337242118, - 55068.06669240418, - 40097.92903586765, - 25153.11750313591, - 11042.331084390918, - -3252.438945198475, - -17754.53596201868, - -31500.12325610435, - -44191.09160780878, - -54083.780668821724, - -61649.60495937461, - -67082.42351831641, - -70043.93991671632, - -71870.92825802107, - -72942.12947469288, - -73551.70116752914, - -73864.40041379113, - -73304.58003911086, - -71505.21472643579, - -68190.77397318027, - -63648.40477015337, - -58228.432449679756, - -53625.42240933476, - -51135.590985125375, - -51678.87229557168, - -56488.53425433111, - -65286.57253820207, - -76863.95328316299, - -89228.09558184557, - -100517.0012430929, - -107689.2168521567, - -109466.7669198002, - -105362.9398531959, - -95211.88605724143, - -80254.95470821219, - -63853.03628956632, - -46413.582149148926, - -29866.957086904364, - -16984.896685980057, - -6062.842787708685, - 2165.2225423583495, - 8300.949927562422, - 14178.345788920557, - 18636.233354043798, - 22590.915462840338, - 25907.08877323693, - 27065.03140854244, - 26171.803068721158, - 22977.493573646305, - 17697.34533722982, - 10969.016716487897, - 4392.410960552316, - -1363.6366594671363, - -5604.442957997814, - -7653.552258378556, - -8178.37069992617, - -7752.926668680681, - -7211.324470161683, - -7444.008202723033, - -8764.542464806438, - -11082.42398489812, - -13595.1007395031, - -15732.194333263318, - -16730.26164244082, - -15906.82061412981, - -13484.150669596384, - -10058.23601623628, - -6449.037123145814, - -3199.5377844504374, - -1479.7827807126607, - -1029.5891690120457, - -1351.7594596492381, - -1968.4408515216617, - -1920.079626499264, - -588.0207960616715, - 2094.6870380321293, - 5789.105339915722, - 9393.860932027661, - 12069.13459815791, - 13160.316520442202, - 12462.540878839962, - 10979.631961032084, - 10430.312643549143, - 12922.619028988234, - 20567.40385663611, - 34745.41112385864, - 56489.37093496825, - 82338.06853248642, - 111828.57616649158, - 142685.36897299153, - 165938.67613592747 - ], - "flow:branch42_seg0:J27": [ - 44.200292423223644, - 49.45048166300427, - 52.02769969686242, - 51.771097270482244, - 49.064760630921896, - 44.39850189591575, - 38.416159244447385, - 32.02458816745815, - 25.969180349936586, - 20.23498208177997, - 15.374610058792337, - 11.038972358903813, - 6.931022155628362, - 3.076111128565152, - -0.9608594812567474, - -4.91226705772056, - -8.740883794028337, - -12.324581918760925, - -15.145880736300063, - -17.347035883946322, - -18.835380119921908, - -19.65320495692744, - -20.112541535580224, - -20.3159647838053, - -20.40843290484041, - -20.416415424975796, - -20.22468998504214, - -19.719764229727218, - -18.811765795926448, - -17.51679523018026, - -15.983461408509662, - -14.60411662017439, - -13.704609462064141, - -13.695998042344375, - -14.824306962546373, - -17.08625440932264, - -20.152790745554068, - -23.586473760046577, - -26.744997474289484, - -28.846282628770712, - -29.561839931798673, - -28.566366425304444, - -25.90707222724808, - -21.94207641127284, - -17.37135745418716, - -12.517834679317279, - -8.039058874524336, - -4.363798534049264, - -1.3390119612251703, - 0.8678797229258122, - 2.5687042009186682, - 4.022668739430675, - 5.20287279130252, - 6.291342894744639, - 7.113014853629204, - 7.475146139029198, - 7.292364718821541, - 6.453490701555072, - 5.027401080598933, - 3.2285089546393095, - 1.3839239792503162, - -0.3044374166309945, - -1.4884626210216734, - -2.130775696181135, - -2.31921172589712, - -2.182809281480574, - -2.0011591015899475, - -2.0013337321269864, - -2.2936511350843816, - -2.8733958698487068, - -3.566258890811378, - -4.187006346088692, - -4.49682783724213, - -4.340556986772823, - -3.733902037759947, - -2.8125930274680213, - -1.7828509593880861, - -0.8829160666073071, - -0.344932007481968, - -0.1558051090781836, - -0.25724628781868775, - -0.45401437868536354, - -0.49627389450533677, - -0.2055946425528547, - 0.4713308922466136, - 1.4372786499816195, - 2.435983399480894, - 3.2397669535507805, - 3.5795460613208276, - 3.4380979129364406, - 3.0271434573587785, - 2.7641418263202193, - 3.2372461121683895, - 5.033098976450581, - 8.593124018421445, - 14.127805410269099, - 21.065634708692244, - 29.163244536226017, - 37.34057078639116, - 44.200292423223644 - ], - "pressure:branch42_seg0:J27": [ - 182623.09477327787, - 198455.18373853766, - 205169.91328708778, - 199143.9677675281, - 184420.94168304867, - 164106.5837671326, - 140197.83334629488, - 113605.25520344927, - 91562.41195450418, - 70741.17771105007, - 51976.376474633136, - 36655.57450520115, - 20532.11728201155, - 5447.919874330515, - -9892.123733912147, - -25681.672877301397, - -40043.717801108185, - -53466.54013506529, - -63434.807399243575, - -70355.36196963764, - -75383.0746609117, - -77620.25238831027, - -78775.08606904409, - -79383.11705365717, - -79511.33090353408, - -79390.62760710933, - -78251.44404310916, - -75643.70178580329, - -71353.65029251362, - -65909.65059705495, - -59654.08246054767, - -54776.51368220562, - -52668.470666164896, - -54086.83117955606, - -60320.6974321766, - -70820.23545319603, - -83938.76383905039, - -97113.20819926294, - -108706.29060364442, - -114948.22869473729, - -114812.65284621857, - -108409.68411246978, - -95543.68290824528, - -77891.77904808753, - -59662.01676723967, - -41275.822616122125, - -23919.73375387806, - -11355.236980155989, - -953.8567580184674, - 6845.130141037625, - 12304.694859916272, - 18056.48977081449, - 22248.78944077576, - 25841.759095297573, - 28864.378902236116, - 29318.848916358496, - 27512.476517625, - 23311.756493971738, - 17038.78106001226, - 9393.439945204575, - 2447.734710085829, - -3386.6420588338237, - -7460.198225169926, - -8914.500347334131, - -8988.164851865644, - -8238.348431604643, - -7562.505837484729, - -7962.568324944118, - -9639.311385995126, - -12345.307885892122, - -15049.477787505208, - -17075.134671256354, - -17749.52575260217, - -16323.007816244088, - -13198.360698270697, - -9225.261079467524, - -5386.684540205339, - -2077.7698288432853, - -681.9696648473363, - -676.7288491488345, - -1295.9241498663096, - -2011.9351299918262, - -1796.6308410712486, - -42.45744170708499, - 3145.1877806925077, - 7306.839602673038, - 11031.222807324046, - 13514.440159184984, - 14186.94371514, - 12863.489596794901, - 11028.36673170948, - 10689.023511657339, - 14206.142808848366, - 23772.17829001072, - 40621.53840555683, - 65802.4013400134, - 94635.67855574854, - 126251.41710707544, - 159461.28772874243, - 182623.09477327787 - ], - "flow:J27:branch43_seg0": [ - 24.201904031777136, - 27.004518250913225, - 28.338576494492784, - 28.119406896425115, - 26.581285119636025, - 23.995527355276497, - 20.71138461478113, - 17.223649792879108, - 13.947007319458342, - 10.841016142397374, - 8.219337109661238, - 5.882334558013695, - 3.6538688982943865, - 1.5660110021085165, - -0.6302572131778378, - -2.777419946355957, - -4.849953229902911, - -6.792631229528124, - -8.306567496549881, - -9.482320068385736, - -10.274348407028818, - -10.700599659222256, - -10.939906611140845, - -11.044538351805214, - -11.091084871890855, - -11.093038119359372, - -10.983382446498931, - -10.700080966059184, - -10.195653161695933, - -9.482185015007548, - -8.642606117696033, - -7.89774643576182, - -7.423656588987073, - -7.442757094599776, - -8.08663682822702, - -9.346479030358608, - -11.03388416194819, - -12.90647259219849, - -14.616061371628751, - -15.728273365082307, - -16.077819007453048, - -15.492495631146307, - -14.00364137495032, - -11.812755157543299, - -9.31393033367451, - -6.6729914989845565, - -4.245611257631182, - -2.271873507775902, - -0.6469802593953567, - 0.5329611534524734, - 1.4411177220122358, - 2.2258212035939606, - 2.8600890014647313, - 3.4469260631696126, - 3.8872318122466285, - 4.070685589689153, - 3.9559614412400346, - 3.4829742808306627, - 2.6925306438587104, - 1.704644481079772, - 0.7025615407108331, - -0.2100171335221728, - -0.8408472068109849, - -1.1738991032268207, - -1.2646909415275838, - -1.182781184064202, - -1.0827204115224596, - -1.0878476465076286, - -1.2545668205415195, - -1.577197104387353, - -1.956363921752555, - -2.290840638391689, - -2.451226693040592, - -2.3537017823828728, - -2.0117200269593383, - -1.502944206047241, - -0.9413022278424096, - -0.4554019902374925, - -0.1729284473291931, - -0.08021890612353684, - -0.14240311564890998, - -0.25156651996593704, - -0.27026605406504933, - -0.10315871084002795, - 0.2748417705700556, - 0.8073996909754405, - 1.3500687846345338, - 1.7810384484956314, - 1.9537214656843116, - 1.863637736245877, - 1.6337487609404198, - 1.4960831900450937, - 1.7739333177069516, - 2.786077854947619, - 4.767180950360907, - 7.829222087482137, - 11.636527599023966, - 16.060592118670947, - 20.512875527021144, - 24.201904031777136 - ], - "pressure:J27:branch43_seg0": [ - 182623.09477327787, - 198455.18373853766, - 205169.91328708778, - 199143.9677675281, - 184420.94168304867, - 164106.5837671326, - 140197.83334629488, - 113605.25520344927, - 91562.41195450418, - 70741.17771105007, - 51976.376474633136, - 36655.57450520115, - 20532.11728201155, - 5447.919874330515, - -9892.123733912147, - -25681.672877301397, - -40043.717801108185, - -53466.54013506529, - -63434.807399243575, - -70355.36196963764, - -75383.0746609117, - -77620.25238831027, - -78775.08606904409, - -79383.11705365717, - -79511.33090353408, - -79390.62760710933, - -78251.44404310916, - -75643.70178580329, - -71353.65029251362, - -65909.65059705495, - -59654.08246054767, - -54776.51368220562, - -52668.470666164896, - -54086.83117955606, - -60320.6974321766, - -70820.23545319603, - -83938.76383905039, - -97113.20819926294, - -108706.29060364442, - -114948.22869473729, - -114812.65284621857, - -108409.68411246978, - -95543.68290824528, - -77891.77904808753, - -59662.01676723967, - -41275.822616122125, - -23919.73375387806, - -11355.236980155989, - -953.8567580184674, - 6845.130141037625, - 12304.694859916272, - 18056.48977081449, - 22248.78944077576, - 25841.759095297573, - 28864.378902236116, - 29318.848916358496, - 27512.476517625, - 23311.756493971738, - 17038.78106001226, - 9393.439945204575, - 2447.734710085829, - -3386.6420588338237, - -7460.198225169926, - -8914.500347334131, - -8988.164851865644, - -8238.348431604643, - -7562.505837484729, - -7962.568324944118, - -9639.311385995126, - -12345.307885892122, - -15049.477787505208, - -17075.134671256354, - -17749.52575260217, - -16323.007816244088, - -13198.360698270697, - -9225.261079467524, - -5386.684540205339, - -2077.7698288432853, - -681.9696648473363, - -676.7288491488345, - -1295.9241498663096, - -2011.9351299918262, - -1796.6308410712486, - -42.45744170708499, - 3145.1877806925077, - 7306.839602673038, - 11031.222807324046, - 13514.440159184984, - 14186.94371514, - 12863.489596794901, - 11028.36673170948, - 10689.023511657339, - 14206.142808848366, - 23772.17829001072, - 40621.53840555683, - 65802.4013400134, - 94635.67855574854, - 126251.41710707544, - 159461.28772874243, - 182623.09477327787 - ], - "flow:J27:branch134_seg0": [ - 19.99838839144637, - 22.44596341209088, - 23.689123202368354, - 23.651690374057303, - 22.483475511285828, - 20.402974540639832, - 17.704774629666254, - 14.800938374579165, - 12.02217303047734, - 9.393965939382355, - 7.155272949130837, - 5.15663780089105, - 3.277153257334202, - 1.510100126456691, - -0.3306022680786194, - -2.1348471113654246, - -3.8909305641247687, - -5.531950689232038, - -6.839313239749883, - -7.864715815560923, - -8.561031712893989, - -8.952605297704224, - -9.172634924438825, - -9.27142643200042, - -9.317348032950806, - -9.323377305617012, - -9.241307538543403, - -9.019683263668355, - -8.616112634230484, - -8.034610215172844, - -7.340855290814631, - -6.706370184411967, - -6.280952873077626, - -6.253240947745259, - -6.737670134318875, - -7.73977537896435, - -9.11890658360611, - -10.680001167847795, - -12.128936102660742, - -13.118009263688283, - -13.484020924345565, - -13.073870794158193, - -11.90343085229781, - -10.129321253729639, - -8.057427120512681, - -5.8448431803327185, - -3.7934476168931486, - -2.0919250262733624, - -0.6920317018298319, - 0.33491856947334014, - 1.1275864789064312, - 1.7968475358367195, - 2.3427837898377866, - 2.844416831575023, - 3.2257830413825452, - 3.4044605493400457, - 3.3364032775813945, - 2.9705164207243646, - 2.334870436740081, - 1.5238644735594427, - 0.681362438539494, - -0.09442028310882525, - -0.6476154142107201, - -0.956876592954345, - -1.0545207843695452, - -1.0000280974164601, - -0.9184386900674265, - -0.9134860856193295, - -1.03908431454282, - -1.296198765461231, - -1.609894969058855, - -1.8961657076970284, - -2.0456011442015174, - -1.9868552043899572, - -1.7221820108005879, - -1.3096488214207782, - -0.8415487315456766, - -0.42751407636981176, - -0.1720035601527761, - -0.07558620295462834, - -0.11484317216978075, - -0.20244785871941978, - -0.22600784044027974, - -0.10243593171281679, - 0.19648912167655336, - 0.6298789590061865, - 1.0859146148463683, - 1.4587285050551677, - 1.6258245956365207, - 1.5744601766905644, - 1.3933946964183574, - 1.2680586362750845, - 1.463312794461476, - 2.247021121502981, - 3.8259430680605533, - 6.29858332278695, - 9.429107109668125, - 13.102652417555273, - 16.827695259370202, - 19.99838839144637 - ], - "pressure:J27:branch134_seg0": [ - 182623.09477327787, - 198455.18373853766, - 205169.91328708778, - 199143.9677675281, - 184420.94168304867, - 164106.5837671326, - 140197.83334629488, - 113605.25520344927, - 91562.41195450418, - 70741.17771105007, - 51976.376474633136, - 36655.57450520115, - 20532.11728201155, - 5447.919874330515, - -9892.123733912147, - -25681.672877301397, - -40043.717801108185, - -53466.54013506529, - -63434.807399243575, - -70355.36196963764, - -75383.0746609117, - -77620.25238831027, - -78775.08606904409, - -79383.11705365717, - -79511.33090353408, - -79390.62760710933, - -78251.44404310916, - -75643.70178580329, - -71353.65029251362, - -65909.65059705495, - -59654.08246054767, - -54776.51368220562, - -52668.470666164896, - -54086.83117955606, - -60320.6974321766, - -70820.23545319603, - -83938.76383905039, - -97113.20819926294, - -108706.29060364442, - -114948.22869473729, - -114812.65284621857, - -108409.68411246978, - -95543.68290824528, - -77891.77904808753, - -59662.01676723967, - -41275.822616122125, - -23919.73375387806, - -11355.236980155989, - -953.8567580184674, - 6845.130141037625, - 12304.694859916272, - 18056.48977081449, - 22248.78944077576, - 25841.759095297573, - 28864.378902236116, - 29318.848916358496, - 27512.476517625, - 23311.756493971738, - 17038.78106001226, - 9393.439945204575, - 2447.734710085829, - -3386.6420588338237, - -7460.198225169926, - -8914.500347334131, - -8988.164851865644, - -8238.348431604643, - -7562.505837484729, - -7962.568324944118, - -9639.311385995126, - -12345.307885892122, - -15049.477787505208, - -17075.134671256354, - -17749.52575260217, - -16323.007816244088, - -13198.360698270697, - -9225.261079467524, - -5386.684540205339, - -2077.7698288432853, - -681.9696648473363, - -676.7288491488345, - -1295.9241498663096, - -2011.9351299918262, - -1796.6308410712486, - -42.45744170708499, - 3145.1877806925077, - 7306.839602673038, - 11031.222807324046, - 13514.440159184984, - 14186.94371514, - 12863.489596794901, - 11028.36673170948, - 10689.023511657339, - 14206.142808848366, - 23772.17829001072, - 40621.53840555683, - 65802.4013400134, - 94635.67855574854, - 126251.41710707544, - 159461.28772874243, - 182623.09477327787 - ], - "flow:branch45_seg0:J28": [ - 68.08501042190616, - 75.70679666496545, - 79.11329695100532, - 78.14092357052145, - 73.52904737214138, - 66.021547981106, - 56.63869805288936, - 46.85479941409613, - 37.69444946432777, - 29.07999978640415, - 21.919369365372884, - 15.517152267493081, - 9.406012288999102, - 3.6803694755898073, - -2.4146643684027573, - -8.32321311269443, - -14.025411650525529, - -19.40522659858901, - -23.49179807325656, - -26.660016793564893, - -28.75608131507047, - -29.824625272884944, - -30.41612913150669, - -30.64751500407201, - -30.739334471846075, - -30.724000468481446, - -30.39557185564414, - -29.575154993266278, - -28.133181193993675, - -26.098884218399885, - -23.729791864774906, - -21.65092931494345, - -20.363996258683773, - -20.500908888259435, - -22.422405127817328, - -26.07392946310236, - -30.881030321735697, - -36.176240499526884, - -40.94462474694581, - -43.943119562193566, - -44.775516208030176, - -42.938088204724735, - -38.586129533100504, - -32.28426612028269, - -25.235831152111462, - -17.82989794626135, - -11.084525158709749, - -5.689681533060629, - -1.2544907011396775, - 1.905002895738116, - 4.328009702580475, - 6.440695366389665, - 8.152579764002686, - 9.748968080402877, - 10.931064564573793, - 11.38847020347797, - 11.004166284958828, - 9.607147017027026, - 7.321648568754505, - 4.517576524049112, - 1.6927841352711375, - -0.8544878605981917, - -2.550521549456707, - -3.4094954609590276, - -3.5966750671189396, - -3.307246847216354, - -2.99752075733241, - -3.01278697933655, - -3.4972712459671706, - -4.428382668174025, - -5.501416270015907, - -6.433703206295883, - -6.858436636411035, - -6.540925416260922, - -5.535668937767634, - -4.075360452066127, - -2.483120632980733, - -1.131617574813988, - -0.3704802385398075, - -0.1529583724055608, - -0.3684537878361198, - -0.7026499892115065, - -0.7571384890678998, - -0.26866053849503024, - 0.8252511095979238, - 2.3443164342423115, - 3.875930214008368, - 5.073229376759236, - 5.503554950735177, - 5.192598171327137, - 4.502545461178231, - 4.106864807570182, - 4.9246485265058135, - 7.859847928412904, - 13.535996905036251, - 22.28918930543755, - 33.04359765660337, - 45.47384031943939, - 57.92051188772138, - 68.08501042190616 - ], - "pressure:branch45_seg0:J28": [ - 179730.33511205885, - 197568.4973196094, - 205110.24980407907, - 200686.87653334392, - 187193.99768136928, - 166972.08580703413, - 142534.0949224138, - 116599.3461827766, - 93728.54747676417, - 72069.5731603412, - 53601.72808886375, - 37747.18357290129, - 21834.41484001054, - 7081.651949107282, - -8491.556974345765, - -23981.093808167585, - -38361.43531252767, - -52017.67856369514, - -62258.57019495256, - -69801.56684730398, - -74938.31626673264, - -77394.0342540359, - -78689.53712575174, - -79254.15955689308, - -79419.57194350944, - -79313.31616088745, - -78313.18447302826, - -75934.97883337327, - -71913.95818793504, - -66495.92155803589, - -60289.35326362895, - -55124.537249878835, - -52378.039098029236, - -53344.874317183814, - -59030.74658741439, - -69106.4931593698, - -81974.13855311653, - -95427.67423576921, - -107433.24483165336, - -114338.33708563464, - -115334.05467945912, - -109630.74439018173, - -97536.94262767257, - -80544.85127604881, - -62179.666349084364, - -43313.99653874359, - -26007.616232727978, - -12672.53943523436, - -1779.3271026919601, - 6144.148334774964, - 12024.108427578663, - 17488.104386584968, - 21809.243372156387, - 25686.131852702227, - 28656.14004329928, - 29452.288884350426, - 28023.079855433327, - 24035.500623441865, - 17875.04160058633, - 10369.05898122838, - 3255.137251126233, - -3010.1916002739345, - -7176.7410764532215, - -8969.939277709265, - -9214.997515477868, - -8417.2220295642, - -7655.873574481433, - -7864.332529682096, - -9317.287922327318, - -11869.886236517481, - -14637.316422232778, - -16881.43284236111, - -17758.609715043127, - -16636.517871339325, - -13755.712097776834, - -9853.804464189927, - -5807.956781384062, - -2422.95606980799, - -724.0063238152486, - -444.9124695491631, - -1087.9555598567383, - -1910.3678094607235, - -1886.4231027914352, - -361.9782797811701, - 2668.3183660749614, - 6751.530095304984, - 10586.840464800312, - 13402.022890472175, - 14255.211039858674, - 13165.945433053477, - 11328.386060158613, - 10616.641439191531, - 13408.21239053512, - 21993.175921594288, - 37748.22820482588, - 61614.33753519627, - 90080.7081626652, - 122262.47148708858, - 154679.74948822637, - 179730.33511205885 - ], - "flow:J28:branch46_seg0": [ - 31.653870835579742, - 35.2018843208783, - 36.78854172644028, - 36.34047897298942, - 34.19863254908421, - 30.70885431798174, - 26.346331683988105, - 21.79763413823119, - 17.536051498661223, - 13.529694595927069, - 10.19957122253382, - 7.221295146878223, - 4.380623041407863, - 1.718521090899972, - -1.1148201553311115, - -3.8612504481010563, - -6.513227464644057, - -9.014486956775368, - -10.915910539892769, - -12.390921935294585, - -13.366561971851704, - -13.864926603586493, - -14.140907395986908, - -14.249027308116808, - -14.292326549388282, - -14.285698975132346, - -14.133804791994832, - -13.753447701048405, - -13.084140321691134, - -12.139072792289708, - -11.038012991115869, - -10.070858706411666, - -9.470990784752653, - -9.532873516575624, - -10.424179838495293, - -12.120271230398997, - -14.354807376037535, - -16.81808471684351, - -19.037113327488704, - -20.435173686827362, - -20.82652316839803, - -19.975883979405776, - -17.955330126229097, - -15.027110419834864, - -11.749165894115393, - -8.303691478322149, - -5.165554281226773, - -2.653608724361313, - -0.5888701366052228, - 0.8820065090359738, - 2.0105153006118868, - 2.99331951909216, - 3.7901325204866034, - 4.533295277488317, - 5.083509863312814, - 5.297482248940859, - 5.1199730233131415, - 4.471335231067908, - 3.4092013897189117, - 2.10554247483123, - 0.7911218707055861, - -0.39443164968306954, - -1.184330504662709, - -1.5853183385149343, - -1.6731309513115675, - -1.5388534642437577, - -1.3947228207599156, - -1.4012729383395324, - -1.625972150222959, - -2.0585489581797956, - -2.557679046908645, - -2.991834593638941, - -3.1901222616854286, - -3.043489386235979, - -2.5768186142686433, - -1.8979754460912142, - -1.1571742795781823, - -0.5281401283577616, - -0.17316653754865816, - -0.07112115519520734, - -0.17100991943774416, - -0.3264891496216695, - -0.3523362373660307, - -0.125935349397439, - 0.3821853725013698, - 1.0883254172401706, - 1.8010905536657857, - 2.358742653494562, - 2.559886578642305, - 2.416265200051509, - 2.095525540856592, - 1.9106045861130843, - 2.2889314643666014, - 3.651075470797814, - 6.287784327873192, - 10.354958232816598, - 15.354976927941841, - 21.135880154178544, - 26.923373444472855, - 31.653870835579742 - ], - "pressure:J28:branch46_seg0": [ - 179730.33511205885, - 197568.4973196094, - 205110.24980407907, - 200686.87653334392, - 187193.99768136928, - 166972.08580703413, - 142534.0949224138, - 116599.3461827766, - 93728.54747676417, - 72069.5731603412, - 53601.72808886375, - 37747.18357290129, - 21834.41484001054, - 7081.651949107282, - -8491.556974345765, - -23981.093808167585, - -38361.43531252767, - -52017.67856369514, - -62258.57019495256, - -69801.56684730398, - -74938.31626673264, - -77394.0342540359, - -78689.53712575174, - -79254.15955689308, - -79419.57194350944, - -79313.31616088745, - -78313.18447302826, - -75934.97883337327, - -71913.95818793504, - -66495.92155803589, - -60289.35326362895, - -55124.537249878835, - -52378.039098029236, - -53344.874317183814, - -59030.74658741439, - -69106.4931593698, - -81974.13855311653, - -95427.67423576921, - -107433.24483165336, - -114338.33708563464, - -115334.05467945912, - -109630.74439018173, - -97536.94262767257, - -80544.85127604881, - -62179.666349084364, - -43313.99653874359, - -26007.616232727978, - -12672.53943523436, - -1779.3271026919601, - 6144.148334774964, - 12024.108427578663, - 17488.104386584968, - 21809.243372156387, - 25686.131852702227, - 28656.14004329928, - 29452.288884350426, - 28023.079855433327, - 24035.500623441865, - 17875.04160058633, - 10369.05898122838, - 3255.137251126233, - -3010.1916002739345, - -7176.7410764532215, - -8969.939277709265, - -9214.997515477868, - -8417.2220295642, - -7655.873574481433, - -7864.332529682096, - -9317.287922327318, - -11869.886236517481, - -14637.316422232778, - -16881.43284236111, - -17758.609715043127, - -16636.517871339325, - -13755.712097776834, - -9853.804464189927, - -5807.956781384062, - -2422.95606980799, - -724.0063238152486, - -444.9124695491631, - -1087.9555598567383, - -1910.3678094607235, - -1886.4231027914352, - -361.9782797811701, - 2668.3183660749614, - 6751.530095304984, - 10586.840464800312, - 13402.022890472175, - 14255.211039858674, - 13165.945433053477, - 11328.386060158613, - 10616.641439191531, - 13408.21239053512, - 21993.175921594288, - 37748.22820482588, - 61614.33753519627, - 90080.7081626652, - 122262.47148708858, - 154679.74948822637, - 179730.33511205885 - ], - "flow:J28:branch89_seg0": [ - 36.43113958632662, - 40.50491234408713, - 42.32475522456499, - 41.80044459753165, - 39.33041482305737, - 35.31269366312386, - 30.292366368900918, - 25.05716527586641, - 20.158397965665266, - 15.550305190476715, - 11.719798142840098, - 8.295857120613304, - 5.025389247592859, - 1.961848384690523, - -1.2998442130734533, - -4.461962664595397, - -7.512184185882951, - -10.390739641813578, - -12.575887533363243, - -14.269094858269757, - -15.389519343218216, - -15.959698669299733, - -16.275221735519942, - -16.39848769595274, - -16.447007922456883, - -16.438301493349183, - -16.261767063648726, - -15.821707292216733, - -15.049040872302392, - -13.95981142611009, - -12.691778873658409, - -11.58007060853244, - -10.89300547393077, - -10.968035371683992, - -11.998225289322079, - -13.953658232702841, - -16.526222945697782, - -19.35815578268252, - -21.907511419456718, - -23.507945875366207, - -23.948993039632153, - -22.962204225319272, - -20.630799406871546, - -17.25715570044776, - -13.486665257996082, - -9.526206467939177, - -5.918970877482978, - -3.036072808699322, - -0.6656205645344292, - 1.0229963867021574, - 2.3174944019685806, - 3.4473758472975025, - 4.362447243516086, - 5.2156728029145425, - 5.847554701260954, - 6.09098795453716, - 5.884193261645714, - 5.135811785959173, - 3.9124471790356856, - 2.412034049217696, - 0.9016622645655967, - -0.46005621091506693, - -1.3661910447940866, - -1.8241771224441439, - -1.9235441158073578, - -1.7683933829726821, - -1.6027979365724225, - -1.6115140409968836, - -1.8712990957442328, - -2.3698337099941913, - -2.9437372231072323, - -3.4418686126568914, - -3.6683143747255773, - -3.4974360300249603, - -2.958850323498993, - -2.1773850059748936, - -1.325946353402533, - -0.6034774464562177, - -0.1973137009911823, - -0.08183721721034788, - -0.19744386839836944, - -0.37616083958983637, - -0.4048022517018739, - -0.14272518909758142, - 0.4430657370965412, - 1.2559910170021618, - 2.0748396603425814, - 2.7144867232646765, - 2.943668372092871, - 2.7763329712756653, - 2.4070199203216416, - 2.1962602214570697, - 2.6357170621392583, - 4.208772457615178, - 7.248212577163097, - 11.934231072620761, - 17.68862072866173, - 24.337960165261045, - 30.99713844324861, - 36.43113958632662 - ], - "pressure:J28:branch89_seg0": [ - 179730.33511205885, - 197568.4973196094, - 205110.24980407907, - 200686.87653334392, - 187193.99768136928, - 166972.08580703413, - 142534.0949224138, - 116599.3461827766, - 93728.54747676417, - 72069.5731603412, - 53601.72808886375, - 37747.18357290129, - 21834.41484001054, - 7081.651949107282, - -8491.556974345765, - -23981.093808167585, - -38361.43531252767, - -52017.67856369514, - -62258.57019495256, - -69801.56684730398, - -74938.31626673264, - -77394.0342540359, - -78689.53712575174, - -79254.15955689308, - -79419.57194350944, - -79313.31616088745, - -78313.18447302826, - -75934.97883337327, - -71913.95818793504, - -66495.92155803589, - -60289.35326362895, - -55124.537249878835, - -52378.039098029236, - -53344.874317183814, - -59030.74658741439, - -69106.4931593698, - -81974.13855311653, - -95427.67423576921, - -107433.24483165336, - -114338.33708563464, - -115334.05467945912, - -109630.74439018173, - -97536.94262767257, - -80544.85127604881, - -62179.666349084364, - -43313.99653874359, - -26007.616232727978, - -12672.53943523436, - -1779.3271026919601, - 6144.148334774964, - 12024.108427578663, - 17488.104386584968, - 21809.243372156387, - 25686.131852702227, - 28656.14004329928, - 29452.288884350426, - 28023.079855433327, - 24035.500623441865, - 17875.04160058633, - 10369.05898122838, - 3255.137251126233, - -3010.1916002739345, - -7176.7410764532215, - -8969.939277709265, - -9214.997515477868, - -8417.2220295642, - -7655.873574481433, - -7864.332529682096, - -9317.287922327318, - -11869.886236517481, - -14637.316422232778, - -16881.43284236111, - -17758.609715043127, - -16636.517871339325, - -13755.712097776834, - -9853.804464189927, - -5807.956781384062, - -2422.95606980799, - -724.0063238152486, - -444.9124695491631, - -1087.9555598567383, - -1910.3678094607235, - -1886.4231027914352, - -361.9782797811701, - 2668.3183660749614, - 6751.530095304984, - 10586.840464800312, - 13402.022890472175, - 14255.211039858674, - 13165.945433053477, - 11328.386060158613, - 10616.641439191531, - 13408.21239053512, - 21993.175921594288, - 37748.22820482588, - 61614.33753519627, - 90080.7081626652, - 122262.47148708858, - 154679.74948822637, - 179730.33511205885 - ], - "flow:branch49_seg0:J29": [ - 25.185838203098378, - 31.39427272743701, - 37.16716157194628, - 41.99125909111008, - 45.44087734108592, - 47.26525022736747, - 47.426242356959904, - 46.11920283163973, - 43.58389699358194, - 40.16512461388422, - 36.23121090413058, - 31.97079729740868, - 27.57302874044767, - 23.11267261818354, - 18.580215169623653, - 14.033262532174543, - 9.462483172599525, - 4.945903170835055, - 0.6270007048950798, - -3.4121470033731907, - -7.040272536507518, - -10.189657111919267, - -12.854589076411033, - -15.053778941126103, - -16.849763578901033, - -18.297557509489177, - -19.426717034039317, - -20.237257218590532, - -20.704897900610366, - -20.80267698163818, - -20.54313717179129, - -20.001051241391778, - -19.314251283160228, - -18.698709436412486, - -18.38131393182386, - -18.566555973776694, - -19.36420025303657, - -20.789350494043457, - -22.681348330453936, - -24.769988016110865, - -26.73189029917408, - -28.200359693759314, - -28.893437892616994, - -28.641005823009344, - -27.43128983263653, - -25.343962060956425, - -22.61566390445685, - -19.50048950769897, - -16.2312412035188, - -13.032764208287821, - -10.007079473680902, - -7.214256583204154, - -4.666531672287247, - -2.346330766023589, - -0.2753182273511195, - 1.513557303270782, - 2.9512104169685562, - 3.957107505645254, - 4.475935173703232, - 4.50707160987559, - 4.098099388909144, - 3.3602406222346994, - 2.4622421940546757, - 1.5378270938470031, - 0.7138388533073915, - 0.05835661495178196, - -0.4365274317414175, - -0.8242035046503965, - -1.1831012287101748, - -1.5849395655981016, - -2.059080808198676, - -2.5901498196470776, - -3.1085627278285246, - -3.52309626726806, - -3.7509081041910806, - -3.7444194245106543, - -3.5070067584237674, - -3.1017330465917703, - -2.6227349627550507, - -2.1636954173931486, - -1.7973924117014535, - -1.5386892423111849, - -1.348638830310072, - -1.1516200546528277, - -0.8627578496258875, - -0.4294510647351408, - 0.15053713253603898, - 0.8189825427255277, - 1.463233817783645, - 1.9871592954226303, - 2.333251779148189, - 2.5383551899425756, - 2.759114568535207, - 3.256004338534854, - 4.354783791381519, - 6.371689668956539, - 9.496423611271863, - 13.82500108405491, - 19.173221378543875, - 25.185838203098378 - ], - "pressure:branch49_seg0:J29": [ - 73161.10925893635, - 90178.53587962368, - 105728.18311420319, - 118272.61265015841, - 126849.01467242278, - 130882.92378119341, - 130371.23185848637, - 125903.58043675816, - 118288.4217264577, - 108444.0506254929, - 97348.16479773073, - 85491.28321253779, - 73295.60195830745, - 60975.96013269498, - 48445.932957922385, - 35909.709897273744, - 23330.26233010708, - 10904.971109141252, - -822.4433145918977, - -11732.408335118793, - -21484.32126515402, - -29851.00573383961, - -36907.15970247272, - -42705.47040276774, - -47421.395573292066, - -51217.86935629352, - -54139.41439900401, - -56171.74221044787, - -57242.58024055316, - -57290.19620052381, - -56365.1754880588, - -54733.34640386022, - -52817.9830833969, - -51221.47645509877, - -50592.27437756365, - -51460.248052282725, - -54039.105984902315, - -58313.31551840263, - -63760.18388943323, - -69531.48632323268, - -74748.59840369546, - -78410.25699852296, - -79784.7987940786, - -78457.93809567101, - -74593.3660378529, - -68382.20663657192, - -60494.84408488444, - -51788.97057713451, - -42746.919111840245, - -34004.19333071999, - -25823.60136895032, - -18245.4574020305, - -11375.696466891965, - -5139.9097300351705, - 426.99929652009104, - 5161.714100036032, - 8883.84061255295, - 11379.202212740445, - 12505.726488131457, - 12298.463736118782, - 10934.792591597163, - 8744.584145923165, - 6216.354335265997, - 3699.001446023021, - 1511.247876180336, - -188.19047531001704, - -1462.8371517113535, - -2489.150918057091, - -3484.5630696639846, - -4636.530527084094, - -5982.191376806389, - -7459.926288788619, - -8863.92707212229, - -9913.112527940617, - -10405.79187196636, - -10242.755270560843, - -9467.852495134239, - -8264.316419985602, - -6931.369769113345, - -5710.671924994179, - -4761.611226124207, - -4108.7979309412785, - -3608.6589982581945, - -3035.7144463537043, - -2163.735288446547, - -872.9708150733726, - 801.2492878025104, - 2669.7513681271816, - 4398.279556809289, - 5742.175864351763, - 6586.617065651862, - 7102.0039547483475, - 7787.725874474862, - 9417.053199093976, - 12896.321975714383, - 19127.470233832155, - 28415.293606293533, - 40983.66743346309, - 56387.94202993793, - 73161.10925893635 - ], - "flow:J29:branch50_seg0": [ - 8.755657081356022, - 10.904061341511358, - 12.897599159840938, - 14.558996871544103, - 15.74238195559734, - 16.36205300564943, - 16.406028645998088, - 15.943904960286623, - 15.058845879843389, - 13.870011383164833, - 12.50595495679297, - 11.030228453628007, - 9.507810623439802, - 7.9646420876936705, - 6.396164579810152, - 4.823322725981292, - 3.242592926616366, - 1.6805140979799145, - 0.18835133411685748, - -1.2064533945487665, - -2.458616796954638, - -3.5445627217821043, - -4.463137595422056, - -5.220854767314835, - -5.839486707686506, - -6.338120699548822, - -6.726686257839112, - -7.004987355927323, - -7.164529621299113, - -7.1959889728085145, - -7.103968130993734, - -6.914885742017087, - -6.676741816445737, - -6.464737306437058, - -6.357426183956341, - -6.42530601046758, - -6.70544868046486, - -7.202596227988075, - -7.8601916920768025, - -8.583573151034024, - -9.261094925200007, - -9.765581943246076, - -10.000024169379211, - -9.906286289798993, - -9.48177404118936, - -8.754310072428071, - -7.806333288869387, - -6.726591557791113, - -5.594719005027109, - -4.488670893924385, - -3.443151299514438, - -2.4782299420877525, - -1.598251923708335, - -0.7969029047523034, - -0.08190553144690266, - 0.5351108844859194, - 1.0301536533009295, - 1.3752597300468203, - 1.5514601568591981, - 1.5590289692332704, - 1.4147882810187382, - 1.1573745056551616, - 0.845876666701593, - 0.5261430386660487, - 0.2417556859265624, - 0.016112477525330855, - -0.15409730997119575, - -0.28767004240447064, - -0.4118051037001308, - -0.5512485573953061, - -0.7157982974222377, - -0.899842942178089, - -1.0790500016879419, - -1.2216369162615661, - -1.2991026192929687, - -1.295281386172753, - -1.211668047701764, - -1.070417419178986, - -0.9043601271350111, - -0.7457976937753216, - -0.6197156808706146, - -0.5308995361331941, - -0.4654906812826289, - -0.39711683644698476, - -0.2964151752680512, - -0.1454558979298911, - 0.05613319124917532, - 0.2879464446072845, - 0.5105213180361562, - 0.6908290570353561, - 0.8094083227638174, - 0.8796217948600195, - 0.9564743980215512, - 1.1307586543887835, - 1.5154649157893172, - 2.220143521344759, - 3.308929307515831, - 4.814365089423873, - 6.671764116151863, - 8.755657081356022 - ], - "pressure:J29:branch50_seg0": [ - 73161.10925893635, - 90178.53587962368, - 105728.18311420319, - 118272.61265015841, - 126849.01467242278, - 130882.92378119341, - 130371.23185848637, - 125903.58043675816, - 118288.4217264577, - 108444.0506254929, - 97348.16479773073, - 85491.28321253779, - 73295.60195830745, - 60975.96013269498, - 48445.932957922385, - 35909.709897273744, - 23330.26233010708, - 10904.971109141252, - -822.4433145918977, - -11732.408335118793, - -21484.32126515402, - -29851.00573383961, - -36907.15970247272, - -42705.47040276774, - -47421.395573292066, - -51217.86935629352, - -54139.41439900401, - -56171.74221044787, - -57242.58024055316, - -57290.19620052381, - -56365.1754880588, - -54733.34640386022, - -52817.9830833969, - -51221.47645509877, - -50592.27437756365, - -51460.248052282725, - -54039.105984902315, - -58313.31551840263, - -63760.18388943323, - -69531.48632323268, - -74748.59840369546, - -78410.25699852296, - -79784.7987940786, - -78457.93809567101, - -74593.3660378529, - -68382.20663657192, - -60494.84408488444, - -51788.97057713451, - -42746.919111840245, - -34004.19333071999, - -25823.60136895032, - -18245.4574020305, - -11375.696466891965, - -5139.9097300351705, - 426.99929652009104, - 5161.714100036032, - 8883.84061255295, - 11379.202212740445, - 12505.726488131457, - 12298.463736118782, - 10934.792591597163, - 8744.584145923165, - 6216.354335265997, - 3699.001446023021, - 1511.247876180336, - -188.19047531001704, - -1462.8371517113535, - -2489.150918057091, - -3484.5630696639846, - -4636.530527084094, - -5982.191376806389, - -7459.926288788619, - -8863.92707212229, - -9913.112527940617, - -10405.79187196636, - -10242.755270560843, - -9467.852495134239, - -8264.316419985602, - -6931.369769113345, - -5710.671924994179, - -4761.611226124207, - -4108.7979309412785, - -3608.6589982581945, - -3035.7144463537043, - -2163.735288446547, - -872.9708150733726, - 801.2492878025104, - 2669.7513681271816, - 4398.279556809289, - 5742.175864351763, - 6586.617065651862, - 7102.0039547483475, - 7787.725874474862, - 9417.053199093976, - 12896.321975714383, - 19127.470233832155, - 28415.293606293533, - 40983.66743346309, - 56387.94202993793, - 73161.10925893635 - ], - "flow:J29:branch88_seg0": [ - 16.430181121742308, - 20.490211385925903, - 24.269562412105174, - 27.432262219565896, - 29.69849538548906, - 30.90319722171724, - 31.02021371096204, - 30.175297871352775, - 28.5250511137388, - 26.295113230719323, - 23.725255947336336, - 20.940568843781463, - 18.065218117005237, - 15.148030530489391, - 12.184050589813294, - 9.209939806194042, - 6.219890245982276, - 3.265389072855233, - 0.43864937077820343, - -2.205693608823958, - -4.581655739553499, - -6.645094390136272, - -8.391451480988508, - -9.832924173811985, - -11.010276871215, - -11.959436809940234, - -12.700030776200734, - -13.232269862664154, - -13.540368279309991, - -13.606688008830554, - -13.439169040797186, - -13.086165499373916, - -12.637509466712574, - -12.233972129975955, - -12.023887747866976, - -12.141249963308915, - -12.658751572571722, - -13.586754266054811, - -14.821156638377893, - -16.18641486507744, - -17.470795373974465, - -18.434777750513316, - -18.893413723237668, - -18.73471953321034, - -17.949515791447613, - -16.589651988528427, - -14.809330615587323, - -12.773897949907742, - -10.636522198491635, - -8.544093314363296, - -6.563928174166468, - -4.736026641116397, - -3.0682797485789504, - -1.549427861271317, - -0.19341269590421512, - 0.978446418784953, - 1.921056763667592, - 2.581847775598454, - 2.9244750168441076, - 2.9480426406422944, - 2.68331110789033, - 2.202866116579587, - 1.6163655273531414, - 1.0116840551810047, - 0.4720831673808765, - 0.04224413742645161, - -0.28243012177019944, - -0.5365334622461169, - -0.7712961250100295, - -1.033691008202866, - -1.343282510776477, - -1.690306877469093, - -2.0295127261406245, - -2.301459351006493, - -2.4518054848980575, - -2.4491380383379178, - -2.2953387107220125, - -2.0313156274127744, - -1.7183748356200905, - -1.4178977236178145, - -1.1776767308308695, - -1.0077897061779895, - -0.8831481490274475, - -0.7545032182058607, - -0.56634267435781, - -0.28399516680523484, - 0.09440394128690123, - 0.5310360981182584, - 0.9527124997474994, - 1.2963302383872874, - 1.5238434563843313, - 1.6587333950825727, - 1.8026401705136161, - 2.1252456841461322, - 2.8393188755920917, - 4.151546147611814, - 6.187494303756092, - 9.010635994631091, - 12.50145726239218, - 16.430181121742308 - ], - "pressure:J29:branch88_seg0": [ - 73161.10925893635, - 90178.53587962368, - 105728.18311420319, - 118272.61265015841, - 126849.01467242278, - 130882.92378119341, - 130371.23185848637, - 125903.58043675816, - 118288.4217264577, - 108444.0506254929, - 97348.16479773073, - 85491.28321253779, - 73295.60195830745, - 60975.96013269498, - 48445.932957922385, - 35909.709897273744, - 23330.26233010708, - 10904.971109141252, - -822.4433145918977, - -11732.408335118793, - -21484.32126515402, - -29851.00573383961, - -36907.15970247272, - -42705.47040276774, - -47421.395573292066, - -51217.86935629352, - -54139.41439900401, - -56171.74221044787, - -57242.58024055316, - -57290.19620052381, - -56365.1754880588, - -54733.34640386022, - -52817.9830833969, - -51221.47645509877, - -50592.27437756365, - -51460.248052282725, - -54039.105984902315, - -58313.31551840263, - -63760.18388943323, - -69531.48632323268, - -74748.59840369546, - -78410.25699852296, - -79784.7987940786, - -78457.93809567101, - -74593.3660378529, - -68382.20663657192, - -60494.84408488444, - -51788.97057713451, - -42746.919111840245, - -34004.19333071999, - -25823.60136895032, - -18245.4574020305, - -11375.696466891965, - -5139.9097300351705, - 426.99929652009104, - 5161.714100036032, - 8883.84061255295, - 11379.202212740445, - 12505.726488131457, - 12298.463736118782, - 10934.792591597163, - 8744.584145923165, - 6216.354335265997, - 3699.001446023021, - 1511.247876180336, - -188.19047531001704, - -1462.8371517113535, - -2489.150918057091, - -3484.5630696639846, - -4636.530527084094, - -5982.191376806389, - -7459.926288788619, - -8863.92707212229, - -9913.112527940617, - -10405.79187196636, - -10242.755270560843, - -9467.852495134239, - -8264.316419985602, - -6931.369769113345, - -5710.671924994179, - -4761.611226124207, - -4108.7979309412785, - -3608.6589982581945, - -3035.7144463537043, - -2163.735288446547, - -872.9708150733726, - 801.2492878025104, - 2669.7513681271816, - 4398.279556809289, - 5742.175864351763, - 6586.617065651862, - 7102.0039547483475, - 7787.725874474862, - 9417.053199093976, - 12896.321975714383, - 19127.470233832155, - 28415.293606293533, - 40983.66743346309, - 56387.94202993793, - 73161.10925893635 - ], - "flow:branch54_seg0:J30": [ - 140.97940573553603, - 159.0042878427228, - 168.66951503997288, - 169.28198849870486, - 161.73717358323188, - 147.4722937573231, - 128.60646633127948, - 107.98228696227227, - 88.0104213888235, - 69.07531539696933, - 52.77176385846637, - 38.25713457923729, - 24.673125837584674, - 11.942697075141597, - -1.2022540380755053, - -14.121053296742518, - -26.689248962246843, - -38.47905652881575, - -48.00545131565847, - -55.552606878680805, - -60.75221864912124, - -63.7765057270695, - -65.5026666574498, - -66.30686298227607, - -66.68877891071676, - -66.76001611639572, - -66.22353561786885, - -64.72273198449624, - -61.95571823375, - -57.91373132773414, - -53.046445659877904, - -48.48848955344442, - -45.32852739002698, - -44.887280400141556, - -48.02817583181801, - -54.84240339001821, - -64.44862658312523, - -75.46413336148949, - -85.88061054344928, - -93.23042823638094, - -96.27927586154178, - -93.86573387622362, - -86.05218370106036, - -73.81006103064627, - -59.25325033859682, - -43.506969356308, - -28.745229017365784, - -16.31192541788428, - -6.021275818179279, - 1.6112249788262134, - 7.52067509437205, - 12.432297556166885, - 16.446321106386705, - 20.08866637225039, - 22.88930574253276, - 24.290859650014003, - 23.962034137300318, - 21.529048742262354, - 17.162256867858957, - 11.478496004855366, - 5.4804821397733665, - -0.111419836964889, - -4.211971317417821, - -6.602879330446962, - -7.46473078526838, - -7.199025176613201, - -6.6619822418651236, - -6.5951523011732744, - -7.408461949556122, - -9.15324809360222, - -11.337884209089212, - -13.391092631261845, - -14.534246796180224, - -14.250889385951934, - -12.504016943356447, - -9.671047568418716, - -6.369460417713244, - -3.3876683006265256, - -1.4547248556393273, - -0.6441996872887938, - -0.8176565960593004, - -1.3902393214231743, - -1.579234398881527, - -0.7785507846551104, - 1.2442331920195904, - 4.249404500310032, - 7.478553497389897, - 10.18560853188537, - 11.502220876436576, - 11.288939071881162, - 10.103278102834068, - 9.210129217209847, - 10.438502225597956, - 15.704541376764197, - 26.483278336077106, - 43.59314686483629, - 65.48345754318078, - 91.43495198599294, - 117.9590291551755, - 140.97940573553603 - ], - "pressure:branch54_seg0:J30": [ - 181509.9708549473, - 197604.58285193844, - 204749.41183839922, - 199163.64874481884, - 184827.26341978653, - 164645.91783361495, - 140823.33468460583, - 114275.90361885788, - 92196.34860613632, - 71297.20780357077, - 52430.286998861986, - 37062.66938341344, - 20879.542507859904, - 5872.465066349424, - -9441.533633427505, - -25201.614453738923, - -39412.91079325533, - -52862.57187642546, - -62932.92827288873, - -69966.32589328408, - -75093.68620706625, - -77459.0855272924, - -78677.75229883529, - -79331.57808672384, - -79476.35204636618, - -79352.00195463725, - -78235.71362781493, - -75662.79411335012, - -71431.24127699732, - -66014.88745995532, - -59812.332162221086, - -54892.66808513724, - -52723.494140190145, - -54062.40505581244, - -60154.15253643383, - -70509.22081619814, - -83514.8981955952, - -96555.68306530052, - -108181.85460381114, - -114495.5903319523, - -114590.57767277873, - -108432.63551720929, - -95946.73633146229, - -78589.87999893393, - -60468.625828609394, - -42122.91523745078, - -24755.025620138797, - -11970.658416257458, - -1447.4956800512864, - 6531.94998168625, - 12140.193539332498, - 17882.010812903365, - 22170.281496792064, - 25768.894300893728, - 28797.170134763346, - 29303.787954336058, - 27558.21242918809, - 23412.655918777164, - 17213.769253893195, - 9595.437143785675, - 2699.534701920517, - -3168.916315876193, - -7277.9355834037015, - -8812.390989970278, - -8964.134780126518, - -8275.765440894755, - -7621.442628342739, - -7996.826524398508, - -9607.627726025707, - -12241.734180709522, - -14918.49872984639, - -16952.06366766102, - -17672.65078233379, - -16337.353492348924, - -13296.11896093456, - -9382.691895655913, - -5537.728399961103, - -2227.8605071822667, - -748.7383362333178, - -685.5559889475754, - -1270.0467345703248, - -1966.9125472750397, - -1768.3840254141408, - -48.48336853674413, - 3077.9374941031856, - 7205.534807289175, - 10884.751415440145, - 13391.928471106117, - 14105.63866145993, - 12872.114808694598, - 11099.958480561243, - 10766.569980313529, - 14177.283284841616, - 23533.752015826114, - 40016.0571630738, - 64766.41772234085, - 93355.46077434151, - 124868.04736019847, - 157879.84584058, - 181509.9708549473 - ], - "flow:J30:branch55_seg0": [ - 74.03822967044928, - 83.71863451806432, - 89.03122479367232, - 89.58413635372538, - 85.80706362704349, - 78.43599158132481, - 68.56497811706467, - 57.71914576085835, - 47.12098765690607, - 37.0558998801806, - 28.38108160842806, - 20.631887167169513, - 13.417357992929604, - 6.64936721557007, - -0.3240782145044451, - -7.158521333562643, - -13.843284927751894, - -20.11814844795976, - -25.206328470948648, - -29.256336916085452, - -32.064512575937385, - -33.71111848569849, - -34.658137854052406, - -35.10195375514834, - -35.31189608581095, - -35.35686053903476, - -35.08427911061829, - -34.311021295429164, - -32.87364716515081, - -30.762261780971517, - -28.200879847723435, - -25.78160524180113, - -24.069374891660743, - -23.768913127888823, - -25.34444316215416, - -28.864282449822415, - -33.87107043814472, - -39.678998950028934, - -45.19987407367951, - -49.15780252478006, - -50.87279888493268, - -49.718388948432704, - -45.696151547180996, - -39.315250527453834, - -31.67323312423902, - -23.368312621830814, - -15.538129178069418, - -8.918855696316589, - -3.4209965971216154, - 0.6695609824257852, - 3.8305767833045343, - 6.4572073002598716, - 8.595924148523771, - 10.535757884645188, - 12.03598055702275, - 12.811172537309165, - 12.681129916448185, - 11.445761723349216, - 9.180106291128862, - 6.211978828909738, - 3.0425219236050918, - 0.06998304821311756, - -2.1270159655709233, - -3.43460267779192, - -3.9273652807036137, - -3.810583033346893, - -3.533193625122797, - -3.487682269607015, - -3.8990869793237883, - -4.802195661953628, - -5.947329554410157, - -7.03619358737932, - -7.661735076223925, - -7.5421742706580295, - -6.6525687723471005, - -5.178655037524513, - -3.4451948571896196, - -1.8603546362497276, - -0.8166311064128473, - -0.36068345133268465, - -0.4298842934710309, - -0.7242166448919757, - -0.8326641401485522, - -0.43319457996598154, - 0.6095287103704691, - 2.1734662527268487, - 3.8787984842922114, - 5.325899229348897, - 6.0516847254277675, - 5.973373661850953, - 5.36791539393282, - 4.885976830637133, - 5.485717539672606, - 8.174766972434815, - 13.755905373980571, - 22.665979133708568, - 34.1331336521002, - 47.759316306679025, - 61.794483186761056, - 74.03822967044928 - ], - "pressure:J30:branch55_seg0": [ - 181509.9708549473, - 197604.58285193844, - 204749.41183839922, - 199163.64874481884, - 184827.26341978653, - 164645.91783361495, - 140823.33468460583, - 114275.90361885788, - 92196.34860613632, - 71297.20780357077, - 52430.286998861986, - 37062.66938341344, - 20879.542507859904, - 5872.465066349424, - -9441.533633427505, - -25201.614453738923, - -39412.91079325533, - -52862.57187642546, - -62932.92827288873, - -69966.32589328408, - -75093.68620706625, - -77459.0855272924, - -78677.75229883529, - -79331.57808672384, - -79476.35204636618, - -79352.00195463725, - -78235.71362781493, - -75662.79411335012, - -71431.24127699732, - -66014.88745995532, - -59812.332162221086, - -54892.66808513724, - -52723.494140190145, - -54062.40505581244, - -60154.15253643383, - -70509.22081619814, - -83514.8981955952, - -96555.68306530052, - -108181.85460381114, - -114495.5903319523, - -114590.57767277873, - -108432.63551720929, - -95946.73633146229, - -78589.87999893393, - -60468.625828609394, - -42122.91523745078, - -24755.025620138797, - -11970.658416257458, - -1447.4956800512864, - 6531.94998168625, - 12140.193539332498, - 17882.010812903365, - 22170.281496792064, - 25768.894300893728, - 28797.170134763346, - 29303.787954336058, - 27558.21242918809, - 23412.655918777164, - 17213.769253893195, - 9595.437143785675, - 2699.534701920517, - -3168.916315876193, - -7277.9355834037015, - -8812.390989970278, - -8964.134780126518, - -8275.765440894755, - -7621.442628342739, - -7996.826524398508, - -9607.627726025707, - -12241.734180709522, - -14918.49872984639, - -16952.06366766102, - -17672.65078233379, - -16337.353492348924, - -13296.11896093456, - -9382.691895655913, - -5537.728399961103, - -2227.8605071822667, - -748.7383362333178, - -685.5559889475754, - -1270.0467345703248, - -1966.9125472750397, - -1768.3840254141408, - -48.48336853674413, - 3077.9374941031856, - 7205.534807289175, - 10884.751415440145, - 13391.928471106117, - 14105.63866145993, - 12872.114808694598, - 11099.958480561243, - 10766.569980313529, - 14177.283284841616, - 23533.752015826114, - 40016.0571630738, - 64766.41772234085, - 93355.46077434151, - 124868.04736019847, - 157879.84584058, - 181509.9708549473 - ], - "flow:J30:branch104_seg0": [ - 36.26777190168887, - 40.80575730830875, - 43.17921308520536, - 43.22579404790368, - 41.194885523932264, - 37.464803960386924, - 32.59078470089791, - 27.293630411900605, - 22.205293411782616, - 17.39146717659823, - 13.25428737054454, - 9.581784310894779, - 6.13004202476296, - 2.8986814859284444, - -0.4457839350452664, - -3.739165274741786, - -6.92825962528129, - -9.919734643069736, - -12.327957032440649, - -14.228765452622639, - -15.530818718714023, - -16.282724268455745, - -16.709711398445783, - -16.908173113773017, - -17.003711631130525, - -17.020490641890614, - -16.8805843821315, - -16.490403516190504, - -15.77440754075004, - -14.73200907643055, - -13.484529243071133, - -12.324667535484085, - -11.535411775144564, - -11.452355485067073, - -12.292677985966346, - -14.071421880820344, - -16.5593151364629, - -19.384848273560316, - -22.04509968360694, - -23.896591698264498, - -24.63624993524418, - -23.97011799159646, - -21.928204643459775, - -18.75939483470875, - -15.013397641032782, - -10.976231138293032, - -7.2100714011758695, - -4.047618481996942, - -1.4381486868080438, - 0.4911528128357187, - 1.9876543006418517, - 3.2312033864772105, - 4.251568769746447, - 5.177743474140419, - 5.885787628833119, - 6.230023037469217, - 6.1271984176550225, - 5.4825902045368915, - 4.346282086162574, - 2.8760515584577826, - 1.3399614354655132, - -0.08475650757254875, - -1.121185151297895, - -1.7144173391944535, - -1.918977537817069, - -1.8404042699898964, - -1.699855568922846, - -1.686841534437285, - -1.9027068109636338, - -2.3575044997301164, - -2.9209777522754226, - -3.4453071516677247, - -3.7291526688522136, - -3.644025932602653, - -3.182622004586659, - -2.4473697673021926, - -1.596859583091068, - -0.8372013105179605, - -0.3514110319388149, - -0.15555745620066133, - -0.20982073269849918, - -0.3603136432396574, - -0.4053968810192837, - -0.1905499217516724, - 0.3385602412449549, - 1.1183710489877405, - 1.9459760454485477, - 2.632563562521779, - 2.956724307370581, - 2.88736205152444, - 2.5744041185894333, - 2.3492791664584662, - 2.683877098712974, - 4.071162218942378, - 6.878466956167085, - 11.313958341449933, - 16.959634688310956, - 23.638131850837492, - 30.41460834031185, - 36.26777190168887 - ], - "pressure:J30:branch104_seg0": [ - 181509.9708549473, - 197604.58285193844, - 204749.41183839922, - 199163.64874481884, - 184827.26341978653, - 164645.91783361495, - 140823.33468460583, - 114275.90361885788, - 92196.34860613632, - 71297.20780357077, - 52430.286998861986, - 37062.66938341344, - 20879.542507859904, - 5872.465066349424, - -9441.533633427505, - -25201.614453738923, - -39412.91079325533, - -52862.57187642546, - -62932.92827288873, - -69966.32589328408, - -75093.68620706625, - -77459.0855272924, - -78677.75229883529, - -79331.57808672384, - -79476.35204636618, - -79352.00195463725, - -78235.71362781493, - -75662.79411335012, - -71431.24127699732, - -66014.88745995532, - -59812.332162221086, - -54892.66808513724, - -52723.494140190145, - -54062.40505581244, - -60154.15253643383, - -70509.22081619814, - -83514.8981955952, - -96555.68306530052, - -108181.85460381114, - -114495.5903319523, - -114590.57767277873, - -108432.63551720929, - -95946.73633146229, - -78589.87999893393, - -60468.625828609394, - -42122.91523745078, - -24755.025620138797, - -11970.658416257458, - -1447.4956800512864, - 6531.94998168625, - 12140.193539332498, - 17882.010812903365, - 22170.281496792064, - 25768.894300893728, - 28797.170134763346, - 29303.787954336058, - 27558.21242918809, - 23412.655918777164, - 17213.769253893195, - 9595.437143785675, - 2699.534701920517, - -3168.916315876193, - -7277.9355834037015, - -8812.390989970278, - -8964.134780126518, - -8275.765440894755, - -7621.442628342739, - -7996.826524398508, - -9607.627726025707, - -12241.734180709522, - -14918.49872984639, - -16952.06366766102, - -17672.65078233379, - -16337.353492348924, - -13296.11896093456, - -9382.691895655913, - -5537.728399961103, - -2227.8605071822667, - -748.7383362333178, - -685.5559889475754, - -1270.0467345703248, - -1966.9125472750397, - -1768.3840254141408, - -48.48336853674413, - 3077.9374941031856, - 7205.534807289175, - 10884.751415440145, - 13391.928471106117, - 14105.63866145993, - 12872.114808694598, - 11099.958480561243, - 10766.569980313529, - 14177.283284841616, - 23533.752015826114, - 40016.0571630738, - 64766.41772234085, - 93355.46077434151, - 124868.04736019847, - 157879.84584058, - 181509.9708549473 - ], - "flow:J30:branch141_seg0": [ - 30.673404163398104, - 34.47989601634892, - 36.45907716109419, - 36.47205809707699, - 34.735224432253325, - 31.571498215612664, - 27.45070351331492, - 22.96951078951244, - 18.68414032013506, - 14.627948340192738, - 11.136394879490723, - 8.04346310116903, - 5.1257258198904285, - 2.3946483736447743, - -0.43239188852410476, - -3.2233666884423777, - -5.917704409217205, - -8.441173437788596, - -10.47116581226938, - -12.067504509972535, - -13.156887354473927, - -13.782662972912242, - -14.13481740495229, - -14.296736113356092, - -14.373171193775823, - -14.382664935472286, - -14.258672125119032, - -13.921307172879883, - -13.307663527852666, - -12.419460470331684, - -11.361036569082758, - -10.38221677615932, - -9.723740723220184, - -9.666011787186457, - -10.39105468369782, - -11.906699059375448, - -14.018241008518396, - -16.400286137900046, - -18.635636786164085, - -20.176034013336682, - -20.770227041365082, - -20.17722693619513, - -18.427827510419647, - -15.73541566848357, - -12.566619573324923, - -9.162425596184153, - -5.997028438120506, - -3.3454512395707487, - -1.1621305342495805, - 0.45051118356467496, - 1.7024440104256768, - 2.743886869429812, - 3.5988281881164834, - 4.37516501346481, - 4.9675375566769295, - 5.249664075235498, - 5.153705803197206, - 4.600696814376455, - 3.6358684905675087, - 2.3904656174876084, - 1.0979987807020124, - -0.09664637760538441, - -0.9637702005490855, - -1.4538593134605817, - -1.6183879667477392, - -1.5480378732767397, - -1.4289330478197055, - -1.4206284971287824, - -1.6066681592685574, - -1.9935479319183447, - -2.469576902403512, - -2.9095918922147708, - -3.1433590511040066, - -3.064689182691323, - -2.66882616642265, - -2.0450227635921086, - -1.3274059774325262, - -0.6901123538588554, - -0.2866827172876569, - -0.12795877975545755, - -0.17795156988979086, - -0.30570903329154775, - -0.3411733777137204, - -0.15480628293748439, - 0.2961442404041517, - 0.9575671985954977, - 1.6537789676492245, - 2.2271457400148083, - 2.4938118436383, - 2.4282033585056455, - 2.16095859031193, - 1.974873220114296, - 2.2689075872122806, - 3.45861218538702, - 5.848906005929583, - 9.613209389678177, - 14.39068920276947, - 20.037503828476055, - 25.749937628102067, - 30.673404163398104 - ], - "pressure:J30:branch141_seg0": [ - 181509.9708549473, - 197604.58285193844, - 204749.41183839922, - 199163.64874481884, - 184827.26341978653, - 164645.91783361495, - 140823.33468460583, - 114275.90361885788, - 92196.34860613632, - 71297.20780357077, - 52430.286998861986, - 37062.66938341344, - 20879.542507859904, - 5872.465066349424, - -9441.533633427505, - -25201.614453738923, - -39412.91079325533, - -52862.57187642546, - -62932.92827288873, - -69966.32589328408, - -75093.68620706625, - -77459.0855272924, - -78677.75229883529, - -79331.57808672384, - -79476.35204636618, - -79352.00195463725, - -78235.71362781493, - -75662.79411335012, - -71431.24127699732, - -66014.88745995532, - -59812.332162221086, - -54892.66808513724, - -52723.494140190145, - -54062.40505581244, - -60154.15253643383, - -70509.22081619814, - -83514.8981955952, - -96555.68306530052, - -108181.85460381114, - -114495.5903319523, - -114590.57767277873, - -108432.63551720929, - -95946.73633146229, - -78589.87999893393, - -60468.625828609394, - -42122.91523745078, - -24755.025620138797, - -11970.658416257458, - -1447.4956800512864, - 6531.94998168625, - 12140.193539332498, - 17882.010812903365, - 22170.281496792064, - 25768.894300893728, - 28797.170134763346, - 29303.787954336058, - 27558.21242918809, - 23412.655918777164, - 17213.769253893195, - 9595.437143785675, - 2699.534701920517, - -3168.916315876193, - -7277.9355834037015, - -8812.390989970278, - -8964.134780126518, - -8275.765440894755, - -7621.442628342739, - -7996.826524398508, - -9607.627726025707, - -12241.734180709522, - -14918.49872984639, - -16952.06366766102, - -17672.65078233379, - -16337.353492348924, - -13296.11896093456, - -9382.691895655913, - -5537.728399961103, - -2227.8605071822667, - -748.7383362333178, - -685.5559889475754, - -1270.0467345703248, - -1966.9125472750397, - -1768.3840254141408, - -48.48336853674413, - 3077.9374941031856, - 7205.534807289175, - 10884.751415440145, - 13391.928471106117, - 14105.63866145993, - 12872.114808694598, - 11099.958480561243, - 10766.569980313529, - 14177.283284841616, - 23533.752015826114, - 40016.0571630738, - 64766.41772234085, - 93355.46077434151, - 124868.04736019847, - 157879.84584058, - 181509.9708549473 - ], - "flow:branch55_seg0:J31": [ - 73.99750438373884, - 83.69982898263866, - 89.02904320492023, - 89.59808869165138, - 85.84092435685275, - 78.48204468642352, - 68.60829806490567, - 57.780332270875455, - 47.16700821446734, - 37.085388183074315, - 28.420494557894674, - 20.659574261710816, - 13.446564751986374, - 6.678966769221772, - -0.30598325604885135, - -7.129090726458882, - -13.817953968653985, - -20.1081876223685, - -25.19251145404501, - -29.247153858458567, - -32.06187129773045, - -33.70725196138812, - -34.65797588958647, - -35.10198913727848, - -35.311037334399046, - -35.35800391737983, - -35.08710877764228, - -34.316899543296735, - -32.883132455305535, - -30.773967254975243, - -28.211945838813023, - -25.790851650279684, - -24.07011489976965, - -23.761388725335358, - -25.32894855591798, - -28.844672484119418, - -33.840947698389044, - -39.65773569577963, - -45.184780245437096, - -49.15086742577997, - -50.88082552317455, - -49.737472509165876, - -45.71958343490526, - -39.33851737421269, - -31.702419237307424, - -23.397589587943518, - -15.55816324440507, - -8.940113478435467, - -3.433234049451829, - 0.6595131766796544, - 3.8178674800391725, - 6.448711041281418, - 8.587283116292676, - 10.529435700335222, - 12.031391070812925, - 12.810931181555002, - 12.686761159662481, - 11.45686642696837, - 9.192079591344712, - 6.229734751209101, - 3.055835029542608, - 0.07490872576033353, - -2.1207356049146777, - -3.4327186600009143, - -3.929519522701149, - -3.811927555398891, - -3.5331904088969193, - -3.485949982581922, - -3.895751486463955, - -4.798547731132355, - -5.943632104728374, - -7.033469137777006, - -7.6628488253965505, - -7.545350419377578, - -6.6586647029604995, - -5.1857057137173, - -3.4524668476124885, - -1.865032865067087, - -0.8188777289295668, - -0.3599716362515962, - -0.4279731718687852, - -0.7236895105604555, - -0.8343646184929143, - -0.4383461752264794, - 0.6030479490129707, - 2.164294230197527, - 3.872351690457392, - 5.325353139079935, - 6.052393484961981, - 5.97580573501769, - 5.370373993208323, - 4.883964121222345, - 5.4757279220737916, - 8.152779617587127, - 13.723842826314007, - 22.628393153391478, - 34.0883953660612, - 47.6979586093555, - 61.75141182480916, - 73.99750438373884 - ], - "pressure:branch55_seg0:J31": [ - 172625.00493719202, - 190971.37575913448, - 200229.90322588498, - 197672.79992401405, - 186116.0156361859, - 167832.01782568856, - 145078.29512889474, - 119832.65872011188, - 97059.69930604112, - 75694.10583937295, - 56809.934187573286, - 40661.90763874104, - 24707.084768456603, - 9715.352353598315, - -5627.308247103649, - -20902.88809821146, - -35392.58207453608, - -49070.998363179955, - -59476.89323678484, - -67312.21716597019, - -72919.16241055712, - -75774.80815472327, - -77387.86775218327, - -78165.94697161765, - -78431.31600103258, - -78425.80998993097, - -77542.722243095, - -75373.1418215154, - -71638.34627872644, - -66598.12117997138, - -60653.774181439825, - -55557.08616130015, - -52670.32955914829, - -53058.93636102554, - -57954.60751890776, - -67130.11922131313, - -79166.19792722177, - -92165.1859294962, - -104007.49688347727, - -111401.58063173832, - -113140.3218706831, - -108594.30596437327, - -97690.55714404273, - -81705.80727671561, - -64339.45662035606, - -46104.520721062436, - -28724.665743927937, - -15329.339179063705, - -4093.982427839016, - 4284.818818323747, - 10378.079976855537, - 16202.44552765306, - 20634.13407732454, - 24488.152921519704, - 27668.186668125643, - 28720.462816508112, - 27642.64670868084, - 24176.110620140247, - 18525.110782576932, - 11447.590737618233, - 4457.382206515643, - -1712.6731257774122, - -6108.5583317446435, - -8253.06118124872, - -8815.75176083896, - -8303.614596318674, - -7656.120654387989, - -7817.430604360112, - -9117.73489192126, - -11482.550424941306, - -14065.526392028369, - -16244.066950120845, - -17276.520514300933, - -16407.10639846982, - -13856.300291262136, - -10252.225550827623, - -6457.892667374305, - -3049.7953977579687, - -1211.383439260451, - -739.2049927444386, - -1111.266767395571, - -1795.9623641383446, - -1801.6032883689145, - -477.30689918664575, - 2277.114318211508, - 6072.7851316954375, - 9817.422371419056, - 12638.800236008567, - 13730.183585206107, - 12962.81902619804, - 11370.391502558989, - 10701.436639883541, - 13163.443038312747, - 20965.195548272954, - 35545.711076381114, - 58100.42776891173, - 85006.58140934988, - 115475.8175452145, - 147841.0414287296, - 172625.00493719202 - ], - "flow:J31:branch56_seg0": [ - 31.972489552001775, - 36.04266647189618, - 38.216661523462314, - 38.32766522465131, - 36.60801919052325, - 33.37396598037685, - 29.08972088981724, - 24.43137220397808, - 19.906599109261716, - 15.606326002045535, - 11.9319569946675, - 8.641943067662442, - 5.562669772968013, - 2.6785010453632756, - -0.3165512757213729, - -3.2342958170121787, - -6.083340398180084, - -8.771655127870405, - -10.913836039785561, - -12.614363681616597, - -13.791581991902468, - -14.463458122540299, - -14.8522968784814, - -15.031307453209521, - -15.113267078392862, - -15.129200888560964, - -15.004125076715928, - -14.659758721215276, - -14.028070521850008, - -13.108868607408754, - -12.001044748835907, - -10.971287876112184, - -10.257817647856394, - -10.163706437544711, - -10.885420857592566, - -12.44206945854048, - -14.61518320955266, - -17.118582036033473, - -19.474977787096915, - -21.123744757873872, - -21.79945647579255, - -21.235412393182596, - -19.441162645692557, - -16.64546091689667, - -13.352496454598699, - -9.792416816132839, - -6.444899907959911, - -3.6537263737720407, - -1.3283938262807748, - 0.38975646433309147, - 1.711306317477059, - 2.8276093571510965, - 3.7301957428634354, - 4.552403350841004, - 5.1850261207904085, - 5.496870940204349, - 5.4185214884908355, - 4.864090323216122, - 3.868330041563483, - 2.5834850248671506, - 1.223852557797362, - -0.04544809907684171, - -0.9635275764171328, - -1.4981780460964422, - -1.6911638668811233, - -1.6266860879224891, - -1.5039171172702441, - -1.491301653837229, - -1.6793800781442119, - -2.078740125224042, - -2.5733681748682193, - -3.0352966599466473, - -3.292378822438808, - -3.2213024085972477, - -2.821288783012915, - -2.1770718019831516, - -1.4314927050782844, - -0.7564310297526612, - -0.3244525929132487, - -0.1449268768000655, - -0.1859834704258817, - -0.3172115011122934, - -0.358430566566494, - -0.1745025631544466, - 0.2880685525333555, - 0.9689477288505838, - 1.7009604617373, - 2.3144640996047423, - 2.60566311479793, - 2.5505515769578215, - 2.2796344900403644, - 2.078870619066426, - 2.364890742526018, - 3.5693589029890154, - 6.0293199597954, - 9.932794971896824, - 14.898511646316933, - 20.758128399355577, - 26.794751400033128, - 31.972489552001775 - ], - "pressure:J31:branch56_seg0": [ - 172625.00493719202, - 190971.37575913448, - 200229.90322588498, - 197672.79992401405, - 186116.0156361859, - 167832.01782568856, - 145078.29512889474, - 119832.65872011188, - 97059.69930604112, - 75694.10583937295, - 56809.934187573286, - 40661.90763874104, - 24707.084768456603, - 9715.352353598315, - -5627.308247103649, - -20902.88809821146, - -35392.58207453608, - -49070.998363179955, - -59476.89323678484, - -67312.21716597019, - -72919.16241055712, - -75774.80815472327, - -77387.86775218327, - -78165.94697161765, - -78431.31600103258, - -78425.80998993097, - -77542.722243095, - -75373.1418215154, - -71638.34627872644, - -66598.12117997138, - -60653.774181439825, - -55557.08616130015, - -52670.32955914829, - -53058.93636102554, - -57954.60751890776, - -67130.11922131313, - -79166.19792722177, - -92165.1859294962, - -104007.49688347727, - -111401.58063173832, - -113140.3218706831, - -108594.30596437327, - -97690.55714404273, - -81705.80727671561, - -64339.45662035606, - -46104.520721062436, - -28724.665743927937, - -15329.339179063705, - -4093.982427839016, - 4284.818818323747, - 10378.079976855537, - 16202.44552765306, - 20634.13407732454, - 24488.152921519704, - 27668.186668125643, - 28720.462816508112, - 27642.64670868084, - 24176.110620140247, - 18525.110782576932, - 11447.590737618233, - 4457.382206515643, - -1712.6731257774122, - -6108.5583317446435, - -8253.06118124872, - -8815.75176083896, - -8303.614596318674, - -7656.120654387989, - -7817.430604360112, - -9117.73489192126, - -11482.550424941306, - -14065.526392028369, - -16244.066950120845, - -17276.520514300933, - -16407.10639846982, - -13856.300291262136, - -10252.225550827623, - -6457.892667374305, - -3049.7953977579687, - -1211.383439260451, - -739.2049927444386, - -1111.266767395571, - -1795.9623641383446, - -1801.6032883689145, - -477.30689918664575, - 2277.114318211508, - 6072.7851316954375, - 9817.422371419056, - 12638.800236008567, - 13730.183585206107, - 12962.81902619804, - 11370.391502558989, - 10701.436639883541, - 13163.443038312747, - 20965.195548272954, - 35545.711076381114, - 58100.42776891173, - 85006.58140934988, - 115475.8175452145, - 147841.0414287296, - 172625.00493719202 - ], - "flow:J31:branch84_seg0": [ - 42.02501483173707, - 47.65716251074205, - 50.81238168145731, - 51.270423467001265, - 49.23290516633022, - 45.10807870604713, - 39.51857717508582, - 33.34896006689645, - 27.260409105206854, - 21.479062181029022, - 16.488537563227304, - 12.017631194047455, - 7.88389497901823, - 4.000465723856813, - 0.0105680196683951, - -3.8947949094450385, - -7.734613570472788, - -11.336532494497442, - -14.278675414260503, - -16.632790176842292, - -18.270289305827127, - -19.243793838849903, - -19.80567901110535, - -20.070681684069356, - -20.197770256005462, - -20.22880302882101, - -20.082983700926523, - -19.65714082208077, - -18.85506193345523, - -17.665098647567063, - -16.210901089975653, - -14.819563774168044, - -13.812297251912433, - -13.597682287790208, - -14.443527698325003, - -16.402603025578966, - -19.225764488835562, - -22.53915365974648, - -25.709802458340075, - -28.027122667906617, - -29.08136904738208, - -28.502060115983202, - -26.278420789212934, - -22.69305645731604, - -18.349922782708752, - -13.605172771810635, - -9.113263336445163, - -5.286387104663414, - -2.1048402231710486, - 0.2697567123465764, - 2.10656116256212, - 3.621101684130336, - 4.857087373429233, - 5.97703234949421, - 6.846364950022541, - 7.314060241350684, - 7.268239671171526, - 6.59277610375222, - 5.323749549781386, - 3.646249726341784, - 1.8319824717454114, - 0.12035682483727256, - -1.157208028497635, - -1.934540613904524, - -2.2383556558201514, - -2.185241467476295, - -2.0292732916266916, - -1.9946483287447785, - -2.2163714083196933, - -2.7198076059082763, - -3.3702639298601866, - -3.9981724778304133, - -4.370470002957765, - -4.324048010780303, - -3.837375919947584, - -3.0086339117341274, - -2.0209741425341985, - -1.1086018353144522, - -0.49442513601634996, - -0.215044759451538, - -0.24198970144289317, - -0.4064780094481422, - -0.4759340519264352, - -0.2638436120720203, - 0.3149793964795957, - 1.19534650134693, - 2.1713912287201023, - 3.0108890394752224, - 3.446730370164044, - 3.4252541580599054, - 3.0907395031679727, - 2.805093502155907, - 3.110837179547706, - 4.583420714598023, - 7.6945228665185175, - 12.695598181494676, - 19.189883719744085, - 26.939830210000068, - 34.95666042477621, - 42.02501483173707 - ], - "pressure:J31:branch84_seg0": [ - 172625.00493719202, - 190971.37575913448, - 200229.90322588498, - 197672.79992401405, - 186116.0156361859, - 167832.01782568856, - 145078.29512889474, - 119832.65872011188, - 97059.69930604112, - 75694.10583937295, - 56809.934187573286, - 40661.90763874104, - 24707.084768456603, - 9715.352353598315, - -5627.308247103649, - -20902.88809821146, - -35392.58207453608, - -49070.998363179955, - -59476.89323678484, - -67312.21716597019, - -72919.16241055712, - -75774.80815472327, - -77387.86775218327, - -78165.94697161765, - -78431.31600103258, - -78425.80998993097, - -77542.722243095, - -75373.1418215154, - -71638.34627872644, - -66598.12117997138, - -60653.774181439825, - -55557.08616130015, - -52670.32955914829, - -53058.93636102554, - -57954.60751890776, - -67130.11922131313, - -79166.19792722177, - -92165.1859294962, - -104007.49688347727, - -111401.58063173832, - -113140.3218706831, - -108594.30596437327, - -97690.55714404273, - -81705.80727671561, - -64339.45662035606, - -46104.520721062436, - -28724.665743927937, - -15329.339179063705, - -4093.982427839016, - 4284.818818323747, - 10378.079976855537, - 16202.44552765306, - 20634.13407732454, - 24488.152921519704, - 27668.186668125643, - 28720.462816508112, - 27642.64670868084, - 24176.110620140247, - 18525.110782576932, - 11447.590737618233, - 4457.382206515643, - -1712.6731257774122, - -6108.5583317446435, - -8253.06118124872, - -8815.75176083896, - -8303.614596318674, - -7656.120654387989, - -7817.430604360112, - -9117.73489192126, - -11482.550424941306, - -14065.526392028369, - -16244.066950120845, - -17276.520514300933, - -16407.10639846982, - -13856.300291262136, - -10252.225550827623, - -6457.892667374305, - -3049.7953977579687, - -1211.383439260451, - -739.2049927444386, - -1111.266767395571, - -1795.9623641383446, - -1801.6032883689145, - -477.30689918664575, - 2277.114318211508, - 6072.7851316954375, - 9817.422371419056, - 12638.800236008567, - 13730.183585206107, - 12962.81902619804, - 11370.391502558989, - 10701.436639883541, - 13163.443038312747, - 20965.195548272954, - 35545.711076381114, - 58100.42776891173, - 85006.58140934988, - 115475.8175452145, - 147841.0414287296, - 172625.00493719202 - ], - "flow:branch57_seg0:J32": [ - 151.39528403289984, - 170.18756741275422, - 180.15631670515018, - 180.49224637590385, - 172.22025536603326, - 156.89776158446384, - 136.87386568749412, - 114.87089992401063, - 93.77559344151116, - 73.81872865956908, - 56.39486771100469, - 40.9927125522198, - 26.353374145344038, - 12.652689924766257, - -1.4319932624676504, - -15.41689157177033, - -28.78147851879984, - -41.35696653347542, - -51.47146074285068, - -59.45421362461783, - -64.96772172768476, - -68.1983302625339, - -70.06546939272383, - -70.97585395945364, - -71.43740344531983, - -71.53055993490617, - -70.94426019031951, - -69.2804328441589, - -66.2586847037491, - -61.879255448397664, - -56.69197318783869, - -51.87359263075254, - -48.67147844429767, - -48.391694314958684, - -51.95713868228643, - -59.36816344700067, - -69.75212444934408, - -81.37363852855172, - -92.34295387267372, - -99.88737541247353, - -102.81234683322828, - -99.924946490633, - -91.45068049372667, - -78.27765544302753, - -62.80660910803996, - -46.1185293272912, - -30.52013575681168, - -17.40895140379089, - -6.543265075475173, - 1.5523683312540992, - 7.9069825644649345, - 13.190070206828024, - 17.559664049590626, - 21.463644882741466, - 24.45666404908137, - 25.89815676835532, - 25.452616756010993, - 22.75904537988319, - 18.05543160399009, - 11.944626017487618, - 5.615328098742883, - -0.22218425864647667, - -4.51131823566936, - -6.952482404199363, - -7.821351899314928, - -7.553303242312693, - -7.042548992991305, - -7.063061216310985, - -8.008246619571732, - -9.923656555617974, - -12.245355317158392, - -14.388244437627163, - -15.52123853636956, - -15.139507142981671, - -13.201822616549451, - -10.17179183566538, - -6.670500629009926, - -3.5673342676906166, - -1.5785158701198905, - -0.7913209725954284, - -0.9968899468296136, - -1.5718603296692972, - -1.6959596695260393, - -0.738586835864114, - 1.491933079360321, - 4.748564376166656, - 8.150637940678854, - 10.936340340132377, - 12.240936571071037, - 11.93993611774282, - 10.673318964711724, - 9.843934958391184, - 11.378425126891033, - 17.342943841849745, - 29.113093067636676, - 47.70494267533106, - 71.14320839823657, - 98.93962276092897, - 127.05881241371927, - 151.39528403289984 - ], - "pressure:branch57_seg0:J32": [ - 192501.69511036042, - 205667.74849694726, - 210073.3173908585, - 200650.09101053196, - 182860.9845546781, - 160167.770386033, - 134948.51557698287, - 106809.05743599513, - 85682.2215516229, - 65373.2861452402, - 46550.020250421396, - 32307.854208918565, - 15760.532592675929, - 847.5840576363256, - -14440.834319207432, - -30866.218135472383, - -44444.8979300185, - -57636.65761872505, - -67240.37540726578, - -73216.0463804245, - -77707.09835867291, - -79457.85282017862, - -80182.19474404442, - -80697.07582336265, - -80703.61058062366, - -80419.0280587457, - -79016.36461056572, - -75920.9724621672, - -71073.139133876, - -65142.13063856918, - -58654.401160978785, - -53936.099373504876, - -52709.98256006246, - -55311.122794148505, - -62993.07841946498, - -74878.96587064897, - -89178.43707350438, - -102139.11230369977, - -113502.91673799932, - -118278.14254841354, - -116232.58365658691, - -107909.89514747768, - -93507.6841305822, - -74418.17948640628, - -55412.280288719405, - -36994.57249958005, - -19773.070974297894, - -7759.8931323560155, - 1825.8481953290434, - 9287.824666262248, - 14349.831719338725, - 19903.629227939262, - 24097.21042809619, - 27380.38188116107, - 30185.137504290935, - 29992.349386805236, - 27387.3705753761, - 22338.79470828787, - 15435.236527277688, - 7101.792332514177, - 381.2314023058438, - -5107.581486073555, - -8801.638436453273, - -9494.875545047706, - -9120.47803415642, - -8208.654247203429, - -7558.943669929475, - -8228.287341426863, - -10226.954085045129, - -13200.06996531942, - -15980.362776133048, - -17818.732555704846, - -18118.700368487986, - -16206.873165246041, - -12541.696690454566, - -8267.170048789078, - -4336.998726077558, - -1204.0344880121036, - -157.99738443765574, - -618.471756215275, - -1483.5876833670225, - -2190.6519235066867, - -1720.3625540800417, - 531.2028181022541, - 4137.876379413096, - 8710.294561895584, - 12266.207929083825, - 14364.953729028226, - 14554.268736156393, - 12709.639005335292, - 10714.722964428067, - 10851.53958664579, - 15497.944709572475, - 26904.591532355047, - 45695.162865418686, - 73211.73210106544, - 103801.76107371708, - 136679.65258190923, - 170102.99880852818, - 192501.69511036042 - ], - "flow:J32:branch58_seg0": [ - 51.722743782164954, - 57.583492204836325, - 60.30396774123164, - 59.71546705928657, - 56.30357788642484, - 50.67178609836315, - 43.62187623466576, - 36.11653356030225, - 29.151408073453208, - 22.612199251519563, - 17.029505584300516, - 12.130196461613886, - 7.423373306791825, - 3.013927762558483, - -1.5941420030475135, - -6.172915623857102, - -10.528255065689372, - -14.597451866896037, - -17.79046660870957, - -20.247855112619984, - -21.87858110794339, - -22.75664390008512, - -23.23029382015466, - -23.43084564890841, - -23.51999084794594, - -23.509228400754978, - -23.266926985156722, - -22.650146232800903, - -21.563392616272587, - -20.027467105062655, - -18.241028737038835, - -16.652017088434185, - -15.671777741028889, - -15.748934392539333, - -17.1693361836688, - -19.88981442195059, - -23.54783848461896, - -27.526027574012794, - -31.159290443285165, - -33.49022745665561, - -34.167870100643455, - -32.841182140816, - -29.62682441857515, - -24.913849255461457, - -19.556783144035997, - -13.916820622657113, - -8.779015798416175, - -4.589603913906763, - -1.1771922462195217, - 1.2921240604931403, - 3.210063763603325, - 4.83424945401304, - 6.17167287345799, - 7.398277505049363, - 8.315188312050587, - 8.683078486702728, - 8.406447669665399, - 7.364243284217063, - 5.659028427027342, - 3.5224841666819007, - 1.3863617933826846, - -0.5345467682550044, - -1.87266378106984, - -2.5537045494005977, - -2.717224859247216, - -2.5272707886515775, - -2.305963554877779, - -2.3165083937232014, - -2.674358753688616, - -3.367301102291244, - -4.17714554351275, - -4.88945086839004, - -5.217181927581559, - -4.999311021768781, - -4.25248257881273, - -3.158829713281267, - -1.9506760351585006, - -0.9234986487970411, - -0.32647985171013094, - -0.1450479465816264, - -0.291089196968997, - -0.5294162645638274, - -0.5683830220756819, - -0.20189388883909948, - 0.6126886046395403, - 1.7628786810309987, - 2.918181709919276, - 3.820054359408283, - 4.1753736004362505, - 3.967095074960167, - 3.462851089529723, - 3.1747323396371634, - 3.7872612715884255, - 5.995747445757631, - 10.251627595387047, - 16.828278094275465, - 24.966430518324405, - 34.46186826012899, - 43.8723974136169, - 51.722743782164954 - ], - "pressure:J32:branch58_seg0": [ - 192501.69511036042, - 205667.74849694726, - 210073.3173908585, - 200650.09101053196, - 182860.9845546781, - 160167.770386033, - 134948.51557698287, - 106809.05743599513, - 85682.2215516229, - 65373.2861452402, - 46550.020250421396, - 32307.854208918565, - 15760.532592675929, - 847.5840576363256, - -14440.834319207432, - -30866.218135472383, - -44444.8979300185, - -57636.65761872505, - -67240.37540726578, - -73216.0463804245, - -77707.09835867291, - -79457.85282017862, - -80182.19474404442, - -80697.07582336265, - -80703.61058062366, - -80419.0280587457, - -79016.36461056572, - -75920.9724621672, - -71073.139133876, - -65142.13063856918, - -58654.401160978785, - -53936.099373504876, - -52709.98256006246, - -55311.122794148505, - -62993.07841946498, - -74878.96587064897, - -89178.43707350438, - -102139.11230369977, - -113502.91673799932, - -118278.14254841354, - -116232.58365658691, - -107909.89514747768, - -93507.6841305822, - -74418.17948640628, - -55412.280288719405, - -36994.57249958005, - -19773.070974297894, - -7759.8931323560155, - 1825.8481953290434, - 9287.824666262248, - 14349.831719338725, - 19903.629227939262, - 24097.21042809619, - 27380.38188116107, - 30185.137504290935, - 29992.349386805236, - 27387.3705753761, - 22338.79470828787, - 15435.236527277688, - 7101.792332514177, - 381.2314023058438, - -5107.581486073555, - -8801.638436453273, - -9494.875545047706, - -9120.47803415642, - -8208.654247203429, - -7558.943669929475, - -8228.287341426863, - -10226.954085045129, - -13200.06996531942, - -15980.362776133048, - -17818.732555704846, - -18118.700368487986, - -16206.873165246041, - -12541.696690454566, - -8267.170048789078, - -4336.998726077558, - -1204.0344880121036, - -157.99738443765574, - -618.471756215275, - -1483.5876833670225, - -2190.6519235066867, - -1720.3625540800417, - 531.2028181022541, - 4137.876379413096, - 8710.294561895584, - 12266.207929083825, - 14364.953729028226, - 14554.268736156393, - 12709.639005335292, - 10714.722964428067, - 10851.53958664579, - 15497.944709572475, - 26904.591532355047, - 45695.162865418686, - 73211.73210106544, - 103801.76107371708, - 136679.65258190923, - 170102.99880852818, - 192501.69511036042 - ], - "flow:J32:branch61_seg0": [ - 56.19511894976098, - 64.41493116274503, - 69.61261506537112, - 71.25150309730358, - 69.41861765880735, - 64.58343833898843, - 57.57405448446568, - 49.35204523297189, - 40.98893703871483, - 32.94333768286716, - 25.695240098581085, - 19.18641384531131, - 13.154051232695755, - 7.499856849988461, - 1.844850356770672, - -3.7377609728755883, - -9.19751255828491, - -14.336803139569378, - -18.67593478034972, - -22.222561381998798, - -24.810476230794432, - -26.48918852590593, - -27.520211047640924, - -28.083173216341358, - -28.389318443610755, - -28.512125590063324, - -28.38353001840357, - -27.877369678387865, - -26.874030535569236, - -25.34537231530749, - -23.437845903705373, - -21.525397452919705, - -20.068421893322128, - -19.569878591203707, - -20.428224134675528, - -22.76528117843623, - -26.36510241918975, - -30.70232772259811, - -35.039069840958, - -38.426497392487384, - -40.240084775478984, - -39.946596187604065, - -37.468280415129925, - -33.04132769420873, - -27.40848194581699, - -21.052671393282072, - -14.82020911563135, - -9.305359167549602, - -4.628028775172895, - -0.9827797688222042, - 1.89165161067094, - 4.2382658600263605, - 6.16501993134725, - 7.837708034133685, - 9.175801104049544, - 9.980347576449459, - 10.090929511524545, - 9.364011165726037, - 7.831098593387373, - 5.668826175073325, - 3.2504014066112727, - 0.9076747245045799, - -0.9739013931885285, - -2.225230874632042, - -2.835069955373163, - -2.940661666486897, - -2.83785566063784, - -2.8214179464000106, - -3.090414933220914, - -3.7131715428068413, - -4.547665593006328, - -5.394284679821489, - -5.955262372289323, - -6.006032697341039, - -5.47401376473128, - -4.464415769598086, - -3.1881738069864043, - -1.9465107935210049, - -1.028652730854702, - -0.5413604817300199, - -0.4562827693250481, - -0.5876777086103341, - -0.653975613222469, - -0.3987010919988733, - 0.3083204747635473, - 1.431715115712521, - 2.720034384592629, - 3.876388703448364, - 4.573080278166436, - 4.694767355130515, - 4.373781226015662, - 4.050532196393052, - 4.400372709415314, - 6.194302997046638, - 10.061814981933281, - 16.442502695614746, - 24.907220858041427, - 35.22573410989842, - 46.161296326817556, - 56.19511894976098 - ], - "pressure:J32:branch61_seg0": [ - 192501.69511036042, - 205667.74849694726, - 210073.3173908585, - 200650.09101053196, - 182860.9845546781, - 160167.770386033, - 134948.51557698287, - 106809.05743599513, - 85682.2215516229, - 65373.2861452402, - 46550.020250421396, - 32307.854208918565, - 15760.532592675929, - 847.5840576363256, - -14440.834319207432, - -30866.218135472383, - -44444.8979300185, - -57636.65761872505, - -67240.37540726578, - -73216.0463804245, - -77707.09835867291, - -79457.85282017862, - -80182.19474404442, - -80697.07582336265, - -80703.61058062366, - -80419.0280587457, - -79016.36461056572, - -75920.9724621672, - -71073.139133876, - -65142.13063856918, - -58654.401160978785, - -53936.099373504876, - -52709.98256006246, - -55311.122794148505, - -62993.07841946498, - -74878.96587064897, - -89178.43707350438, - -102139.11230369977, - -113502.91673799932, - -118278.14254841354, - -116232.58365658691, - -107909.89514747768, - -93507.6841305822, - -74418.17948640628, - -55412.280288719405, - -36994.57249958005, - -19773.070974297894, - -7759.8931323560155, - 1825.8481953290434, - 9287.824666262248, - 14349.831719338725, - 19903.629227939262, - 24097.21042809619, - 27380.38188116107, - 30185.137504290935, - 29992.349386805236, - 27387.3705753761, - 22338.79470828787, - 15435.236527277688, - 7101.792332514177, - 381.2314023058438, - -5107.581486073555, - -8801.638436453273, - -9494.875545047706, - -9120.47803415642, - -8208.654247203429, - -7558.943669929475, - -8228.287341426863, - -10226.954085045129, - -13200.06996531942, - -15980.362776133048, - -17818.732555704846, - -18118.700368487986, - -16206.873165246041, - -12541.696690454566, - -8267.170048789078, - -4336.998726077558, - -1204.0344880121036, - -157.99738443765574, - -618.471756215275, - -1483.5876833670225, - -2190.6519235066867, - -1720.3625540800417, - 531.2028181022541, - 4137.876379413096, - 8710.294561895584, - 12266.207929083825, - 14364.953729028226, - 14554.268736156393, - 12709.639005335292, - 10714.722964428067, - 10851.53958664579, - 15497.944709572475, - 26904.591532355047, - 45695.162865418686, - 73211.73210106544, - 103801.76107371708, - 136679.65258190923, - 170102.99880852818, - 192501.69511036042 - ], - "flow:J32:branch137_seg0": [ - 43.47742130097456, - 48.18914404517277, - 50.23973389854705, - 49.52527621931485, - 46.49805982080747, - 41.64253714711377, - 35.677934968360695, - 29.402321130734954, - 23.635248329343877, - 18.26319172518115, - 13.670122028126945, - 9.676102245299697, - 5.775949605853179, - 2.1389053122158663, - -1.6827016161893207, - -5.506214975035998, - -9.055710894820676, - -12.422711527009396, - -15.005059353794417, - -16.98379712999689, - -18.27866438894611, - -18.952497836544165, - -19.31496452492302, - -19.461835094201476, - -19.528094153764343, - -19.509205944091185, - -19.29380318675984, - -18.752916932969647, - -17.821261551910233, - -16.50641602802563, - -15.013098547095346, - -13.696178089401064, - -12.931278809945862, - -13.072881331217111, - -14.35957836394029, - -16.713067846613296, - -19.839183545535654, - -23.145283231939334, - -26.144593588430432, - -27.97065056333176, - -28.404391957104487, - -27.13716816221268, - -24.355575660020897, - -20.32247849335716, - -15.841344018186756, - -11.14903731135202, - -6.920910842764148, - -3.5139883223345283, - -0.7380440540827161, - 1.243024039583145, - 2.8052671901906616, - 4.117554892788618, - 5.222971244785385, - 6.2276593435584555, - 6.965674632981243, - 7.23473070520299, - 6.955239574820839, - 6.030790929939952, - 4.5653045835759265, - 2.753315675732446, - 0.9785648987491404, - -0.5953122148957882, - -1.6647530614111843, - -2.1735469801668, - -2.2690570846944813, - -2.0853707871743765, - -1.8987297774756822, - -1.925134876188417, - -2.2434729326624883, - -2.843183910519952, - -3.520544180639335, - -4.104508889415726, - -4.348794236498597, - -4.1341634238718346, - -3.475326273005589, - -2.548546352786106, - -1.5316507868650568, - -0.6973248253725458, - -0.2233832875550737, - -0.10491254428380331, - -0.2495179805356203, - -0.45476635649515584, - -0.47360103422789257, - -0.13799185502615072, - 0.5709239999572499, - 1.5539705794231524, - 2.5124218461670207, - 3.2398972772757126, - 3.4924826924682666, - 3.2780736876521623, - 2.8366866491663547, - 2.6186704223610837, - 3.1907911458873004, - 5.152893399045499, - 8.79965049031634, - 14.434161885440844, - 21.26955702187143, - 29.252020390900903, - 37.025118673284354, - 43.47742130097456 - ], - "pressure:J32:branch137_seg0": [ - 192501.69511036042, - 205667.74849694726, - 210073.3173908585, - 200650.09101053196, - 182860.9845546781, - 160167.770386033, - 134948.51557698287, - 106809.05743599513, - 85682.2215516229, - 65373.2861452402, - 46550.020250421396, - 32307.854208918565, - 15760.532592675929, - 847.5840576363256, - -14440.834319207432, - -30866.218135472383, - -44444.8979300185, - -57636.65761872505, - -67240.37540726578, - -73216.0463804245, - -77707.09835867291, - -79457.85282017862, - -80182.19474404442, - -80697.07582336265, - -80703.61058062366, - -80419.0280587457, - -79016.36461056572, - -75920.9724621672, - -71073.139133876, - -65142.13063856918, - -58654.401160978785, - -53936.099373504876, - -52709.98256006246, - -55311.122794148505, - -62993.07841946498, - -74878.96587064897, - -89178.43707350438, - -102139.11230369977, - -113502.91673799932, - -118278.14254841354, - -116232.58365658691, - -107909.89514747768, - -93507.6841305822, - -74418.17948640628, - -55412.280288719405, - -36994.57249958005, - -19773.070974297894, - -7759.8931323560155, - 1825.8481953290434, - 9287.824666262248, - 14349.831719338725, - 19903.629227939262, - 24097.21042809619, - 27380.38188116107, - 30185.137504290935, - 29992.349386805236, - 27387.3705753761, - 22338.79470828787, - 15435.236527277688, - 7101.792332514177, - 381.2314023058438, - -5107.581486073555, - -8801.638436453273, - -9494.875545047706, - -9120.47803415642, - -8208.654247203429, - -7558.943669929475, - -8228.287341426863, - -10226.954085045129, - -13200.06996531942, - -15980.362776133048, - -17818.732555704846, - -18118.700368487986, - -16206.873165246041, - -12541.696690454566, - -8267.170048789078, - -4336.998726077558, - -1204.0344880121036, - -157.99738443765574, - -618.471756215275, - -1483.5876833670225, - -2190.6519235066867, - -1720.3625540800417, - 531.2028181022541, - 4137.876379413096, - 8710.294561895584, - 12266.207929083825, - 14364.953729028226, - 14554.268736156393, - 12709.639005335292, - 10714.722964428067, - 10851.53958664579, - 15497.944709572475, - 26904.591532355047, - 45695.162865418686, - 73211.73210106544, - 103801.76107371708, - 136679.65258190923, - 170102.99880852818, - 192501.69511036042 - ], - "flow:branch58_seg0:J33": [ - 51.672042831070115, - 57.57338030082044, - 60.32066363612299, - 59.74757213732049, - 56.361296808797206, - 50.75777454488128, - 43.702488085707415, - 36.22860909016078, - 29.250134130826485, - 22.66722003767066, - 17.11584092407969, - 12.188308662665406, - 7.488699697927237, - 3.080988656319015, - -1.555609301906779, - -6.10079464444818, - -10.486741343575781, - -14.580156214966228, - -17.77065283859242, - -20.236708362373736, - -21.880112080915065, - -22.754531756040773, - -23.233197125118387, - -23.43371925754744, - -23.519220207555374, - -23.513149334632438, - -23.272361365096597, - -22.661624743968186, - -21.57834200613674, - -20.04990552882055, - -18.2563863069927, - -16.669280759179014, - -15.671026885513015, - -15.73254167575749, - -17.134007193881573, - -19.849794296680766, - -23.478441247568547, - -27.483863571755492, - -31.126008662876593, - -33.47916821981171, - -34.18599565083213, - -32.890106559971976, - -29.668698834118054, - -24.958541926830044, - -19.602900595769412, - -13.95976250391026, - -8.799911088545688, - -4.613066187288513, - -1.1870372685054251, - 1.2882992259179658, - 3.1907695815772565, - 4.830122955740597, - 6.157980630036975, - 7.389075513254305, - 8.31045517078478, - 8.683342599590071, - 8.418027949730368, - 7.387326101305064, - 5.683269876757381, - 3.559178740353864, - 1.4157891970789411, - -0.5236969916175104, - -1.859004210122442, - -2.5508696412391147, - -2.7221577814867888, - -2.5303335971557197, - -2.3053472540155515, - -2.3115394403240117, - -2.6683533418889205, - -3.360589194761652, - -4.172773509833486, - -4.8868741497803505, - -5.222815644239246, - -5.0055185908389515, - -4.263779116870833, - -3.167560956315603, - -1.9625240051652382, - -0.9262831400985888, - -0.32966466439291564, - -0.14279617745521686, - -0.28728205969081266, - -0.5288491541368394, - -0.5723569701201839, - -0.21333196110805894, - 0.5989837335109429, - 1.743035634811572, - 2.9040317514710554, - 3.8186432852560976, - 4.177965151480934, - 3.972236961595634, - 3.467940893800597, - 3.167979461784904, - 3.765943313798585, - 5.94420507891296, - 10.1995143113294, - 16.762517700701736, - 24.909601255166535, - 34.36809593474223, - 43.84179855781545, - 51.672042831070115 - ], - "pressure:branch58_seg0:J33": [ - 183196.12054317136, - 199257.0168102707, - 205981.52320277345, - 199923.49409417287, - 185121.36616285937, - 164510.41305367788, - 140265.9659266503, - 113610.90683115178, - 91265.80770291644, - 70280.77326855328, - 51606.09556901545, - 36221.6634659192, - 20167.762744830656, - 5147.075350254176, - -10273.51324660512, - -25950.07496448003, - -40305.493029553305, - -53814.397948674115, - -63731.847694042764, - -70687.48907703253, - -75677.08126114913, - -77858.82358111303, - -78986.10139552742, - -79539.16806567, - -79632.03599882506, - -79496.88880180208, - -78354.65296218768, - -75750.61570826161, - -71459.98233282121, - -65968.37841114786, - -59671.131476939045, - -54715.732120713685, - -52523.62393184906, - -53926.45902376434, - -60186.985861038505, - -70771.01752029725, - -83948.19953852899, - -97287.7146063769, - -108988.47751741894, - -115283.66871713656, - -115225.73501269244, - -108767.78210691902, - -95845.8175307191, - -78067.70549544912, - -59740.084902000446, - -41201.9391423645, - -23759.10976436923, - -11122.731559319556, - -658.0451954635538, - 7109.469811699496, - 12543.973117254798, - 18236.639413712706, - 22423.05094648487, - 26019.064265093097, - 29016.910791494094, - 29484.23301852074, - 27680.909421704808, - 23443.36101567341, - 17098.984193571934, - 9414.818134126344, - 2375.842817325928, - -3555.4574151653287, - -7597.120356454925, - -9065.420317807007, - -9118.047280358505, - -8315.321116328581, - -7596.876175526833, - -7964.43847516189, - -9620.20541807451, - -12333.055418659218, - -15058.962214407562, - -17119.58844301676, - -17825.456549988638, - -16412.15718155382, - -13284.12056523241, - -9277.434127781373, - -5380.177381251565, - -2035.8622316844094, - -596.0835420900063, - -581.0896253428456, - -1232.577376366829, - -1994.9786355538142, - -1815.127748030412, - -79.56283576357744, - 3123.404726433562, - 7307.821306107793, - 11081.93637399393, - 13627.681284185477, - 14285.475652333398, - 12953.894801116116, - 11074.962736546993, - 10669.188518070374, - 14109.038185280624, - 23617.972292543505, - 40433.43910872688, - 65661.01198712834, - 94599.62868790056, - 126361.234521918, - 159744.57332518089, - 183196.12054317136 - ], - "flow:J33:branch59_seg0": [ - 27.816712637472122, - 31.013449835467377, - 32.50856232399158, - 32.21495593757791, - 30.406158666445492, - 27.394089016888536, - 23.591002038663643, - 19.57231113116214, - 15.800148070252293, - 12.242843878683818, - 9.25331955486725, - 6.590139787032247, - 4.056553924001404, - 1.6802006412704347, - -0.8255641701943932, - -3.271071283731396, - -5.636328420184225, - -7.852118822583254, - -9.570681458498225, - -10.903893764819296, - -11.793717335071177, - -12.26521939190895, - -12.525566203870838, - -12.63371299224161, - -12.679360056552976, - -12.676845685410283, - -12.548035757740026, - -12.22052746058904, - -11.638976453881343, - -10.815922949208913, - -9.849267460033294, - -8.991605823794599, - -8.448183951845332, - -8.475850387186448, - -9.226095687168657, - -10.686355466008267, - -12.636553394107922, - -14.79877729061438, - -16.76530431233552, - -18.037786031783256, - -18.427688717586744, - -17.73523840662345, - -16.004256762933252, - -13.46678234419347, - -10.585089858529892, - -7.544111068849499, - -4.759189002370958, - -2.5024375853242895, - -0.6504492073311968, - 0.6851821335231976, - 1.7106176614905744, - 2.595522102465267, - 3.3121937252684552, - 3.9770643818351696, - 4.474654264707412, - 4.678755345817767, - 4.539578854131246, - 3.9875258761509897, - 3.070264819662531, - 1.928781208960013, - 0.7712547755960889, - -0.27849364921646, - -0.9976583320292898, - -1.3732131881247795, - -1.467948842549273, - -1.3643873104789244, - -1.2425067134850656, - -1.2447582174397405, - -1.435603072924924, - -1.808107949430275, - -2.2454405180212635, - -2.630989770436244, - -2.814352605875036, - -2.6992404349295036, - -2.3016962211290752, - -1.7121653312780851, - -1.062599563936316, - -0.503039496574754, - -0.17926019086562212, - -0.07654930103862961, - -0.15353693416761396, - -0.2844429516357111, - -0.30931007758337054, - -0.11796037301041642, - 0.31865818637673077, - 0.9336355351247467, - 1.560656053294232, - 2.056860042915051, - 2.2513633911396647, - 2.1420230419267066, - 1.8704510201142237, - 1.7064125488761903, - 2.0233038876266565, - 3.189639843022365, - 5.473435877723074, - 9.004695849038498, - 13.387774191839064, - 18.476570095714088, - 23.58923528917391, - 27.816712637472122 - ], - "pressure:J33:branch59_seg0": [ - 183196.12054317136, - 199257.0168102707, - 205981.52320277345, - 199923.49409417287, - 185121.36616285937, - 164510.41305367788, - 140265.9659266503, - 113610.90683115178, - 91265.80770291644, - 70280.77326855328, - 51606.09556901545, - 36221.6634659192, - 20167.762744830656, - 5147.075350254176, - -10273.51324660512, - -25950.07496448003, - -40305.493029553305, - -53814.397948674115, - -63731.847694042764, - -70687.48907703253, - -75677.08126114913, - -77858.82358111303, - -78986.10139552742, - -79539.16806567, - -79632.03599882506, - -79496.88880180208, - -78354.65296218768, - -75750.61570826161, - -71459.98233282121, - -65968.37841114786, - -59671.131476939045, - -54715.732120713685, - -52523.62393184906, - -53926.45902376434, - -60186.985861038505, - -70771.01752029725, - -83948.19953852899, - -97287.7146063769, - -108988.47751741894, - -115283.66871713656, - -115225.73501269244, - -108767.78210691902, - -95845.8175307191, - -78067.70549544912, - -59740.084902000446, - -41201.9391423645, - -23759.10976436923, - -11122.731559319556, - -658.0451954635538, - 7109.469811699496, - 12543.973117254798, - 18236.639413712706, - 22423.05094648487, - 26019.064265093097, - 29016.910791494094, - 29484.23301852074, - 27680.909421704808, - 23443.36101567341, - 17098.984193571934, - 9414.818134126344, - 2375.842817325928, - -3555.4574151653287, - -7597.120356454925, - -9065.420317807007, - -9118.047280358505, - -8315.321116328581, - -7596.876175526833, - -7964.43847516189, - -9620.20541807451, - -12333.055418659218, - -15058.962214407562, - -17119.58844301676, - -17825.456549988638, - -16412.15718155382, - -13284.12056523241, - -9277.434127781373, - -5380.177381251565, - -2035.8622316844094, - -596.0835420900063, - -581.0896253428456, - -1232.577376366829, - -1994.9786355538142, - -1815.127748030412, - -79.56283576357744, - 3123.404726433562, - 7307.821306107793, - 11081.93637399393, - 13627.681284185477, - 14285.475652333398, - 12953.894801116116, - 11074.962736546993, - 10669.188518070374, - 14109.038185280624, - 23617.972292543505, - 40433.43910872688, - 65661.01198712834, - 94599.62868790056, - 126361.234521918, - 159744.57332518089, - 183196.12054317136 - ], - "flow:J33:branch145_seg0": [ - 23.855330193598014, - 26.559930465352483, - 27.8121013121317, - 27.53261619974325, - 25.955138142352364, - 23.363685527992704, - 20.111486047044615, - 16.656297958999566, - 13.44998606057511, - 10.42437615898746, - 7.862521369211106, - 5.598168875632825, - 3.432145773925637, - 1.4007880150491412, - -0.730045131712017, - -2.829723360716373, - -4.850412923389907, - -6.728037392381911, - -8.19997138009491, - -9.332814597554211, - -10.086394745844583, - -10.489312364132106, - -10.707630921247164, - -10.800006265304269, - -10.839860151002522, - -10.836303649222316, - -10.724325607356205, - -10.441097283378836, - -9.939365552255229, - -9.23398257961164, - -8.407118846959117, - -7.677674935383559, - -7.222842933667926, - -7.2566912885713, - -7.90791150671334, - -9.163438830672296, - -10.841887853459978, - -12.685086281141178, - -14.360704350541148, - -15.441382188028541, - -15.758306933245267, - -15.154868153348069, - -13.66444207118473, - -11.491759582636606, - -9.017810737239536, - -6.415651435060749, - -4.040722086174726, - -2.1106286019642235, - -0.5365880611742129, - 0.6031170923947666, - 1.480151920086687, - 2.234600853275331, - 2.845786904768522, - 3.412011131419169, - 3.8358009060773903, - 4.004587253772284, - 3.8784490955991724, - 3.3998002251540607, - 2.613005057094787, - 1.630397531394, - 0.6445344214828532, - -0.24520334240098277, - -0.8613458780931126, - -1.1776564531143043, - -1.254208938937469, - -1.165946286676747, - -1.0628405405304278, - -1.0667812228842894, - -1.2327502689639656, - -1.5524812453313461, - -1.9273329918121525, - -2.2558843793440837, - -2.4084630383641574, - -2.3062781559094696, - -1.9620828957417393, - -1.455395625037513, - -0.8999244412289411, - -0.4232436435238528, - -0.15040447352729472, - -0.06624687641659352, - -0.13374512552319914, - -0.24440620250112352, - -0.2630468925368182, - -0.09537158809764942, - 0.2803255471342049, - 0.8094000996868269, - 1.343375698176838, - 1.7617832423410285, - 1.9266017603412582, - 1.8302139196689138, - 1.597489873686373, - 1.4615669129087505, - 1.742639426171921, - 2.75456523589063, - 4.726078433606252, - 7.757821851663133, - 11.521827063327633, - 15.891525839028168, - 20.252563268641058, - 23.855330193598014 - ], - "pressure:J33:branch145_seg0": [ - 183196.12054317136, - 199257.0168102707, - 205981.52320277345, - 199923.49409417287, - 185121.36616285937, - 164510.41305367788, - 140265.9659266503, - 113610.90683115178, - 91265.80770291644, - 70280.77326855328, - 51606.09556901545, - 36221.6634659192, - 20167.762744830656, - 5147.075350254176, - -10273.51324660512, - -25950.07496448003, - -40305.493029553305, - -53814.397948674115, - -63731.847694042764, - -70687.48907703253, - -75677.08126114913, - -77858.82358111303, - -78986.10139552742, - -79539.16806567, - -79632.03599882506, - -79496.88880180208, - -78354.65296218768, - -75750.61570826161, - -71459.98233282121, - -65968.37841114786, - -59671.131476939045, - -54715.732120713685, - -52523.62393184906, - -53926.45902376434, - -60186.985861038505, - -70771.01752029725, - -83948.19953852899, - -97287.7146063769, - -108988.47751741894, - -115283.66871713656, - -115225.73501269244, - -108767.78210691902, - -95845.8175307191, - -78067.70549544912, - -59740.084902000446, - -41201.9391423645, - -23759.10976436923, - -11122.731559319556, - -658.0451954635538, - 7109.469811699496, - 12543.973117254798, - 18236.639413712706, - 22423.05094648487, - 26019.064265093097, - 29016.910791494094, - 29484.23301852074, - 27680.909421704808, - 23443.36101567341, - 17098.984193571934, - 9414.818134126344, - 2375.842817325928, - -3555.4574151653287, - -7597.120356454925, - -9065.420317807007, - -9118.047280358505, - -8315.321116328581, - -7596.876175526833, - -7964.43847516189, - -9620.20541807451, - -12333.055418659218, - -15058.962214407562, - -17119.58844301676, - -17825.456549988638, - -16412.15718155382, - -13284.12056523241, - -9277.434127781373, - -5380.177381251565, - -2035.8622316844094, - -596.0835420900063, - -581.0896253428456, - -1232.577376366829, - -1994.9786355538142, - -1815.127748030412, - -79.56283576357744, - 3123.404726433562, - 7307.821306107793, - 11081.93637399393, - 13627.681284185477, - 14285.475652333398, - 12953.894801116116, - 11074.962736546993, - 10669.188518070374, - 14109.038185280624, - 23617.972292543505, - 40433.43910872688, - 65661.01198712834, - 94599.62868790056, - 126361.234521918, - 159744.57332518089, - 183196.12054317136 - ], - "flow:branch61_seg2:J34": [ - 56.101234538925425, - 64.39015908843706, - 69.62117424297905, - 71.28968967634442, - 69.50012267041157, - 64.70331576236832, - 57.67946629074318, - 49.50641049091982, - 41.12609975018479, - 33.02295030736834, - 25.80507597309137, - 19.265936817979323, - 13.239224880909509, - 7.587890619443669, - 1.9003579877457286, - -3.653225842401115, - -9.133645444868412, - -14.305864742821983, - -18.644450312753264, - -22.203788444508085, - -24.807728792633107, - -26.482178301959088, - -27.521470378098236, - -28.084951411559626, - -28.388260452436956, - -28.51619023917423, - -28.39065925562407, - -27.89253291117071, - -26.896635153671106, - -25.375727050267656, - -23.462389665653234, - -21.55034364051074, - -20.068803435637133, - -19.54867222944055, - -20.38463886392157, - -22.7121617591816, - -26.27943647199823, - -30.643490036382712, - -34.994320870210295, - -38.40818234364368, - -40.26121933654125, - -40.00486045783775, - -37.527849718798066, - -33.10539096988949, - -27.476679350074576, - -21.11658362246276, - -14.861811321781673, - -9.350330631317197, - -4.649862407374482, - -0.99914824833627, - 1.8642441139477193, - 4.223873784115168, - 6.141817747509324, - 7.824786087474465, - 9.166985963536561, - 9.979158752927457, - 10.105672669533407, - 9.394153434187041, - 7.862693144463441, - 5.716937311136033, - 3.290227339835977, - 0.9234461120698745, - -0.9576422823365857, - -2.2198384474661457, - -2.840396094730468, - -2.9441777494417, - -2.8373115715634114, - -2.815755812436874, - -3.0819002477227424, - -3.703404567252378, - -4.540065776606, - -5.389974377481004, - -5.9603628538265685, - -6.014109206334061, - -5.489302052506386, - -4.479584369740009, - -3.2048080799895766, - -1.9544291966094518, - -1.0348676436135973, - -0.5386568440990982, - -0.45104393756641914, - -0.5867744318537494, - -0.6589806423049351, - -0.41323362946674685, - 0.29063204183034397, - 1.4061031781340396, - 2.700973207505683, - 3.8735646804068895, - 4.576423386092589, - 4.70125672787777, - 4.380378200698738, - 4.043163278679402, - 4.372356649078071, - 6.1305891864831406, - 9.984214698403493, - 16.346314588919288, - 24.81068823948147, - 35.094501508890694, - 46.08140116532258, - 56.101234538925425 - ], - "pressure:branch61_seg2:J34": [ - 164738.44366302222, - 182847.81592300604, - 192984.20847454524, - 191931.14773455824, - 182201.40081027913, - 165838.55371477385, - 144666.51796977594, - 121233.1970553397, - 99218.06970444965, - 77830.97069216147, - 59365.90978931377, - 43407.601345866686, - 27326.65433728239, - 12485.321367869888, - -2946.0847028627286, - -17916.22655757176, - -31532.456391881376, - -45636.64781327145, - -56266.73002693576, - -63899.30915766336, - -69940.34042848634, - -73185.34721978457, - -75140.41946309453, - -76276.97191906959, - -76670.48692673906, - -76783.60631282632, - -76074.20866759172, - -74084.26682834509, - -70629.70772702922, - -65911.90898931077, - -60293.83731311945, - -55376.864538508504, - -52467.12360183328, - -52611.81877829451, - -56920.20508663866, - -65398.13506310164, - -76432.17938720556, - -88564.55464116468, - -100151.16318772525, - -107444.39827260785, - -109646.70732503186, - -106030.8882099093, - -96382.65353498676, - -81425.61659697819, - -65095.38243298149, - -48282.70082263184, - -31202.960425690675, - -17864.88426285411, - -6620.960888365783, - 2206.172906961973, - 8409.483538989994, - 14406.666606870782, - 19246.262030911807, - 23142.922296112814, - 26330.246344838466, - 27601.317436646925, - 26832.118465921383, - 23795.999108280874, - 18591.44855166011, - 12041.220476634118, - 5454.477589981701, - -719.9396023066165, - -5018.181975719782, - -7191.998400068899, - -8116.703161338851, - -7922.132475080465, - -7453.337031455864, - -7668.61157938828, - -8883.236597500056, - -11096.421251249874, - -13524.214406456076, - -15499.9059961052, - -16586.95362974454, - -15936.807071274263, - -13661.007670482522, - -10367.402021101474, - -6858.543852421238, - -3603.950464533462, - -1670.2800107516612, - -1075.5927179158405, - -1284.1957839905265, - -1801.5021492976546, - -1753.099141096502, - -509.64147677842027, - 2051.478331540178, - 5571.824396985414, - 9068.81452236219, - 11897.868961224776, - 13039.74715709855, - 12427.817286465952, - 11116.05047051015, - 10620.19530694649, - 12946.390136079228, - 20176.887555044013, - 33573.00132622363, - 54842.88258391337, - 80451.08454957607, - 108411.80628137958, - 139731.7213758639, - 164738.44366302222 - ], - "flow:J34:branch62_seg0": [ - 26.28717649272151, - 30.197994800053564, - 32.691572868679806, - 33.517032992918985, - 32.71142885988644, - 30.488454754321456, - 27.216097330727294, - 23.380408241955326, - 19.43799712271772, - 15.631485362033185, - 12.224446862883989, - 9.138402686866321, - 6.298200328923973, - 3.6318041356924664, - 0.9589794787400907, - -1.655070832955933, - -4.239440730804531, - -6.672776270130817, - -8.722011377334095, - -10.405696017090076, - -11.640791316867864, - -12.440206415401487, - -12.936414906757712, - -13.2068847134513, - -13.353100222474023, - -13.415436543067441, - -13.358998700786849, - -13.128443488372207, - -12.66468972567584, - -11.95521059102152, - -11.0599641475338, - -10.160852625477592, - -9.461316573544044, - -9.207185599664001, - -9.585543523540814, - -10.663159419395189, - -12.328406096803239, - -14.372160596184875, - -16.41606140314505, - -18.032295452141838, - -18.918952569378046, - -18.820228590147888, - -17.679473300565817, - -15.62171696846348, - -12.988609331140534, - -10.005260283682638, - -7.062173227262575, - -4.460854169952234, - -2.2421419731328314, - -0.5130886842759307, - 0.843656731459476, - 1.9608212573721728, - 2.8685755714838383, - 3.6616100733363046, - 4.297254593774024, - 4.685535802384404, - 4.751624371765176, - 4.425681363753307, - 3.7152116973813802, - 2.7122301494989753, - 1.5733023992415978, - 0.4624741499124106, - -0.427645198073829, - -1.0295526738356673, - -1.3280207832529551, - -1.3830771963901463, - -1.3359795353285886, - -1.325409893528977, - -1.4479306476578462, - -1.7365056005261867, - -2.1272958381422664, - -2.5265142082358185, - -2.797438812941456, - -2.828060373088904, - -2.58728581611055, - -2.117557171603229, - -1.521622787677965, - -0.933452237300102, - -0.49757774606462324, - -0.26032924782014677, - -0.21440851291040575, - -0.27489583163489434, - -0.30881760745304987, - -0.19620267557944093, - 0.12986510709151786, - 0.6501194179609598, - 1.2573191636032606, - 1.8084786977881662, - 2.1438532504175862, - 2.2096245874604152, - 2.0639628216248957, - 1.9065697956451269, - 2.0558859008658037, - 2.8692590980592567, - 4.661443440965202, - 7.6276278351396805, - 11.585329288018348, - 16.402374467695385, - 21.56536268654096, - 26.28717649272151 - ], - "pressure:J34:branch62_seg0": [ - 164738.44366302222, - 182847.81592300604, - 192984.20847454524, - 191931.14773455824, - 182201.40081027913, - 165838.55371477385, - 144666.51796977594, - 121233.1970553397, - 99218.06970444965, - 77830.97069216147, - 59365.90978931377, - 43407.601345866686, - 27326.65433728239, - 12485.321367869888, - -2946.0847028627286, - -17916.22655757176, - -31532.456391881376, - -45636.64781327145, - -56266.73002693576, - -63899.30915766336, - -69940.34042848634, - -73185.34721978457, - -75140.41946309453, - -76276.97191906959, - -76670.48692673906, - -76783.60631282632, - -76074.20866759172, - -74084.26682834509, - -70629.70772702922, - -65911.90898931077, - -60293.83731311945, - -55376.864538508504, - -52467.12360183328, - -52611.81877829451, - -56920.20508663866, - -65398.13506310164, - -76432.17938720556, - -88564.55464116468, - -100151.16318772525, - -107444.39827260785, - -109646.70732503186, - -106030.8882099093, - -96382.65353498676, - -81425.61659697819, - -65095.38243298149, - -48282.70082263184, - -31202.960425690675, - -17864.88426285411, - -6620.960888365783, - 2206.172906961973, - 8409.483538989994, - 14406.666606870782, - 19246.262030911807, - 23142.922296112814, - 26330.246344838466, - 27601.317436646925, - 26832.118465921383, - 23795.999108280874, - 18591.44855166011, - 12041.220476634118, - 5454.477589981701, - -719.9396023066165, - -5018.181975719782, - -7191.998400068899, - -8116.703161338851, - -7922.132475080465, - -7453.337031455864, - -7668.61157938828, - -8883.236597500056, - -11096.421251249874, - -13524.214406456076, - -15499.9059961052, - -16586.95362974454, - -15936.807071274263, - -13661.007670482522, - -10367.402021101474, - -6858.543852421238, - -3603.950464533462, - -1670.2800107516612, - -1075.5927179158405, - -1284.1957839905265, - -1801.5021492976546, - -1753.099141096502, - -509.64147677842027, - 2051.478331540178, - 5571.824396985414, - 9068.81452236219, - 11897.868961224776, - 13039.74715709855, - 12427.817286465952, - 11116.05047051015, - 10620.19530694649, - 12946.390136079228, - 20176.887555044013, - 33573.00132622363, - 54842.88258391337, - 80451.08454957607, - 108411.80628137958, - 139731.7213758639, - 164738.44366302222 - ], - "flow:J34:branch126_seg0": [ - 29.814058046204174, - 34.192164288383744, - 36.92960137429906, - 37.77265668342493, - 36.78869381052511, - 34.214861008048416, - 30.463368960016005, - 26.12600224896385, - 21.688102627467046, - 17.391464945335198, - 13.580629110206504, - 10.127534131112414, - 6.941024551986045, - 3.9560864837489107, - 0.9413785090034721, - -1.9981550094457698, - -4.894204714063367, - -7.633088472690963, - -9.922438935419681, - -11.798092427417256, - -13.166937475765206, - -14.041971886557137, - -14.585055471341796, - -14.878066698105584, - -15.035160229962573, - -15.100753696106075, - -15.031660554837059, - -14.764089422798543, - -14.231945427995242, - -13.420516459247267, - -12.402425518119633, - -11.389491015033839, - -10.607486862093332, - -10.341486629776947, - -10.79909534038089, - -12.049002339786465, - -13.951030375195623, - -16.27132944019741, - -18.578259467065585, - -20.375886891501974, - -21.34226676716337, - -21.184631867689255, - -19.848376418232142, - -17.483674001425918, - -14.488070018934085, - -11.111323338780153, - -7.799638094519117, - -4.88947646136496, - -2.4077204342416456, - -0.48605956406035655, - 1.0205873824882559, - 2.2630525267429866, - 3.2732421760254846, - 4.1631760141381715, - 4.869731369762545, - 5.293622950543019, - 5.354048297768264, - 4.968472070433694, - 4.147481447082065, - 3.0047071616371, - 1.7169249405942832, - 0.46097196215735536, - -0.5299970842628425, - -1.1902857736305534, - -1.512375311477429, - -1.5611005530516515, - -1.5013320362349443, - -1.4903459189078259, - -1.633969600064745, - -1.9668989667264571, - -2.4127699384636796, - -2.8634601692451778, - -3.1629240408851307, - -3.186048833245151, - -2.902016236395809, - -2.362027198136759, - -1.683185292311588, - -1.0209769593093545, - -0.5372898975489465, - -0.2783275962789509, - -0.23663542465601953, - -0.3118786002188605, - -0.3501630348518753, - -0.2170309538873004, - 0.1607669347388258, - 0.7559837601730791, - 1.4436540439024053, - 2.0650859826187173, - 2.432570135675016, - 2.491632140417348, - 2.3164153790738036, - 2.136593483034232, - 2.3164707482123816, - 3.2613300884239025, - 5.322771257438374, - 8.718686753779556, - 13.225358951463143, - 18.69212704119522, - 24.51603847878179, - 29.814058046204174 - ], - "pressure:J34:branch126_seg0": [ - 164738.44366302222, - 182847.81592300604, - 192984.20847454524, - 191931.14773455824, - 182201.40081027913, - 165838.55371477385, - 144666.51796977594, - 121233.1970553397, - 99218.06970444965, - 77830.97069216147, - 59365.90978931377, - 43407.601345866686, - 27326.65433728239, - 12485.321367869888, - -2946.0847028627286, - -17916.22655757176, - -31532.456391881376, - -45636.64781327145, - -56266.73002693576, - -63899.30915766336, - -69940.34042848634, - -73185.34721978457, - -75140.41946309453, - -76276.97191906959, - -76670.48692673906, - -76783.60631282632, - -76074.20866759172, - -74084.26682834509, - -70629.70772702922, - -65911.90898931077, - -60293.83731311945, - -55376.864538508504, - -52467.12360183328, - -52611.81877829451, - -56920.20508663866, - -65398.13506310164, - -76432.17938720556, - -88564.55464116468, - -100151.16318772525, - -107444.39827260785, - -109646.70732503186, - -106030.8882099093, - -96382.65353498676, - -81425.61659697819, - -65095.38243298149, - -48282.70082263184, - -31202.960425690675, - -17864.88426285411, - -6620.960888365783, - 2206.172906961973, - 8409.483538989994, - 14406.666606870782, - 19246.262030911807, - 23142.922296112814, - 26330.246344838466, - 27601.317436646925, - 26832.118465921383, - 23795.999108280874, - 18591.44855166011, - 12041.220476634118, - 5454.477589981701, - -719.9396023066165, - -5018.181975719782, - -7191.998400068899, - -8116.703161338851, - -7922.132475080465, - -7453.337031455864, - -7668.61157938828, - -8883.236597500056, - -11096.421251249874, - -13524.214406456076, - -15499.9059961052, - -16586.95362974454, - -15936.807071274263, - -13661.007670482522, - -10367.402021101474, - -6858.543852421238, - -3603.950464533462, - -1670.2800107516612, - -1075.5927179158405, - -1284.1957839905265, - -1801.5021492976546, - -1753.099141096502, - -509.64147677842027, - 2051.478331540178, - 5571.824396985414, - 9068.81452236219, - 11897.868961224776, - 13039.74715709855, - 12427.817286465952, - 11116.05047051015, - 10620.19530694649, - 12946.390136079228, - 20176.887555044013, - 33573.00132622363, - 54842.88258391337, - 80451.08454957607, - 108411.80628137958, - 139731.7213758639, - 164738.44366302222 - ], - "flow:branch63_seg0:J35": [ - 73.09128886815988, - 85.97264482276772, - 95.59484067505524, - 101.13366265856601, - 102.3221945604019, - 99.36456152517427, - 92.9605923523871, - 84.29938621989062, - 74.45190816051506, - 64.12406808119232, - 54.1898363085354, - 44.62181877482973, - 35.40897723188021, - 26.468772878548933, - 17.415007219822456, - 8.442103361345268, - -0.48883273504540453, - -9.063108868398992, - -16.728147426845933, - -23.430959962260715, - -28.868806967565416, - -33.05282017855982, - -36.23929682014513, - -38.59754273274765, - -40.38855973625897, - -41.72528858505678, - -42.56316347765937, - -42.78753839860394, - -42.2571275113317, - -40.92063226999442, - -38.92067732415413, - -36.68592781414459, - -34.73362765625799, - -33.748673766619625, - -34.28559560755306, - -36.63134029215184, - -40.646152661684575, - -45.9065411953319, - -51.520505499595465, - -56.41025171889007, - -59.717510408269675, - -60.631885244077445, - -58.83501595070667, - -54.46313525598878, - -48.174463292789476, - -40.497455995914734, - -32.456264956936906, - -24.776993804498385, - -17.74293716244995, - -11.756322968102557, - -6.619666223095911, - -2.155697097634443, - 1.7151931809943988, - 5.205204843120174, - 8.167649107236992, - 10.407557330220982, - 11.721983519431769, - 11.895458373214302, - 10.902484453428482, - 8.935358663975936, - 6.350188363221701, - 3.554071830039276, - 1.078631614325796, - -0.8325080216608154, - -2.058503899101373, - -2.6722474054248213, - -2.965945411766438, - -3.2591548937271155, - -3.80549344881464, - -4.723427617389251, - -5.906013044157939, - -7.14805914755833, - -8.106437473063323, - -8.49584360387124, - -8.188810975061248, - -7.235397036148732, - -5.843416412005658, - -4.348352099014318, - -3.105411046020315, - -2.2742658243134, - -1.9066790484404692, - -1.8341772522647664, - -1.7526105482932641, - -1.3614771047755367, - -0.46146514910387615, - 0.944826475036654, - 2.6370829314942585, - 4.283317848632284, - 5.467787783550878, - 6.006225910040297, - 5.977430804417988, - 5.819189397631439, - 6.301265177861552, - 8.353390041985008, - 12.866178167135882, - 20.465330422806083, - 30.956369339440364, - 44.173650990022914, - 58.78273882953819, - 73.09128886815988 - ], - "pressure:branch63_seg0:J35": [ - 130572.71045513055, - 149253.1631291483, - 162379.96129144443, - 167465.6561619106, - 165634.88959102842, - 157774.29802578385, - 145116.70519808287, - 129002.21799655346, - 112593.5438976229, - 95873.79280731195, - 79818.4701406636, - 64871.620092402714, - 49943.50073853373, - 35512.14407837286, - 20800.144878380303, - 6166.95444617172, - -8098.927479648124, - -21830.702679433998, - -33366.46966833526, - -43173.31914680861, - -51152.46425187857, - -56883.05841837906, - -61281.57787709871, - -64563.91728993358, - -67006.35128054727, - -68840.40534569426, - -69749.67997660227, - -69519.63677337128, - -67966.13545924824, - -65189.65319545528, - -61438.12099859646, - -57784.885179465244, - -55197.4302133009, - -54545.767674205985, - -56834.27459665076, - -62221.59714001317, - -70036.43141677229, - -79260.07510798112, - -88453.9610909239, - -95399.29743071429, - -99023.26989314702, - -98420.90660831779, - -93214.21306552071, - -83850.66706349858, - -72451.05441273708, - -59326.573305147846, - -45799.90121041999, - -34077.480345704964, - -23330.67545836509, - -14310.335042776725, - -6865.193342730879, - 120.61331902053169, - 5944.31184922705, - 11106.046370379507, - 15594.749893315678, - 18492.894438509273, - 19726.24322588129, - 19062.98177513482, - 16529.231107604835, - 12542.589883327633, - 8018.201078893121, - 3525.1461361760894, - -177.37036464616313, - -2678.339634284312, - -4121.670957816121, - -4717.27778314967, - -5015.295411970038, - -5604.461895437178, - -6779.9383433753255, - -8608.790049796076, - -10656.559333956124, - -12568.383164310442, - -13839.13713436236, - -13897.516268196592, - -12772.616110765774, - -10743.698470787207, - -8289.56566376821, - -5816.069392870889, - -4122.108009041981, - -3229.6245208751984, - -2924.6563455191867, - -2954.583485424993, - -2709.2904594290494, - -1715.0007585691444, - 195.32339044253334, - 2883.6303586016857, - 5742.164728198284, - 8209.177929202675, - 9675.477518031928, - 9964.648924625111, - 9542.249230968735, - 9442.266167304197, - 11106.261207819463, - 16120.115738442913, - 25722.17941702069, - 41043.84661950459, - 60259.98730676342, - 83143.61488251467, - 108601.14848124888, - 130572.71045513055 - ], - "flow:J35:branch64_seg0": [ - 15.832609545206907, - 18.590796572390126, - 20.638528694321096, - 21.79778464290052, - 22.018586641857638, - 21.352395388167867, - 19.95259457458061, - 18.063984917556912, - 15.939944917602672, - 13.71895808283804, - 11.577379815700475, - 9.524470283859745, - 7.545092492677254, - 5.621949821974893, - 3.678553177489552, - 1.7459400229120654, - -0.17645983735557785, - -2.0128243558556553, - -3.656987869992546, - -5.091334480550885, - -6.250823646517873, - -7.142177769775034, - -7.8193761831138096, - -8.32034564369233, - -8.701346784204617, - -8.985068870742385, - -9.161179016585002, - -9.204685846500979, - -9.084611192338501, - -8.791886862247908, - -8.356916734234575, - -7.874968881303154, - -7.45871847721847, - -7.253491463396436, - -7.380120540641382, - -7.897122016660439, - -8.774700162337595, - -9.914025237997713, - -11.12359483761306, - -12.171943356596003, - -12.870042422479294, - -13.050134547864763, - -12.643623283986985, - -11.684793732188512, - -10.31723301869374, - -8.65451905878082, - -6.9216990440362824, - -5.271857780891744, - -3.7638405384632665, - -2.482954149401736, - -1.3840266787631177, - -0.4279770763986098, - 0.3991185872633534, - 1.1461441026231418, - 1.7804782915926667, - 2.256039154652349, - 2.5313389091117444, - 2.5604240322840317, - 2.338922859996887, - 1.907357115545095, - 1.3470128261992613, - 0.746118630254018, - 0.2132520831176341, - -0.19382104599608554, - -0.4519249332486209, - -0.5802769960457477, - -0.6411406357916212, - -0.7040427138437964, - -0.8234306688615078, - -1.0234034310121118, - -1.279491619197498, - -1.547118617249063, - -1.7509852645719877, - -1.8304965060176603, - -1.7592588985319866, - -1.5494085131350008, - -1.2471831429723854, - -0.9243583675879951, - -0.6591862480626061, - -0.4835679210134411, - -0.40720611882477753, - -0.39345457690655367, - -0.3757370273770755, - -0.28932482894866246, - -0.09239909195783605, - 0.21398827079199134, - 0.5799497373005249, - 0.9325021539234678, - 1.185176963213143, - 1.2966254711964151, - 1.2864091087045328, - 1.252120842313252, - 1.3613637894135135, - 1.8152409321450513, - 2.8054182437711237, - 4.463197428090811, - 6.741096241834339, - 9.606591147582145, - 12.761172978575422, - 15.832609545206907 - ], - "pressure:J35:branch64_seg0": [ - 130572.71045513055, - 149253.1631291483, - 162379.96129144443, - 167465.6561619106, - 165634.88959102842, - 157774.29802578385, - 145116.70519808287, - 129002.21799655346, - 112593.5438976229, - 95873.79280731195, - 79818.4701406636, - 64871.620092402714, - 49943.50073853373, - 35512.14407837286, - 20800.144878380303, - 6166.95444617172, - -8098.927479648124, - -21830.702679433998, - -33366.46966833526, - -43173.31914680861, - -51152.46425187857, - -56883.05841837906, - -61281.57787709871, - -64563.91728993358, - -67006.35128054727, - -68840.40534569426, - -69749.67997660227, - -69519.63677337128, - -67966.13545924824, - -65189.65319545528, - -61438.12099859646, - -57784.885179465244, - -55197.4302133009, - -54545.767674205985, - -56834.27459665076, - -62221.59714001317, - -70036.43141677229, - -79260.07510798112, - -88453.9610909239, - -95399.29743071429, - -99023.26989314702, - -98420.90660831779, - -93214.21306552071, - -83850.66706349858, - -72451.05441273708, - -59326.573305147846, - -45799.90121041999, - -34077.480345704964, - -23330.67545836509, - -14310.335042776725, - -6865.193342730879, - 120.61331902053169, - 5944.31184922705, - 11106.046370379507, - 15594.749893315678, - 18492.894438509273, - 19726.24322588129, - 19062.98177513482, - 16529.231107604835, - 12542.589883327633, - 8018.201078893121, - 3525.1461361760894, - -177.37036464616313, - -2678.339634284312, - -4121.670957816121, - -4717.27778314967, - -5015.295411970038, - -5604.461895437178, - -6779.9383433753255, - -8608.790049796076, - -10656.559333956124, - -12568.383164310442, - -13839.13713436236, - -13897.516268196592, - -12772.616110765774, - -10743.698470787207, - -8289.56566376821, - -5816.069392870889, - -4122.108009041981, - -3229.6245208751984, - -2924.6563455191867, - -2954.583485424993, - -2709.2904594290494, - -1715.0007585691444, - 195.32339044253334, - 2883.6303586016857, - 5742.164728198284, - 8209.177929202675, - 9675.477518031928, - 9964.648924625111, - 9542.249230968735, - 9442.266167304197, - 11106.261207819463, - 16120.115738442913, - 25722.17941702069, - 41043.84661950459, - 60259.98730676342, - 83143.61488251467, - 108601.14848124888, - 130572.71045513055 - ], - "flow:J35:branch83_seg0": [ - 29.980304971658292, - 35.119737634218396, - 38.885278102862436, - 40.96599857789021, - 41.28678936463249, - 39.94024188270157, - 37.221511979865674, - 33.65510143019172, - 29.633531910697783, - 25.44059218437714, - 21.460618565312263, - 17.617266912788292, - 13.91620896455564, - 10.329105412665843, - 6.669384961933989, - 3.062655942268094, - -0.526586480250513, - -3.9848013436730607, - -7.035207610286227, - -9.696409471487032, - -11.846205925511352, - -13.481366783639997, - -14.727465126569948, - -15.646066658231529, - -16.343263069856906, - -16.86460528367797, - -17.18350875994606, - -17.25069715906526, - -17.009522395536553, - -16.440144733952106, - -15.607903807908645, - -14.696394484857604, - -13.916152389828994, - -13.552495864672311, - -13.823836037172525, - -14.83822336934589, - -16.514405719606174, - -18.684311019820267, - -20.96660619296439, - -22.90930199245389, - -24.187983817635097, - -24.469194627101263, - -23.643354521448508, - -21.77852771231666, - -19.173336313574435, - -16.030972971180933, - -12.76632790251355, - -9.688189609858389, - -6.876134118045822, - -4.501240173872857, - -2.4697812978200204, - -0.6964879037797586, - 0.8412240891462833, - 2.2305159352387474, - 3.403659615836174, - 4.279878866964047, - 4.775778448085202, - 4.8038260036541125, - 4.358194225714856, - 3.5304543801103985, - 2.4637249655433093, - 1.3224569608524432, - 0.33959544249382057, - -0.40894160448298117, - -0.8798815372949416, - -1.102500097872136, - -1.20680558991457, - -1.3237137101278695, - -1.5520311049841884, - -1.9357318028486812, - -2.4222269586093965, - -2.924549193000755, - -3.302694186532939, - -3.439093479395929, - -3.2896449914764077, - -2.8813264864210986, - -2.3033598797533568, - -1.6954500829897372, - -1.2021031861361995, - -0.8821912095765191, - -0.751473951713056, - -0.7345804817890417, - -0.7030313636142237, - -0.5353269082861644, - -0.1539403169279635, - 0.43087286891668736, - 1.1241751601782075, - 1.7896702641470954, - 2.2491077031698827, - 2.4413895169975346, - 2.408530056326771, - 2.337825471941663, - 2.5522350988757267, - 3.433261195897968, - 5.337439481732246, - 8.516582710969738, - 12.851408647278532, - 18.264607493132505, - 24.219519846392682, - 29.980304971658292 - ], - "pressure:J35:branch83_seg0": [ - 130572.71045513055, - 149253.1631291483, - 162379.96129144443, - 167465.6561619106, - 165634.88959102842, - 157774.29802578385, - 145116.70519808287, - 129002.21799655346, - 112593.5438976229, - 95873.79280731195, - 79818.4701406636, - 64871.620092402714, - 49943.50073853373, - 35512.14407837286, - 20800.144878380303, - 6166.95444617172, - -8098.927479648124, - -21830.702679433998, - -33366.46966833526, - -43173.31914680861, - -51152.46425187857, - -56883.05841837906, - -61281.57787709871, - -64563.91728993358, - -67006.35128054727, - -68840.40534569426, - -69749.67997660227, - -69519.63677337128, - -67966.13545924824, - -65189.65319545528, - -61438.12099859646, - -57784.885179465244, - -55197.4302133009, - -54545.767674205985, - -56834.27459665076, - -62221.59714001317, - -70036.43141677229, - -79260.07510798112, - -88453.9610909239, - -95399.29743071429, - -99023.26989314702, - -98420.90660831779, - -93214.21306552071, - -83850.66706349858, - -72451.05441273708, - -59326.573305147846, - -45799.90121041999, - -34077.480345704964, - -23330.67545836509, - -14310.335042776725, - -6865.193342730879, - 120.61331902053169, - 5944.31184922705, - 11106.046370379507, - 15594.749893315678, - 18492.894438509273, - 19726.24322588129, - 19062.98177513482, - 16529.231107604835, - 12542.589883327633, - 8018.201078893121, - 3525.1461361760894, - -177.37036464616313, - -2678.339634284312, - -4121.670957816121, - -4717.27778314967, - -5015.295411970038, - -5604.461895437178, - -6779.9383433753255, - -8608.790049796076, - -10656.559333956124, - -12568.383164310442, - -13839.13713436236, - -13897.516268196592, - -12772.616110765774, - -10743.698470787207, - -8289.56566376821, - -5816.069392870889, - -4122.108009041981, - -3229.6245208751984, - -2924.6563455191867, - -2954.583485424993, - -2709.2904594290494, - -1715.0007585691444, - 195.32339044253334, - 2883.6303586016857, - 5742.164728198284, - 8209.177929202675, - 9675.477518031928, - 9964.648924625111, - 9542.249230968735, - 9442.266167304197, - 11106.261207819463, - 16120.115738442913, - 25722.17941702069, - 41043.84661950459, - 60259.98730676342, - 83143.61488251467, - 108601.14848124888, - 130572.71045513055 - ], - "flow:J35:branch97_seg0": [ - 27.27837435129456, - 32.26211061615947, - 36.07103387787194, - 38.36987943777645, - 39.01681855390978, - 38.071924254302054, - 35.78648579794069, - 32.58029987214283, - 28.878431332215513, - 24.964517813975704, - 21.151837927522298, - 17.48008157818591, - 13.947675774648138, - 10.517717643903389, - 7.06706908039664, - 3.6335073961661264, - 0.2142135825643796, - -3.0654831688726065, - -6.035951946566874, - -8.643216010222446, - -10.771777395537661, - -12.42927562514212, - -13.69245551045959, - -14.631130430821253, - -15.343949882196897, - -15.875614430637228, - -16.218475701127574, - -16.33215539303784, - -16.16299392345646, - -15.688600673793184, - -14.955856782010216, - -14.11456444798523, - -13.358756789213922, - -12.942686438550801, - -13.081639029740645, - -13.895994906146294, - -15.357046779741342, - -17.3082049375122, - -19.430304469019163, - -21.329006369840275, - -22.659484168155892, - -23.112556069111648, - -22.548038145271985, - -20.999813811483076, - -18.68389396052127, - -15.811963965952867, - -12.768238010387137, - -9.816946413748278, - -7.102962505940975, - -4.772128644828035, - -2.765858246512757, - -1.031232117456036, - 0.4748505045847881, - 1.8285448052582778, - 2.9835111998081394, - 3.8716393086045437, - 4.414866162234742, - 4.531208337276193, - 4.2053673677166525, - 3.4975471683204864, - 2.5394505714791933, - 1.485496238932672, - 0.5257840887146599, - -0.2297453711818549, - -0.7266974285578708, - -0.9894703115072013, - -1.117999186060313, - -1.2313984697556932, - -1.4300316749688535, - -1.7642923835283977, - -2.204294466351009, - -2.6763913373084107, - -3.052758021958329, - -3.2262536184577684, - -3.139907085052858, - -2.804662036592632, - -2.2928733892799418, - -1.7285436484367163, - -1.2441216118214118, - -0.9085066937234462, - -0.7479989779026391, - -0.7061421935691795, - -0.6738421573019838, - -0.5368253675406729, - -0.21512574021809758, - 0.2999653353279672, - 0.9329580340155268, - 1.5611454305617491, - 2.0335031171678195, - 2.268210921846303, - 2.282491639386705, - 2.22924308337646, - 2.3876662895723326, - 3.104887913942012, - 4.723320441632588, - 7.485550283745677, - 11.363864450327338, - 16.302452349307625, - 21.802046004569796, - 27.27837435129456 - ], - "pressure:J35:branch97_seg0": [ - 130572.71045513055, - 149253.1631291483, - 162379.96129144443, - 167465.6561619106, - 165634.88959102842, - 157774.29802578385, - 145116.70519808287, - 129002.21799655346, - 112593.5438976229, - 95873.79280731195, - 79818.4701406636, - 64871.620092402714, - 49943.50073853373, - 35512.14407837286, - 20800.144878380303, - 6166.95444617172, - -8098.927479648124, - -21830.702679433998, - -33366.46966833526, - -43173.31914680861, - -51152.46425187857, - -56883.05841837906, - -61281.57787709871, - -64563.91728993358, - -67006.35128054727, - -68840.40534569426, - -69749.67997660227, - -69519.63677337128, - -67966.13545924824, - -65189.65319545528, - -61438.12099859646, - -57784.885179465244, - -55197.4302133009, - -54545.767674205985, - -56834.27459665076, - -62221.59714001317, - -70036.43141677229, - -79260.07510798112, - -88453.9610909239, - -95399.29743071429, - -99023.26989314702, - -98420.90660831779, - -93214.21306552071, - -83850.66706349858, - -72451.05441273708, - -59326.573305147846, - -45799.90121041999, - -34077.480345704964, - -23330.67545836509, - -14310.335042776725, - -6865.193342730879, - 120.61331902053169, - 5944.31184922705, - 11106.046370379507, - 15594.749893315678, - 18492.894438509273, - 19726.24322588129, - 19062.98177513482, - 16529.231107604835, - 12542.589883327633, - 8018.201078893121, - 3525.1461361760894, - -177.37036464616313, - -2678.339634284312, - -4121.670957816121, - -4717.27778314967, - -5015.295411970038, - -5604.461895437178, - -6779.9383433753255, - -8608.790049796076, - -10656.559333956124, - -12568.383164310442, - -13839.13713436236, - -13897.516268196592, - -12772.616110765774, - -10743.698470787207, - -8289.56566376821, - -5816.069392870889, - -4122.108009041981, - -3229.6245208751984, - -2924.6563455191867, - -2954.583485424993, - -2709.2904594290494, - -1715.0007585691444, - 195.32339044253334, - 2883.6303586016857, - 5742.164728198284, - 8209.177929202675, - 9675.477518031928, - 9964.648924625111, - 9542.249230968735, - 9442.266167304197, - 11106.261207819463, - 16120.115738442913, - 25722.17941702069, - 41043.84661950459, - 60259.98730676342, - 83143.61488251467, - 108601.14848124888, - 130572.71045513055 - ], - "flow:branch65_seg0:J36": [ - 63.0479475253451, - 74.33940764491963, - 82.78040144450878, - 87.6279637513745, - 88.62132131274328, - 85.95099647355032, - 80.2614480386765, - 72.64395331572914, - 63.9837578392155, - 54.96626766385667, - 46.35837168260738, - 38.111897235757155, - 30.255290342004024, - 22.697777518844457, - 15.099605152214012, - 7.624532309676785, - 0.20124659305496892, - -6.943705776654733, - -13.345194533973219, - -18.975663502961904, - -23.588582268969976, - -27.17932658454985, - -29.95195106615697, - -32.03860775426558, - -33.65137150500313, - -34.88823280654894, - -35.717293696555785, - -36.044333662396866, - -35.74901095136296, - -34.77365018251409, - -33.22469282844278, - -31.436273893422054, - -29.832158163332828, - -28.993981899518605, - -29.39849494846275, - -31.32303513605973, - -34.68560519222939, - -39.182854796294954, - -44.08386954582667, - -48.49392468707526, - -51.6742672412947, - -52.88583368928051, - -51.799671065406194, - -48.45487527504472, - -43.342051625617756, - -36.894073629736724, - -29.963430764982995, - -23.198957344958703, - -16.905337000763076, - -11.463056491095635, - -6.753242696375165, - -2.6516238428003676, - 0.9199729749990175, - 4.1300695594652765, - 6.86597256477097, - 8.978030751700205, - 10.280019175740108, - 10.580113086281928, - 9.841045126663795, - 8.219634524941188, - 6.000320224763185, - 3.5408415934683215, - 1.3185323074854542, - -0.4498320490598711, - -1.629666830133536, - -2.2590113908314917, - -2.57822825024591, - -2.859533653449222, - -3.3318393057566316, - -4.115568363932573, - -5.140328930880795, - -6.239202199347752, - -7.123451148807148, - -7.537888744061204, - -7.35308682216933, - -6.5904209305886825, - -5.412758321082826, - -4.1061917297436565, - -2.9759317879687677, - -2.1850417002828575, - -1.7990497933490406, - -1.688780479004374, - -1.6025488146768094, - -1.2770679838195627, - -0.5235265348136017, - 0.674306692295774, - 2.1505403069644813, - 3.6252944488466508, - 4.728839248395504, - 5.28720693609126, - 5.3368780652817795, - 5.225281452083187, - 5.600199766480462, - 7.26666667851303, - 11.017950305739992, - 17.433032866117237, - 26.41587764983923, - 37.812600134745246, - 50.507723506177996, - 63.0479475253451 - ], - "pressure:branch65_seg0:J36": [ - 118719.46099565424, - 137160.83068736384, - 150261.20457080237, - 156208.89157100327, - 155467.0966430944, - 148747.44226551286, - 137244.11994563334, - 122560.31734784387, - 107110.08361722119, - 91285.62266163164, - 76241.26975191128, - 62155.61496171904, - 48396.626145386, - 35193.16651150643, - 21846.69003200715, - 8641.860860369863, - -4279.398278836648, - -16710.88412607914, - -27456.401464503804, - -36716.01077549341, - -44295.797966177335, - -49966.06866288472, - -54356.07541485989, - -57678.59014542775, - -60224.59752671065, - -62181.2203299059, - -63354.0294390972, - -63554.10707498355, - -62591.06906298982, - -60475.5253237661, - -57409.23341435775, - -54221.406646412936, - -51728.049409376625, - -50834.49470468366, - -52437.18466160136, - -56830.23944321368, - -63612.16077950095, - -72006.39726109715, - -80731.71931910506, - -87917.31004502212, - -92431.05282814537, - -93225.19344811374, - -89799.0716856676, - -82413.17270042059, - -72522.09177272482, - -60629.80363131005, - -48097.81647199506, - -36591.00219948566, - -25932.64050899952, - -16832.225576822842, - -9123.05427407401, - -2134.814745980355, - 3813.6388407366194, - 9131.991434473213, - 13700.456852406585, - 16920.235276520492, - 18614.314759607743, - 18502.4415323245, - 16575.449455947142, - 13177.765360893456, - 9034.49513234461, - 4708.449452467113, - 981.7306609833876, - -1737.254972290239, - -3444.98953874855, - -4270.475460670138, - -4692.40073495386, - -5239.511672891465, - -6246.472993888187, - -7841.324373507626, - -9741.190181018163, - -11625.242222904546, - -12996.655178473466, - -13357.55423542506, - -12618.380088001504, - -10945.054903548911, - -8717.452744096381, - -6375.842019315627, - -4588.039157547512, - -3483.378672647439, - -3010.321466983616, - -2930.1138938130734, - -2721.7124081750194, - -1927.477940187141, - -311.1811967162807, - 2068.9559126713484, - 4753.643949700254, - 7230.926215173816, - 8888.140457007286, - 9482.713017593069, - 9305.913061959882, - 9176.793691784183, - 10374.917528529211, - 14375.75018339048, - 22463.949081311483, - 35677.03421641176, - 52967.11432245431, - 74071.20224245486, - 97433.57942564327, - 118719.46099565424 - ], - "flow:J36:branch66_seg0": [ - 20.842231490117406, - 24.437245996806514, - 27.06340604782143, - 28.49238140992855, - 28.67511821452294, - 27.685349258438368, - 25.740507155356052, - 23.21185205114135, - 20.383373442390518, - 17.453136411341674, - 14.685640108803677, - 12.03548252888797, - 9.501942158001441, - 7.067738902785401, - 4.603815967085649, - 2.1872967638831544, - -0.20810512450935612, - -2.5174220624859616, - -4.559285827511469, - -6.348798352524593, - -7.807852447453592, - -8.930248129062173, - -9.797825083898442, - -10.448993770261199, - -10.952224832006493, - -11.338330010692205, - -11.590058531081812, - -11.675003355087858, - -11.554581686604164, - -11.213002197011264, - -10.689673563554607, - -10.103806343997421, - -9.594429818236, - -9.353349908802858, - -9.532915982993861, - -10.213794188315465, - -11.352118829419434, - -12.843996681602404, - -14.441570517584132, - -15.840384111869195, - -16.81582908135911, - -17.130027933624014, - -16.68890170584687, - -15.518128400110992, - -13.803464304553243, - -11.675429821335841, - -9.41461137416497, - -7.242555197180889, - -5.2275800483963755, - -3.499880155492532, - -2.0094064885245637, - -0.7036590982306363, - 0.4302604850005293, - 1.4521911288538882, - 2.31888932142196, - 2.975445876430966, - 3.364480589264515, - 3.4236881887443715, - 3.1455812302338653, - 2.5896596766847577, - 1.8532920001039073, - 1.0502837023461407, - 0.3434153231648269, - -0.2077493555509472, - -0.5680187337658344, - -0.7515118441164963, - -0.8438178597652599, - -0.9350209649624653, - -1.0958866804526177, - -1.3613355043687063, - -1.700321833003985, - -2.0559704117172957, - -2.3328860007069707, - -2.447455782886693, - -2.364471775010915, - -2.0971649464861444, - -1.703048970221202, - -1.2768407161284645, - -0.9201785490505016, - -0.6786073680393148, - -0.5682303612910673, - -0.5421040609563572, - -0.5137524471534964, - -0.3981559444100372, - -0.137931356780315, - 0.2653930786147408, - 0.7507615758771511, - 1.2259538028444155, - 1.5667862148838025, - 1.7251045518038561, - 1.723433584227297, - 1.6846880066132148, - 1.828551720030674, - 2.420474275995759, - 3.7135825118898422, - 5.892820996675136, - 8.888798354466077, - 12.650149929518314, - 16.808223785973944, - 20.842231490117406 - ], - "pressure:J36:branch66_seg0": [ - 118719.46099565424, - 137160.83068736384, - 150261.20457080237, - 156208.89157100327, - 155467.0966430944, - 148747.44226551286, - 137244.11994563334, - 122560.31734784387, - 107110.08361722119, - 91285.62266163164, - 76241.26975191128, - 62155.61496171904, - 48396.626145386, - 35193.16651150643, - 21846.69003200715, - 8641.860860369863, - -4279.398278836648, - -16710.88412607914, - -27456.401464503804, - -36716.01077549341, - -44295.797966177335, - -49966.06866288472, - -54356.07541485989, - -57678.59014542775, - -60224.59752671065, - -62181.2203299059, - -63354.0294390972, - -63554.10707498355, - -62591.06906298982, - -60475.5253237661, - -57409.23341435775, - -54221.406646412936, - -51728.049409376625, - -50834.49470468366, - -52437.18466160136, - -56830.23944321368, - -63612.16077950095, - -72006.39726109715, - -80731.71931910506, - -87917.31004502212, - -92431.05282814537, - -93225.19344811374, - -89799.0716856676, - -82413.17270042059, - -72522.09177272482, - -60629.80363131005, - -48097.81647199506, - -36591.00219948566, - -25932.64050899952, - -16832.225576822842, - -9123.05427407401, - -2134.814745980355, - 3813.6388407366194, - 9131.991434473213, - 13700.456852406585, - 16920.235276520492, - 18614.314759607743, - 18502.4415323245, - 16575.449455947142, - 13177.765360893456, - 9034.49513234461, - 4708.449452467113, - 981.7306609833876, - -1737.254972290239, - -3444.98953874855, - -4270.475460670138, - -4692.40073495386, - -5239.511672891465, - -6246.472993888187, - -7841.324373507626, - -9741.190181018163, - -11625.242222904546, - -12996.655178473466, - -13357.55423542506, - -12618.380088001504, - -10945.054903548911, - -8717.452744096381, - -6375.842019315627, - -4588.039157547512, - -3483.378672647439, - -3010.321466983616, - -2930.1138938130734, - -2721.7124081750194, - -1927.477940187141, - -311.1811967162807, - 2068.9559126713484, - 4753.643949700254, - 7230.926215173816, - 8888.140457007286, - 9482.713017593069, - 9305.913061959882, - 9176.793691784183, - 10374.917528529211, - 14375.75018339048, - 22463.949081311483, - 35677.03421641176, - 52967.11432245431, - 74071.20224245486, - 97433.57942564327, - 118719.46099565424 - ], - "flow:J36:branch67_seg0": [ - 21.465927635802636, - 25.323208526158126, - 28.208894082086175, - 29.871235668376848, - 30.215776013437104, - 29.30844885600699, - 27.37051725244442, - 24.773375583772985, - 21.818082297070188, - 18.743852733565603, - 15.807767387171996, - 12.996344461112226, - 10.32159614486688, - 7.748238791401042, - 5.164055351774437, - 2.620823262724324, - 0.09402575112207519, - -2.336049413908327, - -4.517749154674431, - -6.437365759750906, - -8.009998986932297, - -9.23643068617315, - -10.183101025832611, - -10.895990784796435, - -11.447628042131152, - -11.871038707301292, - -12.156421383775477, - -12.271644202028531, - -12.1753469331217, - -11.847243256422216, - -11.323119569611867, - -10.715013097308622, - -10.167439632205623, - -9.878690028863243, - -10.011368676676607, - -10.66153211893211, - -11.803921737299682, - -13.335607676873066, - -15.00810916259337, - -16.51931941544609, - -17.6140517119327, - -18.03976269391416, - -17.682705256953977, - -16.554442557408436, - -14.817271666353436, - -12.621584716302927, - -10.258883270724455, - -7.946787574313367, - -5.796007322198391, - -3.9345562332432724, - -2.322658173965073, - -0.9209447134532376, - 0.30071292310919506, - 1.3985740611869517, - 2.3345815065379276, - 3.0591584071481828, - 3.507539952116948, - 3.6142637250934047, - 3.366126533461242, - 2.8155721853387283, - 2.0589226148682545, - 1.2193919755342055, - 0.4585185256418308, - -0.14821838721376013, - -0.5532473144884087, - -0.7700192256414471, - -0.8796754502630537, - -0.9749774014940915, - -1.1348123059498758, - -1.4008092383854434, - -1.7501400195595325, - -2.1258853910050464, - -2.429307251503163, - -2.573617697801294, - -2.513419002584953, - -2.255157491638831, - -1.853972972531081, - -1.407787404530446, - -1.02015640095702, - -0.7481257126325667, - -0.6148629044829685, - -0.5765285055746305, - -0.5477556025395554, - -0.4383939836753688, - -0.18327610240165196, - 0.22399474080890386, - 0.7277741841476428, - 1.2321653164651434, - 1.6114708983917438, - 1.805016864322748, - 1.8235548846063543, - 1.784600572268645, - 1.908381253611151, - 2.4694787187320255, - 3.739764811529576, - 5.91636043492107, - 8.973303217528626, - 12.856710911068092, - 17.182531459837612, - 21.465927635802636 - ], - "pressure:J36:branch67_seg0": [ - 118719.46099565424, - 137160.83068736384, - 150261.20457080237, - 156208.89157100327, - 155467.0966430944, - 148747.44226551286, - 137244.11994563334, - 122560.31734784387, - 107110.08361722119, - 91285.62266163164, - 76241.26975191128, - 62155.61496171904, - 48396.626145386, - 35193.16651150643, - 21846.69003200715, - 8641.860860369863, - -4279.398278836648, - -16710.88412607914, - -27456.401464503804, - -36716.01077549341, - -44295.797966177335, - -49966.06866288472, - -54356.07541485989, - -57678.59014542775, - -60224.59752671065, - -62181.2203299059, - -63354.0294390972, - -63554.10707498355, - -62591.06906298982, - -60475.5253237661, - -57409.23341435775, - -54221.406646412936, - -51728.049409376625, - -50834.49470468366, - -52437.18466160136, - -56830.23944321368, - -63612.16077950095, - -72006.39726109715, - -80731.71931910506, - -87917.31004502212, - -92431.05282814537, - -93225.19344811374, - -89799.0716856676, - -82413.17270042059, - -72522.09177272482, - -60629.80363131005, - -48097.81647199506, - -36591.00219948566, - -25932.64050899952, - -16832.225576822842, - -9123.05427407401, - -2134.814745980355, - 3813.6388407366194, - 9131.991434473213, - 13700.456852406585, - 16920.235276520492, - 18614.314759607743, - 18502.4415323245, - 16575.449455947142, - 13177.765360893456, - 9034.49513234461, - 4708.449452467113, - 981.7306609833876, - -1737.254972290239, - -3444.98953874855, - -4270.475460670138, - -4692.40073495386, - -5239.511672891465, - -6246.472993888187, - -7841.324373507626, - -9741.190181018163, - -11625.242222904546, - -12996.655178473466, - -13357.55423542506, - -12618.380088001504, - -10945.054903548911, - -8717.452744096381, - -6375.842019315627, - -4588.039157547512, - -3483.378672647439, - -3010.321466983616, - -2930.1138938130734, - -2721.7124081750194, - -1927.477940187141, - -311.1811967162807, - 2068.9559126713484, - 4753.643949700254, - 7230.926215173816, - 8888.140457007286, - 9482.713017593069, - 9305.913061959882, - 9176.793691784183, - 10374.917528529211, - 14375.75018339048, - 22463.949081311483, - 35677.03421641176, - 52967.11432245431, - 74071.20224245486, - 97433.57942564327, - 118719.46099565424 - ], - "flow:J36:branch82_seg0": [ - 20.739788399425116, - 24.578953121955674, - 27.50810131460147, - 29.264346673069323, - 29.730427084784484, - 28.95719835910488, - 27.15042363087551, - 24.658725680816982, - 21.782302099755455, - 18.769278518948767, - 15.86496418663284, - 13.08007024575666, - 10.431752039136232, - 7.881799824659988, - 5.3317338333541064, - 2.816412283070877, - 0.31532596644412386, - -2.0902343002607053, - -4.268159551787924, - -6.189499390687067, - -7.770730834585198, - -9.012647769317203, - -9.971024956422829, - -10.69362319920789, - -11.25151863086672, - -11.678864088556157, - -11.970813781699727, - -12.097686105279848, - -12.01908233163697, - -11.713404729079869, - -11.211899695275598, - -10.617454452116549, - -10.07028871288943, - -9.761941961852388, - -9.85421028879232, - -10.447708828814363, - -11.529564625511053, - -13.003250437820254, - -14.634189865648729, - -16.134221159759967, - -17.244386448002306, - -17.71604306174274, - -17.428064102605425, - -16.382304317525673, - -14.721315654711148, - -12.597059092097759, - -10.289936120093524, - -8.009614573464468, - -5.8817496301683585, - -4.0286201023597386, - -2.421178033885521, - -1.0270200311164066, - 0.18899956688929184, - 1.279304369424396, - 2.212501736811048, - 2.943426468121095, - 3.407998634358657, - 3.5421611724440756, - 3.329337362968755, - 2.814402662917575, - 2.088105609790942, - 1.2711659155880322, - 0.5165984586787535, - -0.09386430629515286, - -0.5084007818794247, - -0.7374803210735646, - -0.854734940217575, - -0.9495352869925742, - -1.1011403193542686, - -1.3534236211783546, - -1.6898670783171137, - -2.0573463966254293, - -2.361257896597023, - -2.5168152633732386, - -2.4751960445734125, - -2.238098492463633, - -1.8557363783305862, - -1.421563609084683, - -1.035596837961258, - -0.7583086196110169, - -0.6159565275750135, - -0.5701479124733803, - -0.541040764983789, - -0.440518055734188, - -0.20231907563165993, - 0.18491887287215597, - 0.6720045469396568, - 1.1671753295371072, - 1.5505821351199327, - 1.7570855199646014, - 1.7898895964480772, - 1.7559928732013965, - 1.8632667928386726, - 2.3767136837852108, - 3.5646029823207326, - 5.6238514345212085, - 8.553776077844569, - 12.305739294158762, - 16.51696826036665, - 20.739788399425116 - ], - "pressure:J36:branch82_seg0": [ - 118719.46099565424, - 137160.83068736384, - 150261.20457080237, - 156208.89157100327, - 155467.0966430944, - 148747.44226551286, - 137244.11994563334, - 122560.31734784387, - 107110.08361722119, - 91285.62266163164, - 76241.26975191128, - 62155.61496171904, - 48396.626145386, - 35193.16651150643, - 21846.69003200715, - 8641.860860369863, - -4279.398278836648, - -16710.88412607914, - -27456.401464503804, - -36716.01077549341, - -44295.797966177335, - -49966.06866288472, - -54356.07541485989, - -57678.59014542775, - -60224.59752671065, - -62181.2203299059, - -63354.0294390972, - -63554.10707498355, - -62591.06906298982, - -60475.5253237661, - -57409.23341435775, - -54221.406646412936, - -51728.049409376625, - -50834.49470468366, - -52437.18466160136, - -56830.23944321368, - -63612.16077950095, - -72006.39726109715, - -80731.71931910506, - -87917.31004502212, - -92431.05282814537, - -93225.19344811374, - -89799.0716856676, - -82413.17270042059, - -72522.09177272482, - -60629.80363131005, - -48097.81647199506, - -36591.00219948566, - -25932.64050899952, - -16832.225576822842, - -9123.05427407401, - -2134.814745980355, - 3813.6388407366194, - 9131.991434473213, - 13700.456852406585, - 16920.235276520492, - 18614.314759607743, - 18502.4415323245, - 16575.449455947142, - 13177.765360893456, - 9034.49513234461, - 4708.449452467113, - 981.7306609833876, - -1737.254972290239, - -3444.98953874855, - -4270.475460670138, - -4692.40073495386, - -5239.511672891465, - -6246.472993888187, - -7841.324373507626, - -9741.190181018163, - -11625.242222904546, - -12996.655178473466, - -13357.55423542506, - -12618.380088001504, - -10945.054903548911, - -8717.452744096381, - -6375.842019315627, - -4588.039157547512, - -3483.378672647439, - -3010.321466983616, - -2930.1138938130734, - -2721.7124081750194, - -1927.477940187141, - -311.1811967162807, - 2068.9559126713484, - 4753.643949700254, - 7230.926215173816, - 8888.140457007286, - 9482.713017593069, - 9305.913061959882, - 9176.793691784183, - 10374.917528529211, - 14375.75018339048, - 22463.949081311483, - 35677.03421641176, - 52967.11432245431, - 74071.20224245486, - 97433.57942564327, - 118719.46099565424 - ], - "flow:branch70_seg0:J37": [ - 65.99973662935584, - 72.43655874586862, - 74.72973463413058, - 72.8588845260746, - 67.7117551725354, - 60.11309202440669, - 51.010210383939054, - 41.772831398748764, - 33.46545215530812, - 25.780481884141448, - 19.319505757420337, - 13.679695365067694, - 8.043964481799206, - 2.7244768737481277, - -2.9373743219013564, - -8.636226576328026, - -13.829570284103564, - -18.820220546613257, - -22.476325463451605, - -25.220683050765185, - -27.0141235418852, - -27.852467443863205, - -28.339205502735364, - -28.549919508718126, - -28.672372331148445, - -28.686302369023938, - -28.37389378591391, - -27.536090407752358, - -26.09510575689372, - -24.087637668644618, - -21.846102169248418, - -19.98156773915812, - -19.02412808264499, - -19.504097765313862, - -21.754220604694968, - -25.560856074605198, - -30.402314657631056, - -35.36279587665475, - -39.68417668881538, - -42.04902673833378, - -42.229993649056354, - -39.84846773622068, - -35.25783860989304, - -28.906506296960956, - -22.15851816758948, - -15.26670419359302, - -9.133527977673017, - -4.457652183208225, - -0.6044368904281066, - 2.05369776418791, - 4.159812217547112, - 6.043326867877059, - 7.613040930705843, - 9.091516061819997, - 10.154340305982295, - 10.46577626098183, - 9.937983049448768, - 8.445165375676469, - 6.15138895555879, - 3.428862974675198, - 0.8327407458947932, - -1.388944780984395, - -2.795195344998634, - -3.3385337671610507, - -3.327564609538478, - -2.9524666469839693, - -2.6568049300600647, - -2.75532637850914, - -3.3230592354688975, - -4.310343680623862, - -5.355490360009604, - -6.197980565143918, - -6.482255174832886, - -6.032903702491681, - -4.928846156191456, - -3.478593776366683, - -1.9633070253637752, - -0.7762261171031667, - -0.1986639993303451, - -0.14621592672473044, - -0.44873378701028693, - -0.7869596672687539, - -0.7719586898295473, - -0.1789320937969791, - 0.9891181393495452, - 2.5219751039291203, - 3.956440127871225, - 4.968314840900223, - 5.213696122399984, - 4.7484812290404195, - 4.019746273941415, - 3.7484243576623926, - 4.810212873543108, - 8.110004802222186, - 13.982628611830158, - 22.908222729962286, - 33.39033402745925, - 45.374646340056685, - 56.95904774540954, - 65.99973662935584 - ], - "pressure:branch70_seg0:J37": [ - 194624.7302327168, - 206409.61832523235, - 208898.05655539813, - 197655.35525520318, - 178516.75726854496, - 155075.50628907533, - 129578.2591854386, - 101625.82890395698, - 81653.94319755677, - 62478.16828001448, - 44136.73555024665, - 30903.660140069103, - 14595.100610666514, - -105.82793468228881, - -15036.568813232829, - -31940.38923647346, - -44987.127115194824, - -57819.69902307726, - -67080.56665609301, - -72651.62003051337, - -76770.17738374566, - -78248.13496365845, - -78906.25203576664, - -79472.3544235417, - -79642.22980928035, - -79444.66307054185, - -78070.75006051936, - -74879.64141745467, - -69931.77061254639, - -63863.61296826088, - -57461.17169260297, - -53015.22165722268, - -52370.94082134687, - -55691.92793741896, - -64259.170927409534, - -76733.08332360897, - -91633.76838802872, - -104251.27085933724, - -115115.25798564241, - -118846.87670005142, - -115547.93253127395, - -105957.34868649929, - -90789.17442939205, - -71162.14240834798, - -52132.199244690106, - -33973.36306164871, - -17517.165393267976, - -6442.489506062969, - 2478.5168629179, - 9231.18238815089, - 14084.603107168996, - 19375.154496496365, - 23473.25457088987, - 26792.459202419548, - 29512.12854762909, - 29072.13982788517, - 26176.041365182245, - 20831.289154858885, - 13742.521893180867, - 5316.471952222968, - -1112.7541634535364, - -6103.334805526578, - -9449.237758403217, - -9558.783474247024, - -8810.115867168819, - -7739.290702271751, - -7132.672979214611, - -8004.8027564583, - -10222.489915717635, - -13388.114253850945, - -16206.690744210333, - -17977.619674427297, - -17999.0484790208, - -15799.74769544397, - -11851.883119867745, - -7506.474634467346, - -3565.0294949313948, - -686.8201103286356, - 37.42972250620969, - -711.3130339108009, - -1748.9707944421452, - -2475.1227734788085, - -1841.9954792977078, - 693.9285815039883, - 4550.68356743508, - 9301.845767256735, - 12767.154209405482, - 14558.49034133045, - 14449.457135080382, - 12281.181335107809, - 10175.430305763563, - 10581.71832323702, - 15834.007586728538, - 28338.204125762684, - 48014.74466992745, - 76646.80087782253, - 107587.6709147807, - 141192.67855913896, - 173594.08325950525, - 194624.7302327168 - ], - "flow:J37:branch71_seg0": [ - 31.836551669107525, - 35.26779174340403, - 36.68793443962683, - 36.14148871452439, - 33.88026167565926, - 30.314385521787145, - 25.924845809899153, - 21.407785966649964, - 17.196464847121756, - 13.375115328433361, - 10.071411582109084, - 7.211726587837482, - 4.430276227490025, - 1.7676487589224479, - -0.9826844275978588, - -3.8286763070049314, - -6.40442616073563, - -8.87879105305262, - -10.788991161462356, - -12.235187594437708, - -13.186256579030072, - -13.682707467448331, - -13.960663393562244, - -14.08327710168039, - -14.159999463534312, - -14.172187810427658, - -14.04591075507753, - -13.673831668096847, - -13.016128263627424, - -12.061574270430247, - -10.985365062934834, - -10.02928861375783, - -9.482632040224575, - -9.609927236619587, - -10.586976609739017, - -12.327004178867506, - -14.656180004673201, - -17.079565935732788, - -19.25818252685592, - -20.578579416660947, - -20.846954538268747, - -19.85636374287477, - -17.79616753319069, - -14.81117065408381, - -11.513820667895454, - -8.108789155125178, - -5.048581481054757, - -2.6126132571018026, - -0.6251780367723586, - 0.7638816757056159, - 1.8881571283974812, - 2.8142245971935274, - 3.6256574495226332, - 4.377814490402081, - 4.923261065361519, - 5.144747454140421, - 4.952008665775215, - 4.288098974257647, - 3.21958099491522, - 1.9124038848199925, - 0.6158541169344124, - -0.5006399368233249, - -1.2642198113675174, - -1.6020887042320269, - -1.6411277429485356, - -1.4849954758717314, - -1.3386466698734403, - -1.3579830739165155, - -1.596976510309388, - -2.0501477519104214, - -2.558950216953498, - -2.9952552364227314, - -3.1732904695197237, - -3.0159698579885545, - -2.5241975050887255, - -1.8428849384666068, - -1.0910311779425879, - -0.4904962863629077, - -0.15016643423900583, - -0.07764399509699525, - -0.20047467044307463, - -0.3626375640387272, - -0.38041613958785075, - -0.13229230086753904, - 0.3988569713693641, - 1.125782472843143, - 1.842573600563506, - 2.3694681910378117, - 2.551045760041415, - 2.381925459482704, - 2.044879543052881, - 1.8789601202980708, - 2.295289252505304, - 3.76301820748588, - 6.429089881283418, - 10.591356831774915, - 15.612085405657762, - 21.475833774689683, - 27.123178105216013, - 31.836551669107525 - ], - "pressure:J37:branch71_seg0": [ - 194624.7302327168, - 206409.61832523235, - 208898.05655539813, - 197655.35525520318, - 178516.75726854496, - 155075.50628907533, - 129578.2591854386, - 101625.82890395698, - 81653.94319755677, - 62478.16828001448, - 44136.73555024665, - 30903.660140069103, - 14595.100610666514, - -105.82793468228881, - -15036.568813232829, - -31940.38923647346, - -44987.127115194824, - -57819.69902307726, - -67080.56665609301, - -72651.62003051337, - -76770.17738374566, - -78248.13496365845, - -78906.25203576664, - -79472.3544235417, - -79642.22980928035, - -79444.66307054185, - -78070.75006051936, - -74879.64141745467, - -69931.77061254639, - -63863.61296826088, - -57461.17169260297, - -53015.22165722268, - -52370.94082134687, - -55691.92793741896, - -64259.170927409534, - -76733.08332360897, - -91633.76838802872, - -104251.27085933724, - -115115.25798564241, - -118846.87670005142, - -115547.93253127395, - -105957.34868649929, - -90789.17442939205, - -71162.14240834798, - -52132.199244690106, - -33973.36306164871, - -17517.165393267976, - -6442.489506062969, - 2478.5168629179, - 9231.18238815089, - 14084.603107168996, - 19375.154496496365, - 23473.25457088987, - 26792.459202419548, - 29512.12854762909, - 29072.13982788517, - 26176.041365182245, - 20831.289154858885, - 13742.521893180867, - 5316.471952222968, - -1112.7541634535364, - -6103.334805526578, - -9449.237758403217, - -9558.783474247024, - -8810.115867168819, - -7739.290702271751, - -7132.672979214611, - -8004.8027564583, - -10222.489915717635, - -13388.114253850945, - -16206.690744210333, - -17977.619674427297, - -17999.0484790208, - -15799.74769544397, - -11851.883119867745, - -7506.474634467346, - -3565.0294949313948, - -686.8201103286356, - 37.42972250620969, - -711.3130339108009, - -1748.9707944421452, - -2475.1227734788085, - -1841.9954792977078, - 693.9285815039883, - 4550.68356743508, - 9301.845767256735, - 12767.154209405482, - 14558.49034133045, - 14449.457135080382, - 12281.181335107809, - 10175.430305763563, - 10581.71832323702, - 15834.007586728538, - 28338.204125762684, - 48014.74466992745, - 76646.80087782253, - 107587.6709147807, - 141192.67855913896, - 173594.08325950525, - 194624.7302327168 - ], - "flow:J37:branch75_seg0": [ - 34.16318496024803, - 37.16876700246418, - 38.041800194503224, - 36.71739581154963, - 33.83149349687497, - 29.798706502620245, - 25.08536457403873, - 20.3650454320994, - 16.268987308185245, - 12.405366555707008, - 9.248094175312026, - 6.4679687772283865, - 3.6136882543110045, - 0.956828114824462, - -1.9546898943040738, - -4.807550269322752, - -7.425144123368261, - -9.941429493559822, - -11.687334301988713, - -12.985495456327923, - -13.827866962855254, - -14.16975997641266, - -14.378542109173791, - -14.466642407039274, - -14.512372867612747, - -14.5141145585969, - -14.327983030836624, - -13.862258739656196, - -13.078977493266027, - -12.026063398214552, - -10.86073710631377, - -9.952279125400795, - -9.541496042421612, - -9.89417052869522, - -11.167243994955497, - -13.233851895738352, - -15.74613465295784, - -18.283229940921945, - -20.425994161959366, - -21.470447321672832, - -21.383039110787454, - -19.992103993345633, - -17.46167107670259, - -14.095335642877174, - -10.644697499693947, - -7.157915038467821, - -4.084946496618252, - -1.8450389261064064, - 0.02074114634425504, - 1.2898160884823, - 2.2716550891496388, - 3.2291022706835335, - 3.987383481183195, - 4.713701571417902, - 5.231079240620761, - 5.32102880684146, - 4.9859743836735895, - 4.157066401418728, - 2.93180796064345, - 1.5164590898549997, - 0.21688662896030517, - -0.8883048441611423, - -1.530975533631091, - -1.7364450629290056, - -1.6864368665899971, - -1.4674711711122355, - -1.3181582601867194, - -1.3973433045926644, - -1.7260827251594912, - -2.2601959287135016, - -2.796540143056217, - -3.202725328721124, - -3.308964705313133, - -3.016933844503149, - -2.4046486511027223, - -1.6357088379000633, - -0.8722758474211899, - -0.2857298307402404, - -0.048497565091345736, - -0.06857193162774752, - -0.2482591165672139, - -0.424322103230021, - -0.3915425502416822, - -0.046639792929449794, - 0.5902611679801779, - 1.3961926310859687, - 2.113866527307703, - 2.5988466498624336, - 2.662650362358549, - 2.36655576955768, - 1.9748667308885341, - 1.869464237364289, - 2.5149236210378203, - 4.346986594736268, - 7.553538730546784, - 12.316865898187338, - 17.778248621801396, - 23.89881256536728, - 29.835869640193476, - 34.16318496024803 - ], - "pressure:J37:branch75_seg0": [ - 194624.7302327168, - 206409.61832523235, - 208898.05655539813, - 197655.35525520318, - 178516.75726854496, - 155075.50628907533, - 129578.2591854386, - 101625.82890395698, - 81653.94319755677, - 62478.16828001448, - 44136.73555024665, - 30903.660140069103, - 14595.100610666514, - -105.82793468228881, - -15036.568813232829, - -31940.38923647346, - -44987.127115194824, - -57819.69902307726, - -67080.56665609301, - -72651.62003051337, - -76770.17738374566, - -78248.13496365845, - -78906.25203576664, - -79472.3544235417, - -79642.22980928035, - -79444.66307054185, - -78070.75006051936, - -74879.64141745467, - -69931.77061254639, - -63863.61296826088, - -57461.17169260297, - -53015.22165722268, - -52370.94082134687, - -55691.92793741896, - -64259.170927409534, - -76733.08332360897, - -91633.76838802872, - -104251.27085933724, - -115115.25798564241, - -118846.87670005142, - -115547.93253127395, - -105957.34868649929, - -90789.17442939205, - -71162.14240834798, - -52132.199244690106, - -33973.36306164871, - -17517.165393267976, - -6442.489506062969, - 2478.5168629179, - 9231.18238815089, - 14084.603107168996, - 19375.154496496365, - 23473.25457088987, - 26792.459202419548, - 29512.12854762909, - 29072.13982788517, - 26176.041365182245, - 20831.289154858885, - 13742.521893180867, - 5316.471952222968, - -1112.7541634535364, - -6103.334805526578, - -9449.237758403217, - -9558.783474247024, - -8810.115867168819, - -7739.290702271751, - -7132.672979214611, - -8004.8027564583, - -10222.489915717635, - -13388.114253850945, - -16206.690744210333, - -17977.619674427297, - -17999.0484790208, - -15799.74769544397, - -11851.883119867745, - -7506.474634467346, - -3565.0294949313948, - -686.8201103286356, - 37.42972250620969, - -711.3130339108009, - -1748.9707944421452, - -2475.1227734788085, - -1841.9954792977078, - 693.9285815039883, - 4550.68356743508, - 9301.845767256735, - 12767.154209405482, - 14558.49034133045, - 14449.457135080382, - 12281.181335107809, - 10175.430305763563, - 10581.71832323702, - 15834.007586728538, - 28338.204125762684, - 48014.74466992745, - 76646.80087782253, - 107587.6709147807, - 141192.67855913896, - 173594.08325950525, - 194624.7302327168 - ], - "flow:branch72_seg0:J38": [ - 100.70250857148334, - 111.95181685301075, - 117.12585145012538, - 115.8380471030871, - 109.12071729046535, - 98.16006209882921, - 84.50692352943275, - 69.8541622354264, - 56.453266660001745, - 43.81402027919967, - 32.92237298986102, - 23.45895574872279, - 14.267899900915411, - 5.680990362427773, - -3.2501634236122663, - -12.200119239777573, - -20.65387097871466, - -28.499752725654105, - -34.686451037413974, - -39.42614913550992, - -42.56666780597194, - -44.26079246038019, - -45.17183477174051, - -45.563613054211714, - -45.738574626897766, - -45.708496989987154, - -45.21587716844952, - -43.98817954613144, - -41.84432287777421, - -38.84770826035363, - -35.37452881808603, - -32.319688666955386, - -30.48161509378525, - -30.689940350373394, - -33.516719668471204, - -38.84012509657363, - -45.9811840868058, - -53.654895474714564, - -60.6513408991849, - -65.08540764039823, - -66.27944292454399, - -63.61702545832068, - -57.30775538533564, - -48.12674913501876, - -37.7378443195268, - -26.80186560434322, - -16.874275613695616, - -8.799066365338517, - -2.2103011234534087, - 2.562722376315924, - 6.282567881798966, - 9.451292404321363, - 12.030811538627477, - 14.401722476411122, - 16.176119073367083, - 16.84388009339378, - 16.26721797320645, - 14.209907772091768, - 10.887198117138608, - 6.718023025358447, - 2.6052080732182272, - -1.073806581550722, - -3.6621486460334878, - -4.947239041140177, - -5.247029476147486, - -4.887006778650762, - -4.473223549889834, - -4.517788289436863, - -5.233261673682872, - -6.587145956393834, - -8.149480319918206, - -9.514050474954566, - -10.119106373481886, - -9.665414770479392, - -8.19413058660601, - -6.068356187401962, - -3.7378752574047587, - -1.7614411982619298, - -0.6373072170851624, - -0.3059129395317553, - -0.5885306799003862, - -1.0379597236324047, - -1.087975667706546, - -0.34667840195944605, - 1.2504551820747483, - 3.493931962362194, - 5.713538927436404, - 7.4224307500223174, - 8.08994980566647, - 7.663989998656796, - 6.69159045361949, - 6.180028998213198, - 7.452047583498635, - 11.849973366423287, - 20.223394506111006, - 33.09197247508095, - 48.91340888813683, - 67.39557421333105, - 85.63107387862598, - 100.70250857148334 - ], - "pressure:branch72_seg0:J38": [ - 192294.02086547925, - 205749.64240737425, - 210398.78071109718, - 201180.2218696146, - 183567.97929206103, - 160983.5662348645, - 135785.58926308458, - 107680.13635264226, - 86248.68332893774, - 65886.13599779615, - 47066.84760095248, - 32609.497675125294, - 16144.1257410002, - 1137.6187857441091, - -14220.175341831833, - -30514.69464469238, - -44345.19916510233, - -57612.23619713513, - -67170.36459622836, - -73272.73656133187, - -77811.12546763767, - -79553.53526137493, - -80312.06919054872, - -80802.14562927655, - -80799.82944359726, - -80537.91819953886, - -79146.76756061015, - -76090.52866804223, - -71273.96844852144, - -65372.886456400935, - -58863.662993770995, - -54106.120122408, - -52779.45794518541, - -55256.43373387663, - -62828.57044346209, - -74651.51308501058, - -88869.70798753339, - -102014.130582009, - -113429.96403912747, - -118395.48008668472, - -116525.71278192372, - -108327.22535063824, - -93933.94023399086, - -74821.91322709947, - -55856.763111044595, - -37331.958139805385, - -19969.125192843254, - -7953.185485321788, - 1754.933680387426, - 9221.793126385804, - 14256.934086869807, - 19885.70388651022, - 24036.5773480696, - 27331.316995814825, - 30184.22846840279, - 30049.08106732303, - 27505.305690341473, - 22523.47019548214, - 15634.822540886256, - 7349.110398332543, - 520.3692041169137, - -5023.251062371484, - -8740.78964173184, - -9534.84506437425, - -9177.010804692143, - -8249.199948761208, - -7577.551844858571, - -8213.821266061936, - -10193.888129045159, - -13167.184358698794, - -15949.148857156852, - -17816.861699985297, - -18169.091343933327, - -16277.100244943911, - -12644.518552745816, - -8365.02585471746, - -4435.48333643155, - -1247.7484357757814, - -173.35879723570991, - -603.8757915147229, - -1449.6124614526987, - -2178.0302765142424, - -1741.656690323397, - 458.4464575612927, - 4046.5473397795326, - 8591.564500480348, - 12212.578372020635, - 14366.037027187735, - 14589.182788556427, - 12784.530356134168, - 10772.016376227033, - 10836.137618679542, - 15375.90867915099, - 26633.55763046242, - 45355.71894499562, - 72834.21809938815, - 103353.75415188177, - 136143.41186243374, - 169949.7886222853, - 192294.02086547925 - ], - "flow:J38:branch73_seg0": [ - 58.74319144561281, - 65.90891386326021, - 69.55995472320664, - 69.46314057806754, - 65.9987075076125, - 59.87396643600845, - 52.00087412450128, - 43.32790637731869, - 35.21665474845465, - 27.573501324715643, - 20.87556796867873, - 15.04513915689687, - 9.518112877812284, - 4.31008082447765, - -0.9994447478503176, - -6.362387147906649, - -11.529300421607564, - -16.22941737296442, - -20.11849070785801, - -23.135713078731307, - -25.15070360729701, - -26.32688616352405, - -26.955085652100674, - -27.238324819977247, - -27.375471327833765, - -27.376058320650923, - -27.12491217946584, - -26.46613116392953, - -25.271514125477193, - -23.565808094633635, - -21.53624915613418, - -19.67468696633931, - -18.450320515653903, - -18.371862805523982, - -19.794462469008206, - -22.71311359210193, - -26.80644072363967, - -31.34621029529545, - -35.58088643942827, - -38.505831241566, - -39.552893619131474, - -38.35246810999556, - -34.937457183964725, - -29.770504078992868, - -23.65967722915145, - -17.129868999190208, - -11.141201452204964, - -6.094581306370489, - -1.9975858760624448, - 1.0246671565506882, - 3.3888348400793156, - 5.334463280700039, - 6.9252483116597565, - 8.38558176115556, - 9.501027304603925, - 10.010022947947864, - 9.79488401929846, - 8.71045193128867, - 6.858016881907219, - 4.448730516944017, - 1.988099132797783, - -0.24700492037353938, - -1.9148094650372567, - -2.826218053886864, - -3.1019517368825404, - -2.955860719707919, - -2.720019040518749, - -2.701683474136039, - -3.0643220302263683, - -3.80746241765702, - -4.722833275970826, - -5.565849313787836, - -5.994125573988923, - -5.827805758227784, - -5.052154226292896, - -3.844348321452037, - -2.469707431287676, - -1.2565780112221645, - -0.5060701864677734, - -0.22115975649255368, - -0.3303063683825044, - -0.5789506469880239, - -0.6447748423953203, - -0.28033580691711585, - 0.5869913191785503, - 1.863627835813966, - 3.1921134464227556, - 4.259843739323076, - 4.7689219228281505, - 4.629279524939404, - 4.104050710802907, - 3.7501533903787285, - 4.335435009874994, - 6.650578320051593, - 11.287872232574058, - 18.50866371625223, - 27.687582321898375, - 38.574196519430494, - 49.41678049113577, - 58.74319144561281 - ], - "pressure:J38:branch73_seg0": [ - 192294.02086547925, - 205749.64240737425, - 210398.78071109718, - 201180.2218696146, - 183567.97929206103, - 160983.5662348645, - 135785.58926308458, - 107680.13635264226, - 86248.68332893774, - 65886.13599779615, - 47066.84760095248, - 32609.497675125294, - 16144.1257410002, - 1137.6187857441091, - -14220.175341831833, - -30514.69464469238, - -44345.19916510233, - -57612.23619713513, - -67170.36459622836, - -73272.73656133187, - -77811.12546763767, - -79553.53526137493, - -80312.06919054872, - -80802.14562927655, - -80799.82944359726, - -80537.91819953886, - -79146.76756061015, - -76090.52866804223, - -71273.96844852144, - -65372.886456400935, - -58863.662993770995, - -54106.120122408, - -52779.45794518541, - -55256.43373387663, - -62828.57044346209, - -74651.51308501058, - -88869.70798753339, - -102014.130582009, - -113429.96403912747, - -118395.48008668472, - -116525.71278192372, - -108327.22535063824, - -93933.94023399086, - -74821.91322709947, - -55856.763111044595, - -37331.958139805385, - -19969.125192843254, - -7953.185485321788, - 1754.933680387426, - 9221.793126385804, - 14256.934086869807, - 19885.70388651022, - 24036.5773480696, - 27331.316995814825, - 30184.22846840279, - 30049.08106732303, - 27505.305690341473, - 22523.47019548214, - 15634.822540886256, - 7349.110398332543, - 520.3692041169137, - -5023.251062371484, - -8740.78964173184, - -9534.84506437425, - -9177.010804692143, - -8249.199948761208, - -7577.551844858571, - -8213.821266061936, - -10193.888129045159, - -13167.184358698794, - -15949.148857156852, - -17816.861699985297, - -18169.091343933327, - -16277.100244943911, - -12644.518552745816, - -8365.02585471746, - -4435.48333643155, - -1247.7484357757814, - -173.35879723570991, - -603.8757915147229, - -1449.6124614526987, - -2178.0302765142424, - -1741.656690323397, - 458.4464575612927, - 4046.5473397795326, - 8591.564500480348, - 12212.578372020635, - 14366.037027187735, - 14589.182788556427, - 12784.530356134168, - 10772.016376227033, - 10836.137618679542, - 15375.90867915099, - 26633.55763046242, - 45355.71894499562, - 72834.21809938815, - 103353.75415188177, - 136143.41186243374, - 169949.7886222853, - 192294.02086547925 - ], - "flow:J38:branch78_seg0": [ - 41.95931712587023, - 46.042902989750324, - 47.56589672692014, - 46.37490652502075, - 43.12200978285376, - 38.28609566282077, - 32.50604940493007, - 26.526255858104292, - 21.23661191154898, - 16.240518954483676, - 12.046805021180447, - 8.413816591828018, - 4.749787023104646, - 1.3709095379514717, - -2.250718675762523, - -5.8377320918727795, - -9.124570557106264, - -12.270335352687985, - -14.567960329557826, - -16.290436056780848, - -17.415964198678758, - -17.933906296853934, - -18.216749119641047, - -18.32528823423607, - -18.363103299061677, - -18.33243866933354, - -18.0909649889838, - -17.52204838220165, - -16.572808752296503, - -15.281900165720222, - -13.83827966195185, - -12.64500170061558, - -12.031294578130444, - -12.318077544846814, - -13.72225719946333, - -16.127011504470683, - -19.17474336316555, - -22.308685179419264, - -25.07045445975574, - -26.57957639883079, - -26.72654930541256, - -25.264557348324697, - -22.37029820137083, - -18.356245056025802, - -14.07816709037543, - -9.671996605153007, - -5.733074161490665, - -2.7044850589680167, - -0.2127152473909558, - 1.5380552197652235, - 2.893733041719701, - 4.116829123621321, - 5.105563226967735, - 6.016140715255582, - 6.675091768763123, - 6.833857145445989, - 6.472333953907837, - 5.499455840803261, - 4.0291812352313405, - 2.2692925084143827, - 0.6171089404207121, - -0.8268016611773291, - -1.7473391809959882, - -2.121020987253507, - -2.145077739264898, - -1.9311460589428617, - -1.7532045093711461, - -1.816104815300975, - -2.168939643456603, - -2.7796835387364767, - -3.4266470439472014, - -3.9482011611667094, - -4.124980799492912, - -3.8376090122516575, - -3.1419763603131607, - -2.2240078659499494, - -1.2681678261170677, - -0.5048631870397432, - -0.13123703061739928, - -0.08475318303915522, - -0.2582243115178801, - -0.45900907664439117, - -0.44320082531122346, - -0.06634259504232623, - 0.6634638628962021, - 1.6303041265481988, - 2.521425481013657, - 3.16258701069922, - 3.3210278828383832, - 3.034710473717343, - 2.5875397428166256, - 2.429875607834561, - 3.116612573623563, - 5.199395046371545, - 8.935522273537021, - 14.583308758828858, - 21.22582656623838, - 28.821377693900235, - 36.214293387490216, - 41.95931712587023 - ], - "pressure:J38:branch78_seg0": [ - 192294.02086547925, - 205749.64240737425, - 210398.78071109718, - 201180.2218696146, - 183567.97929206103, - 160983.5662348645, - 135785.58926308458, - 107680.13635264226, - 86248.68332893774, - 65886.13599779615, - 47066.84760095248, - 32609.497675125294, - 16144.1257410002, - 1137.6187857441091, - -14220.175341831833, - -30514.69464469238, - -44345.19916510233, - -57612.23619713513, - -67170.36459622836, - -73272.73656133187, - -77811.12546763767, - -79553.53526137493, - -80312.06919054872, - -80802.14562927655, - -80799.82944359726, - -80537.91819953886, - -79146.76756061015, - -76090.52866804223, - -71273.96844852144, - -65372.886456400935, - -58863.662993770995, - -54106.120122408, - -52779.45794518541, - -55256.43373387663, - -62828.57044346209, - -74651.51308501058, - -88869.70798753339, - -102014.130582009, - -113429.96403912747, - -118395.48008668472, - -116525.71278192372, - -108327.22535063824, - -93933.94023399086, - -74821.91322709947, - -55856.763111044595, - -37331.958139805385, - -19969.125192843254, - -7953.185485321788, - 1754.933680387426, - 9221.793126385804, - 14256.934086869807, - 19885.70388651022, - 24036.5773480696, - 27331.316995814825, - 30184.22846840279, - 30049.08106732303, - 27505.305690341473, - 22523.47019548214, - 15634.822540886256, - 7349.110398332543, - 520.3692041169137, - -5023.251062371484, - -8740.78964173184, - -9534.84506437425, - -9177.010804692143, - -8249.199948761208, - -7577.551844858571, - -8213.821266061936, - -10193.888129045159, - -13167.184358698794, - -15949.148857156852, - -17816.861699985297, - -18169.091343933327, - -16277.100244943911, - -12644.518552745816, - -8365.02585471746, - -4435.48333643155, - -1247.7484357757814, - -173.35879723570991, - -603.8757915147229, - -1449.6124614526987, - -2178.0302765142424, - -1741.656690323397, - 458.4464575612927, - 4046.5473397795326, - 8591.564500480348, - 12212.578372020635, - 14366.037027187735, - 14589.182788556427, - 12784.530356134168, - 10772.016376227033, - 10836.137618679542, - 15375.90867915099, - 26633.55763046242, - 45355.71894499562, - 72834.21809938815, - 103353.75415188177, - 136143.41186243374, - 169949.7886222853, - 192294.02086547925 - ], - "flow:branch73_seg0:J39": [ - 58.699408214025425, - 65.89660931508357, - 69.56968028731838, - 69.48860882030516, - 66.04702132163817, - 59.942204846219596, - 52.062495304576665, - 43.41789719649911, - 35.28916862460522, - 27.613638051975386, - 20.93970227928697, - 15.087753607840437, - 9.565628718080342, - 4.359217371079519, - -0.9724673651028329, - -6.3109716262853555, - -11.494248361104317, - -16.217949592166317, - -20.102312293793563, - -23.125579208121014, - -25.151244429902285, - -26.32404495968499, - -26.956861286087232, - -27.240118793833208, - -27.374585703528542, - -27.378753634111273, - -27.129358705959067, - -26.475179908008336, - -25.284300629414865, - -23.583269976392263, - -21.549581036037214, - -19.68782901632941, - -18.449376501174648, - -18.358903716339974, - -19.767903442040573, - -22.68280598153073, - -26.75513740927835, - -31.314411037099173, - -35.55753637250782, - -38.497507714759536, - -39.56773372522773, - -38.38826542173999, - -34.97156107519626, - -29.804442986749393, - -23.697340657959412, - -17.16695252143664, - -11.160457961497455, - -6.116613402781219, - -2.0077479129749527, - 1.0187105586170244, - 3.37261249870725, - 5.328196062355169, - 6.9144838437115395, - 8.37807965435512, - 9.496398288709152, - 10.010543483558278, - 9.80416625229842, - 8.72837110456337, - 6.876362549793338, - 4.476867024392431, - 2.0096529019849974, - -0.24027585749058256, - -1.9048773309521259, - -2.8240026722172082, - -3.10607298846608, - -2.958163311485826, - -2.7195839388209695, - -2.6981043437463033, - -3.0593849808644564, - -3.8022213943839462, - -4.7189047364768975, - -5.563193378755936, - -5.997957346537616, - -5.832926216073954, - -5.061220068284652, - -3.8524545943306485, - -2.4793483178582205, - -1.2601782858815018, - -0.5083800814049154, - -0.21931143582489837, - -0.3272817993475138, - -0.5784779579399371, - -0.6478930439723714, - -0.2890817215953325, - 0.5766614377925718, - 1.8486916728120952, - 3.181768767736918, - 4.259626455690294, - 4.770899716961543, - 4.63322090463652, - 4.107876137059409, - 3.7453316364649827, - 4.318797848400798, - 6.612294471125331, - 11.243776857759782, - 18.456142082404952, - 27.636901994073312, - 38.49356409271608, - 49.380796512270905, - 58.699408214025425 - ], - "pressure:branch73_seg0:J39": [ - 187117.31019225682, - 201920.46181176734, - 208150.87868293028, - 200777.80467832083, - 184860.87685581998, - 163610.9632497194, - 139269.52393900574, - 111847.01937906144, - 89537.38178697291, - 69076.43048734381, - 50161.76200623741, - 34980.693443573226, - 18812.00293825378, - 3535.01677659241, - -11865.698520740461, - -27666.311323005782, - -42113.79700444263, - -55616.18004705705, - -65219.37756278711, - -71861.03534624421, - -76749.28641795085, - -78711.295387046, - -79725.62565147252, - -80244.33064359648, - -80276.86527810276, - -80122.81270681707, - -78865.08270452298, - -76075.53824350816, - -71559.51345757332, - -65943.95326397203, - -59543.881905739836, - -54659.23673371359, - -52867.65613203375, - -54626.05705883819, - -61383.41042227948, - -72464.16572626207, - -85996.8165200112, - -99400.1043442437, - -110950.72955802809, - -116801.70313218128, - -115983.2769436872, - -108833.61732668139, - -95248.96720579093, - -76724.33749576866, - -58340.064330681926, - -39842.82156357754, - -22147.216935317465, - -9955.571761603876, - 279.03794391404966, - 7964.25816068307, - 13099.963445517695, - 18981.88344485326, - 23112.854299767005, - 26478.748425282527, - 29529.021364218963, - 29760.82428130619, - 27641.360904241646, - 23156.71655020232, - 16604.88050409386, - 8708.641823988768, - 1634.0833636173154, - -4080.122289209991, - -7999.797527707967, - -9274.300376660074, - -9147.35841312151, - -8308.162553073531, - -7610.839035821559, - -8090.4697495829805, - -9894.98391937043, - -12745.57536475702, - -15456.215067483006, - -17408.96270427764, - -18011.35999659235, - -16373.438525136344, - -13040.709428787493, - -8920.278877677834, - -5077.806214882147, - -1736.5609663351556, - -449.6644788348638, - -652.0866547065209, - -1325.1404197239317, - -2065.155312922706, - -1778.7441786633844, - 129.66207280662326, - 3490.678205474293, - 7796.081164587716, - 11565.572887629072, - 13932.144752513683, - 14410.468255058286, - 12910.750997110632, - 10966.216016347355, - 10773.121546926022, - 14694.754203098042, - 24950.529084943515, - 42612.21556394505, - 69025.92882019909, - 98458.42260785581, - 130175.74166230725, - 164611.75848953106, - 187117.31019225682 - ], - "flow:J39:branch74_seg0": [ - 26.964209247530295, - 30.31990482847084, - 32.0702318711881, - 32.10475661469004, - 30.56663795832989, - 27.8007204342545, - 24.218940292987465, - 20.205116488329462, - 16.47267491251469, - 12.942902480823891, - 9.808062572405529, - 7.0973359139078935, - 4.53434495697404, - 2.111742409377312, - -0.3261370277743615, - -2.8176242281889783, - -5.230327167222898, - -7.381417927740673, - -9.213755813192368, - -10.63222609191388, - -11.578171726451973, - -12.14874175264547, - -12.449254042616694, - -12.588601896410196, - -12.658584170722715, - -12.66036464369607, - -12.54783380086726, - -12.251322545611481, - -11.707052499156937, - -10.932240473571694, - -10.000850817270612, - -9.142466243806355, - -8.568504355932195, - -8.51015071388242, - -9.134094491711178, - -10.44530319963454, - -12.315699807096474, - -14.397245069167907, - -16.35011112765035, - -17.736323843795503, - -18.253004854887887, - -17.75164065922051, - -16.217790869218362, - -13.883851509552446, - -11.070483778896062, - -8.053755005105922, - -5.288994296401492, - -2.926010246668997, - -1.01707816743942, - 0.40358599384382227, - 1.5188120514779349, - 2.4282209095949034, - 3.1656216223259848, - 3.8462177623667397, - 4.3695575012363905, - 4.614066216779518, - 4.528392125361082, - 4.045054137813248, - 3.209964006264549, - 2.1052908882930748, - 0.9750999061742567, - -0.052108290231928846, - -0.8442108261226416, - -1.2834490590889667, - -1.422367116387007, - -1.368192593937672, - -1.2637454650563045, - -1.2513733428434355, - -1.4124076829077357, - -1.7459433565032243, - -2.1656938062205895, - -2.5574144992221033, - -2.7602482543168585, - -2.6948419528262795, - -2.3492669656413825, - -1.7993025009164572, - -1.169822074221857, - -0.606409694692565, - -0.254374074254759, - -0.11226908888768136, - -0.15346785766852314, - -0.2625851056150937, - -0.29452031020643915, - -0.1340515354417285, - 0.254735427102487, - 0.8362317235926865, - 1.446405833737184, - 1.938772701689356, - 2.190497870213445, - 2.1415447249851023, - 1.9089722698421001, - 1.7444850982961455, - 2.000506587289173, - 3.035948286548881, - 5.1439407226913145, - 8.415254133363401, - 12.624807810666882, - 17.646204063937834, - 22.63621847002896, - 26.964209247530295 - ], - "pressure:J39:branch74_seg0": [ - 187117.31019225682, - 201920.46181176734, - 208150.87868293028, - 200777.80467832083, - 184860.87685581998, - 163610.9632497194, - 139269.52393900574, - 111847.01937906144, - 89537.38178697291, - 69076.43048734381, - 50161.76200623741, - 34980.693443573226, - 18812.00293825378, - 3535.01677659241, - -11865.698520740461, - -27666.311323005782, - -42113.79700444263, - -55616.18004705705, - -65219.37756278711, - -71861.03534624421, - -76749.28641795085, - -78711.295387046, - -79725.62565147252, - -80244.33064359648, - -80276.86527810276, - -80122.81270681707, - -78865.08270452298, - -76075.53824350816, - -71559.51345757332, - -65943.95326397203, - -59543.881905739836, - -54659.23673371359, - -52867.65613203375, - -54626.05705883819, - -61383.41042227948, - -72464.16572626207, - -85996.8165200112, - -99400.1043442437, - -110950.72955802809, - -116801.70313218128, - -115983.2769436872, - -108833.61732668139, - -95248.96720579093, - -76724.33749576866, - -58340.064330681926, - -39842.82156357754, - -22147.216935317465, - -9955.571761603876, - 279.03794391404966, - 7964.25816068307, - 13099.963445517695, - 18981.88344485326, - 23112.854299767005, - 26478.748425282527, - 29529.021364218963, - 29760.82428130619, - 27641.360904241646, - 23156.71655020232, - 16604.88050409386, - 8708.641823988768, - 1634.0833636173154, - -4080.122289209991, - -7999.797527707967, - -9274.300376660074, - -9147.35841312151, - -8308.162553073531, - -7610.839035821559, - -8090.4697495829805, - -9894.98391937043, - -12745.57536475702, - -15456.215067483006, - -17408.96270427764, - -18011.35999659235, - -16373.438525136344, - -13040.709428787493, - -8920.278877677834, - -5077.806214882147, - -1736.5609663351556, - -449.6644788348638, - -652.0866547065209, - -1325.1404197239317, - -2065.155312922706, - -1778.7441786633844, - 129.66207280662326, - 3490.678205474293, - 7796.081164587716, - 11565.572887629072, - 13932.144752513683, - 14410.468255058286, - 12910.750997110632, - 10966.216016347355, - 10773.121546926022, - 14694.754203098042, - 24950.529084943515, - 42612.21556394505, - 69025.92882019909, - 98458.42260785581, - 130175.74166230725, - 164611.75848953106, - 187117.31019225682 - ], - "flow:J39:branch90_seg0": [ - 31.735198966495247, - 35.57670448661249, - 37.499448416130406, - 37.38385220561654, - 35.48038336330768, - 32.14148441196544, - 27.843555011586446, - 23.21278070816743, - 18.816493712090793, - 14.670735571151353, - 11.131639706881705, - 7.990417693932134, - 5.0312837611041195, - 2.2474749617007723, - -0.646330337328399, - -3.493347398097491, - -6.263921193881869, - -8.836531664424994, - -10.888556480600377, - -12.49335311620647, - -13.573072703449254, - -14.1753032070396, - -14.507607243471798, - -14.65151689742263, - -14.716001532806152, - -14.718388990414295, - -14.581524905091882, - -14.223857362396494, - -13.577248130256823, - -12.65102950282165, - -11.548730218766629, - -10.545362772522754, - -9.880872145243305, - -9.84875300245805, - -10.633808950330216, - -12.237502781895786, - -14.439437602181552, - -16.917165967931457, - -19.207425244857802, - -20.761183870963595, - -21.314728870339888, - -20.636624762519077, - -18.75377020597764, - -15.920591477196993, - -12.62685687906338, - -9.113197516330715, - -5.871463665095954, - -3.1906031561122203, - -0.9906697455355246, - 0.6151245647732122, - 1.8538004472293053, - 2.8999751527602653, - 3.7488622213855503, - 4.531861891988369, - 5.126840787472748, - 5.396477266778761, - 5.275774126937336, - 4.683316966750195, - 3.6663985435289024, - 2.371576136099257, - 1.0345529958108768, - -0.1881675672586238, - -1.0606665048295354, - -1.5405536131283144, - -1.6837058720790496, - -1.5899707175482036, - -1.4558384737646113, - -1.44673100090282, - -1.6469772979566442, - -2.056278037880662, - -2.553210930256302, - -3.0057788795338234, - -3.237709092220769, - -3.1380842632476673, - -2.711953102643267, - -2.0531520934141674, - -1.309526243636364, - -0.6537685911889225, - -0.2540060071501561, - -0.1070423469372122, - -0.17381394167897551, - -0.3158928523248423, - -0.35337273376594724, - -0.15503018615359293, - 0.321926010690088, - 1.0124599492193942, - 1.7353629339997239, - 2.320853754000944, - 2.5804018467481526, - 2.4916761796513986, - 2.198903867217345, - 2.0008465381687697, - 2.3182912611115034, - 3.5763461845764994, - 6.099836135068428, - 10.040887949041432, - 15.012094183406585, - 20.847360028778315, - 26.74457804224186, - 31.735198966495247 - ], - "pressure:J39:branch90_seg0": [ - 187117.31019225682, - 201920.46181176734, - 208150.87868293028, - 200777.80467832083, - 184860.87685581998, - 163610.9632497194, - 139269.52393900574, - 111847.01937906144, - 89537.38178697291, - 69076.43048734381, - 50161.76200623741, - 34980.693443573226, - 18812.00293825378, - 3535.01677659241, - -11865.698520740461, - -27666.311323005782, - -42113.79700444263, - -55616.18004705705, - -65219.37756278711, - -71861.03534624421, - -76749.28641795085, - -78711.295387046, - -79725.62565147252, - -80244.33064359648, - -80276.86527810276, - -80122.81270681707, - -78865.08270452298, - -76075.53824350816, - -71559.51345757332, - -65943.95326397203, - -59543.881905739836, - -54659.23673371359, - -52867.65613203375, - -54626.05705883819, - -61383.41042227948, - -72464.16572626207, - -85996.8165200112, - -99400.1043442437, - -110950.72955802809, - -116801.70313218128, - -115983.2769436872, - -108833.61732668139, - -95248.96720579093, - -76724.33749576866, - -58340.064330681926, - -39842.82156357754, - -22147.216935317465, - -9955.571761603876, - 279.03794391404966, - 7964.25816068307, - 13099.963445517695, - 18981.88344485326, - 23112.854299767005, - 26478.748425282527, - 29529.021364218963, - 29760.82428130619, - 27641.360904241646, - 23156.71655020232, - 16604.88050409386, - 8708.641823988768, - 1634.0833636173154, - -4080.122289209991, - -7999.797527707967, - -9274.300376660074, - -9147.35841312151, - -8308.162553073531, - -7610.839035821559, - -8090.4697495829805, - -9894.98391937043, - -12745.57536475702, - -15456.215067483006, - -17408.96270427764, - -18011.35999659235, - -16373.438525136344, - -13040.709428787493, - -8920.278877677834, - -5077.806214882147, - -1736.5609663351556, - -449.6644788348638, - -652.0866547065209, - -1325.1404197239317, - -2065.155312922706, - -1778.7441786633844, - 129.66207280662326, - 3490.678205474293, - 7796.081164587716, - 11565.572887629072, - 13932.144752513683, - 14410.468255058286, - 12910.750997110632, - 10966.216016347355, - 10773.121546926022, - 14694.754203098042, - 24950.529084943515, - 42612.21556394505, - 69025.92882019909, - 98458.42260785581, - 130175.74166230725, - 164611.75848953106, - 187117.31019225682 - ], - "flow:branch76_seg0:J40": [ - 117.68245434538551, - 132.89224443045197, - 141.1135655893581, - 141.74790529174416, - 135.55752469355986, - 123.71297076067715, - 107.97428926552843, - 90.80344238902883, - 74.0745274625945, - 58.1947854478253, - 44.56846403419939, - 32.394156371280786, - 21.043783727016073, - 10.435876060791845, - -0.5204735117922658, - -11.217527790302043, - -21.647975622909033, - -31.4929494001157, - -39.432746530301934, - -45.77585678687281, - -50.204855158707055, - -52.81630876379318, - -54.35967842544973, - -55.1182329061517, - -55.50670381836461, - -55.63385558361988, - -55.251981770675165, - -54.073660291713146, - -51.84846623815131, - -48.55667711960355, - -44.559808741829364, - -40.78947673846244, - -38.13353497479322, - -37.70618619794549, - -40.237557949461, - -45.83454510153193, - -53.76568654746055, - -62.96831999472978, - -71.74530545252325, - -78.0461672552482, - -80.84545143634602, - -79.10978789987854, - -72.842045767342, - -62.802126234093215, - -50.75131191257042, - -37.59420617652333, - -25.133302137098475, - -14.577072623702126, - -5.755463101421447, - 0.8311338752685833, - 5.936473417603606, - 10.190285003443806, - 13.657179999844297, - 16.78839106678704, - 19.202535051729512, - 20.449578008126476, - 20.25103371807633, - 18.28752983962051, - 14.682665280850577, - 9.965495935421881, - 4.930545557102719, - 0.19135273335159048, - -3.3019286118063165, - -5.393672010866374, - -6.205837345644848, - -6.045839926643271, - -5.6309440473063, - -5.581240321627865, - -6.247629176167147, - -7.689599860829145, - -9.507831150460571, - -11.234798188868927, - -12.229099627950756, - -12.040423196034723, - -10.631309255582172, - -8.297333632690354, - -5.546077971923127, - -3.0296122559748806, - -1.3660720183127524, - -0.6316258663062524, - -0.7275361312714602, - -1.1793920632519475, - -1.3346968363702758, - -0.6843363363407405, - 0.9835921156282702, - 3.474750017605351, - 6.183132999102878, - 8.487515913817216, - 9.637310430424929, - 9.517526172137833, - 8.57074043979413, - 7.829364965339982, - 8.812385169131662, - 13.122996187411722, - 22.01807904145567, - 36.221064074094386, - 54.44917261440416, - 76.0841402581793, - 98.34177489831377, - 117.68245434538551 - ], - "pressure:branch76_seg0:J40": [ - 174667.51324737558, - 192388.12256494423, - 200696.26794201141, - 197144.10692219218, - 184665.1227015391, - 165691.31312916978, - 142483.9779501325, - 117101.40218477952, - 94771.83193075324, - 73565.22211693214, - 54963.535964309805, - 39238.9715675112, - 23406.407142082684, - 8735.180256370264, - -6384.026455139789, - -21605.74204338298, - -35680.595556870074, - -49069.84668803649, - -59328.04009384433, - -66895.65283307574, - -72326.3152978608, - -75107.25742386846, - -76668.57987802374, - -77487.59096922717, - -77809.02726111292, - -77833.99293632127, - -76977.26461776844, - -74796.30462092049, - -71041.96265670478, - -65987.70066436552, - -60085.89882080685, - -55118.110316635015, - -52428.377050054216, - -53108.742243402325, - -58292.2720169149, - -67720.65793471212, - -79988.62266413397, - -92940.81652103923, - -104796.17164660346, - -112008.68036137016, - -113554.27885175848, - -108815.32396277563, - -97754.73288170417, - -81687.55657096194, - -64088.255954116525, - -45772.972901615925, - -28449.227967312127, - -14982.130142138274, - -3806.1948948677104, - 4583.684492088949, - 10745.037817396436, - 16538.698775962846, - 21026.633031800327, - 24931.919024584608, - 28062.835993431596, - 29011.991901907466, - 27800.687050599656, - 24154.50539138296, - 18363.259350180764, - 11133.55040707526, - 4200.081795446555, - -1960.229227286607, - -6320.261696029268, - -8337.062114469756, - -8847.467023558764, - -8314.816056821976, - -7686.398218438536, - -7905.0361990256715, - -9273.031113412479, - -11686.63763633087, - -14319.68421823317, - -16493.630491897173, - -17450.501106915148, - -16500.043511033076, - -13845.355882996568, - -10169.468056364527, - -6317.029725709318, - -2943.9156703286894, - -1165.793666439772, - -748.9933444508321, - -1181.1790084109934, - -1860.4226250882723, - -1812.1510895328488, - -383.5192554323185, - 2462.0828967035636, - 6355.481342771894, - 10071.934345178483, - 12849.42024993654, - 13874.377277138197, - 13011.822908013663, - 11397.09109961346, - 10799.109767910737, - 13465.074304546062, - 21613.00498950103, - 36621.99946650273, - 59575.3114180849, - 86998.60634299963, - 117986.48213062603, - 150041.07610239505, - 174667.51324737558 - ], - "flow:J40:branch77_seg0": [ - 36.903332605931844, - 41.6276644254108, - 44.138329548222366, - 44.27626271438733, - 42.27764576466986, - 38.517227524205666, - 33.55485204992449, - 28.17373498218077, - 22.937520412788242, - 17.98763264618186, - 13.75492088197132, - 9.969667113893976, - 6.446988566235678, - 3.1469481940425483, - -0.26848749807688616, - -3.601801461086473, - -6.856926116271101, - -9.922209547445393, - -12.387882052948573, - -14.354461603165587, - -15.7159161978259, - -16.51258141283208, - -16.979046526539626, - -17.20370367912572, - -17.318708771710572, - -17.35435933430842, - -17.23187661473167, - -16.859342725384877, - -16.157532735011305, - -15.119983108014805, - -13.864317892829122, - -12.68286382207335, - -11.855808152901707, - -11.73570367337666, - -12.547141052973112, - -14.320316789788437, - -16.82150300216808, - -19.7151625020465, - -22.459837563613302, - -24.418091168905935, - -25.268988186544075, - -24.689714507979254, - -22.692315103774717, - -19.520675020312023, - -15.728786570135211, - -11.602783079528454, - -7.714690426430949, - -4.428590505261062, - -1.6927232363926792, - 0.339243927285526, - 1.9152959181833895, - 3.225823670212846, - 4.298038452042447, - 5.270283109777535, - 6.016350782711141, - 6.398778853947678, - 6.325957628830432, - 5.698470321288326, - 4.557474905172468, - 3.072803913472843, - 1.4915592924122596, - 0.010662762023206675, - -1.0723444372237179, - -1.7149321465351466, - -1.9543254584299865, - -1.8916464212668322, - -1.754717666481963, - -1.7373319571783632, - -1.9486595882960793, - -2.405077348402982, - -2.978722395344989, - -3.520984706582618, - -3.8284569759630696, - -3.7623381488058123, - -3.3122007267971023, - -2.573158802120687, - -1.7062517725622341, - -0.9193718581537318, - -0.40333261489067274, - -0.18129113301763125, - -0.22084737353230346, - -0.3689816741437978, - -0.4197695612325085, - -0.21379048684826232, - 0.3144089148708684, - 1.1001628178132927, - 1.9522874139273798, - 2.6725787007039057, - 3.0250287795134274, - 2.977494657097964, - 2.6705079240954395, - 2.4322520447222518, - 2.7424761997095937, - 4.10515247512648, - 6.9124213615094225, - 11.384480337488217, - 17.115819454766957, - 23.90848068602694, - 30.86657481409595, - 36.903332605931844 - ], - "pressure:J40:branch77_seg0": [ - 174667.51324737558, - 192388.12256494423, - 200696.26794201141, - 197144.10692219218, - 184665.1227015391, - 165691.31312916978, - 142483.9779501325, - 117101.40218477952, - 94771.83193075324, - 73565.22211693214, - 54963.535964309805, - 39238.9715675112, - 23406.407142082684, - 8735.180256370264, - -6384.026455139789, - -21605.74204338298, - -35680.595556870074, - -49069.84668803649, - -59328.04009384433, - -66895.65283307574, - -72326.3152978608, - -75107.25742386846, - -76668.57987802374, - -77487.59096922717, - -77809.02726111292, - -77833.99293632127, - -76977.26461776844, - -74796.30462092049, - -71041.96265670478, - -65987.70066436552, - -60085.89882080685, - -55118.110316635015, - -52428.377050054216, - -53108.742243402325, - -58292.2720169149, - -67720.65793471212, - -79988.62266413397, - -92940.81652103923, - -104796.17164660346, - -112008.68036137016, - -113554.27885175848, - -108815.32396277563, - -97754.73288170417, - -81687.55657096194, - -64088.255954116525, - -45772.972901615925, - -28449.227967312127, - -14982.130142138274, - -3806.1948948677104, - 4583.684492088949, - 10745.037817396436, - 16538.698775962846, - 21026.633031800327, - 24931.919024584608, - 28062.835993431596, - 29011.991901907466, - 27800.687050599656, - 24154.50539138296, - 18363.259350180764, - 11133.55040707526, - 4200.081795446555, - -1960.229227286607, - -6320.261696029268, - -8337.062114469756, - -8847.467023558764, - -8314.816056821976, - -7686.398218438536, - -7905.0361990256715, - -9273.031113412479, - -11686.63763633087, - -14319.68421823317, - -16493.630491897173, - -17450.501106915148, - -16500.043511033076, - -13845.355882996568, - -10169.468056364527, - -6317.029725709318, - -2943.9156703286894, - -1165.793666439772, - -748.9933444508321, - -1181.1790084109934, - -1860.4226250882723, - -1812.1510895328488, - -383.5192554323185, - 2462.0828967035636, - 6355.481342771894, - 10071.934345178483, - 12849.42024993654, - 13874.377277138197, - 13011.822908013663, - 11397.09109961346, - 10799.109767910737, - 13465.074304546062, - 21613.00498950103, - 36621.99946650273, - 59575.3114180849, - 86998.60634299963, - 117986.48213062603, - 150041.07610239505, - 174667.51324737558 - ], - "flow:J40:branch92_seg0": [ - 80.77912173945275, - 91.2645800050407, - 96.9752360411361, - 97.47164257735419, - 93.27987892889013, - 85.19574323647218, - 74.41943721560052, - 62.62970740684682, - 51.137007049809895, - 40.20715280164209, - 30.813543152228196, - 22.424489257385705, - 14.596795160778743, - 7.288927866747795, - -0.2519860137125565, - -7.6157263292135475, - -14.791049506640608, - -21.570739852665433, - -27.04486447735445, - -31.421395183703215, - -34.48893896087943, - -36.30372735095915, - -37.3806318989088, - -37.914529227027295, - -38.18799504665177, - -38.27949624931125, - -38.0201051559439, - -37.21431756632859, - -35.690933503137934, - -33.43669401158873, - -30.695490848999032, - -28.10661291638949, - -26.277726821889132, - -25.97048252456749, - -27.690416896486948, - -31.51422831174354, - -36.944183545292546, - -43.253157492682654, - -49.285467888910404, - -53.62807608634138, - -55.57646324980246, - -54.42007339189928, - -50.14973066356735, - -43.28145121378097, - -35.02252534243503, - -25.991423096994744, - -17.41861171066752, - -10.14848211844105, - -4.062739865028735, - 0.49188994798302826, - 4.021177499420252, - 6.964461333230963, - 9.359141547801842, - 11.518107957009503, - 13.186184269018389, - 14.050799154178657, - 13.925076089245858, - 12.589059518332276, - 10.125190375678063, - 6.892692021949118, - 3.4389862646905462, - 0.18068997132822284, - -2.22958417458262, - -3.678739864331195, - -4.2515118872150754, - -4.154193505376453, - -3.876226380824363, - -3.843908364449475, - -4.298969587870937, - -5.284522512425926, - -6.529108755115663, - -7.71381348228647, - -8.400642651987711, - -8.278085047228855, - -7.319108528785135, - -5.72417483056971, - -3.8398261993609295, - -2.1102403978211317, - -0.9627394034221096, - -0.4503347332885564, - -0.5066887577391603, - -0.8104103891081427, - -0.9149272751377775, - -0.4705458494924833, - 0.6691832007574399, - 2.374587199792041, - 4.230845585175501, - 5.814937213113237, - 6.612281650911459, - 6.54003151503976, - 5.900232515698662, - 5.3971129206176665, - 6.0699089694218005, - 9.017843712285288, - 15.10565767994615, - 24.8365837366061, - 37.33335315963675, - 52.17565957215257, - 67.47520008421829, - 80.77912173945275 - ], - "pressure:J40:branch92_seg0": [ - 174667.51324737558, - 192388.12256494423, - 200696.26794201141, - 197144.10692219218, - 184665.1227015391, - 165691.31312916978, - 142483.9779501325, - 117101.40218477952, - 94771.83193075324, - 73565.22211693214, - 54963.535964309805, - 39238.9715675112, - 23406.407142082684, - 8735.180256370264, - -6384.026455139789, - -21605.74204338298, - -35680.595556870074, - -49069.84668803649, - -59328.04009384433, - -66895.65283307574, - -72326.3152978608, - -75107.25742386846, - -76668.57987802374, - -77487.59096922717, - -77809.02726111292, - -77833.99293632127, - -76977.26461776844, - -74796.30462092049, - -71041.96265670478, - -65987.70066436552, - -60085.89882080685, - -55118.110316635015, - -52428.377050054216, - -53108.742243402325, - -58292.2720169149, - -67720.65793471212, - -79988.62266413397, - -92940.81652103923, - -104796.17164660346, - -112008.68036137016, - -113554.27885175848, - -108815.32396277563, - -97754.73288170417, - -81687.55657096194, - -64088.255954116525, - -45772.972901615925, - -28449.227967312127, - -14982.130142138274, - -3806.1948948677104, - 4583.684492088949, - 10745.037817396436, - 16538.698775962846, - 21026.633031800327, - 24931.919024584608, - 28062.835993431596, - 29011.991901907466, - 27800.687050599656, - 24154.50539138296, - 18363.259350180764, - 11133.55040707526, - 4200.081795446555, - -1960.229227286607, - -6320.261696029268, - -8337.062114469756, - -8847.467023558764, - -8314.816056821976, - -7686.398218438536, - -7905.0361990256715, - -9273.031113412479, - -11686.63763633087, - -14319.68421823317, - -16493.630491897173, - -17450.501106915148, - -16500.043511033076, - -13845.355882996568, - -10169.468056364527, - -6317.029725709318, - -2943.9156703286894, - -1165.793666439772, - -748.9933444508321, - -1181.1790084109934, - -1860.4226250882723, - -1812.1510895328488, - -383.5192554323185, - 2462.0828967035636, - 6355.481342771894, - 10071.934345178483, - 12849.42024993654, - 13874.377277138197, - 13011.822908013663, - 11397.09109961346, - 10799.109767910737, - 13465.074304546062, - 21613.00498950103, - 36621.99946650273, - 59575.3114180849, - 86998.60634299963, - 117986.48213062603, - 150041.07610239505, - 174667.51324737558 - ], - "flow:branch85_seg0:J41": [ - 85.01972664713102, - 100.06424467208073, - 111.1444882955329, - 117.18273010401067, - 117.86233140785743, - 113.43565161366624, - 104.7797537469498, - 93.40240170348392, - 80.66898413007219, - 67.51881029957731, - 55.092075629776716, - 43.40630680464158, - 32.45112207078424, - 22.123630638511425, - 11.903742219396637, - 1.9631573479595996, - -7.8029132226688835, - -17.116054289201625, - -25.31426366005368, - -32.356486445129434, - -37.91330518442889, - -41.9653191420282, - -44.8314149963935, - -46.72396326409781, - -47.967678555325186, - -48.733862453090225, - -48.993744902764, - -48.62916714897909, - -47.47702424305904, - -45.46442285514398, - -42.73515143444539, - -39.77502475985646, - -37.17973031870862, - -35.75452883003994, - -36.170884268704086, - -38.79027663052757, - -43.46075915379782, - -49.70116658673524, - -56.45198654185633, - -62.39516103091341, - -66.47590723699636, - -67.68026699864762, - -65.57315142587399, - -60.28328115476554, - -52.60391011452877, - -43.199469045041695, - -33.30795975303782, - -23.909373768262032, - -15.387101170900266, - -8.265657875911307, - -2.354751405690297, - 2.5955989419574528, - 6.703558429339564, - 10.268420380376677, - 13.18069613472245, - 15.243590370287757, - 16.24348730793219, - 15.932911489590557, - 14.272972682083143, - 11.48841181996324, - 7.994586913645374, - 4.278787673791226, - 0.9977525782952418, - -1.5385106994636686, - -3.1719008565656757, - -3.968333018116693, - -4.279079295864071, - -4.506123402402209, - -4.982493376870332, - -5.887113726356309, - -7.125745989538816, - -8.472599827339382, - -9.530413139347838, - -9.940990464355522, - -9.533319086092403, - -8.344291105858254, - -6.608511230515804, - -4.719938876405244, - -3.118984946236304, - -2.0215139682688115, - -1.5116415088036785, - -1.4110542584137589, - -1.3613745122064778, - -0.9927866887633632, - -0.04292919012999892, - 1.5135827329595024, - 3.440356384174551, - 5.3539579198695595, - 6.747657823668365, - 7.3777310937015566, - 7.30807434027332, - 7.025393039751517, - 7.426588988434473, - 9.61978952759126, - 14.684844996607229, - 23.410735813327083, - 35.59763995966505, - 51.03368406107889, - 68.21502536946653, - 85.01972664713102 - ], - "pressure:branch85_seg0:J41": [ - 155391.98431911762, - 174050.12241636266, - 185489.05327498933, - 186571.1965868256, - 179406.267792994, - 165719.13144098234, - 147207.41885029792, - 125434.63753283673, - 104845.13875096793, - 84739.34760243568, - 66282.15782718931, - 50001.81378178999, - 33817.9986567458, - 18635.057090646995, - 3296.722341712073, - -11860.761745347094, - -26174.446984879283, - -39959.112351977084, - -50826.61797609291, - -59355.29427585396, - -65993.85034421473, - -70011.7620015354, - -72690.47465698859, - -74394.30689639592, - -75349.5021196743, - -75867.93935699775, - -75477.65771589584, - -73862.22475260992, - -70821.30880998402, - -66567.19560568407, - -61392.13790446863, - -56762.41035596476, - -53871.06736585036, - -53633.20184487923, - -57206.747954926024, - -64583.815913951374, - -74660.83344248858, - -85933.9167617505, - -96745.141936928, - -104100.01722139028, - -106888.57334009484, - -104371.27087443395, - -96207.01887839653, - -83185.39181194978, - -68411.67753937247, - -52342.6106672292, - -36191.02991880314, - -23098.5820446646, - -11638.6411335032, - -2467.7897652594365, - 4512.060789986773, - 11111.056065645384, - 16289.769076713568, - 20654.179619425602, - 24328.116727815785, - 26047.485784102508, - 25806.73435026117, - 23404.987999446766, - 18953.15289769482, - 13028.968988168028, - 6930.4750048302985, - 1247.8610173319057, - -3111.954782283883, - -5653.325566768747, - -6869.78623540375, - -7052.313697869408, - -6941.065024560452, - -7341.631508345382, - -8572.26354999131, - -10645.603445171068, - -12914.44221496018, - -14885.471102560057, - -15998.59417423728, - -15533.133851626546, - -13610.858371696591, - -10710.780962911098, - -7513.210736290179, - -4457.537154316476, - -2591.136626572455, - -1840.3396435097757, - -1790.7697053901861, - -2079.0711416703843, - -1914.0320889365166, - -717.7529013030066, - 1636.8352530875225, - 4904.933058996543, - 8205.554746755179, - 10857.740358065412, - 12141.251771062489, - 11884.908392951966, - 10890.766736964983, - 10556.088517892933, - 12725.849219275115, - 19324.764670486627, - 31685.982765124827, - 51122.39171418225, - 74708.33541766905, - 101740.66148981574, - 131489.96839635607, - 155391.98431911762 - ], - "flow:J41:branch86_seg0": [ - 58.37814976427754, - 69.51693742602954, - 78.12543501783657, - 83.33641254639025, - 84.74544834884412, - 82.42977506198439, - 76.93871478461178, - 69.24441178571443, - 60.311757080222606, - 50.93958007568616, - 41.891361304822524, - 33.32743265968104, - 25.319485783630427, - 17.759943161431572, - 10.363683558313598, - 3.1580699220826007, - -3.9399913844161665, - -10.710715909490837, - -16.79703768065447, - -22.087590477347614, - -26.332323504825144, - -29.51433272709925, - -31.79309050338316, - -33.32670830353151, - -34.34635376556029, - -34.98676449833495, - -35.263029847456565, - -35.10901095420343, - -34.4121355628153, - -33.10648535790468, - -31.265552605453493, - -29.177918393142143, - -27.251198730075895, - -26.03848656423783, - -26.033888510134382, - -27.547576048762014, - -30.56287430293876, - -34.79288266431949, - -39.54367436422672, - -43.947651991210826, - -47.19272803877718, - -48.529284772721816, - -47.56883477700863, - -44.31430970690973, - -39.202726498087365, - -32.71921853466794, - -25.715014761258463, - -18.870150614600682, - -12.58413462017303, - -7.231370802331181, - -2.749599011512118, - 0.9853426934008657, - 4.0937326361948925, - 6.770677913830882, - 8.980621087747629, - 10.615568395232751, - 11.5181032985292, - 11.514199396438025, - 10.549774008294154, - 8.741249945832614, - 6.346870298569094, - 3.7199205077298054, - 1.2954527014473614, - -0.6605171883778699, - -1.985028817452995, - -2.701028400827102, - -3.0162106336368453, - -3.202060707621505, - -3.5100938200611402, - -4.093322328072662, - -4.929264910568491, - -5.881579540504708, - -6.684826949275635, - -7.085182797583004, - -6.929092868597986, - -6.205178142842329, - -5.0496041743710744, - -3.723562508117907, - -2.5288431478936677, - -1.6549251877970876, - -1.191300455196333, - -1.0467136495120393, - -0.9957286329598082, - -0.7780495008834135, - -0.18698546940798283, - 0.8326194799393071, - 2.1580656828228157, - 3.53210151862592, - 4.614973399003695, - 5.197102016663447, - 5.264415135608486, - 5.100715314261806, - 5.284796166538352, - 6.575235308699458, - 9.756421643743602, - 15.42295906894039, - 23.608617251691783, - 34.2016358895347, - 46.234059943056494, - 58.37814976427754 - ], - "pressure:J41:branch86_seg0": [ - 155391.98431911762, - 174050.12241636266, - 185489.05327498933, - 186571.1965868256, - 179406.267792994, - 165719.13144098234, - 147207.41885029792, - 125434.63753283673, - 104845.13875096793, - 84739.34760243568, - 66282.15782718931, - 50001.81378178999, - 33817.9986567458, - 18635.057090646995, - 3296.722341712073, - -11860.761745347094, - -26174.446984879283, - -39959.112351977084, - -50826.61797609291, - -59355.29427585396, - -65993.85034421473, - -70011.7620015354, - -72690.47465698859, - -74394.30689639592, - -75349.5021196743, - -75867.93935699775, - -75477.65771589584, - -73862.22475260992, - -70821.30880998402, - -66567.19560568407, - -61392.13790446863, - -56762.41035596476, - -53871.06736585036, - -53633.20184487923, - -57206.747954926024, - -64583.815913951374, - -74660.83344248858, - -85933.9167617505, - -96745.141936928, - -104100.01722139028, - -106888.57334009484, - -104371.27087443395, - -96207.01887839653, - -83185.39181194978, - -68411.67753937247, - -52342.6106672292, - -36191.02991880314, - -23098.5820446646, - -11638.6411335032, - -2467.7897652594365, - 4512.060789986773, - 11111.056065645384, - 16289.769076713568, - 20654.179619425602, - 24328.116727815785, - 26047.485784102508, - 25806.73435026117, - 23404.987999446766, - 18953.15289769482, - 13028.968988168028, - 6930.4750048302985, - 1247.8610173319057, - -3111.954782283883, - -5653.325566768747, - -6869.78623540375, - -7052.313697869408, - -6941.065024560452, - -7341.631508345382, - -8572.26354999131, - -10645.603445171068, - -12914.44221496018, - -14885.471102560057, - -15998.59417423728, - -15533.133851626546, - -13610.858371696591, - -10710.780962911098, - -7513.210736290179, - -4457.537154316476, - -2591.136626572455, - -1840.3396435097757, - -1790.7697053901861, - -2079.0711416703843, - -1914.0320889365166, - -717.7529013030066, - 1636.8352530875225, - 4904.933058996543, - 8205.554746755179, - 10857.740358065412, - 12141.251771062489, - 11884.908392951966, - 10890.766736964983, - 10556.088517892933, - 12725.849219275115, - 19324.764670486627, - 31685.982765124827, - 51122.39171418225, - 74708.33541766905, - 101740.66148981574, - 131489.96839635607, - 155391.98431911762 - ], - "flow:J41:branch109_seg0": [ - 26.641576882853197, - 30.547307246052306, - 33.019053277697004, - 33.84631755761946, - 33.11688305901373, - 31.00587655168329, - 27.84103896233727, - 24.157989917771562, - 20.357227049849072, - 16.57923022389185, - 13.200714324955337, - 10.078874144961919, - 7.131636287152123, - 4.363687477080221, - 1.5400586610829714, - -1.1949125741245306, - -3.862921838251829, - -6.40533837970982, - -8.517225979401502, - -10.268895967781187, - -11.580981679605845, - -12.450986414924081, - -13.038324493010126, - -13.397254960567805, - -13.621324789760324, - -13.747097954754201, - -13.730715055307725, - -13.52015619477542, - -13.064888680245106, - -12.357937497240329, - -11.469598828993107, - -10.597106366711822, - -9.928531588633575, - -9.716042265802454, - -10.136995758570631, - -11.242700581765925, - -12.897884850857155, - -14.908283922417068, - -16.908312177630176, - -18.447509039703984, - -19.283179198219113, - -19.150982225925762, - -18.004316648864503, - -15.968971447855221, - -13.401183616441404, - -10.48025051037363, - -7.592944991779329, - -5.039223153661334, - -2.8029665507271893, - -1.0342870735801284, - 0.3948476058218275, - 1.6102562485565863, - 2.609825793144673, - 3.4977424665457972, - 4.2000750469748205, - 4.628021975054954, - 4.7253840094030055, - 4.4187120931524575, - 3.7231986737889473, - 2.7471618741305486, - 1.6477166150764155, - 0.5588671660613974, - -0.2977001231521977, - -0.8779935110854582, - -1.186872039112483, - -1.2673046172897269, - -1.262868662227339, - -1.3040626947804743, - -1.4723995568090393, - -1.7937913982836087, - -2.196481078970512, - -2.5910202868346173, - -2.8455861900721757, - -2.8558076667725754, - -2.6042262174943884, - -2.139112963016046, - -1.5589070561447163, - -0.9963763682873508, - -0.59014179834261, - -0.36658878047170024, - -0.32034105360734916, - -0.3643406089016954, - -0.36564587924666575, - -0.21473718787996673, - 0.14405627927797457, - 0.6809632530201684, - 1.2822907013517328, - 1.8218564012435907, - 2.13268442466463, - 2.1806290770381205, - 2.043659204664857, - 1.9246777254896397, - 2.1417928218960625, - 3.044554218891939, - 4.928423352863684, - 7.987776744386478, - 11.989022707973112, - 16.83204817154442, - 21.980965426410133, - 26.641576882853197 - ], - "pressure:J41:branch109_seg0": [ - 155391.98431911762, - 174050.12241636266, - 185489.05327498933, - 186571.1965868256, - 179406.267792994, - 165719.13144098234, - 147207.41885029792, - 125434.63753283673, - 104845.13875096793, - 84739.34760243568, - 66282.15782718931, - 50001.81378178999, - 33817.9986567458, - 18635.057090646995, - 3296.722341712073, - -11860.761745347094, - -26174.446984879283, - -39959.112351977084, - -50826.61797609291, - -59355.29427585396, - -65993.85034421473, - -70011.7620015354, - -72690.47465698859, - -74394.30689639592, - -75349.5021196743, - -75867.93935699775, - -75477.65771589584, - -73862.22475260992, - -70821.30880998402, - -66567.19560568407, - -61392.13790446863, - -56762.41035596476, - -53871.06736585036, - -53633.20184487923, - -57206.747954926024, - -64583.815913951374, - -74660.83344248858, - -85933.9167617505, - -96745.141936928, - -104100.01722139028, - -106888.57334009484, - -104371.27087443395, - -96207.01887839653, - -83185.39181194978, - -68411.67753937247, - -52342.6106672292, - -36191.02991880314, - -23098.5820446646, - -11638.6411335032, - -2467.7897652594365, - 4512.060789986773, - 11111.056065645384, - 16289.769076713568, - 20654.179619425602, - 24328.116727815785, - 26047.485784102508, - 25806.73435026117, - 23404.987999446766, - 18953.15289769482, - 13028.968988168028, - 6930.4750048302985, - 1247.8610173319057, - -3111.954782283883, - -5653.325566768747, - -6869.78623540375, - -7052.313697869408, - -6941.065024560452, - -7341.631508345382, - -8572.26354999131, - -10645.603445171068, - -12914.44221496018, - -14885.471102560057, - -15998.59417423728, - -15533.133851626546, - -13610.858371696591, - -10710.780962911098, - -7513.210736290179, - -4457.537154316476, - -2591.136626572455, - -1840.3396435097757, - -1790.7697053901861, - -2079.0711416703843, - -1914.0320889365166, - -717.7529013030066, - 1636.8352530875225, - 4904.933058996543, - 8205.554746755179, - 10857.740358065412, - 12141.251771062489, - 11884.908392951966, - 10890.766736964983, - 10556.088517892933, - 12725.849219275115, - 19324.764670486627, - 31685.982765124827, - 51122.39171418225, - 74708.33541766905, - 101740.66148981574, - 131489.96839635607, - 155391.98431911762 - ], - "flow:branch86_seg2:J42": [ - 58.28231982005897, - 69.45779333214878, - 78.09428162310896, - 83.3422122943702, - 84.79272107812, - 82.49746516789261, - 77.0038913998872, - 69.34399301661304, - 60.3955849430593, - 50.99630822105799, - 41.96267940173258, - 33.38616669889127, - 25.37508091620366, - 17.82102052366814, - 10.407459034786946, - 3.213066436708677, - -3.8768269606882377, - -10.672065179608701, - -16.75794807873613, - -22.056001298955476, - -26.31231994151662, - -29.497738563282816, - -31.784336807966984, - -33.321434136627325, - -34.34212983538178, - -34.98568883390054, - -35.2662678565209, - -35.11766409703494, - -34.42828725923426, - -33.125421380084546, - -31.286566051753013, - -29.195217540812102, - -27.25554569418883, - -26.031545674793797, - -26.01453452332717, - -27.519283440142207, - -30.518978093650055, - -34.75228133072854, - -39.51264650604105, - -43.92410563517341, - -47.193768049200145, - -48.54856219684978, - -47.606949194702366, - -44.3618362565545, - -39.26242989674128, - -32.78459830644921, - -25.774319578281222, - -18.924779926658218, - -12.625130993286424, - -7.265356876681883, - -2.779492214582587, - 0.9578702410314185, - 4.072970997985936, - 6.7562194297698905, - 8.967516732553259, - 10.610955412457042, - 11.523976394458266, - 11.528376377097533, - 10.567217932629305, - 8.767516424149054, - 6.371042006650518, - 3.7312332685526566, - 1.3093818113981914, - -0.6514625126747982, - -1.9839864854752358, - -2.7006706156194684, - -3.0153653911484626, - -3.199489203049385, - -3.5040231665269084, - -4.085291774947839, - -4.920627714354754, - -5.874234076698747, - -6.682689402617496, - -7.088881952242388, - -6.938756129121879, - -6.218823223933617, - -5.062680030627119, - -3.735493539765412, - -2.5349421457326153, - -1.6553013492263098, - -1.1899915885126198, - -1.0464847907351478, - -0.9983267852101531, - -0.7851113922846191, - -0.1968243195271517, - 0.8189827156007883, - 2.145721340710083, - 3.528434612421243, - 4.612878125648903, - 5.1984062037568, - 5.267668322176976, - 5.0991853580432105, - 5.270552242655123, - 6.541818297821685, - 9.696574772827853, - 15.342984289612644, - 23.51022086987083, - 34.08018776137293, - 46.11236622647367, - 58.28231982005897 - ], - "pressure:branch86_seg2:J42": [ - 128372.52298777344, - 149466.6273711724, - 165014.76645229937, - 172608.4202288308, - 172424.37970712793, - 164995.4915897579, - 151644.62153610945, - 134478.4538212933, - 115587.6829245335, - 96364.46075305002, - 78336.72909509903, - 61424.339186418685, - 45395.17417822452, - 30321.151660395342, - 15261.907313339027, - 783.1051636481369, - -13339.411082497103, - -27161.342625272348, - -38814.696941955175, - -48717.16530330606, - -56693.70748434979, - -62292.26091186096, - -66282.73262222327, - -68929.94075878881, - -70608.95565304432, - -71666.38866681258, - -71941.07637089698, - -71238.14864923952, - -69358.99416418829, - -66239.39849275316, - -62102.61328380538, - -57760.0517153547, - -54171.088966646304, - -52405.47465746231, - -53478.23019097537, - -57867.64918724907, - -65067.107828935455, - -74433.19416434587, - -84383.54122866353, - -92708.34513421392, - -98121.68425710511, - -99202.05630546415, - -95403.98098195085, - -86821.9971750005, - -75279.46355574625, - -61461.31343548127, - -46687.45405967308, - -33233.85424537064, - -20996.247568639832, - -10742.57035722265, - -2465.138483754879, - 4742.522482149036, - 10682.811989856411, - 15690.24538602573, - 19873.371457705194, - 22696.721699366302, - 23882.152314680672, - 23150.13649957052, - 20430.119539616542, - 16139.816011558358, - 10917.070179111697, - 5466.149723751679, - 845.1071264998695, - -2651.336714606081, - -4882.0482931818, - -5909.910110765741, - -6300.064123219703, - -6673.483760406182, - -7466.370159050096, - -8915.953522151422, - -10765.772695970894, - -12675.820135740962, - -14162.505693136998, - -14585.462143210207, - -13786.338473505575, - -11897.722116482635, - -9315.589017748996, - -6531.902342072784, - -4271.010971942087, - -2836.6894190793023, - -2183.4100524159458, - -2082.0461818083477, - -1974.8074080589581, - -1317.6276526538065, - 226.80908563363633, - 2631.2918501219, - 5492.397983239741, - 8252.843707926959, - 10113.980695942826, - 10840.939076175982, - 10625.963018803901, - 10280.024717855247, - 11165.167886718204, - 14932.049975743354, - 23035.877447945335, - 36876.965131658166, - 55407.94223927802, - 78085.20786254779, - 104094.84116774308, - 128372.52298777344 - ], - "flow:J42:branch87_seg0": [ - 27.506693861788072, - 32.65316719272269, - 36.565588249038974, - 38.86941155577166, - 39.400177603014, - 38.195856513914606, - 35.522494930768104, - 31.89140409864109, - 27.69586159641476, - 23.309226565968753, - 19.134128822160765, - 15.174506784090937, - 11.473798192728696, - 7.988700194734145, - 4.550220583434349, - 1.219619649436411, - -2.058134722361833, - -5.20681206311063, - -8.003790017445324, - -10.42863477916026, - -12.367536055568204, - -13.804690888295791, - -14.832716429773836, - -15.519565272110723, - -15.973630462274262, - -16.258623966825287, - -16.37555538404412, - -16.290253448055857, - -15.950389198886588, - -15.323036878151466, - -14.44978874057426, - -13.47125669283069, - -12.57747948250544, - -12.037446156089148, - -12.076082180133074, - -12.833108894519295, - -14.279273746363106, - -16.28766363069154, - -18.518422060685847, - -20.548870811466415, - -22.023200604211066, - -22.581269751259846, - -22.058659451109815, - -20.465265390037615, - -18.03061414205855, - -14.977416898497609, - -11.701836675010775, - -8.531066227297622, - -5.627523342904516, - -3.172875123336471, - -1.1250013252501962, - 0.5827684716861972, - 2.0066594918652614, - 3.236248085207461, - 4.244690624112969, - 4.9854256353847175, - 5.381940134272181, - 5.3500192672111755, - 4.867072586844555, - 4.001116606263228, - 2.868677103616064, - 1.6320680449456426, - 0.5174924609249711, - -0.37303575239977843, - -0.9697145037949744, - -1.2797499314516299, - -1.4109455215194457, - -1.4922983691529703, - -1.6385197701796583, - -1.9188402983108162, - -2.315951385427721, - -2.7619319044634754, - -3.1316898328102774, - -3.3047917469782266, - -3.2140383735747213, - -2.859029564127837, - -2.3065722774502535, - -1.6846005031608728, - -1.1325567072548133, - -0.7363068616650332, - -0.5356336516995547, - -0.4807830805641495, - -0.4615056103548269, - -0.3557301389849046, - -0.06823853386058376, - 0.4190912685140519, - 1.0452315103394392, - 1.6898204195725255, - 2.181295492925137, - 2.433230169752058, - 2.4469853783091167, - 2.3611974033832572, - 2.4549257046746917, - 3.087644482899288, - 4.6225012723710375, - 7.3390053024407225, - 11.225298518893016, - 16.214654737224237, - 21.854648138825453, - 27.506693861788072 - ], - "pressure:J42:branch87_seg0": [ - 128372.52298777344, - 149466.6273711724, - 165014.76645229937, - 172608.4202288308, - 172424.37970712793, - 164995.4915897579, - 151644.62153610945, - 134478.4538212933, - 115587.6829245335, - 96364.46075305002, - 78336.72909509903, - 61424.339186418685, - 45395.17417822452, - 30321.151660395342, - 15261.907313339027, - 783.1051636481369, - -13339.411082497103, - -27161.342625272348, - -38814.696941955175, - -48717.16530330606, - -56693.70748434979, - -62292.26091186096, - -66282.73262222327, - -68929.94075878881, - -70608.95565304432, - -71666.38866681258, - -71941.07637089698, - -71238.14864923952, - -69358.99416418829, - -66239.39849275316, - -62102.61328380538, - -57760.0517153547, - -54171.088966646304, - -52405.47465746231, - -53478.23019097537, - -57867.64918724907, - -65067.107828935455, - -74433.19416434587, - -84383.54122866353, - -92708.34513421392, - -98121.68425710511, - -99202.05630546415, - -95403.98098195085, - -86821.9971750005, - -75279.46355574625, - -61461.31343548127, - -46687.45405967308, - -33233.85424537064, - -20996.247568639832, - -10742.57035722265, - -2465.138483754879, - 4742.522482149036, - 10682.811989856411, - 15690.24538602573, - 19873.371457705194, - 22696.721699366302, - 23882.152314680672, - 23150.13649957052, - 20430.119539616542, - 16139.816011558358, - 10917.070179111697, - 5466.149723751679, - 845.1071264998695, - -2651.336714606081, - -4882.0482931818, - -5909.910110765741, - -6300.064123219703, - -6673.483760406182, - -7466.370159050096, - -8915.953522151422, - -10765.772695970894, - -12675.820135740962, - -14162.505693136998, - -14585.462143210207, - -13786.338473505575, - -11897.722116482635, - -9315.589017748996, - -6531.902342072784, - -4271.010971942087, - -2836.6894190793023, - -2183.4100524159458, - -2082.0461818083477, - -1974.8074080589581, - -1317.6276526538065, - 226.80908563363633, - 2631.2918501219, - 5492.397983239741, - 8252.843707926959, - 10113.980695942826, - 10840.939076175982, - 10625.963018803901, - 10280.024717855247, - 11165.167886718204, - 14932.049975743354, - 23035.877447945335, - 36876.965131658166, - 55407.94223927802, - 78085.20786254779, - 104094.84116774308, - 128372.52298777344 - ], - "flow:J42:branch144_seg0": [ - 30.77562595827109, - 36.8046261394263, - 41.528693374069455, - 44.47280073859907, - 45.3925434751061, - 44.30160865397653, - 41.48139646911871, - 37.452588917970715, - 32.69972334664373, - 27.68708165508844, - 22.82855057957199, - 18.211659914801096, - 13.901282723475795, - 9.832320328935673, - 5.857238451353217, - 1.9934467872714399, - -1.818692238328186, - -5.465253116498194, - -8.754158061288457, - -11.627366519796487, - -13.944783885949498, - -15.693047674986303, - -16.951620378193702, - -17.801868864515928, - -18.368499373107134, - -18.727064867076074, - -18.890712472477084, - -18.827410648977978, - -18.477898060347822, - -17.80238450193207, - -16.836777311177457, - -15.723960847981688, - -14.678066211683582, - -13.99409951870507, - -13.93845234319411, - -14.686174545624212, - -16.23970434728739, - -18.464617700037067, - -20.99422444535605, - -23.375234823705483, - -25.170567444988723, - -25.967292445589504, - -25.548289743592413, - -23.896570866516523, - -21.23181575468274, - -17.807181407951624, - -14.07248290327044, - -10.393713699360571, - -6.997607650381874, - -4.0924817533454165, - -1.6544908893323906, - 0.3751017693452239, - 2.066311506120672, - 3.519971344562418, - 4.722826108440282, - 5.625529777072365, - 6.142036260186091, - 6.178357109886376, - 5.700145345784662, - 4.76639981788584, - 3.5023649030346116, - 2.099165223607147, - 0.7918893504730458, - -0.27842676027511737, - -1.0142719816801926, - -1.420920684167827, - -1.604419869629064, - -1.7071908338962138, - -1.8655033963472312, - -2.166451476637049, - -2.604676328926924, - -3.1123021722352537, - -3.5509995698072165, - -3.784090205264119, - -3.724717755547215, - -3.3597936598057796, - -2.7561077531768476, - -2.0508930366046294, - -1.4023854384777918, - -0.9189944875613001, - -0.6543579368130806, - -0.56570171017097, - -0.5368211748553399, - -0.4293812532997261, - -0.1285857856665425, - 0.39989144708673896, - 1.1004898303706345, - 1.838614192848682, - 2.4315826327237593, - 2.7651760340047398, - 2.8206829438678755, - 2.7379879546599004, - 2.8156265379804495, - 3.4541738149223256, - 5.074073500456881, - 8.003978987172042, - 12.284922350977864, - 17.865533024148924, - 24.25771808764769, - 30.77562595827109 - ], - "pressure:J42:branch144_seg0": [ - 128372.52298777344, - 149466.6273711724, - 165014.76645229937, - 172608.4202288308, - 172424.37970712793, - 164995.4915897579, - 151644.62153610945, - 134478.4538212933, - 115587.6829245335, - 96364.46075305002, - 78336.72909509903, - 61424.339186418685, - 45395.17417822452, - 30321.151660395342, - 15261.907313339027, - 783.1051636481369, - -13339.411082497103, - -27161.342625272348, - -38814.696941955175, - -48717.16530330606, - -56693.70748434979, - -62292.26091186096, - -66282.73262222327, - -68929.94075878881, - -70608.95565304432, - -71666.38866681258, - -71941.07637089698, - -71238.14864923952, - -69358.99416418829, - -66239.39849275316, - -62102.61328380538, - -57760.0517153547, - -54171.088966646304, - -52405.47465746231, - -53478.23019097537, - -57867.64918724907, - -65067.107828935455, - -74433.19416434587, - -84383.54122866353, - -92708.34513421392, - -98121.68425710511, - -99202.05630546415, - -95403.98098195085, - -86821.9971750005, - -75279.46355574625, - -61461.31343548127, - -46687.45405967308, - -33233.85424537064, - -20996.247568639832, - -10742.57035722265, - -2465.138483754879, - 4742.522482149036, - 10682.811989856411, - 15690.24538602573, - 19873.371457705194, - 22696.721699366302, - 23882.152314680672, - 23150.13649957052, - 20430.119539616542, - 16139.816011558358, - 10917.070179111697, - 5466.149723751679, - 845.1071264998695, - -2651.336714606081, - -4882.0482931818, - -5909.910110765741, - -6300.064123219703, - -6673.483760406182, - -7466.370159050096, - -8915.953522151422, - -10765.772695970894, - -12675.820135740962, - -14162.505693136998, - -14585.462143210207, - -13786.338473505575, - -11897.722116482635, - -9315.589017748996, - -6531.902342072784, - -4271.010971942087, - -2836.6894190793023, - -2183.4100524159458, - -2082.0461818083477, - -1974.8074080589581, - -1317.6276526538065, - 226.80908563363633, - 2631.2918501219, - 5492.397983239741, - 8252.843707926959, - 10113.980695942826, - 10840.939076175982, - 10625.963018803901, - 10280.024717855247, - 11165.167886718204, - 14932.049975743354, - 23035.877447945335, - 36876.965131658166, - 55407.94223927802, - 78085.20786254779, - 104094.84116774308, - 128372.52298777344 - ], - "flow:branch92_seg0:J43": [ - 80.77556969228291, - 91.26278323491373, - 96.97475767254515, - 97.47264052036385, - 93.28246878617992, - 85.19927888990094, - 74.42300180980668, - 62.63429840976446, - 51.14068836594395, - 40.209790241069115, - 30.816622508706676, - 22.42676811428102, - 14.59915107379189, - 7.291293049641735, - -0.2502584944999017, - -7.613346734887727, - -14.789056681373927, - -21.569517670421643, - -27.043571166337152, - -31.420567436683847, - -34.488518283017804, - -36.30337152199298, - -37.380544138469304, - -37.91447413023992, - -38.18792893454536, - -38.27955598713845, - -38.020296107879894, - -37.21475257474308, - -35.69164483165435, - -33.437591264594786, - -30.69638768992765, - -28.107369329824543, - -26.27787703577159, - -25.970001857223515, - -27.689278371230106, - -31.512646367711188, - -36.94189555454616, - -43.25135775161077, - -49.28405043466329, - -53.6273428175007, - -55.57685980697435, - -54.42138873088609, - -50.15155769995388, - -43.283586781813106, - -35.025067559463615, - -25.993878447646058, - -17.42062616057415, - -10.15034641431774, - -4.0639648746909325, - 0.49087586465797345, - 4.020176486457034, - 6.963703378224637, - 9.358396592010529, - 11.517573216603118, - 13.185785214375802, - 14.050736217277286, - 13.925468708124772, - 12.589865930284507, - 10.126154977370625, - 6.894033088108019, - 3.4400737690287433, - 0.18126561594470858, - -2.229027386892342, - -3.6785532844260134, - -4.251613244470089, - -4.154289855910282, - -3.8762517207232605, - -3.843795998814679, - -4.298712693403436, - -5.284190937713495, - -6.528765317583503, - -7.713571447434397, - -8.400660777221104, - -8.27830819790139, - -7.319587929558083, - -5.72475549389476, - -3.840415702637898, - -2.110662999393975, - -0.9629637833443087, - -0.45030609920945924, - -0.5065571737300923, - -0.8103523583035842, - -0.9150302869014741, - -0.470909890475659, - 0.668672346015482, - 2.373884640850111, - 4.230304255549728, - 5.814775453053337, - 6.612278862287515, - 6.540218373315615, - 5.90045139003759, - 5.397015475776241, - 6.06919634772041, - 9.016168554175412, - 15.103128758031987, - 24.83328684764923, - 37.32940875654052, - 52.17086340399514, - 67.47119528353777, - 80.77556969228291 - ], - "pressure:branch92_seg0:J43": [ - 173739.02334901888, - 191694.09219363861, - 200218.77084080077, - 196976.143687692, - 184780.16086646533, - 166008.2011733941, - 142914.07636026334, - 117668.03292724396, - 95283.5000375725, - 74019.18919209525, - 55428.270340188246, - 39618.72381796503, - 23813.060881133664, - 9147.484274498298, - -5979.627861670586, - -21141.25806515702, - -35260.43135259665, - -48666.115406047924, - -58963.863285910134, - -66614.5742029068, - -72093.2153999305, - -74925.53193565432, - -76525.96590167179, - -77358.0783122278, - -77691.3504370101, - -77729.17136049869, - -76895.674707894, - -74757.06602341968, - -71052.04450070065, - -66039.68108557956, - -60161.7320421469, - -55180.769281922236, - -52415.74551568713, - -52999.06373524413, - -58053.839024233246, - -67359.5376432255, - -79516.72176768295, - -92466.95152473579, - -104338.84148532774, - -111665.79635302858, - -113383.54863235005, - -108822.00351908553, - -97920.06035105744, - -82007.93559829293, - -64482.02732883164, - -46180.023161309255, - -28859.539490858853, - -15326.4242156169, - -4081.830323676015, - 4352.044152543613, - 10559.03067405925, - 16364.858498434816, - 20862.54551307015, - 24795.436581192946, - 27942.17919315714, - 28946.47137162453, - 27805.603898506455, - 24231.479832670026, - 18499.235164112557, - 11328.161501880133, - 4389.412407312483, - -1803.1442482440132, - -6191.934180459376, - -8274.75454279836, - -8828.84307715322, - -8315.446251810388, - -7688.115482249212, - -7883.943562492501, - -9220.815579718286, - -11605.06015454652, - -14230.125070083823, - -16418.907986786988, - -17408.327973169442, - -16504.697187832455, - -13901.748925270878, - -10255.69165227391, - -6411.019939162063, - -3026.230211054968, - -1214.5615996673432, - -754.9602876827109, - -1165.7918602724192, - -1843.2809016127592, - -1816.0172897635518, - -429.0982945765599, - 2376.9913915326806, - 6234.407879847948, - 9956.00715299203, - 12766.70297803997, - 13832.206973158058, - 13018.84583000785, - 11424.076556438851, - 10789.005757857754, - 13356.08192805108, - 21333.380182860103, - 36154.89872080186, - 58866.63679523885, - 86130.16017668176, - 117007.12317165975, - 149002.03480685147, - 173739.02334901888 - ], - "flow:J43:branch93_seg0": [ - 25.406477807692752, - 28.586689951634582, - 30.23395365117349, - 30.243649808253657, - 28.81047677159355, - 26.18965066177319, - 22.760651110811143, - 19.074423593444074, - 15.506923337718025, - 12.12843595931881, - 9.26246507751216, - 6.693067507707619, - 4.290415813758059, - 2.04408888355781, - -0.29769668706934416, - -2.570018545657968, - -4.786954003158922, - -6.882945955621663, - -8.544160335221063, - -9.86730486345319, - -10.781901300203211, - -11.305361590194181, - -11.614347349959722, - -11.761394506712886, - -11.835394429579335, - -11.857970656375151, - -11.768767283095817, - -11.505482602642507, - -11.015089001505258, - -10.296162167902189, - -9.430655937140465, - -8.627880857806518, - -8.075706588738282, - -8.01668827546122, - -8.602582650473149, - -9.84731410379619, - -11.575793158932084, - -13.56474335032455, - -15.435874088130937, - -16.743998650228498, - -17.287675156730746, - -16.84644030390552, - -15.433374970956708, - -13.224204397921925, - -10.618714665709623, - -7.794358306204943, - -5.140263287793729, - -2.9219015182473576, - -1.0693569770556546, - 0.2981248170227568, - 1.3554126531419668, - 2.246838860438679, - 2.9710250729755496, - 3.6309668496665157, - 4.134591377814416, - 4.382329351692141, - 4.317661809100377, - 3.8717011404399524, - 3.0747436365005703, - 2.0507000476318162, - 0.9685945142580787, - -0.04170366609739636, - -0.766942983926253, - -1.1896786900654275, - -1.3418583007998488, - -1.2897421199545753, - -1.1939144556259347, - -1.1869588327197014, - -1.3395594054403197, - -1.6599312577725631, - -2.0547958674711584, - -2.4225852722169305, - -2.625357788745681, - -2.566725789231558, - -2.2464470129331993, - -1.7326367173801271, - -1.137977945854767, - -0.6025158003439662, - -0.26005251014539366, - -0.11836833235620761, - -0.15278835917231298, - -0.2572381233285155, - -0.288122159191247, - -0.13850013749285095, - 0.2333495532330268, - 0.7779137624040418, - 1.3613212056491641, - 1.8496091007783728, - 2.0774117935896617, - 2.0305925734449644, - 1.8133715410084719, - 1.65468152599523, - 1.886931912998223, - 2.854210457793826, - 4.821298870905667, - 7.937170451340601, - 11.891951267757388, - 16.55335108014412, - 21.325967994789558, - 25.406477807692752 - ], - "pressure:J43:branch93_seg0": [ - 173739.02334901888, - 191694.09219363861, - 200218.77084080077, - 196976.143687692, - 184780.16086646533, - 166008.2011733941, - 142914.07636026334, - 117668.03292724396, - 95283.5000375725, - 74019.18919209525, - 55428.270340188246, - 39618.72381796503, - 23813.060881133664, - 9147.484274498298, - -5979.627861670586, - -21141.25806515702, - -35260.43135259665, - -48666.115406047924, - -58963.863285910134, - -66614.5742029068, - -72093.2153999305, - -74925.53193565432, - -76525.96590167179, - -77358.0783122278, - -77691.3504370101, - -77729.17136049869, - -76895.674707894, - -74757.06602341968, - -71052.04450070065, - -66039.68108557956, - -60161.7320421469, - -55180.769281922236, - -52415.74551568713, - -52999.06373524413, - -58053.839024233246, - -67359.5376432255, - -79516.72176768295, - -92466.95152473579, - -104338.84148532774, - -111665.79635302858, - -113383.54863235005, - -108822.00351908553, - -97920.06035105744, - -82007.93559829293, - -64482.02732883164, - -46180.023161309255, - -28859.539490858853, - -15326.4242156169, - -4081.830323676015, - 4352.044152543613, - 10559.03067405925, - 16364.858498434816, - 20862.54551307015, - 24795.436581192946, - 27942.17919315714, - 28946.47137162453, - 27805.603898506455, - 24231.479832670026, - 18499.235164112557, - 11328.161501880133, - 4389.412407312483, - -1803.1442482440132, - -6191.934180459376, - -8274.75454279836, - -8828.84307715322, - -8315.446251810388, - -7688.115482249212, - -7883.943562492501, - -9220.815579718286, - -11605.06015454652, - -14230.125070083823, - -16418.907986786988, - -17408.327973169442, - -16504.697187832455, - -13901.748925270878, - -10255.69165227391, - -6411.019939162063, - -3026.230211054968, - -1214.5615996673432, - -754.9602876827109, - -1165.7918602724192, - -1843.2809016127592, - -1816.0172897635518, - -429.0982945765599, - 2376.9913915326806, - 6234.407879847948, - 9956.00715299203, - 12766.70297803997, - 13832.206973158058, - 13018.84583000785, - 11424.076556438851, - 10789.005757857754, - 13356.08192805108, - 21333.380182860103, - 36154.89872080186, - 58866.63679523885, - 86130.16017668176, - 117007.12317165975, - 149002.03480685147, - 173739.02334901888 - ], - "flow:J43:branch135_seg0": [ - 33.8043827944381, - 37.90068965567204, - 39.96253382940748, - 39.83450702458587, - 37.83031849927723, - 34.295050258280746, - 29.72449484493224, - 24.836604695102242, - 20.16544939423392, - 15.730869697668426, - 11.98035445223012, - 8.630341421441326, - 5.464186418417558, - 2.5142704482817937, - -0.5752030471397138, - -3.57392983318161, - -6.477608069025519, - -9.234537064975747, - -11.392132637833733, - -13.098866202667107, - -14.279569222975997, - -14.939467166060185, - -15.330058924527016, - -15.515579285177203, - -15.606564169628683, - -15.632169317891666, - -15.504662978495599, - -15.141344285670938, - -14.475617579794713, - -13.512029981306465, - -12.360883762965855, - -11.312162877960063, - -10.61272220920875, - -10.576101930541107, - -11.40198249330416, - -13.095188948071952, - -15.409262258251994, - -18.037649056811226, - -20.492561902283146, - -22.16317288229015, - -22.809626537944474, - -22.152711216718853, - -20.2161916792399, - -17.240402169026172, - -13.783025106043567, - -10.05774019781375, - -6.566273844876366, - -3.68451831385067, - -1.274448653686235, - 0.4982816351427751, - 1.8632543873222596, - 3.031881601553972, - 3.974693280227555, - 4.834434238676802, - 5.488630812169817, - 5.790421513835188, - 5.677568079035251, - 5.060359820398777, - 3.9838687194439415, - 2.6156701333224226, - 1.192104756205089, - -0.12977803246142175, - -1.065131119441332, - -1.5934227207038791, - -1.775209953125517, - -1.6947267319932986, - -1.566779807607715, - -1.5670992271822946, - -1.7819581626093575, - -2.21710489622189, - -2.7409725716914473, - -3.219380531628784, - -3.4727546810081305, - -3.373439378187873, - -2.9299633902228583, - -2.2396691560286586, - -1.4537167328503342, - -0.7533270701445699, - -0.3193777329178763, - -0.15041093884360823, - -0.20647517586707298, - -0.346879364996458, - -0.3793337248783968, - -0.165588277476044, - 0.3417587918857682, - 1.0725785370085386, - 1.839800511725284, - 2.4720053787428973, - 2.7518225698253906, - 2.6672648277676703, - 2.3712647864445664, - 2.174300325045391, - 2.519493415885897, - 3.8604802571184145, - 6.533967212048553, - 10.738397594034767, - 16.01208306694969, - 22.18952600661644, - 28.50018454604316, - 33.8043827944381 - ], - "pressure:J43:branch135_seg0": [ - 173739.02334901888, - 191694.09219363861, - 200218.77084080077, - 196976.143687692, - 184780.16086646533, - 166008.2011733941, - 142914.07636026334, - 117668.03292724396, - 95283.5000375725, - 74019.18919209525, - 55428.270340188246, - 39618.72381796503, - 23813.060881133664, - 9147.484274498298, - -5979.627861670586, - -21141.25806515702, - -35260.43135259665, - -48666.115406047924, - -58963.863285910134, - -66614.5742029068, - -72093.2153999305, - -74925.53193565432, - -76525.96590167179, - -77358.0783122278, - -77691.3504370101, - -77729.17136049869, - -76895.674707894, - -74757.06602341968, - -71052.04450070065, - -66039.68108557956, - -60161.7320421469, - -55180.769281922236, - -52415.74551568713, - -52999.06373524413, - -58053.839024233246, - -67359.5376432255, - -79516.72176768295, - -92466.95152473579, - -104338.84148532774, - -111665.79635302858, - -113383.54863235005, - -108822.00351908553, - -97920.06035105744, - -82007.93559829293, - -64482.02732883164, - -46180.023161309255, - -28859.539490858853, - -15326.4242156169, - -4081.830323676015, - 4352.044152543613, - 10559.03067405925, - 16364.858498434816, - 20862.54551307015, - 24795.436581192946, - 27942.17919315714, - 28946.47137162453, - 27805.603898506455, - 24231.479832670026, - 18499.235164112557, - 11328.161501880133, - 4389.412407312483, - -1803.1442482440132, - -6191.934180459376, - -8274.75454279836, - -8828.84307715322, - -8315.446251810388, - -7688.115482249212, - -7883.943562492501, - -9220.815579718286, - -11605.06015454652, - -14230.125070083823, - -16418.907986786988, - -17408.327973169442, - -16504.697187832455, - -13901.748925270878, - -10255.69165227391, - -6411.019939162063, - -3026.230211054968, - -1214.5615996673432, - -754.9602876827109, - -1165.7918602724192, - -1843.2809016127592, - -1816.0172897635518, - -429.0982945765599, - 2376.9913915326806, - 6234.407879847948, - 9956.00715299203, - 12766.70297803997, - 13832.206973158058, - 13018.84583000785, - 11424.076556438851, - 10789.005757857754, - 13356.08192805108, - 21333.380182860103, - 36154.89872080186, - 58866.63679523885, - 86130.16017668176, - 117007.12317165975, - 149002.03480685147, - 173739.02334901888 - ], - "flow:J43:branch139_seg0": [ - 21.5647090901523, - 24.775403627606504, - 26.77827019196437, - 27.394483687523977, - 26.641673515310064, - 24.71457796984651, - 21.93785585406374, - 18.72327012121834, - 15.468315633992981, - 12.350484584082807, - 9.573802978963212, - 7.103359185131646, - 4.8445488416125215, - 2.732933717802536, - 0.6226412397085039, - -1.469398356050333, - -3.5244946091899347, - -5.452034649825646, - -7.107278193284071, - -8.454396370562906, - -9.42704775983488, - -10.058542765737004, - -10.436137863985367, - -10.637500338349517, - -10.745970335336693, - -10.78941601287297, - -10.746865846287179, - -10.567925686429485, - -10.200938250354541, - -9.629399115385146, - -8.904847989821725, - -8.167325594060689, - -7.58944823782413, - -7.377211651220574, - -7.684713227453058, - -8.570143315843197, - -9.956840137361631, - -11.648965344475437, - -13.35561444424987, - -14.720171284982479, - -15.479558112299081, - -15.422237210261864, - -14.50199104975757, - -12.818980214865206, - -10.623327787710535, - -8.14177994362734, - -5.714089027904051, - -3.5439265822197163, - -1.7201592439490332, - -0.3055305875075755, - 0.8015094459928388, - 1.684982916231992, - 2.412678238807425, - 3.052172128259813, - 3.562563024391598, - 3.8779853517499876, - 3.930238819989162, - 3.65780496944583, - 3.0675426214261465, - 2.227662907153892, - 1.279374498565506, - 0.3527473145037553, - -0.3969532835246567, - -0.8954518736565888, - -1.1345449905448324, - -1.1698210039624497, - -1.1155574574898461, - -1.0897379389126725, - -1.1771951253535722, - -1.4071547837190375, - -1.7329968784208793, - -2.0716056435886983, - -2.3025483074672306, - -2.3381430304819855, - -2.143177526402021, - -1.7524496204859352, - -1.2487210239327786, - -0.7548201289054897, - -0.3835335402810367, - -0.18152682800970127, - -0.14729363869072057, - -0.20623486997858947, - -0.24757440283183912, - -0.166821475506759, - 0.09356400089666676, - 0.5233923414375421, - 1.0291825381752426, - 1.493160973532019, - 1.7830444988724738, - 1.8423609721030367, - 1.7158150625845596, - 1.5680336247356996, - 1.6627710188363582, - 2.3014778392631134, - 3.7478626750778257, - 6.15771880227375, - 9.42537442183345, - 13.427986317234975, - 17.645042742705062, - 21.5647090901523 - ], - "pressure:J43:branch139_seg0": [ - 173739.02334901888, - 191694.09219363861, - 200218.77084080077, - 196976.143687692, - 184780.16086646533, - 166008.2011733941, - 142914.07636026334, - 117668.03292724396, - 95283.5000375725, - 74019.18919209525, - 55428.270340188246, - 39618.72381796503, - 23813.060881133664, - 9147.484274498298, - -5979.627861670586, - -21141.25806515702, - -35260.43135259665, - -48666.115406047924, - -58963.863285910134, - -66614.5742029068, - -72093.2153999305, - -74925.53193565432, - -76525.96590167179, - -77358.0783122278, - -77691.3504370101, - -77729.17136049869, - -76895.674707894, - -74757.06602341968, - -71052.04450070065, - -66039.68108557956, - -60161.7320421469, - -55180.769281922236, - -52415.74551568713, - -52999.06373524413, - -58053.839024233246, - -67359.5376432255, - -79516.72176768295, - -92466.95152473579, - -104338.84148532774, - -111665.79635302858, - -113383.54863235005, - -108822.00351908553, - -97920.06035105744, - -82007.93559829293, - -64482.02732883164, - -46180.023161309255, - -28859.539490858853, - -15326.4242156169, - -4081.830323676015, - 4352.044152543613, - 10559.03067405925, - 16364.858498434816, - 20862.54551307015, - 24795.436581192946, - 27942.17919315714, - 28946.47137162453, - 27805.603898506455, - 24231.479832670026, - 18499.235164112557, - 11328.161501880133, - 4389.412407312483, - -1803.1442482440132, - -6191.934180459376, - -8274.75454279836, - -8828.84307715322, - -8315.446251810388, - -7688.115482249212, - -7883.943562492501, - -9220.815579718286, - -11605.06015454652, - -14230.125070083823, - -16418.907986786988, - -17408.327973169442, - -16504.697187832455, - -13901.748925270878, - -10255.69165227391, - -6411.019939162063, - -3026.230211054968, - -1214.5615996673432, - -754.9602876827109, - -1165.7918602724192, - -1843.2809016127592, - -1816.0172897635518, - -429.0982945765599, - 2376.9913915326806, - 6234.407879847948, - 9956.00715299203, - 12766.70297803997, - 13832.206973158058, - 13018.84583000785, - 11424.076556438851, - 10789.005757857754, - 13356.08192805108, - 21333.380182860103, - 36154.89872080186, - 58866.63679523885, - 86130.16017668176, - 117007.12317165975, - 149002.03480685147, - 173739.02334901888 - ], - "flow:branch94_seg0:J44": [ - 79.12983313051946, - 90.58758628771656, - 97.63370300894638, - 99.6857692798253, - 96.95845986477316, - 90.08865071473872, - 80.18225933780063, - 68.83372323530259, - 57.30204025223984, - 46.147599362013764, - 36.28481359926769, - 27.340994594646315, - 19.041134306148063, - 11.22658349774453, - 3.26510446397714, - -4.542047235886924, - -12.236017175845049, - -19.51342824685962, - -25.606773569985105, - -30.607196939031056, - -34.24829245170287, - -36.59819222325248, - -38.08844331599842, - -38.93509059286419, - -39.4407107285251, - -39.70563603327383, - -39.60878384804304, - -38.97241791073636, - -37.61990726890192, - -35.51160693153503, - -32.858578657639946, - -30.22912232442141, - -28.226905506154196, - -27.61557317647946, - -28.932688387843104, - -32.337816232661204, - -37.44492923627754, - -43.6007426027966, - -49.66704641568341, - -54.322151781651066, - -56.74427766204854, - -56.170623390326156, - -52.503198297976404, - -46.1664870110999, - -38.21479510954922, - -29.31303698701594, - -20.676038380115592, - -13.115296256511948, - -6.6922944318593665, - -1.7410443611099244, - 2.1683409058547816, - 5.4044902582320775, - 8.07347979591367, - 10.464506666842881, - 12.37219253186138, - 13.531221422720956, - 13.725218049438313, - 12.730032453127038, - 10.584986215265351, - 7.598484363121523, - 4.254562024627302, - 1.0072506669669563, - -1.5235794628020807, - -3.1734102364324843, - -3.9410346197390504, - -4.011498592996219, - -3.829444045787011, - -3.807968239196274, - -4.217062509868294, - -5.135656225181369, - -6.349044638035488, - -7.561542399989306, - -8.347438478541408, - -8.389077182021293, - -7.612775758673833, - -6.1675011530843715, - -4.366628107776861, - -2.639170798630479, - -1.4005820448017123, - -0.7609473822288335, - -0.6949509522868805, - -0.9210123715359267, - -1.0244337333016462, - -0.6509824555734908, - 0.381793184917519, - 1.9898749850909017, - 3.8234674976509577, - 5.462642126605315, - 6.408312961977374, - 6.527590874808747, - 6.034364206327396, - 5.555929883621116, - 6.068561292510639, - 8.649346622983032, - 14.211327893039972, - 23.30536393566437, - 35.31984847083929, - 49.87145587443605, - 65.20734552550678, - 79.12983313051946 - ], - "pressure:branch94_seg0:J44": [ - 162478.5054879678, - 180850.80760355137, - 190813.77539823987, - 189878.25547055766, - 180391.63004620915, - 164364.5032420693, - 143821.03573169338, - 120412.02284920891, - 99325.4575929515, - 79028.54615886287, - 60619.1025940516, - 44899.44471651906, - 29194.919780203047, - 14480.942442392961, - -453.2516910380621, - -15630.86060637404, - -29870.084658705997, - -43207.73257413856, - -53880.02605407659, - -62077.31285822666, - -68056.16318634452, - -71509.13762245407, - -73628.31713297345, - -74879.81521843186, - -75563.87749274848, - -75860.66327167879, - -75295.0653046486, - -73491.49919136635, - -70194.97367912286, - -65634.08943248658, - -60190.1955696607, - -55443.5192311014, - -52662.62722343214, - -52854.55866141636, - -57168.03750029094, - -65434.96329089486, - -76568.87539137404, - -88543.78968950076, - -99714.788266101, - -106956.77622773958, - -109056.69115515123, - -105397.6632780387, - -95831.26662248251, - -81503.77261735307, - -65386.5463332322, - -48244.04308157429, - -31905.219846206543, - -18812.400762110654, - -7763.6368412444, - 711.3625224925776, - 7139.6359936062745, - 13063.937480209015, - 17690.293328573, - 21764.581989439645, - 25122.559182711542, - 26464.9977962354, - 25820.769210859147, - 22913.00198252431, - 17958.2570073724, - 11511.574715578328, - 5162.393488087419, - -568.6771670822761, - -4878.7124120367225, - -7083.062729353725, - -7827.333977091313, - -7581.061105125324, - -7146.112504640215, - -7379.992273908614, - -8612.584614436993, - -10793.005062059334, - -13229.229217518954, - -15337.18468874474, - -16375.35447481205, - -15716.231966918378, - -13489.992835093057, - -10255.37919852842, - -6751.046909737524, - -3584.255266737122, - -1794.6576455197355, - -1213.2700426217193, - -1430.86484905489, - -1952.979174755697, - -1897.0922190991048, - -645.9159491689907, - 1879.7967083886574, - 5413.329530736675, - 8882.600504018183, - 11558.623513182773, - 12756.440629839075, - 12239.62339583428, - 10935.538071786943, - 10422.096379066761, - 12717.346320154038, - 19882.060430496505, - 33289.95791910511, - 53978.50341293779, - 79092.31018349466, - 108101.94595860194, - 138370.65005474206, - 162478.5054879678 - ], - "flow:J44:branch95_seg0": [ - 53.96028978135659, - 61.93439017758026, - 66.92050943704048, - 68.50612302765745, - 66.79067627153346, - 62.198589450378776, - 55.4832396130103, - 47.72887520342704, - 39.79614698733693, - 32.11215903811926, - 25.28953242378578, - 19.101285556220965, - 13.376962791955728, - 7.985898248007756, - 2.514557972283958, - -2.857937414972537, - -8.161071062243185, - -13.174511652728869, - -17.406268760108627, - -20.88810551855694, - -23.433114933536586, - -25.09388680736695, - -26.147635895652993, - -26.749664695694417, - -27.110009315652388, - -27.300110970492266, - -27.246114301036396, - -26.827686351969813, - -25.921897868146072, - -24.496255071139988, - -22.689721224185572, - -20.878753091228422, - -19.477386483262332, - -19.010050521715797, - -19.850016402005316, - -22.120939135076483, - -25.57851135887137, - -29.781947012406, - -33.956766951023155, - -37.21030368446325, - -38.95499569102427, - -38.659716861051514, - -36.24090861755543, - -31.975339718565138, - -26.555540037177533, - -20.457426534246036, - -14.514360456860874, - -9.272103873424006, - -4.815570128974461, - -1.364720095386784, - 1.363341856616726, - 3.6078366880566435, - 5.462281685995632, - 7.11914693657761, - 8.445795824747712, - 9.270085908076451, - 9.437008538581216, - 8.791726587170576, - 7.354823390241361, - 5.328754469052978, - 3.038331047661246, - 0.8011094132327662, - -0.9634921286768411, - -2.1303677637484895, - -2.686386581690769, - -2.7568395415280316, - -2.639858708924747, - -2.618739630741692, - -2.885230468945023, - -3.499831429810389, - -4.325673014690426, - -5.161679198811009, - -5.716215541570736, - -5.77059587111387, - -5.264469975083734, - -4.2919132803572655, - -3.063266193513014, - -1.872953195454179, - -1.0038330952917105, - -0.5428028794584517, - -0.4797277435909398, - -0.6262277276574298, - -0.7021981009430522, - -0.462076814506897, - 0.22615039512751287, - 1.3132851338798912, - 2.568558818446931, - 3.703382674593353, - 4.377276661162195, - 4.4879355470341435, - 4.167757808896784, - 3.8352285304997213, - 4.151503762433353, - 5.854119469373492, - 9.579455321429558, - 15.710539729492321, - 23.879045874317224, - 33.81701067004604, - 44.326223040699595, - 53.96028978135659 - ], - "pressure:J44:branch95_seg0": [ - 162478.5054879678, - 180850.80760355137, - 190813.77539823987, - 189878.25547055766, - 180391.63004620915, - 164364.5032420693, - 143821.03573169338, - 120412.02284920891, - 99325.4575929515, - 79028.54615886287, - 60619.1025940516, - 44899.44471651906, - 29194.919780203047, - 14480.942442392961, - -453.2516910380621, - -15630.86060637404, - -29870.084658705997, - -43207.73257413856, - -53880.02605407659, - -62077.31285822666, - -68056.16318634452, - -71509.13762245407, - -73628.31713297345, - -74879.81521843186, - -75563.87749274848, - -75860.66327167879, - -75295.0653046486, - -73491.49919136635, - -70194.97367912286, - -65634.08943248658, - -60190.1955696607, - -55443.5192311014, - -52662.62722343214, - -52854.55866141636, - -57168.03750029094, - -65434.96329089486, - -76568.87539137404, - -88543.78968950076, - -99714.788266101, - -106956.77622773958, - -109056.69115515123, - -105397.6632780387, - -95831.26662248251, - -81503.77261735307, - -65386.5463332322, - -48244.04308157429, - -31905.219846206543, - -18812.400762110654, - -7763.6368412444, - 711.3625224925776, - 7139.6359936062745, - 13063.937480209015, - 17690.293328573, - 21764.581989439645, - 25122.559182711542, - 26464.9977962354, - 25820.769210859147, - 22913.00198252431, - 17958.2570073724, - 11511.574715578328, - 5162.393488087419, - -568.6771670822761, - -4878.7124120367225, - -7083.062729353725, - -7827.333977091313, - -7581.061105125324, - -7146.112504640215, - -7379.992273908614, - -8612.584614436993, - -10793.005062059334, - -13229.229217518954, - -15337.18468874474, - -16375.35447481205, - -15716.231966918378, - -13489.992835093057, - -10255.37919852842, - -6751.046909737524, - -3584.255266737122, - -1794.6576455197355, - -1213.2700426217193, - -1430.86484905489, - -1952.979174755697, - -1897.0922190991048, - -645.9159491689907, - 1879.7967083886574, - 5413.329530736675, - 8882.600504018183, - 11558.623513182773, - 12756.440629839075, - 12239.62339583428, - 10935.538071786943, - 10422.096379066761, - 12717.346320154038, - 19882.060430496505, - 33289.95791910511, - 53978.50341293779, - 79092.31018349466, - 108101.94595860194, - 138370.65005474206, - 162478.5054879678 - ], - "flow:J44:branch115_seg0": [ - 25.16954334916277, - 28.6531961101368, - 30.713193571905798, - 31.179646252167345, - 30.16778359323834, - 27.89006126436081, - 24.699019724788286, - 21.1048480318745, - 17.50589326490292, - 14.03544032389424, - 10.995281175478869, - 8.23970903842514, - 5.66417151419156, - 3.2406852497381915, - 0.750546491693098, - -1.6841098209150849, - -4.074946113602403, - -6.338916594129753, - -8.20050480987686, - -9.719091420475515, - -10.815177518166648, - -11.504305415886169, - -11.940807420344852, - -12.18542589716975, - -12.330701412872818, - -12.405525062783278, - -12.362669547006165, - -12.144731558767804, - -11.698009400755222, - -11.015351860395024, - -10.168857433455093, - -9.350369233191671, - -8.749519022893047, - -8.605522654764309, - -9.082671985835743, - -10.216877097584716, - -11.866417877407129, - -13.818795590390662, - -15.710279464659616, - -17.111848097188375, - -17.789281971024458, - -17.510906529274454, - -16.262289680420583, - -14.191147292534758, - -11.65925507237191, - -8.855610452769982, - -6.161677923254741, - -3.8431923830879438, - -1.8767243028849119, - -0.3763242657231362, - 0.8049990492380561, - 1.7966535701754347, - 2.611198109918024, - 3.3453597302652778, - 3.926396707113687, - 4.261135514644458, - 4.288209510857026, - 3.93830586595644, - 3.2301628250238426, - 2.269729894068447, - 1.2162309769661086, - 0.2061412537342573, - -0.5600873341251187, - -1.0430424726840946, - -1.2546480380485163, - -1.2546590514681526, - -1.189585336862199, - -1.1892286084545727, - -1.3318320409232725, - -1.635824795370991, - -2.023371623345201, - -2.399863201178314, - -2.631222936970687, - -2.6184813109073826, - -2.3483057835901313, - -1.8755878727270712, - -1.3033619142638813, - -0.7662176031763019, - -0.3967489495100002, - -0.2181445027704006, - -0.21522320869596231, - -0.29478464387851816, - -0.3222356323585865, - -0.18890564106660426, - 0.15564278978998533, - 0.6765898512110354, - 1.2549086792040778, - 1.7592594520120053, - 2.031036300815158, - 2.0396553277745264, - 1.8666063974306737, - 1.7207013531214044, - 1.9170575300772643, - 2.7952271536095203, - 4.631872571610367, - 7.594824206172233, - 11.440802596521866, - 16.054445204389793, - 20.881122484807058, - 25.16954334916277 - ], - "pressure:J44:branch115_seg0": [ - 162478.5054879678, - 180850.80760355137, - 190813.77539823987, - 189878.25547055766, - 180391.63004620915, - 164364.5032420693, - 143821.03573169338, - 120412.02284920891, - 99325.4575929515, - 79028.54615886287, - 60619.1025940516, - 44899.44471651906, - 29194.919780203047, - 14480.942442392961, - -453.2516910380621, - -15630.86060637404, - -29870.084658705997, - -43207.73257413856, - -53880.02605407659, - -62077.31285822666, - -68056.16318634452, - -71509.13762245407, - -73628.31713297345, - -74879.81521843186, - -75563.87749274848, - -75860.66327167879, - -75295.0653046486, - -73491.49919136635, - -70194.97367912286, - -65634.08943248658, - -60190.1955696607, - -55443.5192311014, - -52662.62722343214, - -52854.55866141636, - -57168.03750029094, - -65434.96329089486, - -76568.87539137404, - -88543.78968950076, - -99714.788266101, - -106956.77622773958, - -109056.69115515123, - -105397.6632780387, - -95831.26662248251, - -81503.77261735307, - -65386.5463332322, - -48244.04308157429, - -31905.219846206543, - -18812.400762110654, - -7763.6368412444, - 711.3625224925776, - 7139.6359936062745, - 13063.937480209015, - 17690.293328573, - 21764.581989439645, - 25122.559182711542, - 26464.9977962354, - 25820.769210859147, - 22913.00198252431, - 17958.2570073724, - 11511.574715578328, - 5162.393488087419, - -568.6771670822761, - -4878.7124120367225, - -7083.062729353725, - -7827.333977091313, - -7581.061105125324, - -7146.112504640215, - -7379.992273908614, - -8612.584614436993, - -10793.005062059334, - -13229.229217518954, - -15337.18468874474, - -16375.35447481205, - -15716.231966918378, - -13489.992835093057, - -10255.37919852842, - -6751.046909737524, - -3584.255266737122, - -1794.6576455197355, - -1213.2700426217193, - -1430.86484905489, - -1952.979174755697, - -1897.0922190991048, - -645.9159491689907, - 1879.7967083886574, - 5413.329530736675, - 8882.600504018183, - 11558.623513182773, - 12756.440629839075, - 12239.62339583428, - 10935.538071786943, - 10422.096379066761, - 12717.346320154038, - 19882.060430496505, - 33289.95791910511, - 53978.50341293779, - 79092.31018349466, - 108101.94595860194, - 138370.65005474206, - 162478.5054879678 - ], - "flow:branch95_seg0:J45": [ - 53.94021067942876, - 61.921839256634726, - 66.91607117568859, - 68.50974737150942, - 66.80297610408424, - 62.21645182187475, - 55.50265057806802, - 47.75381058335516, - 39.81558287805312, - 32.12728465949075, - 25.307324156838096, - 19.114297703465557, - 13.39058520177083, - 7.999342124519729, - 2.524508868978869, - -2.8437311086805517, - -8.149471275342556, - -13.167450673345693, - -17.398103374863148, - -20.882462753341095, - -23.430124263506052, - -25.09128431791252, - -26.146640799438124, - -26.74900670160945, - -27.109299295567233, - -27.300241045204423, - -27.2469846116389, - -26.829873233253846, - -25.925574117306642, - -24.501063248950583, - -22.69461921707837, - -20.882907598023593, - -19.478580092428572, - -19.007897806307145, - -19.844207637228564, - -22.112751513400838, - -25.566206637871943, - -29.77230803240573, - -33.948905328628705, - -37.20588598071074, - -38.95652359109315, - -38.666133775553696, - -36.25022321765289, - -31.986198142388556, - -26.56938562315807, - -20.471396243058052, - -14.525361872998479, - -9.282750900413763, - -4.823005860376442, - -1.370701897071915, - 1.357082944186645, - 3.6034055867882593, - 5.458116648338619, - 7.1156163365529075, - 8.44325381488031, - 9.269463908879535, - 9.438692063409425, - 8.795694156760863, - 7.359792355159332, - 5.335841998364632, - 3.0439751467659986, - 0.8042934561087123, - -0.9600720703496955, - -2.1291601945148337, - -2.686729803555901, - -2.7571768343730207, - -2.639915053722203, - -2.618136252545991, - -2.8838950022812195, - -3.4981236848796864, - -4.323769648610739, - -5.160149419987846, - -5.71618821826429, - -5.771616572460273, - -5.2668756518429, - -4.294912389653232, - -3.0665409902288627, - -1.8752899465242145, - -1.0050837623521667, - -0.5428947656182486, - -0.4791642486085512, - -0.6259432527466096, - -0.702726797828276, - -0.46396482007094203, - 0.22347111821385324, - 1.309531120557001, - 2.565666645800126, - 3.7023964483012635, - 4.3769451041870395, - 4.488736685133566, - 4.168813547216408, - 3.8347477189224524, - 4.14793661954875, - 5.845481202265794, - 9.566242236976203, - 15.693420076900129, - 23.857802199909436, - 33.78929260954979, - 44.30453008077069, - 53.94021067942876 - ], - "pressure:branch95_seg0:J45": [ - 157269.38707129288, - 176586.18547123612, - 187630.8335281139, - 188263.2672299395, - 180257.13213046355, - 165381.58002521185, - 145613.8685427671, - 122966.1150726269, - 101759.4840532165, - 81349.21908560942, - 62952.02534519624, - 46911.6809265506, - 31313.9249971172, - 16627.335352099046, - 1741.512002041635, - -13188.295074398678, - -27510.135649495518, - -40906.87447483153, - -51773.576054451994, - -60333.75856977683, - -66584.79885928074, - -70330.85383427265, - -72669.52061100573, - -74026.98695949525, - -74791.75299520924, - -75159.44374229437, - -74718.65318226907, - -73123.24644988382, - -70085.62931436123, - -65754.23906348243, - -60476.82610868713, - -55694.84003661005, - -52607.09039460454, - -52338.82001152514, - -56017.37487239432, - -63629.23587787723, - -74189.53299255866, - -86007.32624517714, - -97198.13110664036, - -104928.88339764973, - -107822.33193942237, - -105044.55876374966, - -96368.59806472072, - -82871.65280519884, - -67233.80487030101, - -50304.142677174365, - -34029.74835787682, - -20664.355823228783, - -9316.58161524754, - -601.4306098936576, - 6072.137267210076, - 12064.52496415099, - 16778.238912197445, - 20962.650809505598, - 24400.339597990376, - 26009.579150145164, - 25701.44512112694, - 23162.007207848914, - 18537.339700106677, - 12402.616989127237, - 6087.167773864811, - 265.3111539310049, - -4181.391662540519, - -6682.674698104482, - -7653.699876540187, - -7535.82294708126, - -7132.993970706169, - -7276.073342237157, - -8356.48038884876, - -10383.580163764093, - -12753.687818817472, - -14904.097701735987, - -16086.753943980342, - -15664.347981947316, - -13699.945022421756, - -10647.902703431952, - -7213.434255724623, - -4021.9529847972103, - -2072.2308210283218, - -1291.9484806711387, - -1385.570918101691, - -1871.656654189137, - -1897.8644116661953, - -837.0913539838726, - 1484.801230434127, - 4828.065708018569, - 8283.880325831655, - 11079.441504186065, - 12467.994206538662, - 12198.140879324563, - 11022.68734658436, - 10384.959532940022, - 12239.175514316703, - 18612.22769216912, - 31022.782565772468, - 50480.395749732925, - 74642.28695683816, - 102909.5463509456, - 132715.58551900627, - 157269.38707129288 - ], - "flow:J45:branch96_seg0": [ - 28.516074949961073, - 32.75454670908349, - 35.41526071427078, - 36.27793916963048, - 35.39202932646714, - 32.976781533903164, - 29.430010515574768, - 25.333790212339277, - 21.12615851610462, - 17.05174488142323, - 13.438151215056353, - 10.153094143989733, - 7.121031311934794, - 4.264546111793799, - 1.3639502089911482, - -1.4769422390591787, - -4.288189237223468, - -6.948950200149904, - -9.191670011347501, - -11.041585790742218, - -12.39560070411528, - -13.27908770063096, - -13.841334548797844, - -14.162188853654374, - -14.354068859522775, - -14.456344873118796, - -14.42967372353145, - -14.211111744344823, - -13.73519494625927, - -12.983404147027136, - -12.028509358379187, - -11.06838587383389, - -10.32120133079121, - -10.066292630369338, - -10.501977818596238, - -11.696208351310645, - -13.518544870894443, - -15.744767648363673, - -17.95788756418811, - -19.68865037564601, - -20.6254555548302, - -20.482235635600258, - -19.213353804877894, - -16.963422928623704, - -14.100965274263807, - -10.873889133486568, - -7.723008846444993, - -4.943193016672876, - -2.5761984195750944, - -0.7433998736540411, - 0.7044757178863358, - 1.8966007192938212, - 2.880788852346043, - 3.7599258755204543, - 4.464773839395612, - 4.905690108634143, - 4.999298774457838, - 4.663222902810989, - 3.9064415185665453, - 2.8380480866194944, - 1.6241748845004709, - 0.43647328700724086, - -0.4996954344845138, - -1.1225791856003136, - -1.4210292342214739, - -1.4601402074224727, - -1.398601642217474, - -1.3862501582656204, - -1.5253393489174114, - -1.8490565084964337, - -2.2853872629235377, - -2.7286594970653537, - -3.02509632671966, - -3.057198292622795, - -2.7929328782152094, - -2.2804182391994128, - -1.6308183621091705, - -0.9993446890670739, - -0.5363550680781684, - -0.28923157602924077, - -0.2536208507976205, - -0.3307528788615578, - -0.3722353716856403, - -0.24786992127712643, - 0.11397455286458681, - 0.6870143153511102, - 1.3522658178639266, - 1.9558758960353142, - 2.315302052791556, - 2.3774562711211367, - 2.2097343518680757, - 2.0318291217798725, - 2.1930691475759727, - 3.083689045990488, - 5.042949264783365, - 8.275954070590052, - 12.588897022098259, - 17.83884048562908, - 23.40737339379091, - 28.516074949961073 - ], - "pressure:J45:branch96_seg0": [ - 157269.38707129288, - 176586.18547123612, - 187630.8335281139, - 188263.2672299395, - 180257.13213046355, - 165381.58002521185, - 145613.8685427671, - 122966.1150726269, - 101759.4840532165, - 81349.21908560942, - 62952.02534519624, - 46911.6809265506, - 31313.9249971172, - 16627.335352099046, - 1741.512002041635, - -13188.295074398678, - -27510.135649495518, - -40906.87447483153, - -51773.576054451994, - -60333.75856977683, - -66584.79885928074, - -70330.85383427265, - -72669.52061100573, - -74026.98695949525, - -74791.75299520924, - -75159.44374229437, - -74718.65318226907, - -73123.24644988382, - -70085.62931436123, - -65754.23906348243, - -60476.82610868713, - -55694.84003661005, - -52607.09039460454, - -52338.82001152514, - -56017.37487239432, - -63629.23587787723, - -74189.53299255866, - -86007.32624517714, - -97198.13110664036, - -104928.88339764973, - -107822.33193942237, - -105044.55876374966, - -96368.59806472072, - -82871.65280519884, - -67233.80487030101, - -50304.142677174365, - -34029.74835787682, - -20664.355823228783, - -9316.58161524754, - -601.4306098936576, - 6072.137267210076, - 12064.52496415099, - 16778.238912197445, - 20962.650809505598, - 24400.339597990376, - 26009.579150145164, - 25701.44512112694, - 23162.007207848914, - 18537.339700106677, - 12402.616989127237, - 6087.167773864811, - 265.3111539310049, - -4181.391662540519, - -6682.674698104482, - -7653.699876540187, - -7535.82294708126, - -7132.993970706169, - -7276.073342237157, - -8356.48038884876, - -10383.580163764093, - -12753.687818817472, - -14904.097701735987, - -16086.753943980342, - -15664.347981947316, - -13699.945022421756, - -10647.902703431952, - -7213.434255724623, - -4021.9529847972103, - -2072.2308210283218, - -1291.9484806711387, - -1385.570918101691, - -1871.656654189137, - -1897.8644116661953, - -837.0913539838726, - 1484.801230434127, - 4828.065708018569, - 8283.880325831655, - 11079.441504186065, - 12467.994206538662, - 12198.140879324563, - 11022.68734658436, - 10384.959532940022, - 12239.175514316703, - 18612.22769216912, - 31022.782565772468, - 50480.395749732925, - 74642.28695683816, - 102909.5463509456, - 132715.58551900627, - 157269.38707129288 - ], - "flow:J45:branch111_seg0": [ - 25.424135729467604, - 29.167292547551586, - 31.500810461418013, - 32.23180820187897, - 31.41094677761769, - 29.23967028797201, - 26.072640062494454, - 22.420020371015788, - 18.689424361947303, - 15.075539778068265, - 11.869172941783074, - 8.961203559477383, - 6.2695538898372165, - 3.734796012727269, - 1.1605586599877524, - -1.366788869621048, - -3.861282038120151, - -6.218500473194199, - -8.206433363514485, - -9.840876962599443, - -11.034523559389621, - -11.812196617281394, - -12.305306250640184, - -12.58681784795446, - -12.75523043604529, - -12.843896172085076, - -12.817310888108421, - -12.61876148890923, - -12.190379171047937, - -11.517659101922387, - -10.666109858699295, - -9.81452172419005, - -9.157378761637514, - -8.941605175936926, - -9.3422298186326, - -10.416543162090424, - -12.047661766976628, - -14.02754038404278, - -15.991017764440537, - -17.517235605064453, - -18.331068036262774, - -18.183898139953328, - -17.036869412774987, - -15.022775213764893, - -12.468420348894195, - -9.597507109571499, - -6.802353026553516, - -4.339557883740883, - -2.246807440801349, - -0.6273020234178617, - 0.6526072263003058, - 1.7068048674944378, - 2.5773277959925736, - 3.3556904610324376, - 3.9784799754846847, - 4.363773800245417, - 4.439393288951629, - 4.1324712539499, - 3.453350836592668, - 2.4977939117452608, - 1.4198002622656318, - 0.3678201691015121, - -0.46037663586515803, - -1.0065810089145237, - -1.265700569334318, - -1.2970366269504665, - -1.2413134115045776, - -1.23188609428038, - -1.3585556533638758, - -1.6490671763833715, - -2.0383823856872203, - -2.4314899229224554, - -2.6910918915446636, - -2.714418279837432, - -2.473942773627677, - -2.014494150453813, - -1.4357226281196753, - -0.87594525745712, - -0.46872869427398306, - -0.25366318958900985, - -0.22554339781092148, - -0.2951903738850477, - -0.33049142614262367, - -0.2160948987937976, - 0.10949656534927771, - 0.6225168052058728, - 1.2134008279362263, - 1.7465205522659546, - 2.0616430513955137, - 2.11128041401246, - 1.9590791953483415, - 1.802918597142577, - 1.954867471972763, - 2.7617921562752756, - 4.523292972192672, - 7.417466006310391, - 11.268905177811176, - 15.950452123920808, - 20.897156686979997, - 25.424135729467604 - ], - "pressure:J45:branch111_seg0": [ - 157269.38707129288, - 176586.18547123612, - 187630.8335281139, - 188263.2672299395, - 180257.13213046355, - 165381.58002521185, - 145613.8685427671, - 122966.1150726269, - 101759.4840532165, - 81349.21908560942, - 62952.02534519624, - 46911.6809265506, - 31313.9249971172, - 16627.335352099046, - 1741.512002041635, - -13188.295074398678, - -27510.135649495518, - -40906.87447483153, - -51773.576054451994, - -60333.75856977683, - -66584.79885928074, - -70330.85383427265, - -72669.52061100573, - -74026.98695949525, - -74791.75299520924, - -75159.44374229437, - -74718.65318226907, - -73123.24644988382, - -70085.62931436123, - -65754.23906348243, - -60476.82610868713, - -55694.84003661005, - -52607.09039460454, - -52338.82001152514, - -56017.37487239432, - -63629.23587787723, - -74189.53299255866, - -86007.32624517714, - -97198.13110664036, - -104928.88339764973, - -107822.33193942237, - -105044.55876374966, - -96368.59806472072, - -82871.65280519884, - -67233.80487030101, - -50304.142677174365, - -34029.74835787682, - -20664.355823228783, - -9316.58161524754, - -601.4306098936576, - 6072.137267210076, - 12064.52496415099, - 16778.238912197445, - 20962.650809505598, - 24400.339597990376, - 26009.579150145164, - 25701.44512112694, - 23162.007207848914, - 18537.339700106677, - 12402.616989127237, - 6087.167773864811, - 265.3111539310049, - -4181.391662540519, - -6682.674698104482, - -7653.699876540187, - -7535.82294708126, - -7132.993970706169, - -7276.073342237157, - -8356.48038884876, - -10383.580163764093, - -12753.687818817472, - -14904.097701735987, - -16086.753943980342, - -15664.347981947316, - -13699.945022421756, - -10647.902703431952, - -7213.434255724623, - -4021.9529847972103, - -2072.2308210283218, - -1291.9484806711387, - -1385.570918101691, - -1871.656654189137, - -1897.8644116661953, - -837.0913539838726, - 1484.801230434127, - 4828.065708018569, - 8283.880325831655, - 11079.441504186065, - 12467.994206538662, - 12198.140879324563, - 11022.68734658436, - 10384.959532940022, - 12239.175514316703, - 18612.22769216912, - 31022.782565772468, - 50480.395749732925, - 74642.28695683816, - 102909.5463509456, - 132715.58551900627, - 157269.38707129288 - ], - "flow:branch99_seg0:J46": [ - 62.29944660413787, - 68.80019696779317, - 71.44034572737947, - 70.13160717087642, - 65.58079034665806, - 58.50065369819317, - 49.898079387072166, - 40.96073484651635, - 32.80218064026485, - 25.241180671515384, - 18.79870787998426, - 13.214356104466638, - 7.713779524494677, - 2.578049995260936, - -2.8326547780891276, - -8.265983764323272, - -13.246522162684972, - -18.008802600330196, - -21.585888936116014, - -24.30667587645346, - -26.072819837706877, - -26.946553641933356, - -27.416593598468925, - -27.59340744527974, - -27.669712640039258, - -27.630077773027043, - -27.303497397006907, - -26.50121906211089, - -25.14127218145193, - -23.235071525806738, - -21.096132067200365, - -19.240857447547913, - -18.209206672277382, - -18.49715451078611, - -20.443847120740735, - -23.89423788792594, - -28.4185462389467, - -33.13274366454249, - -37.36100245765596, - -39.83706543167459, - -40.296532563104265, - -38.31308606028464, - -34.20280425119755, - -28.326873143996515, - -21.91805191229454, - -15.253937102595861, - -9.283212632801002, - -4.560266837723885, - -0.6956754084598088, - 2.0184367599275523, - 4.16857498850006, - 5.99315303838552, - 7.529362348321174, - 8.933817637074624, - 9.950173693674355, - 10.283431534128434, - 9.827149695993766, - 8.451356584264024, - 6.310549008524862, - 3.7052125206297246, - 1.1801448665304362, - -1.028841708735465, - -2.498335381906057, - -3.153585383685082, - -3.240637238237276, - -2.9447165089706835, - -2.671389367095093, - -2.725934080930048, - -3.204680380664878, - -4.086038698541872, - -5.055554819772795, - -5.874134551789189, - -6.18972076131679, - -5.838751838694684, - -4.855628981061705, - -3.512672646121524, - -2.058792015517442, - -0.890186965156139, - -0.252839344495235, - -0.12402709154838136, - -0.35759194321056914, - -0.6605127936180113, - -0.6734571830106865, - -0.16517511595801518, - 0.8794109150270419, - 2.3010014099184435, - 3.6651768049649305, - 4.673552501854312, - 4.985997700033062, - 4.629340990513671, - 3.9741934465414097, - 3.6821331010897786, - 4.565805499719983, - 7.492763492828158, - 12.82223039854788, - 21.034124464910448, - 30.847849164382353, - 42.25867226910001, - 53.2991390910447, - 62.29944660413787 - ], - "pressure:branch99_seg0:J46": [ - 193992.28087881475, - 206739.309820831, - 210685.83390765623, - 200695.90831965455, - 182406.1052125822, - 159291.31495440291, - 133836.1274725118, - 105466.51337363174, - 84450.30435163401, - 64297.255999080226, - 45450.29607596072, - 31421.61159353261, - 14827.628292039519, - -48.82686447902755, - -15281.12281027312, - -31847.213847442512, - -45246.89066775055, - -58382.245910988444, - -67864.48672436399, - -73684.7018940389, - -78052.40530149775, - -79691.43033664544, - -80337.41745347125, - -80816.3703373634, - -80806.27721849577, - -80489.8828819582, - -79045.56253719733, - -75868.8953638361, - -70941.3831727898, - -64917.61199268744, - -58410.4106110293, - -53707.62139822831, - -52631.05274827097, - -55423.92995757205, - -63371.40287432719, - -75475.92206788703, - -90019.95787560519, - -102936.28353734547, - -114264.00331852569, - -118773.67942288172, - -116394.48037924363, - -107686.97836860783, - -93028.54566687597, - -73659.35476351278, - -54555.257917203926, - -36102.818216945794, - -18950.159983181267, - -7082.450201354769, - 2369.386902295553, - 9702.892156824828, - 14716.445558093996, - 20194.684093951164, - 24378.640148110364, - 27616.162540913647, - 30375.280113712917, - 30078.790007827974, - 27339.829117222875, - 22144.815630004705, - 15131.672827511085, - 6683.598244656948, - -15.588085173571812, - -5430.408435227299, - -9063.426955039076, - -9615.382059638478, - -9151.440334458335, - -8195.108087652205, - -7545.080065574359, - -8261.04833093602, - -10310.555584497637, - -13336.686987629906, - -16123.58409925388, - -17940.082150313483, - -18167.205183237147, - -16174.194991628587, - -12411.95128014413, - -8098.012813318801, - -4138.221097551981, - -1050.777081619838, - -60.14863278622244, - -599.3145606996644, - -1507.5837771549527, - -2219.653976251445, - -1709.158661941921, - 625.0481027740575, - 4304.083134380796, - 8948.376590866703, - 12486.031062919523, - 14514.58138422077, - 14617.978064242436, - 12679.610064873517, - 10644.862425388497, - 10858.134283103678, - 15684.649809243832, - 27435.02642900843, - 46516.472286686585, - 74471.77769797819, - 105261.02148572322, - 138441.24359844468, - 171763.5386045525, - 193992.28087881475 - ], - "flow:J46:branch100_seg0": [ - 22.842963849351666, - 25.188470211550893, - 26.117791507234568, - 25.599350907207555, - 23.90364362279526, - 21.292990772356347, - 18.1368236579463, - 14.865144263945943, - 11.89466737255476, - 9.141841412574458, - 6.796169829805561, - 4.768256883951418, - 2.7596909170287414, - 0.8870619981546526, - -1.0884601222557033, - -3.075453186752881, - -4.886978613449849, - -6.6227582706897845, - -7.919116817118953, - -8.901996218835015, - -9.538563352934014, - -9.849263424870339, - -10.016361372888683, - -10.0786929549639, - -10.10543320447117, - -10.089753518217938, - -9.967784433076174, - -9.66994339563659, - -9.167805405008098, - -8.466520390439365, - -7.683253763565784, - -7.008429526604522, - -6.640860081673024, - -6.759132170602307, - -7.486880312481159, - -8.762128480669519, - -10.426349624889564, - -12.148199585691538, - -13.687918222447953, - -14.57498717602411, - -14.721163119189676, - -13.972880697218976, - -12.451738866818165, - -10.288149247990406, - -7.941951471498719, - -5.507772759988068, - -3.332007867522391, - -1.6193573352311619, - -0.21735565910559843, - 0.7644662280666491, - 1.5436502010197406, - 2.2072350200651, - 2.766054211600723, - 3.2766819871018993, - 3.6446932447786655, - 3.7593848037028175, - 3.5843682629710787, - 3.0727876813406154, - 2.2834225463132154, - 1.3263515510971948, - 0.4053009855147808, - -0.39741289775666006, - -0.9278963598061895, - -1.1583790100740432, - -1.1843588727862058, - -1.0730436697114494, - -0.9733243500342741, - -0.9965165106196775, - -1.1754783900962316, - -1.5011953098237056, - -1.8560373646374333, - -2.1531018946213965, - -2.2636124563395748, - -2.1290739007102712, - -1.7636726148139197, - -1.2698433765873876, - -0.7380040956914917, - -0.3137615063901652, - -0.08600186535768849, - -0.04426637799356132, - -0.1327950302450415, - -0.24392066083492164, - -0.24580346801599567, - -0.054832884032390596, - 0.33189581974234716, - 0.8551115643593514, - 1.3525205901612638, - 1.7166795825781598, - 1.824343470652008, - 1.687376159278218, - 1.445321988339688, - 1.3429517500245143, - 1.6778266229189505, - 2.7679073962752225, - 4.7371489489641725, - 7.764842158485803, - 11.364820395925213, - 15.544962985399431, - 19.57593189783207, - 22.842963849351666 - ], - "pressure:J46:branch100_seg0": [ - 193992.28087881475, - 206739.309820831, - 210685.83390765623, - 200695.90831965455, - 182406.1052125822, - 159291.31495440291, - 133836.1274725118, - 105466.51337363174, - 84450.30435163401, - 64297.255999080226, - 45450.29607596072, - 31421.61159353261, - 14827.628292039519, - -48.82686447902755, - -15281.12281027312, - -31847.213847442512, - -45246.89066775055, - -58382.245910988444, - -67864.48672436399, - -73684.7018940389, - -78052.40530149775, - -79691.43033664544, - -80337.41745347125, - -80816.3703373634, - -80806.27721849577, - -80489.8828819582, - -79045.56253719733, - -75868.8953638361, - -70941.3831727898, - -64917.61199268744, - -58410.4106110293, - -53707.62139822831, - -52631.05274827097, - -55423.92995757205, - -63371.40287432719, - -75475.92206788703, - -90019.95787560519, - -102936.28353734547, - -114264.00331852569, - -118773.67942288172, - -116394.48037924363, - -107686.97836860783, - -93028.54566687597, - -73659.35476351278, - -54555.257917203926, - -36102.818216945794, - -18950.159983181267, - -7082.450201354769, - 2369.386902295553, - 9702.892156824828, - 14716.445558093996, - 20194.684093951164, - 24378.640148110364, - 27616.162540913647, - 30375.280113712917, - 30078.790007827974, - 27339.829117222875, - 22144.815630004705, - 15131.672827511085, - 6683.598244656948, - -15.588085173571812, - -5430.408435227299, - -9063.426955039076, - -9615.382059638478, - -9151.440334458335, - -8195.108087652205, - -7545.080065574359, - -8261.04833093602, - -10310.555584497637, - -13336.686987629906, - -16123.58409925388, - -17940.082150313483, - -18167.205183237147, - -16174.194991628587, - -12411.95128014413, - -8098.012813318801, - -4138.221097551981, - -1050.777081619838, - -60.14863278622244, - -599.3145606996644, - -1507.5837771549527, - -2219.653976251445, - -1709.158661941921, - 625.0481027740575, - 4304.083134380796, - 8948.376590866703, - 12486.031062919523, - 14514.58138422077, - 14617.978064242436, - 12679.610064873517, - 10644.862425388497, - 10858.134283103678, - 15684.649809243832, - 27435.02642900843, - 46516.472286686585, - 74471.77769797819, - 105261.02148572322, - 138441.24359844468, - 171763.5386045525, - 193992.28087881475 - ], - "flow:J46:branch143_seg0": [ - 39.45648275478648, - 43.611726756242994, - 45.32255422014556, - 44.532256263668856, - 41.67714672386286, - 37.20766292583782, - 31.761255729125335, - 26.0955905825705, - 20.90751326771004, - 16.099339258941274, - 12.002538050177076, - 8.44609922051614, - 4.954088607465823, - 1.6909879971034774, - -1.744194655834233, - -5.190530577571325, - -8.359543549234871, - -11.38604432963985, - -13.666772118997008, - -15.404679657617796, - -16.53425648477194, - -17.097290217061026, - -17.400232225579877, - -17.514714490317417, - -17.564279435567688, - -17.540324254809587, - -17.33571296393043, - -16.831275666472745, - -15.973466776444488, - -14.768551135367373, - -13.412878303634244, - -12.232427920943401, - -11.568346590604172, - -11.73802234018468, - -12.95696680825928, - -15.132109407255967, - -17.992196614056652, - -20.984544078851183, - -23.67308423520841, - -25.26207825565001, - -25.57536944391443, - -24.340205363065706, - -21.751065384379434, - -18.038723896006005, - -13.976100440795818, - -9.746164342607791, - -5.951204765278611, - -2.9409095024927265, - -0.47831974935421673, - 1.2539705318609158, - 2.6249247874803117, - 3.785918018320421, - 4.76330813672046, - 5.657135649972711, - 6.305480448895715, - 6.524046730425616, - 6.242781433022743, - 5.378568902923413, - 4.027126462211665, - 2.378860969532429, - 0.7748438810157328, - -0.631428810978878, - -1.570439022099981, - -1.9952063736111665, - -2.0562783654512584, - -1.871672839259206, - -1.6980650170607365, - -1.7294175703103383, - -2.0292019905686565, - -2.584843388718165, - -3.199517455135434, - -3.7210326571677297, - -3.926108304977256, - -3.709677937984416, - -3.091956366247799, - -2.242829269534176, - -1.3207879198259624, - -0.5764254587659816, - -0.16683747913752467, - -0.07976071355481885, - -0.22479691296551238, - -0.4165921327830992, - -0.42765371499469207, - -0.11034223192562843, - 0.5475150952846798, - 1.4458898455591358, - 2.312656214803661, - 2.956872919276163, - 3.161654229381077, - 2.9419648312354476, - 2.528871458201738, - 2.3391813510652604, - 2.8879788768009798, - 4.724856096553002, - 8.085081449583594, - 13.269282306424566, - 19.483028768457185, - 26.713709283700762, - 33.72320719321259, - 39.45648275478648 - ], - "pressure:J46:branch143_seg0": [ - 193992.28087881475, - 206739.309820831, - 210685.83390765623, - 200695.90831965455, - 182406.1052125822, - 159291.31495440291, - 133836.1274725118, - 105466.51337363174, - 84450.30435163401, - 64297.255999080226, - 45450.29607596072, - 31421.61159353261, - 14827.628292039519, - -48.82686447902755, - -15281.12281027312, - -31847.213847442512, - -45246.89066775055, - -58382.245910988444, - -67864.48672436399, - -73684.7018940389, - -78052.40530149775, - -79691.43033664544, - -80337.41745347125, - -80816.3703373634, - -80806.27721849577, - -80489.8828819582, - -79045.56253719733, - -75868.8953638361, - -70941.3831727898, - -64917.61199268744, - -58410.4106110293, - -53707.62139822831, - -52631.05274827097, - -55423.92995757205, - -63371.40287432719, - -75475.92206788703, - -90019.95787560519, - -102936.28353734547, - -114264.00331852569, - -118773.67942288172, - -116394.48037924363, - -107686.97836860783, - -93028.54566687597, - -73659.35476351278, - -54555.257917203926, - -36102.818216945794, - -18950.159983181267, - -7082.450201354769, - 2369.386902295553, - 9702.892156824828, - 14716.445558093996, - 20194.684093951164, - 24378.640148110364, - 27616.162540913647, - 30375.280113712917, - 30078.790007827974, - 27339.829117222875, - 22144.815630004705, - 15131.672827511085, - 6683.598244656948, - -15.588085173571812, - -5430.408435227299, - -9063.426955039076, - -9615.382059638478, - -9151.440334458335, - -8195.108087652205, - -7545.080065574359, - -8261.04833093602, - -10310.555584497637, - -13336.686987629906, - -16123.58409925388, - -17940.082150313483, - -18167.205183237147, - -16174.194991628587, - -12411.95128014413, - -8098.012813318801, - -4138.221097551981, - -1050.777081619838, - -60.14863278622244, - -599.3145606996644, - -1507.5837771549527, - -2219.653976251445, - -1709.158661941921, - 625.0481027740575, - 4304.083134380796, - 8948.376590866703, - 12486.031062919523, - 14514.58138422077, - 14617.978064242436, - 12679.610064873517, - 10644.862425388497, - 10858.134283103678, - 15684.649809243832, - 27435.02642900843, - 46516.472286686585, - 74471.77769797819, - 105261.02148572322, - 138441.24359844468, - 171763.5386045525, - 193992.28087881475 - ], - "flow:branch107_seg0:J47": [ - 78.16273814898, - 87.70770024682903, - 92.50187989689888, - 92.3438076771414, - 87.74776427221632, - 79.58735484303969, - 69.07660208433812, - 57.80151671218061, - 47.032048455120204, - 36.94008267407176, - 28.31621859043573, - 20.64265800899751, - 13.418487148643742, - 6.5752496561772045, - -0.5609334012378272, - -7.636279754040282, - -14.513988007725953, - -20.931701579494636, - -26.097139748116696, - -30.15891956761125, - -32.90476518380297, - -34.49256837635132, - -35.402338550006405, - -35.84712122821009, - -36.10442476395329, - -36.201489355726906, - -35.96247624720874, - -35.17186874638888, - -33.66246226146646, - -31.43564659938983, - -28.774592586272295, - -26.31816743053234, - -24.68623914302137, - -24.61371306379207, - -26.545144253565663, - -30.488888146511528, - -35.93386942745347, - -42.043804092913504, - -47.70350225378226, - -51.55841931429096, - -52.95497712037476, - -51.295145529120404, - -46.7037036448362, - -39.76083740092424, - -31.649654248280758, - -23.014618034217555, - -15.078063473942168, - -8.467588713241065, - -3.0737579752465867, - 0.8665120438350816, - 3.946389083059927, - 6.514797593095139, - 8.667011844044975, - 10.66144478949076, - 12.189620387181096, - 12.94776038277395, - 12.732529123082625, - 11.344859878310864, - 8.904409700915636, - 5.766973194876571, - 2.5082022937282793, - -0.47067854236253087, - -2.593094548702956, - -3.7558179864573664, - -4.084853826841295, - -3.8354605844492125, - -3.4955655549435836, - -3.4683431101049886, - -3.9642367041705437, - -4.986328447130247, - -6.237105385341461, - -7.382814222564166, - -7.9777291462912725, - -7.761597040380955, - -6.727233905425365, - -5.113317785120285, - -3.2731658725958863, - -1.6666188774540363, - -0.671727484762846, - -0.31270524840245423, - -0.4920825082632681, - -0.8544257047811409, - -0.9595667653947202, - -0.4775402940261273, - 0.6990995389165308, - 2.4123224803291783, - 4.213860530738907, - 5.677860024585689, - 6.335002219995419, - 6.131022690461529, - 5.406508618267435, - 4.901135273066407, - 5.650210804678611, - 8.720114424863544, - 14.88559226800495, - 24.55202669718098, - 36.80526125673996, - 51.23807475223113, - 65.7107234812494, - 78.16273814898 - ], - "pressure:branch107_seg0:J47": [ - 184231.7707451852, - 199219.23836333532, - 204600.5986371913, - 197180.84353235576, - 181489.0054873513, - 160405.72295223115, - 136109.8168230941, - 109677.46243739463, - 88542.55390835494, - 68335.87658094874, - 50263.44631466688, - 35703.03594112028, - 19837.261610409976, - 5166.756146249764, - -10092.234696288302, - -25962.51791222199, - -40017.74716017658, - -53255.04268079648, - -62957.75592580371, - -69686.98337591092, - -74447.17585889656, - -76498.51530078136, - -77621.94345986837, - -78284.03872945374, - -78542.81587875297, - -78530.74507523261, - -77453.76328935171, - -74835.65911892564, - -70504.42593197216, - -64973.531174571304, - -58758.290357641046, - -54062.31399451145, - -52311.685739308516, - -54274.95954334545, - -61149.00172742624, - -72181.57889282538, - -85686.74039180327, - -98741.10503927911, - -110043.28722703097, - -115499.92640614074, - -114556.69857412286, - -107254.35971812767, - -93767.41999535478, - -75763.86767028467, - -57463.11418617399, - -39155.16504352031, - -22402.3981153436, - -10442.852346163514, - -563.181104090076, - 6714.466729535171, - 11950.516456396464, - 17470.634648583797, - 21582.471284513806, - 25222.6043495611, - 28196.637701042433, - 28491.83998378246, - 26528.61930707679, - 22111.309515865418, - 15698.661474277622, - 7981.3897673469355, - 1279.4334858912805, - -4296.032833241006, - -8004.048339878475, - -9035.321810384099, - -8813.487535330667, - -7889.707001369718, - -7203.068176026561, - -7719.302444354844, - -9542.419501523205, - -12378.985634183355, - -15146.737960299903, - -17163.28205691611, - -17677.28390744264, - -16055.063302789045, - -12746.805261802558, - -8688.484278508824, - -4807.586394799622, - -1654.433672075027, - -479.8561072633316, - -677.8620731824527, - -1467.5442830191462, - -2243.7351959846314, - -1947.0686739985188, - -0.13694676585857413, - 3371.497090897604, - 7690.32319097887, - 11354.535699633418, - 13698.046524262232, - 14127.478893357069, - 12570.399202690778, - 10632.744084951293, - 10417.004225872799, - 14300.11838480992, - 24501.18393652547, - 42001.80728994441, - 67824.84785546106, - 97037.23936368473, - 129273.02016644341, - 161803.40127572409, - 184231.7707451852 - ], - "flow:J47:branch108_seg0": [ - 23.20805558288949, - 25.77597375868343, - 26.902404288416694, - 26.564461327357172, - 24.986426539432802, - 22.438577494965678, - 19.27891740419883, - 15.978675223441446, - 12.913231546154833, - 10.049780441339468, - 7.639328648293659, - 5.496815456446234, - 3.4356094710178517, - 1.4863793583309801, - -0.5795046388358511, - -2.6216045861270088, - -4.5769370516319885, - -6.407419701763522, - -7.823413482228399, - -8.919924154977945, - -9.642293900736563, - -10.029321823779101, - -10.249969317996152, - -10.35208851328299, - -10.41185610673451, - -10.429528168155498, - -10.340158637896568, - -10.078488624710332, - -9.601693962052892, - -8.919214054162776, - -8.127187489463648, - -7.431323779719258, - -7.01247193732823, - -7.0800699358358505, - -7.753555462303418, - -9.006233911406392, - -10.660692198735173, - -12.450800088263655, - -14.05614777614831, - -15.056179238890985, - -15.308752121226934, - -14.654064955605229, - -13.163672018603192, - -11.022140770691536, - -8.624679630365902, - -6.119460056709708, - -3.8635987891839183, - -2.0475431705631357, - -0.5679262299920335, - 0.4865208764442028, - 1.314553914923143, - 2.0269270705890032, - 2.6215018222181206, - 3.1799419286012083, - 3.595399211416383, - 3.7663166140452344, - 3.6462053745144654, - 3.180164059149731, - 2.416629616661266, - 1.4723234268495478, - 0.5297004878294055, - -0.30965949110485563, - -0.8727560395573566, - -1.147289748030179, - -1.194805045682486, - -1.0906727101378868, - -0.9864257380600132, - -0.9968248454419272, - -1.1692343055878602, - -1.4935969964365263, - -1.8653554205562284, - -2.18680810339312, - -2.327805009925029, - -2.2185473752949982, - -1.873018167160726, - -1.3763109861487808, - -0.8352560276399198, - -0.3850870750299872, - -0.13408911056172815, - -0.06933212682431153, - -0.15015422601822911, - -0.26505425586226866, - -0.28069761708564905, - -0.10778279013688657, - 0.2705511809077187, - 0.7944479932773357, - 1.3164155737849796, - 1.7168793738783434, - 1.8601056452607743, - 1.7505176383610002, - 1.5132329288682538, - 1.3834732813777473, - 1.6731255406059846, - 2.693482379502227, - 4.641100710817108, - 7.630985177719641, - 11.300775671703127, - 15.559936284277997, - 19.75072228521977, - 23.20805558288949 - ], - "pressure:J47:branch108_seg0": [ - 184231.7707451852, - 199219.23836333532, - 204600.5986371913, - 197180.84353235576, - 181489.0054873513, - 160405.72295223115, - 136109.8168230941, - 109677.46243739463, - 88542.55390835494, - 68335.87658094874, - 50263.44631466688, - 35703.03594112028, - 19837.261610409976, - 5166.756146249764, - -10092.234696288302, - -25962.51791222199, - -40017.74716017658, - -53255.04268079648, - -62957.75592580371, - -69686.98337591092, - -74447.17585889656, - -76498.51530078136, - -77621.94345986837, - -78284.03872945374, - -78542.81587875297, - -78530.74507523261, - -77453.76328935171, - -74835.65911892564, - -70504.42593197216, - -64973.531174571304, - -58758.290357641046, - -54062.31399451145, - -52311.685739308516, - -54274.95954334545, - -61149.00172742624, - -72181.57889282538, - -85686.74039180327, - -98741.10503927911, - -110043.28722703097, - -115499.92640614074, - -114556.69857412286, - -107254.35971812767, - -93767.41999535478, - -75763.86767028467, - -57463.11418617399, - -39155.16504352031, - -22402.3981153436, - -10442.852346163514, - -563.181104090076, - 6714.466729535171, - 11950.516456396464, - 17470.634648583797, - 21582.471284513806, - 25222.6043495611, - 28196.637701042433, - 28491.83998378246, - 26528.61930707679, - 22111.309515865418, - 15698.661474277622, - 7981.3897673469355, - 1279.4334858912805, - -4296.032833241006, - -8004.048339878475, - -9035.321810384099, - -8813.487535330667, - -7889.707001369718, - -7203.068176026561, - -7719.302444354844, - -9542.419501523205, - -12378.985634183355, - -15146.737960299903, - -17163.28205691611, - -17677.28390744264, - -16055.063302789045, - -12746.805261802558, - -8688.484278508824, - -4807.586394799622, - -1654.433672075027, - -479.8561072633316, - -677.8620731824527, - -1467.5442830191462, - -2243.7351959846314, - -1947.0686739985188, - -0.13694676585857413, - 3371.497090897604, - 7690.32319097887, - 11354.535699633418, - 13698.046524262232, - 14127.478893357069, - 12570.399202690778, - 10632.744084951293, - 10417.004225872799, - 14300.11838480992, - 24501.18393652547, - 42001.80728994441, - 67824.84785546106, - 97037.23936368473, - 129273.02016644341, - 161803.40127572409, - 184231.7707451852 - ], - "flow:J47:branch142_seg0": [ - 54.954682566091364, - 61.93172648814516, - 65.59947560848174, - 65.7793463497844, - 62.761337732783296, - 57.14877734807557, - 49.79768468014229, - 41.82284148873941, - 34.118816908964085, - 26.890302232731674, - 20.67688994214093, - 15.145842552552605, - 9.982877677626776, - 5.08887029784579, - 0.018571237597182898, - -5.014675167913698, - -9.937050956094676, - -14.524281877731397, - -18.273726265887127, - -21.238995412633884, - -23.26247128306704, - -24.463246552574386, - -25.152369232009473, - -25.495032714924744, - -25.6925686572171, - -25.771961187571332, - -25.622317609310254, - -25.093380121677974, - -24.06076829941338, - -22.51643254522984, - -20.64740509680988, - -18.886843650814853, - -17.673767205694205, - -17.53364312795573, - -18.791588791261752, - -21.482654235106057, - -25.27317722871845, - -29.59300400465008, - -33.64735447763452, - -36.50224007540014, - -37.64622499914775, - -36.641080573515865, - -33.54003162623298, - -28.73869663023263, - -23.024974617914896, - -16.895157977507907, - -11.214464684758243, - -6.420045542677932, - -2.505831745254569, - 0.37999116739086564, - 2.6318351681367913, - 4.487870522506133, - 6.045510021826844, - 7.481502860889554, - 8.59422117576476, - 9.181443768728785, - 9.08632374856808, - 8.16469581916101, - 6.48778008425426, - 4.2946497680269236, - 1.9785018058990174, - -0.16101905125756596, - -1.7203385091456966, - -2.6085282384272612, - -2.890048781158805, - -2.744787874311414, - -2.509139816883702, - -2.471518264662921, - -2.795002398582821, - -3.492731450693793, - -4.371749964785118, - -5.196006119171088, - -5.64992413636627, - -5.543049665085938, - -4.8542157382646485, - -3.737006798971477, - -2.4379098449559704, - -1.2815318024240812, - -0.5376383742011187, - -0.24337312157812552, - -0.34192828224505545, - -0.5893714489188794, - -0.6788691483090711, - -0.3697575038892471, - 0.42854835800882235, - 1.6178744870518602, - 2.897444956953939, - 3.96098065070733, - 4.474896574734688, - 4.380505052100566, - 3.893275689399272, - 3.5176619916886867, - 3.9770852640726932, - 6.026632045361284, - 10.244491557187839, - 16.921041519461323, - 25.504485585036548, - 35.678138467952856, - 45.96000119603005, - 54.954682566091364 - ], - "pressure:J47:branch142_seg0": [ - 184231.7707451852, - 199219.23836333532, - 204600.5986371913, - 197180.84353235576, - 181489.0054873513, - 160405.72295223115, - 136109.8168230941, - 109677.46243739463, - 88542.55390835494, - 68335.87658094874, - 50263.44631466688, - 35703.03594112028, - 19837.261610409976, - 5166.756146249764, - -10092.234696288302, - -25962.51791222199, - -40017.74716017658, - -53255.04268079648, - -62957.75592580371, - -69686.98337591092, - -74447.17585889656, - -76498.51530078136, - -77621.94345986837, - -78284.03872945374, - -78542.81587875297, - -78530.74507523261, - -77453.76328935171, - -74835.65911892564, - -70504.42593197216, - -64973.531174571304, - -58758.290357641046, - -54062.31399451145, - -52311.685739308516, - -54274.95954334545, - -61149.00172742624, - -72181.57889282538, - -85686.74039180327, - -98741.10503927911, - -110043.28722703097, - -115499.92640614074, - -114556.69857412286, - -107254.35971812767, - -93767.41999535478, - -75763.86767028467, - -57463.11418617399, - -39155.16504352031, - -22402.3981153436, - -10442.852346163514, - -563.181104090076, - 6714.466729535171, - 11950.516456396464, - 17470.634648583797, - 21582.471284513806, - 25222.6043495611, - 28196.637701042433, - 28491.83998378246, - 26528.61930707679, - 22111.309515865418, - 15698.661474277622, - 7981.3897673469355, - 1279.4334858912805, - -4296.032833241006, - -8004.048339878475, - -9035.321810384099, - -8813.487535330667, - -7889.707001369718, - -7203.068176026561, - -7719.302444354844, - -9542.419501523205, - -12378.985634183355, - -15146.737960299903, - -17163.28205691611, - -17677.28390744264, - -16055.063302789045, - -12746.805261802558, - -8688.484278508824, - -4807.586394799622, - -1654.433672075027, - -479.8561072633316, - -677.8620731824527, - -1467.5442830191462, - -2243.7351959846314, - -1947.0686739985188, - -0.13694676585857413, - 3371.497090897604, - 7690.32319097887, - 11354.535699633418, - 13698.046524262232, - 14127.478893357069, - 12570.399202690778, - 10632.744084951293, - 10417.004225872799, - 14300.11838480992, - 24501.18393652547, - 42001.80728994441, - 67824.84785546106, - 97037.23936368473, - 129273.02016644341, - 161803.40127572409, - 184231.7707451852 - ], - "flow:branch112_seg0:J48": [ - 94.35967297107445, - 106.90443024562, - 113.99193272022154, - 115.04787673299937, - 110.57782612348656, - 101.47322892497652, - 89.11285729566517, - 75.34801002447723, - 61.852737721236586, - 48.92978259815251, - 37.658874193645715, - 27.596167716190024, - 18.171090786182514, - 9.360302129433325, - 0.3328339617063083, - -8.545417005984286, - -17.16314080163548, - -25.274343561404965, - -31.90967952586921, - -37.21776599273367, - -40.95190483809238, - -43.20634037993171, - -44.539287219669625, - -45.207219739825874, - -45.54501705442159, - -45.64132576525749, - -45.319285477345545, - -44.350933711822094, - -42.53915057432173, - -39.86926028661865, - -36.627699101285856, - -33.546587405742805, - -31.353225123818017, - -30.922729143477255, - -32.85495519331107, - -37.243061490915075, - -43.553113646934854, - -50.87207455082842, - -57.907377678811436, - -63.0027976232906, - -65.3008858304285, - -63.99006551523653, - -59.05977729534994, - -51.09313473248926, - -41.455533855957505, - -30.90379905694537, - -20.883755526621353, - -12.32121185606803, - -5.157433666737344, - 0.24433515280356766, - 4.4598476861360075, - 7.9507711806356225, - 10.80112188104981, - 13.357785138300246, - 15.339191200519425, - 16.383876429305968, - 16.27405114167227, - 14.757443338243483, - 11.93329233402634, - 8.185379986086287, - 4.179678956552442, - 0.39151532726609317, - -2.4598705003686585, - -4.189923103302565, - -4.898437723057276, - -4.8310019960987205, - -4.53802380277675, - -4.512871616651297, - -5.040516298638642, - -6.176153072887439, - -7.616344522809457, - -8.994605787698966, - -9.797959954289821, - -9.67607832762978, - -8.582093298516332, - -6.748230121898212, - -4.566569041828853, - -2.5574944737795, - -1.2075661624506737, - -0.5897374807743305, - -0.6293037310429854, - -0.9582071686348438, - -1.0675107411069293, - -0.5494931485382948, - 0.7635997740846657, - 2.7385755106168777, - 4.886982695389973, - 6.724488434102554, - 7.676574581399735, - 7.624842931573868, - 6.911364473791315, - 6.349620835940219, - 7.134978275703992, - 10.547143657755171, - 17.583600291664773, - 28.84422438787033, - 43.36618286202937, - 60.71609780545153, - 78.60254575195427, - 94.35967297107445 - ], - "pressure:branch112_seg0:J48": [ - 185266.59688404872, - 200094.51119473894, - 206126.3246582491, - 199032.6606013217, - 183407.15137147676, - 162390.10410605662, - 138184.39662988848, - 111133.77908044292, - 89583.43872102702, - 69011.52956323427, - 50198.81903492293, - 35308.937798714964, - 18981.931925291778, - 4012.016318776744, - -11268.059544244892, - -27280.573731114157, - -41221.83705165797, - -54536.58446079384, - -64395.37920457665, - -70989.70458204344, - -75874.59820195612, - -78005.8550393875, - -79048.94901641816, - -79670.27927792439, - -79775.49434055513, - -79598.31905953746, - -78370.19162313615, - -75591.5031004355, - -71121.54409145936, - -65524.839121799865, - -59233.9593825408, - -54435.77822916413, - -52675.81849331538, - -54525.39803692247, - -61235.10120966605, - -72154.67468217434, - -85607.64941251898, - -98536.19494463934, - -109981.10411598504, - -115629.83658272326, - -114843.40317961306, - -107850.1139860416, - -94646.5764980199, - -76680.95311677667, - -58312.164651052204, - -40040.46117102926, - -22800.45253730547, - -10399.822141852539, - -279.76426075399826, - 7487.117547448229, - 12876.069936842123, - 18570.42959123045, - 22818.18201889373, - 26290.904042748076, - 29234.341005569215, - 29455.33348332234, - 27370.73320000636, - 22886.53420139913, - 16440.275492842888, - 8578.512331628264, - 1799.7823178834612, - -3873.575411628998, - -7801.5113750583705, - -8993.285957976594, - -8946.926960997695, - -8191.4960939324, - -7562.073444538235, - -8072.884510749041, - -9846.866207828365, - -12610.909047437952, - -15311.832822326154, - -17246.815656869156, - -17785.327652361728, - -16212.430987998863, - -12930.679959840352, - -8895.178597742337, - -5049.733233085522, - -1832.913963348459, - -550.501692946089, - -700.9209375228112, - -1383.8769554928756, - -2065.988805764072, - -1741.6183062895398, - 197.5856674258633, - 3508.9029488939846, - 7793.731044237242, - 11397.163618981078, - 13713.795396922182, - 14210.235385507887, - 12735.591683939438, - 10895.762760606864, - 10779.437434076564, - 14710.57214353419, - 24891.045870617156, - 42275.95042247363, - 68071.97495017771, - 97344.26992321886, - 129252.58105484529, - 162321.07970877804, - 185266.59688404872 - ], - "flow:J48:branch113_seg0": [ - 68.17703996694291, - 77.76653696437721, - 83.47603043091466, - 84.83619146585663, - 82.07382257809074, - 75.79351166254621, - 66.9829350026974, - 56.98882005377887, - 46.99731014889316, - 37.39557069749232, - 28.942149119127265, - 21.371381911555503, - 14.352300872958812, - 7.7842673234026165, - 1.1178955018256285, - -5.441092369749529, - -11.851601411877873, - -17.88241135309491, - -22.90890604089098, - -26.972602246061978, - -29.869755597385662, - -31.677766589367813, - -32.75974768595905, - -33.317013673247374, - -33.60577931068588, - -33.70330907934328, - -33.50556837762366, - -32.853186713700204, - -31.59535078175771, - -29.703748283172775, - -27.36699818046459, - -25.08190458569681, - -23.376832641188113, - -22.898597321252645, - -24.10457963689149, - -27.110270312092663, - -31.58251738025689, - -36.89745094417434, - -42.106600508184066, - -46.046154752646906, - -48.01299054758032, - -47.37858282415236, - -44.07802558046066, - -38.49463484111054, - -31.545575888956378, - -23.829290950000942, - -16.406423170935618, - -9.945828669171217, - -4.513882790907074, - -0.36938906729388976, - 2.8733981706869165, - 5.5234304369762395, - 7.690573288660521, - 9.621325864617795, - 11.135350768545386, - 11.997685638787257, - 12.029052965628376, - 11.040113258578709, - 9.079016145525461, - 6.405427376978639, - 3.4716296950333914, - 0.6539207348065186, - -1.5311818623243185, - -2.9203192612826467, - -3.54074946760946, - -3.564021470281892, - -3.3753577550253433, - -3.3362607890598417, - -3.6770509011928234, - -4.459902150292115, - -5.493847250484433, - -6.518346488386095, - -7.159991317968301, - -7.154392831339706, - -6.439152811088187, - -5.155856656945259, - -3.5782468200319566, - -2.0843814761323243, - -1.029474836881717, - -0.5014107590313442, - -0.469899593543565, - -0.6830806279200282, - -0.7799585975825015, - -0.45386595941484326, - 0.4431969270999337, - 1.837873198062129, - 3.4078693868409795, - 4.793086325042068, - 5.5735701898531875, - 5.630572048222589, - 5.1668774842673395, - 4.739278737613953, - 5.197812994270235, - 7.476328563121567, - 12.343653374247646, - 20.260704432996587, - 30.670186438267166, - 43.24227535410609, - 56.35520608772446, - 68.17703996694291 - ], - "pressure:J48:branch113_seg0": [ - 185266.59688404872, - 200094.51119473894, - 206126.3246582491, - 199032.6606013217, - 183407.15137147676, - 162390.10410605662, - 138184.39662988848, - 111133.77908044292, - 89583.43872102702, - 69011.52956323427, - 50198.81903492293, - 35308.937798714964, - 18981.931925291778, - 4012.016318776744, - -11268.059544244892, - -27280.573731114157, - -41221.83705165797, - -54536.58446079384, - -64395.37920457665, - -70989.70458204344, - -75874.59820195612, - -78005.8550393875, - -79048.94901641816, - -79670.27927792439, - -79775.49434055513, - -79598.31905953746, - -78370.19162313615, - -75591.5031004355, - -71121.54409145936, - -65524.839121799865, - -59233.9593825408, - -54435.77822916413, - -52675.81849331538, - -54525.39803692247, - -61235.10120966605, - -72154.67468217434, - -85607.64941251898, - -98536.19494463934, - -109981.10411598504, - -115629.83658272326, - -114843.40317961306, - -107850.1139860416, - -94646.5764980199, - -76680.95311677667, - -58312.164651052204, - -40040.46117102926, - -22800.45253730547, - -10399.822141852539, - -279.76426075399826, - 7487.117547448229, - 12876.069936842123, - 18570.42959123045, - 22818.18201889373, - 26290.904042748076, - 29234.341005569215, - 29455.33348332234, - 27370.73320000636, - 22886.53420139913, - 16440.275492842888, - 8578.512331628264, - 1799.7823178834612, - -3873.575411628998, - -7801.5113750583705, - -8993.285957976594, - -8946.926960997695, - -8191.4960939324, - -7562.073444538235, - -8072.884510749041, - -9846.866207828365, - -12610.909047437952, - -15311.832822326154, - -17246.815656869156, - -17785.327652361728, - -16212.430987998863, - -12930.679959840352, - -8895.178597742337, - -5049.733233085522, - -1832.913963348459, - -550.501692946089, - -700.9209375228112, - -1383.8769554928756, - -2065.988805764072, - -1741.6183062895398, - 197.5856674258633, - 3508.9029488939846, - 7793.731044237242, - 11397.163618981078, - 13713.795396922182, - 14210.235385507887, - 12735.591683939438, - 10895.762760606864, - 10779.437434076564, - 14710.57214353419, - 24891.045870617156, - 42275.95042247363, - 68071.97495017771, - 97344.26992321886, - 129252.58105484529, - 162321.07970877804, - 185266.59688404872 - ], - "flow:J48:branch133_seg0": [ - 26.182633004131418, - 29.137893281241958, - 30.515902289307594, - 30.211685267142215, - 28.504003545394017, - 25.679717262431737, - 22.12992229296842, - 18.35918997069831, - 14.85542757234616, - 11.534211900658226, - 8.71672507451751, - 6.224785804635216, - 3.81878991322455, - 1.5760348060260405, - -0.785061540121429, - -3.104324636236426, - -5.311539389760986, - -7.391932208309199, - -9.00077348497937, - -10.245163746673493, - -11.082149240705705, - -11.528573790566478, - -11.779539533712589, - -11.890206066577802, - -11.939237743734646, - -11.938016685913702, - -11.813717099720687, - -11.497746998121775, - -10.943799792564755, - -10.165512003445325, - -9.260700920823009, - -8.464682820042922, - -7.976392482629966, - -8.024131822225305, - -8.750375556420723, - -10.132791178823373, - -11.97059626667821, - -13.974623606654399, - -15.800777170627498, - -16.95664287064406, - -17.287895282848485, - -16.61148269108382, - -14.981751714889196, - -12.598499891378731, - -9.90995796700102, - -7.074508106944442, - -4.477332355685765, - -2.3753831868968143, - -0.6435508758302372, - 0.613724220097444, - 1.5864495154490732, - 2.4273407436593963, - 3.1105485923892813, - 3.7364592736824735, - 4.203840431974044, - 4.386190790518685, - 4.244998176044031, - 3.7173300796650137, - 2.854276188500834, - 1.7799526091078268, - 0.7080492615190946, - -0.2624054075403435, - -0.9286886380442876, - -1.2696038420197666, - -1.357688255447735, - -1.266980525816579, - -1.1626660477515234, - -1.1766108275913285, - -1.363465397445708, - -1.7162509225954128, - -2.1224972723252047, - -2.47625929931276, - -2.637968636321451, - -2.521685496290089, - -2.142940487428119, - -1.5923734649529273, - -0.988322221796851, - -0.4731129976471543, - -0.1780913255689383, - -0.08832672174293592, - -0.1594041374994076, - -0.2751265407148021, - -0.287552143524431, - -0.09562718912347723, - 0.32040284698474397, - 0.9007023125547504, - 1.4791133085490618, - 1.9314021090605122, - 2.103004391546648, - 1.9942708833513747, - 1.7444869895240376, - 1.6103420983261987, - 1.9371652814336382, - 3.0708150946334296, - 5.239946917417216, - 8.583519954873807, - 12.695996423762276, - 17.473822451345427, - 22.247339664230278, - 26.182633004131418 - ], - "pressure:J48:branch133_seg0": [ - 185266.59688404872, - 200094.51119473894, - 206126.3246582491, - 199032.6606013217, - 183407.15137147676, - 162390.10410605662, - 138184.39662988848, - 111133.77908044292, - 89583.43872102702, - 69011.52956323427, - 50198.81903492293, - 35308.937798714964, - 18981.931925291778, - 4012.016318776744, - -11268.059544244892, - -27280.573731114157, - -41221.83705165797, - -54536.58446079384, - -64395.37920457665, - -70989.70458204344, - -75874.59820195612, - -78005.8550393875, - -79048.94901641816, - -79670.27927792439, - -79775.49434055513, - -79598.31905953746, - -78370.19162313615, - -75591.5031004355, - -71121.54409145936, - -65524.839121799865, - -59233.9593825408, - -54435.77822916413, - -52675.81849331538, - -54525.39803692247, - -61235.10120966605, - -72154.67468217434, - -85607.64941251898, - -98536.19494463934, - -109981.10411598504, - -115629.83658272326, - -114843.40317961306, - -107850.1139860416, - -94646.5764980199, - -76680.95311677667, - -58312.164651052204, - -40040.46117102926, - -22800.45253730547, - -10399.822141852539, - -279.76426075399826, - 7487.117547448229, - 12876.069936842123, - 18570.42959123045, - 22818.18201889373, - 26290.904042748076, - 29234.341005569215, - 29455.33348332234, - 27370.73320000636, - 22886.53420139913, - 16440.275492842888, - 8578.512331628264, - 1799.7823178834612, - -3873.575411628998, - -7801.5113750583705, - -8993.285957976594, - -8946.926960997695, - -8191.4960939324, - -7562.073444538235, - -8072.884510749041, - -9846.866207828365, - -12610.909047437952, - -15311.832822326154, - -17246.815656869156, - -17785.327652361728, - -16212.430987998863, - -12930.679959840352, - -8895.178597742337, - -5049.733233085522, - -1832.913963348459, - -550.501692946089, - -700.9209375228112, - -1383.8769554928756, - -2065.988805764072, - -1741.6183062895398, - 197.5856674258633, - 3508.9029488939846, - 7793.731044237242, - 11397.163618981078, - 13713.795396922182, - 14210.235385507887, - 12735.591683939438, - 10895.762760606864, - 10779.437434076564, - 14710.57214353419, - 24891.045870617156, - 42275.95042247363, - 68071.97495017771, - 97344.26992321886, - 129252.58105484529, - 162321.07970877804, - 185266.59688404872 - ], - "flow:branch113_seg0:J49": [ - 68.13054464572446, - 77.74854911956442, - 83.47860983547896, - 84.85576864628729, - 82.11666842682924, - 75.85370619683981, - 67.03959887837554, - 57.068357755771316, - 47.06029621561617, - 37.433423079564434, - 28.996592556477207, - 21.408709006692103, - 14.39271747243454, - 7.825348950619133, - 1.1416799901855175, - -5.398831264829007, - -11.820959656296994, - -17.87100697645224, - -22.892965544427923, - -26.9626173231074, - -29.86832781054254, - -31.674080097897193, - -32.76041634893396, - -33.31774897071605, - -33.60478893995672, - -33.70525519658029, - -33.50929695201389, - -32.861010028893475, - -31.607061841945367, - -29.71922764525996, - -27.38007577718674, - -25.09392508357812, - -23.377144058301877, - -22.887926211961314, - -24.082600551080375, - -27.08390092734038, - -31.53993088020949, - -36.869692821513894, - -42.0863761172279, - -46.03826440053048, - -48.02483638383807, - -47.40707280770172, - -44.10767291074239, - -38.52413028481891, - -31.58079184855717, - -23.86367639192524, - -16.427405961920655, - -9.969073946877277, - -4.5261280537934185, - -0.37859963199716923, - 2.8576963717616053, - 5.515342372113995, - 7.679792581627231, - 9.613614109100178, - 11.13033444875718, - 11.9975539926539, - 12.036751933772173, - 11.05529896786424, - 9.095116194438182, - 6.42953153423974, - 3.4899114887880907, - 0.6603228557779464, - -1.5227424108644427, - -2.9182311193755948, - -3.543923581225485, - -3.565891202103054, - -3.375090636678362, - -3.3334893937480614, - -3.6727742594915997, - -4.455338812554854, - -5.4897912211926245, - -6.51553576743251, - -7.162459628756897, - -7.1586029796064965, - -6.447034862006095, - -5.163858240230864, - -3.587294213285708, - -2.0889050676032674, - -1.032142122371647, - -0.5002583045680192, - -0.4673342925704857, - -0.682555872392811, - -0.7824579050365247, - -0.4611419232035789, - 0.43431908692142973, - 1.8252285907382642, - 3.3991073459944494, - 4.792587233316054, - 5.574989906637022, - 5.633918081092352, - 5.170087654349833, - 4.735697417462055, - 5.183963984161662, - 7.445009199647014, - 12.304221954185905, - 20.21405027043002, - 30.619493978815346, - 43.16781778899145, - 56.31290681945275, - 68.13054464572446 - ], - "pressure:branch113_seg0:J49": [ - 173583.99437981064, - 190952.5879669496, - 199640.392853051, - 196305.66886322873, - 184198.58621777955, - 165824.1441267115, - 143282.79764754153, - 117930.6053354034, - 95803.49453167662, - 74827.83448638908, - 55960.281454110984, - 40143.529237301605, - 24064.548421354844, - 9051.166644325991, - -6207.384451066891, - -21636.654467568576, - -35949.245347449425, - -49471.82021573697, - -59772.488929450075, - -67317.64315273477, - -72845.16484716996, - -75634.90201298738, - -77202.23501427917, - -78034.53543809713, - -78315.08390784591, - -78303.71372760503, - -77361.52043271535, - -75077.50612104584, - -71214.49724480778, - -66136.01684453542, - -60193.71434616756, - -55258.211436605845, - -52694.944488314424, - -53389.76937224618, - -58586.58995587795, - -67976.60526500295, - -80112.86850030589, - -92843.44084511147, - -104415.47632518939, - -111343.09477330491, - -112516.2173538237, - -107605.27733643974, - -96431.34582771464, - -80311.9667483784, - -63021.71189205346, - -45079.001504343505, - -27875.432200379328, - -14804.004989163164, - -3853.2802768177594, - 4468.256345946104, - 10449.490613382788, - 16343.122614541018, - 20770.623094388233, - 24539.553641576906, - 27698.179230364556, - 28573.016220979185, - 27305.691417379043, - 23698.933975874737, - 17994.275543870495, - 10855.123664655108, - 4047.374055847988, - -1903.86875508947, - -6189.742109252538, - -8134.469405618907, - -8621.801211932447, - -8145.965283760749, - -7571.808668028597, - -7850.517247935556, - -9261.027405715755, - -11679.610871471137, - -14236.368807831595, - -16304.683333983694, - -17208.710876632787, - -16195.716214342441, - -13532.636389816967, - -9907.832418671951, - -6198.386940921281, - -2881.9128193912, - -1200.891467976905, - -860.3285079496914, - -1247.3340849905594, - -1869.8495330106828, - -1761.0113940526753, - -293.73207602641924, - 2544.668744444515, - 6386.058199148377, - 10018.999887843072, - 12661.441455108306, - 13626.484197439077, - 12740.484265169856, - 11172.098861293147, - 10710.203211181566, - 13545.11484500011, - 21825.535314209505, - 36882.7702113784, - 59882.911453583845, - 86964.23107307492, - 117284.13790586706, - 149544.398110095, - 173583.99437981064 - ], - "flow:J49:branch114_seg0": [ - 23.012018078870923, - 26.003914895059232, - 27.645505202631078, - 27.81352599128281, - 26.653360928540337, - 24.38601724311336, - 21.34511977135736, - 18.001300042541928, - 14.737468262238895, - 11.616660687302273, - 8.924430371633292, - 6.511367889561465, - 4.251124283067329, - 2.137247752931335, - -0.04516788180012102, - -2.1771113166160605, - -4.254255868910469, - -6.2099957984211365, - -7.790153153366398, - -9.052004680035806, - -9.934053438718404, - -10.455637898856429, - -10.763940484705634, - -10.91530056055037, - -10.990822084165575, - -11.01199631824536, - -10.930164644426915, - -10.690147931030507, - -10.243543060704184, - -9.589291135570063, - -8.797547954449197, - -8.054497160583004, - -7.532178320523462, - -7.447678419474862, - -7.94281467200832, - -9.036717471718115, - -10.58439689356018, - -12.37514903938975, - -14.078419506672516, - -15.292377845660775, - -15.81877576836536, - -15.461157636301166, - -14.220038734562495, - -12.250705326229491, - -9.895917304512967, - -7.3308160955376565, - -4.906662796840334, - -2.8557302074279787, - -1.1406420457222257, - 0.14224830624190468, - 1.1391814677593872, - 1.9736298525062514, - 2.6515026198679275, - 3.2645741241000903, - 3.7366402924356974, - 3.977966415557972, - 3.937920612495714, - 3.554402492466883, - 2.8529014903497893, - 1.9352045267478708, - 0.9595222728147411, - 0.04114386405981782, - -0.6361984717785639, - -1.0408865166168118, - -1.1990613193434012, - -1.1703922502689472, - -1.0936365968537898, - -1.0886792842109327, - -1.2225181335627147, - -1.505244948981798, - -1.8587937904522098, - -2.1925134363648775, - -2.382123409654628, - -2.34119820249814, - -2.06434482007756, - -1.6097127978410426, - -1.0766394589180053, - -0.589936586048949, - -0.27090395916077686, - -0.13042964391769973, - -0.14911740002444251, - -0.23466852774010338, - -0.2607561486266599, - -0.12968307549031896, - 0.1978546909508109, - 0.6837244579780479, - 1.2081950176049698, - 1.6524323097903688, - 1.872528969205513, - 1.8467036902420175, - 1.6637911718633578, - 1.5253217424679713, - 1.7271563940828218, - 2.5790214104258253, - 4.325685648872656, - 7.1030926926487625, - 10.66117616203923, - 14.885100345102577, - 19.232841641933422, - 23.012018078870923 - ], - "pressure:J49:branch114_seg0": [ - 173583.99437981064, - 190952.5879669496, - 199640.392853051, - 196305.66886322873, - 184198.58621777955, - 165824.1441267115, - 143282.79764754153, - 117930.6053354034, - 95803.49453167662, - 74827.83448638908, - 55960.281454110984, - 40143.529237301605, - 24064.548421354844, - 9051.166644325991, - -6207.384451066891, - -21636.654467568576, - -35949.245347449425, - -49471.82021573697, - -59772.488929450075, - -67317.64315273477, - -72845.16484716996, - -75634.90201298738, - -77202.23501427917, - -78034.53543809713, - -78315.08390784591, - -78303.71372760503, - -77361.52043271535, - -75077.50612104584, - -71214.49724480778, - -66136.01684453542, - -60193.71434616756, - -55258.211436605845, - -52694.944488314424, - -53389.76937224618, - -58586.58995587795, - -67976.60526500295, - -80112.86850030589, - -92843.44084511147, - -104415.47632518939, - -111343.09477330491, - -112516.2173538237, - -107605.27733643974, - -96431.34582771464, - -80311.9667483784, - -63021.71189205346, - -45079.001504343505, - -27875.432200379328, - -14804.004989163164, - -3853.2802768177594, - 4468.256345946104, - 10449.490613382788, - 16343.122614541018, - 20770.623094388233, - 24539.553641576906, - 27698.179230364556, - 28573.016220979185, - 27305.691417379043, - 23698.933975874737, - 17994.275543870495, - 10855.123664655108, - 4047.374055847988, - -1903.86875508947, - -6189.742109252538, - -8134.469405618907, - -8621.801211932447, - -8145.965283760749, - -7571.808668028597, - -7850.517247935556, - -9261.027405715755, - -11679.610871471137, - -14236.368807831595, - -16304.683333983694, - -17208.710876632787, - -16195.716214342441, - -13532.636389816967, - -9907.832418671951, - -6198.386940921281, - -2881.9128193912, - -1200.891467976905, - -860.3285079496914, - -1247.3340849905594, - -1869.8495330106828, - -1761.0113940526753, - -293.73207602641924, - 2544.668744444515, - 6386.058199148377, - 10018.999887843072, - 12661.441455108306, - 13626.484197439077, - 12740.484265169856, - 11172.098861293147, - 10710.203211181566, - 13545.11484500011, - 21825.535314209505, - 36882.7702113784, - 59882.911453583845, - 86964.23107307492, - 117284.13790586706, - 149544.398110095, - 173583.99437981064 - ], - "flow:J49:branch124_seg0": [ - 45.1185265668538, - 51.74463422450505, - 55.83310463284824, - 57.04224265500409, - 55.4633074982887, - 51.46768895372879, - 45.69447910701614, - 39.06705771322875, - 32.32282795337689, - 25.81676239226358, - 20.072162184844274, - 14.897341117129763, - 10.14159318936692, - 5.688101197687429, - 1.1868478719877649, - -3.221719948216412, - -7.566703787384964, - -11.661011178032421, - -15.102812391062189, - -17.91061264307123, - -19.934274371824408, - -21.218442199040773, - -21.99647586422927, - -22.402448410164176, - -22.613966855791222, - -22.693258878334408, - -22.57913230758665, - -22.170862097863264, - -21.36351878124053, - -20.12993650968962, - -18.582527822740204, - -17.039427922995877, - -15.844965737777784, - -15.440247792484962, - -16.139785879071788, - -18.047183455623212, - -20.955533986649467, - -24.494543782124577, - -28.00795661055472, - -30.745886554869372, - -32.20606061547338, - -31.94591517140047, - -29.887634176179976, - -26.273424958589253, - -21.684874544044177, - -16.532860296387547, - -11.52074316508035, - -7.113343739449293, - -3.385486008071185, - -0.5208479382390603, - 1.7185149040022416, - 3.541712519607735, - 5.028289961759304, - 6.349039985000093, - 7.393694156321432, - 8.019587577095873, - 8.0988313212765, - 7.500896475397358, - 6.242214704088489, - 4.494327007491817, - 2.530389215973271, - 0.6191789917180812, - -0.8865439390857754, - -1.877344602758914, - -2.3448622618821213, - -2.395498951834348, - -2.2814540398244145, - -2.244810109537264, - -2.450256125928786, - -2.9500938635731693, - -3.6309974307403534, - -4.323022331067603, - -4.780336219102227, - -4.817404777108379, - -4.382690041928505, - -3.5541454423898315, - -2.510654754367676, - -1.498968481554314, - -0.7612381632108898, - -0.3698286606503125, - -0.3182168925460336, - -0.44788734465269114, - -0.5217017564098616, - -0.33145884771324646, - 0.23646439597062194, - 1.1415041327602002, - 2.1909123283895022, - 3.140154923525716, - 3.702460937431467, - 3.7872143908503575, - 3.5062964824864564, - 3.210375674994016, - 3.4568075900788253, - 4.8659877892212, - 7.978536305313211, - 13.110957577781354, - 19.95831781677609, - 28.28271744388904, - 37.080065177519714, - 45.1185265668538 - ], - "pressure:J49:branch124_seg0": [ - 173583.99437981064, - 190952.5879669496, - 199640.392853051, - 196305.66886322873, - 184198.58621777955, - 165824.1441267115, - 143282.79764754153, - 117930.6053354034, - 95803.49453167662, - 74827.83448638908, - 55960.281454110984, - 40143.529237301605, - 24064.548421354844, - 9051.166644325991, - -6207.384451066891, - -21636.654467568576, - -35949.245347449425, - -49471.82021573697, - -59772.488929450075, - -67317.64315273477, - -72845.16484716996, - -75634.90201298738, - -77202.23501427917, - -78034.53543809713, - -78315.08390784591, - -78303.71372760503, - -77361.52043271535, - -75077.50612104584, - -71214.49724480778, - -66136.01684453542, - -60193.71434616756, - -55258.211436605845, - -52694.944488314424, - -53389.76937224618, - -58586.58995587795, - -67976.60526500295, - -80112.86850030589, - -92843.44084511147, - -104415.47632518939, - -111343.09477330491, - -112516.2173538237, - -107605.27733643974, - -96431.34582771464, - -80311.9667483784, - -63021.71189205346, - -45079.001504343505, - -27875.432200379328, - -14804.004989163164, - -3853.2802768177594, - 4468.256345946104, - 10449.490613382788, - 16343.122614541018, - 20770.623094388233, - 24539.553641576906, - 27698.179230364556, - 28573.016220979185, - 27305.691417379043, - 23698.933975874737, - 17994.275543870495, - 10855.123664655108, - 4047.374055847988, - -1903.86875508947, - -6189.742109252538, - -8134.469405618907, - -8621.801211932447, - -8145.965283760749, - -7571.808668028597, - -7850.517247935556, - -9261.027405715755, - -11679.610871471137, - -14236.368807831595, - -16304.683333983694, - -17208.710876632787, - -16195.716214342441, - -13532.636389816967, - -9907.832418671951, - -6198.386940921281, - -2881.9128193912, - -1200.891467976905, - -860.3285079496914, - -1247.3340849905594, - -1869.8495330106828, - -1761.0113940526753, - -293.73207602641924, - 2544.668744444515, - 6386.058199148377, - 10018.999887843072, - 12661.441455108306, - 13626.484197439077, - 12740.484265169856, - 11172.098861293147, - 10710.203211181566, - 13545.11484500011, - 21825.535314209505, - 36882.7702113784, - 59882.911453583845, - 86964.23107307492, - 117284.13790586706, - 149544.398110095, - 173583.99437981064 - ], - "flow:branch118_seg0:J50": [ - 70.01073285686972, - 78.8336442036888, - 83.47701938388957, - 83.68728027208043, - 79.87617749591476, - 72.81062547166532, - 63.53889756097996, - 53.411340539202556, - 43.711369209107104, - 34.53827175133715, - 26.57353960159296, - 19.535786551475912, - 12.882261732904123, - 6.599710039835003, - 0.12884195051944297, - -6.350664181166838, - -12.598177150031463, - -18.433206123246567, - -23.217728686368634, - -26.987953358929595, - -29.587368885745878, - -31.14371652030013, - -32.0542726125209, - -32.525843345419084, - -32.80230904149067, - -32.91340543583753, - -32.72064491547554, - -32.03552608542725, - -30.711455036440015, - -28.74711840036209, - -26.380719340425674, - -24.171546235791435, - -22.674259223078526, - -22.529442988519136, - -24.16168897563459, - -27.58583006597827, - -32.40576365227895, - -37.83465555149268, - -42.946771986459396, - -46.51822859905953, - -47.91930801558782, - -46.62545588524648, - -42.69798420319678, - -36.61862068283491, - -29.40366433125861, - -21.65335939109291, - -14.453943632696294, - -8.37952353924968, - -3.3818300068572738, - 0.32316863461705114, - 3.2360699349122797, - 5.648870680600535, - 7.659896192303744, - 9.508914776037525, - 10.936564411444333, - 11.66969199779515, - 11.538247668032248, - 10.360961637090934, - 8.235092563236044, - 5.450569906203498, - 2.5397821953129367, - -0.14785099093301682, - -2.130890912081921, - -3.2449778039389354, - -3.616322722601429, - -3.460487196296586, - -3.1910828123839963, - -3.173052257080314, - -3.6020794605137096, - -4.493665465438065, - -5.5987763195035045, - -6.628103112401564, - -7.183548054928005, - -7.033597587518658, - -6.152786150869163, - -4.745631991969998, - -3.1135093868302057, - -1.663036580790551, - -0.7374627381709219, - -0.3679627011114967, - -0.47970919785990696, - -0.7715631180306134, - -0.8572323901235743, - -0.4390090691612484, - 0.5859660171721268, - 2.098310377129377, - 3.702190192201794, - 5.023986391873693, - 5.665205489305872, - 5.538751956503728, - 4.940531558459047, - 4.513283132155917, - 5.163652043933496, - 7.8507022848554975, - 13.264333472308293, - 21.807718838953793, - 32.70499028056783, - 45.6387454855054, - 58.66919584692199, - 70.01073285686972 - ], - "pressure:branch118_seg0:J50": [ - 185215.85233992702, - 199096.8878959781, - 204175.39920071236, - 195950.48379452163, - 179638.46642773997, - 158494.96137840473, - 134660.06400405863, - 107645.13979020341, - 87041.50788273028, - 67638.24000857402, - 49130.65336794074, - 34962.17186853618, - 19054.14525378434, - 4180.708103617693, - -10700.811240357714, - -26792.997989731, - -40798.17791132368, - -53631.20810987835, - -63225.94264593024, - -69704.12257614058, - -74358.00962254454, - -76369.17855393948, - -77435.31794072692, - -78133.48349443768, - -78407.77694262713, - -78381.07609052757, - -77232.27206645827, - -74503.2030063125, - -70047.37821225572, - -64521.34371858426, - -58335.054907253056, - -53781.548153607204, - -52436.2465733333, - -54633.103821094126, - -61786.86673775518, - -72969.28249303011, - -86657.8836514629, - -99431.85877640333, - -110431.25330645742, - -115569.21970412669, - -114015.91238545632, - -106385.5843243538, - -92698.47432942547, - -74511.378809271, - -56372.50918703528, - -38284.402737203425, - -21585.241034922135, - -9960.605057044557, - -309.757501228265, - 6957.288540760271, - 12088.030826593573, - 17755.92725072396, - 21818.29045034664, - 25283.313429249778, - 28319.717732636935, - 28417.518989060456, - 26231.37155830274, - 21700.99742683366, - 15270.97966989696, - 7438.825891741062, - 853.6344998262394, - -4372.4682322003355, - -8104.40880454482, - -8990.191656634668, - -8647.084407798904, - -7800.0002759444205, - -7187.310243892462, - -7804.293167249328, - -9723.222757774367, - -12608.679934878497, - -15313.555483590075, - -17220.886134394583, - -17622.11843001046, - -15866.79295323164, - -12457.203753052, - -8391.442092680196, - -4622.378050594057, - -1518.9955949265318, - -482.85839070811153, - -825.4973482894823, - -1573.1847451447652, - -2275.8025130257242, - -1869.8458191077673, - 204.85150919499662, - 3636.0850976794145, - 7999.713044312695, - 11578.911937682346, - 13680.339139354639, - 14039.346620202828, - 12408.959517323496, - 10488.528746476997, - 10516.010084237349, - 14789.205874945075, - 25508.90542827989, - 43455.61302596519, - 69805.16877518543, - 99010.31429792117, - 131042.84916359048, - 163802.04010607413, - 185215.85233992702 - ], - "flow:J50:branch119_seg0": [ - 39.339263132477605, - 44.19083802605335, - 46.68160785368286, - 46.67329025811681, - 44.43587669830997, - 40.40256129729321, - 35.164281433307764, - 29.49033450888077, - 24.08084200069262, - 18.97426429901665, - 14.575503174229018, - 10.67628548715265, - 6.985253630501429, - 3.499153421374972, - -0.11631148923878175, - -3.7140787011618768, - -7.194641581715268, - -10.445799800382542, - -13.078997999300134, - -15.151259821073614, - -16.57150535383892, - -17.405036486921766, - -17.8919097942657, - -18.139982775170132, - -18.28432588415075, - -18.342148477574778, - -18.226777778053844, - -17.833046854723648, - -17.078677967905612, - -15.967458545641966, - -14.63424392761741, - -13.40367585648306, - -12.582951175342002, - -12.53321728692567, - -13.487031145463321, - -15.4473113693437, - -18.168261020527595, - -21.223215364269716, - -24.072866069617817, - -26.029386505520993, - -26.75904208365126, - -25.969800581001522, - -23.703640476027786, - -20.247064577241556, - -16.19138775261037, - -11.853404792669794, - -7.839902069867952, - -4.4864193829362025, - -1.7296784708574469, - 0.30149065491387367, - 1.8914077084588699, - 3.223896322780402, - 4.330077997133214, - 5.351375652853664, - 6.137986509399311, - 6.529001954449636, - 6.433715156134167, - 5.7510048140802486, - 4.53837621395476, - 2.9680342150740464, - 1.336521571839869, - -0.16251505824494544, - -1.2477200425096813, - -1.8474715159733077, - -2.034126555929853, - -1.9295396300147116, - -1.7719652862615785, - -1.76532510427609, - -2.0151185270986662, - -2.5249670609970174, - -3.148214117208837, - -3.7213344150857153, - -4.022890336787595, - -3.920787005386847, - -3.410368383062289, - -2.609369601493065, - -1.6924129009855824, - -0.8837559361657081, - -0.3798908109357298, - -0.1892022972555256, - -0.264993833094305, - -0.4356933055887059, - -0.4815709797383801, - -0.23792631954302898, - 0.3492088167120105, - 1.2054143994354065, - 2.1055329377677587, - 2.840118816304692, - 3.18025828757781, - 3.08925859164492, - 2.7405555636170575, - 2.5010033063234314, - 2.88538224941671, - 4.427959225206051, - 7.516715954307343, - 12.3648138777967, - 18.507930327361496, - 25.758660351332413, - 33.061472031965614, - 39.339263132477605 - ], - "pressure:J50:branch119_seg0": [ - 185215.85233992702, - 199096.8878959781, - 204175.39920071236, - 195950.48379452163, - 179638.46642773997, - 158494.96137840473, - 134660.06400405863, - 107645.13979020341, - 87041.50788273028, - 67638.24000857402, - 49130.65336794074, - 34962.17186853618, - 19054.14525378434, - 4180.708103617693, - -10700.811240357714, - -26792.997989731, - -40798.17791132368, - -53631.20810987835, - -63225.94264593024, - -69704.12257614058, - -74358.00962254454, - -76369.17855393948, - -77435.31794072692, - -78133.48349443768, - -78407.77694262713, - -78381.07609052757, - -77232.27206645827, - -74503.2030063125, - -70047.37821225572, - -64521.34371858426, - -58335.054907253056, - -53781.548153607204, - -52436.2465733333, - -54633.103821094126, - -61786.86673775518, - -72969.28249303011, - -86657.8836514629, - -99431.85877640333, - -110431.25330645742, - -115569.21970412669, - -114015.91238545632, - -106385.5843243538, - -92698.47432942547, - -74511.378809271, - -56372.50918703528, - -38284.402737203425, - -21585.241034922135, - -9960.605057044557, - -309.757501228265, - 6957.288540760271, - 12088.030826593573, - 17755.92725072396, - 21818.29045034664, - 25283.313429249778, - 28319.717732636935, - 28417.518989060456, - 26231.37155830274, - 21700.99742683366, - 15270.97966989696, - 7438.825891741062, - 853.6344998262394, - -4372.4682322003355, - -8104.40880454482, - -8990.191656634668, - -8647.084407798904, - -7800.0002759444205, - -7187.310243892462, - -7804.293167249328, - -9723.222757774367, - -12608.679934878497, - -15313.555483590075, - -17220.886134394583, - -17622.11843001046, - -15866.79295323164, - -12457.203753052, - -8391.442092680196, - -4622.378050594057, - -1518.9955949265318, - -482.85839070811153, - -825.4973482894823, - -1573.1847451447652, - -2275.8025130257242, - -1869.8458191077673, - 204.85150919499662, - 3636.0850976794145, - 7999.713044312695, - 11578.911937682346, - 13680.339139354639, - 14039.346620202828, - 12408.959517323496, - 10488.528746476997, - 10516.010084237349, - 14789.205874945075, - 25508.90542827989, - 43455.61302596519, - 69805.16877518543, - 99010.31429792117, - 131042.84916359048, - 163802.04010607413, - 185215.85233992702 - ], - "flow:J50:branch127_seg0": [ - 30.671469724391905, - 34.64280617763475, - 36.795411530206, - 37.01399001396195, - 35.44030079760648, - 32.408064174375994, - 28.374616127671146, - 23.921006030321955, - 19.630527208414122, - 15.564007452321333, - 11.99803642736511, - 8.859501064323123, - 5.897008102403412, - 3.1005566184615834, - 0.2451534397579598, - -2.636585480006045, - -5.403535568316735, - -7.98740632286529, - -10.138730687068739, - -11.836693537857487, - -13.01586353190535, - -13.738680033377701, - -14.162362818255778, - -14.38586057024827, - -14.517983157339625, - -14.571256958264483, - -14.493867137421113, - -14.202479230701702, - -13.632777068534597, - -12.779659854720673, - -11.746475412807166, - -10.767870379307963, - -10.091308047735723, - -9.99622570159337, - -10.674657830170803, - -12.138518696634408, - -14.237502631751616, - -16.611440187222566, - -18.873905916841323, - -20.48884209353845, - -21.160265931937417, - -20.655655304245123, - -18.994343727168744, - -16.371556105593278, - -13.212276578648169, - -9.799954598423062, - -6.614041562828354, - -3.89310415631348, - -1.6521515359998333, - 0.0216779797031554, - 1.3446622264533925, - 2.4249743578201337, - 3.3298181951705286, - 4.157539123183882, - 4.798577902044967, - 5.1406900433454705, - 5.104532511898178, - 4.609956823010629, - 3.696716349281267, - 2.48253569112975, - 1.203260623473367, - 0.014664067311889451, - -0.8831708695721843, - -1.3975062879657514, - -1.5821961666715754, - -1.5309475662819054, - -1.419117526122449, - -1.4077271528042044, - -1.5869609334149624, - -1.968698404441063, - -2.4505622022947224, - -2.90676869731584, - -3.160657718140382, - -3.1128105821318197, - -2.742417767806862, - -2.1362623904769182, - -1.4210964858446242, - -0.7792806446248389, - -0.3575719272351478, - -0.17876040385597206, - -0.21471536476560535, - -0.3358698124419071, - -0.3756614103851997, - -0.2010827496182176, - 0.236757200460121, - 0.8928959776939934, - 1.5966572544340663, - 2.1838675755690162, - 2.4849472017280547, - 2.4494933648587556, - 2.199975994841962, - 2.0122798258324655, - 2.2782697945169237, - 3.422743059649418, - 5.747617518000954, - 9.44290496115725, - 14.19705995320662, - 19.88008513417225, - 25.607723814956817, - 30.671469724391905 - ], - "pressure:J50:branch127_seg0": [ - 185215.85233992702, - 199096.8878959781, - 204175.39920071236, - 195950.48379452163, - 179638.46642773997, - 158494.96137840473, - 134660.06400405863, - 107645.13979020341, - 87041.50788273028, - 67638.24000857402, - 49130.65336794074, - 34962.17186853618, - 19054.14525378434, - 4180.708103617693, - -10700.811240357714, - -26792.997989731, - -40798.17791132368, - -53631.20810987835, - -63225.94264593024, - -69704.12257614058, - -74358.00962254454, - -76369.17855393948, - -77435.31794072692, - -78133.48349443768, - -78407.77694262713, - -78381.07609052757, - -77232.27206645827, - -74503.2030063125, - -70047.37821225572, - -64521.34371858426, - -58335.054907253056, - -53781.548153607204, - -52436.2465733333, - -54633.103821094126, - -61786.86673775518, - -72969.28249303011, - -86657.8836514629, - -99431.85877640333, - -110431.25330645742, - -115569.21970412669, - -114015.91238545632, - -106385.5843243538, - -92698.47432942547, - -74511.378809271, - -56372.50918703528, - -38284.402737203425, - -21585.241034922135, - -9960.605057044557, - -309.757501228265, - 6957.288540760271, - 12088.030826593573, - 17755.92725072396, - 21818.29045034664, - 25283.313429249778, - 28319.717732636935, - 28417.518989060456, - 26231.37155830274, - 21700.99742683366, - 15270.97966989696, - 7438.825891741062, - 853.6344998262394, - -4372.4682322003355, - -8104.40880454482, - -8990.191656634668, - -8647.084407798904, - -7800.0002759444205, - -7187.310243892462, - -7804.293167249328, - -9723.222757774367, - -12608.679934878497, - -15313.555483590075, - -17220.886134394583, - -17622.11843001046, - -15866.79295323164, - -12457.203753052, - -8391.442092680196, - -4622.378050594057, - -1518.9955949265318, - -482.85839070811153, - -825.4973482894823, - -1573.1847451447652, - -2275.8025130257242, - -1869.8458191077673, - 204.85150919499662, - 3636.0850976794145, - 7999.713044312695, - 11578.911937682346, - 13680.339139354639, - 14039.346620202828, - 12408.959517323496, - 10488.528746476997, - 10516.010084237349, - 14789.205874945075, - 25508.90542827989, - 43455.61302596519, - 69805.16877518543, - 99010.31429792117, - 131042.84916359048, - 163802.04010607413, - 185215.85233992702 - ], - "flow:branch120_seg0:J51": [ - 65.0004992246312, - 73.17002265394454, - 77.44091565233194, - 77.52840695826812, - 73.90496489614365, - 67.22153444608595, - 58.4502283410798, - 48.9827529171102, - 39.815876788131646, - 31.13886112205215, - 23.75477733877239, - 17.147125227983388, - 10.963213251977397, - 5.168530340777161, - -0.8686448560424251, - -6.753387608245355, - -12.491279449900379, - -17.903867215613015, - -22.20503537978909, - -25.611029831710876, - -27.946312358056804, - -29.268120327980522, - -30.023488697787855, - -30.362981005324365, - -30.51767953816411, - -30.542188655151712, - -30.284132275833183, - -29.579078989775763, - -28.28923368413477, - -26.41100572222029, - -24.1588063997583, - -22.069417943367746, - -20.63560180389316, - -20.477731248030537, - -21.98474722387651, - -25.187747620371365, - -29.637966901051975, - -34.73528012252834, - -39.512471290858606, - -42.82371149602682, - -44.144346577875794, - -42.92763732509856, - -39.22480706475478, - -33.50006398003942, - -26.78045210512058, - -19.542996590388526, - -12.779424916934934, - -7.147443953506336, - -2.480233852677334, - 0.9495872387806871, - 3.592000161016458, - 5.811870922184626, - 7.62121014312344, - 9.27344820675756, - 10.536257365614903, - 11.151276071320773, - 10.968936492389192, - 9.814811506115863, - 7.768230275787451, - 5.14143691992839, - 2.3762839068414743, - -0.1938601047864219, - -2.0349250338948486, - -3.0928689588158003, - -3.455098687525189, - -3.2998171142808004, - -3.037433058356682, - -3.008994027302287, - -3.395440469640962, - -4.214900339087767, - -5.227102611209896, - -6.167497911378795, - -6.6806951631783695, - -6.52320472792908, - -5.6933281923723955, - -4.370175970897298, - -2.8443510609671803, - -1.4779567688759188, - -0.609615969123133, - -0.2610959846982268, - -0.3638234937475177, - -0.6428077001498697, - -0.7299595863016423, - -0.3501347309063781, - 0.6008229735443765, - 1.9960259233677733, - 3.4871635151287266, - 4.728989870035033, - 5.30366467381482, - 5.17167995526136, - 4.602062796765275, - 4.185327959368131, - 4.773411186396974, - 7.248306299216946, - 12.282742623319672, - 20.253177167662766, - 30.378101761627196, - 42.315045997613964, - 54.52364052345117, - 65.0004992246312 - ], - "pressure:branch120_seg0:J51": [ - 172268.18370753777, - 191386.41064846466, - 200737.0630382192, - 198658.3506818901, - 187392.9543809187, - 169015.63232797157, - 145894.62627534647, - 120854.60565186488, - 97950.92013946052, - 76151.09176373022, - 57381.81634167259, - 41081.32913724272, - 25132.912014494766, - 10311.330899474093, - -5130.280927520414, - -20435.10276122395, - -34886.62640931258, - -48608.655799632776, - -59236.430083548155, - -67296.49349395669, - -72918.9499312658, - -75878.36773844704, - -77523.45400403289, - -78294.57581970023, - -78586.18205631267, - -78571.36403986608, - -77733.2450912525, - -75629.74534196488, - -71967.77796052632, - -66905.68710027935, - -60961.76275778055, - -55778.42955819293, - -52663.057690986556, - -52955.55830883, - -57699.80424898474, - -66764.1332933368, - -78785.95739234744, - -91851.56931112465, - -103862.38617340899, - -111467.21401081122, - -113585.37651183247, - -109259.56204598829, - -98582.12849947641, - -82877.49690908687, - -65272.9998479858, - -46788.38615894959, - -29498.474513898338, - -15715.865860439759, - -4331.23126523748, - 4096.06116284167, - 10404.824772089798, - 16061.784833234184, - 20548.064936970066, - 24556.39975190031, - 27679.81044173266, - 28834.056615894347, - 27874.36390031011, - 24440.465430010714, - 18805.752428408417, - 11735.97506504339, - 4736.137800570501, - -1603.819016211934, - -6052.070263871848, - -8286.66884570754, - -8909.769552109068, - -8376.603785015503, - -7701.872547487818, - -7799.4055673886605, - -9028.299360120423, - -11334.663735852404, - -13972.058693038565, - -16244.573269467857, - -17324.09704583025, - -16555.553457749967, - -14070.17980334179, - -10469.897270450914, - -6566.416674639047, - -3149.1594420041088, - -1218.5412272563321, - -643.332589424683, - -1051.9515734803053, - -1773.3829102928573, - -1838.480387260283, - -574.8958401199563, - 2135.8767786498997, - 5928.748365181496, - 9691.44394707788, - 12629.163174727833, - 13793.224149294592, - 13093.66498447197, - 11504.331797653604, - 10701.410264789127, - 12928.791963135613, - 20423.72149032621, - 34710.74040749169, - 56780.62782455738, - 83788.99521728349, - 114811.83423098882, - 146627.78455253708, - 172268.18370753777 - ], - "flow:J51:branch121_seg0": [ - 29.762738826029896, - 33.678833097371566, - 35.80939290483531, - 36.0407612632247, - 34.511738455734644, - 31.516080994711874, - 27.516103245525063, - 23.1518331335713, - 18.857448041743933, - 14.809123280640472, - 11.33589438115315, - 8.220960838970553, - 5.345527392688234, - 2.6382990927150685, - -0.1573756498371967, - -2.892074885641348, - -5.580106601890219, - -8.09734336592504, - -10.142332367899874, - -11.774802306984906, - -12.892085433135621, - -13.548781309351947, - -13.921086514349417, - -14.089941412539606, - -14.170662070943767, - -14.186204307028659, - -14.078838153555074, - -13.771977228486724, - -13.197738047308599, - -12.34585977632547, - -11.314175600906866, - -10.330527611932343, - -9.628715610349545, - -9.50155043319461, - -10.130389804763233, - -11.546742253634788, - -13.568939191495526, - -15.922016465278663, - -18.154124299951174, - -19.76174395847096, - -20.465128035305757, - -19.998321352559277, - -18.37939180702377, - -15.807991399910154, - -12.71626404991843, - -9.358569493608313, - -6.211539734939369, - -3.536907930077911, - -1.3300723294729275, - 0.3026237148226191, - 1.5699679405668552, - 2.60660258581194, - 3.463123041963747, - 4.2422267651822905, - 4.840679520905029, - 5.158334364587356, - 5.108898448709429, - 4.61092722335663, - 3.6961956417568955, - 2.49899367963828, - 1.2132977389146273, - 0.01007396370878105, - -0.8737498659259471, - -1.4028164397291956, - -1.5951428535992436, - -1.5395819873591259, - -1.420401738472072, - -1.3946100614634018, - -1.555396662813748, - -1.9180340279062054, - -2.383152834669018, - -2.828096473320549, - -3.0840356337237362, - -3.0407363511478605, - -2.683604213627592, - -2.086979712802124, - -1.381116350168855, - -0.7403854035172944, - -0.3136534405225865, - -0.12864635102721997, - -0.16211102716576478, - -0.2873169052034249, - -0.33836049084813524, - -0.18336929170638117, - 0.23479976870982824, - 0.8658810163511146, - 1.5592542771573534, - 2.1489757234623257, - 2.443394859176551, - 2.4130590726100154, - 2.16202091783492, - 1.9538586555396873, - 2.1763526010065153, - 3.2396829635096047, - 5.468751077707727, - 9.037240953345217, - 13.656438394186955, - 19.159895562133883, - 24.793004453522126, - 29.762738826029896 - ], - "pressure:J51:branch121_seg0": [ - 172268.18370753777, - 191386.41064846466, - 200737.0630382192, - 198658.3506818901, - 187392.9543809187, - 169015.63232797157, - 145894.62627534647, - 120854.60565186488, - 97950.92013946052, - 76151.09176373022, - 57381.81634167259, - 41081.32913724272, - 25132.912014494766, - 10311.330899474093, - -5130.280927520414, - -20435.10276122395, - -34886.62640931258, - -48608.655799632776, - -59236.430083548155, - -67296.49349395669, - -72918.9499312658, - -75878.36773844704, - -77523.45400403289, - -78294.57581970023, - -78586.18205631267, - -78571.36403986608, - -77733.2450912525, - -75629.74534196488, - -71967.77796052632, - -66905.68710027935, - -60961.76275778055, - -55778.42955819293, - -52663.057690986556, - -52955.55830883, - -57699.80424898474, - -66764.1332933368, - -78785.95739234744, - -91851.56931112465, - -103862.38617340899, - -111467.21401081122, - -113585.37651183247, - -109259.56204598829, - -98582.12849947641, - -82877.49690908687, - -65272.9998479858, - -46788.38615894959, - -29498.474513898338, - -15715.865860439759, - -4331.23126523748, - 4096.06116284167, - 10404.824772089798, - 16061.784833234184, - 20548.064936970066, - 24556.39975190031, - 27679.81044173266, - 28834.056615894347, - 27874.36390031011, - 24440.465430010714, - 18805.752428408417, - 11735.97506504339, - 4736.137800570501, - -1603.819016211934, - -6052.070263871848, - -8286.66884570754, - -8909.769552109068, - -8376.603785015503, - -7701.872547487818, - -7799.4055673886605, - -9028.299360120423, - -11334.663735852404, - -13972.058693038565, - -16244.573269467857, - -17324.09704583025, - -16555.553457749967, - -14070.17980334179, - -10469.897270450914, - -6566.416674639047, - -3149.1594420041088, - -1218.5412272563321, - -643.332589424683, - -1051.9515734803053, - -1773.3829102928573, - -1838.480387260283, - -574.8958401199563, - 2135.8767786498997, - 5928.748365181496, - 9691.44394707788, - 12629.163174727833, - 13793.224149294592, - 13093.66498447197, - 11504.331797653604, - 10701.410264789127, - 12928.791963135613, - 20423.72149032621, - 34710.74040749169, - 56780.62782455738, - 83788.99521728349, - 114811.83423098882, - 146627.78455253708, - 172268.18370753777 - ], - "flow:J51:branch128_seg0": [ - 35.23776039860105, - 39.491189556572934, - 41.63152274749677, - 41.48764569504375, - 39.39322644040999, - 35.70545345137441, - 30.93412509555397, - 25.830919783539702, - 20.958428746388144, - 16.32973784141274, - 12.418882957618814, - 8.92616438901099, - 5.617685859289845, - 2.530231248062559, - -0.7112692062075063, - -3.8613127226030417, - -6.911172848008241, - -9.806523849690334, - -12.062703011889276, - -13.83622752472589, - -15.054226924920158, - -15.719339018626929, - -16.102402183436087, - -16.27303959278336, - -16.34701746721914, - -16.355984348124952, - -16.205294122278943, - -15.807101761288697, - -15.091495636825105, - -14.06514594589504, - -12.844630798851679, - -11.73889033143542, - -11.00688619354306, - -10.976180814835624, - -11.854357419113917, - -13.641005366736783, - -16.06902770955643, - -18.813263657249095, - -21.358346990907254, - -23.06196753755548, - -23.679218542570514, - -22.929315972539644, - -20.845415257731005, - -17.69207258012916, - -14.064188055202207, - -10.184427096780212, - -6.567885181995567, - -3.610536023428433, - -1.1501615232044187, - 0.6469635239580632, - 2.022032220449619, - 3.2052683363726895, - 4.158087101159695, - 5.031221441575272, - 5.695577844709888, - 5.992941706733411, - 5.860038043679683, - 5.203884282759225, - 4.072034634030582, - 2.642443240290186, - 1.1629861679266948, - -0.20393406849514206, - -1.1611751679689817, - -1.6900525190865854, - -1.8599558339259286, - -1.7602351269217793, - -1.6170313198846051, - -1.6143839658388086, - -1.8400438068272085, - -2.296866311181461, - -2.843949776540927, - -3.339401438058358, - -3.59665952945468, - -3.4824683767811955, - -3.0097239787448196, - -2.283196258095176, - -1.463234710798304, - -0.7375713653586382, - -0.2959625286005426, - -0.13244963367100335, - -0.2017124665817679, - -0.3554907949464383, - -0.3915990954535155, - -0.16676543920000417, - 0.3660232048345553, - 1.1301449070166494, - 1.9279092379713876, - 2.5800141465727284, - 2.8602698146382592, - 2.7586208826513525, - 2.4400418789303058, - 2.231469303828482, - 2.597058585390454, - 4.008623335707312, - 6.81399154561193, - 11.215936214317473, - 16.721663367440136, - 23.155150435480444, - 29.73063606992889, - 35.23776039860105 - ], - "pressure:J51:branch128_seg0": [ - 172268.18370753777, - 191386.41064846466, - 200737.0630382192, - 198658.3506818901, - 187392.9543809187, - 169015.63232797157, - 145894.62627534647, - 120854.60565186488, - 97950.92013946052, - 76151.09176373022, - 57381.81634167259, - 41081.32913724272, - 25132.912014494766, - 10311.330899474093, - -5130.280927520414, - -20435.10276122395, - -34886.62640931258, - -48608.655799632776, - -59236.430083548155, - -67296.49349395669, - -72918.9499312658, - -75878.36773844704, - -77523.45400403289, - -78294.57581970023, - -78586.18205631267, - -78571.36403986608, - -77733.2450912525, - -75629.74534196488, - -71967.77796052632, - -66905.68710027935, - -60961.76275778055, - -55778.42955819293, - -52663.057690986556, - -52955.55830883, - -57699.80424898474, - -66764.1332933368, - -78785.95739234744, - -91851.56931112465, - -103862.38617340899, - -111467.21401081122, - -113585.37651183247, - -109259.56204598829, - -98582.12849947641, - -82877.49690908687, - -65272.9998479858, - -46788.38615894959, - -29498.474513898338, - -15715.865860439759, - -4331.23126523748, - 4096.06116284167, - 10404.824772089798, - 16061.784833234184, - 20548.064936970066, - 24556.39975190031, - 27679.81044173266, - 28834.056615894347, - 27874.36390031011, - 24440.465430010714, - 18805.752428408417, - 11735.97506504339, - 4736.137800570501, - -1603.819016211934, - -6052.070263871848, - -8286.66884570754, - -8909.769552109068, - -8376.603785015503, - -7701.872547487818, - -7799.4055673886605, - -9028.299360120423, - -11334.663735852404, - -13972.058693038565, - -16244.573269467857, - -17324.09704583025, - -16555.553457749967, - -14070.17980334179, - -10469.897270450914, - -6566.416674639047, - -3149.1594420041088, - -1218.5412272563321, - -643.332589424683, - -1051.9515734803053, - -1773.3829102928573, - -1838.480387260283, - -574.8958401199563, - 2135.8767786498997, - 5928.748365181496, - 9691.44394707788, - 12629.163174727833, - 13793.224149294592, - 13093.66498447197, - 11504.331797653604, - 10701.410264789127, - 12928.791963135613, - 20423.72149032621, - 34710.74040749169, - 56780.62782455738, - 83788.99521728349, - 114811.83423098882, - 146627.78455253708, - 172268.18370753777 - ], - "flow:branch124_seg2:J52": [ - 45.0282361903587, - 51.69322982852402, - 55.815701487721476, - 57.06152205636552, - 55.52442803543783, - 51.54788816599854, - 45.771217570284094, - 39.17529840444287, - 32.4033480381588, - 25.872191838562195, - 20.14069824442627, - 14.94845867496821, - 10.192587851872181, - 5.741903462795196, - 1.2227144451670688, - -3.170019830304048, - -7.512036229938582, - -11.633410612131925, - -15.069292826879622, - -17.886467000852484, - -19.92201876823071, - -21.206972786633695, - -21.992814945187035, - -22.4004716001332, - -22.61176584917642, - -22.69428388892327, - -22.58399190480532, - -22.181215730775147, - -21.381540581499305, - -20.150734855342286, - -18.604758307029165, - -17.056444234911883, - -15.847877162735077, - -15.429458033295596, - -16.115680186264004, - -18.01437040060498, - -20.90678515627469, - -24.454684788277135, - -27.9791967871504, - -30.727796308516492, - -32.21486916833646, - -31.972542925116407, - -29.931381555449985, - -26.32118458308032, - -21.746800142359394, - -16.597186140929455, - -11.572924421381849, - -7.163707055156972, - -3.4192987078896984, - -0.5486437911615246, - 1.692060042526334, - 3.519619969099692, - 5.011096703797751, - 6.336206277397663, - 7.383431279484204, - 8.01819368864296, - 8.107865880338226, - 7.518863888184256, - 6.26268364734411, - 4.523871245252897, - 2.553876049735652, - 0.6290122685568328, - -0.8740367699188165, - -1.8719206538641708, - -2.34693097141782, - -2.397194314013131, - -2.2818014615840307, - -2.242612242762598, - -2.4441365181423538, - -2.9424936184108326, - -3.6223868026200834, - -4.316073707977223, - -4.779854008658805, - -4.822542080835118, - -4.393897093812314, - -3.5689920165504825, - -2.5248638916122297, - -1.5105072454392856, - -0.7661899933015964, - -0.3692111766383737, - -0.31530426886062324, - -0.4467776744843849, - -0.5242301770266135, - -0.33942042951288853, - 0.2256549258783881, - 1.1265319134217064, - 2.179196203815498, - 3.138035422194424, - 3.70187693807753, - 3.790656009060152, - 3.5106766511779015, - 3.2086966284671905, - 3.440835542469028, - 4.829783139591927, - 7.91547970230421, - 13.03244193171226, - 19.85873729108369, - 28.156479306481693, - 36.96935609589469, - 45.0282361903587 - ], - "pressure:branch124_seg2:J52": [ - 157331.50888121207, - 177898.74033154928, - 190018.76334474198, - 191710.57189158836, - 184357.82945404912, - 169475.60611322906, - 149210.8716372049, - 126196.13738741858, - 103703.10755725898, - 82260.12918526439, - 63301.24804115515, - 46493.35364901673, - 30624.16275430688, - 15739.272144599006, - 609.0634567400572, - -14190.319389464139, - -28598.86842601864, - -42300.68523674782, - -53264.99053885512, - -62021.11305802149, - -68387.70751750762, - -72135.8124597305, - -74410.66513354753, - -75583.08058346281, - -76135.3025682114, - -76323.88517742653, - -75769.17923814147, - -74124.02633978154, - -71078.44208571705, - -66667.57874356364, - -61264.61101629201, - -56174.94149078062, - -52628.932485498, - -51897.36531977177, - -55136.06645755927, - -62466.675654899016, - -72885.16830623629, - -85029.5653761601, - -96702.73176540101, - -105105.3084760176, - -108808.14162100824, - -106628.95869740022, - -98381.83484773879, - -84953.90536200591, - -69151.14500668713, - -51792.06104698917, - -34884.881978270285, - -20834.476498954344, - -8867.263488074163, - 247.87220757095207, - 7163.556613972876, - 13206.34343697137, - 17981.43993814012, - 22156.541880902325, - 25546.721528375332, - 27258.579464207152, - 27049.463079761757, - 24563.385287729307, - 19880.632758481875, - 13673.242544132372, - 7003.782799741845, - 742.9757770104438, - -3993.5332313100757, - -6861.248231653542, - -8076.772592771185, - -8020.571329399559, - -7566.7025267523795, - -7570.891280568972, - -8485.060480680655, - -10403.60990884454, - -12748.76183897948, - -14969.702075481824, - -16312.580553602082, - -16070.870773712773, - -14241.663015274018, - -11215.133823105632, - -7677.698459313174, - -4315.497224453157, - -2097.4195241418984, - -1105.2315903796, - -1104.6909319994045, - -1610.3405352965208, - -1753.068297554406, - -866.0467015985279, - 1330.8649844982822, - 4596.77678404967, - 8158.047324144718, - 11176.52729978324, - 12736.716215916533, - 12637.653096814109, - 11485.869639913097, - 10655.584256565387, - 12097.376768295057, - 17916.95646287221, - 29728.271290843193, - 48770.7690128026, - 72807.38267908018, - 101126.87316288486, - 131550.332029068, - 157331.50888121207 - ], - "flow:J52:branch125_seg0": [ - 27.842450481548926, - 32.02657434882373, - 34.642465598724804, - 35.48434545080042, - 34.58627741882502, - 32.15962476116212, - 28.60131457763174, - 24.513783013979424, - 20.298095145789926, - 16.23166490203379, - 12.649787803960377, - 9.405055239335804, - 6.4424280666917415, - 3.667282873497485, - 0.859921579518485, - -1.8742757149532336, - -4.581985963661277, - -7.145232027867523, - -9.299265259235446, - -11.069014935012595, - -12.348898465901582, - -13.16537037414597, - -13.664185507705296, - -13.924308031330044, - -14.060493349189835, - -14.11436388177986, - -14.050483220344569, - -13.807408666515954, - -13.319150038036469, - -12.562522499796692, - -11.607471836834026, - -10.642613335555621, - -9.88075699838131, - -9.602189914900674, - -10.00347275335944, - -11.157104045644227, - -12.93735133285502, - -15.134398134109231, - -17.328485936471846, - -19.060886694905967, - -20.01707090443742, - -19.904384164139525, - -18.673756674591502, - -16.463904599954816, - -13.633892887168878, - -10.436194866126177, - -7.310262363383932, - -4.54834500101753, - -2.204081418639638, - -0.4015508669607221, - 1.0085894725426847, - 2.1512887159225933, - 3.0857755254697197, - 3.9151539435966973, - 4.5718792406662, - 4.977429845721658, - 5.045864989727271, - 4.693935597230894, - 3.926901036136343, - 2.854795587344321, - 1.631695396836575, - 0.4328967040740279, - -0.512632940570406, - -1.146631331092523, - -1.452228999255526, - -1.4915276187975188, - -1.4225346117165403, - -1.3951631618572693, - -1.5146099157316044, - -1.8179677683814566, - -2.238114700491598, - -2.671273964889746, - -2.96515809144122, - -3.0018298950933473, - -2.7456779401952183, - -2.240145494216793, - -1.5935481719235567, - -0.961326029697983, - -0.4913071746107927, - -0.23603103966188974, - -0.1961165806911901, - -0.2747789057830702, - -0.325234647766161, - -0.21700129969372373, - 0.125962502370386, - 0.6795555851981758, - 1.332910469991613, - 1.932340408951557, - 2.2927954980683096, - 2.3593071089097775, - 2.1918017919570403, - 2.001482741211235, - 2.1308904682576064, - 2.9663979211128977, - 4.84823545979137, - 7.983115076176992, - 12.195842642108488, - 17.33762038793081, - 22.803164413483568, - 27.842450481548926 - ], - "pressure:J52:branch125_seg0": [ - 157331.50888121207, - 177898.74033154928, - 190018.76334474198, - 191710.57189158836, - 184357.82945404912, - 169475.60611322906, - 149210.8716372049, - 126196.13738741858, - 103703.10755725898, - 82260.12918526439, - 63301.24804115515, - 46493.35364901673, - 30624.16275430688, - 15739.272144599006, - 609.0634567400572, - -14190.319389464139, - -28598.86842601864, - -42300.68523674782, - -53264.99053885512, - -62021.11305802149, - -68387.70751750762, - -72135.8124597305, - -74410.66513354753, - -75583.08058346281, - -76135.3025682114, - -76323.88517742653, - -75769.17923814147, - -74124.02633978154, - -71078.44208571705, - -66667.57874356364, - -61264.61101629201, - -56174.94149078062, - -52628.932485498, - -51897.36531977177, - -55136.06645755927, - -62466.675654899016, - -72885.16830623629, - -85029.5653761601, - -96702.73176540101, - -105105.3084760176, - -108808.14162100824, - -106628.95869740022, - -98381.83484773879, - -84953.90536200591, - -69151.14500668713, - -51792.06104698917, - -34884.881978270285, - -20834.476498954344, - -8867.263488074163, - 247.87220757095207, - 7163.556613972876, - 13206.34343697137, - 17981.43993814012, - 22156.541880902325, - 25546.721528375332, - 27258.579464207152, - 27049.463079761757, - 24563.385287729307, - 19880.632758481875, - 13673.242544132372, - 7003.782799741845, - 742.9757770104438, - -3993.5332313100757, - -6861.248231653542, - -8076.772592771185, - -8020.571329399559, - -7566.7025267523795, - -7570.891280568972, - -8485.060480680655, - -10403.60990884454, - -12748.76183897948, - -14969.702075481824, - -16312.580553602082, - -16070.870773712773, - -14241.663015274018, - -11215.133823105632, - -7677.698459313174, - -4315.497224453157, - -2097.4195241418984, - -1105.2315903796, - -1104.6909319994045, - -1610.3405352965208, - -1753.068297554406, - -866.0467015985279, - 1330.8649844982822, - 4596.77678404967, - 8158.047324144718, - 11176.52729978324, - 12736.716215916533, - 12637.653096814109, - 11485.869639913097, - 10655.584256565387, - 12097.376768295057, - 17916.95646287221, - 29728.271290843193, - 48770.7690128026, - 72807.38267908018, - 101126.87316288486, - 131550.332029068, - 157331.50888121207 - ], - "flow:J52:branch136_seg0": [ - 17.18578570880977, - 19.666655479700037, - 21.173235888996633, - 21.577176605565217, - 20.938150616612845, - 19.388263404836653, - 17.169902992651235, - 14.66151539046358, - 12.105252892369569, - 9.640526936528069, - 7.490910440465522, - 5.543403435630983, - 3.750159785180927, - 2.074620589298146, - 0.36279286564901286, - -1.2957441153513145, - -2.930050266276892, - -4.48817858426369, - -5.77002756764313, - -6.817452065840247, - -7.57312030233, - -8.041602412488052, - -8.328629437481176, - -8.476163568803107, - -8.55127249998647, - -8.57992000714326, - -8.533508684460623, - -8.373807064258731, - -8.062390543462497, - -7.5882123555455845, - -6.997286470194797, - -6.413830899356134, - -5.967120164353303, - -5.827268118394685, - -6.1122074329049445, - -6.857266354960655, - -7.969433823419606, - -9.32028665416766, - -10.65071085067842, - -11.66690961361033, - -12.19779826389941, - -12.068158760977054, - -11.257624880858462, - -9.85727998312553, - -8.112907255190507, - -6.160991274803297, - -4.262662057997927, - -2.6153620541394376, - -1.2152172892500483, - -0.14709292420080042, - 0.6834705699836525, - 1.368331253177106, - 1.9253211783280313, - 2.4210523338009633, - 2.8115520388180077, - 3.0407638429213093, - 3.0620008906110088, - 2.824928290953375, - 2.335782611207799, - 1.6690756579086756, - 0.922180652899089, - 0.19611556448289966, - -0.3614038293483912, - -0.7252893227717847, - -0.8947019721622888, - -0.9056666952155726, - -0.8592668498675505, - -0.8474490809053571, - -0.9295266024107669, - -1.1245258500294897, - -1.384272102128437, - -1.6447997430874732, - -1.8146959172175905, - -1.8207121857417996, - -1.648219153617077, - -1.328846522333686, - -0.9313157196886415, - -0.5491812157413088, - -0.2748828186907984, - -0.13318013697648706, - -0.11918768816943101, - -0.171998768701323, - -0.19899552926046263, - -0.12241912981917134, - 0.09969242350799856, - 0.44697632822351147, - 0.8462857338238939, - 1.2056950132428714, - 1.4090814400092142, - 1.4313489001503603, - 1.3188748592208535, - 1.2072138872559404, - 1.3099450742114163, - 1.8633852184790314, - 3.067244242512862, - 5.049326855535171, - 7.662894648975108, - 10.818858918551019, - 14.166191682411249, - 17.18578570880977 - ], - "pressure:J52:branch136_seg0": [ - 157331.50888121207, - 177898.74033154928, - 190018.76334474198, - 191710.57189158836, - 184357.82945404912, - 169475.60611322906, - 149210.8716372049, - 126196.13738741858, - 103703.10755725898, - 82260.12918526439, - 63301.24804115515, - 46493.35364901673, - 30624.16275430688, - 15739.272144599006, - 609.0634567400572, - -14190.319389464139, - -28598.86842601864, - -42300.68523674782, - -53264.99053885512, - -62021.11305802149, - -68387.70751750762, - -72135.8124597305, - -74410.66513354753, - -75583.08058346281, - -76135.3025682114, - -76323.88517742653, - -75769.17923814147, - -74124.02633978154, - -71078.44208571705, - -66667.57874356364, - -61264.61101629201, - -56174.94149078062, - -52628.932485498, - -51897.36531977177, - -55136.06645755927, - -62466.675654899016, - -72885.16830623629, - -85029.5653761601, - -96702.73176540101, - -105105.3084760176, - -108808.14162100824, - -106628.95869740022, - -98381.83484773879, - -84953.90536200591, - -69151.14500668713, - -51792.06104698917, - -34884.881978270285, - -20834.476498954344, - -8867.263488074163, - 247.87220757095207, - 7163.556613972876, - 13206.34343697137, - 17981.43993814012, - 22156.541880902325, - 25546.721528375332, - 27258.579464207152, - 27049.463079761757, - 24563.385287729307, - 19880.632758481875, - 13673.242544132372, - 7003.782799741845, - 742.9757770104438, - -3993.5332313100757, - -6861.248231653542, - -8076.772592771185, - -8020.571329399559, - -7566.7025267523795, - -7570.891280568972, - -8485.060480680655, - -10403.60990884454, - -12748.76183897948, - -14969.702075481824, - -16312.580553602082, - -16070.870773712773, - -14241.663015274018, - -11215.133823105632, - -7677.698459313174, - -4315.497224453157, - -2097.4195241418984, - -1105.2315903796, - -1104.6909319994045, - -1610.3405352965208, - -1753.068297554406, - -866.0467015985279, - 1330.8649844982822, - 4596.77678404967, - 8158.047324144718, - 11176.52729978324, - 12736.716215916533, - 12637.653096814109, - 11485.869639913097, - 10655.584256565387, - 12097.376768295057, - 17916.95646287221, - 29728.271290843193, - 48770.7690128026, - 72807.38267908018, - 101126.87316288486, - 131550.332029068, - 157331.50888121207 - ], - "flow:branch1_seg0:J53": [ - 1500.91744954255, - 1688.3518554526925, - 1783.188031991868, - 1786.3658264275832, - 1702.0844851368886, - 1552.261108615197, - 1349.4644020902658, - 1136.3531829715967, - 923.3916523004618, - 729.429708752725, - 556.238586199252, - 403.0483402611232, - 260.7974203674759, - 121.33780335463614, - -14.293676457004919, - -157.19647971551498, - -286.19304048799006, - -410.6648814629761, - -511.17632464642, - -588.2290156925492, - -643.3755635047473, - -674.2439789906425, - -693.0391610172878, - -701.9834462280326, - -706.8062573043109, - -707.788916658089, - -702.1810659368103, - -685.468455049018, - -655.8957761105136, - -612.2745942063433, - -561.1296763727844, - -513.9841781048328, - -482.38840714015015, - -480.24958601960606, - -517.1783929185705, - -590.3029369115781, - -694.7627161836339, - -809.9071022304371, - -916.8602619485124, - -991.9671084084581, - -1018.6794586609818, - -987.7410920978401, - -904.0443377051463, - -772.230860876166, - -617.9269952732919, - -455.34043207940107, - -299.2942497815485, - -172.64847399688884, - -64.19081114714963, - 14.610515455866537, - 77.73797644449986, - 129.8790485088544, - 172.84925037150293, - 212.52930105432227, - 241.49097300226765, - 256.1860228157814, - 251.30712317519885, - 224.8680248545914, - 177.17382713785466, - 117.77269840383893, - 53.60676806376562, - -2.6004315303350682, - -45.60757649284564, - -68.9006383753295, - -77.11077275335458, - -74.28877028819498, - -69.43367021418047, - -69.98339891712102, - -79.49332714289368, - -98.85800160596453, - -121.93779787831598, - -142.8613827321966, - -153.79594152969761, - -149.86649732246593, - -130.21310454238937, - -100.41605234545962, - -65.69454772300497, - -35.25421090015428, - -15.802776498067626, - -8.076325475569114, - -10.172845929209732, - -15.888497969655846, - -16.856373170495136, - -7.270690665489624, - 15.561963827963645, - 47.36306710142227, - 81.92479238779582, - 108.53008403575542, - 121.47583499537456, - 118.00492038031045, - 105.38519621446663, - 97.70559901151606, - 113.38099714181668, - 175.66154961659652, - 291.32156554723645, - 478.50617854302084, - 711.4598310261932, - 984.8462638336049, - 1264.1291206127764, - 1500.91744954255 - ], - "pressure:branch1_seg0:J53": [ - 210229.99640252977, - 217944.95855131422, - 215073.2241492028, - 198384.87284493374, - 173649.91827665767, - 146756.2583893297, - 117397.75980438593, - 88424.7934106516, - 67412.18264729549, - 50501.02561377835, - 30955.456896336087, - 19531.718272127695, - 3084.1838926439614, - -12778.803465503086, - -25880.470413144867, - -45787.36525168413, - -55135.69914204694, - -67931.3889463863, - -75902.72811730145, - -78751.11177248046, - -81960.92955205304, - -81762.89301403999, - -81602.19246909046, - -81631.89611252472, - -81419.5064270747, - -80661.65952837803, - -78713.58422673598, - -74371.44025170195, - -68589.526130057, - -61366.31865650964, - -54792.336509125744, - -50542.58945431151, - -51455.126673354105, - -56770.87659850389, - -68477.54726305147, - -82962.20465740724, - -100799.04595196938, - -112747.23582703368, - -122939.87897026334, - -124105.3108828779, - -116707.19574453037, - -102579.91266039398, - -85156.5263395544, - -61819.615155449595, - -41678.25261651158, - -24392.277351700788, - -7427.564974731018, - 1154.4922963620184, - 9312.83469930835, - 14591.915916429789, - 18964.001993398466, - 23491.638059758618, - 27492.46452014228, - 30353.1607710371, - 32201.529997861744, - 30704.48496459652, - 26116.23448814451, - 19281.237532542622, - 10611.5916375933, - 1326.8980255546564, - -5524.761857233311, - -9389.455994432157, - -12442.283757643856, - -10820.542926805992, - -9261.537199783268, - -7816.740889845271, - -7287.032939976584, - -8734.181433249392, - -11428.490480368368, - -15213.123183196216, - -17964.55600267728, - -19246.224657427163, - -18448.152940004835, - -15419.226916767171, - -10338.143155685455, - -5758.192242772078, - -1557.7940480015527, - 785.9674954022507, - 1008.5880868070489, - -530.3141694107942, - -1898.0100397010046, - -2602.169751531258, - -1449.8597672915676, - 1934.8432842234781, - 6704.892833069577, - 11940.60922534555, - 15442.680203008214, - 16173.545577033201, - 15209.585947173871, - 11924.138546417074, - 9490.059130224303, - 11006.22109432099, - 18311.87173892904, - 35476.88046994368, - 57414.07582997633, - 91917.94529376576, - 124679.86611709272, - 159708.226562066, - 192010.08343156351, - 210229.99640252977 - ], - "flow:J53:branch1_seg1": [ - 1500.91744954255, - 1688.3518554526925, - 1783.188031991868, - 1786.3658264275832, - 1702.0844851368886, - 1552.261108615197, - 1349.4644020902658, - 1136.3531829715967, - 923.3916523004618, - 729.429708752725, - 556.238586199252, - 403.0483402611232, - 260.7974203674759, - 121.33780335463614, - -14.293676457004919, - -157.19647971551498, - -286.19304048799006, - -410.6648814629761, - -511.17632464642, - -588.2290156925492, - -643.3755635047473, - -674.2439789906425, - -693.0391610172878, - -701.9834462280326, - -706.8062573043109, - -707.788916658089, - -702.1810659368103, - -685.468455049018, - -655.8957761105136, - -612.2745942063433, - -561.1296763727844, - -513.9841781048328, - -482.38840714015015, - -480.24958601960606, - -517.1783929185705, - -590.3029369115781, - -694.7627161836339, - -809.9071022304371, - -916.8602619485124, - -991.9671084084581, - -1018.6794586609818, - -987.7410920978401, - -904.0443377051463, - -772.230860876166, - -617.9269952732919, - -455.34043207940107, - -299.2942497815485, - -172.64847399688884, - -64.19081114714963, - 14.610515455866537, - 77.73797644449986, - 129.8790485088544, - 172.84925037150293, - 212.52930105432227, - 241.49097300226765, - 256.1860228157814, - 251.30712317519885, - 224.8680248545914, - 177.17382713785466, - 117.77269840383893, - 53.60676806376562, - -2.6004315303350682, - -45.60757649284564, - -68.9006383753295, - -77.11077275335458, - -74.28877028819498, - -69.43367021418047, - -69.98339891712102, - -79.49332714289368, - -98.85800160596453, - -121.93779787831598, - -142.8613827321966, - -153.79594152969761, - -149.86649732246593, - -130.21310454238937, - -100.41605234545962, - -65.69454772300497, - -35.25421090015428, - -15.802776498067626, - -8.076325475569114, - -10.172845929209732, - -15.888497969655846, - -16.856373170495136, - -7.270690665489624, - 15.561963827963645, - 47.36306710142227, - 81.92479238779582, - 108.53008403575542, - 121.47583499537456, - 118.00492038031045, - 105.38519621446663, - 97.70559901151606, - 113.38099714181668, - 175.66154961659652, - 291.32156554723645, - 478.50617854302084, - 711.4598310261932, - 984.8462638336049, - 1264.1291206127764, - 1500.91744954255 - ], - "pressure:J53:branch1_seg1": [ - 210229.99640252977, - 217944.95855131422, - 215073.2241492028, - 198384.87284493374, - 173649.91827665767, - 146756.2583893297, - 117397.75980438593, - 88424.7934106516, - 67412.18264729549, - 50501.02561377835, - 30955.456896336087, - 19531.718272127695, - 3084.1838926439614, - -12778.803465503086, - -25880.470413144867, - -45787.36525168413, - -55135.69914204694, - -67931.3889463863, - -75902.72811730145, - -78751.11177248046, - -81960.92955205304, - -81762.89301403999, - -81602.19246909046, - -81631.89611252472, - -81419.5064270747, - -80661.65952837803, - -78713.58422673598, - -74371.44025170195, - -68589.526130057, - -61366.31865650964, - -54792.336509125744, - -50542.58945431151, - -51455.126673354105, - -56770.87659850389, - -68477.54726305147, - -82962.20465740724, - -100799.04595196938, - -112747.23582703368, - -122939.87897026334, - -124105.3108828779, - -116707.19574453037, - -102579.91266039398, - -85156.5263395544, - -61819.615155449595, - -41678.25261651158, - -24392.277351700788, - -7427.564974731018, - 1154.4922963620184, - 9312.83469930835, - 14591.915916429789, - 18964.001993398466, - 23491.638059758618, - 27492.46452014228, - 30353.1607710371, - 32201.529997861744, - 30704.48496459652, - 26116.23448814451, - 19281.237532542622, - 10611.5916375933, - 1326.8980255546564, - -5524.761857233311, - -9389.455994432157, - -12442.283757643856, - -10820.542926805992, - -9261.537199783268, - -7816.740889845271, - -7287.032939976584, - -8734.181433249392, - -11428.490480368368, - -15213.123183196216, - -17964.55600267728, - -19246.224657427163, - -18448.152940004835, - -15419.226916767171, - -10338.143155685455, - -5758.192242772078, - -1557.7940480015527, - 785.9674954022507, - 1008.5880868070489, - -530.3141694107942, - -1898.0100397010046, - -2602.169751531258, - -1449.8597672915676, - 1934.8432842234781, - 6704.892833069577, - 11940.60922534555, - 15442.680203008214, - 16173.545577033201, - 15209.585947173871, - 11924.138546417074, - 9490.059130224303, - 11006.22109432099, - 18311.87173892904, - 35476.88046994368, - 57414.07582997633, - 91917.94529376576, - 124679.86611709272, - 159708.226562066, - 192010.08343156351, - 210229.99640252977 - ], - "flow:branch1_seg1:J54": [ - 1502.6294464519638, - 1688.268511833476, - 1785.3625327389013, - 1787.0222566499608, - 1703.7186160692377, - 1551.2954123629083, - 1352.0747407276065, - 1134.600056980729, - 926.3167605650341, - 729.2751313656528, - 557.3063414743253, - 405.41589520727723, - 260.84856149107765, - 125.21173122038796, - -14.078810916833866, - -152.99416990729515, - -284.99929467211814, - -409.48003298504295, - -509.48968063962366, - -588.2535514529459, - -642.7134928796474, - -674.4328624957637, - -692.9690157139438, - -702.0861962874981, - -706.8470511265095, - -707.9563420783935, - -702.275314667477, - -685.8336514844417, - -655.9248190153359, - -612.5090501801152, - -561.1378720654285, - -513.6563846364681, - -482.2181055920841, - -479.9092349728847, - -515.8846412296065, - -589.7919128963141, - -693.0683650799324, - -808.2530060513299, - -916.6789369391798, - -990.9539560300077, - -1019.2078042999365, - -989.8667949167198, - -905.2946252163881, - -774.2978935281376, - -620.8279243093152, - -455.6469488749133, - -301.35168441235857, - -172.22755719945079, - -64.78779730925243, - 14.963530590139342, - 77.7688652091668, - 130.10881588751076, - 173.34702695685783, - 212.31779336759502, - 242.034298980885, - 256.26569218684244, - 251.75791947263704, - 224.9588476937078, - 178.12116197336167, - 117.5882608842833, - 54.916544046296906, - -2.7147614468579877, - -45.04116756390762, - -68.8321666374602, - -77.20929519526524, - -74.41983719645548, - -69.38080441290313, - -69.74384028852582, - -79.31928562466483, - -98.51818036715554, - -121.65286199226412, - -142.90513426946407, - -154.00409452387433, - -150.00482817716303, - -130.58568692775648, - -100.45079079321656, - -65.70455736954322, - -35.045574993168856, - -15.581177782969627, - -7.94424311971315, - -10.119570029555488, - -15.889174497305909, - -17.032762132189543, - -7.370656959741854, - 14.984901866869171, - 47.38467208831915, - 81.17337000817345, - 108.6648021511759, - 121.44807719755092, - 118.19733207519005, - 105.51847796981649, - 97.38868833223198, - 112.93580163541588, - 172.8048850664665, - 290.16266563721626, - 475.44830805886005, - 708.3691109402819, - 984.3338854596267, - 1262.823561857248, - 1502.6294464519638 - ], - "pressure:branch1_seg1:J54": [ - 194924.68225640626, - 207446.08749428627, - 211023.31070989536, - 200721.74627604603, - 182111.6325626872, - 158828.89512157705, - 133143.21825691796, - 104782.50148251037, - 83662.93419324448, - 63728.89770906151, - 44763.350509476375, - 30863.230735782705, - 14257.981198601716, - -743.4368706654413, - -15828.027101869848, - -32666.57583071366, - -45785.150619507775, - -58955.306499321865, - -68343.07576692326, - -73995.9841793991, - -78325.62509585406, - -79855.94625268942, - -80476.4191047023, - -80931.59210854098, - -80917.3569775143, - -80576.9955371976, - -79109.17745506657, - -75864.75550318266, - -70901.83733017197, - -64803.952656730275, - -58307.46337960475, - -53619.97462888519, - -52654.999076970875, - -55573.25992295017, - -63740.610602378954, - -75952.93518971016, - -90709.35362989083, - -103557.73564546261, - -114832.90248689386, - -119167.95848951528, - -116508.07151859673, - -107479.37567686869, - -92703.11416048539, - -73067.46113516521, - -53936.54139619843, - -35561.27368657152, - -18378.41799181927, - -6728.876644860362, - 2703.4901237335366, - 9910.197975955014, - 14920.520039721447, - 20349.502484594086, - 24540.89514190412, - 27768.23792001428, - 30477.701391455244, - 30130.295982224794, - 27290.610017093197, - 22014.80132102438, - 14906.030618691066, - 6424.625266518, - -310.0804991072617, - -5624.78054824449, - -9246.936887927413, - -9673.126926969035, - -9157.284289222976, - -8177.631699461433, - -7539.48974431132, - -8301.703557280023, - -10384.145292046976, - -13460.219198856894, - -16235.969122017725, - -18021.506742771395, - -18190.36667908374, - -16145.468558706538, - -12307.366740678151, - -7994.042631155038, - -4016.4504786814514, - -977.8489572113916, - -19.377238458682974, - -610.6367350608208, - -1534.310859716653, - -2242.6719160969765, - -1693.078531431291, - 698.6395912398102, - 4441.184752814274, - 9111.836210081521, - 12659.668896134293, - 14607.950280353209, - 14657.804202765645, - 12644.828907845913, - 10590.226739599213, - 10888.403700073583, - 15853.865718138655, - 27950.465123395792, - 47142.452553647025, - 75541.19167398263, - 106371.90737557237, - 139658.2171237449, - 172931.44153607427, - 194924.68225640626 - ], - "flow:J54:branch1_seg2": [ - 1502.6294464519638, - 1688.268511833476, - 1785.3625327389013, - 1787.0222566499608, - 1703.7186160692377, - 1551.2954123629083, - 1352.0747407276065, - 1134.600056980729, - 926.3167605650341, - 729.2751313656528, - 557.3063414743253, - 405.41589520727723, - 260.84856149107765, - 125.21173122038796, - -14.078810916833866, - -152.99416990729515, - -284.99929467211814, - -409.48003298504295, - -509.48968063962366, - -588.2535514529459, - -642.7134928796474, - -674.4328624957637, - -692.9690157139438, - -702.0861962874981, - -706.8470511265095, - -707.9563420783935, - -702.275314667477, - -685.8336514844417, - -655.9248190153359, - -612.5090501801152, - -561.1378720654285, - -513.6563846364681, - -482.2181055920841, - -479.9092349728847, - -515.8846412296065, - -589.7919128963141, - -693.0683650799324, - -808.2530060513299, - -916.6789369391798, - -990.9539560300077, - -1019.2078042999365, - -989.8667949167198, - -905.2946252163881, - -774.2978935281376, - -620.8279243093152, - -455.6469488749133, - -301.35168441235857, - -172.22755719945079, - -64.78779730925243, - 14.963530590139342, - 77.7688652091668, - 130.10881588751076, - 173.34702695685783, - 212.31779336759502, - 242.034298980885, - 256.26569218684244, - 251.75791947263704, - 224.9588476937078, - 178.12116197336167, - 117.5882608842833, - 54.916544046296906, - -2.7147614468579877, - -45.04116756390762, - -68.8321666374602, - -77.20929519526524, - -74.41983719645548, - -69.38080441290313, - -69.74384028852582, - -79.31928562466483, - -98.51818036715554, - -121.65286199226412, - -142.90513426946407, - -154.00409452387433, - -150.00482817716303, - -130.58568692775648, - -100.45079079321656, - -65.70455736954322, - -35.045574993168856, - -15.581177782969627, - -7.94424311971315, - -10.119570029555488, - -15.889174497305909, - -17.032762132189543, - -7.370656959741854, - 14.984901866869171, - 47.38467208831915, - 81.17337000817345, - 108.6648021511759, - 121.44807719755092, - 118.19733207519005, - 105.51847796981649, - 97.38868833223198, - 112.93580163541588, - 172.8048850664665, - 290.16266563721626, - 475.44830805886005, - 708.3691109402819, - 984.3338854596267, - 1262.823561857248, - 1502.6294464519638 - ], - "pressure:J54:branch1_seg2": [ - 194924.68225640626, - 207446.08749428627, - 211023.31070989536, - 200721.74627604603, - 182111.6325626872, - 158828.89512157705, - 133143.21825691796, - 104782.50148251037, - 83662.93419324448, - 63728.89770906151, - 44763.350509476375, - 30863.230735782705, - 14257.981198601716, - -743.4368706654413, - -15828.027101869848, - -32666.57583071366, - -45785.150619507775, - -58955.306499321865, - -68343.07576692326, - -73995.9841793991, - -78325.62509585406, - -79855.94625268942, - -80476.4191047023, - -80931.59210854098, - -80917.3569775143, - -80576.9955371976, - -79109.17745506657, - -75864.75550318266, - -70901.83733017197, - -64803.952656730275, - -58307.46337960475, - -53619.97462888519, - -52654.999076970875, - -55573.25992295017, - -63740.610602378954, - -75952.93518971016, - -90709.35362989083, - -103557.73564546261, - -114832.90248689386, - -119167.95848951528, - -116508.07151859673, - -107479.37567686869, - -92703.11416048539, - -73067.46113516521, - -53936.54139619843, - -35561.27368657152, - -18378.41799181927, - -6728.876644860362, - 2703.4901237335366, - 9910.197975955014, - 14920.520039721447, - 20349.502484594086, - 24540.89514190412, - 27768.23792001428, - 30477.701391455244, - 30130.295982224794, - 27290.610017093197, - 22014.80132102438, - 14906.030618691066, - 6424.625266518, - -310.0804991072617, - -5624.78054824449, - -9246.936887927413, - -9673.126926969035, - -9157.284289222976, - -8177.631699461433, - -7539.48974431132, - -8301.703557280023, - -10384.145292046976, - -13460.219198856894, - -16235.969122017725, - -18021.506742771395, - -18190.36667908374, - -16145.468558706538, - -12307.366740678151, - -7994.042631155038, - -4016.4504786814514, - -977.8489572113916, - -19.377238458682974, - -610.6367350608208, - -1534.310859716653, - -2242.6719160969765, - -1693.078531431291, - 698.6395912398102, - 4441.184752814274, - 9111.836210081521, - 12659.668896134293, - 14607.950280353209, - 14657.804202765645, - 12644.828907845913, - 10590.226739599213, - 10888.403700073583, - 15853.865718138655, - 27950.465123395792, - 47142.452553647025, - 75541.19167398263, - 106371.90737557237, - 139658.2171237449, - 172931.44153607427, - 194924.68225640626 - ], - "flow:branch3_seg0:J55": [ - 28.139942650999494, - 32.01013790167251, - 34.256205881318536, - 34.69000001189971, - 33.44246202305217, - 30.763549780689235, - 27.063381055169664, - 22.942254318323712, - 18.82073233040891, - 14.889954294756535, - 11.485183335129394, - 8.418503936480398, - 5.588067926495515, - 2.9356098915127222, - 0.214357179800253, - -2.431742657868085, - -5.037899835383992, - -7.505393478592226, - -9.515500468798594, - -11.139864364717154, - -12.290476064232253, - -12.983013259995984, - -13.394894257729312, - -13.596677025665324, - -13.695183304537347, - -13.72627211523719, - -13.636476699626419, - -13.35972355649367, - -12.832962210132136, - -12.044505249158403, - -11.073953770928204, - -10.134586878446774, - -9.44110559422066, - -9.266533797196052, - -9.796968579890713, - -11.076017272087125, - -12.938481240234015, - -15.154883483861438, - -17.298436161123167, - -18.888977725747658, - -19.65504342192992, - -19.33185001967761, - -17.903474796942195, - -15.539318073359095, - -12.656682179583516, - -9.476506187984292, - -6.426100186179516, - -3.8177273549138886, - -1.6254466999274289, - 0.025482123299959834, - 1.3014144676494164, - 2.358960849390895, - 3.2187132209929192, - 3.989177279990957, - 4.593066824518508, - 4.9287542319437305, - 4.921364999224973, - 4.49270829958586, - 3.660540387628835, - 2.5497314262559945, - 1.3309915767553975, - 0.16856786245241026, - -0.7060578580429713, - -1.25464192572576, - -1.486517129820652, - -1.471015752169936, - -1.3775928083152302, - -1.3565607764478713, - -1.5000253471628362, - -1.8308949339315541, - -2.2613328969679047, - -2.682536419313465, - -2.9429122306365785, - -2.9264131886829747, - -2.616596917683383, - -2.074184698727736, - -1.4180658819576546, - -0.8014163750977692, - -0.3759853072975159, - -0.1728052099495754, - -0.17463713405207842, - -0.2753464523233427, - -0.32041100929711164, - -0.18417359057437188, - 0.19484676039872056, - 0.7760838952664763, - 1.4295504340470557, - 2.001333436085797, - 2.3068777621823657, - 2.311176406237195, - 2.1026890078190896, - 1.9163644293656132, - 2.109788332092391, - 3.068833718038785, - 5.111074932580733, - 8.42759999607158, - 12.746280196440624, - 17.914959430200494, - 23.336483610941595, - 28.139942650999494 - ], - "pressure:branch3_seg0:J55": [ - 171687.38383418275, - 188816.38768057933, - 198292.98430905223, - 195781.09910330828, - 184238.01548128718, - 166147.53451308972, - 143807.0012709314, - 119124.3186243663, - 96064.37698718962, - 74964.02420522828, - 56644.39270850583, - 40473.13214627534, - 24526.514564232508, - 9657.237960717677, - -5839.905958647081, - -20680.949064792276, - -34738.083503908776, - -49004.51157218664, - -58996.74444151476, - -66423.92067864806, - -72291.2469215187, - -75076.32667415524, - -76707.52431878804, - -77574.97976966496, - -77782.53112765506, - -77825.13517757408, - -76974.64571213147, - -74775.64117612946, - -71057.8551892147, - -66057.52837393571, - -60192.22708755699, - -55129.00377272062, - -52386.78289004554, - -52882.90938245409, - -57761.61794125451, - -66987.44572475678, - -78748.7947175938, - -91594.44899705012, - -103376.52604534508, - -110430.85303333537, - -112070.3225225071, - -107475.55398832912, - -96729.49433587215, - -80598.84340101706, - -63655.456431783336, - -46158.52862879384, - -28465.945853766778, - -15355.914297769315, - -4352.430251745799, - 4186.204639316179, - 10000.507745511482, - 15947.30614762737, - 20609.399113441552, - 24193.372437215054, - 27355.439821315602, - 28482.489490079766, - 27335.02744443303, - 23880.941219678967, - 18262.231154765366, - 11312.559772934317, - 4352.475921854516, - -1818.3962870372814, - -5923.281617197411, - -8033.116509194722, - -8688.977669295582, - -8183.119587370717, - -7570.165974328759, - -7785.773744240678, - -9102.266052698626, - -11488.604317698326, - -14010.345357187436, - -16033.536161936148, - -17108.788600405383, - -16233.501137679332, - -13667.282005516721, - -10110.663915334453, - -6436.76153483045, - -3068.9408195669475, - -1190.884923239123, - -824.7245976430074, - -1183.0252935784856, - -1801.7070951637431, - -1772.1949402728396, - -419.7265822570902, - 2344.86509992132, - 6089.080544549428, - 9778.997951180627, - 12590.589074580765, - 13527.65004083167, - 12745.233544494673, - 11222.900863556562, - 10659.487953381553, - 13230.684750549386, - 21107.720863346127, - 35526.12196257519, - 58251.624322217554, - 84912.70769525637, - 113886.13884787796, - 146877.50084232457, - 171687.38383418275 - ], - "flow:J55:branch3_seg1": [ - 28.139942650999494, - 32.01013790167251, - 34.256205881318536, - 34.69000001189971, - 33.44246202305217, - 30.763549780689235, - 27.063381055169664, - 22.942254318323712, - 18.82073233040891, - 14.889954294756535, - 11.485183335129394, - 8.418503936480398, - 5.588067926495515, - 2.9356098915127222, - 0.214357179800253, - -2.431742657868085, - -5.037899835383992, - -7.505393478592226, - -9.515500468798594, - -11.139864364717154, - -12.290476064232253, - -12.983013259995984, - -13.394894257729312, - -13.596677025665324, - -13.695183304537347, - -13.72627211523719, - -13.636476699626419, - -13.35972355649367, - -12.832962210132136, - -12.044505249158403, - -11.073953770928204, - -10.134586878446774, - -9.44110559422066, - -9.266533797196052, - -9.796968579890713, - -11.076017272087125, - -12.938481240234015, - -15.154883483861438, - -17.298436161123167, - -18.888977725747658, - -19.65504342192992, - -19.33185001967761, - -17.903474796942195, - -15.539318073359095, - -12.656682179583516, - -9.476506187984292, - -6.426100186179516, - -3.8177273549138886, - -1.6254466999274289, - 0.025482123299959834, - 1.3014144676494164, - 2.358960849390895, - 3.2187132209929192, - 3.989177279990957, - 4.593066824518508, - 4.9287542319437305, - 4.921364999224973, - 4.49270829958586, - 3.660540387628835, - 2.5497314262559945, - 1.3309915767553975, - 0.16856786245241026, - -0.7060578580429713, - -1.25464192572576, - -1.486517129820652, - -1.471015752169936, - -1.3775928083152302, - -1.3565607764478713, - -1.5000253471628362, - -1.8308949339315541, - -2.2613328969679047, - -2.682536419313465, - -2.9429122306365785, - -2.9264131886829747, - -2.616596917683383, - -2.074184698727736, - -1.4180658819576546, - -0.8014163750977692, - -0.3759853072975159, - -0.1728052099495754, - -0.17463713405207842, - -0.2753464523233427, - -0.32041100929711164, - -0.18417359057437188, - 0.19484676039872056, - 0.7760838952664763, - 1.4295504340470557, - 2.001333436085797, - 2.3068777621823657, - 2.311176406237195, - 2.1026890078190896, - 1.9163644293656132, - 2.109788332092391, - 3.068833718038785, - 5.111074932580733, - 8.42759999607158, - 12.746280196440624, - 17.914959430200494, - 23.336483610941595, - 28.139942650999494 - ], - "pressure:J55:branch3_seg1": [ - 171687.38383418275, - 188816.38768057933, - 198292.98430905223, - 195781.09910330828, - 184238.01548128718, - 166147.53451308972, - 143807.0012709314, - 119124.3186243663, - 96064.37698718962, - 74964.02420522828, - 56644.39270850583, - 40473.13214627534, - 24526.514564232508, - 9657.237960717677, - -5839.905958647081, - -20680.949064792276, - -34738.083503908776, - -49004.51157218664, - -58996.74444151476, - -66423.92067864806, - -72291.2469215187, - -75076.32667415524, - -76707.52431878804, - -77574.97976966496, - -77782.53112765506, - -77825.13517757408, - -76974.64571213147, - -74775.64117612946, - -71057.8551892147, - -66057.52837393571, - -60192.22708755699, - -55129.00377272062, - -52386.78289004554, - -52882.90938245409, - -57761.61794125451, - -66987.44572475678, - -78748.7947175938, - -91594.44899705012, - -103376.52604534508, - -110430.85303333537, - -112070.3225225071, - -107475.55398832912, - -96729.49433587215, - -80598.84340101706, - -63655.456431783336, - -46158.52862879384, - -28465.945853766778, - -15355.914297769315, - -4352.430251745799, - 4186.204639316179, - 10000.507745511482, - 15947.30614762737, - 20609.399113441552, - 24193.372437215054, - 27355.439821315602, - 28482.489490079766, - 27335.02744443303, - 23880.941219678967, - 18262.231154765366, - 11312.559772934317, - 4352.475921854516, - -1818.3962870372814, - -5923.281617197411, - -8033.116509194722, - -8688.977669295582, - -8183.119587370717, - -7570.165974328759, - -7785.773744240678, - -9102.266052698626, - -11488.604317698326, - -14010.345357187436, - -16033.536161936148, - -17108.788600405383, - -16233.501137679332, - -13667.282005516721, - -10110.663915334453, - -6436.76153483045, - -3068.9408195669475, - -1190.884923239123, - -824.7245976430074, - -1183.0252935784856, - -1801.7070951637431, - -1772.1949402728396, - -419.7265822570902, - 2344.86509992132, - 6089.080544549428, - 9778.997951180627, - 12590.589074580765, - 13527.65004083167, - 12745.233544494673, - 11222.900863556562, - 10659.487953381553, - 13230.684750549386, - 21107.720863346127, - 35526.12196257519, - 58251.624322217554, - 84912.70769525637, - 113886.13884787796, - 146877.50084232457, - 171687.38383418275 - ], - "flow:branch3_seg1:J56": [ - 28.07127161928618, - 31.984228588954025, - 34.241819578845664, - 34.70919432193506, - 33.496830353602775, - 30.83111491401385, - 27.111183404435625, - 23.03079465682684, - 18.903870143578793, - 14.923541949258391, - 11.539528608337012, - 8.468249994140406, - 5.628785656035786, - 2.9893864751818384, - 0.24807457060516988, - -2.392851651142972, - -4.975952478951181, - -7.471652740428272, - -9.492704353131444, - -11.116845744804305, - -12.277180293009337, - -12.974301764825249, - -13.391022989744036, - -13.596099722437296, - -13.694509265085827, - -13.726528567943035, - -13.640955782858464, - -13.368728197655818, - -12.848519936594423, - -12.061162158708358, - -11.091347902406314, - -10.149048012545345, - -9.440235050027777, - -9.25729625854378, - -9.776972364807797, - -11.049649723351646, - -12.898204811652848, - -15.114838645561438, - -17.27348482865863, - -18.870509488085897, - -19.661360240243514, - -19.357637804076976, - -17.94588068549583, - -15.591279858246144, - -12.706904315362053, - -9.533733611519203, - -6.480289646134782, - -3.8579705110496083, - -1.6545764103167826, - 0.0035370070817640504, - 1.284507306531429, - 2.337126983804343, - 3.2048150251195286, - 3.9847480207963173, - 4.584158171463823, - 4.926905631673452, - 4.930358722634681, - 4.507737484773241, - 3.676452628585488, - 2.5732933761823844, - 1.3560771812217263, - 0.17502416194475284, - -0.6977782721390805, - -1.246411486590885, - -1.4881758709236668, - -1.4733481110750513, - -1.3780094822791469, - -1.3545117143923242, - -1.4941750448776419, - -1.8224918457697286, - -2.254531672830503, - -2.677140817254653, - -2.9416141765092982, - -2.9317081068087103, - -2.6269091126219033, - -2.0871542203873883, - -1.4283207244951104, - -0.8115139235421884, - -0.3801153035468, - -0.16987286428014575, - -0.17238387523436488, - -0.27471722852757485, - -0.3226982113345578, - -0.19066372506145385, - 0.18588868429683156, - 0.7640074071015714, - 1.417024676637269, - 1.9996972762507235, - 2.307806508715819, - 2.3131254585862955, - 2.1069972402403114, - 1.9151122367208477, - 2.0951936794965538, - 3.034667854526863, - 5.051929398065051, - 8.346033985123135, - 12.66302534530472, - 17.81824959117161, - 23.21975772898191, - 28.07127161928618 - ], - "pressure:branch3_seg1:J56": [ - 159455.5961453376, - 179688.6978863229, - 191254.5096495493, - 192352.05916996853, - 184270.67470724444, - 168602.630851227, - 147570.24202904908, - 124514.13472135959, - 101681.30173417923, - 79981.63389191874, - 61491.84016653208, - 44803.90279633152, - 29083.291704824675, - 14476.858849714392, - -750.5791052122698, - -15348.779692792563, - -29481.204421780094, - -43414.50982292045, - -54193.841313307355, - -62671.45157049986, - -68917.45954995007, - -72441.95699233818, - -74543.29893758826, - -75598.38651933147, - -76038.55265206595, - -76177.77100646026, - -75600.02832509046, - -73899.12636245995, - -70791.43138231005, - -66263.85650288103, - -60774.24375858568, - -55622.24976639745, - -52053.135654173195, - -51485.22323442666, - -54931.45722222263, - -62588.28192600745, - -73209.38882125361, - -85598.41613224059, - -97461.71196290625, - -105734.45866781904, - -109305.96806162894, - -106785.35243123322, - -98155.41256633178, - -84261.43376549143, - -68085.02376238751, - -50639.97216122685, - -33561.6372798174, - -19519.987464469425, - -7723.642278411026, - 1235.1904211050592, - 7912.396898004074, - 13747.692990938252, - 18501.698341133615, - 22583.819585987174, - 25836.895978447283, - 27507.770143676258, - 27190.085444196462, - 24536.66793117205, - 19654.232798510082, - 13334.87628733048, - 6558.835122730418, - 138.48871090785877, - -4446.1404258865, - -7195.642657168891, - -8337.10609499829, - -8128.99847380047, - -7576.129309131917, - -7547.169775504859, - -8474.179643771222, - -10450.94144128756, - -12870.831600359837, - -15104.381115650054, - -16453.259126542303, - -16162.136494444438, - -14226.253342799868, - -11086.039309123391, - -7446.561264899151, - -4060.4734038209735, - -1825.7175760289192, - -899.4394568158779, - -1016.0002654509444, - -1596.475958551314, - -1776.5077669393843, - -868.8401551528553, - 1406.1683628364158, - 4749.570293334467, - 8371.168946612712, - 11471.796947092862, - 12940.194059510839, - 12729.712151096863, - 11483.328388397158, - 10568.961069756779, - 12015.516105760124, - 17967.786745927937, - 30019.275385176923, - 49490.96735777665, - 74093.77090432697, - 102580.9698766679, - 133273.84021776044, - 159455.5961453376 - ], - "flow:J56:branch3_seg2": [ - 28.07127161928618, - 31.984228588954025, - 34.241819578845664, - 34.70919432193506, - 33.496830353602775, - 30.83111491401385, - 27.111183404435625, - 23.03079465682684, - 18.903870143578793, - 14.923541949258391, - 11.539528608337012, - 8.468249994140406, - 5.628785656035786, - 2.9893864751818384, - 0.24807457060516988, - -2.392851651142972, - -4.975952478951181, - -7.471652740428272, - -9.492704353131444, - -11.116845744804305, - -12.277180293009337, - -12.974301764825249, - -13.391022989744036, - -13.596099722437296, - -13.694509265085827, - -13.726528567943035, - -13.640955782858464, - -13.368728197655818, - -12.848519936594423, - -12.061162158708358, - -11.091347902406314, - -10.149048012545345, - -9.440235050027777, - -9.25729625854378, - -9.776972364807797, - -11.049649723351646, - -12.898204811652848, - -15.114838645561438, - -17.27348482865863, - -18.870509488085897, - -19.661360240243514, - -19.357637804076976, - -17.94588068549583, - -15.591279858246144, - -12.706904315362053, - -9.533733611519203, - -6.480289646134782, - -3.8579705110496083, - -1.6545764103167826, - 0.0035370070817640504, - 1.284507306531429, - 2.337126983804343, - 3.2048150251195286, - 3.9847480207963173, - 4.584158171463823, - 4.926905631673452, - 4.930358722634681, - 4.507737484773241, - 3.676452628585488, - 2.5732933761823844, - 1.3560771812217263, - 0.17502416194475284, - -0.6977782721390805, - -1.246411486590885, - -1.4881758709236668, - -1.4733481110750513, - -1.3780094822791469, - -1.3545117143923242, - -1.4941750448776419, - -1.8224918457697286, - -2.254531672830503, - -2.677140817254653, - -2.9416141765092982, - -2.9317081068087103, - -2.6269091126219033, - -2.0871542203873883, - -1.4283207244951104, - -0.8115139235421884, - -0.3801153035468, - -0.16987286428014575, - -0.17238387523436488, - -0.27471722852757485, - -0.3226982113345578, - -0.19066372506145385, - 0.18588868429683156, - 0.7640074071015714, - 1.417024676637269, - 1.9996972762507235, - 2.307806508715819, - 2.3131254585862955, - 2.1069972402403114, - 1.9151122367208477, - 2.0951936794965538, - 3.034667854526863, - 5.051929398065051, - 8.346033985123135, - 12.66302534530472, - 17.81824959117161, - 23.21975772898191, - 28.07127161928618 - ], - "pressure:J56:branch3_seg2": [ - 159455.5961453376, - 179688.6978863229, - 191254.5096495493, - 192352.05916996853, - 184270.67470724444, - 168602.630851227, - 147570.24202904908, - 124514.13472135959, - 101681.30173417923, - 79981.63389191874, - 61491.84016653208, - 44803.90279633152, - 29083.291704824675, - 14476.858849714392, - -750.5791052122698, - -15348.779692792563, - -29481.204421780094, - -43414.50982292045, - -54193.841313307355, - -62671.45157049986, - -68917.45954995007, - -72441.95699233818, - -74543.29893758826, - -75598.38651933147, - -76038.55265206595, - -76177.77100646026, - -75600.02832509046, - -73899.12636245995, - -70791.43138231005, - -66263.85650288103, - -60774.24375858568, - -55622.24976639745, - -52053.135654173195, - -51485.22323442666, - -54931.45722222263, - -62588.28192600745, - -73209.38882125361, - -85598.41613224059, - -97461.71196290625, - -105734.45866781904, - -109305.96806162894, - -106785.35243123322, - -98155.41256633178, - -84261.43376549143, - -68085.02376238751, - -50639.97216122685, - -33561.6372798174, - -19519.987464469425, - -7723.642278411026, - 1235.1904211050592, - 7912.396898004074, - 13747.692990938252, - 18501.698341133615, - 22583.819585987174, - 25836.895978447283, - 27507.770143676258, - 27190.085444196462, - 24536.66793117205, - 19654.232798510082, - 13334.87628733048, - 6558.835122730418, - 138.48871090785877, - -4446.1404258865, - -7195.642657168891, - -8337.10609499829, - -8128.99847380047, - -7576.129309131917, - -7547.169775504859, - -8474.179643771222, - -10450.94144128756, - -12870.831600359837, - -15104.381115650054, - -16453.259126542303, - -16162.136494444438, - -14226.253342799868, - -11086.039309123391, - -7446.561264899151, - -4060.4734038209735, - -1825.7175760289192, - -899.4394568158779, - -1016.0002654509444, - -1596.475958551314, - -1776.5077669393843, - -868.8401551528553, - 1406.1683628364158, - 4749.570293334467, - 8371.168946612712, - 11471.796947092862, - 12940.194059510839, - 12729.712151096863, - 11483.328388397158, - 10568.961069756779, - 12015.516105760124, - 17967.786745927937, - 30019.275385176923, - 49490.96735777665, - 74093.77090432697, - 102580.9698766679, - 133273.84021776044, - 159455.5961453376 - ], - "flow:branch9_seg0:J57": [ - 16.199716989531076, - 19.227744996861816, - 21.602388276277217, - 23.118149685729318, - 23.68260384899556, - 23.311593424754204, - 22.13155307379357, - 20.37861341965913, - 18.28604807811289, - 16.01533998509598, - 13.761988458964, - 11.547190228790786, - 9.38364483124855, - 7.2628412286359945, - 5.115644810696165, - 2.9781765615096862, - 0.8458363114653723, - -1.2102604783243422, - -3.080142350112905, - -4.740454695386804, - -6.1216128483361265, - -7.220811991645319, - -8.083625910126896, - -8.74472973129151, - -9.259221180265216, - -9.653222679997583, - -9.9216327082012, - -10.04304617384177, - -9.98835878460808, - -9.746058831112538, - -9.343554516361236, - -8.869391578122453, - -8.43439374888982, - -8.187617752900916, - -8.25616785418552, - -8.713684279269588, - -9.546173907134266, - -10.673052982208121, - -11.91196228482424, - -13.035314018447881, - -13.846941299316635, - -14.161352833370211, - -13.889474245952993, - -13.04196588501198, - -11.739208804229184, - -10.090040071847714, - -8.311234446077377, - -6.56181160022637, - -4.919825273384805, - -3.4813981154097893, - -2.219493384075668, - -1.1072228809997924, - -0.13121271255893577, - 0.7512378682834846, - 1.5103357693581705, - 2.105375555656607, - 2.4921906000808445, - 2.622689821433504, - 2.4867932239783324, - 2.1195292580704512, - 1.593884369958605, - 0.9973594487344709, - 0.4433919836718184, - -0.006110702853414507, - -0.3166730919376019, - -0.4964530432202893, - -0.6002374499710392, - -0.6933638865936637, - -0.8313581158234159, - -1.0431390899526776, - -1.3116821587648797, - -1.5968903277997115, - -1.8271719748359743, - -1.9405087744084832, - -1.9047756387950037, - -1.7247693945215217, - -1.4401431797360904, - -1.1196170728321408, - -0.8396628083111171, - -0.6387942541468791, - -0.5338230292185038, - -0.4947251114539516, - -0.46062726537278015, - -0.36770084293925914, - -0.1703708366475987, - 0.1363270197736181, - 0.5108492514741957, - 0.8847376946927781, - 1.1705278282817397, - 1.3227716745833014, - 1.3510388205654893, - 1.341544255449731, - 1.454278059521125, - 1.889142130654084, - 2.8459127639125747, - 4.4711118279747115, - 6.748532955371775, - 9.657094578326708, - 12.92440712235588, - 16.199716989531076 - ], - "pressure:branch9_seg0:J57": [ - 120662.6830017537, - 139004.86215708638, - 152545.9124442192, - 158948.59081019554, - 159003.20725611952, - 153360.30261954563, - 142986.67123106166, - 129010.03975622536, - 114317.11744681215, - 98886.92963205282, - 83709.18263514325, - 69323.69051001678, - 54809.18266126375, - 40671.67975393884, - 26272.318617479385, - 11888.74425034032, - -2167.550529945395, - -15734.405395507305, - -27395.548667962787, - -37460.802092245576, - -45829.41683397201, - -52105.01761547033, - -57048.001999989596, - -60852.36121887737, - -63762.775218886156, - -65994.42027075443, - -67292.22902161293, - -67479.26265410896, - -66394.77888208358, - -64127.99748691551, - -60882.47427892539, - -57613.07610319829, - -55181.03080953732, - -54393.10226319495, - -56196.9401545977, - -60800.26583860496, - -67695.19408219014, - -76005.94365825388, - -84496.1612441774, - -91179.92795092349, - -95016.00426213781, - -95130.56379333994, - -91054.1655246413, - -83109.96171038807, - -73060.78709704657, - -61193.163844092036, - -48698.04384642656, - -37542.51090764829, - -27109.47622657365, - -18123.742622899463, - -10519.968763581921, - -3376.663857859698, - 2668.788505473902, - 8062.646541014311, - 12779.917882159598, - 16016.070410603916, - 17702.347959910534, - 17611.56135234981, - 15745.772085574758, - 12444.63678478497, - 8521.472576770442, - 4478.374701109804, - 1000.3738581824965, - -1474.577137665731, - -3043.3277695286856, - -3847.6773491266204, - -4339.784026221743, - -5034.967548915486, - -6206.734751677427, - -7933.884668529839, - -9862.244382797213, - -11690.516114334472, - -12969.593006801893, - -13187.339062909725, - -12338.894037258353, - -10643.025576941096, - -8503.51785075365, - -6272.44555699525, - -4670.619852114519, - -3735.1020242716454, - -3315.7910104450148, - -3212.5689870034885, - -2900.346151716987, - -1955.8483969816489, - -212.02154619824154, - 2238.9731310984553, - 4878.368141388854, - 7218.444328869986, - 8720.582595144202, - 9183.254551533753, - 8993.43263499616, - 9035.98942290142, - 10585.309918472358, - 15073.651307652799, - 23673.860005105485, - 37455.580314865445, - 54947.68500446677, - 76023.58327376975, - 99692.06532457564, - 120662.6830017537 - ], - "flow:J57:branch9_seg1": [ - 16.199716989531076, - 19.227744996861816, - 21.602388276277217, - 23.118149685729318, - 23.68260384899556, - 23.311593424754204, - 22.13155307379357, - 20.37861341965913, - 18.28604807811289, - 16.01533998509598, - 13.761988458964, - 11.547190228790786, - 9.38364483124855, - 7.2628412286359945, - 5.115644810696165, - 2.9781765615096862, - 0.8458363114653723, - -1.2102604783243422, - -3.080142350112905, - -4.740454695386804, - -6.1216128483361265, - -7.220811991645319, - -8.083625910126896, - -8.74472973129151, - -9.259221180265216, - -9.653222679997583, - -9.9216327082012, - -10.04304617384177, - -9.98835878460808, - -9.746058831112538, - -9.343554516361236, - -8.869391578122453, - -8.43439374888982, - -8.187617752900916, - -8.25616785418552, - -8.713684279269588, - -9.546173907134266, - -10.673052982208121, - -11.91196228482424, - -13.035314018447881, - -13.846941299316635, - -14.161352833370211, - -13.889474245952993, - -13.04196588501198, - -11.739208804229184, - -10.090040071847714, - -8.311234446077377, - -6.56181160022637, - -4.919825273384805, - -3.4813981154097893, - -2.219493384075668, - -1.1072228809997924, - -0.13121271255893577, - 0.7512378682834846, - 1.5103357693581705, - 2.105375555656607, - 2.4921906000808445, - 2.622689821433504, - 2.4867932239783324, - 2.1195292580704512, - 1.593884369958605, - 0.9973594487344709, - 0.4433919836718184, - -0.006110702853414507, - -0.3166730919376019, - -0.4964530432202893, - -0.6002374499710392, - -0.6933638865936637, - -0.8313581158234159, - -1.0431390899526776, - -1.3116821587648797, - -1.5968903277997115, - -1.8271719748359743, - -1.9405087744084832, - -1.9047756387950037, - -1.7247693945215217, - -1.4401431797360904, - -1.1196170728321408, - -0.8396628083111171, - -0.6387942541468791, - -0.5338230292185038, - -0.4947251114539516, - -0.46062726537278015, - -0.36770084293925914, - -0.1703708366475987, - 0.1363270197736181, - 0.5108492514741957, - 0.8847376946927781, - 1.1705278282817397, - 1.3227716745833014, - 1.3510388205654893, - 1.341544255449731, - 1.454278059521125, - 1.889142130654084, - 2.8459127639125747, - 4.4711118279747115, - 6.748532955371775, - 9.657094578326708, - 12.92440712235588, - 16.199716989531076 - ], - "pressure:J57:branch9_seg1": [ - 120662.6830017537, - 139004.86215708638, - 152545.9124442192, - 158948.59081019554, - 159003.20725611952, - 153360.30261954563, - 142986.67123106166, - 129010.03975622536, - 114317.11744681215, - 98886.92963205282, - 83709.18263514325, - 69323.69051001678, - 54809.18266126375, - 40671.67975393884, - 26272.318617479385, - 11888.74425034032, - -2167.550529945395, - -15734.405395507305, - -27395.548667962787, - -37460.802092245576, - -45829.41683397201, - -52105.01761547033, - -57048.001999989596, - -60852.36121887737, - -63762.775218886156, - -65994.42027075443, - -67292.22902161293, - -67479.26265410896, - -66394.77888208358, - -64127.99748691551, - -60882.47427892539, - -57613.07610319829, - -55181.03080953732, - -54393.10226319495, - -56196.9401545977, - -60800.26583860496, - -67695.19408219014, - -76005.94365825388, - -84496.1612441774, - -91179.92795092349, - -95016.00426213781, - -95130.56379333994, - -91054.1655246413, - -83109.96171038807, - -73060.78709704657, - -61193.163844092036, - -48698.04384642656, - -37542.51090764829, - -27109.47622657365, - -18123.742622899463, - -10519.968763581921, - -3376.663857859698, - 2668.788505473902, - 8062.646541014311, - 12779.917882159598, - 16016.070410603916, - 17702.347959910534, - 17611.56135234981, - 15745.772085574758, - 12444.63678478497, - 8521.472576770442, - 4478.374701109804, - 1000.3738581824965, - -1474.577137665731, - -3043.3277695286856, - -3847.6773491266204, - -4339.784026221743, - -5034.967548915486, - -6206.734751677427, - -7933.884668529839, - -9862.244382797213, - -11690.516114334472, - -12969.593006801893, - -13187.339062909725, - -12338.894037258353, - -10643.025576941096, - -8503.51785075365, - -6272.44555699525, - -4670.619852114519, - -3735.1020242716454, - -3315.7910104450148, - -3212.5689870034885, - -2900.346151716987, - -1955.8483969816489, - -212.02154619824154, - 2238.9731310984553, - 4878.368141388854, - 7218.444328869986, - 8720.582595144202, - 9183.254551533753, - 8993.43263499616, - 9035.98942290142, - 10585.309918472358, - 15073.651307652799, - 23673.860005105485, - 37455.580314865445, - 54947.68500446677, - 76023.58327376975, - 99692.06532457564, - 120662.6830017537 - ], - "flow:branch9_seg1:J58": [ - 16.167285115490618, - 19.20280626220384, - 21.585684390439138, - 23.112631170618837, - 23.689074164073897, - 23.3258044461202, - 22.148695809359875, - 20.406415499765686, - 18.309966034023727, - 16.0354030103365, - 13.786899026395902, - 11.56836400995616, - 9.405050838833652, - 7.285247399659662, - 5.134200325203667, - 3.0003806545336693, - 0.8686571039065044, - -1.1938205666343755, - -3.0631188961723903, - -4.725945286797896, - -6.110949737494638, - -7.21162586795419, - -8.077109176031037, - -8.739663584046504, - -9.254967620978894, - -9.650407818950917, - -9.920420115992583, - -10.043743253312268, - -9.991485721810271, - -9.750614560281036, - -9.349210662475326, - -8.874498393271615, - -8.43653875619441, - -8.186679582695248, - -8.251293283741697, - -8.705556810392507, - -9.533067423743999, - -10.660531397780897, - -11.900960755015577, - -13.026452536516185, - -13.844668197406126, - -14.164467565088037, - -13.898284461943087, - -13.054296456441898, - -11.756175176920056, - -10.109643810277081, - -8.329378902880777, - -6.579617394273296, - -4.934657056386456, - -3.494463255573937, - -2.231709029041447, - -1.1181860158113848, - -0.1402952096569953, - 0.7435217014954227, - 1.503486640373294, - 2.1013804388712116, - 2.4912541724252812, - 2.6246119019905922, - 2.490446911644397, - 2.126290674751032, - 1.6002928171917516, - 1.0013836387021882, - 0.44844499137786703, - -0.0027812906940646405, - -0.3154381202246562, - -0.4954546332482874, - -0.599299845831567, - -0.6920488120054705, - -0.8291787950485715, - -1.040437915936274, - -1.3087030806070297, - -1.5941554209191011, - -1.825947472550347, - -1.9408782779785612, - -1.9068917753463561, - -1.7281504857782266, - -1.4438396602182575, - -1.1231097194503747, - -0.8417508348911158, - -0.6395843761457324, - -0.5340208910789592, - -0.4949916436208361, - -0.46157280832076997, - -0.36991720130747474, - -0.17348787337398938, - 0.13193629586010705, - 0.5068313166725855, - 0.8826980659397342, - 1.1689169605395855, - 1.3224361483290121, - 1.3514378906940745, - 1.3407624381514047, - 1.4501351024411377, - 1.8795804606120916, - 2.828991659852377, - 4.448053052851716, - 6.719060091816814, - 9.619120342315002, - 12.887229265969367, - 16.167285115490618 - ], - "pressure:branch9_seg1:J58": [ - 114240.96246576688, - 132973.11408897451, - 147216.18891231055, - 154878.6942629377, - 156308.26443061544, - 151902.02488286415, - 142595.62592276206, - 129675.16137823675, - 115366.33843657578, - 100281.611113271, - 85410.21041431, - 71062.6601669218, - 56813.64957350967, - 42875.42100541054, - 28689.89264071946, - 14628.484957939836, - 712.1187376923483, - -12761.925597757496, - -24476.303560313998, - -34758.72965127507, - -43327.59878623363, - -49871.30337049116, - -55045.379427843225, - -59010.530315003554, - -62060.657516239065, - -64412.54849025155, - -65873.78367996527, - -66289.44928393808, - -65491.40425010773, - -63498.29305118581, - -60505.835916395605, - -57312.72806729399, - -54739.817995176934, - -53635.827520925755, - -54920.16897253872, - -58899.90395624132, - -65186.632912795176, - -73122.34651878312, - -81416.7434285516, - -88296.36989531585, - -92666.84970364452, - -93495.3798390714, - -90303.67837284626, - -83266.48427998679, - -73917.75717391103, - -62555.544106051064, - -50423.01067785179, - -39288.20905352659, - -28799.392978055723, - -19722.391182004932, - -11961.635654930107, - -4796.023048932625, - 1335.1451444718798, - 6813.712089521679, - 11602.53490280461, - 15069.002550781639, - 17059.71822894469, - 17328.475799427073, - 15834.101836717153, - 12901.763243111944, - 9159.43683114966, - 5186.401204417173, - 1701.1375867235452, - -938.3259019431697, - -2668.5013905422575, - -3596.587624543934, - -4150.969067390049, - -4808.829357127861, - -5870.976607237407, - -7465.072443724744, - -9308.130295525221, - -11133.13487715956, - -12499.450766923916, - -12909.424983905366, - -12298.262802019812, - -10810.519295152322, - -8794.9478197975, - -6621.524537195745, - -4937.909722272862, - -3872.4932037587214, - -3351.593188149786, - -3196.9169400805467, - -2924.934645405397, - -2117.351473479077, - -552.1074955134808, - 1711.9595876459546, - 4274.775238554803, - 6647.310785845293, - 8263.130002289286, - 8920.994953448613, - 8866.119968726853, - 8865.123710342941, - 10093.567985778462, - 13932.56054178384, - 21578.674344395677, - 34129.20523732224, - 50473.17325896896, - 70523.22589642396, - 93299.69622543942, - 114240.96246576688 - ], - "flow:J58:branch9_seg2": [ - 16.167285115490618, - 19.20280626220384, - 21.585684390439138, - 23.112631170618837, - 23.689074164073897, - 23.3258044461202, - 22.148695809359875, - 20.406415499765686, - 18.309966034023727, - 16.0354030103365, - 13.786899026395902, - 11.56836400995616, - 9.405050838833652, - 7.285247399659662, - 5.134200325203667, - 3.0003806545336693, - 0.8686571039065044, - -1.1938205666343755, - -3.0631188961723903, - -4.725945286797896, - -6.110949737494638, - -7.21162586795419, - -8.077109176031037, - -8.739663584046504, - -9.254967620978894, - -9.650407818950917, - -9.920420115992583, - -10.043743253312268, - -9.991485721810271, - -9.750614560281036, - -9.349210662475326, - -8.874498393271615, - -8.43653875619441, - -8.186679582695248, - -8.251293283741697, - -8.705556810392507, - -9.533067423743999, - -10.660531397780897, - -11.900960755015577, - -13.026452536516185, - -13.844668197406126, - -14.164467565088037, - -13.898284461943087, - -13.054296456441898, - -11.756175176920056, - -10.109643810277081, - -8.329378902880777, - -6.579617394273296, - -4.934657056386456, - -3.494463255573937, - -2.231709029041447, - -1.1181860158113848, - -0.1402952096569953, - 0.7435217014954227, - 1.503486640373294, - 2.1013804388712116, - 2.4912541724252812, - 2.6246119019905922, - 2.490446911644397, - 2.126290674751032, - 1.6002928171917516, - 1.0013836387021882, - 0.44844499137786703, - -0.0027812906940646405, - -0.3154381202246562, - -0.4954546332482874, - -0.599299845831567, - -0.6920488120054705, - -0.8291787950485715, - -1.040437915936274, - -1.3087030806070297, - -1.5941554209191011, - -1.825947472550347, - -1.9408782779785612, - -1.9068917753463561, - -1.7281504857782266, - -1.4438396602182575, - -1.1231097194503747, - -0.8417508348911158, - -0.6395843761457324, - -0.5340208910789592, - -0.4949916436208361, - -0.46157280832076997, - -0.36991720130747474, - -0.17348787337398938, - 0.13193629586010705, - 0.5068313166725855, - 0.8826980659397342, - 1.1689169605395855, - 1.3224361483290121, - 1.3514378906940745, - 1.3407624381514047, - 1.4501351024411377, - 1.8795804606120916, - 2.828991659852377, - 4.448053052851716, - 6.719060091816814, - 9.619120342315002, - 12.887229265969367, - 16.167285115490618 - ], - "pressure:J58:branch9_seg2": [ - 114240.96246576688, - 132973.11408897451, - 147216.18891231055, - 154878.6942629377, - 156308.26443061544, - 151902.02488286415, - 142595.62592276206, - 129675.16137823675, - 115366.33843657578, - 100281.611113271, - 85410.21041431, - 71062.6601669218, - 56813.64957350967, - 42875.42100541054, - 28689.89264071946, - 14628.484957939836, - 712.1187376923483, - -12761.925597757496, - -24476.303560313998, - -34758.72965127507, - -43327.59878623363, - -49871.30337049116, - -55045.379427843225, - -59010.530315003554, - -62060.657516239065, - -64412.54849025155, - -65873.78367996527, - -66289.44928393808, - -65491.40425010773, - -63498.29305118581, - -60505.835916395605, - -57312.72806729399, - -54739.817995176934, - -53635.827520925755, - -54920.16897253872, - -58899.90395624132, - -65186.632912795176, - -73122.34651878312, - -81416.7434285516, - -88296.36989531585, - -92666.84970364452, - -93495.3798390714, - -90303.67837284626, - -83266.48427998679, - -73917.75717391103, - -62555.544106051064, - -50423.01067785179, - -39288.20905352659, - -28799.392978055723, - -19722.391182004932, - -11961.635654930107, - -4796.023048932625, - 1335.1451444718798, - 6813.712089521679, - 11602.53490280461, - 15069.002550781639, - 17059.71822894469, - 17328.475799427073, - 15834.101836717153, - 12901.763243111944, - 9159.43683114966, - 5186.401204417173, - 1701.1375867235452, - -938.3259019431697, - -2668.5013905422575, - -3596.587624543934, - -4150.969067390049, - -4808.829357127861, - -5870.976607237407, - -7465.072443724744, - -9308.130295525221, - -11133.13487715956, - -12499.450766923916, - -12909.424983905366, - -12298.262802019812, - -10810.519295152322, - -8794.9478197975, - -6621.524537195745, - -4937.909722272862, - -3872.4932037587214, - -3351.593188149786, - -3196.9169400805467, - -2924.934645405397, - -2117.351473479077, - -552.1074955134808, - 1711.9595876459546, - 4274.775238554803, - 6647.310785845293, - 8263.130002289286, - 8920.994953448613, - 8866.119968726853, - 8865.123710342941, - 10093.567985778462, - 13932.56054178384, - 21578.674344395677, - 34129.20523732224, - 50473.17325896896, - 70523.22589642396, - 93299.69622543942, - 114240.96246576688 - ], - "flow:branch28_seg0:J59": [ - 14.557046903700774, - 17.745844754938453, - 20.492113192787357, - 22.54877472777277, - 23.73728053632028, - 23.99763833469178, - 23.390147482013788, - 22.09469972079295, - 20.289198794259253, - 18.18115058942926, - 15.962908767357614, - 13.70220551245207, - 11.465382269639488, - 9.249735189815635, - 7.020358349407427, - 4.796796224034443, - 2.566220736216167, - 0.3872137119102033, - -1.6568879586161767, - -3.5213435075472463, - -5.133588222822229, - -6.475189901665792, - -7.56156828916187, - -8.419854335445583, - -9.098040194065582, - -9.62787791928446, - -10.019853334926335, - -10.263870500744307, - -10.33712901954827, - -10.222043563446778, - -9.932296499770734, - -9.524605995558382, - -9.092150992049604, - -8.76918308651362, - -8.683130045502566, - -8.932895509551686, - -9.548177052202103, - -10.496046240607829, - -11.638927931257914, - -12.792514004417805, - -13.758110238062839, - -14.336948627645604, - -14.402946507315942, - -13.91116453004729, - -12.912247293452292, - -11.497391339946123, - -9.843118843534247, - -8.100270477544138, - -6.390791787350228, - -4.818827255809304, - -3.401329558551166, - -2.1411959820152706, - -1.0197371331321965, - -0.010438174837396388, - 0.8740793334131914, - 1.6114902654117251, - 2.1575491434052063, - 2.465954475311253, - 2.5130523124296302, - 2.3133830712841945, - 1.9115184991013536, - 1.3866489001015694, - 0.8412846712060253, - 0.34634351669651187, - -0.04037922965164565, - -0.3047997132099923, - -0.47645220428258517, - -0.605360772984414, - -0.7462295724535574, - -0.9380378259714323, - -1.1855867013538153, - -1.4649256813059355, - -1.720799205080607, - -1.8949741961522086, - -1.9433995914139472, - -1.8514306392825524, - -1.6383674058358526, - -1.3573730651684188, - -1.072465104396797, - -0.8358743622146024, - -0.6792810763690071, - -0.593435745702757, - -0.5377653945921682, - -0.456686170281939, - -0.29912280089454046, - -0.043866801667332984, - 0.29404232431954946, - 0.6629300749771934, - 0.9866659284897035, - 1.210734706391109, - 1.3161146388448384, - 1.3500681844354088, - 1.4318468037840517, - 1.7330019374132883, - 2.4471406397912383, - 3.737306142257025, - 5.668439708044599, - 8.247726440912393, - 11.294443629341027, - 14.557046903700774 - ], - "pressure:branch28_seg0:J59": [ - 97112.1450268309, - 116165.77855088304, - 131909.6667492476, - 142690.6921507966, - 147933.0736775196, - 147518.63267178662, - 141986.38044856628, - 132538.07167641382, - 120571.30819483697, - 107080.0445836719, - 93249.36024579813, - 79371.6815764055, - 65580.7190700417, - 51979.968151866175, - 38194.48366974533, - 24493.458803028592, - 10826.349849158769, - -2515.256708680901, - -14682.425439546014, - -25649.457151187926, - -35039.3730549044, - -42656.207510139335, - -48804.12139740123, - -53632.78817866391, - -57428.72813904223, - -60390.75299164268, - -62488.19947240177, - -63627.57991179083, - -63665.642623411666, - -62540.78194068667, - -60382.09079256677, - -57696.890814420076, - -55126.2206516552, - -53503.31299713847, - -53636.70558168921, - -56018.15533550567, - -60614.49269143177, - -67082.8036884057, - -74436.23726401303, - -81319.29564665938, - -86610.77508728048, - -89157.54556920454, - -88307.18127858875, - -83946.30885407893, - -76809.49158806681, - -67344.35114933367, - -56664.52688874912, - -45975.88203148736, - -35611.554363379284, - -26263.36772248027, - -17957.04956340543, - -10460.252725598431, - -3861.4932727116975, - 2073.917849276968, - 7263.595456618017, - 11410.040410260444, - 14287.157652510457, - 15623.971401129285, - 15318.15627949246, - 13550.132929390302, - 10707.701228872147, - 7286.822464097712, - 3966.2504139453854, - 1124.508199227843, - -997.1861030306359, - -2365.7895723318375, - -3252.4231377105652, - -4014.224150822133, - -4962.308363637122, - -6290.404546697346, - -7915.271284754147, - -9649.60284225318, - -11126.758923557167, - -11948.528103780369, - -11925.049466404505, - -11052.514287250631, - -9525.549869541963, - -7683.311320457317, - -5995.858468255557, - -4704.819540718073, - -3911.831171421402, - -3513.454420876722, - -3184.0392748156437, - -2565.259957475181, - -1384.2710641846436, - 415.2811581589901, - 2633.299286409529, - 4906.400094361198, - 6729.108844598834, - 7831.864570965351, - 8234.857766074005, - 8388.416576472911, - 9171.644019269914, - 11734.523736202178, - 17245.300740572264, - 26723.870956729814, - 40021.45259835885, - 57139.46354464874, - 77020.65015989685, - 97112.1450268309 - ], - "flow:J59:branch28_seg1": [ - 14.557046903700774, - 17.745844754938453, - 20.492113192787357, - 22.54877472777277, - 23.73728053632028, - 23.99763833469178, - 23.390147482013788, - 22.09469972079295, - 20.289198794259253, - 18.18115058942926, - 15.962908767357614, - 13.70220551245207, - 11.465382269639488, - 9.249735189815635, - 7.020358349407427, - 4.796796224034443, - 2.566220736216167, - 0.3872137119102033, - -1.6568879586161767, - -3.5213435075472463, - -5.133588222822229, - -6.475189901665792, - -7.56156828916187, - -8.419854335445583, - -9.098040194065582, - -9.62787791928446, - -10.019853334926335, - -10.263870500744307, - -10.33712901954827, - -10.222043563446778, - -9.932296499770734, - -9.524605995558382, - -9.092150992049604, - -8.76918308651362, - -8.683130045502566, - -8.932895509551686, - -9.548177052202103, - -10.496046240607829, - -11.638927931257914, - -12.792514004417805, - -13.758110238062839, - -14.336948627645604, - -14.402946507315942, - -13.91116453004729, - -12.912247293452292, - -11.497391339946123, - -9.843118843534247, - -8.100270477544138, - -6.390791787350228, - -4.818827255809304, - -3.401329558551166, - -2.1411959820152706, - -1.0197371331321965, - -0.010438174837396388, - 0.8740793334131914, - 1.6114902654117251, - 2.1575491434052063, - 2.465954475311253, - 2.5130523124296302, - 2.3133830712841945, - 1.9115184991013536, - 1.3866489001015694, - 0.8412846712060253, - 0.34634351669651187, - -0.04037922965164565, - -0.3047997132099923, - -0.47645220428258517, - -0.605360772984414, - -0.7462295724535574, - -0.9380378259714323, - -1.1855867013538153, - -1.4649256813059355, - -1.720799205080607, - -1.8949741961522086, - -1.9433995914139472, - -1.8514306392825524, - -1.6383674058358526, - -1.3573730651684188, - -1.072465104396797, - -0.8358743622146024, - -0.6792810763690071, - -0.593435745702757, - -0.5377653945921682, - -0.456686170281939, - -0.29912280089454046, - -0.043866801667332984, - 0.29404232431954946, - 0.6629300749771934, - 0.9866659284897035, - 1.210734706391109, - 1.3161146388448384, - 1.3500681844354088, - 1.4318468037840517, - 1.7330019374132883, - 2.4471406397912383, - 3.737306142257025, - 5.668439708044599, - 8.247726440912393, - 11.294443629341027, - 14.557046903700774 - ], - "pressure:J59:branch28_seg1": [ - 97112.1450268309, - 116165.77855088304, - 131909.6667492476, - 142690.6921507966, - 147933.0736775196, - 147518.63267178662, - 141986.38044856628, - 132538.07167641382, - 120571.30819483697, - 107080.0445836719, - 93249.36024579813, - 79371.6815764055, - 65580.7190700417, - 51979.968151866175, - 38194.48366974533, - 24493.458803028592, - 10826.349849158769, - -2515.256708680901, - -14682.425439546014, - -25649.457151187926, - -35039.3730549044, - -42656.207510139335, - -48804.12139740123, - -53632.78817866391, - -57428.72813904223, - -60390.75299164268, - -62488.19947240177, - -63627.57991179083, - -63665.642623411666, - -62540.78194068667, - -60382.09079256677, - -57696.890814420076, - -55126.2206516552, - -53503.31299713847, - -53636.70558168921, - -56018.15533550567, - -60614.49269143177, - -67082.8036884057, - -74436.23726401303, - -81319.29564665938, - -86610.77508728048, - -89157.54556920454, - -88307.18127858875, - -83946.30885407893, - -76809.49158806681, - -67344.35114933367, - -56664.52688874912, - -45975.88203148736, - -35611.554363379284, - -26263.36772248027, - -17957.04956340543, - -10460.252725598431, - -3861.4932727116975, - 2073.917849276968, - 7263.595456618017, - 11410.040410260444, - 14287.157652510457, - 15623.971401129285, - 15318.15627949246, - 13550.132929390302, - 10707.701228872147, - 7286.822464097712, - 3966.2504139453854, - 1124.508199227843, - -997.1861030306359, - -2365.7895723318375, - -3252.4231377105652, - -4014.224150822133, - -4962.308363637122, - -6290.404546697346, - -7915.271284754147, - -9649.60284225318, - -11126.758923557167, - -11948.528103780369, - -11925.049466404505, - -11052.514287250631, - -9525.549869541963, - -7683.311320457317, - -5995.858468255557, - -4704.819540718073, - -3911.831171421402, - -3513.454420876722, - -3184.0392748156437, - -2565.259957475181, - -1384.2710641846436, - 415.2811581589901, - 2633.299286409529, - 4906.400094361198, - 6729.108844598834, - 7831.864570965351, - 8234.857766074005, - 8388.416576472911, - 9171.644019269914, - 11734.523736202178, - 17245.300740572264, - 26723.870956729814, - 40021.45259835885, - 57139.46354464874, - 77020.65015989685, - 97112.1450268309 - ], - "flow:branch28_seg1:J60": [ - 14.5522253265971, - 17.741653138393296, - 20.48879587209685, - 22.546837273033145, - 23.73682218630941, - 23.99839824188582, - 23.39182216650738, - 22.09750648475415, - 20.292255991541506, - 18.184251077260818, - 15.966302178360737, - 13.705436715911521, - 11.468620161035206, - 9.253026966704104, - 7.02351184664028, - 4.800088418044384, - 2.5695416446513533, - 0.39024151500255067, - -1.6540690145460055, - -3.5188830763174965, - -5.131532234179561, - -6.47351784687802, - -7.5602604246156, - -8.418824206536533, - -9.097228131475843, - -9.627262794383835, - -10.019457829605185, - -10.263727362036933, - -10.337283060418123, - -10.22244209137315, - -9.932918088649071, - -9.52527537450757, - -9.09264237818788, - -8.769384553881357, - -8.682859543685252, - -8.932098306326653, - -9.546811880892086, - -10.49439478969995, - -11.637204453843117, - -12.79097747365742, - -13.75716867806242, - -14.336707049528888, - -14.4035568003365, - -13.912579014063896, - -12.91428340228325, - -11.499871981874973, - -9.845802992020054, - -8.102863768748742, - -6.393188060465534, - -4.820986503134058, - -3.4032228730101264, - -2.142945551193969, - -1.0212450896924166, - -0.011743583821317696, - 0.8729180099691511, - 1.610637775524807, - 2.157055433293761, - 2.4658327965619646, - 2.513279791072899, - 2.313980127804184, - 1.9122848434708422, - 1.3873936424667133, - 0.8420562696570018, - 0.34695096479042253, - -0.03998123206775004, - -0.3045326741906255, - -0.47626684891542326, - -0.6051719663103287, - -0.7459612680786124, - -0.9376722809884048, - -1.1851686873053073, - -1.4645186311610041, - -1.720500045030496, - -1.8948695220016143, - -1.9435216241721518, - -1.8517482417665692, - -1.6387843531635153, - -1.3578397964060542, - -1.0728317976905661, - -0.8361032283525522, - -0.6794142762258523, - -0.5935131956224473, - -0.537867262463534, - -0.45689528245848376, - -0.29946914615912, - -0.04436542713739557, - 0.29348879042640585, - 0.6624636911860603, - 0.9862976000122221, - 1.210551461946931, - 1.31607807191131, - 1.3500038738024347, - 1.4315001973751065, - 1.732084053137119, - 2.4453692152161794, - 3.734507118354784, - 5.664738115463315, - 8.243171574138149, - 11.289284361165167, - 14.5522253265971 - ], - "pressure:branch28_seg1:J60": [ - 96008.63931253072, - 115063.80237406632, - 130885.18303674403, - 141832.6203387494, - 147280.27691056646, - 147080.27192700206, - 141754.3516818369, - 132493.14638586348, - 120647.41698813996, - 107252.31151935314, - 93485.64661279495, - 79645.34744780048, - 65901.03016083164, - 52339.22207143762, - 38601.76705869497, - 24949.180599612257, - 11318.73353541323, - -1992.0101993353203, - -14160.71737492665, - -25147.02041760095, - -34564.79694386592, - -42224.109092065424, - -48410.14743063086, - -53271.4171995883, - -57095.00688893141, - -60079.848186017436, - -62204.378029988824, - -63378.96701232758, - -63461.345923785586, - -62384.27709841906, - -60272.26074409359, - -57613.244949653075, - -55040.18004755783, - -53382.557946280845, - -53444.93470273569, - -55729.93592769752, - -60225.21742632008, - -66608.44298611536, - -73906.49126643763, - -80791.29568667976, - -86137.03370769843, - -88783.34305286402, - -88069.1874227525, - -83860.77799834686, - -76854.15893108239, - -67499.44053992126, - -56902.91369953216, - -46245.53890611382, - -35895.51696651768, - -26541.767334689626, - -18218.355131089014, - -10716.363268374833, - -4105.454061412971, - 1840.094415349696, - 7041.225796783796, - 11217.187873320252, - 14137.080904676446, - 15529.720848845542, - 15287.63934830043, - 13582.820581370142, - 10786.528887709152, - 7395.131885570484, - 4082.2644747262925, - 1227.0642838203642, - -915.6653730927262, - -2306.8231274116574, - -3208.3583091780365, - -3971.000428883259, - -4907.333517096809, - -6216.0021037558945, - -7824.722134087292, - -9551.981002122386, - -11035.692936985077, - -11881.609779594623, - -11892.528745446498, - -11055.431389761356, - -9556.129645070368, - -7731.078527516281, - -6041.0951664925415, - -4736.562347584295, - -3927.677989913773, - -3517.104519397696, - -3187.740845206892, - -2584.0027268908652, - -1429.0028338418115, - 340.5514223002718, - 2537.87751746695, - 4804.606576475342, - 6639.036652672267, - 7767.701431867627, - 8195.083501301657, - 8353.50945283349, - 9103.712140872432, - 11582.688500440723, - 16956.228437135287, - 26244.3121598295, - 39347.59725028029, - 56274.905640893194, - 75981.23411438907, - 96008.63931253072 - ], - "flow:J60:branch28_seg2": [ - 14.5522253265971, - 17.741653138393296, - 20.48879587209685, - 22.546837273033145, - 23.73682218630941, - 23.99839824188582, - 23.39182216650738, - 22.09750648475415, - 20.292255991541506, - 18.184251077260818, - 15.966302178360737, - 13.705436715911521, - 11.468620161035206, - 9.253026966704104, - 7.02351184664028, - 4.800088418044384, - 2.5695416446513533, - 0.39024151500255067, - -1.6540690145460055, - -3.5188830763174965, - -5.131532234179561, - -6.47351784687802, - -7.5602604246156, - -8.418824206536533, - -9.097228131475843, - -9.627262794383835, - -10.019457829605185, - -10.263727362036933, - -10.337283060418123, - -10.22244209137315, - -9.932918088649071, - -9.52527537450757, - -9.09264237818788, - -8.769384553881357, - -8.682859543685252, - -8.932098306326653, - -9.546811880892086, - -10.49439478969995, - -11.637204453843117, - -12.79097747365742, - -13.75716867806242, - -14.336707049528888, - -14.4035568003365, - -13.912579014063896, - -12.91428340228325, - -11.499871981874973, - -9.845802992020054, - -8.102863768748742, - -6.393188060465534, - -4.820986503134058, - -3.4032228730101264, - -2.142945551193969, - -1.0212450896924166, - -0.011743583821317696, - 0.8729180099691511, - 1.610637775524807, - 2.157055433293761, - 2.4658327965619646, - 2.513279791072899, - 2.313980127804184, - 1.9122848434708422, - 1.3873936424667133, - 0.8420562696570018, - 0.34695096479042253, - -0.03998123206775004, - -0.3045326741906255, - -0.47626684891542326, - -0.6051719663103287, - -0.7459612680786124, - -0.9376722809884048, - -1.1851686873053073, - -1.4645186311610041, - -1.720500045030496, - -1.8948695220016143, - -1.9435216241721518, - -1.8517482417665692, - -1.6387843531635153, - -1.3578397964060542, - -1.0728317976905661, - -0.8361032283525522, - -0.6794142762258523, - -0.5935131956224473, - -0.537867262463534, - -0.45689528245848376, - -0.29946914615912, - -0.04436542713739557, - 0.29348879042640585, - 0.6624636911860603, - 0.9862976000122221, - 1.210551461946931, - 1.31607807191131, - 1.3500038738024347, - 1.4315001973751065, - 1.732084053137119, - 2.4453692152161794, - 3.734507118354784, - 5.664738115463315, - 8.243171574138149, - 11.289284361165167, - 14.5522253265971 - ], - "pressure:J60:branch28_seg2": [ - 96008.63931253072, - 115063.80237406632, - 130885.18303674403, - 141832.6203387494, - 147280.27691056646, - 147080.27192700206, - 141754.3516818369, - 132493.14638586348, - 120647.41698813996, - 107252.31151935314, - 93485.64661279495, - 79645.34744780048, - 65901.03016083164, - 52339.22207143762, - 38601.76705869497, - 24949.180599612257, - 11318.73353541323, - -1992.0101993353203, - -14160.71737492665, - -25147.02041760095, - -34564.79694386592, - -42224.109092065424, - -48410.14743063086, - -53271.4171995883, - -57095.00688893141, - -60079.848186017436, - -62204.378029988824, - -63378.96701232758, - -63461.345923785586, - -62384.27709841906, - -60272.26074409359, - -57613.244949653075, - -55040.18004755783, - -53382.557946280845, - -53444.93470273569, - -55729.93592769752, - -60225.21742632008, - -66608.44298611536, - -73906.49126643763, - -80791.29568667976, - -86137.03370769843, - -88783.34305286402, - -88069.1874227525, - -83860.77799834686, - -76854.15893108239, - -67499.44053992126, - -56902.91369953216, - -46245.53890611382, - -35895.51696651768, - -26541.767334689626, - -18218.355131089014, - -10716.363268374833, - -4105.454061412971, - 1840.094415349696, - 7041.225796783796, - 11217.187873320252, - 14137.080904676446, - 15529.720848845542, - 15287.63934830043, - 13582.820581370142, - 10786.528887709152, - 7395.131885570484, - 4082.2644747262925, - 1227.0642838203642, - -915.6653730927262, - -2306.8231274116574, - -3208.3583091780365, - -3971.000428883259, - -4907.333517096809, - -6216.0021037558945, - -7824.722134087292, - -9551.981002122386, - -11035.692936985077, - -11881.609779594623, - -11892.528745446498, - -11055.431389761356, - -9556.129645070368, - -7731.078527516281, - -6041.0951664925415, - -4736.562347584295, - -3927.677989913773, - -3517.104519397696, - -3187.740845206892, - -2584.0027268908652, - -1429.0028338418115, - 340.5514223002718, - 2537.87751746695, - 4804.606576475342, - 6639.036652672267, - 7767.701431867627, - 8195.083501301657, - 8353.50945283349, - 9103.712140872432, - 11582.688500440723, - 16956.228437135287, - 26244.3121598295, - 39347.59725028029, - 56274.905640893194, - 75981.23411438907, - 96008.63931253072 - ], - "flow:branch30_seg0:J61": [ - 35.44569196601404, - 39.55343902586221, - 41.508155096852306, - 41.1858613334789, - 38.93131235582157, - 35.13512778386305, - 30.3167186235701, - 25.209536171259966, - 20.400143954660916, - 15.850357684387948, - 12.017421820347352, - 8.595488667930116, - 5.3375635173444085, - 2.283933107347043, - -0.9336126535811252, - -4.071043350155529, - -7.103789231029849, - -9.951719453126167, - -12.164382065731738, - -13.885897859933628, - -15.044403175226172, - -15.66625510844697, - -16.015880030214056, - -16.16768183270583, - -16.23505779359248, - -16.238354774865723, - -16.078780962040522, - -15.665110625135577, - -14.92766679223955, - -13.882104738152549, - -12.652085690974543, - -11.55832428530736, - -10.86122755339403, - -10.88791812567639, - -11.831375992416442, - -13.67910526347614, - -16.15171034858057, - -18.89991343856558, - -21.40755976105039, - -23.03807849680689, - -23.552906381351825, - -22.693814360565305, - -20.51261975464769, - -17.29924690978994, - -13.639543799982247, - -9.769416163138203, - -6.211768858261885, - -3.320907396893404, - -0.9404263541038327, - 0.7859711237085898, - 2.11380759228646, - 3.261023962852273, - 4.190607053993834, - 5.04965378534912, - 5.694513647607058, - 5.9647105772962155, - 5.797400186677576, - 5.10419005911459, - 3.944516916851885, - 2.4969140652475716, - 1.025557915066125, - -0.3142130646856012, - -1.236111979863839, - -1.723961886013405, - -1.8557645721543827, - -1.7335674547873103, - -1.5852553770039608, - -1.5916391488868702, - -1.8351434180338009, - -2.3082598855086225, - -2.864197283482896, - -3.3551760704309515, - -3.5916066553688824, - -3.449545456204262, - -2.9487499729313726, - -2.202805385092235, - -1.3785012682828979, - -0.6656559721166555, - -0.2500014662330695, - -0.11421806837703535, - -0.20640397086807838, - -0.3681766404763587, - -0.39720238882699493, - -0.15338175523410177, - 0.40075894066535633, - 1.1815594936474183, - 1.9785841510744753, - 2.6122973078054534, - 2.8643558383332213, - 2.731889187927903, - 2.3931150157044603, - 2.1886984312457196, - 2.592069192900076, - 4.071539673947583, - 6.969435758346297, - 11.455105943857154, - 17.030646147328163, - 23.508160925313682, - 30.03464682299056, - 35.44569196601404 - ], - "pressure:branch30_seg0:J61": [ - 184787.9543089167, - 200303.20133343135, - 206656.3946936274, - 200084.9780953518, - 184819.06816208918, - 164071.59784372558, - 139839.97182371776, - 112980.50385946478, - 91042.03165953544, - 70192.13436336262, - 51414.215555885734, - 36183.40915176392, - 19959.920204684273, - 4870.19652186593, - -10530.67558041409, - -26455.051079058943, - -40770.83353989952, - -54209.39927303048, - -64190.98371820427, - -71005.91394589248, - -75978.37696375482, - -78157.30232318019, - -79252.53277914222, - -79851.18066696596, - -79962.07347274426, - -79818.21927246012, - -78636.13646773629, - -75948.57649947684, - -71556.10284911984, - -66020.6399655578, - -59698.42257100086, - -54838.56019160711, - -52842.048748591405, - -54454.31291525943, - -60913.9621918278, - -71657.67943214302, - -84971.28132010854, - -98168.24306362384, - -109757.16998301345, - -115814.43369357266, - -115415.48143869573, - -108737.62048274916, - -95597.3156527395, - -77712.60119049618, - -59254.41178468349, - -40791.867172311584, - -23396.254364471963, - -10843.949193879453, - -532.8903698384581, - 7250.963294245942, - 12666.438983857453, - 18403.08108422984, - 22601.795534016797, - 26172.27586971577, - 29162.96309717498, - 29522.10828475824, - 27591.53808599309, - 23249.445926523345, - 16857.767745023564, - 9092.945623357222, - 2170.171195408869, - -3641.6135387517447, - -7666.349922061349, - -9020.973978118023, - -9034.271362958909, - -8257.850791828647, - -7584.365157584694, - -8022.172092992226, - -9752.956289317695, - -12502.60386563466, - -15240.090636109995, - -17249.70513609887, - -17873.840817080003, - -16367.992610510146, - -13151.914850020683, - -9108.747780144613, - -5238.3981160962385, - -1941.3114543482188, - -599.8963732763722, - -663.0353651857672, - -1330.7007115653269, - -2050.0119795223645, - -1796.6179230444409, - 36.69635668312549, - 3298.608354540639, - 7532.122154272466, - 11240.084087146739, - 13679.969001478643, - 14286.610119351139, - 12885.093941607303, - 11024.240558044992, - 10742.578662310367, - 14429.161424422658, - 24271.385910569632, - 41483.907223014576, - 67050.65223422229, - 96328.68428236213, - 128278.32419906222, - 161636.4920288948, - 184787.9543089167 - ], - "flow:J61:branch30_seg1": [ - 35.44569196601404, - 39.55343902586221, - 41.508155096852306, - 41.1858613334789, - 38.93131235582157, - 35.13512778386305, - 30.3167186235701, - 25.209536171259966, - 20.400143954660916, - 15.850357684387948, - 12.017421820347352, - 8.595488667930116, - 5.3375635173444085, - 2.283933107347043, - -0.9336126535811252, - -4.071043350155529, - -7.103789231029849, - -9.951719453126167, - -12.164382065731738, - -13.885897859933628, - -15.044403175226172, - -15.66625510844697, - -16.015880030214056, - -16.16768183270583, - -16.23505779359248, - -16.238354774865723, - -16.078780962040522, - -15.665110625135577, - -14.92766679223955, - -13.882104738152549, - -12.652085690974543, - -11.55832428530736, - -10.86122755339403, - -10.88791812567639, - -11.831375992416442, - -13.67910526347614, - -16.15171034858057, - -18.89991343856558, - -21.40755976105039, - -23.03807849680689, - -23.552906381351825, - -22.693814360565305, - -20.51261975464769, - -17.29924690978994, - -13.639543799982247, - -9.769416163138203, - -6.211768858261885, - -3.320907396893404, - -0.9404263541038327, - 0.7859711237085898, - 2.11380759228646, - 3.261023962852273, - 4.190607053993834, - 5.04965378534912, - 5.694513647607058, - 5.9647105772962155, - 5.797400186677576, - 5.10419005911459, - 3.944516916851885, - 2.4969140652475716, - 1.025557915066125, - -0.3142130646856012, - -1.236111979863839, - -1.723961886013405, - -1.8557645721543827, - -1.7335674547873103, - -1.5852553770039608, - -1.5916391488868702, - -1.8351434180338009, - -2.3082598855086225, - -2.864197283482896, - -3.3551760704309515, - -3.5916066553688824, - -3.449545456204262, - -2.9487499729313726, - -2.202805385092235, - -1.3785012682828979, - -0.6656559721166555, - -0.2500014662330695, - -0.11421806837703535, - -0.20640397086807838, - -0.3681766404763587, - -0.39720238882699493, - -0.15338175523410177, - 0.40075894066535633, - 1.1815594936474183, - 1.9785841510744753, - 2.6122973078054534, - 2.8643558383332213, - 2.731889187927903, - 2.3931150157044603, - 2.1886984312457196, - 2.592069192900076, - 4.071539673947583, - 6.969435758346297, - 11.455105943857154, - 17.030646147328163, - 23.508160925313682, - 30.03464682299056, - 35.44569196601404 - ], - "pressure:J61:branch30_seg1": [ - 184787.9543089167, - 200303.20133343135, - 206656.3946936274, - 200084.9780953518, - 184819.06816208918, - 164071.59784372558, - 139839.97182371776, - 112980.50385946478, - 91042.03165953544, - 70192.13436336262, - 51414.215555885734, - 36183.40915176392, - 19959.920204684273, - 4870.19652186593, - -10530.67558041409, - -26455.051079058943, - -40770.83353989952, - -54209.39927303048, - -64190.98371820427, - -71005.91394589248, - -75978.37696375482, - -78157.30232318019, - -79252.53277914222, - -79851.18066696596, - -79962.07347274426, - -79818.21927246012, - -78636.13646773629, - -75948.57649947684, - -71556.10284911984, - -66020.6399655578, - -59698.42257100086, - -54838.56019160711, - -52842.048748591405, - -54454.31291525943, - -60913.9621918278, - -71657.67943214302, - -84971.28132010854, - -98168.24306362384, - -109757.16998301345, - -115814.43369357266, - -115415.48143869573, - -108737.62048274916, - -95597.3156527395, - -77712.60119049618, - -59254.41178468349, - -40791.867172311584, - -23396.254364471963, - -10843.949193879453, - -532.8903698384581, - 7250.963294245942, - 12666.438983857453, - 18403.08108422984, - 22601.795534016797, - 26172.27586971577, - 29162.96309717498, - 29522.10828475824, - 27591.53808599309, - 23249.445926523345, - 16857.767745023564, - 9092.945623357222, - 2170.171195408869, - -3641.6135387517447, - -7666.349922061349, - -9020.973978118023, - -9034.271362958909, - -8257.850791828647, - -7584.365157584694, - -8022.172092992226, - -9752.956289317695, - -12502.60386563466, - -15240.090636109995, - -17249.70513609887, - -17873.840817080003, - -16367.992610510146, - -13151.914850020683, - -9108.747780144613, - -5238.3981160962385, - -1941.3114543482188, - -599.8963732763722, - -663.0353651857672, - -1330.7007115653269, - -2050.0119795223645, - -1796.6179230444409, - 36.69635668312549, - 3298.608354540639, - 7532.122154272466, - 11240.084087146739, - 13679.969001478643, - 14286.610119351139, - 12885.093941607303, - 11024.240558044992, - 10742.578662310367, - 14429.161424422658, - 24271.385910569632, - 41483.907223014576, - 67050.65223422229, - 96328.68428236213, - 128278.32419906222, - 161636.4920288948, - 184787.9543089167 - ], - "flow:branch30_seg1:J62": [ - 35.37930927505883, - 39.52233035767919, - 41.502676948520836, - 41.20644062177467, - 38.98522647305723, - 35.206395436693235, - 30.383866574304943, - 25.30249968315744, - 20.463949225637005, - 15.891573878499043, - 12.070561103232244, - 8.63202642542787, - 5.375934374709063, - 2.321319061702023, - -0.9128935428346547, - -4.034732309452247, - -7.070921261298009, - -9.943009814194241, - -12.145957678986202, - -13.87425869246522, - -15.04154847557914, - -15.66016065932629, - -16.015680192715838, - -16.167143652856627, - -16.23339425369556, - -16.239751346272513, - -16.082998934500676, - -15.674013554125413, - -14.942831414513638, - -13.899993239565616, - -12.669891331663761, - -11.571930977741673, - -10.862080462019378, - -10.875193379627925, - -11.808431007700657, - -13.650153156997941, - -16.109899717257175, - -18.871943585691845, - -21.39011240775593, - -23.03175811623155, - -23.567845377548142, - -22.721175218469874, - -20.54639921378923, - -17.328095906713138, - -13.681553865862035, - -9.810895243664703, - -6.239970505123331, - -3.354201687224626, - -0.9585637246139551, - 0.7685164760918514, - 2.093296892891194, - 3.2463355757874552, - 4.176395547505649, - 5.039224292584935, - 5.687123784205499, - 5.964433317523387, - 5.806284711023469, - 5.121215851068141, - 3.9623351995594076, - 2.5230690731099084, - 1.0429178658337261, - -0.3092954084461811, - -1.22912172717839, - -1.7225560176293766, - -1.8597177564811442, - -1.7355905535941412, - -1.584979527478772, - -1.5891010150264007, - -1.8301389746475256, - -2.3036052467630133, - -2.8586187099839524, - -3.3511906236731397, - -3.5931251844088026, - -3.4543669399029513, - -2.957827687872612, - -2.214230882720127, - -1.3898897490298225, - -0.6735820054697566, - -0.25350930137692124, - -0.11319205887111905, - -0.20321199608253757, - -0.3674363590342912, - -0.3999440382503647, - -0.16129805807025366, - 0.391195956338659, - 1.1683502140638473, - 1.9705118930359409, - 2.6131102722857245, - 2.86639859139832, - 2.7358321640874617, - 2.3961956400234934, - 2.185419426381436, - 2.576844543662793, - 4.0411266604646965, - 6.92155754930969, - 11.404267679391088, - 16.96142532580247, - 23.41401085125656, - 29.965943506024008, - 35.37930927505883 - ], - "pressure:branch30_seg1:J62": [ - 177162.1185859915, - 194977.99768287694, - 203009.7122420342, - 199119.00696487824, - 186266.1214955385, - 166912.96234331146, - 143255.1429103526, - 117671.56468865991, - 94960.59268536772, - 73514.74970906055, - 54935.17923890182, - 38992.48956091926, - 23067.09891991144, - 8138.544622712988, - -7363.416534625701, - -22794.650044196, - -37303.1692565763, - -50981.483510205995, - -61234.59897391479, - -68819.41105417443, - -74134.94258601616, - -76700.34601441007, - -78118.51831502028, - -78775.89051955887, - -78987.36871445297, - -78940.34669472564, - -77980.93014068609, - -75671.00537376567, - -71739.2395310891, - -66483.31941304114, - -60369.357565137754, - -55289.228441457344, - -52548.46785470728, - -53323.98814533199, - -58750.71573099856, - -68507.51722306684, - -81037.20483601592, - -94323.64223939885, - -106199.34429113725, - -113237.02777620894, - -114391.3862699705, - -109063.81609225414, - -97278.64761014568, - -80572.18987772922, - -62632.50923098616, - -44094.05818179453, - -26765.485862755635, - -13585.861967538598, - -2625.0939459554293, - 5408.108600838652, - 11285.18342018141, - 16952.972047142863, - 21276.922680330776, - 25141.74269369322, - 28212.553624011813, - 29085.49466494253, - 27772.442084614577, - 23992.9653707913, - 18026.102576582085, - 10716.350084057329, - 3657.6003570548723, - -2522.7851448636484, - -6758.561614715182, - -8647.923002263591, - -8998.775534987088, - -8308.295242877839, - -7601.491723507662, - -7821.281390500391, - -9259.183405205775, - -11776.19734108434, - -14472.188590859305, - -16665.726270178653, - -17575.833110309875, - -16499.187306231463, - -13711.256370967269, - -9912.81999654592, - -6004.082390214203, - -2620.4420410227403, - -928.4628500417916, - -608.2921003827312, - -1143.799639719157, - -1902.9865242692126, - -1866.0953023653458, - -397.86398868431905, - 2550.9380496855138, - 6518.995708892173, - 10324.934685922137, - 13111.891609556471, - 14038.289068155322, - 13033.336235534616, - 11281.600272131964, - 10612.651790993415, - 13357.60759598435, - 21753.005229315342, - 37232.84188077876, - 60802.17151730274, - 88710.35565568818, - 120097.25875848853, - 152630.78782005142, - 177162.1185859915 - ], - "flow:J62:branch30_seg2": [ - 35.37930927505883, - 39.52233035767919, - 41.502676948520836, - 41.20644062177467, - 38.98522647305723, - 35.206395436693235, - 30.383866574304943, - 25.30249968315744, - 20.463949225637005, - 15.891573878499043, - 12.070561103232244, - 8.63202642542787, - 5.375934374709063, - 2.321319061702023, - -0.9128935428346547, - -4.034732309452247, - -7.070921261298009, - -9.943009814194241, - -12.145957678986202, - -13.87425869246522, - -15.04154847557914, - -15.66016065932629, - -16.015680192715838, - -16.167143652856627, - -16.23339425369556, - -16.239751346272513, - -16.082998934500676, - -15.674013554125413, - -14.942831414513638, - -13.899993239565616, - -12.669891331663761, - -11.571930977741673, - -10.862080462019378, - -10.875193379627925, - -11.808431007700657, - -13.650153156997941, - -16.109899717257175, - -18.871943585691845, - -21.39011240775593, - -23.03175811623155, - -23.567845377548142, - -22.721175218469874, - -20.54639921378923, - -17.328095906713138, - -13.681553865862035, - -9.810895243664703, - -6.239970505123331, - -3.354201687224626, - -0.9585637246139551, - 0.7685164760918514, - 2.093296892891194, - 3.2463355757874552, - 4.176395547505649, - 5.039224292584935, - 5.687123784205499, - 5.964433317523387, - 5.806284711023469, - 5.121215851068141, - 3.9623351995594076, - 2.5230690731099084, - 1.0429178658337261, - -0.3092954084461811, - -1.22912172717839, - -1.7225560176293766, - -1.8597177564811442, - -1.7355905535941412, - -1.584979527478772, - -1.5891010150264007, - -1.8301389746475256, - -2.3036052467630133, - -2.8586187099839524, - -3.3511906236731397, - -3.5931251844088026, - -3.4543669399029513, - -2.957827687872612, - -2.214230882720127, - -1.3898897490298225, - -0.6735820054697566, - -0.25350930137692124, - -0.11319205887111905, - -0.20321199608253757, - -0.3674363590342912, - -0.3999440382503647, - -0.16129805807025366, - 0.391195956338659, - 1.1683502140638473, - 1.9705118930359409, - 2.6131102722857245, - 2.86639859139832, - 2.7358321640874617, - 2.3961956400234934, - 2.185419426381436, - 2.576844543662793, - 4.0411266604646965, - 6.92155754930969, - 11.404267679391088, - 16.96142532580247, - 23.41401085125656, - 29.965943506024008, - 35.37930927505883 - ], - "pressure:J62:branch30_seg2": [ - 177162.1185859915, - 194977.99768287694, - 203009.7122420342, - 199119.00696487824, - 186266.1214955385, - 166912.96234331146, - 143255.1429103526, - 117671.56468865991, - 94960.59268536772, - 73514.74970906055, - 54935.17923890182, - 38992.48956091926, - 23067.09891991144, - 8138.544622712988, - -7363.416534625701, - -22794.650044196, - -37303.1692565763, - -50981.483510205995, - -61234.59897391479, - -68819.41105417443, - -74134.94258601616, - -76700.34601441007, - -78118.51831502028, - -78775.89051955887, - -78987.36871445297, - -78940.34669472564, - -77980.93014068609, - -75671.00537376567, - -71739.2395310891, - -66483.31941304114, - -60369.357565137754, - -55289.228441457344, - -52548.46785470728, - -53323.98814533199, - -58750.71573099856, - -68507.51722306684, - -81037.20483601592, - -94323.64223939885, - -106199.34429113725, - -113237.02777620894, - -114391.3862699705, - -109063.81609225414, - -97278.64761014568, - -80572.18987772922, - -62632.50923098616, - -44094.05818179453, - -26765.485862755635, - -13585.861967538598, - -2625.0939459554293, - 5408.108600838652, - 11285.18342018141, - 16952.972047142863, - 21276.922680330776, - 25141.74269369322, - 28212.553624011813, - 29085.49466494253, - 27772.442084614577, - 23992.9653707913, - 18026.102576582085, - 10716.350084057329, - 3657.6003570548723, - -2522.7851448636484, - -6758.561614715182, - -8647.923002263591, - -8998.775534987088, - -8308.295242877839, - -7601.491723507662, - -7821.281390500391, - -9259.183405205775, - -11776.19734108434, - -14472.188590859305, - -16665.726270178653, - -17575.833110309875, - -16499.187306231463, - -13711.256370967269, - -9912.81999654592, - -6004.082390214203, - -2620.4420410227403, - -928.4628500417916, - -608.2921003827312, - -1143.799639719157, - -1902.9865242692126, - -1866.0953023653458, - -397.86398868431905, - 2550.9380496855138, - 6518.995708892173, - 10324.934685922137, - 13111.891609556471, - 14038.289068155322, - 13033.336235534616, - 11281.600272131964, - 10612.651790993415, - 13357.60759598435, - 21753.005229315342, - 37232.84188077876, - 60802.17151730274, - 88710.35565568818, - 120097.25875848853, - 152630.78782005142, - 177162.1185859915 - ], - "flow:branch35_seg0:J63": [ - 27.26286351868443, - 31.10837550391613, - 33.36138059758876, - 33.869424104317865, - 32.71551487392055, - 30.139075486164256, - 26.547199089035278, - 22.541882580543696, - 18.49935261854893, - 14.654263452826228, - 11.322562295462088, - 8.31649783504125, - 5.5659626078265525, - 2.978750843694146, - 0.33075094456427007, - -2.2494539734736376, - -4.805104821565847, - -7.213933930468564, - -9.201169258186601, - -10.81158203523771, - -11.945511946303364, - -12.638507330562568, - -13.046940745973862, - -13.24586679643104, - -13.345529689205687, - -13.378470054826192, - -13.299331083856778, - -13.042412041829259, - -12.542684935491542, - -11.782837972291285, - -10.840921831021499, - -9.914494755720337, - -9.214658848256514, - -9.015905954482744, - -9.499150623495982, - -10.715837472129381, - -12.517000036422633, - -14.682290133383452, - -16.7870158718416, - -18.37911671313844, - -19.172926893707547, - -18.90190604610815, - -17.548873888834137, - -15.277298184061381, - -12.466280897212775, - -9.356023707325452, - -6.378221816684642, - -3.8038975257946395, - -1.6506876861936957, - -0.02985306922004799, - 1.228304724546118, - 2.2539737480241904, - 3.096761014027536, - 3.8559203074503654, - 4.450663402429436, - 4.796298008319611, - 4.808840521563514, - 4.409358989366194, - 3.6125243470082586, - 2.5380707248152325, - 1.3443822557578389, - 0.2016554774614112, - -0.665859686300463, - -1.2176014109064364, - -1.4514521097254767, - -1.4390439060831504, - -1.3444752176303738, - -1.3146217348681495, - -1.4448496358089538, - -1.760428940595688, - -2.181966157714037, - -2.601213453624914, - -2.8659626285119963, - -2.865257781595679, - -2.575639307222964, - -2.0517880522382086, - -1.4084609269370458, - -0.8015300300296864, - -0.3738504846659506, - -0.16449018075295166, - -0.16305787142573788, - -0.26373362878094114, - -0.31663185385054826, - -0.19635697264339252, - 0.16267564274122978, - 0.7237875662674201, - 1.366145082929762, - 1.9347732842905832, - 2.2480478973468214, - 2.265785544253638, - 2.064218056164933, - 1.8677123287163713, - 2.0237853470824523, - 2.9111651110261834, - 4.849849326956859, - 8.02052800184065, - 12.204754402380111, - 17.243495303134267, - 22.51443325093358, - 27.26286351868443 - ], - "pressure:branch35_seg0:J63": [ - 169876.6633194596, - 189334.34103585593, - 199615.28000615735, - 198434.22936636675, - 188099.62002263978, - 170590.55971776642, - 148217.17137823504, - 123425.83323337756, - 100327.85283886218, - 78604.65255882627, - 59565.49950105493, - 42981.79071691552, - 26927.13128170439, - 11825.011995294873, - -3683.4136603220027, - -18943.02420882302, - -33617.60569005672, - -47522.014672543846, - -58222.91640337499, - -66489.8980986036, - -72392.58338409718, - -75547.1584396235, - -77386.57410350237, - -78277.72614443177, - -78635.41891014227, - -78700.44945481734, - -77930.29972487861, - -75927.15284821796, - -72389.19990580568, - -67478.43714336382, - -61620.318134995585, - -56422.37010719017, - -53220.376802410035, - -53221.276940601114, - -57635.807661631254, - -66349.58970658705, - -78035.44054022247, - -91019.36746709357, - -103012.54291554811, - -110871.88161436889, - -113324.14586625539, - -109464.5109554723, - -99244.63820334976, - -83835.44042006794, - -66712.65746348203, - -48458.582927459436, - -31013.857913792686, - -17228.08908583686, - -5605.038598635517, - 3059.299478855233, - 9475.815255035168, - 15397.277443507144, - 19986.33946589432, - 24019.499461687934, - 27304.671251053263, - 28617.33323605289, - 27837.95832395452, - 24650.210423512148, - 19221.55395869502, - 12337.406220672287, - 5313.088571477825, - -1015.2090462183261, - -5558.975739775683, - -7968.531114120812, - -8733.13272311016, - -8322.071136189441, - -7700.337068393633, - -7792.894263953043, - -8976.36239971508, - -11236.697922056337, - -13795.700430430572, - -16045.865474002125, - -17211.43447108454, - -16546.47966325519, - -14198.757119296948, - -10720.980733059869, - -6929.210769714602, - -3477.41073486285, - -1473.01455088423, - -817.088237558952, - -1096.168277983008, - -1763.5676251984876, - -1841.005687121919, - -660.9453005354964, - 1953.2862790866911, - 5635.577128349456, - 9406.738945188272, - 12371.368689324925, - 13629.271845880387, - 13062.031691416416, - 11559.80713544443, - 10772.133208844361, - 12866.384718454981, - 20064.833982851982, - 33895.166131303784, - 55588.807245856304, - 81929.33703796865, - 112169.85265870646, - 144327.47761871965, - 169876.6633194596 - ], - "flow:J63:branch35_seg1": [ - 27.26286351868443, - 31.10837550391613, - 33.36138059758876, - 33.869424104317865, - 32.71551487392055, - 30.139075486164256, - 26.547199089035278, - 22.541882580543696, - 18.49935261854893, - 14.654263452826228, - 11.322562295462088, - 8.31649783504125, - 5.5659626078265525, - 2.978750843694146, - 0.33075094456427007, - -2.2494539734736376, - -4.805104821565847, - -7.213933930468564, - -9.201169258186601, - -10.81158203523771, - -11.945511946303364, - -12.638507330562568, - -13.046940745973862, - -13.24586679643104, - -13.345529689205687, - -13.378470054826192, - -13.299331083856778, - -13.042412041829259, - -12.542684935491542, - -11.782837972291285, - -10.840921831021499, - -9.914494755720337, - -9.214658848256514, - -9.015905954482744, - -9.499150623495982, - -10.715837472129381, - -12.517000036422633, - -14.682290133383452, - -16.7870158718416, - -18.37911671313844, - -19.172926893707547, - -18.90190604610815, - -17.548873888834137, - -15.277298184061381, - -12.466280897212775, - -9.356023707325452, - -6.378221816684642, - -3.8038975257946395, - -1.6506876861936957, - -0.02985306922004799, - 1.228304724546118, - 2.2539737480241904, - 3.096761014027536, - 3.8559203074503654, - 4.450663402429436, - 4.796298008319611, - 4.808840521563514, - 4.409358989366194, - 3.6125243470082586, - 2.5380707248152325, - 1.3443822557578389, - 0.2016554774614112, - -0.665859686300463, - -1.2176014109064364, - -1.4514521097254767, - -1.4390439060831504, - -1.3444752176303738, - -1.3146217348681495, - -1.4448496358089538, - -1.760428940595688, - -2.181966157714037, - -2.601213453624914, - -2.8659626285119963, - -2.865257781595679, - -2.575639307222964, - -2.0517880522382086, - -1.4084609269370458, - -0.8015300300296864, - -0.3738504846659506, - -0.16449018075295166, - -0.16305787142573788, - -0.26373362878094114, - -0.31663185385054826, - -0.19635697264339252, - 0.16267564274122978, - 0.7237875662674201, - 1.366145082929762, - 1.9347732842905832, - 2.2480478973468214, - 2.265785544253638, - 2.064218056164933, - 1.8677123287163713, - 2.0237853470824523, - 2.9111651110261834, - 4.849849326956859, - 8.02052800184065, - 12.204754402380111, - 17.243495303134267, - 22.51443325093358, - 27.26286351868443 - ], - "pressure:J63:branch35_seg1": [ - 169876.6633194596, - 189334.34103585593, - 199615.28000615735, - 198434.22936636675, - 188099.62002263978, - 170590.55971776642, - 148217.17137823504, - 123425.83323337756, - 100327.85283886218, - 78604.65255882627, - 59565.49950105493, - 42981.79071691552, - 26927.13128170439, - 11825.011995294873, - -3683.4136603220027, - -18943.02420882302, - -33617.60569005672, - -47522.014672543846, - -58222.91640337499, - -66489.8980986036, - -72392.58338409718, - -75547.1584396235, - -77386.57410350237, - -78277.72614443177, - -78635.41891014227, - -78700.44945481734, - -77930.29972487861, - -75927.15284821796, - -72389.19990580568, - -67478.43714336382, - -61620.318134995585, - -56422.37010719017, - -53220.376802410035, - -53221.276940601114, - -57635.807661631254, - -66349.58970658705, - -78035.44054022247, - -91019.36746709357, - -103012.54291554811, - -110871.88161436889, - -113324.14586625539, - -109464.5109554723, - -99244.63820334976, - -83835.44042006794, - -66712.65746348203, - -48458.582927459436, - -31013.857913792686, - -17228.08908583686, - -5605.038598635517, - 3059.299478855233, - 9475.815255035168, - 15397.277443507144, - 19986.33946589432, - 24019.499461687934, - 27304.671251053263, - 28617.33323605289, - 27837.95832395452, - 24650.210423512148, - 19221.55395869502, - 12337.406220672287, - 5313.088571477825, - -1015.2090462183261, - -5558.975739775683, - -7968.531114120812, - -8733.13272311016, - -8322.071136189441, - -7700.337068393633, - -7792.894263953043, - -8976.36239971508, - -11236.697922056337, - -13795.700430430572, - -16045.865474002125, - -17211.43447108454, - -16546.47966325519, - -14198.757119296948, - -10720.980733059869, - -6929.210769714602, - -3477.41073486285, - -1473.01455088423, - -817.088237558952, - -1096.168277983008, - -1763.5676251984876, - -1841.005687121919, - -660.9453005354964, - 1953.2862790866911, - 5635.577128349456, - 9406.738945188272, - 12371.368689324925, - 13629.271845880387, - 13062.031691416416, - 11559.80713544443, - 10772.133208844361, - 12866.384718454981, - 20064.833982851982, - 33895.166131303784, - 55588.807245856304, - 81929.33703796865, - 112169.85265870646, - 144327.47761871965, - 169876.6633194596 - ], - "flow:branch35_seg1:J64": [ - 27.23186712439565, - 31.09046625853592, - 33.35498753748583, - 33.876254558460815, - 32.73607109290182, - 30.165094092137753, - 26.5722627262659, - 22.576086815802608, - 18.525969122938115, - 14.673361666641696, - 11.345065798229033, - 8.333841189422994, - 5.583183461378607, - 2.9975146742536873, - 0.3446970046556841, - -2.2311483171373294, - -4.785386272445483, - -7.201458861745288, - -9.18839523307604, - -10.802535253545505, - -11.940153166142279, - -12.634465232778055, - -13.045406627862222, - -13.245086192599146, - -13.344931146500393, - -13.378750466327288, - -13.300917082692674, - -13.045843742972686, - -12.548615703488077, - -11.789608299974187, - -10.848359111699505, - -9.920106498383005, - -9.215742210039846, - -9.012834006566473, - -9.491422532370116, - -10.704810218265262, - -12.501069857175203, - -14.668080985317673, - -16.776087145331868, - -18.371820364500586, - -19.174741178888333, - -18.9102246179312, - -17.56437793279761, - -15.296359301964333, - -12.489094679770151, - -9.379267029720538, - -6.398648189198756, - -3.821664724981085, - -1.663358155961348, - -0.03981867261610644, - 1.2199920679901752, - 2.246351702314411, - 3.0912035503045012, - 3.851899678115567, - 4.4472841792962665, - 4.795857177902186, - 4.81175804368459, - 4.415005125093233, - 3.619334158295719, - 2.5474451581631516, - 1.3524898397216747, - 0.2057308680732448, - -0.661275297952595, - -1.2155566810880916, - -1.4518555015329067, - -1.4396524524141068, - -1.3448146859394288, - -1.3140248658675775, - -1.4427302422413393, - -1.7573971666329364, - -2.178699261625261, - -2.59865667881315, - -2.8654808942288748, - -2.866991246265076, - -2.5795803518561606, - -2.056971663763473, - -1.413203257483647, - -0.80556213703179, - -0.37549313588639505, - -0.16418878967200393, - -0.16211292153028845, - -0.2632470519073562, - -0.3173232842491866, - -0.1987749271693741, - 0.15909462685699274, - 0.7189533679379092, - 1.3619513968690702, - 1.933462352925444, - 2.2474886128241764, - 2.2669626808496726, - 2.065968977275527, - 1.867567718057985, - 2.0187431220909606, - 2.8988334321035687, - 4.827769958915636, - 7.990572190938832, - 12.168329552075436, - 17.200624642443994, - 22.473236346334325, - 27.23186712439565 - ], - "pressure:branch35_seg1:J64": [ - 162136.19837153464, - 182947.13810214293, - 194644.38510739448, - 195662.11727457712, - 187370.94833911103, - 171361.97800519867, - 149979.80608045487, - 126259.54785823874, - 103122.37776905847, - 81266.00282232492, - 62274.09189347059, - 45372.223167770935, - 29521.16431506333, - 14611.668323886764, - -707.8346322538493, - -15635.131225756691, - -30245.284403225596, - -44105.995406254, - -55113.11693659367, - -63876.818688848885, - -70095.6784256956, - -73669.83459749195, - -75782.72906283452, - -76805.81141266879, - -77275.0614709891, - -77413.26071113381, - -76819.88326265321, - -75111.98146832244, - -71952.40871068613, - -67352.1348763334, - -61755.36762915936, - -56500.93033034532, - -52862.47979923314, - -52242.32623052358, - -55764.34151410276, - -63533.370656036976, - -74449.31229019725, - -87119.1289214438, - -99138.83252142667, - -107658.08054294033, - -111249.61345027969, - -108635.53815109377, - -99767.87510820002, - -85650.07322628952, - -69140.94766023452, - -51163.235118041455, - -33933.21132014525, - -19675.99355435293, - -7674.203204379145, - 1308.223225183156, - 8124.863427331164, - 14021.357551018347, - 18737.507789382707, - 22930.35013604581, - 26280.220285102703, - 27955.837654282936, - 27641.484367782596, - 24946.477138622875, - 19985.49152533569, - 13512.486702497314, - 6585.654793668048, - 134.46988254530936, - -4613.365586606033, - -7423.966437818304, - -8498.90621053821, - -8265.623676661122, - -7684.4722138898915, - -7634.758353046468, - -8579.278865535782, - -10595.998080612211, - -13069.612477251167, - -15396.329269821681, - -16756.456756819352, - -16449.688816580394, - -14479.388508890219, - -11266.293609497252, - -7538.294711151102, - -4074.764080676501, - -1827.062594093962, - -879.7034050206498, - -1002.6934434188495, - -1625.1879175550944, - -1827.5102056609715, - -916.5610305750826, - 1395.7269579816013, - 4818.717863801484, - 8541.355948156965, - 11669.62128064114, - 13205.133024685225, - 12996.614135399492, - 11679.77420439032, - 10707.579237267188, - 12144.006590940307, - 18184.823238987898, - 30504.4134493511, - 50279.60674278483, - 75265.18945684336, - 104649.0813701799, - 135751.20751128637, - 162136.19837153464 - ], - "flow:J64:branch35_seg2": [ - 27.23186712439565, - 31.09046625853592, - 33.35498753748583, - 33.876254558460815, - 32.73607109290182, - 30.165094092137753, - 26.5722627262659, - 22.576086815802608, - 18.525969122938115, - 14.673361666641696, - 11.345065798229033, - 8.333841189422994, - 5.583183461378607, - 2.9975146742536873, - 0.3446970046556841, - -2.2311483171373294, - -4.785386272445483, - -7.201458861745288, - -9.18839523307604, - -10.802535253545505, - -11.940153166142279, - -12.634465232778055, - -13.045406627862222, - -13.245086192599146, - -13.344931146500393, - -13.378750466327288, - -13.300917082692674, - -13.045843742972686, - -12.548615703488077, - -11.789608299974187, - -10.848359111699505, - -9.920106498383005, - -9.215742210039846, - -9.012834006566473, - -9.491422532370116, - -10.704810218265262, - -12.501069857175203, - -14.668080985317673, - -16.776087145331868, - -18.371820364500586, - -19.174741178888333, - -18.9102246179312, - -17.56437793279761, - -15.296359301964333, - -12.489094679770151, - -9.379267029720538, - -6.398648189198756, - -3.821664724981085, - -1.663358155961348, - -0.03981867261610644, - 1.2199920679901752, - 2.246351702314411, - 3.0912035503045012, - 3.851899678115567, - 4.4472841792962665, - 4.795857177902186, - 4.81175804368459, - 4.415005125093233, - 3.619334158295719, - 2.5474451581631516, - 1.3524898397216747, - 0.2057308680732448, - -0.661275297952595, - -1.2155566810880916, - -1.4518555015329067, - -1.4396524524141068, - -1.3448146859394288, - -1.3140248658675775, - -1.4427302422413393, - -1.7573971666329364, - -2.178699261625261, - -2.59865667881315, - -2.8654808942288748, - -2.866991246265076, - -2.5795803518561606, - -2.056971663763473, - -1.413203257483647, - -0.80556213703179, - -0.37549313588639505, - -0.16418878967200393, - -0.16211292153028845, - -0.2632470519073562, - -0.3173232842491866, - -0.1987749271693741, - 0.15909462685699274, - 0.7189533679379092, - 1.3619513968690702, - 1.933462352925444, - 2.2474886128241764, - 2.2669626808496726, - 2.065968977275527, - 1.867567718057985, - 2.0187431220909606, - 2.8988334321035687, - 4.827769958915636, - 7.990572190938832, - 12.168329552075436, - 17.200624642443994, - 22.473236346334325, - 27.23186712439565 - ], - "pressure:J64:branch35_seg2": [ - 162136.19837153464, - 182947.13810214293, - 194644.38510739448, - 195662.11727457712, - 187370.94833911103, - 171361.97800519867, - 149979.80608045487, - 126259.54785823874, - 103122.37776905847, - 81266.00282232492, - 62274.09189347059, - 45372.223167770935, - 29521.16431506333, - 14611.668323886764, - -707.8346322538493, - -15635.131225756691, - -30245.284403225596, - -44105.995406254, - -55113.11693659367, - -63876.818688848885, - -70095.6784256956, - -73669.83459749195, - -75782.72906283452, - -76805.81141266879, - -77275.0614709891, - -77413.26071113381, - -76819.88326265321, - -75111.98146832244, - -71952.40871068613, - -67352.1348763334, - -61755.36762915936, - -56500.93033034532, - -52862.47979923314, - -52242.32623052358, - -55764.34151410276, - -63533.370656036976, - -74449.31229019725, - -87119.1289214438, - -99138.83252142667, - -107658.08054294033, - -111249.61345027969, - -108635.53815109377, - -99767.87510820002, - -85650.07322628952, - -69140.94766023452, - -51163.235118041455, - -33933.21132014525, - -19675.99355435293, - -7674.203204379145, - 1308.223225183156, - 8124.863427331164, - 14021.357551018347, - 18737.507789382707, - 22930.35013604581, - 26280.220285102703, - 27955.837654282936, - 27641.484367782596, - 24946.477138622875, - 19985.49152533569, - 13512.486702497314, - 6585.654793668048, - 134.46988254530936, - -4613.365586606033, - -7423.966437818304, - -8498.90621053821, - -8265.623676661122, - -7684.4722138898915, - -7634.758353046468, - -8579.278865535782, - -10595.998080612211, - -13069.612477251167, - -15396.329269821681, - -16756.456756819352, - -16449.688816580394, - -14479.388508890219, - -11266.293609497252, - -7538.294711151102, - -4074.764080676501, - -1827.062594093962, - -879.7034050206498, - -1002.6934434188495, - -1625.1879175550944, - -1827.5102056609715, - -916.5610305750826, - 1395.7269579816013, - 4818.717863801484, - 8541.355948156965, - 11669.62128064114, - 13205.133024685225, - 12996.614135399492, - 11679.77420439032, - 10707.579237267188, - 12144.006590940307, - 18184.823238987898, - 30504.4134493511, - 50279.60674278483, - 75265.18945684336, - 104649.0813701799, - 135751.20751128637, - 162136.19837153464 - ], - "flow:branch41_seg0:J65": [ - 36.135913552779506, - 41.219279237811136, - 44.20554422370437, - 44.86705476019704, - 43.32920952279277, - 39.935495582828864, - 35.230142649822625, - 29.961003413740666, - 24.69272405995984, - 19.690920059897543, - 15.331423488590433, - 11.421743465230149, - 7.8321765744333804, - 4.454516004939681, - 1.0135779199553254, - -2.3637416711219825, - -5.706362461109806, - -8.852834831426703, - -11.481219701524717, - -13.627288459033739, - -15.170427679457246, - -16.153563832473385, - -16.768083057804805, - -17.1134394424646, - -17.32615226610172, - -17.44621789712194, - -17.415398127914738, - -17.148747862189364, - -16.56100636322617, - -15.632046544294678, - -14.455894686327488, - -13.289869969060634, - -12.409438895562406, - -12.1639599622592, - -12.798148308516234, - -14.384390140443749, - -16.747354422751098, - -19.590989349818067, - -22.384730993403064, - -24.540410387097673, - -25.66838386581952, - -25.423242444466865, - -23.75500419150686, - -20.862248251046587, - -17.219238310595376, - -13.140764287431823, - -9.192378735721947, - -5.739396993077412, - -2.8235990808656157, - -0.5917798697211339, - 1.1597334202720202, - 2.601156990939846, - 3.7905389293345286, - 4.861311682404085, - 5.715966789134813, - 6.233111133885759, - 6.306220428190334, - 5.8316781419147015, - 4.826674954994435, - 3.4365621877421315, - 1.8813731072731843, - 0.3825748704070445, - -0.7797980357235125, - -1.5283436296390942, - -1.8603950336809902, - -1.869503798135332, - -1.7634591315639316, - -1.735896703486234, - -1.9148197489256713, - -2.3357438480770343, - -2.8987792541707686, - -3.463662691483398, - -3.8299189459634966, - -3.849932790407499, - -3.487988793011006, - -2.8126145883672327, - -1.9725037991801984, - -1.1683836342945142, - -0.5942035930399293, - -0.30316689620448983, - -0.28348754132264775, - -0.4020264870795928, - -0.46396822990963926, - -0.30248446657192746, - 0.17019934275743895, - 0.9136822248470474, - 1.767807398543859, - 2.5294954992345065, - 2.967618104552824, - 3.016460901568501, - 2.773294371674538, - 2.5306545331887182, - 2.743925728945495, - 3.9134613493582098, - 6.467272318140884, - 10.647688542778043, - 16.178109022309506, - 22.854358223703272, - 29.845909117062245, - 36.135913552779506 - ], - "pressure:branch41_seg0:J65": [ - 163759.62144128716, - 181383.40171313274, - 190276.6130323792, - 187923.79557775773, - 177080.7316300996, - 159918.30624400888, - 138654.95404982383, - 114851.04053052531, - 93633.53607264803, - 73823.39013802417, - 56001.514358910565, - 40888.94869204704, - 25988.18376884841, - 11888.539452003866, - -2387.810594066849, - -16780.934937107657, - -30553.943117728886, - -43278.021275256404, - -53239.20892565122, - -60958.034171155276, - -66500.22501992926, - -69576.2409432469, - -71490.45075761902, - -72598.39932927428, - -73236.34993655093, - -73575.58707466634, - -73067.05356481958, - -71354.72453603403, - -68150.80733299477, - -63701.07465152267, - -58351.10140299244, - -53723.10511469056, - -51099.59317714974, - -51443.46164210571, - -55987.47161658363, - -64512.57340742081, - -75855.73940949497, - -88160.41164764372, - -99466.16012912168, - -106844.85753762392, - -108961.58261968408, - -105222.77536529605, - -95455.4769690133, - -80839.61580850263, - -64651.911110364344, - -47297.8415016867, - -30770.843387371915, - -17772.757861152295, - -6715.555144718782, - 1614.8533402386047, - 7856.003043045453, - 13759.432612599789, - 18257.816144547276, - 22255.429644769552, - 25607.44902384799, - 26882.105444110915, - 26133.408730087296, - 23095.526649297004, - 17953.307629412935, - 11353.571172118449, - 4781.738914152342, - -1018.0061776895127, - -5317.157321467695, - -7494.873605282283, - -8115.154636552334, - -7741.720197537017, - -7210.750650940542, - -7402.104647363713, - -8653.911239505638, - -10906.152199341212, - -13388.45200138792, - -15545.453640437805, - -16608.890365206185, - -15890.233139167516, - -13581.183500235838, - -10234.90252972492, - -6652.068454797584, - -3389.5043723624494, - -1594.0925277114184, - -1057.7251436835468, - -1325.9045550405615, - -1929.7977430330782, - -1919.6658590570762, - -671.1768578529316, - 1923.659057962437, - 5538.148487297311, - 9140.78548549558, - 11870.712686399122, - 13042.708370916462, - 12452.229846075425, - 11022.020811479988, - 10417.901650306116, - 12715.607734097435, - 20020.05490485775, - 33755.576715459894, - 54980.755475777885, - 80408.61758227149, - 109588.39075920783, - 140276.69454126054, - 163759.62144128716 - ], - "flow:J65:branch41_seg1": [ - 36.135913552779506, - 41.219279237811136, - 44.20554422370437, - 44.86705476019704, - 43.32920952279277, - 39.935495582828864, - 35.230142649822625, - 29.961003413740666, - 24.69272405995984, - 19.690920059897543, - 15.331423488590433, - 11.421743465230149, - 7.8321765744333804, - 4.454516004939681, - 1.0135779199553254, - -2.3637416711219825, - -5.706362461109806, - -8.852834831426703, - -11.481219701524717, - -13.627288459033739, - -15.170427679457246, - -16.153563832473385, - -16.768083057804805, - -17.1134394424646, - -17.32615226610172, - -17.44621789712194, - -17.415398127914738, - -17.148747862189364, - -16.56100636322617, - -15.632046544294678, - -14.455894686327488, - -13.289869969060634, - -12.409438895562406, - -12.1639599622592, - -12.798148308516234, - -14.384390140443749, - -16.747354422751098, - -19.590989349818067, - -22.384730993403064, - -24.540410387097673, - -25.66838386581952, - -25.423242444466865, - -23.75500419150686, - -20.862248251046587, - -17.219238310595376, - -13.140764287431823, - -9.192378735721947, - -5.739396993077412, - -2.8235990808656157, - -0.5917798697211339, - 1.1597334202720202, - 2.601156990939846, - 3.7905389293345286, - 4.861311682404085, - 5.715966789134813, - 6.233111133885759, - 6.306220428190334, - 5.8316781419147015, - 4.826674954994435, - 3.4365621877421315, - 1.8813731072731843, - 0.3825748704070445, - -0.7797980357235125, - -1.5283436296390942, - -1.8603950336809902, - -1.869503798135332, - -1.7634591315639316, - -1.735896703486234, - -1.9148197489256713, - -2.3357438480770343, - -2.8987792541707686, - -3.463662691483398, - -3.8299189459634966, - -3.849932790407499, - -3.487988793011006, - -2.8126145883672327, - -1.9725037991801984, - -1.1683836342945142, - -0.5942035930399293, - -0.30316689620448983, - -0.28348754132264775, - -0.4020264870795928, - -0.46396822990963926, - -0.30248446657192746, - 0.17019934275743895, - 0.9136822248470474, - 1.767807398543859, - 2.5294954992345065, - 2.967618104552824, - 3.016460901568501, - 2.773294371674538, - 2.5306545331887182, - 2.743925728945495, - 3.9134613493582098, - 6.467272318140884, - 10.647688542778043, - 16.178109022309506, - 22.854358223703272, - 29.845909117062245, - 36.135913552779506 - ], - "pressure:J65:branch41_seg1": [ - 163759.62144128716, - 181383.40171313274, - 190276.6130323792, - 187923.79557775773, - 177080.7316300996, - 159918.30624400888, - 138654.95404982383, - 114851.04053052531, - 93633.53607264803, - 73823.39013802417, - 56001.514358910565, - 40888.94869204704, - 25988.18376884841, - 11888.539452003866, - -2387.810594066849, - -16780.934937107657, - -30553.943117728886, - -43278.021275256404, - -53239.20892565122, - -60958.034171155276, - -66500.22501992926, - -69576.2409432469, - -71490.45075761902, - -72598.39932927428, - -73236.34993655093, - -73575.58707466634, - -73067.05356481958, - -71354.72453603403, - -68150.80733299477, - -63701.07465152267, - -58351.10140299244, - -53723.10511469056, - -51099.59317714974, - -51443.46164210571, - -55987.47161658363, - -64512.57340742081, - -75855.73940949497, - -88160.41164764372, - -99466.16012912168, - -106844.85753762392, - -108961.58261968408, - -105222.77536529605, - -95455.4769690133, - -80839.61580850263, - -64651.911110364344, - -47297.8415016867, - -30770.843387371915, - -17772.757861152295, - -6715.555144718782, - 1614.8533402386047, - 7856.003043045453, - 13759.432612599789, - 18257.816144547276, - 22255.429644769552, - 25607.44902384799, - 26882.105444110915, - 26133.408730087296, - 23095.526649297004, - 17953.307629412935, - 11353.571172118449, - 4781.738914152342, - -1018.0061776895127, - -5317.157321467695, - -7494.873605282283, - -8115.154636552334, - -7741.720197537017, - -7210.750650940542, - -7402.104647363713, - -8653.911239505638, - -10906.152199341212, - -13388.45200138792, - -15545.453640437805, - -16608.890365206185, - -15890.233139167516, - -13581.183500235838, - -10234.90252972492, - -6652.068454797584, - -3389.5043723624494, - -1594.0925277114184, - -1057.7251436835468, - -1325.9045550405615, - -1929.7977430330782, - -1919.6658590570762, - -671.1768578529316, - 1923.659057962437, - 5538.148487297311, - 9140.78548549558, - 11870.712686399122, - 13042.708370916462, - 12452.229846075425, - 11022.020811479988, - 10417.901650306116, - 12715.607734097435, - 20020.05490485775, - 33755.576715459894, - 54980.755475777885, - 80408.61758227149, - 109588.39075920783, - 140276.69454126054, - 163759.62144128716 - ], - "flow:branch41_seg1:J66": [ - 36.109733519791924, - 41.20274937059646, - 44.201064332342625, - 44.87401648941282, - 43.3481024293445, - 39.95947678288371, - 35.25393216105805, - 29.993386437668732, - 24.714803724105572, - 19.707464935067936, - 15.352275804082923, - 11.436323574421358, - 7.847431008539365, - 4.4704068785695235, - 1.0242833318325435, - -2.3470779157237507, - -5.6898104984537365, - -8.84470051628466, - -11.470296005714557, - -13.61934533575511, - -15.16648724524399, - -16.149821708845387, - -16.76667816685601, - -17.112533264810935, - -17.325078751940374, - -17.44623885171906, - -17.416577357519184, - -17.151561164225537, - -16.566071594718053, - -15.638008346505814, - -14.462352842673317, - -13.294603426590601, - -12.4102476685681, - -12.160818913070473, - -12.790760600670556, - -14.374410465464226, - -16.73228494011246, - -19.57887980977318, - -22.375511923938543, - -24.534352842098425, - -25.670502598431625, - -25.430755035604356, - -23.768174706498698, - -20.876846892906535, - -17.238776223532444, - -13.161453548316349, - -9.2084175497922, - -5.754946499872613, - -2.8344658804203093, - -0.6002973596207732, - 1.151261262121398, - 2.5944673069103037, - 3.785615908348296, - 4.856889720060117, - 5.71261743093512, - 6.232736375759566, - 6.308739929567714, - 5.836897581061648, - 4.832829461236794, - 3.445469679572, - 1.8881606190823064, - 0.3856815349479361, - -0.7754547952361678, - -1.526765299641972, - -1.8610252738636286, - -1.8699750803507083, - -1.763602770633698, - -1.7352329950319954, - -1.9129037966658704, - -2.3333181441101973, - -2.895964376377258, - -3.4612545178517347, - -3.829739926252528, - -3.851489796278919, - -3.491426904723538, - -2.8171092475814774, - -1.9769476601082538, - -1.171865399522846, - -0.5955038363623975, - -0.3030678657977891, - -0.28264849964937616, - -0.40162788307492553, - -0.46469709026912226, - -0.3048818968828835, - 0.16688071634795335, - 0.9090589363669991, - 1.7642443396153673, - 2.5286842156080445, - 2.9670755003719025, - 3.0175071978760575, - 2.774718416657376, - 2.530259454836613, - 2.739186449695899, - 3.90232535690887, - 6.447764168275388, - 10.62324753173781, - 16.147057521538862, - 22.81367244249497, - 29.813075721558533, - 36.109733519791924 - ], - "pressure:branch41_seg1:J66": [ - 159180.1075344572, - 177721.89274476888, - 187639.5144544668, - 186734.68077581085, - 177225.03944590196, - 161012.28205060208, - 140348.7759912737, - 117170.0621560549, - 95757.73023853524, - 75793.20222333018, - 57957.87424070519, - 42557.401429632526, - 27737.253261925493, - 13683.233730750448, - -555.9970854626414, - -14736.934804994771, - -28529.003842857976, - -41328.080182389, - -51453.866597190754, - -59490.01936800033, - -65262.92108111953, - -68588.47191078312, - -70684.82108640065, - -71873.84428933467, - -72573.61114231712, - -72965.4313695841, - -72566.70101184348, - -71036.42368936654, - -68066.05730984002, - -63806.15672675466, - -58606.74057042083, - -53926.03445135256, - -51018.55843845635, - -50953.05007804169, - -54939.30178715189, - -62889.206302475846, - -73743.88813673424, - -85903.22900385661, - -97249.74699646277, - -105052.3266310225, - -107888.71758312252, - -104920.27614618148, - -95978.30022330256, - -82101.67433693228, - -66342.91066747965, - -49173.44690765219, - -32704.684666844663, - -19436.329312758648, - -8100.903485919554, - 450.9521016055165, - 6930.016956245497, - 12868.547074158694, - 17464.442543323414, - 21559.244480300636, - 24975.34091065738, - 26496.988768843174, - 26052.462168810238, - 23338.448932510746, - 18486.23003224047, - 12154.616317585447, - 5606.470531674053, - -291.15952832153636, - -4711.4895857011015, - -7154.277468243904, - -7980.409546429376, - -7717.763491008102, - -7210.610921787811, - -7315.019294087418, - -8419.565565372086, - -10529.495130864265, - -12951.53355833037, - -15151.467187117305, - -16349.915131443553, - -15856.392552246523, - -13786.596218334616, - -10608.955464401664, - -7075.072086230536, - -3791.849772636591, - -1833.8615798474739, - -1113.6053171783406, - -1273.0140020624565, - -1848.5789490783523, - -1918.0806877236078, - -843.1790202374694, - 1565.852540218756, - 5013.906502163856, - 8604.282479138936, - 11450.7523305116, - 12792.909309504952, - 12428.578320570034, - 11113.467635982539, - 10394.818261481178, - 12280.640949995464, - 18866.300631126727, - 31657.121216886637, - 51763.273017622916, - 76325.68227197933, - 104885.98864175742, - 135142.53435972548, - 159180.1075344572 - ], - "flow:J66:branch41_seg2": [ - 36.109733519791924, - 41.20274937059646, - 44.201064332342625, - 44.87401648941282, - 43.3481024293445, - 39.95947678288371, - 35.25393216105805, - 29.993386437668732, - 24.714803724105572, - 19.707464935067936, - 15.352275804082923, - 11.436323574421358, - 7.847431008539365, - 4.4704068785695235, - 1.0242833318325435, - -2.3470779157237507, - -5.6898104984537365, - -8.84470051628466, - -11.470296005714557, - -13.61934533575511, - -15.16648724524399, - -16.149821708845387, - -16.76667816685601, - -17.112533264810935, - -17.325078751940374, - -17.44623885171906, - -17.416577357519184, - -17.151561164225537, - -16.566071594718053, - -15.638008346505814, - -14.462352842673317, - -13.294603426590601, - -12.4102476685681, - -12.160818913070473, - -12.790760600670556, - -14.374410465464226, - -16.73228494011246, - -19.57887980977318, - -22.375511923938543, - -24.534352842098425, - -25.670502598431625, - -25.430755035604356, - -23.768174706498698, - -20.876846892906535, - -17.238776223532444, - -13.161453548316349, - -9.2084175497922, - -5.754946499872613, - -2.8344658804203093, - -0.6002973596207732, - 1.151261262121398, - 2.5944673069103037, - 3.785615908348296, - 4.856889720060117, - 5.71261743093512, - 6.232736375759566, - 6.308739929567714, - 5.836897581061648, - 4.832829461236794, - 3.445469679572, - 1.8881606190823064, - 0.3856815349479361, - -0.7754547952361678, - -1.526765299641972, - -1.8610252738636286, - -1.8699750803507083, - -1.763602770633698, - -1.7352329950319954, - -1.9129037966658704, - -2.3333181441101973, - -2.895964376377258, - -3.4612545178517347, - -3.829739926252528, - -3.851489796278919, - -3.491426904723538, - -2.8171092475814774, - -1.9769476601082538, - -1.171865399522846, - -0.5955038363623975, - -0.3030678657977891, - -0.28264849964937616, - -0.40162788307492553, - -0.46469709026912226, - -0.3048818968828835, - 0.16688071634795335, - 0.9090589363669991, - 1.7642443396153673, - 2.5286842156080445, - 2.9670755003719025, - 3.0175071978760575, - 2.774718416657376, - 2.530259454836613, - 2.739186449695899, - 3.90232535690887, - 6.447764168275388, - 10.62324753173781, - 16.147057521538862, - 22.81367244249497, - 29.813075721558533, - 36.109733519791924 - ], - "pressure:J66:branch41_seg2": [ - 159180.1075344572, - 177721.89274476888, - 187639.5144544668, - 186734.68077581085, - 177225.03944590196, - 161012.28205060208, - 140348.7759912737, - 117170.0621560549, - 95757.73023853524, - 75793.20222333018, - 57957.87424070519, - 42557.401429632526, - 27737.253261925493, - 13683.233730750448, - -555.9970854626414, - -14736.934804994771, - -28529.003842857976, - -41328.080182389, - -51453.866597190754, - -59490.01936800033, - -65262.92108111953, - -68588.47191078312, - -70684.82108640065, - -71873.84428933467, - -72573.61114231712, - -72965.4313695841, - -72566.70101184348, - -71036.42368936654, - -68066.05730984002, - -63806.15672675466, - -58606.74057042083, - -53926.03445135256, - -51018.55843845635, - -50953.05007804169, - -54939.30178715189, - -62889.206302475846, - -73743.88813673424, - -85903.22900385661, - -97249.74699646277, - -105052.3266310225, - -107888.71758312252, - -104920.27614618148, - -95978.30022330256, - -82101.67433693228, - -66342.91066747965, - -49173.44690765219, - -32704.684666844663, - -19436.329312758648, - -8100.903485919554, - 450.9521016055165, - 6930.016956245497, - 12868.547074158694, - 17464.442543323414, - 21559.244480300636, - 24975.34091065738, - 26496.988768843174, - 26052.462168810238, - 23338.448932510746, - 18486.23003224047, - 12154.616317585447, - 5606.470531674053, - -291.15952832153636, - -4711.4895857011015, - -7154.277468243904, - -7980.409546429376, - -7717.763491008102, - -7210.610921787811, - -7315.019294087418, - -8419.565565372086, - -10529.495130864265, - -12951.53355833037, - -15151.467187117305, - -16349.915131443553, - -15856.392552246523, - -13786.596218334616, - -10608.955464401664, - -7075.072086230536, - -3791.849772636591, - -1833.8615798474739, - -1113.6053171783406, - -1273.0140020624565, - -1848.5789490783523, - -1918.0806877236078, - -843.1790202374694, - 1565.852540218756, - 5013.906502163856, - 8604.282479138936, - 11450.7523305116, - 12792.909309504952, - 12428.578320570034, - 11113.467635982539, - 10394.818261481178, - 12280.640949995464, - 18866.300631126727, - 31657.121216886637, - 51763.273017622916, - 76325.68227197933, - 104885.98864175742, - 135142.53435972548, - 159180.1075344572 - ], - "flow:branch51_seg0:J67": [ - 16.510541207399143, - 19.515130628535854, - 21.82814487100036, - 23.25799923041521, - 23.72941661282289, - 23.262672695045065, - 21.993796167037885, - 20.191086066594593, - 18.05763722687922, - 15.761062600961752, - 13.518554557883995, - 11.307639844239198, - 9.151123337240744, - 7.041685643883843, - 4.889722861182018, - 2.76236799179115, - 0.6400214921983037, - -1.4158658708366803, - -3.2600221503103413, - -4.894946653785988, - -6.24989946916121, - -7.317189927541726, - -8.155833619166705, - -8.796127073537685, - -9.294149449998933, - -9.676410098405842, - -9.932994457792786, - -10.040647838702919, - -9.970369665576275, - -9.710198295949738, - -9.29247777133778, - -8.810961087085422, - -8.377757320988525, - -8.148463466072068, - -8.24703209720829, - -8.743628127936109, - -9.609525657592403, - -10.767779290614536, - -12.021981039842865, - -13.133802206687141, - -13.920274976336486, - -14.188895441856754, - -13.86205356092206, - -12.956317623547053, - -11.611755922622637, - -9.931624758166896, - -8.134605431579237, - -6.389787933329585, - -4.756337080626615, - -3.3366485602825726, - -2.095078491453612, - -0.9973526046269967, - -0.033659497407258876, - 0.8388471336604639, - 1.58541254022143, - 2.165520976563711, - 2.5330390361208974, - 2.6390612609341377, - 2.4758287719264818, - 2.0872091721354615, - 1.5445384405905171, - 0.936188928075379, - 0.3887380316027282, - -0.050724022538414765, - -0.34963781192023285, - -0.5154437328231063, - -0.6106974202262047, - -0.7021285739384858, - -0.8436446183576337, - -1.0626159590216482, - -1.3367926590446855, - -1.6235723362721863, - -1.8502586874731826, - -1.9528827240929187, - -1.903046439466638, - -1.709097758901505, - -1.41360726392962, - -1.0886807503630234, - -0.8111510790260256, - -0.6174787941600157, - -0.5220116529074951, - -0.4901950696708885, - -0.4576063138721487, - -0.3598667907623417, - -0.15240286131944009, - 0.16446651724103742, - 0.5462631882360295, - 0.9230036950561997, - 1.1995244004516585, - 1.3385823639776973, - 1.3547385514657404, - 1.3400214985468768, - 1.461882414437208, - 1.9248510582673244, - 2.927825298572801, - 4.618757779184063, - 6.958783216293322, - 9.919748259052811, - 13.230245410920018, - 16.510541207399143 - ], - "pressure:branch51_seg0:J67": [ - 117279.55289869977, - 135850.467696732, - 149711.0770192466, - 156767.25336465373, - 157521.30798861955, - 152500.84521657202, - 142645.90930022413, - 129231.61898671076, - 114749.98310625287, - 99474.09875929402, - 84476.59889879127, - 70121.07051920067, - 55758.85057696916, - 41747.824017043815, - 27470.388141869502, - 13254.823608072127, - -716.7034299906562, - -14216.451220877776, - -25917.206955624737, - -36088.9196186621, - -44541.68799071024, - -50949.49524300245, - -55997.59857201081, - -59872.54888112697, - -62848.179295092086, - -65132.395208366186, - -66510.6525015402, - -66813.89359841225, - -65875.25254231457, - -63745.01570952075, - -60626.43231992459, - -57394.27790405888, - -54876.52659439456, - -53924.647870021334, - -55454.82751340767, - -59731.091240622576, - -66314.13096244371, - -74432.25863567613, - -82824.22563834258, - -89616.50762101548, - -93735.77165568828, - -94220.83705575476, - -90595.51322569413, - -83131.65451972264, - -73412.50451563532, - -61792.51120248338, - -49507.237547323864, - -38347.17713944711, - -27897.176423243945, - -18882.867536402056, - -11199.88127822966, - -4074.5903525308654, - 2001.8668563971783, - 7441.866143650311, - 12178.532678352001, - 15529.576246116902, - 17372.775383230408, - 17462.731572819775, - 15785.188821103617, - 12673.126232643259, - 8845.468613213445, - 4831.182055319435, - 1346.2577991716587, - -1211.3857757122685, - -2861.6842486665314, - -3724.3854832096, - -4242.906066565695, - -4912.342811638285, - -6023.130961890018, - -7677.305011684081, - -9566.318405823602, - -11397.537590517939, - -12719.516459956758, - -13038.827715336969, - -12312.719304186354, - -10720.828295292336, - -8638.025455779534, - -6438.320556784191, - -4794.048793154271, - -3787.424803074787, - -3322.5233367348833, - -3196.9793123850773, - -2909.799802153951, - -2040.2892466374174, - -391.50691790418773, - 1961.909755976215, - 4561.021551127692, - 6921.665838323627, - 8486.47176990765, - 9048.69795454755, - 8925.442893472686, - 8934.004529918542, - 10303.326068109363, - 14438.807994366394, - 22538.24567341136, - 35651.837745859106, - 52569.118539043346, - 73154.34392750915, - 96293.37958510776, - 117279.55289869977 - ], - "flow:J67:branch51_seg1": [ - 16.510541207399143, - 19.515130628535854, - 21.82814487100036, - 23.25799923041521, - 23.72941661282289, - 23.262672695045065, - 21.993796167037885, - 20.191086066594593, - 18.05763722687922, - 15.761062600961752, - 13.518554557883995, - 11.307639844239198, - 9.151123337240744, - 7.041685643883843, - 4.889722861182018, - 2.76236799179115, - 0.6400214921983037, - -1.4158658708366803, - -3.2600221503103413, - -4.894946653785988, - -6.24989946916121, - -7.317189927541726, - -8.155833619166705, - -8.796127073537685, - -9.294149449998933, - -9.676410098405842, - -9.932994457792786, - -10.040647838702919, - -9.970369665576275, - -9.710198295949738, - -9.29247777133778, - -8.810961087085422, - -8.377757320988525, - -8.148463466072068, - -8.24703209720829, - -8.743628127936109, - -9.609525657592403, - -10.767779290614536, - -12.021981039842865, - -13.133802206687141, - -13.920274976336486, - -14.188895441856754, - -13.86205356092206, - -12.956317623547053, - -11.611755922622637, - -9.931624758166896, - -8.134605431579237, - -6.389787933329585, - -4.756337080626615, - -3.3366485602825726, - -2.095078491453612, - -0.9973526046269967, - -0.033659497407258876, - 0.8388471336604639, - 1.58541254022143, - 2.165520976563711, - 2.5330390361208974, - 2.6390612609341377, - 2.4758287719264818, - 2.0872091721354615, - 1.5445384405905171, - 0.936188928075379, - 0.3887380316027282, - -0.050724022538414765, - -0.34963781192023285, - -0.5154437328231063, - -0.6106974202262047, - -0.7021285739384858, - -0.8436446183576337, - -1.0626159590216482, - -1.3367926590446855, - -1.6235723362721863, - -1.8502586874731826, - -1.9528827240929187, - -1.903046439466638, - -1.709097758901505, - -1.41360726392962, - -1.0886807503630234, - -0.8111510790260256, - -0.6174787941600157, - -0.5220116529074951, - -0.4901950696708885, - -0.4576063138721487, - -0.3598667907623417, - -0.15240286131944009, - 0.16446651724103742, - 0.5462631882360295, - 0.9230036950561997, - 1.1995244004516585, - 1.3385823639776973, - 1.3547385514657404, - 1.3400214985468768, - 1.461882414437208, - 1.9248510582673244, - 2.927825298572801, - 4.618757779184063, - 6.958783216293322, - 9.919748259052811, - 13.230245410920018, - 16.510541207399143 - ], - "pressure:J67:branch51_seg1": [ - 117279.55289869977, - 135850.467696732, - 149711.0770192466, - 156767.25336465373, - 157521.30798861955, - 152500.84521657202, - 142645.90930022413, - 129231.61898671076, - 114749.98310625287, - 99474.09875929402, - 84476.59889879127, - 70121.07051920067, - 55758.85057696916, - 41747.824017043815, - 27470.388141869502, - 13254.823608072127, - -716.7034299906562, - -14216.451220877776, - -25917.206955624737, - -36088.9196186621, - -44541.68799071024, - -50949.49524300245, - -55997.59857201081, - -59872.54888112697, - -62848.179295092086, - -65132.395208366186, - -66510.6525015402, - -66813.89359841225, - -65875.25254231457, - -63745.01570952075, - -60626.43231992459, - -57394.27790405888, - -54876.52659439456, - -53924.647870021334, - -55454.82751340767, - -59731.091240622576, - -66314.13096244371, - -74432.25863567613, - -82824.22563834258, - -89616.50762101548, - -93735.77165568828, - -94220.83705575476, - -90595.51322569413, - -83131.65451972264, - -73412.50451563532, - -61792.51120248338, - -49507.237547323864, - -38347.17713944711, - -27897.176423243945, - -18882.867536402056, - -11199.88127822966, - -4074.5903525308654, - 2001.8668563971783, - 7441.866143650311, - 12178.532678352001, - 15529.576246116902, - 17372.775383230408, - 17462.731572819775, - 15785.188821103617, - 12673.126232643259, - 8845.468613213445, - 4831.182055319435, - 1346.2577991716587, - -1211.3857757122685, - -2861.6842486665314, - -3724.3854832096, - -4242.906066565695, - -4912.342811638285, - -6023.130961890018, - -7677.305011684081, - -9566.318405823602, - -11397.537590517939, - -12719.516459956758, - -13038.827715336969, - -12312.719304186354, - -10720.828295292336, - -8638.025455779534, - -6438.320556784191, - -4794.048793154271, - -3787.424803074787, - -3322.5233367348833, - -3196.9793123850773, - -2909.799802153951, - -2040.2892466374174, - -391.50691790418773, - 1961.909755976215, - 4561.021551127692, - 6921.665838323627, - 8486.47176990765, - 9048.69795454755, - 8925.442893472686, - 8934.004529918542, - 10303.326068109363, - 14438.807994366394, - 22538.24567341136, - 35651.837745859106, - 52569.118539043346, - 73154.34392750915, - 96293.37958510776, - 117279.55289869977 - ], - "flow:branch51_seg1:J68": [ - 16.48848454125523, - 19.497899832252607, - 21.816290898934824, - 23.25368228857316, - 23.73304435224935, - 23.271517169474226, - 22.005030373626173, - 20.208936122530222, - 18.073502722548092, - 15.774856420421042, - 13.535019335700676, - 11.321940596534654, - 9.165506670547545, - 7.056658399392969, - 4.902567513812906, - 2.7772027315223577, - 0.6552808287342032, - -1.4042329559763724, - -3.24835220001781, - -4.885026297884227, - -6.242382031522872, - -7.310874623484525, - -8.151272532137131, - -8.792578912643153, - -9.29123850650026, - -9.674419033979857, - -9.932067396126564, - -10.040984701952135, - -9.972305641655543, - -9.71310723168267, - -9.296206772080799, - -8.814370065260084, - -8.379364913266533, - -8.14809001274405, - -8.244058996615818, - -8.73834879964892, - -9.601119499390673, - -10.759376555647224, - -12.01439867356168, - -13.127623872378305, - -13.918286358904984, - -14.190490768994156, - -13.867646402193502, - -12.964622185924405, - -11.623087113473193, - -9.94468234000382, - -8.14711554712211, - -6.401850330865985, - -4.766565585623033, - -3.3456774707078014, - -2.1032761892005003, - -1.0048302859657396, - -0.03985700880469499, - 0.8335840100254911, - 1.5807337222155684, - 2.162690118968376, - 2.532204921149085, - 2.6401060183673075, - 2.47814858466715, - 2.09149650013305, - 1.5487758409418761, - 0.9391081609767509, - 0.3921613686244599, - -0.048413029448877376, - -0.34865542720109344, - -0.5147227872663107, - -0.610078938428247, - -0.7012791755082763, - -0.8422178915875265, - -1.0607912721731996, - -1.3347651241993062, - -1.621715167168075, - -1.8493204779887464, - -1.9530356080587423, - -1.9043743773168866, - -1.7113086640321309, - -1.4160394080313758, - -1.091054439183429, - -0.8126159390910836, - -0.6180831640975936, - -0.5222021515892051, - -0.4903720996850287, - -0.4581904188716421, - -0.36125367411839215, - -0.15443166613488848, - 0.16162032013009905, - 0.5435665299389499, - 0.9214632278634641, - 1.1983434856531432, - 1.3382959120102191, - 1.354983158748216, - 1.339587103047853, - 1.4593081672688746, - 1.9187687223631535, - 2.9168235959244684, - 4.603351979026195, - 6.938995150116805, - 9.894833949560244, - 13.204914724526219, - 16.48848454125523 - ], - "pressure:branch51_seg1:J68": [ - 108448.69062704314, - 127495.0549701878, - 142049.87771920272, - 150665.89586800715, - 153115.6971903698, - 149617.3889367426, - 141058.8290647094, - 129077.85558522386, - 115212.23936440298, - 100375.14316809156, - 85893.80229744408, - 71703.3077174872, - 57781.740089695304, - 44176.65287845634, - 30286.93445452537, - 16554.672230204924, - 2899.9101868154444, - -10341.567218416933, - -22089.948378320398, - -32463.816134637807, - -41073.53945694025, - -47784.65421010839, - -53067.2400548979, - -57104.30078767529, - -60233.72987556085, - -62639.09571916662, - -64215.65933626676, - -64810.00500100026, - -64242.54381317583, - -62464.804485780274, - -59684.784563508365, - -56568.45155364225, - -53859.421238431285, - -52520.445155074274, - -53374.258077694714, - -56825.36557421592, - -62615.797071513254, - -70204.74497289381, - -78321.07528771006, - -85349.62737357587, - -90159.56357955019, - -91572.66305195184, - -89103.89472578, - -82892.10516333618, - -74026.33045529589, - -63072.36684453455, - -51377.91563427714, - -40229.064598316945, - -29780.99036927314, - -20720.74067138977, - -12852.037743415629, - -5805.443587185349, - 336.3284974388665, - 5879.113453309886, - 10643.014232976015, - 14265.305638615702, - 16490.65405260799, - 17023.31848592796, - 15819.744510248482, - 13182.290457249219, - 9619.369288186725, - 5692.036637374976, - 2201.650142521, - -545.8922786084361, - -2394.1353194688973, - -3402.5073137423947, - -3987.618985786134, - -4592.902723324825, - -5548.306576972743, - -7012.522458057253, - -8798.911480492221, - -10631.408019527818, - -12051.523458011354, - -12624.199241976925, - -12204.702068634151, - -10877.550552501718, - -8939.924494038902, - -6831.025104483522, - -5087.069365051149, - -3906.208779479003, - -3332.2176507574386, - -3149.5535142807457, - -2922.8940066908494, - -2238.403743432039, - -831.1732883825905, - 1275.226796129512, - 3757.6583739337084, - 6158.724776236655, - 7873.550808299518, - 8680.567035813769, - 8726.67048647577, - 8655.808716239135, - 9578.26763646503, - 12827.28182004339, - 19653.52526273287, - 31042.3332471377, - 46483.53622218827, - 65805.26988098063, - 87476.31179321263, - 108448.69062704314 - ], - "flow:J68:branch51_seg2": [ - 16.48848454125523, - 19.497899832252607, - 21.816290898934824, - 23.25368228857316, - 23.73304435224935, - 23.271517169474226, - 22.005030373626173, - 20.208936122530222, - 18.073502722548092, - 15.774856420421042, - 13.535019335700676, - 11.321940596534654, - 9.165506670547545, - 7.056658399392969, - 4.902567513812906, - 2.7772027315223577, - 0.6552808287342032, - -1.4042329559763724, - -3.24835220001781, - -4.885026297884227, - -6.242382031522872, - -7.310874623484525, - -8.151272532137131, - -8.792578912643153, - -9.29123850650026, - -9.674419033979857, - -9.932067396126564, - -10.040984701952135, - -9.972305641655543, - -9.71310723168267, - -9.296206772080799, - -8.814370065260084, - -8.379364913266533, - -8.14809001274405, - -8.244058996615818, - -8.73834879964892, - -9.601119499390673, - -10.759376555647224, - -12.01439867356168, - -13.127623872378305, - -13.918286358904984, - -14.190490768994156, - -13.867646402193502, - -12.964622185924405, - -11.623087113473193, - -9.94468234000382, - -8.14711554712211, - -6.401850330865985, - -4.766565585623033, - -3.3456774707078014, - -2.1032761892005003, - -1.0048302859657396, - -0.03985700880469499, - 0.8335840100254911, - 1.5807337222155684, - 2.162690118968376, - 2.532204921149085, - 2.6401060183673075, - 2.47814858466715, - 2.09149650013305, - 1.5487758409418761, - 0.9391081609767509, - 0.3921613686244599, - -0.048413029448877376, - -0.34865542720109344, - -0.5147227872663107, - -0.610078938428247, - -0.7012791755082763, - -0.8422178915875265, - -1.0607912721731996, - -1.3347651241993062, - -1.621715167168075, - -1.8493204779887464, - -1.9530356080587423, - -1.9043743773168866, - -1.7113086640321309, - -1.4160394080313758, - -1.091054439183429, - -0.8126159390910836, - -0.6180831640975936, - -0.5222021515892051, - -0.4903720996850287, - -0.4581904188716421, - -0.36125367411839215, - -0.15443166613488848, - 0.16162032013009905, - 0.5435665299389499, - 0.9214632278634641, - 1.1983434856531432, - 1.3382959120102191, - 1.354983158748216, - 1.339587103047853, - 1.4593081672688746, - 1.9187687223631535, - 2.9168235959244684, - 4.603351979026195, - 6.938995150116805, - 9.894833949560244, - 13.204914724526219, - 16.48848454125523 - ], - "pressure:J68:branch51_seg2": [ - 108448.69062704314, - 127495.0549701878, - 142049.87771920272, - 150665.89586800715, - 153115.6971903698, - 149617.3889367426, - 141058.8290647094, - 129077.85558522386, - 115212.23936440298, - 100375.14316809156, - 85893.80229744408, - 71703.3077174872, - 57781.740089695304, - 44176.65287845634, - 30286.93445452537, - 16554.672230204924, - 2899.9101868154444, - -10341.567218416933, - -22089.948378320398, - -32463.816134637807, - -41073.53945694025, - -47784.65421010839, - -53067.2400548979, - -57104.30078767529, - -60233.72987556085, - -62639.09571916662, - -64215.65933626676, - -64810.00500100026, - -64242.54381317583, - -62464.804485780274, - -59684.784563508365, - -56568.45155364225, - -53859.421238431285, - -52520.445155074274, - -53374.258077694714, - -56825.36557421592, - -62615.797071513254, - -70204.74497289381, - -78321.07528771006, - -85349.62737357587, - -90159.56357955019, - -91572.66305195184, - -89103.89472578, - -82892.10516333618, - -74026.33045529589, - -63072.36684453455, - -51377.91563427714, - -40229.064598316945, - -29780.99036927314, - -20720.74067138977, - -12852.037743415629, - -5805.443587185349, - 336.3284974388665, - 5879.113453309886, - 10643.014232976015, - 14265.305638615702, - 16490.65405260799, - 17023.31848592796, - 15819.744510248482, - 13182.290457249219, - 9619.369288186725, - 5692.036637374976, - 2201.650142521, - -545.8922786084361, - -2394.1353194688973, - -3402.5073137423947, - -3987.618985786134, - -4592.902723324825, - -5548.306576972743, - -7012.522458057253, - -8798.911480492221, - -10631.408019527818, - -12051.523458011354, - -12624.199241976925, - -12204.702068634151, - -10877.550552501718, - -8939.924494038902, - -6831.025104483522, - -5087.069365051149, - -3906.208779479003, - -3332.2176507574386, - -3149.5535142807457, - -2922.8940066908494, - -2238.403743432039, - -831.1732883825905, - 1275.226796129512, - 3757.6583739337084, - 6158.724776236655, - 7873.550808299518, - 8680.567035813769, - 8726.67048647577, - 8655.808716239135, - 9578.26763646503, - 12827.28182004339, - 19653.52526273287, - 31042.3332471377, - 46483.53622218827, - 65805.26988098063, - 87476.31179321263, - 108448.69062704314 - ], - "flow:branch60_seg0:J69": [ - 30.591697256670884, - 34.060141586565585, - 35.61629135950733, - 35.234661447426355, - 33.19903848537601, - 29.852502950476204, - 25.671661586773308, - 21.322305432414648, - 17.217745153736452, - 13.398209250514727, - 10.217562374487827, - 7.352928642291497, - 4.640709235447375, - 2.0656725545247134, - -0.6767418115308695, - -3.3478366786789375, - -5.95610924194416, - -8.39631219739275, - -10.275766894065033, - -11.74987664472798, - -12.722574679679576, - -13.24402585377349, - -13.545030142402132, - -13.681726855822658, - -13.76151664211319, - -13.791067146335317, - -13.68180783901479, - -13.350477532506112, - -12.734825705483436, - -11.843364116210543, - -10.796855740382883, - -9.866122982542631, - -9.283848680462603, - -9.341255343200237, - -10.197152157455907, - -11.831854764476137, - -13.997774857379781, - -16.39336060236186, - -18.54335953827847, - -19.91666801643993, - -20.311917112025377, - -19.49782224625802, - -17.556388736863052, - -14.74096755713095, - -11.571818400956227, - -8.240045489176353, - -5.225029548476855, - -2.793603953316454, - -0.8065781575320584, - 0.6063528352552189, - 1.7067419511188928, - 2.6574067676917053, - 3.446920410513966, - 4.192118270014275, - 4.750929352531329, - 4.995884885376084, - 4.8573622362193705, - 4.259197155359589, - 3.2572706340477415, - 2.0173307078139735, - 0.7536446253848922, - -0.3793501631209736, - -1.1343723649118136, - -1.520076722524079, - -1.5940161212683728, - -1.4559269561660124, - -1.3121668263424133, - -1.3156236283433684, - -1.5347497269417696, - -1.9591795197345758, - -2.453214818140109, - -2.886962113914366, - -3.088849758122829, - -2.957499374230388, - -2.512445290000947, - -1.8571281545987322, - -1.1379079398506942, - -0.5302228196139038, - -0.18403875302624198, - -0.08635879638992938, - -0.18909657596678645, - -0.3455686811904035, - -0.37679931625241375, - -0.16225382118225554, - 0.32977400125909173, - 1.0169715443705056, - 1.7183116742183233, - 2.2667266432249304, - 2.469366272594047, - 2.3369447695364056, - 2.0227691356916906, - 1.8320489315562103, - 2.180733697297511, - 3.479374992466782, - 6.014254717295332, - 9.927282403432981, - 14.766275830753882, - 20.380530613269574, - 25.969810495062323, - 30.591697256670884 - ], - "pressure:branch60_seg0:J69": [ - 180218.3703377509, - 196085.94511672822, - 202054.23595718364, - 195804.48876189417, - 181110.76046344487, - 160557.88849251618, - 136489.53036479518, - 110757.94688619193, - 89338.52915403538, - 68980.38791252776, - 51182.69622632373, - 36427.57854597342, - 20837.72011945455, - 6389.098361737973, - -8810.246499950912, - -24366.309345849597, - -38357.86073610892, - -51627.62558652466, - -61420.43960948342, - -68418.94780886477, - -73262.18492798107, - -75463.52529179299, - -76683.57231810792, - -77346.68486464108, - -77637.97406653923, - -77654.56664352516, - -76686.09385429327, - -74244.50324316595, - -70132.27939789533, - -64724.35540386184, - -58626.79322101517, - -53832.20539203822, - -51752.511949841195, - -53380.54197191117, - -59790.810721492344, - -70375.97439982386, - -83520.99022420112, - -96561.2003141414, - -107953.92849141592, - -113800.77364691341, - -113534.16544862594, - -106807.07135763536, - -93973.0005024333, - -76563.62748379816, - -58472.444500636455, - -40209.745712120595, - -23596.839288804833, - -11354.573740421587, - -1302.4334984968257, - 6019.575736652119, - 11423.770154669322, - 16794.47703341661, - 20960.644246934004, - 24699.159546263643, - 27652.446196059416, - 28180.33524950175, - 26480.03142800093, - 22296.376786006036, - 16076.94018031451, - 8571.52430800821, - 1838.593591142017, - -3884.1645948916685, - -7641.039812732161, - -8885.953268385672, - -8791.161612736294, - -7883.891297807877, - -7168.668511211063, - -7572.203559655239, - -9249.93199798993, - -11969.202525134575, - -14728.133499032854, - -16827.364528733622, - -17465.581807632218, - -16048.236639012948, - -12930.775436846483, - -8978.257206529106, - -5066.366665126163, - -1896.8980527033505, - -556.9727995967372, - -597.2836205628016, - -1359.9675486507513, - -2164.898150581422, - -1976.5713156532809, - -198.15296883010322, - 3026.7961006442065, - 7225.455620256213, - 10919.349844898063, - 13414.325887766783, - 13971.363632141505, - 12588.690037862345, - 10690.809270965441, - 10279.235539125983, - 13703.892996023067, - 23207.09492704566, - 39845.77730820251, - 64631.76120232099, - 93219.90939187286, - 125147.52589152245, - 157045.02034753512, - 180218.3703377509 - ], - "flow:J69:branch60_seg1": [ - 30.591697256670884, - 34.060141586565585, - 35.61629135950733, - 35.234661447426355, - 33.19903848537601, - 29.852502950476204, - 25.671661586773308, - 21.322305432414648, - 17.217745153736452, - 13.398209250514727, - 10.217562374487827, - 7.352928642291497, - 4.640709235447375, - 2.0656725545247134, - -0.6767418115308695, - -3.3478366786789375, - -5.95610924194416, - -8.39631219739275, - -10.275766894065033, - -11.74987664472798, - -12.722574679679576, - -13.24402585377349, - -13.545030142402132, - -13.681726855822658, - -13.76151664211319, - -13.791067146335317, - -13.68180783901479, - -13.350477532506112, - -12.734825705483436, - -11.843364116210543, - -10.796855740382883, - -9.866122982542631, - -9.283848680462603, - -9.341255343200237, - -10.197152157455907, - -11.831854764476137, - -13.997774857379781, - -16.39336060236186, - -18.54335953827847, - -19.91666801643993, - -20.311917112025377, - -19.49782224625802, - -17.556388736863052, - -14.74096755713095, - -11.571818400956227, - -8.240045489176353, - -5.225029548476855, - -2.793603953316454, - -0.8065781575320584, - 0.6063528352552189, - 1.7067419511188928, - 2.6574067676917053, - 3.446920410513966, - 4.192118270014275, - 4.750929352531329, - 4.995884885376084, - 4.8573622362193705, - 4.259197155359589, - 3.2572706340477415, - 2.0173307078139735, - 0.7536446253848922, - -0.3793501631209736, - -1.1343723649118136, - -1.520076722524079, - -1.5940161212683728, - -1.4559269561660124, - -1.3121668263424133, - -1.3156236283433684, - -1.5347497269417696, - -1.9591795197345758, - -2.453214818140109, - -2.886962113914366, - -3.088849758122829, - -2.957499374230388, - -2.512445290000947, - -1.8571281545987322, - -1.1379079398506942, - -0.5302228196139038, - -0.18403875302624198, - -0.08635879638992938, - -0.18909657596678645, - -0.3455686811904035, - -0.37679931625241375, - -0.16225382118225554, - 0.32977400125909173, - 1.0169715443705056, - 1.7183116742183233, - 2.2667266432249304, - 2.469366272594047, - 2.3369447695364056, - 2.0227691356916906, - 1.8320489315562103, - 2.180733697297511, - 3.479374992466782, - 6.014254717295332, - 9.927282403432981, - 14.766275830753882, - 20.380530613269574, - 25.969810495062323, - 30.591697256670884 - ], - "pressure:J69:branch60_seg1": [ - 180218.3703377509, - 196085.94511672822, - 202054.23595718364, - 195804.48876189417, - 181110.76046344487, - 160557.88849251618, - 136489.53036479518, - 110757.94688619193, - 89338.52915403538, - 68980.38791252776, - 51182.69622632373, - 36427.57854597342, - 20837.72011945455, - 6389.098361737973, - -8810.246499950912, - -24366.309345849597, - -38357.86073610892, - -51627.62558652466, - -61420.43960948342, - -68418.94780886477, - -73262.18492798107, - -75463.52529179299, - -76683.57231810792, - -77346.68486464108, - -77637.97406653923, - -77654.56664352516, - -76686.09385429327, - -74244.50324316595, - -70132.27939789533, - -64724.35540386184, - -58626.79322101517, - -53832.20539203822, - -51752.511949841195, - -53380.54197191117, - -59790.810721492344, - -70375.97439982386, - -83520.99022420112, - -96561.2003141414, - -107953.92849141592, - -113800.77364691341, - -113534.16544862594, - -106807.07135763536, - -93973.0005024333, - -76563.62748379816, - -58472.444500636455, - -40209.745712120595, - -23596.839288804833, - -11354.573740421587, - -1302.4334984968257, - 6019.575736652119, - 11423.770154669322, - 16794.47703341661, - 20960.644246934004, - 24699.159546263643, - 27652.446196059416, - 28180.33524950175, - 26480.03142800093, - 22296.376786006036, - 16076.94018031451, - 8571.52430800821, - 1838.593591142017, - -3884.1645948916685, - -7641.039812732161, - -8885.953268385672, - -8791.161612736294, - -7883.891297807877, - -7168.668511211063, - -7572.203559655239, - -9249.93199798993, - -11969.202525134575, - -14728.133499032854, - -16827.364528733622, - -17465.581807632218, - -16048.236639012948, - -12930.775436846483, - -8978.257206529106, - -5066.366665126163, - -1896.8980527033505, - -556.9727995967372, - -597.2836205628016, - -1359.9675486507513, - -2164.898150581422, - -1976.5713156532809, - -198.15296883010322, - 3026.7961006442065, - 7225.455620256213, - 10919.349844898063, - 13414.325887766783, - 13971.363632141505, - 12588.690037862345, - 10690.809270965441, - 10279.235539125983, - 13703.892996023067, - 23207.09492704566, - 39845.77730820251, - 64631.76120232099, - 93219.90939187286, - 125147.52589152245, - 157045.02034753512, - 180218.3703377509 - ], - "flow:branch60_seg1:J70": [ - 30.573709462637062, - 34.052204550576825, - 35.61667811620973, - 35.24278212983938, - 33.21569630166145, - 29.874267716494085, - 25.693961086443448, - 21.349891499052593, - 17.240016286376928, - 13.413234430437896, - 10.237348090522193, - 7.366587045190123, - 4.6556799699139155, - 2.081333099753737, - -0.6662197859373756, - -3.3307160631379493, - -5.94481957467526, - -8.389420788221498, - -10.268146130522148, - -11.745732408320745, - -12.720825248814098, - -13.242548816814697, - -13.544926142433926, - -13.681627291604734, - -13.761098143428264, - -13.79159463689712, - -13.683032020129376, - -13.353351514594907, - -12.739084515336398, - -11.849031179478214, - -10.801893647533278, - -9.870438084451715, - -9.284089989325807, - -9.337537250942704, - -10.188822682293289, - -11.821350490675187, - -13.982067158170421, - -16.38248252232908, - -18.534883369914144, - -19.913188713413547, - -20.31596440160045, - -19.508254604831283, - -17.568216195462217, - -14.754737421428077, - -11.587181656513309, - -8.253728614708319, - -5.235422378530728, - -2.802646313565394, - -0.8122795264244963, - 0.6020772933591804, - 1.7013134724661838, - 2.6541132136260095, - 3.442897130334304, - 4.189038087478674, - 4.748956667685073, - 4.995865913218115, - 4.86017629173357, - 4.264520790410429, - 3.2635472569289754, - 2.0258183728327306, - 0.760371196095067, - -0.3762445121963618, - -1.1309487072487105, - -1.5195844939587486, - -1.5951318054322248, - -1.456697400632833, - -1.312253671889386, - -1.3146281879299009, - -1.533003041274981, - -1.9569860229560823, - -2.451241632064683, - -2.885767346318856, - -3.0895283484064606, - -2.9591551423180165, - -2.5156540213150422, - -1.8603759167018112, - -1.14133301155637, - -0.5320711614348412, - -0.18495198154668382, - -0.08583338022131373, - -0.1881265149736881, - -0.34522543098495173, - -0.3776311608651818, - -0.16484916681965092, - 0.3262695143587103, - 1.0123502187224307, - 1.714905890212265, - 2.2660415137281116, - 2.469630064872315, - 2.3384552942258425, - 2.024281543016479, - 1.8309610042165327, - 2.175622496447423, - 3.4671150344798605, - 5.998651768881252, - 9.906441546139794, - 14.743597796682986, - 20.35238416532194, - 25.950266027531914, - 30.573709462637062 - ], - "pressure:branch60_seg1:J70": [ - 171606.48372211982, - 189220.2903134437, - 196657.38029758653, - 192874.5000663176, - 180356.96811505832, - 161249.6506193262, - 138026.0232771065, - 113602.053341911, - 91695.18817680948, - 71111.11854282912, - 53698.88901585173, - 38471.853649326884, - 23441.465122908325, - 9312.223564891478, - -5696.982883653641, - -20540.684147949185, - -34648.493688253795, - -47890.141908919955, - -57901.63032698893, - -65498.88396847262, - -70606.64553102321, - -73181.99498231015, - -74655.36986127427, - -75370.30917559644, - -75747.76254259468, - -75861.68937779349, - -75125.4057861743, - -73083.3433001204, - -69443.40967903819, - -64396.35527445636, - -58551.198196274214, - -53614.67640524434, - -50880.25155908916, - -51708.94121422723, - -57042.0858730237, - -66597.1816166347, - -78875.36706343613, - -91920.96249354404, - -103487.53221602393, - -110324.2029510862, - -111539.4963641469, - -106238.55682363895, - -94777.98923595579, - -78657.13349101509, - -61107.92010913406, - -42946.91198751747, - -26463.4048527217, - -13648.622512422091, - -3150.010739081947, - 4388.935842381872, - 10114.054026325413, - 15378.754203847588, - 19604.771474585876, - 23526.37802382292, - 26534.81284210432, - 27544.494300889324, - 26420.643236296844, - 22806.77730384977, - 17057.450344934445, - 10024.886204139655, - 3211.464888957981, - -2783.1585405229807, - -6738.6061517337475, - -8504.640989849597, - -8712.05765904916, - -7897.192757314293, - -7139.423445810383, - -7308.452003356672, - -8694.148311746225, - -11163.983362520781, - -13878.96736942079, - -16132.649507217388, - -17053.281973715915, - -16056.565948212705, - -13364.117073880456, - -9643.733641828914, - -5741.459489631087, - -2483.923843934593, - -823.256621520867, - -518.6085402217716, - -1157.090903533512, - -1991.4940637540378, - -2021.7051982051203, - -617.2088858232711, - 2273.6935280683288, - 6187.797230834643, - 9954.263644462551, - 12749.659937035502, - 13633.941200789634, - 12651.537420166775, - 10868.006074532846, - 10071.222066171998, - 12567.28305988625, - 20569.11438749123, - 35494.10660868585, - 58137.89691248093, - 85339.87718920164, - 116342.25453968128, - 147354.17541450085, - 171606.48372211982 - ], - "flow:J70:branch60_seg2": [ - 30.573709462637062, - 34.052204550576825, - 35.61667811620973, - 35.24278212983938, - 33.21569630166145, - 29.874267716494085, - 25.693961086443448, - 21.349891499052593, - 17.240016286376928, - 13.413234430437896, - 10.237348090522193, - 7.366587045190123, - 4.6556799699139155, - 2.081333099753737, - -0.6662197859373756, - -3.3307160631379493, - -5.94481957467526, - -8.389420788221498, - -10.268146130522148, - -11.745732408320745, - -12.720825248814098, - -13.242548816814697, - -13.544926142433926, - -13.681627291604734, - -13.761098143428264, - -13.79159463689712, - -13.683032020129376, - -13.353351514594907, - -12.739084515336398, - -11.849031179478214, - -10.801893647533278, - -9.870438084451715, - -9.284089989325807, - -9.337537250942704, - -10.188822682293289, - -11.821350490675187, - -13.982067158170421, - -16.38248252232908, - -18.534883369914144, - -19.913188713413547, - -20.31596440160045, - -19.508254604831283, - -17.568216195462217, - -14.754737421428077, - -11.587181656513309, - -8.253728614708319, - -5.235422378530728, - -2.802646313565394, - -0.8122795264244963, - 0.6020772933591804, - 1.7013134724661838, - 2.6541132136260095, - 3.442897130334304, - 4.189038087478674, - 4.748956667685073, - 4.995865913218115, - 4.86017629173357, - 4.264520790410429, - 3.2635472569289754, - 2.0258183728327306, - 0.760371196095067, - -0.3762445121963618, - -1.1309487072487105, - -1.5195844939587486, - -1.5951318054322248, - -1.456697400632833, - -1.312253671889386, - -1.3146281879299009, - -1.533003041274981, - -1.9569860229560823, - -2.451241632064683, - -2.885767346318856, - -3.0895283484064606, - -2.9591551423180165, - -2.5156540213150422, - -1.8603759167018112, - -1.14133301155637, - -0.5320711614348412, - -0.18495198154668382, - -0.08583338022131373, - -0.1881265149736881, - -0.34522543098495173, - -0.3776311608651818, - -0.16484916681965092, - 0.3262695143587103, - 1.0123502187224307, - 1.714905890212265, - 2.2660415137281116, - 2.469630064872315, - 2.3384552942258425, - 2.024281543016479, - 1.8309610042165327, - 2.175622496447423, - 3.4671150344798605, - 5.998651768881252, - 9.906441546139794, - 14.743597796682986, - 20.35238416532194, - 25.950266027531914, - 30.573709462637062 - ], - "pressure:J70:branch60_seg2": [ - 171606.48372211982, - 189220.2903134437, - 196657.38029758653, - 192874.5000663176, - 180356.96811505832, - 161249.6506193262, - 138026.0232771065, - 113602.053341911, - 91695.18817680948, - 71111.11854282912, - 53698.88901585173, - 38471.853649326884, - 23441.465122908325, - 9312.223564891478, - -5696.982883653641, - -20540.684147949185, - -34648.493688253795, - -47890.141908919955, - -57901.63032698893, - -65498.88396847262, - -70606.64553102321, - -73181.99498231015, - -74655.36986127427, - -75370.30917559644, - -75747.76254259468, - -75861.68937779349, - -75125.4057861743, - -73083.3433001204, - -69443.40967903819, - -64396.35527445636, - -58551.198196274214, - -53614.67640524434, - -50880.25155908916, - -51708.94121422723, - -57042.0858730237, - -66597.1816166347, - -78875.36706343613, - -91920.96249354404, - -103487.53221602393, - -110324.2029510862, - -111539.4963641469, - -106238.55682363895, - -94777.98923595579, - -78657.13349101509, - -61107.92010913406, - -42946.91198751747, - -26463.4048527217, - -13648.622512422091, - -3150.010739081947, - 4388.935842381872, - 10114.054026325413, - 15378.754203847588, - 19604.771474585876, - 23526.37802382292, - 26534.81284210432, - 27544.494300889324, - 26420.643236296844, - 22806.77730384977, - 17057.450344934445, - 10024.886204139655, - 3211.464888957981, - -2783.1585405229807, - -6738.6061517337475, - -8504.640989849597, - -8712.05765904916, - -7897.192757314293, - -7139.423445810383, - -7308.452003356672, - -8694.148311746225, - -11163.983362520781, - -13878.96736942079, - -16132.649507217388, - -17053.281973715915, - -16056.565948212705, - -13364.117073880456, - -9643.733641828914, - -5741.459489631087, - -2483.923843934593, - -823.256621520867, - -518.6085402217716, - -1157.090903533512, - -1991.4940637540378, - -2021.7051982051203, - -617.2088858232711, - 2273.6935280683288, - 6187.797230834643, - 9954.263644462551, - 12749.659937035502, - 13633.941200789634, - 12651.537420166775, - 10868.006074532846, - 10071.222066171998, - 12567.28305988625, - 20569.11438749123, - 35494.10660868585, - 58137.89691248093, - 85339.87718920164, - 116342.25453968128, - 147354.17541450085, - 171606.48372211982 - ], - "flow:branch61_seg0:J71": [ - 56.164170541484985, - 64.40899712840398, - 69.62313789833223, - 71.27143400161606, - 69.45423736526003, - 64.63637954395942, - 57.62361213903751, - 49.42091457485421, - 41.049548183237185, - 32.9770261809641, - 25.74823703744068, - 19.222018300694973, - 13.194132668926528, - 7.541016835572692, - 1.8684374900684755, - -3.6934591997390616, - -9.172126323636858, - -14.326306567804622, - -18.66385878756334, - -22.21583229139995, - -24.811523447338104, - -26.4879616107034, - -27.522051003740984, - -28.084970117936326, - -28.38886014385674, - -28.514552887809703, - -28.38688183041738, - -27.88444070439165, - -26.88322826156748, - -25.35917247303409, - -23.44726602807759, - -21.535984131864424, - -20.067905012325497, - -19.559731480304546, - -20.406433156831675, - -22.740634277319405, - -26.32239419431328, - -30.67645559186996, - -35.01868058602751, - -38.41980896297062, - -40.25135914988718, - -39.97680177570915, - -37.494066084866, - -33.06879667139813, - -27.43678277685912, - -21.07894384784846, - -14.832894965772205, - -9.319636539407679, - -4.633928922438774, - -0.9850101420008724, - 1.8798666383588885, - 4.235812038659551, - 6.156639873978998, - 7.8320892788421945, - 9.172933837490948, - 9.980548346835812, - 10.098090526107915, - 9.378240356282605, - 7.846020449871071, - 5.691399259471043, - 3.2684735940668252, - 0.9142970177421837, - -0.9655456436994747, - -2.2235440148424472, - -2.8381463954326134, - -2.9425637257740553, - -2.8374772524012712, - -2.8183516245554507, - -3.086714352850756, - -3.709044268283223, - -4.544989011905942, - -5.392726118195011, - -5.958761194984642, - -6.009872564529153, - -5.480976042393054, - -4.4697792381434684, - -3.1954445581058013, - -1.9481874667774923, - -1.0305832322556339, - -0.5399481724351941, - -0.45392318317052677, - -0.5873270071673597, - -0.6564292227907373, - -0.40575352183614455, - 0.29988004829450987, - 1.419505010200898, - 2.7113479721272733, - 3.87555543157158, - 4.574709277045907, - 4.697958106548711, - 4.376920501172323, - 4.046356588141012, - 4.387221016516589, - 6.162541729415973, - 10.029763392103732, - 16.40209713278274, - 24.87237575905311, - 35.168233054080765, - 46.1427712593863, - 56.164170541484985 - ], - "pressure:branch61_seg0:J71": [ - 181352.562938414, - 196479.14616233343, - 203237.69058817698, - 197177.80808072022, - 182605.54770761903, - 162536.4799441507, - 138984.50830099537, - 112757.55381510686, - 91308.5065530538, - 70513.32946795762, - 51891.59770227129, - 36908.43456855753, - 20576.853250583503, - 5671.969328813246, - -9704.777165635343, - -25475.500849869284, - -39170.273668587826, - -52735.48338780649, - -62805.697848471806, - -69435.51773309728, - -74580.87783372795, - -76946.72408750761, - -78165.53865138571, - -78940.24809862123, - -79091.5888343198, - -78973.85091908096, - -77847.08467960962, - -75201.9436481561, - -70902.35054522245, - -65485.24930353746, - -59321.13823186318, - -54546.53444993273, - -52629.64699292564, - -54233.352660717814, - -60512.1726674072, - -71024.13371220329, - -83931.89311473393, - -96599.58478058189, - -108035.26540738768, - -113879.55982473731, - -113563.81904817845, - -107223.70093591002, - -94703.2204143304, - -77314.37517439827, - -59346.34273382373, - -41616.31990254536, - -24391.92571823329, - -11826.504873691665, - -1588.4351458890817, - 6469.8253499585335, - 11933.824381381852, - 17716.04350660071, - 22145.623968197167, - 25664.709950251625, - 28631.03289651585, - 29025.74248202658, - 27165.48372070058, - 22947.287329306877, - 16736.031060466023, - 9141.589156692911, - 2478.12416984817, - -3298.7536939606853, - -7236.116993169132, - -8548.083153837471, - -8708.800983098608, - -8096.69324131814, - -7517.961745909155, - -7995.845833525656, - -9683.833214012606, - -12344.66995277206, - -14993.183095118864, - -16877.55461150497, - -17509.183542004288, - -16099.83142696858, - -13000.639367933532, - -9103.28649412834, - -5366.127889340788, - -2158.9433877928836, - -769.2458662020368, - -804.8236444909483, - -1404.6124089807297, - -2032.7132818301634, - -1734.8305780983285, - 100.71244045240834, - 3281.779349100998, - 7415.968563940677, - 10949.896521340603, - 13350.850453617033, - 13937.260218177347, - 12595.17820250549, - 10884.071692409201, - 10752.556017568431, - 14459.83120903186, - 24122.94462060503, - 40792.60073390415, - 65741.46566162941, - 94434.8508847364, - 125180.8467858049, - 157964.7196999533, - 181352.562938414 - ], - "flow:J71:branch61_seg1": [ - 56.164170541484985, - 64.40899712840398, - 69.62313789833223, - 71.27143400161606, - 69.45423736526003, - 64.63637954395942, - 57.62361213903751, - 49.42091457485421, - 41.049548183237185, - 32.9770261809641, - 25.74823703744068, - 19.222018300694973, - 13.194132668926528, - 7.541016835572692, - 1.8684374900684755, - -3.6934591997390616, - -9.172126323636858, - -14.326306567804622, - -18.66385878756334, - -22.21583229139995, - -24.811523447338104, - -26.4879616107034, - -27.522051003740984, - -28.084970117936326, - -28.38886014385674, - -28.514552887809703, - -28.38688183041738, - -27.88444070439165, - -26.88322826156748, - -25.35917247303409, - -23.44726602807759, - -21.535984131864424, - -20.067905012325497, - -19.559731480304546, - -20.406433156831675, - -22.740634277319405, - -26.32239419431328, - -30.67645559186996, - -35.01868058602751, - -38.41980896297062, - -40.25135914988718, - -39.97680177570915, - -37.494066084866, - -33.06879667139813, - -27.43678277685912, - -21.07894384784846, - -14.832894965772205, - -9.319636539407679, - -4.633928922438774, - -0.9850101420008724, - 1.8798666383588885, - 4.235812038659551, - 6.156639873978998, - 7.8320892788421945, - 9.172933837490948, - 9.980548346835812, - 10.098090526107915, - 9.378240356282605, - 7.846020449871071, - 5.691399259471043, - 3.2684735940668252, - 0.9142970177421837, - -0.9655456436994747, - -2.2235440148424472, - -2.8381463954326134, - -2.9425637257740553, - -2.8374772524012712, - -2.8183516245554507, - -3.086714352850756, - -3.709044268283223, - -4.544989011905942, - -5.392726118195011, - -5.958761194984642, - -6.009872564529153, - -5.480976042393054, - -4.4697792381434684, - -3.1954445581058013, - -1.9481874667774923, - -1.0305832322556339, - -0.5399481724351941, - -0.45392318317052677, - -0.5873270071673597, - -0.6564292227907373, - -0.40575352183614455, - 0.29988004829450987, - 1.419505010200898, - 2.7113479721272733, - 3.87555543157158, - 4.574709277045907, - 4.697958106548711, - 4.376920501172323, - 4.046356588141012, - 4.387221016516589, - 6.162541729415973, - 10.029763392103732, - 16.40209713278274, - 24.87237575905311, - 35.168233054080765, - 46.1427712593863, - 56.164170541484985 - ], - "pressure:J71:branch61_seg1": [ - 181352.562938414, - 196479.14616233343, - 203237.69058817698, - 197177.80808072022, - 182605.54770761903, - 162536.4799441507, - 138984.50830099537, - 112757.55381510686, - 91308.5065530538, - 70513.32946795762, - 51891.59770227129, - 36908.43456855753, - 20576.853250583503, - 5671.969328813246, - -9704.777165635343, - -25475.500849869284, - -39170.273668587826, - -52735.48338780649, - -62805.697848471806, - -69435.51773309728, - -74580.87783372795, - -76946.72408750761, - -78165.53865138571, - -78940.24809862123, - -79091.5888343198, - -78973.85091908096, - -77847.08467960962, - -75201.9436481561, - -70902.35054522245, - -65485.24930353746, - -59321.13823186318, - -54546.53444993273, - -52629.64699292564, - -54233.352660717814, - -60512.1726674072, - -71024.13371220329, - -83931.89311473393, - -96599.58478058189, - -108035.26540738768, - -113879.55982473731, - -113563.81904817845, - -107223.70093591002, - -94703.2204143304, - -77314.37517439827, - -59346.34273382373, - -41616.31990254536, - -24391.92571823329, - -11826.504873691665, - -1588.4351458890817, - 6469.8253499585335, - 11933.824381381852, - 17716.04350660071, - 22145.623968197167, - 25664.709950251625, - 28631.03289651585, - 29025.74248202658, - 27165.48372070058, - 22947.287329306877, - 16736.031060466023, - 9141.589156692911, - 2478.12416984817, - -3298.7536939606853, - -7236.116993169132, - -8548.083153837471, - -8708.800983098608, - -8096.69324131814, - -7517.961745909155, - -7995.845833525656, - -9683.833214012606, - -12344.66995277206, - -14993.183095118864, - -16877.55461150497, - -17509.183542004288, - -16099.83142696858, - -13000.639367933532, - -9103.28649412834, - -5366.127889340788, - -2158.9433877928836, - -769.2458662020368, - -804.8236444909483, - -1404.6124089807297, - -2032.7132818301634, - -1734.8305780983285, - 100.71244045240834, - 3281.779349100998, - 7415.968563940677, - 10949.896521340603, - 13350.850453617033, - 13937.260218177347, - 12595.17820250549, - 10884.071692409201, - 10752.556017568431, - 14459.83120903186, - 24122.94462060503, - 40792.60073390415, - 65741.46566162941, - 94434.8508847364, - 125180.8467858049, - 157964.7196999533, - 181352.562938414 - ], - "flow:branch61_seg1:J72": [ - 56.12559370426155, - 64.39859455644633, - 69.62380166044139, - 71.28476983030434, - 69.4849380125955, - 64.68198839039209, - 57.6623740681945, - 49.480123546970106, - 41.10043159443848, - 33.007898833732035, - 25.78779278811856, - 19.251360964542098, - 13.225242607701379, - 7.572103208610591, - 1.889116404905463, - -3.6656023201602608, - -9.147942646212472, - -14.315297900648615, - -18.652376233522862, - -22.208824397930464, - -24.810472648656145, - -26.484868277797588, - -27.522374543724506, - -28.085340369890805, - -28.388471308186773, - -28.515852507356758, - -28.38950246678929, - -27.889935484452792, - -26.892077751186175, - -25.37041043938497, - -23.45712715267055, - -21.54557897639797, - -20.068394827775414, - -19.551914333968984, - -20.391087375411953, - -22.72089460148314, - -26.292131887900197, - -30.654706319387543, - -35.00252458826246, - -38.41309499070718, - -40.25902156366231, - -39.996876758281296, - -37.51631604894436, - -33.091482626680154, - -27.461814036635932, - -21.102687408130677, - -14.848761704651402, - -9.338021994673907, - -4.642406619907047, - -0.9927147243341624, - 1.8695733990341303, - 4.22909918750059, - 6.147217335009878, - 7.827138340420524, - 9.169079461832611, - 9.979867732860406, - 10.103360549190434, - 9.389368406797823, - 7.8574958610134225, - 5.7093349638182715, - 3.2829095350191606, - 0.9202828712893518, - -0.9601107211875313, - -2.221398669363188, - -2.840036615446186, - -2.9437672456792257, - -2.8372955548669836, - -2.816442890030405, - -3.083523575645456, - -3.7055841488027546, - -4.542055931936187, - -5.391113875060325, - -5.960330295171652, - -6.012842034600967, - -5.486499997196127, - -4.475934295296528, - -3.2016651788885415, - -1.951834620299837, - -1.0332019454103478, - -0.5390744173482297, - -0.45195194643841796, - -0.5869863833860733, - -0.6582183589637898, - -0.41105348688961696, - 0.29350040880282674, - 1.4100707807371544, - 2.704516155122541, - 3.8744494643579643, - 4.576043156068674, - 4.7002971622487175, - 4.379233772456923, - 4.043878369085383, - 4.3769163886903595, - 6.1406706150704755, - 10.000224636314728, - 16.367607526340826, - 24.834821779469376, - 35.1197995406365, - 46.1087875166712, - 56.12559370426155 - ], - "pressure:branch61_seg1:J72": [ - 170149.59391139177, - 187262.6957595043, - 196287.42485439827, - 193586.83174216453, - 182264.96275547732, - 164697.6879434349, - 142752.21419922408, - 118420.14360039245, - 96592.39374224322, - 75398.83886852665, - 56899.279557334215, - 41263.89331280676, - 25109.918367132686, - 10249.637025425856, - -5164.28017547621, - -20382.552240367313, - -34020.17797323011, - -47953.627107971406, - -58398.34952572461, - -65690.3142422363, - -71439.44721151386, - -74393.2829413075, - -76105.91630148263, - -77124.36561189461, - -77435.93451009065, - -77474.14249581713, - -76628.34775214209, - -74424.36124840366, - -70692.85229288046, - -65749.44372867809, - -59951.72173915388, - -55085.02695474717, - -52501.36551873421, - -53124.57584516288, - -58075.63536902045, - -67220.59479241917, - -78857.55454896527, - -91166.79345607855, - -102701.19719173189, - -109520.46084658543, - -110895.85517499158, - -106392.85625980585, - -95800.3943430216, - -80043.82623867369, - -63179.24863274188, - -46083.369605972526, - -28949.572917036014, - -15871.900378113112, - -4963.284328671234, - 3612.6731726015955, - 9560.841986776828, - 15490.661367860504, - 20194.328930081916, - 23963.078403759737, - 27076.35410081598, - 28059.89208950432, - 26933.01460509659, - 23512.07784524317, - 17977.82556800324, - 11090.529420880686, - 4478.594352728616, - -1566.9142203046144, - -5743.07941786753, - -7632.963073151879, - -8308.393859577996, - -7977.4535692664895, - -7471.931879298404, - -7772.690021614355, - -9143.14973268165, - -11503.482774309909, - -14003.784969523083, - -15946.287243083249, - -16885.33754963235, - -15985.488857175165, - -13439.894706352847, - -9947.344572721984, - -6367.552364912703, - -3127.0986981875, - -1373.0175811085614, - -986.2982329737213, - -1323.4180102512967, - -1876.9932612426808, - -1746.94377047378, - -310.4925376806921, - 2453.8168295394717, - 6172.699816883359, - 9681.959625669548, - 12371.572471741638, - 13330.725837240954, - 12478.042809089597, - 11035.82822573806, - 10658.963638813826, - 13438.159386184801, - 21461.94830753089, - 35932.295681296404, - 58408.65247242038, - 85032.97307326332, - 113865.66664598077, - 145686.52682816092, - 170149.59391139177 - ], - "flow:J72:branch61_seg2": [ - 56.12559370426155, - 64.39859455644633, - 69.62380166044139, - 71.28476983030434, - 69.4849380125955, - 64.68198839039209, - 57.6623740681945, - 49.480123546970106, - 41.10043159443848, - 33.007898833732035, - 25.78779278811856, - 19.251360964542098, - 13.225242607701379, - 7.572103208610591, - 1.889116404905463, - -3.6656023201602608, - -9.147942646212472, - -14.315297900648615, - -18.652376233522862, - -22.208824397930464, - -24.810472648656145, - -26.484868277797588, - -27.522374543724506, - -28.085340369890805, - -28.388471308186773, - -28.515852507356758, - -28.38950246678929, - -27.889935484452792, - -26.892077751186175, - -25.37041043938497, - -23.45712715267055, - -21.54557897639797, - -20.068394827775414, - -19.551914333968984, - -20.391087375411953, - -22.72089460148314, - -26.292131887900197, - -30.654706319387543, - -35.00252458826246, - -38.41309499070718, - -40.25902156366231, - -39.996876758281296, - -37.51631604894436, - -33.091482626680154, - -27.461814036635932, - -21.102687408130677, - -14.848761704651402, - -9.338021994673907, - -4.642406619907047, - -0.9927147243341624, - 1.8695733990341303, - 4.22909918750059, - 6.147217335009878, - 7.827138340420524, - 9.169079461832611, - 9.979867732860406, - 10.103360549190434, - 9.389368406797823, - 7.8574958610134225, - 5.7093349638182715, - 3.2829095350191606, - 0.9202828712893518, - -0.9601107211875313, - -2.221398669363188, - -2.840036615446186, - -2.9437672456792257, - -2.8372955548669836, - -2.816442890030405, - -3.083523575645456, - -3.7055841488027546, - -4.542055931936187, - -5.391113875060325, - -5.960330295171652, - -6.012842034600967, - -5.486499997196127, - -4.475934295296528, - -3.2016651788885415, - -1.951834620299837, - -1.0332019454103478, - -0.5390744173482297, - -0.45195194643841796, - -0.5869863833860733, - -0.6582183589637898, - -0.41105348688961696, - 0.29350040880282674, - 1.4100707807371544, - 2.704516155122541, - 3.8744494643579643, - 4.576043156068674, - 4.7002971622487175, - 4.379233772456923, - 4.043878369085383, - 4.3769163886903595, - 6.1406706150704755, - 10.000224636314728, - 16.367607526340826, - 24.834821779469376, - 35.1197995406365, - 46.1087875166712, - 56.12559370426155 - ], - "pressure:J72:branch61_seg2": [ - 170149.59391139177, - 187262.6957595043, - 196287.42485439827, - 193586.83174216453, - 182264.96275547732, - 164697.6879434349, - 142752.21419922408, - 118420.14360039245, - 96592.39374224322, - 75398.83886852665, - 56899.279557334215, - 41263.89331280676, - 25109.918367132686, - 10249.637025425856, - -5164.28017547621, - -20382.552240367313, - -34020.17797323011, - -47953.627107971406, - -58398.34952572461, - -65690.3142422363, - -71439.44721151386, - -74393.2829413075, - -76105.91630148263, - -77124.36561189461, - -77435.93451009065, - -77474.14249581713, - -76628.34775214209, - -74424.36124840366, - -70692.85229288046, - -65749.44372867809, - -59951.72173915388, - -55085.02695474717, - -52501.36551873421, - -53124.57584516288, - -58075.63536902045, - -67220.59479241917, - -78857.55454896527, - -91166.79345607855, - -102701.19719173189, - -109520.46084658543, - -110895.85517499158, - -106392.85625980585, - -95800.3943430216, - -80043.82623867369, - -63179.24863274188, - -46083.369605972526, - -28949.572917036014, - -15871.900378113112, - -4963.284328671234, - 3612.6731726015955, - 9560.841986776828, - 15490.661367860504, - 20194.328930081916, - 23963.078403759737, - 27076.35410081598, - 28059.89208950432, - 26933.01460509659, - 23512.07784524317, - 17977.82556800324, - 11090.529420880686, - 4478.594352728616, - -1566.9142203046144, - -5743.07941786753, - -7632.963073151879, - -8308.393859577996, - -7977.4535692664895, - -7471.931879298404, - -7772.690021614355, - -9143.14973268165, - -11503.482774309909, - -14003.784969523083, - -15946.287243083249, - -16885.33754963235, - -15985.488857175165, - -13439.894706352847, - -9947.344572721984, - -6367.552364912703, - -3127.0986981875, - -1373.0175811085614, - -986.2982329737213, - -1323.4180102512967, - -1876.9932612426808, - -1746.94377047378, - -310.4925376806921, - 2453.8168295394717, - 6172.699816883359, - 9681.959625669548, - 12371.572471741638, - 13330.725837240954, - 12478.042809089597, - 11035.82822573806, - 10658.963638813826, - 13438.159386184801, - 21461.94830753089, - 35932.295681296404, - 58408.65247242038, - 85032.97307326332, - 113865.66664598077, - 145686.52682816092, - 170149.59391139177 - ], - "flow:branch64_seg0:J73": [ - 15.793132423138342, - 18.561549381273704, - 20.620126912228574, - 21.794198130225478, - 22.030233660168182, - 21.37345201739165, - 19.976240732795823, - 18.101302059506235, - 15.971519097856213, - 13.744025587452766, - 11.608886140199283, - 9.550608052494468, - 7.571224932586165, - 5.649688010205305, - 3.7008888178723174, - 1.7731089662904242, - -0.148194957080921, - -1.9933134377285269, - -3.637005351552281, - -5.0744519434696835, - -6.239002213605328, - -7.132191236321808, - -7.8125948243799375, - -8.315268879704721, - -8.697048751949607, - -8.982410147241369, - -9.16046593819165, - -9.20631393502677, - -9.089266467558419, - -8.798219185508344, - -8.364470873838782, - -7.8816250937311665, - -7.461157858129117, - -7.2518718130320625, - -7.373166495625847, - -7.886022977009535, - -8.757124047554967, - -9.89747064714687, - -11.109558284202333, - -12.161014016553548, - -12.868221944968612, - -13.055653469890666, - -12.656543443527866, - -11.702274549926935, - -10.33981504856983, - -8.680205856842717, - -6.94495451460269, - -5.293821059043159, - -3.781810481557678, - -2.498269875815313, - -1.398211086115318, - -0.44079942657927873, - 0.38880435778282507, - 1.1375370973912207, - 1.7727241033185208, - 2.2519893899034122, - 2.53120269180597, - 2.5638525203186653, - 2.3444167683128248, - 1.9167186374854597, - 1.355807423037734, - 0.7512773742614779, - 0.21965153926329398, - -0.18982174618076567, - -0.4508511920493112, - -0.579462584150898, - -0.6403069379460746, - -0.7025769097394876, - -0.8207241584078462, - -1.0199170001064684, - -1.2757614654169316, - -1.5437507179596102, - -1.749672986256643, - -1.8313485236604148, - -1.7623754234964786, - -1.554055664060174, - -1.2520593887411382, - -0.9288666628098287, - -0.6616946376552771, - -0.48427323921376847, - -0.4072167635220149, - -0.39358045592260915, - -0.37684159154667557, - -0.29216506253311575, - -0.09646282701231423, - 0.20827560904516404, - 0.5747181270875427, - 0.9300855670353232, - 1.1834067865117204, - 1.2965622596333872, - 1.2873248881921915, - 1.2512898862975228, - 1.3559000876284246, - 1.8023473182105598, - 2.7828734445462393, - 4.432353613095467, - 6.7029598854179975, - 9.5579302845574, - 12.713700713222496, - 15.793132423138342 - ], - "pressure:branch64_seg0:J73": [ - 126317.11066320079, - 145423.18348655463, - 159184.58815448798, - 165272.929150423, - 164477.54697058286, - 157487.29416707993, - 145530.76707004654, - 130110.2392301571, - 113823.50830396636, - 97244.18269071513, - 81331.98979273891, - 66306.35672674913, - 51520.40676134353, - 37175.72707449738, - 22555.54990638762, - 8131.529654855628, - -6097.044156401356, - -19831.20524343893, - -31439.57125852235, - -41455.047915199655, - -49614.385307073, - -55553.34302204993, - -60129.23294237693, - -63523.56386168715, - -66059.42434063296, - -67976.39630399655, - -69000.60779652285, - -68934.64608939948, - -67585.49489307724, - -64994.476864404234, - -61405.74728842721, - -57773.33369869672, - -55042.262313642175, - -54125.702746045084, - -56012.876691865335, - -60947.825903398545, - -68335.13121309706, - -77349.62126972932, - -86463.44522226376, - -93622.14610727575, - -97703.05475060496, - -97653.66526115083, - -93095.78810424953, - -84357.16702748952, - -73418.90202409688, - -60586.20198982829, - -47230.06872247374, - -35447.97044836799, - -24587.838365987714, - -15452.495361584219, - -7864.448914985248, - -838.8284240233967, - 5064.046538105635, - 10297.208138507704, - 14850.445385147921, - 17934.068199325935, - 19399.35441180491, - 19001.003787413796, - 16725.38858164596, - 12991.806854572711, - 8555.81468907896, - 4070.890871630516, - 336.5897498095548, - -2319.4906334354873, - -3896.918765236535, - -4583.322772785494, - -4920.943679162485, - -5472.51065529981, - -6559.507000653336, - -8290.686981577723, - -10281.894370562783, - -12203.65732835445, - -13555.767640004418, - -13765.836594870974, - -12819.006726954394, - -10935.13492523035, - -8555.752887156363, - -6102.470803490612, - -4324.915243250149, - -3322.8999157950993, - -2937.8864469942846, - -2934.459811509992, - -2728.2898047511167, - -1844.3778282762692, - -66.38191543257894, - 2488.824386402672, - 5311.561856261346, - 7826.969166185812, - 9391.173464310335, - 9836.025089953395, - 9509.156043188386, - 9359.54349907556, - 10762.853566280148, - 15277.770868066244, - 24174.87734994973, - 38624.27293766384, - 57057.08247640119, - 79263.79263862202, - 104221.88389831586, - 126317.11066320079 - ], - "flow:J73:branch64_seg1": [ - 15.793132423138342, - 18.561549381273704, - 20.620126912228574, - 21.794198130225478, - 22.030233660168182, - 21.37345201739165, - 19.976240732795823, - 18.101302059506235, - 15.971519097856213, - 13.744025587452766, - 11.608886140199283, - 9.550608052494468, - 7.571224932586165, - 5.649688010205305, - 3.7008888178723174, - 1.7731089662904242, - -0.148194957080921, - -1.9933134377285269, - -3.637005351552281, - -5.0744519434696835, - -6.239002213605328, - -7.132191236321808, - -7.8125948243799375, - -8.315268879704721, - -8.697048751949607, - -8.982410147241369, - -9.16046593819165, - -9.20631393502677, - -9.089266467558419, - -8.798219185508344, - -8.364470873838782, - -7.8816250937311665, - -7.461157858129117, - -7.2518718130320625, - -7.373166495625847, - -7.886022977009535, - -8.757124047554967, - -9.89747064714687, - -11.109558284202333, - -12.161014016553548, - -12.868221944968612, - -13.055653469890666, - -12.656543443527866, - -11.702274549926935, - -10.33981504856983, - -8.680205856842717, - -6.94495451460269, - -5.293821059043159, - -3.781810481557678, - -2.498269875815313, - -1.398211086115318, - -0.44079942657927873, - 0.38880435778282507, - 1.1375370973912207, - 1.7727241033185208, - 2.2519893899034122, - 2.53120269180597, - 2.5638525203186653, - 2.3444167683128248, - 1.9167186374854597, - 1.355807423037734, - 0.7512773742614779, - 0.21965153926329398, - -0.18982174618076567, - -0.4508511920493112, - -0.579462584150898, - -0.6403069379460746, - -0.7025769097394876, - -0.8207241584078462, - -1.0199170001064684, - -1.2757614654169316, - -1.5437507179596102, - -1.749672986256643, - -1.8313485236604148, - -1.7623754234964786, - -1.554055664060174, - -1.2520593887411382, - -0.9288666628098287, - -0.6616946376552771, - -0.48427323921376847, - -0.4072167635220149, - -0.39358045592260915, - -0.37684159154667557, - -0.29216506253311575, - -0.09646282701231423, - 0.20827560904516404, - 0.5747181270875427, - 0.9300855670353232, - 1.1834067865117204, - 1.2965622596333872, - 1.2873248881921915, - 1.2512898862975228, - 1.3559000876284246, - 1.8023473182105598, - 2.7828734445462393, - 4.432353613095467, - 6.7029598854179975, - 9.5579302845574, - 12.713700713222496, - 15.793132423138342 - ], - "pressure:J73:branch64_seg1": [ - 126317.11066320079, - 145423.18348655463, - 159184.58815448798, - 165272.929150423, - 164477.54697058286, - 157487.29416707993, - 145530.76707004654, - 130110.2392301571, - 113823.50830396636, - 97244.18269071513, - 81331.98979273891, - 66306.35672674913, - 51520.40676134353, - 37175.72707449738, - 22555.54990638762, - 8131.529654855628, - -6097.044156401356, - -19831.20524343893, - -31439.57125852235, - -41455.047915199655, - -49614.385307073, - -55553.34302204993, - -60129.23294237693, - -63523.56386168715, - -66059.42434063296, - -67976.39630399655, - -69000.60779652285, - -68934.64608939948, - -67585.49489307724, - -64994.476864404234, - -61405.74728842721, - -57773.33369869672, - -55042.262313642175, - -54125.702746045084, - -56012.876691865335, - -60947.825903398545, - -68335.13121309706, - -77349.62126972932, - -86463.44522226376, - -93622.14610727575, - -97703.05475060496, - -97653.66526115083, - -93095.78810424953, - -84357.16702748952, - -73418.90202409688, - -60586.20198982829, - -47230.06872247374, - -35447.97044836799, - -24587.838365987714, - -15452.495361584219, - -7864.448914985248, - -838.8284240233967, - 5064.046538105635, - 10297.208138507704, - 14850.445385147921, - 17934.068199325935, - 19399.35441180491, - 19001.003787413796, - 16725.38858164596, - 12991.806854572711, - 8555.81468907896, - 4070.890871630516, - 336.5897498095548, - -2319.4906334354873, - -3896.918765236535, - -4583.322772785494, - -4920.943679162485, - -5472.51065529981, - -6559.507000653336, - -8290.686981577723, - -10281.894370562783, - -12203.65732835445, - -13555.767640004418, - -13765.836594870974, - -12819.006726954394, - -10935.13492523035, - -8555.752887156363, - -6102.470803490612, - -4324.915243250149, - -3322.8999157950993, - -2937.8864469942846, - -2934.459811509992, - -2728.2898047511167, - -1844.3778282762692, - -66.38191543257894, - 2488.824386402672, - 5311.561856261346, - 7826.969166185812, - 9391.173464310335, - 9836.025089953395, - 9509.156043188386, - 9359.54349907556, - 10762.853566280148, - 15277.770868066244, - 24174.87734994973, - 38624.27293766384, - 57057.08247640119, - 79263.79263862202, - 104221.88389831586, - 126317.11066320079 - ], - "flow:branch64_seg1:J74": [ - 15.733141363462543, - 18.515537181788435, - 20.589868743417462, - 21.78679393182646, - 22.045380292803884, - 21.40206511589718, - 20.008920109523203, - 18.154434048057297, - 16.018327565522018, - 13.781564053906115, - 11.655683335704733, - 9.590629190172477, - 7.610513110835533, - 5.692313096226724, - 3.736192332186509, - 1.8143187103117766, - -0.103211807652876, - -1.9607708869911078, - -3.6052901237940724, - -5.047140829696509, - -6.219314102994767, - -7.116244244906906, - -7.801416900281806, - -8.307102190408761, - -8.690338049726988, - -8.977990060535758, - -9.159070122457257, - -9.208324613490285, - -9.095788498812642, - -8.80708686940743, - -8.375552572778215, - -7.891431885790614, - -7.465130286070204, - -7.250570320523509, - -7.363991464814307, - -7.870448017669095, - -8.732203800659395, - -9.872062993318995, - -11.087601358374824, - -12.142829347717603, - -12.86339183143115, - -13.061969071549857, - -12.67560252541588, - -11.73001581367731, - -10.374480459428723, - -8.720338969478828, - -6.982717688140425, - -5.327999166664519, - -3.810781569754648, - -2.52245631508215, - -1.4195773474298552, - -0.4610390778347163, - 0.37327661185016453, - 1.1246006262193793, - 1.7606599679664507, - 2.2454552222359196, - 2.5303101875122764, - 2.5679732623740565, - 2.351919782382071, - 1.929687867424605, - 1.3690649928928882, - 0.7595055329076295, - 0.22968877263881443, - -0.18307581140662518, - -0.44862224959094793, - -0.5780070671513472, - -0.6391013814344962, - -0.7005264695304932, - -0.8166897390314939, - -1.0143840099350003, - -1.2699284454727762, - -1.538376336370904, - -1.7471632963159331, - -1.8323769130866316, - -1.7668479200666716, - -1.560980880301687, - -1.2591675089056469, - -0.9358914699291196, - -0.6655512321899627, - -0.4854634303554766, - -0.4075171458212325, - -0.3937862751628038, - -0.3783334189870726, - -0.2959898329879446, - -0.10223929110824903, - 0.2001708426485511, - 0.5666489701706048, - 0.9258845488111634, - 1.1801857541948357, - 1.296074027624371, - 1.2886899030105488, - 1.250487248438953, - 1.3484164907094542, - 1.7838440662379038, - 2.749025970618296, - 4.3840431686107655, - 6.6442937802739035, - 9.48481700887559, - 12.637855562039485, - 15.733141363462543 - ], - "pressure:branch64_seg1:J74": [ - 117444.70858764299, - 137472.92418084666, - 152296.0892660336, - 160423.36226257487, - 161695.68013713314, - 156473.14698868257, - 145893.80627718984, - 131931.9298065379, - 116178.85585187511, - 99796.09493844297, - 84196.14866435363, - 69135.75857898312, - 54610.72144077198, - 40535.84023092422, - 26180.577600097084, - 12069.526252161166, - -1974.324885510847, - -15574.259910551466, - -27480.6061796851, - -37884.857490611525, - -46349.07112939768, - -52753.765560704116, - -57656.79208997437, - -61279.11442652988, - -64015.52080447693, - -66073.43235409215, - -67327.2530372507, - -67589.71076141666, - -66648.41956475042, - -64430.99868687, - -61181.6365640795, - -57625.759659515534, - -54601.35700178785, - -53184.20500107881, - -54254.481596575715, - -58234.9824012155, - -64773.786378108256, - -73253.04871542232, - -82180.56570361515, - -89756.50637716554, - -94747.19752242877, - -95853.5246422181, - -92636.93523133411, - -85314.03337975962, - -75184.76959927517, - -62940.907252776495, - -50103.106537101485, - -38096.38916124221, - -27072.081231241715, - -17730.947704508315, - -9789.429174184492, - -2786.733945902486, - 3260.2087438323406, - 8685.296316757906, - 13306.87952215408, - 16741.465085206208, - 18679.985594715577, - 18800.841562719805, - 17063.510879201815, - 13833.543317810088, - 9662.287715382603, - 5203.884871867987, - 1369.534369733809, - -1561.4034802063902, - -3417.2409600367228, - -4301.787993436123, - -4722.58623961591, - -5194.44576948461, - -6096.7908429122945, - -7605.803773561864, - -9499.505526611103, - -11449.81046289123, - -12934.935388176977, - -13462.618955089323, - -12877.20698948504, - -11287.567620358144, - -9044.463409377906, - -6663.467936413986, - -4734.67371629155, - -3492.0608179169276, - -2965.388688900641, - -2887.637758604779, - -2753.7883713126816, - -2088.287041302551, - -590.786261478332, - 1695.6990040149117, - 4404.561494520581, - 7002.901724723309, - 8791.086797937673, - 9544.927921496288, - 9428.372441888543, - 9178.710170786588, - 10050.31121892902, - 13533.385597383754, - 20999.725495402807, - 33509.383580395035, - 50446.42276948751, - 71507.95843980437, - 94968.86846172981, - 117444.70858764299 - ], - "flow:J74:branch64_seg2": [ - 15.733141363462543, - 18.515537181788435, - 20.589868743417462, - 21.78679393182646, - 22.045380292803884, - 21.40206511589718, - 20.008920109523203, - 18.154434048057297, - 16.018327565522018, - 13.781564053906115, - 11.655683335704733, - 9.590629190172477, - 7.610513110835533, - 5.692313096226724, - 3.736192332186509, - 1.8143187103117766, - -0.103211807652876, - -1.9607708869911078, - -3.6052901237940724, - -5.047140829696509, - -6.219314102994767, - -7.116244244906906, - -7.801416900281806, - -8.307102190408761, - -8.690338049726988, - -8.977990060535758, - -9.159070122457257, - -9.208324613490285, - -9.095788498812642, - -8.80708686940743, - -8.375552572778215, - -7.891431885790614, - -7.465130286070204, - -7.250570320523509, - -7.363991464814307, - -7.870448017669095, - -8.732203800659395, - -9.872062993318995, - -11.087601358374824, - -12.142829347717603, - -12.86339183143115, - -13.061969071549857, - -12.67560252541588, - -11.73001581367731, - -10.374480459428723, - -8.720338969478828, - -6.982717688140425, - -5.327999166664519, - -3.810781569754648, - -2.52245631508215, - -1.4195773474298552, - -0.4610390778347163, - 0.37327661185016453, - 1.1246006262193793, - 1.7606599679664507, - 2.2454552222359196, - 2.5303101875122764, - 2.5679732623740565, - 2.351919782382071, - 1.929687867424605, - 1.3690649928928882, - 0.7595055329076295, - 0.22968877263881443, - -0.18307581140662518, - -0.44862224959094793, - -0.5780070671513472, - -0.6391013814344962, - -0.7005264695304932, - -0.8166897390314939, - -1.0143840099350003, - -1.2699284454727762, - -1.538376336370904, - -1.7471632963159331, - -1.8323769130866316, - -1.7668479200666716, - -1.560980880301687, - -1.2591675089056469, - -0.9358914699291196, - -0.6655512321899627, - -0.4854634303554766, - -0.4075171458212325, - -0.3937862751628038, - -0.3783334189870726, - -0.2959898329879446, - -0.10223929110824903, - 0.2001708426485511, - 0.5666489701706048, - 0.9258845488111634, - 1.1801857541948357, - 1.296074027624371, - 1.2886899030105488, - 1.250487248438953, - 1.3484164907094542, - 1.7838440662379038, - 2.749025970618296, - 4.3840431686107655, - 6.6442937802739035, - 9.48481700887559, - 12.637855562039485, - 15.733141363462543 - ], - "pressure:J74:branch64_seg2": [ - 117444.70858764299, - 137472.92418084666, - 152296.0892660336, - 160423.36226257487, - 161695.68013713314, - 156473.14698868257, - 145893.80627718984, - 131931.9298065379, - 116178.85585187511, - 99796.09493844297, - 84196.14866435363, - 69135.75857898312, - 54610.72144077198, - 40535.84023092422, - 26180.577600097084, - 12069.526252161166, - -1974.324885510847, - -15574.259910551466, - -27480.6061796851, - -37884.857490611525, - -46349.07112939768, - -52753.765560704116, - -57656.79208997437, - -61279.11442652988, - -64015.52080447693, - -66073.43235409215, - -67327.2530372507, - -67589.71076141666, - -66648.41956475042, - -64430.99868687, - -61181.6365640795, - -57625.759659515534, - -54601.35700178785, - -53184.20500107881, - -54254.481596575715, - -58234.9824012155, - -64773.786378108256, - -73253.04871542232, - -82180.56570361515, - -89756.50637716554, - -94747.19752242877, - -95853.5246422181, - -92636.93523133411, - -85314.03337975962, - -75184.76959927517, - -62940.907252776495, - -50103.106537101485, - -38096.38916124221, - -27072.081231241715, - -17730.947704508315, - -9789.429174184492, - -2786.733945902486, - 3260.2087438323406, - 8685.296316757906, - 13306.87952215408, - 16741.465085206208, - 18679.985594715577, - 18800.841562719805, - 17063.510879201815, - 13833.543317810088, - 9662.287715382603, - 5203.884871867987, - 1369.534369733809, - -1561.4034802063902, - -3417.2409600367228, - -4301.787993436123, - -4722.58623961591, - -5194.44576948461, - -6096.7908429122945, - -7605.803773561864, - -9499.505526611103, - -11449.81046289123, - -12934.935388176977, - -13462.618955089323, - -12877.20698948504, - -11287.567620358144, - -9044.463409377906, - -6663.467936413986, - -4734.67371629155, - -3492.0608179169276, - -2965.388688900641, - -2887.637758604779, - -2753.7883713126816, - -2088.287041302551, - -590.786261478332, - 1695.6990040149117, - 4404.561494520581, - 7002.901724723309, - 8791.086797937673, - 9544.927921496288, - 9428.372441888543, - 9178.710170786588, - 10050.31121892902, - 13533.385597383754, - 20999.725495402807, - 33509.383580395035, - 50446.42276948751, - 71507.95843980437, - 94968.86846172981, - 117444.70858764299 - ], - "flow:branch75_seg0:J75": [ - 34.15163313940896, - 37.16552749695996, - 38.053402782559466, - 36.73028019481514, - 33.85312450236915, - 29.826683800894802, - 25.119913395503556, - 20.400274895428083, - 16.30778655488655, - 12.424674121663676, - 9.282230189429022, - 6.491724786542834, - 3.6379086806478886, - 0.9873975157721333, - -1.9407584836402738, - -4.7716850139291855, - -7.411805973828602, - -9.933891209485251, - -11.677757247594316, - -12.982475443700206, - -13.827859819900995, - -14.169966031763549, - -14.379561873049903, - -14.467831748655966, - -14.511899215326501, - -14.515820723829167, - -14.32983464853686, - -13.866835975306397, - -13.083610620864087, - -12.03447498108157, - -10.865412550487259, - -9.957701887894007, - -9.540906028472333, - -9.887684865804825, - -11.151624691437055, - -13.218366334556126, - -15.71710173283585, - -18.266429658998128, - -20.41353279337726, - -21.465773846811324, - -21.391028338419094, - -20.014378402009743, - -17.477316571522245, - -14.11428227208499, - -10.664569256575023, - -7.171690076980946, - -4.093153627053156, - -1.8498941600280234, - 0.01739892572232778, - 1.2909014689222655, - 2.2647660881379745, - 3.2297378434865, - 3.983614197216012, - 4.709555481828363, - 5.230604687553624, - 5.32130097076494, - 4.990693284789595, - 4.165398055454441, - 2.9422326242398986, - 1.5292482912385486, - 0.22920859698229387, - -0.8845216795328423, - -1.5247060459756119, - -1.7361070715582345, - -1.6885649029770802, - -1.4687951491428322, - -1.317763848060316, - -1.394924124963024, - -1.7237496123587281, - -2.257271995054705, - -2.7947916160973327, - -3.202084894563739, - -3.311761237074703, - -3.0192985065273947, - -2.4092379235583246, - -1.6380857777636015, - -0.8764743630720359, - -0.28549270905854895, - -0.04905425825431495, - -0.0676208167383732, - -0.2468555418681458, - -0.42409924171408786, - -0.3933039505911366, - -0.051083540704946896, - 0.5841988537556959, - 1.3889351543550912, - 2.1076734889557143, - 2.598554306695996, - 2.6634831579073195, - 2.3689501322902164, - 1.9769884780854556, - 1.866135489297969, - 2.5064926285027043, - 4.322754421121782, - 7.535384324300044, - 12.28941940712703, - 17.75682102752931, - 23.866151663011898, - 29.83088682169783, - 34.15163313940896 - ], - "pressure:branch75_seg0:J75": [ - 188395.40304071736, - 202419.94389783684, - 206134.86834866146, - 197040.6461281338, - 179861.96978857333, - 157412.35724974432, - 132132.6715765309, - 105542.73832897993, - 84645.22203023039, - 64579.53234086931, - 47081.364944660236, - 32953.50210340434, - 17180.3079144942, - 2794.4569723606464, - -12572.263469697717, - -28476.2606193913, - -42172.61561422648, - -55332.8410169816, - -64638.27140859408, - -70965.71539128799, - -75292.38682174752, - -76967.29084746414, - -77861.45077449626, - -78382.78346248638, - -78582.31969684323, - -78503.57922686453, - -77324.93163396174, - -74513.11651687293, - -69952.88956010292, - -64136.42173673039, - -57797.84944654988, - -53145.014344884235, - -51667.46572988231, - -54216.74656218698, - -61813.11927783547, - -73556.13906402288, - -87612.94190701247, - -100785.84012101957, - -111980.44908576144, - -116713.8707138066, - -114955.68662466358, - -106575.98663369502, - -92213.29829288324, - -73473.38807981774, - -54736.19089415032, - -36279.38272044893, - -19823.964483895936, - -8231.659279799647, - 1225.00009027819, - 8035.7420349970735, - 13048.165387767709, - 18293.577003859333, - 22344.231956896638, - 25948.210702687065, - 28716.926488282657, - 28752.06670119278, - 26452.27060431674, - 21596.321864099773, - 14804.906676202334, - 6825.49949432122, - 140.8669198826099, - -5376.049006797419, - -8753.616943505274, - -9413.84788803025, - -8926.416925278994, - -7802.936893379099, - -7087.674344983862, - -7714.2942450040655, - -9695.231521300897, - -12692.663141965884, - -15546.15801529142, - -17532.082124265686, - -17855.75289635645, - -15983.99621080194, - -12399.717392381848, - -8158.011869759279, - -4155.992075489962, - -1116.8380293897637, - -117.58974187602544, - -526.8324955268699, - -1523.7560369867433, - -2366.3956719444504, - -1981.6639786388705, - 182.51256701514066, - 3792.797619163148, - 8312.970482105004, - 11968.603633130222, - 14209.621401728575, - 14341.174442798965, - 12488.114940069427, - 10388.222357340708, - 10260.108141499313, - 14553.495776569018, - 25547.8896963385, - 43968.17500736543, - 70873.64146554956, - 100973.34855593203, - 134078.57545820923, - 166282.8567815261, - 188395.40304071736 - ], - "flow:J75:branch75_seg1": [ - 34.15163313940896, - 37.16552749695996, - 38.053402782559466, - 36.73028019481514, - 33.85312450236915, - 29.826683800894802, - 25.119913395503556, - 20.400274895428083, - 16.30778655488655, - 12.424674121663676, - 9.282230189429022, - 6.491724786542834, - 3.6379086806478886, - 0.9873975157721333, - -1.9407584836402738, - -4.7716850139291855, - -7.411805973828602, - -9.933891209485251, - -11.677757247594316, - -12.982475443700206, - -13.827859819900995, - -14.169966031763549, - -14.379561873049903, - -14.467831748655966, - -14.511899215326501, - -14.515820723829167, - -14.32983464853686, - -13.866835975306397, - -13.083610620864087, - -12.03447498108157, - -10.865412550487259, - -9.957701887894007, - -9.540906028472333, - -9.887684865804825, - -11.151624691437055, - -13.218366334556126, - -15.71710173283585, - -18.266429658998128, - -20.41353279337726, - -21.465773846811324, - -21.391028338419094, - -20.014378402009743, - -17.477316571522245, - -14.11428227208499, - -10.664569256575023, - -7.171690076980946, - -4.093153627053156, - -1.8498941600280234, - 0.01739892572232778, - 1.2909014689222655, - 2.2647660881379745, - 3.2297378434865, - 3.983614197216012, - 4.709555481828363, - 5.230604687553624, - 5.32130097076494, - 4.990693284789595, - 4.165398055454441, - 2.9422326242398986, - 1.5292482912385486, - 0.22920859698229387, - -0.8845216795328423, - -1.5247060459756119, - -1.7361070715582345, - -1.6885649029770802, - -1.4687951491428322, - -1.317763848060316, - -1.394924124963024, - -1.7237496123587281, - -2.257271995054705, - -2.7947916160973327, - -3.202084894563739, - -3.311761237074703, - -3.0192985065273947, - -2.4092379235583246, - -1.6380857777636015, - -0.8764743630720359, - -0.28549270905854895, - -0.04905425825431495, - -0.0676208167383732, - -0.2468555418681458, - -0.42409924171408786, - -0.3933039505911366, - -0.051083540704946896, - 0.5841988537556959, - 1.3889351543550912, - 2.1076734889557143, - 2.598554306695996, - 2.6634831579073195, - 2.3689501322902164, - 1.9769884780854556, - 1.866135489297969, - 2.5064926285027043, - 4.322754421121782, - 7.535384324300044, - 12.28941940712703, - 17.75682102752931, - 23.866151663011898, - 29.83088682169783, - 34.15163313940896 - ], - "pressure:J75:branch75_seg1": [ - 188395.40304071736, - 202419.94389783684, - 206134.86834866146, - 197040.6461281338, - 179861.96978857333, - 157412.35724974432, - 132132.6715765309, - 105542.73832897993, - 84645.22203023039, - 64579.53234086931, - 47081.364944660236, - 32953.50210340434, - 17180.3079144942, - 2794.4569723606464, - -12572.263469697717, - -28476.2606193913, - -42172.61561422648, - -55332.8410169816, - -64638.27140859408, - -70965.71539128799, - -75292.38682174752, - -76967.29084746414, - -77861.45077449626, - -78382.78346248638, - -78582.31969684323, - -78503.57922686453, - -77324.93163396174, - -74513.11651687293, - -69952.88956010292, - -64136.42173673039, - -57797.84944654988, - -53145.014344884235, - -51667.46572988231, - -54216.74656218698, - -61813.11927783547, - -73556.13906402288, - -87612.94190701247, - -100785.84012101957, - -111980.44908576144, - -116713.8707138066, - -114955.68662466358, - -106575.98663369502, - -92213.29829288324, - -73473.38807981774, - -54736.19089415032, - -36279.38272044893, - -19823.964483895936, - -8231.659279799647, - 1225.00009027819, - 8035.7420349970735, - 13048.165387767709, - 18293.577003859333, - 22344.231956896638, - 25948.210702687065, - 28716.926488282657, - 28752.06670119278, - 26452.27060431674, - 21596.321864099773, - 14804.906676202334, - 6825.49949432122, - 140.8669198826099, - -5376.049006797419, - -8753.616943505274, - -9413.84788803025, - -8926.416925278994, - -7802.936893379099, - -7087.674344983862, - -7714.2942450040655, - -9695.231521300897, - -12692.663141965884, - -15546.15801529142, - -17532.082124265686, - -17855.75289635645, - -15983.99621080194, - -12399.717392381848, - -8158.011869759279, - -4155.992075489962, - -1116.8380293897637, - -117.58974187602544, - -526.8324955268699, - -1523.7560369867433, - -2366.3956719444504, - -1981.6639786388705, - 182.51256701514066, - 3792.797619163148, - 8312.970482105004, - 11968.603633130222, - 14209.621401728575, - 14341.174442798965, - 12488.114940069427, - 10388.222357340708, - 10260.108141499313, - 14553.495776569018, - 25547.8896963385, - 43968.17500736543, - 70873.64146554956, - 100973.34855593203, - 134078.57545820923, - 166282.8567815261, - 188395.40304071736 - ], - "flow:branch75_seg1:J76": [ - 34.13853822168963, - 37.161661756026184, - 38.05643474514289, - 36.73889962404026, - 33.868257911393904, - 29.846646484281194, - 25.14033638286456, - 20.425166963220466, - 16.329199112128027, - 12.438008310386994, - 9.301569045433112, - 6.504547470010049, - 3.6525753058712174, - 1.0029437961022094, - -1.930885645748878, - -4.754158263991832, - -7.4026069197136275, - -9.92797273889662, - -11.671628815348535, - -12.979781636597126, - -13.827113687583171, - -14.169356197727126, - -14.379922076927027, - -14.468063213069168, - -14.511649768710974, - -14.51653757621103, - -14.331031561018758, - -13.869627614752458, - -13.08730612948092, - -12.03976540391188, - -10.869463879798166, - -9.961547759543231, - -9.540674278202953, - -9.883812036331992, - -11.143048784738797, - -13.208202190444448, - -15.701272483213499, - -18.256465589352977, - -20.40557241916859, - -21.463248671646657, - -21.395657529129537, - -20.025759673788237, - -17.488113320677375, - -14.127192895729085, - -10.677628068742791, - -7.182443166036737, - -4.100721303426868, - -1.8559552806213135, - 0.013871357354997147, - 1.2887255219695257, - 2.2604765463561414, - 3.228008597004392, - 3.9802309938866203, - 4.707104825198695, - 5.229281576507338, - 5.32149807873829, - 4.993552837259164, - 4.170613854146997, - 2.9482687613484457, - 1.537371369448685, - 0.23574636690216091, - -0.8817055359972367, - -1.5214966343583123, - -1.7359691018785026, - -1.6898031403213365, - -1.4695712922512714, - -1.317746681250744, - -1.3937516808778578, - -1.7221095333285654, - -2.255231234174645, - -2.7932884325385716, - -3.201383175966515, - -3.3128669220031077, - -3.0209474702446357, - -2.412253868413121, - -1.640591597247675, - -0.8793450670531752, - -0.2864755603533966, - -0.04968178455025523, - -0.06693700193060576, - -0.2459240661963094, - -0.42385465945490597, - -0.3942210421666848, - -0.05373476918064085, - 0.5807436581809247, - 1.3844224868555601, - 2.104406523766028, - 2.598046102737284, - 2.6639847085176207, - 2.370529775084521, - 1.978440734277104, - 1.8646683900905596, - 2.501274759165479, - 4.310024985872918, - 7.521762051266705, - 12.270484384412985, - 17.738856508495388, - 23.843225815725496, - 29.818405956499998, - 34.13853822168963 - ], - "pressure:branch75_seg1:J76": [ - 183965.15294554608, - 199602.98591997678, - 204126.9085444446, - 196577.6091366816, - 180780.32899985727, - 159047.12685405157, - 133857.75316070634, - 108308.30451994599, - 86657.66023209105, - 66030.71545210965, - 49086.316128514736, - 34332.99076531826, - 18956.329138359277, - 4737.727717520444, - -10873.076525319007, - -26161.113959778246, - -40212.94337491732, - -53631.19341311272, - -62949.41858893652, - -69780.81849939984, - -74261.65885309216, - -76053.58469996894, - -77122.4779741685, - -77606.2182060492, - -77830.63054414731, - -77831.54356423272, - -76793.79001134065, - -74242.72652358685, - -69967.05520368848, - -64314.42067487413, - -58036.31532722939, - -53232.19093256814, - -51170.80410705374, - -53180.035119657434, - -60122.82289959909, - -71336.99328294802, - -84841.74983230403, - -98386.01985952663, - -109804.24886218562, - -115234.57969245438, - -114532.43232645618, - -106952.4057244839, - -93187.29641817012, - -75029.78448563206, - -56513.87727158795, - -37882.13123074933, - -21409.406255627222, - -9507.346091859496, - 356.72373646558043, - 7172.883023039797, - 12321.115448803519, - 17513.96188435097, - 21541.529671792534, - 25358.168070636508, - 28145.224507026527, - 28525.58784491217, - 26638.709732973366, - 22127.45357820423, - 15529.6383005565, - 7879.46424973317, - 987.9136581120513, - -4875.89699349187, - -8285.403561083222, - -9313.901719046902, - -9008.389719934929, - -7844.096310529468, - -7055.709821486168, - -7515.766467737659, - -9326.895108671673, - -12213.222830532657, - -15084.632196883973, - -17218.506856512467, - -17748.359162871384, - -16110.872500343115, - -12775.82301204449, - -8620.858067792948, - -4568.151935588025, - -1429.3010386329224, - -229.30745597874045, - -399.24492344047826, - -1365.9596462639847, - -2290.7663438855348, - -2077.087657892062, - -172.69876384918646, - 3272.834708730155, - 7624.37585845682, - 11426.295949386247, - 13968.878180717571, - 14267.376955106323, - 12628.895154428898, - 10531.685324269838, - 10040.24401493774, - 13661.759196942721, - 23654.102262606768, - 41135.18290541544, - 66894.66423396344, - 96346.34793622754, - 129095.42879061899, - 161112.47630026648, - 183965.15294554608 - ], - "flow:J76:branch75_seg2": [ - 34.13853822168963, - 37.161661756026184, - 38.05643474514289, - 36.73889962404026, - 33.868257911393904, - 29.846646484281194, - 25.14033638286456, - 20.425166963220466, - 16.329199112128027, - 12.438008310386994, - 9.301569045433112, - 6.504547470010049, - 3.6525753058712174, - 1.0029437961022094, - -1.930885645748878, - -4.754158263991832, - -7.4026069197136275, - -9.92797273889662, - -11.671628815348535, - -12.979781636597126, - -13.827113687583171, - -14.169356197727126, - -14.379922076927027, - -14.468063213069168, - -14.511649768710974, - -14.51653757621103, - -14.331031561018758, - -13.869627614752458, - -13.08730612948092, - -12.03976540391188, - -10.869463879798166, - -9.961547759543231, - -9.540674278202953, - -9.883812036331992, - -11.143048784738797, - -13.208202190444448, - -15.701272483213499, - -18.256465589352977, - -20.40557241916859, - -21.463248671646657, - -21.395657529129537, - -20.025759673788237, - -17.488113320677375, - -14.127192895729085, - -10.677628068742791, - -7.182443166036737, - -4.100721303426868, - -1.8559552806213135, - 0.013871357354997147, - 1.2887255219695257, - 2.2604765463561414, - 3.228008597004392, - 3.9802309938866203, - 4.707104825198695, - 5.229281576507338, - 5.32149807873829, - 4.993552837259164, - 4.170613854146997, - 2.9482687613484457, - 1.537371369448685, - 0.23574636690216091, - -0.8817055359972367, - -1.5214966343583123, - -1.7359691018785026, - -1.6898031403213365, - -1.4695712922512714, - -1.317746681250744, - -1.3937516808778578, - -1.7221095333285654, - -2.255231234174645, - -2.7932884325385716, - -3.201383175966515, - -3.3128669220031077, - -3.0209474702446357, - -2.412253868413121, - -1.640591597247675, - -0.8793450670531752, - -0.2864755603533966, - -0.04968178455025523, - -0.06693700193060576, - -0.2459240661963094, - -0.42385465945490597, - -0.3942210421666848, - -0.05373476918064085, - 0.5807436581809247, - 1.3844224868555601, - 2.104406523766028, - 2.598046102737284, - 2.6639847085176207, - 2.370529775084521, - 1.978440734277104, - 1.8646683900905596, - 2.501274759165479, - 4.310024985872918, - 7.521762051266705, - 12.270484384412985, - 17.738856508495388, - 23.843225815725496, - 29.818405956499998, - 34.13853822168963 - ], - "pressure:J76:branch75_seg2": [ - 183965.15294554608, - 199602.98591997678, - 204126.9085444446, - 196577.6091366816, - 180780.32899985727, - 159047.12685405157, - 133857.75316070634, - 108308.30451994599, - 86657.66023209105, - 66030.71545210965, - 49086.316128514736, - 34332.99076531826, - 18956.329138359277, - 4737.727717520444, - -10873.076525319007, - -26161.113959778246, - -40212.94337491732, - -53631.19341311272, - -62949.41858893652, - -69780.81849939984, - -74261.65885309216, - -76053.58469996894, - -77122.4779741685, - -77606.2182060492, - -77830.63054414731, - -77831.54356423272, - -76793.79001134065, - -74242.72652358685, - -69967.05520368848, - -64314.42067487413, - -58036.31532722939, - -53232.19093256814, - -51170.80410705374, - -53180.035119657434, - -60122.82289959909, - -71336.99328294802, - -84841.74983230403, - -98386.01985952663, - -109804.24886218562, - -115234.57969245438, - -114532.43232645618, - -106952.4057244839, - -93187.29641817012, - -75029.78448563206, - -56513.87727158795, - -37882.13123074933, - -21409.406255627222, - -9507.346091859496, - 356.72373646558043, - 7172.883023039797, - 12321.115448803519, - 17513.96188435097, - 21541.529671792534, - 25358.168070636508, - 28145.224507026527, - 28525.58784491217, - 26638.709732973366, - 22127.45357820423, - 15529.6383005565, - 7879.46424973317, - 987.9136581120513, - -4875.89699349187, - -8285.403561083222, - -9313.901719046902, - -9008.389719934929, - -7844.096310529468, - -7055.709821486168, - -7515.766467737659, - -9326.895108671673, - -12213.222830532657, - -15084.632196883973, - -17218.506856512467, - -17748.359162871384, - -16110.872500343115, - -12775.82301204449, - -8620.858067792948, - -4568.151935588025, - -1429.3010386329224, - -229.30745597874045, - -399.24492344047826, - -1365.9596462639847, - -2290.7663438855348, - -2077.087657892062, - -172.69876384918646, - 3272.834708730155, - 7624.37585845682, - 11426.295949386247, - 13968.878180717571, - 14267.376955106323, - 12628.895154428898, - 10531.685324269838, - 10040.24401493774, - 13661.759196942721, - 23654.102262606768, - 41135.18290541544, - 66894.66423396344, - 96346.34793622754, - 129095.42879061899, - 161112.47630026648, - 183965.15294554608 - ], - "flow:branch77_seg0:J77": [ - 36.84809655758482, - 41.59975880168292, - 44.130933325000164, - 44.29181179580483, - 42.3179681485106, - 38.57226280475751, - 33.6103022381907, - 28.24519505661638, - 22.99479444492442, - 18.028622551104835, - 13.802830360010747, - 10.005106242831872, - 6.483630344551984, - 3.1837402207383194, - -0.24165470978927606, - -3.5647897679873184, - -6.8259322734328345, - -9.903252351684127, - -12.367785811494684, - -14.34160198312153, - -15.709397514794418, - -16.507050373475355, - -16.97768956583782, - -17.202851264111086, - -17.317678665835953, - -17.355291691902586, - -17.234850600631436, - -16.866114889885726, - -16.16860571276792, - -15.13394757223164, - -13.878268837154337, - -12.694629180953365, - -11.858130507561643, - -11.728205164875135, - -12.529411935074112, - -14.295703954767715, - -16.785891079324127, - -19.68717831673071, - -22.437814696964903, - -24.406708667543537, - -25.275192424114138, - -24.710206931802645, - -22.72074289350564, - -19.55386604098552, - -15.768316405464205, - -11.64096221967361, - -7.745984223239935, - -4.457578934457701, - -1.7117520998646563, - 0.3234869893446091, - 1.899718218067893, - 3.2140390434450885, - 4.28644927071486, - 5.261966966979668, - 6.010146949028576, - 6.397804930761389, - 6.3320759687506305, - 5.711028927471643, - 4.572483358221648, - 3.093678569565668, - 1.5084755271448274, - 0.01959376348583927, - -1.0636913987229488, - -1.7120361912996265, - -1.9559121986847554, - -1.893146440794668, - -1.7551076836626285, - -1.7355796290835634, - -1.9446610205432497, - -2.399923223542095, - -2.9733843565711773, - -3.517223578897463, - -3.82874818828084, - -3.7658139499476277, - -3.3196615061306423, - -2.5821921376202552, - -1.7154228708822157, - -0.9259409176823142, - -0.4068193021861771, - -0.18084114995306103, - -0.21879677023131483, - -0.3680814077874286, - -0.42137743021010976, - -0.2194616855463411, - 0.3064587179954901, - 1.0892282649992056, - 1.9438693860890688, - 2.6700788007760217, - 3.0249948520739234, - 2.980403824000922, - 2.6739099631604595, - 2.430725830941793, - 2.7313749298349634, - 4.079074537894445, - 6.873069820614662, - 11.33321833801953, - 17.054486158692793, - 23.833855390985946, - 30.80433274138121, - 36.84809655758482 - ], - "pressure:branch77_seg0:J77": [ - 169659.73947865597, - 188740.70402016395, - 198253.0413694472, - 196471.31520584, - 185564.55320572827, - 167627.3240174426, - 144969.02085246463, - 120306.81316055526, - 97610.66386419271, - 76092.66926370835, - 57483.8395264698, - 41310.32567722321, - 25604.905022593673, - 10968.801171784304, - -4164.589782211246, - -19135.183979691916, - -33369.11470861164, - -46854.23007379266, - -57361.38224451948, - -65404.21943525699, - -71094.123886511, - -74175.5576654333, - -75952.9028134842, - -76842.97508480494, - -77237.82384224296, - -77324.59963082608, - -76602.82722043685, - -74654.30843766441, - -71181.36716656329, - -66335.42732166531, - -60577.93299873682, - -55506.12258507256, - -52392.885136628334, - -52541.75505723492, - -57031.51080290337, - -65780.14534423791, - -77500.75869535387, - -90412.97008215524, - -102390.25758889088, - -110231.32426196491, - -112737.45701726788, - -108945.08933564571, - -98817.34966030443, - -83606.4757578149, - -66382.75811895277, - -48109.67398678907, - -30819.99170385225, - -16931.4750369554, - -5357.055920957577, - 3278.9363705574206, - 9753.669750051033, - 15565.04161879678, - 20145.410642341616, - 24215.688881191094, - 27422.731539483364, - 28690.34440107027, - 27866.580395419343, - 24604.241411434396, - 19131.3659349816, - 12201.970700543106, - 5233.46820335938, - -1105.398802318387, - -5639.618090602911, - -8013.260466890095, - -8761.768743307419, - -8333.595920243053, - -7710.411184061165, - -7800.435110861488, - -8984.72431130737, - -11232.55986721962, - -13823.60919623369, - -16091.026651474616, - -17226.165639045546, - -16552.803778815338, - -14183.936676708043, - -10680.639518803417, - -6843.990124192623, - -3417.835512657478, - -1428.8863999082198, - -769.8934446641973, - -1089.8587438548245, - -1762.348273938751, - -1834.0224630867074, - -633.1155798582458, - 1994.2974025804006, - 5701.2768951783255, - 9446.778047691076, - 12407.86390043447, - 13659.889714441291, - 13073.724286283285, - 11566.368132055573, - 10764.915053240995, - 12869.687333521062, - 20092.60280026794, - 33998.262165527594, - 55605.132812802665, - 82129.96613594548, - 112637.75503022678, - 144221.61960632686, - 169659.73947865597 - ], - "flow:J77:branch77_seg1": [ - 36.84809655758482, - 41.59975880168292, - 44.130933325000164, - 44.29181179580483, - 42.3179681485106, - 38.57226280475751, - 33.6103022381907, - 28.24519505661638, - 22.99479444492442, - 18.028622551104835, - 13.802830360010747, - 10.005106242831872, - 6.483630344551984, - 3.1837402207383194, - -0.24165470978927606, - -3.5647897679873184, - -6.8259322734328345, - -9.903252351684127, - -12.367785811494684, - -14.34160198312153, - -15.709397514794418, - -16.507050373475355, - -16.97768956583782, - -17.202851264111086, - -17.317678665835953, - -17.355291691902586, - -17.234850600631436, - -16.866114889885726, - -16.16860571276792, - -15.13394757223164, - -13.878268837154337, - -12.694629180953365, - -11.858130507561643, - -11.728205164875135, - -12.529411935074112, - -14.295703954767715, - -16.785891079324127, - -19.68717831673071, - -22.437814696964903, - -24.406708667543537, - -25.275192424114138, - -24.710206931802645, - -22.72074289350564, - -19.55386604098552, - -15.768316405464205, - -11.64096221967361, - -7.745984223239935, - -4.457578934457701, - -1.7117520998646563, - 0.3234869893446091, - 1.899718218067893, - 3.2140390434450885, - 4.28644927071486, - 5.261966966979668, - 6.010146949028576, - 6.397804930761389, - 6.3320759687506305, - 5.711028927471643, - 4.572483358221648, - 3.093678569565668, - 1.5084755271448274, - 0.01959376348583927, - -1.0636913987229488, - -1.7120361912996265, - -1.9559121986847554, - -1.893146440794668, - -1.7551076836626285, - -1.7355796290835634, - -1.9446610205432497, - -2.399923223542095, - -2.9733843565711773, - -3.517223578897463, - -3.82874818828084, - -3.7658139499476277, - -3.3196615061306423, - -2.5821921376202552, - -1.7154228708822157, - -0.9259409176823142, - -0.4068193021861771, - -0.18084114995306103, - -0.21879677023131483, - -0.3680814077874286, - -0.42137743021010976, - -0.2194616855463411, - 0.3064587179954901, - 1.0892282649992056, - 1.9438693860890688, - 2.6700788007760217, - 3.0249948520739234, - 2.980403824000922, - 2.6739099631604595, - 2.430725830941793, - 2.7313749298349634, - 4.079074537894445, - 6.873069820614662, - 11.33321833801953, - 17.054486158692793, - 23.833855390985946, - 30.80433274138121, - 36.84809655758482 - ], - "pressure:J77:branch77_seg1": [ - 169659.73947865597, - 188740.70402016395, - 198253.0413694472, - 196471.31520584, - 185564.55320572827, - 167627.3240174426, - 144969.02085246463, - 120306.81316055526, - 97610.66386419271, - 76092.66926370835, - 57483.8395264698, - 41310.32567722321, - 25604.905022593673, - 10968.801171784304, - -4164.589782211246, - -19135.183979691916, - -33369.11470861164, - -46854.23007379266, - -57361.38224451948, - -65404.21943525699, - -71094.123886511, - -74175.5576654333, - -75952.9028134842, - -76842.97508480494, - -77237.82384224296, - -77324.59963082608, - -76602.82722043685, - -74654.30843766441, - -71181.36716656329, - -66335.42732166531, - -60577.93299873682, - -55506.12258507256, - -52392.885136628334, - -52541.75505723492, - -57031.51080290337, - -65780.14534423791, - -77500.75869535387, - -90412.97008215524, - -102390.25758889088, - -110231.32426196491, - -112737.45701726788, - -108945.08933564571, - -98817.34966030443, - -83606.4757578149, - -66382.75811895277, - -48109.67398678907, - -30819.99170385225, - -16931.4750369554, - -5357.055920957577, - 3278.9363705574206, - 9753.669750051033, - 15565.04161879678, - 20145.410642341616, - 24215.688881191094, - 27422.731539483364, - 28690.34440107027, - 27866.580395419343, - 24604.241411434396, - 19131.3659349816, - 12201.970700543106, - 5233.46820335938, - -1105.398802318387, - -5639.618090602911, - -8013.260466890095, - -8761.768743307419, - -8333.595920243053, - -7710.411184061165, - -7800.435110861488, - -8984.72431130737, - -11232.55986721962, - -13823.60919623369, - -16091.026651474616, - -17226.165639045546, - -16552.803778815338, - -14183.936676708043, - -10680.639518803417, - -6843.990124192623, - -3417.835512657478, - -1428.8863999082198, - -769.8934446641973, - -1089.8587438548245, - -1762.348273938751, - -1834.0224630867074, - -633.1155798582458, - 1994.2974025804006, - 5701.2768951783255, - 9446.778047691076, - 12407.86390043447, - 13659.889714441291, - 13073.724286283285, - 11566.368132055573, - 10764.915053240995, - 12869.687333521062, - 20092.60280026794, - 33998.262165527594, - 55605.132812802665, - 82129.96613594548, - 112637.75503022678, - 144221.61960632686, - 169659.73947865597 - ], - "flow:branch77_seg1:J78": [ - 36.81275994958986, - 41.58031995847665, - 44.1236555010403, - 44.29987892163685, - 42.34107021602675, - 38.6040108314833, - 33.64328767532121, - 28.286535968275512, - 23.028200364488683, - 18.054649547762686, - 13.830607360979657, - 10.026381913766858, - 6.505357059664544, - 3.205162120067066, - -0.22412453445683422, - -3.5434403334147664, - -6.806807727070711, - -9.889605304020135, - -12.354599443624974, - -14.33295980099445, - -15.704200487528164, - -16.50329211335784, - -16.976400557059073, - -17.202005873333597, - -17.3170965155976, - -17.355639441311865, - -17.236486375625983, - -16.869939751395343, - -16.17510144563164, - -15.142010403640679, - -13.886891249951017, - -12.701760455309218, - -11.860145413745162, - -11.724632023503336, - -12.519855223371666, - -14.281267791869007, - -16.766040745997614, - -19.67008982313335, - -22.42379005240237, - -24.39887688464227, - -25.2773698587314, - -24.72057010927851, - -22.73761178143722, - -19.57492186958369, - -15.79301382021717, - -11.664992527951885, - -7.767210037031519, - -4.476313271227524, - -1.7248066695363502, - 0.31254188219124107, - 1.8904541039684266, - 3.2061417344838694, - 4.279328927527915, - 5.25683706469762, - 6.006078252581504, - 6.396981697663283, - 6.335274900471546, - 5.717902638323467, - 4.581212002136624, - 3.1055213025445836, - 1.5184012724429723, - 0.02580800831608832, - -1.058318305111133, - -1.7100070580987792, - -1.9564235801618393, - -1.8939571212326152, - -1.755529734386844, - -1.7347894795278869, - -1.9423392631320935, - -2.396669338516398, - -2.969890329598438, - -3.5147148255583733, - -3.8283825824726687, - -3.767709897112659, - -3.3240069199481965, - -2.5878168296137396, - -1.7209474148165924, - -0.9303638675724275, - -0.4091286871188626, - -0.18077359768423562, - -0.21771906109853414, - -0.3674353636648261, - -0.42209258321105053, - -0.22245805270196276, - 0.3019254294329371, - 1.0830167549623366, - 1.9388370950637777, - 2.6679458552694126, - 3.0245594916327603, - 2.9820176403900382, - 2.6760329647330336, - 2.4303607475694484, - 2.7254381213811487, - 4.064771682512132, - 6.84952245048107, - 11.3012799954281, - 17.015395166408688, - 23.788994871641307, - 30.762294442666086, - 36.81275994958986 - ], - "pressure:branch77_seg1:J78": [ - 165583.39042562016, - 185729.61518211095, - 196177.48769930092, - 195800.90250730433, - 186146.2008545072, - 169020.25097520582, - 146797.62613263103, - 122720.5656915592, - 99753.84204900402, - 78009.57343470628, - 59401.52716437674, - 42897.20272763814, - 27296.49237194819, - 12708.135725705763, - -2419.6645311313323, - -17196.707718093607, - -31517.251820775386, - -45065.37208223619, - -55764.10703440588, - -64178.01764397738, - -70064.45866053995, - -73384.75148074863, - -75331.98872448367, - -76278.66243754368, - -76734.1156235831, - -76867.54855305757, - -76253.90643719152, - -74489.03143911152, - -71242.22812688776, - -66558.28061019839, - -60923.55388903916, - -55768.81153682144, - -52325.692356737076, - -52061.576496248934, - -56008.45573442686, - -64215.81883619483, - -75509.40834157195, - -88365.9989858344, - -100432.5496059009, - -108751.30986523037, - -112010.67484379785, - -108955.88926996976, - -99586.6918061254, - -85068.95186614538, - -68153.23496933604, - -49924.50148752043, - -32689.13130946298, - -18468.110899601717, - -6587.298504310699, - 2236.1506845417052, - 8969.363096712072, - 14777.560202533412, - 19437.7383987911, - 23638.67876718239, - 26899.1206770573, - 28417.60587170913, - 27898.492117223665, - 24935.688084490266, - 19716.535976976425, - 13023.643595220285, - 6037.314471426283, - -436.0821632847672, - -5103.298170506498, - -7751.906800320125, - -8686.752599088259, - -8341.568211236396, - -7724.635011615027, - -7714.567111991607, - -8751.081701917054, - -10865.048727411227, - -13420.520274725706, - -15761.280492269914, - -17033.619584438045, - -16582.586135685455, - -14440.938029572559, - -11079.340144662048, - -7252.490566295203, - -3792.646538379414, - -1634.7009901347185, - -784.5166430207124, - -1017.5940702097433, - -1683.9207131150745, - -1849.245210960847, - -825.9485629604027, - 1627.9470251046278, - 5188.456114334814, - 8950.510514460231, - 12052.312241969155, - 13480.00489473587, - 13112.357108359203, - 11691.525351508055, - 10733.809550782747, - 12395.149708340205, - 18890.667812588898, - 31900.91308513038, - 52422.05729045436, - 78209.56696297531, - 108346.56324659754, - 139481.7874060658, - 165583.39042562016 - ], - "flow:J78:branch77_seg2": [ - 36.81275994958986, - 41.58031995847665, - 44.1236555010403, - 44.29987892163685, - 42.34107021602675, - 38.6040108314833, - 33.64328767532121, - 28.286535968275512, - 23.028200364488683, - 18.054649547762686, - 13.830607360979657, - 10.026381913766858, - 6.505357059664544, - 3.205162120067066, - -0.22412453445683422, - -3.5434403334147664, - -6.806807727070711, - -9.889605304020135, - -12.354599443624974, - -14.33295980099445, - -15.704200487528164, - -16.50329211335784, - -16.976400557059073, - -17.202005873333597, - -17.3170965155976, - -17.355639441311865, - -17.236486375625983, - -16.869939751395343, - -16.17510144563164, - -15.142010403640679, - -13.886891249951017, - -12.701760455309218, - -11.860145413745162, - -11.724632023503336, - -12.519855223371666, - -14.281267791869007, - -16.766040745997614, - -19.67008982313335, - -22.42379005240237, - -24.39887688464227, - -25.2773698587314, - -24.72057010927851, - -22.73761178143722, - -19.57492186958369, - -15.79301382021717, - -11.664992527951885, - -7.767210037031519, - -4.476313271227524, - -1.7248066695363502, - 0.31254188219124107, - 1.8904541039684266, - 3.2061417344838694, - 4.279328927527915, - 5.25683706469762, - 6.006078252581504, - 6.396981697663283, - 6.335274900471546, - 5.717902638323467, - 4.581212002136624, - 3.1055213025445836, - 1.5184012724429723, - 0.02580800831608832, - -1.058318305111133, - -1.7100070580987792, - -1.9564235801618393, - -1.8939571212326152, - -1.755529734386844, - -1.7347894795278869, - -1.9423392631320935, - -2.396669338516398, - -2.969890329598438, - -3.5147148255583733, - -3.8283825824726687, - -3.767709897112659, - -3.3240069199481965, - -2.5878168296137396, - -1.7209474148165924, - -0.9303638675724275, - -0.4091286871188626, - -0.18077359768423562, - -0.21771906109853414, - -0.3674353636648261, - -0.42209258321105053, - -0.22245805270196276, - 0.3019254294329371, - 1.0830167549623366, - 1.9388370950637777, - 2.6679458552694126, - 3.0245594916327603, - 2.9820176403900382, - 2.6760329647330336, - 2.4303607475694484, - 2.7254381213811487, - 4.064771682512132, - 6.84952245048107, - 11.3012799954281, - 17.015395166408688, - 23.788994871641307, - 30.762294442666086, - 36.81275994958986 - ], - "pressure:J78:branch77_seg2": [ - 165583.39042562016, - 185729.61518211095, - 196177.48769930092, - 195800.90250730433, - 186146.2008545072, - 169020.25097520582, - 146797.62613263103, - 122720.5656915592, - 99753.84204900402, - 78009.57343470628, - 59401.52716437674, - 42897.20272763814, - 27296.49237194819, - 12708.135725705763, - -2419.6645311313323, - -17196.707718093607, - -31517.251820775386, - -45065.37208223619, - -55764.10703440588, - -64178.01764397738, - -70064.45866053995, - -73384.75148074863, - -75331.98872448367, - -76278.66243754368, - -76734.1156235831, - -76867.54855305757, - -76253.90643719152, - -74489.03143911152, - -71242.22812688776, - -66558.28061019839, - -60923.55388903916, - -55768.81153682144, - -52325.692356737076, - -52061.576496248934, - -56008.45573442686, - -64215.81883619483, - -75509.40834157195, - -88365.9989858344, - -100432.5496059009, - -108751.30986523037, - -112010.67484379785, - -108955.88926996976, - -99586.6918061254, - -85068.95186614538, - -68153.23496933604, - -49924.50148752043, - -32689.13130946298, - -18468.110899601717, - -6587.298504310699, - 2236.1506845417052, - 8969.363096712072, - 14777.560202533412, - 19437.7383987911, - 23638.67876718239, - 26899.1206770573, - 28417.60587170913, - 27898.492117223665, - 24935.688084490266, - 19716.535976976425, - 13023.643595220285, - 6037.314471426283, - -436.0821632847672, - -5103.298170506498, - -7751.906800320125, - -8686.752599088259, - -8341.568211236396, - -7724.635011615027, - -7714.567111991607, - -8751.081701917054, - -10865.048727411227, - -13420.520274725706, - -15761.280492269914, - -17033.619584438045, - -16582.586135685455, - -14440.938029572559, - -11079.340144662048, - -7252.490566295203, - -3792.646538379414, - -1634.7009901347185, - -784.5166430207124, - -1017.5940702097433, - -1683.9207131150745, - -1849.245210960847, - -825.9485629604027, - 1627.9470251046278, - 5188.456114334814, - 8950.510514460231, - 12052.312241969155, - 13480.00489473587, - 13112.357108359203, - 11691.525351508055, - 10733.809550782747, - 12395.149708340205, - 18890.667812588898, - 31900.91308513038, - 52422.05729045436, - 78209.56696297531, - 108346.56324659754, - 139481.7874060658, - 165583.39042562016 - ], - "flow:branch83_seg0:J79": [ - 29.966559678723478, - 35.10954476101407, - 38.878860245820384, - 40.96473423376283, - 41.290824480987034, - 39.94755620596017, - 37.22974025972393, - 33.66807765558916, - 29.64451726196927, - 25.449327310120545, - 21.47158417992635, - 17.62636741008224, - 13.92530917394075, - 10.338759645177863, - 6.677166964922742, - 3.072115957329946, - -0.5167513526678086, - -3.9780020785834367, - -7.028247138272646, - -9.690530114916996, - -11.84208636970408, - -13.477888433798404, - -14.725102480857581, - -15.644297837956653, - -16.34176654153151, - -16.863679296500596, - -17.18325947576547, - -17.2512625418912, - -17.01114060338183, - -16.442347827065596, - -15.610532868351342, - -14.69871214856056, - -13.917006094097074, - -13.551936939239575, - -13.821420614559704, - -14.83436335167933, - -16.508293526248895, - -18.678551093164238, - -20.9617182130892, - -22.905496809207186, - -24.187344287089868, - -24.47110921385822, - -23.647845135460358, - -21.784608031253274, - -19.181193196547728, - -16.039909374679937, - -12.774421003675055, - -9.695833547503913, - -6.882390080476842, - -4.50657231964142, - -2.4747185553815125, - -0.7009495022855448, - 0.837633641796659, - 2.22751823995996, - 3.4009604527844206, - 4.27846730071627, - 4.775727388191631, - 4.805015621784949, - 4.3601044649382, - 3.5337092768406686, - 2.466783799637711, - 1.3242563332075035, - 0.3418235479508102, - -0.4075491910222281, - -0.879505390892087, - -1.1022158360233905, - -1.2065156118740874, - -1.3232041759417315, - -1.5510903159633025, - -1.934519379668663, - -2.4209289313099984, - -2.9233769069612388, - -3.30223621325439, - -3.4393880982141045, - -3.2907275770930267, - -2.882941979795819, - -2.3050564845107324, - -1.6970187867843183, - -1.2029771943460765, - -0.8824385817333322, - -0.7514785177853265, - -0.7346241992861756, - -0.703414849514097, - -0.5363138184154292, - -0.15535343637813345, - 0.42888607472224377, - 1.1223551086164467, - 1.7888265552874327, - 2.24848999027229, - 2.4413665514928935, - 2.4088480347854233, - 2.337537543509238, - 2.550337619053416, - 3.4287806687839963, - 5.329603203291849, - 8.505857746652337, - 12.838142417826766, - 18.24768035572443, - 24.20300433382875, - 29.966559678723478 - ], - "pressure:branch83_seg0:J79": [ - 128513.6447061974, - 147457.58184564186, - 160889.85065657384, - 166499.51354294916, - 165192.33421577752, - 157762.66103758183, - 145430.54030378195, - 129664.91649985671, - 113324.24520806776, - 96635.46572714258, - 80646.28082334452, - 65652.01970731327, - 50782.39017644037, - 36393.27966813699, - 21717.959347333435, - 7165.663596465647, - -7089.529904339701, - -20822.46934316512, - -32427.87975483753, - -42351.11982098342, - -50420.419218967916, - -56266.29303583859, - -60753.727407413295, - -64092.748294784134, - -66584.81796970945, - -68458.38982689958, - -69426.45868413897, - -69279.97040829217, - -67828.35183162586, - -65141.45692826671, - -61467.22995526718, - -57821.57479396345, - -55149.96636630558, - -54363.19015820692, - -56445.97613007943, - -61603.36662155526, - -69211.22118845717, - -78334.16082715307, - -87498.96184798572, - -94566.17241384447, - -98431.95908955204, - -98115.88031786302, - -93232.46079137831, - -84192.92114325076, - -72991.34099359019, - -59991.8232989933, - -46558.546601749425, - -34776.27157368682, - -23966.805188945546, - -14887.194384106835, - -7355.087077173164, - -359.9531176888589, - 5504.407184577949, - 10715.753418698447, - 15231.45550959705, - 18225.615615426235, - 19580.79582973698, - 19049.656679236643, - 16644.574246545177, - 12781.908782714589, - 8303.583537383947, - 3805.6236337036617, - 78.20166990788206, - -2501.5870469325637, - -4015.102719147405, - -4656.1129421509595, - -4972.248669799279, - -5539.797718163539, - -6669.45597793145, - -8447.376160907063, - -10472.533759217455, - -12395.109932355717, - -13705.982667958322, - -13843.876706889627, - -12808.820885311652, - -10849.875168314638, - -8426.45460557983, - -5962.904015790099, - -4225.476154653441, - -3272.1517601331884, - -2930.5608844176263, - -2945.195527761336, - -2721.1957088410477, - -1783.937254054301, - 59.13689974886894, - 2682.3736940667177, - 5523.701162727759, - 8019.996090051234, - 9542.16006331518, - 9910.118828925848, - 9535.549935416657, - 9404.098729408404, - 10929.487621885632, - 15684.219846747494, - 24934.995036320484, - 39803.05220801357, - 58657.96574125581, - 81259.93251123463, - 106428.34925792886, - 128513.6447061974 - ], - "flow:J79:branch83_seg1": [ - 29.966559678723478, - 35.10954476101407, - 38.878860245820384, - 40.96473423376283, - 41.290824480987034, - 39.94755620596017, - 37.22974025972393, - 33.66807765558916, - 29.64451726196927, - 25.449327310120545, - 21.47158417992635, - 17.62636741008224, - 13.92530917394075, - 10.338759645177863, - 6.677166964922742, - 3.072115957329946, - -0.5167513526678086, - -3.9780020785834367, - -7.028247138272646, - -9.690530114916996, - -11.84208636970408, - -13.477888433798404, - -14.725102480857581, - -15.644297837956653, - -16.34176654153151, - -16.863679296500596, - -17.18325947576547, - -17.2512625418912, - -17.01114060338183, - -16.442347827065596, - -15.610532868351342, - -14.69871214856056, - -13.917006094097074, - -13.551936939239575, - -13.821420614559704, - -14.83436335167933, - -16.508293526248895, - -18.678551093164238, - -20.9617182130892, - -22.905496809207186, - -24.187344287089868, - -24.47110921385822, - -23.647845135460358, - -21.784608031253274, - -19.181193196547728, - -16.039909374679937, - -12.774421003675055, - -9.695833547503913, - -6.882390080476842, - -4.50657231964142, - -2.4747185553815125, - -0.7009495022855448, - 0.837633641796659, - 2.22751823995996, - 3.4009604527844206, - 4.27846730071627, - 4.775727388191631, - 4.805015621784949, - 4.3601044649382, - 3.5337092768406686, - 2.466783799637711, - 1.3242563332075035, - 0.3418235479508102, - -0.4075491910222281, - -0.879505390892087, - -1.1022158360233905, - -1.2065156118740874, - -1.3232041759417315, - -1.5510903159633025, - -1.934519379668663, - -2.4209289313099984, - -2.9233769069612388, - -3.30223621325439, - -3.4393880982141045, - -3.2907275770930267, - -2.882941979795819, - -2.3050564845107324, - -1.6970187867843183, - -1.2029771943460765, - -0.8824385817333322, - -0.7514785177853265, - -0.7346241992861756, - -0.703414849514097, - -0.5363138184154292, - -0.15535343637813345, - 0.42888607472224377, - 1.1223551086164467, - 1.7888265552874327, - 2.24848999027229, - 2.4413665514928935, - 2.4088480347854233, - 2.337537543509238, - 2.550337619053416, - 3.4287806687839963, - 5.329603203291849, - 8.505857746652337, - 12.838142417826766, - 18.24768035572443, - 24.20300433382875, - 29.966559678723478 - ], - "pressure:J79:branch83_seg1": [ - 128513.6447061974, - 147457.58184564186, - 160889.85065657384, - 166499.51354294916, - 165192.33421577752, - 157762.66103758183, - 145430.54030378195, - 129664.91649985671, - 113324.24520806776, - 96635.46572714258, - 80646.28082334452, - 65652.01970731327, - 50782.39017644037, - 36393.27966813699, - 21717.959347333435, - 7165.663596465647, - -7089.529904339701, - -20822.46934316512, - -32427.87975483753, - -42351.11982098342, - -50420.419218967916, - -56266.29303583859, - -60753.727407413295, - -64092.748294784134, - -66584.81796970945, - -68458.38982689958, - -69426.45868413897, - -69279.97040829217, - -67828.35183162586, - -65141.45692826671, - -61467.22995526718, - -57821.57479396345, - -55149.96636630558, - -54363.19015820692, - -56445.97613007943, - -61603.36662155526, - -69211.22118845717, - -78334.16082715307, - -87498.96184798572, - -94566.17241384447, - -98431.95908955204, - -98115.88031786302, - -93232.46079137831, - -84192.92114325076, - -72991.34099359019, - -59991.8232989933, - -46558.546601749425, - -34776.27157368682, - -23966.805188945546, - -14887.194384106835, - -7355.087077173164, - -359.9531176888589, - 5504.407184577949, - 10715.753418698447, - 15231.45550959705, - 18225.615615426235, - 19580.79582973698, - 19049.656679236643, - 16644.574246545177, - 12781.908782714589, - 8303.583537383947, - 3805.6236337036617, - 78.20166990788206, - -2501.5870469325637, - -4015.102719147405, - -4656.1129421509595, - -4972.248669799279, - -5539.797718163539, - -6669.45597793145, - -8447.376160907063, - -10472.533759217455, - -12395.109932355717, - -13705.982667958322, - -13843.876706889627, - -12808.820885311652, - -10849.875168314638, - -8426.45460557983, - -5962.904015790099, - -4225.476154653441, - -3272.1517601331884, - -2930.5608844176263, - -2945.195527761336, - -2721.1957088410477, - -1783.937254054301, - 59.13689974886894, - 2682.3736940667177, - 5523.701162727759, - 8019.996090051234, - 9542.16006331518, - 9910.118828925848, - 9535.549935416657, - 9404.098729408404, - 10929.487621885632, - 15684.219846747494, - 24934.995036320484, - 39803.05220801357, - 58657.96574125581, - 81259.93251123463, - 106428.34925792886, - 128513.6447061974 - ], - "flow:branch83_seg1:J80": [ - 29.939303255966667, - 35.08911253076395, - 38.86566125720631, - 40.961718514208954, - 41.29812193067923, - 39.96129116491366, - 37.245597216195655, - 33.69280643288807, - 29.6658886047161, - 25.466752512633924, - 21.492834957050096, - 17.644290254680698, - 13.943154419273966, - 10.35761919252887, - 6.692801877291182, - 3.0905629084689843, - -0.4974645048037728, - -3.9640858093418885, - -7.014369325865979, - -9.678821489436372, - -11.833674581067427, - -13.470938800903351, - -14.72031190279552, - -15.640710401848372, - -16.33880164458395, - -16.861783623547826, - -17.18268407744941, - -17.252265362840962, - -17.014186066010566, - -16.44654008353153, - -15.615645054713426, - -14.703248570634443, - -13.918834295662784, - -13.551082359344765, - -13.8169711599101, - -14.826954362049724, - -16.496686215769863, - -18.667243293674947, - -20.95194534696878, - -22.89781310069661, - -24.185663959204632, - -24.474403253332774, - -23.65640399573876, - -21.796620958487352, - -19.196593567242132, - -16.0573980339573, - -12.790656556716177, - -9.71095831377839, - -6.894922823305297, - -4.517278466766621, - -2.4843711352406608, - -0.7098130991202813, - 0.8305181884973765, - 2.221594125726931, - 3.3956021752547554, - 4.2755792075265076, - 4.775453888368029, - 4.807131975546287, - 4.363730494655033, - 3.539864435753512, - 2.4727281017799183, - 1.3279897812530335, - 0.34621934209006777, - -0.404741121209703, - -0.8786285240231584, - -1.1016172019022252, - -1.2059655435831338, - -1.322244712904257, - -1.5492792682929402, - -1.9321265232139857, - -2.4183531882106655, - -2.9210551201571837, - -3.3012254069632196, - -3.439884761748102, - -3.2927729183636214, - -2.8860716060733282, - -2.3083403172079744, - -1.7001349549696627, - -1.2047492736369454, - -0.8829852368466843, - -0.7515380720104391, - -0.7347047109094104, - -0.7041157672528274, - -0.5381505756887087, - -0.15805999542517046, - 0.4250877250450203, - 1.1187869995108946, - 1.787012256441349, - 2.247186686815927, - 2.44126613368654, - 2.4094574148774086, - 2.337068736939234, - 2.5468106744360197, - 3.4203177944685805, - 5.314519978242412, - 8.48482890027289, - 12.812048689833231, - 18.214980888124927, - 24.170127938584844, - 29.939303255966667 - ], - "pressure:branch83_seg1:J80": [ - 124102.48233518467, - 143610.51639033828, - 157666.55272032676, - 164389.50224827128, - 164191.82726350267, - 157670.7650554849, - 146021.6460052128, - 131003.39004902855, - 114835.67150260384, - 98205.56781132105, - 82361.36604031439, - 67283.94656567714, - 52536.50932225282, - 38252.48591511263, - 23665.408579763065, - 9275.446620540748, - -4935.281268319932, - -18655.477427161626, - -30420.75369797487, - -40586.18039257339, - -48838.963775885095, - -54933.882520147316, - -59606.79005365537, - -63066.36361812415, - -65665.38608037766, - -67619.9169924559, - -68713.17791256124, - -68744.02073101987, - -67509.35626234382, - -65011.73605191133, - -61504.63565582643, - -57877.623406165454, - -55027.84131214245, - -53959.450081585346, - -55606.86066667008, - -60272.78282802409, - -67444.72904957856, - -76339.00456424878, - -85440.23178645494, - -92760.8335289524, - -97138.87871665736, - -97432.11731083218, - -93243.35291791435, - -84909.0642195389, - -74118.39931152371, - -61385.430939242295, - -48171.647144941904, - -36250.30748735742, - -25314.41339413738, - -16111.673534543472, - -8385.46588962092, - -1383.9324022659864, - 4568.188897075793, - 9889.920472033906, - 14455.66484082507, - 17651.56145433798, - 19265.632572263905, - 19011.970954863547, - 16881.252944897366, - 13279.93375298348, - 8909.036750299385, - 4401.378704242644, - 619.0817653849016, - -2122.8495621355682, - -3785.9845947485746, - -4524.734745364547, - -4879.904494723244, - -5401.5127178730145, - -6432.666256919979, - -8099.596820613337, - -10078.012355652036, - -12024.361451321472, - -13416.979756486906, - -13725.799292141466, - -12881.937942327742, - -11072.569108675063, - -8711.678842025902, - -6273.69472930562, - -4444.341692413458, - -3359.842930590989, - -2943.0185990046566, - -2924.607709449385, - -2745.0787454345955, - -1927.8229473323254, - -228.7146683269342, - 2257.16187757783, - 5056.891530170405, - 7613.86117246307, - 9255.973022528893, - 9790.562982240903, - 9519.367943585745, - 9321.958517771414, - 10552.387429031442, - 14755.578146348562, - 23254.652850592283, - 37139.314689648505, - 55231.211031006096, - 77259.87564457279, - 101752.84275261962, - 124102.48233518467 - ], - "flow:J80:branch83_seg2": [ - 29.939303255966667, - 35.08911253076395, - 38.86566125720631, - 40.961718514208954, - 41.29812193067923, - 39.96129116491366, - 37.245597216195655, - 33.69280643288807, - 29.6658886047161, - 25.466752512633924, - 21.492834957050096, - 17.644290254680698, - 13.943154419273966, - 10.35761919252887, - 6.692801877291182, - 3.0905629084689843, - -0.4974645048037728, - -3.9640858093418885, - -7.014369325865979, - -9.678821489436372, - -11.833674581067427, - -13.470938800903351, - -14.72031190279552, - -15.640710401848372, - -16.33880164458395, - -16.861783623547826, - -17.18268407744941, - -17.252265362840962, - -17.014186066010566, - -16.44654008353153, - -15.615645054713426, - -14.703248570634443, - -13.918834295662784, - -13.551082359344765, - -13.8169711599101, - -14.826954362049724, - -16.496686215769863, - -18.667243293674947, - -20.95194534696878, - -22.89781310069661, - -24.185663959204632, - -24.474403253332774, - -23.65640399573876, - -21.796620958487352, - -19.196593567242132, - -16.0573980339573, - -12.790656556716177, - -9.71095831377839, - -6.894922823305297, - -4.517278466766621, - -2.4843711352406608, - -0.7098130991202813, - 0.8305181884973765, - 2.221594125726931, - 3.3956021752547554, - 4.2755792075265076, - 4.775453888368029, - 4.807131975546287, - 4.363730494655033, - 3.539864435753512, - 2.4727281017799183, - 1.3279897812530335, - 0.34621934209006777, - -0.404741121209703, - -0.8786285240231584, - -1.1016172019022252, - -1.2059655435831338, - -1.322244712904257, - -1.5492792682929402, - -1.9321265232139857, - -2.4183531882106655, - -2.9210551201571837, - -3.3012254069632196, - -3.439884761748102, - -3.2927729183636214, - -2.8860716060733282, - -2.3083403172079744, - -1.7001349549696627, - -1.2047492736369454, - -0.8829852368466843, - -0.7515380720104391, - -0.7347047109094104, - -0.7041157672528274, - -0.5381505756887087, - -0.15805999542517046, - 0.4250877250450203, - 1.1187869995108946, - 1.787012256441349, - 2.247186686815927, - 2.44126613368654, - 2.4094574148774086, - 2.337068736939234, - 2.5468106744360197, - 3.4203177944685805, - 5.314519978242412, - 8.48482890027289, - 12.812048689833231, - 18.214980888124927, - 24.170127938584844, - 29.939303255966667 - ], - "pressure:J80:branch83_seg2": [ - 124102.48233518467, - 143610.51639033828, - 157666.55272032676, - 164389.50224827128, - 164191.82726350267, - 157670.7650554849, - 146021.6460052128, - 131003.39004902855, - 114835.67150260384, - 98205.56781132105, - 82361.36604031439, - 67283.94656567714, - 52536.50932225282, - 38252.48591511263, - 23665.408579763065, - 9275.446620540748, - -4935.281268319932, - -18655.477427161626, - -30420.75369797487, - -40586.18039257339, - -48838.963775885095, - -54933.882520147316, - -59606.79005365537, - -63066.36361812415, - -65665.38608037766, - -67619.9169924559, - -68713.17791256124, - -68744.02073101987, - -67509.35626234382, - -65011.73605191133, - -61504.63565582643, - -57877.623406165454, - -55027.84131214245, - -53959.450081585346, - -55606.86066667008, - -60272.78282802409, - -67444.72904957856, - -76339.00456424878, - -85440.23178645494, - -92760.8335289524, - -97138.87871665736, - -97432.11731083218, - -93243.35291791435, - -84909.0642195389, - -74118.39931152371, - -61385.430939242295, - -48171.647144941904, - -36250.30748735742, - -25314.41339413738, - -16111.673534543472, - -8385.46588962092, - -1383.9324022659864, - 4568.188897075793, - 9889.920472033906, - 14455.66484082507, - 17651.56145433798, - 19265.632572263905, - 19011.970954863547, - 16881.252944897366, - 13279.93375298348, - 8909.036750299385, - 4401.378704242644, - 619.0817653849016, - -2122.8495621355682, - -3785.9845947485746, - -4524.734745364547, - -4879.904494723244, - -5401.5127178730145, - -6432.666256919979, - -8099.596820613337, - -10078.012355652036, - -12024.361451321472, - -13416.979756486906, - -13725.799292141466, - -12881.937942327742, - -11072.569108675063, - -8711.678842025902, - -6273.69472930562, - -4444.341692413458, - -3359.842930590989, - -2943.0185990046566, - -2924.607709449385, - -2745.0787454345955, - -1927.8229473323254, - -228.7146683269342, - 2257.16187757783, - 5056.891530170405, - 7613.86117246307, - 9255.973022528893, - 9790.562982240903, - 9519.367943585745, - 9321.958517771414, - 10552.387429031442, - 14755.578146348562, - 23254.652850592283, - 37139.314689648505, - 55231.211031006096, - 77259.87564457279, - 101752.84275261962, - 124102.48233518467 - ], - "flow:branch86_seg0:J81": [ - 58.3637258166195, - 69.50828773305572, - 78.12114925374142, - 83.33769126936222, - 84.75302949115586, - 82.44059265056428, - 76.9491834593818, - 69.26005880529637, - 60.32464636974602, - 50.94838284371413, - 41.90236652491485, - 33.33629795662031, - 25.328034808666583, - 17.76913389620847, - 10.37021708332462, - 3.1664856761455025, - -3.9307502646320787, - -10.705233672399546, - -16.79131432139374, - -22.083077351067544, - -26.32957142846973, - -29.51197500080271, - -31.79192224466705, - -33.32599084709772, - -34.345752032534264, - -34.98666094520779, - -35.263562141357944, - -35.110385433105485, - -34.41465096568368, - -33.1094655473265, - -31.268792062351793, - -29.18058941444673, - -27.251831450428536, - -26.037265399137272, - -26.030715642652435, - -27.543020783034475, - -30.555881738594966, - -34.78669768373841, - -39.53896595980181, - -43.944300770154, - -47.193188429026954, - -48.532562811115646, - -47.57476007114421, - -44.321443815883285, - -39.2117661104819, - -32.7289676172733, - -25.72361395804708, - -18.87824173440661, - -12.590037522358443, - -7.236317135808362, - -2.754089334132116, - 0.9813589461173254, - 4.090596830777675, - 6.768473833390645, - 8.97868741251711, - 10.614935285588352, - 11.519093228616741, - 11.516518526108163, - 10.552570494358875, - 8.745444687400655, - 6.3505690357973705, - 3.7216424736577403, - 1.2975362402218154, - -0.6592630949072644, - -1.9849712059786657, - -2.7010281917011136, - -3.016094202699517, - -3.201649850865488, - -3.5091600046949987, - -4.092127034885255, - -4.927973147038008, - -5.880505105814433, - -6.6845859441176065, - -7.0857918006053255, - -6.930606399277428, - -6.2072654514016135, - -5.051632276230139, - -3.725333356070641, - -2.529752806873236, - -1.6549601497785753, - -1.1910509470940804, - -1.046663099720523, - -0.996139574504972, - -0.7791936055042111, - -0.18855019063278544, - 0.8304424981663567, - 2.1561934584070173, - 3.5315854216078812, - 4.614727420565477, - 5.197377077909856, - 5.264936280046722, - 5.1004294014471965, - 5.282515145199655, - 6.569978519618067, - 9.747272559227717, - 15.41099077329148, - 23.593806797743024, - 34.18316332940564, - 46.21630363295533, - 58.3637258166195 - ], - "pressure:branch86_seg0:J81": [ - 151094.11860357688, - 170107.47463111475, - 182214.07463307033, - 184321.52012843918, - 178262.82699347424, - 165577.74261756198, - 147902.61498832147, - 126862.25908433224, - 106502.76491528586, - 86556.06822161625, - 68172.77933326771, - 51783.541528084745, - 35635.20453884534, - 20456.993203282873, - 5159.533430021571, - -9868.128313230543, - -24161.303278796964, - -37969.73582694495, - -48932.57230955006, - -57668.54004430325, - -64522.88436074071, - -68778.64360803715, - -71664.68012770217, - -73514.53936130444, - -74579.63894185884, - -75185.93417618633, - -74900.72283227032, - -73429.8322618115, - -70573.85199533889, - -66502.55770261967, - -61491.86899817928, - -56905.88686476696, - -53906.76856001878, - -53420.26239951615, - -56597.27724635181, - -63503.82980021727, - -73118.99913260751, - -84104.81182027636, - -94780.58723999628, - -102290.03539123305, - -105489.36715637073, - -103533.96376718757, - -96049.4664439061, - -83701.1072613886, - -69462.24776978877, - -53763.32473269551, - -37807.00454629054, - -24685.408959235046, - -13102.755496030368, - -3766.0784275474734, - 3398.610434695189, - 10106.273698783223, - 15402.588895473833, - 19856.883554311615, - 23617.010827794016, - 25513.510569319573, - 25497.40418036977, - 23364.17498775955, - 19185.550753678064, - 13525.171420614364, - 7552.007252227187, - 1906.610829505946, - -2488.615199407514, - -5182.932120655019, - -6558.2610640055855, - -6871.259353629935, - -6837.188487567224, - -7233.5600759835625, - -8396.420428851858, - -10375.806530619971, - -12574.62113243329, - -14532.029769660616, - -15707.521209558236, - -15379.86844500785, - -13634.056365739294, - -10894.543643605086, - -7800.139524459063, - -4783.83161948477, - -2854.4838109346742, - -1999.5345322966289, - -1851.278752449877, - -2078.6345610500935, - -1923.8295029593205, - -814.9694572988226, - 1412.4847964775659, - 4541.478507100147, - 7779.161353736026, - 10449.592165784003, - 11820.700355209281, - 11718.11186352867, - 10843.95608908989, - 10507.244002295569, - 12475.14478862198, - 18630.698418505206, - 30320.16616146449, - 48903.20048295556, - 71667.64147760149, - 97949.34702511174, - 127175.16896088285, - 151094.11860357688 - ], - "flow:J81:branch86_seg1": [ - 58.3637258166195, - 69.50828773305572, - 78.12114925374142, - 83.33769126936222, - 84.75302949115586, - 82.44059265056428, - 76.9491834593818, - 69.26005880529637, - 60.32464636974602, - 50.94838284371413, - 41.90236652491485, - 33.33629795662031, - 25.328034808666583, - 17.76913389620847, - 10.37021708332462, - 3.1664856761455025, - -3.9307502646320787, - -10.705233672399546, - -16.79131432139374, - -22.083077351067544, - -26.32957142846973, - -29.51197500080271, - -31.79192224466705, - -33.32599084709772, - -34.345752032534264, - -34.98666094520779, - -35.263562141357944, - -35.110385433105485, - -34.41465096568368, - -33.1094655473265, - -31.268792062351793, - -29.18058941444673, - -27.251831450428536, - -26.037265399137272, - -26.030715642652435, - -27.543020783034475, - -30.555881738594966, - -34.78669768373841, - -39.53896595980181, - -43.944300770154, - -47.193188429026954, - -48.532562811115646, - -47.57476007114421, - -44.321443815883285, - -39.2117661104819, - -32.7289676172733, - -25.72361395804708, - -18.87824173440661, - -12.590037522358443, - -7.236317135808362, - -2.754089334132116, - 0.9813589461173254, - 4.090596830777675, - 6.768473833390645, - 8.97868741251711, - 10.614935285588352, - 11.519093228616741, - 11.516518526108163, - 10.552570494358875, - 8.745444687400655, - 6.3505690357973705, - 3.7216424736577403, - 1.2975362402218154, - -0.6592630949072644, - -1.9849712059786657, - -2.7010281917011136, - -3.016094202699517, - -3.201649850865488, - -3.5091600046949987, - -4.092127034885255, - -4.927973147038008, - -5.880505105814433, - -6.6845859441176065, - -7.0857918006053255, - -6.930606399277428, - -6.2072654514016135, - -5.051632276230139, - -3.725333356070641, - -2.529752806873236, - -1.6549601497785753, - -1.1910509470940804, - -1.046663099720523, - -0.996139574504972, - -0.7791936055042111, - -0.18855019063278544, - 0.8304424981663567, - 2.1561934584070173, - 3.5315854216078812, - 4.614727420565477, - 5.197377077909856, - 5.264936280046722, - 5.1004294014471965, - 5.282515145199655, - 6.569978519618067, - 9.747272559227717, - 15.41099077329148, - 23.593806797743024, - 34.18316332940564, - 46.21630363295533, - 58.3637258166195 - ], - "pressure:J81:branch86_seg1": [ - 151094.11860357688, - 170107.47463111475, - 182214.07463307033, - 184321.52012843918, - 178262.82699347424, - 165577.74261756198, - 147902.61498832147, - 126862.25908433224, - 106502.76491528586, - 86556.06822161625, - 68172.77933326771, - 51783.541528084745, - 35635.20453884534, - 20456.993203282873, - 5159.533430021571, - -9868.128313230543, - -24161.303278796964, - -37969.73582694495, - -48932.57230955006, - -57668.54004430325, - -64522.88436074071, - -68778.64360803715, - -71664.68012770217, - -73514.53936130444, - -74579.63894185884, - -75185.93417618633, - -74900.72283227032, - -73429.8322618115, - -70573.85199533889, - -66502.55770261967, - -61491.86899817928, - -56905.88686476696, - -53906.76856001878, - -53420.26239951615, - -56597.27724635181, - -63503.82980021727, - -73118.99913260751, - -84104.81182027636, - -94780.58723999628, - -102290.03539123305, - -105489.36715637073, - -103533.96376718757, - -96049.4664439061, - -83701.1072613886, - -69462.24776978877, - -53763.32473269551, - -37807.00454629054, - -24685.408959235046, - -13102.755496030368, - -3766.0784275474734, - 3398.610434695189, - 10106.273698783223, - 15402.588895473833, - 19856.883554311615, - 23617.010827794016, - 25513.510569319573, - 25497.40418036977, - 23364.17498775955, - 19185.550753678064, - 13525.171420614364, - 7552.007252227187, - 1906.610829505946, - -2488.615199407514, - -5182.932120655019, - -6558.2610640055855, - -6871.259353629935, - -6837.188487567224, - -7233.5600759835625, - -8396.420428851858, - -10375.806530619971, - -12574.62113243329, - -14532.029769660616, - -15707.521209558236, - -15379.86844500785, - -13634.056365739294, - -10894.543643605086, - -7800.139524459063, - -4783.83161948477, - -2854.4838109346742, - -1999.5345322966289, - -1851.278752449877, - -2078.6345610500935, - -1923.8295029593205, - -814.9694572988226, - 1412.4847964775659, - 4541.478507100147, - 7779.161353736026, - 10449.592165784003, - 11820.700355209281, - 11718.11186352867, - 10843.95608908989, - 10507.244002295569, - 12475.14478862198, - 18630.698418505206, - 30320.16616146449, - 48903.20048295556, - 71667.64147760149, - 97949.34702511174, - 127175.16896088285, - 151094.11860357688 - ], - "flow:branch86_seg1:J82": [ - 58.3607818352748, - 69.50645208531871, - 78.12016945676835, - 83.3378416106168, - 84.75444556289001, - 82.44264281639227, - 76.95117809190748, - 69.2630948119677, - 60.327213236609175, - 50.95014218582218, - 41.90455909491607, - 33.338108099798426, - 25.329749721619915, - 17.77100856047486, - 10.371573768856106, - 3.1681781910886397, - -3.928818175243637, - -10.704036093873226, - -16.790107694832457, - -22.082102138030884, - -26.32894894256966, - -29.51146103033301, - -31.791648324648033, - -33.3258247232372, - -34.34562027700339, - -34.9866256732628, - -35.26365823274509, - -35.11064672888263, - -34.415140350393195, - -33.11004228040569, - -31.269434007044204, - -29.181120821864404, - -27.251972819208188, - -26.03706272338771, - -26.03013240955198, - -27.542159470380483, - -30.55454425621079, - -34.785454060168796, - -39.53800633939591, - -43.943570830129666, - -47.19320377404579, - -48.53313704216216, - -47.57591222850607, - -44.32289160770093, - -39.21358906150013, - -32.73096611033078, - -25.72543252478302, - -18.879918288205772, - -12.59130135213093, - -7.237365971407035, - -2.755010258879246, - 0.9805150919488356, - 4.089956690258852, - 6.768024894315275, - 8.978282247504735, - 10.614788586123098, - 11.51926546047504, - 11.516945531914935, - 10.55310144827694, - 8.746244993057907, - 6.351308350399484, - 3.7219981601381313, - 1.297967954891048, - -0.6589818082774765, - -1.9849333468804875, - -2.7010141798234373, - -3.01606759070053, - -3.2015716072782987, - -3.508975834192149, - -4.0918824064371035, - -4.9277089233399485, - -5.880279515150114, - -6.684517758189139, - -7.085901213200115, - -6.930898121553496, - -6.20767962838826, - -5.052031772479278, - -3.7256988488794307, - -2.5299423702251898, - -1.6549760294530513, - -1.1910137342177773, - -1.046656620922498, - -0.9962177707947858, - -0.7794072835124768, - -0.1888496852149555, - 0.8300264576852241, - 2.1558153375642335, - 3.5314672284297766, - 4.6146588667053985, - 5.197414091899502, - 5.265034298324761, - 5.1003843610035355, - 5.282085621794728, - 6.568966194816333, - 9.745456577813568, - 15.40855603971929, - 23.590804578365233, - 34.17945793815734, - 46.212585550621654, - 58.3607818352748 - ], - "pressure:branch86_seg1:J82": [ - 150198.27548571175, - 169285.310581909, - 181530.247445269, - 183850.73628157133, - 178022.0072433125, - 165545.27275256615, - 148044.15309748377, - 127156.37019968538, - 106845.40471604445, - 86932.00672300665, - 68564.38347847649, - 52152.929945506316, - 36012.18817996395, - 20835.373426351805, - 5546.744134189019, - -9453.8433281914, - -23742.370635414565, - -37555.31320504118, - -48537.985809784346, - -57316.93682609368, - -64215.94511691772, - -68521.14724004442, - -71450.20716814164, - -73330.40040485097, - -74418.35634880177, - -75042.87196711713, - -74779.50002147192, - -73338.6696306367, - -70521.16389413, - -66487.90570040778, - -61511.472993593365, - -56934.683681564995, - -53913.21305717384, - -53375.11744362395, - -56469.689103172335, - -63278.321171705036, - -72797.39840574021, - -83723.16746951178, - -94370.57874164711, - -101911.97492293485, - -105196.62941314881, - -103358.07147472168, - -96015.0695973554, - -83807.10183906896, - -69679.46155597732, - -54057.644059396494, - -38142.41592666867, - -25014.782868047958, - -13406.861798141394, - -4035.867662716379, - 3167.2678336438994, - 9897.26458546921, - 15217.942397486095, - 19690.925455438435, - 23468.836796771626, - 25402.08283384201, - 25432.66053848253, - 23355.226594254953, - 19233.460941318255, - 13627.96009429621, - 7681.072796729978, - 2043.5205717399015, - -2359.0241679165365, - -5085.048356994483, - -6493.3728468049885, - -6833.503160699432, - -6815.489314458373, - -7210.98206389826, - -8359.723923930376, - -10319.507601900288, - -12503.759326199486, - -14458.332508695526, - -15646.72996125069, - -15347.74288366559, - -13638.641908183492, - -10932.544064098365, - -7859.58606387433, - -4851.553148590994, - -2909.166521691678, - -2032.5601014174295, - -1863.8297828191176, - -2078.5105819223286, - -1925.8245712349187, - -835.1302721713587, - 1365.8547599062438, - 4465.905670909786, - 7690.38719289179, - 10364.54381330808, - 11753.855619633207, - 11683.232594980664, - 10834.054159944899, - 10496.932153837355, - 12422.841252292075, - 18486.11582506037, - 30035.747669042743, - 48440.820462541655, - 71034.29015906942, - 97160.04224951395, - 126275.89883605906, - 150198.27548571175 - ], - "flow:J82:branch86_seg2": [ - 58.3607818352748, - 69.50645208531871, - 78.12016945676835, - 83.3378416106168, - 84.75444556289001, - 82.44264281639227, - 76.95117809190748, - 69.2630948119677, - 60.327213236609175, - 50.95014218582218, - 41.90455909491607, - 33.338108099798426, - 25.329749721619915, - 17.77100856047486, - 10.371573768856106, - 3.1681781910886397, - -3.928818175243637, - -10.704036093873226, - -16.790107694832457, - -22.082102138030884, - -26.32894894256966, - -29.51146103033301, - -31.791648324648033, - -33.3258247232372, - -34.34562027700339, - -34.9866256732628, - -35.26365823274509, - -35.11064672888263, - -34.415140350393195, - -33.11004228040569, - -31.269434007044204, - -29.181120821864404, - -27.251972819208188, - -26.03706272338771, - -26.03013240955198, - -27.542159470380483, - -30.55454425621079, - -34.785454060168796, - -39.53800633939591, - -43.943570830129666, - -47.19320377404579, - -48.53313704216216, - -47.57591222850607, - -44.32289160770093, - -39.21358906150013, - -32.73096611033078, - -25.72543252478302, - -18.879918288205772, - -12.59130135213093, - -7.237365971407035, - -2.755010258879246, - 0.9805150919488356, - 4.089956690258852, - 6.768024894315275, - 8.978282247504735, - 10.614788586123098, - 11.51926546047504, - 11.516945531914935, - 10.55310144827694, - 8.746244993057907, - 6.351308350399484, - 3.7219981601381313, - 1.297967954891048, - -0.6589818082774765, - -1.9849333468804875, - -2.7010141798234373, - -3.01606759070053, - -3.2015716072782987, - -3.508975834192149, - -4.0918824064371035, - -4.9277089233399485, - -5.880279515150114, - -6.684517758189139, - -7.085901213200115, - -6.930898121553496, - -6.20767962838826, - -5.052031772479278, - -3.7256988488794307, - -2.5299423702251898, - -1.6549760294530513, - -1.1910137342177773, - -1.046656620922498, - -0.9962177707947858, - -0.7794072835124768, - -0.1888496852149555, - 0.8300264576852241, - 2.1558153375642335, - 3.5314672284297766, - 4.6146588667053985, - 5.197414091899502, - 5.265034298324761, - 5.1003843610035355, - 5.282085621794728, - 6.568966194816333, - 9.745456577813568, - 15.40855603971929, - 23.590804578365233, - 34.17945793815734, - 46.212585550621654, - 58.3607818352748 - ], - "pressure:J82:branch86_seg2": [ - 150198.27548571175, - 169285.310581909, - 181530.247445269, - 183850.73628157133, - 178022.0072433125, - 165545.27275256615, - 148044.15309748377, - 127156.37019968538, - 106845.40471604445, - 86932.00672300665, - 68564.38347847649, - 52152.929945506316, - 36012.18817996395, - 20835.373426351805, - 5546.744134189019, - -9453.8433281914, - -23742.370635414565, - -37555.31320504118, - -48537.985809784346, - -57316.93682609368, - -64215.94511691772, - -68521.14724004442, - -71450.20716814164, - -73330.40040485097, - -74418.35634880177, - -75042.87196711713, - -74779.50002147192, - -73338.6696306367, - -70521.16389413, - -66487.90570040778, - -61511.472993593365, - -56934.683681564995, - -53913.21305717384, - -53375.11744362395, - -56469.689103172335, - -63278.321171705036, - -72797.39840574021, - -83723.16746951178, - -94370.57874164711, - -101911.97492293485, - -105196.62941314881, - -103358.07147472168, - -96015.0695973554, - -83807.10183906896, - -69679.46155597732, - -54057.644059396494, - -38142.41592666867, - -25014.782868047958, - -13406.861798141394, - -4035.867662716379, - 3167.2678336438994, - 9897.26458546921, - 15217.942397486095, - 19690.925455438435, - 23468.836796771626, - 25402.08283384201, - 25432.66053848253, - 23355.226594254953, - 19233.460941318255, - 13627.96009429621, - 7681.072796729978, - 2043.5205717399015, - -2359.0241679165365, - -5085.048356994483, - -6493.3728468049885, - -6833.503160699432, - -6815.489314458373, - -7210.98206389826, - -8359.723923930376, - -10319.507601900288, - -12503.759326199486, - -14458.332508695526, - -15646.72996125069, - -15347.74288366559, - -13638.641908183492, - -10932.544064098365, - -7859.58606387433, - -4851.553148590994, - -2909.166521691678, - -2032.5601014174295, - -1863.8297828191176, - -2078.5105819223286, - -1925.8245712349187, - -835.1302721713587, - 1365.8547599062438, - 4465.905670909786, - 7690.38719289179, - 10364.54381330808, - 11753.855619633207, - 11683.232594980664, - 10834.054159944899, - 10496.932153837355, - 12422.841252292075, - 18486.11582506037, - 30035.747669042743, - 48440.820462541655, - 71034.29015906942, - 97160.04224951395, - 126275.89883605906, - 150198.27548571175 - ], - "flow:branch87_seg0:J83": [ - 27.437010968410746, - 32.60226382240487, - 36.52882983598094, - 38.85807125505839, - 39.41433589305802, - 38.228309482627026, - 35.561007530626476, - 31.9506153746158, - 27.757787676752457, - 23.35880886115784, - 19.18855222844138, - 15.22398421626557, - 11.519475573013764, - 8.036976075753186, - 4.592420838312143, - 1.2623479272679592, - -2.0106184612737334, - -5.167653527568884, - -7.971158978140062, - -10.400954412796372, - -12.346786471711546, - -13.78982489573829, - -14.822811348966415, - -15.51341708512162, - -15.969656524767636, - -16.25636330316911, - -16.376066891826603, - -16.294027846386058, - -15.958467888066709, - -15.333785308359518, - -14.462936800364428, - -13.484222405964909, - -12.584513342516422, - -12.038896204983933, - -12.068598226753414, - -12.816899449977578, - -14.253212395601993, - -16.25720213514014, - -18.490381288356552, - -20.525386663262996, - -22.013318808074395, - -22.585606439946105, - -22.077979485285084, - -20.49856824494866, - -18.069198443809075, - -15.021642092838173, - -11.747883709316788, - -8.570694512671034, - -5.661528906026942, - -3.2009262190021674, - -1.1470289877904243, - 0.5613914577636174, - 1.989967227589408, - 3.2243732551971176, - 4.233302443363515, - 4.978905768061946, - 5.381666787312566, - 5.3552473133616925, - 4.876723610394252, - 4.016263052058416, - 2.8865619738592456, - 1.6454119839066201, - 0.5301248358838636, - -0.36331740889021263, - -0.9653583890536488, - -1.2777739253822287, - -1.4100268536132823, - -1.4908203506422892, - -1.6351012357337096, - -1.9132236350634089, - -2.3101199160122587, - -2.756613983810005, - -3.1283417045599644, - -3.3053088890033138, - -3.2184552763824934, - -2.866428632513709, - -2.314363906745847, - -1.6930088070888045, - -1.138417423802197, - -0.7385314321804662, - -0.5365781642221772, - -0.4809847924373659, - -0.46249208814717774, - -0.3588875107616479, - -0.07389006792208687, - 0.410808270770673, - 1.0356975203536298, - 1.6834663023275325, - 2.177295837640768, - 2.432174922899688, - 2.4486546119866746, - 2.3613721647991004, - 2.4487357266881693, - 3.0698341660212147, - 4.588987278682315, - 7.286156384836705, - 11.162720621674307, - 16.142784469307838, - 21.768528817446608, - 27.437010968410746 - ], - "pressure:branch87_seg0:J83": [ - 122974.01496701829, - 144777.745315756, - 161143.43283302462, - 170138.2340890597, - 171413.75200892705, - 165273.03980348105, - 152929.5722827274, - 136638.9788647159, - 118157.91879499512, - 99027.16344803569, - 80995.67758485739, - 63940.77327275005, - 47906.48183510169, - 32835.876212828494, - 17852.019565136186, - 3413.8003332478665, - -10726.820679695833, - -24474.508848721733, - -36396.59532197837, - -46642.336552850094, - -54873.41897942013, - -60834.48925834991, - -65095.5847447327, - -67935.36650269156, - -69779.10775908819, - -70939.74141944795, - -71351.5626596857, - -70843.74630415808, - -69204.63466007783, - -66317.23834266675, - -62386.065264897974, - -58101.481364064755, - -54338.361254286174, - -52238.048909993486, - -52779.853750208604, - -56525.249080315654, - -63169.67627103766, - -72148.55165643111, - -81943.0608022034, - -90536.85961625035, - -96530.32192996076, - -98395.16717434436, - -95497.48001182474, - -87892.36643400208, - -76926.5547893829, - -63465.10459126118, - -49025.09521863546, - -35403.727820939, - -22966.68821389958, - -12488.219442510563, - -3869.5339602156414, - 3442.1895200462172, - 9522.042811738638, - 14717.021840730882, - 19002.07091765134, - 22053.680566300493, - 23552.993734852833, - 23167.917102136063, - 20810.934575039842, - 16839.919968497095, - 11803.743985680941, - 6392.200414654133, - 1659.1078028249824, - -2045.0400403000651, - -4488.260872932739, - -5697.361911713882, - -6189.263983915386, - -6549.053949213223, - -7246.7895045967525, - -8558.4257842925, - -10334.551924709082, - -12256.641182978483, - -13813.37584182564, - -14429.659892663754, - -13868.346436966482, - -12184.651264915112, - -9710.066806233373, - -6979.242685883148, - -4638.3248890617815, - -3037.4789872420624, - -2260.913007382877, - -2081.842271287211, - -1990.4911305929238, - -1450.8658361596922, - -80.71731871875849, - 2151.2729357495678, - 4924.529284478278, - 7712.005337503589, - 9726.79558011106, - 10664.647837478056, - 10610.633248523758, - 10245.90831391412, - 10844.536447057124, - 14003.359123276241, - 21244.41396869459, - 33868.91758808769, - 51418.30272596318, - 73454.91276627916, - 98538.76588816268, - 122974.01496701829 - ], - "flow:J83:branch87_seg1": [ - 27.437010968410746, - 32.60226382240487, - 36.52882983598094, - 38.85807125505839, - 39.41433589305802, - 38.228309482627026, - 35.561007530626476, - 31.9506153746158, - 27.757787676752457, - 23.35880886115784, - 19.18855222844138, - 15.22398421626557, - 11.519475573013764, - 8.036976075753186, - 4.592420838312143, - 1.2623479272679592, - -2.0106184612737334, - -5.167653527568884, - -7.971158978140062, - -10.400954412796372, - -12.346786471711546, - -13.78982489573829, - -14.822811348966415, - -15.51341708512162, - -15.969656524767636, - -16.25636330316911, - -16.376066891826603, - -16.294027846386058, - -15.958467888066709, - -15.333785308359518, - -14.462936800364428, - -13.484222405964909, - -12.584513342516422, - -12.038896204983933, - -12.068598226753414, - -12.816899449977578, - -14.253212395601993, - -16.25720213514014, - -18.490381288356552, - -20.525386663262996, - -22.013318808074395, - -22.585606439946105, - -22.077979485285084, - -20.49856824494866, - -18.069198443809075, - -15.021642092838173, - -11.747883709316788, - -8.570694512671034, - -5.661528906026942, - -3.2009262190021674, - -1.1470289877904243, - 0.5613914577636174, - 1.989967227589408, - 3.2243732551971176, - 4.233302443363515, - 4.978905768061946, - 5.381666787312566, - 5.3552473133616925, - 4.876723610394252, - 4.016263052058416, - 2.8865619738592456, - 1.6454119839066201, - 0.5301248358838636, - -0.36331740889021263, - -0.9653583890536488, - -1.2777739253822287, - -1.4100268536132823, - -1.4908203506422892, - -1.6351012357337096, - -1.9132236350634089, - -2.3101199160122587, - -2.756613983810005, - -3.1283417045599644, - -3.3053088890033138, - -3.2184552763824934, - -2.866428632513709, - -2.314363906745847, - -1.6930088070888045, - -1.138417423802197, - -0.7385314321804662, - -0.5365781642221772, - -0.4809847924373659, - -0.46249208814717774, - -0.3588875107616479, - -0.07389006792208687, - 0.410808270770673, - 1.0356975203536298, - 1.6834663023275325, - 2.177295837640768, - 2.432174922899688, - 2.4486546119866746, - 2.3613721647991004, - 2.4487357266881693, - 3.0698341660212147, - 4.588987278682315, - 7.286156384836705, - 11.162720621674307, - 16.142784469307838, - 21.768528817446608, - 27.437010968410746 - ], - "pressure:J83:branch87_seg1": [ - 122974.01496701829, - 144777.745315756, - 161143.43283302462, - 170138.2340890597, - 171413.75200892705, - 165273.03980348105, - 152929.5722827274, - 136638.9788647159, - 118157.91879499512, - 99027.16344803569, - 80995.67758485739, - 63940.77327275005, - 47906.48183510169, - 32835.876212828494, - 17852.019565136186, - 3413.8003332478665, - -10726.820679695833, - -24474.508848721733, - -36396.59532197837, - -46642.336552850094, - -54873.41897942013, - -60834.48925834991, - -65095.5847447327, - -67935.36650269156, - -69779.10775908819, - -70939.74141944795, - -71351.5626596857, - -70843.74630415808, - -69204.63466007783, - -66317.23834266675, - -62386.065264897974, - -58101.481364064755, - -54338.361254286174, - -52238.048909993486, - -52779.853750208604, - -56525.249080315654, - -63169.67627103766, - -72148.55165643111, - -81943.0608022034, - -90536.85961625035, - -96530.32192996076, - -98395.16717434436, - -95497.48001182474, - -87892.36643400208, - -76926.5547893829, - -63465.10459126118, - -49025.09521863546, - -35403.727820939, - -22966.68821389958, - -12488.219442510563, - -3869.5339602156414, - 3442.1895200462172, - 9522.042811738638, - 14717.021840730882, - 19002.07091765134, - 22053.680566300493, - 23552.993734852833, - 23167.917102136063, - 20810.934575039842, - 16839.919968497095, - 11803.743985680941, - 6392.200414654133, - 1659.1078028249824, - -2045.0400403000651, - -4488.260872932739, - -5697.361911713882, - -6189.263983915386, - -6549.053949213223, - -7246.7895045967525, - -8558.4257842925, - -10334.551924709082, - -12256.641182978483, - -13813.37584182564, - -14429.659892663754, - -13868.346436966482, - -12184.651264915112, - -9710.066806233373, - -6979.242685883148, - -4638.3248890617815, - -3037.4789872420624, - -2260.913007382877, - -2081.842271287211, - -1990.4911305929238, - -1450.8658361596922, - -80.71731871875849, - 2151.2729357495678, - 4924.529284478278, - 7712.005337503589, - 9726.79558011106, - 10664.647837478056, - 10610.633248523758, - 10245.90831391412, - 10844.536447057124, - 14003.359123276241, - 21244.41396869459, - 33868.91758808769, - 51418.30272596318, - 73454.91276627916, - 98538.76588816268, - 122974.01496701829 - ], - "flow:branch87_seg1:J84": [ - 27.41018442981842, - 32.58164987030299, - 36.51370182688383, - 38.852228121740936, - 39.41776265342486, - 38.239062256396615, - 35.575859278309366, - 31.971501664444403, - 27.780192132006075, - 23.37888066883769, - 19.208920955592276, - 15.242626537995067, - 11.53700152313715, - 8.054566430207277, - 4.608875123713355, - 1.2785485476932215, - -1.9940369159007856, - -5.152520575842231, - -7.958454876435062, - -10.390520099598522, - -12.338577687052897, - -13.784019685732527, - -14.81885817672952, - -15.510826893928455, - -15.96804775442807, - -16.25540959386499, - -16.37605098310097, - -16.29520481670446, - -15.961132265403974, - -15.337608923094766, - -14.467754908805542, - -13.48911343214652, - -12.587710149831238, - -12.039972193749795, - -12.066377982182297, - -12.8111005618748, - -14.24406294711073, - -16.24618638808932, - -18.479491964624742, - -20.51641139729247, - -22.008747956877706, - -22.586160784873247, - -22.08402434537422, - -20.51014884967198, - -18.08325071337576, - -15.037476678850219, - -11.764860437457443, - -8.585612243184599, - -5.6745219359319545, - -3.2118930199744065, - -1.155560653730091, - 0.5534709897201907, - 1.9834495963328358, - 3.2194731964455543, - 4.2289180528157795, - 4.976181842523118, - 5.381102703005761, - 5.356772994484547, - 4.880173799037125, - 4.021612517726224, - 2.8929157852618097, - 1.6510002322174957, - 0.5350543489622329, - -0.35966305330331044, - -0.9633953917694805, - -1.2768666837612213, - -1.4096580934519993, - -1.4903194424978925, - -1.6339698349622487, - -1.9112786201210414, - -2.3079467618112184, - -2.7546258813894617, - -3.126945175746354, - -3.3052362556716885, - -3.219829089944539, - -2.868953971297231, - -2.3172484447452226, - -1.6961182876281184, - -1.1407810959475844, - -0.7396639928622307, - -0.5370638043664693, - -0.4810723999273112, - -0.4627590606567084, - -0.3599024057625725, - -0.07588608662854421, - 0.40784294201587734, - 1.0322783235502764, - 1.6807383583432383, - 2.1755604585987465, - 2.4316715751250264, - 2.4491625896325084, - 2.361553942734909, - 2.4468916823506843, - 3.064050023443247, - 4.577847608472916, - 7.267896278223312, - 11.140023021104113, - 16.117088975556893, - 21.737723146360473, - 27.41018442981842 - ], - "pressure:branch87_seg1:J84": [ - 120005.66615077315, - 142168.28492379934, - 158945.3293254769, - 168669.90250317636, - 170712.4671562038, - 165258.06029137268, - 153460.0911285267, - 137640.2711438849, - 119400.2354034887, - 100339.8742222948, - 82317.65542131479, - 65206.94943969043, - 49186.682968724905, - 34132.01498030063, - 19209.458484883446, - 4803.441837043359, - -9335.697232127368, - -23019.543657110284, - -35074.79332919159, - -45493.471801992295, - -53848.06196696404, - -59996.68847577383, - -64396.76320865489, - -67335.95952030228, - -69266.81637031742, - -70481.2906195117, - -70965.7596693246, - -70562.73004508408, - -69052.87451190008, - -66292.73374503774, - -62475.20631725089, - -58227.28269040238, - -54376.85473702467, - -52101.24483620837, - -52361.63579762169, - -55760.65374411381, - -62107.53062488982, - -70872.07869000846, - -80573.8064734146, - -89305.67455183917, - -95600.87645680086, - -97881.94288362698, - -95464.28151413218, - -88388.18869096487, - -77736.4864461872, - -64471.905795808445, - -50226.11375275238, - -36525.809850593316, - -23993.210871153704, - -13405.593901394714, - -4610.01963974499, - 2750.7327374872143, - 8897.369254479787, - 14189.400163552315, - 18525.3909056225, - 21694.466644319473, - 23359.010849314378, - 23158.15299092371, - 20996.446421582823, - 17196.933693969928, - 12264.695225742456, - 6881.090161345563, - 2089.187267634767, - -1722.026497773703, - -4274.983216334114, - -5579.875953074462, - -6125.656891308594, - -6478.027684795738, - -7125.057109491795, - -8362.237117536348, - -10097.892053953628, - -12025.549166947949, - -13617.021542543689, - -14335.04784183213, - -13900.289052947559, - -12326.641335781796, - -9911.160473233402, - -7210.781976957371, - -4830.563770597973, - -3142.1719925680713, - -2300.5318195430577, - -2080.1337308111747, - -1996.925882327406, - -1519.9469382186714, - -243.624847421641, - 1895.3438221334914, - 4619.614845956306, - 7417.64885984932, - 9513.838584156472, - 10562.894527930828, - 10594.233885200247, - 10220.11517269477, - 10667.096152879147, - 13501.951968404961, - 20282.63065537262, - 32249.994820832297, - 49264.2492973884, - 70953.57655896757, - 95515.84452023411, - 120005.66615077315 - ], - "flow:J84:branch87_seg2": [ - 27.41018442981842, - 32.58164987030299, - 36.51370182688383, - 38.852228121740936, - 39.41776265342486, - 38.239062256396615, - 35.575859278309366, - 31.971501664444403, - 27.780192132006075, - 23.37888066883769, - 19.208920955592276, - 15.242626537995067, - 11.53700152313715, - 8.054566430207277, - 4.608875123713355, - 1.2785485476932215, - -1.9940369159007856, - -5.152520575842231, - -7.958454876435062, - -10.390520099598522, - -12.338577687052897, - -13.784019685732527, - -14.81885817672952, - -15.510826893928455, - -15.96804775442807, - -16.25540959386499, - -16.37605098310097, - -16.29520481670446, - -15.961132265403974, - -15.337608923094766, - -14.467754908805542, - -13.48911343214652, - -12.587710149831238, - -12.039972193749795, - -12.066377982182297, - -12.8111005618748, - -14.24406294711073, - -16.24618638808932, - -18.479491964624742, - -20.51641139729247, - -22.008747956877706, - -22.586160784873247, - -22.08402434537422, - -20.51014884967198, - -18.08325071337576, - -15.037476678850219, - -11.764860437457443, - -8.585612243184599, - -5.6745219359319545, - -3.2118930199744065, - -1.155560653730091, - 0.5534709897201907, - 1.9834495963328358, - 3.2194731964455543, - 4.2289180528157795, - 4.976181842523118, - 5.381102703005761, - 5.356772994484547, - 4.880173799037125, - 4.021612517726224, - 2.8929157852618097, - 1.6510002322174957, - 0.5350543489622329, - -0.35966305330331044, - -0.9633953917694805, - -1.2768666837612213, - -1.4096580934519993, - -1.4903194424978925, - -1.6339698349622487, - -1.9112786201210414, - -2.3079467618112184, - -2.7546258813894617, - -3.126945175746354, - -3.3052362556716885, - -3.219829089944539, - -2.868953971297231, - -2.3172484447452226, - -1.6961182876281184, - -1.1407810959475844, - -0.7396639928622307, - -0.5370638043664693, - -0.4810723999273112, - -0.4627590606567084, - -0.3599024057625725, - -0.07588608662854421, - 0.40784294201587734, - 1.0322783235502764, - 1.6807383583432383, - 2.1755604585987465, - 2.4316715751250264, - 2.4491625896325084, - 2.361553942734909, - 2.4468916823506843, - 3.064050023443247, - 4.577847608472916, - 7.267896278223312, - 11.140023021104113, - 16.117088975556893, - 21.737723146360473, - 27.41018442981842 - ], - "pressure:J84:branch87_seg2": [ - 120005.66615077315, - 142168.28492379934, - 158945.3293254769, - 168669.90250317636, - 170712.4671562038, - 165258.06029137268, - 153460.0911285267, - 137640.2711438849, - 119400.2354034887, - 100339.8742222948, - 82317.65542131479, - 65206.94943969043, - 49186.682968724905, - 34132.01498030063, - 19209.458484883446, - 4803.441837043359, - -9335.697232127368, - -23019.543657110284, - -35074.79332919159, - -45493.471801992295, - -53848.06196696404, - -59996.68847577383, - -64396.76320865489, - -67335.95952030228, - -69266.81637031742, - -70481.2906195117, - -70965.7596693246, - -70562.73004508408, - -69052.87451190008, - -66292.73374503774, - -62475.20631725089, - -58227.28269040238, - -54376.85473702467, - -52101.24483620837, - -52361.63579762169, - -55760.65374411381, - -62107.53062488982, - -70872.07869000846, - -80573.8064734146, - -89305.67455183917, - -95600.87645680086, - -97881.94288362698, - -95464.28151413218, - -88388.18869096487, - -77736.4864461872, - -64471.905795808445, - -50226.11375275238, - -36525.809850593316, - -23993.210871153704, - -13405.593901394714, - -4610.01963974499, - 2750.7327374872143, - 8897.369254479787, - 14189.400163552315, - 18525.3909056225, - 21694.466644319473, - 23359.010849314378, - 23158.15299092371, - 20996.446421582823, - 17196.933693969928, - 12264.695225742456, - 6881.090161345563, - 2089.187267634767, - -1722.026497773703, - -4274.983216334114, - -5579.875953074462, - -6125.656891308594, - -6478.027684795738, - -7125.057109491795, - -8362.237117536348, - -10097.892053953628, - -12025.549166947949, - -13617.021542543689, - -14335.04784183213, - -13900.289052947559, - -12326.641335781796, - -9911.160473233402, - -7210.781976957371, - -4830.563770597973, - -3142.1719925680713, - -2300.5318195430577, - -2080.1337308111747, - -1996.925882327406, - -1519.9469382186714, - -243.624847421641, - 1895.3438221334914, - 4619.614845956306, - 7417.64885984932, - 9513.838584156472, - 10562.894527930828, - 10594.233885200247, - 10220.11517269477, - 10667.096152879147, - 13501.951968404961, - 20282.63065537262, - 32249.994820832297, - 49264.2492973884, - 70953.57655896757, - 95515.84452023411, - 120005.66615077315 - ], - "flow:branch90_seg0:J85": [ - 31.650593705943695, - 35.534569677244185, - 37.49797462048342, - 37.41853120777082, - 35.56215449286877, - 32.239752852116005, - 27.922907791247557, - 23.344643875039168, - 18.90022845440019, - 14.711718502950493, - 11.205225708035558, - 8.03863696196462, - 5.080395416435286, - 2.3046214010315533, - -0.623594650284702, - -3.4408564032936826, - -6.200313798056114, - -8.825734547949825, - -10.859789794983195, - -12.470576301043005, - -13.568381595084928, - -14.164647075483337, - -14.506486579991321, - -14.651674887290952, - -14.713175842895541, - -14.720408566677618, - -14.588493158631879, - -14.236979253669713, - -13.599947507217903, - -12.675344488933675, - -11.573115819566784, - -10.562015642421496, - -9.877893698736724, - -9.83018930612114, - -10.601480812140544, - -12.201509948733019, - -14.3811922280194, - -16.877235445799005, - -19.186876320524338, - -20.748891492161718, - -21.33698466712844, - -20.67574194038758, - -18.807754388824065, - -15.966033393652085, - -12.690282018981192, - -9.184073848480107, - -5.91697817795219, - -3.241201623375956, - -1.0202376597722866, - 0.592124131718174, - 1.8241528157123696, - 2.8765716928008507, - 3.7331188296072866, - 4.519580374967908, - 5.116792270667144, - 5.398088555732461, - 5.289695377969262, - 4.707349007677354, - 3.689218403819222, - 2.4071186191579206, - 1.0592752487882326, - -0.18741061226403294, - -1.0498449121394653, - -1.5367911375458956, - -1.6900419578470987, - -1.59267452569515, - -1.455345044099032, - -1.4431239385352717, - -1.639063364330988, - -2.0485306786649686, - -2.5449408224356285, - -2.9985595043812423, - -3.240049736443048, - -3.1460418948817304, - -2.725914907917264, - -2.0704089049950043, - -1.3252430134504236, - -0.6654295788124244, - -0.2567472508949111, - -0.10415314374510877, - -0.1693446165348604, - -0.31511727299565717, - -0.3578541364413908, - -0.1661001930466477, - 0.30927947368562714, - 0.994890532044455, - 1.7234815971071147, - 2.324755566394718, - 2.5826776322873752, - 2.496470171220071, - 2.2033822322814105, - 1.996292986001617, - 2.2957341127296687, - 3.5303216171638288, - 6.022350452928466, - 9.957394311917849, - 14.908574261867203, - 20.695670644913577, - 26.63269051065899, - 31.650593705943695 - ], - "pressure:branch90_seg0:J85": [ - 173343.11829382993, - 191915.83852948036, - 200936.96556702652, - 198222.4613821823, - 186446.1018120026, - 167729.9742119985, - 144478.30518737476, - 119311.41764485155, - 96204.41754833124, - 74680.61676181712, - 56092.88324848757, - 39891.96692838411, - 24132.419529341285, - 9288.277997175683, - -6149.784917338613, - -21260.349830436135, - -35766.13801782723, - -49535.38470735777, - -59830.53649571297, - -67697.60542734058, - -73196.24091276024, - -75926.52180853869, - -77473.24225098616, - -78153.1563903782, - -78374.00317722438, - -78354.6746850148, - -77475.58142981862, - -75316.96113688254, - -71584.38831611737, - -66471.99196230536, - -60471.23427862663, - -55286.765040693856, - -52277.988770446274, - -52677.18706429871, - -57625.91816558308, - -66932.76736657301, - -79069.0403271609, - -92322.99650443945, - -104290.12074603682, - -111728.04575524751, - -113539.38490498351, - -108839.68375898717, - -97759.11619637905, - -81577.0988759507, - -63997.19483409245, - -45543.99820322121, - -28141.18733114705, - -14723.188209151831, - -3498.9662718892473, - 4718.972160430341, - 10730.59833348693, - 16403.695905680685, - 20788.32330337955, - 24661.469255386008, - 27783.66008869174, - 28858.321715660975, - 27780.004772881828, - 24254.191983670422, - 18496.370662788977, - 11380.492825013076, - 4271.302513633204, - -2022.7650418278806, - -6342.755430925085, - -8484.523298188533, - -8984.848855112818, - -8358.591923997848, - -7640.579561015081, - -7755.931005574933, - -9043.352528138155, - -11435.359508582678, - -14075.728805012699, - -16315.72481630995, - -17374.24016479883, - -16499.392487646423, - -13918.08932969463, - -10248.059404537225, - -6357.295617052353, - -2921.6720441921, - -1051.834980753809, - -583.9244271670453, - -1031.592516329959, - -1793.404278467545, - -1852.352597070994, - -549.9807669599891, - 2238.4041249483325, - 6073.133390381717, - 9897.037570903383, - 12807.426957135343, - 13866.665922939037, - 13065.33044540975, - 11384.987819324191, - 10588.272235125123, - 12934.607730027288, - 20673.63235795307, - 35282.212973638256, - 57923.32795942818, - 85064.1712539242, - 115850.44806954265, - 148264.098315139, - 173343.11829382993 - ], - "flow:J85:branch90_seg1": [ - 31.650593705943695, - 35.534569677244185, - 37.49797462048342, - 37.41853120777082, - 35.56215449286877, - 32.239752852116005, - 27.922907791247557, - 23.344643875039168, - 18.90022845440019, - 14.711718502950493, - 11.205225708035558, - 8.03863696196462, - 5.080395416435286, - 2.3046214010315533, - -0.623594650284702, - -3.4408564032936826, - -6.200313798056114, - -8.825734547949825, - -10.859789794983195, - -12.470576301043005, - -13.568381595084928, - -14.164647075483337, - -14.506486579991321, - -14.651674887290952, - -14.713175842895541, - -14.720408566677618, - -14.588493158631879, - -14.236979253669713, - -13.599947507217903, - -12.675344488933675, - -11.573115819566784, - -10.562015642421496, - -9.877893698736724, - -9.83018930612114, - -10.601480812140544, - -12.201509948733019, - -14.3811922280194, - -16.877235445799005, - -19.186876320524338, - -20.748891492161718, - -21.33698466712844, - -20.67574194038758, - -18.807754388824065, - -15.966033393652085, - -12.690282018981192, - -9.184073848480107, - -5.91697817795219, - -3.241201623375956, - -1.0202376597722866, - 0.592124131718174, - 1.8241528157123696, - 2.8765716928008507, - 3.7331188296072866, - 4.519580374967908, - 5.116792270667144, - 5.398088555732461, - 5.289695377969262, - 4.707349007677354, - 3.689218403819222, - 2.4071186191579206, - 1.0592752487882326, - -0.18741061226403294, - -1.0498449121394653, - -1.5367911375458956, - -1.6900419578470987, - -1.59267452569515, - -1.455345044099032, - -1.4431239385352717, - -1.639063364330988, - -2.0485306786649686, - -2.5449408224356285, - -2.9985595043812423, - -3.240049736443048, - -3.1460418948817304, - -2.725914907917264, - -2.0704089049950043, - -1.3252430134504236, - -0.6654295788124244, - -0.2567472508949111, - -0.10415314374510877, - -0.1693446165348604, - -0.31511727299565717, - -0.3578541364413908, - -0.1661001930466477, - 0.30927947368562714, - 0.994890532044455, - 1.7234815971071147, - 2.324755566394718, - 2.5826776322873752, - 2.496470171220071, - 2.2033822322814105, - 1.996292986001617, - 2.2957341127296687, - 3.5303216171638288, - 6.022350452928466, - 9.957394311917849, - 14.908574261867203, - 20.695670644913577, - 26.63269051065899, - 31.650593705943695 - ], - "pressure:J85:branch90_seg1": [ - 173343.11829382993, - 191915.83852948036, - 200936.96556702652, - 198222.4613821823, - 186446.1018120026, - 167729.9742119985, - 144478.30518737476, - 119311.41764485155, - 96204.41754833124, - 74680.61676181712, - 56092.88324848757, - 39891.96692838411, - 24132.419529341285, - 9288.277997175683, - -6149.784917338613, - -21260.349830436135, - -35766.13801782723, - -49535.38470735777, - -59830.53649571297, - -67697.60542734058, - -73196.24091276024, - -75926.52180853869, - -77473.24225098616, - -78153.1563903782, - -78374.00317722438, - -78354.6746850148, - -77475.58142981862, - -75316.96113688254, - -71584.38831611737, - -66471.99196230536, - -60471.23427862663, - -55286.765040693856, - -52277.988770446274, - -52677.18706429871, - -57625.91816558308, - -66932.76736657301, - -79069.0403271609, - -92322.99650443945, - -104290.12074603682, - -111728.04575524751, - -113539.38490498351, - -108839.68375898717, - -97759.11619637905, - -81577.0988759507, - -63997.19483409245, - -45543.99820322121, - -28141.18733114705, - -14723.188209151831, - -3498.9662718892473, - 4718.972160430341, - 10730.59833348693, - 16403.695905680685, - 20788.32330337955, - 24661.469255386008, - 27783.66008869174, - 28858.321715660975, - 27780.004772881828, - 24254.191983670422, - 18496.370662788977, - 11380.492825013076, - 4271.302513633204, - -2022.7650418278806, - -6342.755430925085, - -8484.523298188533, - -8984.848855112818, - -8358.591923997848, - -7640.579561015081, - -7755.931005574933, - -9043.352528138155, - -11435.359508582678, - -14075.728805012699, - -16315.72481630995, - -17374.24016479883, - -16499.392487646423, - -13918.08932969463, - -10248.059404537225, - -6357.295617052353, - -2921.6720441921, - -1051.834980753809, - -583.9244271670453, - -1031.592516329959, - -1793.404278467545, - -1852.352597070994, - -549.9807669599891, - 2238.4041249483325, - 6073.133390381717, - 9897.037570903383, - 12807.426957135343, - 13866.665922939037, - 13065.33044540975, - 11384.987819324191, - 10588.272235125123, - 12934.607730027288, - 20673.63235795307, - 35282.212973638256, - 57923.32795942818, - 85064.1712539242, - 115850.44806954265, - 148264.098315139, - 173343.11829382993 - ], - "flow:branch90_seg1:J86": [ - 31.62101289524176, - 35.51842832681219, - 37.4926311088753, - 37.426893935109284, - 35.58394921041352, - 32.26713448417183, - 27.94871030444406, - 23.38004751490385, - 18.927602613830327, - 14.730556277371207, - 11.227865025076726, - 8.055771779562619, - 5.0974429632409555, - 2.323327642477046, - -0.6098609494384959, - -3.4230943596910124, - -6.181202980905825, - -8.814098430434296, - -10.848119052235132, - -12.4624291165246, - -13.563831822260655, - -14.161250498549439, - -14.505355670166578, - -14.651151569081371, - -14.71274162171176, - -14.720769611474102, - -14.590201839104646, - -14.240562877193224, - -13.606087669336043, - -12.682311576746413, - -11.580697209337359, - -10.567736090040578, - -9.878709096552907, - -9.82667687644376, - -10.593056872761585, - -12.189644831980251, - -14.36464212257529, - -16.862752308505655, - -19.176203401002187, - -20.74233697324827, - -21.339923385065845, - -20.68524228090352, - -18.82395633970048, - -15.985551546905626, - -12.71254689377563, - -9.2065224868935, - -5.936592152914836, - -3.257802915876829, - -1.0319667089692521, - 0.5828408254969712, - 1.8164783336613666, - 2.869134320881353, - 3.7276602741103795, - 4.51580161556434, - 5.113430189968002, - 5.397865342789114, - 5.292943124039272, - 4.713389460398128, - 3.6964198306989298, - 2.416893739343991, - 1.0676276155476758, - -0.18346296594997513, - -1.04558789901184, - -1.5350894210621373, - -1.6908507924954583, - -1.5934728978843116, - -1.4557289330182592, - -1.4424349160479248, - -1.6368272471753476, - -2.0454224999207136, - -2.5417791480791263, - -2.99621529441467, - -3.23976584757153, - -3.1480233454802913, - -2.7300215288228684, - -2.0756878493912283, - -1.3299266671868772, - -0.6694160777835385, - -0.2582954220363412, - -0.10363964281726121, - -0.16829425849806287, - -0.31456356829280574, - -0.35860771691075427, - -0.1687095170566467, - 0.3054600839531179, - 0.9898222825256188, - 1.7192053940974954, - 2.323600382481707, - 2.5824621540676884, - 2.4979255079662708, - 2.205309152603733, - 1.995969710017135, - 2.2902275917399946, - 3.517343694212065, - 5.999833248826895, - 9.927088040531055, - 14.872651976294211, - 20.65418219691149, - 26.59189950288062, - 31.62101289524176 - ], - "pressure:branch90_seg1:J86": [ - 168764.91698031832, - 188600.96826328654, - 198519.31318592074, - 197354.43476716013, - 186943.00773830968, - 169055.97880578827, - 146150.75721951845, - 121731.22978060495, - 98408.3794403021, - 76517.68764584557, - 58040.78607014707, - 41518.78152370343, - 25888.79771031992, - 11209.236505800676, - -4229.021913545968, - -19129.982184944583, - -33635.9606220407, - -47467.47677522672, - -58021.6791386479, - -66297.13475089059, - -71991.54447238076, - -74989.42929334793, - -76709.84037295076, - -77446.78597430796, - -77734.44824724195, - -77756.41704541621, - -77003.72555857225, - -75054.59215308948, - -71581.45535159606, - -66634.45896642293, - -60768.15668188598, - -55488.11177965771, - -52074.811875455875, - -52032.28357925111, - -56380.78601835922, - -65095.183112018654, - -76774.8595429521, - -89959.25423368503, - -102062.31408997615, - -110024.05617602199, - -112710.14908034474, - -108831.76695002403, - -98594.52823275088, - -83224.89826876762, - -65885.70052540477, - -47440.160764420834, - -30162.819324120446, - -16307.159933428013, - -4762.645994464344, - 3637.029585798511, - 9958.753340984114, - 15545.351919191427, - 20017.45401259442, - 24068.57918563161, - 27205.83272605927, - 28557.583581797, - 27824.480854266054, - 24611.52501624271, - 19119.430136112333, - 12256.604431170725, - 5152.100782691475, - -1333.3296388602935, - -5791.781402215134, - -8217.506644502571, - -8927.439717721945, - -8374.82317880313, - -7651.926876077539, - -7645.989179874543, - -8760.056872356943, - -10994.200719116976, - -13615.162596745555, - -15953.420060275377, - -17158.983340856274, - -16540.795181998434, - -14209.807138412305, - -10688.98846858341, - -6777.011236218853, - -3315.041082075878, - -1252.4572312762514, - -558.4098057738682, - -935.4422107825364, - -1702.8984053776048, - -1875.4129162037186, - -772.0104008148332, - 1824.5093735902205, - 5505.487219269338, - 9339.263189448266, - 12427.818436325686, - 13683.796558161084, - 13115.445696411989, - 11526.78161218204, - 10530.096271186194, - 12352.933364029675, - 19251.476537238766, - 32844.346637210496, - 54194.32569793605, - 80596.9927658533, - 111129.85920166525, - 142785.37150081125, - 168764.91698031832 - ], - "flow:J86:branch90_seg2": [ - 31.62101289524176, - 35.51842832681219, - 37.4926311088753, - 37.426893935109284, - 35.58394921041352, - 32.26713448417183, - 27.94871030444406, - 23.38004751490385, - 18.927602613830327, - 14.730556277371207, - 11.227865025076726, - 8.055771779562619, - 5.0974429632409555, - 2.323327642477046, - -0.6098609494384959, - -3.4230943596910124, - -6.181202980905825, - -8.814098430434296, - -10.848119052235132, - -12.4624291165246, - -13.563831822260655, - -14.161250498549439, - -14.505355670166578, - -14.651151569081371, - -14.71274162171176, - -14.720769611474102, - -14.590201839104646, - -14.240562877193224, - -13.606087669336043, - -12.682311576746413, - -11.580697209337359, - -10.567736090040578, - -9.878709096552907, - -9.82667687644376, - -10.593056872761585, - -12.189644831980251, - -14.36464212257529, - -16.862752308505655, - -19.176203401002187, - -20.74233697324827, - -21.339923385065845, - -20.68524228090352, - -18.82395633970048, - -15.985551546905626, - -12.71254689377563, - -9.2065224868935, - -5.936592152914836, - -3.257802915876829, - -1.0319667089692521, - 0.5828408254969712, - 1.8164783336613666, - 2.869134320881353, - 3.7276602741103795, - 4.51580161556434, - 5.113430189968002, - 5.397865342789114, - 5.292943124039272, - 4.713389460398128, - 3.6964198306989298, - 2.416893739343991, - 1.0676276155476758, - -0.18346296594997513, - -1.04558789901184, - -1.5350894210621373, - -1.6908507924954583, - -1.5934728978843116, - -1.4557289330182592, - -1.4424349160479248, - -1.6368272471753476, - -2.0454224999207136, - -2.5417791480791263, - -2.99621529441467, - -3.23976584757153, - -3.1480233454802913, - -2.7300215288228684, - -2.0756878493912283, - -1.3299266671868772, - -0.6694160777835385, - -0.2582954220363412, - -0.10363964281726121, - -0.16829425849806287, - -0.31456356829280574, - -0.35860771691075427, - -0.1687095170566467, - 0.3054600839531179, - 0.9898222825256188, - 1.7192053940974954, - 2.323600382481707, - 2.5824621540676884, - 2.4979255079662708, - 2.205309152603733, - 1.995969710017135, - 2.2902275917399946, - 3.517343694212065, - 5.999833248826895, - 9.927088040531055, - 14.872651976294211, - 20.65418219691149, - 26.59189950288062, - 31.62101289524176 - ], - "pressure:J86:branch90_seg2": [ - 168764.91698031832, - 188600.96826328654, - 198519.31318592074, - 197354.43476716013, - 186943.00773830968, - 169055.97880578827, - 146150.75721951845, - 121731.22978060495, - 98408.3794403021, - 76517.68764584557, - 58040.78607014707, - 41518.78152370343, - 25888.79771031992, - 11209.236505800676, - -4229.021913545968, - -19129.982184944583, - -33635.9606220407, - -47467.47677522672, - -58021.6791386479, - -66297.13475089059, - -71991.54447238076, - -74989.42929334793, - -76709.84037295076, - -77446.78597430796, - -77734.44824724195, - -77756.41704541621, - -77003.72555857225, - -75054.59215308948, - -71581.45535159606, - -66634.45896642293, - -60768.15668188598, - -55488.11177965771, - -52074.811875455875, - -52032.28357925111, - -56380.78601835922, - -65095.183112018654, - -76774.8595429521, - -89959.25423368503, - -102062.31408997615, - -110024.05617602199, - -112710.14908034474, - -108831.76695002403, - -98594.52823275088, - -83224.89826876762, - -65885.70052540477, - -47440.160764420834, - -30162.819324120446, - -16307.159933428013, - -4762.645994464344, - 3637.029585798511, - 9958.753340984114, - 15545.351919191427, - 20017.45401259442, - 24068.57918563161, - 27205.83272605927, - 28557.583581797, - 27824.480854266054, - 24611.52501624271, - 19119.430136112333, - 12256.604431170725, - 5152.100782691475, - -1333.3296388602935, - -5791.781402215134, - -8217.506644502571, - -8927.439717721945, - -8374.82317880313, - -7651.926876077539, - -7645.989179874543, - -8760.056872356943, - -10994.200719116976, - -13615.162596745555, - -15953.420060275377, - -17158.983340856274, - -16540.795181998434, - -14209.807138412305, - -10688.98846858341, - -6777.011236218853, - -3315.041082075878, - -1252.4572312762514, - -558.4098057738682, - -935.4422107825364, - -1702.8984053776048, - -1875.4129162037186, - -772.0104008148332, - 1824.5093735902205, - 5505.487219269338, - 9339.263189448266, - 12427.818436325686, - 13683.796558161084, - 13115.445696411989, - 11526.78161218204, - 10530.096271186194, - 12352.933364029675, - 19251.476537238766, - 32844.346637210496, - 54194.32569793605, - 80596.9927658533, - 111129.85920166525, - 142785.37150081125, - 168764.91698031832 - ], - "flow:branch93_seg0:J87": [ - 25.378935255536785, - 28.572619014531146, - 30.229744324768014, - 30.25102466878128, - 28.830073829004156, - 26.216459278631458, - 22.787547846449648, - 19.1093147874526, - 15.53443328852629, - 12.148549313525969, - 9.285486281995132, - 6.710128889928807, - 4.308090364435388, - 2.061574188461267, - -0.2846154551261123, - -2.552567510348003, - -4.771833312304001, - -6.8736698772747475, - -8.53431803393198, - -9.86093120754518, - -10.778611730589114, - -11.302557342467066, - -11.613626115432053, - -11.760907786225332, - -11.834883350827743, - -11.858377325582213, - -11.770200426700084, - -11.508741249876804, - -11.0205233362366, - -10.30292476373164, - -9.437558099067598, - -8.633636305949679, - -8.076918868271107, - -8.013128228635155, - -8.59417139479859, - -9.835395639374173, - -11.558830601630806, - -13.551219424191888, - -15.425200599579881, - -16.738444741589316, - -17.290553585790857, - -16.85599916613906, - -15.447171940339837, - -13.240255488040832, - -10.637988289565918, - -7.813116155681646, - -5.155740633687565, - -2.9363667880360516, - -1.0788379362323826, - 0.2901009449106302, - 1.3477748142613795, - 2.2408569884863305, - 2.9652899264105783, - 3.626877502879341, - 4.131458085358488, - 4.3818245380954215, - 4.320577723431668, - 3.877745970236193, - 3.0819678256832943, - 2.060798041700866, - 0.9766781892419515, - -0.037313468554177824, - -0.7627925066730936, - -1.1882492839712113, - -1.342590827144182, - -1.2904504644009418, - -1.1941240618139954, - -1.18615771447954, - -1.3376202337838858, - -1.6574373444586046, - -2.052156392051978, - -2.42071070846458, - -2.625407622216803, - -2.5683976745284833, - -2.250050341591495, - -1.7371190814178596, - -1.1424652939088602, - -0.6058470700180232, - -0.2617943168541525, - -0.11818299612970232, - -0.15180233924225398, - -0.2567896008585918, - -0.28887191668700307, - -0.1412106624627953, - 0.22954067928050464, - 0.7726417746045121, - 1.357299256848964, - 1.8483536169987131, - 2.07736295579255, - 2.031986023785277, - 1.8150142605280086, - 1.6540251681460592, - 1.8816181500118272, - 2.841909161559032, - 4.802074826074228, - 7.912310691922299, - 11.861685037763582, - 16.516814486758626, - 21.294730468778024, - 25.378935255536785 - ], - "pressure:branch93_seg0:J87": [ - 168297.054957227, - 187533.09987805184, - 197123.50503900493, - 195574.3982133744, - 184924.47932317454, - 167165.20607030566, - 144616.40338313923, - 120200.41234226026, - 97524.44092885226, - 76016.73607591275, - 57541.26868918767, - 41360.96852244361, - 25753.413094152475, - 11206.155986355623, - -3895.0598815503467, - -18742.928319983366, - -32936.884866262306, - -46395.54608240665, - -56868.67048346476, - -64951.70099031887, - -70640.88686352747, - -73734.60145734897, - -75534.67174845272, - -76422.55218569253, - -76824.64167471071, - -76920.77178172328, - -76221.26327961912, - -74314.5548496191, - -70896.38472242394, - -66090.40053978314, - -60371.91197328525, - -55302.41747325063, - -52128.29090642214, - -52208.522454910795, - -56594.749416854684, - -65228.99325084762, - -76828.33859387353, - -89708.58108296887, - -101660.66686648878, - -109546.75393629429, - -112184.51479654257, - -108517.35478839645, - -98539.66972543835, - -83495.49338423548, - -66385.96102366185, - -48171.23656577585, - -30971.411970689827, - -17090.55203877636, - -5502.157865308143, - 3107.5998461241898, - 9596.579163094086, - 15373.156930137176, - 19942.10531037203, - 24031.571714792604, - 27226.701476302176, - 28534.139418854058, - 27770.586502269714, - 24567.392188801492, - 19147.681567954773, - 12290.6308261464, - 5336.944751290803, - -1018.2321915582523, - -5540.137986944961, - -7950.246159892706, - -8724.771714240711, - -8299.77052315576, - -7675.4813813687015, - -7746.641533999847, - -8901.374209338917, - -11120.818421719716, - -13700.040999264202, - -15976.937356485576, - -17131.38715156562, - -16495.915753006837, - -14173.899193209967, - -10704.17018173581, - -6875.8805996254305, - -3457.866151710761, - -1448.6099971801052, - -756.8826460774717, - -1068.7999932920739, - -1745.5256969023364, - -1836.259872449228, - -671.753308975597, - 1920.7001127499886, - 5589.517140062281, - 9329.972638388554, - 12314.8530175355, - 13583.72218694213, - 13031.571545061674, - 11537.264846342756, - 10699.574506094721, - 12709.62091068744, - 19772.78755560709, - 33475.31744725802, - 54816.805774063985, - 81121.63078424687, - 111476.8545124145, - 142841.33688082822, - 168297.054957227 - ], - "flow:J87:branch93_seg1": [ - 25.378935255536785, - 28.572619014531146, - 30.229744324768014, - 30.25102466878128, - 28.830073829004156, - 26.216459278631458, - 22.787547846449648, - 19.1093147874526, - 15.53443328852629, - 12.148549313525969, - 9.285486281995132, - 6.710128889928807, - 4.308090364435388, - 2.061574188461267, - -0.2846154551261123, - -2.552567510348003, - -4.771833312304001, - -6.8736698772747475, - -8.53431803393198, - -9.86093120754518, - -10.778611730589114, - -11.302557342467066, - -11.613626115432053, - -11.760907786225332, - -11.834883350827743, - -11.858377325582213, - -11.770200426700084, - -11.508741249876804, - -11.0205233362366, - -10.30292476373164, - -9.437558099067598, - -8.633636305949679, - -8.076918868271107, - -8.013128228635155, - -8.59417139479859, - -9.835395639374173, - -11.558830601630806, - -13.551219424191888, - -15.425200599579881, - -16.738444741589316, - -17.290553585790857, - -16.85599916613906, - -15.447171940339837, - -13.240255488040832, - -10.637988289565918, - -7.813116155681646, - -5.155740633687565, - -2.9363667880360516, - -1.0788379362323826, - 0.2901009449106302, - 1.3477748142613795, - 2.2408569884863305, - 2.9652899264105783, - 3.626877502879341, - 4.131458085358488, - 4.3818245380954215, - 4.320577723431668, - 3.877745970236193, - 3.0819678256832943, - 2.060798041700866, - 0.9766781892419515, - -0.037313468554177824, - -0.7627925066730936, - -1.1882492839712113, - -1.342590827144182, - -1.2904504644009418, - -1.1941240618139954, - -1.18615771447954, - -1.3376202337838858, - -1.6574373444586046, - -2.052156392051978, - -2.42071070846458, - -2.625407622216803, - -2.5683976745284833, - -2.250050341591495, - -1.7371190814178596, - -1.1424652939088602, - -0.6058470700180232, - -0.2617943168541525, - -0.11818299612970232, - -0.15180233924225398, - -0.2567896008585918, - -0.28887191668700307, - -0.1412106624627953, - 0.22954067928050464, - 0.7726417746045121, - 1.357299256848964, - 1.8483536169987131, - 2.07736295579255, - 2.031986023785277, - 1.8150142605280086, - 1.6540251681460592, - 1.8816181500118272, - 2.841909161559032, - 4.802074826074228, - 7.912310691922299, - 11.861685037763582, - 16.516814486758626, - 21.294730468778024, - 25.378935255536785 - ], - "pressure:J87:branch93_seg1": [ - 168297.054957227, - 187533.09987805184, - 197123.50503900493, - 195574.3982133744, - 184924.47932317454, - 167165.20607030566, - 144616.40338313923, - 120200.41234226026, - 97524.44092885226, - 76016.73607591275, - 57541.26868918767, - 41360.96852244361, - 25753.413094152475, - 11206.155986355623, - -3895.0598815503467, - -18742.928319983366, - -32936.884866262306, - -46395.54608240665, - -56868.67048346476, - -64951.70099031887, - -70640.88686352747, - -73734.60145734897, - -75534.67174845272, - -76422.55218569253, - -76824.64167471071, - -76920.77178172328, - -76221.26327961912, - -74314.5548496191, - -70896.38472242394, - -66090.40053978314, - -60371.91197328525, - -55302.41747325063, - -52128.29090642214, - -52208.522454910795, - -56594.749416854684, - -65228.99325084762, - -76828.33859387353, - -89708.58108296887, - -101660.66686648878, - -109546.75393629429, - -112184.51479654257, - -108517.35478839645, - -98539.66972543835, - -83495.49338423548, - -66385.96102366185, - -48171.23656577585, - -30971.411970689827, - -17090.55203877636, - -5502.157865308143, - 3107.5998461241898, - 9596.579163094086, - 15373.156930137176, - 19942.10531037203, - 24031.571714792604, - 27226.701476302176, - 28534.139418854058, - 27770.586502269714, - 24567.392188801492, - 19147.681567954773, - 12290.6308261464, - 5336.944751290803, - -1018.2321915582523, - -5540.137986944961, - -7950.246159892706, - -8724.771714240711, - -8299.77052315576, - -7675.4813813687015, - -7746.641533999847, - -8901.374209338917, - -11120.818421719716, - -13700.040999264202, - -15976.937356485576, - -17131.38715156562, - -16495.915753006837, - -14173.899193209967, - -10704.17018173581, - -6875.8805996254305, - -3457.866151710761, - -1448.6099971801052, - -756.8826460774717, - -1068.7999932920739, - -1745.5256969023364, - -1836.259872449228, - -671.753308975597, - 1920.7001127499886, - 5589.517140062281, - 9329.972638388554, - 12314.8530175355, - 13583.72218694213, - 13031.571545061674, - 11537.264846342756, - 10699.574506094721, - 12709.62091068744, - 19772.78755560709, - 33475.31744725802, - 54816.805774063985, - 81121.63078424687, - 111476.8545124145, - 142841.33688082822, - 168297.054957227 - ], - "flow:branch93_seg1:J88": [ - 25.36032059887994, - 28.562367501173437, - 30.225733603510673, - 30.255238681304217, - 28.842113816364535, - 26.23292599971713, - 22.804715104682, - 19.13069306633169, - 15.551798103189167, - 12.16230036490607, - 9.299925826350142, - 6.721251313246949, - 4.319459291980584, - 2.0727798374499287, - -0.27519353203020797, - -2.5414086810436243, - -4.761772038160495, - -6.866166207986971, - -8.527266424094057, - -9.856344255686343, - -10.775741544745282, - -11.300569319480779, - -11.612913341586793, - -11.760432231353823, - -11.83459859261178, - -11.85854319268093, - -11.771045592517634, - -11.510728217577057, - -11.023908084482382, - -10.30710322175586, - -9.4420808057648, - -8.637361038419074, - -8.078002500836948, - -8.01134208309154, - -8.589251678971237, - -9.827827896058286, - -11.548576646816405, - -13.542221836437236, - -15.417728755870945, - -16.73423677710592, - -17.291557273131186, - -16.861274810095626, - -15.45604389050741, - -13.251579958039041, - -10.65108051353605, - -7.825780218501133, - -5.1671728435254405, - -2.946257086504108, - -1.0858098558116451, - 0.2842377251327413, - 1.34301777447504, - 2.236663570868835, - 2.961558176338538, - 3.624223228208504, - 4.129312462368633, - 4.38138989947256, - 4.322224100722741, - 3.8812776037652372, - 3.0865174874412475, - 2.0669152527063934, - 0.981862703497654, - -0.033946401670313084, - -0.7599548339932077, - -1.187173872826064, - -1.3428172204043816, - -1.29086813673403, - -1.1943694247490009, - -1.1857642981132455, - -1.336400257119242, - -1.655687167461749, - -2.0502894720216527, - -2.4193885398990287, - -2.6251683441987113, - -2.5693863639955317, - -2.2523304767029892, - -1.7400861972080255, - -1.1453364059544646, - -0.6081943850611471, - -0.2630115870581579, - -0.11814442468773606, - -0.15125196902128693, - -0.25644090105861367, - -0.2892242018361526, - -0.14274172246271968, - 0.22718118563924633, - 0.7694241559829257, - 1.3546574257701198, - 1.8471564761159922, - 2.077094212480787, - 2.032835691560674, - 1.816152266412456, - 1.653883267641527, - 1.8785532938245086, - 2.8344788586203, - 4.789696153796939, - 7.895262376508051, - 11.840894995660342, - 16.49350141184319, - 21.272195358009263, - 25.36032059887994 - ], - "pressure:branch93_seg1:J88": [ - 164702.10050247423, - 184784.33000718086, - 195073.7030341163, - 194645.26006458412, - 185016.90914588957, - 167915.19822413108, - 145721.3591381797, - 121850.73638064163, - 98986.51382643942, - 77321.41852510911, - 58918.41982558027, - 42500.80487588634, - 27020.668803294488, - 12557.851501030738, - -2522.214692221613, - -17169.99041518024, - -31399.0174559819, - -44888.762363652786, - -55479.6151005073, - -63849.341957636854, - -69674.86067323507, - -72944.09687010599, - -74876.15710155944, - -75801.73582807145, - -76251.09122476303, - -76384.71988041399, - -75774.3926843233, - -74020.43285839583, - -70792.51208839362, - -66120.15457317556, - -60509.734579051335, - -55379.699418338816, - -51937.093072486736, - -51688.76771525114, - -55637.229219894485, - -63828.644389882145, - -75066.61473812925, - -87892.28439533444, - -99898.16241478581, - -108147.16969579311, - -111391.254953596, - -108309.31933939713, - -98950.2807452262, - -84484.08627358473, - -67648.66361813329, - -49489.72364492776, - -32378.404273423494, - -18260.98290280337, - -6446.185038021431, - 2280.122111072806, - 8964.038236197623, - 14714.459588393052, - 19335.917995422165, - 23530.277176485935, - 26755.290598391624, - 28262.953678022644, - 27747.518205773875, - 24786.075055855625, - 19572.466205798853, - 12919.292261225615, - 5958.952452685671, - -502.3898412584456, - -5111.898380468686, - -7735.854015789241, - -8655.304367285013, - -8289.057969250982, - -7667.740419543444, - -7657.28368612621, - -8690.74046911024, - -10800.41587070934, - -13349.148040767026, - -15684.967874220913, - -16946.9134700771, - -16490.239786508933, - -14353.773710688623, - -11001.897752270947, - -7181.629465033408, - -3744.6383762579594, - -1602.8185992313122, - -757.5834701542894, - -1005.1748510154067, - -1681.04797691693, - -1849.1648261110872, - -829.890371427914, - 1621.5580106043226, - 5167.804757849564, - 8918.433213914272, - 12017.129929651588, - 13419.123032072972, - 13039.70920416475, - 11612.203121241339, - 10642.70523862529, - 12285.592697741315, - 18748.667952965516, - 31705.361881605888, - 52136.556088346195, - 77804.09276783992, - 107831.9218170888, - 138749.59311512727, - 164702.10050247423 - ], - "flow:J88:branch93_seg2": [ - 25.36032059887994, - 28.562367501173437, - 30.225733603510673, - 30.255238681304217, - 28.842113816364535, - 26.23292599971713, - 22.804715104682, - 19.13069306633169, - 15.551798103189167, - 12.16230036490607, - 9.299925826350142, - 6.721251313246949, - 4.319459291980584, - 2.0727798374499287, - -0.27519353203020797, - -2.5414086810436243, - -4.761772038160495, - -6.866166207986971, - -8.527266424094057, - -9.856344255686343, - -10.775741544745282, - -11.300569319480779, - -11.612913341586793, - -11.760432231353823, - -11.83459859261178, - -11.85854319268093, - -11.771045592517634, - -11.510728217577057, - -11.023908084482382, - -10.30710322175586, - -9.4420808057648, - -8.637361038419074, - -8.078002500836948, - -8.01134208309154, - -8.589251678971237, - -9.827827896058286, - -11.548576646816405, - -13.542221836437236, - -15.417728755870945, - -16.73423677710592, - -17.291557273131186, - -16.861274810095626, - -15.45604389050741, - -13.251579958039041, - -10.65108051353605, - -7.825780218501133, - -5.1671728435254405, - -2.946257086504108, - -1.0858098558116451, - 0.2842377251327413, - 1.34301777447504, - 2.236663570868835, - 2.961558176338538, - 3.624223228208504, - 4.129312462368633, - 4.38138989947256, - 4.322224100722741, - 3.8812776037652372, - 3.0865174874412475, - 2.0669152527063934, - 0.981862703497654, - -0.033946401670313084, - -0.7599548339932077, - -1.187173872826064, - -1.3428172204043816, - -1.29086813673403, - -1.1943694247490009, - -1.1857642981132455, - -1.336400257119242, - -1.655687167461749, - -2.0502894720216527, - -2.4193885398990287, - -2.6251683441987113, - -2.5693863639955317, - -2.2523304767029892, - -1.7400861972080255, - -1.1453364059544646, - -0.6081943850611471, - -0.2630115870581579, - -0.11814442468773606, - -0.15125196902128693, - -0.25644090105861367, - -0.2892242018361526, - -0.14274172246271968, - 0.22718118563924633, - 0.7694241559829257, - 1.3546574257701198, - 1.8471564761159922, - 2.077094212480787, - 2.032835691560674, - 1.816152266412456, - 1.653883267641527, - 1.8785532938245086, - 2.8344788586203, - 4.789696153796939, - 7.895262376508051, - 11.840894995660342, - 16.49350141184319, - 21.272195358009263, - 25.36032059887994 - ], - "pressure:J88:branch93_seg2": [ - 164702.10050247423, - 184784.33000718086, - 195073.7030341163, - 194645.26006458412, - 185016.90914588957, - 167915.19822413108, - 145721.3591381797, - 121850.73638064163, - 98986.51382643942, - 77321.41852510911, - 58918.41982558027, - 42500.80487588634, - 27020.668803294488, - 12557.851501030738, - -2522.214692221613, - -17169.99041518024, - -31399.0174559819, - -44888.762363652786, - -55479.6151005073, - -63849.341957636854, - -69674.86067323507, - -72944.09687010599, - -74876.15710155944, - -75801.73582807145, - -76251.09122476303, - -76384.71988041399, - -75774.3926843233, - -74020.43285839583, - -70792.51208839362, - -66120.15457317556, - -60509.734579051335, - -55379.699418338816, - -51937.093072486736, - -51688.76771525114, - -55637.229219894485, - -63828.644389882145, - -75066.61473812925, - -87892.28439533444, - -99898.16241478581, - -108147.16969579311, - -111391.254953596, - -108309.31933939713, - -98950.2807452262, - -84484.08627358473, - -67648.66361813329, - -49489.72364492776, - -32378.404273423494, - -18260.98290280337, - -6446.185038021431, - 2280.122111072806, - 8964.038236197623, - 14714.459588393052, - 19335.917995422165, - 23530.277176485935, - 26755.290598391624, - 28262.953678022644, - 27747.518205773875, - 24786.075055855625, - 19572.466205798853, - 12919.292261225615, - 5958.952452685671, - -502.3898412584456, - -5111.898380468686, - -7735.854015789241, - -8655.304367285013, - -8289.057969250982, - -7667.740419543444, - -7657.28368612621, - -8690.74046911024, - -10800.41587070934, - -13349.148040767026, - -15684.967874220913, - -16946.9134700771, - -16490.239786508933, - -14353.773710688623, - -11001.897752270947, - -7181.629465033408, - -3744.6383762579594, - -1602.8185992313122, - -757.5834701542894, - -1005.1748510154067, - -1681.04797691693, - -1849.1648261110872, - -829.890371427914, - 1621.5580106043226, - 5167.804757849564, - 8918.433213914272, - 12017.129929651588, - 13419.123032072972, - 13039.70920416475, - 11612.203121241339, - 10642.70523862529, - 12285.592697741315, - 18748.667952965516, - 31705.361881605888, - 52136.556088346195, - 77804.09276783992, - 107831.9218170888, - 138749.59311512727, - 164702.10050247423 - ], - "flow:branch96_seg0:J89": [ - 28.478892476052273, - 32.73016084425153, - 35.404632882494255, - 36.282565217279505, - 35.412262019460165, - 33.006338905360266, - 29.462498032514887, - 25.375597114705688, - 21.15832180724868, - 17.07822323364537, - 13.46732339658992, - 10.175150386733534, - 7.143633342175618, - 4.286558839169883, - 1.3814318428782515, - -1.4542435938322351, - -4.2675099752865915, - -6.935537824855838, - -9.17678431123337, - -11.030899134340483, - -12.389313597177242, - -13.273937592475074, - -13.839076871142897, - -14.160664404888424, - -14.352768972168192, - -14.456307788287882, - -14.43102780727029, - -14.214628628719076, - -13.741490684665022, - -12.991362345989861, - -12.037235033429665, - -11.075546861844858, - -10.323721035115964, - -10.063318646197839, - -10.493184445325493, - -11.682845950334315, - -13.499237474412197, - -15.72835086464345, - -17.94434246202452, - -19.68035040766366, - -20.626817445962434, - -20.491174854663658, - -19.228979078746363, - -16.98215225061388, - -14.125330327628875, - -10.898996062446493, - -7.743993803150729, - -4.963189246995775, - -2.5905949491746405, - -0.7553544472993852, - 0.6934238428231936, - 1.887840196005383, - 2.873339007715695, - 3.7536777196544127, - 4.459982374001774, - 4.904350482303121, - 5.001768223221771, - 4.669435618712842, - 3.9145230127389783, - 2.8495331813137965, - 1.6334388642291593, - 0.44222302875617475, - -0.493883764682935, - -1.120176865402554, - -1.4212392430139118, - -1.4605798039337603, - -1.3987896815871483, - -1.3854624904186381, - -1.5231256800509383, - -1.8461062034763853, - -2.2818829543385966, - -2.7257595717253027, - -3.024520708878771, - -3.0587513891052307, - -2.7968924335995844, - -2.285837197256153, - -1.6364989214375976, - -1.0039243995929885, - -0.5387233789608834, - -0.2895882771726637, - -0.25278941298332447, - -0.33022523710551555, - -0.37296184935219373, - -0.25075017575945985, - 0.10968754781748949, - 0.6809803090111785, - 1.3474649699076566, - 1.9538825314225616, - 2.314425127396919, - 2.3786077179688845, - 2.211472438544044, - 2.0314641120704846, - 2.187595950283218, - 3.07045624541765, - 5.020217842591346, - 8.246250342015587, - 12.550329481108498, - 17.79036822705973, - 23.365109223159767, - 28.478892476052273 - ], - "pressure:branch96_seg0:J89": [ - 149767.5553724324, - 170325.46477251555, - 182783.66382740412, - 185574.70641772766, - 179615.3334301145, - 166279.8302465242, - 147558.99957103725, - 126034.92211482866, - 104746.74154514963, - 84207.55433956858, - 65888.42745538015, - 49495.08655942534, - 34049.61651215251, - 19491.589898470695, - 4709.576327102576, - -9881.853301489098, - -24159.524979825415, - -37618.747103745016, - -48744.38269978624, - -57768.503323625206, - -64372.494139684924, - -68526.97515166327, - -71160.60782258412, - -72668.96160503561, - -73549.3341663138, - -74006.13300155675, - -73742.12367275081, - -72430.58504916151, - -69758.18780006756, - -65731.78040726502, - -60708.69500863101, - -55879.53920902451, - -52384.887262590775, - -51518.85970721696, - -54343.87362765495, - -61052.52404430874, - -70831.44156326265, - -82348.53179066684, - -93549.5644973377, - -101876.9579250871, - -105843.8712159014, - -104250.25715341314, - -96867.26185327045, - -84570.71341864855, - -69611.64577998217, - -53028.930212902866, - -36927.7323119397, - -23175.12682833216, - -11455.71075028084, - -2422.1599932375243, - 4615.790340455881, - 10639.870355480063, - 15503.856903275382, - 19838.719201554486, - 23354.51445216428, - 25326.044360166405, - 25472.542465168382, - 23421.61268867467, - 19253.316692894376, - 13545.093558659755, - 7318.667635956001, - 1380.4709381486716, - -3227.9075632521863, - -6108.012162504741, - -7391.425697411257, - -7451.610584740294, - -7099.005757418277, - -7122.53146671603, - -7985.695925848391, - -9791.12828551946, - -12066.513330742811, - -14270.202185247272, - -15640.168880496036, - -15554.096249128826, - -13952.260403609864, - -11164.774786574108, - -7816.766490436964, - -4619.139143173654, - -2441.491028587319, - -1389.7119549817635, - -1324.011860100153, - -1757.4334173319264, - -1891.962195371784, - -1083.1641208996105, - 956.3858724691289, - 4041.3990325260083, - 7451.601412998111, - 10402.324106241189, - 12036.77550999791, - 12103.257137248347, - 11113.646324534307, - 10319.950432807582, - 11569.908412492816, - 16861.12270548784, - 27828.722058066127, - 45514.42954442295, - 68315.77809218966, - 95570.49717997716, - 124486.34994864055, - 149767.5553724324 - ], - "flow:J89:branch96_seg1": [ - 28.478892476052273, - 32.73016084425153, - 35.404632882494255, - 36.282565217279505, - 35.412262019460165, - 33.006338905360266, - 29.462498032514887, - 25.375597114705688, - 21.15832180724868, - 17.07822323364537, - 13.46732339658992, - 10.175150386733534, - 7.143633342175618, - 4.286558839169883, - 1.3814318428782515, - -1.4542435938322351, - -4.2675099752865915, - -6.935537824855838, - -9.17678431123337, - -11.030899134340483, - -12.389313597177242, - -13.273937592475074, - -13.839076871142897, - -14.160664404888424, - -14.352768972168192, - -14.456307788287882, - -14.43102780727029, - -14.214628628719076, - -13.741490684665022, - -12.991362345989861, - -12.037235033429665, - -11.075546861844858, - -10.323721035115964, - -10.063318646197839, - -10.493184445325493, - -11.682845950334315, - -13.499237474412197, - -15.72835086464345, - -17.94434246202452, - -19.68035040766366, - -20.626817445962434, - -20.491174854663658, - -19.228979078746363, - -16.98215225061388, - -14.125330327628875, - -10.898996062446493, - -7.743993803150729, - -4.963189246995775, - -2.5905949491746405, - -0.7553544472993852, - 0.6934238428231936, - 1.887840196005383, - 2.873339007715695, - 3.7536777196544127, - 4.459982374001774, - 4.904350482303121, - 5.001768223221771, - 4.669435618712842, - 3.9145230127389783, - 2.8495331813137965, - 1.6334388642291593, - 0.44222302875617475, - -0.493883764682935, - -1.120176865402554, - -1.4212392430139118, - -1.4605798039337603, - -1.3987896815871483, - -1.3854624904186381, - -1.5231256800509383, - -1.8461062034763853, - -2.2818829543385966, - -2.7257595717253027, - -3.024520708878771, - -3.0587513891052307, - -2.7968924335995844, - -2.285837197256153, - -1.6364989214375976, - -1.0039243995929885, - -0.5387233789608834, - -0.2895882771726637, - -0.25278941298332447, - -0.33022523710551555, - -0.37296184935219373, - -0.25075017575945985, - 0.10968754781748949, - 0.6809803090111785, - 1.3474649699076566, - 1.9538825314225616, - 2.314425127396919, - 2.3786077179688845, - 2.211472438544044, - 2.0314641120704846, - 2.187595950283218, - 3.07045624541765, - 5.020217842591346, - 8.246250342015587, - 12.550329481108498, - 17.79036822705973, - 23.365109223159767, - 28.478892476052273 - ], - "pressure:J89:branch96_seg1": [ - 149767.5553724324, - 170325.46477251555, - 182783.66382740412, - 185574.70641772766, - 179615.3334301145, - 166279.8302465242, - 147558.99957103725, - 126034.92211482866, - 104746.74154514963, - 84207.55433956858, - 65888.42745538015, - 49495.08655942534, - 34049.61651215251, - 19491.589898470695, - 4709.576327102576, - -9881.853301489098, - -24159.524979825415, - -37618.747103745016, - -48744.38269978624, - -57768.503323625206, - -64372.494139684924, - -68526.97515166327, - -71160.60782258412, - -72668.96160503561, - -73549.3341663138, - -74006.13300155675, - -73742.12367275081, - -72430.58504916151, - -69758.18780006756, - -65731.78040726502, - -60708.69500863101, - -55879.53920902451, - -52384.887262590775, - -51518.85970721696, - -54343.87362765495, - -61052.52404430874, - -70831.44156326265, - -82348.53179066684, - -93549.5644973377, - -101876.9579250871, - -105843.8712159014, - -104250.25715341314, - -96867.26185327045, - -84570.71341864855, - -69611.64577998217, - -53028.930212902866, - -36927.7323119397, - -23175.12682833216, - -11455.71075028084, - -2422.1599932375243, - 4615.790340455881, - 10639.870355480063, - 15503.856903275382, - 19838.719201554486, - 23354.51445216428, - 25326.044360166405, - 25472.542465168382, - 23421.61268867467, - 19253.316692894376, - 13545.093558659755, - 7318.667635956001, - 1380.4709381486716, - -3227.9075632521863, - -6108.012162504741, - -7391.425697411257, - -7451.610584740294, - -7099.005757418277, - -7122.53146671603, - -7985.695925848391, - -9791.12828551946, - -12066.513330742811, - -14270.202185247272, - -15640.168880496036, - -15554.096249128826, - -13952.260403609864, - -11164.774786574108, - -7816.766490436964, - -4619.139143173654, - -2441.491028587319, - -1389.7119549817635, - -1324.011860100153, - -1757.4334173319264, - -1891.962195371784, - -1083.1641208996105, - 956.3858724691289, - 4041.3990325260083, - 7451.601412998111, - 10402.324106241189, - 12036.77550999791, - 12103.257137248347, - 11113.646324534307, - 10319.950432807582, - 11569.908412492816, - 16861.12270548784, - 27828.722058066127, - 45514.42954442295, - 68315.77809218966, - 95570.49717997716, - 124486.34994864055, - 149767.5553724324 - ], - "flow:branch96_seg1:J90": [ - 28.464837905742048, - 32.72051509249377, - 35.39964400385925, - 36.283398772174095, - 35.41862099214687, - 33.016176085756214, - 29.473924523473993, - 25.389784110218905, - 21.170282325678883, - 17.088604833358563, - 13.47786553665915, - 10.183660918959115, - 7.152096405409449, - 4.294827912594502, - 1.3887736380898497, - -1.4458751752210315, - -4.259613759567737, - -6.9292736468316, - -9.17087956045118, - -11.0265694295398, - -12.386381312306803, - -13.271892496918186, - -13.838012102394229, - -14.159982108887647, - -14.352319069057991, - -14.456206195312598, - -14.431419261994806, - -14.215767872695908, - -13.743582859670191, - -12.99407515027873, - -12.040358974105395, - -11.078213965550997, - -10.324943148181319, - -10.062738840350681, - -10.490461123331077, - -11.678183594581125, - -13.492676155725691, - -15.722037225764174, - -17.93878273107262, - -19.67667573531729, - -20.626418753011126, - -20.49370778018058, - -19.23442639837866, - -16.98961412069509, - -14.134435964773505, - -10.908392082623937, - -7.752633063758133, - -4.970779280239135, - -2.5964438399105583, - -0.7601285639728479, - 0.6895271832730089, - 1.8844694952209373, - 2.870557866118365, - 3.7514144028776433, - 4.458142960028308, - 4.903671800919526, - 5.002395486103257, - 4.671348280656389, - 3.9173239387143317, - 2.85339494880494, - 1.6369328765812095, - 0.44482580899045454, - -0.49159259670374666, - -1.11905842617333, - -1.4210462825791799, - -1.4606874255789215, - -1.3989252685194569, - -1.3852651090768129, - -1.5223819284134898, - -1.8449508738070315, - -2.2805389578102697, - -2.7246422842763156, - -3.0240936911019944, - -3.0591853419099024, - -2.798228367559974, - -2.287758939162016, - -1.6385047472507583, - -1.0056850150240677, - -0.5397123955165439, - -0.28981903819803173, - -0.25258957991961484, - -0.33000757970443007, - -0.3731144904858631, - -0.25160811527084104, - 0.10822543038742695, - 0.6789219633968613, - 1.345610512136188, - 1.9527894005134827, - 2.31390099023189, - 2.3789173831284622, - 2.2121337943404993, - 2.031540274864273, - 2.185957055891798, - 3.066067177064307, - 5.012290746369105, - 8.234930361132882, - 12.53596192819413, - 17.773474369673718, - 23.348443234993677, - 28.464837905742048 - ], - "pressure:branch96_seg1:J90": [ - 146602.55287975966, - 167662.20087972228, - 180693.529022321, - 184373.1327219638, - 179258.7386108602, - 166559.49021087252, - 148275.8712727467, - 127226.22080766654, - 105918.68309727433, - 85335.57935394521, - 67059.26643181356, - 50532.25074613627, - 35157.36122383393, - 20664.861810259896, - 5935.863100412626, - -8508.651675171754, - -22753.472236269714, - -36229.06289372041, - -47457.980295815, - -56668.735750583575, - -63414.793638208466, - -67738.25510175974, - -70492.99168067514, - -72064.36607536732, - -72993.43528092066, - -73487.19593943616, - -73297.5564941639, - -72104.84860311606, - -69585.83919816118, - -65687.64788786761, - -60773.677702823494, - -55927.635251012296, - -52267.040803580996, - -51156.147720928, - -53627.6157438793, - -59959.87699100974, - -69412.83911924798, - -80797.48275151697, - -91999.18380540019, - -100569.27965767865, - -104980.58624082734, - -103879.18554160712, - -97039.09432089352, - -85248.88039505934, - -70575.00330994264, - -54142.464444640595, - -38121.984844533676, - -24209.422546685193, - -12340.91067038822, - -3177.132985498224, - 4012.445539116974, - 10045.072012116798, - 14971.863107556215, - 19368.317523947695, - 22914.020178703424, - 25034.771307447176, - 25369.120197797594, - 23519.93059260175, - 19542.01818576342, - 14011.233329002667, - 7825.954515215465, - 1841.551077054404, - -2831.9770937826547, - -5867.083772373405, - -7279.688620576415, - -7414.0455438958015, - -7082.75356566747, - -7056.930321769154, - -7829.475170405315, - -9541.838670786306, - -11777.511091643375, - -14002.685782936642, - -15449.309207537593, - -15503.308552833487, - -14052.287945300657, - -11375.553098633387, - -8063.551096036195, - -4865.449875476499, - -2593.5214326774285, - -1429.4491357867078, - -1298.3904286475163, - -1709.5988169579487, - -1888.6983512126064, - -1183.9222000389873, - 737.9460755814565, - 3715.60047359831, - 7104.485234357199, - 10118.25059250074, - 11853.778167329152, - 12059.64668593684, - 11147.878666443876, - 10290.463209496736, - 11289.923609074458, - 16131.505557991859, - 26495.709704442615, - 43437.19641270762, - 65668.27894977835, - 92498.73038783637, - 121021.89736617033, - 146602.55287975966 - ], - "flow:J90:branch96_seg2": [ - 28.464837905742048, - 32.72051509249377, - 35.39964400385925, - 36.283398772174095, - 35.41862099214687, - 33.016176085756214, - 29.473924523473993, - 25.389784110218905, - 21.170282325678883, - 17.088604833358563, - 13.47786553665915, - 10.183660918959115, - 7.152096405409449, - 4.294827912594502, - 1.3887736380898497, - -1.4458751752210315, - -4.259613759567737, - -6.9292736468316, - -9.17087956045118, - -11.0265694295398, - -12.386381312306803, - -13.271892496918186, - -13.838012102394229, - -14.159982108887647, - -14.352319069057991, - -14.456206195312598, - -14.431419261994806, - -14.215767872695908, - -13.743582859670191, - -12.99407515027873, - -12.040358974105395, - -11.078213965550997, - -10.324943148181319, - -10.062738840350681, - -10.490461123331077, - -11.678183594581125, - -13.492676155725691, - -15.722037225764174, - -17.93878273107262, - -19.67667573531729, - -20.626418753011126, - -20.49370778018058, - -19.23442639837866, - -16.98961412069509, - -14.134435964773505, - -10.908392082623937, - -7.752633063758133, - -4.970779280239135, - -2.5964438399105583, - -0.7601285639728479, - 0.6895271832730089, - 1.8844694952209373, - 2.870557866118365, - 3.7514144028776433, - 4.458142960028308, - 4.903671800919526, - 5.002395486103257, - 4.671348280656389, - 3.9173239387143317, - 2.85339494880494, - 1.6369328765812095, - 0.44482580899045454, - -0.49159259670374666, - -1.11905842617333, - -1.4210462825791799, - -1.4606874255789215, - -1.3989252685194569, - -1.3852651090768129, - -1.5223819284134898, - -1.8449508738070315, - -2.2805389578102697, - -2.7246422842763156, - -3.0240936911019944, - -3.0591853419099024, - -2.798228367559974, - -2.287758939162016, - -1.6385047472507583, - -1.0056850150240677, - -0.5397123955165439, - -0.28981903819803173, - -0.25258957991961484, - -0.33000757970443007, - -0.3731144904858631, - -0.25160811527084104, - 0.10822543038742695, - 0.6789219633968613, - 1.345610512136188, - 1.9527894005134827, - 2.31390099023189, - 2.3789173831284622, - 2.2121337943404993, - 2.031540274864273, - 2.185957055891798, - 3.066067177064307, - 5.012290746369105, - 8.234930361132882, - 12.53596192819413, - 17.773474369673718, - 23.348443234993677, - 28.464837905742048 - ], - "pressure:J90:branch96_seg2": [ - 146602.55287975966, - 167662.20087972228, - 180693.529022321, - 184373.1327219638, - 179258.7386108602, - 166559.49021087252, - 148275.8712727467, - 127226.22080766654, - 105918.68309727433, - 85335.57935394521, - 67059.26643181356, - 50532.25074613627, - 35157.36122383393, - 20664.861810259896, - 5935.863100412626, - -8508.651675171754, - -22753.472236269714, - -36229.06289372041, - -47457.980295815, - -56668.735750583575, - -63414.793638208466, - -67738.25510175974, - -70492.99168067514, - -72064.36607536732, - -72993.43528092066, - -73487.19593943616, - -73297.5564941639, - -72104.84860311606, - -69585.83919816118, - -65687.64788786761, - -60773.677702823494, - -55927.635251012296, - -52267.040803580996, - -51156.147720928, - -53627.6157438793, - -59959.87699100974, - -69412.83911924798, - -80797.48275151697, - -91999.18380540019, - -100569.27965767865, - -104980.58624082734, - -103879.18554160712, - -97039.09432089352, - -85248.88039505934, - -70575.00330994264, - -54142.464444640595, - -38121.984844533676, - -24209.422546685193, - -12340.91067038822, - -3177.132985498224, - 4012.445539116974, - 10045.072012116798, - 14971.863107556215, - 19368.317523947695, - 22914.020178703424, - 25034.771307447176, - 25369.120197797594, - 23519.93059260175, - 19542.01818576342, - 14011.233329002667, - 7825.954515215465, - 1841.551077054404, - -2831.9770937826547, - -5867.083772373405, - -7279.688620576415, - -7414.0455438958015, - -7082.75356566747, - -7056.930321769154, - -7829.475170405315, - -9541.838670786306, - -11777.511091643375, - -14002.685782936642, - -15449.309207537593, - -15503.308552833487, - -14052.287945300657, - -11375.553098633387, - -8063.551096036195, - -4865.449875476499, - -2593.5214326774285, - -1429.4491357867078, - -1298.3904286475163, - -1709.5988169579487, - -1888.6983512126064, - -1183.9222000389873, - 737.9460755814565, - 3715.60047359831, - 7104.485234357199, - 10118.25059250074, - 11853.778167329152, - 12059.64668593684, - 11147.878666443876, - 10290.463209496736, - 11289.923609074458, - 16131.505557991859, - 26495.709704442615, - 43437.19641270762, - 65668.27894977835, - 92498.73038783637, - 121021.89736617033, - 146602.55287975966 - ], - "flow:branch102_seg0:J91": [ - 53.29921117376382, - 60.414331128398985, - 64.39264768401777, - 64.9431181412212, - 62.36175751357459, - 57.137108464335874, - 50.04980849045341, - 42.26789626418891, - 34.56193875569654, - 27.22442783254618, - 20.926791367273466, - 15.256801662227213, - 10.003083252779758, - 5.080617647082582, - -0.00695523681698698, - -4.948784019642467, - -9.80284435862823, - -14.397101005826466, - -18.10313950125501, - -21.078444949858085, - -23.160227769253332, - -24.38603051281235, - -25.10644535568317, - -25.448415420049002, - -25.611567557416247, - -25.655595462212318, - -25.469998044380265, - -24.926195447153383, - -23.90638907533563, - -22.394024840667882, - -20.550077092138153, - -18.792857097908854, - -17.524232059344026, - -17.26548284443895, - -18.35389222283406, - -20.852786154371117, - -24.42368062119364, - -28.620868469748537, - -32.63171134387454, - -35.53679987895527, - -36.85640803569107, - -36.1020958704562, - -33.27111126317187, - -28.710963522005652, - -23.227771930413834, - -17.2330957862277, - -11.540954525327919, - -6.718960148515678, - -2.6852070042321072, - 0.3226054660028297, - 2.6451037075259767, - 4.577777014110387, - 6.151063881758398, - 7.574217653803958, - 8.676684137735275, - 9.264979318072204, - 9.203127882440576, - 8.342292314686137, - 6.7269379890651395, - 4.605946379850082, - 2.311020433379757, - 0.13906013038864387, - -1.4619605419238262, - -2.4379166513434996, - -2.8247904476137657, - -2.7572859280432223, - -2.564609626761814, - -2.5295318515068206, - -2.8173018371355933, - -3.460781204709457, - -4.2828711367343875, - -5.072291545489113, - -5.539776281180116, - -5.472796348053155, - -4.851768800679424, - -3.8021977510988503, - -2.5546062232314375, - -1.4034432839400135, - -0.6317056897370229, - -0.2822712681914269, - -0.3168968923337636, - -0.5235501492545276, - -0.6052689753595106, - -0.32883040832525184, - 0.41204028434046824, - 1.528613935318781, - 2.7622269987230115, - 3.8246475609653263, - 4.363874117100856, - 4.328556934346426, - 3.9056158282299416, - 3.5531367485242744, - 3.957711942335489, - 5.847368354021867, - 9.809307280558032, - 16.181867266844158, - 24.41138904764266, - 34.20524980679315, - 44.37941840783964, - 53.29921117376382 - ], - "pressure:branch102_seg0:J91": [ - 169374.11370050808, - 188335.7206723653, - 198295.86154567683, - 196759.17327940394, - 186167.6900854203, - 168598.2563756226, - 146307.5384805038, - 121568.04874383996, - 98759.02206703882, - 77287.76266769749, - 58394.84561911552, - 42039.32328594066, - 26099.964097707732, - 11141.003220232293, - -4196.32844904907, - -19358.744757526743, - -33840.922524287795, - -47579.887605471326, - -58137.86228204537, - -66219.15639789344, - -72015.35296170505, - -75080.18694277166, - -76846.10944090561, - -77707.48019954991, - -78032.29266275218, - -78068.25882849496, - -77263.1047294435, - -75217.18388053951, - -71643.25616075264, - -66733.4559502157, - -60900.67590753901, - -55779.36424213567, - -52703.21453693683, - -52823.428450087915, - -57324.368913601465, - -66086.2777039985, - -77761.34178997859, - -90609.70256325809, - -102461.59368151662, - -110126.77102817455, - -112376.0807089767, - -108390.48043237983, - -98106.32871245466, - -82698.00082642073, - -65627.33222726636, - -47538.15116725145, - -30220.771061156862, - -16610.281282671895, - -5173.521998634769, - 3394.547471760427, - 9690.906682128367, - 15549.06452265518, - 20072.529235593178, - 24009.334626683194, - 27232.49509427243, - 28452.287665962678, - 27582.48440590771, - 24338.27913062776, - 18896.47648313215, - 12009.820490681304, - 5071.385063540939, - -1159.5017190053904, - -5636.113248515081, - -7966.693161399006, - -8686.33255172733, - -8268.985784238963, - -7656.2475924137025, - -7768.2681100234695, - -8969.432759387395, - -11228.184912938937, - -13769.125210710281, - -15971.943613923147, - -17090.61690464377, - -16377.123333415484, - -13995.34949126263, - -10514.622571589103, - -6756.874303599943, - -3347.9841953967493, - -1401.9266589510992, - -800.7544654890543, - -1095.0380646178407, - -1748.1336316534828, - -1797.3688594560303, - -582.2720257805622, - 2043.0499596142402, - 5721.591040930932, - 9436.177354290858, - 12328.54372817453, - 13534.37363434178, - 12929.81419392283, - 11433.316594941247, - 10702.704357534383, - 12895.975888381057, - 20205.474755508432, - 34126.39311951813, - 55855.574012138364, - 82171.54232461491, - 112228.57262367515, - 144192.24605148047, - 169374.11370050808 - ], - "flow:J91:branch102_seg1": [ - 53.29921117376382, - 60.414331128398985, - 64.39264768401777, - 64.9431181412212, - 62.36175751357459, - 57.137108464335874, - 50.04980849045341, - 42.26789626418891, - 34.56193875569654, - 27.22442783254618, - 20.926791367273466, - 15.256801662227213, - 10.003083252779758, - 5.080617647082582, - -0.00695523681698698, - -4.948784019642467, - -9.80284435862823, - -14.397101005826466, - -18.10313950125501, - -21.078444949858085, - -23.160227769253332, - -24.38603051281235, - -25.10644535568317, - -25.448415420049002, - -25.611567557416247, - -25.655595462212318, - -25.469998044380265, - -24.926195447153383, - -23.90638907533563, - -22.394024840667882, - -20.550077092138153, - -18.792857097908854, - -17.524232059344026, - -17.26548284443895, - -18.35389222283406, - -20.852786154371117, - -24.42368062119364, - -28.620868469748537, - -32.63171134387454, - -35.53679987895527, - -36.85640803569107, - -36.1020958704562, - -33.27111126317187, - -28.710963522005652, - -23.227771930413834, - -17.2330957862277, - -11.540954525327919, - -6.718960148515678, - -2.6852070042321072, - 0.3226054660028297, - 2.6451037075259767, - 4.577777014110387, - 6.151063881758398, - 7.574217653803958, - 8.676684137735275, - 9.264979318072204, - 9.203127882440576, - 8.342292314686137, - 6.7269379890651395, - 4.605946379850082, - 2.311020433379757, - 0.13906013038864387, - -1.4619605419238262, - -2.4379166513434996, - -2.8247904476137657, - -2.7572859280432223, - -2.564609626761814, - -2.5295318515068206, - -2.8173018371355933, - -3.460781204709457, - -4.2828711367343875, - -5.072291545489113, - -5.539776281180116, - -5.472796348053155, - -4.851768800679424, - -3.8021977510988503, - -2.5546062232314375, - -1.4034432839400135, - -0.6317056897370229, - -0.2822712681914269, - -0.3168968923337636, - -0.5235501492545276, - -0.6052689753595106, - -0.32883040832525184, - 0.41204028434046824, - 1.528613935318781, - 2.7622269987230115, - 3.8246475609653263, - 4.363874117100856, - 4.328556934346426, - 3.9056158282299416, - 3.5531367485242744, - 3.957711942335489, - 5.847368354021867, - 9.809307280558032, - 16.181867266844158, - 24.41138904764266, - 34.20524980679315, - 44.37941840783964, - 53.29921117376382 - ], - "pressure:J91:branch102_seg1": [ - 169374.11370050808, - 188335.7206723653, - 198295.86154567683, - 196759.17327940394, - 186167.6900854203, - 168598.2563756226, - 146307.5384805038, - 121568.04874383996, - 98759.02206703882, - 77287.76266769749, - 58394.84561911552, - 42039.32328594066, - 26099.964097707732, - 11141.003220232293, - -4196.32844904907, - -19358.744757526743, - -33840.922524287795, - -47579.887605471326, - -58137.86228204537, - -66219.15639789344, - -72015.35296170505, - -75080.18694277166, - -76846.10944090561, - -77707.48019954991, - -78032.29266275218, - -78068.25882849496, - -77263.1047294435, - -75217.18388053951, - -71643.25616075264, - -66733.4559502157, - -60900.67590753901, - -55779.36424213567, - -52703.21453693683, - -52823.428450087915, - -57324.368913601465, - -66086.2777039985, - -77761.34178997859, - -90609.70256325809, - -102461.59368151662, - -110126.77102817455, - -112376.0807089767, - -108390.48043237983, - -98106.32871245466, - -82698.00082642073, - -65627.33222726636, - -47538.15116725145, - -30220.771061156862, - -16610.281282671895, - -5173.521998634769, - 3394.547471760427, - 9690.906682128367, - 15549.06452265518, - 20072.529235593178, - 24009.334626683194, - 27232.49509427243, - 28452.287665962678, - 27582.48440590771, - 24338.27913062776, - 18896.47648313215, - 12009.820490681304, - 5071.385063540939, - -1159.5017190053904, - -5636.113248515081, - -7966.693161399006, - -8686.33255172733, - -8268.985784238963, - -7656.2475924137025, - -7768.2681100234695, - -8969.432759387395, - -11228.184912938937, - -13769.125210710281, - -15971.943613923147, - -17090.61690464377, - -16377.123333415484, - -13995.34949126263, - -10514.622571589103, - -6756.874303599943, - -3347.9841953967493, - -1401.9266589510992, - -800.7544654890543, - -1095.0380646178407, - -1748.1336316534828, - -1797.3688594560303, - -582.2720257805622, - 2043.0499596142402, - 5721.591040930932, - 9436.177354290858, - 12328.54372817453, - 13534.37363434178, - 12929.81419392283, - 11433.316594941247, - 10702.704357534383, - 12895.975888381057, - 20205.474755508432, - 34126.39311951813, - 55855.574012138364, - 82171.54232461491, - 112228.57262367515, - 144192.24605148047, - 169374.11370050808 - ], - "flow:branch102_seg1:J92": [ - 53.19731335373872, - 60.35584983941978, - 64.37096877409301, - 64.96542065738365, - 62.42965801466653, - 57.226514028642065, - 50.136820227945584, - 42.38703154811259, - 34.65502518881689, - 27.290501096046565, - 21.004598326594024, - 15.316280821000667, - 10.061941324828496, - 5.143230491185677, - 0.03895754685088417, - -4.888862088489456, - -9.739754691766874, - -14.359254952995455, - -18.063696023432364, - -21.05023812631117, - -23.14450280060121, - -24.373590727811617, - -25.102045096098085, - -25.446222271021693, - -25.609657566647414, - -25.65665690164822, - -25.47533949014847, - -24.937668654797534, - -23.926230230453996, - -22.417140580501677, - -20.575190247608223, - -18.812493680919474, - -17.52836124074434, - -17.25485483260192, - -18.32720479548238, - -20.81459371786055, - -24.368791992161967, - -28.57303443833285, - -32.59552629227488, - -35.51390760798459, - -36.863916502752716, - -36.131476587571186, - -33.321838230951265, - -28.77141261747495, - -23.300149758842295, - -17.30728384826348, - -11.604670779199438, - -6.775692632278048, - -2.7250883235088983, - 0.2906483363913043, - 2.617328592245412, - 4.55286581682998, - 6.131949608552044, - 7.56038762178852, - 8.664990699566964, - 9.263229590370967, - 9.212880320575488, - 8.361822993647538, - 6.750433145047236, - 4.6386922240246395, - 2.338823721730437, - 0.15288066503234962, - -1.44704136465679, - -2.431342453206771, - -2.826638058269744, - -2.7594504749542486, - -2.565609094854861, - -2.527361463308165, - -2.810375302802344, - -3.4512737833733795, - -4.272670149964042, - -5.064313133404907, - -5.538575321712657, - -5.478569049360817, - -4.864576686133141, - -3.819099759460242, - -2.570441441860868, - -1.4167648313957626, - -0.637569094443127, - -0.28151117563809175, - -0.3137771704547241, - -0.5219096806434844, - -0.6076360213896951, - -0.33726953583591174, - 0.39972102346012617, - 1.5117748485374598, - 2.748093751190537, - 3.8204530493620985, - 4.362617244752849, - 4.33261672790896, - 3.9113679102892314, - 3.552120425391092, - 3.9404521640434975, - 5.806317619504959, - 9.73771801232699, - 16.08700145194396, - 24.29564899520191, - 34.0665085726803, - 44.24814845185578, - 53.19731335373872 - ], - "pressure:branch102_seg1:J92": [ - 162154.818380568, - 183177.40111001531, - 194830.33810118763, - 195927.03296745618, - 187674.73612499007, - 171605.76428599303, - 150051.7821892657, - 126419.4204833563, - 103222.19952620567, - 81182.87218622027, - 62259.343018208674, - 45284.20789742504, - 29432.733727161845, - 14585.712531917308, - -786.6000927893665, - -15694.245468375655, - -30279.34622565235, - -44164.66288822062, - -55194.8789104162, - -63999.999757181045, - -70203.29964206068, - -73770.82768078346, - -75876.3377198535, - -76876.23753639463, - -77332.84182395307, - -77452.78821888499, - -76852.62103376957, - -75144.0275837277, - -71987.47889438599, - -67365.29474580818, - -61756.83050934266, - -56485.47243371573, - -52781.322957235956, - -52153.499094843595, - -55649.06151307292, - -63408.06821102477, - -74315.22381979221, - -87021.0296933257, - -99084.50568164742, - -107640.10328436553, - -111328.61659098182, - -108750.05708333822, - -99905.23806657745, - -85838.49277722035, - -69236.4897554617, - -51177.362178290445, - -33966.43316901582, - -19618.231250692937, - -7574.5614833665495, - 1401.8842804907226, - 8259.63847545137, - 14097.222674488172, - 18805.605406286337, - 23031.736781716892, - 26337.85003663976, - 28019.013780056895, - 27717.97949012925, - 25012.76500880442, - 20035.16780472724, - 13565.213082488179, - 6633.347743229438, - 120.28323879096061, - -4625.967140336003, - -7458.64012898582, - -8551.51698747266, - -8303.531625833, - -7713.146418120102, - -7645.33066871223, - -8570.651464033886, - -10570.3482270021, - -13058.407191919247, - -15404.906172559191, - -16769.625515832115, - -16477.511704734436, - -14516.87770893515, - -11298.38761418612, - -7537.852213636483, - -4075.923438116243, - -1811.991303582065, - -837.8907403428568, - -976.1179170216218, - -1609.0262659969512, - -1823.9803107421717, - -926.2285117112259, - 1378.7890660231603, - 4797.022618373243, - 8520.08263318806, - 11681.186125651435, - 13224.336502071972, - 13026.222029397624, - 11709.340906100737, - 10700.029985637493, - 12082.781673249325, - 18055.583546104608, - 30331.186080131516, - 50004.45483659536, - 75061.94595076244, - 104618.81906536907, - 135568.32884673998, - 162154.818380568 - ], - "flow:J92:branch102_seg2": [ - 53.19731335373872, - 60.35584983941978, - 64.37096877409301, - 64.96542065738365, - 62.42965801466653, - 57.226514028642065, - 50.136820227945584, - 42.38703154811259, - 34.65502518881689, - 27.290501096046565, - 21.004598326594024, - 15.316280821000667, - 10.061941324828496, - 5.143230491185677, - 0.03895754685088417, - -4.888862088489456, - -9.739754691766874, - -14.359254952995455, - -18.063696023432364, - -21.05023812631117, - -23.14450280060121, - -24.373590727811617, - -25.102045096098085, - -25.446222271021693, - -25.609657566647414, - -25.65665690164822, - -25.47533949014847, - -24.937668654797534, - -23.926230230453996, - -22.417140580501677, - -20.575190247608223, - -18.812493680919474, - -17.52836124074434, - -17.25485483260192, - -18.32720479548238, - -20.81459371786055, - -24.368791992161967, - -28.57303443833285, - -32.59552629227488, - -35.51390760798459, - -36.863916502752716, - -36.131476587571186, - -33.321838230951265, - -28.77141261747495, - -23.300149758842295, - -17.30728384826348, - -11.604670779199438, - -6.775692632278048, - -2.7250883235088983, - 0.2906483363913043, - 2.617328592245412, - 4.55286581682998, - 6.131949608552044, - 7.56038762178852, - 8.664990699566964, - 9.263229590370967, - 9.212880320575488, - 8.361822993647538, - 6.750433145047236, - 4.6386922240246395, - 2.338823721730437, - 0.15288066503234962, - -1.44704136465679, - -2.431342453206771, - -2.826638058269744, - -2.7594504749542486, - -2.565609094854861, - -2.527361463308165, - -2.810375302802344, - -3.4512737833733795, - -4.272670149964042, - -5.064313133404907, - -5.538575321712657, - -5.478569049360817, - -4.864576686133141, - -3.819099759460242, - -2.570441441860868, - -1.4167648313957626, - -0.637569094443127, - -0.28151117563809175, - -0.3137771704547241, - -0.5219096806434844, - -0.6076360213896951, - -0.33726953583591174, - 0.39972102346012617, - 1.5117748485374598, - 2.748093751190537, - 3.8204530493620985, - 4.362617244752849, - 4.33261672790896, - 3.9113679102892314, - 3.552120425391092, - 3.9404521640434975, - 5.806317619504959, - 9.73771801232699, - 16.08700145194396, - 24.29564899520191, - 34.0665085726803, - 44.24814845185578, - 53.19731335373872 - ], - "pressure:J92:branch102_seg2": [ - 162154.818380568, - 183177.40111001531, - 194830.33810118763, - 195927.03296745618, - 187674.73612499007, - 171605.76428599303, - 150051.7821892657, - 126419.4204833563, - 103222.19952620567, - 81182.87218622027, - 62259.343018208674, - 45284.20789742504, - 29432.733727161845, - 14585.712531917308, - -786.6000927893665, - -15694.245468375655, - -30279.34622565235, - -44164.66288822062, - -55194.8789104162, - -63999.999757181045, - -70203.29964206068, - -73770.82768078346, - -75876.3377198535, - -76876.23753639463, - -77332.84182395307, - -77452.78821888499, - -76852.62103376957, - -75144.0275837277, - -71987.47889438599, - -67365.29474580818, - -61756.83050934266, - -56485.47243371573, - -52781.322957235956, - -52153.499094843595, - -55649.06151307292, - -63408.06821102477, - -74315.22381979221, - -87021.0296933257, - -99084.50568164742, - -107640.10328436553, - -111328.61659098182, - -108750.05708333822, - -99905.23806657745, - -85838.49277722035, - -69236.4897554617, - -51177.362178290445, - -33966.43316901582, - -19618.231250692937, - -7574.5614833665495, - 1401.8842804907226, - 8259.63847545137, - 14097.222674488172, - 18805.605406286337, - 23031.736781716892, - 26337.85003663976, - 28019.013780056895, - 27717.97949012925, - 25012.76500880442, - 20035.16780472724, - 13565.213082488179, - 6633.347743229438, - 120.28323879096061, - -4625.967140336003, - -7458.64012898582, - -8551.51698747266, - -8303.531625833, - -7713.146418120102, - -7645.33066871223, - -8570.651464033886, - -10570.3482270021, - -13058.407191919247, - -15404.906172559191, - -16769.625515832115, - -16477.511704734436, - -14516.87770893515, - -11298.38761418612, - -7537.852213636483, - -4075.923438116243, - -1811.991303582065, - -837.8907403428568, - -976.1179170216218, - -1609.0262659969512, - -1823.9803107421717, - -926.2285117112259, - 1378.7890660231603, - 4797.022618373243, - 8520.08263318806, - 11681.186125651435, - 13224.336502071972, - 13026.222029397624, - 11709.340906100737, - 10700.029985637493, - 12082.781673249325, - 18055.583546104608, - 30331.186080131516, - 50004.45483659536, - 75061.94595076244, - 104618.81906536907, - 135568.32884673998, - 162154.818380568 - ], - "flow:branch105_seg0:J93": [ - 39.878104920629326, - 44.81399791543985, - 47.34120275859414, - 47.30684131290873, - 45.022542047075795, - 40.89012919844275, - 35.49984790579869, - 29.72553964331977, - 24.14317496223391, - 18.862673473895217, - 14.396091691947527, - 10.381034508473931, - 6.619061328691026, - 3.086703686985151, - -0.6124200440694757, - -4.201612782440942, - -7.7091173064484835, - -11.017381424195376, - -13.622152351530783, - -15.683370090586115, - -17.091162429685635, - -17.87738361795431, - -18.329665234042128, - -18.532070330944123, - -18.62583586280217, - -18.643201008480062, - -18.484005368690354, - -18.047806870674012, - -17.250510930939424, - -16.093339900147676, - -14.709756834320926, - -13.437763054295232, - -12.57424992544306, - -12.50301110779668, - -13.45698774065479, - -15.44918885280091, - -18.187198477231423, - -21.31584750554319, - -24.223937682991238, - -26.213249146647573, - -26.97561013222718, - -26.179179578540346, - -23.862075383362363, - -20.322443824836213, - -16.20420461075941, - -11.784274032939209, - -7.66757029934566, - -4.264047960285531, - -1.4409003673318905, - 0.6237981494262009, - 2.214297290560576, - 3.564209478881947, - 4.662831376989566, - 5.672187905889345, - 6.440273479694859, - 6.807061659284089, - 6.683343953840942, - 5.9627976101187645, - 4.695987151451136, - 3.084862097257983, - 1.3941020482827133, - -0.17100629641403253, - -1.2755512113084015, - -1.902578028617158, - -2.107953194048716, - -2.001058651344115, - -1.8382902571735136, - -1.8271621482493914, - -2.074523511233951, - -2.5869108710013755, - -3.211164228265918, - -3.7843569143208593, - -4.089992917345053, - -3.9787454580393775, - -3.4573263449869396, - -2.6382562972465826, - -1.703610019225956, - -0.8726857905052102, - -0.35486218804317765, - -0.1549626071388758, - -0.2285585251688661, - -0.40416772792041633, - -0.45394269532734977, - -0.21222067811261125, - 0.38214654086199773, - 1.2436189720553836, - 2.1583252821964365, - 2.9131989563120304, - 3.249133525308284, - 3.15148668612456, - 2.7922852340582605, - 2.538207128865391, - 2.9160762371756133, - 4.463624152826099, - 7.591777047378005, - 12.521127905156721, - 18.748782407094314, - 26.058882496391245, - 33.52768302616975, - 39.878104920629326 - ], - "pressure:branch105_seg0:J93": [ - 174946.42981007296, - 193147.41359949336, - 201766.4217924382, - 198624.69899649158, - 186431.92744720078, - 167590.81525844557, - 144315.1365319721, - 118935.26579119037, - 96286.08897547613, - 74804.35631716753, - 56086.92356847666, - 40043.17078009478, - 24081.846170782424, - 9164.041454674787, - -6262.447260231674, - -21687.91917193555, - -36170.00127070032, - -49824.84488453529, - -60278.322041093445, - -68034.73913517331, - -73504.10445411011, - -76269.70179340628, - -77790.94170705175, - -78525.87355000884, - -78783.45402746588, - -78755.3653460802, - -77846.53434095957, - -75617.34944609711, - -71790.36746673443, - -66635.45204449503, - -60605.91420334781, - -55513.65687341349, - -52669.12197930631, - -53261.765767077966, - -58397.702908539504, - -67841.67614508589, - -80132.7669106472, - -93240.03575050314, - -105112.39945128972, - -112355.139029845, - -113854.87615456436, - -108972.86232088265, - -97686.98766616597, - -81458.82905285813, - -63701.82096356087, - -45277.980424593254, - -27982.887658656393, - -14571.757774298198, - -3477.194284822202, - 4760.350556561055, - 10815.708871489625, - 16512.943356602133, - 20917.259706794903, - 24821.61078160804, - 27931.00226671725, - 28911.101966019385, - 27733.151221508568, - 24109.171861161893, - 18311.614077639028, - 11110.08306549756, - 4123.601768142489, - -2066.5716759308, - -6402.215349401912, - -8426.884602455948, - -8896.316977093662, - -8302.669002461189, - -7629.625539522377, - -7812.702483870302, - -9172.649320229859, - -11596.15771563966, - -14257.84932431548, - -16463.557277044347, - -17435.19977101088, - -16482.385608002405, - -13821.668177083075, - -10116.147781248135, - -6239.599383763031, - -2852.0111248790113, - -1077.4381928608846, - -664.5561418652677, - -1133.8504154535563, - -1855.7664374025992, - -1844.6201674757315, - -449.8567560201903, - 2393.9820857150526, - 6281.7514810169905, - 10042.529564496219, - 12856.5699147708, - 13886.713031541436, - 13015.167327940027, - 11353.717093346204, - 10666.938992557936, - 13238.376657306675, - 21282.185468446285, - 36276.253496592755, - 59189.7936165332, - 86697.03634100623, - 117817.54660355256, - 150049.67952615983, - 174946.42981007296 - ], - "flow:J93:branch105_seg1": [ - 39.878104920629326, - 44.81399791543985, - 47.34120275859414, - 47.30684131290873, - 45.022542047075795, - 40.89012919844275, - 35.49984790579869, - 29.72553964331977, - 24.14317496223391, - 18.862673473895217, - 14.396091691947527, - 10.381034508473931, - 6.619061328691026, - 3.086703686985151, - -0.6124200440694757, - -4.201612782440942, - -7.7091173064484835, - -11.017381424195376, - -13.622152351530783, - -15.683370090586115, - -17.091162429685635, - -17.87738361795431, - -18.329665234042128, - -18.532070330944123, - -18.62583586280217, - -18.643201008480062, - -18.484005368690354, - -18.047806870674012, - -17.250510930939424, - -16.093339900147676, - -14.709756834320926, - -13.437763054295232, - -12.57424992544306, - -12.50301110779668, - -13.45698774065479, - -15.44918885280091, - -18.187198477231423, - -21.31584750554319, - -24.223937682991238, - -26.213249146647573, - -26.97561013222718, - -26.179179578540346, - -23.862075383362363, - -20.322443824836213, - -16.20420461075941, - -11.784274032939209, - -7.66757029934566, - -4.264047960285531, - -1.4409003673318905, - 0.6237981494262009, - 2.214297290560576, - 3.564209478881947, - 4.662831376989566, - 5.672187905889345, - 6.440273479694859, - 6.807061659284089, - 6.683343953840942, - 5.9627976101187645, - 4.695987151451136, - 3.084862097257983, - 1.3941020482827133, - -0.17100629641403253, - -1.2755512113084015, - -1.902578028617158, - -2.107953194048716, - -2.001058651344115, - -1.8382902571735136, - -1.8271621482493914, - -2.074523511233951, - -2.5869108710013755, - -3.211164228265918, - -3.7843569143208593, - -4.089992917345053, - -3.9787454580393775, - -3.4573263449869396, - -2.6382562972465826, - -1.703610019225956, - -0.8726857905052102, - -0.35486218804317765, - -0.1549626071388758, - -0.2285585251688661, - -0.40416772792041633, - -0.45394269532734977, - -0.21222067811261125, - 0.38214654086199773, - 1.2436189720553836, - 2.1583252821964365, - 2.9131989563120304, - 3.249133525308284, - 3.15148668612456, - 2.7922852340582605, - 2.538207128865391, - 2.9160762371756133, - 4.463624152826099, - 7.591777047378005, - 12.521127905156721, - 18.748782407094314, - 26.058882496391245, - 33.52768302616975, - 39.878104920629326 - ], - "pressure:J93:branch105_seg1": [ - 174946.42981007296, - 193147.41359949336, - 201766.4217924382, - 198624.69899649158, - 186431.92744720078, - 167590.81525844557, - 144315.1365319721, - 118935.26579119037, - 96286.08897547613, - 74804.35631716753, - 56086.92356847666, - 40043.17078009478, - 24081.846170782424, - 9164.041454674787, - -6262.447260231674, - -21687.91917193555, - -36170.00127070032, - -49824.84488453529, - -60278.322041093445, - -68034.73913517331, - -73504.10445411011, - -76269.70179340628, - -77790.94170705175, - -78525.87355000884, - -78783.45402746588, - -78755.3653460802, - -77846.53434095957, - -75617.34944609711, - -71790.36746673443, - -66635.45204449503, - -60605.91420334781, - -55513.65687341349, - -52669.12197930631, - -53261.765767077966, - -58397.702908539504, - -67841.67614508589, - -80132.7669106472, - -93240.03575050314, - -105112.39945128972, - -112355.139029845, - -113854.87615456436, - -108972.86232088265, - -97686.98766616597, - -81458.82905285813, - -63701.82096356087, - -45277.980424593254, - -27982.887658656393, - -14571.757774298198, - -3477.194284822202, - 4760.350556561055, - 10815.708871489625, - 16512.943356602133, - 20917.259706794903, - 24821.61078160804, - 27931.00226671725, - 28911.101966019385, - 27733.151221508568, - 24109.171861161893, - 18311.614077639028, - 11110.08306549756, - 4123.601768142489, - -2066.5716759308, - -6402.215349401912, - -8426.884602455948, - -8896.316977093662, - -8302.669002461189, - -7629.625539522377, - -7812.702483870302, - -9172.649320229859, - -11596.15771563966, - -14257.84932431548, - -16463.557277044347, - -17435.19977101088, - -16482.385608002405, - -13821.668177083075, - -10116.147781248135, - -6239.599383763031, - -2852.0111248790113, - -1077.4381928608846, - -664.5561418652677, - -1133.8504154535563, - -1855.7664374025992, - -1844.6201674757315, - -449.8567560201903, - 2393.9820857150526, - 6281.7514810169905, - 10042.529564496219, - 12856.5699147708, - 13886.713031541436, - 13015.167327940027, - 11353.717093346204, - 10666.938992557936, - 13238.376657306675, - 21282.185468446285, - 36276.253496592755, - 59189.7936165332, - 86697.03634100623, - 117817.54660355256, - 150049.67952615983, - 174946.42981007296 - ], - "flow:branch105_seg1:J94": [ - 39.82477624892172, - 44.78577551260672, - 47.33170421594481, - 47.32012080487457, - 45.05987738087919, - 40.94039572704773, - 35.55064972782963, - 29.790962316253676, - 24.192914354448913, - 18.899762253092252, - 14.437220691036307, - 10.411674657842683, - 6.650520864110226, - 3.1175995866738457, - -0.5892187801911234, - -4.171222217247798, - -7.681465363460517, - -11.001059536368443, - -13.604005321900543, - -15.671781048830745, - -17.085078283452955, - -17.87213263485584, - -18.32837123186721, - -18.531088827177722, - -18.62493362891241, - -18.643934800550017, - -18.486824273511754, - -18.054065253749375, - -17.261183121358844, - -16.10619202239754, - -14.723355488205483, - -13.448528750753622, - -12.57659494145943, - -12.496136772484011, - -13.441482529687626, - -15.426998933634435, - -18.15686384633239, - -21.291538396507214, - -24.205648168091535, - -26.204138930991927, - -26.982086288776205, - -26.19674921346925, - -23.88821485938836, - -20.351485554892015, - -16.24015446665851, - -11.819018707773186, - -7.696538453139701, - -4.291402252944652, - -1.4587126167697628, - 0.6080786733688901, - 2.199974569837364, - 3.5522617318927834, - 4.651995298207093, - 5.664344654502797, - 6.434220862280863, - 6.806205466657686, - 6.688896302349469, - 5.97406332279681, - 4.709416949852821, - 3.103342217213781, - 1.4083652433371676, - -0.1635257719011253, - -1.2686147107393373, - -1.9004011614160004, - -2.109596164528918, - -2.0024809564396486, - -1.8387112978515288, - -1.8257487215896364, - -2.0708444863455533, - -2.582369186446437, - -3.206121245663385, - -3.780822371037516, - -4.089954661336847, - -3.981978668026665, - -3.4641165948005646, - -2.6470384928518103, - -1.7121081817596056, - -0.8793239729028178, - -0.3580571553715606, - -0.15456415264731663, - -0.22659636552586024, - -0.4032670008198185, - -0.45534120509412435, - -0.21724332536069044, - 0.3750941534871752, - 1.2340513687725718, - 2.151271468616046, - 2.911284634312716, - 3.2493096986969188, - 3.1542678209796597, - 2.7952892162740293, - 2.537081516102832, - 2.9061692172034963, - 4.441578853568796, - 7.555451659775457, - 12.475479647893001, - 18.690611216416357, - 25.989617642722582, - 33.465907185251595, - 39.82477624892172 - ], - "pressure:branch105_seg1:J94": [ - 167652.50513951803, - 187821.7695631848, - 198026.89017111057, - 197359.58205340125, - 187393.04427543143, - 169903.01854478387, - 147292.0259884216, - 123033.60032767242, - 99850.8036211154, - 77919.68522769018, - 59313.85283837974, - 42693.63693051624, - 26974.49703079696, - 12222.854417688417, - -3211.4276900868194, - -18224.335598789017, - -32813.91880866345, - -46605.95161921184, - -57364.68866816002, - -65804.54661638157, - -71607.91944198946, - -74782.27935156741, - -76607.77241991945, - -77430.46348625037, - -77794.93531598558, - -77853.85626746924, - -77149.84464352568, - -75263.90586478978, - -71858.9908364284, - -66981.8260579505, - -61169.85846212997, - -55904.63000059265, - -52429.37183819471, - -52277.57386272657, - -56452.36070885517, - -64954.6438460121, - -76504.9591068194, - -89572.6668241831, - -101657.85416569369, - -109767.85121585605, - -112664.365756807, - -109075.22408408114, - -99128.55973783023, - -84099.21817899743, - -66853.2795733817, - -48439.06260522357, - -31242.37856804616, - -17216.902735563872, - -5557.640055105325, - 2975.627155421087, - 9489.297048468703, - 15135.652629572074, - 19680.125672970276, - 23834.281818403597, - 27021.760798681997, - 28458.217977355776, - 27833.25991187527, - 24728.43162617116, - 19355.67394701847, - 12566.143404021059, - 5519.955614098469, - -957.048216698645, - -5505.789489113115, - -8016.656867945249, - -8808.42507411655, - -8332.4716591763, - -7651.7932448257525, - -7644.829390520163, - -8733.098147111948, - -10922.260675997053, - -13532.570381656386, - -15888.653491127692, - -17113.894573509308, - -16563.99281666372, - -14307.134810764892, - -10844.116944220968, - -6954.116521996163, - -3501.267559760635, - -1409.0952589550186, - -647.8397779170967, - -981.1958899053891, - -1714.600557267265, - -1886.4550932151967, - -815.2064283991251, - 1726.7930386938049, - 5365.37616127198, - 9174.53714068184, - 12270.956120842964, - 13603.507198414027, - 13112.784471820129, - 11584.251448978925, - 10585.470301486677, - 12327.48299065897, - 19049.30622597375, - 32420.153833272212, - 53395.158211492766, - 79599.59376646063, - 110134.7499272134, - 141493.38997642597, - 167652.50513951803 - ], - "flow:J94:branch105_seg2": [ - 39.82477624892172, - 44.78577551260672, - 47.33170421594481, - 47.32012080487457, - 45.05987738087919, - 40.94039572704773, - 35.55064972782963, - 29.790962316253676, - 24.192914354448913, - 18.899762253092252, - 14.437220691036307, - 10.411674657842683, - 6.650520864110226, - 3.1175995866738457, - -0.5892187801911234, - -4.171222217247798, - -7.681465363460517, - -11.001059536368443, - -13.604005321900543, - -15.671781048830745, - -17.085078283452955, - -17.87213263485584, - -18.32837123186721, - -18.531088827177722, - -18.62493362891241, - -18.643934800550017, - -18.486824273511754, - -18.054065253749375, - -17.261183121358844, - -16.10619202239754, - -14.723355488205483, - -13.448528750753622, - -12.57659494145943, - -12.496136772484011, - -13.441482529687626, - -15.426998933634435, - -18.15686384633239, - -21.291538396507214, - -24.205648168091535, - -26.204138930991927, - -26.982086288776205, - -26.19674921346925, - -23.88821485938836, - -20.351485554892015, - -16.24015446665851, - -11.819018707773186, - -7.696538453139701, - -4.291402252944652, - -1.4587126167697628, - 0.6080786733688901, - 2.199974569837364, - 3.5522617318927834, - 4.651995298207093, - 5.664344654502797, - 6.434220862280863, - 6.806205466657686, - 6.688896302349469, - 5.97406332279681, - 4.709416949852821, - 3.103342217213781, - 1.4083652433371676, - -0.1635257719011253, - -1.2686147107393373, - -1.9004011614160004, - -2.109596164528918, - -2.0024809564396486, - -1.8387112978515288, - -1.8257487215896364, - -2.0708444863455533, - -2.582369186446437, - -3.206121245663385, - -3.780822371037516, - -4.089954661336847, - -3.981978668026665, - -3.4641165948005646, - -2.6470384928518103, - -1.7121081817596056, - -0.8793239729028178, - -0.3580571553715606, - -0.15456415264731663, - -0.22659636552586024, - -0.4032670008198185, - -0.45534120509412435, - -0.21724332536069044, - 0.3750941534871752, - 1.2340513687725718, - 2.151271468616046, - 2.911284634312716, - 3.2493096986969188, - 3.1542678209796597, - 2.7952892162740293, - 2.537081516102832, - 2.9061692172034963, - 4.441578853568796, - 7.555451659775457, - 12.475479647893001, - 18.690611216416357, - 25.989617642722582, - 33.465907185251595, - 39.82477624892172 - ], - "pressure:J94:branch105_seg2": [ - 167652.50513951803, - 187821.7695631848, - 198026.89017111057, - 197359.58205340125, - 187393.04427543143, - 169903.01854478387, - 147292.0259884216, - 123033.60032767242, - 99850.8036211154, - 77919.68522769018, - 59313.85283837974, - 42693.63693051624, - 26974.49703079696, - 12222.854417688417, - -3211.4276900868194, - -18224.335598789017, - -32813.91880866345, - -46605.95161921184, - -57364.68866816002, - -65804.54661638157, - -71607.91944198946, - -74782.27935156741, - -76607.77241991945, - -77430.46348625037, - -77794.93531598558, - -77853.85626746924, - -77149.84464352568, - -75263.90586478978, - -71858.9908364284, - -66981.8260579505, - -61169.85846212997, - -55904.63000059265, - -52429.37183819471, - -52277.57386272657, - -56452.36070885517, - -64954.6438460121, - -76504.9591068194, - -89572.6668241831, - -101657.85416569369, - -109767.85121585605, - -112664.365756807, - -109075.22408408114, - -99128.55973783023, - -84099.21817899743, - -66853.2795733817, - -48439.06260522357, - -31242.37856804616, - -17216.902735563872, - -5557.640055105325, - 2975.627155421087, - 9489.297048468703, - 15135.652629572074, - 19680.125672970276, - 23834.281818403597, - 27021.760798681997, - 28458.217977355776, - 27833.25991187527, - 24728.43162617116, - 19355.67394701847, - 12566.143404021059, - 5519.955614098469, - -957.048216698645, - -5505.789489113115, - -8016.656867945249, - -8808.42507411655, - -8332.4716591763, - -7651.7932448257525, - -7644.829390520163, - -8733.098147111948, - -10922.260675997053, - -13532.570381656386, - -15888.653491127692, - -17113.894573509308, - -16563.99281666372, - -14307.134810764892, - -10844.116944220968, - -6954.116521996163, - -3501.267559760635, - -1409.0952589550186, - -647.8397779170967, - -981.1958899053891, - -1714.600557267265, - -1886.4550932151967, - -815.2064283991251, - 1726.7930386938049, - 5365.37616127198, - 9174.53714068184, - 12270.956120842964, - 13603.507198414027, - 13112.784471820129, - 11584.251448978925, - 10585.470301486677, - 12327.48299065897, - 19049.30622597375, - 32420.153833272212, - 53395.158211492766, - 79599.59376646063, - 110134.7499272134, - 141493.38997642597, - 167652.50513951803 - ], - "flow:branch109_seg0:J95": [ - 26.64010002896541, - 30.54641887253834, - 33.01861101083234, - 33.84644436966168, - 33.11765402143328, - 31.006979585450203, - 27.842109021280542, - 24.159588215084387, - 20.358545386777795, - 16.580133339825153, - 13.201841039850747, - 10.079782598728627, - 7.132512306896226, - 4.364628322622981, - 1.5407292248269817, - -1.1940506670455366, - -3.8619763606454547, - -6.404775326742874, - -8.51663902771861, - -10.268432938699402, - -11.58069854255307, - -12.450744286556153, - -13.038204037503897, - -13.397180875063698, - -13.621262874264568, - -13.747086989128084, - -13.730769063006393, - -13.520296250299971, - -13.065145246206445, - -12.358241830672327, - -11.469929952862596, - -10.597379765417076, - -9.928597409251195, - -9.715918815829678, - -10.136672678381487, - -11.242235562517838, - -12.897170783739336, - -14.907651203997542, - -16.90782930580156, - -18.447164810911456, - -19.28322380912071, - -19.151315072175844, - -18.004920677257054, - -15.96970033359984, - -13.402107652986448, - -10.481247545169555, - -7.593825435718972, - -5.040051547076796, - -2.8035718540920924, - -1.0347943508664406, - 0.3943874860415167, - 1.6098481720051725, - 2.609504429783722, - 3.497516208734928, - 4.199876670064756, - 4.627956426530804, - 4.725484175434395, - 4.4189482162311595, - 3.723484151436749, - 2.7475902204333913, - 1.648094839787895, - 0.5590444993170418, - -0.29748628006987965, - -0.8778645567431975, - -1.1868652609198922, - -1.2673041366995652, - -1.2628566408768243, - -1.3040207525639695, - -1.4723042688479524, - -1.7936692654980153, - -2.1963489530312783, - -2.5909102442070284, - -2.845561087862066, - -2.855869410288976, - -2.6043804477438086, - -2.1393259902654633, - -1.559114353321406, - -0.9965575821547941, - -0.590235233081523, - -0.36659294673453224, - -0.3203159614541769, - -0.3643355264610148, - -0.36568772291874474, - -0.2148538102992699, - 0.14389652960366708, - 0.680740879536916, - 1.282099161611784, - 1.8218028010851621, - 2.1326586119723077, - 2.1806567431638335, - 2.04371227415456, - 1.9246487707347402, - 2.1415604796124588, - 3.0440181009144234, - 4.927489670545956, - 7.9865540984525305, - 11.987508957916853, - 16.830160298842763, - 21.97914930504997, - 26.64010002896541 - ], - "pressure:branch109_seg0:J95": [ - 155291.16201552452, - 173971.68544337375, - 185430.3354047373, - 186543.88814427066, - 179409.0561463998, - 165743.72237256353, - 147245.27697719465, - 125489.74354119119, - 104897.45561767812, - 84788.12604479611, - 66332.83416752047, - 50045.36581552279, - 33863.81462836638, - 18681.53310282885, - 3342.4960702224407, - -11810.447710495151, - -26126.61829502819, - -39913.09265897135, - -50784.520191926895, - -59321.70621149939, - -65965.29344803626, - -69988.98107304094, - -72672.50773690529, - -74378.48038078092, - -75335.77413845832, - -75855.9684872455, - -75468.49494978657, - -73857.51050504812, - -70821.95615514985, - -66571.98841184707, - -61400.054031395965, - -56769.30085059452, - -53871.01855249402, - -53624.08331124216, - -57185.432339642924, - -64549.91925748584, - -74615.9943158101, - -85886.98700711495, - -96698.86768095508, - -104063.34538211007, - -106868.18447603314, - -104367.57506432237, - -96220.44573168403, - -83215.30479309116, - -68450.64748238215, - -52384.44455292831, - -36235.49095850578, - -23137.595273943047, - -11671.139074489582, - -2496.4323906584737, - 4489.178229179678, - 11089.197325553556, - 16269.954107807, - 20638.006781571556, - 24313.625756916554, - 26038.793213884674, - 25805.270368188543, - 23410.766197610898, - 18965.116972875236, - 13047.231745677756, - 6949.0858346929535, - 1264.051078001685, - -3098.053246728439, - -5645.257784548548, - -6866.0510485510895, - -7050.738281318751, - -6940.128420659237, - -7339.0312156322125, - -8566.83559841504, - -10637.424679575615, - -12905.327618599053, - -14877.697929152082, - -15993.61593381624, - -15532.80339270298, - -13615.65725785722, - -10719.03452328116, - -7522.3097666635485, - -4466.301369629394, - -2596.7608561716766, - -1841.8360312550822, - -1790.1922869843822, - -2078.112613645554, - -1914.7724934063951, - -722.1901530857107, - 1628.6950182924857, - 4893.29032109119, - 8194.034582103877, - 10849.052636182667, - 12136.129988118992, - 11884.4503636844, - 10892.45696931765, - 10554.752739783888, - 12715.283807932434, - 19298.41194327356, - 31640.091765181725, - 51052.187258513855, - 74619.96084409999, - 101641.12961572457, - 131378.95126482612, - 155291.16201552452 - ], - "flow:J95:branch109_seg1": [ - 26.64010002896541, - 30.54641887253834, - 33.01861101083234, - 33.84644436966168, - 33.11765402143328, - 31.006979585450203, - 27.842109021280542, - 24.159588215084387, - 20.358545386777795, - 16.580133339825153, - 13.201841039850747, - 10.079782598728627, - 7.132512306896226, - 4.364628322622981, - 1.5407292248269817, - -1.1940506670455366, - -3.8619763606454547, - -6.404775326742874, - -8.51663902771861, - -10.268432938699402, - -11.58069854255307, - -12.450744286556153, - -13.038204037503897, - -13.397180875063698, - -13.621262874264568, - -13.747086989128084, - -13.730769063006393, - -13.520296250299971, - -13.065145246206445, - -12.358241830672327, - -11.469929952862596, - -10.597379765417076, - -9.928597409251195, - -9.715918815829678, - -10.136672678381487, - -11.242235562517838, - -12.897170783739336, - -14.907651203997542, - -16.90782930580156, - -18.447164810911456, - -19.28322380912071, - -19.151315072175844, - -18.004920677257054, - -15.96970033359984, - -13.402107652986448, - -10.481247545169555, - -7.593825435718972, - -5.040051547076796, - -2.8035718540920924, - -1.0347943508664406, - 0.3943874860415167, - 1.6098481720051725, - 2.609504429783722, - 3.497516208734928, - 4.199876670064756, - 4.627956426530804, - 4.725484175434395, - 4.4189482162311595, - 3.723484151436749, - 2.7475902204333913, - 1.648094839787895, - 0.5590444993170418, - -0.29748628006987965, - -0.8778645567431975, - -1.1868652609198922, - -1.2673041366995652, - -1.2628566408768243, - -1.3040207525639695, - -1.4723042688479524, - -1.7936692654980153, - -2.1963489530312783, - -2.5909102442070284, - -2.845561087862066, - -2.855869410288976, - -2.6043804477438086, - -2.1393259902654633, - -1.559114353321406, - -0.9965575821547941, - -0.590235233081523, - -0.36659294673453224, - -0.3203159614541769, - -0.3643355264610148, - -0.36568772291874474, - -0.2148538102992699, - 0.14389652960366708, - 0.680740879536916, - 1.282099161611784, - 1.8218028010851621, - 2.1326586119723077, - 2.1806567431638335, - 2.04371227415456, - 1.9246487707347402, - 2.1415604796124588, - 3.0440181009144234, - 4.927489670545956, - 7.9865540984525305, - 11.987508957916853, - 16.830160298842763, - 21.97914930504997, - 26.64010002896541 - ], - "pressure:J95:branch109_seg1": [ - 155291.16201552452, - 173971.68544337375, - 185430.3354047373, - 186543.88814427066, - 179409.0561463998, - 165743.72237256353, - 147245.27697719465, - 125489.74354119119, - 104897.45561767812, - 84788.12604479611, - 66332.83416752047, - 50045.36581552279, - 33863.81462836638, - 18681.53310282885, - 3342.4960702224407, - -11810.447710495151, - -26126.61829502819, - -39913.09265897135, - -50784.520191926895, - -59321.70621149939, - -65965.29344803626, - -69988.98107304094, - -72672.50773690529, - -74378.48038078092, - -75335.77413845832, - -75855.9684872455, - -75468.49494978657, - -73857.51050504812, - -70821.95615514985, - -66571.98841184707, - -61400.054031395965, - -56769.30085059452, - -53871.01855249402, - -53624.08331124216, - -57185.432339642924, - -64549.91925748584, - -74615.9943158101, - -85886.98700711495, - -96698.86768095508, - -104063.34538211007, - -106868.18447603314, - -104367.57506432237, - -96220.44573168403, - -83215.30479309116, - -68450.64748238215, - -52384.44455292831, - -36235.49095850578, - -23137.595273943047, - -11671.139074489582, - -2496.4323906584737, - 4489.178229179678, - 11089.197325553556, - 16269.954107807, - 20638.006781571556, - 24313.625756916554, - 26038.793213884674, - 25805.270368188543, - 23410.766197610898, - 18965.116972875236, - 13047.231745677756, - 6949.0858346929535, - 1264.051078001685, - -3098.053246728439, - -5645.257784548548, - -6866.0510485510895, - -7050.738281318751, - -6940.128420659237, - -7339.0312156322125, - -8566.83559841504, - -10637.424679575615, - -12905.327618599053, - -14877.697929152082, - -15993.61593381624, - -15532.80339270298, - -13615.65725785722, - -10719.03452328116, - -7522.3097666635485, - -4466.301369629394, - -2596.7608561716766, - -1841.8360312550822, - -1790.1922869843822, - -2078.112613645554, - -1914.7724934063951, - -722.1901530857107, - 1628.6950182924857, - 4893.29032109119, - 8194.034582103877, - 10849.052636182667, - 12136.129988118992, - 11884.4503636844, - 10892.45696931765, - 10554.752739783888, - 12715.283807932434, - 19298.41194327356, - 31640.091765181725, - 51052.187258513855, - 74619.96084409999, - 101641.12961572457, - 131378.95126482612, - 155291.16201552452 - ], - "flow:branch109_seg1:J96": [ - 26.57798901385665, - 30.509109035302377, - 33.000073564180376, - 33.85184328253363, - 33.15019468045466, - 31.05340983702809, - 27.887004071017166, - 24.22681933875508, - 20.413903183189692, - 16.617909141338135, - 13.249112610447735, - 10.117892621519589, - 7.169225545909612, - 4.404131249089745, - 1.5687790190206865, - -1.1579211200589268, - -3.8221583053443515, - -6.381195767159666, - -8.49198803871971, - -10.248955790749893, - -11.568811308844415, - -12.440548729565768, - -13.033138063710322, - -13.39406870556811, - -13.618653741636358, - -13.74662335396914, - -13.733047646956944, - -13.526192309509618, - -13.075957325513473, - -12.371037716880391, - -11.483858070263246, - -10.608853577858653, - -9.93131854697281, - -9.710689126401286, - -10.12308315353985, - -11.22272067433278, - -12.867184414483559, - -14.881088447363771, - -16.887625191514093, - -18.432721061904637, - -19.285152304605955, - -19.165316073724835, - -18.0303547797578, - -16.000313648052643, - -13.44097306556231, - -10.523224680073852, - -7.630868239796002, - -5.074933227339215, - -2.8290373785910554, - -1.0561379428127609, - 0.3750234124754829, - 1.5926490773367221, - 2.596001031621307, - 3.4880223039840974, - 4.191538562972607, - 4.625216675087433, - 4.729721667647138, - 4.4288918063842955, - 3.7354710753043068, - 2.7655918093100857, - 1.6639764789210711, - 0.5664161995483974, - -0.28852842052729355, - -0.872444516411073, - -1.1865983908613482, - -1.2672859464009303, - -1.2623459307907892, - -1.3022568981634424, - -1.4682904430527088, - -1.7885344542157593, - -2.190790289562751, - -2.586275931166646, - -2.844507334907398, - -2.8584769144691813, - -2.610877027576906, - -2.148305670603875, - -1.5678347417340304, - -1.004190289005209, - -0.5941517132638536, - -0.3667519057659825, - -0.3192529425045472, - -0.36412581264605404, - -0.3674562472701474, - -0.21976312378533672, - 0.13718610795092634, - 0.6714024024536123, - 1.2740590891018444, - 1.8195950950248336, - 2.131588888006236, - 2.18181767438993, - 2.0459366324238935, - 1.9234251755932885, - 2.131771471854569, - 3.021470116594464, - 4.888145477198393, - 7.9351131809535795, - 11.92378176173122, - 16.75062788622539, - 21.902621586894764, - 26.57798901385665 - ], - "pressure:branch109_seg1:J96": [ - 145718.7824933763, - 166355.57377026894, - 179353.64681325646, - 183196.75350127558, - 178703.06875920232, - 166904.9941519206, - 149541.51666175533, - 129400.94333506726, - 108848.79661060403, - 88473.94235140386, - 70272.25146547609, - 53531.99184246478, - 37589.73238210593, - 22638.64959882217, - 7350.791889254009, - -7426.713762135313, - -21763.946764987704, - -35553.548531012406, - -46808.66745640283, - -56069.99815774858, - -63080.17860317462, - -67628.40110377771, - -70711.67725685416, - -72604.4167646025, - -73759.00909010545, - -74412.84423622189, - -74273.05590039183, - -73053.3852359664, - -70499.22038115916, - -66606.53552236542, - -61744.60825789042, - -57049.63818246578, - -53560.15417861675, - -52572.01095439132, - -55079.289361049414, - -61310.74390414198, - -70422.30210294809, - -81361.66928773018, - -92170.8158710034, - -100286.2539280793, - -104496.90882307939, - -103454.97901980572, - -96907.0706280117, - -85526.82252705985, - -71538.57453942552, - -55753.61873730903, - -40050.65199985458, - -26433.49455058053, - -14471.656277467186, - -5004.329180547028, - 2544.799245886375, - 9112.746257027064, - 14468.779196317648, - 19178.66282084175, - 22943.338821286572, - 25149.06261088094, - 25542.4084880832, - 23757.668673473796, - 19870.353277040238, - 14500.555981899424, - 8530.741250235687, - 2665.3916003205018, - -1884.4292604540506, - -4900.857228318452, - -6492.775588991846, - -6872.929161942278, - -6827.6870406684, - -7081.911620303115, - -8047.374707778849, - -9846.67614163969, - -12034.287317494143, - -14129.832478408332, - -15462.762046506297, - -15423.25826414016, - -13965.184041986913, - -11387.63426939835, - -8246.971584992574, - -5206.591364826353, - -3070.3003644306336, - -1946.1520310670978, - -1733.8415187905853, - -1985.9949772359544, - -1965.6529864826148, - -1085.9043113164944, - 928.3736865196319, - 3887.570910343751, - 7145.8306038932515, - 10025.035994104746, - 11620.012715596473, - 11778.090167906626, - 10990.240430381986, - 10398.689846520103, - 11741.777793256757, - 16915.30641626802, - 27455.373725687925, - 44510.43350063966, - 66433.52518935666, - 92634.4000338692, - 120815.15072159038, - 145718.7824933763 - ], - "flow:J96:branch109_seg2": [ - 26.57798901385665, - 30.509109035302377, - 33.000073564180376, - 33.85184328253363, - 33.15019468045466, - 31.05340983702809, - 27.887004071017166, - 24.22681933875508, - 20.413903183189692, - 16.617909141338135, - 13.249112610447735, - 10.117892621519589, - 7.169225545909612, - 4.404131249089745, - 1.5687790190206865, - -1.1579211200589268, - -3.8221583053443515, - -6.381195767159666, - -8.49198803871971, - -10.248955790749893, - -11.568811308844415, - -12.440548729565768, - -13.033138063710322, - -13.39406870556811, - -13.618653741636358, - -13.74662335396914, - -13.733047646956944, - -13.526192309509618, - -13.075957325513473, - -12.371037716880391, - -11.483858070263246, - -10.608853577858653, - -9.93131854697281, - -9.710689126401286, - -10.12308315353985, - -11.22272067433278, - -12.867184414483559, - -14.881088447363771, - -16.887625191514093, - -18.432721061904637, - -19.285152304605955, - -19.165316073724835, - -18.0303547797578, - -16.000313648052643, - -13.44097306556231, - -10.523224680073852, - -7.630868239796002, - -5.074933227339215, - -2.8290373785910554, - -1.0561379428127609, - 0.3750234124754829, - 1.5926490773367221, - 2.596001031621307, - 3.4880223039840974, - 4.191538562972607, - 4.625216675087433, - 4.729721667647138, - 4.4288918063842955, - 3.7354710753043068, - 2.7655918093100857, - 1.6639764789210711, - 0.5664161995483974, - -0.28852842052729355, - -0.872444516411073, - -1.1865983908613482, - -1.2672859464009303, - -1.2623459307907892, - -1.3022568981634424, - -1.4682904430527088, - -1.7885344542157593, - -2.190790289562751, - -2.586275931166646, - -2.844507334907398, - -2.8584769144691813, - -2.610877027576906, - -2.148305670603875, - -1.5678347417340304, - -1.004190289005209, - -0.5941517132638536, - -0.3667519057659825, - -0.3192529425045472, - -0.36412581264605404, - -0.3674562472701474, - -0.21976312378533672, - 0.13718610795092634, - 0.6714024024536123, - 1.2740590891018444, - 1.8195950950248336, - 2.131588888006236, - 2.18181767438993, - 2.0459366324238935, - 1.9234251755932885, - 2.131771471854569, - 3.021470116594464, - 4.888145477198393, - 7.9351131809535795, - 11.92378176173122, - 16.75062788622539, - 21.902621586894764, - 26.57798901385665 - ], - "pressure:J96:branch109_seg2": [ - 145718.7824933763, - 166355.57377026894, - 179353.64681325646, - 183196.75350127558, - 178703.06875920232, - 166904.9941519206, - 149541.51666175533, - 129400.94333506726, - 108848.79661060403, - 88473.94235140386, - 70272.25146547609, - 53531.99184246478, - 37589.73238210593, - 22638.64959882217, - 7350.791889254009, - -7426.713762135313, - -21763.946764987704, - -35553.548531012406, - -46808.66745640283, - -56069.99815774858, - -63080.17860317462, - -67628.40110377771, - -70711.67725685416, - -72604.4167646025, - -73759.00909010545, - -74412.84423622189, - -74273.05590039183, - -73053.3852359664, - -70499.22038115916, - -66606.53552236542, - -61744.60825789042, - -57049.63818246578, - -53560.15417861675, - -52572.01095439132, - -55079.289361049414, - -61310.74390414198, - -70422.30210294809, - -81361.66928773018, - -92170.8158710034, - -100286.2539280793, - -104496.90882307939, - -103454.97901980572, - -96907.0706280117, - -85526.82252705985, - -71538.57453942552, - -55753.61873730903, - -40050.65199985458, - -26433.49455058053, - -14471.656277467186, - -5004.329180547028, - 2544.799245886375, - 9112.746257027064, - 14468.779196317648, - 19178.66282084175, - 22943.338821286572, - 25149.06261088094, - 25542.4084880832, - 23757.668673473796, - 19870.353277040238, - 14500.555981899424, - 8530.741250235687, - 2665.3916003205018, - -1884.4292604540506, - -4900.857228318452, - -6492.775588991846, - -6872.929161942278, - -6827.6870406684, - -7081.911620303115, - -8047.374707778849, - -9846.67614163969, - -12034.287317494143, - -14129.832478408332, - -15462.762046506297, - -15423.25826414016, - -13965.184041986913, - -11387.63426939835, - -8246.971584992574, - -5206.591364826353, - -3070.3003644306336, - -1946.1520310670978, - -1733.8415187905853, - -1985.9949772359544, - -1965.6529864826148, - -1085.9043113164944, - 928.3736865196319, - 3887.570910343751, - 7145.8306038932515, - 10025.035994104746, - 11620.012715596473, - 11778.090167906626, - 10990.240430381986, - 10398.689846520103, - 11741.777793256757, - 16915.30641626802, - 27455.373725687925, - 44510.43350063966, - 66433.52518935666, - 92634.4000338692, - 120815.15072159038, - 145718.7824933763 - ], - "flow:branch115_seg0:J97": [ - 25.16050502378106, - 28.647541446650994, - 30.711187444184315, - 31.18126878916727, - 30.17330850607727, - 27.898090516386254, - 24.707750519443316, - 21.116059939486654, - 17.51463801454361, - 14.04225109931945, - 11.003284786477536, - 8.245566059299147, - 5.670301417240028, - 3.246733632295056, - 0.7550286373519937, - -1.6777192115099289, - -4.069726086046471, - -6.335732594263509, - -8.196828350310204, - -9.71654960267571, - -10.81382791121539, - -11.503132979378686, - -11.940357893604219, - -12.18512881275528, - -12.330381860962309, - -12.40558285865108, - -12.363060229278076, - -12.145714156060157, - -11.699661736489464, - -11.01751365336958, - -10.171060726175112, - -9.35223883753551, - -8.750058758498668, - -8.604557983789949, - -9.080062723312198, - -10.213195745514861, - -11.860886104818752, - -13.814457694600957, - -15.706738946351159, - -17.109856344524363, - -17.789962613204235, - -17.5137870524671, - -16.26647690510604, - -14.196033348860567, - -11.665484254400308, - -8.861896639291102, - -6.16663255651241, - -3.8479851267025422, - -1.8800739020085833, - -0.37901877872989115, - 0.802182944580157, - 1.7946586054664013, - 2.6093235641898156, - 3.34377065524186, - 3.9252521174509067, - 4.260854055374541, - 4.288964557121177, - 3.940088201484863, - 3.2323970365099486, - 2.272916317711619, - 1.2187704252704266, - 0.20757707107335532, - -0.5585475133956853, - -1.0424974043941764, - -1.2548004221977145, - -1.2548102582191545, - -1.1896110432727907, - -1.1889578900456559, - -1.3312319142724998, - -1.6350565156788595, - -2.0225150238011502, - -2.399174399269975, - -2.631209031201347, - -2.618939270639648, - -2.3493868959860356, - -1.8769366087666866, - -1.3048349885211041, - -0.767269699013334, - -0.3973127149718953, - -0.21818700855845624, - -0.21497051089999045, - -0.2946565166162436, - -0.32247263647991264, - -0.18975359696903277, - 0.15443835102612313, - 0.6749020201846919, - 1.2536071539193485, - 1.758813345681217, - 2.030885596736905, - 2.0400147064147207, - 1.867081208348331, - 1.7204865695004654, - 1.9154557405873467, - 2.791345596864065, - 4.625932209191277, - 7.5871230507958325, - 11.431245100730884, - 16.041979223104672, - 20.87135656696148, - 25.16050502378106 - ], - "pressure:branch115_seg0:J97": [ - 160072.39812175915, - 178867.27438970678, - 189259.23609366597, - 188997.71784020786, - 180151.01376919146, - 164600.09226606612, - 144362.6806829413, - 121333.62889159558, - 100187.93788183425, - 79834.38029489701, - 61497.64244242168, - 45647.76416128546, - 30027.575372941134, - 15365.301056320817, - 452.15519080669264, - -14574.55419657336, - -28833.573861111392, - -42193.10157370837, - -52926.134836684556, - -61275.2814815169, - -67354.34189245146, - -70919.00587563502, - -73125.32927105106, - -74412.01178608903, - -75126.18055151675, - -75452.5492715391, - -74943.08750123416, - -73234.60774448633, - -70055.73787499477, - -65593.17572446454, - -60222.076524381875, - -55457.51133481501, - -52529.82206694112, - -52522.43696677846, - -56557.61596124852, - -64542.52270537893, - -75418.4606302002, - -87338.83141116149, - -98519.00182259116, - -105969.37504951173, - -108425.70692615109, - -105143.52164411846, - -95959.11855130034, - -81996.90231339124, - -66085.31051023383, - -49033.58651451095, - -32744.37562693592, - -19541.20176163017, - -8375.407714798992, - 178.1898576990413, - 6699.306290193632, - 12629.88083468308, - 17284.98848749479, - 21408.1317449634, - 24788.49504905169, - 26249.086761391412, - 25754.546141141614, - 23004.556348239046, - 18188.476403581997, - 11883.37556228758, - 5545.3633039469505, - -236.2463760941847, - -4589.751058254102, - -6921.182181745308, - -7759.408803966546, - -7557.205425122402, - -7129.584108918246, - -7318.9094261300825, - -8482.184740740862, - -10595.224755479643, - -13006.29252123834, - -15136.924866557034, - -16239.62307074514, - -15684.621135510108, - -13573.154124482166, - -10415.04485070462, - -6935.058576890229, - -3758.7272952615276, - -1898.1482494748313, - -1229.313811697475, - -1401.565534453831, - -1915.4777339872549, - -1901.0366498824594, - -737.045313553402, - 1700.2124503543514, - 5150.06334002824, - 8616.948133724329, - 11353.630312361054, - 12628.983198878053, - 12216.718083608894, - 10961.986060358717, - 10380.112594452014, - 12466.45540936133, - 19265.850906722982, - 32225.206238343082, - 52353.03632148116, - 77048.71342135886, - 105733.14571066573, - 135759.01276130474, - 160072.39812175915 - ], - "flow:J97:branch115_seg1": [ - 25.16050502378106, - 28.647541446650994, - 30.711187444184315, - 31.18126878916727, - 30.17330850607727, - 27.898090516386254, - 24.707750519443316, - 21.116059939486654, - 17.51463801454361, - 14.04225109931945, - 11.003284786477536, - 8.245566059299147, - 5.670301417240028, - 3.246733632295056, - 0.7550286373519937, - -1.6777192115099289, - -4.069726086046471, - -6.335732594263509, - -8.196828350310204, - -9.71654960267571, - -10.81382791121539, - -11.503132979378686, - -11.940357893604219, - -12.18512881275528, - -12.330381860962309, - -12.40558285865108, - -12.363060229278076, - -12.145714156060157, - -11.699661736489464, - -11.01751365336958, - -10.171060726175112, - -9.35223883753551, - -8.750058758498668, - -8.604557983789949, - -9.080062723312198, - -10.213195745514861, - -11.860886104818752, - -13.814457694600957, - -15.706738946351159, - -17.109856344524363, - -17.789962613204235, - -17.5137870524671, - -16.26647690510604, - -14.196033348860567, - -11.665484254400308, - -8.861896639291102, - -6.16663255651241, - -3.8479851267025422, - -1.8800739020085833, - -0.37901877872989115, - 0.802182944580157, - 1.7946586054664013, - 2.6093235641898156, - 3.34377065524186, - 3.9252521174509067, - 4.260854055374541, - 4.288964557121177, - 3.940088201484863, - 3.2323970365099486, - 2.272916317711619, - 1.2187704252704266, - 0.20757707107335532, - -0.5585475133956853, - -1.0424974043941764, - -1.2548004221977145, - -1.2548102582191545, - -1.1896110432727907, - -1.1889578900456559, - -1.3312319142724998, - -1.6350565156788595, - -2.0225150238011502, - -2.399174399269975, - -2.631209031201347, - -2.618939270639648, - -2.3493868959860356, - -1.8769366087666866, - -1.3048349885211041, - -0.767269699013334, - -0.3973127149718953, - -0.21818700855845624, - -0.21497051089999045, - -0.2946565166162436, - -0.32247263647991264, - -0.18975359696903277, - 0.15443835102612313, - 0.6749020201846919, - 1.2536071539193485, - 1.758813345681217, - 2.030885596736905, - 2.0400147064147207, - 1.867081208348331, - 1.7204865695004654, - 1.9154557405873467, - 2.791345596864065, - 4.625932209191277, - 7.5871230507958325, - 11.431245100730884, - 16.041979223104672, - 20.87135656696148, - 25.16050502378106 - ], - "pressure:J97:branch115_seg1": [ - 160072.39812175915, - 178867.27438970678, - 189259.23609366597, - 188997.71784020786, - 180151.01376919146, - 164600.09226606612, - 144362.6806829413, - 121333.62889159558, - 100187.93788183425, - 79834.38029489701, - 61497.64244242168, - 45647.76416128546, - 30027.575372941134, - 15365.301056320817, - 452.15519080669264, - -14574.55419657336, - -28833.573861111392, - -42193.10157370837, - -52926.134836684556, - -61275.2814815169, - -67354.34189245146, - -70919.00587563502, - -73125.32927105106, - -74412.01178608903, - -75126.18055151675, - -75452.5492715391, - -74943.08750123416, - -73234.60774448633, - -70055.73787499477, - -65593.17572446454, - -60222.076524381875, - -55457.51133481501, - -52529.82206694112, - -52522.43696677846, - -56557.61596124852, - -64542.52270537893, - -75418.4606302002, - -87338.83141116149, - -98519.00182259116, - -105969.37504951173, - -108425.70692615109, - -105143.52164411846, - -95959.11855130034, - -81996.90231339124, - -66085.31051023383, - -49033.58651451095, - -32744.37562693592, - -19541.20176163017, - -8375.407714798992, - 178.1898576990413, - 6699.306290193632, - 12629.88083468308, - 17284.98848749479, - 21408.1317449634, - 24788.49504905169, - 26249.086761391412, - 25754.546141141614, - 23004.556348239046, - 18188.476403581997, - 11883.37556228758, - 5545.3633039469505, - -236.2463760941847, - -4589.751058254102, - -6921.182181745308, - -7759.408803966546, - -7557.205425122402, - -7129.584108918246, - -7318.9094261300825, - -8482.184740740862, - -10595.224755479643, - -13006.29252123834, - -15136.924866557034, - -16239.62307074514, - -15684.621135510108, - -13573.154124482166, - -10415.04485070462, - -6935.058576890229, - -3758.7272952615276, - -1898.1482494748313, - -1229.313811697475, - -1401.565534453831, - -1915.4777339872549, - -1901.0366498824594, - -737.045313553402, - 1700.2124503543514, - 5150.06334002824, - 8616.948133724329, - 11353.630312361054, - 12628.983198878053, - 12216.718083608894, - 10961.986060358717, - 10380.112594452014, - 12466.45540936133, - 19265.850906722982, - 32225.206238343082, - 52353.03632148116, - 77048.71342135886, - 105733.14571066573, - 135759.01276130474, - 160072.39812175915 - ], - "flow:branch115_seg1:J98": [ - 25.15171697374196, - 28.6419840499619, - 30.708967412924455, - 31.182652632182876, - 30.17841221802031, - 27.905541324985105, - 24.71586238836931, - 21.12650152288459, - 17.522762205053755, - 14.048765959936153, - 11.010673697372194, - 8.251062003545982, - 5.676018218076857, - 3.252316202397588, - 0.7593649769642234, - -1.6718982341716528, - -4.064731395593484, - -6.332534206302213, - -8.193283566740222, - -9.714062316391958, - -10.812429371466463, - -11.501969380006816, - -11.939881944202558, - -12.184807924994809, - -12.330081925089681, - -12.405608753004513, - -12.363412482057404, - -12.146612231812387, - -11.701214092264454, - -11.019512955241275, - -10.17316891115474, - -9.354008701641613, - -8.75061965291669, - -8.603734272071492, - -9.077735685236663, - -10.209777023062122, - -11.855874526518424, - -13.810363948435532, - -15.703359420760233, - -17.107898996492015, - -17.790457683945057, - -17.51627578062905, - -16.27039893327898, - -14.200706900242876, - -11.671410032116526, - -8.867917243659612, - -6.171539077603527, - -3.852661260536288, - -1.883383952373921, - -0.38173469433297963, - 0.7995394223696061, - 1.7926617275538166, - 2.607522227688878, - 3.3422721248854814, - 3.924126353039368, - 4.260559970089233, - 4.289628902988233, - 3.9417007539008875, - 3.234454817206478, - 2.275846267067976, - 1.221124286167831, - 0.20899269829031392, - -0.5571062606869726, - -1.0419492575912634, - -1.2549005261383623, - -1.2549407123983358, - -1.1896505685329173, - -1.1887308480589094, - -1.3306727182057891, - -1.634322035888292, - -2.021682122879835, - -2.3985034697616854, - -2.6311365845188095, - -2.6193527675263257, - -2.3503884887463404, - -1.878236657146969, - -1.3062197319353108, - -0.7683205856803783, - -0.3978693663537889, - -0.2182432704353984, - -0.21474734433133905, - -0.2945294972730142, - -0.32267287015441715, - -0.1905119795864266, - 0.15333599187744926, - 0.6733518373676338, - 1.2523940723326643, - 1.7583414116743967, - 2.0307115304513315, - 2.040334551857232, - 1.8675288467945292, - 1.7203389895517527, - 1.9140144970433377, - 2.7878638276143377, - 4.6203255564382815, - 7.579789943892031, - 11.422015243491801, - 16.030256092291392, - 20.861597266590568, - 25.15171697374196 - ], - "pressure:branch115_seg1:J98": [ - 157770.06931289565, - 176969.85295244196, - 187767.92208677655, - 188152.36024973908, - 179917.75853356323, - 164818.01289535026, - 144868.09149660548, - 122206.0271249646, - 101002.72177529168, - 80595.28767586521, - 62328.45384862237, - 46357.13263648021, - 30816.598317970846, - 16206.148500952513, - 1314.8327573677843, - -13571.218198672635, - -27839.472120067057, - -41221.30033425167, - -52012.4258406629, - -60505.49954773024, - -66680.02326651034, - -70351.74918939242, - -72641.62813186126, - -73962.2295542263, - -74705.7405480582, - -75059.97365953142, - -74604.69345572541, - -72986.89817033225, - -69921.25939891904, - -65551.35100194682, - -60251.20256900408, - -55468.679981628455, - -52400.86664909009, - -52204.53284545862, - -55975.6341132475, - -63691.09945342269, - -74323.17150885702, - -86187.95880499983, - -97377.71327821299, - -105024.346780341, - -107821.0159287888, - -104896.29635440827, - -96081.02683599842, - -82468.5582530251, - -66753.3427428944, - -49789.5727777073, - -33550.08989268216, - -20239.984012114823, - -8961.886294861015, - -333.6676276800603, - 6279.490377196983, - 12212.70212400147, - 16897.995464762043, - 21068.79980702808, - 24468.917826873505, - 26042.950754447873, - 25691.188991489133, - 23090.866675944846, - 18406.623698226493, - 12236.343945039642, - 5909.684510482325, - 79.69857827945903, - -4314.784535545483, - -6766.106553608038, - -7694.363521125192, - -7534.178899800049, - -7113.844890842086, - -7260.942368040197, - -8357.449871309003, - -10405.913093003273, - -12792.852429831297, - -14945.25256810159, - -16109.103253540401, - -15654.467399364696, - -13652.570658870767, - -10568.387184397465, - -7110.342681168011, - -3926.3451655350095, - -1996.807830575076, - -1244.2058549020037, - -1373.6772111304138, - -1879.7225691286496, - -1904.693489785401, - -823.4700357345098, - 1529.5185742108467, - 4899.848213612452, - 8363.83203565809, - 11158.272925954505, - 12507.048419864266, - 12194.44537493636, - 10987.119852888998, - 10340.636392778943, - 12227.245285748779, - 18679.611052875945, - 31205.788371639803, - 50797.116973118995, - 75091.11055236851, - 103469.13365222866, - 133250.43531606626, - 157770.06931289565 - ], - "flow:J98:branch115_seg2": [ - 25.15171697374196, - 28.6419840499619, - 30.708967412924455, - 31.182652632182876, - 30.17841221802031, - 27.905541324985105, - 24.71586238836931, - 21.12650152288459, - 17.522762205053755, - 14.048765959936153, - 11.010673697372194, - 8.251062003545982, - 5.676018218076857, - 3.252316202397588, - 0.7593649769642234, - -1.6718982341716528, - -4.064731395593484, - -6.332534206302213, - -8.193283566740222, - -9.714062316391958, - -10.812429371466463, - -11.501969380006816, - -11.939881944202558, - -12.184807924994809, - -12.330081925089681, - -12.405608753004513, - -12.363412482057404, - -12.146612231812387, - -11.701214092264454, - -11.019512955241275, - -10.17316891115474, - -9.354008701641613, - -8.75061965291669, - -8.603734272071492, - -9.077735685236663, - -10.209777023062122, - -11.855874526518424, - -13.810363948435532, - -15.703359420760233, - -17.107898996492015, - -17.790457683945057, - -17.51627578062905, - -16.27039893327898, - -14.200706900242876, - -11.671410032116526, - -8.867917243659612, - -6.171539077603527, - -3.852661260536288, - -1.883383952373921, - -0.38173469433297963, - 0.7995394223696061, - 1.7926617275538166, - 2.607522227688878, - 3.3422721248854814, - 3.924126353039368, - 4.260559970089233, - 4.289628902988233, - 3.9417007539008875, - 3.234454817206478, - 2.275846267067976, - 1.221124286167831, - 0.20899269829031392, - -0.5571062606869726, - -1.0419492575912634, - -1.2549005261383623, - -1.2549407123983358, - -1.1896505685329173, - -1.1887308480589094, - -1.3306727182057891, - -1.634322035888292, - -2.021682122879835, - -2.3985034697616854, - -2.6311365845188095, - -2.6193527675263257, - -2.3503884887463404, - -1.878236657146969, - -1.3062197319353108, - -0.7683205856803783, - -0.3978693663537889, - -0.2182432704353984, - -0.21474734433133905, - -0.2945294972730142, - -0.32267287015441715, - -0.1905119795864266, - 0.15333599187744926, - 0.6733518373676338, - 1.2523940723326643, - 1.7583414116743967, - 2.0307115304513315, - 2.040334551857232, - 1.8675288467945292, - 1.7203389895517527, - 1.9140144970433377, - 2.7878638276143377, - 4.6203255564382815, - 7.579789943892031, - 11.422015243491801, - 16.030256092291392, - 20.861597266590568, - 25.15171697374196 - ], - "pressure:J98:branch115_seg2": [ - 157770.06931289565, - 176969.85295244196, - 187767.92208677655, - 188152.36024973908, - 179917.75853356323, - 164818.01289535026, - 144868.09149660548, - 122206.0271249646, - 101002.72177529168, - 80595.28767586521, - 62328.45384862237, - 46357.13263648021, - 30816.598317970846, - 16206.148500952513, - 1314.8327573677843, - -13571.218198672635, - -27839.472120067057, - -41221.30033425167, - -52012.4258406629, - -60505.49954773024, - -66680.02326651034, - -70351.74918939242, - -72641.62813186126, - -73962.2295542263, - -74705.7405480582, - -75059.97365953142, - -74604.69345572541, - -72986.89817033225, - -69921.25939891904, - -65551.35100194682, - -60251.20256900408, - -55468.679981628455, - -52400.86664909009, - -52204.53284545862, - -55975.6341132475, - -63691.09945342269, - -74323.17150885702, - -86187.95880499983, - -97377.71327821299, - -105024.346780341, - -107821.0159287888, - -104896.29635440827, - -96081.02683599842, - -82468.5582530251, - -66753.3427428944, - -49789.5727777073, - -33550.08989268216, - -20239.984012114823, - -8961.886294861015, - -333.6676276800603, - 6279.490377196983, - 12212.70212400147, - 16897.995464762043, - 21068.79980702808, - 24468.917826873505, - 26042.950754447873, - 25691.188991489133, - 23090.866675944846, - 18406.623698226493, - 12236.343945039642, - 5909.684510482325, - 79.69857827945903, - -4314.784535545483, - -6766.106553608038, - -7694.363521125192, - -7534.178899800049, - -7113.844890842086, - -7260.942368040197, - -8357.449871309003, - -10405.913093003273, - -12792.852429831297, - -14945.25256810159, - -16109.103253540401, - -15654.467399364696, - -13652.570658870767, - -10568.387184397465, - -7110.342681168011, - -3926.3451655350095, - -1996.807830575076, - -1244.2058549020037, - -1373.6772111304138, - -1879.7225691286496, - -1904.693489785401, - -823.4700357345098, - 1529.5185742108467, - 4899.848213612452, - 8363.83203565809, - 11158.272925954505, - 12507.048419864266, - 12194.44537493636, - 10987.119852888998, - 10340.636392778943, - 12227.245285748779, - 18679.611052875945, - 31205.788371639803, - 50797.116973118995, - 75091.11055236851, - 103469.13365222866, - 133250.43531606626, - 157770.06931289565 - ], - "flow:branch119_seg0:J99": [ - 39.30361995458315, - 44.17113378570649, - 46.686410918504734, - 46.691058139224566, - 44.47354511266555, - 40.45054463553284, - 35.21245037921077, - 29.55523207750102, - 24.125171048080915, - 19.001004846560654, - 14.619675102396767, - 10.703562529592093, - 7.015679162558625, - 3.5321215290959476, - -0.10178693157334788, - -3.6765104396469552, - -7.169147696210139, - -10.441042005492047, - -13.063452092898665, - -15.141877474528474, - -16.57060677343216, - -17.401144679441295, - -17.892073834383442, - -18.14021837109561, - -18.282559154986668, - -18.343608214094814, - -18.229839612506428, - -17.839582658376774, - -17.088497574653196, - -15.980160508556544, - -14.645081525731454, - -13.412145399811235, - -12.582374751297563, - -12.52363552185672, - -13.468006375780003, - -15.426679004724022, - -18.13293435252572, - -21.202499127133468, - -24.05932921796574, - -26.02366266664407, - -26.7707512959443, - -25.993648097810237, - -23.728520646689415, - -20.268803908617134, - -16.222756509300595, - -11.884265589292484, - -7.856231565019317, - -4.506282760688421, - -1.7408840380636121, - 0.2941391909169865, - 1.876310934513121, - 3.217046874853698, - 4.322623018931221, - 5.343474075968354, - 6.1339288336887625, - 6.52968778642894, - 6.440367859919629, - 5.763438378898075, - 4.551548158487916, - 2.98733660017245, - 1.349808910703253, - -0.15990333088553807, - -1.2401924184755408, - -1.8466813089665495, - -2.0374602039059773, - -1.930950984677593, - -1.7715081058421485, - -1.7628676824774594, - -2.011375203363321, - -2.52135958316473, - -3.144480268954441, - -3.718327067693887, - -4.025339286955822, - -3.924497419115643, - -3.417186116919385, - -2.616207218292168, - -1.7003434831986037, - -0.8874168318146642, - -0.3810550108234673, - -0.1882875954277659, - -0.2627592578628781, - -0.4352707641937502, - -0.48393943173687665, - -0.24411888536196852, - 0.34179355394224054, - 1.1953274494765467, - 2.098967391931114, - 2.8411893575993923, - 3.181064931022267, - 3.092183718129718, - 2.7430088527400907, - 2.4977190752589786, - 2.8736221277490825, - 4.401000659864759, - 7.482538948438669, - 12.326839984898992, - 18.463031464716746, - 25.687056553583183, - 33.027893101651934, - 39.30361995458315 - ], - "pressure:branch119_seg0:J99": [ - 179414.81183911435, - 194772.88999128784, - 201273.3297161871, - 195013.62055847308, - 180471.8749595731, - 160562.71854750894, - 137434.4573343451, - 111244.01507155674, - 90143.10194426794, - 70407.33492731088, - 51983.85336182076, - 37254.78943585448, - 21585.37651295362, - 6744.04853413744, - -8176.3666207891265, - -23817.252396502186, - -38157.335033983785, - -51125.480887122685, - -60937.6814246862, - -67955.36361962595, - -72916.67484942556, - -75235.69859840667, - -76538.9222181018, - -77299.05763340894, - -77633.5371855962, - -77691.5832541609, - -76696.83345178801, - -74249.65454660151, - -70117.1945405056, - -64861.770334450004, - -58817.95552665686, - -54149.43776946947, - -52300.47203987641, - -53845.08914465409, - -60164.38364395616, - -70578.71988584028, - -83579.47147752834, - -96428.31105991197, - -107581.8627457023, - -113511.82934901642, - -113085.34244600491, - -106574.9061048417, - -93856.95322969365, - -76563.17560565256, - -58870.0022049289, - -40817.682093062576, - -24058.803090691777, - -12018.198168702429, - -1927.1192880767508, - 5595.909724121887, - 10963.773246664245, - 16701.80971119018, - 20807.747540470096, - 24416.31086621796, - 27562.091979452955, - 28025.687600067333, - 26290.411279130672, - 22223.230406166866, - 16157.4561756753, - 8690.368360424625, - 2015.0860201582532, - -3434.4030625961677, - -7348.19682421754, - -8669.691277841795, - -8587.018496046165, - -7836.791913272219, - -7205.312604005253, - -7656.89864729747, - -9369.81973471787, - -12077.37134955668, - -14736.647869512506, - -16749.873001072905, - -17379.816225084247, - -15927.280952928795, - -12844.292798167366, - -8954.366634692005, - -5224.469701029356, - -2021.492693619272, - -753.5763604790735, - -828.9446084545955, - -1445.4491745691037, - -2155.2463122524036, - -1903.534789752615, - -111.75595107327958, - 3067.857046765767, - 7207.081745640859, - 10853.15344950754, - 13187.754384189246, - 13808.8143253775, - 12492.899610006098, - 10675.763941592246, - 10434.723221076072, - 14043.015911652987, - 23648.685464689952, - 40394.03152161722, - 65260.48051458247, - 93451.20190392023, - 124728.33073568298, - 157285.53539342535, - 179414.81183911435 - ], - "flow:J99:branch119_seg1": [ - 39.30361995458315, - 44.17113378570649, - 46.686410918504734, - 46.691058139224566, - 44.47354511266555, - 40.45054463553284, - 35.21245037921077, - 29.55523207750102, - 24.125171048080915, - 19.001004846560654, - 14.619675102396767, - 10.703562529592093, - 7.015679162558625, - 3.5321215290959476, - -0.10178693157334788, - -3.6765104396469552, - -7.169147696210139, - -10.441042005492047, - -13.063452092898665, - -15.141877474528474, - -16.57060677343216, - -17.401144679441295, - -17.892073834383442, - -18.14021837109561, - -18.282559154986668, - -18.343608214094814, - -18.229839612506428, - -17.839582658376774, - -17.088497574653196, - -15.980160508556544, - -14.645081525731454, - -13.412145399811235, - -12.582374751297563, - -12.52363552185672, - -13.468006375780003, - -15.426679004724022, - -18.13293435252572, - -21.202499127133468, - -24.05932921796574, - -26.02366266664407, - -26.7707512959443, - -25.993648097810237, - -23.728520646689415, - -20.268803908617134, - -16.222756509300595, - -11.884265589292484, - -7.856231565019317, - -4.506282760688421, - -1.7408840380636121, - 0.2941391909169865, - 1.876310934513121, - 3.217046874853698, - 4.322623018931221, - 5.343474075968354, - 6.1339288336887625, - 6.52968778642894, - 6.440367859919629, - 5.763438378898075, - 4.551548158487916, - 2.98733660017245, - 1.349808910703253, - -0.15990333088553807, - -1.2401924184755408, - -1.8466813089665495, - -2.0374602039059773, - -1.930950984677593, - -1.7715081058421485, - -1.7628676824774594, - -2.011375203363321, - -2.52135958316473, - -3.144480268954441, - -3.718327067693887, - -4.025339286955822, - -3.924497419115643, - -3.417186116919385, - -2.616207218292168, - -1.7003434831986037, - -0.8874168318146642, - -0.3810550108234673, - -0.1882875954277659, - -0.2627592578628781, - -0.4352707641937502, - -0.48393943173687665, - -0.24411888536196852, - 0.34179355394224054, - 1.1953274494765467, - 2.098967391931114, - 2.8411893575993923, - 3.181064931022267, - 3.092183718129718, - 2.7430088527400907, - 2.4977190752589786, - 2.8736221277490825, - 4.401000659864759, - 7.482538948438669, - 12.326839984898992, - 18.463031464716746, - 25.687056553583183, - 33.027893101651934, - 39.30361995458315 - ], - "pressure:J99:branch119_seg1": [ - 179414.81183911435, - 194772.88999128784, - 201273.3297161871, - 195013.62055847308, - 180471.8749595731, - 160562.71854750894, - 137434.4573343451, - 111244.01507155674, - 90143.10194426794, - 70407.33492731088, - 51983.85336182076, - 37254.78943585448, - 21585.37651295362, - 6744.04853413744, - -8176.3666207891265, - -23817.252396502186, - -38157.335033983785, - -51125.480887122685, - -60937.6814246862, - -67955.36361962595, - -72916.67484942556, - -75235.69859840667, - -76538.9222181018, - -77299.05763340894, - -77633.5371855962, - -77691.5832541609, - -76696.83345178801, - -74249.65454660151, - -70117.1945405056, - -64861.770334450004, - -58817.95552665686, - -54149.43776946947, - -52300.47203987641, - -53845.08914465409, - -60164.38364395616, - -70578.71988584028, - -83579.47147752834, - -96428.31105991197, - -107581.8627457023, - -113511.82934901642, - -113085.34244600491, - -106574.9061048417, - -93856.95322969365, - -76563.17560565256, - -58870.0022049289, - -40817.682093062576, - -24058.803090691777, - -12018.198168702429, - -1927.1192880767508, - 5595.909724121887, - 10963.773246664245, - 16701.80971119018, - 20807.747540470096, - 24416.31086621796, - 27562.091979452955, - 28025.687600067333, - 26290.411279130672, - 22223.230406166866, - 16157.4561756753, - 8690.368360424625, - 2015.0860201582532, - -3434.4030625961677, - -7348.19682421754, - -8669.691277841795, - -8587.018496046165, - -7836.791913272219, - -7205.312604005253, - -7656.89864729747, - -9369.81973471787, - -12077.37134955668, - -14736.647869512506, - -16749.873001072905, - -17379.816225084247, - -15927.280952928795, - -12844.292798167366, - -8954.366634692005, - -5224.469701029356, - -2021.492693619272, - -753.5763604790735, - -828.9446084545955, - -1445.4491745691037, - -2155.2463122524036, - -1903.534789752615, - -111.75595107327958, - 3067.857046765767, - 7207.081745640859, - 10853.15344950754, - 13187.754384189246, - 13808.8143253775, - 12492.899610006098, - 10675.763941592246, - 10434.723221076072, - 14043.015911652987, - 23648.685464689952, - 40394.03152161722, - 65260.48051458247, - 93451.20190392023, - 124728.33073568298, - 157285.53539342535, - 179414.81183911435 - ], - "flow:branch119_seg1:J100": [ - 39.23772095379957, - 44.132045084764385, - 46.68438364738359, - 46.71641781107393, - 44.53286735896525, - 40.52514229550098, - 35.28325849739126, - 29.65708336913303, - 24.185762654430707, - 19.04188449369421, - 14.681581641186627, - 10.741266860288444, - 7.058420049392444, - 3.575688843535091, - -0.08052554301293988, - -3.6285554660991015, - -7.12678199403801, - -10.43293725289762, - -13.037948145321636, - -15.124341588288978, - -16.566867629091185, - -17.39279888611396, - -17.891032943620797, - -18.139396522963942, - -18.27952862243232, - -18.34498297347879, - -18.23444147851189, - -17.849135002992664, - -17.104711063053628, - -15.999137190011984, - -14.663745450115744, - -13.425293989925837, - -12.582189853212597, - -12.510110923999619, - -13.442325440605904, - -15.396634524457149, - -18.085086717473995, - -21.172291846752078, - -24.04006739101017, - -26.014278449983717, - -26.786681518218447, - -26.02337807154561, - -23.767415911330044, - -20.301556850277606, - -16.272938008204125, - -11.937364977227096, - -7.88728013725035, - -4.544122558479197, - -1.76302996874149, - 0.27661234492107384, - 1.851725294952656, - 3.2016119250455937, - 4.310044853939219, - 5.330863644529098, - 6.125778194712181, - 6.530545176106594, - 6.449895946813217, - 5.781554400524339, - 4.570197472282038, - 3.0157621089012223, - 1.3675992099433183, - -0.15628236051167416, - -1.22970250558176, - -1.844991391436151, - -2.042096116392577, - -1.9328213366433211, - -1.7711609627407703, - -1.7599872786224515, - -2.0055575812823654, - -2.5157959423442184, - -3.137811086206866, - -3.7125605810297904, - -4.027480948377173, - -3.930094740542474, - -3.427539448621927, - -2.6285994641769364, - -1.713132583230522, - -0.8955809692797849, - -0.3832882677427864, - -0.1871709605239582, - -0.25942813774614587, - -0.43443609293244956, - -0.4871197433808512, - -0.2528260470980869, - 0.3314962932722954, - 1.1808286910939894, - 2.0901285399832883, - 2.842699886676189, - 3.1817369070443093, - 3.096259988398237, - 2.7466108309934545, - 2.4942191006515575, - 2.85684988152306, - 4.365611796324417, - 7.426640888161032, - 12.267281834673627, - 18.384538190151506, - 25.568450662414957, - 32.955999617514195, - 39.23772095379957 - ], - "pressure:branch119_seg1:J100": [ - 167265.31193359056, - 185604.38767613596, - 194660.01256875382, - 192479.88359076288, - 181541.15230018148, - 163903.16590237935, - 141875.26254402936, - 117728.59449444592, - 95751.11595551025, - 75203.71174831424, - 57167.44497849794, - 41525.85745536245, - 26270.59975417818, - 11793.740619666085, - -3154.6696212211023, - -18026.58253834967, - -32379.762783709524, - -45722.80733814224, - -56029.046976690785, - -64022.940864636876, - -69595.37095289066, - -72576.85524035516, - -74359.24386906916, - -75280.51590115945, - -75765.53292627551, - -75967.24718031767, - -75322.88565157379, - -73440.5954445167, - -70011.845986727, - -65235.92229319088, - -59564.33757483979, - -54640.15868757218, - -51762.57896452234, - -52110.10709785674, - -56816.59304314488, - -65679.93222030236, - -77380.95167741005, - -90126.28424073228, - -101655.78331202838, - -108981.60384680539, - -110868.3034774813, - -106536.66876909763, - -96043.28936132944, - -80711.21585121079, - -63831.96507387787, - -45979.01634793724, - -29299.581057039035, - -16248.12669411686, - -5311.065694333338, - 2734.118829579446, - 8767.539716166633, - 14397.074150852312, - 18767.4621015135, - 22731.708683954774, - 25961.11042789828, - 27193.65463264582, - 26363.285074049036, - 23161.150441391906, - 17804.5620868115, - 11057.363908232463, - 4313.497527416715, - -1643.4395095741997, - -5859.226752626949, - -7958.688618532206, - -8445.022210572302, - -7884.6147449346345, - -7230.7188202466805, - -7362.417191449328, - -8622.974603173543, - -10939.717036328168, - -13521.16739410344, - -15750.345048674153, - -16810.828783176257, - -16029.938382340742, - -13606.461486242275, - -10114.373966818259, - -6381.141889449325, - -3076.5429107774034, - -1277.411395845234, - -791.8814665756612, - -1195.9384474440092, - -1913.2569685218712, - -1964.309035788752, - -712.1897689039987, - 1963.20843739626, - 5672.067689261219, - 9379.65657174696, - 12197.351668901107, - 13307.431138466733, - 12611.596763195288, - 11036.4976512939, - 10282.771424019706, - 12524.196156473261, - 19925.483509620524, - 33968.27390278474, - 55631.52458319747, - 81761.0357942269, - 111757.56726090168, - 142939.99393506176, - 167265.31193359056 - ], - "flow:J100:branch119_seg2": [ - 39.23772095379957, - 44.132045084764385, - 46.68438364738359, - 46.71641781107393, - 44.53286735896525, - 40.52514229550098, - 35.28325849739126, - 29.65708336913303, - 24.185762654430707, - 19.04188449369421, - 14.681581641186627, - 10.741266860288444, - 7.058420049392444, - 3.575688843535091, - -0.08052554301293988, - -3.6285554660991015, - -7.12678199403801, - -10.43293725289762, - -13.037948145321636, - -15.124341588288978, - -16.566867629091185, - -17.39279888611396, - -17.891032943620797, - -18.139396522963942, - -18.27952862243232, - -18.34498297347879, - -18.23444147851189, - -17.849135002992664, - -17.104711063053628, - -15.999137190011984, - -14.663745450115744, - -13.425293989925837, - -12.582189853212597, - -12.510110923999619, - -13.442325440605904, - -15.396634524457149, - -18.085086717473995, - -21.172291846752078, - -24.04006739101017, - -26.014278449983717, - -26.786681518218447, - -26.02337807154561, - -23.767415911330044, - -20.301556850277606, - -16.272938008204125, - -11.937364977227096, - -7.88728013725035, - -4.544122558479197, - -1.76302996874149, - 0.27661234492107384, - 1.851725294952656, - 3.2016119250455937, - 4.310044853939219, - 5.330863644529098, - 6.125778194712181, - 6.530545176106594, - 6.449895946813217, - 5.781554400524339, - 4.570197472282038, - 3.0157621089012223, - 1.3675992099433183, - -0.15628236051167416, - -1.22970250558176, - -1.844991391436151, - -2.042096116392577, - -1.9328213366433211, - -1.7711609627407703, - -1.7599872786224515, - -2.0055575812823654, - -2.5157959423442184, - -3.137811086206866, - -3.7125605810297904, - -4.027480948377173, - -3.930094740542474, - -3.427539448621927, - -2.6285994641769364, - -1.713132583230522, - -0.8955809692797849, - -0.3832882677427864, - -0.1871709605239582, - -0.25942813774614587, - -0.43443609293244956, - -0.4871197433808512, - -0.2528260470980869, - 0.3314962932722954, - 1.1808286910939894, - 2.0901285399832883, - 2.842699886676189, - 3.1817369070443093, - 3.096259988398237, - 2.7466108309934545, - 2.4942191006515575, - 2.85684988152306, - 4.365611796324417, - 7.426640888161032, - 12.267281834673627, - 18.384538190151506, - 25.568450662414957, - 32.955999617514195, - 39.23772095379957 - ], - "pressure:J100:branch119_seg2": [ - 167265.31193359056, - 185604.38767613596, - 194660.01256875382, - 192479.88359076288, - 181541.15230018148, - 163903.16590237935, - 141875.26254402936, - 117728.59449444592, - 95751.11595551025, - 75203.71174831424, - 57167.44497849794, - 41525.85745536245, - 26270.59975417818, - 11793.740619666085, - -3154.6696212211023, - -18026.58253834967, - -32379.762783709524, - -45722.80733814224, - -56029.046976690785, - -64022.940864636876, - -69595.37095289066, - -72576.85524035516, - -74359.24386906916, - -75280.51590115945, - -75765.53292627551, - -75967.24718031767, - -75322.88565157379, - -73440.5954445167, - -70011.845986727, - -65235.92229319088, - -59564.33757483979, - -54640.15868757218, - -51762.57896452234, - -52110.10709785674, - -56816.59304314488, - -65679.93222030236, - -77380.95167741005, - -90126.28424073228, - -101655.78331202838, - -108981.60384680539, - -110868.3034774813, - -106536.66876909763, - -96043.28936132944, - -80711.21585121079, - -63831.96507387787, - -45979.01634793724, - -29299.581057039035, - -16248.12669411686, - -5311.065694333338, - 2734.118829579446, - 8767.539716166633, - 14397.074150852312, - 18767.4621015135, - 22731.708683954774, - 25961.11042789828, - 27193.65463264582, - 26363.285074049036, - 23161.150441391906, - 17804.5620868115, - 11057.363908232463, - 4313.497527416715, - -1643.4395095741997, - -5859.226752626949, - -7958.688618532206, - -8445.022210572302, - -7884.6147449346345, - -7230.7188202466805, - -7362.417191449328, - -8622.974603173543, - -10939.717036328168, - -13521.16739410344, - -15750.345048674153, - -16810.828783176257, - -16029.938382340742, - -13606.461486242275, - -10114.373966818259, - -6381.141889449325, - -3076.5429107774034, - -1277.411395845234, - -791.8814665756612, - -1195.9384474440092, - -1913.2569685218712, - -1964.309035788752, - -712.1897689039987, - 1963.20843739626, - 5672.067689261219, - 9379.65657174696, - 12197.351668901107, - 13307.431138466733, - 12611.596763195288, - 11036.4976512939, - 10282.771424019706, - 12524.196156473261, - 19925.483509620524, - 33968.27390278474, - 55631.52458319747, - 81761.0357942269, - 111757.56726090168, - 142939.99393506176, - 167265.31193359056 - ], - "flow:branch123_seg0:J101": [ - 32.70981613057024, - 36.27734241304019, - 37.846693545538464, - 37.309264299360194, - 35.05629017083543, - 31.453996642481297, - 26.98369915865702, - 22.303193087858435, - 17.98870239671088, - 13.898190609994018, - 10.480193624863006, - 7.44053721685732, - 4.4991148615797325, - 1.7579011761356498, - -1.1600719266787007, - -4.001174164572409, - -6.717378757718301, - -9.278120754190343, - -11.226930496357562, - -12.727769199656732, - -13.72922684266562, - -14.244312392199065, - -14.534021071488251, - -14.658302613951294, - -14.712152980223987, - -14.710427799281046, - -14.5523369686667, - -14.153349786186217, - -13.454845647306438, - -12.479883690431874, - -11.349184182418718, - -10.372192285929964, - -9.786224307989906, - -9.883043831707777, - -10.83094737664854, - -12.598240935270766, - -14.906353814362786, - -17.41657142739345, - -19.674730447810447, - -21.068670218798527, - -21.425024810335998, - -20.51963294145273, - -18.420911112089144, - -15.404724199732382, - -12.04024899236241, - -8.515585337087769, - -5.30533929297216, - -2.741407180337099, - -0.6323530887477399, - 0.8844346439456486, - 2.049525939439315, - 3.0763634484932245, - 3.9044416849406947, - 4.671881915781914, - 5.239966325407357, - 5.446256202611479, - 5.248598480876347, - 4.567282169582946, - 3.469032060254867, - 2.1215512963892493, - 0.7880405783312888, - -0.41368771599604076, - -1.2144531483416532, - -1.6108228570733818, - -1.6970315587776472, - -1.5648556132035811, - -1.4275007570071185, - -1.4488138635436307, - -1.6927281001268246, - -2.1438405108963607, - -2.656083789619813, - -3.0936535540323242, - -3.2848231718029597, - -3.120088188667726, - -2.629906675231771, - -1.9294789505734733, - -1.1741979078632319, - -0.5365839101685111, - -0.18660379625053786, - -0.0922889510894095, - -0.19630234588074677, - -0.3488654622155135, - -0.3620636884125945, - -0.11270470702469182, - 0.42026750920276934, - 1.1530417738253793, - 1.87539869325559, - 2.4331806160266636, - 2.6267087594179372, - 2.4684959877352064, - 2.142620092523476, - 1.974414260048411, - 2.40316553336691, - 3.8545402363405694, - 6.620342015104998, - 10.849075670662932, - 16.018197420877108, - 21.971586005740495, - 27.908060428627536, - 32.70981613057024 - ], - "pressure:branch123_seg0:J101": [ - 187133.5697505713, - 201896.48086512528, - 207617.74392932068, - 200131.3973993418, - 184047.85184981464, - 162778.722168528, - 138293.15192179364, - 111082.84640540207, - 89460.05524402857, - 68800.00984235127, - 50055.42438043182, - 35097.16498908931, - 18812.41402864183, - 3751.047727666282, - -11609.835933561724, - -27655.416772947407, - -41842.507238298014, - -55177.30525383265, - -65060.87406365885, - -71618.2067798838, - -76455.57354133052, - -78504.40257069963, - -79489.47249794006, - -80067.55266241102, - -80147.75007786133, - -79970.2973880767, - -78717.789300505, - -75908.70541294166, - -71367.81791470527, - -65732.40628619774, - -59346.06203264439, - -54562.76213685466, - -52806.0431406653, - -54722.81321086617, - -61534.32501467649, - -72616.17216039228, - -86180.06314870456, - -99327.62870237774, - -110805.89547187155, - -116502.58922081137, - -115596.28265167255, - -108465.78281968241, - -94902.58677760472, - -76684.16884455066, - -58041.97728175955, - -39610.231750424195, - -22250.088762345255, - -9887.521891433074, - 189.02782983604544, - 7877.545029134754, - 13150.114432965975, - 18870.62249652959, - 23031.952513255008, - 26515.709692549808, - 29456.814357235246, - 29641.18658194991, - 27503.98248997719, - 22960.62318437261, - 16420.374463026903, - 8505.491764275572, - 1650.7576798942027, - -4046.1521956295214, - -7972.70840609899, - -9140.395773921808, - -9038.427073034743, - -8226.823233052843, - -7565.007767403846, - -8074.074330251181, - -9897.351652094994, - -12715.402259677052, - -15472.540302401896, - -17425.426591912437, - -17951.933786937814, - -16307.392644988931, - -12952.493927380445, - -8826.133513614424, - -4956.374861000435, - -1698.225534798538, - -472.50558827584877, - -661.5235147787564, - -1388.458865087844, - -2100.1729051225598, - -1776.2312181716322, - 181.9111257283619, - 3549.644174710343, - 7873.913252702917, - 11537.220172663689, - 13865.159809734127, - 14353.32593431064, - 12818.70572260376, - 10922.831073356865, - 10763.228730466639, - 14750.880023795138, - 25049.836679325275, - 42809.34958140651, - 68957.82547535558, - 98703.02869328922, - 130879.65635623725, - 164372.72598490783, - 187133.5697505713 - ], - "flow:J101:branch123_seg1": [ - 32.70981613057024, - 36.27734241304019, - 37.846693545538464, - 37.309264299360194, - 35.05629017083543, - 31.453996642481297, - 26.98369915865702, - 22.303193087858435, - 17.98870239671088, - 13.898190609994018, - 10.480193624863006, - 7.44053721685732, - 4.4991148615797325, - 1.7579011761356498, - -1.1600719266787007, - -4.001174164572409, - -6.717378757718301, - -9.278120754190343, - -11.226930496357562, - -12.727769199656732, - -13.72922684266562, - -14.244312392199065, - -14.534021071488251, - -14.658302613951294, - -14.712152980223987, - -14.710427799281046, - -14.5523369686667, - -14.153349786186217, - -13.454845647306438, - -12.479883690431874, - -11.349184182418718, - -10.372192285929964, - -9.786224307989906, - -9.883043831707777, - -10.83094737664854, - -12.598240935270766, - -14.906353814362786, - -17.41657142739345, - -19.674730447810447, - -21.068670218798527, - -21.425024810335998, - -20.51963294145273, - -18.420911112089144, - -15.404724199732382, - -12.04024899236241, - -8.515585337087769, - -5.30533929297216, - -2.741407180337099, - -0.6323530887477399, - 0.8844346439456486, - 2.049525939439315, - 3.0763634484932245, - 3.9044416849406947, - 4.671881915781914, - 5.239966325407357, - 5.446256202611479, - 5.248598480876347, - 4.567282169582946, - 3.469032060254867, - 2.1215512963892493, - 0.7880405783312888, - -0.41368771599604076, - -1.2144531483416532, - -1.6108228570733818, - -1.6970315587776472, - -1.5648556132035811, - -1.4275007570071185, - -1.4488138635436307, - -1.6927281001268246, - -2.1438405108963607, - -2.656083789619813, - -3.0936535540323242, - -3.2848231718029597, - -3.120088188667726, - -2.629906675231771, - -1.9294789505734733, - -1.1741979078632319, - -0.5365839101685111, - -0.18660379625053786, - -0.0922889510894095, - -0.19630234588074677, - -0.3488654622155135, - -0.3620636884125945, - -0.11270470702469182, - 0.42026750920276934, - 1.1530417738253793, - 1.87539869325559, - 2.4331806160266636, - 2.6267087594179372, - 2.4684959877352064, - 2.142620092523476, - 1.974414260048411, - 2.40316553336691, - 3.8545402363405694, - 6.620342015104998, - 10.849075670662932, - 16.018197420877108, - 21.971586005740495, - 27.908060428627536, - 32.70981613057024 - ], - "pressure:J101:branch123_seg1": [ - 187133.5697505713, - 201896.48086512528, - 207617.74392932068, - 200131.3973993418, - 184047.85184981464, - 162778.722168528, - 138293.15192179364, - 111082.84640540207, - 89460.05524402857, - 68800.00984235127, - 50055.42438043182, - 35097.16498908931, - 18812.41402864183, - 3751.047727666282, - -11609.835933561724, - -27655.416772947407, - -41842.507238298014, - -55177.30525383265, - -65060.87406365885, - -71618.2067798838, - -76455.57354133052, - -78504.40257069963, - -79489.47249794006, - -80067.55266241102, - -80147.75007786133, - -79970.2973880767, - -78717.789300505, - -75908.70541294166, - -71367.81791470527, - -65732.40628619774, - -59346.06203264439, - -54562.76213685466, - -52806.0431406653, - -54722.81321086617, - -61534.32501467649, - -72616.17216039228, - -86180.06314870456, - -99327.62870237774, - -110805.89547187155, - -116502.58922081137, - -115596.28265167255, - -108465.78281968241, - -94902.58677760472, - -76684.16884455066, - -58041.97728175955, - -39610.231750424195, - -22250.088762345255, - -9887.521891433074, - 189.02782983604544, - 7877.545029134754, - 13150.114432965975, - 18870.62249652959, - 23031.952513255008, - 26515.709692549808, - 29456.814357235246, - 29641.18658194991, - 27503.98248997719, - 22960.62318437261, - 16420.374463026903, - 8505.491764275572, - 1650.7576798942027, - -4046.1521956295214, - -7972.70840609899, - -9140.395773921808, - -9038.427073034743, - -8226.823233052843, - -7565.007767403846, - -8074.074330251181, - -9897.351652094994, - -12715.402259677052, - -15472.540302401896, - -17425.426591912437, - -17951.933786937814, - -16307.392644988931, - -12952.493927380445, - -8826.133513614424, - -4956.374861000435, - -1698.225534798538, - -472.50558827584877, - -661.5235147787564, - -1388.458865087844, - -2100.1729051225598, - -1776.2312181716322, - 181.9111257283619, - 3549.644174710343, - 7873.913252702917, - 11537.220172663689, - 13865.159809734127, - 14353.32593431064, - 12818.70572260376, - 10922.831073356865, - 10763.228730466639, - 14750.880023795138, - 25049.836679325275, - 42809.34958140651, - 68957.82547535558, - 98703.02869328922, - 130879.65635623725, - 164372.72598490783, - 187133.5697505713 - ], - "flow:branch123_seg1:J102": [ - 32.62831070128147, - 36.24319706546321, - 37.84331288144044, - 37.337588702249285, - 35.126366776126474, - 31.550541892920112, - 27.074450238776894, - 22.431500412510374, - 18.077824128314237, - 13.956022873589783, - 10.555212341328948, - 7.491618350389469, - 4.5537083442878314, - 1.8089116938930794, - -1.1317880002783527, - -3.9520112395776925, - -6.676359458247653, - -9.270932614844575, - -11.206270100463694, - -12.715228394208554, - -13.728877002602998, - -14.237920061301216, - -14.5351986948352, - -14.658376362170927, - -14.710151573361346, - -14.712625906508046, - -14.557954507403865, - -14.165061794407087, - -13.474567601588657, - -12.503805897901431, - -11.372219790488767, - -10.39085954451451, - -9.787557704831116, - -9.865545704300551, - -10.79923686938469, - -12.558037794027078, - -14.847475363672062, - -17.378546156219393, - -19.65057021824264, - -21.061431516240056, - -21.44629539018083, - -20.558596881833576, - -18.464847655898915, - -15.439469788603864, - -12.091104826641917, - -8.565429694216872, - -5.334788786264411, - -2.78069358112161, - -0.6509683754699437, - 0.8650692677563918, - 2.0234746937041135, - 3.0593563606126764, - 3.8856451834715555, - 4.658168425111387, - 5.2302792172927255, - 5.4457803296586285, - 5.260396642146731, - 4.590797160486449, - 3.4933417686620007, - 2.158413802941056, - 0.8122055703255708, - -0.40632956785647845, - -1.2049650293963157, - -1.6090867450935866, - -1.7027563187537371, - -1.567667624716091, - -1.4269263052644658, - -1.4450708291625871, - -1.686172628964117, - -2.1383367713619092, - -2.6496952953838635, - -3.089341381146483, - -3.287888830556655, - -3.126623047785696, - -2.6415465218901812, - -1.9436279334797355, - -1.1888054599964812, - -0.5460040738054488, - -0.19126545474519713, - -0.09105227324871883, - -0.19205523994977752, - -0.3480239634036949, - -0.36586529508417914, - -0.12382309095307835, - 0.40712300746313873, - 1.1342968052747198, - 1.8643066564778177, - 2.4341550657356503, - 2.6299460117630127, - 2.473893436707235, - 2.1466578717165663, - 1.9692735558199863, - 2.382078407217794, - 3.8133952194640717, - 6.559328030876591, - 10.788354091298789, - 15.936194690827959, - 21.85492262564447, - 27.83271965663213, - 32.62831070128147 - ], - "pressure:branch123_seg1:J102": [ - 174744.71198295767, - 193283.61060534458, - 201372.2873450937, - 198026.99030319156, - 185714.56332410927, - 166460.17773674388, - 142648.91721965183, - 117712.40496090318, - 94851.24119202359, - 73185.41016789617, - 55085.10002400007, - 39036.58778406991, - 23387.01613047623, - 8784.147879615923, - -6756.449058797042, - -21832.322703822112, - -36223.458306583925, - -49908.81512287117, - -60100.86468994122, - -67893.68851261429, - -73190.69062089783, - -75796.40659414965, - -77292.29417586928, - -77935.59082225968, - -78184.21696036731, - -78173.89761360823, - -77297.82606069952, - -75120.53339635697, - -71346.24710744618, - -66141.17018184933, - -60096.38059321838, - -54957.76930700997, - -51958.532847972914, - -52574.86929216138, - -57773.127224119824, - -67328.43025312533, - -79646.609268763, - -93021.61772943195, - -104982.34716139013, - -112217.72364309033, - -113860.4436261085, - -108833.06325628735, - -97406.80246110703, - -81081.0803367138, - -63226.065404024615, - -44585.912068219266, - -27434.7932761881, - -14069.551016677338, - -2950.2376124358557, - 5032.5005465176755, - 11047.178438507735, - 16568.927511766036, - 20914.707025985263, - 24923.574195636254, - 27942.447548490407, - 28953.815566866786, - 27815.22997632317, - 24134.13893527781, - 18221.455312503193, - 11037.817556327675, - 3942.490202600252, - -2410.5009655727267, - -6598.650300487078, - -8607.15506037179, - -9022.586691059705, - -8293.310844874835, - -7558.623106782211, - -7710.825471302617, - -9062.59909026997, - -11516.12878144817, - -14231.19750492528, - -16508.539734369224, - -17489.627766762173, - -16527.237737975673, - -13850.858812579592, - -10095.404788868018, - -6115.448730933079, - -2729.4483257192483, - -939.7477486142343, - -506.85320755597, - -1067.4800081594722, - -1878.5463815354447, - -1916.4412064868732, - -543.076886266738, - 2345.2176571781415, - 6260.464533018558, - 10101.049256091466, - 13026.77279337942, - 13989.029046485064, - 13065.429927953539, - 11309.43932288665, - 10475.096306848509, - 12906.112103559935, - 20856.829513348155, - 35840.103207744985, - 58755.50987839874, - 86356.65490911633, - 117805.87628610636, - 149723.7972190609, - 174744.71198295767 - ], - "flow:J102:branch123_seg2": [ - 32.62831070128147, - 36.24319706546321, - 37.84331288144044, - 37.337588702249285, - 35.126366776126474, - 31.550541892920112, - 27.074450238776894, - 22.431500412510374, - 18.077824128314237, - 13.956022873589783, - 10.555212341328948, - 7.491618350389469, - 4.5537083442878314, - 1.8089116938930794, - -1.1317880002783527, - -3.9520112395776925, - -6.676359458247653, - -9.270932614844575, - -11.206270100463694, - -12.715228394208554, - -13.728877002602998, - -14.237920061301216, - -14.5351986948352, - -14.658376362170927, - -14.710151573361346, - -14.712625906508046, - -14.557954507403865, - -14.165061794407087, - -13.474567601588657, - -12.503805897901431, - -11.372219790488767, - -10.39085954451451, - -9.787557704831116, - -9.865545704300551, - -10.79923686938469, - -12.558037794027078, - -14.847475363672062, - -17.378546156219393, - -19.65057021824264, - -21.061431516240056, - -21.44629539018083, - -20.558596881833576, - -18.464847655898915, - -15.439469788603864, - -12.091104826641917, - -8.565429694216872, - -5.334788786264411, - -2.78069358112161, - -0.6509683754699437, - 0.8650692677563918, - 2.0234746937041135, - 3.0593563606126764, - 3.8856451834715555, - 4.658168425111387, - 5.2302792172927255, - 5.4457803296586285, - 5.260396642146731, - 4.590797160486449, - 3.4933417686620007, - 2.158413802941056, - 0.8122055703255708, - -0.40632956785647845, - -1.2049650293963157, - -1.6090867450935866, - -1.7027563187537371, - -1.567667624716091, - -1.4269263052644658, - -1.4450708291625871, - -1.686172628964117, - -2.1383367713619092, - -2.6496952953838635, - -3.089341381146483, - -3.287888830556655, - -3.126623047785696, - -2.6415465218901812, - -1.9436279334797355, - -1.1888054599964812, - -0.5460040738054488, - -0.19126545474519713, - -0.09105227324871883, - -0.19205523994977752, - -0.3480239634036949, - -0.36586529508417914, - -0.12382309095307835, - 0.40712300746313873, - 1.1342968052747198, - 1.8643066564778177, - 2.4341550657356503, - 2.6299460117630127, - 2.473893436707235, - 2.1466578717165663, - 1.9692735558199863, - 2.382078407217794, - 3.8133952194640717, - 6.559328030876591, - 10.788354091298789, - 15.936194690827959, - 21.85492262564447, - 27.83271965663213, - 32.62831070128147 - ], - "pressure:J102:branch123_seg2": [ - 174744.71198295767, - 193283.61060534458, - 201372.2873450937, - 198026.99030319156, - 185714.56332410927, - 166460.17773674388, - 142648.91721965183, - 117712.40496090318, - 94851.24119202359, - 73185.41016789617, - 55085.10002400007, - 39036.58778406991, - 23387.01613047623, - 8784.147879615923, - -6756.449058797042, - -21832.322703822112, - -36223.458306583925, - -49908.81512287117, - -60100.86468994122, - -67893.68851261429, - -73190.69062089783, - -75796.40659414965, - -77292.29417586928, - -77935.59082225968, - -78184.21696036731, - -78173.89761360823, - -77297.82606069952, - -75120.53339635697, - -71346.24710744618, - -66141.17018184933, - -60096.38059321838, - -54957.76930700997, - -51958.532847972914, - -52574.86929216138, - -57773.127224119824, - -67328.43025312533, - -79646.609268763, - -93021.61772943195, - -104982.34716139013, - -112217.72364309033, - -113860.4436261085, - -108833.06325628735, - -97406.80246110703, - -81081.0803367138, - -63226.065404024615, - -44585.912068219266, - -27434.7932761881, - -14069.551016677338, - -2950.2376124358557, - 5032.5005465176755, - 11047.178438507735, - 16568.927511766036, - 20914.707025985263, - 24923.574195636254, - 27942.447548490407, - 28953.815566866786, - 27815.22997632317, - 24134.13893527781, - 18221.455312503193, - 11037.817556327675, - 3942.490202600252, - -2410.5009655727267, - -6598.650300487078, - -8607.15506037179, - -9022.586691059705, - -8293.310844874835, - -7558.623106782211, - -7710.825471302617, - -9062.59909026997, - -11516.12878144817, - -14231.19750492528, - -16508.539734369224, - -17489.627766762173, - -16527.237737975673, - -13850.858812579592, - -10095.404788868018, - -6115.448730933079, - -2729.4483257192483, - -939.7477486142343, - -506.85320755597, - -1067.4800081594722, - -1878.5463815354447, - -1916.4412064868732, - -543.076886266738, - 2345.2176571781415, - 6260.464533018558, - 10101.049256091466, - 13026.77279337942, - 13989.029046485064, - 13065.429927953539, - 11309.43932288665, - 10475.096306848509, - 12906.112103559935, - 20856.829513348155, - 35840.103207744985, - 58755.50987839874, - 86356.65490911633, - 117805.87628610636, - 149723.7972190609, - 174744.71198295767 - ], - "flow:branch124_seg0:J103": [ - 45.112943021757516, - 51.74165675369201, - 55.83225136735304, - 57.04364005924281, - 55.46734083466448, - 51.473056089115246, - 45.69956153557182, - 39.07427172557659, - 32.32814433659021, - 25.82034265795843, - 20.07670059848902, - 14.90064325615507, - 10.144961619842904, - 5.691573362337295, - 1.189084858764004, - -3.2183593114626987, - -7.563352823232097, - -11.659489922589273, - -15.100837087153876, - -17.909219961964126, - -19.933662231100616, - -21.217788457438182, - -21.99631651110752, - -22.402361296732334, - -22.613833394876554, - -22.693348070498224, - -22.579458060993005, - -22.171548780253886, - -21.364691909552246, - -20.131314233105417, - -18.583946727492396, - -17.040540017472694, - -15.845117916767554, - -15.43946037215152, - -16.13811547772739, - -18.044967680789508, - -20.95222082103627, - -24.491991395209556, - -28.006142179349094, - -30.74486361768916, - -32.20679783535146, - -31.947835409450533, - -29.890461314161428, - -26.276359930718602, - -21.688694668421494, - -16.53679299448526, - -11.523757130799272, - -7.116384217106026, - -3.387418937710981, - -0.5224665435192578, - 1.7168440187899827, - 3.5404015823148067, - 5.027182914347191, - 6.348222180226932, - 7.393057258391735, - 8.019518265507541, - 8.09945381813431, - 7.502131932104982, - 6.243582691305586, - 4.496333202260422, - 2.531923892850206, - 0.6197840648961963, - -0.8857680814438144, - -1.8770437245729512, - -2.345046472395498, - -2.3956251648668596, - -2.281464362908077, - -2.244643456140487, - -2.449855963754971, - -2.9496280854564043, - -3.630480085099746, - -4.322616091494595, - -4.780364028223738, - -4.817757108535456, - -4.383418761383763, - -3.5550769694715303, - -2.511565221224332, - -1.4996610448381793, - -0.7615444491484723, - -0.3697738954429334, - -0.31801130726665067, - -0.44782047543975234, - -0.5218832885821845, - -0.3320172933836977, - 0.23573542463632788, - 1.1404830848410448, - 2.190158539006057, - 3.140056064932989, - 3.7024748154699747, - 3.787463258868937, - 3.5065786267192918, - 3.210214824458633, - 3.455703464386118, - 4.863553917222147, - 7.974514968829015, - 13.106119636950833, - 19.952224021882454, - 28.27477584757037, - 37.07356039864164, - 45.112943021757516 - ], - "pressure:branch124_seg0:J103": [ - 172485.12523300402, - 190061.74092767228, - 198985.58711705383, - 195985.41810867656, - 184197.5143063804, - 166066.97536626065, - 143689.4057831649, - 118492.66448249295, - 96330.45528081547, - 75332.21905051515, - 56456.811844085416, - 40569.07676959425, - 24509.329153995248, - 9495.730572944613, - -5753.26362242849, - -21133.678548837506, - -35464.35120204732, - -49000.83538978479, - -59338.303209011116, - -66962.85057434485, - -72547.72241720953, - -75397.82640983055, - -77012.72734721558, - -77866.38829901634, - -78163.80907509694, - -78166.99906329163, - -77250.34974443442, - -75009.56196226855, - -71201.33352815655, - -66170.11993573977, - -60263.14891722388, - -55318.09582783882, - -52689.764672727026, - -53284.80956646945, - -58348.66713590826, - -67599.54234331961, - -79616.98923240796, - -92315.25329955656, - -103892.35683375591, - -110923.46942884439, - -112264.38113601609, - -107537.06892720007, - -96552.96219610803, - -80604.7438165254, - -63422.06608019758, - -45521.164846854845, - -28329.023719162797, - -15203.2443571402, - -4183.272026236611, - 4188.635474960017, - 10224.547878259837, - 16135.095013230926, - 20581.547836542948, - 24374.391812496015, - 27551.672021565944, - 28482.898174557067, - 27286.727380830594, - 23758.004831922466, - 18122.328860830858, - 11048.436970038172, - 4244.6782890185705, - -1725.503153367118, - -6041.952546381435, - -8050.272367428988, - -8585.619964327228, - -8137.415864879201, - -7570.582055988236, - -7830.737503321998, - -9208.943568538487, - -11595.756381675918, - -14137.06335675522, - -16214.530431987192, - -17149.07695656529, - -16186.163762073376, - -13578.699719447008, - -9993.733133653443, - -6298.855447027835, - -2977.004315173541, - -1261.2343143185224, - -878.09333790059, - -1237.3473737815827, - -1852.2710710344606, - -1760.5884548589102, - -333.50985748773553, - 2462.017535310702, - 6263.2320798931005, - 9894.413641677364, - 12561.755132090662, - 13566.931502878455, - 12733.344115144602, - 11191.693663619602, - 10704.614100315575, - 13446.601475357234, - 21562.734674844327, - 36406.39730988852, - 59152.785100145375, - 86023.27847563967, - 116188.44654754334, - 148355.98271651432, - 172485.12523300402 - ], - "flow:J103:branch124_seg1": [ - 45.112943021757516, - 51.74165675369201, - 55.83225136735304, - 57.04364005924281, - 55.46734083466448, - 51.473056089115246, - 45.69956153557182, - 39.07427172557659, - 32.32814433659021, - 25.82034265795843, - 20.07670059848902, - 14.90064325615507, - 10.144961619842904, - 5.691573362337295, - 1.189084858764004, - -3.2183593114626987, - -7.563352823232097, - -11.659489922589273, - -15.100837087153876, - -17.909219961964126, - -19.933662231100616, - -21.217788457438182, - -21.99631651110752, - -22.402361296732334, - -22.613833394876554, - -22.693348070498224, - -22.579458060993005, - -22.171548780253886, - -21.364691909552246, - -20.131314233105417, - -18.583946727492396, - -17.040540017472694, - -15.845117916767554, - -15.43946037215152, - -16.13811547772739, - -18.044967680789508, - -20.95222082103627, - -24.491991395209556, - -28.006142179349094, - -30.74486361768916, - -32.20679783535146, - -31.947835409450533, - -29.890461314161428, - -26.276359930718602, - -21.688694668421494, - -16.53679299448526, - -11.523757130799272, - -7.116384217106026, - -3.387418937710981, - -0.5224665435192578, - 1.7168440187899827, - 3.5404015823148067, - 5.027182914347191, - 6.348222180226932, - 7.393057258391735, - 8.019518265507541, - 8.09945381813431, - 7.502131932104982, - 6.243582691305586, - 4.496333202260422, - 2.531923892850206, - 0.6197840648961963, - -0.8857680814438144, - -1.8770437245729512, - -2.345046472395498, - -2.3956251648668596, - -2.281464362908077, - -2.244643456140487, - -2.449855963754971, - -2.9496280854564043, - -3.630480085099746, - -4.322616091494595, - -4.780364028223738, - -4.817757108535456, - -4.383418761383763, - -3.5550769694715303, - -2.511565221224332, - -1.4996610448381793, - -0.7615444491484723, - -0.3697738954429334, - -0.31801130726665067, - -0.44782047543975234, - -0.5218832885821845, - -0.3320172933836977, - 0.23573542463632788, - 1.1404830848410448, - 2.190158539006057, - 3.140056064932989, - 3.7024748154699747, - 3.787463258868937, - 3.5065786267192918, - 3.210214824458633, - 3.455703464386118, - 4.863553917222147, - 7.974514968829015, - 13.106119636950833, - 19.952224021882454, - 28.27477584757037, - 37.07356039864164, - 45.112943021757516 - ], - "pressure:J103:branch124_seg1": [ - 172485.12523300402, - 190061.74092767228, - 198985.58711705383, - 195985.41810867656, - 184197.5143063804, - 166066.97536626065, - 143689.4057831649, - 118492.66448249295, - 96330.45528081547, - 75332.21905051515, - 56456.811844085416, - 40569.07676959425, - 24509.329153995248, - 9495.730572944613, - -5753.26362242849, - -21133.678548837506, - -35464.35120204732, - -49000.83538978479, - -59338.303209011116, - -66962.85057434485, - -72547.72241720953, - -75397.82640983055, - -77012.72734721558, - -77866.38829901634, - -78163.80907509694, - -78166.99906329163, - -77250.34974443442, - -75009.56196226855, - -71201.33352815655, - -66170.11993573977, - -60263.14891722388, - -55318.09582783882, - -52689.764672727026, - -53284.80956646945, - -58348.66713590826, - -67599.54234331961, - -79616.98923240796, - -92315.25329955656, - -103892.35683375591, - -110923.46942884439, - -112264.38113601609, - -107537.06892720007, - -96552.96219610803, - -80604.7438165254, - -63422.06608019758, - -45521.164846854845, - -28329.023719162797, - -15203.2443571402, - -4183.272026236611, - 4188.635474960017, - 10224.547878259837, - 16135.095013230926, - 20581.547836542948, - 24374.391812496015, - 27551.672021565944, - 28482.898174557067, - 27286.727380830594, - 23758.004831922466, - 18122.328860830858, - 11048.436970038172, - 4244.6782890185705, - -1725.503153367118, - -6041.952546381435, - -8050.272367428988, - -8585.619964327228, - -8137.415864879201, - -7570.582055988236, - -7830.737503321998, - -9208.943568538487, - -11595.756381675918, - -14137.06335675522, - -16214.530431987192, - -17149.07695656529, - -16186.163762073376, - -13578.699719447008, - -9993.733133653443, - -6298.855447027835, - -2977.004315173541, - -1261.2343143185224, - -878.09333790059, - -1237.3473737815827, - -1852.2710710344606, - -1760.5884548589102, - -333.50985748773553, - 2462.017535310702, - 6263.2320798931005, - 9894.413641677364, - 12561.755132090662, - 13566.931502878455, - 12733.344115144602, - 11191.693663619602, - 10704.614100315575, - 13446.601475357234, - 21562.734674844327, - 36406.39730988852, - 59152.785100145375, - 86023.27847563967, - 116188.44654754334, - 148355.98271651432, - 172485.12523300402 - ], - "flow:branch124_seg1:J104": [ - 45.088144268130804, - 51.728196639391776, - 55.828200074803675, - 57.04961116213979, - 55.484987395839795, - 51.4964032808312, - 45.721676741354806, - 39.10568436759153, - 32.351245609130814, - 25.835962636432455, - 20.096402737081487, - 14.915057281400136, - 10.159573347343759, - 5.7067305660789, - 1.1988921448540804, - -3.2037441106838678, - -7.54845410100044, - -11.652608237722498, - -15.091981719799774, - -17.902931206447175, - -19.930791246023624, - -21.214813854778395, - -21.99553170321416, - -22.401930626482315, - -22.613233588721382, - -22.6937100912984, - -22.58087643205274, - -22.174541616046522, - -21.36984208564136, - -20.13731636001497, - -18.590200867144016, - -17.045391344258412, - -15.845810761297418, - -15.43609128765322, - -16.13092610584361, - -18.035380207890185, - -20.937920926479695, - -24.48081563945405, - -27.998207566198076, - -30.740247749067457, - -32.209876141720734, - -31.956011206953242, - -29.902864092969104, - -26.289336771860416, - -21.705639449529393, - -16.55429839259536, - -11.53736352458923, - -7.129987085070703, - -3.3961799460683597, - -0.529785334352413, - 1.70945887180601, - 3.534491612720658, - 5.0223241200010085, - 6.344621837714151, - 7.390229695314237, - 8.019198189893427, - 8.102148216981965, - 7.507469830561249, - 6.249518845860245, - 4.505013451139919, - 2.538603760075158, - 0.6224256556126171, - -0.8823546527703257, - -1.875677400720624, - -2.345807606977054, - -2.3961594425869364, - -2.281520343895447, - -2.243942233989033, - -2.4481040063440433, - -2.947564372128762, - -3.6281662061770956, - -4.320783295787277, - -4.780418659283504, - -4.819283652045468, - -4.386610801118464, - -3.5592072188534742, - -2.5155693719518286, - -1.502770489576946, - -0.7628974807261539, - -0.3695470054200326, - -0.3171254900728766, - -0.4475235556180027, - -0.5226623929668621, - -0.3344178237796789, - 0.23257927697447636, - 1.13607513587269, - 2.1868669717395366, - 3.139605946563462, - 3.7024860903392582, - 3.78852494840042, - 3.50780976726199, - 3.209567456510524, - 3.4509374478571626, - 4.853016303140329, - 7.956790104045052, - 13.084680956059458, - 19.92508013475421, - 28.239634517176523, - 37.04422198932354, - 45.088144268130804 - ], - "pressure:branch124_seg1:J104": [ - 167565.33199043543, - 186081.06729914306, - 196046.06054927188, - 194545.92664464604, - 184186.9808833059, - 167126.2487992786, - 145460.6357443712, - 120964.92309520551, - 98663.71507527937, - 77553.72445697659, - 58647.69954753339, - 42456.29482048916, - 26474.31255093259, - 11479.512508541582, - -3725.7021012739006, - -18899.347516908412, - -33279.945767177014, - -46875.20791630007, - -57385.63476202486, - -65366.673452310526, - -71203.92907173386, - -74329.4484211428, - -76156.85100903852, - -77108.23004221066, - -77483.89848484087, - -77549.96562210827, - -76748.87880264044, - -74700.78793657366, - -71138.93100401503, - -66313.77327075877, - -60568.55982193219, - -55578.45527689885, - -52658.83092946068, - -52815.91057370097, - -57290.588279572556, - -65921.19406275207, - -77416.24717721075, - -89953.98927605968, - -101556.9798229654, - -109037.87516840712, - -111130.91043849238, - -107219.10377779741, - -97098.70061142911, - -81931.02133131596, - -65220.580418234174, - -47503.68867946329, - -30382.031622049264, - -16996.04409425218, - -5668.8554716195395, - 2930.2869448339998, - 9226.534216476484, - 15197.058705320032, - 19737.846947529088, - 23643.33174443242, - 26897.467442332694, - 28080.501491075058, - 27201.893310147025, - 24016.0530627274, - 18687.721751467496, - 11900.410031470086, - 5124.223295956034, - -933.2678209823694, - -5384.214390775512, - -7671.799723293159, - -8422.642279910924, - -8098.250331228897, - -7565.563298067695, - -7743.5364778514695, - -8975.125835522122, - -11216.987980656198, - -13690.527108711442, - -15810.742515492368, - -16879.101539787458, - -16143.557802928539, - -13785.246890032195, - -10380.301251478119, - -6744.357194088842, - -3404.3230619930764, - -1529.9708335568416, - -954.6896700394593, - -1193.1794209052405, - -1773.9236688248698, - -1758.341956882692, - -508.2170780868716, - 2095.534046445929, - 5720.387886635954, - 9337.815339252245, - 12116.663616234673, - 13299.407806892912, - 12700.19401497463, - 11279.822673902265, - 10681.970679647495, - 13007.68949966265, - 20390.628895581885, - 34266.73286327184, - 55859.004822973286, - 81789.33251319615, - 111299.54778080752, - 142984.84598354058, - 167565.33199043543 - ], - "flow:J104:branch124_seg2": [ - 45.088144268130804, - 51.728196639391776, - 55.828200074803675, - 57.04961116213979, - 55.484987395839795, - 51.4964032808312, - 45.721676741354806, - 39.10568436759153, - 32.351245609130814, - 25.835962636432455, - 20.096402737081487, - 14.915057281400136, - 10.159573347343759, - 5.7067305660789, - 1.1988921448540804, - -3.2037441106838678, - -7.54845410100044, - -11.652608237722498, - -15.091981719799774, - -17.902931206447175, - -19.930791246023624, - -21.214813854778395, - -21.99553170321416, - -22.401930626482315, - -22.613233588721382, - -22.6937100912984, - -22.58087643205274, - -22.174541616046522, - -21.36984208564136, - -20.13731636001497, - -18.590200867144016, - -17.045391344258412, - -15.845810761297418, - -15.43609128765322, - -16.13092610584361, - -18.035380207890185, - -20.937920926479695, - -24.48081563945405, - -27.998207566198076, - -30.740247749067457, - -32.209876141720734, - -31.956011206953242, - -29.902864092969104, - -26.289336771860416, - -21.705639449529393, - -16.55429839259536, - -11.53736352458923, - -7.129987085070703, - -3.3961799460683597, - -0.529785334352413, - 1.70945887180601, - 3.534491612720658, - 5.0223241200010085, - 6.344621837714151, - 7.390229695314237, - 8.019198189893427, - 8.102148216981965, - 7.507469830561249, - 6.249518845860245, - 4.505013451139919, - 2.538603760075158, - 0.6224256556126171, - -0.8823546527703257, - -1.875677400720624, - -2.345807606977054, - -2.3961594425869364, - -2.281520343895447, - -2.243942233989033, - -2.4481040063440433, - -2.947564372128762, - -3.6281662061770956, - -4.320783295787277, - -4.780418659283504, - -4.819283652045468, - -4.386610801118464, - -3.5592072188534742, - -2.5155693719518286, - -1.502770489576946, - -0.7628974807261539, - -0.3695470054200326, - -0.3171254900728766, - -0.4475235556180027, - -0.5226623929668621, - -0.3344178237796789, - 0.23257927697447636, - 1.13607513587269, - 2.1868669717395366, - 3.139605946563462, - 3.7024860903392582, - 3.78852494840042, - 3.50780976726199, - 3.209567456510524, - 3.4509374478571626, - 4.853016303140329, - 7.956790104045052, - 13.084680956059458, - 19.92508013475421, - 28.239634517176523, - 37.04422198932354, - 45.088144268130804 - ], - "pressure:J104:branch124_seg2": [ - 167565.33199043543, - 186081.06729914306, - 196046.06054927188, - 194545.92664464604, - 184186.9808833059, - 167126.2487992786, - 145460.6357443712, - 120964.92309520551, - 98663.71507527937, - 77553.72445697659, - 58647.69954753339, - 42456.29482048916, - 26474.31255093259, - 11479.512508541582, - -3725.7021012739006, - -18899.347516908412, - -33279.945767177014, - -46875.20791630007, - -57385.63476202486, - -65366.673452310526, - -71203.92907173386, - -74329.4484211428, - -76156.85100903852, - -77108.23004221066, - -77483.89848484087, - -77549.96562210827, - -76748.87880264044, - -74700.78793657366, - -71138.93100401503, - -66313.77327075877, - -60568.55982193219, - -55578.45527689885, - -52658.83092946068, - -52815.91057370097, - -57290.588279572556, - -65921.19406275207, - -77416.24717721075, - -89953.98927605968, - -101556.9798229654, - -109037.87516840712, - -111130.91043849238, - -107219.10377779741, - -97098.70061142911, - -81931.02133131596, - -65220.580418234174, - -47503.68867946329, - -30382.031622049264, - -16996.04409425218, - -5668.8554716195395, - 2930.2869448339998, - 9226.534216476484, - 15197.058705320032, - 19737.846947529088, - 23643.33174443242, - 26897.467442332694, - 28080.501491075058, - 27201.893310147025, - 24016.0530627274, - 18687.721751467496, - 11900.410031470086, - 5124.223295956034, - -933.2678209823694, - -5384.214390775512, - -7671.799723293159, - -8422.642279910924, - -8098.250331228897, - -7565.563298067695, - -7743.5364778514695, - -8975.125835522122, - -11216.987980656198, - -13690.527108711442, - -15810.742515492368, - -16879.101539787458, - -16143.557802928539, - -13785.246890032195, - -10380.301251478119, - -6744.357194088842, - -3404.3230619930764, - -1529.9708335568416, - -954.6896700394593, - -1193.1794209052405, - -1773.9236688248698, - -1758.341956882692, - -508.2170780868716, - 2095.534046445929, - 5720.387886635954, - 9337.815339252245, - 12116.663616234673, - 13299.407806892912, - 12700.19401497463, - 11279.822673902265, - 10681.970679647495, - 13007.68949966265, - 20390.628895581885, - 34266.73286327184, - 55859.004822973286, - 81789.33251319615, - 111299.54778080752, - 142984.84598354058, - 167565.33199043543 - ], - "flow:branch127_seg0:J105": [ - 30.60088120113766, - 34.604020988793486, - 36.805477010566115, - 37.04969981299087, - 35.51564377597039, - 32.503866171751405, - 28.470379765051785, - 24.050574026190354, - 19.71859348168562, - 15.616732307606524, - 12.085999949040389, - 8.913565806929855, - 5.957443267442391, - 3.16611017183705, - 0.2736070913033744, - -2.5618648734420377, - -5.3528128644368556, - -7.978541516527183, - -10.107996414257144, - -11.818151178368, - -13.014347728506545, - -13.730980285994491, - -14.162777227993164, - -14.386384611615167, - -14.514447952626265, - -14.574196166113616, - -14.500005898450283, - -14.215539652349316, - -13.652398732842247, - -12.804991756233484, - -11.768032640355912, - -10.784679865089053, - -10.089989535920916, - -9.976951530939857, - -10.636620907600777, - -12.097442309052767, - -14.167022267253142, - -16.57037867890684, - -18.847265673401264, - -20.47769425964019, - -21.183936226221125, - -20.703399811660873, - -19.04395705884253, - -16.41454766780246, - -13.27455688094815, - -9.861303940125122, - -6.646101849706045, - -3.932502612760599, - -1.6741960974018213, - 0.007253472860076955, - 1.314563866202014, - 2.411407181259501, - 3.315033769114641, - 4.141843864302732, - 4.790541444946561, - 5.14214183405192, - 5.117886743441172, - 4.63483554790953, - 3.72294105503015, - 2.521066778291253, - 1.2296507872764713, - 0.01959135558695624, - -0.8682520587390761, - -1.3960079430423695, - -1.5889429214629642, - -1.533765313461074, - -1.4181689480064024, - -1.4027953628861667, - -1.5794819089115641, - -1.9615491614465055, - -2.4431715801399108, - -2.9008080692692344, - -3.1656295152138294, - -3.1202527335603345, - -2.756025933193923, - -2.1498802883123784, - -1.4368838638186938, - -0.7865150138937921, - -0.3598212962888183, - -0.17688703098765968, - -0.21023412510674477, - -0.33505095283673547, - -0.38042937421283646, - -0.21348548661214858, - 0.22197668429031628, - 0.8727748442025149, - 1.5836362612597574, - 2.1861762720039173, - 2.4866317538225053, - 2.455342077661454, - 2.20483988263801, - 2.0056479827777047, - 2.254707399876173, - 3.3689053023919953, - 5.679428156022733, - 9.367513039032309, - 14.107935395677321, - 19.737258521878633, - 25.541456577640314, - 30.60088120113766 - ], - "pressure:branch127_seg0:J105": [ - 171120.92792965926, - 188110.7878562196, - 196307.14643351024, - 192579.9531052566, - 180379.19292941294, - 162112.60795949172, - 139994.32610811124, - 115036.20682294555, - 93578.48848631029, - 73560.49751055658, - 55250.71681938774, - 40026.42434478219, - 24582.591788400117, - 9899.536377570628, - -4948.277203155862, - -20132.538436949846, - -34481.57960811377, - -47590.44651791214, - -57671.00664279774, - -65260.146476911854, - -70617.09780287377, - -73364.27134782622, - -74984.77699404887, - -75872.73015538049, - -76310.1426153558, - -76461.15972526363, - -75669.00085776765, - -73558.47367059541, - -69854.88316838017, - -64934.22877676602, - -59154.47802570741, - -54378.53002809291, - -51984.13076723144, - -52789.62608395624, - -58104.76298965577, - -67501.64954823881, - -79631.98172084025, - -92277.44784743043, - -103538.75594462712, - -110252.9067364823, - -111154.10141763017, - -106008.78990447882, - -94730.37565440682, - -78722.04397092041, - -61732.911497380934, - -43957.30407423111, - -27300.49409408064, - -14767.334417660288, - -4191.811769637171, - 3673.609742426403, - 9432.781305811612, - 15178.890062720864, - 19432.60790820929, - 23213.032943263068, - 26443.311561051778, - 27348.521914916593, - 26155.852037281238, - 22652.603242257843, - 17080.894086902812, - 10091.011716351673, - 3434.7191452514758, - -2222.802064387854, - -6330.345645367383, - -8120.8363509420105, - -8392.247367372836, - -7807.8213507822375, - -7197.32281059005, - -7478.1286309567195, - -8921.599861818331, - -11378.104607197572, - -13944.011153733834, - -16048.316757470724, - -16925.156913542403, - -15874.850668855186, - -13212.845372726477, - -9607.807317195216, - -5942.213720253038, - -2696.512975518232, - -1132.355910758086, - -878.1974970242317, - -1322.4183322265878, - -2002.2648246676608, - -1908.6734276982083, - -436.68757320258425, - 2416.0511101149195, - 6263.261992001654, - 9904.771839594767, - 12471.273250692819, - 13388.852175231852, - 12466.085317648703, - 10833.108871875264, - 10350.058598743339, - 13186.515247121983, - 21477.992726485838, - 36532.728116954575, - 59391.610244067066, - 86073.9371196455, - 116275.31191742819, - 147990.98576249837, - 171120.92792965926 - ], - "flow:J105:branch127_seg1": [ - 30.60088120113766, - 34.604020988793486, - 36.805477010566115, - 37.04969981299087, - 35.51564377597039, - 32.503866171751405, - 28.470379765051785, - 24.050574026190354, - 19.71859348168562, - 15.616732307606524, - 12.085999949040389, - 8.913565806929855, - 5.957443267442391, - 3.16611017183705, - 0.2736070913033744, - -2.5618648734420377, - -5.3528128644368556, - -7.978541516527183, - -10.107996414257144, - -11.818151178368, - -13.014347728506545, - -13.730980285994491, - -14.162777227993164, - -14.386384611615167, - -14.514447952626265, - -14.574196166113616, - -14.500005898450283, - -14.215539652349316, - -13.652398732842247, - -12.804991756233484, - -11.768032640355912, - -10.784679865089053, - -10.089989535920916, - -9.976951530939857, - -10.636620907600777, - -12.097442309052767, - -14.167022267253142, - -16.57037867890684, - -18.847265673401264, - -20.47769425964019, - -21.183936226221125, - -20.703399811660873, - -19.04395705884253, - -16.41454766780246, - -13.27455688094815, - -9.861303940125122, - -6.646101849706045, - -3.932502612760599, - -1.6741960974018213, - 0.007253472860076955, - 1.314563866202014, - 2.411407181259501, - 3.315033769114641, - 4.141843864302732, - 4.790541444946561, - 5.14214183405192, - 5.117886743441172, - 4.63483554790953, - 3.72294105503015, - 2.521066778291253, - 1.2296507872764713, - 0.01959135558695624, - -0.8682520587390761, - -1.3960079430423695, - -1.5889429214629642, - -1.533765313461074, - -1.4181689480064024, - -1.4027953628861667, - -1.5794819089115641, - -1.9615491614465055, - -2.4431715801399108, - -2.9008080692692344, - -3.1656295152138294, - -3.1202527335603345, - -2.756025933193923, - -2.1498802883123784, - -1.4368838638186938, - -0.7865150138937921, - -0.3598212962888183, - -0.17688703098765968, - -0.21023412510674477, - -0.33505095283673547, - -0.38042937421283646, - -0.21348548661214858, - 0.22197668429031628, - 0.8727748442025149, - 1.5836362612597574, - 2.1861762720039173, - 2.4866317538225053, - 2.455342077661454, - 2.20483988263801, - 2.0056479827777047, - 2.254707399876173, - 3.3689053023919953, - 5.679428156022733, - 9.367513039032309, - 14.107935395677321, - 19.737258521878633, - 25.541456577640314, - 30.60088120113766 - ], - "pressure:J105:branch127_seg1": [ - 171120.92792965926, - 188110.7878562196, - 196307.14643351024, - 192579.9531052566, - 180379.19292941294, - 162112.60795949172, - 139994.32610811124, - 115036.20682294555, - 93578.48848631029, - 73560.49751055658, - 55250.71681938774, - 40026.42434478219, - 24582.591788400117, - 9899.536377570628, - -4948.277203155862, - -20132.538436949846, - -34481.57960811377, - -47590.44651791214, - -57671.00664279774, - -65260.146476911854, - -70617.09780287377, - -73364.27134782622, - -74984.77699404887, - -75872.73015538049, - -76310.1426153558, - -76461.15972526363, - -75669.00085776765, - -73558.47367059541, - -69854.88316838017, - -64934.22877676602, - -59154.47802570741, - -54378.53002809291, - -51984.13076723144, - -52789.62608395624, - -58104.76298965577, - -67501.64954823881, - -79631.98172084025, - -92277.44784743043, - -103538.75594462712, - -110252.9067364823, - -111154.10141763017, - -106008.78990447882, - -94730.37565440682, - -78722.04397092041, - -61732.911497380934, - -43957.30407423111, - -27300.49409408064, - -14767.334417660288, - -4191.811769637171, - 3673.609742426403, - 9432.781305811612, - 15178.890062720864, - 19432.60790820929, - 23213.032943263068, - 26443.311561051778, - 27348.521914916593, - 26155.852037281238, - 22652.603242257843, - 17080.894086902812, - 10091.011716351673, - 3434.7191452514758, - -2222.802064387854, - -6330.345645367383, - -8120.8363509420105, - -8392.247367372836, - -7807.8213507822375, - -7197.32281059005, - -7478.1286309567195, - -8921.599861818331, - -11378.104607197572, - -13944.011153733834, - -16048.316757470724, - -16925.156913542403, - -15874.850668855186, - -13212.845372726477, - -9607.807317195216, - -5942.213720253038, - -2696.512975518232, - -1132.355910758086, - -878.1974970242317, - -1322.4183322265878, - -2002.2648246676608, - -1908.6734276982083, - -436.68757320258425, - 2416.0511101149195, - 6263.261992001654, - 9904.771839594767, - 12471.273250692819, - 13388.852175231852, - 12466.085317648703, - 10833.108871875264, - 10350.058598743339, - 13186.515247121983, - 21477.992726485838, - 36532.728116954575, - 59391.610244067066, - 86073.9371196455, - 116275.31191742819, - 147990.98576249837, - 171120.92792965926 - ], - "flow:branch127_seg1:J106": [ - 30.548843240756906, - 34.57121302890872, - 36.7993060433286, - 37.06611462487855, - 35.55726854071264, - 32.555906196860455, - 28.520549222445403, - 24.121875028404702, - 19.76364318512256, - 15.648831584167507, - 12.130763387268107, - 8.942880414857793, - 5.989239616932945, - 3.199499490663976, - 0.29321842966081146, - -2.52611404878509, - -5.31808548612892, - -7.965937878698189, - -10.086193842265034, - -11.802534712589102, - -13.008355552185174, - -13.723795202812008, - -14.160848081205387, - -14.385225280071179, - -14.512328212779407, - -14.574822454138618, - -14.503133724810755, - -14.222197438178855, - -13.663969117924246, - -12.818341797763049, - -11.781946601172836, - -10.794496236282429, - -10.090734326732576, - -9.968867137397982, - -10.619544365169107, - -12.076096510014262, - -14.133848584408565, - -16.546354314733474, - -18.830582807375777, - -20.467631416379227, - -21.19214899904826, - -20.722315489924185, - -19.073067738610302, - -16.443199802880258, - -13.314518557767428, - -9.903792219554813, - -6.675459809766821, - -3.9631363734322385, - -1.6942539903497815, - -0.00818677123849446, - 1.2968649623080595, - 2.3985059024183837, - 3.305640806643882, - 4.132783003315613, - 4.784066541352513, - 5.142241034630704, - 5.124100837252848, - 4.64687272956086, - 3.7361312348205926, - 2.5406164629345542, - 1.2432748048945528, - 0.023989714274791706, - -0.8597623354074517, - -1.3936802784128266, - -1.5913521214289623, - -1.5349982875663186, - -1.4182902496676304, - -1.4011105397971748, - -1.5752627626472833, - -1.9567709535201065, - -2.4376200768262977, - -2.8960024290401223, - -3.166149730460349, - -3.124051479070978, - -2.7635804424410697, - -2.159344316868138, - -1.4462428979113775, - -0.7933003321042222, - -0.3618434522723454, - -0.17625149824031025, - -0.20810904584227055, - -0.3342728407949329, - -0.38233440323166323, - -0.21910970324586715, - 0.21477436795367472, - 0.8627357077399479, - 1.576611192064662, - 2.1859142489564722, - 2.4862028012214337, - 2.457957790868636, - 2.207770490894938, - 2.0041073221260057, - 2.2436084877988605, - 3.344117753746027, - 5.637494590334989, - 9.318352143364702, - 14.044983798902397, - 19.64937439735456, - 25.47784572014713, - 30.548843240756906 - ], - "pressure:branch127_seg1:J106": [ - 156226.91815834845, - 176166.9232796217, - 187074.61655428744, - 187843.40661318586, - 179700.3456213656, - 164184.53008, - 143601.34066722135, - 121073.37019433593, - 99117.12461681721, - 78418.79917901127, - 60590.38067292031, - 44586.14908367356, - 29609.546608613266, - 15452.350155004002, - 752.5459229941929, - -13590.40801282855, - -27720.41441082865, - -41067.411462234515, - -51702.38932286053, - -60249.69095964891, - -66258.72297251377, - -69773.81765868652, - -71916.19915377637, - -73022.39475122651, - -73641.65642675904, - -73939.96895669127, - -73530.16005800839, - -72033.91842788277, - -69115.30483444003, - -64771.15972171364, - -59474.76141119872, - -54510.778344351864, - -51086.76409087068, - -50631.44505606349, - -54147.80184529831, - -61737.25857836607, - -72327.78175067581, - -84569.85355078673, - -96079.67115486795, - -104175.38437095005, - -107526.41523063259, - -104841.05652629696, - -96176.83903386742, - -82581.52648943265, - -66643.95453505797, - -49351.42213927069, - -32999.237159904194, - -19430.085393603444, - -8066.065547461929, - 378.74960038639256, - 6876.420468338672, - 12464.04122349964, - 17009.964977672407, - 21143.35156519552, - 24427.576232904004, - 26135.29663169171, - 25919.357622927302, - 23385.13001545127, - 18673.647931890137, - 12526.869343365579, - 5959.572063679371, - -144.75308912535183, - -4568.13905576185, - -7163.601483214007, - -8080.265664757924, - -7761.2133662532715, - -7168.990527466862, - -7123.7067195200925, - -8067.290489911345, - -10054.93191666449, - -12499.588769356913, - -14791.467142441932, - -16101.838984772457, - -15794.355977473235, - -13878.215897421847, - -10762.98344328025, - -7153.235906810541, - -3859.852826797021, - -1749.3066945254059, - -889.0226245097617, - -1081.8322812114163, - -1724.3490192054853, - -1929.3911191341706, - -1031.8041205794154, - 1235.194845122879, - 4573.547326906151, - 8184.884617401589, - 11206.16189361823, - 12654.980872716606, - 12424.039833698862, - 11118.002468633307, - 10150.332148757378, - 11543.710642669363, - 17412.01666038186, - 29390.249326131543, - 48470.547235735576, - 72665.34599368712, - 101187.09701909764, - 130894.83288169926, - 156226.91815834845 - ], - "flow:J106:branch127_seg2": [ - 30.548843240756906, - 34.57121302890872, - 36.7993060433286, - 37.06611462487855, - 35.55726854071264, - 32.555906196860455, - 28.520549222445403, - 24.121875028404702, - 19.76364318512256, - 15.648831584167507, - 12.130763387268107, - 8.942880414857793, - 5.989239616932945, - 3.199499490663976, - 0.29321842966081146, - -2.52611404878509, - -5.31808548612892, - -7.965937878698189, - -10.086193842265034, - -11.802534712589102, - -13.008355552185174, - -13.723795202812008, - -14.160848081205387, - -14.385225280071179, - -14.512328212779407, - -14.574822454138618, - -14.503133724810755, - -14.222197438178855, - -13.663969117924246, - -12.818341797763049, - -11.781946601172836, - -10.794496236282429, - -10.090734326732576, - -9.968867137397982, - -10.619544365169107, - -12.076096510014262, - -14.133848584408565, - -16.546354314733474, - -18.830582807375777, - -20.467631416379227, - -21.19214899904826, - -20.722315489924185, - -19.073067738610302, - -16.443199802880258, - -13.314518557767428, - -9.903792219554813, - -6.675459809766821, - -3.9631363734322385, - -1.6942539903497815, - -0.00818677123849446, - 1.2968649623080595, - 2.3985059024183837, - 3.305640806643882, - 4.132783003315613, - 4.784066541352513, - 5.142241034630704, - 5.124100837252848, - 4.64687272956086, - 3.7361312348205926, - 2.5406164629345542, - 1.2432748048945528, - 0.023989714274791706, - -0.8597623354074517, - -1.3936802784128266, - -1.5913521214289623, - -1.5349982875663186, - -1.4182902496676304, - -1.4011105397971748, - -1.5752627626472833, - -1.9567709535201065, - -2.4376200768262977, - -2.8960024290401223, - -3.166149730460349, - -3.124051479070978, - -2.7635804424410697, - -2.159344316868138, - -1.4462428979113775, - -0.7933003321042222, - -0.3618434522723454, - -0.17625149824031025, - -0.20810904584227055, - -0.3342728407949329, - -0.38233440323166323, - -0.21910970324586715, - 0.21477436795367472, - 0.8627357077399479, - 1.576611192064662, - 2.1859142489564722, - 2.4862028012214337, - 2.457957790868636, - 2.207770490894938, - 2.0041073221260057, - 2.2436084877988605, - 3.344117753746027, - 5.637494590334989, - 9.318352143364702, - 14.044983798902397, - 19.64937439735456, - 25.47784572014713, - 30.548843240756906 - ], - "pressure:J106:branch127_seg2": [ - 156226.91815834845, - 176166.9232796217, - 187074.61655428744, - 187843.40661318586, - 179700.3456213656, - 164184.53008, - 143601.34066722135, - 121073.37019433593, - 99117.12461681721, - 78418.79917901127, - 60590.38067292031, - 44586.14908367356, - 29609.546608613266, - 15452.350155004002, - 752.5459229941929, - -13590.40801282855, - -27720.41441082865, - -41067.411462234515, - -51702.38932286053, - -60249.69095964891, - -66258.72297251377, - -69773.81765868652, - -71916.19915377637, - -73022.39475122651, - -73641.65642675904, - -73939.96895669127, - -73530.16005800839, - -72033.91842788277, - -69115.30483444003, - -64771.15972171364, - -59474.76141119872, - -54510.778344351864, - -51086.76409087068, - -50631.44505606349, - -54147.80184529831, - -61737.25857836607, - -72327.78175067581, - -84569.85355078673, - -96079.67115486795, - -104175.38437095005, - -107526.41523063259, - -104841.05652629696, - -96176.83903386742, - -82581.52648943265, - -66643.95453505797, - -49351.42213927069, - -32999.237159904194, - -19430.085393603444, - -8066.065547461929, - 378.74960038639256, - 6876.420468338672, - 12464.04122349964, - 17009.964977672407, - 21143.35156519552, - 24427.576232904004, - 26135.29663169171, - 25919.357622927302, - 23385.13001545127, - 18673.647931890137, - 12526.869343365579, - 5959.572063679371, - -144.75308912535183, - -4568.13905576185, - -7163.601483214007, - -8080.265664757924, - -7761.2133662532715, - -7168.990527466862, - -7123.7067195200925, - -8067.290489911345, - -10054.93191666449, - -12499.588769356913, - -14791.467142441932, - -16101.838984772457, - -15794.355977473235, - -13878.215897421847, - -10762.98344328025, - -7153.235906810541, - -3859.852826797021, - -1749.3066945254059, - -889.0226245097617, - -1081.8322812114163, - -1724.3490192054853, - -1929.3911191341706, - -1031.8041205794154, - 1235.194845122879, - 4573.547326906151, - 8184.884617401589, - 11206.16189361823, - 12654.980872716606, - 12424.039833698862, - 11118.002468633307, - 10150.332148757378, - 11543.710642669363, - 17412.01666038186, - 29390.249326131543, - 48470.547235735576, - 72665.34599368712, - 101187.09701909764, - 130894.83288169926, - 156226.91815834845 - ], - "flow:branch132_seg0:J107": [ - 36.79311207787313, - 40.416180331270645, - 41.76078840425883, - 40.7221794300811, - 37.87597358410143, - 33.63810160573586, - 28.540282393994005, - 23.32825532761082, - 18.65758972546955, - 14.234730325560767, - 10.600305169963615, - 7.387067982835917, - 4.193873748731455, - 1.236925200271163, - -1.9664348039729749, - -5.074685762929288, - -7.986574207457896, - -10.76954858209331, - -12.778071441018636, - -14.295045844162583, - -15.286740087329564, - -15.731191609633342, - -15.978928970523677, - -16.06883739691328, - -16.09653915869168, - -16.0732072594638, - -15.863487084462482, - -15.37065452454741, - -14.541183202863849, - -13.412243288378038, - -12.136788238970132, - -11.087252915834794, - -10.527135190487453, - -10.765456736250949, - -11.982766546931185, - -14.094412672629169, - -16.74733453951704, - -19.533996482478273, - -21.96929878781958, - -23.316661370747784, - -23.472810013243354, - -22.20928500607303, - -19.654111884259326, - -16.124856791705323, - -12.361578226480642, - -8.486281964440357, - -5.010883050584455, - -2.356417980443621, - -0.16282036868482724, - 1.3688165620535726, - 2.5383545296324184, - 3.6160469350289928, - 4.472728581352624, - 5.275586949132492, - 5.85441924814261, - 6.000256917549075, - 5.692682442847814, - 4.846828426547615, - 3.552874536860217, - 2.0186818902391024, - 0.5558023297897586, - -0.7318795502444231, - -1.5332575349335806, - -1.8700295358287597, - -1.8937778414249349, - -1.6983973261257082, - -1.535144157200885, - -1.5839361358346975, - -1.892279421881607, - -2.42926930495294, - -3.0022177063099678, - -3.464163313586295, - -3.6277479316424497, - -3.375832437080987, - -2.76802719399258, - -1.956660615579624, - -1.1165086134724695, - -0.43751171447676823, - -0.10868950083969589, - -0.0641479170602275, - -0.21931975612351165, - -0.40234119048738604, - -0.39544526899784604, - -0.07283778958462826, - 0.5673205477449184, - 1.4118646570234492, - 2.2035695945842058, - 2.7811965210126712, - 2.922333131195618, - 2.671157289108447, - 2.273533640516494, - 2.1174117908349843, - 2.7005711207303538, - 4.497442302530647, - 7.776076840009381, - 12.722937849902213, - 18.571300451406202, - 25.212061002328987, - 31.756691470389786, - 36.79311207787313 - ], - "pressure:branch132_seg0:J107": [ - 191291.99818300956, - 205217.458835538, - 209752.74094228298, - 200824.4191700029, - 183456.77686119825, - 160874.6838479352, - 135459.4245872704, - 107729.82746442447, - 86244.006167662, - 65675.28206884146, - 47080.591760564326, - 32596.94777946357, - 16216.560277495491, - 1381.0745511001357, - -14004.140850583486, - -30262.397358828315, - -43942.53254018654, - -57237.41287740722, - -66818.28069363153, - -73007.1542920378, - -77510.12968372756, - -79257.00568666327, - -80033.682567396, - -80500.70317909542, - -80515.07693100616, - -80249.08737368727, - -78892.98978046111, - -75884.64982998998, - -71138.33647145252, - -65225.42968462958, - -58746.61716877427, - -53952.10001208536, - -52481.19287333826, - -54903.292172259804, - -62401.45734021472, - -74132.28531434026, - -88313.8974388941, - -101467.22841459262, - -112944.37260078397, - -117968.60496463835, - -116307.8579831134, - -108187.24979777032, - -93943.0224706965, - -74998.29160921166, - -55989.198724578695, - -37387.56965452255, - -20186.012287243273, - -8067.683998039508, - 1703.6880962231244, - 9085.992166966074, - 14230.215788211528, - 19702.392222038194, - 23865.70561441606, - 27269.378129437675, - 30052.088219610927, - 29981.87000920151, - 27520.314402032196, - 22565.767182800675, - 15685.532718893974, - 7454.133513568811, - 623.3920141476025, - -5014.61791183333, - -8718.483986684132, - -9529.884172302103, - -9202.090133321535, - -8239.971627316878, - -7550.4268686219375, - -8155.769152281935, - -10092.274752882284, - -13037.55621775595, - -15840.721548831545, - -17760.022534398035, - -18124.83294804824, - -16289.653512032877, - -12696.407642451417, - -8439.631560575504, - -4446.197702210724, - -1284.11684405878, - -165.00572808727838, - -533.2384207247898, - -1410.3557890482084, - -2169.317324241549, - -1768.0384955961588, - 392.64086545935214, - 3958.5308529171216, - 8485.728877720618, - 12117.962530149838, - 14339.184988752226, - 14581.523983467892, - 12796.996272163433, - 10777.475704027329, - 10755.979626962879, - 15139.766005530222, - 26223.257160057226, - 44697.06180481747, - 71877.86723222972, - 102298.97892831305, - 135334.66487934734, - 168574.82775536607, - 191291.99818300956 - ], - "flow:J107:branch132_seg1": [ - 36.79311207787313, - 40.416180331270645, - 41.76078840425883, - 40.7221794300811, - 37.87597358410143, - 33.63810160573586, - 28.540282393994005, - 23.32825532761082, - 18.65758972546955, - 14.234730325560767, - 10.600305169963615, - 7.387067982835917, - 4.193873748731455, - 1.236925200271163, - -1.9664348039729749, - -5.074685762929288, - -7.986574207457896, - -10.76954858209331, - -12.778071441018636, - -14.295045844162583, - -15.286740087329564, - -15.731191609633342, - -15.978928970523677, - -16.06883739691328, - -16.09653915869168, - -16.0732072594638, - -15.863487084462482, - -15.37065452454741, - -14.541183202863849, - -13.412243288378038, - -12.136788238970132, - -11.087252915834794, - -10.527135190487453, - -10.765456736250949, - -11.982766546931185, - -14.094412672629169, - -16.74733453951704, - -19.533996482478273, - -21.96929878781958, - -23.316661370747784, - -23.472810013243354, - -22.20928500607303, - -19.654111884259326, - -16.124856791705323, - -12.361578226480642, - -8.486281964440357, - -5.010883050584455, - -2.356417980443621, - -0.16282036868482724, - 1.3688165620535726, - 2.5383545296324184, - 3.6160469350289928, - 4.472728581352624, - 5.275586949132492, - 5.85441924814261, - 6.000256917549075, - 5.692682442847814, - 4.846828426547615, - 3.552874536860217, - 2.0186818902391024, - 0.5558023297897586, - -0.7318795502444231, - -1.5332575349335806, - -1.8700295358287597, - -1.8937778414249349, - -1.6983973261257082, - -1.535144157200885, - -1.5839361358346975, - -1.892279421881607, - -2.42926930495294, - -3.0022177063099678, - -3.464163313586295, - -3.6277479316424497, - -3.375832437080987, - -2.76802719399258, - -1.956660615579624, - -1.1165086134724695, - -0.43751171447676823, - -0.10868950083969589, - -0.0641479170602275, - -0.21931975612351165, - -0.40234119048738604, - -0.39544526899784604, - -0.07283778958462826, - 0.5673205477449184, - 1.4118646570234492, - 2.2035695945842058, - 2.7811965210126712, - 2.922333131195618, - 2.671157289108447, - 2.273533640516494, - 2.1174117908349843, - 2.7005711207303538, - 4.497442302530647, - 7.776076840009381, - 12.722937849902213, - 18.571300451406202, - 25.212061002328987, - 31.756691470389786, - 36.79311207787313 - ], - "pressure:J107:branch132_seg1": [ - 191291.99818300956, - 205217.458835538, - 209752.74094228298, - 200824.4191700029, - 183456.77686119825, - 160874.6838479352, - 135459.4245872704, - 107729.82746442447, - 86244.006167662, - 65675.28206884146, - 47080.591760564326, - 32596.94777946357, - 16216.560277495491, - 1381.0745511001357, - -14004.140850583486, - -30262.397358828315, - -43942.53254018654, - -57237.41287740722, - -66818.28069363153, - -73007.1542920378, - -77510.12968372756, - -79257.00568666327, - -80033.682567396, - -80500.70317909542, - -80515.07693100616, - -80249.08737368727, - -78892.98978046111, - -75884.64982998998, - -71138.33647145252, - -65225.42968462958, - -58746.61716877427, - -53952.10001208536, - -52481.19287333826, - -54903.292172259804, - -62401.45734021472, - -74132.28531434026, - -88313.8974388941, - -101467.22841459262, - -112944.37260078397, - -117968.60496463835, - -116307.8579831134, - -108187.24979777032, - -93943.0224706965, - -74998.29160921166, - -55989.198724578695, - -37387.56965452255, - -20186.012287243273, - -8067.683998039508, - 1703.6880962231244, - 9085.992166966074, - 14230.215788211528, - 19702.392222038194, - 23865.70561441606, - 27269.378129437675, - 30052.088219610927, - 29981.87000920151, - 27520.314402032196, - 22565.767182800675, - 15685.532718893974, - 7454.133513568811, - 623.3920141476025, - -5014.61791183333, - -8718.483986684132, - -9529.884172302103, - -9202.090133321535, - -8239.971627316878, - -7550.4268686219375, - -8155.769152281935, - -10092.274752882284, - -13037.55621775595, - -15840.721548831545, - -17760.022534398035, - -18124.83294804824, - -16289.653512032877, - -12696.407642451417, - -8439.631560575504, - -4446.197702210724, - -1284.11684405878, - -165.00572808727838, - -533.2384207247898, - -1410.3557890482084, - -2169.317324241549, - -1768.0384955961588, - 392.64086545935214, - 3958.5308529171216, - 8485.728877720618, - 12117.962530149838, - 14339.184988752226, - 14581.523983467892, - 12796.996272163433, - 10777.475704027329, - 10755.979626962879, - 15139.766005530222, - 26223.257160057226, - 44697.06180481747, - 71877.86723222972, - 102298.97892831305, - 135334.66487934734, - 168574.82775536607, - 191291.99818300956 - ], - "flow:branch132_seg1:J108": [ - 36.77531099779406, - 40.411393706023084, - 41.76523247085581, - 40.73287106639545, - 37.89586368561253, - 33.665945830709866, - 28.567677631158414, - 23.363940067210677, - 18.68945451274965, - 14.253055713608163, - 10.627719776805257, - 7.405951935092459, - 4.2144649589945296, - 1.2588396242984843, - -1.9535483661260895, - -5.0511707684982925, - -7.9730232935809395, - -10.762689237738508, - -12.77067274476761, - -14.291300461944978, - -15.286415552351151, - -15.73041545284722, - -15.979665948992222, - -16.06956647212852, - -16.096333763253675, - -16.07439711905479, - -15.86526260225726, - -15.37448946658189, - -14.546245337036748, - -13.419588820844087, - -12.142216506030582, - -11.092827197941979, - -10.527018272562584, - -10.76023891120236, - -11.971269353458682, - -14.08107639418696, - -16.725226953143206, - -19.519932761177355, - -21.958415726251697, - -23.312752174786127, - -23.478713093500808, - -22.224925207662736, - -19.668392523780177, - -16.14091821897729, - -12.37825619289222, - -8.5009211061269, - -5.019967479966329, - -2.3647824271087403, - -0.16715886684515435, - 1.3664925995746564, - 2.532148520969697, - 3.6139686953881363, - 4.468156545323651, - 5.272426645670565, - 5.852751603930131, - 6.000359030309361, - 5.696547756150462, - 4.854184664674896, - 3.561035213156972, - 2.030260596545874, - 0.565397133370815, - -0.728158298644473, - -1.528789971662101, - -1.869239319718135, - -1.8953589422208401, - -1.6994377107204146, - -1.5350449801762176, - -1.5823776330442396, - -1.890219383838573, - -2.4268214353505617, - -3.0004682398288667, - -3.463229473925802, - -3.6293481392697577, - -3.377933809286198, - -2.7719131565685897, - -1.9598747246010972, - -1.120461910851197, - -0.4387936549777725, - -0.10974878016506048, - -0.06337762092663679, - -0.21807863454725207, - -0.40208073966222846, - -0.39669570967730555, - -0.076454132558565, - 0.5627391806858936, - 1.4055889901275647, - 2.1988990938774866, - 2.78061902931865, - 2.923077441133184, - 2.6729942873093737, - 2.275326448469163, - 2.115381096109191, - 2.6936365250236647, - 4.480445404841489, - 7.7581874757206215, - 12.699296349363625, - 18.549432983762603, - 25.180849825224204, - 31.742062601260773, - 36.77531099779406 - ], - "pressure:branch132_seg1:J108": [ - 187655.8365586884, - 202916.06239031343, - 208205.39611556072, - 200564.28972131418, - 184345.87934950893, - 162433.05468800754, - 137173.5135417446, - 110190.18032199661, - 88257.52933931461, - 67213.66839284223, - 48957.586817925476, - 33971.45925053199, - 17859.57508153823, - 3139.1936993836534, - -12417.726448295547, - -28235.22331758474, - -42259.430421360405, - -55683.672174645704, - -65386.86947510581, - -72017.87895680913, - -76669.33986572863, - -78568.92138035211, - -79495.1193825751, - -79957.246240949, - -80001.99521793595, - -79797.99906974693, - -78550.36448204408, - -75753.53494352671, - -71228.85483048146, - -65469.30719380504, - -59035.370055153384, - -54140.783307113816, - -52207.11921860094, - -54181.79477577323, - -61110.10691274068, - -72375.3071763707, - -86078.93453675692, - -99478.09387238642, - -111114.67754611764, - -116742.09381131297, - -115956.25073936414, - -108584.17740679112, - -94872.13756474113, - -76516.53724697114, - -57655.814716807174, - -38905.42467131008, - -21700.670980822808, - -9254.946473524311, - 853.0672121032648, - 8317.079946103338, - 13606.919759878027, - 19069.052233363578, - 23207.91476754527, - 26792.188177632142, - 29609.014035217475, - 29804.309232926265, - 27681.948096532058, - 23022.455934412006, - 16329.703108663714, - 8357.065212790998, - 1406.8379694390458, - -4493.580004249963, - -8272.412355258522, - -9402.49481975252, - -9238.628784408096, - -8279.82256259243, - -7545.389209391868, - -8014.726718301892, - -9811.314495008328, - -12645.418439584517, - -15463.582846546262, - -17501.676809006178, - -18033.548665792954, - -16394.831552397973, - -13018.115716431164, - -8835.099054791972, - -4814.941022467042, - -1565.1427294696095, - -292.7401047471736, - -455.5826126539458, - -1292.331105829774, - -2101.882625083254, - -1833.1070221898747, - 116.84921542634646, - 3532.438562549211, - 7916.908092232656, - 11641.400403260119, - 14092.477132703467, - 14501.909230390509, - 12913.04633631109, - 10920.297785986744, - 10618.528946875993, - 14465.65722589363, - 24696.762411181466, - 42419.37195715216, - 68553.23890114734, - 98489.51909310515, - 131279.05419163703, - 164343.28940463203, - 187655.8365586884 - ], - "flow:J108:branch132_seg2": [ - 36.77531099779406, - 40.411393706023084, - 41.76523247085581, - 40.73287106639545, - 37.89586368561253, - 33.665945830709866, - 28.567677631158414, - 23.363940067210677, - 18.68945451274965, - 14.253055713608163, - 10.627719776805257, - 7.405951935092459, - 4.2144649589945296, - 1.2588396242984843, - -1.9535483661260895, - -5.0511707684982925, - -7.9730232935809395, - -10.762689237738508, - -12.77067274476761, - -14.291300461944978, - -15.286415552351151, - -15.73041545284722, - -15.979665948992222, - -16.06956647212852, - -16.096333763253675, - -16.07439711905479, - -15.86526260225726, - -15.37448946658189, - -14.546245337036748, - -13.419588820844087, - -12.142216506030582, - -11.092827197941979, - -10.527018272562584, - -10.76023891120236, - -11.971269353458682, - -14.08107639418696, - -16.725226953143206, - -19.519932761177355, - -21.958415726251697, - -23.312752174786127, - -23.478713093500808, - -22.224925207662736, - -19.668392523780177, - -16.14091821897729, - -12.37825619289222, - -8.5009211061269, - -5.019967479966329, - -2.3647824271087403, - -0.16715886684515435, - 1.3664925995746564, - 2.532148520969697, - 3.6139686953881363, - 4.468156545323651, - 5.272426645670565, - 5.852751603930131, - 6.000359030309361, - 5.696547756150462, - 4.854184664674896, - 3.561035213156972, - 2.030260596545874, - 0.565397133370815, - -0.728158298644473, - -1.528789971662101, - -1.869239319718135, - -1.8953589422208401, - -1.6994377107204146, - -1.5350449801762176, - -1.5823776330442396, - -1.890219383838573, - -2.4268214353505617, - -3.0004682398288667, - -3.463229473925802, - -3.6293481392697577, - -3.377933809286198, - -2.7719131565685897, - -1.9598747246010972, - -1.120461910851197, - -0.4387936549777725, - -0.10974878016506048, - -0.06337762092663679, - -0.21807863454725207, - -0.40208073966222846, - -0.39669570967730555, - -0.076454132558565, - 0.5627391806858936, - 1.4055889901275647, - 2.1988990938774866, - 2.78061902931865, - 2.923077441133184, - 2.6729942873093737, - 2.275326448469163, - 2.115381096109191, - 2.6936365250236647, - 4.480445404841489, - 7.7581874757206215, - 12.699296349363625, - 18.549432983762603, - 25.180849825224204, - 31.742062601260773, - 36.77531099779406 - ], - "pressure:J108:branch132_seg2": [ - 187655.8365586884, - 202916.06239031343, - 208205.39611556072, - 200564.28972131418, - 184345.87934950893, - 162433.05468800754, - 137173.5135417446, - 110190.18032199661, - 88257.52933931461, - 67213.66839284223, - 48957.586817925476, - 33971.45925053199, - 17859.57508153823, - 3139.1936993836534, - -12417.726448295547, - -28235.22331758474, - -42259.430421360405, - -55683.672174645704, - -65386.86947510581, - -72017.87895680913, - -76669.33986572863, - -78568.92138035211, - -79495.1193825751, - -79957.246240949, - -80001.99521793595, - -79797.99906974693, - -78550.36448204408, - -75753.53494352671, - -71228.85483048146, - -65469.30719380504, - -59035.370055153384, - -54140.783307113816, - -52207.11921860094, - -54181.79477577323, - -61110.10691274068, - -72375.3071763707, - -86078.93453675692, - -99478.09387238642, - -111114.67754611764, - -116742.09381131297, - -115956.25073936414, - -108584.17740679112, - -94872.13756474113, - -76516.53724697114, - -57655.814716807174, - -38905.42467131008, - -21700.670980822808, - -9254.946473524311, - 853.0672121032648, - 8317.079946103338, - 13606.919759878027, - 19069.052233363578, - 23207.91476754527, - 26792.188177632142, - 29609.014035217475, - 29804.309232926265, - 27681.948096532058, - 23022.455934412006, - 16329.703108663714, - 8357.065212790998, - 1406.8379694390458, - -4493.580004249963, - -8272.412355258522, - -9402.49481975252, - -9238.628784408096, - -8279.82256259243, - -7545.389209391868, - -8014.726718301892, - -9811.314495008328, - -12645.418439584517, - -15463.582846546262, - -17501.676809006178, - -18033.548665792954, - -16394.831552397973, - -13018.115716431164, - -8835.099054791972, - -4814.941022467042, - -1565.1427294696095, - -292.7401047471736, - -455.5826126539458, - -1292.331105829774, - -2101.882625083254, - -1833.1070221898747, - 116.84921542634646, - 3532.438562549211, - 7916.908092232656, - 11641.400403260119, - 14092.477132703467, - 14501.909230390509, - 12913.04633631109, - 10920.297785986744, - 10618.528946875993, - 14465.65722589363, - 24696.762411181466, - 42419.37195715216, - 68553.23890114734, - 98489.51909310515, - 131279.05419163703, - 164343.28940463203, - 187655.8365586884 - ], - "flow:branch133_seg0:J109": [ - 26.144364461044066, - 29.122900004078993, - 30.51777727639711, - 30.227560756686668, - 28.53896275673079, - 25.728909024390973, - 22.176342735444766, - 18.42425093148522, - 14.90701409403254, - 11.56535795700423, - 8.761313864839083, - 6.255418519979097, - 3.851918933245456, - 1.6096843245188026, - -0.7654698978091485, - -3.0697136189534193, - -5.286387808390674, - -7.3824286476501335, - -8.987616469522303, - -10.23689419087685, - -11.080875059409756, - -11.525506503334746, - -11.78004186940042, - -11.8907803110796, - -11.938421357555981, - -11.939595057994879, - -11.816757002918703, - -11.504135067134534, - -10.953373612721666, - -10.178172302979535, - -9.271427468874416, - -8.474543498216654, - -7.976708540661107, - -8.015469714934808, - -8.732454927385563, - -10.111229765356503, - -11.935799328826025, - -13.951854322801818, - -15.784136748024872, - -16.9500823788233, - -17.297459742905396, - -16.63467310886496, - -15.005988676296889, - -12.62270139944589, - -9.938865828720527, - -7.102761377655791, - -4.494686455924481, - -2.3945355853042294, - -0.6537180337080115, - 0.6060677284076873, - 1.5735576419178885, - 2.420657388729129, - 3.1016965939076715, - 3.7301140357321168, - 4.199702328578259, - 4.386052589670992, - 4.251259976184732, - 3.7297172832322696, - 2.867444663761536, - 1.7996549200816565, - 0.7230227822273471, - -0.2570935479580045, - -0.9217444840589719, - -1.2678569551185936, - -1.360246498276201, - -1.268499511707186, - -1.1624558512009455, - -1.1743582840441649, - -1.3599735709592398, - -1.7125094500046356, - -2.1191582203316215, - -2.473935407827819, - -2.639950944194656, - -2.525110556573141, - -2.1493790291329185, - -1.598931678406121, - -0.9957397480409785, - -0.47685040804724477, - -0.1803000488940194, - -0.08740866870579826, - -0.1573191090738567, - -0.27469198412924883, - -0.2895815348107245, - -0.10155712151167025, - 0.31314850755588725, - 0.8903673564102785, - 1.4719309808537406, - 1.9309451228635748, - 2.104129950876735, - 1.9969916899316422, - 1.7471149688013994, - 1.6074448570539939, - 1.9258827568123016, - 3.0452581596245203, - 5.207689738696004, - 8.545270967721946, - 12.65435790143716, - 17.412794197585185, - 22.212419170264816, - 26.144364461044066 - ], - "pressure:branch133_seg0:J109": [ - 180988.26585471502, - 197137.88908578502, - 204086.96857930862, - 198475.5033300639, - 184169.59907957108, - 164042.27028141072, - 140190.06198256067, - 113927.03364772949, - 91940.58338005585, - 71004.32049971918, - 52378.24393723418, - 37000.880115761785, - 20905.924850176645, - 5976.822888061991, - -9383.675625752741, - -25047.593337037175, - -39266.86055442695, - -52714.318369241824, - -62735.546994434924, - -69769.1543029522, - -74860.93689701048, - -77190.50410270122, - -78412.91977069309, - -79056.27898862772, - -79206.31553824381, - -79092.96833331023, - -77983.7957918595, - -75424.96947604445, - -71204.48053112016, - -65792.54397327716, - -59589.201795660374, - -54698.54612125579, - -52494.40683273227, - -53847.18794432424, - -59928.3064041171, - -70274.71118640351, - -83209.53371009645, - -96274.89423439236, - -107855.44777720176, - -114139.97008207024, - -114256.80117265068, - -108099.45421808794, - -95578.86393085332, - -78278.80859625254, - -60163.814915079354, - -41843.813533567576, - -24582.78473250019, - -11867.319688893405, - -1379.4228139837046, - 6514.641620806554, - 12093.611291097955, - 17801.52094709527, - 22054.070716799237, - 25694.016920071193, - 28689.858967669745, - 29200.06604621428, - 27473.531368551943, - 23335.096547890917, - 17131.899939291823, - 9566.301999816313, - 2687.442720967034, - -3200.247950261925, - -7254.5526528202345, - -8780.179039867842, - -8930.022168924328, - -8218.924668391337, - -7563.928749589748, - -7941.744009592933, - -9560.718114655605, - -12197.819011820651, - -14887.435044613381, - -16926.23396624906, - -17636.717397128086, - -16287.475872268076, - -13246.167939089613, - -9326.549532949906, - -5480.771823852319, - -2188.2016049211975, - -736.2599988553181, - -669.7194586408568, - -1277.0722114701298, - -1985.4443261349074, - -1787.6959484663798, - -71.31388554374189, - 3062.3253442152077, - 7175.526243412681, - 10855.159274388061, - 13376.75450970124, - 14071.514665369443, - 12822.835752166016, - 11041.6802535828, - 10676.415499079183, - 14061.536031786953, - 23372.51376887879, - 39865.98698230292, - 64541.917180671386, - 93140.25331718611, - 124641.1133293118, - 157477.14963178927, - 180988.26585471502 - ], - "flow:J109:branch133_seg1": [ - 26.144364461044066, - 29.122900004078993, - 30.51777727639711, - 30.227560756686668, - 28.53896275673079, - 25.728909024390973, - 22.176342735444766, - 18.42425093148522, - 14.90701409403254, - 11.56535795700423, - 8.761313864839083, - 6.255418519979097, - 3.851918933245456, - 1.6096843245188026, - -0.7654698978091485, - -3.0697136189534193, - -5.286387808390674, - -7.3824286476501335, - -8.987616469522303, - -10.23689419087685, - -11.080875059409756, - -11.525506503334746, - -11.78004186940042, - -11.8907803110796, - -11.938421357555981, - -11.939595057994879, - -11.816757002918703, - -11.504135067134534, - -10.953373612721666, - -10.178172302979535, - -9.271427468874416, - -8.474543498216654, - -7.976708540661107, - -8.015469714934808, - -8.732454927385563, - -10.111229765356503, - -11.935799328826025, - -13.951854322801818, - -15.784136748024872, - -16.9500823788233, - -17.297459742905396, - -16.63467310886496, - -15.005988676296889, - -12.62270139944589, - -9.938865828720527, - -7.102761377655791, - -4.494686455924481, - -2.3945355853042294, - -0.6537180337080115, - 0.6060677284076873, - 1.5735576419178885, - 2.420657388729129, - 3.1016965939076715, - 3.7301140357321168, - 4.199702328578259, - 4.386052589670992, - 4.251259976184732, - 3.7297172832322696, - 2.867444663761536, - 1.7996549200816565, - 0.7230227822273471, - -0.2570935479580045, - -0.9217444840589719, - -1.2678569551185936, - -1.360246498276201, - -1.268499511707186, - -1.1624558512009455, - -1.1743582840441649, - -1.3599735709592398, - -1.7125094500046356, - -2.1191582203316215, - -2.473935407827819, - -2.639950944194656, - -2.525110556573141, - -2.1493790291329185, - -1.598931678406121, - -0.9957397480409785, - -0.47685040804724477, - -0.1803000488940194, - -0.08740866870579826, - -0.1573191090738567, - -0.27469198412924883, - -0.2895815348107245, - -0.10155712151167025, - 0.31314850755588725, - 0.8903673564102785, - 1.4719309808537406, - 1.9309451228635748, - 2.104129950876735, - 1.9969916899316422, - 1.7471149688013994, - 1.6074448570539939, - 1.9258827568123016, - 3.0452581596245203, - 5.207689738696004, - 8.545270967721946, - 12.65435790143716, - 17.412794197585185, - 22.212419170264816, - 26.144364461044066 - ], - "pressure:J109:branch133_seg1": [ - 180988.26585471502, - 197137.88908578502, - 204086.96857930862, - 198475.5033300639, - 184169.59907957108, - 164042.27028141072, - 140190.06198256067, - 113927.03364772949, - 91940.58338005585, - 71004.32049971918, - 52378.24393723418, - 37000.880115761785, - 20905.924850176645, - 5976.822888061991, - -9383.675625752741, - -25047.593337037175, - -39266.86055442695, - -52714.318369241824, - -62735.546994434924, - -69769.1543029522, - -74860.93689701048, - -77190.50410270122, - -78412.91977069309, - -79056.27898862772, - -79206.31553824381, - -79092.96833331023, - -77983.7957918595, - -75424.96947604445, - -71204.48053112016, - -65792.54397327716, - -59589.201795660374, - -54698.54612125579, - -52494.40683273227, - -53847.18794432424, - -59928.3064041171, - -70274.71118640351, - -83209.53371009645, - -96274.89423439236, - -107855.44777720176, - -114139.97008207024, - -114256.80117265068, - -108099.45421808794, - -95578.86393085332, - -78278.80859625254, - -60163.814915079354, - -41843.813533567576, - -24582.78473250019, - -11867.319688893405, - -1379.4228139837046, - 6514.641620806554, - 12093.611291097955, - 17801.52094709527, - 22054.070716799237, - 25694.016920071193, - 28689.858967669745, - 29200.06604621428, - 27473.531368551943, - 23335.096547890917, - 17131.899939291823, - 9566.301999816313, - 2687.442720967034, - -3200.247950261925, - -7254.5526528202345, - -8780.179039867842, - -8930.022168924328, - -8218.924668391337, - -7563.928749589748, - -7941.744009592933, - -9560.718114655605, - -12197.819011820651, - -14887.435044613381, - -16926.23396624906, - -17636.717397128086, - -16287.475872268076, - -13246.167939089613, - -9326.549532949906, - -5480.771823852319, - -2188.2016049211975, - -736.2599988553181, - -669.7194586408568, - -1277.0722114701298, - -1985.4443261349074, - -1787.6959484663798, - -71.31388554374189, - 3062.3253442152077, - 7175.526243412681, - 10855.159274388061, - 13376.75450970124, - 14071.514665369443, - 12822.835752166016, - 11041.6802535828, - 10676.415499079183, - 14061.536031786953, - 23372.51376887879, - 39865.98698230292, - 64541.917180671386, - 93140.25331718611, - 124641.1133293118, - 157477.14963178927, - 180988.26585471502 - ], - "flow:branch133_seg1:J110": [ - 26.090156335895397, - 29.098152176427217, - 30.512620128504587, - 30.244718990576075, - 28.58246382344275, - 25.78799835707658, - 22.232432591583162, - 18.502551463438845, - 14.964009332943865, - 11.603810169638075, - 8.809334233358232, - 6.289293676180425, - 3.8875955529978703, - 1.6444457226326692, - -0.7432709367406672, - -3.0361300145494, - -5.256717567010706, - -7.3711668176435925, - -8.971002252818236, - -10.226417030641477, - -11.077756955682334, - -11.520655731016694, - -11.779887283381424, - -11.890469000116372, - -11.937350262836862, - -11.940842442578935, - -11.82026710165661, - -11.511501142030827, - -10.965726656663291, - -10.193005565052315, - -9.2861658197323, - -8.486456030988746, - -7.977999188309014, - -8.00581727837732, - -8.713308443329586, - -10.08593046840611, - -11.89930571565702, - -13.925864460837731, - -15.766127697201165, - -16.94256823439428, - -17.30830779008947, - -16.657742977076268, - -15.035175106473872, - -12.650587540226015, - -9.974997133734524, - -7.13811706483957, - -4.5197222868053215, - -2.4218142484578107, - -0.6689906589547776, - 0.5918596740538107, - 1.557551388251303, - 2.4088599055016053, - 3.089911570591431, - 3.7217572824188947, - 4.193380267895968, - 4.3856009954837365, - 4.258330871979698, - 3.7437194578495276, - 2.882652961203627, - 1.8220154922629854, - 0.7390475178594329, - -0.2508230926429753, - -0.91466414160141, - -1.2659743321958736, - -1.3631103962748088, - -1.2701778500113965, - -1.1624487761686055, - -1.172264506040576, - -1.3557363797398476, - -1.7081218065717052, - -2.1144299770488595, - -2.470701694368033, - -2.6411470617983297, - -2.529143392211495, - -2.1569768113351486, - -1.6082496768326253, - -1.0049569323782352, - -0.48332100831609515, - -0.18340318105373493, - -0.08661761313700521, - -0.1548713422042762, - -0.27400056048525157, - -0.29168840421246367, - -0.10804661827957794, - 0.30497027875639543, - 0.8788920143554566, - 1.464289017568261, - 1.930345305411959, - 2.105313874280018, - 2.0002677226482315, - 1.7501213164916762, - 1.6049643257000608, - 1.9132121443197374, - 3.018978354695014, - 5.167343129026508, - 8.499654316529483, - 12.596513209524256, - 17.33726377351101, - 22.15511825627455, - 26.090156335895397 - ], - "pressure:branch133_seg1:J110": [ - 173540.89876643417, - 191905.0907359865, - 200318.726133976, - 197222.2274738196, - 185199.66906164176, - 166369.7534702976, - 143005.03867042367, - 118075.61160435829, - 95414.15002437966, - 73885.84850261341, - 55571.21084122525, - 39532.28443937132, - 23759.5772425159, - 9049.524839100597, - -6421.037344550387, - -21577.13912356013, - -35945.55951649733, - -49601.56493897273, - -59855.529250979394, - -67617.38793951357, - -73002.06650288335, - -75680.0446484199, - -77204.84890936289, - -77895.27022172803, - -78142.93453565052, - -78120.34371978683, - -77222.92461420053, - -75024.38636057741, - -71243.33412875734, - -66088.54991041988, - -60084.51317887954, - -54996.289439106775, - -52072.66759002839, - -52655.50749830502, - -57767.5791306472, - -67184.9330802188, - -79361.18580226024, - -92508.72503905318, - -104338.47313548544, - -111516.33219306673, - -113108.06934765758, - -108210.95089786904, - -96965.4632786054, - -80822.1662349477, - -63187.92715786498, - -44796.70752656834, - -27676.709428906084, - -14381.795514357362, - -3299.810540068576, - 4785.11469604448, - 10803.758070106538, - 16407.42853482161, - 20766.17046453351, - 24707.77322596588, - 27751.39928585309, - 28743.902674491153, - 27605.071435953167, - 23989.062269504455, - 18179.80472238178, - 11059.593094390168, - 4068.9590185114666, - -2177.862327219909, - -6400.173122802202, - -8420.77781945388, - -8885.989281063628, - -8242.701436194788, - -7556.429316390977, - -7729.264196266153, - -9071.813417935895, - -11486.06274537764, - -14143.148881506391, - -16360.692572780927, - -17332.336483049865, - -16384.939947977513, - -13748.30980759827, - -10058.007661459294, - -6166.798498100744, - -2807.0982888380345, - -1033.445816451228, - -601.1393699582251, - -1099.9236160899607, - -1852.4021136909905, - -1859.1846588688177, - -485.88772027512846, - 2355.8731812436554, - 6215.99659796278, - 9981.86697315198, - 12836.891906301928, - 13820.010190727107, - 12938.249874036903, - 11256.826898476495, - 10512.441651952195, - 12996.149102887206, - 20922.49865471804, - 35773.23861837829, - 58503.58612439483, - 85814.7062775653, - 116833.88299413817, - 148725.6907339778, - 173540.89876643417 - ], - "flow:J110:branch133_seg2": [ - 26.090156335895397, - 29.098152176427217, - 30.512620128504587, - 30.244718990576075, - 28.58246382344275, - 25.78799835707658, - 22.232432591583162, - 18.502551463438845, - 14.964009332943865, - 11.603810169638075, - 8.809334233358232, - 6.289293676180425, - 3.8875955529978703, - 1.6444457226326692, - -0.7432709367406672, - -3.0361300145494, - -5.256717567010706, - -7.3711668176435925, - -8.971002252818236, - -10.226417030641477, - -11.077756955682334, - -11.520655731016694, - -11.779887283381424, - -11.890469000116372, - -11.937350262836862, - -11.940842442578935, - -11.82026710165661, - -11.511501142030827, - -10.965726656663291, - -10.193005565052315, - -9.2861658197323, - -8.486456030988746, - -7.977999188309014, - -8.00581727837732, - -8.713308443329586, - -10.08593046840611, - -11.89930571565702, - -13.925864460837731, - -15.766127697201165, - -16.94256823439428, - -17.30830779008947, - -16.657742977076268, - -15.035175106473872, - -12.650587540226015, - -9.974997133734524, - -7.13811706483957, - -4.5197222868053215, - -2.4218142484578107, - -0.6689906589547776, - 0.5918596740538107, - 1.557551388251303, - 2.4088599055016053, - 3.089911570591431, - 3.7217572824188947, - 4.193380267895968, - 4.3856009954837365, - 4.258330871979698, - 3.7437194578495276, - 2.882652961203627, - 1.8220154922629854, - 0.7390475178594329, - -0.2508230926429753, - -0.91466414160141, - -1.2659743321958736, - -1.3631103962748088, - -1.2701778500113965, - -1.1624487761686055, - -1.172264506040576, - -1.3557363797398476, - -1.7081218065717052, - -2.1144299770488595, - -2.470701694368033, - -2.6411470617983297, - -2.529143392211495, - -2.1569768113351486, - -1.6082496768326253, - -1.0049569323782352, - -0.48332100831609515, - -0.18340318105373493, - -0.08661761313700521, - -0.1548713422042762, - -0.27400056048525157, - -0.29168840421246367, - -0.10804661827957794, - 0.30497027875639543, - 0.8788920143554566, - 1.464289017568261, - 1.930345305411959, - 2.105313874280018, - 2.0002677226482315, - 1.7501213164916762, - 1.6049643257000608, - 1.9132121443197374, - 3.018978354695014, - 5.167343129026508, - 8.499654316529483, - 12.596513209524256, - 17.33726377351101, - 22.15511825627455, - 26.090156335895397 - ], - "pressure:J110:branch133_seg2": [ - 173540.89876643417, - 191905.0907359865, - 200318.726133976, - 197222.2274738196, - 185199.66906164176, - 166369.7534702976, - 143005.03867042367, - 118075.61160435829, - 95414.15002437966, - 73885.84850261341, - 55571.21084122525, - 39532.28443937132, - 23759.5772425159, - 9049.524839100597, - -6421.037344550387, - -21577.13912356013, - -35945.55951649733, - -49601.56493897273, - -59855.529250979394, - -67617.38793951357, - -73002.06650288335, - -75680.0446484199, - -77204.84890936289, - -77895.27022172803, - -78142.93453565052, - -78120.34371978683, - -77222.92461420053, - -75024.38636057741, - -71243.33412875734, - -66088.54991041988, - -60084.51317887954, - -54996.289439106775, - -52072.66759002839, - -52655.50749830502, - -57767.5791306472, - -67184.9330802188, - -79361.18580226024, - -92508.72503905318, - -104338.47313548544, - -111516.33219306673, - -113108.06934765758, - -108210.95089786904, - -96965.4632786054, - -80822.1662349477, - -63187.92715786498, - -44796.70752656834, - -27676.709428906084, - -14381.795514357362, - -3299.810540068576, - 4785.11469604448, - 10803.758070106538, - 16407.42853482161, - 20766.17046453351, - 24707.77322596588, - 27751.39928585309, - 28743.902674491153, - 27605.071435953167, - 23989.062269504455, - 18179.80472238178, - 11059.593094390168, - 4068.9590185114666, - -2177.862327219909, - -6400.173122802202, - -8420.77781945388, - -8885.989281063628, - -8242.701436194788, - -7556.429316390977, - -7729.264196266153, - -9071.813417935895, - -11486.06274537764, - -14143.148881506391, - -16360.692572780927, - -17332.336483049865, - -16384.939947977513, - -13748.30980759827, - -10058.007661459294, - -6166.798498100744, - -2807.0982888380345, - -1033.445816451228, - -601.1393699582251, - -1099.9236160899607, - -1852.4021136909905, - -1859.1846588688177, - -485.88772027512846, - 2355.8731812436554, - 6215.99659796278, - 9981.86697315198, - 12836.891906301928, - 13820.010190727107, - 12938.249874036903, - 11256.826898476495, - 10512.441651952195, - 12996.149102887206, - 20922.49865471804, - 35773.23861837829, - 58503.58612439483, - 85814.7062775653, - 116833.88299413817, - 148725.6907339778, - 173540.89876643417 - ], - "flow:branch134_seg0:J111": [ - 19.946413312727312, - 22.41984657182276, - 23.68436655612911, - 23.667081862525393, - 22.524925001669086, - 20.454715287394666, - 17.752574117148605, - 14.86696709768221, - 12.065523044439505, - 9.420873014115504, - 7.191489088866046, - 5.181381775976113, - 3.302849711243622, - 1.5365445771374246, - -0.3171315226534895, - -2.10870611326359, - -3.8647802493273327, - -5.5243335731991206, - -6.823697488413241, - -7.854375929731907, - -8.557339911553408, - -8.946983270116293, - -9.171744305509037, - -9.270647679802837, - -9.315884662081766, - -9.324256833546379, - -9.244477754127349, - -9.0263770241275, - -8.627643002170378, - -8.047706770529187, - -7.3541720742000365, - -6.715745829702674, - -6.281000416031937, - -6.243728017293897, - -6.721281638369628, - -7.71983086343979, - -9.089883779275041, - -10.660444921353015, - -12.117410601364204, - -13.113002720344836, - -13.494659934520392, - -13.092754973195794, - -11.928915584141663, - -10.15163447670536, - -8.091166691460984, - -5.878796600436133, - -3.8180554217290634, - -2.119471942332114, - -0.7081640344123247, - 0.3202567533485399, - 1.11147067880106, - 1.7847476894761203, - 2.3325211682091975, - 2.836749507360582, - 3.220451815708323, - 3.404546802890588, - 3.343191919094082, - 2.982788730910021, - 2.347479950075535, - 1.5420374556717549, - 0.6932158769938647, - -0.09204950894237868, - -0.6426784658029088, - -0.9557804977738875, - -1.057288192957572, - -1.001408478646796, - -0.9182404328087512, - -0.9117649359097848, - -1.035306446852495, - -1.2925017938814158, - -1.6052400910712255, - -1.892608223463512, - -2.0462977174191113, - -1.990422094743999, - -1.7291831227266594, - -1.3186832662498236, - -0.8502835460356983, - -0.43385348785711797, - -0.1743641439652845, - -0.07464104193172848, - -0.11240361067428885, - -0.20190532386462598, - -0.22807070104000102, - -0.1080675131288549, - 0.18974254514945604, - 0.6208211443488186, - 1.0803561861087896, - 1.4598460954713175, - 1.6271189647977011, - 1.577206166403191, - 1.3955501372572987, - 1.2659212533765345, - 1.4523602335914612, - 2.224803509737229, - 3.7887061041201178, - 6.257856357126675, - 9.372681924980753, - 13.026669386649496, - 16.769285072064864, - 19.946413312727312 - ], - "pressure:branch134_seg0:J111": [ - 170956.8032941097, - 189303.57265140853, - 198130.2062501845, - 195520.35436579687, - 183964.78562352285, - 165670.45298710527, - 142870.90049710523, - 118069.85210550233, - 95508.87256059606, - 74258.75453360258, - 55841.191608673864, - 39887.180036738384, - 24239.185861494694, - 9532.984235171005, - -5692.149308438755, - -20767.766658992037, - -35118.57205759849, - -48634.09579387859, - -58921.50794122808, - -66694.09330794145, - -72134.02463505555, - -74896.23458564626, - -76447.52615266464, - -77165.57027356856, - -77428.50577722563, - -77422.4572968699, - -76567.80777060465, - -74444.17282922205, - -70762.12027950004, - -65738.32770603667, - -59831.13756769206, - -54759.790832628474, - -51814.09968521758, - -52214.95327411453, - -57090.48148243311, - -66223.70752829932, - -78203.41957180522, - -91191.00111584888, - -102958.91812298703, - -110292.94629244652, - -112041.2971553887, - -107441.14343151855, - -96513.28975346035, - -80647.90743678319, - -63289.47345967226, - -45114.78442755376, - -28055.05370081977, - -14791.617419421893, - -3737.439941552609, - 4386.523434203291, - 10396.816866055542, - 16015.484055912002, - 20359.31476113722, - 24246.930553114213, - 27340.925174257703, - 28406.86107128597, - 27364.287929638376, - 23905.33880508342, - 18264.349387930284, - 11254.28375137189, - 4301.055843643211, - -1870.4622921807515, - -6179.133251302822, - -8270.65035413347, - -8780.775584463952, - -8195.341320725713, - -7513.5608829395815, - -7651.5097742436, - -8942.143031797872, - -11303.15293185219, - -13911.623460553443, - -16118.250989473243, - -17132.48999720825, - -16265.783041855246, - -13718.179701089262, - -10111.504315314633, - -6291.324855669323, - -2926.9059604362897, - -1112.9880507684313, - -639.8480775670307, - -1072.4981074097777, - -1799.7776750865683, - -1835.8168536950923, - -536.2968928443647, - 2212.5627129147806, - 5995.373873020375, - 9744.887820296826, - 12589.013486845437, - 13658.2752960585, - 12861.164202867234, - 11224.57494040241, - 10466.111767469509, - 12822.793174913602, - 20498.543772887064, - 34970.014098737855, - 57272.607512875344, - 84064.89091380234, - 114548.06910169788, - 146276.34243142308, - 170956.8032941097 - ], - "flow:J111:branch134_seg1": [ - 19.946413312727312, - 22.41984657182276, - 23.68436655612911, - 23.667081862525393, - 22.524925001669086, - 20.454715287394666, - 17.752574117148605, - 14.86696709768221, - 12.065523044439505, - 9.420873014115504, - 7.191489088866046, - 5.181381775976113, - 3.302849711243622, - 1.5365445771374246, - -0.3171315226534895, - -2.10870611326359, - -3.8647802493273327, - -5.5243335731991206, - -6.823697488413241, - -7.854375929731907, - -8.557339911553408, - -8.946983270116293, - -9.171744305509037, - -9.270647679802837, - -9.315884662081766, - -9.324256833546379, - -9.244477754127349, - -9.0263770241275, - -8.627643002170378, - -8.047706770529187, - -7.3541720742000365, - -6.715745829702674, - -6.281000416031937, - -6.243728017293897, - -6.721281638369628, - -7.71983086343979, - -9.089883779275041, - -10.660444921353015, - -12.117410601364204, - -13.113002720344836, - -13.494659934520392, - -13.092754973195794, - -11.928915584141663, - -10.15163447670536, - -8.091166691460984, - -5.878796600436133, - -3.8180554217290634, - -2.119471942332114, - -0.7081640344123247, - 0.3202567533485399, - 1.11147067880106, - 1.7847476894761203, - 2.3325211682091975, - 2.836749507360582, - 3.220451815708323, - 3.404546802890588, - 3.343191919094082, - 2.982788730910021, - 2.347479950075535, - 1.5420374556717549, - 0.6932158769938647, - -0.09204950894237868, - -0.6426784658029088, - -0.9557804977738875, - -1.057288192957572, - -1.001408478646796, - -0.9182404328087512, - -0.9117649359097848, - -1.035306446852495, - -1.2925017938814158, - -1.6052400910712255, - -1.892608223463512, - -2.0462977174191113, - -1.990422094743999, - -1.7291831227266594, - -1.3186832662498236, - -0.8502835460356983, - -0.43385348785711797, - -0.1743641439652845, - -0.07464104193172848, - -0.11240361067428885, - -0.20190532386462598, - -0.22807070104000102, - -0.1080675131288549, - 0.18974254514945604, - 0.6208211443488186, - 1.0803561861087896, - 1.4598460954713175, - 1.6271189647977011, - 1.577206166403191, - 1.3955501372572987, - 1.2659212533765345, - 1.4523602335914612, - 2.224803509737229, - 3.7887061041201178, - 6.257856357126675, - 9.372681924980753, - 13.026669386649496, - 16.769285072064864, - 19.946413312727312 - ], - "pressure:J111:branch134_seg1": [ - 170956.8032941097, - 189303.57265140853, - 198130.2062501845, - 195520.35436579687, - 183964.78562352285, - 165670.45298710527, - 142870.90049710523, - 118069.85210550233, - 95508.87256059606, - 74258.75453360258, - 55841.191608673864, - 39887.180036738384, - 24239.185861494694, - 9532.984235171005, - -5692.149308438755, - -20767.766658992037, - -35118.57205759849, - -48634.09579387859, - -58921.50794122808, - -66694.09330794145, - -72134.02463505555, - -74896.23458564626, - -76447.52615266464, - -77165.57027356856, - -77428.50577722563, - -77422.4572968699, - -76567.80777060465, - -74444.17282922205, - -70762.12027950004, - -65738.32770603667, - -59831.13756769206, - -54759.790832628474, - -51814.09968521758, - -52214.95327411453, - -57090.48148243311, - -66223.70752829932, - -78203.41957180522, - -91191.00111584888, - -102958.91812298703, - -110292.94629244652, - -112041.2971553887, - -107441.14343151855, - -96513.28975346035, - -80647.90743678319, - -63289.47345967226, - -45114.78442755376, - -28055.05370081977, - -14791.617419421893, - -3737.439941552609, - 4386.523434203291, - 10396.816866055542, - 16015.484055912002, - 20359.31476113722, - 24246.930553114213, - 27340.925174257703, - 28406.86107128597, - 27364.287929638376, - 23905.33880508342, - 18264.349387930284, - 11254.28375137189, - 4301.055843643211, - -1870.4622921807515, - -6179.133251302822, - -8270.65035413347, - -8780.775584463952, - -8195.341320725713, - -7513.5608829395815, - -7651.5097742436, - -8942.143031797872, - -11303.15293185219, - -13911.623460553443, - -16118.250989473243, - -17132.48999720825, - -16265.783041855246, - -13718.179701089262, - -10111.504315314633, - -6291.324855669323, - -2926.9059604362897, - -1112.9880507684313, - -639.8480775670307, - -1072.4981074097777, - -1799.7776750865683, - -1835.8168536950923, - -536.2968928443647, - 2212.5627129147806, - 5995.373873020375, - 9744.887820296826, - 12589.013486845437, - 13658.2752960585, - 12861.164202867234, - 11224.57494040241, - 10466.111767469509, - 12822.793174913602, - 20498.543772887064, - 34970.014098737855, - 57272.607512875344, - 84064.89091380234, - 114548.06910169788, - 146276.34243142308, - 170956.8032941097 - ], - "flow:branch134_seg1:J112": [ - 19.92878639911549, - 22.410111076750393, - 23.681184396290742, - 23.671442164728038, - 22.53716480112738, - 20.470069564615386, - 17.76769553112198, - 14.886340499258859, - 12.079963940173407, - 9.431420091965675, - 7.203456093248553, - 5.1903771746659775, - 3.3119904087187337, - 1.5461235284982182, - -0.3100338567979876, - -2.0991225724226914, - -3.855179531524039, - -5.5182569351003465, - -6.817123678570452, - -7.850028073142118, - -8.554748368089982, - -8.944963600815813, - -9.171066028197144, - -9.270217322027612, - -9.315560442287417, - -9.324440689837807, - -9.245384546763946, - -9.028384056458476, - -8.631082029541618, - -8.051671259974716, - -7.358461150002971, - -6.718893016639748, - -6.281525152579504, - -6.241602954887021, - -6.716611832673863, - -7.713297199129716, - -9.080949853084421, - -10.652992039131757, - -12.11186192972592, - -13.109827792903793, - -13.496413021230687, - -13.097839200078699, - -11.937475398695344, - -10.161667109436877, - -8.103619472239327, - -5.891008107090091, - -3.8287829169578056, - -2.1290659371227063, - -0.7147748543659151, - 0.3147327796872706, - 1.1068126244103822, - 1.7806059358318276, - 2.329246771309328, - 2.834395224762684, - 3.2186212622124417, - 3.404391153840764, - 3.3450066745185416, - 2.986184092321962, - 2.351507860022481, - 1.5474066505081467, - 0.6974616810291636, - -0.08997916617552756, - -0.6404990802559076, - -0.955031833896393, - -1.057715962510312, - -1.0018235872211114, - -0.9184048612432354, - -0.9113794109749535, - -1.034105270323161, - -1.2908991085998682, - -1.6034386349298446, - -1.8912845759385646, - -2.046120792211075, - -1.9914540841002768, - -1.7314463766955546, - -1.3216468500050975, - -0.8530238574949427, - -0.4360853243660792, - -0.17527607026129097, - -0.07441943566362297, - -0.11176706532646823, - -0.20161211632087142, - -0.22850676548415347, - -0.1095483848398364, - 0.18762962789624374, - 0.6180550648228105, - 1.0782086601816556, - 1.4593140896937817, - 1.6270567374630225, - 1.5780323237774605, - 1.3965092929197191, - 1.2657047618722295, - 1.4493540787243717, - 2.2178400356942873, - 3.776515760361248, - 6.24182204176869, - 9.352338063925478, - 13.002929358115445, - 16.74693064880753, - 19.92878639911549 - ], - "pressure:branch134_seg1:J112": [ - 166429.25372072187, - 185732.61659463373, - 195350.67066050167, - 194047.3435144535, - 183698.52882692922, - 166166.03024414124, - 143782.4884673638, - 119681.62004784802, - 96960.75049349928, - 75549.43984893567, - 57281.445405585946, - 41101.51598733599, - 25639.728014673765, - 11102.879015928143, - -4068.001410858756, - -18870.74776864219, - -33192.73041964408, - -46728.7551889874, - -57151.85029926368, - -65250.38471020335, - -70844.61786390308, - -73815.64281230219, - -75517.38238174173, - -76280.43379977808, - -76596.99941500915, - -76632.72682621663, - -75887.53044381179, - -73949.09384124095, - -70499.83946937672, - -65635.4339376403, - -59864.790687642715, - -54722.46783600991, - -51458.1399206158, - -51480.4683770301, - -55835.667328285264, - -64443.756319072796, - -75983.99921571229, - -88879.29750805745, - -100705.45910563957, - -108446.27075864961, - -110917.14761562402, - -107013.62086259395, - -96847.20429422605, - -81698.55424565535, - -64663.72816999779, - -46576.37742334159, - -29651.8068842615, - -16103.646535850867, - -4809.715522902547, - 3443.4384104427895, - 9673.905424742085, - 15227.47743373575, - 19633.690847640162, - 23635.898113720752, - 26749.365641830576, - 28046.792367146103, - 27294.428904460663, - 24115.055376109707, - 18718.013177993365, - 11949.967912846569, - 5009.581845133179, - -1287.8596894414081, - -5682.797649184581, - -8015.869142074289, - -8694.085648930197, - -8174.262222180273, - -7492.765301836273, - -7530.224899961805, - -8670.663571867166, - -10893.83680007203, - -13467.564334025074, - -15743.887021700122, - -16886.38476229097, - -16236.795154804719, - -13911.91479745164, - -10445.961391238568, - -6629.8979000543595, - -3249.1379065376955, - -1275.0438636181975, - -622.4619166819563, - -987.575653524982, - -1717.9915918062788, - -1849.163778613284, - -721.5257730302585, - 1857.7297757917602, - 5495.859877144322, - 9246.057733842868, - 12225.52809106872, - 13445.877881166065, - 12852.801604568118, - 11296.6416995164, - 10379.431594136695, - 12290.531564140672, - 19234.17487536418, - 32783.10150868617, - 53943.323393915685, - 79963.49073956981, - 110032.11987944202, - 141132.3813624696, - 166429.25372072187 - ], - "flow:J112:branch134_seg2": [ - 19.92878639911549, - 22.410111076750393, - 23.681184396290742, - 23.671442164728038, - 22.53716480112738, - 20.470069564615386, - 17.76769553112198, - 14.886340499258859, - 12.079963940173407, - 9.431420091965675, - 7.203456093248553, - 5.1903771746659775, - 3.3119904087187337, - 1.5461235284982182, - -0.3100338567979876, - -2.0991225724226914, - -3.855179531524039, - -5.5182569351003465, - -6.817123678570452, - -7.850028073142118, - -8.554748368089982, - -8.944963600815813, - -9.171066028197144, - -9.270217322027612, - -9.315560442287417, - -9.324440689837807, - -9.245384546763946, - -9.028384056458476, - -8.631082029541618, - -8.051671259974716, - -7.358461150002971, - -6.718893016639748, - -6.281525152579504, - -6.241602954887021, - -6.716611832673863, - -7.713297199129716, - -9.080949853084421, - -10.652992039131757, - -12.11186192972592, - -13.109827792903793, - -13.496413021230687, - -13.097839200078699, - -11.937475398695344, - -10.161667109436877, - -8.103619472239327, - -5.891008107090091, - -3.8287829169578056, - -2.1290659371227063, - -0.7147748543659151, - 0.3147327796872706, - 1.1068126244103822, - 1.7806059358318276, - 2.329246771309328, - 2.834395224762684, - 3.2186212622124417, - 3.404391153840764, - 3.3450066745185416, - 2.986184092321962, - 2.351507860022481, - 1.5474066505081467, - 0.6974616810291636, - -0.08997916617552756, - -0.6404990802559076, - -0.955031833896393, - -1.057715962510312, - -1.0018235872211114, - -0.9184048612432354, - -0.9113794109749535, - -1.034105270323161, - -1.2908991085998682, - -1.6034386349298446, - -1.8912845759385646, - -2.046120792211075, - -1.9914540841002768, - -1.7314463766955546, - -1.3216468500050975, - -0.8530238574949427, - -0.4360853243660792, - -0.17527607026129097, - -0.07441943566362297, - -0.11176706532646823, - -0.20161211632087142, - -0.22850676548415347, - -0.1095483848398364, - 0.18762962789624374, - 0.6180550648228105, - 1.0782086601816556, - 1.4593140896937817, - 1.6270567374630225, - 1.5780323237774605, - 1.3965092929197191, - 1.2657047618722295, - 1.4493540787243717, - 2.2178400356942873, - 3.776515760361248, - 6.24182204176869, - 9.352338063925478, - 13.002929358115445, - 16.74693064880753, - 19.92878639911549 - ], - "pressure:J112:branch134_seg2": [ - 166429.25372072187, - 185732.61659463373, - 195350.67066050167, - 194047.3435144535, - 183698.52882692922, - 166166.03024414124, - 143782.4884673638, - 119681.62004784802, - 96960.75049349928, - 75549.43984893567, - 57281.445405585946, - 41101.51598733599, - 25639.728014673765, - 11102.879015928143, - -4068.001410858756, - -18870.74776864219, - -33192.73041964408, - -46728.7551889874, - -57151.85029926368, - -65250.38471020335, - -70844.61786390308, - -73815.64281230219, - -75517.38238174173, - -76280.43379977808, - -76596.99941500915, - -76632.72682621663, - -75887.53044381179, - -73949.09384124095, - -70499.83946937672, - -65635.4339376403, - -59864.790687642715, - -54722.46783600991, - -51458.1399206158, - -51480.4683770301, - -55835.667328285264, - -64443.756319072796, - -75983.99921571229, - -88879.29750805745, - -100705.45910563957, - -108446.27075864961, - -110917.14761562402, - -107013.62086259395, - -96847.20429422605, - -81698.55424565535, - -64663.72816999779, - -46576.37742334159, - -29651.8068842615, - -16103.646535850867, - -4809.715522902547, - 3443.4384104427895, - 9673.905424742085, - 15227.47743373575, - 19633.690847640162, - 23635.898113720752, - 26749.365641830576, - 28046.792367146103, - 27294.428904460663, - 24115.055376109707, - 18718.013177993365, - 11949.967912846569, - 5009.581845133179, - -1287.8596894414081, - -5682.797649184581, - -8015.869142074289, - -8694.085648930197, - -8174.262222180273, - -7492.765301836273, - -7530.224899961805, - -8670.663571867166, - -10893.83680007203, - -13467.564334025074, - -15743.887021700122, - -16886.38476229097, - -16236.795154804719, - -13911.91479745164, - -10445.961391238568, - -6629.8979000543595, - -3249.1379065376955, - -1275.0438636181975, - -622.4619166819563, - -987.575653524982, - -1717.9915918062788, - -1849.163778613284, - -721.5257730302585, - 1857.7297757917602, - 5495.859877144322, - 9246.057733842868, - 12225.52809106872, - 13445.877881166065, - 12852.801604568118, - 11296.6416995164, - 10379.431594136695, - 12290.531564140672, - 19234.17487536418, - 32783.10150868617, - 53943.323393915685, - 79963.49073956981, - 110032.11987944202, - 141132.3813624696, - 166429.25372072187 - ], - "flow:branch138_seg0:J113": [ - 55.21805009260667, - 61.44655950114702, - 64.30713013967986, - 63.63870996230197, - 59.96488682875645, - 53.90418650327263, - 46.340272342457816, - 38.3379846597837, - 30.88660668050827, - 23.92302726335885, - 17.99004272540322, - 12.7863762809664, - 7.779710976883511, - 3.095192381361229, - -1.816480148320903, - -6.695021999505126, - -11.30431877482575, - -15.65345952694659, - -19.03152326491999, - -21.635814968546935, - -23.357862187508545, - -24.272945372089247, - -24.76675012414031, - -24.969201765096543, - -25.057398823868308, - -25.04065124935654, - -24.779163642420038, - -24.115241234602895, - -22.952889598234425, - -21.302018669262782, - -19.395541396476347, - -17.693328545909736, - -16.651876946683487, - -16.747776638548444, - -18.28683058546411, - -21.210324394640335, - -25.133776579616008, - -29.380398587011673, - -33.258185074919346, - -35.71631424777102, - -36.41506565036453, - -34.95431329664577, - -31.506174786789874, - -26.442955045933623, - -20.725774681109474, - -14.709455059693141, - -9.238476826271572, - -4.792631433302733, - -1.1678378681696313, - 1.439222402153035, - 3.471307307710559, - 5.180797570816129, - 6.605183995129336, - 7.905652617891067, - 8.873094113074705, - 9.259601502098684, - 8.95446864523265, - 7.829265329322006, - 5.996618989995382, - 3.710692059690636, - 1.4271726065424581, - -0.6221183382600586, - -2.034458234617209, - -2.7458560313969054, - -2.9091243953617907, - -2.694972307640161, - -2.4537752352311206, - -2.46535706878414, - -2.8474866656768403, - -3.5914181711028306, - -4.455822815966943, - -5.215595367679569, - -5.561678730722257, - -5.325127483308547, - -4.520979544797729, - -3.351613253592513, - -2.055546333690977, - -0.9645858253033313, - -0.32719627568284854, - -0.14061866734675124, - -0.30400289227996974, - -0.5640204179460572, - -0.606687294078571, - -0.21191473003163505, - 0.663254409693487, - 1.895827412628083, - 3.130136771901141, - 4.091674177804736, - 4.459015543843552, - 4.2273517480162575, - 3.6811950858918454, - 3.373447486680349, - 4.030322839012933, - 6.406802789447424, - 10.947865128272644, - 17.995590663105173, - 26.675964696700095, - 36.817270601569305, - 46.83567890488152, - 55.21805009260667 - ], - "pressure:branch138_seg0:J113": [ - 193133.82267112422, - 206201.77559864838, - 210438.87597377063, - 200815.7341520049, - 182829.29433811424, - 159959.80589395802, - 134618.057167162, - 106370.85822216184, - 85266.18354511139, - 64987.94676778782, - 46156.95631611805, - 31971.010168687244, - 15419.782622817425, - 525.3267391759518, - -14742.340622145777, - -31215.602201930556, - -44770.06535816604, - -57927.05808452716, - -67499.8777106672, - -73440.30378194108, - -77880.05083426257, - -79589.10243651002, - -80277.65427158981, - -80769.85837749047, - -80767.38871666948, - -80468.94088453482, - -79050.32998132471, - -75928.87133257944, - -71052.03432791529, - -65086.51963480326, - -58583.54197041503, - -53865.28459213087, - -52675.33149462502, - -55335.599377731596, - -63102.31987719385, - -75065.05968905693, - -89460.53460436684, - -102435.25760804041, - -113801.14056004601, - -118513.50715241494, - -116372.34018336317, - -107924.03754617153, - -93413.74007996722, - -74226.63996124869, - -55144.77022548918, - -36666.75762886084, - -19463.36196871736, - -7477.015649675099, - 2066.80322298077, - 9476.57609180957, - 14523.04253967988, - 20040.23035965787, - 24215.166086868685, - 27487.643953422194, - 30275.028769291268, - 30047.78463123838, - 27398.903419747527, - 22297.583805506412, - 15351.763045994356, - 6971.244743728743, - 248.16007850689059, - -5224.830855643985, - -8907.888370200575, - -9562.675131822718, - -9153.601477425404, - -8218.170721027642, - -7560.9529427777825, - -8238.513793191758, - -10252.11192988629, - -13242.441919198913, - -16032.874421136677, - -17874.489131649814, - -18152.786510440128, - -16213.504026222374, - -12513.608539528139, - -8217.15866853849, - -4266.864437410438, - -1142.272046190767, - -114.37815260597483, - -597.9653910362471, - -1482.4451469311537, - -2197.0911775979807, - -1719.4048675369104, - 555.2524193922925, - 4185.696149639772, - 8785.898157271324, - 12343.443846909751, - 14425.949146762125, - 14593.87084378082, - 12719.921725948514, - 10705.19609964846, - 10851.800186354158, - 15544.578482867577, - 27052.318494248597, - 45957.36478042652, - 73616.05944190598, - 104315.33104564014, - 137375.82413874488, - 170772.0162702801, - 193133.82267112422 - ], - "flow:J113:branch138_seg1": [ - 55.21805009260667, - 61.44655950114702, - 64.30713013967986, - 63.63870996230197, - 59.96488682875645, - 53.90418650327263, - 46.340272342457816, - 38.3379846597837, - 30.88660668050827, - 23.92302726335885, - 17.99004272540322, - 12.7863762809664, - 7.779710976883511, - 3.095192381361229, - -1.816480148320903, - -6.695021999505126, - -11.30431877482575, - -15.65345952694659, - -19.03152326491999, - -21.635814968546935, - -23.357862187508545, - -24.272945372089247, - -24.76675012414031, - -24.969201765096543, - -25.057398823868308, - -25.04065124935654, - -24.779163642420038, - -24.115241234602895, - -22.952889598234425, - -21.302018669262782, - -19.395541396476347, - -17.693328545909736, - -16.651876946683487, - -16.747776638548444, - -18.28683058546411, - -21.210324394640335, - -25.133776579616008, - -29.380398587011673, - -33.258185074919346, - -35.71631424777102, - -36.41506565036453, - -34.95431329664577, - -31.506174786789874, - -26.442955045933623, - -20.725774681109474, - -14.709455059693141, - -9.238476826271572, - -4.792631433302733, - -1.1678378681696313, - 1.439222402153035, - 3.471307307710559, - 5.180797570816129, - 6.605183995129336, - 7.905652617891067, - 8.873094113074705, - 9.259601502098684, - 8.95446864523265, - 7.829265329322006, - 5.996618989995382, - 3.710692059690636, - 1.4271726065424581, - -0.6221183382600586, - -2.034458234617209, - -2.7458560313969054, - -2.9091243953617907, - -2.694972307640161, - -2.4537752352311206, - -2.46535706878414, - -2.8474866656768403, - -3.5914181711028306, - -4.455822815966943, - -5.215595367679569, - -5.561678730722257, - -5.325127483308547, - -4.520979544797729, - -3.351613253592513, - -2.055546333690977, - -0.9645858253033313, - -0.32719627568284854, - -0.14061866734675124, - -0.30400289227996974, - -0.5640204179460572, - -0.606687294078571, - -0.21191473003163505, - 0.663254409693487, - 1.895827412628083, - 3.130136771901141, - 4.091674177804736, - 4.459015543843552, - 4.2273517480162575, - 3.6811950858918454, - 3.373447486680349, - 4.030322839012933, - 6.406802789447424, - 10.947865128272644, - 17.995590663105173, - 26.675964696700095, - 36.817270601569305, - 46.83567890488152, - 55.21805009260667 - ], - "pressure:J113:branch138_seg1": [ - 193133.82267112422, - 206201.77559864838, - 210438.87597377063, - 200815.7341520049, - 182829.29433811424, - 159959.80589395802, - 134618.057167162, - 106370.85822216184, - 85266.18354511139, - 64987.94676778782, - 46156.95631611805, - 31971.010168687244, - 15419.782622817425, - 525.3267391759518, - -14742.340622145777, - -31215.602201930556, - -44770.06535816604, - -57927.05808452716, - -67499.8777106672, - -73440.30378194108, - -77880.05083426257, - -79589.10243651002, - -80277.65427158981, - -80769.85837749047, - -80767.38871666948, - -80468.94088453482, - -79050.32998132471, - -75928.87133257944, - -71052.03432791529, - -65086.51963480326, - -58583.54197041503, - -53865.28459213087, - -52675.33149462502, - -55335.599377731596, - -63102.31987719385, - -75065.05968905693, - -89460.53460436684, - -102435.25760804041, - -113801.14056004601, - -118513.50715241494, - -116372.34018336317, - -107924.03754617153, - -93413.74007996722, - -74226.63996124869, - -55144.77022548918, - -36666.75762886084, - -19463.36196871736, - -7477.015649675099, - 2066.80322298077, - 9476.57609180957, - 14523.04253967988, - 20040.23035965787, - 24215.166086868685, - 27487.643953422194, - 30275.028769291268, - 30047.78463123838, - 27398.903419747527, - 22297.583805506412, - 15351.763045994356, - 6971.244743728743, - 248.16007850689059, - -5224.830855643985, - -8907.888370200575, - -9562.675131822718, - -9153.601477425404, - -8218.170721027642, - -7560.9529427777825, - -8238.513793191758, - -10252.11192988629, - -13242.441919198913, - -16032.874421136677, - -17874.489131649814, - -18152.786510440128, - -16213.504026222374, - -12513.608539528139, - -8217.15866853849, - -4266.864437410438, - -1142.272046190767, - -114.37815260597483, - -597.9653910362471, - -1482.4451469311537, - -2197.0911775979807, - -1719.4048675369104, - 555.2524193922925, - 4185.696149639772, - 8785.898157271324, - 12343.443846909751, - 14425.949146762125, - 14593.87084378082, - 12719.921725948514, - 10705.19609964846, - 10851.800186354158, - 15544.578482867577, - 27052.318494248597, - 45957.36478042652, - 73616.05944190598, - 104315.33104564014, - 137375.82413874488, - 170772.0162702801, - 193133.82267112422 - ], - "flow:branch138_seg1:J114": [ - 55.137887996388194, - 61.43014226552268, - 64.33585446147114, - 63.69140698862794, - 60.05853176698704, - 54.04371245816914, - 46.47353489700541, - 38.519046250571186, - 31.0478209167268, - 24.0121093305382, - 18.131693380788406, - 12.881089291474996, - 7.886373533313065, - 3.2053041127373105, - -1.7540294567198638, - -6.57468027025092, - -11.238503718460606, - -15.625139846884306, - -18.99936391793734, - -21.61808206063205, - -23.36038686992053, - -24.27007089822033, - -24.77159090219379, - -24.97406244701581, - -25.056109900088398, - -25.047189208178022, - -24.787978256263212, - -24.134063008215264, - -22.976813789681884, - -21.33876251681412, - -19.42006439195216, - -17.721352075889328, - -16.650603234140526, - -16.721019041623677, - -18.22839284874917, - -21.144835820767266, - -25.019305926735843, - -29.31177755730246, - -33.203651748161505, - -35.698637203200896, - -36.444938911686606, - -35.03549546968663, - -31.57386440956605, - -26.51639745731021, - -20.800983018019373, - -14.778873956079421, - -9.272115065399067, - -4.8292377093508385, - -1.183710590562842, - 1.4341347030777847, - 3.4397235746226085, - 5.175217775730074, - 6.583286696692761, - 7.890484288053146, - 8.865792633396438, - 9.26012228774472, - 8.973496200256195, - 7.8669683852747285, - 6.03659972019609, - 3.770463947938761, - 1.4753759399459165, - -0.6044219412056386, - -2.0118094316832527, - -2.7415919962213473, - -2.9172966378050824, - -2.700106013029118, - -2.452765154737737, - -2.457088841005151, - -2.837782445043034, - -3.5804050727204326, - -4.448802307973293, - -5.211435834262015, - -5.571090416339429, - -5.335200449068409, - -4.539496966995474, - -3.365380646296626, - -2.074963804874348, - -0.9685866817413228, - -0.33227551886599443, - -0.13693355888925332, - -0.29782006532220173, - -0.5630490674286558, - -0.6131882374501566, - -0.23064610305323172, - 0.640662827249281, - 1.8634045178468384, - 3.1069247964780313, - 4.089404745199498, - 4.463248895872152, - 4.235882428468261, - 3.6896148056672033, - 3.36219475746971, - 3.9955780669001792, - 6.321350145954777, - 10.864203718713728, - 17.88788162527246, - 26.584902426397928, - 36.66447043784449, - 46.78955363137396, - 55.137887996388194 - ], - "pressure:branch138_seg1:J114": [ - 182353.33128529164, - 199088.7140744698, - 206013.3018692476, - 200503.60733231247, - 186068.01275265292, - 165539.4749383869, - 141114.18918250233, - 114701.39858634125, - 92270.03296761334, - 70952.0200433983, - 52354.19597865917, - 36801.304834570845, - 20772.652433766132, - 5883.977412766679, - -9583.681680285003, - -25266.328154186165, - -39626.1182379947, - -53160.538682600665, - -63297.831135810695, - -70473.43765173247, - -75516.0403604316, - -77818.95539124927, - -78988.98124296936, - -79547.81498550822, - -79666.61500355756, - -79528.5309517338, - -78431.59481121141, - -75899.84279891897, - -71690.90539843995, - -66214.09187101462, - -59934.581555380864, - -54917.37997177493, - -52515.41231823573, - -53791.82426064685, - -59841.586952454, - -70248.49339535677, - -83336.83059567588, - -96702.55093474626, - -108529.51400513087, - -115067.12260209446, - -115407.71303980418, - -109253.62529952133, - -96616.65608372845, - -79179.05588272343, - -60682.53616311004, - -41970.98923341329, - -24588.185501252774, - -11601.08590065747, - -998.5819270901022, - 6848.377150797741, - 12473.351773195996, - 18042.817763282135, - 22270.474059487093, - 25987.626049784423, - 28948.890175462966, - 29523.323018735093, - 27843.889002057138, - 23678.139695987706, - 17392.467967083667, - 9752.50823693141, - 2721.0241762237883, - -3343.5863632888972, - -7455.906507546288, - -9042.84903994249, - -9172.758923647953, - -8373.48179218543, - -7638.612978167797, - -7941.036475605733, - -9521.775033077894, - -12164.987430213827, - -14930.893705664843, - -17069.889374014965, - -17831.07876649739, - -16522.31630626244, - -13474.279430946579, - -9486.986598246582, - -5514.632066965475, - -2158.010934162952, - -632.4282174261845, - -516.3973950141167, - -1180.51921602254, - -1962.250136955101, - -1838.026200064061, - -174.2283395856517, - 2965.126589453175, - 7120.312466629004, - 10901.147064913044, - 13546.216248326798, - 14294.27376060843, - 13054.295314039355, - 11199.223263822665, - 10671.83972944047, - 13874.99114335121, - 23038.643993678448, - 39522.03331188406, - 64200.75698837142, - 93155.9541966766, - 125280.01435900344, - 158197.28320991667, - 182353.33128529164 - ], - "flow:J114:branch138_seg2": [ - 55.137887996388194, - 61.43014226552268, - 64.33585446147114, - 63.69140698862794, - 60.05853176698704, - 54.04371245816914, - 46.47353489700541, - 38.519046250571186, - 31.0478209167268, - 24.0121093305382, - 18.131693380788406, - 12.881089291474996, - 7.886373533313065, - 3.2053041127373105, - -1.7540294567198638, - -6.57468027025092, - -11.238503718460606, - -15.625139846884306, - -18.99936391793734, - -21.61808206063205, - -23.36038686992053, - -24.27007089822033, - -24.77159090219379, - -24.97406244701581, - -25.056109900088398, - -25.047189208178022, - -24.787978256263212, - -24.134063008215264, - -22.976813789681884, - -21.33876251681412, - -19.42006439195216, - -17.721352075889328, - -16.650603234140526, - -16.721019041623677, - -18.22839284874917, - -21.144835820767266, - -25.019305926735843, - -29.31177755730246, - -33.203651748161505, - -35.698637203200896, - -36.444938911686606, - -35.03549546968663, - -31.57386440956605, - -26.51639745731021, - -20.800983018019373, - -14.778873956079421, - -9.272115065399067, - -4.8292377093508385, - -1.183710590562842, - 1.4341347030777847, - 3.4397235746226085, - 5.175217775730074, - 6.583286696692761, - 7.890484288053146, - 8.865792633396438, - 9.26012228774472, - 8.973496200256195, - 7.8669683852747285, - 6.03659972019609, - 3.770463947938761, - 1.4753759399459165, - -0.6044219412056386, - -2.0118094316832527, - -2.7415919962213473, - -2.9172966378050824, - -2.700106013029118, - -2.452765154737737, - -2.457088841005151, - -2.837782445043034, - -3.5804050727204326, - -4.448802307973293, - -5.211435834262015, - -5.571090416339429, - -5.335200449068409, - -4.539496966995474, - -3.365380646296626, - -2.074963804874348, - -0.9685866817413228, - -0.33227551886599443, - -0.13693355888925332, - -0.29782006532220173, - -0.5630490674286558, - -0.6131882374501566, - -0.23064610305323172, - 0.640662827249281, - 1.8634045178468384, - 3.1069247964780313, - 4.089404745199498, - 4.463248895872152, - 4.235882428468261, - 3.6896148056672033, - 3.36219475746971, - 3.9955780669001792, - 6.321350145954777, - 10.864203718713728, - 17.88788162527246, - 26.584902426397928, - 36.66447043784449, - 46.78955363137396, - 55.137887996388194 - ], - "pressure:J114:branch138_seg2": [ - 182353.33128529164, - 199088.7140744698, - 206013.3018692476, - 200503.60733231247, - 186068.01275265292, - 165539.4749383869, - 141114.18918250233, - 114701.39858634125, - 92270.03296761334, - 70952.0200433983, - 52354.19597865917, - 36801.304834570845, - 20772.652433766132, - 5883.977412766679, - -9583.681680285003, - -25266.328154186165, - -39626.1182379947, - -53160.538682600665, - -63297.831135810695, - -70473.43765173247, - -75516.0403604316, - -77818.95539124927, - -78988.98124296936, - -79547.81498550822, - -79666.61500355756, - -79528.5309517338, - -78431.59481121141, - -75899.84279891897, - -71690.90539843995, - -66214.09187101462, - -59934.581555380864, - -54917.37997177493, - -52515.41231823573, - -53791.82426064685, - -59841.586952454, - -70248.49339535677, - -83336.83059567588, - -96702.55093474626, - -108529.51400513087, - -115067.12260209446, - -115407.71303980418, - -109253.62529952133, - -96616.65608372845, - -79179.05588272343, - -60682.53616311004, - -41970.98923341329, - -24588.185501252774, - -11601.08590065747, - -998.5819270901022, - 6848.377150797741, - 12473.351773195996, - 18042.817763282135, - 22270.474059487093, - 25987.626049784423, - 28948.890175462966, - 29523.323018735093, - 27843.889002057138, - 23678.139695987706, - 17392.467967083667, - 9752.50823693141, - 2721.0241762237883, - -3343.5863632888972, - -7455.906507546288, - -9042.84903994249, - -9172.758923647953, - -8373.48179218543, - -7638.612978167797, - -7941.036475605733, - -9521.775033077894, - -12164.987430213827, - -14930.893705664843, - -17069.889374014965, - -17831.07876649739, - -16522.31630626244, - -13474.279430946579, - -9486.986598246582, - -5514.632066965475, - -2158.010934162952, - -632.4282174261845, - -516.3973950141167, - -1180.51921602254, - -1962.250136955101, - -1838.026200064061, - -174.2283395856517, - 2965.126589453175, - 7120.312466629004, - 10901.147064913044, - 13546.216248326798, - 14294.27376060843, - 13054.295314039355, - 11199.223263822665, - 10671.83972944047, - 13874.99114335121, - 23038.643993678448, - 39522.03331188406, - 64200.75698837142, - 93155.9541966766, - 125280.01435900344, - 158197.28320991667, - 182353.33128529164 - ], - "flow:branch139_seg0:J115": [ - 21.48250940713865, - 24.733858404289602, - 26.76616271391562, - 27.417023817932122, - 26.700832119309993, - 24.795135300902285, - 22.01829019884458, - 18.827865467519775, - 15.550501851577824, - 12.410264366403363, - 9.642538130013717, - 7.154164611705887, - 4.897255596267947, - 2.785161177702787, - 0.6615042397184018, - -1.4173190543736853, - -3.479326598994048, - -5.424593493609217, - -7.077995420046814, - -8.435519813907392, - -9.41739365758749, - -10.050231713332288, - -10.434067968691004, - -10.636084133622928, - -10.744454782608058, - -10.790657542055673, - -10.751194030999907, - -10.57773606501983, - -10.217290771307523, - -9.64968313530859, - -8.925518578412378, - -8.18450253178861, - -7.592905156008566, - -7.366349256550375, - -7.659361466733572, - -8.534371967499656, - -9.905980610522265, - -11.608595274119196, - -13.323905029175323, - -14.703798233514789, - -15.48853755538881, - -15.451134625895564, - -14.543486885650811, - -12.867041011425831, - -10.681006610857294, - -8.197803041225335, - -5.760217521997128, - -3.5870856582888493, - -1.748300525004006, - -0.32941069677866963, - 0.7787367040400909, - 1.667116338008722, - 2.395539523038518, - 3.0400132487572216, - 3.5532386101624183, - 3.876563823134981, - 3.9390957449910937, - 3.676018258864574, - 3.0892044779262626, - 2.257948147005811, - 1.3035255463137854, - 0.36569619817629667, - -0.3846473484623259, - -0.8912826922572712, - -1.1368461031428176, - -1.1719727765275254, - -1.116171392007254, - -1.0873068133020425, - -1.1713469177650788, - -1.3996738677182132, - -1.7251028901146495, - -2.0660364484902147, - -2.3027688940395925, - -2.3432206312078594, - -2.154030171144334, - -1.7659140505569957, - -1.2621417288876156, - -0.7647609934758481, - -0.3886854974548858, - -0.18089071482245148, - -0.1442943451545574, - -0.20489996556704085, - -0.24986198788314096, - -0.17500059932868922, - 0.08212462626624656, - 0.5075824211039325, - 1.017178640585774, - 1.489531603098103, - 1.7829938278666813, - 1.8465955761042265, - 1.7207442295072224, - 1.5659993765959148, - 1.6467032457723116, - 2.2644506257045314, - 3.6900641151977234, - 6.083177638369003, - 9.334684045684673, - 13.31860734170658, - 17.551644858211567, - 21.48250940713865 - ], - "pressure:branch139_seg0:J115": [ - 159435.57878219086, - 179641.28728304087, - 191029.10300674938, - 191840.3957199106, - 183527.38311641294, - 167825.5213265262, - 146926.68258330759, - 123520.25770544556, - 101047.89229170569, - 79683.67196918219, - 60943.06713051462, - 44478.40752482686, - 28895.368842940476, - 14324.801945390953, - -503.36184882596734, - -15112.368916332622, - -29251.378471626962, - -42640.71966008796, - -53405.11412164654, - -61901.943386593586, - -68034.28476261871, - -71621.02324855834, - -73762.26985959354, - -74872.57010204025, - -75410.31846015989, - -75600.84370743194, - -75064.10757853782, - -73431.4091144171, - -70385.74283845501, - -65977.75168759977, - -60584.46994089927, - -55554.78078958779, - -52106.88672417049, - -51540.16971683709, - -54982.63420487518, - -62538.91300202364, - -73210.01197841564, - -85513.84900675317, - -97313.85539045633, - -105758.23168121165, - -109395.37928083459, - -107089.61932913667, - -98626.26799513024, - -84995.18687563574, - -68887.32292737537, - -51302.00108152314, - -34292.86829538278, - -20136.695316272562, - -8184.697026444721, - 887.7428273256814, - 7769.001578526473, - 13740.844364609255, - 18473.230812555743, - 22643.295537568043, - 25992.45419008082, - 27637.181051178475, - 27330.819068226145, - 24707.20743108537, - 19878.41097470955, - 13509.951033095485, - 6757.598143209518, - 441.1907280092589, - -4325.225943170063, - -7136.372220436369, - -8279.583113203968, - -8152.20418972201, - -7646.149396697224, - -7633.706406017956, - -8571.92721762209, - -10533.44107865997, - -12939.707710034716, - -15198.701759480877, - -16526.673557851056, - -16238.628922065622, - -14325.95663490654, - -11205.155935964993, - -7583.233155040305, - -4180.803712214227, - -1970.998437313668, - -1007.617531601615, - -1063.7029951291427, - -1609.1052997645318, - -1763.363613198444, - -846.0965859429868, - 1409.9165460424604, - 4759.884767487005, - 8374.419985785305, - 11414.662057309932, - 12969.383036829408, - 12806.019798640824, - 11587.478989245205, - 10721.620681556906, - 12220.188959649447, - 18217.89215660193, - 30365.176661339785, - 49792.328555678265, - 74339.55712678908, - 103175.46118551015, - 133691.88655057328, - 159435.57878219086 - ], - "flow:J115:branch139_seg1": [ - 21.48250940713865, - 24.733858404289602, - 26.76616271391562, - 27.417023817932122, - 26.700832119309993, - 24.795135300902285, - 22.01829019884458, - 18.827865467519775, - 15.550501851577824, - 12.410264366403363, - 9.642538130013717, - 7.154164611705887, - 4.897255596267947, - 2.785161177702787, - 0.6615042397184018, - -1.4173190543736853, - -3.479326598994048, - -5.424593493609217, - -7.077995420046814, - -8.435519813907392, - -9.41739365758749, - -10.050231713332288, - -10.434067968691004, - -10.636084133622928, - -10.744454782608058, - -10.790657542055673, - -10.751194030999907, - -10.57773606501983, - -10.217290771307523, - -9.64968313530859, - -8.925518578412378, - -8.18450253178861, - -7.592905156008566, - -7.366349256550375, - -7.659361466733572, - -8.534371967499656, - -9.905980610522265, - -11.608595274119196, - -13.323905029175323, - -14.703798233514789, - -15.48853755538881, - -15.451134625895564, - -14.543486885650811, - -12.867041011425831, - -10.681006610857294, - -8.197803041225335, - -5.760217521997128, - -3.5870856582888493, - -1.748300525004006, - -0.32941069677866963, - 0.7787367040400909, - 1.667116338008722, - 2.395539523038518, - 3.0400132487572216, - 3.5532386101624183, - 3.876563823134981, - 3.9390957449910937, - 3.676018258864574, - 3.0892044779262626, - 2.257948147005811, - 1.3035255463137854, - 0.36569619817629667, - -0.3846473484623259, - -0.8912826922572712, - -1.1368461031428176, - -1.1719727765275254, - -1.116171392007254, - -1.0873068133020425, - -1.1713469177650788, - -1.3996738677182132, - -1.7251028901146495, - -2.0660364484902147, - -2.3027688940395925, - -2.3432206312078594, - -2.154030171144334, - -1.7659140505569957, - -1.2621417288876156, - -0.7647609934758481, - -0.3886854974548858, - -0.18089071482245148, - -0.1442943451545574, - -0.20489996556704085, - -0.24986198788314096, - -0.17500059932868922, - 0.08212462626624656, - 0.5075824211039325, - 1.017178640585774, - 1.489531603098103, - 1.7829938278666813, - 1.8465955761042265, - 1.7207442295072224, - 1.5659993765959148, - 1.6467032457723116, - 2.2644506257045314, - 3.6900641151977234, - 6.083177638369003, - 9.334684045684673, - 13.31860734170658, - 17.551644858211567, - 21.48250940713865 - ], - "pressure:J115:branch139_seg1": [ - 159435.57878219086, - 179641.28728304087, - 191029.10300674938, - 191840.3957199106, - 183527.38311641294, - 167825.5213265262, - 146926.68258330759, - 123520.25770544556, - 101047.89229170569, - 79683.67196918219, - 60943.06713051462, - 44478.40752482686, - 28895.368842940476, - 14324.801945390953, - -503.36184882596734, - -15112.368916332622, - -29251.378471626962, - -42640.71966008796, - -53405.11412164654, - -61901.943386593586, - -68034.28476261871, - -71621.02324855834, - -73762.26985959354, - -74872.57010204025, - -75410.31846015989, - -75600.84370743194, - -75064.10757853782, - -73431.4091144171, - -70385.74283845501, - -65977.75168759977, - -60584.46994089927, - -55554.78078958779, - -52106.88672417049, - -51540.16971683709, - -54982.63420487518, - -62538.91300202364, - -73210.01197841564, - -85513.84900675317, - -97313.85539045633, - -105758.23168121165, - -109395.37928083459, - -107089.61932913667, - -98626.26799513024, - -84995.18687563574, - -68887.32292737537, - -51302.00108152314, - -34292.86829538278, - -20136.695316272562, - -8184.697026444721, - 887.7428273256814, - 7769.001578526473, - 13740.844364609255, - 18473.230812555743, - 22643.295537568043, - 25992.45419008082, - 27637.181051178475, - 27330.819068226145, - 24707.20743108537, - 19878.41097470955, - 13509.951033095485, - 6757.598143209518, - 441.1907280092589, - -4325.225943170063, - -7136.372220436369, - -8279.583113203968, - -8152.20418972201, - -7646.149396697224, - -7633.706406017956, - -8571.92721762209, - -10533.44107865997, - -12939.707710034716, - -15198.701759480877, - -16526.673557851056, - -16238.628922065622, - -14325.95663490654, - -11205.155935964993, - -7583.233155040305, - -4180.803712214227, - -1970.998437313668, - -1007.617531601615, - -1063.7029951291427, - -1609.1052997645318, - -1763.363613198444, - -846.0965859429868, - 1409.9165460424604, - 4759.884767487005, - 8374.419985785305, - 11414.662057309932, - 12969.383036829408, - 12806.019798640824, - 11587.478989245205, - 10721.620681556906, - 12220.188959649447, - 18217.89215660193, - 30365.176661339785, - 49792.328555678265, - 74339.55712678908, - 103175.46118551015, - 133691.88655057328, - 159435.57878219086 - ], - "flow:branch139_seg1:J116": [ - 21.434911223862144, - 24.70424324692412, - 26.75302945692243, - 27.423670285677773, - 26.727118103665536, - 24.831858757117967, - 22.057661218184162, - 18.877049136321325, - 15.59115407810939, - 12.443002335182966, - 9.676518127775106, - 7.181241692063083, - 4.923897850945929, - 2.8120262168996804, - 0.6840035812563743, - -1.3906749524348465, - -3.4530810747893064, - -5.404972264753592, - -7.0591958394997905, - -8.422215614318798, - -9.408705469860543, - -10.044131831344593, - -10.43135695322883, - -10.63449271591293, - -10.743465195243502, - -10.79079405727265, - -10.753000964032383, - -10.582129584864601, - -10.225047405504423, - -9.659242262431393, - -8.936277733917041, - -8.193319629950565, - -7.596137486552113, - -7.363282938602039, - -7.649250910590709, - -8.51820631239084, - -9.883258204171604, - -11.58723598100736, - -13.30585723776962, - -14.691892996803341, - -15.488471630759456, - -15.460978490226392, - -14.563455279871235, - -12.893509082954765, - -10.713264929865948, - -8.230548141833914, - -5.7902782141032985, - -3.6134297392492054, - -1.7678171951324049, - -0.3452346693983474, - 0.7660025866204734, - 1.6559569154248912, - 2.3865287308683136, - 3.033212940729164, - 3.5477719417491707, - 3.875034585658605, - 3.9423017505493756, - 3.6835064554473456, - 3.0992544703564606, - 2.2715598513698527, - 1.3156666763354912, - 0.3737812797555709, - -0.37730917031831146, - -0.8877840633488271, - -1.136634724534244, - -1.1726243076779173, - -1.1167462543031592, - -1.086664125149899, - -1.1686935834163341, - -1.395600511746268, - -1.7204187871997907, - -2.0622864756334445, - -2.301550208163558, - -2.3450753920574536, - -2.1591034692563955, - -1.77299534315231, - -1.2691816024221436, - -0.7708553616290296, - -0.3918818209928148, - -0.18124671130778833, - -0.1432754067047107, - -0.20410838583038618, - -0.2505001037830514, - -0.178118476179545, - 0.07703260149128267, - 0.5005305420297861, - 1.010906338111228, - 1.486402564323124, - 1.7816473425303696, - 1.8479640987754056, - 1.7231730041931235, - 1.566190552626795, - 1.6405556896813498, - 2.248432683765074, - 3.6611523664431638, - 6.042545492525004, - 9.283530403283985, - 13.259395605561677, - 17.49333203072322, - 21.434911223862144 - ], - "pressure:branch139_seg1:J116": [ - 149865.64032882822, - 171493.43865782162, - 184664.1158421177, - 188097.43681465875, - 182289.29867198542, - 168554.14719593796, - 149073.76120367073, - 126915.82294323073, - 104521.87556458991, - 83123.64923616895, - 64338.62126506178, - 47519.557730743174, - 32102.374168632843, - 17679.782459553237, - 3098.017483220531, - -11152.48573129239, - -25210.10179481812, - -38524.491586287004, - -49620.42450113761, - -58656.96495777237, - -65193.46206462799, - -69291.18633609486, - -71778.06007824965, - -73077.74852678257, - -73757.45134078617, - -74041.34150698206, - -73701.49652005832, - -72399.69737888918, - -69788.02955373409, - -65772.90572668711, - -60713.576105982414, - -55666.894414831295, - -51787.74507751923, - -50506.959685032874, - -52901.14893364728, - -59306.12199715009, - -69004.12380633695, - -80812.90472680767, - -92537.91030447416, - -101670.84660899782, - -106557.83544740711, - -105735.23598091926, - -98922.70359830494, - -86877.46072547918, - -71671.21852156988, - -54576.307449636406, - -37851.3629743365, - -23245.78446762016, - -10870.113395098675, - -1377.2374971577726, - 5974.488133181267, - 12004.905387823952, - 16902.683583760874, - 21232.40775308635, - 24687.83070780157, - 26740.483817920755, - 26970.18285092185, - 24951.978128783478, - 20720.470989412166, - 14870.833701093206, - 8290.54864951484, - 1908.1660185132944, - -3095.336030368358, - -6369.195975032336, - -7897.1313079206875, - -8028.752844900921, - -7609.880009237363, - -7462.6759146445065, - -8134.55124260447, - -9804.315337488835, - -12072.153225970043, - -14377.543157791224, - -15916.358102458209, - -16037.200378940452, - -14578.337028090302, - -11804.085089656965, - -8318.88353022732, - -4924.607151237629, - -2456.4601527194186, - -1164.3466994338044, - -1000.1488794843913, - -1454.539056371314, - -1722.568041301035, - -1103.6704036954104, - 788.36087745643, - 3809.272794103067, - 7325.542032600346, - 10503.710892245883, - 12374.653374361065, - 12640.662983062539, - 11679.752888485793, - 10671.203309755858, - 11472.903259429178, - 16165.051341572505, - 26532.65261561367, - 43703.635731308255, - 66491.83069120756, - 94060.82646360878, - 123383.416905429, - 149865.64032882822 - ], - "flow:J116:branch139_seg2": [ - 21.434911223862144, - 24.70424324692412, - 26.75302945692243, - 27.423670285677773, - 26.727118103665536, - 24.831858757117967, - 22.057661218184162, - 18.877049136321325, - 15.59115407810939, - 12.443002335182966, - 9.676518127775106, - 7.181241692063083, - 4.923897850945929, - 2.8120262168996804, - 0.6840035812563743, - -1.3906749524348465, - -3.4530810747893064, - -5.404972264753592, - -7.0591958394997905, - -8.422215614318798, - -9.408705469860543, - -10.044131831344593, - -10.43135695322883, - -10.63449271591293, - -10.743465195243502, - -10.79079405727265, - -10.753000964032383, - -10.582129584864601, - -10.225047405504423, - -9.659242262431393, - -8.936277733917041, - -8.193319629950565, - -7.596137486552113, - -7.363282938602039, - -7.649250910590709, - -8.51820631239084, - -9.883258204171604, - -11.58723598100736, - -13.30585723776962, - -14.691892996803341, - -15.488471630759456, - -15.460978490226392, - -14.563455279871235, - -12.893509082954765, - -10.713264929865948, - -8.230548141833914, - -5.7902782141032985, - -3.6134297392492054, - -1.7678171951324049, - -0.3452346693983474, - 0.7660025866204734, - 1.6559569154248912, - 2.3865287308683136, - 3.033212940729164, - 3.5477719417491707, - 3.875034585658605, - 3.9423017505493756, - 3.6835064554473456, - 3.0992544703564606, - 2.2715598513698527, - 1.3156666763354912, - 0.3737812797555709, - -0.37730917031831146, - -0.8877840633488271, - -1.136634724534244, - -1.1726243076779173, - -1.1167462543031592, - -1.086664125149899, - -1.1686935834163341, - -1.395600511746268, - -1.7204187871997907, - -2.0622864756334445, - -2.301550208163558, - -2.3450753920574536, - -2.1591034692563955, - -1.77299534315231, - -1.2691816024221436, - -0.7708553616290296, - -0.3918818209928148, - -0.18124671130778833, - -0.1432754067047107, - -0.20410838583038618, - -0.2505001037830514, - -0.178118476179545, - 0.07703260149128267, - 0.5005305420297861, - 1.010906338111228, - 1.486402564323124, - 1.7816473425303696, - 1.8479640987754056, - 1.7231730041931235, - 1.566190552626795, - 1.6405556896813498, - 2.248432683765074, - 3.6611523664431638, - 6.042545492525004, - 9.283530403283985, - 13.259395605561677, - 17.49333203072322, - 21.434911223862144 - ], - "pressure:J116:branch139_seg2": [ - 149865.64032882822, - 171493.43865782162, - 184664.1158421177, - 188097.43681465875, - 182289.29867198542, - 168554.14719593796, - 149073.76120367073, - 126915.82294323073, - 104521.87556458991, - 83123.64923616895, - 64338.62126506178, - 47519.557730743174, - 32102.374168632843, - 17679.782459553237, - 3098.017483220531, - -11152.48573129239, - -25210.10179481812, - -38524.491586287004, - -49620.42450113761, - -58656.96495777237, - -65193.46206462799, - -69291.18633609486, - -71778.06007824965, - -73077.74852678257, - -73757.45134078617, - -74041.34150698206, - -73701.49652005832, - -72399.69737888918, - -69788.02955373409, - -65772.90572668711, - -60713.576105982414, - -55666.894414831295, - -51787.74507751923, - -50506.959685032874, - -52901.14893364728, - -59306.12199715009, - -69004.12380633695, - -80812.90472680767, - -92537.91030447416, - -101670.84660899782, - -106557.83544740711, - -105735.23598091926, - -98922.70359830494, - -86877.46072547918, - -71671.21852156988, - -54576.307449636406, - -37851.3629743365, - -23245.78446762016, - -10870.113395098675, - -1377.2374971577726, - 5974.488133181267, - 12004.905387823952, - 16902.683583760874, - 21232.40775308635, - 24687.83070780157, - 26740.483817920755, - 26970.18285092185, - 24951.978128783478, - 20720.470989412166, - 14870.833701093206, - 8290.54864951484, - 1908.1660185132944, - -3095.336030368358, - -6369.195975032336, - -7897.1313079206875, - -8028.752844900921, - -7609.880009237363, - -7462.6759146445065, - -8134.55124260447, - -9804.315337488835, - -12072.153225970043, - -14377.543157791224, - -15916.358102458209, - -16037.200378940452, - -14578.337028090302, - -11804.085089656965, - -8318.88353022732, - -4924.607151237629, - -2456.4601527194186, - -1164.3466994338044, - -1000.1488794843913, - -1454.539056371314, - -1722.568041301035, - -1103.6704036954104, - 788.36087745643, - 3809.272794103067, - 7325.542032600346, - 10503.710892245883, - 12374.653374361065, - 12640.662983062539, - 11679.752888485793, - 10671.203309755858, - 11472.903259429178, - 16165.051341572505, - 26532.65261561367, - 43703.635731308255, - 66491.83069120756, - 94060.82646360878, - 123383.416905429, - 149865.64032882822 - ], - "flow:branch142_seg0:J117": [ - 54.90043031479331, - 61.90777717665136, - 65.60166751266841, - 65.80344741275151, - 62.81248764547342, - 57.21475105318072, - 49.86272806555365, - 41.90773594105404, - 34.18108624606985, - 26.930693159622653, - 20.73424316821577, - 15.18334223157174, - 10.024883487636577, - 5.132304077602717, - 0.04420047008210931, - -4.966766737893428, - -9.904511437764626, - -14.510324924488236, - -18.25242568142249, - -21.227244130685655, - -23.259111513074682, - -24.458350808886216, - -25.152396760777066, - -25.494786993062018, - -25.690917824369034, - -25.773652473743514, - -25.626202467773155, - -25.10212069959217, - -24.07409339591948, - -22.533500350801607, - -20.662559706098747, - -18.899196997624784, - -17.67358837995357, - -17.521288047599548, - -18.76678731760315, - -21.452761353575685, - -25.22734531632738, - -29.563812266127297, - -33.62614030457054, - -36.49429097570437, - -37.660562470107116, - -36.67199781494328, - -33.57422419271132, - -28.773906421959747, - -23.068770805182147, - -16.935231148569784, - -11.24149201117686, - -6.447667477010032, - -2.521571789628316, - 0.36739626096641426, - 2.614045878865597, - 4.477779329075404, - 6.033564967246778, - 7.4720034664145665, - 8.588379043039454, - 9.181799306635538, - 9.095157782231505, - 8.181088135269698, - 6.505788920348732, - 4.320153425289966, - 1.9967621301684575, - -0.1546024885988603, - -1.71106179384276, - -2.607570535638926, - -2.893986749698859, - -2.746877733440681, - -2.5089740309682984, - -2.4684748245567363, - -2.789847578006324, - -3.487029100361724, - -4.366191683276286, - -5.192415574173409, - -5.652373024478538, - -5.548043888269501, - -4.863634122283384, - -3.746814815096758, - -2.448305265162292, - -1.287035840443029, - -0.5400457619958503, - -0.24178987069490526, - -0.33886293697855124, - -0.5886129106440593, - -0.6816834775129528, - -0.37781021634123785, - 0.41846188120940114, - 1.6042998240211248, - 2.888414191573199, - 3.9606893469639513, - 4.4761428470901174, - 4.384820306811868, - 3.8971349548500824, - 3.5138922606565695, - 3.961408596923084, - 5.9912035004517366, - 10.198034174794717, - 16.864413158711898, - 25.438793525407203, - 35.58996184576729, - 45.905164179310425, - 54.90043031479331 - ], - "pressure:branch142_seg0:J117": [ - 178796.66185950703, - 195243.91537802602, - 202097.62855524017, - 196670.5794085523, - 182705.23917596528, - 162869.91059332291, - 139301.11002975714, - 113541.12886309867, - 91910.40066279822, - 71402.50283918892, - 53232.94513540436, - 38125.059072788914, - 22437.872957774765, - 7717.801194030775, - -7516.71085287462, - -23076.0789678428, - -37464.78013141973, - -50800.94287623286, - -60812.55074934783, - -68074.38964652386, - -73160.17066206562, - -75554.80452091662, - -76910.1082016417, - -77644.92819560063, - -77969.47812750409, - -78031.271071123, - -77103.68016919779, - -74755.5007399913, - -70736.69346783852, - -65474.4500641254, - -59401.57883907902, - -54587.58016084149, - -52357.59768453172, - -53666.93630895194, - -59714.036021715845, - -69966.09818383532, - -82843.34739628993, - -95934.18171313364, - -107401.18377380559, - -113683.79134819501, - -113833.05307996889, - -107654.6405260052, - -95149.28209284204, - -78028.91789941519, - -60121.101325319934, - -41837.863949223465, - -24987.59488085433, - -12560.320301431466, - -2230.382468412766, - 5345.129479848688, - 10857.369044158593, - 16454.926893875792, - 20624.145345106484, - 24402.847699122667, - 27495.756037861665, - 28153.068869336326, - 26626.76708602269, - 22670.6602364185, - 16628.94310599861, - 9248.46554029259, - 2458.1162017200777, - -3308.7775929018535, - -7257.886896735345, - -8720.661109810757, - -8760.02148312525, - -7953.466124353158, - -7253.537894269132, - -7605.660022270338, - -9222.489028692322, - -11878.980110606992, - -14599.722688207165, - -16719.848691469466, - -17456.732820038073, - -16143.319493750054, - -13155.827671994817, - -9276.237003899594, - -5434.966182000493, - -2179.7071604631724, - -768.6456852919865, - -698.8614975078054, - -1345.7352625967842, - -2116.7517434601295, - -1968.5679680600228, - -299.74151953381124, - 2816.9457760710247, - 6917.779907792572, - 10645.798038853573, - 13199.97819429567, - 13916.973865286947, - 12679.719568977862, - 10854.47289393729, - 10392.834137814629, - 13635.550956787814, - 22769.43451220678, - 39084.65644439695, - 63464.53367732169, - 91702.07504955822, - 123256.52425034811, - 155599.62289865687, - 178796.66185950703 - ], - "flow:J117:branch142_seg1": [ - 54.90043031479331, - 61.90777717665136, - 65.60166751266841, - 65.80344741275151, - 62.81248764547342, - 57.21475105318072, - 49.86272806555365, - 41.90773594105404, - 34.18108624606985, - 26.930693159622653, - 20.73424316821577, - 15.18334223157174, - 10.024883487636577, - 5.132304077602717, - 0.04420047008210931, - -4.966766737893428, - -9.904511437764626, - -14.510324924488236, - -18.25242568142249, - -21.227244130685655, - -23.259111513074682, - -24.458350808886216, - -25.152396760777066, - -25.494786993062018, - -25.690917824369034, - -25.773652473743514, - -25.626202467773155, - -25.10212069959217, - -24.07409339591948, - -22.533500350801607, - -20.662559706098747, - -18.899196997624784, - -17.67358837995357, - -17.521288047599548, - -18.76678731760315, - -21.452761353575685, - -25.22734531632738, - -29.563812266127297, - -33.62614030457054, - -36.49429097570437, - -37.660562470107116, - -36.67199781494328, - -33.57422419271132, - -28.773906421959747, - -23.068770805182147, - -16.935231148569784, - -11.24149201117686, - -6.447667477010032, - -2.521571789628316, - 0.36739626096641426, - 2.614045878865597, - 4.477779329075404, - 6.033564967246778, - 7.4720034664145665, - 8.588379043039454, - 9.181799306635538, - 9.095157782231505, - 8.181088135269698, - 6.505788920348732, - 4.320153425289966, - 1.9967621301684575, - -0.1546024885988603, - -1.71106179384276, - -2.607570535638926, - -2.893986749698859, - -2.746877733440681, - -2.5089740309682984, - -2.4684748245567363, - -2.789847578006324, - -3.487029100361724, - -4.366191683276286, - -5.192415574173409, - -5.652373024478538, - -5.548043888269501, - -4.863634122283384, - -3.746814815096758, - -2.448305265162292, - -1.287035840443029, - -0.5400457619958503, - -0.24178987069490526, - -0.33886293697855124, - -0.5886129106440593, - -0.6816834775129528, - -0.37781021634123785, - 0.41846188120940114, - 1.6042998240211248, - 2.888414191573199, - 3.9606893469639513, - 4.4761428470901174, - 4.384820306811868, - 3.8971349548500824, - 3.5138922606565695, - 3.961408596923084, - 5.9912035004517366, - 10.198034174794717, - 16.864413158711898, - 25.438793525407203, - 35.58996184576729, - 45.905164179310425, - 54.90043031479331 - ], - "pressure:J117:branch142_seg1": [ - 178796.66185950703, - 195243.91537802602, - 202097.62855524017, - 196670.5794085523, - 182705.23917596528, - 162869.91059332291, - 139301.11002975714, - 113541.12886309867, - 91910.40066279822, - 71402.50283918892, - 53232.94513540436, - 38125.059072788914, - 22437.872957774765, - 7717.801194030775, - -7516.71085287462, - -23076.0789678428, - -37464.78013141973, - -50800.94287623286, - -60812.55074934783, - -68074.38964652386, - -73160.17066206562, - -75554.80452091662, - -76910.1082016417, - -77644.92819560063, - -77969.47812750409, - -78031.271071123, - -77103.68016919779, - -74755.5007399913, - -70736.69346783852, - -65474.4500641254, - -59401.57883907902, - -54587.58016084149, - -52357.59768453172, - -53666.93630895194, - -59714.036021715845, - -69966.09818383532, - -82843.34739628993, - -95934.18171313364, - -107401.18377380559, - -113683.79134819501, - -113833.05307996889, - -107654.6405260052, - -95149.28209284204, - -78028.91789941519, - -60121.101325319934, - -41837.863949223465, - -24987.59488085433, - -12560.320301431466, - -2230.382468412766, - 5345.129479848688, - 10857.369044158593, - 16454.926893875792, - 20624.145345106484, - 24402.847699122667, - 27495.756037861665, - 28153.068869336326, - 26626.76708602269, - 22670.6602364185, - 16628.94310599861, - 9248.46554029259, - 2458.1162017200777, - -3308.7775929018535, - -7257.886896735345, - -8720.661109810757, - -8760.02148312525, - -7953.466124353158, - -7253.537894269132, - -7605.660022270338, - -9222.489028692322, - -11878.980110606992, - -14599.722688207165, - -16719.848691469466, - -17456.732820038073, - -16143.319493750054, - -13155.827671994817, - -9276.237003899594, - -5434.966182000493, - -2179.7071604631724, - -768.6456852919865, - -698.8614975078054, - -1345.7352625967842, - -2116.7517434601295, - -1968.5679680600228, - -299.74151953381124, - 2816.9457760710247, - 6917.779907792572, - 10645.798038853573, - 13199.97819429567, - 13916.973865286947, - 12679.719568977862, - 10854.47289393729, - 10392.834137814629, - 13635.550956787814, - 22769.43451220678, - 39084.65644439695, - 63464.53367732169, - 91702.07504955822, - 123256.52425034811, - 155599.62289865687, - 178796.66185950703 - ], - "flow:branch142_seg1:J118": [ - 54.77894215694788, - 61.84511811522891, - 65.59133656857942, - 65.84486206206583, - 62.91207746285558, - 57.339937831205916, - 49.98426353347939, - 42.069715161117855, - 34.28721885576536, - 27.007011669269147, - 20.832257071395286, - 15.248259453497445, - 10.096724115288913, - 5.203615481422172, - 0.08931536354696468, - -4.890180135527039, - -9.838852713054447, - -14.48334358922171, - -18.20843069394111, - -21.20005739718256, - -23.248440235665562, - -24.445096385627473, - -25.150144046256557, - -25.492286961823844, - -25.687087186156244, - -25.77547819589364, - -25.63328345976466, - -25.117943592079882, - -24.100969267474614, - -22.565106031445254, - -20.694609958545534, - -18.922469298775418, - -17.67484306217355, - -17.499667463594548, - -18.725223651662557, - -21.399264567120518, - -25.150781979756164, - -29.511117874098787, - -33.589234180465134, - -36.4780561924372, - -37.68425447932053, - -36.71966693562537, - -33.6394267104548, - -28.83801374871068, - -23.15657541287737, - -17.02020180285956, - -11.302971729388434, - -6.512296957035352, - -2.5601804760270728, - 0.33317673948877097, - 2.5770736590235885, - 4.450891160659866, - 6.009296925561025, - 7.452344860970015, - 8.574635491316027, - 9.18198513981222, - 9.110778267417025, - 8.210403167150023, - 6.537865982867864, - 4.365990088739731, - 2.0272120082805527, - -0.14341206651241006, - -1.6951246965524913, - -2.605069917741285, - -2.900559802353566, - -2.7504049534829056, - -2.509154220227885, - -2.464133448856299, - -2.780111845566288, - -3.476448349443955, - -4.3539323594539265, - -5.183589183364124, - -5.654366371866512, - -5.557119914943283, - -4.881258733597167, - -3.7684096840371573, - -2.4693342324172063, - -1.301561394301517, - -0.5453321197253216, - -0.23954179759722732, - -0.33314168563458874, - -0.5868526016884758, - -0.6863054921375368, - -0.391681279532963, - 0.4009238627051428, - 1.5804902225584252, - 2.873244678181358, - 3.9601716719705014, - 4.47751292680757, - 4.392280133666904, - 3.903940925449843, - 3.509200867049068, - 3.934188966448663, - 5.933327749137206, - 10.105285564392027, - 16.756507959794074, - 25.297300117378313, - 35.40684604111811, - 45.76903806244424, - 54.77894215694788 - ], - "pressure:branch142_seg1:J118": [ - 162136.34318973852, - 182730.6781739725, - 193558.9697269369, - 194006.32126230764, - 185113.35989604803, - 168541.15218426325, - 146790.7561703221, - 123368.90761853658, - 100515.94232338361, - 79125.02412615277, - 60945.287455748556, - 44568.1447372827, - 29374.91371990917, - 14952.378334124001, - -115.2868952016615, - -14819.927216713795, - -29382.215625690857, - -43041.69648449163, - -53962.72926246449, - -62696.13406403214, - -68681.54373114277, - -72149.7498796839, - -74190.67541909758, - -75184.65786385389, - -75745.9319565357, - -75996.5262374143, - -75553.03899144009, - -73995.27486102482, - -70951.13734928529, - -66392.97466326857, - -60857.95166313183, - -55659.61561980653, - -52056.026516358674, - -51628.65387958639, - -55355.47216992549, - -63344.33998792957, - -74478.67156285448, - -87329.6081092566, - -99310.65153803401, - -107708.11021054361, - -111094.2654190827, - -108091.78241828155, - -98855.27708965635, - -84572.91484680338, - -67788.11287824612, - -49710.334608714, - -32875.902328436874, - -18852.811599529756, - -7279.877767752843, - 1193.008567121422, - 7746.168290991491, - 13267.354036915456, - 17835.29107557779, - 22061.18084521011, - 25355.347545374887, - 27088.71996919254, - 26815.228170361253, - 24100.980971271332, - 19122.188676143833, - 12679.853483447125, - 5798.174149970999, - -562.7089684808607, - -5101.074992823579, - -7721.199571735305, - -8550.894221881219, - -8090.96216283408, - -7381.084440820169, - -7272.05976017202, - -8235.742767366664, - -10315.487768802315, - -12905.679858842941, - -15332.748587858701, - -16687.421849520466, - -16351.16509526968, - -14312.796827477763, - -11006.95513663756, - -7181.3408612020885, - -3751.878472147473, - -1564.9150180927097, - -704.9202592023202, - -998.5191903675365, - -1746.7670000896733, - -2018.2211694428213, - -1111.9088415348194, - 1259.821537804384, - 4763.238001429196, - 8565.8315606906, - 11734.84610911111, - 13218.782409568488, - 12919.883410073877, - 11463.179414464445, - 10334.864860382802, - 11682.75001018082, - 17726.42358103591, - 30205.640789565223, - 50022.21941158485, - 75318.65312753948, - 105170.33832506399, - 135770.38857797076, - 162136.34318973852 - ], - "flow:J118:branch142_seg2": [ - 54.77894215694788, - 61.84511811522891, - 65.59133656857942, - 65.84486206206583, - 62.91207746285558, - 57.339937831205916, - 49.98426353347939, - 42.069715161117855, - 34.28721885576536, - 27.007011669269147, - 20.832257071395286, - 15.248259453497445, - 10.096724115288913, - 5.203615481422172, - 0.08931536354696468, - -4.890180135527039, - -9.838852713054447, - -14.48334358922171, - -18.20843069394111, - -21.20005739718256, - -23.248440235665562, - -24.445096385627473, - -25.150144046256557, - -25.492286961823844, - -25.687087186156244, - -25.77547819589364, - -25.63328345976466, - -25.117943592079882, - -24.100969267474614, - -22.565106031445254, - -20.694609958545534, - -18.922469298775418, - -17.67484306217355, - -17.499667463594548, - -18.725223651662557, - -21.399264567120518, - -25.150781979756164, - -29.511117874098787, - -33.589234180465134, - -36.4780561924372, - -37.68425447932053, - -36.71966693562537, - -33.6394267104548, - -28.83801374871068, - -23.15657541287737, - -17.02020180285956, - -11.302971729388434, - -6.512296957035352, - -2.5601804760270728, - 0.33317673948877097, - 2.5770736590235885, - 4.450891160659866, - 6.009296925561025, - 7.452344860970015, - 8.574635491316027, - 9.18198513981222, - 9.110778267417025, - 8.210403167150023, - 6.537865982867864, - 4.365990088739731, - 2.0272120082805527, - -0.14341206651241006, - -1.6951246965524913, - -2.605069917741285, - -2.900559802353566, - -2.7504049534829056, - -2.509154220227885, - -2.464133448856299, - -2.780111845566288, - -3.476448349443955, - -4.3539323594539265, - -5.183589183364124, - -5.654366371866512, - -5.557119914943283, - -4.881258733597167, - -3.7684096840371573, - -2.4693342324172063, - -1.301561394301517, - -0.5453321197253216, - -0.23954179759722732, - -0.33314168563458874, - -0.5868526016884758, - -0.6863054921375368, - -0.391681279532963, - 0.4009238627051428, - 1.5804902225584252, - 2.873244678181358, - 3.9601716719705014, - 4.47751292680757, - 4.392280133666904, - 3.903940925449843, - 3.509200867049068, - 3.934188966448663, - 5.933327749137206, - 10.105285564392027, - 16.756507959794074, - 25.297300117378313, - 35.40684604111811, - 45.76903806244424, - 54.77894215694788 - ], - "pressure:J118:branch142_seg2": [ - 162136.34318973852, - 182730.6781739725, - 193558.9697269369, - 194006.32126230764, - 185113.35989604803, - 168541.15218426325, - 146790.7561703221, - 123368.90761853658, - 100515.94232338361, - 79125.02412615277, - 60945.287455748556, - 44568.1447372827, - 29374.91371990917, - 14952.378334124001, - -115.2868952016615, - -14819.927216713795, - -29382.215625690857, - -43041.69648449163, - -53962.72926246449, - -62696.13406403214, - -68681.54373114277, - -72149.7498796839, - -74190.67541909758, - -75184.65786385389, - -75745.9319565357, - -75996.5262374143, - -75553.03899144009, - -73995.27486102482, - -70951.13734928529, - -66392.97466326857, - -60857.95166313183, - -55659.61561980653, - -52056.026516358674, - -51628.65387958639, - -55355.47216992549, - -63344.33998792957, - -74478.67156285448, - -87329.6081092566, - -99310.65153803401, - -107708.11021054361, - -111094.2654190827, - -108091.78241828155, - -98855.27708965635, - -84572.91484680338, - -67788.11287824612, - -49710.334608714, - -32875.902328436874, - -18852.811599529756, - -7279.877767752843, - 1193.008567121422, - 7746.168290991491, - 13267.354036915456, - 17835.29107557779, - 22061.18084521011, - 25355.347545374887, - 27088.71996919254, - 26815.228170361253, - 24100.980971271332, - 19122.188676143833, - 12679.853483447125, - 5798.174149970999, - -562.7089684808607, - -5101.074992823579, - -7721.199571735305, - -8550.894221881219, - -8090.96216283408, - -7381.084440820169, - -7272.05976017202, - -8235.742767366664, - -10315.487768802315, - -12905.679858842941, - -15332.748587858701, - -16687.421849520466, - -16351.16509526968, - -14312.796827477763, - -11006.95513663756, - -7181.3408612020885, - -3751.878472147473, - -1564.9150180927097, - -704.9202592023202, - -998.5191903675365, - -1746.7670000896733, - -2018.2211694428213, - -1111.9088415348194, - 1259.821537804384, - 4763.238001429196, - 8565.8315606906, - 11734.84610911111, - 13218.782409568488, - 12919.883410073877, - 11463.179414464445, - 10334.864860382802, - 11682.75001018082, - 17726.42358103591, - 30205.640789565223, - 50022.21941158485, - 75318.65312753948, - 105170.33832506399, - 135770.38857797076, - 162136.34318973852 - ], - "flow:branch146_seg0:J119": [ - 30.28870547121999, - 33.381231660607, - 34.55495389019042, - 33.827568001730114, - 31.541438454127864, - 28.079299986181358, - 23.89429290766115, - 19.634095685348594, - 15.73432327505063, - 12.153965719247802, - 9.143853540334336, - 6.499361248651914, - 3.9137984394894145, - 1.4563011487227162, - -1.1456357713620298, - -3.7579482779342586, - -6.181226274665637, - -8.488290132034253, - -10.217722660893875, - -11.531633695010166, - -12.388459000824058, - -12.812718031756088, - -13.055775229886175, - -13.162761301846228, - -13.228752589444143, - -13.244432552642834, - -13.118626218625353, - -12.759047570085096, - -12.1223175341746, - -11.217371653705555, - -10.192498262485435, - -9.314373778149744, - -8.829988044909442, - -8.997384327716054, - -9.97118999295462, - -11.675972633503443, - -13.884905841731653, - -16.198978598869232, - -18.238411358970577, - -19.429060647292136, - -19.621770021523396, - -18.624803845619063, - -16.585754857228594, - -13.71061365793785, - -10.58696936771828, - -7.370469474095809, - -4.49706993823013, - -2.255413027253358, - -0.4225736364918236, - 0.8504616635278006, - 1.8595369932835475, - 2.7374007257097377, - 3.4788192251416636, - 4.177157029637326, - 4.684022423605533, - 4.8631130202723645, - 4.654128841489646, - 3.9966762643945395, - 2.9594145878222995, - 1.7116146146087166, - 0.49182078391953565, - -0.56188736615037, - -1.2456883220522834, - -1.538068059006157, - -1.5537650526400872, - -1.3888784810882984, - -1.246833709770942, - -1.2747269739377463, - -1.519099854154903, - -1.9625539733673993, - -2.448959524320726, - -2.8541851050280536, - -3.0091816578757675, - -2.830725782182091, - -2.343889556421268, - -1.6808171009375736, - -0.9731542709410285, - -0.4077482166573005, - -0.11250286422223976, - -0.0646609456930341, - -0.19479283241334877, - -0.3537094150858607, - -0.3629778339284126, - -0.11239660119377451, - 0.4086311246897158, - 1.107778576244915, - 1.7841041146062135, - 2.276556101395337, - 2.420903863698947, - 2.233841743769059, - 1.9016009775061053, - 1.749078072675163, - 2.181397752253039, - 3.619376780842682, - 6.247395488284266, - 10.272841314208208, - 15.08576913374188, - 20.62196837933023, - 25.98990584094226, - 30.28870547121999 - ], - "pressure:branch146_seg0:J119": [ - 194248.69061305336, - 206052.22669345912, - 208615.97581366648, - 197470.2403301833, - 178406.68492886488, - 155030.2299725306, - 129597.23437979148, - 101655.06696878877, - 81688.2616855622, - 62553.78033509432, - 44171.580710072834, - 30957.223357984833, - 14657.383108251295, - -42.71023924040811, - -14924.837271439437, - -31842.894660386188, - -44855.35670036481, - -57666.70573297149, - -66947.11743395937, - -72521.4217757789, - -76649.41549354828, - -78147.44906283726, - -78809.75280368925, - -79381.24808305223, - -79555.10379575437, - -79356.07150072367, - -77989.36228494285, - -74807.91455988733, - -69876.80362778592, - -63822.97191506893, - -57439.58205951117, - -52989.80026396952, - -52341.592401707676, - -55636.993374026395, - -64169.434647719536, - -76594.91482060277, - -91476.84309418533, - -104052.122494054, - -114911.20011358139, - -118665.43596818799, - -115396.04710122939, - -105852.71805258446, - -90760.96975021901, - -71190.0472481953, - -52195.15328215188, - -34067.77873101051, - -17624.259685478082, - -6531.931417125662, - 2392.013145041279, - 9160.256246597744, - 14032.578390178214, - 19312.702034215188, - 23421.060915120834, - 26734.35314632925, - 29457.516829542434, - 29031.59026946335, - 26149.362272824605, - 20826.077097524598, - 13763.329699414957, - 5349.246536200974, - -1070.7794050210616, - -6049.019343537208, - -9414.841362974938, - -9534.863229277998, - -8795.837049104855, - -7737.45493625617, - -7133.112570314435, - -7998.904608957042, - -10203.938347044364, - -13357.42536668089, - -16168.338135070588, - -17939.401955549532, - -17967.338196428103, - -15787.056772906513, - -11854.73643174732, - -7525.670598138835, - -3588.9689801200925, - -713.6292774292937, - 24.350580547542492, - -715.5550169132276, - -1743.2282345249882, - -2464.4149827784677, - -1836.084228409301, - 688.9849380667528, - 4529.477990664747, - 9269.988221947522, - 12729.265753152456, - 14517.743539624234, - 14424.85876311262, - 12273.540680109709, - 10177.492198313377, - 10584.032874158202, - 15812.155255134305, - 28277.31741629477, - 47870.18569088208, - 76419.97152710083, - 107279.20433340129, - 140834.96943993325, - 173172.21887091905, - 194248.69061305336 - ], - "flow:J119:branch146_seg1": [ - 30.28870547121999, - 33.381231660607, - 34.55495389019042, - 33.827568001730114, - 31.541438454127864, - 28.079299986181358, - 23.89429290766115, - 19.634095685348594, - 15.73432327505063, - 12.153965719247802, - 9.143853540334336, - 6.499361248651914, - 3.9137984394894145, - 1.4563011487227162, - -1.1456357713620298, - -3.7579482779342586, - -6.181226274665637, - -8.488290132034253, - -10.217722660893875, - -11.531633695010166, - -12.388459000824058, - -12.812718031756088, - -13.055775229886175, - -13.162761301846228, - -13.228752589444143, - -13.244432552642834, - -13.118626218625353, - -12.759047570085096, - -12.1223175341746, - -11.217371653705555, - -10.192498262485435, - -9.314373778149744, - -8.829988044909442, - -8.997384327716054, - -9.97118999295462, - -11.675972633503443, - -13.884905841731653, - -16.198978598869232, - -18.238411358970577, - -19.429060647292136, - -19.621770021523396, - -18.624803845619063, - -16.585754857228594, - -13.71061365793785, - -10.58696936771828, - -7.370469474095809, - -4.49706993823013, - -2.255413027253358, - -0.4225736364918236, - 0.8504616635278006, - 1.8595369932835475, - 2.7374007257097377, - 3.4788192251416636, - 4.177157029637326, - 4.684022423605533, - 4.8631130202723645, - 4.654128841489646, - 3.9966762643945395, - 2.9594145878222995, - 1.7116146146087166, - 0.49182078391953565, - -0.56188736615037, - -1.2456883220522834, - -1.538068059006157, - -1.5537650526400872, - -1.3888784810882984, - -1.246833709770942, - -1.2747269739377463, - -1.519099854154903, - -1.9625539733673993, - -2.448959524320726, - -2.8541851050280536, - -3.0091816578757675, - -2.830725782182091, - -2.343889556421268, - -1.6808171009375736, - -0.9731542709410285, - -0.4077482166573005, - -0.11250286422223976, - -0.0646609456930341, - -0.19479283241334877, - -0.3537094150858607, - -0.3629778339284126, - -0.11239660119377451, - 0.4086311246897158, - 1.107778576244915, - 1.7841041146062135, - 2.276556101395337, - 2.420903863698947, - 2.233841743769059, - 1.9016009775061053, - 1.749078072675163, - 2.181397752253039, - 3.619376780842682, - 6.247395488284266, - 10.272841314208208, - 15.08576913374188, - 20.62196837933023, - 25.98990584094226, - 30.28870547121999 - ], - "pressure:J119:branch146_seg1": [ - 194248.69061305336, - 206052.22669345912, - 208615.97581366648, - 197470.2403301833, - 178406.68492886488, - 155030.2299725306, - 129597.23437979148, - 101655.06696878877, - 81688.2616855622, - 62553.78033509432, - 44171.580710072834, - 30957.223357984833, - 14657.383108251295, - -42.71023924040811, - -14924.837271439437, - -31842.894660386188, - -44855.35670036481, - -57666.70573297149, - -66947.11743395937, - -72521.4217757789, - -76649.41549354828, - -78147.44906283726, - -78809.75280368925, - -79381.24808305223, - -79555.10379575437, - -79356.07150072367, - -77989.36228494285, - -74807.91455988733, - -69876.80362778592, - -63822.97191506893, - -57439.58205951117, - -52989.80026396952, - -52341.592401707676, - -55636.993374026395, - -64169.434647719536, - -76594.91482060277, - -91476.84309418533, - -104052.122494054, - -114911.20011358139, - -118665.43596818799, - -115396.04710122939, - -105852.71805258446, - -90760.96975021901, - -71190.0472481953, - -52195.15328215188, - -34067.77873101051, - -17624.259685478082, - -6531.931417125662, - 2392.013145041279, - 9160.256246597744, - 14032.578390178214, - 19312.702034215188, - 23421.060915120834, - 26734.35314632925, - 29457.516829542434, - 29031.59026946335, - 26149.362272824605, - 20826.077097524598, - 13763.329699414957, - 5349.246536200974, - -1070.7794050210616, - -6049.019343537208, - -9414.841362974938, - -9534.863229277998, - -8795.837049104855, - -7737.45493625617, - -7133.112570314435, - -7998.904608957042, - -10203.938347044364, - -13357.42536668089, - -16168.338135070588, - -17939.401955549532, - -17967.338196428103, - -15787.056772906513, - -11854.73643174732, - -7525.670598138835, - -3588.9689801200925, - -713.6292774292937, - 24.350580547542492, - -715.5550169132276, - -1743.2282345249882, - -2464.4149827784677, - -1836.084228409301, - 688.9849380667528, - 4529.477990664747, - 9269.988221947522, - 12729.265753152456, - 14517.743539624234, - 14424.85876311262, - 12273.540680109709, - 10177.492198313377, - 10584.032874158202, - 15812.155255134305, - 28277.31741629477, - 47870.18569088208, - 76419.97152710083, - 107279.20433340129, - 140834.96943993325, - 173172.21887091905, - 194248.69061305336 - ], - "flow:branch146_seg1:J120": [ - 30.266170970602882, - 33.37537631942279, - 34.58131495799599, - 33.855213730277754, - 31.58705871530176, - 28.1381402067009, - 23.96759094103095, - 19.70777078565418, - 15.817085424575412, - 12.194157319218414, - 9.216558122423015, - 6.549907199244341, - 3.9650697741804874, - 1.5217509376976528, - -1.1166531528645076, - -3.6808131896988328, - -6.153371793660683, - -8.472656060121922, - -10.197594325141603, - -11.525380687964981, - -12.388611817420806, - -12.81329446512161, - -13.057920388004975, - -13.165365910917677, - -13.227651019573763, - -13.248069127551833, - -13.122452030180295, - -12.768673164836926, - -12.131797060476234, - -11.235120802586827, - -10.201957236175652, - -9.325708514845088, - -8.828621998546655, - -8.98357354630041, - -9.937727871274063, - -11.643295674344657, - -13.822578286512437, - -16.16314917492181, - -18.21177556672186, - -19.41884355455858, - -19.63858047920763, - -18.672650621114844, - -16.618582266486552, - -13.750747325655755, - -10.628992023131497, - -7.3993932739786965, - -4.513995705953584, - -2.264994458126402, - -0.42943439007549455, - 0.8535727934648705, - 1.8448314804611488, - 2.739364969764869, - 3.4710705931004187, - 4.1683451540451975, - 4.6833078484865736, - 4.863693274370317, - 4.66418496825908, - 4.014400191365322, - 2.981662199658719, - 1.738768247048724, - 0.5183272321500199, - -0.5539545325943921, - -1.2321339591271454, - -1.5373150341964088, - -1.5582914141034403, - -1.3917076051808208, - -1.2459429769031176, - -1.2694968610098722, - -1.5141946854627122, - -1.956355003046096, - -2.44535173962308, - -2.852864754764291, - -3.0152840148283473, - -2.8356963024195867, - -2.353624368416621, - -1.685580150613094, - -0.9820470509988438, - -0.4069204776879816, - -0.11362329044259363, - -0.06264954990356861, - -0.191823496092709, - -0.3532569346907753, - -0.36676403020596077, - -0.1218802782362338, - 0.3956714105779679, - 1.0923275752139572, - 1.7707652380148693, - 2.275996397405704, - 2.422661728098295, - 2.2389007209615315, - 1.9061007593599995, - 1.7418575774416158, - 2.163485884945908, - 3.567186811801749, - 6.209450599475013, - 10.21472520411642, - 15.041703142308414, - 20.553159368314212, - 25.982239201909238, - 30.266170970602882 - ], - "pressure:branch146_seg1:J120": [ - 176443.4204626843, - 192661.6985102142, - 198499.3400151565, - 192728.85775902568, - 178450.25034687284, - 158054.00275304378, - 134077.67432815273, - 109095.95456913862, - 87622.49143537373, - 67420.818270839, - 50289.98776988336, - 35640.75611285924, - 20663.69534728805, - 6693.925456406957, - -8230.465609183759, - -23195.42211246547, - -37003.99285816644, - -50021.91710361727, - -59664.22803133066, - -66740.71654243847, - -71451.37258436294, - -73658.1547650325, - -74879.43349341484, - -75487.93542837365, - -75802.08018927986, - -75857.34385095247, - -75003.53261232795, - -72747.91882689697, - -68847.1902354369, - -63572.89798590225, - -57603.11544740533, - -52775.79262102375, - -50453.778513266516, - -51876.4948726708, - -57965.387443696425, - -68251.54815746236, - -81127.2676981752, - -94245.61196389966, - -105681.90337073618, - -111840.0919757701, - -112094.42393801776, - -105755.29404859699, - -93330.85952748885, - -76370.36593565262, - -58393.50745682897, - -40132.39656591855, - -23768.72020139379, - -11386.295760004248, - -1339.2292746810724, - 5832.544961394815, - 11253.928285364382, - 16388.182428688928, - 20509.99619957437, - 24307.65201499966, - 27188.85671178331, - 27875.368013532538, - 26352.78203426113, - 22304.08288337524, - 16188.260820408706, - 8837.701776768456, - 2049.9829507828804, - -3788.0985301212345, - -7513.42584048693, - -8889.904299072177, - -8816.791191327895, - -7848.702082520661, - -7070.788386408984, - -7366.097747292627, - -8940.063213388434, - -11587.508873453287, - -14370.344871794714, - -16557.144815495154, - -17280.78686291854, - -15996.400323279717, - -12998.40755524942, - -9082.70619155822, - -5117.186346883674, - -1935.778574591484, - -491.0842633481194, - -435.2327404452474, - -1234.0772974212657, - -2105.184013715753, - -2024.6300949381625, - -382.9987123516533, - 2749.8603052633475, - 6875.119662441688, - 10626.361064251747, - 13253.907099463711, - 13876.965594085463, - 12587.873732280159, - 10656.156344416679, - 10019.16622713498, - 13046.86371153738, - 21980.017992047357, - 38025.2376763633, - 61993.6340311475, - 90151.61932401967, - 121845.87763052192, - 152975.51589650192, - 176443.4204626843 - ], - "flow:J120:branch146_seg2": [ - 30.266170970602882, - 33.37537631942279, - 34.58131495799599, - 33.855213730277754, - 31.58705871530176, - 28.1381402067009, - 23.96759094103095, - 19.70777078565418, - 15.817085424575412, - 12.194157319218414, - 9.216558122423015, - 6.549907199244341, - 3.9650697741804874, - 1.5217509376976528, - -1.1166531528645076, - -3.6808131896988328, - -6.153371793660683, - -8.472656060121922, - -10.197594325141603, - -11.525380687964981, - -12.388611817420806, - -12.81329446512161, - -13.057920388004975, - -13.165365910917677, - -13.227651019573763, - -13.248069127551833, - -13.122452030180295, - -12.768673164836926, - -12.131797060476234, - -11.235120802586827, - -10.201957236175652, - -9.325708514845088, - -8.828621998546655, - -8.98357354630041, - -9.937727871274063, - -11.643295674344657, - -13.822578286512437, - -16.16314917492181, - -18.21177556672186, - -19.41884355455858, - -19.63858047920763, - -18.672650621114844, - -16.618582266486552, - -13.750747325655755, - -10.628992023131497, - -7.3993932739786965, - -4.513995705953584, - -2.264994458126402, - -0.42943439007549455, - 0.8535727934648705, - 1.8448314804611488, - 2.739364969764869, - 3.4710705931004187, - 4.1683451540451975, - 4.6833078484865736, - 4.863693274370317, - 4.66418496825908, - 4.014400191365322, - 2.981662199658719, - 1.738768247048724, - 0.5183272321500199, - -0.5539545325943921, - -1.2321339591271454, - -1.5373150341964088, - -1.5582914141034403, - -1.3917076051808208, - -1.2459429769031176, - -1.2694968610098722, - -1.5141946854627122, - -1.956355003046096, - -2.44535173962308, - -2.852864754764291, - -3.0152840148283473, - -2.8356963024195867, - -2.353624368416621, - -1.685580150613094, - -0.9820470509988438, - -0.4069204776879816, - -0.11362329044259363, - -0.06264954990356861, - -0.191823496092709, - -0.3532569346907753, - -0.36676403020596077, - -0.1218802782362338, - 0.3956714105779679, - 1.0923275752139572, - 1.7707652380148693, - 2.275996397405704, - 2.422661728098295, - 2.2389007209615315, - 1.9061007593599995, - 1.7418575774416158, - 2.163485884945908, - 3.567186811801749, - 6.209450599475013, - 10.21472520411642, - 15.041703142308414, - 20.553159368314212, - 25.982239201909238, - 30.266170970602882 - ], - "pressure:J120:branch146_seg2": [ - 176443.4204626843, - 192661.6985102142, - 198499.3400151565, - 192728.85775902568, - 178450.25034687284, - 158054.00275304378, - 134077.67432815273, - 109095.95456913862, - 87622.49143537373, - 67420.818270839, - 50289.98776988336, - 35640.75611285924, - 20663.69534728805, - 6693.925456406957, - -8230.465609183759, - -23195.42211246547, - -37003.99285816644, - -50021.91710361727, - -59664.22803133066, - -66740.71654243847, - -71451.37258436294, - -73658.1547650325, - -74879.43349341484, - -75487.93542837365, - -75802.08018927986, - -75857.34385095247, - -75003.53261232795, - -72747.91882689697, - -68847.1902354369, - -63572.89798590225, - -57603.11544740533, - -52775.79262102375, - -50453.778513266516, - -51876.4948726708, - -57965.387443696425, - -68251.54815746236, - -81127.2676981752, - -94245.61196389966, - -105681.90337073618, - -111840.0919757701, - -112094.42393801776, - -105755.29404859699, - -93330.85952748885, - -76370.36593565262, - -58393.50745682897, - -40132.39656591855, - -23768.72020139379, - -11386.295760004248, - -1339.2292746810724, - 5832.544961394815, - 11253.928285364382, - 16388.182428688928, - 20509.99619957437, - 24307.65201499966, - 27188.85671178331, - 27875.368013532538, - 26352.78203426113, - 22304.08288337524, - 16188.260820408706, - 8837.701776768456, - 2049.9829507828804, - -3788.0985301212345, - -7513.42584048693, - -8889.904299072177, - -8816.791191327895, - -7848.702082520661, - -7070.788386408984, - -7366.097747292627, - -8940.063213388434, - -11587.508873453287, - -14370.344871794714, - -16557.144815495154, - -17280.78686291854, - -15996.400323279717, - -12998.40755524942, - -9082.70619155822, - -5117.186346883674, - -1935.778574591484, - -491.0842633481194, - -435.2327404452474, - -1234.0772974212657, - -2105.184013715753, - -2024.6300949381625, - -382.9987123516533, - 2749.8603052633475, - 6875.119662441688, - 10626.361064251747, - 13253.907099463711, - 13876.965594085463, - 12587.873732280159, - 10656.156344416679, - 10019.16622713498, - 13046.86371153738, - 21980.017992047357, - 38025.2376763633, - 61993.6340311475, - 90151.61932401967, - 121845.87763052192, - 152975.51589650192, - 176443.4204626843 - ], - "flow:INFLOW:branch0_seg0": [ - 2812.176785326458, - 3154.014559137005, - 3374.119971313893, - 3399.2380024557347, - 3235.4300771313415, - 3050.13774421996, - 2637.9958821032546, - 2286.5925201046425, - 1916.8965067715383, - 1512.3561222558833, - 1253.9597534217746, - 894.348355686143, - 663.9186332109592, - 367.20122835667365, - 93.88972891737389, - -149.36199392615927, - -463.0675496669113, - -654.564734576502, - -902.9479174920223, - -1039.8343033145866, - -1160.5628551230575, - -1243.7966473271447, - -1283.9769033279715, - -1324.9006293451569, - -1339.3473284425522, - -1354.7149200388058, - -1352.3212560181996, - -1329.973330174462, - -1274.0262282980702, - -1216.3572176270063, - -1104.6879474140283, - -1043.011306401021, - -972.5589226078554, - -971.407325049463, - -1031.9501030352867, - -1179.0671347369969, - -1332.7978421346895, - -1587.160158640274, - -1749.1895192693903, - -1908.8493618232576, - -1958.4279204530308, - -1918.2976182779025, - -1741.3082175027291, - -1559.1647275637033, - -1210.2763787378574, - -970.1319904858225, - -665.5134424374545, - -410.56960579692014, - -239.95729536341528, - -39.604484315444864, - 47.93773019561366, - 184.28465848560458, - 257.4411566824773, - 350.6914363819695, - 415.8532864355901, - 449.32342305758743, - 449.0614437168961, - 420.12652988374134, - 324.9491059230894, - 234.78646230261958, - 117.55679659692704, - 10.179614777473104, - -57.22260618711881, - -112.95779572658206, - -126.94751112261298, - -126.80140208923508, - -122.48254035177366, - -126.0862909409536, - -150.89555790991778, - -179.90161789143045, - -236.31528317170125, - -265.16493864314606, - -289.92806374310305, - -282.08102613784837, - -253.42995389582345, - -187.36101758839672, - -143.8702146190908, - -74.99309793183065, - -48.48938601898129, - -29.480502822348985, - -32.05689148541427, - -39.24927609707879, - -38.32589438454823, - -24.343180848489112, - 26.91850528686329, - 77.54258670322861, - 145.4311115352251, - 196.64800078124583, - 219.60135292780643, - 216.09396327098221, - 199.92171911064514, - 187.79568780827836, - 222.37668369082203, - 331.072297928797, - 589.3246009787966, - 857.1303578273723, - 1429.514790739441, - 1789.1121573134992, - 2401.6544987689917, - 2812.176785326458 - ], - "pressure:INFLOW:branch0_seg0": [ - 226817.29218303753, - 231981.145227484, - 221606.72483707813, - 197807.1861704641, - 158536.36336029565, - 143902.46528801325, - 93270.22618245776, - 77911.43996161278, - 51165.04577304479, - 32605.450423857394, - 24225.751752393524, - 82.20188056198026, - -2984.972635892558, - -30848.234364702228, - -37457.78915152627, - -59463.863004628656, - -72001.94087933618, - -75958.65071590531, - -90945.4482650813, - -83945.31478714517, - -88306.00860000782, - -85344.49524716816, - -83149.05571259922, - -83773.30931182229, - -81819.42099378006, - -81131.62911931, - -78316.877480137, - -72617.06841829454, - -64989.28835890897, - -59412.071109065655, - -48557.11178473555, - -49912.16440967094, - -49253.643334618195, - -57925.736886130464, - -73316.59014233795, - -91607.69971116736, - -107024.5536246237, - -127540.48527347932, - -127660.86461376555, - -131858.27246694046, - -116484.62902930604, - -97752.42238990712, - -71990.27152729567, - -51949.40194618974, - -16713.706469944067, - -13720.677467988147, - 11045.513562466984, - 13663.42151516198, - 17011.94201630433, - 25752.137555470887, - 21520.81663456585, - 30827.9401376525, - 29180.625425529015, - 34604.84171455482, - 34230.54372549271, - 31384.54569143751, - 24466.875235453914, - 18589.306923054814, - 4025.738130718449, - -1171.431993958006, - -11921.550985547323, - -13472.258530069985, - -15026.542282920977, - -12803.850700278263, - -9372.246054858893, - -7414.851708909363, - -7170.391117635491, - -9274.749495244425, - -13412.423760642541, - -16860.63819367739, - -21857.21429578436, - -20300.51658829452, - -19210.364972042775, - -14325.69409988994, - -8389.560832329846, - -1328.1912232340699, - -204.8808340529381, - 4243.131353841395, - 1297.9794479344337, - -244.49556867268504, - -2236.2449824736627, - -2897.1849443991605, - -876.9303309104664, - 2335.1818087591364, - 10414.90118765287, - 13368.30273564887, - 19257.241566292112, - 17766.30868190856, - 15856.511677250777, - 10826.205473270249, - 8723.090522388955, - 11217.577590429388, - 21316.79333610073, - 45054.11125203604, - 75787.21773003953, - 107386.44291416585, - 167462.14794142067, - 174731.83563296893, - 229360.78511609288, - 226817.29218303753 - ], - "flow:branch3_seg2:RESISTANCE_0": [ - 28.038237301742644, - 31.96689555063024, - 34.23200931411849, - 34.713688237265174, - 33.51488964259532, - 30.856574278398917, - 27.136189385021027, - 23.06415414408644, - 18.936459040191277, - 14.94643794218745, - 11.563415880095715, - 8.489386108974436, - 5.648292146504286, - 3.010571553946546, - 0.2665853452389577, - -2.3742370109566298, - -4.955220061188528, - -7.45418569008481, - -9.47988351436584, - -11.107412499430657, - -12.270280566900732, - -12.970347498218162, - -13.389071202521434, - -13.595162690240654, - -13.694263359053783, - -13.726618912370164, - -13.642292882313384, - -13.371906343708694, - -12.854012586991878, - -12.067796226849731, - -11.098771954171669, - -10.155597872979428, - -9.442288057746683, - -9.255376131359565, - -9.769961028643097, - -11.037923323558609, - -12.88226712142717, - -15.098199921472082, - -17.259710124882336, - -18.861396516880912, - -19.66093822682966, - -19.36534389058568, - -17.961062505107826, - -15.613308764441326, - -12.72953044915614, - -9.556246700434471, - -6.503466092406951, - -3.875693120031847, - -1.6680291324097225, - -0.007335772889584114, - 1.2772452885065921, - 2.329068251366393, - 3.1982754407410194, - 3.9812152115466377, - 4.580386411155562, - 4.925564114759852, - 4.932703357517978, - 4.51286588445741, - 3.683434993317626, - 2.5825722426702726, - 1.3658446338379984, - 0.1813087681017616, - -0.6929651330050536, - -1.2434261788993588, - -1.4878738436250671, - -1.4739815283942992, - -1.3785355989184542, - -1.3540403617865484, - -1.4921906140983308, - -1.8191221496705028, - -2.2512786542522507, - -2.674819177265197, - -2.9405824110797276, - -2.9331339117629507, - -2.630604680137995, - -2.092145700706434, - -1.4327854624926637, - -0.8157640285198275, - -0.3825251881674005, - -0.16971774668602332, - -0.17169841158314006, - -0.2741710304359138, - -0.32310022859884785, - -0.19275657757115064, - 0.18225286677033264, - 0.7590863079299772, - 1.4119871244454785, - 1.997026118185058, - 2.307084026255524, - 2.314071078273851, - 2.108956444019811, - 1.9153396174198358, - 2.0906914243820935, - 3.0226763202610614, - 5.0309542594573795, - 8.314048007850825, - 12.62689596388581, - 17.781467540910995, - 23.174868345647972, - 28.038237301742644 - ], - "pressure:branch3_seg2:RESISTANCE_0": [ - 154174.84494524935, - 175777.49670422648, - 188232.75769338344, - 190881.38258696484, - 184289.50644779237, - 169672.13394038717, - 149214.72223150276, - 126823.67834645901, - 104126.57560866555, - 82186.5057857003, - 63584.162983039285, - 46680.88699534882, - 31058.4633592062, - 16554.336049420344, - 1465.8822459040987, - -13055.300841074186, - -27247.44342454513, - -40988.593918866405, - -52127.370033902625, - -61076.72110100976, - -67471.0247822575, - -71320.50752347098, - -73622.9583334409, - -74756.20087012662, - -75301.12921507469, - -75479.04383795065, - -75015.35732053907, - -73528.5733185346, - -70680.81264155016, - -66357.6169957664, - -61029.20902986845, - -55842.94442417012, - -51920.64256981413, - -50892.86336390126, - -53722.429498752696, - -60694.61851731252, - -70836.17684717392, - -83021.00473700796, - -94906.5771741042, - -103713.8266627147, - -108110.29487973958, - -106484.89987125067, - -98763.12825859398, - -85853.45191048717, - -69996.31831714671, - -52547.270980062465, - -35760.83851537958, - -21311.410535750507, - -9172.050656602545, - -40.33747327365968, - 7023.233743025532, - 12806.929788663681, - 17586.470035967308, - 21891.648584330953, - 25186.332404900917, - 27084.373225336996, - 27123.63003144205, - 24815.05490188927, - 20254.23398942801, - 14200.881132025153, - 7510.418089948309, - 996.9689217077348, - -3810.4318322059953, - -6837.271411522053, - -8181.424412322667, - -8105.034248292615, - -7580.202347510431, - -7445.509522635209, - -8205.161190467259, - -10002.871162819378, - -12379.185385750096, - -14708.122606759003, - -16169.48427955473, - -16128.526953496223, - -14464.998791036583, - -11504.155398145473, - -7878.507986874163, - -4485.670452656421, - -2103.4047518288694, - -933.2329631915035, - -944.1241151624716, - -1507.5939207972447, - -1776.64262948783, - -1059.9173956398697, - 1002.1602703748285, - 4174.014670239931, - 7764.143431460169, - 10981.117992880445, - 12686.044354202797, - 12724.464303716788, - 11596.593225666818, - 10531.945548333013, - 11496.158717595797, - 16620.896955135726, - 27663.885733296775, - 45716.749190867464, - 69431.95845092727, - 97775.58309090097, - 127432.4664337854, - 154174.84494524935 - ], - "flow:branch9_seg2:RESISTANCE_1": [ - 16.11526168746115, - 19.161021992041007, - 21.55639562056207, - 23.101164494409765, - 23.69598826685305, - 23.344420125806028, - 22.172704961801546, - 20.446550225453578, - 18.34682601360649, - 16.06733638540684, - 13.82573558738581, - 11.602703342813962, - 9.439234898649921, - 7.321708106448907, - 5.16565636723281, - 3.036316921336074, - 0.9069767997200489, - -1.1641947572881175, - -3.0341905823827724, - -4.700927347546386, - -6.0918752695133565, - -7.195942446383166, - -8.06560702114844, - -8.73090702176391, - -9.247835069246168, - -9.64541460006082, - -9.918016595597866, - -10.044260807454567, - -9.995729565790311, - -9.757040831611185, - -9.357711653615647, - -8.882324518875603, - -8.440365400009892, - -8.186474902987321, - -8.24503203152018, - -8.693979125840977, - -9.513978698987001, - -10.640377794066438, - -11.88254202267953, - -13.010613020451888, - -13.838649292103147, - -14.167124403918518, - -13.911359195047691, - -13.074916285238032, - -11.783493419457757, - -10.141765258096722, - -8.360641469524417, - -6.608853267483954, - -4.960067948426983, - -3.516332036123336, - -2.251208691148674, - -1.136398815823848, - -0.15483674068005412, - 0.7311228940413574, - 1.4922029567319197, - 2.094434214920683, - 2.488851884114702, - 2.626403220278838, - 2.4953229604975404, - 2.135692438417455, - 1.6103280182066604, - 1.008376148935906, - 0.45691402569743167, - 0.00322454090335613, - -0.31272433629336444, - -0.4935647377520188, - -0.5978194740991611, - -0.6900936504928362, - -0.8257984432213111, - -1.0359075230860886, - -1.3037766763702814, - -1.5895310241506755, - -1.8234518161350566, - -1.9410978222964241, - -1.9099143957341003, - -1.7332757083643922, - -1.4494071959406307, - -1.1287651739006421, - -0.8451681048900422, - -0.6410496212613284, - -0.534662110599598, - -0.4954625938104582, - -0.4628938606716584, - -0.37294571235270557, - -0.1780523438155636, - 0.12551332342575372, - 0.5003036095093868, - 0.8787840034911399, - 1.165726209908454, - 1.3214534181567437, - 1.3519841510850277, - 1.3399579685929088, - 1.444439890499339, - 1.8655004326520965, - 2.80283071439431, - 4.410166148424278, - 6.671620631487039, - 9.559681169599397, - 12.824993037304264, - 16.11526168746115 - ], - "pressure:branch9_seg2:RESISTANCE_1": [ - 103071.7089060503, - 122552.10740032504, - 137872.69344779127, - 147752.8909140384, - 151557.32821780184, - 149308.73121717223, - 141814.55044325, - 130774.2259383037, - 117344.5859520731, - 102765.18314938594, - 88428.11376646048, - 74209.80711745303, - 60372.464973778835, - 46828.96134600771, - 33039.05575461325, - 19419.999496878947, - 5800.93891730053, - -7446.080954827048, - -19406.39963148534, - -30066.692341197115, - -38963.06536305025, - -46024.57592825375, - -51586.869338972625, - -55842.066017033314, - -59148.28953787434, - -61691.17109088847, - -63434.70799870479, - -64242.15418902957, - -63931.75289920073, - -62405.122044198986, - -59851.049911199516, - -56810.518189161376, - -53983.78893514873, - -52359.929024545316, - -52734.454950557614, - -55605.87864304912, - -60850.51934113884, - -68054.86276984999, - -75999.62918247603, - -83214.66594468759, - -88510.7086159519, - -90611.6047580329, - -88975.75436551248, - -83625.94362160601, - -75366.12356544881, - -64865.7835503465, - -53473.88212039962, - -42269.60836254472, - -31724.131425821088, - -22490.13134712805, - -14398.520570185632, - -7268.30070882037, - -990.3213346977835, - 4676.193757859972, - 9543.990768992615, - 13395.805659869426, - 15918.46424121978, - 16798.22974274695, - 15959.852641493673, - 13659.689404652352, - 10299.507631638426, - 6449.4796861910345, - 2922.3794416213177, - 20.623862510501418, - -2000.1556526597942, - -3156.793973470195, - -3823.597531816641, - -4413.774547441133, - -5281.729729588949, - -6625.567784367944, - -8338.833875090499, - -10166.49199968556, - -11662.627541638838, - -12415.080411233175, - -12215.63412685716, - -11085.869577002417, - -9270.273079250079, - -7219.476647911234, - -5405.616276879651, - -4100.093516222782, - -3419.648932520923, - -3168.9324835981583, - -2960.6259077188847, - -2385.3259504497073, - -1138.8061644732898, - 802.7714961673016, - 3199.8951679526444, - 5620.620425271965, - 7455.875982785553, - 8451.892664899035, - 8647.164381741364, - 8570.246041528071, - 9238.50265749474, - 11931.566566370955, - 17926.64352026946, - 28207.01086296128, - 42671.062561476945, - 61142.82807546729, - 82027.45786571276, - 103071.7089060503 - ], - "flow:branch11_seg0:RESISTANCE_2": [ - 19.6281880594351, - 22.645476323357855, - 24.685486329598955, - 25.59659857461856, - 25.415649243114487, - 24.23630643614857, - 22.268233156032487, - 19.88235812908537, - 17.320566059169657, - 14.6987269199052, - 12.289357637205603, - 9.972369524273317, - 7.724955104922635, - 5.553505567972261, - 3.299599710362418, - 1.095454379141584, - -1.0865303022687822, - -3.1882694369560736, - -4.975773637379154, - -6.514501216889465, - -7.731961814125388, - -8.622795720838829, - -9.300836035774516, - -9.795024729955301, - -10.171107871911008, - -10.452176187936498, - -10.604522677512444, - -10.591976985082727, - -10.379690498203903, - -9.963182929795908, - -9.395988169938194, - -8.819458334355955, - -8.368416603282443, - -8.228153932349548, - -8.526763201516976, - -9.30657396417887, - -10.474750824774805, - -11.908886481487144, - -13.34448175927643, - -14.469628850948393, - -15.117355027138473, - -15.089083189104679, - -14.350243785456895, - -12.979174648630089, - -11.221802353375596, - -9.183420929674142, - -7.135571169382641, - -5.285721026529854, - -3.6140376313075375, - -2.24031546633096, - -1.0741720888377762, - -0.038210628694345564, - 0.8541737832196904, - 1.6696699656692384, - 2.3461873359038536, - 2.8190121554790437, - 3.0428392644117035, - 2.963042791535621, - 2.5884873644706485, - 1.9970395949085613, - 1.291841766275194, - 0.570625063293617, - -0.005082184037344281, - -0.41265001184103794, - -0.6463381351613506, - -0.7314030334582727, - -0.767281290432739, - -0.8396225406135437, - -1.0014357448447706, - -1.2688490789167592, - -1.588850122617914, - -1.8998053408061646, - -2.108989382278802, - -2.1430532425660145, - -1.9911284565682177, - -1.6860899171376142, - -1.2956175539165335, - -0.9122949173477616, - -0.6316314981531093, - -0.4713518906408042, - -0.42879345611880443, - -0.44324126735592534, - -0.42281072294112665, - -0.29296673924362815, - -0.015422321077025947, - 0.3862879150186163, - 0.834405619294503, - 1.239564176895862, - 1.48196811084144, - 1.543243424404048, - 1.476562039728496, - 1.4250292443058643, - 1.6142228811829846, - 2.2922753364518607, - 3.671381242037764, - 5.896046784251235, - 8.80231698488622, - 12.33782069499675, - 16.13375187736861, - 19.6281880594351 - ], - "pressure:branch11_seg0:RESISTANCE_2": [ - 125540.05794330096, - 144838.35192426032, - 157886.0654275578, - 163713.45426682476, - 162556.11923962526, - 155013.15277357318, - 142425.5398531003, - 127165.70597432723, - 110780.72311588928, - 94011.68480911822, - 78601.58386444682, - 63782.34425502639, - 49408.091492947504, - 35519.70302508466, - 21103.93163008563, - 7006.423915215906, - -6949.346352851191, - -20391.873597411948, - -31824.58354575709, - -41666.14145755791, - -49452.905750711514, - -55150.59623178651, - -59487.27877054137, - -62648.06351106389, - -65053.45616828609, - -66851.14287135776, - -67825.53679253433, - -67745.29571526889, - -66387.5311685542, - -63723.587654593444, - -60095.862935325975, - -56408.43194343091, - -53523.611149873504, - -52626.50420434644, - -54536.38120573399, - -59523.97802480826, - -66995.52814054741, - -76168.12588095623, - -85350.05922146229, - -92546.39495330032, - -96689.19109138765, - -96508.36705535311, - -91782.81922261982, - -83013.58905423679, - -71773.59995763117, - -58736.302716175946, - -45638.44687804711, - -33806.978103804584, - -23115.047210152577, - -14328.848521464442, - -6870.3043737622365, - -244.39161301042097, - 5463.215754521488, - 10679.05318624525, - 15005.995112910794, - 18030.138506421295, - 19461.715794126616, - 18951.34500502431, - 16555.72346959083, - 12772.878765004081, - 8262.499304605859, - 3649.664619721714, - -32.50517452704982, - -2639.2709423792594, - -4133.918357282822, - -4677.9855034110315, - -4907.459484699199, - -5370.147365609125, - -6405.089509719975, - -8115.440223321803, - -10162.137017062509, - -12150.977555523179, - -13488.899151127556, - -13706.768420633542, - -12735.071676163418, - -10784.073662535082, - -8286.64888977585, - -5834.95310104065, - -4039.856080289204, - -3014.722677586351, - -2742.5229045005676, - -2834.9297560321834, - -2704.257901766583, - -1873.7879068985255, - -98.63972546661485, - 2470.661432801481, - 5336.780424013951, - 7928.136724630373, - 9478.529650408356, - 9870.440834051438, - 9443.95292439139, - 9114.353977012332, - 10324.418811531692, - 14661.17899873299, - 23481.811589624962, - 37710.56465782543, - 56298.797472889695, - 78911.54905658327, - 103189.97043408151, - 125540.05794330096 - ], - "flow:branch14_seg0:RESISTANCE_3": [ - 33.06419973600639, - 37.07486384711923, - 39.09657756928473, - 38.99358049767773, - 37.05004404819263, - 33.60113775553367, - 29.148843333422214, - 24.425288900198428, - 19.85177555200809, - 15.573796079300296, - 11.978141773160383, - 8.71823621593331, - 5.666454784967304, - 2.774153793664274, - -0.2855614589931271, - -3.242355541436391, - -6.159818010308117, - -8.920823694239026, - -11.062771038963666, - -12.771865296347134, - -13.940598141505925, - -14.589347228836315, - -14.977098205314539, - -15.16310286388642, - -15.26601969894753, - -15.312205648623355, - -15.208965383829732, - -14.871251914308456, - -14.229200008698298, - -13.283174854679219, - -12.150460748737222, - -11.112622254134692, - -10.422231803025527, - -10.39677655665038, - -11.225637617413241, - -12.91477418092292, - -15.20234409159858, - -17.807940598343077, - -20.19779432865531, - -21.800503050143156, - -22.37715301415016, - -21.649784516235076, - -19.675128479107457, - -16.700584552285832, - -13.295619729053147, - -9.660871899589596, - -6.290074643243857, - -3.5438829611001728, - -1.267954892191182, - 0.38384368059551655, - 1.6544305486350421, - 2.7546132831484766, - 3.659948600354905, - 4.497628598413049, - 5.146530578412459, - 5.4641671401621466, - 5.370317592122712, - 4.781435610074632, - 3.7391434791422236, - 2.4214299076609085, - 1.0366166651900899, - -0.2317788020438179, - -1.1025368029873719, - -1.5877485461492955, - -1.7247459551300908, - -1.6104120606899848, - -1.4652379796183832, - -1.4585369661775773, - -1.6745809792320487, - -2.1149211023222687, - -2.642638029212009, - -3.12185572446336, - -3.374463046902477, - -3.2725304617112183, - -2.829968938754027, - -2.1443879446732415, - -1.3708424126951757, - -0.6907049542854286, - -0.2768177047718721, - -0.13252144537372884, - -0.21076101486022725, - -0.3675788458032579, - -0.41073152952598385, - -0.20374165648309275, - 0.30163227237656337, - 1.0256159824054887, - 1.7912653169390234, - 2.415009117276782, - 2.6771985777002802, - 2.581220459681752, - 2.269885481210826, - 2.0558683859234397, - 2.38044066178802, - 3.6899925823765574, - 6.317324986952172, - 10.448731136715299, - 15.626222960142684, - 21.668768724679943, - 27.861122105052686, - 33.06419973600639 - ], - "pressure:branch14_seg0:RESISTANCE_3": [ - 164253.35189272667, - 184177.16764589946, - 194220.45488964036, - 193708.7953188168, - 184053.8700854073, - 166920.70420035927, - 144802.99718540453, - 121337.74913163485, - 98617.86165925056, - 77366.10074167726, - 59503.93329935382, - 43309.66823612429, - 28149.303452402422, - 13781.19122535587, - -1418.586482833719, - -16107.081676281068, - -30600.188824185683, - -44316.06405484629, - -54956.63705397353, - -63446.92149203778, - -69252.84720071958, - -72475.64445521729, - -74401.87881428756, - -75325.89599545793, - -75837.15697440859, - -76066.5953731914, - -75553.72768916666, - -73876.06514807754, - -70686.5375494196, - -65986.9590396389, - -60359.96397783446, - -55204.28342839114, - -51774.623959389166, - -51648.16968033524, - -55765.71096578715, - -64156.85137070449, - -75520.83503029749, - -88464.6825551067, - -100336.78255665707, - -108298.57451635454, - -111163.20424316978, - -107549.84856549946, - -97740.3302489184, - -82963.65897807074, - -66048.78156509325, - -47992.408840484655, - -31247.265987300994, - -17604.982419771786, - -6298.832052613931, - 1906.8240466728976, - 8218.730991729251, - 13684.119638093356, - 18181.56284329376, - 22342.91405073586, - 25566.470831656086, - 27144.39711953298, - 26678.179791965144, - 23752.78494820725, - 18574.98002554406, - 12028.961289918754, - 5149.610855388562, - -1151.4098462178179, - -5477.082975595143, - -7887.474148779901, - -8568.037531695418, - -8000.05991400876, - -7278.877196314781, - -7245.588505600297, - -8318.832485009278, - -10506.314467572876, - -13127.859062157699, - -15508.473544279861, - -16763.35343717136, - -16256.981926036173, - -14058.464673394003, - -10652.69719162269, - -6809.947405342304, - -3431.221829534532, - -1375.1500485445647, - -658.3280942560486, - -1046.9995770498335, - -1826.0250660857173, - -2040.3950796120498, - -1012.1294410485847, - 1498.4216213431632, - 5094.962654772733, - 8898.486422944747, - 11997.064666055632, - 13299.545840537576, - 12822.754394842435, - 11276.132544515222, - 10212.957704537212, - 11825.338607988208, - 18330.81262978755, - 31382.6377891313, - 51906.26496133036, - 77626.5422759183, - 107644.15660546419, - 138405.9717091533, - 164253.35189272667 - ], - "flow:branch19_seg0:RESISTANCE_4": [ - 18.038085311675374, - 22.572412361107162, - 26.82714625014294, - 30.42431567129256, - 33.04149166559423, - 34.484042094642476, - 34.711588093238205, - 33.85344517957583, - 32.07639122109306, - 29.632378736859376, - 26.787940323683433, - 23.689175107256915, - 20.48025549724475, - 17.21906589922001, - 13.905318618852245, - 10.57803433524926, - 7.231760669754619, - 3.921590670096176, - 0.7458919018098767, - -2.231194212280446, - -4.91429051581695, - -7.252203091083878, - -9.235381194442251, - -10.875987049581301, - -12.217706583857328, - -13.300700416276356, - -14.1486935704015, - -14.76351371595574, - -15.128778827132512, - -15.224593547486663, - -15.058095554485396, - -14.679124733939835, - -14.184695139218071, - -13.728792441287268, - -13.475828691040615, - -13.577667290969742, - -14.121194312385951, - -15.12414330188602, - -16.478664429387738, - -17.996043980878916, - -19.442033833459586, - -20.54978699725982, - -21.10872726838986, - -20.986864313016575, - -20.163201874488188, - -18.691784462957816, - -16.73732282790124, - -14.480761522892845, - -12.097581356799731, - -9.751970553579788, - -7.525012098192186, - -5.466203520076281, - -3.584809579331867, - -1.8709649933518915, - -0.33879523972258313, - 0.990136549804506, - 2.0661391096608033, - 2.8311081972425325, - 3.243167298795572, - 3.2982901861962883, - 3.0272661626674924, - 2.5084699803053288, - 1.8617362859140343, - 1.1860636578096082, - 0.5764406556909443, - 0.08585432763527434, - -0.2868138765263446, - -0.5772864001915698, - -0.8416397221633678, - -1.132864664119831, - -1.4754806543337542, - -1.8609485680949969, - -2.2415024540496056, - -2.552225005164719, - -2.731512586552607, - -2.7420671666307164, - -2.583046745942515, - -2.297391229576287, - -1.951130883278756, - -1.6135410317849705, - -1.3396157082114526, - -1.1433812489707629, - -1.0000926123860392, - -0.8567045233199392, - -0.6514464036481002, - -0.3437970475239897, - 0.07156372241312173, - 0.555494994032842, - 1.0288699871496103, - 1.4206796382075124, - 1.6854369423378348, - 1.843954306891857, - 2.0032796043834233, - 2.3473312525728174, - 3.1108352577666634, - 4.524815228189813, - 6.7395088587464365, - 9.830459827949662, - 13.676469294818892, - 18.038085311675374 - ], - "pressure:branch19_seg0:RESISTANCE_4": [ - 66998.29630829666, - 83840.00550122884, - 99643.23056004985, - 113004.08447470039, - 122724.97944372677, - 128082.9994006705, - 128928.16638898439, - 125740.79299480231, - 119140.33703680929, - 110062.61787922143, - 99497.60921318147, - 87987.96245341247, - 76069.17267354537, - 63956.238111444785, - 51648.090193037664, - 39289.66220675494, - 26860.702553026804, - 14565.841616511168, - 2770.442970411473, - -8287.25490387569, - -18252.99561649011, - -26936.63119942674, - -34302.687624218, - -40396.33865803462, - -45379.845575034, - -49402.37570673514, - -52552.05016639999, - -54835.65741054372, - -56192.350192893595, - -56548.23181303712, - -55929.81352322374, - -54522.21405308693, - -52685.769667866596, - -50992.424530841796, - -50052.84918227023, - -50431.10510997847, - -52449.91053212872, - -56175.132606402054, - -61206.18808086639, - -66842.14350775411, - -72212.93840799309, - -76327.43135013552, - -78403.48572379627, - -77950.85395873089, - -74891.5503152978, - -69426.3106278524, - -62166.91488345139, - -53785.43978016272, - -44933.66819991438, - -36221.439329574205, - -27949.917165093677, - -20302.94883251692, - -13314.946140621158, - -6949.266778658851, - -1258.3765663898635, - 3677.633230092947, - 7674.195896700453, - 10515.49666177221, - 12045.994899550918, - 12250.73611679223, - 11244.080059829397, - 9317.131619960935, - 6914.98887916121, - 4405.359161650631, - 2141.055504884852, - 318.88604488038715, - -1065.3038142790483, - -2144.1968272403433, - -3126.0761059737406, - -4207.7638026684035, - -5480.331663153587, - -6912.063083493215, - -8325.542483991074, - -9479.649540785053, - -10145.571798867262, - -10184.77434565907, - -9594.129768905837, - -8533.12841555119, - -7247.024437211502, - -5993.125006630505, - -4975.692741618495, - -4246.825224976155, - -3714.6127220625285, - -3182.0308259040016, - -2419.647009449029, - -1276.954624725789, - 265.80689670435385, - 2063.257688659018, - 3821.4996254154917, - 5276.785962319207, - 6260.165739353236, - 6848.9418304352575, - 7440.718801567597, - 8718.619081581686, - 11554.478136948532, - 16806.379732681682, - 25032.34704175758, - 36512.969587381886, - 50798.08230380795, - 66998.29630829666 - ], - "flow:branch21_seg0:RESISTANCE_5": [ - 35.73106770740595, - 38.700321112188696, - 39.65497058804138, - 38.161057001212114, - 35.11900001333421, - 30.972133662730425, - 26.140048252325347, - 21.150533587280496, - 16.999370257915423, - 12.988530987990407, - 9.639043604527043, - 6.791057740559995, - 3.73894707603313, - 0.9526331681219963, - -2.0854204323120134, - -5.082899242575303, - -7.77751970241566, - -10.42567635404384, - -12.227184463320357, - -13.526450573734893, - -14.442514565551939, - -14.792561388240564, - -15.01480555180721, - -15.129309999627036, - -15.17052714040677, - -15.174288710243273, - -14.96677366583852, - -14.461022112663139, - -13.625958389220356, - -12.538613994935833, - -11.323681870707711, - -10.410248070612948, - -10.041408547100403, - -10.433257911132856, - -11.78869721124378, - -13.964690237480855, - -16.565747338949386, - -19.153284419585898, - -21.363767552623493, - -22.384988126731564, - -22.222100608114218, - -20.766395947431768, - -18.105654138389855, - -14.567097062359206, - -11.026505851781778, - -7.461932420531439, - -4.213562194877067, - -1.9439912298756092, - -0.012285133473400232, - 1.3530529841243644, - 2.339752866315798, - 3.398283154002537, - 4.1857416522786535, - 4.91002882034115, - 5.468587744771273, - 5.526858835377903, - 5.153411515385749, - 4.285809519979595, - 3.0122538393624847, - 1.5321806891926277, - 0.21477603725883543, - -0.9128528760419009, - -1.5804965818744463, - -1.7697529807623151, - -1.7285292011092404, - -1.5217015442164317, - -1.3792691736214144, - -1.4808952319962598, - -1.8373113248006203, - -2.3974523845353564, - -2.940345996988771, - -3.3359631820193587, - -3.438174617107902, - -3.11362116108033, - -2.4666609938188038, - -1.6722341134774272, - -0.9066721645367478, - -0.2967755017159107, - -0.07221822880889506, - -0.10924466256353836, - -0.27777595525152077, - -0.4437553764319368, - -0.39045861071548177, - -0.012712079893967068, - 0.6548426640126861, - 1.4931998340051442, - 2.214989932709831, - 2.6956936729407084, - 2.7526654413483502, - 2.4335242088839295, - 2.0456220544721777, - 1.9845603770392055, - 2.724299499449196, - 4.7002602868192875, - 8.10414092878581, - 13.153664171146515, - 18.832491895488946, - 25.082932814947593, - 31.40214079916775, - 35.73106770740595 - ], - "pressure:branch21_seg0:RESISTANCE_5": [ - 184782.73399634796, - 200138.1878707384, - 205075.14473977702, - 197349.39080516173, - 181617.4341842173, - 160171.97086762125, - 135182.90643914562, - 109379.69874684315, - 87912.01366263344, - 67170.01255632391, - 49848.18379735024, - 35119.863372217886, - 19335.914298307714, - 4926.529560849549, - -10784.72359599931, - -26286.144773572738, - -40221.338082913586, - -53916.244435714485, - -63232.71928819753, - -69951.856427818, - -74689.26898737965, - -76499.53140250802, - -77648.86409233474, - -78241.02229752378, - -78454.17618430601, - -78473.6290919056, - -77400.46784286473, - -74784.98051726623, - -70466.45975145666, - -64843.27290417875, - -58560.26783494476, - -53836.45727634571, - -51929.0086627607, - -53955.452355782036, - -60965.08838713366, - -72218.20692917432, - -85669.53859454273, - -99050.95165479742, - -110482.43531827065, - -115763.6637226989, - -114921.29312044631, - -107393.13613127214, - -93633.14580690903, - -75333.54568676878, - -57023.42606730012, - -38589.28271757147, - -21790.379974334563, - -10053.324386018528, - -63.53240181036695, - 6997.295230463506, - 12100.000342951585, - 17574.175427178125, - 21646.50641408532, - 25392.147720104043, - 28280.72765282247, - 28582.07581077455, - 26650.798039933525, - 22164.006040190314, - 15577.830040970728, - 7923.651737582257, - 1110.7113755061343, - -4720.806317705103, - -8173.516723937654, - -9152.253634326751, - -8939.065414697701, - -7869.458980889391, - -7132.871900323148, - -7658.429688450112, - -9501.630697946453, - -12398.392622023017, - -15205.959605460353, - -17251.88853388058, - -17780.473589776873, - -16102.049775971647, - -12756.304010066633, - -8647.936129440923, - -4688.8428516428285, - -1534.7704983030158, - -373.47559476772875, - -564.9572967807089, - -1436.514600408166, - -2294.8749350051507, - -2019.251431030595, - -65.74034945890813, - 3386.5099913787462, - 7722.06277152827, - 11454.790517096973, - 13940.743416390891, - 14235.372147140879, - 12584.937574386127, - 10578.90682259885, - 10263.127182571021, - 14088.678061775683, - 24307.332582534906, - 41910.45534310854, - 68023.99658240718, - 97391.97744967624, - 129716.04823418282, - 162395.74696520402, - 184782.73399634796 - ], - "flow:branch22_seg0:RESISTANCE_6": [ - 53.068099856052925, - 58.237905316225095, - 60.05683342868907, - 58.49441260673998, - 54.32597527319084, - 48.18571811662028, - 40.85507279351416, - 33.445178588515645, - 26.777979117016844, - 20.5505169832949, - 15.465694372519325, - 10.912121056182858, - 6.424292583642194, - 2.192862846412892, - -2.4147613807710955, - -6.8877389352525284, - -11.148533782599168, - -15.163190373765566, - -18.069666338138557, - -20.282891639889222, - -21.704494023886745, - -22.35584754617988, - -22.73324140527383, - -22.889424012764508, - -22.976697940014173, - -22.994057872870112, - -22.741945479865915, - -22.076616958387515, - -20.913048738319997, - -19.30528711456145, - -17.483221592594965, - -15.985765254620016, - -15.194596113351784, - -15.57397854442738, - -17.3683338637119, - -20.4532195795189, - -24.31003612523326, - -28.36527386751543, - -31.84827980374758, - -33.764045173890516, - -33.93147054812844, - -32.03025379317834, - -28.272320071935926, - -23.151290173300367, - -17.710178430883317, - -12.13970796224931, - -7.211095045240692, - -3.4617851148480234, - -0.3888285198788027, - 1.7278492032897301, - 3.36770477166017, - 4.888384372909414, - 6.12121472357687, - 7.305111435776397, - 8.163163670917779, - 8.410843192049407, - 7.993632389429675, - 6.793511622872379, - 4.942934479712157, - 2.757748187147892, - 0.6611305443786261, - -1.155664275601817, - -2.2603391010023, - -2.7078598453779392, - -2.6909003530914615, - -2.3712219740146296, - -2.1202508641640723, - -2.1909647143685698, - -2.6528233437536977, - -3.4514342986011712, - -4.302694093191332, - -4.98678510073367, - -5.223391632023288, - -4.851392597607807, - -3.9619653954325944, - -2.777012846470809, - -1.5595316258140894, - -0.590478480217135, - -0.13589510189589865, - -0.09706814738562952, - -0.3511167670119648, - -0.6356113056518818, - -0.6331715621171733, - -0.16357980103850722, - 0.7778503891146588, - 2.012112592003863, - 3.1762110621341475, - 4.012175297637264, - 4.2030263148386995, - 3.8226209963842797, - 3.221696462465895, - 2.972625383134486, - 3.8076798444461137, - 6.41197366358813, - 11.185416148410269, - 18.350823439879022, - 26.8322518793925, - 36.4458119919377, - 45.846154285405284, - 53.068099856052925 - ], - "pressure:branch22_seg0:RESISTANCE_6": [ - 179526.72481750255, - 197015.91784920497, - 203169.26058420204, - 197883.66917029637, - 183782.05437479838, - 163009.87184242133, - 138210.66574260636, - 113143.36464315603, - 90588.56264214363, - 69521.37003820731, - 52319.669731119524, - 36915.159188712976, - 21733.060161169604, - 7418.345217901625, - -8169.01684969578, - -23300.8759649901, - -37714.93160554443, - -51296.31384901014, - -61128.77651602947, - -68616.00690084168, - -73425.21658960129, - -75628.71294377685, - -76905.41747386039, - -77433.77541530991, - -77729.0187415912, - -77787.74652527412, - -76934.86292241787, - -74684.08984569453, - -70747.79681434002, - -65308.81973802823, - -59144.86330376728, - -54079.04348653627, - -51402.5578936077, - -52685.98966314501, - -58756.20386911944, - -69192.21779269082, - -82239.63506506437, - -95958.30131094673, - -107741.1360072669, - -114222.07433656733, - -114788.46599502134, - -108356.74490249917, - -95643.84327447886, - -78319.65552537242, - -59912.646924503126, - -41068.024229530594, - -24394.77349540166, - -11711.045720054073, - -1315.387415015354, - 5845.2273453633525, - 11392.77662943341, - 16537.159583590765, - 20707.76293496679, - 24712.826237403213, - 27615.573988219956, - 28453.46140747415, - 27042.058150980385, - 22982.109684952382, - 16721.699863708738, - 9329.324043127206, - 2236.5715303757574, - -3909.5543829558496, - -7646.614008804746, - -9160.554280709623, - -9103.18116742668, - -8021.72521655897, - -7172.702517468353, - -7411.923932234617, - -8974.368551265581, - -11676.029426934138, - -14555.798691445925, - -16870.04431912556, - -17670.47236814447, - -16412.018259836645, - -13403.130566416561, - -9394.495421079338, - -5275.81740803013, - -1997.5591346997135, - -459.7263257673849, - -328.3766826313433, - -1187.8104432070431, - -2150.2412234472263, - -2141.987693224801, - -553.3822768547021, - 2631.4289212253098, - 6806.876156980718, - 10744.962997749073, - 13572.988151682977, - 14218.627587413506, - 12931.735441083143, - 10898.837829721242, - 10056.242838751046, - 12881.19027214403, - 21691.38587140746, - 37839.70280247071, - 62079.916914339155, - 90772.16467994814, - 123294.35721223739, - 155095.2445379068, - 179526.72481750255 - ], - "flow:branch23_seg0:RESISTANCE_7": [ - 13.839546714971622, - 17.195526137992005, - 20.290783616933354, - 22.85207085772379, - 24.656069902233885, - 25.573576518353544, - 25.591469043844977, - 24.827723333950196, - 23.411575947151956, - 21.529928662325133, - 19.388099797578914, - 17.0772253452075, - 14.69788176087023, - 12.289520682204026, - 9.839961355337884, - 7.386016481171793, - 4.920558605305119, - 2.4842904394310135, - 0.16290837406229033, - -2.0038248127593277, - -3.9450402224499572, - -5.624270977374258, - -7.042613598011705, - -8.210702274641756, - -9.163474820677434, - -9.930831971031473, - -10.527276206440906, - -10.951570606902179, - -11.189911609490073, - -11.227594042729358, - -11.073083245608874, - -10.769760645676245, - -10.394054653914102, - -10.065915305572675, - -9.908091990950386, - -10.029754287966268, - -10.485114287805231, - -11.27927118034533, - -12.319107584314269, - -13.452154879992182, - -14.504337578509476, - -15.275512824841877, - -15.616872161711267, - -15.441184085935722, - -14.750044368784375, - -13.589305848098139, - -12.091160791194037, - -10.396147877519184, - -8.626335320929295, - -6.903547068401384, - -5.278616203779206, - -3.7806834726250527, - -2.4156281258845693, - -1.1726804463614484, - -0.06523391995324367, - 0.888274009330693, - 1.6495948393144446, - 2.1745566688449958, - 2.4343285930606293, - 2.4314340500357514, - 2.1934908286103894, - 1.7818183405803134, - 1.291672409564648, - 0.7927998497372475, - 0.3522313474667114, - 0.005531136599438443, - -0.255053485473198, - -0.46032116472091245, - -0.6532188268529958, - -0.8721413178765631, - -1.1309866951564567, - -1.419586737463981, - -1.6985898746208956, - -1.9175905217610156, - -2.0325589389875764, - -2.0194680751769374, - -1.8821026800776763, - -1.6568483593390555, - -1.39585746247096, - -1.1493094737178864, - -0.9555821365323177, - -0.8203480966718648, - -0.7202932894277674, - -0.6132368708375653, - -0.45319204328283524, - -0.2133056532572058, - 0.10536664323512299, - 0.4696310737714779, - 0.8157045658800623, - 1.09290503660595, - 1.272493443385686, - 1.3779562479116279, - 1.4987406010089215, - 1.7795882332795019, - 2.3984107924666556, - 3.526293686612658, - 5.258409387346045, - 7.642199634415879, - 10.570104931925428, - 13.839546714971622 - ], - "pressure:branch23_seg0:RESISTANCE_7": [ - 69938.38102996523, - 86897.87923101654, - 102539.81472257902, - 115483.32267575769, - 124599.86205028066, - 129236.49709601347, - 129326.9172731497, - 125467.31554133417, - 118310.79101258425, - 108801.85495560573, - 97978.08692846706, - 86300.04419405127, - 74275.99155491727, - 62105.29852236926, - 49726.40945279031, - 37325.35794651451, - 24866.125293379922, - 12554.403328402415, - 823.2601957882915, - -10126.362239916887, - -19936.32681320241, - -28422.34754739871, - -35589.96572711146, - -41492.92141095459, - -46307.77342394919, - -50185.62563058569, - -53199.76656008073, - -55343.94541647291, - -56548.40566342644, - -56738.83447069648, - -55958.011570581, - -54425.16573349856, - -52526.52921394126, - -50868.2715232983, - -50070.708760522946, - -50685.53121540229, - -52986.70059836405, - -56999.985750827815, - -62254.81642753863, - -67980.68990606806, - -73297.91278898285, - -77195.05980756853, - -78920.12493158177, - -78032.28229922705, - -74539.59616733505, - -68673.78461961227, - -61102.88349215329, - -52537.10735448099, - -43593.32996901714, - -34887.190691429125, - -26675.575361982093, - -19105.747226250893, - -12207.417177333346, - -5926.1602690562895, - -329.66070664951013, - 4488.907577904097, - 8336.255138488299, - 10989.158533088676, - 12301.920301296312, - 12287.292679657521, - 11084.842626467453, - 9004.448815860163, - 6527.488147303689, - 4006.427313940995, - 1780.0070115854064, - 27.951691408695176, - -1288.917059022372, - -2326.2407127517167, - -3301.052277886437, - -4407.380751541921, - -5715.460199293421, - -7173.90534492337, - -8583.852369698718, - -9690.575806596557, - -10271.570627888084, - -10205.415728447495, - -9511.237404501519, - -8372.910923374116, - -7053.98905646123, - -5808.054667517372, - -4829.050325609231, - -4145.642841045237, - -3640.014197490872, - -3099.002793772428, - -2290.2135782088135, - -1077.9436899622515, - 532.4720956681701, - 2373.288494009498, - 4122.176680443081, - 5523.013900233507, - 6430.566920617116, - 6963.524968978908, - 7573.910719564198, - 8993.178931278326, - 12120.40909464586, - 17820.18418356674, - 26573.459876825535, - 38619.98380052621, - 53416.202241363884, - 69938.38102996523 - ], - "flow:branch28_seg2:RESISTANCE_8": [ - 14.51269324693512, - 17.707118990218472, - 20.461367293521196, - 22.530644591444943, - 23.732680785823934, - 24.004245449229835, - 23.40526050355615, - 22.12016284281434, - 20.317185195167372, - 18.209651084889888, - 15.994061481989096, - 13.73196446168477, - 11.495180780841551, - 9.280043764895238, - 7.04946514211403, - 4.827112182133581, - 2.5968403009539287, - 0.4152439078975615, - -1.6308470187316144, - -3.4985761068189913, - -5.114528081069313, - -6.459706529838403, - -7.549433122679745, - -8.410303819079928, - -9.090516806354689, - -9.62216570609402, - -10.016159477544424, - -10.262487778200475, - -10.338463050408288, - -10.22563127479723, - -9.937949831410121, - -9.530733330538988, - -9.096708320397694, - -8.77113546777547, - -8.680772676105384, - -8.925701640708963, - -9.535774963809994, - -10.480901407967114, - -11.623048071748006, - -12.778283951931874, - -13.749261903188106, - -14.334523258490771, - -14.408382599259827, - -13.924085183443996, - -12.93087811844189, - -11.520171224124223, - -9.867855380485194, - -8.12415213432367, - -6.412930489257122, - -4.838757612951295, - -3.418788287578173, - -2.1573374384520587, - -1.0336398135707379, - -0.022485417047921206, - 0.8633559838366924, - 1.6035804495018984, - 2.152912137682989, - 2.4647206768123926, - 2.515048056961703, - 2.3187597525934547, - 1.9185249018551114, - 1.3935231534682295, - 0.8484039628915164, - 0.3519813722015094, - -0.0366551604793622, - -0.3023070973319215, - -0.4747329012517463, - -0.6036269142437716, - -0.7437758256690552, - -0.9346804024800023, - -1.181744596341084, - -1.4611692399514253, - -1.718011980539957, - -1.893967599567919, - -1.9444721477779137, - -1.8543043927906464, - -1.6421699113495811, - -1.361655394253193, - -1.0758497960129276, - -0.8380086798939366, - -0.6805376094338499, - -0.5941603402132886, - -0.5386930401133566, - -0.45857453635137996, - -0.3022715482056303, - -0.04840737498636307, - 0.28895678281765824, - 0.6586006941883749, - 0.9832332767612317, - 1.2090027190379056, - 1.3157511257183905, - 1.3494937436852297, - 1.428735078254534, - 1.7246848692289065, - 2.431014850791519, - 3.711673611501882, - 5.634539329373503, - 8.206003103396291, - 11.247008473127247, - 14.51269324693512 - ], - "pressure:branch28_seg2:RESISTANCE_8": [ - 86677.09812185711, - 105755.81417285926, - 122205.56931997759, - 134564.33335788708, - 141743.49765175043, - 143365.4183094772, - 139787.97916526135, - 132112.73004774709, - 121344.44136296854, - 108757.18841388429, - 95524.57375436788, - 82014.19342358623, - 68654.99707850399, - 55425.08549574958, - 42102.948876061404, - 28829.94004880946, - 15509.63544414114, - 2480.0453187348126, - -9740.238056376997, - -20895.25488741687, - -30546.532251931465, - -38580.614032031495, - -45089.008938924126, - -50230.56140975025, - -54293.13524346652, - -57468.40967840773, - -59821.53850200387, - -61292.73491764055, - -61746.49742828644, - -61072.60935531049, - -59354.43118727321, - -56922.32957785632, - -54330.114077177095, - -52385.629369036884, - -51845.93736102269, - -53308.776238451035, - -56952.44074566624, - -62597.210888875656, - -69418.68480564257, - -76318.33410139188, - -82117.50243790657, - -85612.97740298079, - -86054.10250761276, - -83161.63493343099, - -77229.70315731416, - -68804.25256593176, - -58935.79189701706, - -48521.51972910846, - -38301.24400813047, - -28899.492414630247, - -20418.721929703184, - -12884.703456000614, - -6173.416471987333, - -134.29421173633725, - 5156.395856497031, - 9577.388400811504, - 12858.273335659374, - 14720.550645701107, - 15021.131054395826, - 13848.798646594158, - 11458.394960731373, - 8322.82065451679, - 5067.094872557593, - 2102.2096599342567, - -218.9230411940223, - -1805.5299242210056, - -2835.3434861021246, - -3605.163313567999, - -4442.203051168153, - -5582.3811321485455, - -7057.972671865786, - -8726.83708178401, - -10260.83101723651, - -11311.726409021347, - -11613.364954416063, - -11074.837803496297, - -9807.864061956134, - -8132.490379810581, - -6425.515701786357, - -5005.009017844618, - -4064.512640407325, - -3548.624175575837, - -3217.3455816228366, - -2738.83760975307, - -1805.3176069722892, - -289.11317287079424, - 1725.7951360971908, - 3933.4943571108442, - 5872.363299935255, - 7220.771880490272, - 7858.327016724877, - 8059.8548901967515, - 8533.123966785188, - 10300.684862265405, - 14519.242512223367, - 22167.98028776722, - 33652.300783436156, - 49010.37485454668, - 67172.7873259158, - 86677.09812185711 - ], - "flow:branch30_seg2:RESISTANCE_9": [ - 35.318263835831395, - 39.49013173193545, - 41.49279717994543, - 41.22265896362804, - 39.02975742443034, - 35.26231317609108, - 30.438463781109675, - 25.373023908682004, - 20.515042093489722, - 15.927768046937162, - 12.112315197376374, - 8.662636703681207, - 5.407148717824364, - 2.353573423734076, - -0.8904286827410933, - -4.003022622360723, - -7.039856517464076, - -9.925559727476413, - -12.125143023218133, - -13.861049957089314, - -15.03420689858987, - -15.653737126617225, - -16.013893039984367, - -16.16579512540442, - -16.232222962217936, - -16.240473995630683, - -16.086279624503682, - -15.681242706103319, - -14.955272830217309, - -13.914273566557195, - -12.685206955455268, - -11.583090409823095, - -10.863548768869835, - -10.866687033743597, - -11.79113122218296, - -13.626514975518942, - -16.07800201057981, - -18.846771263197247, - -21.37245155954461, - -23.02275034101196, - -23.576339869060405, - -22.740478628818302, - -20.576246579012576, - -17.360759504424564, - -13.723215152940144, - -9.851108560632111, - -6.274479200797313, - -3.38637172995675, - -0.9798193500797829, - 0.7498238056337877, - 2.0768686285520217, - 3.231915997920746, - 4.16450580245564, - 5.030778015534897, - 5.680654782552763, - 5.964008800861102, - 5.813098031441838, - 5.133809798112929, - 3.976865642865249, - 2.5425924069562758, - 1.057541156395736, - -0.3030057971757505, - -1.2223321122554671, - -1.7206815071925083, - -1.8618699192236776, - -1.7371767999105894, - -1.5853678227486832, - -1.587532800972762, - -1.8258459051897242, - -2.2983472776647855, - -2.8526440755373867, - -3.346983628674197, - -3.592949439496501, - -3.4581953002184775, - -2.9658041024086317, - -2.2246525793766545, - -1.3995125463609803, - -0.6813165252966396, - -0.2566871338838726, - -0.11231377099711311, - -0.20081395142061761, - -0.3664794490762882, - -0.40169684944788614, - -0.16690216656227208, - 0.3835225399118688, - 1.1583591093898937, - 1.963298407282112, - 2.6120458035910574, - 2.866880400899233, - 2.739056529079734, - 2.3994174297324227, - 2.1840986789217407, - 2.565515171074175, - 4.016352826810565, - 6.879099149791011, - 11.35091067652579, - 16.89220384569618, - 23.332455365488023, - 29.89073819442793, - 35.318263835831395 - ], - "pressure:branch30_seg2:RESISTANCE_9": [ - 169743.58024606478, - 189794.05034532788, - 199419.08754309552, - 198120.77264822746, - 187581.4392279657, - 169474.67503187244, - 146290.7079298113, - 121945.62960252463, - 98597.61821912669, - 76550.65906362288, - 58213.160087032426, - 41633.614134843374, - 25987.36977992677, - 11311.540713709144, - -4279.501202687778, - -19238.9805706173, - -33834.348575220305, - -47703.36537264493, - -58274.81207239939, - -66617.77760713985, - -72256.10287609437, - -75233.63539198037, - -76964.58554473556, - -77694.64418934607, - -78013.90390440612, - -78053.55930646275, - -77312.48367684858, - -75365.83032547093, - -71876.7367942413, - -66873.57630853693, - -60966.54282866364, - -55669.645756551356, - -52211.447051221345, - -52226.52990801135, - -56669.51348763424, - -65490.575895031296, - -77272.70052585546, - -90579.71946650797, - -102718.42532282538, - -110649.94837118567, - -113310.56240687377, - -109293.3185194839, - -98891.7739156808, - -83437.77847545852, - -65955.32791121681, - -47345.54462379699, - -30155.858415730712, - -16275.286468181072, - -4709.122884694489, - 3603.738222061841, - 9981.666096322402, - 15532.954708408382, - 20015.087042504532, - 24178.489513228673, - 27301.87093608322, - 28663.702473680987, - 27938.40820616007, - 24673.671941651697, - 19113.26716158172, - 12219.987377334981, - 5082.662697652465, - -1456.2802148774458, - -5874.666714890486, - -8269.790407922228, - -8948.35792355345, - -8349.06865490057, - -7619.457499134891, - -7629.862629934952, - -8775.22242783622, - -11046.117594371526, - -13710.130849017161, - -16085.98278774266, - -17268.122361227, - -16620.478689939784, - -14253.990767817491, - -10691.932519171905, - -6726.215969243473, - -3274.4844656654022, - -1233.6674676614698, - -539.7927171217948, - -965.1346180522279, - -1761.3417823138147, - -1930.6006013123333, - -802.1507352325433, - 1843.2528091511085, - 5567.205210098392, - 9435.834736739145, - 12553.788275924067, - 13778.552242769427, - 13164.21622261781, - 11531.872204159852, - 10497.025875738591, - 12330.1567805811, - 19303.047044532123, - 33061.73044011658, - 54553.763634667106, - 81185.84685654368, - 112138.42583200012, - 143658.27666116838, - 169743.58024606478 - ], - "flow:branch32_seg0:RESISTANCE_10": [ - 30.30056648294753, - 33.39097800704415, - 34.579103801169936, - 33.807687248899136, - 31.513986725995213, - 28.055799804555637, - 23.885528679517684, - 19.638014650247985, - 15.760729506196006, - 12.148378885502463, - 9.192627125938273, - 6.5445524733503735, - 3.981547617466436, - 1.573360555522288, - -1.0282359047109437, - -3.5346995984732312, - -5.9596042675923, - -8.25664595986928, - -9.948511934501617, - -11.269200089284158, - -12.152074558461257, - -12.592889841979837, - -12.86595929336044, - -12.999149702462043, - -13.08124609801559, - -13.123846274617541, - -13.018664790599244, - -12.689116433427541, - -12.0809621543056, - -11.216480595309312, - -10.209322298589735, - -9.354088077474854, - -8.864514526163225, - -9.009915974439096, - -9.947633475354365, - -11.635093232434848, - -13.793856469114898, - -16.142187610437503, - -18.221522062161625, - -19.479748008038246, - -19.774594559202974, - -18.891843726329665, - -16.904593818183464, - -14.073648306741728, - -10.978809128363785, - -7.73498490054902, - -4.790602596271566, - -2.4956268570131406, - -0.589092122181635, - 0.7542020027803171, - 1.784664436023132, - 2.7271354171309468, - 3.483282523894077, - 4.198799606486962, - 4.7342997673134155, - 4.927829204453988, - 4.7421155070994185, - 4.104433427419034, - 3.075388981099288, - 1.8330282864676226, - 0.6003125232480865, - -0.4932450190664504, - -1.19136274122855, - -1.5201120382281836, - -1.5646453992741929, - -1.412164480915168, - -1.2728741941759074, - -1.2977076600555761, - -1.5398500983596857, - -1.9802349378273545, - -2.4674044504708634, - -2.8781728764498835, - -3.0522461355314823, - -2.8822582204710705, - -2.410067371678777, - -1.7471263764836364, - -1.0437195961652692, - -0.4564211271391172, - -0.15054869110935154, - -0.0853435284826808, - -0.20053042592422918, - -0.35597410698473597, - -0.36868872293605015, - -0.12729155697279115, - 0.3872520495521976, - 1.08219359537368, - 1.7665014312364222, - 2.284275703177734, - 2.443682570893442, - 2.2727854517712616, - 1.9504660457088907, - 1.7900304403173501, - 2.208141593612562, - 3.6028000029935137, - 6.236864046585196, - 10.25152872848907, - 15.07387471412963, - 20.570645895857453, - 26.046297377066725, - 30.30056648294753 - ], - "pressure:branch32_seg0:RESISTANCE_10": [ - 171668.76187181904, - 189177.5804054492, - 195908.9424788415, - 191538.45902631312, - 178543.43039894121, - 158950.969397962, - 135324.17413298934, - 111259.75689351844, - 89292.88243003351, - 68827.00239936629, - 52081.10277235771, - 37078.356958692864, - 22557.576611950084, - 8913.921087800321, - -5825.501142804245, - -20025.94585155132, - -33764.315477048396, - -46778.27359901863, - -56363.59066831477, - -63845.98874419821, - -68847.94034458412, - -71345.39246246034, - -72892.47557227965, - -73647.06980194188, - -74112.18937608557, - -74353.54194541324, - -73757.63311501617, - -71890.56708229294, - -68445.05090085241, - -63547.304880907795, - -57841.2195539518, - -52995.864602188274, - -50222.17106593033, - -51045.94730172899, - -56358.61373185325, - -65918.96724436962, - -78149.50465771723, - -91454.04468084422, - -103234.57594734573, - -110363.0925183195, - -112033.55443555824, - -107032.3033003382, - -95773.47975810115, - -79734.67364702454, - -62200.77010619274, - -43822.787330451945, - -27141.3016909988, - -14139.048287384501, - -3337.5189635580628, - 4272.95390967078, - 10111.069516180443, - 15450.666929911193, - 19734.640884127242, - 23788.42422629706, - 26822.316336631455, - 27918.763126771115, - 26866.5966431692, - 23253.789828216508, - 17423.707868849484, - 10385.076351326901, - 3401.0884799857863, - -2794.4943461765506, - -6749.7010936097395, - -8612.240027128732, - -8864.545110500927, - -8000.659926093639, - -7211.506657993892, - -7352.201398568284, - -8724.066594675514, - -11219.080018965997, - -13979.153402553127, - -16306.37415413708, - -17292.591388006356, - -16329.519792362415, - -13654.308474945827, - -9898.396521839633, - -5913.224457895997, - -2585.8674897127585, - -852.9380933728556, - -483.5163024641586, - -1136.11110061035, - -2016.781905344529, - -2088.816940704935, - -721.1741072406638, - 2193.98802053414, - 6131.200046308402, - 10008.166471600802, - 12941.63203051269, - 13844.756387281195, - 12876.533668947797, - 11050.4234740401, - 10141.470773329418, - 12510.2919652171, - 20411.770721637993, - 35335.139012754145, - 58080.34133960782, - 85401.48614851554, - 116543.6069927229, - 147566.07354462004, - 171668.76187181904 - ], - "flow:branch35_seg2:RESISTANCE_11": [ - 27.192906622656153, - 31.066218221753957, - 33.3441314709538, - 33.88229838959922, - 32.75798865396289, - 30.19495455627991, - 26.60365523350096, - 22.61606599807969, - 18.56000495662646, - 14.700553257290718, - 11.373618584294395, - 8.356945005417677, - 5.605895741599583, - 3.0213141858571015, - 0.36515088773477594, - -2.207698559647962, - -4.761349850113533, - -7.1827407246007455, - -9.171695342688837, - -10.79066312808879, - -11.932277471827142, - -12.629411272726712, - -13.043108926754988, - -13.243905256707196, - -13.344329736625822, - -13.378949522278695, - -13.302573086439986, - -13.049649822787579, - -12.555205768156632, - -11.79755112187893, - -10.857363005040323, - -9.9274197946315, - -9.21829570191537, - -9.010555092201523, - -9.483003944367498, - -10.6912275174228, - -12.482060829040533, - -14.64945303450809, - -16.760312935628534, - -18.361196528488826, - -19.174495229617882, - -18.918795291785585, - -17.582404345670568, - -15.321154063688368, - -12.517279852290544, - -9.407786918312949, - -6.425308094235106, - -3.8435671040794945, - -1.6799777794919621, - -0.052735223111491716, - 1.2102178968081183, - 2.2370959322952038, - 3.084183962940081, - 3.8467405031659054, - 4.442863799726974, - 4.794760149994301, - 4.814492301258739, - 4.421093350637565, - 3.6276361555950123, - 2.55849992863958, - 1.3629405100152108, - 0.21273992509824866, - -0.6549342841780061, - -1.2125062554675008, - -1.451656162779019, - -1.4403020204574626, - -1.3454579922432388, - -1.3135262795496583, - -1.4403768902374883, - -1.7535665476957087, - -2.1746014579154065, - -2.5954404008135055, - -2.8644002991322264, - -2.8687095408629704, - -2.5840354394500333, - -2.063007871710525, - -1.4189119020960923, - -0.8106234330604632, - -0.377947981141947, - -0.16424459408542688, - -0.16124448065036492, - -0.2625107939619137, - -0.3178022830957611, - -0.20127071080897552, - 0.15484020556312936, - 0.7131444673143484, - 1.3564406765609207, - 1.9305800026584876, - 2.246215471042225, - 2.2681926760811626, - 2.0682757193586223, - 1.8679428892592111, - 2.013587039089252, - 2.884879199936879, - 4.8024780532515114, - 7.953588084042268, - 12.12404872877281, - 17.151105993523096, - 22.422029817508733, - 27.192906622656153 - ], - "pressure:branch35_seg2:RESISTANCE_11": [ - 155402.838114044, - 177538.15537720046, - 190556.04231423917, - 193631.57475721624, - 187206.33576890876, - 172559.03165795133, - 152035.3666073068, - 129246.97208160828, - 106067.2728257526, - 84011.16253333396, - 64998.296509927284, - 47758.51988999898, - 32036.741070197328, - 17266.296899832952, - 2086.775241837967, - -12616.621923890798, - -27210.304886824448, - -41048.14205886883, - -52414.67954674796, - -61666.805189580955, - -68190.93707111636, - -72174.93821922751, - -74539.14997669721, - -75686.6668637361, - -76260.57569268488, - -76458.42188177427, - -76021.9435361816, - -74576.53008546114, - -71750.86637674054, - -67420.99888682188, - -62047.98364629035, - -56733.51630421184, - -52680.99267691223, - -51493.7904116679, - -54193.75527783805, - -61098.54758028096, - -71332.85548551477, - -83719.13344799218, - -95782.3389025347, - -104931.11645960005, - -109578.98026260319, - -108117.69859101936, - -100480.45154207468, - -87557.79062970831, - -71534.12621558557, - -53763.902762050704, - -36719.543352140376, - -21965.332531172, - -9600.787386371569, - -301.3728342410641, - 6916.189523619911, - 12784.62291053603, - 17625.586986990253, - 21983.46796741963, - 25390.21125665392, - 27401.239070355525, - 27514.004960045873, - 25265.796841438103, - 20731.323872341865, - 14621.392105760107, - 7788.973292781981, - 1215.7725027050503, - -3742.8380846441178, - -6929.267104299878, - -8295.968165230552, - -8231.081172248325, - -7689.063676026101, - -7506.579366890092, - -8231.509040310337, - -10021.334685375201, - -12427.477614526379, - -14832.50062375495, - -16369.560715110129, - -16394.18729895881, - -14767.323208591808, - -11789.739242083218, - -8108.840282479695, - -4632.575100831299, - -2159.908454950113, - -938.6299309571386, - -921.4847927460465, - -1500.20455640716, - -1816.1860163578094, - -1150.2278929936347, - 884.8854494483605, - 4075.4993845947606, - 7751.8278496657485, - 11032.936485333788, - 12836.73952400715, - 12962.335514321143, - 11819.844095773617, - 10674.976031579676, - 11507.307585995351, - 16486.59415146369, - 27445.34557530105, - 45453.40366154172, - 69286.87720033959, - 98015.6547872534, - 128138.08829893566, - 155402.838114044 - ], - "flow:branch36_seg0:RESISTANCE_12": [ - 33.572177176727365, - 37.77327468241582, - 39.930317242561614, - 39.93516505963871, - 38.045118805263186, - 34.57541410331241, - 30.013569435261434, - 25.17394274366687, - 20.446817765753394, - 15.942947855829281, - 12.187194943508064, - 8.789561116681213, - 5.605419019814917, - 2.637249000479711, - -0.49851780237918386, - -3.510565616779984, - -6.442167959046248, - -9.260162050499897, - -11.457481913405873, - -13.193630511237638, - -14.395146785738655, - -15.062559310902985, - -15.451551291288022, - -15.626759470707404, - -15.704915811751901, - -15.72092967279153, - -15.590212073451033, - -15.226915092628355, - -14.562450754620174, - -13.590960463872053, - -12.427245473725286, - -11.353106445459376, - -10.611684828900964, - -10.539902102674569, - -11.330424977369194, - -13.000936342065241, - -15.292125569816347, - -17.932688415457633, - -20.404110684851798, - -22.09512062297102, - -22.772018747376254, - -22.13062601054624, - -20.202131253679642, - -17.226623962642627, - -13.760786344379328, - -10.0389467252965, - -6.547287368916311, - -3.6588279824918097, - -1.2536818709190936, - 0.5062463877463673, - 1.8559018803854734, - 2.999663899585741, - 3.9356652233364624, - 4.7928748505894765, - 5.438432547559592, - 5.7541808096990135, - 5.6597042677688485, - 5.059147005006979, - 3.991954286211529, - 2.6404990738498073, - 1.2119261828394579, - -0.12876904459562816, - -1.0620539196380447, - -1.5966804546705051, - -1.7842800802042444, - -1.697794308211581, - -1.559913237363965, - -1.5480101983702192, - -1.7514166519824939, - -2.17973997494185, - -2.704660010061639, - -3.1876967819119737, - -3.4513697768509237, - -3.365085670473096, - -2.93219857504298, - -2.246049374260511, - -1.4571932988761194, - -0.7537424239650848, - -0.3086205605478151, - -0.13109403080324666, - -0.18943727466863555, - -0.33693620679671843, - -0.38124139134641294, - -0.18249734420323013, - 0.3148030938920586, - 1.0363498102486433, - 1.8075532753708883, - 2.4553017457402486, - 2.742400132214349, - 2.664072944556294, - 2.3662670713329526, - 2.149311556710555, - 2.456190793421847, - 3.742183399947743, - 6.353073471158988, - 10.4936976342586, - 15.73551658223851, - 21.873144475857572, - 28.177603892563614, - 33.572177176727365 - ], - "pressure:branch36_seg0:RESISTANCE_12": [ - 164907.66445927977, - 185543.5968321444, - 196139.06250183747, - 196162.87514252227, - 186878.90431487624, - 169835.59801543283, - 147427.66343691965, - 123655.25420756603, - 100435.45718304659, - 78312.29656810279, - 59863.91182985926, - 43174.6200952105, - 27534.00692506612, - 12954.255870199735, - -2448.736227286072, - -17244.016488606703, - -31644.14588271221, - -45486.227724337, - -56279.53686106945, - -64807.557218992, - -70709.44560694405, - -73987.79839820221, - -75898.5401007939, - -76759.16857627872, - -77143.07515453456, - -77221.73577904444, - -76579.64653063189, - -74795.11953087756, - -71531.24833418352, - -66759.25532197606, - -61043.04811529205, - -55766.84104885127, - -52124.95310924358, - -51772.353941537505, - -55655.42891404584, - -63861.036973198294, - -75115.43559005453, - -88085.9691792346, - -100225.67856397723, - -108531.97630584611, - -111856.92267989348, - -108706.37996485943, - -99233.54879866255, - -84617.75681819218, - -67593.44576400504, - -49311.64426379161, - -32160.495962715784, - -17972.286220067817, - -6158.1275536548355, - 2486.6992987893063, - 9116.252513171346, - 14734.450054862047, - 19332.120066492476, - 23542.762612495557, - 26713.763751940678, - 28264.729844857615, - 27800.65789045602, - 24850.7003987291, - 19608.613838237612, - 12970.220339994132, - 5953.022208152872, - -632.5178819084806, - -5216.84460603745, - -7842.948143679686, - -8764.443819617469, - -8339.622796148631, - -7662.346334545625, - -7603.878206307849, - -8603.017553884929, - -10706.956135254284, - -13285.381018568001, - -15658.073902750195, - -16953.244530128042, - -16529.414094950098, - -14403.058109570231, - -11032.670136933071, - -7157.782538749579, - -3702.4081603530176, - -1515.9545827496338, - -643.9382924300398, - -930.5222703515669, - -1655.0419903392267, - -1872.670548328409, - -896.4330982809142, - 1546.3233946694347, - 5090.585155417142, - 8878.76253774168, - 12060.524829875018, - 13470.76176905871, - 13086.0159864896, - 11623.183511939273, - 10557.490720564856, - 12064.89186201397, - 18381.73083667274, - 31206.51075895279, - 51545.39603725757, - 77293.38716930336, - 107441.621998662, - 138409.33888560918, - 164907.66445927977 - ], - "flow:branch38_seg0:RESISTANCE_13": [ - 39.38143981811242, - 44.592385803545575, - 47.465244075403184, - 47.80551372934973, - 45.8491228831977, - 41.95053460952765, - 36.688058478371595, - 30.95789021676842, - 25.280664869533638, - 19.878059123498325, - 15.273735773859581, - 11.11452875368126, - 7.261003183901827, - 3.6539877397678233, - -0.09418760844275607, - -3.7168969279669164, - -7.276397064051851, - -10.660040204021213, - -13.365366657812002, - -15.539669053281274, - -17.0586671456318, - -17.943766187586956, - -18.466948675283195, - -18.713264494197762, - -18.830587683259875, - -18.863384868805852, - -18.72588427426677, - -18.32289694630799, - -17.568499870906727, - -16.44908405566764, - -15.087785902309706, - -13.795527717226596, - -12.866443707676206, - -12.690733706130224, - -13.513214436732463, - -15.377607067142511, - -18.02142901264738, - -21.12741066838064, - -24.085002827014797, - -26.20954712351472, - -27.165203484480752, - -26.581693686271382, - -24.467218856163957, - -21.079060567013116, - -17.02811528994677, - -12.605299259946044, - -8.411732226277707, - -4.8745935592835625, - -1.9118652451305982, - 0.2879085071988545, - 1.985044765760956, - 3.4020479501572454, - 4.556352169754779, - 5.603178347626812, - 6.409968712649325, - 6.836733567295984, - 6.782766029964318, - 6.136773417681333, - 4.932767546140673, - 3.363713462556212, - 1.667917752982343, - 0.06344788161290907, - -1.1044076754489645, - -1.8131904212021974, - -2.090230512754948, - -2.031412372348262, - -1.8857845410785357, - -1.8614594044855453, - -2.0777270607916516, - -2.55781618028129, - -3.1669114145711843, - -3.7486917458663194, - -4.090089200484576, - -4.033204111854314, - -3.5674863462330197, - -2.7873865031039995, - -1.86372066160574, - -1.0160110047972575, - -0.451640791800245, - -0.19994770176662474, - -0.23207063941076703, - -0.3887558052481162, - -0.44859907108218233, - -0.24055712019190936, - 0.31286744565034064, - 1.141212538493365, - 2.053482452844946, - 2.8376202971052806, - 3.2260482176675125, - 3.190258767386354, - 2.8714801287014486, - 2.6100663265028867, - 2.9157725681247517, - 4.326879910876436, - 7.272967956672056, - 12.006227424386058, - 18.09674275083756, - 25.3274330798531, - 32.83113550041549, - 39.38143981811242 - ], - "pressure:branch38_seg0:RESISTANCE_13": [ - 160142.48751850266, - 181332.5165343532, - 193014.83876706442, - 194398.5268460646, - 186442.96965697935, - 170589.57204533578, - 149189.99848879216, - 125888.5802686654, - 102802.45153623873, - 80833.04850659306, - 62109.81751361098, - 45196.62791485164, - 29526.475342709975, - 14858.74281669258, - -383.008797512009, - -15114.559615995737, - -29589.073720797714, - -43348.47489588483, - -54349.53808352807, - -63191.22076034599, - -69368.14405641347, - -72967.35127010538, - -75094.84445960546, - -76096.47436796097, - -76573.56274834073, - -76706.93072323955, - -76147.79201865192, - -74509.0659224073, - -71441.35116160923, - -66889.30750734112, - -61353.66245373438, - -56098.76468383694, - -52320.6949867833, - -51606.17980249126, - -54950.75305179531, - -62532.2044899323, - -73283.16293291417, - -85913.46875294302, - -97940.35673714978, - -106579.70080521333, - -110465.82552703292, - -108093.01460370883, - -99494.61747418455, - -85716.85569002708, - -69243.90659352466, - -51258.76526420004, - -34205.85253554126, - -19822.270131076177, - -7774.496249235306, - 1170.7643177469995, - 8072.076797921709, - 13834.24333675149, - 18528.158793708273, - 22785.020627561342, - 26065.789856858602, - 27801.205974810764, - 27581.749913443513, - 24954.856018060604, - 20058.831491128738, - 13678.358223596975, - 6782.497013125045, - 258.00736682575314, - -4491.013868405713, - -7373.240433492081, - -8499.808928916535, - -8260.628153421994, - -7668.440481786052, - -7569.5236341238215, - -8448.964320159057, - -10401.220666821118, - -12878.073377268805, - -15243.851517257088, - -16632.12573647223, - -16400.80561110185, - -14506.98959491226, - -11334.75592421706, - -7578.7189134697, - -4131.553605098121, - -1836.5727662005622, - -813.0764766966497, - -943.7026590920678, - -1580.8543815867076, - -1824.203773996134, - -978.2124725682897, - 1272.2584862662409, - 4640.678846323719, - 8350.374937864752, - 11539.028920991002, - 13118.549977298813, - 12973.014120270997, - 11676.718088368802, - 10613.693050456533, - 11856.830889229495, - 17595.022308019914, - 29575.12944176572, - 48822.67216065013, - 73589.42216146809, - 102992.63192506644, - 133506.0305406973, - 160142.48751850266 - ], - "flow:branch41_seg2:RESISTANCE_14": [ - 36.03879212499376, - 41.15603506052822, - 44.18572833259033, - 44.89008866101864, - 43.39546642575029, - 40.01951476695925, - 35.314306060004675, - 30.07499527939229, - 24.772750606768735, - 19.752048955294548, - 15.406341712040447, - 11.475707167828768, - 7.887592017422077, - 4.513135139272324, - 1.0551286231877948, - -2.3028579783768848, - -5.64358487714129, - -8.818454610789537, - -11.439273591601133, - -13.59628047708727, - -15.153655941096703, - -16.13912990587395, - -16.76204063566755, - -17.10973478260735, - -17.322295996342838, - -17.445992079919524, - -17.41943270547512, - -17.158572639794873, - -16.578921474173484, - -15.653030541672017, - -14.479226451543955, - -13.30699836460107, - -12.413045734050474, - -12.1541586308204, - -12.772984511796475, - -14.349246612235607, - -16.694510170470597, - -19.545944266767272, - -22.349523960221337, - -24.515877548443267, - -25.673077002479385, - -25.447895562773482, - -23.80268046131522, - -20.9181499131323, - -17.29205044566415, - -13.218307113481934, - -9.255233570883867, - -5.797812946825831, - -2.8659222337409136, - -0.6244516413677828, - 1.1292060813240594, - 2.5758414121860804, - 3.7727354987223047, - 4.845434583335445, - 5.703513108141722, - 6.231302838684011, - 6.3146069826869065, - 5.849425162876528, - 4.848363131660711, - 3.467594357296661, - 1.9062942723272593, - 0.3950531910937336, - -0.7633590350628059, - -1.5216744290539166, - -1.8618137155322096, - -1.8710307678255367, - -1.7642321656675848, - -1.7338378230424554, - -1.90798926353327, - -2.3265032373640953, - -2.8881441832077694, - -3.4544722247059667, - -3.828454633060144, - -3.855238486575788, - -3.5002849485611325, - -2.8290132628297116, - -1.98850601881702, - -1.1815074351302892, - -0.599180694892733, - -0.30301945481847975, - -0.2807588441972838, - -0.40049016590446423, - -0.46626592218865986, - -0.31049820358346236, - 0.1585713885917501, - 0.8975258621388869, - 1.7545280090327522, - 2.525524233437058, - 2.9648432352345315, - 3.0198358569268495, - 2.7785915997695843, - 2.5300285922954138, - 2.727885312501468, - 3.874284066279464, - 6.396425891924278, - 10.555595976533256, - 16.06235049366278, - 22.706473223178435, - 29.719573806064634, - 36.03879212499376 - ], - "pressure:branch41_seg2:RESISTANCE_14": [ - 147519.80010067037, - 168466.5247383449, - 180868.15419115545, - 183751.3555617254, - 177633.3266164738, - 163814.33645366263, - 144554.21681718304, - 123107.82437593558, - 101403.82077122487, - 80852.27449792225, - 63063.72427134051, - 46974.216603604276, - 32286.764596612047, - 18473.893111171717, - 4319.02276394766, - -9426.429927298213, - -23101.23241754352, - -36097.12159243733, - -46825.08080950422, - -55654.48950498153, - -62029.39009363751, - -66063.29116846851, - -68613.08989704307, - -70036.32769243911, - -70906.4175570124, - -71412.75032918544, - -71304.03321138925, - -70236.23869124948, - -67863.51699225637, - -64073.51080104049, - -59268.70646318584, - -54470.35327592194, - -50811.08209666332, - -49751.36362483885, - -52284.441590995, - -58736.65200793728, - -68336.66329839181, - -80008.61352433334, - -91484.67838549994, - -100352.34651304598, - -105089.18207467873, - -104167.43306442523, - -97432.97309562616, - -85625.54713150507, - -70782.6115877486, - -54107.30793326858, - -37885.015722126715, - -23732.54364270671, - -11731.255408315132, - -2556.1062365119114, - 4622.2485706964435, - 10543.849774398346, - 15443.169811959973, - 19834.114824252632, - 23346.54032428382, - 25506.974427476962, - 25847.968393874235, - 23943.811094959194, - 19846.10243088841, - 14194.116846216446, - 7803.151365655052, - 1617.095478038003, - -3124.7043981642582, - -6228.763350718493, - -7621.076372023069, - -7658.805097976494, - -7221.639823770665, - -7097.2247953022115, - -7810.089577209242, - -9523.218517400537, - -11822.217878197474, - -14140.403215359216, - -15671.248364948173, - -15780.884356710758, - -14327.931250198597, - -11580.173651972867, - -8139.673754254871, - -4836.336912826557, - -2452.6631200126003, - -1240.3681357143778, - -1149.2474117576326, - -1639.3509807878754, - -1908.594921729511, - -1270.98135712568, - 649.0899990663853, - 3673.8977074685213, - 7181.917203714812, - 10337.883377829266, - 12136.174816145041, - 12361.2794903228, - 11373.779563358827, - 10356.32134645214, - 11166.220405003214, - 15858.844797253725, - 26182.88275763573, - 43207.86898187304, - 65749.00528724078, - 92945.80071542974, - 121652.95584108119, - 147519.80010067037 - ], - "flow:branch43_seg0:RESISTANCE_15": [ - 24.120953494256852, - 26.96377919292747, - 28.331145626654635, - 28.14331201087409, - 26.645785688992007, - 24.076045818287486, - 20.78575632180724, - 17.326424021979285, - 14.014447387567623, - 10.88283507584729, - 8.27567080899045, - 5.920826653079302, - 3.693817086194303, - 1.6071381212326117, - -0.6093682127674517, - -2.7367725468451085, - -4.8092206324019635, - -6.780829487117211, - -8.28225870631021, - -9.466193296377192, - -10.268597069517359, - -10.691824257435252, - -10.938507534089727, - -11.043322598276678, - -11.088796535586688, - -11.094403176759002, - -10.98831480101146, - -10.710494825544483, - -10.213600142588179, - -9.502567250677496, - -8.663333997787873, - -7.912334453216465, - -7.423732738513769, - -7.427952914103528, - -8.061149598861265, - -9.31548269042357, - -10.98874062022567, - -12.876059865985377, - -14.598164580930359, - -15.720475226212837, - -16.094363070740293, - -15.521852953220924, - -14.043280407415786, - -11.847406457050113, - -9.36643710971175, - -6.725881002816531, - -4.283912007613358, - -2.314799892554403, - -0.6721238126641677, - 0.5101221916461726, - 1.4159894623088434, - 2.2069683565241736, - 2.8441162138206684, - 3.43497926390153, - 3.878930287262674, - 4.07081433634726, - 3.966522006024845, - 3.502070539026788, - 2.7121408641230387, - 1.732920066256277, - 0.720996786189478, - -0.20636118894793254, - -0.8331678694753004, - -1.1721816140623256, - -1.2689952784460738, - -1.184925887350839, - -1.0824079222535419, - -1.0851726790421807, - -1.2486919100577976, - -1.5714544075483574, - -1.9491190007841932, - -2.2852910671690747, - -2.4523050863226303, - -2.3592459635575085, - -2.022610370227792, - -1.517008297702167, - -0.9549072286690938, - -0.46527787000132004, - -0.17660485022817402, - -0.07875479840285525, - -0.13860657448034155, - -0.25072383701684464, - -0.2734768698420267, - -0.11191969454618779, - 0.26435143141221673, - 0.7933117683596143, - 1.3414253415619686, - 1.7827945440371094, - 1.955733100247578, - 1.8678989799483623, - 1.637092572338007, - 1.4927603356518861, - 1.7569020325151168, - 2.7515323165759478, - 4.709233055480488, - 7.765897667622829, - 11.548710332077784, - 15.942199578796691, - 20.42193113361974, - 24.120953494256852 - ], - "pressure:branch43_seg0:RESISTANCE_15": [ - 167677.4040290384, - 187439.37709421924, - 196944.65863370767, - 195638.92861391985, - 185228.83739683, - 167365.2272102669, - 144492.69850176718, - 120445.06457025006, - 97421.77718672653, - 75652.29684758696, - 57528.53004673965, - 41158.772729722885, - 25677.660715976115, - 11172.060347798468, - -4236.03818311811, - -19024.741960646523, - -33431.416019093755, - -47137.103673538964, - -57574.32597768708, - -65804.47652500626, - -71382.40617423726, - -74324.48042521803, - -76039.3053162289, - -76767.92982396284, - -77084.0430224265, - -77123.01772703473, - -76385.54176252271, - -74454.2693406081, - -71000.09367820072, - -66057.33096680007, - -60223.380279367724, - -55002.78839477451, - -51606.261506025825, - -51635.59816088642, - -56037.28055561481, - -64756.80802500073, - -76388.50185530807, - -89508.24821103955, - -101479.50167483327, - -109281.27184780262, - -111880.36243447429, - -107900.5442109156, - -97622.21063640446, - -82357.53862997048, - -65111.0189293139, - -46755.12792763433, - -29779.720138194978, - -16091.388631159332, - -4672.285285922359, - 3546.127015799151, - 9843.28572371685, - 15341.795044890385, - 19770.944113128702, - 23878.343200724306, - 26964.479705691054, - 28298.36641264684, - 27573.37570227555, - 24344.729856985843, - 18853.514209772038, - 12046.436645585416, - 5012.026968597417, - -1434.5249023178592, - -5791.787024809134, - -8148.449444310674, - -8821.452023678525, - -8237.04157487455, - -7524.385408196243, - -7543.6046833007895, - -8680.312656811522, - -10924.004130701614, - -13549.348879304715, - -15886.257302594024, - -17047.259382165816, - -16400.356591604177, - -14060.225949307189, - -10545.520653226304, - -6638.06118733741, - -3234.390606183257, - -1227.6729786906283, - -547.4659264267189, - -963.5270262327175, - -1742.912946172831, - -1901.0812158828464, - -778.0125211757078, - 1837.645505227739, - 5514.72635341349, - 9324.951396527671, - 12393.140309833458, - 13595.326955099648, - 12984.745898242112, - 11380.28945456894, - 10376.960346083932, - 12213.147876414863, - 19127.34486450836, - 32736.34990833703, - 53984.82946257489, - 80281.14513910556, - 110822.59416162269, - 141963.5587192014, - 167677.4040290384 - ], - "flow:branch44_seg0:RESISTANCE_16": [ - 13.063340506227496, - 15.695771311502622, - 17.871988478735037, - 19.39771291992778, - 20.16846485340848, - 20.155873614878843, - 19.432021796615594, - 18.183870025440743, - 16.562709471629514, - 14.720895797223989, - 12.843332577502107, - 10.944150937120485, - 9.06444641790958, - 7.212143863175041, - 5.329181773752041, - 3.4630029127059956, - 1.5977886341272023, - -0.22718635842980683, - -1.8993574217587246, - -3.4112368563581588, - -4.7043362326874405, - -5.758872873555302, - -6.6100717937294755, - -7.277820222494758, - -7.803864294261173, - -8.214217622082078, - -8.508291088225386, - -8.673499980595029, - -8.689843961128277, - -8.545292880138097, - -8.258851883522365, - -7.893927106393122, - -7.534442266816177, - -7.301214051038953, - -7.30018236479573, - -7.603243545361709, - -8.210323738257543, - -9.082396670256209, - -10.08329707431055, - -11.033200872239638, - -11.779940291484758, - -12.155730700208734, - -12.072306265329594, - -11.511711766458138, - -10.556060730739315, - -9.276314128380928, - -7.831080036674728, - -6.36438116057342, - -4.9425986649873845, - -3.6600503856314845, - -2.5141535738079805, - -1.489375436158516, - -0.5818478499964924, - 0.23736426177002895, - 0.9492248510690261, - 1.526364620018031, - 1.9330421180652955, - 2.1291722167006784, - 2.1007721019100805, - 1.8727582532506442, - 1.4914180799160057, - 1.0235614910766706, - 0.5691382240607339, - 0.17446324441267966, - -0.12257229156279155, - -0.31408970575011846, - -0.4376440734828407, - -0.5404285599888843, - -0.6660649890292306, - -0.8427513755009663, - -1.063213677930353, - -1.3015963318297787, - -1.5068435928709965, - -1.627014717567498, - -1.6327584826091257, - -1.5206577064856641, - -1.314788313727387, - -1.0653014779025636, - -0.831136516981107, - -0.6485947604799975, - -0.5374128472953829, - -0.4814204328264315, - -0.4379642766625479, - -0.35831601011176145, - -0.20304077988260377, - 0.036749231652739994, - 0.3374397634078353, - 0.6511148150811994, - 0.9050995658726858, - 1.0631097263742724, - 1.123294619173685, - 1.1415184484431944, - 1.2354133246937995, - 1.560597982212501, - 2.279380354966419, - 3.5276448457134073, - 5.310552992510838, - 7.625912576053199, - 10.30395286827163, - 13.063340506227496 - ], - "pressure:branch44_seg0:RESISTANCE_16": [ - 95062.80477250117, - 114219.18024933133, - 130055.65849259081, - 141158.45755234174, - 146767.27105188774, - 146675.64376485368, - 141408.1255484375, - 132325.2414199046, - 120527.94736955721, - 107124.94576565032, - 93461.79232343675, - 79641.32018455566, - 65962.58436237757, - 52483.25447302843, - 38780.81309400869, - 25200.50439320398, - 11627.215023704182, - -1653.250363350107, - -13821.751311749847, - -24823.799330200196, - -34233.77019522512, - -41907.70403844411, - -48101.935654210705, - -52961.18574345868, - -56789.243725433655, - -59775.412406539945, - -61915.4047375531, - -63117.64092473457, - -63236.57716695223, - -62184.66925830409, - -60100.218919813015, - -57444.636848107504, - -54828.64156672428, - -53131.42420235283, - -53123.91655238626, - -55329.31308388974, - -59747.07635285781, - -66093.20955229203, - -73376.82890385856, - -80289.34253328975, - -85723.415356684, - -88458.0673580519, - -87850.98215175273, - -83771.49839510203, - -76817.16173091817, - -67504.35989739915, - -56987.29450781342, - -46314.02844295054, - -35967.62189078284, - -26634.432065896046, - -18295.664132850754, - -10838.284912881443, - -4234.145817845228, - 1727.3156483864989, - 6907.572887606184, - 11107.457683987259, - 14066.877105366453, - 15494.128983835079, - 15287.45944425176, - 13628.187379023062, - 10853.149368468188, - 7448.525601279505, - 4141.657017718856, - 1269.5807275088264, - -891.9667842841468, - -2285.651848739319, - -3184.765267161528, - -3932.734867257774, - -4846.999585420549, - -6132.758266754187, - -7737.077223728203, - -9471.80377992683, - -10965.401860535143, - -11839.895192533288, - -11881.692955865843, - -11065.928091557249, - -9567.802716728573, - -7752.270284114874, - -6048.23616252006, - -4719.867560870747, - -3910.78932378212, - -3503.328769349755, - -3187.095407170964, - -2607.489630991892, - -1477.5413692708457, - 267.42662280584176, - 2455.5717839560098, - 4738.206167176895, - 6586.47022859332, - 7736.320761286179, - 8174.290261637739, - 8306.906289157405, - 8990.185599364504, - 11356.576156052935, - 16587.203677584785, - 25670.908074001745, - 38645.2502038371, - 55494.27714020865, - 74982.55591168243, - 95062.80477250117 - ], - "flow:branch46_seg0:RESISTANCE_17": [ - 31.618798210561394, - 35.186086290300786, - 36.785353958900004, - 36.35328575684648, - 34.22652435436712, - 30.74699683438236, - 26.385061708859443, - 21.84602556913957, - 17.576267854932148, - 13.55955334236804, - 10.233608496972858, - 7.246286217075294, - 4.407592999748323, - 1.7451430016114995, - -1.0934403077838748, - -3.8336722918732247, - -6.492437457180593, - -8.999216703498538, - -10.902239832462604, - -12.382971665182831, - -13.362438247931212, - -13.862231370443942, - -14.140610071192022, - -14.248861144545755, - -14.292116945763201, - -14.286628258562251, - -14.1360260269742, - -13.75835754237219, - -13.091705518563613, - -12.148844862036633, - -11.047425858428015, - -10.079063240411083, - -9.472457168510157, - -9.527607150877643, - -10.411096712094134, - -12.101806439432726, - -14.328983510822006, - -16.79786375651519, - -19.020409422131163, - -20.427685570974663, - -20.831402490396624, - -19.991801945755846, - -17.97621346458446, - -15.05306683477597, - -11.776661857844745, - -8.328900289299721, - -5.186603521050889, - -2.6712122077604876, - -0.6003420103128191, - 0.8727672510695624, - 2.0016917122809077, - 2.986607752285492, - 3.7826806983023284, - 4.52826458962025, - 5.079682819965605, - 5.297180723880185, - 5.124433110624513, - 4.480223998315699, - 3.420052695159019, - 2.120201754787661, - 0.8032354857954312, - -0.38718379006403364, - -1.1782439777967058, - -1.5837794791837816, - -1.6744219132740732, - -1.5401705748214367, - -1.3952137332189085, - -1.399945185226479, - -1.6230632234123064, - -2.0545646555007893, - -2.5540197642388187, - -2.989599403226078, - -3.190618319298268, - -3.0461954869180743, - -2.5822394292928905, - -1.9040050273238631, - -1.1631717454671684, - -0.5321114700612067, - -0.17529723260729968, - -0.07045741666253133, - -0.16947667575732434, - -0.32573123063621895, - -0.353405965850408, - -0.12998538164013668, - 0.3763716780529004, - 1.0804304215765959, - 1.7949868058457052, - 2.3564365133993874, - 2.5600015073403783, - 2.4187417555411743, - 2.098348975006665, - 1.9095045981953955, - 2.280864478169129, - 3.6317215899804745, - 6.260444589055296, - 10.317280227131803, - 15.313304455538528, - 21.088267190121446, - 26.88314549825374, - 31.618798210561394 - ], - "pressure:branch46_seg0:RESISTANCE_17": [ - 173658.09809452726, - 193250.50825374262, - 202034.0736449227, - 199661.05042892363, - 187980.3616881339, - 168869.95377939558, - 144913.149574958, - 119983.66370529083, - 96533.12016989323, - 74472.35118697291, - 56205.4565260073, - 39798.35901181124, - 24207.568308371865, - 9584.748052243925, - -6005.439010213981, - -21055.45677261154, - -35658.03903436448, - -49425.87781681858, - -59877.74176829943, - -68010.2796385092, - -73389.74734549299, - -76134.73222816925, - -77663.65547818375, - -78258.19659231986, - -78495.76792949592, - -78465.62272999148, - -77638.47879706058, - -75564.23200534043, - -71902.81762220856, - -66724.39852827831, - -60675.13858810233, - -55356.656544890655, - -52025.02907323907, - -52327.92613416112, - -57180.26479249623, - -66466.05211826338, - -78698.24803417557, - -92257.93632577626, - -104464.69543941668, - -112193.79690223471, - -114411.10800712393, - -109799.81845808568, - -98729.71832807879, - -82675.08902801748, - -64680.27932360221, - -45744.33771412777, - -28486.082773862345, - -14670.944433670862, - -3297.223728203757, - 4793.449133980862, - 10993.77570935597, - 16403.17315548671, - 20775.398590154393, - 24870.325907567476, - 27898.848386465845, - 29093.39955446969, - 28144.627821637, - 24606.475344312785, - 18783.757765530045, - 11644.661566867859, - 4411.563837954243, - -2126.507153996789, - -6471.201306036976, - -8698.500503549836, - -9196.33070588647, - -8458.989838371, - -7662.851754599706, - -7688.838035021674, - -8914.256341685325, - -11284.166719762485, - -14027.2951489159, - -16419.604027054265, - -17523.648602488793, - -16730.443426708465, - -14182.284384418785, - -10457.256775084708, - -6388.42095546731, - -2922.4850751673043, - -962.7748598504577, - -386.9691976517669, - -930.8069518460964, - -1788.9948133251812, - -1940.9911621608258, - -713.9111994519143, - 2067.1244160524952, - 5933.985564062374, - 9858.502297657282, - 12942.120079084125, - 14060.148330853355, - 13284.315559748187, - 11524.64080739664, - 10487.46175035367, - 12527.06015745711, - 19946.294603765058, - 34383.87801211129, - 56665.00193399426, - 84104.37707284564, - 115821.871152664, - 147648.7463861235, - 173658.09809452726 - ], - "flow:branch47_seg0:RESISTANCE_18": [ - 21.501250753196288, - 26.01108112786679, - 29.80577596277556, - 32.556303325653474, - 34.04156577856744, - 34.19572390942474, - 33.12753163613263, - 31.133183426771293, - 28.456184470179796, - 25.382850934788664, - 22.20957076528718, - 18.98590047405656, - 15.801545780781433, - 12.654945412445496, - 9.470414450329992, - 6.306552816063648, - 3.135925039822412, - 0.037621796287553036, - -2.834226556697893, - -5.442030575161969, - -7.680797369101783, - -9.524833246995264, - -11.014251523589847, - -12.185582630385902, - -13.110065887939633, - -13.831527383049037, - -14.35722464765328, - -14.668600265634609, - -14.73178975815283, - -14.523099845202248, - -14.069897007805205, - -13.465806607279829, - -12.849157804851087, - -12.42119817739252, - -12.361290468678781, - -12.801376300101992, - -13.76147110727255, - -15.185236911461628, - -16.85436612815104, - -18.4856697373855, - -19.80751156864633, - -20.533050393785626, - -20.50075258269368, - -19.66499533256417, - -18.13041502298267, - -16.025934731260993, - -13.61675179759494, - -11.126154080312029, - -8.702288224142368, - -6.498367921313713, - -4.519676151091878, - -2.758912638663211, - -1.1940203269801808, - 0.21737739919572618, - 1.4473669219939453, - 2.4599667148887336, - 3.19083739393651, - 3.5723201253176535, - 3.5763142181198955, - 3.2356766787011866, - 2.620221887546924, - 1.8449164805205058, - 1.0698629276503846, - 0.38213547485857274, - -0.14331832168186198, - -0.4908675151042487, - -0.7150347906902748, - -0.8917634484990565, - -1.097652093999905, - -1.3844158927254078, - -1.7491905456039218, - -2.15197285795051, - -2.5087110957811576, - -2.7342842966197742, - -2.771880774529132, - -2.6083274170825907, - -2.2783392171641434, - -1.8645513089073713, - -1.461467831209847, - -1.1380231876559193, - -0.9341845503585188, - -0.8277798856164342, - -0.7531106934233861, - -0.6286589118218846, - -0.38399799902061876, - 0.0028114496313022667, - 0.5010302326183098, - 1.0319725527916552, - 1.4779733749464803, - 1.7703656084839219, - 1.8935202254622898, - 1.9293771037418588, - 2.0644252055331958, - 2.5543929929961693, - 3.6764354759264166, - 5.660312996661718, - 8.560151178198309, - 12.376442408752629, - 16.824432272895784, - 21.501250753196288 - ], - "pressure:branch47_seg0:RESISTANCE_18": [ - 92139.26684206158, - 111465.23392527574, - 127726.63211048863, - 139513.46151654102, - 145878.25373492218, - 146538.8672647107, - 141961.34505275963, - 133414.9686606331, - 121943.23038696291, - 108773.08033557785, - 95174.62917296763, - 81360.24132251026, - 67714.33252533128, - 54230.212261294706, - 40583.548099600586, - 27025.458167189157, - 13438.373300116013, - 161.2206083782927, - -12145.505393894739, - -23320.722737632157, - -32914.50560131601, - -40816.748860087784, - -47199.35002137805, - -52218.85287023245, - -56180.53912451065, - -59272.2166263066, - -61524.98606272369, - -62859.32337559423, - -63130.109181476066, - -62235.81071497246, - -60293.701502452415, - -57704.99411747729, - -55062.47023797208, - -53228.53570249909, - -52971.81331818602, - -54857.71225124508, - -58972.004607863935, - -65073.26536048548, - -72225.98145388023, - -79216.6035473075, - -84881.08970262762, - -87990.23977864548, - -87851.8340333782, - -84270.36516122874, - -77694.23123032045, - -68675.90604596018, - -58351.83923959547, - -47678.88582385538, - -37291.89831905841, - -27847.443054020492, - -19368.15916921754, - -11822.762811596856, - -5116.7329187156265, - 931.5269339367411, - 6202.398575541055, - 10541.690442452851, - 13673.6891013574, - 15308.456287037228, - 15325.57216493453, - 13865.838798666122, - 11228.431613271987, - 7906.016903446443, - 4584.681463730399, - 1637.56438599445, - -614.1617172123135, - -2103.5135805578407, - -3064.1371582048237, - -3821.472121990234, - -4703.766322699709, - -5932.634655740504, - -7495.802746035925, - -9221.844983417883, - -10750.574640383988, - -11717.223026706273, - -11878.335138282948, - -11177.460262786153, - -9763.362489774465, - -7990.157994254359, - -6262.825173595349, - -4876.768489587207, - -4003.259184929004, - -3547.283487960314, - -3227.303748022623, - -2693.9907772750735, - -1645.5458570616306, - 12.047899481163915, - 2147.063853588486, - 4422.309916143432, - 6333.556347153788, - 7586.544200637098, - 8114.298434418641, - 8267.955843182159, - 8846.677203643372, - 10946.33518313837, - 15754.621590731342, - 24256.127961833507, - 36682.79872040236, - 53036.74389667593, - 72097.70596383027, - 92139.26684206158 - ], - "flow:branch48_seg0:RESISTANCE_19": [ - 33.86541605092014, - 38.014997459178836, - 40.10600806027647, - 40.02313081003983, - 38.04414364086549, - 34.508045102277784, - 29.915827545866374, - 25.02395070831063, - 20.300232234137834, - 15.834923037981284, - 12.075622698639629, - 8.689291035888742, - 5.513615276680594, - 2.5314411816223203, - -0.6034371119601882, - -3.636197460434027, - -6.6007063685930385, - -9.400387845064166, - -11.588293362035126, - -13.31905843397518, - -14.4963569930162, - -15.145397896056677, - -15.519067219876534, - -15.683255198115424, - -15.75834900949018, - -15.770856338357094, - -15.632347438952777, - -15.25748703342966, - -14.575541697701688, - -13.588217593099493, - -12.411516237495656, - -11.335762654160918, - -10.611214927685834, - -10.56552064609546, - -11.39383964150229, - -13.102451855645873, - -15.434619129517982, - -18.09303394328618, - -20.551682600300392, - -22.215986396099765, - -22.835521934024424, - -22.127489679315442, - -20.131885720044256, - -17.106162594285887, - -13.608647109884286, - -9.862976615178138, - -6.384199259398811, - -3.522937321775275, - -1.1482998835070994, - 0.5798073103611715, - 1.9106388215551393, - 3.0453375889418526, - 3.967861214817101, - 4.818696164412654, - 5.4631428548960415, - 5.765300387516309, - 5.650877568825497, - 5.029231035580095, - 3.9448581495232196, - 2.574865887621676, - 1.1410822403674077, - -0.18273818636952932, - -1.10676287575161, - -1.6260579334532315, - -1.7902713070252976, - -1.6914597423956963, - -1.5506863042784351, - -1.543363569422127, - -1.7575982292391061, - -2.197094594313068, - -2.7280981245682256, - -3.2124629768498707, - -3.466453949625149, - -3.3637052522440087, - -2.913687980261501, - -2.213943396791674, - -1.4200183103915154, - -0.7183392357382734, - -0.28627516732056685, - -0.12404811266314374, - -0.19271920851843072, - -0.34495622514264207, - -0.3858175718133062, - -0.17621118274051775, - 0.33411302955418676, - 1.0685886075979913, - 1.8448358651378327, - 2.4819351190729204, - 2.757381462841724, - 2.664721412056247, - 2.3538602241918936, - 2.1388333188392283, - 2.4688997949545697, - 3.800134768333552, - 6.477411173898744, - 10.686848450391413, - 15.982875062657039, - 22.186301870112082, - 28.514423149456135, - 33.86541605092014 - ], - "pressure:branch48_seg0:RESISTANCE_19": [ - 166348.06368085154, - 186730.9472489088, - 197002.06171287654, - 196594.9658697513, - 186874.11427452526, - 169504.67921445819, - 146947.55198585073, - 122918.48828059777, - 99715.42411712215, - 77781.67502631043, - 59315.86520711902, - 42682.09008287809, - 27083.06384832217, - 12434.524302078287, - -2964.103407943512, - -17861.12433389187, - -32422.8918874183, - -46175.021547777375, - -56922.08710034895, - -65423.66339786704, - -71206.59355221999, - -74394.70431713766, - -76230.18061486667, - -77036.6774911776, - -77405.54082059137, - -77466.97724102995, - -76786.61686441454, - -74945.28993326047, - -71595.55148729228, - -66745.78224839688, - -60965.78557742605, - -55681.647762129985, - -52122.64493865191, - -51898.19308923961, - -55966.92387904335, - -64359.68459330317, - -75815.36875218751, - -88873.59180977344, - -100950.55678049369, - -109125.67305225448, - -112168.85247045993, - -108690.97420027223, - -98888.50037270942, - -84026.046521638, - -66846.1327225808, - -48447.27315906775, - -31359.401678598682, - -17304.78672002987, - -5640.487683928882, - 2848.033027012306, - 9385.122210849673, - 14958.800754530463, - 19490.267860483556, - 23669.59777523826, - 26835.14161342066, - 28319.349585422304, - 27757.300848106745, - 24703.752149819138, - 19377.276029390152, - 12647.827919778061, - 5605.034377853967, - -897.6161231076059, - -5436.456503538454, - -7987.251308416615, - -8793.872927450127, - -8308.507195618371, - -7617.023328613761, - -7581.053808490415, - -8633.381669462655, - -10792.202609825992, - -13400.509826041958, - -15779.726286010886, - -17027.338494584365, - -16522.633434137864, - -14312.133444866222, - -10874.964494796193, - -6975.177743861719, - -3528.5065079773776, - -1406.193258991206, - -609.3285053327357, - -946.6432399045439, - -1694.4365904394326, - -1895.148900833481, - -865.5552615589432, - 1641.1744486862096, - 5248.943213277322, - 9061.89587375056, - 12191.348856264272, - 13544.350569427763, - 13089.201280680372, - 11562.240661120593, - 10506.021263404773, - 12127.3189053753, - 18666.389909045738, - 31817.261740491154, - 52494.15934829534, - 78508.42035214536, - 108979.86166130648, - 140063.8064140825, - 166348.06368085154 - ], - "flow:branch50_seg0:RESISTANCE_20": [ - 8.740606034158581, - 10.889685614180653, - 12.884868252814275, - 14.549601067423925, - 15.736942967544536, - 16.360527685496294, - 16.407926973080848, - 15.949679561312884, - 15.066730326922762, - 13.87898797929828, - 12.516289979176117, - 11.040798841390657, - 9.518588354329076, - 7.975706654719796, - 6.407063148382721, - 4.834419668513134, - 3.2538762113369972, - 1.6912147824990154, - 0.1983880932252752, - -1.197271397922442, - -2.4505777343217496, - -3.537745443604671, - -4.457486349381921, - -5.216249073253777, - -5.835754705988646, - -6.335149685982484, - -6.7244946821967355, - -7.003609962597175, - -7.164063832639083, - -7.196368721198394, - -7.105159761957432, - -6.916541330344711, - -6.6782938546167, - -6.465822010665412, - -6.357420099078216, - -6.4238723067953005, - -6.702360561859974, - -7.198229706101336, - -7.8551279057079375, - -8.578491401211378, - -9.257084359131888, - -9.763256300351323, - -9.999974088370854, - -9.908737250005554, - -9.486267958336354, - -8.760678448739649, - -7.813950841591203, - -6.734519556083458, - -5.602655168168452, - -4.496201072098891, - -3.4500527872514795, - -2.4847183736532514, - -1.6040198038101563, - -0.8020190650228288, - -0.08653389649826979, - 0.5313513403295314, - 1.0274165209500126, - 1.3736425282507683, - 1.5510092709909464, - 1.5597991770871267, - 1.4164478834301486, - 1.1593948295844998, - 0.8481940231222374, - 0.5282929644567099, - 0.24345272677352928, - 0.017418318185193772, - -0.15311396406884545, - -0.2868182202919539, - -0.41087552235590735, - -0.550117673242822, - -0.7145351131322809, - -0.8985328078477282, - -1.0779093670078304, - -1.2209333521047532, - -1.2989717603446849, - -1.2957364998677185, - -1.2125487165765518, - -1.0716235771469, - -0.9055180387849868, - -0.7467223638452207, - -0.6204214469821773, - -0.5313873797994693, - -0.4659294216266653, - -0.3977218652023995, - -0.29733872287368057, - -0.14678987576382796, - 0.05451135700672836, - 0.2863671835274641, - 0.5091165047393884, - 0.6898410045139911, - 0.8088740562828494, - 0.8791993320588878, - 0.9555833942069895, - 1.1286210161457675, - 1.5112643947695874, - 2.2131117215805745, - 3.299281253859317, - 4.801967652867001, - 6.6568029724691, - 8.740606034158581 - ], - "pressure:branch50_seg0:RESISTANCE_20": [ - 68067.95447518502, - 84804.03094915289, - 100341.626452881, - 113305.82561657223, - 122552.31654500915, - 127408.51713648973, - 127777.64171856258, - 124209.014572955, - 117332.99841852786, - 108083.38898293386, - 97471.30269586781, - 85980.83359076544, - 74126.53496090292, - 62111.25811634742, - 49895.35977247085, - 37648.31141276635, - 25339.741541443876, - 13170.42895801298, - 1544.9582838178296, - -9323.817443516858, - -19084.010079598473, - -27550.388938590204, - -34712.92227538155, - -40621.829088499384, - -45446.26357751231, - -49335.32969381635, - -52367.37545515782, - -54541.00118836248, - -55790.54460430522, - -56042.12071644734, - -55331.8258854976, - -53862.94938357135, - -52007.58394686699, - -50352.94767280992, - -49508.76177149585, - -50026.26202628671, - -52195.0047648936, - -56056.61323963458, - -61172.244417940456, - -66805.4777759638, - -72090.05808840676, - -76031.90016627307, - -77875.35307507761, - -77164.841133909, - -73874.83808376594, - -68224.2695174811, - -60851.57574636988, - -52445.44471679137, - -43630.98799290202, - -35014.41532668168, - -26867.47751149869, - -19349.882202734763, - -12491.393223348601, - -6245.7679699614455, - -673.8875204291328, - 4137.9280455542175, - 8001.06316447262, - 10697.317407138124, - 12078.570757658865, - 12147.022639104463, - 11030.666485710204, - 9028.851565957095, - 6605.358018241013, - 4114.110773746281, - 1895.901618047721, - 135.6461193459727, - -1192.3834909170253, - -2233.6128050148604, - -3199.7159283214487, - -4284.071904390591, - -5564.48184045125, - -6997.374097405305, - -8394.279004811155, - -9508.086224629338, - -10115.81465886246, - -10090.619888389167, - -9442.790410222451, - -8345.328067493205, - -7051.771970913159, - -5815.141841330348, - -4831.566443284627, - -4138.208704925699, - -3628.4512236323517, - -3097.2810933907695, - -2315.5418026149346, - -1143.134302340727, - 424.51021732703265, - 2230.1003311843597, - 3964.773029665396, - 5372.175099400187, - 6299.151594757496, - 6846.81358195553, - 7441.658704205743, - 8789.198786275694, - 11769.055328788256, - 17234.730329261864, - 25693.335829445365, - 37395.58954027757, - 51840.22250968846, - 68067.95447518502 - ], - "flow:branch51_seg2:RESISTANCE_21": [ - 16.477250432361334, - 19.48882587901224, - 21.80958368541458, - 23.25065821099449, - 23.733697040704573, - 23.2749565939046, - 22.010328972719474, - 20.216721579192548, - 18.08134996224492, - 15.782419790930096, - 13.543073371306736, - 11.329336562812955, - 9.172931389372154, - 7.064162793254332, - 4.909725135751921, - 2.784706591424773, - 0.6627124006021765, - -1.3975122268586886, - -3.2422295849752727, - -4.879893019874638, - -6.238180235956545, - -7.3075743719026285, - -8.148777226212236, - -8.790629951796303, - -9.289730885283339, - -9.673307269594776, - -9.931447979235907, - -10.040973296461026, - -9.973013393852552, - -9.714365915552818, - -9.297938995144433, - -8.816082141851147, - -8.380434045238854, - -8.148275092869012, - -8.242950510546205, - -8.735880911891126, - -9.597330003970303, - -10.755124964521073, - -12.010196522597443, - -13.124225612698757, - -13.91663839906655, - -14.190705567589667, - -13.869961684086984, - -12.968847678890146, - -11.628567245214391, - -9.950897199518295, - -8.15363474160416, - -6.407849109177318, - -4.771893296693756, - -3.3504019658176314, - -2.1072885201859677, - -1.0085825951161278, - -0.043082934164683805, - 0.8308615855917246, - 1.578318679648308, - 2.1610642938763394, - 2.531491524298204, - 2.6403032914568265, - 2.479153219107045, - 2.0933407419013035, - 1.5508578048232624, - 0.9409740037630858, - 0.3939470303466987, - -0.047159769074494665, - -0.34794445556543724, - -0.514299531979071, - -0.6097904161023577, - -0.7008922796995761, - -0.8415663188450714, - -1.0598694747143624, - -1.3337416582469948, - -1.6207917880872615, - -1.8487189640047175, - -1.9529731788790372, - -1.904896205926702, - -1.7122787153077712, - -1.4171659183354062, - -1.0922222027191695, - -0.8134431492212983, - -0.6184935183880571, - -0.5223782968319286, - -0.49045602920806336, - -0.4584068306412181, - -0.36181559072947933, - -0.15537183233981797, - 0.1603013460574165, - 0.5421955289664905, - 0.9204050543074397, - 1.1976186078026694, - 1.3380778682207202, - 1.3550850402507362, - 1.3394818228959802, - 1.4583065834693085, - 1.9161470289853026, - 2.9119694902324285, - 4.595865696951227, - 6.929424551095693, - 9.88356480697994, - 13.192327869590471, - 16.477250432361334 - ], - "pressure:branch51_seg2:RESISTANCE_21": [ - 105386.95511583818, - 124648.71045098931, - 139492.06066782665, - 148709.0387655541, - 151798.51001410265, - 148864.44895365555, - 140776.00877978362, - 129304.26337827212, - 115646.6259177785, - 100942.88321669448, - 86620.23262748263, - 72461.37871962407, - 58669.21259591963, - 45181.72557245909, - 31402.14349696902, - 17810.723322196747, - 4238.646630016869, - -8938.35770297051, - -20736.997665330626, - -31211.34006955343, - -39898.81826643793, - -46738.563299667265, - -52118.81820410908, - -56224.04830058459, - -59416.25126500705, - -61869.57000060785, - -63520.61387423222, - -64221.12757570195, - -63786.46238473001, - -62132.177266089246, - -59468.749569204934, - -56386.83813143703, - -53600.473586433436, - -52115.606606134104, - -52721.141736786856, - -55873.87855383392, - -61383.62650444802, - -68788.77495696158, - -76816.09544354262, - -83941.32147552405, - -89009.5196614416, - -90762.42767885663, - -88710.97975111699, - -82947.53872011481, - -74375.23022203085, - -63645.00927098353, - -52149.88641895876, - -40984.004535833286, - -30520.583925127918, - -21428.85811204171, - -13478.020596010663, - -6450.800096680795, - -275.55442382374554, - 5314.11311539396, - 10094.77889125887, - 13821.965422937907, - 16191.183398133393, - 16887.133300010497, - 15856.432485493193, - 13388.811908545791, - 9919.141700179529, - 6018.381859692762, - 2519.648419229968, - -301.62947920905793, - -2225.4202466592974, - -3289.4117811262545, - -3900.162559018223, - -4482.841571470767, - -5382.5795896699055, - -6778.826189409632, - -8530.48710103443, - -10366.432926686366, - -11824.233859959853, - -12491.034083010782, - -12183.538253446117, - -10951.5747701156, - -9064.060878385459, - -6985.7512166221895, - -5202.706422906918, - -3955.8267885372757, - -3341.0828067267407, - -3136.910963913584, - -2931.9272826426222, - -2314.1387318793986, - -993.7437309866583, - 1025.2724404060996, - 3467.831972922567, - 5886.824779708504, - 7659.856781596239, - 8558.221095111223, - 8666.997379280792, - 8567.200658113095, - 9327.192730856583, - 12255.497467128103, - 18624.684939125695, - 29394.727834675497, - 44319.952357504444, - 63214.35757582327, - 84376.8971512028, - 105386.95511583818 - ], - "flow:branch52_seg0:RESISTANCE_22": [ - 31.023059898458985, - 33.851072994022964, - 34.72167027185893, - 33.60601837855869, - 31.03927321790133, - 27.392369208594104, - 23.104519755535637, - 18.811317906222214, - 15.030275782276377, - 11.473831545761112, - 8.592627855483334, - 6.019870535324049, - 3.429695926275509, - 1.0058622500714824, - -1.6592449965334668, - -4.238924317768567, - -6.663490806615211, - -8.966473722883494, - -10.58333009087313, - -11.802296585882685, - -12.584659551982353, - -12.915629006856815, - -13.114362466824247, - -13.196241317416307, - -13.240663128561456, - -13.246893313667597, - -13.086498578814247, - -12.677808766194477, - -11.978072580572555, - -11.028697657237366, - -9.966557321095896, - -9.124570425430328, - -8.717100299626123, - -9.003400180889065, - -10.121450203117375, - -11.97672373229361, - -14.245582651418939, - -16.584420157862482, - -18.563436807133638, - -19.57503833079318, - -19.562076361793167, - -18.352263357017094, - -16.080452003332514, - -13.043043283960833, - -9.889149218724729, - -6.685034445509157, - -3.864872253462269, - -1.7765160591046452, - -0.04953112044226234, - 1.1271181493431752, - 2.0360917737834328, - 2.9112828208141357, - 3.607451868809364, - 4.279256245874561, - 4.759516036460697, - 4.863469384938333, - 4.58097774174117, - 3.8449481986862537, - 2.740621485042686, - 1.4583712584617685, - 0.2592491391440112, - -0.7694486504104219, - -1.3702081113741096, - -1.584272201125332, - -1.5491047377893017, - -1.3507545873487379, - -1.2092045685833, - -1.2692678039615253, - -1.5587957164257533, - -2.038782806133331, - -2.5317414030676852, - -2.9131286093075754, - -3.024976828910981, - -2.77480309919604, - -2.2305282625051666, - -1.53091754015462, - -0.8299889396396126, - -0.2838584690989068, - -0.0519746724870997, - -0.056422407496982505, - -0.21706966375985753, - -0.3816101437818649, - -0.3632304299851785, - -0.06433364980394336, - 0.505491739774304, - 1.2346158912744942, - 1.8991022034918288, - 2.359873797884052, - 2.434880165175098, - 2.180673071321568, - 1.8232322784749873, - 1.704716229865208, - 2.253454173799572, - 3.8623320792443523, - 6.739866424897837, - 11.018047574633645, - 15.986242664956764, - 21.5672946180956, - 26.999119943958917, - 31.023059898458985 - ], - "pressure:branch52_seg0:RESISTANCE_22": [ - 181644.4750773411, - 198202.89826115893, - 203300.37046582878, - 196768.06826253142, - 181739.40639324003, - 160386.25919897293, - 135280.28429964127, - 110142.97035085027, - 88004.42521387002, - 67180.93299233998, - 50311.071230650545, - 35247.20730326785, - 20081.36264579808, - 5889.468060609601, - -9715.117960847057, - -24819.511199532353, - -39015.696508083936, - -52499.99252230033, - -61966.918969925944, - -69104.14301705496, - -73684.99064338177, - -75622.86437647276, - -76786.47735127411, - -77265.88979106898, - -77525.98588067979, - -77562.46451003001, - -76623.33028171324, - -74230.39268221013, - -70133.33673266979, - -64574.61008980217, - -58355.62574562625, - -53425.671441124556, - -51039.875283250585, - -52716.20224186686, - -59262.545834751414, - -70125.4390321036, - -83409.93413794071, - -97104.16393150981, - -108691.59088432064, - -114614.66321677706, - -114538.76902507915, - -107455.13997902145, - -94153.35794444905, - -76368.89328391924, - -57902.390179312184, - -39141.837610570255, - -22629.38259536356, - -10401.756889189823, - -290.01182997961274, - 6599.438780625915, - 11921.610011028824, - 17045.979394662234, - 21122.149240642928, - 25055.660436059046, - 27867.650544298, - 28476.312342281417, - 26822.283164947235, - 22512.72439069049, - 16046.732742214119, - 8538.973350089618, - 1517.9409751396004, - -4505.232451608691, - -8022.765450987626, - -9276.141466861964, - -9070.230913925709, - -7908.862271494729, - -7080.066564689459, - -7431.745441546061, - -9126.972986858893, - -11937.366392254702, - -14823.709837036737, - -17056.78675161118, - -17711.674154874574, - -16246.871006476047, - -13060.063601530437, - -8963.742257476832, - -4859.704547337593, - -1662.0321394627279, - -304.3191784470875, - -330.3613062664795, - -1270.9740837284755, - -2234.3822459272965, - -2126.766379676219, - -376.68276716402426, - 2959.726797671749, - 7228.853511767379, - 11119.516385571118, - 13817.400303791086, - 14256.573365977982, - 12768.154290774904, - 10675.28706876853, - 9981.358568213238, - 13194.298107614626, - 22614.509510185868, - 39462.88673164538, - 64512.25232527327, - 93601.74872625552, - 126279.61015337988, - 158083.72822740793, - 181644.4750773411 - ], - "flow:branch53_seg0:RESISTANCE_23": [ - 30.144087770590744, - 34.22193112720467, - 36.81326472106298, - 37.58548614375148, - 36.83082701363653, - 34.726159313994785, - 31.564993962106467, - 27.86722245345715, - 24.14891306959473, - 20.317209504541452, - 16.849262923417918, - 13.569960700119953, - 10.271652562861997, - 7.132068673577856, - 3.8232481683202395, - 0.5936256677323407, - -2.5254901586585516, - -5.5784954396463995, - -8.052340130718909, - -10.13955819544315, - -11.805623107883493, - -12.959904432764976, - -13.854493715482544, - -14.512088531519604, - -15.003636070867316, - -15.371756162750296, - -15.531787060979045, - -15.428885356125164, - -15.023410258566415, - -14.333491379597007, - -13.442504610701361, - -12.616223371190209, - -12.050684238995236, - -11.993228476187726, - -12.636531471551717, - -13.992475865033382, - -15.856886632789967, - -18.010868321878277, - -20.09455259106482, - -21.553709811314086, - -22.238392726883994, - -21.90095320985841, - -20.50946031720838, - -18.21621475541305, - -15.5182608744856, - -12.486087843096614, - -9.466953421220744, - -6.901143621371111, - -4.561009357677651, - -2.6598453592475915, - -1.078932868706421, - 0.40192641736399615, - 1.6417272403507548, - 2.772212901603827, - 3.709144905360319, - 4.287981377339759, - 4.490993994609118, - 4.24325494030561, - 3.5727733099937447, - 2.6132618409498702, - 1.565261203804535, - 0.5244293212650658, - -0.25502174043589476, - -0.750725831766871, - -1.0230334881421879, - -1.0968381569240413, - -1.133196946546035, - -1.2652268050133508, - -1.5466213371632342, - -1.983294676606069, - -2.4630090471739403, - -2.894029717140198, - -3.1504084244659345, - -3.114535198849605, - -2.806314454020749, - -2.302018234594168, - -1.7136809136612652, - -1.1605364667407523, - -0.8081310503155923, - -0.6381470105344512, - -0.6156221056563407, - -0.6514804259525857, - -0.5964977822859057, - -0.3491383944058337, - 0.12045023543552945, - 0.7588587672325683, - 1.4133754305743904, - 1.9690075530026063, - 2.2491697581470245, - 2.2510589531893714, - 2.1112616008360225, - 2.0736511685388272, - 2.4912178192485452, - 3.731415492572744, - 6.065045751146996, - 9.719315005699299, - 14.23705754939318, - 19.567332606114157, - 25.27825924568509, - 30.144087770590744 - ], - "pressure:branch53_seg0:RESISTANCE_23": [ - 136720.28197836733, - 155215.58022135458, - 166968.7260570707, - 170471.18171149955, - 167048.3808673636, - 157502.53680150313, - 143164.88553204917, - 126393.42549644914, - 109528.81472058737, - 92149.89797052214, - 76420.82240302105, - 61547.35440910976, - 46587.683975246335, - 32347.916698005636, - 17340.56680116969, - 2692.424109809046, - -11454.509065033719, - -25301.593975178163, - -36521.86198620925, - -45988.562207200586, - -53545.0975502639, - -58780.4083488885, - -62837.87062537138, - -65820.43056749286, - -68049.8733257749, - -69719.50364091717, - -70445.33318658684, - -69978.61645557459, - -68139.56031642943, - -65010.392686851235, - -60969.26982357621, - -57221.62269226471, - -54656.58671532843, - -54395.99272581786, - -57313.73127518192, - -63463.696775368284, - -71919.84140416137, - -81689.35196787742, - -91140.02445149262, - -97758.11779442038, - -100863.53740422567, - -99333.06063978079, - -93021.86283204192, - -82620.71278761412, - -70383.98437266685, - -56631.3853551179, - -42937.92371743795, - -31300.542549760954, - -20686.726041714293, - -12063.884974817429, - -4893.563446600104, - 1822.9608915277197, - 7446.15040071951, - 12573.534568232191, - 16823.04474492186, - 19448.3915880797, - 20369.167246959747, - 19245.532203853407, - 16204.523358100201, - 11852.602689358313, - 7099.334197227916, - 2378.580012995224, - -1156.6660941399878, - -3404.9611382750445, - -4640.028520239509, - -4974.773933799781, - -5139.681361329604, - -5738.510545235918, - -7014.791986409182, - -8995.349585477987, - -11171.122311202875, - -13126.041895591681, - -14288.862592823947, - -14126.157469383365, - -12728.204163736274, - -10440.939017571318, - -7772.500515515447, - -5263.681362214339, - -3665.325881329032, - -2894.353277096404, - -2792.190246990921, - -2954.8277664752814, - -2705.4507541988664, - -1583.5377104774443, - 546.3091229839888, - 3441.848545142624, - 6410.447344768959, - 8930.549496564767, - 10201.241646167176, - 10209.810201330569, - 9575.751092326667, - 9405.166765867742, - 11299.064855083316, - 16924.054302307464, - 27508.371512822705, - 44082.524517869424, - 64573.01138149943, - 88748.78721931402, - 114651.03068616238, - 136720.28197836733 - ], - "flow:branch56_seg0:RESISTANCE_24": [ - 31.874228770328493, - 35.98754110428263, - 38.199487007998975, - 38.35202045800664, - 36.67778080545295, - 33.46254464031138, - 29.173586700733814, - 24.54782624560158, - 19.99311893788097, - 15.665578413412902, - 12.004989303754796, - 8.696284632255463, - 5.617094859121678, - 2.7371207328118436, - -0.27662800388658176, - -3.1774485233660075, - -6.022673137976709, - -8.739039056192393, - -10.876328434835266, - -12.58783074213895, - -13.777672443341574, - -14.451391485473474, - -14.848504480067959, - -15.029391386095252, - -15.111223026226934, - -15.130423166183755, - -15.009609746689895, - -14.671327465064413, - -14.048026400044563, - -13.131634342784421, - -12.02547175643034, - -10.989543998308253, - -10.260434789015852, - -10.151671604074155, - -10.858504589217572, - -12.405512208458047, - -14.561883715521072, - -17.074291026879013, - -19.442964343783178, - -21.103715362771684, - -21.8094455836174, - -21.265328196106452, - -19.49128836257808, - -16.702022468986407, - -13.423022578168403, - -9.864790593630993, - -6.504961673451892, - -3.70907602493948, - -1.3660896963676328, - 0.35947176006613407, - 1.6836651240457927, - 2.803600693529662, - 3.712146377554356, - 4.5391104549657015, - 5.174243388645814, - 5.495943612663, - 5.42892329304704, - 4.8838906238848185, - 3.8910382880306007, - 2.615400991586455, - 1.2496166599665388, - -0.034543591714281764, - -0.949953638272839, - -1.4926602168669862, - -1.6937052238698806, - -1.6289249964420203, - -1.5046803633514527, - -1.48900689894602, - -1.6724400081995894, - -2.0697094744925906, - -2.5634465964459228, - -3.027479024124528, - -3.291724234479717, - -3.2273027822390867, - -2.834163377541059, - -2.1938662899843293, - -1.447116704465252, - -0.7691933513895909, - -0.32951659376233294, - -0.14374166572388236, - -0.1825409459463942, - -0.31573907370707827, - -0.3611016837576366, - -0.18313662735666117, - 0.2760821549820443, - 0.9526734161303905, - 1.6879470162565051, - 2.3119294028527935, - 2.6050234038111344, - 2.5547581715760024, - 2.28498116294542, - 2.077397966597575, - 2.3472563000581124, - 3.5285956485193957, - 5.958007405748614, - 9.841402236014439, - 14.785060032423107, - 20.61835789501338, - 26.66855631033424, - 31.874228770328493 - ], - "pressure:branch56_seg0:RESISTANCE_24": [ - 162958.95688574197, - 183988.51942406414, - 195297.22903252748, - 196077.06568621946, - 187517.4123900536, - 171079.31955373293, - 149151.75804325292, - 125502.27293718007, - 102216.05142153199, - 80091.23407051538, - 61376.2468877506, - 44460.29055841035, - 28717.74327675123, - 13993.698253951658, - -1414.2777001350285, - -16244.901191388604, - -30791.287196327474, - -44678.87518290185, - -55605.89871079412, - -64356.059623404646, - -70439.19857194342, - -73883.62865150579, - -75913.89328414403, - -76838.68872730288, - -77257.0580253268, - -77355.21992288968, - -76737.55387799845, - -75008.06488725581, - -71821.39981958158, - -67136.28901029992, - -61480.964688033535, - -56184.720249020495, - -52457.10452981032, - -51901.046050922916, - -55514.773202766104, - -63423.94489574344, - -74448.52697994733, - -87293.36403251177, - -99403.35218962342, - -107894.044016283, - -111502.13321776464, - -108720.2995762013, - -99650.41171072243, - -85390.11811203165, - -68626.02930265511, - -50434.349223561054, - -33257.017025437315, - -18962.879522178515, - -6984.217674300832, - 1837.8215037714422, - 8607.841599444553, - 14333.581145877957, - 18978.57688894394, - 23206.48164572925, - 26453.637870340786, - 28098.350070704688, - 27755.70456064722, - 24969.19148529298, - 19893.172794513343, - 13371.39858340963, - 6388.74210517962, - -176.6062392732733, - -4856.696458389625, - -7631.3172525120135, - -8659.172227899095, - -8327.979327060719, - -7692.770991419613, - -7612.639439730348, - -8550.452503621776, - -10581.517107445068, - -13105.778539745561, - -15478.172893835657, - -16829.142799704405, - -16499.784159097635, - -14489.834749439526, - -11216.276470206538, - -7398.473241528502, - -3932.548363415453, - -1684.6738718916308, - -734.8881152918682, - -933.2518240587806, - -1614.2354524141044, - -1846.1545889893034, - -936.2972819414966, - 1411.4870140001865, - 4870.601490124122, - 8629.733036980126, - 11819.881403155616, - 13318.342527026669, - 13061.358432707419, - 11682.10686759534, - 10620.824996665657, - 12000.492339975643, - 18040.162486680078, - 30460.679659240104, - 50314.774805372486, - 75589.52963968286, - 105412.62408193671, - 136344.6359532416, - 162958.95688574197 - ], - "flow:branch59_seg0:RESISTANCE_25": [ - 27.730105317749345, - 30.97266435178521, - 32.50297481020914, - 32.24442343008068, - 30.478863733359947, - 27.484526384542377, - 23.672249753193935, - 19.688601709872568, - 15.880192379130035, - 12.292829090797014, - 9.320679464542492, - 6.636955036006725, - 4.10545583948857, - 1.7316986302983555, - -0.7963386347111047, - -3.2211359071498755, - -5.585706704263093, - -7.834017504794739, - -9.54197783043205, - -10.885097761623497, - -11.787064858056876, - -12.25607392196849, - -12.524450075752792, - -12.632945382769545, - -12.677389839946311, - -12.678643046538227, - -12.553783174412905, - -12.232320063721266, - -11.659027263451772, - -10.838568081495286, - -9.872200838758118, - -9.00823339611213, - -8.448102826004257, - -8.459914648108795, - -9.196930178115295, - -10.650090155104026, - -12.58329083322743, - -14.760758661103068, - -16.741069554684735, - -18.026005781602116, - -18.44517978824478, - -17.769710702893175, - -16.052098991061726, - -13.512367628078492, - -10.646214132680004, - -7.605209705239827, - -4.804041560050812, - -2.549428857735176, - -0.6779901760685966, - 0.6612823855840377, - 1.6848364327953385, - 2.5752701502484006, - 3.2951756820166267, - 3.96486631273729, - 4.465583794317261, - 4.6791300357684635, - 4.551467154911719, - 4.009025901180462, - 3.0926272269362483, - 1.9612808549928642, - 0.794237585704934, - -0.27227763354388673, - -0.987502957947612, - -1.3705001657522338, - -1.4725904054328027, - -1.3669937709020348, - -1.2425345366108784, - -1.241719665168437, - -1.4286461622734472, - -1.8006495423826512, - -2.2371420878163595, - -2.6249200976152913, - -2.815801119151286, - -2.705901449742481, - -2.3143505007104954, - -1.7279136347428374, - -1.0772780423434722, - -0.5137631444223398, - -0.18311705028348024, - -0.07454342138371071, - -0.14935663814328598, - -0.28340159678947724, - -0.3128133966226878, - -0.12777907323141577, - 0.3065627913195225, - 0.917177988935364, - 1.5495576096792019, - 2.0575239218556143, - 2.2530891273862568, - 2.147040170835754, - 1.8750052276181628, - 1.7029725002182494, - 2.0036073143829176, - 3.1484473092594265, - 5.4056285753471665, - 8.9268600309176, - 13.28815851320982, - 18.34698266468307, - 23.486922227508774, - 27.730105317749345 - ], - "pressure:branch59_seg0:RESISTANCE_25": [ - 169776.15500662726, - 189628.55725582814, - 198997.8049604627, - 197414.8373270245, - 186605.2881634294, - 168272.6105176092, - 144932.14134608678, - 120542.45944819329, - 97225.66762733254, - 75262.21892324602, - 57065.38447678652, - 40634.418587798194, - 25135.443915240485, - 10602.236512035302, - -4875.542661498519, - -19721.240247856498, - -34198.204311819456, - -47963.372478329424, - -58420.27243121084, - -66643.45568340497, - -72165.70321259288, - -75037.1872773603, - -76680.30658624272, - -77344.56356798272, - -77616.6724894626, - -77624.34518288555, - -76859.89698620075, - -74891.75549217284, - -71381.79957215262, - -66358.58009078668, - -60442.045951578446, - -55152.44936395029, - -51723.078526555604, - -51795.39580474589, - -56307.73578438265, - -65204.63360267628, - -77040.55612180033, - -90371.99180267219, - -102496.3442123539, - -110363.30070368925, - -112929.67217292514, - -108794.14716057171, - -98278.15708813284, - -82728.78139639909, - -65180.902853143816, - -46562.508399427206, - -29412.499347250687, - -15608.748108582695, - -4150.96026164444, - 4048.6676668405817, - 10315.325098745534, - 15766.96010356257, - 20174.54499193889, - 24274.69171063663, - 27340.308944799148, - 28647.73491286677, - 27866.125438234063, - 24545.056537838278, - 18934.452409815607, - 12007.841969345498, - 4862.679096152135, - -1667.005919656673, - -6045.936477230041, - -8390.81734134025, - -9015.859625097202, - -8369.349617766775, - -7607.354305780758, - -7602.36529694821, - -8746.81323840927, - -11024.384953364251, - -13696.788292751851, - -16070.93937315514, - -17239.598688681417, - -16566.743569853388, - -14169.492861493884, - -10579.063069854623, - -6595.579851081269, - -3145.4886393217266, - -1121.1247976534453, - -456.3882941874889, - -914.4283967964541, - -1735.1118170774484, - -1915.1840609560916, - -782.3208565194161, - 1876.91504889486, - 5615.3754424591, - 9487.087406200128, - 12597.085235854, - 13794.423228894964, - 13145.143903076998, - 11479.623842560233, - 10426.36224623425, - 12266.983557445665, - 19276.20801587538, - 33095.68515518579, - 54654.24508724868, - 81356.07252985645, - 112328.46529397777, - 143797.48302556688, - 169776.15500662726 - ], - "flow:branch60_seg2:RESISTANCE_26": [ - 30.55186837537063, - 34.04124930767741, - 35.613876160991396, - 35.25047088034551, - 33.232653178988485, - 29.896663688865843, - 25.717095533216057, - 21.378106054362974, - 17.262332344742983, - 13.430690747947143, - 10.256637533156262, - 7.380711062179935, - 4.671066614306728, - 2.0965031370916396, - -0.6535226713186472, - -3.314658705872662, - -5.932117359881174, - -8.379788190058136, - -10.25932026844624, - -11.740422906673148, - -12.717728310017296, - -13.240561397088909, - -13.544376333570082, - -13.681179019828596, - -13.760736836485009, - -13.791875799011128, - -13.68419234275017, - -13.356139414504657, - -12.743592415459746, - -11.854732117278385, - -10.80767934433347, - -9.87515265348528, - -9.28497131267312, - -9.334475470128451, - -10.181209770717906, - -11.810399773102224, - -13.967323075322629, - -16.370620178009133, - -18.525132474913303, - -19.908722547548013, - -20.318763330227412, - -19.517140779756605, - -17.58091146067836, - -14.770563078948967, - -11.604290837257375, - -8.26958876493977, - -5.249032077568345, - -2.81381032126623, - -0.8199195598905706, - 0.5958402289982542, - 1.6958358762469494, - 2.649505536963843, - 3.4383800984742146, - 4.185742859478729, - 4.746379351083798, - 4.995625603340308, - 4.862695893860768, - 4.269564274770935, - 3.2698768101925495, - 2.034188190417024, - 0.7671330501912497, - -0.37205216120722134, - -1.127432684689407, - -1.5188070631319452, - -1.5959134149919885, - -1.4574967112449342, - -1.3126005076728786, - -1.3138887113472997, - -1.5311865757622083, - -1.9544763772247973, - -2.448822340931354, - -2.8842184188158777, - -3.089618678468409, - -2.9607909009313853, - -2.5189584649258903, - -1.864205763794514, - -1.1450168335629585, - -0.5346910809566346, - -0.18615033086303576, - -0.08542091230840093, - -0.1871967689269675, - -0.3447123386498137, - -0.3782280695494759, - -0.1671893961932511, - 0.3228250752733528, - 1.0077766353336546, - 1.7113897177535902, - 2.264641271977548, - 2.4695930676637197, - 2.3399732904644055, - 2.0260042052610236, - 1.8304759003531328, - 2.1709251366250584, - 3.4558961069148992, - 5.981740312797824, - 9.883075026194149, - 14.716851237536169, - 20.322303640705805, - 25.92348366526209, - 30.55186837537063 - ], - "pressure:branch60_seg2:RESISTANCE_26": [ - 166225.2493246431, - 185210.11821498274, - 193766.39659295138, - 191789.19727279473, - 180810.74428986036, - 162660.4407494407, - 139920.43185026874, - 116313.05049217828, - 93920.13158327834, - 73073.10606179449, - 55803.85822020147, - 40156.64513313046, - 25414.1318964625, - 11406.561208999503, - -3555.657141645593, - -18034.247956309526, - -32275.200817645982, - -45592.3796235987, - -55818.45432728637, - -63876.77181836944, - -69194.05167639378, - -72038.65872907935, - -73691.64154980102, - -74435.95153282452, - -74868.8061702781, - -75038.22565539385, - -74452.34628641524, - -72667.49047598375, - -69334.77195322925, - -64498.700297489755, - -58801.94204687931, - -53728.29222017895, - -50517.259777981184, - -50786.59980047777, - -55393.47419840148, - -64257.49884711611, - -75992.79140862697, - -89068.54360770948, - -100790.71847851266, - -108318.49393109817, - -110549.42562066417, - -106187.99323037438, - -95653.44269621081, - -80363.02396625116, - -63136.110497706104, - -44992.81148292981, - -28558.700734329897, - -15309.254296925968, - -4460.981946977304, - 3241.821069861421, - 9226.628560958228, - 14415.312119628987, - 18707.385817441816, - 22773.60395368062, - 25823.890091751582, - 27179.978037521025, - 26456.739974651427, - 23229.65578934875, - 17790.60060606081, - 11067.520813158186, - 4173.7834480848005, - -2024.2448840961515, - -6134.0857065323, - -8263.45805249259, - -8682.974869106967, - -7929.883411381017, - -7141.538578617036, - -7148.547379989631, - -8330.81195530998, - -10633.828318179752, - -13323.443894554573, - -15692.327548807289, - -16809.860164248643, - -16108.93971061497, - -13705.03740479033, - -10142.687971547712, - -6229.756763201968, - -2909.123499475716, - -1012.7984573439682, - -464.754308036186, - -1018.4918711130657, - -1875.4955910823041, - -2057.8464920704023, - -909.6366456263288, - 1756.4123400341125, - 5483.0663844746505, - 9311.253211426214, - 12321.359709994003, - 13436.452342591623, - 12731.222812350114, - 11022.993749992214, - 9959.172027731103, - 11811.473120626912, - 18802.68613866811, - 32545.187177215288, - 53771.395913958084, - 80070.79096364559, - 110568.68758477403, - 141043.33923797958, - 166225.2493246431 - ], - "flow:branch62_seg0:RESISTANCE_27": [ - 26.12190932027245, - 30.136733048368924, - 32.66751621016973, - 33.5423033732319, - 32.804413247939785, - 30.614318764200824, - 27.312837912728124, - 23.52926800729685, - 19.59698409638693, - 15.721459345700472, - 12.322739174914945, - 9.227599586406809, - 6.379050078669012, - 3.730901794987127, - 1.0313021968176757, - -1.5821955399938745, - -4.144048229601571, - -6.600599194813308, - -8.665610112304412, - -10.369567099049073, - -11.616413448967627, - -12.42003898786532, - -12.927302544757527, - -13.202733008908067, - -13.351791842513453, - -13.416610787793575, - -13.36562691117167, - -13.144031344390633, - -12.692958314793236, - -11.986923638232264, - -11.092906950397737, - -10.189841458450331, - -9.463909207201981, - -9.189269658701722, - -9.549408128659993, - -10.613323213402852, - -12.257643924433081, - -14.301960560308169, - -16.36486933344429, - -17.996741243587312, - -18.92714462684323, - -18.86358029061778, - -17.752014591434275, - -15.717384510077558, - -13.088449084206102, - -10.097647010916228, - -7.159856712031917, - -4.546326031034502, - -2.298710710956947, - -0.5604009595146019, - 0.8105301098754797, - 1.9232170871949115, - 2.8333843630236193, - 3.647905955856502, - 4.284322411282736, - 4.680121002554408, - 4.764983950988334, - 4.452597877411091, - 3.745433408879779, - 2.754266995303652, - 1.6189720216074759, - 0.4823516536603235, - -0.4130863226109104, - -1.0184236472069514, - -1.328324929934657, - -1.3850209635538278, - -1.3364234642165747, - -1.321952463949098, - -1.4378204678133306, - -1.7213426837109571, - -2.1133112152682245, - -2.5184279331211203, - -2.795318803213937, - -2.8351728398116314, - -2.604833545447292, - -2.1416972479340277, - -1.540992221853498, - -0.9515408642569093, - -0.5088583174198756, - -0.2576200458508156, - -0.20903607999167842, - -0.27346176591927907, - -0.3131401409459082, - -0.20811907389482326, - 0.11320280433879186, - 0.6282185895930803, - 1.2349033007708372, - 1.8019741176392952, - 2.145255901305407, - 2.2148982615523347, - 2.0710869131637026, - 1.9037494192131472, - 2.0296323176632796, - 2.8087353626703493, - 4.558792956313349, - 7.481159645536301, - 11.419255625088963, - 16.24323983797006, - 21.363769693122368, - 26.12190932027245 - ], - "pressure:branch62_seg0:RESISTANCE_27": [ - 144306.65309054145, - 166485.95736140068, - 180466.89739528444, - 185299.53065039168, - 181223.16498263177, - 169124.30953430137, - 150885.76325970577, - 129983.98678186197, - 108260.66161341105, - 86850.89409280557, - 68075.16347434453, - 50976.51921410622, - 35240.1256532571, - 20610.819233889564, - 5697.277581168581, - -8740.606979072596, - -22893.186058008683, - -36464.04121984888, - -47871.89086992808, - -57285.15108579964, - -64173.17069681239, - -68612.68200644242, - -71414.98505528885, - -72936.56021861883, - -73760.01386159536, - -74118.09660875042, - -73836.44366728154, - -72612.27149097042, - -70120.38476085057, - -66219.99984291692, - -61281.13590128401, - -56292.28316978432, - -52281.97702164779, - -50764.77115570263, - -52754.303261175315, - -58631.745953795085, - -67715.55431967646, - -79009.081449083, - -90405.31811128443, - -99420.3549042691, - -104560.23180283318, - -104209.07995921765, - -98068.39844269009, - -86828.38326163877, - -72305.21545459604, - -55782.96847941975, - -39553.577269304325, - -25115.510713753294, - -12698.889849682444, - -3095.8528285490506, - 4477.654598336028, - 10624.530451310957, - 15652.615945255791, - 20152.320905201912, - 23668.110181103537, - 25854.64139151716, - 26323.454291437785, - 24597.723289260903, - 20691.097001453094, - 15215.543662481836, - 8943.773252594685, - 2664.6808967476327, - -2282.0347441894874, - -5626.13192453962, - -7338.136064459158, - -7651.344978660125, - -7382.875228156826, - -7302.932311660318, - -7943.028088462103, - -9509.304946383418, - -11674.677554195054, - -13912.68538691394, - -15442.32834847993, - -15662.496122706836, - -14390.020507029672, - -11831.49202431161, - -8512.9852970473, - -5256.6478091720555, - -2811.113069254204, - -1423.1841221865645, - -1154.7891353924306, - -1510.6993789855176, - -1729.8967366490126, - -1149.7232698356777, - 625.3722733018659, - 3470.501369632539, - 6822.041989342309, - 9954.741465643956, - 11851.151282417712, - 12235.880277427997, - 11441.415596152914, - 10516.984177589244, - 11212.405769246165, - 15516.446161516727, - 25184.38241219085, - 41328.56815506592, - 63084.001243471976, - 89733.39381992252, - 118021.00926133587, - 144306.65309054145 - ], - "flow:branch64_seg2:RESISTANCE_28": [ - 15.723717851058467, - 18.50812370544324, - 20.584548922696438, - 21.784786986098894, - 22.04654305282036, - 21.405585002754194, - 20.013892845501537, - 18.161461339885992, - 16.025390706747825, - 13.788128082393726, - 11.662563872823965, - 9.5968852036003, - 7.616689149215316, - 5.69858750710801, - 3.7421698090801967, - 1.8205125232284214, - -0.09699702268571152, - -1.955161144259469, - -3.600344300667916, - -5.043034377767831, - -6.21601986374401, - -7.113765413333253, - -7.799589740467556, - -8.305725399525926, - -8.689304147763002, - -8.977241591227337, - -9.158716369532645, - -9.208466457846802, - -9.09652634875867, - -8.808274949970874, - -8.377125417487509, - -7.892963280102232, - -7.466051666770991, - -7.250709953085945, - -7.3629537946566455, - -7.868195976612835, - -8.728816254711106, - -9.86823919743526, - -11.083895180750574, - -12.139899218725207, - -12.862074974139741, - -13.062377890376832, - -12.67790477631635, - -11.73406538724123, - -10.379439360351121, - -8.72587255075447, - -6.988467469402602, - -5.3330772744221, - -3.8152403991418193, - -2.526296000583247, - -1.4227273743450117, - -0.4640225218723117, - 0.3707644782886198, - 1.1225260668786994, - 1.7587948160211222, - 2.2442603489753785, - 2.529894346374388, - 2.568322021487614, - 2.352957339449641, - 1.9314116702478241, - 1.3710100306427422, - 0.761199296759943, - 0.23124295270689038, - -0.1820130530075153, - -0.448078216854597, - -0.5777363261123184, - -0.6389438818437978, - -0.7002599001116494, - -0.8161645840565773, - -1.013587391998745, - -1.269056643263117, - -1.5375985335533193, - -1.7466690798282754, - -1.8323803097940439, - -1.7673678982298566, - -1.5618832691324416, - -1.2601765768290545, - -0.936927264741856, - -0.666259996673221, - -0.48577602743910986, - -0.4076281790890116, - -0.39380723424680675, - -0.3784776921052876, - -0.2964469727338942, - -0.10304864281437706, - 0.19902893937021612, - 0.5654378780557764, - 0.9249631197170202, - 1.1795948995585102, - 1.295946199737358, - 1.2888647091207155, - 1.2504672978653577, - 1.3475797474504827, - 1.7815307548755053, - 2.7447243627624487, - 4.377312166154688, - 6.635910362032588, - 9.475136905709777, - 12.62689218558758, - 15.723717851058467 - ], - "pressure:branch64_seg2:RESISTANCE_28": [ - 114422.54909151958, - 134684.85719078488, - 149795.14272290713, - 158529.3555873218, - 160434.17203583688, - 155769.87732869943, - 145642.4401861628, - 132162.1719126045, - 116617.84268980403, - 100337.13256191739, - 84869.25928789147, - 69837.1771063467, - 55427.15764466999, - 41469.00338461918, - 27232.020616504316, - 13247.99169852549, - -705.8538378227023, - -14227.838742075197, - -26199.946882270608, - -36698.49930698729, - -45234.39333815336, - -51767.3478971694, - -56758.13751086152, - -60441.320638680954, - -63232.64890889689, - -65327.98899145544, - -66648.59312122282, - -67010.62784967571, - -66196.0321701561, - -64098.40741366656, - -60960.90335682026, - -57437.6230195624, - -54330.95858454687, - -52763.90249520708, - -53580.708456366694, - -57257.389691402095, - -63520.181160481465, - -71811.83831401524, - -80658.24841542379, - -88342.86060578165, - -93598.18200046066, - -95055.79975241113, - -92257.96312212606, - -85389.58060255011, - -75531.87617598199, - -63498.75962941175, - -50855.546357847714, - -38809.1609135768, - -27763.7601998413, - -18384.025386649853, - -10353.282498251816, - -3376.7230047899093, - 2698.077968596857, - 8168.697455053799, - 12798.86780495384, - 16331.633039159367, - 18410.210790248464, - 18689.851558657996, - 17122.628327072398, - 14055.012227275094, - 9976.93192043919, - 5539.298321616055, - 1682.7704718935224, - -1324.5211908731137, - -3260.695228097895, - -4204.225982859919, - -4649.6374699380995, - -5095.83824616775, - -5939.284402744938, - -7375.943413519217, - -9235.010284410382, - -11189.20762602653, - -12710.628009636133, - -13334.35437711361, - -12861.25469902033, - -11365.929275148577, - -9170.389445553412, - -6818.082527339452, - -4848.418669120919, - -3535.024723391333, - -2966.33759106457, - -2865.761648741211, - -2754.2075427191667, - -2157.264497620057, - -749.8918832640011, - 1448.3469368674735, - 4114.729351729898, - 6731.018641787171, - 8583.991176981537, - 9430.687389842278, - 9379.154907805283, - 9099.73437151776, - 9806.428178626044, - 12964.318756462097, - 19973.543224051053, - 31853.994135809273, - 48289.96464824481, - 68951.20657926626, - 91886.7410789534, - 114422.54909151958 - ], - "flow:branch66_seg0:RESISTANCE_29": [ - 20.804418316481808, - 24.408683341840675, - 27.04489700642659, - 28.487362643698248, - 28.683787988873508, - 27.703287668869187, - 25.76301490955724, - 23.243616290502686, - 20.411925269289636, - 17.478275620438136, - 14.713455859808645, - 12.059333079603771, - 9.525683549584144, - 7.091713543632299, - 4.624844189380337, - 2.211058202601453, - -0.18463358526894239, - -2.4986430414554563, - -4.541003184338319, - -6.333681613861523, - -7.796323493008204, - -8.920848052364008, - -9.791128640007589, - -10.44377871425333, - -10.947994410816122, - -11.33542382791008, - -11.58871649256983, - -11.675683277789759, - -11.55776998426018, - -11.21791421430616, - -10.695897101110308, - -10.109579876874514, - -9.597279449070761, - -9.35266800103953, - -9.527622844187524, - -10.204205561021485, - -11.337336533176693, - -12.828997104101536, - -14.427532344415914, - -15.829238783558022, - -16.811620293436533, - -17.132329750708436, - -16.69812363462286, - -15.532733930951165, - -13.823195045529511, - -11.69778489899099, - -9.436498380485585, - -7.263360836129231, - -5.245205640466356, - -3.515334547599708, - -2.023097168755922, - -0.7159293355243965, - 0.4198407637534016, - 1.4434143731817828, - 2.311262118170017, - 2.970833444701888, - 3.3632896340716827, - 3.4258329013437465, - 3.150162312682922, - 2.59747441097244, - 1.8610948466309882, - 1.0562605624273447, - 0.349614558642446, - -0.20371583157597922, - -0.5662141616138632, - -0.7504226959793032, - -0.8430013282605082, - -0.9337648071254218, - -1.0936149345312558, - -1.3582390822538362, - -1.6968048621754095, - -2.052782460943192, - -2.3311939082461457, - -2.4476627103608153, - -2.366803516326342, - -2.101047853883937, - -1.7074419211999212, - -1.2810602717415966, - -0.9229394121230771, - -0.6797846918146934, - -0.5685269486334873, - -0.542269084975461, - -0.51457538496002, - -0.4004099638003162, - -0.14144592882179455, - 0.260408034874835, - 0.7459695365313668, - 1.2228770284465047, - 1.564655615792811, - 1.7247060805154508, - 1.7240390539416806, - 1.684212289450988, - 1.8244513226341266, - 2.4101766471277966, - 3.6950124614409408, - 5.866018271698642, - 8.854357420693935, - 12.607895146719802, - 16.765226762444403, - 20.804418316481808 - ], - "pressure:branch66_seg0:RESISTANCE_29": [ - 111229.78141831497, - 130499.80400898325, - 144594.18844325535, - 152306.2587879559, - 153356.4370662614, - 148114.2411723118, - 137740.6699612813, - 124270.8313221904, - 109131.3369829416, - 93446.72594332145, - 78664.75545235323, - 64474.62082765255, - 50928.59040623733, - 37915.491572035055, - 24726.498018502967, - 11821.312032729858, - -987.1342240662519, - -13358.869982124434, - -24278.24628068297, - -33862.711793525, - -41682.65340573767, - -47694.86768800473, - -52347.7792985816, - -55837.140260121116, - -58532.90424943718, - -60604.276239890605, - -61958.492796033315, - -62423.456361153156, - -61793.0388380013, - -59976.016971263496, - -57185.07859874982, - -54050.36290031985, - -51311.374299989526, - -50003.57143413098, - -50938.958747795186, - -54556.27438527275, - -60614.50242288682, - -68589.59101850778, - -77136.07968571794, - -84630.2330173159, - -89882.48659878914, - -91597.14366289909, - -89275.68239212643, - -83044.98466077342, - -73905.02055993179, - -62541.621572876786, - -50451.766362732626, - -38833.195231656886, - -28043.22947212545, - -18794.56024165762, - -10816.387771363356, - -3827.680365293377, - 2244.6576334120246, - 7717.142713760722, - 12357.047252834056, - 15883.41234335854, - 17981.659720229458, - 18316.0441688604, - 16842.185161907186, - 13887.266953444556, - 9950.250463165563, - 5647.244238812866, - 1869.196742101173, - -1089.1564990155991, - -3027.235680144737, - -4012.097390822912, - -4507.064415422311, - -4992.326813116403, - -5846.957519950978, - -7261.757283221639, - -9071.882282803572, - -10975.098700508914, - -12463.61157103576, - -13086.306193117154, - -12653.996558631634, - -11233.147208532633, - -9128.752786569312, - -6849.1246350589345, - -4934.449380468374, - -3634.434836475836, - -3039.6008802040997, - -2899.2145261734277, - -2751.1515449105946, - -2140.7718338323666, - -756.2335801007071, - 1392.2585269187541, - 3988.2887966792255, - 6538.050836433124, - 8365.352950132345, - 9221.054750403027, - 9217.488526206329, - 9004.556722898811, - 9754.337695862288, - 12885.888831948758, - 19755.199216428937, - 31362.373137823994, - 47339.37885315194, - 67407.48046792089, - 89634.44590699593, - 111229.78141831497 - ], - "flow:branch67_seg0:RESISTANCE_30": [ - 21.414158542416803, - 25.28425504679189, - 28.18379116558208, - 29.864677610462028, - 30.228003187400308, - 29.333316931299272, - 27.401520388474893, - 24.817061157449338, - 21.857236686418815, - 18.778214078433557, - 15.845830556173514, - 13.02892459527174, - 10.35401278229098, - 7.780987384678102, - 5.192705316711909, - 2.6532537697278866, - 0.12608129224540873, - -2.3104857041124722, - -4.492815855226361, - -6.41674878394881, - -7.99428750236958, - -9.223595990657953, - -10.173957423143861, - -10.888858155819452, - -11.441827249402564, - -11.867047700669072, - -12.15457050518082, - -12.272561716064565, - -12.179703904735144, - -11.853952661716761, - -11.331620461747464, - -10.722887367376769, - -10.171284129265324, - -9.877691041034321, - -10.004051734961541, - -10.648341482760472, - -11.783596243486468, - -13.315012748010329, - -14.98884789617587, - -16.50401096756294, - -17.608277759943288, - -18.042912248569834, - -17.695348444485976, - -16.57446161475758, - -14.84434417759318, - -12.652269568762984, - -10.28891958561033, - -7.975351840794503, - -5.820192862422073, - -3.955769835328066, - -2.341459115572351, - -0.9378009871046761, - 0.28640400427984414, - 1.3865301517933761, - 2.324112718782245, - 3.0528437484608704, - 3.505936790803905, - 3.61724405444244, - 3.3724414737919868, - 2.8263344186183352, - 2.0696489678334653, - 1.2275757092354718, - 0.46702371258212244, - -0.14269185367548035, - -0.5507890838709403, - -0.7685315231646177, - -0.8785545078744439, - -0.9732479438003593, - -1.1316834995129925, - -1.3965496304600027, - -1.745305762792434, - -2.1215074806097083, - -2.4269926460148454, - -2.5739157264045764, - -2.516638441426171, - -2.2605064409613482, - -1.860014139196286, - -1.4135859859945195, - -1.0239413477846675, - -0.7497293600149497, - -0.6152613183582838, - -0.576754286111999, - -0.5488925789651652, - -0.4415034649346292, - -0.1881156169480241, - 0.2171339164092671, - 0.7211884326146754, - 1.2279570897573195, - 1.6085576950935367, - 1.80448191553866, - 1.824394068930404, - 1.7839387015089263, - 1.9027184677210316, - 2.455282397681655, - 3.7141857803570577, - 5.879485581672075, - 8.925956445880413, - 12.79865153908069, - 17.12353365725716, - 21.414158542416803 - ], - "pressure:branch67_seg0:RESISTANCE_30": [ - 107229.49236077847, - 126608.65604490483, - 141127.8250089202, - 149544.71422937, - 151364.03470837174, - 146883.97293644174, - 137210.67373951024, - 124269.22423912036, - 109448.16671884236, - 94030.2351401761, - 79346.58572774344, - 65241.179922647796, - 51846.79717126525, - 38962.601573720756, - 26002.009557705285, - 13285.932028041743, - 631.3408456791595, - -11569.551456720123, - -22497.37539170612, - -32131.298241145756, - -40030.682922572865, - -46186.33573016491, - -50945.185990986516, - -54524.98776098208, - -57293.93126528741, - -59423.18481687473, - -60862.929661798014, - -61453.76014533701, - -60988.782922402264, - -59357.61257519746, - -56742.080588008714, - -53693.90381452807, - -50931.79970989237, - -49461.65845969217, - -50094.3983844179, - -53320.621934265124, - -59005.30907486345, - -66673.74087654622, - -75055.32135648662, - -82642.3655388136, - -88171.88318683849, - -90348.27669235627, - -88607.88188762343, - -82995.14088229339, - -74331.73185110427, - -63355.113411663144, - -51520.84878425206, - -39935.86428311267, - -29144.09757652234, - -19808.165261227903, - -11724.648056986609, - -4695.954948850057, - 1434.1425523763799, - 6942.926289876189, - 11637.787519439828, - 15286.843270343197, - 17555.66634020343, - 18113.027552989515, - 16887.200425589697, - 14152.617967683935, - 10363.582941920384, - 6146.976070762703, - 2338.579660807021, - -714.5167531725979, - -2758.027299757981, - -3848.3531785263303, - -4399.283478921218, - -4873.452428598447, - -5666.804368031211, - -6993.097937249433, - -8739.463219527788, - -10623.259827593267, - -12152.949595475404, - -12888.653839705417, - -12601.84293467275, - -11319.284746230605, - -9313.85520167952, - -7078.40597080913, - -5127.295135723037, - -3754.2030205460064, - -3080.8662738775756, - -2888.045738252284, - -2748.530720291123, - -2210.7892928275423, - -941.972203600601, - 1087.278754602707, - 3611.2868676368357, - 6148.885799770627, - 8054.709445446736, - 9035.782535846125, - 9135.490871141565, - 8932.91422059122, - 9527.693324726473, - 12294.608008260382, - 18598.4546146157, - 29441.000589231095, - 44695.93220907139, - 64088.10809538425, - 85744.57025025564, - 107229.49236077847 - ], - "flow:branch68_seg0:RESISTANCE_31": [ - 23.51834692767491, - 26.206103871180005, - 27.445941843739455, - 27.17301617135288, - 25.642527128094585, - 23.09780264391496, - 19.8799727830518, - 16.51620893322576, - 13.33489557377793, - 10.32606103350521, - 7.827791197939058, - 5.576997556038028, - 3.433870600908302, - 1.427058649714678, - -0.7110040765415446, - -2.768566216961403, - -4.763482259413328, - -6.6547878184207825, - -8.087857339892908, - -9.209025606114679, - -9.961824961670622, - -10.351349808334517, - -10.575827883125687, - -10.669382206251974, - -10.70941159187508, - -10.711342181792517, - -10.602780947079387, - -10.324524778140091, - -9.831693513372711, - -9.133500405110356, - -8.315543705396474, - -7.594939289671428, - -7.1396363103567815, - -7.1714981832389695, - -7.817644691038179, - -9.063525332982602, - -10.707173165377585, - -12.537768030495261, - -14.193257240079566, - -15.246978525310283, - -15.563305919046906, - -14.959977492167143, - -13.481801971324948, - -11.322365421276583, - -8.901666329507966, - -6.343153824108843, - -3.9947244002382343, - -2.1138395366842073, - -0.5513499328984924, - 0.5676691152218559, - 1.426053007632323, - 2.1802345889999275, - 2.7869927388691496, - 3.3524983645059563, - 3.7733604425091802, - 3.943717550669914, - 3.8247623215747555, - 3.3556739685620594, - 2.5752235878217857, - 1.6156412773223991, - 0.6385792216350117, - -0.25004216213136077, - -0.843389933981143, - -1.1532376523171195, - -1.2320457027411384, - -1.1416294101280178, - -1.0405601621902831, - -1.0480147346076913, - -1.2145953878799278, - -1.5345527445644016, - -1.9035922473094609, - -2.226286674814844, - -2.3782315186131684, - -2.2744701415335027, - -1.9348687948884777, - -1.436150561998487, - -0.8895051202870885, - -0.4200685108194183, - -0.15222864588725513, - -0.06928389025216308, - -0.13617721941830505, - -0.2473327944955649, - -0.2649805833357942, - -0.09873769178235703, - 0.27597510218056076, - 0.7964152094849147, - 1.3261367504927066, - 1.7452752946367647, - 1.9000905357127356, - 1.8007354749278632, - 1.569583085555516, - 1.4346765993871926, - 1.7120978742915587, - 2.7127934509375806, - 4.657791945031717, - 7.668051192412774, - 11.370558716381042, - 15.653000446212715, - 19.981710857891276, - 23.51834692767491 - ], - "pressure:branch68_seg0:RESISTANCE_31": [ - 169572.8913850257, - 188952.2600818136, - 197891.78761333498, - 195923.92841208295, - 184888.73732929374, - 166540.66678302444, - 143339.34590916205, - 119085.80616397422, - 96147.77797592123, - 74453.36321700814, - 56440.24176847985, - 40211.4827089206, - 24759.026143667365, - 10289.433273191411, - -5126.508993872314, - -19962.022834551768, - -34345.843365358705, - -47982.60759541156, - -58315.380687803095, - -66399.27132931912, - -71827.1342546718, - -74635.7013158705, - -76254.24178183437, - -76928.79076790228, - -77217.41218680172, - -77231.33220062828, - -76448.57980228851, - -74442.2864493677, - -70888.85547105059, - -65854.71661439148, - -59957.053695104325, - -54761.32396566677, - -51478.480877419766, - -51708.21258118674, - -56367.08303338474, - -65350.179652578845, - -77201.2725978051, - -90400.29824307076, - -102336.77034245733, - -109934.35216230719, - -112215.1481274775, - -107865.00625248223, - -97207.00814510492, - -81636.95551001512, - -64183.137627888515, - -45735.65215965164, - -28802.91582218379, - -15241.2872920817, - -3975.364534508548, - 4093.0297318171206, - 10282.182353895641, - 15720.011457068504, - 20094.88245294154, - 24172.312908772834, - 27206.828883079666, - 28435.144269686964, - 27577.448692480673, - 24195.20977152146, - 18567.976358747208, - 11649.159002503038, - 4604.30851386165, - -1802.8636337053028, - -6081.0426051647055, - -8315.118565046827, - -8883.343407373462, - -8231.420369847023, - -7502.686983285064, - -7556.436228621169, - -8757.522474651496, - -11064.491338564663, - -13725.354183568938, - -16052.057980999709, - -17147.616549515657, - -16399.472269664016, - -13950.86555228058, - -10354.988129534182, - -6413.544098688077, - -3028.7941656153166, - -1097.6048492722412, - -499.55337560896845, - -981.8702355472009, - -1783.3284467622889, - -1910.5732139820618, - -711.9223105133134, - 1989.8463174706362, - 5742.343636253635, - 9561.762306021747, - 12583.851190074754, - 13700.106007664375, - 12983.732319374067, - 11317.068453201768, - 10344.360507509187, - 12344.634075284988, - 19559.88788754876, - 33583.79098743038, - 55288.47822445263, - 81984.44066368639, - 112861.8670639628, - 144072.90169722692, - 169572.8913850257 - ], - "flow:branch69_seg0:RESISTANCE_32": [ - 49.44359972170192, - 54.026325680277104, - 55.56825295407086, - 53.8560346935053, - 49.846659542470675, - 44.086423249463984, - 37.22850419461282, - 30.288918424300963, - 24.195809232559288, - 18.34385900655065, - 13.607481217291596, - 9.421140640562813, - 5.167342381624713, - 1.2708740870022737, - -3.012428336972429, - -7.126481009896872, - -10.943284387767104, - -14.64821947497834, - -17.218240687504522, - -19.137227988638738, - -20.411577829104754, - -20.92538819745266, - -21.22698317286138, - -21.334826863674536, - -21.356079055465965, - -21.320517186825967, - -21.017041864012672, - -20.324022565134435, - -19.17878414433846, - -17.65120236135128, - -15.936271425897031, - -14.581375700477912, - -13.909509808997893, - -14.321885584517283, - -16.05935463080815, - -18.97958981140294, - -22.549333864760186, - -26.252662183721423, - -29.44499775190198, - -31.087858051865492, - -31.131716548497305, - -29.294593853953845, - -25.733753812124764, - -20.91107973470246, - -15.902900584066279, - -10.784501119362758, - -6.184176596131629, - -2.793088668262793, - 0.05417173118306209, - 2.024738311583276, - 3.4999273748364863, - 4.94090396895592, - 6.045932756492972, - 7.09015132190983, - 7.8396227227761806, - 7.970025482658038, - 7.501953327582635, - 6.319457799869377, - 4.546479821536295, - 2.4844938045548637, - 0.5612960373695183, - -1.1281415846725895, - -2.133133201935278, - -2.511171914170627, - -2.510794301512545, - -2.23033916122541, - -2.0161240559842724, - -2.109518957463338, - -2.5540155426430764, - -3.2961643875477433, - -4.057886575769311, - -4.647492739133562, - -4.831320911240312, - -4.440540053692944, - -3.587901563803114, - -2.487099329047979, - -1.3798080301654154, - -0.4931667546759751, - -0.10617731987554552, - -0.0869449449422988, - -0.3107695838868415, - -0.554911039590527, - -0.5207394800286295, - -0.05239829246055084, - 0.8366097078479156, - 1.9793461749190158, - 3.0180972893999782, - 3.757353330342585, - 3.89219315329325, - 3.504547832015385, - 2.963716204466975, - 2.7954303554290045, - 3.6717969325172866, - 6.21190498727982, - 10.755446208854906, - 17.550866923284765, - 25.4267053485923, - 34.250400564471235, - 43.0113021593685, - 49.44359972170192 - ], - "pressure:branch69_seg0:RESISTANCE_32": [ - 185098.83094377772, - 202254.88799145893, - 208027.30216408908, - 201617.38055370472, - 186607.7401260512, - 165043.5132130272, - 139369.9617947453, - 113390.6799352367, - 90580.29811528874, - 68672.72763757544, - 50941.454092883665, - 35269.31955886251, - 19344.648029439635, - 4757.689753678759, - -11277.434624791716, - -26678.94957283285, - -40967.6714127211, - -54837.59911268357, - -64458.82257975077, - -71642.81217669346, - -76413.51388553859, - -78337.03278470924, - -79466.09453751698, - -79869.82204130973, - -79949.38250773736, - -79816.25182250336, - -78680.15073379836, - -76085.73886318723, - -71798.38328967371, - -66079.67341027138, - -59659.59653301131, - -54587.360364173146, - -52072.13914719936, - -53615.923871355844, - -60120.37522764263, - -71052.67224993749, - -84416.49395312843, - -98280.40649791063, - -110231.34827755918, - -116381.6189422899, - -116545.80918125706, - -109668.29085786686, - -96337.80253116504, - -78283.46711104501, - -59534.66825421641, - -40373.24468165106, - -23151.305016964347, - -10456.30678445139, - 202.79923323976658, - 7579.882867562867, - 13102.453484714417, - 18496.94507695301, - 22633.770427124076, - 26542.94445159441, - 29348.69243327327, - 29836.8728760787, - 28084.581190411638, - 23657.748576928912, - 17020.36471075137, - 9301.039999083298, - 2101.2879506185986, - -4223.351245403947, - -7985.673861692188, - -9400.913125825273, - -9399.499481552511, - -8349.577572719802, - -7547.634231747339, - -7897.270730245753, - -9561.304067993806, - -12339.63906688942, - -15191.24953492533, - -17398.520287261068, - -18086.706016923155, - -16623.764801185796, - -13431.796809685018, - -9310.794133900456, - -5165.498765219916, - -1846.236727598974, - -397.4892178626748, - -325.4902101760627, - -1163.4081457273826, - -2077.384844228956, - -1949.4589698592633, - -196.16012451543574, - 3131.9620689128883, - 7409.951238840938, - 11298.657118149471, - 14066.16251251145, - 14570.95370355421, - 13119.750793706824, - 11095.074140712319, - 10465.073208405423, - 13745.870517061107, - 23255.110015272963, - 40264.47367795258, - 65704.05407039715, - 95188.32490488196, - 128221.026371936, - 161018.65139026797, - 185098.83094377772 - ], - "flow:branch71_seg0:RESISTANCE_33": [ - 31.787188292785792, - 35.255793357631795, - 36.7399485229442, - 36.19835099612952, - 33.97488264684498, - 30.43773988458237, - 26.07509022179203, - 21.563448146244895, - 17.36578036856156, - 13.458556646910566, - 10.221221056601545, - 7.314820110951159, - 4.536391045670723, - 1.9005327132312677, - -0.9229244341493449, - -3.6725719799731835, - -6.3471390825744916, - -8.848059242424094, - -10.74845531967687, - -12.22272062422529, - -13.18741476586863, - -13.68382575356022, - -13.965480824708136, - -14.088645946857485, - -14.157869195676104, - -14.179750481597434, - -14.054061926631856, - -13.693866195445816, - -13.036426179904883, - -12.098441659485552, - -11.005546735508274, - -10.053040168341035, - -9.47965455402162, - -9.581050982148806, - -10.518386808861573, - -12.25927795171141, - -14.528714164478387, - -17.00698807392479, - -19.20435011653044, - -20.559153169168145, - -20.88277149667797, - -19.95434710267104, - -17.864030396908138, - -14.892301584739515, - -11.59892965435202, - -8.167818233594954, - -5.08184345962406, - -2.632964114489934, - -0.638339285899742, - 0.7695363229349338, - 1.8579348724260032, - 2.8175721992842697, - 3.6090816190293102, - 4.359846373180962, - 4.921257839417398, - 5.146066450547473, - 4.972813003485863, - 4.324931257874789, - 3.2650116962531914, - 1.9688658270037906, - 0.6694428772660169, - -0.48466299892606923, - -1.2370445181077512, - -1.600823021284613, - -1.6506941736953493, - -1.490743232435866, - -1.3367651552498003, - -1.347284636961001, - -1.5867991436772348, - -2.0376290752021675, - -2.551641889585507, - -2.992673738401017, - -3.185862632582731, - -3.0263619988643073, - -2.5441834930794283, - -1.8530523154635474, - -1.1093130337152577, - -0.4891349238137572, - -0.15254414444593448, - -0.07341560683499349, - -0.19428557954041076, - -0.3617729041800026, - -0.3882504814177716, - -0.15197675824834186, - 0.3723867892423216, - 1.093804401305262, - 1.8157515149035743, - 2.3686062441821942, - 2.5549614060472887, - 2.392392981166177, - 2.0540220048933233, - 1.8640614258932455, - 2.258041357201619, - 3.6570509717681294, - 6.350286944982587, - 10.473512438690879, - 15.521328593753971, - 21.333830100308873, - 27.10579732502332, - 31.787188292785792 - ], - "pressure:branch71_seg0:RESISTANCE_33": [ - 169948.61148837523, - 188493.33488896495, - 196428.29620906967, - 193532.67213499284, - 181645.00987406386, - 162733.85310405944, - 139409.165001029, - 115287.89641919249, - 92845.27570872732, - 71955.49960923141, - 54647.24688088866, - 39108.31966932394, - 24253.587712102286, - 10161.103043365547, - -4934.369301488526, - -19635.22230524714, - -33934.66147656424, - -47305.7059582108, - -57466.078484159334, - -65348.164158607266, - -70505.85311093321, - -73159.88961484186, - -74665.74435794052, - -75324.24051999302, - -75694.3391556715, - -75811.32635584289, - -75139.33878652834, - -73213.57033493572, - -69698.60019196347, - -64683.71289288919, - -58840.60487332888, - -53748.076178036965, - -50682.498684889404, - -51224.60961371494, - -56236.02870434798, - -65543.61608057407, - -77677.04322326064, - -90927.01066041875, - -102675.09685912306, - -109918.48358195183, - -111648.6927752266, - -106684.91821359663, - -95509.14455147569, - -79620.94517076293, - -62013.096954406516, - -43668.83144565334, - -27169.821747348113, - -14077.010877298957, - -3412.8490477960495, - 4114.287440840184, - 9933.355819214627, - 15064.008764350352, - 19295.774267694076, - 23309.70045541515, - 26311.25876506455, - 27513.186754424132, - 26586.89586979066, - 23123.02853868146, - 17456.221643785306, - 10526.4426165721, - 3579.142842526255, - -2591.2264698809417, - -6613.7966109282, - -8558.720173676977, - -8825.353794349801, - -7970.184091294601, - -7146.948007108382, - -7203.189889655649, - -8483.742213843363, - -10894.081881964645, - -13642.225671436512, - -16000.180380671785, - -17033.055135707662, - -16180.292979385447, - -13602.349727755134, - -9907.25147275407, - -5930.886621660058, - -2615.1353925033663, - -815.5696345478369, - -392.512868023463, - -1038.7381284242217, - -1934.200728080256, - -2075.761769769126, - -812.5361326372748, - 1990.9473334172944, - 5847.970494575371, - 9707.824609191795, - 12663.634752897757, - 13659.973300081734, - 12790.809351829463, - 10981.725860208786, - 9966.111130737032, - 12072.505117630586, - 19552.24001159187, - 33951.491365392234, - 55996.1101298711, - 82984.00659620248, - 114060.25502731472, - 144919.7889490147, - 169948.61148837523 - ], - "flow:branch74_seg0:RESISTANCE_34": [ - 26.778360388694935, - 30.22852860395842, - 32.067990417734, - 32.18213305764065, - 30.74808871024887, - 28.017544062107195, - 24.3920342788105, - 20.4955428131213, - 16.65681005888441, - 13.030839190430948, - 9.969404399676147, - 7.202877671606431, - 4.641472880881558, - 2.23773948139597, - -0.2771122803885949, - -2.702698732128016, - -5.089198649409232, - -7.3581159442579125, - -9.150575277802906, - -10.582009197649883, - -11.567995305073481, - -12.125182316281675, - -12.446775707668676, - -12.589004741109619, - -12.652344164313183, - -12.664805737501624, - -12.563283422598799, - -12.28033518964516, - -11.757303172119896, - -10.985760652135216, - -10.054513021488878, - -9.178909264652736, - -8.561277466237017, - -8.468820990226353, - -9.062683449841671, - -10.366286709505593, - -12.187585664954451, - -14.309501708232945, - -16.30572355997685, - -17.709431862111384, - -18.302716422497735, - -17.83823350350143, - -16.3373465297164, - -13.984394624054579, - -11.210406688571096, - -8.210250020965836, - -5.389649134597154, - -3.037648412527414, - -1.0822002291606931, - 0.3529829720321707, - 1.4536521069235664, - 2.3763225800988375, - 3.1310589730158696, - 3.8195783353334196, - 4.347512832876648, - 4.617821650873559, - 4.5593948318894295, - 4.09815193435075, - 3.2600627736357404, - 2.183458300512419, - 1.0295533370903283, - -0.051294638231990916, - -0.8206680602862961, - -1.2751701244141216, - -1.4365504699810536, - -1.3741614367846788, - -1.2625914227793091, - -1.2433684529200584, - -1.394838180758756, - -1.7287442279341272, - -2.1474565227438953, - -2.541532641454126, - -2.765486959910519, - -2.7125521467243727, - -2.3802010190468805, - -1.8375159498520184, - -1.2043433727688537, - -0.6321294458510561, - -0.26024356353325473, - -0.10562915202237302, - -0.14355255840717174, - -0.2609377655445333, - -0.30452490311912084, - -0.15852698549711142, - 0.22689405371450522, - 0.7976287950365804, - 1.4202536876523826, - 1.9478216431655178, - 2.195697813270755, - 2.1521234813896326, - 1.9188389933486802, - 1.7343138610194582, - 1.950433938152723, - 2.934034271928764, - 4.972141678863073, - 8.230093618632083, - 12.395943968616686, - 17.31151108720753, - 22.387984301753697, - 26.778360388694935 - ], - "pressure:branch74_seg0:RESISTANCE_34": [ - 162989.50295928452, - 183989.33993096912, - 195185.43119227374, - 195880.17321063438, - 187151.700966245, - 170531.93379048244, - 148464.86063976362, - 124748.4269948705, - 101383.54824483019, - 79313.66864743165, - 60679.901394913584, - 43841.12524183984, - 28250.84683576238, - 13620.253089843143, - -1686.6750685561206, - -16450.279875391407, - -30975.980093173006, - -44786.000451977525, - -55696.00582977116, - -64408.58941324608, - -70409.90477539465, - -73801.2862003244, - -75758.70055490587, - -76624.39356711843, - -77009.91609186777, - -77085.76485895083, - -76467.83786846464, - -74745.64161809908, - -71562.14840451645, - -66866.06806132353, - -61197.92459593431, - -55868.463828188615, - -52109.178406140905, - -51546.43166393446, - -55161.04233142269, - -63095.57022128217, - -74181.1112021316, - -87096.39190622278, - -99246.62077346607, - -107790.44926572521, - -111401.54248454284, - -108574.41494568472, - -99439.0975362384, - -85117.59106518445, - -68233.40143382824, - -49972.61037137844, - -32804.70577069942, - -18488.98878558473, - -6586.933437783125, - 2148.4705683808747, - 8847.817078570182, - 14463.75471011823, - 19057.542670292394, - 23248.29322458581, - 26461.62593430501, - 28106.890963653543, - 27751.269557135733, - 24943.862773368295, - 19842.73881515428, - 13289.86457599071, - 6266.492206642808, - -312.21058603135197, - -4995.088470654933, - -7761.466413549703, - -8743.726041456528, - -8363.988172401758, - -7684.904730997652, - -7567.901962445746, - -8489.839500647111, - -10522.196219811665, - -13070.735705552574, - -15469.324333997696, - -16832.44748720636, - -16510.253791803985, - -14487.36126508144, - -11184.247541631923, - -7330.37142194857, - -3847.5269840913306, - -1584.0017257571542, - -642.9237166207973, - -873.7487958087775, - -1588.2270643922366, - -1853.525080611211, - -964.8923308517379, - 1381.0161825656407, - 4854.85739089299, - 8644.53384249191, - 11855.635552910466, - 13364.361747288813, - 13099.14167436466, - 11679.229394374242, - 10556.096418147941, - 11871.535580222342, - 17858.32966267117, - 30263.499673531835, - 50093.3906608963, - 75449.30745681051, - 105368.45970484542, - 136266.98500717367, - 162989.50295928452 - ], - "flow:branch75_seg2:RESISTANCE_35": [ - 34.13297794453439, - 37.159767797183264, - 38.056498055376046, - 36.741850905927386, - 33.87377238021134, - 29.853426542345105, - 25.14689694610457, - 20.43344919141865, - 16.33559338456892, - 12.442507794914034, - 9.307215433724844, - 6.50839034716531, - 3.656999420797474, - 1.007473949101965, - -1.9274516639468129, - -4.749329716342858, - -7.399253848262398, - -9.925532415448721, - -11.669328460331778, - -12.978685824178285, - -13.82650796063999, - -14.168970013107106, - -14.37992173815487, - -14.467995390627761, - -14.511584666535889, - -14.516683369134912, - -14.33143203283729, - -13.870547239681311, - -13.088703984924939, - -12.041477221742147, - -10.87107587199482, - -9.962824025108791, - -9.540620507625345, - -9.882599338825855, - -11.140484593988136, - -13.20480605519961, - -15.696708201957167, - -18.253209156066397, - -20.40301594245011, - -21.46237343867769, - -21.39708916021048, - -20.028939215498344, - -17.49201270748168, - -14.131932196118134, - -10.682462295085351, - -7.186531024508718, - -4.104248015828403, - -1.8586936170269888, - 0.012171572236064233, - 1.2872410947551909, - 2.2591129819095355, - 3.2268537322002926, - 3.9789570699297374, - 4.706318662519294, - 5.228658153513246, - 5.321575334817872, - 4.994498487306971, - 4.172255697460776, - 2.950189825298766, - 1.5398992311642075, - 0.23768687621994003, - -0.8807268643284318, - -1.5205915800094516, - -1.7359355714472304, - -1.6901780367839698, - -1.4698214936905993, - -1.3177992261505789, - -1.3934433335634717, - -1.7215118463427768, - -2.254464617911968, - -2.7926385694929783, - -3.201072600970804, - -3.3130526515571637, - -3.0215361039342152, - -2.413312090347408, - -1.6416882889014488, - -0.8803285414186596, - -0.2870910051487252, - -0.049921794527483895, - -0.06667801078632501, - -0.24560856015816623, - -0.42374554972183187, - -0.39448494695461417, - -0.05454097795713554, - 0.5796561893672436, - 1.3830319954482992, - 2.1034234595102124, - 2.597822100083379, - 2.664123221061401, - 2.37108208164705, - 1.978954720543098, - 1.8643380255298658, - 2.4995866100165856, - 4.306235329948305, - 7.516617314028112, - 12.263434154729872, - 17.731268547946588, - 23.835115803276068, - 29.811371058184072, - 34.13297794453439 - ], - "pressure:branch75_seg2:RESISTANCE_35": [ - 182488.3071424306, - 198670.71458380183, - 203464.98676968523, - 196436.36673008115, - 181102.4923825207, - 159608.1443865272, - 134445.1884929786, - 109245.24540701174, - 87336.49867177867, - 66522.53394913144, - 49760.02947853905, - 34796.41121869011, - 19551.75533194179, - 5386.35145637516, - -10304.913676855169, - -25391.78214702893, - -39559.31741674121, - -53065.79493080748, - -62388.81353028326, - -69389.15229829015, - -73921.94245484329, - -75752.8791025897, - -76880.7098841647, - -77351.58622463237, - -77584.63161501591, - -77611.89128182156, - -76621.46487333004, - -74157.3937387389, - -69977.35259955208, - -64378.466984644474, - -58121.041648369566, - -53265.17052378209, - -51007.90468250825, - -52836.257839556936, - -59561.406496870666, - -70598.07987083099, - -83920.76753861364, - -97588.82580418217, - -109082.53730419026, - -114746.27858276683, - -114397.24318714636, - -107082.57618876245, - -93519.17060062209, - -75554.86038492876, - -57112.63938091689, - -38422.017645815344, - -21942.921995211986, - -9937.306150635557, - 65.07400603112875, - 6882.096506426129, - 12078.105355532694, - 17252.0275243005, - 21273.06738556015, - 25161.828159018216, - 27954.460246966108, - 28451.23199504746, - 26702.5506961381, - 22306.5177738705, - 15772.873607525766, - 8232.906144952789, - 1270.767401011756, - -4708.711756334331, - -8129.679858049659, - -9280.993420981633, - -9036.35566762539, - -7858.243034669146, - -7045.472279757683, - -7449.8953901441255, - -9203.878521095288, - -12053.25337577394, - -14930.542709621703, - -17114.191470209003, - -17712.880805152163, - -16154.31883712916, - -12902.51435692119, - -8777.110429215449, - -4706.582165601987, - -1534.901279651324, - -266.9015222624275, - -356.4868360386125, - -1313.1198348935095, - -2265.5101513128993, - -2109.0714756833795, - -291.59749124195343, - 3099.069670809642, - 7394.2322871230235, - 11245.728015688648, - 13888.977342433562, - 14243.449177520171, - 12676.73614293464, - 10580.269247243552, - 9967.483375550773, - 13363.771826737677, - 23022.825514847562, - 40186.788603779234, - 65565.13593059148, - 94798.32630075779, - 127431.89125050025, - 159383.29924928202, - 182488.3071424306 - ], - "flow:branch77_seg2:RESISTANCE_36": [ - 36.781679838051865, - 41.562153300862704, - 44.1158121264252, - 44.30592669388954, - 42.359750617240444, - 38.62992896039888, - 33.67126895956621, - 28.320306117850183, - 23.056443977119738, - 18.078017980017115, - 13.854007319105573, - 10.044884335218175, - 6.524051019942081, - 3.223539526356759, - -0.2077571431761621, - -3.52506258962801, - -6.790054071909128, - -9.875898275711371, - -12.34242403130872, - -14.3249117552703, - -15.698789916206197, - -16.49986792152977, - -16.97497425572962, - -17.201097954924627, - -17.31665451845953, - -17.35582185443035, - -17.237767764636793, - -16.87303902471862, - -16.18042459586976, - -15.14865303122274, - -13.89428263146981, - -12.70788519825022, - -11.862309507711826, - -11.722303742982858, - -12.512348615996466, - -14.269123351465012, - -16.74985459929228, - -19.655060524393033, - -22.410911743879794, - -24.391283121610883, - -25.277999492703795, - -24.72830255161818, - -22.751884160104247, - -19.594134817941644, - -15.814878108494929, - -11.686233555671249, - -7.787106046803983, - -4.49293006340255, - -1.7370437509858643, - 0.30243578705555496, - 1.8827414701540328, - 3.19908163227734, - 4.27324290334666, - 5.252416885228022, - 6.002465192397772, - 6.396108226166137, - 6.337659223349265, - 5.723275935163913, - 4.58852799021269, - 3.115137760150829, - 1.5269138168206287, - 0.03188415960848464, - -1.0534459773201794, - -1.7080288677975473, - -1.9565091600574163, - -1.8945970864782389, - -1.756032990593942, - -1.734271151515059, - -1.940420122595985, - -2.393719670271097, - -2.9667187098418344, - -3.5124207355364683, - -3.827728232996466, - -3.769183576474417, - -3.3276322159833915, - -2.5926493017098946, - -1.7256343674202648, - -0.9343467514180923, - -0.4112323695709544, - -0.18084863224760767, - -0.2169246032226091, - -0.3668049613118124, - -0.4225227124888152, - -0.22472648747849908, - 0.2981805872470436, - 1.0779324527977225, - 1.9344356820577993, - 2.6655747262965077, - 3.0238516810961484, - 2.983306372683226, - 2.6779466182719016, - 2.430415693810661, - 2.720889832149712, - 4.053182481434827, - 6.829631009500788, - 11.272817706457243, - 16.98072908246923, - 23.75108628468589, - 30.72382970394533, - 36.781679838051865 - ], - "pressure:branch77_seg2:RESISTANCE_36": [ - 162073.10069863702, - 183137.5588837039, - 194389.8835683723, - 195227.5956460326, - 186652.05497913674, - 170217.14054241564, - 148367.52939948268, - 124789.29307916222, - 101594.85327775401, - 79658.14615884119, - 61045.660045850746, - 44261.31589247945, - 28747.27806270984, - 14204.056164961461, - -915.451511050425, - -15532.673509575441, - -29919.381664751814, - -43516.70349958896, - -54385.089036143356, - -63120.631674067685, - -69174.42515237562, - -72704.25839534122, - -74797.74507360403, - -75794.12613155106, - -76303.30925316931, - -76475.89439921723, - -75955.7062928774, - -74348.58236453196, - -71296.67803154736, - -66750.32730935964, - -61223.1273280758, - -55995.440297210036, - -52269.53450268919, - -51652.61954651102, - -55133.836903197574, - -62874.80821989743, - -73805.78818344361, - -86607.15382313995, - -98750.40976394975, - -107476.62703126216, - -111383.8132265701, - -108961.65393209113, - -100252.85492125664, - -86338.6935951077, - -69685.95081845873, - -51493.68153372503, - -34312.74558507269, - -19797.440187721997, - -7654.029615041365, - 1332.6391286691198, - 8296.02533721524, - 14096.28602647043, - 18829.42079951754, - 23144.00795447399, - 26448.986284772385, - 28183.516826394964, - 27925.969831232756, - 25218.779594896936, - 20218.678491319723, - 13726.399612906376, - 6728.122747011579, - 140.4928930288949, - -4641.855856354527, - -7526.179769538208, - -8621.071889918792, - -8348.265379181033, - -7737.702926232087, - -7641.8125603781245, - -8550.177895950532, - -10547.576154006738, - -13072.412742477421, - -15476.969025694629, - -16866.325466507915, - -16608.35698726425, - -14662.725400352327, - -11424.130523738602, - -7603.755832559777, - -4117.062510379673, - -1812.0353811309562, - -796.8830873019213, - -955.8465849554374, - -1616.272494708377, - -1861.7846283847596, - -990.2244485611329, - 1313.8892121325202, - 4749.751934598938, - 8523.808332669352, - 11745.465757329002, - 13324.160836748464, - 13145.503856366879, - 11799.980692554806, - 10709.2718227358, - 11989.20369318559, - 17859.756687458204, - 30093.771660536953, - 49672.02496841686, - 74823.10287721068, - 104655.69316215682, - 135380.0687565057, - 162073.10069863702 - ], - "flow:branch78_seg0:RESISTANCE_37": [ - 41.83507121881083, - 46.0079318203896, - 47.59344018006406, - 46.44700186908548, - 43.25895750010621, - 38.47980971231656, - 32.68085950006485, - 26.781945372026264, - 21.442305596011213, - 16.354384312380237, - 12.228775518771029, - 8.534677533824151, - 4.884567405930461, - 1.5100797926411749, - -2.174449264593217, - -5.692173909310512, - -9.025193236011166, - -12.23829451694308, - -14.522275488975808, - -16.261709571744788, - -17.417666737119216, - -17.925818431812253, - -18.221810395460718, - -18.33038727172596, - -18.360556942125456, - -18.340076522041244, - -18.10357074684674, - -17.547686934646766, - -16.60908377073883, - -15.331440321794735, - -13.876111671028244, - -12.682314996334888, - -12.028654688884348, - -12.281297040400672, - -13.646966014185084, - -16.041100906708795, - -19.02921305456422, - -22.218567589638777, - -25.004339379664223, - -26.556042961440248, - -26.76866604361055, - -25.366026017794454, - -22.466892485527218, - -18.451977987940523, - -14.184699484388917, - -9.777112978002398, - -5.787276102674836, - -2.7670042386062317, - -0.2414070538054925, - 1.521203292557618, - 2.847584358931472, - 4.099047793952802, - 5.0749967708915, - 5.99479861894484, - 6.6619158896700785, - 6.835306053635394, - 6.498635042562908, - 5.550321291709578, - 4.08118682486816, - 2.3492005195016286, - 0.6782057858372356, - -0.8077872714679449, - -1.7191984748302158, - -2.114711968471299, - -2.1567849318865555, - -1.9376678756801737, - -1.7519492556029774, - -1.8059573101454827, - -2.154957607395561, - -2.764903959007943, - -3.4155506256584816, - -3.9406626617141365, - -4.135868195796304, - -3.85211337693056, - -3.1676426446395123, - -2.2469854274134557, - -1.2955390406108156, - -0.5150870904454682, - -0.13781031707825916, - -0.0795508345816198, - -0.24964395006008855, - -0.4576781557336047, - -0.4520488759285903, - -0.09116631339043056, - 0.6341864627652256, - 1.5879050558320311, - 2.4921193690507244, - 3.1620236505472907, - 3.326657757217283, - 3.04585478703523, - 2.598345579067104, - 2.4161865297715552, - 3.0694377577146654, - 5.090989392050875, - 8.810576333176522, - 14.434991671430126, - 21.0825274978024, - 28.592516640150336, - 36.112764934285785, - 41.83507121881083 - ], - "pressure:branch78_seg0:RESISTANCE_37": [ - 181707.2732828007, - 199831.7583048639, - 206718.28657910816, - 201738.823812443, - 187891.80903476608, - 167133.96429267467, - 141946.6895905568, - 116325.2296454045, - 93132.93294922836, - 71033.95531654543, - 53114.70472898288, - 37069.68669679829, - 21215.726390314307, - 6558.910348816196, - -9444.545814077115, - -24723.5004023942, - -39200.20227020442, - -53156.049733357395, - -63076.337725392776, - -70631.43002061307, - -75652.23716716091, - -77859.35325820137, - -79144.97058981737, - -79616.5655352235, - -79747.60507655413, - -79658.65001610536, - -78631.40616844031, - -76216.96945698647, - -72140.22196643126, - -66590.88021627846, - -60269.77705673352, - -55084.61703924117, - -52245.49597024752, - -53342.827741713365, - -59274.501292247354, - -69673.2339946814, - -82651.85922063624, - -96504.56459955948, - -108604.34072533876, - -115344.0406606616, - -116267.5519485042, - -110175.29760153977, - -97583.14384911138, - -80144.68504969169, - -61610.10345036409, - -42466.10530477294, - -25136.569144382585, - -12018.260772865884, - -1048.532157835452, - 6607.224377693105, - 12368.254056457446, - 17803.88501789218, - 22042.841049186045, - 26037.926533712267, - 28935.4968423475, - 29688.60309961852, - 28226.29959126677, - 24107.374945893727, - 17726.30733256917, - 10203.56386058303, - 2945.7323838326283, - -3508.559163750908, - -7467.200556668963, - -9185.081664127882, - -9367.82220306896, - -8416.104860343441, - -7609.450943692726, - -7844.0305927831305, - -9359.885365841616, - -12009.138377041258, - -14835.169939155036, - -17115.95191131149, - -17963.811477325024, - -16731.345201667464, - -13758.401525868754, - -9759.600814014277, - -5627.069815886227, - -2237.239425708273, - -598.5680486958046, - -345.5226635960431, - -1084.3084554513714, - -1987.8883266265282, - -1963.4380017161322, - -395.9735632996164, - 2754.5379879749466, - 6896.938131601353, - 10824.320409949636, - 13733.99587612754, - 14449.07090147784, - 13229.425743600501, - 11285.705425222051, - 10494.512218494561, - 13331.856483487618, - 22112.303715291415, - 38268.03098237856, - 62697.227471103586, - 91570.26566296203, - 124189.3005942548, - 156852.89532772367, - 181707.2732828007 - ], - "flow:branch79_seg0:RESISTANCE_38": [ - 48.46971742691641, - 53.0551481101934, - 54.56924355976741, - 52.993460402467335, - 49.08205107813794, - 43.42183266666793, - 36.721082700739764, - 29.9855227025004, - 23.974087630599563, - 18.356478469824435, - 13.787089914863943, - 9.700469004734085, - 5.649133750373776, - 1.8388901315391846, - -2.3234290169779386, - -6.359214907693434, - -10.18928032445561, - -13.807633840822598, - -16.403505134158802, - -18.376925825613224, - -19.645933813028037, - -20.217407718111183, - -20.555250101804898, - -20.699047268068224, - -20.7825325476887, - -20.803989920850693, - -20.57600872490269, - -19.968543753618235, - -18.90698820582882, - -17.444702551962397, - -15.792283671515658, - -14.448925084724678, - -13.75854854266333, - -14.139739527028258, - -15.813200656787672, - -18.65645249119647, - -22.188044931038046, - -25.882787826214233, - -29.04638376680707, - -30.759413061963127, - -30.876421045034455, - -29.107963799238632, - -25.650103043156818, - -20.955590924479544, - -15.994471706352748, - -10.922146826877157, - -6.439925108418115, - -3.0533778157722407, - -0.2715621408796854, - 1.6379565824326756, - 3.11684007200641, - 4.502123661229706, - 5.619566492463733, - 6.694082501977925, - 7.46891515191379, - 7.676369348419496, - 7.275668496278189, - 6.160060660448911, - 4.454844286333255, - 2.4521590679650673, - 0.5448134521625654, - -1.1025654807788918, - -2.09242528184492, - -2.48008872599206, - -2.452278105586253, - -2.1538351912382607, - -1.9261661654106241, - -1.9992665412763997, - -2.4310795044480478, - -3.1684388153397838, - -3.946163443835045, - -4.5646242621115665, - -4.769502953741095, - -4.4143160501712035, - -3.5888830170876376, - -2.5003961263964043, - -1.3899813154612632, - -0.5117981349337712, - -0.11080286351404593, - -0.08778041079780141, - -0.326562843494661, - -0.5867765021775718, - -0.5771784714595217, - -0.13616697611132308, - 0.7350986743169763, - 1.869197329920771, - 2.9285135382892244, - 3.68149036159902, - 3.839244411800371, - 3.4758986077561644, - 2.921908407136546, - 2.705116987183717, - 3.4963442036661947, - 5.919214975214872, - 10.328116948251855, - 16.924858876843196, - 24.68610019762336, - 33.451776670307794, - 41.994310207598865, - 48.46971742691641 - ], - "pressure:branch79_seg0:RESISTANCE_38": [ - 179958.70403328087, - 196983.52297185076, - 202605.06708955864, - 196754.48842148628, - 182232.1806731204, - 161216.8823807635, - 136338.29129472774, - 111330.45727859552, - 89011.15932619908, - 68154.06095620504, - 51188.80334324861, - 36015.96880028795, - 20974.14308553891, - 6827.444072289001, - -8626.443416730273, - -23610.53734598056, - -37830.83086848812, - -51265.07897445489, - -60903.047970053376, - -68229.9780410232, - -72941.5597243198, - -75063.3320144556, - -76317.6755667702, - -76851.56668597774, - -77161.53141290466, - -77241.19849724548, - -76394.7483270229, - -74139.34815591466, - -70197.99733357296, - -64768.812985770375, - -58633.70067170173, - -53646.06956584155, - -51082.83473800679, - -52498.123276434606, - -58711.361400133406, - -69267.80658947812, - -82379.92756698973, - -96097.79468999723, - -107843.6157051978, - -114203.76278862788, - -114638.1908421191, - -108072.25047798373, - -95233.88100883193, - -77804.06375810136, - -59384.38581393125, - -40551.8227167253, - -23910.19874068319, - -11336.60239465647, - -1008.257805728871, - 6081.416593397799, - 11572.225501066447, - 16715.51604760475, - 20864.365564695054, - 24853.836079491302, - 27730.64013215268, - 28500.877516055683, - 27013.1526048233, - 22871.116071439872, - 16539.976855598972, - 9104.39324553168, - 2022.7871750828606, - -4093.612786827605, - -7768.771142004002, - -9208.090674140713, - -9104.835209240322, - -7996.774280785981, - -7151.483137954611, - -7422.890721977952, - -9026.12889546818, - -11763.801674251241, - -14651.343085028897, - -16947.568713330893, - -17708.243744814976, - -16389.50333844892, - -13324.829831243629, - -9283.488131628594, - -5160.73229719113, - -1900.207675610698, - -411.38964243417416, - -325.9117198385381, - -1212.4647970013282, - -2178.587879087069, - -2142.952243870518, - -505.5616961259876, - 2729.279471582368, - 6939.9688492552405, - 10873.005436621343, - 13668.663024151145, - 14254.37335912566, - 12905.340530324442, - 10848.481859733725, - 10043.577167661937, - 12981.25108104427, - 21976.902535903107, - 38346.304451105534, - 62838.733772592925, - 91654.72453802575, - 124199.98912261688, - 155916.7670644277, - 179958.70403328087 - ], - "flow:branch80_seg0:RESISTANCE_39": [ - 31.3828898069144, - 34.45806192190846, - 35.57973568690521, - 34.68680445847393, - 32.26735032077764, - 28.6808827938123, - 24.376599680358876, - 20.005949657284003, - 16.068890470892086, - 12.36177632780758, - 9.336880603203698, - 6.616409602303729, - 3.9280038772680212, - 1.4049162773052437, - -1.349327366418002, - -4.002491842588917, - -6.5377411375013175, - -8.938539553900412, - -10.664440004760085, - -11.988099962355976, - -12.853775274210578, - -13.252876335934362, - -13.493448776068917, - -13.599030087114903, - -13.65637403825556, - -13.672283177171149, - -13.523919900895661, - -13.130796038919284, - -12.443401932652488, - -11.497041168378285, - -10.420591922290773, - -9.539899104240058, - -9.07304666868187, - -9.292179077509894, - -10.344788685988453, - -12.160799546396827, - -14.422707371941875, - -16.813377563559815, - -18.87184273838731, - -20.00383703549633, - -20.114990766750662, - -19.01193203301659, - -16.80566393481665, - -13.790711929667774, - -10.595604402082813, - -7.31082705741296, - -4.381678449978443, - -2.161698932908627, - -0.32262072260078933, - 0.9542680275518559, - 1.9367221659312095, - 2.8631680814049925, - 3.6026881340685555, - 4.309315256954273, - 4.826515140802541, - 4.975849642666321, - 4.7352842828742, - 4.033769697524833, - 2.9466931914455414, - 1.6622558689070537, - 0.4283736422424809, - -0.6490475720679588, - -1.3034528823333345, - -1.5755572702946405, - -1.5781727760736988, - -1.3992765508100882, - -1.2586501614466683, - -1.3057174567171277, - -1.5803903119811236, - -2.0512053731786914, - -2.550081921144335, - -2.950331311115701, - -3.0916043628894165, - -2.872233651589537, - -2.351238507743973, - -1.656364228951807, - -0.9439588027541761, - -0.3708106910050592, - -0.10268725028020705, - -0.07587990204546673, - -0.21799323178149113, - -0.37964853529910575, - -0.37337014735682916, - -0.09411457721276839, - 0.46090529106333084, - 1.1864870636125684, - 1.8700475494652002, - 2.364358512958232, - 2.477928108669118, - 2.2578375532115116, - 1.91182555253442, - 1.7740491818715787, - 2.275714100540069, - 3.816030403112021, - 6.638026717943122, - 10.87425980347228, - 15.8754195927367, - 21.534117183200696, - 27.12400283872134, - 31.3828898069144 - ], - "pressure:branch80_seg0:RESISTANCE_39": [ - 177800.6968993346, - 195223.17610680644, - 201578.0522299822, - 196519.12376051903, - 182811.63428312627, - 162492.3956908678, - 138106.3515141621, - 113344.30363434838, - 91038.77755369058, - 70036.01196450737, - 52898.37514421352, - 37485.46566293372, - 22254.22295711849, - 7959.595012670727, - -7644.6543824015935, - -22676.23674316399, - -37039.76713255986, - -50641.56206531924, - -60419.702473344725, - -67918.93738658544, - -72823.44664890209, - -75084.56560079548, - -76447.53592551655, - -77045.70998784796, - -77370.5938509448, - -77460.727551306, - -76620.17099076173, - -74392.91604205636, - -70498.46425987073, - -65136.82916375931, - -59038.17389942428, - -54048.582508466694, - -51403.61613022637, - -52645.11731901681, - -58608.708406448306, - -68897.3720235947, - -81712.2781771843, - -95256.69135077248, - -106918.9871074479, - -113332.3345126852, - -113962.07928767604, - -107712.66717854653, - -95212.98955738956, - -78131.68917582327, - -60029.71231619839, - -41419.70843718068, - -24824.52976090529, - -12247.169687765801, - -1827.8173127295372, - 5406.433931717607, - 10972.55711381515, - 16221.364040910175, - 20411.136924911392, - 24414.553935585376, - 27344.765281648033, - 28190.824349690574, - 26827.89413886383, - 22853.44236187315, - 16694.578039531887, - 9417.560133407938, - 2426.9636286716163, - -3677.198350583436, - -7384.751126495347, - -8926.366640764054, - -8941.184866656027, - -7927.642974233347, - -7130.9199769218685, - -7397.581140113243, - -8953.748382385504, - -11621.165134209905, - -14447.565075094994, - -16715.189914877974, - -17515.576597334857, - -16272.725298798201, - -13321.011794181524, - -9384.18087176369, - -5348.026711580141, - -2100.839013999568, - -581.7776748664629, - -429.8998450223294, - -1235.0471473015075, - -2150.9100840704486, - -2115.3396901918436, - -533.2089402788721, - 2611.272653981598, - 6722.077796859537, - 10594.810088409722, - 13395.343574487482, - 14038.775501506945, - 12791.845904454593, - 10831.50460910136, - 10050.928477622816, - 12893.126015772574, - 21619.833904297386, - 37607.93807543682, - 61608.44279215678, - 89942.66253122617, - 122002.18226689598, - 153671.8459356695, - 177800.6968993346 - ], - "flow:branch81_seg0:RESISTANCE_40": [ - 37.57705288497806, - 42.589701230062985, - 45.35636832636398, - 45.717669433748995, - 43.87382432225614, - 40.158159483450234, - 35.13273123749732, - 29.668861047787406, - 24.226991253274626, - 19.063280944255435, - 14.666678492555201, - 10.682086783615793, - 7.006358748827731, - 3.553696799351915, - -0.03633047452846216, - -3.5026273971819406, - -6.923127252208374, - -10.165459634702463, - -12.76336302513949, - -14.856341258685607, - -16.309938840554395, - -17.160225143676378, - -17.661186144786186, - -17.894955306204768, - -18.008384733913868, - -18.0411515274192, - -17.91330473713241, - -17.532821741533674, - -16.815414959540995, - -15.744799548541986, - -14.441870191459559, - -13.198418384929465, - -12.298290887614144, - -12.12050335173626, - -12.897097565188352, - -14.672494783834553, - -17.19748454633928, - -20.173725503537273, - -23.00299901371381, - -25.043718961409926, - -25.96629507604832, - -25.410931705826503, - -23.39305112458095, - -20.158852930924414, - -16.284570778198727, - -12.053633533551842, - -8.053534971856651, - -4.670406968923227, - -1.8427234806488735, - 0.2519910095687615, - 1.8733884623620725, - 3.2200028898509867, - 4.32387344228858, - 5.328691680009719, - 6.102298780387048, - 6.519564635399685, - 6.476377569740944, - 5.8654161996522625, - 4.718878742283259, - 3.2234946861360165, - 1.5989139552699945, - 0.06350426855196506, - -1.0524185869331164, - -1.7331364384887011, - -1.995661714681468, - -1.9361765786564602, - -1.794031449583073, - -1.7673798502043832, - -1.9720812897477709, - -2.4309015644648855, - -3.015916139846637, - -3.576786784016514, - -3.9067967570157096, - -3.856771722753209, - -3.4144699743497373, - -2.6686717636199466, - -1.7830240647897182, - -0.9716790236796081, - -0.42878257811862636, - -0.18667307054476284, - -0.21980745529585713, - -0.3732501753542603, - -0.4348958463656154, - -0.2404349894972733, - 0.286732336524825, - 1.0780223985877382, - 1.9545473666278275, - 2.708803643312628, - 3.082958114113654, - 3.0511572294646436, - 2.742967131255575, - 2.4838411921296952, - 2.761650853901867, - 4.092557078354106, - 6.890933706051251, - 11.394050058140186, - 17.207869359906944, - 24.122530559128357, - 31.28728343993767, - 37.57705288497806 - ], - "pressure:branch81_seg0:RESISTANCE_40": [ - 162940.44077868186, - 184676.12966617258, - 196672.86494871558, - 198239.52750394805, - 190244.30403302555, - 174132.55443748878, - 152341.44974379282, - 128649.18681422867, - 105052.32130985157, - 82661.6022616971, - 63597.192298478374, - 46319.330424507294, - 30380.753548760647, - 15409.428851489878, - -157.53506671358016, - -15187.983307987086, - -30019.847737785843, - -44079.14794878701, - -55344.095331273355, - -64419.6020496467, - -70722.64639506453, - -74409.63125370455, - -76581.88266957496, - -77595.54519170924, - -78087.39432647283, - -78229.47667106058, - -77675.1114198759, - -76025.2729612428, - -72914.476123784, - -68272.10708259209, - -62622.385578448135, - -57230.56876771817, - -53327.46408256121, - -52556.54733319314, - -55923.9908587269, - -63622.412718712796, - -74571.19430952665, - -87476.67720926105, - -99744.88446443719, - -108593.79043908184, - -112594.23611615897, - -110186.0868498163, - -101436.21622123773, - -87412.18722531854, - -70612.6461969571, - -52266.58852021753, - -34921.486316597555, - -20251.672542324977, - -7990.359890362718, - 1092.6755298531043, - 8123.328424433002, - 13962.475763784472, - 18749.044708596353, - 23106.106106090607, - 26460.597005385443, - 28269.932147919168, - 28082.665745311348, - 25433.434171836438, - 20461.854329087142, - 13977.61678156226, - 6933.160656220798, - 275.3652219829658, - -4563.464542134639, - -7515.171987579627, - -8653.525874705887, - -8395.588289407835, - -7779.223029028951, - -7663.657197842909, - -8551.277174036273, - -10540.79929088301, - -13077.521185131827, - -15509.550920423606, - -16940.52983796794, - -16723.61284988757, - -14805.71784990907, - -11571.81098764967, - -7731.493151553195, - -4213.364174630097, - -1859.2735968614957, - -809.4459267247516, - -953.1222089714836, - -1618.4757298318905, - -1885.7817593245056, - -1042.5666772538586, - 1243.319784599787, - 4674.486988986837, - 8475.247125314136, - 11745.82958848031, - 13368.226495930534, - 13230.332495094379, - 11893.968235782273, - 10770.354447664387, - 11974.9840092296, - 17746.017930148028, - 29880.25109040813, - 49406.52329522905, - 74616.22461313554, - 104599.36211689527, - 135666.93934395723, - 162940.44077868186 - ], - "flow:branch82_seg0:RESISTANCE_41": [ - 20.68256572528684, - 24.535881594931933, - 27.480289568679712, - 29.25701757702667, - 29.743872498757415, - 28.984616508354932, - 27.184614251923556, - 24.70701937317247, - 21.8255750351734, - 18.807241232679857, - 15.90708441982196, - 13.116123289570744, - 10.467649304542997, - 7.918090659204053, - 5.363474667066831, - 2.852364697252928, - 0.3508679851621952, - -2.0619116191638103, - -4.240536909993729, - -6.166674898902831, - -7.753351713973362, - -8.998458925589304, - -9.960931771821455, - -10.685757635376198, - -11.245128810465483, - -11.674481645471957, - -11.968805921651033, - -12.09874799299609, - -12.023955895011888, - -11.720875382955153, - -11.221345327433408, - -10.62619152825992, - -10.074542669543153, - -9.760827097760577, - -9.84610241179319, - -10.433113688803413, - -11.50708445661809, - -12.980511733546482, - -14.612963723043285, - -16.117389270068266, - -17.23813060619231, - -17.71965156560015, - -17.442151226546407, - -16.4045047634991, - -14.751276815989732, - -12.630972355458079, - -10.323094803009736, - -8.041128541339537, - -5.908405667201191, - -4.0519967092768345, - -2.4418965061473776, - -1.0456004357135045, - 0.17323271899674997, - 1.266040732041491, - 2.200968495265086, - 2.936484282838419, - 3.4062613454520054, - 3.545479773457493, - 3.3363239492606676, - 2.826300171387561, - 2.0999461177972094, - 1.2801712391126074, - 0.5259702409577834, - -0.08778383498681794, - -0.5057109347545624, - -0.7358500606237875, - -0.8535012479345074, - -0.9476244315423031, - -1.097680833547459, - -1.3487182343168473, - -1.6845320978900578, - -2.0525211867618567, - -2.3587180728769845, - -2.5171625190770293, - -2.4787677239019743, - -2.2440157993210232, - -1.8624065042242448, - -1.4279599573007369, - -1.0397613764578868, - -0.7600614349672287, - -0.6163851331414365, - -0.5703946162406875, - -0.5423004602778915, - -0.44395990154483156, - -0.20766738491554046, - 0.17734125515796312, - 0.6647406134358561, - 1.1625532114185746, - 1.5473846034782055, - 1.7565097136447134, - 1.7908233553631099, - 1.7552543248873969, - 1.8569893922038851, - 2.361000896635253, - 3.5363108803913974, - 5.583094494807361, - 8.501459825686016, - 12.24157748978066, - 16.451758594037656, - 20.68256572528684 - ], - "pressure:branch82_seg0:RESISTANCE_41": [ - 104519.692166477, - 123992.48842710219, - 138872.10341860034, - 147850.8281552999, - 150311.157653337, - 146474.24479414927, - 137377.90325508968, - 124857.33605468221, - 110295.90885059544, - 95042.70844583985, - 80386.71743677108, - 66282.54863792924, - 52898.44101303452, - 40014.20371334669, - 27104.409026930098, - 14414.472752717455, - 1773.117237363239, - -10419.904888589064, - -21429.62427099774, - -31163.394845932813, - -39181.6926955182, - -45473.862835364365, - -50337.73547782364, - -54000.65511454004, - -56827.44671301697, - -58997.18845307189, - -60484.56111041348, - -61141.225543488596, - -60763.262424131855, - -59231.63998218613, - -56707.25648332435, - -53699.636794959246, - -50911.870051559345, - -49326.503157236824, - -49757.443384409366, - -52723.91470069734, - -58151.243956589235, - -65597.23336910972, - -73846.85682903804, - -81449.49651847653, - -87113.18162437044, - -89546.55585449998, - -88144.2032450968, - -82900.43947150023, - -74545.8243599188, - -63830.83026984754, - -52167.93241936843, - -40635.977710652725, - -29858.226959504966, - -20476.833210079094, - -12340.164876783123, - -5283.959307635888, - 875.4344457649728, - 6397.958035807234, - 11122.631140099393, - 14839.572486826586, - 17213.598737895067, - 17917.14139465716, - 16860.16893532926, - 14282.755234874303, - 10612.112864215893, - 6469.366789868688, - 2657.9994186326026, - -443.61707980892, - -2555.618675545551, - -3718.630601185023, - -4313.182846011712, - -4788.835930211075, - -5547.148470036775, - -6815.770177768452, - -8512.811159630708, - -10372.45018122851, - -11919.821271651641, - -12720.522933246937, - -12526.494193013381, - -11340.171411856718, - -9411.702450065613, - -7216.219551551613, - -5254.451523928605, - -3840.9831867840644, - -3114.9125900364197, - -2882.498742890503, - -2740.5244553721104, - -2243.5587953671225, - -1049.4506065005914, - 896.1970020407597, - 3359.277819284856, - 5874.982117719786, - 7819.734000457567, - 8876.551245917912, - 9049.955808829978, - 8870.207117815224, - 9384.326983776915, - 11931.35755973403, - 17870.80624003666, - 28214.261503358117, - 42962.26956310401, - 61863.01679678197, - 83139.23749526283, - 104519.692166477 - ], - "flow:branch83_seg2:RESISTANCE_42": [ - 29.897507977181295, - 35.057175134379776, - 38.843972734324716, - 40.95532723316114, - 41.30677083187082, - 39.9798912212256, - 37.26887217518152, - 33.72744326501946, - 29.697758172257284, - 25.494415554474884, - 21.524162473988973, - 17.671666412235652, - 13.970294476220745, - 10.38583387929842, - 6.7178291045650536, - 3.1182599182800175, - -0.46894234002942703, - -3.9411134628041298, - -6.992829207262614, - -9.660852056672917, - -11.820002801636253, - -13.460186253831136, - -14.712658575115872, - -15.634952648259485, - -16.33427889164508, - -16.85870425671913, - -17.181510451248656, - -17.253413244044946, - -17.018253364472386, - -16.452436876738595, - -15.623116865714595, - -14.710092073642592, - -13.922185735368151, - -13.55061963042944, - -13.811160072668825, - -14.8162071045174, - -16.48028648848581, - -18.65014782034227, - -20.9363943626532, - -22.88557056026472, - -24.181683678005207, - -24.477977926554164, - -23.668288306273492, - -21.814962038720743, - -19.219563049209476, - -16.083157545570128, - -12.815956556529716, - -9.73383542518897, - -6.914391733106582, - -4.5340006387084815, - -2.498687078947267, - -0.7232490924152036, - 0.8195432429936765, - 2.2125173012806085, - 3.387403750382351, - 4.270805881475802, - 4.774432656166482, - 4.80961102199374, - 4.368865032071877, - 3.5484231628258183, - 2.4815577227863406, - 1.3344961053387685, - 0.35295695124421206, - -0.4003115850087535, - -0.8768210327839863, - -1.100592631982496, - -1.2052085584144643, - -1.320917639206447, - -1.5466981468563974, - -1.9284996980910631, - -2.4144198822834864, - -2.917553408231232, - -3.2993731555443406, - -3.440330470246063, - -3.2955608069821865, - -2.890550065890849, - -2.3131155423854795, - -1.7048499263065997, - -1.2076399358551186, - -0.8840418452315724, - -0.7517932911881492, - -0.7348022141211239, - -0.7049880256583787, - -0.5405966652249714, - -0.16195156493963628, - 0.41964779795082185, - 1.1133954886372268, - 1.7836549653236948, - 2.2449299738763497, - 2.440960474304722, - 2.410337177457828, - 2.33665554874924, - 2.542171025647862, - 3.40859445994595, - 5.293152190071287, - 8.453501394297561, - 12.773065067350506, - 18.16819670159552, - 24.12017982036378, - 29.897507977181295 - ], - "pressure:branch83_seg2:RESISTANCE_42": [ - 117851.48677580939, - 138190.1198889183, - 153117.10736938278, - 161439.7497444153, - 162825.08763469686, - 157594.7274653345, - 146908.29749606134, - 132948.51654401663, - 117064.10304096849, - 100495.15765221289, - 84845.01621672712, - 69659.05526567117, - 55068.80292415179, - 40939.397524910084, - 26480.6735224525, - 12291.71233278932, - -1848.500283930756, - -15535.277438446275, - -27564.682630880005, - -38081.62804969823, - -46592.67604946677, - -53058.0329137769, - -57995.09072212449, - -61630.635458746714, - -64387.27449325552, - -66454.48053009706, - -67726.93407354061, - -68010.36408519352, - -67083.39915357705, - -64853.03552686514, - -61583.98058132527, - -57984.9739587333, - -54879.16549213184, - -53414.5077040666, - -54441.51900235371, - -58403.26347528383, - -64962.81451422856, - -73516.08203913111, - -82528.12258622368, - -90211.48245192574, - -95320.56572642578, - -96488.51316007983, - -93296.83826697807, - -85991.30443190395, - -75760.63136297141, - -63397.391857598755, - -50518.57619016169, - -38369.31752857279, - -27255.493886612057, - -17872.349652756882, - -9849.449240591035, - -2850.939312917072, - 3230.5163941278497, - 8721.410950775939, - 13352.636901950804, - 16834.875443363147, - 18820.096560210543, - 18958.76439561184, - 17221.409889597136, - 13987.351245727874, - 9781.927890898565, - 5260.383247683878, - 1391.3032987133333, - -1577.9681538296054, - -3456.2968401491307, - -4338.370880697247, - -4750.7511526540975, - -5206.858973252249, - -6096.851829238968, - -7601.856209558772, - -9517.280605638789, - -11500.557410010922, - -13005.633516540753, - -13561.266083717182, - -12990.60581100508, - -11394.114289563535, - -9117.954110502644, - -6720.262394384942, - -4760.335277407491, - -3484.760198479154, - -2963.456258034679, - -2896.479983764364, - -2778.9569300017743, - -2130.9508736115345, - -638.3887489345767, - 1654.1886015546027, - 4388.837819040807, - 7030.900024135812, - 8849.176838779616, - 9621.899633819428, - 9501.187196311039, - 9210.745280616477, - 10020.856428557956, - 13436.167496868977, - 20864.811067418574, - 33322.43304491197, - 50349.50438077649, - 71616.30310300736, - 95078.12675555631, - 117851.48677580939 - ], - "flow:branch84_seg0:RESISTANCE_43": [ - 41.896997711181996, - 47.58550559419169, - 50.79020407048045, - 51.30237572004833, - 49.32407055291832, - 45.223686352248485, - 39.627870497731564, - 33.50083847337667, - 27.373149170406734, - 21.556119163176525, - 16.583685444590795, - 12.088377598092984, - 7.954757864693446, - 4.076851874126022, - 0.06247931003236348, - -3.8207442599351102, - -7.6555263401737434, - -11.294132446245362, - -14.229826472625017, - -16.598242036433465, - -18.25220344469673, - -19.22806654822981, - -19.80074500963637, - -20.06818386574459, - -20.19509422068379, - -20.230392039974262, - -20.090135656476665, - -19.672229965344627, - -18.881096714726688, - -17.694780166538717, - -16.242739213775174, - -14.843338559713311, - -13.815641758401421, - -13.58192277465298, - -14.408379145626087, - -16.354922760377782, - -19.15623562300381, - -22.481427032140996, - -25.66812543619655, - -28.00104561935989, - -29.094477167278676, - -28.541129728524496, - -26.343830462698335, - -22.76681071223584, - -18.441898246317056, - -13.699548051542973, - -9.191556811745176, - -5.358558066299588, - -2.153954573464642, - 0.23028975636552318, - 2.070521362632884, - 3.5897872527356314, - 4.833555806554413, - 5.9597215839762505, - 6.832317650198914, - 7.312877956394253, - 7.281845782320303, - 6.618633477078771, - 5.353368843312653, - 3.6878876671502185, - 1.8655721689362148, - 0.13450535785472625, - -1.1395340544682266, - -1.9273674444679019, - -2.2416991714122583, - -2.1881659475170157, - -2.030261126154621, - -1.991644687773375, - -2.20730658369137, - -2.7080243449908945, - -3.3573258849183114, - -3.9879851920720646, - -4.369636217688863, - -4.331893784357768, - -3.854186565633905, - -3.030551618181658, - -2.0413473811330882, - -1.1252390733268058, - -0.5010105522943147, - -0.21347459521312923, - -0.23748819114547123, - -0.40456308290657983, - -0.4794330829077623, - -0.275123549099792, - 0.2993381916638986, - 1.174115857530615, - 2.154427814969289, - 3.0076286605387423, - 3.445921044664149, - 3.4307535335502797, - 3.0977127366797834, - 2.8031498142368294, - 3.0877887072189623, - 4.530190033569288, - 7.601430129177827, - 12.576354467068402, - 19.041897099199716, - 26.7575222750126, - 34.79212225484828, - 41.896997711181996 - ], - "pressure:branch84_seg0:RESISTANCE_43": [ - 159590.38469949033, - 181258.55213414898, - 193465.60969475558, - 195416.52921290323, - 187880.94194119485, - 172262.1165420169, - 150947.02348722704, - 127608.46819090178, - 104267.40924626516, - 82109.68656021636, - 63169.12629591056, - 46045.99223484153, - 30300.568946939053, - 15529.188116056554, - 237.99073129042588, - -14553.645358661846, - -29160.762356471623, - -43020.62296607605, - -54203.01226898993, - -63224.5739942975, - -69524.69934559296, - -73241.87185471604, - -75423.26863629112, - -76441.97337078273, - -76925.38921138736, - -77059.84258197485, - -76525.59021493584, - -74933.74035315051, - -71920.22466677146, - -67401.41127575746, - -61870.42368928452, - -56539.94893140541, - -52625.33602747916, - -51735.07408592245, - -54883.13951748567, - -62297.743457702774, - -72968.25976753229, - -85634.28848495318, - -97772.78174239869, - -106659.13756366279, - -110824.14152356322, - -108716.37878523997, - -100346.61831814407, - -86721.34707581821, - -70247.26821733633, - -52183.12201810587, - -35011.6754829444, - -20411.351408290746, - -8204.655650366944, - 877.1996280995937, - 7886.849150122812, - 13673.904096963106, - 18411.558650383045, - 22701.250978533295, - 26025.06770773469, - 27855.576057420643, - 27737.37101006428, - 25211.120617119854, - 20391.58507327869, - 14047.579628168209, - 7106.174580278171, - 512.3460624124913, - -4340.61360158605, - -7341.559747079804, - -8538.884709887387, - -8334.970628632844, - -7733.493373365579, - -7586.399008768147, - -8407.879468341054, - -10315.169835601437, - -12788.432556176247, - -15190.684911745266, - -16644.436667872254, - -16500.671486979518, - -14681.030868926222, - -11543.71255743187, - -7775.722167639895, - -4286.162407840571, - -1908.405641146803, - -813.1487847520827, - -904.6192772039063, - -1541.0263637828616, - -1826.2146291795625, - -1047.9765959243127, - 1140.2128976457768, - 4472.339585683335, - 8206.458280575467, - 11456.396429105765, - 13125.90150141571, - 13068.126742700797, - 11799.536824646575, - 10677.513465481072, - 11761.735078318074, - 17256.0042417116, - 28954.70379392028, - 47904.75110776057, - 72532.73144816073, - 101922.41704074846, - 132527.11359985927, - 159590.38469949033 - ], - "flow:branch87_seg2:RESISTANCE_44": [ - 27.39424620639035, - 32.569068025175895, - 36.50443372229334, - 38.84831149715958, - 39.41919016561251, - 38.244918839161194, - 35.58471814106496, - 31.983319967937582, - 27.792996163033074, - 23.39109251295261, - 19.220815878200632, - 15.253534799596986, - 11.547370706313544, - 8.064665762839585, - 4.618669551189077, - 1.2880838241095554, - -1.9847550037698465, - -5.143560924826138, - -7.950868296825737, - -10.384402958048499, - -12.33364701285778, - -13.78054780936762, - -14.816473000406337, - -15.509220599081926, - -15.967066207123729, - -16.2548201842771, - -16.37597760339981, - -16.295821153260125, - -15.962580358582859, - -15.339786429729028, - -14.47054440414967, - -13.491981334496009, - -12.589758475889163, - -12.040761853271404, - -12.06525902587598, - -12.80779619808048, - -14.23890621735526, - -16.239891540782057, - -18.4730201211646, - -20.51112521822212, - -22.005814680373263, - -22.58614617533833, - -22.087177837308776, - -20.5166045376563, - -18.09135018829016, - -15.046510440743775, - -11.774683280992727, - -8.594369851136967, - -5.682199934553095, - -3.218454521976715, - -1.1606552358897941, - 0.5488707925289493, - 1.9795563496665165, - 3.216453128141329, - 4.2263191231030595, - 4.97450472028419, - 5.380629791556933, - 5.357533544783883, - 4.882142506089648, - 4.024641570488205, - 2.896504992708731, - 1.6544445356332598, - 0.5379975524005587, - -0.357532043355414, - -0.9621461801727279, - -1.2762835550317304, - -1.4094340900496265, - -1.4900433666081452, - -1.6333561057846213, - -1.9101968172770885, - -2.3066777968211927, - -2.753461347571735, - -3.1260858402238156, - -3.3051096407725824, - -3.2205450088643643, - -2.8703554605191948, - -2.318931636368461, - -1.6979247208830763, - -1.142213917123182, - -0.7404232629277098, - -0.5373867087893426, - -0.4811269901925202, - -0.46288372358255747, - -0.36044505083900713, - -0.0770154123748414, - 0.40615209280941283, - 1.0303361328801246, - 1.67904097952133, - 2.1744712668105888, - 2.4313456235296074, - 2.449419779464132, - 2.3616956583240216, - 2.445963208842351, - 3.0609532863252626, - 4.571781315292332, - 7.257736015854605, - 11.126970531894477, - 16.10238497501398, - 21.720196588573597, - 27.39424620639035 - ], - "pressure:branch87_seg2:RESISTANCE_44": [ - 118395.04800065071, - 140760.0830891866, - 157768.31931148935, - 167898.3122878391, - 170365.5897900069, - 165290.51274595852, - 153793.4053983251, - 138228.54165414925, - 120118.40333232401, - 101093.83919506407, - 83070.34263203196, - 65924.17149104246, - 49906.52046985833, - 34854.63636804888, - 19961.403540452033, - 5566.962676595153, - -8577.90216859967, - -22229.928796034827, - -34362.815700694395, - -44880.29630067279, - -53304.723886492495, - -59558.076797335525, - -64035.23640940417, - -67029.21859746553, - -69007.97911281255, - -70251.6215069468, - -70775.25111677453, - -70428.82337825256, - -68988.5917477025, - -66296.94195578084, - -62540.169436210206, - -58310.92287360639, - -54411.610665958644, - -52038.90506211252, - -52144.779263015225, - -55353.94674596431, - -61539.053580063395, - -70187.10148146987, - -79838.4480990754, - -88646.92375409877, - -95106.81424657756, - -97614.94586973221, - -95458.45724482901, - -88670.60479581643, - -78188.91083192179, - -65029.43400788153, - -50888.941485838055, - -37143.961669707445, - -24557.869887428635, - -13909.821600729172, - -5016.229734159576, - 2372.161779449094, - 8555.43413288336, - 13901.171787282194, - 18265.706297446803, - 21499.285678470293, - 23254.515479111822, - 23154.695932161743, - 21100.105912739273, - 17394.077147931806, - 12518.389630515398, - 7150.335100843621, - 2325.1687803644327, - -1545.2158499241682, - -4158.294494653204, - -5515.963155985369, - -6091.425750063665, - -6439.810556695744, - -7059.1931272552, - -8255.66953616169, - -9969.21858769829, - -11900.170056061785, - -13510.613882892529, - -14284.335900995377, - -13918.856464968363, - -12405.374105449344, - -10022.17839211916, - -7338.251883840502, - -4936.528295976376, - -3200.031389609682, - -2322.5287785854425, - -2079.3801979107093, - -2000.5347202976268, - -1557.8055615830112, - -332.85250399714226, - 1755.346584879318, - 4453.004291123892, - 7256.6383417809475, - 9397.835883871612, - 10508.019809533285, - 10586.134408609292, - 10206.999992756326, - 10571.19547429657, - 13229.117842185318, - 19758.75752136034, - 31367.170956238235, - 48089.595176309536, - 69592.81258109643, - 93872.4029240799, - 118395.04800065071 - ], - "flow:branch88_seg0:RESISTANCE_45": [ - 16.395687834881567, - 20.457258784877265, - 24.240372098508534, - 27.410706461771934, - 29.68600157107671, - 30.899672802079444, - 31.024543181710463, - 30.188505857391025, - 28.543104393295355, - 26.315683277049406, - 23.748936297572342, - 20.964795266989007, - 18.089924273754686, - 15.1733930238989, - 12.209040342057708, - 9.235382352560679, - 6.2457556581831035, - 3.2899288118852783, - 0.46166575956787426, - -2.184638605240027, - -4.5632188275480985, - -6.6294602782698036, - -8.378491372601067, - -9.822361895808692, - -11.001719492082549, - -11.952624824303163, - -12.695005858213811, - -13.229111821120584, - -13.539299692140906, - -13.607558619893329, - -13.441901171165666, - -13.08996231020912, - -12.641071615810908, - -12.23646345953247, - -12.023880044650907, - -12.13796937915235, - -12.65168144265615, - -13.57675280475645, - -14.809553890083311, - -16.174772001227343, - -17.46160379379915, - -18.429446570314546, - -18.893296003813514, - -18.740334149259123, - -17.95981245629589, - -16.604241407392923, - -14.82678516501548, - -12.792064777633717, - -10.654708130554221, - -8.561350104044195, - -6.579743271856789, - -4.750893988066543, - -3.081497995763723, - -1.5611528089649391, - -0.20401874476445833, - 0.9698295872140874, - 1.9147815748947103, - 2.5781384280981623, - 2.923438813067342, - 2.9498034008922422, - 2.687110483758835, - 2.2074964330941174, - 1.6216746456692115, - 1.0166100326787042, - 0.47597346389182044, - 0.04523741887410573, - -0.28017629836297414, - -0.5345814586038193, - -0.7691666845116018, - -1.031100587588236, - -1.3403885718623736, - -1.6873054135826402, - -2.026898526873519, - -2.299845718889619, - -2.4515037120319083, - -2.4501788103851108, - -2.297355345513701, - -2.034078254314475, - -1.7210284266271623, - -1.42001757706776, - -1.1792945808290993, - -1.0089079221137607, - -0.8841532117553355, - -0.7558886850383513, - -0.5684578309079885, - -0.2870503536730233, - 0.09068907025346797, - 0.5274163759754804, - 0.9494929508725645, - 1.294065460292507, - 1.5226180707934032, - 1.6577653882024268, - 1.8006008356036283, - 2.1203528597406645, - 2.829703263047474, - 4.135444628351657, - 6.165395918220865, - 8.982241345145358, - 12.467184217140359, - 16.395687834881567 - ], - "pressure:branch88_seg0:RESISTANCE_45": [ - 68165.96889684157, - 85052.17225945114, - 100780.67276929924, - 113961.51127849962, - 123421.17513731195, - 128467.07965907565, - 128986.23509188509, - 125510.36419094574, - 118669.5176126274, - 109408.89249830932, - 98737.50154899109, - 87162.28294234199, - 75209.84955370212, - 63084.21136966152, - 50759.7529666577, - 38396.60723814252, - 25967.0707457141, - 13678.058970276768, - 1919.4006451240489, - -9082.754484920992, - -18971.83184998212, - -27562.343689536257, - -34834.036123337, - -40837.00679265017, - -45740.25050132496, - -49693.69142755337, - -52780.18117880977, - -55000.75593125, - -56290.37897000812, - -56574.169195401635, - -55885.439292075855, - -54422.23422918065, - -52555.94661621111, - -50873.766077402586, - -49989.93890328242, - -50464.27155132021, - -52600.05755160259, - -56446.09233412127, - -61571.530271497046, - -67247.49923595399, - -72597.57279379042, - -76621.43207102362, - -78549.91145993973, - -77913.96418374497, - -74668.90255646326, - -69033.04178090152, - -61643.17023945541, - -53183.70894470432, - -44297.53178680796, - -35594.28130033346, - -27355.642516220887, - -19752.10159428301, - -12811.496452624078, - -6490.578186827462, - -848.2190896793663, - 4032.119551374756, - 7960.8091220688475, - 10718.75151999352, - 12154.356755890845, - 12263.968971722214, - 11171.808801373338, - 9177.7871543793, - 6742.201033024881, - 4226.611811940557, - 1978.8857083712032, - 188.07704312374184, - -1164.8482840244658, - -2222.551651813407, - -3197.852558608206, - -4286.857086503391, - -5572.738796898602, - -7015.064540143657, - -8426.941481892367, - -9561.734360900242, - -10192.26076196414, - -10186.752410905834, - -9551.380497382264, - -8456.791591404834, - -7155.269811275696, - -5903.800741159833, - -4902.98171852157, - -4194.589866017002, - -3675.9153345393015, - -3142.6485495888946, - -2363.3945224552945, - -1193.4275449345917, - 377.0447696024852, - 2192.7624289072214, - 3947.5688735207646, - 5380.147927013537, - 6330.367905313626, - 6892.250269004092, - 7486.096453620795, - 8815.482982052712, - 11764.646080039434, - 17193.337220723843, - 25632.97073173415, - 37344.159654862604, - 51833.000245879404, - 68165.96889684157 - ], - "flow:branch89_seg0:RESISTANCE_46": [ - 36.38985596588262, - 40.486279993889596, - 42.320950040772374, - 41.81546232343411, - 39.36318696623989, - 35.35753188433487, - 30.33791475128497, - 25.114080970031594, - 20.205705754635282, - 15.585443623676486, - 11.759843725208489, - 8.325265620952015, - 5.0571259405737425, - 1.9931766443796768, - -1.274674362145863, - -4.429509659245265, - -7.487714192284273, - -10.372755911356194, - -12.55979489122572, - -14.259738557228086, - -15.384664070795447, - -15.956531107688955, - -16.27487558340617, - -16.398296895336447, - -16.446768216852856, - -16.439400334330443, - -16.26438617495281, - -15.827488676645906, - -15.057945577546711, - -13.971309954898434, - -12.702856610556353, - -11.589724077593514, - -10.894735522769887, - -10.961847999022655, - -11.982845580834136, - -13.931948058573255, - -16.49586697096918, - -19.334384238058018, - -21.88787816441678, - -23.49915077870453, - -23.95473875173784, - -22.980925005529112, - -20.655361700910017, - -17.287683062453187, - -13.51899778433388, - -9.55584668556077, - -5.943725362640995, - -3.0567702146145814, - -0.6791126157094626, - 1.0121300546316823, - 2.3071230801143785, - 3.439483308012784, - 4.353687251379773, - 5.2097581165866504, - 5.8430542010020075, - 6.0906321303928745, - 5.8894341387419225, - 5.146257965461511, - 3.9252026449296693, - 2.4292638322491413, - 0.9159017079304782, - -0.4515330863881601, - -1.3590354780042968, - -1.8223676122683958, - -1.9250603944742986, - -1.7699417034119433, - -1.60337593404623, - -1.6099542081591451, - -1.8678796678411378, - -2.36514911057111, - -2.93943431412408, - -3.4392402332255254, - -3.6688957472991786, - -3.5006169416755224, - -2.965222685200137, - -2.184474006888857, - -1.3329965944673685, - -0.6081476234974462, - -0.19981873193162003, - -0.08105745362345766, - -0.1956419587356831, - -0.3752694174213661, - -0.406058843503366, - -0.14748441525566147, - 0.4362325450733209, - 1.246712180087278, - 2.0676648393616204, - 2.7117736979369, - 2.9438018492413436, - 2.7792438720161092, - 2.4103392621601936, - 2.1949691459748024, - 2.6262364093579755, - 4.186024668406014, - 7.216070416425704, - 11.889925669249143, - 17.63960823576475, - 24.2819636015045, - 30.94979052730891, - 36.38985596588262 - ], - "pressure:branch89_seg0:RESISTANCE_46": [ - 174172.47865736284, - 193779.16045512722, - 202560.427132399, - 200141.01528470765, - 188403.7092147672, - 169231.47410298124, - 145206.1204771207, - 120203.32632954701, - 96710.40901084218, - 74596.48506043579, - 56286.0466434123, - 39847.152735135845, - 24204.88173346481, - 9539.925546266328, - -6100.963778043252, - -21200.926909716487, - -35838.38698264693, - -49647.039254079355, - -60114.84655734952, - -68251.27342759764, - -73635.4954807574, - -76372.61813855279, - -77896.30777488102, - -78487.03822014434, - -78719.03612144494, - -78683.77128382452, - -77846.1024024901, - -75754.9833755151, - -72071.72535081892, - -66870.76989851659, - -60799.58172859981, - -55471.80432486309, - -52145.38612343342, - -52466.60603562194, - -57353.39865425715, - -66682.372366694, - -78954.0370984035, - -92540.0097547369, - -104761.77745855757, - -112473.7987780832, - -114654.37587583228, - -109993.41887488363, - -98862.59369602364, - -82743.90016968946, - -64705.871748116144, - -45737.07311329546, - -28448.40550730405, - -14630.595006053383, - -3250.431320105137, - 4844.350043707333, - 11042.564878737061, - 16462.371646067837, - 20838.018721005432, - 24935.423905549975, - 27966.563925727205, - 29151.544203288133, - 28188.55185345259, - 24631.49363644116, - 18787.16625151687, - 11627.166190822141, - 4383.77307198729, - -2161.169225999802, - -6504.740717007425, - -8722.383632165436, - -9213.901280209777, - -8471.457920890942, - -7674.22550158664, - -7705.711042735306, - -8940.217622368496, - -11320.294407558955, - -14068.99111723395, - -16461.208219141645, - -17560.406582583506, - -16754.97507143778, - -14192.421792945981, - -10455.530593445916, - -6380.111015496869, - -2910.7721413741206, - -956.390809992058, - -387.9646466445338, - -936.399553609007, - -1796.1490327928955, - -1943.5162183660316, - -705.9034856436344, - 2087.936366597721, - 5967.128608084906, - 9896.447802431032, - 12979.340917708241, - 14089.895415886538, - 13302.272876160008, - 11536.587671278772, - 10505.763394318614, - 12569.934472589322, - 20035.536631436273, - 34538.22053523002, - 56908.65681926495, - 84428.31683226474, - 116220.56957595452, - 148134.73664532858, - 174172.47865736284 - ], - "flow:branch90_seg2:RESISTANCE_47": [ - 31.603132432321424, - 35.50852183886862, - 37.48850523162609, - 37.431226129464854, - 35.59573629779651, - 32.28254244539583, - 27.964336863239232, - 23.399694656162286, - 18.944158391745784, - 14.74331788717305, - 11.24130893377606, - 8.066441302002954, - 5.10808695836772, - 2.334528642025578, - -0.6001631143452716, - -3.412245251272646, - -6.1704413713531325, - -8.80552975077751, - -10.840815239935, - -12.457578032484143, - -13.56060450867249, - -14.159331799255266, - -14.504585819948153, - -14.65074206353044, - -14.712602325575071, - -14.720940890432875, - -14.591090889150962, - -14.24254224333153, - -13.609438057780869, - -12.68627963961626, - -11.585111339438878, - -10.571259300992212, - -9.879639336531872, - -9.825120051515588, - -10.588432482478774, - -12.182416661514113, - -14.355125887098891, - -16.853767332472064, - -19.168860926662937, - -20.73795261223325, - -21.34076834141472, - -20.690315032406822, - -18.83320788657455, - -15.998028898283504, - -12.725943063894968, - -9.219458286539304, - -5.948925620166738, - -3.2674847202877206, - -1.0391512899201787, - 0.577080055293534, - 1.812380369967711, - 2.8649060593115716, - 3.72430948179741, - 4.513572580376162, - 5.111418966919808, - 5.397550872429526, - 5.294581954234483, - 4.716640797767798, - 3.700715474229098, - 2.4224369548466593, - 1.072709580803002, - -0.18019204211725068, - -1.0428733445676095, - -1.5339964230423013, - -1.6910658743879365, - -1.5939375052615643, - -1.4560706290682883, - -1.4421139529611229, - -1.6355839195054112, - -2.0434825426495133, - -2.539837834526015, - -2.994869175827491, - -3.239413736969681, - -3.149062197186883, - -2.732345088254037, - -2.0786964917754958, - -1.3326119853906555, - -0.6717699434132922, - -0.25937797935987034, - -0.10344927458163702, - -0.1677548238748718, - -0.3141695399472209, - -0.35890216928773105, - -0.17007516803557768, - 0.3032213957067395, - 0.9868774412034647, - 1.7165583454241524, - 2.3223424045898344, - 2.5821449389475135, - 2.4987837369447883, - 2.2065574497111755, - 1.9959972044866428, - 2.2873280587565468, - 3.5100324488710695, - 5.9872249536546835, - 9.908742227451123, - 14.851247680583828, - 20.631629390032206, - 26.56755025521622, - 31.603132432321424 - ], - "pressure:branch90_seg2:RESISTANCE_47": [ - 166253.52429018496, - 186798.47355920024, - 197214.50487466683, - 196913.17864941162, - 187257.27969801569, - 169827.67344623862, - 147111.03615781266, - 123097.97809544303, - 99658.88995605786, - 77559.67114089368, - 59136.771706958025, - 42434.8535009978, - 26871.939388541585, - 12281.175453870794, - -3157.2576902708247, - -17950.682578108423, - -32460.631129224166, - -46322.9509746845, - -57029.908148429706, - -65535.15720176623, - -71337.81108250264, - -74487.51538352633, - -76303.7814716605, - -77072.66065301198, - -77398.08683031866, - -77441.95323495984, - -76758.85574807246, - -74925.25773755093, - -71594.70807396896, - -66738.27997062363, - -60945.401333260634, - -55611.864385249966, - -51973.48275307604, - -51686.67500402274, - -55702.2067572184, - -64087.625132905814, - -75517.52268451202, - -88662.04078316774, - -100840.97494167558, - -109095.44222333512, - -112266.65443429032, - -108844.83682680395, - -99075.21640578224, - -84160.28669726661, - -66946.93599818392, - -48500.490749326396, - -31295.310748417796, - -17189.145774568326, - -5466.627860067982, - 3035.825426342863, - 9534.327791927983, - 15071.313900318486, - 19592.348265545275, - 23744.397813541964, - 26889.467972642124, - 28394.712359563553, - 27853.02727252761, - 24812.671880517704, - 19468.228072116945, - 12743.631726268926, - 5643.166819944248, - -947.9301494940441, - -5486.208346402183, - -8069.842827304172, - -8896.132749687038, - -8385.172840559118, - -7659.901252397978, - -7586.479840924625, - -8604.260716004199, - -10750.079134355781, - -13361.23854240767, - -15755.006448668051, - -17041.473707030655, - -16566.164433618862, - -14373.954906906918, - -10935.327959258326, - -7010.426563158566, - -3533.95730134883, - -1364.5009172500754, - -544.2120815498912, - -882.5020983485483, - -1652.7410171347192, - -1888.0644394104668, - -894.7086539826563, - 1595.1464869614765, - 5191.632601418406, - 9030.24012533094, - 12217.067728917666, - 13583.802088209188, - 13145.266647088492, - 11607.961753439644, - 10500.274630367117, - 12032.868950268668, - 18465.10836378047, - 31496.790749931493, - 52126.58334184339, - 78127.45373551341, - 108536.11126325653, - 139763.0083392922, - 166253.52429018496 - ], - "flow:branch91_seg0:RESISTANCE_48": [ - 36.02861065821236, - 39.29955536593294, - 40.30281006957662, - 38.99853712732234, - 36.01892481976299, - 31.792033526984124, - 26.826417892259347, - 21.852579111989634, - 17.479850930865005, - 13.358188619626642, - 10.019442416526855, - 7.036959639733222, - 4.02756348481057, - 1.215075223170029, - -1.8807992607232993, - -4.874077871135587, - -7.687614126674619, - -10.362870796158113, - -12.23964397959754, - -13.65730468010581, - -14.571937550684215, - -14.962495161167924, - -15.201165440817764, - -15.304274566136838, - -15.362378244953081, - -15.37557793036365, - -15.193726885226797, - -14.722944190487768, - -13.913946625063316, - -12.816008195327235, - -11.586691978299468, - -10.614185685932858, - -10.145856857797227, - -10.481241342435224, - -11.78092523884714, - -13.935413231146716, - -16.567023220812576, - -19.279780251993287, - -21.57697691797298, - -22.749924328712638, - -22.736769031170095, - -21.336693710325548, - -18.702882477039065, - -15.180191970426428, - -11.524422761626491, - -7.807036174371596, - -4.531977459476617, - -2.107480678076577, - -0.09845746186534005, - 1.2735784377209574, - 2.333868678068267, - 3.3585433054945835, - 4.172329894644888, - 4.9569185782359115, - 5.51919311311406, - 5.6416055921242805, - 5.315502303651548, - 4.462542466951481, - 3.1822806309407845, - 1.6951602039180405, - 0.3063253003376803, - -0.8867883381320795, - -1.5827721053025012, - -1.8307799594037248, - -1.7916089457184303, - -1.5635471862307828, - -1.4018284238375527, - -1.474441839337689, - -1.8129261403490855, - -2.3716064154545005, - -2.9440281121306175, - -3.3862461627974376, - -3.515681253967551, - -3.2243178094068523, - -2.5923475359432273, - -1.780740378113594, - -0.9685326672405189, - -0.33530271186056254, - -0.06761552065101478, - -0.07319664960705809, - -0.25868738799465857, - -0.4480951846502785, - -0.42456837885989357, - -0.0752949389339359, - 0.587699951470098, - 1.435066265330495, - 2.2056331237791054, - 2.7400362010504877, - 2.826199221629002, - 2.5308477750453076, - 2.1175737614970704, - 1.983485897797118, - 2.625868207596308, - 4.499319233011908, - 7.8468001942409735, - 12.81992531316762, - 18.588685929555, - 25.06503882900674, - 31.37063772996667, - 36.02861065821236 - ], - "pressure:branch91_seg0:RESISTANCE_48": [ - 182401.17989820245, - 198960.91293176103, - 204040.0663695369, - 197436.95514125822, - 182352.14363704587, - 160952.76283886682, - 135813.46009730184, - 110632.5262347333, - 88494.8205325228, - 67628.17996612108, - 50725.1899340171, - 35625.846174305894, - 20390.248702996323, - 6151.532083042262, - -9521.877142650077, - -24675.876709339074, - -38919.898982779996, - -52463.85652456287, - -61965.35094265234, - -69142.50764517982, - -73772.99746199841, - -75750.26407508668, - -76958.57435459578, - -77480.58244130765, - -77774.74253737443, - -77841.56826696129, - -76920.91535827081, - -74537.495142302, - -70441.80264202098, - -64883.29618338902, - -58659.66656355422, - -53736.182367373614, - -51365.185282788865, - -53063.1282397819, - -59643.006616139704, - -70550.48111189711, - -83873.46965843516, - -97607.27937866982, - -109237.24164138376, - -115175.49426253301, - -115108.89325434105, - -108020.7656301278, - -94686.6329005024, - -76852.39247092331, - -58344.41769924779, - -39524.49410892584, - -22943.933190277316, - -10669.491697598167, - -498.4582221160475, - 6447.714899055052, - 11815.620775542391, - 17003.21634583454, - 21123.15412124536, - 25095.27236303405, - 27941.886115682366, - 28561.620826452992, - 26910.665557864115, - 22592.40632506122, - 16110.85554636796, - 8582.046758460816, - 1550.8257241518247, - -4489.52197268208, - -8013.062237006165, - -9268.64562991781, - -9070.33548185804, - -7915.7327020059265, - -7097.003016532282, - -7464.621207233014, - -9178.257529965758, - -12006.674710185362, - -14904.660254604933, - -17143.46693463894, - -17798.754854941963, - -16323.676157867898, - -13124.215467200016, - -9015.311446273257, - -4903.367019909024, - -1697.5289679266737, - -342.3154687552286, - -370.5709159743877, - -1309.6504120762058, - -2268.5607047766753, - -2149.452111440001, - -381.1938748405237, - 2975.3343971878908, - 7265.275436556248, - 11166.405721731233, - 13871.915316875664, - 14308.130767041292, - 12812.862108126767, - 10720.589708070984, - 10041.746308283073, - 13293.919764668008, - 22778.595173304253, - 39725.80645511771, - 64903.12728158285, - 94108.49278849608, - 126896.16871370969, - 158819.37248114895, - 182401.17989820245 - ], - "flow:branch93_seg2:RESISTANCE_49": [ - 25.34912972923017, - 28.555915195175764, - 30.222912473812304, - 30.2575083933464, - 28.848901385714875, - 26.24224203695107, - 22.81475562960907, - 19.142754491484258, - 15.56194626389825, - 12.170748509865765, - 9.308341264054452, - 6.727909697090802, - 4.326213836201662, - 2.07944761707975, - -0.269165513546623, - -2.5347350920075344, - -4.755716293268233, - -6.861044594845134, - -8.522810640685117, - -9.85344594185217, - -10.773737762979609, - -11.299344224985619, - -11.61239557368664, - -11.760096431331503, - -11.834454575669398, - -11.858608483799184, - -11.77150904008138, - -11.511851573587954, - -11.02582945878253, - -10.309487303042514, - -9.444744388011497, - -8.639559918878705, - -8.07876558214702, - -8.01051130565959, - -8.586539479096599, - -9.8234078501676, - -11.542755005018149, - -13.536770189910646, - -15.41302134225949, - -16.731469574894366, - -17.29177366501748, - -16.864066205371714, - -15.461254495371598, - -13.258721902686473, - -10.659065861582821, - -7.833455656100685, - -5.174492942298456, - -2.9522463714169924, - -1.090248785366336, - 0.28056314616389294, - 1.34030944979209, - 2.234111221071003, - 2.959366174314754, - 3.6226640437544004, - 4.128016722211922, - 4.381088734505643, - 4.323094511064514, - 3.8832043280071438, - 3.0891624593472127, - 2.070358689862675, - 0.9849397459475767, - -0.03171115835868186, - -0.7581881611362639, - -1.1864708807566442, - -1.3428425862181674, - -1.291100190671135, - -1.194560804121903, - -1.1855775146192953, - -1.3356965776282241, - -1.6545888402791469, - -2.0491278954850918, - -2.4185685807544552, - -2.624924887851795, - -2.569929534066719, - -2.253656059701877, - -1.74184138948772, - -1.1470103147909145, - -0.6096313297938692, - -0.263763638352398, - -0.11815339407026303, - -0.15096615951708026, - -0.2562104665257179, - -0.28937702773901425, - -0.14355525378093292, - 0.22582397685761657, - 0.7675959337704753, - 1.3530609305644512, - 1.8462728552358774, - 2.0768314243619486, - 2.033316568257577, - 1.8168626629940074, - 1.6539100766874955, - 1.8768980521421237, - 2.830250215415875, - 4.782451944526078, - 7.884750002382654, - 11.828214776915678, - 16.479956896230767, - 21.258113528817407, - 25.34912972923017 - ], - "pressure:branch93_seg2:RESISTANCE_49": [ - 162633.42426794348, - 183207.32588864234, - 193902.34692352155, - 194124.3053465376, - 185087.04909568487, - 168363.400579245, - 146373.5391121185, - 122814.93471867501, - 99841.40032440759, - 78084.35742001262, - 59719.896903684814, - 43164.51901469942, - 27755.86293542386, - 13341.195148067827, - -1726.8959380705596, - -16262.201189104255, - -30511.43900727848, - -44018.67789678643, - -54680.13670242317, - -63217.14676124289, - -69121.49976248929, - -72493.65413806647, - -74502.11018190272, - -75449.72047476012, - -75926.78299188461, - -76081.74818519765, - -75522.94080462765, - -73857.04602387609, - -70738.85452597545, - -66142.9895404792, - -60595.02387517758, - -55429.16971051084, - -51831.25908136011, - -51393.35739303345, - -55089.00435690674, - -63024.43017643839, - -74055.31440345017, - -86848.39728342682, - -98885.93675530222, - -107344.75775167333, - -110939.52308608331, - -108195.46325089037, - -99195.38812257536, - -85064.51177942527, - -68385.79466370514, - -50257.41438901283, - -33198.20108403645, - -18940.84498342789, - -6994.752686268143, - 1800.0201849703158, - 8599.076880615996, - 14333.476610806763, - 18986.523787306287, - 23242.070426141112, - 26484.281793489008, - 28107.92601265442, - 27735.850156529996, - 24913.629136059513, - 19819.262998377406, - 13282.882954635026, - 6319.1172751123795, - -203.4505455013784, - -4864.338074013131, - -7612.088627608792, - -8615.328825181057, - -8283.363071030017, - -7663.9914721261075, - -7606.357022792487, - -8569.481892396336, - -10615.41172121062, - -13146.671699006101, - -15516.90706215502, - -16840.835465259563, - -16487.99957698961, - -14458.871212800948, - -11175.20138679006, - -7358.91989814353, - -3911.2360765235503, - -1692.2389115849764, - -758.0414504085024, - -968.5596205122877, - -1643.7797253581343, - -1856.5677570930798, - -921.0131765227591, - 1448.8279096953454, - 4924.695896731782, - 8680.88706521337, - 11845.206513490957, - 13324.410335939718, - 13045.230335271546, - 11656.518368225721, - 10611.056950519142, - 12041.689812716602, - 18158.14937178765, - 30682.967993108785, - 50586.50557559638, - 75886.7500657558, - 105731.11781157395, - 136386.52820028376, - 162633.42426794348 - ], - "flow:branch96_seg2:RESISTANCE_50": [ - 28.450703401180967, - 32.71064798880271, - 35.39423099432949, - 36.28385948417319, - 35.42447070119641, - 33.02554166123202, - 29.48511118413548, - 25.40342266283925, - 21.182316429662787, - 17.099272449540848, - 13.488342600431206, - 10.192352390637767, - 7.160645051020505, - 4.303184336903706, - 1.396526802201779, - -1.4374736052990054, - -4.251626939774113, - -6.922435151771168, - -9.164814589078993, - -11.022091408308686, - -12.383199220075966, - -13.269800721050002, - -13.836856138824738, - -14.159255043880169, - -14.351886051997813, - -14.45607073192567, - -14.431763214016648, - -14.216837707793468, - -13.745565342882157, - -12.996690381114886, - -12.043428526465766, - -11.080893970015293, - -10.326293096856636, - -10.062384085167709, - -10.487953407204031, - -11.673626812787745, - -13.486331432950953, - -15.71560379206731, - -17.932958767287317, - -19.67273884983718, - -20.625630198960895, - -20.495934362282856, - -19.239726213230952, - -16.997317990944918, - -14.143562749451801, - -10.91780570643557, - -7.761615953536797, - -4.978413705355936, - -2.6024892866583462, - -0.7650226847791051, - 0.6857266133951826, - 1.881070311153173, - 2.867768558224564, - 3.749175608779333, - 4.456280853269368, - 4.902912951988155, - 5.002898292633314, - 4.673098692891517, - 3.9200508348196275, - 2.857101022147287, - 1.6404710452056006, - 0.4476510626889004, - -0.4892324987362404, - -1.1178411008791322, - -1.4207362963993069, - -1.4607730536260852, - -1.3990895534857826, - -1.3851051271476176, - -1.5216716416846248, - -1.8437675160878595, - -2.2791799152693826, - -2.7235119976689366, - -3.023580923180308, - -3.0595583101765835, - -2.7995075036598083, - -2.289634192970997, - -1.6404655697827555, - -1.0074619063245727, - -0.5407505360633057, - -0.2900924720203729, - -0.2524365707328854, - -0.3297801523475752, - -0.3732170897468621, - -0.25237961080290017, - 0.1068120537491351, - 0.6769301223202747, - 1.3437146405802303, - 1.9515345599219875, - 2.3132917041763963, - 2.379178867464433, - 2.212805889312053, - 2.031703050856297, - 2.1844810964564942, - 3.061876167526202, - 5.004594419022762, - 8.223476317501813, - 12.521613630757969, - 17.75709266212737, - 23.33144552088416, - 28.450703401180967 - ], - "pressure:branch96_seg2:RESISTANCE_50": [ - 143776.10596810968, - 165303.8072629282, - 178865.33891071347, - 183361.09137856547, - 179018.15577563946, - 166895.12770859207, - 149003.50301763334, - 128376.62173840804, - 107045.1907180145, - 86411.459604922, - 68163.56515716763, - 51507.22344952251, - 36186.43965100345, - 21746.214091755235, - 7057.371576005556, - -7264.296930992398, - -21485.667922168926, - -34982.64193696331, - -46314.54396600237, - -55700.32346706149, - -62578.7045819022, - -67059.160110818, - -69924.78415836836, - -71554.03242276308, - -72527.496447364, - -73053.99547167559, - -72931.15702295135, - -71845.02737891061, - -69463.44459264427, - -65678.99243546529, - -60861.6676932017, - -55997.48319713366, - -52184.09505087166, - -50850.42644186154, - -53001.048135781755, - -58992.86854179711, - -68153.40168863868, - -79419.06687857982, - -90624.50736947858, - -99416.51514456986, - -104231.96753095441, - -103576.54744889808, - -97228.27853585081, - -85896.23104145132, - -71474.73115013917, - -55173.31392666137, - -39223.45616850706, - -25158.49701011768, - -13151.723181785532, - -3866.054945771091, - 3465.3309214348924, - 9506.02031085756, - 14492.316422032003, - 18946.521708792225, - 22519.889900392525, - 24776.952688914902, - 25282.230281850556, - 23615.582482951395, - 19810.042524433895, - 14438.40784986722, - 8290.147892206036, - 2262.212140007559, - -2472.34462324053, - -5649.028718524029, - -7179.71466024841, - -7382.041083200562, - -7070.322482520261, - -6999.651949889371, - -7689.793117538473, - -9317.510011462346, - -11517.873860529378, - -13763.313478077782, - -15279.716816993068, - -15461.529144522383, - -14147.358039943007, - -11570.704727923572, - -8290.120222063448, - -5091.22561084132, - -2732.6918874033363, - -1465.9871641706136, - -1275.6924365683087, - -1666.5495211665684, - -1886.058811547945, - -1275.4045886090207, - 539.7765018987528, - 3420.8777065130243, - 6790.484433046361, - 9862.112571743299, - 11690.258356881446, - 12023.220239658494, - 11182.45160910034, - 10267.245382886234, - 11039.311794182053, - 15473.242475447298, - 25290.80168495512, - 41557.47525041165, - 63278.18412365832, - 89735.7650626494, - 117905.85056187243, - 143776.10596810968 - ], - "flow:branch97_seg0:RESISTANCE_51": [ - 27.168876251555496, - 32.181381808390164, - 36.02052964964859, - 38.36069430802061, - 39.05013715868771, - 38.13119041575993, - 35.85236369420601, - 32.684721083191384, - 28.966314033786986, - 25.033682405530723, - 21.239464337327195, - 17.552553149602918, - 14.020121522452367, - 10.594848016076726, - 7.128748034801883, - 3.7089419913322383, - 0.2929535440613211, - -3.011712189496413, - -5.980629142605842, - -8.596446630060779, - -10.739204738133086, - -12.401656170434936, - -13.67376264451756, - -14.617143767663652, - -15.332057174497292, - -15.868296034951213, - -16.21659683045227, - -16.33680395792809, - -16.176109673117463, - -15.706318447462243, - -14.976928661584761, - -14.133045181980789, - -13.365309150862329, - -12.937910718028126, - -13.0620160748954, - -13.864963353765372, - -15.307896510043589, - -17.26214776676815, - -19.39150712961551, - -21.298812743379013, - -22.654879618335418, - -23.12834669043006, - -22.584380960524324, - -21.048604281239005, - -18.74685783696087, - -15.88358214707611, - -12.8328384980499, - -9.877974796332117, - -7.152759837172826, - -4.814550136802208, - -2.805241586047939, - -1.0668749965677808, - 0.4462680472603294, - 1.8047399092433718, - 2.9620143194201876, - 3.8605357971360017, - 4.4147125424977345, - 4.5409650870875655, - 4.220759091925681, - 3.5237612671459875, - 2.5639637686091503, - 1.4995896431716613, - 0.5435071403738111, - -0.218700949985989, - -0.7238717212797936, - -0.9872646207537502, - -1.115679239475979, - -1.2272933229075402, - -1.422446400991404, - -1.7545616058732898, - -2.1939168853696787, - -2.6670376145941495, - -3.0491970930062577, - -3.2287394384639416, - -3.148694975057718, - -2.817690836283613, - -2.3064692458634948, - -1.7410871771722294, - -1.2510202432787247, - -0.9103592233730747, - -0.7479665776285089, - -0.7064899283817714, - -0.6769647558684482, - -0.5448135117482028, - -0.2264890123893316, - 0.28400917074462445, - 0.9184031149309424, - 1.5546005303234764, - 2.028685711961189, - 2.268107644264453, - 2.2850802066889164, - 2.2268615429252314, - 2.3722501820270074, - 3.0686725372880694, - 4.660093634509755, - 7.399352718174888, - 11.257478641514176, - 16.16655574318585, - 21.66978906530029, - 27.168876251555496 - ], - "pressure:branch97_seg0:RESISTANCE_51": [ - 111212.02896280604, - 131730.02565878804, - 147445.04518927296, - 157024.18483991147, - 159846.32358303087, - 156084.7424692809, - 146756.68116073532, - 133790.3752105695, - 118569.5913752314, - 102471.90892079048, - 86940.8031884247, - 71848.94329712902, - 57389.42407409031, - 43368.54176487582, - 29180.54193977028, - 15182.039932105734, - 1199.1647252920955, - -12328.0263837439, - -24480.876399338813, - -35188.362696626085, - -43959.44599682144, - -50764.46049674973, - -55971.65201727932, - -59833.25187952567, - -62759.650813750275, - -64954.670259074206, - -66380.3912862654, - -66872.4425002578, - -66214.66271978401, - -64291.63745696598, - -61305.98147174897, - -57851.66142162546, - -54709.04039681265, - -52959.54415520093, - -53467.55223086241, - -56754.30561758646, - -62660.75248280392, - -70660.20911660478, - -79376.4465104711, - -87183.73766211774, - -92734.60944557449, - -94672.68127627055, - -92446.0329618947, - -86159.54400461179, - -76737.66398808421, - -65017.24184019597, - -52529.44558715175, - -40434.120608159086, - -29278.830924417765, - -19707.693623371146, - -11482.867588142168, - -4367.104915177432, - 1826.736392686033, - 7387.452657179244, - 12124.595041384919, - 15802.568163210191, - 18071.01385397177, - 18587.81114494507, - 17277.092288621494, - 14424.028306191616, - 10495.23028681672, - 6138.362340958672, - 2224.7711416945676, - -895.2220238647296, - -2963.0685526689467, - -4041.230876855015, - -4566.878318592974, - -5023.7550979022935, - -5822.5871721891035, - -7182.0547277220185, - -8980.494663768712, - -10917.148787931457, - -12481.46564035015, - -13216.397344488265, - -12888.746428777311, - -11533.826868349393, - -9441.212150175745, - -7126.899021574396, - -5120.877957571689, - -3726.4292928023788, - -3061.697507260134, - -2891.9185927915632, - -2771.0613916940324, - -2230.1185918345845, - -927.1013777807514, - 1162.5521729391844, - 3759.3558479041194, - 6363.541782265304, - 8304.143758691238, - 9284.184251465218, - 9353.659083123735, - 9115.349052899655, - 9710.477294234868, - 12561.185671958969, - 19075.447340991675, - 30288.224701694544, - 46080.9283805602, - 66175.55503191033, - 88702.27781357213, - 111212.02896280604 - ], - "flow:branch98_seg0:RESISTANCE_52": [ - 36.99141127422643, - 41.95717205377205, - 44.73805149615343, - 45.13199939420024, - 43.34151547243112, - 39.71956684311043, - 34.83288581996633, - 29.4909908778497, - 24.185918366703955, - 19.18227776107815, - 14.893212377336202, - 11.020597551902872, - 7.455690424466085, - 4.102219271348387, - 0.6365313797134629, - -2.7249828783469225, - -6.054818318950723, - -9.21379777932131, - -11.777807670817488, - -13.871602134367153, - -15.3660364720318, - -16.28696882547805, - -16.8683231098774, - -17.189853618953578, - -17.388536491379377, - -17.50419952599213, - -17.461472292686427, - -17.172517516979973, - -16.554186792045293, - -15.588669784157956, - -14.38393154908431, - -13.21459521807102, - -12.359853610063492, - -12.179424645457308, - -12.910526563539257, - -14.610655171861954, - -17.06053653191035, - -19.97650635063813, - -22.791355123128735, - -24.89103317543963, - -25.929829409981387, - -25.547602520464945, - -23.728445693242666, - -20.682859809823736, - -16.952711560115464, - -12.813364466135994, - -8.835136304639404, - -5.421768751412571, - -2.5373805878981375, - -0.3572599199459972, - 1.3454869610149596, - 2.7693491814658286, - 3.9433537938797785, - 5.004552285711753, - 5.844121396209759, - 6.330507687443032, - 6.358448137326275, - 5.8247720676422485, - 4.754198310823881, - 3.3175677192551314, - 1.7318489097041165, - 0.22022209436217505, - -0.9073265432515739, - -1.616570822704403, - -1.9108433706823345, - -1.8840753054668606, - -1.7633818886052819, - -1.7436306811244169, - -1.9444578742128162, - -2.39453280632268, - -2.975394064845179, - -3.5428133829118336, - -3.895110403519545, - -3.879362796178964, - -3.4755841468199486, - -2.763639218274957, - -1.9008016306112292, - -1.0927472806820755, - -0.5361153333818017, - -0.27337632347647683, - -0.2811666254207423, - -0.4165963703194159, - -0.4745920392832198, - -0.28964046660466714, - 0.21951254174382695, - 0.9954639547588059, - 1.8681078073153154, - 2.63068355499207, - 3.0347947776029036, - 3.042195065098761, - 2.7668263487484115, - 2.5215730689879114, - 2.7808886738465235, - 4.054897498717919, - 6.761707881827599, - 11.148503516529415, - 16.848502841480837, - 23.652196664646443, - 30.74936734310964, - 36.99141127422643 - ], - "pressure:branch98_seg0:RESISTANCE_52": [ - 151419.21454218286, - 171745.86797178778, - 183129.01250175256, - 184741.58361590674, - 177412.48586738957, - 162586.54120422606, - 142583.5897959278, - 120717.2833091152, - 99001.70433938828, - 78519.99509237635, - 60963.300466382876, - 45111.2884751485, - 30518.835293236, - 16791.86596429572, - 2605.552971019403, - -11154.33969311688, - -24784.559509084098, - -37715.40405292418, - -48210.823137382955, - -56781.48054575313, - -62898.74035822066, - -66668.44929339217, - -69048.1424730241, - -70364.28304347381, - -71177.56384161637, - -71651.01444135049, - -71476.11643438588, - -70293.32011305964, - -67762.26899952548, - -63810.05896142234, - -58878.629989131674, - -54092.11380392931, - -50593.3475102689, - -49854.78655354183, - -52847.450914619956, - -59806.69171201645, - -69834.94147275161, - -81771.05973294341, - -93293.25300709931, - -101887.99407051923, - -106140.16246544004, - -104575.5696750062, - -97129.10336246008, - -84662.419707996, - -69393.57489670554, - -52449.731336875855, - -36165.405793906255, - -22193.25885358345, - -10386.415721365764, - -1462.3939612526922, - 5507.5643722620625, - 11335.947005156784, - 16141.572153187713, - 20485.44108306827, - 23922.10086128276, - 25913.05572474091, - 26027.426083417802, - 23842.89706687218, - 19460.65178930701, - 13580.003599109095, - 7089.083454240165, - 901.4486175177477, - -3714.0154370953805, - -6617.208584206686, - -7821.772469206515, - -7712.2011046630705, - -7218.159332477281, - -7137.310502437046, - -7959.368779986051, - -9801.688128120537, - -12179.363174668055, - -14502.01550119781, - -15944.09452193363, - -15879.633874116742, - -14226.821942136632, - -11312.5740623152, - -7780.667998145856, - -4473.009523951356, - -2194.5138043764473, - -1119.0280865026837, - -1150.9166076711563, - -1705.2794960216697, - -1942.6767279443684, - -1185.6031019684544, - 898.5441622294159, - 4074.7937140661716, - 7646.840364291174, - 10768.338484112855, - 12422.511758601242, - 12452.803809686086, - 11325.620139126939, - 10321.709833841916, - 11383.182317688988, - 16598.160847482726, - 27678.113950285886, - 45634.85381186091, - 68967.01095170966, - 96816.98853304867, - 125868.27294169377, - 151419.21454218286 - ], - "flow:branch100_seg0:RESISTANCE_53": [ - 22.79208145286792, - 25.18060856839968, - 26.144450879794785, - 25.63860310963281, - 23.97019296154604, - 21.39112598537537, - 18.23190178982337, - 14.990991100536025, - 12.0142948244434, - 9.203339159495288, - 6.90116295487471, - 4.838529484195999, - 2.8381034173189787, - 0.9720549340361921, - -1.0426523332972564, - -2.981000115903648, - -4.838625943354906, - -6.599698050389475, - -7.894973387233828, - -8.889134771411713, - -9.540128210763982, - -9.847955317535778, - -10.01990486510081, - -10.082810236235531, - -10.104591007000046, - -10.094907225095975, - -9.97418074599746, - -9.683798976648179, - -9.184159245286212, - -8.493032629788683, - -7.699238993028278, - -7.028061435071895, - -6.639021706314686, - -6.739623368888275, - -7.443001256621616, - -8.715222112354278, - -10.340477952861384, - -12.09751378031054, - -13.647253623915576, - -14.561026175022976, - -14.7427243599617, - -14.035028784829208, - -12.500787500784236, - -10.344637968383845, - -7.99718417391608, - -5.557532264742451, - -3.356444118529326, - -1.6426869443731142, - -0.22826485720855214, - 0.764185391182876, - 1.521498918529484, - 2.2057843188893784, - 2.7515587542679625, - 3.266468558846297, - 3.640862490776575, - 3.760004206698882, - 3.5985001079836576, - 3.100058870694235, - 2.3126833334599555, - 1.3691492752631838, - 0.4418049517607375, - -0.38484568721198736, - -0.9103677373179468, - -1.155137270318767, - -1.1902207080462535, - -1.0768617567094956, - -0.9724744257125661, - -0.9901024189597231, - -1.1684744468141652, - -1.4927068799016459, - -1.851206703340763, - -2.150302331827779, - -2.2710709426148936, - -2.1363648298409768, - -1.7773525226028175, - -1.2787109216392845, - -0.7516771344059489, - -0.3151480974389375, - -0.08918627881837485, - -0.041232942934208296, - -0.12837167003827585, - -0.24331694942671453, - -0.25072833223219515, - -0.0685387193681018, - 0.3151887000084851, - 0.8316375001878125, - 1.3347788678188741, - 1.7150827372120816, - 1.8272782830182088, - 1.6935575753491285, - 1.4516328778456038, - 1.3342014511873475, - 1.652361842796382, - 2.701884212027321, - 4.677710329417376, - 7.6830148674070395, - 11.30221219250686, - 15.436255612067862, - 19.54997931805365, - 22.79208145286792 - ], - "pressure:branch100_seg0:RESISTANCE_53": [ - 174931.2295711019, - 193263.38523875453, - 200660.95974259014, - 196778.53362046363, - 183973.33900770458, - 164178.77315286442, - 139931.44961808875, - 115057.17506008242, - 92210.76935933641, - 70636.43742497278, - 52967.03259257134, - 37136.13930944965, - 21782.693321289997, - 7460.607104841377, - -8002.448352774656, - -22879.438049796154, - -37136.87964199852, - -50653.26293871219, - -60594.61506031752, - -68224.8911141347, - -73221.32301194285, - -75583.92312787892, - -76903.65102731071, - -77386.45528290702, - -77553.62461401091, - -77479.30073626785, - -76552.71439204652, - -74324.00877504314, - -70489.22989666255, - -65184.772342477474, - -59092.33637117914, - -53940.98958801872, - -50955.07545620989, - -51727.20206373572, - -57125.68920975974, - -66890.09616133728, - -79364.07766826956, - -92849.48216420143, - -104743.87175375107, - -111757.15644405175, - -113151.70599266773, - -107720.08021614922, - -95944.6434342232, - -79396.00615324912, - -61379.0918368992, - -42654.548881937146, - -25761.00378788068, - -12607.766762057281, - -1751.9528535356474, - 5865.190082630718, - 11677.638005981933, - 16929.588632344694, - 21118.455421307903, - 25070.433454528924, - 27943.93980768801, - 28858.362955156615, - 27618.804794244897, - 23793.2244632763, - 17750.047970271255, - 10508.341095718475, - 3390.89185873286, - -2953.724494111163, - -6987.152445036995, - -8865.780136760426, - -9135.048606686067, - -8265.008685968625, - -7463.826740359153, - -7599.123138803505, - -8968.144139283879, - -11456.656577435975, - -14208.174250136854, - -16503.759502354915, - -17430.669210986896, - -16396.787948891702, - -13641.336917961846, - -9814.218778169676, - -5769.18811184801, - -2418.7893631375528, - -684.5125333011954, - -316.46646319767234, - -985.263857024994, - -1867.4789850470158, - -1924.3619998638587, - -526.0406986991521, - 2419.1009914321653, - 6382.89095123507, - 10244.545195923425, - 13163.410838851683, - 14024.5215198059, - 12998.203328549806, - 11141.409999453972, - 10240.113472498144, - 12682.022458302292, - 20737.1989410467, - 35901.83815350795, - 58967.81478022514, - 86745.47253602892, - 118474.61934429956, - 150047.81056389163, - 174931.2295711019 - ], - "flow:branch101_seg0:RESISTANCE_54": [ - 48.3442673147446, - 54.036123981070965, - 56.71869112978114, - 56.29152050392456, - 53.17522970792643, - 47.92544860023944, - 41.311423845973295, - 34.38099488093338, - 27.77901683130788, - 21.66668803388532, - 16.557601791389118, - 11.976698400168312, - 7.704063187172546, - 3.6536301973795937, - -0.6177837093437855, - -4.775002457229529, - -8.874407191302748, - -12.718237834106167, - -15.735502575948995, - -18.13197430043595, - -19.754500126098385, - -20.668563235252638, - -21.212718410916256, - -21.48385083865478, - -21.651941984353485, - -21.741250610170365, - -21.623908110073575, - -21.17232080093368, - -20.280056645032943, - -18.94742161550777, - -17.34231473672487, - -15.869438447451234, - -14.896362641439792, - -14.886574571506701, - -16.11537577298623, - -18.5918322640936, - -21.95996997455066, - -25.787307125986683, - -29.31234190517892, - -31.72020462104681, - -32.62554533298222, - -31.629832167950628, - -28.796287622224263, - -24.490782596488764, - -19.49554804690747, - -14.146901023892976, - -9.204526821589367, - -5.135697034444822, - -1.78753857573292, - 0.6367574356212504, - 2.5102138539840313, - 4.107282894386633, - 5.428945964202237, - 6.660226536045442, - 7.6071326578740335, - 8.071433786967392, - 7.928562244661595, - 7.052894397380069, - 5.511277743540635, - 3.556556598690443, - 1.5080905280045573, - -0.3604407631255563, - -1.6567563497093927, - -2.371104981656369, - -2.5630830619817884, - -2.3871812650249793, - -2.1627260688206222, - -2.1418662210657367, - -2.4539827339489952, - -3.099943052278284, - -3.8837509994827277, - -4.600198295235756, - -4.97663696468272, - -4.833976712489588, - -4.183030022121694, - -3.1671683362268293, - -2.0165799649989604, - -1.0069077737998353, - -0.3899938584959982, - -0.1732228411983543, - -0.29372237273605123, - -0.5322826354284609, - -0.605122079292848, - -0.3075825290247959, - 0.43384003666440746, - 1.5056317736426206, - 2.6427219979175853, - 3.5675087505913607, - 3.965478425782137, - 3.8250906141333796, - 3.3572822825144932, - 3.0253691131043454, - 3.4835293216701615, - 5.39345037507883, - 9.254208125937911, - 15.311592890501334, - 22.933977176032155, - 31.831380521320856, - 40.814709018420224, - 48.3442673147446 - ], - "pressure:branch101_seg0:RESISTANCE_54": [ - 163842.21602876738, - 183132.32965191186, - 192223.743602383, - 190776.03147744702, - 180214.69673878665, - 162422.809135042, - 140007.4012118431, - 116519.67655009807, - 94145.09577961084, - 73429.97171441474, - 56114.90917756414, - 40589.89649830297, - 26109.626955237356, - 12382.416806349602, - -2093.713641506809, - -16182.828442555294, - -30076.007372258395, - -43103.02723494319, - -53328.75551893987, - -61450.571399059794, - -66949.42869087028, - -70047.25463202939, - -71891.43585135584, - -72810.32324514707, - -73379.99628677538, - -73682.66967448065, - -73284.98746068163, - -71754.52543137678, - -68730.57771831432, - -64214.181286584935, - -58774.35806472105, - -53782.673867711186, - -50484.849631737205, - -50451.67715530181, - -54616.17323915891, - -63009.06327429952, - -74423.92540838383, - -87395.04763675648, - -99341.64527657763, - -107502.06604979016, - -110570.33115635725, - -107195.78727454407, - -97592.70001363606, - -83001.03229951607, - -66071.82137863227, - -47944.87004227133, - -31194.806658813643, - -17405.24843406146, - -6058.097428144672, - 2158.0169711921485, - 8507.296177751105, - 13919.878584407703, - 18399.09025168024, - 22571.989100896655, - 25781.12238575059, - 27354.672469778063, - 26870.47048681429, - 23902.768863171448, - 18678.118602415838, - 12053.427364353123, - 5111.027797186441, - -1221.5597972161002, - -5614.867011820184, - -8035.8461552884, - -8686.473744795745, - -8090.329841543634, - -7329.634959028667, - -7258.939427333437, - -8316.724847825333, - -10505.931053657298, - -13162.312836728213, - -15590.404503520565, - -16866.182361514413, - -16382.696456011638, - -14176.591074952321, - -10733.762399688883, - -6834.335250414593, - -3412.483220024756, - -1321.7173733874863, - -587.0647285650377, - -995.4463500918761, - -1803.9443223840974, - -2050.8024621360055, - -1042.4194215016005, - 1470.3152401959503, - 5102.6949009443615, - 8956.375854616419, - 12090.544998717995, - 13439.292991338018, - 12963.508551081615, - 11378.072304212232, - 10253.194583938945, - 11805.9326444599, - 18278.793134684667, - 31363.180189984116, - 51892.09495672563, - 77724.90621092288, - 107878.84921109439, - 138323.99876102371, - 163842.21602876738 - ], - "flow:branch102_seg2:RESISTANCE_55": [ - 53.169441892323256, - 60.338800596524024, - 64.3626856260411, - 64.96953401509901, - 62.4448718391874, - 57.24804373582875, - 50.16027851941166, - 42.41574439071324, - 34.6801380043152, - 27.311250505060013, - 21.025328334317603, - 15.333154731891346, - 10.07859173973588, - 5.160085345488983, - 0.05424392332505537, - -4.872318797866757, - -9.723810577934294, - -14.345727101048428, - -18.052200541704657, - -21.042350888732337, - -23.139027414406208, - -24.370292770867913, - -25.100528869912463, - -25.445378466965895, - -25.609333238803814, - -25.656807630422453, - -25.47647531066638, - -24.94035001931982, - -23.93084220667729, - -22.422853693693416, - -20.58168301963674, - -18.817947328624175, - -17.530475449881237, - -17.253337628811355, - -18.321140479215664, - -20.80437514663294, - -24.355100049815764, - -28.559556499393718, - -32.58385914782194, - -35.50653144546477, - -36.863732732305316, - -36.13768187930526, - -33.334376403323056, - -28.78911000240589, - -23.319759301893384, - -17.326576367568798, - -11.623293995315596, - -6.7907153876403425, - -2.736546945501819, - 0.28143260675164594, - 2.6106704777657033, - 4.546434802483585, - 6.12669523961078, - 7.556645918454294, - 8.66176344332512, - 9.262336359772933, - 9.214751351917782, - 8.366168112408248, - 6.756585271274332, - 4.646723848134854, - 2.346415867199276, - 0.15842687827924037, - -1.44256998380135, - -2.429288887560193, - -2.826489111693305, - -2.759944079694974, - -2.566104947776042, - -2.5270063795470175, - -2.8087448423958192, - -3.4485837073125016, - -4.2698194376247605, - -5.062195049562419, - -5.537794869248952, - -5.479753359543489, - -4.8676738910173425, - -3.8233158449405513, - -2.574465214406314, - -1.4203576658417965, - -0.639480779806046, - -0.28162487438565836, - -0.31318624027790365, - -0.5213455238670707, - -0.6079224658107925, - -0.3390519869032314, - 0.3965917686998301, - 1.5075246240120326, - 2.7441252925419612, - 3.8181451927347627, - 4.3617741672253, - 4.333584314808715, - 3.91306687913482, - 3.552370202986867, - 3.936797493652178, - 5.7965045718616635, - 9.720373471887664, - 16.061209971694716, - 24.264732811316247, - 34.03335978080939, - 44.2124518769244, - 53.169441892323256 - ], - "pressure:branch102_seg2:RESISTANCE_55": [ - 160141.6860452805, - 181735.16436463367, - 193854.75242396208, - 195682.52643735553, - 188078.4658499944, - 172426.0763394063, - 151078.35043419743, - 127752.49428705033, - 104453.527715056, - 82259.08620110933, - 63326.441077413794, - 46182.114458354874, - 30355.83253690132, - 15541.723553108093, - 163.37792969716568, - -14674.996002792794, - -29287.262858414924, - -43208.06921690173, - -54371.641467114874, - -63377.711515240655, - -69692.71693871195, - -73401.17997942441, - -75600.5869310568, - -76639.24360936976, - -77133.06097255887, - -77276.0496677041, - -76732.90456957162, - -75118.14231079638, - -72077.5935023356, - -67535.66463471108, - -61990.22038051704, - -56678.003489674404, - -52800.25134370463, - -51965.53658362249, - -55181.66492241326, - -62660.94949515469, - -73355.42083886442, - -86018.87414542478, - -98139.72003620975, - -106942.55213007251, - -111030.32312487706, - -108843.52176650506, - -100400.21204862246, - -86710.26912159285, - -70237.06549973138, - -52186.12522798295, - -35008.339970530964, - -20453.037927924914, - -8242.23889132125, - 847.6502771009878, - 7863.110033478309, - 13693.462049857999, - 18453.067601194783, - 22759.95337094531, - 26088.470229734026, - 27897.343071164632, - 27754.021209636536, - 25198.16307217615, - 20350.241017043256, - 13995.52384119673, - 7067.198371156499, - 477.16783361986745, - -4344.894007201971, - -7316.804624973588, - -8513.136791089264, - -8312.709003192782, - -7728.882573909838, - -7611.121122682573, - -8459.692611465145, - -10386.831038695896, - -12860.320881961085, - -15246.886585129905, - -16679.35144270245, - -16504.535516599106, - -14661.005951590983, - -11515.49130292507, - -7754.062962234368, - -4277.9924576967505, - -1926.0599063469042, - -848.229370316303, - -943.2894305319121, - -1570.2468980829601, - -1831.0090381794262, - -1021.1947860894466, - 1194.4995518260055, - 4540.531674807336, - 8265.064206561083, - 11499.917752917541, - 13137.280445839831, - 13052.37508789851, - 11785.813529915607, - 10699.426842121995, - 11857.288055214703, - 17458.562329599827, - 29276.910597073795, - 48374.95285362297, - 73083.24265866315, - 102505.48854964373, - 133164.01932721428, - 160141.6860452805 - ], - "flow:branch103_seg0:RESISTANCE_56": [ - 18.810249305285378, - 21.195928487768814, - 22.45199155331543, - 22.49606325523648, - 21.477583650135905, - 19.564564607099623, - 17.031719982605576, - 14.318228105281525, - 11.657052381608732, - 9.1268242021692, - 6.995898994286433, - 5.064686823540658, - 3.2601305707080344, - 1.571955156805712, - -0.20326685912359255, - -1.9074127220801884, - -3.5766772971461354, - -5.171483233983941, - -6.415687596018539, - -7.4112481431025925, - -8.100977795690257, - -8.487454086136463, - -8.717242360147539, - -8.822212422171187, - -8.870833100506939, - -8.883188044419402, - -8.811033910928778, - -8.608750491130518, - -8.23741870801313, - -7.69389025041406, - -7.041202802677155, - -6.43609966748252, - -6.016524580670186, - -5.967449771918382, - -6.401266710588124, - -7.327853142994154, - -8.60502153797133, - -10.08384811329905, - -11.467979281982466, - -12.422914945399873, - -12.812675976519856, - -12.465014819184077, - -11.397316952166213, - -9.73983611986271, - -7.809216611732551, - -5.720941878271654, - -3.757422229914597, - -2.133467458461755, - -0.7706737824243683, - 0.2288700546103685, - 0.997733249855036, - 1.6532059561577683, - 2.184777415660369, - 2.6709558755949434, - 3.042058775844631, - 3.2253563763973596, - 3.1788319661347737, - 2.8499065798184207, - 2.258679091850598, - 1.5056286553219898, - 0.7048152553810637, - -0.04523021853392852, - -0.5727052119183782, - -0.8809591282936954, - -0.9914920332560972, - -0.948636873689548, - -0.8757460294851461, - -0.8708415474395467, - -0.98458641320385, - -1.2235775256162158, - -1.5157574415387185, - -1.7869107183666462, - -1.937010832985592, - -1.8912978054011456, - -1.6530365007216663, - -1.2723498288092012, - -0.8329340817242925, - -0.4378548779910215, - -0.18650753013978716, - -0.08403422936684603, - -0.11178093473136709, - -0.19155643672143396, - -0.21521289114241024, - -0.10459135791614982, - 0.1720732687222481, - 0.5742478334462024, - 1.006393878389372, - 1.3693713653528918, - 1.5332101987067557, - 1.4951202438070759, - 1.3322153962817807, - 1.2131587588404191, - 1.3840574365405798, - 2.0996049724984305, - 3.554046896613566, - 5.8660393852237425, - 8.789130644488411, - 12.226922651552128, - 15.779288438221464, - 18.810249305285378 - ], - "pressure:branch103_seg0:RESISTANCE_56": [ - 163838.07425559926, - 184617.44175393024, - 195557.8046626197, - 195941.67106729976, - 187070.67023897072, - 170408.19272797715, - 148347.0079488308, - 124712.37788765696, - 101533.42375758186, - 79495.02832652898, - 60934.578819672526, - 44113.63838986368, - 28395.876410655237, - 13691.796505583005, - -1770.463018239518, - -16613.646216182337, - -31153.01190789677, - -45043.839682807935, - -55880.91277779445, - -64552.28763263917, - -70559.86234379609, - -73926.0873280793, - -75927.55300189678, - -76841.84672216255, - -77265.33490555582, - -77372.94699433468, - -76744.48141214492, - -74982.58419241132, - -71748.26851330402, - -67014.1124502573, - -61329.17692428987, - -56058.70279141397, - -52404.18587814999, - -51976.74219945015, - -55755.30625022614, - -63825.91362245401, - -74950.10485124384, - -87830.74743749462, - -99886.58899035215, - -108204.11937461948, - -111598.95459036624, - -108570.8110720696, - -99271.11708184071, - -84834.38829250792, - -68018.60997937893, - -49829.6479250221, - -32727.30798636593, - -18582.59261790666, - -6712.601536662361, - 1993.467943651059, - 8690.299188703562, - 14399.4944356577, - 19029.504534973006, - 23264.13967071551, - 26496.46177026967, - 28092.991694080927, - 27687.7620950667, - 24822.807941977037, - 19673.19128865735, - 13114.08984689497, - 6138.970955328234, - -393.95713381937674, - -4988.286838414003, - -7673.191606076454, - -8635.93792575639, - -8262.667656907417, - -7627.785292963654, - -7585.067045025537, - -8575.789680373275, - -10657.412469440002, - -13202.312007130935, - -15564.068620907747, - -16871.447025394595, - -16473.284604138342, - -14398.018471575948, - -11082.22131181373, - -7254.891400786542, - -3813.7346746006465, - -1624.4885475107794, - -731.9417242994705, - -973.6167122318343, - -1668.4647393212301, - -1874.5134669675979, - -910.9951913272537, - 1498.7655145239025, - 5001.723137761355, - 8765.733632865891, - 11927.283035911416, - 13354.326266935346, - 13022.56113410971, - 11603.652959513742, - 10566.664566155587, - 12055.19934274423, - 18287.648919941887, - 30955.900153417035, - 51093.45340321963, - 76553.70302663893, - 106497.01813040885, - 137438.27574445916, - 163838.07425559926 - ], - "flow:branch104_seg0:RESISTANCE_57": [ - 36.16283519086192, - 40.75800884397484, - 43.174594435644394, - 43.26272095128933, - 41.28336732385547, - 37.58461847856874, - 32.702818523295335, - 27.452357190198125, - 22.3241358034363, - 17.466984943457753, - 13.355934248874915, - 9.652959473769116, - 6.205119749709231, - 2.9748433260607245, - -0.39982938264062445, - -3.6635911468902354, - -6.862948490195421, - -9.894884724640105, - -12.292611305781628, - -14.205199556330491, - -15.524267309637393, - -16.272680726751165, - -16.709293874901125, - -16.90822266928694, - -17.001368236314914, - -17.023374259752714, - -16.88784463570248, - -16.505553789654947, - -15.798945936515242, - -14.76225802633415, - -13.51309418005771, - -12.3484992784935, - -11.537110856600124, - -11.43261407527134, - -12.252393317613409, - -14.020636777621254, - -16.481147790920346, - -19.32986419722354, - -22.00623676662849, - -23.878701609009337, - -24.657215158159147, - -24.01962516819439, - -21.988864575479887, - -18.81923117690696, - -15.088849670234941, - -11.052059299060137, - -7.261646731551204, - -4.102753363728521, - -1.4696856207311049, - 0.4651956234315951, - 1.9545796722667794, - 3.2091387088554444, - 4.22913997713192, - 5.161361964608491, - 5.873903103830767, - 6.229455853566101, - 6.141916694266408, - 5.511532402154413, - 4.3773415369272755, - 2.922219408928857, - 1.3744473953982361, - -0.07226763348745986, - -1.1050014664519616, - -1.709579240486272, - -1.9246639552856473, - -1.843896243828635, - -1.6998027618735956, - -1.6823138962147688, - -1.894030803801885, - -2.3480891210307533, - -2.91142454422924, - -3.438259583450397, - -3.7321135705346022, - -3.6523040642149005, - -3.1984590523819767, - -2.465688857173267, - -1.6157401784753258, - -0.8493251170366624, - -0.3572057832445536, - -0.15367159057883648, - -0.20482817909368375, - -0.3589715767063425, - -0.409860570782991, - -0.20398776250506218, - 0.3217300877253619, - 1.094534892429762, - 1.9292943925619181, - 2.631330992094956, - 2.958655864613295, - 2.8936847658003657, - 2.5807462975226243, - 2.3439711495518836, - 2.6578236558554806, - 4.014028131818745, - 6.7951579598170015, - 11.216825365176565, - 16.84392655267785, - 23.478951398162913, - 30.303672632720968, - 36.16283519086192 - ], - "pressure:branch104_seg0:RESISTANCE_57": [ - 162814.97992374125, - 183503.70917101632, - 194383.83879899548, - 194780.60848808938, - 185869.01681084023, - 169216.23735342346, - 147237.03805904428, - 123598.0243581971, - 100509.36834647764, - 78641.14602430773, - 60132.07081569642, - 43460.26506581586, - 27937.147132991417, - 13393.558714423449, - -1800.141293235652, - -16494.48987839922, - -30898.872136310332, - -44549.47874765171, - -55344.699949498005, - -63955.69562977957, - -69894.49961567481, - -73264.0616215036, - -75229.81349287237, - -76125.44536169822, - -76544.81219357427, - -76643.8893329945, - -76033.6978780904, - -74312.51987598899, - -71131.17795918719, - -66463.72529978002, - -60839.64783241276, - -55596.322896281, - -51943.2301859497, - -51472.75708103994, - -55163.62756117645, - -63124.74349475982, - -74202.63739102255, - -87028.33819829892, - -99078.09989027109, - -107508.44900729012, - -111013.53004438596, - -108142.92543421958, - -98999.88553185131, - -84729.32860702716, - -67934.13025183439, - -49759.3953404174, - -32693.92072194434, - -18471.71835454765, - -6616.926841344598, - 2094.4379966297047, - 8800.052551738781, - 14448.420642272953, - 19040.74547355775, - 23237.86396203926, - 26445.919156412503, - 28046.714932088667, - 27652.589681987218, - 24814.427095378327, - 19707.989450844278, - 13156.631439055232, - 6188.1382891287685, - -325.36866186865075, - -4975.018983619391, - -7696.99356393762, - -8665.363807507661, - -8301.725468590006, - -7652.977181909211, - -7574.237522915095, - -8527.44497682114, - -10571.739773224523, - -13108.03000417941, - -15479.9855182128, - -16802.996580678893, - -16443.672343501003, - -14400.337906361498, - -11101.205966292424, - -7274.504427874519, - -3823.894093180706, - -1608.238184883596, - -691.8715527386856, - -922.1925131391231, - -1616.188270255204, - -1845.3044472693753, - -918.4087276827743, - 1448.5168957964372, - 4927.8956032147025, - 8686.211303234795, - 11846.972185379767, - 13320.67833331819, - 13028.160667239741, - 11619.22604800726, - 10553.19953875232, - 11966.249407301577, - 18072.25308099105, - 30593.66061778843, - 50501.217258009805, - 75835.96665020777, - 105708.66416713827, - 136435.42673774823, - 162814.97992374125 - ], - "flow:branch105_seg2:RESISTANCE_58": [ - 39.807320363416046, - 44.77574152625257, - 47.327388153475866, - 47.3237738384681, - 45.07065863015566, - 40.95500677360158, - 35.566328261844646, - 29.809776710785588, - 24.208582029141066, - 18.912736064849614, - 14.450161890933936, - 10.4219134112792, - 6.660925917161056, - 3.127943356407106, - -0.5799064985895498, - -4.160854150168725, - -7.671981883066931, - -10.993130557656773, - -13.597079168798041, - -15.667327368334233, - -17.082028967225444, - -17.87029382074197, - -18.327635117411766, - -18.5306203231536, - -18.624753170150086, - -18.64408000471496, - -18.487610242771424, - -18.05590109297476, - -17.26429565705177, - -16.110002680096496, - -14.727601144341673, - -13.451961971511727, - -12.577725898302063, - -12.49472561159883, - -13.437143442509285, - -15.420036700721775, - -18.147800587885495, - -21.283140669594992, - -24.198558732577418, - -26.20010802939826, - -26.98277448177107, - -26.201378194151683, - -23.896593850995703, - -20.362711625493382, - -16.252663111538997, - -11.830931879660978, - -7.707840975221372, - -4.300590520048052, - -1.465465544573234, - 0.602478763295529, - 2.1958613083176677, - 3.548322484444598, - 4.648642233990228, - 5.661961321185452, - 6.43224851187628, - 6.805804569118872, - 6.690335604991541, - 5.977129206702731, - 4.713567835325724, - 3.1086895236899084, - 1.4130769465158752, - -0.16020000472292933, - -1.266002040990954, - -1.8994294151962259, - -2.1097345536827037, - -2.0028943528002876, - -1.8390197742313166, - -1.8254452662068499, - -2.06971563656468, - -2.5806386100250944, - -3.2042977545239872, - -3.7795577327190606, - -4.089612244479742, - -3.9828856191172632, - -3.4662410272930133, - -2.649827799927571, - -1.7147238329341754, - -0.8815541222149623, - -0.3591675151826749, - -0.15451078873159135, - -0.22609888615347795, - -0.40289165448512393, - -0.455597113628613, - -0.21854274253896785, - 0.3729530083402052, - 1.231208885720048, - 2.148827151370971, - 2.910003645380423, - 3.248982340520857, - 3.155084649127149, - 2.7964205688910693, - 2.537106696087651, - 2.9035143527573903, - 4.434898732289994, - 7.543984253891838, - 12.458979047610239, - 18.67065181385835, - 25.968338416803718, - 33.44374608694393, - 39.807320363416046 - ], - "pressure:branch105_seg2:RESISTANCE_58": [ - 165816.62317013758, - 186512.48544339277, - 197141.32012472345, - 197126.26476546013, - 187740.9569365195, - 170597.2887175261, - 148150.8525843792, - 124172.04842004615, - 100840.38029091523, - 78780.63633902563, - 60191.869915928626, - 43412.278773175625, - 27745.958097319766, - 13029.38756217968, - -2415.589305499762, - -17331.957498904972, - -31957.49217125724, - -45791.672750078025, - -56638.37033399432, - -65261.94917420747, - -71154.86132653322, - -74438.36333019564, - -76343.40965730397, - -77188.94060643308, - -77581.04916023221, - -77661.55471587295, - -77009.78294834733, - -75211.5068333633, - -71914.08969828597, - -67105.9046247783, - -61347.537760813364, - -56033.88745500898, - -52392.27399824904, - -52046.53790905831, - -55972.16115901523, - -64231.864680426545, - -75594.31240224262, - -88654.51088063285, - -100798.6284429196, - -109136.04333237497, - -112396.2253043441, - -109141.33417909627, - -99540.79956816178, - -84820.48149690627, - -67700.15389315171, - -49281.517955280426, - -32106.86252617554, - -17914.026645391536, - -6104.368386390338, - 2509.613637627367, - 9146.817815694898, - 14780.46869062843, - 19363.829329108597, - 23584.79039100857, - 26793.4067878296, - 28349.44732035576, - 27868.46358324896, - 24897.61612333745, - 19634.27566592327, - 12949.186094332137, - 5886.144694283196, - -667.3100216857734, - -5273.507019490253, - -7912.036497371008, - -8788.058484805035, - -8343.017694127946, - -7660.40130614751, - -7603.856955478592, - -8621.360459443851, - -10749.600225040012, - -13347.440330979774, - -15743.674645630332, - -17035.20071846101, - -16590.633024419392, - -14438.559968175252, - -11037.806457579143, - -7142.648966341201, - -3672.096648377943, - -1496.1053388244923, - -643.6117024951648, - -941.8105379181214, - -1678.2373955419464, - -1897.78096637162, - -910.3355678118465, - 1553.5285439838808, - 5128.576804048918, - 8950.897944494012, - 12121.563910471954, - 13533.573109826297, - 13142.444092141792, - 11648.43580185173, - 10568.26887936584, - 12094.532887542578, - 18473.484906201844, - 31424.320522177564, - 51897.636288044356, - 77772.23907300706, - 108170.6114931318, - 139309.2775818411, - 165816.62317013758 - ], - "flow:branch106_seg0:RESISTANCE_59": [ - 32.364188654800735, - 36.25779460994059, - 38.20143001082904, - 38.06469689496807, - 36.1355546007907, - 32.743908486689996, - 28.380750405799628, - 23.762551225487567, - 19.301322648161754, - 15.130087648293014, - 11.629545205779664, - 8.455492288156888, - 5.479911133635116, - 2.6601365403894985, - -0.32710967398519697, - -3.2118645266566013, - -6.056436450118232, - -8.749125779577124, - -10.830825571346853, - -12.490354278246365, - -13.62353379308047, - -14.248683093985353, - -14.622668183730859, - -14.801570216224972, - -14.900618137432632, - -14.945052509263462, - -14.842408014065679, - -14.509448982330602, - -13.878416046746034, - -12.950860466085631, - -11.84242593786805, - -10.830885992279443, - -10.16276638937945, - -10.147857907299317, - -10.970204070466771, - -12.632823040953472, - -14.875789006083101, - -17.4242383008137, - -19.755693507602533, - -21.309360232884554, - -21.856908396071095, - -21.128248599634883, - -19.181714930681363, - -16.26143676805316, - -12.929931943181247, - -9.378475224592062, - -6.089124467294978, - -3.4171013066287044, - -1.20247637642072, - 0.40201337720995767, - 1.6357134494065588, - 2.707525953393465, - 3.5886858240871318, - 4.404756721784988, - 5.035918679335911, - 5.340847988113965, - 5.24274271510546, - 4.660342431790759, - 3.6355914442952666, - 2.344215364370456, - 0.9910864435353186, - -0.24587648634130174, - -1.090816160948313, - -1.5581542237770367, - -1.6867234364887718, - -1.5713656603977204, - -1.4287285355482797, - -1.4240895451444977, - -1.6383612750051915, - -2.0717753621564974, - -2.5884887020223952, - -3.055577714225797, - -3.2991489569611794, - -3.194358046793229, - -2.7568877770812077, - -2.0836667591232376, - -1.3270314818074038, - -0.6638952212912776, - -0.26359537085974927, - -0.12698216135365475, - -0.20660039601612348, - -0.36102573492551826, - -0.4016809406055054, - -0.19588036723551808, - 0.3020488720224242, - 1.0124683420885556, - 1.7607514421348711, - 2.3678170595585613, - 2.6188088996492924, - 2.5194372755912933, - 2.2121016054082343, - 2.0045834809493828, - 2.329538725296807, - 3.623110777262183, - 6.208269046101129, - 10.266024041957156, - 15.338102994149844, - 21.248872055267995, - 27.299882968250138, - 32.364188654800735 - ], - "pressure:branch106_seg0:RESISTANCE_59": [ - 163552.9692180229, - 183229.3721002459, - 193051.5661395664, - 192360.5830493342, - 182611.63016742317, - 165471.88974586217, - 143422.59733477706, - 120084.45045779257, - 97539.55715103571, - 76460.15124313404, - 58770.10140274393, - 42729.97184260846, - 27692.82266015442, - 13443.044543660635, - -1653.0542140508057, - -16231.211159456116, - -30606.30299933786, - -44213.85360759201, - -54733.75835774115, - -63120.21446238951, - -68846.75611263634, - -72005.9585712053, - -73895.89848359692, - -74799.98290004037, - -75300.52322815103, - -75525.07307012848, - -75006.35739514588, - -73323.74335376768, - -70134.8078488533, - -65447.390192565545, - -59845.897746477356, - -54734.063695935474, - -51357.710096819224, - -51282.36983302754, - -55438.10993656408, - -63840.18273998032, - -75175.04879717913, - -88053.67997500653, - -99835.72789643757, - -107687.20870460296, - -110454.25251448376, - -106771.9580337507, - -96935.11754824282, - -82177.4429612236, - -65341.62755167721, - -47394.28156473074, - -30771.49244142957, - -17268.37866318723, - -6076.734500463898, - 2031.581332358539, - 8266.105302184416, - 13682.527735688842, - 18135.483894881447, - 22259.511839304247, - 25449.09935889055, - 26990.064726019507, - 26494.288086362132, - 23551.11850391014, - 18372.52223191083, - 11846.531591405292, - 5008.471935474131, - -1242.540940264104, - -5512.457732124236, - -7874.1584569444785, - -8523.885125928424, - -7940.922673098063, - -7220.103574595669, - -7196.660358923833, - -8279.486133176675, - -10469.751478945442, - -13080.97099292735, - -15441.41313624088, - -16672.304489348695, - -16142.741870374175, - -13931.978538126816, - -10529.844852605655, - -6706.175810873866, - -3355.005615928039, - -1332.0836198322506, - -641.7064783717086, - -1044.0585602335457, - -1824.449595848424, - -2029.901358412564, - -989.8847153114808, - 1526.409031758927, - 5116.525717793668, - 8897.98689185989, - 11965.80315318371, - 13234.194619263575, - 12732.018453377585, - 11178.892498602569, - 10130.196182318403, - 11772.362950125977, - 18309.450972107417, - 31373.591565181963, - 51879.52437289497, - 77511.36027607357, - 107381.53068631067, - 137960.41564290944, - 163552.9692180229 - ], - "flow:branch108_seg0:RESISTANCE_60": [ - 23.140927904459804, - 25.746604884966768, - 26.905518809311868, - 26.5945357180524, - 25.050122975885696, - 22.52068746177006, - 19.35951969222375, - 16.08438654917522, - 12.990375087427038, - 10.099484828093283, - 7.7105375176962925, - 5.543154606386326, - 3.487605677250713, - 1.5401317331168307, - -0.5481952860880902, - -2.562299910487163, - -4.536674758317992, - -6.39075265160773, - -7.797185987582319, - -8.905449310464062, - -9.638365976470043, - -10.023235024023432, - -10.250054859174952, - -10.351804156851177, - -10.40976260268865, - -10.431639622761477, - -10.344989968286827, - -10.089344818476416, - -9.618260893675078, - -8.940415165560742, - -8.145957368426773, - -7.44662296226571, - -7.0121329580003975, - -7.064580548243194, - -7.722685783189654, - -8.969185455520838, - -10.60369258371162, - -12.414760177577811, - -14.030078334387463, - -15.046484748964438, - -15.326771825281892, - -14.692568883078856, - -13.206030794206297, - -11.065383030579174, - -8.678820127260057, - -6.169073518244015, - -3.896676124952381, - -2.081780165085411, - -0.587241879641119, - 0.4710204312813201, - 1.292350296283024, - 2.0144578403946443, - 2.6066710997479987, - 3.1681459182373577, - 3.5881688562196667, - 3.766796107608647, - 3.657238183522251, - 3.2006103063662397, - 2.438963034607738, - 1.5040851906088906, - 0.5523047058323682, - -0.30192703612619565, - -0.8612872923949296, - -1.1461364131530845, - -1.1997675031984376, - -1.0932551303659395, - -0.9861739612711005, - -0.9930188958773049, - -1.1628327582580482, - -1.4865830605715762, - -1.8585049528256226, - -2.18237221837242, - -2.3309206700228424, - -2.2247626830800353, - -1.8847080319346783, - -1.3884722349024268, - -0.8481691426680087, - -0.3918760886513504, - -0.1370515105932849, - -0.06735172071407393, - -0.1463296755900113, - -0.2641414848843429, - -0.2842335959955594, - -0.11783788578224332, - 0.25803141510094135, - 0.7775620124242474, - 1.3052590679180542, - 1.7166715436045645, - 1.8617093384097496, - 1.7558658415101058, - 1.51797926559201, - 1.3787107229860884, - 1.6535681040033978, - 2.649447156391735, - 4.583433118330863, - 7.56114132098564, - 11.21961271332944, - 15.450293356453269, - 19.68340538250799, - 23.140927904459804 - ], - "pressure:branch108_seg0:RESISTANCE_60": [ - 168398.08398069863, - 187359.77008082447, - 195793.26441450152, - 193530.21960770932, - 182291.42452870618, - 163884.5526915625, - 140880.5228734505, - 117047.1593908823, - 94531.8305274948, - 73494.62827353916, - 56110.09851472686, - 40337.90774415976, - 25379.540360432693, - 11207.641889107057, - -3989.2538538616272, - -18646.028253116387, - -33013.68640438179, - -46505.93555143342, - -56740.64523993733, - -64805.55175060078, - -70139.03547184536, - -72939.7533367035, - -74590.33648558513, - -75330.7729471425, - -75752.54044366685, - -75911.74098561634, - -75281.18564006685, - -73420.83874366041, - -69992.7294362775, - -65060.000622628635, - -59278.6779637807, - -54189.57459914387, - -51027.76170516438, - -51409.42633601778, - -56198.5022572729, - -65269.36395174865, - -77163.7819187555, - -90343.04223302622, - -102097.82076865781, - -109494.27839849619, - -111533.94624635833, - -106918.80891207106, - -96101.171565637, - -80523.53425736974, - -63156.35598873476, - -44892.76163416737, - -28356.373436903243, - -15149.253846551539, - -4273.398533241825, - 3427.647260776743, - 9404.51975929832, - 14659.344775755133, - 18968.920372498585, - 23054.810274035834, - 26111.345356645932, - 27411.227842121127, - 26613.96748258715, - 23291.055803216586, - 17748.497537496518, - 10945.328782318737, - 4019.1583768679734, - -2197.1432863661157, - -6267.64537684131, - -8340.511527988656, - -8730.788566260835, - -7955.690887409951, - -7176.454040015152, - -7226.265088104386, - -8462.011950822049, - -10817.964608504839, - -13524.465156134629, - -15881.268963108696, - -16962.266006074085, - -16189.747217105638, - -13715.146719750297, - -10104.00555169238, - -6172.183721697021, - -2851.7085727563767, - -997.3330320137519, - -490.12298762932426, - -1064.850860804555, - -1922.1752964271077, - -2068.3869361761854, - -857.514195972336, - 1877.7119089291677, - 5658.370900640011, - 9498.457756029047, - 12492.333927176509, - 13547.783684886135, - 12777.55346104656, - 11046.436897582504, - 10032.970374959381, - 12033.125966054398, - 19280.204604870345, - 33353.95012538961, - 55022.93237411288, - 81645.87399997856, - 112432.8207109207, - 143237.46075847556, - 168398.08398069863 - ], - "flow:branch109_seg2:RESISTANCE_61": [ - 26.55901377383084, - 30.496754885174596, - 32.9927167836868, - 33.852044647105195, - 33.157658939677795, - 31.065283954003952, - 27.90049523825448, - 24.244468384242897, - 20.430108325815354, - 16.63158716821705, - 13.26326527481013, - 10.129864929144421, - 7.180985441303314, - 4.416031104729838, - 1.5794458724948313, - -1.1465139340583912, - -3.8110401593491146, - -6.371679229941946, - -8.483669957542752, - -10.24288083476977, - -11.564278390969275, - -12.437430156120607, - -13.031326936470471, - -13.392860013579075, - -13.61794683698312, - -13.746361466598099, - -13.733489689733464, - -13.527657033868547, - -13.078675110079207, - -12.374486077183311, - -11.487861168927454, - -10.612371951420645, - -9.932865148408249, - -9.710109555453403, - -10.119813850217614, - -11.21688839103245, - -12.858990926659517, - -14.872796185430948, - -16.88016099696575, - -18.427515271543903, - -19.28417996209647, - -19.16819369521312, - -18.037173559739863, - -16.01053144343247, - -13.452843838777007, - -10.53529543850162, - -7.6430075563002955, - -5.085275203316281, - -2.8372524776998227, - -1.0630954011257332, - 0.3697142420930933, - 1.5876324636285952, - 2.5918231529044755, - 3.485027525963826, - 4.188939665981371, - 4.624092569753239, - 4.730407472793481, - 4.431173451183977, - 3.7389267505029458, - 2.770398245091867, - 1.6687100677566011, - 0.5699773020206225, - -0.2854302531680831, - -0.8706817972702405, - -1.1860278006881062, - -1.267164120718789, - -1.2623319015980454, - -1.3018634163672616, - -1.4672216856150861, - -1.786875993662072, - -2.1890174984650996, - -2.5849093653074457, - -2.8438846749860356, - -2.8589988341435753, - -2.612579781009803, - -2.1507583399266714, - -1.5702586543322208, - -1.006471826207198, - -0.5955325480326324, - -0.36705220960119317, - -0.31912880524477805, - -0.363991593026663, - -0.3677550308936267, - -0.22089647178908023, - 0.13529336501949848, - 0.6688041528085962, - 1.2715672233905033, - 1.8180744833221822, - 2.1308555014750867, - 2.182109916272763, - 2.046707614680505, - 1.9234103822568447, - 2.129499608949606, - 3.0155519981982537, - 4.877652199228647, - 7.919407453146952, - 11.904594041659662, - 16.729715188307534, - 21.8795321284547, - 26.55901377383084 - ], - "pressure:branch109_seg2:RESISTANCE_61": [ - 143001.8240615466, - 164203.82223811446, - 177642.841748214, - 182269.72484644115, - 178530.9405824604, - 167264.9560048681, - 150224.7690846928, - 130539.60632248258, - 110001.92933539631, - 89549.53381729567, - 71413.4622415352, - 54542.27987155963, - 38664.61403312503, - 23777.25726063088, - 8504.217916243952, - -6173.180422975263, - -20519.801638709712, - -34307.06275376142, - -45678.66446381879, - -55150.7919492264, - -62265.59908989087, - -66966.91428789869, - -70164.63554433722, - -72111.23980928308, - -73323.17586206783, - -74014.59936248892, - -73945.29379315209, - -72837.02804613505, - -70419.5725404766, - -66628.00418458995, - -61854.14547814188, - -57140.24472429927, - -53481.57301606312, - -52282.18901846156, - -54488.1617995303, - -60395.14546255061, - -69236.72594782176, - -80079.66717152449, - -90887.93106456597, - -99219.35803765197, - -103831.90180156987, - -103207.39639366356, - -97117.63930402612, - -86205.58052729776, - -72434.21100431895, - -56725.241289550635, - -41152.28190227784, - -27380.671440659175, - -15276.63199730748, - -5724.02961973794, - 1990.654150453609, - 8548.297017786246, - 13955.16571761709, - 18764.450267673707, - 22554.52774791409, - 24897.523595386858, - 25469.95543299992, - 23858.788268589487, - 20131.521068801143, - 14916.668435006002, - 8984.843546946782, - 3068.9314955998525, - -1536.8434683970117, - -4688.016138217345, - -6385.935122832332, - -6822.797796306994, - -6796.7796559331755, - -7009.629378743387, - -7899.968693580684, - -9621.084903282002, - -11786.337318428134, - -13917.939778204658, - -15312.341768668972, - -15393.721007639178, - -14066.9257289517, - -11580.33834931348, - -8454.751133837444, - -5419.151036245805, - -3206.5287281324736, - -1976.320956258436, - -1718.2867424674341, - -1959.8416638932692, - -1980.1051602830591, - -1189.3739226768998, - 728.4607081413367, - 3601.045377891739, - 6846.505442943577, - 9789.067079401433, - 11473.175401668235, - 11749.144790809081, - 11020.097534960414, - 10356.227660557286, - 11465.874863103643, - 16236.650952743563, - 26262.7659131978, - 42640.50318022343, - 64097.962264960384, - 90077.88498213803, - 117806.06880309562, - 143001.8240615466 - ], - "flow:branch110_seg0:RESISTANCE_62": [ - 41.01109156316713, - 45.40490587912356, - 47.248660461281766, - 46.4483602938854, - 43.53067870131056, - 38.963765913853884, - 33.3600697411964, - 27.592031245253093, - 22.250291078530328, - 17.253815424950485, - 13.13320232043199, - 9.427404984071197, - 5.86759182675061, - 2.5228198776989315, - -1.0664486151233068, - -4.524151886275863, - -7.87699917460041, - -11.051997438079677, - -13.426706821256552, - -15.294966705761318, - -16.558470337270265, - -17.219887661311077, - -17.633513194500896, - -17.843601476574456, - -17.97430295105779, - -18.04348803921166, - -17.91391710874606, - -17.483003411782967, - -16.676216585810174, - -15.517637827739694, - -14.158536093087562, - -12.984035717783392, - -12.284459760992885, - -12.42999749374893, - -13.635305213136217, - -15.859895109513687, - -18.744399997861155, - -21.91691072322667, - -24.758936808927842, - -26.534437018786598, - -27.031102116324423, - -25.943694691518875, - -23.358931040910512, - -19.61109694315707, - -15.450114328659277, - -11.05292606170309, - -7.0259933761790565, - -3.8299005323042343, - -1.16153572028433, - 0.7501522320894807, - 2.2290280682177874, - 3.5591090628157627, - 4.634264653589846, - 5.641691575433772, - 6.400253453840024, - 6.70583649838905, - 6.498300245372506, - 5.67807643912756, - 4.320963257473593, - 2.659797293589631, - 0.9874737807101408, - -0.5148356703694211, - -1.4991413537368468, - -1.9936721971822187, - -2.0966268593970687, - -1.9224822402114365, - -1.74994712885176, - -1.7821653317650736, - -2.0983994100205776, - -2.680489944582201, - -3.335347191713065, - -3.897863706344473, - -4.15177239675904, - -3.9510105433805003, - -3.3411854980663374, - -2.4641553040956725, - -1.5172792252541583, - -0.7145577595706929, - -0.2751196850173025, - -0.15783980496709432, - -0.29011691280019664, - -0.48636850030463874, - -0.5046298141369647, - -0.1913503822455999, - 0.48677998087108804, - 1.4132678600869661, - 2.33987556531396, - 3.0566694902639164, - 3.3025942732722418, - 3.1067868085078127, - 2.6945116854830395, - 2.4771549641623385, - 3.011179956851326, - 4.835820993002634, - 8.32000286518832, - 13.66427466758289, - 20.153955929416007, - 27.604606704419442, - 35.072943298143365, - 41.01109156316713 - ], - "pressure:branch110_seg0:RESISTANCE_62": [ - 167873.21862302115, - 185858.68848342096, - 193405.84229621987, - 190129.92449338685, - 178186.7993242292, - 159492.77486452932, - 136554.82132966863, - 112944.15527451668, - 91078.4823393198, - 70626.10183035038, - 53758.94325958435, - 38589.775536726935, - 24018.17381538548, - 10326.813472473372, - -4365.35958184714, - -18518.988637958373, - -32243.40426283123, - -45239.819556763, - -54960.363250039125, - -62607.826121221326, - -67779.80309813877, - -70487.22323273397, - -72180.3420187757, - -73040.30928036317, - -73575.31764917611, - -73858.51721754843, - -73328.13657396511, - -71564.25108589632, - -68261.78104532299, - -63519.29949380798, - -57956.004932857155, - -53148.350448159305, - -50284.733239701476, - -50880.471775246435, - -55814.231852636985, - -64920.28223527642, - -76727.60316441815, - -89713.83606589558, - -101347.27590453997, - -108615.03990530486, - -110648.06963759132, - -106196.91807349498, - -95616.54635285742, - -80275.30697409344, - -63242.901409995546, - -45243.62074885238, - -28759.929987878833, - -15677.166953082335, - -4754.585466455601, - 3070.6441808339364, - 9124.217423875149, - 14568.719608084226, - 18969.719987844026, - 23093.482449442632, - 26198.550351783902, - 27449.41218671082, - 26599.891302313794, - 23242.41884553952, - 17687.264150643157, - 10887.511537505996, - 4042.0870441414386, - -2107.408453486393, - -6136.527330297577, - -8160.820789290406, - -8582.251428161433, - -7869.4145683204215, - -7163.166005666615, - -7295.046753412855, - -8589.507118438643, - -10972.214036063839, - -13652.781405140402, - -15955.364785401549, - -16994.704814442623, - -16172.913995942463, - -13676.679702931131, - -10086.678172132166, - -6210.7721931995675, - -2924.9431414511164, - -1126.1642953169064, - -646.0953629059094, - -1187.5533684279374, - -1990.8820387594583, - -2065.6321956668344, - -783.2662659778492, - 1992.5663774199754, - 5785.016087266448, - 9577.956288280764, - 12512.052862747863, - 13518.711873500071, - 12717.201158043632, - 11029.610088838721, - 10139.890478686724, - 12325.847763188995, - 19794.762924799885, - 34056.778463959796, - 55932.814298857826, - 82497.42498676424, - 112995.63117348115, - 143566.23180764218, - 167873.21862302115 - ], - "flow:branch111_seg0:RESISTANCE_63": [ - 25.358868834342363, - 29.124525801028263, - 31.482236334935802, - 32.24001091345573, - 31.44658253114321, - 29.29165110549823, - 26.129696536941164, - 22.493514836144826, - 18.745862485790326, - 15.121939157748495, - 11.92038483172431, - 8.99987991288103, - 6.309198832026535, - 3.773422357126863, - 1.1911570777148712, - -1.3269574292350887, - -3.8249747325697165, - -6.195062612901242, - -8.18032504386928, - -9.822134781234755, - -11.023528007801199, - -11.803158204129355, - -12.301356236113756, - -12.584148326313253, - -12.752943561073273, - -12.843835724762291, - -12.819697292897503, - -12.624948744843895, - -12.201455098803091, - -11.53164640360757, - -10.681438829752958, - -9.827086790278797, - -9.161770940769037, - -8.936339332027135, - -9.326753913214342, - -10.39307175702287, - -12.013733260243631, - -13.998743561155377, - -15.967296664468071, - -17.502708232527546, - -18.333532522519157, - -18.199644003841726, - -17.064336387110362, - -15.055619788590043, - -12.51120428084323, - -9.641600358168198, - -6.839150402866129, - -4.3746700956134195, - -2.2720572891149, - -0.6482755942616699, - 0.6331839230568822, - 1.6914198371435711, - 2.564251613826904, - 3.3447202087106747, - 3.970071487906876, - 4.361439012706803, - 4.443755123700808, - 4.143408423376588, - 3.467548837062511, - 2.5179822978383366, - 1.436054301528481, - 0.3778623997647188, - -0.45018793728649437, - -1.002379603860145, - -1.2660922286329208, - -1.297811921261988, - -1.2416377105588239, - -1.2304966870384064, - -1.3546614252616886, - -1.6438904086660615, - -2.0322306153199254, - -2.426398760629873, - -2.6900958855928474, - -2.717157904756229, - -2.48090722858149, - -2.0240209113477436, - -1.4457040408426747, - -0.8839857673860988, - -0.4728756457224583, - -0.25427877621046346, - -0.22407469601809332, - -0.29426648661873134, - -0.3317771573272305, - -0.2211672802871394, - 0.10196259225361665, - 0.6119138830124197, - 1.2049806256731181, - 1.7430559597157438, - 2.060119138551658, - 2.1133097612580145, - 1.9621285399769823, - 1.8022622208233048, - 1.9452261348623288, - 2.738521109308815, - 4.483323285966482, - 7.365318706440951, - 11.201163672782933, - 15.865230706573143, - 20.822970303144935, - 25.358868834342363 - ], - "pressure:branch111_seg0:RESISTANCE_63": [ - 144386.38080954622, - 165826.98939275634, - 179251.14065168423, - 183565.69937970012, - 179048.13776044652, - 166778.55462272253, - 148775.26041348305, - 128071.84816061663, - 106733.7528798308, - 86100.13640878895, - 67871.37214018701, - 51242.82541269235, - 35922.83201253767, - 21484.822567223753, - 6782.118735272466, - -7555.328352660652, - -21778.347525332672, - -35272.97196923954, - -46576.5068089494, - -55924.51706542823, - -62764.91759930717, - -67203.91616635582, - -70040.51787893962, - -71650.65777485396, - -72611.73112572079, - -73129.24595041365, - -72991.80839993511, - -71882.96406602228, - -69471.70845177991, - -65658.00311792438, - -60817.15649626964, - -55952.7124343996, - -52164.588120440596, - -50881.04293082646, - -53103.95550477179, - -59175.274192759665, - -68402.87225701388, - -79704.97153796097, - -90913.36809048371, - -99655.57661774557, - -104386.0601856096, - -103623.73601531581, - -97159.60865394783, - -85722.53227538204, - -71235.33456797864, - -54896.60402528037, - -38940.2295872396, - -24908.16078854175, - -12936.465388510347, - -3691.1018166487897, - 3605.17401758588, - 9630.47643449597, - 14600.139005573197, - 19043.91118196426, - 22604.488293175298, - 24832.82666431412, - 25301.511818465904, - 23591.42083092231, - 19743.263397689618, - 14336.694325853268, - 8176.495749796678, - 2151.4439268733845, - -2563.2455206695145, - -5707.272045301013, - -7208.778745518502, - -7389.381896590723, - -7069.541487649449, - -7006.107583119933, - -7713.067238668995, - -9359.857023014034, - -11570.958682473836, - -13815.243011693481, - -15316.661460285255, - -15470.74510770338, - -14125.599142421424, - -11524.214900174815, - -8231.438694785687, - -5033.170307152851, - -2692.4230534427693, - -1447.7929774210859, - -1275.8193041049935, - -1675.4719334681063, - -1889.0473110097844, - -1259.265283588405, - 580.5467810748487, - 3484.068296280052, - 6860.826191542622, - 9924.478225584551, - 11729.74821531002, - 12032.60089993887, - 11171.816866955474, - 10261.582290375038, - 11075.579250149076, - 15592.381281934133, - 25526.80198350421, - 41936.08628519209, - 63776.32591317663, - 90332.23277405603, - 118560.22993044999, - 144386.38080954622 - ], - "flow:branch114_seg0:RESISTANCE_64": [ - 22.946650948440034, - 25.969379718971062, - 27.63604150047433, - 27.83034990910448, - 26.701249485818337, - 24.44942481084091, - 21.40471889669909, - 18.086346863377532, - 14.799772914477138, - 11.658131188654734, - 8.977571504967761, - 6.549883081674564, - 4.290395466059363, - 2.1778536166369946, - -0.01946975690520511, - -2.137904471378961, - -4.214909326032764, - -6.192727972204773, - -7.767174723518805, - -9.035748170184508, - -9.927065430554778, - -10.447946625916082, - -10.762098413391444, - -10.914287579348606, - -10.989200900890928, - -11.01303071673122, - -10.933993026046428, - -10.69822102017587, - -10.257370014549087, - -9.605485671376643, - -8.814194926456347, - -8.067496595652303, - -7.533801772925777, - -7.438231896489182, - -7.9230605577535895, - -9.010712912100846, - -10.545368011732794, - -12.345269069891975, - -14.05737196036812, - -15.280491861479149, - -15.827676579593042, - -15.483870157574536, - -14.253317092818252, - -12.284901881356795, - -9.940724363154597, - -7.377053813466686, - -4.9418374680804105, - -2.891493026511525, - -1.1632315458787332, - 0.12331215220965536, - 1.119441014653645, - 1.9581918295977958, - 2.638498708836272, - 3.2549771759192097, - 3.729175004772736, - 3.977207172864973, - 3.945339255310907, - 3.5690425978865696, - 2.8689869559102967, - 1.9588749448781368, - 0.9775312666431448, - 0.04799153762698767, - -0.6271599783852162, - -1.037388843318814, - -1.20131403603572, - -1.1718847384744175, - -1.0937234480549356, - -1.086691355679798, - -1.2177884607261955, - -1.4997979783881115, - -1.8527338823150925, - -2.187742485095545, - -2.3825119528806673, - -2.3453820361174613, - -2.07294680644011, - -1.6206999620237141, - -1.0873642858312635, - -0.5980711349885482, - -0.27446392601263403, - -0.1297438131726421, - -0.1466669748474743, - -0.23390232802644342, - -0.2629371530235124, - -0.1363102265762825, - 0.1892690017559269, - 0.6716924440742604, - 1.1993651006512267, - 1.6514371421877996, - 1.872766362864135, - 1.8496409597044048, - 1.6670805727467701, - 1.5233591996419826, - 1.7140522432830323, - 2.5502818575486144, - 4.278213355651792, - 7.046372823129049, - 10.58963590453999, - 14.79139642834315, - 19.156664661141825, - 22.946650948440034 - ], - "pressure:branch114_seg0:RESISTANCE_64": [ - 157102.4860397311, - 177797.36676725955, - 189208.03884529046, - 190538.35646431014, - 182808.05700207863, - 167391.11204747358, - 146545.76649154446, - 123826.78683691756, - 101325.51032881462, - 79816.50117180157, - 61464.25485788995, - 44843.27223666682, - 29373.863546635886, - 14910.50777618803, - -133.29819759590237, - -14636.999016709593, - -28857.053477632868, - -42398.03716835422, - -53177.36611375289, - -61862.55693497945, - -67964.89220685366, - -71531.06536678749, - -73681.88148880978, - -74723.83294281039, - -75236.72125397324, - -75399.8702607167, - -74858.74477249662, - -73244.54981463883, - -70226.29721155872, - -65763.22104619895, - -60345.709641744164, - -55233.49678093832, - -51579.59610387702, - -50925.284273692, - -54244.62652364216, - -61691.15496035343, - -72198.05341396577, - -84520.93798207273, - -96242.71912800262, - -104616.71573521792, - -108362.97394657062, - -106009.12964324043, - -97584.24245114706, - -84107.63865506448, - -68058.40704146506, - -50506.43321975844, - -33833.9112572116, - -19796.385269999435, - -7963.97557569688, - 844.2471938323023, - 7664.167061767875, - 13406.610196135352, - 18064.27907506746, - 22284.951624901867, - 25531.51069598037, - 27229.643914316715, - 27011.462660595214, - 24435.176452092535, - 19642.299183520372, - 13411.287092517174, - 6692.592854456706, - 328.57038210039644, - -4293.802697846638, - -7102.403162948079, - -8224.704424175123, - -8023.218995226149, - -7488.09371421751, - -7439.949033033109, - -8337.495309467062, - -10268.251846057348, - -12684.600447175815, - -14978.211155759247, - -16311.685380928782, - -16057.478253140811, - -14192.271345024677, - -11095.998005570682, - -7444.556197712453, - -4094.6481622260194, - -1879.0962220018994, - -888.2810673996233, - -1004.1441960409657, - -1601.3943518813462, - -1800.1790546683405, - -933.2375132157002, - 1295.8157063060737, - 4598.690809184403, - 8211.36118752098, - 11306.437752463597, - 12821.751289049811, - 12663.424989703617, - 11413.539300159386, - 10429.561940563062, - 11735.127240432543, - 17460.309167696247, - 29290.4596619105, - 48242.45117789797, - 72501.1301473569, - 101268.16135885431, - 131154.63556129514, - 157102.4860397311 - ], - "flow:branch115_seg2:RESISTANCE_65": [ - 25.117063559326006, - 28.619843910876543, - 30.69932664502002, - 31.18746189186784, - 30.197649538047603, - 27.93371418657057, - 24.746674938119522, - 21.166098989094245, - 17.553701622209964, - 14.07418103001777, - 11.03859694916061, - 8.272198544846734, - 5.697829070777085, - 3.273503728849386, - 0.7765080000578554, - -1.6500712052724997, - -4.045232047155683, - -6.319425213409299, - -8.179323426017598, - -9.704169463430105, - -10.80657058317308, - -11.497301671594482, - -11.93786180387443, - -12.18343458234398, - -12.328938725452607, - -12.405611971246621, - -12.36470839803006, - -12.149970286544976, - -11.70714812686015, - -11.027064349641773, - -10.181368091707277, - -9.360837400312326, - -8.752963438841658, - -8.600880748551216, - -9.069228376412061, - -10.196798147582593, - -11.837262267712903, - -13.79454007765915, - -15.690156735022724, - -17.10003643063137, - -17.791820569908296, - -17.52510069031522, - -16.285412110700317, - -14.21903155956729, - -11.69445075229458, - -8.891401884116844, - -6.1913098498945, - -3.8711600715396814, - -1.896667373053425, - -0.3927690674992347, - 0.789436309053347, - 1.7846013955131406, - 2.6004896989224733, - 3.3365136758383236, - 3.919651352106626, - 4.259323022462789, - 4.292017618467721, - 3.9476551458191538, - 3.2422185025480736, - 2.286841578178086, - 1.2300868686052022, - 0.21468574786008943, - -0.5515706767634795, - -1.03971012532208, - -1.255123344979812, - -1.2554030620494103, - -1.189858685422384, - -1.1879512956320792, - -1.328543980157274, - -1.6314446591198404, - -2.0183852154793014, - -2.395851061387129, - -2.6306515926546, - -2.6208775509680327, - -2.354184803426622, - -1.8833240134274973, - -1.3115243094356248, - -0.7725537665747639, - -0.40009694702153276, - -0.2185139546012305, - -0.21394524291393102, - -0.2940179069893208, - -0.32336123284443385, - -0.1932816303736591, - 0.14919986396262624, - 0.6675344003354852, - 1.2477471969737168, - 1.7563266545131053, - 2.0299209726234513, - 2.0415004779648394, - 1.8692596296489894, - 1.7199614781861328, - 1.9087135515387894, - 2.7750179528036854, - 4.598746116354415, - 7.551208074304241, - 11.385720236604536, - 15.985349393276765, - 20.822134101809866, - 25.117063559326006 - ], - "pressure:branch115_seg2:RESISTANCE_65": [ - 148972.51254033783, - 169747.95026676205, - 182081.62800571465, - 184976.8205114303, - 179106.11699770848, - 165678.42722251327, - 146775.6903128064, - 125538.83695978372, - 104113.2467124342, - 83475.76559007619, - 65471.32862694334, - 49063.46629842218, - 33794.552085839234, - 19415.5687883327, - 4605.568143062682, - -9786.783106212612, - -23992.788028345858, - -37481.318213365106, - -48512.6121043516, - -57556.66874312903, - -64095.15061014688, - -68191.96493276973, - -70804.9833565146, - -72261.50687621374, - -73124.51053636475, - -73579.26935177279, - -73336.66503380513, - -72063.02586294964, - -69436.59106571069, - -65402.9273059726, - -60386.99476701075, - -55520.32241795907, - -51914.944299846204, - -51012.922435980225, - -53790.75204571708, - -60478.512399511965, - -70208.31465648614, - -81817.17937900832, - -93060.32392867527, - -101422.50050789143, - -105525.56060965138, - -103943.61093175139, - -96590.85960249824, - -84334.89258471072, - -69361.28131513624, - -52736.04040353458, - -36721.4496263077, - -22960.3449042107, - -11249.376478650549, - -2329.563513477839, - 4682.24759524302, - 10584.698850031697, - 15423.836602902718, - 19789.288833099698, - 23247.952883754097, - 25262.58895186725, - 25456.504777333073, - 23414.046961595996, - 19230.01211461396, - 13563.549531903742, - 7295.802354689347, - 1273.3285955105252, - -3271.4361440758166, - -6166.653570668488, - -7444.296894340004, - -7445.955932015039, - -7057.203861296492, - -7045.890888793333, - -7879.764060670679, - -9676.306681532817, - -11971.300550880187, - -14210.098702191975, - -15602.730647647455, - -15544.75955782205, - -13962.970803588816, - -11170.235308167086, - -7778.8182194484025, - -4582.1150791501295, - -2373.026103020961, - -1296.034178725189, - -1268.936566078534, - -1743.8577655608565, - -1917.8967796613322, - -1146.3780404369204, - 884.9234526444254, - 3959.231802324488, - 7400.54801825503, - 10416.997749216738, - 12039.720600132421, - 12108.4001255323, - 11086.817651326248, - 10201.311242963704, - 11320.82390208173, - 16458.985971718947, - 27275.750681217076, - 44787.17971497436, - 67530.1611879139, - 94811.14929405868, - 123498.73727363706, - 148972.51254033783 - ], - "flow:branch116_seg0:RESISTANCE_66": [ - 12.038776734845678, - 15.007970639402194, - 17.76832072611052, - 20.07529982003322, - 21.724592683118995, - 22.596147510232562, - 22.67186387512714, - 22.04634975184496, - 20.83292923612055, - 19.197136431669367, - 17.316133091526076, - 15.278959301911522, - 13.17673389938633, - 11.045055819133903, - 8.878887800310933, - 6.706238674026646, - 4.522343083219962, - 2.36410026008581, - 0.30032239918003034, - -1.6297477593450058, - -3.3633975837242405, - -4.868353514012082, - -6.141789030223386, - -7.192677096891765, - -8.050947017504246, - -8.742889644726063, - -9.282717362783476, - -9.670395717574706, - -9.894300881019491, - -9.941396214114157, - -9.817719750603425, - -9.558824917090803, - -9.23047494185936, - -8.936168362930632, - -8.784185423818506, - -8.87246311732402, - -9.253530156761824, - -9.93489095733911, - -10.839725814922867, - -11.83887758192678, - -12.77789927412214, - -13.481105106973994, - -13.813715239719844, - -13.694281430496087, - -13.116632863825986, - -12.119255604920923, - -10.815251824792297, - -9.325642037389953, - -7.762393333956613, - -6.232915260365751, - -4.785922416667949, - -3.4505664900442885, - -2.232157802969307, - -1.1225025326022136, - -0.13217077136172425, - 0.7235201918166663, - 1.4113146365335252, - 1.8926068629470634, - 2.1409412266082053, - 2.156069450958943, - 1.9605410167511161, - 1.6074811796407535, - 1.1779627397369217, - 0.7356877238447337, - 0.3414235311625633, - 0.027891284104324714, - -0.20876226196849088, - -0.3940478095891937, - -0.5655121325121683, - -0.7575145143437454, - -0.984219974047344, - -1.238227981923599, - -1.4862571964497684, - -1.6847258230966122, - -1.793897113903664, - -1.7909509489251396, - -1.6774288434946267, - -1.4836311128245274, - -1.2544034307432879, - -1.0346864437373307, - -0.8594554068686551, - -0.7357263141203076, - -0.644929881518794, - -0.5508850170791199, - -0.41292592283811697, - -0.20586944021251355, - 0.07145693512286955, - 0.39127894529820884, - 0.6995300282986846, - 0.9502746907091167, - 1.1158945294828482, - 1.2138246548290397, - 1.3189425281812077, - 1.5558010667641884, - 2.0802815614659833, - 3.0435591246511184, - 4.537120211294505, - 6.606507783600676, - 9.163041027255005, - 12.038776734845678 - ], - "pressure:branch116_seg0:RESISTANCE_66": [ - 68206.82100601576, - 85029.06811971343, - 100668.0909560715, - 113738.49782460145, - 123082.72154239424, - 128020.59732489541, - 128449.57550609605, - 124905.66645426987, - 118030.91848411725, - 108763.18061726344, - 98106.17941534621, - 86564.37985491037, - 74654.02426793046, - 62576.80176729361, - 50304.17327828974, - 37994.82546586466, - 25621.75975173791, - 13394.032203726676, - 1701.5047771144475, - -9233.489095686336, - -19055.645105631454, - -27582.114365756443, - -34796.882961421834, - -40750.788066513494, - -45613.396962698345, - -49533.662946602446, - -52592.107616727706, - -54788.53577014643, - -56057.0915164463, - -56323.91455215934, - -55623.21392491991, - -54156.42091448748, - -52296.12327119379, - -50628.70168908438, - -49767.62806406016, - -50267.77363302972, - -52426.74475797542, - -56287.058408527424, - -61413.48533133795, - -67074.27356846188, - -72394.38921566265, - -76378.46794958948, - -78262.90191565033, - -77586.23844500103, - -74313.51620261352, - -68662.78160790044, - -61274.825640168085, - -52835.30139480924, - -43978.56895003348, - -35313.16718241829, - -27115.093236801546, - -19549.508736595304, - -12646.499812863136, - -6359.64359222608, - -748.8259266735084, - 4099.171643797296, - 7995.935709863331, - 10722.742050873225, - 12129.70372687463, - 12215.414103698793, - 11107.629383760193, - 9107.335695739048, - 6673.858607947102, - 4168.107940016107, - 1934.3671030814319, - 158.02069133921614, - -1182.7622148424089, - -2232.5148981841144, - -3203.9621340700037, - -4291.769672889166, - -5576.190760816336, - -7015.29700133491, - -8420.529826234995, - -9544.972482757596, - -10163.492690837174, - -10146.800916268297, - -9503.630759047111, - -8405.651502655, - -7106.9405268063, - -5862.1132877297, - -4869.325379984465, - -4168.326576849708, - -3653.9108548191466, - -3121.0908369161316, - -2339.470622979613, - -1166.3726613139668, - 404.8459815255541, - 2216.8276373243184, - 3963.2531177697165, - 5383.8705678580955, - 6322.205329527602, - 6877.037658233837, - 7472.592848782211, - 8814.537159296175, - 11786.030693162775, - 17243.5702570529, - 25705.480959607623, - 37429.79073335753, - 51914.07009050682, - 68206.82100601576 - ], - "flow:branch117_seg0:RESISTANCE_67": [ - 25.75622952674866, - 28.867410181745775, - 30.439815422241036, - 30.33446713280679, - 28.825051602178448, - 26.14785962959951, - 22.667624288200333, - 18.973658537356375, - 15.41151385835503, - 12.016938294333732, - 9.176246654713587, - 6.6128840739502985, - 4.183810308006862, - 1.9223555077596202, - -0.4731289180059172, - -2.7669957888692993, - -4.993719727649324, - -7.140235966009288, - -8.778383726252375, - -10.078186920523004, - -10.983877544299087, - -11.472209721667795, - -11.76631283779232, - -11.901139102306177, - -11.961083116292539, - -11.9762184761942, - -11.870822247379312, - -11.583153805918023, - -11.064246023051261, - -10.316555117606617, - -9.426275308464648, - -8.621130502259756, - -8.085802276617857, - -8.063160901516804, - -8.706486274729663, - -10.01545392816778, - -11.777256821655586, - -13.786232224407772, - -15.64838721661193, - -16.88586191125524, - -17.343807392537368, - -16.799885410083057, - -15.281520130252092, - -12.9722319280459, - -10.342019530214719, - -7.518087554676044, - -4.86427441190546, - -2.714630830022572, - -0.9022059731359744, - 0.42037050867494624, - 1.427814249685734, - 2.311034598156257, - 3.0183036247783144, - 3.6646834480638577, - 4.157663764335813, - 4.379742853382541, - 4.287941846016879, - 3.8126904173216287, - 2.9846971017711605, - 1.9475142158203167, - 0.8656236766645011, - -0.1405298111403902, - -0.8314177878694848, - -1.2180434036533663, - -1.3485759861249367, - -1.2780718381003384, - -1.177407345295238, - -1.1808360501296382, - -1.3493541201179489, - -1.6868226103727715, - -2.0854267011148346, - -2.4450788580050076, - -2.6345633412166296, - -2.5493739286599357, - -2.2047225069712755, - -1.6759919894151514, - -1.0798972582102802, - -0.5500651110798763, - -0.22808049537143907, - -0.10824967106548314, - -0.15647396915480058, - -0.2675336628173276, - -0.2910891413400082, - -0.12435008604392396, - 0.268389469381674, - 0.8259021163728881, - 1.4095502620747309, - 1.889830086799305, - 2.0895833232765857, - 2.0135729682359838, - 1.7827635004548295, - 1.6343288001576708, - 1.9063932120625398, - 2.943483737548261, - 4.995730272894142, - 8.22961836786802, - 12.245328912467812, - 16.917372014358843, - 21.749446690708094, - 25.75622952674866 - ], - "pressure:branch117_seg0:RESISTANCE_67": [ - 167645.58548995387, - 187896.05351479648, - 198130.73467791453, - 197445.0296664578, - 187620.34433676177, - 170194.6797904138, - 147542.05934976056, - 123498.2818847035, - 100312.5190116513, - 78217.45236654759, - 59727.57935830399, - 43042.82275490044, - 27232.14311847794, - 12512.484184977713, - -3079.564669544255, - -18010.19161564515, - -32503.789681057442, - -46475.321157347105, - -57137.91601035765, - -65598.24857957431, - -71493.32863149345, - -74671.85030539082, - -76586.14793369053, - -77463.72312498736, - -77853.89472641316, - -77952.40977768386, - -77266.39273199075, - -75393.97797323218, - -72016.44171608878, - -67149.77132558973, - -61354.99924148506, - -56114.365230965625, - -52629.9494035752, - -52482.57819843753, - -56669.94027877391, - -65189.92370337687, - -76657.38159700311, - -89733.66891923876, - -101854.31195113368, - -109908.95246040622, - -112889.68914985155, - -109349.33713075332, - -99466.39847855065, - -84435.39511209048, - -67315.51749415601, - -48934.732025100275, - -31661.238727539967, - -17669.351580190498, - -5872.398692589269, - 2736.163691053695, - 9293.54801761024, - 15042.370541583468, - 19645.937610430294, - 23853.180903204247, - 27061.957004171, - 28507.45502901371, - 27909.92837580579, - 24816.548425303736, - 19427.194986630977, - 12676.240542977635, - 5634.286957168425, - -914.699197059214, - -5411.643101307011, - -7928.16352818856, - -8777.791428548657, - -8318.884616788018, - -7663.66612617643, - -7685.983337975862, - -8782.856250972913, - -10979.416216180682, - -13573.90374012931, - -15914.855716503593, - -17148.197619140283, - -16593.70539694803, - -14350.392208620711, - -10908.920424480535, - -7028.979452666022, - -3580.3372348714583, - -1484.5607795837304, - -704.5899115786774, - -1018.4786614690254, - -1741.3588232977627, - -1894.6798668268798, - -809.3864421764141, - 1746.9292113251477, - 5375.7419622659745, - 9174.668936599799, - 12300.778382524382, - 13600.958917411956, - 13106.212570285814, - 11603.88909073241, - 10637.737495738906, - 12408.586663603375, - 19158.9399391298, - 32516.876186377332, - 53566.03877936661, - 79704.0317145675, - 110114.04962644563, - 141565.70241616765, - 167645.58548995387 - ], - "flow:branch119_seg2:RESISTANCE_68": [ - 39.19449051061941, - 44.105741403587864, - 46.675890789875055, - 46.727840564261975, - 44.56355231388802, - 40.56459728855001, - 35.32310050619091, - 29.709641521467645, - 24.223561969697098, - 19.070910608347983, - 14.715733713908019, - 10.766003015896803, - 7.08418411550777, - 3.6023216261211366, - -0.060562419342056174, - -3.6011441433358655, - -7.10002269894425, - -10.417260550552127, - -13.020149188780959, - -15.111956220243105, - -16.560192304586106, - -17.387384510006115, - -17.889070387083944, - -18.138143156883324, - -18.2782925393772, - -18.345199493438027, - -18.23657186022012, - -17.85402835102407, - -17.113293196857867, - -16.00924998760091, - -14.674798125476046, - -13.433552632196504, - -12.58385243543931, - -12.505100127186637, - -13.429952397559182, - -15.379097740418041, - -18.060369819518865, - -21.151697229967, - -24.02431208893144, - -26.00496122226738, - -26.790818598469414, - -26.03676359917099, - -23.79013622986738, - -20.327914216705093, - -16.305179617651355, - -11.970115744247146, - -7.914154362588372, - -4.5682792510638075, - -1.7800410957309727, - 0.26302054953419735, - 1.8394297967077193, - 3.1910025391578447, - 4.301966830780474, - 5.324139446614056, - 6.12040264726367, - 6.529980313557787, - 6.454142919255752, - 5.790147600401202, - 4.580700142784552, - 3.0302790097823706, - 1.3790462045896323, - -0.15035836803043917, - -1.2230417859348537, - -1.8427984862755125, - -2.0433001507204365, - -1.9338940292490483, - -1.7716441524761835, - -1.7589360482181338, - -2.002345604197631, - -2.5115309864958624, - -3.1331486662328425, - -3.708913392540008, - -4.0271316262549135, - -3.932824332141036, - -3.4333355080493613, - -2.636081814433262, - -1.7202301241299753, - -0.9012908435387164, - -0.3854731139099987, - -0.18677421804110597, - -0.2579413670358893, - -0.43360398852299903, - -0.4881892932433353, - -0.2567172727916507, - 0.3258477708559744, - 1.173185392147434, - 2.084122530043528, - 2.8409178672599387, - 3.181119070937109, - 3.09835596806652, - 2.7492966037296465, - 2.4937126730865082, - 2.8489942763102674, - 4.347134424148873, - 7.3946601727119825, - 12.225623065509744, - 18.332974038768402, - 25.505474266301725, - 32.90025371930084, - 39.19449051061941 - ], - "pressure:branch119_seg2:RESISTANCE_68": [ - 160437.21401984207, - 180540.73878454906, - 191061.28903993033, - 191273.9382404358, - 182414.72428708788, - 166045.5562000045, - 144590.21566361512, - 121612.29941083101, - 99155.79321032678, - 78064.12908967219, - 60236.81615856374, - 44069.141032247135, - 28998.125713298887, - 14745.604246132443, - -247.90386880903728, - -14740.784383575137, - -29062.95875915618, - -42641.61209076609, - -53296.17593586734, - -61858.698066461344, - -67786.85173266481, - -71172.84836554503, - -73226.42996292264, - -74245.97482125489, - -74819.65689190029, - -75093.53123414314, - -74648.87907482362, - -73082.99024561846, - -70050.89356793222, - -65531.64572612035, - -60069.25200155165, - -54988.38562819101, - -51510.25565269105, - -51187.89399498529, - -54973.64856674619, - -62952.204849891416, - -73927.62044518803, - -86581.54070015454, - -98340.19144213456, - -106447.7041247445, - -109664.50236379118, - -106577.88274636108, - -97381.62502299473, - -83209.49912281337, - -66742.9926468973, - -48998.00957947635, - -32395.49387464561, - -18699.617889068628, - -7286.351487654092, - 1076.6381613194005, - 7529.450903027122, - 13061.92657802253, - 17609.504911135562, - 21793.626827130243, - 25053.019866161925, - 26729.569270143533, - 26419.13940865731, - 23701.166609638047, - 18750.46108762392, - 12404.027088975321, - 5644.934484070048, - -615.4711378330187, - -5006.352020626418, - -7543.240166826278, - -8363.965937994592, - -7916.1271449181895, - -7251.979764370376, - -7199.96090110416, - -8196.324178658228, - -10280.603961128798, - -12825.109768531012, - -15181.922866908586, - -16484.505097277863, - -16098.47126108707, - -14053.882995560563, - -10790.435510865273, - -7041.523566012504, - -3689.3091369510626, - -1577.8807600132725, - -764.5343721233128, - -1055.8472318070076, - -1774.8978236544785, - -1998.3352022675792, - -1050.836571695108, - 1333.812683101216, - 4802.271783425811, - 8531.066689220903, - 11628.903500069262, - 13021.469970843204, - 12682.69068132532, - 11253.864557751402, - 10207.66716504656, - 11661.963161018708, - 17794.392193751424, - 30269.0164172931, - 50043.893382301765, - 75043.48803006382, - 104403.1235061348, - 134672.6281807491, - 160437.21401984207 - ], - "flow:branch121_seg0:RESISTANCE_69": [ - 29.688153617726712, - 33.63959942603916, - 35.79528144818194, - 36.059400836289, - 34.56173773923277, - 31.586666572038375, - 27.59031036247258, - 23.244096265107054, - 18.934456089444947, - 14.86917767934063, - 11.400491772123027, - 8.27006039006454, - 5.39663569126563, - 2.688236372445347, - -0.11573463704842608, - -2.8414746772630006, - -5.538604244662954, - -8.066114564721554, - -10.113817438537355, - -11.756956056074094, - -12.881682433583777, - -13.541793346617938, - -13.91917661680865, - -14.08876881960281, - -14.169924422234816, - -14.187490020267196, - -14.08272964271474, - -13.780799924977718, - -13.212035052163802, - -12.364150898223455, - -11.332992535169586, - -10.34679207670369, - -9.63326411417145, - -9.49345910522348, - -10.10804199650492, - -11.513180634496429, - -13.522573017804616, - -15.883164442144507, - -18.12162279550209, - -19.745053498567927, - -20.471058090552084, - -20.02407651752964, - -18.41749178131809, - -15.856240535845892, - -12.769960255770286, - -9.409334176871564, - -6.255807379536362, - -3.5749238101617844, - -1.356104156287332, - 0.28105215202313555, - 1.5511919562719036, - 2.591292169117184, - 3.4478594685531623, - 4.231469481149978, - 4.8322269538343425, - 5.156712754661379, - 5.116183966247148, - 4.626582574537483, - 3.716153041067608, - 2.526006452717704, - 1.23613988222956, - 0.024819626979635356, - -0.8615890537272145, - -1.3987169460445257, - -1.5965891379687802, - -1.5416558815361225, - -1.4214414500502672, - -1.3926463613299875, - -1.5502317269492696, - -1.910709170254528, - -2.3757655899357935, - -2.8231101453840854, - -3.0838063144601264, - -3.04513565704658, - -2.6933136011957, - -2.098851433694181, - -1.3929803565580747, - -0.7492877007463068, - -0.31859793000448317, - -0.12826777360771766, - -0.15962460658242977, - -0.2858182363204705, - -0.33995983249483336, - -0.19027933062669153, - 0.2243575207548502, - 0.8515246937417961, - 1.5476881335802655, - 2.1438280155497353, - 2.4426811043226166, - 2.417007574209632, - 2.1670681772753086, - 1.9527177885055853, - 2.1626976298307876, - 3.206370637721167, - 5.417643518811465, - 8.966631594578908, - 13.573541191439855, - 19.065709931033552, - 24.707032542562466, - 29.688153617726712 - ], - "pressure:branch121_seg0:RESISTANCE_69": [ - 161598.96370860562, - 183107.52756192462, - 194841.36542025596, - 196279.02368499796, - 188126.92343702193, - 171932.97538055183, - 150179.95461705668, - 126522.58261495849, - 103064.29028356737, - 80936.11125570224, - 62055.31269697327, - 45015.705794654314, - 29375.041184799233, - 14632.64497969933, - -629.9683588583097, - -15466.753815767997, - -30147.806355832923, - -43905.58508951448, - -55051.66937124073, - -63995.62396143607, - -70117.7499582746, - -73710.87470602508, - -75765.05248242136, - -76688.17907957574, - -77129.92636548489, - -77225.5396688739, - -76655.30654935422, - -75011.83858137863, - -71915.92984875459, - -67300.71522860572, - -61687.899927433886, - -56319.80010725516, - -52435.914945276716, - -51674.92640896446, - -55020.23240619437, - -62668.70225346923, - -73606.25434942503, - -86455.45786759355, - -98639.86498382044, - -107476.5451844866, - -111428.34330649259, - -108995.32709647786, - -100250.34309293234, - -86308.90529268618, - -69509.62227238073, - -51217.01644869243, - -34051.69626615293, - -19459.074164666832, - -7381.564685992865, - 1529.8269168170712, - 8443.469266375005, - 14104.956966591895, - 18767.43580302698, - 23032.792538169062, - 26302.84382785498, - 28069.089375725198, - 27848.48252046396, - 25183.477530618336, - 20227.81504540915, - 13749.59286241035, - 6728.573509128095, - 135.09853294255996, - -4689.813318059154, - -7613.515205859802, - -8690.575826518254, - -8391.562373982204, - -7737.209536783156, - -7580.471716136765, - -8438.242532996344, - -10400.39828132993, - -12931.799743819787, - -15366.791744735605, - -16785.816696841892, - -16575.324045650017, - -14660.281420654524, - -11424.496822220182, - -7582.289723527851, - -4078.5330579766132, - -1734.1966089020245, - -698.1888991512774, - -868.8708411549788, - -1555.7697320326745, - -1850.4740086271827, - -1035.7310542231387, - 1221.225924692538, - 4635.030856172785, - 8424.397210788835, - 11669.313967558668, - 13296.035186688376, - 13156.288676533992, - 11795.815133632888, - 10629.0601665937, - 11772.025310020215, - 17452.960497081905, - 29489.391278945528, - 48807.29169952799, - 73883.68500906283, - 103778.73298877897, - 134485.65736364704, - 161598.96370860562 - ], - "flow:branch122_seg0:RESISTANCE_70": [ - 16.10169235456015, - 19.521303400868163, - 22.416050710199215, - 24.534352607843267, - 25.70016025501973, - 25.859702104392895, - 25.091381880864162, - 23.612562799187828, - 21.60694588888379, - 19.29577540237442, - 16.898476669992636, - 14.460737210846538, - 12.05321610074762, - 9.672497325956542, - 7.266922696204621, - 4.8747136705808085, - 2.476089979425566, - 0.13269325725359704, - -2.0471317980588593, - -4.028986844673858, - -5.733161256947956, - -7.1410456181755775, - -8.278625597598639, - -9.174210845857477, - -9.881374669367927, - -10.433413378404312, - -10.837642167458668, - -11.080760114122292, - -11.13728946927469, - -10.988722068489793, - -10.654305538166899, - -10.201728406953693, - -9.734599494966654, - -9.403592415892245, - -9.344580983642604, - -9.659586725490907, - -10.368561812265924, - -11.431089254505931, - -12.685992532395385, - -13.923893182325653, - -14.93638205301516, - -15.506653390590502, - -15.509122312323768, - -14.905406818954415, - -13.76699309588054, - -12.192743847045122, - -10.381102903825653, - -8.497686232277124, - -6.661761908887601, - -4.987626495796012, - -3.4826594281038314, - -2.1447445364553768, - -0.9546924630722544, - 0.11808006996697261, - 1.054209132664849, - 1.828157069726304, - 2.3908581599521654, - 2.6913839092306935, - 2.7073105490378655, - 2.4610551021859775, - 2.0037037444216486, - 1.4222494026438823, - 0.8351576125189276, - 0.31085127387239886, - -0.0918971015012129, - -0.36054175042426556, - -0.5338860504647177, - -0.6684309782001202, - -0.8226138889627798, - -1.0364493355778528, - -1.3099702605217163, - -1.613964237351636, - -1.8857448543462612, - -2.0614656189303653, - -2.0966224973212704, - -1.9795427971520245, - -1.7349916346791034, - -1.424467047433362, - -1.11844291428222, - -0.8706398525690386, - -0.7125851807618392, - -0.6291044215100794, - -0.5721372827461916, - -0.48035671069590763, - -0.29978076682049837, - -0.012083621307138125, - 0.3616080733089137, - 0.7625889085889803, - 1.1034819326958754, - 1.330473379481882, - 1.4289733133487674, - 1.4578514435545697, - 1.554835640984071, - 1.9112063620575208, - 2.7367321766423083, - 4.20544562132875, - 6.36801861641267, - 9.225976281287982, - 12.56756958641142, - 16.10169235456015 - ], - "pressure:branch122_seg0:RESISTANCE_70": [ - 90442.68645277344, - 109650.5313700251, - 125910.2336108054, - 137808.66702527518, - 144356.9709660009, - 145253.11238649473, - 140937.48247991863, - 132631.00341055583, - 121365.51793432844, - 108383.74787889102, - 94918.19824521686, - 81225.49435407984, - 67702.52595459773, - 54330.105407763534, - 40818.07032558125, - 27381.109410557336, - 13908.11752620551, - 745.3337448026862, - -11498.673261318554, - -22630.689115856498, - -32202.981806356976, - -40111.02283957411, - -46500.77288127021, - -51531.246325702836, - -55503.36270652062, - -58604.14632427658, - -60874.68639041462, - -62240.27205290208, - -62557.79561693604, - -61723.29732009009, - -59844.89045883324, - -57302.77931469134, - -54678.93128744299, - -52819.675203856656, - -52488.20989283781, - -54257.586981502376, - -58239.87716964434, - -64208.05953146604, - -71256.81075534702, - -78210.0587665455, - -83897.17608640507, - -87100.3717904114, - -87114.23964412844, - -83723.18919606727, - -77328.75604318628, - -68486.24880383909, - -58310.32007631064, - -47731.22939851777, - -37418.90170805097, - -28015.337106789557, - -19561.985643614025, - -12046.960863528195, - -5362.47676301038, - 663.2519432866327, - 5921.458685321127, - 10268.699277244446, - 13429.373146131615, - 15117.416583709573, - 15206.876005649141, - 13823.667105835217, - 11254.739285193931, - 7988.729007390978, - 4691.053364107067, - 1746.0415760771452, - -516.183054177055, - -2025.151379662544, - -2998.820720233703, - -3754.555238383593, - -4620.59567360267, - -5821.7024780819465, - -7358.0606886506885, - -9065.585048482653, - -10592.168005450283, - -11579.18587068757, - -11776.660922313084, - -11119.028023905694, - -9745.392034460428, - -8001.185446622207, - -6282.257764233238, - -4890.355961676891, - -4002.567969591439, - -3533.6592382848685, - -3213.676657826147, - -2698.14814581623, - -1683.8588951450135, - -67.87331101588967, - 2031.1408809044726, - 4283.437295478879, - 6198.222413363427, - 7473.226046339279, - 8026.4969968806, - 8188.704522527106, - 8733.4616304042, - 10735.184472773995, - 15372.13633864954, - 23621.852371083343, - 35768.955111512114, - 51822.01110636314, - 70591.63288853434, - 90442.68645277344 - ], - "flow:branch123_seg2:RESISTANCE_71": [ - 32.61502367049847, - 36.23669870800713, - 37.841043805230484, - 37.34161815650066, - 35.13613701178498, - 31.563040004393756, - 27.086996964472924, - 22.447157390569515, - 18.090191353427983, - 13.965635291149876, - 10.565452486129505, - 7.499342009091609, - 4.561807713993565, - 1.8170622727252235, - -1.124922538574775, - -3.943918436149811, - -6.669151143136631, - -9.265425932278053, - -11.201199066764264, - -12.712250832495844, - -13.726944256218662, - -14.23667140422285, - -14.534839548369613, - -14.658084063145337, - -14.710033206932724, - -14.712804085388816, - -14.558670823196184, - -14.166672724954223, - -13.477255537339621, - -12.506973069377874, - -11.375634938499916, - -10.393514581828933, - -9.788060451074662, - -9.863900589381077, - -10.795279737965028, - -12.552130190429473, - -14.83986675203905, - -17.372065698120053, - -19.64538761426268, - -21.05883703011327, - -21.447760904832073, - -20.56305959558332, - -18.47195603955679, - -15.448414415841818, - -12.100969706535963, - -8.57446206382226, - -5.343191504346756, - -2.787597335330788, - -0.6556988932799986, - 0.8609316832451709, - 2.020376091167178, - 3.0563228603289265, - 3.8829644028437182, - 4.6564216562512115, - 5.228808409802104, - 5.44565850576208, - 5.261858132653299, - 4.593565754628063, - 3.4968012674803055, - 2.162922003231195, - 0.8159098414701962, - -0.40406220343354227, - -1.2031116477819177, - -1.608578799193179, - -1.7031179554597247, - -1.5680514445549156, - -1.4271174312207817, - -1.4447205766447466, - -1.6851610731319868, - -2.136929124860437, - -2.64828224640579, - -3.088474351218681, - -3.2878186774229654, - -3.1275241098804516, - -2.6433965011513054, - -1.945935732326438, - -1.1908549541458213, - -0.5476838083465183, - -0.19202131009516357, - -0.09082972342722338, - -0.191559353230374, - -0.347760544750646, - -0.36619111024878864, - -0.12505325309924697, - 0.4052863201608712, - 1.131902550840207, - 1.8624236994195709, - 2.433424941960427, - 2.6299200543206367, - 2.4747076716431304, - 2.147578934753084, - 1.9690697487715423, - 2.379500404772164, - 3.8074638773202945, - 6.549615231261757, - 10.774971070115981, - 15.920210120621988, - 21.83815588972807, - 27.815646887477524, - 32.61502367049847 - ], - "pressure:branch123_seg2:RESISTANCE_71": [ - 172727.71905219287, - 191907.94944837585, - 200404.48993890002, - 197759.55385015803, - 186079.4235093755, - 167156.4602065069, - 143451.53475632594, - 118879.15012570997, - 95804.85120179615, - 73961.38519859742, - 55954.16784363887, - 39716.18272331567, - 24159.131360852127, - 9623.08121908922, - -5957.539879834533, - -20886.81714555855, - -35319.52871185973, - -49069.28486386279, - -59321.05354262927, - -67323.51668665545, - -72697.28806231286, - -75396.78043438193, - -76975.8657035856, - -77628.56318858286, - -77903.68355040178, - -77918.35799983445, - -77102.0750782742, - -75026.0705330604, - -71374.94767952168, - -66236.37475618198, - -60244.85818401553, - -55043.59232701699, - -51837.134099282666, - -52238.78010864297, - -57171.32277772194, - -66475.52486678513, - -78591.2762478447, - -92001.68957642508, - -104041.10163430999, - -111526.66706152266, - -113586.39065527939, - -108901.05175340292, - -97826.66005026102, - -81814.11768941671, - -64086.198950709295, - -45409.97085718033, - -28297.305264250237, - -14762.9918724597, - -3472.5522619735243, - 4559.45601662247, - 10699.82218564466, - 16186.150336269879, - 20564.007288173147, - 24660.20260341057, - 27691.53746783751, - 28839.965959866753, - 27866.567334475567, - 24327.32053574524, - 18518.904447614266, - 11454.739014764307, - 4321.022339065884, - -2139.895511325082, - -6371.625934904528, - -8518.961988419498, - -9019.637167686036, - -8304.330915433176, - -7557.95063050618, - -7651.176108064386, - -8924.538315171321, - -11317.081883561124, - -14025.185339413882, - -16356.423206271102, - -17412.14191796479, - -16563.22899648902, - -13999.310649202574, - -10305.589346264973, - -6306.715028929932, - -2900.5091620738326, - -1016.9363431158677, - -481.03018744381154, - -1014.4898400459625, - -1841.7244236264826, - -1939.3318812053226, - -662.2764829510223, - 2146.378379229262, - 5994.505715253575, - 9863.313323317305, - 12887.310582876356, - 13927.939984396055, - 13105.942088599062, - 11373.482804489342, - 10428.10607148372, - 12601.72862519907, - 20164.159853057245, - 34686.471823371496, - 57063.768973373335, - 84312.7268202485, - 115653.90518330014, - 147310.43243672667, - 172727.71905219287 - ], - "flow:branch125_seg0:RESISTANCE_72": [ - 27.77855151928287, - 31.98557186927411, - 34.62324086124198, - 35.491676109022805, - 34.6199941030983, - 32.20649670986638, - 28.650504248648684, - 24.57856852315421, - 20.352664650657474, - 16.274402384406837, - 12.696157008222539, - 9.442469067142772, - 6.478763927429809, - 3.7055724417544655, - 0.8913323406563426, - -1.8370256297337892, - -4.542811786728361, - -7.1164935315194695, - -9.27221718739715, - -11.049166384880833, - -12.335926413394047, - -13.156369431616966, - -13.659972932223834, - -13.922094889693751, - -14.059160313434216, - -14.114559778633279, - -14.053079464347421, - -13.813415728173037, - -13.329717181019454, - -12.575193509551719, - -11.621875611863226, - -10.654340155257993, - -9.884899543583792, - -9.598696655849237, - -9.990567208636895, - -11.136509123317056, - -12.907517495197082, - -15.105385362754506, - -17.30420098866663, - -19.043694600483196, - -20.01628710482099, - -19.91707650486011, - -18.701313147858126, - -16.50122052250842, - -13.678177746196893, - -10.482125412060537, - -7.352731699382272, - -4.58462471662048, - -2.231621044590682, - -0.4231591706822573, - 0.9914784322046755, - 2.1356268599733728, - 3.0740855759216807, - 3.906443453240239, - 4.564481940435018, - 4.975383104496259, - 5.050014310081341, - 4.703474210480806, - 3.9397188291836875, - 2.8723580362929906, - 1.6481646025945638, - 0.44334952245213105, - -0.5023828665097223, - -1.1413128963860641, - -1.4516540959335962, - -1.4921989812193124, - -1.4232659471258777, - -1.3943321676167988, - -1.5109722733241393, - -1.8122001719749947, - -2.231728632889151, - -2.666014587068203, - -2.9633419127200744, - -3.0043169229998594, - -2.7525064788327884, - -2.249665683135812, - -1.6027418323925335, - -0.9695784928390423, - -0.4954160017076969, - -0.23639470597044743, - -0.19493237328356217, - -0.2738152688893147, - -0.3261159476791106, - -0.220968864235435, - 0.11940265860291949, - 0.6704738545094718, - 1.3243178176997712, - 1.928173851836948, - 2.290649677593426, - 2.3608454993877777, - 2.1950447472817025, - 2.001872181213911, - 2.1227795325735292, - 2.944750194806152, - 4.808418165480035, - 7.925985427239298, - 12.125959386381556, - 17.25659896378582, - 22.720872221930968, - 27.77855151928287 - ], - "pressure:branch125_seg0:RESISTANCE_72": [ - 147415.8506975791, - 169741.76223279716, - 183739.40419190712, - 188348.0361696588, - 183722.17422174464, - 170914.1712150855, - 152043.14932681923, - 130434.10795751582, - 108007.98491442128, - 86365.36971434986, - 67376.25554946845, - 50109.51018278937, - 34381.652159508536, - 19664.816340179663, - 4730.142792389183, - -9748.76950558745, - -24107.89718947328, - -37765.97016602689, - -49206.013624728854, - -58635.968149584456, - -65464.575613704095, - -69818.52133317226, - -72491.05587495348, - -73882.09065659992, - -74609.47257310164, - -74903.46771841614, - -74577.20258450054, - -73305.34960379118, - -70738.44712291672, - -66734.32369612165, - -61675.23453607398, - -56540.69531014211, - -52457.41032486568, - -50938.58231332844, - -53018.169899544046, - -59099.48058578606, - -68497.90820185363, - -80161.60352419406, - -91830.32843218921, - -101061.51280085437, - -106222.88888302229, - -105696.39580863596, - -99244.55509998772, - -87569.05338226125, - -72587.66559691237, - -55626.78218354734, - -39019.644262699505, - -24329.790999383735, - -11842.81745196707, - -2245.6307372006886, - 5261.600354874233, - 11333.393323875049, - 16313.627439395323, - 20730.803204826694, - 24222.89685536361, - 26403.47652348035, - 26799.531107258295, - 24960.50420378644, - 20907.389728736212, - 15243.095131660142, - 8746.51749975095, - 2352.777356417183, - -2666.056852929162, - -6056.745306395546, - -7703.671061542943, - -7918.835583411591, - -7553.020186052429, - -7399.473745116199, - -8018.4621180828035, - -9617.025200198728, - -11843.38840400156, - -14148.067009614439, - -15725.930441988743, - -15943.3775609844, - -14607.06415329347, - -11938.577151309952, - -8505.466906969625, - -5145.38125721807, - -2629.08493591682, - -1254.5048166704807, - -1034.471564009467, - -1453.0891133495722, - -1730.6395482761081, - -1172.642607960478, - 633.6487516734225, - 3558.085941392587, - 7027.91999628408, - 10232.476969292631, - 12156.071947745304, - 12528.588735674162, - 11648.713523279708, - 10623.580944334379, - 11265.214833844815, - 15627.26748937497, - 25517.4231774435, - 42061.80021885103, - 64350.31780641649, - 91577.71292097801, - 120575.6428610724, - 147415.8506975791 - ], - "flow:branch126_seg0:RESISTANCE_73": [ - 29.661010760455813, - 34.13509835197898, - 36.90705826544446, - 37.79586750459689, - 36.87460065072979, - 34.33130246311094, - 30.553107060311117, - 26.26396365946178, - 21.835302965385747, - 17.474959698837708, - 13.67179065121652, - 10.21024592436772, - 7.016011597914388, - 4.047858418221865, - 1.008408957137515, - -1.9305752968349605, - -4.805824309365653, - -7.566240398118146, - -9.870176656629852, - -11.764533447038403, - -13.144294118169329, - -14.023262589102254, - -14.576588222353584, - -14.874207168086755, - -15.033929358432127, - -15.101827651816949, - -15.03778873823539, - -14.778508460688547, - -14.258097331268903, - -13.449880627487948, - -12.432949573709733, - -11.416355833548447, - -10.609970225227533, - -10.324984357620892, - -10.765694370339991, - -12.002877968489631, - -13.885501250718328, - -16.206291836728933, - -18.530781682211273, - -20.342898700679317, - -21.349735833783754, - -21.224658518965786, - -19.9154641371347, - -17.57214606619217, - -14.580487497131614, - -11.196983226026301, - -7.8901209091119195, - -4.9686612553851175, - -2.4601951477510458, - -0.5299236477672972, - 0.9898183716982251, - 2.2281949157482535, - 3.2406682719708404, - 4.150419220609108, - 4.857701894855148, - 5.288578660410038, - 5.36637033664587, - 4.993360790159829, - 4.175465941054339, - 3.043645570766132, - 1.7592048914901692, - 0.47943263691122634, - -0.5164501702789507, - -1.1799365181372572, - -1.5126212732900486, - -1.562889748671052, - -1.501746310642426, - -1.4871544131055123, - -1.624624219292996, - -1.9528811620574478, - -2.3998240120062126, - -2.855940532310278, - -3.1609341215150017, - -3.192611920347996, - -2.9182399949337583, - -2.3843612210984855, - -1.7011439639535264, - -1.0377490224109016, - -0.5477469925249928, - -0.27585917610447397, - -0.23168617261835175, - -0.3105491699753006, - -0.3541496846781815, - -0.22804680648839415, - 0.14534781144053327, - 0.7357008739431145, - 1.422897170142441, - 2.0590287736179516, - 2.4338257932322187, - 2.496487261136026, - 2.3230009974765204, - 2.134005823983106, - 2.2922236162496814, - 3.205383861422488, - 5.2278168843519905, - 8.583219566125686, - 13.071676233080769, - 18.54454352703927, - 24.32935948649299, - 29.661010760455813 - ], - "pressure:branch126_seg0:RESISTANCE_73": [ - 146342.84021967108, - 168417.29650919608, - 182093.71805760017, - 186478.965395311, - 181933.57720594123, - 169385.33725190474, - 150744.30540656054, - 129582.33515346439, - 107732.00815096781, - 86218.7487710894, - 67454.50082419845, - 50375.774446141855, - 34615.91624591078, - 19971.50746189739, - 4975.333850969647, - -9525.159964314926, - -23711.193954552527, - -37330.66005699357, - -48697.925268507, - -58044.388723055934, - -64851.914503878026, - -69188.60901298953, - -71918.63211943877, - -73387.03797294947, - -74175.08256016302, - -74510.08223972002, - -74194.12414329291, - -72914.87534979547, - -70347.24731526195, - -66359.63108398991, - -61342.25052608081, - -56326.534221390204, - -52347.952331951485, - -50941.87613229841, - -53116.27118226433, - -59220.34373355448, - -68508.91587325482, - -79959.33773024102, - -91428.0111614073, - -100368.71629902095, - -105336.2950132824, - -104719.18288432116, - -98259.82026232338, - -86698.25127840097, - -71937.87053819196, - -55244.18370034884, - -38928.63641233031, - -24514.606264594182, - -12138.222406653364, - -2614.5613290180536, - 4883.610777319274, - 10993.569139200496, - 15988.956106724407, - 20477.52660054201, - 23967.149938845803, - 26093.02926794858, - 26476.841368546822, - 24636.469949559294, - 20601.103245916656, - 15016.876567192567, - 8679.644885611822, - 2365.446489540867, - -2548.0852746707897, - -5821.624311376728, - -7463.03944587999, - -7711.05632973458, - -7409.384061915658, - -7337.3898960033075, - -8015.644660969408, - -9635.21365387963, - -11840.360558870418, - -14090.768934750453, - -15595.560138714614, - -15751.853499402105, - -14398.144849149257, - -11764.069539746122, - -8393.181247869687, - -5120.093195786477, - -2702.4989557920926, - -1361.0465151646144, - -1143.1037470173187, - -1532.2015803527138, - -1747.3197773754187, - -1125.1476773353133, - 717.1236246028313, - 3629.834340927874, - 7020.354596169039, - 10158.929554315724, - 12008.120089295813, - 12317.282081766036, - 11461.327685335042, - 10528.854726127876, - 11309.476845873045, - 15814.868281568919, - 25793.240061274235, - 42348.27800307096, - 64493.62908870547, - 91495.90997560498, - 120037.29733733335, - 146342.84021967108 - ], - "flow:branch127_seg2:RESISTANCE_74": [ - 30.539324862447764, - 34.5652097767291, - 36.79650625853272, - 37.06770670012317, - 35.56266577419423, - 32.563461729000274, - 28.52881069898537, - 24.132024521002247, - 19.77221556575251, - 15.655954912188047, - 12.138036855645618, - 8.94870981941874, - 5.995075059401896, - 3.2054082956205945, - 0.298545877221238, - -2.520173747772926, - -5.3123757628011985, - -7.961271124103528, - -10.082139277786311, - -11.799675229139288, - -13.006422483111258, - -13.72260091656357, - -14.160265177054466, - -14.384873549703922, - -14.512127024842918, - -14.5748041002186, - -14.503477643136916, - -14.22309122876985, - -13.665548482008138, - -12.820321003665324, - -11.784199721199226, - -10.796359152671425, - -10.091428186353252, - -9.968286836050998, - -10.617333587317097, - -12.072454152821008, - -14.128941693719588, - -16.541611128678415, - -18.82651608771843, - -20.465096478113697, - -21.192170625660015, - -20.724580528048115, - -19.077546432925022, - -16.449371376130937, - -13.32137273810464, - -9.910639781919317, - -6.681866257712495, - -3.9682971734084247, - -1.6982169393683832, - -0.011326992162085629, - 1.294500127797175, - 2.396243950494435, - 3.303830667862458, - 4.13139881851026, - 4.782866111996558, - 5.1419114105614, - 5.124729062482006, - 4.64838092998866, - 3.738274575981316, - 2.5434436859765945, - 1.2458848628555468, - 0.025862279979782715, - -0.8582007374360914, - -1.3930032738931526, - -1.591352053929647, - -1.535194978222032, - -1.4184649803372722, - -1.400967393756587, - -1.5746629693914087, - -1.955809068720697, - -2.4366057960743337, - -2.89522722873495, - -3.1658886215361774, - -3.124489140777948, - -2.7646829698894355, - -2.160822956891627, - -1.4476662844833694, - -0.7945447562448166, - -0.36246258337865017, - -0.17627128372332493, - -0.20788945300985162, - -0.3340648710277083, - -0.3824423663512797, - -0.2197610915546836, - 0.21364857226259215, - 0.8612067489582805, - 1.5752120596462433, - 2.1851241784564843, - 2.485906141233084, - 2.458311691784549, - 2.2083782868217954, - 2.0041833420039494, - 2.242288360856694, - 3.340599197910234, - 5.631303637283511, - 9.309278067538518, - 14.034162374706186, - 19.63741382637088, - 25.465443631632077, - 30.539324862447764 - ], - "pressure:branch127_seg2:RESISTANCE_74": [ - 154354.39046584183, - 174702.35214568753, - 185979.95602032065, - 187350.6798016868, - 179743.77703633934, - 164584.95101895527, - 144192.68290937055, - 121970.08127794373, - 99934.37299472638, - 79129.62675225794, - 61349.07332574739, - 45229.31190697856, - 30300.805952941984, - 16201.040654733177, - 1508.935351785061, - -12737.671328933471, - -26850.250504428168, - -40238.51729628256, - -50957.98514943852, - -59638.897909242085, - -65738.1400395779, - -69357.90852032207, - -71569.98755157129, - -72705.22183098618, - -73348.3969070017, - -73665.1845835206, - -73304.68048408184, - -71887.52819668376, - -69069.54937027226, - -64797.53049585115, - -59560.68031254854, - -54567.854520909124, - -51004.93392208944, - -50382.54268873457, - -53663.00864948138, - -61017.59978580469, - -71411.66980227518, - -83605.983910591, - -95154.54020034167, - -103436.38921068847, - -107111.22771395024, - -104747.89503289375, - -96423.31860645793, - -83139.77809741923, - -67329.98775905608, - -50091.178163068565, - -33772.04303071164, - -20056.89694017911, - -8583.269005967062, - -57.2498239203252, - 6542.76998866442, - 12111.295061431552, - 16698.495177517852, - 20881.25881219421, - 24173.958878336514, - 25988.675426891357, - 25901.830977104986, - 23494.232709238797, - 18894.297636522133, - 12855.284181999314, - 6297.054681559592, - 130.71528202670228, - -4337.589397308489, - -7040.632765365013, - -8043.143632257251, - -7759.3098792124965, - -7169.323435379987, - -7080.885680997268, - -7958.79227600203, - -9885.212526132991, - -12315.295251368812, - -14633.297761634958, - -16001.297037867715, - -15792.052346087154, - -13973.490133481144, - -10921.410735760144, - -7316.91509048785, - -4015.85405376216, - -1831.9884730952526, - -890.9249526082023, - -1050.7321281055163, - -1688.458398335645, - -1932.971950504749, - -1110.7347489771157, - 1079.840346635852, - 4352.782630240189, - 7961.567533541977, - 11044.235986780861, - 12564.47314776966, - 12425.00299104805, - 11161.768831358144, - 10129.709793198479, - 11333.159942062448, - 16884.333733851217, - 28462.202238460217, - 47051.725873577074, - 70932.62830148953, - 99253.04685507753, - 128709.5588198875, - 154354.39046584183 - ], - "flow:branch128_seg0:RESISTANCE_75": [ - 35.20062339883612, - 39.471615338041865, - 41.624489122234834, - 41.496932005201444, - 39.41810392845139, - 35.74057333420423, - 30.9710891972405, - 25.876797474792564, - 20.99675167860742, - 16.359670294458162, - 12.451019333371777, - 8.950611349915986, - 5.643120616188558, - 2.555074371392688, - -0.6905146267755125, - -3.836128631892385, - -6.890511652519949, - -9.790926292290933, - -12.04848634904289, - -13.827313218439478, - -15.049012368780872, - -15.715846438830875, - -16.10143129176392, - -16.27244310760345, - -16.346642047877122, - -16.356611997792083, - -16.207217836854323, - -15.811477774730974, - -15.098593249655393, - -14.074237481427522, - -12.853992548082994, - -11.746985852165343, - -11.00916967879514, - -10.972178723968451, - -11.843251046922587, - -13.624301002939344, - -16.045952969264057, - -18.79388645016188, - -21.342110782872723, - -23.053601555838753, - -23.682101486642704, - -22.942087348410514, - -20.864369744979456, - -17.71612764473757, - -14.090958024833826, - -10.209754964247182, - -6.58999712325552, - -3.629503024787483, - -1.1631775369876511, - 0.6361925867879843, - 2.012672075058101, - 3.197630929077595, - 4.150484638944828, - 5.0258534240029045, - 5.691361478518431, - 5.9921260753660475, - 5.863652517255406, - 5.211666751332074, - 4.081974578213626, - 2.6558866572544337, - 1.1743703453134184, - -0.19655785329227474, - -1.1551020198471702, - -1.6879973903034882, - -1.8606614237337795, - -1.761266753692502, - -1.617554372512487, - -1.613411613065821, - -1.8374749108703852, - -2.2932138912595583, - -2.8402634834616167, - -3.33690775368171, - -3.596532056709394, - -3.484652177355072, - -3.0145559803726742, - -2.289109395156924, - -1.469149023841388, - -0.7420142247890306, - -0.29843200144218474, - -0.13226985316494996, - -0.20047874309100724, - -0.35474050155993697, - -0.3923884806214122, - -0.17019742911876445, - 0.36082495420709143, - 1.1229982234854519, - 1.9221409196190622, - 2.577428254228956, - 2.8599002822158974, - 2.7605826198950023, - 2.442558961206488, - 2.230915604298631, - 2.590280231426611, - 3.9920536550793977, - 6.788549738569625, - 11.180742604284749, - 16.68035069825664, - 23.108232161091298, - 29.687779365250968, - 35.20062339883612 - ], - "pressure:branch128_seg0:RESISTANCE_75": [ - 167821.8040468914, - 188184.10173083, - 198448.10070194802, - 197839.96188415744, - 187928.98178046287, - 170396.05880431857, - 147657.15946241218, - 123369.71382499508, - 100103.70287774572, - 77996.04431208046, - 59361.236392717045, - 42672.75971354676, - 26904.031543209647, - 12181.522628798131, - -3292.084037073665, - -18289.051880295752, - -32851.068665184066, - -46679.02880711062, - -57442.12800497692, - -65922.82821663034, - -71747.37720515071, - -74926.56228286761, - -76764.86909063955, - -77580.18168106109, - -77933.9310983375, - -77981.46363667132, - -77269.21495520363, - -75382.49237059019, - -71983.7580436497, - -67100.05950620728, - -61282.44361422225, - -56004.70012951484, - -52487.10216350745, - -52310.74481033902, - -56463.65219033415, - -64954.95114631351, - -76500.37172473634, - -89601.36567419113, - -101750.23019247966, - -109909.90014702595, - -112906.32413178876, - -109378.24719146892, - -99472.56135866273, - -84463.06386049069, - -67179.77604211659, - -48675.828196650094, - -31418.34146963304, - -17303.947674790277, - -5545.542488615729, - 3033.099341064151, - 9595.576043185161, - 15244.962713123474, - 19787.769434779035, - 23961.160543518068, - 27134.02373548819, - 28567.94314834838, - 27955.435123983272, - 24847.04053078649, - 19461.14220840768, - 12662.153312295557, - 5598.905102807741, - -937.1053792241939, - -5507.041810952759, - -8047.663362590629, - -8870.853033294461, - -8396.98094728396, - -7711.820607923515, - -7692.069668965927, - -8760.309467796584, - -10933.08172233397, - -13541.184664895776, - -15908.97617964978, - -17146.755931869022, - -16613.359605984097, - -14372.13816625756, - -10913.513206945408, - -7004.286168492669, - -3537.6125138917882, - -1422.7985766007664, - -630.6071664602132, - -955.7985367850359, - -1691.2538810972612, - -1870.743650161815, - -811.4299362021674, - 1720.2619986023435, - 5353.984378953611, - 9163.961476133789, - 12288.096563667728, - 13634.804682792195, - 13161.299737283913, - 11645.096358552822, - 10636.069627168816, - 12349.369398934045, - 19032.436972965323, - 32364.95703728048, - 53305.08988931973, - 79524.91393686213, - 110170.35595275849, - 141538.8765923773, - 167821.8040468914 - ], - "flow:branch129_seg0:RESISTANCE_76": [ - 29.802460350419786, - 33.16664824834458, - 34.68639541120228, - 34.30637030543293, - 32.319712048608714, - 29.06373975386361, - 24.994689534642017, - 20.74676740344123, - 16.75769961793702, - 13.038011690188311, - 9.930578150184761, - 7.146242662784323, - 4.496041940186301, - 1.9836556741078408, - -0.6884582542173698, - -3.3014139990902835, - -5.8410292699330135, - -8.222113912086987, - -10.054799510778963, - -11.483830222252005, - -12.43078712497177, - -12.93336795789281, - -13.220799418974694, - -13.350504288733157, - -13.423066560194917, - -13.44747970821608, - -13.335999023605138, - -13.007188870864466, - -12.40148699821638, - -11.529348488218698, - -10.506280063461219, - -9.600016204327584, - -9.037790165154222, - -9.097521026056818, - -9.937177511578113, - -11.534310863613669, - -13.647028412687536, - -15.973320697637348, - -18.061585303401376, - -19.385288823178296, - -19.751374542569017, - -18.94459831370522, - -17.040974883547417, - -14.288515661327741, - -11.201451910173091, - -7.96457270923036, - -5.030671919577002, - -2.6766311279451007, - -0.7533031874049619, - 0.616396367589442, - 1.6770091634738367, - 2.5995309058905502, - 3.362391768542407, - 4.080859334665453, - 4.62269161012065, - 4.854807350105308, - 4.714725958337534, - 4.129442409249288, - 3.1526122516747463, - 1.9436022750750186, - 0.7177228280214829, - -0.38021521528730284, - -1.1134084671479554, - -1.482309159725019, - -1.551478179788368, - -1.4162194458829696, - -1.2755655629512757, - -1.2798031821773292, - -1.494207661413006, - -1.9079039592671962, - -2.387721119220684, - -2.8071631011549707, - -3.0014461469114178, - -2.870349289333953, - -2.434346375592429, - -1.7959282126183265, - -1.0977541624342226, - -0.5073748726827695, - -0.17397311915496166, - -0.08237851920049594, - -0.18278237034064662, - -0.3348184703126758, - -0.36401329229415175, - -0.1532288154982916, - 0.3265087735480764, - 0.9958784866418463, - 1.6756877036280389, - 2.2054985180882296, - 2.400649813199105, - 2.268650771430445, - 1.9630201141754982, - 1.7813353889071657, - 2.1275412260705004, - 3.400824118939472, - 5.87580323601543, - 9.695109505912198, - 14.407444423208524, - 19.86628555130419, - 25.31599889322385, - 29.802460350419786 - ], - "pressure:branch129_seg0:RESISTANCE_76": [ - 168827.59678698596, - 187885.34407590993, - 196494.54137749047, - 194341.7417572085, - 183087.54545284034, - 164642.82742408355, - 141592.1141058089, - 117528.11145916626, - 94930.48966121624, - 73858.87455779307, - 56255.61192223349, - 40482.663532761144, - 25469.573548302997, - 11237.187009892343, - -3900.0388283773304, - -18702.140189492417, - -33088.77598728924, - -46577.35354614741, - -56959.312003773135, - -65054.610778313465, - -70419.01547064638, - -73266.07954574848, - -74894.34654937474, - -75629.11009558561, - -76040.16722859142, - -76178.46497522049, - -75546.9393947948, - -73684.26674181073, - -70253.03353736058, - -65312.466652047806, - -59516.89872008433, - -54383.015557634615, - -51198.06807583073, - -51536.436706533066, - -56292.99656468954, - -65340.57795233377, - -77308.88601502067, - -90487.07101298077, - -102316.85589319275, - -109815.48793480046, - -111889.32249396338, - -107319.02560362354, - -96535.21228344693, - -80942.83936263157, - -63454.96929728849, - -45118.41150442529, - -28498.192445174784, - -15162.815267693835, - -4267.3781052378545, - 3491.8163193469936, - 9500.06890471467, - 14726.051153316952, - 19047.572417334744, - 23117.610633366163, - 26187.029730015423, - 27501.93937496706, - 26708.39399486541, - 23392.828304324932, - 17859.194972269735, - 11010.28899467917, - 4065.8193581766113, - -2153.8765693853115, - -6307.334144250852, - -8397.115210931954, - -8788.949955180358, - -8022.724391211473, - -7225.935912847008, - -7249.941550688743, - -8464.518889075414, - -10808.062037700583, - -13526.17245743185, - -15902.264262234226, - -17002.85593573523, - -16260.206934582498, - -13790.299307707703, - -10173.73198632656, - -6218.654263021706, - -2874.221772899393, - -985.5382162117438, - -466.6650759691517, - -1035.4416365893283, - -1896.709098447498, - -2062.0944919962003, - -868.0240616009705, - 1849.6355978630104, - 5641.539980749442, - 9492.582982832642, - 12493.901850652252, - 13599.412059409544, - 12851.652285953945, - 11120.28887628621, - 10091.065275976049, - 12052.282531018143, - 19265.287373752795, - 33285.76660670645, - 54921.7084503817, - 81616.5574658041, - 112540.28047598837, - 143412.2956007841, - 168827.59678698596 - ], - "flow:branch130_seg0:RESISTANCE_77": [ - 16.647745645603244, - 19.326132354549472, - 21.189833539524923, - 22.106346095821813, - 22.066510615202827, - 21.143534642969712, - 19.51667429578961, - 17.497248462605548, - 15.284647344273314, - 13.018469123112334, - 10.91329630557103, - 8.886438358623401, - 6.936596586039531, - 5.045566338932183, - 3.0977367419656425, - 1.1853136303883325, - -0.7175386927557146, - -2.544162812526512, - -4.125943925523777, - -5.49332547280068, - -6.5780542688019095, - -7.385208938044203, - -7.995922568021927, - -8.441404317498518, - -8.780756715810696, - -9.034192767148609, - -9.179880397162751, - -9.187162028968045, - -9.024286841278839, - -8.683206998753008, - -8.206969680657753, - -7.706187943768784, - -7.298347763451083, - -7.143963095581707, - -7.355637281091598, - -7.98022317217982, - -8.953457273314138, - -10.17427583317299, - -11.41737457518251, - -12.42867984880976, - -13.044195634361751, - -13.088181584906062, - -12.521690204610858, - -11.402076779384103, - -9.915810898997767, - -8.170614028199056, - -6.402426238128764, - -4.773671172404652, - -3.304315322803747, - -2.0870145555061934, - -1.0503527207075896, - -0.1421307182880131, - 0.6458594026704553, - 1.3637447001701397, - 1.9628550174133532, - 2.396098422155451, - 2.6173240737334784, - 2.57919801982482, - 2.2850959426360533, - 1.7955164219519804, - 1.1931504429445177, - 0.569042997216075, - 0.055996470550076345, - -0.31797008193906845, - -0.5373247755285939, - -0.6249332997219785, - -0.6611470533388426, - -0.7191980001324269, - -0.8495871580421002, - -1.0702355430364061, - -1.342969045316881, - -1.615375978218711, - -1.8071223988485254, - -1.8556102001863746, - -1.7439256800240084, - -1.4947666676920333, - -1.1633922871851285, - -0.8307225433549978, - -0.5758677565658753, - -0.4232930936113968, - -0.3756118416805689, - -0.383001370711765, - -0.3695834986419924, - -0.2692399413544116, - -0.04404574407813627, - 0.2913004758976811, - 0.6766836410988775, - 1.0333108291281603, - 1.2600289289821078, - 1.333165852157029, - 1.2873793638557762, - 1.238218988826498, - 1.3739886439432425, - 1.9075239032294269, - 3.028921933713107, - 4.863834919250212, - 7.312731738692817, - 10.324828464185265, - 13.577477269615258, - 16.647745645603244 - ], - "pressure:branch130_seg0:RESISTANCE_77": [ - 121146.7613093135, - 140637.56097854263, - 154199.83946444414, - 160869.3627896101, - 160579.47732613032, - 153862.91928982982, - 142024.1474609572, - 127328.65026856627, - 111227.40357357105, - 94736.27270890509, - 79416.7889619289, - 64667.20777935459, - 50478.07846163067, - 36716.924558147504, - 22542.437977301568, - 8625.606764694043, - -5221.577178790069, - -18514.043375144895, - -30024.770594268888, - -39975.29779796135, - -47868.94197850211, - -53742.66062702506, - -58186.86466126263, - -61428.665222156895, - -63898.15537855788, - -65742.42651726153, - -66802.60516935727, - -66855.59409224613, - -65670.34043050339, - -63188.27954673614, - -59722.668650817504, - -56078.44637361255, - -53110.56603539376, - -51987.09845567383, - -53527.4656965725, - -58072.619105063735, - -65154.90891523788, - -74038.8874323102, - -83085.00032879342, - -90444.33661390615, - -94923.48625625185, - -95243.5749676623, - -91121.1792094989, - -82973.67724304028, - -72158.02077600965, - -59458.10613019332, - -46590.885023277006, - -34738.32520051642, - -24045.72416134578, - -15187.344856613932, - -7643.487175679395, - -1034.2947669737107, - 4699.962178685184, - 9924.061623442376, - 14283.82757290468, - 17436.568878571183, - 19046.442778480363, - 18768.99692780252, - 16628.796392294007, - 13066.093393529318, - 8682.635775114813, - 4140.964045582658, - 407.49007080641934, - -2313.8896064495775, - -3910.1484196283827, - -4547.681524413024, - -4811.211437650242, - -5233.6520698320965, - -6182.502714654556, - -7788.175806926225, - -9772.875790047627, - -11755.199305904614, - -13150.550865596306, - -13503.39984708331, - -12690.66410531413, - -10877.517266238361, - -8466.083680341113, - -6045.223648685938, - -4190.628276979157, - -3080.332224391114, - -2733.352557019217, - -2787.1266552536977, - -2689.483900523216, - -1959.2771060164707, - -320.5238329640645, - 2119.813095063707, - 4924.2722285197815, - 7519.4721879824665, - 9169.31500227228, - 9701.537296111052, - 9368.345950718222, - 9010.602605383885, - 9998.607489143289, - 13881.179344987713, - 22041.66800355806, - 35394.45283187267, - 53215.239187684594, - 75134.46902287257, - 98804.21247300367, - 121146.7613093135 - ], - "flow:branch131_seg0:RESISTANCE_78": [ - 36.6604099420473, - 39.782073539694565, - 40.62955668838191, - 39.0967815497844, - 35.94450103863485, - 31.603939344023516, - 26.562340041598034, - 21.527812483331946, - 17.212515126642582, - 13.096372639583887, - 9.77168209291787, - 6.829115271711587, - 3.776744568223386, - 0.9561504312556982, - -2.172320581369481, - -5.1988455349725635, - -7.99021836169126, - -10.679696968396252, - -12.508265627270294, - -13.86958829570756, - -14.759505064725765, - -15.105445460735002, - -15.326757556027315, - -15.424261861936534, - -15.473734265778813, - -15.480668069506734, - -15.277455278322606, - -14.771989047092108, - -13.923692816570256, - -12.795508617747872, - -11.546232002976911, - -10.594520286945517, - -10.182205610193254, - -10.592006851892931, - -11.988845232507026, - -14.234517171027335, - -16.923020738190893, - -19.635250690512333, - -21.907642996594223, - -22.973733534278452, - -22.8321738551104, - -21.303154897280937, - -18.545240347630212, - -14.914137897646384, - -11.234216129045375, - -7.519915573579826, - -4.24671016639065, - -1.898778128477519, - 0.07289556489474433, - 1.4125394683298533, - 2.436450353169705, - 3.472830196931717, - 4.274460887465601, - 5.046782276755251, - 5.598613261971302, - 5.6751312158211356, - 5.300923996522664, - 4.398470309105357, - 3.0754625772209905, - 1.5585655199790804, - 0.18167701326340213, - -0.9928520239397937, - -1.6549504980135512, - -1.8539854816191272, - -1.7917142679155358, - -1.5524892364525038, - -1.3962377295789168, - -1.4925623344425607, - -1.857930360560651, - -2.4388055216900693, - -3.012252207606464, - -3.437950933407039, - -3.5405696206639905, - -3.2083926329209502, - -2.5404685122159423, - -1.7111734397523624, - -0.9015116265390232, - -0.27992477485946493, - -0.04584707716168939, - -0.08078456925968887, - -0.27789934880846584, - -0.4650335492009684, - -0.4201362984896524, - -0.03716250948020276, - 0.656440341727213, - 1.524466298389211, - 2.285461856251067, - 2.795364910435609, - 2.8444462767549576, - 2.5108374482440965, - 2.0896345907167175, - 1.9908499786955558, - 2.717244619003243, - 4.721997787085501, - 8.219507919936762, - 13.378257673278632, - 19.247124153036584, - 25.777338431722974, - 32.14361234692488, - 36.6604099420473 - ], - "pressure:branch131_seg0:RESISTANCE_78": [ - 185925.45792151082, - 201757.16124361873, - 206055.2226332685, - 198281.6619997348, - 182294.6831727394, - 160281.2653745538, - 134712.49349114715, - 109179.58638049466, - 87294.29818054034, - 66419.03579295108, - 49557.669176664895, - 34634.26584969287, - 19153.985577626918, - 4849.174001442261, - -11017.05353218784, - -26366.255540548682, - -40522.86949706063, - -54162.72083293171, - -63436.41596562091, - -70340.44515974246, - -74853.71118850594, - -76608.16856208123, - -77730.56606734949, - -78225.06497650268, - -78475.96722645863, - -78511.13242606852, - -77480.52662225509, - -74917.0244504559, - -70614.83946774127, - -64893.185942388736, - -58557.40499942458, - -53730.74220727065, - -51639.66370585428, - -53717.995171335904, - -60802.14442031042, - -72191.2037399052, - -85826.11010453086, - -99581.34624812605, - -111105.91950721903, - -116512.66132265264, - -115794.73295758326, - -108040.22201909237, - -94053.29371243196, - -75637.9408333922, - -56974.99786510267, - -38137.700826561006, - -21537.444169180904, - -9629.766649817053, - 369.69420977425904, - 7163.7782527961135, - 12356.603440393254, - 17612.665697652228, - 21678.183608038198, - 25595.057647178644, - 28393.701437134863, - 28781.766808777098, - 26883.9525531384, - 22307.104794175088, - 15597.392088473098, - 7904.358092582944, - 921.3858202406335, - -5035.308320095596, - -8393.180263586348, - -9402.598066818477, - -9086.785888465358, - -7873.541857878457, - -7081.10301138459, - -7569.6189962507015, - -9422.604755909382, - -12368.547818163903, - -15276.81692484193, - -17435.773430133355, - -17956.210229660825, - -16271.554802874198, - -12884.137744656851, - -8678.318269546135, - -4572.070040972359, - -1419.6552093035552, - -232.51618923769487, - -409.70376644249376, - -1409.3831401505308, - -2358.445410749888, - -2130.746323066391, - -188.4718857094578, - 3329.1763874638127, - 7731.4218543098505, - 11590.856263128664, - 14176.860047446547, - 14425.779127261503, - 12733.862034527921, - 10597.706593619485, - 10096.714535575782, - 13780.668325082852, - 23947.89371575601, - 41685.725182002556, - 67848.6325719825, - 97612.9393392599, - 130731.31095620563, - 163018.24923127866, - 185925.45792151082 - ], - "flow:branch132_seg2:RESISTANCE_79": [ - 36.72915634121043, - 40.3972030379607, - 41.76704359000731, - 40.754825376376125, - 37.93932022749299, - 33.72690542904937, - 28.62521225332284, - 23.442761967122106, - 18.751567245962107, - 14.295077408545808, - 10.681462306844933, - 7.442914305443622, - 4.256110434231315, - 1.2985934182105356, - -1.9254063303863707, - -5.01047051978124, - -7.944867559012212, - -10.748298246600612, - -12.755076260681223, - -14.283068137600306, - -15.284989408043405, - -15.727813261531848, - -15.980945661766413, - -16.070207193192438, - -16.095988002586616, - -16.076319629476735, - -15.868947308638326, - -15.382241827379671, - -14.557973048969195, - -13.434811348349434, - -12.155643150289348, - -11.10513566400203, - -10.5276895850396, - -10.749864001284564, - -11.949404708969519, - -14.052357788534529, - -16.68325541056115, - -19.491362607914272, - -21.936036998365292, - -23.305276025920012, - -23.49050825466456, - -22.253050146256054, - -19.69905753748444, - -16.17386530485475, - -12.41376975656663, - -8.533052436919187, - -5.041538658904592, - -2.3865313947339923, - -0.17785598691376484, - 1.3568686486413812, - 2.519235893548556, - 3.6062365805283783, - 4.457015006828425, - 5.265420667388537, - 5.847556668325216, - 6.000430731574381, - 5.704225925467323, - 4.869277034972104, - 3.5775898767623153, - 2.054489741242931, - 0.5835127949883558, - -0.7194189928649969, - -1.5206169992852772, - -1.8677934225571777, - -1.8985317945240903, - -1.70148579606298, - -1.5351660061198948, - -1.5797173590095148, - -1.8857497832394474, - -2.4217731958711064, - -2.9961953217949286, - -3.4609854695881936, - -3.6316769310820347, - -3.3824454319498014, - -2.779949386644769, - -1.9681375417934823, - -1.1290045872361145, - -0.44339584121467496, - -0.112496771982913, - -0.06197687745225378, - -0.21546210147470887, - -0.4013523829805438, - -0.3989550040675444, - -0.08366679149627985, - 0.553624821987494, - 1.3926572040438783, - 2.1901601464721536, - 2.778857011439099, - 2.924556212566628, - 2.676971979067445, - 2.2791175555074052, - 2.1121328055799182, - 2.6795258991817184, - 4.449607795643057, - 7.718368701884142, - 12.650472697887713, - 18.49684937025208, - 25.11423162040723, - 31.698394392868092, - 36.72915634121043 - ], - "pressure:branch132_seg2:RESISTANCE_79": [ - 180414.85239114676, - 198432.42124599026, - 205161.12415168545, - 200189.07421121135, - 186359.21813928717, - 165667.69484342355, - 140608.00622185488, - 115151.63595504533, - 92108.32956125005, - 70217.90145746132, - 52467.70242986987, - 36559.84562515212, - 20906.15772981036, - 6378.73458585718, - -9457.660711360037, - -24611.599864669373, - -39025.45690432242, - -52796.00281590184, - -62653.36397686051, - -70158.91151429608, - -75080.38252318825, - -77255.54819866504, - -78498.94307002271, - -78937.39871725898, - -79064.0349208968, - -78967.42321006207, - -77948.80338916705, - -75558.08968086304, - -71509.25369328505, - -65992.24560994812, - -59708.92835941349, - -54548.80022268451, - -51712.36564378873, - -52803.693855622456, - -58695.87819287749, - -69025.65451309795, - -81948.7121985166, - -95742.22928348393, - -107750.5521864235, - -114476.30038356263, - -115386.16732678033, - -109307.73144073055, - -96762.43376933501, - -79446.5708512774, - -60976.854938967466, - -41914.6408251517, - -24764.207609909157, - -11722.722550657763, - -873.6345950286825, - 6664.98447948545, - 12374.57151617448, - 17713.955483197125, - 21893.00775361978, - 25863.923572302163, - 28723.395205816447, - 29474.31775081863, - 28019.349771838268, - 23918.052714169906, - 17573.241909940767, - 10091.722770926011, - 2866.2344922435477, - -3533.8103113323878, - -7469.3218902418685, - -9174.664168631625, - -9325.652086504686, - -8357.755508745662, - -7540.787101587344, - -7759.624846750829, - -9262.866416784156, - -11895.831464218209, - -14717.412283989608, - -17000.477136554382, - -17838.919341535977, - -16614.685827718822, - -13655.204970870474, - -9667.55786028553, - -5545.708539093379, - -2177.975298437031, - -552.5879310470353, - -304.4325084232069, - -1058.3570957186707, - -1971.4564162483186, - -1959.6804103227878, - -410.97409637208995, - 2719.423762721011, - 6840.779068403093, - 10758.140368594488, - 13649.839187087407, - 14365.518567812267, - 13149.376478239028, - 11195.102156418718, - 10374.86744343334, - 13161.921419814656, - 21856.623282923476, - 37912.886893304196, - 62139.54775505558, - 90857.1467809895, - 123361.95116001145, - 155703.58034630513, - 180414.85239114676 - ], - "flow:branch133_seg2:RESISTANCE_80": [ - 26.066938288510997, - 29.086434581554776, - 30.508406152583298, - 30.25107610789662, - 28.599089300838045, - 25.809746470938695, - 22.254164518010704, - 18.530494133940376, - 14.985786695328416, - 11.62031377346341, - 8.827374223405158, - 6.302858963341213, - 3.9016187566197935, - 1.6585190335891928, - -0.7320186023009047, - -3.0223905560876814, - -5.244125777788658, - -7.362575749699568, - -8.962505930202662, - -10.221226302989292, - -11.074665131919849, - -11.51839355654394, - -11.779275146661972, - -11.889996993924488, - -11.93707813514115, - -11.941165424977077, - -11.82152861212117, - -11.514286185303183, - -10.970428148806924, - -10.1985471659253, - -9.292122261196797, - -8.491125993467701, - -7.978922183843077, - -8.002929109926562, - -8.706521524271308, - -10.075945979123686, - -11.886100247947523, - -13.914828605324251, - -15.757559640108635, - -16.938199805867505, - -17.310965944256203, - -16.66542572254039, - -15.047173539055514, - -12.664978123638255, - -9.991521287322922, - -7.153618941367605, - -4.533578657588399, - -2.433845053835553, - -0.6770604916006914, - 0.5847497958506169, - 1.5518107323959591, - 2.4035273818035505, - 3.0852109185839964, - 3.7185979500394737, - 4.1907613660274015, - 4.3853133825084365, - 4.260819370960787, - 3.748557389522267, - 2.8885641367808508, - 1.8299465926056386, - 0.7454437383044966, - -0.24718750212916235, - -0.9114955120503703, - -1.2650047877355404, - -1.3637622728873022, - -1.27080046870765, - -1.1627073668691452, - -1.171653845765887, - -1.3540379038595711, - -1.7058666209053472, - -2.112093228098941, - -2.4691926919218847, - -2.6410651560324956, - -2.530645857261432, - -2.160075838338217, - -1.6121904327664476, - -1.0085456164919153, - -0.4862516972286295, - -0.18475898027988405, - -0.08632002266190995, - -0.1540341472740535, - -0.2735875728140433, - -0.29228062573702196, - -0.11019951924867956, - 0.3018429969224528, - 0.8747368427613067, - 1.461080271803959, - 1.9292693089936017, - 2.1053051383102463, - 2.0015727174283175, - 1.7515891823817074, - 1.6045418959356512, - 1.9087733000255225, - 3.008962459734314, - 5.150820403402677, - 8.477720367450432, - 12.569715148110806, - 17.30777463264534, - 22.126296395670185, - 26.066938288510997 - ], - "pressure:branch133_seg2:RESISTANCE_80": [ - 169139.52755092696, - 188732.0155828753, - 197958.70715104736, - 196288.97970928458, - 185569.79723477634, - 167470.69701806986, - 144399.73083743546, - 120238.09579820899, - 97237.69065521535, - 75400.2775425115, - 57277.83942772897, - 40897.11555229509, - 25316.281715727033, - 10761.567878453163, - -4749.820603452944, - -19611.26792386868, - -34027.354753200016, - -47773.25860363763, - -58154.663272247126, - -66322.07314660691, - -71859.74844706117, - -74738.95179926546, - -76431.72401558021, - -77150.1605549337, - -77455.65412284202, - -77482.17516125756, - -76705.89243176376, - -74712.30045942114, - -71183.38999322965, - -66174.9159129579, - -60293.43192549183, - -55096.038630029994, - -51772.521713284965, - -51928.294519852025, - -56493.66722428784, - -65379.39836565945, - -77124.87589104088, - -90288.60659458823, - -102245.46371286587, - -109906.2375879546, - -112324.99071638774, - -108136.29901398445, - -97636.00907799855, - -82178.75043726056, - -64831.59515506605, - -46417.40869719188, - -29416.85531965294, - -15792.395638554299, - -4393.216050355121, - 3794.2432329793237, - 10069.173879219104, - 15595.674540463788, - 20018.887964078556, - 24128.721734024195, - 27192.43010756416, - 28454.812201981003, - 27647.012756454173, - 24323.118382520865, - 18742.91364747569, - 11873.903206082918, - 4836.931760727638, - -1603.9159207673792, - -5914.385439772226, - -8208.187312952161, - -8848.991161712505, - -8245.793522420645, - -7544.414021148968, - -7602.464690432153, - -8785.8930270223, - -11068.790324792906, - -13704.657094371598, - -16021.754481535512, - -17136.97664752013, - -16420.503242782845, - -14015.999989216976, - -10460.957290118678, - -6544.11067379598, - -3155.122455495818, - -1198.8384017119367, - -560.1013701593154, - -999.4753740656337, - -1775.2170315285778, - -1896.5099162123245, - -715.0473299066605, - 1958.5569018103004, - 5675.8708935601635, - 9480.45467218818, - 12518.37464875987, - 13660.611480454285, - 12987.526959922054, - 11365.468529227275, - 10411.32852698083, - 12385.382993384834, - 19524.13755789056, - 33421.927803280414, - 55009.05406644936, - 81560.6212770387, - 112304.28337699393, - 143570.0379305706, - 169139.52755092696 - ], - "flow:branch134_seg2:RESISTANCE_81": [ - 19.91213385140292, - 22.400680182779148, - 23.677563629080044, - 23.675262541587312, - 22.548016595501, - 20.484012278069667, - 17.781973400767036, - 14.903979438469436, - 12.09408516490815, - 9.442492524087436, - 7.215136536443621, - 5.199491568740632, - 3.3212255764347964, - 1.5556969572978598, - -0.3019937180816331, - -2.0895189888665673, - -3.8458292447839426, - -5.511097644889498, - -6.8104637727227075, - -7.845660627175143, - -8.55185885184073, - -8.943080543323855, - -9.170331465963418, - -9.269773137564258, - -9.315340036723958, - -9.324586963513758, - -9.2461820319531, - -9.030194357632613, - -8.634159434770476, - -8.055299453785363, - -7.362470945264669, - -6.721967647946343, - -6.282296915914639, - -6.240022948444665, - -6.712432100476723, - -7.706975868807061, - -9.07254467736647, - -10.64538830272988, - -12.105715550031874, - -13.106199615697204, - -13.497365062415136, - -13.1023105926615, - -11.945609063542033, - -10.172208846803512, - -8.115747029106195, - -5.902727580540794, - -3.8396952977889787, - -2.1381101865046204, - -0.7213328533366721, - 0.3093755998297584, - 1.102749017448862, - 1.7767423823755129, - 2.326167511822761, - 2.83222484991653, - 3.21684378485827, - 3.404139496051425, - 3.346527833798846, - 2.989164163984564, - 2.355331191680884, - 1.5523567870086257, - 0.7017245008568498, - -0.08734526519337894, - -0.6381673475966929, - -0.9541607147293418, - -1.0579286774995174, - -1.0022104561327696, - -0.9186566902564237, - -0.9110750551580635, - -1.032993265578081, - -1.2892437254941536, - -1.6016672871849638, - -1.8900195864991791, - -2.045823685400148, - -1.9923708603255377, - -1.733546787780064, - -1.3243929182081684, - -0.8555395321400552, - -0.43821257416591625, - -0.17621809063581872, - -0.07426729204052494, - -0.11124098255944982, - -0.20128531479483958, - -0.22881423379179452, - -0.11081772692639005, - 0.18564046562581069, - 0.6154518684473216, - 1.0759995510571976, - 1.4583777523774806, - 1.6268081920761779, - 1.5787964961030465, - 1.3975340638770293, - 1.2656775575785535, - 1.4467307555003919, - 2.211357139651416, - 3.765167161271819, - 6.225824925013897, - 9.332813395460251, - 12.981516387317896, - 16.725193871033373, - 19.91213385140292 - ], - "pressure:branch134_seg2:RESISTANCE_81": [ - 161981.64663478508, - 182225.5258438866, - 192612.7442473, - 192594.0253121997, - 183424.08120314588, - 166633.77532765272, - 144653.17245089234, - 121241.20643574979, - 98383.21920556293, - 76812.98743784125, - 58693.84494849765, - 42296.93373163767, - 27017.57590277692, - 12655.316436109588, - -2456.6648704306235, - -16997.86316308632, - -31285.132894095957, - -44831.79341531804, - -55401.90441088586, - -63823.04562692564, - -69567.8418469326, - -72750.360318269, - -74599.00591914226, - -75407.94612766987, - -75778.62470049736, - -75853.84679567176, - -75216.03670393443, - -73459.0156131555, - -70237.34236563682, - -65528.419977376616, - -59892.38400638179, - -54682.00426763427, - -51105.36151889337, - -50761.47035626251, - -54604.434294862476, - -62694.86992806479, - -73803.52788779156, - -86598.32940111417, - -98477.83030788851, - -106616.5891972047, - -109798.65012743488, - -106584.9526905501, - -97175.3926830712, - -82749.09917814138, - -66020.15018864203, - -48017.632879922916, - -31235.234332651034, - -17393.143862992412, - -5867.913716692237, - 2516.715157854379, - 8970.66597705054, - 14453.481424477777, - 18922.95656132443, - 23039.64247393282, - 26168.448702021975, - 27692.065805697817, - 27223.405239901196, - 24316.31571770815, - 19160.197879639178, - 12628.144748364773, - 5708.403277166674, - -710.538106432438, - -5191.3772056629305, - -7761.926716619011, - -8606.060529844372, - -8152.80276691777, - -7473.107829139965, - -7411.432583957258, - -8403.215414764958, - -10487.76706341935, - -13029.276845735418, - -15374.971214928379, - -16642.409686403877, - -16207.580517039716, - -14102.09299006192, - -10773.699458019171, - -6959.661039412637, - -3564.780895369872, - -1433.5026422112358, - -604.1511344595646, - -904.9254923002601, - -1637.4200262603458, - -1861.362857424394, - -901.4823834457956, - 1510.1519771063304, - 5006.590846542903, - 8753.063853388487, - 11863.6421143283, - 13233.793609364135, - 12843.227051829825, - 11368.68959320796, - 10296.060503371278, - 11768.895878361247, - 17988.994723089087, - 30628.961275040172, - 50645.97197565396, - 75920.7673478607, - 105602.31343995394, - 136056.46003253985, - 161981.64663478508 - ], - "flow:branch135_seg0:RESISTANCE_82": [ - 33.739998258873214, - 37.86778787380386, - 39.95269228956668, - 39.85174040544604, - 37.87612352858594, - 34.35771729458082, - 29.78736849080002, - 24.91816857275281, - 20.229751720452033, - 15.777883123207529, - 12.034162628176443, - 8.670220890428974, - 5.505496252338295, - 2.5551342824426446, - -0.544635575628161, - -3.5331476446226735, - -6.442263489772394, - -9.212866008779507, - -11.369130732061935, - -13.083965029738113, - -14.271881571252564, - -14.932910010514547, - -15.328371695542902, - -15.514441069101885, - -15.605367660797773, - -15.633118754854086, - -15.508011957335139, - -15.148959668185606, - -14.488319411098642, - -13.527837104398536, - -12.377017835285193, - -11.32561648042442, - -10.615558082917103, - -10.567781098820694, - -11.382323890695286, - -13.067333688963476, - -15.369614460254828, - -18.00603813043507, - -20.46761558201395, - -22.15018978150244, - -22.816351168321166, - -22.175049355387586, - -20.248436889296553, - -17.277906295717283, - -13.828071687469492, - -10.101590612339583, - -6.602446746913873, - -3.7183359288081994, - -1.2966130179599726, - 0.4795244045010523, - 1.845394335941479, - 3.0178966155689317, - 3.9612867305887707, - 4.824872044489601, - 5.481305131631968, - 5.7892401256772095, - 5.684382429946221, - 5.0744896323717406, - 4.00075430535397, - 2.6392752686898753, - 1.210999341714145, - -0.11951794027516877, - -1.0554299746775373, - -1.590079760622498, - -1.776921783184478, - -1.6963823019578939, - -1.5672693797850366, - -1.5652271566686373, - -1.7774262422895868, - -2.211277698993094, - -2.734803386014355, - -3.2149971595867584, - -3.4728705013489805, - -3.377346290983415, - -2.9383846829163165, - -2.2501466887772934, - -1.4642077379997922, - -0.7611153813998489, - -0.32345011460514633, - -0.14997954697288618, - -0.204170470651415, - -0.34583090038365, - -0.3810860103122543, - -0.17192382498583267, - 0.3328564903632296, - 1.060255290792175, - 1.8303999060959273, - 2.469071778272974, - 2.7517082698267226, - 2.6705204631458814, - 2.3751032263460123, - 2.172766853711029, - 2.5070749835779407, - 3.831732785365938, - 6.489034594347239, - 10.680304395113414, - 15.941343942787315, - 22.104107580695473, - 28.427172998930622, - 33.739998258873214 - ], - "pressure:branch135_seg0:RESISTANCE_82": [ - 165732.00726427342, - 186007.84880991458, - 196248.9694859597, - 195753.09043272946, - 186048.7938268146, - 168766.2639624377, - 146316.55678294742, - 122398.88286970627, - 99369.2214612619, - 77501.49304476022, - 59112.21194530047, - 42588.41688640677, - 27043.1829274272, - 12550.90561089741, - -2675.2682819894135, - -17354.940169574107, - -31644.61513285842, - -45253.90797524124, - -55845.55288407794, - -64268.87668210798, - -70103.96272381938, - -73350.95667020933, - -75293.47777981134, - -76207.45680653196, - -76654.0912858771, - -76790.4055940927, - -76175.87679310395, - -74412.1998617345, - -71167.11267926366, - -66449.19125526617, - -60796.32826442634, - -55631.80941517794, - -52143.97866335914, - -51909.29650912261, - -55910.35812341224, - -64187.182976349635, - -75496.06362846006, - -88446.26544843524, - -100537.61675665926, - -108802.47786638807, - -112074.68502396646, - -108924.58893017896, - -99461.00363963615, - -84869.65736461408, - -67923.95363434576, - -49619.353145778914, - -32431.440684313846, - -18264.591255636817, - -6369.0067931461335, - 2355.4400175254204, - 9064.639101136974, - 14824.009769555163, - 19457.973772630856, - 23699.93390608048, - 26924.35532815716, - 28436.942385171256, - 27921.877853831356, - 24926.06390083576, - 19651.839828508542, - 12964.20896784988, - 5948.4695333441505, - -587.0761460598764, - -5184.3075654020895, - -7810.525312311596, - -8728.299616949214, - -8332.686973900598, - -7698.4799537525505, - -7688.448485056683, - -8730.77753705308, - -10861.870497474, - -13433.446295989474, - -15792.174276925954, - -17058.85681265734, - -16589.638675633858, - -14433.444479690514, - -11052.796283771318, - -7192.237699857192, - -3738.624375475267, - -1588.797851501696, - -736.7045836136995, - -1002.8922249948386, - -1698.7330246681802, - -1871.9073114593898, - -844.4956159426279, - 1635.002285879136, - 5208.009680597804, - 8990.985956967195, - 12128.163693224173, - 13516.48365435791, - 13117.686414852275, - 11666.587002820213, - 10672.703929025887, - 12314.836717013357, - 18821.60043241871, - 31874.356373021074, - 52462.01472847083, - 78304.4180932472, - 108576.12054472131, - 139635.23073752783, - 165732.00726427342 - ], - "flow:branch136_seg0:RESISTANCE_83": [ - 17.158433975682243, - 19.64907655198298, - 21.16497764600287, - 21.580277033324272, - 20.952541744358836, - 19.408295604325197, - 17.190949481022134, - 14.689230231013873, - 12.12860237871167, - 9.65883079887344, - 7.510758608356528, - 5.5594228337404665, - 3.765717374931753, - 2.091007067090708, - 0.3762422757848465, - -1.2797983260100605, - -2.9132852655467385, - -4.4758755667118715, - -5.7584484725278005, - -6.808952561857956, - -7.567565796266571, - -8.037749597887878, - -8.326826371404216, - -8.475217627326467, - -8.550703603365214, - -8.580005705136477, - -8.534621025349992, - -8.376378114968398, - -8.066911832743573, - -7.593635448238476, - -7.003451664066627, - -6.418851538507663, - -5.9689007295109615, - -5.825781036945051, - -6.106693552309426, - -6.848461642590219, - -7.956677089824105, - -9.307878522144568, - -10.640322993336426, - -11.659556352520942, - -12.197458666082408, - -12.073582992739473, - -11.26940647961023, - -9.873231683497478, - -8.13184523330008, - -6.180637869549911, - -4.280823981945244, - -2.630881560568083, - -1.2270004716124443, - -0.1563373431902612, - 0.6761470289564694, - 1.3616324485948514, - 1.9203211496152204, - 2.417322426776587, - 2.8083863279390844, - 3.0398854263545707, - 3.063770754069918, - 2.829004069880006, - 2.3412628244458564, - 1.6765851312238165, - 0.9292228472155123, - 0.20058960503424794, - -0.357017800561867, - -0.7230123236268717, - -0.8944531905660669, - -0.9059528893344727, - -0.8595796960592285, - -0.847094755156773, - -0.92797272137976, - -1.1220615148469517, - -1.3815414397576016, - -1.6425489278969174, - -1.8139174149626536, - -1.8217733338033892, - -1.6511368063358112, - -1.3329162188694932, - -0.9352487244868599, - -0.5527114762770244, - -0.27664168643148995, - -0.13333894135233137, - -0.11868253167895884, - -0.17158647909081678, - -0.19937120078456952, - -0.12411406955811136, - 0.09688862094814045, - 0.44309357475369426, - 0.8426115973915552, - 1.2039108331365518, - 1.4081613390264727, - 1.432004585049827, - 1.320260279617293, - 1.207382252706061, - 1.3064819866596167, - 1.8541369016638365, - 3.0502265167377733, - 5.024909814233622, - 7.633013744138721, - 10.784195337008777, - 14.130992453540815, - 17.158433975682243 - ], - "pressure:branch136_seg0:RESISTANCE_83": [ - 149835.68943529075, - 171585.17706836018, - 184822.75375281202, - 188449.34753809022, - 182967.6613924727, - 169482.5621475387, - 150119.63045034584, - 128273.41598055864, - 105912.7832922463, - 84345.55122799226, - 65587.55279532446, - 48547.551270490665, - 32884.053398527176, - 18259.67835733555, - 3285.528321923985, - -11175.813875990225, - -25440.206658924577, - -39085.495932516416, - -50285.538772450425, - -59459.04520680917, - -66083.62045379268, - -70189.49131457465, - -72713.84859105518, - -74009.67233398954, - -74668.85214483035, - -74924.73217601723, - -74528.41134654598, - -73146.55822353602, - -70444.14996064642, - -66311.27318027228, - -61157.504816538945, - -56052.49564256301, - -52123.3089945505, - -50873.519075618125, - -53326.58212731327, - -59804.057482342505, - -69481.52722197051, - -81280.86732868491, - -92916.41263883775, - -101816.84803319201, - -106514.06947633676, - -105432.32757926383, - -98409.87189110876, - -86217.80276380874, - -71011.17961227908, - -53972.2994328247, - -37382.21177963829, - -22974.121823063342, - -10714.757644085112, - -1365.2127947451397, - 5904.44071917639, - 11890.428752520365, - 16769.166918003717, - 21109.220859946166, - 24524.17873587825, - 26545.740089548584, - 26754.318247127976, - 24704.222764529055, - 20445.031868713737, - 14640.74689974028, - 8114.4203572931065, - 1751.6448066559153, - -3117.6509676619894, - -6313.690989187903, - -7810.795009963821, - -7911.215904769365, - -7506.262900574172, - -7397.238398087972, - -8103.5036578590425, - -9798.380254525238, - -12064.283628849778, - -14343.526419219643, - -15839.998384164604, - -15908.600041945932, - -14418.519899889987, - -11639.664837527023, - -8167.0412128269, - -4826.542167201719, - -2415.7681214816575, - -1164.3797000599957, - -1036.3928889573322, - -1498.3755760456556, - -1741.0051153530474, - -1083.8236873622882, - 846.0779893295152, - 3869.305983966697, - 7358.089310497316, - 10513.127827240554, - 12296.741379089919, - 12504.952059116604, - 11529.147095291177, - 10543.441930805086, - 11408.828421250373, - 16191.214265935938, - 26636.04345926297, - 43879.92677145817, - 66655.14337981066, - 94172.77506884468, - 123398.61549614386, - 149835.68943529075 - ], - "flow:branch137_seg0:RESISTANCE_84": [ - 43.3618956793499, - 48.166778125836196, - 50.278204620859114, - 49.5986961762644, - 46.629957056026925, - 41.83930011518673, - 35.86171794582666, - 29.658938975260835, - 23.86043289601091, - 18.38847098774058, - 13.867078772770101, - 9.80843342049367, - 5.924883641772834, - 2.2913830740844325, - -1.5954177664273703, - -5.342437816281461, - -8.961326459148784, - -12.384409004788393, - -14.960446831199135, - -16.95864944724618, - -18.28264320051728, - -18.947690407860268, - -19.3217021710778, - -19.468412000429424, - -19.52627807902659, - -19.51813944917892, - -19.306192026302725, - -18.77906800677734, - -17.855414728940254, - -16.557625186239374, - -15.048132682555352, - -13.735602600470447, - -12.929482198115382, - -13.035269359728245, - -14.278924779581368, - -16.621736508082222, - -19.680749316497156, - -23.04931583044876, - -26.068971359079505, - -27.945737831224765, - -28.44603417462892, - -27.248859331500828, - -24.450927280709084, - -20.423499594588, - -15.945913272053636, - -11.246604626744254, - -6.967600087494393, - -3.5674089827647255, - -0.7599862620241989, - 1.2344684049203187, - 2.761124893941187, - 4.10818339729015, - 5.191620663194207, - 6.206648673123021, - 6.95482721775413, - 7.235337966632307, - 6.981710330764077, - 6.083626797983231, - 4.620583099225076, - 2.8372990863639314, - 1.0456192087041751, - -0.5707751877116128, - -1.6337355625209633, - -2.167115863042092, - -2.280417455423725, - -2.0923494005808005, - -1.8972647628387083, - -1.913771441449164, - -2.2297765879172733, - -2.8280138169539604, - -3.5106761844111682, - -4.098694861067108, - -4.361746837625755, - -4.148342101512309, - -3.5010520392404825, - -2.568456172840646, - -1.5586888941857802, - -0.7036548399218716, - -0.23066635893681597, - -0.09978123028992743, - -0.2408004155162631, - -0.4535086653547558, - -0.482712353859451, - -0.1641817466898271, - 0.539662212332895, - 1.5085896640421144, - 2.4802270865961535, - 3.2368456484810686, - 3.4985154787418025, - 3.2897915868140934, - 2.8482261255532926, - 2.6031618254483284, - 3.142020463276141, - 5.035459526632144, - 8.680851278303514, - 14.285268240926554, - 21.140797552578153, - 29.038275535433346, - 36.95663388800039, - 43.3618956793499 - ], - "pressure:branch137_seg0:RESISTANCE_84": [ - 174517.95953588776, - 193856.09656226067, - 202353.92254169396, - 199619.11527876687, - 187670.87626519677, - 168389.9924142205, - 144332.10871677136, - 119367.87889157796, - 96030.72000004163, - 74007.79844811733, - 55810.62022847415, - 39475.85224238851, - 23845.788738024952, - 9222.09447579031, - -6421.053527331203, - -21501.627916353857, - -36066.51378782692, - -49843.341849162, - -60211.08196083403, - -68253.21752312225, - -73581.87496853614, - -76258.48031069069, - -77763.75974407866, - -78354.2205544543, - -78587.11327754066, - -78554.35785824587, - -77701.33630119188, - -75579.8283073937, - -71862.41506146602, - -66639.22130228124, - -60563.989868079894, - -55281.47008506767, - -52037.08960872688, - -52462.84958302195, - -57468.17056445596, - -66897.2491605141, - -79208.81130868073, - -92766.22952957528, - -104919.39103466526, - -112472.78440256666, - -114486.31945785413, - -109668.06814395456, - -98407.27373508041, - -82198.14701336608, - -64177.273700242375, - -45264.03793967448, - -28042.393697992142, - -14357.69646940456, - -3058.7051060809317, - 4968.346142690581, - 11112.657206630945, - 16534.142999557258, - 20894.636422836447, - 24979.804157994426, - 27990.98692415137, - 29119.954252611857, - 28099.182978657234, - 24484.67989528958, - 18596.390257143226, - 11419.23431592851, - 4208.287665834419, - -2297.1901839754496, - -6575.270576285317, - -8721.958128691189, - -9177.961317777474, - -8421.046688679857, - -7635.892525508466, - -7702.326702908421, - -8974.147791457273, - -11381.864033890282, - -14129.364842008425, - -16495.954632683195, - -17554.655906730462, - -16695.769123339116, - -14090.630691873164, - -10337.226346285821, - -6273.231395971296, - -2831.9888915559013, - -928.3593732358061, - -401.5879941904254, - -969.1457560363044, - -1825.2294017489912, - -1942.7650410226597, - -660.7797693436155, - 2171.970266967774, - 6071.597789274983, - 9982.132089870252, - 13027.283264612823, - 14080.421835559315, - 13240.37397429912, - 11463.212203728874, - 10476.9056564872, - 12645.641789413046, - 20266.13708062475, - 34937.68960948567, - 57493.70099648449, - 85085.04515392474, - 116869.90422095651, - 148738.80019318525, - 174517.95953588776 - ], - "flow:branch138_seg2:RESISTANCE_85": [ - 55.0200017229851, - 61.37569041574173, - 64.32269877609691, - 63.7285339250037, - 60.15103741834636, - 54.16980345271253, - 46.597947070436646, - 38.6822575055454, - 31.16838455789548, - 24.09860220960986, - 18.231413193539687, - 12.952301394361054, - 7.961800507488306, - 3.276714473763438, - -1.7037286901812483, - -6.504417103845241, - -11.180256187642525, - -15.597599467590436, - -18.96390453555926, - -21.597260833837396, - -23.35284025947754, - -24.260795916142655, - -24.77142208083029, - -24.973172570596056, - -25.05432528413, - -25.04973341976331, - -24.79516811599226, - -24.14957607603969, - -23.00272810826189, - -21.370378072286936, - -19.45194782418556, - -17.74714291988495, - -16.654627610024118, - -16.701159975644085, - -18.187779233397606, - -21.089055141112908, - -24.942672761919997, - -29.255899304760888, - -33.16340546710501, - -35.68316427368902, - -36.46717815991745, - -35.08392038110857, - -31.63577589911024, - -26.57859401803186, - -20.879159206146095, - -14.852520510993015, - -9.327588455724479, - -4.886563799508515, - -1.2166557742298112, - 1.4027868463804156, - 3.4072423613180116, - 5.150532762054316, - 6.55770301364169, - 7.872412663141442, - 8.852335554956404, - 9.259003538666253, - 8.98824555788003, - 7.896393637487507, - 6.069907733347641, - 3.8175092092605323, - 1.5092028435258, - -0.5885703301407297, - -1.9971722283128612, - -2.738506040452047, - -2.9232475018916317, - -2.7040747120298, - -2.4532898586135974, - -2.4529093221486344, - -2.8288778891795343, - -3.570724239730067, - -4.438284947073802, - -5.204689218495737, - -5.573086889923567, - -5.343675270770005, - -4.555737650450162, - -3.385451414153684, - -2.0947735695609127, - -0.9826833120942178, - -0.33931082725973455, - -0.13538210197772443, - -0.29248660417434474, - -0.5611090142396689, - -0.6172022475554786, - -0.244119584814515, - 0.6229578900883267, - 1.8390435521973216, - 3.090700584086254, - 4.086719489353501, - 4.46576465507108, - 4.243489277272786, - 3.6965769920213765, - 3.357594326053968, - 3.969389913124168, - 6.266400407821084, - 10.779788219802898, - 17.789220107362425, - 26.45873881447825, - 36.50843707753001, - 46.664677617751074, - 55.0200017229851 - ], - "pressure:branch138_seg2:RESISTANCE_85": [ - 172966.2944900959, - 192946.66322315656, - 202211.16885673025, - 200343.2937314772, - 189096.72348556542, - 170293.5275001715, - 146489.89427879502, - 121605.35321195089, - 97984.0024245088, - 75758.73856880916, - 57314.065515321745, - 40718.12990084816, - 25029.499965919644, - 10301.00223337034, - -5356.009253533618, - -20447.926009434228, - -35147.354119743584, - -49034.149370490195, - -59616.797416594985, - -67895.27554675823, - -73414.28787730871, - -76268.62667368607, - -77873.88135944206, - -78508.12406268819, - -78763.24372296491, - -78748.80828604833, - -77948.53173351588, - -75918.98503402612, - -72313.64084794483, - -67182.02455947269, - -61151.05834972471, - -55791.66580353483, - -52357.1271102879, - -52503.410836263654, - -57176.89350217763, - -66297.63009498132, - -78412.24186123996, - -91971.72548626094, - -104255.7465773671, - -112177.10844823794, - -114641.81169219884, - -110293.26634809526, - -99453.33986244367, - -83555.08498893978, - -65637.78056821134, - -46691.84580471365, - -29323.125430606775, - -15361.883073830173, - -3824.798879470572, - 4409.938843685711, - 10711.342552006083, - 16191.721893934582, - 20615.440841803786, - 24748.49153760782, - 27829.07362004287, - 29107.515132715198, - 28256.333686448146, - 24823.88048964382, - 19081.95957208474, - 12001.097808613398, - 4744.478649651176, - -1850.287638373011, - -6278.507251399465, - -8609.037212332647, - -9189.808659500713, - -8500.795498316511, - -7712.403541734423, - -7711.207249835489, - -8893.139053681734, - -11225.280280827208, - -13952.62953737548, - -16361.973462456015, - -17520.104653481685, - -16798.903700459385, - -14321.865419683438, - -10642.83838504255, - -6585.336437228622, - -3089.260011403377, - -1066.6909239099252, - -425.6005050175261, - -919.4896860750024, - -1763.9575419625621, - -1940.2977529547488, - -767.4383619697072, - 1958.3917574991012, - 5781.398376377604, - 9716.230655523366, - 12847.413750598962, - 14039.017452987357, - 13340.250690898562, - 11620.923383944872, - 10555.264100180853, - 12478.564942912428, - 19699.673289529044, - 33888.40358738746, - 55923.94379285768, - 83178.29637053187, - 114771.51728781588, - 146699.6749973838, - 172966.2944900959 - ], - "flow:branch139_seg2:RESISTANCE_86": [ - 21.413106237363262, - 24.689293978149323, - 26.74517091479979, - 27.424856635463676, - 26.73661751814023, - 24.846680032771356, - 22.07517615769781, - 18.897797130132755, - 15.609862474852005, - 12.459477066962279, - 9.692190810771892, - 7.194344033062081, - 4.936560930327999, - 2.824423079945567, - 0.6956401713612523, - -1.3783194907828056, - -3.4411951372018916, - -5.394492489733639, - -7.050153964190399, - -8.415634812476537, - -9.404020623484453, - -10.04120558936565, - -10.429824327369758, - -10.63362322468558, - -10.743040948620944, - -10.790748526140728, - -10.753626713406286, - -10.583814122579948, - -10.228078734576052, - -9.663224576812961, - -8.940962071341303, - -8.197439402511035, - -7.598290295037006, - -7.362864713767773, - -7.645543183492885, - -8.51130140967616, - -9.873644336770816, - -11.577178819840594, - -13.29663786631595, - -14.685504922092871, - -15.486860334875143, - -15.464131391944013, - -14.571571063321331, - -12.905684153713116, - -10.727612245688038, - -8.245307086499668, - -5.804573814950934, - -3.625435297999081, - -1.7773190209001182, - -0.3527800049956953, - 0.7603523140445371, - 1.6509124563126805, - 2.3824289796019924, - 3.0299985520733292, - 3.5451378882070177, - 3.8739908907272502, - 3.9431687181722146, - 3.686263394173599, - 3.103551550964204, - 2.277271153507832, - 1.3212922997772365, - 0.3783804702982869, - -0.373576274833291, - -0.8858037418411099, - -1.1360796468478451, - -1.172799446932462, - -1.1170982872761013, - -1.086528938464604, - -1.1676846497105489, - -1.3937844684319773, - -1.7183046691296928, - -2.0605189629730676, - -2.300695942209589, - -2.345613500940941, - -2.1610791701307623, - -1.7759282209236724, - -1.272249593612006, - -0.7736632608696995, - -0.39355957384421847, - -0.18170513244652908, - -0.14303328069040075, - -0.20370818857857367, - -0.2505742526744668, - -0.1791930509509465, - 0.07492753456327288, - 0.4975379874455395, - 1.0079398877522876, - 1.4843445141005462, - 1.7806461444790256, - 1.8483532076808658, - 1.7242700201186298, - 1.5666047789482, - 1.6385049020422773, - 2.242187124359669, - 3.6494213651244496, - 6.024680562715204, - 9.26119579969171, - 13.234338731107197, - 17.466901806689556, - 21.413106237363262 - ], - "pressure:branch139_seg2:RESISTANCE_86": [ - 145579.9093789216, - 167853.51644578157, - 181830.67486521672, - 186451.61049798262, - 181772.52343698396, - 168923.52690178136, - 150081.08160197365, - 128479.23898428108, - 106125.7689246991, - 84707.44609449271, - 65893.6748491637, - 48911.724472106354, - 33561.879575733146, - 19202.223697400696, - 4729.404131496246, - -9370.692151764168, - -23395.432249556627, - -36675.18944217253, - -47931.42871646563, - -57214.83561449515, - -63934.510714543016, - -68266.49919684752, - -70908.57643843691, - -72294.13090559978, - -73038.02215417632, - -73362.36859579234, - -73109.99091298232, - -71955.49696381988, - -69536.9816408018, - -65696.74397570672, - -60786.344292035494, - -55731.4045019026, - -51658.007965986275, - -50057.435194958314, - -51979.26314227856, - -57865.237961381536, - -67127.31127624573, - -78709.02169789604, - -90398.99742546924, - -99841.39862957408, - -105289.5221797001, - -105134.99637594623, - -99066.80382528517, - -87741.04554210868, - -72933.12802298895, - -56056.83944908134, - -39463.18299627872, - -24648.013991586584, - -12083.344617633995, - -2398.4227504718447, - 5169.358417581006, - 11223.952429804664, - 16197.26680975355, - 20599.856449570507, - 24102.101151510327, - 26337.852927790616, - 26808.167777902283, - 25061.56206026005, - 21099.91649664573, - 15482.337054884158, - 8982.985052816266, - 2572.4709888492025, - -2539.8090138568687, - -6022.256978285526, - -7723.791691032927, - -7973.436236269241, - -7594.744341448284, - -7386.914474054316, - -7938.662593071346, - -9475.832901535226, - -11682.127536489357, - -14008.717865497656, - -15641.593660565562, - -15946.971780727697, - -14692.390083944782, - -12073.889075206753, - -8649.561557876092, - -5259.85469640451, - -2675.668184723991, - -1235.347007669865, - -972.4311741721259, - -1384.9377714884693, - -1703.5630698633338, - -1218.2682806309663, - 509.4050144233579, - 3382.579543667476, - 6852.616145073936, - 10091.517664673034, - 12105.964518911716, - 12566.280178674568, - 11722.683784927807, - 10650.775241283458, - 11139.597987891433, - 15243.813520400296, - 24811.086524816452, - 40959.60859833957, - 62963.496762885, - 89975.44829823596, - 118751.10289750657, - 145579.9093789216 - ], - "flow:branch140_seg0:RESISTANCE_87": [ - 16.802541282186663, - 20.20054508529143, - 23.011217999561833, - 24.987899143664144, - 25.991029845622894, - 25.98321627260227, - 25.057426782875293, - 23.45445519809791, - 21.36714315882727, - 18.99500500555039, - 16.575159276551716, - 14.126431172804018, - 11.704529322843257, - 9.316971168369182, - 6.890935138952563, - 4.485870077017382, - 2.0808143548343376, - -0.2706805936908061, - -2.4284046694158365, - -4.380038704052254, - -6.048550887893245, - -7.4107827383098135, - -8.51001806648247, - -9.372268571547906, - -10.051865978409527, - -10.581882691881598, - -10.962342504275112, - -11.177113918743283, - -11.20020693004107, - -11.015771232320425, - -10.64821806361782, - -10.178197536118242, - -9.713668717001385, - -9.410763273561642, - -9.40571479758556, - -9.791936181438796, - -10.570996843222291, - -11.692851725391137, - -12.982014001654756, - -14.208911561307422, - -15.175615694148965, - -15.665384357940004, - -15.564108487056453, - -14.848252212553637, - -13.620002749765815, - -11.972632906353986, - -10.112214021275546, - -8.220140567811208, - -6.386440246290817, - -4.73194614730653, - -3.25253954868625, - -1.9311417367053365, - -0.7602272886259646, - 0.2971223215850168, - 1.2156484415804942, - 1.9616259692074531, - 2.4882697292517535, - 2.743724316260275, - 2.7098848681505303, - 2.418266134573, - 1.927885242550669, - 1.3253917189630882, - 0.7389066581535556, - 0.2286853563347058, - -0.15530710762933267, - -0.4032315690874529, - -0.5630377672656843, - -0.6952693379041973, - -0.8565319615636687, - -1.0834012416429863, - -1.3672548477590625, - -1.6748306386577452, - -1.940021223546019, - -2.096411065289468, - -2.1054859350308726, - -1.9622995018847473, - -1.69757183966257, - -1.3762902292270112, - -1.0737819504788393, - -0.8374194281799915, - -0.6934080798381365, - -0.620824305155383, - -0.5650649224940785, - -0.46330945100115367, - -0.2643633611594722, - 0.04364590479285131, - 0.43089575202269365, - 0.8354877121942468, - 1.1640717206289013, - 1.3693169542202626, - 1.4478304414942922, - 1.4709289183102514, - 1.589691546139286, - 2.004400027515773, - 2.9248949821378933, - 4.525344255814424, - 6.8171820101755625, - 9.797792641909988, - 13.243523187140918, - 16.802541282186663 - ], - "pressure:branch140_seg0:RESISTANCE_87": [ - 95195.29807590923, - 114446.78982749263, - 130370.74093550387, - 141569.68683026612, - 147252.95369915507, - 147208.68566848672, - 141963.5977410119, - 132881.91448504827, - 121056.18595870596, - 107616.76660029197, - 93907.05855071066, - 80033.71654676355, - 66312.35948264168, - 52785.5776481825, - 39040.7982672087, - 25414.830527101018, - 11788.915701642989, - -1533.5489654182804, - -13758.198981430896, - -24815.239731523583, - -34268.24520352162, - -41986.010324348856, - -48213.7608153958, - -53098.866732847244, - -56949.146082341664, - -59951.971558373414, - -62107.47795698277, - -63324.27180234212, - -63455.10594564185, - -62410.180007025054, - -60327.79658265436, - -57664.881285153664, - -55033.07942506779, - -53316.95961362693, - -53288.35732261584, - -55476.50607593431, - -59890.297458569825, - -66246.1997064747, - -73549.98697865826, - -80501.01164440587, - -85977.9027010277, - -88752.701652862, - -88178.92019000165, - -84123.21514596273, - -77164.53123273813, - -67831.30832013715, - -57291.04971658569, - -46571.451213055625, - -36182.56742711724, - -26808.981832382662, - -18427.359685710635, - -10940.941025832173, - -4307.090346085464, - 1683.3553623380149, - 6887.292452270209, - 11113.65035300482, - 14097.36626093049, - 15544.651832006817, - 15352.933430876566, - 13700.758810312087, - 10922.491261207077, - 7509.046258840949, - 4186.297679136206, - 1295.6236974082744, - -879.897043893027, - -2284.5204643894085, - -3189.9072397868877, - -3939.0691415820215, - -4852.707338921709, - -6138.042002214185, - -7746.223061873575, - -9488.80286595217, - -10991.248022990598, - -11877.279329255769, - -11928.693274058314, - -11117.466272448384, - -9617.643817561602, - -7797.413284688599, - -6083.543621625226, - -4744.424711793286, - -3928.5241285739285, - -3517.2985912953977, - -3201.3921481087195, - -2624.8934937117097, - -1497.7584963668544, - 247.2771735402598, - 2441.252716751434, - 4733.480517341668, - 6595.083003576006, - 7757.905987445781, - 8202.726488019482, - 8333.59159637645, - 9006.444801531932, - 11355.988054321122, - 16571.07963546807, - 25638.472662765016, - 38622.947719485375, - 55509.68602715975, - 75031.57505773875, - 95195.29807590923 - ], - "flow:branch141_seg0:RESISTANCE_88": [ - 30.56874604255293, - 34.431957990263975, - 36.4539460042173, - 36.508297164790015, - 34.82284487917921, - 31.6904161776356, - 27.56204916035345, - 23.12741284316078, - 18.802468776705375, - 14.703264078783626, - 11.237682071187496, - 8.114451903772768, - 5.200605478851511, - 2.470609733423562, - -0.38643951544169974, - -3.1479939482562296, - -5.852551197126388, - -8.416249878479375, - -10.435882969274223, - -12.044005474902717, - -13.150338684337571, - -13.772695831811058, - -14.134443359205163, - -14.296838980129767, - -14.370908894219685, - -14.385598285061409, - -14.265963475963677, - -13.936446898808558, - -13.332142523229217, - -12.449607557344985, - -11.38951343266633, - -10.40596967730043, - -9.725482558870768, - -9.646434502912122, - -10.351056662492962, - -11.85625630972574, - -13.940627168902319, - -16.345709840703382, - -18.597120227717866, - -20.15837429946155, - -20.791178421681995, - -20.22649939705483, - -18.4881726712431, - -15.794893925460189, - -12.6415680710284, - -9.237722538921432, - -6.048236953873814, - -3.400188817641737, - -1.1934419566396248, - 0.42472925032369774, - 1.6696152969415845, - 2.7219719851300663, - 3.576561535994255, - 4.358903340217664, - 4.955728842481896, - 5.2490894868134195, - 5.1683035333865925, - 4.629412227556801, - 3.666685062332098, - 2.4362842266837235, - 1.1322254713641957, - -0.08425782782942992, - -0.9477108559364383, - -1.4490519594279991, - -1.624031808232427, - -1.5515026199955444, - -1.4288810640989813, - -1.4161384101935646, - -1.5980573692768156, - -1.9842046449921167, - -2.4600942039354172, - -2.9025964804111313, - -3.1462953439152446, - -3.072906850520262, - -2.684544065828432, - -2.0632111114460234, - -1.3461434081667885, - -0.7021531615469546, - -0.29243521052446814, - -0.1260873196249139, - -0.1729974940607618, - -0.3043783766898678, - -0.3456029624819339, - -0.16813828528950853, - 0.2794488673307368, - 0.9339200658448813, - 1.6372289558025508, - 2.225927814877664, - 2.495726496291246, - 2.4344721700938443, - 2.1672483654479398, - 1.969607672108272, - 2.2430515397556596, - 3.4019228312943404, - 5.766189700117473, - 9.516752140708585, - 14.275698498480137, - 19.879273458357638, - 25.639401748059125, - 30.56874604255293 - ], - "pressure:branch141_seg0:RESISTANCE_88": [ - 163389.13745963728, - 184037.90293669174, - 194845.37528422184, - 195135.88079706457, - 186127.18299859646, - 169384.4346049742, - 147318.4223082415, - 123615.40872029077, - 100498.69730544515, - 78588.5568328355, - 60065.11284764592, - 43371.53037515929, - 27797.098457182437, - 13205.343548654515, - -2065.5089685502703, - -16825.94422478338, - -31281.731043391796, - -44984.63255167453, - -55779.517897329184, - -64374.89007119549, - -70288.21175539424, - -73614.69421483183, - -75548.2251616668, - -76416.22545167054, - -76812.12717947293, - -76890.64158422253, - -76251.19670017342, - -74489.93932818182, - -71259.94845608238, - -66542.82245251292, - -60876.64745089221, - -55619.63214449465, - -51982.44653086446, - -51559.936766711915, - -55326.12353566323, - -63371.37575908004, - -74512.28276104521, - -87367.38590193748, - -99401.11475329185, - -107745.97639015649, - -111128.29765274539, - -108110.10323132933, - -98818.79295127871, - -84423.2894327762, - -67568.84631078341, - -49375.38215093138, - -32327.66622711067, - -18173.91911794637, - -6378.915629449453, - 2270.1665867372562, - 8924.04951374042, - 14548.868122382699, - 19116.62662328291, - 23298.22283310927, - 26488.239325545936, - 28056.244194806808, - 27624.44541474175, - 24744.08566686674, - 19598.334483090104, - 13021.874624829328, - 6051.715138020892, - -450.3558567345059, - -5065.489408596203, - -7745.144320135649, - -8680.40697465006, - -8292.740385705214, - -7637.3314191715135, - -7569.222271756033, - -8541.574286813058, - -10605.52124177311, - -13149.138322223702, - -15514.301262721743, - -16816.865229602176, - -16424.605677360698, - -14348.816885635728, - -11027.808711127165, - -7195.100840942075, - -3752.990039893464, - -1563.0584500888942, - -673.9333818090812, - -924.6670209470706, - -1626.8943567239025, - -1847.238675242055, - -898.6946788448986, - 1493.646789883623, - 4991.778001041642, - 8750.945378661721, - 11897.525178625789, - 13339.591980532292, - 13012.189230379838, - 11583.885076555622, - 10527.500808561026, - 11989.051034280401, - 18183.187374963105, - 30820.13113064542, - 50866.787977597094, - 76303.23013752527, - 106254.1897912307, - 137041.9228438434, - 163389.13745963728 - ], - "flow:branch142_seg2:RESISTANCE_89": [ - 54.77075913778906, - 61.840018772728506, - 65.58905573615779, - 65.84640862873727, - 62.91682995358166, - 57.34654738859611, - 49.99165334505866, - 42.07830863238929, - 34.2945183589019, - 27.01332477886783, - 20.838333715259992, - 15.253177571386207, - 10.101710202791997, - 5.208538286668597, - 0.09399896903582862, - -4.885122693475758, - -9.834181490953652, - -14.4792268459461, - -18.204999473878004, - -21.1977261353496, - -23.24680910923704, - -24.44416744341809, - -25.149698261475226, - -25.492008722275482, - -25.68695187232847, - -25.775473385353784, - -25.63357806288929, - -25.118718758181842, - -24.10232250824529, - -22.566827042812303, - -20.696569680698044, - -18.924078027250072, - -17.675477776297186, - -17.49915348780718, - -18.72327687920272, - -21.396010443290923, - -25.14655056750914, - -29.507003401290454, - -33.585657245326274, - -36.47595468840742, - -37.68430246887465, - -36.72167952344597, - -33.64335326719728, - -28.84345957906823, - -23.162536814806103, - -17.026016802952775, - -11.30847907625568, - -6.516634293073504, - -2.5635070375544755, - 0.330535481541071, - 2.5751563740839236, - 4.4490367099562445, - 6.007761894585434, - 7.451159926538602, - 8.573640297436723, - 9.181720829914706, - 9.111329188407977, - 8.211721430323166, - 6.539773892915924, - 4.368424994147525, - 2.0294424170664724, - -0.14170027861319098, - -1.6938241889664787, - -2.6045600624023857, - -2.90057603644065, - -2.7506172503858237, - -2.5093394195918437, - -2.4640196431426826, - -2.7795935546930672, - -3.4756032057732504, - -4.353038762107126, - -5.182929562003618, - -5.654139595478261, - -5.557510567173414, - -4.882229756662861, - -3.7696983174994867, - -2.470575490548341, - -1.3026264099056923, - -0.5458597413259527, - -0.23954809745555927, - -0.3329244931403658, - -0.5866448647630849, - -0.6863795683008161, - -0.39223980901303573, - 0.3999303450754439, - 1.5791600989918317, - 2.8720420318888356, - 3.959438780478009, - 4.477277615072126, - 4.392636031749924, - 3.9045002709858903, - 3.5092984220457524, - 3.933070888182412, - 5.930302526404493, - 10.099973102132168, - 16.748634172542594, - 25.28788456087401, - 35.39669887793617, - 45.75843790141343, - 54.77075913778906 - ], - "pressure:branch142_seg2:RESISTANCE_89": [ - 161274.51072926898, - 182090.20521279552, - 193129.38216599484, - 193887.1672047417, - 185260.9152608919, - 168859.01378218626, - 147202.25829788155, - 123901.12431948344, - 100981.4681427744, - 79541.72637854115, - 61359.23852884911, - 44913.54125114773, - 29744.856491497052, - 15336.732172789203, - 276.7834147079523, - -14384.42308715408, - -28957.10837943153, - -42634.61493099393, - -53605.289194367084, - -62417.48270187688, - -68451.08273335216, - -71976.7482992863, - -74054.20969068646, - -75062.15540756806, - -75636.17266859763, - -75896.82751302139, - -75479.01152753488, - -73962.98940609305, - -70970.1733397113, - -66448.85057893387, - -60941.80912541299, - -55722.64238969605, - -52046.093118904995, - -51526.89977918262, - -55131.37603854676, - -63001.33812495097, - -74044.94119026685, - -86884.45461670894, - -98894.20057396367, - -107404.78748809412, - -110962.81188201338, - -108128.33328458788, - -99064.08862819127, - -84930.6254757438, - -68202.93986904476, - -50133.73144339021, - -33298.23173579205, - -19188.468879407817, - -7548.340569692083, - 973.2738582283404, - 7582.64246871029, - 13100.351901453694, - 17690.07542308675, - 21940.213910398674, - 25245.398564940035, - 27035.914013387424, - 26828.643241133854, - 24179.71517591435, - 19256.604280519496, - 12862.987745272907, - 5975.767690974128, - -417.24167170846096, - -4987.527498928896, - -7669.222708273518, - -8540.852609569354, - -8099.2934595531015, - -7388.84203029187, - -7255.396285002684, - -8184.615251206304, - -10234.041216958498, - -12817.682420252111, - -15261.326343013154, - -16648.82158309566, - -16364.293862331122, - -14375.904728522459, - -11100.015068664667, - -7274.700218331789, - -3835.6312789468197, - -1607.3040449883358, - -705.3581659526618, - -980.3083905762904, - -1727.397338030853, - -2021.069833517699, - -1154.9645154253617, - 1177.6095811561077, - 4649.894877070989, - 8456.83318578119, - 11658.712826632707, - 13183.508283192143, - 12934.278034197958, - 11496.944368826229, - 10333.258018109307, - 11581.071599894065, - 17461.993470209636, - 29739.741534845358, - 49316.968106374734, - 74461.10432162091, - 104226.87913835766, - 134737.40003714233, - 161274.51072926898 - ], - "flow:branch143_seg0:RESISTANCE_90": [ - 39.3761984293024, - 43.598817135522516, - 45.36418803063228, - 44.59397138220813, - 41.78188166369036, - 37.361713931063285, - 31.911004958277466, - 26.292951877307292, - 21.09559226572526, - 16.196235773188207, - 12.16752072296818, - 8.556703388506712, - 5.077342176011926, - 1.824868634697892, - -1.6718248760329588, - -5.04166924595839, - -8.28333331584836, - -11.349064220261578, - -13.628388208955837, - -15.38428857970149, - -16.536362497604568, - -17.09519928585979, - -17.405710089796273, - -17.521140441020226, - -17.562980386157825, - -17.548413484138905, - -17.345770084829205, - -16.85308751937973, - -15.999186350885324, - -14.810236068067443, - -13.438079479944639, - -12.263271119411954, - -11.565515124002555, - -11.707458735598916, - -12.887992517630064, - -15.05831532789533, - -17.857278628259007, - -20.904665971542897, - -23.60896174759075, - -25.239908008262578, - -25.60911088180242, - -24.437837843949588, - -21.828382515346306, - -18.1282102632686, - -14.063518089647559, - -9.824744272355973, - -5.990443851449039, - -2.9777936473064646, - -0.49590595917129, - 1.2532767070303688, - 2.59014193921012, - 3.783497406320287, - 4.740544586388146, - 5.641049757302166, - 6.299457376916646, - 6.525021458619144, - 6.264992338433902, - 5.421355625664757, - 4.073195913441558, - 2.445995658400948, - 0.8322921514361363, - -0.6115267365323521, - -1.5427997210408035, - -1.9901040503149714, - -2.0654361819616986, - -1.8776861856352751, - -1.696771396567069, - -1.7193528630014931, - -2.0181689431831016, - -2.5713897634400693, - -3.1918196325637647, - -3.7165784991683344, - -3.9377533190796745, - -3.721147054471129, - -3.1135221939599402, - -2.256838568630778, - -1.3423082292013617, - -0.578677551956602, - -0.17184146348419474, - -0.0749853734482898, - -0.21785394019461707, - -0.41561388016301987, - -0.4353710980541888, - -0.13183777006321695, - 0.5212212174518223, - 1.4090478959237387, - 2.284703584378974, - 2.954260350602804, - 3.1661966603896694, - 2.951714119103874, - 2.5388479115810467, - 2.3254961830875023, - 2.847998601295876, - 4.62092946432459, - 7.991405549118382, - 13.139742272225439, - 19.38364147444023, - 26.542501974491678, - 33.68108574980574, - 39.3761984293024 - ], - "pressure:branch143_seg0:RESISTANCE_90": [ - 176108.94239144382, - 194994.486048226, - 202890.0578318885, - 199445.2854877567, - 186868.29314231884, - 167099.21700909565, - 142721.07410115865, - 117594.48936583409, - 94349.44436569666, - 72437.20995208922, - 54418.894954907795, - 38269.61576325286, - 22708.270387814373, - 8161.673754187479, - -7477.1898386951425, - -22548.724209307213, - -37046.975785349365, - -50758.37121634017, - -60952.58378708784, - -68805.79891632558, - -73958.41718146982, - -76457.79903332298, - -77846.54988951674, - -78362.8088958421, - -78549.93687624094, - -78484.78681577794, - -77578.46989949927, - -75374.96095254712, - -71555.91194099099, - -66238.36516869394, - -60101.43333755634, - -54847.13591579321, - -51726.44180868, - -52361.2806279316, - -57641.1848366666, - -67347.89269598157, - -79866.17750462452, - -93495.53187325786, - -105590.41883622222, - -112884.7802149544, - -114536.02970527449, - -109297.54391497855, - -97626.82819153913, - -81077.91163857337, - -62898.68996666957, - -43940.89302900768, - -26792.092005227718, - -13318.098516510105, - -2217.925484911527, - 5605.244899280628, - 11584.337131401422, - 16921.585966815484, - 21201.95262036804, - 25229.43672481918, - 28174.146325489823, - 29182.9753505036, - 28020.0024081306, - 24246.860886732233, - 18217.25440959437, - 10939.646935910056, - 3722.403289216007, - -2735.036166789173, - -6900.128454048135, - -8900.68451323766, - -9237.605357848912, - -8397.898768439054, - -7588.762451661453, - -7689.757426544364, - -9026.203958956072, - -11500.468551545777, - -14275.323728984748, - -16622.293032643425, - -17611.491207476774, - -16642.72576801974, - -13925.14063222821, - -10093.647160566006, - -6003.43588354196, - -2588.1191106794668, - -768.5561227428269, - -335.36997830211027, - -974.3456335006285, - -1858.8214149251644, - -1947.1850174613076, - -589.6407266116898, - 2331.1472671039064, - 6301.927169924435, - 10218.272661473584, - 13212.846507461203, - 14160.725705038209, - 13201.458558541039, - 11354.926032386182, - 10400.716414363562, - 12737.593815895376, - 20666.97734390871, - 35741.337041541556, - 58767.12854879729, - 86692.79249716035, - 118710.59517192941, - 150637.71076437217, - 176108.94239144382 - ], - "flow:branch144_seg0:RESISTANCE_91": [ - 30.646738855299645, - 36.71075305564904, - 41.46091242122263, - 44.452127326168494, - 45.419108408167546, - 44.361965983076985, - 41.55267493251541, - 37.56238015430683, - 32.81453510236321, - 27.77867870008001, - 22.929275005574574, - 18.30322555920437, - 13.985774038836297, - 9.921757184729092, - 5.9353101554478425, - 2.072500927603289, - -1.7306118936938095, - -5.392788188538857, - -8.693849138870945, - -11.576199983289577, - -13.90646367935317, - -15.665607458499418, - -16.933352433657326, - -17.790549014180726, - -18.361186903155815, - -18.72291036820851, - -18.89170069042654, - -18.834447851348095, - -18.49292084892399, - -17.82232639225904, - -16.861142209174826, - -15.747969159382976, - -14.690996018505885, - -13.996682170534894, - -13.924478094827187, - -14.656067634477044, - -16.1913437415534, - -18.4081474171549, - -20.942354369308667, - -23.331822506026484, - -25.152453575524095, - -25.97555012141702, - -25.584288179782202, - -23.95845622197939, - -21.303332770147847, - -17.889101426540016, - -14.157767553049647, - -10.467009945358317, - -7.060460094158097, - -4.144308077107944, - -1.6951526002276407, - 0.3355553365230786, - 2.035453900007247, - 3.4980903025617867, - 4.701785561768778, - 5.613516703769401, - 6.141621499432006, - 6.188120125107471, - 5.718061280699858, - 4.794497303982765, - 3.5355398589105986, - 2.123802646153424, - 0.815222482347196, - -0.26046491656774257, - -1.006274696339743, - -1.4173044231444762, - -1.6027341524716072, - -1.7044482998940877, - -1.8591493708300584, - -2.156018571109713, - -2.593876334151349, - -3.10247356182824, - -3.5448297475828956, - -3.7850986695037636, - -3.732950059175118, - -3.373536706447182, - -2.7705317266696055, - -2.066458302723467, - -1.413210046412145, - -0.9230522997146681, - -0.6560747926409447, - -0.5660661150117255, - -0.538660340310747, - -0.4352556362851415, - -0.1390776169132869, - 0.3845293340485445, - 1.0828121953940462, - 1.8268940253362735, - 2.4242310212987515, - 2.7632599018067476, - 2.8238069387162725, - 2.7382943723219006, - 2.804079211757257, - 3.4210345917310843, - 5.011801281739095, - 7.905838489052194, - 12.168920034473976, - 17.73245679720775, - 24.098073458698348, - 30.646738855299645 - ], - "pressure:branch144_seg0:RESISTANCE_91": [ - 113927.69135990362, - 136470.35540913278, - 154128.83100311283, - 165248.52011884487, - 168843.2230587184, - 164913.349916331, - 154469.95346688424, - 139636.2357890223, - 121986.36353813084, - 103265.82375603274, - 85238.41242213511, - 68041.30913391501, - 51991.40292378853, - 36883.627182213924, - 22064.213315102774, - 7704.416679952957, - -6433.46160319696, - -20047.415524828393, - -32318.941538916475, - -43033.93405229163, - -51696.57070037491, - -58236.09813507366, - -62948.87553481244, - -66135.4601799742, - -68256.77747903294, - -69601.46604373942, - -70228.93547286728, - -70016.10095853699, - -68746.49171538597, - -66253.59096508395, - -62680.4377017774, - -58542.27356478633, - -54613.02972784643, - -52031.95334800409, - -51763.53837272428, - -54483.18523854498, - -60190.49600022146, - -68431.3507988993, - -77852.13611802396, - -86734.86225993626, - -93502.96556597625, - -96562.78506855923, - -95108.28872106923, - -89064.3411948354, - -79194.0549444478, - -66501.82375526853, - -52630.78005607191, - -38910.576559097484, - -26246.900926851114, - -15406.25427515811, - -6301.643485086822, - 1247.4098792058203, - 7566.696241066452, - 13003.972599531653, - 17478.64844121926, - 20867.96254212414, - 22831.165232304804, - 23004.02150584151, - 21256.60168412922, - 17823.299622616138, - 13143.189418569442, - 7895.128206714133, - 3030.5480722443326, - -968.2650661424526, - -3740.7749506132086, - -5268.757033020531, - -5958.082610907271, - -6336.199775321304, - -6911.293130144888, - -8014.889267512263, - -9642.603208720788, - -11533.287508112346, - -13177.72410672711, - -14070.91159102002, - -13877.051787194998, - -12540.950947443425, - -10299.310636252496, - -7681.953529619964, - -5253.53639598066, - -3431.3999283079065, - -2438.924638536017, - -2104.321962113466, - -2002.4423899876992, - -1618.0406674730375, - -517.0139599362983, - 1429.468221567414, - 4025.299206550765, - 6791.385525504068, - 9011.955395437892, - 10272.277997558813, - 10497.358524603422, - 10179.469912783501, - 10424.021704043045, - 12717.521917699587, - 18631.116096203008, - 29389.55206864794, - 45237.34066507866, - 65919.50532106307, - 89583.36116392772, - 113927.69135990362 - ], - "flow:branch145_seg0:RESISTANCE_92": [ - 23.738851969953522, - 26.505167024782835, - 27.804676908828892, - 27.572382077681326, - 26.05304450011871, - 23.48534339430538, - 20.220696734566037, - 16.81259721855331, - 13.557596086116416, - 10.491526024716208, - 7.953021131320683, - 5.661083253789731, - 3.4978297360301447, - 1.4700257836525197, - -0.6907407561401826, - -2.7626224758693225, - -4.782286688430899, - -6.703603530398042, - -8.161322700148093, - -9.307494565718207, - -10.077386602308854, - -10.476980289080545, - -10.706093190888863, - -10.798946504714795, - -10.837194659513862, - -10.838695583547075, - -10.732034276200883, - -10.456935855652102, - -9.966316530579093, - -9.264411055618282, - -8.43795224441223, - -7.700022469341542, - -7.222717455778246, - -7.2352649785504255, - -7.868691371841167, - -9.114654000223549, - -10.770257758769302, - -12.633887319881259, - -14.328038016267215, - -15.4254410752475, - -15.781761122091574, - -15.201182889790458, - -13.728828319842863, - -11.553216178460293, - -9.100145228381063, - -6.49794242828772, - -4.1012309513392315, - -2.1739275660890724, - -0.5737235257642329, - 0.5709022237704255, - 1.4454747480411982, - 2.2073113914612628, - 2.822881283008037, - 3.3956117291776606, - 3.8235925353398517, - 4.005092782876086, - 3.8944486977561708, - 3.4287193172180657, - 2.6430938938521535, - 1.674107407334363, - 0.6754761357860396, - -0.23681774426090982, - -0.8476696519169741, - -1.1739921664866277, - -1.260444615791461, - -1.1694525602124444, - -1.062884704923564, - -1.0626976195901645, - -1.2233830068643523, - -1.542421540857419, - -1.9161481247379903, - -2.24770761030227, - -2.410395478441761, - -2.315242966522902, - -1.979120761527979, - -1.476604644925507, - -0.919675624718676, - -0.4376904540388251, - -0.15559843529956682, - -0.06354154879641984, - -0.12812176519976415, - -0.24300166016340352, - -0.26775704050865845, - -0.10857536288009857, - 0.26404954887033155, - 0.7872618902433963, - 1.3284273872177839, - 1.7626578225599936, - 1.9289123858069899, - 1.8369660392497364, - 1.6036299527169338, - 1.4569530041014975, - 1.7161397191256875, - 2.6991236135400745, - 4.634775069544059, - 7.652915927106337, - 11.387645297174927, - 15.717193201234679, - 20.114719603768105, - 23.738851969953522 - ], - "pressure:branch145_seg0:RESISTANCE_92": [ - 170160.81694011213, - 189989.84785699658, - 199304.77444952796, - 197639.67799544393, - 186749.01977266755, - 168343.65971665614, - 144942.572615018, - 120513.21105229211, - 97181.26338534174, - 75203.57941376808, - 57007.498701305674, - 40578.81789945465, - 25072.550524078444, - 10537.189775908197, - -4951.2508653436735, - -19802.56239797619, - -34279.57724220058, - -48051.63512620204, - -58500.61071727173, - -66716.40570372531, - -72235.01536807694, - -75099.31513587986, - -76741.60342313288, - -77407.17881642458, - -77681.34275979568, - -77692.10142916894, - -76927.54991602157, - -74955.63602403061, - -71438.86169700051, - -66407.5817856882, - -60483.49975087779, - -55193.996554627, - -51772.659619694256, - -51862.60064667858, - -56403.02040624539, - -65334.118632513346, - -77201.53700808428, - -90560.09069862613, - -102703.81470355128, - -110570.0333928518, - -113124.14638617737, - -108962.54386086849, - -98408.66127358767, - -82813.80690611273, - -65230.11931221052, - -46577.450056419635, - -29397.748889594317, - -15582.779280252125, - -4112.467779207387, - 4092.244600230762, - 10361.207201777015, - 15822.075561517302, - 20234.499370465026, - 24339.848724766773, - 27407.628232529474, - 28708.627557799526, - 27915.52737176697, - 24577.164928390095, - 18945.777866449866, - 12000.053095999203, - 4841.833599803262, - -1697.51683359899, - -6076.1219897289075, - -8415.211754279815, - -9034.905554921897, - -8382.671717668234, - -7618.790071731338, - -7617.449038336931, - -8769.246808655078, - -11056.124777664789, - -13735.008360823387, - -16111.636893629266, - -17277.78850803516, - -16595.732392493293, - -14186.398147262673, - -10584.347254709037, - -6592.263004971107, - -3137.3785606986435, - -1115.3343429888848, - -455.46776510093684, - -918.3807313761846, - -1741.8433319170995, - -1919.290655338971, - -778.2715217497383, - 1892.7152418876105, - 5643.117306566433, - 9522.208139665583, - 12634.785180525972, - 13826.502974543695, - 13167.42875037212, - 11494.868545847014, - 10443.483692262529, - 12301.341992418324, - 19347.40061076585, - 33222.20944658667, - 54856.33541919573, - 81626.98976530504, - 112661.32155475594, - 144182.92530029142, - 170160.81694011213 - ], - "flow:branch146_seg2:RESISTANCE_93": [ - 30.2487670867172, - 33.367832705282346, - 34.58109759440052, - 33.8633182118577, - 31.602746783610876, - 28.158902965975603, - 23.989066347890663, - 19.733461270512546, - 15.838237387473072, - 12.209681112794815, - 9.235009143486428, - 6.56298113941601, - 3.9796799863518184, - 1.5363902413959578, - -1.1051901682437513, - -3.664832281269369, - -6.142687329515002, - -8.464531490616725, - -10.190257650802003, - -11.52137691191135, - -12.386546476194814, - -12.812039558324798, - -13.057776304524635, - -13.165212866325097, - -13.227379754873036, - -13.24849083340169, - -13.123555603597246, - -12.771329754059673, - -12.135767640726467, - -11.240437983169391, - -10.206843135271086, - -9.329929037760596, - -8.829094250125621, - -8.980342415214972, - -9.92997116841206, - -11.632853650534507, - -13.807886653044989, - -16.152264320437265, - -18.20278856640826, - -19.415266405657867, - -19.6418837755171, - -18.6822260808452, - -16.630185894622876, - -13.765210689319257, - -10.64394017127426, - -7.4126805086194905, - -4.524832340513836, - -2.2736044725394473, - -0.4351407039213527, - 0.8492329275908433, - 1.840201700284081, - 2.7361395521677316, - 3.467182493337704, - 4.1655195852326825, - 4.681323706537031, - 4.8636421354074635, - 4.666731822450945, - 4.019342568569128, - 2.9877358401787646, - 1.7467682261188922, - 0.524817961171827, - -0.5502139201676852, - -1.2288751430443605, - -1.5368542729147847, - -1.5592179480336654, - -1.3925211680740852, - -1.246185656528829, - -1.2686217372899116, - -1.512500681443688, - -1.9540639001706082, - -2.443354660869304, - -2.8517069887444757, - -3.015752926273336, - -2.837300742180772, - -2.356721876742929, - -1.68876320687412, - -0.9852870360069186, - -0.4087987299591112, - -0.11455631643548492, - -0.06213316092112989, - -0.19090775341656818, - -0.3528252090884117, - -0.3674331075033787, - -0.1242530718747013, - 0.3923052883202556, - 1.0878960365700288, - 1.7674254229870803, - 2.274857369155019, - 2.4228464612437874, - 2.240447830983945, - 1.9077273336529479, - 1.7410620599383997, - 2.158779321243464, - 3.5557582563864427, - 6.194417808181831, - 10.193667632920919, - 15.01931541471514, - 20.527299143884196, - 25.962094480294148, - 30.2487670867172 - ], - "pressure:branch146_seg2:RESISTANCE_93": [ - 171375.2908496999, - 189046.45000896446, - 195920.23837377317, - 191853.637903855, - 179046.30314896276, - 159535.10342976966, - 135910.769876896, - 111800.51256337727, - 89732.00563988743, - 69174.31199389839, - 52321.21935507236, - 37182.7651151651, - 22546.995492228994, - 8704.464671991938, - -6261.48781482107, - -20763.216441761164, - -34801.57801726182, - -47956.05526507186, - -57733.20822408732, - -65274.70404355193, - -70176.34797793956, - -72586.99170750905, - -73979.2205620502, - -74587.90560277631, - -74940.11396141707, - -75059.71940558031, - -74351.89514009336, - -72356.34909895432, - -68755.5530164784, - -63683.0361753692, - -57827.1737803296, - -52858.99084314522, - -50021.49643709479, - -50878.397421136804, - -56258.547405821024, - -65906.27882640602, - -78228.99308264109, - -91511.13458147057, - -103128.4407691988, - -109997.77007953098, - -111281.67753797396, - -105844.70828665822, - -94218.81349428705, - -77987.21113910753, - -60303.56005616901, - -41996.762198563294, - -25635.5723913859, - -12881.173855503828, - -2465.3026181621626, - 4811.354444554546, - 10425.71754095726, - 15501.680125138642, - 19643.42568149246, - 23599.87527467987, - 26522.178886480546, - 27555.109375360702, - 26439.50813258978, - 22771.705033080787, - 16927.106388329823, - 9896.367410280238, - 2973.371790035698, - -3117.2533521104406, - -6962.228723354043, - -8707.093656390034, - -8833.795723849122, - -7889.370152143422, - -7060.30195307141, - -7187.414236854023, - -8569.117658572968, - -11070.807225649418, - -13842.898603274652, - -16156.430879089212, - -17085.83802405159, - -16074.811860110387, - -13352.077984561025, - -9567.738246145656, - -5582.173047980142, - -2316.061380119126, - -649.022222675538, - -352.0172737527093, - -1081.593562917749, - -1998.9417305260579, - -2081.7032140733604, - -703.9594794222887, - 2222.617295277378, - 6163.507396745063, - 10013.401374383346, - 12888.27217859427, - 13726.708787484633, - 12693.323915242421, - 10808.286027970902, - 9864.038955833214, - 12230.628540919968, - 20145.254305159928, - 35094.65858487314, - 57752.52757935011, - 85092.37881270343, - 116298.02467839172, - 147089.01952508348, - 171375.2908496999 - ] + { + "bc_name": "RESISTANCE_1", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6395.90661976335 + } + }, + { + "bc_name": "RESISTANCE_2", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6395.90661976335 + } + }, + { + "bc_name": "RESISTANCE_3", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4967.70988574267 + } + }, + { + "bc_name": "RESISTANCE_4", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3714.2687347715 + } + }, + { + "bc_name": "RESISTANCE_5", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5171.48649207728 + } + }, + { + "bc_name": "RESISTANCE_6", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3382.949932341 + } + }, + { + "bc_name": "RESISTANCE_7", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5053.51674230097 + } + }, + { + "bc_name": "RESISTANCE_8", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5972.50259803863 + } + }, + { + "bc_name": "RESISTANCE_9", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4806.11337621455 + } + }, + { + "bc_name": "RESISTANCE_10", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5665.52978369007 + } + }, + { + "bc_name": "RESISTANCE_11", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5714.82998380798 + } + }, + { + "bc_name": "RESISTANCE_12", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4912.03366380404 + } + }, + { + "bc_name": "RESISTANCE_13", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4066.44572311571 + } + }, + { + "bc_name": "RESISTANCE_14", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4093.36138650337 + } + }, + { + "bc_name": "RESISTANCE_15", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6951.52470108444 + } + }, + { + "bc_name": "RESISTANCE_16", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7277.06705089581 + } + }, + { + "bc_name": "RESISTANCE_17", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5492.24220788137 + } + }, + { + "bc_name": "RESISTANCE_18", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4285.29799962289 + } + }, + { + "bc_name": "RESISTANCE_19", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4912.03366380404 + } + }, + { + "bc_name": "RESISTANCE_20", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7787.55548633284 + } + }, + { + "bc_name": "RESISTANCE_21", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6395.90661976335 + } + }, + { + "bc_name": "RESISTANCE_22", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5855.14374377891 + } + }, + { + "bc_name": "RESISTANCE_23", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4535.5587808418 + } + }, + { + "bc_name": "RESISTANCE_24", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5112.56156376216 + } + }, + { + "bc_name": "RESISTANCE_25", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6122.44897959184 + } + }, + { + "bc_name": "RESISTANCE_26", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5440.75561213941 + } + }, + { + "bc_name": "RESISTANCE_27", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5524.35319031397 + } + }, + { + "bc_name": "RESISTANCE_28", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7277.06705089581 + } + }, + { + "bc_name": "RESISTANCE_29", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5346.4499572284 + } + }, + { + "bc_name": "RESISTANCE_30", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5007.41096823299 + } + }, + { + "bc_name": "RESISTANCE_31", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7210.23853872499 + } + }, + { + "bc_name": "RESISTANCE_32", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3743.63581910752 + } + }, + { + "bc_name": "RESISTANCE_33", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5346.4499572284 + } + }, + { + "bc_name": "RESISTANCE_34", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6086.61249581545 + } + }, + { + "bc_name": "RESISTANCE_35", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5346.39278878541 + } + }, + { + "bc_name": "RESISTANCE_36", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4406.3539624138 + } + }, + { + "bc_name": "RESISTANCE_37", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4343.41971912552 + } + }, + { + "bc_name": "RESISTANCE_38", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3712.80695631511 + } + }, + { + "bc_name": "RESISTANCE_39", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5665.52978369007 + } + }, + { + "bc_name": "RESISTANCE_40", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4336.16870587045 + } + }, + { + "bc_name": "RESISTANCE_41", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5053.51674230097 + } + }, + { + "bc_name": "RESISTANCE_42", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3941.84983128883 + } + }, + { + "bc_name": "RESISTANCE_43", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3809.11266720418 + } + }, + { + "bc_name": "RESISTANCE_44", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4321.89471864465 + } + }, + { + "bc_name": "RESISTANCE_45", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4157.55469263198 + } + }, + { + "bc_name": "RESISTANCE_46", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4786.29205954147 + } + }, + { + "bc_name": "RESISTANCE_47", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5260.66600031564 + } + }, + { + "bc_name": "RESISTANCE_48", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5062.6759279885 + } + }, + { + "bc_name": "RESISTANCE_49", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6415.73994867408 + } + }, + { + "bc_name": "RESISTANCE_50", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5053.51674230097 + } + }, + { + "bc_name": "RESISTANCE_51", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4093.36138650337 + } + }, + { + "bc_name": "RESISTANCE_52", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4093.36138650337 + } + }, + { + "bc_name": "RESISTANCE_53", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7675.08794371602 + } + }, + { + "bc_name": "RESISTANCE_54", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3389.07227535534 + } + }, + { + "bc_name": "RESISTANCE_55", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3011.91211240456 + } + }, + { + "bc_name": "RESISTANCE_56", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 8710.04267920913 + } + }, + { + "bc_name": "RESISTANCE_57", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4502.27364819234 + } + }, + { + "bc_name": "RESISTANCE_58", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4165.48066175603 + } + }, + { + "bc_name": "RESISTANCE_59", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5053.51674230097 + } + }, + { + "bc_name": "RESISTANCE_60", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7277.06705089581 + } + }, + { + "bc_name": "RESISTANCE_61", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5384.30475164894 + } + }, + { + "bc_name": "RESISTANCE_62", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4093.36138650337 + } + }, + { + "bc_name": "RESISTANCE_63", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5693.72323950077 + } + }, + { + "bc_name": "RESISTANCE_64", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6846.42331435353 + } + }, + { + "bc_name": "RESISTANCE_65", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5931.12774462936 + } + }, + { + "bc_name": "RESISTANCE_66", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5665.59398087295 + } + }, + { + "bc_name": "RESISTANCE_67", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6508.93351124418 + } + }, + { + "bc_name": "RESISTANCE_68", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4093.36138650337 + } + }, + { + "bc_name": "RESISTANCE_69", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5443.21367335275 + } + }, + { + "bc_name": "RESISTANCE_70", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5616.96773613732 + } + }, + { + "bc_name": "RESISTANCE_71", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5295.95565519798 + } + }, + { + "bc_name": "RESISTANCE_72", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5306.82280518654 + } + }, + { + "bc_name": "RESISTANCE_73", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4933.84535684037 + } + }, + { + "bc_name": "RESISTANCE_74", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5054.2829994137 + } + }, + { + "bc_name": "RESISTANCE_75", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4767.58045292014 + } + }, + { + "bc_name": "RESISTANCE_76", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5664.88789186862 + } + }, + { + "bc_name": "RESISTANCE_77", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7277.06705089581 + } + }, + { + "bc_name": "RESISTANCE_78", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5071.55970747244 + } + }, + { + "bc_name": "RESISTANCE_79", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4912.03366380404 + } + }, + { + "bc_name": "RESISTANCE_80", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6488.66106478928 + } + }, + { + "bc_name": "RESISTANCE_81", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 8134.82110172594 + } + }, + { + "bc_name": "RESISTANCE_82", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4912.03366380404 + } + }, + { + "bc_name": "RESISTANCE_83", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 8732.48046107497 + } + }, + { + "bc_name": "RESISTANCE_84", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4024.68473302925 + } + }, + { + "bc_name": "RESISTANCE_85", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3143.69845644406 + } + }, + { + "bc_name": "RESISTANCE_86", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6798.63574042809 + } + }, + { + "bc_name": "RESISTANCE_87", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5665.52978369007 + } + }, + { + "bc_name": "RESISTANCE_88", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5344.97349783974 + } + }, + { + "bc_name": "RESISTANCE_89", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 2944.53670659458 + } + }, + { + "bc_name": "RESISTANCE_90", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4472.47193523861 + } + }, + { + "bc_name": "RESISTANCE_91", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3717.44908643689 + } + }, + { + "bc_name": "RESISTANCE_92", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7168.03058359716 + } + }, + { + "bc_name": "RESISTANCE_93", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5665.52978369007 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0], + "junction_name": "J0", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [1, 8] + }, + { + "inlet_vessels": [3], + "junction_name": "J1", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [ + 4, 37, 49, 59, 70, 73, 91, 94, 100, 137, 156, 168, 186, 198 + ] + }, + { + "inlet_vessels": [4], + "junction_name": "J2", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [5, 48] + }, + { + "inlet_vessels": [8], + "junction_name": "J3", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [9, 18, 26, 28, 41, 51, 68, 92, 105, 164, 183, 212] + }, + { + "inlet_vessels": [9], + "junction_name": "J4", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [10, 125, 185] + }, + { + "inlet_vessels": [10], + "junction_name": "J5", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [11, 16, 69, 83, 87] + }, + { + "inlet_vessels": [11], + "junction_name": "J6", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [12, 21] + }, + { + "inlet_vessels": [12], + "junction_name": "J7", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [13, 65] + }, + { + "inlet_vessels": [16], + "junction_name": "J8", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [17, 184] + }, + { + "inlet_vessels": [18], + "junction_name": "J9", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [19, 106, 130] + }, + { + "inlet_vessels": [19], + "junction_name": "J10", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [20, 148] + }, + { + "inlet_vessels": [21], + "junction_name": "J11", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [22, 30] + }, + { + "inlet_vessels": [22], + "junction_name": "J12", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [23, 162] + }, + { + "inlet_vessels": [23], + "junction_name": "J13", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [24, 63] + }, + { + "inlet_vessels": [24], + "junction_name": "J14", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [25, 29] + }, + { + "inlet_vessels": [26], + "junction_name": "J15", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [27, 76, 149] + }, + { + "inlet_vessels": [30], + "junction_name": "J16", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [31, 204] + }, + { + "inlet_vessels": [31], + "junction_name": "J17", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [32, 58] + }, + { + "inlet_vessels": [32], + "junction_name": "J18", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [33, 170] + }, + { + "inlet_vessels": [33], + "junction_name": "J19", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [34, 61] + }, + { + "inlet_vessels": [37], + "junction_name": "J20", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [38, 43, 56, 62, 90, 113, 145, 171] + }, + { + "inlet_vessels": [41], + "junction_name": "J21", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [42, 139] + }, + { + "inlet_vessels": [43], + "junction_name": "J22", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [44, 107, 163] + }, + { + "inlet_vessels": [44], + "junction_name": "J23", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [45, 143] + }, + { + "inlet_vessels": [49], + "junction_name": "J24", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [50, 140] + }, + { + "inlet_vessels": [51], + "junction_name": "J25", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [52, 154] + }, + { + "inlet_vessels": [52], + "junction_name": "J26", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [53, 136] + }, + { + "inlet_vessels": [56], + "junction_name": "J27", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [57, 192] + }, + { + "inlet_vessels": [59], + "junction_name": "J28", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [60, 121] + }, + { + "inlet_vessels": [63], + "junction_name": "J29", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [64, 120] + }, + { + "inlet_vessels": [70], + "junction_name": "J30", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [71, 144, 205] + }, + { + "inlet_vessels": [71], + "junction_name": "J31", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [72, 112] + }, + { + "inlet_vessels": [73], + "junction_name": "J32", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [74, 79, 197] + }, + { + "inlet_vessels": [74], + "junction_name": "J33", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [75, 211] + }, + { + "inlet_vessels": [81], + "junction_name": "J34", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [82, 178] + }, + { + "inlet_vessels": [83], + "junction_name": "J35", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [84, 109, 135] + }, + { + "inlet_vessels": [87], + "junction_name": "J36", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [88, 89, 108] + }, + { + "inlet_vessels": [92], + "junction_name": "J37", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [93, 97] + }, + { + "inlet_vessels": [94], + "junction_name": "J38", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [95, 104] + }, + { + "inlet_vessels": [95], + "junction_name": "J39", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [96, 122] + }, + { + "inlet_vessels": [100], + "junction_name": "J40", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [101, 126] + }, + { + "inlet_vessels": [113], + "junction_name": "J41", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [114, 151] + }, + { + "inlet_vessels": [116], + "junction_name": "J42", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [117, 210] + }, + { + "inlet_vessels": [126], + "junction_name": "J43", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [127, 195, 201] + }, + { + "inlet_vessels": [130], + "junction_name": "J44", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [131, 159] + }, + { + "inlet_vessels": [131], + "junction_name": "J45", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [132, 155] + }, + { + "inlet_vessels": [137], + "junction_name": "J46", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [138, 209] + }, + { + "inlet_vessels": [149], + "junction_name": "J47", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [150, 206] + }, + { + "inlet_vessels": [156], + "junction_name": "J48", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [157, 189] + }, + { + "inlet_vessels": [157], + "junction_name": "J49", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [158, 174] + }, + { + "inlet_vessels": [164], + "junction_name": "J50", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [165, 179] + }, + { + "inlet_vessels": [168], + "junction_name": "J51", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [169, 182] + }, + { + "inlet_vessels": [176], + "junction_name": "J52", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [177, 196] + }, + { + "inlet_vessels": [1], + "junction_name": "J53", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [2] + }, + { + "inlet_vessels": [2], + "junction_name": "J54", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [3] + }, + { + "inlet_vessels": [5], + "junction_name": "J55", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [6] + }, + { + "inlet_vessels": [6], + "junction_name": "J56", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [7] + }, + { + "inlet_vessels": [13], + "junction_name": "J57", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [14] + }, + { + "inlet_vessels": [14], + "junction_name": "J58", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [15] + }, + { + "inlet_vessels": [34], + "junction_name": "J59", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [35] + }, + { + "inlet_vessels": [35], + "junction_name": "J60", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [36] + }, + { + "inlet_vessels": [38], + "junction_name": "J61", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [39] + }, + { + "inlet_vessels": [39], + "junction_name": "J62", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [40] + }, + { + "inlet_vessels": [45], + "junction_name": "J63", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [46] + }, + { + "inlet_vessels": [46], + "junction_name": "J64", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [47] + }, + { + "inlet_vessels": [53], + "junction_name": "J65", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [54] + }, + { + "inlet_vessels": [54], + "junction_name": "J66", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [55] + }, + { + "inlet_vessels": [65], + "junction_name": "J67", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [66] + }, + { + "inlet_vessels": [66], + "junction_name": "J68", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [67] + }, + { + "inlet_vessels": [76], + "junction_name": "J69", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [77] + }, + { + "inlet_vessels": [77], + "junction_name": "J70", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [78] + }, + { + "inlet_vessels": [79], + "junction_name": "J71", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [80] + }, + { + "inlet_vessels": [80], + "junction_name": "J72", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [81] + }, + { + "inlet_vessels": [84], + "junction_name": "J73", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [85] + }, + { + "inlet_vessels": [85], + "junction_name": "J74", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [86] + }, + { + "inlet_vessels": [97], + "junction_name": "J75", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [98] + }, + { + "inlet_vessels": [98], + "junction_name": "J76", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [99] + }, + { + "inlet_vessels": [101], + "junction_name": "J77", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [102] + }, + { + "inlet_vessels": [102], + "junction_name": "J78", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [103] + }, + { + "inlet_vessels": [109], + "junction_name": "J79", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [110] + }, + { + "inlet_vessels": [110], + "junction_name": "J80", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [111] + }, + { + "inlet_vessels": [114], + "junction_name": "J81", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [115] + }, + { + "inlet_vessels": [115], + "junction_name": "J82", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [116] + }, + { + "inlet_vessels": [117], + "junction_name": "J83", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [118] + }, + { + "inlet_vessels": [118], + "junction_name": "J84", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [119] + }, + { + "inlet_vessels": [122], + "junction_name": "J85", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [123] + }, + { + "inlet_vessels": [123], + "junction_name": "J86", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [124] + }, + { + "inlet_vessels": [127], + "junction_name": "J87", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [128] + }, + { + "inlet_vessels": [128], + "junction_name": "J88", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [129] + }, + { + "inlet_vessels": [132], + "junction_name": "J89", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [133] + }, + { + "inlet_vessels": [133], + "junction_name": "J90", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [134] + }, + { + "inlet_vessels": [140], + "junction_name": "J91", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [141] + }, + { + "inlet_vessels": [141], + "junction_name": "J92", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [142] + }, + { + "inlet_vessels": [145], + "junction_name": "J93", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [146] + }, + { + "inlet_vessels": [146], + "junction_name": "J94", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [147] + }, + { + "inlet_vessels": [151], + "junction_name": "J95", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [152] + }, + { + "inlet_vessels": [152], + "junction_name": "J96", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [153] + }, + { + "inlet_vessels": [159], + "junction_name": "J97", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [160] + }, + { + "inlet_vessels": [160], + "junction_name": "J98", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [161] + }, + { + "inlet_vessels": [165], + "junction_name": "J99", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [166] + }, + { + "inlet_vessels": [166], + "junction_name": "J100", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [167] + }, + { + "inlet_vessels": [171], + "junction_name": "J101", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [172] + }, + { + "inlet_vessels": [172], + "junction_name": "J102", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [173] + }, + { + "inlet_vessels": [174], + "junction_name": "J103", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [175] + }, + { + "inlet_vessels": [175], + "junction_name": "J104", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [176] + }, + { + "inlet_vessels": [179], + "junction_name": "J105", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [180] + }, + { + "inlet_vessels": [180], + "junction_name": "J106", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [181] + }, + { + "inlet_vessels": [186], + "junction_name": "J107", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [187] + }, + { + "inlet_vessels": [187], + "junction_name": "J108", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [188] + }, + { + "inlet_vessels": [189], + "junction_name": "J109", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [190] + }, + { + "inlet_vessels": [190], + "junction_name": "J110", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [191] + }, + { + "inlet_vessels": [192], + "junction_name": "J111", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [193] + }, + { + "inlet_vessels": [193], + "junction_name": "J112", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [194] + }, + { + "inlet_vessels": [198], + "junction_name": "J113", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [199] + }, + { + "inlet_vessels": [199], + "junction_name": "J114", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [200] + }, + { + "inlet_vessels": [201], + "junction_name": "J115", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [202] + }, + { + "inlet_vessels": [202], + "junction_name": "J116", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [203] + }, + { + "inlet_vessels": [206], + "junction_name": "J117", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [207] + }, + { + "inlet_vessels": [207], + "junction_name": "J118", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [208] + }, + { + "inlet_vessels": [212], + "junction_name": "J119", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [213] + }, + { + "inlet_vessels": [213], + "junction_name": "J120", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [214] + } + ], + "simulation_parameters": { + "density": 1.06, + "model_name": "0080_0001", + "number_of_cardiac_cycles": 3, + "number_of_time_pts_per_cardiac_cycle": 705, + "viscosity": 0.04, + "output_all_cycles": false + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 1.3805440959686677, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 1, + "vessel_length": 0.4700096249069316, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 2, + "vessel_length": 1.236264289578453, + "vessel_name": "branch1_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 3, + "vessel_length": 0.027089022417558086, + "vessel_name": "branch1_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 4, + "vessel_length": 0.767092376484422, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 5, + "vessel_length": 1.9137134015067134, + "vessel_name": "branch3_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 6, + "vessel_length": 1.3994359853698075, + "vessel_name": "branch3_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_0" + }, + "vessel_id": 7, + "vessel_length": 0.6031024092142984, + "vessel_name": "branch3_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 8, + "vessel_length": 1.6221170932907283, + "vessel_name": "branch4_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 9, + "vessel_length": 0.03377137318889544, + "vessel_name": "branch5_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 10, + "vessel_length": 1.3376670796129662, + "vessel_name": "branch6_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 11, + "vessel_length": 0.597556026956815, + "vessel_name": "branch7_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 12, + "vessel_length": 0.3780642267581488, + "vessel_name": "branch8_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 13, + "vessel_length": 0.06402900125534544, + "vessel_name": "branch9_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 14, + "vessel_length": 0.8652668710938062, + "vessel_name": "branch9_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_1" + }, + "vessel_id": 15, + "vessel_length": 1.475694913974687, + "vessel_name": "branch9_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 16, + "vessel_length": 0.4511882149052207, + "vessel_name": "branch10_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_2" + }, + "vessel_id": 17, + "vessel_length": 0.926581286933064, + "vessel_name": "branch11_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 18, + "vessel_length": 0.2944816785427889, + "vessel_name": "branch12_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 19, + "vessel_length": 0.7814774469262069, + "vessel_name": "branch13_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_3" + }, + "vessel_id": 20, + "vessel_length": 2.546928970164378, + "vessel_name": "branch14_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 21, + "vessel_length": 0.43552068967368024, + "vessel_name": "branch15_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 22, + "vessel_length": 1.422373662231766, + "vessel_name": "branch16_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 23, + "vessel_length": 0.0321936092555048, + "vessel_name": "branch17_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 24, + "vessel_length": 0.06466890835245662, + "vessel_name": "branch18_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_4" + }, + "vessel_id": 25, + "vessel_length": 1.6684049591136723, + "vessel_name": "branch19_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 26, + "vessel_length": 0.45959397190300655, + "vessel_name": "branch20_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_5" + }, + "vessel_id": 27, + "vessel_length": 0.3473633681374321, + "vessel_name": "branch21_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_6" + }, + "vessel_id": 28, + "vessel_length": 1.8491184142546093, + "vessel_name": "branch22_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_7" + }, + "vessel_id": 29, + "vessel_length": 1.1480030859456651, + "vessel_name": "branch23_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 30, + "vessel_length": 0.566556332257165, + "vessel_name": "branch24_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 31, + "vessel_length": 0.031139405875391275, + "vessel_name": "branch25_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 32, + "vessel_length": 0.0709074115605942, + "vessel_name": "branch26_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 33, + "vessel_length": 0.03778956430673017, + "vessel_name": "branch27_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 34, + "vessel_length": 0.1133163787610899, + "vessel_name": "branch28_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 35, + "vessel_length": 0.1408917238471644, + "vessel_name": "branch28_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_8" + }, + "vessel_id": 36, + "vessel_length": 1.1913123850343972, + "vessel_name": "branch28_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 37, + "vessel_length": 0.1558046205341548, + "vessel_name": "branch29_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 38, + "vessel_length": 0.7581169080643847, + "vessel_name": "branch30_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 39, + "vessel_length": 0.951309792830832, + "vessel_name": "branch30_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_9" + }, + "vessel_id": 40, + "vessel_length": 0.8878614004687725, + "vessel_name": "branch30_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 41, + "vessel_length": 1.3933087944952214, + "vessel_name": "branch31_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_10" + }, + "vessel_id": 42, + "vessel_length": 1.3874296295510535, + "vessel_name": "branch32_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 43, + "vessel_length": 1.2720532346178934, + "vessel_name": "branch33_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 44, + "vessel_length": 0.07413814137318625, + "vessel_name": "branch34_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 45, + "vessel_length": 0.6835632147915793, + "vessel_name": "branch35_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 46, + "vessel_length": 0.6971206020209955, + "vessel_name": "branch35_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_11" + }, + "vessel_id": 47, + "vessel_length": 0.7512820508518326, + "vessel_name": "branch35_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_12" + }, + "vessel_id": 48, + "vessel_length": 3.057463759696044, + "vessel_name": "branch36_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 49, + "vessel_length": 0.9496079890052714, + "vessel_name": "branch37_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_13" + }, + "vessel_id": 50, + "vessel_length": 2.0045402443387177, + "vessel_name": "branch38_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 51, + "vessel_length": 0.7139818673389967, + "vessel_name": "branch39_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 52, + "vessel_length": 1.2098135849553884, + "vessel_name": "branch40_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 53, + "vessel_length": 0.21966625688935024, + "vessel_name": "branch41_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 54, + "vessel_length": 0.4635552949302021, + "vessel_name": "branch41_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_14" + }, + "vessel_id": 55, + "vessel_length": 1.235447647190862, + "vessel_name": "branch41_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 56, + "vessel_length": 0.541966306937773, + "vessel_name": "branch42_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_15" + }, + "vessel_id": 57, + "vessel_length": 1.6790196506715351, + "vessel_name": "branch43_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_16" + }, + "vessel_id": 58, + "vessel_length": 0.6101758693529614, + "vessel_name": "branch44_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 59, + "vessel_length": 1.5708710381014765, + "vessel_name": "branch45_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_17" + }, + "vessel_id": 60, + "vessel_length": 0.6994048703533935, + "vessel_name": "branch46_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_18" + }, + "vessel_id": 61, + "vessel_length": 0.8916502618658464, + "vessel_name": "branch47_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_19" + }, + "vessel_id": 62, + "vessel_length": 2.7463421709430342, + "vessel_name": "branch48_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 63, + "vessel_length": 0.4479144623319764, + "vessel_name": "branch49_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_20" + }, + "vessel_id": 64, + "vessel_length": 0.7112296941340819, + "vessel_name": "branch50_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 65, + "vessel_length": 0.42533483343073947, + "vessel_name": "branch51_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 66, + "vessel_length": 0.8114218236874672, + "vessel_name": "branch51_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_21" + }, + "vessel_id": 67, + "vessel_length": 0.3482852208627482, + "vessel_name": "branch51_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_22" + }, + "vessel_id": 68, + "vessel_length": 1.9747651599405993, + "vessel_name": "branch52_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_23" + }, + "vessel_id": 69, + "vessel_length": 0.7711519337457966, + "vessel_name": "branch53_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 70, + "vessel_length": 0.5744528633349233, + "vessel_name": "branch54_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 71, + "vessel_length": 0.5854170378707935, + "vessel_name": "branch55_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_24" + }, + "vessel_id": 72, + "vessel_length": 1.3856830790186532, + "vessel_name": "branch56_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 73, + "vessel_length": 0.13141398733204784, + "vessel_name": "branch57_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 74, + "vessel_length": 0.9837215570289305, + "vessel_name": "branch58_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_25" + }, + "vessel_id": 75, + "vessel_length": 1.6268724719976426, + "vessel_name": "branch59_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 76, + "vessel_length": 0.7189379658116499, + "vessel_name": "branch60_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 77, + "vessel_length": 0.6031613093730539, + "vessel_name": "branch60_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_26" + }, + "vessel_id": 78, + "vessel_length": 0.52456071048224, + "vessel_name": "branch60_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 79, + "vessel_length": 0.7484344961809235, + "vessel_name": "branch61_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 80, + "vessel_length": 0.7031144664254374, + "vessel_name": "branch61_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 81, + "vessel_length": 0.3611216104843036, + "vessel_name": "branch61_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_27" + }, + "vessel_id": 82, + "vessel_length": 2.578388894821237, + "vessel_name": "branch62_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 83, + "vessel_length": 1.01285639512377, + "vessel_name": "branch63_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 84, + "vessel_length": 0.808961964697254, + "vessel_name": "branch64_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 85, + "vessel_length": 1.4447132719150624, + "vessel_name": "branch64_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_28" + }, + "vessel_id": 86, + "vessel_length": 0.31510151228426275, + "vessel_name": "branch64_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 87, + "vessel_length": 1.2040510161756994, + "vessel_name": "branch65_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_29" + }, + "vessel_id": 88, + "vessel_length": 0.9188238112661333, + "vessel_name": "branch66_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_30" + }, + "vessel_id": 89, + "vessel_length": 1.295691750912049, + "vessel_name": "branch67_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_31" + }, + "vessel_id": 90, + "vessel_length": 2.2649380500474936, + "vessel_name": "branch68_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_32" + }, + "vessel_id": 91, + "vessel_length": 1.4445560024538837, + "vessel_name": "branch69_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 92, + "vessel_length": 0.16948463710753808, + "vessel_name": "branch70_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_33" + }, + "vessel_id": 93, + "vessel_length": 2.5753601577939262, + "vessel_name": "branch71_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 94, + "vessel_length": 0.6289952402012521, + "vessel_name": "branch72_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 95, + "vessel_length": 0.6109827240923978, + "vessel_name": "branch73_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_34" + }, + "vessel_id": 96, + "vessel_length": 3.3888546756436506, + "vessel_name": "branch74_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 97, + "vessel_length": 0.611214345422349, + "vessel_name": "branch75_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 98, + "vessel_length": 0.416201834518502, + "vessel_name": "branch75_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_35" + }, + "vessel_id": 99, + "vessel_length": 0.14191378404545324, + "vessel_name": "branch75_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 100, + "vessel_length": 1.4665070334686685, + "vessel_name": "branch76_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 101, + "vessel_length": 0.7221439726843699, + "vessel_name": "branch77_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 102, + "vessel_length": 0.5034373205326561, + "vessel_name": "branch77_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_36" + }, + "vessel_id": 103, + "vessel_length": 0.43643507588657493, + "vessel_name": "branch77_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_37" + }, + "vessel_id": 104, + "vessel_length": 1.8223285969227923, + "vessel_name": "branch78_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_38" + }, + "vessel_id": 105, + "vessel_length": 1.8964600844526125, + "vessel_name": "branch79_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_39" + }, + "vessel_id": 106, + "vessel_length": 1.9462368644775894, + "vessel_name": "branch80_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_40" + }, + "vessel_id": 107, + "vessel_length": 2.0691552767977677, + "vessel_name": "branch81_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_41" + }, + "vessel_id": 108, + "vessel_length": 1.5314877042581692, + "vessel_name": "branch82_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 109, + "vessel_length": 0.24582786567907236, + "vessel_name": "branch83_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 110, + "vessel_length": 0.5047355886889087, + "vessel_name": "branch83_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_42" + }, + "vessel_id": 111, + "vessel_length": 0.7446549997402947, + "vessel_name": "branch83_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_43" + }, + "vessel_id": 112, + "vessel_length": 1.603474169200975, + "vessel_name": "branch84_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 113, + "vessel_length": 2.032819460778153, + "vessel_name": "branch85_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 114, + "vessel_length": 0.23451239270361057, + "vessel_name": "branch86_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 115, + "vessel_length": 0.04826055052317403, + "vessel_name": "branch86_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 116, + "vessel_length": 1.259398809614766, + "vessel_name": "branch86_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 117, + "vessel_length": 0.8920212348651329, + "vessel_name": "branch87_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 118, + "vessel_length": 0.3987976977796542, + "vessel_name": "branch87_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_44" + }, + "vessel_id": 119, + "vessel_length": 0.22559277415133924, + "vessel_name": "branch87_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_45" + }, + "vessel_id": 120, + "vessel_length": 0.8204456954795754, + "vessel_name": "branch88_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_46" + }, + "vessel_id": 121, + "vessel_length": 0.693357974494855, + "vessel_name": "branch89_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 122, + "vessel_length": 1.5854845802238893, + "vessel_name": "branch90_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 123, + "vessel_length": 0.5280646035122366, + "vessel_name": "branch90_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_47" + }, + "vessel_id": 124, + "vessel_length": 0.30456850785941825, + "vessel_name": "branch90_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_48" + }, + "vessel_id": 125, + "vessel_length": 2.1841735530418993, + "vessel_name": "branch91_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 126, + "vessel_length": 0.0525308327091072, + "vessel_name": "branch92_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 127, + "vessel_length": 0.6006926738529617, + "vessel_name": "branch93_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 128, + "vessel_length": 0.3971979355160251, + "vessel_name": "branch93_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_49" + }, + "vessel_id": 129, + "vessel_length": 0.23405158835742126, + "vessel_name": "branch93_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 130, + "vessel_length": 1.7564678632179243, + "vessel_name": "branch94_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 131, + "vessel_length": 0.3506494197134689, + "vessel_name": "branch95_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 132, + "vessel_length": 0.751353956435578, + "vessel_name": "branch96_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 133, + "vessel_length": 0.29667593046399116, + "vessel_name": "branch96_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_50" + }, + "vessel_id": 134, + "vessel_length": 0.2838705083106226, + "vessel_name": "branch96_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_51" + }, + "vessel_id": 135, + "vessel_length": 2.209355069611248, + "vessel_name": "branch97_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_52" + }, + "vessel_id": 136, + "vessel_length": 1.4800327576573449, + "vessel_name": "branch98_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 137, + "vessel_length": 0.04959465207359494, + "vessel_name": "branch99_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_53" + }, + "vessel_id": 138, + "vessel_length": 2.190636927574853, + "vessel_name": "branch100_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_54" + }, + "vessel_id": 139, + "vessel_length": 1.8514224613548453, + "vessel_name": "branch101_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 140, + "vessel_length": 0.9763193461215273, + "vessel_name": "branch102_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 141, + "vessel_length": 0.9700779332887878, + "vessel_name": "branch102_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_55" + }, + "vessel_id": 142, + "vessel_length": 0.2654573437023177, + "vessel_name": "branch102_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_56" + }, + "vessel_id": 143, + "vessel_length": 1.1945502040546236, + "vessel_name": "branch103_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_57" + }, + "vessel_id": 144, + "vessel_length": 1.9310746610389045, + "vessel_name": "branch104_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 145, + "vessel_length": 1.8549457029011562, + "vessel_name": "branch105_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 146, + "vessel_length": 0.7825249302368995, + "vessel_name": "branch105_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_58" + }, + "vessel_id": 147, + "vessel_length": 0.22956112265344816, + "vessel_name": "branch105_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_59" + }, + "vessel_id": 148, + "vessel_length": 2.0704474220346873, + "vessel_name": "branch106_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 149, + "vessel_length": 0.28031060209411607, + "vessel_name": "branch107_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_60" + }, + "vessel_id": 150, + "vessel_length": 1.8429878931971733, + "vessel_name": "branch108_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 151, + "vessel_length": 0.0186622778417643, + "vessel_name": "branch109_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 152, + "vessel_length": 1.1462608351629446, + "vessel_name": "branch109_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_61" + }, + "vessel_id": 153, + "vessel_length": 0.3377410934055567, + "vessel_name": "branch109_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_62" + }, + "vessel_id": 154, + "vessel_length": 1.5473329584349158, + "vessel_name": "branch110_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_63" + }, + "vessel_id": 155, + "vessel_length": 1.3860209873354536, + "vessel_name": "branch111_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 156, + "vessel_length": 0.5165824403623721, + "vessel_name": "branch112_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 157, + "vessel_length": 0.770452476158731, + "vessel_name": "branch113_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_64" + }, + "vessel_id": 158, + "vessel_length": 1.6470438692325127, + "vessel_name": "branch114_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 159, + "vessel_length": 0.22776071817940843, + "vessel_name": "branch115_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 160, + "vessel_length": 0.21714442030142875, + "vessel_name": "branch115_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_65" + }, + "vessel_id": 161, + "vessel_length": 0.8433519629875749, + "vessel_name": "branch115_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_66" + }, + "vessel_id": 162, + "vessel_length": 1.831647199279749, + "vessel_name": "branch116_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_67" + }, + "vessel_id": 163, + "vessel_length": 0.8879559682870087, + "vessel_name": "branch117_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 164, + "vessel_length": 0.96520618026765, + "vessel_name": "branch118_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 165, + "vessel_length": 0.6703950785660061, + "vessel_name": "branch119_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 166, + "vessel_length": 1.2038473751456866, + "vessel_name": "branch119_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_68" + }, + "vessel_id": 167, + "vessel_length": 0.7224027740166741, + "vessel_name": "branch119_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 168, + "vessel_length": 2.2416747602530096, + "vessel_name": "branch120_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_69" + }, + "vessel_id": 169, + "vessel_length": 1.3192362301447014, + "vessel_name": "branch121_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_70" + }, + "vessel_id": 170, + "vessel_length": 1.0517739141509332, + "vessel_name": "branch122_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 171, + "vessel_length": 0.2908085645766913, + "vessel_name": "branch123_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 172, + "vessel_length": 1.424012535465686, + "vessel_name": "branch123_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_71" + }, + "vessel_id": 173, + "vessel_length": 0.2332756260216596, + "vessel_name": "branch123_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 174, + "vessel_length": 0.08933625535225823, + "vessel_name": "branch124_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 175, + "vessel_length": 0.397648710425473, + "vessel_name": "branch124_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 176, + "vessel_length": 0.8945602031072306, + "vessel_name": "branch124_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_72" + }, + "vessel_id": 177, + "vessel_length": 1.1423383551685218, + "vessel_name": "branch125_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_73" + }, + "vessel_id": 178, + "vessel_length": 2.2285190627274383, + "vessel_name": "branch126_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 179, + "vessel_length": 1.6212067636049716, + "vessel_name": "branch127_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 180, + "vessel_length": 1.282198364801577, + "vessel_name": "branch127_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_74" + }, + "vessel_id": 181, + "vessel_length": 0.1940528076665006, + "vessel_name": "branch127_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_75" + }, + "vessel_id": 182, + "vessel_length": 0.5607507398688213, + "vessel_name": "branch128_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_76" + }, + "vessel_id": 183, + "vessel_length": 3.9779415762156565, + "vessel_name": "branch129_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_77" + }, + "vessel_id": 184, + "vessel_length": 1.4286105395948658, + "vessel_name": "branch130_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_78" + }, + "vessel_id": 185, + "vessel_length": 1.9977889411535166, + "vessel_name": "branch131_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 186, + "vessel_length": 0.5617562776124612, + "vessel_name": "branch132_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 187, + "vessel_length": 0.42672901571828004, + "vessel_name": "branch132_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_79" + }, + "vessel_id": 188, + "vessel_length": 0.8735242288475483, + "vessel_name": "branch132_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 189, + "vessel_length": 0.7120827001719353, + "vessel_name": "branch133_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 190, + "vessel_length": 1.0077097131491346, + "vessel_name": "branch133_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_80" + }, + "vessel_id": 191, + "vessel_length": 0.4917976064181432, + "vessel_name": "branch133_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 192, + "vessel_length": 1.262636440146434, + "vessel_name": "branch134_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 193, + "vessel_length": 0.46392895638658593, + "vessel_name": "branch134_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_81" + }, + "vessel_id": 194, + "vessel_length": 0.4552562346352282, + "vessel_name": "branch134_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_82" + }, + "vessel_id": 195, + "vessel_length": 1.009448557146865, + "vessel_name": "branch135_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_83" + }, + "vessel_id": 196, + "vessel_length": 0.7885756149364074, + "vessel_name": "branch136_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_84" + }, + "vessel_id": 197, + "vessel_length": 2.2756488074671433, + "vessel_name": "branch137_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 198, + "vessel_length": 0.2760137505564742, + "vessel_name": "branch138_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 199, + "vessel_length": 1.3368910578317676, + "vessel_name": "branch138_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_85" + }, + "vessel_id": 200, + "vessel_length": 1.2002256069240955, + "vessel_name": "branch138_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 201, + "vessel_length": 1.7693205145222453, + "vessel_name": "branch139_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 202, + "vessel_length": 1.06214931132661, + "vessel_name": "branch139_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_86" + }, + "vessel_id": 203, + "vessel_length": 0.48303953446564885, + "vessel_name": "branch139_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_87" + }, + "vessel_id": 204, + "vessel_length": 0.843109508708837, + "vessel_name": "branch140_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_88" + }, + "vessel_id": 205, + "vessel_length": 2.0603411078869778, + "vessel_name": "branch141_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 206, + "vessel_length": 0.6602430182165941, + "vessel_name": "branch142_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 207, + "vessel_length": 1.585889694767858, + "vessel_name": "branch142_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_89" + }, + "vessel_id": 208, + "vessel_length": 0.09433776315388086, + "vessel_name": "branch142_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_90" + }, + "vessel_id": 209, + "vessel_length": 2.1364480183130805, + "vessel_name": "branch143_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_91" + }, + "vessel_id": 210, + "vessel_length": 1.8509017198379139, + "vessel_name": "branch144_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_92" + }, + "vessel_id": 211, + "vessel_length": 2.022718739860449, + "vessel_name": "branch145_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 212, + "vessel_length": 0.3284897109005369, + "vessel_name": "branch146_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 213, + "vessel_length": 1.512182409452769, + "vessel_name": "branch146_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_93" + }, + "vessel_id": 214, + "vessel_length": 0.487915826971711, + "vessel_name": "branch146_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } } -} \ No newline at end of file + ], + "calibration_parameters": { + "tolerance_gradient": 1e-5, + "tolerance_increment": 1e-9, + "maximum_iterations": 20, + "calibrate_stenosis_coefficient": true, + "set_capacitance_to_zero": false + }, + "y": { + "flow:branch0_seg0:J0": [ + 74.949190654334, 96.36050980530744, 119.73201774152513, + 143.93524042078025, 167.77059384078947, 190.19379139976456, + 210.43239482201693, 228.06402436909718, 242.9266299175218, + 255.15219259807432, 264.9433414277329, 272.5415557666525, + 278.1194585323114, 281.7601369710557, 283.4679879051204, + 283.2350006049449, 281.0789456385515, 277.10698146456394, + 271.54131372121486, 264.6462460659405, 256.7664420404351, + 248.19504839514926, 239.17432585156752, 229.87180888646304, + 220.37707774415142, 210.76043224030906, 201.10005964228807, + 191.52199698435246, 182.19678952708583, 173.32090556715787, + 165.03686434081447, 157.3930454761719, 150.27069649390367, + 143.37571924739066, 136.27197657726956, 128.46626279175135, + 119.50016249307684, 109.09308235992572, 97.20174912447963, + 84.08031104474055, 70.2303834640588, 56.34497863998754, + 43.155103000642626, 31.333682546305095, 21.343626816718967, + 13.457612258303305, 7.644899589355277, 3.735320529608675, + 1.4364284384605837, 0.41426827092262036, 0.42801271560558546, + 1.2708635306743246, 2.8353109230270297, 5.040029054839122, + 7.773692235814003, 10.88331681487806, 14.132563324356031, + 17.238147764778468, 19.91470026149908, 21.932161153053507, + 23.162469274592244, 23.617180550477133, 23.421654223519692, + 22.780282709367093, 21.914590692960726, 20.997467688748152, + 20.109503375749984, 19.23226546747224, 18.270525417192964, + 17.100404957507696, 15.635293103528923, 13.857434140751206, + 11.856409606416584, 9.793151967731596, 7.8699442901119685, + 6.260719930670959, 5.0752758320827205, 4.30884890124514, + 3.874000989838576, 3.623639600590499, 3.4125050402954775, + 3.1566432387130194, 2.864530848047883, 2.6364760087217323, + 2.6276796264207185, 2.9877959855672755, 3.797204035389653, + 5.024366033245368, 6.528722987867772, 8.111816576738644, + 9.600210952657738, 10.957232983526128, 12.365411501975567, + 14.270481449761494, 17.348419874119212, 22.42725877280414, + 30.271023633149085, 41.55504418316319, 56.487407146390694, 74.949190654334 + ], + "pressure:branch0_seg0:J0": [ + 10755.625614737077, 12345.299023589774, 13919.032506671263, + 15395.187937566676, 16712.431426370553, 17825.545666702554, + 18721.47736406064, 19419.826411025388, 19948.31597072094, + 20326.734760305364, 20593.065073811995, 20754.77579265234, + 20808.43131126481, 20762.94489868987, 20597.516209529444, + 20323.007801610216, 19943.93750283233, 19469.83165849265, + 18942.436750718007, 18369.438354691145, 17780.81171996804, + 17191.26642419597, 16601.773554741972, 16017.088596788853, + 15433.853288103623, 14854.048434251854, 14286.090213899553, + 13742.485392175695, 13237.455410562816, 12783.24338072445, + 12380.244579072627, 12014.273065442356, 11659.7940289539, + 11277.768788356532, 10826.592042759905, 10274.761300058683, + 9605.526928453743, 8825.284628340636, 7960.170921435423, + 7067.997766160997, 6197.864888613503, 5413.67887561287, 4759.281140516517, + 4263.964387176556, 3919.927417898156, 3730.329838830119, + 3653.9389359535394, 3659.595938607575, 3730.0885001823794, + 3833.4486895234986, 3969.7085320444144, 4134.966380444776, + 4324.7567657281415, 4542.033857750696, 4772.8875549422655, + 5000.034370921352, 5204.262689189676, 5362.43948104414, 5460.489363009703, + 5493.89234008019, 5470.973606182047, 5404.48744568941, 5319.821592900325, + 5234.16787990735, 5158.784427901308, 5099.408871383753, 5047.839891645779, + 4991.555968403971, 4918.284527035243, 4818.883399461685, + 4695.720242217003, 4555.5853767524195, 4416.539696481615, + 4296.313844118488, 4208.288172501538, 4157.301084358452, 4141.17652839162, + 4146.536553215931, 4156.9412509054855, 4161.382856309344, + 4152.583663929789, 4133.969750082288, 4118.093476501715, + 4120.598513064396, 4154.59812159371, 4226.244677080121, 4328.642838251985, + 4448.572379276062, 4563.5325005803215, 4659.062890037521, + 4732.598950895489, 4801.379134116661, 4904.804231104749, + 5100.434385351346, 5452.67673941679, 6027.677343120749, 6844.701756767903, + 7940.525051152539, 9266.607319308787, 10755.625614737077 + ], + "flow:J0:branch1_seg0": [ + 40.07411666272474, 51.51306553586831, 63.937586743912554, + 76.71866867277983, 89.20037388634128, 100.81856802958772, + 111.16787929520304, 120.03625852352239, 127.36428866268847, + 133.2454287375936, 137.81921709483296, 141.232860183314, + 143.59797793665402, 144.9689996114876, 145.35244623673006, + 144.75033138681545, 143.16959353604008, 140.6738100828934, + 137.38308168381127, 133.4425724275965, 129.04029192502537, + 124.33273519521678, 119.44873870582839, 114.47278622846932, + 109.44666097318392, 104.40064085116785, 99.36991617465914, + 94.41631561905287, 89.62742401483443, 85.10430570221872, + 80.92027760186944, 77.09535941132204, 73.55909474904503, + 70.14495231178404, 66.61061068346925, 62.6833046525799, 58.11544341665748, + 52.75586507022233, 46.59065089001677, 39.76718169048796, + 32.569050638787736, 25.38212134695376, 18.609508247870522, + 12.614814242609452, 7.644529918947298, 3.834500588701631, + 1.1516413092067421, -0.510396294564862, -1.3287038548529244, + -1.4936524158502968, -1.1456805633644076, -0.3994020701150961, + 0.6867290722233426, 2.0702176774656045, 3.694885801985874, + 5.4803361020090975, 7.302076974286852, 9.009501569720012, + 10.451868667975322, 11.509380978490253, 12.119847477023393, + 12.296571865032934, 12.11748235989226, 11.700058854221375, + 11.17155676219654, 10.629097065470946, 10.117415274187081, + 9.62516561317484, 9.097893089058683, 8.465787678410889, + 7.6796082632991665, 6.729358356112154, 5.664397011285738, + 4.573617685723953, 3.567943256739418, 2.7425118693553516, + 2.1548697961583505, 1.8000041897062666, 1.6261789273334406, + 1.5494242596498577, 1.4877211498680303, 1.393965138812575, + 1.2728416243119829, 1.1803648281628543, 1.2028523359465362, + 1.4230078331931593, 1.8844322424565163, 2.56897922102823, + 3.39710256426169, 4.258660645669681, 5.057361018619025, 5.773163764508877, + 6.507455125985275, 7.505069446170286, 9.13836705623067, + 11.855449194574005, 16.071942405198648, 22.143887267303796, + 30.17125168926293, 40.07411666272474 + ], + "pressure:J0:branch1_seg0": [ + 10755.625614737077, 12345.299023589774, 13919.032506671263, + 15395.187937566676, 16712.431426370553, 17825.545666702554, + 18721.47736406064, 19419.826411025388, 19948.31597072094, + 20326.734760305364, 20593.065073811995, 20754.77579265234, + 20808.43131126481, 20762.94489868987, 20597.516209529444, + 20323.007801610216, 19943.93750283233, 19469.83165849265, + 18942.436750718007, 18369.438354691145, 17780.81171996804, + 17191.26642419597, 16601.773554741972, 16017.088596788853, + 15433.853288103623, 14854.048434251854, 14286.090213899553, + 13742.485392175695, 13237.455410562816, 12783.24338072445, + 12380.244579072627, 12014.273065442356, 11659.7940289539, + 11277.768788356532, 10826.592042759905, 10274.761300058683, + 9605.526928453743, 8825.284628340636, 7960.170921435423, + 7067.997766160997, 6197.864888613503, 5413.67887561287, 4759.281140516517, + 4263.964387176556, 3919.927417898156, 3730.329838830119, + 3653.9389359535394, 3659.595938607575, 3730.0885001823794, + 3833.4486895234986, 3969.7085320444144, 4134.966380444776, + 4324.7567657281415, 4542.033857750696, 4772.8875549422655, + 5000.034370921352, 5204.262689189676, 5362.43948104414, 5460.489363009703, + 5493.89234008019, 5470.973606182047, 5404.48744568941, 5319.821592900325, + 5234.16787990735, 5158.784427901308, 5099.408871383753, 5047.839891645779, + 4991.555968403971, 4918.284527035243, 4818.883399461685, + 4695.720242217003, 4555.5853767524195, 4416.539696481615, + 4296.313844118488, 4208.288172501538, 4157.301084358452, 4141.17652839162, + 4146.536553215931, 4156.9412509054855, 4161.382856309344, + 4152.583663929789, 4133.969750082288, 4118.093476501715, + 4120.598513064396, 4154.59812159371, 4226.244677080121, 4328.642838251985, + 4448.572379276062, 4563.5325005803215, 4659.062890037521, + 4732.598950895489, 4801.379134116661, 4904.804231104749, + 5100.434385351346, 5452.67673941679, 6027.677343120749, 6844.701756767903, + 7940.525051152539, 9266.607319308787, 10755.625614737077 + ], + "flow:J0:branch4_seg0": [ + 34.875073991609256, 44.84744426943913, 55.794430997612565, + 67.2165717480004, 78.57021995444818, 89.3752233701769, 99.2645155268139, + 108.0277658455748, 115.5623412548334, 121.90676386048065, + 127.12412433289992, 131.3086955833385, 134.52148059565732, + 136.7911373595682, 138.11554166839036, 138.4846692181294, + 137.90935210251146, 136.43317138167055, 134.1582320374036, + 131.203673638344, 127.7261501154098, 123.86231319993247, + 119.72558714573915, 115.39902265799373, 110.93041677096743, + 106.35979138914122, 101.73014346762893, 97.10568136529963, + 92.56936551225138, 88.21659986493914, 84.116586738945, 80.29768606484981, + 76.71160174485863, 73.23076693560665, 69.66136589380037, + 65.78295813917146, 61.38471907641938, 56.33721728970338, + 50.61109823446288, 44.313129354252595, 37.66133282527106, + 30.962857293033778, 24.545594752772104, 18.718868303695643, + 13.699096897771671, 9.623111669601673, 6.493258280148534, + 4.245716824173537, 2.765132293313508, 1.9079206867729168, + 1.5736932789699931, 1.6702656007894205, 2.1485818508036876, + 2.9698113773735186, 4.078806433828131, 5.402980712868965, + 6.830486350069177, 8.228646195058463, 9.46283159352376, + 10.422780174563256, 11.042621797568847, 11.320608685444205, + 11.304171863627426, 11.08022385514572, 10.743033930764184, + 10.368370623277201, 9.992088101562908, 9.607099854297399, + 9.172632328134284, 8.634617279096805, 7.9556848402297575, + 7.1280757846390514, 6.192012595130848, 5.219534282007645, + 4.302001033372551, 3.5182080613156073, 2.9204060359243686, + 2.5088447115388735, 2.247822062505136, 2.0742153409406403, + 1.9247838904274477, 1.7626780999004446, 1.5916892237359006, + 1.456111180558878, 1.424827290474182, 1.5647881523741165, + 1.9127717929331367, 2.455386812217138, 3.131620423606082, + 3.8531559310689634, 4.542849934038713, 5.18406921901725, 5.85795637599029, + 6.765412003591207, 8.21005281788854, 10.571809578230132, + 14.199081227950433, 19.4111569158594, 26.316155457127763, + 34.875073991609256 + ], + "pressure:J0:branch4_seg0": [ + 10755.625614737077, 12345.299023589774, 13919.032506671263, + 15395.187937566676, 16712.431426370553, 17825.545666702554, + 18721.47736406064, 19419.826411025388, 19948.31597072094, + 20326.734760305364, 20593.065073811995, 20754.77579265234, + 20808.43131126481, 20762.94489868987, 20597.516209529444, + 20323.007801610216, 19943.93750283233, 19469.83165849265, + 18942.436750718007, 18369.438354691145, 17780.81171996804, + 17191.26642419597, 16601.773554741972, 16017.088596788853, + 15433.853288103623, 14854.048434251854, 14286.090213899553, + 13742.485392175695, 13237.455410562816, 12783.24338072445, + 12380.244579072627, 12014.273065442356, 11659.7940289539, + 11277.768788356532, 10826.592042759905, 10274.761300058683, + 9605.526928453743, 8825.284628340636, 7960.170921435423, + 7067.997766160997, 6197.864888613503, 5413.67887561287, 4759.281140516517, + 4263.964387176556, 3919.927417898156, 3730.329838830119, + 3653.9389359535394, 3659.595938607575, 3730.0885001823794, + 3833.4486895234986, 3969.7085320444144, 4134.966380444776, + 4324.7567657281415, 4542.033857750696, 4772.8875549422655, + 5000.034370921352, 5204.262689189676, 5362.43948104414, 5460.489363009703, + 5493.89234008019, 5470.973606182047, 5404.48744568941, 5319.821592900325, + 5234.16787990735, 5158.784427901308, 5099.408871383753, 5047.839891645779, + 4991.555968403971, 4918.284527035243, 4818.883399461685, + 4695.720242217003, 4555.5853767524195, 4416.539696481615, + 4296.313844118488, 4208.288172501538, 4157.301084358452, 4141.17652839162, + 4146.536553215931, 4156.9412509054855, 4161.382856309344, + 4152.583663929789, 4133.969750082288, 4118.093476501715, + 4120.598513064396, 4154.59812159371, 4226.244677080121, 4328.642838251985, + 4448.572379276062, 4563.5325005803215, 4659.062890037521, + 4732.598950895489, 4801.379134116661, 4904.804231104749, + 5100.434385351346, 5452.67673941679, 6027.677343120749, 6844.701756767903, + 7940.525051152539, 9266.607319308787, 10755.625614737077 + ], + "flow:branch1_seg2:J1": [ + 39.93902314419877, 51.373178400635695, 63.79982518723092, + 76.59226467443868, 89.08969336527267, 100.72627526803615, + 111.09392174426048, 119.98121423999707, 127.32336319452622, + 133.2135325770311, 137.80175047487725, 141.22035855292916, + 143.59747378148614, 144.97755434612964, 145.36946927936458, + 144.78061800481876, 143.20466120634222, 140.71804309871482, + 137.4313006334015, 133.49318709126695, 129.0925769124922, + 124.38498617349424, 119.50087882013679, 114.52488364177033, + 109.49869400394167, 104.45214308350614, 99.42018669908208, + 94.46368067123687, 89.67118902735488, 85.14302520881986, + 80.95515513878202, 77.12718503759008, 73.5919086345405, 70.18124879233588, + 66.65490639970552, 62.73647625728109, 58.18132026461627, + 52.82783377220077, 46.67023604551959, 39.8465304051499, 32.64368046685318, + 25.447384331545187, 18.663996909203018, 12.653398985622411, + 7.671529290560568, 3.849308096431359, 1.1564069763463825, + -0.5113806484741821, -1.3350076132935609, -1.5029633695094682, + -1.158190508145884, -0.4145077248471395, 0.6689223718282789, + 2.0506198568320095, 3.6741684218039743, 5.46061507689024, + 7.285377390163343, 8.997575086283296, 10.445223773435464, + 11.50908687186897, 12.123820421364105, 12.302716833473642, + 12.125835623087228, 11.706952238540826, 11.177489458661269, + 10.634093352561335, 10.122047695677132, 9.630768220283885, + 9.10519621876832, 8.475644420153776, 7.691045545542974, + 6.7417558214337525, 5.676179685430512, 4.583480832292487, + 3.574407091664746, 2.74618526922463, 2.15560656105957, 1.799426384205782, + 1.6254198672971232, 1.5497671569617681, 1.48894723154884, + 1.3956671270832794, 1.2737938055575218, 1.1789148199945747, + 1.1985346268299504, 1.4150322706684133, 1.874398150020772, + 2.558557515621416, 3.3873264149325033, 4.251036128390733, + 5.051418904518249, 5.76613732757878, 6.4956034470544655, + 7.482210095249371, 9.101598467160613, 11.795597016990262, + 15.992760430493455, 22.040319448675557, 30.04822582820656, + 39.93902314419877 + ], + "pressure:branch1_seg2:J1": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch2_seg0": [ + 1.639143759383196, 2.1117017679837966, 2.6273042779576645, + 3.159476398780271, 3.68079000758662, 4.167393145845534, 4.601772980531102, + 4.974394015174677, 5.282458030708007, 5.529513978720104, + 5.721667352206519, 5.864771701154965, 5.964164160277111, + 6.022110350166485, 6.039125970270064, 6.015508395674203, + 5.951052909149523, 5.8485516507425315, 5.712717619602981, + 5.54956648622511, 5.366707712296418, 5.17090049334543, 4.967599278689852, + 4.76044155862568, 4.5513183677440905, 4.3414360665354055, + 4.1322271638262755, 3.926123924042953, 3.726695605609001, + 3.538049996185528, 3.3634342215160578, 3.2037887509615466, + 3.0565108305588162, 2.914924704340276, 2.7691494682553754, + 2.607720939836925, 2.4203613296880544, 2.2000773423963627, + 1.9461455017878206, 1.6640336794307693, 1.3653138592402232, + 1.06581370600005, 0.7825358764513842, 0.5307413160963315, + 0.3212375907708697, 0.1599163814984836, 0.04613356302747182, + -0.02465533944453045, -0.059703281533959957, -0.0669021850413633, + -0.05258331770671021, -0.021429650903483147, 0.023780176603183628, + 0.08123053383197053, 0.14877905633629696, 0.2231251718060022, + 0.2992435290410639, 0.37097639509116237, 0.4319861899846998, + 0.4772065345965587, 0.5038005507723354, 0.5121160169152862, + 0.5053167180872078, 0.48810123304756636, 0.46591360712454777, + 0.44293639667459744, 0.4212351342414208, 0.40051901510304866, + 0.37861697894846796, 0.35264083371443866, 0.320405947801937, + 0.2813626656177459, 0.23730955675638357, 0.19189417730250843, + 0.149670915866789, 0.1147296986484344, 0.0895579133128145, + 0.07424612865130953, 0.06670590736682311, 0.063504969790909, + 0.06119058552275947, 0.057631330658921696, 0.052823060360036894, + 0.04893882552180579, 0.04953698847325278, 0.05808622490081634, + 0.0766140089910781, 0.10456541197615299, 0.1387817890329082, + 0.17476693902516446, 0.20839153049582224, 0.23850582904378856, + 0.2689404522920413, 0.3094131860570455, 0.37520952452476614, + 0.4847131228650475, 0.6556543586479797, 0.9027104004589821, + 1.231696830768955, 1.639143759383196 + ], + "pressure:J1:branch2_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch29_seg0": [ + 10.681562566257742, 13.77483936663529, 17.164101229816637, + 20.68348785880252, 24.15426127142766, 27.419367508126932, + 30.360990413785505, 32.91259104000491, 35.04773189470721, + 36.78387061530147, 38.155843370116976, 39.19731285346708, + 39.94224240020145, 40.40357130396221, 40.58553704169915, + 40.490588684196574, 40.11774803749684, 39.48693221999439, + 38.62676300579497, 37.57722365633159, 36.38886947804654, + 35.10490163605375, 33.76239635035624, 32.38646511118507, + 30.990749625987565, 29.585021631222723, 28.179722395873984, + 26.791618496182164, 25.444683011156016, 24.166279222613934, + 22.978014680111567, 21.887162355950778, 20.87825789392981, + 19.908896247918864, 18.916380158376263, 17.826870006588393, + 16.572997267424324, 15.107921941328842, 13.425090762055692, + 11.556116733833093, 9.573745493874302, 7.578618914880831, + 5.679838641931592, 3.976490507954333, 2.5422789137799398, + 1.417794558340504, 0.6015375344371503, 0.07013102916923371, + -0.22169059122250873, -0.3231218270504769, -0.2733553295140019, + -0.10439318887039095, 0.16581375003233062, 0.5243948515727823, + 0.955301632551389, 1.4369046222978383, 1.935704172032059, + 2.4109821692184794, 2.820977086568359, 3.1318877626440678, + 3.3236195422163095, 3.3969387495147227, 3.370549606185758, + 3.273441005169044, 3.140263688862424, 2.9976634986195134, + 2.8594765902276436, 2.7248378164098717, 2.5806636687204647, + 2.409179123420515, 2.196537338418139, 1.9392754338215716, + 1.6489371041139214, 1.3482952716851404, 1.0665592958920203, + 0.8302997878789632, 0.6560825694448236, 0.5449987865153318, + 0.4848437866250668, 0.45433258587080283, 0.43133475197917404, + 0.40236291286152537, 0.3670158666128374, 0.33866583514728854, + 0.33977130886250334, 0.3923544095483907, 0.5097506668862452, + 0.6887370817731168, 0.909664158885442, 1.1440559017658471, + 1.3653336575298982, 1.5656783507597654, 1.7689746678233629, + 2.036834278041928, 2.467266204277183, 3.1779816098286853, + 4.286309964868184, 5.889529635790618, 8.025522069161653, + 10.681562566257742 + ], + "pressure:J1:branch29_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch37_seg0": [ + 2.4390888185126647, 3.148611356836727, 3.9249469594669906, + 4.728967694450939, 5.518831510130013, 6.257997584713159, + 6.919462166601341, 7.488366934839278, 7.959511265471161, + 8.338092286920324, 8.633123172301723, 8.853447708891064, + 9.007500239558741, 9.098621781470593, 9.127887334380445, + 9.095629275879851, 9.001485229368166, 8.849752815215535, + 8.646879391117267, 8.402115921927491, 8.127112434707577, + 7.831875304692843, 7.524957850145392, 7.211994275113951, + 6.8959031020885035, 6.578610673107918, 6.262176276201582, + 5.9501824487102315, 5.647963512681162, 5.361753879724086, + 5.096526856567135, 4.854019802730395, 4.6306243707193815, + 4.416489252562077, 4.1969568508398, 3.9547542950256145, + 3.6740709425671283, 3.344013804448472, 2.9630352392052113, + 2.5386635989836175, 2.0880863328344863, 1.6349973372326856, + 1.2050184551235108, 0.8213616357937693, 0.5011384021175994, + 0.25343814682602794, 0.0775086805967321, -0.03268315879244891, + -0.0883470615116199, -0.10136534652129256, -0.08126598034441851, + -0.03561071682976833, 0.03156386569214661, 0.11745582412699979, + 0.21871352707825978, 0.33064067670246633, 0.4457218375738743, + 0.5546941534569496, 0.6479719386798523, 0.717765967959567, + 0.7595055205029543, 0.7735213123185891, 0.7643388257757753, + 0.738979561357262, 0.7057364217078778, 0.6710008601352567, + 0.6380978347131168, 0.6068006797496319, 0.5739308752725425, + 0.5351465880398208, 0.4869979166076151, 0.4285160611607418, + 0.36228654672049465, 0.29361321881137903, 0.22937979557243365, + 0.17587599855995592, 0.13703353089003645, 0.1131095784156001, + 0.10119952504774872, 0.09616392273488227, 0.09267333900697479, + 0.08741092233601545, 0.08018057535638644, 0.07409786777853995, + 0.07448187913851709, 0.08662325723988946, 0.11378248255408158, + 0.15531004683490188, 0.20664651189982136, 0.2610412795201204, + 0.31210398419488045, 0.35777125910434293, 0.4033690679945219, + 0.4630912789614583, 0.5596678233761663, 0.7205142242769604, + 0.9730587170777272, 1.339799394492853, 1.829520223154029, + 2.4390888185126647 + ], + "pressure:J1:branch37_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch45_seg0": [ + 1.837881272372046, 2.3538784042402727, 2.907646721578084, + 3.470479093090502, 4.012820727807813, 4.510486734800407, + 4.947151938550472, 5.315718633365378, 5.61521799022122, 5.85164552909906, + 6.032744607827565, 6.164579588302732, 6.252814354242465, + 6.2988239789851646, 6.302458912065402, 6.263864880775068, + 6.18260687243718, 6.062528426047342, 5.908914839640184, + 5.7286855848224505, 5.530563490390261, 5.3211956865256145, + 5.106039170527307, 4.888326915934788, 4.669358685583457, + 4.450146259981213, 4.232118423171744, 4.018077903252736, + 3.812131664589772, 3.618826081844208, 3.441318383041212, + 3.279988922112774, 3.131063356640645, 2.9861327157598776, + 2.833802485291675, 2.661437920045325, 2.458409214071398, 2.21837545349205, + 1.9425091233745684, 1.6384897995814305, 1.3205297141526697, + 1.006835624585283, 0.7157176964004348, 0.4626984339953742, + 0.2580454144208275, 0.10613096206183155, 0.0038211313210183427, + -0.054572821417855785, -0.0780415691470746, -0.07523616638227809, + -0.052165516332591394, -0.013535427430149837, 0.038667857128191645, + 0.10297519346850617, 0.17694099887592143, 0.2570112337723317, + 0.33737957452133144, 0.4111503645651698, 0.4716132812168, + 0.5138056802502794, 0.535400015508013, 0.5377629508490631, + 0.5252055753385914, 0.5032347532488899, 0.47790574326792756, + 0.4532872895945492, 0.43089565924883716, 0.4096758153465142, + 0.3866694654914346, 0.3585199233907843, 0.3230228786394166, + 0.28008079866174135, 0.23236948058902682, 0.1842701117735651, + 0.14095628173472083, 0.10667674244801566, 0.08360131203775084, + 0.07099137620401659, 0.06600280779279427, 0.06452215573946425, + 0.06273937567640199, 0.058820843974643024, 0.05340571366585946, + 0.0494813001802354, 0.051303623323999153, 0.0625863872982417, + 0.08509103645427149, 0.11746389455037817, 0.15552243550602218, + 0.19402404267838788, 0.22860499220426916, 0.2588385686681025, + 0.29022587788772497, 0.334803014238951, 0.41045514728608495, + 0.5374421474509173, 0.734688847943835, 1.0167771189195929, + 1.3862843726180107, 1.837881272372046 + ], + "pressure:J1:branch45_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch54_seg0": [ + 3.7130203967692017, 4.787714114061026, 5.9598481331024, 7.170034991656424, + 8.355000246772027, 9.460147268475094, 10.445690827345743, + 11.290523671183905, 11.987686265697917, 12.546078918439997, + 12.979871158864432, 13.302378925649583, 13.526400666077219, + 13.656548179653292, 13.694181831696765, 13.63971578307081, + 13.492453942982337, 13.259177649914362, 12.949757574902911, + 12.578312445401004, 12.16258221207175, 11.717508687263408, + 11.255800607357674, 10.78568922860474, 10.311277670294691, + 9.835313340454176, 9.360843045199035, 8.893326287989716, 8.44091083143309, + 8.013060635061146, 7.617176656634579, 7.255636806203461, + 6.922615700857104, 6.602754764035215, 6.273590722387854, + 5.908878829522938, 5.484902954653334, 4.985609584093295, + 4.409458137785476, 3.768528505219263, 3.0895174754657604, + 2.4087106347205913, 1.7648913749013815, 1.1928148147165945, + 0.7177846256761682, 0.3527444734864223, 0.09568141188743949, + -0.06303994094936974, -0.14078646629899216, -0.15564055519262956, + -0.12175998929318932, -0.0503740441594127, 0.05276996399699813, + 0.18365797612063586, 0.3372341788274844, 0.5064096024118372, + 0.6796792104854963, 0.8429553443279693, 0.9817760385752553, + 1.0845700846872441, 1.1446928380679169, 1.1630630669062725, + 1.146898271054709, 1.1069999426111399, 1.0560093432248285, + 1.0034455765067123, 0.954059674149335, 0.9072084224222469, + 0.8578256189087954, 0.7992255582606812, 0.7262318247187067, + 0.6375612274677187, 0.5373881907418148, 0.43393740560785987, + 0.337729431614702, 0.2582277967105017, 0.20118265161785193, + 0.1666759309081439, 0.1500547383850431, 0.14336524200278744, + 0.13850340813921858, 0.13060867880574795, 0.11962917515593281, + 0.11053392179191454, 0.11155261803616061, 0.13068865202949903, + 0.17273752529384453, 0.23641991109367222, 0.3145307087779459, + 0.39669110289218756, 0.4732486274230336, 0.5413709091001352, + 0.6096314229185981, 0.7001026760650566, 0.847708612370219, + 1.0941290600694222, 1.4807417249766375, 2.041002358379244, + 2.7870070342631603, 3.7130203967692017 + ], + "pressure:J1:branch54_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch57_seg0": [ + 4.017919260816963, 5.170228069392133, 6.423710923159839, + 7.715118322584508, 8.977765145398548, 10.154338662992286, + 11.203270573684092, 12.102805274372885, 12.846174702728625, + 13.442438925656504, 13.906724075438492, 14.252486013553172, + 14.492692098924763, 14.632046549768384, 14.671573471168326, + 14.612051067123184, 14.452920809199712, 14.201744843109722, + 13.869646004578643, 13.47168566978593, 13.02680494949842, + 12.550816167141205, 12.056964856410303, 11.553862247287652, + 11.045817851730394, 10.535853839064874, 10.027487690813317, + 9.526818582871067, 9.042731558356579, 8.585308459844793, + 8.162249839713766, 7.775581535575571, 7.418625003055248, + 7.074540445841873, 6.719147048073226, 6.32455303744966, 5.866020517811185, + 5.327085652145278, 4.706931301991148, 4.01931041106147, + 3.2930308266075747, 2.5668922429094128, 1.8819644140299343, + 1.2746737776898094, 0.7710233625518226, 0.3843564562825467, + 0.1119210733154845, -0.05679005814824502, -0.1399891173456432, + -0.15668986413643932, -0.12150534687278707, -0.04596236866362284, + 0.06383431797085166, 0.2036228996681349, 0.36774632370467575, + 0.5482566362303579, 0.7326640367496509, 0.905802880312585, + 1.052346576474568, 1.1602329704074554, 1.2228159446851117, + 1.24131812868147, 1.2237475780392748, 1.181566160627125, + 1.1280101097835276, 1.0729068586891708, 1.0209338102468712, + 0.9711110460423398, 0.9179550002966451, 0.8544606481688367, + 0.7754418908017882, 0.6798678791547578, 0.5725142697527591, + 0.46232043284644925, 0.36042658538969996, 0.27665985401768484, + 0.2168011127178782, 0.18062672344406971, 0.16292791224931322, + 0.15528924554619464, 0.14928558910285808, 0.14008293252930967, + 0.12798654005447366, 0.1185240545171655, 0.12047198587805148, + 0.14214563245821002, 0.1882350588929703, 0.25701803041118515, + 0.3404964652253989, 0.42764277183155064, 0.5085417536239214, + 0.5808333996864133, 0.6544785393604929, 0.7537353505145917, + 0.9163370807155333, 1.1867894782427828, 1.608397935113139, + 2.2162396456274847, 3.0219508364884264, 4.017919260816963 + ], + "pressure:J1:branch57_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch69_seg0": [ + 1.3803786482874407, 1.752413884709472, 2.1441096184454294, + 2.5355493771026065, 2.906414804315864, 3.2410246964607192, + 3.5298144125205293, 3.7702840321456867, 3.9628592197202885, + 4.112824212218977, 4.226529381612333, 4.307156295948637, + 4.358597597205468, 4.381135520258669, 4.373912118555648, + 4.337608424963585, 4.271628909852713, 4.179462725170194, + 4.0655897553694755, 3.934667668659654, 3.7932940844725436, + 3.6456716616593368, 3.495065806466822, 3.343403755336893, + 3.191120859380407, 3.038884281084956, 2.8878698314351365, + 2.7403147617934414, 2.599344288965128, 2.4681777875978135, + 2.3486272252394436, 2.240195206850761, 2.1394036072669524, + 2.0392948683558814, 1.9313611829587614, 1.8066840139839082, + 1.6585269508764175, 1.4834205183600866, 1.2839912414139292, + 1.0671765916435119, 0.8439783327621657, 0.6280161485429692, + 0.4318529739714402, 0.2654867206797618, 0.13462868634461303, + 0.04126882919011751, -0.018630388235615504, -0.04963183716897482, + -0.05822417535547319, -0.05068333098124486, -0.030303231684856075, + -3.365090723090772e-5, 0.03913058535111694, 0.08647233021576402, + 0.1398559089115363, 0.19656708787509722, 0.2521603381856399, + 0.301561742204801, 0.3402329176872384, 0.36523728435307945, + 0.37556535489321635, 0.3729021810309644, 0.3610693963255878, + 0.34394567516283936, 0.3257777902592086, 0.3089922219026243, + 0.2939617505207447, 0.2794019920410733, 0.2628996001674355, + 0.2420777574858865, 0.2157518952177255, 0.18431962887609238, + 0.15028149975819485, 0.11704371672876274, 0.08827078941941204, + 0.0666563062793424, 0.05321867958542547, 0.04677172793686716, + 0.044856929854670165, 0.04447800033264743, 0.04305619791403534, + 0.039821041585818805, 0.03581239461268063, 0.033587417514665034, + 0.036329863381232244, 0.04641435026533229, 0.06456119483380374, + 0.08916794326011158, 0.11663245755951189, 0.1432252532964501, + 0.16623641035364087, 0.18632567782676826, 0.2087241324879512, + 0.24325722359388616, 0.30356899183728137, 0.4042081800365394, + 0.5575243073189194, 0.7729205852713116, 1.0491679092478758, + 1.3803786482874407 + ], + "pressure:J1:branch69_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch72_seg0": [ + 2.7252952238564, 3.4882270638616526, 4.3077784549878215, + 5.141344832325045, 5.945902996629384, 6.685727455678286, + 7.336383662391888, 7.886750048681347, 8.335613592119673, + 8.690780583300166, 8.963529946498824, 9.1627524633822, 9.296416661275112, + 9.366997553178578, 9.374229208268037, 9.318586719661953, + 9.199559098303128, 9.022707264610236, 8.79618974359442, 8.529900238997511, + 8.236584474828256, 7.926255993173374, 7.606827059487216, + 7.283234137050245, 6.957564109578593, 6.631404916996054, + 6.307045742159857, 5.988656610856476, 5.682281456774153, 5.39452121523611, + 5.1300351889008775, 4.889206056034276, 4.666501674836756, + 4.449656710153787, 4.221896818016404, 3.9647380393623552, + 3.662691574358661, 3.306401773794722, 2.8974747649057395, + 2.4472866014976433, 1.9764635828823098, 1.5116209493234682, + 1.0797149654841791, 0.7036219229718339, 0.39820447066962666, + 0.17047144907278655, 0.016104089559182532, -0.07345860406282792, + -0.11076531889533339, -0.10864979877831418, -0.07602641617485223, + -0.019620099201618887, 0.05710826166330328, 0.15198781142974438, + 0.26135650601393906, 0.37968669180840064, 0.49853449144985695, + 0.607754631507735, 0.6974840423578649, 0.7604154648184345, + 0.7931989525001223, 0.7976668159170475, 0.7800879299169786, + 0.7484735998506713, 0.7115709310267684, 0.6753775435668121, + 0.6421551603507242, 0.6104124978621088, 0.5759353885101904, + 0.5338964641191873, 0.48118895227412, 0.41764698269245415, + 0.34715413341011714, 0.27614915438933724, 0.21210730955573132, + 0.16120505329548332, 0.12661370913966485, 0.10737732090472439, + 0.09927686736999115, 0.09645208000561, 0.0934257047184459, + 0.08748993746976211, 0.07958689764352364, 0.07403527028896503, + 0.07697380209394053, 0.09377836797197592, 0.1269351078794684, + 0.17450940209259624, 0.23041729815014095, 0.28707572988977165, + 0.33825411300960795, 0.3834607439912564, 0.4308513766986909, + 0.4981156698014617, 0.6114836861527055, 0.800832780908033, + 1.0934047129200808, 1.5109999345226954, 2.05795019502172, 2.7252952238564 + ], + "pressure:J1:branch72_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch76_seg0": [ + 3.1050370345543024, 4.003218298105141, 4.98348353497082, 5.99600016294434, + 6.987926362152635, 7.91355600421057, 8.739589000175547, 9.448174648283585, + 10.033655684171853, 10.50307152444865, 10.868202942674122, + 11.14028006379338, 11.329849803488989, 11.441138817924536, + 11.47539186822669, 11.433113264587792, 11.31391884650872, + 11.123253836708622, 10.869247714463862, 10.563389742355099, + 10.220184310068108, 9.851922721831881, 9.469117745163164, + 9.078638993247852, 8.6840127872536, 8.287616219987024, 7.892045843670702, + 7.501850522313018, 7.123773190925244, 6.76565295111057, 6.433688873441251, + 6.129962347450432, 5.849819980776192, 5.580752755943771, + 5.304265201177774, 4.9986388754723485, 4.644060915105857, + 4.2269833967844415, 3.7455647078576257, 3.2094444559758766, + 2.6402891168053375, 2.0679895456596835, 1.5248227506985899, + 1.0400639955934772, 0.6352973982745698, 0.3220985744689968, + 0.09946643299555849, -0.04006329513446377, -0.11062951707428151, + -0.12718743111857442, -0.10170434279818857, -0.04373761093161457, + 0.04164549807090535, 0.15087170456338098, 0.2796000668572083, + 0.4217817380289301, 0.5678133321605937, 0.7058941327929605, + 0.8238961693970958, 0.9119944909904468, 0.964527323156788, + 0.981976035850295, 0.9701643296373673, 0.9380072027080997, + 0.8959701611168368, 0.8520861471193416, 0.8104834646268398, + 0.7708070064211782, 0.7290012462612909, 0.6795796679983654, + 0.6182312228230092, 0.5437959071831119, 0.45963647431449794, + 0.37250505173679177, 0.29113002234361945, 0.22343902760922454, + 0.17435734677487233, 0.1441321173195518, 0.12903914528738822, + 0.12256128489000744, 0.11797085708288718, 0.111136860350029, + 0.10188512930673549, 0.0942245431529433, 0.09490722253234767, + 0.11061558508823469, 0.1453878892208089, 0.19832797567974494, + 0.2635730849825889, 0.3325519256804927, 0.39722574299059327, + 0.45512009437749207, 0.5131791840742962, 0.5895824659981874, + 0.7132911996288389, 0.9190741468766411, 1.2415128746575843, + 1.7089016686585894, 2.331585479031596, 3.1050370345543024 + ], + "pressure:J1:branch76_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch99_seg0": [ + 1.6982984886161752, 2.168701493931458, 2.670481464270211, + 3.1775047195275974, 3.6632952107289323, 4.10658002656568, + 4.493399609548059, 4.818231996638804, 5.080997843989289, 5.28744098679905, + 5.444921986192345, 5.558676941991316, 5.633651159865693, 5.67085131972681, + 5.669854845736675, 5.630900000876513, 5.5535610111374165, + 5.441606785588689, 5.300079455225345, 5.135277044344692, + 4.955189492123065, 4.7656865161079285, 4.571484182739354, + 4.375308975772842, 4.178156157285432, 3.98088941789456, + 3.7848612149700966, 3.5927140289200894, 3.4082652558011026, + 3.2356221199052047, 3.0775081597014378, 2.933934173650262, + 2.8011285869694076, 2.6710783848772355, 2.5332346097943246, + 2.3761290352158113, 2.1904440272277976, 1.9708859360019517, + 1.7192234836990894, 1.4430850906590194, 1.1558144760710627, + 0.8741763911720652, 0.6146786452262428, 0.3909750442443605, + 0.21171910084505738, 0.08034107736619582, -0.0067035584550404, + -0.05490496343669429, -0.07251528430924212, -0.06735803165754074, + -0.04459809079324028, -0.008247357059728686, 0.04004403282803157, + 0.09907652332110978, 0.1665522200181171, 0.23911191596277442, + 0.31137779798346227, 0.37702637579047893, 0.4300508100189118, + 0.46616195550861245, 0.48356918188966364, 0.4837946349620208, + 0.47104707449489547, 0.4503840253865924, 0.4272628116641817, + 0.40518143386886424, 0.38524291606277683, 0.36624386870307113, + 0.3453522133662031, 0.31951496645463967, 0.2868748705620791, + 0.24754356974173194, 0.20418923490843854, 0.1609345516197413, + 0.12248099713189942, 0.09255664102582699, 0.07290182438313346, + 0.06259198563167837, 0.058827865765401735, 0.05783028149076147, + 0.056204188359114046, 0.05248679295147184, 0.04750160668517269, + 0.04415680952935403, 0.04638929785570648, 0.057484519204677405, + 0.07880977852137112, 0.10887466229671686, 0.1436313694318788, + 0.1782753249158045, 0.2090034480332613, 0.23581937615713075, + 0.2642629541626843, 0.3057889569270056, 0.3770516610588422, + 0.49651002013212264, 0.6809314894298655, 0.9430724759540413, + 1.2841611265179602, 1.6982984886161752 + ], + "pressure:J1:branch99_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch112_seg0": [ + 2.4765002596030015, 3.197454017304393, 3.9876198976665074, + 4.807705409490073, 5.61533726570599, 6.373271967383721, 7.053693135278952, + 7.6410109115151075, 8.129279769982787, 8.523178136050252, + 8.831481108868742, 9.062813446047528, 9.225700895402262, + 9.323580165203559, 9.357647374696166, 9.328430292885866, + 9.235613515753412, 9.083623441364308, 8.878992478916324, + 8.631033257377135, 8.351567539669153, 8.05075779878512, 7.737354287709759, + 7.4172244084849765, 7.09348201677926, 6.768240820378073, + 6.443708932686173, 6.123582061966633, 5.813290941869996, + 5.519156395167565, 5.246231729009665, 4.996316579074102, + 4.765864063094565, 4.544999630419416, 4.319003287221675, + 4.070446965201038, 3.7833139822267867, 3.44642443006904, + 3.0580215595631484, 2.625441975042811, 2.1658047638300304, + 1.7029128840643146, 1.2626252742398387, 0.8685064759089512, + 0.5381088222716861, 0.2809916548491814, 0.09674308449673799, + -0.02036788303275364, -0.08140045462582035, -0.09827823123610681, + -0.08059710990120826, -0.036125575127979516, 0.030883524047692252, + 0.11744933068960549, 0.2200108894811603, 0.33374050288446094, + 0.4509887854383348, 0.5623545450066193, 0.6581092178374434, + 0.7303147961821954, 0.774227896141214, 0.7900323528721117, + 0.7821691123184525, 0.7575885117697919, 0.7246140237198171, + 0.68971178482353, 0.6563068489069417, 0.6242889840808402, + 0.5905714948256107, 0.5508657100261343, 0.5017354942338722, + 0.44218906442584693, 0.3747908663279826, 0.30482673648036307, + 0.23919486875695214, 0.18423968997677947, 0.14397683217665264, + 0.11875096365185532, 0.10573454577195877, 0.09984371234407449, + 0.09574148799335692, 0.09008423656232155, 0.0826223992816587, + 0.07641701330714379, 0.07675983928002796, 0.08893943242003183, + 0.11625350618639217, 0.15810226424769996, 0.2099600800149444, + 0.2651058222435596, 0.3171369177617334, 0.36396147225434494, + 0.4108952965737516, 0.47216868677145574, 0.5706517355141594, + 0.7339997816915677, 0.9899865336597621, 1.3616052682843294, + 1.8580169522248289, 2.4765002596030015 + ], + "pressure:J1:branch112_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch120_seg0": [ + 1.7260448522737424, 2.221755958195449, 2.760665922021015, + 3.315101965632255, 3.856237009890843, 4.359315312194104, 4.80655840167706, + 5.188639812999839, 5.5032077975234746, 5.754368450183842, + 5.948860748697928, 6.092964004459007, 6.1921923957823015, + 6.2487584820094035, 6.263035857921477, 6.235172677200908, + 6.164989274290685, 6.055569104971439, 5.911682385944024, + 5.739848655732303, 5.5482353659137935, 5.343674602009705, + 5.131890330535595, 4.916516627069295, 4.699348012776546, + 4.4815843157145965, 4.2646385673262195, 4.051069263985936, + 3.8446630015206322, 3.6497555490226685, 3.4696840521159515, + 3.3053494126579643, 3.1538435741268773, 3.007918926613169, + 2.8570660901538427, 2.689206032022481, 2.493562028075107, + 2.2631156161358064, 1.9974109510939633, 1.7025486692588536, + 1.3910553356008208, 1.0797901118824882, 0.786590227586869, + 0.5272687846865797, 0.31299767952459734, 0.14946782996406532, + 0.035293615454348656, -0.034229367508538305, -0.06720872201838332, + -0.0719348368207072, -0.054850233909189985, -0.020925324400418506, + 0.027274567883523476, 0.08797997482031741, 0.158908074256516, + 0.23667328862007025, 0.3159676502391541, 0.39027119528536897, + 0.45298529275401644, 0.49886069415757706, 0.5251094337597839, + 0.5322676941775176, 0.5238252335689517, 0.5048784908637385, + 0.4811836135301358, 0.45704113837100163, 0.4344987049225882, + 0.4130983997950155, 0.3904133826712884, 0.3633395084931667, + 0.3295674651688418, 0.2886025545130145, 0.24250331152839674, + 0.19515182523023403, 0.15141063902290303, 0.11556268832920154, + 0.09013477357179125, 0.07502336367121816, 0.06793996660418242, + 0.06517844066952662, 0.063049305028549, 0.05940308444627264, + 0.05435208704542794, 0.05030977461738725, 0.05110245732671374, + 0.0604072127088344, 0.08027019105092346, 0.10998639029617614, + 0.14609917800602273, 0.1837683945362789, 0.2186411746527008, + 0.24963036959943583, 0.28098329985739817, 0.32317062824993514, + 0.39251230366417605, 0.5083043300420343, 0.689281093527871, + 0.9506728570864384, 1.2973683030012306, 1.7260448522737424 + ], + "pressure:J1:branch120_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch132_seg0": [ + 1.013599196906955, 1.2908322837634303, 1.5846206697371445, + 1.8798822519916973, 2.1611666958360387, 2.4163561379699416, + 2.6377728521583377, 2.8229205935725417, 2.9718402325394786, + 3.0883338645042286, 3.176917199897044, 3.240305923910272, + 3.281481881725917, 3.300766908737559, 3.2977536759150246, + 3.272740596217796, 3.2253498066810575, 3.1580253763709547, + 3.0738805370811395, 2.976538593626498, 2.8708218221376605, + 2.7600176916363646, 2.6467435538813207, 2.532516171230216, + 2.4177777139161636, 2.303025383018189, 2.1890828172549743, + 2.077560039788029, 1.9707495116305123, 1.8710754055268803, + 1.7800179098531164, 1.6974175058565624, 1.6208687045156978, + 1.5454053507361472, 1.4647461923531548, 1.3721696525549125, + 1.2623995526316416, 1.1325566461951775, 0.9841683726835297, + 0.8220308522291926, 0.6542166162246801, 0.49075846967871634, + 0.341213423088579, 0.213336711803145, 0.11184885787896433, + 0.038451614105212494, -0.00939751933374824, -0.03501825832932126, + -0.04329919067739036, -0.038890962542124825, -0.02453615317640963, + -0.002536358100459181, 0.026289915456088164, 0.06132213993991742, + 0.10108669671591222, 0.1436123233516428, 0.18563845442332036, + 0.2234104172561088, 0.25345452784906797, 0.2734165004861723, + 0.2823618564084261, 0.28139595738726036, 0.2731827991595777, + 0.2606616869965629, 0.24704782220734792, 0.23427638176757765, + 0.22281156444608224, 0.21181863498165662, 0.19955170915196307, + 0.18421535026222224, 0.16480679726555722, 0.1415088077113745, + 0.11604019655747012, 0.09088875250438845, 0.06881863713389623, + 0.05194317103239137, 0.041159752599410404, 0.03574666089381644, + 0.03396694110874403, 0.03357197594196163, 0.032586888864464605, + 0.03029085902971332, 0.027312578095831024, 0.02546669350309236, + 0.02711543680444908, 0.034116666486190605, 0.047163627888384185, + 0.06520825796941669, 0.08571166655135123, 0.10585517899262402, + 0.12348551754969812, 0.1388319198081984, 0.15546677134206482, + 0.1804305810876902, 0.2237250230015373, 0.29621794279355773, + 0.4075259287349395, 0.5648732225753104, 0.7681871814777058, + 1.013599196906955 + ], + "pressure:J1:branch132_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:J1:branch138_seg0": [ + 1.485253365988929, 1.9036023216154523, 2.35350738005036, + 2.811611596059907, 3.2539441108902714, 3.660712762619702, + 4.018371770011855, 4.320802627219127, 4.5671289049452435, + 4.7618945653884746, 4.911333423680218, 5.020432622378221, + 5.0937694674586504, 5.132603435084388, 5.136879768764729, + 5.106707941704622, 5.0417729431813285, 4.945106958906528, + 4.820960127169935, 4.674942125680462, 4.514059546268688, + 4.343801213268305, 4.168637740666782, 3.991261236826126, + 3.8128070435429473, 3.634115918066369, 3.456358754492988, + 3.2817857385643903, 3.1137051960424786, 2.9557855099793455, + 2.8106413629359857, 2.678625582481198, 2.5567812871930595, + 2.4384040347782974, 2.3143062848053786, 2.1742486149993843, + 2.0095590078985675, 1.814961676955245, 1.5912108981026527, + 1.3443734407333343, 1.0858345405017589, 0.8302513708926281, + 0.5925321900690363, 0.3853588434880875, 0.21721596543422772, + 0.09183608891898733, 0.006927825279662352, -0.04209615021739194, + -0.06240686327783781, -0.061024802050375714, -0.04293944964424084, + -0.011976352261261458, 0.030116055103915525, 0.08212276306314074, + 0.14208234217555935, 0.20709358513802914, 0.27250417987950615, + 0.3327407394669073, 0.38233968403428925, 0.417216684827276, + 0.4354260108622494, 0.4379609360910225, 0.4282331731841037, + 0.41069038974150585, 0.3902233911658357, 0.370186220921782, + 0.35188858301321074, 0.33454404132528837, 0.3158095761759895, + 0.29298232031909527, 0.26425105101016627, 0.22948524040584997, + 0.1907788199510142, 0.15165042557596625, 0.11627152222996784, + 0.08811281341282391, 0.06898455280746388, 0.058383720057599155, + 0.0540429280679979, 0.052673259602138436, 0.051185552160600105, + 0.04803669352172681, 0.04367978168096512, 0.04047549314407381, + 0.041838303843048374, 0.050791573048089046, 0.06880607536712877, + 0.0948662431395466, 0.125659210908526, 0.15695646112249384, + 0.1852110346951885, 0.20998935720160433, 0.23562040358088565, + 0.27171609894071796, 0.3326694737531213, 0.4348801917759521, + 0.5937419416169288, 0.8212148826540668, 1.1198073152294095, + 1.485253365988929 + ], + "pressure:J1:branch138_seg0": [ + 9620.737290200237, 11067.35909304935, 12563.83657941459, + 14033.540615293328, 15407.156226703344, 16629.200758425817, + 17668.562715478325, 18524.76856764377, 19205.645887916722, + 19726.648832593368, 20120.12607146464, 20391.91920294175, + 20553.020111602404, 20607.49386795826, 20545.7243097541, + 20375.805640759867, 20095.26499832232, 19716.29908120739, + 19264.515940162022, 18753.040991195096, 18207.195447066046, + 17643.87817920751, 17070.82460692999, 16495.41901575082, + 15918.34869090045, 15341.84329137046, 14772.112998757526, + 14218.531964217334, 13693.50422272971, 13208.684739754523, + 12769.464170846635, 12369.497481787908, 11993.270428361386, + 11610.949583756274, 11188.452413606252, 10693.002313419762, + 10103.623719491326, 9410.49243416501, 8629.419758730583, + 7794.721218104667, 6948.3622493928415, 6144.507909713895, + 5429.615053286852, 4837.651520270548, 4381.65717310959, + 4068.8833198385287, 3878.694662970205, 3788.267282363709, + 3778.613938930554, 3822.864097560254, 3911.784689424158, 4037.99686335354, + 4195.109286433743, 4382.86974004198, 4591.103907132728, 4807.077580647243, + 5014.1382428265515, 5192.011271801561, 5324.424182020793, + 5402.879283542126, 5426.615594569858, 5402.8383083150575, + 5350.055997878596, 5282.039514192784, 5213.113467854361, + 5151.793573577321, 5096.600221198529, 5040.755447187792, + 4974.748422627896, 4889.979997806083, 4784.173590791941, + 4660.340810014033, 4529.83417395789, 4406.979746633539, 4304.676831618444, + 4231.545057935762, 4189.468911801835, 4172.17210472979, 4168.043752590947, + 4166.856817796817, 4159.69874663733, 4145.450475302712, 4130.469513806616, + 4125.669531527246, 4143.095456283314, 4190.328983767934, + 4267.409410991209, 4366.682613486566, 4471.842560275719, + 4569.552942372693, 4652.417836733582, 4727.021603833841, + 4818.603582110016, 4969.24813351331, 5233.652358789474, 5668.727414212289, + 6312.030050210281, 7198.184018549119, 8314.692523336387, 9620.737290200237 + ], + "flow:branch2_seg0:J2": [ + 1.6357754136001927, 2.1081291898352403, 2.6236629382160412, + 3.1560200139711667, 3.6776556968220855, 4.164663586346475, + 4.599477214675328, 4.972598726135809, 5.28101611001868, 5.528417120213634, + 5.720895661969881, 5.86423452433452, 5.963917780436807, 6.022116167789613, + 6.039396832566228, 6.016062590618194, 5.951837561616891, + 5.849565473087016, 5.713889839240231, 5.550840709047487, + 5.368054974951344, 5.172276453805569, 4.968984842655805, + 4.761835436019532, 4.552711682332482, 4.342823856732831, 4.13358934913559, + 3.9274305374173912, 3.727915039837976, 3.539165696056148, + 3.3644367029130975, 3.2047109070102313, 3.057417665952744, + 2.915881598260162, 2.7702460731180905, 2.6090284104472485, + 2.421921338708971, 2.2018566135696314, 1.948122242660733, + 1.6660838472317379, 1.367320244633529, 1.0676686759185698, + 0.7841350680785243, 0.532000819155344, 0.3221739612868132, + 0.16052737133896683, 0.04645285226793311, -0.024543756045740692, + -0.059749833048297736, -0.06707593721660261, -0.052840696350473115, + -0.021782362028309077, 0.02335510447048887, 0.08075269385654305, + 0.14825196929092369, 0.2226060887478524, 0.2987731733650359, + 0.37059763613718827, 0.431728058685579, 0.4770968115995896, + 0.5038043379728122, 0.5122123746256199, 0.5054749453901821, + 0.48826728888778315, 0.46607110468129825, 0.4430775711662497, + 0.4213648538562622, 0.40066147534218016, 0.3787956409536326, + 0.3528725556849086, 0.3206849826982457, 0.28167329946004777, + 0.23762347287940927, 0.19217219837405486, 0.14988313022722302, + 0.11486618446230047, 0.08962682181024802, 0.07426158244262877, + 0.06670548952141579, 0.06351559320034614, 0.06121713128147548, + 0.05766997233616411, 0.052852511624864124, 0.04892669072543334, + 0.049461444036340375, 0.057929100460369067, 0.07639710416308791, + 0.10431399606228739, 0.13852952607595384, 0.1745488598951847, + 0.20820911696007127, 0.23831904497224668, 0.2686673518321436, + 0.3089375096290434, 0.3743976035863175, 0.483413337952588, + 0.6538268076355948, 0.9003023647252817, 1.2287146429106126, + 1.6357754136001927 + ], + "pressure:branch2_seg0:J2": [ + 9237.610302862402, 10626.946174096483, 12083.132755663917, + 13533.501534585997, 14907.159194909222, 16145.713035947145, + 17213.372860957734, 18105.81919065887, 18822.49771063615, + 19378.32134387141, 19803.864644295612, 20104.837005640493, + 20294.215357526067, 20376.80151922871, 20344.8215118594, + 20205.960677253173, 19957.735662719242, 19609.285832366033, + 19184.375239458594, 18696.479842704615, 18169.04661604785, + 17619.65260529731, 17057.637387007213, 16491.22288173599, + 15922.250532663616, 15353.082913564931, 14789.158019695606, + 14239.049688059056, 13714.240487929817, 13226.460224193834, + 12781.797120594902, 12376.636226241037, 11998.204467352427, + 11619.582837220338, 11209.210658518652, 10734.883037761174, + 10174.182566815882, 9514.013392113759, 8765.414194594698, + 7957.392105295543, 7127.965873247294, 6328.5246330589625, + 5604.873190880616, 4992.911082276975, 4510.1443875698305, + 4165.669916748445, 3944.8345596658028, 3827.6897476111253, + 3795.201418019102, 3821.735466946904, 3896.265286790818, + 4009.7050278750376, 4156.023565775303, 4333.525961914863, + 4532.783236694863, 4743.088250045576, 4948.484240656934, + 5129.629560524203, 5270.051055788137, 5360.343605243556, + 5397.160364110543, 5385.791126927784, 5342.952517662334, + 5281.292770137974, 5215.0512045824125, 5153.977922502606, + 5098.347351201434, 5043.06401158137, 4979.705090510307, 4899.841360986769, + 4800.121087592039, 4682.367695918826, 4555.954764532845, + 4433.884287932526, 4328.916266010387, 4250.336959303612, + 4201.494948271623, 4177.718777304251, 4169.395934608546, + 4166.4776871409285, 4159.700596609266, 4146.812733115493, + 4132.3771631544605, 4125.808969036127, 4138.543574892813, + 4178.490638487391, 4247.4563017523615, 4339.687174753955, + 4440.595540921776, 4537.486921820954, 4621.965673330493, + 4697.5708652044605, 4785.138436184086, 4922.130397969305, + 5159.005932105144, 5550.636971433583, 6137.598026832246, + 6954.734665694448, 7998.139559181317, 9237.610302862402 + ], + "flow:J2:branch3_seg0": [ + 0.7376343738029454, 0.9534953809499547, 1.190761292961568, + 1.437469794005484, 1.6808954992908256, 1.9097391261214278, + 2.1154621820526347, 2.293154467931572, 2.4409709096834313, + 2.5602417864199025, 2.653568319666689, 2.723626639250686, + 2.772993410276549, 2.802821557261614, 2.8135031295982627, + 2.8052015683836946, 2.777821116512074, 2.73255413654621, + 2.6714320198055668, 2.5971872464696095, 2.513287001063335, + 2.4228993646250756, 2.328655831450363, 2.232360828893276, + 2.1350019306182344, 2.037198491306896, 1.939609785265316, + 1.8433167654988543, 1.7499173021838934, 1.6612962123276116, + 1.5790057963107917, 1.5036316798591012, 1.4341724623271035, + 1.3677611619593246, 1.300009501153126, 1.2256829535254812, + 1.1399386136911345, 1.0393133962141774, 0.9231306884801845, + 0.7935104327967217, 0.6554777706914952, 0.5161250404427625, + 0.38325953085246434, 0.26406454332934004, 0.16385875663766283, + 0.08565905195690712, 0.029563670283429527, -0.006248236911151095, + -0.024995792803132775, -0.030280239651158152, -0.025114893612554447, + -0.011800361850300183, 0.008281216197534198, 0.0342053006601063, + 0.06497658422761433, 0.0991390383358704, 0.1344374373579054, + 0.16808148122866784, 0.19713390026403352, 0.2191730697716822, + 0.23272368453730002, 0.23777575874736986, 0.23561741708630643, + 0.2283174771956366, 0.21837407089586758, 0.207787319264395, + 0.19764161943188144, 0.18794970723784094, 0.17781963865651756, + 0.16596200911434666, 0.15132366430079494, 0.1335591495447101, + 0.11336711961664246, 0.0923240893623425, 0.07248937972399365, + 0.055787679817108894, 0.04346782176198083, 0.03570865513299367, + 0.031684944976081215, 0.02988164898909, 0.028701370622972865, + 0.027084288791820003, 0.024902320084754223, 0.023032919756072648, + 0.023044885421358553, 0.026542739775838677, 0.034559855670437324, + 0.046979118086591116, 0.062491334901112396, 0.07909798295160733, + 0.09485638598429298, 0.10906191639909263, 0.12319984507943267, + 0.14143264880010573, 0.17052794107686897, 0.21881656523357196, + 0.29461549442466634, 0.4049007348428943, 0.552890182830495, + 0.7376343738029454 + ], + "pressure:J2:branch3_seg0": [ + 9237.610302862402, 10626.946174096483, 12083.132755663917, + 13533.501534585997, 14907.159194909222, 16145.713035947145, + 17213.372860957734, 18105.81919065887, 18822.49771063615, + 19378.32134387141, 19803.864644295612, 20104.837005640493, + 20294.215357526067, 20376.80151922871, 20344.8215118594, + 20205.960677253173, 19957.735662719242, 19609.285832366033, + 19184.375239458594, 18696.479842704615, 18169.04661604785, + 17619.65260529731, 17057.637387007213, 16491.22288173599, + 15922.250532663616, 15353.082913564931, 14789.158019695606, + 14239.049688059056, 13714.240487929817, 13226.460224193834, + 12781.797120594902, 12376.636226241037, 11998.204467352427, + 11619.582837220338, 11209.210658518652, 10734.883037761174, + 10174.182566815882, 9514.013392113759, 8765.414194594698, + 7957.392105295543, 7127.965873247294, 6328.5246330589625, + 5604.873190880616, 4992.911082276975, 4510.1443875698305, + 4165.669916748445, 3944.8345596658028, 3827.6897476111253, + 3795.201418019102, 3821.735466946904, 3896.265286790818, + 4009.7050278750376, 4156.023565775303, 4333.525961914863, + 4532.783236694863, 4743.088250045576, 4948.484240656934, + 5129.629560524203, 5270.051055788137, 5360.343605243556, + 5397.160364110543, 5385.791126927784, 5342.952517662334, + 5281.292770137974, 5215.0512045824125, 5153.977922502606, + 5098.347351201434, 5043.06401158137, 4979.705090510307, 4899.841360986769, + 4800.121087592039, 4682.367695918826, 4555.954764532845, + 4433.884287932526, 4328.916266010387, 4250.336959303612, + 4201.494948271623, 4177.718777304251, 4169.395934608546, + 4166.4776871409285, 4159.700596609266, 4146.812733115493, + 4132.3771631544605, 4125.808969036127, 4138.543574892813, + 4178.490638487391, 4247.4563017523615, 4339.687174753955, + 4440.595540921776, 4537.486921820954, 4621.965673330493, + 4697.5708652044605, 4785.138436184086, 4922.130397969305, + 5159.005932105144, 5550.636971433583, 6137.598026832246, + 6954.734665694448, 7998.139559181317, 9237.610302862402 + ], + "flow:J2:branch36_seg0": [ + 0.898141039797247, 1.1546338088852865, 1.4329016452544732, + 1.7185502199656824, 1.9967601975312592, 2.2549244602250478, + 2.4840150326226946, 2.679444258204237, 2.840045200335247, + 2.9681753337937318, 3.067327342303194, 3.1406078850838353, + 3.190924370160259, 3.2192946105279994, 3.225893702967966, + 3.210861022234499, 3.1740164451048174, 3.117011336540806, + 3.0424578194346643, 2.9536534625778788, 2.8547679738880105, + 2.7493770891804936, 2.6403290112054427, 2.5294746071262564, + 2.417709751714247, 2.3056253654259335, 2.193979563870275, + 2.0841137719185365, 1.9779977376540825, 1.8778694837285368, + 1.7854309066023057, 1.7010792271511301, 1.6232452036256413, + 1.5481204363008372, 1.470236571964964, 1.383345456921767, + 1.2819827250178366, 1.162543217355454, 1.024991554180548, + 0.8725734144350159, 0.7118424739420337, 0.5515436354758072, + 0.4008755372260602, 0.2679362758260039, 0.15831520464915036, + 0.0748683193820597, 0.01688918198450359, -0.018295519134589596, + -0.03475404024516497, -0.03679569756544445, -0.027725802737918664, + -0.009982000178008894, 0.015073888272954673, 0.04654739319643675, + 0.08327538506330934, 0.123467050411982, 0.1643357360071305, + 0.20251615490852043, 0.23459415842154557, 0.2579237418279075, + 0.27108065343551224, 0.27443661587824997, 0.2698575283038756, + 0.2599498116921466, 0.2476970337854307, 0.23529025190185468, + 0.22372323442438077, 0.2127117681043392, 0.20097600229711504, + 0.186910546570562, 0.16936131839745072, 0.14811414991533758, + 0.1242563532627668, 0.0998481090117124, 0.07739375050322933, + 0.05907850464519158, 0.046159000048267194, 0.03855292730963508, + 0.035020544545334584, 0.03363394421125613, 0.03251576065850261, + 0.030585683544344107, 0.0279501915401099, 0.0258937709693607, + 0.02641655861498184, 0.031386360684530386, 0.041837248492650594, + 0.05733487797569628, 0.0760381911748415, 0.09545087694357736, + 0.11335273097577828, 0.12925712857315405, 0.14546750675271092, + 0.16750486082893767, 0.20386966250944863, 0.26459677271901605, + 0.3592113132109285, 0.4954016298823874, 0.6758244600801178, + 0.898141039797247 + ], + "pressure:J2:branch36_seg0": [ + 9237.610302862402, 10626.946174096483, 12083.132755663917, + 13533.501534585997, 14907.159194909222, 16145.713035947145, + 17213.372860957734, 18105.81919065887, 18822.49771063615, + 19378.32134387141, 19803.864644295612, 20104.837005640493, + 20294.215357526067, 20376.80151922871, 20344.8215118594, + 20205.960677253173, 19957.735662719242, 19609.285832366033, + 19184.375239458594, 18696.479842704615, 18169.04661604785, + 17619.65260529731, 17057.637387007213, 16491.22288173599, + 15922.250532663616, 15353.082913564931, 14789.158019695606, + 14239.049688059056, 13714.240487929817, 13226.460224193834, + 12781.797120594902, 12376.636226241037, 11998.204467352427, + 11619.582837220338, 11209.210658518652, 10734.883037761174, + 10174.182566815882, 9514.013392113759, 8765.414194594698, + 7957.392105295543, 7127.965873247294, 6328.5246330589625, + 5604.873190880616, 4992.911082276975, 4510.1443875698305, + 4165.669916748445, 3944.8345596658028, 3827.6897476111253, + 3795.201418019102, 3821.735466946904, 3896.265286790818, + 4009.7050278750376, 4156.023565775303, 4333.525961914863, + 4532.783236694863, 4743.088250045576, 4948.484240656934, + 5129.629560524203, 5270.051055788137, 5360.343605243556, + 5397.160364110543, 5385.791126927784, 5342.952517662334, + 5281.292770137974, 5215.0512045824125, 5153.977922502606, + 5098.347351201434, 5043.06401158137, 4979.705090510307, 4899.841360986769, + 4800.121087592039, 4682.367695918826, 4555.954764532845, + 4433.884287932526, 4328.916266010387, 4250.336959303612, + 4201.494948271623, 4177.718777304251, 4169.395934608546, + 4166.4776871409285, 4159.700596609266, 4146.812733115493, + 4132.3771631544605, 4125.808969036127, 4138.543574892813, + 4178.490638487391, 4247.4563017523615, 4339.687174753955, + 4440.595540921776, 4537.486921820954, 4621.965673330493, + 4697.5708652044605, 4785.138436184086, 4922.130397969305, + 5159.005932105144, 5550.636971433583, 6137.598026832246, + 6954.734665694448, 7998.139559181317, 9237.610302862402 + ], + "flow:branch4_seg0:J3": [ + 34.75597828061494, 44.72274147051993, 55.6738716887819, 67.10631079791585, + 78.47464042267241, 89.29559708168236, 99.20273638159843, + 107.9805126734021, 115.52987350753767, 121.8799526052875, + 127.11127340157233, 131.29951538832026, 134.52246573768275, + 136.80116397700374, 138.13156440730418, 138.5140669294534, + 137.94140434860674, 136.47360841188478, 134.20201785567747, + 131.24860641293938, 127.77283002820671, 123.9082151962115, + 119.77150335920875, 115.4447005531549, 110.97602129041593, + 106.40486803851593, 101.7740985200974, 97.14680625966706, + 92.6075113517956, 88.24984384288877, 84.14671363727328, 80.32515293870289, + 76.74011884805552, 73.26262887970115, 69.70106472016765, 65.8301741707617, + 61.44418322103093, 56.40155166410859, 50.68190077048459, + 44.383533836833394, 37.72662966193519, 31.018921656595676, + 24.59214351449551, 18.75050457317566, 13.720197529667882, + 9.634598679586174, 6.4948342915867645, 4.244177733354015, + 2.7581088162105285, 1.8992823561608756, 1.562119186326453, + 1.6565225903896628, 2.1328546382032934, 2.952118903011163, + 4.060676042175884, 5.385600007480788, 6.816072438853321, + 8.218583570793738, 9.457761971413014, 10.422993248264184, + 11.0471782701705, 11.3263419191199, 11.31213107480395, 11.086407333836808, + 10.748265690397728, 10.372670630354602, 9.996104841129252, + 9.612094734807775, 9.17915831968942, 8.64357605719145, 7.966015297740174, + 7.13908804839364, 6.202379522361715, 5.2280979545478665, 4.30724837526319, + 3.521209455488887, 2.9206494971297743, 2.5081004621093665, + 2.247074440472375, 2.0745026996947007, 1.9258852984414436, + 1.7642356081184989, 1.5924806221824963, 1.454657797674432, + 1.4206698673613642, 1.557507833785065, 1.9034164118007901, + 2.4461188689642115, 3.1229312496414514, 3.8466073947197637, + 4.537837336735588, 5.177891800241539, 5.847319535311115, + 6.743747710197779, 8.176657010905036, 10.516228513326281, + 14.126645321638081, 19.317897731804575, 26.204516632611973, + 34.75597828061494 + ], + "pressure:branch4_seg0:J3": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch5_seg0": [ + 12.014038829346694, 15.593223145257383, 19.67441505978783, + 24.10779003839036, 28.710175325969306, 33.297402153445304, + 37.706906382474195, 41.815161606872266, 45.53716587672179, + 48.834346090193584, 51.696088462335354, 54.124720655095004, + 56.132547903426754, 57.723178330856435, 58.89570907810858, + 59.64979564298834, 59.98317688923891, 59.91114593109578, + 59.45997276181831, 58.66850762943225, 57.58995295312622, 56.2755248798108, + 54.77478259565022, 53.128585017871615, 51.367589582148355, + 49.51740438275272, 47.60196077728703, 45.64901512296813, + 43.691940150496826, 41.76770395485507, 39.90916010346966, + 38.1372348074153, 36.45130544539063, 34.82326382829828, 33.20018657574229, + 31.51092435457351, 29.680886815454347, 27.647529126268854, + 25.37981231145477, 22.88400864897778, 20.209346999464668, + 17.442015784027035, 14.689004418178211, 12.061890860925127, + 9.658759957651757, 7.5537718614021685, 5.782067325661232, + 4.35406409118736, 3.251277760919183, 2.441709214770066, + 1.8930923188575386, 1.5727272950651758, 1.4569011439915482, + 1.5248930555413607, 1.7534310624956577, 2.1142567671228583, + 2.5679135912260023, 3.0663193998145957, 3.557647472669952, + 3.994020444390243, 4.338525846943453, 4.572907500529162, + 4.698081841261336, 4.729367519020466, 4.692840624436931, + 4.613399200585997, 4.508422395437757, 4.38372896368619, 4.233388586398995, + 4.044589595768425, 3.8049638393301786, 3.508972644281359, + 3.163986143162508, 2.7887813942799875, 2.411029504420067, + 2.0596091052540153, 1.7575315669323823, 1.515060648636174, + 1.3297427214344923, 1.187993832363934, 1.0716714648386474, + 0.9667340431365834, 0.8687831554015427, 0.7858328960991733, + 0.7360403697631371, 0.7406230840413369, 0.8158520581526557, + 0.9650176660899524, 1.1757779387824645, 1.4248145597855415, + 1.6862403552238234, 1.9472020289693808, 2.2219375206404965, + 2.561417663140725, 3.056485475727485, 3.8272756371105783, + 5.005711487737816, 6.718082481438604, 9.042825215667472, + 12.014038829346694 + ], + "pressure:J3:branch5_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch12_seg0": [ + 4.678828670991579, 6.0221034501291575, 7.485228613134444, + 8.994722880407103, 10.473398131322561, 11.854620253116284, + 13.089956758761003, 14.153461805559845, 15.037370933719123, + 15.751647886196805, 16.313017069975736, 16.73716312150879, + 17.0383083822377, 17.221524930285153, 17.287598665120427, + 17.23673013468029, 17.068137353420468, 16.790379234848526, + 16.41615978827998, 15.962986140266548, 15.453000203391209, + 14.904668366232967, 14.333536857734304, 13.749719057651795, + 13.158342630172363, 12.563040661922708, 11.968027026122735, + 11.380541148860111, 10.8110992989142, 10.27163360098706, + 9.771342355720511, 9.312832774391708, 8.888502127932128, + 8.479037073622154, 8.056368180710558, 7.588175885941519, + 7.0455947271727295, 6.40962479838312, 5.67910160561511, 4.870007138754057, + 4.015788557318025, 3.161426458153053, 2.354603482640261, + 1.6376502048687336, 1.0406741094315575, 0.5793179029003774, + 0.2503260469636146, 0.04162426167140179, -0.06773563629781756, + -0.09960671130119948, -0.07072583752254741, 0.005798925625310442, + 0.12307110876975161, 0.27637075380217435, 0.459345565201889, + 0.6627308622878597, 0.8720693379492533, 1.0696814454338885, + 1.2376394155134525, 1.3616927694179117, 1.4340164994578797, + 1.4558462169936766, 1.4361725581138345, 1.3882970786641904, + 1.3274290722858382, 1.2648381654585439, 1.2058808876826461, + 1.1493151381460633, 1.0886855009310576, 1.015778371177685, + 0.9245270240116241, 0.8136812620426292, 0.6888101156547134, + 0.5603224822115167, 0.44120446281826203, 0.34292033984652465, + 0.2722491831440135, 0.2289865346721488, 0.2070949497921181, + 0.196822881646902, 0.18842774412537724, 0.1762718455243226, + 0.16074010376809994, 0.1482973633037057, 0.14917281876780042, + 0.1731187411489221, 0.22560643897137944, 0.30467389294356556, + 0.4011091534566578, 0.5020371517657171, 0.5958900635295649, + 0.6798816433484706, 0.7654959685115725, 0.8808728317685786, + 1.0698176172971359, 1.3841445655014233, 1.8742005394940926, + 2.5812271608125106, 3.5189436389528144, 4.678828670991579 + ], + "pressure:J3:branch12_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch20_seg0": [ + 3.9031371951023086, 4.996995590977235, 6.170900475464016, + 7.364826679239634, 8.51669474339929, 9.57554181982321, 10.506966843046282, + 11.296431449302231, 11.941354222843522, 12.45417780964233, + 12.851347072563625, 13.144655964281343, 13.345878856136505, + 13.457509488446707, 13.478621599305683, 13.409656193819359, + 13.249214182748581, 13.005317256589198, 12.68944979694522, + 12.31580180809368, 11.90293345369661, 11.464942445094051, + 11.013155643762685, 10.554579424827908, 10.091957778989977, + 9.627528290243795, 9.164495129353915, 8.708913806299295, + 8.269607412648979, 7.856322875987039, 7.475802092585385, + 7.128849893217263, 6.807618484601736, 6.494305013641217, + 6.164938533627161, 5.7929653742534555, 5.356178708100406, + 4.84116710739658, 4.250729106985472, 3.601191862323315, 2.922411772823591, + 2.252904562704116, 1.6311285507998277, 1.0896349478143865, + 0.6497842056809229, 0.3209202627711952, 0.09631115327307573, + -0.03610782972210197, -0.09474022586802916, -0.09796931796349087, + -0.05798240442376535, 0.015541773897128741, 0.1184370132394612, + 0.24789446384498107, 0.3986338908646379, 0.5631893125175711, + 0.7292753818489196, 0.8822320147703558, 1.007836301200999, + 1.0956544824585102, 1.1406306483657598, 1.1455816410700974, + 1.119666419127712, 1.0742130895952169, 1.021876494444563, + 0.9711387535818438, 0.9249751110075121, 0.8810581446554826, + 0.8330981618517719, 0.7739934518393192, 0.6991632612301414, + 0.6084336983263744, 0.5075219520608022, 0.40572874993059527, + 0.3139369875639798, 0.2410926131549022, 0.19175040038357472, + 0.16431370758717032, 0.1527505453442827, 0.1484818825916001, + 0.1434914870945058, 0.13401331054050517, 0.12150545710363368, + 0.11231356067919288, 0.11545199672592169, 0.13869577832295982, + 0.18573949104734014, 0.25367953011897554, 0.33358547155455104, + 0.41448815337116973, 0.48726171756914927, 0.5511160961710186, + 0.6178221158785868, 0.7129238022946881, 0.8742291529774777, + 1.1446002669995, 1.5636564695053408, 2.1623602390637156, + 2.9460946158748857, 3.9031371951023086 + ], + "pressure:J3:branch20_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch22_seg0": [ + 1.465339302135, 1.8650635232021957, 2.2880271899021114, + 2.7121804983547135, 3.1154462241767353, 3.4806760309441587, + 3.7972155805023147, 4.0616588577463, 4.2746973825932475, + 4.4420128404588795, 4.569897324678728, 4.662611966785018, + 4.723921937770149, 4.754161424112644, 4.752544762427829, + 4.719078887734985, 4.653378212586459, 4.558771410893025, + 4.439795758857596, 4.30182316268306, 4.151746299412082, 3.994317869449578, + 3.8332801462195016, 3.670667887887162, 3.507054521066763, + 3.343086775418748, 3.1799316378135547, 3.019966768280396, + 2.866559917557349, 2.723280201971753, 2.5922931974203913, + 2.473382717090176, 2.362954534666649, 2.253829948097732, + 2.136827665727134, 2.0022645338526304, 1.8425191567244568, + 1.6537602261518058, 1.4382364234325915, 1.203215946928014, + 0.960561535981591, 0.7247889637655005, 0.5096689535787282, + 0.3262928303763369, 0.18112968556458753, 0.07632962942319498, + 0.0079900811602333, -0.028920298939908606, -0.04157545896396139, + -0.0365317709444773, -0.017683455486323704, 0.01188797445833869, + 0.051229992547281014, 0.09954081986313171, 0.15487544190316388, + 0.214351533602067, 0.2732473406849627, 0.32612698212721364, + 0.36796277776455427, 0.3953321512171074, 0.4070156467970652, + 0.4046908564758388, 0.39219599209138317, 0.37393271298509323, + 0.35445967691328545, 0.3364870715167703, 0.32058421288647027, + 0.3053883237847347, 0.2882599394111965, 0.2665354254555228, + 0.23876889841595228, 0.20527594946304403, 0.1686195295926627, + 0.13247663889508396, 0.10090246218224701, 0.07692480994728874, + 0.0617900586772672, 0.054364896190410655, 0.05205112970519315, + 0.051513003574788295, 0.0499265684406102, 0.04627926728033299, + 0.04156927079771894, 0.03853066864051497, 0.040639283344491406, + 0.05063177382581416, 0.06944694703294071, 0.0954919892231313, + 0.12504040712798573, 0.153900475992485, 0.17895683829503495, + 0.20060876161508176, 0.224122995195506, 0.25983101797196567, + 0.32227306118875504, 0.4272691287288665, 0.5885886378048168, + 0.8165200830570126, 1.1107344111616742, 1.465339302135 + ], + "pressure:J3:branch22_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch31_seg0": [ + 2.1324603947593945, 2.729071827776654, 3.368620346909721, + 4.017311346759052, 4.641248241691023, 5.212903475115614, + 5.714018638647153, 6.136827600151698, 6.481199571442882, + 6.754119607447194, 6.96450043572276, 7.119756706887556, + 7.2258887207433595, 7.284655750670727, 7.295748479661144, + 7.25901536366517, 7.174093306301798, 7.044897426836611, + 6.8773415311183275, 6.679064445065658, 6.459670489818576, + 6.226659718182214, 5.98610033042405, 5.741605740650612, 5.494672557912655, + 5.246431487232671, 4.998524178600989, 4.7541639366194435, + 4.518063851748623, 4.295491312102681, 4.090209543222544, + 3.9028317542560647, 3.7292216209605416, 3.560030085152002, + 3.3822716265955903, 3.181544322088973, 2.9454975742872955, + 2.6667822564392263, 2.346197814290449, 1.9923614982957247, + 1.6212609059837082, 1.253643671669153, 0.9107319006453294, + 0.6108066901555829, 0.36605349689361805, 0.18213821865622717, + 0.0559570326799888, -0.018937390654781554, -0.05265885268338894, + -0.05520094846390717, -0.03364756764839967, 0.0066263048022071535, + 0.06322445557858804, 0.13447783818831222, 0.21767119174974953, + 0.3086105000788363, 0.4006153680036897, 0.4856395112231889, + 0.555792203406124, 0.6051212196178412, 0.6308503952304112, + 0.6343564730639236, 0.6204434320352752, 0.5955582074879997, + 0.5666113428730177, 0.538386717392146, 0.512720013252718, + 0.4884107589251774, 0.46204094828452563, 0.42966750343486376, + 0.3886684781752047, 0.33882267184797554, 0.2831505851017884, + 0.22672964033352386, 0.1756006381389266, 0.1347725614489887, + 0.10690098612917255, 0.09126961555578395, 0.0846194951722198, + 0.08219859948342105, 0.07957191174049727, 0.07449600582578418, + 0.0676401156636136, 0.06243636081507321, 0.06382355477014047, + 0.07622009691780603, 0.10174389428392185, 0.13895507016297043, + 0.18309805133508483, 0.22802406796486946, 0.268605975242558, + 0.3041976402288855, 0.34099063823775194, 0.39282426253593467, + 0.48034821219752266, 0.6272384742791518, 0.8553724617009028, + 1.1818752037430216, 1.6098337397269582, 2.1324603947593945 + ], + "pressure:J3:branch31_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch39_seg0": [ + 3.0347432102069494, 3.905824414632246, 4.853448293785262, + 5.829193162717441, 6.782265730607681, 7.669371787312379, 8.45955633471803, + 9.136932345248766, 9.697108964944974, 10.147667534122924, + 10.500155958884237, 10.7652179463588, 10.952618488862658, + 11.065860677322446, 11.105721732254226, 11.07241228456479, + 10.965385171095537, 10.789929300414766, 10.553863522713959, + 10.268112425424366, 9.946490032566084, 9.60051026481093, + 9.239925092450616, 8.871043264076238, 8.497015190844976, 8.12004809922207, + 7.74269128162954, 7.369458911779563, 7.007000561455631, 6.662981672356616, + 6.343383963105955, 6.050128779292208, 5.778591520920802, + 5.516580361298607, 5.2462199494774895, 4.946688256454106, + 4.599156379210569, 4.190944629115262, 3.720749171154422, + 3.1982079426933767, 2.64443892186967, 2.088292173423395, + 1.5607289386662044, 1.0896930959187963, 0.6956202554774481, + 0.3894218064770252, 0.1698676964946111, 0.029680475707484603, + -0.04463081082851336, -0.06729636073115948, -0.04945366614958851, + 2.7457119336843435e-5, 0.07654442189031828, 0.1768554989003857, + 0.2967858300068969, 0.430406851034774, 0.5682786407077659, + 0.6988544902336635, 0.8103321932385544, 0.8932502440992496, + 0.9422235326837042, 0.9578816800792604, 0.9459419955689092, + 0.915027056077783, 0.8751570219175103, 0.8338727871430299, + 0.7948871806328757, 0.7575927404783752, 0.7178771594185026, + 0.6703621854138626, 0.6109426809932438, 0.5386341810690588, + 0.4568797376725309, 0.3723602927719912, 0.29358292427506816, + 0.228175763659394, 0.18078591755002685, 0.1514866184528562, + 0.13652933138890996, 0.1295546582718683, 0.1240990829601473, + 0.11631133471500309, 0.10623087876385282, 0.09792876962576931, + 0.098060386964306, 0.1130863839864986, 0.1468066016730099, + 0.19814913653342, 0.2612554987309966, 0.32773241147541116, + 0.38985098864917633, 0.4454533558022898, 0.5016302511005682, + 0.5763954681371557, 0.6981167920758774, 0.9006113634521017, + 1.2171198186177776, 1.6746381071388634, 2.2823348977907516, + 3.0347432102069494 + ], + "pressure:J3:branch39_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch52_seg0": [ + 0.8679406784391086, 1.1011358277265446, 1.3462656396015744, + 1.5905979857951085, 1.8215264746817446, 2.0294540254588482, + 2.2086521029883057, 2.357639762579209, 2.4771362890841915, + 2.5705805918487976, 2.641748624146823, 2.6929326826715734, + 2.726195369128162, 2.7416397171061773, 2.7386483317389025, + 2.717336418147295, 2.6774838520763953, 2.6211486785919442, + 2.5511418871139497, 2.470513364090783, 2.3833264786224566, + 2.292224706214224, 2.19924272162572, 2.105476517824529, + 2.0111668748346787, 1.9166871170186683, 1.8227595838792192, + 1.7308247567346027, 1.6428788978286035, 1.5609831222554877, + 1.4862935495019243, 1.4185092617725894, 1.3553607257154703, + 1.292488444420474, 1.2244744104513334, 1.1457337539000945, + 1.0520221848475404, 0.9413827504651905, 0.8154637167651378, + 0.6788293460077831, 0.5385308315705498, 0.4031120852443895, + 0.28045640971861513, 0.17678629609543534, 0.09548284601413713, + 0.037594910807229646, 0.00047803906044251594, -0.018889529505968793, + -0.024665670647950888, -0.0206627316504165, -0.008936642385879065, + 0.008817442794916681, 0.03211632452979477, 0.06054765485954655, + 0.09289824120651342, 0.12742462133346483, 0.16132155401800863, + 0.1913988934212677, 0.21479545127798869, 0.22964554025210634, + 0.23540584286948102, 0.2331905004883414, 0.2253726606133416, + 0.21451213181160803, 0.2032160891015178, 0.19295261340126604, + 0.18390292407098094, 0.17516117469978254, 0.16513884413977245, + 0.15230184606684039, 0.13590768386813792, 0.11624163284844274, + 0.09492189876922233, 0.07414172505414021, 0.05624509542278959, + 0.04290601898406475, 0.03473254370225218, 0.03092598640241894, + 0.02988514800484473, 0.029667765597504767, 0.028679284492476257, + 0.026449314398749483, 0.023686004979693694, 0.02206807792047472, + 0.02363379087612132, 0.02991070954359219, 0.04130947023824975, + 0.05676990452515919, 0.07400223092748434, 0.09057610435594922, + 0.10478731372315062, 0.11709434406962874, 0.1308481198828106, + 0.15232389034905067, 0.1901505178709169, 0.2535486842208331, + 0.35020936999059593, 0.48592281972306034, 0.6598046813309106, + 0.8679406784391086 + ], + "pressure:J3:branch52_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch70_seg0": [ + 1.8193778783708163, 2.3162981198008006, 2.84264252129943, + 3.371147140369142, 3.8743559708443778, 4.330811625986205, + 4.727055250098649, 5.058700756888755, 5.326355917293565, + 5.536823180267386, 5.698069041760573, 5.815112858279494, + 5.892841297131569, 5.931690700022503, 5.930690151072129, + 5.8900341908143545, 5.8090853746482445, 5.692066520913285, + 5.54457313186008, 5.3732019954018035, 5.186538580174336, + 4.990509093098673, 4.789781280600873, 4.586969223083449, + 4.3828344045626455, 4.178218330570792, 3.974600481050209, + 3.7749184528811255, 3.5833498340696313, 3.40430363346014, + 3.2405002093297433, 3.0916693961715582, 2.953448184557505, + 2.8169490429027504, 2.6708455032195464, 2.5031040958627773, + 2.304295241073254, 2.06947086685508, 1.8014161003530784, + 1.5089790733435895, 1.2067723292040902, 0.9127854438335576, + 0.644138063584233, 0.41461827928004413, 0.2324234414654874, + 0.1003731038023289, 0.01375132781093878, -0.03358317515469394, + -0.05044129241812853, -0.045003723248878136, -0.02213121656541393, + 0.014305890822004372, 0.06300630222312896, 0.12297303250101778, + 0.19173206454768346, 0.2657133746359719, 0.33908266350926797, + 0.40508785333225933, 0.4574784403820526, 0.49199477445150774, + 0.5070508992036769, 0.504644227708478, 0.48954040085220574, + 0.4670963296385421, 0.44299698809297067, 0.420635224284927, + 0.4007544107104716, 0.38172638509868717, 0.3603221978039644, + 0.33326369187354987, 0.2987471407310548, 0.25713647293043845, + 0.21156848177539797, 0.1665758967985589, 0.12715889499330962, + 0.09709904355106286, 0.07796569224832231, 0.06841725475108969, + 0.0652610986073501, 0.06441402121540023, 0.062358447604341824, + 0.05782283363686019, 0.052003978384750245, 0.048243382005847345, + 0.05082886347086885, 0.06313841490597019, 0.08637022196450697, + 0.11860104063644901, 0.15523235868563695, 0.19112303465605907, + 0.2224078977182456, 0.24953930551848996, 0.27899684667405966, + 0.32350829146305266, 0.4010886335787575, 0.5312956863637036, + 0.7313011211915373, 1.0139531759687495, 1.3790507727925834, + 1.8193778783708163 + ], + "pressure:J3:branch70_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch79_seg0": [ + 1.3453754356996153, 1.7100711600543677, 2.0948558803909263, + 2.479627596315983, 2.844408495831115, 3.1738496989218805, + 3.458597409810326, 3.6959117884415984, 3.8866793099167993, + 4.036204093222547, 4.150296658136934, 4.2327650689503, 4.286977002206979, + 4.313195111344209, 4.310637369582192, 4.2793612672833925, + 4.21901704402046, 4.132674567819162, 4.0245103221827785, + 3.8993440614283466, 3.7634307039380306, 3.621003102737282, + 3.475374999694432, 3.328338356454603, 3.18036255855454, 3.032029468437579, + 2.884417798990852, 2.7397162299430353, 2.6010064295249906, + 2.471531364979193, 2.353218252025291, 2.2457956342872327, + 2.145913772285833, 2.0469572893423247, 1.9405322021931004, + 1.8178401057216982, 1.6720174765032176, 1.4996847362653596, + 1.303024021645052, 1.0887890366681303, 0.867849531749452, + 0.6534859201230465, 0.458221384363663, 0.2921064167280919, + 0.16091357338929177, 0.06654558867827466, 0.005294065210583412, + -0.027468925795207832, -0.03829328613903464, -0.033170882152961684, + -0.015572059644906393, 0.011732254653704914, 0.04790569857276704, + 0.09223614120997321, 0.1429091596512113, 0.19725631339757968, + 0.2509317378322778, 0.298953447478296, 0.33675546285637925, + 0.3612688696276962, 0.37145898606853894, 0.36892633259757035, + 0.35724272292939263, 0.3404343537664236, 0.3226471404231663, + 0.3063078428079544, 0.29186849976235846, 0.27803015980358486, + 0.26235393277505736, 0.2424103872858893, 0.2169208575591022, + 0.18621996726351778, 0.15270824030770136, 0.11977306981899481, + 0.09111748069803678, 0.06947213384096121, 0.05592465917179679, + 0.049375651754510703, 0.047407475892416145, 0.046966030672971816, + 0.04549003962481539, 0.04210641102972734, 0.03778624512890579, + 0.03507171270053271, 0.0371508778026223, 0.04649915459479592, + 0.06391401712344447, 0.08787631000646821, 0.11492145557561032, + 0.14121597868768912, 0.1639583835958273, 0.18361590867282235, + 0.20513474970475018, 0.23808226594650392, 0.29582804833807785, + 0.3928334418709925, 0.5415182974143693, 0.7511380101179834, + 1.0209950310671672, 1.3453754356996153 + ], + "pressure:J3:branch79_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch118_seg0": [ + 1.8541853174408005, 2.3875404666272244, 2.968209128999933, + 3.5665341172226173, 4.151655552681672, 4.696985929193465, + 5.183331312015349, 5.600502207666285, 5.9458665646982425, + 6.2237187265989204, 6.440963378520773, 6.604315136606779, + 6.719454901218609, 6.788559387105825, 6.8119446292173835, + 6.789513715921827, 6.720990339427429, 6.609578536738437, + 6.460304516701528, 6.280133327512009, 6.077805501294934, + 5.860709994259731, 5.635004045372404, 5.404648143109141, + 5.171616121518579, 4.937236629831374, 4.703076665726906, + 4.471928230496562, 4.247915580249704, 4.035774594306929, + 3.8391919064019477, 3.6592526959971234, 3.492944785778106, + 3.332623363799735, 3.167057961268257, 2.983337967198115, + 2.7698607213431705, 2.519057601530298, 2.230346630804875, + 1.9101583828372655, 1.5718769297698596, 1.233495454258236, + 0.9141442289530343, 0.6308190011073403, 0.3955310624061901, + 0.21449490525207485, 0.086375997630423, 0.006132870628350904, + -0.03472713706369533, -0.04505590464390224, -0.031681807759424946, + 0.00017541267524267827, 0.04778284583564575, 0.10933419611135563, + 0.18244659299838967, 0.26349287381299474, 0.3467921498514445, + 0.42533165383178995, 0.49195835718677916, 0.540957123360765, + 0.5692243451669052, 0.5772648215183177, 0.5686781649843914, + 0.5489003288308656, 0.5240457456282683, 0.4986917349693539, + 0.4750246810024133, 0.45253747569793046, 0.42861025643257644, + 0.3998880892409555, 0.36387103846906604, 0.3199950615708502, + 0.27044372219991286, 0.21938796739739017, 0.17205380597306477, + 0.13306629894702846, 0.10518053477231272, 0.08834018482858776, + 0.08010831524963354, 0.07653217416114111, 0.0736649480686821, + 0.06917363441287212, 0.06317257742414104, 0.05824510300070072, + 0.058509692670773245, 0.06793751822947192, 0.08877306800721298, + 0.12028229824982871, 0.15880839152808685, 0.19914196861360445, + 0.2365869069878336, 0.2699239875169244, 0.30363116202419843, + 0.3488871599077699, 0.4231426992225344, 0.5471611088843391, + 0.7410609117244735, 1.0213414631470474, 1.3935832853902748, + 1.8541853174408005 + ], + "pressure:J3:branch118_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch129_seg0": [ + 0.8124244385228222, 1.0388221087167917, 1.2816283038584473, + 1.5278923030271, 1.7650836516206365, 1.9827736512161562, 2.17398142472183, + 2.3353982156565567, 2.467344533390562, 2.5720057303702686, + 2.652580907813003, 2.712209939544956, 2.7526065807947693, + 2.7747208448983285, 2.778248388995725, 2.7629973986460574, + 2.729145535974743, 2.6779873465984876, 2.6120817074016514, + 2.534415231757911, 2.4487265705313255, 2.3580000334074254, + 2.264570753738573, 2.169801235791664, 2.074289246565716, + 1.9784669112175934, 1.8829944502361078, 1.7891436133922614, + 1.698724542091399, 1.6137310000336276, 1.535544317957728, + 1.4642807042499926, 1.3981962698289048, 1.3336824475148774, + 1.26565924624686, 1.1886965720991305, 1.0981343859868047, + 0.9915558254177047, 0.8692647463036588, 0.7350250505947914, + 0.5950058221254448, 0.4571378703099096, 0.3294054758770104, + 0.21860320784558931, 0.1288392061671065, 0.06212067958783324, + 0.016924170203046117, -0.00940155729159622, -0.020672925284529402, + -0.020613119489112215, -0.011844741699331262, 0.003757367591862538, + 0.02529937440817183, 0.05218732902396077, 0.08346433439691762, + 0.11742809261452039, 0.15160934356168068, 0.18298306818777485, + 0.20864220616725526, 0.22636008063618185, 0.23531485457779003, + 0.23603060675429802, 0.23034295472121652, 0.22080653384057583, + 0.20989365487786368, 0.19936184669354678, 0.18983376740329638, + 0.18076575744513723, 0.17084693778001658, 0.1585960701723356, + 0.14310327155688807, 0.12433016920593096, 0.10349100071387009, + 0.08253417153014027, 0.06372193055322029, 0.04885460595288589, + 0.038863572744636594, 0.03339856795104067, 0.031157183128293072, + 0.030354048053503314, 0.02939032433899237, 0.027469091993133708, + 0.02492285173737944, 0.02310331718419535, 0.023844903953682255, + 0.0288032244520081, 0.038629124185779726, 0.05273982746315537, + 0.06930839927279352, 0.08599512125361135, 0.1009766771891647, + 0.11416572867593681, 0.12804912575253138, 0.14798897640164246, + 0.18180511794768342, 0.23850805972185002, 0.32596979833639417, + 0.4507916392176276, 0.6138552615090389, 0.8124244385228222 + ], + "pressure:J3:branch129_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:J3:branch146_seg0": [ + 0.8281269295998592, 1.0565918356193322, 1.2996302356482108, + 1.544487049317601, 1.7783818798462683, 1.9912066311488497, 2.176498343815, + 2.3318862772886084, 2.457593940888803, 2.5566485149178466, + 2.632608467033778, 2.6880533413506345, 2.725226298025522, + 2.7444676148325953, 2.7454512198200125, 2.728135431187548, + 2.692297087067728, 2.639712200545597, 2.572823130684085, + 2.494702821782983, 2.4092087616348423, 2.3191447229136166, + 2.2267488919353493, 2.1332666839262107, 2.039119823244668, + 1.9446898846472116, 1.850619509406354, 1.7582152814125307, + 1.6693648752096486, 1.5861065095931592, 1.5097741465322132, + 1.4403845205616495, 1.3760613754171869, 1.3128819816110031, + 1.2456828649083118, 1.1688989488156838, 1.0780198503271414, + 0.9705917398201085, 0.8475591216799723, 0.7127599094095654, + 0.5727855240745341, 0.43583326908428255, 0.30991170749039765, + 0.20160274206020165, 0.11498568952577731, 0.051569809828247666, + 0.009491355438576168, -0.014015258776322802, -0.023027648513605437, + -0.021315388019685206, -0.011313733245505175, 0.0051244908844342825, + 0.027335956616835935, 0.05480811916496345, 0.08648266715317324, + 0.12073890504229039, 0.15493532966004853, 0.1859748109394452, + 0.21092168974892136, 0.2276955487350619, 0.23546077280583838, + 0.23502106184093402, 0.22845193250495066, 0.21826199211804304, + 0.20709183940279555, 0.19659867251922183, 0.18725075727975238, + 0.17837971238662795, 0.1685358544619865, 0.15618943946220165, + 0.1404311233995817, 0.12134433754401946, 0.10027811535060394, + 0.07928592552594385, 0.06069418822421761, 0.04631616090176996, + 0.03697438167401675, 0.032160795327174765, 0.03046704675262138, + 0.03000380206166571, 0.029113995112350115, 0.027108515624624817, + 0.02443998302916457, 0.02258658569925177, 0.023513328251499266, + 0.028842953815889118, 0.039225079120347964, 0.05388220301113596, + 0.07079189266409909, 0.08755836679765676, 0.10231421901205884, + 0.11509299965260975, 0.12866004170828219, 0.1486920802807112, + 0.18337168248281185, 0.2417420961929392, 0.3319364081199632, + 0.46004734837637273, 0.6264610813474418, 0.8281269295998592 + ], + "pressure:J3:branch146_seg0": [ + 9771.86540724502, 11227.272445444783, 12719.63641131926, + 14172.33567518528, 15518.869942149606, 16707.32218857556, + 17711.099865222008, 18533.340245713014, 19186.130148915126, + 19685.503282291207, 20063.985025456797, 20326.308255952827, + 20480.99666020775, 20531.24085841406, 20465.36853151661, + 20291.679308657964, 20007.824219707192, 19626.853931213926, + 19176.140906052486, 18667.982302297594, 18128.357536241874, + 17573.303094268893, 17009.21746582039, 16442.67435029377, + 15873.550564376033, 15304.033638157582, 14740.853584591345, + 14194.032299516983, 13676.489464265702, 13199.886835895333, + 12768.898907554976, 12375.663548651939, 12002.986321019253, + 11619.60661800051, 11190.569404315896, 10683.653659394935, + 10079.522860689935, 9371.33039516836, 8577.808901891547, + 7736.836912701943, 6891.788381652393, 6097.66867597734, 5399.692074230867, + 4829.602347729512, 4396.265849145025, 4105.252798429124, + 3932.1715460592327, 3852.9863505377084, 3849.2246357563067, + 3894.2679493934347, 3980.9521432079678, 4103.405005124387, + 4255.903952346725, 4439.020843179754, 4642.274752398863, + 4852.047307088993, 5051.283491841981, 5219.403482426425, + 5340.6560497203245, 5407.420682858008, 5420.637150055175, + 5388.658113716114, 5330.991002698791, 5261.555090287087, + 5194.061417331398, 5135.883359561252, 5084.017980605026, + 5030.463801683828, 4965.104920877149, 4879.3838217286875, + 4771.957569733579, 4646.732021707309, 4516.30222217747, 4395.6108293756, + 4297.4449438701395, 4229.616309716961, 4192.924197720992, + 4179.850268815262, 4177.815332666594, 4176.580755405289, + 4167.792150894796, 4151.377657364118, 4134.954948108233, + 4130.358449382914, 4149.811517653751, 4200.439940185214, + 4280.935953145391, 4382.419751655755, 4487.517642936444, + 4582.846643037068, 4661.9852424751525, 4733.638867406106, + 4825.705420748981, 4982.764835933238, 5261.0895394266145, + 5717.988071052226, 6387.618285173897, 7303.475803065959, + 8446.924665668736, 9771.86540724502 + ], + "flow:branch5_seg0:J4": [ + 12.01342237653506, 15.592573092974126, 19.673757910087687, + 24.107171371942265, 28.709618327640424, 33.29692064201669, + 37.7065037918993, 41.81484911015853, 45.53691488577024, 48.83415275745184, + 51.69595481937319, 54.12462525660274, 56.132505697355995, + 57.72318116975827, 58.89575870706679, 59.64989916537524, + 59.98331980900678, 59.911330124475725, 59.460184209448165, + 58.66873700034425, 57.59019447757026, 56.2757710268421, 54.77503050282823, + 53.128834645670956, 51.3678397564596, 49.51765381997681, + 47.60220571303812, 45.649249645497825, 43.69215874526704, + 41.76790311090928, 39.909339330767615, 38.13740006121667, + 36.45146987214081, 34.82343931023979, 33.20039020813038, + 31.511167294096573, 29.681178205584633, 27.64785800754398, + 25.3801761835279, 22.884382370477695, 20.20970920679119, + 17.44234679443215, 14.689287478030097, 12.062110284221493, + 9.658921772561799, 7.553874806025291, 5.7821200214939905, + 4.354081826544976, 3.2512683338417645, 2.441678966823457, + 1.893046928294643, 1.5726654268264566, 1.456826280318055, + 1.524808366959556, 1.7533376609322957, 2.1141654257753695, + 2.567831898445563, 3.0662552360263455, 3.5576054279579874, + 3.994005670523314, 4.338530798531113, 4.572927356174479, + 4.698112351863511, 4.729397519779681, 4.692868106491009, + 4.613423373050754, 4.508444691546087, 4.383754226667658, + 4.233421012194113, 4.044632276631294, 3.8050150329632904, + 3.509029460445412, 3.16404266877723, 2.788830653614348, + 2.4110659682960933, 2.059631862379127, 1.7575419197364872, + 1.5150622104722768, 1.329742292197813, 1.187996246208747, + 1.0716771548714528, 0.9667419339579754, 0.8687888577577431, + 0.785830106255304, 0.7360255115555853, 0.7405928093630639, + 0.8158112903893467, 0.9649717042408498, 1.175732565839672, + 1.42477627522211, 1.6862088529182588, 1.9471687677022513, + 2.221886758661205, 2.561326825899827, 3.0563315365481905, + 3.8270293089069773, 5.0053699566966205, 6.71763230284061, + 9.042274734869864, 12.01342237653506 + ], + "pressure:branch5_seg0:J4": [ + 9744.16229726736, 11194.599956806338, 12683.076757851146, + 14133.27148702075, 15478.767234731991, 16667.63447263888, + 17673.051391958026, 18497.787844948314, 19153.564990495306, + 19656.18379849312, 20037.966640520597, 20303.489529522343, + 20461.444670964902, 20514.88880741616, 20452.32148827052, + 20281.99643557901, 20001.430713206617, 19623.73357092128, + 19175.948930871666, 18670.432984337487, 18133.035766741046, + 17579.78759076062, 17017.18028709012, 16451.824510771305, + 15883.68021000542, 15314.959314180587, 14752.374103834318, + 14205.899387077008, 13688.421049979448, 13211.571310962203, + 12780.106289288511, 12386.293568330993, 12013.145245396845, + 11629.617712027943, 11200.969441384785, 10695.044395769328, + 10092.51891371846, 9386.303232703764, 8594.954721654663, + 7755.878940558139, 6912.223874063475, 6118.685341796551, + 5420.393522693644, 4849.050582419695, 4413.827273363895, + 4120.353741225783, 3944.635339868977, 3862.867030340297, + 3856.6415302924306, 3899.531203665495, 3984.2772000006726, + 4104.99940511467, 4255.947897855497, 4437.645612389175, 4639.675167777827, + 4848.494546890686, 5047.117682844224, 5215.043375938387, + 5336.516145197653, 5403.866943868288, 5417.889255965082, + 5386.811023416129, 5329.97707050948, 5261.187519072089, 5194.150451701324, + 5136.239494444195, 5084.547780182455, 5031.177206133867, 4966.08341457796, + 4880.752421281977, 4773.787334594608, 4649.040255426197, 4518.97997659345, + 4398.462355111709, 4300.226485350159, 4232.117495768742, + 4194.983100267256, 4181.436925039981, 4179.002882090576, + 4177.498489592714, 4168.578811700477, 4152.1188132032885, + 4135.632551208695, 4130.854934061877, 4149.95810032896, 4200.059446224051, + 4279.947778979987, 4380.843622232115, 4485.50752977499, 4580.618413565471, + 4659.713260129287, 4731.3335462445075, 4823.115141840556, + 4979.300186240946, 5255.892525202177, 5709.895689670558, + 6375.669163057067, 7286.583575651511, 8424.611486619271, 9744.16229726736 + ], + "flow:J4:branch6_seg0": [ + 9.96203999028784, 12.99516949029428, 16.504387255919095, + 20.369492009960307, 24.436283311035268, 28.54252377780184, + 32.5384334476356, 36.30341043359686, 39.75026803729962, 42.83255599775552, + 45.53064108682748, 47.84181521890379, 49.773861986476554, + 51.33011836705606, 52.511435475760806, 53.31695014833611, + 53.744891269093024, 53.80563892899215, 53.51857785421792, + 52.915643959414275, 52.040470792902916, 50.938253898080035, + 49.65400978294001, 48.22611617539057, 46.68475421629689, + 45.05463247241735, 43.35789591628008, 41.618848559088406, + 39.86614928349579, 38.13199209740735, 36.44666648797298, + 34.832068339027465, 33.29309359092391, 31.812030006947275, + 30.348689138450624, 28.84486006967294, 27.23557226532301, + 25.462476808077497, 23.490295585094017, 21.314155315144404, + 18.966740527678628, 16.5141807680862, 14.045249573797822, + 11.65729693674482, 9.44106837612504, 7.468381931731482, 5.781055434190854, + 4.3966294086822275, 3.3061982757942356, 2.4866645676603394, + 1.910271226055955, 1.5481266706506864, 1.3776402285670803, + 1.3789827734350064, 1.5318523411757152, 1.8122102459670522, + 2.1871974942977466, 2.6162321978264846, 3.0540695124121693, + 3.457035655726055, 3.7892313467367713, 4.0296914968033555, + 4.1736025221601105, 4.23034475941996, 4.220014035184075, + 4.164220915651895, 4.080123208552897, 3.975791451308772, + 3.8490425238943717, 3.690601166936986, 3.4896709302173825, + 3.2399192617627595, 2.944769013065141, 2.6178167950509783, + 2.281309781156459, 1.960350245355964, 1.676687404981401, + 1.4426159090008766, 1.259536883342223, 1.118356134923628, + 1.0045666983457657, 0.9050604253561486, 0.8136150076498511, + 0.7342240817406968, 0.6802971319963232, 0.6695845237459149, + 0.7176165464001627, 0.8303067391524391, 1.0008172638139663, + 1.2114550664862285, 1.4401232930371606, 1.6725658185541832, + 1.9147985052885375, 2.202798519404917, 2.6070486969986026, + 3.2261425376652757, 4.174603931469162, 5.565337004883307, + 7.479830670928358, 9.96203999028784 + ], + "pressure:J4:branch6_seg0": [ + 9744.16229726736, 11194.599956806338, 12683.076757851146, + 14133.27148702075, 15478.767234731991, 16667.63447263888, + 17673.051391958026, 18497.787844948314, 19153.564990495306, + 19656.18379849312, 20037.966640520597, 20303.489529522343, + 20461.444670964902, 20514.88880741616, 20452.32148827052, + 20281.99643557901, 20001.430713206617, 19623.73357092128, + 19175.948930871666, 18670.432984337487, 18133.035766741046, + 17579.78759076062, 17017.18028709012, 16451.824510771305, + 15883.68021000542, 15314.959314180587, 14752.374103834318, + 14205.899387077008, 13688.421049979448, 13211.571310962203, + 12780.106289288511, 12386.293568330993, 12013.145245396845, + 11629.617712027943, 11200.969441384785, 10695.044395769328, + 10092.51891371846, 9386.303232703764, 8594.954721654663, + 7755.878940558139, 6912.223874063475, 6118.685341796551, + 5420.393522693644, 4849.050582419695, 4413.827273363895, + 4120.353741225783, 3944.635339868977, 3862.867030340297, + 3856.6415302924306, 3899.531203665495, 3984.2772000006726, + 4104.99940511467, 4255.947897855497, 4437.645612389175, 4639.675167777827, + 4848.494546890686, 5047.117682844224, 5215.043375938387, + 5336.516145197653, 5403.866943868288, 5417.889255965082, + 5386.811023416129, 5329.97707050948, 5261.187519072089, 5194.150451701324, + 5136.239494444195, 5084.547780182455, 5031.177206133867, 4966.08341457796, + 4880.752421281977, 4773.787334594608, 4649.040255426197, 4518.97997659345, + 4398.462355111709, 4300.226485350159, 4232.117495768742, + 4194.983100267256, 4181.436925039981, 4179.002882090576, + 4177.498489592714, 4168.578811700477, 4152.1188132032885, + 4135.632551208695, 4130.854934061877, 4149.95810032896, 4200.059446224051, + 4279.947778979987, 4380.843622232115, 4485.50752977499, 4580.618413565471, + 4659.713260129287, 4731.3335462445075, 4823.115141840556, + 4979.300186240946, 5255.892525202177, 5709.895689670558, + 6375.669163057067, 7286.583575651511, 8424.611486619271, 9744.16229726736 + ], + "flow:J4:branch91_seg0": [ + 1.0110324641653636, 1.2819224334869819, 1.5664996325418146, + 1.8499440876868098, 2.117732166841171, 2.35879211648231, + 2.5665512925812664, 2.7392900322337748, 2.877983459894487, + 2.986504591674029, 3.069239443087194, 3.1288511912409005, + 3.1676270254545993, 3.185743304365816, 3.182434466138072, + 3.1578536614364685, 3.1117808747300213, 3.046581824032533, + 2.9655569499562677, 2.8722110284583215, 2.771246764084878, + 2.6657163413166463, 2.5579592378257474, 2.449236724365907, + 2.339834207953533, 2.230193048191126, 2.1211698855862315, + 2.0144491821783466, 1.912353356940343, 1.8172649261758378, + 1.7305183965117956, 1.6517348338966724, 1.5782620772093099, + 1.5050413789360155, 1.4257792291898967, 1.3340161670357882, + 1.2248563450833083, 1.0960799415088163, 0.9495935111063006, + 0.7907543252553916, 0.6277221856750583, 0.47040418184936206, + 0.3279356028484356, 0.20752185429904524, 0.11302717602986949, + 0.04570402164443462, 0.002446257587965809, -0.02024462400314852, + -0.027166968243922607, -0.022724824409156363, -0.00929257907322656, + 0.011191955598241331, 0.03814825608218732, 0.07109599124725983, + 0.10862174009255243, 0.1486598184396833, 0.18795879864326653, + 0.22280718102568461, 0.2498944164427649, 0.26705613326509975, + 0.27370504988174293, 0.2711201413497362, 0.26206418221693345, + 0.249511240317685, 0.2364581665602072, 0.22459558291150264, + 0.21411896078797998, 0.2039640443996712, 0.19228996458093944, + 0.17732559464217137, 0.1582306644477836, 0.13534659507120897, + 0.11056712048696331, 0.08644243415736207, 0.06568476402412501, + 0.0502211735614057, 0.040742673015996926, 0.0363139048885246, + 0.035063942444193474, 0.03475057798869453, 0.033540769854899274, + 0.030902061084528407, 0.027672500057271603, 0.025808884677478654, + 0.027667618439408893, 0.035014739134479354, 0.04829319892505216, + 0.06626754470883187, 0.08626973147997832, 0.10548417534191733, + 0.12196105845008735, 0.13627110301146864, 0.15234330185689413, + 0.17749149515471474, 0.2217506307096022, 0.2958254400795055, + 0.4085582852751677, 0.5666805291138854, 0.7690536869357355, + 1.0110324641653636 + ], + "pressure:J4:branch91_seg0": [ + 9744.16229726736, 11194.599956806338, 12683.076757851146, + 14133.27148702075, 15478.767234731991, 16667.63447263888, + 17673.051391958026, 18497.787844948314, 19153.564990495306, + 19656.18379849312, 20037.966640520597, 20303.489529522343, + 20461.444670964902, 20514.88880741616, 20452.32148827052, + 20281.99643557901, 20001.430713206617, 19623.73357092128, + 19175.948930871666, 18670.432984337487, 18133.035766741046, + 17579.78759076062, 17017.18028709012, 16451.824510771305, + 15883.68021000542, 15314.959314180587, 14752.374103834318, + 14205.899387077008, 13688.421049979448, 13211.571310962203, + 12780.106289288511, 12386.293568330993, 12013.145245396845, + 11629.617712027943, 11200.969441384785, 10695.044395769328, + 10092.51891371846, 9386.303232703764, 8594.954721654663, + 7755.878940558139, 6912.223874063475, 6118.685341796551, + 5420.393522693644, 4849.050582419695, 4413.827273363895, + 4120.353741225783, 3944.635339868977, 3862.867030340297, + 3856.6415302924306, 3899.531203665495, 3984.2772000006726, + 4104.99940511467, 4255.947897855497, 4437.645612389175, 4639.675167777827, + 4848.494546890686, 5047.117682844224, 5215.043375938387, + 5336.516145197653, 5403.866943868288, 5417.889255965082, + 5386.811023416129, 5329.97707050948, 5261.187519072089, 5194.150451701324, + 5136.239494444195, 5084.547780182455, 5031.177206133867, 4966.08341457796, + 4880.752421281977, 4773.787334594608, 4649.040255426197, 4518.97997659345, + 4398.462355111709, 4300.226485350159, 4232.117495768742, + 4194.983100267256, 4181.436925039981, 4179.002882090576, + 4177.498489592714, 4168.578811700477, 4152.1188132032885, + 4135.632551208695, 4130.854934061877, 4149.95810032896, 4200.059446224051, + 4279.947778979987, 4380.843622232115, 4485.50752977499, 4580.618413565471, + 4659.713260129287, 4731.3335462445075, 4823.115141840556, + 4979.300186240946, 5255.892525202177, 5709.895689670558, + 6375.669163057067, 7286.583575651511, 8424.611486619271, 9744.16229726736 + ], + "flow:J4:branch131_seg0": [ + 1.0403499220818566, 1.3154811691928616, 1.6028710216267739, + 1.8877352742951525, 2.1556028497639828, 2.395604747732534, + 2.6015190516824336, 2.772148644327879, 2.9086633885761493, + 3.015092168022288, 3.096074289458523, 3.1539588464580577, + 3.1910166854248576, 3.207319498336381, 3.201888765167928, + 3.17509535560266, 3.126647665183721, 3.0591093714510458, + 2.9760494052739794, 2.880882012471642, 2.7784769205824706, + 2.6718007874454264, 2.563061482062478, 2.4534817459144858, + 2.343251332209185, 2.2328282993683293, 2.123139911171826, + 2.0159519042310685, 1.9136561048309109, 1.8186460873261, + 1.7321544462828458, 1.6535968882925298, 1.5801142040075904, + 1.5063679243564878, 1.4259218404898568, 1.3322910573878448, + 1.2207495951783138, 1.089301257957665, 0.9402870873275785, + 0.7794727300778972, 0.6152464934375078, 0.4577618444965862, + 0.3161023013838378, 0.19729149317762604, 0.10482622040689159, + 0.039788852649376615, -0.001381670284828871, -0.02230295813410106, + -0.02776297370854882, -0.022260776427726628, -0.007931718688085763, + 0.013346800577528972, 0.04103779566878716, 0.0747296022772899, + 0.11286357966402771, 0.15329536136863434, 0.19267560550454954, + 0.22721585717417606, 0.2536414991030525, 0.26991388153215884, + 0.2755944019126002, 0.27211571802138773, 0.26244564748646637, + 0.24954152004203756, 0.2363959047467269, 0.2246068744873567, + 0.21420252220521027, 0.20399873095921386, 0.19208852371880247, + 0.17670551505213658, 0.15711343829812463, 0.1337636036114436, + 0.10870653522512579, 0.08457142440600836, 0.06407142311551045, + 0.04906044346175754, 0.040111841739089375, 0.036132396582875766, + 0.03514146641139663, 0.034889533296424066, 0.033569686670788135, + 0.03077944751729853, 0.0275013500506204, 0.02579713983712853, + 0.028060761119853284, 0.03599354648266968, 0.04990154506413207, + 0.06839742037957869, 0.08864557054572753, 0.10783703339396428, + 0.12412450143101084, 0.1383318461365996, 0.15474495151577355, + 0.18103681134019578, 0.2275322088399859, 0.30506133116219575, + 0.42220773995228966, 0.5856147688434195, 0.7933903770057685, + 1.0403499220818566 + ], + "pressure:J4:branch131_seg0": [ + 9744.16229726736, 11194.599956806338, 12683.076757851146, + 14133.27148702075, 15478.767234731991, 16667.63447263888, + 17673.051391958026, 18497.787844948314, 19153.564990495306, + 19656.18379849312, 20037.966640520597, 20303.489529522343, + 20461.444670964902, 20514.88880741616, 20452.32148827052, + 20281.99643557901, 20001.430713206617, 19623.73357092128, + 19175.948930871666, 18670.432984337487, 18133.035766741046, + 17579.78759076062, 17017.18028709012, 16451.824510771305, + 15883.68021000542, 15314.959314180587, 14752.374103834318, + 14205.899387077008, 13688.421049979448, 13211.571310962203, + 12780.106289288511, 12386.293568330993, 12013.145245396845, + 11629.617712027943, 11200.969441384785, 10695.044395769328, + 10092.51891371846, 9386.303232703764, 8594.954721654663, + 7755.878940558139, 6912.223874063475, 6118.685341796551, + 5420.393522693644, 4849.050582419695, 4413.827273363895, + 4120.353741225783, 3944.635339868977, 3862.867030340297, + 3856.6415302924306, 3899.531203665495, 3984.2772000006726, + 4104.99940511467, 4255.947897855497, 4437.645612389175, 4639.675167777827, + 4848.494546890686, 5047.117682844224, 5215.043375938387, + 5336.516145197653, 5403.866943868288, 5417.889255965082, + 5386.811023416129, 5329.97707050948, 5261.187519072089, 5194.150451701324, + 5136.239494444195, 5084.547780182455, 5031.177206133867, 4966.08341457796, + 4880.752421281977, 4773.787334594608, 4649.040255426197, 4518.97997659345, + 4398.462355111709, 4300.226485350159, 4232.117495768742, + 4194.983100267256, 4181.436925039981, 4179.002882090576, + 4177.498489592714, 4168.578811700477, 4152.1188132032885, + 4135.632551208695, 4130.854934061877, 4149.95810032896, 4200.059446224051, + 4279.947778979987, 4380.843622232115, 4485.50752977499, 4580.618413565471, + 4659.713260129287, 4731.3335462445075, 4823.115141840556, + 4979.300186240946, 5255.892525202177, 5709.895689670558, + 6375.669163057067, 7286.583575651511, 8424.611486619271, 9744.16229726736 + ], + "flow:branch6_seg0:J5": [ + 9.949951303199382, 12.982465486658521, 16.49157598243039, + 20.35748131540242, 24.425520597315643, 28.533271730018246, + 32.530741040250255, 36.29750505701614, 39.74555103138505, + 42.82896767759098, 45.528203367788585, 47.840111074980484, + 49.773186021391375, 51.33030518874553, 52.512528488093075, + 53.31907818384881, 53.747780658563514, 53.80931664523624, + 53.52277085880953, 52.92016932615898, 52.04521379278245, + 50.94307144291381, 49.65884544210082, 48.230974109091264, + 46.689612697070885, 45.05946853680482, 43.36263600285156, + 41.62337785869977, 39.87035807298907, 38.1358165763987, + 36.450095650453854, 34.835225441597636, 33.296240198053425, + 31.815401769877585, 30.352621225376357, 28.849575261253204, + 27.241239912999234, 25.468881899368178, 23.497380916913283, + 21.321420732794646, 18.97376356237416, 16.520575721038337, + 14.050684108851442, 11.661472499856268, 9.44410819395154, + 7.4702649480458945, 5.781963444837696, 4.396859771383335, + 3.305916339680465, 2.4859868580004543, 1.9093146816790343, + 1.5468590725153148, 1.3761297364017304, 1.3772931890573297, + 1.5300002060329458, 1.8104116321200314, 2.185599105008773, + 2.614987930989553, 3.053266678666779, 3.456775195179723, + 3.789355998508296, 4.03010834040659, 4.174222110978378, 4.230948604959996, + 4.220561762024133, 4.164698947727956, 4.080561081697213, + 3.9762862317320713, 3.8496784106198687, 3.6914381606190316, + 3.490674484239136, 3.2410310693137827, 2.9458714294689123, + 2.61877130897212, 2.282009094208138, 1.960776019803985, 1.676869941815149, + 1.4426263041458913, 1.2595120472643846, 1.1183916822671347, + 1.0046700535128155, 0.905208816795856, 0.813720773558285, + 0.7341619486517406, 0.6799967823399359, 0.6689800925078565, + 0.7168088057793252, 0.829399560247106, 0.9999269548303423, + 1.2107090152343227, 1.4395139588033694, 1.6719226462662826, + 1.9138072874087626, 2.201016337279936, 2.6040132732688623, + 3.2212893979269497, 4.167875529790003, 5.556478569392547, + 7.4690173931228445, 9.949951303199382 + ], + "pressure:branch6_seg0:J5": [ + 7871.842208222718, 8949.294638551746, 10124.060105396304, + 11345.641734743027, 12559.728794267188, 13717.19191800497, + 14781.067752541649, 15731.986660528248, 16558.072222026036, + 17260.05502994338, 17847.82946880565, 18323.43423122074, + 18693.79399941476, 18960.34455735097, 19119.70382809996, + 19174.823496939654, 19123.88278518456, 18973.923608170782, + 18738.203574039704, 18427.56476690557, 18059.708408675484, + 17648.866517684983, 17205.755211538555, 16739.547307542573, + 16255.239829999844, 15757.596012435715, 15252.484894245457, + 14747.556343775203, 14252.472203635964, 13777.308675611841, + 13329.152805509151, 12909.209995105031, 12511.843384315282, + 12121.810491087712, 11718.57602244337, 11278.981244221462, + 10783.644165644127, 10218.834195092815, 9585.644822438882, + 8897.09390384834, 8176.221035337789, 7456.305510918006, 6770.865657661741, + 6149.71915705807, 5613.156152234441, 5175.053160455033, 4833.509495927186, + 4581.750766376444, 4409.68125205351, 4302.427105861876, 4251.533156466107, + 4248.997867633374, 4289.037552068953, 4368.26962878947, 4479.480666603174, + 4614.030850483991, 4759.677183182877, 4901.7156218548225, + 5026.17355122247, 5122.583397176516, 5184.592506647285, 5212.158532413945, + 5212.152486007123, 5191.787039992079, 5160.601618952775, + 5125.636724264829, 5089.110835599318, 5049.571068595063, + 5002.625259602261, 4943.093018059291, 4868.089563142555, + 4777.775108429183, 4677.300357398314, 4574.742224159219, + 4479.129825981719, 4398.170456505191, 4336.208163065592, + 4292.584519908914, 4262.82578193487, 4240.979446510514, 4220.889656009761, + 4199.898396477684, 4179.511864713094, 4164.878314125422, + 4163.254193250557, 4180.707445753494, 4220.026292248248, + 4278.957270485133, 4349.695714118819, 4423.825463019443, + 4494.418797307068, 4561.612683938233, 4636.5046660943835, + 4742.049612017433, 4912.024715192156, 5185.658276301288, + 5597.579884372511, 6179.78351609905, 6940.745261840969, 7871.842208222718 + ], + "flow:J5:branch7_seg0": [ + 4.689906455136196, 6.150072052404489, 7.879286760188654, + 9.829693648252064, 11.932302127152077, 14.1080077124446, + 16.277677180462437, 18.37143151155885, 20.33348902051738, + 22.127290596701805, 23.73096877850288, 25.134448030426785, + 26.3355206068171, 27.33290172354485, 28.126036764959387, + 28.71361854880292, 29.094381810744853, 29.27170623005097, + 29.253042673036187, 29.05252281571169, 28.690103748884656, + 28.188371709812678, 27.57109305560169, 26.85991555964967, + 26.0731886012672, 25.22629967251223, 24.332728808434982, + 23.406126298234852, 22.461650098558472, 21.51612344254642, + 20.58618532127355, 19.685512293994364, 18.820685134311333, + 17.988100623922293, 17.17285844513939, 16.349854412599836, + 15.488114960594775, 14.55687475216627, 13.533383292024087, + 12.407686717461305, 11.187602668142167, 9.898111611635017, + 8.57809771741234, 7.274227145798818, 6.03397279505795, 4.898269863354606, + 3.8962624664877885, 3.044806260244323, 2.347131987970614, + 1.7975778804660771, 1.385240976284297, 1.0969309275372472, + 0.9208280517265375, 0.8458987595799501, 0.8613084318701099, + 0.9548144215069988, 1.1104616649788526, 1.3085402900528085, + 1.5263585777067323, 1.7407854242178318, 1.9311376792714012, + 2.082869347231564, 2.188775666537135, 2.2492284920840255, + 2.2708854736982955, 2.262980078734814, 2.234353621583229, + 2.190659634446571, 2.1330498572525958, 2.058849321628206, + 1.9635620493236872, 1.8436939328532234, 1.699345199602377, + 1.535288742935518, 1.3608588736510319, 1.1878578726617033, + 1.0277631539281782, 0.8887518584490324, 0.7742417892445261, + 0.6823593962243887, 0.6077235288071043, 0.5442039422838942, + 0.48771815383410405, 0.4383523506159707, 0.4007728558107668, + 0.3826022655281825, 0.391736187082058, 0.4327475105023591, + 0.5048765176648417, 0.6017717048707897, 0.7137315630433408, + 0.8326869549801363, 0.9580825184469488, 1.1022258557259152, + 1.2937078582845176, 1.5762321271414104, 2.00471439108108, + 2.6367015546136483, 3.52076486665611, 4.689906455136196 + ], + "pressure:J5:branch7_seg0": [ + 7871.842208222718, 8949.294638551746, 10124.060105396304, + 11345.641734743027, 12559.728794267188, 13717.19191800497, + 14781.067752541649, 15731.986660528248, 16558.072222026036, + 17260.05502994338, 17847.82946880565, 18323.43423122074, + 18693.79399941476, 18960.34455735097, 19119.70382809996, + 19174.823496939654, 19123.88278518456, 18973.923608170782, + 18738.203574039704, 18427.56476690557, 18059.708408675484, + 17648.866517684983, 17205.755211538555, 16739.547307542573, + 16255.239829999844, 15757.596012435715, 15252.484894245457, + 14747.556343775203, 14252.472203635964, 13777.308675611841, + 13329.152805509151, 12909.209995105031, 12511.843384315282, + 12121.810491087712, 11718.57602244337, 11278.981244221462, + 10783.644165644127, 10218.834195092815, 9585.644822438882, + 8897.09390384834, 8176.221035337789, 7456.305510918006, 6770.865657661741, + 6149.71915705807, 5613.156152234441, 5175.053160455033, 4833.509495927186, + 4581.750766376444, 4409.68125205351, 4302.427105861876, 4251.533156466107, + 4248.997867633374, 4289.037552068953, 4368.26962878947, 4479.480666603174, + 4614.030850483991, 4759.677183182877, 4901.7156218548225, + 5026.17355122247, 5122.583397176516, 5184.592506647285, 5212.158532413945, + 5212.152486007123, 5191.787039992079, 5160.601618952775, + 5125.636724264829, 5089.110835599318, 5049.571068595063, + 5002.625259602261, 4943.093018059291, 4868.089563142555, + 4777.775108429183, 4677.300357398314, 4574.742224159219, + 4479.129825981719, 4398.170456505191, 4336.208163065592, + 4292.584519908914, 4262.82578193487, 4240.979446510514, 4220.889656009761, + 4199.898396477684, 4179.511864713094, 4164.878314125422, + 4163.254193250557, 4180.707445753494, 4220.026292248248, + 4278.957270485133, 4349.695714118819, 4423.825463019443, + 4494.418797307068, 4561.612683938233, 4636.5046660943835, + 4742.049612017433, 4912.024715192156, 5185.658276301288, + 5597.579884372511, 6179.78351609905, 6940.745261840969, 7871.842208222718 + ], + "flow:J5:branch10_seg0": [ + 0.9505219750032828, 1.2310358804035406, 1.5454181776836375, + 1.8805219122090295, 2.221068894654334, 2.5527261514540616, + 2.863703090393386, 3.1460165519074286, 3.3948007776206093, + 3.60929194742853, 3.7903885189099755, 3.939516047849708, + 4.058633013639171, 4.148213593774045, 4.208360601334602, + 4.239014706895456, 4.239931088226809, 4.212595202821526, + 4.159202890114669, 4.083163218415051, 3.9888717424936018, + 3.880314120941244, 3.761206108289813, 3.6343265252784978, + 3.5015427756724633, 3.364347571061926, 3.2241784323484985, + 3.082929697940378, 2.943053268874391, 2.807315739503796, + 2.6780587772215787, 2.5565484766404167, 2.4421365960921246, + 2.3318595915732523, 2.2208576111616463, 2.102992628213272, + 1.9722514726318805, 1.8239977928147704, 1.6566859171343458, + 1.4718668211236918, 1.2747633204466553, 1.0732714721633616, + 0.8765029876703159, 0.6933139302802561, 0.530983812732716, + 0.39419011575096174, 0.28432340297116204, 0.20083354066931278, + 0.14092151280482443, 0.10122336599979273, 0.07875538745555646, + 0.0708138215443145, 0.0757789014877306, 0.09226823720050498, + 0.11868254860399657, 0.15299623667030646, 0.19212492975180426, + 0.23233666811932868, 0.26967244207666063, 0.3006805085383754, + 0.32290950401541474, 0.3356453210162777, 0.3396933579561395, + 0.3369110637250406, 0.3298736517756736, 0.32072485932223593, + 0.31076004011111535, 0.3001604523137676, 0.2880832974096911, + 0.2732084278547139, 0.25439383152046463, 0.23126244887453393, + 0.20461080669037007, 0.17619646448485946, 0.14844344373971738, + 0.12370907898790787, 0.10366524048009812, 0.08877819331182918, + 0.07843823667263705, 0.0711397053664484, 0.06516888783226531, + 0.0593674388062922, 0.05353519579003097, 0.04859150459073203, + 0.04627982166829839, 0.048442080452773637, 0.056362049917649065, + 0.07003134467953588, 0.0880985287946357, 0.10835570117847558, + 0.12854740157058184, 0.147762007612659, 0.1675721449788182, + 0.19270071268972844, 0.23110046848849322, 0.2927630112939784, + 0.38833451893820703, 0.5271409031788001, 0.7141551857143709, + 0.9505219750032828 + ], + "pressure:J5:branch10_seg0": [ + 7871.842208222718, 8949.294638551746, 10124.060105396304, + 11345.641734743027, 12559.728794267188, 13717.19191800497, + 14781.067752541649, 15731.986660528248, 16558.072222026036, + 17260.05502994338, 17847.82946880565, 18323.43423122074, + 18693.79399941476, 18960.34455735097, 19119.70382809996, + 19174.823496939654, 19123.88278518456, 18973.923608170782, + 18738.203574039704, 18427.56476690557, 18059.708408675484, + 17648.866517684983, 17205.755211538555, 16739.547307542573, + 16255.239829999844, 15757.596012435715, 15252.484894245457, + 14747.556343775203, 14252.472203635964, 13777.308675611841, + 13329.152805509151, 12909.209995105031, 12511.843384315282, + 12121.810491087712, 11718.57602244337, 11278.981244221462, + 10783.644165644127, 10218.834195092815, 9585.644822438882, + 8897.09390384834, 8176.221035337789, 7456.305510918006, 6770.865657661741, + 6149.71915705807, 5613.156152234441, 5175.053160455033, 4833.509495927186, + 4581.750766376444, 4409.68125205351, 4302.427105861876, 4251.533156466107, + 4248.997867633374, 4289.037552068953, 4368.26962878947, 4479.480666603174, + 4614.030850483991, 4759.677183182877, 4901.7156218548225, + 5026.17355122247, 5122.583397176516, 5184.592506647285, 5212.158532413945, + 5212.152486007123, 5191.787039992079, 5160.601618952775, + 5125.636724264829, 5089.110835599318, 5049.571068595063, + 5002.625259602261, 4943.093018059291, 4868.089563142555, + 4777.775108429183, 4677.300357398314, 4574.742224159219, + 4479.129825981719, 4398.170456505191, 4336.208163065592, + 4292.584519908914, 4262.82578193487, 4240.979446510514, 4220.889656009761, + 4199.898396477684, 4179.511864713094, 4164.878314125422, + 4163.254193250557, 4180.707445753494, 4220.026292248248, + 4278.957270485133, 4349.695714118819, 4423.825463019443, + 4494.418797307068, 4561.612683938233, 4636.5046660943835, + 4742.049612017433, 4912.024715192156, 5185.658276301288, + 5597.579884372511, 6179.78351609905, 6940.745261840969, 7871.842208222718 + ], + "flow:J5:branch53_seg0": [ + 0.8128937001632786, 1.0439074994178321, 1.2979031896334174, + 1.5642065909655403, 1.830596591578142, 2.0861487229955507, + 2.3224466383512827, 2.5346173149732882, 2.7195432734657095, + 2.8774679722446574, 3.0099495106885583, 3.1177195369224973, + 3.202478555232616, 3.264345759515207, 3.302986281501396, + 3.3187020504380067, 3.3111161754402088, 3.281821687293516, + 3.2330774080933407, 3.1675205555778083, 3.0889743615300898, + 3.0004310433545696, 2.9045416691752513, 2.8033257502099356, + 2.697959512808573, 2.589539088679389, 2.4792467281822232, + 2.3686956242294444, 2.2599529141809187, 2.1552405571761843, + 2.056202199700856, 1.9634069172798156, 1.8758371865888348, + 1.790451493690418, 1.7029757294276573, 1.6083631100810976, + 1.5021247063389305, 1.3810463285262504, 1.2449271678578704, + 1.0959827776487576, 0.9390983238586835, 0.7812515409279241, + 0.6297361245760171, 0.4912497352557512, 0.3708157035697623, + 0.2715264613547572, 0.19336426538639528, 0.13537236766018174, + 0.09505514706290893, 0.06942516174817645, 0.05649393895640305, + 0.05424662121375279, 0.0615918325812009, 0.07763307862785922, + 0.10089111207664626, 0.12965933804027077, 0.16128018592045343, + 0.19262705053754636, 0.22061510017728778, 0.24279009310249738, + 0.25755164483041587, 0.2647793199606807, 0.26566090317163144, + 0.26177522010102966, 0.25526987246821864, 0.24770359213830995, + 0.2397533665989165, 0.23125305138211427, 0.22130242312105783, + 0.2087771497243137, 0.19291629114388203, 0.17365226383790927, + 0.15197010385334758, 0.12949652358754693, 0.10823359052500761, + 0.08995056764024462, 0.07572594450469888, 0.06555043440027923, + 0.058636638120979176, 0.05366065827024232, 0.049239367885778436, + 0.0446900023428732, 0.04017024628039552, 0.03669107588648951, + 0.03580201220318583, 0.03889574746137222, 0.04674881573436481, + 0.058999026570624724, 0.0741540243865595, 0.09036638577969139, + 0.10596761387581154, 0.12071484533004466, 0.13663143150207444, + 0.15832191271888554, 0.19285909568521112, 0.24855961971691157, + 0.333534443754714, 0.45483535108312617, 0.6147679036937965, + 0.8128937001632786 + ], + "pressure:J5:branch53_seg0": [ + 7871.842208222718, 8949.294638551746, 10124.060105396304, + 11345.641734743027, 12559.728794267188, 13717.19191800497, + 14781.067752541649, 15731.986660528248, 16558.072222026036, + 17260.05502994338, 17847.82946880565, 18323.43423122074, + 18693.79399941476, 18960.34455735097, 19119.70382809996, + 19174.823496939654, 19123.88278518456, 18973.923608170782, + 18738.203574039704, 18427.56476690557, 18059.708408675484, + 17648.866517684983, 17205.755211538555, 16739.547307542573, + 16255.239829999844, 15757.596012435715, 15252.484894245457, + 14747.556343775203, 14252.472203635964, 13777.308675611841, + 13329.152805509151, 12909.209995105031, 12511.843384315282, + 12121.810491087712, 11718.57602244337, 11278.981244221462, + 10783.644165644127, 10218.834195092815, 9585.644822438882, + 8897.09390384834, 8176.221035337789, 7456.305510918006, 6770.865657661741, + 6149.71915705807, 5613.156152234441, 5175.053160455033, 4833.509495927186, + 4581.750766376444, 4409.68125205351, 4302.427105861876, 4251.533156466107, + 4248.997867633374, 4289.037552068953, 4368.26962878947, 4479.480666603174, + 4614.030850483991, 4759.677183182877, 4901.7156218548225, + 5026.17355122247, 5122.583397176516, 5184.592506647285, 5212.158532413945, + 5212.152486007123, 5191.787039992079, 5160.601618952775, + 5125.636724264829, 5089.110835599318, 5049.571068595063, + 5002.625259602261, 4943.093018059291, 4868.089563142555, + 4777.775108429183, 4677.300357398314, 4574.742224159219, + 4479.129825981719, 4398.170456505191, 4336.208163065592, + 4292.584519908914, 4262.82578193487, 4240.979446510514, 4220.889656009761, + 4199.898396477684, 4179.511864713094, 4164.878314125422, + 4163.254193250557, 4180.707445753494, 4220.026292248248, + 4278.957270485133, 4349.695714118819, 4423.825463019443, + 4494.418797307068, 4561.612683938233, 4636.5046660943835, + 4742.049612017433, 4912.024715192156, 5185.658276301288, + 5597.579884372511, 6179.78351609905, 6940.745261840969, 7871.842208222718 + ], + "flow:J5:branch63_seg0": [ + 1.877852769973916, 2.447129464598367, 3.096635399812738, + 3.8007773383084813, 4.5286854559169285, 5.249530743136166, + 5.9363599540279335, 6.569054761224366, 7.134569555919326, + 7.628050421275122, 8.04924279212852, 8.400458455498057, 8.685235317339632, + 8.90521130803325, 9.061113236621917, 9.152916102371679, 9.18032373349288, + 9.145628619921446, 9.052826842314413, 8.90846726632065, 8.721160283774386, + 8.499530763349993, 8.251805741966775, 7.984561839986614, + 7.702580204794761, 7.4095337591961705, 7.108713551840471, + 6.804028850916489, 6.500414701932671, 6.20356123868936, 5.918711698251269, + 5.649288186911144, 5.395174528796407, 5.151743249109335, 4.91009526292892, + 4.658183596130358, 4.3832959897115575, 4.074731401585075, + 3.727111058652494, 3.3413676380982915, 2.9259848613246864, + 2.495554110964662, 2.068349881081908, 1.6632488663959824, + 1.2967958939584094, 0.9808443020461238, 0.7209361777059268, + 0.5177162610689958, 0.3670052473715869, 0.26253842871562905, + 0.19785988432732293, 0.16704066046207275, 0.16590309704498837, + 0.19106601841912274, 0.2391512119836654, 0.3059752231796517, + 0.38553677000630476, 0.47036167701694703, 0.552179735424675, + 0.6232976256710211, 0.6777854843654555, 0.7129083075132895, + 0.7290956652455748, 0.7294069492673925, 0.7186796634175724, + 0.7015471645829807, 0.6813242575288285, 0.6591922187765058, + 0.6341620665459725, 0.6039185900787688, 0.5660602578287014, + 0.5193588356088314, 0.4647212287810749, 0.4051566367481709, + 0.34528027573750714, 0.2900290029417403, 0.24335709448092444, + 0.20709463914641865, 0.18078474108565493, 0.1619432764697066, + 0.14725804722364494, 0.13400758420573722, 0.12114152349836821, + 0.1098200811179952, 0.10307856266240324, 0.10462238794481614, + 0.11745626603608694, 0.14236633103508828, 0.17748047280179638, + 0.218814905390041, 0.2617669915869763, 0.30368619430529087, + 0.3463237752645214, 0.39756874017928306, 0.4720407706257757, + 0.5893955089098644, 0.7716839192611017, 1.0394814637879413, + 1.4064030657464304, 1.877852769973916 + ], + "pressure:J5:branch63_seg0": [ + 7871.842208222718, 8949.294638551746, 10124.060105396304, + 11345.641734743027, 12559.728794267188, 13717.19191800497, + 14781.067752541649, 15731.986660528248, 16558.072222026036, + 17260.05502994338, 17847.82946880565, 18323.43423122074, + 18693.79399941476, 18960.34455735097, 19119.70382809996, + 19174.823496939654, 19123.88278518456, 18973.923608170782, + 18738.203574039704, 18427.56476690557, 18059.708408675484, + 17648.866517684983, 17205.755211538555, 16739.547307542573, + 16255.239829999844, 15757.596012435715, 15252.484894245457, + 14747.556343775203, 14252.472203635964, 13777.308675611841, + 13329.152805509151, 12909.209995105031, 12511.843384315282, + 12121.810491087712, 11718.57602244337, 11278.981244221462, + 10783.644165644127, 10218.834195092815, 9585.644822438882, + 8897.09390384834, 8176.221035337789, 7456.305510918006, 6770.865657661741, + 6149.71915705807, 5613.156152234441, 5175.053160455033, 4833.509495927186, + 4581.750766376444, 4409.68125205351, 4302.427105861876, 4251.533156466107, + 4248.997867633374, 4289.037552068953, 4368.26962878947, 4479.480666603174, + 4614.030850483991, 4759.677183182877, 4901.7156218548225, + 5026.17355122247, 5122.583397176516, 5184.592506647285, 5212.158532413945, + 5212.152486007123, 5191.787039992079, 5160.601618952775, + 5125.636724264829, 5089.110835599318, 5049.571068595063, + 5002.625259602261, 4943.093018059291, 4868.089563142555, + 4777.775108429183, 4677.300357398314, 4574.742224159219, + 4479.129825981719, 4398.170456505191, 4336.208163065592, + 4292.584519908914, 4262.82578193487, 4240.979446510514, 4220.889656009761, + 4199.898396477684, 4179.511864713094, 4164.878314125422, + 4163.254193250557, 4180.707445753494, 4220.026292248248, + 4278.957270485133, 4349.695714118819, 4423.825463019443, + 4494.418797307068, 4561.612683938233, 4636.5046660943835, + 4742.049612017433, 4912.024715192156, 5185.658276301288, + 5597.579884372511, 6179.78351609905, 6940.745261840969, 7871.842208222718 + ], + "flow:J5:branch65_seg0": [ + 1.6187764029227094, 2.110320589834292, 2.6723324551119467, + 3.2822818256673076, 3.912867528014162, 4.536858399987868, + 5.130554177015215, 5.676384917352222, 6.163148403862029, + 6.586866739940872, 6.947653767558662, 7.247969004283431, + 7.491318528362855, 7.679632803878185, 7.814031603675778, + 7.894826775340746, 7.922027850658766, 7.897564905148785, + 7.824621045250918, 7.708495470133773, 7.556103656099709, + 7.374423805455316, 7.170198867067294, 6.9488444339665465, + 6.714341602527873, 6.469748445355093, 6.2177684820453845, + 5.961597387378596, 5.705287089442617, 5.453575598482955, + 5.210937654006591, 4.980469566771897, 4.762406752264728, + 4.553246811582282, 4.345834176718745, 4.130181514228645, + 3.8954527837220936, 3.6322316242758137, 3.33527348124448, + 3.004516778462603, 2.646314388601973, 2.2723869853473757, + 1.8979973981108615, 1.53943282212546, 1.2115399886327003, + 0.9254342055394474, 0.6870771322864228, 0.49813134174052254, + 0.35580244447053033, 0.25522202107077924, 0.19096449465545434, + 0.1578270417579276, 0.15202785356127316, 0.17042709522989294, + 0.20996690149852762, 0.2669664127228038, 0.3361955543513581, + 0.41112224526292274, 0.48444082328142346, 0.5492215436499971, + 0.5999716860256096, 0.6339060446847786, 0.6509965180678972, + 0.6536268797825078, 0.6458531006643721, 0.6317432529496136, + 0.6143697958751242, 0.5950208748131133, 0.5730807662905509, + 0.5466846713330292, 0.513742054422401, 0.4730635881392849, + 0.42522409054174215, 0.3726329412160247, 0.3191929105548737, + 0.2692294975723891, 0.22635850842124933, 0.19245117883833196, + 0.16741064214058723, 0.14928864593634864, 0.13528022176402255, + 0.12293984915705924, 0.11115565415538621, 0.1007069364405531, + 0.09406352999528167, 0.0944176111207119, 0.1045054870091663, + 0.1252553474594979, 0.15531741118250925, 0.191400318015325, + 0.2295003887266588, 0.26707264403815156, 0.3051974172163993, + 0.35019911596612396, 0.4143050801848647, 0.5143391308647849, + 0.6696082567549003, 0.8983192967290314, 1.212926371312136, + 1.6187764029227094 + ], + "pressure:J5:branch65_seg0": [ + 7871.842208222718, 8949.294638551746, 10124.060105396304, + 11345.641734743027, 12559.728794267188, 13717.19191800497, + 14781.067752541649, 15731.986660528248, 16558.072222026036, + 17260.05502994338, 17847.82946880565, 18323.43423122074, + 18693.79399941476, 18960.34455735097, 19119.70382809996, + 19174.823496939654, 19123.88278518456, 18973.923608170782, + 18738.203574039704, 18427.56476690557, 18059.708408675484, + 17648.866517684983, 17205.755211538555, 16739.547307542573, + 16255.239829999844, 15757.596012435715, 15252.484894245457, + 14747.556343775203, 14252.472203635964, 13777.308675611841, + 13329.152805509151, 12909.209995105031, 12511.843384315282, + 12121.810491087712, 11718.57602244337, 11278.981244221462, + 10783.644165644127, 10218.834195092815, 9585.644822438882, + 8897.09390384834, 8176.221035337789, 7456.305510918006, 6770.865657661741, + 6149.71915705807, 5613.156152234441, 5175.053160455033, 4833.509495927186, + 4581.750766376444, 4409.68125205351, 4302.427105861876, 4251.533156466107, + 4248.997867633374, 4289.037552068953, 4368.26962878947, 4479.480666603174, + 4614.030850483991, 4759.677183182877, 4901.7156218548225, + 5026.17355122247, 5122.583397176516, 5184.592506647285, 5212.158532413945, + 5212.152486007123, 5191.787039992079, 5160.601618952775, + 5125.636724264829, 5089.110835599318, 5049.571068595063, + 5002.625259602261, 4943.093018059291, 4868.089563142555, + 4777.775108429183, 4677.300357398314, 4574.742224159219, + 4479.129825981719, 4398.170456505191, 4336.208163065592, + 4292.584519908914, 4262.82578193487, 4240.979446510514, 4220.889656009761, + 4199.898396477684, 4179.511864713094, 4164.878314125422, + 4163.254193250557, 4180.707445753494, 4220.026292248248, + 4278.957270485133, 4349.695714118819, 4423.825463019443, + 4494.418797307068, 4561.612683938233, 4636.5046660943835, + 4742.049612017433, 4912.024715192156, 5185.658276301288, + 5597.579884372511, 6179.78351609905, 6940.745261840969, 7871.842208222718 + ], + "flow:branch7_seg0:J6": [ + 4.686682977228516, 6.146464277040986, 7.8754292131214685, + 9.825796438303085, 11.928521117387467, 14.104467764218311, + 16.27447104112649, 18.368638596569777, 20.33107227014303, + 22.12525877976125, 23.72930451770933, 25.133111979178707, + 26.334528005163218, 27.332235728757823, 28.125706557803134, + 28.71362677020858, 29.09471072984067, 29.27234289281707, + 29.253929102501345, 29.053613379551415, 28.691358918743234, + 28.189738791435612, 27.57254468922618, 26.861431546834762, + 26.074751445961724, 25.22789707981896, 24.33433779538992, + 23.40771816180586, 22.463192168164515, 21.517590152051607, + 20.58755601550798, 19.68679925932443, 18.82192424367216, + 17.989343675261395, 17.17418114635783, 16.35133033106819, + 15.489795563617045, 14.55877742194642, 13.535498548244256, + 12.40994200550187, 11.189907275686338, 9.90036356753866, + 8.580186767072654, 7.276060387716406, 6.035519902258234, + 4.899500334668598, 3.897177629286376, 3.045463074616958, 2.3475571873807, + 1.7978096551040768, 1.3853180073337557, 1.0968549018064344, + 0.9206278747546947, 0.8455899203572206, 0.8609038290388633, + 0.9543590073116338, 1.1099956355742036, 1.3081085209771504, + 1.5260023284286295, 1.7405371545251536, 1.9309973647128411, + 2.082831031917137, 2.188817393831513, 2.2493154124668546, + 2.2709951177998295, 2.2630961584469484, 2.234473018309283, + 2.19079447838613, 2.1332169877138503, 2.059064306189028, + 1.9638265667713202, 1.8440007031967873, 1.6996749485554035, + 1.5356088348941832, 1.3611411162226295, 1.1880840525369696, + 1.0279290026720294, 0.8888604347609915, 0.7743181210062112, + 0.682423792513526, 0.6077869035625342, 0.5442706485546652, + 0.4877769881621878, 0.4383813163137312, 0.40074985611204234, + 0.3825095183339028, 0.3915768995780308, 0.4325359712009153, + 0.5046394546517846, 0.6015392400768222, 0.7135157380204853, + 0.8324704838412261, 0.9578107861027102, 1.1018079501179472, + 1.2930252124207733, 1.5751440898338376, 2.003143007949845, + 2.634569385448272, 3.5180256279209834, 4.686682977228516 + ], + "pressure:branch7_seg0:J6": [ + 7376.099635775394, 8341.51184448345, 9414.804155407825, + 10553.536221440429, 11709.228576922165, 12835.606116941757, + 13894.979765307025, 14863.534139296806, 15724.437703688629, + 16473.2838560184, 17113.981324744123, 17646.686078213173, + 18076.346345795257, 18403.897826430133, 18627.057223959306, + 18747.743903522372, 18764.43323955757, 18682.41023545408, + 18512.021009841526, 18262.936052513895, 17950.45663154577, + 17587.94284040075, 17186.470016265142, 16755.66547815911, + 16301.717259504974, 15830.143168792922, 15346.907778697812, + 14859.258958627785, 14376.08590058451, 13906.894808436466, + 13459.084232593306, 13035.625404835566, 12633.60231215911, + 12241.85656900762, 11843.84103166038, 11419.555965891546, + 10950.723488261794, 10422.988108845082, 9833.607310004558, + 9190.069927424962, 8509.628258910327, 7819.349292713638, + 7148.534718925026, 6525.1476448721905, 5970.61145828518, + 5500.655836474293, 5118.369015500826, 4821.381893091253, + 4602.843009849522, 4451.346418077952, 4359.113628308047, + 4318.413265342937, 4323.471118734242, 4370.216609824659, 4452.09657246944, + 4561.428929775311, 4687.345944718452, 4816.7375918175285, + 4936.500162999538, 5035.9076444131315, 5107.373740465216, + 5148.750911589304, 5163.827753070684, 5157.741249031646, + 5138.287062661806, 5111.899178254581, 5081.550255187789, + 5047.142445343987, 5005.787112527112, 4953.415234662467, + 4887.241294940182, 4806.777416116981, 4715.541814360145, + 4619.853905301308, 4527.44022093719, 4445.499042808685, 4378.844666000338, + 4328.268382237337, 4291.202785087908, 4263.128254254388, + 4238.861129814419, 4215.536469699506, 4193.500373695992, + 4176.312244096763, 4169.75094845698, 4179.2408232125, 4208.024274884116, + 4255.28255910685, 4315.482082271095, 4381.7895584082125, 4447.80465370903, + 4512.243205572105, 4582.57327939574, 4676.495674935307, 4821.728554354145, + 5052.162424002069, 5400.353290803363, 5897.13794991051, + 6555.9895067219095, 7376.099635775394 + ], + "flow:J6:branch8_seg0": [ + 0.8399025198139493, 1.0955009244047746, 1.3893683982829699, + 1.710791625319776, 2.0463613287900526, 2.382345168097092, + 2.706372050903863, 3.0088160821843606, 3.282952728182578, + 3.5257144546380026, 3.7361148436538, 3.9144693313391645, + 4.061873070693091, 4.178733613118815, 4.26522797149936, 4.321263992185509, + 4.346657819070802, 4.342367383960479, 4.310069888290268, + 4.2526139258210005, 4.173791539906536, 4.077463336375901, + 3.967415725095364, 3.846769253417803, 3.717894433883727, + 3.5826818012617734, 3.442820627870484, 3.3002348507945634, + 3.1572650006833753, 3.0165743132554304, 2.8806410543973424, + 2.751189287811947, 2.6284164103979344, 2.510542277523267, + 2.3938794897022184, 2.2732556042281806, 2.143059379375139, + 1.998402624356061, 1.8365928389279662, 1.6576019282275314, + 1.4647318317681874, 1.2640527357176845, 1.0634180518698018, + 0.8711740287985476, 0.6948900642212751, 0.5402200107658072, + 0.41017652699808765, 0.30565040625552575, 0.22530021928939162, + 0.16676081826780628, 0.12742011122059527, 0.10472839273073994, + 0.09682769204788715, 0.10212445180119864, 0.11901053749130869, + 0.1455510967244929, 0.17900410341472217, 0.21598089243672317, + 0.25271046182662277, 0.28562142337493535, 0.31184815340721767, + 0.32989801320383877, 0.33965277373879965, 0.34218424571317085, + 0.33942819211789416, 0.3333248453994764, 0.32533608923034874, + 0.31606282459977547, 0.30518331439007634, 0.2917828578992424, + 0.27486032875554356, 0.25387668747955155, 0.22918026856784035, + 0.20202092420679207, 0.1743789188219655, 0.1484259245320523, + 0.1259670878953238, 0.1079289756232921, 0.09427300320152238, + 0.08405051464084216, 0.0759037628667123, 0.06867199349102299, + 0.061857984543987346, 0.05589407158192711, 0.05203441935064924, + 0.05186096136201099, 0.05671319971902037, 0.0670115213038553, + 0.08204753482909823, 0.10017662168493861, 0.11942293040132154, + 0.13857968860118125, 0.1582830177591245, 0.1818113384257223, + 0.21541194098691027, 0.26763924969354824, 0.3483153665648074, + 0.46679158365323403, 0.6295998821450006, 0.8399025198139493 + ], + "pressure:J6:branch8_seg0": [ + 7376.099635775394, 8341.51184448345, 9414.804155407825, + 10553.536221440429, 11709.228576922165, 12835.606116941757, + 13894.979765307025, 14863.534139296806, 15724.437703688629, + 16473.2838560184, 17113.981324744123, 17646.686078213173, + 18076.346345795257, 18403.897826430133, 18627.057223959306, + 18747.743903522372, 18764.43323955757, 18682.41023545408, + 18512.021009841526, 18262.936052513895, 17950.45663154577, + 17587.94284040075, 17186.470016265142, 16755.66547815911, + 16301.717259504974, 15830.143168792922, 15346.907778697812, + 14859.258958627785, 14376.08590058451, 13906.894808436466, + 13459.084232593306, 13035.625404835566, 12633.60231215911, + 12241.85656900762, 11843.84103166038, 11419.555965891546, + 10950.723488261794, 10422.988108845082, 9833.607310004558, + 9190.069927424962, 8509.628258910327, 7819.349292713638, + 7148.534718925026, 6525.1476448721905, 5970.61145828518, + 5500.655836474293, 5118.369015500826, 4821.381893091253, + 4602.843009849522, 4451.346418077952, 4359.113628308047, + 4318.413265342937, 4323.471118734242, 4370.216609824659, 4452.09657246944, + 4561.428929775311, 4687.345944718452, 4816.7375918175285, + 4936.500162999538, 5035.9076444131315, 5107.373740465216, + 5148.750911589304, 5163.827753070684, 5157.741249031646, + 5138.287062661806, 5111.899178254581, 5081.550255187789, + 5047.142445343987, 5005.787112527112, 4953.415234662467, + 4887.241294940182, 4806.777416116981, 4715.541814360145, + 4619.853905301308, 4527.44022093719, 4445.499042808685, 4378.844666000338, + 4328.268382237337, 4291.202785087908, 4263.128254254388, + 4238.861129814419, 4215.536469699506, 4193.500373695992, + 4176.312244096763, 4169.75094845698, 4179.2408232125, 4208.024274884116, + 4255.28255910685, 4315.482082271095, 4381.7895584082125, 4447.80465370903, + 4512.243205572105, 4582.57327939574, 4676.495674935307, 4821.728554354145, + 5052.162424002069, 5400.353290803363, 5897.13794991051, + 6555.9895067219095, 7376.099635775394 + ], + "flow:J6:branch15_seg0": [ + 3.846780457414567, 5.050963352636209, 6.486060814838499, 8.11500481298331, + 9.882159788597416, 11.722122596121219, 13.568098990222625, + 15.359822514385424, 17.048119541960453, 18.59954432512325, + 19.993189674055536, 21.21864264783954, 22.272654934470125, + 23.15350211563901, 23.860478586303774, 24.39236277802307, + 24.748052910769864, 24.929975508856593, 24.943859214211077, + 24.80099945373041, 24.517567378836695, 24.11227545505972, + 23.605128964130813, 23.01466229341697, 22.35685701207799, + 21.645215278557192, 20.89151716751944, 20.107483311011297, + 19.30592716748113, 18.50101583879618, 17.706914961110638, + 16.93560997151248, 16.19350783327423, 15.478801397738124, + 14.780301656655617, 14.078074726840011, 13.346736184241907, + 12.560374797590361, 11.698905709316291, 10.752340077274342, + 9.725175443918149, 8.636310831820975, 7.516768715202851, + 6.404886358917859, 5.340629838036961, 4.359280323902793, + 3.4870011022882887, 2.739812668361432, 2.1222569680913077, + 1.6310488368362708, 1.2578978961131602, 0.9921265090756943, + 0.8238001827068073, 0.7434654685560219, 0.7418932915475547, + 0.8088079105871414, 0.9309915321594814, 1.092127628540427, + 1.2732918666020066, 1.4549157311502185, 1.6191492113056232, + 1.752933018713298, 1.8491646200927134, 1.907131166753684, + 1.9315669256819357, 1.9297713130474718, 1.9091369290789335, + 1.8747316537863545, 1.8280336733237743, 1.7672814482897856, + 1.6889662380157764, 1.5901240157172356, 1.4704946799875636, + 1.3335879106873905, 1.1867621974006637, 1.0396581280049177, + 0.9019619147767053, 0.7809314591376992, 0.6800451178046889, + 0.5983732778726839, 0.531883140695822, 0.47559865506364224, + 0.42591900361820045, 0.38248724473180423, 0.34871543676139305, + 0.3306485569718918, 0.33486369985901043, 0.36552444989706, + 0.4225919198226864, 0.5013626183918837, 0.5940928076191637, + 0.6938907952400446, 0.7995277683435856, 0.9199966116922247, + 1.0776132714338627, 1.3075048401402893, 1.6548276413850378, + 2.167777801795037, 2.8884257457759834, 3.846780457414567 + ], + "pressure:J6:branch15_seg0": [ + 7376.099635775394, 8341.51184448345, 9414.804155407825, + 10553.536221440429, 11709.228576922165, 12835.606116941757, + 13894.979765307025, 14863.534139296806, 15724.437703688629, + 16473.2838560184, 17113.981324744123, 17646.686078213173, + 18076.346345795257, 18403.897826430133, 18627.057223959306, + 18747.743903522372, 18764.43323955757, 18682.41023545408, + 18512.021009841526, 18262.936052513895, 17950.45663154577, + 17587.94284040075, 17186.470016265142, 16755.66547815911, + 16301.717259504974, 15830.143168792922, 15346.907778697812, + 14859.258958627785, 14376.08590058451, 13906.894808436466, + 13459.084232593306, 13035.625404835566, 12633.60231215911, + 12241.85656900762, 11843.84103166038, 11419.555965891546, + 10950.723488261794, 10422.988108845082, 9833.607310004558, + 9190.069927424962, 8509.628258910327, 7819.349292713638, + 7148.534718925026, 6525.1476448721905, 5970.61145828518, + 5500.655836474293, 5118.369015500826, 4821.381893091253, + 4602.843009849522, 4451.346418077952, 4359.113628308047, + 4318.413265342937, 4323.471118734242, 4370.216609824659, 4452.09657246944, + 4561.428929775311, 4687.345944718452, 4816.7375918175285, + 4936.500162999538, 5035.9076444131315, 5107.373740465216, + 5148.750911589304, 5163.827753070684, 5157.741249031646, + 5138.287062661806, 5111.899178254581, 5081.550255187789, + 5047.142445343987, 5005.787112527112, 4953.415234662467, + 4887.241294940182, 4806.777416116981, 4715.541814360145, + 4619.853905301308, 4527.44022093719, 4445.499042808685, 4378.844666000338, + 4328.268382237337, 4291.202785087908, 4263.128254254388, + 4238.861129814419, 4215.536469699506, 4193.500373695992, + 4176.312244096763, 4169.75094845698, 4179.2408232125, 4208.024274884116, + 4255.28255910685, 4315.482082271095, 4381.7895584082125, 4447.80465370903, + 4512.243205572105, 4582.57327939574, 4676.495674935307, 4821.728554354145, + 5052.162424002069, 5400.353290803363, 5897.13794991051, + 6555.9895067219095, 7376.099635775394 + ], + "flow:branch8_seg0:J7": [ + 0.8391819800462726, 1.0946782533078003, 1.3884716150225251, + 1.7098648511849628, 2.045441121006951, 2.38146327135352, + 2.705554323074953, 3.0080835835441255, 3.2823058423914784, + 3.5251572548867327, 3.735645567806374, 3.914082425417196, + 4.0615702882212315, 4.178512471454047, 4.265090170392222, + 4.321209467964901, 4.346684337172796, 4.342472011856807, 4.31024048085897, + 4.252840837177847, 4.174065313735295, 4.077771481122822, + 3.967750945272265, 3.847125403593722, 3.7182664657050783, + 3.5830660271041923, 3.4432114405797223, 3.3006256094096558, + 3.1576481304481936, 3.0169432371320375, 2.8809901772134316, + 2.751519410892096, 2.6287334340375006, 2.510856349320212, + 2.3942064119223345, 2.27361194445897, 2.143457868090019, + 1.998850535362623, 1.8370901901106569, 1.6581364070136022, + 1.4652855512204699, 1.2646036422871758, 1.0639412576851246, + 0.8716471821015256, 0.6953027677450543, 0.5405624753700227, + 0.4104456505424849, 0.3058560135626157, 0.225446601220042, + 0.16685630666182905, 0.12747320315351443, 0.10474060016505524, + 0.09680582780353905, 0.10207239453052853, 0.11893177865273151, + 0.14545504845709553, 0.1788999532705541, 0.2158790013946891, + 0.2526210485798618, 0.28555266176317895, 0.311802683337824, + 0.3298759730712516, 0.33965044897712393, 0.3421952768169098, + 0.3394473956301235, 0.33334802171934813, 0.3253617585168555, + 0.31609266187917767, 0.30522040696871405, 0.29183050854996057, + 0.2749193611232181, 0.25394614481622835, 0.22925664093184603, + 0.20209752369378167, 0.1744494956154759, 0.14848578058727252, + 0.12601419935608965, 0.10796300958432441, 0.0942983283736846, + 0.08407120845061485, 0.07592253048845445, 0.06869041665099293, + 0.061874426507268765, 0.05590444632092788, 0.052033946996350354, + 0.05184558445318221, 0.05668237252666531, 0.066967483604256, + 0.08199553402820661, 0.10012294680994788, 0.11937101323068051, + 0.13852730711887176, 0.15822014325220526, 0.18171966282645133, + 0.2152663633598821, 0.26740862380369645, 0.34797952383443226, + 0.46633071450936187, 0.6289987036721437, 0.8391819800462726 + ], + "pressure:branch8_seg0:J7": [ + 7221.520036981491, 8154.935045261428, 9200.068503848961, + 10316.369041567124, 11456.450764671206, 12574.383038600208, + 13631.8959355664, 14603.583998557131, 15471.159010476287, + 16229.081628778758, 16879.689618444812, 17423.162853912338, + 17864.25041100444, 18203.951189626034, 18440.582393815414, + 18575.65298651496, 18607.77799847949, 18541.659244528957, + 18386.614023708276, 18152.152167172142, 17852.888045944055, + 17502.01205929759, 17110.87731121792, 16689.244171494593, + 16243.64894284509, 15779.745215574128, 15303.37687911611, + 14821.557639070463, 14342.868727827627, 13876.638473300252, + 13430.401664455088, 13007.777355420816, 12606.690836409949, + 12217.215740135493, 11823.897303765036, 11407.465946488985, + 10949.666232284597, 10435.729794274086, 9861.526738974437, + 9232.776205631655, 8565.15639023996, 7884.077111733274, 7217.920153933474, + 6594.477380898816, 6035.916723317854, 5558.559298879143, + 5167.083832746602, 4860.346301017826, 4632.047259999835, + 4471.641977849583, 4371.191285078042, 4322.809728214625, + 4320.7189176251895, 4360.55825095276, 4436.082390180548, 4539.99459086834, + 4661.861180971113, 4789.065200466395, 4908.703654940329, + 5009.867792584887, 5084.521978952453, 5129.892410292608, + 5148.849835293642, 5146.082703966737, 5129.056634123102, + 5104.200643682489, 5074.888915199153, 5041.509232298514, + 5001.604026398257, 4951.350768194558, 4887.845228904688, + 4810.304218608842, 4721.677566546338, 4627.75639349163, 4535.972551964124, + 4453.496056387033, 4385.397527936769, 4332.971251522611, + 4294.246569563439, 4265.016618947008, 4240.266067321407, + 4216.923561783319, 4194.869878291456, 4177.1589455977455, + 4169.17864688805, 4176.283725282649, 4201.9969088594125, + 4246.019301665118, 4303.542784885833, 4368.106854603073, + 4433.287197091559, 4497.157455930462, 4565.904023661696, + 4655.567247315199, 4792.108855264055, 5008.0030227237685, + 5335.691858260733, 5805.848326207264, 6433.815041132781, 7221.520036981491 + ], + "flow:J7:branch9_seg0": [ + 0.41458133627477967, 0.5412102580908816, 0.6871674202567071, + 0.8471872943766459, 1.014641724490045, 1.1826795677266342, + 1.3450805836490638, 1.4969525766316387, 1.6348584319865613, + 1.757168575828531, 1.8633184595153824, 1.9534348175657308, + 2.0280382047337415, 2.0873437120370486, 2.1314496191147514, + 2.160311588277331, 2.173841316861759, 2.1724905808123256, + 2.157078507723183, 2.129002379054708, 2.090132188735374, + 2.0423988268557784, 1.9876991992089341, 1.9276107030827947, + 1.863340589173967, 1.7958479621793277, 1.7259847697880015, + 1.654709093838776, 1.5831817751432355, 1.5127266739410694, + 1.4445881407649552, 1.3796475596844304, 1.3180406627552892, + 1.2589298126713284, 1.200519301763677, 1.1402614436469807, + 1.0753633095698503, 1.0033640835166142, 0.9228623269540832, + 0.8337753946856686, 0.737671257119041, 0.637510343785037, + 0.5371726428149995, 0.4408177551160545, 0.35224539251965437, + 0.27433048752341516, 0.20865078178466323, 0.1557021875653786, + 0.11487381746073137, 0.08501443240746762, 0.06482225984320546, + 0.05302518440378307, 0.048675645505550404, 0.050967499572621824, + 0.05909992738435524, 0.07211067177283727, 0.08864861249006974, + 0.10703766592263635, 0.12540198840806097, 0.1419513015224221, + 0.15523547353592537, 0.1644746538127789, 0.1695713449389481, + 0.17103120430999466, 0.1697985122654998, 0.16684049566700535, + 0.16290023381748364, 0.15829949550259856, 0.1529013384613992, + 0.14626470953905962, 0.13789280070846177, 0.12750526943587656, + 0.11525334320392082, 0.10173933155486194, 0.087933846336365, + 0.07491632859083652, 0.06359742391229788, 0.054463271924955974, + 0.04751891471801622, 0.04231334942231408, 0.03818101078059029, + 0.03453684871974243, 0.03111603625903914, 0.028111321648787182, + 0.026128042272691183, 0.025947571286077383, 0.028244777268255156, + 0.0332517442959492, 0.04064420868935413, 0.04962415476276383, + 0.05921353613264065, 0.06879170893690256, 0.07863047142298452, + 0.09030173881902127, 0.10685173733267661, 0.13249785484614168, + 0.1721139446237007, 0.2303826959815143, 0.3106526382127986, + 0.41458133627477967 + ], + "pressure:J7:branch9_seg0": [ + 7221.520036981491, 8154.935045261428, 9200.068503848961, + 10316.369041567124, 11456.450764671206, 12574.383038600208, + 13631.8959355664, 14603.583998557131, 15471.159010476287, + 16229.081628778758, 16879.689618444812, 17423.162853912338, + 17864.25041100444, 18203.951189626034, 18440.582393815414, + 18575.65298651496, 18607.77799847949, 18541.659244528957, + 18386.614023708276, 18152.152167172142, 17852.888045944055, + 17502.01205929759, 17110.87731121792, 16689.244171494593, + 16243.64894284509, 15779.745215574128, 15303.37687911611, + 14821.557639070463, 14342.868727827627, 13876.638473300252, + 13430.401664455088, 13007.777355420816, 12606.690836409949, + 12217.215740135493, 11823.897303765036, 11407.465946488985, + 10949.666232284597, 10435.729794274086, 9861.526738974437, + 9232.776205631655, 8565.15639023996, 7884.077111733274, 7217.920153933474, + 6594.477380898816, 6035.916723317854, 5558.559298879143, + 5167.083832746602, 4860.346301017826, 4632.047259999835, + 4471.641977849583, 4371.191285078042, 4322.809728214625, + 4320.7189176251895, 4360.55825095276, 4436.082390180548, 4539.99459086834, + 4661.861180971113, 4789.065200466395, 4908.703654940329, + 5009.867792584887, 5084.521978952453, 5129.892410292608, + 5148.849835293642, 5146.082703966737, 5129.056634123102, + 5104.200643682489, 5074.888915199153, 5041.509232298514, + 5001.604026398257, 4951.350768194558, 4887.845228904688, + 4810.304218608842, 4721.677566546338, 4627.75639349163, 4535.972551964124, + 4453.496056387033, 4385.397527936769, 4332.971251522611, + 4294.246569563439, 4265.016618947008, 4240.266067321407, + 4216.923561783319, 4194.869878291456, 4177.1589455977455, + 4169.17864688805, 4176.283725282649, 4201.9969088594125, + 4246.019301665118, 4303.542784885833, 4368.106854603073, + 4433.287197091559, 4497.157455930462, 4565.904023661696, + 4655.567247315199, 4792.108855264055, 5008.0030227237685, + 5335.691858260733, 5805.848326207264, 6433.815041132781, 7221.520036981491 + ], + "flow:J7:branch51_seg0": [ + 0.42460064377149304, 0.5534679952169189, 0.7013041947658183, + 0.8626775568083175, 1.030799396516906, 1.1987837036268862, + 1.3604737394258883, 1.511131006912487, 1.6474474104049173, + 1.7679886790582018, 1.8723271082909905, 1.9606476078514659, + 2.0335320834874917, 2.0911687594169974, 2.1336405512774697, + 2.160897879687569, 2.172843020311037, 2.1699814310444805, + 2.1531619731357865, 2.1238384581231387, 2.0839331249999224, + 2.035372654267042, 1.980051746063331, 1.9195147005109283, + 1.8549258765311123, 1.7872180649248646, 1.7172266707917216, + 1.6459165155708797, 1.5744663553049578, 1.504216563190968, + 1.4364020364484764, 1.3718718512076649, 1.3106927712822114, + 1.2519265366488839, 1.1936871101586572, 1.133350500811989, + 1.0680945585201693, 0.9954864518460084, 0.9142278631565739, + 0.8243610123279337, 0.7276142941014287, 0.6270932985021384, + 0.5267686148701252, 0.4308294269854711, 0.3430573752254, + 0.2662319878466077, 0.2017948687578217, 0.1501538259972371, + 0.11057278375931064, 0.08184187425436147, 0.06265094331030897, + 0.051715415761272164, 0.048130182297988655, 0.05110489495790671, + 0.05983185126837628, 0.07334437668425825, 0.09025134078048438, + 0.10884133547205271, 0.12721906017180085, 0.1436013602407568, + 0.15656720980189864, 0.16540131925847273, 0.1700791040381759, + 0.17116407250691512, 0.16964888336462378, 0.16650752605234276, + 0.16246152469937192, 0.15779316637657914, 0.15231906850731483, + 0.145565799010901, 0.1370265604147563, 0.12644087538035179, + 0.11400329772792521, 0.10035819213891974, 0.08651564927911089, + 0.07356945199643601, 0.06241677544379177, 0.05349973765936845, + 0.04677941365566839, 0.041757859028300745, 0.03774151970786418, + 0.034153567931250496, 0.030758390248229645, 0.027793124672140686, + 0.02590590472365917, 0.02589801316710482, 0.02843759525841016, + 0.03371573930830681, 0.04135132533885248, 0.05049879204718405, + 0.06015747709803986, 0.06973559818196923, 0.07958967182922073, + 0.09141792400742998, 0.10841462602720543, 0.13491076895755483, + 0.17586557921073157, 0.23594801852784755, 0.318346065459345, + 0.42460064377149304 + ], + "pressure:J7:branch51_seg0": [ + 7221.520036981491, 8154.935045261428, 9200.068503848961, + 10316.369041567124, 11456.450764671206, 12574.383038600208, + 13631.8959355664, 14603.583998557131, 15471.159010476287, + 16229.081628778758, 16879.689618444812, 17423.162853912338, + 17864.25041100444, 18203.951189626034, 18440.582393815414, + 18575.65298651496, 18607.77799847949, 18541.659244528957, + 18386.614023708276, 18152.152167172142, 17852.888045944055, + 17502.01205929759, 17110.87731121792, 16689.244171494593, + 16243.64894284509, 15779.745215574128, 15303.37687911611, + 14821.557639070463, 14342.868727827627, 13876.638473300252, + 13430.401664455088, 13007.777355420816, 12606.690836409949, + 12217.215740135493, 11823.897303765036, 11407.465946488985, + 10949.666232284597, 10435.729794274086, 9861.526738974437, + 9232.776205631655, 8565.15639023996, 7884.077111733274, 7217.920153933474, + 6594.477380898816, 6035.916723317854, 5558.559298879143, + 5167.083832746602, 4860.346301017826, 4632.047259999835, + 4471.641977849583, 4371.191285078042, 4322.809728214625, + 4320.7189176251895, 4360.55825095276, 4436.082390180548, 4539.99459086834, + 4661.861180971113, 4789.065200466395, 4908.703654940329, + 5009.867792584887, 5084.521978952453, 5129.892410292608, + 5148.849835293642, 5146.082703966737, 5129.056634123102, + 5104.200643682489, 5074.888915199153, 5041.509232298514, + 5001.604026398257, 4951.350768194558, 4887.845228904688, + 4810.304218608842, 4721.677566546338, 4627.75639349163, 4535.972551964124, + 4453.496056387033, 4385.397527936769, 4332.971251522611, + 4294.246569563439, 4265.016618947008, 4240.266067321407, + 4216.923561783319, 4194.869878291456, 4177.1589455977455, + 4169.17864688805, 4176.283725282649, 4201.9969088594125, + 4246.019301665118, 4303.542784885833, 4368.106854603073, + 4433.287197091559, 4497.157455930462, 4565.904023661696, + 4655.567247315199, 4792.108855264055, 5008.0030227237685, + 5335.691858260733, 5805.848326207264, 6433.815041132781, 7221.520036981491 + ], + "flow:branch10_seg0:J8": [ + 0.9496766688179484, 1.230089232996928, 1.5444052461494955, + 1.8794976868445132, 2.220074242664257, 2.5517938971722702, + 2.8628577159956516, 3.145279135021543, 3.3941618301246423, + 3.608753967187733, 3.7899471560474742, 3.9391610752017407, + 4.05836848745346, 4.1480351305701975, 4.208270589564532, 4.23901386406988, + 4.2400147710339695, 4.212760026586888, 4.159433703017638, + 4.083448060362538, 3.9892002533737316, 3.880672464505671, + 3.7615870561183966, 3.6347247243399683, 3.5019535735084193, + 3.364767688174233, 3.2246018039936244, 3.0833487716989514, + 2.943459457618394, 2.8077023159528776, 2.678420284473129, + 2.5568880719545746, 2.4424636145476715, 2.332187532011951, + 2.221206262852443, 2.1033812551285536, 1.9726936015564236, + 1.8244980493292378, 1.6572419348020069, 1.472459720036058, + 1.2753694292594306, 1.0738641464053114, 0.8770533452266088, + 0.6937975707963571, 0.5313926723749521, 0.39451606719320836, + 0.2845666302455343, 0.2010088320252505, 0.14103578455904917, + 0.10128655546413395, 0.07877762499497154, 0.07079556316881404, + 0.07572774981991866, 0.09218829038830263, 0.11857720159892236, + 0.15287728654400093, 0.19200292392581195, 0.23222338173185106, + 0.26957871992793325, 0.30061491602506524, 0.32287210365484975, + 0.3356346252634057, 0.33970369911522524, 0.336933358539456, + 0.3299020378832583, 0.3207550704878548, 0.3107912314499453, + 0.3001957652918091, 0.2881271112368435, 0.2732648014106158, + 0.25446320539792866, 0.23134293144982207, 0.204697375063686, + 0.17628059037691435, 0.14851774754942126, 0.12376877604818493, + 0.10370918244414967, 0.08880713542524302, 0.07845869251432203, + 0.07115696778731048, 0.06518580217855006, 0.059385156599509915, + 0.05355080862723154, 0.048599278249158155, 0.04627398739576512, + 0.04841797850045736, 0.056320500721115746, 0.06997605977985466, + 0.08803646807025263, 0.10829473610299348, 0.1284906921855621, + 0.14770505930279224, 0.1675007084663059, 0.1925910351586686, + 0.23092153321355985, 0.292477972808112, 0.38792288465793034, + 0.5265822719753016, 0.7134372302546983, 0.9496766688179484 + ], + "pressure:branch10_seg0:J8": [ + 7632.733883473775, 8665.809090084107, 9803.686584310668, + 10998.090831808599, 12195.3133699162, 13346.108162892026, + 14412.09787666978, 15370.911425084889, 16208.425960800649, + 16924.31303838236, 17525.836005767294, 18015.977290702154, + 18401.754254862182, 18684.577353051256, 18862.503678986697, + 18937.33585958089, 18907.524877709933, 18779.35311606162, + 18563.929392148675, 18272.38209922318, 17921.447483907556, + 17525.167575419793, 17095.05664888608, 16640.46582067678, + 16166.931776919559, 15679.357763802585, 15183.243375929924, + 14685.794088249362, 14196.189338134249, 13724.315452024142, + 13277.620023639696, 12858.575919013887, 12462.882665092167, + 12077.23923942439, 11682.613407687257, 11256.630061593552, + 10779.399216275933, 10236.259912419444, 9625.863352284607, + 8958.198366605608, 8254.311674250934, 7545.154561570537, + 6863.359280008944, 6239.0094611713685, 5694.243785517859, + 5243.774558665473, 4888.316778742887, 4622.9835436066915, + 4437.859155284055, 4319.310622354187, 4258.21697934469, 4246.03581565163, + 4277.119288336833, 4347.540906224437, 4450.740510275934, + 4578.800621603147, 4720.086917568734, 4860.62895802826, 4986.588714131404, + 5086.982990721397, 5154.577820207615, 5188.428026942646, + 5193.842781472567, 5177.656075190236, 5149.174826762163, + 5115.584586921312, 5079.960593532419, 5041.666815916365, + 4996.890646451658, 4940.689933377038, 4869.765756367399, + 4783.706744356991, 4686.716342928624, 4586.0776224365945, + 4490.556955397653, 4408.024350591145, 4343.3836414408925, + 4296.842270825264, 4264.876738160073, 4241.814421702239, + 4221.585914383518, 4201.018936789647, 4180.760695047575, + 4165.181734428284, 4161.061296357647, 4174.562880688991, + 4209.144145037998, 4263.411124589851, 4330.768021342886, + 4403.139403082621, 4473.249078679027, 4539.93276094756, 4612.046958356204, + 4709.920073881743, 4864.794257846235, 5114.016011510576, + 5493.0136800939945, 6033.77377374342, 6748.218300870372, 7632.733883473775 + ], + "flow:J8:branch11_seg0": [ + 0.5157189626620532, 0.6671939772752096, 0.8364971081986325, + 1.0165430707924208, 1.1990864470620064, 1.3764676846106456, + 1.542445303687414, 1.692874524275678, 1.825202103516198, + 1.9391367304978377, 2.0352310289333024, 2.1142267816866913, + 2.1772060945098413, 2.2243819782207725, 2.2557848763066097, + 2.2714014121451784, 2.2710810432344632, 2.255668750155036, + 2.2263711460485696, 2.185030147126981, 2.1340393425691935, + 2.075516444757522, 2.0114390142645897, 1.943276107409271, + 1.871998776312493, 1.798398388446374, 1.7232444488552106, + 1.6475636254791919, 1.5726845830384524, 1.5000991166843556, + 1.43104619794675, 1.366173737143881, 1.305085422446569, + 1.2461235087066056, 1.1866373183809777, 1.1233061506614275, + 1.052916138682588, 0.9730167732932544, 0.8828732213835654, + 0.7834008229232682, 0.6774883326379144, 0.5694480743010387, + 0.46418602813626914, 0.36643533983603527, 0.2800534364905238, + 0.20747939963189826, 0.149355224913953, 0.10534530170868557, + 0.0738932518358763, 0.053169136245170855, 0.041601090481410904, + 0.037739198496272025, 0.040747938307512936, 0.04989831306409379, + 0.06431541686996087, 0.08291003924334975, 0.10399990401549587, + 0.12556483863033013, 0.14548035767483547, 0.16191574447166157, + 0.1735811100969833, 0.18014110577092457, 0.18207743574990734, + 0.18040341744368293, 0.1765201161175011, 0.17156576516778166, + 0.1662063886597677, 0.16051006831161213, 0.15399829311624946, + 0.1459511003701364, 0.1357627549344068, 0.12325224816946252, + 0.10888068606181732, 0.09361403612440862, 0.078767755950144, + 0.06560278095744615, 0.054996208083940734, 0.04716119452583763, + 0.04174405956038538, 0.03791606452553356, 0.03475032472409152, + 0.031645015157051155, 0.028520225617799207, 0.02589801593990572, + 0.024734857656267588, 0.02601779056319238, 0.03041943565505426, + 0.03790023944765209, 0.04769508729290765, 0.05860308387240637, + 0.06941541411500897, 0.07968108355314017, 0.09031300982335572, + 0.10392846386888849, 0.12487563822496692, 0.1585597011873171, + 0.210698320464552, 0.2862584627927644, 0.38775551671721553, + 0.5157189626620532 + ], + "pressure:J8:branch11_seg0": [ + 7632.733883473775, 8665.809090084107, 9803.686584310668, + 10998.090831808599, 12195.3133699162, 13346.108162892026, + 14412.09787666978, 15370.911425084889, 16208.425960800649, + 16924.31303838236, 17525.836005767294, 18015.977290702154, + 18401.754254862182, 18684.577353051256, 18862.503678986697, + 18937.33585958089, 18907.524877709933, 18779.35311606162, + 18563.929392148675, 18272.38209922318, 17921.447483907556, + 17525.167575419793, 17095.05664888608, 16640.46582067678, + 16166.931776919559, 15679.357763802585, 15183.243375929924, + 14685.794088249362, 14196.189338134249, 13724.315452024142, + 13277.620023639696, 12858.575919013887, 12462.882665092167, + 12077.23923942439, 11682.613407687257, 11256.630061593552, + 10779.399216275933, 10236.259912419444, 9625.863352284607, + 8958.198366605608, 8254.311674250934, 7545.154561570537, + 6863.359280008944, 6239.0094611713685, 5694.243785517859, + 5243.774558665473, 4888.316778742887, 4622.9835436066915, + 4437.859155284055, 4319.310622354187, 4258.21697934469, 4246.03581565163, + 4277.119288336833, 4347.540906224437, 4450.740510275934, + 4578.800621603147, 4720.086917568734, 4860.62895802826, 4986.588714131404, + 5086.982990721397, 5154.577820207615, 5188.428026942646, + 5193.842781472567, 5177.656075190236, 5149.174826762163, + 5115.584586921312, 5079.960593532419, 5041.666815916365, + 4996.890646451658, 4940.689933377038, 4869.765756367399, + 4783.706744356991, 4686.716342928624, 4586.0776224365945, + 4490.556955397653, 4408.024350591145, 4343.3836414408925, + 4296.842270825264, 4264.876738160073, 4241.814421702239, + 4221.585914383518, 4201.018936789647, 4180.760695047575, + 4165.181734428284, 4161.061296357647, 4174.562880688991, + 4209.144145037998, 4263.411124589851, 4330.768021342886, + 4403.139403082621, 4473.249078679027, 4539.93276094756, 4612.046958356204, + 4709.920073881743, 4864.794257846235, 5114.016011510576, + 5493.0136800939945, 6033.77377374342, 6748.218300870372, 7632.733883473775 + ], + "flow:J8:branch130_seg0": [ + 0.43395770615589513, 0.562895255721719, 0.7079081379508627, + 0.8629546160520929, 1.0209877956022504, 1.1753262125616248, + 1.3204124123082375, 1.4524046107458652, 1.5689597266084434, + 1.6696172366898954, 1.7547161271141718, 1.8249342935150483, + 1.8811623929436188, 1.9236531523494247, 1.9524857132579232, + 1.9676124519247, 1.9689337277995058, 1.957091276431852, + 1.9330625569690683, 1.8984179132355556, 1.8551609108045368, + 1.805156019748149, 1.7501480418538067, 1.6914486169306975, + 1.629954797195927, 1.5663692997278589, 1.501357355138414, + 1.4357851462197597, 1.3707748745799422, 1.3076031992685224, + 1.2473740865263792, 1.1907143348106932, 1.1373781921011026, + 1.0860640233053462, 1.034568944471465, 0.9800751044671264, + 0.9197774628738357, 0.8514812760359829, 0.7743687134184412, + 0.6890588971127897, 0.5978810966215162, 0.5044160721042728, + 0.41286731709033986, 0.3273622309603218, 0.2513392358844284, + 0.18703666756131015, 0.1352114053315813, 0.09566353031656491, + 0.06714253272317286, 0.04811741921896309, 0.037176534513560636, + 0.03305636467254203, 0.034979811512405715, 0.042289977324208826, + 0.054261784728961475, 0.06996724730065114, 0.08800301991031609, + 0.10665854310152094, 0.12409836225309784, 0.1386991715534037, + 0.14929099355786646, 0.15549351949248122, 0.15762626336531788, + 0.15652994109577303, 0.15338192176575724, 0.1491893053200732, + 0.14458484279017755, 0.13968569698019703, 0.13412881812059402, + 0.12731370104047937, 0.11870045046352193, 0.1080906832803596, + 0.09581668900186868, 0.08266655425250571, 0.06974999159927728, + 0.05816599509073877, 0.048712974360208945, 0.041645940899405376, + 0.03671463295393666, 0.03324090326177694, 0.030435477454458536, + 0.027740141442458753, 0.025030583009432325, 0.02270126230925244, + 0.021539129739497537, 0.022400187937264983, 0.02590106506606149, + 0.032075820332202576, 0.04034138077734498, 0.04969165223058711, + 0.059075278070553135, 0.06802397574965206, 0.07718769864295023, + 0.08866257128978008, 0.10604589498859295, 0.13391827162079492, + 0.17722456419337843, 0.2403238091825373, 0.32568171353748276, + 0.43395770615589513 + ], + "pressure:J8:branch130_seg0": [ + 7632.733883473775, 8665.809090084107, 9803.686584310668, + 10998.090831808599, 12195.3133699162, 13346.108162892026, + 14412.09787666978, 15370.911425084889, 16208.425960800649, + 16924.31303838236, 17525.836005767294, 18015.977290702154, + 18401.754254862182, 18684.577353051256, 18862.503678986697, + 18937.33585958089, 18907.524877709933, 18779.35311606162, + 18563.929392148675, 18272.38209922318, 17921.447483907556, + 17525.167575419793, 17095.05664888608, 16640.46582067678, + 16166.931776919559, 15679.357763802585, 15183.243375929924, + 14685.794088249362, 14196.189338134249, 13724.315452024142, + 13277.620023639696, 12858.575919013887, 12462.882665092167, + 12077.23923942439, 11682.613407687257, 11256.630061593552, + 10779.399216275933, 10236.259912419444, 9625.863352284607, + 8958.198366605608, 8254.311674250934, 7545.154561570537, + 6863.359280008944, 6239.0094611713685, 5694.243785517859, + 5243.774558665473, 4888.316778742887, 4622.9835436066915, + 4437.859155284055, 4319.310622354187, 4258.21697934469, 4246.03581565163, + 4277.119288336833, 4347.540906224437, 4450.740510275934, + 4578.800621603147, 4720.086917568734, 4860.62895802826, 4986.588714131404, + 5086.982990721397, 5154.577820207615, 5188.428026942646, + 5193.842781472567, 5177.656075190236, 5149.174826762163, + 5115.584586921312, 5079.960593532419, 5041.666815916365, + 4996.890646451658, 4940.689933377038, 4869.765756367399, + 4783.706744356991, 4686.716342928624, 4586.0776224365945, + 4490.556955397653, 4408.024350591145, 4343.3836414408925, + 4296.842270825264, 4264.876738160073, 4241.814421702239, + 4221.585914383518, 4201.018936789647, 4180.760695047575, + 4165.181734428284, 4161.061296357647, 4174.562880688991, + 4209.144145037998, 4263.411124589851, 4330.768021342886, + 4403.139403082621, 4473.249078679027, 4539.93276094756, 4612.046958356204, + 4709.920073881743, 4864.794257846235, 5114.016011510576, + 5493.0136800939945, 6033.77377374342, 6748.218300870372, 7632.733883473775 + ], + "flow:branch12_seg0:J9": [ + 4.67593764438781, 6.019055268938795, 7.48214745812489, 8.991822575958443, + 10.470787291380786, 11.852363533228761, 13.088070115054432, + 14.151997673319984, 15.036195006931706, 15.750742133754542, + 16.312391143869007, 16.73671632981225, 17.038110999964704, + 17.221538710389915, 17.287831787897378, 17.237215983780317, + 17.068807828825552, 16.791243185988492, 16.417151427105875, + 15.964061696086992, 15.454132669403974, 14.90582243617076, + 14.334699135471073, 13.750889394519145, 13.159515522801307, + 12.564210091805405, 11.96917532708152, 11.381640579934686, + 10.81212399842757, 10.27256712422566, 9.77218243112979, 9.31360737521937, + 8.889272971593826, 8.47985988246946, 8.057323138694052, 7.58931527157544, + 7.046961386396589, 6.411167183239077, 5.68080798898315, 4.871759509377574, + 4.017486702183154, 3.162978114225325, 2.3559301402021346, + 1.6386783344670774, 1.0414321302865805, 0.5797999390924597, + 0.2505725503452914, 0.041706990282508745, -0.06778013522354613, + -0.09974875011826254, -0.07093879630026739, 0.005508724312519411, + 0.12271999819178836, 0.27597361998522363, 0.45890759675570797, + 0.6623026284953696, 0.8716864272814107, 1.0693808011392778, + 1.2374425303844034, 1.3616237970767868, 1.4340399735231117, + 1.4559394997767818, 1.4363157432792433, 1.3884377742577394, + 1.3275579017344694, 1.2649514578423495, 1.2059853879705937, + 1.1494335850391304, 1.088837574701856, 1.015978563443576, + 0.9247671291570001, 0.8139477024476536, 0.6890751456624665, + 0.560553379367236, 0.44137530576598905, 0.34302689076803006, + 0.2722975826592443, 0.2289937453513912, 0.2070928828636111, + 0.19683420656088924, 0.18845445403164054, 0.17630887135944803, + 0.1607668364553701, 0.14828422273636963, 0.14910305004844324, + 0.17297665317445474, 0.22541517498149255, 0.30445833151460244, + 0.40089641208270255, 0.5018577088459585, 0.5957424394545111, + 0.6797257143317202, 0.7652578499410226, 0.8804466095669328, + 1.0690953134472208, 1.38298881448159, 1.8725983126634043, + 2.579115466206433, 3.516361675160856, 4.67593764438781 + ], + "pressure:branch12_seg0:J9": [ + 9594.410228874644, 11025.504897586552, 12502.862760445707, + 13950.909504789364, 15302.14833257692, 16503.33164311248, + 17525.274795701876, 18368.469480108964, 19041.49897160531, + 19560.544074543173, 19956.492005827255, 20234.27953793252, + 20404.228482532566, 20468.91158765905, 20418.38113313876, + 20260.313268128917, 19991.70522850668, 19625.425993286593, + 19187.014975809085, 18689.15858151137, 18157.10204908581, + 17607.338185572706, 17047.046462986273, 16483.283187129877, + 15916.477204246246, 15348.850459750836, 14786.810477487526, + 14239.922944327061, 13720.747784172927, 13240.928995508093, + 12805.713482591718, 12408.50643019799, 12033.500557303574, + 11650.904147026524, 11226.875375045813, 10729.223696329493, + 10137.884959300993, 9443.942354787283, 8664.370475703246, + 7833.768643772951, 6994.242079857941, 6199.333570912369, 5494.3502861897, + 4911.904055560883, 4463.447042336952, 4155.364360889649, + 3966.4147860492326, 3873.419019028347, 3858.152123955188, + 3894.454468084919, 3974.030607771625, 4090.4692407464504, + 4237.7761560061035, 4416.050252832952, 4615.375429708, 4822.878119324233, + 5021.842084882702, 5192.21146658782, 5317.9542162194375, 5390.93976092092, + 5410.705954900077, 5384.935462795366, 5331.968568871891, + 5265.257733534494, 5198.847927556502, 5140.544695120531, + 5088.281532944695, 5034.912057220097, 4970.768772525361, + 4887.360217202505, 4782.741209554298, 4660.220321812108, + 4531.383693927096, 4410.66024807156, 4310.742114001955, 4239.897387367042, + 4199.588887377926, 4183.275028954948, 4179.154344680493, + 4177.090180576662, 4168.560163367609, 4152.813851639436, + 4136.572685138408, 4130.956535520079, 4147.988139098063, + 4194.970982993318, 4271.618438920516, 4369.825546825267, + 4473.1953640671445, 4568.55263038981, 4648.810539063336, + 4721.150395186898, 4811.331353056227, 4961.67817742828, 5226.673200413127, + 5662.566518341554, 6305.458286191647, 7188.792487139307, 8299.3481404131, + 9594.410228874644 + ], + "flow:J9:branch13_seg0": [ + 1.7524860657181602, 2.2510456266788976, 2.790318696429805, + 3.3424498168347254, 3.878859921613518, 4.37547230667102, + 4.815398461396294, 5.190326484522885, 5.498699009717887, + 5.745369188579776, 5.937171129963199, 6.0802246364467, 6.179810228151869, + 6.237455348032728, 6.253210539396832, 6.226915632414992, + 6.158134386259654, 6.050244322850936, 5.908081802072704, + 5.738287622523278, 5.5491537020752935, 5.347435102506573, + 5.138641373143575, 4.926203423468354, 4.711679100909735, + 4.496157212921879, 4.281074685998645, 4.069095137845694, + 3.8641657911336402, 3.670725839912682, 3.4921027499530846, + 3.329011708450119, 3.1782552306323857, 3.0322454541806034, + 2.8801983684902566, 2.7099651115716106, 2.5109898058470836, + 2.276636478495003, 2.007253323683154, 1.7095361009020298, + 1.3966914817991085, 1.0858944959785166, 0.7949838528731097, + 0.5393617600269314, 0.32953079796443335, 0.17046125324356834, + 0.060039642482407195, -0.00702867616657626, -0.03894737792664059, + -0.04404306025282427, -0.0284100295628488, 0.003404087297223245, + 0.04913696780841811, 0.10734734532779723, 0.17583793177071913, + 0.2511727375749042, 0.32793008626718534, 0.3995041708085622, + 0.45926836609345156, 0.5021313611219349, 0.5254904635741727, + 0.5302486553716876, 0.5201190696775145, 0.5003245770250626, + 0.4766405497655247, 0.4531413098782938, 0.43156793097487495, + 0.4111348277510164, 0.38915082212320784, 0.36239710381781143, + 0.3286225231791415, 0.28750639352182783, 0.24135337880887067, + 0.1942680429264167, 0.15119704009638493, 0.11637710155744214, + 0.09213979437641377, 0.0781343846190097, 0.07180025987531222, + 0.06930206210068823, 0.06695817816649513, 0.06276582777900275, + 0.057101764093067844, 0.052633508154006844, 0.05337148448234811, + 0.06298598390109963, 0.08340437602846539, 0.11361810007026237, + 0.1499110434900949, 0.1872789519845454, 0.22139489473660784, + 0.2514601395495127, 0.2822011911055501, 0.32464825204814685, + 0.39560182706621716, 0.5145827431487415, 0.7001221939032095, + 0.9669667161741644, 1.319297047716572, 1.7524860657181602 + ], + "pressure:J9:branch13_seg0": [ + 9594.410228874644, 11025.504897586552, 12502.862760445707, + 13950.909504789364, 15302.14833257692, 16503.33164311248, + 17525.274795701876, 18368.469480108964, 19041.49897160531, + 19560.544074543173, 19956.492005827255, 20234.27953793252, + 20404.228482532566, 20468.91158765905, 20418.38113313876, + 20260.313268128917, 19991.70522850668, 19625.425993286593, + 19187.014975809085, 18689.15858151137, 18157.10204908581, + 17607.338185572706, 17047.046462986273, 16483.283187129877, + 15916.477204246246, 15348.850459750836, 14786.810477487526, + 14239.922944327061, 13720.747784172927, 13240.928995508093, + 12805.713482591718, 12408.50643019799, 12033.500557303574, + 11650.904147026524, 11226.875375045813, 10729.223696329493, + 10137.884959300993, 9443.942354787283, 8664.370475703246, + 7833.768643772951, 6994.242079857941, 6199.333570912369, 5494.3502861897, + 4911.904055560883, 4463.447042336952, 4155.364360889649, + 3966.4147860492326, 3873.419019028347, 3858.152123955188, + 3894.454468084919, 3974.030607771625, 4090.4692407464504, + 4237.7761560061035, 4416.050252832952, 4615.375429708, 4822.878119324233, + 5021.842084882702, 5192.21146658782, 5317.9542162194375, 5390.93976092092, + 5410.705954900077, 5384.935462795366, 5331.968568871891, + 5265.257733534494, 5198.847927556502, 5140.544695120531, + 5088.281532944695, 5034.912057220097, 4970.768772525361, + 4887.360217202505, 4782.741209554298, 4660.220321812108, + 4531.383693927096, 4410.66024807156, 4310.742114001955, 4239.897387367042, + 4199.588887377926, 4183.275028954948, 4179.154344680493, + 4177.090180576662, 4168.560163367609, 4152.813851639436, + 4136.572685138408, 4130.956535520079, 4147.988139098063, + 4194.970982993318, 4271.618438920516, 4369.825546825267, + 4473.1953640671445, 4568.55263038981, 4648.810539063336, + 4721.150395186898, 4811.331353056227, 4961.67817742828, 5226.673200413127, + 5662.566518341554, 6305.458286191647, 7188.792487139307, 8299.3481404131, + 9594.410228874644 + ], + "flow:J9:branch80_seg0": [ + 0.8687246764954609, 1.1053275438762782, 1.3557670122941226, + 1.6070962998353424, 1.8463204907609132, 2.0633062732786382, + 2.2517047881859398, 2.4094540517453584, 2.536884147619462, + 2.6371882868968335, 2.714120996779033, 2.770023057074566, + 2.8071781116717727, 2.825765127838809, 2.825318943209155, + 2.8059490375048717, 2.7673645108012073, 2.7116236157792852, + 2.6413983080128682, 2.559831716863539, 2.4710061325760373, + 2.377721719264816, 2.2821807270165326, 2.185614888169364, + 2.088385546493885, 1.9909052486673153, 1.89389908953379, + 1.7987834039853419, 1.7075578776629952, 1.6223136666904923, + 1.5443303890448892, 1.4734431329130755, 1.407547120892293, + 1.3423921903538512, 1.2725843213833192, 1.1924148273700412, + 1.0974424886013254, 0.9853583677342228, 0.8575465825684749, + 0.7182503126354534, 0.5744399825253141, 0.43465608777245535, + 0.30701190914260046, 0.19801035050576368, 0.1114923366088065, + 0.04877190683969649, 0.007576095200066745, -0.01501293501976524, + -0.023155206917116873, -0.020710890403449568, -0.009957595127877266, + 0.00729160938077589, 0.030411889132591845, 0.05892576804885897, + 0.09163574010900523, 0.12681297128413277, 0.1616694302215609, + 0.19299013350486205, 0.21781177666350504, 0.23412883566497966, + 0.24121597739409978, 0.24004055533254237, 0.23287545468497683, + 0.22226102787534113, 0.21088288232494232, 0.20032434277433886, + 0.1909158326808638, 0.18186774079601614, 0.1716441553537661, + 0.15870135241625147, 0.14220699529007916, 0.12235755137301726, + 0.10066430399376934, 0.07928882892776044, 0.06059764497900485, + 0.0463680677170089, 0.03732038618688646, 0.032799841470756326, + 0.03127496840986332, 0.030815030419654485, 0.02976758544083911, + 0.027552716658070884, 0.024762386101560792, 0.02299673140038654, + 0.024289641484854702, 0.03022729511715942, 0.04134981077624352, + 0.056716634654808855, 0.0741286545498632, 0.09114833483161248, + 0.10596754199852214, 0.11884980461761013, 0.1329294792655645, + 0.15429916376895003, 0.19155031666902572, 0.2539678637011526, + 0.3496612781398477, 0.4846940563013747, 0.6588902993492298, + 0.8687246764954609 + ], + "pressure:J9:branch80_seg0": [ + 9594.410228874644, 11025.504897586552, 12502.862760445707, + 13950.909504789364, 15302.14833257692, 16503.33164311248, + 17525.274795701876, 18368.469480108964, 19041.49897160531, + 19560.544074543173, 19956.492005827255, 20234.27953793252, + 20404.228482532566, 20468.91158765905, 20418.38113313876, + 20260.313268128917, 19991.70522850668, 19625.425993286593, + 19187.014975809085, 18689.15858151137, 18157.10204908581, + 17607.338185572706, 17047.046462986273, 16483.283187129877, + 15916.477204246246, 15348.850459750836, 14786.810477487526, + 14239.922944327061, 13720.747784172927, 13240.928995508093, + 12805.713482591718, 12408.50643019799, 12033.500557303574, + 11650.904147026524, 11226.875375045813, 10729.223696329493, + 10137.884959300993, 9443.942354787283, 8664.370475703246, + 7833.768643772951, 6994.242079857941, 6199.333570912369, 5494.3502861897, + 4911.904055560883, 4463.447042336952, 4155.364360889649, + 3966.4147860492326, 3873.419019028347, 3858.152123955188, + 3894.454468084919, 3974.030607771625, 4090.4692407464504, + 4237.7761560061035, 4416.050252832952, 4615.375429708, 4822.878119324233, + 5021.842084882702, 5192.21146658782, 5317.9542162194375, 5390.93976092092, + 5410.705954900077, 5384.935462795366, 5331.968568871891, + 5265.257733534494, 5198.847927556502, 5140.544695120531, + 5088.281532944695, 5034.912057220097, 4970.768772525361, + 4887.360217202505, 4782.741209554298, 4660.220321812108, + 4531.383693927096, 4410.66024807156, 4310.742114001955, 4239.897387367042, + 4199.588887377926, 4183.275028954948, 4179.154344680493, + 4177.090180576662, 4168.560163367609, 4152.813851639436, + 4136.572685138408, 4130.956535520079, 4147.988139098063, + 4194.970982993318, 4271.618438920516, 4369.825546825267, + 4473.1953640671445, 4568.55263038981, 4648.810539063336, + 4721.150395186898, 4811.331353056227, 4961.67817742828, 5226.673200413127, + 5662.566518341554, 6305.458286191647, 7188.792487139307, 8299.3481404131, + 9594.410228874644 + ], + "flow:J9:branch94_seg0": [ + 2.0547269021741883, 2.662682098383618, 3.3360617494009626, + 4.042276459288372, 4.745606879006355, 5.413584953279104, + 6.020966865472197, 6.552217137051742, 7.0006118495943594, + 7.36818465827793, 7.66109901712678, 7.886468636290984, 8.051122660141063, + 8.158318234518378, 8.209302305291393, 8.204351313860451, + 8.143308931764691, 8.02937524735827, 7.867671317020301, 7.665942356700179, + 7.433972834752643, 7.180665614399374, 6.913877035310966, + 6.639071082881428, 6.359450875397682, 6.0771476302162135, + 5.7942015515490874, 5.51376203810365, 5.240400329630936, + 4.979527617622483, 4.7357492921318185, 4.511152533856175, + 4.303470620069146, 4.1052222379350045, 3.904540448820477, + 3.686935332633789, 3.438529091948181, 3.1491723370098517, + 2.816008082731522, 2.4439730958400903, 2.0463552378587333, + 1.642427530474353, 1.2539343781864247, 0.9013062239343823, + 0.6004089957133405, 0.36056677900919487, 0.18295681266281746, + 0.06374860146885025, -0.005677550379788683, -0.0349947994619887, + -0.03257117160954132, -0.005186972365479727, 0.0431711412507784, + 0.1097005066085674, 0.19143392487598357, 0.28431691963633265, + 0.3820869107926646, 0.47688649682585355, 0.5603623876274465, + 0.6253636002898718, 0.667333532554839, 0.685650289072552, + 0.6833212189167517, 0.6658521693573353, 0.6400344696440021, + 0.6114858051897171, 0.583501624314855, 0.5564310164920977, + 0.5280425972248819, 0.4948801072095134, 0.4539376106877795, + 0.40408375755280845, 0.3470574628598265, 0.2869965075130589, + 0.2295806206905993, 0.180281721493579, 0.1428374020959441, + 0.11805951926162518, 0.10401765457843558, 0.09671711404054646, + 0.09172869042430633, 0.0859903269223744, 0.07890268626074148, + 0.07265398318197624, 0.07144192408124046, 0.0797633741561957, + 0.10066098817678372, 0.1341235967895312, 0.17685671404274445, + 0.22343042202980068, 0.2683800027193812, 0.3094157701645975, + 0.35012717956990813, 0.4014991937498359, 0.481943169711978, + 0.6144382076316959, 0.8228148406203472, 1.1274546937308938, + 1.538174328095055, 2.0547269021741883 + ], + "pressure:J9:branch94_seg0": [ + 9594.410228874644, 11025.504897586552, 12502.862760445707, + 13950.909504789364, 15302.14833257692, 16503.33164311248, + 17525.274795701876, 18368.469480108964, 19041.49897160531, + 19560.544074543173, 19956.492005827255, 20234.27953793252, + 20404.228482532566, 20468.91158765905, 20418.38113313876, + 20260.313268128917, 19991.70522850668, 19625.425993286593, + 19187.014975809085, 18689.15858151137, 18157.10204908581, + 17607.338185572706, 17047.046462986273, 16483.283187129877, + 15916.477204246246, 15348.850459750836, 14786.810477487526, + 14239.922944327061, 13720.747784172927, 13240.928995508093, + 12805.713482591718, 12408.50643019799, 12033.500557303574, + 11650.904147026524, 11226.875375045813, 10729.223696329493, + 10137.884959300993, 9443.942354787283, 8664.370475703246, + 7833.768643772951, 6994.242079857941, 6199.333570912369, 5494.3502861897, + 4911.904055560883, 4463.447042336952, 4155.364360889649, + 3966.4147860492326, 3873.419019028347, 3858.152123955188, + 3894.454468084919, 3974.030607771625, 4090.4692407464504, + 4237.7761560061035, 4416.050252832952, 4615.375429708, 4822.878119324233, + 5021.842084882702, 5192.21146658782, 5317.9542162194375, 5390.93976092092, + 5410.705954900077, 5384.935462795366, 5331.968568871891, + 5265.257733534494, 5198.847927556502, 5140.544695120531, + 5088.281532944695, 5034.912057220097, 4970.768772525361, + 4887.360217202505, 4782.741209554298, 4660.220321812108, + 4531.383693927096, 4410.66024807156, 4310.742114001955, 4239.897387367042, + 4199.588887377926, 4183.275028954948, 4179.154344680493, + 4177.090180576662, 4168.560163367609, 4152.813851639436, + 4136.572685138408, 4130.956535520079, 4147.988139098063, + 4194.970982993318, 4271.618438920516, 4369.825546825267, + 4473.1953640671445, 4568.55263038981, 4648.810539063336, + 4721.150395186898, 4811.331353056227, 4961.67817742828, 5226.673200413127, + 5662.566518341554, 6305.458286191647, 7188.792487139307, 8299.3481404131, + 9594.410228874644 + ], + "flow:branch13_seg0:J10": [ + 1.7486958556506902, 2.247028835000187, 2.7862330395486183, + 3.3385808694789536, 3.8753565379394628, 4.372419444984094, + 4.812826144004403, 5.188313987461342, 5.497067003119405, + 5.744113256425074, 5.936276725703786, 6.079590401090631, + 6.179498771020734, 6.237430048746288, 6.253481816668969, + 6.227509232229397, 6.15899648328781, 6.051358095967065, 5.909376417577986, + 5.7397007548217145, 5.5506490114743485, 5.348964157270874, + 5.140184286942491, 4.927758747614401, 4.713238047203807, + 4.4977135321021615, 4.282604234286822, 4.070564137885387, + 3.8655374577272763, 3.671982841363818, 3.493233352712387, + 3.3300560193612734, 3.179286288859662, 3.033336559029174, + 2.8814502750173965, 2.7114563449969187, 2.512765381398951, + 2.2786583960414153, 2.0094899787246217, 1.7118516795885905, + 1.3989503036016375, 1.087978424225272, 0.7967745459375282, + 0.5407728706469718, 0.33057952817712544, 0.1711451132109187, + 0.06040285865033628, -0.006890267892939923, -0.038982741446890214, + -0.04421664221800105, -0.028676725135796038, 0.003028002674184321, + 0.0486815796461007, 0.1068295734579903, 0.17526176351199096, + 0.25060574913374695, 0.327417137526341, 0.39909274742372397, + 0.45899093047339673, 0.5020188539617407, 0.5255018650065939, + 0.5303582902291849, 0.5202962185513, 0.5005082971068109, + 0.47681138209243484, 0.45329332427739905, 0.43170799529039877, + 0.41129078311435435, 0.3893497143861418, 0.3626569711347577, + 0.32893641695735004, 0.2878561785248075, 0.2417054643069612, + 0.19457753250180929, 0.1514316572573074, 0.1165261791071794, + 0.09221419270695691, 0.07814990310014051, 0.07180176888697706, + 0.06931770514351386, 0.06699238044781071, 0.06281364423795666, + 0.05713802278258794, 0.05262149759898231, 0.05328667555485487, + 0.06280882072726686, 0.08316019137356774, 0.11333752654333701, + 0.1496302725889849, 0.18703765347989265, 0.2211940601108882, + 0.2512530965653091, 0.28189333819378826, 0.32410773476245475, + 0.39467498147032404, 0.5131045050688982, 0.6980481960358187, + 0.9642337215503533, 1.3159209658660234, 1.7486958556506902 + ], + "pressure:branch13_seg0:J10": [ + 9227.688681691236, 10607.254906504992, 12051.479993293908, + 13486.311917843579, 14842.465645263806, 16063.639047709674, + 17116.27116734656, 17995.517742335323, 18702.9826708455, + 19256.090196399982, 19681.755645363944, 19986.4614838702, + 20183.10344255747, 20274.033960236287, 20252.011674933114, + 20123.543102017735, 19884.9596288596, 19547.296078600317, + 19133.700982215603, 18656.789195414814, 18140.72679008363, + 17602.753219921688, 17051.67811047474, 16495.43433417729, + 15935.488298166127, 15374.069192908843, 14816.789412919632, + 14272.3196639957, 13752.360814487945, 13268.684327560903, + 12827.385563636266, 12424.78801054954, 12047.504843644414, + 11668.87401947919, 11257.179327599712, 10780.463236630807, + 10216.830080957425, 9554.009885975942, 8804.4573389352, 7997.207482118282, + 7171.157713064682, 6377.440291219164, 5661.008958667293, + 5056.999281899969, 4581.149950347755, 4242.148364475377, + 4024.344446307596, 3906.6375412355615, 3870.7169140050873, + 3891.465400057434, 3958.315346126667, 4063.469757632276, + 4201.013208269603, 4369.644928272342, 4560.945946948522, + 4763.604954639206, 4961.556321201053, 5135.820519159712, + 5269.969879743125, 5354.676978282198, 5386.895250535638, + 5372.886321097383, 5328.734030029594, 5267.048642445211, + 5202.442948331643, 5143.725657051314, 5090.67701320592, 5037.8392674538, + 4976.447808295755, 4898.003122202078, 4799.39691997527, 4682.608132084037, + 4557.271880432163, 4436.729179772685, 4333.619064394576, + 4257.046681255283, 4209.969669579756, 4187.560980681404, + 4179.814303060519, 4176.498372435053, 4168.8366864728005, + 4154.673570010916, 4138.921221379074, 4131.332799394287, + 4143.455272343498, 4183.129097537341, 4251.965554822146, + 4343.572795583992, 4443.3998750893525, 4538.753245496744, + 4621.09451106982, 4694.574599644038, 4780.524422808205, + 4916.8102052383565, 5154.02078177724, 5546.871388717833, + 6134.605697724053, 6951.52266882623, 7993.963528508197, 9227.688681691236 + ], + "flow:J10:branch14_seg0": [ + 0.884432115726828, 1.1364199101841028, 1.4091324864513342, + 1.6885113598235444, 1.9600747165943744, 2.211613533903027, + 2.434541641939422, 2.62462770191263, 2.7810007472890774, + 2.906146533732175, 3.0034918133902324, 3.0761214610143797, + 3.126754105409848, 3.1561357608803835, 3.164323606130523, + 3.1512356331423494, 3.116624342158888, 3.062213767071567, + 2.9904269932115457, 2.904617666031367, 2.8089845601034886, + 2.706950867788442, 2.6013108698332585, 2.493815555588443, + 2.3852568038072595, 2.2761879721022584, 2.167333427898522, + 2.060034011422665, 1.956282773987806, 1.8583277733434171, + 1.767858624643785, 1.6852552590198238, 1.6089191807757588, + 1.5350276375990133, 1.4581376798118206, 1.3721031848933456, + 1.2715731879667365, 1.1531531839639122, 1.0170109588917602, + 0.8664802534891415, 0.7082300386193885, 0.5509361003155672, + 0.40362296126988645, 0.27409532924025615, 0.16769859660059885, + 0.08696639307732829, 0.030867193259677118, -0.0032711745120122494, + -0.01958039316408934, -0.0222861711327614, -0.01447418845204887, + 0.0015432304054949011, 0.02461282058486477, 0.054005903292991195, + 0.08861108065143855, 0.12670373552609404, 0.16554319510903248, + 0.20179377867290155, 0.23209722334931898, 0.25387557424401974, + 0.26578321098016133, 0.26827682558918925, 0.26321852699505155, + 0.2532392138877366, 0.2412708086917446, 0.22937936061064437, + 0.21845659732913655, 0.20811797652953876, 0.19700816385924844, + 0.18349920811331502, 0.1664455473715011, 0.14567547048856655, + 0.12234231717735497, 0.09851610480935995, 0.07669709406010936, + 0.05903577383905334, 0.046721306184530825, 0.03958896289742649, + 0.03635353472331211, 0.03507721221098504, 0.03389358476790052, + 0.03178004612371429, 0.028916481714247756, 0.026641731107124433, + 0.026983870558638656, 0.031799381658210536, 0.04208152824944531, + 0.05732620295529607, 0.07566613231260085, 0.09457466474684834, + 0.1118521580060664, 0.12707488627356783, 0.14260574745705076, + 0.16399745288044762, 0.19972459446271762, 0.259654410432129, + 0.3531810911107929, 0.4877740176350075, 0.6656293986806009, + 0.884432115726828 + ], + "pressure:J10:branch14_seg0": [ + 9227.688681691236, 10607.254906504992, 12051.479993293908, + 13486.311917843579, 14842.465645263806, 16063.639047709674, + 17116.27116734656, 17995.517742335323, 18702.9826708455, + 19256.090196399982, 19681.755645363944, 19986.4614838702, + 20183.10344255747, 20274.033960236287, 20252.011674933114, + 20123.543102017735, 19884.9596288596, 19547.296078600317, + 19133.700982215603, 18656.789195414814, 18140.72679008363, + 17602.753219921688, 17051.67811047474, 16495.43433417729, + 15935.488298166127, 15374.069192908843, 14816.789412919632, + 14272.3196639957, 13752.360814487945, 13268.684327560903, + 12827.385563636266, 12424.78801054954, 12047.504843644414, + 11668.87401947919, 11257.179327599712, 10780.463236630807, + 10216.830080957425, 9554.009885975942, 8804.4573389352, 7997.207482118282, + 7171.157713064682, 6377.440291219164, 5661.008958667293, + 5056.999281899969, 4581.149950347755, 4242.148364475377, + 4024.344446307596, 3906.6375412355615, 3870.7169140050873, + 3891.465400057434, 3958.315346126667, 4063.469757632276, + 4201.013208269603, 4369.644928272342, 4560.945946948522, + 4763.604954639206, 4961.556321201053, 5135.820519159712, + 5269.969879743125, 5354.676978282198, 5386.895250535638, + 5372.886321097383, 5328.734030029594, 5267.048642445211, + 5202.442948331643, 5143.725657051314, 5090.67701320592, 5037.8392674538, + 4976.447808295755, 4898.003122202078, 4799.39691997527, 4682.608132084037, + 4557.271880432163, 4436.729179772685, 4333.619064394576, + 4257.046681255283, 4209.969669579756, 4187.560980681404, + 4179.814303060519, 4176.498372435053, 4168.8366864728005, + 4154.673570010916, 4138.921221379074, 4131.332799394287, + 4143.455272343498, 4183.129097537341, 4251.965554822146, + 4343.572795583992, 4443.3998750893525, 4538.753245496744, + 4621.09451106982, 4694.574599644038, 4780.524422808205, + 4916.8102052383565, 5154.02078177724, 5546.871388717833, + 6134.605697724053, 6951.52266882623, 7993.963528508197, 9227.688681691236 + ], + "flow:J10:branch106_seg0": [ + 0.8642637399238621, 1.1106089248160849, 1.3771005530972846, + 1.6500695096554097, 1.915281821345088, 2.160805911081067, + 2.3782845020649823, 2.563686285548712, 2.7160662558303272, + 2.8379667226928995, 2.932784912313554, 3.003468940076251, + 3.0527446656108865, 3.0812942878659064, 3.089158210538447, + 3.0762735990870484, 3.042372141128922, 2.989144328895497, + 2.9189494243664402, 2.835083088790347, 2.7416644513708612, + 2.6420132894824317, 2.538873417109231, 2.433943192025958, + 2.3279812433965468, 2.221525559999903, 2.1152708063882995, + 2.0105301264627213, 1.9092546837394704, 1.8136550680204002, + 1.7253747280686016, 1.6448007603414494, 1.5703671080839026, + 1.4983089214301613, 1.423312595205576, 1.339353160103573, + 1.2411921934322148, 1.1255052120775033, 0.9924790198328611, + 0.8453714260994492, 0.6907202649822489, 0.5370423239097047, + 0.3931515846676419, 0.26667754140671557, 0.1628809315765266, + 0.08417872013359039, 0.029535665390659167, -0.0036190933809276747, + -0.01940234828280088, -0.021930471085239656, -0.014202536683747167, + 0.0014847722686894198, 0.024068759061235928, 0.05282367016499909, + 0.08665068286055243, 0.12390201360765289, 0.16187394241730862, + 0.19729896875082234, 0.22689370712407775, 0.248143279717721, + 0.2597186540264325, 0.26208146463999565, 0.25707769155624854, + 0.24726908321907431, 0.23554057340069023, 0.2239139636667547, + 0.21325139796126216, 0.20317280658481554, 0.19234155052689328, + 0.17915776302144265, 0.16249086958584893, 0.14218070803624094, + 0.11936314712960616, 0.09606142769244934, 0.07473456319719805, + 0.05749040526812605, 0.045492886522426085, 0.038560940202714035, + 0.03544823416366495, 0.03424049293252882, 0.033098795679910184, + 0.03103359811424236, 0.028221541068340194, 0.025979766491857875, + 0.026302804996216213, 0.031009439069056333, 0.041078663124122464, + 0.05601132358804093, 0.07396414027638405, 0.09246298873304433, + 0.10934190210482184, 0.12417821029174131, 0.13928759073673752, + 0.1601102818820071, 0.1949503870076063, 0.25345009463676915, + 0.3448671049250259, 0.4764597039153457, 0.6502915671854227, + 0.8642637399238621 + ], + "pressure:J10:branch106_seg0": [ + 9227.688681691236, 10607.254906504992, 12051.479993293908, + 13486.311917843579, 14842.465645263806, 16063.639047709674, + 17116.27116734656, 17995.517742335323, 18702.9826708455, + 19256.090196399982, 19681.755645363944, 19986.4614838702, + 20183.10344255747, 20274.033960236287, 20252.011674933114, + 20123.543102017735, 19884.9596288596, 19547.296078600317, + 19133.700982215603, 18656.789195414814, 18140.72679008363, + 17602.753219921688, 17051.67811047474, 16495.43433417729, + 15935.488298166127, 15374.069192908843, 14816.789412919632, + 14272.3196639957, 13752.360814487945, 13268.684327560903, + 12827.385563636266, 12424.78801054954, 12047.504843644414, + 11668.87401947919, 11257.179327599712, 10780.463236630807, + 10216.830080957425, 9554.009885975942, 8804.4573389352, 7997.207482118282, + 7171.157713064682, 6377.440291219164, 5661.008958667293, + 5056.999281899969, 4581.149950347755, 4242.148364475377, + 4024.344446307596, 3906.6375412355615, 3870.7169140050873, + 3891.465400057434, 3958.315346126667, 4063.469757632276, + 4201.013208269603, 4369.644928272342, 4560.945946948522, + 4763.604954639206, 4961.556321201053, 5135.820519159712, + 5269.969879743125, 5354.676978282198, 5386.895250535638, + 5372.886321097383, 5328.734030029594, 5267.048642445211, + 5202.442948331643, 5143.725657051314, 5090.67701320592, 5037.8392674538, + 4976.447808295755, 4898.003122202078, 4799.39691997527, 4682.608132084037, + 4557.271880432163, 4436.729179772685, 4333.619064394576, + 4257.046681255283, 4209.969669579756, 4187.560980681404, + 4179.814303060519, 4176.498372435053, 4168.8366864728005, + 4154.673570010916, 4138.921221379074, 4131.332799394287, + 4143.455272343498, 4183.129097537341, 4251.965554822146, + 4343.572795583992, 4443.3998750893525, 4538.753245496744, + 4621.09451106982, 4694.574599644038, 4780.524422808205, + 4916.8102052383565, 5154.02078177724, 5546.871388717833, + 6134.605697724053, 6951.52266882623, 7993.963528508197, 9227.688681691236 + ], + "flow:branch15_seg0:J11": [ + 3.8448736873527247, 5.048787243808724, 6.4836898556879285, + 8.112556002333037, 9.879729918857457, 11.719795553205357, + 13.565942937553789, 15.357892819547272, 17.04641678003968, + 18.598078909045572, 19.99195661302645, 21.21762701499767, + 22.271861242418808, 23.15292370414175, 23.860119920766053, + 24.39222364990911, 24.748127372847566, 24.93025576852379, + 24.944313082170787, 24.801601406093543, 24.51829242162597, + 24.113090591486223, 23.606014994868904, 23.015603071786842, + 22.357839296217673, 21.646229414368122, 20.892548393962482, + 20.108514113206315, 19.306937549673254, 18.501988452383006, + 17.707835067783307, 16.936479791294314, 16.19434308730534, + 15.479629042402408, 14.781163588817112, 14.079014814834538, + 13.347788069159598, 12.561557620160798, 11.70021935911391, + 10.753751781949006, 9.726637712600885, 8.637765197091307, + 7.51814928123248, 6.406134027789354, 5.341717247675808, 4.360181736288787, + 3.487708510107723, 2.740352276719453, 2.122640256824008, + 1.6312979507030037, 1.2580353506210986, 0.9921562786976182, + 0.8237402743533252, 0.7433261016724967, 0.7416836767600717, + 0.8085529514254045, 0.9307155340109655, 1.0918579979923926, + 1.2730556113379363, 1.4547344154103365, 1.619029718748003, + 1.7528756046490754, 1.8491593380470002, 1.9071610967095, + 1.9316183017009334, 1.9298330123057081, 1.9092050657794974, + 1.8748107130589124, 1.8281318766503385, 1.7674075701434617, + 1.6891224592244811, 1.5903077828578482, 1.4706966643100186, + 1.3337903709301686, 1.186948573851704, 1.0398159977769375, + 0.9020859621783195, 0.7810208616404261, 0.6801115088065326, + 0.5984274969001321, 0.5319323684896552, 0.4756470684668783, + 0.4259622339213577, 0.38251443216386055, 0.3487138962900178, + 0.3306075417861021, 0.3347817931719641, 0.3654076291600376, + 0.4224541334462798, 0.5012205526060344, 0.5939555446627993, + 0.6937524024514236, 0.7993616053708973, 0.9197541053052357, + 1.0772278853136856, 1.306894087667498, 1.6539382254040924, + 2.1665574418453115, 2.886834256931554, 3.8448736873527247 + ], + "pressure:branch15_seg0:J11": [ + 7048.064910953878, 7936.723926027782, 8939.077780630585, + 10018.240992732342, 11130.008515838083, 12230.415412552653, + 13281.69593919703, 14257.39901099134, 15137.751796646658, + 15914.836256179773, 16588.613441075977, 17157.840146191622, + 17625.939129645358, 17993.45359707215, 18258.70173216238, 18422.951879033, + 18484.902720319442, 18448.74776718906, 18322.947668025114, + 18116.31742030081, 17842.529780156412, 17514.238161099256, + 17142.611297060506, 16737.492095916954, 16305.791352906197, + 15853.522796843718, 15386.748349068255, 14912.476400836293, + 14439.095635779027, 13975.691828105855, 13529.802980769064, + 13105.439364441347, 12701.412781391458, 12309.227464412794, + 11915.010176718159, 11500.992722816844, 11049.841756566584, + 10547.028747136972, 9987.478674475078, 9375.181753939327, + 8723.54641167873, 8055.416421978366, 7397.088229482174, 6774.997860822227, + 6210.992589574709, 5721.889027464137, 5313.868662410248, + 4987.482161622126, 4738.167668675467, 4556.910022136403, + 4436.586965129722, 4369.792335426113, 4350.794800665741, 4375.14900748157, + 4436.69947050943, 4528.344124255474, 4640.139038417178, 4760.040868667919, + 4875.5957582843785, 4976.0007262727195, 5052.9865562180685, + 5103.060988997734, 5128.006099463576, 5131.550215119616, + 5120.233097694867, 5099.970341750465, 5074.118815097454, + 5043.401759375185, 5005.9111534781005, 4958.353181561801, + 4898.094413513525, 4824.288915920271, 4739.4450793919505, + 4648.727883924737, 4558.949492573345, 4476.884862779998, + 4407.563131645129, 4352.662188349943, 4310.825818734483, 4278.53331277819, + 4251.310908202893, 4226.250211670754, 4203.016612185561, + 4184.156806834806, 4174.449743985466, 4178.8268463953755, + 4200.718763572574, 4240.18086196468, 4293.141309738523, 4353.848905684562, + 4416.367102988763, 4478.630292123292, 4545.862329117935, + 4632.376830833415, 4761.880123110417, 4964.590815571229, + 5271.342134684326, 5712.013311504465, 6302.915850091009, 7048.064910953878 + ], + "flow:J11:branch16_seg0": [ + 1.7600315747994293, 2.3155743168188976, 2.9891704353413284, + 3.7673575488332856, 4.626850491140815, 5.53793372140948, 6.46830322874729, + 7.3869696893656265, 8.26714375355934, 9.088695259082122, 9.83769587215544, + 10.505912110184527, 11.08928929110388, 11.585646087013375, + 11.993921439901168, 12.3132071913973, 12.542841068664654, + 12.683500232416185, 12.737364239459977, 12.709093938910119, + 12.60569830897515, 12.435801524404507, 12.208997871339793, + 11.93465107750557, 11.621239363002042, 11.27614181718175, + 10.905833718409964, 10.516515926415998, 10.114672803010375, + 9.707321607279695, 9.301614801221064, 8.903971160667261, + 8.518617022308119, 8.146286641382437, 7.78338554264111, + 7.4219727681138075, 7.050886442384435, 6.657789850727887, + 6.231951784287279, 5.766564217487436, 5.261034100056239, + 4.721561161864054, 4.1606570057505685, 3.5953259263035076, + 3.0445894994650753, 2.5265289470828405, 2.055942422642906, + 1.6431614660229792, 1.2931989952065013, 1.0068149650413127, + 0.7816145504774632, 0.6133805069174297, 0.497510285329888, + 0.42931890734152983, 0.4041528466265034, 0.4169208140807583, + 0.4613565329576208, 0.5297785565670138, 0.6131598893440018, + 0.701850034004195, 0.7866106423368457, 0.8599938320962451, + 0.9171128864549494, 0.9561080871787484, 0.9779097737701342, + 0.9851902755461802, 0.9812379681651819, 0.9687521642955119, + 0.9490560073814772, 0.9219751821802201, 0.8862944808324694, + 0.8406827723168204, 0.7846918013739009, 0.7194317316629711, + 0.6478014813862433, 0.5740139697338824, 0.5026977661705724, + 0.4377847374592244, 0.38170724304369896, 0.33492682838550647, + 0.296267616029437, 0.2637181476005244, 0.2354788204882438, + 0.21091799378725432, 0.19103237196324455, 0.17820017016663395, + 0.17539110075704442, 0.18491057255599697, 0.20744080839828574, + 0.24156003309484572, 0.2841888673808553, 0.33206505705013833, + 0.3838379983725647, 0.44228254505615944, 0.5160432919713973, + 0.6199804829495663, 0.7743581927873409, 1.0020965633931902, + 1.324926827887958, 1.7600315747994293 + ], + "pressure:J11:branch16_seg0": [ + 7048.064910953878, 7936.723926027782, 8939.077780630585, + 10018.240992732342, 11130.008515838083, 12230.415412552653, + 13281.69593919703, 14257.39901099134, 15137.751796646658, + 15914.836256179773, 16588.613441075977, 17157.840146191622, + 17625.939129645358, 17993.45359707215, 18258.70173216238, 18422.951879033, + 18484.902720319442, 18448.74776718906, 18322.947668025114, + 18116.31742030081, 17842.529780156412, 17514.238161099256, + 17142.611297060506, 16737.492095916954, 16305.791352906197, + 15853.522796843718, 15386.748349068255, 14912.476400836293, + 14439.095635779027, 13975.691828105855, 13529.802980769064, + 13105.439364441347, 12701.412781391458, 12309.227464412794, + 11915.010176718159, 11500.992722816844, 11049.841756566584, + 10547.028747136972, 9987.478674475078, 9375.181753939327, + 8723.54641167873, 8055.416421978366, 7397.088229482174, 6774.997860822227, + 6210.992589574709, 5721.889027464137, 5313.868662410248, + 4987.482161622126, 4738.167668675467, 4556.910022136403, + 4436.586965129722, 4369.792335426113, 4350.794800665741, 4375.14900748157, + 4436.69947050943, 4528.344124255474, 4640.139038417178, 4760.040868667919, + 4875.5957582843785, 4976.0007262727195, 5052.9865562180685, + 5103.060988997734, 5128.006099463576, 5131.550215119616, + 5120.233097694867, 5099.970341750465, 5074.118815097454, + 5043.401759375185, 5005.9111534781005, 4958.353181561801, + 4898.094413513525, 4824.288915920271, 4739.4450793919505, + 4648.727883924737, 4558.949492573345, 4476.884862779998, + 4407.563131645129, 4352.662188349943, 4310.825818734483, 4278.53331277819, + 4251.310908202893, 4226.250211670754, 4203.016612185561, + 4184.156806834806, 4174.449743985466, 4178.8268463953755, + 4200.718763572574, 4240.18086196468, 4293.141309738523, 4353.848905684562, + 4416.367102988763, 4478.630292123292, 4545.862329117935, + 4632.376830833415, 4761.880123110417, 4964.590815571229, + 5271.342134684326, 5712.013311504465, 6302.915850091009, 7048.064910953878 + ], + "flow:J11:branch24_seg0": [ + 2.084842112553295, 2.733212926989827, 3.4945194203465992, + 4.34519845349975, 5.25287942771664, 6.181861831795878, 7.097639708806496, + 7.970923130181644, 8.77927302648034, 9.509383649963445, + 10.154260740871004, 10.711714904813146, 11.182571951314934, + 11.567277617128374, 11.866198480864886, 12.079016458511814, + 12.205286304182911, 12.246755536107615, 12.20694884271081, + 12.092507467183424, 11.912594112650813, 11.677289067081713, + 11.397017123529114, 11.080951994281275, 10.736599933215633, + 10.37008759718637, 9.986714675552514, 9.591998186790317, 9.19226474666288, + 8.794666845103313, 8.40622026656224, 8.032508630627053, 7.675726064997221, + 7.333342401019972, 6.997778046176003, 6.657042046720733, + 6.2969016267751625, 5.903767769432911, 5.468267574826635, + 4.9871875644615695, 4.465603612544648, 3.9162040352272562, + 3.357492275481912, 2.810808101485847, 2.2971277482107344, + 1.8336527892059489, 1.4317660874648173, 1.097190810696474, + 0.8294412616175062, 0.6244829856616908, 0.4764208001436352, + 0.3787757717801887, 0.3262299890234372, 0.3140071943309669, + 0.3375308301335683, 0.39163213734464625, 0.4693590010533449, + 0.5620794414253786, 0.6598957219939344, 0.7528843814061416, + 0.8324190764111572, 0.8928817725528303, 0.9320464515920507, + 0.9510530095307522, 0.9537085279307994, 0.9446427367595281, + 0.9279670976143153, 0.9060585487634005, 0.8790758692688612, + 0.8454323879632416, 0.8028279783920119, 0.7496250105410275, + 0.6860048629361175, 0.6143586392671975, 0.5391470924654608, + 0.4658020280430549, 0.39938819600774716, 0.3432361241812016, + 0.2984042657628336, 0.26350066851462556, 0.23566475246021826, + 0.21192892086635395, 0.19048341343311384, 0.1715964383766063, + 0.15768152432677318, 0.15240737161946816, 0.15939069241491965, + 0.1804970566040406, 0.21501332504799414, 0.2596605195111886, + 0.30976667728194407, 0.3616873454012853, 0.4155236069983327, + 0.4774715602490763, 0.5611845933422882, 0.6869136047179316, + 0.8795800326167517, 1.1644608784521209, 1.5619074290435961, + 2.084842112553295 + ], + "pressure:J11:branch24_seg0": [ + 7048.064910953878, 7936.723926027782, 8939.077780630585, + 10018.240992732342, 11130.008515838083, 12230.415412552653, + 13281.69593919703, 14257.39901099134, 15137.751796646658, + 15914.836256179773, 16588.613441075977, 17157.840146191622, + 17625.939129645358, 17993.45359707215, 18258.70173216238, 18422.951879033, + 18484.902720319442, 18448.74776718906, 18322.947668025114, + 18116.31742030081, 17842.529780156412, 17514.238161099256, + 17142.611297060506, 16737.492095916954, 16305.791352906197, + 15853.522796843718, 15386.748349068255, 14912.476400836293, + 14439.095635779027, 13975.691828105855, 13529.802980769064, + 13105.439364441347, 12701.412781391458, 12309.227464412794, + 11915.010176718159, 11500.992722816844, 11049.841756566584, + 10547.028747136972, 9987.478674475078, 9375.181753939327, + 8723.54641167873, 8055.416421978366, 7397.088229482174, 6774.997860822227, + 6210.992589574709, 5721.889027464137, 5313.868662410248, + 4987.482161622126, 4738.167668675467, 4556.910022136403, + 4436.586965129722, 4369.792335426113, 4350.794800665741, 4375.14900748157, + 4436.69947050943, 4528.344124255474, 4640.139038417178, 4760.040868667919, + 4875.5957582843785, 4976.0007262727195, 5052.9865562180685, + 5103.060988997734, 5128.006099463576, 5131.550215119616, + 5120.233097694867, 5099.970341750465, 5074.118815097454, + 5043.401759375185, 5005.9111534781005, 4958.353181561801, + 4898.094413513525, 4824.288915920271, 4739.4450793919505, + 4648.727883924737, 4558.949492573345, 4476.884862779998, + 4407.563131645129, 4352.662188349943, 4310.825818734483, 4278.53331277819, + 4251.310908202893, 4226.250211670754, 4203.016612185561, + 4184.156806834806, 4174.449743985466, 4178.8268463953755, + 4200.718763572574, 4240.18086196468, 4293.141309738523, 4353.848905684562, + 4416.367102988763, 4478.630292123292, 4545.862329117935, + 4632.376830833415, 4761.880123110417, 4964.590815571229, + 5271.342134684326, 5712.013311504465, 6302.915850091009, 7048.064910953878 + ], + "flow:branch16_seg0:J12": [ + 1.7572503363712502, 2.3123683882249324, 2.985645816027883, + 3.7636799956258074, 4.6231656687184834, 5.534372610698836, + 6.464975531634743, 7.383961891725048, 8.264473197112801, + 9.086380304793721, 9.835732104784544, 10.504282641908324, + 11.0879967700121, 11.584681989658609, 11.993291120446465, + 12.31290872132198, 12.542868244837141, 12.683842026124116, + 12.73797539365788, 12.709938577291013, 12.606738942083451, + 12.43698926189926, 12.210302714581168, 11.936046734663739, + 11.622704749066052, 11.277661359583538, 10.907385464145479, + 10.518074277900304, 10.116208465972626, 9.708807758903214, + 9.303028338376867, 8.90531139463884, 8.51990264485805, 8.147554081996674, + 7.784693529843866, 7.423385301344234, 7.052455238768096, + 6.659549213920214, 6.233906423394761, 5.768674112308836, + 5.263235251123256, 4.723769860269922, 4.1627769731911375, + 3.5972676123078458, 3.0463054007057777, 2.5279751376718322, + 2.0571006097023425, 1.6440631369060907, 1.2938577692655127, + 1.0072627032926191, 0.7818836158750385, 0.6134795188680836, + 0.49746588466743014, 0.42914689246830845, 0.40386804517885166, + 0.41655813055030566, 0.4609518243205382, 0.5293726000435237, + 0.6127940734334519, 0.7015578157242128, 0.7864073111585401, + 0.8598828705334368, 0.9170821180808597, 0.956135491021883, + 0.9779749181113838, 0.9852756147057822, 0.981336118546934, + 0.9688674949109686, 0.9491991031432717, 0.9221585423089882, + 0.8865223082206642, 0.8409528199488339, 0.7849920464549017, + 0.7197376280838202, 0.6480888794953031, 0.5742634159251825, + 0.5028991416637814, 0.4379348914199219, 0.38182051856068505, + 0.33501816805231943, 0.2963481966951734, 0.26379535929596226, + 0.23554812646305637, 0.21096523788766944, 0.19103939432239236, + 0.1781509791374036, 0.17528108196784264, 0.1847463595708752, + 0.20724127995124814, 0.2413487004377272, 0.2839805828906072, + 0.3318546346356078, 0.38359113134219613, 0.4419324799983521, + 0.5154958382421695, 0.6191157673167241, 0.7730926053955381, + 1.000348013285698, 1.3226284899531746, 1.7572503363712502 + ], + "pressure:branch16_seg0:J12": [ + 6028.06583764146, 6652.99465989796, 7394.3369814084, 8233.623617094965, + 9142.963399412836, 10089.606096747428, 11040.191447861902, + 11964.998311872805, 12838.780689733545, 13644.326828910185, + 14370.996642404503, 15012.103192188037, 15565.401046065897, + 16029.375119383243, 16402.844734833485, 16685.460155335364, + 16876.431302265508, 16977.147836367298, 16991.171515029135, + 16924.05275604782, 16784.185919744625, 16581.002080773935, + 16324.381529112514, 16023.705436236844, 15687.033392640396, + 15321.37187137597, 14933.023080518587, 14528.300967608735, + 14114.039285790936, 13697.661714732609, 13286.346539705371, + 12885.97571449883, 12499.58927213008, 12125.890919178053, + 11759.097461849635, 11389.153644946824, 11003.601183346997, + 10589.656453037944, 10137.850363548116, 9643.742423432092, + 9109.757848602309, 8545.712257659477, 7967.043177322742, + 7392.739343530408, 6842.416731739979, 6333.741518581084, + 5879.596607289171, 5488.192002009968, 5162.34472710906, 4900.707787196381, + 4699.857116094033, 4554.849040321393, 4460.926984431562, + 4413.451111170024, 4407.457961095709, 4437.506789753668, + 4496.5444365180665, 4575.975257040271, 4666.069298069821, + 4756.970064598082, 4839.665584873991, 4907.593488893901, 4957.38254459723, + 4988.381189661516, 5002.759653010882, 5003.918565926614, + 4995.154246549858, 4978.735524560747, 4955.274264651676, 4923.90664839388, + 4883.088605676358, 4831.596423459235, 4769.614864807902, + 4699.1212298295895, 4623.86921028249, 4548.6230865452035, + 4478.094601591966, 4415.6988030192015, 4363.058738937717, + 4319.744378072474, 4283.841748156584, 4253.151506261331, 4226.18168286704, + 4202.990414341065, 4185.400574982509, 4176.346365459439, + 4178.907201118853, 4194.908533266313, 4223.981692282904, + 4263.770703441905, 4310.563369796101, 4361.330532035958, + 4416.128544334376, 4480.2069699089, 4565.442154839099, 4689.958657251271, + 4876.338370142653, 5148.858931428271, 5527.942276825054, 6028.06583764146 + ], + "flow:J12:branch17_seg0": [ + 1.4502343268455191, 1.9084663453891701, 2.464332698037388, + 3.106799641956577, 3.8166390653636424, 4.569307853926032, + 5.338106653717132, 6.097408340528402, 6.8250065111901606, + 7.504251280445362, 8.123595507575613, 8.676209864572204, + 9.158748322506673, 9.569391017811009, 9.907270521295418, + 10.171625773723775, 10.361905219731453, 10.478660096524502, + 10.52365205618588, 10.500736441781328, 10.415696008310471, + 10.2756407527808, 10.088513991197294, 9.862056044562227, + 9.603279406284148, 9.3182894160216, 9.012432597999874, 8.690829951069176, + 8.358835173135894, 8.022247077376898, 7.686978527395298, + 7.358355686080001, 7.039894197145498, 6.732226405808768, + 6.432414672034007, 6.133914611326188, 5.827500992343959, + 5.502969290004098, 5.151421718384969, 4.767181696750643, + 4.349722198788589, 3.9041287486698417, 3.440710496585366, + 2.9735096579889984, 2.5182759602334475, 2.0899509042680204, + 1.7007912638694593, 1.3593910318317153, 1.0698862270276879, + 0.8329331992879005, 0.6465618167058418, 0.5072698684263591, + 0.41127365148585987, 0.3546928791462812, 0.3336820143439323, + 0.3440551582312674, 0.38063960193779495, 0.43709785531871, + 0.5059767437360397, 0.5792978503760977, 0.6494116333865406, + 0.7101496090286185, 0.7574529026899486, 0.7897690226463472, + 0.8078603983968674, 0.8139324957668659, 0.8107098915080677, + 0.8004347837410664, 0.784209378730461, 0.7618953469382043, + 0.7324835250374491, 0.6948687170021882, 0.6486694200880198, + 0.594786867782951, 0.5356118781478387, 0.47462580164046175, + 0.4156599004865327, 0.36197050805273995, 0.3155871971285501, + 0.2768968638444433, 0.24492867635056328, 0.2180197039747208, + 0.1946716237169199, 0.17435075556237634, 0.15787263016818393, + 0.14720051424991168, 0.1447967143010565, 0.15257782728415792, + 0.17112336577486154, 0.19926796377107855, 0.23446397456444673, + 0.27399812959071923, 0.31672255738055505, 0.3648885836779352, + 0.42559701889180424, 0.5110831784139357, 0.6381088794943025, + 0.825602743158061, 1.0915326735248965, 1.4502343268455191 + ], + "pressure:J12:branch17_seg0": [ + 6028.06583764146, 6652.99465989796, 7394.3369814084, 8233.623617094965, + 9142.963399412836, 10089.606096747428, 11040.191447861902, + 11964.998311872805, 12838.780689733545, 13644.326828910185, + 14370.996642404503, 15012.103192188037, 15565.401046065897, + 16029.375119383243, 16402.844734833485, 16685.460155335364, + 16876.431302265508, 16977.147836367298, 16991.171515029135, + 16924.05275604782, 16784.185919744625, 16581.002080773935, + 16324.381529112514, 16023.705436236844, 15687.033392640396, + 15321.37187137597, 14933.023080518587, 14528.300967608735, + 14114.039285790936, 13697.661714732609, 13286.346539705371, + 12885.97571449883, 12499.58927213008, 12125.890919178053, + 11759.097461849635, 11389.153644946824, 11003.601183346997, + 10589.656453037944, 10137.850363548116, 9643.742423432092, + 9109.757848602309, 8545.712257659477, 7967.043177322742, + 7392.739343530408, 6842.416731739979, 6333.741518581084, + 5879.596607289171, 5488.192002009968, 5162.34472710906, 4900.707787196381, + 4699.857116094033, 4554.849040321393, 4460.926984431562, + 4413.451111170024, 4407.457961095709, 4437.506789753668, + 4496.5444365180665, 4575.975257040271, 4666.069298069821, + 4756.970064598082, 4839.665584873991, 4907.593488893901, 4957.38254459723, + 4988.381189661516, 5002.759653010882, 5003.918565926614, + 4995.154246549858, 4978.735524560747, 4955.274264651676, 4923.90664839388, + 4883.088605676358, 4831.596423459235, 4769.614864807902, + 4699.1212298295895, 4623.86921028249, 4548.6230865452035, + 4478.094601591966, 4415.6988030192015, 4363.058738937717, + 4319.744378072474, 4283.841748156584, 4253.151506261331, 4226.18168286704, + 4202.990414341065, 4185.400574982509, 4176.346365459439, + 4178.907201118853, 4194.908533266313, 4223.981692282904, + 4263.770703441905, 4310.563369796101, 4361.330532035958, + 4416.128544334376, 4480.2069699089, 4565.442154839099, 4689.958657251271, + 4876.338370142653, 5148.858931428271, 5527.942276825054, 6028.06583764146 + ], + "flow:J12:branch116_seg0": [ + 0.3070160095257313, 0.40390204283576214, 0.5213131179904946, + 0.6568803536692299, 0.8065266033548409, 0.9650647567728045, + 1.126868877917612, 1.286553551196647, 1.439466685922639, + 1.5821290243483586, 1.712136597208932, 1.8280727773361198, + 1.9292484475054303, 2.015290971847604, 2.086020599151044, + 2.1412829475982034, 2.1809630251056893, 2.205181929599614, + 2.214323337472001, 2.209202135509688, 2.19104293377298, + 2.1613485091184628, 2.1217887233838733, 2.073990690101512, + 2.019425342781904, 1.959371943561937, 1.8949528661456037, + 1.8272443268311283, 1.7573732928367305, 1.6865606815263199, + 1.6160498109815677, 1.54695570855884, 1.4800084477125535, + 1.4153276761879077, 1.3522788578098606, 1.2894706900180468, + 1.2249542464241359, 1.1565799239161172, 1.0824847050097919, + 1.0014924155581935, 0.9135130523346673, 0.8196411116000805, + 0.7220664766057715, 0.6237579543188482, 0.5280294404723306, + 0.4380242334038111, 0.3563093458328834, 0.2846721050743755, + 0.22397154223782506, 0.17432950400471844, 0.13532179916919665, + 0.10620965044172449, 0.08619223318157027, 0.07445401332202715, + 0.07018603083491931, 0.07250297231903831, 0.08031222238274338, + 0.09227474472481381, 0.10681732969741212, 0.12225996534811513, + 0.1369956777719994, 0.14973326150481825, 0.15962921539091135, + 0.1663664683755361, 0.1701145197145162, 0.17134311893891624, + 0.17062622703886626, 0.16843271116990224, 0.1649897244128108, + 0.16026319537078398, 0.1540387831832149, 0.14608410294664576, + 0.136322626366882, 0.12495076030086921, 0.11247700134746456, + 0.09963761428472076, 0.08723924117724864, 0.07596438336718195, + 0.0662333214321349, 0.05812130420787606, 0.0514195203446101, + 0.04577565532124146, 0.04087650274613644, 0.0366144823252931, + 0.03316676415420842, 0.030950464887491907, 0.03048436766678614, + 0.03216853228671729, 0.036117914176386635, 0.04208073666664866, + 0.04951660832616041, 0.057856505044888554, 0.06686857396164099, + 0.07704389632041682, 0.08989881935036523, 0.1080325889027884, + 0.13498372590123575, 0.1747452701276369, 0.23109581642827867, + 0.3070160095257313 + ], + "pressure:J12:branch116_seg0": [ + 6028.06583764146, 6652.99465989796, 7394.3369814084, 8233.623617094965, + 9142.963399412836, 10089.606096747428, 11040.191447861902, + 11964.998311872805, 12838.780689733545, 13644.326828910185, + 14370.996642404503, 15012.103192188037, 15565.401046065897, + 16029.375119383243, 16402.844734833485, 16685.460155335364, + 16876.431302265508, 16977.147836367298, 16991.171515029135, + 16924.05275604782, 16784.185919744625, 16581.002080773935, + 16324.381529112514, 16023.705436236844, 15687.033392640396, + 15321.37187137597, 14933.023080518587, 14528.300967608735, + 14114.039285790936, 13697.661714732609, 13286.346539705371, + 12885.97571449883, 12499.58927213008, 12125.890919178053, + 11759.097461849635, 11389.153644946824, 11003.601183346997, + 10589.656453037944, 10137.850363548116, 9643.742423432092, + 9109.757848602309, 8545.712257659477, 7967.043177322742, + 7392.739343530408, 6842.416731739979, 6333.741518581084, + 5879.596607289171, 5488.192002009968, 5162.34472710906, 4900.707787196381, + 4699.857116094033, 4554.849040321393, 4460.926984431562, + 4413.451111170024, 4407.457961095709, 4437.506789753668, + 4496.5444365180665, 4575.975257040271, 4666.069298069821, + 4756.970064598082, 4839.665584873991, 4907.593488893901, 4957.38254459723, + 4988.381189661516, 5002.759653010882, 5003.918565926614, + 4995.154246549858, 4978.735524560747, 4955.274264651676, 4923.90664839388, + 4883.088605676358, 4831.596423459235, 4769.614864807902, + 4699.1212298295895, 4623.86921028249, 4548.6230865452035, + 4478.094601591966, 4415.6988030192015, 4363.058738937717, + 4319.744378072474, 4283.841748156584, 4253.151506261331, 4226.18168286704, + 4202.990414341065, 4185.400574982509, 4176.346365459439, + 4178.907201118853, 4194.908533266313, 4223.981692282904, + 4263.770703441905, 4310.563369796101, 4361.330532035958, + 4416.128544334376, 4480.2069699089, 4565.442154839099, 4689.958657251271, + 4876.338370142653, 5148.858931428271, 5527.942276825054, 6028.06583764146 + ], + "flow:branch17_seg0:J13": [ + 1.4501882056353166, 1.9084101772863473, 2.4642675311110924, + 3.106727542763662, 3.8165625185246097, 4.569229604531097, + 5.338029375536118, 6.09733432313528, 6.824937467218304, 7.504188384794367, + 8.123539383340814, 8.676160873538336, 9.15870663410137, 9.569356671767805, + 9.907243654052772, 10.171606357022947, 10.361893270137276, + 10.478655523928209, 10.523654326725042, 10.50074504097528, + 10.415710234644152, 10.275659731995713, 10.088536964047353, + 9.862082281034812, 9.603308282191016, 9.318320414459041, + 9.012465200504995, 8.690863621307402, 8.35886932833388, 8.022281106326307, + 7.687011860043322, 7.358387952118399, 7.039925309213852, + 6.732256638235089, 6.432444701612837, 6.133945407963342, + 5.827533585966765, 5.503004669992167, 5.151460500703374, + 4.767223919917259, 4.349767392651123, 3.904175851128782, + 3.4407580421490582, 2.9735559698025757, 2.5183196081859154, + 2.089990542334643, 1.700825949661399, 1.3594204613925644, + 1.0699102575263164, 0.832952080703215, 0.6465759475893518, + 0.5072795738137504, 0.4112793776669391, 0.3546950106348196, + 0.3336809327002985, 0.344051396855925, 0.38063379518975743, + 0.4370907577342581, 0.5059691885414447, 0.5792906222472765, + 0.6494053826165771, 0.7101447710275901, 0.7574496034304069, + 0.7897671999201118, 0.8078598189479722, 0.8139328513698494, + 0.8107109424686729, 0.8004364155986535, 0.7842116069383109, + 0.7618982918777868, 0.732487296916685, 0.6948733767871954, + 0.6486748985117208, 0.5947929045782797, 0.5356181133650872, + 0.47463183857505187, 0.4156653929035497, 0.36197522363854245, + 0.3155911108698714, 0.27690008356746765, 0.2449313735230124, + 0.2180220550984376, 0.19467369423106473, 0.17435246464136284, + 0.15787376746744913, 0.14720081690592057, 0.1447959679980281, + 0.1525759507740904, 0.17112049514577743, 0.19926436390213703, + 0.234459949245295, 0.2739938327825989, 0.31671779897105173, + 0.364882675248467, 0.4255887275418031, 0.5110707074769356, + 0.6380904158513299, 0.8255763694322004, 1.091496661851161, + 1.4501882056353166 + ], + "pressure:branch17_seg0:J13": [ + 6009.193916273365, 6629.257037061625, 7365.799453519927, + 8200.697657752757, 9106.367291291317, 10050.267868476938, + 10999.119598511186, 11923.13508628058, 12796.963133707732, + 13603.21171565588, 14331.035676197269, 14973.642728612656, + 15528.676199991845, 15994.57832033828, 16370.175146015225, + 16655.082956325597, 16848.519330039762, 16951.821819322366, + 16968.459677099116, 16903.92421261912, 16766.514289797837, + 16565.603822210236, 16311.052808760915, 16012.23734401832, + 15677.24155271562, 15313.093333387476, 14926.101938780672, + 14522.57067482659, 14109.306651508634, 13693.704527269843, + 13282.937775889344, 12882.924160031662, 12496.782676696923, + 12123.350747356348, 11756.994103918714, 11387.799295861365, + 11003.39657666973, 10591.033586721225, 10141.158855646396, + 9649.175225028896, 9117.305827809312, 8555.125963530443, + 7977.874191067066, 7404.402937861498, 6854.288013663798, 6345.21223062922, + 5890.181884163174, 5497.548155857664, 5170.26401379993, 4907.123264962016, + 4704.769467431717, 4558.303898889468, 4462.98688228214, 4414.174908674506, + 4406.926371026046, 4435.830664951224, 4493.888445217216, + 4572.568044606673, 4662.19003033314, 4752.915251537841, + 4835.7181366221575, 4903.979308892912, 4954.231026073926, + 4985.740812176055, 5000.597609305726, 5002.15496550222, 4993.708203486858, + 4977.55481034945, 4954.353430956644, 4923.285457227391, 4882.827180922788, + 4831.747874812166, 4770.189366352502, 4700.06985309185, 4625.086242802408, + 4549.965523005053, 4479.413465027992, 4416.877491945953, + 4364.035696264744, 4320.515605741688, 4284.450889272579, + 4253.655309941081, 4226.615537992354, 4203.343541757359, + 4185.607276692236, 4176.303849607616, 4178.5059840977165, + 4194.071775573576, 4222.701599199872, 4262.102322464806, + 4308.603193728505, 4359.157512012739, 4413.725917846452, + 4477.3899328835405, 4561.806588904038, 4684.876129245279, + 4869.027288127666, 5138.435448894161, 5513.600016139673, 6009.193916273365 + ], + "flow:J13:branch18_seg0": [ + 0.8114065879655309, 1.067731619485539, 1.3786897972393297, + 1.7381207443632398, 2.1352857992497976, 2.556465166467699, + 2.9867264843073884, 3.4117306701052934, 3.8190466137026515, + 4.1993451848967585, 4.546151873615378, 4.855629224681295, + 5.125892815755853, 5.3559174673790775, 5.54521108542686, + 5.693349209020192, 5.800020997741233, 5.865533809049909, + 5.890877536119741, 5.8782026701690375, 5.830742494019086, + 5.752474496821236, 5.647839441584525, 5.5211695299022505, + 5.376390557721309, 5.216921675944501, 5.045759075445124, + 4.865771388831642, 4.6799562309632865, 4.4915589629680985, + 4.303888100218282, 4.119923119865862, 3.941632432257774, + 3.769373228468412, 3.6015065945009805, 3.434377418935377, + 3.2628317623936347, 3.081163614002501, 2.8843966879914893, + 2.6693537108176053, 2.435731454438424, 2.1863667973345815, + 1.9270174684089163, 1.6655321206658313, 1.4107136898920596, + 1.1709250004209768, 0.9530278851065289, 0.7618343038702091, + 0.5996728684894549, 0.4669181965938112, 0.3624759849730244, + 0.2843943102493746, 0.23055551596962298, 0.19878925516820584, + 0.18694295859147123, 0.19267153204553045, 0.21308043483768582, + 0.24462401376120252, 0.2831329172608939, 0.3241444579221351, + 0.36337859507630094, 0.39738194321364934, 0.42388070501146013, + 0.4419999337787166, 0.4521605556491459, 0.45559188975490134, + 0.4538146845326022, 0.4480824496308705, 0.43901333486065874, + 0.42653256343333806, 0.4100791918052353, 0.3890367180081717, + 0.36319218624002975, 0.3330493957122876, 0.29994308931842206, + 0.26581815291509137, 0.23281613988292763, 0.20275892981798582, + 0.1767827843259282, 0.1551076068758797, 0.13719431511032848, + 0.1221153891570573, 0.10903452512582508, 0.09765293991989743, + 0.08842486957133049, 0.08244567590900419, 0.08109019942795756, + 0.08542972031572214, 0.09578878889663218, 0.11151893771345624, + 0.131198928974224, 0.15331471957171236, 0.17722608401059553, + 0.20419157285774633, 0.23817923824890225, 0.2860293993717746, + 0.35710726920269953, 0.4619998103627972, 0.6107620677133337, + 0.8114065879655309 + ], + "pressure:J13:branch18_seg0": [ + 6009.193916273365, 6629.257037061625, 7365.799453519927, + 8200.697657752757, 9106.367291291317, 10050.267868476938, + 10999.119598511186, 11923.13508628058, 12796.963133707732, + 13603.21171565588, 14331.035676197269, 14973.642728612656, + 15528.676199991845, 15994.57832033828, 16370.175146015225, + 16655.082956325597, 16848.519330039762, 16951.821819322366, + 16968.459677099116, 16903.92421261912, 16766.514289797837, + 16565.603822210236, 16311.052808760915, 16012.23734401832, + 15677.24155271562, 15313.093333387476, 14926.101938780672, + 14522.57067482659, 14109.306651508634, 13693.704527269843, + 13282.937775889344, 12882.924160031662, 12496.782676696923, + 12123.350747356348, 11756.994103918714, 11387.799295861365, + 11003.39657666973, 10591.033586721225, 10141.158855646396, + 9649.175225028896, 9117.305827809312, 8555.125963530443, + 7977.874191067066, 7404.402937861498, 6854.288013663798, 6345.21223062922, + 5890.181884163174, 5497.548155857664, 5170.26401379993, 4907.123264962016, + 4704.769467431717, 4558.303898889468, 4462.98688228214, 4414.174908674506, + 4406.926371026046, 4435.830664951224, 4493.888445217216, + 4572.568044606673, 4662.19003033314, 4752.915251537841, + 4835.7181366221575, 4903.979308892912, 4954.231026073926, + 4985.740812176055, 5000.597609305726, 5002.15496550222, 4993.708203486858, + 4977.55481034945, 4954.353430956644, 4923.285457227391, 4882.827180922788, + 4831.747874812166, 4770.189366352502, 4700.06985309185, 4625.086242802408, + 4549.965523005053, 4479.413465027992, 4416.877491945953, + 4364.035696264744, 4320.515605741688, 4284.450889272579, + 4253.655309941081, 4226.615537992354, 4203.343541757359, + 4185.607276692236, 4176.303849607616, 4178.5059840977165, + 4194.071775573576, 4222.701599199872, 4262.102322464806, + 4308.603193728505, 4359.157512012739, 4413.725917846452, + 4477.3899328835405, 4561.806588904038, 4684.876129245279, + 4869.027288127666, 5138.435448894161, 5513.600016139673, 6009.193916273365 + ], + "flow:J13:branch49_seg0": [ + 0.6387816176697856, 0.8406785578008079, 1.0855777338717627, + 1.368606798400422, 1.6812767192748115, 2.0127644380633978, + 2.3513028912287304, 2.6856036530299856, 3.0058908535156523, + 3.30484319989761, 3.577387509725435, 3.820531648857041, 4.032813818345518, + 4.213439204388731, 4.362032568625914, 4.478257148002755, + 4.561872272396042, 4.6131217148783, 4.6327767906053, 4.622542370806242, + 4.584967740625066, 4.523185235174476, 4.440697522462828, + 4.340912751132563, 4.2269177244697085, 4.101398738514537, + 3.966706125059867, 3.825092232475762, 3.6789130973705944, + 3.5307221433582074, 3.3831237598250397, 3.2384648322525393, + 3.0982928769560796, 2.9628834097666776, 2.8309381071118573, + 2.699567989027966, 2.56470182357313, 2.421841055989667, + 2.2670638127118843, 2.0978702090996535, 1.9140359382127006, + 1.7178090537942001, 1.513740573740142, 1.3080238491367437, + 1.1076059182938556, 0.9190655419136669, 0.7477980645548699, + 0.5975861575223553, 0.4702373890368614, 0.36603388410940385, + 0.2840999626163274, 0.22288526356437585, 0.18072386169731613, + 0.15590575546661378, 0.14673797410882738, 0.15137986481039464, + 0.1675533603520715, 0.19246674397305555, 0.22283627128055083, + 0.25514616432514137, 0.28602678754027616, 0.3127628278139409, + 0.3335688984189469, 0.34776726614139514, 0.3556992632988264, + 0.3583409616149482, 0.3568962579360709, 0.3523539659677831, + 0.3451982720776522, 0.33536572844444895, 0.3224081051114499, + 0.30583665877902355, 0.285482712271691, 0.2617435088659924, + 0.23567502404666524, 0.20881368565996056, 0.18284925302062208, + 0.15921629382055663, 0.1388083265439432, 0.12179247669158791, + 0.10773705841268394, 0.09590666594138028, 0.08563916910523967, + 0.07669952472146535, 0.06944889789611866, 0.06475514099691643, + 0.06370576857007054, 0.06714623045836829, 0.07533170624914523, + 0.08774542618868075, 0.10326102027107102, 0.12067911321088658, + 0.1394917149604563, 0.16069110239072068, 0.18740948929290085, + 0.22504130810516101, 0.2809831466486304, 0.36357655906940306, + 0.48073459413782765, 0.6387816176697856 + ], + "pressure:J13:branch49_seg0": [ + 6009.193916273365, 6629.257037061625, 7365.799453519927, + 8200.697657752757, 9106.367291291317, 10050.267868476938, + 10999.119598511186, 11923.13508628058, 12796.963133707732, + 13603.21171565588, 14331.035676197269, 14973.642728612656, + 15528.676199991845, 15994.57832033828, 16370.175146015225, + 16655.082956325597, 16848.519330039762, 16951.821819322366, + 16968.459677099116, 16903.92421261912, 16766.514289797837, + 16565.603822210236, 16311.052808760915, 16012.23734401832, + 15677.24155271562, 15313.093333387476, 14926.101938780672, + 14522.57067482659, 14109.306651508634, 13693.704527269843, + 13282.937775889344, 12882.924160031662, 12496.782676696923, + 12123.350747356348, 11756.994103918714, 11387.799295861365, + 11003.39657666973, 10591.033586721225, 10141.158855646396, + 9649.175225028896, 9117.305827809312, 8555.125963530443, + 7977.874191067066, 7404.402937861498, 6854.288013663798, 6345.21223062922, + 5890.181884163174, 5497.548155857664, 5170.26401379993, 4907.123264962016, + 4704.769467431717, 4558.303898889468, 4462.98688228214, 4414.174908674506, + 4406.926371026046, 4435.830664951224, 4493.888445217216, + 4572.568044606673, 4662.19003033314, 4752.915251537841, + 4835.7181366221575, 4903.979308892912, 4954.231026073926, + 4985.740812176055, 5000.597609305726, 5002.15496550222, 4993.708203486858, + 4977.55481034945, 4954.353430956644, 4923.285457227391, 4882.827180922788, + 4831.747874812166, 4770.189366352502, 4700.06985309185, 4625.086242802408, + 4549.965523005053, 4479.413465027992, 4416.877491945953, + 4364.035696264744, 4320.515605741688, 4284.450889272579, + 4253.655309941081, 4226.615537992354, 4203.343541757359, + 4185.607276692236, 4176.303849607616, 4178.5059840977165, + 4194.071775573576, 4222.701599199872, 4262.102322464806, + 4308.603193728505, 4359.157512012739, 4413.725917846452, + 4477.3899328835405, 4561.806588904038, 4684.876129245279, + 4869.027288127666, 5138.435448894161, 5513.600016139673, 6009.193916273365 + ], + "flow:branch18_seg0:J14": [ + 0.8113161749231201, 1.0676213637546401, 1.3785617198437448, + 1.7379788623422106, 2.1351349867089664, 2.556310832604575, + 2.9865739125495145, 3.4115843906539913, 3.8189100523469235, + 4.199220688977322, 4.546040698368775, 4.855532110267736, 5.12581010104393, + 5.355849238778565, 5.545157612681273, 5.693310437633053, + 5.799996965425143, 5.865524343249149, 5.890881602102646, + 5.878219262697553, 5.830770233732539, 5.7525116672130965, + 5.64788454118282, 5.52122111335138, 5.376447388029651, 5.2169827269977205, + 5.045823323381594, 4.865837776792026, 4.680023611715221, + 4.4916261302620715, 4.303953927376861, 4.11998686354539, + 3.941693901611832, 3.7694329452349367, 3.6015658708125824, + 3.4344381515328357, 3.262895978926125, 3.0812332741621145, + 2.884473025817614, 2.6694368363092593, 2.435820474716934, + 2.1864596465057673, 1.9271112798632741, 1.6656235983219834, + 1.4107999979117474, 1.1710034701146568, 0.9530966386881442, + 0.761892704014566, 0.5997206177254469, 0.4669557712853203, + 0.3625041592748352, 0.2844137307789747, 0.23056705765474245, + 0.19879367744903462, 0.18694101647614278, 0.19266426892922278, + 0.21306909606337013, 0.24461008240026486, 0.2831180338057875, + 0.32413017197425775, 0.3633662004964599, 0.3973723122610386, + 0.4238741009128639, 0.44199624908931157, 0.4521593384135415, + 0.45559253496641927, 0.45381671651831035, 0.4480856348554892, + 0.4390176957990625, 0.42653833175102124, 0.4100865856507633, + 0.3890458617009503, 0.3632029501730634, 0.33306127698677784, + 0.29995538428425106, 0.2658300802509412, 0.23282701210349527, + 0.20276828281747733, 0.1767905562297411, 0.15511400203451056, + 0.13719966911799417, 0.12212005057590691, 0.10903862910650415, + 0.09765633555630295, 0.08842714901167492, 0.08244632390973419, + 0.08108878925446002, 0.08542608328273615, 0.09578318295064275, + 0.11151187614405242, 0.1311910100471379, 0.1533062568879523, + 0.17721672338554814, 0.20417998530210327, 0.2381630227360681, + 0.2860050438385291, 0.3570711976571979, 0.46194823609557634, + 0.6106915759204675, 0.8113161749231201 + ], + "pressure:branch18_seg0:J14": [ + 5987.613533731374, 6602.108526071247, 7333.152229701824, + 8163.017374457984, 9064.46948292534, 10005.20838263595, + 10952.047511750843, 11875.128210500134, 12748.976580223542, + 13555.997073143213, 14285.113849782083, 14929.41107262314, + 15486.406604117663, 15954.494111637421, 16332.50544460705, + 16620.020039296363, 16816.26360108581, 16922.512403955963, + 16942.13245293532, 16880.546902680697, 16745.944995932987, + 16547.635581874234, 16295.454920684431, 15998.772867720909, + 15665.70124961905, 15303.291996020143, 14917.862144117107, + 14515.702862578939, 14103.590650018297, 13688.887150823213, + 13278.75984151668, 12879.167284491981, 12493.318456019799, + 12120.202534783632, 11754.355688761076, 11386.026152547127, + 11002.946086796332, 10592.398797330769, 10144.739531878948, + 9655.193537711093, 9125.752709824663, 8565.7190014669, 7990.103116531704, + 7417.601405498312, 6867.743263353317, 6358.2286584214535, + 5902.204610198817, 5508.182969945947, 5179.270782516129, + 4914.423026172151, 4710.360534126944, 4562.235873266089, + 4465.329981843782, 4414.994678500964, 4406.313241230538, + 4433.910422303256, 4490.847888831383, 4568.667067541831, + 4657.746504141139, 4748.267497900053, 4831.188967198422, + 4899.826559808802, 4950.603932217353, 4982.695406078368, + 4998.0971926162265, 5000.10943554065, 4992.025735068542, + 4976.176060479631, 4953.272288136281, 4922.547282028966, 4882.50052452189, + 4831.893623904809, 4770.819437286713, 4701.128811366259, + 4626.4539590916465, 4551.479130633122, 4480.903133639827, + 4418.209751837533, 4365.140084375645, 4321.3869563443905, + 4285.1382735007455, 4254.223181819832, 4227.1040723753, 4203.74042593147, + 4185.837642991606, 4176.250362456927, 4178.043579735828, + 4193.112667101024, 4221.235989060713, 4260.192459272028, 4306.35868026038, + 4356.667905321319, 4410.971911565656, 4474.160687315619, + 4557.641009935922, 4679.056852623813, 4860.66240347301, + 5126.5139696006245, 5497.198390417798, 5987.613533731374 + ], + "flow:J14:branch19_seg0": [ + 0.4589651070214469, 0.6042990790450791, 0.7811432803958788, + 0.9861441143743156, 1.213301509026242, 1.4548348083437133, + 1.702192118718537, 1.9470868696667059, 2.182290693796368, + 2.4023097819779116, 2.6032969378247475, 2.782947444675583, + 2.9400960298596535, 3.0741193170703576, 3.1847165019024555, + 3.2716352342117205, 3.3346945054438275, 3.3740436411026513, + 3.390223958772277, 3.3844303584888222, 3.358477871597851, + 3.3146302615354277, 3.2554273932372597, 3.1833672733844325, + 3.1007279430019876, 3.0094971548242846, 2.9114161213679237, + 2.8081409887292517, 2.7013918885277692, 2.5930273356059113, + 2.484950993529027, 2.3788928696800897, 2.2760266376557077, + 2.1766247443235813, 2.0798221143661717, 1.9835933789350937, + 1.8850287272113226, 1.780863582501321, 1.6681997694064674, + 1.545135102246552, 1.411381688081119, 1.268446234896378, + 1.1195305891240765, 0.9690737146417049, 0.8221070114686724, + 0.6834630485753102, 0.5571577265125982, 0.44603781378678153, + 0.3515415930352659, 0.2739638325455949, 0.2127265401220052, + 0.16674185183203577, 0.13479562890430682, 0.11563870841028397, + 0.1080352404770576, 0.11064165192404295, 0.12181420006260713, + 0.13953884520941112, 0.16143916553211415, 0.1849563018061827, + 0.20761867788288282, 0.22740497924087136, 0.24295719142598352, + 0.2537183233796214, 0.2598795118616736, 0.2621173008011749, + 0.2612976971962886, 0.25815340970117284, 0.2530656519289541, + 0.2460184609261967, 0.2367071961867229, 0.2247782699927389, + 0.21009136663522304, 0.19290839539135834, 0.17396515962151082, + 0.15435773558798307, 0.13531203857317153, 0.11789135022977205, + 0.1027769906540641, 0.09013099711689969, 0.0796735276442859, + 0.0708840963410804, 0.06327645050250277, 0.0566568915199956, + 0.05125702093677904, 0.047683008616044735, 0.04671636971706326, + 0.04898679744964296, 0.0547123025967118, 0.06355707149057775, + 0.07473242942578227, 0.0873684888340051, 0.10105916949267889, + 0.11645153777208579, 0.13572091131143765, 0.16269254799953708, + 0.20265954100479258, 0.26166715100219745, 0.34553935379136536, + 0.4589651070214469 + ], + "pressure:J14:branch19_seg0": [ + 5987.613533731374, 6602.108526071247, 7333.152229701824, + 8163.017374457984, 9064.46948292534, 10005.20838263595, + 10952.047511750843, 11875.128210500134, 12748.976580223542, + 13555.997073143213, 14285.113849782083, 14929.41107262314, + 15486.406604117663, 15954.494111637421, 16332.50544460705, + 16620.020039296363, 16816.26360108581, 16922.512403955963, + 16942.13245293532, 16880.546902680697, 16745.944995932987, + 16547.635581874234, 16295.454920684431, 15998.772867720909, + 15665.70124961905, 15303.291996020143, 14917.862144117107, + 14515.702862578939, 14103.590650018297, 13688.887150823213, + 13278.75984151668, 12879.167284491981, 12493.318456019799, + 12120.202534783632, 11754.355688761076, 11386.026152547127, + 11002.946086796332, 10592.398797330769, 10144.739531878948, + 9655.193537711093, 9125.752709824663, 8565.7190014669, 7990.103116531704, + 7417.601405498312, 6867.743263353317, 6358.2286584214535, + 5902.204610198817, 5508.182969945947, 5179.270782516129, + 4914.423026172151, 4710.360534126944, 4562.235873266089, + 4465.329981843782, 4414.994678500964, 4406.313241230538, + 4433.910422303256, 4490.847888831383, 4568.667067541831, + 4657.746504141139, 4748.267497900053, 4831.188967198422, + 4899.826559808802, 4950.603932217353, 4982.695406078368, + 4998.0971926162265, 5000.10943554065, 4992.025735068542, + 4976.176060479631, 4953.272288136281, 4922.547282028966, 4882.50052452189, + 4831.893623904809, 4770.819437286713, 4701.128811366259, + 4626.4539590916465, 4551.479130633122, 4480.903133639827, + 4418.209751837533, 4365.140084375645, 4321.3869563443905, + 4285.1382735007455, 4254.223181819832, 4227.1040723753, 4203.74042593147, + 4185.837642991606, 4176.250362456927, 4178.043579735828, + 4193.112667101024, 4221.235989060713, 4260.192459272028, 4306.35868026038, + 4356.667905321319, 4410.971911565656, 4474.160687315619, + 4557.641009935922, 4679.056852623813, 4860.66240347301, + 5126.5139696006245, 5497.198390417798, 5987.613533731374 + ], + "flow:J14:branch23_seg0": [ + 0.35235106790167336, 0.46332228470956105, 0.5974184394478661, + 0.7518347479678952, 0.9218334776827245, 1.101476024260861, + 1.2843817938309778, 1.4644975209872861, 1.6366193585505553, + 1.7969109069994107, 1.9427437605440274, 2.072584665592152, + 2.1857140711842757, 2.281729921708206, 2.3604411107788184, + 2.421675203421333, 2.465302459981316, 2.4914807021464966, + 2.5006576433303698, 2.4937889042087305, 2.472292362134688, + 2.437881405677668, 2.392457147945558, 2.337853839966948, + 2.275719445027663, 2.2074855721734363, 2.1344072020136706, + 2.057696788062774, 1.9786317231874528, 1.8985987946561607, + 1.8190029338478344, 1.7410939938652998, 1.6656672639561243, + 1.5928082009113558, 1.5217437564464107, 1.450844772597742, + 1.3778672517148023, 1.3003696916607934, 1.2162732564111471, + 1.1243017340627066, 1.0244387866358147, 0.9180134116093892, + 0.8075806907391975, 0.6965498836802785, 0.588692986443075, + 0.4875404215393464, 0.39593891217554616, 0.3158548902277845, + 0.24817902469018116, 0.19299193873972537, 0.14977761915282997, + 0.11767187894693901, 0.0957714287504356, 0.0831549690387507, + 0.07890577599908513, 0.08202261700517982, 0.09125489600076303, + 0.10507123719085378, 0.12167886827367325, 0.139173870168075, + 0.15574752261357705, 0.16996733302016734, 0.18091690948688038, + 0.1882779257096902, 0.19227982655186782, 0.1934752341652443, + 0.1925190193220217, 0.1899322251543163, 0.18595204387010844, + 0.18051987082482446, 0.17337938946404025, 0.16426759170821137, + 0.15311158353784032, 0.14015288159541955, 0.12599022466274015, + 0.111472344662958, 0.09751497353032368, 0.0848769325877052, + 0.07401356557567701, 0.06498300491761083, 0.05752614147370823, + 0.051235954234826526, 0.04576217860400138, 0.04099944403630735, + 0.037170128074895885, 0.03476331529368945, 0.03437241953739677, + 0.0364392858330932, 0.04107088035393096, 0.04795480465347467, + 0.05645858062135562, 0.06593776805394719, 0.07615755389286925, + 0.08772844753001745, 0.10244211142463044, 0.12331249583899209, + 0.15441165665240528, 0.20028108509337877, 0.2651522221291023, + 0.35235106790167336 + ], + "pressure:J14:branch23_seg0": [ + 5987.613533731374, 6602.108526071247, 7333.152229701824, + 8163.017374457984, 9064.46948292534, 10005.20838263595, + 10952.047511750843, 11875.128210500134, 12748.976580223542, + 13555.997073143213, 14285.113849782083, 14929.41107262314, + 15486.406604117663, 15954.494111637421, 16332.50544460705, + 16620.020039296363, 16816.26360108581, 16922.512403955963, + 16942.13245293532, 16880.546902680697, 16745.944995932987, + 16547.635581874234, 16295.454920684431, 15998.772867720909, + 15665.70124961905, 15303.291996020143, 14917.862144117107, + 14515.702862578939, 14103.590650018297, 13688.887150823213, + 13278.75984151668, 12879.167284491981, 12493.318456019799, + 12120.202534783632, 11754.355688761076, 11386.026152547127, + 11002.946086796332, 10592.398797330769, 10144.739531878948, + 9655.193537711093, 9125.752709824663, 8565.7190014669, 7990.103116531704, + 7417.601405498312, 6867.743263353317, 6358.2286584214535, + 5902.204610198817, 5508.182969945947, 5179.270782516129, + 4914.423026172151, 4710.360534126944, 4562.235873266089, + 4465.329981843782, 4414.994678500964, 4406.313241230538, + 4433.910422303256, 4490.847888831383, 4568.667067541831, + 4657.746504141139, 4748.267497900053, 4831.188967198422, + 4899.826559808802, 4950.603932217353, 4982.695406078368, + 4998.0971926162265, 5000.10943554065, 4992.025735068542, + 4976.176060479631, 4953.272288136281, 4922.547282028966, 4882.50052452189, + 4831.893623904809, 4770.819437286713, 4701.128811366259, + 4626.4539590916465, 4551.479130633122, 4480.903133639827, + 4418.209751837533, 4365.140084375645, 4321.3869563443905, + 4285.1382735007455, 4254.223181819832, 4227.1040723753, 4203.74042593147, + 4185.837642991606, 4176.250362456927, 4178.043579735828, + 4193.112667101024, 4221.235989060713, 4260.192459272028, 4306.35868026038, + 4356.667905321319, 4410.971911565656, 4474.160687315619, + 4557.641009935922, 4679.056852623813, 4860.66240347301, + 5126.5139696006245, 5497.198390417798, 5987.613533731374 + ], + "flow:branch20_seg0:J15": [ + 3.9004110517757167, 4.994122041120759, 6.16799634032646, + 7.362093722552615, 8.514235171281774, 9.573416330480335, + 10.505190182521023, 11.295053261432772, 11.940247336514295, + 12.453325257116363, 12.85075831833184, 13.14423570702289, + 13.345693767714364, 13.457523384449066, 13.478842144883567, + 13.410115075269367, 13.249846878973198, 13.006132219850272, + 12.690384951180688, 12.31681585007572, 11.904001003900778, + 11.466030256170233, 11.014251108417165, 10.555682474688489, + 10.093063223430084, 9.628630442755506, 9.16557731110135, + 8.709949825755567, 8.270572887559169, 7.8572023432931575, + 7.476593470670823, 7.129579633195992, 6.808344921443888, 6.49508066555605, + 6.165839031171617, 5.794039910697056, 5.3574676642438455, + 4.842621518188883, 4.252337980430985, 3.6028437156063906, + 2.9240120728546435, 2.25436641463527, 1.6323780630184723, + 1.0906028226161286, 0.650497518895062, 0.32137351130230946, + 0.09654253909532387, -0.0360305904064583, -0.09478268220184818, + -0.09810359777567068, -0.05818342525621833, 0.01526796967742429, + 0.11810582419293404, 0.24751998354756288, 0.39822095496349164, + 0.5627857033039407, 0.7289146573218471, 0.8819489813623239, + 1.0076511445966043, 1.0955899941451497, 1.1406532050625433, + 1.1456698466545452, 1.1198015886216466, 1.0743457341580294, + 1.0219978650403159, 0.9712454686377693, 0.925073562477828, + 0.8811698127732949, 0.8332415991069451, 0.7741822991678129, + 0.6993897126167294, 0.6086849154781034, 0.5077717431901045, + 0.40594625783748217, 0.3140977853317015, 0.2411927778300755, + 0.19179577654275287, 0.1643203218822875, 0.1527485172473253, + 0.14849258590274406, 0.14351672160028642, 0.13404824820979586, + 0.12153062509795141, 0.11230103701168753, 0.11538602924373094, + 0.1385615812381857, 0.18555900425365063, 0.25347626236943127, + 0.333384961876513, 0.4143191354039134, 0.48712271055791784, + 0.550969131406737, 0.6175974189705944, 0.7125214267671383, + 0.8735473273362075, 1.1435094317143966, 1.5621446804714827, + 2.1603681245311024, 2.943659345574446, 3.9004110517757167 + ], + "pressure:branch20_seg0:J15": [ + 9382.724801454431, 10787.911783008485, 12249.753452779032, + 13694.223038654898, 15051.127026796756, 16265.331786443468, + 17305.346577973687, 18168.24903470837, 18859.18667067909, + 19395.69864247604, 19805.9799413194, 20096.92701949519, 20280.52377683851, + 20358.602234772283, 20323.44394041106, 20180.926365638417, + 19927.991236387596, 19577.313701000574, 19151.15820307468, + 18663.567603389383, 18139.57127769705, 17595.26657035087, + 17039.615583330073, 16479.83095153357, 15916.75429517501, + 15352.717996900004, 14793.349282996915, 14247.69861474063, + 13727.937745082605, 13245.878544049787, 12807.338915878574, + 12407.687484728112, 12032.440472107257, 11653.460555245754, + 11238.024272733022, 10753.801674531001, 10178.9636571849, + 9502.979501223646, 8740.044925031983, 7921.177036404401, + 7087.570824509521, 6291.503310485965, 5578.416297291677, + 4982.467232734223, 4518.716334229865, 4194.045778803711, + 3989.6035285360635, 3884.804635813291, 3859.483476536083, + 3888.5156460215558, 3962.4346559284777, 4073.1133347570044, + 4215.563867647042, 4388.99247114212, 4584.217407825924, 4789.666653189857, + 4988.800717440769, 5162.069599319576, 5293.189218125852, + 5373.021941077675, 5399.667253869324, 5380.1627431151055, + 5331.2480471374465, 5266.452862680524, 5200.405250102755, + 5141.365347716222, 5088.508034094037, 5035.63110818655, 4973.377607772236, + 4893.126988658661, 4791.99018462394, 4672.514769061531, 4545.349472008115, + 4424.158388532103, 4321.919075377953, 4247.557216825606, + 4203.466572157716, 4183.940622912121, 4178.312580386319, + 4176.142040257906, 4168.492187412274, 4153.8238321406025, + 4137.738054323449, 4130.6591392786295, 4144.49789082217, + 4187.099574734645, 4259.379810630132, 4354.141429057356, + 4456.169652697197, 4552.1752950796645, 4633.928769990662, + 4706.689268296588, 4793.591819774733, 4934.459261950972, + 5181.947361310109, 5591.212572154781, 6201.84491523926, 7047.929835735482, + 8119.623788298067, 9382.724801454431 + ], + "flow:J15:branch21_seg0": [ + 1.0085751568434118, 1.2762832651639544, 1.5562547752608082, + 1.8346366007171482, 2.0972725630417175, 2.333289996318753, + 2.536340182656392, 2.705507838965828, 2.8410623698496806, + 2.9468939093741975, 3.0279934481711552, 3.0858535320762113, + 3.123246138624126, 3.1401834837683364, 3.1355830312564694, + 3.110302541442017, 3.063645357423929, 2.9982000533975834, + 2.9176348052116126, 2.8249422619594875, 2.724991608869396, + 2.620734858921467, 2.5142159125316104, 2.406826123894711, + 2.2987500683146136, 2.190468456689077, 2.0829312392361587, + 1.9778200998668563, 1.8774457681516241, 1.7841367114855773, + 1.6990856563727452, 1.6217168349304496, 1.5494118404749886, + 1.4769215647793303, 1.398109329601874, 1.306672315973464, + 1.1981205880196535, 1.0701634063745127, 0.9252442686148123, + 0.7687441358511157, 0.608591052833317, 0.454737584836634, + 0.31595452252538114, 0.19903984664092564, 0.10753348210700306, + 0.042686030533021405, 0.0011455871624349884, -0.020562189415504747, + -0.026780946013203303, -0.02216704346606094, -0.008655205929124346, + 0.01184193880154042, 0.03864261686631264, 0.07143672318005757, + 0.10852150853708699, 0.14792813225459048, 0.1864201880324206, + 0.22029334875111342, 0.24636138304292932, 0.26272562372110936, + 0.26876674436745934, 0.26582104900291587, 0.25689298774164215, + 0.2445879580718908, 0.2318811592234508, 0.220399033912484, + 0.2101485690012944, 0.20006703474223073, 0.1883652521426349, + 0.17335216746140863, 0.15431389086122096, 0.13165343906094332, + 0.10731322707500673, 0.08381465254369118, 0.06373196874428019, + 0.048895560188532465, 0.03989551597947737, 0.03571432492217145, + 0.034477536005233025, 0.03408751041897534, 0.032735966831243836, + 0.030037481328425736, 0.026913150807359263, 0.02529040936668913, + 0.027479382137409043, 0.03507118095427491, 0.04844126782694095, + 0.06629254740265002, 0.08584301520387048, 0.10449999933623982, + 0.12046959821458066, 0.13448590294198495, 0.15065371041101513, + 0.1763241310256656, 0.22144703370285332, 0.29647230215303316, + 0.4097382922190185, 0.5678043879371464, 0.7690925421283927, + 1.0085751568434118 + ], + "pressure:J15:branch21_seg0": [ + 9382.724801454431, 10787.911783008485, 12249.753452779032, + 13694.223038654898, 15051.127026796756, 16265.331786443468, + 17305.346577973687, 18168.24903470837, 18859.18667067909, + 19395.69864247604, 19805.9799413194, 20096.92701949519, 20280.52377683851, + 20358.602234772283, 20323.44394041106, 20180.926365638417, + 19927.991236387596, 19577.313701000574, 19151.15820307468, + 18663.567603389383, 18139.57127769705, 17595.26657035087, + 17039.615583330073, 16479.83095153357, 15916.75429517501, + 15352.717996900004, 14793.349282996915, 14247.69861474063, + 13727.937745082605, 13245.878544049787, 12807.338915878574, + 12407.687484728112, 12032.440472107257, 11653.460555245754, + 11238.024272733022, 10753.801674531001, 10178.9636571849, + 9502.979501223646, 8740.044925031983, 7921.177036404401, + 7087.570824509521, 6291.503310485965, 5578.416297291677, + 4982.467232734223, 4518.716334229865, 4194.045778803711, + 3989.6035285360635, 3884.804635813291, 3859.483476536083, + 3888.5156460215558, 3962.4346559284777, 4073.1133347570044, + 4215.563867647042, 4388.99247114212, 4584.217407825924, 4789.666653189857, + 4988.800717440769, 5162.069599319576, 5293.189218125852, + 5373.021941077675, 5399.667253869324, 5380.1627431151055, + 5331.2480471374465, 5266.452862680524, 5200.405250102755, + 5141.365347716222, 5088.508034094037, 5035.63110818655, 4973.377607772236, + 4893.126988658661, 4791.99018462394, 4672.514769061531, 4545.349472008115, + 4424.158388532103, 4321.919075377953, 4247.557216825606, + 4203.466572157716, 4183.940622912121, 4178.312580386319, + 4176.142040257906, 4168.492187412274, 4153.8238321406025, + 4137.738054323449, 4130.6591392786295, 4144.49789082217, + 4187.099574734645, 4259.379810630132, 4354.141429057356, + 4456.169652697197, 4552.1752950796645, 4633.928769990662, + 4706.689268296588, 4793.591819774733, 4934.459261950972, + 5181.947361310109, 5591.212572154781, 6201.84491523926, 7047.929835735482, + 8119.623788298067, 9382.724801454431 + ], + "flow:J15:branch60_seg0": [ + 0.8211795839606992, 1.0529973105275146, 1.3022335243337047, + 1.5559687949620375, 1.8008313803284988, 2.0259317708251023, + 2.223899517969336, 2.3915074172274906, 2.528248001075863, + 2.6369400268059855, 2.7209440855737657, 2.7830238961331863, + 2.825712148818996, 2.849472608309656, 2.8542421694020255, + 2.839905878748788, 2.8062053789248576, 2.7548191660482244, + 2.6879924005004723, 2.608909720892211, 2.5214584936923647, + 2.4286483259132665, 2.3329823455544134, 2.2359065354908694, + 2.1380126788684857, 2.0397433805062697, 1.941719195536838, + 1.8452012896885328, 1.7520561173676292, 1.664376813870318, + 1.5836501600795103, 1.5101505572621643, 1.4422453977439742, + 1.3762189793291235, 1.3069733889518151, 1.2288063512961105, + 1.1368725888082882, 1.0282552322888596, 0.9034177261774783, + 0.7657048767109524, 0.6215314487317258, 0.4790570620111959, + 0.34655191653204115, 0.23104138414258074, 0.1372534116016849, + 0.06710169996899314, 0.019276919553482135, -0.008777915271577726, + -0.02115924387667665, -0.021700623140681517, -0.013127975495593946, + 0.002470819539576773, 0.024290863889859432, 0.051695643379096136, + 0.08366361618571652, 0.11865174392160989, 0.1540443568855708, + 0.1867399848766364, 0.21367283817931554, 0.23255607450657764, + 0.2422634743057208, 0.24339406114418285, 0.23782577374914016, + 0.2280461555875688, 0.21679399638960636, 0.20590057902692455, + 0.19606421870974217, 0.18680376830268547, 0.17675920783243848, + 0.16438474145997375, 0.1486359675207441, 0.12944744051087895, + 0.10799704217054229, 0.08626169224116086, 0.06660298896205374, + 0.05097439599348759, 0.040386996689180506, 0.03453551971606717, + 0.03215747760758903, 0.03136933310149354, 0.030433988805298236, + 0.028494598496119572, 0.025815719135084052, 0.023744047352849032, + 0.02422442694787513, 0.028968100886655444, 0.03882894271388011, + 0.053216301030578866, 0.07027242373320196, 0.08759978461375435, + 0.10316985559161372, 0.11670622973563725, 0.13059676712058196, + 0.15019770645747885, 0.18353093589061692, 0.23972435534226874, + 0.32746856422835596, 0.45330187800656524, 0.6186152526440664, + 0.8211795839606992 + ], + "pressure:J15:branch60_seg0": [ + 9382.724801454431, 10787.911783008485, 12249.753452779032, + 13694.223038654898, 15051.127026796756, 16265.331786443468, + 17305.346577973687, 18168.24903470837, 18859.18667067909, + 19395.69864247604, 19805.9799413194, 20096.92701949519, 20280.52377683851, + 20358.602234772283, 20323.44394041106, 20180.926365638417, + 19927.991236387596, 19577.313701000574, 19151.15820307468, + 18663.567603389383, 18139.57127769705, 17595.26657035087, + 17039.615583330073, 16479.83095153357, 15916.75429517501, + 15352.717996900004, 14793.349282996915, 14247.69861474063, + 13727.937745082605, 13245.878544049787, 12807.338915878574, + 12407.687484728112, 12032.440472107257, 11653.460555245754, + 11238.024272733022, 10753.801674531001, 10178.9636571849, + 9502.979501223646, 8740.044925031983, 7921.177036404401, + 7087.570824509521, 6291.503310485965, 5578.416297291677, + 4982.467232734223, 4518.716334229865, 4194.045778803711, + 3989.6035285360635, 3884.804635813291, 3859.483476536083, + 3888.5156460215558, 3962.4346559284777, 4073.1133347570044, + 4215.563867647042, 4388.99247114212, 4584.217407825924, 4789.666653189857, + 4988.800717440769, 5162.069599319576, 5293.189218125852, + 5373.021941077675, 5399.667253869324, 5380.1627431151055, + 5331.2480471374465, 5266.452862680524, 5200.405250102755, + 5141.365347716222, 5088.508034094037, 5035.63110818655, 4973.377607772236, + 4893.126988658661, 4791.99018462394, 4672.514769061531, 4545.349472008115, + 4424.158388532103, 4321.919075377953, 4247.557216825606, + 4203.466572157716, 4183.940622912121, 4178.312580386319, + 4176.142040257906, 4168.492187412274, 4153.8238321406025, + 4137.738054323449, 4130.6591392786295, 4144.49789082217, + 4187.099574734645, 4259.379810630132, 4354.141429057356, + 4456.169652697197, 4552.1752950796645, 4633.928769990662, + 4706.689268296588, 4793.591819774733, 4934.459261950972, + 5181.947361310109, 5591.212572154781, 6201.84491523926, 7047.929835735482, + 8119.623788298067, 9382.724801454431 + ], + "flow:J15:branch107_seg0": [ + 2.0706563109716063, 2.6648414654292902, 3.3095080407319464, + 3.9714883268734287, 4.6161312279115565, 5.2141945633364815, + 5.744950481895296, 6.19803800523945, 6.570936965588749, 6.86949132093618, + 7.101820784586921, 7.275358278813489, 7.396735480271241, + 7.467867292371074, 7.489016944225071, 7.4599066550785595, + 7.37999614262441, 7.253113000404464, 7.084757745468603, 6.882963867224023, + 6.657550901339016, 6.416647071335498, 6.167052850331143, + 5.912949815302912, 5.656300476246984, 5.398418605560155, + 5.140926876328353, 4.886928436200178, 4.641071002039917, + 4.4086888179372625, 4.193857654218568, 3.997712241003378, + 3.816687683224927, 3.6419401214475973, 3.460756312617928, + 3.2585612434274807, 3.022474487415903, 2.7442028795255116, + 2.423675985638695, 2.0683947030443224, 1.6938895712896007, + 1.3205717677874405, 0.9698716239610496, 0.6605215918326225, + 0.40571062518637396, 0.21158578080029497, 0.07612003237940675, + -0.006690485719375833, -0.046842492311968256, -0.05423593116892823, + -0.03640024383150004, 0.0009552113363070973, 0.055172343436761986, + 0.1243876169884092, 0.2060358302406882, 0.2962058271277403, + 0.38845011240385563, 0.4749156477345742, 0.5476169233743595, + 0.6003082959174629, 0.6296229863893634, 0.6364547365074463, + 0.6250828271308644, 0.60171162049857, 0.5733227094272588, + 0.5449458556983608, 0.5188607747667913, 0.49429900972837876, + 0.46811713913187186, 0.43644539024643053, 0.3964398542347645, + 0.3475840359062812, 0.29246147394455535, 0.23586991305263022, + 0.1837628276253676, 0.14132282164805549, 0.11151326387409494, + 0.09407047724404893, 0.08611350363450325, 0.08303574238227517, + 0.08034676596374433, 0.07551616838525053, 0.06880175515550808, + 0.06326658029214936, 0.06368222015844677, 0.07452229939725535, + 0.09828879371282952, 0.13396741393620237, 0.17726952293944057, + 0.22221935145391936, 0.26348325675172346, 0.29977699872911473, + 0.33634694143899724, 0.38599958928399397, 0.4685693577427374, + 0.6073127742190949, 0.8249378240241082, 1.1392618585873906, + 1.5559515508019865, 2.0706563109716063 + ], + "pressure:J15:branch107_seg0": [ + 9382.724801454431, 10787.911783008485, 12249.753452779032, + 13694.223038654898, 15051.127026796756, 16265.331786443468, + 17305.346577973687, 18168.24903470837, 18859.18667067909, + 19395.69864247604, 19805.9799413194, 20096.92701949519, 20280.52377683851, + 20358.602234772283, 20323.44394041106, 20180.926365638417, + 19927.991236387596, 19577.313701000574, 19151.15820307468, + 18663.567603389383, 18139.57127769705, 17595.26657035087, + 17039.615583330073, 16479.83095153357, 15916.75429517501, + 15352.717996900004, 14793.349282996915, 14247.69861474063, + 13727.937745082605, 13245.878544049787, 12807.338915878574, + 12407.687484728112, 12032.440472107257, 11653.460555245754, + 11238.024272733022, 10753.801674531001, 10178.9636571849, + 9502.979501223646, 8740.044925031983, 7921.177036404401, + 7087.570824509521, 6291.503310485965, 5578.416297291677, + 4982.467232734223, 4518.716334229865, 4194.045778803711, + 3989.6035285360635, 3884.804635813291, 3859.483476536083, + 3888.5156460215558, 3962.4346559284777, 4073.1133347570044, + 4215.563867647042, 4388.99247114212, 4584.217407825924, 4789.666653189857, + 4988.800717440769, 5162.069599319576, 5293.189218125852, + 5373.021941077675, 5399.667253869324, 5380.1627431151055, + 5331.2480471374465, 5266.452862680524, 5200.405250102755, + 5141.365347716222, 5088.508034094037, 5035.63110818655, 4973.377607772236, + 4893.126988658661, 4791.99018462394, 4672.514769061531, 4545.349472008115, + 4424.158388532103, 4321.919075377953, 4247.557216825606, + 4203.466572157716, 4183.940622912121, 4178.312580386319, + 4176.142040257906, 4168.492187412274, 4153.8238321406025, + 4137.738054323449, 4130.6591392786295, 4144.49789082217, + 4187.099574734645, 4259.379810630132, 4354.141429057356, + 4456.169652697197, 4552.1752950796645, 4633.928769990662, + 4706.689268296588, 4793.591819774733, 4934.459261950972, + 5181.947361310109, 5591.212572154781, 6201.84491523926, 7047.929835735482, + 8119.623788298067, 9382.724801454431 + ], + "flow:branch24_seg0:J16": [ + 2.0836580921550767, 2.731842563207067, 3.4930061091168674, + 4.343611164445213, 5.251279861321168, 6.180306440138651, + 7.096176667756086, 7.9695911669558965, 8.77808217113485, + 9.508343865946498, 10.15337201116352, 10.710971529800126, + 11.181975809024431, 11.566825726190551, 11.865893422906623, + 12.078857718036005, 12.205271537840055, 12.24688019864404, + 12.207194084562971, 12.092858014153881, 11.913033714796393, + 11.67779660190633, 11.397579138288444, 11.081556574438563, + 10.7372374111187, 10.370750690283964, 9.98739357497143, 9.592681627201726, + 9.192939929599804, 8.79532196354789, 8.406845059996368, 8.033102176277387, + 7.676295650831826, 7.333902979949713, 6.998354171925508, + 6.657660850815143, 6.297585473347674, 5.904531938559627, + 5.469114975240276, 4.988102291402724, 4.46655929698256, 3.917165559802238, + 3.358418794920684, 2.811661181829584, 2.297886128137734, + 1.8342967958772662, 1.4322869503466513, 1.0976006312221658, + 0.8297452491901406, 0.6246942365808571, 0.47655286711459527, + 0.37883260106725136, 0.32622298234796443, 0.3139432826974847, + 0.33741655146972743, 0.3914823221649764, 0.46918895953077705, + 0.5619066312760965, 0.6597379668223762, 0.7527563044188554, + 0.8323277938870907, 0.8928294041092594, 0.93202845516016, + 0.9510605292576702, 0.9537331132133171, 0.9446769625465631, + 0.9280076547594648, 0.9061070010797594, 0.8791364471697244, + 0.8455102333889745, 0.802924908320587, 0.7497402039737286, + 0.6861334012951639, 0.6144903246548742, 0.5392717415136543, + 0.4659112761424003, 0.3994774811202739, 0.34330380591342247, + 0.2984560272370234, 0.2635425971484758, 0.2357015304944796, + 0.21196374662183165, 0.19051456661784136, 0.17161815040180475, + 0.15768624741320222, 0.15238833326965673, 0.1593457509683268, + 0.18042874526248504, 0.2149293452502379, 0.25957065159568843, + 0.3096772777251209, 0.36159654391891094, 0.4154173920857531, + 0.47732222258505935, 0.5609526255739667, 0.6865483891677518, + 0.8790453789951183, 1.1637208932006968, 1.5609325592039844, + 2.0836580921550767 + ], + "pressure:branch24_seg0:J16": [ + 6584.1065495514495, 7368.418096637062, 8275.421288884763, + 9275.077768452362, 10328.165675115884, 11393.136250196521, + 12431.474220206419, 13412.43550425456, 14312.518171701482, + 15119.253936440207, 15827.457438578584, 16435.08268669213, + 16943.991462309346, 17354.671658804986, 17666.84206677108, + 17880.68742198224, 17995.41477203574, 18013.746559026265, + 17941.14143800062, 17785.57551889161, 17558.52781056315, + 17271.783344886895, 16936.930056062633, 16564.12855212607, + 16161.302245449107, 15735.044497444122, 15291.332109072595, + 14836.642408716009, 14378.528730635084, 13925.411788035462, + 13485.074233686018, 13063.066497109974, 12660.622691992423, + 12272.962035381677, 11889.733199354137, 11495.946206739673, + 11075.082960932406, 10612.066666343862, 10098.185025918372, + 9532.376748926281, 8922.999856596538, 8287.294337372665, + 7647.982717726009, 7029.962168341952, 6456.334767288076, + 5945.568683718796, 5508.226547565644, 5148.790566325964, + 4865.241872571631, 4651.521024100879, 4500.801295325537, + 4405.693660691666, 4360.352839735276, 4359.694390540294, + 4398.228501957752, 4469.740848247546, 4565.66560181521, 4675.487414847198, + 4787.604801895479, 4890.954285174827, 4976.284279022704, 5038.2370977632, + 5075.773269823493, 5091.01382056377, 5089.045314338992, 5075.338080304694, + 5054.104386737801, 5027.364547402566, 4994.578271815372, 4953.43104746836, + 4901.291536947132, 4836.647859967657, 4760.483024689577, 4676.32709398516, + 4589.834349914058, 4507.36589519018, 4434.412954525748, 4374.017478747428, + 4326.521407681447, 4289.665650228613, 4259.779516426682, + 4233.659264297791, 4209.83120352567, 4189.361389119764, 4175.682415392732, + 4173.21546255687, 4185.840562085141, 4214.971307446826, 4258.689191748393, + 4312.588582651014, 4371.143332241792, 4430.906846862759, + 4493.703718586062, 4568.996299450142, 4675.007125345523, + 4837.0755587708645, 5084.335122885423, 5445.727427794746, + 5941.922531130078, 6584.1065495514495 + ], + "flow:J16:branch25_seg0": [ + 1.6542213968725927, 2.169950734612614, 2.7764922912267633, + 3.455240340087626, 4.180474675277973, 4.923684995060006, + 5.657197100396268, 6.357398830459044, 7.006151128634808, + 7.592590088696946, 8.11093483246154, 8.559354693571239, 8.938440696995729, + 9.248557227983481, 9.490024551615178, 9.662576357778827, + 9.765869319698005, 9.80123899446454, 9.771433103594354, 9.681715444176493, + 9.539346394954897, 9.352376181264722, 9.129158815941683, + 8.877064741637035, 8.602149211538045, 8.30934771127428, 8.002914164270582, + 7.687254745786698, 7.367410113440375, 7.0490867127016905, + 6.737911520137156, 6.438406808786441, 6.152421490397283, + 5.878062701370221, 5.6093921528482555, 5.33691451064439, + 5.0492731033932605, 4.735561463859673, 4.388143408819303, + 4.004268555179475, 3.5877959487511704, 3.148682727452838, + 2.701608228003909, 2.2636026110351297, 1.8514978828394815, + 1.4791540821381632, 1.1558555330503675, 0.8863315732528755, + 0.6703231638765395, 0.5047027814772085, 0.3847737136979474, + 0.30535590643301996, 0.26217214472743355, 0.25137525152793205, + 0.2693116996492011, 0.31186609408255755, 0.3735192118371192, + 0.4474079562586771, 0.5256357248189191, 0.6002484374697865, + 0.6642990538944721, 0.7132109704558005, 0.745103742841906, + 0.7608157514327069, 0.7633333176275434, 0.7563478024241169, + 0.7431766453525925, 0.7257714178381668, 0.70431468390358, + 0.6775764866779167, 0.6437229082371289, 0.6014203710087498, + 0.5507597578054763, 0.49359677231450516, 0.4334559561297655, + 0.3746682340711483, 0.32130524133127153, 0.27608441394664057, + 0.23991623967571232, 0.21174092195589775, 0.18930150059284015, + 0.17021547264924655, 0.15299549205035987, 0.13780076022540688, + 0.12651100311244898, 0.12203944023082015, 0.1272934714273896, + 0.14381758298159442, 0.17111514856465962, 0.20661851160647193, + 0.24661072040693663, 0.28813057008390874, 0.3311430381415864, + 0.3804378038561828, 0.44674824266957563, 0.5461187664562366, + 0.6984205907261963, 0.9238765465495717, 1.2389488049159967, + 1.6542213968725927 + ], + "pressure:J16:branch25_seg0": [ + 6584.1065495514495, 7368.418096637062, 8275.421288884763, + 9275.077768452362, 10328.165675115884, 11393.136250196521, + 12431.474220206419, 13412.43550425456, 14312.518171701482, + 15119.253936440207, 15827.457438578584, 16435.08268669213, + 16943.991462309346, 17354.671658804986, 17666.84206677108, + 17880.68742198224, 17995.41477203574, 18013.746559026265, + 17941.14143800062, 17785.57551889161, 17558.52781056315, + 17271.783344886895, 16936.930056062633, 16564.12855212607, + 16161.302245449107, 15735.044497444122, 15291.332109072595, + 14836.642408716009, 14378.528730635084, 13925.411788035462, + 13485.074233686018, 13063.066497109974, 12660.622691992423, + 12272.962035381677, 11889.733199354137, 11495.946206739673, + 11075.082960932406, 10612.066666343862, 10098.185025918372, + 9532.376748926281, 8922.999856596538, 8287.294337372665, + 7647.982717726009, 7029.962168341952, 6456.334767288076, + 5945.568683718796, 5508.226547565644, 5148.790566325964, + 4865.241872571631, 4651.521024100879, 4500.801295325537, + 4405.693660691666, 4360.352839735276, 4359.694390540294, + 4398.228501957752, 4469.740848247546, 4565.66560181521, 4675.487414847198, + 4787.604801895479, 4890.954285174827, 4976.284279022704, 5038.2370977632, + 5075.773269823493, 5091.01382056377, 5089.045314338992, 5075.338080304694, + 5054.104386737801, 5027.364547402566, 4994.578271815372, 4953.43104746836, + 4901.291536947132, 4836.647859967657, 4760.483024689577, 4676.32709398516, + 4589.834349914058, 4507.36589519018, 4434.412954525748, 4374.017478747428, + 4326.521407681447, 4289.665650228613, 4259.779516426682, + 4233.659264297791, 4209.83120352567, 4189.361389119764, 4175.682415392732, + 4173.21546255687, 4185.840562085141, 4214.971307446826, 4258.689191748393, + 4312.588582651014, 4371.143332241792, 4430.906846862759, + 4493.703718586062, 4568.996299450142, 4675.007125345523, + 4837.0755587708645, 5084.335122885423, 5445.727427794746, + 5941.922531130078, 6584.1065495514495 + ], + "flow:J16:branch140_seg0": [ + 0.4294366952824836, 0.5618918285944532, 0.7165138178901042, + 0.8883708243575867, 1.070805186043195, 1.2566214450786448, + 1.4389795673598171, 1.6121923364968533, 1.7719310425000423, + 1.9157537772495554, 2.0424371787019813, 2.1516168362288903, + 2.243535112028698, 2.3182684982070714, 2.375868871291446, + 2.416281360257181, 2.439402218142052, 2.4456412041795, 2.4357609809686167, + 2.411142569977388, 2.3736873198414945, 2.3254204206416103, + 2.268420322346764, 2.2044918328015286, 2.1350881995806557, + 2.061402979009686, 1.984479410700847, 1.9054268814150315, + 1.8255298161594284, 1.7462352508461993, 1.6689335398592104, + 1.5946953674909474, 1.523874160434545, 1.455840278579492, + 1.3889620190772514, 1.3207463401707507, 1.2483123699544134, + 1.1689704746999516, 1.0809715664209725, 0.9838337362232475, + 0.878763348231388, 0.7684828323494014, 0.6568105669167748, + 0.5480585707944541, 0.44638824529825205, 0.3551427137391027, + 0.27643141729628407, 0.21126905796929046, 0.15942208531360105, + 0.11999145510364873, 0.09177915341664798, 0.07347669463423144, + 0.06405083762053077, 0.06256803116955267, 0.06810485182052634, + 0.07961622808241897, 0.09566974769365794, 0.11449867501741949, + 0.1341022420034572, 0.15250786694906887, 0.16802873999261872, + 0.17961843365345878, 0.1869247123182539, 0.19024477782496355, + 0.1903997955857742, 0.18832916012244616, 0.1848310094068725, + 0.1803355832415927, 0.1748217632661444, 0.16793374671105782, + 0.15920200008345808, 0.1483198329649791, 0.13537364348968783, + 0.12089355234036901, 0.10581578538388878, 0.09124304207125204, + 0.07817223978900237, 0.06721939196678192, 0.058539787561311014, + 0.051801675192578, 0.04640002990163953, 0.041748273972585126, + 0.037519074567481485, 0.03381739017639785, 0.03117524430075326, + 0.030348893038836554, 0.03205227954093726, 0.0366111622808906, + 0.04381419668557835, 0.052952139989216475, 0.06306655731818427, + 0.07346597383500222, 0.08427435394416675, 0.0968844187288766, + 0.11420438290439111, 0.14042962271151535, 0.18062478826892192, + 0.23984434665112522, 0.32198375428798787, 0.4294366952824836 + ], + "pressure:J16:branch140_seg0": [ + 6584.1065495514495, 7368.418096637062, 8275.421288884763, + 9275.077768452362, 10328.165675115884, 11393.136250196521, + 12431.474220206419, 13412.43550425456, 14312.518171701482, + 15119.253936440207, 15827.457438578584, 16435.08268669213, + 16943.991462309346, 17354.671658804986, 17666.84206677108, + 17880.68742198224, 17995.41477203574, 18013.746559026265, + 17941.14143800062, 17785.57551889161, 17558.52781056315, + 17271.783344886895, 16936.930056062633, 16564.12855212607, + 16161.302245449107, 15735.044497444122, 15291.332109072595, + 14836.642408716009, 14378.528730635084, 13925.411788035462, + 13485.074233686018, 13063.066497109974, 12660.622691992423, + 12272.962035381677, 11889.733199354137, 11495.946206739673, + 11075.082960932406, 10612.066666343862, 10098.185025918372, + 9532.376748926281, 8922.999856596538, 8287.294337372665, + 7647.982717726009, 7029.962168341952, 6456.334767288076, + 5945.568683718796, 5508.226547565644, 5148.790566325964, + 4865.241872571631, 4651.521024100879, 4500.801295325537, + 4405.693660691666, 4360.352839735276, 4359.694390540294, + 4398.228501957752, 4469.740848247546, 4565.66560181521, 4675.487414847198, + 4787.604801895479, 4890.954285174827, 4976.284279022704, 5038.2370977632, + 5075.773269823493, 5091.01382056377, 5089.045314338992, 5075.338080304694, + 5054.104386737801, 5027.364547402566, 4994.578271815372, 4953.43104746836, + 4901.291536947132, 4836.647859967657, 4760.483024689577, 4676.32709398516, + 4589.834349914058, 4507.36589519018, 4434.412954525748, 4374.017478747428, + 4326.521407681447, 4289.665650228613, 4259.779516426682, + 4233.659264297791, 4209.83120352567, 4189.361389119764, 4175.682415392732, + 4173.21546255687, 4185.840562085141, 4214.971307446826, 4258.689191748393, + 4312.588582651014, 4371.143332241792, 4430.906846862759, + 4493.703718586062, 4568.996299450142, 4675.007125345523, + 4837.0755587708645, 5084.335122885423, 5445.727427794746, + 5941.922531130078, 6584.1065495514495 + ], + "flow:branch25_seg0:J17": [ + 1.6541713477729387, 2.1698912167245905, 2.7764250398127484, + 3.455167980588132, 4.180400017384037, 4.9236108673975005, + 5.657126033955132, 6.35733275235222, 7.006091202347413, 7.592537022759069, + 8.110888746438413, 8.559315580254816, 8.93840852281485, 9.248531888434957, + 9.490006156810738, 9.662564848831698, 9.765864675246418, + 9.801241054703386, 9.771441206391604, 9.681728974727909, + 9.539364564990578, 9.352398074505702, 9.129183715147274, + 8.877091997349867, 8.602178314753141, 8.309378257578915, + 8.002945714204596, 7.68728680956383, 7.367442129291537, + 7.0491180969208935, 6.73794175846168, 6.438435670521455, + 6.1524490789410695, 5.878089534576556, 5.609419162360033, + 5.3369428567599195, 5.04930388754639, 4.735595604071895, + 4.388181295790261, 4.004309861628205, 3.5878398051362934, + 3.148727697856921, 2.7016525642642844, 2.263644531486745, + 1.8515360644430352, 1.4791873898414067, 1.1558833837691926, + 0.8863540684462939, 0.6703404743457307, 0.5047154431917399, + 0.3847822722592468, 0.3053607301549355, 0.26217369944065055, + 0.2513738703817728, 0.2693077469702693, 0.3118601206019899, + 0.3735118712242226, 0.4474000335364218, 0.5256280521554803, + 0.6002417393960563, 0.6642938438576907, 0.7132075091740079, + 0.7451019420317074, 0.7608153455988181, 0.7633339369509442, + 0.7563490681557767, 0.743178330265628, 0.7257734825011947, + 0.7043172400568999, 0.6775797362459023, 0.6437269898899519, + 0.601425324927316, 0.5507654388414366, 0.49360282367352887, + 0.43346194267492094, 0.37467373279476895, 0.32130994012752206, + 0.27608816791636753, 0.23991915779439188, 0.21174322019245545, + 0.189303426461898, 0.17021721834244224, 0.15299707307601046, + 0.13780200954441943, 0.12651162322429035, 0.12203911886580356, + 0.1272920129335228, 0.143814982363436, 0.17111166113152518, + 0.20661451548281606, 0.2466065610435119, 0.2881263397488772, + 0.33113836404366453, 0.38043172114256524, 0.44673920452696797, + 0.5461047009250354, 0.6983996156956825, 0.9238467803156716, + 1.238908836216652, 1.6541713477729387 + ], + "pressure:branch25_seg0:J17": [ + 6560.135577977465, 7338.968071243204, 8240.903474280394, + 9236.258679103179, 10286.081074430127, 11348.957990796893, + 12386.349055467885, 13367.305650068025, 14268.144838227858, + 15076.166844222264, 15785.930997385805, 16395.345324451115, + 16906.1893265338, 17318.949959511803, 17633.412573332716, + 17849.71148008627, 17967.0791975364, 17988.161704920392, + 17918.27075075699, 17765.333582676638, 17540.71490184866, + 17256.15362615344, 16923.252518035188, 16552.186144856147, + 16150.926973013784, 15726.096125154316, 15283.66609964495, + 14830.086347720122, 14372.86621140474, 13920.390119626762, + 13480.450090363702, 13058.670409480472, 12656.406525105318, + 12269.0655701885, 11886.476953545864, 11493.796718924074, + 11074.555974162507, 10613.655891878665, 10102.205486597308, + 9538.892245012974, 8931.814550766117, 8297.924604911552, + 7659.756066626815, 7042.118860816348, 6468.1665738739275, + 5956.447293305766, 5517.740886633352, 5156.724382013824, + 4871.5138273168395, 4656.1996099592825, 4503.974141563086, + 4407.454083702048, 4360.787626348904, 4358.860544640695, + 4396.216791614813, 4466.68688037964, 4561.777240663391, 4671.052230639699, + 4782.957290399859, 4886.420417381163, 4972.144270756663, + 5034.6780994041255, 5072.841983255611, 5088.673367443032, + 5087.182276931947, 5073.814524321249, 5052.82267734187, 5026.291312922095, + 4993.749811490368, 4952.934497571064, 4901.216571112965, + 4837.051718406576, 4761.3462926821985, 4677.547283903487, + 4591.247765275949, 4508.784937781801, 4435.6707659458325, 4375.0146713849, + 4327.243431375833, 4290.163633684094, 4260.147207321164, + 4233.977516586109, 4210.124979554087, 4189.580814750946, + 4175.7080961230595, 4172.899741679907, 4185.055748025233, + 4213.6573673433495, 4256.894235950733, 4310.431227056552, + 4368.76662080686, 4428.387411615043, 4490.94859062907, 4565.666603146252, + 4670.482154268206, 4830.481316705925, 5074.696505191634, + 5432.013698423215, 5923.315342487924, 6560.135577977465 + ], + "flow:J17:branch26_seg0": [ + 1.3204303017660857, 1.7332712666469408, 2.219751372703468, + 2.765092574988239, 3.348746617678134, 3.947787189027927, + 4.539842556409757, 5.105700553512725, 5.630579599070915, + 6.1055023934206005, 6.525626563354559, 6.889409384473015, + 7.197249507897558, 7.449453468555865, 7.646305486851839, + 7.787577517531606, 7.87300913283801, 7.90361489757024, 7.88154620033068, + 7.810995269049069, 7.697742740587727, 7.548268578618552, + 7.369315250665102, 7.16685346867544, 6.945813353429014, 6.710204769341483, + 6.463472136853922, 6.209159954838576, 5.951311078269798, + 5.694508273476318, 5.443301242109423, 5.201384280712908, + 4.970335701864743, 4.7487580492072174, 4.531982981450181, + 4.312452623172075, 4.081045113053977, 3.828939038436505, + 3.5498475603050856, 3.2413863779956484, 2.9064719077663574, + 2.5529402797335874, 2.1925057020336993, 1.8388530747269327, + 1.5055882809204948, 1.2039821409671423, 0.9416920669206243, + 0.7226627230522911, 0.5468212108162075, 0.4117418288949976, + 0.31365455779738377, 0.24839609664901202, 0.2124885225556647, + 0.20280765721396138, 0.21641933581136777, 0.2500186208096764, + 0.29920003319255256, 0.3584735241918168, 0.42149498578135264, + 0.4818390930388736, 0.533865894618872, 0.5738074675118464, + 0.6000510968902448, 0.6132038060842534, 0.6156128152724837, + 0.6102405958412702, 0.5997877628348799, 0.5858741792870675, + 0.5687008363358421, 0.5473149652793519, 0.5202465473031911, + 0.48639838778856, 0.44579138738432883, 0.39986807856725487, + 0.3514252024499792, 0.30393809041815895, 0.26070615190513813, + 0.22397211157915367, 0.19452800535896808, 0.17157302268483135, + 0.15332097793216357, 0.13784280162428655, 0.12390296152799639, + 0.11157697405290985, 0.10232993627723187, 0.0984882927965287, + 0.10240671034049809, 0.11537934798517054, 0.1370775038162548, + 0.16548488928051164, 0.1976281710446613, 0.231079806520113, + 0.2657026060285565, 0.30519828504614915, 0.3580361117985609, + 0.43700065219213124, 0.558031863109885, 0.7374314607766638, + 0.9886540431135189, 1.3204303017660857 + ], + "pressure:J17:branch26_seg0": [ + 6560.135577977465, 7338.968071243204, 8240.903474280394, + 9236.258679103179, 10286.081074430127, 11348.957990796893, + 12386.349055467885, 13367.305650068025, 14268.144838227858, + 15076.166844222264, 15785.930997385805, 16395.345324451115, + 16906.1893265338, 17318.949959511803, 17633.412573332716, + 17849.71148008627, 17967.0791975364, 17988.161704920392, + 17918.27075075699, 17765.333582676638, 17540.71490184866, + 17256.15362615344, 16923.252518035188, 16552.186144856147, + 16150.926973013784, 15726.096125154316, 15283.66609964495, + 14830.086347720122, 14372.86621140474, 13920.390119626762, + 13480.450090363702, 13058.670409480472, 12656.406525105318, + 12269.0655701885, 11886.476953545864, 11493.796718924074, + 11074.555974162507, 10613.655891878665, 10102.205486597308, + 9538.892245012974, 8931.814550766117, 8297.924604911552, + 7659.756066626815, 7042.118860816348, 6468.1665738739275, + 5956.447293305766, 5517.740886633352, 5156.724382013824, + 4871.5138273168395, 4656.1996099592825, 4503.974141563086, + 4407.454083702048, 4360.787626348904, 4358.860544640695, + 4396.216791614813, 4466.68688037964, 4561.777240663391, 4671.052230639699, + 4782.957290399859, 4886.420417381163, 4972.144270756663, + 5034.6780994041255, 5072.841983255611, 5088.673367443032, + 5087.182276931947, 5073.814524321249, 5052.82267734187, 5026.291312922095, + 4993.749811490368, 4952.934497571064, 4901.216571112965, + 4837.051718406576, 4761.3462926821985, 4677.547283903487, + 4591.247765275949, 4508.784937781801, 4435.6707659458325, 4375.0146713849, + 4327.243431375833, 4290.163633684094, 4260.147207321164, + 4233.977516586109, 4210.124979554087, 4189.580814750946, + 4175.7080961230595, 4172.899741679907, 4185.055748025233, + 4213.6573673433495, 4256.894235950733, 4310.431227056552, + 4368.76662080686, 4428.387411615043, 4490.94859062907, 4565.666603146252, + 4670.482154268206, 4830.481316705925, 5074.696505191634, + 5432.013698423215, 5923.315342487924, 6560.135577977465 + ], + "flow:J17:branch44_seg0": [ + 0.33374104600685306, 0.4366199500776498, 0.5566736671092801, + 0.6900754055998928, 0.8316533997059029, 0.9758236783695721, + 1.1172834775453746, 1.2516321988394934, 1.3755116032764991, + 1.487034629338469, 1.5852621830838531, 1.6699061957818022, + 1.7411590149172955, 1.79907841987909, 1.8437006699588963, + 1.8749873313000909, 1.8928555424084075, 1.8976261571331432, + 1.8898950060609236, 1.8707337056788358, 1.841621824402848, + 1.8041294958871477, 1.7598684644821696, 1.7102385286744273, + 1.656364961324126, 1.5991734882374347, 1.5394735773506716, + 1.478126854725255, 1.4161310510217382, 1.3546098234445743, + 1.2946405163522585, 1.2370513898085456, 1.1821133770763286, + 1.129331485369339, 1.0774361809098512, 1.0244902335878459, + 0.9682587744924136, 0.9066565656353895, 0.8383337354851744, + 0.7629234836325561, 0.6813678973699357, 0.5957874181233338, + 0.5091468622305845, 0.4247914567598125, 0.34594778352254024, + 0.2752052488742643, 0.21419131684856837, 0.16369134539400299, + 0.12351926352952323, 0.09297361429674234, 0.07112771446186296, + 0.056964633505923415, 0.04968517688498586, 0.048566213167811324, + 0.05288841115890157, 0.061841499792313556, 0.07431183803166998, + 0.08892650934460508, 0.10413306637412768, 0.11840264635718277, + 0.13042794923881884, 0.1394000416621615, 0.14505084514146263, + 0.14761153951456485, 0.1477211216784606, 0.14610847231450652, + 0.14339056743074804, 0.13989930321412714, 0.13561640372105777, + 0.13026477096655042, 0.12348044258676084, 0.11502693713875611, + 0.10497405145710781, 0.09373474510627386, 0.08203674022494166, + 0.07073564237661002, 0.060603788222383964, 0.05211605633721395, + 0.045391152435423826, 0.040170197507624066, 0.035982448529734395, + 0.032374416718155705, 0.02909411154801404, 0.02622503549150957, + 0.024181686947058488, 0.023550826069274878, 0.024885302593024745, + 0.028435634378265476, 0.03403415731527039, 0.04112962620230437, + 0.048978389998850576, 0.05704653322876419, 0.06543575801510806, + 0.07523343609641613, 0.08870309272840703, 0.109104048732904, + 0.14036775258579762, 0.186415319539008, 0.25025479310313353, + 0.33374104600685306 + ], + "pressure:J17:branch44_seg0": [ + 6560.135577977465, 7338.968071243204, 8240.903474280394, + 9236.258679103179, 10286.081074430127, 11348.957990796893, + 12386.349055467885, 13367.305650068025, 14268.144838227858, + 15076.166844222264, 15785.930997385805, 16395.345324451115, + 16906.1893265338, 17318.949959511803, 17633.412573332716, + 17849.71148008627, 17967.0791975364, 17988.161704920392, + 17918.27075075699, 17765.333582676638, 17540.71490184866, + 17256.15362615344, 16923.252518035188, 16552.186144856147, + 16150.926973013784, 15726.096125154316, 15283.66609964495, + 14830.086347720122, 14372.86621140474, 13920.390119626762, + 13480.450090363702, 13058.670409480472, 12656.406525105318, + 12269.0655701885, 11886.476953545864, 11493.796718924074, + 11074.555974162507, 10613.655891878665, 10102.205486597308, + 9538.892245012974, 8931.814550766117, 8297.924604911552, + 7659.756066626815, 7042.118860816348, 6468.1665738739275, + 5956.447293305766, 5517.740886633352, 5156.724382013824, + 4871.5138273168395, 4656.1996099592825, 4503.974141563086, + 4407.454083702048, 4360.787626348904, 4358.860544640695, + 4396.216791614813, 4466.68688037964, 4561.777240663391, 4671.052230639699, + 4782.957290399859, 4886.420417381163, 4972.144270756663, + 5034.6780994041255, 5072.841983255611, 5088.673367443032, + 5087.182276931947, 5073.814524321249, 5052.82267734187, 5026.291312922095, + 4993.749811490368, 4952.934497571064, 4901.216571112965, + 4837.051718406576, 4761.3462926821985, 4677.547283903487, + 4591.247765275949, 4508.784937781801, 4435.6707659458325, 4375.0146713849, + 4327.243431375833, 4290.163633684094, 4260.147207321164, + 4233.977516586109, 4210.124979554087, 4189.580814750946, + 4175.7080961230595, 4172.899741679907, 4185.055748025233, + 4213.6573673433495, 4256.894235950733, 4310.431227056552, + 4368.76662080686, 4428.387411615043, 4490.94859062907, 4565.666603146252, + 4670.482154268206, 4830.481316705925, 5074.696505191634, + 5432.013698423215, 5923.315342487924, 6560.135577977465 + ], + "flow:branch26_seg0:J18": [ + 1.3202832289566393, 1.7330961120146695, 2.219553214727449, + 2.764879083154765, 3.3485260806192287, 3.947567989452957, + 4.539632211237126, 5.105504777315506, 5.630401928579189, + 6.105344957670391, 6.525489737152348, 6.889293182864226, + 7.197153815319543, 7.449377981681316, 7.646250528034453, + 7.7875429089447135, 7.8729948238836105, 7.903620423348032, + 7.881569637579543, 7.811034815814943, 7.697796064752843, + 7.548332983737989, 7.369388604631706, 7.166933839442834, + 6.945899228496171, 6.710294944422527, 6.463565316230082, + 6.2092546968545905, 5.951405728655465, 5.694601103608565, + 5.443390727515305, 5.201469712397835, 4.9704173508521166, + 4.748837417756985, 4.53206278974535, 4.3125362826704245, + 4.081135885737483, 3.8290396653906966, 3.5499592337356978, + 3.2415081926666875, 2.906601348160565, 2.553073135520361, + 2.1926368329787214, 1.8389772195648044, 1.5057014836266867, + 1.2040810164030797, 0.9417748655768231, 0.7227296768120298, + 0.5468728131093772, 0.4117796505005692, 0.31368019831853816, + 0.24841067017121643, 0.21249339602231426, 0.2028038169427836, + 0.2164078657466153, 0.25000112774373173, 0.2991784391008335, + 0.3584501431951778, 0.42147227585158015, 0.48181920109230325, + 0.5338503635818465, 0.5737970911497184, 0.6000456338687241, + 0.6132024937943472, 0.6156145651334577, 0.6102442848210692, + 0.599792708843312, 0.5858802491882413, 0.5687083474082197, + 0.5473245081517495, 0.5202585392122814, 0.4864129589212793, + 0.4458081216835512, 0.39988593966829206, 0.3514429110877783, + 0.30395439247627193, 0.2607201111354707, 0.22398328939603787, + 0.19453670070694698, 0.17157986343325815, 0.15332669882631583, + 0.13784797667358323, 0.12390765074881983, 0.11158069917639621, + 0.10233182691272959, 0.09848742712079761, 0.10240249662264701, + 0.1153717534930819, 0.13706726674667347, 0.1654731148796701, + 0.1976158866778692, 0.23106731077765053, 0.2656888390562309, + 0.3051804453858333, 0.35800967450535737, 0.4369595397076137, + 0.5579704888109948, 0.7373442365969648, 0.988536792396211, + 1.3202832289566393 + ], + "pressure:branch26_seg0:J18": [ + 6527.635628217944, 7299.084545631663, 8194.274120675993, + 9184.012618289868, 10229.723929179365, 11290.171449415613, + 12326.76166096853, 13308.244896945132, 14210.667504357223, + 15020.983460631238, 15733.391504713127, 16345.7209841683, + 16859.62953363494, 17275.60759131941, 17593.52656139277, + 17813.458101475277, 17934.669569512815, 17959.694929684712, + 17893.653238530613, 17744.39705617671, 17523.132869950594, + 17241.54322079955, 16911.25179116425, 16542.460147201957, + 16143.215479835353, 15720.182366440398, 15279.333598065476, + 14827.083672804682, 14370.883592570162, 13919.06994762204, + 13479.45075022691, 13057.754324643405, 12655.508785069123, + 12268.385154261492, 11886.465189767157, 11495.10813430496, + 11077.913205340985, 10619.744164895395, 10111.454852513272, + 9551.380897936006, 8947.249463824115, 8315.611576864312, + 7678.739678799713, 7061.328249064896, 6486.6057165608445, + 5973.247971490972, 5532.349833517684, 5168.862414961318, + 4881.105522566576, 4663.377725089504, 4508.898684057902, + 4410.295229001169, 4361.698037860145, 4357.949410543108, + 4393.636478160142, 4462.6470226193005, 4556.586582940545, + 4665.12699805468, 4776.775542123013, 4880.445164353571, 4966.770361712987, + 5030.163840203082, 5069.248439863981, 5085.93958103636, + 5085.1374377461125, 5072.255255556772, 5051.602098817202, + 5025.354100209621, 4993.1407538574695, 4952.770997113766, + 4901.621478993761, 4838.102135760928, 4763.011351735286, + 4679.680558174487, 4593.616252744246, 4511.1226229401145, + 4437.74230268863, 4376.681744546587, 4328.4874411975225, + 4291.060913898664, 4260.835030798593, 4234.574954144716, + 4210.6727825733615, 4190.013892606285, 4175.862885488167, + 4172.572329070476, 4184.069828673589, 4211.933160247876, + 4254.502920443466, 4307.54497660997, 4365.593555501792, 4425.043257981235, + 4487.312580233085, 4561.275185645417, 4664.4792823197795, + 4821.664110945105, 5061.7190556254145, 5413.465571804681, + 5898.099944453904, 6527.635628217944 + ], + "flow:J18:branch27_seg0": [ + 0.9122227879778022, 1.1975738994156502, 1.5339586417643667, + 1.9111908338955954, 2.315078493149928, 2.7297637040328895, + 3.139753628314201, 3.5317263484828025, 3.8954188882235607, + 4.224580321963933, 4.515829888924784, 4.7680787354258545, + 4.981590005808585, 5.156574561380968, 5.29322962836278, 5.391399103264947, + 5.450903069286956, 5.472436520468395, 5.45748121526659, 5.408928995614743, + 5.330772473675515, 5.227494086182094, 5.103761668176744, + 4.963713805984679, 4.810770889604743, 4.647715344492135, + 4.4769357326851535, 4.3008861936618965, 4.122363337689722, + 3.9445373202915412, 3.770558615950137, 3.602990638495191, + 3.4429387104323532, 3.2894532343451277, 3.139321719170676, + 2.987328508243641, 2.827167160957316, 2.6527283880487422, + 2.4596440897223206, 2.2462396211918567, 2.0145029833222177, + 1.769829678818515, 1.5203068369838428, 1.2753974975199476, + 1.0445227459855448, 0.8354990068756264, 0.6536502644858396, + 0.5017306706254464, 0.3797128326229717, 0.28593295662876267, + 0.2177887333690676, 0.17239995576039396, 0.14735547524341586, + 0.14048929072541974, 0.14976892155760102, 0.17290841650775185, + 0.20686369491353018, 0.24784028816749315, 0.2914508195506427, + 0.333247060528401, 0.3693192742087345, 0.3970475934920216, + 0.4153020028506299, 0.42448941195176915, 0.42622427469120455, + 0.4225535295961374, 0.4153485368491355, 0.40573719910713735, + 0.3938671577493899, 0.3790858356293864, 0.36037860534464755, + 0.3369838671166667, 0.30890942285268774, 0.27714542314532326, + 0.2436201996369705, 0.2107357143160234, 0.1807772781492944, + 0.15530387580630617, 0.1348728355845148, 0.11893908165627266, + 0.1062721179089325, 0.0955374163052326, 0.08587543197270393, + 0.07733068512870347, 0.07090918966800352, 0.06821639616278548, + 0.07088234473500583, 0.07980918665316193, 0.09477918085420516, + 0.11440639428110018, 0.1366380130252111, 0.15979019091115243, + 0.1837542435581302, 0.21107004428541298, 0.24757269755655445, + 0.3020873821117701, 0.38563228620290263, 0.5094906204080727, + 0.682995457421384, 0.9122227879778022 + ], + "pressure:J18:branch27_seg0": [ + 6527.635628217944, 7299.084545631663, 8194.274120675993, + 9184.012618289868, 10229.723929179365, 11290.171449415613, + 12326.76166096853, 13308.244896945132, 14210.667504357223, + 15020.983460631238, 15733.391504713127, 16345.7209841683, + 16859.62953363494, 17275.60759131941, 17593.52656139277, + 17813.458101475277, 17934.669569512815, 17959.694929684712, + 17893.653238530613, 17744.39705617671, 17523.132869950594, + 17241.54322079955, 16911.25179116425, 16542.460147201957, + 16143.215479835353, 15720.182366440398, 15279.333598065476, + 14827.083672804682, 14370.883592570162, 13919.06994762204, + 13479.45075022691, 13057.754324643405, 12655.508785069123, + 12268.385154261492, 11886.465189767157, 11495.10813430496, + 11077.913205340985, 10619.744164895395, 10111.454852513272, + 9551.380897936006, 8947.249463824115, 8315.611576864312, + 7678.739678799713, 7061.328249064896, 6486.6057165608445, + 5973.247971490972, 5532.349833517684, 5168.862414961318, + 4881.105522566576, 4663.377725089504, 4508.898684057902, + 4410.295229001169, 4361.698037860145, 4357.949410543108, + 4393.636478160142, 4462.6470226193005, 4556.586582940545, + 4665.12699805468, 4776.775542123013, 4880.445164353571, 4966.770361712987, + 5030.163840203082, 5069.248439863981, 5085.93958103636, + 5085.1374377461125, 5072.255255556772, 5051.602098817202, + 5025.354100209621, 4993.1407538574695, 4952.770997113766, + 4901.621478993761, 4838.102135760928, 4763.011351735286, + 4679.680558174487, 4593.616252744246, 4511.1226229401145, + 4437.74230268863, 4376.681744546587, 4328.4874411975225, + 4291.060913898664, 4260.835030798593, 4234.574954144716, + 4210.6727825733615, 4190.013892606285, 4175.862885488167, + 4172.572329070476, 4184.069828673589, 4211.933160247876, + 4254.502920443466, 4307.54497660997, 4365.593555501792, 4425.043257981235, + 4487.312580233085, 4561.275185645417, 4664.4792823197795, + 4821.664110945105, 5061.7190556254145, 5413.465571804681, + 5898.099944453904, 6527.635628217944 + ], + "flow:J18:branch122_seg0": [ + 0.4080604409788372, 0.5355222125990196, 0.6855945729630826, + 0.8536882492591698, 1.0334475874693008, 1.217804285420068, + 1.3998785829229248, 1.5737784288327017, 1.7349830403556283, + 1.8807646357064591, 2.0096598482275656, 2.1212144474383727, + 2.215563809510957, 2.292803420300347, 2.353020899671674, + 2.3961438056797673, 2.422091754596656, 2.431183902879637, + 2.4240884223129524, 2.402105820200199, 2.3670235910773285, + 2.3208388975558965, 2.2656269364549635, 2.2032200334581566, + 2.135128338891427, 2.062579599930392, 1.986629583544928, + 1.9083685031926934, 1.829042390965742, 1.7500637833170247, + 1.6728321115651679, 1.598479073902643, 1.527478640419762, + 1.4593841834118575, 1.392741070574673, 1.3252077744267838, + 1.2539687247801665, 1.176311277341954, 1.0903151440133763, + 0.9952685714748305, 0.8920983648383467, 0.7832434567018461, + 0.6723299959948787, 0.5635797220448571, 0.461178737641142, + 0.36858200952745324, 0.28812460109098337, 0.22099900618658355, + 0.1671599804864055, 0.12584669387180655, 0.09589146494947051, + 0.0760107144108225, 0.06513792077889843, 0.062314526217363844, + 0.0666389441890143, 0.07709271123597988, 0.09231474418730329, + 0.11060985502768467, 0.13002145630093737, 0.14857214056390222, + 0.16453108937311206, 0.17674949765769685, 0.18474363101809416, + 0.18871308184257826, 0.1893902904422532, 0.18769075522493178, + 0.18444417199417665, 0.18014305008110407, 0.17484118965882967, + 0.16823867252236313, 0.15987993386763388, 0.1494290918046126, + 0.13689869883086359, 0.1227405165229688, 0.10782271145080784, + 0.09321867816024848, 0.07994283298617631, 0.06867941358973169, + 0.059663865122432186, 0.052640781776985494, 0.04705458091738329, + 0.04231056036835063, 0.0380322187761159, 0.03425001404769272, + 0.031422637244726055, 0.030271030958012157, 0.03152015188764119, + 0.035562566839919985, 0.042288085892468304, 0.051066720598569884, + 0.06097787365265813, 0.07127711986649812, 0.08193459549810075, + 0.09411040110042031, 0.11043697694880292, 0.13487215759584356, + 0.1723382026080922, 0.227853616188892, 0.3055413349748269, + 0.4080604409788372 + ], + "pressure:J18:branch122_seg0": [ + 6527.635628217944, 7299.084545631663, 8194.274120675993, + 9184.012618289868, 10229.723929179365, 11290.171449415613, + 12326.76166096853, 13308.244896945132, 14210.667504357223, + 15020.983460631238, 15733.391504713127, 16345.7209841683, + 16859.62953363494, 17275.60759131941, 17593.52656139277, + 17813.458101475277, 17934.669569512815, 17959.694929684712, + 17893.653238530613, 17744.39705617671, 17523.132869950594, + 17241.54322079955, 16911.25179116425, 16542.460147201957, + 16143.215479835353, 15720.182366440398, 15279.333598065476, + 14827.083672804682, 14370.883592570162, 13919.06994762204, + 13479.45075022691, 13057.754324643405, 12655.508785069123, + 12268.385154261492, 11886.465189767157, 11495.10813430496, + 11077.913205340985, 10619.744164895395, 10111.454852513272, + 9551.380897936006, 8947.249463824115, 8315.611576864312, + 7678.739678799713, 7061.328249064896, 6486.6057165608445, + 5973.247971490972, 5532.349833517684, 5168.862414961318, + 4881.105522566576, 4663.377725089504, 4508.898684057902, + 4410.295229001169, 4361.698037860145, 4357.949410543108, + 4393.636478160142, 4462.6470226193005, 4556.586582940545, + 4665.12699805468, 4776.775542123013, 4880.445164353571, 4966.770361712987, + 5030.163840203082, 5069.248439863981, 5085.93958103636, + 5085.1374377461125, 5072.255255556772, 5051.602098817202, + 5025.354100209621, 4993.1407538574695, 4952.770997113766, + 4901.621478993761, 4838.102135760928, 4763.011351735286, + 4679.680558174487, 4593.616252744246, 4511.1226229401145, + 4437.74230268863, 4376.681744546587, 4328.4874411975225, + 4291.060913898664, 4260.835030798593, 4234.574954144716, + 4210.6727825733615, 4190.013892606285, 4175.862885488167, + 4172.572329070476, 4184.069828673589, 4211.933160247876, + 4254.502920443466, 4307.54497660997, 4365.593555501792, 4425.043257981235, + 4487.312580233085, 4561.275185645417, 4664.4792823197795, + 4821.664110945105, 5061.7190556254145, 5413.465571804681, + 5898.099944453904, 6527.635628217944 + ], + "flow:branch27_seg0:J19": [ + 0.9121438204394643, 1.1974796554354952, 1.5338518261312404, + 1.9110755311104872, 2.314959178199375, 2.729644931128523, + 3.139639494076211, 3.5316199675525315, 3.895322248765249, + 4.224494602666695, 4.515755315140989, 4.7680153411284705, + 4.981537716883426, 5.156533218961884, 5.293199402200457, + 5.391379895860814, 5.450894863081973, 5.472439067997754, + 5.457493502174802, 5.4089500578939145, 5.33080104762022, + 5.227528720812581, 5.103801199371055, 4.963757178072803, + 4.810817276967698, 4.6477640879309075, 4.476986132737586, + 4.300937474237223, 4.122414607750087, 3.944587641760188, + 3.7706071596871946, 3.6030369995866987, 3.4429830094392453, + 3.2894962613775363, 3.1393649209117145, 2.9873737174214043, + 2.827216148947015, 2.6527826597068773, 2.4597043199234245, + 2.2463053688322887, 2.0145729281691893, 1.7699015689680593, + 1.5203779104259643, 1.2754649089186094, 1.0445843193105195, + 0.8355528851929824, 0.6536954782438269, 0.5017672936859802, + 0.37974112241876673, 0.2859537518894476, 0.2178028909843039, + 0.17240809727869436, 0.1473583342187038, 0.14048740339299637, + 0.1497628789481616, 0.17289907334234778, 0.2068520841964669, + 0.24782765753312744, 0.2914384983668711, 0.33323621610617016, + 0.3693107613501342, 0.3970418592779758, 0.4152989335925928, + 0.42448861174046726, 0.42622515757897994, 0.42255548541909577, + 0.41535118796816844, 0.4057404604256738, 0.3938711908154447, + 0.3790909551998008, 0.36038504261079873, 0.3369917013948926, + 0.30891843926702833, 0.27715507465818656, 0.24362979913369331, + 0.2107445800367863, 0.1807848928692131, 0.15530999333776985, + 0.1348775999598171, 0.11894282470941091, 0.10627523904999292, + 0.09554023099610492, 0.0858779838506202, 0.07733272736349263, + 0.07091025825829912, 0.06821599292562971, 0.07088013903142892, + 0.07980514722354125, 0.09477369379309887, 0.11440004824910187, + 0.13663136902925838, 0.15978343018923935, 0.18374682476097345, + 0.21106048984797676, 0.24755859444035502, 0.30206547547770857, + 0.3855995349347067, 0.509443979357318, 0.6829326559325558, + 0.9121438204394643 + ], + "pressure:branch27_seg0:J19": [ + 6515.887882421288, 7284.6652580054415, 8177.414053491435, + 9165.121180277862, 10209.347306215064, 11268.919940550877, + 12305.226467509183, 13286.908231992586, 14189.913321085594, + 15001.069622964445, 15714.445024580233, 16327.839650687854, + 16842.86669800883, 17260.017667518183, 17579.19494024575, + 17800.447688417713, 17923.05585797401, 17949.51309836162, + 17884.868702969976, 17736.94805102581, 17516.900414106447, + 17236.387739654285, 16907.041218792077, 16539.072269126245, + 16140.555204464768, 15718.170541253521, 15277.891381779029, + 14826.119723245361, 14370.28555162776, 13918.708135470995, + 13479.201232901414, 13057.530700812, 12655.287174293382, + 12268.237190135025, 11886.554016578119, 11495.670670577185, + 11079.211303754812, 10622.02631018969, 10114.877330830725, + 9555.972578409404, 8952.904614548645, 8322.078987900099, + 7685.673236695564, 7068.339701215747, 6493.333735221846, + 5979.377610339058, 5537.680104475593, 5173.2919973793705, + 4884.607266826159, 4666.0000590553545, 4510.700322985398, + 4411.338621901105, 4362.0392469494445, 4357.628769665174, + 4392.709682115087, 4461.190376378355, 4554.712208941323, + 4662.985878970723, 4774.541105289475, 4878.285454719219, + 4964.828808754458, 5028.534367771113, 5067.953499976214, + 5084.957228325525, 5084.405767400255, 5071.700377104693, + 5051.170437565896, 5025.0252119511915, 4992.93051143352, + 4952.721704376556, 4901.7775808770675, 4838.491619145318, + 4763.62320331042, 4680.461876055594, 4594.482676106927, 4511.977711642989, + 4438.500614249439, 4377.292916199351, 4328.944478281034, + 4291.391369460457, 4261.088646043679, 4234.795054115742, + 4210.8744314930145, 4190.173826916745, 4175.9220974479795, + 4172.457050957026, 4183.7161237154905, 4211.311963940076, + 4253.639815961264, 4306.50225547135, 4364.44673788135, 4423.834661411394, + 4485.999118565708, 4559.689745725377, 4662.312628047665, + 4818.481191126553, 5057.032659409653, 5406.765114385903, + 5888.9878374731425, 6515.887882421288 + ], + "flow:J19:branch28_seg0": [ + 0.3662379656402814, 0.4815790309340524, 0.6182347496836538, + 0.7721944561659624, 0.937764588265008, 1.1084659002985124, + 1.2778794376883682, 1.440398275749464, 1.5916674117039953, + 1.728940455531168, 1.8506912161184808, 1.9563984545855408, + 2.0461098526577253, 2.119918556819538, 2.177916646621333, + 2.220040973749758, 2.2462257075701837, 2.256713653750065, + 2.2520756337542056, 2.2334554839865364, 2.202446083222801, + 2.1608824156208875, 2.1106877328083367, 2.053589776874344, + 1.9910330739952962, 1.9241898640043626, 1.854059218418597, + 1.7816489919939615, 1.7080970291911746, 1.6346957110592957, + 1.5627496273073433, 1.4933465551784761, 1.4270061947869757, + 1.3634302729783974, 1.3013874738873854, 1.2388070795422919, + 1.1731254988607425, 1.1018092305826892, 1.0229699844823685, + 0.9357970926637943, 0.8409582758558661, 0.7405316091651694, + 0.6377486306144735, 0.5364646791771736, 0.4405775496125394, + 0.35338053774403794, 0.27718985341724, 0.21324405648837588, + 0.16164362782075112, 0.12177569810477334, 0.09259211118223311, + 0.07291796453986558, 0.06173763972365407, 0.05814338479692271, + 0.06129982108225984, 0.07027374810022884, 0.08384277998142274, + 0.10047498529824013, 0.11838209184883128, 0.1357264269824749, + 0.1508698229488961, 0.16267477933091828, 0.17060649966610555, + 0.17477425940390778, 0.17579431176589577, 0.1744961213309574, + 0.171665020979751, 0.16779921658627878, 0.16300093121557876, + 0.15703302186480508, 0.14948828125051428, 0.14003919233751233, + 0.12865242189953702, 0.11569529490463652, 0.10192588482062093, + 0.08831800583719128, 0.0758226399773146, 0.06511800230666714, + 0.05647707372852022, 0.049718789611204954, 0.044363722856121474, + 0.039860589763600976, 0.035831152430862066, 0.032254622096413686, + 0.02950611567593245, 0.028226312350006236, 0.029090636419042477, + 0.03250504739524603, 0.03843093922818157, 0.046341940065787735, + 0.05541503583720896, 0.06493305459685028, 0.07477631292540798, + 0.08587509296738303, 0.10049503405053982, 0.12215452829957635, + 0.1553186249155678, 0.20463118217741544, 0.27405567244019413, + 0.3662379656402814 + ], + "pressure:J19:branch28_seg0": [ + 6515.887882421288, 7284.6652580054415, 8177.414053491435, + 9165.121180277862, 10209.347306215064, 11268.919940550877, + 12305.226467509183, 13286.908231992586, 14189.913321085594, + 15001.069622964445, 15714.445024580233, 16327.839650687854, + 16842.86669800883, 17260.017667518183, 17579.19494024575, + 17800.447688417713, 17923.05585797401, 17949.51309836162, + 17884.868702969976, 17736.94805102581, 17516.900414106447, + 17236.387739654285, 16907.041218792077, 16539.072269126245, + 16140.555204464768, 15718.170541253521, 15277.891381779029, + 14826.119723245361, 14370.28555162776, 13918.708135470995, + 13479.201232901414, 13057.530700812, 12655.287174293382, + 12268.237190135025, 11886.554016578119, 11495.670670577185, + 11079.211303754812, 10622.02631018969, 10114.877330830725, + 9555.972578409404, 8952.904614548645, 8322.078987900099, + 7685.673236695564, 7068.339701215747, 6493.333735221846, + 5979.377610339058, 5537.680104475593, 5173.2919973793705, + 4884.607266826159, 4666.0000590553545, 4510.700322985398, + 4411.338621901105, 4362.0392469494445, 4357.628769665174, + 4392.709682115087, 4461.190376378355, 4554.712208941323, + 4662.985878970723, 4774.541105289475, 4878.285454719219, + 4964.828808754458, 5028.534367771113, 5067.953499976214, + 5084.957228325525, 5084.405767400255, 5071.700377104693, + 5051.170437565896, 5025.0252119511915, 4992.93051143352, + 4952.721704376556, 4901.7775808770675, 4838.491619145318, + 4763.62320331042, 4680.461876055594, 4594.482676106927, 4511.977711642989, + 4438.500614249439, 4377.292916199351, 4328.944478281034, + 4291.391369460457, 4261.088646043679, 4234.795054115742, + 4210.8744314930145, 4190.173826916745, 4175.9220974479795, + 4172.457050957026, 4183.7161237154905, 4211.311963940076, + 4253.639815961264, 4306.50225547135, 4364.44673788135, 4423.834661411394, + 4485.999118565708, 4559.689745725377, 4662.312628047665, + 4818.481191126553, 5057.032659409653, 5406.765114385903, + 5888.9878374731425, 6515.887882421288 + ], + "flow:J19:branch47_seg0": [ + 0.5459058547991827, 0.7159006245014429, 0.9156170764475868, + 1.1388810749445246, 1.377194589934367, 1.6211790308300107, + 1.8617600563878436, 2.0912216918030677, 2.3036548370612526, + 2.4955541471355276, 2.6650640990225085, 2.8116168865429287, + 2.9354278642257015, 3.036614662142344, 3.1152827555791247, + 3.1713389221110555, 3.204669155511789, 3.2157254142476894, + 3.205417868420596, 3.1754945739073763, 3.1283549643974182, + 3.066646305191693, 2.9931134665627175, 2.910167401198458, + 2.8197842029724023, 2.7235742239265446, 2.622926914318989, + 2.5192884822432617, 2.414317578558912, 2.3098919307008927, + 2.207857532379852, 2.1096904444082223, 2.01597681465227, + 1.9260659883991382, 1.837977447024329, 1.7485666378791127, + 1.6540906500862729, 1.550973429124188, 1.4367343354410569, + 1.3105082761684947, 1.1736146523133233, 1.0293699598028903, + 0.8826292798114909, 0.7390002297414354, 0.6040067696979803, + 0.48217234744894455, 0.3765056248265867, 0.28852323719760437, + 0.21809749459801556, 0.1641780537846743, 0.12521077980207074, + 0.0994901327388288, 0.08562069449504976, 0.08234401859607363, + 0.08846305786590174, 0.10262532524211893, 0.12300930421504419, + 0.1473526722348873, 0.1730564065180398, 0.19750978912369524, + 0.2184409384012381, 0.23436707994705763, 0.24469243392648724, + 0.24971435233655961, 0.25043084581308417, 0.24805936408813833, + 0.2436861669884175, 0.237941243839395, 0.23087025959986593, + 0.22205793333499563, 0.21089676136028446, 0.19695250905738024, + 0.18026601736749137, 0.16145977975355005, 0.1417039143130724, + 0.12242657419959506, 0.10496225289189845, 0.09019199103110269, + 0.07840052623129685, 0.06922403509820593, 0.061911516193871446, + 0.055679641232503935, 0.05004683141975811, 0.04507810526707897, + 0.04140414258236669, 0.03998968057562347, 0.04178950261238646, + 0.04730009982829522, 0.05634275456491731, 0.06805810818331413, + 0.08121633319204942, 0.09485037559238908, 0.1089705118355655, + 0.12518539688059374, 0.1470635603898152, 0.17991094717813216, + 0.2302809100191388, 0.3048127971799027, 0.4088769834923617, + 0.5459058547991827 + ], + "pressure:J19:branch47_seg0": [ + 6515.887882421288, 7284.6652580054415, 8177.414053491435, + 9165.121180277862, 10209.347306215064, 11268.919940550877, + 12305.226467509183, 13286.908231992586, 14189.913321085594, + 15001.069622964445, 15714.445024580233, 16327.839650687854, + 16842.86669800883, 17260.017667518183, 17579.19494024575, + 17800.447688417713, 17923.05585797401, 17949.51309836162, + 17884.868702969976, 17736.94805102581, 17516.900414106447, + 17236.387739654285, 16907.041218792077, 16539.072269126245, + 16140.555204464768, 15718.170541253521, 15277.891381779029, + 14826.119723245361, 14370.28555162776, 13918.708135470995, + 13479.201232901414, 13057.530700812, 12655.287174293382, + 12268.237190135025, 11886.554016578119, 11495.670670577185, + 11079.211303754812, 10622.02631018969, 10114.877330830725, + 9555.972578409404, 8952.904614548645, 8322.078987900099, + 7685.673236695564, 7068.339701215747, 6493.333735221846, + 5979.377610339058, 5537.680104475593, 5173.2919973793705, + 4884.607266826159, 4666.0000590553545, 4510.700322985398, + 4411.338621901105, 4362.0392469494445, 4357.628769665174, + 4392.709682115087, 4461.190376378355, 4554.712208941323, + 4662.985878970723, 4774.541105289475, 4878.285454719219, + 4964.828808754458, 5028.534367771113, 5067.953499976214, + 5084.957228325525, 5084.405767400255, 5071.700377104693, + 5051.170437565896, 5025.0252119511915, 4992.93051143352, + 4952.721704376556, 4901.7775808770675, 4838.491619145318, + 4763.62320331042, 4680.461876055594, 4594.482676106927, 4511.977711642989, + 4438.500614249439, 4377.292916199351, 4328.944478281034, + 4291.391369460457, 4261.088646043679, 4234.795054115742, + 4210.8744314930145, 4190.173826916745, 4175.9220974479795, + 4172.457050957026, 4183.7161237154905, 4211.311963940076, + 4253.639815961264, 4306.50225547135, 4364.44673788135, 4423.834661411394, + 4485.999118565708, 4559.689745725377, 4662.312628047665, + 4818.481191126553, 5057.032659409653, 5406.765114385903, + 5888.9878374731425, 6515.887882421288 + ], + "flow:branch29_seg0:J20": [ + 10.680237570599854, 13.773433418753092, 17.162667743321705, + 20.6821265609196, 24.153026273204095, 27.418291552449414, + 30.360085123137395, 32.91188267238749, 35.04716289174095, + 36.783437616916856, 38.1555385192873, 39.19710057265905, + 39.94214462311231, 40.40357290658387, 40.58564304034156, + 40.49080624096037, 40.11805648164737, 39.48733094785457, + 38.62722422840222, 37.57772522680117, 36.38939990055608, + 35.105443451257266, 33.76294200678205, 32.387014045257, 30.99129834778626, + 29.585568180659227, 28.180258887636, 26.792133160972256, + 25.445163417689617, 24.166718825594412, 22.97840972532495, + 21.88752571512016, 20.878615071023233, 19.909272954743543, + 18.91681165616491, 17.82738432332419, 16.573610879227584, + 15.108621908337149, 13.425868522577716, 11.556923626676152, + 9.574535433450496, 7.579349503046527, 5.6804687736018185, + 3.9769871261240732, 2.5426483634423964, 1.4180358698062507, + 0.6016639633157315, 0.07017553762019241, -0.22170849090996836, + -0.32318988523079345, -0.2734564194548478, -0.10453182059928005, + 0.16564661242453504, 0.5242068887441562, 0.9550942558339688, + 1.4367002952675247, 1.9355189156578068, 2.410832860235068, + 2.8208751802482803, 3.131844207204565, 3.3236207140644876, + 3.3969764214659843, 3.3706117127872313, 3.273506320332366, + 3.140325702608269, 2.9977191142355086, 2.859527694036656, + 2.724893890840436, 2.5807339365478232, 2.4092702302041107, + 2.196647063389703, 1.9393976334017387, 1.6490606536731434, + 1.3484047748150674, 1.0666429748467579, 0.8303536999653262, + 0.6561098723947707, 0.5450050180651039, 0.48484369904073105, + 0.4543367676751692, 0.43134516578230614, 0.4023780887037648, + 0.36702746423724136, 0.33866113410610116, 0.33974170928025044, + 0.39229274639878486, 0.5096654464046355, 0.6886382186055382, + 0.9095648828088668, 1.143969993409729, 1.3652617615993707, + 1.565604801688129, 1.768867312211072, 2.0366474379061636, + 2.46694730555651, 3.1774710167318942, 4.285591806304218, + 5.888583004229429, 8.02434941690331, 10.680237570599854 + ], + "pressure:branch29_seg0:J20": [ + 9371.887196159378, 10782.675939231347, 12255.70309064999, + 13716.267437339999, 15093.959835789403, 16331.503692806553, + 17394.633619491666, 18279.05340192079, 18987.88965692095, + 19536.717888018848, 19954.877861163208, 20249.2190279301, + 20432.18556943848, 20507.51396621198, 20467.761741788843, + 20319.951830021226, 20061.398910889697, 19703.526442653638, + 19269.706795460796, 18773.371693366804, 18239.042172017424, + 17683.92458331224, 17116.909175500845, 16546.00851390765, + 15972.637037483082, 15399.190566046618, 14831.418691898103, + 14278.13738179271, 13751.21615534764, 13262.34014042744, + 12817.490756071276, 12412.18693925651, 12032.646053195831, + 11651.199642384952, 11235.270796128674, 10752.445775282831, + 10180.536716539167, 9507.574766286109, 8746.399289098415, + 7927.226482173723, 7089.918200165837, 6286.567490657003, + 5563.325023829497, 4955.475240124231, 4479.119341524897, + 4143.0449298006115, 3930.432574646135, 3820.2741447505277, + 3793.8471653252304, 3824.994268926682, 3903.315031322914, + 4020.385506239578, 4169.73551665599, 4350.332834859502, 4552.688687406517, + 4765.100013485737, 4971.377241184414, 5151.950206400841, + 5290.302030588182, 5377.165822182294, 5410.025032368645, + 5395.1292822919295, 5349.200001442094, 5285.517176626169, + 5218.599796011289, 5157.516828293925, 5102.045359900223, 5046.57250732434, + 4982.27105213633, 4900.661551796352, 4798.7653155120215, + 4678.735342232745, 4550.649668204361, 4427.993573204119, 4323.54817912085, + 4246.428500191621, 4199.480347153524, 4177.620037812757, + 4170.448720336881, 4167.878862139062, 4160.84927675462, 4147.363649224134, + 4132.587882663972, 4126.44807234061, 4140.611150779588, 4182.910916605582, + 4254.632623672291, 4349.201593425501, 4451.712636395137, + 4549.133983699037, 4633.259866974293, 4708.7140781424805, + 4797.779224850152, 4939.470689622517, 5185.735713542237, + 5592.145182045888, 6198.232132085597, 7039.268757438424, + 8108.792685897258, 9371.887196159378 + ], + "flow:J20:branch30_seg0": [ + 0.9515423952069478, 1.2205557899890367, 1.5104974367820807, + 1.8065008469777286, 2.0930960420595586, 2.3574398946071833, + 2.590621079558739, 2.788535323801326, 2.9502899046826587, + 3.0787253636395446, 3.1777197236266614, 3.250388036631389, + 3.2997492253811047, 3.3265890135654663, 3.3309481578157834, + 3.312930057106048, 3.27230412649256, 3.211036143763128, 3.131817991430742, + 3.0382305969606938, 2.934782848056197, 2.8250260109174676, + 2.711870346223489, 2.5971151123654903, 2.481536450557396, + 2.3657166700731507, 2.2504282472238333, 2.1371188587634626, + 2.0279119058246122, 1.9251753152111524, 1.8306095904037865, + 1.7444965881864771, 1.6650078142971205, 1.5878959111961197, + 1.507313083250981, 1.416693181005784, 1.310427025890437, + 1.1850128106015012, 1.0408483879670758, 0.8816593293656706, + 0.7146589183463345, 0.549197945894426, 0.39484360938476953, + 0.2597981482330782, 0.14964671512113353, 0.06691577558494759, + 0.010301300609600734, -0.023037602460215547, -0.03760897720337447, + -0.037928177331068125, -0.02719798264434039, -0.007933990215267982, + 0.018690433565620942, 0.05186210947527916, 0.09028250868905663, + 0.13210488002344647, 0.1743344615492568, 0.2133936828033425, + 0.2457501487910943, 0.26875450071428564, 0.28106610676174953, + 0.2832776549032637, 0.2775145248143819, 0.26657992369674155, + 0.2536164391212886, 0.2407976373152076, 0.22900391072798232, + 0.2177855912523261, 0.20568006243891848, 0.19097288197790688, + 0.17249481885268428, 0.15013658628403975, 0.12520356413326814, + 0.09992278405736711, 0.07695850237780147, 0.05855354247541593, + 0.045906565016116174, 0.03874132514263628, 0.035651931401493114, + 0.03455593165977855, 0.033468876075081734, 0.03137960714434173, + 0.028541200891059382, 0.026426080161612426, 0.027206206015454874, + 0.03281378653859718, 0.044234338814099695, 0.06084832338420218, + 0.08057521790855843, 0.10072970455104577, 0.11902277100921488, + 0.13512455388201827, 0.1517328249783914, 0.17493097540410132, + 0.21388116128763307, 0.2790906042630875, 0.3805032447947978, + 0.5258896554001926, 0.717085196489188, 0.9515423952069478 + ], + "pressure:J20:branch30_seg0": [ + 9371.887196159378, 10782.675939231347, 12255.70309064999, + 13716.267437339999, 15093.959835789403, 16331.503692806553, + 17394.633619491666, 18279.05340192079, 18987.88965692095, + 19536.717888018848, 19954.877861163208, 20249.2190279301, + 20432.18556943848, 20507.51396621198, 20467.761741788843, + 20319.951830021226, 20061.398910889697, 19703.526442653638, + 19269.706795460796, 18773.371693366804, 18239.042172017424, + 17683.92458331224, 17116.909175500845, 16546.00851390765, + 15972.637037483082, 15399.190566046618, 14831.418691898103, + 14278.13738179271, 13751.21615534764, 13262.34014042744, + 12817.490756071276, 12412.18693925651, 12032.646053195831, + 11651.199642384952, 11235.270796128674, 10752.445775282831, + 10180.536716539167, 9507.574766286109, 8746.399289098415, + 7927.226482173723, 7089.918200165837, 6286.567490657003, + 5563.325023829497, 4955.475240124231, 4479.119341524897, + 4143.0449298006115, 3930.432574646135, 3820.2741447505277, + 3793.8471653252304, 3824.994268926682, 3903.315031322914, + 4020.385506239578, 4169.73551665599, 4350.332834859502, 4552.688687406517, + 4765.100013485737, 4971.377241184414, 5151.950206400841, + 5290.302030588182, 5377.165822182294, 5410.025032368645, + 5395.1292822919295, 5349.200001442094, 5285.517176626169, + 5218.599796011289, 5157.516828293925, 5102.045359900223, 5046.57250732434, + 4982.27105213633, 4900.661551796352, 4798.7653155120215, + 4678.735342232745, 4550.649668204361, 4427.993573204119, 4323.54817912085, + 4246.428500191621, 4199.480347153524, 4177.620037812757, + 4170.448720336881, 4167.878862139062, 4160.84927675462, 4147.363649224134, + 4132.587882663972, 4126.44807234061, 4140.611150779588, 4182.910916605582, + 4254.632623672291, 4349.201593425501, 4451.712636395137, + 4549.133983699037, 4633.259866974293, 4708.7140781424805, + 4797.779224850152, 4939.470689622517, 5185.735713542237, + 5592.145182045888, 6198.232132085597, 7039.268757438424, + 8108.792685897258, 9371.887196159378 + ], + "flow:J20:branch33_seg0": [ + 2.892460254473704, 3.73018150601871, 4.644659236491027, 5.589755074692102, + 6.516273534415989, 7.381587044982141, 8.154455381559567, + 8.818131900427197, 9.366926822054168, 9.80739953102206, + 10.150419872840235, 10.406210062788743, 10.584657596916164, + 10.6893998276189, 10.721506443956686, 10.681356686308963, + 10.568430166094904, 10.387989080921827, 10.147762208591722, + 9.858712410959168, 9.53464513317238, 9.187273297523692, 8.826524808161782, + 8.458902945421556, 8.087690985413213, 7.7150940044332135, + 7.343548266432557, 6.97733308052251, 6.622808819965839, 6.287352022147993, + 5.976760351883386, 5.692907761000631, 5.43133078536995, 5.180142915588901, + 4.9219042368772685, 4.636210321131906, 4.304592045734982, + 3.9144609404626154, 3.4645052238050535, 2.9640071716185927, + 2.4336039926201396, 1.9014444058767883, 1.3977057137611937, + 0.9494748068513797, 0.5765234922281012, 0.289111836060955, + 0.085871292140844, -0.04060887033280267, -0.10364601676517336, + -0.11728409212321132, -0.09253588592310719, -0.03813239421073828, + 0.04134035298354807, 0.14272640724683808, 0.26204274202884686, + 0.3937218532854604, 0.5288100993236897, 0.6563270338792242, + 0.7649889021096216, 0.8457506894550251, 0.8933795670563899, + 0.9084973607384061, 0.8966498075162692, 0.8661769036538836, + 0.8268701269663924, 0.7861486316210686, 0.7477400307967127, + 0.7111935465989244, 0.6726246483629433, 0.6268716935715766, + 0.5699283432058272, 0.5007825822249783, 0.4226489892949724, + 0.34190391388683034, 0.2667027935845557, 0.20440871624346216, + 0.1595196728717139, 0.13215769068932895, 0.11873831628024639, + 0.11313235248885326, 0.1090584772944504, 0.10272491605769364, + 0.0940659882104244, 0.08690547219882279, 0.08760948461871482, + 0.10238519406181218, 0.13497097820347242, 0.184409910564253, + 0.24514013541709626, 0.3091273521629016, 0.36888714463755296, + 0.42219593828668167, 0.47567279266425705, 0.5464185321344613, + 0.6615379887308197, 0.8534502498988941, 1.1543314891008196, + 1.5903493813525749, 2.1711947354285606, 2.892460254473704 + ], + "pressure:J20:branch33_seg0": [ + 9371.887196159378, 10782.675939231347, 12255.70309064999, + 13716.267437339999, 15093.959835789403, 16331.503692806553, + 17394.633619491666, 18279.05340192079, 18987.88965692095, + 19536.717888018848, 19954.877861163208, 20249.2190279301, + 20432.18556943848, 20507.51396621198, 20467.761741788843, + 20319.951830021226, 20061.398910889697, 19703.526442653638, + 19269.706795460796, 18773.371693366804, 18239.042172017424, + 17683.92458331224, 17116.909175500845, 16546.00851390765, + 15972.637037483082, 15399.190566046618, 14831.418691898103, + 14278.13738179271, 13751.21615534764, 13262.34014042744, + 12817.490756071276, 12412.18693925651, 12032.646053195831, + 11651.199642384952, 11235.270796128674, 10752.445775282831, + 10180.536716539167, 9507.574766286109, 8746.399289098415, + 7927.226482173723, 7089.918200165837, 6286.567490657003, + 5563.325023829497, 4955.475240124231, 4479.119341524897, + 4143.0449298006115, 3930.432574646135, 3820.2741447505277, + 3793.8471653252304, 3824.994268926682, 3903.315031322914, + 4020.385506239578, 4169.73551665599, 4350.332834859502, 4552.688687406517, + 4765.100013485737, 4971.377241184414, 5151.950206400841, + 5290.302030588182, 5377.165822182294, 5410.025032368645, + 5395.1292822919295, 5349.200001442094, 5285.517176626169, + 5218.599796011289, 5157.516828293925, 5102.045359900223, 5046.57250732434, + 4982.27105213633, 4900.661551796352, 4798.7653155120215, + 4678.735342232745, 4550.649668204361, 4427.993573204119, 4323.54817912085, + 4246.428500191621, 4199.480347153524, 4177.620037812757, + 4170.448720336881, 4167.878862139062, 4160.84927675462, 4147.363649224134, + 4132.587882663972, 4126.44807234061, 4140.611150779588, 4182.910916605582, + 4254.632623672291, 4349.201593425501, 4451.712636395137, + 4549.133983699037, 4633.259866974293, 4708.7140781424805, + 4797.779224850152, 4939.470689622517, 5185.735713542237, + 5592.145182045888, 6198.232132085597, 7039.268757438424, + 8108.792685897258, 9371.887196159378 + ], + "flow:J20:branch42_seg0": [ + 1.1788189761780254, 1.5144474711472626, 1.8773532289437231, + 2.2490175397984156, 2.6099699575303514, 2.9438953125026908, + 3.2393272074706174, 3.4907769478103314, 3.696789130821703, + 3.8607859956758563, 3.987483469218687, 4.080832952554644, + 4.14470071708548, 4.180143609662702, 4.187320704318561, 4.166345716646172, + 4.116925026379083, 4.04144061139457, 3.943160059297342, + 3.8265506684796002, 3.697238169346438, 3.559712269426799, + 3.4177067156372294, 3.273553935161249, 3.128296088599681, + 2.9826910570007255, 2.8376900162423087, 2.6950706242762457, + 2.5574575674321838, 2.427817593488633, 2.3083256726963026, + 2.1994552088008, 2.0990479203918646, 2.0019301777790623, + 1.9008745798634845, 1.7876747016042656, 1.6552049872683212, + 1.498912537402962, 1.3190475984514172, 1.1200127715476487, + 0.9106559535203788, 0.7025757524318527, 0.5077595383894449, + 0.3366123180075296, 0.19636516405106394, 0.09038083165867912, + 0.017280945802514547, -0.026333073082488834, -0.04606345812580909, + -0.04755471167412025, -0.034905106570158086, -0.011364513163859977, + 0.021545281846173114, 0.06275110822712869, 0.11064659011280019, + 0.16297256257808765, 0.21602111121719733, 0.26534303318601427, + 0.3064954006328741, 0.3360896897025213, 0.35232826886573176, + 0.35584660809968904, 0.3491923372504923, 0.33583220640231426, + 0.3197102568087789, 0.303608372429749, 0.28872607406311024, + 0.27459585763726724, 0.25944840037610156, 0.24114923175505937, + 0.21818867283546567, 0.19035868908452183, 0.15920439845794113, + 0.1274506490198935, 0.09842141312189995, 0.07496469976090528, + 0.05866032781344586, 0.049255799376362784, 0.04507953569135114, + 0.043550420129812153, 0.04216782602375144, 0.03959963415418029, + 0.03607288340677177, 0.03335297333474485, 0.034123285285352314, + 0.040824025858908715, 0.054769274993036035, 0.07527975860470407, + 0.09984734702125059, 0.12514242719528634, 0.14824994943363878, + 0.1686203420431966, 0.1894282303430181, 0.21807991026900353, + 0.26587175719866735, 0.3458964878220606, 0.47073733989260164, + 0.6502859375901103, 0.8872281345561975, 1.1788189761780254 + ], + "pressure:J20:branch42_seg0": [ + 9371.887196159378, 10782.675939231347, 12255.70309064999, + 13716.267437339999, 15093.959835789403, 16331.503692806553, + 17394.633619491666, 18279.05340192079, 18987.88965692095, + 19536.717888018848, 19954.877861163208, 20249.2190279301, + 20432.18556943848, 20507.51396621198, 20467.761741788843, + 20319.951830021226, 20061.398910889697, 19703.526442653638, + 19269.706795460796, 18773.371693366804, 18239.042172017424, + 17683.92458331224, 17116.909175500845, 16546.00851390765, + 15972.637037483082, 15399.190566046618, 14831.418691898103, + 14278.13738179271, 13751.21615534764, 13262.34014042744, + 12817.490756071276, 12412.18693925651, 12032.646053195831, + 11651.199642384952, 11235.270796128674, 10752.445775282831, + 10180.536716539167, 9507.574766286109, 8746.399289098415, + 7927.226482173723, 7089.918200165837, 6286.567490657003, + 5563.325023829497, 4955.475240124231, 4479.119341524897, + 4143.0449298006115, 3930.432574646135, 3820.2741447505277, + 3793.8471653252304, 3824.994268926682, 3903.315031322914, + 4020.385506239578, 4169.73551665599, 4350.332834859502, 4552.688687406517, + 4765.100013485737, 4971.377241184414, 5151.950206400841, + 5290.302030588182, 5377.165822182294, 5410.025032368645, + 5395.1292822919295, 5349.200001442094, 5285.517176626169, + 5218.599796011289, 5157.516828293925, 5102.045359900223, 5046.57250732434, + 4982.27105213633, 4900.661551796352, 4798.7653155120215, + 4678.735342232745, 4550.649668204361, 4427.993573204119, 4323.54817912085, + 4246.428500191621, 4199.480347153524, 4177.620037812757, + 4170.448720336881, 4167.878862139062, 4160.84927675462, 4147.363649224134, + 4132.587882663972, 4126.44807234061, 4140.611150779588, 4182.910916605582, + 4254.632623672291, 4349.201593425501, 4451.712636395137, + 4549.133983699037, 4633.259866974293, 4708.7140781424805, + 4797.779224850152, 4939.470689622517, 5185.735713542237, + 5592.145182045888, 6198.232132085597, 7039.268757438424, + 8108.792685897258, 9371.887196159378 + ], + "flow:J20:branch48_seg0": [ + 0.906246292115497, 1.1644704077822836, 1.4441015476312085, + 1.7307268073345732, 2.009454015768846, 2.2676949500368644, + 2.4965001439574, 2.6913931031985956, 2.8514201909672203, + 2.9789191724266435, 3.0774794332610544, 3.1502741723671046, + 3.200138440970984, 3.2280360472761305, 3.234107121923361, + 3.218396031645161, 3.18077169416516, 3.1229809760381824, + 3.0475413549637174, 2.9579055869030975, 2.8583221513190025, + 2.752313340573601, 2.6427631052419005, 2.531480633668682, + 2.4193218876133695, 2.3068752853741756, 2.194888002210173, + 2.084721664606242, 1.9783842163023528, 1.8781326781070085, + 1.7856717886650253, 1.7013584916331679, 1.6235666364098922, + 1.5483886862149054, 1.470275690340356, 1.3829297226695787, + 1.2808581134335635, 1.1605454352121012, 1.0220539833009503, + 0.8687504695772494, 0.7073709688752619, 0.5467539516071114, + 0.3961644146903829, 0.26364392733070724, 0.15478186508915742, + 0.07226856285245671, 0.015175449295211724, -0.019144535785692002, + -0.03491898174664009, -0.03646092578116347, -0.027016425868291442, + -0.009040220060237941, 0.016192683214078612, 0.04784283416667985, + 0.08471106469197076, 0.12500138732892332, 0.16590648038203365, + 0.20401578596076625, 0.23590678243048296, 0.2589330769108517, + 0.2717332412088041, 0.2747198454818429, 0.26980098004088915, + 0.2596657902150178, 0.24730743716287526, 0.23488782636218175, + 0.22337089718581674, 0.21241965997838472, 0.20070247400368244, + 0.18659274035904697, 0.16892896207779515, 0.14753100359222238, + 0.12355174530046714, 0.09907839839262778, 0.07664972910042693, + 0.05845715265538149, 0.045729813884658764, 0.038327599508220865, + 0.03496513087941006, 0.03368910612307208, 0.03259443366431248, + 0.030628252699990123, 0.02793958558446423, 0.02586145784315262, + 0.02643024075867651, 0.031530979669212526, 0.04216815166039945, + 0.05786275404137196, 0.07672991567368674, 0.09621123902625019, + 0.114083136130206, 0.1299019246431423, 0.14606469709225492, + 0.16820872071212462, 0.20497863744213518, 0.26643963121665654, + 0.3622310435095391, 0.5000295286126923, 0.6821139161458166, + 0.906246292115497 + ], + "pressure:J20:branch48_seg0": [ + 9371.887196159378, 10782.675939231347, 12255.70309064999, + 13716.267437339999, 15093.959835789403, 16331.503692806553, + 17394.633619491666, 18279.05340192079, 18987.88965692095, + 19536.717888018848, 19954.877861163208, 20249.2190279301, + 20432.18556943848, 20507.51396621198, 20467.761741788843, + 20319.951830021226, 20061.398910889697, 19703.526442653638, + 19269.706795460796, 18773.371693366804, 18239.042172017424, + 17683.92458331224, 17116.909175500845, 16546.00851390765, + 15972.637037483082, 15399.190566046618, 14831.418691898103, + 14278.13738179271, 13751.21615534764, 13262.34014042744, + 12817.490756071276, 12412.18693925651, 12032.646053195831, + 11651.199642384952, 11235.270796128674, 10752.445775282831, + 10180.536716539167, 9507.574766286109, 8746.399289098415, + 7927.226482173723, 7089.918200165837, 6286.567490657003, + 5563.325023829497, 4955.475240124231, 4479.119341524897, + 4143.0449298006115, 3930.432574646135, 3820.2741447505277, + 3793.8471653252304, 3824.994268926682, 3903.315031322914, + 4020.385506239578, 4169.73551665599, 4350.332834859502, 4552.688687406517, + 4765.100013485737, 4971.377241184414, 5151.950206400841, + 5290.302030588182, 5377.165822182294, 5410.025032368645, + 5395.1292822919295, 5349.200001442094, 5285.517176626169, + 5218.599796011289, 5157.516828293925, 5102.045359900223, 5046.57250732434, + 4982.27105213633, 4900.661551796352, 4798.7653155120215, + 4678.735342232745, 4550.649668204361, 4427.993573204119, 4323.54817912085, + 4246.428500191621, 4199.480347153524, 4177.620037812757, + 4170.448720336881, 4167.878862139062, 4160.84927675462, 4147.363649224134, + 4132.587882663972, 4126.44807234061, 4140.611150779588, 4182.910916605582, + 4254.632623672291, 4349.201593425501, 4451.712636395137, + 4549.133983699037, 4633.259866974293, 4708.7140781424805, + 4797.779224850152, 4939.470689622517, 5185.735713542237, + 5592.145182045888, 6198.232132085597, 7039.268757438424, + 8108.792685897258, 9371.887196159378 + ], + "flow:J20:branch68_seg0": [ + 0.6361298206124528, 0.8147785901654366, 1.0067532202223832, + 1.2021715730179046, 1.3908423979301137, 1.5643860063095612, + 1.717060721831799, 1.846310031197076, 1.9517149286372604, + 2.0352175780466206, 2.0994396209776043, 2.1464206609423098, + 2.1781139332010357, 2.19499819464484, 2.197052412794901, + 2.1843490591313013, 2.156740483742307, 2.1155772425747625, + 2.0626807169017387, 2.000437032256623, 1.931843431324305, + 1.859222192698927, 1.7844615129469932, 1.7087100958669796, + 1.6324477467274148, 1.5560484577822993, 1.480031765325633, + 1.405374928906564, 1.3335013931452726, 1.2659765639941745, + 1.2039021745245124, 1.1474045078192048, 1.095205182715618, + 1.0444212336800707, 0.9911363762805264, 0.930997623242058, + 0.8603436713287383, 0.7769462955229632, 0.6811925319571145, + 0.5756767457730952, 0.46526814294800845, 0.356206425997065, + 0.2548158029765955, 0.16645489451215648, 0.0947033623376513, + 0.04113016074551052, 0.004740701219557989, -0.016410776686431865, + -0.02533946243979995, -0.02502724595639063, -0.01754922894856395, + -0.004524128636909299, 0.013302783324175272, 0.03541568976649509, + 0.06094549678401739, 0.08864241731265278, 0.11650188871486598, + 0.14214204245740505, 0.16323696936022086, 0.17806727153663068, + 0.18580820962607097, 0.18690558218587386, 0.18281883317512787, + 0.17542507900891044, 0.16679962114827848, 0.1583466202350013, + 0.15060086696948918, 0.14321740067920471, 0.13519766415274817, + 0.1254026868043919, 0.11308228431561251, 0.0982009410957066, + 0.08166835847277905, 0.06498832148489342, 0.0499299287994396, + 0.03795638806610994, 0.029820031180795636, 0.02529059336982395, + 0.02339491300482726, 0.022741549757442, 0.022027014110545796, + 0.02061705873484475, 0.01872393645849442, 0.01736135662930134, + 0.0179833277448617, 0.021857520570568206, 0.02959378947931246, + 0.040732975498424605, 0.053851415870425565, 0.06715636979348799, + 0.07915825084710523, 0.08970984068677908, 0.10069957148111369, + 0.1162582619535891, 0.14253795343514913, 0.18651768495015286, + 0.2547169341964835, 0.35219552939258986, 0.4799608672021843, + 0.6361298206124528 + ], + "pressure:J20:branch68_seg0": [ + 9371.887196159378, 10782.675939231347, 12255.70309064999, + 13716.267437339999, 15093.959835789403, 16331.503692806553, + 17394.633619491666, 18279.05340192079, 18987.88965692095, + 19536.717888018848, 19954.877861163208, 20249.2190279301, + 20432.18556943848, 20507.51396621198, 20467.761741788843, + 20319.951830021226, 20061.398910889697, 19703.526442653638, + 19269.706795460796, 18773.371693366804, 18239.042172017424, + 17683.92458331224, 17116.909175500845, 16546.00851390765, + 15972.637037483082, 15399.190566046618, 14831.418691898103, + 14278.13738179271, 13751.21615534764, 13262.34014042744, + 12817.490756071276, 12412.18693925651, 12032.646053195831, + 11651.199642384952, 11235.270796128674, 10752.445775282831, + 10180.536716539167, 9507.574766286109, 8746.399289098415, + 7927.226482173723, 7089.918200165837, 6286.567490657003, + 5563.325023829497, 4955.475240124231, 4479.119341524897, + 4143.0449298006115, 3930.432574646135, 3820.2741447505277, + 3793.8471653252304, 3824.994268926682, 3903.315031322914, + 4020.385506239578, 4169.73551665599, 4350.332834859502, 4552.688687406517, + 4765.100013485737, 4971.377241184414, 5151.950206400841, + 5290.302030588182, 5377.165822182294, 5410.025032368645, + 5395.1292822919295, 5349.200001442094, 5285.517176626169, + 5218.599796011289, 5157.516828293925, 5102.045359900223, 5046.57250732434, + 4982.27105213633, 4900.661551796352, 4798.7653155120215, + 4678.735342232745, 4550.649668204361, 4427.993573204119, 4323.54817912085, + 4246.428500191621, 4199.480347153524, 4177.620037812757, + 4170.448720336881, 4167.878862139062, 4160.84927675462, 4147.363649224134, + 4132.587882663972, 4126.44807234061, 4140.611150779588, 4182.910916605582, + 4254.632623672291, 4349.201593425501, 4451.712636395137, + 4549.133983699037, 4633.259866974293, 4708.7140781424805, + 4797.779224850152, 4939.470689622517, 5185.735713542237, + 5592.145182045888, 6198.232132085597, 7039.268757438424, + 8108.792685897258, 9371.887196159378 + ], + "flow:J20:branch85_seg0": [ + 2.1672937778087533, 2.8298503904934393, 3.5853362589728865, + 4.402207570273037, 5.242650250757686, 6.068767536115526, + 6.847443912304885, 7.554124413141481, 8.173649763697126, + 8.700751539598965, 9.13669494784862, 9.486217846886964, 9.755567209202935, + 9.949041454723845, 10.069371876644404, 10.118067770362948, + 10.095903764791887, 10.006122165354121, 9.853833650436652, + 9.646861909607585, 9.395375677929204, 9.109686142096908, + 8.799530469500851, 8.472704874671685, 8.134771938459433, 7.78977516552958, + 7.441134806324717, 7.092813808361275, 6.749907773802184, + 6.418405997363255, 6.1039302418406685, 5.810030954061684, + 5.536286529578082, 5.277017932393074, 5.021444881624331, + 4.7549945992022975, 4.462185436573029, 4.129801685782016, + 3.750841864770918, 3.3260151530028774, 2.8650993313645245, + 2.3854657115674343, 1.9092707740653838, 1.4596150370090852, + 1.0568805894572222, 0.7159153379701317, 0.44372416031615397, + 0.24089965586000944, 0.10203862705788493, 0.018681539236246013, + -0.018103831612422194, -0.016553114339720443, 0.017156302168185356, + 0.07826136910573046, 0.16233545133224989, 0.2642705333843264, + 0.37715149638957796, 0.49238754911223687, 0.600472388023525, + 0.6925287653882121, 0.7617937398181487, 0.8051902033344767, + 0.8235360970596982, 0.8209158503234036, 0.80360847537927, + 0.7778359136399073, 0.7482734170038284, 0.7169793847850675, + 0.6832740538740685, 0.6446545328033526, 0.5982760499309246, + 0.5424748552454377, 0.4780310603476024, 0.40826381388026434, + 0.3384833815521254, 0.27454339518819904, 0.22126135989049509, + 0.18101994225056672, 0.1533790611954789, 0.13543082426590897, + 0.12308238399971135, 0.11276774532465823, 0.10283206882369297, + 0.09426001747242635, 0.09037654041058767, 0.09550474387769542, + 0.11329300013526923, 0.14492912663461702, 0.18843933778709204, + 0.23923038571376656, 0.2918179573898355, 0.3427948677741137, + 0.393811743543272, 0.4537372580064679, 0.5395040815596157, + 0.674245096617674, 0.884019405798663, 1.1935093189796795, + 1.6192036240206955, 2.1672937778087533 + ], + "pressure:J20:branch85_seg0": [ + 9371.887196159378, 10782.675939231347, 12255.70309064999, + 13716.267437339999, 15093.959835789403, 16331.503692806553, + 17394.633619491666, 18279.05340192079, 18987.88965692095, + 19536.717888018848, 19954.877861163208, 20249.2190279301, + 20432.18556943848, 20507.51396621198, 20467.761741788843, + 20319.951830021226, 20061.398910889697, 19703.526442653638, + 19269.706795460796, 18773.371693366804, 18239.042172017424, + 17683.92458331224, 17116.909175500845, 16546.00851390765, + 15972.637037483082, 15399.190566046618, 14831.418691898103, + 14278.13738179271, 13751.21615534764, 13262.34014042744, + 12817.490756071276, 12412.18693925651, 12032.646053195831, + 11651.199642384952, 11235.270796128674, 10752.445775282831, + 10180.536716539167, 9507.574766286109, 8746.399289098415, + 7927.226482173723, 7089.918200165837, 6286.567490657003, + 5563.325023829497, 4955.475240124231, 4479.119341524897, + 4143.0449298006115, 3930.432574646135, 3820.2741447505277, + 3793.8471653252304, 3824.994268926682, 3903.315031322914, + 4020.385506239578, 4169.73551665599, 4350.332834859502, 4552.688687406517, + 4765.100013485737, 4971.377241184414, 5151.950206400841, + 5290.302030588182, 5377.165822182294, 5410.025032368645, + 5395.1292822919295, 5349.200001442094, 5285.517176626169, + 5218.599796011289, 5157.516828293925, 5102.045359900223, 5046.57250732434, + 4982.27105213633, 4900.661551796352, 4798.7653155120215, + 4678.735342232745, 4550.649668204361, 4427.993573204119, 4323.54817912085, + 4246.428500191621, 4199.480347153524, 4177.620037812757, + 4170.448720336881, 4167.878862139062, 4160.84927675462, 4147.363649224134, + 4132.587882663972, 4126.44807234061, 4140.611150779588, 4182.910916605582, + 4254.632623672291, 4349.201593425501, 4451.712636395137, + 4549.133983699037, 4633.259866974293, 4708.7140781424805, + 4797.779224850152, 4939.470689622517, 5185.735713542237, + 5592.145182045888, 6198.232132085597, 7039.268757438424, + 8108.792685897258, 9371.887196159378 + ], + "flow:J20:branch105_seg0": [ + 1.0622508237167234, 1.366252753249904, 1.6960481428043752, + 2.034735433921344, 2.364664710807228, 2.670850775089834, + 2.9425808651633294, 3.1744357757271002, 3.365040673928831, + 3.5171286524024366, 3.6348759056351634, 3.722007369927073, + 3.781955951149181, 3.815876389512774, 3.8239876065122407, + 3.806357761407257, 3.762807096990182, 3.6953625018070366, + 3.6069357523598318, 3.501576637549519, 3.384300685311855, + 3.259268586318868, 3.1299302279002563, 2.998466115736593, + 2.865917434625851, 2.732997315687797, 2.600576433407935, + 2.4702423621472636, 2.344345724017442, 2.2255554125596664, + 2.1159014900632083, 2.015878476750907, 1.9236433569099327, + 1.8346561564002781, 1.7424314034799766, 1.6395466695657204, + 1.5194664670743834, 1.3779401546372438, 1.2149166103254005, + 1.0342100529534726, 0.8436595196729838, 0.6536450620692434, + 0.4750899974387682, 0.3175578438508765, 0.18779182192206434, + 0.08907319943581386, 0.0204363178926572, -0.021124490718898416, + -0.04058639726683336, -0.04303935662570273, -0.0323436244647736, + -0.011472442033323055, 0.018059573149088227, 0.05522820475888153, + 0.09861400041895155, 0.14614307452214492, 0.19451670737937307, + 0.23972388069712705, 0.2777156296357914, 0.30533550819577576, + 0.3208993218382091, 0.3248404221489912, 0.3193569067491533, + 0.30758380774029676, 0.29306652144849654, 0.2783892126834754, + 0.2647385640696911, 0.2517723081006958, 0.23795286959874695, + 0.22136704675966384, 0.20061749936734996, 0.17545364466228972, + 0.14718953036600393, 0.11824963024615412, 0.09162495216887509, + 0.06992501915872842, 0.05464570011154026, 0.04566600875311836, + 0.0415259580387456, 0.03993223986463538, 0.03862282932300871, + 0.03632364232206382, 0.03316107337507911, 0.030664563296498908, + 0.031219265079919453, 0.03705878570935699, 0.049417012236266, + 0.06778008011530208, 0.08997121739468335, 0.11299475743552634, + 0.13419504384615993, 0.15297108488239453, 0.17203969110095302, + 0.1979377309572239, 0.24077005283024033, 0.31237303137774286, + 0.42421276747611225, 0.5854310913661999, 0.7988873597604927, + 1.0622508237167234 + ], + "pressure:J20:branch105_seg0": [ + 9371.887196159378, 10782.675939231347, 12255.70309064999, + 13716.267437339999, 15093.959835789403, 16331.503692806553, + 17394.633619491666, 18279.05340192079, 18987.88965692095, + 19536.717888018848, 19954.877861163208, 20249.2190279301, + 20432.18556943848, 20507.51396621198, 20467.761741788843, + 20319.951830021226, 20061.398910889697, 19703.526442653638, + 19269.706795460796, 18773.371693366804, 18239.042172017424, + 17683.92458331224, 17116.909175500845, 16546.00851390765, + 15972.637037483082, 15399.190566046618, 14831.418691898103, + 14278.13738179271, 13751.21615534764, 13262.34014042744, + 12817.490756071276, 12412.18693925651, 12032.646053195831, + 11651.199642384952, 11235.270796128674, 10752.445775282831, + 10180.536716539167, 9507.574766286109, 8746.399289098415, + 7927.226482173723, 7089.918200165837, 6286.567490657003, + 5563.325023829497, 4955.475240124231, 4479.119341524897, + 4143.0449298006115, 3930.432574646135, 3820.2741447505277, + 3793.8471653252304, 3824.994268926682, 3903.315031322914, + 4020.385506239578, 4169.73551665599, 4350.332834859502, 4552.688687406517, + 4765.100013485737, 4971.377241184414, 5151.950206400841, + 5290.302030588182, 5377.165822182294, 5410.025032368645, + 5395.1292822919295, 5349.200001442094, 5285.517176626169, + 5218.599796011289, 5157.516828293925, 5102.045359900223, 5046.57250732434, + 4982.27105213633, 4900.661551796352, 4798.7653155120215, + 4678.735342232745, 4550.649668204361, 4427.993573204119, 4323.54817912085, + 4246.428500191621, 4199.480347153524, 4177.620037812757, + 4170.448720336881, 4167.878862139062, 4160.84927675462, 4147.363649224134, + 4132.587882663972, 4126.44807234061, 4140.611150779588, 4182.910916605582, + 4254.632623672291, 4349.201593425501, 4451.712636395137, + 4549.133983699037, 4633.259866974293, 4708.7140781424805, + 4797.779224850152, 4939.470689622517, 5185.735713542237, + 5592.145182045888, 6198.232132085597, 7039.268757438424, + 8108.792685897258, 9371.887196159378 + ], + "flow:J20:branch123_seg0": [ + 0.8854952304877499, 1.13289650990702, 1.3979186714740217, + 1.6670117149044978, 1.9260753639343204, 2.163670032805619, + 2.3720958112910524, 2.548175177084384, 2.691331476951999, + 2.804509784104733, 2.8914255458792826, 2.954749470560832, + 2.99726154920542, 3.0194883695792165, 3.0213487163756314, + 3.0030031583525014, 2.9641741229912824, 2.906822226000946, + 2.8334924944204714, 2.7474503840848685, 2.652891804096699, + 2.552941611701003, 2.4501548211695447, 2.3460803323647634, + 2.2413158157898985, 2.1363702247782905, 2.0319613504688414, + 1.929457833388696, 1.8308460171997285, 1.7383032427225282, + 1.6533084152480664, 1.5759937268672835, 1.5045268453507743, + 1.4348199414911287, 1.3614314044479858, 1.278337504902575, + 1.1805331319241275, 1.065002048715745, 0.9324623219997842, + 0.7865919328375475, 0.634218606102866, 0.4840602476026047, + 0.34481892289527966, 0.2238301503292619, 0.1259553532360027, + 0.05324016549775602, 0.004133796039191217, -0.024064769173287672, + -0.03558382442022297, -0.034576914975382914, -0.023804333423191028, + -0.0055110179392231, 0.019359202173665425, 0.05011916599712343, + 0.08551640177607561, 0.12384358683248267, 0.16227667070181268, + 0.1974998521389513, 0.22630895926467015, 0.24638470530126316, + 0.256612258889384, 0.25769874457344055, 0.2517422261812198, + 0.24132675929179737, 0.22934682457288866, 0.21770489994891742, + 0.20707393322002515, 0.19693014180856627, 0.18585376374061385, + 0.17225941617311316, 0.15513043280404343, 0.1344593312125426, + 0.1115630073001095, 0.08854726384703658, 0.06787227414163384, + 0.05154478641712416, 0.04056640162600497, 0.03454605897504611, + 0.032108852549178606, 0.0313043433856668, 0.03032332529144425, + 0.028337232265992083, 0.025690727487255028, 0.02382921316954185, + 0.024793359366683056, 0.030317710112633737, 0.04121890088278036, + 0.0567952897626633, 0.07501029573607398, 0.0933777575314642, + 0.10984750830565768, 0.12428624948980284, 0.13941776100781159, + 0.1610760484691919, 0.1978656730722497, 0.2594582305856262, + 0.3548395815352006, 0.49089256153539007, 0.6686755833001758, + 0.8854952304877499 + ], + "pressure:J20:branch123_seg0": [ + 9371.887196159378, 10782.675939231347, 12255.70309064999, + 13716.267437339999, 15093.959835789403, 16331.503692806553, + 17394.633619491666, 18279.05340192079, 18987.88965692095, + 19536.717888018848, 19954.877861163208, 20249.2190279301, + 20432.18556943848, 20507.51396621198, 20467.761741788843, + 20319.951830021226, 20061.398910889697, 19703.526442653638, + 19269.706795460796, 18773.371693366804, 18239.042172017424, + 17683.92458331224, 17116.909175500845, 16546.00851390765, + 15972.637037483082, 15399.190566046618, 14831.418691898103, + 14278.13738179271, 13751.21615534764, 13262.34014042744, + 12817.490756071276, 12412.18693925651, 12032.646053195831, + 11651.199642384952, 11235.270796128674, 10752.445775282831, + 10180.536716539167, 9507.574766286109, 8746.399289098415, + 7927.226482173723, 7089.918200165837, 6286.567490657003, + 5563.325023829497, 4955.475240124231, 4479.119341524897, + 4143.0449298006115, 3930.432574646135, 3820.2741447505277, + 3793.8471653252304, 3824.994268926682, 3903.315031322914, + 4020.385506239578, 4169.73551665599, 4350.332834859502, 4552.688687406517, + 4765.100013485737, 4971.377241184414, 5151.950206400841, + 5290.302030588182, 5377.165822182294, 5410.025032368645, + 5395.1292822919295, 5349.200001442094, 5285.517176626169, + 5218.599796011289, 5157.516828293925, 5102.045359900223, 5046.57250732434, + 4982.27105213633, 4900.661551796352, 4798.7653155120215, + 4678.735342232745, 4550.649668204361, 4427.993573204119, 4323.54817912085, + 4246.428500191621, 4199.480347153524, 4177.620037812757, + 4170.448720336881, 4167.878862139062, 4160.84927675462, 4147.363649224134, + 4132.587882663972, 4126.44807234061, 4140.611150779588, 4182.910916605582, + 4254.632623672291, 4349.201593425501, 4451.712636395137, + 4549.133983699037, 4633.259866974293, 4708.7140781424805, + 4797.779224850152, 4939.470689622517, 5185.735713542237, + 5592.145182045888, 6198.232132085597, 7039.268757438424, + 8108.792685897258, 9371.887196159378 + ], + "flow:branch31_seg0:J21": [ + 2.1230881716146426, 2.7192410310388833, 3.3587355132608328, + 4.008065067240953, 4.632978345405365, 5.205799424136603, + 5.7081116503712215, 6.132277747016929, 6.477556558703047, + 6.751323150699165, 6.9625841954898435, 7.1183926185121145, + 7.225307511406177, 7.284732753058047, 7.296508436260495, + 7.260567695741146, 7.1762176850492585, 7.047625502111383, + 6.880466402857143, 6.682448911495928, 6.463234183852835, + 6.230292969555476, 5.989762529988169, 5.745298929334598, + 5.4983793348410055, 5.250132865536241, 5.002163256760014, + 4.757651361923551, 4.521316460902198, 4.298456985590335, + 4.092880808047969, 3.9052992654727574, 3.73168517134449, + 3.5626679688119087, 3.3853422751834663, 3.185215806614574, + 2.949908838461949, 2.671765493102715, 2.3517191199269623, + 1.9980393700033188, 1.6267714539638312, 1.2586877062891524, + 0.9150517979524879, 0.614158569809355, 0.368527806168519, + 0.18371206285527464, 0.05676047899413349, -0.018669987079985368, + -0.05280797012746366, -0.055669615372734696, -0.03434832296394255, + 0.005671858353197829, 0.062070612665440415, 0.1331740589864224, + 0.2162344022912318, 0.3072075165892006, 0.39936287097429773, + 0.4846581563797549, 0.5551515166526256, 0.6048998944952659, + 0.6309306964611257, 0.6346639404826928, 0.6209133301391455, + 0.5960186451827642, 0.5670323297014601, 0.5387568175541739, + 0.5130615595910922, 0.4887985298597907, 0.4625394294182221, + 0.4303240317039806, 0.3894557916216696, 0.3396960924063665, + 0.28401908739230636, 0.22748582348422114, 0.1761595144684857, + 0.13512046808260386, 0.10705835874238344, 0.09129215980251358, + 0.08461222352508667, 0.08223590662513978, 0.07965989097366831, + 0.07461774550189725, 0.06772770258217492, 0.062392486903382456, + 0.06359340216745696, 0.07575225970937174, 0.10111508258090614, + 0.13824734064411442, 0.18240042043926233, 0.2274365246682472, + 0.2681230509284957, 0.30368682919189444, 0.34020891248391644, + 0.3914241422993926, 0.47797665093138625, 0.6234477716728, + 0.8501272739283401, 1.1749793537913615, 1.6014281524813896, + 2.1230881716146426 + ], + "pressure:branch31_seg0:J21": [ + 9184.742175643965, 10547.563040486048, 11969.24538773742, + 13376.081780949859, 14699.085422308654, 15884.176302670925, + 16900.22250528929, 17743.432711036716, 18418.734199355677, + 18943.90827597395, 19345.451641387655, 19631.79355020678, + 19815.148119878308, 19897.757494840593, 19873.474280971663, + 19747.205003825842, 19516.02043949031, 19191.15594327709, + 18792.744128112816, 18334.075019852262, 17838.182143651065, + 17320.81010077499, 16790.889542455516, 16255.573917029402, + 15716.066720248515, 15174.521150744677, 14636.087211025668, + 14109.139546009907, 13605.167502138996, 13135.681652806861, + 12706.934137846025, 12315.597390392142, 11948.73131896771, + 11580.427093487082, 11179.471510937386, 10714.34506688827, + 10162.670102645403, 9512.411544068613, 8774.915665863575, + 7977.80554355327, 7159.939720033662, 6371.389686029964, 5657.460409343798, + 5053.574022534892, 4577.252269924922, 4237.327451791986, + 4018.397685458604, 3900.8496647602624, 3865.1530718060403, + 3886.572525056024, 3954.3119187675197, 4059.879070238139, + 4197.790806429739, 4366.765193536997, 4558.377856594695, + 4761.484077141169, 4960.084062926445, 5135.165280066093, + 5270.270787363089, 5355.6730811377465, 5388.453765832851, 5374.8476673881, + 5330.274302457694, 5268.126705996344, 5203.047349218199, + 5143.790650561204, 5090.527358588119, 5037.853913687762, + 4976.905593081368, 4899.097037939655, 4800.995693902403, + 4684.434838156001, 4559.046413475259, 4437.974266725674, + 4334.106300318824, 4256.785900579653, 4209.148964078063, 4186.51475828502, + 4178.931087199131, 4176.0683078814745, 4168.889465321821, + 4155.058012324776, 4139.294243234919, 4131.325428366057, + 4142.8025619716955, 4181.867381049641, 4250.316107307113, + 4341.819215413978, 4442.198921331403, 4538.257019417055, + 4621.184192815656, 4694.771164912996, 4779.960259018463, + 4914.327559228645, 5148.515337991309, 5536.7523542230365, + 6119.306255882888, 6930.033264148384, 7962.896206699886, 9184.742175643965 + ], + "flow:J21:branch32_seg0": [ + 0.8309142976404413, 1.0597080607348788, 1.302833401457364, + 1.547619626054783, 1.7811997597987366, 1.9935117763958325, + 2.178182078534326, 2.333071583945953, 2.4582488579441635, + 2.5569041899906804, 2.6326715438301904, 2.687950855640217, + 2.725201052243009, 2.7447102725420627, 2.746226064989109, + 2.7298398594092554, 2.6952123262026464, 2.644156938178642, + 2.579012985303184, 2.5026894406048523, 2.4189690797815593, + 2.3305499288939093, 2.239607411555546, 2.1474077073195237, + 2.054367409453243, 1.9608909851475005, 1.8676252251446799, + 1.775855533212594, 1.687446006613251, 1.6044232181956584, + 1.528120902131982, 1.4586013356400656, 1.3940848465957574, + 1.3307074728062693, 1.2634119138962472, 1.1866679515548113, + 1.0959714392078062, 0.988704464859876, 0.8657496565567644, + 0.7306908168649185, 0.5899605689599666, 0.45169474196238435, + 0.323901655909172, 0.21327382952726093, 0.12414225552432023, + 0.05824073333703896, 0.013914876434199615, -0.011440449922565897, + -0.021815494085203842, -0.02104890168989702, -0.011584358322249374, + 0.004613341651953398, 0.026817181087714904, 0.054475698444968294, + 0.0864488683967013, 0.12114210569407383, 0.1558791063431996, + 0.18754029284332532, 0.2131536790425571, 0.2306218632024361, + 0.23899992220925062, 0.23906425071998857, 0.2328731069832215, + 0.22286068506340417, 0.21171434601133737, 0.20112646290498365, + 0.19160384919260892, 0.18253907957606044, 0.1725162201405529, + 0.1600154776576455, 0.14410934269292217, 0.12485067386206232, + 0.10355438319126341, 0.08224980371948391, 0.0632629226263057, + 0.048443680320577706, 0.0386621163078301, 0.033455797583260755, + 0.031463132614611866, 0.03081306678133917, 0.029820268617872746, + 0.027772960450523684, 0.02508316569190621, 0.023190573047703555, + 0.024058246956273475, 0.029306504517143256, 0.0396435417095576, + 0.05432026369038038, 0.0713326110046313, 0.08831359599858363, + 0.10336365983938678, 0.1164630244876159, 0.13032189147567363, + 0.1505697188851121, 0.1853786728845131, 0.24380360697931905, + 0.3340758329590478, 0.4623190334638006, 0.628954613199529, + 0.8309142976404413 + ], + "pressure:J21:branch32_seg0": [ + 9184.742175643965, 10547.563040486048, 11969.24538773742, + 13376.081780949859, 14699.085422308654, 15884.176302670925, + 16900.22250528929, 17743.432711036716, 18418.734199355677, + 18943.90827597395, 19345.451641387655, 19631.79355020678, + 19815.148119878308, 19897.757494840593, 19873.474280971663, + 19747.205003825842, 19516.02043949031, 19191.15594327709, + 18792.744128112816, 18334.075019852262, 17838.182143651065, + 17320.81010077499, 16790.889542455516, 16255.573917029402, + 15716.066720248515, 15174.521150744677, 14636.087211025668, + 14109.139546009907, 13605.167502138996, 13135.681652806861, + 12706.934137846025, 12315.597390392142, 11948.73131896771, + 11580.427093487082, 11179.471510937386, 10714.34506688827, + 10162.670102645403, 9512.411544068613, 8774.915665863575, + 7977.80554355327, 7159.939720033662, 6371.389686029964, 5657.460409343798, + 5053.574022534892, 4577.252269924922, 4237.327451791986, + 4018.397685458604, 3900.8496647602624, 3865.1530718060403, + 3886.572525056024, 3954.3119187675197, 4059.879070238139, + 4197.790806429739, 4366.765193536997, 4558.377856594695, + 4761.484077141169, 4960.084062926445, 5135.165280066093, + 5270.270787363089, 5355.6730811377465, 5388.453765832851, 5374.8476673881, + 5330.274302457694, 5268.126705996344, 5203.047349218199, + 5143.790650561204, 5090.527358588119, 5037.853913687762, + 4976.905593081368, 4899.097037939655, 4800.995693902403, + 4684.434838156001, 4559.046413475259, 4437.974266725674, + 4334.106300318824, 4256.785900579653, 4209.148964078063, 4186.51475828502, + 4178.931087199131, 4176.0683078814745, 4168.889465321821, + 4155.058012324776, 4139.294243234919, 4131.325428366057, + 4142.8025619716955, 4181.867381049641, 4250.316107307113, + 4341.819215413978, 4442.198921331403, 4538.257019417055, + 4621.184192815656, 4694.771164912996, 4779.960259018463, + 4914.327559228645, 5148.515337991309, 5536.7523542230365, + 6119.306255882888, 6930.033264148384, 7962.896206699886, 9184.742175643965 + ], + "flow:J21:branch101_seg0": [ + 1.2921738739742017, 1.6595329703040043, 2.055902111803469, + 2.4604454411861703, 2.851778585606628, 3.2122876477407707, + 3.529929571836897, 3.7992061630709753, 4.019307700758886, + 4.194418960708485, 4.329912651659652, 4.4304417628718955, + 4.500106459163168, 4.540022480515984, 4.550282371271386, + 4.530727836331892, 4.481005358846611, 4.403468563932741, 4.30145341755396, + 4.179759470891076, 4.0442651040712745, 3.899743040661568, + 3.7501551184326227, 3.597891222015073, 3.444011925387762, + 3.2892418803887407, 3.1345380316153335, 2.9817958287109563, + 2.833870454288949, 2.694033767394676, 2.564759905915987, + 2.4466979298326925, 2.337600324748733, 2.23196049600564, + 2.121930361287219, 1.998547855059762, 1.8539373992541426, + 1.6830610282428389, 1.4859694633701979, 1.2673485531384003, + 1.0368108850038644, 0.806992964326768, 0.5911501420433161, + 0.4008847402820942, 0.24438555064419873, 0.12547132951823567, + 0.04284560255993387, -0.007229537157419475, -0.03099247604225981, + -0.03462071368283768, -0.022763964641693175, 0.0010585167012444323, + 0.035253431577725515, 0.07869836054145408, 0.12978553389453049, + 0.18606541089512665, 0.24348376463109814, 0.2971178635364296, + 0.3419978376100685, 0.3742780312928298, 0.39193077425187484, + 0.3955996897627044, 0.3880402231559242, 0.37315796011936003, + 0.3553179836901227, 0.33763035464919045, 0.32145771039848314, + 0.30625945028373025, 0.2900232092776692, 0.270308554046335, + 0.2453464489287474, 0.21484541854430422, 0.1804647042010429, + 0.1452360197647372, 0.11289659184218004, 0.08667678776202616, + 0.06839624243455336, 0.05783636221925282, 0.0531490909104748, + 0.05142283984380065, 0.04983962235579556, 0.046844785051373565, + 0.04264453689026872, 0.03920191385567891, 0.039535155211183476, + 0.04644575519222848, 0.061471540871348554, 0.08392707695373401, + 0.11106780943463106, 0.13912292866966355, 0.1647593910891089, + 0.18722380470427855, 0.20988702100824277, 0.24085442341428054, + 0.2925979780468731, 0.3796441646934808, 0.5160514409692923, + 0.7126603203275612, 0.972473539281861, 1.2921738739742017 + ], + "pressure:J21:branch101_seg0": [ + 9184.742175643965, 10547.563040486048, 11969.24538773742, + 13376.081780949859, 14699.085422308654, 15884.176302670925, + 16900.22250528929, 17743.432711036716, 18418.734199355677, + 18943.90827597395, 19345.451641387655, 19631.79355020678, + 19815.148119878308, 19897.757494840593, 19873.474280971663, + 19747.205003825842, 19516.02043949031, 19191.15594327709, + 18792.744128112816, 18334.075019852262, 17838.182143651065, + 17320.81010077499, 16790.889542455516, 16255.573917029402, + 15716.066720248515, 15174.521150744677, 14636.087211025668, + 14109.139546009907, 13605.167502138996, 13135.681652806861, + 12706.934137846025, 12315.597390392142, 11948.73131896771, + 11580.427093487082, 11179.471510937386, 10714.34506688827, + 10162.670102645403, 9512.411544068613, 8774.915665863575, + 7977.80554355327, 7159.939720033662, 6371.389686029964, 5657.460409343798, + 5053.574022534892, 4577.252269924922, 4237.327451791986, + 4018.397685458604, 3900.8496647602624, 3865.1530718060403, + 3886.572525056024, 3954.3119187675197, 4059.879070238139, + 4197.790806429739, 4366.765193536997, 4558.377856594695, + 4761.484077141169, 4960.084062926445, 5135.165280066093, + 5270.270787363089, 5355.6730811377465, 5388.453765832851, 5374.8476673881, + 5330.274302457694, 5268.126705996344, 5203.047349218199, + 5143.790650561204, 5090.527358588119, 5037.853913687762, + 4976.905593081368, 4899.097037939655, 4800.995693902403, + 4684.434838156001, 4559.046413475259, 4437.974266725674, + 4334.106300318824, 4256.785900579653, 4209.148964078063, 4186.51475828502, + 4178.931087199131, 4176.0683078814745, 4168.889465321821, + 4155.058012324776, 4139.294243234919, 4131.325428366057, + 4142.8025619716955, 4181.867381049641, 4250.316107307113, + 4341.819215413978, 4442.198921331403, 4538.257019417055, + 4621.184192815656, 4694.771164912996, 4779.960259018463, + 4914.327559228645, 5148.515337991309, 5536.7523542230365, + 6119.306255882888, 6930.033264148384, 7962.896206699886, 9184.742175643965 + ], + "flow:branch33_seg0:J22": [ + 2.882569603134752, 3.719577035869661, 4.633776948658314, + 5.579316365114009, 6.506715608611205, 7.373159553559981, + 8.147301824596195, 8.81243176698175, 9.362328084379541, 9.803868017994308, + 10.147864536358565, 10.404422897461115, 10.583725677062446, + 10.689256352463488, 10.722164278149622, 10.68285102695254, + 10.570666683856466, 10.390919967309241, 10.15120113302615, + 9.862480863125882, 9.538661373722162, 9.191389008677525, + 8.830685552321954, 8.463092992096728, 8.091882559009907, + 7.719275427260438, 7.347659930245271, 6.981292133287339, + 6.6265213919942845, 6.290769129935841, 5.979839163630118, + 5.695742172740416, 5.4340880395746725, 5.183012933267219, + 4.925145247861601, 4.640046311503761, 4.3091420304511745, + 3.9196970658375943, 3.4703353678212925, 2.9701193308314644, + 2.4396421155721453, 1.9070918881542582, 1.402621071890263, + 0.9534159690750614, 0.5794922547643192, 0.29111629628334806, + 0.08696624397132256, -0.04014594844593492, -0.10369381185554007, + -0.11772986476799865, -0.0932427357787954, -0.039143448610773776, + 0.04011524581094063, 0.14132955379266554, 0.2604903965017932, + 0.3921710816010524, 0.5273812871066449, 0.6551433415743864, + 0.7641521426191951, 0.8453349871560344, 0.8933176357885223, + 0.908726145482335, 0.8970786555099822, 0.8666586148274711, + 0.8273412263528023, 0.7865766510829012, 0.7481335006643474, + 0.7116170707716545, 0.6731487423188484, 0.6275473324038592, + 0.5707472798258454, 0.5017001752791708, 0.42359019186989, + 0.34275044595351867, 0.2673672123313803, 0.20485288306947572, + 0.15976524648284537, 0.13223301209568825, 0.11875677779072726, + 0.11316865290306212, 0.10913423078083087, 0.102836714861429, + 0.0941573835928289, 0.08688898047656538, 0.0874125558073191, + 0.10195845065366324, 0.13435516512327417, 0.1836783309315137, + 0.24438859797363802, 0.3084623140794183, 0.368322872625607, + 0.4216339928539495, 0.47488562768428266, 0.5450732825368636, + 0.659233283743638, 0.8497438389705976, 1.1490596275047447, + 1.5833922587547715, 2.1624618769149206, 2.882569603134752 + ], + "pressure:branch33_seg0:J22": [ + 8788.985955024697, 10116.495020766168, 11536.622576546852, + 12978.168849418631, 14367.989670109731, 15644.360122907947, + 16765.774450696124, 17716.92430347816, 18492.627806250584, + 19106.50994272029, 19580.90849821706, 19926.690179506553, + 20158.58536529403, 20280.89157295077, 20291.087063936568, + 20193.045095957204, 19984.61996916337, 19675.16972467951, + 19281.755354911154, 18819.31092050214, 18310.5914687162, + 17772.978089275897, 17218.85442794585, 16657.334158861093, + 16091.728097759864, 15524.929968869781, 14961.42799169207, + 14408.691308676238, 13877.300017210411, 13378.794922048295, + 12920.635380867741, 12502.73729946826, 12115.341237562314, + 11736.111478667193, 11336.11003612467, 10883.696908405922, + 10353.419709257609, 9728.985789149889, 9015.019339956461, + 8232.423649921519, 7416.019036748511, 6612.879198924603, + 5868.622682053561, 5221.910392425976, 4696.80897594553, 4305.752866493704, + 4040.1818810310083, 3884.8972076551536, 3820.0402722673825, + 3822.1661188789276, 3877.4970877294013, 3974.621252676762, + 4107.262977115407, 4272.13653307542, 4461.650511214615, 4666.334230829875, + 4871.34018402312, 5058.75731073532, 5211.739032912274, 5318.62316700357, + 5373.521581613446, 5379.785054050337, 5349.671712384804, + 5295.769240907688, 5232.979301716704, 5171.654166824562, + 5114.831370514005, 5059.730444313831, 4999.160118710463, + 4924.947117159638, 4832.284469121273, 4721.230785548396, 4598.89914253101, + 4476.579311681418, 4366.8707405451, 4280.103765929498, 4221.435271252836, + 4188.640123431274, 4174.30714567815, 4168.647295748746, 4162.245863922156, + 4151.01595110162, 4137.1166317067655, 4128.1306437347, 4134.642747208195, + 4165.370085370314, 4224.226791233546, 4307.554290704448, + 4403.966812380925, 4501.035378245851, 4588.599891153791, + 4666.610538305236, 4750.270139807364, 4871.089855353476, + 5074.745504669902, 5413.122932043685, 5931.365711700228, + 6666.968267534888, 7625.377285353697, 8788.985955024697 + ], + "flow:J22:branch34_seg0": [ + 1.2045347019937205, 1.5573538393200774, 1.9443292626976707, + 2.346106563494374, 2.7416538765019594, 3.1125561601161422, + 3.4451158853979105, 3.7317275445613114, 3.9694151957222195, + 4.160798134201112, 4.310259559036739, 4.422192079899522, + 4.500947005657759, 4.548142536166105, 4.564406482030754, + 4.5498652515823235, 4.504286278665223, 4.4297902709766515, + 4.329460725975191, 4.207944699665525, 4.071067151958567, + 3.923836058654835, 3.770611228619912, 3.6142590756432496, + 3.4562729721262695, 3.2976316219100332, 3.13933359897052, + 2.9831388303462067, 2.8316910219331164, 2.6881233206182613, + 2.5549596576467355, 2.4331918990201067, 2.3211311971254367, + 2.2139577129580337, 2.104438787181759, 1.9839475120461338, + 1.8444967326999722, 1.6804946935412823, 1.491008841802603, + 1.279551758771462, 1.0545942257500693, 0.82789412805693, + 0.612237287566557, 0.4192989213235285, 0.25785088424274166, + 0.13250421869290693, 0.04306288363986111, -0.013329648321679358, + -0.04229925672837154, -0.04975410555546988, -0.04048954284870668, + -0.01837866447871383, 0.014594726274106656, 0.05699762186968898, + 0.10717146054125924, 0.16285918787436637, 0.22032202044520194, + 0.27495625675125934, 0.32195192080540785, 0.3573670140665662, + 0.37879539863113754, 0.3863417350105568, 0.3821811616150948, + 0.36977775129712265, 0.35330261678250124, 0.33598695921646576, + 0.3195590476609818, 0.30397524753212607, 0.2876806487973635, + 0.2685056332768416, 0.24467486071784972, 0.2156544153737572, + 0.18267048558372934, 0.148322252163882, 0.11605219985538293, + 0.08904346969252852, 0.06932338933960472, 0.05707931847640351, + 0.05093861499566745, 0.04833574809381889, 0.04658050823547536, + 0.04396945168491656, 0.04033423736799191, 0.03717632871325827, + 0.03714034122161447, 0.04289021211577118, 0.056137535103243576, + 0.07662376487951311, 0.10214032497426193, 0.12933121839367334, + 0.15494059992061684, 0.17780861303718937, 0.2004210342989368, + 0.22969229985408193, 0.2768357366261245, 0.3554675218903278, + 0.47947742944561605, 0.6601689843972248, 0.9022062999264734, + 1.2045347019937205 + ], + "pressure:J22:branch34_seg0": [ + 8788.985955024697, 10116.495020766168, 11536.622576546852, + 12978.168849418631, 14367.989670109731, 15644.360122907947, + 16765.774450696124, 17716.92430347816, 18492.627806250584, + 19106.50994272029, 19580.90849821706, 19926.690179506553, + 20158.58536529403, 20280.89157295077, 20291.087063936568, + 20193.045095957204, 19984.61996916337, 19675.16972467951, + 19281.755354911154, 18819.31092050214, 18310.5914687162, + 17772.978089275897, 17218.85442794585, 16657.334158861093, + 16091.728097759864, 15524.929968869781, 14961.42799169207, + 14408.691308676238, 13877.300017210411, 13378.794922048295, + 12920.635380867741, 12502.73729946826, 12115.341237562314, + 11736.111478667193, 11336.11003612467, 10883.696908405922, + 10353.419709257609, 9728.985789149889, 9015.019339956461, + 8232.423649921519, 7416.019036748511, 6612.879198924603, + 5868.622682053561, 5221.910392425976, 4696.80897594553, 4305.752866493704, + 4040.1818810310083, 3884.8972076551536, 3820.0402722673825, + 3822.1661188789276, 3877.4970877294013, 3974.621252676762, + 4107.262977115407, 4272.13653307542, 4461.650511214615, 4666.334230829875, + 4871.34018402312, 5058.75731073532, 5211.739032912274, 5318.62316700357, + 5373.521581613446, 5379.785054050337, 5349.671712384804, + 5295.769240907688, 5232.979301716704, 5171.654166824562, + 5114.831370514005, 5059.730444313831, 4999.160118710463, + 4924.947117159638, 4832.284469121273, 4721.230785548396, 4598.89914253101, + 4476.579311681418, 4366.8707405451, 4280.103765929498, 4221.435271252836, + 4188.640123431274, 4174.30714567815, 4168.647295748746, 4162.245863922156, + 4151.01595110162, 4137.1166317067655, 4128.1306437347, 4134.642747208195, + 4165.370085370314, 4224.226791233546, 4307.554290704448, + 4403.966812380925, 4501.035378245851, 4588.599891153791, + 4666.610538305236, 4750.270139807364, 4871.089855353476, + 5074.745504669902, 5413.122932043685, 5931.365711700228, + 6666.968267534888, 7625.377285353697, 8788.985955024697 + ], + "flow:J22:branch81_seg0": [ + 0.9901539845250821, 1.2782568963830558, 1.5933123167340886, + 1.9194138943331815, 2.239539638327109, 2.538888132781025, + 2.8065591745481915, 3.0366201769122956, 3.2269772101193714, + 3.379899525534696, 3.499042608558717, 3.588004240584444, + 3.6502316275939486, 3.686984513803504, 3.6986982587559143, + 3.6854557071207803, 3.6470756466148933, 3.585337910769681, + 3.502848859573005, 3.403408419101367, 3.2917632900541993, + 3.171981445091784, 3.047532111600223, 2.920681660158358, + 2.792587072303261, 2.6640086732184542, 2.5357688246779784, + 2.4093239361489003, 2.2868521471904213, 2.1709033552699486, + 2.0635023985731618, 1.9653600652676781, 1.8749879768547775, + 1.7883544990545723, 1.6994749757505467, 1.6013104100476756, + 1.4874338228143276, 1.3534313122720634, 1.1987455193832703, + 1.0264628616411138, 0.8436484518134703, 0.6599637098784273, + 0.48582848186802763, 0.3306465893834793, 0.20133208151837892, + 0.1014793215802271, 0.030730447558807213, -0.013435584341142585, + -0.035613657728192, -0.04063660157938327, -0.03235599072587462, + -0.013812443256899455, 0.013405726554759616, 0.04818877993109705, + 0.08919747751788547, 0.13454069182393447, 0.18114881631848273, + 0.22525365684773957, 0.2629498035272271, 0.291084882473272, + 0.3077976614226193, 0.31327179874882766, 0.30936418027127066, + 0.29894847450010975, 0.2854130374808561, 0.27134247370877873, + 0.2580674829244774, 0.24546787991588867, 0.23222185332981823, + 0.2165457625742138, 0.19703009263099527, 0.17329334501348903, + 0.14640283176297988, 0.11853605007620792, 0.09250786213400201, + 0.0708797879493121, 0.05523845264689037, 0.0456663925150455, + 0.04096156263896098, 0.03900772876622789, 0.03762939683891247, + 0.03548257205255385, 0.03250534715763431, 0.02998736658184509, + 0.030116818792439288, 0.0350509528841498, 0.04612316569155328, + 0.06304074509718777, 0.08392899330922955, 0.10601831393729, + 0.12669306199799024, 0.1451161641896684, 0.1634707666507743, + 0.18756079176139304, 0.22665537489825088, 0.29191699030236395, + 0.394518289645217, 0.5435318041290328, 0.7425249589226397, + 0.9901539845250821 + ], + "pressure:J22:branch81_seg0": [ + 8788.985955024697, 10116.495020766168, 11536.622576546852, + 12978.168849418631, 14367.989670109731, 15644.360122907947, + 16765.774450696124, 17716.92430347816, 18492.627806250584, + 19106.50994272029, 19580.90849821706, 19926.690179506553, + 20158.58536529403, 20280.89157295077, 20291.087063936568, + 20193.045095957204, 19984.61996916337, 19675.16972467951, + 19281.755354911154, 18819.31092050214, 18310.5914687162, + 17772.978089275897, 17218.85442794585, 16657.334158861093, + 16091.728097759864, 15524.929968869781, 14961.42799169207, + 14408.691308676238, 13877.300017210411, 13378.794922048295, + 12920.635380867741, 12502.73729946826, 12115.341237562314, + 11736.111478667193, 11336.11003612467, 10883.696908405922, + 10353.419709257609, 9728.985789149889, 9015.019339956461, + 8232.423649921519, 7416.019036748511, 6612.879198924603, + 5868.622682053561, 5221.910392425976, 4696.80897594553, 4305.752866493704, + 4040.1818810310083, 3884.8972076551536, 3820.0402722673825, + 3822.1661188789276, 3877.4970877294013, 3974.621252676762, + 4107.262977115407, 4272.13653307542, 4461.650511214615, 4666.334230829875, + 4871.34018402312, 5058.75731073532, 5211.739032912274, 5318.62316700357, + 5373.521581613446, 5379.785054050337, 5349.671712384804, + 5295.769240907688, 5232.979301716704, 5171.654166824562, + 5114.831370514005, 5059.730444313831, 4999.160118710463, + 4924.947117159638, 4832.284469121273, 4721.230785548396, 4598.89914253101, + 4476.579311681418, 4366.8707405451, 4280.103765929498, 4221.435271252836, + 4188.640123431274, 4174.30714567815, 4168.647295748746, 4162.245863922156, + 4151.01595110162, 4137.1166317067655, 4128.1306437347, 4134.642747208195, + 4165.370085370314, 4224.226791233546, 4307.554290704448, + 4403.966812380925, 4501.035378245851, 4588.599891153791, + 4666.610538305236, 4750.270139807364, 4871.089855353476, + 5074.745504669902, 5413.122932043685, 5931.365711700228, + 6666.968267534888, 7625.377285353697, 8788.985955024697 + ], + "flow:J22:branch117_seg0": [ + 0.6878809166159496, 0.8839663001665281, 1.096135369226556, + 1.3137959072864527, 1.5255220937821352, 1.721715260662814, + 1.895626764650091, 2.044084045508139, 2.1659356785379495, + 2.2631703582585017, 2.3385623687631067, 2.394226576977149, + 2.43254704381074, 2.4541293024938766, 2.459059537362952, + 2.4475300682494336, 2.4193047585763523, 2.375791785562908, + 2.318891547477953, 2.2511277443589894, 2.175830931709396, + 2.095571504930908, 2.01254221210182, 1.928152256295122, 1.843022514580377, + 1.757635132131952, 1.6725575065967722, 1.588829366792233, + 1.5079782228707468, 1.4317424540476322, 1.3613771074102194, + 1.297190208452631, 1.2379688655944578, 1.180700721254613, + 1.1212314849292953, 1.0547883894099523, 0.9772114749368745, + 0.8857710600242491, 0.7805810066354193, 0.6641047104188885, + 0.5413994380086057, 0.41923405021890037, 0.3045553024556781, + 0.2034704583680537, 0.12030928900319875, 0.057132756010214045, + 0.01317291277265425, -0.013380715783112979, -0.025780897398976547, + -0.027339157633145497, -0.020397202204214093, -0.006952340875160492, + 0.012114792982074355, 0.036143151991879514, 0.06412145844264852, + 0.0947712019027516, 0.1259104503429601, 0.15493342797538737, + 0.17925041828656021, 0.19688309061619627, 0.2067245757347657, + 0.20911261172295056, 0.205533313623617, 0.19793238903023894, + 0.18862557208944516, 0.1792472181576567, 0.17050697007888815, + 0.16217394332363969, 0.15324624019166658, 0.14249593655280376, + 0.12904232647700037, 0.11275241489192456, 0.09451687452318079, + 0.07589214371342873, 0.05880715034199534, 0.044929625427635095, + 0.035203404496350295, 0.02948730110423922, 0.026856600156098826, + 0.025825176043015288, 0.024924325706443033, 0.023384691123958575, + 0.02131779906720268, 0.01972528518146202, 0.02015539579326536, + 0.02401728565374226, 0.03209446432847734, 0.04401382095481284, + 0.05831927969014653, 0.0731127817484549, 0.08668921070699992, + 0.09870921562709173, 0.11099382673457155, 0.12782019092138872, + 0.15574217221926268, 0.20235932677790575, 0.27506390841391193, + 0.3796914702285138, 0.5177306180658079, 0.6878809166159496 + ], + "pressure:J22:branch117_seg0": [ + 8788.985955024697, 10116.495020766168, 11536.622576546852, + 12978.168849418631, 14367.989670109731, 15644.360122907947, + 16765.774450696124, 17716.92430347816, 18492.627806250584, + 19106.50994272029, 19580.90849821706, 19926.690179506553, + 20158.58536529403, 20280.89157295077, 20291.087063936568, + 20193.045095957204, 19984.61996916337, 19675.16972467951, + 19281.755354911154, 18819.31092050214, 18310.5914687162, + 17772.978089275897, 17218.85442794585, 16657.334158861093, + 16091.728097759864, 15524.929968869781, 14961.42799169207, + 14408.691308676238, 13877.300017210411, 13378.794922048295, + 12920.635380867741, 12502.73729946826, 12115.341237562314, + 11736.111478667193, 11336.11003612467, 10883.696908405922, + 10353.419709257609, 9728.985789149889, 9015.019339956461, + 8232.423649921519, 7416.019036748511, 6612.879198924603, + 5868.622682053561, 5221.910392425976, 4696.80897594553, 4305.752866493704, + 4040.1818810310083, 3884.8972076551536, 3820.0402722673825, + 3822.1661188789276, 3877.4970877294013, 3974.621252676762, + 4107.262977115407, 4272.13653307542, 4461.650511214615, 4666.334230829875, + 4871.34018402312, 5058.75731073532, 5211.739032912274, 5318.62316700357, + 5373.521581613446, 5379.785054050337, 5349.671712384804, + 5295.769240907688, 5232.979301716704, 5171.654166824562, + 5114.831370514005, 5059.730444313831, 4999.160118710463, + 4924.947117159638, 4832.284469121273, 4721.230785548396, 4598.89914253101, + 4476.579311681418, 4366.8707405451, 4280.103765929498, 4221.435271252836, + 4188.640123431274, 4174.30714567815, 4168.647295748746, 4162.245863922156, + 4151.01595110162, 4137.1166317067655, 4128.1306437347, 4134.642747208195, + 4165.370085370314, 4224.226791233546, 4307.554290704448, + 4403.966812380925, 4501.035378245851, 4588.599891153791, + 4666.610538305236, 4750.270139807364, 4871.089855353476, + 5074.745504669902, 5413.122932043685, 5931.365711700228, + 6666.968267534888, 7625.377285353697, 8788.985955024697 + ], + "flow:branch34_seg0:J23": [ + 1.204234335545964, 1.5570224543293967, 1.943982314660989, + 2.3457648873087114, 2.7413327439405495, 3.1122669944839223, + 3.444866156231876, 3.7315215694530965, 3.9692485257222243, + 4.1606682417685645, 4.310162084626887, 4.422122414196281, + 4.500904933259962, 4.548126452728698, 4.5644171118710215, + 4.549902174625978, 4.504348319474506, 4.429876169189971, + 4.329564284266091, 4.208061564540887, 4.071193653916901, + 3.9239672694815697, 3.7707451939845296, 3.614394372130273, + 3.456408701548079, 3.297767380485508, 3.139467793816644, + 2.983269199491002, 2.831814831916056, 2.6882383475102785, + 2.5550643268052076, 2.433287796513517, 2.3212222863347476, + 2.2140496742683, 2.104539540335097, 1.98406448436527, 1.8446346356502745, + 1.6806552510456807, 1.4911898093963862, 1.2797451527802441, + 1.0547901621519884, 0.8280817207305302, 0.6124055021249323, + 0.4194389078302245, 0.2579609452650541, 0.1325828418423127, + 0.043111355299605775, -0.013303828282174055, -0.04229271289389511, + -0.049761868031124604, -0.040507563388141925, -0.018406892336347024, + 0.014558878318120463, 0.05695519304399781, 0.10712349235468223, + 0.16280950675820205, 0.2202743325775049, 0.27491468684373555, + 0.32192028047097565, 0.35734766873396273, 0.37878818386402924, + 0.38634513883537885, 0.382191977434717, 0.3697921057262498, + 0.35331783396034105, 0.3360012117950181, 0.3195721725587243, + 0.3039887376031676, 0.2876965047814664, 0.26852571080035076, + 0.24469940487791805, 0.21568266720781473, 0.18270046501802473, + 0.14835056471460892, 0.11607596934090504, 0.08906093610081618, + 0.06933432980012419, 0.057084369226785246, 0.050940605613829675, + 0.048337061315051916, 0.04658250641179972, 0.043972655918676495, + 0.04033739864391228, 0.037177100906210125, 0.03713621725272117, + 0.04287945265338077, 0.056120267446858746, 0.07660166825605991, + 0.10211650129640099, 0.12930888534313492, 0.154921103190014, + 0.1777901936151916, 0.20039809509391018, 0.2296554365624037, + 0.27677315224098514, 0.35536507934107714, 0.4793282757382099, + 0.6599673257249927, 0.9019479708806193, 1.204234335545964 + ], + "pressure:branch34_seg0:J23": [ + 8761.965879413381, 10085.25735228728, 11502.438670859165, + 12942.489056026672, 14332.207883648993, 15609.712427697803, + 16733.196607246835, 17686.869059010864, 18465.215823929284, + 19081.721948320675, 19558.42055911898, 19906.346068919327, + 20140.29855723219, 20264.620114171415, 20276.994899184563, + 20181.164388619807, 19975.01754033323, 19667.810767524352, + 19276.336007358776, 18815.577118343255, 18308.194815733597, + 17771.576387160356, 17218.24334492497, 16657.356175002078, + 16092.310709246824, 15526.022825470107, 14962.92975587418, + 14410.4396526828, 13879.071212670904, 13380.348728014955, + 12921.792082965245, 12503.497713522545, 12115.886302429333, + 11736.866257957277, 11337.671182551667, 10886.716348728149, + 10358.428314953813, 9736.340496899456, 9024.715717560657, + 8244.052919873027, 7428.927123211273, 6626.163947796754, + 5881.336744473176, 5233.227076480575, 4706.223091243705, + 4312.924440514842, 4045.136119658574, 3887.910444041159, + 3821.3728867228315, 3822.2035098423244, 3876.485635472559, + 3972.6929534132532, 4104.54312578574, 4268.659068280448, + 4457.531552981162, 4661.780884152449, 4866.631100114737, + 5054.251433385873, 5207.791703589574, 5315.492926574407, + 5371.331601261908, 5378.523620734313, 5349.127623570932, + 5295.694538141968, 5233.12602482603, 5171.825222240159, 5114.968287340932, + 5059.898876487552, 4999.504088160658, 4925.631845779606, + 4833.403476571054, 4722.787269122484, 4600.764122059276, + 4478.523038188572, 4368.644111462914, 4281.501426657116, + 4222.347191049661, 4189.0840959194375, 4174.430687770983, + 4168.623911201202, 4162.242248599398, 4151.11138233016, 4137.260616934736, + 4128.165737754814, 4134.355066650253, 4164.57656045723, 4222.850089344083, + 4305.647073782501, 4401.741268371511, 4498.739121743736, + 4586.410169594993, 4664.508283997637, 4747.927208140648, + 4867.838245690442, 5069.621053854876, 5404.97465639515, 5919.238067691411, + 6649.992530282476, 7603.19871056429, 8761.965879413381 + ], + "flow:J23:branch35_seg0": [ + 0.7060233141896941, 0.9152180807683267, 1.14597467897987, + 1.3867697026390626, 1.6250208643302717, 1.8495169628256654, + 2.0517436724630937, 2.226727685841943, 2.3724480723943033, + 2.490198043665339, 2.58244129027289, 2.6518978892328766, + 2.701174981860368, 2.731378513113695, 2.742991374216859, + 2.7360601953860586, 2.7104872206414288, 2.6674173331128603, + 2.608600893606043, 2.5367924932203856, 2.4554027356209436, + 2.367490815783064, 2.275739316992756, 2.1819401693706792, + 2.087076345173213, 1.9917616609793096, 1.8965862172224932, + 1.8025643454442768, 1.7112344922087994, 1.6244540648456849, + 1.543784671252446, 1.4699265833718727, 1.4020142539483023, + 1.3373461972730647, 1.271707679950219, 1.1999809841411142, + 1.1173074312133542, 1.0201869441126725, 0.907768639024877, + 0.781887557171713, 0.6473791499169663, 0.5111055105258233, + 0.3807135918486603, 0.26330688572977395, 0.16434980566750795, + 0.08683399057671645, 0.030953629439835338, -0.0048619750491412095, + -0.023874422912215018, -0.029584892448835536, -0.02497704769916263, + -0.012429773199095525, 0.0067704433044148875, 0.03171033663013741, + 0.06143351855761067, 0.09461479155124626, 0.12908525899015738, + 0.16213416106325346, 0.19087243195191797, 0.21286643490098972, + 0.22657786976294822, 0.2319318662687126, 0.23009415904492037, + 0.22309605339032682, 0.21341072597968286, 0.20303188339829695, + 0.1930996746327416, 0.18368936417396384, 0.17394826384534964, + 0.1626034445684504, 0.14855557596358476, 0.13141058929194596, + 0.11179776298924768, 0.09120252555587903, 0.07165525043225708, + 0.055089971361428125, 0.04279589237347239, 0.03499878428343446, + 0.030964641408223078, 0.02920631898225036, 0.02811544241883211, + 0.026601729596880636, 0.024468868052897132, 0.02252553887410894, + 0.022300065897097442, 0.02540171502976397, 0.03292280771796092, + 0.04482028334716213, 0.059889445239133976, 0.07616385870886751, + 0.09166784064496215, 0.10557271190825328, 0.11914845244997849, + 0.136290274016948, 0.1634935612521491, 0.20881297338308574, + 0.28062658208625596, 0.3858541136479824, 0.5277486994879297, + 0.7060233141896941 + ], + "pressure:J23:branch35_seg0": [ + 8761.965879413381, 10085.25735228728, 11502.438670859165, + 12942.489056026672, 14332.207883648993, 15609.712427697803, + 16733.196607246835, 17686.869059010864, 18465.215823929284, + 19081.721948320675, 19558.42055911898, 19906.346068919327, + 20140.29855723219, 20264.620114171415, 20276.994899184563, + 20181.164388619807, 19975.01754033323, 19667.810767524352, + 19276.336007358776, 18815.577118343255, 18308.194815733597, + 17771.576387160356, 17218.24334492497, 16657.356175002078, + 16092.310709246824, 15526.022825470107, 14962.92975587418, + 14410.4396526828, 13879.071212670904, 13380.348728014955, + 12921.792082965245, 12503.497713522545, 12115.886302429333, + 11736.866257957277, 11337.671182551667, 10886.716348728149, + 10358.428314953813, 9736.340496899456, 9024.715717560657, + 8244.052919873027, 7428.927123211273, 6626.163947796754, + 5881.336744473176, 5233.227076480575, 4706.223091243705, + 4312.924440514842, 4045.136119658574, 3887.910444041159, + 3821.3728867228315, 3822.2035098423244, 3876.485635472559, + 3972.6929534132532, 4104.54312578574, 4268.659068280448, + 4457.531552981162, 4661.780884152449, 4866.631100114737, + 5054.251433385873, 5207.791703589574, 5315.492926574407, + 5371.331601261908, 5378.523620734313, 5349.127623570932, + 5295.694538141968, 5233.12602482603, 5171.825222240159, 5114.968287340932, + 5059.898876487552, 4999.504088160658, 4925.631845779606, + 4833.403476571054, 4722.787269122484, 4600.764122059276, + 4478.523038188572, 4368.644111462914, 4281.501426657116, + 4222.347191049661, 4189.0840959194375, 4174.430687770983, + 4168.623911201202, 4162.242248599398, 4151.11138233016, 4137.260616934736, + 4128.165737754814, 4134.355066650253, 4164.57656045723, 4222.850089344083, + 4305.647073782501, 4401.741268371511, 4498.739121743736, + 4586.410169594993, 4664.508283997637, 4747.927208140648, + 4867.838245690442, 5069.621053854876, 5404.97465639515, 5919.238067691411, + 6649.992530282476, 7603.19871056429, 8761.965879413381 + ], + "flow:J23:branch103_seg0": [ + 0.49821102135627, 0.6418043735610699, 0.798007635681119, + 0.9589951846696487, 1.116311879610278, 1.2627500316582567, + 1.3931224837687828, 1.5047938836111527, 1.5968004533279214, + 1.6704701981032262, 1.7277207943539976, 1.7702245249634037, + 1.799729951399593, 1.8167479396150035, 1.8214257376541623, + 1.8138419792399207, 1.7938610988330772, 1.762458836077111, + 1.7209633906600479, 1.6712690713205007, 1.6157909182959571, + 1.5564764536985058, 1.4950058769917736, 1.4324542027595932, + 1.369332356374866, 1.3060057195061985, 1.2428815765941508, + 1.1807048540467247, 1.1205803397072571, 1.063784282664594, + 1.0112796555527617, 0.9633612131416445, 0.9192080323864453, + 0.8767034769952353, 0.8328318603848781, 0.7840835002241554, + 0.7273272044369202, 0.6604683069330076, 0.583421170371509, + 0.49785759560853077, 0.4074110122350222, 0.316976210204707, + 0.23169191027627203, 0.15613202210045043, 0.0936111395975462, + 0.04574885126559622, 0.012157725859770428, -0.008441853233032846, + -0.018418289981680096, -0.020176975582289078, -0.015530515688979295, + -0.005977119137251498, 0.0077884350137055755, 0.02524485641386039, + 0.04568997379707157, 0.06819471520695577, 0.09118907358734753, + 0.112780525780482, 0.13104784851905768, 0.144481233832973, + 0.15221031410108107, 0.15441327256666623, 0.15209781838979664, + 0.1466960523359231, 0.13990710798065817, 0.13296932839672107, + 0.12647249792598264, 0.12029937342920377, 0.11374824093611675, + 0.10592226623190025, 0.09614382891433329, 0.0842720779158688, + 0.07090270202877712, 0.057148039158729895, 0.044420718908647974, + 0.03397096473938807, 0.026538437426651806, 0.022085584943350788, + 0.019975964205606586, 0.019130742332801553, 0.01846706399296761, + 0.017370926321795873, 0.015868530591015156, 0.014651562032101191, + 0.014836151355623717, 0.017477737623616794, 0.02319745972889781, + 0.031781384908897786, 0.04222705605726701, 0.05314502663426742, + 0.06325326254505188, 0.07221748170693831, 0.08124964264393163, + 0.0933651625454557, 0.11327959098883605, 0.14655210595799145, + 0.19870169365195386, 0.2741132120770104, 0.3741992713926896, + 0.49821102135627 + ], + "pressure:J23:branch103_seg0": [ + 8761.965879413381, 10085.25735228728, 11502.438670859165, + 12942.489056026672, 14332.207883648993, 15609.712427697803, + 16733.196607246835, 17686.869059010864, 18465.215823929284, + 19081.721948320675, 19558.42055911898, 19906.346068919327, + 20140.29855723219, 20264.620114171415, 20276.994899184563, + 20181.164388619807, 19975.01754033323, 19667.810767524352, + 19276.336007358776, 18815.577118343255, 18308.194815733597, + 17771.576387160356, 17218.24334492497, 16657.356175002078, + 16092.310709246824, 15526.022825470107, 14962.92975587418, + 14410.4396526828, 13879.071212670904, 13380.348728014955, + 12921.792082965245, 12503.497713522545, 12115.886302429333, + 11736.866257957277, 11337.671182551667, 10886.716348728149, + 10358.428314953813, 9736.340496899456, 9024.715717560657, + 8244.052919873027, 7428.927123211273, 6626.163947796754, + 5881.336744473176, 5233.227076480575, 4706.223091243705, + 4312.924440514842, 4045.136119658574, 3887.910444041159, + 3821.3728867228315, 3822.2035098423244, 3876.485635472559, + 3972.6929534132532, 4104.54312578574, 4268.659068280448, + 4457.531552981162, 4661.780884152449, 4866.631100114737, + 5054.251433385873, 5207.791703589574, 5315.492926574407, + 5371.331601261908, 5378.523620734313, 5349.127623570932, + 5295.694538141968, 5233.12602482603, 5171.825222240159, 5114.968287340932, + 5059.898876487552, 4999.504088160658, 4925.631845779606, + 4833.403476571054, 4722.787269122484, 4600.764122059276, + 4478.523038188572, 4368.644111462914, 4281.501426657116, + 4222.347191049661, 4189.0840959194375, 4174.430687770983, + 4168.623911201202, 4162.242248599398, 4151.11138233016, 4137.260616934736, + 4128.165737754814, 4134.355066650253, 4164.57656045723, 4222.850089344083, + 4305.647073782501, 4401.741268371511, 4498.739121743736, + 4586.410169594993, 4664.508283997637, 4747.927208140648, + 4867.838245690442, 5069.621053854876, 5404.97465639515, 5919.238067691411, + 6649.992530282476, 7603.19871056429, 8761.965879413381 + ], + "flow:branch37_seg0:J24": [ + 2.435188617522192, 3.1444777885679773, 3.9207359458395357, + 4.724973545356831, 5.5152122498375125, 6.25484785988328, + 6.916814472580796, 7.486298959376389, 7.95785080081028, 8.336829828549908, + 8.632236410942477, 8.852831018271733, 9.007219803900712, + 9.098632752261928, 9.12820455602202, 9.09627430211695, 9.002396303096347, + 8.8509284917885, 8.648237532632573, 8.40359110396663, 8.128671432970057, + 7.833466875537871, 7.526560046111868, 7.213605888229119, + 6.897513888770933, 6.58021492271654, 6.26375065241442, 5.951692155661998, + 5.649371924161715, 5.363042029218671, 5.097683908222526, + 4.8550842179133324, 4.631671889063613, 4.417595594414772, + 4.1982258891565625, 3.9562681899528043, 3.6758775977097624, + 3.346073739763807, 2.965323010200886, 2.5410348925313606, + 2.090405163664035, 1.6371393970228825, 1.2068632687667513, + 0.822812431005031, 0.502215363877545, 0.25413908532230234, + 0.07787278702214791, -0.03255819367586007, -0.0884038716285104, + -0.10156857462611052, -0.08156516714954098, -0.03601993339270627, + 0.031071255336321376, 0.11690263442822244, 0.21810357723321974, + 0.3300405947359734, 0.44517877543346634, 0.5542576284169067, + 0.6476753138211804, 0.7176413581548903, 0.7595119221690072, + 0.7736342664963213, 0.7645228891449514, 0.7391719906183977, + 0.7059184871191587, 0.6711638635233084, 0.6382475882413957, + 0.6069653827590714, 0.5741377344332511, 0.5354150438230915, + 0.4873210853611198, 0.42887556794615017, 0.3626495030652279, + 0.29393418545742933, 0.22962421662484048, 0.17603261520628666, + 0.1371120678925045, 0.11312648044086128, 0.1011984981045647, + 0.09617612977456154, 0.0927041594239356, 0.08745573193936494, + 0.08021455247020558, 0.07408337788419678, 0.07439375494563903, + 0.08644053954007162, 0.11353079036480775, 0.155018848598963, + 0.20635477660828733, 0.26078953866805177, 0.3118936567593539, + 0.357555515628636, 0.40305257334452876, 0.4625391308854447, + 0.5587252106286037, 0.7190056251510593, 0.9709389539746491, + 1.3370080212732893, 1.826064820277328, 2.435188617522192 + ], + "pressure:branch37_seg0:J24": [ + 8866.279815758553, 10196.179384244902, 11610.694039541351, + 13038.665164097909, 14408.798432837095, 15661.073327186214, + 16755.93728350677, 17680.838789828067, 18432.43842997635, + 19024.13372347616, 19480.011288817008, 19809.600507738498, + 20026.85988831058, 20136.328067786435, 20134.155439558228, + 20025.263217709722, 19807.44641967452, 19490.089494693533, + 19091.97062949552, 18627.17435081833, 18118.44824420855, + 17583.10544828759, 17032.40001833797, 16475.18499967334, + 15914.368893029901, 15352.695289599274, 14794.959489660632, + 14248.83557899645, 13725.015135760881, 13234.868648561227, + 12785.385106054573, 12375.360047878818, 11994.287361891022, + 11618.899949458155, 11219.840101410571, 10765.760447294164, + 10232.433763775884, 9604.704319859224, 8888.954493173524, + 8108.109291387852, 7297.3997721387295, 6504.444583212751, 5774.3741665773, + 5144.5822745321975, 4636.837718239417, 4262.83469394691, + 4012.4174573091364, 3869.0446141632383, 3813.764365152816, + 3822.659906790479, 3882.8485374035754, 3983.846205628835, + 4119.134757534264, 4285.992166288457, 4476.427610924359, + 4680.510736467657, 4883.359417641644, 5066.927352522556, + 5214.697708288277, 5315.772907383704, 5365.143662835703, + 5366.640023082555, 5333.500446094592, 5278.183193786509, + 5215.206666626181, 5154.585477270675, 5098.5547703874145, + 5043.761004692882, 4982.813700165007, 4907.622048270074, + 4813.920521334753, 4702.231493280794, 4580.201227404605, 4459.46846492571, + 4352.427634203675, 4268.949439595156, 4213.598641363948, + 4183.569838781358, 4170.864052329001, 4165.853731239942, + 4159.364939305208, 4147.8453028781605, 4134.105733085891, + 4126.116964569597, 4134.50494133292, 4167.615554244943, 4228.660863623172, + 4313.437727861446, 4409.881792415928, 4505.697936099967, + 4591.424673281643, 4668.120460312282, 4752.438953152686, + 4877.171564168298, 5088.752785632435, 5439.274240114099, + 5971.641336676528, 6722.4524100712315, 7694.62876245527, 8866.279815758553 + ], + "flow:J24:branch38_seg0": [ + 1.037755471437798, 1.3392623530216863, 1.668864553456932, + 2.009956124218892, 2.344742926437136, 2.657758891239613, + 2.937615711250395, 3.178131770781192, 3.3771183822835655, + 3.5369064040052356, 3.6613544836570058, 3.7541851957532044, + 3.8190246079933257, 3.85722246589737, 3.8692348894130704, + 3.855202915820121, 3.814938866605785, 3.7503150966179066, + 3.664058778665838, 3.5601055556690753, 3.443413982737447, + 3.3182097183223136, 3.18810639189513, 3.0554781291238435, + 2.921537805841889, 2.7870940158645032, 2.653016635341962, + 2.520830211418357, 2.39280757736404, 2.2716018974105765, + 2.1593165536960823, 2.0566766654201056, 1.9621281623014282, + 1.8714511295018947, 1.7784053081089417, 1.675643810983633, + 1.5564665271022564, 1.4162591521668502, 1.2544385454346163, + 1.0742230378998876, 0.8829680276722207, 0.690767992252454, + 0.5085058967594055, 0.3460155082243865, 0.21054495476740187, + 0.10589441500865909, 0.03169449618280727, -0.014644771573217915, + -0.0379104188400521, -0.043163194376689674, -0.034423261923891564, + -0.014897000671357323, 0.01373039730054225, 0.0502842621220012, + 0.0933324034017431, 0.1408888455608867, 0.18974231041221534, + 0.23595170131851242, 0.2754433995488717, 0.3049278300846498, + 0.3224673831764374, 0.32824266249578105, 0.3242009174932435, + 0.31332928714862796, 0.29916701785802413, 0.2844156675223586, + 0.27046715700478746, 0.2572065497822722, 0.24326460279116227, + 0.22678900729061874, 0.2063157387466534, 0.18144740810907198, + 0.15330075468054175, 0.12414284532366235, 0.09690628812045748, + 0.07426210009846516, 0.05786708689882485, 0.04780846474762432, + 0.042836659525790695, 0.04075449326507038, 0.03929213883818195, + 0.03705291421834813, 0.03397045554301517, 0.03138557754710242, + 0.03157425923210171, 0.03678108760515177, 0.048389023158199894, + 0.06609560278759154, 0.08794170189433821, 0.11104892327320942, + 0.13269868748546249, 0.15203234757404627, 0.17134813914826422, + 0.19671855011580328, 0.2378396037698942, 0.3063689675806076, + 0.41396837846690104, 0.5701382652892748, 0.7785338827243167, + 1.037755471437798 + ], + "pressure:J24:branch38_seg0": [ + 8866.279815758553, 10196.179384244902, 11610.694039541351, + 13038.665164097909, 14408.798432837095, 15661.073327186214, + 16755.93728350677, 17680.838789828067, 18432.43842997635, + 19024.13372347616, 19480.011288817008, 19809.600507738498, + 20026.85988831058, 20136.328067786435, 20134.155439558228, + 20025.263217709722, 19807.44641967452, 19490.089494693533, + 19091.97062949552, 18627.17435081833, 18118.44824420855, + 17583.10544828759, 17032.40001833797, 16475.18499967334, + 15914.368893029901, 15352.695289599274, 14794.959489660632, + 14248.83557899645, 13725.015135760881, 13234.868648561227, + 12785.385106054573, 12375.360047878818, 11994.287361891022, + 11618.899949458155, 11219.840101410571, 10765.760447294164, + 10232.433763775884, 9604.704319859224, 8888.954493173524, + 8108.109291387852, 7297.3997721387295, 6504.444583212751, 5774.3741665773, + 5144.5822745321975, 4636.837718239417, 4262.83469394691, + 4012.4174573091364, 3869.0446141632383, 3813.764365152816, + 3822.659906790479, 3882.8485374035754, 3983.846205628835, + 4119.134757534264, 4285.992166288457, 4476.427610924359, + 4680.510736467657, 4883.359417641644, 5066.927352522556, + 5214.697708288277, 5315.772907383704, 5365.143662835703, + 5366.640023082555, 5333.500446094592, 5278.183193786509, + 5215.206666626181, 5154.585477270675, 5098.5547703874145, + 5043.761004692882, 4982.813700165007, 4907.622048270074, + 4813.920521334753, 4702.231493280794, 4580.201227404605, 4459.46846492571, + 4352.427634203675, 4268.949439595156, 4213.598641363948, + 4183.569838781358, 4170.864052329001, 4165.853731239942, + 4159.364939305208, 4147.8453028781605, 4134.105733085891, + 4126.116964569597, 4134.50494133292, 4167.615554244943, 4228.660863623172, + 4313.437727861446, 4409.881792415928, 4505.697936099967, + 4591.424673281643, 4668.120460312282, 4752.438953152686, + 4877.171564168298, 5088.752785632435, 5439.274240114099, + 5971.641336676528, 6722.4524100712315, 7694.62876245527, 8866.279815758553 + ], + "flow:J24:branch102_seg0": [ + 1.3974331460843936, 1.8052154355462902, 2.2518713923826037, + 2.715017421137939, 3.170469323400376, 3.597088968643668, + 3.979198761330401, 4.308167188595198, 4.580732418526714, + 4.7999234245446685, 4.97088192728547, 5.098645822518527, + 5.188195195907385, 5.241410286364555, 5.258969666608948, + 5.241071386296831, 5.187457436490564, 5.100613395170594, + 4.984178753966734, 4.8434855482975525, 4.685257450232612, + 4.515257157215557, 4.338453654216737, 4.158127759105274, + 3.9759760829290425, 3.793120906852038, 3.610734017072457, + 3.4308619442436408, 3.2565643467976755, 3.0914401318080955, + 2.938367354526444, 2.798407552493227, 2.669543726762185, + 2.5461444649128784, 2.41982058104762, 2.2806243789691703, + 2.1194110706075064, 1.9298145875969572, 1.7108844647662698, + 1.4668118546314728, 1.207437135991814, 0.9463714047704285, + 0.6983573720073457, 0.47679692278064456, 0.2916704091101431, + 0.14824467031364322, 0.04617829083934064, -0.017913422102642153, + -0.050493452788458335, -0.058405380249420845, -0.047141905225649414, + -0.021122932721348936, 0.017340858035779127, 0.06661837230622124, + 0.12477117383147664, 0.18915174917508665, 0.2554364650212511, + 0.3183059270983942, 0.3722319142723086, 0.4127135280702405, + 0.4370445389925699, 0.4453916040005401, 0.44032197165170794, + 0.42584270346976966, 0.40675146926113476, 0.38674819600094984, + 0.3677804312366082, 0.34975883297679905, 0.33087313164208887, + 0.30862603653247267, 0.2810053466144664, 0.24742815983707828, + 0.20934874838468626, 0.169791340133767, 0.13271792850438302, + 0.10177051510782148, 0.07924498099367965, 0.06531801569323697, + 0.05836183857877401, 0.05542163650949118, 0.05341202058575366, + 0.050402817721016825, 0.0462440969271904, 0.04269780033709436, + 0.04281949571353731, 0.04965945193491985, 0.06514176720660785, + 0.0889232458113715, 0.11841307471394918, 0.1497406153948423, + 0.1791949692738914, 0.2055231680545898, 0.2317044341962645, + 0.26582058076964127, 0.3208856068587095, 0.4126366575704516, + 0.5569705755077482, 0.7668697559840144, 1.0475309375530113, + 1.3974331460843936 + ], + "pressure:J24:branch102_seg0": [ + 8866.279815758553, 10196.179384244902, 11610.694039541351, + 13038.665164097909, 14408.798432837095, 15661.073327186214, + 16755.93728350677, 17680.838789828067, 18432.43842997635, + 19024.13372347616, 19480.011288817008, 19809.600507738498, + 20026.85988831058, 20136.328067786435, 20134.155439558228, + 20025.263217709722, 19807.44641967452, 19490.089494693533, + 19091.97062949552, 18627.17435081833, 18118.44824420855, + 17583.10544828759, 17032.40001833797, 16475.18499967334, + 15914.368893029901, 15352.695289599274, 14794.959489660632, + 14248.83557899645, 13725.015135760881, 13234.868648561227, + 12785.385106054573, 12375.360047878818, 11994.287361891022, + 11618.899949458155, 11219.840101410571, 10765.760447294164, + 10232.433763775884, 9604.704319859224, 8888.954493173524, + 8108.109291387852, 7297.3997721387295, 6504.444583212751, 5774.3741665773, + 5144.5822745321975, 4636.837718239417, 4262.83469394691, + 4012.4174573091364, 3869.0446141632383, 3813.764365152816, + 3822.659906790479, 3882.8485374035754, 3983.846205628835, + 4119.134757534264, 4285.992166288457, 4476.427610924359, + 4680.510736467657, 4883.359417641644, 5066.927352522556, + 5214.697708288277, 5315.772907383704, 5365.143662835703, + 5366.640023082555, 5333.500446094592, 5278.183193786509, + 5215.206666626181, 5154.585477270675, 5098.5547703874145, + 5043.761004692882, 4982.813700165007, 4907.622048270074, + 4813.920521334753, 4702.231493280794, 4580.201227404605, 4459.46846492571, + 4352.427634203675, 4268.949439595156, 4213.598641363948, + 4183.569838781358, 4170.864052329001, 4165.853731239942, + 4159.364939305208, 4147.8453028781605, 4134.105733085891, + 4126.116964569597, 4134.50494133292, 4167.615554244943, 4228.660863623172, + 4313.437727861446, 4409.881792415928, 4505.697936099967, + 4591.424673281643, 4668.120460312282, 4752.438953152686, + 4877.171564168298, 5088.752785632435, 5439.274240114099, + 5971.641336676528, 6722.4524100712315, 7694.62876245527, 8866.279815758553 + ], + "flow:branch39_seg0:J25": [ + 3.031222009411537, 3.9021311493552244, 4.849735578220009, + 5.825721979754405, 6.779163493366121, 7.666709833034014, + 8.457346024852507, 9.135233097079771, 9.695750716638013, + 10.146626519649892, 10.499445234934742, 10.764713238432249, + 10.952407390664458, 11.065896170009399, 11.106013151713762, + 11.073001322207325, 10.96618792472387, 10.790958115581777, + 10.55504003863353, 10.269385103557763, 9.947828734962133, + 9.601873948088137, 9.241298825534248, 8.872428067325142, + 8.498404747939139, 8.121435336076928, 7.744054842423226, + 7.3707651598145265, 7.008218323998471, 6.664091388698823, + 6.344383132467039, 6.051051639864743, 5.779513478772157, + 5.517568497168294, 5.247371409781217, 4.948065803634514, + 4.600811996271775, 4.192814298582143, 3.722819931666208, + 3.2003359676118674, 2.6465026189488374, 2.0901795545974853, + 1.5623439730956643, 1.0909447142855637, 0.6965431425381837, + 0.39000762274132267, 0.17016538610163134, 0.029778116410803787, + -0.04468869527914307, -0.06747352231924297, -0.04971739489819265, + -0.00033109027160506686, 0.07611130611928042, 0.176366364728687, + 0.2962469823046441, 0.42988096468705017, 0.5678095223590438, + 0.6984874018509643, 0.8100931179654586, 0.8931686469417872, + 0.942254966134573, 0.9579980247043808, 0.9461189730321774, + 0.915200034750423, 0.8753148946483192, 0.8340114008963203, + 0.7950150385969756, 0.757738013550427, 0.7180640691968012, + 0.6706084755492306, 0.6112380022316685, 0.5389616861385296, + 0.4572051940070408, 0.37264339298056803, 0.29379181558530865, + 0.22830546220980383, 0.1808441895620256, 0.151494471296789, + 0.13652621978461055, 0.12956849688115243, 0.1241320566935236, + 0.11635700391652892, 0.10626366824803501, 0.09791210363773736, + 0.09797374085586674, 0.11291050594378094, 0.1465704320825813, + 0.1978835668035194, 0.26099394150884936, 0.32751238687558326, + 0.3896703210047192, 0.4452621050834019, 0.5013370216276957, + 0.5758696683067798, 0.6972259571208456, 0.8991872360936385, + 1.2151494127158913, 1.6720474055598042, 2.2791768974789077, + 3.031222009411537 + ], + "pressure:branch39_seg0:J25": [ + 9168.157672956777, 10520.331103758404, 11930.096352755145, + 13324.84118426492, 14637.14556911525, 15813.564896572405, + 16823.16375119892, 17662.497416684997, 18336.304219161808, + 18860.972586281736, 19263.363233381486, 19550.677080635855, + 19734.635187509273, 19817.965391171358, 19793.93553152774, + 19668.39891067929, 19438.513687972765, 19115.338477550053, + 18719.95604288652, 18264.801972629342, 17772.696764110657, + 17259.330058194973, 16733.009791809083, 16200.966089083793, + 15664.439675592324, 15125.698787703803, 14590.183249893287, + 14066.341330724917, 13565.58257532327, 13099.170476146066, + 12673.060603376956, 12283.434504468172, 11917.34398104661, + 11548.926730625128, 11147.376009472224, 10681.839844602873, + 10130.88996644244, 9482.965330083865, 8749.785331414318, + 7959.288741177115, 7149.379536613652, 6369.43576145763, 5663.695200267103, + 5066.55682312326, 4594.405067448134, 4256.347513337249, 4037.069105270963, + 3917.121702141592, 3878.3871744347, 3896.3985401071245, + 3960.9692790444315, 4064.032555724439, 4199.640031236877, + 4366.5763118874265, 4556.081779044579, 4756.781179123082, + 4952.87476911686, 5125.506786937721, 5258.568348010012, 5342.728457436036, + 5375.3493713852, 5362.444845277827, 5319.523596887508, 5259.398522220507, + 5196.184850535202, 5138.414068661876, 5085.96836554916, 5033.473892988912, + 4972.3516558829715, 4894.359142772283, 4796.478162336289, + 4680.688266808497, 4556.616716774663, 4437.251172758812, + 4335.041824783068, 4258.9352033385185, 4211.822483746647, + 4188.991905204085, 4180.547637281106, 4176.629676018284, + 4168.5545340303215, 4154.27490582839, 4138.646971775003, 4131.2586316691, + 4143.421947911188, 4182.87327996895, 4251.026839028917, 4341.55773518214, + 4440.308851540305, 4534.585825595034, 4616.174999967087, + 4689.327550968162, 4775.24229063715, 4911.315166160073, 5147.579869089511, + 5537.528499789352, 6119.712880516132, 6927.764452262515, + 7955.284531297517, 9168.157672956777 + ], + "flow:J25:branch40_seg0": [ + 1.9135651610006912, 2.474176412356408, 3.0903523514908824, + 3.730952766123503, 4.362642394926786, 4.956092914112526, + 5.489450466506498, 5.950379600141431, 6.33452400348546, 6.64563569292263, + 6.890575703976649, 7.076501778852547, 7.210046390949438, + 7.294040431884945, 7.329523909153255, 7.316625146519113, 7.25505324220904, + 7.147806038698078, 6.999511889025016, 6.8171509702880035, 6.6094665923193, + 6.3842253967986995, 6.148150441062257, 5.905758215037322, + 5.6595153829811995, 5.411023986004698, 5.16192413557774, + 4.914986217107192, 4.674356869552654, 4.444970692556939, + 4.230964265754714, 4.034108082458392, 3.8520979711649828, + 3.6778021762685675, 3.500129184738215, 3.305688016327685, + 3.081834386086519, 2.8194748565429584, 2.51645700795517, + 2.1777031227595005, 1.8158702106865343, 1.4489827974373675, + 1.0971838248928782, 0.7792415215011507, 0.5096073572125709, + 0.2965280325927096, 0.14070220564010955, 0.03818693172520915, + -0.01929470986896758, -0.04087853070979389, -0.034294940325303294, + -0.005705665418693546, 0.04142362901129232, 0.10469691486291786, + 0.18147537016079998, 0.26805480428693257, 0.35856227440676447, + 0.44565534676239843, 0.5215689364005676, 0.5797853962189535, + 0.6162442808090836, 0.6307032282056866, 0.6262587492355768, + 0.6082538211581414, 0.5831558114255543, 0.5561661580062974, + 0.5302073419549673, 0.5053956741442548, 0.47943413467696866, + 0.44894963266487664, 0.4110882221305447, 0.3648544165478356, + 0.3119968331064345, 0.256521199672458, 0.20382901610298612, + 0.15904542968279425, 0.12557268560557955, 0.10399984712127569, + 0.09233339919210054, 0.08667045727264866, 0.08278774770878167, + 0.07785236881472872, 0.07142602470577303, 0.06571876630011952, + 0.06481236406969162, 0.07297051972227932, 0.09302147751338441, + 0.12479527576552929, 0.16502116554146135, 0.2084613803821233, + 0.24993500044896488, 0.2873867626624735, 0.32440584098205366, + 0.371580239725874, 0.44640707868759516, 0.5704775410517078, + 0.76590701528013, 1.051088172046028, 1.43419758615907, 1.9135651610006912 + ], + "pressure:J25:branch40_seg0": [ + 9168.157672956777, 10520.331103758404, 11930.096352755145, + 13324.84118426492, 14637.14556911525, 15813.564896572405, + 16823.16375119892, 17662.497416684997, 18336.304219161808, + 18860.972586281736, 19263.363233381486, 19550.677080635855, + 19734.635187509273, 19817.965391171358, 19793.93553152774, + 19668.39891067929, 19438.513687972765, 19115.338477550053, + 18719.95604288652, 18264.801972629342, 17772.696764110657, + 17259.330058194973, 16733.009791809083, 16200.966089083793, + 15664.439675592324, 15125.698787703803, 14590.183249893287, + 14066.341330724917, 13565.58257532327, 13099.170476146066, + 12673.060603376956, 12283.434504468172, 11917.34398104661, + 11548.926730625128, 11147.376009472224, 10681.839844602873, + 10130.88996644244, 9482.965330083865, 8749.785331414318, + 7959.288741177115, 7149.379536613652, 6369.43576145763, 5663.695200267103, + 5066.55682312326, 4594.405067448134, 4256.347513337249, 4037.069105270963, + 3917.121702141592, 3878.3871744347, 3896.3985401071245, + 3960.9692790444315, 4064.032555724439, 4199.640031236877, + 4366.5763118874265, 4556.081779044579, 4756.781179123082, + 4952.87476911686, 5125.506786937721, 5258.568348010012, 5342.728457436036, + 5375.3493713852, 5362.444845277827, 5319.523596887508, 5259.398522220507, + 5196.184850535202, 5138.414068661876, 5085.96836554916, 5033.473892988912, + 4972.3516558829715, 4894.359142772283, 4796.478162336289, + 4680.688266808497, 4556.616716774663, 4437.251172758812, + 4335.041824783068, 4258.9352033385185, 4211.822483746647, + 4188.991905204085, 4180.547637281106, 4176.629676018284, + 4168.5545340303215, 4154.27490582839, 4138.646971775003, 4131.2586316691, + 4143.421947911188, 4182.87327996895, 4251.026839028917, 4341.55773518214, + 4440.308851540305, 4534.585825595034, 4616.174999967087, + 4689.327550968162, 4775.24229063715, 4911.315166160073, 5147.579869089511, + 5537.528499789352, 6119.712880516132, 6927.764452262515, + 7955.284531297517, 9168.157672956777 + ], + "flow:J25:branch110_seg0": [ + 1.1176568484108458, 1.4279547369988166, 1.7593832267291254, + 2.094769213630902, 2.416521098439335, 2.7106169189214895, + 2.967895558346009, 3.184853496938341, 3.361226713152552, + 3.5009908267272634, 3.608869530958094, 3.688211459579698, + 3.7423609997150216, 3.7718557381244544, 3.776489242560506, + 3.75637617568821, 3.711134682514829, 3.643152076883698, + 3.5555281496085134, 3.452234133269758, 3.3383621426428336, + 3.217648551289436, 3.093148384471991, 2.9666698522878234, + 2.83888936495794, 2.7104113500722318, 2.582130706845486, + 2.4557789427073353, 2.3338614544458145, 2.2191206961418843, + 2.1134188667123244, 2.0169435574063495, 1.9274155076071748, + 1.8397663208997266, 1.7472422250430026, 1.642377787306829, + 1.5189776101852566, 1.3733394420391838, 1.206362923711038, + 1.022632844852367, 0.8306324082623031, 0.6411967571601178, + 0.4651601482027859, 0.3117031927844132, 0.18693578532561275, + 0.09347959014861315, 0.0294631804615218, -0.008408815314405349, + -0.025393985410175485, -0.026594991609449087, -0.015422454572889365, + 0.0053745751470884815, 0.0346876771079881, 0.07166944986576915, + 0.1147716121438441, 0.1618261604001176, 0.2092472479522794, + 0.2528320550885657, 0.28852418156489096, 0.31338325072283363, + 0.3260106853254897, 0.3272947964986942, 0.31986022379660045, + 0.30694621359228186, 0.29215908322276507, 0.27784524289002305, + 0.26480769664200837, 0.25234233940617234, 0.23862993451983266, + 0.22165884288435397, 0.20014978010112386, 0.17410726959069392, + 0.14520836090060615, 0.11612219330811004, 0.08996279948232253, + 0.06926003252700957, 0.05527150395644609, 0.04749462417551328, + 0.04419282059250998, 0.04289803960850372, 0.04134430898474195, + 0.038504635101800216, 0.03483764354226198, 0.03219333733761785, + 0.03316137678617508, 0.039939986221501605, 0.053548954569196866, + 0.07308829103799014, 0.09597277596738801, 0.11905100649345995, + 0.1397353205557543, 0.1578753424209285, 0.1769311806456421, + 0.2042894285809058, 0.2508188784332504, 0.32870969504193104, + 0.44924239743576105, 0.6209592335137762, 0.8449793113198375, + 1.1176568484108458 + ], + "pressure:J25:branch110_seg0": [ + 9168.157672956777, 10520.331103758404, 11930.096352755145, + 13324.84118426492, 14637.14556911525, 15813.564896572405, + 16823.16375119892, 17662.497416684997, 18336.304219161808, + 18860.972586281736, 19263.363233381486, 19550.677080635855, + 19734.635187509273, 19817.965391171358, 19793.93553152774, + 19668.39891067929, 19438.513687972765, 19115.338477550053, + 18719.95604288652, 18264.801972629342, 17772.696764110657, + 17259.330058194973, 16733.009791809083, 16200.966089083793, + 15664.439675592324, 15125.698787703803, 14590.183249893287, + 14066.341330724917, 13565.58257532327, 13099.170476146066, + 12673.060603376956, 12283.434504468172, 11917.34398104661, + 11548.926730625128, 11147.376009472224, 10681.839844602873, + 10130.88996644244, 9482.965330083865, 8749.785331414318, + 7959.288741177115, 7149.379536613652, 6369.43576145763, 5663.695200267103, + 5066.55682312326, 4594.405067448134, 4256.347513337249, 4037.069105270963, + 3917.121702141592, 3878.3871744347, 3896.3985401071245, + 3960.9692790444315, 4064.032555724439, 4199.640031236877, + 4366.5763118874265, 4556.081779044579, 4756.781179123082, + 4952.87476911686, 5125.506786937721, 5258.568348010012, 5342.728457436036, + 5375.3493713852, 5362.444845277827, 5319.523596887508, 5259.398522220507, + 5196.184850535202, 5138.414068661876, 5085.96836554916, 5033.473892988912, + 4972.3516558829715, 4894.359142772283, 4796.478162336289, + 4680.688266808497, 4556.616716774663, 4437.251172758812, + 4335.041824783068, 4258.9352033385185, 4211.822483746647, + 4188.991905204085, 4180.547637281106, 4176.629676018284, + 4168.5545340303215, 4154.27490582839, 4138.646971775003, 4131.2586316691, + 4143.421947911188, 4182.87327996895, 4251.026839028917, 4341.55773518214, + 4440.308851540305, 4534.585825595034, 4616.174999967087, + 4689.327550968162, 4775.24229063715, 4911.315166160073, 5147.579869089511, + 5537.528499789352, 6119.712880516132, 6927.764452262515, + 7955.284531297517, 9168.157672956777 + ], + "flow:branch40_seg0:J26": [ + 1.9080596564603929, 2.4682748151086917, 3.084314941377937, + 3.7251796665511145, 4.357368617610304, 4.951456801579867, + 5.485521984799038, 5.947252419281818, 6.331993868098642, + 6.643678371921335, 6.889150389246225, 7.075488055787133, + 7.209494011829213, 7.293913597232261, 7.329830377696673, + 7.317389364676152, 7.25622577713352, 7.149351778240231, 7.001334192577119, + 6.81916438499191, 6.611616535194187, 6.386436388737321, 6.150394803694814, + 5.908026298104314, 5.661794671874243, 5.41330663931263, 5.164176843504424, + 4.9171635376952025, 4.676406520102323, 4.446863387112111, + 4.232676948826367, 4.035690195276528, 3.8536409146974377, + 3.6794098650189704, 3.5019457284326507, 3.3078345028051395, + 3.084382377565791, 2.8224061708475836, 2.519722169120102, + 2.1811315981269632, 1.8192676222150235, 1.4521700148617607, + 1.099972611707497, 0.7814964073730234, 0.511326210496384, + 0.2976997321537116, 0.14137353754587464, 0.03850195084365327, + -0.019271561043856765, -0.04107830272903616, -0.034650065594946634, + -0.006234224928384321, 0.04077191958526214, 0.10394041736477415, + 0.18062555352047793, 0.26720104636107583, 0.357771198117095, + 0.4449978413660459, 0.5211019258267295, 0.5795522442046872, + 0.6162075189472643, 0.6308265605107322, 0.6264948174290527, + 0.6085201335664888, 0.5834146897211264, 0.5564005888272571, + 0.5304232070486676, 0.5056290310000885, 0.47972442811302896, + 0.4493258205932003, 0.4115458450808036, 0.36537099318143496, + 0.31252735490492944, 0.25700012290032065, 0.20420755266560287, + 0.15930163386637122, 0.1257162089200162, 0.10404853391341103, + 0.09235024087071526, 0.08669608818593663, 0.08283531688033889, + 0.07792084155933898, 0.0714832663855855, 0.06571523594738203, + 0.0647074200316128, 0.07273521364996464, 0.09267861820333194, + 0.12438650160943106, 0.16459961844655716, 0.20808669249294998, + 0.24961733891519056, 0.2870712438229757, 0.3239657202648333, + 0.3708286592128894, 0.445118869323001, 0.5684076009816046, + 0.7629674365682578, 1.0471884219689733, 1.4293255837917924, + 1.9080596564603929 + ], + "pressure:branch40_seg0:J26": [ + 8540.659884455665, 9794.081326211808, 11134.656458290521, + 12494.187507439805, 13804.166726330333, 15007.14643121403, + 16064.885345621336, 16963.272267218752, 17698.65685947865, + 18284.079836620935, 18740.10358036658, 19077.073091074435, + 19308.465837973166, 19438.301801433045, 19464.21340958508, + 19389.69998242597, 19212.56222373928, 18941.210711039836, + 18591.368339266606, 18176.09316655142, 17715.93262306161, + 17226.87396385986, 16720.004340273274, 16203.739108648078, + 15681.2462356417, 15155.275811868441, 14630.197860108143, + 14113.060166934572, 13613.804225253372, 13143.27084766022, + 12708.68364813093, 12310.22574170101, 11939.157364773197, + 11575.20405327495, 11191.657734542312, 10759.170495950792, + 10253.94157248999, 9660.3516382807, 8982.017592861788, 8237.710027264386, + 7459.167415760965, 6689.892928868682, 5972.659596054735, + 5344.334126283936, 4828.200686913514, 4437.443541112815, + 4165.475524908496, 3998.490239640204, 3918.8799999121047, + 3904.9027220839957, 3943.4187170786595, 4023.9072673876444, + 4139.978831368099, 4288.374940118135, 4462.0528518963765, + 4651.746869471809, 4843.389801484342, 5020.006355303771, + 5165.463343652706, 5268.399564895771, 5322.946691957524, + 5331.881509603449, 5306.277227880675, 5257.740596451966, + 5200.195797237902, 5143.399834517167, 5090.333025520839, + 5038.531654634182, 4981.363656059876, 4911.174976719489, + 4823.431064542455, 4718.030727044299, 4601.475510996734, + 4484.382859723176, 4378.583169735757, 4293.919872468419, + 4235.460860730894, 4201.478249141321, 4185.12931173438, 4177.342239333899, + 4169.3639058177505, 4157.189604894922, 4142.704644291052, + 4132.928878821647, 4137.761452805331, 4165.481816867124, + 4219.906871399299, 4297.775713850554, 4388.57666956124, 4480.68185001131, + 4564.45494739695, 4639.686540413255, 4720.438526267463, 4836.155851706094, + 5029.732488511817, 5350.292335638126, 5840.235385397228, 6535.26338372351, + 7441.465609318525, 8540.659884455665 + ], + "flow:J26:branch41_seg0": [ + 0.9372543816257864, 1.214266374389897, 1.5199364659858712, + 1.8389588065839353, 2.1546864864414865, 2.4523284263134215, + 2.720716713143076, 2.9533927333610137, 3.147793459072656, + 3.3056442596473157, 3.4302211154336577, 3.5250690356378986, + 3.593586543993443, 3.637235403186059, 3.6566285668123846, + 3.6518415363348256, 3.622713379949346, 3.5706650007492726, + 3.497911087375494, 3.407900492416203, 3.304960642516812, + 3.1929882807417864, 3.0754073954582695, 2.954540244149934, + 2.8316804277516883, 2.7076564415712325, 2.583272273541616, + 2.459874580268118, 2.3394910107878473, 2.2245730685819782, + 2.1172113886405843, 2.0183959167577727, 1.9271081244643198, + 1.839937927914881, 1.7514819460972972, 1.655112210878233, + 1.544472443537649, 1.4148873024861364, 1.2650708847613676, + 1.0972134607162927, 0.917412330227922, 0.7345033034337315, + 0.5584673639474246, 0.3987255187837989, 0.2626682857644766, + 0.15456186111061276, 0.07500090934878936, 0.02219824401327334, + -0.007903181629064612, -0.019812668694243456, -0.017433057111532417, + -0.003919704623868741, 0.01896438455811789, 0.04996988263050212, + 0.08779436733044141, 0.13065790334298627, 0.17568109472507767, + 0.21925238743732328, 0.2575048126809109, 0.2871448235018001, + 0.3060383524900608, 0.3139609446332882, 0.31234474564091974, + 0.303778373188117, 0.29147577606702735, 0.27807023447337326, + 0.2650986339037029, 0.25271273459868704, 0.23983713571980292, + 0.22481699902354185, 0.206197981748704, 0.18342364957939758, + 0.15727549197906998, 0.1296754276007828, 0.10328575643159214, + 0.08068109192132637, 0.06362044016614211, 0.052482257859209756, + 0.046369671021319746, 0.04337717925802179, 0.0413992500392523, + 0.03897649226900575, 0.03580648231522987, 0.03290773336373884, + 0.03226565778359213, 0.03600603234465722, 0.04560536039827258, + 0.06107047690816828, 0.08086973290405841, 0.10244848090242838, + 0.12319721717722162, 0.14197141308107314, 0.16036130972998025, + 0.18341376820316155, 0.21963306010142492, 0.2796521833656413, + 0.3745698705057473, 0.5136507007656018, 0.7013292875214344, + 0.9372543816257864 + ], + "pressure:J26:branch41_seg0": [ + 8540.659884455665, 9794.081326211808, 11134.656458290521, + 12494.187507439805, 13804.166726330333, 15007.14643121403, + 16064.885345621336, 16963.272267218752, 17698.65685947865, + 18284.079836620935, 18740.10358036658, 19077.073091074435, + 19308.465837973166, 19438.301801433045, 19464.21340958508, + 19389.69998242597, 19212.56222373928, 18941.210711039836, + 18591.368339266606, 18176.09316655142, 17715.93262306161, + 17226.87396385986, 16720.004340273274, 16203.739108648078, + 15681.2462356417, 15155.275811868441, 14630.197860108143, + 14113.060166934572, 13613.804225253372, 13143.27084766022, + 12708.68364813093, 12310.22574170101, 11939.157364773197, + 11575.20405327495, 11191.657734542312, 10759.170495950792, + 10253.94157248999, 9660.3516382807, 8982.017592861788, 8237.710027264386, + 7459.167415760965, 6689.892928868682, 5972.659596054735, + 5344.334126283936, 4828.200686913514, 4437.443541112815, + 4165.475524908496, 3998.490239640204, 3918.8799999121047, + 3904.9027220839957, 3943.4187170786595, 4023.9072673876444, + 4139.978831368099, 4288.374940118135, 4462.0528518963765, + 4651.746869471809, 4843.389801484342, 5020.006355303771, + 5165.463343652706, 5268.399564895771, 5322.946691957524, + 5331.881509603449, 5306.277227880675, 5257.740596451966, + 5200.195797237902, 5143.399834517167, 5090.333025520839, + 5038.531654634182, 4981.363656059876, 4911.174976719489, + 4823.431064542455, 4718.030727044299, 4601.475510996734, + 4484.382859723176, 4378.583169735757, 4293.919872468419, + 4235.460860730894, 4201.478249141321, 4185.12931173438, 4177.342239333899, + 4169.3639058177505, 4157.189604894922, 4142.704644291052, + 4132.928878821647, 4137.761452805331, 4165.481816867124, + 4219.906871399299, 4297.775713850554, 4388.57666956124, 4480.68185001131, + 4564.45494739695, 4639.686540413255, 4720.438526267463, 4836.155851706094, + 5029.732488511817, 5350.292335638126, 5840.235385397228, 6535.26338372351, + 7441.465609318525, 8540.659884455665 + ], + "flow:J26:branch98_seg0": [ + 0.9708052748346065, 1.2540084407187952, 1.5643784753920653, + 1.8862208599671788, 2.2026821311688174, 2.4991283752664435, + 2.7648052716559612, 2.9938596859208038, 3.1842004090259857, + 3.3380341122740202, 3.4589292738125677, 3.5504190201492354, + 3.6159074678357683, 3.6566781940462003, 3.673201810884288, + 3.6655478283413263, 3.633512397184172, 3.578686777490958, + 3.503423105201624, 3.411263892575708, 3.306655892677374, + 3.193448107995534, 3.0749874082365456, 2.953486053954379, + 2.830114244122555, 2.7056501977413965, 2.580904569962809, + 2.457288957427084, 2.3369155093144753, 2.222290318530132, + 2.1154655601857844, 2.017294278518755, 1.9265327902331173, + 1.839471937104089, 1.7504637823353528, 1.6527222919269062, + 1.5399099340281415, 1.407518868361447, 1.254651284358734, + 1.0839181374106703, 0.9018552919871015, 0.7176667114280292, + 0.5415052477600721, 0.3827708885892244, 0.24865792473190745, + 0.14313787104309886, 0.06637262819708525, 0.016303706830379926, + -0.011368379414792153, -0.02126563403479271, -0.017217008483414214, + -0.0023145203045155808, 0.021807535027144245, 0.05397053473427203, + 0.0928311861900365, 0.13654314301808962, 0.1820901033920173, + 0.22574545392872256, 0.2635971131458187, 0.29240742070288717, + 0.31016916645720355, 0.31686561587744383, 0.31415007178813287, + 0.3047417603783719, 0.2919389136540992, 0.2783303543538839, + 0.2653245731449647, 0.2529162964014014, 0.23988729239322598, + 0.22450882156965843, 0.20534786333209964, 0.18194734360203738, + 0.15525186292585952, 0.1273246952995379, 0.10092179623401072, + 0.07862054194504485, 0.062095768753874056, 0.05156627605420127, + 0.04598056984939551, 0.043318908927914845, 0.0414360668410866, + 0.03894434929033322, 0.03567678407035565, 0.032807502583643185, + 0.032441762248020665, 0.036729181305307425, 0.04707325780505935, + 0.06331602470126278, 0.08372988554249873, 0.10563821159052163, + 0.12642012173796896, 0.14509983074190247, 0.16360441053485303, + 0.18741489100972786, 0.2254858092215761, 0.28875541761596324, + 0.38839756606251064, 0.5335377212033717, 0.7279962962703578, + 0.9708052748346065 + ], + "pressure:J26:branch98_seg0": [ + 8540.659884455665, 9794.081326211808, 11134.656458290521, + 12494.187507439805, 13804.166726330333, 15007.14643121403, + 16064.885345621336, 16963.272267218752, 17698.65685947865, + 18284.079836620935, 18740.10358036658, 19077.073091074435, + 19308.465837973166, 19438.301801433045, 19464.21340958508, + 19389.69998242597, 19212.56222373928, 18941.210711039836, + 18591.368339266606, 18176.09316655142, 17715.93262306161, + 17226.87396385986, 16720.004340273274, 16203.739108648078, + 15681.2462356417, 15155.275811868441, 14630.197860108143, + 14113.060166934572, 13613.804225253372, 13143.27084766022, + 12708.68364813093, 12310.22574170101, 11939.157364773197, + 11575.20405327495, 11191.657734542312, 10759.170495950792, + 10253.94157248999, 9660.3516382807, 8982.017592861788, 8237.710027264386, + 7459.167415760965, 6689.892928868682, 5972.659596054735, + 5344.334126283936, 4828.200686913514, 4437.443541112815, + 4165.475524908496, 3998.490239640204, 3918.8799999121047, + 3904.9027220839957, 3943.4187170786595, 4023.9072673876444, + 4139.978831368099, 4288.374940118135, 4462.0528518963765, + 4651.746869471809, 4843.389801484342, 5020.006355303771, + 5165.463343652706, 5268.399564895771, 5322.946691957524, + 5331.881509603449, 5306.277227880675, 5257.740596451966, + 5200.195797237902, 5143.399834517167, 5090.333025520839, + 5038.531654634182, 4981.363656059876, 4911.174976719489, + 4823.431064542455, 4718.030727044299, 4601.475510996734, + 4484.382859723176, 4378.583169735757, 4293.919872468419, + 4235.460860730894, 4201.478249141321, 4185.12931173438, 4177.342239333899, + 4169.3639058177505, 4157.189604894922, 4142.704644291052, + 4132.928878821647, 4137.761452805331, 4165.481816867124, + 4219.906871399299, 4297.775713850554, 4388.57666956124, 4480.68185001131, + 4564.45494739695, 4639.686540413255, 4720.438526267463, 4836.155851706094, + 5029.732488511817, 5350.292335638126, 5840.235385397228, 6535.26338372351, + 7441.465609318525, 8540.659884455665 + ], + "flow:branch42_seg0:J27": [ + 1.1771538354504678, 1.5126620288967545, 1.8755208411488629, + 2.2472596693943387, 2.608360242156156, 2.94247582746859, + 3.238122149836896, 3.489816610719788, 3.6960142772437, 3.8601908796456885, + 3.9870527962655817, 4.080531680091514, 4.1445434967271355, + 4.180119185579816, 4.18743122190181, 4.166597110383023, + 4.1173014139787405, 4.041933944964221, 3.943738986297169, + 3.8271851329955267, 3.6979144059881883, 3.5604053041128667, + 3.4184073641651587, 3.27425953922765, 3.1290019616458893, + 2.9833952275185096, 2.8383824502834827, 2.695737375696559, + 2.5580828341340762, 2.4283931271467813, 2.308844254934611, + 2.1999326299164936, 2.099512325972742, 2.0024135249211232, + 1.9014203372461569, 1.7883205826831783, 1.6559710515961303, + 1.49979411286494, 1.3200292105460025, 1.1210419229643305, + 0.9116727145624026, 0.703526828599935, 0.508587432256158, + 0.3372762477064195, 0.1968653992218448, 0.09071870285338374, + 0.017465649411834653, -0.026254848640106503, -0.04607128153340943, + -0.047629607596973315, -0.03502401027189038, -0.011534668684931804, + 0.021339057580726604, 0.06251595152948419, 0.11038523138759328, + 0.16271144263292622, 0.21578049645683903, 0.26514365792981465, + 0.306354409622841, 0.3360195788095392, 0.35231772325523064, + 0.3558850226442753, 0.349264467771166, 0.3359132718707953, + 0.3197895652191667, 0.30368045074551364, 0.28879234395941994, + 0.274667183471139, 0.25953664701307, 0.2412629808749196, + 0.21832654217514882, 0.19051317284326053, 0.15936287220046075, + 0.12759320666435225, 0.09853333167102875, 0.07503955101892351, + 0.05870174733608092, 0.0492685459606915, 0.04508268851091399, + 0.043556555602647415, 0.042180585235468665, 0.03961845278814016, + 0.03608826994619386, 0.033350207450933256, 0.03409015654726513, + 0.040752214996892244, 0.05466563224912547, 0.07515661437164901, + 0.09972081882169748, 0.1250304358103984, 0.14815490614448992, + 0.1685256900337459, 0.18929568420215961, 0.21785345243834675, + 0.26548382874285104, 0.345272632372836, 0.4698499656539037, + 0.6491148399480599, 0.8857580322256926, 1.1771538354504678 + ], + "pressure:branch42_seg0:J27": [ + 9092.866555608274, 10461.957312326449, 11905.905168581383, + 13351.59706337934, 14727.450260874975, 15974.389666469286, + 17055.39389283456, 17961.70405311612, 18692.64221207863, + 19263.87519647103, 19701.433316616254, 20014.04987078552, + 20215.35244165545, 20308.97460026769, 20289.71654857315, + 20163.101578855978, 19926.47578041501, 19590.37542645163, + 19175.354321290088, 18695.45289483706, 18174.436970744122, + 17629.507483018275, 17071.058942492473, 16507.49316288844, + 15940.937608988408, 15373.900977586987, 14811.473872900015, + 14261.83073553115, 13736.244389219379, 13246.384537485013, + 12798.848671983144, 12391.21819361768, 12011.418809553717, + 11634.156233411546, 11228.434535919783, 10762.195515476684, + 10211.804836386154, 9563.401550918812, 8826.348050867507, + 8026.721123286117, 7202.265708154138, 6402.912167116916, + 5674.448450591775, 5053.643964500921, 4559.897849848328, + 4203.427764058488, 3970.934070055644, 3843.8094806841887, + 3802.673122846587, 3822.5599592683143, 3891.6133207608805, + 4000.149659715233, 4142.022001431554, 4315.217367484807, + 4511.246345457384, 4719.517885238343, 4924.40684201858, 5107.127649875167, + 5251.023578436905, 5345.8373451259795, 5387.485780261003, + 5381.144753064253, 5341.592252254637, 5281.810104652102, + 5216.5742038567905, 5155.483477733689, 5099.718700431036, + 5044.859802780846, 4982.72926808701, 4904.910300132552, 4807.586362660713, + 4691.974478997617, 4566.850130042262, 4444.761639393003, + 4338.459785292161, 4257.6138974705245, 4206.084974665303, + 4179.99161503539, 4170.24954341597, 4166.772627231691, 4160.327432611096, + 4147.972173956526, 4133.571894598819, 4126.064499210385, + 4136.708996138065, 4173.752332236237, 4239.714318390342, + 4329.236556051577, 4428.921684100207, 4525.969452722695, + 4611.205388925748, 4687.145632293306, 4772.87670461407, 4904.09908295857, + 5129.91339176363, 5504.3034239022045, 6069.235446464726, + 6860.717668468427, 7877.706032020985, 9092.866555608274 + ], + "flow:J27:branch43_seg0": [ + 0.6475639759276746, 0.8310446525353187, 1.0289159799589156, + 1.2311069651964472, 1.4270034190780947, 1.6077977644989494, + 1.7673788520954394, 1.9029445327498054, 2.0137563187194107, + 2.10181222392955, 2.169738176048267, 2.2196244013427817, + 2.253596280781553, 2.2721567539364935, 2.2753526861072695, + 2.2632684657479185, 2.235715478401173, 2.194052420056575, + 2.140090914131554, 2.076268188430335, 2.005686947734983, + 1.930755668884465, 1.8534795379195135, 1.7751000066115186, + 1.6961459975159192, 1.6170226150667881, 1.538250624119951, + 1.46081446960609, 1.3861611898667514, 1.3159154668428932, + 1.2512369920259745, 1.1923448890315065, 1.1380068256739464, + 1.0853293388000538, 1.0303376132307434, 0.9685471440069516, + 0.8961109710351964, 0.8106077991575596, 0.7122988873940649, + 0.6036771093581957, 0.48965038536792743, 0.3766058430724691, + 0.2710616235574042, 0.1786341306991889, 0.10318120267454127, + 0.04643944423357231, 0.007528787344627667, -0.015436790280468496, + -0.025554365689302118, -0.025910722920198262, -0.01867939572856821, + -0.005617507527938298, 0.012496049817625692, 0.035095849610632106, + 0.06128436746537869, 0.08982939071897929, 0.11867913988225337, + 0.14539312029203977, 0.16755765288238827, 0.18336093297242329, + 0.19185641868848044, 0.19344950042886397, 0.1895825586548411, + 0.18215131070499263, 0.17331624388148337, 0.16456538823475156, + 0.15650740656308942, 0.14884936138184607, 0.14059760374608601, + 0.13058102256196502, 0.11799295352097235, 0.10275084892558295, + 0.08573923960410364, 0.06846665784493802, 0.05275470897527563, + 0.040142039408125524, 0.0314587287048248, 0.026518408442574574, + 0.02438116964239021, 0.02362183276025092, 0.022877262279039946, + 0.021453716707951303, 0.019513086309444948, 0.018051584575558815, + 0.018551980269984898, 0.022334154221962266, 0.0300883335029261, + 0.04139781148669322, 0.054848944160090056, 0.06861611800891235, + 0.08112165691286066, 0.09212062708741552, 0.10342837256754976, + 0.11917353941923721, 0.1455901856860557, 0.18983822194386224, + 0.2587491632054775, 0.35764371183607835, 0.487779354622112, + 0.6475639759276746 + ], + "pressure:J27:branch43_seg0": [ + 9092.866555608274, 10461.957312326449, 11905.905168581383, + 13351.59706337934, 14727.450260874975, 15974.389666469286, + 17055.39389283456, 17961.70405311612, 18692.64221207863, + 19263.87519647103, 19701.433316616254, 20014.04987078552, + 20215.35244165545, 20308.97460026769, 20289.71654857315, + 20163.101578855978, 19926.47578041501, 19590.37542645163, + 19175.354321290088, 18695.45289483706, 18174.436970744122, + 17629.507483018275, 17071.058942492473, 16507.49316288844, + 15940.937608988408, 15373.900977586987, 14811.473872900015, + 14261.83073553115, 13736.244389219379, 13246.384537485013, + 12798.848671983144, 12391.21819361768, 12011.418809553717, + 11634.156233411546, 11228.434535919783, 10762.195515476684, + 10211.804836386154, 9563.401550918812, 8826.348050867507, + 8026.721123286117, 7202.265708154138, 6402.912167116916, + 5674.448450591775, 5053.643964500921, 4559.897849848328, + 4203.427764058488, 3970.934070055644, 3843.8094806841887, + 3802.673122846587, 3822.5599592683143, 3891.6133207608805, + 4000.149659715233, 4142.022001431554, 4315.217367484807, + 4511.246345457384, 4719.517885238343, 4924.40684201858, 5107.127649875167, + 5251.023578436905, 5345.8373451259795, 5387.485780261003, + 5381.144753064253, 5341.592252254637, 5281.810104652102, + 5216.5742038567905, 5155.483477733689, 5099.718700431036, + 5044.859802780846, 4982.72926808701, 4904.910300132552, 4807.586362660713, + 4691.974478997617, 4566.850130042262, 4444.761639393003, + 4338.459785292161, 4257.6138974705245, 4206.084974665303, + 4179.99161503539, 4170.24954341597, 4166.772627231691, 4160.327432611096, + 4147.972173956526, 4133.571894598819, 4126.064499210385, + 4136.708996138065, 4173.752332236237, 4239.714318390342, + 4329.236556051577, 4428.921684100207, 4525.969452722695, + 4611.205388925748, 4687.145632293306, 4772.87670461407, 4904.09908295857, + 5129.91339176363, 5504.3034239022045, 6069.235446464726, + 6860.717668468427, 7877.706032020985, 9092.866555608274 + ], + "flow:J27:branch134_seg0": [ + 0.5295898595227932, 0.6816173763614355, 0.8466048611899474, + 1.016152704197892, 1.1813568230780607, 1.334678062969641, + 1.4707432977414565, 1.5868720779699825, 1.6822579585242898, + 1.7583786557161387, 1.8173146202173156, 1.8609072787487333, + 1.890947215945584, 1.9079624316433228, 1.9120785357945405, + 1.9033286446351045, 1.8815859355775675, 1.8478815249076477, + 1.803648072165615, 1.7509169445651913, 1.6922274582532053, + 1.6296496352284024, 1.5649278262456445, 1.499159532616131, + 1.4328559641299703, 1.3663726124517213, 1.3001318261635313, + 1.2349229060904683, 1.1719216442673248, 1.112477660303888, + 1.0576072629086362, 1.007587740884987, 0.9615055002987959, + 0.9170841861210695, 0.871082724015414, 0.8197734386762268, + 0.7598600805609338, 0.6891863137073805, 0.6077303231519381, + 0.517364813606135, 0.42202232919447524, 0.32692098552746585, + 0.23752580869875398, 0.1586421170072306, 0.09368419654730353, + 0.04427925861981142, 0.009936862067206982, -0.01081805835963801, + -0.02051691584410732, -0.021718884676775057, -0.016344614543322176, + -0.0059171611569935065, 0.008843007763100907, 0.02742010191885209, + 0.04910086392221461, 0.07288205191394698, 0.09710135657458567, + 0.11975053763777484, 0.13879675674045272, 0.15265864583711586, + 0.16046130456675015, 0.16243552221541138, 0.15968190911632482, + 0.15376196116580274, 0.14647332133768334, 0.1391150625107621, + 0.1322849373963306, 0.12581782208929293, 0.11893904326698396, + 0.11068195831295458, 0.10033358865417646, 0.08776232391767755, + 0.07362363259635708, 0.05912654881941429, 0.045778622695753134, + 0.034897511610797995, 0.027243018631256118, 0.022750137518116925, + 0.02070151886852378, 0.019934722842396505, 0.01930332295642874, + 0.018164736080188856, 0.01657518363674891, 0.015298622875374436, + 0.015538176277280234, 0.01841806077492998, 0.02457729874619937, + 0.03375880288495579, 0.0448718746616074, 0.05641431780148608, + 0.0670332492316293, 0.07640506294633036, 0.08586731163460982, + 0.09867991301910954, 0.11989364305679528, 0.15543441042897374, + 0.21110080244842622, 0.2914711281119815, 0.39797867760358074, + 0.5295898595227932 + ], + "pressure:J27:branch134_seg0": [ + 9092.866555608274, 10461.957312326449, 11905.905168581383, + 13351.59706337934, 14727.450260874975, 15974.389666469286, + 17055.39389283456, 17961.70405311612, 18692.64221207863, + 19263.87519647103, 19701.433316616254, 20014.04987078552, + 20215.35244165545, 20308.97460026769, 20289.71654857315, + 20163.101578855978, 19926.47578041501, 19590.37542645163, + 19175.354321290088, 18695.45289483706, 18174.436970744122, + 17629.507483018275, 17071.058942492473, 16507.49316288844, + 15940.937608988408, 15373.900977586987, 14811.473872900015, + 14261.83073553115, 13736.244389219379, 13246.384537485013, + 12798.848671983144, 12391.21819361768, 12011.418809553717, + 11634.156233411546, 11228.434535919783, 10762.195515476684, + 10211.804836386154, 9563.401550918812, 8826.348050867507, + 8026.721123286117, 7202.265708154138, 6402.912167116916, + 5674.448450591775, 5053.643964500921, 4559.897849848328, + 4203.427764058488, 3970.934070055644, 3843.8094806841887, + 3802.673122846587, 3822.5599592683143, 3891.6133207608805, + 4000.149659715233, 4142.022001431554, 4315.217367484807, + 4511.246345457384, 4719.517885238343, 4924.40684201858, 5107.127649875167, + 5251.023578436905, 5345.8373451259795, 5387.485780261003, + 5381.144753064253, 5341.592252254637, 5281.810104652102, + 5216.5742038567905, 5155.483477733689, 5099.718700431036, + 5044.859802780846, 4982.72926808701, 4904.910300132552, 4807.586362660713, + 4691.974478997617, 4566.850130042262, 4444.761639393003, + 4338.459785292161, 4257.6138974705245, 4206.084974665303, + 4179.99161503539, 4170.24954341597, 4166.772627231691, 4160.327432611096, + 4147.972173956526, 4133.571894598819, 4126.064499210385, + 4136.708996138065, 4173.752332236237, 4239.714318390342, + 4329.236556051577, 4428.921684100207, 4525.969452722695, + 4611.205388925748, 4687.145632293306, 4772.87670461407, 4904.09908295857, + 5129.91339176363, 5504.3034239022045, 6069.235446464726, + 6860.717668468427, 7877.706032020985, 9092.866555608274 + ], + "flow:branch45_seg0:J28": [ + 1.829583774963638, 2.345078825210663, 2.8986772862900376, + 3.461965400330882, 4.005100393475459, 4.5037628420007385, + 4.941495598458901, 5.311295739175523, 5.611664769026798, + 5.848941807541905, 6.030842518189103, 6.163255119038695, + 6.252206610992092, 6.298837853393559, 6.303125512686186, + 6.265229750467034, 6.184539606855929, 6.065025469239736, + 5.9118022579842435, 5.731824220862786, 5.533882252909456, + 5.324585353716653, 5.109452566505257, 4.891760967241394, + 4.6727914030732745, 4.453565379157468, 4.235474404015431, + 4.021296900088426, 3.815135788632324, 3.621574772162714, + 3.4437882109711735, 3.282261057543104, 3.1332981153938717, + 2.988490894437701, 2.8365048377291693, 2.664659637868735, + 2.4622529087692584, 2.2227588223524424, 1.9473786125513923, + 1.643539963852116, 1.3254716537102496, 1.0114046722357017, + 0.7196567928819322, 0.46580095583919, 0.2603522688207521, + 0.10763662069252242, 0.0046081882848433104, -0.05429732758489238, + -0.07815547098234635, -0.07566374527908423, -0.052799120477774075, + -0.014404210669524246, 0.03762075587140286, 0.10179828478289837, + 0.17564262244932174, 0.25573271909902484, 0.33622122121372766, + 0.41021762352865965, 0.4709775365498642, 0.513535551077371, + 0.535409242550318, 0.5379998850858054, 0.5255950044420646, + 0.5036434573572186, 0.4782934062534683, 0.453634951241596, + 0.4312152451889606, 0.4100268942985011, 0.3871097879117111, + 0.3590909241158775, 0.3237103239070834, 0.280845944020594, + 0.23314264225254314, 0.18495478248330477, 0.14147884339207803, + 0.10701281919788183, 0.08377112476146635, 0.07102954930095405, + 0.06600199417120617, 0.06454862450172193, 0.06280494042922513, + 0.05891604712131976, 0.05347814953484953, 0.04945119646434362, + 0.051117342979973945, 0.062199171973988804, 0.0845567344688879, + 0.11684481503320313, 0.15490126604968274, 0.19348703777923734, + 0.22815569324560955, 0.25837820950698354, 0.2895525193855459, + 0.33363035655753703, 0.40845394555939585, 0.5342390884285443, + 0.730185943299562, 1.0108447732400638, 1.378937407849367, + 1.829583774963638 + ], + "pressure:branch45_seg0:J28": [ + 8921.573823281697, 10275.378347058464, 11715.219367917205, + 13167.44114421981, 14557.090913878243, 15823.390215731137, + 16926.743502385427, 17853.662134305247, 18602.799112167828, + 19190.478428796407, 19639.632887167565, 19962.9138346282, + 20174.92026373234, 20278.699691434926, 20271.889376985462, + 20156.84410655813, 19931.64521213363, 19607.052050776307, + 19199.26838072132, 18724.9615221462, 18207.412992265425, 17663.5928677599, + 17106.06354763714, 16543.028256685717, 15977.111258720082, + 15410.836825177174, 14848.422438130856, 14297.545132249188, + 13769.200244882568, 13275.153018103088, 12822.871130585789, + 12411.757119764097, 12030.871490828018, 11656.560822402307, + 11258.512046274682, 10804.095020441471, 10267.432017993802, + 9633.366002236171, 8908.217722944926, 8114.711009563502, + 7290.743223267717, 6484.967484913876, 5744.271080392907, + 5107.143650837632, 4597.203635862945, 4224.563214471363, + 3978.2976837198307, 3841.974367320114, 3793.417530573693, + 3809.082950703894, 3875.191501267735, 3980.5199724510912, + 4119.828411640516, 4290.228947828517, 4484.357893505655, + 4692.530546665477, 4899.301187656213, 5086.3434399266125, + 5236.574809556027, 5338.333142506484, 5386.529098137676, + 5385.700159788079, 5348.718679810943, 5289.472386482981, + 5223.429187326611, 5160.613074942498, 5103.643121820078, + 5048.912949761924, 4988.347271253317, 4913.293236261771, + 4818.803956606365, 4705.382925539324, 4580.934658781494, + 4457.4154994414175, 4348.060341589956, 4263.324297837069, + 4207.96864817979, 4179.042826750627, 4168.3075393563, 4165.228640448986, + 4160.10624759948, 4149.073952238296, 4134.848028149169, + 4125.8352700267515, 4133.310658794655, 4166.329683677143, + 4228.554350316558, 4315.476902278968, 4415.018791194541, + 4513.765224604634, 4601.265473210611, 4678.084889081718, + 4760.864243616607, 4883.088689927863, 5092.740223687347, + 5442.964185711563, 5980.228669635219, 6741.169760337381, 7728.11858054374, + 8921.573823281697 + ], + "flow:J28:branch46_seg0": [ + 0.8503901995160029, 1.0900641550346968, 1.3474860914271112, + 1.6094379056944963, 1.8620385076273542, 2.0939751064458747, + 2.297588945233977, 2.4696127759204334, 2.609348242868305, + 2.7197413472882745, 2.804373537944255, 2.8659921616648707, + 2.9074004635691835, 2.929132038972835, 2.931182307058253, + 2.9136204156068684, 2.8761643402105466, 2.82065534298451, + 2.7494638828737434, 2.6658250167531374, 2.5738216503900064, + 2.476527911376235, 2.3765134943069453, 2.275303048479848, + 2.1734947384786074, 2.0715635927408282, 1.9701551271075757, + 1.8705596306587664, 1.774683561515234, 1.6846584420414674, + 1.601963250691062, 1.5268290547682832, 1.4575426511174863, + 1.390200872128427, 1.3195359785815903, 1.2396510672580487, + 1.1455635942341142, 1.034232259728618, 0.9062032362685429, + 0.7649194920008209, 0.6169924612185815, 0.4708953524060539, + 0.3351503763693106, 0.21700777324289247, 0.12137006150151568, + 0.05025619117084964, 0.0022620926263523947, -0.025195623827000593, + -0.03633924540807077, -0.03521206408569206, -0.024600692243436396, + -0.006760108220457283, 0.017424567515541212, 0.04726334107307314, + 0.08160312871726864, 0.11885406312654058, 0.15629806672342783, + 0.1907316712904168, 0.21901662944832356, 0.2388397421006998, + 0.24904263595068268, 0.2502732542014014, 0.24452039661746525, + 0.2343191946547237, 0.22252976229080415, 0.21105688821263197, + 0.2006247352532008, 0.19076793265511688, 0.18011135166423378, + 0.16708599893381976, 0.150638075747968, 0.13070799180767312, + 0.10852215741080243, 0.08610398170787859, 0.06587082997819334, + 0.04982390598086338, 0.03899642999682241, 0.033055601002744246, + 0.03070836986262944, 0.030029139088567965, 0.02921968152811846, + 0.027413882933743507, 0.02488533266346046, 0.02300825800461953, + 0.023773580248821338, 0.028914620913523714, 0.03929997265103598, + 0.054307638360904, 0.0720058281684797, 0.08995729275383581, + 0.10609108698246944, 0.12015502992909058, 0.1346513363059894, + 0.15513087150040705, 0.18988636655404575, 0.24831858324227613, + 0.3393648090925241, 0.46979466599806696, 0.6408894469016148, + 0.8503901995160029 + ], + "pressure:J28:branch46_seg0": [ + 8921.573823281697, 10275.378347058464, 11715.219367917205, + 13167.44114421981, 14557.090913878243, 15823.390215731137, + 16926.743502385427, 17853.662134305247, 18602.799112167828, + 19190.478428796407, 19639.632887167565, 19962.9138346282, + 20174.92026373234, 20278.699691434926, 20271.889376985462, + 20156.84410655813, 19931.64521213363, 19607.052050776307, + 19199.26838072132, 18724.9615221462, 18207.412992265425, 17663.5928677599, + 17106.06354763714, 16543.028256685717, 15977.111258720082, + 15410.836825177174, 14848.422438130856, 14297.545132249188, + 13769.200244882568, 13275.153018103088, 12822.871130585789, + 12411.757119764097, 12030.871490828018, 11656.560822402307, + 11258.512046274682, 10804.095020441471, 10267.432017993802, + 9633.366002236171, 8908.217722944926, 8114.711009563502, + 7290.743223267717, 6484.967484913876, 5744.271080392907, + 5107.143650837632, 4597.203635862945, 4224.563214471363, + 3978.2976837198307, 3841.974367320114, 3793.417530573693, + 3809.082950703894, 3875.191501267735, 3980.5199724510912, + 4119.828411640516, 4290.228947828517, 4484.357893505655, + 4692.530546665477, 4899.301187656213, 5086.3434399266125, + 5236.574809556027, 5338.333142506484, 5386.529098137676, + 5385.700159788079, 5348.718679810943, 5289.472386482981, + 5223.429187326611, 5160.613074942498, 5103.643121820078, + 5048.912949761924, 4988.347271253317, 4913.293236261771, + 4818.803956606365, 4705.382925539324, 4580.934658781494, + 4457.4154994414175, 4348.060341589956, 4263.324297837069, + 4207.96864817979, 4179.042826750627, 4168.3075393563, 4165.228640448986, + 4160.10624759948, 4149.073952238296, 4134.848028149169, + 4125.8352700267515, 4133.310658794655, 4166.329683677143, + 4228.554350316558, 4315.476902278968, 4415.018791194541, + 4513.765224604634, 4601.265473210611, 4678.084889081718, + 4760.864243616607, 4883.088689927863, 5092.740223687347, + 5442.964185711563, 5980.228669635219, 6741.169760337381, 7728.11858054374, + 8921.573823281697 + ], + "flow:J28:branch89_seg0": [ + 0.9791935754476354, 1.2550146701759666, 1.5511911948629264, + 1.8525274946363857, 2.143061885848105, 2.409787735554864, + 2.6439066532249234, 2.8416829632550904, 3.0023165261584914, + 3.129200460253632, 3.226468980244848, 3.297262957373825, + 3.344806147422908, 3.369705814420724, 3.3719432056279333, + 3.351609334860166, 3.3083752666453816, 3.2443701262552276, + 3.1623383751105005, 3.0659992041096493, 2.960060602519451, + 2.8480574423404197, 2.7329390721983122, 2.616457918761545, + 2.4992966645946693, 2.3820017864166405, 2.2653192769078556, + 2.15073726942966, 2.0404522271170897, 1.9369163301212464, + 1.841824960280111, 1.75543200277482, 1.6757554642763857, + 1.598290022309274, 1.5169688591475785, 1.4250085706106868, + 1.316689314535144, 1.1885265626238242, 1.0411753762828497, + 0.8786204718512953, 0.708479192491668, 0.5405093198296478, + 0.3845064165126215, 0.24879318259629757, 0.1389822073192364, + 0.05738042952167278, 0.002346095658490916, -0.02910170375789178, + -0.04181622557427558, -0.04045168119339215, -0.02819842823433768, + -0.007644102449066961, 0.020196188355861653, 0.05453494370982525, + 0.09403949373205311, 0.1368786559724843, 0.17992315449029983, + 0.21948595223824283, 0.2519609071015406, 0.2746958089766712, + 0.28636660659963525, 0.2877266308844039, 0.2810746078245994, + 0.2693242627024949, 0.25576364396266416, 0.2425780630289641, + 0.23059050993575972, 0.2192589616433842, 0.20699843624747732, + 0.19200492518205772, 0.1730722481591153, 0.15013795221292087, + 0.12462048484174068, 0.09885080077542616, 0.07560801341388469, + 0.05718891321701847, 0.044774694764643935, 0.03797394829820981, + 0.03529362430857671, 0.03451948541315394, 0.03358525890110667, + 0.031502164187576245, 0.02859281687138908, 0.026442938459724077, + 0.02734376273115261, 0.03328455106046509, 0.04525676181785194, + 0.06253717667229912, 0.08289543788120304, 0.10352974502540147, + 0.12206460626314013, 0.13822317957789304, 0.15490118307955644, + 0.17849948505713006, 0.2185675790053501, 0.2859205051862682, + 0.39082113420703785, 0.5410501072419973, 0.7380479609477524, + 0.9791935754476354 + ], + "pressure:J28:branch89_seg0": [ + 8921.573823281697, 10275.378347058464, 11715.219367917205, + 13167.44114421981, 14557.090913878243, 15823.390215731137, + 16926.743502385427, 17853.662134305247, 18602.799112167828, + 19190.478428796407, 19639.632887167565, 19962.9138346282, + 20174.92026373234, 20278.699691434926, 20271.889376985462, + 20156.84410655813, 19931.64521213363, 19607.052050776307, + 19199.26838072132, 18724.9615221462, 18207.412992265425, 17663.5928677599, + 17106.06354763714, 16543.028256685717, 15977.111258720082, + 15410.836825177174, 14848.422438130856, 14297.545132249188, + 13769.200244882568, 13275.153018103088, 12822.871130585789, + 12411.757119764097, 12030.871490828018, 11656.560822402307, + 11258.512046274682, 10804.095020441471, 10267.432017993802, + 9633.366002236171, 8908.217722944926, 8114.711009563502, + 7290.743223267717, 6484.967484913876, 5744.271080392907, + 5107.143650837632, 4597.203635862945, 4224.563214471363, + 3978.2976837198307, 3841.974367320114, 3793.417530573693, + 3809.082950703894, 3875.191501267735, 3980.5199724510912, + 4119.828411640516, 4290.228947828517, 4484.357893505655, + 4692.530546665477, 4899.301187656213, 5086.3434399266125, + 5236.574809556027, 5338.333142506484, 5386.529098137676, + 5385.700159788079, 5348.718679810943, 5289.472386482981, + 5223.429187326611, 5160.613074942498, 5103.643121820078, + 5048.912949761924, 4988.347271253317, 4913.293236261771, + 4818.803956606365, 4705.382925539324, 4580.934658781494, + 4457.4154994414175, 4348.060341589956, 4263.324297837069, + 4207.96864817979, 4179.042826750627, 4168.3075393563, 4165.228640448986, + 4160.10624759948, 4149.073952238296, 4134.848028149169, + 4125.8352700267515, 4133.310658794655, 4166.329683677143, + 4228.554350316558, 4315.476902278968, 4415.018791194541, + 4513.765224604634, 4601.265473210611, 4678.084889081718, + 4760.864243616607, 4883.088689927863, 5092.740223687347, + 5442.964185711563, 5980.228669635219, 6741.169760337381, 7728.11858054374, + 8921.573823281697 + ], + "flow:branch49_seg0:J29": [ + 0.638260408636253, 0.8400431290538642, 1.0848397668157466, + 1.367789492387499, 1.6804081679544103, 2.0118757944232093, + 2.3504245653253437, 2.6847617104151285, 3.005104974760225, + 3.304126860195044, 3.5767479055738365, 3.819973017010409, + 4.032338102073776, 4.2130468926073, 4.361725216675419, 4.478034434906095, + 4.561734412155137, 4.613067713831651, 4.632800661837661, + 4.622638319230159, 4.585127821199507, 4.523399552905804, + 4.440957438022839, 4.3412099480037405, 4.227245086116865, + 4.101750364933802, 3.967076122095958, 3.8254745135045187, + 3.6793010545802507, 3.5311088314459873, 3.383502694474363, + 3.238831746937057, 3.098646694199747, 2.9632271553540415, + 2.831279361727695, 2.69991769309512, 2.5650716542801395, + 2.4222422900122726, 2.267503533606085, 2.098349010182274, + 1.9145486420299411, 1.7183437310510992, 1.5142806936113817, + 1.3085504174265596, 1.1081026284834588, 0.9195170427606109, + 0.7481935600597199, 0.5979220252954889, 0.4705119316350943, + 0.3662498626555705, 0.28426185044502844, 0.2229967750644427, + 0.18079004039622762, 0.15593097546735182, 0.14672657812582146, + 0.15133787005743077, 0.1674879448853754, 0.19238645266032617, + 0.22275055367039917, 0.2550639397706909, 0.28595549504472034, + 0.312707474408985, 0.3335309805095248, 0.34774615038410717, + 0.3556923380404665, 0.35834473933669064, 0.3569080034506923, + 0.35237234340446183, 0.34522341962183206, 0.33539898684565644, + 0.32245072901229554, 0.30588935931234057, 0.28554473648585826, + 0.26181194875418734, 0.23574582099841304, 0.2088823397316877, + 0.1829118108457247, 0.1592700893978814, 0.1388530171496986, + 0.12182924942807656, 0.10776784792709357, 0.09593347896794972, + 0.08566277708197624, 0.0767190490659235, 0.06946198214576256, + 0.06475881515311618, 0.0636975795680415, 0.0671252162172304, + 0.07529936535299503, 0.08770472318509695, 0.10321540118127788, + 0.12063037248185017, 0.1394377902405433, 0.16062430915287615, + 0.1873159697709178, 0.22490080139588386, 0.28077506589287843, + 0.3632791116415414, 0.4803281112536423, 0.638260408636253 + ], + "pressure:branch49_seg0:J29": [ + 5866.352831788457, 6449.308814525511, 7148.940442562021, 7949.67506505139, + 8826.253833407545, 9747.754204886056, 10681.56834757846, + 11597.459840137142, 12469.426109649192, 13278.783552141598, + 14013.17847470508, 14665.113875294139, 15231.406652257981, + 15710.18795489969, 16100.36031433718, 16401.266749765247, + 16612.19094719344, 16734.11267255423, 16769.785659657526, + 16724.26338234623, 16605.132642578636, 16421.319322864314, + 16182.512777526408, 15898.029126409778, 15576.110548997927, + 15223.925916054528, 14847.821114338447, 14454.003811307244, + 14049.070129121425, 13640.179784196514, 13234.456177282525, + 12838.059955286031, 12454.676803658362, 12084.132447976846, + 11721.888039924013, 11359.095932727922, 10984.059013830672, + 10584.293748443804, 10149.670119140825, 9674.449128777374, + 9159.384233921524, 8612.258139223291, 8046.822807186772, + 7480.885027195097, 6933.673566252888, 6422.961912032874, + 5962.615317338268, 5561.994273141083, 5225.048798722058, 4951.59735704935, + 4738.787212052526, 4582.06403563976, 4476.808492953268, 4418.371455569701, + 4401.985888048219, 4422.463128546805, 4473.221862294172, + 4546.220851686366, 4632.1737787841985, 4721.389268703554, + 4804.770906671317, 4875.3035975566745, 4928.806350843003, + 4963.970672658799, 4982.285621626819, 4986.745527923763, + 4980.634982485919, 4966.455197795633, 4945.2052436352715, + 4916.400306296099, 4878.671171940745, 4830.736161599344, + 4772.424527916803, 4705.217260158579, 4632.384722134918, + 4558.369578193174, 4487.820798247714, 4424.418284642708, + 4370.232840895152, 4325.317952324435, 4288.162592545756, 4256.67798725741, + 4229.199611875881, 4205.401133180483, 4186.6435268025225, + 4175.546155143433, 4175.123745119047, 4187.465117669209, + 4212.784733711648, 4249.249829125052, 4293.502900444512, + 4342.380957640795, 4395.144750858313, 4455.634824135229, 4533.8759512868, + 4646.083346517665, 4813.496563512541, 5059.503072807464, 5405.1137790128, + 5866.352831788457 + ], + "flow:J29:branch50_seg0": [ + 0.2219844358187029, 0.29210047267382894, 0.37708441163569784, + 0.47522897772856837, 0.5835744076383458, 0.6983622867836078, + 0.8155167800009395, 0.9311374798257276, 1.0418505404632243, + 1.145138641672309, 1.2392618216622833, 1.3231959552015673, + 1.3964456926381834, 1.4587397848211532, 1.509950837860431, + 1.5499636685756149, 1.578695529956538, 1.596234834229628, + 1.6028511029187906, 1.5991396653162941, 1.5859879513111936, + 1.5644815133473369, 1.5358338623169716, 1.5012229290624828, + 1.4617138638734422, 1.4182335543041857, 1.3715928464002765, + 1.3225702994368418, 1.2719815868219106, 1.2207111564975694, + 1.169659859206186, 1.1196378123609267, 1.0711755792906203, + 1.024360338218967, 0.9787340322157391, 0.933288185430188, + 0.886607828404832, 0.8371347197451313, 0.783516434197021, + 0.724896469927067, 0.6612105815350181, 0.5932510756890245, + 0.5226049950908208, 0.45142357567988406, 0.38211484863967327, + 0.31695202308683273, 0.25779356250250907, 0.20594085567218592, + 0.16200739662647595, 0.12608231536801198, 0.09785766999152139, + 0.07679256367732364, 0.062311063986528054, 0.053821611725378575, + 0.05073759967542884, 0.05242180485218358, 0.058083057069183444, + 0.06675203408261764, 0.07728980253300578, 0.08847873529671242, + 0.09915379447588767, 0.1083794940446838, 0.11554390716952387, + 0.12041867107189927, 0.12312783210686648, 0.12401248098096963, + 0.1234900299267295, 0.12190116908577774, 0.11941032288113625, + 0.11599239176601643, 0.11149015136143069, 0.10573454367072953, + 0.0986695520598378, 0.09043580659758656, 0.0814025905960732, + 0.0721042193983351, 0.06312605782364067, 0.0549624637152251, + 0.04791953453793026, 0.04205092439129618, 0.03720360791027447, + 0.0331218777198208, 0.02957733756479167, 0.02649131954805068, + 0.023992372252727632, 0.02238357336147262, 0.022042291641657535, + 0.02325934890554956, 0.026119245521727112, 0.03043873855408099, + 0.03582467496509588, 0.04186201467887648, 0.04837967040333704, + 0.05573027530677593, 0.06501061250631235, 0.07809990059142398, + 0.09756953811932075, 0.12631099865843612, 0.16705543802871065, + 0.2219844358187029 + ], + "pressure:J29:branch50_seg0": [ + 5866.352831788457, 6449.308814525511, 7148.940442562021, 7949.67506505139, + 8826.253833407545, 9747.754204886056, 10681.56834757846, + 11597.459840137142, 12469.426109649192, 13278.783552141598, + 14013.17847470508, 14665.113875294139, 15231.406652257981, + 15710.18795489969, 16100.36031433718, 16401.266749765247, + 16612.19094719344, 16734.11267255423, 16769.785659657526, + 16724.26338234623, 16605.132642578636, 16421.319322864314, + 16182.512777526408, 15898.029126409778, 15576.110548997927, + 15223.925916054528, 14847.821114338447, 14454.003811307244, + 14049.070129121425, 13640.179784196514, 13234.456177282525, + 12838.059955286031, 12454.676803658362, 12084.132447976846, + 11721.888039924013, 11359.095932727922, 10984.059013830672, + 10584.293748443804, 10149.670119140825, 9674.449128777374, + 9159.384233921524, 8612.258139223291, 8046.822807186772, + 7480.885027195097, 6933.673566252888, 6422.961912032874, + 5962.615317338268, 5561.994273141083, 5225.048798722058, 4951.59735704935, + 4738.787212052526, 4582.06403563976, 4476.808492953268, 4418.371455569701, + 4401.985888048219, 4422.463128546805, 4473.221862294172, + 4546.220851686366, 4632.1737787841985, 4721.389268703554, + 4804.770906671317, 4875.3035975566745, 4928.806350843003, + 4963.970672658799, 4982.285621626819, 4986.745527923763, + 4980.634982485919, 4966.455197795633, 4945.2052436352715, + 4916.400306296099, 4878.671171940745, 4830.736161599344, + 4772.424527916803, 4705.217260158579, 4632.384722134918, + 4558.369578193174, 4487.820798247714, 4424.418284642708, + 4370.232840895152, 4325.317952324435, 4288.162592545756, 4256.67798725741, + 4229.199611875881, 4205.401133180483, 4186.6435268025225, + 4175.546155143433, 4175.123745119047, 4187.465117669209, + 4212.784733711648, 4249.249829125052, 4293.502900444512, + 4342.380957640795, 4395.144750858313, 4455.634824135229, 4533.8759512868, + 4646.083346517665, 4813.496563512541, 5059.503072807464, 5405.1137790128, + 5866.352831788457 + ], + "flow:J29:branch88_seg0": [ + 0.41627597281755013, 0.5479426563800353, 0.7077553551800487, + 0.8925605146589306, 1.0968337603160645, 1.3135135076396012, + 1.5349077853244044, 1.7536242305894012, 1.9632544342970006, + 2.158988218522735, 2.3374860839115543, 2.4967770618088414, + 2.635892409435593, 2.7543071077861487, 2.851774378814987, + 2.9280707663304812, 2.9830388821985987, 3.016832879602025, + 3.0299495589188714, 3.0234986539138644, 2.9991398698883125, + 2.9589180395584664, 2.9051235757058667, 2.8399870189412564, + 2.765531222243423, 2.6835168106296163, 2.595483275695682, + 2.502904214067676, 2.407319467758339, 2.3103976749484176, + 2.2138428352681756, 2.119193934576131, 2.027471114909127, + 1.938866817135074, 1.852545329511955, 1.7666295076649323, + 1.6784638258753068, 1.585107570267141, 1.483987099409065, + 1.3734525402552062, 1.2533380604949234, 1.1250926553620748, + 0.9916756985205609, 0.8571268417466757, 0.7259877798437856, + 0.6025650196737778, 0.49039999755721086, 0.3919811696233031, + 0.3085045350086183, 0.24016754728755849, 0.18640418045350707, + 0.146204211387119, 0.11847897640969957, 0.1021093637419732, + 0.0959889784503926, 0.09891606520524714, 0.10940488781619198, + 0.1256344185777086, 0.14546075113739337, 0.1665852044739786, + 0.1868017005688326, 0.20432798036430114, 0.21798707334000095, + 0.22732747931220793, 0.23256450593360006, 0.23433225835572102, + 0.23341797352396282, 0.23047117431868422, 0.2258130967406958, + 0.21940659507964, 0.21096057765086482, 0.20015481564161103, + 0.18687518442602047, 0.17137614215660074, 0.1543432304023398, + 0.1367781203333526, 0.11978575302208401, 0.10430762568265635, + 0.09093348261176834, 0.07977832503678035, 0.07056424001681909, + 0.06281160124812894, 0.05608543951718457, 0.050227729517872806, + 0.045469609893034925, 0.04237524179164356, 0.041655287926383976, + 0.04386586731168085, 0.04918011983126792, 0.05726598463101594, + 0.067390726216182, 0.07876835780297373, 0.09105811983720628, + 0.10489403384610019, 0.1223053572646055, 0.14680090080445993, + 0.18320552777355764, 0.23696811298310527, 0.3132726732249317, + 0.41627597281755013 + ], + "pressure:J29:branch88_seg0": [ + 5866.352831788457, 6449.308814525511, 7148.940442562021, 7949.67506505139, + 8826.253833407545, 9747.754204886056, 10681.56834757846, + 11597.459840137142, 12469.426109649192, 13278.783552141598, + 14013.17847470508, 14665.113875294139, 15231.406652257981, + 15710.18795489969, 16100.36031433718, 16401.266749765247, + 16612.19094719344, 16734.11267255423, 16769.785659657526, + 16724.26338234623, 16605.132642578636, 16421.319322864314, + 16182.512777526408, 15898.029126409778, 15576.110548997927, + 15223.925916054528, 14847.821114338447, 14454.003811307244, + 14049.070129121425, 13640.179784196514, 13234.456177282525, + 12838.059955286031, 12454.676803658362, 12084.132447976846, + 11721.888039924013, 11359.095932727922, 10984.059013830672, + 10584.293748443804, 10149.670119140825, 9674.449128777374, + 9159.384233921524, 8612.258139223291, 8046.822807186772, + 7480.885027195097, 6933.673566252888, 6422.961912032874, + 5962.615317338268, 5561.994273141083, 5225.048798722058, 4951.59735704935, + 4738.787212052526, 4582.06403563976, 4476.808492953268, 4418.371455569701, + 4401.985888048219, 4422.463128546805, 4473.221862294172, + 4546.220851686366, 4632.1737787841985, 4721.389268703554, + 4804.770906671317, 4875.3035975566745, 4928.806350843003, + 4963.970672658799, 4982.285621626819, 4986.745527923763, + 4980.634982485919, 4966.455197795633, 4945.2052436352715, + 4916.400306296099, 4878.671171940745, 4830.736161599344, + 4772.424527916803, 4705.217260158579, 4632.384722134918, + 4558.369578193174, 4487.820798247714, 4424.418284642708, + 4370.232840895152, 4325.317952324435, 4288.162592545756, 4256.67798725741, + 4229.199611875881, 4205.401133180483, 4186.6435268025225, + 4175.546155143433, 4175.123745119047, 4187.465117669209, + 4212.784733711648, 4249.249829125052, 4293.502900444512, + 4342.380957640795, 4395.144750858313, 4455.634824135229, 4533.8759512868, + 4646.083346517665, 4813.496563512541, 5059.503072807464, 5405.1137790128, + 5866.352831788457 + ], + "flow:branch54_seg0:J30": [ + 3.710188333539493, 4.784711064574856, 5.956787701240605, 7.16713064476082, + 8.352367113844016, 9.457854606847821, 10.443762746146337, + 11.289016491827937, 11.986475810178558, 12.545158158935397, + 12.979223698842373, 13.301928316767508, 13.526194473450898, + 13.656553927143067, 13.694410247872176, 13.64018239149532, + 13.493114169000027, 13.260030355692361, 12.950743254734823, + 12.579383684959865, 12.163714706181011, 11.718665195574081, + 11.25696509710272, 10.786860677468752, 10.312448623154223, + 9.836479623870439, 9.36198775353237, 8.894424203745473, 8.441935373255763, + 8.013997935659981, 7.618018777721663, 7.256411477152699, 6.92337769902923, + 6.603559036796604, 6.274512658028996, 5.909978185418775, + 5.486214727628478, 4.987105545113472, 4.411119938093049, + 3.770251724010097, 3.0912034978718257, 2.410269052760395, + 1.7662345409299667, 1.1938722517780183, 0.7185704819146863, + 0.35325689883697253, 0.0959487847948267, -0.06294692854917387, + -0.1408261335845108, -0.1557870107038079, -0.12197659983859246, + -0.0506707577988841, 0.052412482615523524, 0.18325624637834953, + 0.33679108046579515, 0.5059733636152718, 0.6792840760782104, + 0.8426373241687134, 0.9815594719939856, 1.0844783437404457, + 1.1446964366329921, 1.1631443276426365, 1.1470314565051973, + 1.1071395722539799, 1.0561416802771582, 1.0035641704179874, + 0.9541686527521176, 0.9073281622861876, 0.857975850026617, + 0.7994204336304942, 0.72646645627917, 0.6378223714466424, + 0.5376520149382288, 0.43417095817445844, 0.33790758220706163, + 0.2583422570720051, 0.20124033807915284, 0.1666887319916775, + 0.1500542924899652, 0.1433741793423506, 0.13852575928219235, + 0.13064118479831635, 0.11965390516865478, 0.11052361284677024, + 0.11148895414743869, 0.1305563666940345, 0.17255503695680804, + 0.23620852297805067, 0.31431869844403837, 0.3965079109212928, + 0.47309543948875427, 0.5412139522500876, 0.6094016999674512, + 0.6997023794458919, 0.8470253570288268, 1.0930353807809778, + 1.4792043366094714, 2.0389769959581976, 2.7844991096662075, + 3.710188333539493 + ], + "pressure:branch54_seg0:J30": [ + 9049.830482974878, 10411.671554877286, 11850.904609331865, + 13294.691475789385, 14671.544805109746, 15922.120729517317, + 17008.53743794058, 17920.88862586782, 18658.28704551437, + 19235.187368559837, 19677.44492386812, 19994.10505070533, + 20198.727735227392, 20295.51526802257, 20279.55289830088, + 20156.230051554154, 19923.18896529574, 19590.614777641786, + 19178.63395107665, 18701.337657146403, 18182.160326990703, + 17638.403059506727, 17080.65143320479, 16517.443152947948, + 15951.155601457538, 15384.379370981353, 14822.171028457393, + 14272.577080111922, 13746.716244707683, 13256.111652982008, + 12807.479873482038, 12398.57042352264, 12017.728333756211, + 11640.144694973935, 11235.22039099266, 10771.062088566909, + 10223.907079274966, 9579.611120948693, 8846.707592344697, + 8050.595540190553, 7228.376125149395, 6429.379675442519, + 5699.375250883965, 5075.270550013087, 4577.1492423273, 4215.663977252476, + 3978.3323177630414, 3847.0172770873423, 3802.529066266206, + 3820.1071784449146, 3887.549764473788, 3994.9770934049848, + 4135.94131396197, 4308.295459777432, 4503.613653464285, 4711.372164223348, + 4916.201005408176, 5099.488294386381, 5244.628390633361, 5341.17210287124, + 5384.926560422762, 5380.602396189228, 5342.599885344025, + 5283.832059628062, 5218.952099698631, 5157.703735496608, + 5101.557313031622, 5046.378155262473, 4984.214399677311, + 4906.762073220845, 4810.101066486054, 4695.2757613062195, + 4570.772755307124, 4448.907558898729, 4342.307658237985, 4260.67935146744, + 4208.052981837508, 4180.859677290993, 4170.246317929601, + 4166.326980509386, 4159.885756571327, 4147.828160930738, + 4133.740028988516, 4126.296174733112, 4136.556968632435, + 4172.793838427138, 4237.637718907892, 4326.070320309888, + 4425.058626497449, 4521.925062046783, 4607.503291221061, + 4683.981967420184, 4769.909558732794, 4900.28282048065, 5123.617799779641, + 5493.412197501482, 6051.836957089696, 6835.185865637224, + 7843.262008128316, 9049.830482974878 + ], + "flow:J30:branch55_seg0": [ + 1.9403311179050808, 2.5053468397402483, 3.123263747611446, + 3.7629870775711183, 4.39101221923632, 4.978215871223855, + 5.503158468313064, 5.954237593088356, 6.327206842777145, + 6.626560702712413, 6.859583944275374, 7.033286345512023, + 7.154575593797316, 7.22595786654233, 7.248295647148296, 7.221821542470621, + 7.146137958014232, 7.0247373788423175, 6.8626974373051555, + 6.667437942070752, 6.448306779378035, 6.213246682877971, 5.96908380133174, + 5.720283610208853, 5.469108785514761, 5.217057394968153, + 4.965722402067828, 4.717939561878048, 4.477962020596011, + 4.250784424194968, 4.0403654437802325, 3.848117534911464, + 3.671151133634062, 3.5015500551455365, 3.3276080697946964, + 3.1355081673086733, 2.9126212655571115, 2.650239899818704, + 2.3472452501355066, 2.0096385711136535, 1.6512421993800588, + 1.291041813203228, 0.9494791040643792, 0.6450383957942268, + 0.3913834738772277, 0.1955940339072874, 0.056952336620774424, + -0.029391753633400575, -0.07251850441044105, -0.08195168718032735, + -0.0652486464456853, -0.0284739130779431, 0.025271229247092377, + 0.09379650693572494, 0.17444111519465197, 0.2635507112561898, + 0.355111570052694, 0.44173912311857927, 0.5157855741724652, + 0.571067061061349, 0.6039067395136648, 0.6146456517204748, + 0.6069409573548319, 0.5864037575016091, 0.5597113163154939, + 0.5319593533291201, 0.5057774071338175, 0.4809607351954468, + 0.4549281725810447, 0.4241792321524855, 0.3859284045731763, + 0.33940778143108324, 0.28669723408534087, 0.23204141659628788, + 0.18096263059320664, 0.13849889984707492, 0.10778464127989007, + 0.08898610790936269, 0.07977728526535445, 0.07600953777181861, + 0.07339073200627164, 0.06927834930393614, 0.06352489679196545, + 0.05863930078337206, 0.05890714785647877, 0.06856393945201592, + 0.09024632691709673, 0.12340746669932008, 0.16437826562603972, + 0.20774555128376898, 0.24836180819292908, 0.284553927109529, + 0.32057078622262963, 0.36775889862127786, 0.4442834899150653, + 0.5720111471317472, 0.7729366099043595, 1.0649070217742553, + 1.454829145726095, 1.9403311179050808 + ], + "pressure:J30:branch55_seg0": [ + 9049.830482974878, 10411.671554877286, 11850.904609331865, + 13294.691475789385, 14671.544805109746, 15922.120729517317, + 17008.53743794058, 17920.88862586782, 18658.28704551437, + 19235.187368559837, 19677.44492386812, 19994.10505070533, + 20198.727735227392, 20295.51526802257, 20279.55289830088, + 20156.230051554154, 19923.18896529574, 19590.614777641786, + 19178.63395107665, 18701.337657146403, 18182.160326990703, + 17638.403059506727, 17080.65143320479, 16517.443152947948, + 15951.155601457538, 15384.379370981353, 14822.171028457393, + 14272.577080111922, 13746.716244707683, 13256.111652982008, + 12807.479873482038, 12398.57042352264, 12017.728333756211, + 11640.144694973935, 11235.22039099266, 10771.062088566909, + 10223.907079274966, 9579.611120948693, 8846.707592344697, + 8050.595540190553, 7228.376125149395, 6429.379675442519, + 5699.375250883965, 5075.270550013087, 4577.1492423273, 4215.663977252476, + 3978.3323177630414, 3847.0172770873423, 3802.529066266206, + 3820.1071784449146, 3887.549764473788, 3994.9770934049848, + 4135.94131396197, 4308.295459777432, 4503.613653464285, 4711.372164223348, + 4916.201005408176, 5099.488294386381, 5244.628390633361, 5341.17210287124, + 5384.926560422762, 5380.602396189228, 5342.599885344025, + 5283.832059628062, 5218.952099698631, 5157.703735496608, + 5101.557313031622, 5046.378155262473, 4984.214399677311, + 4906.762073220845, 4810.101066486054, 4695.2757613062195, + 4570.772755307124, 4448.907558898729, 4342.307658237985, 4260.67935146744, + 4208.052981837508, 4180.859677290993, 4170.246317929601, + 4166.326980509386, 4159.885756571327, 4147.828160930738, + 4133.740028988516, 4126.296174733112, 4136.556968632435, + 4172.793838427138, 4237.637718907892, 4326.070320309888, + 4425.058626497449, 4521.925062046783, 4607.503291221061, + 4683.981967420184, 4769.909558732794, 4900.28282048065, 5123.617799779641, + 5493.412197501482, 6051.836957089696, 6835.185865637224, + 7843.262008128316, 9049.830482974878 + ], + "flow:J30:branch104_seg0": [ + 0.9581720068720414, 1.2342734670845894, 1.5346879476031707, + 1.8441309829809254, 2.146391271134595, 2.427610742773391, + 2.6777943384482117, 2.8917800686841053, 3.0679714212940037, + 3.2088147080420972, 3.318027315969776, 3.3990061843749713, + 3.4550259821687055, 3.487196652536055, 3.495827925684058, + 3.4810190348590666, 3.4425758000659084, 3.382289753922413, + 3.3027056575863734, 3.2074533004440373, 3.1010824238476755, + 2.9873776391560427, 2.86954683333551, 2.74964618515324, + 2.6286778320895197, 2.5073238291493625, 2.386361916181258, + 2.2672041064623722, 2.1519552401338227, 2.0430448624780015, + 1.9423492745840842, 1.850430194057321, 1.765732140266566, + 1.6842436975929362, 1.6001609030061208, 1.5067408984194486, + 1.3979439503486004, 1.2697262448470028, 1.1218226765081456, + 0.9574377277178029, 0.7835229185759706, 0.6094442366792777, + 0.44515186395349543, 0.2995037145199846, 0.17890413552980905, + 0.08656089075463574, 0.021832912070586415, -0.01782204196181143, + -0.03690895813928765, -0.04007649174584235, -0.0309145438800797, + -0.01226695878389556, 0.014439905902063658, 0.04820537870247026, + 0.0877245483738769, 0.1311663825833856, 0.1755495554030025, + 0.2172424709699433, 0.2525389551867957, 0.2785048662350051, + 0.29348436135650424, 0.29778081442185134, 0.29330462383402534, + 0.2828546804655469, 0.269685055214627, 0.25620864306176966, + 0.24359702345824455, 0.23163568239186172, 0.21898535501572658, + 0.20391677522551924, 0.1851149699869123, 0.16228518911001255, + 0.1365443954975523, 0.11003705805212087, 0.08547777045815588, + 0.06528318599797645, 0.050893108659454706, 0.04227873681165923, + 0.03820223308029845, 0.036597877003107585, 0.035384533538397066, + 0.03334485185380742, 0.030508798313205073, 0.028194306718745676, + 0.028540824226627612, 0.03359797869138609, 0.04456752560275065, + 0.061068568494400725, 0.08120083873053409, 0.10227516146251275, + 0.12182417076762764, 0.13917873097239442, 0.15663522731136265, + 0.17996529064985456, 0.21822722160570482, 0.2821506561970109, + 0.3823229187556245, 0.5272220854730402, 0.7197336676797181, + 0.9581720068720414 + ], + "pressure:J30:branch104_seg0": [ + 9049.830482974878, 10411.671554877286, 11850.904609331865, + 13294.691475789385, 14671.544805109746, 15922.120729517317, + 17008.53743794058, 17920.88862586782, 18658.28704551437, + 19235.187368559837, 19677.44492386812, 19994.10505070533, + 20198.727735227392, 20295.51526802257, 20279.55289830088, + 20156.230051554154, 19923.18896529574, 19590.614777641786, + 19178.63395107665, 18701.337657146403, 18182.160326990703, + 17638.403059506727, 17080.65143320479, 16517.443152947948, + 15951.155601457538, 15384.379370981353, 14822.171028457393, + 14272.577080111922, 13746.716244707683, 13256.111652982008, + 12807.479873482038, 12398.57042352264, 12017.728333756211, + 11640.144694973935, 11235.22039099266, 10771.062088566909, + 10223.907079274966, 9579.611120948693, 8846.707592344697, + 8050.595540190553, 7228.376125149395, 6429.379675442519, + 5699.375250883965, 5075.270550013087, 4577.1492423273, 4215.663977252476, + 3978.3323177630414, 3847.0172770873423, 3802.529066266206, + 3820.1071784449146, 3887.549764473788, 3994.9770934049848, + 4135.94131396197, 4308.295459777432, 4503.613653464285, 4711.372164223348, + 4916.201005408176, 5099.488294386381, 5244.628390633361, 5341.17210287124, + 5384.926560422762, 5380.602396189228, 5342.599885344025, + 5283.832059628062, 5218.952099698631, 5157.703735496608, + 5101.557313031622, 5046.378155262473, 4984.214399677311, + 4906.762073220845, 4810.101066486054, 4695.2757613062195, + 4570.772755307124, 4448.907558898729, 4342.307658237985, 4260.67935146744, + 4208.052981837508, 4180.859677290993, 4170.246317929601, + 4166.326980509386, 4159.885756571327, 4147.828160930738, + 4133.740028988516, 4126.296174733112, 4136.556968632435, + 4172.793838427138, 4237.637718907892, 4326.070320309888, + 4425.058626497449, 4521.925062046783, 4607.503291221061, + 4683.981967420184, 4769.909558732794, 4900.28282048065, 5123.617799779641, + 5493.412197501482, 6051.836957089696, 6835.185865637224, + 7843.262008128316, 9049.830482974878 + ], + "flow:J30:branch141_seg0": [ + 0.8116852087623707, 1.045090757750018, 1.2988360060259891, + 1.5600125842087753, 1.814963623473102, 2.0520279928505727, + 2.262809939385063, 2.4429988300554775, 2.5912975461074086, + 2.709782748180888, 2.801612438597223, 2.869635786880517, + 2.9165928974848763, 2.9433994080646815, 2.9502866750398242, + 2.9373418141656322, 2.904400410919882, 2.8530032229276303, + 2.7853401598432956, 2.7044924424450763, 2.6143255029553023, + 2.5180408735400692, 2.4183344624354692, 2.31693088210666, + 2.2146620055499437, 2.112098399752924, 2.009903435283286, + 1.9092805354050515, 1.812018112525933, 1.720168648987011, + 1.635304059357349, 1.557863748183914, 1.4864944251286023, + 1.4177652840581296, 1.34674368522818, 1.267729119690654, + 1.1756495117227672, 1.0671394004477672, 0.9420520114493969, + 0.8031754251786403, 0.6564383799157963, 0.5097830028778906, + 0.3716035729120922, 0.2493301414638067, 0.14828287250764968, + 0.07110197417504945, 0.017163536103465906, -0.015733132953961858, + -0.03139867103478208, -0.03375883177763826, -0.02581340951282746, + -0.009929885937045439, 0.012701347466367491, 0.04125436074015431, + 0.07462541689726629, 0.11125626977569641, 0.14862295062251374, + 0.18365573008019073, 0.2132349426347247, 0.23490641644409124, + 0.24730533576282313, 0.25071786150031034, 0.2467858753163404, + 0.23788113428682375, 0.22674530874703713, 0.21539617402709774, + 0.20479422216005544, 0.1947317446988792, 0.18406232242984605, + 0.17132442625248936, 0.1554230817190815, 0.1361294009055467, + 0.11441038535533568, 0.09209248352604969, 0.07146718115569908, + 0.05456017122695373, 0.042562588139808094, 0.03542388727065555, + 0.03207477414431232, 0.030766764567424422, 0.02975049373752367, + 0.028017983640572796, 0.025620210063484226, 0.023690005344652505, + 0.0240409820643323, 0.02839444855063249, 0.03774118443696065, + 0.05173248778432991, 0.06873959408746451, 0.08648719817501095, + 0.10290946052819752, 0.11748129416816411, 0.1321956864334589, + 0.15197819017475953, 0.18451464550805655, 0.23887357745221985, + 0.3239448079494873, 0.44684788871090203, 0.6099362962603944, + 0.8116852087623707 + ], + "pressure:J30:branch141_seg0": [ + 9049.830482974878, 10411.671554877286, 11850.904609331865, + 13294.691475789385, 14671.544805109746, 15922.120729517317, + 17008.53743794058, 17920.88862586782, 18658.28704551437, + 19235.187368559837, 19677.44492386812, 19994.10505070533, + 20198.727735227392, 20295.51526802257, 20279.55289830088, + 20156.230051554154, 19923.18896529574, 19590.614777641786, + 19178.63395107665, 18701.337657146403, 18182.160326990703, + 17638.403059506727, 17080.65143320479, 16517.443152947948, + 15951.155601457538, 15384.379370981353, 14822.171028457393, + 14272.577080111922, 13746.716244707683, 13256.111652982008, + 12807.479873482038, 12398.57042352264, 12017.728333756211, + 11640.144694973935, 11235.22039099266, 10771.062088566909, + 10223.907079274966, 9579.611120948693, 8846.707592344697, + 8050.595540190553, 7228.376125149395, 6429.379675442519, + 5699.375250883965, 5075.270550013087, 4577.1492423273, 4215.663977252476, + 3978.3323177630414, 3847.0172770873423, 3802.529066266206, + 3820.1071784449146, 3887.549764473788, 3994.9770934049848, + 4135.94131396197, 4308.295459777432, 4503.613653464285, 4711.372164223348, + 4916.201005408176, 5099.488294386381, 5244.628390633361, 5341.17210287124, + 5384.926560422762, 5380.602396189228, 5342.599885344025, + 5283.832059628062, 5218.952099698631, 5157.703735496608, + 5101.557313031622, 5046.378155262473, 4984.214399677311, + 4906.762073220845, 4810.101066486054, 4695.2757613062195, + 4570.772755307124, 4448.907558898729, 4342.307658237985, 4260.67935146744, + 4208.052981837508, 4180.859677290993, 4170.246317929601, + 4166.326980509386, 4159.885756571327, 4147.828160930738, + 4133.740028988516, 4126.296174733112, 4136.556968632435, + 4172.793838427138, 4237.637718907892, 4326.070320309888, + 4425.058626497449, 4521.925062046783, 4607.503291221061, + 4683.981967420184, 4769.909558732794, 4900.28282048065, 5123.617799779641, + 5493.412197501482, 6051.836957089696, 6835.185865637224, + 7843.262008128316, 9049.830482974878 + ], + "flow:branch55_seg0:J31": [ + 1.9380460231776224, 2.5028630170513484, 3.120689421749719, + 3.760485601998193, 4.388692350432481, 4.976149381285427, + 5.501389529979628, 5.952804236059151, 6.326049668532338, + 6.6256658194146345, 6.858924994766549, 7.032821018164398, + 7.1543132576364155, 7.2258847264505475, 7.248415496664571, + 7.222137428143493, 7.146634410739841, 7.025403708821482, + 6.8634892640886935, 6.668317819569466, 6.449251363547472, + 6.214220291066312, 5.970072509127961, 5.721280395790451, 5.47010705326058, + 5.218054301389972, 4.966705057926343, 4.7188898332454965, + 4.478858640074865, 4.251613486549374, 4.041116009833189, + 3.8488066237074405, 3.6718133916628215, 3.5022290005683954, + 3.3283635086816403, 3.1363942500077844, 2.91366958457029, + 2.6514533910779217, 2.3486047343327607, 2.0110777416715733, + 1.6526820242472928, 1.2924045736741527, 0.9506834396429691, + 0.6460227868786313, 0.3921413413678544, 0.19612084770439986, + 0.057259379204645106, -0.029243941493515398, -0.07250236454032369, + -0.08203573362551987, -0.06540131014686153, -0.02870005054919783, + 0.024991820362604233, 0.093472907052267, 0.17407879990030126, + 0.26318253753634413, 0.35476554164261886, 0.4414450009586377, + 0.5155694322224409, 0.5709466211334558, 0.6038731664652599, + 0.6146857682592527, 0.6070323664859242, 0.5865146360560793, + 0.5598240191429977, 0.5320633512151568, 0.5058730013372778, + 0.4810610427902107, 0.45504899597338433, 0.42433348997237624, + 0.38611616926791276, 0.3396209803076574, 0.28691969334570516, + 0.23224651473409108, 0.18112931315705022, 0.1386160250497583, + 0.10785399507706947, 0.08901335614745845, 0.0797863762319332, + 0.07601828570437405, 0.0734067245894631, 0.06930311635022736, + 0.06354717309376384, 0.058640018188900196, 0.05886845796687613, + 0.06847344797761001, 0.09010938924816776, 0.12323899453351415, + 0.1642009482664759, 0.20758388850696188, 0.248222590040096, + 0.2844190387436766, 0.3203925833277959, 0.36746325013330644, + 0.443778986245933, 0.5711933074455592, 0.7717599673876846, + 1.0633359531851545, 1.4528374206533856, 1.9380460231776224 + ], + "pressure:branch55_seg0:J31": [ + 8683.765781958948, 9989.061707490819, 11388.85611784329, + 12812.751539650022, 14188.279831822894, 15453.892915900678, + 16567.712967582345, 17513.463941999424, 18285.535223608986, + 18896.93969662284, 19369.379991778707, 19714.14434817275, + 19945.933601120876, 20069.38114408128, 20082.398627286188, + 19988.593597894367, 19785.965499330803, 19483.383389846218, + 19097.310180811848, 18642.526761827994, 18141.26769400812, + 17610.878744928494, 17063.845445267736, 16509.323256861215, + 15950.79588869931, 15391.133549606726, 14834.66496707864, + 14288.608518140029, 13763.259553522885, 13269.962980606486, + 12816.243342211974, 12402.35862395016, 12019.060539274375, + 11644.796053798469, 11251.257107941181, 10807.237292541427, + 10287.278960060201, 9674.83711251845, 8973.624438777188, + 8203.544888600356, 7398.475120499803, 6604.504741760302, + 5866.803637375481, 5223.983380757832, 4700.51764309492, 4309.218945095517, + 4042.4867059401245, 3885.590724189318, 3818.9669554731436, + 3819.5232402237775, 3873.185265669033, 3968.459483415413, + 4098.934402731707, 4261.1978921487735, 4447.952944481207, + 4649.979705848077, 4852.816539698165, 5038.927387976844, + 5191.633506360622, 5299.181614065469, 5355.48164566708, 5363.502953619135, + 5334.981966580412, 5282.332702401485, 5220.288817926562, + 5159.286381093044, 5102.665846368015, 5047.961488327419, + 4988.2451518391845, 4915.461984683229, 4824.691883018533, + 4715.755365496591, 4595.364065174133, 4474.485211474245, + 4365.530178403213, 4278.826160869977, 4219.708008389152, + 4186.301387627476, 4171.521470295414, 4165.762198718994, + 4159.682263720246, 4148.998327114088, 4135.5424475654545, + 4126.566322744214, 4132.410480493955, 4161.784176656208, + 4218.795280890469, 4300.154757104026, 4394.951258357284, + 4490.962958127787, 4578.001794127999, 4655.570919705779, + 4738.0272152623875, 4855.8081941793525, 5053.47068643296, + 5382.057080798546, 5886.53506853049, 6604.328056149463, 7542.185409866366, + 8683.765781958948 + ], + "flow:J31:branch56_seg0": [ + 0.8422575356816145, 1.085933338251874, 1.351520315053113, + 1.6256805540549981, 1.8940258759287285, 2.1441880148805135, + 2.3671897437609766, 2.558366069850907, 2.7160123669616905, + 2.842264745740924, 2.940365676140197, 3.013226764198366, + 3.063833312214007, 3.093152995034852, 3.1014775230541605, + 3.08894283068052, 3.0553356007990637, 3.0022469027740843, + 2.9319199024920923, 2.847547660944341, 2.7532045175568323, + 2.6522451841951717, 2.547549032554673, 2.44098285463656, + 2.3334527464583297, 2.2255853446035037, 2.1180684987280265, + 2.01214579225192, 1.9096719673348677, 1.8128044382936095, + 1.7232020993680317, 1.6414014821507352, 1.566065814294721, + 1.4936680602314252, 1.4191149015062081, 1.3364490519484387, + 1.2403084049942041, 1.127058006272582, 0.9964265808605368, + 0.8511641189597032, 0.6973549890480446, 0.5432698130757386, + 0.39767010954377296, 0.2684024785823181, 0.1611880403135169, + 0.07890196243685123, 0.02101307653740212, -0.01463324210328268, + -0.03201103890816122, -0.03523200354837286, -0.027445801309889026, + -0.011225839405612139, 0.012177067659109515, 0.0418601743206845, + 0.0766472318341592, 0.11496381339064199, 0.15417875681474894, + 0.19109270129591246, 0.22243400035764882, 0.2456047223850313, + 0.25908801141860516, 0.26312647926025023, 0.25938697329256816, + 0.25029477137116757, 0.23873403560580736, 0.22684874959286877, + 0.21569135730853387, 0.20510676747770268, 0.1939349941976067, + 0.1806575304565052, 0.16410458098799066, 0.1439984378225697, + 0.12130468951578356, 0.0978888880135904, 0.07614042360086995, + 0.0582006385914938, 0.045362855558690775, 0.03761619046162464, + 0.03390842952579308, 0.03242655203031461, 0.03132566410834317, + 0.029524396326468198, 0.027024847111028132, 0.024963864048986407, + 0.02521723602444762, 0.029589276264387693, 0.03916634204485785, + 0.0536367150695496, 0.07134341807285406, 0.08994042282960663, + 0.1072366356673062, 0.12260588332666432, 0.13801965734459232, + 0.1585102447452027, 0.19201532501844307, 0.24797258516633064, + 0.33578032967988386, 0.4629880834823521, 0.6322147116652019, + 0.8422575356816145 + ], + "pressure:J31:branch56_seg0": [ + 8683.765781958948, 9989.061707490819, 11388.85611784329, + 12812.751539650022, 14188.279831822894, 15453.892915900678, + 16567.712967582345, 17513.463941999424, 18285.535223608986, + 18896.93969662284, 19369.379991778707, 19714.14434817275, + 19945.933601120876, 20069.38114408128, 20082.398627286188, + 19988.593597894367, 19785.965499330803, 19483.383389846218, + 19097.310180811848, 18642.526761827994, 18141.26769400812, + 17610.878744928494, 17063.845445267736, 16509.323256861215, + 15950.79588869931, 15391.133549606726, 14834.66496707864, + 14288.608518140029, 13763.259553522885, 13269.962980606486, + 12816.243342211974, 12402.35862395016, 12019.060539274375, + 11644.796053798469, 11251.257107941181, 10807.237292541427, + 10287.278960060201, 9674.83711251845, 8973.624438777188, + 8203.544888600356, 7398.475120499803, 6604.504741760302, + 5866.803637375481, 5223.983380757832, 4700.51764309492, 4309.218945095517, + 4042.4867059401245, 3885.590724189318, 3818.9669554731436, + 3819.5232402237775, 3873.185265669033, 3968.459483415413, + 4098.934402731707, 4261.1978921487735, 4447.952944481207, + 4649.979705848077, 4852.816539698165, 5038.927387976844, + 5191.633506360622, 5299.181614065469, 5355.48164566708, 5363.502953619135, + 5334.981966580412, 5282.332702401485, 5220.288817926562, + 5159.286381093044, 5102.665846368015, 5047.961488327419, + 4988.2451518391845, 4915.461984683229, 4824.691883018533, + 4715.755365496591, 4595.364065174133, 4474.485211474245, + 4365.530178403213, 4278.826160869977, 4219.708008389152, + 4186.301387627476, 4171.521470295414, 4165.762198718994, + 4159.682263720246, 4148.998327114088, 4135.5424475654545, + 4126.566322744214, 4132.410480493955, 4161.784176656208, + 4218.795280890469, 4300.154757104026, 4394.951258357284, + 4490.962958127787, 4578.001794127999, 4655.570919705779, + 4738.0272152623875, 4855.8081941793525, 5053.47068643296, + 5382.057080798546, 5886.53506853049, 6604.328056149463, 7542.185409866366, + 8683.765781958948 + ], + "flow:J31:branch84_seg0": [ + 1.0957884874960078, 1.416929678799475, 1.7691691066966062, + 2.1348050479431953, 2.494666474503753, 2.831961366404913, + 3.134199786218653, 3.3944381662082432, 3.6100373015706477, + 3.7834010736737103, 3.9185593186263517, 4.019594253966032, + 4.090479945422408, 4.132731731415696, 4.146937973610411, + 4.133194597462973, 4.091298809940777, 4.023156806047397, + 3.9315693615966003, 3.820770158625124, 3.696046845990641, + 3.561975106871139, 3.422523476573288, 3.2802975411538915, + 3.1366543068022494, 2.992468956786468, 2.8486365591983156, + 2.7067440409935783, 2.5691866727399963, 2.438809048255765, + 2.3179139104651574, 2.207405141556705, 2.1057475773681, 2.00856094033697, + 1.9092486071754327, 1.7999451980593453, 1.6733611795760857, + 1.5243953848053389, 1.3521781534722237, 1.1599136227118696, + 0.9553270351992481, 0.749134760598414, 0.5530133300991961, + 0.3776203082963132, 0.23095330105433756, 0.11721888526754864, + 0.036246302667243005, -0.014610699390232722, -0.040491325632162484, + -0.046803730077147, -0.0379555088369725, -0.017474211143585695, + 0.012814752703494713, 0.05161273273158253, 0.0974315680661421, + 0.1482187241457021, 0.20058678482786993, 0.2503522996627252, + 0.29313543186479196, 0.3253418987484246, 0.3447851550466548, + 0.35155928899900263, 0.3476453931933559, 0.3362198646849118, + 0.32108998353719037, 0.3052146016222881, 0.29018164402874397, + 0.27595427531250805, 0.2611140017757776, 0.24367595951587107, + 0.222011588279922, 0.19562254248508767, 0.16561500382992156, + 0.13435762672050067, 0.10498888955618024, 0.08041538645826453, + 0.062491139518378695, 0.05139716568583379, 0.04587794670614012, + 0.043591733674059434, 0.042081060481119946, 0.039778720023759165, + 0.03652232598273572, 0.0336761541399138, 0.03365122194242851, + 0.03888417171322231, 0.05094304720330989, 0.06960227946396458, + 0.09285753019362185, 0.11764346567735524, 0.14098595437278982, + 0.1618131554170123, 0.18237292598320354, 0.2089530053881037, + 0.2517636612274897, 0.32322072227922843, 0.4359796377078007, + 0.6003478697028026, 0.8206227089881833, 1.0957884874960078 + ], + "pressure:J31:branch84_seg0": [ + 8683.765781958948, 9989.061707490819, 11388.85611784329, + 12812.751539650022, 14188.279831822894, 15453.892915900678, + 16567.712967582345, 17513.463941999424, 18285.535223608986, + 18896.93969662284, 19369.379991778707, 19714.14434817275, + 19945.933601120876, 20069.38114408128, 20082.398627286188, + 19988.593597894367, 19785.965499330803, 19483.383389846218, + 19097.310180811848, 18642.526761827994, 18141.26769400812, + 17610.878744928494, 17063.845445267736, 16509.323256861215, + 15950.79588869931, 15391.133549606726, 14834.66496707864, + 14288.608518140029, 13763.259553522885, 13269.962980606486, + 12816.243342211974, 12402.35862395016, 12019.060539274375, + 11644.796053798469, 11251.257107941181, 10807.237292541427, + 10287.278960060201, 9674.83711251845, 8973.624438777188, + 8203.544888600356, 7398.475120499803, 6604.504741760302, + 5866.803637375481, 5223.983380757832, 4700.51764309492, 4309.218945095517, + 4042.4867059401245, 3885.590724189318, 3818.9669554731436, + 3819.5232402237775, 3873.185265669033, 3968.459483415413, + 4098.934402731707, 4261.1978921487735, 4447.952944481207, + 4649.979705848077, 4852.816539698165, 5038.927387976844, + 5191.633506360622, 5299.181614065469, 5355.48164566708, 5363.502953619135, + 5334.981966580412, 5282.332702401485, 5220.288817926562, + 5159.286381093044, 5102.665846368015, 5047.961488327419, + 4988.2451518391845, 4915.461984683229, 4824.691883018533, + 4715.755365496591, 4595.364065174133, 4474.485211474245, + 4365.530178403213, 4278.826160869977, 4219.708008389152, + 4186.301387627476, 4171.521470295414, 4165.762198718994, + 4159.682263720246, 4148.998327114088, 4135.5424475654545, + 4126.566322744214, 4132.410480493955, 4161.784176656208, + 4218.795280890469, 4300.154757104026, 4394.951258357284, + 4490.962958127787, 4578.001794127999, 4655.570919705779, + 4738.0272152623875, 4855.8081941793525, 5053.47068643296, + 5382.057080798546, 5886.53506853049, 6604.328056149463, 7542.185409866366, + 8683.765781958948 + ], + "flow:branch57_seg0:J32": [ + 4.017055611361484, 5.16931153013678, 6.422776333605764, 7.71423066583436, + 8.976959719035454, 10.153636848031688, 11.202679990174838, + 12.102343035431044, 12.845803357398145, 13.442156286326163, + 13.906525005595487, 14.252347348806067, 14.492628100129338, + 14.632047367088102, 14.671642371358082, 14.612192707193753, + 14.453121736397053, 14.202004654376166, 13.869946597432616, + 13.472012612097881, 13.02715073538389, 12.55116941218187, + 12.057320630826435, 11.55422017226369, 11.046175649686894, + 10.536210229382784, 10.027837535078936, 9.527154212403078, + 9.04304487033316, 8.585595181566362, 8.162507517936747, 7.775818547370696, + 7.418857954949699, 7.074786094646157, 6.71942837330445, 6.324888315351444, + 5.866420499902154, 5.327541938338455, 4.707438318966523, + 4.019836470273771, 3.2935458993295255, 2.567368686710683, + 1.8823754244029802, 1.274997797066671, 0.7712644873826793, + 0.3845140378554444, 0.11200374200165478, -0.0567608360923747, + -0.14000062522707007, -0.1567341048868325, -0.12157115781290016, + -0.04605267196840784, 0.06372541332609727, 0.2035003963353627, + 0.3676111504446108, 0.5481234249320164, 0.7325432303735177, + 0.9057054829141526, 1.0522800634373985, 1.1602044812882748, + 1.222816620771485, 1.241342615518816, 1.2237880118173288, + 1.181608713709341, 1.1280505302401376, 1.0729431190070309, + 1.0209671333074668, 0.971147604790511, 0.9180008036358217, + 0.8545200290321695, 0.7755134093706784, 0.6799475373023925, + 0.572594820378079, 0.46239184372835995, 0.36048117802900187, + 0.2766950506488103, 0.21681896191076044, 0.1806308299776393, + 0.1629278846998535, 0.155291984077586, 0.14929238121239485, + 0.14009282657457545, 0.12799410652224022, 0.1185210075077006, + 0.12045271753778267, 0.14210547036445387, 0.1881795344182041, + 0.25695359871991796, 0.340431747510253, 0.42758675027345033, + 0.5084948584394041, 0.5807854367421617, 0.6544085674675116, + 0.7536136089269475, 0.916129303306952, 1.1864567967982664, + 1.6079299665018787, 2.2156227379601003, 3.0211865741326527, + 4.017055611361484 + ], + "pressure:branch57_seg0:J32": [ + 9516.889026001594, 10948.99922679007, 12436.039362556621, + 13902.246008477316, 15277.699456955906, 16506.190641836973, + 17555.14444661834, 18422.670622597343, 19114.559638319937, + 19646.361501291056, 20049.347949260777, 20329.71573229333, + 20499.254231304833, 20561.75851864769, 20508.621135480575, + 20347.425903096777, 20075.57267859319, 19705.028014895764, + 19260.311206810133, 18754.834274979243, 18213.52148400574, + 17653.447388585028, 17082.816410134543, 16509.276382952674, + 15933.804589666915, 15358.679137340694, 14789.901399731478, + 14236.594148860719, 13710.943466362498, 13224.613991926495, + 12783.277479165165, 12381.342403318688, 12004.067089371412, + 11622.466065690249, 11203.083935652005, 10713.23373313357, + 10131.437773828493, 9446.860119880293, 8674.18185309281, + 7845.902839283529, 7003.249104915832, 6199.518112560244, + 5481.161275476954, 4882.641732298945, 4418.455490161339, + 4096.309623956053, 3897.2580692865245, 3799.115804249003, + 3783.0089530657783, 3822.29042508989, 3907.214596487205, 4029.96692954466, + 4184.099072068803, 4369.103676899093, 4575.0509929087875, + 4789.6832724760125, 4996.536992766376, 5175.63249050563, + 5310.556861692589, 5392.519463902864, 5419.979319639275, 5399.76831267265, + 5349.6664927200145, 5283.268788437943, 5215.018215211959, + 5153.675979047343, 5098.2981432224215, 5042.591696474172, + 4977.306746459705, 4893.883558516147, 4789.711292052589, + 4667.457299637997, 4537.928958470704, 4415.120522307035, + 4311.890434263901, 4237.094391225166, 4193.016836329752, + 4173.8927656890455, 4168.587811128206, 4166.938772317975, + 4159.926582567121, 4146.058195520923, 4131.188023794109, + 4125.818775839427, 4141.870770624944, 4187.02977149892, 4261.902085359177, + 4359.268734714563, 4463.411332446867, 4561.078428039301, 4644.51857653946, + 4719.456041968934, 4809.898970037884, 4956.6567403375375, + 5213.338537243121, 5636.271958371944, 6264.049241683461, + 7131.4037058074555, 8228.516073479968, 9516.889026001594 + ], + "flow:J32:branch58_seg0": [ + 1.3883918290270552, 1.7801463819120371, 2.201813790922085, + 2.6316021347693384, 3.047012485899345, 3.4294280819152148, + 3.7660445163485763, 4.0510594419558075, 4.283426333830537, + 4.467418161735722, 4.608799794823118, 4.712185056886572, + 4.781948358808258, 4.8192375227854285, 4.824064846557057, + 4.796562071593419, 4.736388923182973, 4.646401891070563, + 4.5305551917277205, 4.39406402998638, 4.2434899814122895, + 4.0839886806183285, 3.9197565474224647, 3.753362163452447, + 3.5858903947728815, 3.418148059509884, 3.251239874124628, + 3.0872663262440856, 2.929319082682028, 2.78084022215636, + 2.6442911627250383, 2.5200428609076257, 2.4053768321405533, + 2.2940567888044527, 2.177514438069752, 2.046168951252285, + 1.8918751989454619, 1.7095989186433522, 1.5000022846839813, + 1.2686364813379185, 1.0260986612580785, 0.7860768110388126, + 0.5625301139141102, 0.367381901321648, 0.2086659527290685, + 0.08997484286491547, 0.009282913885266348, -0.03766379519475649, + -0.057501020210436, -0.056836417934691505, -0.04034437158826716, + -0.011644074010911868, 0.027584970364177522, 0.0761916125344744, + 0.13231734980496043, 0.19326313976663528, 0.25466973752058253, + 0.3113223602264821, 0.3580863370085315, 0.39112670365563745, + 0.40854827376080166, 0.41126461554508076, 0.40243055439576314, + 0.3861733929734505, 0.3670849775490779, 0.3483235494550119, + 0.33114316382562775, 0.314845130110893, 0.2972613389579502, + 0.2758699312370641, 0.24896765020010658, 0.21641003928412306, + 0.18012763711110047, 0.1433968317247971, 0.11011476221168333, + 0.08354535957064939, 0.06541060039925256, 0.05527358392175652, + 0.05104162412222197, 0.04965087149034297, 0.04820373717661944, + 0.04523545653258874, 0.04114420688587818, 0.0381104792887139, + 0.03932287410872929, 0.04760681818088793, 0.06437746986794686, + 0.08870298178354794, 0.11751119746967235, 0.14686215613945167, + 0.17341948097582705, 0.19673641894478344, 0.22080494235450762, + 0.25456523395116215, 0.31143741755796706, 0.40677343135158367, + 0.555017870876591, 0.7674233015626507, 1.046527323656569, + 1.3883918290270552 + ], + "pressure:J32:branch58_seg0": [ + 9516.889026001594, 10948.99922679007, 12436.039362556621, + 13902.246008477316, 15277.699456955906, 16506.190641836973, + 17555.14444661834, 18422.670622597343, 19114.559638319937, + 19646.361501291056, 20049.347949260777, 20329.71573229333, + 20499.254231304833, 20561.75851864769, 20508.621135480575, + 20347.425903096777, 20075.57267859319, 19705.028014895764, + 19260.311206810133, 18754.834274979243, 18213.52148400574, + 17653.447388585028, 17082.816410134543, 16509.276382952674, + 15933.804589666915, 15358.679137340694, 14789.901399731478, + 14236.594148860719, 13710.943466362498, 13224.613991926495, + 12783.277479165165, 12381.342403318688, 12004.067089371412, + 11622.466065690249, 11203.083935652005, 10713.23373313357, + 10131.437773828493, 9446.860119880293, 8674.18185309281, + 7845.902839283529, 7003.249104915832, 6199.518112560244, + 5481.161275476954, 4882.641732298945, 4418.455490161339, + 4096.309623956053, 3897.2580692865245, 3799.115804249003, + 3783.0089530657783, 3822.29042508989, 3907.214596487205, 4029.96692954466, + 4184.099072068803, 4369.103676899093, 4575.0509929087875, + 4789.6832724760125, 4996.536992766376, 5175.63249050563, + 5310.556861692589, 5392.519463902864, 5419.979319639275, 5399.76831267265, + 5349.6664927200145, 5283.268788437943, 5215.018215211959, + 5153.675979047343, 5098.2981432224215, 5042.591696474172, + 4977.306746459705, 4893.883558516147, 4789.711292052589, + 4667.457299637997, 4537.928958470704, 4415.120522307035, + 4311.890434263901, 4237.094391225166, 4193.016836329752, + 4173.8927656890455, 4168.587811128206, 4166.938772317975, + 4159.926582567121, 4146.058195520923, 4131.188023794109, + 4125.818775839427, 4141.870770624944, 4187.02977149892, 4261.902085359177, + 4359.268734714563, 4463.411332446867, 4561.078428039301, 4644.51857653946, + 4719.456041968934, 4809.898970037884, 4956.6567403375375, + 5213.338537243121, 5636.271958371944, 6264.049241683461, + 7131.4037058074555, 8228.516073479968, 9516.889026001594 + ], + "flow:J32:branch61_seg0": [ + 1.4511715828943228, 1.8828891762273725, 2.362504533171866, + 2.8668897342972266, 3.3704814637648974, 3.849763653053833, + 4.286168805168831, 4.6681062692632285, 4.990177803773391, + 5.253455326710209, 5.462295329784255, 5.621754212811948, + 5.736941103710777, 5.810547258538488, 5.8437533811539835, + 5.837075963666315, 5.79054661298769, 5.706363238609374, 5.588257746364127, + 5.441670786560805, 5.273459827645203, 5.0900702089498076, + 4.897155040263631, 4.6987486623928, 4.497271044972555, 4.2942988013474, + 4.0912994024565075, 3.89045732816075, 3.6949295108750473, + 3.508487133454525, 3.334389587421232, 3.1741652450927176, + 3.0263357101451667, 2.885725107331439, 2.7440128446857472, + 2.5909077455187206, 2.416461785043805, 2.2131562770133457, + 1.9786020268634799, 1.7159470296400225, 1.434278568581828, + 1.147117925255194, 0.8699541572677253, 0.6175495627264748, + 0.40152795116146006, 0.22896083283387758, 0.10123808984450604, + 0.01582901283204017, -0.03317408962523736, -0.052704200132594047, + -0.048930063249249915, -0.02687433662044492, 0.010325666911131648, + 0.060461626258752586, 0.1213124798279271, 0.18996729163381984, + 0.26200050361447336, 0.3318610129243715, 0.3936002753671052, + 0.4420944643886743, 0.47396824267207904, 0.4886189221098191, + 0.48809522499721614, 0.47621883462846026, 0.45782155072512903, + 0.43703969462740505, 0.41639763604556107, 0.39634432190985774, + 0.3754676979213833, 0.3514033026694096, 0.32201847239613574, + 0.2864332276875259, 0.2457377010495468, 0.20277120419225664, + 0.16150359407724516, 0.125839737059561, 0.098526634637458, + 0.08029335699161678, 0.06989725449620415, 0.06458770490978366, + 0.06122547593928071, 0.05755368431012182, 0.053010020094237026, + 0.04899900940745385, 0.04839944028811726, 0.05437240000669467, + 0.06915031128894521, 0.09286350662109367, 0.12329870108374644, + 0.1567036275303414, 0.18920572070275335, 0.21904605427012064, + 0.2485446605830226, 0.285237379020349, 0.3419624058695626, + 0.4349889247557406, 0.5813006983221917, 0.7955763784723148, + 1.0854894418704737, 1.4511715828943228 + ], + "pressure:J32:branch61_seg0": [ + 9516.889026001594, 10948.99922679007, 12436.039362556621, + 13902.246008477316, 15277.699456955906, 16506.190641836973, + 17555.14444661834, 18422.670622597343, 19114.559638319937, + 19646.361501291056, 20049.347949260777, 20329.71573229333, + 20499.254231304833, 20561.75851864769, 20508.621135480575, + 20347.425903096777, 20075.57267859319, 19705.028014895764, + 19260.311206810133, 18754.834274979243, 18213.52148400574, + 17653.447388585028, 17082.816410134543, 16509.276382952674, + 15933.804589666915, 15358.679137340694, 14789.901399731478, + 14236.594148860719, 13710.943466362498, 13224.613991926495, + 12783.277479165165, 12381.342403318688, 12004.067089371412, + 11622.466065690249, 11203.083935652005, 10713.23373313357, + 10131.437773828493, 9446.860119880293, 8674.18185309281, + 7845.902839283529, 7003.249104915832, 6199.518112560244, + 5481.161275476954, 4882.641732298945, 4418.455490161339, + 4096.309623956053, 3897.2580692865245, 3799.115804249003, + 3783.0089530657783, 3822.29042508989, 3907.214596487205, 4029.96692954466, + 4184.099072068803, 4369.103676899093, 4575.0509929087875, + 4789.6832724760125, 4996.536992766376, 5175.63249050563, + 5310.556861692589, 5392.519463902864, 5419.979319639275, 5399.76831267265, + 5349.6664927200145, 5283.268788437943, 5215.018215211959, + 5153.675979047343, 5098.2981432224215, 5042.591696474172, + 4977.306746459705, 4893.883558516147, 4789.711292052589, + 4667.457299637997, 4537.928958470704, 4415.120522307035, + 4311.890434263901, 4237.094391225166, 4193.016836329752, + 4173.8927656890455, 4168.587811128206, 4166.938772317975, + 4159.926582567121, 4146.058195520923, 4131.188023794109, + 4125.818775839427, 4141.870770624944, 4187.02977149892, 4261.902085359177, + 4359.268734714563, 4463.411332446867, 4561.078428039301, 4644.51857653946, + 4719.456041968934, 4809.898970037884, 4956.6567403375375, + 5213.338537243121, 5636.271958371944, 6264.049241683461, + 7131.4037058074555, 8228.516073479968, 9516.889026001594 + ], + "flow:J32:branch137_seg0": [ + 1.177492199440106, 1.5062759719973708, 1.8584580095118113, + 2.215738796767797, 2.5594657693712115, 2.874445113062641, + 3.150466668657426, 3.383177324212009, 3.5721992197942174, + 3.7212827978802316, 3.835429880988111, 3.918408079107546, + 3.973738637610303, 4.002262585764188, 4.003824143647042, + 3.978554671934019, 3.926186200226389, 3.8492395246962285, + 3.7511336593407685, 3.6362777955506957, 3.510200926326396, + 3.377110522613735, 3.240409043140336, 3.1021093464184415, + 2.9630142099414547, 2.8237633685254986, 2.685298258497804, + 2.549430557998244, 2.4187962767760864, 2.2962678259554763, + 2.1838267677904795, 2.0816104413703522, 1.9871454126639791, + 1.8950041985102644, 1.797901090548951, 1.6878116185804368, + 1.5580835159128872, 1.4047867426817562, 1.2288340074190613, + 1.03525295929583, 0.8331686694896187, 0.6341739504166772, + 0.4498911532211448, 0.29006633301854867, 0.1610705834921507, + 0.0655783621566513, 0.0014827382718823937, -0.03492605372965839, + -0.04932551539139671, -0.04719348681954692, -0.032296722975383094, + -0.0075342613370510654, 0.02581477605078809, 0.06684715754213576, + 0.11398132081172319, 0.16489299353156125, 0.2158729892384618, + 0.2625221097632991, 0.3005934510617615, 0.32698331324396285, + 0.3403001043386043, 0.3414590778639161, 0.3332622324243495, + 0.31921648610743014, 0.30314400196593094, 0.2875798749246138, + 0.2734263334362779, 0.2599581527697603, 0.24527176675648812, + 0.22724679512569565, 0.20452728677443607, 0.1771042703307437, + 0.14672948221743165, 0.11622380781130612, 0.08886282174007344, + 0.0673099540185999, 0.05288172687404985, 0.04506388906426604, + 0.04198900608142734, 0.04105340767745938, 0.03986316809649467, + 0.03730368573186488, 0.03383987954212503, 0.031411518811532826, + 0.032730403140936115, 0.040126252176871255, 0.05465175326131204, + 0.0753871103152764, 0.09962184895683429, 0.1240209666036573, + 0.14586965676082392, 0.16500296352725766, 0.1850589645299815, + 0.21381099595543654, 0.2627294798794221, 0.34469444069094235, + 0.4716113973030959, 0.6526230579251348, 0.8891698086056096, + 1.177492199440106 + ], + "pressure:J32:branch137_seg0": [ + 9516.889026001594, 10948.99922679007, 12436.039362556621, + 13902.246008477316, 15277.699456955906, 16506.190641836973, + 17555.14444661834, 18422.670622597343, 19114.559638319937, + 19646.361501291056, 20049.347949260777, 20329.71573229333, + 20499.254231304833, 20561.75851864769, 20508.621135480575, + 20347.425903096777, 20075.57267859319, 19705.028014895764, + 19260.311206810133, 18754.834274979243, 18213.52148400574, + 17653.447388585028, 17082.816410134543, 16509.276382952674, + 15933.804589666915, 15358.679137340694, 14789.901399731478, + 14236.594148860719, 13710.943466362498, 13224.613991926495, + 12783.277479165165, 12381.342403318688, 12004.067089371412, + 11622.466065690249, 11203.083935652005, 10713.23373313357, + 10131.437773828493, 9446.860119880293, 8674.18185309281, + 7845.902839283529, 7003.249104915832, 6199.518112560244, + 5481.161275476954, 4882.641732298945, 4418.455490161339, + 4096.309623956053, 3897.2580692865245, 3799.115804249003, + 3783.0089530657783, 3822.29042508989, 3907.214596487205, 4029.96692954466, + 4184.099072068803, 4369.103676899093, 4575.0509929087875, + 4789.6832724760125, 4996.536992766376, 5175.63249050563, + 5310.556861692589, 5392.519463902864, 5419.979319639275, 5399.76831267265, + 5349.6664927200145, 5283.268788437943, 5215.018215211959, + 5153.675979047343, 5098.2981432224215, 5042.591696474172, + 4977.306746459705, 4893.883558516147, 4789.711292052589, + 4667.457299637997, 4537.928958470704, 4415.120522307035, + 4311.890434263901, 4237.094391225166, 4193.016836329752, + 4173.8927656890455, 4168.587811128206, 4166.938772317975, + 4159.926582567121, 4146.058195520923, 4131.188023794109, + 4125.818775839427, 4141.870770624944, 4187.02977149892, 4261.902085359177, + 4359.268734714563, 4463.411332446867, 4561.078428039301, 4644.51857653946, + 4719.456041968934, 4809.898970037884, 4956.6567403375375, + 5213.338537243121, 5636.271958371944, 6264.049241683461, + 7131.4037058074555, 8228.516073479968, 9516.889026001594 + ], + "flow:branch58_seg0:J33": [ + 1.3842033518835852, 1.7756848016814184, 2.197253026578389, + 2.627254970697556, 3.0430563320079167, 3.425964765285464, + 3.7631217771012473, 4.048756945639179, 4.281570433218125, + 4.46600480997008, 4.607789255267851, 4.711482521667613, 4.781605165168542, + 4.819215973605165, 4.824377528870835, 4.797224821664768, + 4.7373518256133265, 4.647651242253435, 4.532011835270324, + 4.395651610710209, 4.245174906366089, 4.0857122306857585, + 3.9214946090412854, 3.7551116586367748, 3.5876393209256743, + 3.4198911789730992, 3.2529518865720157, 3.0889112134114187, + 2.930856530834001, 2.7822510059323093, 2.645559012399791, + 2.5212102281080857, 2.40651891923344, 2.2952557658226613, + 2.1788792722125367, 2.047793117785472, 1.8938054781530251, + 1.7118112305517337, 1.5024606508005793, 1.2711991315139513, + 1.028616455132127, 0.7884177469475966, 0.564555494357097, + 0.36899208914984816, 0.20986737186006568, 0.09077204232937204, + 0.009706843297503145, -0.03750324901445944, -0.05754409653192198, + -0.0570435693599843, -0.04065665713531327, -0.012079732611519954, + 0.027059526388230937, 0.07559791134792945, 0.13166063288880234, + 0.19261310273728008, 0.2540767362825799, 0.3108389371122259, + 0.35775199660700163, 0.39097412282887983, 0.40853964829103623, + 0.41137527910651683, 0.4026203520896874, 0.3863787901055004, + 0.3672822252992534, 0.34850157637805895, 0.33130674146644046, + 0.3150229809025444, 0.29748322889937, 0.27615648641910656, + 0.24931431072054006, 0.2167966943027103, 0.18052123332587616, + 0.1437475421848567, 0.11038591562389899, 0.08372200093477057, + 0.06550369719054762, 0.0552972629908095, 0.05104410650884765, + 0.04966445503303072, 0.04823618988140587, 0.04528303875384519, + 0.041181597662836855, 0.038098878730272547, 0.03923330086470757, + 0.04741784562665926, 0.06411204583878338, 0.08839182164096078, + 0.11719599123425006, 0.14658689987565754, 0.1731875033886019, + 0.19650210212286862, 0.22046839163993304, 0.25398504586882065, + 0.3104428228328785, 0.4051816714014941, 0.5527624381434594, + 0.7644532965589483, 1.0428243267841288, 1.3842033518835852 + ], + "pressure:branch58_seg0:J33": [ + 9098.436075092264, 10472.588869810217, 11922.263780663394, + 13373.798633085755, 14754.61372695742, 16005.20626317698, + 17088.328040686378, 17995.206006873006, 18725.167419450623, + 19294.642434437348, 19729.76730431342, 20039.817484016057, + 20238.832481408597, 20330.23609945074, 20309.05453539466, + 20180.425226931507, 19941.694183103104, 19603.45426950409, + 19185.85729547539, 18703.437210675358, 18180.074745571474, + 17632.970466765833, 17072.811052067493, 16507.89830586328, + 15940.308280336063, 15372.465129362263, 14809.28712761166, + 14258.907919001571, 13732.624679746055, 13242.213179523, + 12794.372984857713, 12386.890991500575, 12007.676420172986, + 11631.331996855317, 11226.71203648622, 10761.401489064152, + 10211.370998273038, 9562.576123785208, 8824.259872952503, + 8022.420927494489, 7195.268300183844, 6393.0832119623465, + 5662.080817770782, 5039.414661498193, 4545.080970886684, + 4188.933192463108, 3957.633358167088, 3832.591061000412, + 3793.6195370312344, 3815.768762765778, 3886.8656989327546, + 3996.9671512082487, 4140.251051261009, 4314.614804186902, + 4511.717132202464, 4721.134211879705, 4927.131995155677, + 5110.876084314208, 5255.567939568527, 5350.782094451979, + 5392.331463871402, 5385.464168137557, 5344.979290453324, + 5284.101730179925, 5217.8782427153055, 5156.013280207989, + 5099.812749977801, 5044.852409841317, 4982.81380932321, 4905.127255881619, + 4807.756018850282, 4691.880032043234, 4566.270389882282, + 4443.531377111381, 4336.614070624058, 4255.363255594389, 4203.74504323348, + 4177.860624838545, 4168.636691677977, 4165.754341412053, + 4159.809641452702, 4147.752930439115, 4133.3689207524885, + 4125.659568608667, 4136.030966577397, 4172.916296366836, + 4239.001901564802, 4328.952535665728, 4429.345913022598, + 4527.163449605012, 4612.9456311694585, 4688.980880866082, + 4774.245294038432, 4904.5018984055405, 5129.152980084829, + 5502.432497161642, 6067.338522732871, 6859.86290590112, 7879.028843175469, + 9098.436075092264 + ], + "flow:J33:branch59_seg0": [ + 0.7443768913008747, 0.9552113309609476, 1.1823562008540764, + 1.4141688315132364, 1.6384216186037928, 1.8450140150209262, + 2.026990242600952, 2.1812199594446864, 2.3069500965772476, + 2.4065856278797284, 2.4832044556397648, 2.539260642408661, + 2.5772146209459605, 2.5976302228425445, 2.600551555888539, + 2.5860477872034493, 2.55389409823512, 2.505648507933686, + 2.443386892148653, 2.3699294083559073, 2.2888420357661037, + 2.2028865458333358, 2.1143587622295197, 2.024658909458742, + 1.9343698212382752, 1.8439322549858486, 1.7539249814829196, + 1.6654708143651296, 1.5802313413855338, 1.5000762615049457, + 1.4263369530696646, 1.3592615002197903, 1.297414137835207, + 1.2374458879745696, 1.1747637103828628, 1.1041926169094132, + 1.0213037682611141, 0.9233294339623008, 0.8106010398781233, + 0.6860256788302246, 0.5553005639541868, 0.4258087071929806, + 0.30506796930848146, 0.199536614927441, 0.11363427036077103, + 0.04929800766404316, 0.0054637467388030225, -0.020089681325465555, + -0.03098426222017221, -0.03078536779438902, -0.0220061061605758, + -0.006657986408153181, 0.014393990487888702, 0.040515500912517356, + 0.07069701459107436, 0.10353322805638965, 0.13666433552438745, + 0.16728351009956088, 0.1926149051147385, 0.21058114348189141, + 0.22010884899705271, 0.22169072549366675, 0.21701067241231684, + 0.20827569978169655, 0.19798834081840364, 0.18786230867246664, + 0.17859029057321363, 0.16981725843846188, 0.16037816648827732, + 0.14890803703950092, 0.13446734815001055, 0.11696426486663894, + 0.09742561558131368, 0.07760102401216905, 0.059600156001623245, + 0.04519941593385368, 0.03534882548579634, 0.029819135559668686, + 0.027512278974435332, 0.026766142451760302, 0.02600087952299831, + 0.024416230847369817, 0.02220612780739835, 0.0205325706504452, + 0.021118356532112668, 0.025493977414866496, 0.03445596876913495, + 0.04751452270992147, 0.06302688378343285, 0.07887241765994309, + 0.09322133920885309, 0.10579027681387776, 0.11868085329609693, + 0.13666869999202144, 0.1669568286901804, 0.21780159264343893, + 0.29708548391972517, 0.41088950930641754, 0.5606143474656546, + 0.7443768913008747 + ], + "pressure:J33:branch59_seg0": [ + 9098.436075092264, 10472.588869810217, 11922.263780663394, + 13373.798633085755, 14754.61372695742, 16005.20626317698, + 17088.328040686378, 17995.206006873006, 18725.167419450623, + 19294.642434437348, 19729.76730431342, 20039.817484016057, + 20238.832481408597, 20330.23609945074, 20309.05453539466, + 20180.425226931507, 19941.694183103104, 19603.45426950409, + 19185.85729547539, 18703.437210675358, 18180.074745571474, + 17632.970466765833, 17072.811052067493, 16507.89830586328, + 15940.308280336063, 15372.465129362263, 14809.28712761166, + 14258.907919001571, 13732.624679746055, 13242.213179523, + 12794.372984857713, 12386.890991500575, 12007.676420172986, + 11631.331996855317, 11226.71203648622, 10761.401489064152, + 10211.370998273038, 9562.576123785208, 8824.259872952503, + 8022.420927494489, 7195.268300183844, 6393.0832119623465, + 5662.080817770782, 5039.414661498193, 4545.080970886684, + 4188.933192463108, 3957.633358167088, 3832.591061000412, + 3793.6195370312344, 3815.768762765778, 3886.8656989327546, + 3996.9671512082487, 4140.251051261009, 4314.614804186902, + 4511.717132202464, 4721.134211879705, 4927.131995155677, + 5110.876084314208, 5255.567939568527, 5350.782094451979, + 5392.331463871402, 5385.464168137557, 5344.979290453324, + 5284.101730179925, 5217.8782427153055, 5156.013280207989, + 5099.812749977801, 5044.852409841317, 4982.81380932321, 4905.127255881619, + 4807.756018850282, 4691.880032043234, 4566.270389882282, + 4443.531377111381, 4336.614070624058, 4255.363255594389, 4203.74504323348, + 4177.860624838545, 4168.636691677977, 4165.754341412053, + 4159.809641452702, 4147.752930439115, 4133.3689207524885, + 4125.659568608667, 4136.030966577397, 4172.916296366836, + 4239.001901564802, 4328.952535665728, 4429.345913022598, + 4527.163449605012, 4612.9456311694585, 4688.980880866082, + 4774.245294038432, 4904.5018984055405, 5129.152980084829, + 5502.432497161642, 6067.338522732871, 6859.86290590112, 7879.028843175469, + 9098.436075092264 + ], + "flow:J33:branch145_seg0": [ + 0.6398264605827105, 0.8204734707204708, 1.0148968257243132, + 1.2130861391843195, 1.404634713404124, 1.5809507502645377, + 1.7361315345002963, 1.8675369861944937, 1.9746203366408777, + 2.0594191820903527, 2.1245847996280847, 2.172221879258952, + 2.20439054422258, 2.2215857507626215, 2.2238259729822953, + 2.2111770344613197, 2.183457727378206, 2.142002734319749, + 2.088624943121669, 2.025722202354302, 1.956332870599986, + 1.882825684852423, 1.8071358468117649, 1.7304527491780326, + 1.6532694996873991, 1.5759589239872507, 1.4990269050890963, + 1.423440399046289, 1.3506251894484667, 1.282174744427364, + 1.2192220593301257, 1.161948727888295, 1.109104781398234, + 1.0578098778480918, 1.004115561829674, 0.9436005008760582, + 0.8725017098919111, 0.7884817965894332, 0.6918596109224556, + 0.5851734526837267, 0.4733158911779399, 0.362609039754616, + 0.2594875250486154, 0.1694554742224072, 0.09623310149929465, + 0.04147403466532888, 0.0042430965587001235, -0.017413567688993888, + -0.02655983431174977, -0.02625820156559528, -0.01865055097473747, + -0.005421746203366774, 0.012665535900342233, 0.0350824104354121, + 0.06096361829772793, 0.08907987468089046, 0.11741240075819247, + 0.14355542701266505, 0.16513709149226316, 0.18039297934698836, + 0.18843079929398343, 0.1896845536128501, 0.1856096796773706, + 0.17810309032380384, 0.1692938844808498, 0.16063926770559228, + 0.15271645089322683, 0.14520572246408253, 0.13710506241109274, + 0.1272484493796057, 0.1148469625705295, 0.09983242943607139, + 0.08309561774456248, 0.0661465181726876, 0.05078575962227574, + 0.038522585000916904, 0.030154871704751278, 0.02547812743114081, + 0.023531827534412318, 0.022898312581270414, 0.022235310358407565, + 0.02086680790647537, 0.01897546985543849, 0.017566308079827352, + 0.0181149443325949, 0.021923868211792753, 0.029656077069648436, + 0.040877298931039315, 0.05416910745081722, 0.06771448221571442, + 0.07996616417974876, 0.09071182530899081, 0.10178753834383608, + 0.11731634587679922, 0.14348599414269814, 0.18738007875805512, + 0.2556769542237342, 0.35356378725253074, 0.4822099793184743, + 0.6398264605827105 + ], + "pressure:J33:branch145_seg0": [ + 9098.436075092264, 10472.588869810217, 11922.263780663394, + 13373.798633085755, 14754.61372695742, 16005.20626317698, + 17088.328040686378, 17995.206006873006, 18725.167419450623, + 19294.642434437348, 19729.76730431342, 20039.817484016057, + 20238.832481408597, 20330.23609945074, 20309.05453539466, + 20180.425226931507, 19941.694183103104, 19603.45426950409, + 19185.85729547539, 18703.437210675358, 18180.074745571474, + 17632.970466765833, 17072.811052067493, 16507.89830586328, + 15940.308280336063, 15372.465129362263, 14809.28712761166, + 14258.907919001571, 13732.624679746055, 13242.213179523, + 12794.372984857713, 12386.890991500575, 12007.676420172986, + 11631.331996855317, 11226.71203648622, 10761.401489064152, + 10211.370998273038, 9562.576123785208, 8824.259872952503, + 8022.420927494489, 7195.268300183844, 6393.0832119623465, + 5662.080817770782, 5039.414661498193, 4545.080970886684, + 4188.933192463108, 3957.633358167088, 3832.591061000412, + 3793.6195370312344, 3815.768762765778, 3886.8656989327546, + 3996.9671512082487, 4140.251051261009, 4314.614804186902, + 4511.717132202464, 4721.134211879705, 4927.131995155677, + 5110.876084314208, 5255.567939568527, 5350.782094451979, + 5392.331463871402, 5385.464168137557, 5344.979290453324, + 5284.101730179925, 5217.8782427153055, 5156.013280207989, + 5099.812749977801, 5044.852409841317, 4982.81380932321, 4905.127255881619, + 4807.756018850282, 4691.880032043234, 4566.270389882282, + 4443.531377111381, 4336.614070624058, 4255.363255594389, 4203.74504323348, + 4177.860624838545, 4168.636691677977, 4165.754341412053, + 4159.809641452702, 4147.752930439115, 4133.3689207524885, + 4125.659568608667, 4136.030966577397, 4172.916296366836, + 4239.001901564802, 4328.952535665728, 4429.345913022598, + 4527.163449605012, 4612.9456311694585, 4688.980880866082, + 4774.245294038432, 4904.5018984055405, 5129.152980084829, + 5502.432497161642, 6067.338522732871, 6859.86290590112, 7879.028843175469, + 9098.436075092264 + ], + "flow:branch61_seg2:J34": [ + 1.4452983447288947, 1.8765615209109412, 2.3559790410681707, + 2.8605930043065855, 3.3646794251091783, 3.8446215136239443, + 4.281785290163602, 4.664579044648829, 4.98732129718562, 5.251260216067728, + 5.460687783024657, 5.620616735176786, 5.736324728788777, + 5.810404221140177, 5.844101761587924, 5.837925382308296, + 5.791833739178003, 5.708081686162518, 5.5902921348239945, + 5.443910071285023, 5.275858176210643, 5.092538322659585, + 4.899656921737386, 4.7012732346550345, 4.49979827719262, + 4.296821305067038, 4.093783325192229, 3.8928534760912736, + 3.6971825729426717, 3.5105654856215525, 3.33626712761258, + 3.1758929057303225, 3.028008803813437, 2.8874575067558115, + 2.745955801782086, 2.5931981597147993, 2.419169579869151, + 2.2162712957686543, 1.982080549648312, 1.7196039173427224, + 1.437910938404445, 1.150535629108309, 0.8729550631482678, + 0.6199802495541168, 0.403381293531398, 0.23024228045169123, + 0.1019693762146363, 0.016164326128982574, -0.03315608757313812, + -0.05293919938400315, -0.049330349545588285, -0.027459351252610068, + 0.009602418048772677, 0.059631074576984834, 0.1203872752105849, + 0.18903636466638388, 0.2611351895767128, 0.33113631799635956, + 0.3930787930727384, 0.44182089996766977, 0.4739061116713219, + 0.48873933895729177, 0.4883376778309761, 0.47649801509586437, + 0.4581017401651054, 0.4372983308511468, 0.41663673280452723, + 0.39659990447008875, 0.3757801246759804, 0.3518034209455761, + 0.3225038208308465, 0.28697796940908366, 0.24630047370027094, + 0.20328372565125039, 0.16191267484291616, 0.1261201827312998, + 0.09868814902362313, 0.080352026114706, 0.06991564666243018, + 0.06461172349470251, 0.06127089733980741, 0.0576197298065799, + 0.05306529704649203, 0.04899258031096198, 0.04828829920074868, + 0.05412623700345302, 0.06879175249432899, 0.09243035851736275, + 0.12285026550019572, 0.15630236948481913, 0.18886136120200447, + 0.21870442073781426, 0.24807636274362665, 0.28445030918256864, + 0.34062248752985486, 0.43283151275481374, 0.5782145461841899, + 0.7914971583316508, 1.080351383501336, 1.4452983447288947 + ], + "pressure:branch61_seg2:J34": [ + 8446.727702056965, 9694.169463598184, 11038.666368727934, + 12415.735151808583, 13756.914635793877, 15001.725331107058, + 16107.291949340817, 17056.747340561207, 17841.18109195641, + 18468.266525116785, 18959.278848593927, 19323.336670622804, + 19573.87454488431, 19716.739896895862, 19749.574681742473, + 19677.041529912192, 19498.0541991615, 19220.09028002446, + 18858.813608571305, 18428.07221382134, 17949.091923769596, + 17438.49009068827, 16908.464318488102, 16368.669869065128, + 15823.20219424797, 15275.51304305372, 14730.123470440498, + 14194.020430149767, 13676.976265451098, 13189.84240836698, + 12739.898042989938, 12327.666691415749, 11945.42784496058, + 11573.18670373267, 11184.774231809264, 10750.982368278968, + 10247.463639166852, 9657.516804281848, 8982.991631533758, + 8241.500918390617, 7463.1720515891975, 6690.992968775407, + 5967.684575505332, 5330.267847525493, 4803.747287796239, + 4402.182064937263, 4119.761062751842, 3944.9309331246027, + 3860.5129616359213, 3844.4179587977173, 3883.6148245299732, + 3966.185052909481, 4085.3169483080933, 4237.542703097693, + 4414.657334207905, 4607.919692178019, 4803.875392400193, + 4985.617131508998, 5137.1721196095, 5247.15681437467, 5309.162730857184, + 5324.605847773422, 5304.30392925068, 5259.403438892476, 5203.242646543904, + 5146.095180192946, 5091.570829542754, 5038.014083985317, 4979.56166044742, + 4909.008647129706, 4821.740583609782, 4717.36457727485, 4601.93220203803, + 4485.264648105811, 4378.803520190443, 4292.387222656403, + 4231.513720640707, 4194.813232235863, 4176.242850453799, + 4167.446925522392, 4159.485302233097, 4148.2237848740015, + 4135.055374616051, 4126.277423464539, 4131.227986268349, + 4157.949462615121, 4210.440950258294, 4286.297832208743, + 4375.571322858514, 4467.128510233194, 4551.642009991253, + 4628.227970635547, 4709.738887494854, 4824.021796875743, + 5012.424866330516, 5322.755637276693, 5798.202331277917, + 6475.984187393128, 7362.5445851416125, 8446.727702056965 + ], + "flow:J34:branch62_seg0": [ + 0.67622025389341, 0.8783711050875878, 1.1033731414648424, + 1.340464584350908, 1.5775877597731163, 1.803621194109502, + 2.0097457533984526, 2.1904271121768986, 2.3429358140263368, + 2.467774963826902, 2.566924315564642, 2.6427362325717816, + 2.697675231885972, 2.732995818798868, 2.7492991482479607, + 2.746833854499624, 2.7255944302673814, 2.6866047831060027, + 2.6315687267249244, 2.5630294123591804, 2.4842128841342745, + 2.39814337058915, 2.3075095232353857, 2.2142364960181506, + 2.1194803907851045, 2.0239971273466844, 1.9284691825194364, + 1.8339115554577916, 1.7417955505813818, 1.653897553547171, + 1.571758501903405, 1.4961476116902528, 1.4264197388761144, + 1.3601915439158685, 1.2935998736023864, 1.2218209656549586, + 1.1401479445988594, 1.0449837915648093, 0.9351315095223346, + 0.8119542908443188, 0.6796501074469107, 0.5445298241666465, + 0.4138513283442134, 0.29458839616087673, 0.19229638901998966, + 0.11035847549239473, 0.04951376046627929, 0.008660865650579722, + -0.014965461074491062, -0.02461505244582396, -0.0231941563701629, + -0.013115018707352643, 0.004149399290856984, 0.02753789077583046, + 0.0560014890672268, 0.0882069561262076, 0.12208096857891754, + 0.1550277547507302, 0.18424781311741878, 0.2073156108192137, + 0.22259013039421185, 0.22975952461134463, 0.2297447631857739, + 0.22431210959809472, 0.21573974983004698, 0.20598664588324136, + 0.196268826015501, 0.18683416234002895, 0.17704231900176418, + 0.16578912763542955, 0.15205721224940894, 0.1354101567933088, + 0.11633017982821242, 0.09612312003671676, 0.07664908100871774, + 0.05975524905632551, 0.04676014245692729, 0.03803343944506393, + 0.03303182727355661, 0.030471412355080753, 0.028870726031162138, + 0.027151635874783763, 0.025018307771040905, 0.023101142625785887, + 0.022739989372705903, 0.025422251308539066, 0.032229332379883874, + 0.04325204395044398, 0.05748426183018257, 0.07318069287777623, + 0.08850213141975073, 0.10257305756357633, 0.11640858210617784, + 0.13346954555221813, 0.15971550811825944, 0.20275171055521815, + 0.27061371108404547, 0.37024107629798714, 0.5053478781980117, + 0.67622025389341 + ], + "pressure:J34:branch62_seg0": [ + 8446.727702056965, 9694.169463598184, 11038.666368727934, + 12415.735151808583, 13756.914635793877, 15001.725331107058, + 16107.291949340817, 17056.747340561207, 17841.18109195641, + 18468.266525116785, 18959.278848593927, 19323.336670622804, + 19573.87454488431, 19716.739896895862, 19749.574681742473, + 19677.041529912192, 19498.0541991615, 19220.09028002446, + 18858.813608571305, 18428.07221382134, 17949.091923769596, + 17438.49009068827, 16908.464318488102, 16368.669869065128, + 15823.20219424797, 15275.51304305372, 14730.123470440498, + 14194.020430149767, 13676.976265451098, 13189.84240836698, + 12739.898042989938, 12327.666691415749, 11945.42784496058, + 11573.18670373267, 11184.774231809264, 10750.982368278968, + 10247.463639166852, 9657.516804281848, 8982.991631533758, + 8241.500918390617, 7463.1720515891975, 6690.992968775407, + 5967.684575505332, 5330.267847525493, 4803.747287796239, + 4402.182064937263, 4119.761062751842, 3944.9309331246027, + 3860.5129616359213, 3844.4179587977173, 3883.6148245299732, + 3966.185052909481, 4085.3169483080933, 4237.542703097693, + 4414.657334207905, 4607.919692178019, 4803.875392400193, + 4985.617131508998, 5137.1721196095, 5247.15681437467, 5309.162730857184, + 5324.605847773422, 5304.30392925068, 5259.403438892476, 5203.242646543904, + 5146.095180192946, 5091.570829542754, 5038.014083985317, 4979.56166044742, + 4909.008647129706, 4821.740583609782, 4717.36457727485, 4601.93220203803, + 4485.264648105811, 4378.803520190443, 4292.387222656403, + 4231.513720640707, 4194.813232235863, 4176.242850453799, + 4167.446925522392, 4159.485302233097, 4148.2237848740015, + 4135.055374616051, 4126.277423464539, 4131.227986268349, + 4157.949462615121, 4210.440950258294, 4286.297832208743, + 4375.571322858514, 4467.128510233194, 4551.642009991253, + 4628.227970635547, 4709.738887494854, 4824.021796875743, + 5012.424866330516, 5322.755637276693, 5798.202331277917, + 6475.984187393128, 7362.5445851416125, 8446.727702056965 + ], + "flow:J34:branch126_seg0": [ + 0.7690780908354848, 0.9981904158233531, 1.2526058996033282, + 1.5201284199556775, 1.7870916653360622, 2.0410003195144424, + 2.2720395367651487, 2.474151932471931, 2.644385483159283, + 2.7834852522408244, 2.8937634674600146, 2.9778805026050037, + 3.0386494969028055, 3.077408402341309, 3.094802613339962, + 3.0910915278086732, 3.066239308910622, 3.0214769030565165, + 2.958723408099069, 2.880880658925842, 2.7916452920763692, + 2.6943949520704336, 2.592147398502, 2.487036738636885, 2.380317886407516, + 2.2728241777203526, 2.1653141426727913, 2.0589419206334822, + 1.95538702236129, 1.8566679320743824, 1.7645086257091747, + 1.6797452940400697, 1.6015890649373223, 1.5272659628399423, + 1.4523559281796992, 1.3713771940598407, 1.2790216352702917, + 1.1712875042038453, 1.0469490401259771, 0.9076496264984037, + 0.7582608309575346, 0.6060058049416626, 0.4591037348040543, + 0.32539185339323984, 0.21108490451140832, 0.11988380495929649, + 0.05245561574835701, 0.00750346047840285, -0.018190626498647056, + -0.02832414693817919, -0.026136193175425388, -0.014344332545257419, + 0.005453018757915692, 0.032093183801154355, 0.0643857861433581, + 0.10082940854017626, 0.13905422099779519, 0.17610856324562937, + 0.2088309799553196, 0.2345052891484561, 0.2513159812771101, + 0.2589798143459471, 0.2585929146452022, 0.2521859054977696, + 0.24236199033505845, 0.23131168496790536, 0.22036790678902637, + 0.2097657421300598, 0.19873780567421628, 0.1860142933101465, + 0.1704466085814375, 0.1515678126157749, 0.12997029387205852, + 0.10716060561453367, 0.08526359383419842, 0.06636493367497426, + 0.05192800656669586, 0.04231858666964208, 0.036883819388873584, + 0.03414031113962178, 0.032400171308645274, 0.03046809393179613, + 0.028046989275451132, 0.025891437685176093, 0.02554830982804278, + 0.028703985694913964, 0.036562420114445104, 0.0491783145669188, + 0.06536600367001315, 0.0831216766070429, 0.10035922978225371, + 0.11613136317423797, 0.13166778063744888, 0.1509807636303505, + 0.1809069794115954, 0.23007980219959553, 0.30760083510014435, + 0.4212560820336636, 0.5750035053033242, 0.7690780908354848 + ], + "pressure:J34:branch126_seg0": [ + 8446.727702056965, 9694.169463598184, 11038.666368727934, + 12415.735151808583, 13756.914635793877, 15001.725331107058, + 16107.291949340817, 17056.747340561207, 17841.18109195641, + 18468.266525116785, 18959.278848593927, 19323.336670622804, + 19573.87454488431, 19716.739896895862, 19749.574681742473, + 19677.041529912192, 19498.0541991615, 19220.09028002446, + 18858.813608571305, 18428.07221382134, 17949.091923769596, + 17438.49009068827, 16908.464318488102, 16368.669869065128, + 15823.20219424797, 15275.51304305372, 14730.123470440498, + 14194.020430149767, 13676.976265451098, 13189.84240836698, + 12739.898042989938, 12327.666691415749, 11945.42784496058, + 11573.18670373267, 11184.774231809264, 10750.982368278968, + 10247.463639166852, 9657.516804281848, 8982.991631533758, + 8241.500918390617, 7463.1720515891975, 6690.992968775407, + 5967.684575505332, 5330.267847525493, 4803.747287796239, + 4402.182064937263, 4119.761062751842, 3944.9309331246027, + 3860.5129616359213, 3844.4179587977173, 3883.6148245299732, + 3966.185052909481, 4085.3169483080933, 4237.542703097693, + 4414.657334207905, 4607.919692178019, 4803.875392400193, + 4985.617131508998, 5137.1721196095, 5247.15681437467, 5309.162730857184, + 5324.605847773422, 5304.30392925068, 5259.403438892476, 5203.242646543904, + 5146.095180192946, 5091.570829542754, 5038.014083985317, 4979.56166044742, + 4909.008647129706, 4821.740583609782, 4717.36457727485, 4601.93220203803, + 4485.264648105811, 4378.803520190443, 4292.387222656403, + 4231.513720640707, 4194.813232235863, 4176.242850453799, + 4167.446925522392, 4159.485302233097, 4148.2237848740015, + 4135.055374616051, 4126.277423464539, 4131.227986268349, + 4157.949462615121, 4210.440950258294, 4286.297832208743, + 4375.571322858514, 4467.128510233194, 4551.642009991253, + 4628.227970635547, 4709.738887494854, 4824.021796875743, + 5012.424866330516, 5322.755637276693, 5798.202331277917, + 6475.984187393128, 7362.5445851416125, 8446.727702056965 + ], + "flow:branch63_seg0:J35": [ + 1.8731630568210285, 2.4418782253813593, 3.091017550071438, + 3.7950979676948986, 4.5231712338463375, 5.24436363770398, + 5.931675556050902, 6.5649694429681436, 7.131030541449756, + 7.625071341959703, 8.046799143659191, 8.398493579234408, + 8.683771623719704, 8.904224476633276, 9.060616628681942, 9.1529135853074, + 9.180789582815505, 9.146544090258343, 9.054107789613523, + 8.910047401471767, 8.72298215555406, 8.501517674116428, 8.253917709297115, + 7.986769240948724, 7.704857319101173, 7.411862456011013, + 7.1110602219386845, 6.8063516163987385, 6.502665940767177, + 6.205703632910603, 5.920715021487205, 5.6511700142170085, + 5.396986687146806, 5.153560729006128, 4.912027887434462, + 4.660338243519449, 4.3857476184312505, 4.077505639039028, + 3.730194618949593, 3.344655637923979, 2.929345924364973, + 2.4988403166413224, 2.0714010019385514, 1.6659296084017299, + 1.2990616254139629, 0.9826500570916084, 0.7222831469709835, + 0.5186865879009325, 0.3676373344796755, 0.26288748652660104, + 0.19798205190937768, 0.16693844632137966, 0.16561861783750467, + 0.19062194255296946, 0.238566414025889, 0.30531512712916326, + 0.38485990371442547, 0.4697333905217961, 0.5516601895586457, + 0.6229342586000828, 0.677578603869358, 0.712849603706725, + 0.7291535485010486, 0.7295310137265287, 0.7188373730832012, + 0.7017148483409564, 0.6814972871457765, 0.6593880794537137, + 0.634405097496956, 0.6042313342266326, 0.5664451544527335, + 0.5198053592262895, 0.4652014638969313, 0.4056232319023175, + 0.3456922750056278, 0.29035987035106975, 0.24360048677630025, + 0.20725481733533466, 0.1808978883815703, 0.16203878274367242, + 0.1473517258364176, 0.1341057970914062, 0.12122808590097986, + 0.10986313447383295, 0.10304606223045348, 0.10448849102352499, + 0.11722554342833993, 0.14205941305687517, 0.17713606322752243, + 0.21847669819168522, 0.261452509865437, 0.3033704579056251, + 0.3459276365734642, 0.39696030602411647, 0.471047867082375, + 0.5878136863578775, 0.7693995303905065, 1.036381466467414, + 1.4024194013242766, 1.8731630568210285 + ], + "pressure:branch63_seg0:J35": [ + 7477.963330109598, 8480.904751675977, 9595.266589972598, + 10775.077862961869, 11967.91546272513, 13124.362838733114, + 14204.61789549309, 15183.972003121602, 16045.670664944495, + 16787.142534250168, 17413.94866395905, 17928.392875845242, + 18337.243865326145, 18642.37760180056, 18842.299935790885, + 18938.895849603738, 18930.741166343036, 18823.16719229025, + 18626.62646113924, 18351.67608764646, 18014.277622314137, + 17628.53453054416, 17206.264153008022, 16757.282404539383, + 16287.765132416134, 15802.948697404938, 15308.396645601291, + 14811.131900171986, 14320.010194478495, 13844.74722373053, + 13392.98852275774, 12967.971724030793, 12566.550632598515, + 12176.923677002877, 11781.441666232273, 11358.60233667768, + 10888.574116194366, 10355.901986012344, 9757.344444636206, + 9100.71320180836, 8404.696462980744, 7698.308617139454, 7013.114942219606, + 6379.233195036201, 5819.853741512077, 5351.062851169492, + 4975.914165628871, 4691.152596018058, 4488.078903293829, + 4353.970976599735, 4279.5224612373795, 4255.956285694341, + 4277.257806049532, 4339.034605779171, 4434.863295353728, + 4557.154590274004, 4694.755984012931, 4834.179006014407, + 4961.754898152252, 5066.221006991086, 5139.654443441316, + 5180.075294962546, 5191.733788324457, 5180.648655779904, + 5155.636242638319, 5123.995516963808, 5089.307896390209, 5051.64643976374, + 5007.872689512266, 4953.4298389957785, 4884.95450193668, + 4801.649068483672, 4706.971794868037, 4607.539235239698, + 4511.686894964751, 4427.245766523632, 4359.4997087579195, + 4309.364293547825, 4274.123787430162, 4248.634453396597, + 4227.067990237639, 4206.009181959233, 4185.5021202662065, + 4169.214947018724, 4163.363776003242, 4173.963683359707, + 4204.791963895231, 4255.20138705079, 4319.4625191707455, 4390.11927482406, + 4459.967167729387, 4527.076447850109, 4598.759179337641, + 4693.309400083463, 4839.828665133457, 5074.1252625810685, + 5431.362385479911, 5943.817773023515, 6626.138953069636, 7477.963330109598 + ], + "flow:J35:branch64_seg0": [ + 0.40665989840437206, 0.5297464268041658, 0.6700054161790806, + 0.8218784726139796, 0.9786830282398954, 1.1337739538899172, + 1.2813691651244807, 1.4171843665301194, 1.538439238337053, + 1.644155469125571, 1.7343114621270828, 1.8094168042556438, + 1.870254803067658, 1.917165644879866, 1.9503003598731217, + 1.9696550320823278, 1.9751550271708294, 1.9673066069903937, + 1.9469856333080735, 1.9156077986993947, 1.8750412776448064, + 1.8271455455276364, 1.7736865319435238, 1.7160730509996063, + 1.6553218704513812, 1.5922146466755152, 1.5274556737129767, + 1.4618873312570728, 1.3965762074023613, 1.3327524441838052, + 1.2715423508101122, 1.2136753082304523, 1.1591081006864319, + 1.1068190168330727, 1.0548680053601238, 1.000641633182775, + 0.9413975572883515, 0.8748356858652143, 0.7998294292213461, + 0.7166121635964368, 0.6270512760388015, 0.5343283710222214, + 0.44239978116353385, 0.3553385283011705, 0.27669435892407307, + 0.20899665924798824, 0.1534046671362327, 0.11002224558555092, + 0.07792447387922742, 0.05574199161870473, 0.042082373719822624, + 0.03567117328243608, 0.03561787942916301, 0.041200790797268606, + 0.051694463474133895, 0.06619727120121967, 0.08340715840352773, + 0.10170700445817155, 0.11931052648703819, 0.1345652661387713, + 0.14619948500271593, 0.15364436126200093, 0.15701290202863788, + 0.15697633370004302, 0.1545908361342716, 0.1508559687927908, + 0.14647850932688722, 0.14170193912999177, 0.13630053905102585, + 0.1297661511830623, 0.12157933956713118, 0.11148006245670748, + 0.09967398072897946, 0.086821723380325, 0.07392682269971766, + 0.06205624624233137, 0.05205786245796683, 0.044314517673318975, + 0.0387152753130279, 0.03471192106934709, 0.03158445331136036, + 0.02874792585053899, 0.025984352048068163, 0.023555436938218398, + 0.022126820562952357, 0.02250124683257242, 0.025325545891070715, + 0.03075741160937495, 0.038377785666902656, 0.04731756278734503, + 0.05657842950262701, 0.06559670514601317, 0.07477052028414193, + 0.08583130456472621, 0.10196322374031448, 0.12743120984197961, + 0.16699777301419005, 0.2250871068607074, 0.3046047899604326, + 0.40665989840437206 + ], + "pressure:J35:branch64_seg0": [ + 7477.963330109598, 8480.904751675977, 9595.266589972598, + 10775.077862961869, 11967.91546272513, 13124.362838733114, + 14204.61789549309, 15183.972003121602, 16045.670664944495, + 16787.142534250168, 17413.94866395905, 17928.392875845242, + 18337.243865326145, 18642.37760180056, 18842.299935790885, + 18938.895849603738, 18930.741166343036, 18823.16719229025, + 18626.62646113924, 18351.67608764646, 18014.277622314137, + 17628.53453054416, 17206.264153008022, 16757.282404539383, + 16287.765132416134, 15802.948697404938, 15308.396645601291, + 14811.131900171986, 14320.010194478495, 13844.74722373053, + 13392.98852275774, 12967.971724030793, 12566.550632598515, + 12176.923677002877, 11781.441666232273, 11358.60233667768, + 10888.574116194366, 10355.901986012344, 9757.344444636206, + 9100.71320180836, 8404.696462980744, 7698.308617139454, 7013.114942219606, + 6379.233195036201, 5819.853741512077, 5351.062851169492, + 4975.914165628871, 4691.152596018058, 4488.078903293829, + 4353.970976599735, 4279.5224612373795, 4255.956285694341, + 4277.257806049532, 4339.034605779171, 4434.863295353728, + 4557.154590274004, 4694.755984012931, 4834.179006014407, + 4961.754898152252, 5066.221006991086, 5139.654443441316, + 5180.075294962546, 5191.733788324457, 5180.648655779904, + 5155.636242638319, 5123.995516963808, 5089.307896390209, 5051.64643976374, + 5007.872689512266, 4953.4298389957785, 4884.95450193668, + 4801.649068483672, 4706.971794868037, 4607.539235239698, + 4511.686894964751, 4427.245766523632, 4359.4997087579195, + 4309.364293547825, 4274.123787430162, 4248.634453396597, + 4227.067990237639, 4206.009181959233, 4185.5021202662065, + 4169.214947018724, 4163.363776003242, 4173.963683359707, + 4204.791963895231, 4255.20138705079, 4319.4625191707455, 4390.11927482406, + 4459.967167729387, 4527.076447850109, 4598.759179337641, + 4693.309400083463, 4839.828665133457, 5074.1252625810685, + 5431.362385479911, 5943.817773023515, 6626.138953069636, 7477.963330109598 + ], + "flow:J35:branch83_seg0": [ + 0.7715962377751319, 1.0044072439204914, 1.26897683029155, + 1.5547901782932718, 1.8491382193241517, 2.1395527365958262, + 2.4152870010774157, 2.668505012964763, 2.8940918719280972, + 3.0904405807241373, 3.257647397125512, 3.3966959672816417, + 3.5091254760673207, 3.595506393946921, 3.656100047528412, + 3.6908772405710355, 3.699681159608236, 3.6835308544650234, + 3.644066974473749, 3.584031633814575, 3.506992709364632, 3.41641177966248, + 3.3156147598412957, 3.207201515635628, 3.093028439078, 2.9745383171074304, + 2.8530294761077366, 2.7300927530403483, 2.60775166377416, + 2.4883361211005335, 2.3739456873806324, 2.2659209550754764, + 2.164107354090407, 2.0664730795115203, 1.9692921486225758, + 1.8675835656375244, 1.7561730065469383, 1.6307885050538464, + 1.489440372987622, 1.3326933535925811, 1.1642341388196498, + 0.99018351308686, 0.8180421466318344, 0.6554577882475562, + 0.5090782044719622, 0.38349755871280805, 0.28071682371584633, + 0.20087212887641095, 0.14205222359658248, 0.10164638582022163, + 0.07705583191709474, 0.06586087605214695, 0.066477027271841, + 0.0775675967903397, 0.09775805691692227, 0.12537471687518373, + 0.1579274257530633, 0.1923479379997898, 0.22527276464975193, + 0.25361610727416284, 0.2750244181770945, 0.28850752036735644, + 0.2943565543709259, 0.293889774393948, 0.289139403438709, + 0.28197802208761796, 0.27370147292284924, 0.2647199473206346, + 0.25455525905348086, 0.24221958141248107, 0.22672519577467237, + 0.2076116552781448, 0.18531677860529325, 0.1611189174091304, + 0.13694561207270647, 0.11481095709428299, 0.09628659800308095, + 0.08203218769847659, 0.07179836112677922, 0.06450230345563092, + 0.05876037372299291, 0.05349362341335023, 0.048326693332416897, + 0.0438007300713352, 0.04121215987757842, 0.04208614849478661, + 0.04762803284123559, 0.05808448366348354, 0.07260661976699553, + 0.08951222250812525, 0.10690354299631095, 0.12375429398885485, + 0.14090284087288207, 0.16172849349739193, 0.19235727605653027, + 0.24088089788084843, 0.316346862617298, 0.42700511250286766, + 0.5780648322740316, 0.7715962377751319 + ], + "pressure:J35:branch83_seg0": [ + 7477.963330109598, 8480.904751675977, 9595.266589972598, + 10775.077862961869, 11967.91546272513, 13124.362838733114, + 14204.61789549309, 15183.972003121602, 16045.670664944495, + 16787.142534250168, 17413.94866395905, 17928.392875845242, + 18337.243865326145, 18642.37760180056, 18842.299935790885, + 18938.895849603738, 18930.741166343036, 18823.16719229025, + 18626.62646113924, 18351.67608764646, 18014.277622314137, + 17628.53453054416, 17206.264153008022, 16757.282404539383, + 16287.765132416134, 15802.948697404938, 15308.396645601291, + 14811.131900171986, 14320.010194478495, 13844.74722373053, + 13392.98852275774, 12967.971724030793, 12566.550632598515, + 12176.923677002877, 11781.441666232273, 11358.60233667768, + 10888.574116194366, 10355.901986012344, 9757.344444636206, + 9100.71320180836, 8404.696462980744, 7698.308617139454, 7013.114942219606, + 6379.233195036201, 5819.853741512077, 5351.062851169492, + 4975.914165628871, 4691.152596018058, 4488.078903293829, + 4353.970976599735, 4279.5224612373795, 4255.956285694341, + 4277.257806049532, 4339.034605779171, 4434.863295353728, + 4557.154590274004, 4694.755984012931, 4834.179006014407, + 4961.754898152252, 5066.221006991086, 5139.654443441316, + 5180.075294962546, 5191.733788324457, 5180.648655779904, + 5155.636242638319, 5123.995516963808, 5089.307896390209, 5051.64643976374, + 5007.872689512266, 4953.4298389957785, 4884.95450193668, + 4801.649068483672, 4706.971794868037, 4607.539235239698, + 4511.686894964751, 4427.245766523632, 4359.4997087579195, + 4309.364293547825, 4274.123787430162, 4248.634453396597, + 4227.067990237639, 4206.009181959233, 4185.5021202662065, + 4169.214947018724, 4163.363776003242, 4173.963683359707, + 4204.791963895231, 4255.20138705079, 4319.4625191707455, 4390.11927482406, + 4459.967167729387, 4527.076447850109, 4598.759179337641, + 4693.309400083463, 4839.828665133457, 5074.1252625810685, + 5431.362385479911, 5943.817773023515, 6626.138953069636, 7477.963330109598 + ], + "flow:J35:branch97_seg0": [ + 0.6949069206415246, 0.9077245546567011, 1.1520353036008073, + 1.418429316787647, 1.6953499862822894, 1.971036947218235, + 2.2350193898490054, 2.479280063473261, 2.6984994311846076, + 2.8904752921099957, 3.0548402844065974, 3.19238080769712, + 3.3043913445847255, 3.3915524378064914, 3.454216221280409, + 3.4923813126540364, 3.505953396036441, 3.4957066288029206, + 3.4630551818316992, 3.4104079689577964, 3.340948168544624, + 3.257960348926311, 3.164616417512297, 3.0634946743134885, + 2.956507009571792, 2.845109492228066, 2.730575072117972, + 2.614371532101319, 2.4983380695906563, 2.3846150676262643, + 2.2752269832964607, 2.1715737509110813, 2.0737712323699666, + 1.9802686326615353, 1.8878677334517624, 1.7921130446991484, + 1.6881770545959613, 1.571881448119967, 1.440924816740626, + 1.2953501207349616, 1.1380605095065217, 0.9743284325322407, + 0.8109590741431829, 0.6551332918530037, 0.5132890620179275, + 0.3901558391308118, 0.2881616561189043, 0.20779221343897059, + 0.14766063700386564, 0.10549910908767467, 0.07884384627246029, + 0.06540639698679661, 0.06352371113650067, 0.07185355496536118, + 0.08911389363483278, 0.11374313905275987, 0.1435253195578344, + 0.1756784480638348, 0.20707689842185562, 0.23475288518714862, + 0.2563547006895477, 0.2706977220773676, 0.2777840921014851, + 0.27866490563253776, 0.2751071335102206, 0.26888085746054774, + 0.26131730489603994, 0.2529661930030873, 0.24354929939244913, + 0.23224560163108923, 0.2181406191109299, 0.20071364149143725, + 0.1802107045626586, 0.1576825911128621, 0.13481984023320373, + 0.11349266701445541, 0.09525602631525243, 0.0809081119635391, + 0.07038425194176316, 0.06282455821869438, 0.05700689880206431, + 0.05186424782751695, 0.0469170405204948, 0.04250696746427935, + 0.039707081789922716, 0.03990109569616595, 0.044271964696033644, + 0.053217517784016656, 0.06615165779362427, 0.0816469128962149, + 0.09797053736649901, 0.1140194587707571, 0.13025427541644022, + 0.14940050796199839, 0.1767273672855302, 0.21950157863504943, + 0.28605489475901835, 0.3842892471038392, 0.5197497790898122, + 0.6949069206415246 + ], + "pressure:J35:branch97_seg0": [ + 7477.963330109598, 8480.904751675977, 9595.266589972598, + 10775.077862961869, 11967.91546272513, 13124.362838733114, + 14204.61789549309, 15183.972003121602, 16045.670664944495, + 16787.142534250168, 17413.94866395905, 17928.392875845242, + 18337.243865326145, 18642.37760180056, 18842.299935790885, + 18938.895849603738, 18930.741166343036, 18823.16719229025, + 18626.62646113924, 18351.67608764646, 18014.277622314137, + 17628.53453054416, 17206.264153008022, 16757.282404539383, + 16287.765132416134, 15802.948697404938, 15308.396645601291, + 14811.131900171986, 14320.010194478495, 13844.74722373053, + 13392.98852275774, 12967.971724030793, 12566.550632598515, + 12176.923677002877, 11781.441666232273, 11358.60233667768, + 10888.574116194366, 10355.901986012344, 9757.344444636206, + 9100.71320180836, 8404.696462980744, 7698.308617139454, 7013.114942219606, + 6379.233195036201, 5819.853741512077, 5351.062851169492, + 4975.914165628871, 4691.152596018058, 4488.078903293829, + 4353.970976599735, 4279.5224612373795, 4255.956285694341, + 4277.257806049532, 4339.034605779171, 4434.863295353728, + 4557.154590274004, 4694.755984012931, 4834.179006014407, + 4961.754898152252, 5066.221006991086, 5139.654443441316, + 5180.075294962546, 5191.733788324457, 5180.648655779904, + 5155.636242638319, 5123.995516963808, 5089.307896390209, 5051.64643976374, + 5007.872689512266, 4953.4298389957785, 4884.95450193668, + 4801.649068483672, 4706.971794868037, 4607.539235239698, + 4511.686894964751, 4427.245766523632, 4359.4997087579195, + 4309.364293547825, 4274.123787430162, 4248.634453396597, + 4227.067990237639, 4206.009181959233, 4185.5021202662065, + 4169.214947018724, 4163.363776003242, 4173.963683359707, + 4204.791963895231, 4255.20138705079, 4319.4625191707455, 4390.11927482406, + 4459.967167729387, 4527.076447850109, 4598.759179337641, + 4693.309400083463, 4839.828665133457, 5074.1252625810685, + 5431.362385479911, 5943.817773023515, 6626.138953069636, 7477.963330109598 + ], + "flow:branch65_seg0:J36": [ + 1.6155960584881472, 2.106783187767921, 2.6685762807208784, + 3.2785182805879285, 3.9092483362883295, 4.533500058759304, + 5.127538888388375, 5.67378247574268, 6.160912166350953, 6.584999315598605, + 6.9461347978190195, 7.246756474601778, 7.4904268386531205, + 7.679043994839596, 7.813753211642455, 7.894860947438204, + 7.922356248311554, 7.898175669595883, 7.825458967177705, + 7.709518325099021, 7.557276745222615, 7.37569877360355, 7.171552127708288, + 6.95025886378733, 6.715801724581032, 6.471243559780075, 6.219276973254939, + 5.9630920032793595, 5.706736747270895, 5.454956358936638, + 5.212229899625915, 4.981685940117817, 4.7635825224702195, + 4.554431832723772, 4.347101633059023, 4.131602195279339, + 3.8970758929523894, 3.6340733023753953, 3.33732504587192, + 3.006707810861624, 2.6485573560232685, 2.274583529686713, + 1.9000398145482147, 1.54122934414045, 1.2130604343735325, + 0.9266467769093588, 0.6879810096198924, 0.498782066188822, + 0.3562249099803034, 0.25545301046571756, 0.1910420018569772, + 0.1577518073158051, 0.15182875281754835, 0.17011965140107999, + 0.2095639422802249, 0.26651333260194804, 0.3357326522959212, + 0.41069427820126164, 0.484088718923835, 0.5489773505798909, + 0.5998346577904314, 0.6338698529184126, 0.6510391807049386, + 0.6537135645813014, 0.6459617551878325, 0.6318580185227894, + 0.6144878694366713, 0.5951546179447996, 0.573247047562022, + 0.5468989407644802, 0.5140057407281463, 0.4733692416097358, + 0.42555242437434904, 0.3729513143503035, 0.3194732984885511, + 0.2694539335346417, 0.2265229853627724, 0.19255879265177986, + 0.16748658101412256, 0.1493531488043563, 0.13534392472797704, + 0.1230068974575134, 0.11121463296470353, 0.10073571470244441, + 0.09404005577725665, 0.09432422377398861, 0.10434572664754743, + 0.12504375761581935, 0.1550808276778159, 0.19116886247393486, + 0.22928579129648713, 0.2668571415098163, 0.30492595822669677, + 0.34978062309679586, 0.41362134546819995, 0.513250454016512, + 0.6680395578829058, 0.8961972968912624, 1.2102097187336547, + 1.6155960584881472 + ], + "pressure:branch65_seg0:J36": [ + 7125.482108724204, 8041.720142963373, 9069.494007098745, 10166.08755986, + 11281.95036531966, 12369.757594703067, 13390.606081197233, + 14318.734493662278, 15137.611644680146, 15843.818127760476, + 16441.174115493744, 16933.34992842862, 17327.096827319954, + 17625.18272718612, 17827.97166245165, 17936.96349802621, + 17951.537506470046, 17876.12089482774, 17718.544449770587, + 17488.175303751257, 17198.445018160248, 16861.690644499286, + 16488.918710497543, 16089.13684142162, 15668.376610604902, + 15231.572179731596, 14783.597067078423, 14330.49483813913, + 13879.951517455977, 13440.644511924607, 13019.97263485763, + 12621.997752641046, 12245.267482330033, 11880.91587533494, + 11514.221509367992, 11126.251352210933, 10698.247831785933, + 10214.766148871156, 9669.967252477803, 9067.67314866551, + 8422.396830441503, 7758.29871840335, 7103.735142781083, 6487.301664953211, + 5933.039839768368, 5458.520066306709, 5070.369504980978, + 4768.638455118604, 4546.864488792221, 4394.682727335642, + 4303.0976439222095, 4263.38673528961, 4269.398149475396, + 4316.320138478701, 4398.246909589657, 4508.197877213633, + 4636.060300047311, 4769.458714786308, 4895.338115099127, + 5002.238728906034, 5081.599178395713, 5130.182215866575, + 5150.200912655883, 5146.698582109783, 5127.543828379352, + 5099.787169128856, 5067.743515575594, 5032.478569968402, 4991.85759044498, + 4942.012087726475, 4879.526726191072, 4803.040077950796, + 4714.847653340285, 4620.3412821069605, 4527.012810383516, + 4442.433757530784, 4372.274953573091, 4318.515203283185, + 4279.666897021686, 4251.492460707967, 4228.692557455481, + 4207.536343673567, 4187.173094605895, 4170.156754937033, + 4161.732925126463, 4167.6055608097495, 4191.944782481301, + 4235.131195406203, 4293.060527729787, 4359.183550960002, + 4426.514213514423, 4492.033328371112, 4560.487992959553, + 4646.594637448847, 4775.458299004706, 4979.332225605743, + 5292.020218554244, 5744.85010029929, 6354.8727698363855, 7125.482108724204 + ], + "flow:J36:branch66_seg0": [ + 0.5377655124111046, 0.6997030934224263, 0.8838357954811988, + 1.0826983880890193, 1.2872889719909995, 1.4888046630969725, + 1.6797166734222302, 1.8545995368757449, 2.0099882055398006, + 2.144865422427427, 2.2594331167714636, 2.3545034144313637, + 2.431276922173543, 2.4903032466484962, 2.531896460771387, + 2.5561581017075583, 2.5630546244499035, 2.5532916769343172, + 2.5279530787997, 2.4888121369585754, 2.438188219577408, 2.378329910998428, + 2.311409934464289, 2.239142853406886, 2.162760060833055, + 2.083224577839057, 2.0014007942104413, 1.9183422180653158, + 1.8353924784479407, 1.7541120399271992, 1.6759317564002376, + 1.601802564886388, 1.531699377490453, 1.4643408623402365, + 1.3972884781457813, 1.327212347795932, 1.2505845152698634, + 1.1644075409585093, 1.0671570342010226, 0.958999240738367, + 0.8422145432822487, 0.7208020002300066, 0.5998085446967187, + 0.4845261400027421, 0.3797019562889593, 0.2887873641201002, + 0.2134957441777382, 0.15423145396498217, 0.10992541068079924, + 0.07891563048181842, 0.05945624259108516, 0.0498556723087728, + 0.048955158898197494, 0.05576751584263745, 0.06928782492987534, + 0.08831916679410129, 0.111110637701094, 0.13550159856825802, + 0.1591089674452587, 0.17971585821101768, 0.19559287982706905, + 0.20594144187033583, 0.21086355959849948, 0.21119927123588428, + 0.20832366051976653, 0.20354990012331525, 0.19782648886345724, + 0.19150683926046358, 0.18432390026290377, 0.17563150132104866, + 0.1647485131495672, 0.1513255244697136, 0.13561703911809275, + 0.11846404431953513, 0.10117993401457206, 0.08517596884931951, + 0.07159319210954655, 0.06096505066857755, 0.05319403106663075, + 0.04758606093002842, 0.04320015853923183, 0.0392673537995446, + 0.035479008880039395, 0.03215445153739872, 0.030152755316864573, + 0.030526022951207335, 0.03414139368138387, 0.04123082322960777, + 0.05126923431404242, 0.06313184516631035, 0.07550094568670827, + 0.08761072840915969, 0.09994745422092813, 0.11474680168070311, + 0.13617250167428321, 0.16981673153166685, 0.22200734219903387, + 0.29859117253744394, 0.40333390839383026, 0.5377655124111046 + ], + "pressure:J36:branch66_seg0": [ + 7125.482108724204, 8041.720142963373, 9069.494007098745, 10166.08755986, + 11281.95036531966, 12369.757594703067, 13390.606081197233, + 14318.734493662278, 15137.611644680146, 15843.818127760476, + 16441.174115493744, 16933.34992842862, 17327.096827319954, + 17625.18272718612, 17827.97166245165, 17936.96349802621, + 17951.537506470046, 17876.12089482774, 17718.544449770587, + 17488.175303751257, 17198.445018160248, 16861.690644499286, + 16488.918710497543, 16089.13684142162, 15668.376610604902, + 15231.572179731596, 14783.597067078423, 14330.49483813913, + 13879.951517455977, 13440.644511924607, 13019.97263485763, + 12621.997752641046, 12245.267482330033, 11880.91587533494, + 11514.221509367992, 11126.251352210933, 10698.247831785933, + 10214.766148871156, 9669.967252477803, 9067.67314866551, + 8422.396830441503, 7758.29871840335, 7103.735142781083, 6487.301664953211, + 5933.039839768368, 5458.520066306709, 5070.369504980978, + 4768.638455118604, 4546.864488792221, 4394.682727335642, + 4303.0976439222095, 4263.38673528961, 4269.398149475396, + 4316.320138478701, 4398.246909589657, 4508.197877213633, + 4636.060300047311, 4769.458714786308, 4895.338115099127, + 5002.238728906034, 5081.599178395713, 5130.182215866575, + 5150.200912655883, 5146.698582109783, 5127.543828379352, + 5099.787169128856, 5067.743515575594, 5032.478569968402, 4991.85759044498, + 4942.012087726475, 4879.526726191072, 4803.040077950796, + 4714.847653340285, 4620.3412821069605, 4527.012810383516, + 4442.433757530784, 4372.274953573091, 4318.515203283185, + 4279.666897021686, 4251.492460707967, 4228.692557455481, + 4207.536343673567, 4187.173094605895, 4170.156754937033, + 4161.732925126463, 4167.6055608097495, 4191.944782481301, + 4235.131195406203, 4293.060527729787, 4359.183550960002, + 4426.514213514423, 4492.033328371112, 4560.487992959553, + 4646.594637448847, 4775.458299004706, 4979.332225605743, + 5292.020218554244, 5744.85010029929, 6354.8727698363855, 7125.482108724204 + ], + "flow:J36:branch67_seg0": [ + 0.5495884307405191, 0.7168592451495417, 0.9082726097781536, + 1.1161595724251439, 1.3311860218365492, 1.5440414528582358, + 1.7466163462372362, 1.932892678066033, 2.099013012841245, + 2.2436300117739267, 2.366769728666746, 2.4692845933669347, + 2.5523915142484834, 2.616753141297967, 2.6627741331877917, + 2.690555509843694, 2.7001016115243064, 2.692060784099895, + 2.6674904263525523, 2.628195774457078, 2.576520010669668, + 2.514834274053293, 2.445443495437549, 2.3701942450399534, + 2.2904468198977326, 2.207243292138668, 2.121497658420046, + 2.03429135136984, 1.9469979959310593, 1.8612313267392062, + 1.7785217955422217, 1.6999456910533144, 1.6256053028987223, + 1.5543325436149535, 1.4837105121104863, 1.4103428001838516, + 1.3305243415684638, 1.241022523757404, 1.1400117146003694, + 1.0274204253122816, 0.9053807953498858, 0.7778591790765217, + 0.6500494123721142, 0.5275172209321821, 0.4153668184322176, + 0.3174125599432172, 0.2357361144087239, 0.17094353005096052, + 0.12208841502651337, 0.0875258421542479, 0.06539790869020824, + 0.05391598631973569, 0.05179221789771359, 0.05794602768519703, + 0.07133824045484871, 0.09072528668583793, 0.11432698122227859, + 0.13992002493507436, 0.16500871567484482, 0.18721788324693114, + 0.20465319306098279, 0.2163492790042175, 0.22227645184483477, + 0.22323994071776757, 0.2206239656063955, 0.21582267520625356, + 0.2098981720695066, 0.20330389445864191, 0.19583840710274536, + 0.18686760252519313, 0.1756700873929653, 0.1618304043033125, + 0.1455304833765711, 0.12758115013068336, 0.1093124728271995, + 0.09220614627945098, 0.07750761247553631, 0.06586901414180257, + 0.057273371723884636, 0.05105910160313412, 0.046267022833583346, + 0.04205392722441415, 0.03802637576028202, 0.03443835719809484, + 0.032127443628176384, 0.03218589017732249, 0.03556092830450398, + 0.04258343752688278, 0.052808788654506125, 0.06511839642506746, + 0.07813732574728764, 0.09097410517683772, 0.1039631629423247, + 0.11922593014913326, 0.1409029528333415, 0.17471591516729798, + 0.22727841626163378, 0.3048109195558304, 0.4116132145117981, + 0.5495884307405191 + ], + "pressure:J36:branch67_seg0": [ + 7125.482108724204, 8041.720142963373, 9069.494007098745, 10166.08755986, + 11281.95036531966, 12369.757594703067, 13390.606081197233, + 14318.734493662278, 15137.611644680146, 15843.818127760476, + 16441.174115493744, 16933.34992842862, 17327.096827319954, + 17625.18272718612, 17827.97166245165, 17936.96349802621, + 17951.537506470046, 17876.12089482774, 17718.544449770587, + 17488.175303751257, 17198.445018160248, 16861.690644499286, + 16488.918710497543, 16089.13684142162, 15668.376610604902, + 15231.572179731596, 14783.597067078423, 14330.49483813913, + 13879.951517455977, 13440.644511924607, 13019.97263485763, + 12621.997752641046, 12245.267482330033, 11880.91587533494, + 11514.221509367992, 11126.251352210933, 10698.247831785933, + 10214.766148871156, 9669.967252477803, 9067.67314866551, + 8422.396830441503, 7758.29871840335, 7103.735142781083, 6487.301664953211, + 5933.039839768368, 5458.520066306709, 5070.369504980978, + 4768.638455118604, 4546.864488792221, 4394.682727335642, + 4303.0976439222095, 4263.38673528961, 4269.398149475396, + 4316.320138478701, 4398.246909589657, 4508.197877213633, + 4636.060300047311, 4769.458714786308, 4895.338115099127, + 5002.238728906034, 5081.599178395713, 5130.182215866575, + 5150.200912655883, 5146.698582109783, 5127.543828379352, + 5099.787169128856, 5067.743515575594, 5032.478569968402, 4991.85759044498, + 4942.012087726475, 4879.526726191072, 4803.040077950796, + 4714.847653340285, 4620.3412821069605, 4527.012810383516, + 4442.433757530784, 4372.274953573091, 4318.515203283185, + 4279.666897021686, 4251.492460707967, 4228.692557455481, + 4207.536343673567, 4187.173094605895, 4170.156754937033, + 4161.732925126463, 4167.6055608097495, 4191.944782481301, + 4235.131195406203, 4293.060527729787, 4359.183550960002, + 4426.514213514423, 4492.033328371112, 4560.487992959553, + 4646.594637448847, 4775.458299004706, 4979.332225605743, + 5292.020218554244, 5744.85010029929, 6354.8727698363855, 7125.482108724204 + ], + "flow:J36:branch82_seg0": [ + 0.5282421153365235, 0.6902208491959525, 0.876467875461526, + 1.0796603200737653, 1.2907733424607803, 1.500653942804095, + 1.7012058687289089, 1.8862902608009031, 2.051910947969908, + 2.196503881397251, 2.3199319523808093, 2.42296846680348, + 2.506758402231096, 2.5719876068931335, 2.619082617683276, + 2.648147335886951, 2.6592000123373447, 2.6528232085616708, + 2.6300154620254528, 2.5925104136833683, 2.5425685149755397, + 2.4825345885518293, 2.41469869780645, 2.340921765340491, + 2.2625948438502443, 2.1807756898023496, 2.0963785206244507, + 2.010458433844205, 1.9243462728918967, 1.839612992270232, + 1.7577763476834556, 1.6799376841781135, 1.6062778420810422, + 1.5357584267685818, 1.4661026428027548, 1.3940470472995563, + 1.3159670361140616, 1.2286432376594822, 1.1301562970705274, + 1.0202881448109753, 0.9009620173911341, 0.7759223503801848, + 0.6501818574793821, 0.5291859832055257, 0.41799165965235535, + 0.3204468528460411, 0.23874915103343022, 0.1736070821728794, + 0.12421108427299081, 0.08901153782965127, 0.06618785057568384, + 0.05398014868729661, 0.051081376021637294, 0.05640610787324555, + 0.06893787689550089, 0.0874688791220088, 0.11029503337254871, + 0.13527265469792926, 0.15997103580373148, 0.18204360912194203, + 0.19958858490237963, 0.21157913204385934, 0.21789916926160444, + 0.2192743526276495, 0.21701412906167042, 0.2124854431932207, + 0.2067632085037076, 0.20034388422569405, 0.19308474019637276, + 0.1843998369182383, 0.17358714018561378, 0.1602133128367097, + 0.1444049018796852, 0.12690611990008496, 0.10898089164677947, + 0.09207181840587123, 0.07742218077768956, 0.0657247278413998, + 0.057019178223607137, 0.05070798627119375, 0.045876743355161835, + 0.04168561643355466, 0.037709248324382105, 0.03414290596695086, + 0.031759856832215716, 0.031612310645458795, 0.03464340466165955, + 0.04122949685932875, 0.05100280470926736, 0.06291862088255708, + 0.07564751986249119, 0.08827230792381893, 0.101015341063444, + 0.11580789126695945, 0.13654589096057532, 0.16871780731754712, + 0.21875379942223813, 0.2927952047979882, 0.395262595828026, + 0.5282421153365235 + ], + "pressure:J36:branch82_seg0": [ + 7125.482108724204, 8041.720142963373, 9069.494007098745, 10166.08755986, + 11281.95036531966, 12369.757594703067, 13390.606081197233, + 14318.734493662278, 15137.611644680146, 15843.818127760476, + 16441.174115493744, 16933.34992842862, 17327.096827319954, + 17625.18272718612, 17827.97166245165, 17936.96349802621, + 17951.537506470046, 17876.12089482774, 17718.544449770587, + 17488.175303751257, 17198.445018160248, 16861.690644499286, + 16488.918710497543, 16089.13684142162, 15668.376610604902, + 15231.572179731596, 14783.597067078423, 14330.49483813913, + 13879.951517455977, 13440.644511924607, 13019.97263485763, + 12621.997752641046, 12245.267482330033, 11880.91587533494, + 11514.221509367992, 11126.251352210933, 10698.247831785933, + 10214.766148871156, 9669.967252477803, 9067.67314866551, + 8422.396830441503, 7758.29871840335, 7103.735142781083, 6487.301664953211, + 5933.039839768368, 5458.520066306709, 5070.369504980978, + 4768.638455118604, 4546.864488792221, 4394.682727335642, + 4303.0976439222095, 4263.38673528961, 4269.398149475396, + 4316.320138478701, 4398.246909589657, 4508.197877213633, + 4636.060300047311, 4769.458714786308, 4895.338115099127, + 5002.238728906034, 5081.599178395713, 5130.182215866575, + 5150.200912655883, 5146.698582109783, 5127.543828379352, + 5099.787169128856, 5067.743515575594, 5032.478569968402, 4991.85759044498, + 4942.012087726475, 4879.526726191072, 4803.040077950796, + 4714.847653340285, 4620.3412821069605, 4527.012810383516, + 4442.433757530784, 4372.274953573091, 4318.515203283185, + 4279.666897021686, 4251.492460707967, 4228.692557455481, + 4207.536343673567, 4187.173094605895, 4170.156754937033, + 4161.732925126463, 4167.6055608097495, 4191.944782481301, + 4235.131195406203, 4293.060527729787, 4359.183550960002, + 4426.514213514423, 4492.033328371112, 4560.487992959553, + 4646.594637448847, 4775.458299004706, 4979.332225605743, + 5292.020218554244, 5744.85010029929, 6354.8727698363855, 7125.482108724204 + ], + "flow:branch70_seg0:J37": [ + 1.8186523680433213, 2.315533128601853, 2.841869204376648, + 3.3704191572327087, 3.873700589920196, 4.330245084483982, + 4.72658156653204, 5.0583331097879185, 5.3260606121934515, + 5.53659569660962, 5.697911809996416, 5.815000605305239, 5.892791652624604, + 5.931694065923405, 5.930748572190995, 5.890156048951498, + 5.8092535816868835, 5.692283293689016, 5.544821970856737, + 5.373471912899714, 5.186822797113993, 4.990798748265059, + 4.7900730059734276, 4.58726297817656, 4.383128805435501, + 4.178511865032751, 3.974888716253904, 3.7751944281207286, + 3.5836070594342866, 3.404537981701698, 3.2407111073021984, + 3.091863858921076, 2.9536416953790887, 2.81715558074242, + 2.6710851879970594, 2.503390048781576, 2.304638221397706, + 2.069857946558578, 1.801844345222202, 1.5094188808194808, + 1.207198553076896, 0.9131749331791958, 0.6444711116784857, + 0.4148764273965056, 0.23261380587372096, 0.10049420269552439, + 0.013813304049883941, -0.03356232206764463, -0.05045238823927468, + -0.045039318382028785, -0.022184626373750422, 0.014233085380617544, + 0.06291820219345387, 0.12287337583359184, 0.1916221528761594, + 0.26560589702866183, 0.3389865505838322, 0.40501237589502287, + 0.4574289940095658, 0.49197742519981325, 0.5070567516702482, + 0.5046676041857385, 0.489576311785659, 0.46713162733553576, + 0.44302931704237664, 0.42066366102291286, 0.4007806433716533, + 0.3817561161345033, 0.36036036433515756, 0.3333139304517703, + 0.2988073949128456, 0.2572033381388182, 0.21163499798070803, + 0.16663385424843966, 0.12720178811861563, 0.0971258061577795, + 0.07797786210459891, 0.06841908475131511, 0.065260594056328, + 0.06441687062240521, 0.062365152540094074, 0.05783212482789092, + 0.05201068764749174, 0.048240088838734194, 0.050811363842699124, + 0.06310276938696509, 0.0863222346656655, 0.11854695183919874, + 0.15517896928855107, 0.19107799340203582, 0.2223708365512564, + 0.24950016119261142, 0.27893708490362357, 0.3234013396961635, + 0.4009073970903455, 0.5310056947569521, 0.7308990919294698, + 1.013423291935406, 1.3784028581269474, 1.8186523680433213 + ], + "pressure:branch70_seg0:J37": [ + 9676.988592201795, 11120.703908986827, 12606.080134558593, + 14056.978437345275, 15405.81334703656, 16600.04292758797, + 17611.73937518501, 18442.742806850216, 19103.498604192126, + 19610.59126879061, 19995.722056143295, 20263.889514813985, + 20424.947270092816, 20481.2547907039, 20422.375929931055, + 20255.906751893646, 19979.01408358299, 19605.114473556696, + 19159.93826243876, 18656.553641948427, 18120.54537199585, + 17568.08002908713, 17006.159099315097, 16441.46747346587, + 15874.098905813276, 15306.207351733567, 14744.245336681724, + 14197.972073580526, 13680.169520160243, 13202.515700284946, + 12770.083848121089, 12375.727715975421, 12002.983404763416, + 11621.260992432013, 11196.12514970411, 10695.166492264889, + 10098.535916481074, 9398.171639893453, 8612.104303557699, + 7776.253366613042, 6933.83684238445, 6139.136697328664, 5437.67766638478, + 4861.606029721702, 4421.573481013716, 4123.054995756751, + 3943.2706342283273, 3858.665385421445, 3850.364280101537, + 3892.111188437034, 3976.0396858134745, 4095.917111177166, + 4246.104329917167, 4426.962617850046, 4628.362010546836, + 4837.189033188677, 5036.486436567545, 5205.932139497218, + 5329.5476157823205, 5399.398408531632, 5415.63347224513, 5386.39898461215, + 5330.560943085487, 5261.954565084528, 5194.642869915537, 5136.18225491233, + 5084.107559424542, 5030.821526818017, 4966.322944395127, + 4882.022230388081, 4776.132081968342, 4652.27829183669, 4522.55082543819, + 4401.6638370302935, 4302.462534505189, 4233.095587512337, + 4194.697350160824, 4180.252225906561, 4177.536060952186, 4176.25033734087, + 4167.849326751956, 4151.8858702553935, 4135.493853102323, + 4130.192063757796, 4148.215580105796, 4196.853915718514, + 4275.438287960692, 4375.4198783582, 4479.936930076172, 4575.548618735227, + 4655.338267642309, 4727.115000303946, 4817.65095688509, 4970.391643673526, + 5240.909790380821, 5685.896347705151, 6341.26108003972, 7240.109504113204, + 8366.667331424836, 9676.988592201795 + ], + "flow:J37:branch71_seg0": [ + 0.8631889735736948, 1.1038940626283194, 1.3614493371629153, + 1.6222908268648044, 1.8728640049027883, 2.102171305818654, + 2.3029390337442464, 2.472083156440914, 2.6096807457767723, + 2.7185399662655847, 2.8023050461674295, 2.8638859159818804, + 2.9056065688381802, 2.928029512053635, 2.930888267764583, + 2.9140721378467536, 2.877417232136494, 2.8226573494006657, + 2.7523133205148214, 2.6696727661617623, 2.5787748724023074, + 2.482712174336726, 2.3839642176443103, 2.283935408831502, + 2.183176740324946, 2.0821121960141165, 1.981413065644708, + 1.8824242951648604, 1.7871083630136015, 1.6976082126827767, + 1.615406451584086, 1.5406167203127563, 1.4713853855544463, + 1.4037299544675965, 1.3322542918245934, 1.2510772075923602, + 1.1553183684107746, 1.0422376840301844, 0.9125274035199425, + 0.7700531237480656, 0.6216050970442502, 0.47572265217096693, + 0.34092966736137315, 0.22431759087162015, 0.1303933870709133, + 0.06096477035204642, 0.01433269106263556, -0.0123451658213057, + -0.023310574897996098, -0.02252015706118326, -0.012705709901635786, + 0.004135425681536972, 0.02718620302634465, 0.05586307910270841, + 0.0891119896174503, 0.12522560312079883, 0.16149864130486857, + 0.19469435876870442, 0.22169152016968793, 0.24019499723661736, + 0.24924714009410637, 0.24954058667851883, 0.243141619943026, + 0.23269526171203753, 0.22096967856657254, 0.2097904863057888, + 0.1997676678747942, 0.19028743703627332, 0.1798860940198334, + 0.16696103626087178, 0.1505049163190157, 0.13052659954738396, + 0.10834922988102304, 0.08608507007954523, 0.0661719727190046, + 0.05056375825104286, 0.04020740601694865, 0.034685265536401465, + 0.03257869687436017, 0.03193344342207498, 0.030994051618321326, + 0.02894956808043993, 0.026182151855219767, 0.024171334462808475, + 0.02494443238029292, 0.030248410430627565, 0.04083247267270781, + 0.055997325237112525, 0.07372009462137467, 0.09149224973363132, + 0.10730809358333396, 0.12106308997478539, 0.13546613734733784, + 0.15628743357128191, 0.19199440750511831, 0.2520890259212231, + 0.34526787379584395, 0.4781918828955824, 0.6517915127602447, + 0.8631889735736948 + ], + "pressure:J37:branch71_seg0": [ + 9676.988592201795, 11120.703908986827, 12606.080134558593, + 14056.978437345275, 15405.81334703656, 16600.04292758797, + 17611.73937518501, 18442.742806850216, 19103.498604192126, + 19610.59126879061, 19995.722056143295, 20263.889514813985, + 20424.947270092816, 20481.2547907039, 20422.375929931055, + 20255.906751893646, 19979.01408358299, 19605.114473556696, + 19159.93826243876, 18656.553641948427, 18120.54537199585, + 17568.08002908713, 17006.159099315097, 16441.46747346587, + 15874.098905813276, 15306.207351733567, 14744.245336681724, + 14197.972073580526, 13680.169520160243, 13202.515700284946, + 12770.083848121089, 12375.727715975421, 12002.983404763416, + 11621.260992432013, 11196.12514970411, 10695.166492264889, + 10098.535916481074, 9398.171639893453, 8612.104303557699, + 7776.253366613042, 6933.83684238445, 6139.136697328664, 5437.67766638478, + 4861.606029721702, 4421.573481013716, 4123.054995756751, + 3943.2706342283273, 3858.665385421445, 3850.364280101537, + 3892.111188437034, 3976.0396858134745, 4095.917111177166, + 4246.104329917167, 4426.962617850046, 4628.362010546836, + 4837.189033188677, 5036.486436567545, 5205.932139497218, + 5329.5476157823205, 5399.398408531632, 5415.63347224513, 5386.39898461215, + 5330.560943085487, 5261.954565084528, 5194.642869915537, 5136.18225491233, + 5084.107559424542, 5030.821526818017, 4966.322944395127, + 4882.022230388081, 4776.132081968342, 4652.27829183669, 4522.55082543819, + 4401.6638370302935, 4302.462534505189, 4233.095587512337, + 4194.697350160824, 4180.252225906561, 4177.536060952186, 4176.25033734087, + 4167.849326751956, 4151.8858702553935, 4135.493853102323, + 4130.192063757796, 4148.215580105796, 4196.853915718514, + 4275.438287960692, 4375.4198783582, 4479.936930076172, 4575.548618735227, + 4655.338267642309, 4727.115000303946, 4817.65095688509, 4970.391643673526, + 5240.909790380821, 5685.896347705151, 6341.26108003972, 7240.109504113204, + 8366.667331424836, 9676.988592201795 + ], + "flow:J37:branch75_seg0": [ + 0.9554633944696267, 1.2116390659735334, 1.4804198672137325, + 1.7481283303679036, 2.000836585017408, 2.2280737786653284, + 2.4236425327877926, 2.5862499533470036, 2.71637986641668, + 2.8180557303440352, 2.8956067638289875, 2.9511146893233593, + 2.9871850837864233, 3.00366455386977, 2.999860304426413, + 2.9760839111047446, 2.931836349550391, 2.8696259442883516, + 2.792508650341916, 2.703799146737953, 2.6080479247116855, + 2.508086573928332, 2.406108788329117, 2.303327569345058, + 2.1999520651105535, 2.0963996690186333, 1.993475650609196, + 1.8927701329558684, 1.7964986964206862, 1.7069297690189214, + 1.6253046557181114, 1.5512471386083198, 1.4822563098246424, + 1.413425626274823, 1.3388308961724658, 1.2523128411892153, + 1.1493198529869313, 1.027620262528393, 0.8893169417022594, + 0.7393657570714152, 0.5855934560326459, 0.43745228100822897, + 0.3035414443171126, 0.19055883652488534, 0.1022204188028077, + 0.039529432343477965, -0.0005193870127516175, -0.021217156246338933, + -0.02714181334127857, -0.022519161320845537, -0.009478916472114638, + 0.01009765969908057, 0.03573199916710922, 0.06701029673088342, + 0.1025101632587092, 0.14038029390786286, 0.17748790927896363, + 0.21031801712631842, 0.2357374738398779, 0.2517824279631959, + 0.25780961157614174, 0.2551270175072197, 0.246434691842633, + 0.23443636562349826, 0.22205963847580412, 0.2108731747171241, + 0.20101297549685906, 0.19146867909822995, 0.18047427031532412, + 0.16635289419089855, 0.14830247859382983, 0.12667673859143422, + 0.10328576809968504, 0.08054878416889444, 0.06102981539961103, + 0.04656204790673664, 0.03777045608765027, 0.03373381921491365, + 0.03268189718196782, 0.03248342720033022, 0.03137110092177274, + 0.028882556747450994, 0.025828535792271977, 0.024068754375925726, + 0.025866931462406203, 0.03285435895633751, 0.04548976199295771, + 0.06254962660208621, 0.08145887466717643, 0.0995857436684045, + 0.11506274296792246, 0.12843707121782605, 0.14347094755628573, + 0.16711390612488158, 0.20891298958522725, 0.2789166688357289, + 0.3856312181336257, 0.5352314090398237, 0.7266113453667027, + 0.9554633944696267 + ], + "pressure:J37:branch75_seg0": [ + 9676.988592201795, 11120.703908986827, 12606.080134558593, + 14056.978437345275, 15405.81334703656, 16600.04292758797, + 17611.73937518501, 18442.742806850216, 19103.498604192126, + 19610.59126879061, 19995.722056143295, 20263.889514813985, + 20424.947270092816, 20481.2547907039, 20422.375929931055, + 20255.906751893646, 19979.01408358299, 19605.114473556696, + 19159.93826243876, 18656.553641948427, 18120.54537199585, + 17568.08002908713, 17006.159099315097, 16441.46747346587, + 15874.098905813276, 15306.207351733567, 14744.245336681724, + 14197.972073580526, 13680.169520160243, 13202.515700284946, + 12770.083848121089, 12375.727715975421, 12002.983404763416, + 11621.260992432013, 11196.12514970411, 10695.166492264889, + 10098.535916481074, 9398.171639893453, 8612.104303557699, + 7776.253366613042, 6933.83684238445, 6139.136697328664, 5437.67766638478, + 4861.606029721702, 4421.573481013716, 4123.054995756751, + 3943.2706342283273, 3858.665385421445, 3850.364280101537, + 3892.111188437034, 3976.0396858134745, 4095.917111177166, + 4246.104329917167, 4426.962617850046, 4628.362010546836, + 4837.189033188677, 5036.486436567545, 5205.932139497218, + 5329.5476157823205, 5399.398408531632, 5415.63347224513, 5386.39898461215, + 5330.560943085487, 5261.954565084528, 5194.642869915537, 5136.18225491233, + 5084.107559424542, 5030.821526818017, 4966.322944395127, + 4882.022230388081, 4776.132081968342, 4652.27829183669, 4522.55082543819, + 4401.6638370302935, 4302.462534505189, 4233.095587512337, + 4194.697350160824, 4180.252225906561, 4177.536060952186, 4176.25033734087, + 4167.849326751956, 4151.8858702553935, 4135.493853102323, + 4130.192063757796, 4148.215580105796, 4196.853915718514, + 4275.438287960692, 4375.4198783582, 4479.936930076172, 4575.548618735227, + 4655.338267642309, 4727.115000303946, 4817.65095688509, 4970.391643673526, + 5240.909790380821, 5685.896347705151, 6341.26108003972, 7240.109504113204, + 8366.667331424836, 9676.988592201795 + ], + "flow:branch72_seg0:J38": [ + 2.715009961186218, 3.477311173540112, 4.296646992248354, + 5.130771575242964, 5.936308492244737, 6.67736659559065, 7.32934746555766, + 7.881242279087834, 8.331188681315782, 8.687412455820105, + 8.961157290082854, 9.161099584661805, 9.29565314089873, 9.367006136752973, + 9.375048795421087, 9.320272672105506, 9.201951358789827, + 9.025800987608482, 8.79976938935775, 8.53379396553438, 8.240702815137622, + 7.930463339909763, 7.61106465789351, 7.287497405265367, 6.961825909533835, + 6.635649987144189, 6.311212903053393, 5.992654556816505, + 5.686013693595473, 5.397936817502059, 5.133104902438102, + 4.892029558915035, 4.669276628634272, 4.45258266352941, 4.225247413855371, + 3.968730987944185, 3.667454990065011, 3.3118358509105525, + 2.9035131684157824, 2.453552124273777, 1.9825986737793022, + 1.517296349644723, 1.0846113780242288, 0.7074825375188808, + 0.4010778352287825, 0.1723497374989197, 0.017090020310191897, + -0.0731094920900398, -0.11090157484534141, -0.10917609809815086, + -0.07680981239617589, -0.02069528367708807, 0.05581144666917214, + 0.15052892517565028, 0.25974665682548376, 0.3781000596145475, + 0.4970954442386821, 0.6065942405500513, 0.6966913885059408, + 0.7600755910384468, 0.7932064994946659, 0.7979580655777883, + 0.7805692151777583, 0.7489802997633933, 0.7120523464047539, + 0.6758094645426305, 0.6425521082425432, 0.6108479392771403, + 0.5764808710193474, 0.5346036027770429, 0.48204065190396295, + 0.4185956709793727, 0.3481135328160384, 0.2769998089154017, + 0.21275776180008696, 0.1616245506663166, 0.12682658603963892, + 0.10742647722238716, 0.09927668695751678, 0.09648473606683619, + 0.09350658682666722, 0.08760775652984285, 0.07967703712170059, + 0.07399908523758676, 0.07674448859096686, 0.09330026515338474, + 0.126274001486414, 0.17374211861387434, 0.22964650483184873, + 0.2864083947917626, 0.3376954287656508, 0.38288941857218883, + 0.43001812756957347, 0.496666152643506, 0.6090098324639629, + 0.7968717143688159, 1.087832535315226, 1.503653930855614, + 2.048849115170172, 2.715009961186218 + ], + "pressure:branch72_seg0:J38": [ + 9495.000005252161, 10926.720464747646, 12415.323297952984, + 13884.95650190561, 15264.969707571265, 16498.6219746295, + 17552.886364586888, 18425.575608992232, 19121.406136416485, + 19656.803272982856, 20062.68204220947, 20345.33984519364, + 20517.158193257226, 20581.684511071355, 20530.59925190325, + 20371.40008250814, 20101.264426380298, 19732.01036314436, + 19288.0380396008, 18782.81708823971, 18241.287349678874, + 17680.63556214055, 17109.306470976982, 16535.021795513447, + 15958.81829400183, 15382.941564364855, 14813.274619230117, + 14258.879413263794, 13731.895423074806, 13244.100468818357, + 12801.251597537695, 12398.139065168974, 12020.173255337102, + 11638.535172337246, 11219.86191129941, 10731.287429553473, + 10151.015287336013, 9467.76695988971, 8695.883031900235, + 7867.390697955668, 7023.429513844437, 6217.3795477262765, + 5495.805011121336, 4893.647260322396, 4425.931623629971, + 4100.457265945359, 3898.7930492394285, 3798.8549299303936, + 3781.4509317850334, 3819.9913596645943, 3904.4328973107326, + 4026.7303355158283, 4180.627843117022, 4365.383404226652, + 4571.254206585502, 4786.2170971405085, 4993.71894679725, + 5173.830029310106, 5310.012274020184, 5393.33202293847, 5421.888919533237, + 5402.500892086365, 5352.837248744159, 5286.428231805265, + 5217.933113545273, 5156.258513361585, 5100.633118329905, + 5044.901112894246, 4979.821596096037, 4896.753915779292, + 4792.914818981474, 4670.852463195781, 4541.212129078921, + 4417.949056619905, 4314.025187640063, 4238.442874260456, 4193.66552605805, + 4174.0357277438425, 4168.596247619543, 4167.023766538226, + 4160.210995798275, 4146.51302143548, 4131.6109097112785, + 4125.9370395809465, 4141.459436760988, 4185.974253560437, + 4260.346826742586, 4357.476199933393, 4461.725186069945, + 4559.8247131642875, 4643.751025399886, 4718.888412576481, + 4808.853448999965, 4954.175566714298, 5208.292290000039, + 5627.653259613852, 6251.5214089491, 7114.664124041301, 8208.312323050797, + 9495.000005252161 + ], + "flow:J38:branch73_seg0": [ + 1.5580057525925526, 2.0044048498808236, 2.4890225700703215, + 2.986783365127542, 3.4718164537113245, 3.922004312076494, + 4.321503874767007, 4.662168337899159, 4.942053371108228, + 5.165191273901888, 5.337647239891572, 5.465076059881705, + 5.552519727409799, 5.601760243812261, 5.613177248528926, + 5.586858684222408, 5.522516124502855, 5.423071395932524, + 5.292877874270757, 5.137795088288696, 4.965170480592952, + 4.781213578771871, 4.590965426493071, 4.397671493885377, 4.20288005922807, + 4.007612693391642, 3.8131478004384487, 3.6217857604865222, + 3.436953741925267, 3.2625559001870257, 3.101593654906536, + 2.9548025251527323, 2.819486780986742, 2.689041869337771, + 2.553911992770378, 2.403190526583654, 2.227255877528253, + 2.019799988191664, 1.7806948861170726, 1.5155261859651272, + 1.2357812509929447, 0.9567016229169367, 0.6943870245268627, + 0.46297853368753383, 0.2723172762734475, 0.12737212316923083, + 0.026819263400589755, -0.03394615232149755, -0.06210315973675079, + -0.06523133367796152, -0.04909861473036119, -0.01800947330967646, + 0.025677814954885848, 0.08047699253396773, 0.14437855690154955, + 0.21429685996852568, 0.2854381060276175, 0.35193886047208545, + 0.4078387309117627, 0.44849111476193115, 0.4713999123894589, + 0.4771974255034625, 0.4690799042791686, 0.4516675876668104, + 0.4301822153295489, 0.4084527672809998, 0.3882613025184092, + 0.3691241262870325, 0.34879781018847195, 0.3244610249827198, + 0.2940563098744486, 0.257172923233735, 0.2156981369760557, + 0.17320450542895496, 0.13407161164233053, 0.10214630878945118, + 0.07964773678158439, 0.06645239751915485, 0.06040111133026953, + 0.05813066395350244, 0.056328302870052235, 0.05306863296055194, + 0.048516103516360876, 0.04489547007033623, 0.045703763523446024, + 0.054233309456258316, 0.07232502409753407, 0.09924900962988745, + 0.131839317512099, 0.16570186197424777, 0.1969210149990148, + 0.22458491367178926, 0.2526246853156664, 0.290600538405674, + 0.3533025080688238, 0.45819397589572836, 0.6220003405702029, + 0.8582497947772677, 1.1715284748168457, 1.5580057525925526 + ], + "pressure:J38:branch73_seg0": [ + 9495.000005252161, 10926.720464747646, 12415.323297952984, + 13884.95650190561, 15264.969707571265, 16498.6219746295, + 17552.886364586888, 18425.575608992232, 19121.406136416485, + 19656.803272982856, 20062.68204220947, 20345.33984519364, + 20517.158193257226, 20581.684511071355, 20530.59925190325, + 20371.40008250814, 20101.264426380298, 19732.01036314436, + 19288.0380396008, 18782.81708823971, 18241.287349678874, + 17680.63556214055, 17109.306470976982, 16535.021795513447, + 15958.81829400183, 15382.941564364855, 14813.274619230117, + 14258.879413263794, 13731.895423074806, 13244.100468818357, + 12801.251597537695, 12398.139065168974, 12020.173255337102, + 11638.535172337246, 11219.86191129941, 10731.287429553473, + 10151.015287336013, 9467.76695988971, 8695.883031900235, + 7867.390697955668, 7023.429513844437, 6217.3795477262765, + 5495.805011121336, 4893.647260322396, 4425.931623629971, + 4100.457265945359, 3898.7930492394285, 3798.8549299303936, + 3781.4509317850334, 3819.9913596645943, 3904.4328973107326, + 4026.7303355158283, 4180.627843117022, 4365.383404226652, + 4571.254206585502, 4786.2170971405085, 4993.71894679725, + 5173.830029310106, 5310.012274020184, 5393.33202293847, 5421.888919533237, + 5402.500892086365, 5352.837248744159, 5286.428231805265, + 5217.933113545273, 5156.258513361585, 5100.633118329905, + 5044.901112894246, 4979.821596096037, 4896.753915779292, + 4792.914818981474, 4670.852463195781, 4541.212129078921, + 4417.949056619905, 4314.025187640063, 4238.442874260456, 4193.66552605805, + 4174.0357277438425, 4168.596247619543, 4167.023766538226, + 4160.210995798275, 4146.51302143548, 4131.6109097112785, + 4125.9370395809465, 4141.459436760988, 4185.974253560437, + 4260.346826742586, 4357.476199933393, 4461.725186069945, + 4559.8247131642875, 4643.751025399886, 4718.888412576481, + 4808.853448999965, 4954.175566714298, 5208.292290000039, + 5627.653259613852, 6251.5214089491, 7114.664124041301, 8208.312323050797, + 9495.000005252161 + ], + "flow:J38:branch78_seg0": [ + 1.1570042085936656, 1.4729063236592888, 1.807624422178032, + 2.1439882101154217, 2.4644920385334115, 2.755362283514158, + 3.0078435907906527, 3.2190739411886757, 3.3891353102075517, + 3.522221181918217, 3.6235100501912836, 3.696023524780098, + 3.743133413488929, 3.765245892940712, 3.761871546892163, + 3.7334139878830994, 3.6794352342869705, 3.602729591675958, + 3.506891515086994, 3.395998877245684, 3.2755323345446685, + 3.1492497611378907, 3.02009923140044, 2.889825911379992, + 2.7589458503057647, 2.6280372937525494, 2.4980651026149436, + 2.370868796329983, 2.249059951670206, 2.1353809173150338, + 2.0315112475315673, 1.9372270337623034, 1.8497898476475307, + 1.7635407941916392, 1.671335421084992, 1.5655404613605313, + 1.4401991125367577, 1.2920358627188886, 1.1228182822987107, + 0.9380259383086492, 0.7468174227863571, 0.5605947267277859, + 0.390224353497366, 0.24450400383134704, 0.12876055895533497, + 0.04497761432968886, -0.009729243090397861, -0.03916333976854223, + -0.04879841510859062, -0.04394476442018934, -0.027711197665814688, + -0.00268581036741161, 0.030133631714286305, 0.07005193264168258, + 0.1153680999239342, 0.1638031996460218, 0.2116573382110647, + 0.25465538007796584, 0.28885265759417816, 0.3115844762765156, + 0.3218065871052071, 0.3207606400743259, 0.3114893108985898, + 0.29731271209658294, 0.28187013107520503, 0.2673566972616307, + 0.2542908057241341, 0.24172381299010784, 0.22768306083087544, + 0.21014257779432297, 0.18798434202951433, 0.16142274774563778, + 0.13241539583998274, 0.10379530348644674, 0.07868615015775642, + 0.05947824187686542, 0.04717884925805453, 0.040974079703232316, + 0.03887557562724724, 0.03835407211333375, 0.037178283956614995, + 0.03453912356929089, 0.03116093360533971, 0.02910361516725053, + 0.03104072506752083, 0.03906695569712643, 0.05394897738887994, + 0.07449310898398688, 0.09780718731974972, 0.12070653281751476, + 0.14077441376663594, 0.15830450490039952, 0.17739344225390707, + 0.2060656142378319, 0.25570732439513905, 0.3386777384730875, + 0.46583219474502274, 0.6454041360783461, 0.8773206403533267, + 1.1570042085936656 + ], + "pressure:J38:branch78_seg0": [ + 9495.000005252161, 10926.720464747646, 12415.323297952984, + 13884.95650190561, 15264.969707571265, 16498.6219746295, + 17552.886364586888, 18425.575608992232, 19121.406136416485, + 19656.803272982856, 20062.68204220947, 20345.33984519364, + 20517.158193257226, 20581.684511071355, 20530.59925190325, + 20371.40008250814, 20101.264426380298, 19732.01036314436, + 19288.0380396008, 18782.81708823971, 18241.287349678874, + 17680.63556214055, 17109.306470976982, 16535.021795513447, + 15958.81829400183, 15382.941564364855, 14813.274619230117, + 14258.879413263794, 13731.895423074806, 13244.100468818357, + 12801.251597537695, 12398.139065168974, 12020.173255337102, + 11638.535172337246, 11219.86191129941, 10731.287429553473, + 10151.015287336013, 9467.76695988971, 8695.883031900235, + 7867.390697955668, 7023.429513844437, 6217.3795477262765, + 5495.805011121336, 4893.647260322396, 4425.931623629971, + 4100.457265945359, 3898.7930492394285, 3798.8549299303936, + 3781.4509317850334, 3819.9913596645943, 3904.4328973107326, + 4026.7303355158283, 4180.627843117022, 4365.383404226652, + 4571.254206585502, 4786.2170971405085, 4993.71894679725, + 5173.830029310106, 5310.012274020184, 5393.33202293847, 5421.888919533237, + 5402.500892086365, 5352.837248744159, 5286.428231805265, + 5217.933113545273, 5156.258513361585, 5100.633118329905, + 5044.901112894246, 4979.821596096037, 4896.753915779292, + 4792.914818981474, 4670.852463195781, 4541.212129078921, + 4417.949056619905, 4314.025187640063, 4238.442874260456, 4193.66552605805, + 4174.0357277438425, 4168.596247619543, 4167.023766538226, + 4160.210995798275, 4146.51302143548, 4131.6109097112785, + 4125.9370395809465, 4141.459436760988, 4185.974253560437, + 4260.346826742586, 4357.476199933393, 4461.725186069945, + 4559.8247131642875, 4643.751025399886, 4718.888412576481, + 4808.853448999965, 4954.175566714298, 5208.292290000039, + 5627.653259613852, 6251.5214089491, 7114.664124041301, 8208.312323050797, + 9495.000005252161 + ], + "flow:branch73_seg0:J39": [ + 1.5547081033350376, 2.0008849078509536, 2.485419884713848, + 2.983343900132279, 3.4686811848857375, 3.919255278570164, + 4.319181484267944, 4.660332691688047, 4.940578567522856, + 5.164065640252687, 5.3368400327357755, 5.464516635942851, + 5.552241756040433, 5.601738660547596, 5.613420192340011, + 5.587375748683044, 5.523274136325909, 5.424057361265357, + 5.294026084190103, 5.139048414488543, 4.966501886144524, + 4.7825747415517466, 4.5923390083878, 4.399053535319586, 4.204261501905944, + 4.008990034053855, 3.814500915196598, 3.623086656970493, + 3.4381709056070293, 3.263673465220408, 3.102598425366523, + 2.9557269297900364, 2.820389215120826, 2.6899866049632104, + 2.5549855682090845, 2.4044672990613427, 2.2287728480474955, + 2.021543360583182, 1.7826332994100103, 1.5175504203478705, + 1.2377733709651029, 0.9585558418379803, 0.6959928651571973, + 0.4642558732956167, 0.2732728734948709, 0.1280081950206987, + 0.027157041375208846, -0.03381450867753417, -0.06213544094375607, + -0.06539264029862603, -0.04934262009701713, -0.018352233923316752, + 0.025264919327140943, 0.08000986853723527, 0.14386099651370846, + 0.21378298452900113, 0.284968029620731, 0.35155377167415597, + 0.4075711627536639, 0.44836563911668437, 0.47139066609282737, + 0.4772832039062632, 0.46922854302987427, 0.45183047680964666, + 0.4303389933637826, 0.40859393226881324, 0.3883906938887816, + 0.3692642221377259, 0.348972217477235, 0.3246865486283777, + 0.29432922300900427, 0.2574777938317385, 0.21600953326893393, + 0.17348256660861008, 0.13428749571916723, 0.1022878926056433, + 0.0797232882124923, 0.06647228045342418, 0.06040348921927726, + 0.05814118181128361, 0.056353214659951814, 0.05310592564846016, + 0.04854599983439337, 0.044887780821297706, 0.04563479283846771, + 0.0540865974081264, 0.07211648455928912, 0.09900340297646483, + 0.13158996661453953, 0.1654832993705875, 0.19673696929917167, + 0.2244002617493052, 0.25236160242218364, 0.29014718784456317, + 0.3525248648870511, 0.45694498265923833, 0.6202297405259047, + 0.855919081754125, 1.1686109649007166, 1.5547081033350376 + ], + "pressure:branch73_seg0:J39": [ + 9267.0101199697, 10666.388459493592, 12134.10127134224, + 13595.519829607143, 14979.016882423333, 16225.817427173379, + 17300.15182069286, 18196.70015982184, 18915.470294453342, + 19473.33560788078, 19899.088420287182, 20199.65595242674, + 20388.858620318864, 20470.421746611817, 20437.40076295639, + 20296.894008244504, 20045.775372094235, 19694.367401521522, + 19265.948589010208, 18773.79494665264, 18242.1587822578, + 17688.67126086657, 17122.77444755942, 16552.76611902639, + 15980.368962144736, 15407.868468845942, 14840.679083982423, + 14287.338365077896, 13759.433735032306, 13268.835363300721, + 12821.759122802603, 12414.810232227615, 12034.919963861963, + 11655.190519342714, 11243.646611178525, 10767.638151240866, + 10204.296150764174, 9540.307839143376, 8787.051507611242, + 7973.262567051812, 7137.78324752843, 6332.530524945549, 5603.695039267785, + 4987.799704008373, 4502.446155206863, 4156.985589495549, + 3936.457747068587, 3820.3111992095414, 3789.3106384876432, + 3817.5712059706557, 3893.7050616122065, 4008.726811592604, + 4156.494644670926, 4335.2980430656635, 4536.216688671532, + 4748.237769023079, 4955.2160038997845, 5137.853718078611, + 5279.415645494569, 5370.254547411379, 5406.8814558709855, + 5395.093771463952, 5351.2874288470575, 5288.352223391477, + 5221.187022623659, 5159.376821480527, 5103.27313374373, 5047.789842518367, + 4984.304887666023, 4904.206759802864, 4804.0316839792295, + 4685.510444267012, 4558.07630312587, 4434.95717372766, 4329.06110378712, + 4249.86886568611, 4200.78755803108, 4177.18442621611, 4169.297538729453, + 4166.774788699801, 4160.361201061472, 4147.584285497593, + 4133.001397391302, 4126.1719871390105, 4138.715618561918, + 4178.731849253604, 4248.2100055752935, 4341.183548877953, + 4443.105793155053, 4541.091891354577, 4626.289016299044, + 4702.217636178664, 4789.739870476141, 4926.584355723915, + 5163.679095449443, 5556.494769495625, 6146.112073611463, 6967.89416995703, + 8018.725911289979, 9267.0101199697 + ], + "flow:J39:branch74_seg0": [ + 0.7127742126772879, 0.9178090938572527, 1.1409852025419907, + 1.3707205496301849, 1.5951372847103227, 1.8039631206079545, + 1.9897435811607547, 2.1484971027000963, 2.279256505781459, + 2.3837343364132164, 2.4646186299727444, 2.5245791701587765, + 2.5659158548693695, 2.5895233126113224, 2.595635958750164, + 2.5842850667422828, 2.555356473778764, 2.510145511341822, + 2.4506465737221235, 2.379520591998694, 2.3001123477357397, + 2.215332783612482, 2.1275190604623098, 2.0382117265205957, + 1.9481701151680475, 1.8578784380328623, 1.7679349509765956, + 1.67938374083018, 1.5937844120803273, 1.5129223516443417, + 1.4382044419738498, 1.3700032153704662, 1.30713488728325, + 1.24664666563313, 1.1841752740480265, 1.114722461147139, + 1.0338313686719764, 0.9385268623676304, 0.8286278178836376, + 0.7065975539061579, 0.5776217724489866, 0.4486353124906111, + 0.3270588448140021, 0.21946377061799802, 0.13043883952459873, + 0.0624169243624377, 0.014946706245490644, -0.014084156654944264, + -0.027871408338361978, -0.0299138210714279, -0.02292553345664629, + -0.00888710333716142, 0.01102464194896995, 0.0361076019949139, + 0.06545806893656199, 0.09763916620474941, 0.13047914395070695, + 0.16129906760576643, 0.1873452939711081, 0.20644768575998645, + 0.21741563267669206, 0.22048326951119268, 0.21705399846718143, + 0.20923865566110797, 0.1994260906247548, 0.1894046252083351, + 0.18004248151154287, 0.17116123688742993, 0.16176708046076074, + 0.1505757351565603, 0.13663423326412624, 0.1197181430387779, + 0.10064765358199607, 0.08104388742990397, 0.06290256159403713, + 0.04800374787503704, 0.037399932484904974, 0.031094169183414726, + 0.028120097175037585, 0.026959036939394672, 0.026096626242010965, + 0.02461007585331042, 0.022536805414040285, 0.020859924552195628, + 0.021162473185278613, 0.024961910450400727, 0.03313209146746623, + 0.045381990928262964, 0.060309247344719964, 0.07591251828764904, + 0.09038630484897985, 0.10326387940447222, 0.11626742279277259, + 0.1337014811211455, 0.16228116915579235, 0.21003162223521993, + 0.28462396636642656, 0.39237908310585795, 0.5356901435727173, + 0.7127742126772879 + ], + "pressure:J39:branch74_seg0": [ + 9267.0101199697, 10666.388459493592, 12134.10127134224, + 13595.519829607143, 14979.016882423333, 16225.817427173379, + 17300.15182069286, 18196.70015982184, 18915.470294453342, + 19473.33560788078, 19899.088420287182, 20199.65595242674, + 20388.858620318864, 20470.421746611817, 20437.40076295639, + 20296.894008244504, 20045.775372094235, 19694.367401521522, + 19265.948589010208, 18773.79494665264, 18242.1587822578, + 17688.67126086657, 17122.77444755942, 16552.76611902639, + 15980.368962144736, 15407.868468845942, 14840.679083982423, + 14287.338365077896, 13759.433735032306, 13268.835363300721, + 12821.759122802603, 12414.810232227615, 12034.919963861963, + 11655.190519342714, 11243.646611178525, 10767.638151240866, + 10204.296150764174, 9540.307839143376, 8787.051507611242, + 7973.262567051812, 7137.78324752843, 6332.530524945549, 5603.695039267785, + 4987.799704008373, 4502.446155206863, 4156.985589495549, + 3936.457747068587, 3820.3111992095414, 3789.3106384876432, + 3817.5712059706557, 3893.7050616122065, 4008.726811592604, + 4156.494644670926, 4335.2980430656635, 4536.216688671532, + 4748.237769023079, 4955.2160038997845, 5137.853718078611, + 5279.415645494569, 5370.254547411379, 5406.8814558709855, + 5395.093771463952, 5351.2874288470575, 5288.352223391477, + 5221.187022623659, 5159.376821480527, 5103.27313374373, 5047.789842518367, + 4984.304887666023, 4904.206759802864, 4804.0316839792295, + 4685.510444267012, 4558.07630312587, 4434.95717372766, 4329.06110378712, + 4249.86886568611, 4200.78755803108, 4177.18442621611, 4169.297538729453, + 4166.774788699801, 4160.361201061472, 4147.584285497593, + 4133.001397391302, 4126.1719871390105, 4138.715618561918, + 4178.731849253604, 4248.2100055752935, 4341.183548877953, + 4443.105793155053, 4541.091891354577, 4626.289016299044, + 4702.217636178664, 4789.739870476141, 4926.584355723915, + 5163.679095449443, 5556.494769495625, 6146.112073611463, 6967.89416995703, + 8018.725911289979, 9267.0101199697 + ], + "flow:J39:branch90_seg0": [ + 0.8419338906577497, 1.0830758139937011, 1.3444346821718567, + 1.6126233505020942, 1.8735439001754155, 2.1152921579622093, + 2.3294379031071886, 2.51183558898795, 2.661322061741397, + 2.780331303839471, 2.8722214027630306, 2.939937465784075, + 2.9863259011710643, 3.0122153479362748, 3.017784233589845, + 3.003090681940762, 2.967917662547144, 2.913911849923536, + 2.8433795104679773, 2.7595278224898494, 2.666389538408784, + 2.567241957939263, 2.4648199479254895, 2.3608418087989915, + 2.2560913867378964, 2.151111596020992, 2.046565964220003, + 1.9437029161403128, 1.8443864935267016, 1.750751113576067, + 1.6643939833926733, 1.5857237144195706, 1.5132543278375759, + 1.443339939330081, 1.3708102941610576, 1.289744837914203, + 1.1949414793755186, 1.0830164982155512, 0.9540054815263729, + 0.8109528664417127, 0.6601515985161162, 0.5099205293473692, + 0.3689340203431953, 0.2447921026776188, 0.14283403397027208, + 0.06559127065826104, 0.012210335129718206, -0.0197303520225899, + -0.034264032605394096, -0.03547881922719814, -0.026417086640370825, + -0.009465130586155333, 0.01424027737817099, 0.04390226654232135, + 0.07840292757714647, 0.11614381832425165, 0.15448888567002403, + 0.19025470406838946, 0.2202258687825557, 0.2419179533566979, + 0.25397503341613537, 0.25679993439507054, 0.2521745445626929, + 0.2425918211485388, 0.2309129027390278, 0.21918930706047818, + 0.2083482123772387, 0.198102985250296, 0.18720513701647426, + 0.1741108134718173, 0.15769498974487806, 0.1377596507929606, + 0.11536187968693788, 0.09243867917870612, 0.07138493412513006, + 0.05428414473060627, 0.04232335572758733, 0.03537811127000946, + 0.03228339204423967, 0.03118214487188895, 0.030256588417940853, + 0.028495849795149734, 0.026009194420353095, 0.024027856269102088, + 0.0244723196531891, 0.029124686957725663, 0.03898439309182291, + 0.05362141204820186, 0.0712807192698196, 0.08957078108293842, + 0.1063506644501918, 0.121136382344833, 0.13609417962941103, + 0.15644570672341768, 0.19024369573125866, 0.2469133604240184, + 0.33560577415947823, 0.4635399986482671, 0.6329208213279993, + 0.8419338906577497 + ], + "pressure:J39:branch90_seg0": [ + 9267.0101199697, 10666.388459493592, 12134.10127134224, + 13595.519829607143, 14979.016882423333, 16225.817427173379, + 17300.15182069286, 18196.70015982184, 18915.470294453342, + 19473.33560788078, 19899.088420287182, 20199.65595242674, + 20388.858620318864, 20470.421746611817, 20437.40076295639, + 20296.894008244504, 20045.775372094235, 19694.367401521522, + 19265.948589010208, 18773.79494665264, 18242.1587822578, + 17688.67126086657, 17122.77444755942, 16552.76611902639, + 15980.368962144736, 15407.868468845942, 14840.679083982423, + 14287.338365077896, 13759.433735032306, 13268.835363300721, + 12821.759122802603, 12414.810232227615, 12034.919963861963, + 11655.190519342714, 11243.646611178525, 10767.638151240866, + 10204.296150764174, 9540.307839143376, 8787.051507611242, + 7973.262567051812, 7137.78324752843, 6332.530524945549, 5603.695039267785, + 4987.799704008373, 4502.446155206863, 4156.985589495549, + 3936.457747068587, 3820.3111992095414, 3789.3106384876432, + 3817.5712059706557, 3893.7050616122065, 4008.726811592604, + 4156.494644670926, 4335.2980430656635, 4536.216688671532, + 4748.237769023079, 4955.2160038997845, 5137.853718078611, + 5279.415645494569, 5370.254547411379, 5406.8814558709855, + 5395.093771463952, 5351.2874288470575, 5288.352223391477, + 5221.187022623659, 5159.376821480527, 5103.27313374373, 5047.789842518367, + 4984.304887666023, 4904.206759802864, 4804.0316839792295, + 4685.510444267012, 4558.07630312587, 4434.95717372766, 4329.06110378712, + 4249.86886568611, 4200.78755803108, 4177.18442621611, 4169.297538729453, + 4166.774788699801, 4160.361201061472, 4147.584285497593, + 4133.001397391302, 4126.1719871390105, 4138.715618561918, + 4178.731849253604, 4248.2100055752935, 4341.183548877953, + 4443.105793155053, 4541.091891354577, 4626.289016299044, + 4702.217636178664, 4789.739870476141, 4926.584355723915, + 5163.679095449443, 5556.494769495625, 6146.112073611463, 6967.89416995703, + 8018.725911289979, 9267.0101199697 + ], + "flow:branch76_seg0:J40": [ + 3.094826196025214, 3.9924153534040276, 4.972501135706047, + 5.985608500443213, 6.978534708847373, 7.905404301574382, 8.73275373118044, + 9.442851604014155, 10.029389521551012, 10.499834350837483, + 10.865935538722182, 11.138706371348762, 11.32914210185143, + 11.441180272298944, 11.476220343165028, 11.434785310493623, + 11.316274206593675, 11.126289825213762, 10.872753108612319, + 10.567196061773744, 10.224207817636822, 9.856031832601483, + 9.473256520635886, 9.082805212977831, 8.688180064154428, + 8.291769914206967, 7.896125268497491, 7.505765106490777, + 7.127427455405456, 6.768997451509885, 6.436694900590078, + 6.132729840492718, 5.852546020885365, 5.583634368568656, + 5.307573231360463, 5.002588057288082, 4.648777047529423, + 4.232364920542242, 3.7515469448038217, 3.2156520712320087, + 2.6463673122017153, 2.0736126165607573, 1.529673180139631, + 1.0438853701335142, 0.6381391187151386, 0.32395217815732547, + 0.10043313005574857, -0.039728090805127916, -0.11077498097536982, + -0.1277196375705933, -0.10249043328402285, -0.044814029819200955, + 0.040348980970843905, 0.14941524187535418, 0.2779941795086185, + 0.42020147261382995, 0.5663827965492473, 0.7047436308843653, + 0.8231135809784528, 0.9116641256967611, 0.9645419119852074, + 0.9822713811560358, 0.9706472134185811, 0.9385129362990797, + 0.8964491766361722, 0.8525152728615235, 0.8108777651044689, + 0.7712403963803277, 0.7295452424089381, 0.6802855077089415, + 0.6190811486424805, 0.544741873568849, 0.46059214742480825, + 0.3733509736328825, 0.29177512985268944, 0.2238532773718653, + 0.1745658898725095, 0.14417801574196687, 0.1290372080024677, + 0.12259354058663495, 0.1180518539203015, 0.11125471522270423, + 0.10197475769434158, 0.09418704913933602, 0.09467618084110062, + 0.11013570290399204, 0.14472606704561333, 0.19756158421090192, + 0.2628047205673404, 0.3318883322533374, 0.39667107488828257, + 0.4545517535759403, 0.5123469246053718, 0.5881318672647003, + 0.7108153315817771, 0.9151124405173382, 1.2359474073854508, + 1.7015770539456831, 2.3225270251804826, 3.094826196025214 + ], + "pressure:branch76_seg0:J40": [ + 8777.685456243633, 10094.966168954994, 11500.86941193329, + 12924.14205615138, 14292.466309732015, 15545.557742374542, + 16643.32274645592, 17571.315337105832, 18326.40846588523, + 18922.19218492447, 19381.072585211507, 19714.455499647127, + 19936.58891153843, 20051.906640281322, 20058.116521557615, + 19958.796427624275, 19752.111479167957, 19447.513209556782, + 19061.327628174116, 18608.238208210936, 18110.328704941378, + 17584.335911220413, 17042.204819436516, 16492.649180452987, + 15938.804401612853, 15383.497767632003, 14831.162138166395, + 14289.168064488926, 13767.968085845412, 13278.845980248712, + 12829.175257334326, 12418.68140114451, 12037.667720073972, + 11664.087592894763, 11269.291304755243, 10822.098582715169, + 10297.362675897226, 9679.205830892428, 8972.142292239163, + 8196.806707834612, 7387.731378892297, 6591.293936881101, + 5852.857719019539, 5210.743741128375, 4689.055184102815, + 4300.419256804151, 4036.403180320611, 3882.1169080143904, + 3817.954180367878, 3820.6307346635326, 3876.432753521023, + 3974.012920189776, 4106.932180172346, 4271.981110988426, 4461.50613943992, + 4665.866669306371, 4870.31253087153, 5057.001775973817, 5209.214749404553, + 5315.327255415026, 5369.729473765917, 5375.787037300261, + 5345.5656591752695, 5291.806611666532, 5229.241218973475, + 5168.081726937242, 5111.356661047105, 5056.264601540811, + 4995.650480326853, 4921.431195708237, 4828.876464221457, + 4718.069604239662, 4596.148892230631, 4474.33986874202, 4365.155812449582, + 4278.835729290782, 4220.459407725811, 4187.839402705681, + 4173.501099364939, 4167.791636610408, 4161.374351288307, 4150.2037610976, + 4136.463372729941, 4127.720718554119, 4134.48717023882, 4165.432974361607, + 4224.344358687208, 4307.516698422708, 4403.686390255212, + 4500.393757405512, 4587.638655705187, 4665.51698133349, 4749.33085325385, + 4870.5646643530345, 5074.810785892486, 5413.602003780671, + 5931.555878017703, 6665.814108402497, 7620.761927218373, 8777.685456243633 + ], + "flow:J40:branch77_seg0": [ + 0.9711371444763853, 1.2524386036993138, 1.5592250134001084, + 1.8759109739242017, 2.185815466694685, 2.4746361374672383, + 2.732007937204389, 2.9525041422824203, 3.1342995579207793, + 3.2798712029579766, 3.3929430300719, 3.477024001918533, 3.535542418042076, + 3.569683588176325, 3.5798664979497343, 3.56619926271826, + 3.528494640996232, 3.4685217124760923, 3.3887586001432117, + 3.2928649778325436, 3.1854132339131813, 3.070230438665665, + 2.9506213014730958, 2.828711040199047, 2.7055625506349905, + 2.581894629224696, 2.458488130625554, 2.336759559576006, + 2.2188283549246646, 2.107172679085995, 2.003737806030915, + 1.9092004864017587, 1.8220900608004633, 1.7384443054433127, + 1.6524469532336696, 1.5572498101641277, 1.4466182412229442, + 1.3162851543322074, 1.1657539204603802, 0.9980298536775447, + 0.8200080055223975, 0.6411159613076732, 0.4714951715121882, + 0.3203137983568787, 0.19437537094359095, 0.097176885584523, + 0.028348372788976933, -0.01448325708308092, -0.03586042784046302, + -0.04048821873068107, -0.032104999005204936, -0.01372518931661883, + 0.013149808838240436, 0.04742148691543817, 0.08774299848800875, + 0.13227304351053198, 0.17797444520900008, 0.22114509663359969, + 0.25796935746938726, 0.28537988417913857, 0.3015751457229147, + 0.3067685574643474, 0.3028111158496604, 0.2925173004630184, + 0.27921811550391085, 0.2654274465917448, 0.2524274890495832, + 0.240087149134278, 0.22709766975286358, 0.21171082285848675, + 0.19254765365198445, 0.16925230858257656, 0.14289250910438808, + 0.11560180880469118, 0.0901458995069846, 0.06902984814747558, + 0.05379642781998394, 0.04449719383940975, 0.0399543421178135, + 0.038082023865588406, 0.03674177471263207, 0.03463827802015523, + 0.03172416989645854, 0.02927826884507295, 0.029454161017450475, + 0.034361977242468256, 0.045297104041701675, 0.061951331732215294, + 0.08246367896095744, 0.10411441517489563, 0.12434031969102095, + 0.1423440450678894, 0.16030653115281396, 0.18395539963968235, + 0.22241372617671637, 0.2865954001174651, 0.387463504368432, + 0.5337984852062866, 0.7288074446731454, 0.9711371444763853 + ], + "pressure:J40:branch77_seg0": [ + 8777.685456243633, 10094.966168954994, 11500.86941193329, + 12924.14205615138, 14292.466309732015, 15545.557742374542, + 16643.32274645592, 17571.315337105832, 18326.40846588523, + 18922.19218492447, 19381.072585211507, 19714.455499647127, + 19936.58891153843, 20051.906640281322, 20058.116521557615, + 19958.796427624275, 19752.111479167957, 19447.513209556782, + 19061.327628174116, 18608.238208210936, 18110.328704941378, + 17584.335911220413, 17042.204819436516, 16492.649180452987, + 15938.804401612853, 15383.497767632003, 14831.162138166395, + 14289.168064488926, 13767.968085845412, 13278.845980248712, + 12829.175257334326, 12418.68140114451, 12037.667720073972, + 11664.087592894763, 11269.291304755243, 10822.098582715169, + 10297.362675897226, 9679.205830892428, 8972.142292239163, + 8196.806707834612, 7387.731378892297, 6591.293936881101, + 5852.857719019539, 5210.743741128375, 4689.055184102815, + 4300.419256804151, 4036.403180320611, 3882.1169080143904, + 3817.954180367878, 3820.6307346635326, 3876.432753521023, + 3974.012920189776, 4106.932180172346, 4271.981110988426, 4461.50613943992, + 4665.866669306371, 4870.31253087153, 5057.001775973817, 5209.214749404553, + 5315.327255415026, 5369.729473765917, 5375.787037300261, + 5345.5656591752695, 5291.806611666532, 5229.241218973475, + 5168.081726937242, 5111.356661047105, 5056.264601540811, + 4995.650480326853, 4921.431195708237, 4828.876464221457, + 4718.069604239662, 4596.148892230631, 4474.33986874202, 4365.155812449582, + 4278.835729290782, 4220.459407725811, 4187.839402705681, + 4173.501099364939, 4167.791636610408, 4161.374351288307, 4150.2037610976, + 4136.463372729941, 4127.720718554119, 4134.48717023882, 4165.432974361607, + 4224.344358687208, 4307.516698422708, 4403.686390255212, + 4500.393757405512, 4587.638655705187, 4665.51698133349, 4749.33085325385, + 4870.5646643530345, 5074.810785892486, 5413.602003780671, + 5931.555878017703, 6665.814108402497, 7620.761927218373, 8777.685456243633 + ], + "flow:J40:branch92_seg0": [ + 2.1236890515488294, 2.739976749704714, 3.413276122305937, + 4.109697526519012, 4.792719242152688, 5.430768164107144, + 6.0007457939760505, 6.490347461731737, 6.895089963630234, + 7.219963147879509, 7.472992508650279, 7.661682369430229, + 7.793599683809352, 7.871496684122618, 7.8963538452152955, + 7.868586047775362, 7.787779565597443, 7.657768112737673, + 7.483994508469108, 7.274331083941199, 7.038794583723639, + 6.785801393935818, 6.522635219162791, 6.254094172778784, + 5.982617513519438, 5.709875284982269, 5.4376371378719375, + 5.1690055469147715, 4.908599100480792, 4.661824772423892, + 4.432957094559162, 4.223529354090958, 4.030455960084901, + 3.845190063125343, 3.6551262781267932, 3.4453382471239524, + 3.2021588063064783, 2.916079766210034, 2.5857930243434413, + 2.217622217554464, 1.826359306679318, 1.432496655253084, + 1.0581780086274428, 0.7235715717766358, 0.4437637477715477, + 0.22677529257280243, 0.07208475726677165, -0.02524483372204699, + -0.0749145531349068, -0.08723141883991221, -0.07038543427881791, + -0.031088840502582114, 0.027199172132603464, 0.10199375495991603, + 0.19025118102060973, 0.2879284291032981, 0.38840835134024726, + 0.4835985342507656, 0.5651442235090655, 0.6262842415176225, + 0.6629667662622929, 0.6755028236916883, 0.6678360975689206, + 0.6459956358360616, 0.6172310611322614, 0.5870878262697788, + 0.5584502760548856, 0.5311532472460496, 0.5024475726560749, + 0.46857468485045484, 0.426533494990496, 0.37548956498627245, + 0.31769963832042003, 0.25774916482819127, 0.20162923034570487, + 0.1548234292243897, 0.12076946205252556, 0.09968082190255712, + 0.0890828658846542, 0.08451151672104656, 0.08131007920766943, + 0.07661643720254901, 0.07025058779788303, 0.06490878029426309, + 0.06522201982365015, 0.07577372566152378, 0.09942896300391167, + 0.13561025247868666, 0.18034104160638295, 0.22777391707844183, + 0.2723307551972617, 0.3122077085080509, 0.3520403934525579, + 0.4041764676250182, 0.48840160540506083, 0.6285170403998732, + 0.8484839030170189, 1.167778568739397, 1.593719580507337, + 2.1236890515488294 + ], + "pressure:J40:branch92_seg0": [ + 8777.685456243633, 10094.966168954994, 11500.86941193329, + 12924.14205615138, 14292.466309732015, 15545.557742374542, + 16643.32274645592, 17571.315337105832, 18326.40846588523, + 18922.19218492447, 19381.072585211507, 19714.455499647127, + 19936.58891153843, 20051.906640281322, 20058.116521557615, + 19958.796427624275, 19752.111479167957, 19447.513209556782, + 19061.327628174116, 18608.238208210936, 18110.328704941378, + 17584.335911220413, 17042.204819436516, 16492.649180452987, + 15938.804401612853, 15383.497767632003, 14831.162138166395, + 14289.168064488926, 13767.968085845412, 13278.845980248712, + 12829.175257334326, 12418.68140114451, 12037.667720073972, + 11664.087592894763, 11269.291304755243, 10822.098582715169, + 10297.362675897226, 9679.205830892428, 8972.142292239163, + 8196.806707834612, 7387.731378892297, 6591.293936881101, + 5852.857719019539, 5210.743741128375, 4689.055184102815, + 4300.419256804151, 4036.403180320611, 3882.1169080143904, + 3817.954180367878, 3820.6307346635326, 3876.432753521023, + 3974.012920189776, 4106.932180172346, 4271.981110988426, 4461.50613943992, + 4665.866669306371, 4870.31253087153, 5057.001775973817, 5209.214749404553, + 5315.327255415026, 5369.729473765917, 5375.787037300261, + 5345.5656591752695, 5291.806611666532, 5229.241218973475, + 5168.081726937242, 5111.356661047105, 5056.264601540811, + 4995.650480326853, 4921.431195708237, 4828.876464221457, + 4718.069604239662, 4596.148892230631, 4474.33986874202, 4365.155812449582, + 4278.835729290782, 4220.459407725811, 4187.839402705681, + 4173.501099364939, 4167.791636610408, 4161.374351288307, 4150.2037610976, + 4136.463372729941, 4127.720718554119, 4134.48717023882, 4165.432974361607, + 4224.344358687208, 4307.516698422708, 4403.686390255212, + 4500.393757405512, 4587.638655705187, 4665.51698133349, 4749.33085325385, + 4870.5646643530345, 5074.810785892486, 5413.602003780671, + 5931.555878017703, 6665.814108402497, 7620.761927218373, 8777.685456243633 + ], + "flow:branch85_seg0:J41": [ + 2.1574998907153566, 2.819377756866547, 3.5746183619046885, + 4.391962437378909, 5.233306279502737, 6.060562948390898, + 6.840511188309062, 7.548634901131185, 8.169241985325243, + 8.697387819353388, 9.134283171173838, 9.484549161902185, + 9.754731179917579, 9.948972230076926, 10.0700830895874, + 10.119595525248835, 10.098153293556663, 10.009046599644092, + 9.85724704174075, 9.650587016093935, 9.3993341822594, 9.113732224557236, + 8.803612940820678, 8.476810879769763, 8.138875582005435, + 7.793866310926561, 7.44515466941191, 7.096680298940448, + 6.7535280469845524, 6.421732748284332, 6.106922142330159, + 5.812783901475206, 5.538969056176547, 5.279819578258305, + 5.0246224766124135, 4.758769173101089, 4.466671760791215, + 4.134967359287067, 3.756591604140526, 3.332034596975889, + 2.8710325049317045, 2.3909991164297195, 1.9140671237119196, + 1.4634375924642395, 1.0597378963538666, 0.7178205802650286, + 0.44473449829994277, 0.2412956760291481, 0.10194089678198821, + 0.01820107382101394, -0.018831643005877217, -0.01757470038969627, + 0.015929883107687295, 0.07687120203306705, 0.16079632610542935, + 0.2627392159633035, 0.37574718799145723, 0.49123162688757055, + 0.5996644844454125, 0.69214063957941, 0.7617552751701318, + 0.8054365827918225, 0.8239760200278451, 0.821401992450496, + 0.8040787963498335, 0.7782596787162906, 0.748660775991418, + 0.717396281658562, 0.6837915170368881, 0.6453232646151406, + 0.59908683247449, 0.5433820833480383, 0.47895930718353863, + 0.4090947477425829, 0.33913046156521504, 0.2749700406461479, + 0.22149103742594956, 0.1810820062511268, 0.15338788097526335, + 0.13546091943311017, 0.12315424449663881, 0.11287681666979008, + 0.10292083867419022, 0.09424049033435675, 0.09017650329036943, + 0.0950757644261836, 0.11267730704456261, 0.14420113461214998, + 0.18769512939624622, 0.23857599403725205, 0.29126603581186944, + 0.3422449831134561, 0.3930348113737834, 0.45240021867403046, + 0.5372074710271659, 0.6705501354732775, 0.8787697092015861, + 1.1865930956837367, 1.6105348936015904, 2.1574998907153566 + ], + "pressure:branch85_seg0:J41": [ + 8188.052125468802, 9370.079543433796, 10656.329194440817, + 11987.25985840947, 13298.736724553393, 14533.141118696152, + 15647.804858282969, 16621.611595667455, 17442.443285465488, + 18114.757907550887, 18653.618473322145, 19065.92848377152, + 19363.46787905964, 19551.1405347709, 19627.788116146865, + 19597.871854580546, 19460.44099925221, 19223.05789414567, + 18900.370010418814, 18505.073448551862, 18056.762930439425, + 17571.5862560026, 17061.77941063496, 16537.269814440773, + 16003.083814478445, 15463.446503852258, 14923.460635680982, + 14390.248653088975, 13873.30446929503, 13383.010545751298, + 12926.686932257342, 12505.60480824133, 12113.25043709369, + 11732.262921732043, 11339.041128314595, 10906.614745328676, + 10411.870865136652, 9838.153038740862, 9185.474990714425, + 8467.945818958844, 7711.860516618378, 6955.624772286247, + 6238.529635571266, 5595.952316722251, 5052.539083106693, + 4623.989405169837, 4308.333780025882, 4096.703060848993, + 3975.146538117691, 3924.74305242893, 3933.266625277163, + 3989.6656470854778, 4086.6086472012958, 4219.591544245287, + 4380.7821699940605, 4561.236567172598, 4747.803138950241, + 4924.537831126167, 5076.062981092149, 5190.8606360361855, + 5261.913629694914, 5289.6570336459345, 5282.607624284445, + 5250.146633461937, 5204.3622684145785, 5154.691923545416, + 5104.95182099968, 5054.311028727076, 4998.061727690201, + 4930.0869510962075, 4846.411586314095, 4746.564665682942, + 4635.705212684122, 4522.671243916129, 4417.854299421982, + 4330.401878032698, 4265.732077439115, 4223.395698251593, + 4198.464189450825, 4183.646410176664, 4171.1979723444065, + 4157.187799112949, 4142.482259903698, 4132.42679996601, 4135.226643941595, + 4158.163303599007, 4205.111876860184, 4274.141803927349, + 4356.743187584598, 4443.113250509234, 4524.644922317133, + 4600.247391149343, 4681.094243266613, 4792.0764340570995, + 4970.736639449702, 5261.43915451815, 5704.63062876594, 6336.319719369049, + 7167.080559131629, 8188.052125468802 + ], + "flow:J41:branch86_seg0": [ + 1.4627437121661797, 1.9198668831294354, 2.4478231742694163, + 3.025736229716338, 3.6273345021469923, 4.225341620220752, + 4.7950890991389485, 5.31741412135344, 5.7795443278852, 6.1761870059840085, + 6.5069287810322285, 6.774560914617898, 6.9834142939036195, + 7.136738281257954, 7.23687726514796, 7.2850655719436626, + 7.281958611985487, 7.229560744304342, 7.131086303617515, + 6.991794526541603, 6.818624350331571, 6.6189152788648125, + 6.399849749553046, 6.167354844350452, 5.925823696012432, + 5.678448150206017, 5.427783394616318, 5.176603650222607, + 4.928395218806097, 4.687347172462586, 4.4575717246229045, + 4.242051217582208, 4.041168289428864, 3.851750522438715, + 3.666939475898424, 3.4768803230783547, 3.270542229659448, + 3.037988045765313, 2.7731074786602323, 2.474960155368492, + 2.1490608936039246, 1.8065827826185508, 1.4626237748647712, + 1.1336686540580865, 0.8349688744615162, 0.5781039351636726, + 0.36950918993723386, 0.21085653825283981, 0.09917347125968033, + 0.028996571743038005, -0.00601521264849708, -0.01197425629253354, + 0.0064274615436248125, 0.04545355579813574, 0.1018609892276451, + 0.17213148246444823, 0.2515455297237053, 0.33420989922017064, + 0.4134187475176253, 0.48265901698351743, 0.5366372571862311, + 0.5725374191292167, 0.590233401919728, 0.5920916105213521, + 0.582287692432582, 0.5652843670617238, 0.5447287815984233, + 0.5225636244708064, 0.49876634667489456, 0.4718498652168516, + 0.43980712907720104, 0.4012438206722124, 0.3562996717407261, + 0.3069118904541781, 0.25658132566844244, 0.20944043587892608, + 0.1691468614265955, 0.13782548719664764, 0.11568507493050477, + 0.10102504366809359, 0.09109934010026488, 0.08325245656404158, + 0.07595301644013426, 0.06945647099584325, 0.06576378447766563, + 0.0678180567912502, 0.07839314498839192, 0.09875181820506587, + 0.12802939852377937, 0.1633618477632584, 0.20091532908718665, + 0.23785338083177732, 0.2744564452540944, 0.31584171951979884, + 0.37279858078192546, 0.46087607099816214, 0.5985007667291613, + 0.8036073394324748, 1.0894873261745692, 1.4627437121661797 + ], + "pressure:J41:branch86_seg0": [ + 8188.052125468802, 9370.079543433796, 10656.329194440817, + 11987.25985840947, 13298.736724553393, 14533.141118696152, + 15647.804858282969, 16621.611595667455, 17442.443285465488, + 18114.757907550887, 18653.618473322145, 19065.92848377152, + 19363.46787905964, 19551.1405347709, 19627.788116146865, + 19597.871854580546, 19460.44099925221, 19223.05789414567, + 18900.370010418814, 18505.073448551862, 18056.762930439425, + 17571.5862560026, 17061.77941063496, 16537.269814440773, + 16003.083814478445, 15463.446503852258, 14923.460635680982, + 14390.248653088975, 13873.30446929503, 13383.010545751298, + 12926.686932257342, 12505.60480824133, 12113.25043709369, + 11732.262921732043, 11339.041128314595, 10906.614745328676, + 10411.870865136652, 9838.153038740862, 9185.474990714425, + 8467.945818958844, 7711.860516618378, 6955.624772286247, + 6238.529635571266, 5595.952316722251, 5052.539083106693, + 4623.989405169837, 4308.333780025882, 4096.703060848993, + 3975.146538117691, 3924.74305242893, 3933.266625277163, + 3989.6656470854778, 4086.6086472012958, 4219.591544245287, + 4380.7821699940605, 4561.236567172598, 4747.803138950241, + 4924.537831126167, 5076.062981092149, 5190.8606360361855, + 5261.913629694914, 5289.6570336459345, 5282.607624284445, + 5250.146633461937, 5204.3622684145785, 5154.691923545416, + 5104.95182099968, 5054.311028727076, 4998.061727690201, + 4930.0869510962075, 4846.411586314095, 4746.564665682942, + 4635.705212684122, 4522.671243916129, 4417.854299421982, + 4330.401878032698, 4265.732077439115, 4223.395698251593, + 4198.464189450825, 4183.646410176664, 4171.1979723444065, + 4157.187799112949, 4142.482259903698, 4132.42679996601, 4135.226643941595, + 4158.163303599007, 4205.111876860184, 4274.141803927349, + 4356.743187584598, 4443.113250509234, 4524.644922317133, + 4600.247391149343, 4681.094243266613, 4792.0764340570995, + 4970.736639449702, 5261.43915451815, 5704.63062876594, 6336.319719369049, + 7167.080559131629, 8188.052125468802 + ], + "flow:J41:branch109_seg0": [ + 0.6947561785491773, 0.8995108737371116, 1.1267951876352722, + 1.3662262076625697, 1.6059717773557438, 1.8352213281701477, + 2.0454220891701134, 2.2312207797777437, 2.3896976574400437, + 2.521200813369381, 2.627354390141609, 2.7099882472842864, + 2.771316886013963, 2.812233948818973, 2.8332058244394385, + 2.8345299533051733, 2.81619468157118, 2.7794858553397512, + 2.726160738123234, 2.658792489552333, 2.58070983192783, 2.494816945692426, + 2.4037631912676325, 2.3094560354193105, 2.213051885993006, + 2.115418160720545, 2.0173712747955923, 1.9200766487178416, + 1.8251328281784551, 1.734385575821745, 1.649350417707253, + 1.5707326838929976, 1.4978007667476836, 1.4280690558195903, + 1.3576830007139897, 1.2818888500227352, 1.196129531131767, + 1.0969793135217547, 0.983484125480294, 0.8570744416073967, + 0.7219716113277796, 0.5844163338111682, 0.4514433488471484, + 0.32976893840615323, 0.22476902189235068, 0.13971664510135587, + 0.07522530836270896, 0.03043913777630828, 0.0027674255223078697, + -0.01079549792202407, -0.012816430357380138, -0.005600444097162729, + 0.009502421564062483, 0.03141764623493131, 0.058935336877784295, + 0.09060773349885527, 0.12420165826775201, 0.15702172766739983, + 0.18624573692778718, 0.20948162259589254, 0.22511801798390088, + 0.23289916366260596, 0.2337426181081171, 0.229310381929144, + 0.22179110391725132, 0.21297531165456682, 0.20393199439299464, + 0.19483265718775558, 0.18502517036199354, 0.17347339939828907, + 0.159279703397289, 0.14213826267582574, 0.12265963544281254, + 0.10218285728840476, 0.08254913589677255, 0.06552960476722183, + 0.05234417599935407, 0.04325651905447916, 0.037702806044758584, + 0.03443587576501659, 0.032054904396373936, 0.029624360105748503, + 0.026967822234055954, 0.024784019338513524, 0.0244127188127038, + 0.027257707634933414, 0.03428416205617067, 0.045449316407084085, + 0.059665730872466814, 0.07521414627399366, 0.0903507067246828, + 0.10439160228167885, 0.11857836611968899, 0.1365584991542316, + 0.16440889024524047, 0.20967406447511525, 0.2802689424724246, + 0.382985756251262, 0.5210475674270219, 0.6947561785491773 + ], + "pressure:J41:branch109_seg0": [ + 8188.052125468802, 9370.079543433796, 10656.329194440817, + 11987.25985840947, 13298.736724553393, 14533.141118696152, + 15647.804858282969, 16621.611595667455, 17442.443285465488, + 18114.757907550887, 18653.618473322145, 19065.92848377152, + 19363.46787905964, 19551.1405347709, 19627.788116146865, + 19597.871854580546, 19460.44099925221, 19223.05789414567, + 18900.370010418814, 18505.073448551862, 18056.762930439425, + 17571.5862560026, 17061.77941063496, 16537.269814440773, + 16003.083814478445, 15463.446503852258, 14923.460635680982, + 14390.248653088975, 13873.30446929503, 13383.010545751298, + 12926.686932257342, 12505.60480824133, 12113.25043709369, + 11732.262921732043, 11339.041128314595, 10906.614745328676, + 10411.870865136652, 9838.153038740862, 9185.474990714425, + 8467.945818958844, 7711.860516618378, 6955.624772286247, + 6238.529635571266, 5595.952316722251, 5052.539083106693, + 4623.989405169837, 4308.333780025882, 4096.703060848993, + 3975.146538117691, 3924.74305242893, 3933.266625277163, + 3989.6656470854778, 4086.6086472012958, 4219.591544245287, + 4380.7821699940605, 4561.236567172598, 4747.803138950241, + 4924.537831126167, 5076.062981092149, 5190.8606360361855, + 5261.913629694914, 5289.6570336459345, 5282.607624284445, + 5250.146633461937, 5204.3622684145785, 5154.691923545416, + 5104.95182099968, 5054.311028727076, 4998.061727690201, + 4930.0869510962075, 4846.411586314095, 4746.564665682942, + 4635.705212684122, 4522.671243916129, 4417.854299421982, + 4330.401878032698, 4265.732077439115, 4223.395698251593, + 4198.464189450825, 4183.646410176664, 4171.1979723444065, + 4157.187799112949, 4142.482259903698, 4132.42679996601, 4135.226643941595, + 4158.163303599007, 4205.111876860184, 4274.141803927349, + 4356.743187584598, 4443.113250509234, 4524.644922317133, + 4600.247391149343, 4681.094243266613, 4792.0764340570995, + 4970.736639449702, 5261.43915451815, 5704.63062876594, 6336.319719369049, + 7167.080559131629, 8188.052125468802 + ], + "flow:branch86_seg2:J42": [ + 1.4584841425230315, 1.9150807240055348, 2.4426997152092955, + 3.020561158737772, 3.6223359824936754, 4.2207047003251725, + 4.790951550656987, 5.313869642528622, 5.776575414282102, + 6.173777732080619, 6.505033026592683, 6.773124650756234, + 6.9824299751839565, 7.136179398287776, 7.236748684975762, + 7.2853553538685265, 7.28264903020038, 7.230641657595003, + 7.132470461311437, 6.993420403989773, 6.820441821344916, + 6.620848866106082, 6.401862919442873, 6.169418722375718, + 5.927916056137933, 5.680557267411281, 5.42988386461615, 5.178662001020364, + 4.930372546573707, 4.689209469582033, 4.459292444659226, + 4.243642774398263, 4.042676606437598, 3.8532462711472344, + 3.668526719381064, 3.478664828983305, 3.272597820525748, + 3.040355213365227, 2.7757754361699907, 2.4778369000511518, + 2.15202449037381, 1.809487390013676, 1.4653133163445595, + 1.1360041981403974, 0.8369045799988108, 0.5795993942336678, + 0.3705531834928872, 0.21153634590914036, 0.09952948641082743, + 0.029092189608717595, -0.006116649641580127, -0.012264280254883596, + 0.0059897379974316305, 0.04489311260503375, 0.1011952567212403, + 0.17141344620804838, 0.2508294191979849, 0.333554941809577, + 0.41288299176761334, 0.48228299222647253, 0.5364305067697769, + 0.5724897391857959, 0.5903074717572656, 0.5922402425314631, + 0.582473940351248, 0.5654780749547437, 0.5449206970633569, + 0.5227666850392322, 0.49900252301539716, 0.47214264651127297, + 0.4401616348952886, 0.40165277556877127, 0.35674168762281233, + 0.307343553489909, 0.25696280760947476, 0.2097441806729548, + 0.1693637139515771, 0.13795711115010845, 0.11576285227388934, + 0.10108003411024544, 0.09115059169574868, 0.08331062667208329, + 0.07600697371407347, 0.06947900232107938, 0.06572286550847098, + 0.06768877404143928, 0.07817221218434682, 0.09845568833497208, + 0.12769604122662281, 0.16303267106933259, 0.20061176743437056, + 0.2375593409040767, 0.27410594467829774, 0.31531568764931195, + 0.3719411573627633, 0.459488797624656, 0.5964724449202693, + 0.8008449278495351, 1.0858941774495028, 1.4584841425230315 + ], + "pressure:branch86_seg2:J42": [ + 7299.473462265168, 8294.191441514427, 9419.019253497303, + 10627.294451102443, 11862.604339256308, 13069.338449248302, + 14200.110016157754, 15222.306139037733, 16113.911459513512, + 16869.016234210103, 17492.181352525335, 17989.036789755977, + 18369.428831324436, 18639.404872551655, 18801.695160965683, + 18859.492100365496, 18813.42351407085, 18668.352212214177, + 18433.184859491543, 18119.25483794876, 17742.159266673123, + 17316.9614465044, 16857.472048876305, 16374.927199349067, + 15876.947196419738, 15369.245956908153, 14856.847684425285, + 14345.766329239726, 13843.723749155335, 13359.755752698899, + 12901.794158834453, 12474.464119083417, 12076.405009610306, + 11697.820380548897, 11322.077729442653, 10927.194453484373, + 10490.729895141265, 9993.702698321607, 9427.537723008403, + 8795.201038325473, 8112.312241727277, 7406.226302345643, + 6709.911898829908, 6057.074544821492, 5476.750138131299, + 4989.548645269741, 4603.799000895986, 4319.413987278975, + 4127.629834621473, 4015.1442789457537, 3969.4434690626676, + 3978.4289922457697, 4033.6315871394045, 4128.43174075755, + 4255.83281952823, 4408.459668067872, 4575.702696282704, + 4744.4807053826435, 4900.792964458746, 5032.082351701616, + 5128.776439270561, 5187.01385191293, 5209.356052506225, 5201.901904453475, + 5174.158269162224, 5135.294384303137, 5091.54619759085, + 5045.3812155523565, 4995.316186481809, 4937.389266023107, + 4867.512006183535, 4783.610954572784, 4687.44377607369, 4584.34805508482, + 4482.415612931736, 4390.218460383194, 4314.54277530583, 4258.147528690667, + 4219.913003919736, 4195.203344387493, 4177.737467285471, + 4162.651699431098, 4148.0378173868885, 4135.872753902021, + 4131.46510417127, 4141.1557260912095, 4170.036830055736, + 4219.342064114669, 4285.222873137731, 4360.699396682739, + 4437.765369420059, 4512.019008844473, 4587.18287018943, 4677.89045352331, + 4810.581321435221, 5020.292525225875, 5345.415753921005, + 5821.705420649711, 6470.494297491031, 7299.473462265168 + ], + "flow:J42:branch87_seg0": [ + 0.6911058320140254, 0.9061771845147183, 1.1536800987910214, + 1.4237163363920935, 1.703858681583466, 1.9813874356093881, + 2.2449360300183545, 2.4858202513528256, 2.698283367023983, + 2.880145520844186, 3.0314066615851547, 3.153451449386266, + 3.2483809877579173, 3.3176525909907917, 3.3623252077401884, + 3.3829368680932004, 3.3797601382114197, 3.3537889427895347, + 3.3065205267914557, 3.240476757353702, 3.1589583898621103, + 3.0653617208071715, 2.9630301948383373, 2.8546738913398606, + 2.742272461240709, 2.6272708883758296, 2.51082530083383, + 2.3942278433687108, 2.2791215467695136, 2.167479359713305, + 2.0612066761833203, 1.9616608932673187, 1.8689404850482438, + 1.7814442698056208, 1.6958711260270656, 1.6075395977934845, + 1.5112739666082553, 1.4024893883678404, 1.278477483502138, + 1.1389560167314863, 0.9867073735232792, 0.827122638131418, + 0.6673432232636616, 0.515071086443313, 0.377387725612118, + 0.2595330029540016, 0.16429595357197765, 0.0923438610392967, + 0.042099597483700256, 0.010937644946516846, -0.004099042320540356, + -0.005877311186487003, 0.003498691135508237, 0.02232880379224492, + 0.04910753458620092, 0.08221471957973019, 0.11941446147882083, + 0.15792600313014685, 0.19460921289704067, 0.22644337493679648, + 0.251002355114735, 0.26706194508713876, 0.27465691958758526, + 0.2749682334955507, 0.27000659747486905, 0.26185609676745647, + 0.25218459380691377, 0.2418411814950302, 0.23074670709562586, + 0.21815823917260185, 0.20311751968908745, 0.1849956604168738, + 0.16391268200733133, 0.14082142741712805, 0.11740590769873668, + 0.09561278441504703, 0.07712982543365621, 0.0628864141061145, + 0.05292372642983009, 0.04638442481607541, 0.04194600858998971, + 0.038380224525060416, 0.035009843346973955, 0.032012199655184974, + 0.030378613711803736, 0.03151126570321016, 0.03669965276586961, + 0.046481816245067815, 0.060384111535338125, 0.07700724658597188, + 0.09452837623429301, 0.11165339628246644, 0.1286104072294023, + 0.1479328392111856, 0.17482555753804815, 0.21665568650906178, + 0.2821253246847796, 0.3795569444609865, 0.514892768025115, + 0.6911058320140254 + ], + "pressure:J42:branch87_seg0": [ + 7299.473462265168, 8294.191441514427, 9419.019253497303, + 10627.294451102443, 11862.604339256308, 13069.338449248302, + 14200.110016157754, 15222.306139037733, 16113.911459513512, + 16869.016234210103, 17492.181352525335, 17989.036789755977, + 18369.428831324436, 18639.404872551655, 18801.695160965683, + 18859.492100365496, 18813.42351407085, 18668.352212214177, + 18433.184859491543, 18119.25483794876, 17742.159266673123, + 17316.9614465044, 16857.472048876305, 16374.927199349067, + 15876.947196419738, 15369.245956908153, 14856.847684425285, + 14345.766329239726, 13843.723749155335, 13359.755752698899, + 12901.794158834453, 12474.464119083417, 12076.405009610306, + 11697.820380548897, 11322.077729442653, 10927.194453484373, + 10490.729895141265, 9993.702698321607, 9427.537723008403, + 8795.201038325473, 8112.312241727277, 7406.226302345643, + 6709.911898829908, 6057.074544821492, 5476.750138131299, + 4989.548645269741, 4603.799000895986, 4319.413987278975, + 4127.629834621473, 4015.1442789457537, 3969.4434690626676, + 3978.4289922457697, 4033.6315871394045, 4128.43174075755, + 4255.83281952823, 4408.459668067872, 4575.702696282704, + 4744.4807053826435, 4900.792964458746, 5032.082351701616, + 5128.776439270561, 5187.01385191293, 5209.356052506225, 5201.901904453475, + 5174.158269162224, 5135.294384303137, 5091.54619759085, + 5045.3812155523565, 4995.316186481809, 4937.389266023107, + 4867.512006183535, 4783.610954572784, 4687.44377607369, 4584.34805508482, + 4482.415612931736, 4390.218460383194, 4314.54277530583, 4258.147528690667, + 4219.913003919736, 4195.203344387493, 4177.737467285471, + 4162.651699431098, 4148.0378173868885, 4135.872753902021, + 4131.46510417127, 4141.1557260912095, 4170.036830055736, + 4219.342064114669, 4285.222873137731, 4360.699396682739, + 4437.765369420059, 4512.019008844473, 4587.18287018943, 4677.89045352331, + 4810.581321435221, 5020.292525225875, 5345.415753921005, + 5821.705420649711, 6470.494297491031, 7299.473462265168 + ], + "flow:J42:branch144_seg0": [ + 0.7673783105090064, 1.0089035394908166, 1.289019616418275, + 1.596844822345679, 1.9184773009102103, 2.2393172647157855, + 2.5460155206386332, 2.828049391175798, 3.078292047258121, + 3.2936322112364325, 3.473626365007529, 3.6196732013699666, + 3.7340489874260374, 3.8185268072969833, 3.8744234772355735, + 3.9024184857753266, 3.9028888919889613, 3.87685271480547, + 3.825949934519981, 3.7529436466360715, 3.6614834314828064, + 3.55548714529891, 3.4388327246045374, 3.314744831035856, + 3.1856435948972255, 3.0532863790354505, 2.919058563782319, + 2.784434157651653, 2.6512509998041933, 2.5217301098687286, + 2.398085768475905, 2.281981881130944, 2.1737361213893536, + 2.0718020013416125, 1.9726555933539982, 1.8711252311898208, + 1.761323853917493, 1.637865824997387, 1.4972979526678534, + 1.3388808833196655, 1.16531711685053, 0.9823647518822579, + 0.7979700930808982, 0.6209331116970844, 0.4595168543866929, + 0.3200663912796662, 0.20625722992090953, 0.11919248486984367, + 0.05742988892712716, 0.018154544662200754, -0.0020176073210397705, + -0.006386969068396594, 0.0024910468619233923, 0.02256430881278883, + 0.05208772213503939, 0.0891987266283182, 0.13141495771916406, + 0.17562893867943008, 0.21827377887057267, 0.25583961728967625, + 0.28542815165504165, 0.3054277940986571, 0.3156505521696802, + 0.3172720090359124, 0.3124673428763789, 0.3036219781872872, + 0.29273610325644317, 0.280925503544202, 0.2682558159197714, + 0.253984407338671, 0.2370441152062012, 0.21665711515189748, + 0.19282900561548094, 0.16652212607278102, 0.1395568999107381, + 0.11413139625790779, 0.09223388851792089, 0.07507069704399393, + 0.06283912584405923, 0.05469560929417005, 0.049204583105758974, + 0.04493040214702288, 0.04099713036709954, 0.03746680266589443, + 0.03534425179666725, 0.036177508338229115, 0.041472559418477196, + 0.051973872089904255, 0.06731192969128469, 0.08602542448336073, + 0.10608339120007756, 0.12590594462161026, 0.14549553744889543, + 0.16738284843812634, 0.19711559982471508, 0.2428331111155943, + 0.3143471202354897, 0.4212879833885486, 0.5710014094243878, + 0.7673783105090064 + ], + "pressure:J42:branch144_seg0": [ + 7299.473462265168, 8294.191441514427, 9419.019253497303, + 10627.294451102443, 11862.604339256308, 13069.338449248302, + 14200.110016157754, 15222.306139037733, 16113.911459513512, + 16869.016234210103, 17492.181352525335, 17989.036789755977, + 18369.428831324436, 18639.404872551655, 18801.695160965683, + 18859.492100365496, 18813.42351407085, 18668.352212214177, + 18433.184859491543, 18119.25483794876, 17742.159266673123, + 17316.9614465044, 16857.472048876305, 16374.927199349067, + 15876.947196419738, 15369.245956908153, 14856.847684425285, + 14345.766329239726, 13843.723749155335, 13359.755752698899, + 12901.794158834453, 12474.464119083417, 12076.405009610306, + 11697.820380548897, 11322.077729442653, 10927.194453484373, + 10490.729895141265, 9993.702698321607, 9427.537723008403, + 8795.201038325473, 8112.312241727277, 7406.226302345643, + 6709.911898829908, 6057.074544821492, 5476.750138131299, + 4989.548645269741, 4603.799000895986, 4319.413987278975, + 4127.629834621473, 4015.1442789457537, 3969.4434690626676, + 3978.4289922457697, 4033.6315871394045, 4128.43174075755, + 4255.83281952823, 4408.459668067872, 4575.702696282704, + 4744.4807053826435, 4900.792964458746, 5032.082351701616, + 5128.776439270561, 5187.01385191293, 5209.356052506225, 5201.901904453475, + 5174.158269162224, 5135.294384303137, 5091.54619759085, + 5045.3812155523565, 4995.316186481809, 4937.389266023107, + 4867.512006183535, 4783.610954572784, 4687.44377607369, 4584.34805508482, + 4482.415612931736, 4390.218460383194, 4314.54277530583, 4258.147528690667, + 4219.913003919736, 4195.203344387493, 4177.737467285471, + 4162.651699431098, 4148.0378173868885, 4135.872753902021, + 4131.46510417127, 4141.1557260912095, 4170.036830055736, + 4219.342064114669, 4285.222873137731, 4360.699396682739, + 4437.765369420059, 4512.019008844473, 4587.18287018943, 4677.89045352331, + 4810.581321435221, 5020.292525225875, 5345.415753921005, + 5821.705420649711, 6470.494297491031, 7299.473462265168 + ], + "flow:branch92_seg0:J43": [ + 2.123503815350703, 2.7397728607861165, 3.413063366423297, + 4.109488633781354, 4.792523600051598, 5.430592599488747, 6.00059473001692, + 6.490223382251788, 6.894989475153591, 7.2198851667240636, + 7.472934173423598, 7.6616407324512785, 7.79357482263445, + 7.871487385625673, 7.89636062073152, 7.868608841585096, 7.787817381889724, + 7.657820183397935, 7.484057400226979, 7.274401998523181, + 7.038871270507925, 6.785880998388924, 6.522716471810322, + 6.254176287678854, 5.982699953107566, 5.709957763157765, + 5.437718700078762, 5.16908480201936, 4.908674359201553, 4.661894705455624, + 4.433020744292247, 4.223587753456524, 4.030511512594198, + 3.8452463124226415, 3.6551880003335278, 3.4454099728453285, + 3.2022434589028284, 2.9161782158490364, 2.5859040542828526, + 2.217740923484009, 1.826479657874601, 1.432612028719513, + 1.058281594293807, 0.7236580473324578, 0.4438316420940113, + 0.2268237252633575, 0.07211476477680562, -0.02522904621973607, + -0.07491059214934895, -0.08723634863670701, -0.070396806977645, + -0.03110641987982008, 0.027176867948157497, 0.10196735473449685, + 0.19022142682628804, 0.2878976892082984, 0.3883788902031057, + 0.4835729190456052, 0.5651247429034849, 0.6262724166896236, + 0.6629622984358504, 0.675504899919625, 0.6678427813979847, + 0.6460044729118661, 0.6172404446285676, 0.5870966418296414, + 0.5584584132919783, 0.531161611919801, 0.5024573970077153, + 0.468587081587684, 0.42654867583534983, 0.37550705021067987, + 0.3177181521141754, 0.2577666473627343, 0.20164389642192465, + 0.1548341828414806, 0.12077615841478785, 0.09968391453317292, + 0.08908409204417828, 0.08451231513543024, 0.08131132919634798, + 0.07661840985165555, 0.07025251433382332, 0.06490920177796156, + 0.0652194255244683, 0.07576701056166775, 0.09941829788876816, + 0.13559662986369697, 0.18032633248615795, 0.22776012591001413, + 0.2723186837138888, 0.3121962888530139, 0.3520261421464595, + 0.40415361985278886, 0.4883627797115897, 0.62845379900937, + 0.8483916440551216, 1.1676535222509263, 1.5935602955844408, + 2.123503815350703 + ], + "pressure:branch92_seg0:J43": [ + 8738.778857105779, 10050.046027382632, 11451.720391321858, + 12872.829505208669, 14240.931068637117, 15495.514410649757, + 16596.06028613831, 17527.47181335245, 18286.097896632196, + 18885.426015595745, 19347.406605242388, 19683.676402583947, + 19908.62510630293, 20026.695379046956, 20035.91386369274, + 19939.662171797267, 19736.133343444482, 19434.669963451168, + 19051.200598207375, 18600.488938672053, 18104.4944867818, + 17579.953410577746, 17039.004370817405, 16490.424004929122, + 15937.456561400515, 15382.958506652047, 14831.286025312753, + 14289.723411171994, 13768.637912304132, 13279.295861636821, + 12829.15281808892, 12418.19669617738, 12036.981012310831, + 11663.797641029701, 11270.237533326808, 10825.19640045377, + 10303.35393129767, 9688.580834637169, 8984.909970659914, + 8212.384739478188, 7405.212463885559, 6609.4199843845745, + 5870.297672524312, 5226.32792759908, 4702.0690784997905, + 4310.360420813111, 4043.2885458301807, 3886.316392766411, + 3819.814798101919, 3820.6720949032024, 3874.993236885346, + 3971.261389858733, 4103.042837704356, 4267.001401675246, + 4455.596444273617, 4659.3299635005205, 4863.541671981257, + 5050.505604764731, 5203.492436658814, 5310.748202907418, + 5366.453898089807, 5373.807273501967, 5344.586965604185, + 5291.4808995591075, 5229.230872814327, 5168.11565897794, + 5111.357094869649, 5056.3283428743425, 4995.980880293344, 4922.2593275866, + 4830.33052454413, 4720.151523730812, 4598.674915561736, 4476.984175793383, + 4367.5683108359835, 4280.72936714837, 4221.681907311282, + 4188.415321763202, 4173.640460456076, 4167.735074454663, + 4161.350293419892, 4150.317705729921, 4136.638686769014, + 4127.730878294063, 4134.032153359536, 4164.253645721565, + 4222.341379008184, 4304.763609517344, 4400.482576447055, + 4497.085733683337, 4584.466170322739, 4662.439509005267, + 4745.868468747025, 4865.759690389387, 5067.284614625483, + 5401.714719231999, 5913.958470283535, 6641.265068741004, + 7588.769017948518, 8738.778857105779 + ], + "flow:J43:branch93_seg0": [ + 0.6716309730036798, 0.8650869460595045, 1.0754601322141384, + 1.292090536304838, 1.5035484925773186, 1.7001326520694304, + 1.8748985138103682, 2.0243393295984298, 2.147276916133176, + 2.2455483958264915, 2.321771220263955, 2.37827841551199, + 2.4174360121352603, 2.4399776845826975, 2.44614359462733, + 2.436033897669009, 2.40948879059932, 2.3677885875422633, + 2.312666544153682, 2.2466326142273543, 2.1728611133299256, + 2.0939321709923018, 2.0120769392023363, 1.928718949114936, + 1.8445435930285963, 1.7600351682486732, 1.6757325021162999, + 1.5926241857450294, 1.5121816081957045, 1.436110752865096, + 1.3657161922729157, 1.3014152910511814, 1.242136532711555, + 1.1850805291802635, 1.1262199383501776, 1.0608475169771883, + 0.9847327288640353, 0.8950199880502128, 0.7915099197095471, + 0.676370607346686, 0.5544253153668117, 0.43221054898063055, + 0.3166626135846481, 0.21400408879066124, 0.12880293376259383, + 0.06334853698886189, 0.017239158508163148, -0.011192680425462955, + -0.02510980652836825, -0.027750355255475548, -0.02160992664679459, + -0.00873700023954743, 0.009893909936350287, 0.033552988383444206, + 0.06129217013533088, 0.09184626904521036, 0.12309969404998745, + 0.15249726281175105, 0.17743323461769744, 0.19584479093836407, + 0.20653780181967304, 0.20972429920977556, 0.20673468897905578, + 0.1995059710914149, 0.19033288285580877, 0.1809063050317158, + 0.17205377847254014, 0.1636417174823777, 0.15473975158135145, + 0.14414104709483622, 0.13091930035297725, 0.1148657609122383, + 0.0967607853647299, 0.07809380701972878, 0.06077137352321, + 0.04649472496978423, 0.03628545315989618, 0.030123913540290117, + 0.02716859192842847, 0.02596985197209297, 0.025062051190175863, + 0.023594288695426055, 0.021577747575411785, 0.019927859599152668, + 0.020143334120543872, 0.023659025199894598, 0.031331757209230704, + 0.04289771064416029, 0.05702822454737218, 0.07184680560044006, + 0.08561056004273834, 0.09783667159635448, 0.1101187714543857, + 0.12648853314088135, 0.15328878370857377, 0.19802738807271042, + 0.26818468540146845, 0.3696993697507256, 0.5045306237445826, + 0.6716309730036798 + ], + "pressure:J43:branch93_seg0": [ + 8738.778857105779, 10050.046027382632, 11451.720391321858, + 12872.829505208669, 14240.931068637117, 15495.514410649757, + 16596.06028613831, 17527.47181335245, 18286.097896632196, + 18885.426015595745, 19347.406605242388, 19683.676402583947, + 19908.62510630293, 20026.695379046956, 20035.91386369274, + 19939.662171797267, 19736.133343444482, 19434.669963451168, + 19051.200598207375, 18600.488938672053, 18104.4944867818, + 17579.953410577746, 17039.004370817405, 16490.424004929122, + 15937.456561400515, 15382.958506652047, 14831.286025312753, + 14289.723411171994, 13768.637912304132, 13279.295861636821, + 12829.15281808892, 12418.19669617738, 12036.981012310831, + 11663.797641029701, 11270.237533326808, 10825.19640045377, + 10303.35393129767, 9688.580834637169, 8984.909970659914, + 8212.384739478188, 7405.212463885559, 6609.4199843845745, + 5870.297672524312, 5226.32792759908, 4702.0690784997905, + 4310.360420813111, 4043.2885458301807, 3886.316392766411, + 3819.814798101919, 3820.6720949032024, 3874.993236885346, + 3971.261389858733, 4103.042837704356, 4267.001401675246, + 4455.596444273617, 4659.3299635005205, 4863.541671981257, + 5050.505604764731, 5203.492436658814, 5310.748202907418, + 5366.453898089807, 5373.807273501967, 5344.586965604185, + 5291.4808995591075, 5229.230872814327, 5168.11565897794, + 5111.357094869649, 5056.3283428743425, 4995.980880293344, 4922.2593275866, + 4830.33052454413, 4720.151523730812, 4598.674915561736, 4476.984175793383, + 4367.5683108359835, 4280.72936714837, 4221.681907311282, + 4188.415321763202, 4173.640460456076, 4167.735074454663, + 4161.350293419892, 4150.317705729921, 4136.638686769014, + 4127.730878294063, 4134.032153359536, 4164.253645721565, + 4222.341379008184, 4304.763609517344, 4400.482576447055, + 4497.085733683337, 4584.466170322739, 4662.439509005267, + 4745.868468747025, 4865.759690389387, 5067.284614625483, + 5401.714719231999, 5913.958470283535, 6641.265068741004, + 7588.769017948518, 8738.778857105779 + ], + "flow:J43:branch135_seg0": [ + 0.8994157175736659, 1.156413723721067, 1.4348589515878107, + 1.7206690185783742, 1.9987932504215171, 2.256575948109829, + 2.485089031864017, 2.680031556611657, 2.840011477665415, + 2.967603014511091, 3.066404091518818, 3.139370631912451, + 3.1896177710590488, 3.218033418679514, 3.224830499524959, + 3.210209727871879, 3.173920037659368, 3.1177440771300717, + 3.0440771436006466, 2.9562106024712933, 2.858398742568074, + 2.7540010718500447, 2.6458906659469377, 2.535904742836038, + 2.4248852841642337, 2.313460483479662, 2.2023613098428445, + 2.0929258781967754, 1.9871295846378207, 1.8872322424925778, + 1.794910122273997, 1.7106170428820597, 1.63283096445018, + 1.5577136884968579, 1.4798692811247158, 1.3930628491662076, + 1.2917903746540211, 1.1723989811714457, 1.0348567469218022, + 0.8822373141466395, 0.7210565379974908, 0.5600745931463665, + 0.4084375288219312, 0.2742624844814875, 0.1633949305376475, + 0.07871738611503634, 0.01945671979815059, -0.016688684960399495, + -0.03392766520195939, -0.03658049162986546, -0.02783474721430366, + -0.010346179013144847, 0.014647381837410175, 0.04623004571385209, + 0.08310119733101028, 0.12356125986277583, 0.16476911796427976, + 0.20331529115422936, 0.2357746945122438, 0.2594901329743914, + 0.2729646734220029, 0.276573760955344, 0.27218503847823083, + 0.2623678575292644, 0.25015863121465864, 0.23774251106833041, + 0.22612426504385244, 0.21505382664407016, 0.20325317500771872, + 0.18911864092208439, 0.17146827920833205, 0.15008450823986366, + 0.1260792323887578, 0.10146897560591468, 0.07878200012183734, + 0.06023398837480171, 0.04711174713584179, 0.03930318158683081, + 0.035630617033563905, 0.034159464860284414, 0.03295986671216351, + 0.03096975064802895, 0.028280663034483466, 0.026164947212900674, + 0.0266338989025778, 0.03155922375372221, 0.04200993941385858, + 0.05755375507440517, 0.07634479322587673, 0.09588990604101938, + 0.11392589998930389, 0.1299334958500809, 0.14619552495549099, + 0.168223296976057, 0.20454911441336998, 0.2651510980202985, + 0.35980106365153014, 0.496241166352279, 0.6766777874354155, + 0.8994157175736659 + ], + "pressure:J43:branch135_seg0": [ + 8738.778857105779, 10050.046027382632, 11451.720391321858, + 12872.829505208669, 14240.931068637117, 15495.514410649757, + 16596.06028613831, 17527.47181335245, 18286.097896632196, + 18885.426015595745, 19347.406605242388, 19683.676402583947, + 19908.62510630293, 20026.695379046956, 20035.91386369274, + 19939.662171797267, 19736.133343444482, 19434.669963451168, + 19051.200598207375, 18600.488938672053, 18104.4944867818, + 17579.953410577746, 17039.004370817405, 16490.424004929122, + 15937.456561400515, 15382.958506652047, 14831.286025312753, + 14289.723411171994, 13768.637912304132, 13279.295861636821, + 12829.15281808892, 12418.19669617738, 12036.981012310831, + 11663.797641029701, 11270.237533326808, 10825.19640045377, + 10303.35393129767, 9688.580834637169, 8984.909970659914, + 8212.384739478188, 7405.212463885559, 6609.4199843845745, + 5870.297672524312, 5226.32792759908, 4702.0690784997905, + 4310.360420813111, 4043.2885458301807, 3886.316392766411, + 3819.814798101919, 3820.6720949032024, 3874.993236885346, + 3971.261389858733, 4103.042837704356, 4267.001401675246, + 4455.596444273617, 4659.3299635005205, 4863.541671981257, + 5050.505604764731, 5203.492436658814, 5310.748202907418, + 5366.453898089807, 5373.807273501967, 5344.586965604185, + 5291.4808995591075, 5229.230872814327, 5168.11565897794, + 5111.357094869649, 5056.3283428743425, 4995.980880293344, 4922.2593275866, + 4830.33052454413, 4720.151523730812, 4598.674915561736, 4476.984175793383, + 4367.5683108359835, 4280.72936714837, 4221.681907311282, + 4188.415321763202, 4173.640460456076, 4167.735074454663, + 4161.350293419892, 4150.317705729921, 4136.638686769014, + 4127.730878294063, 4134.032153359536, 4164.253645721565, + 4222.341379008184, 4304.763609517344, 4400.482576447055, + 4497.085733683337, 4584.466170322739, 4662.439509005267, + 4745.868468747025, 4865.759690389387, 5067.284614625483, + 5401.714719231999, 5913.958470283535, 6641.265068741004, + 7588.769017948518, 8738.778857105779 + ], + "flow:J43:branch139_seg0": [ + 0.5524571247733573, 0.718272191005545, 0.9027442826213481, + 1.0967290788981416, 1.2901818570527623, 1.4738839993094872, + 1.6406071843425356, 1.7858524960417002, 1.9077010813549986, + 2.0067337563864807, 2.084758861640824, 2.1439916850268372, + 2.186521039440142, 2.213476282363461, 2.2253865265792303, + 2.2223652160442064, 2.2044085536310356, 2.172287518725601, + 2.127313712472651, 2.071558781824534, 2.007611414609924, + 1.9379477555465776, 1.8647488666610494, 1.789552595727881, + 1.7132710759147363, 1.6364621114294298, 1.5596248881196189, + 1.4835347380775554, 1.4093631663680282, 1.3385517100979505, + 1.2723944297453347, 1.2115554195232825, 1.1555440154324625, + 1.10245209474552, 1.0490987808586343, 0.9914996067019323, + 0.9257203553847719, 0.8487592466273778, 0.7595373876515035, + 0.6591330019906836, 0.5509978045102987, 0.4403268865925157, + 0.33318145188722786, 0.23539147406030902, 0.15163377779377002, + 0.08475780215945933, 0.03541888647049188, 0.002652319166126371, + -0.01587312041902133, -0.022905501751366002, -0.020952133116546742, + -0.0120232406271278, 0.002635576174397033, 0.022184320637200532, + 0.04582805935994688, 0.07249016030031227, 0.10051007818883845, + 0.12776036507962477, 0.15191681377354363, 0.1709374927768682, + 0.18345982319417425, 0.18920683975450556, 0.1889230539406982, + 0.18413064429118697, 0.17674893055810026, 0.16844782572959519, + 0.16028036977558582, 0.15246606779335337, 0.14446447041864527, + 0.1353273935707634, 0.12416109627404043, 0.11055678105857795, + 0.09487813436068773, 0.07820386473709082, 0.06209052277687733, + 0.048105469496894655, 0.037378958119049885, 0.030256819406051988, + 0.0262848830821859, 0.02438299830305286, 0.023289411294008595, + 0.022054370508200548, 0.020394103723928067, 0.01881639496590819, + 0.018442192501346624, 0.020548761608050938, 0.026076601265678873, + 0.03514516414513149, 0.04695331471290903, 0.060023414268554676, + 0.07278222368184657, 0.0844261214065785, 0.09571184573658287, + 0.10944178973585048, 0.130524881589646, 0.16527531291636124, + 0.22040589500212293, 0.3017129861479217, 0.41235188440444254, + 0.5524571247733573 + ], + "pressure:J43:branch139_seg0": [ + 8738.778857105779, 10050.046027382632, 11451.720391321858, + 12872.829505208669, 14240.931068637117, 15495.514410649757, + 16596.06028613831, 17527.47181335245, 18286.097896632196, + 18885.426015595745, 19347.406605242388, 19683.676402583947, + 19908.62510630293, 20026.695379046956, 20035.91386369274, + 19939.662171797267, 19736.133343444482, 19434.669963451168, + 19051.200598207375, 18600.488938672053, 18104.4944867818, + 17579.953410577746, 17039.004370817405, 16490.424004929122, + 15937.456561400515, 15382.958506652047, 14831.286025312753, + 14289.723411171994, 13768.637912304132, 13279.295861636821, + 12829.15281808892, 12418.19669617738, 12036.981012310831, + 11663.797641029701, 11270.237533326808, 10825.19640045377, + 10303.35393129767, 9688.580834637169, 8984.909970659914, + 8212.384739478188, 7405.212463885559, 6609.4199843845745, + 5870.297672524312, 5226.32792759908, 4702.0690784997905, + 4310.360420813111, 4043.2885458301807, 3886.316392766411, + 3819.814798101919, 3820.6720949032024, 3874.993236885346, + 3971.261389858733, 4103.042837704356, 4267.001401675246, + 4455.596444273617, 4659.3299635005205, 4863.541671981257, + 5050.505604764731, 5203.492436658814, 5310.748202907418, + 5366.453898089807, 5373.807273501967, 5344.586965604185, + 5291.4808995591075, 5229.230872814327, 5168.11565897794, + 5111.357094869649, 5056.3283428743425, 4995.980880293344, 4922.2593275866, + 4830.33052454413, 4720.151523730812, 4598.674915561736, 4476.984175793383, + 4367.5683108359835, 4280.72936714837, 4221.681907311282, + 4188.415321763202, 4173.640460456076, 4167.735074454663, + 4161.350293419892, 4150.317705729921, 4136.638686769014, + 4127.730878294063, 4134.032153359536, 4164.253645721565, + 4222.341379008184, 4304.763609517344, 4400.482576447055, + 4497.085733683337, 4584.466170322739, 4662.439509005267, + 4745.868468747025, 4865.759690389387, 5067.284614625483, + 5401.714719231999, 5913.958470283535, 6641.265068741004, + 7588.769017948518, 8738.778857105779 + ], + "flow:branch94_seg0:J44": [ + 2.0477280860461167, 2.6552821059563807, 3.328549648886337, + 4.0351818581868475, 4.739200466850724, 5.408017384813045, + 6.016287582344923, 6.548572306753992, 6.997660628064986, + 7.365919497193026, 7.659494851458902, 7.885335884144039, + 8.050581322381449, 8.158300375567249, 8.209827394941897, + 8.205468406867539, 8.144916567321708, 8.031442184218093, + 7.870066082892164, 7.668549216348119, 7.43672625252172, 7.183476784766825, + 6.916710503594407, 6.641925746492375, 6.362310987251275, + 6.080002017229966, 5.797005280972807, 5.5164523506365235, + 5.242909146541169, 4.981823940454739, 4.73781215126342, 4.513058166136352, + 4.305356084288474, 4.1072233933841, 3.9068438171390247, + 3.6896849092291966, 3.4418058481583738, 3.1529018300782186, + 2.8201299916047433, 2.448233130650459, 2.0505011129002217, + 1.6462423305402663, 1.2572009339868473, 0.903867561800748, + 0.60230175379262, 0.3617890734000731, 0.18359193586606343, + 0.06397626419641617, -0.0057634067459217, -0.03533019460151623, + -0.03307309405986201, -0.0058882199021144995, 0.04232634401371942, + 0.1087433687105335, 0.1903708661331667, 0.28327431968014677, + 0.38114753890241065, 0.4761375340166861, 0.5598626752672318, + 0.6251695971523326, 0.6673665493665867, 0.6858617244850603, + 0.6836543294463521, 0.6661934965015233, 0.6403491964475012, + 0.6117644106905962, 0.5837578632314853, 0.5567174251006056, + 0.5284095390744249, 0.4953605808883467, 0.4545177124394494, + 0.40472897729151747, 0.34770505692789444, 0.28756300144785796, + 0.23000677864877211, 0.1805489444988205, 0.14296728506589643, + 0.11808189647362316, 0.10401662863025189, 0.09674461354845584, + 0.09179173140379868, 0.08607876852560212, 0.07896897713281821, + 0.07262957819139873, 0.07128179137425367, 0.07943188497577158, + 0.10020673525580653, 0.13360433482200434, 0.17633953721024248, + 0.22298864162144663, 0.26801396780237874, 0.3090368960413478, + 0.349558207116754, 0.4004948012683859, 0.48021882718822995, + 0.6116893983515047, 0.8189644042604265, 1.122389526471956, + 1.5319262634823383, 2.0477280860461167 + ], + "pressure:branch94_seg0:J44": [ + 8399.200820433432, 9630.872717192879, 10960.219679461861, + 12322.026264557682, 13648.804337667023, 14882.037357733201, + 15980.340014539861, 16924.880729398374, 17708.64382295744, + 18340.6310865664, 18838.723611091777, 19212.886938531108, + 19475.915129334957, 19632.246299847095, 19680.268529566667, + 19623.11149885492, 19459.088205453078, 19196.51428231949, + 18850.301630380727, 18434.13439440684, 17968.728430206247, + 17470.695169271956, 16952.25329804667, 16422.68696648132, + 15886.091309791846, 15345.841780963257, 14806.541212227037, + 14275.244173065754, 13761.791303833616, 13276.911462691383, + 12828.087668369282, 12415.998917856625, 12032.704485065682, + 11658.989024834367, 11268.938159002702, 10833.701720815927, + 10329.207615025209, 9739.388967990903, 9066.396392327739, + 8327.440491296544, 7552.975439412345, 6784.9632295603, 6065.493344202857, + 5431.078328520421, 4905.606363412262, 4502.837626452811, + 4217.464717767655, 4037.0661411350993, 3944.796984469786, + 3919.7540721505466, 3948.7877250550996, 4021.1091043998026, + 4129.93876281324, 4271.736510336246, 4439.495811003816, 4624.183109976801, + 4812.322153731208, 4987.4815800383785, 5133.843940446661, + 5239.832663926564, 5299.217763723375, 5313.88379036633, 5293.708834643221, + 5249.798041372889, 5195.492780278202, 5140.477433610423, + 5088.205844193108, 5036.835942204104, 4980.379560003231, + 4911.652350404564, 4826.165395360295, 4723.542871359017, + 4609.709115464528, 4494.588614300162, 4389.52503669714, 4304.180400588539, + 4243.808353203924, 4207.26709675127, 4188.370448563976, 4178.671450410459, + 4169.726356138305, 4157.411893662193, 4143.129498571339, + 4133.247326560849, 4137.053190677118, 4162.586651784486, + 4213.774867946798, 4287.93237639399, 4375.491333382547, 4465.368856549077, + 4548.207098829766, 4623.313922987658, 4703.481147243862, + 4816.294678102018, 5002.645809609981, 5309.910893565887, + 5780.173468462744, 6449.852281755219, 7327.476306210116, 8399.200820433432 + ], + "flow:J44:branch95_seg0": [ + 1.3907694912940078, 1.8055800360156002, 2.266514482091252, + 2.7514925707505076, 3.2358649522315712, 3.697115311668083, + 4.117564626124827, 4.486227669202755, 4.797896162479795, + 5.053907116371661, 5.258307468422339, 5.415908288854934, + 5.531604490198349, 5.6076216065928834, 5.644972484636806, + 5.6438576218393015, 5.604103137638279, 5.527847764183574, + 5.418447586887246, 5.281189657771925, 5.12275337373973, 4.949277015171888, + 4.766251796315991, 4.57752631316187, 4.385374888419375, + 4.1912993557149365, 3.9966777305375585, 3.8036272313271806, + 3.615241017283287, 3.435238331603108, 3.2668273729086996, + 3.1116018789554722, 2.9681862967915955, 2.8316201903754843, + 2.6939164502056685, 2.545162100059112, 2.375735307511165, + 2.178429527841009, 1.9510278127676508, 1.6965247823353868, + 1.4237999849776166, 1.1459196150839466, 0.8777711096765546, + 0.6335010782953339, 0.4243194279146148, 0.25682003623644234, + 0.13216071207778393, 0.04793760840022278, -0.0017012255105110633, + -0.02336886689198312, -0.022877478589152216, -0.005017132954105025, + 0.02744371802964096, 0.07251023788762062, 0.1281491025468565, + 0.1916832224178161, 0.2588489737200956, 0.3243021315448226, + 0.38228925828676735, 0.4278401937582912, 0.45764478050838286, + 0.4711654561318944, 0.47032823463510776, 0.45881664885748125, + 0.4413126086577614, 0.4217340897657895, 0.40245106089994215, + 0.3838269576039166, 0.3644090697147784, 0.3418473707334567, + 0.31402196257356874, 0.28007708656374697, 0.2410903106702073, + 0.1998142087864119, 0.16012558734638407, 0.125825396115119, + 0.0995715740868887, 0.08203082153599699, 0.07200341094121611, + 0.0667819065062009, 0.06330579012628344, 0.05940503875756136, + 0.05455625067483673, 0.05015869591399873, 0.049050158021041755, + 0.05432616339821083, 0.06818843826382559, 0.09073775658168208, + 0.11983189727802532, 0.15180073648387013, 0.18283119193359543, + 0.21117613009708583, 0.2390388388855943, 0.2736771916259966, + 0.32748116518487413, 0.4160916766842236, 0.5560510151046248, + 0.7614564275733297, 1.0395458983443846, 1.3907694912940078 + ], + "pressure:J44:branch95_seg0": [ + 8399.200820433432, 9630.872717192879, 10960.219679461861, + 12322.026264557682, 13648.804337667023, 14882.037357733201, + 15980.340014539861, 16924.880729398374, 17708.64382295744, + 18340.6310865664, 18838.723611091777, 19212.886938531108, + 19475.915129334957, 19632.246299847095, 19680.268529566667, + 19623.11149885492, 19459.088205453078, 19196.51428231949, + 18850.301630380727, 18434.13439440684, 17968.728430206247, + 17470.695169271956, 16952.25329804667, 16422.68696648132, + 15886.091309791846, 15345.841780963257, 14806.541212227037, + 14275.244173065754, 13761.791303833616, 13276.911462691383, + 12828.087668369282, 12415.998917856625, 12032.704485065682, + 11658.989024834367, 11268.938159002702, 10833.701720815927, + 10329.207615025209, 9739.388967990903, 9066.396392327739, + 8327.440491296544, 7552.975439412345, 6784.9632295603, 6065.493344202857, + 5431.078328520421, 4905.606363412262, 4502.837626452811, + 4217.464717767655, 4037.0661411350993, 3944.796984469786, + 3919.7540721505466, 3948.7877250550996, 4021.1091043998026, + 4129.93876281324, 4271.736510336246, 4439.495811003816, 4624.183109976801, + 4812.322153731208, 4987.4815800383785, 5133.843940446661, + 5239.832663926564, 5299.217763723375, 5313.88379036633, 5293.708834643221, + 5249.798041372889, 5195.492780278202, 5140.477433610423, + 5088.205844193108, 5036.835942204104, 4980.379560003231, + 4911.652350404564, 4826.165395360295, 4723.542871359017, + 4609.709115464528, 4494.588614300162, 4389.52503669714, 4304.180400588539, + 4243.808353203924, 4207.26709675127, 4188.370448563976, 4178.671450410459, + 4169.726356138305, 4157.411893662193, 4143.129498571339, + 4133.247326560849, 4137.053190677118, 4162.586651784486, + 4213.774867946798, 4287.93237639399, 4375.491333382547, 4465.368856549077, + 4548.207098829766, 4623.313922987658, 4703.481147243862, + 4816.294678102018, 5002.645809609981, 5309.910893565887, + 5780.173468462744, 6449.852281755219, 7327.476306210116, 8399.200820433432 + ], + "flow:J44:branch115_seg0": [ + 0.6569585947521088, 0.8497020699407807, 1.062035166795085, + 1.2836892874363404, 1.503335514619152, 1.7109020731449616, + 1.8987229562200956, 2.062344637551236, 2.1997644655851913, + 2.312012380821364, 2.4011873830365613, 2.4694275952891047, + 2.5189768321831036, 2.5506787689743664, 2.5648549103050895, + 2.5616107850282392, 2.5408134296834266, 2.5035944200345215, + 2.451618496004917, 2.3873595585761938, 2.3139728787819887, + 2.2341997695949356, 2.1504587072784154, 2.0643994333305042, + 1.9769360988319002, 1.888702661515028, 1.800327550435249, + 1.7128251193093436, 1.627668129257882, 1.5465856088516308, + 1.4709847783547219, 1.4014562871808807, 1.3371697874968775, + 1.2756032030086148, 1.2129273669333571, 1.1445228091700852, + 1.0660705406472086, 0.9744723022372088, 0.8691021788370917, + 0.7517083483150718, 0.6267011279226052, 0.5003227154563193, + 0.37942982431029265, 0.27036648350541426, 0.17798232587800503, + 0.10496903716363078, 0.05143122378827952, 0.016038655796193395, + -0.004062181235410636, -0.011961327709533105, -0.0101956154707098, + -0.0008710869480094747, 0.014882625984078465, 0.03623313082291288, + 0.06222176358631025, 0.0915910972623307, 0.12229856518231516, + 0.1518354024718635, 0.17757341698046444, 0.1973294033940413, + 0.20972176885820384, 0.21469626835316585, 0.2133260948112442, + 0.2073768476440421, 0.1990365877897399, 0.1900303209248067, + 0.18130680233154303, 0.17289046749668902, 0.1640004693596466, + 0.1535132101548901, 0.14049574986588065, 0.12465189072777044, + 0.10661474625768717, 0.08774879266144607, 0.06988119130238807, + 0.054723548383701484, 0.04339571097900773, 0.036051074937626174, + 0.03201321768903578, 0.029962707042254934, 0.028485941277515237, + 0.026673729768040767, 0.024412726457981475, 0.022470882277400003, + 0.022231633353211926, 0.025105721577560757, 0.032018296991980916, + 0.04286657824032228, 0.05650763993221716, 0.0711879051375765, + 0.08518277586878333, 0.09786076594426199, 0.11051936823115975, + 0.12681760964238936, 0.15273766200335576, 0.19559772166728107, + 0.26291338915580165, 0.3609330988986262, 0.4923803651379539, + 0.6569585947521088 + ], + "pressure:J44:branch115_seg0": [ + 8399.200820433432, 9630.872717192879, 10960.219679461861, + 12322.026264557682, 13648.804337667023, 14882.037357733201, + 15980.340014539861, 16924.880729398374, 17708.64382295744, + 18340.6310865664, 18838.723611091777, 19212.886938531108, + 19475.915129334957, 19632.246299847095, 19680.268529566667, + 19623.11149885492, 19459.088205453078, 19196.51428231949, + 18850.301630380727, 18434.13439440684, 17968.728430206247, + 17470.695169271956, 16952.25329804667, 16422.68696648132, + 15886.091309791846, 15345.841780963257, 14806.541212227037, + 14275.244173065754, 13761.791303833616, 13276.911462691383, + 12828.087668369282, 12415.998917856625, 12032.704485065682, + 11658.989024834367, 11268.938159002702, 10833.701720815927, + 10329.207615025209, 9739.388967990903, 9066.396392327739, + 8327.440491296544, 7552.975439412345, 6784.9632295603, 6065.493344202857, + 5431.078328520421, 4905.606363412262, 4502.837626452811, + 4217.464717767655, 4037.0661411350993, 3944.796984469786, + 3919.7540721505466, 3948.7877250550996, 4021.1091043998026, + 4129.93876281324, 4271.736510336246, 4439.495811003816, 4624.183109976801, + 4812.322153731208, 4987.4815800383785, 5133.843940446661, + 5239.832663926564, 5299.217763723375, 5313.88379036633, 5293.708834643221, + 5249.798041372889, 5195.492780278202, 5140.477433610423, + 5088.205844193108, 5036.835942204104, 4980.379560003231, + 4911.652350404564, 4826.165395360295, 4723.542871359017, + 4609.709115464528, 4494.588614300162, 4389.52503669714, 4304.180400588539, + 4243.808353203924, 4207.26709675127, 4188.370448563976, 4178.671450410459, + 4169.726356138305, 4157.411893662193, 4143.129498571339, + 4133.247326560849, 4137.053190677118, 4162.586651784486, + 4213.774867946798, 4287.93237639399, 4375.491333382547, 4465.368856549077, + 4548.207098829766, 4623.313922987658, 4703.481147243862, + 4816.294678102018, 5002.645809609981, 5309.910893565887, + 5780.173468462744, 6449.852281755219, 7327.476306210116, 8399.200820433432 + ], + "flow:branch95_seg0:J45": [ + 1.3897663188708451, 1.8044644534631606, 2.26533708448417, + 2.7503217722086024, 3.2347530085851823, 3.6961022092032696, + 4.116677614901886, 4.485485860287658, 4.797283984591912, + 5.053419952986704, 5.257933643351097, 5.415631585072565, + 5.531424529840153, 5.607532520395675, 5.64497567917615, 5.643953769312938, + 5.604287920263098, 5.528114936339305, 5.418780129735372, + 5.281572867560993, 5.123173439219664, 4.949718151224962, + 4.766705937695266, 4.5779880994438145, 4.38584080411321, + 4.191767166054481, 3.9971419730829503, 3.8040803508624967, + 3.6156736673452947, 3.4356430072729256, 3.2671982994647246, + 3.1119436073484263, 2.9685109813541395, 2.8319459620872722, + 2.694268798925849, 2.5455655593267985, 2.3762071489036987, + 2.178975669581925, 1.9516428535409935, 1.6971846098670782, + 1.4244726583290537, 1.1465698017392885, 0.8783617921778847, + 0.6340028469331043, 0.42472224753089227, 0.2571166700518858, + 0.13235628102542638, 0.048052841044841525, -0.0016539931306992347, + -0.02337383174307938, -0.022921573112432363, -0.005098174465024134, + 0.027334405455017734, 0.07237609023851864, 0.12799398522330385, + 0.19151999782179369, 0.2586897632770116, 0.3241608022678053, + 0.38217848979090596, 0.42776922308526577, 0.45761304925149454, + 0.4711690413537525, 0.47035834018322, 0.4588604530480807, + 0.44136093804757337, 0.42178085612330074, 0.4024950819184907, + 0.38387240939861267, 0.36446220108926625, 0.3419140503960598, + 0.3141036170030493, 0.2801717571551952, 0.2411914395284722, + 0.19991108778784547, 0.16020869301393842, 0.12588843843306813, + 0.09961315023484878, 0.08205269538391718, 0.0720143868587404, + 0.06678941786317806, 0.06331459993852355, 0.05941709046579833, + 0.054567977583707836, 0.05016272899326651, 0.04903859482476529, + 0.05429280269059552, 0.06813360278835806, 0.09066640118805311, + 0.11975317766661062, 0.1517252297950639, 0.1827638152054177, + 0.21111200035386996, 0.23896044356032706, 0.27355471397558345, + 0.32727542291514466, 0.4157576893003908, 0.5555624498011157, + 0.7607890031808755, 1.0386901871856802, 1.3897663188708451 + ], + "pressure:branch95_seg0:J45": [ + 8199.227920919759, 9396.23160357296, 10699.0161508019, 12044.17041616362, + 13364.468683674671, 14600.668043670337, 15709.488078786993, + 16668.96929863255, 17469.651276744105, 18119.161859181528, + 18633.281542533077, 19022.73233909105, 19300.589022375403, + 19471.68581229283, 19535.699535298492, 19495.08174730104, + 19348.395883417368, 19103.159134680045, 18772.619193680475, + 18370.52547218091, 17916.812585456228, 17428.091256549757, + 16917.337626695986, 16394.196187812442, 15863.363626616207, + 15328.408731246302, 14793.660045050252, 14265.758899707516, + 13754.08390803911, 13269.177942838318, 12818.86030659841, + 12404.948318980327, 12020.789582065141, 11648.926116315764, + 11264.785207656572, 10840.150651052, 10350.39076801384, 9778.34640923463, + 9123.74717753798, 8401.006563026764, 7638.56204775063, 6876.395585469416, + 6155.961867418207, 5514.307243371096, 4977.215331166178, + 4559.688818763011, 4258.99917840124, 4064.492275203919, + 3959.6749281269526, 3924.52567809185, 3945.154562518664, + 4010.1137128700925, 4112.4489045583105, 4248.046398369729, + 4410.362704288793, 4590.964025699604, 4776.948434073726, + 4952.500838103437, 5101.887932264932, 5213.007066762275, + 5278.741231822432, 5299.997085614532, 5285.2720114338435, + 5245.248907706739, 5193.08806168705, 5138.757401873575, 5086.586691541805, + 5035.598078880887, 4980.431480137598, 4914.147164141374, + 4831.8808168951755, 4732.6630036311435, 4621.492603774315, + 4507.539788720186, 4401.882623595983, 4314.368971843516, + 4250.845926953397, 4211.052020075974, 4189.717671433393, + 4178.720028876233, 4169.664937780343, 4157.902121857959, + 4143.977720969128, 4133.470210392948, 4135.183013658992, + 4157.2422190673615, 4204.216817502374, 4274.314276070204, + 4359.090760570519, 4447.850243065363, 4530.926899362393, + 4606.387962093362, 4684.923698818821, 4791.681653657201, 4965.25395399901, + 5251.474932821143, 5693.185601376522, 6327.2664135206705, + 7165.699496532789, 8199.227920919759 + ], + "flow:J45:branch96_seg0": [ + 0.7340181714978201, 0.9533211547914917, 1.1971789417833205, + 1.4539308781553069, 1.710514327852626, 1.954983754366782, + 2.177943717096394, 2.373538478096174, 2.5389534136928837, + 2.6748832346397307, 2.783450057432568, 2.8671990182989915, + 2.9287374045187384, 2.9692485574579117, 2.9892834806160873, + 2.9889475372884804, 2.96814679803345, 2.9280018028939296, + 2.870270887605488, 2.797751706335492, 2.7139751732701143, + 2.622191964722777, 2.525322373348317, 2.425412659486669, + 2.3236759561273073, 2.2209116999714347, 2.1178460669973056, + 2.0155950794026665, 1.9157909349527875, 1.8204028040883424, + 1.7311341560449733, 1.6488474502411516, 1.5728340492868067, + 1.5004887560841271, 1.427601495250195, 1.3489285469998868, + 1.259364173125183, 1.1550703568144942, 1.0348387662335914, + 0.9002137300382871, 0.7558668678538285, 0.6086964669432192, + 0.4665788407163725, 0.33701837577390503, 0.2259859696082071, + 0.13699415752707222, 0.07069303770343129, 0.025840821038479622, + -0.0006597760436054448, -0.01230165142055051, -0.012171603494620025, + -0.002822063770582496, 0.014280768149584552, 0.03807034426725821, + 0.06747220431241327, 0.10108049335331887, 0.13664259062435527, + 0.17133471441957746, 0.2021097998400231, 0.22632781627923632, + 0.24221883397926627, 0.24948328722413732, 0.2491250239273913, + 0.2430849530733154, 0.23384263801197405, 0.2234793840426593, + 0.21326268702620677, 0.2033987332220981, 0.19312740186357055, + 0.18120705758170788, 0.16650868636560368, 0.14857029401637134, + 0.12794951241576183, 0.10609300395048885, 0.08505127504246518, + 0.06684140592766316, 0.05288112436501058, 0.04353526021473327, + 0.038183603440967946, 0.035396059243567965, 0.03355040605015135, + 0.03149026206142612, 0.028925493674905257, 0.026585533492279777, + 0.02596708682933072, 0.028711017963847667, 0.03599421155362248, + 0.04788366368702783, 0.06325888584046672, 0.08018291495319431, + 0.0966301579697827, 0.11165583929442503, 0.126396558866604, + 0.14466213821101845, 0.172983868429375, 0.21962612121710734, + 0.29336890428461776, 0.4016886740224141, 0.5484645098578582, + 0.7340181714978201 + ], + "pressure:J45:branch96_seg0": [ + 8199.227920919759, 9396.23160357296, 10699.0161508019, 12044.17041616362, + 13364.468683674671, 14600.668043670337, 15709.488078786993, + 16668.96929863255, 17469.651276744105, 18119.161859181528, + 18633.281542533077, 19022.73233909105, 19300.589022375403, + 19471.68581229283, 19535.699535298492, 19495.08174730104, + 19348.395883417368, 19103.159134680045, 18772.619193680475, + 18370.52547218091, 17916.812585456228, 17428.091256549757, + 16917.337626695986, 16394.196187812442, 15863.363626616207, + 15328.408731246302, 14793.660045050252, 14265.758899707516, + 13754.08390803911, 13269.177942838318, 12818.86030659841, + 12404.948318980327, 12020.789582065141, 11648.926116315764, + 11264.785207656572, 10840.150651052, 10350.39076801384, 9778.34640923463, + 9123.74717753798, 8401.006563026764, 7638.56204775063, 6876.395585469416, + 6155.961867418207, 5514.307243371096, 4977.215331166178, + 4559.688818763011, 4258.99917840124, 4064.492275203919, + 3959.6749281269526, 3924.52567809185, 3945.154562518664, + 4010.1137128700925, 4112.4489045583105, 4248.046398369729, + 4410.362704288793, 4590.964025699604, 4776.948434073726, + 4952.500838103437, 5101.887932264932, 5213.007066762275, + 5278.741231822432, 5299.997085614532, 5285.2720114338435, + 5245.248907706739, 5193.08806168705, 5138.757401873575, 5086.586691541805, + 5035.598078880887, 4980.431480137598, 4914.147164141374, + 4831.8808168951755, 4732.6630036311435, 4621.492603774315, + 4507.539788720186, 4401.882623595983, 4314.368971843516, + 4250.845926953397, 4211.052020075974, 4189.717671433393, + 4178.720028876233, 4169.664937780343, 4157.902121857959, + 4143.977720969128, 4133.470210392948, 4135.183013658992, + 4157.2422190673615, 4204.216817502374, 4274.314276070204, + 4359.090760570519, 4447.850243065363, 4530.926899362393, + 4606.387962093362, 4684.923698818821, 4791.681653657201, 4965.25395399901, + 5251.474932821143, 5693.185601376522, 6327.2664135206705, + 7165.699496532789, 8199.227920919759 + ], + "flow:J45:branch111_seg0": [ + 0.6557481473730251, 0.8511432986716688, 1.0681581427008502, + 1.2963908940532956, 1.5242386807325565, 1.7411184548364875, + 1.9387338978054915, 2.111947382191483, 2.2583305708990284, + 2.3785367183469734, 2.474483585918529, 2.548432566773574, + 2.6026871253214137, 2.638283962937764, 2.6556921985600623, + 2.655006232024458, 2.6361411222296467, 2.6001131334453755, + 2.548509242129883, 2.4838211612255003, 2.409198265949548, + 2.327526186502185, 2.241383564346949, 2.1525754399571455, + 2.0621648479859025, 1.9708554660830482, 1.879295906085645, + 1.7884852714598307, 1.6998827323925072, 1.6152402031845834, + 1.536064143419751, 1.4630961571072745, 1.395676932067333, + 1.3314572060031455, 1.2666673036756537, 1.1966370123269112, + 1.1168429757785157, 1.0239053127674307, 0.9168040873074021, + 0.7969708798287909, 0.6686057904752253, 0.5378733347960692, + 0.41178295146151217, 0.29698447115919924, 0.19873627792268517, + 0.1201225125248137, 0.061663243321995125, 0.022212020006361917, + -0.00099421708709379, -0.011072180322528873, -0.010749969617812334, + -0.0022761106944416383, 0.013053637305433182, 0.034305745971260425, + 0.06052178091089056, 0.09043950446847482, 0.12204717265265629, + 0.15282608784822788, 0.1800686899508828, 0.20144140680602948, + 0.21539421527222832, 0.2216857541296152, 0.22123331625582876, + 0.2157754999747653, 0.20751830003559935, 0.19830147208064144, + 0.18923239489228397, 0.18047367617651455, 0.17133479922569572, + 0.16070699281435197, 0.14759493063744558, 0.13160146313882398, + 0.11324192711271037, 0.09381808383735664, 0.07515741797147321, + 0.05904703250540496, 0.04673202586983821, 0.038517435169183906, + 0.03383078341777246, 0.0313933586196101, 0.029764193888372224, + 0.027926828404372207, 0.025642483908802575, 0.023577195500986733, + 0.023071507995434573, 0.025581784726747846, 0.032139391234735575, + 0.04278273750102528, 0.05649429182614389, 0.07154231484186961, + 0.08613365723563501, 0.09945616105944492, 0.11256388469372301, + 0.12889257576456503, 0.15429155448576964, 0.19613156808328355, + 0.26219354551649793, 0.35910032915846135, 0.49022567732782213, + 0.6557481473730251 + ], + "pressure:J45:branch111_seg0": [ + 8199.227920919759, 9396.23160357296, 10699.0161508019, 12044.17041616362, + 13364.468683674671, 14600.668043670337, 15709.488078786993, + 16668.96929863255, 17469.651276744105, 18119.161859181528, + 18633.281542533077, 19022.73233909105, 19300.589022375403, + 19471.68581229283, 19535.699535298492, 19495.08174730104, + 19348.395883417368, 19103.159134680045, 18772.619193680475, + 18370.52547218091, 17916.812585456228, 17428.091256549757, + 16917.337626695986, 16394.196187812442, 15863.363626616207, + 15328.408731246302, 14793.660045050252, 14265.758899707516, + 13754.08390803911, 13269.177942838318, 12818.86030659841, + 12404.948318980327, 12020.789582065141, 11648.926116315764, + 11264.785207656572, 10840.150651052, 10350.39076801384, 9778.34640923463, + 9123.74717753798, 8401.006563026764, 7638.56204775063, 6876.395585469416, + 6155.961867418207, 5514.307243371096, 4977.215331166178, + 4559.688818763011, 4258.99917840124, 4064.492275203919, + 3959.6749281269526, 3924.52567809185, 3945.154562518664, + 4010.1137128700925, 4112.4489045583105, 4248.046398369729, + 4410.362704288793, 4590.964025699604, 4776.948434073726, + 4952.500838103437, 5101.887932264932, 5213.007066762275, + 5278.741231822432, 5299.997085614532, 5285.2720114338435, + 5245.248907706739, 5193.08806168705, 5138.757401873575, 5086.586691541805, + 5035.598078880887, 4980.431480137598, 4914.147164141374, + 4831.8808168951755, 4732.6630036311435, 4621.492603774315, + 4507.539788720186, 4401.882623595983, 4314.368971843516, + 4250.845926953397, 4211.052020075974, 4189.717671433393, + 4178.720028876233, 4169.664937780343, 4157.902121857959, + 4143.977720969128, 4133.470210392948, 4135.183013658992, + 4157.2422190673615, 4204.216817502374, 4274.314276070204, + 4359.090760570519, 4447.850243065363, 4530.926899362393, + 4606.387962093362, 4684.923698818821, 4791.681653657201, 4965.25395399901, + 5251.474932821143, 5693.185601376522, 6327.2664135206705, + 7165.699496532789, 8199.227920919759 + ], + "flow:branch99_seg0:J46": [ + 1.6981352660163684, 2.1685282634190877, 2.670304811955378, + 3.17733692511152, 3.663142948279887, 4.106447340825758, 4.493287944976981, + 4.818144588018886, 5.08092761964737, 5.287387533040496, 5.444884330989389, + 5.55865070952272, 5.6336390415320725, 5.670851454825024, + 5.669867850950981, 5.630926755408732, 5.553598974726212, + 5.441655880989205, 5.300136262487957, 5.135338836081224, + 4.955254848679846, 4.765753285457285, 4.5715514322985324, + 4.375376632847343, 4.178223791126081, 3.98095678624712, + 3.7849273469249196, 3.5927774754990125, 3.4083244856808803, + 3.235676325039709, 3.077556875767547, 2.9339789825169063, + 2.8011726254688267, 2.671124819538059, 2.5332877831398632, + 2.376192402129425, 2.190519621010833, 1.9709721726174492, + 1.719319310643377, 1.443184522145578, 1.1559118377356608, + 0.8742664581868904, 0.6147563503996237, 0.391036312098546, + 0.21176470156387509, 0.08037088675588458, -0.006687910638087542, + -0.05489942187839411, -0.0725174455388959, -0.06736638309517444, + -0.044610522485003384, -0.008264419592331568, 0.040023453040595965, + 0.09905337153537244, 0.16652667238010224, 0.2390867367466385, + 0.3113549608377867, 0.37700796065669406, 0.4300382305275572, + 0.46615656142173184, 0.48356930112087304, 0.4837992562674651, + 0.47105471186727016, 0.45039206620799466, 0.4272704513655961, + 0.40518828832260617, 0.385249215601042, 0.36625077913587656, + 0.3453608700838742, 0.3195261885152631, 0.28688838668084415, + 0.24755862498599435, 0.20420446015472224, 0.16094805119074237, + 0.12249131965428302, 0.09256329848002762, 0.07290520296999488, + 0.06259276601210255, 0.05882786318256992, 0.05783079995395118, + 0.05620547200867958, 0.0524886626587117, 0.047503037081170894, + 0.04415623522488073, 0.046385658774078777, 0.05747693200955459, + 0.07879928721095181, 0.10886248610812625, 0.1436191373820439, + 0.17826473457206995, 0.20899458178199248, 0.23581030915767096, + 0.26424973047293104, 0.3057659533669975, 0.3770124018420165, + 0.4964471597074302, 0.6808430615641993, 0.9429558983902077, + 1.2840166963021802, 1.6981352660163684 + ], + "pressure:branch99_seg0:J46": [ + 9585.80444406688, 11027.716186326288, 12521.060820104994, + 13989.48004047372, 15363.338834441884, 16586.98330429306, + 17628.792142415125, 18487.90830270668, 19171.48567133446, + 19695.180780965555, 20091.008169309745, 20364.89099329194, + 20528.257385995294, 20584.89293318255, 20525.63363987589, + 20358.320570777534, 20080.354218064, 19704.002566408482, + 19254.363539470593, 18744.785609578863, 18200.410956231954, + 17638.22289041604, 17066.11265839466, 16491.530273785444, + 15915.239183973523, 15339.460334925723, 14770.319890373843, + 14217.098341861078, 13692.139110224385, 13207.099315159077, + 12767.494371539999, 12367.21820730977, 11991.0249994865, + 11609.328244002805, 11188.242867806193, 10694.966530121967, + 10108.364112811934, 9418.196615487774, 8640.029850527604, + 7807.484659643547, 6962.4328843784915, 6158.742756704009, + 5442.94974424255, 4849.137796798034, 4390.924231614149, + 4075.5464731070065, 3882.9996163073392, 3790.5482692649075, + 3779.2140894658633, 3822.1903885567713, 3910.042817083853, + 4035.285194478789, 4191.506818493621, 4378.409895711911, + 4585.915502312726, 4801.471237145951, 5008.465457115039, + 5186.728866884812, 5319.912584093491, 5399.437645127837, + 5424.2491059545555, 5401.489077067093, 5349.4222784411195, + 5281.781872037696, 5212.983607626126, 5151.612306107579, + 5096.367479466944, 5040.618368107292, 4974.909322605652, + 4890.6411282337085, 4785.398445563635, 4662.094658262648, + 4531.895056679182, 4409.043031392007, 4306.437996804724, + 4232.800109504058, 4190.1326342466255, 4172.339280308396, + 4167.933779921313, 4166.693886392639, 4159.65027028381, 4145.555154115848, + 4130.600296122557, 4125.576301838986, 4142.521460558496, + 4189.054166464669, 4265.439069676001, 4364.131641411603, + 4469.020612860541, 4566.761580607431, 4649.812654479745, 4724.45120419098, + 4815.519267747935, 4964.695077191236, 5226.373433778618, + 5657.257310987249, 6295.398720148946, 7175.285477230954, + 8285.505709864088, 9585.80444406688 + ], + "flow:J46:branch100_seg0": [ + 0.6244421009073824, 0.7968063117210489, 0.9803772420121755, + 1.1655950727405229, 1.3427993393782658, 1.5042667475569245, + 1.6449694696571997, 1.7629793030759398, 1.8583269437645542, + 1.9331502161754441, 1.9901721966082906, 2.0312769645235385, + 2.058261600708924, 2.071470005995237, 2.0707208646925888, + 2.0561165987517507, 2.027495676196969, 1.9862643604639727, + 1.934292478248383, 1.8738803059042946, 1.8079619681813857, + 1.7386669667122259, 1.6676983586030436, 1.5960367163028735, + 1.5240284138242604, 1.4519862566956376, 1.3804109043639072, + 1.310278942941601, 1.2429955071048748, 1.1800627200317269, + 1.1224622189620328, 1.0701681521105826, 1.0217686368222922, + 0.974295163621114, 0.9238697034956447, 0.8662966476977108, + 0.7981964510062356, 0.717673607540573, 0.6254412409781933, + 0.5243496010160852, 0.41931970848120304, 0.31651084950570785, + 0.22195086420302867, 0.140598133625125, 0.0755591652549678, + 0.028044282538585045, -0.0033099916638090784, -0.020537061124822245, + -0.026663585518331454, -0.024553578388084675, -0.01606544915363012, + -0.0026485487604635425, 0.015108572515625735, 0.03677838452986123, + 0.06150854055742128, 0.08805944092304085, 0.11445114977835673, + 0.13836293552360968, 0.1576044765890682, 0.1706270227642134, + 0.17680248695145942, 0.17671497912621734, 0.1719324869156917, + 0.16430855591810603, 0.1558374897107195, 0.1477814681570818, + 0.14051819936205642, 0.13358565909409412, 0.1259346311073562, + 0.11644768291335661, 0.10445917048623138, 0.09002819872106285, + 0.07415396820163772, 0.058357668900358206, 0.044360244936957796, + 0.03351387238823639, 0.02643502488550225, 0.0227607704803595, + 0.021448374083686748, 0.021110922457598658, 0.020511451826634376, + 0.019134108319858723, 0.017302795102234845, 0.016099393978182656, + 0.016971233221372003, 0.021111797670089902, 0.029000529958068705, + 0.04006733837868437, 0.05280717044426236, 0.06545916489122197, + 0.07664622210895584, 0.08640649999825951, 0.0968183629239337, + 0.11212357948752445, 0.13845502021810313, 0.18257539372332504, + 0.25058107694414367, 0.3471001015947517, 0.4724700756672985, + 0.6244421009073824 + ], + "pressure:J46:branch100_seg0": [ + 9585.80444406688, 11027.716186326288, 12521.060820104994, + 13989.48004047372, 15363.338834441884, 16586.98330429306, + 17628.792142415125, 18487.90830270668, 19171.48567133446, + 19695.180780965555, 20091.008169309745, 20364.89099329194, + 20528.257385995294, 20584.89293318255, 20525.63363987589, + 20358.320570777534, 20080.354218064, 19704.002566408482, + 19254.363539470593, 18744.785609578863, 18200.410956231954, + 17638.22289041604, 17066.11265839466, 16491.530273785444, + 15915.239183973523, 15339.460334925723, 14770.319890373843, + 14217.098341861078, 13692.139110224385, 13207.099315159077, + 12767.494371539999, 12367.21820730977, 11991.0249994865, + 11609.328244002805, 11188.242867806193, 10694.966530121967, + 10108.364112811934, 9418.196615487774, 8640.029850527604, + 7807.484659643547, 6962.4328843784915, 6158.742756704009, + 5442.94974424255, 4849.137796798034, 4390.924231614149, + 4075.5464731070065, 3882.9996163073392, 3790.5482692649075, + 3779.2140894658633, 3822.1903885567713, 3910.042817083853, + 4035.285194478789, 4191.506818493621, 4378.409895711911, + 4585.915502312726, 4801.471237145951, 5008.465457115039, + 5186.728866884812, 5319.912584093491, 5399.437645127837, + 5424.2491059545555, 5401.489077067093, 5349.4222784411195, + 5281.781872037696, 5212.983607626126, 5151.612306107579, + 5096.367479466944, 5040.618368107292, 4974.909322605652, + 4890.6411282337085, 4785.398445563635, 4662.094658262648, + 4531.895056679182, 4409.043031392007, 4306.437996804724, + 4232.800109504058, 4190.1326342466255, 4172.339280308396, + 4167.933779921313, 4166.693886392639, 4159.65027028381, 4145.555154115848, + 4130.600296122557, 4125.576301838986, 4142.521460558496, + 4189.054166464669, 4265.439069676001, 4364.131641411603, + 4469.020612860541, 4566.761580607431, 4649.812654479745, 4724.45120419098, + 4815.519267747935, 4964.695077191236, 5226.373433778618, + 5657.257310987249, 6295.398720148946, 7175.285477230954, + 8285.505709864088, 9585.80444406688 + ], + "flow:J46:branch143_seg0": [ + 1.0736931651089865, 1.3717219516980388, 1.6899275699432021, + 2.0117418523709976, 2.3203436089016214, 2.6021805932688338, + 2.84831847531978, 3.055165284942946, 3.2226006758828154, + 3.354237316865053, 3.454712134381098, 3.5273737449991804, + 3.575377440823149, 3.5993814488297864, 3.5991469862583907, + 3.574810156656981, 3.5261032985292426, 3.4553915205252332, + 3.365843784239575, 3.261458530176929, 3.14729288049846, 3.027086318745058, + 2.9038530736954886, 2.7793399165444703, 2.6541953773018223, + 2.5289705295514833, 2.4045164425610133, 2.282498532557412, + 2.1653289785760053, 2.0556136050079825, 1.955094656805514, + 1.8638108304063228, 1.779403988646535, 1.696829655916944, + 1.6094180796442186, 1.5098957544317144, 1.3923231700045977, + 1.2532985650768762, 1.093878069665184, 0.9188349211294924, + 0.7365921292544577, 0.5577556086811825, 0.392805486196595, + 0.25043817847342104, 0.13620553630890728, 0.05232660421729952, + -0.0033779189742784627, -0.03436236075357186, -0.04585386002056444, + -0.04281280470708977, -0.028545073331373263, -0.005615870831868026, + 0.02491488052497023, 0.06227498700551122, 0.10501813182268094, + 0.15102729582359767, 0.19690381105942995, 0.23864502513308442, + 0.27243375393848895, 0.2955295386575186, 0.3067668141694137, + 0.30708427714124786, 0.29912222495157853, 0.2860835102898886, + 0.2714329616548768, 0.2574068201655243, 0.24473101623898563, + 0.23266512004178252, 0.21942623897651808, 0.2030785056019065, + 0.18242921619461275, 0.15753042626493155, 0.13005049195308452, + 0.10259038229038416, 0.07813107471732522, 0.05904942609179123, + 0.046470178084492636, 0.03983199553174304, 0.03737948909888317, + 0.0367198774963525, 0.035694020182045226, 0.03335455433885298, + 0.03020024197893604, 0.02805684124669807, 0.02941442555270678, + 0.036365134339464686, 0.049798757252883095, 0.06879514772944188, + 0.09081196693778157, 0.11280556968084798, 0.13234835967303665, + 0.14940380915941143, 0.1674313675489974, 0.1936423738794731, + 0.23855738162391335, 0.3138717659841052, 0.43026198462005555, + 0.595855796795456, 0.8115466206348818, 1.0736931651089865 + ], + "pressure:J46:branch143_seg0": [ + 9585.80444406688, 11027.716186326288, 12521.060820104994, + 13989.48004047372, 15363.338834441884, 16586.98330429306, + 17628.792142415125, 18487.90830270668, 19171.48567133446, + 19695.180780965555, 20091.008169309745, 20364.89099329194, + 20528.257385995294, 20584.89293318255, 20525.63363987589, + 20358.320570777534, 20080.354218064, 19704.002566408482, + 19254.363539470593, 18744.785609578863, 18200.410956231954, + 17638.22289041604, 17066.11265839466, 16491.530273785444, + 15915.239183973523, 15339.460334925723, 14770.319890373843, + 14217.098341861078, 13692.139110224385, 13207.099315159077, + 12767.494371539999, 12367.21820730977, 11991.0249994865, + 11609.328244002805, 11188.242867806193, 10694.966530121967, + 10108.364112811934, 9418.196615487774, 8640.029850527604, + 7807.484659643547, 6962.4328843784915, 6158.742756704009, + 5442.94974424255, 4849.137796798034, 4390.924231614149, + 4075.5464731070065, 3882.9996163073392, 3790.5482692649075, + 3779.2140894658633, 3822.1903885567713, 3910.042817083853, + 4035.285194478789, 4191.506818493621, 4378.409895711911, + 4585.915502312726, 4801.471237145951, 5008.465457115039, + 5186.728866884812, 5319.912584093491, 5399.437645127837, + 5424.2491059545555, 5401.489077067093, 5349.4222784411195, + 5281.781872037696, 5212.983607626126, 5151.612306107579, + 5096.367479466944, 5040.618368107292, 4974.909322605652, + 4890.6411282337085, 4785.398445563635, 4662.094658262648, + 4531.895056679182, 4409.043031392007, 4306.437996804724, + 4232.800109504058, 4190.1326342466255, 4172.339280308396, + 4167.933779921313, 4166.693886392639, 4159.65027028381, 4145.555154115848, + 4130.600296122557, 4125.576301838986, 4142.521460558496, + 4189.054166464669, 4265.439069676001, 4364.131641411603, + 4469.020612860541, 4566.761580607431, 4649.812654479745, 4724.45120419098, + 4815.519267747935, 4964.695077191236, 5226.373433778618, + 5657.257310987249, 6295.398720148946, 7175.285477230954, + 8285.505709864088, 9585.80444406688 + ], + "flow:branch107_seg0:J47": [ + 2.069505548035455, 2.6636080442472863, 3.3082474129658017, + 3.9702835514095467, 4.615030171498411, 5.213228480892624, + 5.744134467554228, 6.197388317173372, 6.5704126151411435, + 6.869088233219578, 7.101528231535012, 7.275150668445269, + 7.396626768717775, 7.4678470545302975, 7.489090427064963, + 7.460078024599744, 7.380251522913675, 7.2534497195272225, + 7.0851510515701674, 6.8833966138837335, 6.658010979179962, + 6.4171182632071035, 6.167529757291438, 5.91343047030074, + 5.656782397182368, 5.398900149495338, 5.141401089078301, + 4.887385381920785, 4.641499864975508, 4.409082785657408, + 4.194213014606335, 3.9980394777656088, 3.8170069030432345, + 3.642274281914943, 3.461136425930337, 3.2590121267745706, + 3.023010872059223, 2.7448178569535377, 2.424359912703724, + 2.0691074905883293, 1.6945916448479428, 1.3212243380894708, + 0.9704375008071161, 0.6609725643291915, 0.4060500903061341, + 0.21181169130356584, 0.07624490280216335, -0.0066369948508078905, + -0.046846773519901665, -0.054283430127204095, -0.03647818351787146, + 0.0008436639464058648, 0.05503585888977957, 0.12423008329466603, + 0.20586024348050672, 0.29603048866795784, 0.38828881198429616, + 0.4747835804671317, 0.5475254000831856, 0.6002658035112426, + 0.6296206492980727, 0.6364854043032908, 0.6251350658184874, + 0.6017680115386986, 0.5733766346174751, 0.5449937023473758, + 0.5189044578906301, 0.4943466341623539, 0.4681768807005007, + 0.4365233953444782, 0.3965346960622556, 0.34769085239963055, + 0.2925703811169285, 0.23596734841854095, 0.18383857222848188, + 0.14137292036898252, 0.1115396159084614, 0.09407800526434254, + 0.08611504390340961, 0.08303993187395117, 0.08035634218786304, + 0.07553045959777539, 0.06881353816333446, 0.06326505488534492, + 0.06365911036430738, 0.07447162583998974, 0.09821627714185695, + 0.1338815788475029, 0.17718243102899725, 0.2221432074287236, + 0.2634195107789188, 0.299713361572686, 0.3362563540318001, + 0.3858422691375206, 0.4682992312796565, 0.6068775730703658, + 0.8243218486969092, 1.1384441998231674, 1.5549347124681308, + 2.069505548035455 + ], + "pressure:branch107_seg0:J47": [ + 9198.70450218019, 10577.044596074036, 12020.913956403518, + 13457.206496571254, 14815.038544812944, 16037.962894191573, + 17092.23956044878, 17972.025661534768, 18679.737603552254, + 19232.73418411277, 19657.322403791393, 19961.45183579691, + 20158.03180279478, 20248.915238553753, 20227.879580092052, + 20099.918852461233, 19861.896551850245, 19525.779032741888, + 19112.162593035184, 18635.389465579417, 18119.807844451916, + 17581.811200016924, 17031.205956869628, 16475.59220067028, + 15916.344713881257, 15355.835661840496, 14799.307373706777, + 14255.349895751859, 13735.716714385315, 13252.186464150214, + 12811.05467623764, 12408.999328207761, 12032.801856759466, + 11655.927209640286, 11246.707873497406, 10773.030184157271, + 10212.176294242025, 9552.084261493024, 8804.693013922943, + 7998.169455782012, 7172.230703723598, 6377.668799399065, 5659.84983692069, + 5053.919772136052, 4577.172794337078, 4237.554679330841, + 4018.9349697495863, 3901.8723886178245, 3866.2391928640027, + 3887.4441182527194, 3954.9533172479164, 4059.9765472339213, + 4197.410528941563, 4365.939137965219, 4557.024486700015, + 4759.798493014819, 4958.167430015192, 5133.114440405529, + 5268.197358718604, 5353.670677137579, 5386.481592272703, + 5372.895391033691, 5328.391058815507, 5266.242504076277, + 5201.224935959035, 5142.046220408132, 5088.836240414022, + 5036.217447429935, 4975.301848314062, 4897.5180941992385, + 4799.413747628819, 4682.885479043202, 4557.629825724801, + 4436.726964588247, 4333.081280604816, 4256.009185797826, + 4208.603529918856, 4186.063304080958, 4178.545122285242, + 4175.693362065899, 4168.442993532811, 4154.569382345512, 4138.78544712097, + 4130.809134779591, 4142.280772521351, 4181.290569475699, + 4249.643049893259, 4340.9878536931255, 4441.1345786516, 4536.969057320089, + 4619.652496682237, 4692.976711891848, 4777.903847750787, + 4911.998328884462, 5145.974557733776, 5534.011660321448, + 6117.205832046234, 6930.104762505705, 7967.319867184211, 9198.70450218019 + ], + "flow:J47:branch108_seg0": [ + 0.6253936793424686, 0.800959174904293, 0.9893581768650341, + 1.1808575132179628, 1.3654220687411545, 1.534905985310589, + 1.6838209823459103, 1.809816976128853, 1.9125759037134933, + 1.9942160451382631, 2.057302260563161, 2.1038539296632877, + 2.1357549337897503, 2.153327147196233, 2.156485707141366, + 2.14518233715561, 2.1192157806732177, 2.0799110946003876, + 2.029015863920008, 1.968926436007391, 1.9026030612811449, + 1.8323039318765886, 1.7598860727702417, 1.686429204303131, + 1.6123634808632403, 1.538028142685167, 1.4639129403993396, + 1.3909900879042663, 1.3206842593084855, 1.2545706149768434, + 1.1937474626093585, 1.1383634955238318, 1.0871357511153432, + 1.0372018642178928, 0.9846841292387325, 0.9252839981386493, + 0.8554005879969282, 0.7728967710554204, 0.6782332113641818, + 0.574028270226059, 0.4651779021823537, 0.3578694427792944, + 0.2583200271436387, 0.1717600178869012, 0.10164789357933174, + 0.04937446393205679, 0.013854170890518762, -0.0068816880806595515, + -0.015899393546369774, -0.01609551901036421, -0.009470853485841276, + 0.002434585578566247, 0.01901161847219417, 0.03979833426422133, + 0.06399549991160548, 0.09040986519405209, 0.11705270794100579, + 0.14157452906450915, 0.16167648287662506, 0.1756687274528157, + 0.18274568264692442, 0.18339516775068382, 0.17907144853065296, + 0.171647346807249, 0.16317625508376535, 0.15500809848494052, + 0.14762898713082956, 0.1406460639265478, 0.13302160150171896, + 0.12359795184885192, 0.11161835443637382, 0.09706320835559717, + 0.08085583622882016, 0.06450448277123165, 0.04978221413728168, + 0.03813756467814692, 0.030297816802220354, 0.025999119560658902, + 0.024259972406300827, 0.023666315202067502, 0.022923963661821697, + 0.021420063977110063, 0.019390774991202356, 0.0178748074041016, + 0.01834204975390776, 0.022060918696021167, 0.029636447742645584, + 0.040584224583213535, 0.053470444450677924, 0.06649162489542287, + 0.07815333607203172, 0.08831526419391447, 0.09886492054269987, + 0.11392016941477559, 0.13958767016309492, 0.18276073810993465, + 0.24990779070832364, 0.3459192842743115, 0.47169666958400697, + 0.6253936793424686 + ], + "pressure:J47:branch108_seg0": [ + 9198.70450218019, 10577.044596074036, 12020.913956403518, + 13457.206496571254, 14815.038544812944, 16037.962894191573, + 17092.23956044878, 17972.025661534768, 18679.737603552254, + 19232.73418411277, 19657.322403791393, 19961.45183579691, + 20158.03180279478, 20248.915238553753, 20227.879580092052, + 20099.918852461233, 19861.896551850245, 19525.779032741888, + 19112.162593035184, 18635.389465579417, 18119.807844451916, + 17581.811200016924, 17031.205956869628, 16475.59220067028, + 15916.344713881257, 15355.835661840496, 14799.307373706777, + 14255.349895751859, 13735.716714385315, 13252.186464150214, + 12811.05467623764, 12408.999328207761, 12032.801856759466, + 11655.927209640286, 11246.707873497406, 10773.030184157271, + 10212.176294242025, 9552.084261493024, 8804.693013922943, + 7998.169455782012, 7172.230703723598, 6377.668799399065, 5659.84983692069, + 5053.919772136052, 4577.172794337078, 4237.554679330841, + 4018.9349697495863, 3901.8723886178245, 3866.2391928640027, + 3887.4441182527194, 3954.9533172479164, 4059.9765472339213, + 4197.410528941563, 4365.939137965219, 4557.024486700015, + 4759.798493014819, 4958.167430015192, 5133.114440405529, + 5268.197358718604, 5353.670677137579, 5386.481592272703, + 5372.895391033691, 5328.391058815507, 5266.242504076277, + 5201.224935959035, 5142.046220408132, 5088.836240414022, + 5036.217447429935, 4975.301848314062, 4897.5180941992385, + 4799.413747628819, 4682.885479043202, 4557.629825724801, + 4436.726964588247, 4333.081280604816, 4256.009185797826, + 4208.603529918856, 4186.063304080958, 4178.545122285242, + 4175.693362065899, 4168.442993532811, 4154.569382345512, 4138.78544712097, + 4130.809134779591, 4142.280772521351, 4181.290569475699, + 4249.643049893259, 4340.9878536931255, 4441.1345786516, 4536.969057320089, + 4619.652496682237, 4692.976711891848, 4777.903847750787, + 4911.998328884462, 5145.974557733776, 5534.011660321448, + 6117.205832046234, 6930.104762505705, 7967.319867184211, 9198.70450218019 + ], + "flow:J47:branch142_seg0": [ + 1.4441118686929864, 1.862648869342994, 2.3188892361007674, + 2.7894260381915843, 3.2496081027572576, 3.678322495582035, + 4.060313485208318, 4.387571341044519, 4.6578367114276515, + 4.874872188081314, 5.0442259709718495, 5.1712967387819795, + 5.260871834928026, 5.314519907334065, 5.332604719923596, + 5.314895687444134, 5.261035742240458, 5.1735386249268345, + 5.05613518765016, 4.914470177876342, 4.755407917898816, 4.584814331330514, + 4.407643684521196, 4.227001265997608, 4.044418916319128, + 3.860872006810173, 3.677488148678963, 3.496395294016519, + 3.320815605667023, 3.1545121706805648, 3.0004655519969767, + 2.8596759822417774, 2.7298711519278913, 2.6050724176970492, + 2.476452296691604, 2.3337281286359213, 2.1676102840622953, + 1.9719210858981175, 1.7461267013395416, 1.4950792203622707, + 1.2294137426655891, 0.9633548953101764, 0.7121174736634774, + 0.48921254644229023, 0.3044021967268024, 0.16243722737150898, + 0.062390731911644605, 0.000244693229851663, -0.030947379973531895, + -0.03818791111683989, -0.027007330032030184, -0.0015909216321603806, + 0.03602424041758539, 0.08443174903044467, 0.14186474356890127, + 0.20562062347390567, 0.27123610404329035, 0.3332090514026225, + 0.3858489172065606, 0.42459707605842684, 0.4468749666511482, + 0.4530902365526071, 0.44606361728783456, 0.4301206647314498, + 0.41020037953370964, 0.38998560386243525, 0.3712754707598006, + 0.35370057023580614, 0.33515527919878174, 0.31292544349562634, + 0.2849163416258817, 0.25062764404403326, 0.21171454488810834, + 0.1714628656473093, 0.1340563580912002, 0.1032353556908356, + 0.08124179910624105, 0.06807888570368363, 0.06185507149710878, + 0.05937361667188367, 0.05743237852604134, 0.05411039562066533, + 0.049422763172132074, 0.04539024748124332, 0.04531706061039965, + 0.05241070714396857, 0.06857982939921137, 0.09329735426428934, + 0.12371198657831932, 0.1556515825333007, 0.18526617470688703, + 0.21139809737877152, 0.23739143348910033, 0.27192209972274506, + 0.3287115611165615, 0.4241168349604311, 0.5744140579885856, + 0.7925249155488561, 1.0832380428841235, 1.4441118686929864 + ], + "pressure:J47:branch142_seg0": [ + 9198.70450218019, 10577.044596074036, 12020.913956403518, + 13457.206496571254, 14815.038544812944, 16037.962894191573, + 17092.23956044878, 17972.025661534768, 18679.737603552254, + 19232.73418411277, 19657.322403791393, 19961.45183579691, + 20158.03180279478, 20248.915238553753, 20227.879580092052, + 20099.918852461233, 19861.896551850245, 19525.779032741888, + 19112.162593035184, 18635.389465579417, 18119.807844451916, + 17581.811200016924, 17031.205956869628, 16475.59220067028, + 15916.344713881257, 15355.835661840496, 14799.307373706777, + 14255.349895751859, 13735.716714385315, 13252.186464150214, + 12811.05467623764, 12408.999328207761, 12032.801856759466, + 11655.927209640286, 11246.707873497406, 10773.030184157271, + 10212.176294242025, 9552.084261493024, 8804.693013922943, + 7998.169455782012, 7172.230703723598, 6377.668799399065, 5659.84983692069, + 5053.919772136052, 4577.172794337078, 4237.554679330841, + 4018.9349697495863, 3901.8723886178245, 3866.2391928640027, + 3887.4441182527194, 3954.9533172479164, 4059.9765472339213, + 4197.410528941563, 4365.939137965219, 4557.024486700015, + 4759.798493014819, 4958.167430015192, 5133.114440405529, + 5268.197358718604, 5353.670677137579, 5386.481592272703, + 5372.895391033691, 5328.391058815507, 5266.242504076277, + 5201.224935959035, 5142.046220408132, 5088.836240414022, + 5036.217447429935, 4975.301848314062, 4897.5180941992385, + 4799.413747628819, 4682.885479043202, 4557.629825724801, + 4436.726964588247, 4333.081280604816, 4256.009185797826, + 4208.603529918856, 4186.063304080958, 4178.545122285242, + 4175.693362065899, 4168.442993532811, 4154.569382345512, 4138.78544712097, + 4130.809134779591, 4142.280772521351, 4181.290569475699, + 4249.643049893259, 4340.9878536931255, 4441.1345786516, 4536.969057320089, + 4619.652496682237, 4692.976711891848, 4777.903847750787, + 4911.998328884462, 5145.974557733776, 5534.011660321448, + 6117.205832046234, 6930.104762505705, 7967.319867184211, 9198.70450218019 + ], + "flow:branch112_seg0:J48": [ + 2.4742612865651807, 3.1950794128172326, 3.9851996338794304, + 4.805408176286221, 5.613254209318862, 6.371458009762304, 7.05216750587276, + 7.639818055908055, 8.128321778737599, 8.522449401185774, + 8.830968544280879, 9.062456722720169, 9.225537451355168, + 9.323584375536672, 9.357827735619999, 9.328799021615374, + 9.236135474196855, 9.08429768155755, 8.879771965326665, 8.63188051354477, + 8.352463277285146, 8.051672553473841, 7.738275366193239, + 7.418150965313281, 7.0944081662174785, 6.769163265503181, + 6.444614321435223, 6.124450471300032, 5.814101356997493, + 5.519897823266334, 5.246897877662316, 4.9969293311036855, + 4.766466672443542, 4.545635556822332, 4.319732136417969, + 4.071316019157752, 3.7843509465462937, 3.447607111459033, + 3.0593354272105397, 2.6268045472895145, 2.167138082462195, + 1.7041454133057705, 1.263687677168497, 0.8693430196336427, + 0.5387305832647786, 0.2813971543657855, 0.09695477570403294, + -0.020294144935058066, -0.0814317097771642, -0.09839393904742115, + -0.08076832625926737, -0.03636010472112136, 0.030600952547559818, + 0.1171317393327769, 0.2196605857708284, 0.3333955605075324, + 0.4506762766575937, 0.5621029522437765, 0.6579378154921468, + 0.7302420571849828, 0.7742305899576565, 0.7900965152671837, + 0.7822743700795671, 0.7576989339747991, 0.7247187079988294, + 0.6898055965398321, 0.6563930388615945, 0.6243836452882482, + 0.59069022851531, 0.5510197197860309, 0.5019209472054872, + 0.4423955109623768, 0.3749994715268621, 0.3050114544144104, + 0.2393358217399312, 0.1843302961535607, 0.14402252762692955, + 0.1187611435134524, 0.1057342054262755, 0.09985074536992226, + 0.09575912000137089, 0.09010991369712397, 0.08264196292529413, + 0.07640892152555345, 0.07670959173170772, 0.0888349512954856, + 0.1161092997905256, 0.15793515564909816, 0.20979243357642033, + 0.2649609191248284, 0.31701573820722406, 0.36383737707443353, + 0.41071378991569624, 0.4718524729808758, 0.570111958475007, + 0.7331356711684919, 0.9887716289427289, 1.3600044921043288, + 1.8560345540387544, 2.4742612865651807 + ], + "pressure:branch112_seg0:J48": [ + 9223.39023987699, 10608.376426716031, 12061.317259521311, + 13508.742796308221, 14880.258657066852, 16118.10487206625, + 17186.72297799533, 18079.49269339821, 18797.98240375637, + 19356.888534779828, 19784.02849985987, 20086.971794565103, + 20278.47532112166, 20362.525440592384, 20332.703041186684, + 20195.43395990265, 19948.2452962684, 19602.078815569377, + 19178.87541438519, 18692.268793324838, 18166.232397515894, + 17617.874109250955, 17056.72385935963, 16490.971616808318, + 15922.442563516815, 15353.654358169091, 14790.09909383144, + 14240.271790066408, 13715.696304000834, 13227.90050475645, + 12783.10563638564, 12377.66860854407, 11998.712701506485, + 11619.824220127677, 11209.412197679676, 10735.46706114176, + 10175.350321664337, 9516.34943562744, 8769.532373404658, + 7963.065742181103, 7135.463117659414, 6337.400594162551, + 5614.598079300976, 5002.7312963411205, 4519.420513401969, + 4174.179183177929, 3951.9676047467806, 3833.1820510539646, + 3799.0365640351633, 3824.137358889171, 3897.4619507944553, + 4010.021358688417, 4155.338910244574, 4331.909907332895, + 4530.634600651291, 4740.283217753016, 4945.074282112934, + 5125.911118358908, 5266.36235003737, 5356.744631967167, + 5393.9562652885825, 5383.5513207231115, 5341.237966380526, + 5280.048004230954, 5214.434397532558, 5153.653463334939, + 5098.144749463123, 5042.924912485352, 4979.5930992040885, + 4899.833013737846, 4800.346868580523, 4682.863836224976, + 4556.795899044547, 4435.068683414856, 4330.300020859915, + 4251.756918429863, 4202.710581624444, 4178.699571206017, + 4170.001190157981, 4166.716335667998, 4159.801202650722, + 4146.878460295182, 4132.469610364656, 4125.941608822215, + 4138.617799846305, 4178.429306760086, 4247.124567262793, + 4338.782737136557, 4439.327015442527, 4535.974757595851, + 4620.2500950502135, 4695.85613138752, 4783.545447454784, + 4920.549376831851, 5157.2048578682825, 5547.878307870904, + 6132.901843745087, 6947.786080045362, 7988.338784129362, 9223.39023987699 + ], + "flow:J48:branch113_seg0": [ + 1.7693756186445178, 2.2918799312755573, 2.868688288226766, + 3.47143763636171, 4.069030797634585, 4.633557710421751, 5.143611970189147, + 5.586497860593209, 5.956796694110499, 6.257127462876196, + 6.4933688902191955, 6.671920777364627, 6.799162681175073, + 6.877943816220137, 6.909500065636316, 6.894220371104156, + 6.831937999744121, 6.725600629800563, 6.579674933084635, + 6.400872218308872, 6.197677358402964, 5.977678005117477, + 5.747529978175535, 5.511804017339834, 5.273063570906106, + 5.032987079543944, 4.79318905249258, 4.556273984855904, 4.326095957350885, + 4.107244373437156, 3.903561322455767, 3.716712404594358, + 3.544565268110359, 3.380434591060265, 3.213931127858022, + 3.032437336113751, 2.8239878707886312, 2.579872464178015, + 2.2979348474944956, 1.9826322351936143, 1.6457411219546043, + 1.3041532815158245, 0.9767377719028445, 0.6811037718568289, + 0.43084184949096244, 0.23369888366444824, 0.09035363014713212, + -0.00281646677119551, -0.05356839790064137, -0.07051864301165735, + -0.060971869645264326, -0.030882702199211777, 0.016351453891267825, + 0.0783429068492998, 0.15251904518234993, 0.2354525706181544, + 0.32171398983877786, 0.40454525575513733, 0.4767883105688489, + 0.5324123618723838, 0.5675868856428882, 0.5820265107188797, + 0.5785572323564149, 0.5620726927238247, 0.5386112681055497, + 0.51307906935908, 0.4883049936472821, 0.46454678124000864, + 0.439804186726644, 0.41103652109590866, 0.3756248294466557, + 0.3326201804098228, 0.28358172126408293, 0.23214085140657945, + 0.18324774662873458, 0.14163412189442334, 0.11047849253919088, + 0.09037575350270322, 0.07956259714129575, 0.07447951337837223, + 0.07122348546541003, 0.06714919091040916, 0.06177519465287232, + 0.057050798746522705, 0.05667377493540779, 0.06453829751194157, + 0.08327796250296626, 0.11279054138608441, 0.15012362080016636, + 0.19051961037837248, 0.22920913981820115, 0.26425116191493847, + 0.2988670627260713, 0.3427165791631431, 0.4118680166369317, + 0.5262433436025289, 0.7064337013065656, 0.9697664569693428, + 1.3243071682960952, 1.7693756186445178 + ], + "pressure:J48:branch113_seg0": [ + 9223.39023987699, 10608.376426716031, 12061.317259521311, + 13508.742796308221, 14880.258657066852, 16118.10487206625, + 17186.72297799533, 18079.49269339821, 18797.98240375637, + 19356.888534779828, 19784.02849985987, 20086.971794565103, + 20278.47532112166, 20362.525440592384, 20332.703041186684, + 20195.43395990265, 19948.2452962684, 19602.078815569377, + 19178.87541438519, 18692.268793324838, 18166.232397515894, + 17617.874109250955, 17056.72385935963, 16490.971616808318, + 15922.442563516815, 15353.654358169091, 14790.09909383144, + 14240.271790066408, 13715.696304000834, 13227.90050475645, + 12783.10563638564, 12377.66860854407, 11998.712701506485, + 11619.824220127677, 11209.412197679676, 10735.46706114176, + 10175.350321664337, 9516.34943562744, 8769.532373404658, + 7963.065742181103, 7135.463117659414, 6337.400594162551, + 5614.598079300976, 5002.7312963411205, 4519.420513401969, + 4174.179183177929, 3951.9676047467806, 3833.1820510539646, + 3799.0365640351633, 3824.137358889171, 3897.4619507944553, + 4010.021358688417, 4155.338910244574, 4331.909907332895, + 4530.634600651291, 4740.283217753016, 4945.074282112934, + 5125.911118358908, 5266.36235003737, 5356.744631967167, + 5393.9562652885825, 5383.5513207231115, 5341.237966380526, + 5280.048004230954, 5214.434397532558, 5153.653463334939, + 5098.144749463123, 5042.924912485352, 4979.5930992040885, + 4899.833013737846, 4800.346868580523, 4682.863836224976, + 4556.795899044547, 4435.068683414856, 4330.300020859915, + 4251.756918429863, 4202.710581624444, 4178.699571206017, + 4170.001190157981, 4166.716335667998, 4159.801202650722, + 4146.878460295182, 4132.469610364656, 4125.941608822215, + 4138.617799846305, 4178.429306760086, 4247.124567262793, + 4338.782737136557, 4439.327015442527, 4535.974757595851, + 4620.2500950502135, 4695.85613138752, 4783.545447454784, + 4920.549376831851, 5157.2048578682825, 5547.878307870904, + 6132.901843745087, 6947.786080045362, 7988.338784129362, 9223.39023987699 + ], + "flow:J48:branch133_seg0": [ + 0.7048856679206633, 0.903199481541676, 1.1165113456526639, + 1.333970539924512, 1.544223411684276, 1.737900299340554, + 1.9085555356836124, 2.0533201953148477, 2.1715250846271013, + 2.2653219383095795, 2.3375996540616817, 2.390535945355542, + 2.426374770180098, 2.4456405593165345, 2.448327669983681, + 2.4345786505112184, 2.4041974744527335, 2.3586970517569896, + 2.3000970322420264, 2.2310082952358994, 2.154785918882181, + 2.0739945483563615, 1.9907453880177024, 1.9063469479734472, + 1.8213445953113707, 1.7361761859592362, 1.6514252689426439, + 1.5681764864441272, 1.4880053996466085, 1.4126534498291752, + 1.3433365552065486, 1.2802169265093255, 1.2219014043331835, + 1.1652009657620663, 1.1058010085599468, 1.0388786830440007, + 0.9603630757576622, 0.8677346472810181, 0.7614005797160452, + 0.6441723120959002, 0.5213969605075904, 0.3999921317899459, + 0.2869499052656524, 0.18823924777681358, 0.10788873377381641, + 0.047698270701337225, 0.006601145556900815, -0.017477678163862555, + -0.027863311876522835, -0.027875296035763823, -0.019796456614003068, + -0.005477402521909587, 0.014249498656291994, 0.03878883248347708, + 0.06714154058847843, 0.09794298988937797, 0.12896228681881583, + 0.15755769648863913, 0.18114950492329793, 0.197829695312599, + 0.20664370431476833, 0.20807000454830427, 0.2037171377231522, + 0.1956262412509745, 0.1861074398932795, 0.17672652718075196, + 0.1680880452143123, 0.15983686404823963, 0.15088604178866585, + 0.13998319869012224, 0.12629611775883154, 0.10977533055255398, + 0.0914177502627791, 0.07287060300783095, 0.05608807511119661, + 0.042696174259137354, 0.033544035087738684, 0.028385390010749193, + 0.026171608284979737, 0.02537123199155005, 0.02453563453596085, + 0.022960722786714783, 0.02086676827242182, 0.019358122779030745, + 0.020035816796299927, 0.024296653783544044, 0.03283133728755933, + 0.04514461426301379, 0.05966881277625401, 0.07444130874645594, + 0.08780659838902294, 0.09958621515949492, 0.111846727189625, + 0.12913589381773274, 0.15824394183807522, 0.2068923275659633, + 0.2823379276361633, 0.3902380351349859, 0.5317273857426594, + 0.7048856679206633 + ], + "pressure:J48:branch133_seg0": [ + 9223.39023987699, 10608.376426716031, 12061.317259521311, + 13508.742796308221, 14880.258657066852, 16118.10487206625, + 17186.72297799533, 18079.49269339821, 18797.98240375637, + 19356.888534779828, 19784.02849985987, 20086.971794565103, + 20278.47532112166, 20362.525440592384, 20332.703041186684, + 20195.43395990265, 19948.2452962684, 19602.078815569377, + 19178.87541438519, 18692.268793324838, 18166.232397515894, + 17617.874109250955, 17056.72385935963, 16490.971616808318, + 15922.442563516815, 15353.654358169091, 14790.09909383144, + 14240.271790066408, 13715.696304000834, 13227.90050475645, + 12783.10563638564, 12377.66860854407, 11998.712701506485, + 11619.824220127677, 11209.412197679676, 10735.46706114176, + 10175.350321664337, 9516.34943562744, 8769.532373404658, + 7963.065742181103, 7135.463117659414, 6337.400594162551, + 5614.598079300976, 5002.7312963411205, 4519.420513401969, + 4174.179183177929, 3951.9676047467806, 3833.1820510539646, + 3799.0365640351633, 3824.137358889171, 3897.4619507944553, + 4010.021358688417, 4155.338910244574, 4331.909907332895, + 4530.634600651291, 4740.283217753016, 4945.074282112934, + 5125.911118358908, 5266.36235003737, 5356.744631967167, + 5393.9562652885825, 5383.5513207231115, 5341.237966380526, + 5280.048004230954, 5214.434397532558, 5153.653463334939, + 5098.144749463123, 5042.924912485352, 4979.5930992040885, + 4899.833013737846, 4800.346868580523, 4682.863836224976, + 4556.795899044547, 4435.068683414856, 4330.300020859915, + 4251.756918429863, 4202.710581624444, 4178.699571206017, + 4170.001190157981, 4166.716335667998, 4159.801202650722, + 4146.878460295182, 4132.469610364656, 4125.941608822215, + 4138.617799846305, 4178.429306760086, 4247.124567262793, + 4338.782737136557, 4439.327015442527, 4535.974757595851, + 4620.2500950502135, 4695.85613138752, 4783.545447454784, + 4920.549376831851, 5157.2048578682825, 5547.878307870904, + 6132.901843745087, 6947.786080045362, 7988.338784129362, 9223.39023987699 + ], + "flow:branch113_seg0:J49": [ + 1.7664345169109927, 2.2887113685985465, 2.8654237975792434, + 3.468291273114187, 4.066135345808626, 4.630995516486293, + 5.141429973438607, 5.584748534830507, 5.95538400105568, 6.256040226582715, + 6.492576812044783, 6.671364116603736, 6.798864079723333, + 6.877882038035894, 6.909681075995857, 6.894651478686855, + 6.832592763088815, 6.726466711905321, 6.580695575830591, + 6.4019968906903815, 6.198879204419893, 5.978912814271139, + 5.748780556101333, 5.513064233673108, 5.2743248938552165, + 5.034245799099416, 4.7944278754284495, 4.557468656684735, + 4.327218739966125, 4.108279418048982, 3.9044957011831056, + 3.7175716985501035, 3.5453976623740866, 3.381296565688157, + 3.214899462544199, 3.033579690197477, 2.825341412107223, + 2.581432017854002, 2.299675246130824, 1.9844621101387416, + 1.6475573240835015, 1.305859344277958, 0.9782320517983817, + 0.68231128605632, 0.43176032573107587, 0.23432646224467776, + 0.09070730292894631, -0.002658100102659244, -0.053568178746982276, + -0.07064142914199549, -0.06117682732598114, -0.03117949865079787, + 0.015988463646399557, 0.07792674752786177, 0.15205529045750982, + 0.2349866141574425, 0.32128157453281647, 0.40418389592387083, + 0.4765290552840303, 0.5322779225059243, 0.5675594247731793, + 0.5820887106851468, 0.5786809268998829, 0.5622153017469198, + 0.5387528639666083, 0.5132086674667758, 0.48842432855344237, + 0.46467418266160515, 0.4399601806448928, 0.411236701467145, + 0.37586762569710797, 0.3328934925163717, 0.2838637118060983, + 0.2323968954547774, 0.18345147277664062, 0.14177308577920533, + 0.11055748605807783, 0.09040307011572501, 0.07957052928444248, + 0.07449066018257716, 0.07124548002468631, 0.06718197665137213, + 0.06180280767324779, 0.057047619909660494, 0.05661803651678378, + 0.06441463975448204, 0.08309726702092195, 0.11257321365249863, + 0.14989869497352074, 0.1903183343201985, 0.22903724935337552, + 0.2640813413119076, 0.29863398217890397, 0.3423229344529239, + 0.4111953184636932, 0.5251595248522117, 0.7048865321048167, + 0.9677149103531429, 1.3217252270643485, 1.7664345169109927 + ], + "pressure:branch113_seg0:J49": [ + 8760.121533141139, 10069.05864195296, 11466.405067215406, + 12882.452045149188, 14246.571807400318, 15498.713858763043, + 16598.534990696568, 17531.7851514145, 18293.78417376245, + 18896.815894768886, 19363.50944911168, 19703.47838893122, + 19930.62192045434, 20049.613512909593, 20057.302745805024, + 19958.40907719254, 19750.88755760621, 19443.925147248086, + 19055.435126715493, 18599.36230558354, 18098.05230879687, + 17568.673019695958, 17022.764686797374, 16469.395090361646, + 15911.80618712, 15352.947128056472, 14797.583698214823, 14253.22878562026, + 13730.346466642277, 13240.147752110974, 12789.714810212412, + 12378.316828429055, 11996.092319524541, 11620.73663873214, + 11223.704524839426, 10774.203046844448, 10247.944200487045, + 9629.371432696227, 8923.739481300208, 8152.449470695303, + 7349.486908858106, 6561.160670385684, 5831.945803764648, + 5199.216464349381, 4685.462352172203, 4303.15509024568, 4043.445709195215, + 3890.933707720284, 3827.23903430252, 3829.0206865446075, + 3883.280164145559, 3979.2630837043807, 4110.24603963507, + 4273.209670007788, 4460.26015470809, 4661.66821974912, 4862.861394953094, + 5046.14644628348, 5195.144017511566, 5298.7811940907195, + 5351.658171481278, 5357.104095833374, 5327.547896458213, + 5275.090447369977, 5214.015626901686, 5154.3395424954315, + 5098.6770973602115, 5044.133612153094, 4983.730640645984, + 4909.628258443308, 4817.51153307915, 4707.6506463411115, + 4587.245764345948, 4467.48498271015, 4360.499520215625, 4276.135237746379, + 4219.175213088137, 4187.254952708937, 4172.869351425859, + 4166.700909675246, 4159.72599039541, 4148.219209836105, 4134.606472004611, + 4126.413599417224, 4133.91787764829, 4165.376221094201, 4224.215323081133, + 4306.635858021229, 4401.198746571229, 4495.938476484982, + 4581.404406748087, 4658.191337314533, 4741.95903734858, 4864.206725721303, + 5070.013093085549, 5410.411020149704, 5928.20188984307, 6660.165621281385, + 7610.715284443078, 8760.121533141139 + ], + "flow:J49:branch114_seg0": [ + 0.6053750241193208, 0.7809438479030296, 0.9728174309449438, + 1.1714379488246993, 1.366467497629334, 1.5489394863074109, + 1.7122486981946232, 1.8528275994500094, 1.9693110341252063, + 2.0630435187026133, 2.1362279029505356, 2.1909363899039644, + 2.229284982069782, 2.252016585422806, 2.259396680516079, + 2.251542987732463, 2.228340678257963, 2.190921015090116, + 2.140870071460644, 2.0804708156542873, 2.0126233750481455, + 1.9397567943475842, 1.8639716005500042, 1.7866527588483945, + 1.7085078521233106, 1.6300286748852975, 1.5517379840503642, + 1.474539707150333, 1.3997664772554852, 1.3289660549531377, + 1.2633489320537366, 1.2033297373532925, 1.147997121074213, + 1.0948820116389724, 1.0403682989912217, 0.9801961567548018, + 0.9104899749698168, 0.8285778383087951, 0.7341504233437766, + 0.6290674586086307, 0.5175953459447867, 0.4055934790592295, + 0.29935267514424085, 0.2045627390683845, 0.12543660117894956, + 0.06417996414753109, 0.02057023298323405, -0.006836250656308287, + -0.020806623146353575, -0.024257449345272485, -0.019480082945941484, + -0.008353454132486763, 0.008157020056146234, 0.029352517248763137, + 0.054362904446169334, 0.08202957185566706, 0.11046252255806834, + 0.13736231262409623, 0.16036416280372953, 0.17756681504756655, + 0.1878401760409728, 0.19129658919630857, 0.18906867173745856, + 0.1828678269691861, 0.1747439202308145, 0.1662486149282799, + 0.15817654982213056, 0.15046123484349622, 0.14231300357011256, + 0.1326693359498373, 0.12069533849424051, 0.10617499782414329, + 0.08976995862601814, 0.0727926994264841, 0.05694144197374104, + 0.04375705685587632, 0.03419229530903752, 0.028284392765152416, + 0.025315335041903125, 0.024016434521829777, 0.023077826459937657, + 0.021708311595887365, 0.019879597649304744, 0.018372666791353975, + 0.018505142246411355, 0.02156507194408652, 0.028343871809107864, + 0.03865112635890533, 0.051340887324585124, 0.06475335091667399, + 0.07732307628147865, 0.08857497623410931, 0.09986987962160385, + 0.11475335533460196, 0.1388672224383818, 0.17896809049107593, + 0.241827459899931, 0.3329498057657792, 0.4543814961086984, + 0.6053750241193208 + ], + "pressure:J49:branch114_seg0": [ + 8760.121533141139, 10069.05864195296, 11466.405067215406, + 12882.452045149188, 14246.571807400318, 15498.713858763043, + 16598.534990696568, 17531.7851514145, 18293.78417376245, + 18896.815894768886, 19363.50944911168, 19703.47838893122, + 19930.62192045434, 20049.613512909593, 20057.302745805024, + 19958.40907719254, 19750.88755760621, 19443.925147248086, + 19055.435126715493, 18599.36230558354, 18098.05230879687, + 17568.673019695958, 17022.764686797374, 16469.395090361646, + 15911.80618712, 15352.947128056472, 14797.583698214823, 14253.22878562026, + 13730.346466642277, 13240.147752110974, 12789.714810212412, + 12378.316828429055, 11996.092319524541, 11620.73663873214, + 11223.704524839426, 10774.203046844448, 10247.944200487045, + 9629.371432696227, 8923.739481300208, 8152.449470695303, + 7349.486908858106, 6561.160670385684, 5831.945803764648, + 5199.216464349381, 4685.462352172203, 4303.15509024568, 4043.445709195215, + 3890.933707720284, 3827.23903430252, 3829.0206865446075, + 3883.280164145559, 3979.2630837043807, 4110.24603963507, + 4273.209670007788, 4460.26015470809, 4661.66821974912, 4862.861394953094, + 5046.14644628348, 5195.144017511566, 5298.7811940907195, + 5351.658171481278, 5357.104095833374, 5327.547896458213, + 5275.090447369977, 5214.015626901686, 5154.3395424954315, + 5098.6770973602115, 5044.133612153094, 4983.730640645984, + 4909.628258443308, 4817.51153307915, 4707.6506463411115, + 4587.245764345948, 4467.48498271015, 4360.499520215625, 4276.135237746379, + 4219.175213088137, 4187.254952708937, 4172.869351425859, + 4166.700909675246, 4159.72599039541, 4148.219209836105, 4134.606472004611, + 4126.413599417224, 4133.91787764829, 4165.376221094201, 4224.215323081133, + 4306.635858021229, 4401.198746571229, 4495.938476484982, + 4581.404406748087, 4658.191337314533, 4741.95903734858, 4864.206725721303, + 5070.013093085549, 5410.411020149704, 5928.20188984307, 6660.165621281385, + 7610.715284443078, 8760.121533141139 + ], + "flow:J49:branch124_seg0": [ + 1.161059492791672, 1.5077675206955166, 1.8926063666342996, + 2.2968533242894886, 2.699667848179293, 3.0820560301788826, + 3.429181275243984, 3.7319209353804967, 3.986072966930474, + 4.192996707880102, 4.3563489090942475, 4.48042772669977, 4.56957909765355, + 4.625865452613089, 4.650284395479776, 4.643108490954392, + 4.6042520848308515, 4.535545696815204, 4.439825504369948, + 4.321526075036094, 4.186255829371748, 4.0391560199235546, + 3.8848089555513274, 3.726411474824713, 3.565817041731907, + 3.404217124214118, 3.242689891378085, 3.082928949534402, 2.92745226271064, + 2.779313363095844, 2.641146769129369, 2.5142419611968103, + 2.397400541299873, 2.2864145540491854, 2.174531163552977, + 2.0533835334426755, 1.9148514371374068, 1.752854179545206, + 1.5655248227870469, 1.355394651530111, 1.1299619781387147, + 0.9002658652187288, 0.6788793766541408, 0.47774854698793534, + 0.30632372455212636, 0.17014649809714666, 0.07013706994571227, + 0.0041781505536490435, -0.032761555600628704, -0.046383979796723, + -0.04169674438003967, -0.0228260445183111, 0.007831443590253322, + 0.04857423027909863, 0.09769238601134056, 0.15295704230177548, + 0.21081905197474815, 0.26682158329977457, 0.3161648924803008, + 0.354711107458358, 0.37971924873220664, 0.3907921214888383, + 0.3896122551624244, 0.37934747477773373, 0.36400894373579373, + 0.34696005253849604, 0.3302477787313118, 0.3142129478181089, + 0.2976471770747802, 0.27856736551730765, 0.25517228720286755, + 0.22671849469222838, 0.19409375318008018, 0.1596041960282933, + 0.12651003080289955, 0.09801602892332904, 0.0763651907490403, + 0.06211867735057258, 0.054255194242539356, 0.05047422566074739, + 0.048167653564748655, 0.04547366505548475, 0.04192321002394304, + 0.038674953118306515, 0.03811289427037243, 0.042849567810395534, + 0.05475339521181407, 0.0739220872935933, 0.09855780764893564, + 0.12556498340352457, 0.15171417307189686, 0.17550636507779827, + 0.19876410255730015, 0.22756957911832193, 0.2723280960253115, + 0.3461914343611358, 0.46305907220488557, 0.6347651045873637, + 0.8673437309556503, 1.161059492791672 + ], + "pressure:J49:branch124_seg0": [ + 8760.121533141139, 10069.05864195296, 11466.405067215406, + 12882.452045149188, 14246.571807400318, 15498.713858763043, + 16598.534990696568, 17531.7851514145, 18293.78417376245, + 18896.815894768886, 19363.50944911168, 19703.47838893122, + 19930.62192045434, 20049.613512909593, 20057.302745805024, + 19958.40907719254, 19750.88755760621, 19443.925147248086, + 19055.435126715493, 18599.36230558354, 18098.05230879687, + 17568.673019695958, 17022.764686797374, 16469.395090361646, + 15911.80618712, 15352.947128056472, 14797.583698214823, 14253.22878562026, + 13730.346466642277, 13240.147752110974, 12789.714810212412, + 12378.316828429055, 11996.092319524541, 11620.73663873214, + 11223.704524839426, 10774.203046844448, 10247.944200487045, + 9629.371432696227, 8923.739481300208, 8152.449470695303, + 7349.486908858106, 6561.160670385684, 5831.945803764648, + 5199.216464349381, 4685.462352172203, 4303.15509024568, 4043.445709195215, + 3890.933707720284, 3827.23903430252, 3829.0206865446075, + 3883.280164145559, 3979.2630837043807, 4110.24603963507, + 4273.209670007788, 4460.26015470809, 4661.66821974912, 4862.861394953094, + 5046.14644628348, 5195.144017511566, 5298.7811940907195, + 5351.658171481278, 5357.104095833374, 5327.547896458213, + 5275.090447369977, 5214.015626901686, 5154.3395424954315, + 5098.6770973602115, 5044.133612153094, 4983.730640645984, + 4909.628258443308, 4817.51153307915, 4707.6506463411115, + 4587.245764345948, 4467.48498271015, 4360.499520215625, 4276.135237746379, + 4219.175213088137, 4187.254952708937, 4172.869351425859, + 4166.700909675246, 4159.72599039541, 4148.219209836105, 4134.606472004611, + 4126.413599417224, 4133.91787764829, 4165.376221094201, 4224.215323081133, + 4306.635858021229, 4401.198746571229, 4495.938476484982, + 4581.404406748087, 4658.191337314533, 4741.95903734858, 4864.206725721303, + 5070.013093085549, 5410.411020149704, 5928.20188984307, 6660.165621281385, + 7610.715284443078, 8760.121533141139 + ], + "flow:branch118_seg0:J50": [ + 1.849482722522924, 2.382586904248572, 2.96320593272488, + 3.5618296384557078, 4.147425210434948, 4.693333226462732, + 5.180280458901831, 5.598138369653267, 5.94396899916335, 6.2222581483416, + 6.439956272739669, 6.603596850230396, 6.719141062418726, + 6.788587443339006, 6.812327881409787, 6.790306907285159, 6.7220818957053, + 6.610983300894425, 6.461915310962808, 6.28187905290721, + 6.0796428202152955, 5.862581730625185, 5.636888731339347, + 5.406545904567395, 5.17351805963801, 4.939132998187813, 4.704938654791862, + 4.473710623604197, 4.249576333075786, 4.037287164239799, + 3.8405527973405924, 3.660507767518057, 3.4941948967980254, + 3.33395909308256, 3.1686097733916516, 2.9851905509283503, + 2.7720834460598196, 2.5215655113436317, 2.233120698752929, + 1.913005882510653, 1.5746347306209918, 1.2360138015609738, + 0.9162957782468552, 0.6324842984386313, 0.3967573990923674, + 0.21527292971855902, 0.08677166979778819, 0.0062633849627319535, + -0.03480245425417134, -0.04528913706623764, -0.03202966907546203, + -0.0002978601309067841, 0.047210786099941185, 0.10868772257242379, + 0.1817339510399187, 0.262796743806135, 0.34617045115777106, + 0.4248444013987046, 0.4916402523357643, 0.5408473958963012, + 0.5692646118692233, 0.577418047159949, 0.5689120575983322, + 0.5491293962940076, 0.5242550649249074, 0.4988756250925272, + 0.4751943060639687, 0.45273004262394395, 0.42885781820319807, + 0.4002141490572512, 0.36426197576641384, 0.32042859768098, + 0.27087458339777104, 0.21976282680862233, 0.17233054998089478, + 0.13323829594269107, 0.10525804377234745, 0.08835094333971459, + 0.08010444165705637, 0.07655055682478924, 0.07370854362435349, + 0.06923399094321135, 0.06321595579593528, 0.0582232197492321, + 0.05839539758279015, 0.0677053561909111, 0.0884611353059157, + 0.11993129625944317, 0.1584624620539853, 0.1988506953326039, + 0.23634753702337732, 0.26967068631679586, 0.30324319586636517, + 0.34819180815877726, 0.4219642793595383, 0.5452760369291227, + 0.7384493855514784, 1.0179017173966116, 1.3893799524501664, + 1.849482722522924 + ], + "pressure:branch118_seg0:J50": [ + 9282.193770254322, 10664.794282409914, 12107.511749955338, + 13536.620924588537, 14883.904027246785, 16094.119934130988, + 17134.808209698727, 18002.071896820024, 18699.498791199356, + 19243.26133051023, 19661.128442741767, 19959.299238429336, + 20149.67936035234, 20235.017404795424, 20207.516566167556, + 20073.90866977753, 19830.918556348824, 19489.92975318977, + 19074.281772585306, 18596.516790195335, 18080.80811106177, + 17544.01102347786, 16994.508375907066, 16440.025420986327, + 15881.843303874615, 15322.264593888129, 14767.096312139125, + 14225.149819870654, 13708.228697837088, 13227.912222262968, + 12790.074631529234, 12390.308508982936, 12014.861514349528, + 11636.631211262717, 11223.692919437424, 10744.390687623127, + 10177.402240111027, 9511.369281470495, 8759.496912202976, + 7951.803375796171, 7127.471963730313, 6337.626553087882, + 5627.020883327035, 5029.924040644059, 4561.118697971723, + 4229.026332195477, 4016.8413674464787, 3903.4314005928436, + 3870.8209902975364, 3893.768589537175, 3962.364783979491, + 4069.084001029035, 4207.810743450715, 4377.634569319446, + 4569.684983157797, 4772.283738483633, 4969.4297181724205, + 5141.995101888124, 5273.7961268364525, 5355.797423579792, + 5385.639255144656, 5369.700044122676, 5324.362067031955, + 5262.378804474934, 5197.997666089048, 5139.749331117889, + 5087.051491918224, 5034.152147274851, 4972.227871057474, + 4892.910327221558, 4793.418579219569, 4675.988259994041, + 4550.628324429901, 4430.758133991987, 4328.879596149374, + 4253.821019421399, 4208.190673677502, 4186.874415387183, + 4179.536106160302, 4176.1884067728, 4168.182426033039, 4153.700711675992, + 4138.0128042038405, 4131.046996635821, 4144.301147570069, + 4185.4112963878715, 4255.486801406766, 4347.853811628559, + 4447.734963979199, 4542.442511673815, 4623.94325440165, 4697.085058004973, + 4784.0538083193715, 4923.402379883971, 5166.201300913291, + 5567.0270961584865, 6163.965368067789, 6991.208747305304, + 8042.579151604474, 9282.193770254322 + ], + "flow:J50:branch119_seg0": [ + 1.0423609410415111, 1.3415747061506598, 1.6666195696076938, + 2.0009419704881575, 2.3271489923152346, 2.630450237079729, + 2.9002813290192773, 3.1312798006173748, 3.3219501686514388, + 3.4750447877532493, 3.5945673957270436, 3.6841280999933916, + 3.747083954455719, 3.784444150844753, 3.796363727909602, + 3.782809968288631, 3.7434991039865944, 3.680366039597973, + 3.5962010112060896, 3.494954355659124, 3.381574401495833, + 3.2601484615089085, 3.1340987154640647, 3.0055942640968993, + 2.8756685107253257, 2.745034336968039, 2.6145489444912706, + 2.485783582017086, 2.3610728597671957, 2.243091363257816, + 2.133886118958887, 2.0340375290688573, 1.9418014001253439, + 1.8527772721218418, 1.760630447043002, 1.658072700063069, + 1.5386419010732075, 1.3981055953004573, 1.2363618376039507, + 1.0570743731389922, 0.8679129508528655, 0.6790731887543199, + 0.5012827305896316, 0.3439872660421499, 0.2138787973877968, + 0.1142226694941, 0.04411694361638971, 0.0006668988318086211, + -0.02101229306597002, -0.025900964998123357, -0.017759812511927892, + 0.0004975428966489292, 0.02745050803962755, 0.06212521153182882, + 0.10317067358715706, 0.14860022625370103, 0.1951750668667503, + 0.23894602883686014, 0.2758991559268819, 0.3028849564423522, + 0.3181665114149928, 0.32213502551781426, 0.3168987268398415, + 0.3055039702246895, 0.2914378672798027, 0.27723400473695814, + 0.2640594964749987, 0.2515775169869043, 0.2382608158852426, + 0.22220155560175586, 0.20199206385196772, 0.1773576906049454, + 0.14957174155594996, 0.1210117231590875, 0.09463633401808193, + 0.07304254254879598, 0.057736893117419405, 0.048622923609101275, + 0.044294714129745935, 0.042487578679254394, 0.0409639876727209, + 0.038452017965644056, 0.0350593205473557, 0.032284170529505635, + 0.03248666468868954, 0.037888689182552664, 0.04974979373952954, + 0.0675895023947471, 0.08928609095281743, 0.11189068513509624, + 0.1327480826887244, 0.15121030868508634, 0.16987902583856873, + 0.1951302543190642, 0.236864991821487, 0.30673739540427947, + 0.4161132944466336, 0.5740548183278401, 0.7835021647574735, + 1.0423609410415111 + ], + "pressure:J50:branch119_seg0": [ + 9282.193770254322, 10664.794282409914, 12107.511749955338, + 13536.620924588537, 14883.904027246785, 16094.119934130988, + 17134.808209698727, 18002.071896820024, 18699.498791199356, + 19243.26133051023, 19661.128442741767, 19959.299238429336, + 20149.67936035234, 20235.017404795424, 20207.516566167556, + 20073.90866977753, 19830.918556348824, 19489.92975318977, + 19074.281772585306, 18596.516790195335, 18080.80811106177, + 17544.01102347786, 16994.508375907066, 16440.025420986327, + 15881.843303874615, 15322.264593888129, 14767.096312139125, + 14225.149819870654, 13708.228697837088, 13227.912222262968, + 12790.074631529234, 12390.308508982936, 12014.861514349528, + 11636.631211262717, 11223.692919437424, 10744.390687623127, + 10177.402240111027, 9511.369281470495, 8759.496912202976, + 7951.803375796171, 7127.471963730313, 6337.626553087882, + 5627.020883327035, 5029.924040644059, 4561.118697971723, + 4229.026332195477, 4016.8413674464787, 3903.4314005928436, + 3870.8209902975364, 3893.768589537175, 3962.364783979491, + 4069.084001029035, 4207.810743450715, 4377.634569319446, + 4569.684983157797, 4772.283738483633, 4969.4297181724205, + 5141.995101888124, 5273.7961268364525, 5355.797423579792, + 5385.639255144656, 5369.700044122676, 5324.362067031955, + 5262.378804474934, 5197.997666089048, 5139.749331117889, + 5087.051491918224, 5034.152147274851, 4972.227871057474, + 4892.910327221558, 4793.418579219569, 4675.988259994041, + 4550.628324429901, 4430.758133991987, 4328.879596149374, + 4253.821019421399, 4208.190673677502, 4186.874415387183, + 4179.536106160302, 4176.1884067728, 4168.182426033039, 4153.700711675992, + 4138.0128042038405, 4131.046996635821, 4144.301147570069, + 4185.4112963878715, 4255.486801406766, 4347.853811628559, + 4447.734963979199, 4542.442511673815, 4623.94325440165, 4697.085058004973, + 4784.0538083193715, 4923.402379883971, 5166.201300913291, + 5567.0270961584865, 6163.965368067789, 6991.208747305304, + 8042.579151604474, 9282.193770254322 + ], + "flow:J50:branch127_seg0": [ + 0.8071217814814132, 1.0410121980979126, 1.296586363117186, + 1.5608876679675507, 1.8202762181197123, 2.062882989383003, + 2.2799991298825537, 2.466858569035893, 2.6220188305119128, + 2.7472133605883493, 2.845388877012624, 2.9194687502370043, + 2.972057107963006, 3.004143292494254, 3.015964153500185, + 3.007496938996528, 2.978582791718707, 2.9306172612964523, + 2.8657142997567173, 2.786924697248087, 2.6980684187194623, + 2.6024332691162755, 2.502790015875283, 2.4009516404704954, + 2.2978495489126844, 2.194098661219774, 2.0903897103005917, + 1.9879270415871115, 1.8885034733085904, 1.7941958009819838, + 1.7066666783817057, 1.6264702384491994, 1.552393496672682, + 1.4811818209607175, 1.40797932634865, 1.3271178508652808, + 1.2334415449866118, 1.1234599160431746, 0.9967588611489779, + 0.8559315093716602, 0.7067217797681266, 0.5569406128066541, + 0.41501304765722336, 0.28849703239648145, 0.18287860170457063, + 0.10105026022445908, 0.04265472618139847, 0.005596486130923331, + -0.013790161188201318, -0.01938817206811429, -0.014269856563534132, + -0.0007954030275557127, 0.01976027806031364, 0.04656251104059496, + 0.07856327745276163, 0.11419651755243407, 0.15099538429102077, + 0.18589837256184444, 0.2157410964088824, 0.23796243945394896, + 0.25109810045423053, 0.2552830216421349, 0.25201333075849075, + 0.24362542606931784, 0.23281719764510472, 0.22164162035556903, + 0.21113480958896988, 0.2011525256370397, 0.19059700231795546, + 0.17801259345549528, 0.16226991191444604, 0.1430709070760346, + 0.12130284184182102, 0.09875110364953482, 0.07769421596281281, + 0.06019575339389511, 0.04752115065492802, 0.0397280197306133, + 0.03580972752731044, 0.03406297814553486, 0.03274455595163256, + 0.030781972977567303, 0.028156635248579604, 0.025939049219726455, + 0.025908732894100624, 0.02981666700835844, 0.03871134156638615, + 0.05234179386469606, 0.06917637110116784, 0.0869600101975077, + 0.10359945433465294, 0.11846037763170948, 0.13336417002779632, + 0.15306155383971312, 0.18509928753805144, 0.23853864152484333, + 0.322336091104845, 0.4438468990687711, 0.6058777876926934, + 0.8071217814814132 + ], + "pressure:J50:branch127_seg0": [ + 9282.193770254322, 10664.794282409914, 12107.511749955338, + 13536.620924588537, 14883.904027246785, 16094.119934130988, + 17134.808209698727, 18002.071896820024, 18699.498791199356, + 19243.26133051023, 19661.128442741767, 19959.299238429336, + 20149.67936035234, 20235.017404795424, 20207.516566167556, + 20073.90866977753, 19830.918556348824, 19489.92975318977, + 19074.281772585306, 18596.516790195335, 18080.80811106177, + 17544.01102347786, 16994.508375907066, 16440.025420986327, + 15881.843303874615, 15322.264593888129, 14767.096312139125, + 14225.149819870654, 13708.228697837088, 13227.912222262968, + 12790.074631529234, 12390.308508982936, 12014.861514349528, + 11636.631211262717, 11223.692919437424, 10744.390687623127, + 10177.402240111027, 9511.369281470495, 8759.496912202976, + 7951.803375796171, 7127.471963730313, 6337.626553087882, + 5627.020883327035, 5029.924040644059, 4561.118697971723, + 4229.026332195477, 4016.8413674464787, 3903.4314005928436, + 3870.8209902975364, 3893.768589537175, 3962.364783979491, + 4069.084001029035, 4207.810743450715, 4377.634569319446, + 4569.684983157797, 4772.283738483633, 4969.4297181724205, + 5141.995101888124, 5273.7961268364525, 5355.797423579792, + 5385.639255144656, 5369.700044122676, 5324.362067031955, + 5262.378804474934, 5197.997666089048, 5139.749331117889, + 5087.051491918224, 5034.152147274851, 4972.227871057474, + 4892.910327221558, 4793.418579219569, 4675.988259994041, + 4550.628324429901, 4430.758133991987, 4328.879596149374, + 4253.821019421399, 4208.190673677502, 4186.874415387183, + 4179.536106160302, 4176.1884067728, 4168.182426033039, 4153.700711675992, + 4138.0128042038405, 4131.046996635821, 4144.301147570069, + 4185.4112963878715, 4255.486801406766, 4347.853811628559, + 4447.734963979199, 4542.442511673815, 4623.94325440165, 4697.085058004973, + 4784.0538083193715, 4923.402379883971, 5166.201300913291, + 5567.0270961584865, 6163.965368067789, 6991.208747305304, + 8042.579151604474, 9282.193770254322 + ], + "flow:branch120_seg0:J51": [ + 1.714579434568278, 2.209604966934831, 2.748287440731905, + 3.303361383435326, 3.8455987046570446, 4.350056791227816, + 4.798775271195424, 5.182560587370538, 5.498325830924037, + 5.7506565321245615, 5.946252778749196, 6.091150140730769, + 6.191366604918954, 6.24878926879072, 6.263966563566846, 6.237066374494553, + 6.1676651222721475, 6.059022373909975, 5.9156722128862995, + 5.744182440158496, 5.552815961970437, 5.3483512411922245, + 5.136598544662836, 4.921252881378908, 4.704082060676271, + 4.486299415930567, 4.269266056658968, 4.055506915645432, + 3.8488031109991643, 3.6535425546971125, 3.4730858196729146, + 3.3084791602704553, 3.156923674353556, 3.0111718179647617, + 2.860796919777103, 2.693656508348864, 2.498872611303358, + 2.2691710821926914, 2.004136275098747, 1.709520287594945, + 1.3978734141305484, 1.08608955293569, 0.7920163068033554, + 0.5315371232856831, 0.3161669608964612, 0.15153180740955552, + 0.03636660654685029, -0.0338597719113264, -0.06737407329739892, + -0.07253131178351693, -0.0557290283323926, -0.022128212695463088, + 0.025826364945728895, 0.08635352213548501, 0.15711452718142976, + 0.2349086611126435, 0.31437052334793864, 0.3889870610710469, + 0.45211237968494233, 0.49849337532817967, 0.5251272988651621, + 0.5325989782751814, 0.5243657416178794, 0.5054438946519099, + 0.4817187807190905, 0.4575204618434252, 0.4349391667580637, + 0.4135828312565186, 0.391021765108595, 0.364128930991112, + 0.33051775863170973, 0.2896596478497734, 0.2435706671517372, + 0.196095783094177, 0.15212966971896086, 0.11602359607370089, + 0.09036624999114394, 0.07507348481473289, 0.0679373488212458, + 0.06521460505082916, 0.06314004729029284, 0.0595348615888994, + 0.05445198790557652, 0.050267245307073896, 0.05084346709570944, + 0.05987021495132181, 0.0795303793568105, 0.10913035393052421, + 0.14524141413168573, 0.183028082109771, 0.2180224658991168, + 0.2489957073963095, 0.28005244533339824, 0.32154714370548837, + 0.38974082532493776, 0.5038691418718474, 0.6830488925275345, + 0.9424670489440292, 1.2872095787736337, 1.714579434568278 + ], + "pressure:branch120_seg0:J51": [ + 8643.496253630481, 9947.583023770869, 11349.80972859263, + 12779.348946100168, 14162.34038952514, 15436.763098709356, + 16559.91115185697, 17513.548094205842, 18292.613982609608, + 18910.233545876723, 19386.76214348079, 19735.346110051414, + 19970.81171478046, 20097.470192211276, 20114.455566709534, + 20023.869683960915, 19824.12031858769, 19524.562735910695, + 19139.691037391927, 18685.52857835983, 18184.22693204302, + 17652.938505609276, 17105.013665921513, 16549.46838517062, + 15989.926111559056, 15429.300988117393, 14871.620031986635, + 14323.959189971272, 13796.582958536628, 13300.85628987121, + 12844.657312502699, 12428.796761379603, 12044.325140320596, + 11670.20838862614, 11278.211024252281, 10836.873407955007, + 10319.81889295572, 9710.240608733091, 9010.8809130445, 8240.518275134225, + 7433.473919625345, 6635.390105175636, 5892.026926009992, + 5242.548569753221, 4712.967542389543, 4315.976264548751, + 4044.535557249172, 3884.7178120006465, 3815.8151116171534, + 3815.2185216209336, 3868.2289655531304, 3962.7783352106003, + 4092.7489615368163, 4254.523251579757, 4441.164490721328, + 4643.659711634718, 4847.579970883978, 5035.496188371998, + 5190.551608520827, 5300.424440203138, 5358.793651062689, + 5368.508143150076, 5340.508458898102, 5287.770372721254, 5225.28701492237, + 5163.562424081944, 5106.448222707731, 5051.703955504716, + 4992.374134171036, 4920.30795091539, 4830.195413794998, 4721.630265007041, + 4601.115338122078, 4479.442022601194, 4369.23993771089, 4281.120277249421, + 4220.694884292605, 4186.398251818161, 4171.336635027224, + 4165.745524798143, 4160.1045968015405, 4149.815453962681, + 4136.352923785407, 4126.841052624971, 4131.67038362664, 4159.867779365617, + 4215.897645484596, 4296.669333119701, 4391.769204190298, + 4488.620880603741, 4576.596473466506, 4654.606959606988, + 4736.298059137072, 4851.512000971858, 5044.651768723067, + 5366.548511559776, 5863.835458421396, 6574.33154405226, 7505.496425972577, + 8643.496253630481 + ], + "flow:J51:branch121_seg0": [ + 0.7775752840940786, 1.004754392340853, 1.253347559485209, + 1.5107172773282007, 1.7633003168386348, 1.999347995842835, + 2.210214232087434, 2.391180508111509, 2.540629966984781, + 2.660444998711551, 2.7535401888022983, 2.822887685727098, + 2.871261613837652, 2.899664175971647, 2.908482646485644, 2.89770156074224, + 2.867188999814021, 2.8183200361601757, 2.753064226916385, + 2.6744925002718247, 2.586339618568464, 2.4918208127999866, + 2.3937216145217395, 2.2938123391125127, 2.193001556602839, + 2.0918659700390645, 1.9910137231921785, 1.8915707159712845, + 1.7952439181519688, 1.704051767642077, 1.619614239037027, + 1.5425375674598576, 1.4716673193576626, 1.403839120456678, + 1.3343245931815926, 1.2575280821167794, 1.1683071355943961, + 1.063141192061849, 0.9415246369619249, 0.8058532647798848, + 0.6617412768230744, 0.5168360666624414, 0.3794262219810677, + 0.256997930084705, 0.15511707845671951, 0.07658179183595457, + 0.021132133964627958, -0.013218031079105314, -0.030221270522595243, + -0.03368976294629262, -0.026737480187159962, -0.011805966980780265, + 0.009892595471581337, 0.03747319574869407, 0.0699225835796838, + 0.10578724284555407, 0.14265280670016278, 0.17755228498536205, + 0.2073890620237648, 0.22964207859905889, 0.24282362448288272, + 0.24707196319783817, 0.24384012620572804, 0.2354393300749165, + 0.2245792384300648, 0.21332905431193858, 0.20277405503158474, + 0.1928290889880468, 0.18243649128243253, 0.170163222246128, + 0.15485234601283593, 0.1361817816146274, 0.11497545775369199, + 0.09294946326703302, 0.07235284814911046, 0.055238722418250515, + 0.04288632114927116, 0.03537452582348534, 0.031764354439681335, + 0.0303539208026049, 0.029396163733131624, 0.027799432750196806, + 0.02548719953539081, 0.02347486310470038, 0.023505508543821028, + 0.027317332438521854, 0.03599911528012245, 0.04934302473266791, + 0.06588434542157795, 0.0834046601783154, 0.09979074154677059, + 0.11432064597514686, 0.1286610183615192, 0.1473579576948876, + 0.17773181129256235, 0.22860621762056746, 0.3089522094402517, + 0.4259375348277272, 0.5824396107056213, 0.7775752840940786 + ], + "pressure:J51:branch121_seg0": [ + 8643.496253630481, 9947.583023770869, 11349.80972859263, + 12779.348946100168, 14162.34038952514, 15436.763098709356, + 16559.91115185697, 17513.548094205842, 18292.613982609608, + 18910.233545876723, 19386.76214348079, 19735.346110051414, + 19970.81171478046, 20097.470192211276, 20114.455566709534, + 20023.869683960915, 19824.12031858769, 19524.562735910695, + 19139.691037391927, 18685.52857835983, 18184.22693204302, + 17652.938505609276, 17105.013665921513, 16549.46838517062, + 15989.926111559056, 15429.300988117393, 14871.620031986635, + 14323.959189971272, 13796.582958536628, 13300.85628987121, + 12844.657312502699, 12428.796761379603, 12044.325140320596, + 11670.20838862614, 11278.211024252281, 10836.873407955007, + 10319.81889295572, 9710.240608733091, 9010.8809130445, 8240.518275134225, + 7433.473919625345, 6635.390105175636, 5892.026926009992, + 5242.548569753221, 4712.967542389543, 4315.976264548751, + 4044.535557249172, 3884.7178120006465, 3815.8151116171534, + 3815.2185216209336, 3868.2289655531304, 3962.7783352106003, + 4092.7489615368163, 4254.523251579757, 4441.164490721328, + 4643.659711634718, 4847.579970883978, 5035.496188371998, + 5190.551608520827, 5300.424440203138, 5358.793651062689, + 5368.508143150076, 5340.508458898102, 5287.770372721254, 5225.28701492237, + 5163.562424081944, 5106.448222707731, 5051.703955504716, + 4992.374134171036, 4920.30795091539, 4830.195413794998, 4721.630265007041, + 4601.115338122078, 4479.442022601194, 4369.23993771089, 4281.120277249421, + 4220.694884292605, 4186.398251818161, 4171.336635027224, + 4165.745524798143, 4160.1045968015405, 4149.815453962681, + 4136.352923785407, 4126.841052624971, 4131.67038362664, 4159.867779365617, + 4215.897645484596, 4296.669333119701, 4391.769204190298, + 4488.620880603741, 4576.596473466506, 4654.606959606988, + 4736.298059137072, 4851.512000971858, 5044.651768723067, + 5366.548511559776, 5863.835458421396, 6574.33154405226, 7505.496425972577, + 8643.496253630481 + ], + "flow:J51:branch128_seg0": [ + 0.9370041504741997, 1.204850574593979, 1.4949398812466956, + 1.7926441061071254, 2.08229838781841, 2.3507087953849823, + 2.5885610391079883, 2.791380079259029, 2.957695863939255, + 3.0902115334130116, 3.1927125899468973, 3.2682624550036707, + 3.3201049910813025, 3.349125092819073, 3.3554839170812008, + 3.3393648137523138, 3.300476122458126, 3.240702337749799, + 3.162607985969913, 3.0696899398866724, 2.9664763434019723, + 2.8565304283922384, 2.7428769301410973, 2.627440542266395, + 2.5110805040734316, 2.394433445891503, 2.2782523334667895, + 2.1639361996741466, 2.0535591928471946, 1.949490787055035, + 1.8534715806358875, 1.7659415928105986, 1.685256354995893, + 1.6073326975080835, 1.5264723265955107, 1.4361284262320855, + 1.3305654757089622, 1.2060298901308422, 1.062611638136821, + 0.9036670228150604, 0.7361321373074744, 0.5692534862732486, + 0.412590084822288, 0.2745391932009781, 0.16104988243974164, + 0.07495001557360093, 0.01523447258222234, -0.020641740832221093, + -0.03715280277480366, -0.03884154883722433, -0.028991548145232634, + -0.010322245714682824, 0.015933769474147555, 0.04888032638679095, + 0.08719194360174595, 0.1291214182670894, 0.17171771664777583, + 0.21143477608568484, 0.24472331766117747, 0.26885129672912067, + 0.2823036743822795, 0.2855270150773432, 0.2805256154121514, + 0.27000456457699334, 0.2571395422890257, 0.24419140753148658, + 0.23216511172647897, 0.22075374226847194, 0.2085852738261625, + 0.19396570874498395, 0.17566541261887383, 0.1534778662351459, + 0.1285952093980452, 0.10314631982714396, 0.07977682156985044, + 0.06078487365545038, 0.04747992884187279, 0.03969895899124758, + 0.03617299438156446, 0.034860684248224263, 0.033743883557161215, + 0.03173542883870259, 0.028964788370185707, 0.026792382202373524, + 0.027337958551888406, 0.03255288251279997, 0.043531264076688045, + 0.05978732919785633, 0.07935706871010777, 0.0996234219314556, + 0.11823172435234625, 0.13467506142116267, 0.151391426971879, + 0.17418918601060074, 0.21200901403237538, 0.27526292425127996, + 0.37409668308728283, 0.5165295141163021, 0.7047699680680126, + 0.9370041504741997 + ], + "pressure:J51:branch128_seg0": [ + 8643.496253630481, 9947.583023770869, 11349.80972859263, + 12779.348946100168, 14162.34038952514, 15436.763098709356, + 16559.91115185697, 17513.548094205842, 18292.613982609608, + 18910.233545876723, 19386.76214348079, 19735.346110051414, + 19970.81171478046, 20097.470192211276, 20114.455566709534, + 20023.869683960915, 19824.12031858769, 19524.562735910695, + 19139.691037391927, 18685.52857835983, 18184.22693204302, + 17652.938505609276, 17105.013665921513, 16549.46838517062, + 15989.926111559056, 15429.300988117393, 14871.620031986635, + 14323.959189971272, 13796.582958536628, 13300.85628987121, + 12844.657312502699, 12428.796761379603, 12044.325140320596, + 11670.20838862614, 11278.211024252281, 10836.873407955007, + 10319.81889295572, 9710.240608733091, 9010.8809130445, 8240.518275134225, + 7433.473919625345, 6635.390105175636, 5892.026926009992, + 5242.548569753221, 4712.967542389543, 4315.976264548751, + 4044.535557249172, 3884.7178120006465, 3815.8151116171534, + 3815.2185216209336, 3868.2289655531304, 3962.7783352106003, + 4092.7489615368163, 4254.523251579757, 4441.164490721328, + 4643.659711634718, 4847.579970883978, 5035.496188371998, + 5190.551608520827, 5300.424440203138, 5358.793651062689, + 5368.508143150076, 5340.508458898102, 5287.770372721254, 5225.28701492237, + 5163.562424081944, 5106.448222707731, 5051.703955504716, + 4992.374134171036, 4920.30795091539, 4830.195413794998, 4721.630265007041, + 4601.115338122078, 4479.442022601194, 4369.23993771089, 4281.120277249421, + 4220.694884292605, 4186.398251818161, 4171.336635027224, + 4165.745524798143, 4160.1045968015405, 4149.815453962681, + 4136.352923785407, 4126.841052624971, 4131.67038362664, 4159.867779365617, + 4215.897645484596, 4296.669333119701, 4391.769204190298, + 4488.620880603741, 4576.596473466506, 4654.606959606988, + 4736.298059137072, 4851.512000971858, 5044.651768723067, + 5366.548511559776, 5863.835458421396, 6574.33154405226, 7505.496425972577, + 8643.496253630481 + ], + "flow:branch124_seg2:J52": [ + 1.1567367058316544, 1.5029848038569789, 1.8875775646560962, + 2.2918792047779637, 2.694971948148608, 3.0778051178573604, + 3.4254878055216595, 3.728859748984172, 3.983581489393177, + 4.191041432506781, 4.354874851983057, 4.479364920260473, + 4.568923845752419, 4.625594122889988, 4.650402167413849, + 4.6436122562296305, 4.605124146486171, 4.536766381999302, + 4.441309789138786, 4.323209480687929, 4.188086277188186, 4.04106188960103, + 3.88675947409371, 3.7283850034082713, 3.5677988903407054, + 3.40620043439214, 3.244651510457173, 3.084836482577265, + 2.9292665181185757, 2.7810029473534614, 2.642687906981854, + 2.5156560677674142, 2.398743332258232, 2.2877648987875645, + 2.1760013858327536, 2.0550805114946473, 1.9168454675095765, + 1.7551720093055685, 1.5681386523767884, 1.3581950041215878, + 1.1328078245627917, 0.9030034949584332, 0.6813487782825696, + 0.479819714400233, 0.30796659713626207, 0.1713363618194855, + 0.07088647830692625, 0.004592504830266528, -0.032633504833718734, + -0.04647246578924686, -0.04194085742229854, -0.023223782408883956, + 0.00731942960920641, 0.047965034642079935, 0.0970000595292903, + 0.15223703172248554, 0.21012459046918924, 0.26621125492082354, + 0.3156937798353593, 0.3544154723256461, 0.37959789615152495, + 0.3908245287028343, 0.38975623695877926, 0.379547329293492, + 0.3642257114363394, 0.3471669901263442, 0.33044048567647616, + 0.31441104543966203, 0.29787836564036885, 0.27885778527929367, + 0.2555261034403598, 0.22712566381148006, 0.1945272918526726, + 0.1600161870328448, 0.1268592469602401, 0.0982765746342585, + 0.07653302235411207, 0.06220084898559409, 0.05429126861066862, + 0.05049803168904326, 0.04819838438618359, 0.045519709274245534, + 0.04196822650598828, 0.038686568607118825, 0.038055961201910925, + 0.04269864596741254, 0.05450939625929703, 0.07360808440680175, + 0.09821575296868616, 0.12524078920777335, 0.15142783213605956, + 0.17523429285002604, 0.19842839738754098, 0.22703792612689994, + 0.2714325112898419, 0.3447294419343068, 0.4609287761850321, + 0.6318808201355101, 0.8636369000306856, 1.1567367058316544 + ], + "pressure:branch124_seg2:J52": [ + 8139.23884084945, 9341.184739359149, 10657.694685557099, + 12024.463722565497, 13371.535575904325, 14636.573235594571, + 15773.12520763573, 16756.33927110444, 17574.53667364064, + 18235.11821819815, 18753.791091571624, 19142.980112182384, + 19417.312184110964, 19582.811664403234, 19640.614517142432, + 19593.045550665578, 19439.072535363168, 19185.700166006824, + 18845.150062981145, 18431.85418200587, 17965.757927711125, + 17463.923934966962, 16940.45606006751, 16405.50372179242, + 15864.261492093281, 15320.35851935466, 14777.70897366162, + 14242.53653692765, 13723.875582025876, 13232.278830671428, + 12775.937312120759, 12357.646193582665, 11971.579212957879, + 11601.018972130245, 11221.63790180655, 10804.606885166288, + 10323.771264489304, 9760.270236842664, 9111.583837035414, + 8390.212440237052, 7623.912071024448, 6852.611941310454, + 6118.887419613296, 5461.773613004905, 4909.985282627403, 4479.93328629802, + 4170.828695251572, 3973.145902337293, 3869.4004639467007, + 3839.2505794431986, 3867.2596021225913, 3940.5034609617824, + 4051.6358145641643, 4195.770590594501, 4366.482670706478, + 4555.793037625256, 4750.954434690401, 4936.217435553016, + 5095.486585639854, 5215.884280054088, 5289.368739270129, + 5316.108657168081, 5303.995368819888, 5263.937601115526, + 5209.662276288247, 5152.017210677161, 5096.455360446885, 5042.84724745573, + 4986.214813828888, 4919.536038006592, 4837.304750414209, + 4737.923476750692, 4625.694155962341, 4509.3893771288895, + 4400.298312167128, 4308.854296413042, 4241.69592894522, 4199.285283992751, + 4176.9967205989715, 4166.579950051392, 4159.19453610185, + 4149.452384798327, 4137.043520469147, 4126.992437375353, + 4128.002014607681, 4148.634334024713, 4194.271797235268, + 4263.949329437934, 4349.88228038269, 4441.281915430456, 4527.738506130875, + 4605.96827877252, 4685.033510507657, 4788.714456519212, 4954.93894811175, + 5229.735320202841, 5658.512534417656, 6279.701020074318, + 7108.248141881357, 8139.23884084945 + ], + "flow:J52:branch125_seg0": [ + 0.712930754887276, 0.9272139382068546, 1.1657217771708799, + 1.4169003455852225, 1.6677670691742803, 1.9064292798778035, + 2.123526734884179, 2.3132094676303203, 2.4727006594305414, + 2.602759464351906, 2.7055705905871648, 2.783832085090827, + 2.8402782804028033, 2.876224688897178, 2.8923536888277837, + 2.8888143687689896, 2.865563788008808, 2.8236955106948884, + 2.7648916215994297, 2.691911903277729, 2.608215366963, 2.5170040190290934, + 2.421175759977212, 2.3227476481284235, 2.2229089597960203, + 2.122415844214723, 2.02192637438009, 1.9224736501141992, 1.82560165659319, + 1.733204304564701, 1.6469409830962363, 1.5676788943688216, + 1.4947467271828292, 1.4256152178577068, 1.356153732768446, + 1.2811818127639407, 1.1956069489033136, 1.0955729428516408, + 0.9797790242545462, 0.8496463786697898, 0.7097265276322152, + 0.5667963430409405, 0.4286556539394512, 0.3027819163282346, + 0.19518208680733262, 0.10938607372621541, 0.046107449893597705, + 0.0041407911287320975, -0.01963152290142828, -0.02871839474920006, + -0.026277337072867387, -0.0149266117970465, 0.0038309959115224706, + 0.028902085235520077, 0.05923715985165127, 0.09348354779186384, + 0.12945997806830922, 0.16441921376395996, 0.19537464747807803, + 0.21971759785148867, 0.2356879314038415, 0.24297770368603822, + 0.24256459061316032, 0.23639296100715226, 0.2269536824052672, + 0.2163622437478197, 0.20594259633631018, 0.19595812931303852, + 0.18569270705326466, 0.17392481526205045, 0.1595104562334059, + 0.14195296350457376, 0.12175484973954336, 0.10030944743193478, + 0.07963364620626275, 0.06173625095618965, 0.0480502115758064, + 0.038973063338557, 0.0339226373185162, 0.03148512440568701, + 0.030035007899576745, 0.028384093695625615, 0.026191380994145693, + 0.02413360480285503, 0.023668630405296803, 0.026429178517745507, + 0.033615386806066856, 0.04534104855609746, 0.06054581363405679, + 0.0773251707274464, 0.09364929555856132, 0.10851331695578653, + 0.1229365933119055, 0.14057357727602607, 0.16778365352679575, + 0.21267634879464994, 0.2839657398001166, 0.38906321323862175, + 0.5319004865031236, 0.712930754887276 + ], + "pressure:J52:branch125_seg0": [ + 8139.23884084945, 9341.184739359149, 10657.694685557099, + 12024.463722565497, 13371.535575904325, 14636.573235594571, + 15773.12520763573, 16756.33927110444, 17574.53667364064, + 18235.11821819815, 18753.791091571624, 19142.980112182384, + 19417.312184110964, 19582.811664403234, 19640.614517142432, + 19593.045550665578, 19439.072535363168, 19185.700166006824, + 18845.150062981145, 18431.85418200587, 17965.757927711125, + 17463.923934966962, 16940.45606006751, 16405.50372179242, + 15864.261492093281, 15320.35851935466, 14777.70897366162, + 14242.53653692765, 13723.875582025876, 13232.278830671428, + 12775.937312120759, 12357.646193582665, 11971.579212957879, + 11601.018972130245, 11221.63790180655, 10804.606885166288, + 10323.771264489304, 9760.270236842664, 9111.583837035414, + 8390.212440237052, 7623.912071024448, 6852.611941310454, + 6118.887419613296, 5461.773613004905, 4909.985282627403, 4479.93328629802, + 4170.828695251572, 3973.145902337293, 3869.4004639467007, + 3839.2505794431986, 3867.2596021225913, 3940.5034609617824, + 4051.6358145641643, 4195.770590594501, 4366.482670706478, + 4555.793037625256, 4750.954434690401, 4936.217435553016, + 5095.486585639854, 5215.884280054088, 5289.368739270129, + 5316.108657168081, 5303.995368819888, 5263.937601115526, + 5209.662276288247, 5152.017210677161, 5096.455360446885, 5042.84724745573, + 4986.214813828888, 4919.536038006592, 4837.304750414209, + 4737.923476750692, 4625.694155962341, 4509.3893771288895, + 4400.298312167128, 4308.854296413042, 4241.69592894522, 4199.285283992751, + 4176.9967205989715, 4166.579950051392, 4159.19453610185, + 4149.452384798327, 4137.043520469147, 4126.992437375353, + 4128.002014607681, 4148.634334024713, 4194.271797235268, + 4263.949329437934, 4349.88228038269, 4441.281915430456, 4527.738506130875, + 4605.96827877252, 4685.033510507657, 4788.714456519212, 4954.93894811175, + 5229.735320202841, 5658.512534417656, 6279.701020074318, + 7108.248141881357, 8139.23884084945 + ], + "flow:J52:branch136_seg0": [ + 0.44380595094437864, 0.5757708656501244, 0.7218557874852164, + 0.8749788591927408, 1.0272048789743278, 1.1713758379795562, + 1.3019610706374816, 1.415650281353851, 1.5108808299626362, + 1.5882819681548757, 1.6493042613958915, 1.6955328351696461, + 1.7286455653496162, 1.7493694339928103, 1.758048478586064, + 1.754797887460641, 1.739560358477363, 1.7130708713044132, + 1.6764181675393555, 1.6312975774102003, 1.579870910225186, + 1.5240578705719354, 1.4655837141164985, 1.405637355279848, + 1.3448899305446844, 1.283784590177417, 1.2227251360770839, + 1.1623628324630657, 1.1036648615253848, 1.0477986427887602, + 0.9957469238856181, 0.9479771733985922, 0.9039966050754028, + 0.8621496809298579, 0.819847653064307, 0.7738986987307073, + 0.7212385186062629, 0.6595990664539276, 0.5883596281222425, + 0.5085486254517979, 0.4230812969305768, 0.3362071519174927, + 0.25269312434311836, 0.17703779807199851, 0.11278451032892953, + 0.06195028809327008, 0.024779028413328553, 0.0004517137015344308, + -0.013001981932290458, -0.0177540710400468, -0.015663520349431158, + -0.008297170611837457, 0.0034884336976839397, 0.01906294940655986, + 0.03776289967763904, 0.058753483930621644, 0.08066461240087998, + 0.10179204115686365, 0.12031913235728124, 0.1346978744741575, + 0.1439099647476835, 0.1478468250167961, 0.14719164634561888, + 0.14315436828633973, 0.13727202903107227, 0.13080474637852454, + 0.12449788934016595, 0.11845291612662352, 0.11218565858710423, + 0.10493297001724317, 0.09601564720695384, 0.08517270030690624, + 0.07277244211312925, 0.05970673960091, 0.04722560075397735, + 0.03654032367806886, 0.028482810778305667, 0.023227785647037084, + 0.02036863129215241, 0.01901290728335625, 0.01816337648660685, + 0.017135615578619923, 0.01577684551184259, 0.014552963804263802, + 0.014387330796614124, 0.016269467449667046, 0.02089400945323017, + 0.028267035850704295, 0.03766993933462937, 0.047915618480326945, + 0.05777853657749824, 0.06672097589423949, 0.07549180407563542, + 0.08646434885087383, 0.10364885776304608, 0.13205309313965685, + 0.1769630363849155, 0.24281760689688828, 0.3317364135275623, + 0.44380595094437864 + ], + "pressure:J52:branch136_seg0": [ + 8139.23884084945, 9341.184739359149, 10657.694685557099, + 12024.463722565497, 13371.535575904325, 14636.573235594571, + 15773.12520763573, 16756.33927110444, 17574.53667364064, + 18235.11821819815, 18753.791091571624, 19142.980112182384, + 19417.312184110964, 19582.811664403234, 19640.614517142432, + 19593.045550665578, 19439.072535363168, 19185.700166006824, + 18845.150062981145, 18431.85418200587, 17965.757927711125, + 17463.923934966962, 16940.45606006751, 16405.50372179242, + 15864.261492093281, 15320.35851935466, 14777.70897366162, + 14242.53653692765, 13723.875582025876, 13232.278830671428, + 12775.937312120759, 12357.646193582665, 11971.579212957879, + 11601.018972130245, 11221.63790180655, 10804.606885166288, + 10323.771264489304, 9760.270236842664, 9111.583837035414, + 8390.212440237052, 7623.912071024448, 6852.611941310454, + 6118.887419613296, 5461.773613004905, 4909.985282627403, 4479.93328629802, + 4170.828695251572, 3973.145902337293, 3869.4004639467007, + 3839.2505794431986, 3867.2596021225913, 3940.5034609617824, + 4051.6358145641643, 4195.770590594501, 4366.482670706478, + 4555.793037625256, 4750.954434690401, 4936.217435553016, + 5095.486585639854, 5215.884280054088, 5289.368739270129, + 5316.108657168081, 5303.995368819888, 5263.937601115526, + 5209.662276288247, 5152.017210677161, 5096.455360446885, 5042.84724745573, + 4986.214813828888, 4919.536038006592, 4837.304750414209, + 4737.923476750692, 4625.694155962341, 4509.3893771288895, + 4400.298312167128, 4308.854296413042, 4241.69592894522, 4199.285283992751, + 4176.9967205989715, 4166.579950051392, 4159.19453610185, + 4149.452384798327, 4137.043520469147, 4126.992437375353, + 4128.002014607681, 4148.634334024713, 4194.271797235268, + 4263.949329437934, 4349.88228038269, 4441.281915430456, 4527.738506130875, + 4605.96827877252, 4685.033510507657, 4788.714456519212, 4954.93894811175, + 5229.735320202841, 5658.512534417656, 6279.701020074318, + 7108.248141881357, 8139.23884084945 + ], + "flow:branch1_seg0:J53": [ + 40.0356929872175, 51.47282722230463, 63.89867943453984, 76.68307774272138, + 89.16951464013097, 100.79285226864292, 111.14791997218535, + 120.02098504281439, 127.3537864704326, 133.2367549626806, + 137.8150476759863, 141.22987911192885, 143.5982773888604, + 144.97221805437886, 145.35760163083518, 144.7598022444683, + 143.1799246632298, 140.68684792038482, 137.39720300926402, + 133.45706666314, 129.05535214900138, 124.3475466529661, + 119.46355637851003, 114.48752822280413, 109.46138021560849, + 104.41519067364696, 99.38410496995378, 94.4295923914959, 89.6397404292106, + 85.11504150137816, 80.93000767319734, 77.10423099331824, + 73.56830363128917, 70.15523873450884, 66.62342329338745, 62.6985413472591, + 58.13462990246702, 52.77662443557636, 46.61349783142114, + 39.78990328404685, 32.59012776959069, 25.40022324246308, + 18.624542135796162, 12.62503944946119, 7.651355598186557, + 3.838223941019531, 1.1521656117002306, -0.5108797229727617, + -1.3309588183552616, -1.4964307789096574, -1.14940772287575, + -0.4038305876492564, 0.6816592142296848, 2.0645124270484065, + 3.6890379841062417, 5.474728645645474, 7.297425031713291, + 9.006251956565768, 10.450228994962869, 11.509444871293578, + 12.121312899034379, 12.298418044710415, 12.120047296204929, + 11.702052509627679, 11.173244242154208, 10.63048445642229, + 10.118711451387766, 9.626777142684961, 9.099998367730782, + 8.468677550667445, 7.682940952498441, 6.732911463490286, + 5.667742692990605, 4.576382379997456, 3.5696388818734626, + 2.743483071977461, 2.1549512979469307, 1.7997664836399783, + 1.6259394882338822, 1.5495179221274984, 1.4880770541898263, + 1.394468084801566, 1.2730976632700557, 1.179897221476254, + 1.201512676029213, 1.4206609572296514, 1.8814154958523333, + 2.5659897601467683, 3.3942989836224573, 4.256546742730182, + 5.055742234739812, 5.771169784330154, 6.504023763201, 7.498082767760344, + 9.127596985248935, 11.837524629585738, 16.048579420939696, + 22.11380617523166, 30.13523833145012, 40.0356929872175 + ], + "pressure:branch1_seg0:J53": [ + 10460.944616346052, 12013.082063735459, 13567.552787556002, + 15042.203326296085, 16374.56160537876, 17516.65350860346, + 18450.83294216467, 19190.194590943654, 19760.01290542456, + 20174.881347956536, 20475.66150798491, 20665.73601668965, + 20747.767348925587, 20728.652436957123, 20589.758734606898, + 20343.270703036003, 19988.890604422704, 19539.77014782959, + 19031.560924855516, 18474.256122212446, 17896.491852334937, + 17313.34481427929, 16727.911478881244, 16145.276150848857, + 15563.404507465651, 14984.141464414943, 14415.48550026139, + 13868.958866808267, 13358.636661511027, 12896.02778152924, + 12483.639130302767, 12108.50183453337, 11748.299471656805, + 11366.05233724204, 10922.473726583587, 10384.886195608375, + 9736.935684538055, 8978.712057696946, 8135.536537516096, + 7257.994153682352, 6393.765292577806, 5603.97364107839, 4934.063222793606, + 4413.058657257052, 4040.100596781757, 3818.474548298282, + 3712.340477149206, 3693.3708844668467, 3742.6204210841775, + 3830.944298060994, 3954.5612194476735, 4109.834250391521, + 4291.063146232581, 4500.529427752467, 4725.65791409133, 4949.766735032289, + 5154.794912942593, 5318.16802039122, 5425.188236145596, 5470.291811748494, + 5459.745335425234, 5404.1010637575, 5327.953993119424, 5246.7018596931575, + 5173.0074245079, 5113.101741602826, 5060.606011667821, 5004.470871679862, + 4933.048455699755, 4837.525606347561, 4718.805283983307, + 4582.9162253539425, 4446.03914224584, 4325.17467794559, 4233.344618179601, + 4176.741796908671, 4153.72543183402, 4153.308760842726, 4159.861304804097, + 4162.8392830190505, 4154.443869743345, 4136.97226433466, + 4121.307103196007, 4121.861530430868, 4151.551017677068, + 4216.828686891225, 4312.565387443197, 4427.252840885824, 4539.63318744127, + 4635.769692579037, 4711.771686541371, 4781.975032759863, + 4882.316433208743, 5065.829502383006, 5395.7084356772275, + 5933.599493388358, 6706.109042123171, 7747.098508281309, 9019.03533977048, + 10460.944616346052 + ], + "flow:J53:branch1_seg1": [ + 40.0356929872175, 51.47282722230463, 63.89867943453984, 76.68307774272138, + 89.16951464013097, 100.79285226864292, 111.14791997218535, + 120.02098504281439, 127.3537864704326, 133.2367549626806, + 137.8150476759863, 141.22987911192885, 143.5982773888604, + 144.97221805437886, 145.35760163083518, 144.7598022444683, + 143.1799246632298, 140.68684792038482, 137.39720300926402, + 133.45706666314, 129.05535214900138, 124.3475466529661, + 119.46355637851003, 114.48752822280413, 109.46138021560849, + 104.41519067364696, 99.38410496995378, 94.4295923914959, 89.6397404292106, + 85.11504150137816, 80.93000767319734, 77.10423099331824, + 73.56830363128917, 70.15523873450884, 66.62342329338745, 62.6985413472591, + 58.13462990246702, 52.77662443557636, 46.61349783142114, + 39.78990328404685, 32.59012776959069, 25.40022324246308, + 18.624542135796162, 12.62503944946119, 7.651355598186557, + 3.838223941019531, 1.1521656117002306, -0.5108797229727617, + -1.3309588183552616, -1.4964307789096574, -1.14940772287575, + -0.4038305876492564, 0.6816592142296848, 2.0645124270484065, + 3.6890379841062417, 5.474728645645474, 7.297425031713291, + 9.006251956565768, 10.450228994962869, 11.509444871293578, + 12.121312899034379, 12.298418044710415, 12.120047296204929, + 11.702052509627679, 11.173244242154208, 10.63048445642229, + 10.118711451387766, 9.626777142684961, 9.099998367730782, + 8.468677550667445, 7.682940952498441, 6.732911463490286, + 5.667742692990605, 4.576382379997456, 3.5696388818734626, + 2.743483071977461, 2.1549512979469307, 1.7997664836399783, + 1.6259394882338822, 1.5495179221274984, 1.4880770541898263, + 1.394468084801566, 1.2730976632700557, 1.179897221476254, + 1.201512676029213, 1.4206609572296514, 1.8814154958523333, + 2.5659897601467683, 3.3942989836224573, 4.256546742730182, + 5.055742234739812, 5.771169784330154, 6.504023763201, 7.498082767760344, + 9.127596985248935, 11.837524629585738, 16.048579420939696, + 22.11380617523166, 30.13523833145012, 40.0356929872175 + ], + "pressure:J53:branch1_seg1": [ + 10460.944616346052, 12013.082063735459, 13567.552787556002, + 15042.203326296085, 16374.56160537876, 17516.65350860346, + 18450.83294216467, 19190.194590943654, 19760.01290542456, + 20174.881347956536, 20475.66150798491, 20665.73601668965, + 20747.767348925587, 20728.652436957123, 20589.758734606898, + 20343.270703036003, 19988.890604422704, 19539.77014782959, + 19031.560924855516, 18474.256122212446, 17896.491852334937, + 17313.34481427929, 16727.911478881244, 16145.276150848857, + 15563.404507465651, 14984.141464414943, 14415.48550026139, + 13868.958866808267, 13358.636661511027, 12896.02778152924, + 12483.639130302767, 12108.50183453337, 11748.299471656805, + 11366.05233724204, 10922.473726583587, 10384.886195608375, + 9736.935684538055, 8978.712057696946, 8135.536537516096, + 7257.994153682352, 6393.765292577806, 5603.97364107839, 4934.063222793606, + 4413.058657257052, 4040.100596781757, 3818.474548298282, + 3712.340477149206, 3693.3708844668467, 3742.6204210841775, + 3830.944298060994, 3954.5612194476735, 4109.834250391521, + 4291.063146232581, 4500.529427752467, 4725.65791409133, 4949.766735032289, + 5154.794912942593, 5318.16802039122, 5425.188236145596, 5470.291811748494, + 5459.745335425234, 5404.1010637575, 5327.953993119424, 5246.7018596931575, + 5173.0074245079, 5113.101741602826, 5060.606011667821, 5004.470871679862, + 4933.048455699755, 4837.525606347561, 4718.805283983307, + 4582.9162253539425, 4446.03914224584, 4325.17467794559, 4233.344618179601, + 4176.741796908671, 4153.72543183402, 4153.308760842726, 4159.861304804097, + 4162.8392830190505, 4154.443869743345, 4136.97226433466, + 4121.307103196007, 4121.861530430868, 4151.551017677068, + 4216.828686891225, 4312.565387443197, 4427.252840885824, 4539.63318744127, + 4635.769692579037, 4711.771686541371, 4781.975032759863, + 4882.316433208743, 5065.829502383006, 5395.7084356772275, + 5933.599493388358, 6706.109042123171, 7747.098508281309, 9019.03533977048, + 10460.944616346052 + ], + "flow:branch1_seg1:J54": [ + 39.94110048614296, 51.37538181751742, 63.80207088699505, + 76.59439639889625, 89.09162662208585, 100.72795860910098, + 111.0953374739277, 119.98232132774255, 127.32425192580395, + 133.21420909623257, 137.8022256548453, 141.2206897101017, + 143.59762513609982, 144.9775502651509, 145.36930188695257, + 144.78027525127598, 143.20417703440103, 140.7174173011311, + 137.43057744294586, 133.49240086598513, 129.0917457772506, + 124.38413733385215, 119.50002404833477, 114.52402377955163, + 109.49783444779032, 104.4512869994566, 99.4193464106617, + 94.46287473959903, 89.6704368215479, 85.14233717946338, 80.95453677856831, + 77.12661635968153, 73.59134926894494, 70.18065849066781, + 66.65422966531108, 62.7356696074891, 58.180357304462206, + 52.82673617065573, 46.6690164388675, 39.84526593633098, 32.64244315972988, + 25.446240800982036, 18.66301086912385, 12.652622761198678, + 7.67095196535771, 3.848931652837018, 1.1562100577531391, + -0.5114494863895561, -1.3349788662982007, -1.5028563760118394, + -1.1580316446956005, -0.41429031917358355, 0.6691845379584999, + 2.0509145974953387, 3.674493453403063, 5.460935182404585, + 7.28566738628147, 8.997808461847828, 10.44538278191473, + 11.509154250845098, 12.123817808332465, 12.30265731185021, + 12.12573784605502, 11.706849835300421, 11.177392347607107, + 10.634006315091503, 10.121967696911518, 9.630680316339832, + 9.105086015438777, 8.475501455175554, 7.6908734836828625, + 6.741564242729805, 5.675986171853323, 4.583309419007208, + 3.5742763135781117, 2.746101087543681, 2.1555641648380557, + 1.799416808319135, 1.6254201346527808, 1.5497605888074695, + 1.4889308478326309, 1.3956432903905844, 1.2737756668661937, + 1.1789224160506393, 1.1985813078936753, 1.4151293435364685, + 1.8745320358216235, 2.5587125864668856, 3.3874819757598, + 4.251170576179574, 5.051531332117444, 5.766252572249136, + 6.495772002803178, 7.482503861714914, 9.102099328184062, + 11.79639912644617, 15.99388735795939, 22.041805131800665, + 30.050064611276305, 39.94110048614296 + ], + "pressure:branch1_seg1:J54": [ + 9637.414660634131, 11086.11290363266, 12583.713221164864, + 14053.477279151777, 15426.228234911947, 16646.635819616928, + 17683.85904612262, 18537.697591392774, 19216.327592086163, + 19735.18662145785, 20126.79419358005, 20396.94127706971, + 20556.455102225005, 20609.456236572943, 20546.149403951364, + 20374.710733883232, 20092.709538093008, 19712.361849298562, + 19259.474275327644, 18747.10906452672, 18200.651777758092, + 17636.96433483701, 17063.688787905325, 16488.16324936248, + 15911.020617835586, 15334.482630915507, 14764.79499910372, + 14211.374318650725, 13686.65766744584, 13202.29672773448, + 12763.624880437692, 12364.165086246965, 11988.268417735202, + 11605.959619885476, 11183.053453317105, 10686.775731790169, + 10096.243836772239, 9401.829923394822, 8619.53510103095, + 7783.997161427052, 6937.294668715162, 6133.730219244264, 5419.74049351724, + 4829.194446033649, 4374.856232216449, 4063.898189492736, + 3875.383637083432, 3786.378788559776, 3777.8980243738793, + 3823.02541409762, 3912.63622547973, 4039.4266170399596, 4197.018548473667, + 4385.210496520619, 4593.780220001289, 4809.914950528803, + 5016.934220334596, 5194.517723071363, 5326.42428818088, 5404.214995824096, + 5427.268538196289, 5402.856793825302, 5349.60969281053, + 5281.3300256209095, 5212.30944076872, 5151.018095582039, + 5095.8788103943025, 5040.028624714418, 4973.914180581843, + 4888.932158576092, 4782.869203080191, 4658.797059815218, + 4528.164168644142, 4405.349902565738, 4303.255838880053, 4230.45339104606, + 4188.7567460518885, 4171.796079738545, 4167.880336290041, + 4166.776354285577, 4159.593688612304, 4145.281288185712, + 4130.286728806888, 4125.593274799454, 4143.26325477176, + 4190.8557353177075, 4268.30731383298, 4367.887084259589, + 4473.190394905454, 4570.869076770987, 4653.597017085973, + 4728.112762468151, 4819.868571731328, 4971.16649497749, 5236.872730782005, + 5673.9918231567835, 6319.862489306684, 7209.091042709269, + 8328.682760529231, 9637.414660634131 + ], + "flow:J54:branch1_seg2": [ + 39.94110048614296, 51.37538181751742, 63.80207088699505, + 76.59439639889625, 89.09162662208585, 100.72795860910098, + 111.0953374739277, 119.98232132774255, 127.32425192580395, + 133.21420909623257, 137.8022256548453, 141.2206897101017, + 143.59762513609982, 144.9775502651509, 145.36930188695257, + 144.78027525127598, 143.20417703440103, 140.7174173011311, + 137.43057744294586, 133.49240086598513, 129.0917457772506, + 124.38413733385215, 119.50002404833477, 114.52402377955163, + 109.49783444779032, 104.4512869994566, 99.4193464106617, + 94.46287473959903, 89.6704368215479, 85.14233717946338, 80.95453677856831, + 77.12661635968153, 73.59134926894494, 70.18065849066781, + 66.65422966531108, 62.7356696074891, 58.180357304462206, + 52.82673617065573, 46.6690164388675, 39.84526593633098, 32.64244315972988, + 25.446240800982036, 18.66301086912385, 12.652622761198678, + 7.67095196535771, 3.848931652837018, 1.1562100577531391, + -0.5114494863895561, -1.3349788662982007, -1.5028563760118394, + -1.1580316446956005, -0.41429031917358355, 0.6691845379584999, + 2.0509145974953387, 3.674493453403063, 5.460935182404585, + 7.28566738628147, 8.997808461847828, 10.44538278191473, + 11.509154250845098, 12.123817808332465, 12.30265731185021, + 12.12573784605502, 11.706849835300421, 11.177392347607107, + 10.634006315091503, 10.121967696911518, 9.630680316339832, + 9.105086015438777, 8.475501455175554, 7.6908734836828625, + 6.741564242729805, 5.675986171853323, 4.583309419007208, + 3.5742763135781117, 2.746101087543681, 2.1555641648380557, + 1.799416808319135, 1.6254201346527808, 1.5497605888074695, + 1.4889308478326309, 1.3956432903905844, 1.2737756668661937, + 1.1789224160506393, 1.1985813078936753, 1.4151293435364685, + 1.8745320358216235, 2.5587125864668856, 3.3874819757598, + 4.251170576179574, 5.051531332117444, 5.766252572249136, + 6.495772002803178, 7.482503861714914, 9.102099328184062, + 11.79639912644617, 15.99388735795939, 22.041805131800665, + 30.050064611276305, 39.94110048614296 + ], + "pressure:J54:branch1_seg2": [ + 9637.414660634131, 11086.11290363266, 12583.713221164864, + 14053.477279151777, 15426.228234911947, 16646.635819616928, + 17683.85904612262, 18537.697591392774, 19216.327592086163, + 19735.18662145785, 20126.79419358005, 20396.94127706971, + 20556.455102225005, 20609.456236572943, 20546.149403951364, + 20374.710733883232, 20092.709538093008, 19712.361849298562, + 19259.474275327644, 18747.10906452672, 18200.651777758092, + 17636.96433483701, 17063.688787905325, 16488.16324936248, + 15911.020617835586, 15334.482630915507, 14764.79499910372, + 14211.374318650725, 13686.65766744584, 13202.29672773448, + 12763.624880437692, 12364.165086246965, 11988.268417735202, + 11605.959619885476, 11183.053453317105, 10686.775731790169, + 10096.243836772239, 9401.829923394822, 8619.53510103095, + 7783.997161427052, 6937.294668715162, 6133.730219244264, 5419.74049351724, + 4829.194446033649, 4374.856232216449, 4063.898189492736, + 3875.383637083432, 3786.378788559776, 3777.8980243738793, + 3823.02541409762, 3912.63622547973, 4039.4266170399596, 4197.018548473667, + 4385.210496520619, 4593.780220001289, 4809.914950528803, + 5016.934220334596, 5194.517723071363, 5326.42428818088, 5404.214995824096, + 5427.268538196289, 5402.856793825302, 5349.60969281053, + 5281.3300256209095, 5212.30944076872, 5151.018095582039, + 5095.8788103943025, 5040.028624714418, 4973.914180581843, + 4888.932158576092, 4782.869203080191, 4658.797059815218, + 4528.164168644142, 4405.349902565738, 4303.255838880053, 4230.45339104606, + 4188.7567460518885, 4171.796079738545, 4167.880336290041, + 4166.776354285577, 4159.593688612304, 4145.281288185712, + 4130.286728806888, 4125.593274799454, 4143.26325477176, + 4190.8557353177075, 4268.30731383298, 4367.887084259589, + 4473.190394905454, 4570.869076770987, 4653.597017085973, + 4728.112762468151, 4819.868571731328, 4971.16649497749, 5236.872730782005, + 5673.9918231567835, 6319.862489306684, 7209.091042709269, + 8328.682760529231, 9637.414660634131 + ], + "flow:branch3_seg0:J55": [ + 0.731474469601887, 0.9468967296473995, 1.18395051010995, + 1.4309024108257344, 1.6748576419578116, 1.904397770273316, + 2.110910134062903, 2.2894908875243107, 2.4380524314023444, + 2.5579943855873752, 2.651921123954103, 2.7224819309134167, + 2.772383210337519, 2.802709616939906, 2.813906270442271, + 2.806109037762309, 2.7791906589065656, 2.734393677825567, + 2.6735743886961885, 2.5995309897686303, 2.515802376503726, + 2.4254759913665414, 2.331264896472914, 2.234989941676199, + 2.137629093224276, 2.039822076405582, 1.942192945561711, + 1.8458066815757208, 1.7522581749013022, 1.6634536272566458, + 1.580953713325486, 1.5054196413690009, 1.4359060053169725, + 1.36955643832476, 1.302026557603385, 1.2280683967483013, + 1.1427603350674604, 1.0425744291031929, 0.9267737622856098, + 0.7973356852023334, 0.6592727128415137, 0.5196833949374298, + 0.3863719018509689, 0.266556713186811, 0.16575669721100883, + 0.0869720595237177, 0.030278292436499394, -0.005926819768554608, + -0.02500155328448219, -0.030545709290937813, -0.025537536747720954, + -0.012421260435154412, 0.007515896277492843, 0.03334012970849013, + 0.0640116559647381, 0.0981636523631932, 0.13353457153385373, + 0.16732635302777715, 0.19659419157424193, 0.21889011182637402, + 0.23267329348009957, 0.23791568132025592, 0.23587638223887034, + 0.2286170614771085, 0.21867345807130922, 0.20805843659019962, + 0.19788997814633746, 0.18821537235001973, 0.17814555878419702, + 0.16638325953896263, 0.15183271155112898, 0.13412720654120613, + 0.1139569871330392, 0.09285939071094312, 0.07291344929138925, + 0.05607661943640106, 0.043634184558203316, 0.035765396373007186, + 0.03169785632333602, 0.02990535569815674, 0.028747277934455667, + 0.027152324987039, 0.024960144969164322, 0.023027156527922272, + 0.022927768127615933, 0.026285108334537368, 0.03417940026026637, + 0.04651989081133178, 0.06202137045557981, 0.0786786355436618, + 0.09449902220848232, 0.1087083774608874, 0.12271320468928767, + 0.14060566405606378, 0.1691214934262151, 0.2165287421124433, + 0.2913617020967156, 0.4006521003413675, 0.5474772794068977, + 0.731474469601887 + ], + "pressure:branch3_seg0:J55": [ + 8662.242884152007, 9956.971903689666, 11343.182196190135, + 12752.984612890285, 14114.88764656981, 15367.923418020999, + 16470.49260855133, 17408.573203654116, 18175.107065854485, + 18781.432055662415, 19251.835991817516, 19595.281717437032, + 19825.86502534461, 19949.27162419383, 19962.00663663819, + 19868.956341052253, 19668.573119453973, 19368.166569522127, + 18985.482252151192, 18535.14449667664, 18038.577932241817, + 17513.09883104361, 16970.825768647173, 16420.846759759126, + 15866.696818865257, 15311.291657830345, 14759.039277253702, + 14217.26277523626, 13696.15892805828, 13206.988648143733, + 12756.983555243656, 12346.072033310691, 11965.228484471278, + 11592.584082986928, 11200.32033185182, 10757.688407158588, + 10240.022430152934, 9631.01148832351, 8934.378642883014, 8170.70718316685, + 7372.847358229123, 6586.6464546970155, 5856.60919604804, 5220.52736379704, + 4702.438490329282, 4314.593408635419, 4049.573073159736, + 3893.133257730302, 3826.0053658919924, 3825.3238540399716, + 3877.6091432664916, 3971.342064025709, 4100.424526403351, + 4261.4110651608025, 4446.318132077748, 4646.351004719274, + 4847.122639263111, 5031.008627201004, 5181.647094297033, + 5287.769344378276, 5343.434554123894, 5351.12632738537, 5323.340307228322, + 5271.951186286277, 5210.9784578069575, 5151.035859049253, + 5095.16855554262, 5040.824585151372, 4981.251931917528, 4908.593304665122, + 4818.123781605293, 4709.887023537327, 4590.606066272062, + 4471.070081582466, 4363.5155008632455, 4277.986656782623, + 4219.680431244563, 4186.490160755603, 4171.499295767141, 4165.3816772358, + 4158.798836229273, 4147.849684420666, 4134.480971009722, + 4125.866612583555, 4132.173539061538, 4161.815278556413, + 4218.623604272823, 4299.472577543338, 4393.147605576968, + 4487.752315132282, 4573.663471516883, 4650.545955779242, + 4732.971702765072, 4851.311016208346, 5049.727039664262, + 5378.664453447323, 5882.37560507787, 6597.275985735815, 7528.86507837424, + 8662.242884152007 + ], + "flow:J55:branch3_seg1": [ + 0.731474469601887, 0.9468967296473995, 1.18395051010995, + 1.4309024108257344, 1.6748576419578116, 1.904397770273316, + 2.110910134062903, 2.2894908875243107, 2.4380524314023444, + 2.5579943855873752, 2.651921123954103, 2.7224819309134167, + 2.772383210337519, 2.802709616939906, 2.813906270442271, + 2.806109037762309, 2.7791906589065656, 2.734393677825567, + 2.6735743886961885, 2.5995309897686303, 2.515802376503726, + 2.4254759913665414, 2.331264896472914, 2.234989941676199, + 2.137629093224276, 2.039822076405582, 1.942192945561711, + 1.8458066815757208, 1.7522581749013022, 1.6634536272566458, + 1.580953713325486, 1.5054196413690009, 1.4359060053169725, + 1.36955643832476, 1.302026557603385, 1.2280683967483013, + 1.1427603350674604, 1.0425744291031929, 0.9267737622856098, + 0.7973356852023334, 0.6592727128415137, 0.5196833949374298, + 0.3863719018509689, 0.266556713186811, 0.16575669721100883, + 0.0869720595237177, 0.030278292436499394, -0.005926819768554608, + -0.02500155328448219, -0.030545709290937813, -0.025537536747720954, + -0.012421260435154412, 0.007515896277492843, 0.03334012970849013, + 0.0640116559647381, 0.0981636523631932, 0.13353457153385373, + 0.16732635302777715, 0.19659419157424193, 0.21889011182637402, + 0.23267329348009957, 0.23791568132025592, 0.23587638223887034, + 0.2286170614771085, 0.21867345807130922, 0.20805843659019962, + 0.19788997814633746, 0.18821537235001973, 0.17814555878419702, + 0.16638325953896263, 0.15183271155112898, 0.13412720654120613, + 0.1139569871330392, 0.09285939071094312, 0.07291344929138925, + 0.05607661943640106, 0.043634184558203316, 0.035765396373007186, + 0.03169785632333602, 0.02990535569815674, 0.028747277934455667, + 0.027152324987039, 0.024960144969164322, 0.023027156527922272, + 0.022927768127615933, 0.026285108334537368, 0.03417940026026637, + 0.04651989081133178, 0.06202137045557981, 0.0786786355436618, + 0.09449902220848232, 0.1087083774608874, 0.12271320468928767, + 0.14060566405606378, 0.1691214934262151, 0.2165287421124433, + 0.2913617020967156, 0.4006521003413675, 0.5474772794068977, + 0.731474469601887 + ], + "pressure:J55:branch3_seg1": [ + 8662.242884152007, 9956.971903689666, 11343.182196190135, + 12752.984612890285, 14114.88764656981, 15367.923418020999, + 16470.49260855133, 17408.573203654116, 18175.107065854485, + 18781.432055662415, 19251.835991817516, 19595.281717437032, + 19825.86502534461, 19949.27162419383, 19962.00663663819, + 19868.956341052253, 19668.573119453973, 19368.166569522127, + 18985.482252151192, 18535.14449667664, 18038.577932241817, + 17513.09883104361, 16970.825768647173, 16420.846759759126, + 15866.696818865257, 15311.291657830345, 14759.039277253702, + 14217.26277523626, 13696.15892805828, 13206.988648143733, + 12756.983555243656, 12346.072033310691, 11965.228484471278, + 11592.584082986928, 11200.32033185182, 10757.688407158588, + 10240.022430152934, 9631.01148832351, 8934.378642883014, 8170.70718316685, + 7372.847358229123, 6586.6464546970155, 5856.60919604804, 5220.52736379704, + 4702.438490329282, 4314.593408635419, 4049.573073159736, + 3893.133257730302, 3826.0053658919924, 3825.3238540399716, + 3877.6091432664916, 3971.342064025709, 4100.424526403351, + 4261.4110651608025, 4446.318132077748, 4646.351004719274, + 4847.122639263111, 5031.008627201004, 5181.647094297033, + 5287.769344378276, 5343.434554123894, 5351.12632738537, 5323.340307228322, + 5271.951186286277, 5210.9784578069575, 5151.035859049253, + 5095.16855554262, 5040.824585151372, 4981.251931917528, 4908.593304665122, + 4818.123781605293, 4709.887023537327, 4590.606066272062, + 4471.070081582466, 4363.5155008632455, 4277.986656782623, + 4219.680431244563, 4186.490160755603, 4171.499295767141, 4165.3816772358, + 4158.798836229273, 4147.849684420666, 4134.480971009722, + 4125.866612583555, 4132.173539061538, 4161.815278556413, + 4218.623604272823, 4299.472577543338, 4393.147605576968, + 4487.752315132282, 4573.663471516883, 4650.545955779242, + 4732.971702765072, 4851.311016208346, 5049.727039664262, + 5378.664453447323, 5882.37560507787, 6597.275985735815, 7528.86507837424, + 8662.242884152007 + ], + "flow:branch3_seg1:J56": [ + 0.7277065923153374, 0.9427625253371889, 1.1796082831662489, + 1.4266171076349061, 1.6708274013957694, 1.9007657190085223, + 2.107768055908414, 2.2868857157800697, 2.435957481381016, + 2.5563628794154933, 2.650684901067625, 2.7216003193302654, + 2.7718510817783457, 2.802501668751253, 2.814040786076316, + 2.80656433980682, 2.779950432775351, 2.7354731743321454, + 2.6748689007859956, 2.600983937231495, 2.517385923000632, + 2.4271190673700955, 2.3329434550801533, 2.236687794085477, + 2.139330583400258, 2.041524869258695, 1.943877361517689, + 1.8474426349178323, 1.7538126674011725, 1.6648983439575626, + 1.582269849950957, 1.5066245421090185, 1.4370513352384209, + 1.3707135311840564, 1.3032911603187338, 1.229537192992188, + 1.1444853660732135, 1.0445820160746155, 0.9290409561606676, + 0.7997548812363309, 0.6617272086188751, 0.5220358980877825, + 0.3884880176379454, 0.26831475800577564, 0.16714542987507486, + 0.08798233044627156, 0.03089643675384271, -0.0055936767041428965, + -0.024908107753543605, -0.030640229431909204, -0.025756213238373873, + -0.012771037958640364, 0.007062242801953889, 0.032810147311877126, + 0.06341269044860572, 0.0975393381407347, 0.13293596461768506, + 0.16680383334219875, 0.19619564118765906, 0.21864326502964324, + 0.2325797104203165, 0.23795877426459472, 0.23600671139459234, + 0.22879294234224157, 0.21886434947435382, 0.20823762385773273, + 0.1980553906680773, 0.18838574256339252, 0.17834500615613486, + 0.16663566671544922, 0.15214025321008565, 0.13447803293569272, + 0.1143319813150264, 0.09321497313188165, 0.07321225566546603, + 0.056297293232581314, 0.04377475278365252, 0.03583203952734502, + 0.03172287320267589, 0.029923310163997716, 0.028773343968558244, + 0.027191936451488118, 0.024999118356031323, 0.023036313682317025, + 0.022875814781878487, 0.026151149980194608, 0.0339644200011237, + 0.04624253347675516, 0.061724916802920526, 0.07840004311145442, + 0.09425386582814936, 0.10847532273943242, 0.12242323268883462, + 0.14014216538987065, 0.16834226488159992, 0.21524684213323725, + 0.2894949739247243, 0.39816156387062984, 0.5442546356083081, + 0.7277065923153374 + ], + "pressure:branch3_seg1:J56": [ + 8193.515261280865, 9409.098163597799, 10736.222932724693, + 12109.916884422531, 13458.760449715453, 14720.226989351419, + 15848.407865062709, 16820.017154331897, 17624.48167727583, + 18270.463312423864, 18775.214783830543, 19151.726090908593, + 19414.817269226707, 19570.29993206413, 19619.035458847517, + 19562.833522278204, 19400.778963795117, 19139.948228984103, + 18792.238420909245, 18373.050453156717, 17902.545783575093, + 17397.60027957485, 16872.52977971004, 16337.108876589586, + 15796.174169729311, 15253.127615864123, 14711.604426723543, + 14177.848161641708, 13661.036975067807, 13171.910490318276, + 12718.694047301216, 12304.099782396823, 11921.966795206947, + 11554.844025059541, 11177.800559600337, 10761.417671127761, + 10279.131169979144, 9712.324292092526, 9059.002375333022, + 8332.525923281304, 7561.966446666645, 6788.291326849174, + 6054.904792159929, 5401.002086853913, 4855.606654357132, + 4433.950965771539, 4134.11969788676, 3946.282624066005, + 3851.4199200931976, 3828.8596883592413, 3863.140879497015, + 3941.0417947380615, 4055.9553937916603, 4203.241476084828, + 4376.399907250507, 4567.7259510643535, 4764.23638738198, + 4949.870511212587, 5108.3724604441195, 5226.838183076025, + 5297.415150920503, 5320.630166196679, 5304.924863400117, + 5261.825176387401, 5205.342665937089, 5146.442743870805, + 5090.4701300990955, 5036.950015287809, 4980.467486688631, + 4913.6718780713945, 4830.8153681987715, 4730.42803250669, + 4617.137134257607, 4499.969957083424, 4390.631528533527, + 4299.750525843083, 4233.936144365276, 4193.291548504517, + 4172.909298600811, 4164.128789683105, 4157.733830124032, 4148.38088087819, + 4135.93140046934, 4125.753306459963, 4126.9430511218425, + 4148.3246651375375, 4195.319127828405, 4266.740880789705, + 4354.4006143323095, 4446.984403697985, 4533.830391644409, + 4611.660121611716, 4690.006027678599, 4793.476343132581, 4961.1029710571, + 5239.6165225394525, 5675.679276117965, 6307.477972496625, + 7148.201712038566, 8193.515261280865 + ], + "flow:J56:branch3_seg2": [ + 0.7277065923153374, 0.9427625253371889, 1.1796082831662489, + 1.4266171076349061, 1.6708274013957694, 1.9007657190085223, + 2.107768055908414, 2.2868857157800697, 2.435957481381016, + 2.5563628794154933, 2.650684901067625, 2.7216003193302654, + 2.7718510817783457, 2.802501668751253, 2.814040786076316, + 2.80656433980682, 2.779950432775351, 2.7354731743321454, + 2.6748689007859956, 2.600983937231495, 2.517385923000632, + 2.4271190673700955, 2.3329434550801533, 2.236687794085477, + 2.139330583400258, 2.041524869258695, 1.943877361517689, + 1.8474426349178323, 1.7538126674011725, 1.6648983439575626, + 1.582269849950957, 1.5066245421090185, 1.4370513352384209, + 1.3707135311840564, 1.3032911603187338, 1.229537192992188, + 1.1444853660732135, 1.0445820160746155, 0.9290409561606676, + 0.7997548812363309, 0.6617272086188751, 0.5220358980877825, + 0.3884880176379454, 0.26831475800577564, 0.16714542987507486, + 0.08798233044627156, 0.03089643675384271, -0.0055936767041428965, + -0.024908107753543605, -0.030640229431909204, -0.025756213238373873, + -0.012771037958640364, 0.007062242801953889, 0.032810147311877126, + 0.06341269044860572, 0.0975393381407347, 0.13293596461768506, + 0.16680383334219875, 0.19619564118765906, 0.21864326502964324, + 0.2325797104203165, 0.23795877426459472, 0.23600671139459234, + 0.22879294234224157, 0.21886434947435382, 0.20823762385773273, + 0.1980553906680773, 0.18838574256339252, 0.17834500615613486, + 0.16663566671544922, 0.15214025321008565, 0.13447803293569272, + 0.1143319813150264, 0.09321497313188165, 0.07321225566546603, + 0.056297293232581314, 0.04377475278365252, 0.03583203952734502, + 0.03172287320267589, 0.029923310163997716, 0.028773343968558244, + 0.027191936451488118, 0.024999118356031323, 0.023036313682317025, + 0.022875814781878487, 0.026151149980194608, 0.0339644200011237, + 0.04624253347675516, 0.061724916802920526, 0.07840004311145442, + 0.09425386582814936, 0.10847532273943242, 0.12242323268883462, + 0.14014216538987065, 0.16834226488159992, 0.21524684213323725, + 0.2894949739247243, 0.39816156387062984, 0.5442546356083081, + 0.7277065923153374 + ], + "pressure:J56:branch3_seg2": [ + 8193.515261280865, 9409.098163597799, 10736.222932724693, + 12109.916884422531, 13458.760449715453, 14720.226989351419, + 15848.407865062709, 16820.017154331897, 17624.48167727583, + 18270.463312423864, 18775.214783830543, 19151.726090908593, + 19414.817269226707, 19570.29993206413, 19619.035458847517, + 19562.833522278204, 19400.778963795117, 19139.948228984103, + 18792.238420909245, 18373.050453156717, 17902.545783575093, + 17397.60027957485, 16872.52977971004, 16337.108876589586, + 15796.174169729311, 15253.127615864123, 14711.604426723543, + 14177.848161641708, 13661.036975067807, 13171.910490318276, + 12718.694047301216, 12304.099782396823, 11921.966795206947, + 11554.844025059541, 11177.800559600337, 10761.417671127761, + 10279.131169979144, 9712.324292092526, 9059.002375333022, + 8332.525923281304, 7561.966446666645, 6788.291326849174, + 6054.904792159929, 5401.002086853913, 4855.606654357132, + 4433.950965771539, 4134.11969788676, 3946.282624066005, + 3851.4199200931976, 3828.8596883592413, 3863.140879497015, + 3941.0417947380615, 4055.9553937916603, 4203.241476084828, + 4376.399907250507, 4567.7259510643535, 4764.23638738198, + 4949.870511212587, 5108.3724604441195, 5226.838183076025, + 5297.415150920503, 5320.630166196679, 5304.924863400117, + 5261.825176387401, 5205.342665937089, 5146.442743870805, + 5090.4701300990955, 5036.950015287809, 4980.467486688631, + 4913.6718780713945, 4830.8153681987715, 4730.42803250669, + 4617.137134257607, 4499.969957083424, 4390.631528533527, + 4299.750525843083, 4233.936144365276, 4193.291548504517, + 4172.909298600811, 4164.128789683105, 4157.733830124032, 4148.38088087819, + 4135.93140046934, 4125.753306459963, 4126.9430511218425, + 4148.3246651375375, 4195.319127828405, 4266.740880789705, + 4354.4006143323095, 4446.984403697985, 4533.830391644409, + 4611.660121611716, 4690.006027678599, 4793.476343132581, 4961.1029710571, + 5239.6165225394525, 5675.679276117965, 6307.477972496625, + 7148.201712038566, 8193.515261280865 + ], + "flow:branch9_seg0:J57": [ + 0.4144761982836396, 0.5410892773772346, 0.6870346753695753, + 0.8470490912015646, 1.0145035583485689, 1.1825463688950804, + 1.3449564261823295, 1.4968406253359092, 1.6347593015824693, + 1.757082846578453, 1.8632458981464608, 1.953374779625694, + 2.027990765982733, 2.08730856797511, 2.1314270079100894, + 2.160301422273958, 2.1738433942508313, 2.172504486817071, + 2.157102477902514, 2.129035065111355, 2.090172144013978, + 2.0424441863886944, 1.9877488375311976, 1.9276636294747156, + 1.8633960236754241, 1.7959053330292913, 1.726043254781649, + 1.6547677278029729, 1.583239449971944, 1.5127823707297487, + 1.4446409988176896, 1.379697571020957, 1.3180885729446066, + 1.2589770463367937, 1.2005681276166926, 1.1403143121633168, + 1.0754221743615955, 1.0034302260260726, 0.922935857860156, + 0.8338547168169085, 0.7377538800039298, 0.6375930221723412, + 0.5372517101062336, 0.4408898199915827, 0.3523087349665079, + 0.274383503327097, 0.20869287406228493, 0.1557346483402549, + 0.11489721884231967, 0.08503003996590448, 0.0648313152282534, + 0.053028009287814704, 0.04867323535831462, 0.050960437363477856, + 0.05908875896787027, 0.07209670695106342, 0.08863320410836009, + 0.10702235096460298, 0.12538831991602575, 0.14194051410822145, + 0.15522812101442565, 0.16447082100527366, 0.16957051641080592, + 0.17103252480642123, 0.16980118519097046, 0.166843852244575, + 0.16290400953228873, 0.15830387657692147, 0.15290674528464238, + 0.1462716316423113, 0.13790139629631631, 0.127515448385609, + 0.11526463701893779, 0.10175079479734986, 0.08794455717853726, + 0.07492555334922449, 0.06360479224071494, 0.05446868878270502, + 0.04752294641697516, 0.042316585023268606, 0.038183883204317925, + 0.034539636954817154, 0.031118554332695475, 0.02811301566008203, + 0.026128208840000878, 0.025945602520778717, 0.0282405029655002, + 0.03324543460987863, 0.04063660914333056, 0.04961616621342114, + 0.05920572601205319, 0.06878386379294195, 0.07862126203029275, + 0.09028859667789407, 0.10683106841869076, 0.1324650916001176, + 0.17206596496786125, 0.23031643682432285, 0.31056561987871795, + 0.4144761982836396 + ], + "pressure:branch9_seg0:J57": [ + 7206.676452752687, 8136.952293668722, 9179.279887528723, + 10293.295821764454, 11431.729113791323, 12548.689480312742, + 13605.860537061342, 14577.70143716129, 15445.77984164772, + 16204.450909660969, 16855.912213975374, 17400.33146946779, + 17842.440346570293, 18183.24532387374, 18421.11268186123, + 18557.52272813628, 18591.100386269136, 18526.487307437066, + 18372.91485706676, 18139.868582227886, 17841.895949326354, + 17492.171367963416, 17102.068320936643, 16681.359570028624, + 16236.613240193186, 15773.494917824828, 15297.8379679543, + 14816.633939838965, 14338.433868944781, 13872.548268459828, + 13426.521911040854, 13004.032503316432, 12603.08425622589, + 12213.865775847018, 11821.028385339445, 11405.374946841144, + 10948.659527381003, 10436.076485230611, 9863.369657424417, + 9236.095368089607, 8569.776748798186, 7889.666624655216, + 7224.052484511942, 6600.70441678067, 6041.851289714153, 5563.868718071417, + 5171.584327145899, 4863.966630793647, 4634.774543756119, + 4473.544512712608, 4372.325959153218, 4323.222198389665, + 4320.454520438758, 4359.635224859614, 4434.546966841675, + 4537.930309941198, 4659.393067424207, 4786.366032399278, + 4905.9677697436455, 5007.276545136884, 5082.215524025163, + 5127.952013820259, 5147.274585819579, 5144.824067940956, + 5128.032925593592, 5103.329191145251, 5074.121774350569, 5040.84360616973, + 5001.078608213979, 4951.028555378538, 4887.780159742168, 4810.52359199781, + 4722.155174807314, 4628.416104582774, 4536.708362882077, + 4454.196991615469, 4385.975095060365, 4333.382786807437, + 4294.505885547058, 4265.1682133753875, 4240.3718301846675, + 4217.028070186848, 4194.975108096339, 4177.219121368435, + 4169.109977104402, 4175.993452235877, 4201.416821832221, + 4245.129898964998, 4302.390844306376, 4366.7778255505, 4431.867066024383, + 4495.674107817169, 4564.266564828506, 4653.528126143576, + 4789.251445025941, 5003.773504064664, 5329.514331481811, + 5797.124328770062, 6422.1191959282305, 7206.676452752687 + ], + "flow:J57:branch9_seg1": [ + 0.4144761982836396, 0.5410892773772346, 0.6870346753695753, + 0.8470490912015646, 1.0145035583485689, 1.1825463688950804, + 1.3449564261823295, 1.4968406253359092, 1.6347593015824693, + 1.757082846578453, 1.8632458981464608, 1.953374779625694, + 2.027990765982733, 2.08730856797511, 2.1314270079100894, + 2.160301422273958, 2.1738433942508313, 2.172504486817071, + 2.157102477902514, 2.129035065111355, 2.090172144013978, + 2.0424441863886944, 1.9877488375311976, 1.9276636294747156, + 1.8633960236754241, 1.7959053330292913, 1.726043254781649, + 1.6547677278029729, 1.583239449971944, 1.5127823707297487, + 1.4446409988176896, 1.379697571020957, 1.3180885729446066, + 1.2589770463367937, 1.2005681276166926, 1.1403143121633168, + 1.0754221743615955, 1.0034302260260726, 0.922935857860156, + 0.8338547168169085, 0.7377538800039298, 0.6375930221723412, + 0.5372517101062336, 0.4408898199915827, 0.3523087349665079, + 0.274383503327097, 0.20869287406228493, 0.1557346483402549, + 0.11489721884231967, 0.08503003996590448, 0.0648313152282534, + 0.053028009287814704, 0.04867323535831462, 0.050960437363477856, + 0.05908875896787027, 0.07209670695106342, 0.08863320410836009, + 0.10702235096460298, 0.12538831991602575, 0.14194051410822145, + 0.15522812101442565, 0.16447082100527366, 0.16957051641080592, + 0.17103252480642123, 0.16980118519097046, 0.166843852244575, + 0.16290400953228873, 0.15830387657692147, 0.15290674528464238, + 0.1462716316423113, 0.13790139629631631, 0.127515448385609, + 0.11526463701893779, 0.10175079479734986, 0.08794455717853726, + 0.07492555334922449, 0.06360479224071494, 0.05446868878270502, + 0.04752294641697516, 0.042316585023268606, 0.038183883204317925, + 0.034539636954817154, 0.031118554332695475, 0.02811301566008203, + 0.026128208840000878, 0.025945602520778717, 0.0282405029655002, + 0.03324543460987863, 0.04063660914333056, 0.04961616621342114, + 0.05920572601205319, 0.06878386379294195, 0.07862126203029275, + 0.09028859667789407, 0.10683106841869076, 0.1324650916001176, + 0.17206596496786125, 0.23031643682432285, 0.31056561987871795, + 0.4144761982836396 + ], + "pressure:J57:branch9_seg1": [ + 7206.676452752687, 8136.952293668722, 9179.279887528723, + 10293.295821764454, 11431.729113791323, 12548.689480312742, + 13605.860537061342, 14577.70143716129, 15445.77984164772, + 16204.450909660969, 16855.912213975374, 17400.33146946779, + 17842.440346570293, 18183.24532387374, 18421.11268186123, + 18557.52272813628, 18591.100386269136, 18526.487307437066, + 18372.91485706676, 18139.868582227886, 17841.895949326354, + 17492.171367963416, 17102.068320936643, 16681.359570028624, + 16236.613240193186, 15773.494917824828, 15297.8379679543, + 14816.633939838965, 14338.433868944781, 13872.548268459828, + 13426.521911040854, 13004.032503316432, 12603.08425622589, + 12213.865775847018, 11821.028385339445, 11405.374946841144, + 10948.659527381003, 10436.076485230611, 9863.369657424417, + 9236.095368089607, 8569.776748798186, 7889.666624655216, + 7224.052484511942, 6600.70441678067, 6041.851289714153, 5563.868718071417, + 5171.584327145899, 4863.966630793647, 4634.774543756119, + 4473.544512712608, 4372.325959153218, 4323.222198389665, + 4320.454520438758, 4359.635224859614, 4434.546966841675, + 4537.930309941198, 4659.393067424207, 4786.366032399278, + 4905.9677697436455, 5007.276545136884, 5082.215524025163, + 5127.952013820259, 5147.274585819579, 5144.824067940956, + 5128.032925593592, 5103.329191145251, 5074.121774350569, 5040.84360616973, + 5001.078608213979, 4951.028555378538, 4887.780159742168, 4810.52359199781, + 4722.155174807314, 4628.416104582774, 4536.708362882077, + 4454.196991615469, 4385.975095060365, 4333.382786807437, + 4294.505885547058, 4265.1682133753875, 4240.3718301846675, + 4217.028070186848, 4194.975108096339, 4177.219121368435, + 4169.109977104402, 4175.993452235877, 4201.416821832221, + 4245.129898964998, 4302.390844306376, 4366.7778255505, 4431.867066024383, + 4495.674107817169, 4564.266564828506, 4653.528126143576, + 4789.251445025941, 5003.773504064664, 5329.514331481811, + 5797.124328770062, 6422.1191959282305, 7206.676452752687 + ], + "flow:branch9_seg1:J58": [ + 0.4131395086251972, 0.5395508253381138, 0.6853462220464278, + 0.8452908489813631, 1.012745456426397, 1.1808512243417446, + 1.343376140301206, 1.4954154446569616, 1.6334974262981963, + 1.7559914277272495, 1.8623220034936927, 1.9526103250355398, + 2.0273865454903035, 2.086860782269003, 2.1311386615328343, + 2.1601712743596146, 2.1738690170133994, 2.1726806526785025, + 2.1574066261024667, 2.1294501699205353, 2.0906798361946604, + 2.0430206983098818, 1.9883798901343022, 1.9283365808750565, + 1.8641009410088045, 1.7966349579141063, 1.726787130072471, + 1.6555135909726582, 1.5839732249456298, 1.513491073576365, + 1.445313669630435, 1.3803340337711785, 1.318698263253383, + 1.25957802451899, 1.201189228837176, 1.140986710565413, 1.076170723145235, + 1.004271378715607, 0.9238710398496598, 0.8348637178315952, + 0.7388051133814818, 0.6386452042021445, 0.5382582232121332, + 0.4418074260800719, 0.3531155908154292, 0.27505908884742225, + 0.20922940592587602, 0.15614862501041396, 0.11519578188083404, + 0.08522932307500054, 0.06494714353380354, 0.05306444333326885, + 0.048642971061420175, 0.050870921892028756, 0.058946907904682995, + 0.0719191524389506, 0.08843717049352973, 0.10682738315846342, + 0.1252142117406145, 0.14180296403962694, 0.15513430188862143, + 0.1644218069877252, 0.16955974295330106, 0.17104918432636776, + 0.16983511590828473, 0.16688651776786795, 0.1629520302685695, + 0.15835959631992225, 0.15297549373752362, 0.1463596456978849, + 0.1380106859294567, 0.1276448922905654, 0.1154083215378104, + 0.10189669675039754, 0.08808095401745869, 0.07504309733317596, + 0.0636987416557296, 0.054537793163438514, 0.047574375101815426, + 0.042357840937796674, 0.038220471410644774, 0.03457514109471487, + 0.031150634998128004, 0.028134650335310953, 0.02613044185758512, + 0.02592070660432967, 0.028186248706319503, 0.03316524183652349, + 0.0405399672608201, 0.049514508500436615, 0.0591063060954928, + 0.06868401158606884, 0.07850414256688654, 0.09012158673671421, + 0.10656853247972883, 0.13204885306111266, 0.17145637383188017, + 0.22947457607293167, 0.3094594981202298, 0.4131395086251972 + ], + "pressure:branch9_seg1:J58": [ + 6995.941009462796, 7881.204892580147, 8883.043995074877, + 9963.715875966858, 11077.630062537353, 12179.565883697314, + 13230.607273026242, 14203.188720665745, 15077.187159925945, + 15845.314647596393, 16507.720123820258, 17064.608178125036, + 17520.34764778998, 17876.073763479944, 18130.932985536918, + 18285.864232175965, 18339.728403332734, 18296.409146471324, + 18163.728723654185, 17950.93012258951, 17671.59078641661, + 17338.585647095642, 16963.59373046091, 16556.517715354606, + 16124.363229310016, 15672.968097954177, 15208.004500790732, + 14736.139731425339, 14265.495353264152, 13805.094993119019, + 13362.632553800408, 12942.581812467492, 12544.056533471003, + 12158.899273436797, 11773.259152259558, 11368.994806088045, + 10927.989245142098, 10434.99477958953, 9883.951135262261, + 9278.091847512494, 8630.802170576113, 7965.025817506506, + 7307.727223400221, 6686.304481802223, 6123.868296509035, + 5637.532817582882, 5234.174683509917, 4914.418213756564, + 4672.813660555574, 4500.089418322438, 4388.140198420242, 4328.91256092512, + 4316.608140640365, 4346.488733716488, 4412.735102991163, + 4508.579702992024, 4624.248247263731, 4747.854500041477, + 4866.836838528472, 4970.070456076255, 5048.959304949834, + 5099.834476987487, 5124.259324139468, 5126.274460144687, + 5112.820805844892, 5090.276801219816, 5062.558068889566, + 5030.728391669083, 4992.9539944178005, 4945.791677877387, + 4886.201716133051, 4813.001003033048, 4728.342514432391, + 4637.249586847011, 4546.695476804612, 4463.767631003045, + 4393.861401700948, 4338.9729104054495, 4297.966804495111, + 4267.121964710323, 4241.693678385587, 4218.349603064688, + 4196.329083210645, 4177.964305775759, 4168.0582371422715, + 4171.834810227464, 4193.164237262282, 4232.4771623511315, + 4286.006222916373, 4347.847178494456, 4411.601926342091, + 4474.4858558077585, 4540.898708889654, 4624.503586824752, + 4748.712050737504, 4943.856020065784, 5242.038651505666, 5673.60289143097, + 6256.338540277806, 6995.941009462796 + ], + "flow:J58:branch9_seg2": [ + 0.4131395086251972, 0.5395508253381138, 0.6853462220464278, + 0.8452908489813631, 1.012745456426397, 1.1808512243417446, + 1.343376140301206, 1.4954154446569616, 1.6334974262981963, + 1.7559914277272495, 1.8623220034936927, 1.9526103250355398, + 2.0273865454903035, 2.086860782269003, 2.1311386615328343, + 2.1601712743596146, 2.1738690170133994, 2.1726806526785025, + 2.1574066261024667, 2.1294501699205353, 2.0906798361946604, + 2.0430206983098818, 1.9883798901343022, 1.9283365808750565, + 1.8641009410088045, 1.7966349579141063, 1.726787130072471, + 1.6555135909726582, 1.5839732249456298, 1.513491073576365, + 1.445313669630435, 1.3803340337711785, 1.318698263253383, + 1.25957802451899, 1.201189228837176, 1.140986710565413, 1.076170723145235, + 1.004271378715607, 0.9238710398496598, 0.8348637178315952, + 0.7388051133814818, 0.6386452042021445, 0.5382582232121332, + 0.4418074260800719, 0.3531155908154292, 0.27505908884742225, + 0.20922940592587602, 0.15614862501041396, 0.11519578188083404, + 0.08522932307500054, 0.06494714353380354, 0.05306444333326885, + 0.048642971061420175, 0.050870921892028756, 0.058946907904682995, + 0.0719191524389506, 0.08843717049352973, 0.10682738315846342, + 0.1252142117406145, 0.14180296403962694, 0.15513430188862143, + 0.1644218069877252, 0.16955974295330106, 0.17104918432636776, + 0.16983511590828473, 0.16688651776786795, 0.1629520302685695, + 0.15835959631992225, 0.15297549373752362, 0.1463596456978849, + 0.1380106859294567, 0.1276448922905654, 0.1154083215378104, + 0.10189669675039754, 0.08808095401745869, 0.07504309733317596, + 0.0636987416557296, 0.054537793163438514, 0.047574375101815426, + 0.042357840937796674, 0.038220471410644774, 0.03457514109471487, + 0.031150634998128004, 0.028134650335310953, 0.02613044185758512, + 0.02592070660432967, 0.028186248706319503, 0.03316524183652349, + 0.0405399672608201, 0.049514508500436615, 0.0591063060954928, + 0.06868401158606884, 0.07850414256688654, 0.09012158673671421, + 0.10656853247972883, 0.13204885306111266, 0.17145637383188017, + 0.22947457607293167, 0.3094594981202298, 0.4131395086251972 + ], + "pressure:J58:branch9_seg2": [ + 6995.941009462796, 7881.204892580147, 8883.043995074877, + 9963.715875966858, 11077.630062537353, 12179.565883697314, + 13230.607273026242, 14203.188720665745, 15077.187159925945, + 15845.314647596393, 16507.720123820258, 17064.608178125036, + 17520.34764778998, 17876.073763479944, 18130.932985536918, + 18285.864232175965, 18339.728403332734, 18296.409146471324, + 18163.728723654185, 17950.93012258951, 17671.59078641661, + 17338.585647095642, 16963.59373046091, 16556.517715354606, + 16124.363229310016, 15672.968097954177, 15208.004500790732, + 14736.139731425339, 14265.495353264152, 13805.094993119019, + 13362.632553800408, 12942.581812467492, 12544.056533471003, + 12158.899273436797, 11773.259152259558, 11368.994806088045, + 10927.989245142098, 10434.99477958953, 9883.951135262261, + 9278.091847512494, 8630.802170576113, 7965.025817506506, + 7307.727223400221, 6686.304481802223, 6123.868296509035, + 5637.532817582882, 5234.174683509917, 4914.418213756564, + 4672.813660555574, 4500.089418322438, 4388.140198420242, 4328.91256092512, + 4316.608140640365, 4346.488733716488, 4412.735102991163, + 4508.579702992024, 4624.248247263731, 4747.854500041477, + 4866.836838528472, 4970.070456076255, 5048.959304949834, + 5099.834476987487, 5124.259324139468, 5126.274460144687, + 5112.820805844892, 5090.276801219816, 5062.558068889566, + 5030.728391669083, 4992.9539944178005, 4945.791677877387, + 4886.201716133051, 4813.001003033048, 4728.342514432391, + 4637.249586847011, 4546.695476804612, 4463.767631003045, + 4393.861401700948, 4338.9729104054495, 4297.966804495111, + 4267.121964710323, 4241.693678385587, 4218.349603064688, + 4196.329083210645, 4177.964305775759, 4168.0582371422715, + 4171.834810227464, 4193.164237262282, 4232.4771623511315, + 4286.006222916373, 4347.847178494456, 4411.601926342091, + 4474.4858558077585, 4540.898708889654, 4624.503586824752, + 4748.712050737504, 4943.856020065784, 5242.038651505666, 5673.60289143097, + 6256.338540277806, 6995.941009462796 + ], + "flow:branch28_seg0:J59": [ + 0.366104117160841, 0.4814191733500718, 0.6180534548807687, + 0.7719986277824088, 0.9375618255850244, 1.108263953942861, + 1.2776852867161077, 1.4402172259954418, 1.5915028853417326, + 1.7287944712781325, 1.8505641694481385, 1.956290418464574, + 2.0460206944283668, 2.119848009326463, 2.1778649960036933, + 2.220008053233735, 2.24621149296412, 2.256717727207922, + 2.2520962863423697, 2.233491083911399, 2.202494481824702, + 2.160941151649919, 2.110754821875908, 2.0536634189669485, + 1.9911118618199257, 1.924272672914158, 1.854144860660746, + 1.7817361509268699, 1.7081841928922799, 1.6347812836711502, + 1.5628321972998167, 1.4934254220777745, 1.4270815483560553, + 1.363503442904653, 1.3014609041867264, 1.2388838772828, + 1.1732086780057236, 1.101901361177288, 1.0230722307262239, + 0.9359087329349718, 0.8410770903162701, 0.7406537858689929, + 0.6378694868766027, 0.5365793802614627, 0.4406823769764427, + 0.3534723208995799, 0.2772669314271713, 0.2133065249004967, + 0.1616919186302769, 0.12181123022448645, 0.09261633586721649, + 0.07293194897910531, 0.06174262693673469, 0.05814028760606999, + 0.061289646604272434, 0.07025794035793845, 0.08382309050236357, + 0.10045353184392711, 0.11836113328779974, 0.13570795033770294, + 0.1508552924699756, 0.16266496510549877, 0.17060121803651093, + 0.17477284730355952, 0.1757957752190209, 0.17449942188553225, + 0.17166951191757188, 0.16780474574532073, 0.16300776726720398, + 0.15704169694308173, 0.1494991914019122, 0.14005247749329464, + 0.12866772282055045, 0.11571168986562007, 0.10194220903088035, + 0.08833309882096875, 0.07583561654771097, 0.06512843898448004, + 0.05648520499488999, 0.049725174850733564, 0.04436904196251084, + 0.03986538166333865, 0.035835497731970194, 0.03225810821983786, + 0.02950795808632194, 0.02822566475395732, 0.029086930875657346, + 0.03249822287444498, 0.03842164428583983, 0.046331169645621756, + 0.05540374629596409, 0.06492156533744498, 0.07476372254127699, + 0.08585891254830824, 0.10047118319727122, 0.12211749498660661, + 0.15526323027443317, 0.20455223864250574, 0.27394931506191367, + 0.366104117160841 + ], + "pressure:branch28_seg0:J59": [ + 6489.011376940383, 7251.32528878713, 8137.900815388518, 9120.141951848256, + 10159.959728782935, 11216.374915424727, 12250.79213405501, + 13231.682154400649, 14134.814814867766, 14946.760817108341, + 15661.33406417295, 16276.251534172314, 16793.026295486336, + 17212.154069018023, 17533.587379096924, 17757.344835655225, + 17882.729822351488, 17912.14699229619, 17850.514017875284, + 17705.576173496425, 17488.35088864591, 17210.44370584469, + 16883.47738434086, 16517.673258331317, 16121.151551708417, + 15700.619302209572, 15262.04822184056, 14811.80940868263, + 14357.28141027598, 13906.736638484963, 13467.987556683063, + 13046.863407528697, 12645.080052546373, 12258.60267137005, + 11877.807509268783, 11488.303722350354, 11073.799358446588, + 10619.140815142173, 10114.920608218847, 9559.095742569194, + 8958.963101193582, 8330.607046057672, 7695.971888229792, + 7079.582458982585, 6504.704185291205, 5990.135674026933, + 5547.302737108863, 5181.452682589001, 4891.152200857106, + 4670.936818754857, 4514.076447285811, 4413.225486907061, + 4362.497555020861, 4356.695663222189, 4390.4547839645875, + 4457.729609491435, 4550.245526215981, 4657.805051796413, + 4769.001117920019, 4872.74956082462, 4959.624281971757, 5023.892583125237, + 5063.965834052626, 5081.613136767106, 5081.600785144199, + 5069.295970220922, 5049.058367748207, 5023.160933821681, + 4991.346460837671, 4951.5103868374035, 4901.044896416627, + 4838.314483652512, 4763.999516714765, 4681.299757384733, + 4595.6146509760465, 4513.199225221063, 4439.619241715394, + 4378.181980264196, 4329.564619175484, 4291.781409786713, + 4261.341074477316, 4234.997858733865, 4211.0633071455095, + 4190.304932526672, 4175.8717592046105, 4172.060991561124, + 4182.820133332475, 4209.829704505725, 4251.595847112019, + 4304.007411220752, 4361.652966827172, 4420.837875268169, + 4482.725688706493, 4555.804209577334, 4657.164245433856, + 4811.1270685367535, 5046.364522338443, 5391.587882580091, + 5868.301829723173, 6489.011376940383 + ], + "flow:J59:branch28_seg1": [ + 0.366104117160841, 0.4814191733500718, 0.6180534548807687, + 0.7719986277824088, 0.9375618255850244, 1.108263953942861, + 1.2776852867161077, 1.4402172259954418, 1.5915028853417326, + 1.7287944712781325, 1.8505641694481385, 1.956290418464574, + 2.0460206944283668, 2.119848009326463, 2.1778649960036933, + 2.220008053233735, 2.24621149296412, 2.256717727207922, + 2.2520962863423697, 2.233491083911399, 2.202494481824702, + 2.160941151649919, 2.110754821875908, 2.0536634189669485, + 1.9911118618199257, 1.924272672914158, 1.854144860660746, + 1.7817361509268699, 1.7081841928922799, 1.6347812836711502, + 1.5628321972998167, 1.4934254220777745, 1.4270815483560553, + 1.363503442904653, 1.3014609041867264, 1.2388838772828, + 1.1732086780057236, 1.101901361177288, 1.0230722307262239, + 0.9359087329349718, 0.8410770903162701, 0.7406537858689929, + 0.6378694868766027, 0.5365793802614627, 0.4406823769764427, + 0.3534723208995799, 0.2772669314271713, 0.2133065249004967, + 0.1616919186302769, 0.12181123022448645, 0.09261633586721649, + 0.07293194897910531, 0.06174262693673469, 0.05814028760606999, + 0.061289646604272434, 0.07025794035793845, 0.08382309050236357, + 0.10045353184392711, 0.11836113328779974, 0.13570795033770294, + 0.1508552924699756, 0.16266496510549877, 0.17060121803651093, + 0.17477284730355952, 0.1757957752190209, 0.17449942188553225, + 0.17166951191757188, 0.16780474574532073, 0.16300776726720398, + 0.15704169694308173, 0.1494991914019122, 0.14005247749329464, + 0.12866772282055045, 0.11571168986562007, 0.10194220903088035, + 0.08833309882096875, 0.07583561654771097, 0.06512843898448004, + 0.05648520499488999, 0.049725174850733564, 0.04436904196251084, + 0.03986538166333865, 0.035835497731970194, 0.03225810821983786, + 0.02950795808632194, 0.02822566475395732, 0.029086930875657346, + 0.03249822287444498, 0.03842164428583983, 0.046331169645621756, + 0.05540374629596409, 0.06492156533744498, 0.07476372254127699, + 0.08585891254830824, 0.10047118319727122, 0.12211749498660661, + 0.15526323027443317, 0.20455223864250574, 0.27394931506191367, + 0.366104117160841 + ], + "pressure:J59:branch28_seg1": [ + 6489.011376940383, 7251.32528878713, 8137.900815388518, 9120.141951848256, + 10159.959728782935, 11216.374915424727, 12250.79213405501, + 13231.682154400649, 14134.814814867766, 14946.760817108341, + 15661.33406417295, 16276.251534172314, 16793.026295486336, + 17212.154069018023, 17533.587379096924, 17757.344835655225, + 17882.729822351488, 17912.14699229619, 17850.514017875284, + 17705.576173496425, 17488.35088864591, 17210.44370584469, + 16883.47738434086, 16517.673258331317, 16121.151551708417, + 15700.619302209572, 15262.04822184056, 14811.80940868263, + 14357.28141027598, 13906.736638484963, 13467.987556683063, + 13046.863407528697, 12645.080052546373, 12258.60267137005, + 11877.807509268783, 11488.303722350354, 11073.799358446588, + 10619.140815142173, 10114.920608218847, 9559.095742569194, + 8958.963101193582, 8330.607046057672, 7695.971888229792, + 7079.582458982585, 6504.704185291205, 5990.135674026933, + 5547.302737108863, 5181.452682589001, 4891.152200857106, + 4670.936818754857, 4514.076447285811, 4413.225486907061, + 4362.497555020861, 4356.695663222189, 4390.4547839645875, + 4457.729609491435, 4550.245526215981, 4657.805051796413, + 4769.001117920019, 4872.74956082462, 4959.624281971757, 5023.892583125237, + 5063.965834052626, 5081.613136767106, 5081.600785144199, + 5069.295970220922, 5049.058367748207, 5023.160933821681, + 4991.346460837671, 4951.5103868374035, 4901.044896416627, + 4838.314483652512, 4763.999516714765, 4681.299757384733, + 4595.6146509760465, 4513.199225221063, 4439.619241715394, + 4378.181980264196, 4329.564619175484, 4291.781409786713, + 4261.341074477316, 4234.997858733865, 4211.0633071455095, + 4190.304932526672, 4175.8717592046105, 4172.060991561124, + 4182.820133332475, 4209.829704505725, 4251.595847112019, + 4304.007411220752, 4361.652966827172, 4420.837875268169, + 4482.725688706493, 4555.804209577334, 4657.164245433856, + 4811.1270685367535, 5046.364522338443, 5391.587882580091, + 5868.301829723173, 6489.011376940383 + ], + "flow:branch28_seg1:J60": [ + 0.365937743142102, 0.48122016961432684, 0.6178274521886906, + 0.771754162580941, 0.9373083774701707, 1.1080112348190245, + 1.2774420623043046, 1.4399901771802164, 1.5912963977180357, + 1.7286111105192383, 1.850404476335298, 1.9561545196951642, + 2.045908412114714, 2.119759017557245, 2.1777996422110295, + 2.219966128447332, 2.2461929804934933, 2.2567221120777092, + 2.2521214705108386, 2.2335350450891673, 2.202554535807879, + 2.1610142326358845, 2.1108384337891986, 2.0537552963731227, + 1.9912102325722205, 1.9243761192123687, 1.8542518988267251, + 1.7818451404516844, 1.7082932499432633, 1.6348884105684516, + 1.5629356225774889, 1.49352423801818, 1.4271759537433877, + 1.3635950614723662, 1.3015527515180425, 1.238979815581924, + 1.173312482703807, 1.1020162758533465, 1.023199758228347, + 0.9360480461306815, 0.8412254782414872, 0.740806528759678, + 0.6380207630938145, 0.5367231474167808, 0.4408139384133257, + 0.3535876725024235, 0.2773639535582974, 0.2133852616426294, + 0.16175289054973566, 0.1218561889824668, 0.09264708548702506, + 0.07294984676901876, 0.061749220707126594, 0.05813672560919845, + 0.06127719110168534, 0.07023837724726924, 0.08379859882614336, + 0.10042675061959173, 0.11833488470446457, 0.1356847280809197, + 0.15083695635939268, 0.1626525045425252, 0.1705944325212726, + 0.17477093413847783, 0.17579749817930754, 0.17450348063107202, + 0.1716750846360007, 0.1678116220114944, 0.1630162664909296, + 0.15705247596187843, 0.1495127518320962, 0.1400690074493114, + 0.12868679035359792, 0.1157321636964133, 0.1019626419165335, + 0.08835203638057756, 0.07585193714094572, 0.0651415975640451, + 0.05649546766423779, 0.04973322838605322, 0.044375736260990464, + 0.03987139776923641, 0.03584095370206563, 0.03226250703749715, + 0.029510331001229597, 0.028224955379373307, 0.029082414410766196, + 0.03248980267141933, 0.038410109069364734, 0.04631774764135848, + 0.055389639317621045, 0.06490720087407735, 0.07474802262460253, + 0.08583882544237074, 0.10044166500236956, 0.12207170591820721, + 0.15519467688523103, 0.20445440825024624, 0.27381734258732104, + 0.365937743142102 + ], + "pressure:branch28_seg1:J60": [ + 6455.955296206129, 7210.3142129147645, 8089.290093683835, + 9064.798331834892, 10099.180892398119, 11151.696490833347, + 12183.771130138297, 13163.665115720472, 14066.9323225159, + 14879.827000446881, 15595.850579972393, 16212.620397713905, + 16731.52614258309, 17153.06966692216, 17477.26665123364, + 17704.09768722667, 17832.89604938617, 17865.957619387627, + 17808.036926941775, 17666.78053509433, 17453.042694555814, + 17178.35854364886, 16854.339599188665, 16491.21861056448, + 16097.171777461763, 15678.938397751539, 15242.488168542588, + 14794.153758071732, 14341.25005230392, 13891.991254460274, + 13454.188132304807, 13033.747638352343, 12632.539876739811, + 12246.775203026858, 11867.080005706564, 11479.280967196819, + 11067.189678757417, 10615.648161639172, 10115.040383649284, + 9563.013419519391, 8966.499760518747, 8341.1869780301, 7708.73192292206, + 7093.502015270296, 6518.775178186228, 6003.444915083577, + 5559.205009452846, 5191.5454063772695, 4899.246684520634, + 4677.043494868748, 4518.255200142343, 4415.565919178554, + 4363.075515683938, 4355.558240028845, 4387.689023922991, + 4453.478959574448, 4544.756988154932, 4651.438559745145, + 4762.194223273021, 4865.949646518789, 4953.234539516986, + 5018.1979777365095, 5059.078240598174, 5077.519370817983, + 5078.171809443724, 5066.360616231337, 5046.482966561748, + 5020.890295516836, 4989.420269807641, 4950.042411280995, + 4900.165482797026, 4838.118212898166, 4764.483669819078, + 4682.351031729794, 4597.026579781588, 4514.719694854214, + 4441.011111952922, 4379.289367607967, 4330.339046310844, + 4292.270945821368, 4261.65999964459, 4235.25478113176, 4211.302427139191, + 4190.472448721984, 4175.815491016998, 4171.578801135295, + 4181.722229908979, 4208.00985516159, 4249.084735726334, 4300.941760990785, + 4358.220231020239, 4417.15660601291, 4478.705670516413, + 4551.0328211678025, 4650.840739295837, 4802.091064105384, + 5033.251676452042, 5372.927631594197, 5842.864058081606, 6455.955296206129 + ], + "flow:J60:branch28_seg2": [ + 0.365937743142102, 0.48122016961432684, 0.6178274521886906, + 0.771754162580941, 0.9373083774701707, 1.1080112348190245, + 1.2774420623043046, 1.4399901771802164, 1.5912963977180357, + 1.7286111105192383, 1.850404476335298, 1.9561545196951642, + 2.045908412114714, 2.119759017557245, 2.1777996422110295, + 2.219966128447332, 2.2461929804934933, 2.2567221120777092, + 2.2521214705108386, 2.2335350450891673, 2.202554535807879, + 2.1610142326358845, 2.1108384337891986, 2.0537552963731227, + 1.9912102325722205, 1.9243761192123687, 1.8542518988267251, + 1.7818451404516844, 1.7082932499432633, 1.6348884105684516, + 1.5629356225774889, 1.49352423801818, 1.4271759537433877, + 1.3635950614723662, 1.3015527515180425, 1.238979815581924, + 1.173312482703807, 1.1020162758533465, 1.023199758228347, + 0.9360480461306815, 0.8412254782414872, 0.740806528759678, + 0.6380207630938145, 0.5367231474167808, 0.4408139384133257, + 0.3535876725024235, 0.2773639535582974, 0.2133852616426294, + 0.16175289054973566, 0.1218561889824668, 0.09264708548702506, + 0.07294984676901876, 0.061749220707126594, 0.05813672560919845, + 0.06127719110168534, 0.07023837724726924, 0.08379859882614336, + 0.10042675061959173, 0.11833488470446457, 0.1356847280809197, + 0.15083695635939268, 0.1626525045425252, 0.1705944325212726, + 0.17477093413847783, 0.17579749817930754, 0.17450348063107202, + 0.1716750846360007, 0.1678116220114944, 0.1630162664909296, + 0.15705247596187843, 0.1495127518320962, 0.1400690074493114, + 0.12868679035359792, 0.1157321636964133, 0.1019626419165335, + 0.08835203638057756, 0.07585193714094572, 0.0651415975640451, + 0.05649546766423779, 0.04973322838605322, 0.044375736260990464, + 0.03987139776923641, 0.03584095370206563, 0.03226250703749715, + 0.029510331001229597, 0.028224955379373307, 0.029082414410766196, + 0.03248980267141933, 0.038410109069364734, 0.04631774764135848, + 0.055389639317621045, 0.06490720087407735, 0.07474802262460253, + 0.08583882544237074, 0.10044166500236956, 0.12207170591820721, + 0.15519467688523103, 0.20445440825024624, 0.27381734258732104, + 0.365937743142102 + ], + "pressure:J60:branch28_seg2": [ + 6455.955296206129, 7210.3142129147645, 8089.290093683835, + 9064.798331834892, 10099.180892398119, 11151.696490833347, + 12183.771130138297, 13163.665115720472, 14066.9323225159, + 14879.827000446881, 15595.850579972393, 16212.620397713905, + 16731.52614258309, 17153.06966692216, 17477.26665123364, + 17704.09768722667, 17832.89604938617, 17865.957619387627, + 17808.036926941775, 17666.78053509433, 17453.042694555814, + 17178.35854364886, 16854.339599188665, 16491.21861056448, + 16097.171777461763, 15678.938397751539, 15242.488168542588, + 14794.153758071732, 14341.25005230392, 13891.991254460274, + 13454.188132304807, 13033.747638352343, 12632.539876739811, + 12246.775203026858, 11867.080005706564, 11479.280967196819, + 11067.189678757417, 10615.648161639172, 10115.040383649284, + 9563.013419519391, 8966.499760518747, 8341.1869780301, 7708.73192292206, + 7093.502015270296, 6518.775178186228, 6003.444915083577, + 5559.205009452846, 5191.5454063772695, 4899.246684520634, + 4677.043494868748, 4518.255200142343, 4415.565919178554, + 4363.075515683938, 4355.558240028845, 4387.689023922991, + 4453.478959574448, 4544.756988154932, 4651.438559745145, + 4762.194223273021, 4865.949646518789, 4953.234539516986, + 5018.1979777365095, 5059.078240598174, 5077.519370817983, + 5078.171809443724, 5066.360616231337, 5046.482966561748, + 5020.890295516836, 4989.420269807641, 4950.042411280995, + 4900.165482797026, 4838.118212898166, 4764.483669819078, + 4682.351031729794, 4597.026579781588, 4514.719694854214, + 4441.011111952922, 4379.289367607967, 4330.339046310844, + 4292.270945821368, 4261.65999964459, 4235.25478113176, 4211.302427139191, + 4190.472448721984, 4175.815491016998, 4171.578801135295, + 4181.722229908979, 4208.00985516159, 4249.084735726334, 4300.941760990785, + 4358.220231020239, 4417.15660601291, 4478.705670516413, + 4551.0328211678025, 4650.840739295837, 4802.091064105384, + 5033.251676452042, 5372.927631594197, 5842.864058081606, 6455.955296206129 + ], + "flow:branch30_seg0:J61": [ + 0.9480476849009974, 1.216807736587695, 1.5066502857016155, + 1.8028093607652615, 2.08971497345257, 2.354457890433391, + 2.588089209027723, 2.7865170205582817, 2.9486613510664395, + 3.077474440291671, 3.176814142617925, 3.249754419260042, + 3.299418061572718, 3.3265367031333755, 3.331179244373441, + 3.313456896985264, 3.273093519402913, 3.212071180539768, + 3.133032904252752, 3.039562375730405, 2.9362024641942, 2.826481041845821, + 2.713341468560364, 2.5985966689641393, 2.4830186088523583, + 2.3671952796501, 2.251882276034173, 2.1385190622562202, + 2.0292251259734413, 1.92638417474154, 1.8316989150506058, + 1.7454994088744826, 1.6659830865131817, 1.5889107161323854, + 1.5084586420881343, 1.4180487007104747, 1.3120347195546513, + 1.1868630887300875, 1.0429088318040995, 0.8838199109294377, + 0.7167939419838243, 0.5511954434670271, 0.39658283963354807, + 0.26119342427348335, 0.15069834546123329, 0.06762641602898051, + 0.010690293622633391, -0.022872439644436873, -0.03762472569143073, + -0.03808488147518486, -0.02744727268329376, -0.008290895087852747, + 0.01825773622539141, 0.05136855617610879, 0.08973390639807972, + 0.13155662346868477, 0.1738290859041709, 0.21297474549430653, + 0.24545368961690528, 0.26860676409181056, 0.28104349323206435, + 0.2833579597952269, 0.2776657188775968, 0.26675004482659065, + 0.2537829761234362, 0.24094902730120768, 0.2291430997570657, + 0.2179353350643873, 0.20586525291217067, 0.1912115545544896, + 0.17278413480543361, 0.150460846604598, 0.12553628584189455, + 0.10022221386009157, 0.0771937166096381, 0.05871098931541693, + 0.04599379054328204, 0.03876831242689733, 0.03565866511219746, + 0.03456881100851691, 0.03349562195611515, 0.03141908310647191, + 0.028573529290054557, 0.02642039315863538, 0.02713685102732942, + 0.03266327539215207, 0.04401695574061938, 0.060589891281188336, + 0.08030957429348597, 0.10049446478768982, 0.1188230818529322, + 0.13492579109339065, 0.15145475532563055, 0.17445610400954611, + 0.21306770788052223, 0.27778230233627155, 0.3786419114250554, + 0.5234326293500144, 0.7140005112439608, 0.9480476849009974 + ], + "pressure:branch30_seg0:J61": [ + 9172.003161241606, 10555.15195071957, 12010.49137173248, + 13464.332777476038, 14844.962905105596, 16093.578064068557, + 17173.664952394043, 18077.4259050214, 18805.136366159, 19372.611163860696, + 19806.61828815408, 20115.64691109902, 20313.116936571234, + 20402.59234108298, 20378.46096955784, 20246.427371249967, + 20003.871386469185, 19661.66549919362, 19240.86949502217, + 18755.590135632887, 18229.843082931995, 17680.8374946235, + 17118.72134945967, 16551.79223135165, 15982.003215757768, + 15411.844415387817, 14846.54076613935, 14294.437619510316, + 13766.988614175265, 13275.913696503492, 12827.708659911443, + 12419.501944665883, 12038.783762413255, 11659.631593131222, + 11250.569895387423, 10779.324743839652, 10222.43886885335, + 9566.47070359566, 8821.603945809416, 8014.89425579048, 7184.819431309027, + 6381.953523387251, 5652.370271450206, 5032.609507755543, + 4541.491321039274, 4188.8116838286505, 3960.398640847504, + 3837.0877031011437, 3799.4427215214555, 3822.1867262317833, + 3893.753728043783, 4004.6624520527685, 4148.74720045416, + 4324.2183187054625, 4522.339995558412, 4732.264721253612, + 4938.16375738442, 5121.014439557389, 5264.123100540356, + 5357.3973430942215, 5397.097221287527, 5388.699993835089, + 5347.422609014344, 5286.437018442331, 5220.534216281002, + 5159.208460581902, 5103.338285379854, 5048.2090698039265, + 4985.44036182723, 4906.559562204795, 4807.899863749527, 4690.901120564229, + 4564.676959721228, 4442.026735289615, 4335.780677307739, + 4255.5274385154635, 4204.914431708048, 4179.764712947295, + 4170.661677843299, 4167.4597870025855, 4160.913377817565, + 4148.281300841059, 4133.730108159766, 4126.465280721394, + 4137.898910593062, 4176.233724904843, 4243.736111775619, + 4334.731129973447, 4435.45668037464, 4532.961075221276, + 4618.2295308171515, 4694.245519727028, 4780.881256434867, + 4914.720130522453, 5145.709759816224, 5528.357840774142, + 6104.368990956243, 6909.668169653153, 7941.863640255966, 9172.003161241606 + ], + "flow:J61:branch30_seg1": [ + 0.9480476849009974, 1.216807736587695, 1.5066502857016155, + 1.8028093607652615, 2.08971497345257, 2.354457890433391, + 2.588089209027723, 2.7865170205582817, 2.9486613510664395, + 3.077474440291671, 3.176814142617925, 3.249754419260042, + 3.299418061572718, 3.3265367031333755, 3.331179244373441, + 3.313456896985264, 3.273093519402913, 3.212071180539768, + 3.133032904252752, 3.039562375730405, 2.9362024641942, 2.826481041845821, + 2.713341468560364, 2.5985966689641393, 2.4830186088523583, + 2.3671952796501, 2.251882276034173, 2.1385190622562202, + 2.0292251259734413, 1.92638417474154, 1.8316989150506058, + 1.7454994088744826, 1.6659830865131817, 1.5889107161323854, + 1.5084586420881343, 1.4180487007104747, 1.3120347195546513, + 1.1868630887300875, 1.0429088318040995, 0.8838199109294377, + 0.7167939419838243, 0.5511954434670271, 0.39658283963354807, + 0.26119342427348335, 0.15069834546123329, 0.06762641602898051, + 0.010690293622633391, -0.022872439644436873, -0.03762472569143073, + -0.03808488147518486, -0.02744727268329376, -0.008290895087852747, + 0.01825773622539141, 0.05136855617610879, 0.08973390639807972, + 0.13155662346868477, 0.1738290859041709, 0.21297474549430653, + 0.24545368961690528, 0.26860676409181056, 0.28104349323206435, + 0.2833579597952269, 0.2776657188775968, 0.26675004482659065, + 0.2537829761234362, 0.24094902730120768, 0.2291430997570657, + 0.2179353350643873, 0.20586525291217067, 0.1912115545544896, + 0.17278413480543361, 0.150460846604598, 0.12553628584189455, + 0.10022221386009157, 0.0771937166096381, 0.05871098931541693, + 0.04599379054328204, 0.03876831242689733, 0.03565866511219746, + 0.03456881100851691, 0.03349562195611515, 0.03141908310647191, + 0.028573529290054557, 0.02642039315863538, 0.02713685102732942, + 0.03266327539215207, 0.04401695574061938, 0.060589891281188336, + 0.08030957429348597, 0.10049446478768982, 0.1188230818529322, + 0.13492579109339065, 0.15145475532563055, 0.17445610400954611, + 0.21306770788052223, 0.27778230233627155, 0.3786419114250554, + 0.5234326293500144, 0.7140005112439608, 0.9480476849009974 + ], + "pressure:J61:branch30_seg1": [ + 9172.003161241606, 10555.15195071957, 12010.49137173248, + 13464.332777476038, 14844.962905105596, 16093.578064068557, + 17173.664952394043, 18077.4259050214, 18805.136366159, 19372.611163860696, + 19806.61828815408, 20115.64691109902, 20313.116936571234, + 20402.59234108298, 20378.46096955784, 20246.427371249967, + 20003.871386469185, 19661.66549919362, 19240.86949502217, + 18755.590135632887, 18229.843082931995, 17680.8374946235, + 17118.72134945967, 16551.79223135165, 15982.003215757768, + 15411.844415387817, 14846.54076613935, 14294.437619510316, + 13766.988614175265, 13275.913696503492, 12827.708659911443, + 12419.501944665883, 12038.783762413255, 11659.631593131222, + 11250.569895387423, 10779.324743839652, 10222.43886885335, + 9566.47070359566, 8821.603945809416, 8014.89425579048, 7184.819431309027, + 6381.953523387251, 5652.370271450206, 5032.609507755543, + 4541.491321039274, 4188.8116838286505, 3960.398640847504, + 3837.0877031011437, 3799.4427215214555, 3822.1867262317833, + 3893.753728043783, 4004.6624520527685, 4148.74720045416, + 4324.2183187054625, 4522.339995558412, 4732.264721253612, + 4938.16375738442, 5121.014439557389, 5264.123100540356, + 5357.3973430942215, 5397.097221287527, 5388.699993835089, + 5347.422609014344, 5286.437018442331, 5220.534216281002, + 5159.208460581902, 5103.338285379854, 5048.2090698039265, + 4985.44036182723, 4906.559562204795, 4807.899863749527, 4690.901120564229, + 4564.676959721228, 4442.026735289615, 4335.780677307739, + 4255.5274385154635, 4204.914431708048, 4179.764712947295, + 4170.661677843299, 4167.4597870025855, 4160.913377817565, + 4148.281300841059, 4133.730108159766, 4126.465280721394, + 4137.898910593062, 4176.233724904843, 4243.736111775619, + 4334.731129973447, 4435.45668037464, 4532.961075221276, + 4618.2295308171515, 4694.245519727028, 4780.881256434867, + 4914.720130522453, 5145.709759816224, 5528.357840774142, + 6104.368990956243, 6909.668169653153, 7941.863640255966, 9172.003161241606 + ], + "flow:branch30_seg1:J62": [ + 0.9447124091747185, 1.2131968576705456, 1.502924426490975, + 1.7992045512419659, 2.0863865328108435, 2.35150165716199, + 2.5855666673886373, 2.7844806167267624, 2.947019608313964, + 3.076207655726341, 3.175885509063162, 3.249101740473401, + 3.299057306725215, 3.3264500730262117, 3.331370390092653, + 3.313932899726788, 3.2738308443276365, 3.213052045266424, + 3.1341924140599002, 3.0408437512199047, 2.937573987036311, + 2.8278903456882603, 2.7147703098541864, 2.6000359774853976, + 2.4844594619435996, 2.3686338548951347, 2.2532992515464296, + 2.1398875512436906, 2.030514066048243, 1.9275741891188278, + 1.8327744065740517, 1.7464877207286207, 1.6669358921897526, + 1.5898918198602503, 1.5095558544969374, 1.4193397103927845, + 1.3135640690243697, 1.1886327642429462, 1.044887462636277, + 0.8859089328933617, 0.7188749314165811, 0.5531563600867623, + 0.39830441565773733, 0.26258935687588014, 0.15176292637539054, + 0.06835796411510352, 0.011105255215184531, -0.02268012904999635, + -0.03761811340556084, -0.038217758235742236, -0.027675228232064118, + -0.008624409062323753, 0.01784974559224685, 0.05089748592539095, + 0.0892080479117744, 0.13102472083284822, 0.17333206711062385, + 0.21255530116633228, 0.24514951048510042, 0.26844217940496157, + 0.28100447922877747, 0.28342346675014596, 0.2778038071782626, + 0.2669129114345111, 0.25394605754771876, 0.24109795742363183, + 0.22927958170994306, 0.21807972389680838, 0.2060412502714942, + 0.19143774452649792, 0.17305944920998861, 0.15077216466000984, + 0.12585910435832937, 0.10051703080089462, 0.0774302026101479, + 0.0588743358249267, 0.046088213646430044, 0.03880256560278296, + 0.03566935630529682, 0.03458116104497116, 0.033519656637973114, + 0.03145607065465057, 0.028605963893460682, 0.02642005851496899, + 0.02707754756267487, 0.03252793437240893, 0.043814151875899605, + 0.060343123580332364, 0.08005179209762062, 0.10026222505854528, + 0.11862469060438469, 0.1347327093093956, 0.1511946813321954, + 0.17401808839701052, 0.21231732371838816, 0.2765664670813314, + 0.37689957425708354, 0.5211173277791199, 0.711074422002286, + 0.9447124091747185 + ], + "pressure:branch30_seg1:J62": [ + 8843.62626230063, 10179.242546760166, 11602.66605775814, + 13041.884913537326, 14423.263265409527, 15685.99429690635, + 16790.109802059986, 17721.788208580223, 18477.725837005248, + 19073.337127430284, 19531.163723113674, 19862.696475133307, + 20082.557413738698, 20194.1471733996, 20194.91583702031, + 20088.058716063555, 19871.407250077667, 19555.113737289077, + 19155.918454469927, 18689.4458599458, 18178.738893250924, + 17640.819856145736, 17087.99582982625, 16528.84445214976, + 15966.213444002517, 15402.77653481502, 14842.885391180418, + 14294.12515773689, 13767.28290201051, 13274.014186529384, + 12821.680106963639, 12409.888233504385, 12028.188961191383, + 11653.53316722914, 11256.315963868157, 10804.549193636723, + 10272.768885580484, 9645.446084073232, 8928.361392610324, + 8143.449910802856, 7327.0708374645565, 6527.047385263683, + 5789.330475108418, 5152.210901094264, 4639.093062156337, 4261.07078045698, + 4008.1289393252323, 3864.3948550687046, 3808.9609980876658, + 3818.3572694272225, 3879.0781771792, 3979.932944488265, 4115.313260017022, + 4282.208424277333, 4473.126418097842, 4678.527660658583, + 4883.242859724346, 5069.182229514982, 5219.45969418744, 5322.570332355962, + 5373.0704897739215, 5375.077680828102, 5341.232842285326, + 5284.695298524129, 5220.602101508526, 5159.023040232014, + 5102.643375954042, 5048.181259522175, 4987.969548986813, + 4913.605644444226, 4820.297375442642, 4708.3888691393995, + 4585.4641227122665, 4463.161573850767, 4354.365703936259, + 4269.387499975523, 4213.095536101576, 4182.7871164354, 4170.603738288099, + 4166.372558549164, 4160.586796396872, 4149.358243255002, + 4135.226379195616, 4126.238276543459, 4133.336126499748, + 4165.331851354885, 4225.9527102792135, 4310.996508251531, + 4408.651007557349, 4506.036619856851, 4592.911595745144, + 4669.667802340483, 4752.343915488125, 4873.526455360097, + 5079.974397638864, 5424.096917618295, 5951.288539445242, + 6698.3296015000205, 7668.726093912861, 8843.62626230063 + ], + "flow:J62:branch30_seg2": [ + 0.9447124091747185, 1.2131968576705456, 1.502924426490975, + 1.7992045512419659, 2.0863865328108435, 2.35150165716199, + 2.5855666673886373, 2.7844806167267624, 2.947019608313964, + 3.076207655726341, 3.175885509063162, 3.249101740473401, + 3.299057306725215, 3.3264500730262117, 3.331370390092653, + 3.313932899726788, 3.2738308443276365, 3.213052045266424, + 3.1341924140599002, 3.0408437512199047, 2.937573987036311, + 2.8278903456882603, 2.7147703098541864, 2.6000359774853976, + 2.4844594619435996, 2.3686338548951347, 2.2532992515464296, + 2.1398875512436906, 2.030514066048243, 1.9275741891188278, + 1.8327744065740517, 1.7464877207286207, 1.6669358921897526, + 1.5898918198602503, 1.5095558544969374, 1.4193397103927845, + 1.3135640690243697, 1.1886327642429462, 1.044887462636277, + 0.8859089328933617, 0.7188749314165811, 0.5531563600867623, + 0.39830441565773733, 0.26258935687588014, 0.15176292637539054, + 0.06835796411510352, 0.011105255215184531, -0.02268012904999635, + -0.03761811340556084, -0.038217758235742236, -0.027675228232064118, + -0.008624409062323753, 0.01784974559224685, 0.05089748592539095, + 0.0892080479117744, 0.13102472083284822, 0.17333206711062385, + 0.21255530116633228, 0.24514951048510042, 0.26844217940496157, + 0.28100447922877747, 0.28342346675014596, 0.2778038071782626, + 0.2669129114345111, 0.25394605754771876, 0.24109795742363183, + 0.22927958170994306, 0.21807972389680838, 0.2060412502714942, + 0.19143774452649792, 0.17305944920998861, 0.15077216466000984, + 0.12585910435832937, 0.10051703080089462, 0.0774302026101479, + 0.0588743358249267, 0.046088213646430044, 0.03880256560278296, + 0.03566935630529682, 0.03458116104497116, 0.033519656637973114, + 0.03145607065465057, 0.028605963893460682, 0.02642005851496899, + 0.02707754756267487, 0.03252793437240893, 0.043814151875899605, + 0.060343123580332364, 0.08005179209762062, 0.10026222505854528, + 0.11862469060438469, 0.1347327093093956, 0.1511946813321954, + 0.17401808839701052, 0.21231732371838816, 0.2765664670813314, + 0.37689957425708354, 0.5211173277791199, 0.711074422002286, + 0.9447124091747185 + ], + "pressure:J62:branch30_seg2": [ + 8843.62626230063, 10179.242546760166, 11602.66605775814, + 13041.884913537326, 14423.263265409527, 15685.99429690635, + 16790.109802059986, 17721.788208580223, 18477.725837005248, + 19073.337127430284, 19531.163723113674, 19862.696475133307, + 20082.557413738698, 20194.1471733996, 20194.91583702031, + 20088.058716063555, 19871.407250077667, 19555.113737289077, + 19155.918454469927, 18689.4458599458, 18178.738893250924, + 17640.819856145736, 17087.99582982625, 16528.84445214976, + 15966.213444002517, 15402.77653481502, 14842.885391180418, + 14294.12515773689, 13767.28290201051, 13274.014186529384, + 12821.680106963639, 12409.888233504385, 12028.188961191383, + 11653.53316722914, 11256.315963868157, 10804.549193636723, + 10272.768885580484, 9645.446084073232, 8928.361392610324, + 8143.449910802856, 7327.0708374645565, 6527.047385263683, + 5789.330475108418, 5152.210901094264, 4639.093062156337, 4261.07078045698, + 4008.1289393252323, 3864.3948550687046, 3808.9609980876658, + 3818.3572694272225, 3879.0781771792, 3979.932944488265, 4115.313260017022, + 4282.208424277333, 4473.126418097842, 4678.527660658583, + 4883.242859724346, 5069.182229514982, 5219.45969418744, 5322.570332355962, + 5373.0704897739215, 5375.077680828102, 5341.232842285326, + 5284.695298524129, 5220.602101508526, 5159.023040232014, + 5102.643375954042, 5048.181259522175, 4987.969548986813, + 4913.605644444226, 4820.297375442642, 4708.3888691393995, + 4585.4641227122665, 4463.161573850767, 4354.365703936259, + 4269.387499975523, 4213.095536101576, 4182.7871164354, 4170.603738288099, + 4166.372558549164, 4160.586796396872, 4149.358243255002, + 4135.226379195616, 4126.238276543459, 4133.336126499748, + 4165.331851354885, 4225.9527102792135, 4310.996508251531, + 4408.651007557349, 4506.036619856851, 4592.911595745144, + 4669.667802340483, 4752.343915488125, 4873.526455360097, + 5079.974397638864, 5424.096917618295, 5951.288539445242, + 6698.3296015000205, 7668.726093912861, 8843.62626230063 + ], + "flow:branch35_seg0:J63": [ + 0.703972263165754, 0.9129529078454167, 1.1436013863835386, + 1.3844303343738777, 1.622820199347383, 1.8475339890686113, + 2.050030144664552, 2.225312874338655, 2.37130311151569, 2.489305306441046, + 2.5817706471992348, 2.6514182490147755, 2.700884199263277, + 2.7312657069862225, 2.7430615819311717, 2.7363101817459574, + 2.7109093518742555, 2.668003078965038, 2.609307797587701, + 2.537591099282553, 2.456267689062701, 2.368388368618653, + 2.276656032556116, 2.1828660960068995, 2.088005328604554, + 1.9926909281527687, 1.8975049465790583, 1.8034571525496563, + 1.7120827403699084, 1.625242385391292, 1.544502246528971, + 1.4705839190550711, 1.4026381481246621, 1.3379754086075986, + 1.2723963054258323, 1.200779896376055, 1.1182490826273412, + 1.0212837174812202, 0.9090053804583978, 0.7832101070222511, + 0.6487202619257498, 0.5123905382166087, 0.3818670427222515, + 0.2642679328223778, 0.16510643451744142, 0.08737540957408507, + 0.03128853021249772, -0.004682647942301175, -0.02382766525160173, + -0.02963641260209693, -0.02509921262785749, -0.012621888167429936, + 0.006525992759056249, 0.031420614194002126, 0.06110575679787252, + 0.09427489255171931, 0.1287585435736091, 0.16184889163286612, + 0.19065480662832404, 0.21273265087700544, 0.22652725528401327, + 0.23195420519749924, 0.23016744732888766, 0.22319398955598188, + 0.2135148549469481, 0.2031295220576577, 0.1931895984923943, + 0.1837816470298851, 0.17405652786163106, 0.16274043616199457, + 0.14872309099156286, 0.13160359772150146, 0.11200282254752963, + 0.0913965110601216, 0.07181846569099301, 0.05521024705550464, + 0.04287148485202872, 0.03503398050333269, 0.030978601175546423, + 0.029215348585727392, 0.02812901588402171, 0.026623561048439052, + 0.02449054813340228, 0.022531123236710183, 0.022272366798962936, + 0.025328788776972245, 0.03280525773767601, 0.04466943331596457, + 0.05972652206778258, 0.0760108239178212, 0.09153411110608611, + 0.10544657955708692, 0.11899203038926189, 0.13603953257015844, + 0.16306805427261756, 0.20811599188054178, 0.27961086857883527, + 0.3844795463490067, 0.5259864884655023, 0.703972263165754 + ], + "pressure:branch35_seg0:J63": [ + 8558.822722581344, 9847.974142161776, 11239.798386974488, + 12664.747627108822, 14049.71946832571, 15331.95625219822, + 16467.55634807857, 17437.185147355623, 18233.23262100355, + 18867.62110584591, 19360.233330542305, 19723.249341013052, + 19971.698726794464, 20110.45286649986, 20138.59899740675, + 20058.988586915737, 19869.86792051268, 19579.68339299979, + 19203.35868636904, 18756.099134884967, 18259.75401980683, + 17731.76338374564, 17185.512722134972, 16630.51065112584, + 16070.79285209989, 15509.450058643655, 14950.602740344873, + 14401.20701160565, 13871.303554646283, 13372.209367096744, + 12911.853819829434, 12491.515652878914, 12102.95317746841, + 11725.9169797114, 11332.96429607967, 10893.083046540629, + 10379.999569711821, 9776.11470127824, 9083.067037133065, + 8318.476375784754, 7514.947018211053, 6717.285217961918, + 5970.589486432604, 5314.292796258974, 4774.888712125106, + 4366.262639060156, 4082.887703849038, 3911.591044257215, 3832.71337465838, + 3823.848894899032, 3870.1560525133823, 3959.41648703587, + 4085.1211122909012, 4243.313173723683, 4427.0426702635295, + 4627.507937053471, 4830.560231402749, 5018.998578475209, + 5176.0293746287625, 5289.254576478622, 5351.779699444627, + 5365.767676104801, 5341.799232206946, 5292.11590651333, 5231.472031755245, + 5170.601963144689, 5113.650958581414, 5058.863642221085, + 4999.755192531514, 4928.39604388685, 4839.465923972985, 4732.289613306879, + 4612.877724321688, 4491.655201346658, 4380.963317000695, + 4291.413912946951, 4228.900888667419, 4192.281055743367, + 4175.190227277227, 4168.178409623855, 4161.844649424223, + 4151.415759185406, 4138.001091392576, 4128.264653117469, 4132.2493151252, + 4158.858210348015, 4212.791617089094, 4291.480183240276, + 4384.898573992577, 4480.9815394254165, 4569.129727350513, + 4647.757372064552, 4729.550058274606, 4843.147780542654, + 5031.634259853636, 5345.174108338345, 5830.081574656599, + 6524.548103008897, 7438.179850530551, 8558.822722581344 + ], + "flow:J63:branch35_seg1": [ + 0.703972263165754, 0.9129529078454167, 1.1436013863835386, + 1.3844303343738777, 1.622820199347383, 1.8475339890686113, + 2.050030144664552, 2.225312874338655, 2.37130311151569, 2.489305306441046, + 2.5817706471992348, 2.6514182490147755, 2.700884199263277, + 2.7312657069862225, 2.7430615819311717, 2.7363101817459574, + 2.7109093518742555, 2.668003078965038, 2.609307797587701, + 2.537591099282553, 2.456267689062701, 2.368388368618653, + 2.276656032556116, 2.1828660960068995, 2.088005328604554, + 1.9926909281527687, 1.8975049465790583, 1.8034571525496563, + 1.7120827403699084, 1.625242385391292, 1.544502246528971, + 1.4705839190550711, 1.4026381481246621, 1.3379754086075986, + 1.2723963054258323, 1.200779896376055, 1.1182490826273412, + 1.0212837174812202, 0.9090053804583978, 0.7832101070222511, + 0.6487202619257498, 0.5123905382166087, 0.3818670427222515, + 0.2642679328223778, 0.16510643451744142, 0.08737540957408507, + 0.03128853021249772, -0.004682647942301175, -0.02382766525160173, + -0.02963641260209693, -0.02509921262785749, -0.012621888167429936, + 0.006525992759056249, 0.031420614194002126, 0.06110575679787252, + 0.09427489255171931, 0.1287585435736091, 0.16184889163286612, + 0.19065480662832404, 0.21273265087700544, 0.22652725528401327, + 0.23195420519749924, 0.23016744732888766, 0.22319398955598188, + 0.2135148549469481, 0.2031295220576577, 0.1931895984923943, + 0.1837816470298851, 0.17405652786163106, 0.16274043616199457, + 0.14872309099156286, 0.13160359772150146, 0.11200282254752963, + 0.0913965110601216, 0.07181846569099301, 0.05521024705550464, + 0.04287148485202872, 0.03503398050333269, 0.030978601175546423, + 0.029215348585727392, 0.02812901588402171, 0.026623561048439052, + 0.02449054813340228, 0.022531123236710183, 0.022272366798962936, + 0.025328788776972245, 0.03280525773767601, 0.04466943331596457, + 0.05972652206778258, 0.0760108239178212, 0.09153411110608611, + 0.10544657955708692, 0.11899203038926189, 0.13603953257015844, + 0.16306805427261756, 0.20811599188054178, 0.27961086857883527, + 0.3844795463490067, 0.5259864884655023, 0.703972263165754 + ], + "pressure:J63:branch35_seg1": [ + 8558.822722581344, 9847.974142161776, 11239.798386974488, + 12664.747627108822, 14049.71946832571, 15331.95625219822, + 16467.55634807857, 17437.185147355623, 18233.23262100355, + 18867.62110584591, 19360.233330542305, 19723.249341013052, + 19971.698726794464, 20110.45286649986, 20138.59899740675, + 20058.988586915737, 19869.86792051268, 19579.68339299979, + 19203.35868636904, 18756.099134884967, 18259.75401980683, + 17731.76338374564, 17185.512722134972, 16630.51065112584, + 16070.79285209989, 15509.450058643655, 14950.602740344873, + 14401.20701160565, 13871.303554646283, 13372.209367096744, + 12911.853819829434, 12491.515652878914, 12102.95317746841, + 11725.9169797114, 11332.96429607967, 10893.083046540629, + 10379.999569711821, 9776.11470127824, 9083.067037133065, + 8318.476375784754, 7514.947018211053, 6717.285217961918, + 5970.589486432604, 5314.292796258974, 4774.888712125106, + 4366.262639060156, 4082.887703849038, 3911.591044257215, 3832.71337465838, + 3823.848894899032, 3870.1560525133823, 3959.41648703587, + 4085.1211122909012, 4243.313173723683, 4427.0426702635295, + 4627.507937053471, 4830.560231402749, 5018.998578475209, + 5176.0293746287625, 5289.254576478622, 5351.779699444627, + 5365.767676104801, 5341.799232206946, 5292.11590651333, 5231.472031755245, + 5170.601963144689, 5113.650958581414, 5058.863642221085, + 4999.755192531514, 4928.39604388685, 4839.465923972985, 4732.289613306879, + 4612.877724321688, 4491.655201346658, 4380.963317000695, + 4291.413912946951, 4228.900888667419, 4192.281055743367, + 4175.190227277227, 4168.178409623855, 4161.844649424223, + 4151.415759185406, 4138.001091392576, 4128.264653117469, 4132.2493151252, + 4158.858210348015, 4212.791617089094, 4291.480183240276, + 4384.898573992577, 4480.9815394254165, 4569.129727350513, + 4647.757372064552, 4729.550058274606, 4843.147780542654, + 5031.634259853636, 5345.174108338345, 5830.081574656599, + 6524.548103008897, 7438.179850530551, 8558.822722581344 + ], + "flow:branch35_seg1:J64": [ + 0.7024882278963676, 0.9112999621146236, 1.1418583402178808, + 1.382698539312844, 1.6211789249577298, 1.8460460484939194, + 2.0487374476373508, 2.224236662536683, 2.37042951256735, + 2.4886210494073158, 2.581252200278176, 2.651044634752964, + 2.7006504493569965, 2.731163805268922, 2.7430953892062293, + 2.736476190807208, 2.7112035679628916, 2.6684194456984813, + 2.6098164348111204, 2.538171507290666, 2.456899712825097, + 2.3690474312409964, 2.277331221614704, 2.1835490121910386, + 2.088691251535773, 1.9933775583748727, 1.8981848597451967, + 1.8041195927151983, 1.7127143336408088, 1.625831114321632, + 1.5450397808295133, 1.4710759645507716, 1.4031023805039256, + 1.3384396061718256, 1.272899302468797, 1.2013593956980875, + 1.1189305215888046, 1.0220792046737497, 0.90990576108391, + 0.7841788033226977, 0.6497101417554209, 0.5133462901239421, + 0.38273308050736754, 0.2649981765254912, 0.16568797525439902, + 0.0877978277586857, 0.03155785343775628, -0.004532639382595061, + -0.02377933193390386, -0.029663607219630402, -0.02518180780402229, + -0.01275666200910648, 0.0063512000825881225, 0.031210933907808002, + 0.06086717532253266, 0.0940248579405223, 0.1285153814297091, + 0.16163359502419955, 0.1904871456859229, 0.2126250674243883, + 0.22648138649331417, 0.23196371710918984, 0.23021630111654837, + 0.22326382365066258, 0.21359126929051614, 0.20320218779952215, + 0.19325674782630664, 0.183849661594053, 0.1741349588331181, + 0.1628388179502789, 0.14884371767675306, 0.13174377003917834, + 0.11215327161285064, 0.09154100054909613, 0.07194237438294956, + 0.055303761237581406, 0.042931975832832654, 0.03506418216402896, + 0.030991303366780416, 0.029222494628909336, 0.028138545368614088, + 0.02663900757376693, 0.024506693148098047, 0.022536946461480283, + 0.02225521084574043, 0.025279447832003168, 0.03272280035954561, + 0.044560997447131864, 0.059607345192921185, 0.07589676429153146, + 0.09143334303369456, 0.1053526528763892, 0.11887967468767612, + 0.13586398815783393, 0.16277158904988556, 0.20762864707321546, + 0.27889406340714684, 0.38350020733597256, 0.5247238752383944, + 0.7024882278963676 + ], + "pressure:branch35_seg1:J64": [ + 8264.964988095135, 9502.10257458812, 10853.21002570661, + 12250.988032495743, 13622.808021830853, 14905.127824849731, + 16051.44485802204, 17037.60279239891, 17853.512130105068, + 18508.804106165007, 19020.263799670007, 19401.76492284894, + 19668.46509151015, 19825.94313985251, 19875.289199063875, + 19817.98309499838, 19652.855878311722, 19387.299798380638, + 19033.455992137377, 18606.84724663347, 18128.073444536298, + 17614.52319959252, 17080.704905027982, 16536.52303587421, + 15986.862951948779, 15435.048117375118, 14884.748830760558, + 14342.274197368122, 13816.973764390232, 13319.807409028826, + 12859.24367182397, 12438.13369457965, 12050.087964313794, + 11677.479174842521, 11294.77001037958, 10871.885872887031, + 10381.691086529021, 9805.192976286919, 9140.43091782058, + 8401.007226807353, 7616.766680105321, 6829.496537037221, + 6083.500261263141, 5418.889372828475, 4864.943606891362, + 4437.233401067029, 4133.869766080528, 3944.1714519159714, + 3848.853850755336, 3826.8657545526858, 3862.169952934139, + 3941.6624283188266, 4058.516591278843, 4208.036558476003, + 4384.057911473997, 4578.562109749366, 4778.327243052525, + 4967.084237876094, 5128.190711694039, 5248.409236496496, + 5319.739085721699, 5342.910424521939, 5326.3811099547975, + 5281.999442762445, 5224.233585357605, 5164.198886776182, + 5107.352627220954, 5053.164154386834, 4996.025751617301, + 4928.352586641383, 4844.250779095372, 4742.17489240071, 4626.803046334886, + 4507.4722525085235, 4396.146462557134, 4303.709548029657, + 4236.893569766332, 4195.870636133913, 4175.524953021472, + 4166.892491193089, 4160.645043609492, 4151.212989058016, + 4138.452788593624, 4127.899881522467, 4128.89216249106, 4150.51155407406, + 4198.347224054848, 4271.12864236844, 4360.542650968214, 4454.983873367938, + 4543.41552480711, 4622.456637135594, 4701.757513532066, + 4806.4076077111795, 4976.20838495979, 5258.999882233713, + 5702.203036102829, 6344.699174412115, 7200.882392236193, 8264.964988095135 + ], + "flow:J64:branch35_seg2": [ + 0.7024882278963676, 0.9112999621146236, 1.1418583402178808, + 1.382698539312844, 1.6211789249577298, 1.8460460484939194, + 2.0487374476373508, 2.224236662536683, 2.37042951256735, + 2.4886210494073158, 2.581252200278176, 2.651044634752964, + 2.7006504493569965, 2.731163805268922, 2.7430953892062293, + 2.736476190807208, 2.7112035679628916, 2.6684194456984813, + 2.6098164348111204, 2.538171507290666, 2.456899712825097, + 2.3690474312409964, 2.277331221614704, 2.1835490121910386, + 2.088691251535773, 1.9933775583748727, 1.8981848597451967, + 1.8041195927151983, 1.7127143336408088, 1.625831114321632, + 1.5450397808295133, 1.4710759645507716, 1.4031023805039256, + 1.3384396061718256, 1.272899302468797, 1.2013593956980875, + 1.1189305215888046, 1.0220792046737497, 0.90990576108391, + 0.7841788033226977, 0.6497101417554209, 0.5133462901239421, + 0.38273308050736754, 0.2649981765254912, 0.16568797525439902, + 0.0877978277586857, 0.03155785343775628, -0.004532639382595061, + -0.02377933193390386, -0.029663607219630402, -0.02518180780402229, + -0.01275666200910648, 0.0063512000825881225, 0.031210933907808002, + 0.06086717532253266, 0.0940248579405223, 0.1285153814297091, + 0.16163359502419955, 0.1904871456859229, 0.2126250674243883, + 0.22648138649331417, 0.23196371710918984, 0.23021630111654837, + 0.22326382365066258, 0.21359126929051614, 0.20320218779952215, + 0.19325674782630664, 0.183849661594053, 0.1741349588331181, + 0.1628388179502789, 0.14884371767675306, 0.13174377003917834, + 0.11215327161285064, 0.09154100054909613, 0.07194237438294956, + 0.055303761237581406, 0.042931975832832654, 0.03506418216402896, + 0.030991303366780416, 0.029222494628909336, 0.028138545368614088, + 0.02663900757376693, 0.024506693148098047, 0.022536946461480283, + 0.02225521084574043, 0.025279447832003168, 0.03272280035954561, + 0.044560997447131864, 0.059607345192921185, 0.07589676429153146, + 0.09143334303369456, 0.1053526528763892, 0.11887967468767612, + 0.13586398815783393, 0.16277158904988556, 0.20762864707321546, + 0.27889406340714684, 0.38350020733597256, 0.5247238752383944, + 0.7024882278963676 + ], + "pressure:J64:branch35_seg2": [ + 8264.964988095135, 9502.10257458812, 10853.21002570661, + 12250.988032495743, 13622.808021830853, 14905.127824849731, + 16051.44485802204, 17037.60279239891, 17853.512130105068, + 18508.804106165007, 19020.263799670007, 19401.76492284894, + 19668.46509151015, 19825.94313985251, 19875.289199063875, + 19817.98309499838, 19652.855878311722, 19387.299798380638, + 19033.455992137377, 18606.84724663347, 18128.073444536298, + 17614.52319959252, 17080.704905027982, 16536.52303587421, + 15986.862951948779, 15435.048117375118, 14884.748830760558, + 14342.274197368122, 13816.973764390232, 13319.807409028826, + 12859.24367182397, 12438.13369457965, 12050.087964313794, + 11677.479174842521, 11294.77001037958, 10871.885872887031, + 10381.691086529021, 9805.192976286919, 9140.43091782058, + 8401.007226807353, 7616.766680105321, 6829.496537037221, + 6083.500261263141, 5418.889372828475, 4864.943606891362, + 4437.233401067029, 4133.869766080528, 3944.1714519159714, + 3848.853850755336, 3826.8657545526858, 3862.169952934139, + 3941.6624283188266, 4058.516591278843, 4208.036558476003, + 4384.057911473997, 4578.562109749366, 4778.327243052525, + 4967.084237876094, 5128.190711694039, 5248.409236496496, + 5319.739085721699, 5342.910424521939, 5326.3811099547975, + 5281.999442762445, 5224.233585357605, 5164.198886776182, + 5107.352627220954, 5053.164154386834, 4996.025751617301, + 4928.352586641383, 4844.250779095372, 4742.17489240071, 4626.803046334886, + 4507.4722525085235, 4396.146462557134, 4303.709548029657, + 4236.893569766332, 4195.870636133913, 4175.524953021472, + 4166.892491193089, 4160.645043609492, 4151.212989058016, + 4138.452788593624, 4127.899881522467, 4128.89216249106, 4150.51155407406, + 4198.347224054848, 4271.12864236844, 4360.542650968214, 4454.983873367938, + 4543.41552480711, 4622.456637135594, 4701.757513532066, + 4806.4076077111795, 4976.20838495979, 5258.999882233713, + 5702.203036102829, 6344.699174412115, 7200.882392236193, 8264.964988095135 + ], + "flow:branch41_seg0:J65": [ + 0.9366173953562464, 1.213563816804231, 1.5192011793725242, + 1.838235491308459, 2.1540072251913838, 2.4517167176446115, + 2.7201873218389445, 2.9529561729907607, 3.1474381851245896, + 3.305364455950614, 3.4300096764126526, 3.524915305958836, + 3.5934899949983494, 3.637193241799392, 3.656641358190959, + 3.6519094991276146, 3.622834648032064, 3.5708351647881402, + 3.498118754012926, 3.4081372455041485, 3.3052183119294276, + 3.193257101379996, 3.075683264507202, 2.9548201729459156, + 2.8319626397240247, 2.707939922850036, 2.583553571717984, + 2.4601489881112486, 2.3397526757956677, 2.2248173796009683, + 2.1174348284078257, 2.0186016624110166, 1.9273043716918639, + 1.840136125699518, 1.7516985864551793, 1.6553626837787305, + 1.5447671745419904, 1.4152298938741927, 1.2654567839272453, + 1.0976269557096863, 0.9178325902142379, 0.7349077792760589, + 0.5588326337570684, 0.39903290028875177, 0.26291318282939047, + 0.1547397089191926, 0.07511485262211777, 0.022263285828512516, + -0.007880151949841225, -0.019821153139215716, -0.01746475717232538, + -0.003974313474273537, 0.018892817272558444, 0.04988334139217191, + 0.08769489018107987, 0.13055401556444005, 0.17558064675347104, + 0.2191641259548291, 0.2574368407246056, 0.28710264234485683, + 0.3060215951489968, 0.31396623778033245, 0.3123662525900272, + 0.30380784843130887, 0.2915072089876494, 0.2780999895488497, + 0.2651262759815796, 0.2527412730163569, 0.23987077877709428, + 0.22485962299845144, 0.20625018295736766, 0.18348403899702745, + 0.15733978109998387, 0.12973645810666273, 0.10333747906759878, + 0.0807196445959423, 0.06364523729560845, 0.052494459980383656, + 0.04637531489752499, 0.04338117423375404, 0.04140441343428057, + 0.03898405008051032, 0.03581387549509268, 0.03291004614521833, + 0.03225764451826532, 0.03598385976834747, 0.04556924517795417, + 0.06102408497975158, 0.0808191962697744, 0.10240062924217805, + 0.1231551312915464, 0.14193146118684605, 0.16031175470401998, + 0.18333486018754336, 0.2194995923818754, 0.2794346835626153, + 0.37425360843394023, 0.5132217520414365, 0.7007804046402152, + 0.9366173953562464 + ], + "pressure:branch41_seg0:J65": [ + 8455.544810598778, 9694.727094307242, 11024.721198023712, + 12378.005258162804, 13686.075524420796, 14891.05626322219, + 15953.813671081112, 16858.865827474292, 17601.520497716927, + 18194.26422182297, 18656.849727672754, 18999.985837846, + 19237.317000181683, 19373.06768332957, 19405.404371459856, + 19337.546638517175, 19167.39890063675, 18903.01032044517, + 18559.422650682496, 18149.741002843337, 17694.19498835782, + 17208.791612355562, 16704.951650342642, 16191.238292884182, + 15671.07031724098, 15147.26470921566, 14624.060922216522, + 14108.322947368224, 13609.792096334575, 13139.232320164869, + 12704.01529763411, 12304.815400332296, 11933.442155768176, + 11570.360360574925, 11189.425781677473, 10761.535157590515, + 10262.634783588239, 9676.625069744756, 9006.078313990856, + 8268.591803641606, 7495.050380213551, 6728.138906242156, + 6010.374797158046, 5378.871876122325, 4857.742157113257, + 4460.6917794384935, 4182.244207150136, 4009.34508495971, + 3924.504415556245, 3906.360067305532, 3941.42477347721, + 4018.8857909886237, 4132.284011755547, 4278.107716779769, + 4449.528083438782, 4637.546064072264, 4828.344438086079, + 5005.209457763453, 5152.036900169365, 5257.22528544288, 5314.520702661039, + 5326.264424488778, 5302.952052908481, 5256.012165722402, + 5199.306844652936, 5142.7334017830935, 5089.658698251457, + 5037.9948517513985, 4981.376279238869, 4912.24459197583, + 4825.889401429264, 4721.947391890597, 4606.515151070354, + 4489.888688557707, 4383.792089204735, 4298.159964796074, + 4238.324895893666, 4202.9424913556995, 4185.567688593304, + 4177.258398792495, 4169.272739444366, 4157.369749771096, + 4143.056669181127, 4133.012517637681, 4136.931333907209, + 4163.142318086866, 4215.74697658093, 4291.8844561849455, + 4381.523254553024, 4473.198970307164, 4557.1272615943935, + 4632.54575633852, 4712.599652244426, 4825.679756571146, 5013.706020039928, + 5325.162210709135, 5802.837927831189, 6482.668107667947, 7372.2830096308, + 8455.544810598778 + ], + "flow:J65:branch41_seg1": [ + 0.9366173953562464, 1.213563816804231, 1.5192011793725242, + 1.838235491308459, 2.1540072251913838, 2.4517167176446115, + 2.7201873218389445, 2.9529561729907607, 3.1474381851245896, + 3.305364455950614, 3.4300096764126526, 3.524915305958836, + 3.5934899949983494, 3.637193241799392, 3.656641358190959, + 3.6519094991276146, 3.622834648032064, 3.5708351647881402, + 3.498118754012926, 3.4081372455041485, 3.3052183119294276, + 3.193257101379996, 3.075683264507202, 2.9548201729459156, + 2.8319626397240247, 2.707939922850036, 2.583553571717984, + 2.4601489881112486, 2.3397526757956677, 2.2248173796009683, + 2.1174348284078257, 2.0186016624110166, 1.9273043716918639, + 1.840136125699518, 1.7516985864551793, 1.6553626837787305, + 1.5447671745419904, 1.4152298938741927, 1.2654567839272453, + 1.0976269557096863, 0.9178325902142379, 0.7349077792760589, + 0.5588326337570684, 0.39903290028875177, 0.26291318282939047, + 0.1547397089191926, 0.07511485262211777, 0.022263285828512516, + -0.007880151949841225, -0.019821153139215716, -0.01746475717232538, + -0.003974313474273537, 0.018892817272558444, 0.04988334139217191, + 0.08769489018107987, 0.13055401556444005, 0.17558064675347104, + 0.2191641259548291, 0.2574368407246056, 0.28710264234485683, + 0.3060215951489968, 0.31396623778033245, 0.3123662525900272, + 0.30380784843130887, 0.2915072089876494, 0.2780999895488497, + 0.2651262759815796, 0.2527412730163569, 0.23987077877709428, + 0.22485962299845144, 0.20625018295736766, 0.18348403899702745, + 0.15733978109998387, 0.12973645810666273, 0.10333747906759878, + 0.0807196445959423, 0.06364523729560845, 0.052494459980383656, + 0.04637531489752499, 0.04338117423375404, 0.04140441343428057, + 0.03898405008051032, 0.03581387549509268, 0.03291004614521833, + 0.03225764451826532, 0.03598385976834747, 0.04556924517795417, + 0.06102408497975158, 0.0808191962697744, 0.10240062924217805, + 0.1231551312915464, 0.14193146118684605, 0.16031175470401998, + 0.18333486018754336, 0.2194995923818754, 0.2794346835626153, + 0.37425360843394023, 0.5132217520414365, 0.7007804046402152, + 0.9366173953562464 + ], + "pressure:J65:branch41_seg1": [ + 8455.544810598778, 9694.727094307242, 11024.721198023712, + 12378.005258162804, 13686.075524420796, 14891.05626322219, + 15953.813671081112, 16858.865827474292, 17601.520497716927, + 18194.26422182297, 18656.849727672754, 18999.985837846, + 19237.317000181683, 19373.06768332957, 19405.404371459856, + 19337.546638517175, 19167.39890063675, 18903.01032044517, + 18559.422650682496, 18149.741002843337, 17694.19498835782, + 17208.791612355562, 16704.951650342642, 16191.238292884182, + 15671.07031724098, 15147.26470921566, 14624.060922216522, + 14108.322947368224, 13609.792096334575, 13139.232320164869, + 12704.01529763411, 12304.815400332296, 11933.442155768176, + 11570.360360574925, 11189.425781677473, 10761.535157590515, + 10262.634783588239, 9676.625069744756, 9006.078313990856, + 8268.591803641606, 7495.050380213551, 6728.138906242156, + 6010.374797158046, 5378.871876122325, 4857.742157113257, + 4460.6917794384935, 4182.244207150136, 4009.34508495971, + 3924.504415556245, 3906.360067305532, 3941.42477347721, + 4018.8857909886237, 4132.284011755547, 4278.107716779769, + 4449.528083438782, 4637.546064072264, 4828.344438086079, + 5005.209457763453, 5152.036900169365, 5257.22528544288, 5314.520702661039, + 5326.264424488778, 5302.952052908481, 5256.012165722402, + 5199.306844652936, 5142.7334017830935, 5089.658698251457, + 5037.9948517513985, 4981.376279238869, 4912.24459197583, + 4825.889401429264, 4721.947391890597, 4606.515151070354, + 4489.888688557707, 4383.792089204735, 4298.159964796074, + 4238.324895893666, 4202.9424913556995, 4185.567688593304, + 4177.258398792495, 4169.272739444366, 4157.369749771096, + 4143.056669181127, 4133.012517637681, 4136.931333907209, + 4163.142318086866, 4215.74697658093, 4291.8844561849455, + 4381.523254553024, 4473.198970307164, 4557.1272615943935, + 4632.54575633852, 4712.599652244426, 4825.679756571146, 5013.706020039928, + 5325.162210709135, 5802.837927831189, 6482.668107667947, 7372.2830096308, + 8455.544810598778 + ], + "flow:branch41_seg1:J66": [ + 0.9352949544865754, 1.2120999234404652, 1.5176645153490727, + 1.8367185358145386, 2.152577870545014, 2.450425916737802, + 2.7190674508884047, 2.9520291429632115, 3.146683205462154, + 3.3047686618204652, 3.429557800449649, 3.524585915596355, + 3.5932805097051714, 3.637098036083792, 3.656661595227998, + 3.652044951693688, 3.623082288998919, 3.571185957206221, + 3.4985489013063154, 3.4086297374563337, 3.305755663300841, + 3.1938187980500654, 3.0762604969473055, 2.9554062365997256, + 2.8325537340739553, 2.7085338947455293, 2.5841433696776615, + 2.4607249766410186, 2.3403027660859284, 2.2253316510297583, + 2.1179057839219655, 2.0190351606054686, 1.9277168303922647, + 1.8405511342927316, 1.7521503384616108, 1.6558834753960434, + 1.5453792878988668, 1.415942186020167, 1.2662603073318808, + 1.0984900630782377, 0.9187125872764638, 0.7357573522727838, + 0.5596028234507605, 0.39968399580763037, 0.26343455131440846, + 0.15512083964447448, 0.07536172243178214, 0.022406421278103276, + -0.007826503239983393, -0.019834591762387117, -0.01752790612507486, + -0.004085809441685725, 0.018745283817164223, 0.049703950018981556, + 0.08748803495943075, 0.1303369251199553, 0.17536965724215675, + 0.21897756017927994, 0.2572918930817275, 0.2870109231880255, + 0.3059833471057258, 0.3139747245031081, 0.31240926986316775, + 0.30386861365690293, 0.2915728341136743, 0.2781624803825099, + 0.2651844121814694, 0.25280097858702316, 0.2399406696369517, + 0.22494788752711742, 0.2063583486383724, 0.18360957176504086, + 0.15747403001071453, 0.12986470336641331, 0.10344704430604842, + 0.0808021602792011, 0.06369899968021696, 0.0525216508579851, + 0.04638808126937936, 0.04338978855107329, 0.041415063441003076, + 0.038999644662556725, 0.03582942486457927, 0.032915557888373415, + 0.03224211511150056, 0.03593917103043833, 0.04549524153953963, + 0.06092803259106644, 0.08071382062889643, 0.10230006542315308, + 0.12306628560327804, 0.1418475119066971, 0.16020914943688114, + 0.18317313274396352, 0.21922671399977767, 0.27898913487965354, + 0.37360366196402883, 0.5123373759444497, 0.6996451745501729, + 0.9352949544865754 + ], + "pressure:branch41_seg1:J66": [ + 8276.245779545441, 9485.37560586953, 10793.017415863958, + 12133.087304432265, 13437.087276010781, 14646.27350688798, + 15719.622366236152, 16638.682295251412, 17396.718963480427, + 18004.92269574077, 18481.319742912394, 18837.482770844654, + 19087.33132222663, 19235.5447407703, 19281.451787145554, + 19227.59916533644, 19072.177665164927, 18822.510396998317, + 18492.092488138624, 18094.211295005938, 17648.411599444436, + 17170.713043952284, 16673.2692604821, 16164.936948047176, + 15649.667452344196, 15130.42854052356, 14611.179553433398, + 14098.397049195668, 13601.403549668974, 13130.787983577367, + 12694.24470928716, 12293.470288315215, 11921.435883646525, + 11560.175054795604, 11184.728346772235, 10766.51751971895, + 10280.935812137146, 9710.914100003341, 9056.794672262893, + 8333.69245891414, 7570.725916163952, 6808.812022870668, 6089.952424085449, + 5451.752344948811, 4920.107786707101, 4509.799903276121, + 4217.668423165008, 4032.298704276953, 3936.4102665404366, + 3909.4689755148624, 3937.2573723432447, 4008.3307642216105, + 4116.082647048646, 4256.482247113269, 4423.141353592133, + 4607.612870866842, 4796.620306692592, 4973.999970279591, + 5123.714807534085, 5233.639451067549, 5296.738181380027, + 5314.421227211059, 5295.9320378894645, 5252.368599198407, + 5197.44282674953, 5141.336937094412, 5088.244185222942, + 5036.8669302258195, 4981.400527849759, 4914.494484435139, + 4831.064911242768, 4730.1974178169085, 4617.14184029657, + 4501.505843819693, 4394.7905289118435, 4307.120548548021, + 4244.382792335768, 4206.046242171005, 4186.497749128867, + 4177.081821586582, 4169.078038155018, 4157.748960382928, + 4143.8028619644665, 4133.19924073463, 4135.195055435009, + 4158.229539268929, 4206.992937505423, 4279.468330392989, + 4366.658431803809, 4457.4229127814115, 4541.676912264848, + 4617.496591418675, 4696.0980300365, 4803.644743171968, 4980.011582190664, + 5272.2986591574845, 5724.141373406777, 6371.986349097344, + 7226.605063114165, 8276.245779545441 + ], + "flow:J66:branch41_seg2": [ + 0.9352949544865754, 1.2120999234404652, 1.5176645153490727, + 1.8367185358145386, 2.152577870545014, 2.450425916737802, + 2.7190674508884047, 2.9520291429632115, 3.146683205462154, + 3.3047686618204652, 3.429557800449649, 3.524585915596355, + 3.5932805097051714, 3.637098036083792, 3.656661595227998, + 3.652044951693688, 3.623082288998919, 3.571185957206221, + 3.4985489013063154, 3.4086297374563337, 3.305755663300841, + 3.1938187980500654, 3.0762604969473055, 2.9554062365997256, + 2.8325537340739553, 2.7085338947455293, 2.5841433696776615, + 2.4607249766410186, 2.3403027660859284, 2.2253316510297583, + 2.1179057839219655, 2.0190351606054686, 1.9277168303922647, + 1.8405511342927316, 1.7521503384616108, 1.6558834753960434, + 1.5453792878988668, 1.415942186020167, 1.2662603073318808, + 1.0984900630782377, 0.9187125872764638, 0.7357573522727838, + 0.5596028234507605, 0.39968399580763037, 0.26343455131440846, + 0.15512083964447448, 0.07536172243178214, 0.022406421278103276, + -0.007826503239983393, -0.019834591762387117, -0.01752790612507486, + -0.004085809441685725, 0.018745283817164223, 0.049703950018981556, + 0.08748803495943075, 0.1303369251199553, 0.17536965724215675, + 0.21897756017927994, 0.2572918930817275, 0.2870109231880255, + 0.3059833471057258, 0.3139747245031081, 0.31240926986316775, + 0.30386861365690293, 0.2915728341136743, 0.2781624803825099, + 0.2651844121814694, 0.25280097858702316, 0.2399406696369517, + 0.22494788752711742, 0.2063583486383724, 0.18360957176504086, + 0.15747403001071453, 0.12986470336641331, 0.10344704430604842, + 0.0808021602792011, 0.06369899968021696, 0.0525216508579851, + 0.04638808126937936, 0.04338978855107329, 0.041415063441003076, + 0.038999644662556725, 0.03582942486457927, 0.032915557888373415, + 0.03224211511150056, 0.03593917103043833, 0.04549524153953963, + 0.06092803259106644, 0.08071382062889643, 0.10230006542315308, + 0.12306628560327804, 0.1418475119066971, 0.16020914943688114, + 0.18317313274396352, 0.21922671399977767, 0.27898913487965354, + 0.37360366196402883, 0.5123373759444497, 0.6996451745501729, + 0.9352949544865754 + ], + "pressure:J66:branch41_seg2": [ + 8276.245779545441, 9485.37560586953, 10793.017415863958, + 12133.087304432265, 13437.087276010781, 14646.27350688798, + 15719.622366236152, 16638.682295251412, 17396.718963480427, + 18004.92269574077, 18481.319742912394, 18837.482770844654, + 19087.33132222663, 19235.5447407703, 19281.451787145554, + 19227.59916533644, 19072.177665164927, 18822.510396998317, + 18492.092488138624, 18094.211295005938, 17648.411599444436, + 17170.713043952284, 16673.2692604821, 16164.936948047176, + 15649.667452344196, 15130.42854052356, 14611.179553433398, + 14098.397049195668, 13601.403549668974, 13130.787983577367, + 12694.24470928716, 12293.470288315215, 11921.435883646525, + 11560.175054795604, 11184.728346772235, 10766.51751971895, + 10280.935812137146, 9710.914100003341, 9056.794672262893, + 8333.69245891414, 7570.725916163952, 6808.812022870668, 6089.952424085449, + 5451.752344948811, 4920.107786707101, 4509.799903276121, + 4217.668423165008, 4032.298704276953, 3936.4102665404366, + 3909.4689755148624, 3937.2573723432447, 4008.3307642216105, + 4116.082647048646, 4256.482247113269, 4423.141353592133, + 4607.612870866842, 4796.620306692592, 4973.999970279591, + 5123.714807534085, 5233.639451067549, 5296.738181380027, + 5314.421227211059, 5295.9320378894645, 5252.368599198407, + 5197.44282674953, 5141.336937094412, 5088.244185222942, + 5036.8669302258195, 4981.400527849759, 4914.494484435139, + 4831.064911242768, 4730.1974178169085, 4617.14184029657, + 4501.505843819693, 4394.7905289118435, 4307.120548548021, + 4244.382792335768, 4206.046242171005, 4186.497749128867, + 4177.081821586582, 4169.078038155018, 4157.748960382928, + 4143.8028619644665, 4133.19924073463, 4135.195055435009, + 4158.229539268929, 4206.992937505423, 4279.468330392989, + 4366.658431803809, 4457.4229127814115, 4541.676912264848, + 4617.496591418675, 4696.0980300365, 4803.644743171968, 4980.011582190664, + 5272.2986591574845, 5724.141373406777, 6371.986349097344, + 7226.605063114165, 8276.245779545441 + ], + "flow:branch51_seg0:J67": [ + 0.4240367712772316, 0.5528193101301994, 0.7005925540964181, + 0.8619368125062845, 1.0300589924761288, 1.1980700323583984, + 1.3598086021694664, 1.5105313675507237, 1.6469164954686164, + 1.767529578572845, 1.8719385783987834, 1.960326170285538, + 2.033278164918457, 2.09098072665611, 2.1335196792540474, + 2.1608437024151423, 2.172854446771867, 2.1700562370938212, + 2.153290676802879, 2.124013827252849, 2.08414741713647, 2.035615865785898, + 1.9803178562352388, 1.9197984087796365, 1.855223005569458, + 1.7875255559283898, 1.7175401130741363, 1.646230731890581, + 1.574775403924064, 1.5045149885588627, 1.4366852292123737, + 1.3721397870987309, 1.3109494695934274, 1.2521796433420946, + 1.1939488010574917, 1.1336339140618727, 1.0684101532746217, + 0.9958410729329277, 0.9146220812437603, 0.8247862294644517, + 0.7280571338568511, 0.6275363590374021, 0.5271922378126352, + 0.4312154377233466, 0.3433965993220628, 0.26651584664675476, + 0.20202016699722533, 0.1503275379870187, 0.1106979712308636, + 0.081925319643294, 0.06269931110570189, 0.05173040315856925, + 0.04811713494931186, 0.051066939919813495, 0.0597719037820281, + 0.0732694733408287, 0.09016873718552335, 0.10875926856458303, + 0.1271458515446782, 0.1435436221786919, 0.15652789241882561, + 0.16538086171599273, 0.1700747366373459, 0.17117120037156427, + 0.16966323892392485, 0.16652553111454288, 0.1624817691674039, + 0.15781665876309542, 0.1523480680734682, 0.14560293092601684, + 0.13707266402291407, 0.12649545933106046, 0.11406384552272564, + 0.1004196260537896, 0.08657302769927724, 0.07361884876981616, + 0.062456217300296005, 0.053528719026518186, 0.04680098404226987, + 0.041775180259438514, 0.03775690436196859, 0.03416850636907216, + 0.030771876667289696, 0.02780218196165165, 0.025906760459520402, + 0.025887411289513464, 0.028414634400984157, 0.03368187957029459, + 0.041310569788366856, 0.05045597326900921, 0.060115628167171975, + 0.06969355496672484, 0.0795402840362556, 0.09134739781811621, + 0.10830367926835165, 0.13473489623400986, 0.17560808394507252, + 0.23559251517062835, 0.3178792418684298, 0.4240367712772316 + ], + "pressure:branch51_seg0:J67": [ + 7094.03117311169, 8000.500064621637, 9021.383527983558, + 10117.630465753244, 11242.784151510448, 12351.308214060675, + 13404.578775129065, 14375.923280424684, 15246.157844209461, + 16008.84358845533, 16665.030405729627, 17215.084454393244, + 17663.539066760106, 18011.429661133876, 18257.616405987173, + 18403.17221155088, 18446.87561998723, 18393.03338498925, + 18250.007076130267, 18027.252361127954, 17738.821586637456, + 17397.710266910482, 17015.495578772458, 16601.993990131996, + 16163.98919135111, 15707.225872933857, 15237.425660117406, + 14761.397493377792, 14287.466770549807, 13824.792120958182, + 13381.009667678072, 12960.227955864879, 12561.01991345751, + 12174.448024550986, 11785.917992839803, 11376.764430121892, + 10928.754671808998, 10426.871760601156, 9865.905081957038, + 9250.17297752577, 8594.169369523377, 7921.935166943447, 7261.112525355294, + 6639.288469101188, 6079.193090310857, 5597.5358424936985, + 5200.1765358433795, 4886.94704715934, 4651.927573846682, + 4485.279379050536, 4378.941619183907, 4324.914638877887, + 4317.434533339052, 4351.942747394304, 4422.460288239719, + 4521.992911217594, 4640.479841726928, 4765.717797746086, + 4884.987807218926, 4987.243335818124, 5064.146045654839, + 5112.453715123431, 5134.277340084456, 5134.009753760034, + 5118.847858242603, 5095.187423953302, 5066.724394897729, + 5034.217030585291, 4995.536423432001, 4947.05614001888, 4885.775970525155, + 4810.682743799802, 4724.286647270998, 4631.953452800012, + 4540.878553360712, 4458.200083085049, 4389.173571285352, + 4335.485156824463, 4295.61797517048, 4265.614404638253, 4240.595619653423, + 4217.328272610471, 4195.330872756127, 4177.263149883882, + 4168.202313838693, 4173.450991253947, 4196.739652708227, + 4238.166053874364, 4293.518075303872, 4356.6065146829715, + 4420.995481195221, 4484.264388837246, 4551.5897417115475, + 4637.690021413587, 4767.126446720572, 4971.187535711056, + 5282.198519968569, 5730.655309619839, 6333.241719151336, 7094.03117311169 + ], + "flow:J67:branch51_seg1": [ + 0.4240367712772316, 0.5528193101301994, 0.7005925540964181, + 0.8619368125062845, 1.0300589924761288, 1.1980700323583984, + 1.3598086021694664, 1.5105313675507237, 1.6469164954686164, + 1.767529578572845, 1.8719385783987834, 1.960326170285538, + 2.033278164918457, 2.09098072665611, 2.1335196792540474, + 2.1608437024151423, 2.172854446771867, 2.1700562370938212, + 2.153290676802879, 2.124013827252849, 2.08414741713647, 2.035615865785898, + 1.9803178562352388, 1.9197984087796365, 1.855223005569458, + 1.7875255559283898, 1.7175401130741363, 1.646230731890581, + 1.574775403924064, 1.5045149885588627, 1.4366852292123737, + 1.3721397870987309, 1.3109494695934274, 1.2521796433420946, + 1.1939488010574917, 1.1336339140618727, 1.0684101532746217, + 0.9958410729329277, 0.9146220812437603, 0.8247862294644517, + 0.7280571338568511, 0.6275363590374021, 0.5271922378126352, + 0.4312154377233466, 0.3433965993220628, 0.26651584664675476, + 0.20202016699722533, 0.1503275379870187, 0.1106979712308636, + 0.081925319643294, 0.06269931110570189, 0.05173040315856925, + 0.04811713494931186, 0.051066939919813495, 0.0597719037820281, + 0.0732694733408287, 0.09016873718552335, 0.10875926856458303, + 0.1271458515446782, 0.1435436221786919, 0.15652789241882561, + 0.16538086171599273, 0.1700747366373459, 0.17117120037156427, + 0.16966323892392485, 0.16652553111454288, 0.1624817691674039, + 0.15781665876309542, 0.1523480680734682, 0.14560293092601684, + 0.13707266402291407, 0.12649545933106046, 0.11406384552272564, + 0.1004196260537896, 0.08657302769927724, 0.07361884876981616, + 0.062456217300296005, 0.053528719026518186, 0.04680098404226987, + 0.041775180259438514, 0.03775690436196859, 0.03416850636907216, + 0.030771876667289696, 0.02780218196165165, 0.025906760459520402, + 0.025887411289513464, 0.028414634400984157, 0.03368187957029459, + 0.041310569788366856, 0.05045597326900921, 0.060115628167171975, + 0.06969355496672484, 0.0795402840362556, 0.09134739781811621, + 0.10830367926835165, 0.13473489623400986, 0.17560808394507252, + 0.23559251517062835, 0.3178792418684298, 0.4240367712772316 + ], + "pressure:J67:branch51_seg1": [ + 7094.03117311169, 8000.500064621637, 9021.383527983558, + 10117.630465753244, 11242.784151510448, 12351.308214060675, + 13404.578775129065, 14375.923280424684, 15246.157844209461, + 16008.84358845533, 16665.030405729627, 17215.084454393244, + 17663.539066760106, 18011.429661133876, 18257.616405987173, + 18403.17221155088, 18446.87561998723, 18393.03338498925, + 18250.007076130267, 18027.252361127954, 17738.821586637456, + 17397.710266910482, 17015.495578772458, 16601.993990131996, + 16163.98919135111, 15707.225872933857, 15237.425660117406, + 14761.397493377792, 14287.466770549807, 13824.792120958182, + 13381.009667678072, 12960.227955864879, 12561.01991345751, + 12174.448024550986, 11785.917992839803, 11376.764430121892, + 10928.754671808998, 10426.871760601156, 9865.905081957038, + 9250.17297752577, 8594.169369523377, 7921.935166943447, 7261.112525355294, + 6639.288469101188, 6079.193090310857, 5597.5358424936985, + 5200.1765358433795, 4886.94704715934, 4651.927573846682, + 4485.279379050536, 4378.941619183907, 4324.914638877887, + 4317.434533339052, 4351.942747394304, 4422.460288239719, + 4521.992911217594, 4640.479841726928, 4765.717797746086, + 4884.987807218926, 4987.243335818124, 5064.146045654839, + 5112.453715123431, 5134.277340084456, 5134.009753760034, + 5118.847858242603, 5095.187423953302, 5066.724394897729, + 5034.217030585291, 4995.536423432001, 4947.05614001888, 4885.775970525155, + 4810.682743799802, 4724.286647270998, 4631.953452800012, + 4540.878553360712, 4458.200083085049, 4389.173571285352, + 4335.485156824463, 4295.61797517048, 4265.614404638253, 4240.595619653423, + 4217.328272610471, 4195.330872756127, 4177.263149883882, + 4168.202313838693, 4173.450991253947, 4196.739652708227, + 4238.166053874364, 4293.518075303872, 4356.6065146829715, + 4420.995481195221, 4484.264388837246, 4551.5897417115475, + 4637.690021413587, 4767.126446720572, 4971.187535711056, + 5282.198519968569, 5730.655309619839, 6333.241719151336, 7094.03117311169 + ], + "flow:branch51_seg1:J68": [ + 0.4231527153948997, 0.5517962950733092, 0.6994653680001892, + 0.8607574066220784, 1.0288746245610676, 1.196924025806243, + 1.3587370426738277, 1.5095611173393522, 1.646055751223704, + 1.7667836266597463, 1.8713052210081595, 1.9598008986640152, + 2.0328606855507143, 2.090668570003168, 2.1333149108785245, + 2.1607452490248393, 2.1728610818604515, 2.1701645902653066, + 2.1534863160383653, 2.124285624759191, 2.0844827152321153, + 2.035998936768064, 1.9807387781816057, 1.920248347385831, + 1.8556951858889985, 1.7880149314171916, 1.7180398040272238, + 1.6467326636166726, 1.5752702437804609, 1.5049938116070696, + 1.4371405516835722, 1.3725707984423228, 1.3113616649635453, + 1.2525847386360107, 1.1943655821414256, 1.1340831492256715, + 1.0689089231681577, 0.996401338603813, 0.9152455952048457, + 0.8254607694741415, 0.7287625513883386, 0.628245214894523, + 0.5278734817356, 0.4318398934355602, 0.3439481560182997, + 0.266979990520017, 0.20239137188018613, 0.1506152795772743, + 0.11090705709954411, 0.08206665077270762, 0.06278319482708777, + 0.051760450723807715, 0.04810154319540547, 0.05101063796859689, + 0.05967987665670413, 0.07315228760630198, 0.09003780336819465, + 0.10862772842881126, 0.12702710273461526, 0.1434483468481067, + 0.15646163998983398, 0.1653448795942894, 0.17006484111059086, + 0.17118056177576738, 0.16968496209546818, 0.16655363785301253, + 0.16251372360774832, 0.15785366439273507, 0.15239348064286576, + 0.14566090000422274, 0.13714482419944973, 0.12658135895413125, + 0.11415973861634233, 0.10051780152659362, 0.08666564890080036, + 0.073699427718505, 0.06252114502758727, 0.053576999053175735, + 0.04683691365247497, 0.04180364316705496, 0.03778185899374798, + 0.03419255489813567, 0.03079377638913891, 0.02781752410276799, + 0.025909609734865224, 0.025872520293858458, 0.02838007917792698, + 0.033629525958725544, 0.041246551486821686, 0.05038780404269569, + 0.06004847897236199, 0.06962635356744035, 0.07946267611279789, + 0.09123844651106118, 0.10813349077381963, 0.13446516740236888, + 0.17521104384907668, 0.23504102434688756, 0.3171522099397143, + 0.4231527153948997 + ], + "pressure:branch51_seg1:J68": [ + 6804.59563126498, 7648.473265615811, 8611.96550255063, 9659.372227978776, + 10746.46253790404, 11828.812520365538, 12867.237281415628, + 13832.372636172726, 14703.446671534273, 15472.024798359384, + 16136.330808230297, 16697.311318741, 17158.95234906783, + 17522.396257638648, 17787.773331474404, 17955.116982653784, + 18023.642003777528, 17996.841148954376, 17880.817189068443, + 17684.92004586942, 17421.875768657326, 17104.134486855335, + 16743.70013760139, 16350.425393112611, 15931.584669269807, + 15493.089131884475, 15040.355427001228, 14579.702504365927, + 14118.854809856895, 13666.532926911854, 13230.56654801063, + 12816.090322240276, 12423.096529106226, 12044.868268759483, + 11668.752269768118, 11277.5054471558, 10853.01897356152, + 10379.846561619112, 9850.422612827933, 9265.961244124734, + 8638.339567103745, 7988.440491350051, 7342.1907219361865, + 6726.5834318400475, 6165.513939562981, 5676.475152933118, + 5267.871379107734, 4941.71232527491, 4692.932429058347, + 4513.3002397972905, 4394.526929636063, 4328.400524413766, + 4309.189876419218, 4331.946280947575, 4391.292555216006, + 4480.889673795017, 4591.545488354354, 4712.005932736084, + 4830.004512854672, 4934.219616996083, 5015.722550394296, + 5070.259687451462, 5098.230459107676, 5103.418617279219, + 5092.393026665544, 5071.4302795054255, 5044.926683157962, + 5014.441582673538, 4978.568373669155, 4934.129552095032, + 4877.927719806859, 4808.453062655874, 4727.2550532969535, + 4638.745559435518, 4549.57334956045, 4466.777685937426, 4395.989547171342, + 4339.7531999813855, 4297.5321773051155, 4265.9434143765875, + 4240.428428119786, 4217.410721208539, 4195.6223774172495, + 4176.853869575136, 4165.48106919771, 4166.677360716371, 4184.598937487023, + 4220.202200616156, 4270.617317828273, 4330.247072144078, + 4392.665538970288, 4454.3964586683505, 4518.402935182106, + 4596.465112160911, 4710.009138139056, 4887.585363022826, + 5161.137367379317, 5560.664317723436, 6105.596308593205, 6804.59563126498 + ], + "flow:J68:branch51_seg2": [ + 0.4231527153948997, 0.5517962950733092, 0.6994653680001892, + 0.8607574066220784, 1.0288746245610676, 1.196924025806243, + 1.3587370426738277, 1.5095611173393522, 1.646055751223704, + 1.7667836266597463, 1.8713052210081595, 1.9598008986640152, + 2.0328606855507143, 2.090668570003168, 2.1333149108785245, + 2.1607452490248393, 2.1728610818604515, 2.1701645902653066, + 2.1534863160383653, 2.124285624759191, 2.0844827152321153, + 2.035998936768064, 1.9807387781816057, 1.920248347385831, + 1.8556951858889985, 1.7880149314171916, 1.7180398040272238, + 1.6467326636166726, 1.5752702437804609, 1.5049938116070696, + 1.4371405516835722, 1.3725707984423228, 1.3113616649635453, + 1.2525847386360107, 1.1943655821414256, 1.1340831492256715, + 1.0689089231681577, 0.996401338603813, 0.9152455952048457, + 0.8254607694741415, 0.7287625513883386, 0.628245214894523, + 0.5278734817356, 0.4318398934355602, 0.3439481560182997, + 0.266979990520017, 0.20239137188018613, 0.1506152795772743, + 0.11090705709954411, 0.08206665077270762, 0.06278319482708777, + 0.051760450723807715, 0.04810154319540547, 0.05101063796859689, + 0.05967987665670413, 0.07315228760630198, 0.09003780336819465, + 0.10862772842881126, 0.12702710273461526, 0.1434483468481067, + 0.15646163998983398, 0.1653448795942894, 0.17006484111059086, + 0.17118056177576738, 0.16968496209546818, 0.16655363785301253, + 0.16251372360774832, 0.15785366439273507, 0.15239348064286576, + 0.14566090000422274, 0.13714482419944973, 0.12658135895413125, + 0.11415973861634233, 0.10051780152659362, 0.08666564890080036, + 0.073699427718505, 0.06252114502758727, 0.053576999053175735, + 0.04683691365247497, 0.04180364316705496, 0.03778185899374798, + 0.03419255489813567, 0.03079377638913891, 0.02781752410276799, + 0.025909609734865224, 0.025872520293858458, 0.02838007917792698, + 0.033629525958725544, 0.041246551486821686, 0.05038780404269569, + 0.06004847897236199, 0.06962635356744035, 0.07946267611279789, + 0.09123844651106118, 0.10813349077381963, 0.13446516740236888, + 0.17521104384907668, 0.23504102434688756, 0.3171522099397143, + 0.4231527153948997 + ], + "pressure:J68:branch51_seg2": [ + 6804.59563126498, 7648.473265615811, 8611.96550255063, 9659.372227978776, + 10746.46253790404, 11828.812520365538, 12867.237281415628, + 13832.372636172726, 14703.446671534273, 15472.024798359384, + 16136.330808230297, 16697.311318741, 17158.95234906783, + 17522.396257638648, 17787.773331474404, 17955.116982653784, + 18023.642003777528, 17996.841148954376, 17880.817189068443, + 17684.92004586942, 17421.875768657326, 17104.134486855335, + 16743.70013760139, 16350.425393112611, 15931.584669269807, + 15493.089131884475, 15040.355427001228, 14579.702504365927, + 14118.854809856895, 13666.532926911854, 13230.56654801063, + 12816.090322240276, 12423.096529106226, 12044.868268759483, + 11668.752269768118, 11277.5054471558, 10853.01897356152, + 10379.846561619112, 9850.422612827933, 9265.961244124734, + 8638.339567103745, 7988.440491350051, 7342.1907219361865, + 6726.5834318400475, 6165.513939562981, 5676.475152933118, + 5267.871379107734, 4941.71232527491, 4692.932429058347, + 4513.3002397972905, 4394.526929636063, 4328.400524413766, + 4309.189876419218, 4331.946280947575, 4391.292555216006, + 4480.889673795017, 4591.545488354354, 4712.005932736084, + 4830.004512854672, 4934.219616996083, 5015.722550394296, + 5070.259687451462, 5098.230459107676, 5103.418617279219, + 5092.393026665544, 5071.4302795054255, 5044.926683157962, + 5014.441582673538, 4978.568373669155, 4934.129552095032, + 4877.927719806859, 4808.453062655874, 4727.2550532969535, + 4638.745559435518, 4549.57334956045, 4466.777685937426, 4395.989547171342, + 4339.7531999813855, 4297.5321773051155, 4265.9434143765875, + 4240.428428119786, 4217.410721208539, 4195.6223774172495, + 4176.853869575136, 4165.48106919771, 4166.677360716371, 4184.598937487023, + 4220.202200616156, 4270.617317828273, 4330.247072144078, + 4392.665538970288, 4454.3964586683505, 4518.402935182106, + 4596.465112160911, 4710.009138139056, 4887.585363022826, + 5161.137367379317, 5560.664317723436, 6105.596308593205, 6804.59563126498 + ], + "flow:branch60_seg0:J69": [ + 0.8195195373998002, 1.0512186954741756, 1.3004160682991648, + 1.5542324712770446, 1.7992450413978478, 2.0245402355615307, + 2.2227243366456726, 2.3905722225164663, 2.5274931904804805, + 2.636359836257115, 2.7205232444917486, 2.7827252804159066, + 2.825556166620141, 2.849444148853357, 2.854348765607279, + 2.840153651597298, 2.806574148302678, 2.7553051178111483, + 2.6885598058725706, 2.6095338026296218, 2.5221218925700284, + 2.4293276565983843, 2.3336698534306315, 2.2365994432108387, + 2.1387073947554343, 2.0404375365385152, 1.9424027350646988, + 1.8458598586138384, 1.7526741117297289, 1.6649444621743454, + 1.5841621304726459, 1.5106220595055297, 1.4427055311347905, + 1.3767008357354562, 1.3075217131033832, 1.2294568829529442, + 1.137646506168864, 1.029142359320488, 0.9044041552079473, + 0.7667326433782398, 0.622543422094164, 0.4799973945098989, + 0.3473670217532025, 0.23169062860292022, 0.13774190666392003, + 0.0674265537039606, 0.019456165157292805, -0.008701379554168505, + -0.02116583003361869, -0.02176944522930135, -0.01324057150848661, + 0.0023097529130255232, 0.024093881919868845, 0.05146839170555687, + 0.08341035403801683, 0.11839896894908887, 0.15381195165007566, + 0.18654983591347105, 0.21354120917081934, 0.23249520823433772, + 0.24226042863024794, 0.24343849389443875, 0.23790124181782604, + 0.22812747909651132, 0.21687169904513104, 0.20596951121075463, + 0.19612716646849615, 0.18687245534156527, 0.1768454273129665, + 0.16449733551429085, 0.1487728236889513, 0.12960150869209838, + 0.10815405307258061, 0.0864020676811437, 0.06671201010761137, + 0.051046410908864054, 0.040424806138728876, 0.03454622658798341, + 0.03215964157900501, 0.03137540202289928, 0.030447841947103885, + 0.028515231465709424, 0.02583268085165106, 0.023741739369161977, + 0.0241909427100507, 0.028894833136075798, 0.03872423054347996, + 0.05309247842149585, 0.07014686856825776, 0.08749009840014946, + 0.10307805439458134, 0.11661448116128018, 0.13046594632710357, + 0.14997037399140975, 0.1831406352978661, 0.23909568720925226, + 0.3265791349734437, 0.45212165943967697, 0.6171478394752603, + 0.8195195373998002 + ], + "pressure:branch60_seg0:J69": [ + 9030.904794930388, 10382.573230221069, 11806.125297326973, + 13229.097345519302, 14579.951180892233, 15801.717151484947, + 16859.318597993, 17744.270715946543, 18458.10238689456, + 19017.847705752112, 19447.951877592885, 19758.18950185387, + 19961.641429442145, 20060.152798906198, 20048.930144737264, + 19931.422835323436, 19704.985168716627, 19381.093353639055, + 18978.129662344865, 18511.45422435101, 18004.703613723625, + 17474.15778805896, 16930.610086551787, 16381.597974054803, + 15828.867478382472, 15274.780637960095, 14724.093158831498, + 14185.01086884087, 13668.951439812208, 13187.614129050315, + 12747.717003410418, 12347.037260267576, 11973.284229713741, + 11601.295267661033, 11200.25231311486, 10738.2233899116, + 10191.592281393254, 9547.559772150707, 8815.98012716277, + 8022.789528515527, 7206.866618177916, 6417.558730072133, + 5700.202476000404, 5090.555573117773, 4607.936018875786, 4260.5050055361, + 4034.018220379458, 3910.3996673413403, 3868.6651048521417, + 3885.2319418488887, 3948.582513640871, 4049.2873351717703, + 4182.612650659398, 4346.752981671123, 4533.8815237401805, + 4733.741825005248, 4930.626567381743, 5106.002529480688, + 5243.375629370178, 5332.35535896096, 5369.25919004788, 5359.729702244169, + 5318.027181969869, 5257.616471209797, 5193.333046645574, + 5134.121094361696, 5080.943025966359, 5029.000837154631, + 4969.6767435034635, 4894.40957328208, 4799.195167274961, + 4685.456381101238, 4562.1885450923955, 4441.9498802444905, + 4337.689384669907, 4259.034312372537, 4209.59931928772, 4185.246399198791, + 4176.786964290803, 4173.828144504916, 4167.186445007464, + 4154.105200587776, 4138.564575986708, 4129.787538931683, + 4139.214900386363, 4175.253464906903, 4240.345135829557, + 4328.8099758433455, 4427.3831682231385, 4522.871357697852, + 4605.896490531435, 4679.044422222944, 4761.505250534493, + 4888.980776386736, 5110.690985468264, 5479.72458509745, 6038.881760567466, + 6822.787797136465, 7828.6589565406375, 9030.904794930388 + ], + "flow:J69:branch60_seg1": [ + 0.8195195373998002, 1.0512186954741756, 1.3004160682991648, + 1.5542324712770446, 1.7992450413978478, 2.0245402355615307, + 2.2227243366456726, 2.3905722225164663, 2.5274931904804805, + 2.636359836257115, 2.7205232444917486, 2.7827252804159066, + 2.825556166620141, 2.849444148853357, 2.854348765607279, + 2.840153651597298, 2.806574148302678, 2.7553051178111483, + 2.6885598058725706, 2.6095338026296218, 2.5221218925700284, + 2.4293276565983843, 2.3336698534306315, 2.2365994432108387, + 2.1387073947554343, 2.0404375365385152, 1.9424027350646988, + 1.8458598586138384, 1.7526741117297289, 1.6649444621743454, + 1.5841621304726459, 1.5106220595055297, 1.4427055311347905, + 1.3767008357354562, 1.3075217131033832, 1.2294568829529442, + 1.137646506168864, 1.029142359320488, 0.9044041552079473, + 0.7667326433782398, 0.622543422094164, 0.4799973945098989, + 0.3473670217532025, 0.23169062860292022, 0.13774190666392003, + 0.0674265537039606, 0.019456165157292805, -0.008701379554168505, + -0.02116583003361869, -0.02176944522930135, -0.01324057150848661, + 0.0023097529130255232, 0.024093881919868845, 0.05146839170555687, + 0.08341035403801683, 0.11839896894908887, 0.15381195165007566, + 0.18654983591347105, 0.21354120917081934, 0.23249520823433772, + 0.24226042863024794, 0.24343849389443875, 0.23790124181782604, + 0.22812747909651132, 0.21687169904513104, 0.20596951121075463, + 0.19612716646849615, 0.18687245534156527, 0.1768454273129665, + 0.16449733551429085, 0.1487728236889513, 0.12960150869209838, + 0.10815405307258061, 0.0864020676811437, 0.06671201010761137, + 0.051046410908864054, 0.040424806138728876, 0.03454622658798341, + 0.03215964157900501, 0.03137540202289928, 0.030447841947103885, + 0.028515231465709424, 0.02583268085165106, 0.023741739369161977, + 0.0241909427100507, 0.028894833136075798, 0.03872423054347996, + 0.05309247842149585, 0.07014686856825776, 0.08749009840014946, + 0.10307805439458134, 0.11661448116128018, 0.13046594632710357, + 0.14997037399140975, 0.1831406352978661, 0.23909568720925226, + 0.3265791349734437, 0.45212165943967697, 0.6171478394752603, + 0.8195195373998002 + ], + "pressure:J69:branch60_seg1": [ + 9030.904794930388, 10382.573230221069, 11806.125297326973, + 13229.097345519302, 14579.951180892233, 15801.717151484947, + 16859.318597993, 17744.270715946543, 18458.10238689456, + 19017.847705752112, 19447.951877592885, 19758.18950185387, + 19961.641429442145, 20060.152798906198, 20048.930144737264, + 19931.422835323436, 19704.985168716627, 19381.093353639055, + 18978.129662344865, 18511.45422435101, 18004.703613723625, + 17474.15778805896, 16930.610086551787, 16381.597974054803, + 15828.867478382472, 15274.780637960095, 14724.093158831498, + 14185.01086884087, 13668.951439812208, 13187.614129050315, + 12747.717003410418, 12347.037260267576, 11973.284229713741, + 11601.295267661033, 11200.25231311486, 10738.2233899116, + 10191.592281393254, 9547.559772150707, 8815.98012716277, + 8022.789528515527, 7206.866618177916, 6417.558730072133, + 5700.202476000404, 5090.555573117773, 4607.936018875786, 4260.5050055361, + 4034.018220379458, 3910.3996673413403, 3868.6651048521417, + 3885.2319418488887, 3948.582513640871, 4049.2873351717703, + 4182.612650659398, 4346.752981671123, 4533.8815237401805, + 4733.741825005248, 4930.626567381743, 5106.002529480688, + 5243.375629370178, 5332.35535896096, 5369.25919004788, 5359.729702244169, + 5318.027181969869, 5257.616471209797, 5193.333046645574, + 5134.121094361696, 5080.943025966359, 5029.000837154631, + 4969.6767435034635, 4894.40957328208, 4799.195167274961, + 4685.456381101238, 4562.1885450923955, 4441.9498802444905, + 4337.689384669907, 4259.034312372537, 4209.59931928772, 4185.246399198791, + 4176.786964290803, 4173.828144504916, 4167.186445007464, + 4154.105200587776, 4138.564575986708, 4129.787538931683, + 4139.214900386363, 4175.253464906903, 4240.345135829557, + 4328.8099758433455, 4427.3831682231385, 4522.871357697852, + 4605.896490531435, 4679.044422222944, 4761.505250534493, + 4888.980776386736, 5110.690985468264, 5479.72458509745, 6038.881760567466, + 6822.787797136465, 7828.6589565406375, 9030.904794930388 + ], + "flow:branch60_seg1:J70": [ + 0.8183748712279572, 1.049975789129666, 1.2991355512330833, + 1.5529938590358716, 1.7981007336492951, 2.0235267394953302, + 2.2218624593343135, 2.3898747884070466, 2.526929710838574, + 2.6359251651848794, 2.7202005119487644, 2.782495481173353, + 2.8254250682077324, 2.849403937256174, 2.8544050185854046, + 2.840307166021789, 2.8068168965017515, 2.755631879202652, + 2.6889478288023203, 2.6099663475058925, 2.522584964971351, + 2.4298046112555634, 2.3341544454302663, 2.2370883019239924, + 2.1391980823030776, 2.0409284956885547, 1.942887534305005, + 1.8463292734292966, 1.7531172800520223, 1.665353702659943, + 1.5845325527537548, 1.5109624050801276, 1.4430330226806036, + 1.3770387324625215, 1.3079003090999133, 1.2299028619257661, + 1.1381754464182972, 1.0297542478245796, 0.9050884825622632, + 0.7674540910764395, 0.6232632365548418, 0.48067499329105945, + 0.34796269174190725, 0.23217538548302613, 0.13811269743022211, + 0.06768049504953, 0.01960475222512126, -0.008630545793139923, + -0.021158321801093574, -0.02180853953631599, -0.013313288520004695, + 0.0022024370220281348, 0.023960384076708283, 0.05131158991521597, + 0.0832344428711082, 0.11822011286149163, 0.15364398161510875, + 0.1864084862369782, 0.21343928399911044, 0.23244111197730952, + 0.24224887410671878, 0.24346328494135844, 0.23794971989529118, + 0.22818389575937573, 0.2169274741987312, 0.20601953133746392, + 0.1961725813352845, 0.18692043663906116, 0.17690418960594348, + 0.1645734617799495, 0.14886639384178776, 0.12970845146238355, + 0.10826507899555611, 0.08650382608059233, 0.06679392643266725, + 0.051103009264911875, 0.040456785612074435, 0.03455788121205608, + 0.03216303943700641, 0.03137924320673764, 0.030456511398061187, + 0.02852901177682204, 0.025845260920511808, 0.02374297588859602, + 0.024171712804908374, 0.028848863802087902, 0.03865487363101501, + 0.05300724621833049, 0.07005816870525998, 0.08741022656170584, + 0.10301030462742136, 0.11654941711400169, 0.1303788718306229, + 0.14982332058489145, 0.18288686516049107, 0.23868405396003686, + 0.32598647864066377, 0.451326056410727, 0.6161488449475524, + 0.8183748712279572 + ], + "pressure:branch60_seg1:J70": [ + 8676.905893750822, 9971.221441724347, 11351.048569237302, + 12745.602446288727, 14082.5105390617, 15303.510303415307, + 16370.579069064508, 17269.996905846205, 18000.271534701773, + 18577.790373171352, 19023.23420613025, 19349.348045224062, + 19569.94712158051, 19687.066893755396, 19698.707613984443, + 19605.893642310337, 19406.558531963216, 19110.82102063941, + 18733.16992384561, 18290.103301041214, 17803.734177460487, + 17290.305984752085, 16762.32485446339, 16227.533169821776, + 15688.5356563269, 15147.719345382438, 14608.96250122562, + 14079.624006473734, 13570.332036849057, 13092.612294783617, + 12654.006543672964, 12254.63737782085, 11884.358387346909, + 11521.035626424271, 11135.826853820947, 10697.363261637633, + 10180.356493233425, 9570.004173551539, 8871.740186400206, + 8106.562585619353, 7310.8847710857435, 6531.023752076116, + 5812.048230018777, 5191.227944294143, 4691.945401456923, + 4323.680706091857, 4076.5996655387107, 3935.270536995319, + 3877.858890891554, 3882.4212176330198, 3935.4810510741286, + 4026.3372379825632, 4150.571454624988, 4305.35405673308, + 4484.205142690941, 4678.1258803121, 4872.266159551815, 5049.120435309301, + 5192.075293093357, 5289.521471125292, 5336.169486083916, + 5336.260492790813, 5301.594125747496, 5245.597342975481, + 5183.214314359365, 5124.011069161415, 5070.679284756312, + 5019.778760932098, 4963.430931356242, 4893.158137528004, + 4803.901196164844, 4695.990991097293, 4576.8262226573, 4457.8442854433915, + 4351.944157641043, 4269.388090912356, 4214.961716750196, + 4186.030560150782, 4174.868811242908, 4171.147330387584, + 4165.485383566933, 4153.966812878852, 4139.000061250071, + 4128.635951336983, 4133.811419736214, 4163.476014296349, + 4221.483995631775, 4303.650753342292, 4398.635502822609, + 4493.356188924918, 4577.368960002549, 4650.7051410673275, + 4728.712063630656, 4843.030674824594, 5039.426414222807, + 5368.823304944472, 5876.891365857387, 6598.682820049302, + 7537.728660752901, 8676.905893750822 + ], + "flow:J70:branch60_seg2": [ + 0.8183748712279572, 1.049975789129666, 1.2991355512330833, + 1.5529938590358716, 1.7981007336492951, 2.0235267394953302, + 2.2218624593343135, 2.3898747884070466, 2.526929710838574, + 2.6359251651848794, 2.7202005119487644, 2.782495481173353, + 2.8254250682077324, 2.849403937256174, 2.8544050185854046, + 2.840307166021789, 2.8068168965017515, 2.755631879202652, + 2.6889478288023203, 2.6099663475058925, 2.522584964971351, + 2.4298046112555634, 2.3341544454302663, 2.2370883019239924, + 2.1391980823030776, 2.0409284956885547, 1.942887534305005, + 1.8463292734292966, 1.7531172800520223, 1.665353702659943, + 1.5845325527537548, 1.5109624050801276, 1.4430330226806036, + 1.3770387324625215, 1.3079003090999133, 1.2299028619257661, + 1.1381754464182972, 1.0297542478245796, 0.9050884825622632, + 0.7674540910764395, 0.6232632365548418, 0.48067499329105945, + 0.34796269174190725, 0.23217538548302613, 0.13811269743022211, + 0.06768049504953, 0.01960475222512126, -0.008630545793139923, + -0.021158321801093574, -0.02180853953631599, -0.013313288520004695, + 0.0022024370220281348, 0.023960384076708283, 0.05131158991521597, + 0.0832344428711082, 0.11822011286149163, 0.15364398161510875, + 0.1864084862369782, 0.21343928399911044, 0.23244111197730952, + 0.24224887410671878, 0.24346328494135844, 0.23794971989529118, + 0.22818389575937573, 0.2169274741987312, 0.20601953133746392, + 0.1961725813352845, 0.18692043663906116, 0.17690418960594348, + 0.1645734617799495, 0.14886639384178776, 0.12970845146238355, + 0.10826507899555611, 0.08650382608059233, 0.06679392643266725, + 0.051103009264911875, 0.040456785612074435, 0.03455788121205608, + 0.03216303943700641, 0.03137924320673764, 0.030456511398061187, + 0.02852901177682204, 0.025845260920511808, 0.02374297588859602, + 0.024171712804908374, 0.028848863802087902, 0.03865487363101501, + 0.05300724621833049, 0.07005816870525998, 0.08741022656170584, + 0.10301030462742136, 0.11654941711400169, 0.1303788718306229, + 0.14982332058489145, 0.18288686516049107, 0.23868405396003686, + 0.32598647864066377, 0.451326056410727, 0.6161488449475524, + 0.8183748712279572 + ], + "pressure:J70:branch60_seg2": [ + 8676.905893750822, 9971.221441724347, 11351.048569237302, + 12745.602446288727, 14082.5105390617, 15303.510303415307, + 16370.579069064508, 17269.996905846205, 18000.271534701773, + 18577.790373171352, 19023.23420613025, 19349.348045224062, + 19569.94712158051, 19687.066893755396, 19698.707613984443, + 19605.893642310337, 19406.558531963216, 19110.82102063941, + 18733.16992384561, 18290.103301041214, 17803.734177460487, + 17290.305984752085, 16762.32485446339, 16227.533169821776, + 15688.5356563269, 15147.719345382438, 14608.96250122562, + 14079.624006473734, 13570.332036849057, 13092.612294783617, + 12654.006543672964, 12254.63737782085, 11884.358387346909, + 11521.035626424271, 11135.826853820947, 10697.363261637633, + 10180.356493233425, 9570.004173551539, 8871.740186400206, + 8106.562585619353, 7310.8847710857435, 6531.023752076116, + 5812.048230018777, 5191.227944294143, 4691.945401456923, + 4323.680706091857, 4076.5996655387107, 3935.270536995319, + 3877.858890891554, 3882.4212176330198, 3935.4810510741286, + 4026.3372379825632, 4150.571454624988, 4305.35405673308, + 4484.205142690941, 4678.1258803121, 4872.266159551815, 5049.120435309301, + 5192.075293093357, 5289.521471125292, 5336.169486083916, + 5336.260492790813, 5301.594125747496, 5245.597342975481, + 5183.214314359365, 5124.011069161415, 5070.679284756312, + 5019.778760932098, 4963.430931356242, 4893.158137528004, + 4803.901196164844, 4695.990991097293, 4576.8262226573, 4457.8442854433915, + 4351.944157641043, 4269.388090912356, 4214.961716750196, + 4186.030560150782, 4174.868811242908, 4171.147330387584, + 4165.485383566933, 4153.966812878852, 4139.000061250071, + 4128.635951336983, 4133.811419736214, 4163.476014296349, + 4221.483995631775, 4303.650753342292, 4398.635502822609, + 4493.356188924918, 4577.368960002549, 4650.7051410673275, + 4728.712063630656, 4843.030674824594, 5039.426414222807, + 5368.823304944472, 5876.891365857387, 6598.682820049302, + 7537.728660752901, 8676.905893750822 + ], + "flow:branch61_seg0:J71": [ + 1.448598603495338, 1.880150037698941, 2.3597062003536347, + 2.8642244589863375, 3.3680578579209577, 3.8476437290080874, + 4.284381341526333, 4.666699801981257, 4.9890449159824835, + 5.252593508895272, 5.461680073407669, 5.621327199268599, + 5.736734176319732, 5.8105372664959285, 5.843948199722315, + 5.837485381355622, 5.791139830138325, 5.707131853950149, + 5.589153023210898, 5.442645788486709, 5.274494012443867, + 5.091127574307878, 4.898220928448698, 4.699821332995652, + 4.498343211762722, 4.2953673017504475, 4.09234868220393, + 3.891465232072606, 3.695871260223065, 3.509350975780836, + 3.335165605548599, 3.1748797151398405, 3.0270350121998812, + 2.886459840177292, 2.7448500167827627, 2.591904712054542, + 2.4176470663832657, 2.214514727208501, 1.980111279933704, + 1.7175196172188805, 1.4358226969494123, 1.1485525145404578, + 0.871194116304557, 0.6185339437237788, 0.4022611445239007, + 0.2294459532144374, 0.10149443222731083, 0.015924342556128304, + -0.033203060270146675, -0.05283324761804049, -0.04912307232034398, + -0.027142726613825444, 0.010002477279657071, 0.06009678930189802, + 0.1209091821583015, 0.18956843844171367, 0.26163702629853436, + 0.3315651680445086, 0.3933962466575605, 0.4420022145443752, + 0.4739643039655091, 0.4886880255491486, 0.4882126015699063, + 0.4763453775311305, 0.4579427575880679, 0.4371488771271761, + 0.4164978556647324, 0.3964533524097272, 0.37560388988244164, + 0.3515793214268436, 0.32223143481097705, 0.28667067934315343, + 0.24597924249718692, 0.20298616074171072, 0.1616694561190792, + 0.12594740867788093, 0.0985829859052169, 0.0803071742065737, + 0.06989828267727691, 0.06459579384735537, 0.061245333195787385, + 0.05758291434384552, 0.05303294941293771, 0.048991712182843636, + 0.048344103276656544, 0.054255905134450826, 0.06898690622654076, + 0.09267217365840273, 0.1231051352703537, 0.1565348793285957, + 0.1890637161515729, 0.21890256060726576, 0.24833805699438882, + 0.2848805865629577, 0.341350403199951, 0.4340094539163406, + 0.5799132714914599, 0.7937500732646866, 1.0832134023649467, + 1.448598603495338 + ], + "pressure:branch61_seg0:J71": [ + 9081.303539859888, 10438.628974115358, 11867.994062738402, + 13298.396365727109, 14660.461076913785, 15896.174127690212, + 16968.63168858065, 17870.12047170062, 18600.047568632635, + 19170.93037557263, 19610.076344560915, 19924.72045642736, + 20127.43620974461, 20222.794102027896, 20204.718962734023, + 20079.684200424665, 19845.652669575247, 19512.692982406654, + 19101.86132953084, 18626.674866862384, 18110.55263559637, + 17570.457199532153, 17016.143693576076, 16456.141789690933, + 15892.683781404194, 15328.51840805143, 14769.052872518567, + 14222.53749351635, 13700.170012144945, 13213.317519533875, + 12768.294341892179, 12362.009891478985, 11982.611624495925, + 11604.736513020309, 11197.88270203831, 10730.778872680705, + 10180.78511260951, 9534.58247997527, 8801.69709099238, 8008.549189764999, + 7191.8308262749315, 6400.694465386535, 5680.087281686848, + 5065.522782350111, 4575.756471042958, 4221.088658279386, + 3987.995345863948, 3858.4837450561436, 3814.5486234802274, + 3831.2254642465405, 3897.503543989557, 4003.893752920083, + 4143.766516835628, 4315.466012014207, 4509.695045353188, + 4715.680862838935, 4918.169348707156, 5098.422788299854, + 5240.172482002232, 5333.632148603645, 5375.181656800968, + 5369.483344186211, 5331.52612940152, 5273.8759282464525, + 5210.522502381832, 5150.880959496543, 5095.842166218134, + 5041.004536061461, 4978.498813583799, 4900.307280100177, + 4803.006248718836, 4688.0135543246815, 4564.192385072234, + 4443.84931769716, 4339.262728982557, 4259.692561968572, 4208.751026282263, + 4182.453590140437, 4171.740286331132, 4167.191996252928, + 4159.797565354294, 4146.981666570383, 4132.792914595376, + 4126.013693868244, 4137.534085650585, 4175.162355226912, 4240.93167311988, + 4329.5680602224975, 4427.679734632759, 4522.880645740805, + 4606.7803305805965, 4682.3917369278115, 4769.172798383284, + 4902.676915229794, 5131.493464406305, 5508.563901616092, + 6074.299042329528, 6864.438916290588, 7875.960618969564, 9081.303539859888 + ], + "flow:J71:branch61_seg1": [ + 1.448598603495338, 1.880150037698941, 2.3597062003536347, + 2.8642244589863375, 3.3680578579209577, 3.8476437290080874, + 4.284381341526333, 4.666699801981257, 4.9890449159824835, + 5.252593508895272, 5.461680073407669, 5.621327199268599, + 5.736734176319732, 5.8105372664959285, 5.843948199722315, + 5.837485381355622, 5.791139830138325, 5.707131853950149, + 5.589153023210898, 5.442645788486709, 5.274494012443867, + 5.091127574307878, 4.898220928448698, 4.699821332995652, + 4.498343211762722, 4.2953673017504475, 4.09234868220393, + 3.891465232072606, 3.695871260223065, 3.509350975780836, + 3.335165605548599, 3.1748797151398405, 3.0270350121998812, + 2.886459840177292, 2.7448500167827627, 2.591904712054542, + 2.4176470663832657, 2.214514727208501, 1.980111279933704, + 1.7175196172188805, 1.4358226969494123, 1.1485525145404578, + 0.871194116304557, 0.6185339437237788, 0.4022611445239007, + 0.2294459532144374, 0.10149443222731083, 0.015924342556128304, + -0.033203060270146675, -0.05283324761804049, -0.04912307232034398, + -0.027142726613825444, 0.010002477279657071, 0.06009678930189802, + 0.1209091821583015, 0.18956843844171367, 0.26163702629853436, + 0.3315651680445086, 0.3933962466575605, 0.4420022145443752, + 0.4739643039655091, 0.4886880255491486, 0.4882126015699063, + 0.4763453775311305, 0.4579427575880679, 0.4371488771271761, + 0.4164978556647324, 0.3964533524097272, 0.37560388988244164, + 0.3515793214268436, 0.32223143481097705, 0.28667067934315343, + 0.24597924249718692, 0.20298616074171072, 0.1616694561190792, + 0.12594740867788093, 0.0985829859052169, 0.0803071742065737, + 0.06989828267727691, 0.06459579384735537, 0.061245333195787385, + 0.05758291434384552, 0.05303294941293771, 0.048991712182843636, + 0.048344103276656544, 0.054255905134450826, 0.06898690622654076, + 0.09267217365840273, 0.1231051352703537, 0.1565348793285957, + 0.1890637161515729, 0.21890256060726576, 0.24833805699438882, + 0.2848805865629577, 0.341350403199951, 0.4340094539163406, + 0.5799132714914599, 0.7937500732646866, 1.0832134023649467, + 1.448598603495338 + ], + "pressure:J71:branch61_seg1": [ + 9081.303539859888, 10438.628974115358, 11867.994062738402, + 13298.396365727109, 14660.461076913785, 15896.174127690212, + 16968.63168858065, 17870.12047170062, 18600.047568632635, + 19170.93037557263, 19610.076344560915, 19924.72045642736, + 20127.43620974461, 20222.794102027896, 20204.718962734023, + 20079.684200424665, 19845.652669575247, 19512.692982406654, + 19101.86132953084, 18626.674866862384, 18110.55263559637, + 17570.457199532153, 17016.143693576076, 16456.141789690933, + 15892.683781404194, 15328.51840805143, 14769.052872518567, + 14222.53749351635, 13700.170012144945, 13213.317519533875, + 12768.294341892179, 12362.009891478985, 11982.611624495925, + 11604.736513020309, 11197.88270203831, 10730.778872680705, + 10180.78511260951, 9534.58247997527, 8801.69709099238, 8008.549189764999, + 7191.8308262749315, 6400.694465386535, 5680.087281686848, + 5065.522782350111, 4575.756471042958, 4221.088658279386, + 3987.995345863948, 3858.4837450561436, 3814.5486234802274, + 3831.2254642465405, 3897.503543989557, 4003.893752920083, + 4143.766516835628, 4315.466012014207, 4509.695045353188, + 4715.680862838935, 4918.169348707156, 5098.422788299854, + 5240.172482002232, 5333.632148603645, 5375.181656800968, + 5369.483344186211, 5331.52612940152, 5273.8759282464525, + 5210.522502381832, 5150.880959496543, 5095.842166218134, + 5041.004536061461, 4978.498813583799, 4900.307280100177, + 4803.006248718836, 4688.0135543246815, 4564.192385072234, + 4443.84931769716, 4339.262728982557, 4259.692561968572, 4208.751026282263, + 4182.453590140437, 4171.740286331132, 4167.191996252928, + 4159.797565354294, 4146.981666570383, 4132.792914595376, + 4126.013693868244, 4137.534085650585, 4175.162355226912, 4240.93167311988, + 4329.5680602224975, 4427.679734632759, 4522.880645740805, + 4606.7803305805965, 4682.3917369278115, 4769.172798383284, + 4902.676915229794, 5131.493464406305, 5508.563901616092, + 6074.299042329528, 6864.438916290588, 7875.960618969564, 9081.303539859888 + ], + "flow:branch61_seg1:J72": [ + 1.4464160965380066, 1.87779061340416, 2.357267114283864, + 2.8618624938379496, 3.3658741463487076, 3.8457010280567596, + 4.28272063680425, 4.665355228127055, 4.987954509531106, 5.251753405040018, + 5.4610604812247034, 5.620887064309136, 5.736489105475496, + 5.810471154915806, 5.844066997486407, 5.837791369981977, + 5.791610843223292, 5.70776631495548, 5.589908203079037, 5.443479078633186, + 5.2753892545561945, 5.092050336620405, 4.899157766982022, + 4.700767353506664, 4.499290543551256, 4.296313294520298, + 4.093280868414783, 3.892365505971071, 3.69671916923996, + 3.5101344341039002, 3.3358742903096767, 3.175531913116489, + 3.027664750582543, 2.8871093104141448, 2.745575058917199, + 2.5927570188532787, 2.418652623590649, 2.215673315245801, + 1.9814066343263406, 1.7188853295440119, 1.4371834927802185, + 1.149837640957259, 0.8723269829356156, 0.6194564643936127, + 0.40296813120395125, 0.22994054223482108, 0.10178078225158117, + 0.016061092461544364, -0.03318789261975039, -0.05291465046156945, + -0.0492675494471852, -0.027357464195641876, 0.009735252802622333, + 0.059788400113954206, 0.12056498347225018, 0.18922041121319746, + 0.26131181507811224, 0.33129056710998483, 0.3931965506419505, + 0.44189360096125746, 0.4739354201094057, 0.4887286048224151, + 0.48829980732338835, 0.4764480023795738, 0.4580472064028945, + 0.4372459707288364, 0.4165877826324595, 0.39654898770618247, + 0.37572014611412075, 0.3517278191661559, 0.3224117860495129, + 0.2868733587819138, 0.24618962127625746, 0.20317889002032216, + 0.1618246265995503, 0.12605515514265558, 0.09864647803332272, + 0.08033171879211053, 0.06990680957193023, 0.06460531050349502, + 0.06126222612010959, 0.05760738202983388, 0.0530537890027613, + 0.04899048640979245, 0.0483044436327307, 0.05416673172102736, + 0.06885529696560021, 0.09251173334718059, 0.12293784042282363, + 0.15638413189147604, 0.18893361037763493, 0.21877418048006791, + 0.24816447457552215, 0.28459110151355954, 0.34085844462188725, + 0.4332158835006777, 0.5787740409339938, 0.7922440677032266, + 1.0813087612930241, 1.4464160965380066 + ], + "pressure:branch61_seg1:J72": [ + 8653.393625214729, 9936.504671697901, 11308.394956582253, + 12702.498935759846, 14050.078305043324, 15291.46710359886, + 16385.751414781353, 17319.137439411566, 18085.387352989917, + 18693.76821679484, 19167.574364727927, 19515.27226829066, + 19750.018292159137, 19877.243392342723, 19893.35016907154, + 19803.616808132294, 19606.644106898806, 19310.731014554258, + 18933.329153434654, 18488.16292133454, 17997.173743693853, + 17477.08883879576, 16939.29003981805, 16393.06713612793, + 15841.899864632062, 15289.0072241432, 14739.19861165131, + 14199.872758070951, 13681.26524912809, 13194.39932388541, + 12746.231074762076, 12336.10046622679, 11954.940238369953, + 11580.991477231708, 11186.672574087805, 10742.109543783203, + 10223.525874386705, 9615.324843966126, 8921.877101627822, + 8163.684916324696, 7373.007986730097, 6594.855913611693, + 5872.664255595453, 5242.948448191297, 4728.656203180559, + 4342.608084136442, 4076.461855271007, 3916.556039084127, + 3845.458865901189, 3840.122118606459, 3888.195473958332, + 3978.5529303155467, 4104.450964991928, 4263.024909533361, + 4445.697451259486, 4643.075446004823, 4841.118312803748, + 5022.318726362311, 5170.60869623456, 5275.141856554998, 5330.415850824199, + 5338.90857057938, 5312.818540480919, 5263.748324534697, 5205.24162896988, + 5147.294398632925, 5092.619713391088, 5038.66156898499, 4978.900713668302, + 4905.865963295049, 4815.3342322623585, 4707.506951390459, + 4589.357406172826, 4471.51839370503, 4365.702995806381, 4281.557723540562, + 4223.9639393981515, 4190.688751346154, 4174.704474399622, + 4167.310126290867, 4159.538482549055, 4147.769000176306, + 4134.267876590534, 4126.145268114916, 4133.247980403063, + 4163.536602508156, 4220.3681110172465, 4300.399177815903, + 4392.546662831735, 4485.271042470562, 4569.5564036324, 4645.794117130255, + 4728.998551925467, 4849.539156416129, 5051.123797794794, + 5383.236973984209, 5888.142551535132, 6602.562742193212, 7529.81702809906, + 8653.393625214729 + ], + "flow:J72:branch61_seg2": [ + 1.4464160965380066, 1.87779061340416, 2.357267114283864, + 2.8618624938379496, 3.3658741463487076, 3.8457010280567596, + 4.28272063680425, 4.665355228127055, 4.987954509531106, 5.251753405040018, + 5.4610604812247034, 5.620887064309136, 5.736489105475496, + 5.810471154915806, 5.844066997486407, 5.837791369981977, + 5.791610843223292, 5.70776631495548, 5.589908203079037, 5.443479078633186, + 5.2753892545561945, 5.092050336620405, 4.899157766982022, + 4.700767353506664, 4.499290543551256, 4.296313294520298, + 4.093280868414783, 3.892365505971071, 3.69671916923996, + 3.5101344341039002, 3.3358742903096767, 3.175531913116489, + 3.027664750582543, 2.8871093104141448, 2.745575058917199, + 2.5927570188532787, 2.418652623590649, 2.215673315245801, + 1.9814066343263406, 1.7188853295440119, 1.4371834927802185, + 1.149837640957259, 0.8723269829356156, 0.6194564643936127, + 0.40296813120395125, 0.22994054223482108, 0.10178078225158117, + 0.016061092461544364, -0.03318789261975039, -0.05291465046156945, + -0.0492675494471852, -0.027357464195641876, 0.009735252802622333, + 0.059788400113954206, 0.12056498347225018, 0.18922041121319746, + 0.26131181507811224, 0.33129056710998483, 0.3931965506419505, + 0.44189360096125746, 0.4739354201094057, 0.4887286048224151, + 0.48829980732338835, 0.4764480023795738, 0.4580472064028945, + 0.4372459707288364, 0.4165877826324595, 0.39654898770618247, + 0.37572014611412075, 0.3517278191661559, 0.3224117860495129, + 0.2868733587819138, 0.24618962127625746, 0.20317889002032216, + 0.1618246265995503, 0.12605515514265558, 0.09864647803332272, + 0.08033171879211053, 0.06990680957193023, 0.06460531050349502, + 0.06126222612010959, 0.05760738202983388, 0.0530537890027613, + 0.04899048640979245, 0.0483044436327307, 0.05416673172102736, + 0.06885529696560021, 0.09251173334718059, 0.12293784042282363, + 0.15638413189147604, 0.18893361037763493, 0.21877418048006791, + 0.24816447457552215, 0.28459110151355954, 0.34085844462188725, + 0.4332158835006777, 0.5787740409339938, 0.7922440677032266, + 1.0813087612930241, 1.4464160965380066 + ], + "pressure:J72:branch61_seg2": [ + 8653.393625214729, 9936.504671697901, 11308.394956582253, + 12702.498935759846, 14050.078305043324, 15291.46710359886, + 16385.751414781353, 17319.137439411566, 18085.387352989917, + 18693.76821679484, 19167.574364727927, 19515.27226829066, + 19750.018292159137, 19877.243392342723, 19893.35016907154, + 19803.616808132294, 19606.644106898806, 19310.731014554258, + 18933.329153434654, 18488.16292133454, 17997.173743693853, + 17477.08883879576, 16939.29003981805, 16393.06713612793, + 15841.899864632062, 15289.0072241432, 14739.19861165131, + 14199.872758070951, 13681.26524912809, 13194.39932388541, + 12746.231074762076, 12336.10046622679, 11954.940238369953, + 11580.991477231708, 11186.672574087805, 10742.109543783203, + 10223.525874386705, 9615.324843966126, 8921.877101627822, + 8163.684916324696, 7373.007986730097, 6594.855913611693, + 5872.664255595453, 5242.948448191297, 4728.656203180559, + 4342.608084136442, 4076.461855271007, 3916.556039084127, + 3845.458865901189, 3840.122118606459, 3888.195473958332, + 3978.5529303155467, 4104.450964991928, 4263.024909533361, + 4445.697451259486, 4643.075446004823, 4841.118312803748, + 5022.318726362311, 5170.60869623456, 5275.141856554998, 5330.415850824199, + 5338.90857057938, 5312.818540480919, 5263.748324534697, 5205.24162896988, + 5147.294398632925, 5092.619713391088, 5038.66156898499, 4978.900713668302, + 4905.865963295049, 4815.3342322623585, 4707.506951390459, + 4589.357406172826, 4471.51839370503, 4365.702995806381, 4281.557723540562, + 4223.9639393981515, 4190.688751346154, 4174.704474399622, + 4167.310126290867, 4159.538482549055, 4147.769000176306, + 4134.267876590534, 4126.145268114916, 4133.247980403063, + 4163.536602508156, 4220.3681110172465, 4300.399177815903, + 4392.546662831735, 4485.271042470562, 4569.5564036324, 4645.794117130255, + 4728.998551925467, 4849.539156416129, 5051.123797794794, + 5383.236973984209, 5888.142551535132, 6602.562742193212, 7529.81702809906, + 8653.393625214729 + ], + "flow:branch64_seg0:J73": [ + 0.40493572894164, 0.527777110896723, 0.6678621156471715, + 0.8196688975173843, 0.9764980369072678, 1.1316929696380074, + 1.2794549823026156, 1.4154830554250968, 1.5369554419841644, + 1.6428919747126167, 1.73325920587141, 1.8085623116413394, + 1.8695969349300186, 1.9166982655049638, 1.9500275128457767, + 1.9695740659388838, 1.9752627321812641, 1.9675964063436198, + 1.9474264245384416, 1.9161777175545784, 1.8757167433741317, + 1.827896039480433, 1.7744950497696976, 1.7169247719135512, + 1.656205603249189, 1.5931226893503565, 1.528375655106216, + 1.4628042468550033, 1.3974725842511524, 1.3336122389419842, + 1.2723525231052304, 1.2144372006089437, 1.1598359500264546, + 1.1075381857547681, 1.0556174220358723, 1.0014624832250425, + 0.9423211652357285, 0.8758817696184606, 0.8009969705918835, + 0.7178712149287946, 0.6283581096794998, 0.5356270622834168, + 0.4436293183429311, 0.3564433984791995, 0.27764955432236166, + 0.20977881865381087, 0.15400725082042574, 0.11047113579839983, + 0.07823150000567694, 0.05592998680466447, 0.04217291439330043, + 0.03566898610356719, 0.03553894342763076, 0.04105425668649987, + 0.0514884319172082, 0.06595300642962663, 0.08314674246439915, + 0.10145530911050338, 0.11909243381886658, 0.13439971524994354, + 0.1460940038065727, 0.15359829696406427, 0.15701533681408367, + 0.15701191754662444, 0.15464543470451428, 0.15091825918907883, + 0.14654465071267098, 0.1417758641111851, 0.1363900317431704, + 0.12987994937727193, 0.1217200707812147, 0.11164592873399938, + 0.09985678887717858, 0.08700512233412683, 0.07409529913405996, + 0.06219788223089503, 0.05216723885550441, 0.04439105558888126, + 0.03876946709913426, 0.03475453653157344, 0.031622978354165415, + 0.02878689946762364, 0.026020137731450045, 0.023578130697302677, + 0.022124207986187618, 0.022463184279861027, 0.025249584547280775, + 0.03064878708840796, 0.038250019885749435, 0.047186035671666404, + 0.056452601372597194, 0.06547225174773988, 0.07462403544367055, + 0.08561857101064055, 0.101623569956826, 0.1268881180435416, + 0.16620155532042405, 0.22399040730036054, 0.3031690623785069, + 0.40493572894164 + ], + "pressure:branch64_seg0:J73": [ + 7330.775973795096, 8304.463243798902, 9393.847164404187, + 10554.639092186859, 11735.246670810853, 12886.368442306899, + 13967.418764626347, 14951.956503305022, 15821.762710889247, + 16573.109895414622, 17210.094747319697, 17735.169378630966, + 18154.991527926082, 18471.605310796273, 18684.168949323746, + 18794.157569474297, 18800.327103394993, 18707.411898925806, + 18524.81536518798, 18263.008019865814, 17937.288553535935, + 17561.63761651761, 17148.217699494893, 16706.999235406052, + 16244.52913577477, 15766.179204535501, 15277.375379803067, + 14784.896513514339, 14297.289261534854, 13824.100100044, + 13373.137592089899, 12948.309283465878, 12547.322025119218, + 12159.586199846848, 11768.498823677806, 11353.198266203823, + 10893.767948924795, 10374.256718020919, 9789.946066672403, + 9146.863532069467, 8462.171999166212, 7763.318109055197, + 7081.0969691891105, 6445.602365270895, 5880.946195473845, + 5403.865264413863, 5019.054038247765, 4724.495871356836, + 4511.934242861188, 4369.456802439603, 4287.488756995868, + 4257.0135076581255, 4271.980936353514, 4327.67205071238, + 4417.963407646664, 4535.649493954841, 4669.997500353717, + 4807.982633302855, 4936.097665500692, 5042.841084589088, + 5119.816006680569, 5164.383367111986, 5179.883594388304, + 5171.935282003195, 5149.073823831123, 5118.654193229242, 5084.71301671047, + 5047.836166095324, 5005.315751997919, 4952.822074563754, 4886.83390178594, + 4806.234711366163, 4713.900455670105, 4615.924406815976, + 4520.3809915171005, 4435.115247897689, 4365.706391737435, + 4313.597652153235, 4276.676056167021, 4250.088331320671, + 4228.135227023166, 4207.158901342029, 4186.705282600562, + 4169.930740931622, 4162.674909977322, 4170.92154786447, 4198.760368383767, + 4246.095639115619, 4307.928198461783, 4377.141863898591, + 4446.464256137026, 4513.271186947258, 4583.566383972638, + 4673.993174867488, 4811.972682047525, 5031.995439755913, + 5369.313471000201, 5856.165465770608, 6509.147624644576, 7330.775973795096 + ], + "flow:J73:branch64_seg1": [ + 0.40493572894164, 0.527777110896723, 0.6678621156471715, + 0.8196688975173843, 0.9764980369072678, 1.1316929696380074, + 1.2794549823026156, 1.4154830554250968, 1.5369554419841644, + 1.6428919747126167, 1.73325920587141, 1.8085623116413394, + 1.8695969349300186, 1.9166982655049638, 1.9500275128457767, + 1.9695740659388838, 1.9752627321812641, 1.9675964063436198, + 1.9474264245384416, 1.9161777175545784, 1.8757167433741317, + 1.827896039480433, 1.7744950497696976, 1.7169247719135512, + 1.656205603249189, 1.5931226893503565, 1.528375655106216, + 1.4628042468550033, 1.3974725842511524, 1.3336122389419842, + 1.2723525231052304, 1.2144372006089437, 1.1598359500264546, + 1.1075381857547681, 1.0556174220358723, 1.0014624832250425, + 0.9423211652357285, 0.8758817696184606, 0.8009969705918835, + 0.7178712149287946, 0.6283581096794998, 0.5356270622834168, + 0.4436293183429311, 0.3564433984791995, 0.27764955432236166, + 0.20977881865381087, 0.15400725082042574, 0.11047113579839983, + 0.07823150000567694, 0.05592998680466447, 0.04217291439330043, + 0.03566898610356719, 0.03553894342763076, 0.04105425668649987, + 0.0514884319172082, 0.06595300642962663, 0.08314674246439915, + 0.10145530911050338, 0.11909243381886658, 0.13439971524994354, + 0.1460940038065727, 0.15359829696406427, 0.15701533681408367, + 0.15701191754662444, 0.15464543470451428, 0.15091825918907883, + 0.14654465071267098, 0.1417758641111851, 0.1363900317431704, + 0.12987994937727193, 0.1217200707812147, 0.11164592873399938, + 0.09985678887717858, 0.08700512233412683, 0.07409529913405996, + 0.06219788223089503, 0.05216723885550441, 0.04439105558888126, + 0.03876946709913426, 0.03475453653157344, 0.031622978354165415, + 0.02878689946762364, 0.026020137731450045, 0.023578130697302677, + 0.022124207986187618, 0.022463184279861027, 0.025249584547280775, + 0.03064878708840796, 0.038250019885749435, 0.047186035671666404, + 0.056452601372597194, 0.06547225174773988, 0.07462403544367055, + 0.08561857101064055, 0.101623569956826, 0.1268881180435416, + 0.16620155532042405, 0.22399040730036054, 0.3031690623785069, + 0.40493572894164 + ], + "pressure:J73:branch64_seg1": [ + 7330.775973795096, 8304.463243798902, 9393.847164404187, + 10554.639092186859, 11735.246670810853, 12886.368442306899, + 13967.418764626347, 14951.956503305022, 15821.762710889247, + 16573.109895414622, 17210.094747319697, 17735.169378630966, + 18154.991527926082, 18471.605310796273, 18684.168949323746, + 18794.157569474297, 18800.327103394993, 18707.411898925806, + 18524.81536518798, 18263.008019865814, 17937.288553535935, + 17561.63761651761, 17148.217699494893, 16706.999235406052, + 16244.52913577477, 15766.179204535501, 15277.375379803067, + 14784.896513514339, 14297.289261534854, 13824.100100044, + 13373.137592089899, 12948.309283465878, 12547.322025119218, + 12159.586199846848, 11768.498823677806, 11353.198266203823, + 10893.767948924795, 10374.256718020919, 9789.946066672403, + 9146.863532069467, 8462.171999166212, 7763.318109055197, + 7081.0969691891105, 6445.602365270895, 5880.946195473845, + 5403.865264413863, 5019.054038247765, 4724.495871356836, + 4511.934242861188, 4369.456802439603, 4287.488756995868, + 4257.0135076581255, 4271.980936353514, 4327.67205071238, + 4417.963407646664, 4535.649493954841, 4669.997500353717, + 4807.982633302855, 4936.097665500692, 5042.841084589088, + 5119.816006680569, 5164.383367111986, 5179.883594388304, + 5171.935282003195, 5149.073823831123, 5118.654193229242, 5084.71301671047, + 5047.836166095324, 5005.315751997919, 4952.822074563754, 4886.83390178594, + 4806.234711366163, 4713.900455670105, 4615.924406815976, + 4520.3809915171005, 4435.115247897689, 4365.706391737435, + 4313.597652153235, 4276.676056167021, 4250.088331320671, + 4228.135227023166, 4207.158901342029, 4186.705282600562, + 4169.930740931622, 4162.674909977322, 4170.92154786447, 4198.760368383767, + 4246.095639115619, 4307.928198461783, 4377.141863898591, + 4446.464256137026, 4513.271186947258, 4583.566383972638, + 4673.993174867488, 4811.972682047525, 5031.995439755913, + 5369.313471000201, 5856.165465770608, 6509.147624644576, 7330.775973795096 + ], + "flow:branch64_seg1:J74": [ + 0.40236184791485213, 0.5248164838258856, 0.6646204435110833, + 0.8163048068815396, 0.9731511194744346, 1.1284894918843886, + 1.276495247510506, 1.412837303874349, 1.53464346530013, + 1.6409169175380138, 1.731606981536714, 1.8072165382292862, + 1.8685515532452146, 1.9159446663155166, 1.9495721902827645, + 1.9694105016657062, 1.9753888089072225, 1.9680035833905534, + 1.9480676721611128, 1.9170221704043462, 1.8767275884250978, + 1.8290267637435778, 1.7757188487510918, 1.7182174614052925, + 1.6575495324908813, 1.5945057565762841, 1.5297794778731582, + 1.4642066052638754, 1.3988474318258903, 1.3349342145593452, + 1.273601316682441, 1.2156118241713065, 1.160955190194789, + 1.1086388683163562, 1.0567568825960911, 1.0027032085637162, + 0.9437120553120868, 0.8774572191337576, 0.8027582107362371, + 0.7197775160715026, 0.6303472611724567, 0.5376144400967567, + 0.44552324551345757, 0.358157531569937, 0.27914209816857144, + 0.2110106473165338, 0.15496557092245178, 0.11119112800260801, + 0.0787303507560648, 0.05624287697983629, 0.042332501798286536, + 0.03568494572347567, 0.03543472942903233, 0.04084431918038226, + 0.05118553995853358, 0.06558733445538578, 0.08275156462307498, + 0.10106840450048976, 0.11875228267205953, 0.13413555965156332, + 0.14592077432866188, 0.1535166220511641, 0.15700894211722102, + 0.15705966835014445, 0.154725181992415, 0.15101164208496493, + 0.14664478635203967, 0.14188727687527283, 0.13652364892138125, + 0.13004908787355893, 0.12192961734003407, 0.11189440426591124, + 0.10013302395577028, 0.08728538532639168, 0.07435611159705398, + 0.062420244471053155, 0.05234123915220678, 0.0445148940088152, + 0.038857049907808854, 0.03482207464926554, 0.031682643470161656, + 0.028846611877326227, 0.026075715203237766, 0.023615671797039828, + 0.022125328767868886, 0.022412249797938162, 0.025140937751056525, + 0.030488766190077055, 0.03805864016497757, 0.04698576107727624, + 0.05625921073743602, 0.06528190459502865, 0.07440494494194545, + 0.08530715675577376, 0.1011308343199964, 0.12609913875631587, + 0.16503777529849742, 0.22237708387671734, 0.30104323981678455, + 0.40236184791485213 + ], + "pressure:branch64_seg1:J74": [ + 7025.674697091326, 7937.610843984938, 8973.64406309609, + 10092.872684293625, 11245.669467953898, 12383.215001469209, + 13463.445437183891, 14455.951218872924, 15340.388109753385, + 16110.304201530695, 16766.36476527494, 17311.95286106015, + 17753.137204031827, 18092.25682407822, 18330.109106486376, + 18466.902624620874, 18501.953085333338, 18439.13490768931, + 18285.172278722872, 18050.573008715666, 17749.30707315647, + 17394.94006342064, 17000.381251393384, 16575.865211106575, + 16128.667351576534, 15664.465936460756, 15188.401910004659, + 14706.730066414953, 14227.372410602708, 13759.44907090863, + 13311.129713005084, 12887.605380132198, 12488.29371115863, + 12105.183534245049, 11723.752370839598, 11324.559368779643, + 10887.480839843505, 10395.7734107685, 9841.712899049977, + 9227.590667777635, 8567.643167613169, 7885.863910996805, + 7211.495495586115, 6574.407793061551, 6000.526342500037, + 5507.934541423972, 5104.473386253983, 4790.7275383923525, + 4559.412234674793, 4400.260824050678, 4303.226418905841, + 4258.842916001047, 4260.863063276405, 4304.054146544101, + 4382.9142816461945, 4490.898360565592, 4618.242312328098, + 4752.904821521245, 4881.746248387514, 4992.749585384138, 5076.68928631407, + 5129.633160975077, 5152.832009340697, 5151.295049691886, 5132.92209553387, + 5105.060275722404, 5072.7173692762435, 5037.506065385509, + 4997.5934692372275, 4949.147013281647, 4888.353839740443, + 4813.434662333688, 4726.114644806762, 4631.38838341742, + 4536.7591283381835, 4450.073248215466, 4377.467851474911, + 4321.4989619652115, 4281.21177670158, 4252.423199231221, + 4229.733394205024, 4208.973809312931, 4188.698713778844, 4171.01334942987, + 4160.962838988544, 4164.461998524579, 4186.187820414776, + 4227.1174760465365, 4283.870607476437, 4349.951703448946, + 4418.0055013013325, 4484.068598524448, 4551.489713010497, + 4633.524819886824, 4754.133947166577, 4944.974796507177, 5241.28357643266, + 5675.3656314044, 6267.474915437141, 7025.674697091326 + ], + "flow:J74:branch64_seg2": [ + 0.40236184791485213, 0.5248164838258856, 0.6646204435110833, + 0.8163048068815396, 0.9731511194744346, 1.1284894918843886, + 1.276495247510506, 1.412837303874349, 1.53464346530013, + 1.6409169175380138, 1.731606981536714, 1.8072165382292862, + 1.8685515532452146, 1.9159446663155166, 1.9495721902827645, + 1.9694105016657062, 1.9753888089072225, 1.9680035833905534, + 1.9480676721611128, 1.9170221704043462, 1.8767275884250978, + 1.8290267637435778, 1.7757188487510918, 1.7182174614052925, + 1.6575495324908813, 1.5945057565762841, 1.5297794778731582, + 1.4642066052638754, 1.3988474318258903, 1.3349342145593452, + 1.273601316682441, 1.2156118241713065, 1.160955190194789, + 1.1086388683163562, 1.0567568825960911, 1.0027032085637162, + 0.9437120553120868, 0.8774572191337576, 0.8027582107362371, + 0.7197775160715026, 0.6303472611724567, 0.5376144400967567, + 0.44552324551345757, 0.358157531569937, 0.27914209816857144, + 0.2110106473165338, 0.15496557092245178, 0.11119112800260801, + 0.0787303507560648, 0.05624287697983629, 0.042332501798286536, + 0.03568494572347567, 0.03543472942903233, 0.04084431918038226, + 0.05118553995853358, 0.06558733445538578, 0.08275156462307498, + 0.10106840450048976, 0.11875228267205953, 0.13413555965156332, + 0.14592077432866188, 0.1535166220511641, 0.15700894211722102, + 0.15705966835014445, 0.154725181992415, 0.15101164208496493, + 0.14664478635203967, 0.14188727687527283, 0.13652364892138125, + 0.13004908787355893, 0.12192961734003407, 0.11189440426591124, + 0.10013302395577028, 0.08728538532639168, 0.07435611159705398, + 0.062420244471053155, 0.05234123915220678, 0.0445148940088152, + 0.038857049907808854, 0.03482207464926554, 0.031682643470161656, + 0.028846611877326227, 0.026075715203237766, 0.023615671797039828, + 0.022125328767868886, 0.022412249797938162, 0.025140937751056525, + 0.030488766190077055, 0.03805864016497757, 0.04698576107727624, + 0.05625921073743602, 0.06528190459502865, 0.07440494494194545, + 0.08530715675577376, 0.1011308343199964, 0.12609913875631587, + 0.16503777529849742, 0.22237708387671734, 0.30104323981678455, + 0.40236184791485213 + ], + "pressure:J74:branch64_seg2": [ + 7025.674697091326, 7937.610843984938, 8973.64406309609, + 10092.872684293625, 11245.669467953898, 12383.215001469209, + 13463.445437183891, 14455.951218872924, 15340.388109753385, + 16110.304201530695, 16766.36476527494, 17311.95286106015, + 17753.137204031827, 18092.25682407822, 18330.109106486376, + 18466.902624620874, 18501.953085333338, 18439.13490768931, + 18285.172278722872, 18050.573008715666, 17749.30707315647, + 17394.94006342064, 17000.381251393384, 16575.865211106575, + 16128.667351576534, 15664.465936460756, 15188.401910004659, + 14706.730066414953, 14227.372410602708, 13759.44907090863, + 13311.129713005084, 12887.605380132198, 12488.29371115863, + 12105.183534245049, 11723.752370839598, 11324.559368779643, + 10887.480839843505, 10395.7734107685, 9841.712899049977, + 9227.590667777635, 8567.643167613169, 7885.863910996805, + 7211.495495586115, 6574.407793061551, 6000.526342500037, + 5507.934541423972, 5104.473386253983, 4790.7275383923525, + 4559.412234674793, 4400.260824050678, 4303.226418905841, + 4258.842916001047, 4260.863063276405, 4304.054146544101, + 4382.9142816461945, 4490.898360565592, 4618.242312328098, + 4752.904821521245, 4881.746248387514, 4992.749585384138, 5076.68928631407, + 5129.633160975077, 5152.832009340697, 5151.295049691886, 5132.92209553387, + 5105.060275722404, 5072.7173692762435, 5037.506065385509, + 4997.5934692372275, 4949.147013281647, 4888.353839740443, + 4813.434662333688, 4726.114644806762, 4631.38838341742, + 4536.7591283381835, 4450.073248215466, 4377.467851474911, + 4321.4989619652115, 4281.21177670158, 4252.423199231221, + 4229.733394205024, 4208.973809312931, 4188.698713778844, 4171.01334942987, + 4160.962838988544, 4164.461998524579, 4186.187820414776, + 4227.1174760465365, 4283.870607476437, 4349.951703448946, + 4418.0055013013325, 4484.068598524448, 4551.489713010497, + 4633.524819886824, 4754.133947166577, 4944.974796507177, 5241.28357643266, + 5675.3656314044, 6267.474915437141, 7025.674697091326 + ], + "flow:branch75_seg0:J75": [ + 0.953859774866407, 1.2099446839745664, 1.4787020589524256, + 1.7465072595087339, 1.999373865296754, 2.2268053247335664, + 2.422578912744442, 2.585422465929177, 2.715710076107613, + 2.817543479057026, 2.8952449361621704, 2.950858652749844, + 2.987065393541882, 3.0036626133958166, 2.9999829748522693, + 2.9763426718061656, 2.932204476375362, 2.8700998666576787, + 2.7930570240680046, 2.704395809611924, 2.608677354446487, + 2.5087292743742093, 2.406756251694158, 2.3039798517033563, + 2.200605637439643, 2.0970517105805886, 1.9941161410984654, + 1.8933844724683624, 1.7970714263229732, 1.7074533218058712, + 1.6257749949778575, 1.5516813671667513, 1.4826861579121509, + 1.4138828014888787, 1.3393581604538194, 1.2529426649456166, + 1.1500714849921507, 1.0284740289191117, 0.8902611994610855, + 0.7403398986382711, 0.5865410918885758, 0.43832299424598575, + 0.304286894242856, 0.19114257531601886, 0.10265115146254457, + 0.039806128133181906, -0.0003751048342257617, -0.021167184913577462, + -0.027162710364891186, -0.022596750833538418, -0.009595152872702042, + 0.009937184429074139, 0.03553804737847288, 0.06679048399260465, + 0.1022667295372925, 0.14014175548313065, 0.17727321773935978, + 0.21014765385232845, 0.23562435680220958, 0.2517397692188681, + 0.25781828509265864, 0.25517675033222265, 0.24651184066365944, + 0.2345145490868172, 0.22213170884045666, 0.2109367806409749, + 0.2010714359423477, 0.19153415896955553, 0.18055816876680755, + 0.16646281166120455, 0.14843524451637477, 0.12682451538366327, + 0.10343374418685294, 0.08067823867627222, 0.06112693425422197, + 0.04662277096110394, 0.03779930901745552, 0.03373857752477443, + 0.032681222310124526, 0.032489381702497634, 0.03138557195257265, + 0.028902887420296536, 0.02584372555692062, 0.024062838052222563, + 0.025829882352571616, 0.032777706624779274, 0.045385421620300674, + 0.06243036942571191, 0.08134046644865973, 0.09948490305764845, + 0.11497931015349654, 0.1283505706797226, 0.1433406896640613, + 0.1668835734798396, 0.20851788712133384, 0.27828705680521093, + 0.38474948135126114, 0.5340687909142156, 0.725183247160571, + 0.953859774866407 + ], + "pressure:branch75_seg0:J75": [ + 9373.141140996997, 10778.004466105856, 12238.262275090188, + 13679.595824728929, 15030.546084520205, 16236.669187104448, + 17267.154981861047, 18119.41959829198, 18799.25212934539, + 19326.193701562606, 19727.48712738573, 20011.090146602342, + 20189.40578638528, 20262.847432452036, 20224.641653878814, + 20079.320130615983, 19823.912196967103, 19471.98682692463, + 19044.234520626585, 18556.187836030058, 18032.802189996237, + 17489.72595324307, 16936.45237287594, 16379.615223113937, + 15819.825433872358, 15259.274572443454, 14703.269980629522, + 14160.890561651822, 13644.42967012978, 13165.834482388946, + 12731.022193673225, 12335.606801374206, 11964.82042035669, + 11590.331818723884, 11179.19548222564, 10698.668810279678, + 10126.522428816934, 9452.442129740606, 8691.017916439865, + 7872.987887728276, 7040.907119968838, 6247.12359282203, 5537.437003344186, + 4945.9353056977, 4488.3068325719805, 4169.89425289339, 3971.5799181878297, + 3872.9127312968985, 3852.09293972109, 3884.6947684796546, + 3961.0302776448098, 4072.792938561577, 4215.984581425721, + 4389.637438107519, 4584.903305978162, 4790.467157760482, + 4989.433275565569, 5162.285574541952, 5292.592442405411, + 5371.100345528447, 5395.9120463780255, 5374.629805345223, + 5323.799181231726, 5257.5095967498155, 5190.7535209390035, + 5131.543935331286, 5079.103953696452, 5027.021715964329, + 4965.5813532696675, 4885.980829373597, 4785.0764334237465, + 4665.5724613956345, 4538.260760674075, 4416.921271380893, + 4314.866183782817, 4241.156349525653, 4198.111842626453, + 4179.8338029141305, 4175.572064712588, 4174.43488306716, 4167.35352256214, + 4152.801287158006, 4136.415818510515, 4128.869669568558, + 4142.365333804075, 4184.937036516264, 4257.65360302174, 4353.005543731663, + 4455.757793392112, 4552.143150240776, 4633.5679619656985, + 4705.195721449423, 4790.239303599726, 4928.7961240187105, + 5174.049861456906, 5581.122214185976, 6191.170298979188, + 7037.146355653127, 8108.762743942479, 9373.141140996997 + ], + "flow:J75:branch75_seg1": [ + 0.953859774866407, 1.2099446839745664, 1.4787020589524256, + 1.7465072595087339, 1.999373865296754, 2.2268053247335664, + 2.422578912744442, 2.585422465929177, 2.715710076107613, + 2.817543479057026, 2.8952449361621704, 2.950858652749844, + 2.987065393541882, 3.0036626133958166, 2.9999829748522693, + 2.9763426718061656, 2.932204476375362, 2.8700998666576787, + 2.7930570240680046, 2.704395809611924, 2.608677354446487, + 2.5087292743742093, 2.406756251694158, 2.3039798517033563, + 2.200605637439643, 2.0970517105805886, 1.9941161410984654, + 1.8933844724683624, 1.7970714263229732, 1.7074533218058712, + 1.6257749949778575, 1.5516813671667513, 1.4826861579121509, + 1.4138828014888787, 1.3393581604538194, 1.2529426649456166, + 1.1500714849921507, 1.0284740289191117, 0.8902611994610855, + 0.7403398986382711, 0.5865410918885758, 0.43832299424598575, + 0.304286894242856, 0.19114257531601886, 0.10265115146254457, + 0.039806128133181906, -0.0003751048342257617, -0.021167184913577462, + -0.027162710364891186, -0.022596750833538418, -0.009595152872702042, + 0.009937184429074139, 0.03553804737847288, 0.06679048399260465, + 0.1022667295372925, 0.14014175548313065, 0.17727321773935978, + 0.21014765385232845, 0.23562435680220958, 0.2517397692188681, + 0.25781828509265864, 0.25517675033222265, 0.24651184066365944, + 0.2345145490868172, 0.22213170884045666, 0.2109367806409749, + 0.2010714359423477, 0.19153415896955553, 0.18055816876680755, + 0.16646281166120455, 0.14843524451637477, 0.12682451538366327, + 0.10343374418685294, 0.08067823867627222, 0.06112693425422197, + 0.04662277096110394, 0.03779930901745552, 0.03373857752477443, + 0.032681222310124526, 0.032489381702497634, 0.03138557195257265, + 0.028902887420296536, 0.02584372555692062, 0.024062838052222563, + 0.025829882352571616, 0.032777706624779274, 0.045385421620300674, + 0.06243036942571191, 0.08134046644865973, 0.09948490305764845, + 0.11497931015349654, 0.1283505706797226, 0.1433406896640613, + 0.1668835734798396, 0.20851788712133384, 0.27828705680521093, + 0.38474948135126114, 0.5340687909142156, 0.725183247160571, + 0.953859774866407 + ], + "pressure:J75:branch75_seg1": [ + 9373.141140996997, 10778.004466105856, 12238.262275090188, + 13679.595824728929, 15030.546084520205, 16236.669187104448, + 17267.154981861047, 18119.41959829198, 18799.25212934539, + 19326.193701562606, 19727.48712738573, 20011.090146602342, + 20189.40578638528, 20262.847432452036, 20224.641653878814, + 20079.320130615983, 19823.912196967103, 19471.98682692463, + 19044.234520626585, 18556.187836030058, 18032.802189996237, + 17489.72595324307, 16936.45237287594, 16379.615223113937, + 15819.825433872358, 15259.274572443454, 14703.269980629522, + 14160.890561651822, 13644.42967012978, 13165.834482388946, + 12731.022193673225, 12335.606801374206, 11964.82042035669, + 11590.331818723884, 11179.19548222564, 10698.668810279678, + 10126.522428816934, 9452.442129740606, 8691.017916439865, + 7872.987887728276, 7040.907119968838, 6247.12359282203, 5537.437003344186, + 4945.9353056977, 4488.3068325719805, 4169.89425289339, 3971.5799181878297, + 3872.9127312968985, 3852.09293972109, 3884.6947684796546, + 3961.0302776448098, 4072.792938561577, 4215.984581425721, + 4389.637438107519, 4584.903305978162, 4790.467157760482, + 4989.433275565569, 5162.285574541952, 5292.592442405411, + 5371.100345528447, 5395.9120463780255, 5374.629805345223, + 5323.799181231726, 5257.5095967498155, 5190.7535209390035, + 5131.543935331286, 5079.103953696452, 5027.021715964329, + 4965.5813532696675, 4885.980829373597, 4785.0764334237465, + 4665.5724613956345, 4538.260760674075, 4416.921271380893, + 4314.866183782817, 4241.156349525653, 4198.111842626453, + 4179.8338029141305, 4175.572064712588, 4174.43488306716, 4167.35352256214, + 4152.801287158006, 4136.415818510515, 4128.869669568558, + 4142.365333804075, 4184.937036516264, 4257.65360302174, 4353.005543731663, + 4455.757793392112, 4552.143150240776, 4633.5679619656985, + 4705.195721449423, 4790.239303599726, 4928.7961240187105, + 5174.049861456906, 5581.122214185976, 6191.170298979188, + 7037.146355653127, 8108.762743942479, 9373.141140996997 + ], + "flow:branch75_seg1:J76": [ + 0.9528206003649448, 1.2088301712912146, 1.47756616392622, + 1.7454230289240917, 1.9983847224745175, 2.225940024106799, + 2.421851531184051, 2.5848434128493967, 2.7152438314398295, + 2.817188253911161, 2.894985262967128, 2.950676450999205, + 2.9869704363602456, 3.00364617462449, 3.0000518757306773, + 2.976497936545393, 2.932436254434471, 2.870404262616692, + 2.7934122233692924, 2.7047865218064127, 2.6090917378726703, + 2.5091530756231384, 2.4071847948839955, 2.3044113091438407, + 2.2010381050264, 2.0974838225154238, 1.9945416514393235, + 1.8937945445208624, 1.7974560255551126, 1.7078062341976485, + 1.6260926460140344, 1.5519736712587149, 1.4829704952153784, + 1.4141811557656991, 1.3396981583361094, 1.2533474747883993, + 1.150553064350666, 1.0290281826462397, 0.890877173924524, + 0.7409819677777516, 0.5871736867231224, 0.4389101989964664, + 0.3047945411656611, 0.1915468841061103, 0.10295319285312536, + 0.040005107784148786, -0.00026626898740233834, -0.0211229468210656, + -0.027169834270185957, -0.02264177357556319, -0.009667104134434544, + 0.009835866608617344, 0.03541464879828344, 0.06664769476573502, + 0.10210823627996969, 0.13998352609172982, 0.17712764280319945, + 0.21002884464588822, 0.23554273421059913, 0.25170233373808554, + 0.25781726234665725, 0.25520624193465513, 0.2465597949988252, + 0.23456628436253765, 0.22218079323068424, 0.21097975721633358, + 0.20111040021774299, 0.1915765167137945, 0.18061152889124707, + 0.16653269339883237, 0.14852077601914457, 0.12692110491502978, + 0.10353218453931072, 0.08076614616481828, 0.061195145107122005, + 0.04666733072355936, 0.03782208036888068, 0.03374436343112906, + 0.03268175360212197, 0.032492310293178506, 0.031393989325339454, + 0.0289159273550154, 0.025854675585911476, 0.024061844062723898, + 0.02580912221084337, 0.032731965577766954, 0.0453197159860919, + 0.06235220726598799, 0.08126157228283042, 0.09941615360856726, + 0.1149221455365857, 0.12829427909927274, 0.143260583254128, + 0.16674383468441978, 0.20827552371038194, 0.2778966923551227, + 0.3841937401603616, 0.5333296795159524, 0.7242660475158408, + 0.9528206003649448 + ], + "pressure:branch75_seg1:J76": [ + 9161.783480285316, 10539.40129963336, 11981.960078117521, + 13416.342451035827, 14768.45486195244, 15982.526457263062, + 17025.82810249849, 17892.588299127, 18585.528373838748, 19126.14590875376, + 19538.510027954533, 19832.79933577736, 20023.001679663346, + 20108.315889006397, 20084.454456408122, 19953.78457948323, + 19713.3569452125, 19376.74352667192, 18961.16368721677, 18483.8481191005, + 17969.338379155248, 17432.87280644171, 16885.714292160897, + 16334.432939881315, 15780.006435495165, 15224.66156855977, + 14672.900072818897, 14133.33555673358, 13617.915204192484, + 13138.771680257647, 12702.390279561943, 12306.31955265095, + 11936.93733375252, 11567.51293917841, 11166.129532650195, + 10699.841144393273, 10144.729434636089, 9489.02921894698, + 8744.81541541064, 7939.318517225841, 7114.577530141373, 6321.59863163734, + 5606.330604158097, 5004.252628187622, 4534.49614270377, 4202.371048319048, + 3991.212096410163, 3882.8397934442974, 3853.326630823066, + 3879.5884178825836, 3950.6633606580076, 4056.770093025267, + 4195.103696622829, 4363.726666955043, 4554.709026225219, + 4757.965468887078, 4956.655236890557, 5131.820943812214, + 5266.7425223815735, 5351.214809633796, 5381.980187902684, + 5366.227564516377, 5318.872729921154, 5254.216247653849, 5187.86332656617, + 5128.141388688246, 5075.453836253395, 5024.2092644237255, + 4964.895798527354, 4888.563657825144, 4791.134676837797, + 4674.665245793125, 4549.058824279307, 4427.428674667237, + 4323.419653411679, 4246.713270671824, 4200.459666009003, + 4179.519724030108, 4174.186501083763, 4173.144546454209, + 4166.976726291872, 4153.408259276079, 4137.035456688029, 4127.94703784893, + 4138.304149546595, 4176.676276705682, 4245.303827646152, + 4337.420419805287, 4438.927002057071, 4535.828072355066, + 4618.3715271800975, 4689.898194513742, 4771.142959040347, + 4899.874396779675, 5127.59787084707, 5508.351080191891, + 6086.8830859244035, 6896.14149528541, 7929.420652673453, 9161.783480285316 + ], + "flow:J76:branch75_seg2": [ + 0.9528206003649448, 1.2088301712912146, 1.47756616392622, + 1.7454230289240917, 1.9983847224745175, 2.225940024106799, + 2.421851531184051, 2.5848434128493967, 2.7152438314398295, + 2.817188253911161, 2.894985262967128, 2.950676450999205, + 2.9869704363602456, 3.00364617462449, 3.0000518757306773, + 2.976497936545393, 2.932436254434471, 2.870404262616692, + 2.7934122233692924, 2.7047865218064127, 2.6090917378726703, + 2.5091530756231384, 2.4071847948839955, 2.3044113091438407, + 2.2010381050264, 2.0974838225154238, 1.9945416514393235, + 1.8937945445208624, 1.7974560255551126, 1.7078062341976485, + 1.6260926460140344, 1.5519736712587149, 1.4829704952153784, + 1.4141811557656991, 1.3396981583361094, 1.2533474747883993, + 1.150553064350666, 1.0290281826462397, 0.890877173924524, + 0.7409819677777516, 0.5871736867231224, 0.4389101989964664, + 0.3047945411656611, 0.1915468841061103, 0.10295319285312536, + 0.040005107784148786, -0.00026626898740233834, -0.0211229468210656, + -0.027169834270185957, -0.02264177357556319, -0.009667104134434544, + 0.009835866608617344, 0.03541464879828344, 0.06664769476573502, + 0.10210823627996969, 0.13998352609172982, 0.17712764280319945, + 0.21002884464588822, 0.23554273421059913, 0.25170233373808554, + 0.25781726234665725, 0.25520624193465513, 0.2465597949988252, + 0.23456628436253765, 0.22218079323068424, 0.21097975721633358, + 0.20111040021774299, 0.1915765167137945, 0.18061152889124707, + 0.16653269339883237, 0.14852077601914457, 0.12692110491502978, + 0.10353218453931072, 0.08076614616481828, 0.061195145107122005, + 0.04666733072355936, 0.03782208036888068, 0.03374436343112906, + 0.03268175360212197, 0.032492310293178506, 0.031393989325339454, + 0.0289159273550154, 0.025854675585911476, 0.024061844062723898, + 0.02580912221084337, 0.032731965577766954, 0.0453197159860919, + 0.06235220726598799, 0.08126157228283042, 0.09941615360856726, + 0.1149221455365857, 0.12829427909927274, 0.143260583254128, + 0.16674383468441978, 0.20827552371038194, 0.2778966923551227, + 0.3841937401603616, 0.5333296795159524, 0.7242660475158408, + 0.9528206003649448 + ], + "pressure:J76:branch75_seg2": [ + 9161.783480285316, 10539.40129963336, 11981.960078117521, + 13416.342451035827, 14768.45486195244, 15982.526457263062, + 17025.82810249849, 17892.588299127, 18585.528373838748, 19126.14590875376, + 19538.510027954533, 19832.79933577736, 20023.001679663346, + 20108.315889006397, 20084.454456408122, 19953.78457948323, + 19713.3569452125, 19376.74352667192, 18961.16368721677, 18483.8481191005, + 17969.338379155248, 17432.87280644171, 16885.714292160897, + 16334.432939881315, 15780.006435495165, 15224.66156855977, + 14672.900072818897, 14133.33555673358, 13617.915204192484, + 13138.771680257647, 12702.390279561943, 12306.31955265095, + 11936.93733375252, 11567.51293917841, 11166.129532650195, + 10699.841144393273, 10144.729434636089, 9489.02921894698, + 8744.81541541064, 7939.318517225841, 7114.577530141373, 6321.59863163734, + 5606.330604158097, 5004.252628187622, 4534.49614270377, 4202.371048319048, + 3991.212096410163, 3882.8397934442974, 3853.326630823066, + 3879.5884178825836, 3950.6633606580076, 4056.770093025267, + 4195.103696622829, 4363.726666955043, 4554.709026225219, + 4757.965468887078, 4956.655236890557, 5131.820943812214, + 5266.7425223815735, 5351.214809633796, 5381.980187902684, + 5366.227564516377, 5318.872729921154, 5254.216247653849, 5187.86332656617, + 5128.141388688246, 5075.453836253395, 5024.2092644237255, + 4964.895798527354, 4888.563657825144, 4791.134676837797, + 4674.665245793125, 4549.058824279307, 4427.428674667237, + 4323.419653411679, 4246.713270671824, 4200.459666009003, + 4179.519724030108, 4174.186501083763, 4173.144546454209, + 4166.976726291872, 4153.408259276079, 4137.035456688029, 4127.94703784893, + 4138.304149546595, 4176.676276705682, 4245.303827646152, + 4337.420419805287, 4438.927002057071, 4535.828072355066, + 4618.3715271800975, 4689.898194513742, 4771.142959040347, + 4899.874396779675, 5127.59787084707, 5508.351080191891, + 6086.8830859244035, 6896.14149528541, 7929.420652673453, 9161.783480285316 + ], + "flow:branch77_seg0:J77": [ + 0.968255387781929, 1.2492670589034616, 1.5559158102133699, + 1.872662220785561, 2.182773104049671, 2.4719062116977986, + 2.729659136232165, 2.950575143025554, 3.1327373583754397, + 3.2786589691263566, 3.3920363155519384, 3.47637688685958, + 3.535156220995886, 3.5695394296835663, 3.579972320982529, + 3.5665542362258975, 3.529083218245562, 3.469331958609167, + 3.3897370746333393, 3.293968119965399, 3.186606095408047, + 3.071468609118652, 2.9518850607776623, 2.8299881949946792, + 2.7068447379440603, 2.58317740599283, 2.459756634028595, + 2.3379921362732357, 2.219998722243908, 2.1082601846762543, + 2.004727563772271, 1.9101086168569172, 1.8229540059007496, + 1.739319192307355, 1.653407092289914, 1.5583656603582439, + 1.4479352267936971, 1.317816722366966, 1.1674811075837517, + 0.9998762891266545, 0.8218798302011272, 0.6429101859563744, + 0.47310587721203906, 0.3216582288220019, 0.1954307654087592, + 0.09792961417238787, 0.02881454034974431, -0.01423813574737398, + -0.03579914716092513, -0.040565155441307316, -0.032282057851121475, + -0.013998780151453241, 0.012802762375362044, 0.04701077828966464, + 0.08728014133135571, 0.13179492407305637, 0.17751629130553323, + 0.220746828313595, 0.25766655699659996, 0.2851962017156451, + 0.3015058712064855, 0.30680101857540054, 0.3029151954621111, + 0.2926547950435569, 0.27936406078420273, 0.26556453867454854, + 0.2525540305397005, 0.24021725443915434, 0.227250514851264, + 0.2119037085679368, 0.1927838441432653, 0.16952431494127665, + 0.1431804764875924, 0.1158736785739492, 0.09037390990734608, + 0.06919697714249368, 0.053900461312690766, 0.0445451910551075, + 0.03997335859819244, 0.03809443920517751, 0.03676123368913448, + 0.03466897648968358, 0.03175412639605286, 0.029284773565566767, + 0.02941372035869001, 0.03425741514360327, 0.04513111735923636, + 0.06173938769396191, 0.08223488470119916, 0.10389995403138874, + 0.12415262434737163, 0.14216644509976992, 0.1600847769020903, + 0.18359976801162028, 0.22180937688198823, 0.28561105756172, + 0.38602771088680143, 0.5318527173127617, 0.726329075940283, + 0.968255387781929 + ], + "pressure:branch77_seg0:J77": [ + 8566.280607539375, 9851.550357902184, 11235.68061652669, + 12648.603052767206, 14017.298346101463, 15280.173849542829, + 16394.70169940476, 17342.501910894178, 18118.046433993495, + 18734.016323377746, 19210.299411003863, 19559.921298470417, + 19797.67718071536, 19928.247807061183, 19951.109841466136, + 19868.57842960517, 19679.154048255667, 19391.61326895476, + 19019.98610620545, 18579.552020319727, 18091.65175836614, + 17573.06344833278, 17036.876827342883, 16492.114125925582, + 15942.554887601615, 15391.17713557642, 14841.977425630803, + 14301.84526245366, 13780.766484695974, 13289.908454099275, + 12837.153315884067, 12423.668503148243, 12041.140248414134, + 11669.440137749374, 11281.200704926585, 10845.622179561256, + 10336.513216776177, 9736.663836379093, 9047.754825986896, + 8287.217305918562, 7487.833574683376, 6694.01625924832, + 5950.8601212475205, 5297.645308787273, 4761.074780263582, + 4354.967932149375, 4073.7773432186136, 3904.5599550021416, + 3827.465083430691, 3820.2395281006457, 3868.01826579685, + 3958.542711162362, 4085.360047731082, 4244.549922618558, + 4429.158492865426, 4630.257841557103, 4833.6387888516865, + 5022.08875346988, 5178.821799259813, 5291.404192371701, 5353.156434989621, + 5366.435804552973, 5341.670831089717, 5291.42776881835, + 5230.4730911105535, 5169.410996014943, 5112.391147114367, + 5057.573841871639, 4998.385794472928, 4926.885454585239, + 4837.744523231825, 4730.332523873942, 4610.752975428478, + 4489.453736890941, 4378.835431081983, 4289.506735683201, + 4227.306164488746, 4191.061367438242, 4174.297403660979, + 4167.526435803361, 4161.339990228647, 4150.977236428435, 4137.59229969698, + 4127.929708677637, 4132.0894598905425, 4159.020995983492, + 4213.373124635209, 4292.43974057579, 4386.24111218912, 4482.518756146329, + 4570.671672374042, 4649.219204435656, 4731.014939228889, + 4844.890546137541, 5034.166895881425, 5348.962167778326, + 5835.608858006796, 6531.948967965036, 7446.51854524428, 8566.280607539375 + ], + "flow:J77:branch77_seg1": [ + 0.968255387781929, 1.2492670589034616, 1.5559158102133699, + 1.872662220785561, 2.182773104049671, 2.4719062116977986, + 2.729659136232165, 2.950575143025554, 3.1327373583754397, + 3.2786589691263566, 3.3920363155519384, 3.47637688685958, + 3.535156220995886, 3.5695394296835663, 3.579972320982529, + 3.5665542362258975, 3.529083218245562, 3.469331958609167, + 3.3897370746333393, 3.293968119965399, 3.186606095408047, + 3.071468609118652, 2.9518850607776623, 2.8299881949946792, + 2.7068447379440603, 2.58317740599283, 2.459756634028595, + 2.3379921362732357, 2.219998722243908, 2.1082601846762543, + 2.004727563772271, 1.9101086168569172, 1.8229540059007496, + 1.739319192307355, 1.653407092289914, 1.5583656603582439, + 1.4479352267936971, 1.317816722366966, 1.1674811075837517, + 0.9998762891266545, 0.8218798302011272, 0.6429101859563744, + 0.47310587721203906, 0.3216582288220019, 0.1954307654087592, + 0.09792961417238787, 0.02881454034974431, -0.01423813574737398, + -0.03579914716092513, -0.040565155441307316, -0.032282057851121475, + -0.013998780151453241, 0.012802762375362044, 0.04701077828966464, + 0.08728014133135571, 0.13179492407305637, 0.17751629130553323, + 0.220746828313595, 0.25766655699659996, 0.2851962017156451, + 0.3015058712064855, 0.30680101857540054, 0.3029151954621111, + 0.2926547950435569, 0.27936406078420273, 0.26556453867454854, + 0.2525540305397005, 0.24021725443915434, 0.227250514851264, + 0.2119037085679368, 0.1927838441432653, 0.16952431494127665, + 0.1431804764875924, 0.1158736785739492, 0.09037390990734608, + 0.06919697714249368, 0.053900461312690766, 0.0445451910551075, + 0.03997335859819244, 0.03809443920517751, 0.03676123368913448, + 0.03466897648968358, 0.03175412639605286, 0.029284773565566767, + 0.02941372035869001, 0.03425741514360327, 0.04513111735923636, + 0.06173938769396191, 0.08223488470119916, 0.10389995403138874, + 0.12415262434737163, 0.14216644509976992, 0.1600847769020903, + 0.18359976801162028, 0.22180937688198823, 0.28561105756172, + 0.38602771088680143, 0.5318527173127617, 0.726329075940283, + 0.968255387781929 + ], + "pressure:J77:branch77_seg1": [ + 8566.280607539375, 9851.550357902184, 11235.68061652669, + 12648.603052767206, 14017.298346101463, 15280.173849542829, + 16394.70169940476, 17342.501910894178, 18118.046433993495, + 18734.016323377746, 19210.299411003863, 19559.921298470417, + 19797.67718071536, 19928.247807061183, 19951.109841466136, + 19868.57842960517, 19679.154048255667, 19391.61326895476, + 19019.98610620545, 18579.552020319727, 18091.65175836614, + 17573.06344833278, 17036.876827342883, 16492.114125925582, + 15942.554887601615, 15391.17713557642, 14841.977425630803, + 14301.84526245366, 13780.766484695974, 13289.908454099275, + 12837.153315884067, 12423.668503148243, 12041.140248414134, + 11669.440137749374, 11281.200704926585, 10845.622179561256, + 10336.513216776177, 9736.663836379093, 9047.754825986896, + 8287.217305918562, 7487.833574683376, 6694.01625924832, + 5950.8601212475205, 5297.645308787273, 4761.074780263582, + 4354.967932149375, 4073.7773432186136, 3904.5599550021416, + 3827.465083430691, 3820.2395281006457, 3868.01826579685, + 3958.542711162362, 4085.360047731082, 4244.549922618558, + 4429.158492865426, 4630.257841557103, 4833.6387888516865, + 5022.08875346988, 5178.821799259813, 5291.404192371701, 5353.156434989621, + 5366.435804552973, 5341.670831089717, 5291.42776881835, + 5230.4730911105535, 5169.410996014943, 5112.391147114367, + 5057.573841871639, 4998.385794472928, 4926.885454585239, + 4837.744523231825, 4730.332523873942, 4610.752975428478, + 4489.453736890941, 4378.835431081983, 4289.506735683201, + 4227.306164488746, 4191.061367438242, 4174.297403660979, + 4167.526435803361, 4161.339990228647, 4150.977236428435, 4137.59229969698, + 4127.929708677637, 4132.0894598905425, 4159.020995983492, + 4213.373124635209, 4292.43974057579, 4386.24111218912, 4482.518756146329, + 4570.671672374042, 4649.219204435656, 4731.014939228889, + 4844.890546137541, 5034.166895881425, 5348.962167778326, + 5835.608858006796, 6531.948967965036, 7446.51854524428, 8566.280607539375 + ], + "flow:branch77_seg1:J78": [ + 0.966534164486992, 1.2473528713663768, 1.5539050056686972, + 1.8706700885857384, 2.1808917076921674, 2.4702065180429615, + 2.7281889041080554, 2.949355158856056, 3.131747395229148, + 3.2778874945514516, 3.391453017742299, 3.4759579374685297, + 3.5348964178566136, 3.569428220013788, 3.580014917415997, + 3.566747927586729, 3.529421830036801, 3.46980787000759, + 3.3903191206888863, 3.294631605453236, 3.1873274210133733, + 3.0722208355875065, 2.9526553000287623, 2.8307673883400164, + 2.707627817779979, 2.583961451150205, 2.4605333126829705, + 2.3387490745131827, 2.220720377283449, 2.1089328467248825, + 2.0053416717596204, 1.9106713581382995, 1.8234851506426086, + 1.7398516857499315, 1.6539850460857668, 1.5590324571851524, + 1.4487204202803292, 1.3187334711610386, 1.1685194219812567, + 1.0009942928620084, 0.823023256169709, 0.6440152749075225, + 0.47410774830841457, 0.3225051533479679, 0.1961033969315651, + 0.09841678595312457, 0.02912578744847229, -0.014067064866629566, + -0.035745481823212896, -0.04059890951557378, -0.032380891343270865, + -0.014156962259434412, 0.012598368596267446, 0.046765324146427846, + 0.0870019937195444, 0.13150400910125032, 0.1772336930031596, + 0.2204971877765378, 0.25747248301249087, 0.2850722907997036, + 0.30145278528296154, 0.30681235796902323, 0.3029723832223479, + 0.2927361214840122, 0.27945300728237354, 0.26564906331757954, + 0.2526321438808781, 0.24029626704975865, 0.2273416053170898, + 0.21201772103145627, 0.19292410153049372, 0.16968755068816624, + 0.14335531623519882, 0.11604152171810714, 0.09051768459791466, + 0.06930514404543774, 0.05396985271181768, 0.04457966621287883, + 0.03998777476041674, 0.03810225453234156, 0.03677225925155696, + 0.034686867266834995, 0.03177277794443584, 0.029291314091711797, + 0.029393569456208635, 0.034199725591621384, 0.045035315224608886, + 0.06161344802786773, 0.08209628239896964, 0.10376736934267908, + 0.1240354046720203, 0.14205747376547412, 0.15995444235532486, + 0.18339626994240646, 0.22146449238236207, 0.285046226828184, + 0.38519415146690633, 0.5307103429967472, 0.7248644701754713, + 0.966534164486992 + ], + "pressure:branch77_seg1:J78": [ + 8396.970087636684, 9656.091371859779, 11022.07537827749, + 12425.79541588303, 13793.751773251695, 15063.39488690612, + 16190.316574649221, 17152.980930693495, 17944.100260089097, + 18575.53703976115, 19065.16309663153, 19427.332741602542, + 19677.203704201696, 19819.677320399303, 19855.633612349684, + 19786.34997121982, 19610.63570098076, 19336.737183069097, + 18976.82160259193, 18546.6669874564, 18066.997613883086, + 17554.603632221617, 17023.4820213956, 16482.87575374978, + 15937.076572780901, 15389.18208571676, 14842.84244721008, + 14304.564910555364, 13783.962106860326, 13292.090391619698, + 12837.233318659715, 12421.68096974869, 12038.21085787566, + 11668.22933093801, 11285.397730201477, 10859.240770605416, + 10362.760816464657, 9777.741823087154, 9103.608356476809, + 8355.265745022618, 7564.106240914738, 6772.9374290588685, + 6026.620721288794, 5365.15103769757, 4817.269529923466, 4397.71230879085, + 4103.201354577289, 3922.3552581361287, 3835.1193919080124, + 3820.10463263626, 3861.531840188344, 3946.440106725121, + 4068.3651904234544, 4222.826400262702, 4403.435907859223, + 4601.8146193886105, 4804.198788137226, 4993.886367012049, + 5154.057295182508, 5271.635103867312, 5339.132847763421, + 5358.097466389865, 5337.643480216318, 5290.212839005752, + 5230.577867412791, 5169.635885776647, 5112.42292443834, 5057.855852271436, + 4999.8244330275575, 4930.509059003961, 4844.114322827165, + 4739.450915189665, 4621.804979598041, 4501.001831424368, + 4389.343191524555, 4297.717881340194, 4232.552289540869, + 4193.479106167837, 4174.809795581843, 4167.198974752176, + 4161.1942472984765, 4151.476070813144, 4138.385491134643, + 4128.015201515254, 4130.127754448737, 4153.8902686801275, + 4204.613774951483, 4280.384288870448, 4372.251334242268, 4468.11574326453, + 4556.918867801259, 4635.946414451575, 4716.120293144883, + 4824.159426662484, 5001.572693437531, 5297.307683450274, + 5759.022071978927, 6425.082858298913, 7307.246453295392, 8396.970087636684 + ], + "flow:J78:branch77_seg2": [ + 0.966534164486992, 1.2473528713663768, 1.5539050056686972, + 1.8706700885857384, 2.1808917076921674, 2.4702065180429615, + 2.7281889041080554, 2.949355158856056, 3.131747395229148, + 3.2778874945514516, 3.391453017742299, 3.4759579374685297, + 3.5348964178566136, 3.569428220013788, 3.580014917415997, + 3.566747927586729, 3.529421830036801, 3.46980787000759, + 3.3903191206888863, 3.294631605453236, 3.1873274210133733, + 3.0722208355875065, 2.9526553000287623, 2.8307673883400164, + 2.707627817779979, 2.583961451150205, 2.4605333126829705, + 2.3387490745131827, 2.220720377283449, 2.1089328467248825, + 2.0053416717596204, 1.9106713581382995, 1.8234851506426086, + 1.7398516857499315, 1.6539850460857668, 1.5590324571851524, + 1.4487204202803292, 1.3187334711610386, 1.1685194219812567, + 1.0009942928620084, 0.823023256169709, 0.6440152749075225, + 0.47410774830841457, 0.3225051533479679, 0.1961033969315651, + 0.09841678595312457, 0.02912578744847229, -0.014067064866629566, + -0.035745481823212896, -0.04059890951557378, -0.032380891343270865, + -0.014156962259434412, 0.012598368596267446, 0.046765324146427846, + 0.0870019937195444, 0.13150400910125032, 0.1772336930031596, + 0.2204971877765378, 0.25747248301249087, 0.2850722907997036, + 0.30145278528296154, 0.30681235796902323, 0.3029723832223479, + 0.2927361214840122, 0.27945300728237354, 0.26564906331757954, + 0.2526321438808781, 0.24029626704975865, 0.2273416053170898, + 0.21201772103145627, 0.19292410153049372, 0.16968755068816624, + 0.14335531623519882, 0.11604152171810714, 0.09051768459791466, + 0.06930514404543774, 0.05396985271181768, 0.04457966621287883, + 0.03998777476041674, 0.03810225453234156, 0.03677225925155696, + 0.034686867266834995, 0.03177277794443584, 0.029291314091711797, + 0.029393569456208635, 0.034199725591621384, 0.045035315224608886, + 0.06161344802786773, 0.08209628239896964, 0.10376736934267908, + 0.1240354046720203, 0.14205747376547412, 0.15995444235532486, + 0.18339626994240646, 0.22146449238236207, 0.285046226828184, + 0.38519415146690633, 0.5307103429967472, 0.7248644701754713, + 0.966534164486992 + ], + "pressure:J78:branch77_seg2": [ + 8396.970087636684, 9656.091371859779, 11022.07537827749, + 12425.79541588303, 13793.751773251695, 15063.39488690612, + 16190.316574649221, 17152.980930693495, 17944.100260089097, + 18575.53703976115, 19065.16309663153, 19427.332741602542, + 19677.203704201696, 19819.677320399303, 19855.633612349684, + 19786.34997121982, 19610.63570098076, 19336.737183069097, + 18976.82160259193, 18546.6669874564, 18066.997613883086, + 17554.603632221617, 17023.4820213956, 16482.87575374978, + 15937.076572780901, 15389.18208571676, 14842.84244721008, + 14304.564910555364, 13783.962106860326, 13292.090391619698, + 12837.233318659715, 12421.68096974869, 12038.21085787566, + 11668.22933093801, 11285.397730201477, 10859.240770605416, + 10362.760816464657, 9777.741823087154, 9103.608356476809, + 8355.265745022618, 7564.106240914738, 6772.9374290588685, + 6026.620721288794, 5365.15103769757, 4817.269529923466, 4397.71230879085, + 4103.201354577289, 3922.3552581361287, 3835.1193919080124, + 3820.10463263626, 3861.531840188344, 3946.440106725121, + 4068.3651904234544, 4222.826400262702, 4403.435907859223, + 4601.8146193886105, 4804.198788137226, 4993.886367012049, + 5154.057295182508, 5271.635103867312, 5339.132847763421, + 5358.097466389865, 5337.643480216318, 5290.212839005752, + 5230.577867412791, 5169.635885776647, 5112.42292443834, 5057.855852271436, + 4999.8244330275575, 4930.509059003961, 4844.114322827165, + 4739.450915189665, 4621.804979598041, 4501.001831424368, + 4389.343191524555, 4297.717881340194, 4232.552289540869, + 4193.479106167837, 4174.809795581843, 4167.198974752176, + 4161.1942472984765, 4151.476070813144, 4138.385491134643, + 4128.015201515254, 4130.127754448737, 4153.8902686801275, + 4204.613774951483, 4280.384288870448, 4372.251334242268, 4468.11574326453, + 4556.918867801259, 4635.946414451575, 4716.120293144883, + 4824.159426662484, 5001.572693437531, 5297.307683450274, + 5759.022071978927, 6425.082858298913, 7307.246453295392, 8396.970087636684 + ], + "flow:branch83_seg0:J79": [ + 0.7709964795681099, 1.0037220981802724, 1.2682310504549819, + 1.55402121091903, 1.8483776888267298, 2.1388283037073443, + 2.4146205454272915, 2.667912588499386, 2.8935751340512286, + 3.090000519340929, 3.2572808698979103, 3.396398294681694, + 3.508896253462049, 3.5953434904031765, 3.656004866376457, + 3.6908488648110573, 3.699718478123859, 3.6836315701019204, + 3.6442202834792665, 3.5842299252927345, 3.507227764479508, + 3.416672980047913, 3.3158961758912393, 3.2074979814067537, + 3.093336056351294, 2.9748544000614103, 2.8533497206086533, + 2.7304119392115833, 2.6080637113330383, 2.488635444123004, + 2.3742277446220283, 2.266186203363267, 2.1643607354910013, + 2.0667234133151196, 1.9695529737046258, 1.8678692122326421, + 1.7564943855632222, 1.6311524894838774, 1.4898466208081527, + 1.3331314664275837, 1.1646889111046197, 0.9906354895054341, + 0.8184700984676833, 0.655842399034422, 0.5094107461705384, + 0.3837698922380084, 0.28092667542804156, 0.2010284765205889, + 0.14215918851223674, 0.10171191384341383, 0.07708742580529339, + 0.06586019686699296, 0.06644963134263401, 0.077516666153551, + 0.09768641480994222, 0.12528975387326077, 0.15783682173053815, + 0.19226034671823988, 0.225196844651959, 0.2535584534096741, + 0.2749876595349969, 0.2884914376025046, 0.29435735762895376, + 0.29390212682466443, 0.28915838479357026, 0.28199968984732093, + 0.2737244850911116, 0.264745665513079, 0.25458638809241524, + 0.24225916045080229, 0.22677414412962496, 0.20766935273202275, + 0.18538037734592944, 0.16118273458450877, 0.13700425053008733, + 0.11486026635708031, 0.09632468595533424, 0.08205884965278983, + 0.07181724011976118, 0.0645171436076187, 0.0587737836821482, + 0.05350718586042785, 0.048339148762801216, 0.04380863780063528, + 0.041211271982318276, 0.042072933850553065, 0.047601633070457436, + 0.05804671405785614, 0.0725621782367983, 0.08946645854134333, + 0.10685975338627196, 0.123710985777644, 0.1408518854618607, + 0.1616545221680753, 0.1922391888777159, 0.24069208555076954, + 0.3160700128537226, 0.4266237209886572, 0.5775654951861071, + 0.7709964795681099 + ], + "pressure:branch83_seg0:J79": [ + 7404.78874751695, 8393.63025492759, 9496.229719561192, 10667.402483508165, + 11855.072953282031, 13009.840502087374, 14091.461775744623, + 15074.234735950457, 15940.739708537438, 16687.820870824366, + 17320.207831004034, 17840.41190967451, 18255.12647642065, + 18566.28342005627, 18772.790867746266, 18876.230819155975, + 18875.293723703293, 18775.069553163128, 18585.37319183791, + 18316.793794582692, 17984.981508354118, 17603.96871736388, + 17185.793412739673, 16740.34915730759, 16274.002914379249, + 15792.066071856027, 15300.024775840024, 14804.777685993598, + 14315.03349307658, 13840.428416907527, 13388.711171484978, + 12963.47478182837, 12562.002559671635, 12173.117034745395, + 11779.670335807603, 11360.461686021164, 10895.560027757261, + 10369.257089918876, 9777.540527697965, 9127.285575069365, + 8436.473858456306, 7733.326259616741, 7049.072229709057, + 6413.850456276141, 5851.374786938591, 5378.064014530705, + 4997.790297952479, 4707.944208344734, 4500.001710390512, + 4361.645808531889, 4283.413769231923, 4256.384405834934, + 4274.5251640243605, 4333.28472764195, 4426.401791816898, + 4546.4723636053795, 4682.55600544302, 4821.3930240892405, + 4949.3797704157605, 5055.1041484856105, 5130.399231285922, + 5172.961349672691, 5186.539162687528, 5176.997221235991, + 5153.0257525499155, 5121.948068843103, 5087.598984783388, + 5050.313023717689, 5007.160926672318, 4953.692793302841, + 4886.451048135419, 4804.467627883832, 4710.908690895023, 4612.12650280043, + 4516.338989190053, 4431.399885246858, 4362.751618416412, + 4311.587059047517, 4275.489933674441, 4249.45470861783, 4227.708504047645, + 4206.697202033508, 4186.2063859860755, 4169.647158648256, + 4163.054490002141, 4172.444561753853, 4201.765811292083, + 4250.646147296012, 4313.745190219931, 4383.74936216365, 4453.399355310628, + 4520.4005746991, 4591.389051065287, 4683.825747037254, 4825.9852437777145, + 5053.030242608686, 5400.240333015392, 5899.926210582373, 6567.72926318347, + 7404.78874751695 + ], + "flow:J79:branch83_seg1": [ + 0.7709964795681099, 1.0037220981802724, 1.2682310504549819, + 1.55402121091903, 1.8483776888267298, 2.1388283037073443, + 2.4146205454272915, 2.667912588499386, 2.8935751340512286, + 3.090000519340929, 3.2572808698979103, 3.396398294681694, + 3.508896253462049, 3.5953434904031765, 3.656004866376457, + 3.6908488648110573, 3.699718478123859, 3.6836315701019204, + 3.6442202834792665, 3.5842299252927345, 3.507227764479508, + 3.416672980047913, 3.3158961758912393, 3.2074979814067537, + 3.093336056351294, 2.9748544000614103, 2.8533497206086533, + 2.7304119392115833, 2.6080637113330383, 2.488635444123004, + 2.3742277446220283, 2.266186203363267, 2.1643607354910013, + 2.0667234133151196, 1.9695529737046258, 1.8678692122326421, + 1.7564943855632222, 1.6311524894838774, 1.4898466208081527, + 1.3331314664275837, 1.1646889111046197, 0.9906354895054341, + 0.8184700984676833, 0.655842399034422, 0.5094107461705384, + 0.3837698922380084, 0.28092667542804156, 0.2010284765205889, + 0.14215918851223674, 0.10171191384341383, 0.07708742580529339, + 0.06586019686699296, 0.06644963134263401, 0.077516666153551, + 0.09768641480994222, 0.12528975387326077, 0.15783682173053815, + 0.19226034671823988, 0.225196844651959, 0.2535584534096741, + 0.2749876595349969, 0.2884914376025046, 0.29435735762895376, + 0.29390212682466443, 0.28915838479357026, 0.28199968984732093, + 0.2737244850911116, 0.264745665513079, 0.25458638809241524, + 0.24225916045080229, 0.22677414412962496, 0.20766935273202275, + 0.18538037734592944, 0.16118273458450877, 0.13700425053008733, + 0.11486026635708031, 0.09632468595533424, 0.08205884965278983, + 0.07181724011976118, 0.0645171436076187, 0.0587737836821482, + 0.05350718586042785, 0.048339148762801216, 0.04380863780063528, + 0.041211271982318276, 0.042072933850553065, 0.047601633070457436, + 0.05804671405785614, 0.0725621782367983, 0.08946645854134333, + 0.10685975338627196, 0.123710985777644, 0.1408518854618607, + 0.1616545221680753, 0.1922391888777159, 0.24069208555076954, + 0.3160700128537226, 0.4266237209886572, 0.5775654951861071, + 0.7709964795681099 + ], + "pressure:J79:branch83_seg1": [ + 7404.78874751695, 8393.63025492759, 9496.229719561192, 10667.402483508165, + 11855.072953282031, 13009.840502087374, 14091.461775744623, + 15074.234735950457, 15940.739708537438, 16687.820870824366, + 17320.207831004034, 17840.41190967451, 18255.12647642065, + 18566.28342005627, 18772.790867746266, 18876.230819155975, + 18875.293723703293, 18775.069553163128, 18585.37319183791, + 18316.793794582692, 17984.981508354118, 17603.96871736388, + 17185.793412739673, 16740.34915730759, 16274.002914379249, + 15792.066071856027, 15300.024775840024, 14804.777685993598, + 14315.03349307658, 13840.428416907527, 13388.711171484978, + 12963.47478182837, 12562.002559671635, 12173.117034745395, + 11779.670335807603, 11360.461686021164, 10895.560027757261, + 10369.257089918876, 9777.540527697965, 9127.285575069365, + 8436.473858456306, 7733.326259616741, 7049.072229709057, + 6413.850456276141, 5851.374786938591, 5378.064014530705, + 4997.790297952479, 4707.944208344734, 4500.001710390512, + 4361.645808531889, 4283.413769231923, 4256.384405834934, + 4274.5251640243605, 4333.28472764195, 4426.401791816898, + 4546.4723636053795, 4682.55600544302, 4821.3930240892405, + 4949.3797704157605, 5055.1041484856105, 5130.399231285922, + 5172.961349672691, 5186.539162687528, 5176.997221235991, + 5153.0257525499155, 5121.948068843103, 5087.598984783388, + 5050.313023717689, 5007.160926672318, 4953.692793302841, + 4886.451048135419, 4804.467627883832, 4710.908690895023, 4612.12650280043, + 4516.338989190053, 4431.399885246858, 4362.751618416412, + 4311.587059047517, 4275.489933674441, 4249.45470861783, 4227.708504047645, + 4206.697202033508, 4186.2063859860755, 4169.647158648256, + 4163.054490002141, 4172.444561753853, 4201.765811292083, + 4250.646147296012, 4313.745190219931, 4383.74936216365, 4453.399355310628, + 4520.4005746991, 4591.389051065287, 4683.825747037254, 4825.9852437777145, + 5053.030242608686, 5400.240333015392, 5899.926210582373, 6567.72926318347, + 7404.78874751695 + ], + "flow:branch83_seg1:J80": [ + 0.7698317929430306, 1.0023865220571446, 1.2667732695340652, + 1.552512989400147, 1.8468814499037691, 2.137399482548769, + 2.413303305940712, 2.6667381869090514, 2.892549455228894, + 3.089125848637383, 3.2565506708251952, 3.3958042873175702, + 3.508436753803999, 3.595014393840208, 3.655809000257907, + 3.6907841235428647, 3.699783114784425, 3.6838212353566737, + 3.6445143467962513, 3.5846137280435655, 3.5076848598168118, + 3.417182683922739, 3.316446544379129, 3.208078539463403, + 3.0939390616278972, 2.975474445818388, 2.853978505917293, + 2.731039379539746, 2.6086779921616055, 2.4892254009395303, + 2.3747843513645286, 2.2667097161787395, 2.1648600813806773, + 2.067215565705058, 1.9700640117089583, 1.8684271647728226, + 1.7571210325225226, 1.6318622388234445, 1.490639486171396, + 1.3339882496015536, 1.165580709156321, 0.9915242908495123, + 0.8193144177545454, 0.6566041544154899, 0.5100714893215549, + 0.38431301332488016, 0.2813474363758942, 0.2013431250683474, + 0.14237585541361517, 0.10184633278021374, 0.0771540747688883, + 0.06586316076393504, 0.06639951387432722, 0.07741964038581205, + 0.09754833204694621, 0.1251245289225758, 0.1576593824075482, + 0.19208769082984686, 0.22504607612653008, 0.25344261624508463, + 0.27491262202701017, 0.28845723696888165, 0.29435669384954805, + 0.2939249218646638, 0.2891948815867441, 0.2820418875193492, + 0.2737694987845966, 0.26479582678985847, 0.2546468093624141, + 0.2423357897498261, 0.22686906283988936, 0.20778162747697596, + 0.1855046369027419, 0.16130814804506988, 0.1371202469778771, + 0.11495849160844361, 0.09640102648489539, 0.08211276148327887, + 0.07185540242036675, 0.0645467837950771, 0.05880028749750168, + 0.05353385666534641, 0.04836382279164204, 0.04382484314161372, + 0.04121072325008646, 0.04204864332428662, 0.047551493702446185, + 0.057973886409868725, 0.07247569288284968, 0.08937667048487061, + 0.1067734312401209, 0.12362588714198479, 0.14075294392070586, + 0.16151245872117384, 0.19201326958498874, 0.24033073929692791, + 0.31553816827584885, 0.42588810503199814, 0.5766000212941429, + 0.7698317929430306 + ], + "pressure:branch83_seg1:J80": [ + 7248.5576617436445, 8207.12586173254, 9284.370023184953, + 10436.769009316966, 11613.017917918889, 12763.785455525545, + 13847.909398909595, 14837.528153490306, 15713.922777916901, + 16472.640663577127, 17116.603785905525, 17648.838144401136, + 18075.831783575253, 18399.637846897942, 18620.05212186262, + 18737.96272504512, 18752.333018233432, 18667.77512972844, + 18492.68154860977, 18237.739459828303, 17917.932202291104, + 17547.11815893502, 17137.810143644503, 16700.05545779307, + 16240.624478113206, 15764.990571828655, 15278.473160547337, + 14787.703164596434, 14301.076231471348, 13828.04790428604, + 13376.589495473301, 12951.038899052151, 12549.590515993255, + 12162.406875002815, 11773.404325356261, 11362.036687108497, + 10908.159971668176, 10395.55599841516, 9818.568497985993, + 9182.071413312988, 8502.561839046004, 7806.5398984608355, + 7124.522087103838, 6486.669036130154, 5917.806896877459, + 5435.057149540194, 5044.012024455156, 4743.451817871586, + 4525.223358104428, 4377.881253286836, 4291.634690025558, 4257.25992668442, + 4268.676036315274, 4321.007745587071, 4408.34055713635, 4523.650376295274, + 4656.460953990156, 4794.003565206713, 4922.818811824785, + 5031.1716619428435, 5110.396798949919, 5157.503030837366, + 5175.146911448323, 5168.889455904025, 5147.14403927374, 5117.271739112809, + 5083.651707118438, 5047.172237270779, 5005.348506836857, + 4953.9625278631465, 4889.358691450738, 4810.206422770379, + 4719.054673050272, 4621.689320773469, 4526.074101251895, + 4440.107751014236, 4369.564126852139, 4316.229801567519, 4278.31796557955, + 4251.125844210945, 4229.002683624013, 4208.098412590263, + 4187.650695789056, 4170.523415738272, 4162.362232263385, + 4169.186015269622, 4195.299188810399, 4240.911086988449, + 4301.523459962168, 4370.1171723283915, 4439.323408361716, + 4506.080155539352, 4575.587979339338, 4663.532285283731, + 4796.426934825181, 5008.038845296748, 5333.881211893793, + 5806.343226052089, 6443.131147851473, 7248.5576617436445 + ], + "flow:J80:branch83_seg2": [ + 0.7698317929430306, 1.0023865220571446, 1.2667732695340652, + 1.552512989400147, 1.8468814499037691, 2.137399482548769, + 2.413303305940712, 2.6667381869090514, 2.892549455228894, + 3.089125848637383, 3.2565506708251952, 3.3958042873175702, + 3.508436753803999, 3.595014393840208, 3.655809000257907, + 3.6907841235428647, 3.699783114784425, 3.6838212353566737, + 3.6445143467962513, 3.5846137280435655, 3.5076848598168118, + 3.417182683922739, 3.316446544379129, 3.208078539463403, + 3.0939390616278972, 2.975474445818388, 2.853978505917293, + 2.731039379539746, 2.6086779921616055, 2.4892254009395303, + 2.3747843513645286, 2.2667097161787395, 2.1648600813806773, + 2.067215565705058, 1.9700640117089583, 1.8684271647728226, + 1.7571210325225226, 1.6318622388234445, 1.490639486171396, + 1.3339882496015536, 1.165580709156321, 0.9915242908495123, + 0.8193144177545454, 0.6566041544154899, 0.5100714893215549, + 0.38431301332488016, 0.2813474363758942, 0.2013431250683474, + 0.14237585541361517, 0.10184633278021374, 0.0771540747688883, + 0.06586316076393504, 0.06639951387432722, 0.07741964038581205, + 0.09754833204694621, 0.1251245289225758, 0.1576593824075482, + 0.19208769082984686, 0.22504607612653008, 0.25344261624508463, + 0.27491262202701017, 0.28845723696888165, 0.29435669384954805, + 0.2939249218646638, 0.2891948815867441, 0.2820418875193492, + 0.2737694987845966, 0.26479582678985847, 0.2546468093624141, + 0.2423357897498261, 0.22686906283988936, 0.20778162747697596, + 0.1855046369027419, 0.16130814804506988, 0.1371202469778771, + 0.11495849160844361, 0.09640102648489539, 0.08211276148327887, + 0.07185540242036675, 0.0645467837950771, 0.05880028749750168, + 0.05353385666534641, 0.04836382279164204, 0.04382484314161372, + 0.04121072325008646, 0.04204864332428662, 0.047551493702446185, + 0.057973886409868725, 0.07247569288284968, 0.08937667048487061, + 0.1067734312401209, 0.12362588714198479, 0.14075294392070586, + 0.16151245872117384, 0.19201326958498874, 0.24033073929692791, + 0.31553816827584885, 0.42588810503199814, 0.5766000212941429, + 0.7698317929430306 + ], + "pressure:J80:branch83_seg2": [ + 7248.5576617436445, 8207.12586173254, 9284.370023184953, + 10436.769009316966, 11613.017917918889, 12763.785455525545, + 13847.909398909595, 14837.528153490306, 15713.922777916901, + 16472.640663577127, 17116.603785905525, 17648.838144401136, + 18075.831783575253, 18399.637846897942, 18620.05212186262, + 18737.96272504512, 18752.333018233432, 18667.77512972844, + 18492.68154860977, 18237.739459828303, 17917.932202291104, + 17547.11815893502, 17137.810143644503, 16700.05545779307, + 16240.624478113206, 15764.990571828655, 15278.473160547337, + 14787.703164596434, 14301.076231471348, 13828.04790428604, + 13376.589495473301, 12951.038899052151, 12549.590515993255, + 12162.406875002815, 11773.404325356261, 11362.036687108497, + 10908.159971668176, 10395.55599841516, 9818.568497985993, + 9182.071413312988, 8502.561839046004, 7806.5398984608355, + 7124.522087103838, 6486.669036130154, 5917.806896877459, + 5435.057149540194, 5044.012024455156, 4743.451817871586, + 4525.223358104428, 4377.881253286836, 4291.634690025558, 4257.25992668442, + 4268.676036315274, 4321.007745587071, 4408.34055713635, 4523.650376295274, + 4656.460953990156, 4794.003565206713, 4922.818811824785, + 5031.1716619428435, 5110.396798949919, 5157.503030837366, + 5175.146911448323, 5168.889455904025, 5147.14403927374, 5117.271739112809, + 5083.651707118438, 5047.172237270779, 5005.348506836857, + 4953.9625278631465, 4889.358691450738, 4810.206422770379, + 4719.054673050272, 4621.689320773469, 4526.074101251895, + 4440.107751014236, 4369.564126852139, 4316.229801567519, 4278.31796557955, + 4251.125844210945, 4229.002683624013, 4208.098412590263, + 4187.650695789056, 4170.523415738272, 4162.362232263385, + 4169.186015269622, 4195.299188810399, 4240.911086988449, + 4301.523459962168, 4370.1171723283915, 4439.323408361716, + 4506.080155539352, 4575.587979339338, 4663.532285283731, + 4796.426934825181, 5008.038845296748, 5333.881211893793, + 5806.343226052089, 6443.131147851473, 7248.5576617436445 + ], + "flow:branch86_seg0:J81": [ + 1.4620894112425835, 1.9191347505594607, 2.447042779353707, + 3.024951684039041, 3.6265803233171656, 4.224645142167144, + 4.794470418217991, 5.316887097257155, 5.779104295875436, + 6.175831531114166, 6.506650665971243, 6.7743513899812156, + 6.983272727997246, 7.136660619278202, 7.236864289004813, + 7.285115874461582, 7.282069215722786, 7.22972977468087, 7.131300601817906, + 6.992044426564204, 6.8189022428189245, 6.619209795132589, + 6.4001554846085495, 6.16766768316635, 5.926140438172196, + 5.678767101014013, 5.428100674554537, 5.1769141099765354, + 4.928692858473569, 4.68762693647659, 4.457829653091716, 4.242289637781514, + 4.041394593652607, 3.8519757963631975, 3.667179838932225, + 3.4771518997531854, 3.2708560712060746, 3.0383496498662095, + 2.7735146669631487, 2.4753982048606553, 2.1495105499044698, + 1.8070216930385326, 1.463028024994389, 1.1340174990633656, + 0.8352558158939302, 0.5783234325033519, 0.3696602865886078, + 0.2109530459619611, 0.09922181691564201, 0.02900641840480156, + -0.006034312973109362, -0.012021299590415835, 0.006358697626961883, + 0.045366669319865535, 0.10175858774628646, 0.17202187094867527, + 0.2514369820826208, 0.33411145039141943, 0.4133391215247552, + 0.4826042865057891, 0.5366083407447827, 0.5725324828571059, + 0.5902466544239365, 0.5921155359098285, 0.5823167114073909, + 0.5653140678542757, 0.5447579480898497, 0.522594475271391, + 0.4988024084198068, 0.4718947427365595, 0.4398615186421529, + 0.40130644287996764, 0.35636703222240096, 0.3069772071393245, + 0.25663849966939206, 0.2094853744292631, 0.169178409916503, + 0.1378440988588777, 0.11569584848135983, 0.10103275304939, + 0.09110682924585656, 0.08326119069235557, 0.07596107913073295, + 0.06945951732787838, 0.0657568730485439, 0.06779740358832684, + 0.07835852310883903, 0.09870598682110229, 0.1279782569779648, + 0.1633118600582372, 0.2008695960775184, 0.237809078562057, + 0.27440296253919827, 0.3157603777877777, 0.3726651052209374, + 0.4606601510258672, 0.5981857599010619, 0.8031793795874341, + 1.0889329077111842, 1.4620894112425835 + ], + "pressure:branch86_seg0:J81": [ + 8046.878187935866, 9199.147326945204, 10459.667749607854, + 11770.972805611684, 13070.153059287259, 14299.880346274678, + 15416.754729510585, 16397.959414125253, 17229.67626622116, + 17914.787310220174, 18466.789467459843, 18892.276595955558, + 19202.76555923411, 19403.352966222024, 19493.43071042334, + 19477.3425460195, 19354.352207216278, 19131.526281278533, + 18822.70418152859, 18440.316489873687, 18003.32355441798, + 17527.717231220893, 17025.961786819134, 16508.19847928318, + 15979.85961828205, 15445.39640051192, 14909.897700564594, + 14380.311367521428, 13865.846710459977, 13376.684090091461, + 12920.227474009354, 12498.286301982915, 12105.163472651255, + 11724.675383121834, 11334.33134568992, 10907.946373441153, + 10422.535165660913, 9861.0488327674, 9222.155709767603, 8518.23130560235, + 7773.843585142065, 7025.6888654250415, 6312.036050432503, + 5668.0093421680485, 5118.923048943563, 4681.250372022917, + 4354.657209880633, 4131.646056341247, 3999.089799649207, + 3938.941707448144, 3938.936285116382, 3987.857318057231, + 4078.2162699328574, 4205.1625355179, 4360.989829219163, 4537.026192010553, + 4720.513858253775, 4895.956857523353, 5048.196589412771, + 5165.569898816234, 5240.63745820602, 5273.151862659587, 5270.736020573152, + 5242.215349533613, 5199.271152894591, 5151.314535966505, + 5102.531924167371, 5052.6119641107425, 4997.357247468514, + 4930.986400340696, 4849.506847836616, 4752.196381721046, + 4643.673333307659, 4532.2258843032905, 4427.8836749901575, + 4339.70300852435, 4273.321178532563, 4228.784342903933, 4201.775443630216, + 4185.413527629982, 4172.180549079728, 4158.0033515024525, + 4143.312460528981, 4132.922265521595, 4134.583230263758, + 4155.423748409334, 4199.515832008784, 4265.435069789617, + 4345.382653361801, 4430.018088766334, 4510.827268529272, + 4586.1902651779155, 4666.101650382232, 4773.83418328096, + 4945.1676814432485, 5223.008190161098, 5647.4686903921865, + 6254.486359933954, 7056.360586735033, 8046.878187935866 + ], + "flow:J81:branch86_seg1": [ + 1.4620894112425835, 1.9191347505594607, 2.447042779353707, + 3.024951684039041, 3.6265803233171656, 4.224645142167144, + 4.794470418217991, 5.316887097257155, 5.779104295875436, + 6.175831531114166, 6.506650665971243, 6.7743513899812156, + 6.983272727997246, 7.136660619278202, 7.236864289004813, + 7.285115874461582, 7.282069215722786, 7.22972977468087, 7.131300601817906, + 6.992044426564204, 6.8189022428189245, 6.619209795132589, + 6.4001554846085495, 6.16766768316635, 5.926140438172196, + 5.678767101014013, 5.428100674554537, 5.1769141099765354, + 4.928692858473569, 4.68762693647659, 4.457829653091716, 4.242289637781514, + 4.041394593652607, 3.8519757963631975, 3.667179838932225, + 3.4771518997531854, 3.2708560712060746, 3.0383496498662095, + 2.7735146669631487, 2.4753982048606553, 2.1495105499044698, + 1.8070216930385326, 1.463028024994389, 1.1340174990633656, + 0.8352558158939302, 0.5783234325033519, 0.3696602865886078, + 0.2109530459619611, 0.09922181691564201, 0.02900641840480156, + -0.006034312973109362, -0.012021299590415835, 0.006358697626961883, + 0.045366669319865535, 0.10175858774628646, 0.17202187094867527, + 0.2514369820826208, 0.33411145039141943, 0.4133391215247552, + 0.4826042865057891, 0.5366083407447827, 0.5725324828571059, + 0.5902466544239365, 0.5921155359098285, 0.5823167114073909, + 0.5653140678542757, 0.5447579480898497, 0.522594475271391, + 0.4988024084198068, 0.4718947427365595, 0.4398615186421529, + 0.40130644287996764, 0.35636703222240096, 0.3069772071393245, + 0.25663849966939206, 0.2094853744292631, 0.169178409916503, + 0.1378440988588777, 0.11569584848135983, 0.10103275304939, + 0.09110682924585656, 0.08326119069235557, 0.07596107913073295, + 0.06945951732787838, 0.0657568730485439, 0.06779740358832684, + 0.07835852310883903, 0.09870598682110229, 0.1279782569779648, + 0.1633118600582372, 0.2008695960775184, 0.237809078562057, + 0.27440296253919827, 0.3157603777877777, 0.3726651052209374, + 0.4606601510258672, 0.5981857599010619, 0.8031793795874341, + 1.0889329077111842, 1.4620894112425835 + ], + "pressure:J81:branch86_seg1": [ + 8046.878187935866, 9199.147326945204, 10459.667749607854, + 11770.972805611684, 13070.153059287259, 14299.880346274678, + 15416.754729510585, 16397.959414125253, 17229.67626622116, + 17914.787310220174, 18466.789467459843, 18892.276595955558, + 19202.76555923411, 19403.352966222024, 19493.43071042334, + 19477.3425460195, 19354.352207216278, 19131.526281278533, + 18822.70418152859, 18440.316489873687, 18003.32355441798, + 17527.717231220893, 17025.961786819134, 16508.19847928318, + 15979.85961828205, 15445.39640051192, 14909.897700564594, + 14380.311367521428, 13865.846710459977, 13376.684090091461, + 12920.227474009354, 12498.286301982915, 12105.163472651255, + 11724.675383121834, 11334.33134568992, 10907.946373441153, + 10422.535165660913, 9861.0488327674, 9222.155709767603, 8518.23130560235, + 7773.843585142065, 7025.6888654250415, 6312.036050432503, + 5668.0093421680485, 5118.923048943563, 4681.250372022917, + 4354.657209880633, 4131.646056341247, 3999.089799649207, + 3938.941707448144, 3938.936285116382, 3987.857318057231, + 4078.2162699328574, 4205.1625355179, 4360.989829219163, 4537.026192010553, + 4720.513858253775, 4895.956857523353, 5048.196589412771, + 5165.569898816234, 5240.63745820602, 5273.151862659587, 5270.736020573152, + 5242.215349533613, 5199.271152894591, 5151.314535966505, + 5102.531924167371, 5052.6119641107425, 4997.357247468514, + 4930.986400340696, 4849.506847836616, 4752.196381721046, + 4643.673333307659, 4532.2258843032905, 4427.8836749901575, + 4339.70300852435, 4273.321178532563, 4228.784342903933, 4201.775443630216, + 4185.413527629982, 4172.180549079728, 4158.0033515024525, + 4143.312460528981, 4132.922265521595, 4134.583230263758, + 4155.423748409334, 4199.515832008784, 4265.435069789617, + 4345.382653361801, 4430.018088766334, 4510.827268529272, + 4586.1902651779155, 4666.101650382232, 4773.83418328096, + 4945.1676814432485, 5223.008190161098, 5647.4686903921865, + 6254.486359933954, 7056.360586735033, 8046.878187935866 + ], + "flow:branch86_seg1:J82": [ + 1.4619593313273458, 1.918988397275649, 2.446885932365547, + 3.024793041858117, 3.626426886504451, 4.2245026195050315, + 4.794343079856798, 5.316777849842249, 5.779012674428692, + 6.175757083339196, 6.5065919983834455, 6.774306864625979, + 6.983242092512711, 7.136643059943132, 7.236859942841081, + 7.285124376508159, 7.282090031404337, 7.22976258322004, 7.131342765713713, + 6.992094068958276, 6.818957814537161, 6.619268990440257, + 6.400217167962909, 6.1677309557764755, 5.926204611318044, + 5.678831805797626, 5.428165134409585, 5.1769773042341605, + 4.928753598479078, 4.687684176906324, 4.457882574736342, + 4.242338599723859, 4.041440975197759, 3.852021743396167, + 3.667228518686948, 3.4772065453847087, 3.270918961316861, + 3.038422053041571, 2.7735962861575922, 2.475486275653174, + 2.1496013731584247, 1.8071108196653136, 1.4631106804627505, + 1.1340894225986249, 0.8353155462982296, 0.5783696955505034, + 0.36969272369121536, 0.21097427072884237, 0.09923306358873468, + 0.02900962644512185, -0.00603720977248713, -0.012030011262295866, + 0.00634542314891447, 0.045349598382961744, 0.10173826419443628, + 0.1719999056550228, 0.2514150302847125, 0.3340913254983473, + 0.4133226041916801, 0.48259262868517283, 0.5366018556409979, + 0.572530877122458, 0.5902488039298035, 0.5921200079538707, + 0.5823223714915003, 0.5653199856754616, 0.5447638276943625, + 0.5226006967656345, 0.49880963409427387, 0.47190368754622053, + 0.43987234802363, 0.4013189453033894, 0.3563805612006044, + 0.30699044632468686, 0.25665023232792983, 0.2094947496737331, + 0.16918513323365, 0.13784821173616202, 0.11569829492497737, + 0.1010344761245584, 0.09110841812427269, 0.08326297922919838, + 0.07596273935646557, 0.0694602282758513, 0.06575565996149305, + 0.06779350132426559, 0.07835181868717865, 0.09869696936194357, + 0.1279680745077468, 0.16330177407251695, 0.20086027196039205, + 0.2378000470056314, 0.27439223560783915, 0.31574434501854737, + 0.3726390182158447, 0.46061796175415626, 0.5981240230015238, + 0.8030951963751545, 1.0888233253870916, 1.4619593313273458 + ], + "pressure:branch86_seg1:J82": [ + 8017.4695805941565, 9163.533505201432, 10418.684269946476, + 11725.887089967218, 13022.488396454226, 14251.22179101299, + 15368.536038493778, 16351.26043624991, 17185.225101773394, + 17872.983920188763, 18427.707330106965, 18855.92566133429, + 19169.10047251546, 19372.368246252554, 19465.235761032753, + 19452.02155272674, 19332.03426763501, 19112.23791861202, + 18806.302883215634, 18426.604768121913, 17991.971729060366, + 17518.36276824924, 17018.28951527407, 16501.93738985344, + 15974.822989644408, 15441.444484735008, 14906.887780635236, + 14378.064306674432, 13864.124089452425, 13375.20519177579, + 12918.728981713695, 12496.616624747874, 12103.340800479202, + 11722.963019298704, 11333.223706519382, 10908.101611918291, + 10424.638236238767, 9865.703720592912, 9229.68675237528, 8528.60215301675, + 7786.658874109033, 7040.196973476333, 6327.272395636563, + 5682.9559581747435, 5132.7004882519705, 4693.139644671605, + 4364.279088393019, 4138.906619256033, 4004.0664885027154, + 3941.894162859102, 3940.116120437777, 3987.4821735439996, + 4076.471096183478, 4202.160477080197, 4356.870398445842, + 4531.985372514304, 4714.829796941902, 4890.0011568592445, 5042.3866670043, + 5160.293066658813, 5236.193634687645, 5269.699175223857, + 5268.246299453309, 5240.545080519456, 5198.192014487785, + 5150.592414436514, 5102.009651217895, 5052.240352810629, + 4997.193248488464, 4931.156860923695, 4850.135066791323, + 4753.353454053276, 4645.317938935499, 4534.20225759486, 4429.960633612766, + 4341.630235876488, 4274.893760808228, 4229.900397616662, 4202.4601509618, + 4185.777525860693, 4172.381707139646, 4158.170055386859, + 4143.482502004909, 4133.022981580004, 4134.447276221602, + 4154.851857977935, 4198.3495224399285, 4263.62101070986, + 4343.015649547808, 4427.289050765826, 4507.9466224836, 4583.258583278253, + 4662.974338291521, 4770.029911501084, 4939.83817282409, 5215.001151135549, + 5635.561756494792, 6237.441855028859, 7033.298846208474, + 8017.4695805941565 + ], + "flow:J82:branch86_seg2": [ + 1.4619593313273458, 1.918988397275649, 2.446885932365547, + 3.024793041858117, 3.626426886504451, 4.2245026195050315, + 4.794343079856798, 5.316777849842249, 5.779012674428692, + 6.175757083339196, 6.5065919983834455, 6.774306864625979, + 6.983242092512711, 7.136643059943132, 7.236859942841081, + 7.285124376508159, 7.282090031404337, 7.22976258322004, 7.131342765713713, + 6.992094068958276, 6.818957814537161, 6.619268990440257, + 6.400217167962909, 6.1677309557764755, 5.926204611318044, + 5.678831805797626, 5.428165134409585, 5.1769773042341605, + 4.928753598479078, 4.687684176906324, 4.457882574736342, + 4.242338599723859, 4.041440975197759, 3.852021743396167, + 3.667228518686948, 3.4772065453847087, 3.270918961316861, + 3.038422053041571, 2.7735962861575922, 2.475486275653174, + 2.1496013731584247, 1.8071108196653136, 1.4631106804627505, + 1.1340894225986249, 0.8353155462982296, 0.5783696955505034, + 0.36969272369121536, 0.21097427072884237, 0.09923306358873468, + 0.02900962644512185, -0.00603720977248713, -0.012030011262295866, + 0.00634542314891447, 0.045349598382961744, 0.10173826419443628, + 0.1719999056550228, 0.2514150302847125, 0.3340913254983473, + 0.4133226041916801, 0.48259262868517283, 0.5366018556409979, + 0.572530877122458, 0.5902488039298035, 0.5921200079538707, + 0.5823223714915003, 0.5653199856754616, 0.5447638276943625, + 0.5226006967656345, 0.49880963409427387, 0.47190368754622053, + 0.43987234802363, 0.4013189453033894, 0.3563805612006044, + 0.30699044632468686, 0.25665023232792983, 0.2094947496737331, + 0.16918513323365, 0.13784821173616202, 0.11569829492497737, + 0.1010344761245584, 0.09110841812427269, 0.08326297922919838, + 0.07596273935646557, 0.0694602282758513, 0.06575565996149305, + 0.06779350132426559, 0.07835181868717865, 0.09869696936194357, + 0.1279680745077468, 0.16330177407251695, 0.20086027196039205, + 0.2378000470056314, 0.27439223560783915, 0.31574434501854737, + 0.3726390182158447, 0.46061796175415626, 0.5981240230015238, + 0.8030951963751545, 1.0888233253870916, 1.4619593313273458 + ], + "pressure:J82:branch86_seg2": [ + 8017.4695805941565, 9163.533505201432, 10418.684269946476, + 11725.887089967218, 13022.488396454226, 14251.22179101299, + 15368.536038493778, 16351.26043624991, 17185.225101773394, + 17872.983920188763, 18427.707330106965, 18855.92566133429, + 19169.10047251546, 19372.368246252554, 19465.235761032753, + 19452.02155272674, 19332.03426763501, 19112.23791861202, + 18806.302883215634, 18426.604768121913, 17991.971729060366, + 17518.36276824924, 17018.28951527407, 16501.93738985344, + 15974.822989644408, 15441.444484735008, 14906.887780635236, + 14378.064306674432, 13864.124089452425, 13375.20519177579, + 12918.728981713695, 12496.616624747874, 12103.340800479202, + 11722.963019298704, 11333.223706519382, 10908.101611918291, + 10424.638236238767, 9865.703720592912, 9229.68675237528, 8528.60215301675, + 7786.658874109033, 7040.196973476333, 6327.272395636563, + 5682.9559581747435, 5132.7004882519705, 4693.139644671605, + 4364.279088393019, 4138.906619256033, 4004.0664885027154, + 3941.894162859102, 3940.116120437777, 3987.4821735439996, + 4076.471096183478, 4202.160477080197, 4356.870398445842, + 4531.985372514304, 4714.829796941902, 4890.0011568592445, 5042.3866670043, + 5160.293066658813, 5236.193634687645, 5269.699175223857, + 5268.246299453309, 5240.545080519456, 5198.192014487785, + 5150.592414436514, 5102.009651217895, 5052.240352810629, + 4997.193248488464, 4931.156860923695, 4850.135066791323, + 4753.353454053276, 4645.317938935499, 4534.20225759486, 4429.960633612766, + 4341.630235876488, 4274.893760808228, 4229.900397616662, 4202.4601509618, + 4185.777525860693, 4172.381707139646, 4158.170055386859, + 4143.482502004909, 4133.022981580004, 4134.447276221602, + 4154.851857977935, 4198.3495224399285, 4263.62101070986, + 4343.015649547808, 4427.289050765826, 4507.9466224836, 4583.258583278253, + 4662.974338291521, 4770.029911501084, 4939.83817282409, 5215.001151135549, + 5635.561756494792, 6237.441855028859, 7033.298846208474, + 8017.4695805941565 + ], + "flow:branch87_seg0:J83": [ + 0.6883278844883765, 0.9029445020723696, 1.1501107075015877, + 1.4199832389488298, 1.700130022494641, 1.9778202894338632, + 2.241658608253943, 2.482912802664006, 2.69578620826025, + 2.8780649285170212, 3.0297141623001207, 3.152124918758887, + 3.2474009875570267, 3.316997843446769, 3.36199718305772, + 3.3829206320500727, 3.380048112839918, 3.3543779695909945, + 3.3073604285806253, 3.241529940291334, 3.160184637619508, + 3.066708555295415, 2.9644633081543272, 2.856164278310599, + 2.7437988614570146, 2.6288202380108237, 2.512380665950049, + 2.395767962194954, 2.280621090621476, 2.168911281436489, + 2.062549086942357, 1.9629092015469713, 1.87011108718138, + 1.7825768747282407, 1.6970270540098433, 1.6087910988135983, + 1.5126807430083329, 1.404099130105621, 1.2803030078492437, + 1.1409609522615918, 0.9888296507909244, 0.8292680479373462, + 0.6694064642098231, 0.5169475624960683, 0.37901494218584914, + 0.26086244467008995, 0.1653045844414057, 0.09306189610289634, + 0.042553048265539524, 0.01116899607020998, -0.004045894820269185, + -0.005980112228777351, 0.00326694089616116, 0.021989246184934096, + 0.048677608129120975, 0.0817235419868011, 0.1188977572948888, + 0.1574252418015251, 0.19416760186500703, 0.22609439942836285, + 0.25076658122963685, 0.2669447243424586, 0.2746388680998126, + 0.2750256943306216, 0.27011248974059915, 0.2619840039462258, + 0.25232081917568466, 0.2419854667157045, 0.23090811415196458, + 0.2183511247969648, 0.20335042439629056, 0.1852696721308944, + 0.16421909672647705, 0.14113699664854892, 0.11770410886280208, + 0.09587007134951968, 0.07733122712248212, 0.06302754955089986, + 0.05301573277475744, 0.04644558920919239, 0.04199313882710127, + 0.03842524428999053, 0.035052621187610114, 0.032040751428012666, + 0.03037363487962301, 0.031454293535117736, 0.03658074705752641, + 0.04630283773678307, 0.06016526090719568, 0.07677280903206048, + 0.0942986385451147, 0.11143119203423378, 0.12836913909843253, + 0.14761015181248308, 0.17432797977462094, 0.21585783272636844, + 0.28092633605192147, 0.37787012581969676, 0.5126410511803184, + 0.6883278844883765 + ], + "pressure:branch87_seg0:J83": [ + 7118.754718111929, 8076.539467403834, 9170.494709892742, + 10356.27118328248, 11578.895489765851, 12783.031805349967, + 13920.194428725556, 14954.872142118258, 15863.295499666654, + 16637.48435637565, 17279.375765774632, 17794.805497195248, + 18193.212669636523, 18480.786503939824, 18661.348533146014, + 18737.56532745262, 18710.39619668289, 18584.396736794362, + 18366.9836404015, 18069.302387665204, 17706.212305317873, + 17292.537595411206, 16842.514769895504, 16367.670497830632, + 15876.176326819172, 15374.07189305184, 14866.356792979965, + 14358.797940667555, 13858.765149515435, 13375.014206774953, + 12915.66708486339, 12486.097643438348, 12086.005142920718, + 11707.25364345178, 11334.582735112452, 10946.99817162123, 10522.042525559, + 10040.217234816171, 9491.089516220978, 8875.149861853086, + 8205.949017426165, 7508.511555651365, 6814.627042020193, + 6157.794438042746, 5568.082040018964, 5067.281338168294, + 4665.877747268203, 4365.607644440374, 4158.7614017533815, + 4033.167109751041, 3976.1588956379464, 3975.394592969202, + 4022.0733416501116, 4109.146065169738, 4229.868136753683, + 4377.109005450352, 4540.796979032547, 4708.449136034015, + 4866.299101566476, 5001.474084815071, 5103.845483428982, + 5168.703292968252, 5197.19844542521, 5194.865885702808, 5170.753379962184, + 5133.951802056919, 5091.28133563429, 5045.921797387418, 4997.052240712458, + 4941.141623685624, 4874.049175832354, 4793.319289506126, + 4699.991437164439, 4598.682569729815, 4497.029033410631, + 4403.530469731748, 4325.288211354169, 4265.793649079406, + 4224.698357733681, 4197.902145358776, 4179.426572504786, + 4164.143403549566, 4149.538268728823, 4136.879455171165, + 4130.8875096311485, 4137.754670146611, 4162.871292111744, + 4208.117710507339, 4270.699234806516, 4344.162055252196, + 4420.552961888359, 4494.747654547001, 4568.857463485128, + 4655.365697190588, 4778.441378357076, 4971.267583451323, 5271.91639112955, + 5716.326978822985, 6328.286824762049, 7118.754718111929 + ], + "flow:J83:branch87_seg1": [ + 0.6883278844883765, 0.9029445020723696, 1.1501107075015877, + 1.4199832389488298, 1.700130022494641, 1.9778202894338632, + 2.241658608253943, 2.482912802664006, 2.69578620826025, + 2.8780649285170212, 3.0297141623001207, 3.152124918758887, + 3.2474009875570267, 3.316997843446769, 3.36199718305772, + 3.3829206320500727, 3.380048112839918, 3.3543779695909945, + 3.3073604285806253, 3.241529940291334, 3.160184637619508, + 3.066708555295415, 2.9644633081543272, 2.856164278310599, + 2.7437988614570146, 2.6288202380108237, 2.512380665950049, + 2.395767962194954, 2.280621090621476, 2.168911281436489, + 2.062549086942357, 1.9629092015469713, 1.87011108718138, + 1.7825768747282407, 1.6970270540098433, 1.6087910988135983, + 1.5126807430083329, 1.404099130105621, 1.2803030078492437, + 1.1409609522615918, 0.9888296507909244, 0.8292680479373462, + 0.6694064642098231, 0.5169475624960683, 0.37901494218584914, + 0.26086244467008995, 0.1653045844414057, 0.09306189610289634, + 0.042553048265539524, 0.01116899607020998, -0.004045894820269185, + -0.005980112228777351, 0.00326694089616116, 0.021989246184934096, + 0.048677608129120975, 0.0817235419868011, 0.1188977572948888, + 0.1574252418015251, 0.19416760186500703, 0.22609439942836285, + 0.25076658122963685, 0.2669447243424586, 0.2746388680998126, + 0.2750256943306216, 0.27011248974059915, 0.2619840039462258, + 0.25232081917568466, 0.2419854667157045, 0.23090811415196458, + 0.2183511247969648, 0.20335042439629056, 0.1852696721308944, + 0.16421909672647705, 0.14113699664854892, 0.11770410886280208, + 0.09587007134951968, 0.07733122712248212, 0.06302754955089986, + 0.05301573277475744, 0.04644558920919239, 0.04199313882710127, + 0.03842524428999053, 0.035052621187610114, 0.032040751428012666, + 0.03037363487962301, 0.031454293535117736, 0.03658074705752641, + 0.04630283773678307, 0.06016526090719568, 0.07677280903206048, + 0.0942986385451147, 0.11143119203423378, 0.12836913909843253, + 0.14761015181248308, 0.17432797977462094, 0.21585783272636844, + 0.28092633605192147, 0.37787012581969676, 0.5126410511803184, + 0.6883278844883765 + ], + "pressure:J83:branch87_seg1": [ + 7118.754718111929, 8076.539467403834, 9170.494709892742, + 10356.27118328248, 11578.895489765851, 12783.031805349967, + 13920.194428725556, 14954.872142118258, 15863.295499666654, + 16637.48435637565, 17279.375765774632, 17794.805497195248, + 18193.212669636523, 18480.786503939824, 18661.348533146014, + 18737.56532745262, 18710.39619668289, 18584.396736794362, + 18366.9836404015, 18069.302387665204, 17706.212305317873, + 17292.537595411206, 16842.514769895504, 16367.670497830632, + 15876.176326819172, 15374.07189305184, 14866.356792979965, + 14358.797940667555, 13858.765149515435, 13375.014206774953, + 12915.66708486339, 12486.097643438348, 12086.005142920718, + 11707.25364345178, 11334.582735112452, 10946.99817162123, 10522.042525559, + 10040.217234816171, 9491.089516220978, 8875.149861853086, + 8205.949017426165, 7508.511555651365, 6814.627042020193, + 6157.794438042746, 5568.082040018964, 5067.281338168294, + 4665.877747268203, 4365.607644440374, 4158.7614017533815, + 4033.167109751041, 3976.1588956379464, 3975.394592969202, + 4022.0733416501116, 4109.146065169738, 4229.868136753683, + 4377.109005450352, 4540.796979032547, 4708.449136034015, + 4866.299101566476, 5001.474084815071, 5103.845483428982, + 5168.703292968252, 5197.19844542521, 5194.865885702808, 5170.753379962184, + 5133.951802056919, 5091.28133563429, 5045.921797387418, 4997.052240712458, + 4941.141623685624, 4874.049175832354, 4793.319289506126, + 4699.991437164439, 4598.682569729815, 4497.029033410631, + 4403.530469731748, 4325.288211354169, 4265.793649079406, + 4224.698357733681, 4197.902145358776, 4179.426572504786, + 4164.143403549566, 4149.538268728823, 4136.879455171165, + 4130.8875096311485, 4137.754670146611, 4162.871292111744, + 4208.117710507339, 4270.699234806516, 4344.162055252196, + 4420.552961888359, 4494.747654547001, 4568.857463485128, + 4655.365697190588, 4778.441378357076, 4971.267583451323, 5271.91639112955, + 5716.326978822985, 6328.286824762049, 7118.754718111929 + ], + "flow:branch87_seg1:J84": [ + 0.6873286061608532, 0.9017682179172327, 1.1488014778151825, + 1.4186010260696476, 1.6987375259118056, 1.9764778841055517, + 2.2404168248909535, 2.4818030142696794, 2.6948268536420037, + 2.8772613208467175, 3.0290565956200743, 3.1516059113204276, + 3.2470122135067543, 3.3167312589640363, 3.3618525450127397, + 3.382893013223197, 3.3801350294017025, 3.354576996352631, + 3.3076561143833128, 3.241908679287867, 3.1606303406411467, + 3.0672025898384274, 2.9649919517863434, 2.856715996893099, + 2.7443655031124807, 2.6293963234214384, 2.5129601249349682, + 2.3963433029844037, 2.2811831491248165, 2.169449855630324, + 2.063055721359866, 1.9633810008232317, 1.8705522543981157, + 1.7830010115272448, 1.6974556032992023, 1.6092501949007905, + 1.513193720338935, 1.4046851271426584, 1.2809687368411415, + 1.1416963994730174, 0.9896139182529278, 0.8300674758283689, + 0.6701823788221102, 0.5176615229494751, 0.3796398325912655, + 0.2613781581513469, 0.16570276934936778, 0.09334942029558607, + 0.04273952036856122, 0.011270272873547852, -0.004014513177773431, + -0.006008101676286058, 0.003189457877004891, 0.021869604438755463, + 0.04852320169288625, 0.08154429878815424, 0.11870632834074563, + 0.15723696049599337, 0.19399853971890763, 0.2259575608032897, + 0.25067069178930934, 0.2668929890768216, 0.27462543757473246, + 0.2750423273563999, 0.2701490314330801, 0.26203032127990766, + 0.25237110113231287, 0.24203865903915786, 0.23096695961388786, + 0.2184206416738119, 0.20343438798461042, 0.18536922633632053, + 0.16433135016921951, 0.1412542737214525, 0.11781681754259248, + 0.09596908767136098, 0.07741010870552446, 0.06308423698886055, + 0.05305334783915815, 0.04647020779129113, 0.042011478718988485, + 0.03844215445077248, 0.03506881321688694, 0.03205256571452404, + 0.030374297347802733, 0.03143682634987054, 0.03654074210996578, + 0.04624008153790449, 0.06008619807552098, 0.07668615583685742, + 0.0942124303032559, 0.11134798219575205, 0.1282811219134018, + 0.14749653304563595, 0.1741556434904849, 0.21558283172047005, + 0.2805086370130448, 0.37727380953107004, 0.5118406628508246, + 0.6873286061608532 + ], + "pressure:branch87_seg1:J84": [ + 7020.544822166004, 7957.922140818396, 9034.5476973111, 10207.308928665456, + 11422.052804097308, 12623.644089543015, 13763.069253043426, + 14803.30341707368, 15719.699445532775, 16503.199279476263, + 17154.329812944303, 17679.050960928744, 18086.574064332868, + 18383.156170416292, 18573.203711540496, 18659.09787010612, + 18641.970604273032, 18526.21934664635, 18318.46184010142, + 18029.723334634917, 17674.456094820085, 17267.341612169203, + 16822.821957342312, 16352.565380880065, 15865.02631993937, + 15366.410022980475, 14861.69991723362, 14356.525692419551, + 13858.063366838733, 13374.910032968775, 12915.281496752743, + 12484.94188092992, 12084.149890699364, 11705.663170516053, + 11334.9605438145, 10951.59407127105, 10533.119948107797, + 10059.784918081026, 9520.182395724385, 8913.486573341132, + 8252.13898928843, 7559.900055860574, 6867.904527491581, 6209.514728887712, + 5615.310578654602, 5107.70584331374, 4698.324588470525, 4389.859982926869, + 4175.183011336862, 4042.729778508326, 3979.7626969046783, + 3973.8291093811695, 4015.949101239077, 4098.852902899759, + 4215.940249087914, 4360.207172311966, 4521.8766864087775, + 4688.794811083995, 4847.330170863942, 4984.452675725516, + 5089.749122345747, 5158.067623329785, 5189.804308349954, + 5190.1922675574315, 5168.029207439252, 5132.353444008886, + 5090.289749844958, 5045.392591727337, 4997.193340307756, + 4942.392938337487, 4876.828983871096, 4797.844231409466, + 4706.0962658547005, 4605.817970358851, 4504.395961795688, + 4410.28368935136, 4330.742418731408, 4269.651716331337, 4227.06936792932, + 4199.183582281668, 4180.1850773052665, 4164.80773428635, 4150.21899648776, + 4137.310508261659, 4130.486460289182, 4135.854601538844, + 4158.957925423002, 4202.015683344347, 4262.796571056954, + 4335.131354646111, 4411.101953291504, 4485.208930213934, + 4558.708775971206, 4642.935965009087, 4760.834933884415, + 4944.582314452944, 5232.032449244405, 5659.196531163515, + 6251.157368860843, 7020.544822166004 + ], + "flow:J84:branch87_seg2": [ + 0.6873286061608532, 0.9017682179172327, 1.1488014778151825, + 1.4186010260696476, 1.6987375259118056, 1.9764778841055517, + 2.2404168248909535, 2.4818030142696794, 2.6948268536420037, + 2.8772613208467175, 3.0290565956200743, 3.1516059113204276, + 3.2470122135067543, 3.3167312589640363, 3.3618525450127397, + 3.382893013223197, 3.3801350294017025, 3.354576996352631, + 3.3076561143833128, 3.241908679287867, 3.1606303406411467, + 3.0672025898384274, 2.9649919517863434, 2.856715996893099, + 2.7443655031124807, 2.6293963234214384, 2.5129601249349682, + 2.3963433029844037, 2.2811831491248165, 2.169449855630324, + 2.063055721359866, 1.9633810008232317, 1.8705522543981157, + 1.7830010115272448, 1.6974556032992023, 1.6092501949007905, + 1.513193720338935, 1.4046851271426584, 1.2809687368411415, + 1.1416963994730174, 0.9896139182529278, 0.8300674758283689, + 0.6701823788221102, 0.5176615229494751, 0.3796398325912655, + 0.2613781581513469, 0.16570276934936778, 0.09334942029558607, + 0.04273952036856122, 0.011270272873547852, -0.004014513177773431, + -0.006008101676286058, 0.003189457877004891, 0.021869604438755463, + 0.04852320169288625, 0.08154429878815424, 0.11870632834074563, + 0.15723696049599337, 0.19399853971890763, 0.2259575608032897, + 0.25067069178930934, 0.2668929890768216, 0.27462543757473246, + 0.2750423273563999, 0.2701490314330801, 0.26203032127990766, + 0.25237110113231287, 0.24203865903915786, 0.23096695961388786, + 0.2184206416738119, 0.20343438798461042, 0.18536922633632053, + 0.16433135016921951, 0.1412542737214525, 0.11781681754259248, + 0.09596908767136098, 0.07741010870552446, 0.06308423698886055, + 0.05305334783915815, 0.04647020779129113, 0.042011478718988485, + 0.03844215445077248, 0.03506881321688694, 0.03205256571452404, + 0.030374297347802733, 0.03143682634987054, 0.03654074210996578, + 0.04624008153790449, 0.06008619807552098, 0.07668615583685742, + 0.0942124303032559, 0.11134798219575205, 0.1282811219134018, + 0.14749653304563595, 0.1741556434904849, 0.21558283172047005, + 0.2805086370130448, 0.37727380953107004, 0.5118406628508246, + 0.6873286061608532 + ], + "pressure:J84:branch87_seg2": [ + 7020.544822166004, 7957.922140818396, 9034.5476973111, 10207.308928665456, + 11422.052804097308, 12623.644089543015, 13763.069253043426, + 14803.30341707368, 15719.699445532775, 16503.199279476263, + 17154.329812944303, 17679.050960928744, 18086.574064332868, + 18383.156170416292, 18573.203711540496, 18659.09787010612, + 18641.970604273032, 18526.21934664635, 18318.46184010142, + 18029.723334634917, 17674.456094820085, 17267.341612169203, + 16822.821957342312, 16352.565380880065, 15865.02631993937, + 15366.410022980475, 14861.69991723362, 14356.525692419551, + 13858.063366838733, 13374.910032968775, 12915.281496752743, + 12484.94188092992, 12084.149890699364, 11705.663170516053, + 11334.9605438145, 10951.59407127105, 10533.119948107797, + 10059.784918081026, 9520.182395724385, 8913.486573341132, + 8252.13898928843, 7559.900055860574, 6867.904527491581, 6209.514728887712, + 5615.310578654602, 5107.70584331374, 4698.324588470525, 4389.859982926869, + 4175.183011336862, 4042.729778508326, 3979.7626969046783, + 3973.8291093811695, 4015.949101239077, 4098.852902899759, + 4215.940249087914, 4360.207172311966, 4521.8766864087775, + 4688.794811083995, 4847.330170863942, 4984.452675725516, + 5089.749122345747, 5158.067623329785, 5189.804308349954, + 5190.1922675574315, 5168.029207439252, 5132.353444008886, + 5090.289749844958, 5045.392591727337, 4997.193340307756, + 4942.392938337487, 4876.828983871096, 4797.844231409466, + 4706.0962658547005, 4605.817970358851, 4504.395961795688, + 4410.28368935136, 4330.742418731408, 4269.651716331337, 4227.06936792932, + 4199.183582281668, 4180.1850773052665, 4164.80773428635, 4150.21899648776, + 4137.310508261659, 4130.486460289182, 4135.854601538844, + 4158.957925423002, 4202.015683344347, 4262.796571056954, + 4335.131354646111, 4411.101953291504, 4485.208930213934, + 4558.708775971206, 4642.935965009087, 4760.834933884415, + 4944.582314452944, 5232.032449244405, 5659.196531163515, + 6251.157368860843, 7020.544822166004 + ], + "flow:branch90_seg0:J85": [ + 0.8371388995164721, 1.0779123939154023, 1.3391082882406071, + 1.6074916844495972, 1.8688220797157602, 2.1111138407371497, + 2.3258775379815324, 2.508979470325467, 2.6590405750837625, + 2.778568551905291, 2.8709414930190698, 2.939047934773435, + 2.985848255509739, 3.0121314332794946, 3.01809554058416, + 3.0038004933018536, 2.969000999241053, 2.9153448824632946, + 2.845052186207993, 2.761368171226676, 2.668356110737511, + 2.569255514262271, 2.466859498169833, 2.362894126956664, + 2.2581435165851507, 2.1531605116723442, 2.048582220059056, + 1.9456474630957004, 1.8462149337341198, 1.7524364939333574, + 1.665914962179702, 1.5871196505934877, 1.5146061687732184, + 1.4447363943883813, 1.3723804116443423, 1.2916003527344782, + 1.197141201046564, 1.0855632043265917, 0.9568473829734072, + 0.813943534824602, 0.6631187830328065, 0.5127027389848914, + 0.3713649702786256, 0.24674137532033266, 0.14431795636318123, + 0.06660389586435335, 0.012763949444805254, -0.01948081847702992, + -0.034276136612587535, -0.03568676325398808, -0.02675116518687108, + -0.009953751025026714, 0.013646997830647002, 0.04322624539385618, + 0.07764699903918308, 0.115382511281709, 0.1537827513619025, + 0.18966288974577386, 0.2198024377268686, 0.24169606376906122, + 0.25393612581031405, 0.2569065595912781, 0.25237981247669083, + 0.2428300339534454, 0.23114722704341376, 0.2194016263454454, + 0.20854233747557094, 0.19830971073859985, 0.1874587679966994, + 0.1744387074223062, 0.1580914854415999, 0.13820518419667727, + 0.11582346337462764, 0.09285685650332272, 0.07171712960148348, + 0.05451057339090727, 0.042452867581121934, 0.03542104189254943, + 0.032293992228189246, 0.031199527147029213, 0.03029056106134371, + 0.028548870866473456, 0.026054804272132203, 0.024024613514453057, + 0.024382371742060857, 0.02892478041037775, 0.038687010591700544, + 0.05326366534323831, 0.07091189370885415, 0.08924094719681475, + 0.10607137457149, 0.120861618241287, 0.13571751822327227, + 0.15580446784720184, 0.1891480347152579, 0.24513215805729197, + 0.33307487168074745, 0.4602082513639805, 0.6286878158267397, + 0.8371388995164721 + ], + "pressure:branch90_seg0:J85": [ + 8688.41366192405, 9999.356163855131, 11404.857319605784, + 12833.739675656398, 14212.06095332212, 15478.083462636338, + 16590.060881613826, 17531.831647105715, 18298.24864077356, + 18903.86238333912, 19370.218351791547, 19709.598559584458, + 19937.136448789923, 20056.816397346203, 20066.96676255012, + 19970.258128728492, 19764.722157421747, 19459.519422667996, + 19070.2490340718, 18612.68888151948, 18109.209208615976, + 17577.046447627956, 17029.168276591165, 16474.413447585423, + 15916.105184904001, 15356.943934864199, 14800.952508694361, + 14255.318744627408, 13730.419503204848, 13237.78677745842, + 12785.106842120114, 12372.947821770284, 11991.915317490872, + 11620.263936892039, 11229.375085606314, 10787.51125981395, + 10268.596560492839, 9656.055076115488, 8953.590066884395, + 8181.090212441805, 7373.431290248416, 6577.196570626673, + 5838.170618066038, 5195.360035686112, 4673.958442068847, + 4285.869773249703, 4023.2013655380865, 3871.1894055981506, + 3808.802781654048, 3813.158955289119, 3869.8066277649355, + 3966.9670546330503, 4098.956896137082, 4262.274128814593, + 4449.940065478154, 4652.999254330034, 4856.750193799567, + 5043.581727551905, 5196.6122652175145, 5303.838754566911, + 5359.101996943769, 5365.664985419224, 5335.253801764471, + 5280.788071206153, 5217.401693178751, 5155.581232705255, + 5098.775622470792, 5044.398031642259, 4985.209680247096, + 4912.889438249929, 4822.19706558406, 4712.958970725702, 4591.968019580729, + 4470.322827768377, 4360.800884425647, 4273.968629470889, + 4215.250627057617, 4182.660202944148, 4169.052514679547, + 4164.386033575161, 4159.071606972732, 4148.712888484451, + 4135.092160400014, 4125.654499260647, 4131.028826681436, + 4160.224694649487, 4217.567085170753, 4299.668361253496, + 4395.546069364406, 4492.537529719109, 4580.012828292047, + 4657.1994895470425, 4738.39717927959, 4854.268646079227, + 5049.923165683905, 5376.763396552325, 5881.290851301234, + 6600.646332535919, 7541.356746790193, 8688.41366192405 + ], + "flow:J85:branch90_seg1": [ + 0.8371388995164721, 1.0779123939154023, 1.3391082882406071, + 1.6074916844495972, 1.8688220797157602, 2.1111138407371497, + 2.3258775379815324, 2.508979470325467, 2.6590405750837625, + 2.778568551905291, 2.8709414930190698, 2.939047934773435, + 2.985848255509739, 3.0121314332794946, 3.01809554058416, + 3.0038004933018536, 2.969000999241053, 2.9153448824632946, + 2.845052186207993, 2.761368171226676, 2.668356110737511, + 2.569255514262271, 2.466859498169833, 2.362894126956664, + 2.2581435165851507, 2.1531605116723442, 2.048582220059056, + 1.9456474630957004, 1.8462149337341198, 1.7524364939333574, + 1.665914962179702, 1.5871196505934877, 1.5146061687732184, + 1.4447363943883813, 1.3723804116443423, 1.2916003527344782, + 1.197141201046564, 1.0855632043265917, 0.9568473829734072, + 0.813943534824602, 0.6631187830328065, 0.5127027389848914, + 0.3713649702786256, 0.24674137532033266, 0.14431795636318123, + 0.06660389586435335, 0.012763949444805254, -0.01948081847702992, + -0.034276136612587535, -0.03568676325398808, -0.02675116518687108, + -0.009953751025026714, 0.013646997830647002, 0.04322624539385618, + 0.07764699903918308, 0.115382511281709, 0.1537827513619025, + 0.18966288974577386, 0.2198024377268686, 0.24169606376906122, + 0.25393612581031405, 0.2569065595912781, 0.25237981247669083, + 0.2428300339534454, 0.23114722704341376, 0.2194016263454454, + 0.20854233747557094, 0.19830971073859985, 0.1874587679966994, + 0.1744387074223062, 0.1580914854415999, 0.13820518419667727, + 0.11582346337462764, 0.09285685650332272, 0.07171712960148348, + 0.05451057339090727, 0.042452867581121934, 0.03542104189254943, + 0.032293992228189246, 0.031199527147029213, 0.03029056106134371, + 0.028548870866473456, 0.026054804272132203, 0.024024613514453057, + 0.024382371742060857, 0.02892478041037775, 0.038687010591700544, + 0.05326366534323831, 0.07091189370885415, 0.08924094719681475, + 0.10607137457149, 0.120861618241287, 0.13571751822327227, + 0.15580446784720184, 0.1891480347152579, 0.24513215805729197, + 0.33307487168074745, 0.4602082513639805, 0.6286878158267397, + 0.8371388995164721 + ], + "pressure:J85:branch90_seg1": [ + 8688.41366192405, 9999.356163855131, 11404.857319605784, + 12833.739675656398, 14212.06095332212, 15478.083462636338, + 16590.060881613826, 17531.831647105715, 18298.24864077356, + 18903.86238333912, 19370.218351791547, 19709.598559584458, + 19937.136448789923, 20056.816397346203, 20066.96676255012, + 19970.258128728492, 19764.722157421747, 19459.519422667996, + 19070.2490340718, 18612.68888151948, 18109.209208615976, + 17577.046447627956, 17029.168276591165, 16474.413447585423, + 15916.105184904001, 15356.943934864199, 14800.952508694361, + 14255.318744627408, 13730.419503204848, 13237.78677745842, + 12785.106842120114, 12372.947821770284, 11991.915317490872, + 11620.263936892039, 11229.375085606314, 10787.51125981395, + 10268.596560492839, 9656.055076115488, 8953.590066884395, + 8181.090212441805, 7373.431290248416, 6577.196570626673, + 5838.170618066038, 5195.360035686112, 4673.958442068847, + 4285.869773249703, 4023.2013655380865, 3871.1894055981506, + 3808.802781654048, 3813.158955289119, 3869.8066277649355, + 3966.9670546330503, 4098.956896137082, 4262.274128814593, + 4449.940065478154, 4652.999254330034, 4856.750193799567, + 5043.581727551905, 5196.6122652175145, 5303.838754566911, + 5359.101996943769, 5365.664985419224, 5335.253801764471, + 5280.788071206153, 5217.401693178751, 5155.581232705255, + 5098.775622470792, 5044.398031642259, 4985.209680247096, + 4912.889438249929, 4822.19706558406, 4712.958970725702, 4591.968019580729, + 4470.322827768377, 4360.800884425647, 4273.968629470889, + 4215.250627057617, 4182.660202944148, 4169.052514679547, + 4164.386033575161, 4159.071606972732, 4148.712888484451, + 4135.092160400014, 4125.654499260647, 4131.028826681436, + 4160.224694649487, 4217.567085170753, 4299.668361253496, + 4395.546069364406, 4492.537529719109, 4580.012828292047, + 4657.1994895470425, 4738.39717927959, 4854.268646079227, + 5049.923165683905, 5376.763396552325, 5881.290851301234, + 6600.646332535919, 7541.356746790193, 8688.41366192405 + ], + "flow:branch90_seg1:J86": [ + 0.8356369424117072, 1.0762502621664913, 1.3373673032904678, + 1.6057746228905685, 1.8672069004759932, 2.1096608404330746, + 2.3246257609415495, 2.507945418259861, 2.6582077459746936, + 2.777922104215045, 2.870455625791696, 2.9387028190760542, + 2.9856394973920057, 3.0120513859297384, 3.018149757898315, + 3.0039846685893394, 2.9693110422357996, 2.9157752857201387, + 2.8455707935455883, 2.76195468952266, 2.6689905322504424, + 2.5699131308229886, 2.467530621828852, 2.363571096955499, + 2.258822261257522, 2.1538392189715623, 2.0492533124907824, + 1.9462998681186892, 1.8468350569569296, 1.7530123478979744, + 1.666438779873452, 1.5875984301866635, 1.5150589004983415, + 1.4451924405708063, 1.3728793680469917, 1.2921801897919831, + 1.1978258481995658, 1.086363315247347, 0.9577513866526216, + 0.814911793142187, 0.6641027559186612, 0.5136457864846264, + 0.37221172763686844, 0.2474468754591185, 0.14487189556384003, + 0.06699828951563208, 0.013006671116053756, -0.019353363733281812, + -0.03424613291480685, -0.035727906219587595, -0.02684377811459196, + -0.01009598286336802, 0.013466788189221071, 0.04301281158567039, + 0.07740630984260813, 0.11513244686243185, 0.1535420279517053, + 0.18945262645907684, 0.21964219953650516, 0.24159732745888848, + 0.25389931327077697, 0.25692446575222005, 0.2524348169666329, + 0.2429036556296175, 0.23122519291649948, 0.21947403604207455, + 0.20860845411924323, 0.19837685002706013, 0.18753710392623602, + 0.17453793620651248, 0.1582135021339782, 0.13834651017600844, + 0.11597410863525379, 0.09299980977606885, 0.07183768133568051, + 0.05459933457309765, 0.04250801694449312, 0.03544629027788736, + 0.03230300709268074, 0.031204622589732802, 0.03029946148868828, + 0.02856443422082708, 0.02607091701101784, 0.024029476466867202, + 0.024362987192613567, 0.028872210276583026, 0.03860114830497756, + 0.05315244446659111, 0.07079168703439362, 0.08912775880865209, + 0.10597285946462665, 0.12077002485436332, 0.13560557938247084, + 0.15562536739477922, 0.18884242482877447, 0.24462924197693545, + 0.332337370287471, 0.4592056402772454, 0.6274018478328058, + 0.8356369424117072 + ], + "pressure:branch90_seg1:J86": [ + 8496.287608952953, 9777.708766696358, 11162.390277781136, + 12580.265906948898, 13956.653072949666, 15228.883960691077, + 16353.232620253964, 17309.828164820243, 18091.99609565122, + 18713.421113824126, 19193.158803582362, 19545.396264842704, + 19785.627322421962, 19917.928786423938, 19942.44323842776, + 19860.276683199136, 19669.89749277824, 19380.135485335177, + 19003.932997042117, 18557.954963233045, 18063.926901393996, + 17538.93665114484, 16997.13661605779, 16447.531183690055, + 15893.978871073778, 15339.32443493829, 14787.128893893825, + 14244.129013336698, 13720.301111358247, 13227.047731520166, + 12772.55627152215, 12358.695460986908, 11977.290669829063, + 11608.332791880946, 11224.3104205453, 10793.803903904181, + 10289.658902526036, 9694.252078081334, 9008.720626354407, + 8249.992073622681, 7451.660555661259, 6658.482375406225, + 5916.129519410369, 5264.410345176135, 4731.052478515634, 4328.81012726085, + 4052.1318702143503, 3888.1840410807577, 3815.3460323407953, + 3811.745888150971, 3861.9094466646666, 3953.13937716264, + 4079.8745198443066, 4238.037307226155, 4421.300489324423, + 4621.364265963442, 4824.02317199423, 5012.232532561728, 5169.065184649375, + 5281.7202356359685, 5343.178961456861, 5355.863417103443, + 5329.898874047703, 5278.259368310379, 5216.1433346396425, + 5154.320096742754, 5097.27999145134, 5043.26447950028, 4985.494841556242, + 4915.75318217814, 4828.211488438248, 4722.061816772463, 4603.222691162393, + 4482.08125820772, 4371.367086450975, 4282.003945713192, 4220.080349803186, + 4184.502171577411, 4168.979706131544, 4163.589321715164, 4158.63784207827, + 4149.085051758004, 4135.791032572284, 4125.496377323913, + 4128.495902705879, 4154.103865584644, 4207.412320098982, + 4285.884337305803, 4379.749811912065, 4476.401756561701, 4564.63032775287, + 4642.246226388911, 4721.371443146583, 4830.317047744995, + 5012.260595050012, 5317.23118675904, 5793.514403489076, 6478.863335188978, + 7382.978368327828, 8496.287608952953 + ], + "flow:J86:branch90_seg2": [ + 0.8356369424117072, 1.0762502621664913, 1.3373673032904678, + 1.6057746228905685, 1.8672069004759932, 2.1096608404330746, + 2.3246257609415495, 2.507945418259861, 2.6582077459746936, + 2.777922104215045, 2.870455625791696, 2.9387028190760542, + 2.9856394973920057, 3.0120513859297384, 3.018149757898315, + 3.0039846685893394, 2.9693110422357996, 2.9157752857201387, + 2.8455707935455883, 2.76195468952266, 2.6689905322504424, + 2.5699131308229886, 2.467530621828852, 2.363571096955499, + 2.258822261257522, 2.1538392189715623, 2.0492533124907824, + 1.9462998681186892, 1.8468350569569296, 1.7530123478979744, + 1.666438779873452, 1.5875984301866635, 1.5150589004983415, + 1.4451924405708063, 1.3728793680469917, 1.2921801897919831, + 1.1978258481995658, 1.086363315247347, 0.9577513866526216, + 0.814911793142187, 0.6641027559186612, 0.5136457864846264, + 0.37221172763686844, 0.2474468754591185, 0.14487189556384003, + 0.06699828951563208, 0.013006671116053756, -0.019353363733281812, + -0.03424613291480685, -0.035727906219587595, -0.02684377811459196, + -0.01009598286336802, 0.013466788189221071, 0.04301281158567039, + 0.07740630984260813, 0.11513244686243185, 0.1535420279517053, + 0.18945262645907684, 0.21964219953650516, 0.24159732745888848, + 0.25389931327077697, 0.25692446575222005, 0.2524348169666329, + 0.2429036556296175, 0.23122519291649948, 0.21947403604207455, + 0.20860845411924323, 0.19837685002706013, 0.18753710392623602, + 0.17453793620651248, 0.1582135021339782, 0.13834651017600844, + 0.11597410863525379, 0.09299980977606885, 0.07183768133568051, + 0.05459933457309765, 0.04250801694449312, 0.03544629027788736, + 0.03230300709268074, 0.031204622589732802, 0.03029946148868828, + 0.02856443422082708, 0.02607091701101784, 0.024029476466867202, + 0.024362987192613567, 0.028872210276583026, 0.03860114830497756, + 0.05315244446659111, 0.07079168703439362, 0.08912775880865209, + 0.10597285946462665, 0.12077002485436332, 0.13560557938247084, + 0.15562536739477922, 0.18884242482877447, 0.24462924197693545, + 0.332337370287471, 0.4592056402772454, 0.6274018478328058, + 0.8356369424117072 + ], + "pressure:J86:branch90_seg2": [ + 8496.287608952953, 9777.708766696358, 11162.390277781136, + 12580.265906948898, 13956.653072949666, 15228.883960691077, + 16353.232620253964, 17309.828164820243, 18091.99609565122, + 18713.421113824126, 19193.158803582362, 19545.396264842704, + 19785.627322421962, 19917.928786423938, 19942.44323842776, + 19860.276683199136, 19669.89749277824, 19380.135485335177, + 19003.932997042117, 18557.954963233045, 18063.926901393996, + 17538.93665114484, 16997.13661605779, 16447.531183690055, + 15893.978871073778, 15339.32443493829, 14787.128893893825, + 14244.129013336698, 13720.301111358247, 13227.047731520166, + 12772.55627152215, 12358.695460986908, 11977.290669829063, + 11608.332791880946, 11224.3104205453, 10793.803903904181, + 10289.658902526036, 9694.252078081334, 9008.720626354407, + 8249.992073622681, 7451.660555661259, 6658.482375406225, + 5916.129519410369, 5264.410345176135, 4731.052478515634, 4328.81012726085, + 4052.1318702143503, 3888.1840410807577, 3815.3460323407953, + 3811.745888150971, 3861.9094466646666, 3953.13937716264, + 4079.8745198443066, 4238.037307226155, 4421.300489324423, + 4621.364265963442, 4824.02317199423, 5012.232532561728, 5169.065184649375, + 5281.7202356359685, 5343.178961456861, 5355.863417103443, + 5329.898874047703, 5278.259368310379, 5216.1433346396425, + 5154.320096742754, 5097.27999145134, 5043.26447950028, 4985.494841556242, + 4915.75318217814, 4828.211488438248, 4722.061816772463, 4603.222691162393, + 4482.08125820772, 4371.367086450975, 4282.003945713192, 4220.080349803186, + 4184.502171577411, 4168.979706131544, 4163.589321715164, 4158.63784207827, + 4149.085051758004, 4135.791032572284, 4125.496377323913, + 4128.495902705879, 4154.103865584644, 4207.412320098982, + 4285.884337305803, 4379.749811912065, 4476.401756561701, 4564.63032775287, + 4642.246226388911, 4721.371443146583, 4830.317047744995, + 5012.260595050012, 5317.23118675904, 5793.514403489076, 6478.863335188978, + 7382.978368327828, 8496.287608952953 + ], + "flow:branch93_seg0:J87": [ + 0.6702316127504692, 0.8635440942991949, 1.0738484826896546, + 1.29050584832927, 1.502062309305847, 1.6987973224692796, + 1.8737484707041627, 2.02339295682124, 2.1465102206623725, + 2.24495297590716, 2.3213248857966353, 2.3779595826687214, + 2.41724425959895, 2.4399041686483485, 2.4461920997565243, + 2.436203645719192, 2.4097728888031247, 2.368181010049688, + 2.3131414507723282, 2.2471689473760366, 2.1734416619561014, + 2.0945351901092693, 2.0126927785638515, 1.929341421794099, + 1.8451686166798715, 1.7606605798744035, 1.6763511325904936, + 1.5932256068548127, 1.512753076148136, 1.436642085055538, + 1.3662000109469667, 1.3018591524826024, 1.2425582095253525, + 1.1855067762679583, 1.1266867984212694, 1.0613894192143314, + 0.9853719558026688, 0.8957640181105655, 0.7923495270121118, + 0.6772693674238256, 0.5553377920966666, 0.4330864823646797, + 0.3174502046697518, 0.2146629078234094, 0.1293211286373574, + 0.06371923689840434, 0.01746987558455, -0.01107023864346057, + -0.025077735773934077, -0.027786051168991407, -0.02169488148702328, + -0.008869170542043026, 0.009725817004779673, 0.0333535607979646, + 0.06106719489857629, 0.09161337511081055, 0.12287599360143261, + 0.15230220902169464, 0.1772843529294982, 0.19575355365956232, + 0.20650250921744107, 0.20973891253029364, 0.20678450038799712, + 0.19957261286810443, 0.19040399143633835, 0.18097323285515132, + 0.17211556909686673, 0.1637050743554472, 0.15481396226732247, + 0.14423457766846012, 0.13103391611485596, 0.1149979610061409, + 0.0969010325492193, 0.07822656913959744, 0.060883124484002085, + 0.046577012221150633, 0.03633699089512362, 0.030148013479484117, + 0.027178273417256937, 0.025975962317294755, 0.025071427513103116, + 0.023609140377636974, 0.021592398726553746, 0.019931401022136995, + 0.02012424979307927, 0.023608944052863234, 0.03125162000643473, + 0.04279488905032447, 0.05691685572727983, 0.0717420567052657, + 0.08551871762144994, 0.09775004009611934, 0.11001137522879642, + 0.1263170259791038, 0.15299741407821968, 0.19755235266105092, + 0.26749046626612766, 0.3687572318222505, 0.5033288528094157, + 0.6702316127504692 + ], + "pressure:branch93_seg0:J87": [ + 8518.475539871768, 9794.398214688897, 11170.097001953456, + 12575.993403713583, 13939.07056920157, 15197.845239660282, + 16309.701833768642, 17255.81804814184, 18030.343654948185, + 18646.036903942208, 19122.230974575294, 19472.195240246845, + 19710.838256738687, 19842.682967211727, 19867.55554888987, + 19787.47398525088, 19600.97245834787, 19316.834375616767, + 18948.52673218457, 18511.486063424578, 18026.910294345253, + 17511.42728189801, 16978.310493996712, 16436.537611629286, + 15889.932551117821, 15341.484882873212, 14795.080399101069, + 14257.520498158287, 13738.701492524307, 13249.748879075478, + 12798.583192670068, 12386.60534768871, 12005.694934445542, + 11636.04118258425, 11250.55321047093, 10818.563201247456, + 10313.785323170474, 9718.918000302087, 9035.28529224642, + 8279.754186274464, 7484.866981921739, 6694.61341239063, 5953.884078358672, + 5301.940895207412, 4765.835449573805, 4359.355533163088, + 4077.305262413146, 3907.1639684158295, 3828.9126789305174, + 3820.6060028598113, 3867.2854327503155, 3956.5420355203473, + 4082.08031452433, 4239.863641683115, 4423.0760048945185, + 4622.969464005697, 4825.4154955595, 5013.3578766028795, 5170.059961064646, + 5283.0077253905565, 5345.391441686158, 5359.481648821212, + 5335.413748801797, 5285.720558138693, 5225.169386164761, + 5164.344049407098, 5107.537388140905, 5053.0387967533225, + 4994.347343895068, 4923.555974325958, 4835.247709921135, + 4728.709354798248, 4609.898628866295, 4489.113471740205, + 4378.727053955284, 4289.372436813931, 4226.966862109148, + 4190.454620376417, 4173.534009426034, 4166.728275579618, + 4160.638752162058, 4150.4332184976965, 4137.117862917276, + 4127.318707074256, 4131.065821424429, 4157.330457588605, + 4210.879333059629, 4289.123179650202, 4382.298720501335, + 4478.185970905212, 4566.096913508843, 4644.330618923766, + 4725.357907986642, 4837.554081392306, 5023.809176298415, 5333.82917496911, + 5814.191894693196, 6502.608165242351, 7407.998423366777, 8518.475539871768 + ], + "flow:J87:branch93_seg1": [ + 0.6702316127504692, 0.8635440942991949, 1.0738484826896546, + 1.29050584832927, 1.502062309305847, 1.6987973224692796, + 1.8737484707041627, 2.02339295682124, 2.1465102206623725, + 2.24495297590716, 2.3213248857966353, 2.3779595826687214, + 2.41724425959895, 2.4399041686483485, 2.4461920997565243, + 2.436203645719192, 2.4097728888031247, 2.368181010049688, + 2.3131414507723282, 2.2471689473760366, 2.1734416619561014, + 2.0945351901092693, 2.0126927785638515, 1.929341421794099, + 1.8451686166798715, 1.7606605798744035, 1.6763511325904936, + 1.5932256068548127, 1.512753076148136, 1.436642085055538, + 1.3662000109469667, 1.3018591524826024, 1.2425582095253525, + 1.1855067762679583, 1.1266867984212694, 1.0613894192143314, + 0.9853719558026688, 0.8957640181105655, 0.7923495270121118, + 0.6772693674238256, 0.5553377920966666, 0.4330864823646797, + 0.3174502046697518, 0.2146629078234094, 0.1293211286373574, + 0.06371923689840434, 0.01746987558455, -0.01107023864346057, + -0.025077735773934077, -0.027786051168991407, -0.02169488148702328, + -0.008869170542043026, 0.009725817004779673, 0.0333535607979646, + 0.06106719489857629, 0.09161337511081055, 0.12287599360143261, + 0.15230220902169464, 0.1772843529294982, 0.19575355365956232, + 0.20650250921744107, 0.20973891253029364, 0.20678450038799712, + 0.19957261286810443, 0.19040399143633835, 0.18097323285515132, + 0.17211556909686673, 0.1637050743554472, 0.15481396226732247, + 0.14423457766846012, 0.13103391611485596, 0.1149979610061409, + 0.0969010325492193, 0.07822656913959744, 0.060883124484002085, + 0.046577012221150633, 0.03633699089512362, 0.030148013479484117, + 0.027178273417256937, 0.025975962317294755, 0.025071427513103116, + 0.023609140377636974, 0.021592398726553746, 0.019931401022136995, + 0.02012424979307927, 0.023608944052863234, 0.03125162000643473, + 0.04279488905032447, 0.05691685572727983, 0.0717420567052657, + 0.08551871762144994, 0.09775004009611934, 0.11001137522879642, + 0.1263170259791038, 0.15299741407821968, 0.19755235266105092, + 0.26749046626612766, 0.3687572318222505, 0.5033288528094157, + 0.6702316127504692 + ], + "pressure:J87:branch93_seg1": [ + 8518.475539871768, 9794.398214688897, 11170.097001953456, + 12575.993403713583, 13939.07056920157, 15197.845239660282, + 16309.701833768642, 17255.81804814184, 18030.343654948185, + 18646.036903942208, 19122.230974575294, 19472.195240246845, + 19710.838256738687, 19842.682967211727, 19867.55554888987, + 19787.47398525088, 19600.97245834787, 19316.834375616767, + 18948.52673218457, 18511.486063424578, 18026.910294345253, + 17511.42728189801, 16978.310493996712, 16436.537611629286, + 15889.932551117821, 15341.484882873212, 14795.080399101069, + 14257.520498158287, 13738.701492524307, 13249.748879075478, + 12798.583192670068, 12386.60534768871, 12005.694934445542, + 11636.04118258425, 11250.55321047093, 10818.563201247456, + 10313.785323170474, 9718.918000302087, 9035.28529224642, + 8279.754186274464, 7484.866981921739, 6694.61341239063, 5953.884078358672, + 5301.940895207412, 4765.835449573805, 4359.355533163088, + 4077.305262413146, 3907.1639684158295, 3828.9126789305174, + 3820.6060028598113, 3867.2854327503155, 3956.5420355203473, + 4082.08031452433, 4239.863641683115, 4423.0760048945185, + 4622.969464005697, 4825.4154955595, 5013.3578766028795, 5170.059961064646, + 5283.0077253905565, 5345.391441686158, 5359.481648821212, + 5335.413748801797, 5285.720558138693, 5225.169386164761, + 5164.344049407098, 5107.537388140905, 5053.0387967533225, + 4994.347343895068, 4923.555974325958, 4835.247709921135, + 4728.709354798248, 4609.898628866295, 4489.113471740205, + 4378.727053955284, 4289.372436813931, 4226.966862109148, + 4190.454620376417, 4173.534009426034, 4166.728275579618, + 4160.638752162058, 4150.4332184976965, 4137.117862917276, + 4127.318707074256, 4131.065821424429, 4157.330457588605, + 4210.879333059629, 4289.123179650202, 4382.298720501335, + 4478.185970905212, 4566.096913508843, 4644.330618923766, + 4725.357907986642, 4837.554081392306, 5023.809176298415, 5333.82917496911, + 5814.191894693196, 6502.608165242351, 7407.998423366777, 8518.475539871768 + ], + "flow:branch93_seg1:J88": [ + 0.669329889057482, 0.8625395094613172, 1.0727924838782528, + 1.2894584171292915, 1.5010719597286961, 1.6979020116582821, + 1.8729738566586889, 2.0227491123017476, 2.1459878122866582, + 2.2445459437334367, 2.3210165237042815, 2.377738056499888, + 2.417106265825355, 2.439844157890971, 2.446213152983707, + 2.4363038821174086, 2.409949385183157, 2.368429883704964, + 2.3134462097620876, 2.2475169348046204, 2.1738201973314926, + 2.094930117616813, 2.013097353102564, 1.929750717479263, + 1.8455800107792024, 1.761072531755479, 1.6767593196121018, + 1.5936235929195073, 1.5131327347261476, 1.4369960634409435, + 1.3665232839070658, 1.3021552986537352, 1.2428373253171867, + 1.185786245270711, 1.1269897339379984, 1.061738667755729, + 0.9857831137091382, 0.8962444714170644, 0.7928940570327593, + 0.677856210466504, 0.5559387845753067, 0.4336678806906498, + 0.31797792371304906, 0.21510971519376504, 0.12967645955307378, + 0.0639769504101957, 0.01763516961456081, -0.01097895852249949, + -0.025048572225086028, -0.02780291908523503, -0.021746241128644827, + -0.008951659883228725, 0.009618964670661478, 0.033224887433519305, + 0.06092133729340111, 0.09146054722076649, 0.12272723120275487, + 0.15217054485413065, 0.17718176225798207, 0.19568762978860543, + 0.2064739144870915, 0.2097444460996643, 0.20681418003733346, + 0.19961522922953193, 0.19045077559054147, 0.18101769524283037, + 0.17215664325418523, 0.16374652415221178, 0.1548616264650862, + 0.14429419039660232, 0.13110733196794067, 0.11508356565256934, + 0.09699286695103572, 0.07831492394381834, 0.06095902163387411, + 0.04663429099059888, 0.03637381662327116, 0.03016645339058648, + 0.02718599854164266, 0.025980014006514437, 0.025077136235682147, + 0.0236185008681121, 0.021602263009638106, 0.019935061048556503, + 0.020113996748153458, 0.023579067426341645, 0.031201642902916625, + 0.042728861994096735, 0.05684405416801403, 0.07167225183081123, + 0.0854569546467127, 0.09769282440144128, 0.10994339589339792, + 0.12621124834590922, 0.1528180959423866, 0.197258326840588, + 0.2670556611195544, 0.36816011778589564, 0.5025628358362603, + 0.669329889057482 + ], + "pressure:branch93_seg1:J88": [ + 8373.43379610187, 9626.019211132678, 10984.559734529534, + 12380.36945459179, 13740.068001598545, 15001.55034602009, + 16120.823109756255, 17076.569822291076, 17861.563791848275, + 18488.029777329353, 18973.565309658305, 19332.550826193085, + 19580.20448109801, 19721.118667114824, 19756.312835062607, + 19686.88285384439, 19511.611410708305, 19238.916272187606, + 18880.617139585585, 18452.614795805184, 17975.592221628922, + 17466.102782922768, 16938.17429673771, 16400.908330289174, + 15858.515680946706, 15314.074694711726, 14771.16145490817, + 14236.259371254919, 13718.954629191769, 13230.272947535444, + 12778.445654285611, 12365.798110243877, 11985.083181924485, + 11617.747979195223, 11237.570902157895, 10814.174175744613, + 10320.635448292938, 9738.895260827374, 9068.4785732771, 8324.161460649886, + 7537.393607138055, 6750.805088962559, 6009.029708145938, + 5351.836635768387, 4807.926485841106, 4391.707522531243, + 4099.776764408647, 3920.948992617111, 3834.93881669064, + 3820.5886428050994, 3862.226938361928, 3946.8630425419124, + 4068.286423914764, 4221.9973966378275, 4401.664009120138, + 4599.021200770727, 4800.296772046297, 4988.877874254416, + 5148.025835755237, 5264.71815562423, 5331.508018790472, 5350.046482513351, + 5329.375668802116, 5281.938372784915, 5222.512051187747, + 5161.877564835322, 5105.037787605999, 5050.885112914189, + 4993.280088466295, 4924.41628151991, 4838.491997098207, 4734.353511394757, + 4617.302737923915, 4497.118760136855, 4386.097118974923, + 4295.087305284322, 4230.466802325247, 4191.813364914726, + 4173.472584642998, 4166.067381284789, 4160.1698967216125, + 4150.510286097854, 4137.437613319623, 4127.056288496137, + 4129.124018894038, 4152.785588439424, 4203.341650357545, + 4278.826498272762, 4370.323613650689, 4465.7356525175255, + 4553.996254931061, 4632.408157636911, 4711.867900515637, + 4819.013663793675, 4995.234886540986, 5289.194439594955, + 5748.572373535563, 6411.381704420301, 7289.024402336383, 8373.43379610187 + ], + "flow:J88:branch93_seg2": [ + 0.669329889057482, 0.8625395094613172, 1.0727924838782528, + 1.2894584171292915, 1.5010719597286961, 1.6979020116582821, + 1.8729738566586889, 2.0227491123017476, 2.1459878122866582, + 2.2445459437334367, 2.3210165237042815, 2.377738056499888, + 2.417106265825355, 2.439844157890971, 2.446213152983707, + 2.4363038821174086, 2.409949385183157, 2.368429883704964, + 2.3134462097620876, 2.2475169348046204, 2.1738201973314926, + 2.094930117616813, 2.013097353102564, 1.929750717479263, + 1.8455800107792024, 1.761072531755479, 1.6767593196121018, + 1.5936235929195073, 1.5131327347261476, 1.4369960634409435, + 1.3665232839070658, 1.3021552986537352, 1.2428373253171867, + 1.185786245270711, 1.1269897339379984, 1.061738667755729, + 0.9857831137091382, 0.8962444714170644, 0.7928940570327593, + 0.677856210466504, 0.5559387845753067, 0.4336678806906498, + 0.31797792371304906, 0.21510971519376504, 0.12967645955307378, + 0.0639769504101957, 0.01763516961456081, -0.01097895852249949, + -0.025048572225086028, -0.02780291908523503, -0.021746241128644827, + -0.008951659883228725, 0.009618964670661478, 0.033224887433519305, + 0.06092133729340111, 0.09146054722076649, 0.12272723120275487, + 0.15217054485413065, 0.17718176225798207, 0.19568762978860543, + 0.2064739144870915, 0.2097444460996643, 0.20681418003733346, + 0.19961522922953193, 0.19045077559054147, 0.18101769524283037, + 0.17215664325418523, 0.16374652415221178, 0.1548616264650862, + 0.14429419039660232, 0.13110733196794067, 0.11508356565256934, + 0.09699286695103572, 0.07831492394381834, 0.06095902163387411, + 0.04663429099059888, 0.03637381662327116, 0.03016645339058648, + 0.02718599854164266, 0.025980014006514437, 0.025077136235682147, + 0.0236185008681121, 0.021602263009638106, 0.019935061048556503, + 0.020113996748153458, 0.023579067426341645, 0.031201642902916625, + 0.042728861994096735, 0.05684405416801403, 0.07167225183081123, + 0.0854569546467127, 0.09769282440144128, 0.10994339589339792, + 0.12621124834590922, 0.1528180959423866, 0.197258326840588, + 0.2670556611195544, 0.36816011778589564, 0.5025628358362603, + 0.669329889057482 + ], + "pressure:J88:branch93_seg2": [ + 8373.43379610187, 9626.019211132678, 10984.559734529534, + 12380.36945459179, 13740.068001598545, 15001.55034602009, + 16120.823109756255, 17076.569822291076, 17861.563791848275, + 18488.029777329353, 18973.565309658305, 19332.550826193085, + 19580.20448109801, 19721.118667114824, 19756.312835062607, + 19686.88285384439, 19511.611410708305, 19238.916272187606, + 18880.617139585585, 18452.614795805184, 17975.592221628922, + 17466.102782922768, 16938.17429673771, 16400.908330289174, + 15858.515680946706, 15314.074694711726, 14771.16145490817, + 14236.259371254919, 13718.954629191769, 13230.272947535444, + 12778.445654285611, 12365.798110243877, 11985.083181924485, + 11617.747979195223, 11237.570902157895, 10814.174175744613, + 10320.635448292938, 9738.895260827374, 9068.4785732771, 8324.161460649886, + 7537.393607138055, 6750.805088962559, 6009.029708145938, + 5351.836635768387, 4807.926485841106, 4391.707522531243, + 4099.776764408647, 3920.948992617111, 3834.93881669064, + 3820.5886428050994, 3862.226938361928, 3946.8630425419124, + 4068.286423914764, 4221.9973966378275, 4401.664009120138, + 4599.021200770727, 4800.296772046297, 4988.877874254416, + 5148.025835755237, 5264.71815562423, 5331.508018790472, 5350.046482513351, + 5329.375668802116, 5281.938372784915, 5222.512051187747, + 5161.877564835322, 5105.037787605999, 5050.885112914189, + 4993.280088466295, 4924.41628151991, 4838.491997098207, 4734.353511394757, + 4617.302737923915, 4497.118760136855, 4386.097118974923, + 4295.087305284322, 4230.466802325247, 4191.813364914726, + 4173.472584642998, 4166.067381284789, 4160.1698967216125, + 4150.510286097854, 4137.437613319623, 4127.056288496137, + 4129.124018894038, 4152.785588439424, 4203.341650357545, + 4278.826498272762, 4370.323613650689, 4465.7356525175255, + 4553.996254931061, 4632.408157636911, 4711.867900515637, + 4819.013663793675, 4995.234886540986, 5289.194439594955, + 5748.572373535563, 6411.381704420301, 7289.024402336383, 8373.43379610187 + ], + "flow:branch96_seg0:J89": [ + 0.7323138686601587, 0.9514086907203646, 1.195146672030303, + 1.4518928233208512, 1.7085634523098878, 1.953193925252371, + 2.176367370040456, 2.3722080798672662, 2.537852711264793, + 2.6740031038456036, 2.782768942355408, 2.866691984553033, + 2.9283989132139707, 2.9690695047515847, 2.989265715404524, + 2.9890906056269166, 2.9684459637844207, 2.928446286794235, + 2.8708322561510373, 2.7984056588940525, 2.7146968139489642, + 2.6229536163150287, 2.526109290636442, 2.4262141140619167, + 2.3244855483642546, 2.221725367836653, 2.1186548555386513, + 2.0163865718553264, 1.9165494216060173, 1.8211145361226408, + 1.7317885565461322, 1.6494501180602839, 1.5734034210610268, + 1.501055074529137, 1.4282077131176016, 1.3496174084370378, + 1.2601670984786428, 1.156002084896695, 1.0358916361610904, + 0.9013504421393186, 0.7570346127485975, 0.6098339314558945, + 0.4676215357332978, 0.33791387285184815, 0.22671266676921076, + 0.13753723912927687, 0.07105918845073761, 0.026063390495633037, + -0.0005600785740988666, -0.012295992663785768, -0.012237463759397419, + -0.0029533811725741942, 0.014098823920204466, 0.03784346025423166, + 0.06720780503673088, 0.10079882893993142, 0.13636434455286128, + 0.17108387967908661, 0.20190915576833243, 0.22619357371257295, + 0.24215327782126925, 0.249480700330637, 0.24917047730453512, + 0.24315759158091074, 0.23392565746879426, 0.22356098849901096, + 0.21333983189654485, 0.20347743763551762, 0.19321792289251613, + 0.18131972559005197, 0.16664694738460564, 0.148731816283819, + 0.12812390857853018, 0.10626255117863771, 0.0851994422688015, + 0.06695642398950871, 0.05295912547362858, 0.04357848773380867, + 0.03820589596887924, 0.03541007987017412, 0.03356536900363746, + 0.031510545240906705, 0.028946084614964576, 0.02659468091427134, + 0.025950997843664475, 0.028658745400694362, 0.0359043110957382, + 0.04776349205158178, 0.06312375568625572, 0.0800508073379517, + 0.09651094362553922, 0.11154361452757454, 0.1262641007903725, + 0.14446047938701764, 0.17264717974611354, 0.21907737579316228, + 0.29255897520509394, 0.4005732046254887, 0.5470236122638379, + 0.7323138686601587 + ], + "pressure:branch96_seg0:J89": [ + 7917.587422115537, 9064.24024373901, 10327.373885093944, + 11646.184538345713, 12954.021536472486, 14190.903959350131, + 15311.085635976073, 16288.233098702185, 17109.978818641677, + 17781.684299818025, 18316.24122536893, 18725.55076751229, + 19022.837475640314, 19213.562736582608, 19299.189509311644, + 19281.09322177649, 19158.35011425774, 18937.4094486966, + 18629.016842012326, 18247.15065894094, 17810.58013929901, + 17335.812821419167, 16836.88070829229, 16323.843452487075, + 15802.222623717129, 15275.861734437465, 14748.701446881227, + 14226.80849317082, 13718.915658565029, 13235.247071614334, + 12784.079345353157, 12368.72659046667, 11984.311453670223, + 11615.829257993495, 11240.603219587096, 10831.371219634291, + 10362.791539667738, 9816.36978986131, 9188.469205761945, + 8489.675299239156, 7745.653652876362, 6993.492691379746, + 6273.714845156815, 5623.923110968112, 5072.492871458529, + 4636.007296212661, 4315.204692166455, 4101.989129339165, 3980.28999201678, + 3931.439369978286, 3940.5583648110705, 3995.3152148264294, + 4088.5335235437933, 4215.342875408287, 4369.832067851157, + 4544.366063276047, 4726.892754603957, 4902.474509777369, + 5055.556061037622, 5173.310822807622, 5247.530976563387, + 5277.732998406693, 5270.458787242037, 5235.87274465509, 5186.80385178309, + 5133.553979949823, 5081.6545645048955, 5031.299837343088, + 4977.999320226114, 4915.184431219516, 4837.4894900790205, + 4743.153263394869, 4635.916871340665, 4523.879391398143, + 4417.7244328995685, 4327.516313446574, 4259.8770827005055, + 4215.752361129261, 4191.1193335525795, 4178.3498601858955, + 4169.143923844285, 4158.159065090745, 4144.772842961754, + 4133.474390079537, 4132.365174169619, 4149.677610333474, + 4190.797167706475, 4255.163958675068, 4335.9245750897135, + 4422.903811167208, 4506.077972556681, 4581.851952868055, + 4658.051352096036, 4756.430177609969, 4912.381209221663, + 5169.424696121938, 5571.381178072671, 6155.670330240665, + 6938.677657127458, 7917.587422115537 + ], + "flow:J89:branch96_seg1": [ + 0.7323138686601587, 0.9514086907203646, 1.195146672030303, + 1.4518928233208512, 1.7085634523098878, 1.953193925252371, + 2.176367370040456, 2.3722080798672662, 2.537852711264793, + 2.6740031038456036, 2.782768942355408, 2.866691984553033, + 2.9283989132139707, 2.9690695047515847, 2.989265715404524, + 2.9890906056269166, 2.9684459637844207, 2.928446286794235, + 2.8708322561510373, 2.7984056588940525, 2.7146968139489642, + 2.6229536163150287, 2.526109290636442, 2.4262141140619167, + 2.3244855483642546, 2.221725367836653, 2.1186548555386513, + 2.0163865718553264, 1.9165494216060173, 1.8211145361226408, + 1.7317885565461322, 1.6494501180602839, 1.5734034210610268, + 1.501055074529137, 1.4282077131176016, 1.3496174084370378, + 1.2601670984786428, 1.156002084896695, 1.0358916361610904, + 0.9013504421393186, 0.7570346127485975, 0.6098339314558945, + 0.4676215357332978, 0.33791387285184815, 0.22671266676921076, + 0.13753723912927687, 0.07105918845073761, 0.026063390495633037, + -0.0005600785740988666, -0.012295992663785768, -0.012237463759397419, + -0.0029533811725741942, 0.014098823920204466, 0.03784346025423166, + 0.06720780503673088, 0.10079882893993142, 0.13636434455286128, + 0.17108387967908661, 0.20190915576833243, 0.22619357371257295, + 0.24215327782126925, 0.249480700330637, 0.24917047730453512, + 0.24315759158091074, 0.23392565746879426, 0.22356098849901096, + 0.21333983189654485, 0.20347743763551762, 0.19321792289251613, + 0.18131972559005197, 0.16664694738460564, 0.148731816283819, + 0.12812390857853018, 0.10626255117863771, 0.0851994422688015, + 0.06695642398950871, 0.05295912547362858, 0.04357848773380867, + 0.03820589596887924, 0.03541007987017412, 0.03356536900363746, + 0.031510545240906705, 0.028946084614964576, 0.02659468091427134, + 0.025950997843664475, 0.028658745400694362, 0.0359043110957382, + 0.04776349205158178, 0.06312375568625572, 0.0800508073379517, + 0.09651094362553922, 0.11154361452757454, 0.1262641007903725, + 0.14446047938701764, 0.17264717974611354, 0.21907737579316228, + 0.29255897520509394, 0.4005732046254887, 0.5470236122638379, + 0.7323138686601587 + ], + "pressure:J89:branch96_seg1": [ + 7917.587422115537, 9064.24024373901, 10327.373885093944, + 11646.184538345713, 12954.021536472486, 14190.903959350131, + 15311.085635976073, 16288.233098702185, 17109.978818641677, + 17781.684299818025, 18316.24122536893, 18725.55076751229, + 19022.837475640314, 19213.562736582608, 19299.189509311644, + 19281.09322177649, 19158.35011425774, 18937.4094486966, + 18629.016842012326, 18247.15065894094, 17810.58013929901, + 17335.812821419167, 16836.88070829229, 16323.843452487075, + 15802.222623717129, 15275.861734437465, 14748.701446881227, + 14226.80849317082, 13718.915658565029, 13235.247071614334, + 12784.079345353157, 12368.72659046667, 11984.311453670223, + 11615.829257993495, 11240.603219587096, 10831.371219634291, + 10362.791539667738, 9816.36978986131, 9188.469205761945, + 8489.675299239156, 7745.653652876362, 6993.492691379746, + 6273.714845156815, 5623.923110968112, 5072.492871458529, + 4636.007296212661, 4315.204692166455, 4101.989129339165, 3980.28999201678, + 3931.439369978286, 3940.5583648110705, 3995.3152148264294, + 4088.5335235437933, 4215.342875408287, 4369.832067851157, + 4544.366063276047, 4726.892754603957, 4902.474509777369, + 5055.556061037622, 5173.310822807622, 5247.530976563387, + 5277.732998406693, 5270.458787242037, 5235.87274465509, 5186.80385178309, + 5133.553979949823, 5081.6545645048955, 5031.299837343088, + 4977.999320226114, 4915.184431219516, 4837.4894900790205, + 4743.153263394869, 4635.916871340665, 4523.879391398143, + 4417.7244328995685, 4327.516313446574, 4259.8770827005055, + 4215.752361129261, 4191.1193335525795, 4178.3498601858955, + 4169.143923844285, 4158.159065090745, 4144.772842961754, + 4133.474390079537, 4132.365174169619, 4149.677610333474, + 4190.797167706475, 4255.163958675068, 4335.9245750897135, + 4422.903811167208, 4506.077972556681, 4581.851952868055, + 4658.051352096036, 4756.430177609969, 4912.381209221663, + 5169.424696121938, 5571.381178072671, 6155.670330240665, + 6938.677657127458, 7917.587422115537 + ], + "flow:branch96_seg1:J90": [ + 0.731700498542667, 0.9507112202043246, 1.194398117419755, + 1.4511329697193203, 1.7078280186886328, 1.9525131017242403, + 2.175763159870873, 2.3716920310551415, 2.5374239600819903, + 2.673658440367333, 2.7824991919997686, 2.866489473199051, + 2.9282595649979553, 2.968989809753979, 2.989246610531545, + 2.9891310369446416, 2.9685450180976862, 2.928600577555001, + 2.8710319124279033, 2.7986422547628433, 2.7149604733939423, + 2.6232341717382646, 2.5264006394339225, 2.4265116096915196, + 2.3247866227792358, 2.2220283409569106, 2.118956741625672, + 2.0166830995717318, 1.9168350126243923, 1.8213836651580035, + 1.7320370911404617, 1.6496788682954007, 1.573617849482823, + 1.5012659041548828, 1.428430104178451, 1.34986730391867, + 1.260456963712727, 1.1563393086977947, 1.0362747613945678, + 0.9017677055669359, 0.7574681364306729, 0.6102609138304806, + 0.46801816617671016, 0.3382599443311124, 0.22699760358962967, + 0.13775422245482608, 0.07121007093419295, 0.026158176905100552, + -0.000513334351766749, -0.012286179872771738, -0.012256342194966288, + -0.002997034282824371, 0.01403531574354509, 0.037762253183941934, + 0.06711214919259435, 0.10069510042095338, 0.136260007198081, + 0.17098791307301228, 0.20183028574153639, 0.22613805415291782, + 0.24212333760416094, 0.2494751071542667, 0.24918371796410702, + 0.24318265847153653, 0.23395597080668207, 0.2235915098612215, + 0.2133688848932708, 0.2035065833802301, 0.1932506153474949, + 0.181359848805775, 0.1666963761885918, 0.14879027084773563, + 0.1281880013474063, 0.10632625434193538, 0.08525657613274056, + 0.0670021327083562, 0.0529911430536876, 0.04359736653059709, + 0.03821587031895358, 0.03541576689530764, 0.033570773505997645, + 0.03151774467487876, 0.02895384999425975, 0.026599153827315963, + 0.02594710207047871, 0.02864222533280876, 0.0358737739621944, + 0.047720842413375084, 0.0630744310247361, 0.08000122502830088, + 0.09646544823580527, 0.11150140360541158, 0.12621678164700256, + 0.14439149156298886, 0.17253323071573548, 0.21889076083045486, + 0.29227910891064984, 0.4001818830679745, 0.5465133499925876, + 0.731700498542667 + ], + "pressure:branch96_seg1:J90": [ + 7799.644979564952, 8924.972266522136, 10171.131057175304, + 11478.4115908688, 12780.434812700327, 14016.9531617459, + 15141.228631113085, 16125.127324284049, 16955.12148876475, + 17635.61586350865, 18178.302689175147, 18595.582287430254, + 18900.7226695916, 19099.44946008162, 19193.969248915757, + 19185.201405202613, 19072.4454986582, 18861.706824668374, + 18562.67547090437, 18189.4242051296, 17760.222157690543, 17291.5209674511, + 16797.782362500344, 16289.228644253677, 15771.72064261409, + 15249.214107403022, 14725.48712395534, 14206.365370924987, + 13700.310132613122, 13217.406005449126, 12766.11710027746, + 12350.37290889425, 11966.03460819943, 11599.123273660281, + 11227.757949028488, 10825.085744471173, 10365.481463950693, + 9829.910536222995, 9213.337496572114, 8524.755695618733, + 7788.672713046806, 7040.954873791954, 6321.7261528319805, + 5668.803205844472, 5111.6305100807085, 4667.44087466779, 4338.41076793474, + 4117.511778115811, 3988.8537353352663, 3934.3407146651134, + 3938.6872490598225, 3989.2009214363584, 4078.612336494552, + 4201.740879558021, 4352.938789485994, 4524.900151083523, + 4705.9313454486255, 4881.46337737428, 5036.020978214642, + 5156.4802489738695, 5234.190525498525, 5268.090042586375, + 5263.904271159851, 5231.585121739779, 5183.816379398025, + 5131.032918965634, 5079.263377183459, 5029.186844541697, + 4976.674751502514, 4915.3158201057595, 4839.53875985773, + 4747.255557322608, 4641.685559142763, 4530.480724549534, + 4424.156967022496, 4332.86415611512, 4263.542021663371, 4217.637274542153, + 4191.643071574094, 4178.1412221526525, 4168.874250938565, + 4158.214953864413, 4145.057089722807, 4133.437034582771, + 4131.161669340286, 4146.505099999153, 4185.186604738638, + 4247.157318757159, 4326.227654635947, 4412.43911654573, 4495.625725532298, + 4571.506712545899, 4646.720079955505, 4741.606596083443, + 4890.2232126078825, 5135.111682085679, 5520.481573748043, + 6083.959695230439, 6843.7338136305425, 7799.644979564952 + ], + "flow:J90:branch96_seg2": [ + 0.731700498542667, 0.9507112202043246, 1.194398117419755, + 1.4511329697193203, 1.7078280186886328, 1.9525131017242403, + 2.175763159870873, 2.3716920310551415, 2.5374239600819903, + 2.673658440367333, 2.7824991919997686, 2.866489473199051, + 2.9282595649979553, 2.968989809753979, 2.989246610531545, + 2.9891310369446416, 2.9685450180976862, 2.928600577555001, + 2.8710319124279033, 2.7986422547628433, 2.7149604733939423, + 2.6232341717382646, 2.5264006394339225, 2.4265116096915196, + 2.3247866227792358, 2.2220283409569106, 2.118956741625672, + 2.0166830995717318, 1.9168350126243923, 1.8213836651580035, + 1.7320370911404617, 1.6496788682954007, 1.573617849482823, + 1.5012659041548828, 1.428430104178451, 1.34986730391867, + 1.260456963712727, 1.1563393086977947, 1.0362747613945678, + 0.9017677055669359, 0.7574681364306729, 0.6102609138304806, + 0.46801816617671016, 0.3382599443311124, 0.22699760358962967, + 0.13775422245482608, 0.07121007093419295, 0.026158176905100552, + -0.000513334351766749, -0.012286179872771738, -0.012256342194966288, + -0.002997034282824371, 0.01403531574354509, 0.037762253183941934, + 0.06711214919259435, 0.10069510042095338, 0.136260007198081, + 0.17098791307301228, 0.20183028574153639, 0.22613805415291782, + 0.24212333760416094, 0.2494751071542667, 0.24918371796410702, + 0.24318265847153653, 0.23395597080668207, 0.2235915098612215, + 0.2133688848932708, 0.2035065833802301, 0.1932506153474949, + 0.181359848805775, 0.1666963761885918, 0.14879027084773563, + 0.1281880013474063, 0.10632625434193538, 0.08525657613274056, + 0.0670021327083562, 0.0529911430536876, 0.04359736653059709, + 0.03821587031895358, 0.03541576689530764, 0.033570773505997645, + 0.03151774467487876, 0.02895384999425975, 0.026599153827315963, + 0.02594710207047871, 0.02864222533280876, 0.0358737739621944, + 0.047720842413375084, 0.0630744310247361, 0.08000122502830088, + 0.09646544823580527, 0.11150140360541158, 0.12621678164700256, + 0.14439149156298886, 0.17253323071573548, 0.21889076083045486, + 0.29227910891064984, 0.4001818830679745, 0.5465133499925876, + 0.731700498542667 + ], + "pressure:J90:branch96_seg2": [ + 7799.644979564952, 8924.972266522136, 10171.131057175304, + 11478.4115908688, 12780.434812700327, 14016.9531617459, + 15141.228631113085, 16125.127324284049, 16955.12148876475, + 17635.61586350865, 18178.302689175147, 18595.582287430254, + 18900.7226695916, 19099.44946008162, 19193.969248915757, + 19185.201405202613, 19072.4454986582, 18861.706824668374, + 18562.67547090437, 18189.4242051296, 17760.222157690543, 17291.5209674511, + 16797.782362500344, 16289.228644253677, 15771.72064261409, + 15249.214107403022, 14725.48712395534, 14206.365370924987, + 13700.310132613122, 13217.406005449126, 12766.11710027746, + 12350.37290889425, 11966.03460819943, 11599.123273660281, + 11227.757949028488, 10825.085744471173, 10365.481463950693, + 9829.910536222995, 9213.337496572114, 8524.755695618733, + 7788.672713046806, 7040.954873791954, 6321.7261528319805, + 5668.803205844472, 5111.6305100807085, 4667.44087466779, 4338.41076793474, + 4117.511778115811, 3988.8537353352663, 3934.3407146651134, + 3938.6872490598225, 3989.2009214363584, 4078.612336494552, + 4201.740879558021, 4352.938789485994, 4524.900151083523, + 4705.9313454486255, 4881.46337737428, 5036.020978214642, + 5156.4802489738695, 5234.190525498525, 5268.090042586375, + 5263.904271159851, 5231.585121739779, 5183.816379398025, + 5131.032918965634, 5079.263377183459, 5029.186844541697, + 4976.674751502514, 4915.3158201057595, 4839.53875985773, + 4747.255557322608, 4641.685559142763, 4530.480724549534, + 4424.156967022496, 4332.86415611512, 4263.542021663371, 4217.637274542153, + 4191.643071574094, 4178.1412221526525, 4168.874250938565, + 4158.214953864413, 4145.057089722807, 4133.437034582771, + 4131.161669340286, 4146.505099999153, 4185.186604738638, + 4247.157318757159, 4326.227654635947, 4412.43911654573, 4495.625725532298, + 4571.506712545899, 4646.720079955505, 4741.606596083443, + 4890.2232126078825, 5135.111682085679, 5520.481573748043, + 6083.959695230439, 6843.7338136305425, 7799.644979564952 + ], + "flow:branch102_seg0:J91": [ + 1.3922637301239242, 1.7995575898546443, 2.2459719284479642, + 2.70924419750276, 3.165076786753555, 3.5922557016008225, + 3.9750376316372398, 4.304764100016881, 4.5779813667757026, + 4.797783702796489, 4.969291202184233, 5.09751475338636, 5.187532565814189, + 5.2411872587793, 5.2591947282106615, 5.241744486773994, 5.188551378249365, + 5.102105981097334, 4.985965018593024, 4.845486017713339, + 4.687415689452641, 4.517489496903191, 4.340727364054278, + 4.160422651347315, 3.978276283854583, 3.795419892743149, + 3.613003243961263, 3.4330613610316196, 3.2586464864531455, + 3.093370660752207, 2.940120247374177, 2.8000154582205456, + 2.6710808375837813, 2.5477076076243432, 2.421545127102186, + 2.2826356031383823, 2.1217848758602065, 1.9325691337476203, + 1.7139794681592755, 1.4701040963431193, 1.2107522178023693, + 0.9495288230375464, 0.7011707698720769, 0.4791187717231149, + 0.29348049734447434, 0.149524520510198, 0.046947516463780106, + -0.017519328382198784, -0.050414869675534206, -0.058565601080234696, + -0.047467977415592395, -0.021621826915579005, 0.016715283514536137, + 0.0658874830739969, 0.12394799148085708, 0.18830719413839314, + 0.25463445266418394, 0.317614813657946, 0.3717138184164613, + 0.41240935487637354, 0.4369429052161859, 0.4454640365118002, + 0.4405165476909822, 0.4260905826624942, 0.40700939352009463, + 0.386988855823593, 0.36800235091875416, 0.3499893743307035, + 0.3311471389960702, 0.3089739765962019, 0.2814290585318483, + 0.2479119325789905, 0.2098581701644491, 0.1702669022453052, + 0.1331112232805111, 0.1020539211921861, 0.0794189526875711, + 0.0653935034892146, 0.05839015278745082, 0.05544393887369789, + 0.05344761830279236, 0.05045810796958874, 0.04629592880386154, + 0.04270463410176488, 0.042739944709216854, 0.04946454898303661, + 0.06483869989618402, 0.08854342032141853, 0.11800829082714089, + 0.14936569476833364, 0.1788692040281861, 0.2052106143640122, + 0.23130329564191002, 0.265166582326234, 0.3197748144301135, + 0.41082813568913157, 0.554355939395725, 0.7633619756644882, + 1.0430544213864867, 1.3922637301239242 + ], + "pressure:branch102_seg0:J91": [ + 8560.042384428523, 9843.621577007632, 11226.934309815451, + 12640.809533470916, 14012.97332644778, 15281.50072345197, + 16403.244074394563, 17359.759705756835, 18144.046739538746, + 18767.907544748945, 19251.664501585394, 19607.103356888823, + 19848.993477412543, 19982.28686499731, 20005.750185937173, + 19922.516222751194, 19730.86385193032, 19439.232314593017, + 19062.91848400278, 18616.833657038507, 18122.688882836297, + 17597.79830472301, 17055.158507443208, 16504.142783768428, + 15948.649907367922, 15391.716175538597, 14837.522939797227, + 14293.045842145335, 13768.29498277408, 13274.463336563214, + 12819.289591671624, 12403.699590063343, 12019.266451831814, + 11645.559533279364, 11255.146961339433, 10817.256126337554, + 10306.088093642624, 9704.485266401216, 9014.588193487794, + 8254.517096144244, 7456.86122116106, 6666.356584656564, 5927.761280805553, + 5279.937895090822, 4748.616762318994, 4347.382013796172, + 4070.2741516295796, 3903.8122925314133, 3828.6630979824436, + 3822.384327096809, 3870.452613617805, 3960.9333752160064, + 4087.26451591369, 4245.65859327389, 4429.061043374947, 4628.588989039855, + 4830.151707588622, 5016.607992819896, 5171.357578265219, + 5282.294442448583, 5342.830787451826, 5355.269497397269, 5330.41657406114, + 5280.440191442834, 5219.9076658832355, 5159.407600802939, + 5102.838478435158, 5048.295616405828, 4989.273880279777, + 4917.914644916183, 4829.082856777686, 4722.241309408185, + 4603.524434977982, 4483.392770238827, 4374.065156640558, + 4285.957410204355, 4224.7620666532885, 4189.172243933812, + 4172.6871551868235, 4165.958161780244, 4159.698463725698, + 4149.317741615812, 4136.101972417852, 4126.7901968186, 4131.381260934957, + 4158.6202172805815, 4212.975410738516, 4291.726772553639, + 4384.714166881714, 4479.966643956878, 4567.157342537373, + 4645.041080612736, 4726.678133551676, 4840.946472308349, + 5030.944586320909, 5346.635854254457, 5833.454380060716, 6529.13909721269, + 7442.43514623867, 8560.042384428523 + ], + "flow:J91:branch102_seg1": [ + 1.3922637301239242, 1.7995575898546443, 2.2459719284479642, + 2.70924419750276, 3.165076786753555, 3.5922557016008225, + 3.9750376316372398, 4.304764100016881, 4.5779813667757026, + 4.797783702796489, 4.969291202184233, 5.09751475338636, 5.187532565814189, + 5.2411872587793, 5.2591947282106615, 5.241744486773994, 5.188551378249365, + 5.102105981097334, 4.985965018593024, 4.845486017713339, + 4.687415689452641, 4.517489496903191, 4.340727364054278, + 4.160422651347315, 3.978276283854583, 3.795419892743149, + 3.613003243961263, 3.4330613610316196, 3.2586464864531455, + 3.093370660752207, 2.940120247374177, 2.8000154582205456, + 2.6710808375837813, 2.5477076076243432, 2.421545127102186, + 2.2826356031383823, 2.1217848758602065, 1.9325691337476203, + 1.7139794681592755, 1.4701040963431193, 1.2107522178023693, + 0.9495288230375464, 0.7011707698720769, 0.4791187717231149, + 0.29348049734447434, 0.149524520510198, 0.046947516463780106, + -0.017519328382198784, -0.050414869675534206, -0.058565601080234696, + -0.047467977415592395, -0.021621826915579005, 0.016715283514536137, + 0.0658874830739969, 0.12394799148085708, 0.18830719413839314, + 0.25463445266418394, 0.317614813657946, 0.3717138184164613, + 0.41240935487637354, 0.4369429052161859, 0.4454640365118002, + 0.4405165476909822, 0.4260905826624942, 0.40700939352009463, + 0.386988855823593, 0.36800235091875416, 0.3499893743307035, + 0.3311471389960702, 0.3089739765962019, 0.2814290585318483, + 0.2479119325789905, 0.2098581701644491, 0.1702669022453052, + 0.1331112232805111, 0.1020539211921861, 0.0794189526875711, + 0.0653935034892146, 0.05839015278745082, 0.05544393887369789, + 0.05344761830279236, 0.05045810796958874, 0.04629592880386154, + 0.04270463410176488, 0.042739944709216854, 0.04946454898303661, + 0.06483869989618402, 0.08854342032141853, 0.11800829082714089, + 0.14936569476833364, 0.1788692040281861, 0.2052106143640122, + 0.23130329564191002, 0.265166582326234, 0.3197748144301135, + 0.41082813568913157, 0.554355939395725, 0.7633619756644882, + 1.0430544213864867, 1.3922637301239242 + ], + "pressure:J91:branch102_seg1": [ + 8560.042384428523, 9843.621577007632, 11226.934309815451, + 12640.809533470916, 14012.97332644778, 15281.50072345197, + 16403.244074394563, 17359.759705756835, 18144.046739538746, + 18767.907544748945, 19251.664501585394, 19607.103356888823, + 19848.993477412543, 19982.28686499731, 20005.750185937173, + 19922.516222751194, 19730.86385193032, 19439.232314593017, + 19062.91848400278, 18616.833657038507, 18122.688882836297, + 17597.79830472301, 17055.158507443208, 16504.142783768428, + 15948.649907367922, 15391.716175538597, 14837.522939797227, + 14293.045842145335, 13768.29498277408, 13274.463336563214, + 12819.289591671624, 12403.699590063343, 12019.266451831814, + 11645.559533279364, 11255.146961339433, 10817.256126337554, + 10306.088093642624, 9704.485266401216, 9014.588193487794, + 8254.517096144244, 7456.86122116106, 6666.356584656564, 5927.761280805553, + 5279.937895090822, 4748.616762318994, 4347.382013796172, + 4070.2741516295796, 3903.8122925314133, 3828.6630979824436, + 3822.384327096809, 3870.452613617805, 3960.9333752160064, + 4087.26451591369, 4245.65859327389, 4429.061043374947, 4628.588989039855, + 4830.151707588622, 5016.607992819896, 5171.357578265219, + 5282.294442448583, 5342.830787451826, 5355.269497397269, 5330.41657406114, + 5280.440191442834, 5219.9076658832355, 5159.407600802939, + 5102.838478435158, 5048.295616405828, 4989.273880279777, + 4917.914644916183, 4829.082856777686, 4722.241309408185, + 4603.524434977982, 4483.392770238827, 4374.065156640558, + 4285.957410204355, 4224.7620666532885, 4189.172243933812, + 4172.6871551868235, 4165.958161780244, 4159.698463725698, + 4149.317741615812, 4136.101972417852, 4126.7901968186, 4131.381260934957, + 4158.6202172805815, 4212.975410738516, 4291.726772553639, + 4384.714166881714, 4479.966643956878, 4567.157342537373, + 4645.041080612736, 4726.678133551676, 4840.946472308349, + 5030.944586320909, 5346.635854254457, 5833.454380060716, 6529.13909721269, + 7442.43514623867, 8560.042384428523 + ], + "flow:branch102_seg1:J92": [ + 1.3873212585365524, 1.7940649635056032, 2.2401869508514376, + 2.7035059667211767, 3.159647714785306, 3.587339194590308, + 3.9707702171940813, 4.30121819302081, 4.5751033827615935, + 4.795531439424647, 4.967588691117036, 5.0962904455026266, + 5.18677243141116, 5.240864068236907, 5.259320135803511, 5.242309028269544, + 5.189539478040813, 5.103497718866983, 4.987661776915317, 4.84741758206499, + 4.6895170590468895, 4.519678776769323, 4.342968380788847, + 4.162688621290702, 3.980551290261166, 3.797696382534724, 3.61525622648463, + 3.4352547377883997, 3.260735699425365, 3.0953169228328625, + 2.941896128319285, 2.8016417117494807, 2.6726175530982106, + 2.54924732201765, 2.423216228660657, 2.2845630681435236, + 2.1240517823322786, 1.9352130975326063, 1.7169697549214682, + 1.473317808920649, 1.2140314173816362, 0.9526912907311397, + 0.7040319610628135, 0.4815269641663405, 0.2953930004499241, + 0.15091008181361545, 0.04782488612000744, -0.01703577617397765, + -0.050265475468461204, -0.0586658919647161, -0.047749790137317775, + -0.022076223472824976, 0.016129190965100914, 0.06518770842641257, + 0.1231534384241464, 0.18747698813730282, 0.253829659732791, + 0.3169043416070909, 0.37116252261164534, 0.41205855952649023, + 0.4367956140401042, 0.44549895459546085, 0.4406812004298693, + 0.42632344061508204, 0.40726321237841123, 0.38723011745213254, + 0.3682254607396235, 0.3502158076420278, 0.33140881120623045, + 0.3093021275765611, 0.28183105919901774, 0.24837790485855016, + 0.21035723483903115, 0.17074468846409085, 0.13351935407612922, + 0.10236043481135643, 0.07961626006769829, 0.06549081273909618, + 0.05843071110581909, 0.05546743521806396, 0.05347944847705985, + 0.050509178811631646, 0.04634855450519496, 0.04272195339703034, + 0.042680384057106086, 0.04929779753017769, 0.06456299489947422, + 0.08818296196294491, 0.11761315189735906, 0.14898846666122084, + 0.17853603428591774, 0.20489886246436598, 0.23092740017765762, + 0.2645770541706894, 0.31877885751940543, 0.4091942656926403, + 0.5519560813912748, 0.7600901999209699, 1.0388414771523133, + 1.3873212585365524 + ], + "pressure:branch102_seg1:J92": [ + 8257.731244117818, 9495.194138485853, 10847.339499952863, + 12246.87416046345, 13620.599519475918, 14904.874532790704, + 16053.005416372143, 17040.364427713605, 17856.930432483747, + 18512.583104001, 19023.69843366681, 19404.67576159156, 19670.853783239963, + 19827.6211937384, 19876.51520936152, 19818.598149984908, + 19652.81016801206, 19386.838887921185, 19032.16829317504, + 18604.74923376954, 18125.214053074822, 17610.804496886605, + 17076.311082891396, 16531.563808916937, 15981.455091742302, + 15429.336463817728, 14878.777908865013, 14336.059791587688, + 13810.527111446985, 13313.142429928748, 12852.426861721679, + 12431.362475082855, 12043.576619842894, 11671.508494919008, + 11289.614852771083, 10867.725813603407, 10378.438873522582, + 9802.748179934191, 9138.53469045076, 8399.103787054006, 7614.555262943327, + 6826.605532925621, 6079.716523986899, 5414.117330499224, 4859.53930238288, + 4431.397618516135, 4127.839725074528, 3938.498375758161, + 3843.6105858613273, 3822.2792185718945, 3858.336320162396, + 3938.415379089637, 4055.85129569418, 4205.850175430774, 4382.297623203011, + 4577.270120802322, 4777.505596062811, 4966.774627584953, + 5128.410363264748, 5249.051435769475, 5320.651908551765, + 5343.991350687081, 5327.318938735202, 5282.660040004969, + 5224.589537046931, 5164.209011014765, 5107.101713779506, + 5052.791213678663, 4995.64659769049, 4928.061728448566, 4844.041195775371, + 4742.0007035051985, 4626.593153729823, 4507.093686702063, + 4395.539233396553, 4302.875203860635, 4235.888732561214, + 4194.790556651421, 4174.52423765898, 4166.060251784268, + 4160.0166256524435, 4150.770225026099, 4138.092802954569, + 4127.50142227022, 4128.356866333191, 4149.812175223243, 4197.542738154873, + 4270.283002955667, 4359.844464684891, 4454.516294013226, + 4543.146864015262, 4622.238819810134, 4701.31124696704, 4805.353993333516, + 4974.186776678836, 5255.568085330181, 5697.449485560717, + 6338.7557675246335, 7193.801816638327, 8257.731244117818 + ], + "flow:J92:branch102_seg2": [ + 1.3873212585365524, 1.7940649635056032, 2.2401869508514376, + 2.7035059667211767, 3.159647714785306, 3.587339194590308, + 3.9707702171940813, 4.30121819302081, 4.5751033827615935, + 4.795531439424647, 4.967588691117036, 5.0962904455026266, + 5.18677243141116, 5.240864068236907, 5.259320135803511, 5.242309028269544, + 5.189539478040813, 5.103497718866983, 4.987661776915317, 4.84741758206499, + 4.6895170590468895, 4.519678776769323, 4.342968380788847, + 4.162688621290702, 3.980551290261166, 3.797696382534724, 3.61525622648463, + 3.4352547377883997, 3.260735699425365, 3.0953169228328625, + 2.941896128319285, 2.8016417117494807, 2.6726175530982106, + 2.54924732201765, 2.423216228660657, 2.2845630681435236, + 2.1240517823322786, 1.9352130975326063, 1.7169697549214682, + 1.473317808920649, 1.2140314173816362, 0.9526912907311397, + 0.7040319610628135, 0.4815269641663405, 0.2953930004499241, + 0.15091008181361545, 0.04782488612000744, -0.01703577617397765, + -0.050265475468461204, -0.0586658919647161, -0.047749790137317775, + -0.022076223472824976, 0.016129190965100914, 0.06518770842641257, + 0.1231534384241464, 0.18747698813730282, 0.253829659732791, + 0.3169043416070909, 0.37116252261164534, 0.41205855952649023, + 0.4367956140401042, 0.44549895459546085, 0.4406812004298693, + 0.42632344061508204, 0.40726321237841123, 0.38723011745213254, + 0.3682254607396235, 0.3502158076420278, 0.33140881120623045, + 0.3093021275765611, 0.28183105919901774, 0.24837790485855016, + 0.21035723483903115, 0.17074468846409085, 0.13351935407612922, + 0.10236043481135643, 0.07961626006769829, 0.06549081273909618, + 0.05843071110581909, 0.05546743521806396, 0.05347944847705985, + 0.050509178811631646, 0.04634855450519496, 0.04272195339703034, + 0.042680384057106086, 0.04929779753017769, 0.06456299489947422, + 0.08818296196294491, 0.11761315189735906, 0.14898846666122084, + 0.17853603428591774, 0.20489886246436598, 0.23092740017765762, + 0.2645770541706894, 0.31877885751940543, 0.4091942656926403, + 0.5519560813912748, 0.7600901999209699, 1.0388414771523133, + 1.3873212585365524 + ], + "pressure:J92:branch102_seg2": [ + 8257.731244117818, 9495.194138485853, 10847.339499952863, + 12246.87416046345, 13620.599519475918, 14904.874532790704, + 16053.005416372143, 17040.364427713605, 17856.930432483747, + 18512.583104001, 19023.69843366681, 19404.67576159156, 19670.853783239963, + 19827.6211937384, 19876.51520936152, 19818.598149984908, + 19652.81016801206, 19386.838887921185, 19032.16829317504, + 18604.74923376954, 18125.214053074822, 17610.804496886605, + 17076.311082891396, 16531.563808916937, 15981.455091742302, + 15429.336463817728, 14878.777908865013, 14336.059791587688, + 13810.527111446985, 13313.142429928748, 12852.426861721679, + 12431.362475082855, 12043.576619842894, 11671.508494919008, + 11289.614852771083, 10867.725813603407, 10378.438873522582, + 9802.748179934191, 9138.53469045076, 8399.103787054006, 7614.555262943327, + 6826.605532925621, 6079.716523986899, 5414.117330499224, 4859.53930238288, + 4431.397618516135, 4127.839725074528, 3938.498375758161, + 3843.6105858613273, 3822.2792185718945, 3858.336320162396, + 3938.415379089637, 4055.85129569418, 4205.850175430774, 4382.297623203011, + 4577.270120802322, 4777.505596062811, 4966.774627584953, + 5128.410363264748, 5249.051435769475, 5320.651908551765, + 5343.991350687081, 5327.318938735202, 5282.660040004969, + 5224.589537046931, 5164.209011014765, 5107.101713779506, + 5052.791213678663, 4995.64659769049, 4928.061728448566, 4844.041195775371, + 4742.0007035051985, 4626.593153729823, 4507.093686702063, + 4395.539233396553, 4302.875203860635, 4235.888732561214, + 4194.790556651421, 4174.52423765898, 4166.060251784268, + 4160.0166256524435, 4150.770225026099, 4138.092802954569, + 4127.50142227022, 4128.356866333191, 4149.812175223243, 4197.542738154873, + 4270.283002955667, 4359.844464684891, 4454.516294013226, + 4543.146864015262, 4622.238819810134, 4701.31124696704, 4805.353993333516, + 4974.186776678836, 5255.568085330181, 5697.449485560717, + 6338.7557675246335, 7193.801816638327, 8257.731244117818 + ], + "flow:branch105_seg0:J93": [ + 1.0545862388133065, 1.3580376391303646, 1.6876194590263358, + 2.0266527175069977, 2.3572660798356107, 2.664328495836349, + 2.9370453783843984, 3.170026559072024, 3.36148357536093, + 3.5143973459482702, 3.632900429936934, 3.7206260697445686, + 3.781237012862186, 3.8157680614726486, 3.8244996225102335, + 3.807517667215169, 3.7645414550179788, 3.697634377951118, + 3.6096005890686524, 3.504495866040424, 3.3874115521196795, + 3.262456075026738, 3.133152366663951, 3.0017109288035124, + 2.86916335615325, 2.7362353547602054, 2.603760299614123, + 2.4733077809990096, 2.3472199508718083, 2.2282007031684024, + 2.1182846907993524, 2.018072687844391, 1.9257784813629786, + 1.8368792691473916, 1.7449426409242685, 1.6425194425082121, + 1.5229926291876512, 1.3819976301205203, 1.219433824351891, + 1.0389448573426436, 0.8483357373382536, 0.6580177450267767, + 0.47889461630429786, 0.3206070231502342, 0.19008776716387546, + 0.09062262880219174, 0.021281251534726608, -0.02076822072330205, + -0.040625119757222126, -0.043386034707281175, -0.03289197149278551, + -0.012256544071522855, 0.01710985313532592, 0.054145763176390485, + 0.09741118505802984, 0.14494191421828176, 0.19341049136166594, + 0.23880789662944785, 0.27706865673439396, 0.30501489281708644, + 0.3208525701461272, 0.32501850120943915, 0.31968969102612393, + 0.3079570802503026, 0.29343132257656573, 0.2787205839987213, + 0.26504321064995456, 0.25210042704037644, 0.23835913027539962, + 0.22189087929210172, 0.20125230729955954, 0.17616466164961994, + 0.1479186058605304, 0.11890500731367465, 0.09213894873838892, + 0.07026827160548023, 0.05483525446197053, 0.04572377920497488, + 0.04154001662672292, 0.03996044131858718, 0.038681661803881544, + 0.036410348803795095, 0.03323179127454975, 0.030651442202554485, + 0.03106614650698441, 0.03672751822711251, 0.04893939746038633, + 0.06721309800162345, 0.08938906642017301, 0.11247994111281527, + 0.1337583451099997, 0.1525358505547474, 0.17142924116320563, + 0.19689387912540068, 0.23898176277630787, 0.3094974662167227, + 0.4201239971949595, 0.5800373218171458, 0.7921175395038043, + 1.0545862388133065 + ], + "pressure:branch105_seg0:J93": [ + 8759.781316558508, 10080.276081303844, 11492.558673883235, + 12925.267688742597, 14305.24332428439, 15571.341661357807, + 16682.478274652025, 17623.092095699696, 18389.18362183701, + 18994.684026752497, 19461.381080659514, 19801.152870765676, + 20028.43468861123, 20147.237374460183, 20155.484075841192, + 20056.15657569372, 19847.369813310277, 19538.762785856277, + 19146.51738594171, 18686.139506814536, 18180.199651897135, + 17645.877010353222, 17095.704794187506, 16538.512790425575, + 15977.50813521703, 15415.481632589268, 14856.747817804324, + 14308.697028283614, 13781.881784414198, 13287.784170958997, + 12833.939617703943, 12420.32059606909, 12037.125876234533, + 11662.175602414172, 11266.49021228741, 10818.465289175696, + 10292.480002907128, 9672.54366579139, 8963.217218201095, + 8185.261328841007, 7373.918673653112, 6575.968102658203, + 5837.112943546932, 5195.816916230629, 4676.228633453038, + 4290.283461843397, 4029.2689260161746, 3877.960929847643, + 3816.0412802573424, 3820.326254181613, 3876.9371524667863, + 3974.5171276141764, 4107.018971483824, 4271.264871106525, + 4459.92287954057, 4663.567871066189, 4867.4213030894925, + 5053.681717634949, 5205.531880057276, 5311.2231251134945, + 5365.012552930617, 5370.408488137203, 5339.391995183531, + 5284.927434803331, 5221.929220893908, 5160.636048216025, + 5104.145701984092, 5049.6013191114625, 4989.700973486945, + 4916.21543353809, 4824.245380640653, 4713.844096133952, 4592.139211257586, + 4470.412169898879, 4361.333981939946, 4275.253739265097, + 4217.300298200331, 4185.257870300245, 4171.640647629687, + 4166.574905260699, 4160.627154377837, 4149.658092554712, + 4135.809998828611, 4126.716124175086, 4133.018177622285, + 4163.5284866099155, 4222.191468900979, 4305.278698764456, + 4401.549069400347, 4498.353303157057, 4585.447268435041, + 4662.711830827996, 4745.257457717251, 4864.514705566881, + 5066.126051467513, 5401.771302079705, 5916.803696792349, + 6648.445917223545, 7601.928725494247, 8759.781316558508 + ], + "flow:J93:branch105_seg1": [ + 1.0545862388133065, 1.3580376391303646, 1.6876194590263358, + 2.0266527175069977, 2.3572660798356107, 2.664328495836349, + 2.9370453783843984, 3.170026559072024, 3.36148357536093, + 3.5143973459482702, 3.632900429936934, 3.7206260697445686, + 3.781237012862186, 3.8157680614726486, 3.8244996225102335, + 3.807517667215169, 3.7645414550179788, 3.697634377951118, + 3.6096005890686524, 3.504495866040424, 3.3874115521196795, + 3.262456075026738, 3.133152366663951, 3.0017109288035124, + 2.86916335615325, 2.7362353547602054, 2.603760299614123, + 2.4733077809990096, 2.3472199508718083, 2.2282007031684024, + 2.1182846907993524, 2.018072687844391, 1.9257784813629786, + 1.8368792691473916, 1.7449426409242685, 1.6425194425082121, + 1.5229926291876512, 1.3819976301205203, 1.219433824351891, + 1.0389448573426436, 0.8483357373382536, 0.6580177450267767, + 0.47889461630429786, 0.3206070231502342, 0.19008776716387546, + 0.09062262880219174, 0.021281251534726608, -0.02076822072330205, + -0.040625119757222126, -0.043386034707281175, -0.03289197149278551, + -0.012256544071522855, 0.01710985313532592, 0.054145763176390485, + 0.09741118505802984, 0.14494191421828176, 0.19341049136166594, + 0.23880789662944785, 0.27706865673439396, 0.30501489281708644, + 0.3208525701461272, 0.32501850120943915, 0.31968969102612393, + 0.3079570802503026, 0.29343132257656573, 0.2787205839987213, + 0.26504321064995456, 0.25210042704037644, 0.23835913027539962, + 0.22189087929210172, 0.20125230729955954, 0.17616466164961994, + 0.1479186058605304, 0.11890500731367465, 0.09213894873838892, + 0.07026827160548023, 0.05483525446197053, 0.04572377920497488, + 0.04154001662672292, 0.03996044131858718, 0.038681661803881544, + 0.036410348803795095, 0.03323179127454975, 0.030651442202554485, + 0.03106614650698441, 0.03672751822711251, 0.04893939746038633, + 0.06721309800162345, 0.08938906642017301, 0.11247994111281527, + 0.1337583451099997, 0.1525358505547474, 0.17142924116320563, + 0.19689387912540068, 0.23898176277630787, 0.3094974662167227, + 0.4201239971949595, 0.5800373218171458, 0.7921175395038043, + 1.0545862388133065 + ], + "pressure:J93:branch105_seg1": [ + 8759.781316558508, 10080.276081303844, 11492.558673883235, + 12925.267688742597, 14305.24332428439, 15571.341661357807, + 16682.478274652025, 17623.092095699696, 18389.18362183701, + 18994.684026752497, 19461.381080659514, 19801.152870765676, + 20028.43468861123, 20147.237374460183, 20155.484075841192, + 20056.15657569372, 19847.369813310277, 19538.762785856277, + 19146.51738594171, 18686.139506814536, 18180.199651897135, + 17645.877010353222, 17095.704794187506, 16538.512790425575, + 15977.50813521703, 15415.481632589268, 14856.747817804324, + 14308.697028283614, 13781.881784414198, 13287.784170958997, + 12833.939617703943, 12420.32059606909, 12037.125876234533, + 11662.175602414172, 11266.49021228741, 10818.465289175696, + 10292.480002907128, 9672.54366579139, 8963.217218201095, + 8185.261328841007, 7373.918673653112, 6575.968102658203, + 5837.112943546932, 5195.816916230629, 4676.228633453038, + 4290.283461843397, 4029.2689260161746, 3877.960929847643, + 3816.0412802573424, 3820.326254181613, 3876.9371524667863, + 3974.5171276141764, 4107.018971483824, 4271.264871106525, + 4459.92287954057, 4663.567871066189, 4867.4213030894925, + 5053.681717634949, 5205.531880057276, 5311.2231251134945, + 5365.012552930617, 5370.408488137203, 5339.391995183531, + 5284.927434803331, 5221.929220893908, 5160.636048216025, + 5104.145701984092, 5049.6013191114625, 4989.700973486945, + 4916.21543353809, 4824.245380640653, 4713.844096133952, 4592.139211257586, + 4470.412169898879, 4361.333981939946, 4275.253739265097, + 4217.300298200331, 4185.257870300245, 4171.640647629687, + 4166.574905260699, 4160.627154377837, 4149.658092554712, + 4135.809998828611, 4126.716124175086, 4133.018177622285, + 4163.5284866099155, 4222.191468900979, 4305.278698764456, + 4401.549069400347, 4498.353303157057, 4585.447268435041, + 4662.711830827996, 4745.257457717251, 4864.514705566881, + 5066.126051467513, 5401.771302079705, 5916.803696792349, + 6648.445917223545, 7601.928725494247, 8759.781316558508 + ], + "flow:branch105_seg1:J94": [ + 1.051992276951761, 1.3551756712822856, 1.6846300912625485, + 2.0237114226760564, 2.3545060902794086, 2.6618471694807235, + 2.934907990400555, 3.1682655284321046, 3.360057853578536, + 3.513289723790786, 3.632069439636374, 3.7200332976372747, + 3.7808803241638698, 3.8156329718115845, 3.8245932563874847, + 3.8078385222646016, 3.7650779828066177, 3.698374000454003, + 3.61049421766522, 3.5055039067932463, 3.3885008456330317, + 3.2635855441360166, 3.134304340779788, 3.0028736501455398, + 2.8703297075622065, 2.737401491206969, 2.604912903850302, + 2.4744274036151275, 2.3482828135283698, 2.229187564699236, + 2.119182015851282, 2.018894762215537, 1.9265585435577415, + 1.837667791209641, 1.7458071728589875, 1.6435240523356527, + 1.5241785800792458, 1.3833790411669604, 1.2209913531108192, + 1.040610202145384, 0.8500231561417944, 0.6596329650817455, + 0.4803415111543076, 0.321811880659604, 0.1910301306039261, + 0.09129183656844288, 0.021692758140122656, -0.02055372913129195, + -0.04057511759619859, -0.043457631478475596, -0.033052145674381216, + -0.012502055931276849, 0.016799611006346523, 0.05377814577937621, + 0.09699715908806672, 0.14451353142162404, 0.1929995604893941, + 0.23845038504543825, 0.27679717743170834, 0.3048499150041415, + 0.3207915266109615, 0.32504926947976787, 0.31978459871943365, + 0.30808211596184454, 0.293563339670371, 0.278843655691408, + 0.26515613991348647, 0.25221607476936847, 0.23849510635062227, + 0.22206307921523719, 0.20146387716304104, 0.17640884522598474, + 0.148177322954277, 0.11914921893466725, 0.092343561076224, + 0.07041785278839732, 0.0549276898828279, 0.045765690058723135, + 0.04155588558643096, 0.03997039923305687, 0.03869845492571435, + 0.036437889957800285, 0.033259195791659306, 0.030658307443062298, + 0.031030755349640407, 0.03663463040900332, 0.04879046560268992, + 0.06702236230632344, 0.08918308899844024, 0.11228705163427151, + 0.13359024798759556, 0.15237809608725678, 0.1712332249629902, + 0.1965784417210216, 0.2384432750599475, 0.308617246462852, + 0.41883670754140606, 0.5782902162117844, 0.7898886876989551, + 1.051992276951761 + ], + "pressure:branch105_seg1:J94": [ + 8455.399278059747, 9729.478722801281, 11109.432075971377, + 12525.549248179896, 13903.510616775062, 15180.557247984154, + 16312.410214353737, 17277.90295892298, 18070.012657263756, + 18701.555943299278, 19190.57692674995, 19551.55914180563, + 19799.72701151651, 19939.283307495767, 19970.821726464437, + 19895.199429410783, 19711.063495753013, 19427.210201911923, + 19056.087866495385, 18614.335459115668, 18123.45050687034, + 17600.522574862178, 17059.874836098235, 16510.657644928677, + 15956.963526762933, 15401.779457269302, 14848.710225628483, + 14304.440640311992, 13778.868150976874, 13283.314173699833, + 12826.083407462651, 12409.272746989833, 12025.039574368213, + 11653.94107961962, 11268.81438090798, 10838.509938825795, + 10335.778031925793, 9742.7805335613, 9059.975777120833, 8303.477686276045, + 7506.272127945788, 6712.373039841016, 5967.239786109987, + 5310.766906991558, 4771.074100387203, 4361.533293950908, + 4077.394408488314, 3906.3424975317466, 3827.223098273424, + 3818.453416953862, 3864.428186379632, 3952.3939322938663, + 4076.507262909498, 4232.54831718368, 4414.26398233574, 4613.302412274911, + 4815.619294334772, 5004.311534589547, 5162.458954555572, + 5277.0823969277435, 5340.972307031307, 5356.253349312162, + 5332.522158751498, 5282.644612723706, 5221.673383378205, + 5160.371732986207, 5103.46968459505, 5049.450404325566, 4991.762155382923, + 4922.327387844378, 4835.31182336421, 4729.762176801917, 4611.364393720669, + 4490.301444291481, 4379.167571917545, 4288.88929931375, 4225.678637472038, + 4188.735170136635, 4171.982315557927, 4165.687339491379, + 4160.262043443085, 4150.538666486813, 4137.177584055443, + 4126.687723401716, 4129.179184256178, 4153.939092285339, + 4206.160552618417, 4283.51461114043, 4376.599909680829, 4472.940539998819, + 4561.340553141742, 4639.389243772857, 4718.705879369941, + 4826.969166078877, 5006.718238849923, 5307.565032727156, + 5777.693538500343, 6455.160032174209, 7350.704298006685, 8455.399278059747 + ], + "flow:J94:branch105_seg2": [ + 1.051992276951761, 1.3551756712822856, 1.6846300912625485, + 2.0237114226760564, 2.3545060902794086, 2.6618471694807235, + 2.934907990400555, 3.1682655284321046, 3.360057853578536, + 3.513289723790786, 3.632069439636374, 3.7200332976372747, + 3.7808803241638698, 3.8156329718115845, 3.8245932563874847, + 3.8078385222646016, 3.7650779828066177, 3.698374000454003, + 3.61049421766522, 3.5055039067932463, 3.3885008456330317, + 3.2635855441360166, 3.134304340779788, 3.0028736501455398, + 2.8703297075622065, 2.737401491206969, 2.604912903850302, + 2.4744274036151275, 2.3482828135283698, 2.229187564699236, + 2.119182015851282, 2.018894762215537, 1.9265585435577415, + 1.837667791209641, 1.7458071728589875, 1.6435240523356527, + 1.5241785800792458, 1.3833790411669604, 1.2209913531108192, + 1.040610202145384, 0.8500231561417944, 0.6596329650817455, + 0.4803415111543076, 0.321811880659604, 0.1910301306039261, + 0.09129183656844288, 0.021692758140122656, -0.02055372913129195, + -0.04057511759619859, -0.043457631478475596, -0.033052145674381216, + -0.012502055931276849, 0.016799611006346523, 0.05377814577937621, + 0.09699715908806672, 0.14451353142162404, 0.1929995604893941, + 0.23845038504543825, 0.27679717743170834, 0.3048499150041415, + 0.3207915266109615, 0.32504926947976787, 0.31978459871943365, + 0.30808211596184454, 0.293563339670371, 0.278843655691408, + 0.26515613991348647, 0.25221607476936847, 0.23849510635062227, + 0.22206307921523719, 0.20146387716304104, 0.17640884522598474, + 0.148177322954277, 0.11914921893466725, 0.092343561076224, + 0.07041785278839732, 0.0549276898828279, 0.045765690058723135, + 0.04155588558643096, 0.03997039923305687, 0.03869845492571435, + 0.036437889957800285, 0.033259195791659306, 0.030658307443062298, + 0.031030755349640407, 0.03663463040900332, 0.04879046560268992, + 0.06702236230632344, 0.08918308899844024, 0.11228705163427151, + 0.13359024798759556, 0.15237809608725678, 0.1712332249629902, + 0.1965784417210216, 0.2384432750599475, 0.308617246462852, + 0.41883670754140606, 0.5782902162117844, 0.7898886876989551, + 1.051992276951761 + ], + "pressure:J94:branch105_seg2": [ + 8455.399278059747, 9729.478722801281, 11109.432075971377, + 12525.549248179896, 13903.510616775062, 15180.557247984154, + 16312.410214353737, 17277.90295892298, 18070.012657263756, + 18701.555943299278, 19190.57692674995, 19551.55914180563, + 19799.72701151651, 19939.283307495767, 19970.821726464437, + 19895.199429410783, 19711.063495753013, 19427.210201911923, + 19056.087866495385, 18614.335459115668, 18123.45050687034, + 17600.522574862178, 17059.874836098235, 16510.657644928677, + 15956.963526762933, 15401.779457269302, 14848.710225628483, + 14304.440640311992, 13778.868150976874, 13283.314173699833, + 12826.083407462651, 12409.272746989833, 12025.039574368213, + 11653.94107961962, 11268.81438090798, 10838.509938825795, + 10335.778031925793, 9742.7805335613, 9059.975777120833, 8303.477686276045, + 7506.272127945788, 6712.373039841016, 5967.239786109987, + 5310.766906991558, 4771.074100387203, 4361.533293950908, + 4077.394408488314, 3906.3424975317466, 3827.223098273424, + 3818.453416953862, 3864.428186379632, 3952.3939322938663, + 4076.507262909498, 4232.54831718368, 4414.26398233574, 4613.302412274911, + 4815.619294334772, 5004.311534589547, 5162.458954555572, + 5277.0823969277435, 5340.972307031307, 5356.253349312162, + 5332.522158751498, 5282.644612723706, 5221.673383378205, + 5160.371732986207, 5103.46968459505, 5049.450404325566, 4991.762155382923, + 4922.327387844378, 4835.31182336421, 4729.762176801917, 4611.364393720669, + 4490.301444291481, 4379.167571917545, 4288.88929931375, 4225.678637472038, + 4188.735170136635, 4171.982315557927, 4165.687339491379, + 4160.262043443085, 4150.538666486813, 4137.177584055443, + 4126.687723401716, 4129.179184256178, 4153.939092285339, + 4206.160552618417, 4283.51461114043, 4376.599909680829, 4472.940539998819, + 4561.340553141742, 4639.389243772857, 4718.705879369941, + 4826.969166078877, 5006.718238849923, 5307.565032727156, + 5777.693538500343, 6455.160032174209, 7350.704298006685, 8455.399278059747 + ], + "flow:branch109_seg0:J95": [ + 0.6946893014628084, 0.8994360133003612, 1.1267153653923714, + 1.366145928764326, 1.6058945747077624, 1.835150004214356, + 2.045358707225023, 2.2311667629753105, 2.389652540085929, + 2.5211643509540127, 2.627325849145676, 2.7099667334128523, + 2.771302331320084, 2.8122259383008092, 2.833204436451403, + 2.8345350435270276, 2.816205946810702, 2.7795031029138797, + 2.7261826262646083, 2.658818030768696, 2.5807382460123245, + 2.494847070283205, 2.4037944711170227, 2.3094880473845567, + 2.213084301422647, 2.115450804880285, 2.0174037510245233, + 1.9201084308952423, 1.8251633029934606, 1.7344142254884318, + 1.6493768362486863, 1.570757106144289, 1.497823944946916, + 1.4280921211928361, 1.357707599314392, 1.2819166305016212, + 1.1961616264812074, 1.0970162905741272, 0.9835257663439766, + 0.857119247904269, 0.7220176187808153, 0.5844612582962074, + 0.45148474492225776, 0.329804682721583, 0.22479844174798394, + 0.13973916827399344, 0.07524083412207416, 0.030449070735604874, + 0.00277242242666309, -0.010794448904545005, -0.012818352756589038, + -0.005605230944520011, 0.009495406784067285, 0.03140877202894347, + 0.0589248713122869, 0.09059652434025392, 0.12419055116434392, + 0.15701164675983728, 0.18623757514142936, 0.20947600264486246, + 0.22511503714821945, 0.23289863714272768, 0.23374395605354154, + 0.22931281749925564, 0.22179406594158246, 0.21297834775590477, + 0.20393497831318647, 0.1948358135047965, 0.18502885825094387, + 0.17347798700671788, 0.15928526315623742, 0.14214466536208212, + 0.1226665249896602, 0.10218954183148243, 0.08255499198434649, + 0.0655342127146882, 0.052347415599332425, 0.043258435202728825, + 0.037703917733072745, 0.03443667024155199, 0.03205567338174255, + 0.029625254629902828, 0.026968648188824166, 0.02478433410572416, + 0.02441201777134955, 0.027255603412424122, 0.03428062953583711, + 0.045444635638743944, 0.05966050326781434, 0.07520903201656853, + 0.0903460243546493, 0.10438706639176838, 0.11857289613202379, + 0.13655018965669835, 0.16439526190759277, 0.20965202063467908, + 0.280236775236712, 0.3829420405176873, 0.5209909210291719, + 0.6946893014628084 + ], + "pressure:branch109_seg0:J95": [ + 8184.1227559032595, 9365.493074036243, 10651.250896081876, + 11981.889413049814, 13293.271119017601, 14527.7644101818, + 15642.666310878287, 16616.79499782023, 17437.98568788075, + 18110.67851398948, 18649.884280581966, 19062.526692728276, + 19360.392623911295, 19548.384860173483, 19625.375803077033, + 19595.805692227907, 19458.7288614539, 19221.698999036253, + 18899.3213960638, 18504.300828521493, 18056.218897155886, + 17571.22021883557, 17061.55983771877, 16537.17002571007, + 16003.088237455899, 15463.543735276811, 14923.632796533437, + 14390.470469081341, 13873.542898474052, 13383.230227284432, + 12926.860095208956, 12505.728544564521, 12113.345915506981, + 11732.385765536324, 11339.272508776441, 10907.046201236806, + 10412.579482246516, 9839.195490476877, 9186.860801381421, + 8469.626137501626, 7713.752854581525, 6957.607583833907, + 6240.469723915885, 5597.727607622162, 5054.069505516781, + 4625.213999277728, 4309.240765531234, 4097.320297174796, + 3975.5004784755556, 3924.8826941583307, 3933.2263621871043, + 3989.4650019492497, 4086.269282137558, 4219.122162857626, + 4380.2020641038935, 4560.577436453275, 4747.105375791255, + 4923.853512650252, 5075.444589690654, 5190.348208354905, 5261.52907123358, + 5289.405412084998, 5282.464082982325, 5250.080400000546, + 5204.341287522404, 5154.6878695406795, 5104.954113494617, + 5054.325586907276, 4998.105317456076, 4930.180475906144, + 4846.5673833960345, 4746.784023425362, 4635.972190253817, + 4522.955347899063, 4418.121652439918, 4330.623217794791, 4265.88980839641, + 4223.488799078847, 4198.509941625585, 4183.666208425358, + 4171.213764512597, 4157.211186490262, 4142.507953269813, + 4132.435077751396, 4135.1895230814, 4158.055718272338, 4204.922223356924, + 4273.874561911161, 4356.425432457689, 4442.777404420846, + 4524.314827617285, 4599.92175676832, 4680.730177386144, 4791.58386099566, + 4969.982752522889, 5260.260517076099, 5702.888258174227, + 6333.881494570775, 7163.878914088377, 8184.1227559032595 + ], + "flow:J95:branch109_seg1": [ + 0.6946893014628084, 0.8994360133003612, 1.1267153653923714, + 1.366145928764326, 1.6058945747077624, 1.835150004214356, + 2.045358707225023, 2.2311667629753105, 2.389652540085929, + 2.5211643509540127, 2.627325849145676, 2.7099667334128523, + 2.771302331320084, 2.8122259383008092, 2.833204436451403, + 2.8345350435270276, 2.816205946810702, 2.7795031029138797, + 2.7261826262646083, 2.658818030768696, 2.5807382460123245, + 2.494847070283205, 2.4037944711170227, 2.3094880473845567, + 2.213084301422647, 2.115450804880285, 2.0174037510245233, + 1.9201084308952423, 1.8251633029934606, 1.7344142254884318, + 1.6493768362486863, 1.570757106144289, 1.497823944946916, + 1.4280921211928361, 1.357707599314392, 1.2819166305016212, + 1.1961616264812074, 1.0970162905741272, 0.9835257663439766, + 0.857119247904269, 0.7220176187808153, 0.5844612582962074, + 0.45148474492225776, 0.329804682721583, 0.22479844174798394, + 0.13973916827399344, 0.07524083412207416, 0.030449070735604874, + 0.00277242242666309, -0.010794448904545005, -0.012818352756589038, + -0.005605230944520011, 0.009495406784067285, 0.03140877202894347, + 0.0589248713122869, 0.09059652434025392, 0.12419055116434392, + 0.15701164675983728, 0.18623757514142936, 0.20947600264486246, + 0.22511503714821945, 0.23289863714272768, 0.23374395605354154, + 0.22931281749925564, 0.22179406594158246, 0.21297834775590477, + 0.20393497831318647, 0.1948358135047965, 0.18502885825094387, + 0.17347798700671788, 0.15928526315623742, 0.14214466536208212, + 0.1226665249896602, 0.10218954183148243, 0.08255499198434649, + 0.0655342127146882, 0.052347415599332425, 0.043258435202728825, + 0.037703917733072745, 0.03443667024155199, 0.03205567338174255, + 0.029625254629902828, 0.026968648188824166, 0.02478433410572416, + 0.02441201777134955, 0.027255603412424122, 0.03428062953583711, + 0.045444635638743944, 0.05966050326781434, 0.07520903201656853, + 0.0903460243546493, 0.10438706639176838, 0.11857289613202379, + 0.13655018965669835, 0.16439526190759277, 0.20965202063467908, + 0.280236775236712, 0.3829420405176873, 0.5209909210291719, + 0.6946893014628084 + ], + "pressure:J95:branch109_seg1": [ + 8184.1227559032595, 9365.493074036243, 10651.250896081876, + 11981.889413049814, 13293.271119017601, 14527.7644101818, + 15642.666310878287, 16616.79499782023, 17437.98568788075, + 18110.67851398948, 18649.884280581966, 19062.526692728276, + 19360.392623911295, 19548.384860173483, 19625.375803077033, + 19595.805692227907, 19458.7288614539, 19221.698999036253, + 18899.3213960638, 18504.300828521493, 18056.218897155886, + 17571.22021883557, 17061.55983771877, 16537.17002571007, + 16003.088237455899, 15463.543735276811, 14923.632796533437, + 14390.470469081341, 13873.542898474052, 13383.230227284432, + 12926.860095208956, 12505.728544564521, 12113.345915506981, + 11732.385765536324, 11339.272508776441, 10907.046201236806, + 10412.579482246516, 9839.195490476877, 9186.860801381421, + 8469.626137501626, 7713.752854581525, 6957.607583833907, + 6240.469723915885, 5597.727607622162, 5054.069505516781, + 4625.213999277728, 4309.240765531234, 4097.320297174796, + 3975.5004784755556, 3924.8826941583307, 3933.2263621871043, + 3989.4650019492497, 4086.269282137558, 4219.122162857626, + 4380.2020641038935, 4560.577436453275, 4747.105375791255, + 4923.853512650252, 5075.444589690654, 5190.348208354905, 5261.52907123358, + 5289.405412084998, 5282.464082982325, 5250.080400000546, + 5204.341287522404, 5154.6878695406795, 5104.954113494617, + 5054.325586907276, 4998.105317456076, 4930.180475906144, + 4846.5673833960345, 4746.784023425362, 4635.972190253817, + 4522.955347899063, 4418.121652439918, 4330.623217794791, 4265.88980839641, + 4223.488799078847, 4198.509941625585, 4183.666208425358, + 4171.213764512597, 4157.211186490262, 4142.507953269813, + 4132.435077751396, 4135.1895230814, 4158.055718272338, 4204.922223356924, + 4273.874561911161, 4356.425432457689, 4442.777404420846, + 4524.314827617285, 4599.92175676832, 4680.730177386144, 4791.58386099566, + 4969.982752522889, 5260.260517076099, 5702.888258174227, + 6333.881494570775, 7163.878914088377, 8184.1227559032595 + ], + "flow:branch109_seg1:J96": [ + 0.6918772721755747, 0.8962889866280329, 1.1233601691158863, + 1.3627721456543465, 1.6026506188310583, 1.8321534615707395, + 2.0426961212876735, 2.228897970941491, 2.3877577955705176, + 2.5196331946751913, 2.626127538453902, 2.709063597753432, + 2.7706916015961047, 2.811890210340364, 2.833146967654268, + 2.834749757516805, 2.8166800825231997, 2.78022863655017, + 2.7271029898782104, 2.6598917017122865, 2.5819325723296593, + 2.4961131391467113, 2.4051090166714792, 2.310833325970293, + 2.214446496437034, 2.116822605547997, 2.01876846454726, + 1.9214439232356388, 1.8264437934480886, 1.735617976716472, + 1.6504867940842665, 1.571783199227823, 1.4987978852565735, + 1.4290614540739095, 1.3587415629774153, 1.2830845262559984, + 1.1975110026220253, 1.0985709084737545, 0.9852763883677799, + 0.8590027592285037, 0.7239513613696005, 0.5863492302581258, + 0.453224149611353, 0.3313062319226476, 0.22603413060921096, + 0.14068503998840023, 0.07589250350335995, 0.030865877080694926, + 0.002981874362612658, -0.010750844549095515, -0.012899473107740126, + -0.005806762934276622, 0.009200280019537732, 0.03103558769406476, + 0.05848482029754979, 0.09012530518841635, 0.12372373823240765, + 0.1565880642088226, 0.18589475474058442, 0.20924008721111556, + 0.22499008080465693, 0.2328767971181007, 0.23380041496912327, + 0.22941531500447793, 0.22191861926208906, 0.21310596905866647, + 0.2040603894647819, 0.1949684980085201, 0.18518393324358273, + 0.17367093356533078, 0.15951907220539768, 0.14241386428876343, + 0.12295615286559768, 0.10247047239086911, 0.08280101980866125, + 0.06572773281801722, 0.05248343109163093, 0.04333882273184277, + 0.03775054401991538, 0.034470041181298185, 0.03208799669286178, + 0.0296628633317918, 0.027003351464638444, 0.024797501292754934, + 0.024382428191844413, 0.027166994742947256, 0.0341319751438433, + 0.04524776057916417, 0.05944071589163545, 0.07499409193602982, + 0.09014927897612321, 0.10419642950346927, 0.11834285195465004, + 0.13620054125577674, 0.1638217693291826, 0.20872436329039967, + 0.27888343182903624, 0.3811034123146584, 0.5186084836590829, + 0.6918772721755747 + ], + "pressure:branch109_seg1:J96": [ + 7822.719923353362, 8940.702043652467, 10176.919842800355, + 11474.99121015529, 12770.915779709803, 14006.460714937215, + 15136.154917778947, 16132.716137720006, 16980.80258929083, + 17682.897085430963, 18249.01491524861, 18688.331530604857, + 19012.913102899554, 19227.521293100366, 19333.972472241414, + 19334.44590133934, 19228.6519837701, 19023.668724602005, + 18729.847025800933, 18360.859719516127, 17935.032040903636, + 17468.032953030746, 16973.812606290205, 16462.59496643597, + 15940.36663820573, 15411.732943103016, 14881.196336860565, + 14355.187885600659, 13842.48754854094, 13353.14984100885, + 12895.175755098444, 12471.950901602058, 12079.08787379024, + 11702.42239825303, 11320.693238558422, 10908.00863721447, + 10440.034196056653, 9898.591453932335, 9279.49283145891, + 8591.560106739433, 7858.191665834461, 7113.962543296217, + 6397.020406844357, 5743.4267633831205, 5181.4980356317565, + 4728.464588942143, 4386.590968600758, 4150.659368088028, + 4006.566870687092, 3937.606275286982, 3930.2988853712877, + 3972.3471967123432, 4056.57916496773, 4177.429287141423, + 4328.077304329402, 4500.601202794783, 4682.7323333364175, + 4859.664560400505, 5016.156267954116, 5139.567038438687, + 5221.468657868885, 5260.816321442436, 5263.242155017907, + 5237.748944327854, 5196.2271438309035, 5148.299671962769, + 5099.3703809942435, 5050.056564833548, 4996.61669151063, + 4933.357199456187, 4855.569009153414, 4761.817565336459, + 4655.747051872246, 4544.849641070865, 4439.156457196257, + 4348.162201139827, 4278.249361891898, 4230.467741025907, + 4201.471698940503, 4184.414555367645, 4171.669419523982, + 4158.408925315526, 4144.003974794564, 4132.50715655279, 4131.333644182416, + 4148.006133259711, 4187.511485861137, 4249.316136111992, 4327.05644301734, + 4411.370845938773, 4492.9678854334525, 4568.5995619665255, + 4645.754999815077, 4745.036912077011, 4900.08718008094, 5152.210028423513, + 5543.839811731696, 6111.4831034588915, 6871.041396586325, + 7822.719923353362 + ], + "flow:J96:branch109_seg2": [ + 0.6918772721755747, 0.8962889866280329, 1.1233601691158863, + 1.3627721456543465, 1.6026506188310583, 1.8321534615707395, + 2.0426961212876735, 2.228897970941491, 2.3877577955705176, + 2.5196331946751913, 2.626127538453902, 2.709063597753432, + 2.7706916015961047, 2.811890210340364, 2.833146967654268, + 2.834749757516805, 2.8166800825231997, 2.78022863655017, + 2.7271029898782104, 2.6598917017122865, 2.5819325723296593, + 2.4961131391467113, 2.4051090166714792, 2.310833325970293, + 2.214446496437034, 2.116822605547997, 2.01876846454726, + 1.9214439232356388, 1.8264437934480886, 1.735617976716472, + 1.6504867940842665, 1.571783199227823, 1.4987978852565735, + 1.4290614540739095, 1.3587415629774153, 1.2830845262559984, + 1.1975110026220253, 1.0985709084737545, 0.9852763883677799, + 0.8590027592285037, 0.7239513613696005, 0.5863492302581258, + 0.453224149611353, 0.3313062319226476, 0.22603413060921096, + 0.14068503998840023, 0.07589250350335995, 0.030865877080694926, + 0.002981874362612658, -0.010750844549095515, -0.012899473107740126, + -0.005806762934276622, 0.009200280019537732, 0.03103558769406476, + 0.05848482029754979, 0.09012530518841635, 0.12372373823240765, + 0.1565880642088226, 0.18589475474058442, 0.20924008721111556, + 0.22499008080465693, 0.2328767971181007, 0.23380041496912327, + 0.22941531500447793, 0.22191861926208906, 0.21310596905866647, + 0.2040603894647819, 0.1949684980085201, 0.18518393324358273, + 0.17367093356533078, 0.15951907220539768, 0.14241386428876343, + 0.12295615286559768, 0.10247047239086911, 0.08280101980866125, + 0.06572773281801722, 0.05248343109163093, 0.04333882273184277, + 0.03775054401991538, 0.034470041181298185, 0.03208799669286178, + 0.0296628633317918, 0.027003351464638444, 0.024797501292754934, + 0.024382428191844413, 0.027166994742947256, 0.0341319751438433, + 0.04524776057916417, 0.05944071589163545, 0.07499409193602982, + 0.09014927897612321, 0.10419642950346927, 0.11834285195465004, + 0.13620054125577674, 0.1638217693291826, 0.20872436329039967, + 0.27888343182903624, 0.3811034123146584, 0.5186084836590829, + 0.6918772721755747 + ], + "pressure:J96:branch109_seg2": [ + 7822.719923353362, 8940.702043652467, 10176.919842800355, + 11474.99121015529, 12770.915779709803, 14006.460714937215, + 15136.154917778947, 16132.716137720006, 16980.80258929083, + 17682.897085430963, 18249.01491524861, 18688.331530604857, + 19012.913102899554, 19227.521293100366, 19333.972472241414, + 19334.44590133934, 19228.6519837701, 19023.668724602005, + 18729.847025800933, 18360.859719516127, 17935.032040903636, + 17468.032953030746, 16973.812606290205, 16462.59496643597, + 15940.36663820573, 15411.732943103016, 14881.196336860565, + 14355.187885600659, 13842.48754854094, 13353.14984100885, + 12895.175755098444, 12471.950901602058, 12079.08787379024, + 11702.42239825303, 11320.693238558422, 10908.00863721447, + 10440.034196056653, 9898.591453932335, 9279.49283145891, + 8591.560106739433, 7858.191665834461, 7113.962543296217, + 6397.020406844357, 5743.4267633831205, 5181.4980356317565, + 4728.464588942143, 4386.590968600758, 4150.659368088028, + 4006.566870687092, 3937.606275286982, 3930.2988853712877, + 3972.3471967123432, 4056.57916496773, 4177.429287141423, + 4328.077304329402, 4500.601202794783, 4682.7323333364175, + 4859.664560400505, 5016.156267954116, 5139.567038438687, + 5221.468657868885, 5260.816321442436, 5263.242155017907, + 5237.748944327854, 5196.2271438309035, 5148.299671962769, + 5099.3703809942435, 5050.056564833548, 4996.61669151063, + 4933.357199456187, 4855.569009153414, 4761.817565336459, + 4655.747051872246, 4544.849641070865, 4439.156457196257, + 4348.162201139827, 4278.249361891898, 4230.467741025907, + 4201.471698940503, 4184.414555367645, 4171.669419523982, + 4158.408925315526, 4144.003974794564, 4132.50715655279, 4131.333644182416, + 4148.006133259711, 4187.511485861137, 4249.316136111992, 4327.05644301734, + 4411.370845938773, 4492.9678854334525, 4568.5995619665255, + 4645.754999815077, 4745.036912077011, 4900.08718008094, 5152.210028423513, + 5543.839811731696, 6111.4831034588915, 6871.041396586325, + 7822.719923353362 + ], + "flow:branch115_seg0:J97": [ + 0.6565073892896292, 0.8492002341531841, 1.061505461932825, + 1.28316247674466, 1.5028351197371608, 1.7104461044501378, + 1.898323693868399, 2.062010684592347, 2.1994888514675317, + 2.311793030325268, 2.401019040577969, 2.469302972241671, + 2.518895743590988, 2.550638574279572, 2.5648562397094588, + 2.561653938005923, 2.5408964698520573, 2.5037145385151356, + 2.451768045091636, 2.3875319255077168, 2.3141618451720576, + 2.2343982343588626, 2.1506630356828533, 2.0646072084661498, + 1.9771457370058334, 1.8889131555107919, 1.8005364450083432, + 1.7130290178866632, 1.6278628285083572, 1.5467677296731708, + 1.4711517202527693, 1.4016100879380071, 1.3373159050246335, + 1.2757497892508087, 1.2130858839568077, 1.1447042954792863, + 1.0662827746789982, 0.9747179613155657, 0.8693788445588155, + 0.7520051908423769, 0.6270037881693115, 0.5006152983547726, + 0.37969567470552773, 0.2705923631767516, 0.17816369817333844, + 0.10510263534363622, 0.0515193448904222, 0.01609060789877527, + -0.004040845118332127, -0.011963495279846375, -0.01021540710068983, + -0.0009075082215121647, 0.014833475845701112, 0.036172798543002246, + 0.06215199102394262, 0.09151766368865272, 0.12222692257363649, + 0.15177178984169412, 0.17752354122070108, 0.19729742353885676, + 0.2097074441449258, 0.21469784010842222, 0.21333960875076444, + 0.20739653967620664, 0.1990583275551295, 0.19005136458623934, + 0.18132661289279964, 0.17291091815438123, 0.16402436868596573, + 0.15354319872142297, 0.1405324741322755, 0.12469447420037216, + 0.10666024238551425, 0.08779238804448841, 0.0699186008748204, + 0.05475193829451967, 0.04341444381195774, 0.03606094101125074, + 0.03201817153300899, 0.029966092178776105, 0.028489904634659436, + 0.026679149571000767, 0.024418003350682036, 0.02247270510196177, + 0.02222644731178628, 0.025090734906600378, 0.03199364809956957, + 0.04283449032392333, 0.0564722286804914, 0.07115392777380358, + 0.08515245007409598, 0.09783190561959933, 0.11048410772069496, + 0.12676254684241664, 0.1526451768203258, 0.19544758364880205, + 0.26269373217055975, 0.36063298440919195, 0.4919955467570587, + 0.6565073892896292 + ], + "pressure:branch115_seg0:J97": [ + 8306.483520106347, 9522.05080915209, 10838.72523906299, + 12192.113153756707, 13514.737768842726, 14747.821326409523, + 15849.215915174767, 16798.753209432565, 17588.388172638835, + 18226.698080709448, 18730.57718573044, 19110.426254364225, + 19379.206714865995, 19541.42578465622, 19596.111891998986, + 19545.975285205586, 19389.44564690383, 19134.540012555528, + 18795.28504390995, 18385.511263027292, 17925.585562727454, + 17432.064923813385, 16917.551276294027, 16391.43563987927, + 15858.051320124141, 15320.84183492105, 14784.247817794074, + 14255.132211276039, 13743.132016126032, 13258.902038822645, + 12810.07960836318, 12397.879669628448, 12014.91918215253, + 11642.754663381915, 11256.061904247239, 10826.246645856092, + 10328.949185655296, 9747.641889200086, 9083.417130954955, + 8352.213997610545, 7583.68943208013, 6818.92953012605, 6099.75715473394, + 5462.911875980569, 4933.182338731189, 4524.743031972538, + 4233.388521317634, 4047.5160843848007, 3950.274957582567, + 3921.2081001430874, 3946.8262820618183, 4016.016102092504, + 4122.023744648407, 4261.047097521927, 4426.317112307686, 4609.11029025953, + 4796.186270663032, 4971.396241048695, 5118.956928221094, + 5227.0480256193205, 5289.046153613732, 5306.444268779956, + 5288.491281973467, 5246.152259883929, 5192.719954678599, + 5137.988694278239, 5085.807467676487, 5034.703508290851, + 4978.9368139490525, 4911.412393849097, 4827.445882827819, + 4726.404489232454, 4613.810655601317, 4499.255511417086, + 4393.994052450978, 4307.784476976483, 4246.142823539225, + 4208.300510271158, 4188.478713804978, 4178.334525399843, + 4169.428184309936, 4157.401010848447, 4143.27177195387, 4133.074751857497, + 4135.906130632388, 4159.86450588853, 4209.179636250519, 4281.545204819476, + 4367.895001559049, 4457.278853014363, 4540.165297305512, + 4615.290166466202, 4694.500974981057, 4804.304255479248, + 4984.594389993208, 5282.040667581538, 5739.198664795878, + 6392.603196070807, 7252.235796286889, 8306.483520106347 + ], + "flow:J97:branch115_seg1": [ + 0.6565073892896292, 0.8492002341531841, 1.061505461932825, + 1.28316247674466, 1.5028351197371608, 1.7104461044501378, + 1.898323693868399, 2.062010684592347, 2.1994888514675317, + 2.311793030325268, 2.401019040577969, 2.469302972241671, + 2.518895743590988, 2.550638574279572, 2.5648562397094588, + 2.561653938005923, 2.5408964698520573, 2.5037145385151356, + 2.451768045091636, 2.3875319255077168, 2.3141618451720576, + 2.2343982343588626, 2.1506630356828533, 2.0646072084661498, + 1.9771457370058334, 1.8889131555107919, 1.8005364450083432, + 1.7130290178866632, 1.6278628285083572, 1.5467677296731708, + 1.4711517202527693, 1.4016100879380071, 1.3373159050246335, + 1.2757497892508087, 1.2130858839568077, 1.1447042954792863, + 1.0662827746789982, 0.9747179613155657, 0.8693788445588155, + 0.7520051908423769, 0.6270037881693115, 0.5006152983547726, + 0.37969567470552773, 0.2705923631767516, 0.17816369817333844, + 0.10510263534363622, 0.0515193448904222, 0.01609060789877527, + -0.004040845118332127, -0.011963495279846375, -0.01021540710068983, + -0.0009075082215121647, 0.014833475845701112, 0.036172798543002246, + 0.06215199102394262, 0.09151766368865272, 0.12222692257363649, + 0.15177178984169412, 0.17752354122070108, 0.19729742353885676, + 0.2097074441449258, 0.21469784010842222, 0.21333960875076444, + 0.20739653967620664, 0.1990583275551295, 0.19005136458623934, + 0.18132661289279964, 0.17291091815438123, 0.16402436868596573, + 0.15354319872142297, 0.1405324741322755, 0.12469447420037216, + 0.10666024238551425, 0.08779238804448841, 0.0699186008748204, + 0.05475193829451967, 0.04341444381195774, 0.03606094101125074, + 0.03201817153300899, 0.029966092178776105, 0.028489904634659436, + 0.026679149571000767, 0.024418003350682036, 0.02247270510196177, + 0.02222644731178628, 0.025090734906600378, 0.03199364809956957, + 0.04283449032392333, 0.0564722286804914, 0.07115392777380358, + 0.08515245007409598, 0.09783190561959933, 0.11048410772069496, + 0.12676254684241664, 0.1526451768203258, 0.19544758364880205, + 0.26269373217055975, 0.36063298440919195, 0.4919955467570587, + 0.6565073892896292 + ], + "pressure:J97:branch115_seg1": [ + 8306.483520106347, 9522.05080915209, 10838.72523906299, + 12192.113153756707, 13514.737768842726, 14747.821326409523, + 15849.215915174767, 16798.753209432565, 17588.388172638835, + 18226.698080709448, 18730.57718573044, 19110.426254364225, + 19379.206714865995, 19541.42578465622, 19596.111891998986, + 19545.975285205586, 19389.44564690383, 19134.540012555528, + 18795.28504390995, 18385.511263027292, 17925.585562727454, + 17432.064923813385, 16917.551276294027, 16391.43563987927, + 15858.051320124141, 15320.84183492105, 14784.247817794074, + 14255.132211276039, 13743.132016126032, 13258.902038822645, + 12810.07960836318, 12397.879669628448, 12014.91918215253, + 11642.754663381915, 11256.061904247239, 10826.246645856092, + 10328.949185655296, 9747.641889200086, 9083.417130954955, + 8352.213997610545, 7583.68943208013, 6818.92953012605, 6099.75715473394, + 5462.911875980569, 4933.182338731189, 4524.743031972538, + 4233.388521317634, 4047.5160843848007, 3950.274957582567, + 3921.2081001430874, 3946.8262820618183, 4016.016102092504, + 4122.023744648407, 4261.047097521927, 4426.317112307686, 4609.11029025953, + 4796.186270663032, 4971.396241048695, 5118.956928221094, + 5227.0480256193205, 5289.046153613732, 5306.444268779956, + 5288.491281973467, 5246.152259883929, 5192.719954678599, + 5137.988694278239, 5085.807467676487, 5034.703508290851, + 4978.9368139490525, 4911.412393849097, 4827.445882827819, + 4726.404489232454, 4613.810655601317, 4499.255511417086, + 4393.994052450978, 4307.784476976483, 4246.142823539225, + 4208.300510271158, 4188.478713804978, 4178.334525399843, + 4169.428184309936, 4157.401010848447, 4143.27177195387, 4133.074751857497, + 4135.906130632388, 4159.86450588853, 4209.179636250519, 4281.545204819476, + 4367.895001559049, 4457.278853014363, 4540.165297305512, + 4615.290166466202, 4694.500974981057, 4804.304255479248, + 4984.594389993208, 5282.040667581538, 5739.198664795878, + 6392.603196070807, 7252.235796286889, 8306.483520106347 + ], + "flow:branch115_seg1:J98": [ + 0.6560841529035897, 0.848727568140521, 1.0610051719920142, + 1.2826630928963356, 1.5023591748748581, 1.7100111947963823, + 1.897942051700463, 2.061690124043795, 2.199224094563622, + 2.311582012364679, 2.400856406301988, 2.4691823403783135, + 2.5188163268964927, 2.550597986006589, 2.5648551198983958, + 2.561692289774134, 2.540972803871144, 2.5038262470850605, + 2.4519079603770972, 2.387693939134152, 2.314339945211495, + 2.234585663585041, 2.1508562894305903, 2.0648038368229766, + 1.9773442220137714, 1.8891125318587145, 1.8007344524375468, + 1.7132225185663352, 1.6280478963631773, 1.5469410654687599, + 1.4713108064793485, 1.401756604142273, 1.337454701663848, + 1.2758885067367745, 1.2132352329397944, 1.144874769148786, + 1.0664818619129552, 0.9749487414349549, 0.8696391701544034, + 0.7522852822059743, 0.6272903626217067, 0.5008932476830571, + 0.37994919638538854, 0.2708087976725281, 0.178338248115266, + 0.10523199539563498, 0.051605501707594016, 0.01614206178610497, + -0.004018891771121605, -0.011964116289728672, -0.01023308337824281, + -0.000941017221517102, 0.014787759471753379, 0.036116279902589137, + 0.06208644592299641, 0.0914482995235783, 0.12215886534149945, + 0.15171095988035527, 0.17747543867706825, 0.19726597302620802, + 0.2096927931683063, 0.2146984657255122, 0.21335172113448375, + 0.207414865449457, 0.19907885510074694, 0.19007134079991145, + 0.18134543665557692, 0.1729302358070346, 0.16404678275531753, + 0.1535712320768896, 0.1405668599040539, 0.12473449448139197, + 0.10670320599469729, 0.08783382657706412, 0.0699544513942495, + 0.054779413301848975, 0.04343277517835401, 0.03607081339475686, + 0.03202316809643144, 0.02996935501435055, 0.028493600036847835, + 0.026684212102144764, 0.024423038737133976, 0.022474684102550855, + 0.022221979584348607, 0.02507716135821711, 0.031970872217376524, + 0.04280446959193374, 0.056438839780742, 0.07112163150217635, + 0.08512349807594059, 0.09780452626554599, 0.11045119724555304, + 0.1267117119706684, 0.1525599439040032, 0.1953089300244621, + 0.2624899561723795, 0.36035350094055724, 0.4916360720947956, + 0.6560841529035897 + ], + "pressure:branch115_seg1:J98": [ + 8217.97554704522, 9418.141549375097, 10722.685188007463, + 12067.994461278575, 13386.607227129049, 14619.502725773866, + 15723.809234090339, 16678.0703051624, 17473.286344455573, + 18117.607319979503, 18626.98392812791, 19012.247292999225, + 19286.503445554932, 19454.333926765343, 19515.37942582941, + 19471.94001092488, 19322.568698855208, 19074.99741573421, + 18742.39502601028, 18338.741699088336, 17884.06832284683, + 17394.87425038198, 16884.131803955515, 16361.329785915636, + 15831.029871870196, 15296.741703408938, 14762.750165474286, + 14235.735453835998, 13725.140261298131, 13241.546400755267, + 12792.739337130524, 12380.443931264097, 11997.80924032348, + 11627.130877753834, 11243.64871455214, 10819.014528161008, + 10328.592321829714, 9755.423130194307, 9099.58141665305, 8375.79439574854, + 7612.959125872442, 6851.319726338601, 6132.445668376806, + 5493.290508271282, 4959.506813203293, 4545.661788047242, + 4248.597154784292, 4057.502847140984, 3955.5128962501467, + 3922.6045719143863, 3944.9626233010304, 4011.161724792353, + 4114.474517983845, 4250.848052286671, 4413.740393396404, + 4594.721594163076, 4780.778719483307, 4956.0326110521355, + 5104.734536767937, 5214.828116687987, 5279.321374433565, + 5299.329393603048, 5283.496742704071, 5242.660471946214, + 5190.063678679186, 5135.6040042162485, 5083.509320146591, + 5032.659017681252, 4977.550052890831, 4911.1737216792935, + 4828.658727509632, 4729.127429934968, 4617.719642743982, + 4503.706572584117, 4398.258767511203, 4311.2255941707135, + 4248.372853717467, 4209.288431894579, 4188.582212008436, + 4178.011787605876, 4169.141684507409, 4157.38909607304, 4143.407041212063, + 4132.911198569309, 4134.813351392653, 4157.26972981092, 4204.795803256942, + 4275.448562756895, 4360.643107304647, 4449.553838403578, + 4532.485227544785, 4607.628143573825, 4685.929271001226, + 4792.863629436794, 4967.375125656172, 5255.452202740487, + 5700.104611735082, 6337.97981030841, 7180.424965194409, 8217.97554704522 + ], + "flow:J98:branch115_seg2": [ + 0.6560841529035897, 0.848727568140521, 1.0610051719920142, + 1.2826630928963356, 1.5023591748748581, 1.7100111947963823, + 1.897942051700463, 2.061690124043795, 2.199224094563622, + 2.311582012364679, 2.400856406301988, 2.4691823403783135, + 2.5188163268964927, 2.550597986006589, 2.5648551198983958, + 2.561692289774134, 2.540972803871144, 2.5038262470850605, + 2.4519079603770972, 2.387693939134152, 2.314339945211495, + 2.234585663585041, 2.1508562894305903, 2.0648038368229766, + 1.9773442220137714, 1.8891125318587145, 1.8007344524375468, + 1.7132225185663352, 1.6280478963631773, 1.5469410654687599, + 1.4713108064793485, 1.401756604142273, 1.337454701663848, + 1.2758885067367745, 1.2132352329397944, 1.144874769148786, + 1.0664818619129552, 0.9749487414349549, 0.8696391701544034, + 0.7522852822059743, 0.6272903626217067, 0.5008932476830571, + 0.37994919638538854, 0.2708087976725281, 0.178338248115266, + 0.10523199539563498, 0.051605501707594016, 0.01614206178610497, + -0.004018891771121605, -0.011964116289728672, -0.01023308337824281, + -0.000941017221517102, 0.014787759471753379, 0.036116279902589137, + 0.06208644592299641, 0.0914482995235783, 0.12215886534149945, + 0.15171095988035527, 0.17747543867706825, 0.19726597302620802, + 0.2096927931683063, 0.2146984657255122, 0.21335172113448375, + 0.207414865449457, 0.19907885510074694, 0.19007134079991145, + 0.18134543665557692, 0.1729302358070346, 0.16404678275531753, + 0.1535712320768896, 0.1405668599040539, 0.12473449448139197, + 0.10670320599469729, 0.08783382657706412, 0.0699544513942495, + 0.054779413301848975, 0.04343277517835401, 0.03607081339475686, + 0.03202316809643144, 0.02996935501435055, 0.028493600036847835, + 0.026684212102144764, 0.024423038737133976, 0.022474684102550855, + 0.022221979584348607, 0.02507716135821711, 0.031970872217376524, + 0.04280446959193374, 0.056438839780742, 0.07112163150217635, + 0.08512349807594059, 0.09780452626554599, 0.11045119724555304, + 0.1267117119706684, 0.1525599439040032, 0.1953089300244621, + 0.2624899561723795, 0.36035350094055724, 0.4916360720947956, + 0.6560841529035897 + ], + "pressure:J98:branch115_seg2": [ + 8217.97554704522, 9418.141549375097, 10722.685188007463, + 12067.994461278575, 13386.607227129049, 14619.502725773866, + 15723.809234090339, 16678.0703051624, 17473.286344455573, + 18117.607319979503, 18626.98392812791, 19012.247292999225, + 19286.503445554932, 19454.333926765343, 19515.37942582941, + 19471.94001092488, 19322.568698855208, 19074.99741573421, + 18742.39502601028, 18338.741699088336, 17884.06832284683, + 17394.87425038198, 16884.131803955515, 16361.329785915636, + 15831.029871870196, 15296.741703408938, 14762.750165474286, + 14235.735453835998, 13725.140261298131, 13241.546400755267, + 12792.739337130524, 12380.443931264097, 11997.80924032348, + 11627.130877753834, 11243.64871455214, 10819.014528161008, + 10328.592321829714, 9755.423130194307, 9099.58141665305, 8375.79439574854, + 7612.959125872442, 6851.319726338601, 6132.445668376806, + 5493.290508271282, 4959.506813203293, 4545.661788047242, + 4248.597154784292, 4057.502847140984, 3955.5128962501467, + 3922.6045719143863, 3944.9626233010304, 4011.161724792353, + 4114.474517983845, 4250.848052286671, 4413.740393396404, + 4594.721594163076, 4780.778719483307, 4956.0326110521355, + 5104.734536767937, 5214.828116687987, 5279.321374433565, + 5299.329393603048, 5283.496742704071, 5242.660471946214, + 5190.063678679186, 5135.6040042162485, 5083.509320146591, + 5032.659017681252, 4977.550052890831, 4911.1737216792935, + 4828.658727509632, 4729.127429934968, 4617.719642743982, + 4503.706572584117, 4398.258767511203, 4311.2255941707135, + 4248.372853717467, 4209.288431894579, 4188.582212008436, + 4178.011787605876, 4169.141684507409, 4157.38909607304, 4143.407041212063, + 4132.911198569309, 4134.813351392653, 4157.26972981092, 4204.795803256942, + 4275.448562756895, 4360.643107304647, 4449.553838403578, + 4532.485227544785, 4607.628143573825, 4685.929271001226, + 4792.863629436794, 4967.375125656172, 5255.452202740487, + 5700.104611735082, 6337.97981030841, 7180.424965194409, 8217.97554704522 + ], + "flow:branch119_seg0:J99": [ + 1.0399369463233883, 1.3389744807565316, 1.663949826902352, + 1.998383686205572, 2.3248050470227684, 2.6283826812781066, + 2.898520831456057, 3.1298775128826746, 3.3208145553165744, + 3.474160766451188, 3.5939253625272345, 3.68367115793574, + 3.746834881739557, 3.784389650224653, 3.7965044816573412, + 3.783157801634065, 3.7440339423012254, 3.681068877973121, + 3.5970267980809676, 3.495866046487571, 3.3825466393413337, + 3.2611464695102157, 3.1351104220990997, 3.0066148965786783, + 2.876692423437608, 2.746058225162942, 2.6155574543992115, + 2.4867564656910806, 2.3619868185620483, 2.2439338998247336, + 2.134647138866763, 2.0347393328119487, 1.9424864948289398, + 1.8534905875324728, 1.7614370558480252, 1.659025767409532, + 1.5397726657370399, 1.3994044923649487, 1.2378045056663292, + 1.0585844180018475, 0.8694022952879101, 0.6804635235790402, + 0.5024924944959492, 0.34495711737801305, 0.21461488660694256, + 0.11471967468229877, 0.04439509309698648, 0.0007943149961494706, + -0.021010091516763037, -0.025993871617711724, -0.017917546557136302, + 0.00026367079467167794, 0.027164564792394603, 0.06179562812198396, + 0.10279985781054632, 0.14822905377818338, 0.1948326842672027, + 0.23866266515108836, 0.2756994649861421, 0.30278803508096835, + 0.31815571992713393, 0.32219204849536376, 0.31700435757493156, + 0.3056217369369439, 0.2915508068577034, 0.27733590403341774, + 0.2641531986522814, 0.251679246806748, 0.2383879540945784, + 0.22236679202806384, 0.20219223067530376, 0.17758288994136492, + 0.1498024367833078, 0.12121868983485948, 0.09479867130059594, + 0.07315126048691083, 0.057797154598115894, 0.04864184427258689, + 0.04430070269536104, 0.04249869241893291, 0.04098454568274479, + 0.038481773994266645, 0.03508382684368196, 0.03228157176181857, + 0.03243931657521035, 0.03778419454727416, 0.04959839738914439, + 0.0674107175935638, 0.08910270687921225, 0.11172853037255147, + 0.13261137971167078, 0.15107342790430286, 0.16968565148128986, + 0.1947977062882679, 0.23629532386525331, 0.3058209563269172, + 0.41481777335432934, 0.5723406152741579, 0.7813530048606028, + 1.0399369463233883 + ], + "pressure:branch119_seg0:J99": [ + 9032.76160036504, 10378.001457278113, 11794.930324203744, + 13211.340785977229, 14558.047418194497, 15778.199425440827, + 16836.56806091801, 17725.246726755777, 18444.35820813866, + 19009.689301352213, 19446.324887528695, 19762.008717200384, + 19969.667818743073, 20072.158441861615, 20063.63871189739, + 19949.563136267017, 19726.764863474313, 19405.67060545293, + 19007.192214259845, 18544.398889286695, 18040.62922171184, + 17512.872032856707, 16970.78757832533, 16422.513581246305, + 15870.031562279493, 15315.7569060068, 14764.94466286175, + 14225.82095099306, 13709.631014257437, 13227.897993297496, + 12787.074442441537, 12384.532153228867, 12008.153028863117, + 11632.985272048014, 11228.584571722164, 10763.644236573671, + 10215.609698261098, 9571.348065700264, 8840.886030900752, + 8050.508588878034, 7237.378570065728, 6450.5844638397275, + 5734.614013968129, 5125.006012102867, 4639.577150917524, + 4288.060729691346, 4057.0382305482253, 3927.411538915568, + 3880.8646588836687, 3893.150789647685, 3953.021953665328, + 4051.872737689135, 4183.695088353687, 4346.756366810685, + 4533.017078595709, 4731.786015454748, 4927.629739140464, + 5102.1399276605625, 5239.007088186596, 5328.327802935726, + 5366.33294998586, 5358.31977515238, 5318.934291272759, 5260.6302865107145, + 5197.80436469838, 5139.519215967198, 5086.463813385528, 5033.989140282069, + 4973.90025898203, 4897.920363564048, 4802.522880993088, 4689.099739996738, + 4566.440220743734, 4447.106915563201, 4343.523891408608, + 4265.001055013191, 4215.0675078255, 4189.747010919183, 4179.879569811697, + 4175.572361137907, 4168.024105201319, 4154.564822161742, + 4139.270209670228, 4131.134926858045, 4141.253734441238, + 4177.603874151074, 4242.399055011339, 4330.112808211301, + 4427.357209981666, 4521.682028036836, 4604.26025395772, + 4678.0274713444305, 4762.288277504853, 4892.556918040199, + 5117.2900162977485, 5489.585003033966, 6049.633446757164, + 6832.277951665516, 7836.438567423602, 9032.76160036504 + ], + "flow:J99:branch119_seg1": [ + 1.0399369463233883, 1.3389744807565316, 1.663949826902352, + 1.998383686205572, 2.3248050470227684, 2.6283826812781066, + 2.898520831456057, 3.1298775128826746, 3.3208145553165744, + 3.474160766451188, 3.5939253625272345, 3.68367115793574, + 3.746834881739557, 3.784389650224653, 3.7965044816573412, + 3.783157801634065, 3.7440339423012254, 3.681068877973121, + 3.5970267980809676, 3.495866046487571, 3.3825466393413337, + 3.2611464695102157, 3.1351104220990997, 3.0066148965786783, + 2.876692423437608, 2.746058225162942, 2.6155574543992115, + 2.4867564656910806, 2.3619868185620483, 2.2439338998247336, + 2.134647138866763, 2.0347393328119487, 1.9424864948289398, + 1.8534905875324728, 1.7614370558480252, 1.659025767409532, + 1.5397726657370399, 1.3994044923649487, 1.2378045056663292, + 1.0585844180018475, 0.8694022952879101, 0.6804635235790402, + 0.5024924944959492, 0.34495711737801305, 0.21461488660694256, + 0.11471967468229877, 0.04439509309698648, 0.0007943149961494706, + -0.021010091516763037, -0.025993871617711724, -0.017917546557136302, + 0.00026367079467167794, 0.027164564792394603, 0.06179562812198396, + 0.10279985781054632, 0.14822905377818338, 0.1948326842672027, + 0.23866266515108836, 0.2756994649861421, 0.30278803508096835, + 0.31815571992713393, 0.32219204849536376, 0.31700435757493156, + 0.3056217369369439, 0.2915508068577034, 0.27733590403341774, + 0.2641531986522814, 0.251679246806748, 0.2383879540945784, + 0.22236679202806384, 0.20219223067530376, 0.17758288994136492, + 0.1498024367833078, 0.12121868983485948, 0.09479867130059594, + 0.07315126048691083, 0.057797154598115894, 0.04864184427258689, + 0.04430070269536104, 0.04249869241893291, 0.04098454568274479, + 0.038481773994266645, 0.03508382684368196, 0.03228157176181857, + 0.03243931657521035, 0.03778419454727416, 0.04959839738914439, + 0.0674107175935638, 0.08910270687921225, 0.11172853037255147, + 0.13261137971167078, 0.15107342790430286, 0.16968565148128986, + 0.1947977062882679, 0.23629532386525331, 0.3058209563269172, + 0.41481777335432934, 0.5723406152741579, 0.7813530048606028, + 1.0399369463233883 + ], + "pressure:J99:branch119_seg1": [ + 9032.76160036504, 10378.001457278113, 11794.930324203744, + 13211.340785977229, 14558.047418194497, 15778.199425440827, + 16836.56806091801, 17725.246726755777, 18444.35820813866, + 19009.689301352213, 19446.324887528695, 19762.008717200384, + 19969.667818743073, 20072.158441861615, 20063.63871189739, + 19949.563136267017, 19726.764863474313, 19405.67060545293, + 19007.192214259845, 18544.398889286695, 18040.62922171184, + 17512.872032856707, 16970.78757832533, 16422.513581246305, + 15870.031562279493, 15315.7569060068, 14764.94466286175, + 14225.82095099306, 13709.631014257437, 13227.897993297496, + 12787.074442441537, 12384.532153228867, 12008.153028863117, + 11632.985272048014, 11228.584571722164, 10763.644236573671, + 10215.609698261098, 9571.348065700264, 8840.886030900752, + 8050.508588878034, 7237.378570065728, 6450.5844638397275, + 5734.614013968129, 5125.006012102867, 4639.577150917524, + 4288.060729691346, 4057.0382305482253, 3927.411538915568, + 3880.8646588836687, 3893.150789647685, 3953.021953665328, + 4051.872737689135, 4183.695088353687, 4346.756366810685, + 4533.017078595709, 4731.786015454748, 4927.629739140464, + 5102.1399276605625, 5239.007088186596, 5328.327802935726, + 5366.33294998586, 5358.31977515238, 5318.934291272759, 5260.6302865107145, + 5197.80436469838, 5139.519215967198, 5086.463813385528, 5033.989140282069, + 4973.90025898203, 4897.920363564048, 4802.522880993088, 4689.099739996738, + 4566.440220743734, 4447.106915563201, 4343.523891408608, + 4265.001055013191, 4215.0675078255, 4189.747010919183, 4179.879569811697, + 4175.572361137907, 4168.024105201319, 4154.564822161742, + 4139.270209670228, 4131.134926858045, 4141.253734441238, + 4177.603874151074, 4242.399055011339, 4330.112808211301, + 4427.357209981666, 4521.682028036836, 4604.26025395772, + 4678.0274713444305, 4762.288277504853, 4892.556918040199, + 5117.2900162977485, 5489.585003033966, 6049.633446757164, + 6832.277951665516, 7836.438567423602, 9032.76160036504 + ], + "flow:branch119_seg1:J100": [ + 1.0362253076335532, 1.334952568625698, 1.659791825330528, + 1.994361308933639, 2.321086027761284, 2.6250749843624486, + 2.895686447870915, 3.127588904305578, 3.3189612421016896, + 3.4727105157997316, 3.592855634119815, 3.6829065907200946, + 3.7463918439960895, 3.7842550298549757, 3.796677485171595, + 3.783649481111156, 3.744826613807399, 3.682129306705488, + 3.5982857342259145, 3.497269758981158, 3.3840527992532325, + 3.262698485960456, 3.136689350669647, 3.0082091060542338, + 2.8782931381604238, 2.7476607800096158, 2.6171390602774403, + 2.488287556365704, 2.363432043542291, 2.2452715586627376, + 2.135859362869915, 2.035855558175331, 1.9435659460740051, + 1.854601449159533, 1.7626788805830922, 1.6604837021014718, + 1.541497876364356, 1.4013983946077921, 1.2400281161168198, + 1.0609310779816499, 0.8717385950027283, 0.6826647845491283, + 0.5044280250513583, 0.34653098583826275, 0.21582689319999146, + 0.1155573337624817, 0.04488325517441373, 0.0010387044025438974, + -0.020974185670027807, -0.02611262060030071, -0.018143864592089942, + -8.448804282250194e-5, 0.026733290187592018, 0.06129189586534002, + 0.10222924966731217, 0.14764982187984588, 0.1942899504828979, + 0.2382036288982842, 0.2753660645815398, 0.30260900431413207, + 0.3181158422271273, 0.3222637403795595, 0.31715652092981456, + 0.3058018467172415, 0.2917284091713832, 0.277497725516946, + 0.264301745276765, 0.25183728650630816, 0.2385819813345766, + 0.22261762422623924, 0.20249746459119472, 0.17792950793491766, + 0.1501623966033455, 0.12154733657279719, 0.09506320557115973, + 0.07333496418280795, 0.05790484386624362, 0.04868229490601493, + 0.04431580502922856, 0.04251636645737565, 0.04101441262746382, + 0.03852642341438008, 0.03512324315561693, 0.032283992405388234, + 0.032375640044200606, 0.037635020567506935, 0.04937309618321367, + 0.06713756207936379, 0.0888171262301962, 0.11147039580556803, + 0.13239146180929315, 0.15085844113037036, 0.16939494365845645, + 0.19430751148191266, 0.23545599013226476, 0.3044616967710172, + 0.41287902215426886, 0.5697591023035158, 0.7780858527029648, + 1.0362253076335532 + ], + "pressure:branch119_seg1:J100": [ + 8522.225831294123, 9788.439177053657, 11148.82186593622, + 12534.54785892889, 13874.631349550873, 15109.572207182533, + 16198.855125660997, 17125.829302410166, 17885.4928306884, + 18491.3619136737, 18963.04095415735, 19312.351086560415, + 19553.336000912706, 19689.45164976497, 19719.028897055945, + 19644.11607846698, 19462.575245954817, 19183.124887444723, + 18820.527619160486, 18389.793355884267, 17912.351843499044, + 17404.96028002388, 16880.198680966438, 16346.730642425508, + 15807.972808770794, 15266.668867971028, 14726.865617395759, + 14195.602125952579, 13683.006299418143, 13200.317297859268, + 12755.221732943714, 12348.552872906588, 11971.531603678359, + 11603.678530477122, 11217.615449842708, 10782.90389795405, + 10274.356302825516, 9675.844847134187, 8990.562162509113, + 8237.210420658743, 7449.082721399406, 6670.653698924186, + 5945.973873951254, 5312.785700419962, 4795.486238826956, + 4406.094055420636, 4137.631790785195, 3975.9955520873627, + 3901.483991500024, 3892.3710132412834, 3934.738171433915, + 4017.5540362543748, 4135.215581153845, 4284.39396008887, + 4458.629820592201, 4649.162253378174, 4841.858674859928, + 5019.757583190188, 5166.438659112403, 5270.050702213491, + 5324.416672532297, 5332.437663982355, 5304.939127730324, + 5254.214314931925, 5194.724011839319, 5136.464030322658, + 5082.798826666905, 5031.275926799973, 4974.960346345854, + 4905.836942000239, 4818.833981233496, 4713.6801027261035, + 4596.794541278569, 4478.856886855827, 4372.151225262487, + 4286.917398006123, 4228.484746509014, 4195.176926907549, + 4180.188941858598, 4173.937377727874, 4167.29703168269, 4155.941574117461, + 4141.511245725929, 4131.113189974066, 4134.949051667293, + 4161.750845804433, 4215.7797456178405, 4293.87337745033, + 4385.657847617509, 4478.973132032421, 4563.521382886258, + 4638.434895102106, 4717.240390497774, 4829.220060237737, + 5017.617734972933, 5332.0048081226005, 5817.158151345297, + 6509.284545591913, 7415.88234792869, 8522.225831294123 + ], + "flow:J100:branch119_seg2": [ + 1.0362253076335532, 1.334952568625698, 1.659791825330528, + 1.994361308933639, 2.321086027761284, 2.6250749843624486, + 2.895686447870915, 3.127588904305578, 3.3189612421016896, + 3.4727105157997316, 3.592855634119815, 3.6829065907200946, + 3.7463918439960895, 3.7842550298549757, 3.796677485171595, + 3.783649481111156, 3.744826613807399, 3.682129306705488, + 3.5982857342259145, 3.497269758981158, 3.3840527992532325, + 3.262698485960456, 3.136689350669647, 3.0082091060542338, + 2.8782931381604238, 2.7476607800096158, 2.6171390602774403, + 2.488287556365704, 2.363432043542291, 2.2452715586627376, + 2.135859362869915, 2.035855558175331, 1.9435659460740051, + 1.854601449159533, 1.7626788805830922, 1.6604837021014718, + 1.541497876364356, 1.4013983946077921, 1.2400281161168198, + 1.0609310779816499, 0.8717385950027283, 0.6826647845491283, + 0.5044280250513583, 0.34653098583826275, 0.21582689319999146, + 0.1155573337624817, 0.04488325517441373, 0.0010387044025438974, + -0.020974185670027807, -0.02611262060030071, -0.018143864592089942, + -8.448804282250194e-5, 0.026733290187592018, 0.06129189586534002, + 0.10222924966731217, 0.14764982187984588, 0.1942899504828979, + 0.2382036288982842, 0.2753660645815398, 0.30260900431413207, + 0.3181158422271273, 0.3222637403795595, 0.31715652092981456, + 0.3058018467172415, 0.2917284091713832, 0.277497725516946, + 0.264301745276765, 0.25183728650630816, 0.2385819813345766, + 0.22261762422623924, 0.20249746459119472, 0.17792950793491766, + 0.1501623966033455, 0.12154733657279719, 0.09506320557115973, + 0.07333496418280795, 0.05790484386624362, 0.04868229490601493, + 0.04431580502922856, 0.04251636645737565, 0.04101441262746382, + 0.03852642341438008, 0.03512324315561693, 0.032283992405388234, + 0.032375640044200606, 0.037635020567506935, 0.04937309618321367, + 0.06713756207936379, 0.0888171262301962, 0.11147039580556803, + 0.13239146180929315, 0.15085844113037036, 0.16939494365845645, + 0.19430751148191266, 0.23545599013226476, 0.3044616967710172, + 0.41287902215426886, 0.5697591023035158, 0.7780858527029648, + 1.0362253076335532 + ], + "pressure:J100:branch119_seg2": [ + 8522.225831294123, 9788.439177053657, 11148.82186593622, + 12534.54785892889, 13874.631349550873, 15109.572207182533, + 16198.855125660997, 17125.829302410166, 17885.4928306884, + 18491.3619136737, 18963.04095415735, 19312.351086560415, + 19553.336000912706, 19689.45164976497, 19719.028897055945, + 19644.11607846698, 19462.575245954817, 19183.124887444723, + 18820.527619160486, 18389.793355884267, 17912.351843499044, + 17404.96028002388, 16880.198680966438, 16346.730642425508, + 15807.972808770794, 15266.668867971028, 14726.865617395759, + 14195.602125952579, 13683.006299418143, 13200.317297859268, + 12755.221732943714, 12348.552872906588, 11971.531603678359, + 11603.678530477122, 11217.615449842708, 10782.90389795405, + 10274.356302825516, 9675.844847134187, 8990.562162509113, + 8237.210420658743, 7449.082721399406, 6670.653698924186, + 5945.973873951254, 5312.785700419962, 4795.486238826956, + 4406.094055420636, 4137.631790785195, 3975.9955520873627, + 3901.483991500024, 3892.3710132412834, 3934.738171433915, + 4017.5540362543748, 4135.215581153845, 4284.39396008887, + 4458.629820592201, 4649.162253378174, 4841.858674859928, + 5019.757583190188, 5166.438659112403, 5270.050702213491, + 5324.416672532297, 5332.437663982355, 5304.939127730324, + 5254.214314931925, 5194.724011839319, 5136.464030322658, + 5082.798826666905, 5031.275926799973, 4974.960346345854, + 4905.836942000239, 4818.833981233496, 4713.6801027261035, + 4596.794541278569, 4478.856886855827, 4372.151225262487, + 4286.917398006123, 4228.484746509014, 4195.176926907549, + 4180.188941858598, 4173.937377727874, 4167.29703168269, 4155.941574117461, + 4141.511245725929, 4131.113189974066, 4134.949051667293, + 4161.750845804433, 4215.7797456178405, 4293.87337745033, + 4385.657847617509, 4478.973132032421, 4563.521382886258, + 4638.434895102106, 4717.240390497774, 4829.220060237737, + 5017.617734972933, 5332.0048081226005, 5817.158151345297, + 6509.284545591913, 7415.88234792869, 8522.225831294123 + ], + "flow:branch123_seg0:J101": [ + 0.884473139712119, 1.1318002456211413, 1.396793379946414, + 1.6659318856425651, 1.9250862776725552, 2.1627976485707117, + 2.371355085969529, 2.5475846455879925, 2.6908549772706207, + 2.8041437602091617, 2.891160538717788, 2.9545640341253905, + 2.9971645706557117, 3.0194729487732577, 3.021416183639218, + 3.003157120521667, 2.964404885612748, 2.907124840806724, + 2.833847740299043, 2.747839843861944, 2.6533069723846556, + 2.553367161201605, 2.450585093225959, 2.346513664402114, + 2.2417493328990425, 2.136802711031173, 2.032386658862769, + 1.9298674144178996, 1.8312301741675578, 1.738656885589369, + 1.6536271027224387, 1.576287104151556, 1.5048121406506503, + 1.435116773234007, 1.3617664492326937, 1.2787339344737336, + 1.181003309625044, 1.0655431948699101, 0.9330649676359182, + 0.787223919874975, 0.6348431829331427, 0.4846446525126016, + 0.34532783248637794, 0.2242384876833438, 0.12626317070899726, + 0.053448218620721175, 0.00424774946154624, -0.024016333783961046, + -0.03558834302434824, -0.03462268702903336, -0.023877216154888112, + -0.005615382596189545, 0.019232656255392222, 0.049974804285804815, + 0.08535593166087745, 0.12368319880421277, 0.16212880609155753, + 0.19737725603550588, 0.22622217854886267, 0.2463414203960562, + 0.25660558356990504, 0.25772219067900737, 0.25178642365023635, + 0.24137651507359265, 0.2293955449952977, 0.2177491942736999, + 0.2071146578440991, 0.19697394626292708, 0.1859079272580023, + 0.17232921684269528, 0.15521504869216465, 0.13455417785014834, + 0.11166033999150932, 0.08863487402111629, 0.0679411135644791, + 0.051590883284195574, 0.04059195220081187, 0.03455398284694028, + 0.03211083692697039, 0.03130811086465812, 0.030331144100582554, + 0.028348775812955786, 0.025700187521220778, 0.02382756435764549, + 0.02477309594515764, 0.030273712455689016, 0.04115533625909572, + 0.056719704147565705, 0.0749325864475839, 0.09330892708703428, + 0.10978907341482404, 0.12422809870415115, 0.13933644234611367, + 0.16093720639014966, 0.1976278402100482, 0.2590757048870167, + 0.3542953115375027, 0.490174037881939, 0.6677734863721932, + 0.884473139712119 + ], + "pressure:branch123_seg0:J101": [ + 9275.478855904596, 10672.870152701375, 12137.007349770995, + 13593.733272633048, 14971.908633234818, 16213.598928884572, + 17283.542796214904, 18175.910750562543, 18892.392591131516, + 19448.98569029716, 19873.701280399004, 20174.208252098648, + 20363.4975016227, 20445.06519158163, 20412.423366503444, + 20271.89023289632, 20020.778391796706, 19670.32633096096, + 19242.73270766809, 18751.79392957703, 18221.803026150603, + 17669.92666019157, 17105.657957233423, 16537.11791645085, + 15965.940428186454, 15394.55563029707, 14828.440984763194, + 14276.189145647535, 13749.475536111731, 13260.02213955001, + 12814.045395728475, 12407.857299080468, 12028.256097713764, + 11648.384929819977, 11236.173547506418, 10759.261374807886, + 10194.828667838568, 9530.215334977222, 8777.065189600182, + 7964.058539877407, 7130.491198012964, 6327.7531065040785, + 5601.9563269585915, 4988.976975272853, 4506.215400957588, + 4162.8463940305855, 3943.2868766862093, 3827.384290946045, + 3796.01982520079, 3823.4455544721804, 3898.7414729780094, + 4012.956661722031, 4159.838978327685, 4337.999123475946, + 4538.312038050932, 4749.522191206154, 4955.571157458129, + 5137.1553998472555, 5277.659631054685, 5367.439863515512, + 5403.363902441411, 5391.394080493771, 5347.522584689345, 5285.00502073911, + 5218.523152292447, 5157.330711858028, 5101.717341480718, + 5046.481930765989, 4982.982716882949, 4902.726976216736, + 4802.3992293397505, 4683.821902470868, 4556.628573460832, + 4433.987102909585, 4328.725046595547, 4250.18726553714, 4201.599673827086, + 4178.285793412825, 4170.31156864706, 4167.526699309208, 4160.771389261802, + 4147.6970167666805, 4133.0034507762175, 4126.291030883925, + 4139.134012851984, 4179.544819070001, 4249.30093352739, 4342.214758620504, + 4443.918563814192, 4541.389263479784, 4626.008115361811, + 4701.6161283694655, 4789.35739092471, 4927.124576084127, + 5165.932497618391, 5560.873098979887, 6152.562331908175, + 6976.512260359519, 8028.172617607336, 9275.478855904596 + ], + "flow:J101:branch123_seg1": [ + 0.884473139712119, 1.1318002456211413, 1.396793379946414, + 1.6659318856425651, 1.9250862776725552, 2.1627976485707117, + 2.371355085969529, 2.5475846455879925, 2.6908549772706207, + 2.8041437602091617, 2.891160538717788, 2.9545640341253905, + 2.9971645706557117, 3.0194729487732577, 3.021416183639218, + 3.003157120521667, 2.964404885612748, 2.907124840806724, + 2.833847740299043, 2.747839843861944, 2.6533069723846556, + 2.553367161201605, 2.450585093225959, 2.346513664402114, + 2.2417493328990425, 2.136802711031173, 2.032386658862769, + 1.9298674144178996, 1.8312301741675578, 1.738656885589369, + 1.6536271027224387, 1.576287104151556, 1.5048121406506503, + 1.435116773234007, 1.3617664492326937, 1.2787339344737336, + 1.181003309625044, 1.0655431948699101, 0.9330649676359182, + 0.787223919874975, 0.6348431829331427, 0.4846446525126016, + 0.34532783248637794, 0.2242384876833438, 0.12626317070899726, + 0.053448218620721175, 0.00424774946154624, -0.024016333783961046, + -0.03558834302434824, -0.03462268702903336, -0.023877216154888112, + -0.005615382596189545, 0.019232656255392222, 0.049974804285804815, + 0.08535593166087745, 0.12368319880421277, 0.16212880609155753, + 0.19737725603550588, 0.22622217854886267, 0.2463414203960562, + 0.25660558356990504, 0.25772219067900737, 0.25178642365023635, + 0.24137651507359265, 0.2293955449952977, 0.2177491942736999, + 0.2071146578440991, 0.19697394626292708, 0.1859079272580023, + 0.17232921684269528, 0.15521504869216465, 0.13455417785014834, + 0.11166033999150932, 0.08863487402111629, 0.0679411135644791, + 0.051590883284195574, 0.04059195220081187, 0.03455398284694028, + 0.03211083692697039, 0.03130811086465812, 0.030331144100582554, + 0.028348775812955786, 0.025700187521220778, 0.02382756435764549, + 0.02477309594515764, 0.030273712455689016, 0.04115533625909572, + 0.056719704147565705, 0.0749325864475839, 0.09330892708703428, + 0.10978907341482404, 0.12422809870415115, 0.13933644234611367, + 0.16093720639014966, 0.1976278402100482, 0.2590757048870167, + 0.3542953115375027, 0.490174037881939, 0.6677734863721932, + 0.884473139712119 + ], + "pressure:J101:branch123_seg1": [ + 9275.478855904596, 10672.870152701375, 12137.007349770995, + 13593.733272633048, 14971.908633234818, 16213.598928884572, + 17283.542796214904, 18175.910750562543, 18892.392591131516, + 19448.98569029716, 19873.701280399004, 20174.208252098648, + 20363.4975016227, 20445.06519158163, 20412.423366503444, + 20271.89023289632, 20020.778391796706, 19670.32633096096, + 19242.73270766809, 18751.79392957703, 18221.803026150603, + 17669.92666019157, 17105.657957233423, 16537.11791645085, + 15965.940428186454, 15394.55563029707, 14828.440984763194, + 14276.189145647535, 13749.475536111731, 13260.02213955001, + 12814.045395728475, 12407.857299080468, 12028.256097713764, + 11648.384929819977, 11236.173547506418, 10759.261374807886, + 10194.828667838568, 9530.215334977222, 8777.065189600182, + 7964.058539877407, 7130.491198012964, 6327.7531065040785, + 5601.9563269585915, 4988.976975272853, 4506.215400957588, + 4162.8463940305855, 3943.2868766862093, 3827.384290946045, + 3796.01982520079, 3823.4455544721804, 3898.7414729780094, + 4012.956661722031, 4159.838978327685, 4337.999123475946, + 4538.312038050932, 4749.522191206154, 4955.571157458129, + 5137.1553998472555, 5277.659631054685, 5367.439863515512, + 5403.363902441411, 5391.394080493771, 5347.522584689345, 5285.00502073911, + 5218.523152292447, 5157.330711858028, 5101.717341480718, + 5046.481930765989, 4982.982716882949, 4902.726976216736, + 4802.3992293397505, 4683.821902470868, 4556.628573460832, + 4433.987102909585, 4328.725046595547, 4250.18726553714, 4201.599673827086, + 4178.285793412825, 4170.31156864706, 4167.526699309208, 4160.771389261802, + 4147.6970167666805, 4133.0034507762175, 4126.291030883925, + 4139.134012851984, 4179.544819070001, 4249.30093352739, 4342.214758620504, + 4443.918563814192, 4541.389263479784, 4626.008115361811, + 4701.6161283694655, 4789.35739092471, 4927.124576084127, + 5165.932497618391, 5560.873098979887, 6152.562331908175, + 6976.512260359519, 8028.172617607336, 9275.478855904596 + ], + "flow:branch123_seg1:J102": [ + 0.8800903082302718, 1.1270815194792518, 1.3919436375233287, + 1.6612644340746994, 1.9207997479131476, 2.159006387405374, + 2.368131510799493, 2.5449999940934362, 2.6887713163805214, + 2.8025402245094204, 2.8899925667090827, 2.95374627739526, + 2.9967252103084787, 3.019387601962622, 3.0216883867079107, + 3.0038001130721708, 2.9653832809796357, 2.908415077532922, + 2.8353673229955834, 2.7495107429851426, 2.6550917020374, + 2.5551978426034903, 2.4524384655706575, 2.3483803693434084, + 2.2436174889420077, 2.1386674137447823, 2.034221855255403, + 1.9316371265363363, 1.8328932007966445, 1.7401900135202526, + 1.6550102994440592, 1.577559963693733, 1.5060452095425425, + 1.4363941549907513, 1.363202665528337, 1.2804295794890035, + 1.18301316314327, 1.0678637249677625, 0.9356535684977214, + 0.789948184741933, 0.6375452678975156, 0.4871815485097902, + 0.3475442092573648, 0.22602507741455655, 0.12761520546068408, + 0.054368647970976326, 0.00475745020207798, -0.023791201235304652, + -0.03559819129471634, -0.03481138511613854, -0.024185264453005124, + -0.006060439981428198, 0.018692209102861554, 0.049354896987351335, + 0.08466605094332681, 0.12299010231325579, 0.16148621592305318, + 0.19684008046847923, 0.22583810176033575, 0.2461420199421268, + 0.25656719747784384, 0.25781641621429285, 0.2519725281232382, + 0.24159042434660508, 0.2296070546662646, 0.21794168487098334, + 0.20729130138877302, 0.19716251658934802, 0.186139849004804, + 0.17262789369736675, 0.1555780273496395, 0.1349625031332246, + 0.11208132215680669, 0.08901593585586103, 0.06824303338834128, + 0.051795592480118904, 0.04070746969211673, 0.03459215765149563, + 0.03212154273771697, 0.031324151034171056, 0.030363818937419428, + 0.028397997623379013, 0.02574173756198513, 0.023823611260720426, + 0.02469007275486384, 0.03008995902889327, 0.04088515999930449, + 0.05639531336409313, 0.07459658669470043, 0.09300922961801242, + 0.10953399520310347, 0.12397706231296664, 0.13899103481560862, + 0.160350205164164, 0.19662133709174848, 0.25745129456854987, + 0.3519759923664181, 0.4871063039569432, 0.6639094900400024, + 0.8800903082302718 + ], + "pressure:branch123_seg1:J102": [ + 8743.887161622411, 10064.052216523072, 11474.975292625599, + 12905.219379394075, 14279.933746767803, 15538.437099733579, + 16640.493971897333, 17570.83312209556, 18325.819739382132, + 18921.828470072945, 19379.54537934556, 19711.971994652646, + 19934.272785179008, 20049.011792129444, 20055.09701594029, + 19954.19038654271, 19744.35867087652, 19436.171307141158, + 19043.953910971937, 18584.527864410375, 18080.62521321003, + 17548.69467828033, 17001.960179931306, 16448.694862540673, + 15891.83368258124, 15334.07498610962, 14779.32619061693, + 14234.960200576123, 13711.623109753325, 13220.978384533284, + 12770.653730428194, 12361.097289664529, 11982.310218870161, + 11612.007857272933, 11221.106610486331, 10777.563372622746, + 10255.111170165164, 9637.879591585708, 8930.526643898107, + 8153.256110090091, 7342.508049539963, 6545.259003640519, + 5807.531050091225, 5168.040642564188, 4652.007519278552, + 4270.088749385638, 4013.1711537333003, 3866.753604815004, + 3808.456033565347, 3815.7863865218583, 3874.6614962573854, + 3973.142516316914, 4106.402939148918, 4270.966522409089, + 4459.812673359626, 4663.933521900762, 4868.139654999115, + 5054.636098187283, 5206.456413826705, 5311.591390157589, + 5364.186507181078, 5368.27252609751, 5335.562262899944, + 5279.5433736796485, 5215.6583217459465, 5153.950428229587, + 5097.646853033841, 5043.78343111841, 4984.706388692565, 4911.957695501098, + 4820.286101051212, 4709.811671508133, 4587.794950579593, + 4465.551576909836, 4356.162606222348, 4270.204921198831, + 4212.851012812523, 4181.692632571022, 4169.304321771525, + 4165.280035562211, 4159.967383029156, 4149.191899453653, + 4135.034636672246, 4125.339353660674, 4131.047920042139, + 4161.253584582418, 4220.146000916907, 4303.7691953094445, + 4400.902719374689, 4498.428947247654, 4585.5644555875815, + 4661.942268389449, 4742.576206411572, 4859.0462672383865, + 5057.495141282015, 5389.56308735409, 5902.5846679128135, + 6633.005393341507, 7585.058498154173, 8743.887161622411 + ], + "flow:J102:branch123_seg2": [ + 0.8800903082302718, 1.1270815194792518, 1.3919436375233287, + 1.6612644340746994, 1.9207997479131476, 2.159006387405374, + 2.368131510799493, 2.5449999940934362, 2.6887713163805214, + 2.8025402245094204, 2.8899925667090827, 2.95374627739526, + 2.9967252103084787, 3.019387601962622, 3.0216883867079107, + 3.0038001130721708, 2.9653832809796357, 2.908415077532922, + 2.8353673229955834, 2.7495107429851426, 2.6550917020374, + 2.5551978426034903, 2.4524384655706575, 2.3483803693434084, + 2.2436174889420077, 2.1386674137447823, 2.034221855255403, + 1.9316371265363363, 1.8328932007966445, 1.7401900135202526, + 1.6550102994440592, 1.577559963693733, 1.5060452095425425, + 1.4363941549907513, 1.363202665528337, 1.2804295794890035, + 1.18301316314327, 1.0678637249677625, 0.9356535684977214, + 0.789948184741933, 0.6375452678975156, 0.4871815485097902, + 0.3475442092573648, 0.22602507741455655, 0.12761520546068408, + 0.054368647970976326, 0.00475745020207798, -0.023791201235304652, + -0.03559819129471634, -0.03481138511613854, -0.024185264453005124, + -0.006060439981428198, 0.018692209102861554, 0.049354896987351335, + 0.08466605094332681, 0.12299010231325579, 0.16148621592305318, + 0.19684008046847923, 0.22583810176033575, 0.2461420199421268, + 0.25656719747784384, 0.25781641621429285, 0.2519725281232382, + 0.24159042434660508, 0.2296070546662646, 0.21794168487098334, + 0.20729130138877302, 0.19716251658934802, 0.186139849004804, + 0.17262789369736675, 0.1555780273496395, 0.1349625031332246, + 0.11208132215680669, 0.08901593585586103, 0.06824303338834128, + 0.051795592480118904, 0.04070746969211673, 0.03459215765149563, + 0.03212154273771697, 0.031324151034171056, 0.030363818937419428, + 0.028397997623379013, 0.02574173756198513, 0.023823611260720426, + 0.02469007275486384, 0.03008995902889327, 0.04088515999930449, + 0.05639531336409313, 0.07459658669470043, 0.09300922961801242, + 0.10953399520310347, 0.12397706231296664, 0.13899103481560862, + 0.160350205164164, 0.19662133709174848, 0.25745129456854987, + 0.3519759923664181, 0.4871063039569432, 0.6639094900400024, + 0.8800903082302718 + ], + "pressure:J102:branch123_seg2": [ + 8743.887161622411, 10064.052216523072, 11474.975292625599, + 12905.219379394075, 14279.933746767803, 15538.437099733579, + 16640.493971897333, 17570.83312209556, 18325.819739382132, + 18921.828470072945, 19379.54537934556, 19711.971994652646, + 19934.272785179008, 20049.011792129444, 20055.09701594029, + 19954.19038654271, 19744.35867087652, 19436.171307141158, + 19043.953910971937, 18584.527864410375, 18080.62521321003, + 17548.69467828033, 17001.960179931306, 16448.694862540673, + 15891.83368258124, 15334.07498610962, 14779.32619061693, + 14234.960200576123, 13711.623109753325, 13220.978384533284, + 12770.653730428194, 12361.097289664529, 11982.310218870161, + 11612.007857272933, 11221.106610486331, 10777.563372622746, + 10255.111170165164, 9637.879591585708, 8930.526643898107, + 8153.256110090091, 7342.508049539963, 6545.259003640519, + 5807.531050091225, 5168.040642564188, 4652.007519278552, + 4270.088749385638, 4013.1711537333003, 3866.753604815004, + 3808.456033565347, 3815.7863865218583, 3874.6614962573854, + 3973.142516316914, 4106.402939148918, 4270.966522409089, + 4459.812673359626, 4663.933521900762, 4868.139654999115, + 5054.636098187283, 5206.456413826705, 5311.591390157589, + 5364.186507181078, 5368.27252609751, 5335.562262899944, + 5279.5433736796485, 5215.6583217459465, 5153.950428229587, + 5097.646853033841, 5043.78343111841, 4984.706388692565, 4911.957695501098, + 4820.286101051212, 4709.811671508133, 4587.794950579593, + 4465.551576909836, 4356.162606222348, 4270.204921198831, + 4212.851012812523, 4181.692632571022, 4169.304321771525, + 4165.280035562211, 4159.967383029156, 4149.191899453653, + 4135.034636672246, 4125.339353660674, 4131.047920042139, + 4161.253584582418, 4220.146000916907, 4303.7691953094445, + 4400.902719374689, 4498.428947247654, 4585.5644555875815, + 4661.942268389449, 4742.576206411572, 4859.0462672383865, + 5057.495141282015, 5389.56308735409, 5902.5846679128135, + 6633.005393341507, 7585.058498154173, 8743.887161622411 + ], + "flow:branch124_seg0:J103": [ + 1.1607808068633108, 1.5074611805714488, 1.8922859331633584, + 2.29653836246669, 2.6993723307662054, 3.081789922599727, + 3.4289511687521936, 3.7317316018075632, 3.9859192103594205, + 4.192876568016091, 4.356258985099948, 4.480363292539176, + 4.569540414682171, 4.625850965333173, 4.650294452346778, + 4.643143104076494, 4.604309850200917, 4.53562530899943, 4.4399215076549, + 4.321634143632639, 4.18637282270154, 4.039277399460758, 3.884932855522858, + 3.7265366940331135, 3.565942678674606, 3.4043427698947886, + 3.2428140137691495, 3.0830494118964245, 2.9275665135788467, + 2.779419508577559, 2.641243344032462, 2.514330617793286, + 2.397485099257647, 2.2865001706398393, 2.1746250946173484, + 2.0534925571362512, 1.914979818609595, 1.7530031598175126, + 1.5656923871834625, 1.3555733850856853, 1.130142577331553, + 0.9004386054776377, 0.6790340739746006, 0.47787716104682054, + 0.30642474306653944, 0.170218732727213, 0.07018148272006455, + 0.004201804197206004, -0.032755493281292354, -0.04639125040270867, + -0.04171344696774352, -0.0228523482650141, 0.007798085302546067, + 0.04853491382841379, 0.09764793353997869, 0.1529111959351549, + 0.210775237428719, 0.2667835139556555, 0.3161359874647712, + 0.35469362850340397, 0.3797127610445708, 0.3907951922463963, + 0.3896221743121792, 0.3793605471057744, 0.3640227980616223, + 0.34697312976460265, 0.3302599141458963, 0.31422552870851866, + 0.29766203842124883, 0.2785861452866687, 0.25519514980707925, + 0.22674466107575303, 0.19412140306379277, 0.15963017967176246, + 0.12653173150976427, 0.09803189973358753, 0.07637515675602495, + 0.06212326891198549, 0.054257106418769914, 0.05047562357958705, + 0.048169649242535445, 0.04547666676349606, 0.04192604524562161, + 0.03867545337304531, 0.03810882821916361, 0.04283935512379146, + 0.05473730973243679, 0.07390174574638109, 0.09853592832729689, + 0.12554453631946802, 0.1516962651090031, 0.1754892150187718, + 0.19874239056371495, 0.2275345823872599, 0.2722688712984964, + 0.3460950403520586, 0.46291934730375883, 0.6345770156114195, + 0.8671032018598068, 1.1607808068633108 + ], + "pressure:branch124_seg0:J103": [ + 8718.195846025183, 10019.909420300542, 11411.775968153119, + 12824.45746150366, 14187.37686366667, 15440.315896481077, + 16542.526489429514, 17479.087812660135, 18244.78703849718, + 18851.622709861625, 19321.77765594032, 19665.01476627284, + 19895.304495047643, 20017.40734515533, 20028.44132179258, + 19932.999171208958, 19729.081863369673, 19425.70938681808, + 19040.45737608587, 18587.272110676335, 18088.343190935753, + 17560.839546407944, 17016.461817279775, 16464.35722179083, + 15907.896362866426, 15350.070492907016, 14795.589311541527, + 14251.879064961166, 13729.306125667199, 13239.042662052925, + 12788.23985704812, 12376.40856760735, 11993.957601116674, + 11618.952607128096, 11223.133016032669, 10775.837213463406, + 10252.659958027329, 9637.809361355517, 8936.027218988685, + 8168.124156054972, 7367.65145722313, 6580.50586659898, 5851.023636948528, + 5216.699054912954, 4700.421832749377, 4314.93751027713, 4051.94290141464, + 3896.4166621748573, 3830.0533105367554, 3829.7004054888853, + 3882.1998637164766, 3976.6554091654148, 4106.304857222261, 4267.999995404, + 4453.945500185193, 4654.536161689896, 4855.318419129003, + 5038.728763593975, 5188.405750478784, 5293.163797015025, 5347.41427157991, + 5354.277599367186, 5325.893744817432, 5274.26687310809, 5213.646996328066, + 5154.1110571297, 5098.459468313162, 5043.983212307908, 4983.838814107045, + 4910.239009284188, 4818.790592307307, 4709.637749171296, + 4589.784359470614, 4470.258998015394, 4363.135899957092, + 4278.300442427476, 4220.66190798783, 4188.042068064322, 4173.132345244276, + 4166.682841152722, 4159.681974302054, 4148.292985796948, 4134.75975320744, + 4126.440333553006, 4133.507870779397, 4164.237233330243, + 4222.190045770447, 4303.757634412382, 4397.736819073576, + 4492.248866575864, 4577.776308008016, 4654.652259098017, + 4738.091996745406, 4859.078442470293, 5062.204704006571, + 5398.179776680658, 5909.966270229526, 6634.448999569641, + 7576.7755791942445, 8718.195846025183 + ], + "flow:J103:branch124_seg1": [ + 1.1607808068633108, 1.5074611805714488, 1.8922859331633584, + 2.29653836246669, 2.6993723307662054, 3.081789922599727, + 3.4289511687521936, 3.7317316018075632, 3.9859192103594205, + 4.192876568016091, 4.356258985099948, 4.480363292539176, + 4.569540414682171, 4.625850965333173, 4.650294452346778, + 4.643143104076494, 4.604309850200917, 4.53562530899943, 4.4399215076549, + 4.321634143632639, 4.18637282270154, 4.039277399460758, 3.884932855522858, + 3.7265366940331135, 3.565942678674606, 3.4043427698947886, + 3.2428140137691495, 3.0830494118964245, 2.9275665135788467, + 2.779419508577559, 2.641243344032462, 2.514330617793286, + 2.397485099257647, 2.2865001706398393, 2.1746250946173484, + 2.0534925571362512, 1.914979818609595, 1.7530031598175126, + 1.5656923871834625, 1.3555733850856853, 1.130142577331553, + 0.9004386054776377, 0.6790340739746006, 0.47787716104682054, + 0.30642474306653944, 0.170218732727213, 0.07018148272006455, + 0.004201804197206004, -0.032755493281292354, -0.04639125040270867, + -0.04171344696774352, -0.0228523482650141, 0.007798085302546067, + 0.04853491382841379, 0.09764793353997869, 0.1529111959351549, + 0.210775237428719, 0.2667835139556555, 0.3161359874647712, + 0.35469362850340397, 0.3797127610445708, 0.3907951922463963, + 0.3896221743121792, 0.3793605471057744, 0.3640227980616223, + 0.34697312976460265, 0.3302599141458963, 0.31422552870851866, + 0.29766203842124883, 0.2785861452866687, 0.25519514980707925, + 0.22674466107575303, 0.19412140306379277, 0.15963017967176246, + 0.12653173150976427, 0.09803189973358753, 0.07637515675602495, + 0.06212326891198549, 0.054257106418769914, 0.05047562357958705, + 0.048169649242535445, 0.04547666676349606, 0.04192604524562161, + 0.03867545337304531, 0.03810882821916361, 0.04283935512379146, + 0.05473730973243679, 0.07390174574638109, 0.09853592832729689, + 0.12554453631946802, 0.1516962651090031, 0.1754892150187718, + 0.19874239056371495, 0.2275345823872599, 0.2722688712984964, + 0.3460950403520586, 0.46291934730375883, 0.6345770156114195, + 0.8671032018598068, 1.1607808068633108 + ], + "pressure:J103:branch124_seg1": [ + 8718.195846025183, 10019.909420300542, 11411.775968153119, + 12824.45746150366, 14187.37686366667, 15440.315896481077, + 16542.526489429514, 17479.087812660135, 18244.78703849718, + 18851.622709861625, 19321.77765594032, 19665.01476627284, + 19895.304495047643, 20017.40734515533, 20028.44132179258, + 19932.999171208958, 19729.081863369673, 19425.70938681808, + 19040.45737608587, 18587.272110676335, 18088.343190935753, + 17560.839546407944, 17016.461817279775, 16464.35722179083, + 15907.896362866426, 15350.070492907016, 14795.589311541527, + 14251.879064961166, 13729.306125667199, 13239.042662052925, + 12788.23985704812, 12376.40856760735, 11993.957601116674, + 11618.952607128096, 11223.133016032669, 10775.837213463406, + 10252.659958027329, 9637.809361355517, 8936.027218988685, + 8168.124156054972, 7367.65145722313, 6580.50586659898, 5851.023636948528, + 5216.699054912954, 4700.421832749377, 4314.93751027713, 4051.94290141464, + 3896.4166621748573, 3830.0533105367554, 3829.7004054888853, + 3882.1998637164766, 3976.6554091654148, 4106.304857222261, 4267.999995404, + 4453.945500185193, 4654.536161689896, 4855.318419129003, + 5038.728763593975, 5188.405750478784, 5293.163797015025, 5347.41427157991, + 5354.277599367186, 5325.893744817432, 5274.26687310809, 5213.646996328066, + 5154.1110571297, 5098.459468313162, 5043.983212307908, 4983.838814107045, + 4910.239009284188, 4818.790592307307, 4709.637749171296, + 4589.784359470614, 4470.258998015394, 4363.135899957092, + 4278.300442427476, 4220.66190798783, 4188.042068064322, 4173.132345244276, + 4166.682841152722, 4159.681974302054, 4148.292985796948, 4134.75975320744, + 4126.440333553006, 4133.507870779397, 4164.237233330243, + 4222.190045770447, 4303.757634412382, 4397.736819073576, + 4492.248866575864, 4577.776308008016, 4654.652259098017, + 4738.091996745406, 4859.078442470293, 5062.204704006571, + 5398.179776680658, 5909.966270229526, 6634.448999569641, + 7576.7755791942445, 8718.195846025183 + ], + "flow:branch124_seg1:J104": [ + 1.1595590292249307, 1.5061161455129193, 1.890877302207077, + 2.2951517479207983, 2.698069431637343, 3.080615198228992, + 3.4279341917786903, 3.7308933521131737, 3.9852381753349055, + 4.192343840720198, 4.3558595620632055, 4.480076681108915, + 4.569367207369137, 4.625784437624814, 4.650336070642849, 4.64329269251245, + 4.604561573440339, 4.5359734639960285, 4.440342103086278, + 4.322108400451172, 4.186886777738794, 4.03981104519594, + 3.8854779185654333, 3.7270877017796025, 3.566495633692984, + 3.4048958552597712, 3.243360547509676, 3.08358007656338, + 2.928070152320044, 2.779887686364426, 2.6416695643184047, + 2.514721846226825, 2.3978578544418716, 2.28687697186918, + 2.175037751028792, 2.0539708995210213, 1.9155428113012374, + 1.7536567754979446, 1.5664279816883764, 1.3563588304210548, + 1.1309372766963692, 0.901199736481549, 0.679716840785723, + 0.47844594594145246, 0.3068725489721301, 0.17053994390037971, + 0.07038008746512962, 0.004308604953987546, -0.032726712398358844, + -0.04642154456347124, -0.04178567681084939, -0.02296700441675409, + 0.0076521974139756015, 0.04836260183655988, 0.09745286962605795, + 0.1527096178519254, 0.21058217656292869, 0.2666153044329464, + 0.31600776739687336, 0.35461537473579857, 0.37968297010409735, + 0.3908076610805598, 0.38966501836474565, 0.37941767590682185, + 0.3640836651078064, 0.3470307309045414, 0.33031340820126576, + 0.31428087706776664, 0.2977272386849642, 0.2786684316496486, + 0.2552953363651261, 0.2268594640229073, 0.1942429341632441, + 0.15974468164523553, 0.12662769298101045, 0.09810241919535713, + 0.07641972312307022, 0.06214411509463802, 0.054265910648491976, + 0.05048189618431262, 0.04817838193756814, 0.0454897929227545, + 0.04193854416916422, 0.03867790466463358, 0.03809140582200466, + 0.042795079502767064, 0.054667142304950844, 0.07381265897888069, + 0.09843982583536344, 0.1254544313368826, 0.1516171974768613, + 0.1754136345395538, 0.19864727530298446, 0.22738186929564505, + 0.27201071218652534, 0.3456745271868306, 0.4623091340831008, + 0.6337546126739222, 0.8660501626529169, 1.1595590292249307 + ], + "pressure:branch124_seg1:J104": [ + 8530.974696451827, 9800.34461849352, 11167.650216328471, + 12565.196880755166, 13922.635365662853, 15179.035512902446, + 16291.846737755921, 17243.078515843215, 18025.272870206216, + 18649.066241590488, 19134.61747907852, 19492.429041475276, + 19736.74164759558, 19872.714963038205, 19898.69652719574, + 19818.650624829865, 19630.826861330457, 19343.53545959165, + 18972.75699620892, 18532.50283977781, 18044.253877430696, + 17525.161767193993, 16987.66567794889, 16441.24995732603, + 15889.863570925883, 15336.691819974423, 14786.190690055508, + 14245.399227189257, 13724.24984660911, 13233.729011795282, + 12781.304841927453, 12367.557092401661, 11984.102178334622, + 11610.669846115856, 11220.272241165605, 10782.838333811169, + 10273.428846235844, 9675.232562574278, 8990.681509163082, + 8237.938397612386, 7448.640786037007, 6666.810436677345, + 5936.178026117681, 5294.752996107714, 4767.242771932239, + 4367.5938889821555, 4089.9261022210007, 3920.9492377237125, + 3842.6551178235063, 3832.767535569594, 3877.407457520198, + 3965.038609600064, 4088.7253941894805, 4244.748383121232, + 4425.754595828674, 4622.6804853515605, 4821.61211173423, + 5005.568041223168, 5158.272648661911, 5268.021254164129, + 5328.409164840711, 5341.615554269463, 5318.461732234377, + 5270.5499116888595, 5211.970617131563, 5153.06071649633, + 5097.457688131146, 5043.280926768837, 4984.288518407421, + 4912.933490507166, 4824.470163948735, 4718.482286643621, 4601.10091503179, + 4482.635951988114, 4374.907192787703, 4287.974996062026, + 4227.307413819668, 4191.5632944515755, 4174.30656467524, + 4166.596790980527, 4159.478043731687, 4148.6175635005175, + 4135.443411360909, 4126.56450432832, 4131.684343668486, 4159.16268607979, + 4213.153704153765, 4290.90070170657, 4382.271308277535, 4475.761305926183, + 4561.560514628226, 4638.837374584013, 4720.825550712101, + 4836.196199552959, 5027.382498651097, 5343.615202370245, + 5828.602199843275, 6519.700414339704, 7425.268573206841, 8530.974696451827 + ], + "flow:J104:branch124_seg2": [ + 1.1595590292249307, 1.5061161455129193, 1.890877302207077, + 2.2951517479207983, 2.698069431637343, 3.080615198228992, + 3.4279341917786903, 3.7308933521131737, 3.9852381753349055, + 4.192343840720198, 4.3558595620632055, 4.480076681108915, + 4.569367207369137, 4.625784437624814, 4.650336070642849, 4.64329269251245, + 4.604561573440339, 4.5359734639960285, 4.440342103086278, + 4.322108400451172, 4.186886777738794, 4.03981104519594, + 3.8854779185654333, 3.7270877017796025, 3.566495633692984, + 3.4048958552597712, 3.243360547509676, 3.08358007656338, + 2.928070152320044, 2.779887686364426, 2.6416695643184047, + 2.514721846226825, 2.3978578544418716, 2.28687697186918, + 2.175037751028792, 2.0539708995210213, 1.9155428113012374, + 1.7536567754979446, 1.5664279816883764, 1.3563588304210548, + 1.1309372766963692, 0.901199736481549, 0.679716840785723, + 0.47844594594145246, 0.3068725489721301, 0.17053994390037971, + 0.07038008746512962, 0.004308604953987546, -0.032726712398358844, + -0.04642154456347124, -0.04178567681084939, -0.02296700441675409, + 0.0076521974139756015, 0.04836260183655988, 0.09745286962605795, + 0.1527096178519254, 0.21058217656292869, 0.2666153044329464, + 0.31600776739687336, 0.35461537473579857, 0.37968297010409735, + 0.3908076610805598, 0.38966501836474565, 0.37941767590682185, + 0.3640836651078064, 0.3470307309045414, 0.33031340820126576, + 0.31428087706776664, 0.2977272386849642, 0.2786684316496486, + 0.2552953363651261, 0.2268594640229073, 0.1942429341632441, + 0.15974468164523553, 0.12662769298101045, 0.09810241919535713, + 0.07641972312307022, 0.06214411509463802, 0.054265910648491976, + 0.05048189618431262, 0.04817838193756814, 0.0454897929227545, + 0.04193854416916422, 0.03867790466463358, 0.03809140582200466, + 0.042795079502767064, 0.054667142304950844, 0.07381265897888069, + 0.09843982583536344, 0.1254544313368826, 0.1516171974768613, + 0.1754136345395538, 0.19864727530298446, 0.22738186929564505, + 0.27201071218652534, 0.3456745271868306, 0.4623091340831008, + 0.6337546126739222, 0.8660501626529169, 1.1595590292249307 + ], + "pressure:J104:branch124_seg2": [ + 8530.974696451827, 9800.34461849352, 11167.650216328471, + 12565.196880755166, 13922.635365662853, 15179.035512902446, + 16291.846737755921, 17243.078515843215, 18025.272870206216, + 18649.066241590488, 19134.61747907852, 19492.429041475276, + 19736.74164759558, 19872.714963038205, 19898.69652719574, + 19818.650624829865, 19630.826861330457, 19343.53545959165, + 18972.75699620892, 18532.50283977781, 18044.253877430696, + 17525.161767193993, 16987.66567794889, 16441.24995732603, + 15889.863570925883, 15336.691819974423, 14786.190690055508, + 14245.399227189257, 13724.24984660911, 13233.729011795282, + 12781.304841927453, 12367.557092401661, 11984.102178334622, + 11610.669846115856, 11220.272241165605, 10782.838333811169, + 10273.428846235844, 9675.232562574278, 8990.681509163082, + 8237.938397612386, 7448.640786037007, 6666.810436677345, + 5936.178026117681, 5294.752996107714, 4767.242771932239, + 4367.5938889821555, 4089.9261022210007, 3920.9492377237125, + 3842.6551178235063, 3832.767535569594, 3877.407457520198, + 3965.038609600064, 4088.7253941894805, 4244.748383121232, + 4425.754595828674, 4622.6804853515605, 4821.61211173423, + 5005.568041223168, 5158.272648661911, 5268.021254164129, + 5328.409164840711, 5341.615554269463, 5318.461732234377, + 5270.5499116888595, 5211.970617131563, 5153.06071649633, + 5097.457688131146, 5043.280926768837, 4984.288518407421, + 4912.933490507166, 4824.470163948735, 4718.482286643621, 4601.10091503179, + 4482.635951988114, 4374.907192787703, 4287.974996062026, + 4227.307413819668, 4191.5632944515755, 4174.30656467524, + 4166.596790980527, 4159.478043731687, 4148.6175635005175, + 4135.443411360909, 4126.56450432832, 4131.684343668486, 4159.16268607979, + 4213.153704153765, 4290.90070170657, 4382.271308277535, 4475.761305926183, + 4561.560514628226, 4638.837374584013, 4720.825550712101, + 4836.196199552959, 5027.382498651097, 5343.615202370245, + 5828.602199843275, 6519.700414339704, 7425.268573206841, 8530.974696451827 + ], + "flow:branch127_seg0:J105": [ + 0.8022968269736408, 1.0358404739788822, 1.29127933554874, + 1.5558063134497047, 1.81562421940092, 2.058782283906102, + 2.2765094185020263, 2.4640819360857895, 2.6197709886857785, + 2.745464276129427, 2.8441201737017554, 2.91856664689996, + 2.9715678927672773, 3.0040405737094438, 3.0162491737221093, + 3.0081934923103097, 2.979650601323653, 2.932018411473263, + 2.867358767235435, 2.788738676892484, 2.7000019502468193, + 2.604417126157248, 2.504800547956487, 2.40297966541819, + 2.2998838822639605, 2.19613282264053, 2.092392996390105, + 1.9898590490106955, 1.890317796567695, 1.7958678320212325, + 1.7081764538311208, 1.6278626705014916, 1.5537537242618071, + 1.4825992820073042, 1.4095836659345768, 1.3290146533642175, + 1.235692402318267, 1.1260449397400514, 0.9996290292696177, + 0.8589340326721934, 0.7096809340621426, 0.5597009098635026, + 0.4174124389017792, 0.2904178911503305, 0.18433455374997343, + 0.10203126626863648, 0.04320101889920177, 0.005844685673519733, + -0.013789681972545672, -0.019575872747900798, -0.014585399440927994, + -0.0012621957606086878, 0.01919041847810965, 0.04590641774871257, + 0.07782541480543408, 0.11345871353280487, 0.15031565298000055, + 0.1853367098642863, 0.2153463570874396, 0.23777244956559776, + 0.25107914872773646, 0.25539831277844743, 0.25222469058480673, + 0.2438600996347221, 0.2330416797018842, 0.2218438939765521, + 0.2113207730498081, 0.20135472424722278, 0.19085010486511025, + 0.17834176940031507, 0.1626685394211717, 0.1435190374164369, + 0.12176149031408343, 0.09916193428231733, 0.07801575186799357, + 0.06041038398396264, 0.04763954901293583, 0.03976440276028303, + 0.035820961031315796, 0.03408497954294071, 0.03278556617250368, + 0.03084129611210389, 0.028205271182640174, 0.025933348812224918, + 0.02581364528633676, 0.029607676127227155, 0.038409225937911295, + 0.05198570489591497, 0.06881170387561944, 0.08663815489823279, + 0.10332844392837395, 0.1181885932519352, 0.13297891729188205, + 0.15239782715551162, 0.1839620243341736, 0.23670949824868454, + 0.31975220593723985, 0.4404305998931964, 0.6015961838956664, + 0.8022968269736408 + ], + "pressure:branch127_seg0:J105": [ + 8706.777822123273, 9997.338502043318, 11372.892685234008, + 12763.829703703728, 14100.823441330724, 15325.678718646364, + 16400.0310360677, 17310.78321827873, 18054.525498834377, + 18645.064505149217, 19104.229745408105, 19441.529041519872, + 19670.441737953483, 19794.446714922884, 19809.933394222386, + 19720.87679523107, 19524.620504306484, 19230.332919263885, + 18855.800435014247, 18414.630320720902, 17928.911406030027, + 17415.569940166977, 16885.71773115899, 16347.951774475345, + 15805.184992552247, 15260.080657523318, 14717.307225861336, + 14184.372510390242, 13671.772556664935, 13190.749406619396, + 12748.375180027067, 12343.960003144106, 11967.470132484157, + 11596.769798334042, 11203.505879398876, 10757.216791856476, + 10234.191022119128, 9619.525832194373, 8919.192629008947, + 8154.927220757232, 7360.944380601315, 6583.253344241761, + 5865.587371683548, 5244.503664633237, 4741.259917331348, + 4367.309852594935, 4113.294091128239, 3963.06516114623, + 3898.2589930996664, 3896.1307947670266, 3944.0264779296344, + 4032.1056136285833, 4154.299183963658, 4307.931523484917, + 4485.830824171514, 4678.388084081641, 4871.09431406861, 5046.5262904924, + 5188.465365530764, 5286.025063917914, 5334.022935534966, + 5336.179096008024, 5304.875585385479, 5252.10961555047, 5192.107146594546, + 5134.44382482774, 5081.323286261051, 5029.482282509935, 4971.651116591109, + 4899.857002405811, 4809.817794757766, 4701.93256027742, 4583.492511463729, + 4465.8479857492775, 4361.116726008238, 4279.010952807095, + 4224.075777656341, 4193.761257010441, 4180.384510162581, + 4174.453709478738, 4167.136533782632, 4154.843653313104, + 4140.205927539123, 4130.974625889132, 4137.536219953871, + 4168.139980048868, 4226.114782570503, 4307.415077597727, + 4400.497026594438, 4493.375542134134, 4576.572999459648, + 4650.873205589974, 4732.096210421512, 4851.804373328045, + 5054.897636665651, 5392.031525053217, 5905.247851986323, + 6630.142647059657, 7571.051232653055, 8706.777822123273 + ], + "flow:J105:branch127_seg1": [ + 0.8022968269736408, 1.0358404739788822, 1.29127933554874, + 1.5558063134497047, 1.81562421940092, 2.058782283906102, + 2.2765094185020263, 2.4640819360857895, 2.6197709886857785, + 2.745464276129427, 2.8441201737017554, 2.91856664689996, + 2.9715678927672773, 3.0040405737094438, 3.0162491737221093, + 3.0081934923103097, 2.979650601323653, 2.932018411473263, + 2.867358767235435, 2.788738676892484, 2.7000019502468193, + 2.604417126157248, 2.504800547956487, 2.40297966541819, + 2.2998838822639605, 2.19613282264053, 2.092392996390105, + 1.9898590490106955, 1.890317796567695, 1.7958678320212325, + 1.7081764538311208, 1.6278626705014916, 1.5537537242618071, + 1.4825992820073042, 1.4095836659345768, 1.3290146533642175, + 1.235692402318267, 1.1260449397400514, 0.9996290292696177, + 0.8589340326721934, 0.7096809340621426, 0.5597009098635026, + 0.4174124389017792, 0.2904178911503305, 0.18433455374997343, + 0.10203126626863648, 0.04320101889920177, 0.005844685673519733, + -0.013789681972545672, -0.019575872747900798, -0.014585399440927994, + -0.0012621957606086878, 0.01919041847810965, 0.04590641774871257, + 0.07782541480543408, 0.11345871353280487, 0.15031565298000055, + 0.1853367098642863, 0.2153463570874396, 0.23777244956559776, + 0.25107914872773646, 0.25539831277844743, 0.25222469058480673, + 0.2438600996347221, 0.2330416797018842, 0.2218438939765521, + 0.2113207730498081, 0.20135472424722278, 0.19085010486511025, + 0.17834176940031507, 0.1626685394211717, 0.1435190374164369, + 0.12176149031408343, 0.09916193428231733, 0.07801575186799357, + 0.06041038398396264, 0.04763954901293583, 0.03976440276028303, + 0.035820961031315796, 0.03408497954294071, 0.03278556617250368, + 0.03084129611210389, 0.028205271182640174, 0.025933348812224918, + 0.02581364528633676, 0.029607676127227155, 0.038409225937911295, + 0.05198570489591497, 0.06881170387561944, 0.08663815489823279, + 0.10332844392837395, 0.1181885932519352, 0.13297891729188205, + 0.15239782715551162, 0.1839620243341736, 0.23670949824868454, + 0.31975220593723985, 0.4404305998931964, 0.6015961838956664, + 0.8022968269736408 + ], + "pressure:J105:branch127_seg1": [ + 8706.777822123273, 9997.338502043318, 11372.892685234008, + 12763.829703703728, 14100.823441330724, 15325.678718646364, + 16400.0310360677, 17310.78321827873, 18054.525498834377, + 18645.064505149217, 19104.229745408105, 19441.529041519872, + 19670.441737953483, 19794.446714922884, 19809.933394222386, + 19720.87679523107, 19524.620504306484, 19230.332919263885, + 18855.800435014247, 18414.630320720902, 17928.911406030027, + 17415.569940166977, 16885.71773115899, 16347.951774475345, + 15805.184992552247, 15260.080657523318, 14717.307225861336, + 14184.372510390242, 13671.772556664935, 13190.749406619396, + 12748.375180027067, 12343.960003144106, 11967.470132484157, + 11596.769798334042, 11203.505879398876, 10757.216791856476, + 10234.191022119128, 9619.525832194373, 8919.192629008947, + 8154.927220757232, 7360.944380601315, 6583.253344241761, + 5865.587371683548, 5244.503664633237, 4741.259917331348, + 4367.309852594935, 4113.294091128239, 3963.06516114623, + 3898.2589930996664, 3896.1307947670266, 3944.0264779296344, + 4032.1056136285833, 4154.299183963658, 4307.931523484917, + 4485.830824171514, 4678.388084081641, 4871.09431406861, 5046.5262904924, + 5188.465365530764, 5286.025063917914, 5334.022935534966, + 5336.179096008024, 5304.875585385479, 5252.10961555047, 5192.107146594546, + 5134.44382482774, 5081.323286261051, 5029.482282509935, 4971.651116591109, + 4899.857002405811, 4809.817794757766, 4701.93256027742, 4583.492511463729, + 4465.8479857492775, 4361.116726008238, 4279.010952807095, + 4224.075777656341, 4193.761257010441, 4180.384510162581, + 4174.453709478738, 4167.136533782632, 4154.843653313104, + 4140.205927539123, 4130.974625889132, 4137.536219953871, + 4168.139980048868, 4226.114782570503, 4307.415077597727, + 4400.497026594438, 4493.375542134134, 4576.572999459648, + 4650.873205589974, 4732.096210421512, 4851.804373328045, + 5054.897636665651, 5392.031525053217, 5905.247851986323, + 6630.142647059657, 7571.051232653055, 8706.777822123273 + ], + "flow:branch127_seg1:J106": [ + 0.7995257211138764, 1.032799365310923, 1.2881050525262066, + 1.5526969357584137, 1.8127144859888298, 2.0561688618625675, + 2.274251584202553, 2.4622302162269873, 2.6182668024819256, + 2.744280440605288, 2.8432321145502377, 2.9179249787351043, + 2.971174352305829, 3.0038852849495163, 3.0163336165115124, + 3.008520472251711, 2.980211903482543, 2.9327917984601735, + 2.8682917633747187, 2.789793873668596, 2.701143588823838, + 2.6056015938519916, 2.5060112140010284, 2.404204375203455, + 2.30111537810427, 2.1973671742427348, 2.093614303558458, + 1.9910461858184811, 1.8914447893215447, 1.7969156472403895, + 1.7091305319570596, 1.6287396780668832, 1.55459306526609, + 1.4834516192632639, 1.410522691369854, 1.3301066786555475, + 1.236980197957161, 1.1275393171668362, 1.001305061446533, + 0.8607183091368833, 0.7114784338121614, 0.561414073894672, + 0.41894116402074627, 0.2916844215617623, 0.18532880783261946, + 0.10273761872026374, 0.04363590341452798, 0.006080524109219316, + -0.013724919645835791, -0.01963764062148139, -0.01473812572074066, + -0.0015097877184653183, 0.018874998963443152, 0.045531221125844956, + 0.07739689438270256, 0.11301613867224025, 0.14989294650161417, + 0.18497070223245646, 0.21507092326341215, 0.23761019176640935, + 0.25102548394852253, 0.2554355122484307, 0.252327762999091, + 0.24399230135650457, 0.23317761034531848, 0.22197004392448647, + 0.21143690392266332, 0.2014755846898527, 0.19099472334934658, + 0.17852675788806224, 0.16289466842288716, 0.14377898190325253, + 0.12203577304574642, 0.09941837013817678, 0.07822877085911113, + 0.06056482406804574, 0.04773525628819964, 0.039807039514267555, + 0.035838789495987476, 0.03409944497089981, 0.032806936193551024, + 0.03087380521562453, 0.02823621700965761, 0.02594037952450539, + 0.025774130272797815, 0.029505853304558766, 0.038247974241435986, + 0.05178320882329164, 0.0685948964015747, 0.08643659715334605, + 0.10315382754079544, 0.11802161936721488, 0.1327651754751646, + 0.1520487856446296, 0.18336756351226288, 0.23574078359331996, + 0.31835374373217445, 0.4385464720453209, 0.5991908295398003, + 0.7995257211138764 + ], + "pressure:branch127_seg1:J106": [ + 8113.7815063753615, 9304.919045916902, 10604.353087039259, + 11947.107829972816, 13263.23429946056, 14492.439937371259, + 15590.93142650743, 16536.045575824723, 17319.15328330763, + 17950.43208940879, 18445.626136687126, 18818.360844027404, + 19082.78485453204, 19243.343882135243, 19300.86383455813, + 19255.804719482614, 19106.81331725259, 18861.12252086134, + 18529.84495885296, 18128.32301104993, 17676.2809297302, + 17190.237150035748, 16684.185976447694, 16167.306006556033, + 15644.111132772727, 15117.693009646993, 14591.510536556787, + 14071.741279133617, 13567.555522523402, 13089.659740468798, + 12646.34354715148, 12240.446109737442, 11865.682586012457, + 11505.03667065508, 11133.831966626845, 10723.085405976983, + 10246.710656729367, 9686.869409123423, 9042.088261693627, + 8325.75618804745, 7567.27454460549, 6806.926517230482, 6087.366530601724, + 5446.898163851543, 4913.407870917173, 4501.021674700314, 4207.45294969027, + 4022.1753520789125, 3926.0954687038457, 3899.357923422376, + 3926.7287167089125, 3995.962246648478, 4101.124537330711, + 4237.944503986595, 4400.850821505546, 4582.237686800611, + 4769.277252139063, 4946.302156737728, 5097.235519301917, + 5209.270684206034, 5274.814610619137, 5294.820253149702, 5277.35602970198, + 5234.036997961601, 5178.7899379108485, 5122.0479140201305, + 5068.8422931969235, 5018.3450984115925, 4964.843575031949, + 4900.859256255969, 4820.632204874053, 4722.775941514673, + 4611.950606630759, 4497.2957872622865, 4390.498283777275, + 4302.05794900669, 4238.354442720403, 4199.398412453981, 4180.105038495121, + 4171.6421746006745, 4165.0238753772, 4154.97174277648, 4141.496336260622, + 4130.162212556961, 4130.1560836461595, 4150.335393871033, + 4196.063213182107, 4265.908997118678, 4351.76950264627, 4442.223806061637, + 4526.543683493888, 4601.566791167243, 4676.811228553876, + 4776.745794845139, 4940.033031636341, 5212.815094061396, + 5641.011193676428, 6261.529167968133, 7087.718103786139, + 8113.7815063753615 + ], + "flow:J106:branch127_seg2": [ + 0.7995257211138764, 1.032799365310923, 1.2881050525262066, + 1.5526969357584137, 1.8127144859888298, 2.0561688618625675, + 2.274251584202553, 2.4622302162269873, 2.6182668024819256, + 2.744280440605288, 2.8432321145502377, 2.9179249787351043, + 2.971174352305829, 3.0038852849495163, 3.0163336165115124, + 3.008520472251711, 2.980211903482543, 2.9327917984601735, + 2.8682917633747187, 2.789793873668596, 2.701143588823838, + 2.6056015938519916, 2.5060112140010284, 2.404204375203455, + 2.30111537810427, 2.1973671742427348, 2.093614303558458, + 1.9910461858184811, 1.8914447893215447, 1.7969156472403895, + 1.7091305319570596, 1.6287396780668832, 1.55459306526609, + 1.4834516192632639, 1.410522691369854, 1.3301066786555475, + 1.236980197957161, 1.1275393171668362, 1.001305061446533, + 0.8607183091368833, 0.7114784338121614, 0.561414073894672, + 0.41894116402074627, 0.2916844215617623, 0.18532880783261946, + 0.10273761872026374, 0.04363590341452798, 0.006080524109219316, + -0.013724919645835791, -0.01963764062148139, -0.01473812572074066, + -0.0015097877184653183, 0.018874998963443152, 0.045531221125844956, + 0.07739689438270256, 0.11301613867224025, 0.14989294650161417, + 0.18497070223245646, 0.21507092326341215, 0.23761019176640935, + 0.25102548394852253, 0.2554355122484307, 0.252327762999091, + 0.24399230135650457, 0.23317761034531848, 0.22197004392448647, + 0.21143690392266332, 0.2014755846898527, 0.19099472334934658, + 0.17852675788806224, 0.16289466842288716, 0.14377898190325253, + 0.12203577304574642, 0.09941837013817678, 0.07822877085911113, + 0.06056482406804574, 0.04773525628819964, 0.039807039514267555, + 0.035838789495987476, 0.03409944497089981, 0.032806936193551024, + 0.03087380521562453, 0.02823621700965761, 0.02594037952450539, + 0.025774130272797815, 0.029505853304558766, 0.038247974241435986, + 0.05178320882329164, 0.0685948964015747, 0.08643659715334605, + 0.10315382754079544, 0.11802161936721488, 0.1327651754751646, + 0.1520487856446296, 0.18336756351226288, 0.23574078359331996, + 0.31835374373217445, 0.4385464720453209, 0.5991908295398003, + 0.7995257211138764 + ], + "pressure:J106:branch127_seg2": [ + 8113.7815063753615, 9304.919045916902, 10604.353087039259, + 11947.107829972816, 13263.23429946056, 14492.439937371259, + 15590.93142650743, 16536.045575824723, 17319.15328330763, + 17950.43208940879, 18445.626136687126, 18818.360844027404, + 19082.78485453204, 19243.343882135243, 19300.86383455813, + 19255.804719482614, 19106.81331725259, 18861.12252086134, + 18529.84495885296, 18128.32301104993, 17676.2809297302, + 17190.237150035748, 16684.185976447694, 16167.306006556033, + 15644.111132772727, 15117.693009646993, 14591.510536556787, + 14071.741279133617, 13567.555522523402, 13089.659740468798, + 12646.34354715148, 12240.446109737442, 11865.682586012457, + 11505.03667065508, 11133.831966626845, 10723.085405976983, + 10246.710656729367, 9686.869409123423, 9042.088261693627, + 8325.75618804745, 7567.27454460549, 6806.926517230482, 6087.366530601724, + 5446.898163851543, 4913.407870917173, 4501.021674700314, 4207.45294969027, + 4022.1753520789125, 3926.0954687038457, 3899.357923422376, + 3926.7287167089125, 3995.962246648478, 4101.124537330711, + 4237.944503986595, 4400.850821505546, 4582.237686800611, + 4769.277252139063, 4946.302156737728, 5097.235519301917, + 5209.270684206034, 5274.814610619137, 5294.820253149702, 5277.35602970198, + 5234.036997961601, 5178.7899379108485, 5122.0479140201305, + 5068.8422931969235, 5018.3450984115925, 4964.843575031949, + 4900.859256255969, 4820.632204874053, 4722.775941514673, + 4611.950606630759, 4497.2957872622865, 4390.498283777275, + 4302.05794900669, 4238.354442720403, 4199.398412453981, 4180.105038495121, + 4171.6421746006745, 4165.0238753772, 4154.97174277648, 4141.496336260622, + 4130.162212556961, 4130.1560836461595, 4150.335393871033, + 4196.063213182107, 4265.908997118678, 4351.76950264627, 4442.223806061637, + 4526.543683493888, 4601.566791167243, 4676.811228553876, + 4776.745794845139, 4940.033031636341, 5212.815094061396, + 5641.011193676428, 6261.529167968133, 7087.718103786139, + 8113.7815063753615 + ], + "flow:branch132_seg0:J107": [ + 1.0111428346533875, 1.288225602277476, 1.581962607211436, + 1.8773576896305975, 2.1588760141509913, 2.414360100316108, + 2.636093084264852, 2.82160591555459, 2.970783994719028, + 3.0875298724791187, 3.1763509529508527, 3.239911447777488, + 3.2812998069287644, 3.300769200996651, 3.2979495832432, 3.273143419211826, + 3.225921236985074, 3.158764267870309, 3.0747354361850303, + 2.9774684203074937, 2.871805260200673, 2.761022368115886, + 2.6477554286538467, 2.5335341812638252, 2.418795368227616, + 2.304039034801121, 2.190077848770598, 2.0785146360737463, + 1.971640625786308, 1.8718909030409874, 1.7807508104409417, + 1.6980916422731334, 1.6215313292499571, 1.5461040974368476, + 1.465546410632878, 1.373123312796819, 1.2635372372784464, + 1.1338544156644799, 0.98561041065203, 0.8235270296406061, + 0.6556815157965515, 0.4921135164369111, 0.3423823901015785, + 0.21425827881287293, 0.11253469155056162, 0.03889987229384058, + -0.009162327973602738, -0.03493508264996998, -0.04333184093928273, + -0.03901674767065829, -0.02472329202220499, -0.0027931825308003637, + 0.0259801709010145, 0.06097373648328767, 0.10070224439032259, + 0.1432334623556171, 0.18529488578487813, 0.2231334261791842, + 0.253265361700981, 0.2733354869557236, 0.2823637676579602, + 0.28146556311829124, 0.273297771784857, 0.2607826817106991, + 0.24716275714227393, 0.23437950513850297, 0.22290634532607892, + 0.21192262765505124, 0.1996819994580677, 0.18438425457000132, + 0.1650102137778857, 0.14173536196822686, 0.11626928375890101, + 0.09109184224699816, 0.06897389295192403, 0.05204326793351526, + 0.04121052733302086, 0.03575835340101815, 0.0339668814414227, + 0.03357979100385758, 0.032606221712785446, 0.030318999881972637, + 0.02733408833935812, 0.02545800822174158, 0.02706061908034351, + 0.03400242395066494, 0.04700570952440483, 0.06502502565420176, + 0.08552761858951986, 0.10569586084392725, 0.12335214246347326, + 0.13869548046489305, 0.15526770322223404, 0.18008424852728688, + 0.2231339775674279, 0.29527164468375766, 0.4061948757482672, + 0.5631186112552613, 0.7660134615377073, 1.0111428346533875 + ], + "pressure:branch132_seg0:J107": [ + 9451.504551894428, 10877.154451331844, 12361.114779611069, + 13827.725068741454, 15205.597644278121, 16438.02746523707, + 17491.92984334833, 18364.071641068324, 19059.524365187717, + 19595.09519224849, 20000.568921279497, 20283.395992875, + 20456.038468196843, 20521.574397594883, 20472.5195302188, + 20315.32541391345, 20047.402556187382, 19681.062444663163, + 19239.177553646845, 18736.080653047575, 18196.71950043265, + 17637.866046134543, 17068.565615741485, 16496.319537046704, + 15922.169857908451, 15348.397862458103, 14780.639593276697, + 14227.86794927261, 13702.196823152099, 13215.405293010166, + 12773.397690896685, 12371.349910672743, 11994.798251332555, + 11615.261791694686, 11199.515132075381, 10714.63676460257, + 10138.320303190627, 9459.320199428535, 8691.466445861097, + 7866.013088545852, 7024.409329768101, 6219.636441647671, + 5498.358384986785, 4895.660270194428, 4427.447313085248, + 4101.195586752313, 3898.569250871254, 3798.329678053817, + 3780.2904430164353, 3818.413633997004, 3902.428970289817, + 4023.8540765498165, 4176.9088856172775, 4360.673125732866, + 4565.645325145486, 4780.024137823896, 4987.253165492666, + 5167.522488808615, 5304.2734623831575, 5388.263597185954, + 5417.503516960474, 5398.831800883984, 5349.371558216685, + 5282.984924543337, 5214.493390782808, 5152.7159459062805, + 5097.156530709786, 5041.770280972324, 4977.27679872691, 4894.993904855605, + 4791.908052649091, 4670.466177522993, 4541.231093073425, + 4417.994126632352, 4313.850953800427, 4237.936614166206, + 4192.8343400714675, 4172.995275884121, 4167.630308344911, + 4166.281252023018, 4159.759154725805, 4146.289903259845, + 4131.358453077756, 4125.3371640828655, 4140.214149972564, + 4183.958361910321, 4257.619995581163, 4354.166159608389, + 4458.277627163262, 4556.482107864017, 4640.478322360257, + 4715.332118709772, 4804.218981044692, 4947.254466776196, + 5197.690402244577, 5611.581528381639, 6229.241462291491, + 7085.437057857196, 8171.255126695136, 9451.504551894428 + ], + "flow:J107:branch132_seg1": [ + 1.0111428346533875, 1.288225602277476, 1.581962607211436, + 1.8773576896305975, 2.1588760141509913, 2.414360100316108, + 2.636093084264852, 2.82160591555459, 2.970783994719028, + 3.0875298724791187, 3.1763509529508527, 3.239911447777488, + 3.2812998069287644, 3.300769200996651, 3.2979495832432, 3.273143419211826, + 3.225921236985074, 3.158764267870309, 3.0747354361850303, + 2.9774684203074937, 2.871805260200673, 2.761022368115886, + 2.6477554286538467, 2.5335341812638252, 2.418795368227616, + 2.304039034801121, 2.190077848770598, 2.0785146360737463, + 1.971640625786308, 1.8718909030409874, 1.7807508104409417, + 1.6980916422731334, 1.6215313292499571, 1.5461040974368476, + 1.465546410632878, 1.373123312796819, 1.2635372372784464, + 1.1338544156644799, 0.98561041065203, 0.8235270296406061, + 0.6556815157965515, 0.4921135164369111, 0.3423823901015785, + 0.21425827881287293, 0.11253469155056162, 0.03889987229384058, + -0.009162327973602738, -0.03493508264996998, -0.04333184093928273, + -0.03901674767065829, -0.02472329202220499, -0.0027931825308003637, + 0.0259801709010145, 0.06097373648328767, 0.10070224439032259, + 0.1432334623556171, 0.18529488578487813, 0.2231334261791842, + 0.253265361700981, 0.2733354869557236, 0.2823637676579602, + 0.28146556311829124, 0.273297771784857, 0.2607826817106991, + 0.24716275714227393, 0.23437950513850297, 0.22290634532607892, + 0.21192262765505124, 0.1996819994580677, 0.18438425457000132, + 0.1650102137778857, 0.14173536196822686, 0.11626928375890101, + 0.09109184224699816, 0.06897389295192403, 0.05204326793351526, + 0.04121052733302086, 0.03575835340101815, 0.0339668814414227, + 0.03357979100385758, 0.032606221712785446, 0.030318999881972637, + 0.02733408833935812, 0.02545800822174158, 0.02706061908034351, + 0.03400242395066494, 0.04700570952440483, 0.06502502565420176, + 0.08552761858951986, 0.10569586084392725, 0.12335214246347326, + 0.13869548046489305, 0.15526770322223404, 0.18008424852728688, + 0.2231339775674279, 0.29527164468375766, 0.4061948757482672, + 0.5631186112552613, 0.7660134615377073, 1.0111428346533875 + ], + "pressure:J107:branch132_seg1": [ + 9451.504551894428, 10877.154451331844, 12361.114779611069, + 13827.725068741454, 15205.597644278121, 16438.02746523707, + 17491.92984334833, 18364.071641068324, 19059.524365187717, + 19595.09519224849, 20000.568921279497, 20283.395992875, + 20456.038468196843, 20521.574397594883, 20472.5195302188, + 20315.32541391345, 20047.402556187382, 19681.062444663163, + 19239.177553646845, 18736.080653047575, 18196.71950043265, + 17637.866046134543, 17068.565615741485, 16496.319537046704, + 15922.169857908451, 15348.397862458103, 14780.639593276697, + 14227.86794927261, 13702.196823152099, 13215.405293010166, + 12773.397690896685, 12371.349910672743, 11994.798251332555, + 11615.261791694686, 11199.515132075381, 10714.63676460257, + 10138.320303190627, 9459.320199428535, 8691.466445861097, + 7866.013088545852, 7024.409329768101, 6219.636441647671, + 5498.358384986785, 4895.660270194428, 4427.447313085248, + 4101.195586752313, 3898.569250871254, 3798.329678053817, + 3780.2904430164353, 3818.413633997004, 3902.428970289817, + 4023.8540765498165, 4176.9088856172775, 4360.673125732866, + 4565.645325145486, 4780.024137823896, 4987.253165492666, + 5167.522488808615, 5304.2734623831575, 5388.263597185954, + 5417.503516960474, 5398.831800883984, 5349.371558216685, + 5282.984924543337, 5214.493390782808, 5152.7159459062805, + 5097.156530709786, 5041.770280972324, 4977.27679872691, 4894.993904855605, + 4791.908052649091, 4670.466177522993, 4541.231093073425, + 4417.994126632352, 4313.850953800427, 4237.936614166206, + 4192.8343400714675, 4172.995275884121, 4167.630308344911, + 4166.281252023018, 4159.759154725805, 4146.289903259845, + 4131.358453077756, 4125.3371640828655, 4140.214149972564, + 4183.958361910321, 4257.619995581163, 4354.166159608389, + 4458.277627163262, 4556.482107864017, 4640.478322360257, + 4715.332118709772, 4804.218981044692, 4947.254466776196, + 5197.690402244577, 5611.581528381639, 6229.241462291491, + 7085.437057857196, 8171.255126695136, 9451.504551894428 + ], + "flow:branch132_seg1:J108": [ + 1.0097387456375084, 1.2867227559556977, 1.580425211844173, + 1.875888014001719, 2.1575345331313325, 2.413184210288695, + 2.635101330001896, 2.8208200267416688, 2.9701522642836977, + 3.087049446628582, 3.1760053917662825, 3.2396715401328855, + 3.2811803068900582, 3.300757554533041, 3.2980515769606678, + 3.273362651218965, 3.226242221802353, 3.159182979800925, + 3.0752238575932878, 2.9780028639100125, 2.8723726235796807, + 2.7616028095444585, 2.6483412634250234, 2.5341235193936185, + 2.4193846405809647, 2.304626477955796, 2.1906552051100046, + 2.0790700154076043, 1.9721606793388713, 1.8723682031365385, + 1.7811801065600095, 1.698486249979487, 1.6219154572286452, + 1.546505946975707, 1.466002848347994, 1.3736659156311437, + 1.2641826117955317, 1.1345962368279894, 0.9864364953051473, + 0.8243900995732315, 0.6565326399000786, 0.4929063765964971, + 0.34307023534074393, 0.21480704997821048, 0.1129454878586218, + 0.039172703416017904, -0.009015202080106057, -0.0348777667868373, + -0.04334497494051289, -0.03908460617048137, -0.02482765701981158, + -0.002938405935260114, 0.025804726105117057, 0.06077415907412573, + 0.10048162939099575, 0.1430140040135425, 0.18509349141947698, + 0.22296831083845403, 0.2531503413885206, 0.27328106333630614, + 0.2823588366168701, 0.2815020966922226, 0.27336121575553946, + 0.260852277450998, 0.24723002881338285, 0.23443988453883147, + 0.22296155596032977, 0.211982175134569, 0.1997558797535069, + 0.1844797455183507, 0.1651261525246824, 0.1418654700092699, + 0.11640221094163158, 0.09121099304050383, 0.0690667587868281, + 0.052104494326205605, 0.04124293194358633, 0.03576719208004039, + 0.033967875325348965, 0.0335837441526519, 0.032616602615642684, + 0.03033489484107147, 0.02734708331532059, 0.025455161037871675, + 0.027031807670227146, 0.03394036592403938, 0.046917262653563205, + 0.06492015549536499, 0.08542094779435826, 0.10560218382973088, + 0.12327326640872724, 0.13861699805777686, 0.1551568378784734, + 0.1798935239306816, 0.22280620852067878, 0.2947448581595117, + 0.40544563830180474, 0.5621265548969844, 0.7647760929887243, + 1.0097387456375084 + ], + "pressure:branch132_seg1:J108": [ + 9278.242917907028, 10681.195472393456, 12150.67337048414, + 13611.990571972401, 14991.871586865325, 16232.48790495689, + 17298.974724473384, 18185.24873384691, 18893.883389145813, + 19442.89068067928, 19859.398041675002, 20152.612257165314, + 20336.228357445027, 20412.489322122547, 20375.957327135417, + 20231.417144608873, 19976.288111443948, 19622.89358803503, + 19191.393633619547, 18697.277321903995, 18165.13008413871, + 17611.50652167546, 17046.77750515333, 16478.513105209044, + 15908.108378807143, 15337.904774990033, 14772.954814767236, + 14221.833817325387, 13696.349891002612, 13208.385089674677, + 12764.32125139268, 12360.853172291292, 11984.5283793714, + 11608.265146944073, 11199.71779501912, 10725.893224542531, + 10163.165520998895, 9499.03867833009, 8745.245266227032, + 7930.085764271316, 7094.396952674778, 6289.9318325360755, + 5563.449840833034, 4951.133924607136, 4471.632599366757, + 4132.695829120604, 3918.1504137184033, 3808.4919078625207, + 3782.251257112084, 3814.332172113601, 3893.449320436687, + 4010.002680142016, 4158.886665854603, 4338.470941533752, + 4539.960315227078, 4752.460696424426, 4959.542105501228, + 5141.874857629898, 5282.672565057396, 5371.928501440144, + 5406.523415434353, 5392.8908154984165, 5346.746916087333, + 5282.064489843117, 5214.105839273517, 5151.966372702158, + 5096.125069120261, 5041.261777639987, 4978.33871215898, 4898.603283130821, + 4798.32943840091, 4679.398649417005, 4551.602839738704, 4428.170065756572, + 4322.382673977109, 4243.857190972302, 4195.86449110741, 4173.558270907381, + 4166.991409415993, 4165.477052769749, 4159.583239244905, 4146.89896961265, + 4132.042668022421, 4124.84830177254, 4137.212137468733, 4177.49513912328, + 4247.696952143999, 4341.424984238132, 4444.356453460557, + 4542.900903287562, 4627.8818525054185, 4702.887070434285, + 4789.033205003343, 4924.4484470522775, 5160.885025315826, + 5553.481016464983, 6145.16238946192, 6970.905146285565, 8025.035970270333, + 9278.242917907028 + ], + "flow:J108:branch132_seg2": [ + 1.0097387456375084, 1.2867227559556977, 1.580425211844173, + 1.875888014001719, 2.1575345331313325, 2.413184210288695, + 2.635101330001896, 2.8208200267416688, 2.9701522642836977, + 3.087049446628582, 3.1760053917662825, 3.2396715401328855, + 3.2811803068900582, 3.300757554533041, 3.2980515769606678, + 3.273362651218965, 3.226242221802353, 3.159182979800925, + 3.0752238575932878, 2.9780028639100125, 2.8723726235796807, + 2.7616028095444585, 2.6483412634250234, 2.5341235193936185, + 2.4193846405809647, 2.304626477955796, 2.1906552051100046, + 2.0790700154076043, 1.9721606793388713, 1.8723682031365385, + 1.7811801065600095, 1.698486249979487, 1.6219154572286452, + 1.546505946975707, 1.466002848347994, 1.3736659156311437, + 1.2641826117955317, 1.1345962368279894, 0.9864364953051473, + 0.8243900995732315, 0.6565326399000786, 0.4929063765964971, + 0.34307023534074393, 0.21480704997821048, 0.1129454878586218, + 0.039172703416017904, -0.009015202080106057, -0.0348777667868373, + -0.04334497494051289, -0.03908460617048137, -0.02482765701981158, + -0.002938405935260114, 0.025804726105117057, 0.06077415907412573, + 0.10048162939099575, 0.1430140040135425, 0.18509349141947698, + 0.22296831083845403, 0.2531503413885206, 0.27328106333630614, + 0.2823588366168701, 0.2815020966922226, 0.27336121575553946, + 0.260852277450998, 0.24723002881338285, 0.23443988453883147, + 0.22296155596032977, 0.211982175134569, 0.1997558797535069, + 0.1844797455183507, 0.1651261525246824, 0.1418654700092699, + 0.11640221094163158, 0.09121099304050383, 0.0690667587868281, + 0.052104494326205605, 0.04124293194358633, 0.03576719208004039, + 0.033967875325348965, 0.0335837441526519, 0.032616602615642684, + 0.03033489484107147, 0.02734708331532059, 0.025455161037871675, + 0.027031807670227146, 0.03394036592403938, 0.046917262653563205, + 0.06492015549536499, 0.08542094779435826, 0.10560218382973088, + 0.12327326640872724, 0.13861699805777686, 0.1551568378784734, + 0.1798935239306816, 0.22280620852067878, 0.2947448581595117, + 0.40544563830180474, 0.5621265548969844, 0.7647760929887243, + 1.0097387456375084 + ], + "pressure:J108:branch132_seg2": [ + 9278.242917907028, 10681.195472393456, 12150.67337048414, + 13611.990571972401, 14991.871586865325, 16232.48790495689, + 17298.974724473384, 18185.24873384691, 18893.883389145813, + 19442.89068067928, 19859.398041675002, 20152.612257165314, + 20336.228357445027, 20412.489322122547, 20375.957327135417, + 20231.417144608873, 19976.288111443948, 19622.89358803503, + 19191.393633619547, 18697.277321903995, 18165.13008413871, + 17611.50652167546, 17046.77750515333, 16478.513105209044, + 15908.108378807143, 15337.904774990033, 14772.954814767236, + 14221.833817325387, 13696.349891002612, 13208.385089674677, + 12764.32125139268, 12360.853172291292, 11984.5283793714, + 11608.265146944073, 11199.71779501912, 10725.893224542531, + 10163.165520998895, 9499.03867833009, 8745.245266227032, + 7930.085764271316, 7094.396952674778, 6289.9318325360755, + 5563.449840833034, 4951.133924607136, 4471.632599366757, + 4132.695829120604, 3918.1504137184033, 3808.4919078625207, + 3782.251257112084, 3814.332172113601, 3893.449320436687, + 4010.002680142016, 4158.886665854603, 4338.470941533752, + 4539.960315227078, 4752.460696424426, 4959.542105501228, + 5141.874857629898, 5282.672565057396, 5371.928501440144, + 5406.523415434353, 5392.8908154984165, 5346.746916087333, + 5282.064489843117, 5214.105839273517, 5151.966372702158, + 5096.125069120261, 5041.261777639987, 4978.33871215898, 4898.603283130821, + 4798.32943840091, 4679.398649417005, 4551.602839738704, 4428.170065756572, + 4322.382673977109, 4243.857190972302, 4195.86449110741, 4173.558270907381, + 4166.991409415993, 4165.477052769749, 4159.583239244905, 4146.89896961265, + 4132.042668022421, 4124.84830177254, 4137.212137468733, 4177.49513912328, + 4247.696952143999, 4341.424984238132, 4444.356453460557, + 4542.900903287562, 4627.8818525054185, 4702.887070434285, + 4789.033205003343, 4924.4484470522775, 5160.885025315826, + 5553.481016464983, 6145.16238946192, 6970.905146285565, 8025.035970270333, + 9278.242917907028 + ], + "flow:branch133_seg0:J109": [ + 0.7024768763956566, 0.900602761083745, 1.1138346045723704, + 1.3313889134468948, 1.5418460485730807, 1.7357952299923043, + 1.90676175135419, 2.0518808037508456, 2.1703622072362063, + 2.2644264038898454, 2.336946561160371, 2.3900764984494893, + 2.4261271365148365, 2.445587353534942, 2.4484737177121665, + 2.4349298597939586, 2.404732355510858, 2.359405460288429, + 2.3009326198376603, 2.2319297328601833, 2.1557710343924033, + 2.075007098284673, 1.9917711500292774, 1.907380757802006, + 1.8223794214713946, 1.73720894706205, 1.6524418366704712, + 1.5691570365698242, 1.4889272280129273, 1.4135034907059678, + 1.3441041530764912, 1.2809228287807077, 1.2225848747031312, + 1.1659081999011462, 1.1065948449409084, 1.0398146205764327, + 0.9614717882257149, 0.8690122605429218, 0.7628266944888952, + 0.6456724423926444, 0.5228867815307954, 0.40139253943259723, + 0.2881775226794948, 0.18923243805858966, 0.10864514171643458, + 0.04821608147167136, 0.006894174400211545, -0.017345369405981366, + -0.02786123069275718, -0.027974515002507222, -0.019963509158830002, + -0.0057199227477058604, 0.01395250125735654, 0.03844802583711827, + 0.066761570285361, 0.0975609017184636, 0.128607352308462, + 0.15726068544929064, 0.18093594019232484, 0.19771826649337668, + 0.20662005202019615, 0.20812005790415475, 0.20381787056438067, + 0.19574284504928305, 0.18622348235321323, 0.176832886080305, + 0.16818603070362867, 0.15994137567706904, 0.15101384801867396, + 0.14014709616826304, 0.1264949254711328, 0.10999924338098702, + 0.09164894401088912, 0.07308077992566574, 0.056255603547718434, + 0.042810756692983475, 0.03360944785774633, 0.028408361193840853, + 0.026178469356513676, 0.02538049075402097, 0.024553649359693386, + 0.022987545558332927, 0.020889429931995347, 0.01935571366212087, + 0.01999049288035971, 0.024195779916948004, 0.03268366457178794, + 0.04496674233378359, 0.059484473112101054, 0.074276092298056, + 0.08766534634507654, 0.09944678273484758, 0.11165585519614846, + 0.12881407429686753, 0.15769419860954464, 0.20600650010244856, + 0.28107277334053615, 0.3885595140699011, 0.5296140795427435, + 0.7024768763956566 + ], + "pressure:branch133_seg0:J109": [ + 9032.381043699688, 10390.161494416712, 11824.8127368169, + 13264.01133150062, 14636.065939530528, 15882.005376273071, + 16964.292709943988, 17873.113842125706, 18607.42366793779, + 19182.31949794416, 19623.0374331161, 19938.750179502953, + 20143.15917680337, 20239.89361387961, 20224.38436710708, + 20101.657294234472, 19869.336682057772, 19538.011288027024, + 19127.2180935256, 18651.37989022732, 18133.984801845323, + 17592.03175196889, 17036.266880244566, 16475.076234247128, + 15910.751357019924, 15345.905841207381, 14785.513654061402, + 14237.636177256216, 13713.415522727035, 13224.406989666451, + 12777.298681701199, 12369.954006062015, 11990.658678105032, + 11614.61583133531, 11211.283251946596, 10748.794026904001, + 10203.315665204775, 9560.845765789609, 8830.04546605631, + 8036.063551297601, 7216.249645528657, 6419.793685783515, + 5692.306379130511, 5070.530072280406, 4574.677488363921, + 4214.992847020233, 3978.8516040104987, 3848.4643687770044, + 3804.2433130401796, 3821.716858316291, 3888.8368008962198, + 3995.58245728482, 4135.879119436112, 4307.511931945007, 4502.075837613093, + 4709.183829615753, 4913.3542074284405, 5096.02765030169, + 5240.622808881644, 5336.698721777773, 5380.029256744429, + 5375.521579524331, 5337.420330897793, 5278.706683480131, + 5214.0985409796685, 5153.188282175985, 5097.429659861208, + 5042.6601787452455, 4980.869087683993, 4903.7525378541395, + 4807.363775538632, 4692.79700154364, 4568.588948678569, 4447.011236550388, + 4340.739970105197, 4259.469205664343, 4207.193431812076, + 4180.265081870754, 4169.880694725931, 4166.070236206065, + 4159.620169723309, 4147.486641504584, 4133.267694785736, + 4125.673848864741, 4135.803007585611, 4171.923228028996, + 4236.696099290766, 4324.990338000499, 4423.818322407011, + 4520.437352951196, 4605.612871551207, 4681.536250393518, + 4766.735681665796, 4896.185121885201, 5118.364646829121, + 5486.548365475251, 6043.18927742688, 6824.248543073359, 7829.107102616656, + 9032.381043699688 + ], + "flow:J109:branch133_seg1": [ + 0.7024768763956566, 0.900602761083745, 1.1138346045723704, + 1.3313889134468948, 1.5418460485730807, 1.7357952299923043, + 1.90676175135419, 2.0518808037508456, 2.1703622072362063, + 2.2644264038898454, 2.336946561160371, 2.3900764984494893, + 2.4261271365148365, 2.445587353534942, 2.4484737177121665, + 2.4349298597939586, 2.404732355510858, 2.359405460288429, + 2.3009326198376603, 2.2319297328601833, 2.1557710343924033, + 2.075007098284673, 1.9917711500292774, 1.907380757802006, + 1.8223794214713946, 1.73720894706205, 1.6524418366704712, + 1.5691570365698242, 1.4889272280129273, 1.4135034907059678, + 1.3441041530764912, 1.2809228287807077, 1.2225848747031312, + 1.1659081999011462, 1.1065948449409084, 1.0398146205764327, + 0.9614717882257149, 0.8690122605429218, 0.7628266944888952, + 0.6456724423926444, 0.5228867815307954, 0.40139253943259723, + 0.2881775226794948, 0.18923243805858966, 0.10864514171643458, + 0.04821608147167136, 0.006894174400211545, -0.017345369405981366, + -0.02786123069275718, -0.027974515002507222, -0.019963509158830002, + -0.0057199227477058604, 0.01395250125735654, 0.03844802583711827, + 0.066761570285361, 0.0975609017184636, 0.128607352308462, + 0.15726068544929064, 0.18093594019232484, 0.19771826649337668, + 0.20662005202019615, 0.20812005790415475, 0.20381787056438067, + 0.19574284504928305, 0.18622348235321323, 0.176832886080305, + 0.16818603070362867, 0.15994137567706904, 0.15101384801867396, + 0.14014709616826304, 0.1264949254711328, 0.10999924338098702, + 0.09164894401088912, 0.07308077992566574, 0.056255603547718434, + 0.042810756692983475, 0.03360944785774633, 0.028408361193840853, + 0.026178469356513676, 0.02538049075402097, 0.024553649359693386, + 0.022987545558332927, 0.020889429931995347, 0.01935571366212087, + 0.01999049288035971, 0.024195779916948004, 0.03268366457178794, + 0.04496674233378359, 0.059484473112101054, 0.074276092298056, + 0.08766534634507654, 0.09944678273484758, 0.11165585519614846, + 0.12881407429686753, 0.15769419860954464, 0.20600650010244856, + 0.28107277334053615, 0.3885595140699011, 0.5296140795427435, + 0.7024768763956566 + ], + "pressure:J109:branch133_seg1": [ + 9032.381043699688, 10390.161494416712, 11824.8127368169, + 13264.01133150062, 14636.065939530528, 15882.005376273071, + 16964.292709943988, 17873.113842125706, 18607.42366793779, + 19182.31949794416, 19623.0374331161, 19938.750179502953, + 20143.15917680337, 20239.89361387961, 20224.38436710708, + 20101.657294234472, 19869.336682057772, 19538.011288027024, + 19127.2180935256, 18651.37989022732, 18133.984801845323, + 17592.03175196889, 17036.266880244566, 16475.076234247128, + 15910.751357019924, 15345.905841207381, 14785.513654061402, + 14237.636177256216, 13713.415522727035, 13224.406989666451, + 12777.298681701199, 12369.954006062015, 11990.658678105032, + 11614.61583133531, 11211.283251946596, 10748.794026904001, + 10203.315665204775, 9560.845765789609, 8830.04546605631, + 8036.063551297601, 7216.249645528657, 6419.793685783515, + 5692.306379130511, 5070.530072280406, 4574.677488363921, + 4214.992847020233, 3978.8516040104987, 3848.4643687770044, + 3804.2433130401796, 3821.716858316291, 3888.8368008962198, + 3995.58245728482, 4135.879119436112, 4307.511931945007, 4502.075837613093, + 4709.183829615753, 4913.3542074284405, 5096.02765030169, + 5240.622808881644, 5336.698721777773, 5380.029256744429, + 5375.521579524331, 5337.420330897793, 5278.706683480131, + 5214.0985409796685, 5153.188282175985, 5097.429659861208, + 5042.6601787452455, 4980.869087683993, 4903.7525378541395, + 4807.363775538632, 4692.79700154364, 4568.588948678569, 4447.011236550388, + 4340.739970105197, 4259.469205664343, 4207.193431812076, + 4180.265081870754, 4169.880694725931, 4166.070236206065, + 4159.620169723309, 4147.486641504584, 4133.267694785736, + 4125.673848864741, 4135.803007585611, 4171.923228028996, + 4236.696099290766, 4324.990338000499, 4423.818322407011, + 4520.437352951196, 4605.612871551207, 4681.536250393518, + 4766.735681665796, 4896.185121885201, 5118.364646829121, + 5486.548365475251, 6043.18927742688, 6824.248543073359, 7829.107102616656, + 9032.381043699688 + ], + "flow:branch133_seg1:J110": [ + 0.6996133660109528, 0.8974871766383758, 1.1106088939876972, + 1.3282541768481297, 1.5389385835583032, 1.7332046098836171, + 1.9045460225241377, 2.0500813997035165, 2.168909146989288, + 2.2633038168822, 2.3361172531999133, 2.3894912825483363, + 2.4257957170419044, 2.445493194823525, 2.44862261009128, + 2.4353243681079224, 2.4053538930326197, 2.3602406141168766, + 2.3019253017100954, 2.233032926710693, 2.1569552672433927, + 2.0762270936047633, 1.9930103121477987, 1.9086298732165103, + 1.8236305240906954, 1.7384584985776312, 1.6536736230175955, + 1.570348347986945, 1.4900514646864103, 1.414542860971092, + 1.3450449703451852, 1.2817867965847616, 1.2234143335977206, + 1.1667586084839516, 1.107541046915706, 1.0409245395624123, + 0.9627844827753913, 0.8705331549532104, 0.7645304486251769, + 0.6474763979236378, 0.5246921206150033, 0.40310111633365975, + 0.28968654683913936, 0.19046599724691193, 0.10959343249558293, + 0.048874711246318855, 0.007277667654413892, -0.01716042239496403, + -0.027841800612159174, -0.02807938579635156, -0.020154481341703955, + -0.00600267523315237, 0.013603431458240247, 0.038042442335132286, + 0.06630801668552307, 0.09709970326206063, 0.12817355568774952, + 0.1568917878477248, 0.18066513169946577, 0.19756666913516094, + 0.20657757239497487, 0.20817052786294463, 0.2039322378111503, + 0.19588162621069521, 0.18636468107547605, 0.17696278080308578, + 0.1683053646755046, 0.16006666103450307, 0.1511650049158701, + 0.1403403257707555, 0.1267305301413746, 0.11026690149280492, + 0.0919280884534353, 0.07333794860100235, 0.05646446841237072, + 0.04295738662714921, 0.033695942375468566, 0.028442251560512933, + 0.026189913625878206, 0.025391298783789235, 0.024573862822027545, + 0.02301895427510488, 0.02091772171225681, 0.01935708051284157, + 0.01994221805952541, 0.02408275998021206, 0.032512120875739244, + 0.04475532213965122, 0.059262051363033266, 0.07407356242207273, + 0.08749110871153581, 0.09927853436065864, 0.11143376337547012, + 0.12844479562038968, 0.15706268168795495, 0.20498208296735893, + 0.27959704500415894, 0.3865882598064601, 0.5271166672166363, + 0.6996133660109528 + ], + "pressure:branch133_seg1:J110": [ + 8714.873970267969, 10025.892659897145, 11428.2318546845, + 12851.343189717101, 14221.58314304206, 15478.3214654906, + 16580.93843717062, 17513.889623640036, 18272.86260809304, + 18872.8421669088, 19334.727336332668, 19670.711917533947, + 19895.666755641334, 20012.788771905478, 20020.62840428032, + 19921.57962763041, 19713.735377727586, 19407.25736245785, + 19017.204991930157, 18559.681306676626, 18057.26467252953, + 17526.600807592364, 16980.58435568195, 16427.759247571834, + 15871.220059166255, 15313.767369238058, 14759.501209912889, + 14215.771291032426, 13693.102513072672, 13202.986423691724, + 12752.919665110569, 12343.143692154968, 11963.845179917282, + 11592.950155515908, 11201.703458775222, 10758.514892020698, + 10237.612119504134, 9623.136963434776, 8919.648988053046, + 8147.339222608718, 7341.739182140389, 6549.341443509679, + 5815.589973300829, 5178.781651162047, 4663.550865879609, + 4281.120669221737, 4022.7011191825636, 3873.8042348338804, + 3813.1883328976005, 3818.2744226027467, 3875.22992932715, + 3972.3414788134805, 4104.247623408714, 4267.541974439858, + 4455.019313189134, 4657.579783447944, 4860.314876285885, 5045.5823034632, + 5196.638879159603, 5301.697202458575, 5354.945404192465, + 5360.105611708705, 5328.881841903153, 5274.321869636489, + 5211.502322327076, 5150.468100044413, 5094.383398809373, + 5040.421059162648, 4981.208153159557, 4908.51019045679, 4817.299381579268, + 4707.664019860651, 4586.725709558779, 4465.634682754968, + 4357.1457739468715, 4271.626568653435, 4214.198124333681, + 4182.570745263493, 4169.426675219548, 4164.72948388416, + 4159.0244304988055, 4148.210654766747, 4134.352229181711, + 4125.087064434635, 4131.084923670568, 4161.194113761986, + 4219.4581199241165, 4302.0761384875295, 4397.9437818092965, + 4494.335714487098, 4580.830028770694, 4657.183732742143, + 4738.308663460773, 4855.398766447905, 5053.930620314101, 5385.0609026671, + 5894.904038141314, 6620.052219957801, 7565.177749156537, 8714.873970267969 + ], + "flow:J110:branch133_seg2": [ + 0.6996133660109528, 0.8974871766383758, 1.1106088939876972, + 1.3282541768481297, 1.5389385835583032, 1.7332046098836171, + 1.9045460225241377, 2.0500813997035165, 2.168909146989288, + 2.2633038168822, 2.3361172531999133, 2.3894912825483363, + 2.4257957170419044, 2.445493194823525, 2.44862261009128, + 2.4353243681079224, 2.4053538930326197, 2.3602406141168766, + 2.3019253017100954, 2.233032926710693, 2.1569552672433927, + 2.0762270936047633, 1.9930103121477987, 1.9086298732165103, + 1.8236305240906954, 1.7384584985776312, 1.6536736230175955, + 1.570348347986945, 1.4900514646864103, 1.414542860971092, + 1.3450449703451852, 1.2817867965847616, 1.2234143335977206, + 1.1667586084839516, 1.107541046915706, 1.0409245395624123, + 0.9627844827753913, 0.8705331549532104, 0.7645304486251769, + 0.6474763979236378, 0.5246921206150033, 0.40310111633365975, + 0.28968654683913936, 0.19046599724691193, 0.10959343249558293, + 0.048874711246318855, 0.007277667654413892, -0.01716042239496403, + -0.027841800612159174, -0.02807938579635156, -0.020154481341703955, + -0.00600267523315237, 0.013603431458240247, 0.038042442335132286, + 0.06630801668552307, 0.09709970326206063, 0.12817355568774952, + 0.1568917878477248, 0.18066513169946577, 0.19756666913516094, + 0.20657757239497487, 0.20817052786294463, 0.2039322378111503, + 0.19588162621069521, 0.18636468107547605, 0.17696278080308578, + 0.1683053646755046, 0.16006666103450307, 0.1511650049158701, + 0.1403403257707555, 0.1267305301413746, 0.11026690149280492, + 0.0919280884534353, 0.07333794860100235, 0.05646446841237072, + 0.04295738662714921, 0.033695942375468566, 0.028442251560512933, + 0.026189913625878206, 0.025391298783789235, 0.024573862822027545, + 0.02301895427510488, 0.02091772171225681, 0.01935708051284157, + 0.01994221805952541, 0.02408275998021206, 0.032512120875739244, + 0.04475532213965122, 0.059262051363033266, 0.07407356242207273, + 0.08749110871153581, 0.09927853436065864, 0.11143376337547012, + 0.12844479562038968, 0.15706268168795495, 0.20498208296735893, + 0.27959704500415894, 0.3865882598064601, 0.5271166672166363, + 0.6996133660109528 + ], + "pressure:J110:branch133_seg2": [ + 8714.873970267969, 10025.892659897145, 11428.2318546845, + 12851.343189717101, 14221.58314304206, 15478.3214654906, + 16580.93843717062, 17513.889623640036, 18272.86260809304, + 18872.8421669088, 19334.727336332668, 19670.711917533947, + 19895.666755641334, 20012.788771905478, 20020.62840428032, + 19921.57962763041, 19713.735377727586, 19407.25736245785, + 19017.204991930157, 18559.681306676626, 18057.26467252953, + 17526.600807592364, 16980.58435568195, 16427.759247571834, + 15871.220059166255, 15313.767369238058, 14759.501209912889, + 14215.771291032426, 13693.102513072672, 13202.986423691724, + 12752.919665110569, 12343.143692154968, 11963.845179917282, + 11592.950155515908, 11201.703458775222, 10758.514892020698, + 10237.612119504134, 9623.136963434776, 8919.648988053046, + 8147.339222608718, 7341.739182140389, 6549.341443509679, + 5815.589973300829, 5178.781651162047, 4663.550865879609, + 4281.120669221737, 4022.7011191825636, 3873.8042348338804, + 3813.1883328976005, 3818.2744226027467, 3875.22992932715, + 3972.3414788134805, 4104.247623408714, 4267.541974439858, + 4455.019313189134, 4657.579783447944, 4860.314876285885, 5045.5823034632, + 5196.638879159603, 5301.697202458575, 5354.945404192465, + 5360.105611708705, 5328.881841903153, 5274.321869636489, + 5211.502322327076, 5150.468100044413, 5094.383398809373, + 5040.421059162648, 4981.208153159557, 4908.51019045679, 4817.299381579268, + 4707.664019860651, 4586.725709558779, 4465.634682754968, + 4357.1457739468715, 4271.626568653435, 4214.198124333681, + 4182.570745263493, 4169.426675219548, 4164.72948388416, + 4159.0244304988055, 4148.210654766747, 4134.352229181711, + 4125.087064434635, 4131.084923670568, 4161.194113761986, + 4219.4581199241165, 4302.0761384875295, 4397.9437818092965, + 4494.335714487098, 4580.830028770694, 4657.183732742143, + 4738.308663460773, 4855.398766447905, 5053.930620314101, 5385.0609026671, + 5894.904038141314, 6620.052219957801, 7565.177749156537, 8714.873970267969 + ], + "flow:branch134_seg0:J111": [ + 0.5271135340814403, 0.678930472185504, 0.843826860991603, + 1.0134588506556703, 1.1788634434802727, 1.3324590902625466, + 1.4688458052755844, 1.5853363195533017, 1.6810208865621405, + 1.7574222364495313, 1.8166125061039127, 1.8604131314738983, + 1.8906710506040125, 1.9078919845245326, 1.9122158821612762, + 1.9036781281875992, 1.8821319291136764, 1.848610255036039, + 1.8045099043699746, 1.7518712528726612, 1.6932498520494326, + 1.630700866674887, 1.5659944825324488, 1.500234117961289, + 1.4339319118255864, 1.3674471444166454, 1.301190675635734, + 1.2359462978699516, 1.1728866793148767, 1.1133693990964344, + 1.0584139612510486, 1.0083285622893905, 0.9622184597094475, + 0.9178160053870196, 0.8718993022428398, 0.8207327223763909, + 0.7609964740779817, 0.6905029272049319, 0.6092039431627769, + 0.5189229488733437, 0.423577156581527, 0.3283881983284426, + 0.23881643038001926, 0.15969034929265488, 0.094487087468056, + 0.044833468211159834, 0.010254117527418402, -0.010667372826815591, + -0.020506805430190646, -0.02181346614121694, -0.0165110808517905, + -0.006163110056203328, 0.008541180638342657, 0.027070713962360386, + 0.048709890363288114, 0.07248530028366194, 0.09672930346355547, + 0.11943511351349853, 0.13856652079560122, 0.15253183034839962, + 0.16042928895846345, 0.16248216401713306, 0.1597835306069258, + 0.15388318670543533, 0.14659525098365725, 0.13922656206127593, + 0.13238704535515328, 0.12592550345170447, 0.1190698375247934, + 0.11085002684369068, 0.1005380051465042, 0.08799386814617548, + 0.07386433928123001, 0.05934719435657096, 0.04595656588101171, + 0.03502154032576591, 0.027315700354332676, 0.02277756281656773, + 0.020710534639112134, 0.01994420689495631, 0.019320918248339602, + 0.018192050732830048, 0.01659953655659625, 0.015299268388281053, + 0.015495371219057657, 0.018318950838233674, 0.024427259980246543, + 0.03357528574500084, 0.04467947952745958, 0.0562403058859883, + 0.06688448809259567, 0.07626081754616225, 0.08567465628650395, + 0.09835647646001758, 0.11934027944116471, 0.15453553871142428, + 0.20981284616255502, 0.2897579918531473, 0.39580874949070105, + 0.5271135340814403 + ], + "pressure:branch134_seg0:J111": [ + 8629.391393357322, 9922.198040601008, 11308.25614815702, + 12717.498558842159, 14077.433226848334, 15327.321879391075, + 16426.113934568242, 17357.56979863043, 18116.84871449903, + 18717.902232207805, 19181.53543180698, 19519.86791085337, + 19747.4847547402, 19868.257623325164, 19880.604067375647, + 19787.127336996153, 19585.922378269475, 19286.27342519961, + 18903.497845195703, 18453.06571252821, 17957.099204121412, + 17432.524127575143, 16892.071140207056, 16344.504241762213, + 15793.121982951045, 15240.672893484547, 14691.229938726688, + 14151.93103839669, 13633.05483489427, 13145.94579943351, + 12698.176780651613, 12290.222909258371, 11912.78574082681, + 11544.490712223058, 11157.101672515091, 10719.476752640661, + 10206.001009200227, 9600.455283440959, 8906.575255200005, + 8143.92679658488, 7346.844922269158, 6561.061369057219, 5831.583402072997, + 5196.717919136573, 4681.058424083875, 4296.597342709967, + 4035.4710532310582, 3883.209467666601, 3819.455890312949, + 3821.6475574118253, 3875.7372309816865, 3970.2261284359965, + 4099.332959984432, 4259.679881093425, 4444.301963322276, + 4644.196622920924, 4844.894346062076, 5029.006272226358, + 5179.907727947206, 5285.782960913844, 5340.6077931006, 5347.622600026759, + 5318.256617942924, 5265.228784329386, 5203.355243151425, + 5142.859101223232, 5087.108009244236, 5033.536341662093, + 4975.056559477454, 4903.536091065485, 4813.921927803715, + 4706.061063298628, 4586.698183877582, 4466.766396682812, + 4358.788651555589, 4273.121208517246, 4215.0530018010795, + 4182.642509540098, 4168.804880746305, 4163.747027575409, + 4158.102137784134, 4147.573640938682, 4133.983355456273, + 4124.660312950389, 4130.035807621077, 4158.9201844743875, + 4215.497731901323, 4296.363619905777, 4390.73431677814, 4486.168222068773, + 4572.2930181248585, 4648.488568547642, 4728.930126426053, + 4843.8849823539185, 5037.77323523399, 5361.223606116973, + 5859.665322233993, 6569.892640931727, 7498.245848982881, 8629.391393357322 + ], + "flow:J111:branch134_seg1": [ + 0.5271135340814403, 0.678930472185504, 0.843826860991603, + 1.0134588506556703, 1.1788634434802727, 1.3324590902625466, + 1.4688458052755844, 1.5853363195533017, 1.6810208865621405, + 1.7574222364495313, 1.8166125061039127, 1.8604131314738983, + 1.8906710506040125, 1.9078919845245326, 1.9122158821612762, + 1.9036781281875992, 1.8821319291136764, 1.848610255036039, + 1.8045099043699746, 1.7518712528726612, 1.6932498520494326, + 1.630700866674887, 1.5659944825324488, 1.500234117961289, + 1.4339319118255864, 1.3674471444166454, 1.301190675635734, + 1.2359462978699516, 1.1728866793148767, 1.1133693990964344, + 1.0584139612510486, 1.0083285622893905, 0.9622184597094475, + 0.9178160053870196, 0.8718993022428398, 0.8207327223763909, + 0.7609964740779817, 0.6905029272049319, 0.6092039431627769, + 0.5189229488733437, 0.423577156581527, 0.3283881983284426, + 0.23881643038001926, 0.15969034929265488, 0.094487087468056, + 0.044833468211159834, 0.010254117527418402, -0.010667372826815591, + -0.020506805430190646, -0.02181346614121694, -0.0165110808517905, + -0.006163110056203328, 0.008541180638342657, 0.027070713962360386, + 0.048709890363288114, 0.07248530028366194, 0.09672930346355547, + 0.11943511351349853, 0.13856652079560122, 0.15253183034839962, + 0.16042928895846345, 0.16248216401713306, 0.1597835306069258, + 0.15388318670543533, 0.14659525098365725, 0.13922656206127593, + 0.13238704535515328, 0.12592550345170447, 0.1190698375247934, + 0.11085002684369068, 0.1005380051465042, 0.08799386814617548, + 0.07386433928123001, 0.05934719435657096, 0.04595656588101171, + 0.03502154032576591, 0.027315700354332676, 0.02277756281656773, + 0.020710534639112134, 0.01994420689495631, 0.019320918248339602, + 0.018192050732830048, 0.01659953655659625, 0.015299268388281053, + 0.015495371219057657, 0.018318950838233674, 0.024427259980246543, + 0.03357528574500084, 0.04467947952745958, 0.0562403058859883, + 0.06688448809259567, 0.07626081754616225, 0.08567465628650395, + 0.09835647646001758, 0.11934027944116471, 0.15453553871142428, + 0.20981284616255502, 0.2897579918531473, 0.39580874949070105, + 0.5271135340814403 + ], + "pressure:J111:branch134_seg1": [ + 8629.391393357322, 9922.198040601008, 11308.25614815702, + 12717.498558842159, 14077.433226848334, 15327.321879391075, + 16426.113934568242, 17357.56979863043, 18116.84871449903, + 18717.902232207805, 19181.53543180698, 19519.86791085337, + 19747.4847547402, 19868.257623325164, 19880.604067375647, + 19787.127336996153, 19585.922378269475, 19286.27342519961, + 18903.497845195703, 18453.06571252821, 17957.099204121412, + 17432.524127575143, 16892.071140207056, 16344.504241762213, + 15793.121982951045, 15240.672893484547, 14691.229938726688, + 14151.93103839669, 13633.05483489427, 13145.94579943351, + 12698.176780651613, 12290.222909258371, 11912.78574082681, + 11544.490712223058, 11157.101672515091, 10719.476752640661, + 10206.001009200227, 9600.455283440959, 8906.575255200005, + 8143.92679658488, 7346.844922269158, 6561.061369057219, 5831.583402072997, + 5196.717919136573, 4681.058424083875, 4296.597342709967, + 4035.4710532310582, 3883.209467666601, 3819.455890312949, + 3821.6475574118253, 3875.7372309816865, 3970.2261284359965, + 4099.332959984432, 4259.679881093425, 4444.301963322276, + 4644.196622920924, 4844.894346062076, 5029.006272226358, + 5179.907727947206, 5285.782960913844, 5340.6077931006, 5347.622600026759, + 5318.256617942924, 5265.228784329386, 5203.355243151425, + 5142.859101223232, 5087.108009244236, 5033.536341662093, + 4975.056559477454, 4903.536091065485, 4813.921927803715, + 4706.061063298628, 4586.698183877582, 4466.766396682812, + 4358.788651555589, 4273.121208517246, 4215.0530018010795, + 4182.642509540098, 4168.804880746305, 4163.747027575409, + 4158.102137784134, 4147.573640938682, 4133.983355456273, + 4124.660312950389, 4130.035807621077, 4158.9201844743875, + 4215.497731901323, 4296.363619905777, 4390.73431677814, 4486.168222068773, + 4572.2930181248585, 4648.488568547642, 4728.930126426053, + 4843.8849823539185, 5037.77323523399, 5361.223606116973, + 5859.665322233993, 6569.892640931727, 7498.245848982881, 8629.391393357322 + ], + "flow:branch134_seg1:J112": [ + 0.5262883320466905, 0.678016979531089, 0.8428704851975977, + 1.0125152401279394, 1.1779754735130001, 1.331659334680077, + 1.4681558551617446, 1.584766129696258, 1.6805599871484707, + 1.7570639013738323, 1.816343061752214, 1.860220860380144, + 1.890554275764473, 1.9078463519266784, 1.9122439156927247, + 1.9037785415832829, 1.8823018732259598, 1.848845818078366, + 1.8047946728749193, 1.7521933864594854, 1.6935982827085116, + 1.6310623739867303, 1.5663635060315961, 1.5006065634404067, + 1.4343055668998614, 1.3678208281367663, 1.3015602223936318, + 1.2363056054658326, 1.1732282407952865, 1.113686753930386, + 1.0587027654402323, 1.0085928343550783, 0.9624685261163263, + 0.9180678713140857, 0.8721747308931357, 0.8210523193562789, + 0.7613738072297191, 0.6909433399938111, 0.609701282128415, + 0.5194556595028952, 0.424118215849316, 0.3289069057367892, + 0.239282086699206, 0.16007880585535766, 0.09479213127564327, + 0.045050848416462036, 0.010388805601457999, -0.01059609840769611, + -0.020488995670441556, -0.02183474301756715, -0.016561078610238637, + -0.00624049820450307, 0.008442919796899066, 0.026953818554814036, + 0.048577939430432586, 0.07234819051981696, 0.0965971930977658, + 0.11931963677825878, 0.13847833080699434, 0.15247742742136508, + 0.1604086418924501, 0.16249136579372883, 0.1598134583291166, + 0.1539232126027534, 0.1466377171376603, 0.1392661259395696, + 0.13242326409976818, 0.1259624066224765, 0.11911301110730425, + 0.11090470458137172, 0.10060521865193782, 0.08807169609076147, + 0.07394710202263528, 0.0594256959792581, 0.046022744573931185, + 0.03507032630788276, 0.027346116449882184, 0.022791655948735896, + 0.020715891362237095, 0.019947329836556185, 0.019326073872703804, + 0.01820074853523617, 0.016608428975720936, 0.015301917567431999, + 0.015484705671719152, 0.018290035195606128, 0.024380133895557318, + 0.03351437970093092, 0.04461347034165786, 0.056178216433686756, + 0.0668303835983356, 0.07621039023716442, 0.0856128143714346, + 0.09825745553955532, 0.1191713288311929, 0.15425821785578753, + 0.2094065952131456, 0.2892052344014818, 0.39510164106473533, + 0.5262883320466905 + ], + "pressure:branch134_seg1:J112": [ + 8450.165225210787, 9713.13889359163, 11076.36135944203, + 12470.947217041552, 13824.094246125249, 15074.500983145177, + 16179.58004342219, 17120.172424083226, 17889.966481285825, + 18502.166213071887, 18975.53532978151, 19323.55815660678, + 19561.127307647548, 19692.216410884208, 19716.662842662477, + 19635.88480046988, 19448.31493973283, 19162.777458803233, + 18792.51191625785, 18353.58194609342, 17867.445973151473, + 17350.911702670248, 16817.60940759024, 16276.424541067006, + 15731.108146476347, 15184.503554791892, 14640.292253297945, + 14105.212467948255, 13589.158546936676, 13103.3333591802, + 12655.688802786855, 12247.793244743814, 11871.416569572633, + 11506.705109979746, 11126.490138039673, 10699.99974404735, + 10200.86396760561, 9611.997244656965, 8934.963884143606, + 8186.8230126406725, 7400.61463855139, 6620.405828947343, + 5890.904447847686, 5250.965441832926, 4727.180316011324, + 4332.191248809235, 4060.2252736300497, 3898.4073749514105, + 3826.010568257061, 3821.4232190801895, 3869.7573270366474, + 3958.829362933295, 4082.986436638302, 4238.339368969405, + 4418.511922251302, 4615.098864668294, 4814.0878085058575, + 4998.637416876475, 5152.1450070798655, 5262.192520861599, + 5322.038759571294, 5334.175363817117, 5308.7157795842195, + 5258.304790735149, 5197.754158905266, 5137.513050177713, + 5081.791181422599, 5028.732319669613, 4971.668704743955, + 4902.585893738845, 4815.959464882013, 4711.115209551429, + 4594.0187476802685, 4474.976634083117, 4366.416967183995, + 4278.950199346854, 4218.404939685417, 4183.590337544005, + 4168.181659196269, 4162.512824925157, 4157.173887148676, + 4147.351551149436, 4134.082680771243, 4124.076619048515, + 4127.439235477236, 4153.194648218975, 4206.154058018825, + 4283.660275266417, 4375.953314259988, 4470.719930840606, + 4557.144122022315, 4633.4104761628405, 4711.813722415163, + 4820.525440868972, 5002.159132712275, 5306.015010765135, + 5778.832995517465, 6457.689624546671, 7351.717786997341, 8450.165225210787 + ], + "flow:J112:branch134_seg2": [ + 0.5262883320466905, 0.678016979531089, 0.8428704851975977, + 1.0125152401279394, 1.1779754735130001, 1.331659334680077, + 1.4681558551617446, 1.584766129696258, 1.6805599871484707, + 1.7570639013738323, 1.816343061752214, 1.860220860380144, + 1.890554275764473, 1.9078463519266784, 1.9122439156927247, + 1.9037785415832829, 1.8823018732259598, 1.848845818078366, + 1.8047946728749193, 1.7521933864594854, 1.6935982827085116, + 1.6310623739867303, 1.5663635060315961, 1.5006065634404067, + 1.4343055668998614, 1.3678208281367663, 1.3015602223936318, + 1.2363056054658326, 1.1732282407952865, 1.113686753930386, + 1.0587027654402323, 1.0085928343550783, 0.9624685261163263, + 0.9180678713140857, 0.8721747308931357, 0.8210523193562789, + 0.7613738072297191, 0.6909433399938111, 0.609701282128415, + 0.5194556595028952, 0.424118215849316, 0.3289069057367892, + 0.239282086699206, 0.16007880585535766, 0.09479213127564327, + 0.045050848416462036, 0.010388805601457999, -0.01059609840769611, + -0.020488995670441556, -0.02183474301756715, -0.016561078610238637, + -0.00624049820450307, 0.008442919796899066, 0.026953818554814036, + 0.048577939430432586, 0.07234819051981696, 0.0965971930977658, + 0.11931963677825878, 0.13847833080699434, 0.15247742742136508, + 0.1604086418924501, 0.16249136579372883, 0.1598134583291166, + 0.1539232126027534, 0.1466377171376603, 0.1392661259395696, + 0.13242326409976818, 0.1259624066224765, 0.11911301110730425, + 0.11090470458137172, 0.10060521865193782, 0.08807169609076147, + 0.07394710202263528, 0.0594256959792581, 0.046022744573931185, + 0.03507032630788276, 0.027346116449882184, 0.022791655948735896, + 0.020715891362237095, 0.019947329836556185, 0.019326073872703804, + 0.01820074853523617, 0.016608428975720936, 0.015301917567431999, + 0.015484705671719152, 0.018290035195606128, 0.024380133895557318, + 0.03351437970093092, 0.04461347034165786, 0.056178216433686756, + 0.0668303835983356, 0.07621039023716442, 0.0856128143714346, + 0.09825745553955532, 0.1191713288311929, 0.15425821785578753, + 0.2094065952131456, 0.2892052344014818, 0.39510164106473533, + 0.5262883320466905 + ], + "pressure:J112:branch134_seg2": [ + 8450.165225210787, 9713.13889359163, 11076.36135944203, + 12470.947217041552, 13824.094246125249, 15074.500983145177, + 16179.58004342219, 17120.172424083226, 17889.966481285825, + 18502.166213071887, 18975.53532978151, 19323.55815660678, + 19561.127307647548, 19692.216410884208, 19716.662842662477, + 19635.88480046988, 19448.31493973283, 19162.777458803233, + 18792.51191625785, 18353.58194609342, 17867.445973151473, + 17350.911702670248, 16817.60940759024, 16276.424541067006, + 15731.108146476347, 15184.503554791892, 14640.292253297945, + 14105.212467948255, 13589.158546936676, 13103.3333591802, + 12655.688802786855, 12247.793244743814, 11871.416569572633, + 11506.705109979746, 11126.490138039673, 10699.99974404735, + 10200.86396760561, 9611.997244656965, 8934.963884143606, + 8186.8230126406725, 7400.61463855139, 6620.405828947343, + 5890.904447847686, 5250.965441832926, 4727.180316011324, + 4332.191248809235, 4060.2252736300497, 3898.4073749514105, + 3826.010568257061, 3821.4232190801895, 3869.7573270366474, + 3958.829362933295, 4082.986436638302, 4238.339368969405, + 4418.511922251302, 4615.098864668294, 4814.0878085058575, + 4998.637416876475, 5152.1450070798655, 5262.192520861599, + 5322.038759571294, 5334.175363817117, 5308.7157795842195, + 5258.304790735149, 5197.754158905266, 5137.513050177713, + 5081.791181422599, 5028.732319669613, 4971.668704743955, + 4902.585893738845, 4815.959464882013, 4711.115209551429, + 4594.0187476802685, 4474.976634083117, 4366.416967183995, + 4278.950199346854, 4218.404939685417, 4183.590337544005, + 4168.181659196269, 4162.512824925157, 4157.173887148676, + 4147.351551149436, 4134.082680771243, 4124.076619048515, + 4127.439235477236, 4153.194648218975, 4206.154058018825, + 4283.660275266417, 4375.953314259988, 4470.719930840606, + 4557.144122022315, 4633.4104761628405, 4711.813722415163, + 4820.525440868972, 5002.159132712275, 5306.015010765135, + 5778.832995517465, 6457.689624546671, 7351.717786997341, 8450.165225210787 + ], + "flow:branch138_seg0:J113": [ + 1.483430309144912, 1.9016675483600232, 2.351534441814228, + 2.809737653081795, 3.2522436889014523, 3.6592310163258177, + 4.017124809231392, 4.319826579650248, 4.566344756998147, + 4.761297698413377, 4.910912988832974, 5.020139736395265, + 5.0936342084438735, 5.132605015953004, 5.13702507922238, + 5.107006805383784, 5.042196978200436, 4.945655308735894, + 4.821594589928707, 4.675632240396301, 4.514789464043845, + 4.344546901042151, 4.169388786653602, 3.9920168338876314, + 3.8135623812486044, 3.63486829127981, 3.457097317821368, + 3.2824943067659875, 3.1143666656041695, 2.9563908584321736, + 2.8111854068328754, 2.6791259950781425, 2.5572731107290863, + 2.438922636496676, 2.31490016776552, 2.1749563631008697, + 2.010403325917616, 1.8159248582844298, 1.5922811865475075, + 1.3454839684605746, 1.0869219280821443, 0.8312572649134288, + 0.5933999992345593, 0.3860430508707623, 0.2177251895435933, + 0.09216894587801117, 0.00710252128488039, -0.042034314595610744, + -0.06243104428121764, -0.061118110924774156, -0.04307832029536923, + -0.012166941741485849, 0.02988618500389345, 0.08186417234206957, + 0.1417969955905545, 0.20681236295081318, 0.2722491263137142, + 0.3325350848286901, 0.3821992137801778, 0.4171564733817539, + 0.4354273730389505, 0.43801257464565196, 0.42831849038885006, + 0.410780201981237, 0.39030871667928285, 0.37026277327050433, + 0.35195893779698145, 0.3346212229138407, 0.3159062665536035, + 0.2931076667205052, 0.26440201946148406, 0.22965339613440922, + 0.19094886899617886, 0.15180119340425197, 0.11638679908881502, + 0.088187152128845, 0.0690222709429738, 0.05839242211439768, + 0.05404289168265638, 0.05267904964056056, 0.0511998915759804, + 0.04805757858385686, 0.04369575673470263, 0.04046907173881463, + 0.04179764712993033, 0.050706816056873084, 0.06868888496535855, + 0.09473024022016466, 0.1255225914606178, 0.1568381853221118, + 0.18511201778806705, 0.20988809231976094, 0.235472698316285, + 0.27145914111321345, 0.332230933320526, 0.4341780236153183, + 0.5927542041325581, 0.8199127450742267, 1.1181941065145393, + 1.483430309144912 + ], + "pressure:branch138_seg0:J113": [ + 9541.402045383782, 10977.750867142242, 12468.02596427147, + 13936.11071281438, 15312.012031257957, 16539.64666863728, + 17586.728911002363, 18451.624898643982, 19140.653610559817, + 19669.571466753616, 20069.82800490692, 20347.681531774873, + 20514.857042267984, 20575.09315690463, 20519.679023835397, + 20356.176547392104, 20081.968598412914, 19709.173212624162, + 19262.419265968423, 18755.168771818433, 18212.431796110075, + 17651.269915136385, 17079.830153415394, 16505.6822786917, + 15929.723799328207, 15354.196769144764, 14785.119138874717, + 14231.656898923426, 13706.053801532278, 13219.986340678004, + 12779.102060217117, 12377.672764025418, 12000.778949742931, + 11619.238143458684, 11199.408374168548, 10708.507034732585, + 10125.088753024249, 9438.487280169533, 8663.66507044153, + 7833.468598577855, 6989.440800772587, 6185.114129851915, + 5467.057948031465, 4869.685010250576, 4407.268155147125, + 4087.3379622483753, 3890.6041750184277, 3794.645720126511, + 3780.4565349029385, 3821.319371072791, 3907.531358787889, + 4031.3698052074833, 4186.416039225162, 4372.229563673166, + 4578.87910181517, 4794.017616874754, 5001.114749929927, 5180.123005498944, + 5314.621754701242, 5395.853149592756, 5422.416480644409, + 5401.281682831932, 5350.364319969105, 5283.361649532202, + 5214.7582825521795, 5153.271258905421, 5097.862696385149, + 5042.124127262864, 4976.712327559008, 4893.025830832915, + 4788.487385772161, 4665.831342229724, 4535.980633867625, + 4413.029318169092, 4309.883832513475, 4235.385457695717, + 4191.742484358623, 4173.091205322208, 4168.1678866219445, + 4166.750635318921, 4159.814682457306, 4145.920059797169, + 4131.019952355298, 4125.724147289862, 4142.020476025908, 4187.6064754589, + 4263.008480181303, 4360.891501351285, 4465.414900406863, + 4563.252443413108, 4646.671973238763, 4721.546218982136, + 4812.140596414905, 4959.568972687276, 5217.7509918721735, + 5643.209524662115, 6274.476623340654, 7146.235910577662, 8248.24455823191, + 9541.402045383782 + ], + "flow:J113:branch138_seg1": [ + 1.483430309144912, 1.9016675483600232, 2.351534441814228, + 2.809737653081795, 3.2522436889014523, 3.6592310163258177, + 4.017124809231392, 4.319826579650248, 4.566344756998147, + 4.761297698413377, 4.910912988832974, 5.020139736395265, + 5.0936342084438735, 5.132605015953004, 5.13702507922238, + 5.107006805383784, 5.042196978200436, 4.945655308735894, + 4.821594589928707, 4.675632240396301, 4.514789464043845, + 4.344546901042151, 4.169388786653602, 3.9920168338876314, + 3.8135623812486044, 3.63486829127981, 3.457097317821368, + 3.2824943067659875, 3.1143666656041695, 2.9563908584321736, + 2.8111854068328754, 2.6791259950781425, 2.5572731107290863, + 2.438922636496676, 2.31490016776552, 2.1749563631008697, + 2.010403325917616, 1.8159248582844298, 1.5922811865475075, + 1.3454839684605746, 1.0869219280821443, 0.8312572649134288, + 0.5933999992345593, 0.3860430508707623, 0.2177251895435933, + 0.09216894587801117, 0.00710252128488039, -0.042034314595610744, + -0.06243104428121764, -0.061118110924774156, -0.04307832029536923, + -0.012166941741485849, 0.02988618500389345, 0.08186417234206957, + 0.1417969955905545, 0.20681236295081318, 0.2722491263137142, + 0.3325350848286901, 0.3821992137801778, 0.4171564733817539, + 0.4354273730389505, 0.43801257464565196, 0.42831849038885006, + 0.410780201981237, 0.39030871667928285, 0.37026277327050433, + 0.35195893779698145, 0.3346212229138407, 0.3159062665536035, + 0.2931076667205052, 0.26440201946148406, 0.22965339613440922, + 0.19094886899617886, 0.15180119340425197, 0.11638679908881502, + 0.088187152128845, 0.0690222709429738, 0.05839242211439768, + 0.05404289168265638, 0.05267904964056056, 0.0511998915759804, + 0.04805757858385686, 0.04369575673470263, 0.04046907173881463, + 0.04179764712993033, 0.050706816056873084, 0.06868888496535855, + 0.09473024022016466, 0.1255225914606178, 0.1568381853221118, + 0.18511201778806705, 0.20988809231976094, 0.235472698316285, + 0.27145914111321345, 0.332230933320526, 0.4341780236153183, + 0.5927542041325581, 0.8199127450742267, 1.1181941065145393, + 1.483430309144912 + ], + "pressure:J113:branch138_seg1": [ + 9541.402045383782, 10977.750867142242, 12468.02596427147, + 13936.11071281438, 15312.012031257957, 16539.64666863728, + 17586.728911002363, 18451.624898643982, 19140.653610559817, + 19669.571466753616, 20069.82800490692, 20347.681531774873, + 20514.857042267984, 20575.09315690463, 20519.679023835397, + 20356.176547392104, 20081.968598412914, 19709.173212624162, + 19262.419265968423, 18755.168771818433, 18212.431796110075, + 17651.269915136385, 17079.830153415394, 16505.6822786917, + 15929.723799328207, 15354.196769144764, 14785.119138874717, + 14231.656898923426, 13706.053801532278, 13219.986340678004, + 12779.102060217117, 12377.672764025418, 12000.778949742931, + 11619.238143458684, 11199.408374168548, 10708.507034732585, + 10125.088753024249, 9438.487280169533, 8663.66507044153, + 7833.468598577855, 6989.440800772587, 6185.114129851915, + 5467.057948031465, 4869.685010250576, 4407.268155147125, + 4087.3379622483753, 3890.6041750184277, 3794.645720126511, + 3780.4565349029385, 3821.319371072791, 3907.531358787889, + 4031.3698052074833, 4186.416039225162, 4372.229563673166, + 4578.87910181517, 4794.017616874754, 5001.114749929927, 5180.123005498944, + 5314.621754701242, 5395.853149592756, 5422.416480644409, + 5401.281682831932, 5350.364319969105, 5283.361649532202, + 5214.7582825521795, 5153.271258905421, 5097.862696385149, + 5042.124127262864, 4976.712327559008, 4893.025830832915, + 4788.487385772161, 4665.831342229724, 4535.980633867625, + 4413.029318169092, 4309.883832513475, 4235.385457695717, + 4191.742484358623, 4173.091205322208, 4168.1678866219445, + 4166.750635318921, 4159.814682457306, 4145.920059797169, + 4131.019952355298, 4125.724147289862, 4142.020476025908, 4187.6064754589, + 4263.008480181303, 4360.891501351285, 4465.414900406863, + 4563.252443413108, 4646.671973238763, 4721.546218982136, + 4812.140596414905, 4959.568972687276, 5217.7509918721735, + 5643.209524662115, 6274.476623340654, 7146.235910577662, 8248.24455823191, + 9541.402045383782 + ], + "flow:branch138_seg1:J114": [ + 1.4766064410083273, 1.8944050523559073, 2.344116499663436, + 2.8026744308430254, 3.2458225180722104, 3.6536167552108987, + 4.012391767104587, 4.316105687126111, 4.563346792199979, + 4.759017226175378, 4.909286773877049, 5.01901103716946, 5.093089528101671, + 5.132581099664156, 5.137543317917272, 5.108094663622106, + 5.043771696906147, 4.947693539239637, 4.823967947323406, + 4.678217499346735, 4.517530549694315, 4.347349571552868, + 4.172213601295339, 3.994859488298721, 3.8164038580666935, + 3.6376998785687036, 3.4598778331463778, 3.2851649718185434, + 3.116861742374192, 2.958679209952326, 2.8132411015989818, + 2.681018652602555, 2.5591261701986756, 2.440870213573699, + 2.317120006619115, 2.177599978774113, 2.013547494745599, + 1.8195271290776986, 1.5962833375420604, 1.349653049005428, + 1.0910149765692492, 0.8350589754911822, 0.5966854308860756, + 0.3886510455183025, 0.21966722253400134, 0.09345136231415126, + 0.007780474365371506, -0.04178405034347302, -0.06250931986152942, + -0.061461257062384436, -0.043591630776210546, -0.012879313087169837, + 0.02902867978723052, 0.08089637829236378, 0.14072726465254812, + 0.20575491962839312, 0.2712858188706251, 0.331751715600223, + 0.3816591972432015, 0.41691358130249656, 0.43541798189500824, + 0.4381963380920083, 0.4286303934284061, 0.41111613008139763, + 0.3906301540534185, 0.370552203437559, 0.35222461860729193, + 0.33491035558656723, 0.3162674710294609, 0.2935744485282808, + 0.26496672447614594, 0.23028328974486123, 0.19158920189733425, + 0.15237087318477296, 0.11682610863828458, 0.08847210337029923, + 0.0691709108029825, 0.05842860552570299, 0.054045379548039375, + 0.052700418167520066, 0.05125258716010611, 0.04813506553459855, + 0.043756440148834425, 0.04044931268355222, 0.04165055751296051, + 0.05039717578620503, 0.06825522615278241, 0.09422285885393836, + 0.1250093879413933, 0.15639081915484587, 0.18473565581716833, + 0.20950763038997702, 0.2349244698397686, 0.2705121817961607, + 0.3306063489919268, 0.43157925048334483, 0.5890741831276286, + 0.815064556490517, 1.1121579940493724, 1.4766064410083273 + ], + "pressure:branch138_seg1:J114": [ + 9043.098111837591, 10412.030168427149, 11860.344653972128, + 13314.22162792764, 14700.065228456902, 15957.931423786382, + 17049.64290397006, 17964.46506529812, 18701.91895528455, + 19278.278963033397, 19718.40878114245, 20033.15794955947, + 20236.646651854724, 20332.18133814989, 20315.892692713875, + 20191.65011077098, 19957.18015952084, 19623.301079530065, + 19208.48936641719, 18728.22171527107, 18206.16381609528, + 17659.429891762065, 17099.44380402667, 16534.457979124927, + 15966.745029074857, 15398.777890357782, 14835.214014084191, + 14284.019304988844, 13756.399018029704, 13264.110727017594, + 12814.17912618299, 12404.942869736968, 12024.711750256363, + 11648.726196319036, 11246.047105151865, 10784.151969439445, + 10238.218681339711, 9593.870072604415, 8859.269044252589, + 8059.226578545078, 7232.030403193558, 6427.357483129089, + 5691.840075137662, 5063.126610863295, 4562.6058779344585, + 4200.233370790011, 3963.4762638287502, 3834.4870943623005, + 3792.3163766887096, 3812.453479911863, 3882.1298147482685, + 3990.9108917111867, 4133.109526097751, 4306.41537238743, + 4502.832234546072, 4712.153942661343, 4918.75937183762, 5103.978273031816, + 5250.884576176322, 5348.545796873014, 5392.492939093384, + 5387.751784363309, 5348.326271379651, 5287.843043472672, + 5221.501872987394, 5159.120053854725, 5102.507674731009, 5047.52283039522, + 4985.9118537769245, 4909.062205382573, 4812.596966310967, + 4697.437354609009, 4572.0667415695, 4448.863578806045, 4340.909033460048, + 4258.28385019283, 4205.247844071173, 4178.268592511905, 4168.519205136803, + 4165.614545848926, 4160.021125609819, 4148.369074657686, + 4134.056127275194, 4125.8820566249215, 4135.2275937965305, + 4170.782556723072, 4235.588356673316, 4324.578027874503, + 4424.865097863534, 4523.198792346877, 4609.761501291597, + 4686.226513723905, 4770.75990529978, 4898.360930685807, 5118.012355116952, + 5483.62364679124, 6039.480374244969, 6821.977966298584, + 7831.2167794767465, 9043.098111837591 + ], + "flow:J114:branch138_seg2": [ + 1.4766064410083273, 1.8944050523559073, 2.344116499663436, + 2.8026744308430254, 3.2458225180722104, 3.6536167552108987, + 4.012391767104587, 4.316105687126111, 4.563346792199979, + 4.759017226175378, 4.909286773877049, 5.01901103716946, 5.093089528101671, + 5.132581099664156, 5.137543317917272, 5.108094663622106, + 5.043771696906147, 4.947693539239637, 4.823967947323406, + 4.678217499346735, 4.517530549694315, 4.347349571552868, + 4.172213601295339, 3.994859488298721, 3.8164038580666935, + 3.6376998785687036, 3.4598778331463778, 3.2851649718185434, + 3.116861742374192, 2.958679209952326, 2.8132411015989818, + 2.681018652602555, 2.5591261701986756, 2.440870213573699, + 2.317120006619115, 2.177599978774113, 2.013547494745599, + 1.8195271290776986, 1.5962833375420604, 1.349653049005428, + 1.0910149765692492, 0.8350589754911822, 0.5966854308860756, + 0.3886510455183025, 0.21966722253400134, 0.09345136231415126, + 0.007780474365371506, -0.04178405034347302, -0.06250931986152942, + -0.061461257062384436, -0.043591630776210546, -0.012879313087169837, + 0.02902867978723052, 0.08089637829236378, 0.14072726465254812, + 0.20575491962839312, 0.2712858188706251, 0.331751715600223, + 0.3816591972432015, 0.41691358130249656, 0.43541798189500824, + 0.4381963380920083, 0.4286303934284061, 0.41111613008139763, + 0.3906301540534185, 0.370552203437559, 0.35222461860729193, + 0.33491035558656723, 0.3162674710294609, 0.2935744485282808, + 0.26496672447614594, 0.23028328974486123, 0.19158920189733425, + 0.15237087318477296, 0.11682610863828458, 0.08847210337029923, + 0.0691709108029825, 0.05842860552570299, 0.054045379548039375, + 0.052700418167520066, 0.05125258716010611, 0.04813506553459855, + 0.043756440148834425, 0.04044931268355222, 0.04165055751296051, + 0.05039717578620503, 0.06825522615278241, 0.09422285885393836, + 0.1250093879413933, 0.15639081915484587, 0.18473565581716833, + 0.20950763038997702, 0.2349244698397686, 0.2705121817961607, + 0.3306063489919268, 0.43157925048334483, 0.5890741831276286, + 0.815064556490517, 1.1121579940493724, 1.4766064410083273 + ], + "pressure:J114:branch138_seg2": [ + 9043.098111837591, 10412.030168427149, 11860.344653972128, + 13314.22162792764, 14700.065228456902, 15957.931423786382, + 17049.64290397006, 17964.46506529812, 18701.91895528455, + 19278.278963033397, 19718.40878114245, 20033.15794955947, + 20236.646651854724, 20332.18133814989, 20315.892692713875, + 20191.65011077098, 19957.18015952084, 19623.301079530065, + 19208.48936641719, 18728.22171527107, 18206.16381609528, + 17659.429891762065, 17099.44380402667, 16534.457979124927, + 15966.745029074857, 15398.777890357782, 14835.214014084191, + 14284.019304988844, 13756.399018029704, 13264.110727017594, + 12814.17912618299, 12404.942869736968, 12024.711750256363, + 11648.726196319036, 11246.047105151865, 10784.151969439445, + 10238.218681339711, 9593.870072604415, 8859.269044252589, + 8059.226578545078, 7232.030403193558, 6427.357483129089, + 5691.840075137662, 5063.126610863295, 4562.6058779344585, + 4200.233370790011, 3963.4762638287502, 3834.4870943623005, + 3792.3163766887096, 3812.453479911863, 3882.1298147482685, + 3990.9108917111867, 4133.109526097751, 4306.41537238743, + 4502.832234546072, 4712.153942661343, 4918.75937183762, 5103.978273031816, + 5250.884576176322, 5348.545796873014, 5392.492939093384, + 5387.751784363309, 5348.326271379651, 5287.843043472672, + 5221.501872987394, 5159.120053854725, 5102.507674731009, 5047.52283039522, + 4985.9118537769245, 4909.062205382573, 4812.596966310967, + 4697.437354609009, 4572.0667415695, 4448.863578806045, 4340.909033460048, + 4258.28385019283, 4205.247844071173, 4178.268592511905, 4168.519205136803, + 4165.614545848926, 4160.021125609819, 4148.369074657686, + 4134.056127275194, 4125.8820566249215, 4135.2275937965305, + 4170.782556723072, 4235.588356673316, 4324.578027874503, + 4424.865097863534, 4523.198792346877, 4609.761501291597, + 4686.226513723905, 4770.75990529978, 4898.360930685807, 5118.012355116952, + 5483.62364679124, 6039.480374244969, 6821.977966298584, + 7831.2167794767465, 9043.098111837591 + ], + "flow:branch139_seg0:J115": [ + 0.5482654940394789, 0.7136545382539023, 0.89792440637579, + 1.0919940542596236, 1.2857449550453166, 1.4699006781244561, + 1.6371793851121101, 1.7830343504713717, 1.9054193694658372, + 2.004963241435936, 2.083432893576128, 2.143045638497746, + 2.1859543622067097, 2.2132625455111175, 2.2255373915117875, + 2.2228782987088453, 2.2052629565752833, 2.1734653836698103, + 2.1287370760398705, 2.0731645612442486, 2.0093484398393002, + 1.9397509165069784, 1.8665897070060677, 1.7914128824592481, + 1.7151387251480512, 1.6383307751948415, 1.5614730083795598, + 1.485330985272751, 1.4110693436310338, 1.340137456962063, + 1.2738378252475646, 1.2128795774599825, 1.1568025977437735, + 1.1037254785680797, 1.0504950874089458, 0.993121791815692, + 0.9276345503696215, 0.8509871483913769, 0.762050703788838, + 0.6618217354015407, 0.5537255152948215, 0.4429430933934284, + 0.33553127155020085, 0.23735434484905032, 0.15317546967450807, + 0.08585845923316626, 0.03610131887391079, 0.003012402733680593, + -0.015782058464436158, -0.023015897124632773, -0.0212087051480558, + -0.012420557816694882, 0.002131355485438936, 0.02158682586116121, + 0.045154531684721944, 0.07179365254004297, 0.09984186109952282, + 0.1271786386878827, 0.15147390739703834, 0.17066744548947665, + 0.1833570625777784, 0.1892529971938112, 0.18907379999230192, + 0.18433085776739394, 0.17696183419704245, 0.16864776964358372, + 0.16046480390487877, 0.15265537459993947, 0.14468659369793418, + 0.13560766152600442, 0.12450453904869353, 0.11095265267543705, + 0.09529769672613239, 0.07860042000940982, 0.06242362911839576, + 0.048350058733829575, 0.037531516481111825, 0.030327468591975635, + 0.026312912290996297, 0.024400899544502877, 0.023317455139955305, + 0.022098945756136464, 0.02043792392849377, 0.0188265923442499, + 0.018384257445713353, 0.02039778061084564, 0.02583572656459253, + 0.03483675516061949, 0.04661993780071232, 0.059710514925000256, + 0.07250830068740982, 0.08416758866215827, 0.09539028420445125, + 0.10892683735941246, 0.12964935138433625, 0.16384797338345444, + 0.218321525290647, 0.29888662994738646, 0.40874875138939615, + 0.5482654940394789 + ], + "pressure:branch139_seg0:J115": [ + 8211.732494547654, 9427.244250610585, 10753.474715901502, + 12124.297637501106, 13468.924293016675, 14725.214242847958, + 15847.816070061848, 16813.43905215404, 17612.58449906402, + 18254.196607234135, 18755.11274673171, 19128.60086286708, + 19389.41961212877, 19543.554572318248, 19592.037194795845, + 19536.97409357667, 19377.286906852874, 19120.14258358649, 18777.700132488, + 18364.362506536556, 17899.966238906374, 17401.279933042922, + 16882.02790548433, 16351.960261718525, 15815.889878470221, + 15277.185327812698, 14739.631906505743, 14209.427907099716, + 13695.668794980136, 13208.942996677242, 12757.440608972824, + 12343.766540234463, 11961.797767012173, 11594.447228670475, + 11216.941687033534, 10800.175279003239, 10317.876470483869, + 9751.367035589094, 9098.543222452141, 8372.463511186725, + 7601.602702062484, 6826.4990103890395, 6090.325697743371, + 5432.448299755875, 4881.635032053466, 4454.253405993138, + 4149.030245611268, 3955.9160122105827, 3857.0133593679875, + 3831.5092781602953, 3863.7999672282367, 3940.9661718291018, + 4055.6836496513783, 4203.249051207003, 4377.234243100056, + 4569.481349499036, 4767.036017944895, 4953.868676814314, + 5113.671865160218, 5233.497616232533, 5305.4702618360525, + 5330.086952442782, 5315.584060996161, 5273.322148105361, + 5217.304049852532, 5158.463706669182, 5102.181180244639, + 5048.091977766411, 4990.934057440945, 4923.452217482312, + 4840.053292162166, 4739.184512772534, 4625.379514774595, + 4507.701930092485, 4397.702874533368, 4305.971550264123, + 4239.137026629989, 4197.509557417202, 4176.146024737424, + 4166.539507892804, 4159.656273602213, 4150.060570280302, + 4137.592084144722, 4127.535475868612, 4128.87717613852, 4150.371419238285, + 4197.406553617442, 4268.813498453703, 4356.510697800822, + 4449.346380431063, 4536.732988500184, 4615.507422569735, + 4695.201767906608, 4800.383101982245, 4969.949909529312, + 5250.828255233872, 5688.818385930018, 6322.448904757477, + 7165.693861031877, 8211.732494547654 + ], + "flow:J115:branch139_seg1": [ + 0.5482654940394789, 0.7136545382539023, 0.89792440637579, + 1.0919940542596236, 1.2857449550453166, 1.4699006781244561, + 1.6371793851121101, 1.7830343504713717, 1.9054193694658372, + 2.004963241435936, 2.083432893576128, 2.143045638497746, + 2.1859543622067097, 2.2132625455111175, 2.2255373915117875, + 2.2228782987088453, 2.2052629565752833, 2.1734653836698103, + 2.1287370760398705, 2.0731645612442486, 2.0093484398393002, + 1.9397509165069784, 1.8665897070060677, 1.7914128824592481, + 1.7151387251480512, 1.6383307751948415, 1.5614730083795598, + 1.485330985272751, 1.4110693436310338, 1.340137456962063, + 1.2738378252475646, 1.2128795774599825, 1.1568025977437735, + 1.1037254785680797, 1.0504950874089458, 0.993121791815692, + 0.9276345503696215, 0.8509871483913769, 0.762050703788838, + 0.6618217354015407, 0.5537255152948215, 0.4429430933934284, + 0.33553127155020085, 0.23735434484905032, 0.15317546967450807, + 0.08585845923316626, 0.03610131887391079, 0.003012402733680593, + -0.015782058464436158, -0.023015897124632773, -0.0212087051480558, + -0.012420557816694882, 0.002131355485438936, 0.02158682586116121, + 0.045154531684721944, 0.07179365254004297, 0.09984186109952282, + 0.1271786386878827, 0.15147390739703834, 0.17066744548947665, + 0.1833570625777784, 0.1892529971938112, 0.18907379999230192, + 0.18433085776739394, 0.17696183419704245, 0.16864776964358372, + 0.16046480390487877, 0.15265537459993947, 0.14468659369793418, + 0.13560766152600442, 0.12450453904869353, 0.11095265267543705, + 0.09529769672613239, 0.07860042000940982, 0.06242362911839576, + 0.048350058733829575, 0.037531516481111825, 0.030327468591975635, + 0.026312912290996297, 0.024400899544502877, 0.023317455139955305, + 0.022098945756136464, 0.02043792392849377, 0.0188265923442499, + 0.018384257445713353, 0.02039778061084564, 0.02583572656459253, + 0.03483675516061949, 0.04661993780071232, 0.059710514925000256, + 0.07250830068740982, 0.08416758866215827, 0.09539028420445125, + 0.10892683735941246, 0.12964935138433625, 0.16384797338345444, + 0.218321525290647, 0.29888662994738646, 0.40874875138939615, + 0.5482654940394789 + ], + "pressure:J115:branch139_seg1": [ + 8211.732494547654, 9427.244250610585, 10753.474715901502, + 12124.297637501106, 13468.924293016675, 14725.214242847958, + 15847.816070061848, 16813.43905215404, 17612.58449906402, + 18254.196607234135, 18755.11274673171, 19128.60086286708, + 19389.41961212877, 19543.554572318248, 19592.037194795845, + 19536.97409357667, 19377.286906852874, 19120.14258358649, 18777.700132488, + 18364.362506536556, 17899.966238906374, 17401.279933042922, + 16882.02790548433, 16351.960261718525, 15815.889878470221, + 15277.185327812698, 14739.631906505743, 14209.427907099716, + 13695.668794980136, 13208.942996677242, 12757.440608972824, + 12343.766540234463, 11961.797767012173, 11594.447228670475, + 11216.941687033534, 10800.175279003239, 10317.876470483869, + 9751.367035589094, 9098.543222452141, 8372.463511186725, + 7601.602702062484, 6826.4990103890395, 6090.325697743371, + 5432.448299755875, 4881.635032053466, 4454.253405993138, + 4149.030245611268, 3955.9160122105827, 3857.0133593679875, + 3831.5092781602953, 3863.7999672282367, 3940.9661718291018, + 4055.6836496513783, 4203.249051207003, 4377.234243100056, + 4569.481349499036, 4767.036017944895, 4953.868676814314, + 5113.671865160218, 5233.497616232533, 5305.4702618360525, + 5330.086952442782, 5315.584060996161, 5273.322148105361, + 5217.304049852532, 5158.463706669182, 5102.181180244639, + 5048.091977766411, 4990.934057440945, 4923.452217482312, + 4840.053292162166, 4739.184512772534, 4625.379514774595, + 4507.701930092485, 4397.702874533368, 4305.971550264123, + 4239.137026629989, 4197.509557417202, 4176.146024737424, + 4166.539507892804, 4159.656273602213, 4150.060570280302, + 4137.592084144722, 4127.535475868612, 4128.87717613852, 4150.371419238285, + 4197.406553617442, 4268.813498453703, 4356.510697800822, + 4449.346380431063, 4536.732988500184, 4615.507422569735, + 4695.201767906608, 4800.383101982245, 4969.949909529312, + 5250.828255233872, 5688.818385930018, 6322.448904757477, + 7165.693861031877, 8211.732494547654 + ], + "flow:branch139_seg1:J116": [ + 0.5461409804238712, 0.7112620686768311, 0.8953806897908683, + 1.089440907903933, 1.283303213811866, 1.4676685887964858, + 1.6352256679119914, 1.7813924155354672, 1.9040771263447716, + 2.0039052735621414, 2.0826238514988904, 2.1424557489344656, + 2.1855715791559938, 2.2130737124765476, 2.225546192224984, + 2.223080657103246, 2.2056537434629373, 2.1740349855559042, + 2.1294489338258606, 2.0739890269408, 2.010254449602586, + 1.9407040375117355, 1.867571271188989, 1.7924090921896694, + 1.7161419504774622, 1.639336640304487, 1.5624716935788707, + 1.4863079173257725, 1.412005702464143, 1.3410151448266592, + 1.2746435930397184, 1.2136183563456135, 1.157495614435223, + 1.1044109689971802, 1.0512267485128335, 0.9939545488783457, + 0.9286093691867089, 0.8521265829727739, 0.7633474296846394, + 0.6632306415176378, 0.5551824537599732, 0.44436877678181463, + 0.3368434028326632, 0.23848361407000188, 0.15409074531122657, + 0.08653963485886826, 0.03655538678488887, 0.0032791535491267687, + -0.0156744639100717, -0.023028714514275083, -0.0213124178348894, + -0.012604150926338393, 0.0018849840958022977, 0.021285222571736144, + 0.04480819977219708, 0.07142552840283041, 0.09947791783612552, + 0.1268497029061784, 0.15120955731605804, 0.1704879077310659, + 0.18326778753692244, 0.18924794703700448, 0.18913191991011122, + 0.18442626845409832, 0.1770723143822664, 0.1687563240453535, + 0.16056648469000498, 0.15275693672728824, 0.14480077434602637, + 0.1357482101382754, 0.12467708173524264, 0.11115520582314742, + 0.09551796800874425, 0.07881661594299512, 0.06261419913254841, + 0.04849898316985235, 0.037632281454171496, 0.030382783001908994, + 0.026338906997030058, 0.02441425281309811, 0.023331560239346957, + 0.022120424630396575, 0.020461481157422506, 0.018837916606383998, + 0.01836536103088461, 0.02033421996964991, 0.025723825720137344, + 0.03468429072381844, 0.04644699111941395, 0.05953999021685292, + 0.0723542255351323, 0.08402507860747428, 0.09522763156471245, + 0.10868388348228812, 0.1292441242448698, 0.16318239958593317, + 0.21732933385297304, 0.2975114146671812, 0.4069649809896248, + 0.5461409804238712 + ], + "pressure:branch139_seg1:J116": [ + 7862.489058344989, 9013.21570835158, 10287.58024609352, 11622.64719394938, + 12948.88746383978, 14203.382121293705, 15337.729827733203, + 16323.159419785114, 17146.83181996965, 17814.44593204672, + 18339.381437091382, 18736.18437051527, 19019.6411422693, 19196.7829085627, + 19270.696777679663, 19242.45936885679, 19111.623263949023, + 18884.00120536831, 18569.06535069108, 18181.099289675712, + 17738.43375540086, 17257.795049538134, 16753.936288747416, + 16237.174058356404, 15713.34902061158, 15186.169101903522, + 14659.043383959004, 14137.451976852964, 13629.647323595042, + 13145.713503237752, 12694.330005989244, 12279.750093375662, + 11898.027035470257, 11535.155837804565, 11168.772148038692, + 10771.152419044525, 10315.43935419453, 9781.430064000926, + 9162.976374606018, 8468.549977885756, 7722.906645353237, + 6962.810818088636, 6230.032220077014, 5564.369317374118, + 4997.328532371217, 4547.502294242638, 4217.958333291335, + 4001.6103613575447, 3881.712837954232, 3839.0576322884162, + 3856.9260061331265, 3921.5329154808433, 4024.9318172165054, + 4161.565788138081, 4325.750701926953, 4510.154629975077, + 4702.986266001839, 4889.362520101344, 5053.290640186678, + 5181.032892849354, 5263.472331836302, 5299.32578049566, 5294.419101911497, + 5259.327398263557, 5207.502077281347, 5150.253630633335, + 5094.377189771318, 5040.975081694983, 4985.958246035138, + 4922.6253479267325, 4844.9032675354665, 4750.267858562427, + 4641.6759686690875, 4526.85036693128, 4416.701903323584, + 4321.972950226727, 4250.184357267471, 4203.181299783022, + 4177.5267662168535, 4165.490499888783, 4158.276452110765, + 4149.633902142894, 4137.992252321803, 4127.237627209155, + 4125.3802428696035, 4141.192229341814, 4180.957913249637, + 4245.042510858468, 4327.35868428324, 4417.553536271372, 4504.782250154073, + 4583.972882272299, 4661.194117640597, 4756.773099790064, + 4905.4726646921645, 5151.239851957138, 5540.359655866573, + 6112.123708315963, 6886.116114889485, 7862.489058344989 + ], + "flow:J116:branch139_seg2": [ + 0.5461409804238712, 0.7112620686768311, 0.8953806897908683, + 1.089440907903933, 1.283303213811866, 1.4676685887964858, + 1.6352256679119914, 1.7813924155354672, 1.9040771263447716, + 2.0039052735621414, 2.0826238514988904, 2.1424557489344656, + 2.1855715791559938, 2.2130737124765476, 2.225546192224984, + 2.223080657103246, 2.2056537434629373, 2.1740349855559042, + 2.1294489338258606, 2.0739890269408, 2.010254449602586, + 1.9407040375117355, 1.867571271188989, 1.7924090921896694, + 1.7161419504774622, 1.639336640304487, 1.5624716935788707, + 1.4863079173257725, 1.412005702464143, 1.3410151448266592, + 1.2746435930397184, 1.2136183563456135, 1.157495614435223, + 1.1044109689971802, 1.0512267485128335, 0.9939545488783457, + 0.9286093691867089, 0.8521265829727739, 0.7633474296846394, + 0.6632306415176378, 0.5551824537599732, 0.44436877678181463, + 0.3368434028326632, 0.23848361407000188, 0.15409074531122657, + 0.08653963485886826, 0.03655538678488887, 0.0032791535491267687, + -0.0156744639100717, -0.023028714514275083, -0.0213124178348894, + -0.012604150926338393, 0.0018849840958022977, 0.021285222571736144, + 0.04480819977219708, 0.07142552840283041, 0.09947791783612552, + 0.1268497029061784, 0.15120955731605804, 0.1704879077310659, + 0.18326778753692244, 0.18924794703700448, 0.18913191991011122, + 0.18442626845409832, 0.1770723143822664, 0.1687563240453535, + 0.16056648469000498, 0.15275693672728824, 0.14480077434602637, + 0.1357482101382754, 0.12467708173524264, 0.11115520582314742, + 0.09551796800874425, 0.07881661594299512, 0.06261419913254841, + 0.04849898316985235, 0.037632281454171496, 0.030382783001908994, + 0.026338906997030058, 0.02441425281309811, 0.023331560239346957, + 0.022120424630396575, 0.020461481157422506, 0.018837916606383998, + 0.01836536103088461, 0.02033421996964991, 0.025723825720137344, + 0.03468429072381844, 0.04644699111941395, 0.05953999021685292, + 0.0723542255351323, 0.08402507860747428, 0.09522763156471245, + 0.10868388348228812, 0.1292441242448698, 0.16318239958593317, + 0.21732933385297304, 0.2975114146671812, 0.4069649809896248, + 0.5461409804238712 + ], + "pressure:J116:branch139_seg2": [ + 7862.489058344989, 9013.21570835158, 10287.58024609352, 11622.64719394938, + 12948.88746383978, 14203.382121293705, 15337.729827733203, + 16323.159419785114, 17146.83181996965, 17814.44593204672, + 18339.381437091382, 18736.18437051527, 19019.6411422693, 19196.7829085627, + 19270.696777679663, 19242.45936885679, 19111.623263949023, + 18884.00120536831, 18569.06535069108, 18181.099289675712, + 17738.43375540086, 17257.795049538134, 16753.936288747416, + 16237.174058356404, 15713.34902061158, 15186.169101903522, + 14659.043383959004, 14137.451976852964, 13629.647323595042, + 13145.713503237752, 12694.330005989244, 12279.750093375662, + 11898.027035470257, 11535.155837804565, 11168.772148038692, + 10771.152419044525, 10315.43935419453, 9781.430064000926, + 9162.976374606018, 8468.549977885756, 7722.906645353237, + 6962.810818088636, 6230.032220077014, 5564.369317374118, + 4997.328532371217, 4547.502294242638, 4217.958333291335, + 4001.6103613575447, 3881.712837954232, 3839.0576322884162, + 3856.9260061331265, 3921.5329154808433, 4024.9318172165054, + 4161.565788138081, 4325.750701926953, 4510.154629975077, + 4702.986266001839, 4889.362520101344, 5053.290640186678, + 5181.032892849354, 5263.472331836302, 5299.32578049566, 5294.419101911497, + 5259.327398263557, 5207.502077281347, 5150.253630633335, + 5094.377189771318, 5040.975081694983, 4985.958246035138, + 4922.6253479267325, 4844.9032675354665, 4750.267858562427, + 4641.6759686690875, 4526.85036693128, 4416.701903323584, + 4321.972950226727, 4250.184357267471, 4203.181299783022, + 4177.5267662168535, 4165.490499888783, 4158.276452110765, + 4149.633902142894, 4137.992252321803, 4127.237627209155, + 4125.3802428696035, 4141.192229341814, 4180.957913249637, + 4245.042510858468, 4327.35868428324, 4417.553536271372, 4504.782250154073, + 4583.972882272299, 4661.194117640597, 4756.773099790064, + 4905.4726646921645, 5151.239851957138, 5540.359655866573, + 6112.123708315963, 6886.116114889485, 7862.489058344989 + ], + "flow:branch142_seg0:J117": [ + 1.440787718910678, 1.859059368766086, 2.315200435309213, + 2.7858750016251967, 3.2463411102886237, 3.6754351952332724, + 4.057860371069384, 4.385599107360593, 4.656241726886987, + 4.873641189850543, 5.043319549474467, 5.170652880068272, + 5.260514021301669, 5.314426430183637, 5.332787399100994, + 5.315361129521087, 5.261758216233942, 5.174500224826164, + 5.057269711663035, 4.915726811276503, 4.756750209862633, + 4.586193007399194, 4.409042285038119, 4.228411647881176, + 4.045833603759618, 3.862286792253155, 3.6788831651042586, + 3.4977431837696793, 3.3220846894103064, 3.1556824837249313, + 3.0015229854341534, 2.860649325207976, 2.7308135268046403, + 2.606049720665846, 2.4775532114774066, 2.335028312940849, + 2.1691522497066953, 1.973699768990556, 1.74810918681295, + 1.4971604288341887, 1.2314776521036261, 0.965288215238554, + 0.7138056381878308, 0.4905742254727572, 0.3054367694351164, + 0.16313925852234895, 0.06279026537538022, 0.00042972376702374846, + -0.030939357858190977, -0.038311155805163546, -0.027222577208423755, + -0.001907641058010633, 0.035634534533822336, 0.0839778384039641, + 0.1413558780719526, 0.20510742987279457, 0.27075836623356153, + 0.332810683598982, 0.3855658741964306, 0.42445339856327413, + 0.44685197042136265, 0.45316766156498217, 0.4462076031701755, + 0.4302836501783371, 0.4103592166245055, 0.39012776838673935, + 0.3714050023028075, 0.3538393622023989, 0.3353272934683962, + 0.3131489500121838, 0.28518942532397507, 0.25093717859244474, + 0.21203357375815057, 0.1717518291592954, 0.1342856176008911, + 0.10339091392893125, 0.08132823033234257, 0.06810768244313585, + 0.06186342774424711, 0.059386067853557094, 0.05745883553730476, + 0.05415086978311664, 0.04945796063652545, 0.045390417664468684, + 0.04525651366897069, 0.05227226780824894, 0.06837524824619891, + 0.0930504329732512, 0.12345737807978366, 0.1554251023887057, + 0.1850748994940758, 0.21121104365263782, 0.23713380245107404, + 0.27148171131156096, 0.3279528774093974, 0.4228905726039089, + 0.5726632050424414, 0.7901928482372599, 1.080313421505619, + 1.440787718910678 + ], + "pressure:branch142_seg0:J117": [ + 8962.189993641852, 10305.761185969359, 11726.728250190028, + 13153.10271880617, 14513.3052578608, 15749.103750598979, + 16823.822377996457, 17727.404626490166, 18459.122394349324, + 19035.4371628572, 19480.16557613437, 19802.90093720256, + 20017.290960329807, 20125.67906121719, 20123.625893417924, + 20014.975539437055, 19796.78926755932, 19479.872513218932, + 19082.73102491671, 18620.031534004014, 18115.26118562057, + 17585.132887595904, 17040.619065855662, 16489.82434350059, + 15934.882489210555, 15378.275621522127, 14824.766213497027, + 14282.360812814739, 13762.249855286791, 13276.128695616617, + 12830.891210893966, 12424.898963108753, 12046.570121679584, + 11671.545101382302, 11269.55304881506, 10808.85668127574, + 10265.538403952374, 9625.760100320467, 8898.195600346453, + 8107.472896454064, 7291.162424465676, 6498.057072314316, 5773.35416151764, + 5153.544141239609, 4658.761582651903, 4298.591403565992, 4060.31839299677, + 3926.284841912254, 3876.363497577196, 3886.7646669813403, + 3945.552792954251, 4042.998117229319, 4173.814577689322, + 4335.9400819506145, 4521.664150618457, 4720.949301962191, + 4918.35910855099, 5095.561311362129, 5235.977155100685, 5328.983427982405, + 5370.180016039664, 5364.6525071362485, 5326.181647049434, + 5267.754728193477, 5204.213982028228, 5144.863252810375, + 5091.108974483869, 5038.675165371794, 4979.342937127559, + 4904.641987502165, 4810.4226345767465, 4697.706223532797, + 4574.9589799019495, 4454.436866635746, 4348.924030286403, + 4268.205971251933, 4216.303440478894, 4189.6043493907355, + 4179.381202096262, 4175.445251969257, 4168.605093537346, + 4155.749538153988, 4140.414511168011, 4131.369303565559, + 4139.820322747254, 4174.193773684973, 4237.351474792792, + 4324.133554904368, 4421.731229295871, 4517.290900613539, + 4601.252954714984, 4675.540114284423, 4758.271924837767, + 4884.019159539002, 5100.896976198118, 5461.769050912841, + 6009.500139810359, 6779.583022481643, 7771.945030823429, 8962.189993641852 + ], + "flow:J117:branch142_seg1": [ + 1.440787718910678, 1.859059368766086, 2.315200435309213, + 2.7858750016251967, 3.2463411102886237, 3.6754351952332724, + 4.057860371069384, 4.385599107360593, 4.656241726886987, + 4.873641189850543, 5.043319549474467, 5.170652880068272, + 5.260514021301669, 5.314426430183637, 5.332787399100994, + 5.315361129521087, 5.261758216233942, 5.174500224826164, + 5.057269711663035, 4.915726811276503, 4.756750209862633, + 4.586193007399194, 4.409042285038119, 4.228411647881176, + 4.045833603759618, 3.862286792253155, 3.6788831651042586, + 3.4977431837696793, 3.3220846894103064, 3.1556824837249313, + 3.0015229854341534, 2.860649325207976, 2.7308135268046403, + 2.606049720665846, 2.4775532114774066, 2.335028312940849, + 2.1691522497066953, 1.973699768990556, 1.74810918681295, + 1.4971604288341887, 1.2314776521036261, 0.965288215238554, + 0.7138056381878308, 0.4905742254727572, 0.3054367694351164, + 0.16313925852234895, 0.06279026537538022, 0.00042972376702374846, + -0.030939357858190977, -0.038311155805163546, -0.027222577208423755, + -0.001907641058010633, 0.035634534533822336, 0.0839778384039641, + 0.1413558780719526, 0.20510742987279457, 0.27075836623356153, + 0.332810683598982, 0.3855658741964306, 0.42445339856327413, + 0.44685197042136265, 0.45316766156498217, 0.4462076031701755, + 0.4302836501783371, 0.4103592166245055, 0.39012776838673935, + 0.3714050023028075, 0.3538393622023989, 0.3353272934683962, + 0.3131489500121838, 0.28518942532397507, 0.25093717859244474, + 0.21203357375815057, 0.1717518291592954, 0.1342856176008911, + 0.10339091392893125, 0.08132823033234257, 0.06810768244313585, + 0.06186342774424711, 0.059386067853557094, 0.05745883553730476, + 0.05415086978311664, 0.04945796063652545, 0.045390417664468684, + 0.04525651366897069, 0.05227226780824894, 0.06837524824619891, + 0.0930504329732512, 0.12345737807978366, 0.1554251023887057, + 0.1850748994940758, 0.21121104365263782, 0.23713380245107404, + 0.27148171131156096, 0.3279528774093974, 0.4228905726039089, + 0.5726632050424414, 0.7901928482372599, 1.080313421505619, + 1.440787718910678 + ], + "pressure:J117:branch142_seg1": [ + 8962.189993641852, 10305.761185969359, 11726.728250190028, + 13153.10271880617, 14513.3052578608, 15749.103750598979, + 16823.822377996457, 17727.404626490166, 18459.122394349324, + 19035.4371628572, 19480.16557613437, 19802.90093720256, + 20017.290960329807, 20125.67906121719, 20123.625893417924, + 20014.975539437055, 19796.78926755932, 19479.872513218932, + 19082.73102491671, 18620.031534004014, 18115.26118562057, + 17585.132887595904, 17040.619065855662, 16489.82434350059, + 15934.882489210555, 15378.275621522127, 14824.766213497027, + 14282.360812814739, 13762.249855286791, 13276.128695616617, + 12830.891210893966, 12424.898963108753, 12046.570121679584, + 11671.545101382302, 11269.55304881506, 10808.85668127574, + 10265.538403952374, 9625.760100320467, 8898.195600346453, + 8107.472896454064, 7291.162424465676, 6498.057072314316, 5773.35416151764, + 5153.544141239609, 4658.761582651903, 4298.591403565992, 4060.31839299677, + 3926.284841912254, 3876.363497577196, 3886.7646669813403, + 3945.552792954251, 4042.998117229319, 4173.814577689322, + 4335.9400819506145, 4521.664150618457, 4720.949301962191, + 4918.35910855099, 5095.561311362129, 5235.977155100685, 5328.983427982405, + 5370.180016039664, 5364.6525071362485, 5326.181647049434, + 5267.754728193477, 5204.213982028228, 5144.863252810375, + 5091.108974483869, 5038.675165371794, 4979.342937127559, + 4904.641987502165, 4810.4226345767465, 4697.706223532797, + 4574.9589799019495, 4454.436866635746, 4348.924030286403, + 4268.205971251933, 4216.303440478894, 4189.6043493907355, + 4179.381202096262, 4175.445251969257, 4168.605093537346, + 4155.749538153988, 4140.414511168011, 4131.369303565559, + 4139.820322747254, 4174.193773684973, 4237.351474792792, + 4324.133554904368, 4421.731229295871, 4517.290900613539, + 4601.252954714984, 4675.540114284423, 4758.271924837767, + 4884.019159539002, 5100.896976198118, 5461.769050912841, + 6009.500139810359, 6779.583022481643, 7771.945030823429, 8962.189993641852 + ], + "flow:branch142_seg1:J118": [ + 1.4345066227339087, 1.8522110768957498, 2.3081144285674835, + 2.778989991062975, 3.239951906842349, 3.669742754752077, 4.0529908804521, + 4.381637583710174, 4.653036146788843, 4.871150399227688, + 5.041463888400879, 5.169326739888791, 5.25973506945444, 5.314164792001121, + 5.33305867379463, 5.316172269502732, 5.263078034179406, 5.176287163974968, + 5.059402239160932, 4.918112006321433, 4.759313271633237, + 4.588836835000977, 4.4117334400610675, 4.231128127369456, + 4.048561077568198, 3.8650173623679143, 3.6815808829671433, + 3.5003586866452996, 3.324558822453652, 3.1579734771034333, + 3.0036003790427523, 2.862559029455445, 2.7326469177116794, + 2.6079289134201056, 2.479645771803278, 2.337482230128977, + 2.1720566389411227, 1.9770678154676902, 1.751879127185062, + 1.5011512596086511, 1.2354713487902738, 0.9690641336208354, + 0.717137919506232, 0.4932997770885656, 0.3075376077851052, + 0.16459715508695666, 0.06365306589382237, 0.0008634975775538416, + -0.030867959058490987, -0.03850376795775696, -0.02760434447779142, + -0.0024896485205740683, 0.034908671066514525, 0.08312146045789763, + 0.1403891894526836, 0.20411909950751933, 0.2698244343624057, + 0.332015447663569, 0.3849835347622775, 0.424130204008487, + 0.44676851801756307, 0.45328574357340384, 0.446463676555895, + 0.4305910705007689, 0.41066711357234664, 0.3904067116139271, + 0.3716589551523289, 0.35410603919891076, 0.3356516859512189, + 0.3135678827647142, 0.28570333923470026, 0.25152517667483754, + 0.21264753276845225, 0.17231780534926636, 0.1347458944127121, + 0.10371439960728095, 0.0815180993186137, 0.06818211261718313, + 0.06188973360102757, 0.05941112879132639, 0.05750614706466993, + 0.05422545514845138, 0.0495272256675395, 0.04540103931273639, + 0.0451569632479703, 0.05202871649740641, 0.0679998018083144, + 0.09258572255775861, 0.12296811853361159, 0.15498022419258337, + 0.18469500993158705, 0.2108473344373569, 0.236654455932971, + 0.27067948633285094, 0.3265730216763076, 0.4206459207243088, + 0.5694302941782478, 0.785856411620819, 1.0748278455844353, + 1.4345066227339087 + ], + "pressure:branch142_seg1:J118": [ + 8258.503561820216, 9493.882194311287, 10840.031861458083, + 12228.393733698025, 13585.775386207612, 14849.797505193741, + 15975.61629392274, 16940.168424464595, 17735.998500721897, + 18375.012672145465, 18873.728881546645, 19247.598327866745, + 19511.282195211435, 19669.027167341275, 19721.85774613415, + 19669.276594816376, 19509.941995400506, 19251.414072429427, + 18904.68392584363, 18486.40055537486, 18017.02652877623, + 17513.707482964925, 16991.126088920322, 16458.43053725758, + 15920.03881780613, 15378.831093594385, 14838.074754133771, + 14304.061265563847, 13786.321041406423, 13296.045738933706, + 12841.967576577697, 12427.143724380969, 12044.84163006107, + 11677.251248566532, 11298.365033834969, 10877.744582760604, + 10387.946884184948, 9810.647687198678, 9144.485664843596, + 8403.71283644777, 7619.812372248826, 6835.003195425445, 6094.083097279649, + 5436.941965337829, 4892.5373499480065, 4474.627608129827, + 4180.282254934871, 3997.8826257092473, 3906.5702137557546, + 3885.685855635846, 3919.0740476000324, 3994.1596157365766, + 4105.27628105452, 4248.20794814431, 4417.65094964869, 4605.85587220458, + 4799.503724511334, 4982.325680303274, 5137.524996077976, + 5251.7040453397285, 5317.121394513475, 5335.10921818369, + 5314.129914126303, 5266.827700290741, 5207.928353171865, + 5148.2903839296805, 5093.161854135492, 5041.444944664194, + 4986.86802526074, 4921.377545963717, 4838.745261346996, + 4737.5280586421695, 4622.658858175502, 4503.829702164662, + 4393.454952920126, 4302.6062506059925, 4237.907380500054, + 4199.252896556476, 4181.1302867302675, 4173.996507134232, + 4168.328199209505, 4158.513744786283, 4144.60758160816, 4132.609041924621, + 4132.335082427076, 4153.253603805692, 4201.060383489267, + 4274.147582356395, 4363.997755823017, 4458.314454558074, + 4545.632048956121, 4622.499459892781, 4698.80890087509, 4800.227078851063, + 4967.33025361133, 5248.377389190787, 5691.763911680967, 6335.435206317574, + 7193.124135790833, 8258.503561820216 + ], + "flow:J118:branch142_seg2": [ + 1.4345066227339087, 1.8522110768957498, 2.3081144285674835, + 2.778989991062975, 3.239951906842349, 3.669742754752077, 4.0529908804521, + 4.381637583710174, 4.653036146788843, 4.871150399227688, + 5.041463888400879, 5.169326739888791, 5.25973506945444, 5.314164792001121, + 5.33305867379463, 5.316172269502732, 5.263078034179406, 5.176287163974968, + 5.059402239160932, 4.918112006321433, 4.759313271633237, + 4.588836835000977, 4.4117334400610675, 4.231128127369456, + 4.048561077568198, 3.8650173623679143, 3.6815808829671433, + 3.5003586866452996, 3.324558822453652, 3.1579734771034333, + 3.0036003790427523, 2.862559029455445, 2.7326469177116794, + 2.6079289134201056, 2.479645771803278, 2.337482230128977, + 2.1720566389411227, 1.9770678154676902, 1.751879127185062, + 1.5011512596086511, 1.2354713487902738, 0.9690641336208354, + 0.717137919506232, 0.4932997770885656, 0.3075376077851052, + 0.16459715508695666, 0.06365306589382237, 0.0008634975775538416, + -0.030867959058490987, -0.03850376795775696, -0.02760434447779142, + -0.0024896485205740683, 0.034908671066514525, 0.08312146045789763, + 0.1403891894526836, 0.20411909950751933, 0.2698244343624057, + 0.332015447663569, 0.3849835347622775, 0.424130204008487, + 0.44676851801756307, 0.45328574357340384, 0.446463676555895, + 0.4305910705007689, 0.41066711357234664, 0.3904067116139271, + 0.3716589551523289, 0.35410603919891076, 0.3356516859512189, + 0.3135678827647142, 0.28570333923470026, 0.25152517667483754, + 0.21264753276845225, 0.17231780534926636, 0.1347458944127121, + 0.10371439960728095, 0.0815180993186137, 0.06818211261718313, + 0.06188973360102757, 0.05941112879132639, 0.05750614706466993, + 0.05422545514845138, 0.0495272256675395, 0.04540103931273639, + 0.0451569632479703, 0.05202871649740641, 0.0679998018083144, + 0.09258572255775861, 0.12296811853361159, 0.15498022419258337, + 0.18469500993158705, 0.2108473344373569, 0.236654455932971, + 0.27067948633285094, 0.3265730216763076, 0.4206459207243088, + 0.5694302941782478, 0.785856411620819, 1.0748278455844353, + 1.4345066227339087 + ], + "pressure:J118:branch142_seg2": [ + 8258.503561820216, 9493.882194311287, 10840.031861458083, + 12228.393733698025, 13585.775386207612, 14849.797505193741, + 15975.61629392274, 16940.168424464595, 17735.998500721897, + 18375.012672145465, 18873.728881546645, 19247.598327866745, + 19511.282195211435, 19669.027167341275, 19721.85774613415, + 19669.276594816376, 19509.941995400506, 19251.414072429427, + 18904.68392584363, 18486.40055537486, 18017.02652877623, + 17513.707482964925, 16991.126088920322, 16458.43053725758, + 15920.03881780613, 15378.831093594385, 14838.074754133771, + 14304.061265563847, 13786.321041406423, 13296.045738933706, + 12841.967576577697, 12427.143724380969, 12044.84163006107, + 11677.251248566532, 11298.365033834969, 10877.744582760604, + 10387.946884184948, 9810.647687198678, 9144.485664843596, + 8403.71283644777, 7619.812372248826, 6835.003195425445, 6094.083097279649, + 5436.941965337829, 4892.5373499480065, 4474.627608129827, + 4180.282254934871, 3997.8826257092473, 3906.5702137557546, + 3885.685855635846, 3919.0740476000324, 3994.1596157365766, + 4105.27628105452, 4248.20794814431, 4417.65094964869, 4605.85587220458, + 4799.503724511334, 4982.325680303274, 5137.524996077976, + 5251.7040453397285, 5317.121394513475, 5335.10921818369, + 5314.129914126303, 5266.827700290741, 5207.928353171865, + 5148.2903839296805, 5093.161854135492, 5041.444944664194, + 4986.86802526074, 4921.377545963717, 4838.745261346996, + 4737.5280586421695, 4622.658858175502, 4503.829702164662, + 4393.454952920126, 4302.6062506059925, 4237.907380500054, + 4199.252896556476, 4181.1302867302675, 4173.996507134232, + 4168.328199209505, 4158.513744786283, 4144.60758160816, 4132.609041924621, + 4132.335082427076, 4153.253603805692, 4201.060383489267, + 4274.147582356395, 4363.997755823017, 4458.314454558074, + 4545.632048956121, 4622.499459892781, 4698.80890087509, 4800.227078851063, + 4967.33025361133, 5248.377389190787, 5691.763911680967, 6335.435206317574, + 7193.124135790833, 8258.503561820216 + ], + "flow:branch146_seg0:J119": [ + 0.8269986771372467, 1.0554022516368762, 1.298427745081228, + 1.543355112994367, 1.7773628829182033, 1.990325799610116, + 2.175761905310737, 2.3313147413464197, 2.4571348633154346, + 2.5562948787041746, 2.632364069597185, 2.6878788612966162, + 2.7251491802610954, 2.7444729244796466, 2.745542136137818, + 2.728324998166216, 2.692558713291421, 2.6400493393159796, + 2.5732101181197273, 2.4951225672591195, 2.4096507325518006, + 2.3195951398506214, 2.2272025208654047, 2.133723467741656, + 2.0395776088367596, 1.9451463204592447, 1.851067699226094, + 1.7586443981459339, 1.6697648260688793, 1.5864708814672317, + 1.510102051178919, 1.4406868762378844, 1.3763622703475553, + 1.3132031533150417, 1.2460556032031993, 1.1693436523891396, + 1.0785532430017732, 0.9711936945219234, 0.8482250751834425, + 0.713443810420015, 0.5734482640555895, 0.4364388556328706, + 0.31042950232593053, 0.20200404707004746, 0.1152815944230433, + 0.051758016598504486, 0.00958763792848632, -0.013982899314954717, + -0.023044949220752703, -0.021370774819435973, -0.011396809104940214, + 0.005011255175021875, 0.027198942242398858, 0.05465314260488989, + 0.08631174712844264, 0.12057178385527277, 0.1547858943170756, + 0.18585747553417964, 0.21084483924588457, 0.22766861593440832, + 0.23546990980571395, 0.23505743690301312, 0.22850779010817202, + 0.21831688139241617, 0.20714210502245167, 0.1966428846358811, + 0.18729154410240723, 0.17842594534261938, 0.1685952111340096, + 0.156267572538459, 0.14052482914178782, 0.1214483176373907, + 0.10038154463492549, 0.07937603569749377, 0.06076086484431228, + 0.046357751667493084, 0.03699328417113801, 0.03216362431782264, + 0.030466255410386656, 0.03000823537457859, 0.029124426126897435, + 0.027122966430556332, 0.02445041300274895, 0.02258145306585329, + 0.02348609868402958, 0.02878750314090425, 0.03915044274550015, + 0.05379808881246849, 0.07070887534199448, 0.0874883400707003, + 0.10225660238327496, 0.11503213264039126, 0.12856709183158394, + 0.14852571885523672, 0.1830897751628191, 0.24129103802217508, + 0.33131112067577884, 0.4592232461092661, 0.6254534445799859, + 0.8269986771372467 + ], + "pressure:branch146_seg0:J119": [ + 9663.97973409224, 11105.081401994697, 12588.303136762592, + 14037.485652389969, 15385.225708183469, 16578.931578741798, + 17590.555405656916, 18421.7181169793, 19082.920629489465, + 19590.444829139906, 19975.989992823248, 20244.63664327687, + 20406.117682656415, 20462.979319244438, 20404.76568823143, + 20239.069050959093, 19963.1228325879, 19590.18452287724, + 19146.006831908286, 18643.58917297433, 18108.42454044602, + 17556.735886391474, 16995.509586918004, 16431.459152289637, + 15864.72576352137, 15297.456603052966, 14736.101550514195, + 14190.384319863279, 13673.045508354093, 13195.727602641113, + 12763.527439742318, 12369.325236838022, 11996.744594123225, + 11615.325588937912, 11190.709680597773, 10690.561006530037, + 10095.039286951562, 9396.047122716187, 8611.42875680707, + 7777.0165517517025, 6935.827706924146, 6141.994481858815, + 5440.9971608858705, 4864.987515695671, 4424.636344195016, + 4125.564744236995, 3945.160874641197, 3859.8844992966515, + 3851.001095437941, 3892.2751088809177, 3975.7672557174633, + 4095.282433835163, 4245.082405898851, 4425.532535225781, + 4626.551708318407, 4835.016919931338, 5034.061684297908, + 5203.404159271272, 5327.085301676313, 5397.142247841192, + 5413.7157271671895, 5384.841990698675, 5329.322097142214, + 5260.968439662072, 5193.786103938731, 5135.368922989761, + 5083.301172510054, 5030.033459681661, 4965.617298365718, + 4881.483424937724, 4775.83632634369, 4652.256756351176, + 4522.7676501029555, 4402.043099028407, 4302.8883233283195, + 4233.451500694181, 4194.89893574227, 4180.287049049402, 4177.42607406178, + 4176.068066818193, 4167.683375130922, 4151.783242787447, + 4135.453125240812, 4130.156179485991, 4148.079799384796, + 4196.517210405097, 4274.814141983527, 4374.502887379242, + 4478.791488408532, 4574.274361129807, 4654.049010982496, 4725.85657950961, + 4816.341049435374, 4968.784331235828, 5238.590495444438, + 5682.361862370358, 6335.914258575241, 7232.437600190886, + 8356.432995182226, 9663.97973409224 + ], + "flow:J119:branch146_seg1": [ + 0.8269986771372467, 1.0554022516368762, 1.298427745081228, + 1.543355112994367, 1.7773628829182033, 1.990325799610116, + 2.175761905310737, 2.3313147413464197, 2.4571348633154346, + 2.5562948787041746, 2.632364069597185, 2.6878788612966162, + 2.7251491802610954, 2.7444729244796466, 2.745542136137818, + 2.728324998166216, 2.692558713291421, 2.6400493393159796, + 2.5732101181197273, 2.4951225672591195, 2.4096507325518006, + 2.3195951398506214, 2.2272025208654047, 2.133723467741656, + 2.0395776088367596, 1.9451463204592447, 1.851067699226094, + 1.7586443981459339, 1.6697648260688793, 1.5864708814672317, + 1.510102051178919, 1.4406868762378844, 1.3763622703475553, + 1.3132031533150417, 1.2460556032031993, 1.1693436523891396, + 1.0785532430017732, 0.9711936945219234, 0.8482250751834425, + 0.713443810420015, 0.5734482640555895, 0.4364388556328706, + 0.31042950232593053, 0.20200404707004746, 0.1152815944230433, + 0.051758016598504486, 0.00958763792848632, -0.013982899314954717, + -0.023044949220752703, -0.021370774819435973, -0.011396809104940214, + 0.005011255175021875, 0.027198942242398858, 0.05465314260488989, + 0.08631174712844264, 0.12057178385527277, 0.1547858943170756, + 0.18585747553417964, 0.21084483924588457, 0.22766861593440832, + 0.23546990980571395, 0.23505743690301312, 0.22850779010817202, + 0.21831688139241617, 0.20714210502245167, 0.1966428846358811, + 0.18729154410240723, 0.17842594534261938, 0.1685952111340096, + 0.156267572538459, 0.14052482914178782, 0.1214483176373907, + 0.10038154463492549, 0.07937603569749377, 0.06076086484431228, + 0.046357751667493084, 0.03699328417113801, 0.03216362431782264, + 0.030466255410386656, 0.03000823537457859, 0.029124426126897435, + 0.027122966430556332, 0.02445041300274895, 0.02258145306585329, + 0.02348609868402958, 0.02878750314090425, 0.03915044274550015, + 0.05379808881246849, 0.07070887534199448, 0.0874883400707003, + 0.10225660238327496, 0.11503213264039126, 0.12856709183158394, + 0.14852571885523672, 0.1830897751628191, 0.24129103802217508, + 0.33131112067577884, 0.4592232461092661, 0.6254534445799859, + 0.8269986771372467 + ], + "pressure:J119:branch146_seg1": [ + 9663.97973409224, 11105.081401994697, 12588.303136762592, + 14037.485652389969, 15385.225708183469, 16578.931578741798, + 17590.555405656916, 18421.7181169793, 19082.920629489465, + 19590.444829139906, 19975.989992823248, 20244.63664327687, + 20406.117682656415, 20462.979319244438, 20404.76568823143, + 20239.069050959093, 19963.1228325879, 19590.18452287724, + 19146.006831908286, 18643.58917297433, 18108.42454044602, + 17556.735886391474, 16995.509586918004, 16431.459152289637, + 15864.72576352137, 15297.456603052966, 14736.101550514195, + 14190.384319863279, 13673.045508354093, 13195.727602641113, + 12763.527439742318, 12369.325236838022, 11996.744594123225, + 11615.325588937912, 11190.709680597773, 10690.561006530037, + 10095.039286951562, 9396.047122716187, 8611.42875680707, + 7777.0165517517025, 6935.827706924146, 6141.994481858815, + 5440.9971608858705, 4864.987515695671, 4424.636344195016, + 4125.564744236995, 3945.160874641197, 3859.8844992966515, + 3851.001095437941, 3892.2751088809177, 3975.7672557174633, + 4095.282433835163, 4245.082405898851, 4425.532535225781, + 4626.551708318407, 4835.016919931338, 5034.061684297908, + 5203.404159271272, 5327.085301676313, 5397.142247841192, + 5413.7157271671895, 5384.841990698675, 5329.322097142214, + 5260.968439662072, 5193.786103938731, 5135.368922989761, + 5083.301172510054, 5030.033459681661, 4965.617298365718, + 4881.483424937724, 4775.83632634369, 4652.256756351176, + 4522.7676501029555, 4402.043099028407, 4302.8883233283195, + 4233.451500694181, 4194.89893574227, 4180.287049049402, 4177.42607406178, + 4176.068066818193, 4167.683375130922, 4151.783242787447, + 4135.453125240812, 4130.156179485991, 4148.079799384796, + 4196.517210405097, 4274.814141983527, 4374.502887379242, + 4478.791488408532, 4574.274361129807, 4654.049010982496, 4725.85657950961, + 4816.341049435374, 4968.784331235828, 5238.590495444438, + 5682.361862370358, 6335.914258575241, 7232.437600190886, + 8356.432995182226, 9663.97973409224 + ], + "flow:branch146_seg1:J120": [ + 0.8236065998361441, 1.0518259917259982, 1.2948070515294834, + 1.539945382587997, 1.7742925627882191, 1.9876681956085014, + 2.1735359469433244, 2.3295885652222226, 2.4557377296591762, + 2.5552266883107926, 2.631612612669293, 2.6873468887848695, + 2.7249038608231015, 2.7444739990746596, 2.745803400802012, + 2.7288723611414003, 2.6933340021250185, 2.6410456115750147, + 2.5743621289103604, 2.4963750136190157, 2.410971674459578, + 2.3209442075560953, 2.2285615824176435, 2.1350932756255996, + 2.0409506117184475, 1.9465164675458981, 1.8524138077750882, + 1.7599355078033883, 1.670968280197662, 1.5875710535522944, + 1.511090557423565, 1.4416000310755395, 1.3772678782439973, + 1.3141676931889101, 1.2471694144528778, 1.170674914541, 1.080142925243314, + 0.9729982513391987, 0.850221138082441, 0.7155025067868295, + 0.5754501941850944, 0.4382780222902958, 0.3120039433703543, + 0.20323610169092113, 0.1161904326000682, 0.052340997515196934, + 0.009890813197197201, -0.013879328592057316, -0.02309046543542537, + -0.02153649945626499, -0.011644158950249903, 0.004670181752500525, + 0.026786855729257243, 0.0541868963162246, 0.08579546232132575, + 0.12006661772550438, 0.1543320031934317, 0.18549809562913297, + 0.2106068126956211, 0.22758041541857535, 0.23548976776431887, + 0.2351634579691372, 0.22867181835172984, 0.21848240801651353, + 0.20729437655472713, 0.19677739204031008, 0.18741529624572467, + 0.1785648398555193, 0.1687733676941658, 0.15650097698111037, + 0.14080649967936365, 0.12176155638743494, 0.10069485747696115, + 0.07964979290040373, 0.06096578811401838, 0.04648548784934925, + 0.037053669369526435, 0.03217317940211172, 0.030464621204316797, + 0.030021094337627747, 0.02915533761340886, 0.027166112299639056, + 0.024482387370208372, 0.02256825744549482, 0.02340678663696534, + 0.028623977233275734, 0.03892866094736895, 0.053545284038658936, + 0.07045815116097603, 0.08727514594070893, 0.1020802742958327, + 0.11484864486104429, 0.12828977941062916, 0.1480350760021316, + 0.18224887413410767, 0.23995232032151573, 0.32943901344862075, + 0.4567572882710788, 0.6224285771112473, 0.8236065998361441 + ], + "pressure:branch146_seg1:J120": [ + 8885.746225599565, 10210.468887678278, 11609.027160091891, + 13009.116344028464, 14338.791531057701, 15541.689061449366, + 16582.926675735944, 17452.97332298426, 18153.68726619718, + 18703.132312039936, 19124.073398424764, 19428.279373529484, + 19628.93530288936, 19727.34475893171, 19720.090798733385, + 19608.82811010799, 19391.320489225618, 19078.728439454706, + 18687.118465356863, 18232.915316971805, 17738.85561325809, + 17220.8118761843, 16690.25862413323, 16154.28143475025, + 15614.697154712074, 15073.66089801637, 14535.351339752371, + 14007.613329470087, 13501.58149168288, 13028.909150913996, + 12596.652974116487, 12203.547768156397, 11837.912348879647, + 11475.671485421737, 11086.625857454983, 10638.946011488453, + 10108.262510222057, 9481.368332092354, 8766.626394925477, + 7988.181605207739, 7184.6954242357715, 6404.380063103069, + 5692.661119242722, 5085.776704933904, 4604.701209697359, + 4257.163754635058, 4030.2587230785807, 3906.7240599576035, + 3864.308633197676, 3880.4023033521844, 3942.596184693434, + 4041.080854427921, 4171.837835228563, 4332.691846677037, + 4516.629206383191, 4713.945883559523, 4909.117192407875, + 5084.006449761933, 5222.0290663733695, 5312.305507083121, + 5350.737000006474, 5342.803577912235, 5301.831957294564, + 5241.7254775945175, 5177.50797023709, 5118.2172057189855, + 5065.425011834721, 5014.615420703448, 4957.170944936846, + 4884.402625008539, 4791.768873371962, 4680.391331076619, + 4558.798766986891, 4439.26622279064, 4334.941495400101, 4255.755208931079, + 4205.680017346243, 4180.973915820298, 4172.839803108505, + 4170.601986218147, 4164.921834660861, 4152.612388570127, + 4137.150480301746, 4127.537882807603, 4135.235244024029, + 4169.008429010651, 4231.851364407258, 4318.4378433632755, + 4416.135868140626, 4511.434857357278, 4594.360423284931, + 4666.530442594547, 4745.8267085492125, 4866.6999022408545, + 5077.44110167312, 5430.36038367134, 5969.920217748131, 6730.014025631465, + 7709.470892311856, 8885.746225599565 + ], + "flow:J120:branch146_seg2": [ + 0.8236065998361441, 1.0518259917259982, 1.2948070515294834, + 1.539945382587997, 1.7742925627882191, 1.9876681956085014, + 2.1735359469433244, 2.3295885652222226, 2.4557377296591762, + 2.5552266883107926, 2.631612612669293, 2.6873468887848695, + 2.7249038608231015, 2.7444739990746596, 2.745803400802012, + 2.7288723611414003, 2.6933340021250185, 2.6410456115750147, + 2.5743621289103604, 2.4963750136190157, 2.410971674459578, + 2.3209442075560953, 2.2285615824176435, 2.1350932756255996, + 2.0409506117184475, 1.9465164675458981, 1.8524138077750882, + 1.7599355078033883, 1.670968280197662, 1.5875710535522944, + 1.511090557423565, 1.4416000310755395, 1.3772678782439973, + 1.3141676931889101, 1.2471694144528778, 1.170674914541, 1.080142925243314, + 0.9729982513391987, 0.850221138082441, 0.7155025067868295, + 0.5754501941850944, 0.4382780222902958, 0.3120039433703543, + 0.20323610169092113, 0.1161904326000682, 0.052340997515196934, + 0.009890813197197201, -0.013879328592057316, -0.02309046543542537, + -0.02153649945626499, -0.011644158950249903, 0.004670181752500525, + 0.026786855729257243, 0.0541868963162246, 0.08579546232132575, + 0.12006661772550438, 0.1543320031934317, 0.18549809562913297, + 0.2106068126956211, 0.22758041541857535, 0.23548976776431887, + 0.2351634579691372, 0.22867181835172984, 0.21848240801651353, + 0.20729437655472713, 0.19677739204031008, 0.18741529624572467, + 0.1785648398555193, 0.1687733676941658, 0.15650097698111037, + 0.14080649967936365, 0.12176155638743494, 0.10069485747696115, + 0.07964979290040373, 0.06096578811401838, 0.04648548784934925, + 0.037053669369526435, 0.03217317940211172, 0.030464621204316797, + 0.030021094337627747, 0.02915533761340886, 0.027166112299639056, + 0.024482387370208372, 0.02256825744549482, 0.02340678663696534, + 0.028623977233275734, 0.03892866094736895, 0.053545284038658936, + 0.07045815116097603, 0.08727514594070893, 0.1020802742958327, + 0.11484864486104429, 0.12828977941062916, 0.1480350760021316, + 0.18224887413410767, 0.23995232032151573, 0.32943901344862075, + 0.4567572882710788, 0.6224285771112473, 0.8236065998361441 + ], + "pressure:J120:branch146_seg2": [ + 8885.746225599565, 10210.468887678278, 11609.027160091891, + 13009.116344028464, 14338.791531057701, 15541.689061449366, + 16582.926675735944, 17452.97332298426, 18153.68726619718, + 18703.132312039936, 19124.073398424764, 19428.279373529484, + 19628.93530288936, 19727.34475893171, 19720.090798733385, + 19608.82811010799, 19391.320489225618, 19078.728439454706, + 18687.118465356863, 18232.915316971805, 17738.85561325809, + 17220.8118761843, 16690.25862413323, 16154.28143475025, + 15614.697154712074, 15073.66089801637, 14535.351339752371, + 14007.613329470087, 13501.58149168288, 13028.909150913996, + 12596.652974116487, 12203.547768156397, 11837.912348879647, + 11475.671485421737, 11086.625857454983, 10638.946011488453, + 10108.262510222057, 9481.368332092354, 8766.626394925477, + 7988.181605207739, 7184.6954242357715, 6404.380063103069, + 5692.661119242722, 5085.776704933904, 4604.701209697359, + 4257.163754635058, 4030.2587230785807, 3906.7240599576035, + 3864.308633197676, 3880.4023033521844, 3942.596184693434, + 4041.080854427921, 4171.837835228563, 4332.691846677037, + 4516.629206383191, 4713.945883559523, 4909.117192407875, + 5084.006449761933, 5222.0290663733695, 5312.305507083121, + 5350.737000006474, 5342.803577912235, 5301.831957294564, + 5241.7254775945175, 5177.50797023709, 5118.2172057189855, + 5065.425011834721, 5014.615420703448, 4957.170944936846, + 4884.402625008539, 4791.768873371962, 4680.391331076619, + 4558.798766986891, 4439.26622279064, 4334.941495400101, 4255.755208931079, + 4205.680017346243, 4180.973915820298, 4172.839803108505, + 4170.601986218147, 4164.921834660861, 4152.612388570127, + 4137.150480301746, 4127.537882807603, 4135.235244024029, + 4169.008429010651, 4231.851364407258, 4318.4378433632755, + 4416.135868140626, 4511.434857357278, 4594.360423284931, + 4666.530442594547, 4745.8267085492125, 4866.6999022408545, + 5077.44110167312, 5430.36038367134, 5969.920217748131, 6730.014025631465, + 7709.470892311856, 8885.746225599565 + ], + "flow:INFLOW:branch0_seg0": [ + 75.20299897326457, 96.65267412104662, 119.99354078316293, + 144.17380006076564, 167.9658841666732, 190.3696829636227, + 210.539633459793, 228.17046625364924, 242.9747282756045, + 255.2014820400909, 264.9641929042962, 272.5425139975115, + 278.1173908184526, 281.71507365610944, 283.4287638529393, + 283.1528247869028, 280.9953282566522, 277.01330499064323, + 271.42719348182607, 264.5481890704203, 256.6550987507877, + 248.09449679231844, 239.07228804540608, 229.77115927781313, + 220.27790209477615, 210.66210491346732, 201.0046443422202, + 191.43529598397646, 182.11466390146362, 173.25197793789246, + 164.97566318917916, 157.33328152109064, 150.2111639710666, + 143.3062267750492, 136.1796666660292, 128.35920133027145, + 119.3648034925374, 108.93952592334738, 97.04733249512748, + 83.91749296354521, 70.08943644257923, 56.22987686297122, 43.0640615598422, + 31.27367207163051, 21.326966664990948, 13.43401984507759, + 7.669076370632103, 3.740251938280678, 1.4637389428075391, + 0.4392048839653444, 0.4553672117473945, 1.308051498843595, + 2.867902490283212, 5.084102812636766, 7.812543206442015, + 10.922185934965515, 14.162611975365328, 17.2596912659035, + 19.919103623620533, 21.93250239088451, 23.144467808458348, + 23.603003428606115, 23.40149680224406, 22.765029351425937, + 21.903198808636184, 20.98860513570841, 20.10078155357604, + 19.220633057034316, 18.255074714906527, 17.079230037750044, + 15.60883210599078, 13.833341524659831, 11.832825655557745, + 9.77472462346009, 7.861520308776615, 6.256079921580375, 5.076284178657773, + 4.313387383470458, 3.8751743405077996, 3.6233866077584307, + 3.4100685192271674, 3.1528936655615403, 2.8632600365853316, + 2.6399974317076484, 2.6403660750881706, 3.003355397122063, + 3.82233416362992, 5.044994517247155, 6.5484299700527515, + 8.125004113094377, 9.610667498260323, 10.97085284285842, + 12.389307510260862, 14.331752993739022, 17.43007161210963, + 22.566724857016226, 30.466563730966133, 41.76171723743491, + 56.77632872832844, 75.20299897326457 + ], + "pressure:INFLOW:branch0_seg0": [ + 11455.530661134664, 13142.547841529014, 14763.510394132121, + 16249.710664505408, 17535.888161659597, 18587.606268173553, + 19393.064899776487, 20001.973776560888, 20428.547541994274, + 20723.354867197653, 20904.875959279325, 20995.736532174706, + 20980.67271733656, 20865.506004170195, 20636.18339830412, + 20288.217895599315, 19848.163239259928, 19310.940940010383, + 18732.387076349693, 18120.082602927345, 17500.09292648975, + 16892.554917235255, 16289.310521123409, 15696.689861326186, + 15107.507241624719, 14524.120380656475, 13955.935177029432, + 13418.075986275006, 12923.852253608407, 12489.16204361351, + 12107.556636984156, 11762.815204852399, 11422.494758030829, + 11041.549614326172, 10572.683286604823, 9989.270733257361, + 9269.932140616691, 8438.227929667344, 7522.677468070257, + 6594.170665796328, 5710.075396696302, 4938.179270325767, + 4318.198210485975, 3882.113220021603, 3607.349119046286, + 3489.6918024198835, 3487.8391304967818, 3549.7079565289364, + 3674.977498217753, 3815.6963784558047, 3985.260020368263, + 4177.8680823016575, 4390.119927759745, 4630.024698437404, + 4876.185720474534, 5113.615333634182, 5318.046479390925, + 5466.242718323684, 5544.237772464338, 5552.509546905261, + 5499.871123287262, 5409.348461970017, 5303.871230896729, + 5207.580254655142, 5127.489589658275, 5068.4816145137265, + 5018.133787758523, 4960.68102024367, 4882.555023262397, 4773.504285863146, + 4639.360878434664, 4489.290909679206, 4344.58254481853, 4225.365300046456, + 4146.13540094184, 4107.505133284955, 4107.455012920686, 4126.355222702349, + 4145.732583573649, 4154.1765635983675, 4144.919350303133, + 4124.074544380092, 4108.226198268442, 4115.612053633329, + 4160.292387869727, 4246.579391727154, 4365.645122600358, + 4497.607383095225, 4619.388125321377, 4713.944247844363, + 4782.4162403723785, 4848.529409177998, 4959.456091941184, + 5185.592198420191, 5588.781625658173, 6252.99794133431, 7176.347324649182, + 8398.58888095605, 9859.083351771742, 11455.530661134664 + ], + "flow:branch3_seg2:RESISTANCE_0": [ + 0.7261826032376304, 0.9410458101057495, 1.1777811897838324, + 1.4247796129928059, 1.6690671390134888, 1.8991554323954325, + 2.106359290511575, 2.285696157731837, 2.434986704950421, + 2.555600374714106, 2.6500978557484736, 2.721172683578064, + 2.7715738019855074, 2.8023634556100236, 2.8140487584415452, + 2.806711181308158, 2.7802314260955208, 2.735888615427329, + 2.675386934352762, 2.6015823286971633, 2.518044307289192, + 2.427810936223212, 2.3336553922853005, 2.2374098686318145, + 2.1400567291614614, 2.0422523890958315, 1.944599434356485, + 1.8481484497101373, 1.7544888443935198, 1.6655311931135095, + 1.5828502211917606, 1.5071556292293895, 1.4375482028405875, + 1.3712050664067599, 1.3038156786326, 1.2301351770068882, + 1.1451845373016913, 1.045399700747246, 0.9299723874892999, + 0.8007649778082363, 0.6627715676482867, 0.5230561119524078, + 0.3894257195089242, 0.2691191205067661, 0.1677953653577665, + 0.08846630023501217, 0.031216701113062992, -0.005407441455629138, + -0.024834497309810067, -0.03065233782077302, -0.025831733249454362, + -0.012902279406556779, 0.006885277319563784, 0.032594315274332326, + 0.06316592735868616, 0.09727648484215407, 0.13267611169978233, + 0.16656937800463803, 0.19600800266426344, 0.21851586602347575, + 0.23251710771826783, 0.2379579838817453, 0.2360492958291748, + 0.22886162191087767, 0.21894412002844518, 0.20831530125360162, + 0.19812770294474838, 0.18845778847689812, 0.17842591053944443, + 0.16673553333042965, 0.1522632666634543, 0.13462226745718123, + 0.11448920505448476, 0.09336943863920592, 0.0733481800610444, + 0.056403192972595745, 0.04384586114437342, 0.03587079759710009, + 0.03174017305122055, 0.029931810294576564, 0.028783038976499874, + 0.0272072178359366, 0.02501614918851577, 0.023044670295652697, + 0.022862362128078496, 0.026105766938026857, 0.03388442981824113, + 0.046132670990962764, 0.061601218201375915, 0.07827849475314223, + 0.0941442282951032, 0.10837445624164692, 0.12230859865173224, + 0.13997069810501606, 0.16805586546213833, 0.21477394451248877, + 0.2887867656258714, 0.39718262061064163, 0.5429816433942994, + 0.7261826032376304 + ], + "pressure:branch3_seg2:RESISTANCE_0": [ + 7992.085908048119, 9173.56180636616, 10475.306993202645, + 11833.485939694305, 13176.758380146757, 14441.95299898512, + 15581.312166015488, 16567.43812675596, 17388.34732734203, + 18051.569969834527, 18571.186603697766, 18962.008267777772, + 19239.150676264755, 19408.454831243955, 19472.709218308297, + 19432.361823975367, 19286.756659493683, 19042.927281575554, + 18710.24455269308, 18304.412562944926, 17845.059096498368, + 17348.889674602517, 16831.15326231883, 16301.92460481588, + 15766.605461131983, 15228.805284811573, 14691.837536327319, + 14161.479103212023, 13646.469726127356, 13157.315149639888, + 12702.674371449257, 12286.44984729677, 11903.697035305115, + 11538.893689688555, 11168.337284903777, 10763.187710364507, + 10296.066629834442, 9747.376227577512, 9112.671986634226, + 8402.19464317737, 7643.405408821549, 6875.147101904806, 6140.348947041265, + 5478.814805381978, 4921.662297139374, 4485.452767156122, 4170.65237607535, + 3969.265910834548, 3862.441673211206, 3830.450908276845, + 3856.9581367565465, 3928.0537808943322, 4036.8603173846022, + 4178.227511681142, 4346.3327139485655, 4533.897640174609, + 4728.550817660743, 4914.920917214551, 5076.796121545494, + 5200.560904121168, 5277.550025944506, 5307.467963717945, + 5296.9725933639875, 5257.449477130088, 5202.9157595317565, + 5144.470698634124, 5088.451792283891, 5035.279492339702, + 4980.116851091194, 4915.834561368249, 4836.25539790748, 4739.252213005505, + 4628.545832258245, 4512.413827335346, 4402.322226223714, + 4309.146227716902, 4240.096784033727, 4196.244020659299, + 4173.530809695482, 4163.587101586805, 4157.2703121989425, + 4148.605288881208, 4136.557182384888, 4125.71654182147, 4124.714077466614, + 4142.548701957697, 4185.321510053013, 4252.671346040705, + 4337.728792485295, 4429.432721616309, 4516.67419055924, 4594.922447166211, + 4671.542607784737, 4768.661817359595, 4923.094718256562, + 5179.985068252991, 5586.961979686966, 6183.002092877169, + 6984.712324833937, 7992.085908048119 + ], + "flow:branch9_seg2:RESISTANCE_1": [ + 0.4110597472861178, 0.5371321082335098, 0.6826681666496176, + 0.842474943302066, 1.009904603705952, 1.1780916581853071, + 1.3407862894350069, 1.493060948927704, 1.6314047708340254, + 1.7541726669006101, 1.8607730086188707, 1.9513225054506476, + 2.02635737465349, 2.086084898475238, 2.1306211186050596, + 2.159908113174401, 2.1738589202581733, 2.1729164812706068, + 2.1578537528591086, 2.1300836411450397, 2.0914691113922195, + 2.043928055514439, 1.9893811166663804, 1.9294096083316892, + 1.8652290449942135, 1.7978057997682113, 1.7279843620725774, + 1.6567181828656254, 1.585163151724995, 1.514644554402191, + 1.4464125438664743, 1.3813746307762835, 1.319692257368675, + 1.260552070233818, 1.2021870592471287, 1.1420576426691524, + 1.0773560267358158, 1.0056018302376613, 0.9253524794655282, + 0.8364696449219348, 0.7404900540658583, 0.6403443274729904, + 0.5398984651646603, 0.443318019581351, 0.35445682694989766, + 0.2761939420845139, 0.21014255296563406, 0.15686054087125326, + 0.11571702982561606, 0.08558573562380922, 0.06516341879307867, + 0.05315010751669122, 0.0486173224641705, 0.05074632718754874, + 0.058735145988285234, 0.07164450336961, 0.08812668197691723, + 0.10651227126366293, 0.12492671329066478, 0.14156890499073557, + 0.15496880730714338, 0.16432871536619437, 0.16952950017363266, + 0.17106688831876135, 0.16988409395291076, 0.16695206298626647, + 0.16302752138245338, 0.15844707881939732, 0.15308236003653822, + 0.1464957248333185, 0.13818017702746718, 0.12784742016848175, + 0.11563580273874301, 0.10213138614321196, 0.08830433595388439, + 0.07523930559896898, 0.06385832660366066, 0.054657687662610435, + 0.047663651872751164, 0.0424280371811534, 0.0382812056133507, + 0.034633185062556866, 0.031203780759534793, 0.028173057877448303, + 0.02614018642399308, 0.02588921279293546, 0.028107957982780627, + 0.03304373551548524, 0.04038947404607893, 0.049352261253804784, + 0.05894529359978236, 0.06852301173168485, 0.0783206005372753, + 0.08986776235988912, 0.10617531216250746, 0.1314256182869185, + 0.17053617437795254, 0.22819139443237432, 0.30775896589895024, + 0.4110597472861178 + ], + "pressure:branch9_seg2:RESISTANCE_1": [ + 6628.09975878553, 7434.446806738149, 8365.281846175998, 9387.39106685044, + 10458.255540172382, 11533.964235275385, 12574.543904285303, + 13548.47840695685, 14433.312573290852, 15218.524572437545, + 15900.330403702403, 16479.476529904998, 16959.39254655254, + 17341.40421154613, 17626.2537166937, 17813.570599132723, + 17902.798658510856, 17896.770906751557, 17800.43110239276, + 17622.816061049176, 17375.841134584065, 17071.77298058483, + 16722.895853318714, 16339.323686163661, 15928.830796253362, + 15497.598015786445, 15051.026620227545, 14595.214792872563, + 14137.555495522825, 13686.52513208948, 13250.119564224331, + 12834.143145355189, 12439.628444954746, 12061.37333056487, + 11688.076170432543, 11303.494036898961, 10889.668543241545, + 10430.735402863198, 9917.468049028, 9348.981739187304, 8735.105238668744, + 8094.582523012409, 7452.140167346724, 6834.42065610074, 6266.072765909162, + 5765.510662516878, 5343.05214560687, 5002.265371738108, 4739.115317081011, + 4546.398373033637, 4415.779141625063, 4338.943124507139, + 4309.951854583757, 4323.568769987521, 4374.66450903924, 4457.231553371346, + 4562.650028633944, 4680.242540861293, 4798.019592521041, + 4904.461496582894, 4990.166020512589, 5050.03111842785, 5083.29485240571, + 5093.127843420283, 5085.562801105921, 5066.80980483701, 5041.708803213645, + 5012.412720303148, 4978.10047992669, 4935.972976228451, 4882.787508970049, + 4816.700160975257, 4738.595796218376, 4652.222808718976, + 4563.786286881257, 4480.223572746843, 4407.431893851363, + 4348.585466342246, 4303.852266535026, 4270.3657638705035, + 4243.843016394951, 4220.510617605097, 4198.576467921554, + 4179.192247377348, 4166.190191391063, 4164.584987482798, + 4178.775874530097, 4210.344646725201, 4257.327304420077, + 4314.652454453501, 4376.008593538742, 4437.266784340806, + 4499.9312474401995, 4573.7858161809345, 4678.087381915622, + 4839.585982007792, 5089.733446613063, 5458.490850223052, + 5967.397607284619, 6628.09975878553 + ], + "flow:branch11_seg0:RESISTANCE_2": [ + 0.5144052555984566, 0.6657059381855717, 0.834893001101948, + 1.014904826860333, 1.1974813196380998, 1.3749519643159032, + 1.5410629715559105, 1.6916567477013718, 1.824144798107363, + 1.938243133919079, 2.0344919256316474, 2.113630394983397, + 2.176753689230311, 2.2240682856847562, 2.255613558778624, + 2.2713718148853452, 2.271189002672034, 2.2559083710826195, + 2.2267197591029224, 2.1854697733121515, 2.13455231884011, + 2.0760806648456027, 2.012042372927533, 1.943908697421736, + 1.8726530640613734, 1.7990689263191626, 1.723922032617561, + 1.6482368275284454, 1.573340065553008, 1.500725321824699, + 1.431633834131117, 1.3667257150094474, 1.305613813056169, + 1.2466490007634174, 1.1871901272243885, 1.1239171795609026, + 1.0536080776856371, 0.9738016668632042, 0.8837482680309399, + 0.7843405242644496, 0.6784573671630163, 0.5704038028280649, + 0.465082079336866, 0.367232117971438, 0.28073349115575674, + 0.20802809305702594, 0.1497712876795811, 0.10564943517924823, + 0.07409576620233507, 0.05328739377416914, 0.04165046075563847, + 0.03772269003914886, 0.04067718925852698, 0.04977911880465448, + 0.06415434888410981, 0.08272371573949296, 0.10380487969263426, + 0.12537998727539787, 0.14532384036344906, 0.16180116198415267, + 0.1735118582073258, 0.18011588071905646, 0.18208724177897065, + 0.1804353197205237, 0.176563894448739, 0.17161349597948644, + 0.1662559846523709, 0.16056547166441404, 0.15406604303605792, + 0.14603780586031703, 0.13587012509071913, 0.12337816907829594, + 0.10901789933311086, 0.09374971286042741, 0.07889011245042528, + 0.06570332332038831, 0.055071779231060936, 0.047212417659417416, + 0.041780012163998126, 0.037944863339092666, 0.03477758044958153, + 0.03167338398465803, 0.028546052140944952, 0.025913079075847386, + 0.024729738705636984, 0.02598497593053432, 0.030358255047229575, + 0.03781551383978493, 0.04759756184308053, 0.058505006135790474, + 0.06932310878499627, 0.0795898818093445, 0.09020305462547894, + 0.10376436797247696, 0.12460963397990546, 0.15813444050599657, + 0.21007706750677854, 0.28540676401506304, 0.38665180941606586, + 0.5144052555984566 + ], + "pressure:branch11_seg0:RESISTANCE_2": [ + 7289.087979523227, 8256.79301685687, 9338.89767254204, 10490.236500545778, + 11657.978699316274, 12793.064370424707, 13855.494861246625, + 14818.678590990545, 15666.059789621766, 16395.8220909439, + 17011.420375002534, 17517.582635007333, 17921.31333054244, + 18223.93307121686, 18425.69369222017, 18526.482026769074, + 18525.312776923784, 18427.579284186882, 18240.891647604232, + 17977.060590419896, 17651.397306300663, 17277.418067448692, + 16867.835132251566, 16432.058506055237, 15976.31412895026, + 15505.676855255273, 15025.044340374548, 14540.968836126925, + 14061.936140409387, 13597.499020305073, 13155.596316796398, + 12740.450048029723, 12349.58402978042, 11972.450596504108, + 11592.157193632163, 11187.46932881933, 10737.778878705705, + 10227.344527426952, 9651.371397703486, 9015.56875129165, + 8338.349965865149, 7647.249458446209, 6973.621549963966, + 6347.782334323236, 5794.54519447238, 5329.528257480179, 4956.923170320314, + 4674.723921837212, 4472.909601549953, 4339.821194590144, + 4265.392457663182, 4240.270802936673, 4259.1675040519785, + 4317.382595488675, 4409.3252247144865, 4528.093161109644, + 4662.926317189857, 4800.918690600562, 4928.4777125900155, + 5033.865123019843, 5108.765642515676, 5151.00435381552, 5163.612995068569, + 5153.047455839615, 5128.286181315887, 5096.623894975928, + 5062.357752813373, 5025.961763123851, 4984.392024535067, + 4933.044169237716, 4868.012632495806, 4788.115248342155, + 4696.268304017338, 4598.614409084921, 4503.57379245555, 4419.232320565324, + 4351.233957346089, 4300.9662146429, 4266.221056373509, 4241.691802616518, + 4221.434157016833, 4201.5800062977805, 4181.577883856379, + 4164.737633999663, 4157.169099492399, 4165.197479568495, + 4193.168564421039, 4240.864495297632, 4303.429560876755, + 4373.192556033198, 4442.384130380532, 4508.04945193057, 4575.930314201975, + 4662.667208010726, 4795.991582858366, 5010.413114844876, + 5342.633306727076, 5824.435011289177, 6471.988867387694, 7289.087979523227 + ], + "flow:branch14_seg0:RESISTANCE_3": [ + 0.8761887145104839, 1.1275486476019838, 1.4000006687449968, + 1.6797406765611467, 1.9520180845727593, 2.2044876080467573, + 2.4284590873446823, 2.6197637419408712, 2.777079042735751, + 2.903079434648764, 3.0012567117857913, 3.0745385549797613, + 3.125870103871185, 3.1559308891429216, 3.164787905211531, + 3.1523981126824276, 3.118448926709237, 3.064615344200227, + 2.9932442571669284, 2.9077368037073663, 2.8123146982031506, + 2.7103660475856115, 2.604776762762977, 2.4973095133070937, + 2.388761319120958, 2.2796945187475095, 2.1707882090423896, + 2.0633701122434798, 1.9594209516545158, 1.8612239624458349, + 1.770475378456567, 1.687665455214127, 1.6112651668649254, + 1.5374590499285699, 1.4608796672310602, 1.375340625404532, + 1.2754111959430665, 1.1575826112170655, 1.0219314189532538, + 0.871645534220188, 0.7133344208953969, 0.5557076924751583, + 0.40777803042735616, 0.277427006141236, 0.17023687483745512, + 0.08868679464542686, 0.031825546262634036, -0.0028174045047367536, + -0.019566183100204738, -0.02259459384420712, -0.01500063925605442, + 0.0007490789704814877, 0.02364535599841374, 0.05288894714517763, + 0.0873485122425668, 0.1254345981406545, 0.1643679290768226, + 0.2008135390972218, 0.2314020595465201, 0.2535262056210677, + 0.26573878870724776, 0.26846549210266707, 0.2635749080331983, + 0.25364513380476406, 0.24165964333167866, 0.2297291011872081, + 0.21877698942110185, 0.2084636515348067, 0.197439339656534, + 0.18406107029882607, 0.16712623227311893, 0.14644291349916438, + 0.12313272810325498, 0.09922678231332403, 0.07725793320290177, + 0.05941428542343634, 0.04693507050826361, 0.03965729861831321, + 0.03637544511916225, 0.035114860836381115, 0.033961046624466154, + 0.031880871721502946, 0.029001887644879782, 0.02663882550775118, + 0.026828844354549807, 0.031452008835154116, 0.04156763147271833, + 0.0567158963691095, 0.07503804204298752, 0.09401617538515221, + 0.11138266716885828, 0.12660932490291363, 0.14195531377653467, + 0.1628792537078046, 0.19780566433285676, 0.25655046967116085, + 0.3487922613665459, 0.48197513124795194, 0.6583040476570594, + 0.8761887145104839 + ], + "pressure:branch14_seg0:RESISTANCE_3": [ + 8351.651338849893, 9600.334563348155, 10953.797162170868, + 12343.46436443689, 13696.05953588057, 14950.254883491089, + 16062.880215323803, 17013.226239149873, 17794.72301408718, + 18420.656406600905, 18908.372636789816, 19272.415573669943, + 19527.415816548346, 19676.749076715947, 19720.748162998163, + 19659.19926816903, 19490.549561397092, 19223.11994138214, + 18868.56908677063, 18443.792864914874, 17969.763528083207, + 17463.312208572326, 16938.775274530428, 16404.909157014867, + 15865.673219676879, 15323.86099725538, 14782.846045913508, + 14249.224104537896, 13732.83483186545, 13245.020677823324, + 12794.208040022682, 12382.83236569362, 12003.297897987704, + 11636.650521254687, 11256.2263647842, 10831.293221085602, + 10334.872806473257, 9749.534581306832, 9075.658812485111, + 8329.082137209076, 7542.638454522585, 6759.594597492091, + 6024.722952942652, 5377.17688097981, 4844.687406047963, 4439.570266494916, + 4157.100080788047, 3985.0039517896835, 3901.8008787868607, + 3886.756612795792, 3924.481176075239, 4002.721207006863, + 4116.463268745225, 4261.736945579622, 4432.922067772315, + 4622.122693197488, 4815.53218617398, 4996.58340336424, 5148.538298790462, + 5258.444637958608, 5319.113207686277, 5332.65867909919, 5308.363676270233, + 5259.035438672449, 5199.494999163828, 5140.227527010472, + 5085.820613120228, 5034.586942547474, 4979.821359446269, + 4913.361998503855, 4829.234636230099, 4726.485909086758, + 4610.687670657004, 4491.929867428336, 4382.794998524101, + 4294.152933052341, 4232.159813751931, 4196.005954388043, + 4179.702658316753, 4173.440441313369, 4167.708627046529, + 4157.374921617004, 4143.072963958667, 4131.33395681943, 4132.277915323149, + 4155.244455216861, 4205.495933793931, 4280.748119071582, + 4371.767223263723, 4466.045083880537, 4552.316776795123, 4627.95839494741, + 4704.192815581394, 4808.13687882665, 4981.64115416223, 5273.468304377352, + 5731.69876486113, 6393.312624182572, 7269.263525370387, 8351.651338849893 + ], + "flow:branch19_seg0:RESISTANCE_4": [ + 0.45655957347516607, 0.6013626306153139, 0.7777289124553926, + 0.9823580772302187, 1.2092735644059205, 1.4507095000331987, + 1.6981108773226685, 1.9431709958123768, 2.1786329110366487, + 2.3989732984900156, 2.6003157678288673, 2.7803420003408847, + 2.937875391482105, 3.0722859537921416, 3.1832776966736644, + 3.2705894351699154, 3.334042871611482, 3.3737817752362838, + 3.3903244094654506, 3.384866516821889, 3.3592129814391214, + 3.315618550473122, 3.2566286741238772, 3.1847427912735746, + 3.102244507448243, 3.0111272243504943, 2.913132303854691, + 2.809915054511557, 2.7031932253590165, 2.5948236707309573, + 2.486712172381404, 2.380598738876312, 2.277671728917377, 2.17822262072652, + 2.081407393995989, 1.9852164581339096, 1.8867436996674367, + 1.7827230505290368, 1.6702370984615518, 1.5473538839967413, + 1.4137587938936809, 1.2709269819336837, 1.1220388567782693, + 0.9715215621823541, 0.8244184072370123, 0.6855663634019412, + 0.5590022975441269, 0.44760592297644347, 0.3528249433505283, + 0.27497482515226995, 0.21348567337135588, 0.1672664900139083, + 0.13510904059171633, 0.11576125798609774, 0.10798713080626497, + 0.11045058414397224, 0.12151336149279213, 0.13916777311263598, + 0.16104166248969992, 0.18457380985308666, 0.2072860458807525, + 0.22714579255460526, 0.24277872357014288, 0.25361805406179855, + 0.2598455128085996, 0.2621334388339357, 0.2613512041173061, + 0.25823788595883107, 0.25318153415043837, 0.2461718355066264, + 0.23690390535449235, 0.22502172010082597, 0.21037825617401898, + 0.19322548114400456, 0.1742937566603221, 0.15467697853657178, + 0.13560345211379882, 0.11814240628084514, 0.1029857700575376, + 0.09030281863524993, 0.07981730666672877, 0.07100916635597872, + 0.06338655037108039, 0.0567481567101582, 0.05131868398533478, + 0.04770136478774454, 0.046679916921717496, 0.04889084744831083, + 0.054563573632013924, 0.06336907953029819, 0.07452115858980941, + 0.08714252863045914, 0.10080948339964474, 0.11614318414390194, + 0.13529035412529658, 0.162046482599555, 0.20170242470691452, + 0.2602977490727033, 0.34366600934880914, 0.45655957347516607 + ], + "pressure:branch19_seg0:RESISTANCE_4": [ + 5694.784949319421, 6232.622417154403, 6887.694183660905, + 7647.741892606448, 8490.566992058599, 9387.324939209302, + 10306.240139814989, 11216.459276060716, 12091.028106007645, + 12909.431518133122, 13657.271556980108, 14325.9373638382, + 14911.058713236562, 15410.295662447787, 15822.548822850427, + 16146.8480833256, 16382.531198414319, 16530.132165702016, + 16591.57595481017, 16571.303874806446, 16476.01975039788, + 16314.098318450717, 16094.994065058683, 15827.990577916356, + 15521.56978163162, 15183.13570582433, 14819.156236460343, + 14435.779634336035, 14039.386080997127, 13636.872432441014, + 13235.317274251966, 12841.18346584475, 12458.884890790761, + 12089.504177536553, 11729.906407841529, 11372.627422200594, + 11006.87313420187, 10620.512489336472, 10202.709434471208, + 9746.288152956344, 9250.080086667562, 8719.564353173784, + 8166.553844930283, 7607.492163570284, 7061.111514370554, + 6545.377709194826, 6075.284756433587, 5661.528685209945, + 5309.486655934393, 5020.330395912336, 4791.943161924868, + 4620.272694233628, 4500.831285254787, 4428.9684212355805, + 4400.09322371139, 4409.243151423204, 4450.333279449665, 4515.906508560038, + 4597.1520119811175, 4684.556731194979, 4768.916079369289, + 4842.680515520465, 4900.745422424316, 4941.0056087753255, + 4964.136064095649, 4972.634036199024, 4969.728606247792, + 4958.164905950375, 4939.384256516456, 4913.348352003574, + 4878.924768803457, 4834.791139615001, 4780.401379382908, + 4716.691363374356, 4646.373851029305, 4573.511865367311, + 4502.667662513368, 4437.812645899615, 4381.516825851078, 4334.40893591865, + 4295.462926645899, 4262.7471264782, 4234.434682248322, 4209.777904224453, + 4189.611383436347, 4176.17568783705, 4172.381755964067, 4180.593746093744, + 4201.663775598791, 4234.369790850636, 4275.791609429078, + 4322.670769561045, 4373.433512359767, 4430.386997622503, + 4501.504732443754, 4600.88418389922, 4748.177009816495, 4965.815791112139, + 5275.467913727972, 5694.784949319421 + ], + "flow:branch21_seg0:RESISTANCE_5": [ + 1.0076529874721285, 1.2752946836254933, 1.555244235275581, + 1.8336706344345952, 2.0963895942442305, 2.3325151359815424, + 2.5356855702407763, 2.7049865395258292, 2.8406416042835003, + 2.9465703870178395, 3.0277585866623995, 3.0856868193954456, + 3.123158709181402, 3.1401669957805916, 3.135641666103824, + 3.1104396515684334, 3.0638498451547718, 2.9984697497339594, + 2.91794992523289, 2.8252890618825, 2.7253603537512587, 2.621112563989305, + 2.514598223120456, 2.4072114512940774, 2.2991364223273005, + 2.1908545143182745, 2.0833114362410434, 1.9781864801439595, + 1.8777896644437149, 1.78445265519624, 1.6993706640599315, + 1.6219792790055816, 1.5496678129062256, 1.477189454704909, + 1.398413981419489, 1.3070336284052768, 1.1985504063380452, + 1.070656228476995, 0.9257923944012098, 0.7693154906021163, + 0.6091539286083844, 0.455260885794045, 0.31640842964925475, + 0.19940172665056013, 0.10780598008494847, 0.042867477532374375, + 0.00124601720102628, -0.020519066312724658, -0.02678418852904077, + -0.022204978912988175, -0.008717595025800813, 0.011752603735924703, + 0.038533270812073646, 0.07131048445911695, 0.1083807841493445, + 0.14778756914077276, 0.18629083910205008, 0.2201873960639027, + 0.24628789854757455, 0.26269142681733204, 0.26876474775376213, + 0.26584552926958427, 0.2569347973361338, 0.24463314050868568, + 0.2319243903829967, 0.2204374076887516, 0.21018360521360702, + 0.20010521426249656, 0.18841312460378204, 0.17341466276569886, + 0.15438988237699952, 0.1317390439037989, 0.10740052901838917, + 0.08389279196731828, 0.06379274896564509, 0.04893579626636687, + 0.039916712105662375, 0.03572042017957435, 0.03447880212632659, + 0.034090872976969985, 0.03274363446579608, 0.030048926524689004, + 0.02692259902879414, 0.025289212994221485, 0.027460906552084007, + 0.035030623305082546, 0.04838319337130121, 0.06622377678674318, + 0.08577320387472377, 0.10443893058243689, 0.12041845687837696, + 0.1344348701904035, 0.15058113215444982, 0.17619815034112885, + 0.22123073126034104, 0.29612380207341804, 0.40924493702121817, + 0.5671493605620672, 0.7682778754748111, 1.0076529874721285 + ], + "pressure:branch21_seg0:RESISTANCE_5": [ + 9210.063813413428, 10594.169229787207, 12041.924554608728, + 13481.802916897286, 14840.45046876541, 16061.570518294346, + 17112.26367465545, 17987.80135040869, 18689.339685384854, + 19237.14895441768, 19657.012632195598, 19956.58770528446, + 20150.373077145137, 20238.33120154622, 20214.928520250625, + 20084.596642507713, 19843.658087970965, 19505.54580765151, + 19089.1386228998, 18609.944219739038, 18093.16425546759, + 17554.048218884735, 17003.21074386897, 16447.86150394106, + 15888.952951508518, 15328.974526903488, 14772.816951310671, + 14229.164660874387, 13709.963884632998, 13227.272802098792, + 12787.272434218334, 12387.043931806611, 12013.086161651489, + 11638.26531124544, 11230.879015242894, 10758.306753988643, + 10197.287236450935, 9535.884223227184, 8786.722862113736, + 7977.504667794649, 7149.231313394067, 6353.37552125504, 5635.301919910506, + 5030.203335870258, 4556.5171697744645, 4220.6885810081, 4005.443761124003, + 3892.885925733707, 3860.485930820815, 3884.167251494621, + 3953.9170750806697, 4059.778431467072, 4198.274289500195, + 4367.7812071238095, 4559.489761229079, 4763.281417508443, + 4962.400558013995, 5137.696144470143, 5272.6745405008805, + 5357.5051653703395, 5388.913262555137, 5373.81656359679, 5327.73483376843, + 5264.116981655111, 5198.3938520489255, 5138.989076210912, + 5085.961675218272, 5033.8414125527315, 4973.375928818533, + 4895.811586020947, 4797.425191226053, 4680.286686027673, + 4554.420385060554, 4432.850440441636, 4328.903339568309, + 4252.070809370562, 4205.428737462571, 4183.727670449994, + 4177.306659459303, 4175.3004891035225, 4168.33326334138, + 4154.397617623851, 4138.229857209022, 4129.782823394882, + 4141.013707294301, 4180.160395231283, 4249.213030963247, + 4341.475367106983, 4442.574965220325, 4539.1045187540685, + 4621.742423143317, 4694.228115253834, 4777.72829089844, 4910.206354418151, + 5143.091738345232, 5530.400242405247, 6115.404663756247, + 6932.005257136996, 7972.138655179815, 9210.063813413428 + ], + "flow:branch22_seg0:RESISTANCE_6": [ + 1.4576658115956491, 1.8569799641524358, 2.279859373723507, + 2.704497927039966, 3.1085352838651117, 3.4747057157650967, + 3.7922255691021713, 4.057791448509152, 4.271590294034614, + 4.439619605828606, 4.568246529718696, 4.661433302661092, + 4.723405340730625, 4.75420423113176, 4.753168134618819, 4.720373047878183, + 4.655160280902705, 4.561065398667037, 4.4424272414111465, + 4.304675431343625, 4.15474871676212, 3.997377064324914, 3.836360563379583, + 3.673769829086107, 3.51016318003131, 3.3461861100957364, + 3.1829745551166844, 3.0228794197294997, 2.869273638970626, + 2.7257519680133067, 2.5945172063473603, 2.4754339427421077, + 2.364997857414993, 2.2560127858692995, 2.1393628414624746, + 2.005290143963092, 1.8461484979083962, 1.6578538965502152, + 1.4427639798397698, 1.2078628138562235, 0.9650613893141501, + 0.7288981973673544, 0.5131799228637198, 0.3290107183103944, + 0.1831318772416256, 0.07760079694366963, 0.008637543873015385, + -0.02870563895518208, -0.041696411380686124, -0.036911072180032416, + -0.018249960450287553, 0.011116444114516195, 0.05029708961785072, + 0.09848676188770934, 0.1537131549471024, 0.2132163333681329, + 0.27223358129883296, 0.32533236649428965, 0.36744368972188335, + 0.3951530296743, 0.4070806816530431, 0.40493979085610327, + 0.39257683283533285, 0.3743056978761713, 0.35480065990642323, + 0.33678699442955656, 0.3208610821635837, 0.30570274087066385, + 0.28866408232540375, 0.2670674915916089, 0.2394065917611698, + 0.20598294023102862, 0.16932207966544804, 0.1330878534743678, + 0.10135372584959183, 0.0772053900740631, 0.06191682137994065, + 0.05438284340918368, 0.052045281002855465, 0.051543485426026714, + 0.049997912210084455, 0.04637767710359556, 0.04163981640274546, + 0.038494661341085736, 0.040452687994129016, 0.050252989534946516, + 0.06893840342797372, 0.09492000934252168, 0.12447656795340602, + 0.15342562887856503, 0.1785663306309041, 0.2001950551684685, + 0.22348917449427572, 0.25869563207349255, 0.3203496636642429, + 0.42419325345289627, 0.5843281681926499, 0.8109086369036876, + 1.1038765213428956, 1.4576658115956491 + ], + "pressure:branch22_seg0:RESISTANCE_6": [ + 8930.210458713289, 10281.070244088078, 11711.650114084929, + 13148.181079296228, 14515.019228231093, 15753.755466052418, + 16827.909232416, 17726.30530618793, 18449.576096192875, 19018.01084515766, + 19453.14928862887, 19768.39547584943, 19978.043777843788, + 20082.234882042485, 20078.729819414133, 19967.78568294378, + 19747.17415731632, 19428.855881823525, 19027.508935761656, + 18561.501459213876, 18054.306890264277, 17521.926469299433, + 16977.21570832064, 16427.179394743252, 15873.706292392793, + 15318.980074748768, 14766.843555875112, 14225.249728448915, + 13705.609062823494, 13220.082435768963, 12776.12180767036, + 12373.269089114028, 11999.669341728662, 11630.978301316974, + 11236.35737977833, 10782.796156844019, 10244.427936090651, + 9607.436727165814, 8879.798307982983, 8085.13942441212, + 7263.7543616852145, 6464.826107467368, 5735.06198533058, + 5112.026787247613, 4618.525971724038, 4261.519610770196, 4028.22037846081, + 3901.8902606387614, 3857.943127940845, 3874.131690865925, + 3937.261297529474, 4036.606373865075, 4169.152535919657, 4332.17578446451, + 4519.003907128222, 4720.300180541722, 4919.952575435835, + 5099.583107220194, 5242.043605283772, 5335.782915001014, 5376.13356445549, + 5368.891038078834, 5327.067770078934, 5265.257435305045, + 5199.272868424975, 5138.333540018799, 5084.456976196155, + 5033.177066544869, 4975.536137772001, 4902.475952610314, + 4808.900513400439, 4695.82997371796, 4571.808117948065, 4449.229544906521, + 4341.874580005385, 4260.181969127411, 4208.4615066980405, + 4182.974436431609, 4175.066579847278, 4173.369030534595, + 4168.140433728297, 4155.893359619741, 4139.865414082359, + 4129.225511979316, 4135.849418112752, 4169.00334754718, 4232.215167212361, + 4320.1096391830915, 4420.097997136016, 4518.031220834117, + 4603.080956126198, 4676.249848337173, 4755.0526877343555, + 4874.154371019933, 5082.726873018411, 5434.024538067984, + 5975.752937052265, 6742.263318348063, 7733.359003189766, 8930.210458713289 + ], + "flow:branch23_seg0:RESISTANCE_7": [ + 0.3511085934167681, 0.46180531835089467, 0.5956542667536479, + 0.7498781935443294, 0.9197515659570107, 1.0993434533368334, + 1.282271685295094, 1.4624726400513923, 1.6347276989313675, + 1.7951852032683546, 1.9412016772397531, 2.0712367847896194, + 2.184565103865978, 2.2807811584804583, 2.359696295566915, + 2.421133544546207, 2.4649645580013706, 2.491344278991713, + 2.50070855716939, 2.4940134215351897, 2.472671503550566, + 2.4383915363087705, 2.3930774941981117, 2.338564365423551, + 2.276502983770067, 2.208327875360085, 2.1352941068015387, + 2.0586137048776623, 1.9795628336160689, 1.8995274210166713, + 1.819913483581374, 1.7419760257343162, 1.6665179145722586, + 1.5936344297457181, 1.5225634049540968, 1.4516838477948213, + 1.378753703826776, 1.3013307196219845, 1.2173261510150493, + 1.1254484332911774, 1.0256674110497026, 0.9192957763223601, + 0.808877505490848, 0.6978157188509885, 0.589888512393963, + 0.48862857074326344, 0.3968934364927149, 0.31666654412698164, + 0.24884346451717287, 0.19351552281660006, 0.150170913152013, + 0.11794385673239939, 0.09593411567610133, 0.08321889652771865, + 0.07888138909411481, 0.08192422895219034, 0.09109965334591297, + 0.10487956819021452, 0.1214734119224554, 0.13897606060376902, + 0.15557539675337123, 0.16983311142366625, 0.18082439872970218, + 0.18822585483529047, 0.19226205099501215, 0.19348342719247166, + 0.1925465747485028, 0.18997581834898275, 0.1860118821012923, + 0.18059908495603433, 0.17348099671289594, 0.16439335995454882, + 0.15325982090837734, 0.1403167637485173, 0.12616010798648572, + 0.1116374476442371, 0.09766573854527262, 0.08500686599024003, + 0.07412165011641714, 0.06507196864011193, 0.05760058054722693, + 0.051300692852773166, 0.04581916141779535, 0.04104669180725624, + 0.037202092205484864, 0.03477291924172917, 0.03435371213701542, + 0.03638982893293684, 0.04099411852110329, 0.047857705000714026, + 0.05634940032855889, 0.06582096251799674, 0.07602849159445958, + 0.08756912465174062, 0.1022197478270146, 0.12297892353456044, + 0.15391749966960633, 0.19957400070467157, 0.26418479905575115, + 0.3511085934167681 + ], + "pressure:branch23_seg0:RESISTANCE_7": [ + 5773.3331551973815, 6332.740907969876, 7009.148809662567, + 7788.522005762675, 8646.979937321288, 9554.550546976656, + 10478.98142981724, 11389.629971656808, 12260.12379565281, + 13070.998480247601, 13808.895176113814, 14466.029769203975, + 15038.736327033177, 15524.965769905599, 15923.764736392981, + 16234.238902710747, 16455.73966303844, 16589.050024720364, + 16636.372561270815, 16602.538581251407, 16494.686841403298, + 16321.452453021355, 16092.457182553808, 15816.974173616356, + 15503.345942380149, 15158.821890622115, 14789.74451845817, + 14402.238823529495, 14002.753922115557, 13598.293624567532, + 13195.963258817756, 12802.105010735271, 12420.776182635405, + 12052.458271827245, 11693.299658150298, 11335.108629359022, + 10966.554925798084, 10575.29657888027, 10150.77808499535, + 9686.472500233362, 9182.227433772161, 8644.676596771615, + 8086.676016468646, 7525.423418254257, 6980.0114734739045, + 6468.292663017677, 6004.7076262253, 5599.27968247229, 5256.534614149711, + 4976.933934448813, 4757.891223820322, 4595.0312546487285, + 4483.804659727016, 4419.548086878638, 4397.628420443066, + 4413.005462609991, 4459.373623401386, 4529.010653774545, + 4612.8679208945505, 4701.3178490401815, 4785.202872183278, + 4857.254471976563, 4912.799126397056, 4950.2025087440525, + 4970.599493612415, 4976.771738674926, 4972.037339164264, + 4959.045978658912, 4939.014160465793, 4911.660499469554, + 4875.689121359678, 4829.764596853423, 4773.501070882533, + 4708.093114828622, 4636.5522179202035, 4563.161710737901, + 4492.555444887726, 4428.5836204922125, 4373.574999830288, + 4327.84228297729, 4290.085498161668, 4258.248910223128, 4230.54789934302, + 4206.430144264038, 4187.001395809042, 4174.725529566757, + 4172.607059444595, 4182.896609762066, 4206.164464282266, + 4240.849713469209, 4283.762637978992, 4331.627336079061, + 4383.211255164491, 4441.532037536213, 4515.569207037601, + 4620.476049032052, 4776.824661513459, 5007.550553889043, + 5334.062305089656, 5773.3331551973815 + ], + "flow:branch28_seg2:RESISTANCE_8": [ + 0.36458152664169846, 0.4795955258606708, 0.6159798501022837, + 0.7697528327871013, 0.9352308679184547, 1.105937356600963, + 1.275444008043062, 1.438123093051125, 1.5895971248732064, + 1.727101006903872, 1.849088337791004, 1.955033680168856, + 2.0449813091498084, 2.1190230411876105, 2.177257566019287, + 2.219616219140887, 2.2460352152566796, 2.2567523429398313, + 2.2523227887997046, 2.2338910250248962, 2.2030431918778723, + 2.1616105178548786, 2.1115217660004126, 2.0545069806527185, + 1.9920156369343038, 1.9252235274373541, 1.855129157840877, + 1.7827388461044278, 1.7091880107387134, 1.6357678263190658, + 1.5637851164280323, 1.4943361063354608, 1.4279515153916085, + 1.3643473159981006, 1.3023060998668512, 1.2397657436534752, + 1.1741619991008438, 1.1029562251299885, 1.0242428449505772, + 0.9371880912453501, 0.8424407832436346, 0.7420587659354613, + 0.6392624719594748, 0.5379047983358586, 0.441896651195559, + 0.3545382873134326, 0.2781647346333575, 0.21403596635775557, + 0.1622576235922507, 0.12222913160091217, 0.09290294808097992, + 0.07309994068381259, 0.06180618383743929, 0.05811003326282046, + 0.061177215222597704, 0.0700796012855787, 0.08359880251035472, + 0.10020750137959024, 0.11811930698928107, 0.13549334156746237, + 0.15068524965978441, 0.16254880556064327, 0.1705373250089266, + 0.17475405441758723, 0.17581076296232953, 0.17453621006472952, + 0.1717204342884958, 0.1678677037268499, 0.16308556506482397, + 0.15714030945332805, 0.14962328403606062, 0.14020388769306058, + 0.12884261847057288, 0.11589983441295186, 0.10213036235308691, + 0.08850785364065711, 0.07598653308376503, 0.06525037679381192, + 0.056580391273602405, 0.049799827587526393, 0.04443097806102949, + 0.039920925758829606, 0.03588587582503914, 0.0322989000826727, + 0.02953034945424209, 0.028219951942277534, 0.029046325902725833, + 0.03242167067624536, 0.03831622592850877, 0.04620805429748781, + 0.05527403976286233, 0.06478942811179879, 0.07461963650296881, + 0.08567529090799615, 0.10020209750532755, 0.12170043659740302, + 0.15463832499806585, 0.20365936694543882, 0.27274343355555947, + 0.36458152664169846 + ], + "pressure:branch28_seg2:RESISTANCE_8": [ + 6176.464115064434, 6863.385524210558, 7677.941255075336, + 8596.350793668556, 9584.668788408893, 10604.213735567226, + 11616.59265168999, 12588.19390954719, 13492.872958139962, + 14314.11525080851, 15042.684901459703, 15675.443734061515, + 16212.656181837669, 16654.870618796725, 17002.67646964945, + 17255.663635467623, 17413.451158406773, 17477.459231337907, + 17451.00370772785, 17340.919950696374, 17156.681187081907, + 16909.224433835894, 16610.06923325258, 16269.548279636863, + 15896.318566923703, 15497.40251942469, 15078.763714901852, + 14646.412389983083, 14207.129834673444, 13768.627592478624, + 13338.710670640567, 12923.92627743147, 12527.44413554958, + 12147.567889425685, 11777.026564896323, 11403.504124929677, + 11011.685590148021, 10586.408920111737, 10116.2930524898, + 9596.358309813719, 9030.479766616307, 8430.947907446885, 7816.99677460656, + 7211.637805558361, 6638.2288973300465, 6116.4808420836425, + 5660.339600280454, 5277.330365145403, 4968.084078456291, + 4729.013806042453, 4553.863098779101, 4435.589585650539, + 4368.137593543959, 4346.0623246343075, 4364.381076857733, + 4417.550600747631, 4498.294065186013, 4597.489562332562, + 4704.467867872003, 4808.234334528605, 4898.968045079162, + 4969.823163519018, 5017.534616678372, 5042.719044026824, + 5049.030238555667, 5041.417968063415, 5024.600739924364, 5001.59029663539, + 4973.028961052259, 4937.520906466595, 4892.625452632444, 4836.36808350192, + 4768.512873553595, 4691.212062143602, 4608.973854492438, + 4527.613385815646, 4452.829766258735, 4388.708044924042, + 4336.926533879631, 4296.429599648377, 4264.364131902897, + 4237.427832810717, 4213.328486597938, 4191.905264657554, 4175.37008883645, + 4167.543736291777, 4172.479256917507, 4192.638512346629, + 4227.8437589050545, 4274.977724342056, 4329.124346087786, + 4385.955027723156, 4444.665972878678, 4510.695897535722, + 4597.457287679489, 4725.856173760425, 4922.577797807291, + 5215.356098196537, 5627.960865508556, 6176.464115064434 + ], + "flow:branch30_seg2:RESISTANCE_9": [ + 0.9418335491613341, 1.2100299354605426, 1.4996264788848697, + 1.795970681135594, 2.08336118053307, 2.3487900169501206, + 2.5832381666989552, 2.782567889222666, 2.9454768183216076, + 3.07501310007866, 3.1749928330207635, 3.2484687709764377, + 3.298682966607554, 3.3263190757804417, 3.331491722302681, + 3.3143035711353033, 3.274438393310451, 3.213883201829427, + 3.1351886684696355, 3.0419625903750744, 2.938779361702982, + 2.829136349272163, 2.716039399193993, 2.6013155546185374, + 2.485742242505727, 2.3699160901812744, 2.2545658350246716, + 2.1411166385098106, 2.031679358553468, 1.928654365023794, + 1.833755131609211, 1.7473858440678698, 1.667789587589455, + 1.5907575514347383, 1.5105097424466578, 1.4204522516530664, + 1.3148796560653375, 1.1901657012082456, 1.0466138242932492, + 0.887749809731781, 0.7207342581970676, 0.5549287610465039, + 0.39988408176191304, 0.2638952348155534, 0.15277851433856982, + 0.06907249449190257, 0.011536727692316262, -0.022460309787394456, + -0.037576696267516606, -0.03830623167140883, -0.027857984211230123, + -0.008900327495384918, 0.017504070323812487, 0.05048955286085383, + 0.08874979058075277, 0.13055228247817283, 0.17288084387337213, + 0.21216514133388029, 0.24485644121454905, 0.2682676165428722, + 0.2809452830413468, 0.28346483046895815, 0.27791385783834566, + 0.26705372845508646, 0.2540925580939395, 0.24123298193849751, + 0.22940290972160657, 0.21820667882426611, 0.20619174638758897, + 0.19162956175892137, 0.17329488834572432, 0.15104311060248912, + 0.12614496884498422, 0.10078503636581679, 0.07765275361786979, + 0.05903521927825309, 0.04618590941012037, 0.03884496583722555, + 0.035684424479667166, 0.03459123332022756, 0.03353819732071206, + 0.031487024447913084, 0.02863637370313062, 0.026426762289899472, + 0.02703619796094422, 0.03242220700697126, 0.043646158203188984, + 0.06012969052672271, 0.0798234236334971, 0.10005043678753263, + 0.11844165299159456, 0.1345606364679099, 0.1509778449898262, + 0.17366430367812752, 0.21171151764991114, 0.27557478276273384, + 0.3754557997765016, 0.5191657984254774, 0.7085895137961541, + 0.9418335491613341 + ], + "pressure:branch30_seg2:RESISTANCE_9": [ + 8525.558818791911, 9814.541058436944, 11206.374879494098, + 12630.638713894936, 14011.87003724612, 15287.551118383175, + 16414.3355069198, 17372.33675261814, 18155.295535865345, + 18777.86159232302, 19258.375524166422, 19611.5092124051, + 19852.844329703665, 19985.666603666006, 20010.52692930696, + 19927.918726069034, 19736.322161679836, 19445.28704590365, + 19067.072196488203, 18619.017095545903, 18123.10680002396, + 17596.150051371736, 17052.59328679198, 16501.217482807122, + 15945.759041528327, 15389.08542152631, 14834.699017268407, + 14289.449316377535, 13763.48134132282, 13268.331541835436, + 12812.235066729103, 12397.134478582544, 12014.585845625028, + 11644.3611462648, 11258.681078075275, 10825.854566943877, + 10318.460703128005, 9719.07129648872, 9029.144700666851, + 8265.626235283831, 7462.930559016996, 6666.050541311769, + 5920.888234291204, 5267.3104179663105, 4733.270861360787, + 4330.970239706038, 4054.446821279786, 3891.053204696881, + 3818.4021374347385, 3814.895907571669, 3865.111369448033, + 3956.2240169717393, 4083.126546521475, 4241.658515363641, + 4425.541555646397, 4626.449071113687, 4829.884936231073, + 5018.689723731213, 5175.807817373537, 5288.324580271894, 5349.2548828094, + 5361.3641134032505, 5334.685509592261, 5282.4904964959605, + 5220.1976422518555, 5158.393061278736, 5101.536392955552, + 5047.726037876658, 4989.98091037843, 4919.993400047684, 4831.874880907994, + 4724.9303142516765, 4605.267022108046, 4483.384311400021, + 4372.207937862736, 4282.729957040972, 4220.974717008612, + 4185.693309908887, 4170.5033898142465, 4165.249389160104, + 4160.188378757199, 4150.3302093763095, 4136.629658700893, + 4126.010015731529, 4128.939032662079, 4154.824802782602, + 4208.768384760723, 4287.990109948123, 4382.640424060191, + 4479.8537425406685, 4568.244012743865, 4645.713674840364, + 4724.616640317651, 4833.650332878435, 5016.509556875921, + 5323.443649583393, 5803.483141483177, 6494.169688285793, + 7404.561540501059, 8525.558818791911 + ], + "flow:branch32_seg0:RESISTANCE_10": [ + 0.8268974182908504, 1.0553911701319845, 1.2984195460221517, + 1.5433935303919084, 1.777336222266294, 1.9901154128848235, + 2.1753086508466075, 2.33077915595518, 2.4563999474180336, + 2.55547910880276, 2.6316313308425254, 2.6872140179147888, + 2.724797151802632, 2.744615577211594, 2.746448124756344, + 2.7303940597688956, 2.6960668600893913, 2.645284761008097, + 2.580344297350924, 2.5041621831342127, 2.4205410723123952, + 2.332166021887538, 2.241247514945326, 2.1490636938657066, + 2.0560311601742756, 1.962557081540782, 1.8692702252146172, + 1.7774468625874869, 1.6889455764271983, 1.605808047398215, + 1.5293735926712257, 1.4597565237345524, 1.3952066478154053, + 1.3318733817589827, 1.2647279467468222, 1.18822407002429, + 1.0978218504370572, 0.9908410765013341, 0.8681345599796815, + 0.7332012718759837, 0.5924539456820107, 0.4540361557078201, + 0.3259504346716226, 0.21493092805676522, 0.12540178150332743, + 0.059095442237680526, 0.014402146981253004, -0.011216476699698335, + -0.021806767326604047, -0.021200449810180055, -0.011849245866869479, + 0.004224847058878917, 0.02634032950659627, 0.05392079751887897, + 0.08582700882031419, 0.12051553317033539, 0.15529655556622493, + 0.18705475661590576, 0.21280823852639075, 0.2304472178865849, + 0.23897208993722238, 0.2391568265188863, 0.23304902556025056, + 0.22305984413745958, 0.21190782665430047, 0.20130008203113134, + 0.1917620892176096, 0.18270839621262924, 0.1727261410842017, + 0.16028812160805664, 0.14444268531470347, 0.12522880118619642, + 0.10394382593880047, 0.08260272963802598, 0.06354287353700097, + 0.048633564831082284, 0.03876770655253691, 0.03349087779656604, + 0.03147347824048686, 0.030828434944058528, 0.02985258234572911, + 0.027822117264587404, 0.0251258895167357, 0.02319064292925205, + 0.02398448773073387, 0.029137424011982497, 0.03939357526747628, + 0.05401953924111813, 0.0710213153686451, 0.08803646344166502, + 0.1031296708121732, 0.11623426429681193, 0.13000678702985236, + 0.15003131813147397, 0.1844510736422636, 0.24230733598787227, + 0.33194178279793735, 0.45947915127144334, 0.6254063463528141, + 0.8268974182908504 + ], + "pressure:branch32_seg0:RESISTANCE_10": [ + 8683.81195138324, 9978.350107826273, 11355.234609713838, + 12743.142014389925, 14068.551302880884, 15274.058144679626, + 16323.275950090117, 17204.098727268076, 17915.807062751595, + 18477.143002519795, 18908.585684580266, 19223.4910536457, + 19436.419418051686, 19548.701297471995, 19559.08365016681, + 19468.128866831124, 19273.647094656215, 18985.939599832844, + 18618.017468816488, 18186.40543173723, 17712.647537830977, + 17211.956057513835, 16696.8545485441, 16174.58436464316, + 15647.505774162208, 15117.925597661164, 14589.40613471846, + 14069.178138915879, 13567.77146627988, 13096.75331942378, + 12663.711639667914, 12269.294062153982, 11903.584817600558, + 11544.768312459533, 11164.353850559308, 10730.918858420055, + 10218.742390836893, 9612.639629821837, 8917.44220581556, + 8152.973643252826, 7355.565474726131, 6571.355363034796, + 5845.681895638802, 5216.697574341752, 4709.467528034897, + 4333.806988077916, 4080.5957926713704, 3935.452717189793, + 3875.4531102251253, 3878.888220172798, 3931.8677446269844, + 4022.9359968436142, 4148.2319213318315, 4304.489884303529, + 4485.255474716519, 4681.784342573823, 4878.837260864929, + 5058.764294788311, 5204.6714135858865, 5304.605576504962, + 5352.903493009994, 5353.95012361555, 5319.346195371548, 5262.752190506042, + 5199.570103306972, 5139.471610206629, 5085.4338278449995, + 5034.139860472897, 4977.585096734398, 4907.11712694218, + 4817.3443356866255, 4708.487502896199, 4587.89684168697, + 4466.988224978334, 4359.004042565131, 4274.534910037519, + 4218.6395961187545, 4188.743565638369, 4177.313928367801, + 4173.659416360115, 4168.130694399789, 4156.627034007838, + 4141.351475398772, 4130.387278218599, 4134.884829585022, + 4164.078943559893, 4222.185473963922, 4305.049308471769, + 4401.373377497904, 4497.773205679495, 4583.2842215685205, + 4657.528686258892, 4735.55732399948, 4849.006901360144, 5044.013051353856, + 5371.799428845888, 5879.626056892896, 6602.1928165129975, + 7542.2582821706565, 8683.81195138324 + ], + "flow:branch35_seg2:RESISTANCE_11": [ + 0.7006860419206479, 0.9092667166561171, 1.139694578514175, + 1.3805238383901586, 1.619096262947749, 1.8441416886411266, + 2.0470709241396987, 2.2228335105145347, 2.369284473191877, + 2.4877190627469936, 2.5805608224591685, 2.6505412639081882, + 2.7003231036285498, 2.7310020498127083, 2.7431044065389645, + 2.7366503386693797, 2.711540064436273, 2.668910824231308, + 2.61042928861313, 2.5388815721634495, 2.4576790139611853, + 2.3698661081649393, 2.2781734659976483, 2.184402582681863, + 2.08954993112479, 1.994237863788126, 1.899038580688581, + 1.8049543447407412, 1.7135140168489997, 1.6265796009972513, + 1.54572600096795, 1.4717036283807503, 1.403689578064251, + 1.3390198582330868, 1.2735188611011394, 1.2020656413526096, + 1.1197579843177474, 1.0230479890231952, 0.9110083253785151, + 0.7853757341389488, 0.6509469599579228, 0.5145537346609252, + 0.3838417090226345, 0.2659490281365609, 0.1664559549126735, + 0.08836621471347947, 0.03193423452364809, -0.00431405212807085, + -0.023694338366549432, -0.029678389776931914, -0.02527193389076805, + -0.012912585639843018, 0.006142832692056926, 0.03095614787206873, + 0.060575033198518605, 0.09371404618002471, 0.12820805961671017, + 0.16135625495275574, 0.1902651363757975, 0.21247493947366872, + 0.22640852214826337, 0.23196277677107233, 0.23026779313045945, + 0.2233465107542452, 0.21368586467735812, 0.20329404826641786, + 0.19334207699055192, 0.18393446492892992, 0.17423028603470322, + 0.16295669306058663, 0.14898902159274965, 0.13191487443775957, + 0.112339596385347, 0.09172385279579091, 0.07210330790616001, + 0.055428974521013384, 0.04301576805493824, 0.035109384826794904, + 0.03101147381624492, 0.0292322257296032, 0.028149628633813123, + 0.026657104620438785, 0.024527080150129187, 0.022547206156808393, + 0.022239664410002063, 0.02522583857911122, 0.032627690127268356, + 0.04443097359365252, 0.05946046692712139, 0.0757523132597587, + 0.0913036538615728, 0.10523378077797617, 0.11874483717749999, + 0.1356619167294188, 0.16243269038014388, 0.20706912111659723, + 0.2780572468151608, 0.3823379480609716, 0.5232142846189387, + 0.7006860419206479 + ], + "pressure:branch35_seg2:RESISTANCE_11": [ + 8003.301601603853, 9195.304695625013, 10512.160749676208, + 11888.459024993761, 13251.859870165243, 14537.956216636594, + 15697.662296255061, 16702.115594901614, 17539.05794756764, + 18215.891491077207, 18746.46636322984, 19146.392688302814, + 19430.887438585865, 19606.212400110722, 19675.37531120466, + 19638.49141062603, 19494.990462537036, 19251.371602426745, + 18917.159569176853, 18508.27653393723, 18044.217719561017, + 17542.381892551326, 17018.374031799107, 16482.489376217898, + 15940.422599055852, 15395.730338821553, 14851.682621327256, + 14314.007208728879, 13791.441281163918, 13294.625874829515, + 12832.561297083243, 12409.53602274931, 12020.847288680356, + 11651.270834744755, 11276.943772365781, 10868.600769707264, + 10398.22650338745, 9845.545322544214, 9205.257693371834, 8487.28879401247, + 7719.051204636191, 6939.587111120631, 6192.5901077586495, + 5518.8534801594105, 4950.267482118337, 4503.9978934002065, + 4181.498720965701, 3974.34592554679, 3863.590884656351, 3829.393048231649, + 3854.5751944522267, 3925.2067684169365, 4034.105244454083, + 4175.909122042491, 4345.176015993058, 4534.559841013571, + 4731.687263263417, 4921.123563878974, 5086.3329062337225, + 5213.258154911906, 5292.886210962548, 5324.627831818681, + 5314.941288487243, 5275.387336437251, 5220.178386574101, + 5160.790922562632, 5103.917098717317, 5050.1541952315265, + 4994.696462718564, 4930.269795564834, 4850.446927856461, + 4752.871079747174, 4641.001693791867, 4523.186224187775, + 4411.0581459538635, 4315.767165564415, 4244.827801056889, + 4199.644165121221, 4176.225300407152, 4166.057200092981, + 4159.8703417495735, 4151.34082076639, 4139.16809305722, 4127.853449796029, + 4126.095901000107, 4143.161378678605, 4185.461701841709, + 4252.915460102787, 4338.806459246337, 4431.911591159683, + 4520.784858719342, 4600.393165699454, 4677.606555924373, + 4774.284789386143, 4927.275209335044, 5182.364822077898, + 5588.0498913143765, 6183.996369526459, 6989.080681696953, + 8003.301601603853 + ], + "flow:branch36_seg0:RESISTANCE_12": [ + 0.8862554675400106, 1.1419064617401211, 1.4197683065295743, + 1.705890379060042, 1.9851248196218316, 2.2446337570434665, + 2.475246476298561, 2.6723885034579653, 2.834425292724165, + 2.9638478649444044, 3.0641558107715507, 3.1384036069324046, + 3.189749541841526, 3.2190790505622067, 3.2266695935359664, + 3.212607380522976, 3.1766514620226496, 3.120551982710054, + 3.046581267187387, 2.9581641680381567, 2.8596102869103954, + 2.754337999788148, 2.6453532464182916, 2.534538483142968, + 2.42277056335848, 2.3106800968628245, 2.198957116923333, + 2.0889122330993835, 1.9825095899447926, 1.882028467401955, + 1.789186672759023, 1.7045272122598984, 1.6265889645531588, + 1.5515835412659025, 1.474127559142068, 1.3879471608102227, + 1.2874259454404797, 1.1688341866471263, 1.0320205946907768, + 0.8799551098326605, 0.7191671940070486, 0.5584136755079429, + 0.40688647325631344, 0.2727507710304265, 0.1619835367721381, + 0.07740819410529935, 0.018272589365985314, -0.017671684202563855, + -0.034762628984157086, -0.03730680297165947, -0.028540663593427863, + -0.011180545707235846, 0.013595917738452678, 0.04487670226666937, + 0.08141183306025802, 0.12158320912589889, 0.16259192969205716, + 0.20105746425013737, 0.23355129297933586, 0.2573764838140768, + 0.2709824073150055, 0.27470589490404984, 0.27035674339846305, + 0.2605276074754677, 0.24827484075709078, 0.2358137879643791, + 0.2242030021615809, 0.213225079422004, 0.2016056869537295, + 0.18772430808900636, 0.1703444941003244, 0.14921109514326877, + 0.1253955629632395, 0.100882067202542, 0.07821303238262428, + 0.05963701270518504, 0.04648102097256828, 0.03866318313560176, + 0.03504602933815298, 0.03368022680084213, 0.032604661090370815, + 0.030717116786289928, 0.028061803255244416, 0.02588256433362182, + 0.026190351374623975, 0.030888896920838318, 0.041102663366139054, + 0.0564481695933685, 0.07513070667518196, 0.09464103320692245, + 0.1126623426097928, 0.12857383422899496, 0.1445269874794455, + 0.16590704024792707, 0.2011532525634411, 0.26017842777656947, + 0.35292882530256386, 0.48720155280834876, 0.6653773923659017, + 0.8862554675400106 + ], + "pressure:branch36_seg0:RESISTANCE_12": [ + 8352.31669128692, 9608.082980982836, 10972.949716475321, + 12378.39096870236, 13749.99994083536, 15024.716577508441, + 16157.49401779086, 17125.862291748428, 17921.792455398714, + 18557.52048700064, 19050.236493650616, 19414.944167855996, + 19667.157128629093, 19811.224662807905, 19848.509665421563, + 19779.435601714176, 19602.818919627578, 19327.256388722235, + 18963.90974393922, 18529.601976462298, 18045.501994664188, + 17528.400976454068, 16993.064199059954, 16448.738351405085, + 15899.730566890332, 15349.138422072174, 14800.351383588884, + 14259.807209716244, 13737.15384462317, 13243.587188115927, + 12787.545167421862, 12371.695047490677, 11988.85975105727, + 11620.430586902396, 11239.96419524712, 10816.643177481052, + 10322.87958365838, 9740.352872215703, 9068.319902860158, 8321.36912213441, + 7531.573466866115, 6741.946772423561, 5997.640053981514, + 5338.760969129963, 4794.6685856067825, 4379.231655299508, + 4088.7555740905877, 3912.1960923008924, 3828.2447961874905, + 3815.747727914303, 3858.807299641776, 3944.0807831063585, + 4065.7836056215897, 4219.435872254391, 4398.897664623983, + 4596.220816179742, 4797.6570321102445, 4986.601032755752, + 5146.211813339458, 5263.2419527662605, 5330.074707029964, + 5348.3646034141075, 5327.00142480968, 5278.720378269824, + 5218.534375674418, 5157.325264870177, 5100.292694143615, + 5046.368768088174, 4989.293921131059, 4921.108120847521, + 4835.737889464463, 4731.929922356802, 4614.947226567091, + 4494.536110173029, 4383.185048011645, 4291.939014016578, + 4227.316339745239, 4188.914857111896, 4171.147275891673, + 4164.438407850292, 4159.155192872823, 4149.883511709256, + 4136.840522256806, 4126.136027312324, 4127.647887619009, 4150.72730151293, + 4200.89766612648, 4276.275309302747, 4368.044560373882, 4463.879941089598, + 4552.401219542327, 4630.559002017184, 4708.921427827221, + 4813.940966759909, 4987.071548175299, 5277.005195834117, + 5732.598270813009, 6392.150428452211, 7267.356150435459, 8352.31669128692 + ], + "flow:branch38_seg0:RESISTANCE_13": [ + 1.0303081379755072, 1.3311175664474872, 1.6603771277003485, + 2.0016567801946037, 2.3369967138134027, 2.6508206430887236, + 2.931645750238176, 3.173253256947065, 3.373176307576696, + 3.533841565665316, 3.6590777573908873, 3.752567334663085, + 3.818079180394904, 3.8569080265727007, 3.8695634336907805, + 3.8561746015599794, 3.8165142183423737, 3.752462555845102, + 3.666626980848873, 3.5629801832470376, 3.4465148167169932, + 3.3214164294303057, 3.1913723760541015, 3.058774735813304, + 2.924842221483028, 2.7903969953162657, 2.656276970964194, + 2.523990145903672, 2.3957987643361407, 2.274375151847684, + 2.161834477128364, 2.0589866787324627, 1.9643375607509266, + 1.8736992285905687, 1.780887114427408, 1.6785395336516735, + 1.5598849568894422, 1.4202258282527715, 1.2588952327925056, + 1.0789629134069418, 0.887739604929651, 0.6953116075912554, + 0.5125531494976933, 0.3493538405368384, 0.21314637017239868, + 0.10773265131915098, 0.032797249810146124, -0.014081136694143766, + -0.0378003875264297, -0.043396558190734874, -0.03489463712104147, + -0.015617369348605456, 0.01282782012537261, 0.04923047759207618, + 0.09214584315521132, 0.13967217143332958, 0.1885877045518967, + 0.2349575196736955, 0.27469899684438315, 0.30449196503424153, + 0.32232314429367603, 0.3283486857017735, 0.3244823779953289, + 0.31368681255838415, 0.2995385339021005, 0.28476210474658203, + 0.27078658479103385, 0.25753864378260194, 0.24365965837450587, + 0.22729087942217138, 0.20692677753817948, 0.18214472283031152, + 0.15403471454485748, 0.12482749613389472, 0.09747193255491887, + 0.07466917346646926, 0.05811660502552504, 0.04791621699519799, + 0.04287689669491846, 0.04078657976982305, 0.03934356378549838, + 0.037132723715653765, 0.034045065249822024, 0.03139496915545726, + 0.03145881653550838, 0.036499198649587665, 0.047951379774851366, + 0.06554776513498571, 0.08735840455319951, 0.11050919117080392, + 0.13222998217382836, 0.15158229229271972, 0.1707694454462889, + 0.19577399304633472, 0.2362351996401422, 0.3037572355956639, + 0.41019476202889027, 0.5650792111780694, 0.7720798910527904, + 1.0303081379755072 + ], + "pressure:branch38_seg0:RESISTANCE_13": [ + 8188.692121161811, 9411.917335044578, 10750.83346969623, + 12138.628652967907, 13502.27029182198, 14778.418266834979, + 15920.378322746377, 16902.86213507539, 17715.838369260502, + 18369.17492086824, 18878.44109709, 19258.61138874442, 19525.011753633993, + 19682.907149107214, 19734.36967525682, 19679.924716101006, + 19518.647920388645, 19258.18531136816, 18909.139604533568, + 18487.665527710946, 18014.06543609375, 17505.359634143122, + 16976.542549474816, 16437.341442422396, 15892.712142337907, + 15345.997927398754, 14800.606127988101, 14262.668933996181, + 13741.385638680604, 13247.623108991658, 12789.982563602722, + 12371.75757368384, 11986.872072671153, 11618.296214507325, + 11240.880789815214, 10824.689907698486, 10342.187511495604, + 9774.271245156948, 9118.22913523984, 8386.544124624124, 7608.944919706609, + 6826.446912922168, 6083.269562644383, 5419.628430705074, 4865.74814538519, + 4437.088979196678, 4132.368236220426, 3941.7398219134916, + 3845.286775811033, 3822.5302515473445, 3857.1028521194658, + 3935.4928152060447, 4051.163634285719, 4199.193065051243, + 4373.706069801398, 4566.969304163347, 4765.88166460727, 4954.442000990974, + 5116.048560862018, 5237.20004893659, 5309.709571574227, 5334.212108662642, + 5318.489978225521, 5274.590397325841, 5217.057190094546, + 5156.969642952167, 5100.1389496006095, 5046.266916546782, + 4989.828775692844, 4923.266024529497, 4840.456509518245, + 4739.681629141417, 4625.373806172285, 4506.604237780918, + 4395.364323261772, 4302.638141091309, 4235.328019948051, + 4193.848695668006, 4173.356573185525, 4164.856412865514, 4158.98846668767, + 4149.9982055411565, 4137.4424099783355, 4126.6659380495585, + 4126.9255699550995, 4147.422010245767, 4193.991683202942, + 4265.546429192956, 4354.2382105735705, 4448.379627801493, + 4536.706045478431, 4615.401164193806, 4693.424681073903, + 4795.104316720552, 4959.6376172260425, 5234.21231155344, + 5667.034735696846, 6296.86394151666, 7138.620970875264, 8188.692121161811 + ], + "flow:branch41_seg2:RESISTANCE_14": [ + 0.9318190054700553, 1.2082215247084218, 1.5135676881872409, + 1.8326436830512907, 2.1487111094501348, 2.4469138666131967, + 2.716005319172187, 2.949474172422308, 3.1445982181374554, + 3.3031173318958205, 3.428295690225167, 3.5236607273782936, + 3.5926777615495027, 3.6368027967475203, 3.6566776941555768, + 3.652368148740755, 3.6237082532809737, 3.5720925099025553, + 3.499673313428191, 3.4099293189980284, 3.307181373233805, + 3.1953157199492326, 3.077803356325711, 2.956974737180788, + 2.8341371876226917, 2.7101262137117117, 2.5857268214973845, + 2.4622749754578637, 2.341787871517732, 2.2267237654115895, + 2.1191841729984198, 2.0202110200597407, 1.928829704786518, + 1.841662322959802, 1.7533491329777278, 1.6572567245827523, + 1.546989313840313, 1.4178195682903956, 1.2683852440085253, + 1.100784638633045, 0.9210682019407033, 0.7380468209844118, + 0.5616956824330037, 0.4014708587775975, 0.26487986042315353, + 0.15619144234943838, 0.07607096183829198, 0.022829259674693528, + -0.007651575834319464, -0.019845780835617863, -0.01767884790340511, + -0.004367824458790125, 0.018363491423756328, 0.04923381417064867, + 0.08694248871569095, 0.12975830101537936, 0.17480104234972918, + 0.2184682097955556, 0.2568889384150165, 0.28674614417323235, + 0.3058625917792522, 0.31398248965397085, 0.31251279882264005, + 0.3040256109844602, 0.2917473536580223, 0.2783308478523106, + 0.26534154859391007, 0.2529605327955265, 0.24012455326907042, + 0.2251783568095467, 0.20664133586010713, 0.18394038804498905, + 0.15783125545391968, 0.1302106484393621, 0.10374762653390808, + 0.0810333101799578, 0.06385331565204011, 0.05260385105711698, + 0.046427668006371, 0.04341418262800855, 0.041442700532316565, + 0.03904007245302131, 0.03587142696919614, 0.03293406567574308, + 0.03220768350473276, 0.035829416561282974, 0.04530657101596502, + 0.060677241254510024, 0.08043432691280435, 0.10202878644716581, + 0.12282421780410552, 0.1416210325285065, 0.15994109215104138, + 0.18276046965294726, 0.21853427771252384, 0.2778541761959272, + 0.37193459929680595, 0.5100481168038226, 0.6966882385400888, + 0.9318190054700553 + ], + "pressure:branch41_seg2:RESISTANCE_14": [ + 7813.271936201095, 8944.68733558368, 10194.579530684823, + 11500.672887421473, 12794.451086173996, 14015.102737694117, + 15116.59129903719, 16072.263687882456, 16870.976922191167, + 17519.852941472385, 18032.253199883617, 18422.616760588684, + 18705.128423276095, 18885.748138533767, 18967.10327614462, + 18949.462749350198, 18832.147439933906, 18620.865549053025, + 18324.427606563266, 17957.073005092265, 17536.48853135845, + 17078.581985727404, 16597.56141403414, 16102.966210041788, + 15600.147727867983, 15092.525995758107, 14583.314327163487, + 14077.981307492748, 13584.784048652598, 13113.78507974519, + 12673.58666464081, 12268.453782101127, 11894.397034713824, + 11537.589439781752, 11176.091637990194, 10782.750683930088, + 10331.38632260728, 9802.647873868782, 9190.95918103515, 8504.909334636573, + 7769.265012160164, 7020.092358449158, 6298.223417436916, + 5642.365311126565, 5083.248992718541, 4638.348019015459, + 4310.385937823036, 4092.4484100348486, 3967.679334933894, + 3917.7640470424735, 3926.634086634335, 3981.1209160173635, + 4074.1684067153897, 4200.531793836416, 4354.887026155315, + 4530.147618954635, 4714.52383707492, 4893.269334155642, 5050.53926112787, + 5172.755594287438, 5251.006122765035, 5284.243799187758, + 5278.227823488691, 5243.4866965118845, 5193.227352078291, + 5138.308745271392, 5085.138849249319, 5034.458877254527, + 4981.916574302984, 4920.736390840477, 4844.857665065238, + 4751.934481841805, 4645.060366658424, 4531.99924043325, 4423.676528395273, + 4330.69862291119, 4260.374696690272, 4214.326572698577, 4189.045223482677, + 4176.709938796095, 4168.639950111406, 4158.805125105491, + 4145.834714034482, 4133.811032737652, 4130.8376880069945, 4145.6627502529, + 4184.456168351625, 4247.37387639076, 4328.246767934263, 4416.640694754626, + 4501.763910486805, 4578.706066068927, 4653.6966907262495, + 4747.1046494565935, 4893.539774015849, 5136.357555919112, + 5521.4627270661495, 6086.811266583527, 6850.796734071048, + 7813.271936201095 + ], + "flow:branch43_seg0:RESISTANCE_15": [ + 0.6437108110208085, 0.8268637729286447, 1.0245930405177823, + 1.2269147398038256, 1.4231229748257448, 1.6043441202499693, + 1.7644252568352494, 1.900553927661607, 2.0118305450993326, + 2.100323145647952, 2.1686450350257216, 2.21885493234399, + 2.2531660835354974, 2.2720467790023258, 2.2755660163257474, + 2.2638119609253877, 2.2365648145688617, 2.1951861292582975, + 2.1414318341929404, 2.077753051312643, 2.0072778529306055, + 1.932391531349031, 1.8551394448194636, 1.7767722941341186, + 1.6978204212572905, 1.618694848646584, 1.5398984699789129, + 1.462407160978312, 1.3876630995018056, 1.3173033663550695, + 1.2524925826911222, 1.1934979604631826, 1.1391165369298888, + 1.0864683151203867, 1.0316083877621032, 0.9700398839803809, + 0.8978792653755643, 0.8126564969118318, 0.7145919367649843, + 0.6061017911102496, 0.49207001210466733, 0.37888929295696677, + 0.273070417549503, 0.18026581133386627, 0.10443116631773634, + 0.04730246889524652, 0.008022975215173806, -0.015201879307249392, + -0.02553828123655012, -0.02605767630486861, -0.018938260687267755, + -0.006000138087748681, 0.012026427422872788, 0.034552230381252685, + 0.06067598339860164, 0.08921197867747586, 0.11810012741873503, + 0.1449021678146683, 0.1671992038083397, 0.18316340314827448, + 0.1918064137444918, 0.19352188332097442, 0.18974057538706673, + 0.1823398883352574, 0.17350596096970314, 0.16473892407033475, + 0.15666634094101226, 0.14901696104351125, 0.14080115267549367, + 0.1308425561762333, 0.11831103011198071, 0.10311113303109873, + 0.08611380826856749, 0.06881004475449462, 0.053031679714177625, + 0.04033514272340254, 0.03157195727987656, 0.026561190975663364, + 0.02439527405902367, 0.023636643059179466, 0.02290464935481, + 0.02149620453045824, 0.01955096897602895, 0.018052598075128008, + 0.01848541261219712, 0.022179991402391963, 0.029854921095266624, + 0.04111230416050784, 0.05454957029647087, 0.06834530497551299, + 0.08089010545762473, 0.09189608665378554, 0.10312852439401807, + 0.11867024302435784, 0.1447292033588137, 0.18843966910642607, + 0.2567452639618698, 0.3549783437382871, 0.4844030154758789, + 0.6437108110208085 + ], + "pressure:branch43_seg0:RESISTANCE_15": [ + 8473.771603166246, 9746.96394194535, 11121.483829718572, + 12527.928119870887, 13891.874512181934, 15151.637780957248, + 16264.445756107492, 17210.74757388271, 17984.289728654185, + 18599.448227231107, 19074.38952886543, 19423.42487031229, + 19661.939685342688, 19793.189306254004, 19817.653371436747, + 19735.944764983236, 19546.53555405179, 19258.89060101699, + 18885.21629108079, 18442.55165895341, 17952.64157658684, + 17432.06746233918, 16895.047674618578, 16350.276490875793, + 15801.440596375644, 15251.397223884866, 14703.642251220548, + 14164.959502583504, 13645.374312970196, 13156.26689003895, + 12705.733126502382, 12295.630552853716, 11917.596743881888, + 11551.611329504958, 11170.251189374158, 10742.256214526702, + 10240.629891849789, 9648.201711779348, 8966.503499617558, + 8212.331572274421, 7419.636843808514, 6632.8582789667735, + 5897.255752730813, 5252.122240248398, 4724.955832220802, + 4327.824280947586, 4054.7719103844674, 3893.3237604927517, + 3821.4700071608804, 3817.8594195138435, 3867.3502130368815, + 3957.2898918730966, 4082.602007295899, 4239.190682972839, + 4420.790597357969, 4619.159273409093, 4819.975952952557, + 5006.290998804348, 5161.289395275324, 5272.264921319917, + 5332.347022971257, 5344.272152106135, 5317.986296601169, 5266.54023775552, + 5205.130973466284, 5144.186699905005, 5088.069938879964, + 5034.895085574506, 4977.782690764857, 4908.555261212115, + 4821.442048234178, 4715.779588222485, 4597.622265283396, + 4477.334725793595, 4367.651031473104, 4279.390740963499, + 4218.473240892644, 4183.640775157545, 4168.584350211028, + 4163.310708076603, 4158.22223575964, 4148.431396773043, 4134.909043767002, + 4124.493081438001, 4127.501802383426, 4153.184758103569, + 4206.5372214426725, 4284.793197890266, 4378.202685349461, + 4474.104075740428, 4561.309566162004, 4637.817916306786, + 4715.900484711406, 4823.939125667517, 5005.0886321170665, + 5308.943014457499, 5783.771044317383, 6466.640724846746, + 7366.339527360361, 8473.771603166246 + ], + "flow:branch44_seg0:RESISTANCE_16": [ + 0.33305015306824726, 0.43579720060114757, 0.5557429107301551, + 0.6890726855161876, 0.8306176444725905, 0.9747942483509615, + 1.1162956644260689, 1.2507128458354626, 1.3746772966986345, + 1.4862953557823402, 1.5846197079758735, 1.6693605785551697, + 1.7407097176854796, 1.79872401909064, 1.8434426764953233, + 1.874824912293184, 1.8927884584538124, 1.897652222125087, + 1.8900051788016472, 1.8709195210223508, 1.8418723324745048, + 1.8044320294545684, 1.7602130133734966, 1.7106160220693085, + 1.6567682968849997, 1.599597012205816, 1.5399112031421873, + 1.4785718101809546, 1.4165755657382484, 1.3550457806275589, + 1.2950607572010995, 1.2374525904119733, 1.1824968192239773, + 1.129704228048638, 1.0778110063792947, 1.0248831666678933, + 0.9686851329552162, 0.907129215829879, 0.8388582683937683, + 0.7634956351139265, 0.6819758410483807, 0.5964113755869602, + 0.5097626881473049, 0.4253744397643981, 0.34647935921178524, + 0.275669524902467, 0.21458007736551285, 0.16400569849613217, + 0.12376152608582276, 0.09315116410198357, 0.07124806883626858, + 0.057033015402873095, 0.04970801038791874, 0.04854813208687858, + 0.05283450155749287, 0.061759314091900275, 0.07421040523407953, + 0.08881669763793448, 0.1040264194957993, 0.11830924651947104, + 0.13035503724372233, 0.13935133870372887, 0.145025215911453, + 0.14760539786399707, 0.14772935420838829, 0.1461258066048907, + 0.14341380226492573, 0.13992781686848493, 0.1356516888041409, + 0.13030960240609132, 0.1235367771676807, 0.11509538365377099, + 0.1050526540361298, 0.09381863232861645, 0.08211990309476652, + 0.07081219253899577, 0.06066933243895147, 0.05216853569567759, + 0.04543197619065073, 0.04020231692076544, 0.03600931177320128, + 0.03239871847925204, 0.029116130789663172, 0.026242522917822465, + 0.024190553388445817, 0.023546742304505493, 0.02486549265106117, + 0.02839994926872112, 0.03398606644060003, 0.04107432241567219, + 0.04892069651562066, 0.05698784560345676, 0.06537108942813191, + 0.07514961894224567, 0.08857886745832305, 0.10891086079170387, + 0.14007937623544453, 0.18600552043854945, 0.24970394351101133, + 0.33305015306824726 + ], + "pressure:branch44_seg0:RESISTANCE_16": [ + 6422.628295188749, 7170.325449367242, 8043.178424443345, + 9013.428135442138, 10043.460292484178, 11092.643106077532, + 12122.35839865279, 13100.521240561373, 14002.618861420156, + 14814.870961463133, 15530.383865111375, 16147.048862268193, + 16666.261331743153, 17088.435292979382, 17413.855961339304, + 17642.226595447355, 17772.948525330114, 17808.342459685682, + 17752.69441267991, 17613.806801309518, 17402.42846260683, + 17129.9728671249, 16808.188122178297, 16447.267490935028, + 16055.4139842306, 15639.374712234328, 15205.037077691337, + 14758.666202251197, 14307.515374537898, 13859.759002660201, + 13423.243965136298, 13004.025472732641, 12604.108640963903, + 12219.93341519043, 11842.302961615622, 11457.143523176686, + 11048.186663721028, 10600.240127420566, 10103.427865299802, + 9555.008929790321, 8961.783922400129, 8339.125570063312, + 7708.577261692828, 7094.478319902766, 6520.353528735575, + 6005.065616603844, 5560.513610775248, 5192.480464685355, + 4899.6209236477225, 4676.867267039133, 4517.476974168367, + 4414.033077201481, 4360.7285245595085, 4352.288012391961, + 4383.480210434536, 4448.426669664092, 4539.0340947625455, + 4645.325063950389, 4756.007229735547, 4859.944319663154, + 4947.602346444589, 5013.069035379127, 5054.358220258287, 5073.13437733046, + 5074.036415959978, 5062.367292530023, 5042.6318551057775, + 5017.264105637433, 4986.146434994986, 4947.271714084701, + 4897.985410700787, 4836.556824097069, 4763.475207295477, + 4681.724478078683, 4596.592041033683, 4514.305073127217, + 4440.494800091337, 4378.633932204497, 4329.611536994067, + 4291.554955833773, 4261.042176230198, 4234.7676467366155, + 4210.880036019033, 4189.968598857666, 4175.036279005994, + 4170.351222580051, 4179.947857275329, 4205.6683350705225, + 4246.318884284446, 4297.9005982889585, 4354.999188720697, + 4413.704373542453, 4474.7098009586225, 4545.86881589199, + 4643.594357786629, 4791.551636552009, 5018.367013312991, + 5352.574644068096, 5816.112339802729, 6422.628295188749 + ], + "flow:branch46_seg0:RESISTANCE_17": [ + 0.848380475129587, 1.087856786936846, 1.3451944484078118, + 1.6071974327049345, 1.859949613871118, 2.0921121940622163, + 2.295998399838869, 2.468312845741347, 2.6083020357738462, + 2.7189377352847006, 2.8037747328270246, 2.8655705055129532, + 2.9071563759057404, 2.929052345170956, 2.9312770870795144, + 2.9138868346848277, 2.8765922266790773, 2.821236108964708, + 2.75015863085882, 2.666604151485942, 2.5746582693109383, + 2.4773918277047926, 2.377391794274785, 2.2761876770508906, + 2.1743811035141203, 2.0724489167566778, 1.971029217998982, + 1.8714072346197796, 1.7754859928525097, 1.6854007190288172, + 1.602635845801184, 1.5274442985622665, 1.4581272763867221, + 1.3907962924955224, 1.320194771860872, 1.2404226992724643, + 1.1464781069676324, 1.0352976328338837, 0.9074027995045272, + 0.7661964852875544, 0.6182807679576559, 0.47212063369414986, + 0.3362399214635854, 0.21790709902715152, 0.12206474373349124, + 0.05073929323575028, 0.002551514582849719, -0.02505524365628969, + -0.03632019796279102, -0.035281700094733845, -0.024735175354764775, + -0.006956209784346822, 0.01718049115382859, 0.046976311033623534, + 0.08128259898200484, 0.11852500337878365, 0.15598498220480267, + 0.19046308339099, 0.2188168804385518, 0.23872387563132663, + 0.24900610197195214, 0.2503069646248778, 0.24460040747456743, + 0.23441936269096217, 0.22263273393732966, 0.21115094370241902, + 0.20071018367675006, 0.1908556640262151, 0.1802154323897882, + 0.167218681726983, 0.15080167356638433, 0.13089670856930177, + 0.10872079801247032, 0.08628981308118204, 0.06602445049939767, + 0.04993364033260314, 0.039061192565138965, 0.03308226182387463, + 0.030716306659770785, 0.030034094179441806, 0.029231848963923075, + 0.02743526649200892, 0.024906477580695828, 0.02301239921734263, + 0.023743853712108808, 0.02883928666149309, 0.03918178982427007, + 0.05415784252410852, 0.07184653044704677, 0.08981020557937669, + 0.1059645641619779, 0.12003666886352751, 0.1345016667359309, + 0.15488589160313035, 0.1894643013571296, 0.2476294785264208, + 0.3383576680621335, 0.4684278939048264, 0.6391586973951566, + 0.848380475129587 + ], + "pressure:branch46_seg0:RESISTANCE_17": [ + 8658.511053849168, 9973.772961344757, 11387.133727353084, + 12826.11757630062, 14214.29377383561, 15489.386895851805, + 16609.179320823125, 17555.571993636397, 18324.426531780024, + 18932.06459033201, 19398.009929023898, 19737.4072800382, + 19965.806952660954, 20086.064919241824, 20098.28374065366, + 20002.77226244586, 19797.94124223028, 19493.912036054975, + 19103.537310772048, 18644.635872502775, 18139.64681758034, + 17605.435961580635, 17056.211557186798, 16500.374032958352, + 15941.227672739922, 15381.391414289048, 14824.369864061415, + 14277.221802113309, 13750.399109446715, 13255.628966243677, + 12801.064236172924, 12388.094046751436, 12007.388171834258, + 11637.590100208832, 11249.829448638595, 10811.701904558364, + 10295.73544949956, 9685.105356769925, 8982.675954988485, + 8207.136676026663, 7394.747730098344, 6592.000871586709, + 5845.711088637021, 5195.798566673908, 4669.409137627304, + 4277.672487907458, 4013.013536085952, 3861.3905332621744, + 3799.5206757501523, 3805.2243575738903, 3863.1484258972137, + 3960.794811015533, 4093.3594186671903, 4257.005278229431, + 4445.423720895263, 4649.968026246238, 4855.707303060843, + 5045.069385643224, 5200.795306541546, 5310.129345771395, + 5366.601823270366, 5373.746476039424, 5342.404681996801, + 5286.487918115954, 5221.752898186625, 5158.692125236407, 5101.34894234107, + 5047.225533578005, 4988.786804282787, 4917.405501727217, + 4827.239316580444, 4717.916427677064, 4596.120955718634, 4472.92455351466, + 4361.622273784966, 4273.247647027891, 4213.533530496438, + 4180.695794721268, 4167.701395907021, 4163.954519727812, + 4159.548394694071, 4149.681128611885, 4135.792407418348, + 4125.389670286106, 4129.406995535405, 4157.392347447442, + 4214.195879853194, 4296.4479885987, 4393.5985470111045, 4492.259401781556, + 4580.983051830169, 4658.270459225745, 4737.715731077473, 4849.67083126805, + 5039.583832800384, 5359.041073878463, 5857.342265891162, + 6571.719450253064, 7509.414375368155, 8658.511053849168 + ], + "flow:branch47_seg0:RESISTANCE_18": [ + 0.5442446723565345, 0.7139168348971404, 0.9133674212587305, + 1.1364512750677087, 1.3746789326729758, 1.6186736573161893, + 1.8593515250073738, 2.088975819404874, 2.3016140185986464, + 2.4937433957482753, 2.6634883103486473, 2.810276941378878, + 2.934322129037769, 3.0357398186816713, 3.114642356727535, + 3.1709308959850975, 3.2044931945967443, 3.215776336351961, + 3.2056744364381293, 3.175936537108917, 3.1289556724635017, + 3.067375210641746, 2.993945961824923, 2.9110811629898454, + 2.820761776076197, 2.724601662823158, 2.6239894799810655, + 2.5203698351572976, 2.4153989574568198, 2.3109535390503817, + 2.2088818614697896, 2.110668822205077, 2.016911621099471, + 1.9269737376015377, 1.8388884844351945, 1.7495195234659526, + 1.6551227691049784, 1.5521166485609115, 1.4380030730238855, + 1.3118935331340806, 1.175088852919846, 1.0308857885958398, + 0.884128624909701, 0.7404231016003053, 0.6053070774068247, + 0.4833107749378823, 0.37746157344792675, 0.2892979492226327, + 0.21869632972050215, 0.16461862356488785, 0.12551110196137574, + 0.09966342294728969, 0.08568238388718054, 0.08230543437625118, + 0.0883366862347501, 0.10242909784577847, 0.12276495926318894, + 0.1470864871108216, 0.17279640758515305, 0.1972806237596647, + 0.21826075695938363, 0.23424541947499813, 0.24462700102395882, + 0.2496969072274468, 0.2504490546672664, 0.248100345824539, + 0.2437419058449257, 0.23800986396102294, 0.23095510269055305, + 0.22216560570406377, 0.21103216928594817, 0.19711738032392387, + 0.1804558879202246, 0.1616632006511039, 0.14190643040281797, + 0.12261379177871841, 0.10512320008117812, 0.09032141950276594, + 0.07850136113271229, 0.06930322444720917, 0.061977490617726595, + 0.055739083270471744, 0.05010073122200343, 0.045121333466508505, + 0.04142695984226715, 0.039981587409187266, 0.04174346206133486, + 0.04721536754275937, 0.056227389349590186, 0.06792446109753553, + 0.08107626401914093, 0.0947078273293268, 0.10881427167588027, + 0.12498455049898395, 0.1467674549553822, 0.179451159096339, + 0.22959321634847987, 0.3038328652875577, 0.40755684048492724, + 0.5442446723565345 + ], + "pressure:branch47_seg0:RESISTANCE_18": [ + 6331.250605754873, 7058.346384481821, 7913.051583240756, + 8869.032375716535, 9889.908880307234, 10935.498985739334, + 11966.875370709864, 12950.883900156296, 13862.10194980478, + 14685.433585372873, 15412.84112835601, 16041.874155277237, + 16573.444749814735, 17008.04977237212, 17346.17066082522, + 17587.383825507357, 17731.20827661059, 17779.55990140369, + 17736.27024991055, 17608.83448940209, 17407.507484116537, + 17143.61685425591, 16828.950641187374, 16473.850284500255, + 16086.804796432036, 15674.73005546528, 15243.576869594368, + 14799.535812909438, 14349.704320680921, 13902.12457811404, + 13464.717022359771, 13043.844881661822, 12642.067335313719, + 12256.656703069712, 11879.185143879704, 11496.212514209836, + 11091.694291575863, 10650.28236925946, 10161.271692280821, + 9620.854733257682, 9034.605910796574, 8416.652807709417, + 7787.754627734877, 7171.933636162365, 6592.921207969043, + 6070.130697037496, 5616.535325630909, 5238.7279230987515, + 4936.178944276136, 4704.4398582632875, 4536.852474165549, + 4426.087466991591, 4366.174548274655, 4351.703313290644, + 4377.549024815089, 4437.939208101693, 4525.0844343543295, + 4629.309428987561, 4739.484099766678, 4844.406262361647, + 4934.312385194225, 5002.811427497035, 5047.299598141718, + 5069.0256570537995, 5072.24883297308, 5062.183915667643, + 5043.506701541531, 5018.943193922688, 4988.711439562525, + 4951.045825708632, 4903.335732897152, 4843.706715593015, + 4772.307255524712, 4691.774990362809, 4607.111342338821, + 4524.436636635521, 4449.484239021829, 4386.054198318304, + 4335.401725829686, 4295.984969091041, 4264.592016565791, + 4237.858582039766, 4213.696563285294, 4192.358360044346, + 4176.526868142526, 4170.333016546338, 4177.883174468772, + 4201.331920082446, 4239.951119103815, 4290.076557266731, + 4346.4359520181215, 4404.8512630029945, 4465.301580743071, + 4534.5960442370615, 4627.942281130043, 4768.001693105551, + 4982.875350745127, 5301.014369836462, 5745.502513262683, 6331.250605754873 + ], + "flow:branch48_seg0:RESISTANCE_19": [ + 0.8971196633946733, 1.1546947558060292, 1.434076121669213, + 1.721119060454291, 2.000664866184031, 2.2599504492284, 2.4899299456785937, + 2.6861638478236904, 2.8472022770152305, 2.9756815409216815, + 3.075139958665888, 3.1486394034360723, 3.199291242229254, + 3.227914868934552, 3.2347231378351426, 3.2197825765976793, + 3.1828405382010816, 3.1256884827589144, 3.0507148274156566, + 2.9613794730301226, 2.8620231273263492, 2.756104229037291, + 2.64659451320411, 2.5353388358369817, 2.4231811438622683, + 2.310725063504887, 2.198672949122856, 2.0883650695209437, + 1.981799449475471, 1.8812752902040313, 1.7885024231434545, + 1.703965045440207, 1.6261045481259344, 1.5510329355055854, + 1.4732646934183464, 1.3864695931718265, 1.2850572325959904, + 1.1653763204041174, 1.0274308111574268, 0.8743838770130983, + 0.7129314349308689, 0.5519506831346455, 0.4006826939401551, + 0.2672612310157157, 0.1575029252502059, 0.07410258242471443, + 0.016171499076180585, -0.018727398056282426, -0.03497006089808312, + -0.03687732939631275, -0.02767117092762787, -0.009975544607977406, + 0.015060899231349918, 0.046553977817647564, 0.08327926676998691, + 0.12357267913720593, 0.16459194832042354, 0.20292853446627293, + 0.23514033577123977, 0.2585554135781793, 0.2716810024853763, + 0.274934210372599, 0.2701986248326896, 0.26011037641349705, + 0.24774122854898872, 0.23528159447338604, 0.2237329071967898, + 0.2128100499474575, 0.2011864287611357, 0.18721705211371734, + 0.169685269703233, 0.14837746491421486, 0.12441910408842387, + 0.0998571317155109, 0.07725943599337659, 0.05886334410689719, + 0.04595344135494158, 0.038394693931726114, 0.03498107252659358, + 0.03372272264492713, 0.032664739456819844, 0.030731661896548797, + 0.02802354324552245, 0.025845004554215914, 0.026246630083812342, + 0.0311350749633739, 0.04159837838474243, 0.05718740479846456, + 0.07603730370214912, 0.09559962452377964, 0.1135646874625772, + 0.12938444514866745, 0.1453369128415864, 0.16696255379614883, + 0.20284368445351142, 0.26300733141625776, 0.3573537987229991, + 0.4936006836677308, 0.6740466660299226, 0.8971196633946733 + ], + "pressure:branch48_seg0:RESISTANCE_19": [ + 8405.681987055184, 9670.899511937203, 11043.23018609671, + 12453.194764366257, 13826.333172685963, 15099.952685138966, + 16229.61971368702, 17193.52724700336, 17984.55343235833, + 18615.647901767577, 19104.190997875805, 19465.222744857856, + 19714.026282143543, 19854.626500100116, 19888.06894613205, + 19814.68040637751, 19633.21987016388, 19352.48704987636, + 18984.21393093184, 18545.395662822233, 18057.353948012744, + 17537.07675398385, 16999.161343297652, 16452.669710780996, + 15901.747352146645, 15349.35929973173, 14798.955541786772, + 14257.11952379934, 13733.665610731829, 13239.887556364916, + 12784.184110275748, 12368.933665147677, 11986.480281259444, + 11617.725992872236, 11235.725769764857, 10809.385315500702, + 10311.244386426362, 9723.367716825109, 9045.774731634772, + 8294.003038975829, 7500.943208364548, 6710.200336317014, + 5967.166881137733, 5311.796163778904, 4772.659670976622, + 4362.994379445011, 4078.4349478563754, 3907.0103903120817, + 3827.2258836433384, 3817.8573165741213, 3863.0782768866156, + 3949.999789070837, 4072.979644031551, 4227.674706224271, + 4408.070561871094, 4605.993159848411, 4807.481190941016, + 4995.791792644751, 5154.017245026515, 5269.032895454793, + 5333.506230024198, 5349.486096681589, 5326.224741091729, + 5276.670925247838, 5215.913254544803, 5154.711112526762, + 5097.983571851376, 5044.33012933773, 4987.234510775213, 4918.616462420734, + 4832.499757033947, 4727.835102608524, 4610.150827702677, + 4489.501592557503, 4378.5009504459795, 4288.13872781716, + 4224.724850903118, 4187.596029104091, 4170.8282058465975, + 4164.647148867009, 4159.450299831286, 4149.954957780491, + 4136.652587801073, 4125.951532411476, 4127.9243305330965, + 4151.936536345154, 4203.332634985513, 4279.906457515646, + 4372.497795489849, 4468.588573907832, 4556.833567835564, + 4634.540750142861, 4712.899808471227, 4819.125684841377, + 4995.375006525693, 5290.900865743924, 5754.333889215625, + 6423.583174652582, 7309.939914513858, 8405.681987055184 + ], + "flow:branch50_seg0:RESISTANCE_20": [ + 0.22152322295486504, 0.2915321399918065, 0.37641814225773845, + 0.4744838142727215, 0.582775374287747, 0.6975380489173655, + 0.8146959728008476, 0.9303448974757836, 1.041106155708273, + 1.1444563691425107, 1.238649385613974, 1.3226582467587062, + 1.3959847692326783, 1.4583563905788248, 1.5096463816347538, + 1.549738037410408, 1.5785490425280537, 1.5961666583875318, + 1.6028566382895582, 1.5992138174364243, 1.5861234833926596, + 1.5646696359352588, 1.5360663626429836, 1.5014918881094381, + 1.462012460745049, 1.4185560301187945, 1.371933694487669, + 1.3229239210398338, 1.2723419362435497, 1.2210717780591305, + 1.1700146356630259, 1.1199822870530611, 1.0715079804944017, + 1.0246826971444134, 0.9790524545117669, 0.9336121397845408, + 0.8869480428252248, 0.8375019349716344, 0.7839180185169187, + 0.725334394238458, 0.6616813901255413, 0.5937449150551074, + 0.523107454022111, 0.4519175689350403, 0.38258448926036787, + 0.3173825363068869, 0.2581742897522487, 0.206266764396539, + 0.16227634229422175, 0.12629618911729645, 0.09802007579407397, + 0.07690724567752999, 0.06238247946600637, 0.05385379798151839, + 0.05073474044144268, 0.05238913242683008, 0.05802697085093339, + 0.06668026503607002, 0.07721098905214073, 0.08840125363327775, + 0.09908495717561924, 0.10832451140823234, 0.1155048221552978, + 0.1203954521380601, 0.12311839671695964, 0.12401372322040491, + 0.1234992825017964, 0.12191687539534982, 0.11943229172374117, + 0.11602162391041602, 0.11152786083560065, 0.10578155676576423, + 0.09872542425702939, 0.09049828074222943, 0.08146815408175365, + 0.07216873889545754, 0.06318567797295664, 0.055014483960932434, + 0.04796313934588882, 0.042086848597463054, 0.037233561313932115, + 0.03314773205263098, 0.029600053613028265, 0.026510430071876086, + 0.0240059803178267, 0.022389044577320154, 0.02203720041812045, + 0.023242461360627086, 0.026091491245980775, 0.030402529169052128, + 0.03578316288682986, 0.04181727426967166, 0.048330623292260906, + 0.055670961052728056, 0.0649293748342258, 0.07797931081748435, + 0.09739038644668564, 0.12605273590962343, 0.16669993279995562, + 0.22152322295486504 + ], + "pressure:branch50_seg0:RESISTANCE_20": [ + 5724.124390272292, 6269.322716235545, 6930.377168894466, + 7694.069031015663, 8537.395563334216, 9431.116259772336, + 10343.490092678512, 11244.112510519306, 12106.671954740852, + 12911.517476384322, 13645.050818580901, 14299.274486089136, + 14870.308848475028, 15356.031310480683, 15755.45496172225, + 16067.670955614112, 16292.038256584798, 16429.236417627373, + 16481.335007316862, 16452.966337796308, 16351.024635095866, + 16183.951607626032, 15961.202029771697, 15691.951390930912, + 15384.503159762082, 15046.083795022148, 14683.009769392329, + 14301.343439294711, 13907.433426084803, 13508.164224430579, + 13110.553895047313, 12720.924204135668, 12343.427852148598, + 11978.773359897306, 11623.425313540745, 11269.556341286045, + 10906.15709699575, 10521.09278850272, 10103.8050659366, 9647.581841277613, + 9151.8805398765, 8622.821470719628, 8072.728323511494, 7518.333143330273, + 6978.397938325425, 6470.63411188293, 6009.546606590208, + 5605.3138727243895, 5262.736019735394, 4982.538580463331, + 4762.336779020901, 4597.919443014796, 4484.8070202165445, + 4418.389439930834, 4394.09960627243, 4406.9832756547785, + 4450.888255205463, 4518.276263811774, 4600.284861398183, + 4687.429667730533, 4770.629601866049, 4842.583143121504, + 4898.500211473388, 4936.586263827272, 4957.7913458216635, + 4964.763750645628, 4960.757515005033, 4948.434431861615, + 4929.085598658526, 4902.524833816805, 4867.529404529247, + 4822.779742744054, 4767.829719313369, 4703.760382697839, + 4633.437770280771, 4561.018058527042, 4491.061973155958, 4427.42834639773, + 4372.515608954824, 4326.753668697633, 4288.958424686021, + 4257.139802605958, 4229.512059909884, 4205.451445151282, + 4185.947903728889, 4173.35592693186, 4170.61592101955, 4180.001957484829, + 4202.188935799244, 4235.761382828845, 4277.663366457674, + 4324.654343662268, 4375.377410577533, 4432.540698175594, + 4504.641109214437, 4606.268209777154, 4757.433038288962, + 4980.642675100254, 5297.18497624761, 5724.124390272292 + ], + "flow:branch51_seg2:RESISTANCE_21": [ + 0.4227308155387928, 0.5513003161500909, 0.6989127276963935, + 0.8601712715307613, 1.028278947673251, 1.1963419908762554, + 1.3581883479804957, 1.5090589708046482, 1.6456076667378348, + 1.766393315633189, 1.8709711501031903, 1.9595220855313171, + 2.032636009759686, 2.090496795945694, 2.133197238569801, + 2.160680890888763, 2.172849844561363, 2.170204982674455, 2.15357230777917, + 2.1244119497342218, 2.084642556450102, 2.036184830718737, + 1.9809452243356145, 1.9204704846564022, 1.8559294763851188, + 1.7882585859107933, 1.7182895899339847, 1.6469847619688531, + 1.57552014067446, 1.5052367866827656, 1.437372701539955, + 1.3727908081902676, 1.3115711153689604, 1.2527889651675788, + 1.1945731301061353, 1.1343041501918756, 1.0691524173944564, + 0.9966744307359275, 0.9155502976328904, 0.8257927990249486, + 0.7291133199850016, 0.6286014645537157, 0.5282200951806448, + 0.4321622486177767, 0.3442360696122562, 0.2672253015520295, + 0.202591108286941, 0.1507717177725357, 0.11102282581960321, + 0.08214718689817718, 0.06283317439449844, 0.05178299477231595, + 0.048100199557727014, 0.0509877550861561, 0.05963845674875215, + 0.0730967668918387, 0.08997362238510337, 0.10856147372724502, + 0.12696555213310864, 0.14339704269339695, 0.15642423267217292, + 0.16532279233128955, 0.17005629267990854, 0.17118270959690032, + 0.16969430703703137, 0.16656688240411135, 0.16252923208978362, + 0.15787152494741563, 0.1524150567967507, 0.14568818503773917, + 0.13717905516084442, 0.12662271564930414, 0.11420663653521447, + 0.10056692031811017, 0.08671313286109879, 0.07374174640134122, + 0.06255592369220755, 0.05360356032148236, 0.04685668300900489, + 0.0418188244628069, 0.03779480780233827, 0.034204804458569604, + 0.03080515347117039, 0.027826245719550825, 0.025912848810936997, + 0.025867568619996752, 0.028365452630420323, 0.0336055323026786, + 0.04121590647452531, 0.05035402788053395, 0.06001453565672534, + 0.06959270247453606, 0.07942545286214335, 0.09118859392012818, + 0.10805709930319098, 0.13434438668225532, 0.1750302290633333, + 0.23478515455388407, 0.3168118349639578, 0.4227308155387928 + ], + "pressure:branch51_seg2:RESISTANCE_21": [ + 6702.746821482525, 7525.065341541992, 8469.180541710222, + 9500.575129713852, 10575.776128386638, 11650.69165894631, + 12685.845845733898, 13650.800260982722, 14524.15296922184, + 15296.68670056405, 15965.556764331242, 16531.920278422233, + 16999.550110391334, 17369.62229578314, 17642.73033942949, + 17818.513213231614, 17896.344704581792, 17879.428414930953, + 17773.047379463827, 17586.540452409474, 17332.179126639607, + 17022.248037855687, 16668.94067371675, 16282.149885874016, + 15869.351623825505, 15436.534927475492, 14989.019762929225, + 14532.960741725954, 14075.879697310265, 13626.353928255618, + 13192.301576846532, 12779.24181765441, 12387.686379078737, + 12011.721235481795, 11639.378190637253, 11253.903423037256, + 10837.199023949188, 10373.636589292786, 9854.774209356512, + 9280.693629836574, 8662.340709849706, 8019.476268332046, + 7377.446403457913, 6763.069386746253, 6200.701756394347, + 5708.148075164883, 5294.753810597639, 4963.321827774454, + 4709.091626604434, 4524.405736476989, 4400.875116050517, + 4330.199199055427, 4306.6443847632045, 4325.112920282418, + 4380.442000311814, 4466.520095246809, 4574.46288701697, 4693.349048463352, + 4811.059815370058, 4916.154094617185, 4999.474785239353, + 5056.3891418694575, 5086.664168083841, 5093.868625499842, + 5084.348941714304, 5064.3462258018, 5038.5217914281, 5008.73153148331, + 4973.8324707179445, 4930.808027104184, 4876.384426996126, + 4808.867065233797, 4729.454982636485, 4642.216631391814, 4553.60910048672, + 4470.645323961249, 4399.101846448402, 4341.843366303052, + 4298.690969037449, 4266.469296212388, 4240.732061415659, + 4217.770735264276, 4196.026885009083, 4176.974069200836, + 4164.7361612467985, 4164.44655337382, 4180.422786251488, + 4213.937846515374, 4262.613089059963, 4321.059660252857, + 4382.847365888873, 4444.108426444106, 4506.9977797386855, + 4582.23373150066, 4690.123116745705, 4858.254152109084, 5118.477000724869, + 5500.663924233348, 6025.298912465352, 6702.746821482525 + ], + "flow:branch52_seg0:RESISTANCE_22": [ + 0.8617807927699843, 1.094647368432805, 1.3397098008390615, + 1.5844320327452723, 1.8159802044876876, 2.0246628012340118, + 2.2046474965621377, 2.354536296577616, 2.474642764142903, + 2.5686599572078666, 2.64042365404471, 2.6919865751171757, + 2.725780258298576, 2.7416732951212577, 2.7391474837377165, + 2.71837345066755, 2.6789124425017468, 2.6229878102741244, + 2.5532520447998954, 2.472800828547782, 2.3857346502779984, + 2.2946787320163584, 2.2017139460010524, 2.1079652166774387, + 2.013661115513243, 1.9191740417328824, 1.8252014176457028, + 1.7331622762188355, 1.6450569536359894, 1.5629672423532768, + 1.4880789143555797, 1.4201560033939828, 1.3570010708112186, + 1.2942406240270317, 1.2265091731715414, 1.1481621202634913, + 1.0549351039258614, 0.9446687261656468, 0.8190983829124957, + 0.6825604984156572, 0.542144628616343, 0.4064129683474079, + 0.28327733700315005, 0.17897073279620185, 0.09709248652043409, + 0.03861735944407045, 0.0009993098996359338, -0.018716273757162397, + -0.024762137508477243, -0.020967006079713024, -0.009391366085011921, + 0.008197928404204847, 0.03136714064253797, 0.059701163470944965, + 0.09196472286203929, 0.12651276857713858, 0.1605071192424204, + 0.19076031931285622, 0.2143780599839192, 0.2295011564112096, + 0.23545757136286538, 0.23339004392216636, 0.22567827711686061, + 0.21481163742980663, 0.20348998782879707, 0.19319360224074353, + 0.18412538419537477, 0.17541372248678427, 0.1654633943802016, + 0.15272907413864992, 0.13641976568591457, 0.11680942076356371, + 0.09548623138155748, 0.07463281128206496, 0.05660782181420762, + 0.04313166780028577, 0.03483466298401939, 0.030940609115676615, + 0.029880558122908022, 0.029692267665914995, 0.02873654821504609, + 0.026528309492516177, 0.023742678411065646, 0.0220392669426791, + 0.02348410568584363, 0.0296067039187469, 0.04090121305100195, + 0.05631059966208857, 0.07354933378044602, 0.09019456327752544, + 0.10447347109091236, 0.11676196031699133, 0.13033914936907573, + 0.15141246668965122, 0.1886064794850264, 0.25107960098629045, + 0.3467891203232435, 0.48141815835228907, 0.6542993825585444, + 0.8617807927699843 + ], + "pressure:branch52_seg0:RESISTANCE_22": [ + 9044.850417296004, 10408.317690923384, 11843.19345886212, + 13276.07730397138, 14631.825133132428, 15853.691733907202, + 16907.52799673364, 17785.148466406798, 18488.38909855906, + 19038.87327834104, 19459.060038905733, 19760.968353634144, + 19958.835226292966, 20051.89124141494, 20037.102252694633, + 19915.467302930796, 19684.41742784558, 19356.97066733489, + 18948.657736400815, 18477.604300882853, 17967.81931189179, + 17434.673821748107, 16890.351636518837, 16341.43935053246, + 15789.275282588227, 15236.03988367517, 14685.816661664634, + 14146.91425855633, 13631.044930241758, 13150.397870796163, + 12711.915945638384, 12314.21753846234, 11944.436330061593, + 11576.964892716387, 11180.387511982794, 10721.65425530471, + 10175.79667384426, 9530.171181952383, 8794.938772249521, 7995.48983204905, + 7173.334730466322, 6378.606349009942, 5657.629527508343, + 5046.899366451209, 4567.490465018058, 4225.110190550211, + 4004.8511031069493, 3889.4135268038967, 3854.0141254846462, + 3876.2351655265943, 3944.012201621806, 4047.0000492078275, + 4182.65911729339, 4348.558893793225, 4537.466671714031, 4739.750445442582, + 4938.792255064233, 5115.929090185937, 5254.214356718304, + 5342.762260151119, 5377.637925890656, 5365.532255531158, + 5320.378752367589, 5256.753014988035, 5190.463129157427, 5130.176311498, + 5077.080591342436, 5026.072559791464, 4967.81195842966, 4893.250682936061, + 4797.757337583668, 4682.935949198217, 4558.08561029075, 4435.985838058814, + 4330.446933744411, 4251.542114879593, 4202.961959037527, + 4180.161713892364, 4173.954962953968, 4172.85249526269, 4167.256620499129, + 4154.327065358136, 4138.016794959105, 4128.043075956902, + 4136.502814484709, 4172.351507223765, 4238.482481708542, + 4328.706655319917, 4429.641921543685, 4527.102132897275, + 4610.707190648822, 4682.658061461393, 4762.154454997809, + 4885.541757068043, 5103.318048392918, 5469.107154905383, + 6029.500148271231, 6817.7725180179705, 7830.016936346063, + 9044.850417296004 + ], + "flow:branch53_seg0:RESISTANCE_23": [ + 0.8105306218571235, 1.04126024795822, 1.295069897663861, + 1.5613408159704552, 1.827812795431563, 2.0835389617385554, + 2.3200796128205683, 2.5325519853089324, 2.7177535600903937, + 2.8759608417542855, 3.008712767173204, 3.116724711427678, + 3.201736774628015, 3.263844819452447, 3.302732829945594, + 3.3186980639523544, 3.311348787333518, 3.282281380883483, + 3.2337219558370864, 3.1683165445278405, 3.0898927218628573, + 3.0014331107796366, 2.9056071508737484, 2.804439608355703, + 2.699108723579434, 2.5907144525726906, 2.480431309877306, + 2.3698683276584145, 2.2610897315739407, 2.1563226282362744, + 2.057214228292917, 1.964357608081354, 1.8767525166326688, + 1.7913691678191461, 1.7039510284819985, 1.6094499282079067, + 1.5033609840430804, 1.3824451972024159, 1.246482117056507, + 1.097641245162555, 0.9407942194068007, 0.7829103335113051, + 0.6312770146609913, 0.4926044092846061, 0.3719613130356954, + 0.2724401421485019, 0.19404649749032118, 0.13586426210424482, + 0.09537609324746368, 0.06960299695385651, 0.05655696292064332, + 0.05419627554111215, 0.06144933262751924, 0.07740987599847929, + 0.1005967559739447, 0.12932672595587, 0.16093881230748855, + 0.1923098669854454, 0.2203524766036155, 0.24260602635528097, + 0.25744645169625435, 0.264748902742235, 0.2656894456615612, + 0.261837375868012, 0.2553491916909403, 0.24778809222528306, + 0.23984063303433392, 0.2313518081398933, 0.22142489410775015, + 0.2089346940846942, 0.19311020153892627, 0.17387730414039304, + 0.15221225663367013, 0.12973198308636985, 0.10844170523593173, + 0.09011790077802186, 0.07584920694443603, 0.06563171037130369, + 0.05869406878080702, 0.05370903961847723, 0.0492867165096072, + 0.04473958140540464, 0.040213978067797376, 0.03671296605851338, + 0.03578592172136118, 0.03882861983831204, 0.046632856996425394, + 0.058844556798664197, 0.0739804766999588, 0.0901957653374343, + 0.10580883618705034, 0.1205554699593967, 0.13643175439201055, + 0.1580156322673734, 0.19235952907938167, 0.24776379419345182, + 0.33238477559346113, 0.45327457867878806, 0.6127615909268392, + 0.8105306218571235 + ], + "pressure:branch53_seg0:RESISTANCE_23": [ + 7675.209279105243, 8721.697060768412, 9872.865646153217, 11080.5530477615, + 12289.152374054622, 13449.013433139315, 14521.857460180372, + 15485.538394906263, 16325.531023632047, 17043.089449175823, + 17645.19361018326, 18135.088132382436, 18520.665342108197, + 18802.360030172575, 18978.738887634234, 19051.150144921783, + 19017.817068820383, 18885.980138259634, 18665.736011597823, + 18369.085924019593, 18013.390066504246, 17612.176300705898, + 17177.55202682215, 16718.700691018246, 16240.966271677407, + 15749.337684019827, 15249.142007788945, 14747.677102949996, + 14254.305386311418, 13779.128030824904, 13329.616057206626, + 12908.45939804678, 12511.121356280246, 12123.860158831398, + 11727.37004935595, 11298.754754208574, 10817.582111951562, + 10269.161453203991, 9652.492911177917, 8977.416387711153, + 8266.027482795722, 7549.935837768982, 6862.194006989258, + 6233.236254012184, 5686.0523994724945, 5234.668278975426, + 4879.109295583824, 4615.220346989499, 4431.58387721092, 4314.688484006969, + 4255.517429792468, 4244.810393419411, 4277.707060175612, + 4350.097042808778, 4455.262499881824, 4585.568967506668, 4728.94744333948, + 4871.232705848356, 4998.421610139766, 5099.353893120832, + 5166.663514587511, 5199.784210550776, 5204.050098247284, + 5186.578809270736, 5157.1512685547, 5122.857457480421, 5086.811289161529, + 5048.309724872521, 5003.28562276737, 4946.635586378329, 4874.862670260007, + 4787.63073358306, 4689.367637126587, 4587.407035043405, 4490.843728392288, + 4407.7350361847875, 4343.018536576724, 4296.676480276233, + 4265.210399042122, 4242.600506252164, 4222.542799844009, + 4201.919001294469, 4181.392861337978, 4165.513815577438, + 4161.309151493837, 4175.1094876556235, 4210.506064025877, + 4265.892946292925, 4334.54280070736, 4408.088195470947, 4478.902196058828, + 4545.7864203528525, 4617.794241618335, 4715.689188440554, + 4871.457951194583, 5122.747252328792, 5506.5506875610545, + 6054.853495458946, 6778.216214290816, 7675.209279105243 + ], + "flow:branch56_seg0:RESISTANCE_24": [ + 0.8374705774570483, 1.0806411758412258, 1.3459691193646286, + 1.6202023017461007, 1.8888680080971068, 2.139536865996504, + 2.3631674681356016, 2.5550442498158876, 2.713324707573849, + 2.84016823449732, 2.9387920147383952, 3.012101888573566, + 3.063150027993617, 3.092886429869263, 3.1016374508366473, + 3.0895230159852085, 3.0563192032837017, 3.003612516030173, + 2.93357065570029, 2.84941455744901, 2.7552274390284204, + 2.6543455540757575, 2.549694297310202, 2.4431494165656353, + 2.335626154463344, 2.2277590217972367, 2.1202175685633446, + 2.0142347106679117, 1.9116573420923804, 1.8146503560722094, + 1.7248829138193753, 1.6429406954920671, 1.5675254044907698, + 1.4951378138484677, 1.420720641860547, 1.338310022361608, + 1.242502042874132, 1.1296144950826212, 0.9993117673898596, + 0.8542538879274727, 0.7004922095424461, 0.5462800680019421, + 0.4003763136685914, 0.2706613314229099, 0.16296833443491496, + 0.08017760117302183, 0.021803848772873755, -0.014209742867489501, + -0.03189946667509066, -0.03535219710575342, -0.02773244080729517, + -0.011675946787551237, 0.011604583787290505, 0.04118223372265528, + 0.07588019791564699, 0.11416763350017906, 0.1534125521405412, + 0.19042226563838047, 0.22192066717137865, 0.24528722950084128, + 0.2589655639103435, 0.26317525864547064, 0.25955677186000836, + 0.2505241529659432, 0.2389788097972805, 0.22707891428302474, + 0.2159032690740073, 0.205323272848878, 0.19418782717443442, + 0.18097662847026866, 0.16449488265193804, 0.14444876453898853, + 0.12178404779624774, 0.09834355118854021, 0.07652415348899475, + 0.058484412906029196, 0.04554201576877446, 0.03770025235589427, + 0.033941648684504666, 0.0324472749926271, 0.031356357068932035, + 0.029574264846232004, 0.027074961603063913, 0.02497738566713994, + 0.025154047744784615, 0.02942096772868442, 0.038893548464088455, + 0.05328547199470654, 0.07096248938272713, 0.08958114624681816, + 0.106922012672707, 0.1223097848215114, 0.13765491326181836, + 0.1579284439222896, 0.19102875246682666, 0.246355859215157, + 0.33342009065902933, 0.4597887215079159, 0.6281081442106426, + 0.8374705774570483 + ], + "pressure:branch56_seg0:RESISTANCE_24": [ + 8280.619885088607, 9523.844539824604, 10880.3499856744, + 12282.384013426095, 13655.953977217263, 14937.513945345876, + 16080.839166323218, 17061.82102532023, 17871.039609948264, + 18519.53495030923, 19023.75509844268, 19398.556341656622, + 19659.54309715715, 19811.57228243116, 19856.31241587269, + 19794.376621884523, 19624.620085296436, 19355.15390189082, + 18997.060578913864, 18566.80734563817, 18085.26990419955, + 17569.5050567107, 17034.46906377171, 16489.75180166141, + 15940.032504626912, 15388.555148164936, 14838.74284785022, + 14296.898962156361, 13772.465850265231, 13276.511662122095, + 12817.570087183021, 12398.635451313416, 12013.07013322024, + 11642.984119609062, 11262.521746419738, 10841.192380723633, + 10351.368187294252, 9774.223649428011, 9108.04293217263, + 8366.425593112386, 7580.309546221541, 6791.890478716108, + 6045.948552302822, 5382.772719829461, 4832.185642742285, + 4408.912922031844, 4110.4735191782775, 3926.351814784729, + 3835.9120127724186, 3818.259715882581, 3857.216189059314, + 3939.3060032334333, 4058.329149034359, 4209.546705240319, + 4386.942183314202, 4582.689054858701, 4783.331117472389, + 4972.5455561872905, 5133.583073184846, 5253.046061627708, + 5322.977388386015, 5344.499711883999, 5325.999975425663, + 5279.820155247754, 5220.793877523205, 5159.954929104235, + 5102.818754958369, 5048.727872913024, 4991.797221362502, + 4924.254154656361, 4839.990214481866, 4737.503201514964, 4621.62844184247, + 4501.787459850407, 4390.234445827271, 4298.00516150256, 4231.836359355686, + 4191.74486113888, 4172.528768475117, 4164.888690976127, 4159.311305930223, + 4150.200249729368, 4137.42240803216, 4126.698421925084, + 4127.6016176730245, 4149.416508778359, 4197.84566095582, + 4271.425256027062, 4361.800095687012, 4456.98912513924, 4545.645372310572, + 4624.316304750479, 4702.769218605386, 4806.4188922218655, + 4975.6462574353345, 5258.509496831013, 5703.630740089447, + 6349.698145032715, 7210.241555977312, 8280.619885088607 + ], + "flow:branch59_seg0:RESISTANCE_25": [ + 0.7399222674832457, 0.9503728159032936, 1.177353710257105, + 1.40931814107541, 1.6339324906252433, 1.8410248891628167, + 2.023586724053157, 2.178465843427394, 2.304739137972515, + 2.4048822487933363, 2.4819537677519143, 2.5383843079673416, + 2.576727095806321, 2.59750928417026, 2.6008054495244726, + 2.5866787668594275, 2.5548763670513153, 2.5069608796270697, + 2.444936907200436, 2.3716465825571325, 2.290680903170424, + 2.204776307636377, 2.116275855528152, 2.026589150054852, + 1.936301765086792, 1.8458614382877843, 1.7558261645788036, + 1.6673086918875775, 1.5819646951945827, 1.5016770014923604, + 1.4277842415029487, 1.3605887385785302, 1.2986891600009274, + 1.2387545017641135, 1.1762248124654606, 1.105911808198079, + 1.023341566650287, 0.9256941752912905, 0.8132500264654071, + 0.6888277252411622, 0.5580996106788296, 0.42845018721377404, + 0.30739261641103716, 0.2014244350284699, 0.11507975145746974, + 0.05029380047772004, 0.006032038847043486, -0.019823222464201335, + -0.030972000820573168, -0.030960920945565736, -0.022310304204728196, + -0.0071032147767598214, 0.013848180880748332, 0.039884149721746226, + 0.06999168936578856, 0.1028171143904976, 0.13599241491336841, + 0.16671411154456253, 0.1922000960268351, 0.21035268748107966, + 0.22005257187357954, 0.2217782461292701, 0.21719575246429584, + 0.2084964726691682, 0.19821008979238638, 0.1880642421959514, + 0.17877443567827436, 0.17001053555657386, 0.1606122239196519, + 0.14920891876946338, 0.13483401395148298, 0.11738050135525205, + 0.09785930012890397, 0.07799930161207695, 0.059921951136742854, + 0.045423608467578425, 0.03547931673473201, 0.029867551755514827, + 0.02752634833968975, 0.026780713405293012, 0.02603086542416305, + 0.024464834674872617, 0.02225031708936197, 0.020534682270817412, + 0.02104219583914359, 0.02531631869530061, 0.03418587969544538, + 0.04718265540512563, 0.06267949847216246, 0.07855797249117685, + 0.09295307040483235, 0.10553175183416273, 0.11833773449847364, + 0.13609319850744173, 0.16597056214805034, 0.21619583565146264, + 0.29477889524577866, 0.40781718481147433, 0.5567187619966205, + 0.7399222674832457 + ], + "pressure:branch59_seg0:RESISTANCE_25": [ + 8529.136331530079, 9817.609076958945, 11207.288021982278, + 12627.478414747411, 14002.668309950477, 15270.580954058065, + 16388.306473794848, 17336.545980167724, 18109.6477835052, + 18722.768870163287, 19194.63531276683, 19540.128416126587, + 19774.880178406063, 19902.118066348536, 19922.298670557997, + 19835.80877669038, 19641.100206436633, 19347.740079349416, + 18968.001472655735, 18519.285199329388, 18023.57695818627, + 17497.630454916605, 16955.790952213178, 16406.688673805227, + 15853.908765837508, 15300.192479312967, 14748.956109666147, + 14207.012399311707, 13684.498133844392, 13192.940825463436, + 12740.536172467038, 12329.13513415427, 11950.158122454663, + 11583.211235290493, 11200.37640284976, 10769.888621620894, + 10264.356530511965, 9666.515358926272, 8978.08179468617, + 8216.312603517323, 7415.936391911203, 6622.164411512904, + 5880.995610679821, 5232.210826704919, 4703.569906882469, + 4306.921227414612, 4035.9308500839406, 3877.6333318518286, + 3809.375505180164, 3809.443341149597, 3862.4063007873788, + 3955.5109299382048, 4083.784780902541, 4243.188671765793, + 4427.52054713748, 4628.4925370846795, 4831.606621918584, + 5019.698642109566, 5175.7352817969495, 5286.8735968229375, + 5346.260644123956, 5356.825996709818, 5328.769913046709, + 5275.509016341847, 5212.531161994203, 5150.413727730315, + 5093.537361295557, 5039.880829938208, 4982.340146446849, + 4912.523992466104, 4824.514371131529, 4717.656130746442, 4598.13857221778, + 4476.546744563738, 4365.869088592303, 4277.103725311704, + 4216.220306539177, 4181.8625617684565, 4167.528663304224, + 4162.963551460976, 4158.372645454059, 4148.784702091058, + 4135.226431159359, 4124.72254451521, 4127.8297704437355, + 4153.997869563065, 4208.3013042578295, 4287.873400439546, + 4382.752031462219, 4479.96717851741, 4568.100431049995, 4645.112766331609, + 4723.51674182739, 4832.223664331276, 5015.146298865615, 5322.647973376301, + 5803.768746402728, 6495.839907009029, 7407.482216305843, 8529.136331530079 + ], + "flow:branch60_seg2:RESISTANCE_26": [ + 0.8171673284647981, 1.048644864320239, 1.297752159048213, + 1.5516377262809518, 1.796832824397398, 2.02239319452673, + 2.2208919764219957, 2.3890764308329464, 2.52628489841894, + 2.635425417832606, 2.719822630678265, 2.782224890208835, + 2.825260112784746, 2.8493382824087448, 2.8544452521880506, + 2.8404511582211978, 2.8070606482653964, 2.7559690050175933, + 2.6893550316722563, 2.610427083176368, 2.52308166270675, + 2.430319256104965, 2.334679429313551, 2.237618278421964, + 2.139730642712063, 2.0414619215339176, 1.9434157306838111, + 1.84684312682894, 1.7536054251771351, 1.6658064806504669, + 1.5849440512224044, 1.511339292521528, 1.443390674633519, + 1.3774021626387367, 1.3083012015210316, 1.2303710850525018, + 1.1387296438553474, 1.0304005707461377, 0.9058161614350811, + 0.768229923433417, 0.6240476587915156, 0.481422307064891, + 0.34862902876278223, 0.23272804151182025, 0.13854226823591764, + 0.06798196697608666, 0.019790122059695454, -0.008535083063389437, + -0.021136604457999232, -0.021839810743331804, -0.013384419215436925, + 0.002093980792018385, 0.023822398117338727, 0.0511461783764753, + 0.08304771044957202, 0.11802642196122491, 0.15345818036781683, + 0.18624806034258953, 0.2133193177474714, 0.23237058377024858, + 0.24222627005732475, 0.24348294783888352, 0.23799706045034372, + 0.22824373019605448, 0.21698877602402228, 0.20607505930957248, + 0.19622272908077412, 0.18697176255967618, 0.17696531662990636, + 0.16465201965884424, 0.14896402640046455, 0.1298219565906661, + 0.10838511461326843, 0.08661671136559916, 0.0668878636609343, + 0.05117067441586126, 0.04049710887632192, 0.034575164492702364, + 0.03216876450583053, 0.03138288711833448, 0.03046464277113381, + 0.028543039643429424, 0.025859519584411846, 0.023747378995729335, + 0.02415576438747172, 0.028805401729668913, 0.03858488495634809, + 0.0529175212961368, 0.06996226502577252, 0.08732126069037485, + 0.10293392409317988, 0.11647874202918691, 0.13029060071088963, + 0.1496789850040313, 0.18263712264404958, 0.23827473116896794, + 0.3253859999448315, 0.45050753231910245, 0.6151111572168652, + 0.8171673284647981 + ], + "pressure:branch60_seg2:RESISTANCE_26": [ + 8445.00772840182, 9704.42043069151, 11059.752342507601, 12441.08166727032, + 13775.12827341645, 15002.34712307385, 16082.330484673359, + 16997.380998884346, 17743.898738935884, 18337.7056324476, + 18796.89024188654, 19136.405685637674, 19370.549814387236, + 19501.553250899044, 19529.339025386835, 19453.200580099867, + 19271.53097566565, 18993.553830931734, 18631.12348160619, + 18201.695802872535, 17726.470716257787, 17221.773131943562, + 16701.420207584142, 16173.334206150026, 15640.751502802323, + 15106.095406554567, 14572.650043437958, 14047.222107035652, + 13539.938558510616, 13062.24595833723, 12622.293241615269, + 12221.827737633312, 11852.13591352201, 11493.108546549665, + 11117.147104544287, 10693.148386013454, 10194.549700515494, + 9605.157688038702, 8927.324363894497, 8178.7512673337915, + 7394.290801812397, 6618.301118972408, 5895.805344795819, + 5265.216397957648, 4752.774623423092, 4368.87326834942, 4106.673217661212, + 3952.5626989227885, 3884.0009006735695, 3880.1749271301546, + 3926.178646038384, 4010.392837745886, 4128.611846251531, + 4277.273857041291, 4450.842296703839, 4641.152917666269, + 4833.928456064902, 5012.330179559023, 5159.618275212305, + 5263.271557744091, 5316.893938221985, 5323.731214914654, + 5293.8838423178895, 5240.818355999818, 5179.58290092396, + 5120.204035460518, 5066.599914475532, 5016.267666458156, + 4961.825039608189, 4894.831400008945, 4809.47686264521, 4705.329538899586, + 4588.696920604514, 4470.260358467443, 4362.920519597243, + 4277.407134005056, 4219.334872394269, 4187.115020254314, + 4174.022386020688, 4169.746619214216, 4164.750676128869, + 4154.295703127507, 4139.695326306119, 4128.203685544616, + 4130.4256106566545, 4155.723151120626, 4208.930929370005, + 4286.911300972462, 4379.647586076955, 4474.093639160245, + 4559.038325189501, 4632.732369390237, 4707.879317026787, + 4813.366777680014, 4992.683950010606, 5295.3945808385715, + 5769.345705311437, 6450.101384776235, 7345.669480717225, 8445.00772840182 + ], + "flow:branch62_seg0:RESISTANCE_27": [ + 0.669246548836566, 0.8706416300312722, 1.0952215836467585, + 1.3323674041457474, 1.5699077164612332, 1.7966365050826543, + 2.0036603860532582, 2.1853263246999837, 2.3387652459572776, + 2.46451411589431, 2.5644372343709416, 2.640917943672161, + 2.6965363926870762, 2.732481094229552, 2.7494404535857075, + 2.747604065041003, 2.726930542500894, 2.68854479062242, + 2.6339557970651137, 2.5657307913874132, 2.487168975564631, + 2.4012330763172836, 2.310680608936207, 2.217455612815018, + 2.122714527580592, 2.0272358317320016, 1.9316778471922667, + 1.8370353794352003, 1.7447729030487538, 1.6566748376765432, + 1.574297709427085, 1.4984792538161298, 1.428629542720829, + 1.3624096030848345, 1.2960030985037785, 1.2245872532899755, + 1.1433796852685065, 1.0487285793184398, 0.9393682596040545, + 0.8164946013631272, 0.684279513750701, 0.5490024888825046, + 0.417911908552261, 0.2980076208671066, 0.1950252702825126, + 0.11238435165852012, 0.050815046297237786, 0.009403293808964291, + -0.014695700497159236, -0.024717448735623353, -0.02355279873683572, + -0.0137263356974778, 0.0033324311767489543, 0.02655801399690221, + 0.05488843643778488, 0.08704138897223163, 0.12094897312481709, + 0.1540250629803218, 0.18346739373769622, 0.20681177468713802, + 0.22236455535835192, 0.229797573623007, 0.2299614586285236, + 0.2246167424374785, 0.2160832175770155, 0.20632117593225238, + 0.1965827676556376, 0.18715756869011857, 0.17741778571002434, + 0.16625952936484012, 0.15263044975909512, 0.13606522735767962, + 0.11703096988280538, 0.09679543017430793, 0.07722391573406055, + 0.06019026027635524, 0.04704724151742268, 0.03818316977184519, + 0.03310008846086379, 0.030515855759681312, 0.0289248202200737, + 0.027228158433931993, 0.025092659529192898, 0.02312225440624953, + 0.02265154864779845, 0.02518469029619346, 0.03184414167650388, + 0.04274623482009677, 0.05693203881270721, 0.07265703771205978, + 0.08803484055509232, 0.10212600597929634, 0.115861238219676, + 0.13261324193549504, 0.1582910858129332, 0.2004188451390874, + 0.26719430362339325, 0.36565386086611606, 0.49943032635204243, + 0.669246548836566 + ], + "pressure:branch62_seg0:RESISTANCE_27": [ + 7696.154307171899, 8808.731866483415, 10049.39084971969, + 11359.468119762905, 12671.724701931133, 13924.2546086879, + 15067.927645999038, 16071.514453733462, 16919.165247899527, + 17613.846418714544, 18165.85701705705, 18588.363467482708, + 18895.619423738575, 19094.19065037963, 19187.880141344493, + 19177.735282428905, 19063.527442229413, 18851.47099137697, + 18549.90211066264, 18173.003082887837, 17738.999865010403, + 17264.25960584082, 16764.015793773367, 16249.007989034262, + 15725.624772565656, 15198.16673454748, 14670.270677795419, + 14147.432259102487, 13637.741753330749, 13151.056924831288, + 12695.976573577493, 12277.128646438436, 11891.254172106603, + 11525.431837316095, 11158.57885187614, 10764.052499530299, + 10315.433212053254, 9792.547072931258, 9188.402041823343, + 8509.604555914522, 7779.201714855177, 7031.8836509483735, + 6307.692985280883, 5645.299351075076, 5076.388474077043, + 4619.850851626114, 4279.720263128097, 4050.9471161530114, + 3917.81576007462, 3862.4520832209364, 3868.886021157339, + 3923.1708735983175, 4017.4095268027745, 4145.715849352189, + 4302.223108946423, 4479.847374858107, 4667.1648455472805, + 4849.88884806365, 5012.538681913431, 5141.501287287384, 5227.42034080666, + 5268.482958970666, 5269.388317623739, 5239.8622176824165, + 5192.720012394893, 5138.791046490668, 5084.992639659172, + 5032.924511684661, 4979.118510505612, 4917.476361466753, + 4842.184512065714, 4750.672372844192, 4645.520411837614, + 4533.732143491252, 4425.612185253995, 4331.51225638351, 4258.905578772246, + 4209.937315745393, 4181.856579288447, 4167.580365121155, + 4158.790922862022, 4149.417963910867, 4137.62071372356, + 4126.7354998964165, 4124.135155038017, 4138.129124184846, + 4174.918285663404, 4235.145298702311, 4313.512690246058, + 4400.383138083379, 4485.335552279305, 4563.180126945749, + 4639.058400992594, 4731.60238616423, 4873.4558649089395, + 5106.1844865431585, 5475.075703655613, 6019.001072826348, + 6758.029516722453, 7696.154307171899 + ], + "flow:branch64_seg2:RESISTANCE_28": [ + 0.401995985925716, 0.5243882576055637, 0.6641460034769174, + 0.8158050654008444, 0.9726474082044817, 1.1280020957121883, + 1.27604087050806, 1.4124263346576955, 1.5342816923843885, + 1.6406062372657524, 1.731344780012459, 1.8070012937593594, + 1.86838153799959, 1.9158184506680858, 1.9494907673224198, + 1.9693729348837448, 1.9753949581659933, 1.968052224718773, + 1.9481533052427609, 1.9171401877556176, 1.8768720010506308, + 1.829191084034147, 1.775898445296865, 1.7184083341754959, + 1.6577489106435217, 1.5947115517878954, 1.5299891807436437, + 1.4644171258776677, 1.3990550273499271, 1.3351348917630688, + 1.2737918648786815, 1.2157912782070466, 1.1611252027461196, + 1.108804462853786, 1.0569258136897677, 1.0028845720037176, + 0.9439137578956114, 0.8776853900470725, 0.8030142271892073, + 0.7200571016722955, 0.6306424244230651, 0.5379130329165582, + 0.4458118044160254, 0.358423204342821, 0.27937625757539875, + 0.21120669422077032, 0.15512155599678365, 0.11130975747643869, + 0.07881462386627965, 0.056298051912932925, 0.042362985099415544, + 0.03569360540344642, 0.035424541620485424, 0.04081725334848003, + 0.05114407885967289, 0.06553516112941592, 0.08269335168003637, + 0.10100981878146502, 0.11869913059295875, 0.13409245599003392, + 0.14589069179105715, 0.1535004731895268, 0.15700468932178266, + 0.15706454931194158, 0.15473585333518533, 0.15102504721295923, + 0.146659492446928, 0.14190345075791594, 0.1365426308331023, + 0.13007277967312614, 0.12195920709889899, 0.11193006468831139, + 0.10017332758866491, 0.08732733082824509, 0.07439623144769342, + 0.062455409789925954, 0.052369411153589424, 0.044535641125554117, + 0.03887177666451213, 0.03483293667796434, 0.03169186932055282, + 0.02885560574677454, 0.026084300577567766, 0.023622188038268637, + 0.02212717222829838, 0.02240697262117411, 0.025127210911772824, + 0.03046691771493129, 0.03803124496851267, 0.04695602454527886, + 0.05622984574373157, 0.06525333099187383, 0.07437367326350121, + 0.08526504940024471, 0.1010654965380649, 0.12599477586835905, + 0.16488066730845993, 0.22215448682552338, 0.3007474046256674, + 0.401995985925716 + ], + "pressure:branch64_seg2:RESISTANCE_28": [ + 6924.351743772403, 7815.008511298113, 8832.03499888601, 9935.668161382388, + 11077.020406384043, 12207.54688404859, 13284.83497437061, + 14277.321141755056, 15164.070750443092, 15937.80159270076, + 16598.112052369124, 17148.669575742333, 17595.337728678856, + 17940.539322854987, 18185.57502890757, 18330.258895368483, + 18374.08156257546, 18320.647998943183, 18175.84222767586, + 17950.157692264616, 17657.12339759443, 17310.14616741728, + 16922.332062006906, 16503.972668613256, 16062.549976302394, + 15603.82288919862, 15132.833855416646, 14655.661615491917, + 14180.017241918296, 13714.866129350372, 13268.468809607779, + 12846.394651407003, 12448.585954868504, 12067.84442251951, + 11690.320014043053, 11297.05827478, 10867.923706469397, + 10385.975432964191, 9842.588374079143, 9238.903809342994, + 8588.227207666137, 7913.429208084519, 7243.202392816264, + 6607.269690599638, 6032.039758804514, 5535.965275442593, + 5127.829964027884, 4809.0085685749955, 4572.53930246605, + 4408.684698605226, 4307.278283044547, 4258.744759809096, + 4256.786764619521, 4296.02988945029, 4371.178891118143, 4475.903761730021, + 4600.765064838933, 4734.055224071557, 4862.781532207999, + 4974.799793258773, 5060.656346265098, 5116.03323574442, 5141.533651499677, + 5141.969256661731, 5125.023179897724, 5098.019394933411, + 5066.250960186642, 5031.640925918848, 4992.6298798782, 4945.548339177737, + 4886.505327532776, 4813.522585747948, 4727.968021574066, + 4634.486841812901, 4540.386364578829, 4453.492204732465, + 4380.0957163806015, 4323.088846625292, 4281.872525175103, + 4252.481615785155, 4229.623858013891, 4208.984177813492, + 4188.817204278682, 4170.90024624335, 4160.020915952046, 4162.057042171871, + 4181.85239860697, 4220.70980304568, 4275.75591966491, 4340.702139059505, + 4408.188357738664, 4473.8528649221635, 4540.222207159915, + 4619.479481583524, 4734.460394839578, 4915.872432056637, + 5198.847671400107, 5615.633096286683, 6187.559028843875, 6924.351743772403 + ], + "flow:branch66_seg0:RESISTANCE_29": [ + 0.5362385257655186, 0.6979397494026515, 0.8819039030794014, + 1.0806906959638103, 1.2852911960596909, 1.4868935313298557, + 1.6779534076966678, 1.8530252474020186, 2.008612952180157, + 2.143693494629628, 2.258454219101812, 2.353705787700164, + 2.4306559348168673, 2.4898519835562576, 2.531616918786634, + 2.5560476288165854, 2.563110491838518, 2.5535077306057907, + 2.528306572949678, 2.489284438295437, 2.438757990941356, + 2.3789721752026063, 2.3121085673870243, 2.2398840859112954, + 2.163533880087387, 2.0840235846047093, 2.0022148202718277, + 1.919158786388597, 1.836196625653818, 1.7548890184386492, + 1.6766692252881032, 1.602499027648319, 1.532363835757838, + 1.4649937885435367, 1.3979620803644197, 1.3279426426945622, + 1.251401845969562, 1.1653332719281, 1.068195025398996, 0.9601295428410864, + 0.8434027787537596, 0.7220002731258565, 0.6009623673151772, + 0.48558430968591754, 0.3806333118380396, 0.28956582015756954, + 0.21411256544311824, 0.15470096924682317, 0.11025789935866173, + 0.07913125252223606, 0.05957323580722354, 0.04988256874285409, + 0.04890573774593927, 0.05564999612082172, 0.06911146836710706, + 0.08810147718471004, 0.11087124905564316, 0.13526366220307762, + 0.15889593954920336, 0.17954650620123874, 0.19547701461839445, + 0.2058812751957161, 0.21085112840345765, 0.21122182970667916, + 0.20836812565184643, 0.20360485152589328, 0.1978867895276494, + 0.19157417214774158, 0.18440422039849755, 0.1757324355640508, + 0.16487382937326606, 0.15147502274264849, 0.13578423625268746, + 0.11863575161731041, 0.10134207142373831, 0.08531653853867698, + 0.07170518170133393, 0.061046818224816356, 0.053252852348034604, + 0.04763078841663101, 0.043238784655757305, 0.03930499879323806, + 0.035514008030939424, 0.03217926034490382, 0.030156718162025423, + 0.030499388092023176, 0.034080128061755637, 0.04113764974662947, + 0.05115486615502129, 0.06300990902099726, 0.07538138430976142, + 0.08749288328506492, 0.09981415464694243, 0.1145619722835342, + 0.13588346072875448, 0.1693570143617713, 0.22132556220132046, + 0.29763871377606876, 0.4020794974362836, 0.5362385257655186 + ], + "pressure:branch66_seg0:RESISTANCE_29": [ + 6865.972443143277, 7730.499943341807, 8714.055084898424, + 9776.858725212842, 10870.745060199373, 11948.60185698169, + 12970.093924811099, 13906.106754715669, 14737.94863227201, + 15460.149992673374, 16073.71246311918, 16582.97020797778, + 16994.380318738597, 17310.869030989397, 17534.163167165494, + 17664.78073576019, 17702.541979461705, 17651.20129707973, + 17516.464568807092, 17307.83467865396, 17037.697556358828, + 16718.055684359526, 16360.572751213778, 15974.428175317018, + 15566.225620655405, 15141.127804772825, 14703.741340204382, + 14259.686411401823, 13816.133370689788, 13381.4263175719, + 12963.228107827754, 12566.680857828911, 12191.70656414584, + 11831.515978098463, 11473.134304771276, 11098.77888523611, + 10689.557345859506, 10229.396021856819, 9710.05124785605, + 9132.28455325645, 8508.21075039435, 7859.1383293726285, 7212.015223028106, + 6595.152211751057, 6034.0369537961915, 5547.149166796245, + 5143.742116355422, 4826.10099041287, 4588.488341310211, 4422.071281662938, + 4317.505324033487, 4265.694657521675, 4260.4720794800005, + 4296.529919379928, 4368.501007095312, 4470.030138925952, + 4591.767584771403, 4722.1804010002015, 4848.529189206605, + 4958.9364104001215, 5044.108076445651, 5099.733934964265, + 5126.305006434226, 5128.286942400979, 5113.029756479075, + 5087.563149732108, 5056.991817406167, 5023.24172448536, 4984.907936262284, + 4938.544672605062, 4880.489678000781, 4808.853628863605, + 4724.963624105474, 4633.280109160129, 4540.8203134288815, + 4455.140603820984, 4382.368165640152, 4325.383758686999, 4283.71371015844, + 4253.655626692851, 4230.173998373382, 4209.142209116971, + 4188.873866718026, 4171.044805094653, 4160.23138452751, 4162.06345216009, + 4181.207699218113, 4218.940385728344, 4272.496931966538, + 4335.879325390276, 4402.022798918741, 4466.776322097226, + 4532.651382842933, 4611.499851815303, 4725.494122801297, + 4904.458802190821, 5182.3060425648, 5590.310488537579, 6148.697911870636, + 6865.972443143277 + ], + "flow:branch67_seg0:RESISTANCE_30": [ + 0.5474903156196168, 0.714438153570356, 0.9056221248582773, + 1.1134074474233508, 1.328449837846871, 1.5414261174877262, + 1.7442052842532934, 1.9307417002643135, 2.0971351818653097, + 2.2420307640500132, 2.3654346352421847, 2.4681972827984735, + 2.551545607198086, 2.61613904821764, 2.6623945418769512, + 2.6904067233253808, 2.7001798178179106, 2.692357602225711, + 2.6679746376906155, 2.6288419542625108, 2.577299126586991, + 2.5157122215646424, 2.446398380607815, 2.371207353932474, + 2.291504533047481, 2.208335559847752, 2.1226105789462215, + 2.0354078477897004, 1.948097584433817, 1.8622938377319291, + 1.7795303458106633, 1.7008983113181697, 1.626514410843489, + 1.5552262397104457, 1.4846329980759536, 1.4113434561426474, + 1.3316447082338254, 1.2422918317449954, 1.1414352146962963, + 1.028970656848385, 0.9070105799183782, 0.7795028058922723, + 0.651632086837371, 0.5289686264950857, 0.41664426890798817, + 0.3184802014110457, 0.23658188243907244, 0.17158721335423346, + 0.1225440454730771, 0.0878210938283737, 0.06555783101950469, + 0.053952185914730874, 0.05172364953213754, 0.05778397903848078, + 0.07109542852383864, 0.09042583762210053, 0.11399791025148386, + 0.13959316284895248, 0.1647162872554486, 0.18698563029962073, + 0.20449450268437963, 0.216267113908052, 0.2222597920731414, + 0.22327122419086604, 0.22068522792702164, 0.21589824854490136, + 0.20998104701212233, 0.20339644256284078, 0.19594884730726744, + 0.1870064278938198, 0.1758424414414491, 0.16203597308474324, + 0.1457603229635137, 0.1278170873173313, 0.10953514970938437, + 0.0923990984700816, 0.07766124999098759, 0.06598111403598764, + 0.05735399925166625, 0.05112044574429376, 0.04632004831967314, + 0.04210564384699848, 0.038074444691632285, 0.03447236149812466, + 0.032132715119895086, 0.03214903409152245, 0.03547645191608231, + 0.04245514076175078, 0.052651456908691996, 0.06495078622414494, + 0.07797306692692402, 0.09081220026152294, 0.10377988175414128, + 0.11897155186486345, 0.14050498138800163, 0.1740829343885617, + 0.22634004542474676, 0.3035006660850354, 0.40988840682901545, + 0.5474903156196168 + ], + "pressure:branch67_seg0:RESISTANCE_30": [ + 6740.5090114350105, 7576.485446312326, 8533.822161089805, + 9574.28866433998, 10651.094288781762, 11717.554047428834, + 12732.952671219882, 13667.01716672834, 14500.21771153964, + 15225.769439019827, 15843.703337149918, 16358.27814564794, + 16775.6374594304, 17099.083364467628, 17330.703630758286, + 17470.972135387292, 17519.91003594276, 17480.7409877905, + 17358.645463739427, 17162.69203552515, 16904.595914889007, + 16596.20497118057, 16249.122083722998, 15872.609712036197, + 15473.504932537573, 15057.043703920574, 14627.783494302686, + 14191.12358184965, 13753.925211482087, 13324.270589131575, + 12909.83977191576, 12516.096859943575, 12143.626100846706, + 11786.656930809833, 11433.167558366158, 11066.17670223255, + 10667.092317799481, 10219.665744026142, 9714.63521359761, + 9151.47895309251, 8540.774726186652, 7902.290899993353, 7261.989658882004, + 6647.763302162632, 6085.309081981274, 5593.761253710722, + 5183.662713010619, 4858.207694158523, 4612.628397393528, + 4438.756308478419, 4327.275002100633, 4269.160767509569, + 4258.001569984264, 4288.348130425434, 4355.004028581494, + 4451.799331120562, 4569.83438614892, 4698.000334740178, + 4823.8021434495495, 4935.31389606428, 5022.988015685112, + 5081.938318251274, 5111.94612062423, 5117.010776904149, 5104.061630848765, + 5080.091257786032, 5050.461397929548, 5017.489577388741, + 4980.196407219023, 4935.418038165584, 4879.515369954779, 4810.38070887285, + 4728.881839940682, 4639.032684960398, 4547.487510061813, + 4461.680259133926, 4387.881795011555, 4329.394554120036, 4286.19504492482, + 4254.981080720937, 4230.943518005012, 4209.840262823972, + 4189.654391958259, 4171.617281066602, 4159.901710130468, + 4159.983425927985, 4176.645174438581, 4211.590337508268, + 4262.647482818032, 4324.235279334139, 4389.443190556644, + 4453.734007638921, 4518.66851817761, 4594.739453715817, 4702.566184893651, + 4870.704795039468, 5132.37762601023, 5518.7525642202245, + 6051.479704107157, 6740.5090114350105 + ], + "flow:branch68_seg0:RESISTANCE_31": [ + 0.6308281282485112, 0.8090992654202368, 1.0009276466381873, + 1.1965876159948958, 1.3857332426234745, 1.5598831179980106, + 1.713239564841487, 1.843268222551077, 1.9492608562326115, + 2.033333229997196, 2.0980777827807753, 2.1454685944187304, + 2.1776197833382818, 2.1949261970929554, 2.1974087489337255, + 2.185153372302027, 2.157941463511127, 2.117149398227823, + 2.064524065112502, 2.0024552375587397, 1.9339938985696856, + 1.861425245828475, 1.7866882579072894, 1.7109525370451883, + 1.6346908586742803, 1.5582860792400854, 1.4822317602301605, + 1.4074927517140428, 1.3354867184926338, 1.267803601797269, + 1.2055479937249178, 1.1489200691616295, 1.0966807481152248, + 1.0459582991358973, 0.9928733768231073, 0.9330543137692019, + 0.8627832052724599, 0.7797527347645539, 0.684316274420302, + 0.5789499635517992, 0.46849939453232886, 0.3592269277676671, + 0.25744266214638634, 0.1685586998743818, 0.09628655495056679, + 0.0421979708470265, 0.005321424053775631, -0.01616684813860993, + -0.025367843995804367, -0.025268311164231786, -0.017929052540328623, + -0.005067152566679523, 0.0126454612765168, 0.03466707511661969, + 0.06011369249690647, 0.08781226496704081, 0.11573791782738081, + 0.14150992003186194, 0.16279102261413436, 0.17784715360523132, + 0.1857771373239049, 0.18702941826174077, 0.1830494095580353, + 0.17568314608596472, 0.16705158716389126, 0.1585754982722218, + 0.1508113425580753, 0.14344432307921073, 0.13547886553824814, + 0.12576533906809623, 0.11352158515930502, 0.09869263906800747, + 0.08217229055099896, 0.0654409133017929, 0.050284457127295575, + 0.03819276966662238, 0.02995039178442407, 0.025329952079997397, + 0.02340443002065373, 0.022761221325218878, 0.022067877964859428, + 0.0206770839266826, 0.018772682927703097, 0.01735184836448872, + 0.017876829018872414, 0.021627753434251804, 0.029263031435111025, + 0.04034085112076508, 0.05344907770991366, 0.06680090545919373, + 0.07885679432712098, 0.08940893656361347, 0.10027663420390583, + 0.11553448878828354, 0.1412982405408814, 0.18452476011256544, + 0.2518848089328947, 0.3484620759419192, 0.4752753233992787, + 0.6308281282485112 + ], + "pressure:branch68_seg0:RESISTANCE_31": [ + 8547.421281609164, 9832.79870518707, 11215.927092265965, + 12626.682143807458, 13990.467230356122, 15246.129373295757, + 16351.865936488522, 17289.40357544488, 18053.63574763645, + 18659.817616995948, 19126.641286648617, 19468.340343102063, + 19700.158084515642, 19824.94145593671, 19842.841246893415, + 19754.477057996948, 19558.272704520532, 19264.15218334067, + 18884.710978399347, 18437.17992591773, 17943.55734112614, + 17420.32004442811, 16881.448533850547, 16335.37592053251, + 15785.511028114743, 15234.614342895527, 14686.244560933685, + 14147.358481384674, 13628.17780563096, 13140.16638921302, + 12691.288604637992, 12282.987760583761, 11906.329794738145, + 11540.608838328888, 11157.853885643986, 10726.544171862299, + 10219.872717220165, 9621.203218875595, 8933.083574501967, + 8173.367339194611, 7376.9923898263205, 6589.111838738211, + 5855.223004119833, 5214.348433871646, 4693.2490292656385, + 4303.257435657224, 4037.3687367934317, 3882.4331685012808, + 3816.0917935770885, 3816.809449035162, 3869.7272544108982, + 3962.4646212821285, 4090.1767922358963, 4248.957881030725, + 4432.434062346257, 4632.147377038088, 4833.497995510768, + 5019.320279025624, 5172.762105010884, 5281.320400926981, + 5338.497475146823, 5347.526719426118, 5318.8299072862, 5265.717390513474, + 5203.481791724267, 5142.3671689398925, 5086.38575418909, + 5033.267786427044, 4975.8349374866175, 4905.798094584602, + 4817.517708292771, 4710.597469696623, 4591.481816146121, + 4470.844595097948, 4361.56293067809, 4274.378979750929, 4214.949469093966, + 4181.634996671254, 4167.751523311809, 4163.113835187542, 4158.11466417011, + 4148.086707396617, 4134.355521920591, 4124.110965795748, + 4127.896201542072, 4154.941261317684, 4209.993437013358, + 4289.8671594359075, 4384.380599963326, 4480.650462963603, + 4567.576297497717, 4643.659760117383, 4722.018452470631, + 4832.031223613173, 5017.794019401897, 5329.467536712603, + 5815.149556687338, 6511.49468924054, 7425.848453278462, 8547.421281609164 + ], + "flow:branch69_seg0:RESISTANCE_32": [ + 1.3729031608017483, 1.7444822037496186, 2.1360218620963543, + 2.527868625914787, 2.8994463917318605, 3.2349530140856357, + 3.5247047831955496, 3.7662858746118957, 3.959646820341909, + 4.110378904484961, 4.2248076363950435, 4.305956814368371, + 4.358044488744514, 4.381143421492404, 4.374508922791168, + 4.338834951443368, 4.273368333767661, 4.181711460469492, + 4.068191460626443, 3.937497046131639, 3.796286511632562, + 3.6487286818125795, 3.4981446062405213, 3.3465012552814293, + 3.194217248442663, 3.041968458504471, 2.8908972857581783, + 2.743219072128684, 2.6020552915674773, 2.4706587049936637, + 2.3508567967223026, 2.242246093317787, 2.1414197996269735, + 2.0414212181951776, 1.9337965256551357, 1.8095864587975463, + 1.6619894704341656, 1.487369899406477, 1.2883794117409346, + 1.071729179687233, 0.8484352130053354, 0.6321385039101061, + 0.435408882226633, 0.2682896568762398, 0.1367143459628384, + 0.04263181029110577, -0.01791568605256795, -0.049379528010522394, + -0.058323942361158794, -0.05106653121542971, -0.030872926442040136, + -0.0008154386056521796, 0.03818778366350841, 0.0854121070216801, + 0.13868597500602234, 0.195414357240779, 0.251115201161364, + 0.30071931509587346, 0.33965775388405506, 0.36499134327074545, + 0.3755715769775307, 0.37311416369896405, 0.36141939045440974, + 0.3443138289506491, 0.326127412357764, 0.30930595070341504, + 0.2942501274765902, 0.2797184667796325, 0.2632961738707986, + 0.24259186079343645, 0.2163709864807477, 0.18500902599212635, + 0.15097851813356972, 0.11766151638289475, 0.08874293899630421, + 0.06696057346500202, 0.05337295876241912, 0.04680712129639849, + 0.0448566770716238, 0.04450185000652866, 0.0431150956421382, + 0.03990668360830352, 0.035877782759120104, 0.033560816500301134, + 0.03616284065062075, 0.04606645263555009, 0.06408050018544222, + 0.0886103907709307, 0.11607249360344178, 0.14274062162233705, + 0.16583070331937486, 0.18591046918323995, 0.2081180297708377, + 0.24220265293812854, 0.301769367776623, 0.4013272063014029, + 0.5534724037486259, 0.7675800679992674, 1.0425519709879452, + 1.3729031608017483 + ], + "pressure:branch69_seg0:RESISTANCE_32": [ + 9138.649448943357, 10529.706063752696, 11995.487953340653, + 13462.419533972703, 14853.471367669448, 16109.485976660819, + 17194.211078150463, 18098.602705195783, 18822.47566764717, + 19386.761696933823, 19815.141196447476, 20118.934165799543, + 20313.931449328076, 20400.405441346236, 20375.568294366465, + 20242.017937419034, 19996.934762532437, 19653.804808586006, + 19228.82727098849, 18739.55497952846, 18210.914164542395, + 17658.51138743854, 17094.779448339785, 16527.08196795984, + 15956.986105281017, 15387.022081852625, 14821.466628325023, + 14268.61317807984, 13740.147392810268, 13248.24642480408, + 12799.751709801978, 12393.15279019837, 12015.695865629586, + 11641.337594321576, 11238.429940308239, 10773.432684926429, + 10220.883312496879, 9567.171231680435, 8822.22331439404, + 8011.163745459845, 7175.232453598891, 6365.496345874912, 5629.01228746119, + 5003.378769377958, 4510.808722532339, 4158.59797203918, 3931.930195969722, + 3814.1410302091845, 3780.656400265204, 3807.825504584344, + 3883.4230067309068, 3995.9472948275975, 4141.961154775039, + 4318.751823231805, 4518.189783640395, 4730.560187334453, + 4939.083861790073, 5124.783599490392, 5270.554933677955, + 5365.394666332531, 5405.0032082117805, 5395.80354783979, + 5352.022575825135, 5287.98558307371, 5219.902262495373, 5156.928836116408, + 5100.565316998317, 5046.1640715020685, 4984.6849875366825, + 4907.175579490255, 4809.014175204957, 4691.606416562318, + 4564.208588400606, 4439.481867261511, 4331.221245119439, 4249.67600129156, + 4198.8089201947405, 4174.228815874507, 4166.927063011472, + 4165.598719700992, 4160.407216390156, 4148.396090177836, 4133.3133526472, + 4124.639474769022, 4134.380505580341, 4171.456022145666, + 4238.894055800548, 4330.72503283517, 4433.5331446669725, + 4533.368903947054, 4619.809760854204, 4694.981091581461, + 4778.118110852191, 4905.718527022046, 5128.714614317997, + 5501.422904692286, 6070.999115560896, 6872.540236595045, + 7901.934901871615, 9138.649448943357 + ], + "flow:branch71_seg0:RESISTANCE_33": [ + 0.8562108934554932, 1.0965344577019467, 1.3539971094532848, + 1.615271481485937, 1.8665417311345223, 2.0966966501404465, + 2.2983538807674853, 2.468525684305884, 2.606800813958277, + 2.716339925615957, 2.8007556316012305, 2.8627911942167117, + 2.9051033630767966, 2.928036226991861, 2.9314344983496925, + 2.915208810516932, 2.8790264227156537, 2.8247233962482237, + 2.7546997083600275, 2.6722646408448782, 2.5815069744187227, + 2.485499711063983, 2.3867710582606207, 2.2867629827565863, + 2.1860095243737083, 2.0849380930418686, 1.9841879321655498, + 1.8850842643621135, 1.7895860201962674, 1.6998718434129771, + 1.617438681385575, 1.5424940060355297, 1.4732472605370195, + 1.405714253732898, 1.3345470472107088, 1.2538189383679168, + 1.1585905625091868, 1.0459519504232218, 0.9166319725733449, + 0.7742821867068794, 0.6257122701226097, 0.4794905837271822, + 0.34414864181618676, 0.22683099067354842, 0.13224243763747984, + 0.06214696335390561, 0.014941487031570177, -0.01214139735503548, + -0.0234107047508171, -0.022864566632380373, -0.013215130659978291, + 0.0034337481970901024, 0.026340256635744155, 0.054906382223360826, + 0.08805326988669522, 0.12419075165464631, 0.1605699124012804, + 0.19396024658277838, 0.22120740692117452, 0.24001800062869147, + 0.24929156016366644, 0.2497613305167698, 0.2434796782818397, + 0.23303526468838404, 0.22128169786821364, 0.21006543688508084, + 0.20002056764966814, 0.19057188920428586, 0.18025180082634404, + 0.16744055510795533, 0.15108352806045888, 0.13116932840182854, + 0.10899142432838564, 0.08664483568887102, 0.06658971772682014, + 0.050822711740021814, 0.04032864993239568, 0.0347025970993176, + 0.03257436880751684, 0.03195962156151471, 0.03105773148965356, + 0.02903843190977676, 0.026247653536324193, 0.02414364244583953, + 0.024780351147041746, 0.029911609064004533, 0.040376328048594486, + 0.055478126206657485, 0.07320629944182987, 0.09105650243703353, + 0.10694821636397578, 0.12068808312481122, 0.13489701850540328, + 0.15527817013992626, 0.19026297152393828, 0.24933262648885604, + 0.34141363771980127, 0.47311880267551176, 0.6455654023598625, + 0.8562108934554932 + ], + "pressure:branch71_seg0:RESISTANCE_33": [ + 8576.688694693612, 9861.56660448004, 11238.077787923892, + 12634.968143102744, 13978.371958589189, 15208.88371546432, + 16287.03400752505, 17196.8490392744, 17936.130100290186, + 18521.775479127224, 18973.099826781596, 19304.769857873776, + 19530.989751266025, 19653.599160563834, 19671.76784831957, + 19585.0180203001, 19391.570694587543, 19101.242281053383, + 18726.86413793856, 18286.129174748068, 17800.897852965794, + 17287.599823909233, 16759.75202235148, 16225.063851350436, + 15686.39052808869, 15146.017178367563, 14607.361485059611, + 14077.508684570752, 13566.932101134877, 13087.279744509073, + 12646.554968913471, 12245.867012593719, 11875.642753085005, + 11514.580911745605, 11134.089003478983, 10702.480209409308, + 10193.34646337247, 9591.129760603193, 8899.726970558942, + 8138.660964001709, 7344.339339834312, 6562.572410859614, + 5838.973491318363, 5211.74054038467, 4706.0275750506835, + 4331.265629565364, 4078.883912700867, 3934.086626630477, + 3873.835838586307, 3876.7557387062643, 3928.345965248191, + 4017.358362901465, 4139.826863963559, 4292.5542248896545, + 4469.7724010195425, 4662.979638872147, 4857.479001289993, + 5035.998752046505, 5181.674331272317, 5282.244229195314, + 5331.824851174435, 5334.3364548586915, 5300.751915535926, + 5244.911380925919, 5182.0715241029375, 5122.104346049406, + 5068.399955355368, 5017.8830688851895, 4962.7072328183485, + 4894.212548695226, 4806.760522136757, 4700.290250223634, + 4581.717195938761, 4462.242278062827, 4355.018593492409, 4270.72108500867, + 4214.615108706135, 4184.535698777359, 4173.157232717691, + 4169.870517330597, 4165.048607194471, 4154.252523042006, + 4139.331766126625, 4128.082776121896, 4131.486907330207, + 4158.920921000879, 4214.870017368448, 4295.611025484696, + 4390.393816519621, 4485.829033559846, 4570.793286804833, + 4644.252796860625, 4720.2201588184535, 4829.186966103113, + 5016.231455966309, 5332.0444102269885, 5824.350928784225, + 6528.50600232844, 7450.483117835021, 8576.688694693612 + ], + "flow:branch74_seg0:RESISTANCE_34": [ + 0.7022031091942411, 0.90643445976161, 1.1292576744834553, + 1.3594305251310652, 1.5847563419373996, 1.7947830839533205, + 1.981926177190448, 2.1422308329347466, 2.2742542450660803, + 2.379871860632999, 2.461816686880436, 2.522634093533184, + 2.5648767053199464, 2.5893499871028105, 2.5963326365972175, + 2.5858578816106723, 2.557749728951109, 2.513308904204293, + 2.4543344004295617, 2.383574590753006, 2.3044430093633963, + 2.2197647417702586, 2.132007348827462, 2.042727731774639, + 1.9526852383643418, 1.8623864506538608, 1.77237064240622, + 1.6836607559761676, 1.597804947338481, 1.5166272677851451, + 1.4415470728673707, 1.3730711720835704, 1.3101076639092915, + 1.2497199584258047, 1.1876339266342293, 1.118812535867187, + 1.0386807695411153, 0.9441406407091139, 0.8348908340763732, + 0.7131847537475748, 0.5841532400606788, 0.45475527374044006, + 0.3324015048743925, 0.22374169157108584, 0.13369207056588803, + 0.06463364851277809, 0.01615248305886774, -0.01354438691276111, + -0.0279057049251337, -0.030377679580477265, -0.023664674857447443, + -0.009966516408384392, 0.009715327378250581, 0.03461720931981048, + 0.06379212684620246, 0.09596268946723646, 0.1289257758416564, + 0.15999890389601176, 0.18641733594162646, 0.20596422310852136, + 0.21733508354682837, 0.22072257710898224, 0.21750891485874052, + 0.20976441141795457, 0.19994222336636813, 0.18987160344890414, + 0.1804692821307158, 0.1716163557673614, 0.16232627747858733, + 0.15129928147581098, 0.13750886901366746, 0.12070014320545414, + 0.10166435286277915, 0.08196372817237527, 0.06363188428770368, + 0.04849955535129092, 0.03768247082904758, 0.031186339834208196, + 0.028142009366932005, 0.026997086033230304, 0.026171700554363596, + 0.024727243184674525, 0.022637206691238587, 0.02085185772980701, + 0.0209625004180554, 0.02451921366531502, 0.03247481301457001, + 0.04459241596021095, 0.0594966601211461, 0.07518713821219944, + 0.08977280272218867, 0.10265955158028145, 0.11543648382248616, + 0.13228421768065188, 0.1598592452646772, 0.20609415535160697, + 0.27903337508315496, 0.3850267366295963, 0.5263505202951005, + 0.7022031091942411 + ], + "pressure:branch74_seg0:RESISTANCE_34": [ + 8273.038219022128, 9516.11530942274, 10872.353872506492, + 12273.326821455701, 13644.797753658959, 14923.149146068468, + 16062.216635871127, 17037.92895666177, 17841.504306680537, + 18484.357805368378, 18983.12420877345, 19353.29619606916, + 19610.410604826346, 19759.369987539547, 19801.870669206095, + 19738.114894614384, 19567.0314614024, 19296.53738217408, + 18937.582430564293, 18506.894888785446, 18025.251616685804, + 17509.847815029407, 16975.702570543603, 16432.292137768265, + 15884.238372222766, 15334.624642587172, 14786.733299286152, + 14246.79059603863, 13724.219558346143, 13230.122479595511, + 12773.138427020724, 12356.352153647826, 11973.117678013883, + 11605.561115224467, 11227.667498306268, 10808.778361284189, + 10321.047351052162, 9745.618221547296, 9080.656983331033, + 8339.879233985052, 7554.514410424408, 6766.919131686539, + 6022.199153196337, 5360.8289757514585, 4812.731827297775, + 4392.399972688019, 4097.3139052245515, 3916.5605653686284, + 3829.1487876981423, 3814.1028358715894, 3854.9622943032514, + 3938.337676688978, 4058.1334330213977, 4209.701538816218, + 4387.277956396741, 4583.0877048433385, 4783.7212382705275, + 4972.8513277702405, 5133.650086378931, 5252.624414063248, + 5321.83443529522, 5342.452795940119, 5322.892479130468, 5275.754687713894, + 5215.970835182859, 5154.674874152616, 5097.446587727659, + 5043.562255499932, 4987.017148900375, 4919.90009723857, 4835.963200424038, + 4733.654999881032, 4617.791520513582, 4497.881452097601, 4386.30262203782, + 4294.19799964266, 4228.358597821282, 4188.819165733639, 4170.289505870124, + 4163.320801200464, 4158.296999630928, 4149.5051473549065, + 4136.78390511725, 4125.91717781921, 4126.590616988073, 4148.238952282877, + 4196.661602693753, 4270.416756202019, 4361.133114952653, + 4456.634974966977, 4545.412262833249, 4623.848909463351, + 4701.617144906942, 4804.162772334226, 4972.001279799611, + 5253.4152612776215, 5697.368027530691, 6342.508546392744, + 7202.691654007121, 8273.038219022128 + ], + "flow:branch75_seg2:RESISTANCE_35": [ + 0.952466624900672, 1.2084462972839334, 1.4771734838506956, + 1.745045106808948, 1.9980372046554482, 2.2256342943555945, + 2.421594131294321, 2.5846352862510384, 2.7150770789794367, + 2.817061354326704, 2.8948907068812173, 2.950610312710284, + 2.986933897033826, 3.0036368928700177, 3.0000727858074128, + 2.976547994216989, 2.9325135130210995, 2.8705074554374748, + 2.793533208752971, 2.704920716153065, 2.6092345685554506, + 2.5092993149507112, 2.4073330844682213, 2.304560525629378, + 2.2011877279556638, 2.0976334718794987, 1.99468928801074, + 1.89393728606899, 1.7975905034831503, 1.7079298938720375, + 1.6262041675923466, 1.5520759980538457, 1.4830688482202825, + 1.4142833500737184, 1.3398136741857674, 1.2534845952753662, + 1.1507159989049052, 1.0292172687138548, 0.8910882524281566, + 0.741203500929788, 0.5873939265565895, 0.43911596770237427, + 0.3049737242431694, 0.19169106334781214, 0.10306191897712687, + 0.04007782256389711, -0.00022525868424785376, -0.021104809801438605, + -0.027170626469790127, -0.022655691183328653, -0.009690780827592952, + 0.009802094736325434, 0.03537319127689425, 0.06659895150976991, + 0.102054068135521, 0.13992868549711265, 0.1770764126909108, + 0.20998627534599168, 0.23551284891872523, 0.25168715711301176, + 0.25781531416042963, 0.2552156338583258, 0.24657568849038813, + 0.23458418323929217, 0.2221981250723094, 0.21099484033114346, + 0.20112394829537272, 0.19159094341089106, 0.1806294550017875, + 0.16655618539336536, 0.14854978081164497, 0.12695422781271679, + 0.10356634964412516, 0.08079711600567394, 0.061219705847265236, + 0.04668386114734833, 0.03783085456325281, 0.03374705353459259, + 0.032682178705519545, 0.03249307782813944, 0.031396614302111034, + 0.028920339508821717, 0.025858685147251433, 0.024062198671165238, + 0.025802853902409283, 0.03271733145001844, 0.04529777241100718, + 0.06232533221613797, 0.08123413540472486, 0.09939187176627601, + 0.11490190427505673, 0.12827502384495224, 0.14323435489542954, + 0.16669851549411824, 0.2081964252886832, 0.2777679900064931, + 0.38400847670091515, 0.5330813802279832, 0.7239558638743323, + 0.952466624900672 + ], + "pressure:branch75_seg2:RESISTANCE_35": [ + 9091.260694927729, 10459.828569433252, 11896.549661844381, + 13328.696575148624, 14681.291702694843, 15898.115141816255, + 16945.793400917028, 17817.475456052867, 18514.868516052222, + 19060.116510338354, 19476.22279959164, 19774.121698390125, + 19968.321847680356, 20057.62262417008, 20038.567507872103, + 19912.794731755377, 19677.369099031774, 19345.860359905666, + 18934.32580250945, 18460.568611077004, 17948.99288157447, + 17414.69976235665, 16869.548243005436, 16320.085775544418, + 15767.414195505102, 15213.772467571454, 14663.392425288122, + 14124.732648651054, 13609.62490501145, 13130.264068348488, + 12693.326234708504, 12297.007923641999, 11928.0685953972, + 11560.314304133397, 11162.170165982872, 10700.621001033813, + 10151.179718485182, 9501.599783545167, 8763.10780695329, + 7961.765052393518, 7139.438653118496, 6346.686443164501, + 5629.509320062711, 5023.855718757351, 4550.009500417698, 4213.27178154584, + 3997.7956785949254, 3886.1653970689013, 3853.735158575132, + 3877.8737760325025, 3947.1892792656563, 4051.4058486132817, + 4188.118974759115, 4355.064154092502, 4544.621133945965, + 4747.113715085984, 4945.7200558746745, 5121.669108253718, + 5258.144197125379, 5344.618401818906, 5377.381936465767, + 5363.483024445451, 5317.290482834808, 5253.179185633668, + 5186.958453568234, 5127.061292817355, 5074.287626818431, + 5023.320438248582, 4964.716015663796, 4889.4747885146935, + 4793.205476907032, 4677.747168083728, 4552.706384898179, + 4430.973118367393, 4326.304593873383, 4248.5902585908425, + 4201.258608030565, 4179.4250036601015, 4173.731764552986, + 4172.720756985807, 4166.858632297083, 4153.619494599191, + 4137.250687798737, 4127.64596545784, 4136.952192033924, 4173.91970493268, + 4241.179683766251, 4332.2157067190155, 4433.30959573104, + 4530.387986475102, 4613.310712433874, 4684.808662465928, + 4764.7871221192545, 4890.235741138987, 5112.099866814316, + 5484.0567787261325, 6052.060150666244, 6849.062447086663, + 7869.552410016644, 9091.260694927729 + ], + "flow:branch77_seg2:RESISTANCE_36": [ + 0.9650674408145027, 1.2457077094794227, 1.5521672834925782, + 1.8689359555574077, 2.179243033887259, 2.468709480138733, + 2.7268887403914364, 2.948268062209645, 3.130863825065678, + 3.2771968323586864, 3.390926749317477, 3.47557807162154, 3.5346546488573, + 3.569315670805566, 3.580036643196333, 3.5669000913858855, + 3.5297010423630133, 3.4702075125266094, 3.39081320900485, + 3.2952001538680955, 3.1879481872077835, 3.072870767626543, + 2.953322502230979, 2.831442922815242, 2.7083073194411904, + 2.58464218825388, 2.4612086029054607, 2.3394087557436216, + 2.2213513073185642, 2.1095223353363473, 2.005881171790942, + 1.9111652042019946, 1.8239484159450983, 1.7403125088348748, + 1.6544808038234953, 1.5596009962221187, 1.4493887392940463, + 1.3195160592918094, 1.1694089992594336, 1.0019576013831106, + 0.8240155149025141, 0.6449804980382524, 0.4749897183982984, + 0.32325812070933735, 0.19670674384875403, 0.09885860957555692, + 0.029414632511773793, -0.013903752757309795, -0.0356875095985638, + -0.0406189463632931, -0.03246027436576626, -0.01428797454969361, + 0.012426202840959362, 0.04655600762135901, 0.08676373977075912, + 0.13125231843754923, 0.17698654596451355, 0.22027621720054835, + 0.25729781256326245, 0.2849568090869111, 0.30139930432617457, + 0.30681637320197813, 0.30301761594576393, 0.2928048378699873, + 0.2795300334507994, 0.2657229514061479, 0.2527005065849486, + 0.2403645315853111, 0.22741907531669311, 0.21211398981649388, + 0.19304299517765777, 0.16982717923036175, 0.14350627348410908, + 0.11618840693072978, 0.0906455830985093, 0.06940323954424907, + 0.05403408556930485, 0.04461317198169816, 0.040002205536856614, + 0.03810917569847732, 0.036781238503817267, 0.03470179870354965, + 0.03178920517242243, 0.029298722708974115, 0.029379205676541315, + 0.03415385743676533, 0.04495603710457979, 0.061506589145099606, + 0.08197682081011413, 0.1036512191954859, 0.123931896238821, + 0.1419625396306726, 0.1598448393498493, 0.18322919018055359, + 0.22118208360705774, 0.2845815969733284, 0.38450128274121037, + 0.5297508615546499, 0.7236282346638488, 0.9650674408145027 + ], + "pressure:branch77_seg2:RESISTANCE_36": [ + 8251.42874182953, 9488.029101674074, 10838.398459946586, + 12234.193353268003, 13601.516177431795, 14877.007799857816, + 16014.637006285382, 16990.112658175527, 17794.694221356178, + 18439.489247873647, 18940.62351811001, 19313.62720756809, + 19573.939517756728, 19726.668249159782, 19773.908648334764, + 19716.02435121234, 19552.112174152382, 19289.96262321976, + 18940.123219303576, 18518.818254943242, 18046.228126672908, + 17539.156282916752, 17012.384309991314, 16475.339742295455, + 15932.76068845399, 15387.848347634357, 14843.95627973941, + 14307.263040576447, 13787.060134916232, 13294.302101109724, + 12837.622449452254, 12420.270370362838, 12035.962329838057, + 11667.432919142853, 11289.228045665228, 10871.15402948784, + 10385.519814466263, 9813.254816329107, 9151.829977569163, + 8413.979847025095, 7629.90402918114, 6841.012373210479, 6091.972827770156, + 5423.389701070028, 4865.759540191475, 4434.606026021975, + 4128.611282521201, 3937.735143945406, 3841.7482006716873, + 3820.01854474303, 3855.968541427367, 3936.0421267280894, + 4053.754248126019, 4204.1422486565425, 4381.311748532725, + 4577.344173423294, 4778.865368104667, 4969.614982487159, + 5132.7452359085355, 5254.620564836904, 5327.0720188864025, + 5350.941541791968, 5334.202872703801, 5289.201757562349, + 5230.708270509592, 5169.86937983277, 5112.487878494562, 5058.131206174671, + 5001.088943650193, 4933.649319511308, 4849.6157667173, 4747.318664127262, + 4631.339436797944, 4510.9672472657685, 4398.416524261425, + 4304.8152395701545, 4237.093307053711, 4195.581427137403, + 4175.26387687262, 4166.92251734331, 4161.071156023781, 4151.908408220272, + 4139.074490173487, 4128.100542902352, 4128.4551793453975, + 4149.493985048206, 4197.092212230186, 4270.019802794067, + 4360.2188892027325, 4455.723960411052, 4545.0878020613845, + 4624.53719901594, 4703.3329412406065, 4806.372668181955, 4973.6065505169, + 5252.967247453474, 5693.248750759921, 6333.269807903455, + 7187.562139125553, 8251.42874182953 + ], + "flow:branch78_seg0:RESISTANCE_37": [ + 1.1476565032849453, 1.4629293894299418, 1.7974127514731992, + 2.134239447278353, 2.4556058095076208, 2.7475704950931683, + 3.0012604875484006, 3.2138710091513243, 3.384954738538112, + 3.519029846482123, 3.62122174363849, 3.694437401328576, 3.742345110128211, + 3.765184559644362, 3.7625596154296486, 3.734879167016878, + 3.6815834152303104, 3.605523646738148, 3.5101456721109816, + 3.3995508132931094, 3.2793057777617753, 3.153107706958788, + 3.0239924172129684, 2.8937432128604947, 2.7628614947486008, + 2.6319413492187596, 2.5019004986433635, 2.374556180340269, + 2.2525099774519353, 2.138548782000626, 2.0343594431388405, + 1.9398475605758967, 1.8523483343050857, 1.7662191897232409, + 1.674378954626676, 1.5691598877475779, 1.4444993206823187, + 1.2969776490177534, 1.12831283473979, 0.9437639227134548, + 0.7524642571312524, 0.5658509434014014, 0.394776651565681, + 0.24812522774364987, 0.1314698165064947, 0.04678139065098809, + -0.008771358182094012, -0.03878977679515466, -0.048889491691644735, + -0.04440188495817456, -0.02840270139302909, -0.003657521985393158, + 0.02896308555548414, 0.06872782555488036, 0.11390090207632211, + 0.16234651035456518, 0.21032488564555232, 0.2535637778759356, + 0.28809409073573583, 0.3112287248561083, 0.32178021801531037, + 0.3210034339641761, 0.31191046016175145, 0.2977742897703185, + 0.2823144245415784, 0.26775688218827687, 0.25465767388826666, + 0.24212105417299876, 0.2281775898106682, 0.21078198544501142, + 0.18875803874742111, 0.1622869470322047, 0.13329810036631987, + 0.10458349672087351, 0.07929808953212573, 0.05987958492456236, + 0.04739314357459551, 0.04103052899293021, 0.03888244050292749, + 0.03838405678795239, 0.03724897181838124, 0.0346448135967127, + 0.031245604240573727, 0.029081722541291315, 0.030845148041015315, + 0.03865103539345241, 0.05335785552706417, 0.07379704641722624, + 0.09710043076690184, 0.12008700553455826, 0.1402526389799661, + 0.1577808595368385, 0.17664729252113281, 0.20477998898075786, + 0.2535023163393656, 0.3351365242456656, 0.4608124235086114, + 0.6387972415971721, 0.8690498354333973, 1.1476565032849453 + ], + "pressure:branch78_seg0:RESISTANCE_37": [ + 8983.753887150473, 10353.116357738269, 11805.91798815635, + 13268.897700644346, 14664.726695414583, 15932.851868075135, + 17034.733983849997, 17958.1907158737, 18701.279159713806, + 19283.623627401696, 19727.485928645514, 20045.49226000538, + 20253.57554710384, 20352.77686250626, 20341.37562804246, 20221.1478225722, + 19989.662003316804, 19659.30250501583, 19245.035929249945, + 18764.676038626494, 18242.40138017275, 17694.27019093145, + 17133.468295408853, 16567.741332823905, 15999.26709750368, + 15430.625955778585, 14865.803961097557, 14312.694137861303, + 13782.596253591719, 13287.61495005338, 12835.076921118452, + 12424.572146702889, 12044.52628191002, 11670.431256941822, + 11271.53056881428, 10814.519998903615, 10273.066833714998, + 9632.318296008767, 8899.73621575122, 8098.162832112874, 7267.268092361019, + 6456.728145655426, 5713.680693060724, 5076.712006994279, + 4570.028593484122, 4202.191214641616, 3960.90230990838, 3830.519718567447, + 3786.6524177284864, 3806.1439773063225, 3875.6351466930837, + 3983.113846885509, 4124.7988369284085, 4297.513792767687, + 4493.719424104482, 4704.139034405233, 4912.5292557357125, + 5100.333912882302, 5250.31355466513, 5350.796980698311, 5396.626544152208, + 5393.252644987009, 5353.758043268065, 5292.358722036997, + 5225.210038547465, 5161.98052202813, 5105.085162392933, 5050.63336111046, + 4990.07104304619, 4914.514632018293, 4818.855387639008, 4703.880325896358, + 4577.969597653047, 4453.250021952541, 4343.424885762815, + 4259.082169934395, 4204.848314353245, 4177.2128087140445, + 4167.88275880814, 4165.7180691528265, 4160.7879187131075, + 4149.47696654139, 4134.7127735945, 4125.314127151983, 4132.973424240692, + 4166.87766929254, 4230.755561866501, 4319.531546621802, 4420.747925728543, + 4520.588267849536, 4608.1760778049775, 4684.308496612877, + 4766.253333666423, 4888.44544222133, 5100.066959632396, + 5454.6385880078105, 6000.501767085324, 6773.564535676145, + 7773.648192124207, 8983.753887150473 + ], + "flow:branch79_seg0:RESISTANCE_38": [ + 1.3375972579640714, 1.7018855429881714, 2.0865934561297452, + 2.4718649274669664, 2.837433467044441, 3.167830315330251, + 3.453570682655611, 3.6920203219733243, 3.883554247372479, + 4.033798083000168, 4.148638773812605, 4.231581535388899, + 4.286459955710639, 4.313240623654184, 4.311266437073022, + 4.280665392198781, 4.220811667724872, 4.134984262597506, + 4.027160019080205, 3.9022162840161494, 3.7664549304546164, + 3.6240855120103608, 3.4784797832892136, 3.3314660906538958, + 3.1834982520959625, 3.035156933132451, 2.887489428170203, + 2.742657336393734, 2.6037474901030593, 2.474028861673011, + 2.3554660864575854, 2.2478695527286834, 2.147980573524539, + 2.0491659886279665, 1.943098263059491, 1.8209035777313531, + 1.6756935156042685, 1.5038326645359352, 1.307613798384077, + 1.0935023429657098, 0.872416424061084, 0.6576589873971372, + 0.4617890451308901, 0.2948698568208296, 0.16295036813381383, + 0.06783944012455431, 0.005953612558860693, -0.02724989464627725, + -0.038415804782010454, -0.033556307693154, -0.01614801284101734, + 0.01094771830793596, 0.04695706590602804, 0.0911643402826095, + 0.1417274011971606, 0.19610215156265678, 0.2499010800527411, + 0.29814556491652344, 0.33622762978242926, 0.361086520967732, + 0.3715247931354283, 0.36917909964677, 0.35762960769124397, + 0.34081338578239745, 0.32299372454139613, 0.30661273335196393, + 0.292149957949747, 0.2783497465111613, 0.2627646895738141, + 0.24295116185804497, 0.21756905903120294, 0.18693871387923233, + 0.15342261132755985, 0.12039471811231685, 0.09157660531000947, + 0.06975772611013377, 0.05605380951163495, 0.04939407279669305, + 0.04740160317893018, 0.0469970168890061, 0.04556255470571403, + 0.04220646812507355, 0.03785802186955262, 0.035035209104362496, + 0.036961273833650686, 0.04611413346229092, 0.06339699211444183, + 0.08729470379908735, 0.11434807670290498, 0.14073303986719884, + 0.1635612091846496, 0.1831952604141736, 0.20449052731628034, + 0.23692849009494316, 0.29387369537605174, 0.38970868827226096, + 0.5371913624885578, 0.7454417623700936, 1.0140379014306107, + 1.3375972579640714 + ], + "pressure:branch79_seg0:RESISTANCE_38": [ + 8965.240404117021, 10317.772482858602, 11746.118698920103, + 13176.5572977707, 14533.8427145239, 15760.542431184047, 16821.44125468967, + 17706.758734279316, 18417.887224871636, 18975.71358293357, + 19402.094898650026, 19710.045360806485, 19913.798341528614, + 20013.229791764174, 20005.90001809258, 19892.284245812978, + 19670.058921224878, 19351.398334425525, 18951.06773303508, + 18487.175764341253, 17983.120066439245, 17454.529899272868, + 16913.923936797673, 16368.090476107689, 15818.714455798887, + 15267.951774842197, 14719.690835196672, 14181.957237351326, + 13666.211793742646, 13184.591567743908, 12744.390871164052, + 12344.905712259992, 11974.037215411627, 11607.157737222242, + 11213.348747891083, 10759.66347018004, 10220.526541387651, + 9582.44037802291, 8853.917606814024, 8058.9631057099605, + 7238.113768057544, 6440.760863291242, 5713.5335791120815, + 5093.794855612016, 4604.003260341331, 4250.874745206967, + 4021.104614123743, 3897.826401598448, 3856.369532772908, + 3874.411907368608, 3939.045545593205, 4039.646764689483, + 4173.342520944049, 4337.47559676915, 4525.206481065281, 4727.089432470192, + 4926.834468410477, 5105.956927416565, 5247.348282761545, + 5339.644546880618, 5378.39983639675, 5369.690729294676, 5326.809695220294, + 5264.374309538191, 5198.213347323423, 5137.3938892839615, + 5083.696396162987, 5032.458875135187, 4974.594567323637, + 4901.0307637913875, 4806.791915849983, 4693.067357295415, + 4568.628538592994, 4446.0023469110065, 4339.006257230725, + 4257.99697075843, 4207.11697388276, 4182.390657080297, 4174.99300202322, + 4173.490851231561, 4168.164970058862, 4155.704468456264, + 4139.559526949605, 4129.078968078632, 4136.230074603846, + 4170.212875503238, 4234.380793331955, 4323.108383514717, 4423.5523346238, + 4521.514609402308, 4606.271195244078, 4679.168637229702, + 4758.233852320432, 4878.669746173741, 5090.096300470233, + 5445.913128753687, 5993.487827519908, 6766.681360855479, + 7763.926974398747, 8965.240404117021 + ], + "flow:branch80_seg0:RESISTANCE_39": [ + 0.8626577428025872, 1.098900132312233, 1.349229651939006, + 1.6009071290269736, 1.840717345673876, 2.058423910809493, + 2.247590527081025, 2.40623679652148, 2.5342742292951463, + 2.6351793606192246, 2.712691178845358, 2.769008925243101, + 2.806680792337863, 2.8257259725994035, 2.825753890351256, + 2.806900136845702, 2.7687451883921197, 2.7134064635078516, + 2.6434706319190253, 2.562093141530775, 2.4733990413621543, + 2.3801686032842744, 2.2846496361209327, 2.1881037701040458, + 2.0908801862871815, 1.9933956319166297, 1.8963464706737576, + 1.8011336748608933, 1.7097521088251466, 1.6243244885982764, + 1.54613891240793, 1.475113911903776, 1.4091973780345233, + 1.344138935944088, 1.2745887483486782, 1.1948024964779702, + 1.1002852286502747, 0.9885947566834261, 0.8611260911258032, + 0.7219555691104093, 0.5780533850706077, 0.43798932171181676, + 0.30987550436649475, 0.20026637863985106, 0.11316862331650329, + 0.049864824005788476, 0.008155895851596493, -0.0147924085287406, + -0.02321221704006134, -0.020989257192908416, -0.010384629797589561, + 0.006689217613604977, 0.029682715124474547, 0.05809714214405768, + 0.09071355928846608, 0.12590589839193564, 0.1608492027234898, + 0.19233251641483365, 0.21736855070714792, 0.23394971661409647, + 0.24123475010154044, 0.2402160214913414, 0.2331590014760297, + 0.22255482846896465, 0.2111559475865326, 0.2005674767718337, + 0.19113996100034014, 0.1821174556529332, 0.1719627393898395, + 0.1591175433000426, 0.14270954504780073, 0.12291731004875604, + 0.10122757262183917, 0.07978369721588752, 0.06097254787557612, + 0.04660605875793489, 0.03743913476216022, 0.03282442036576717, + 0.031277409375374335, 0.030840323648221885, 0.02982249277706935, + 0.027629248234932163, 0.024820234133601404, 0.022977135735987836, + 0.024153489116549413, 0.029943313456837217, 0.040958820113731774, + 0.05626779689291402, 0.07367957478578664, 0.09076253792670001, + 0.10564638327201135, 0.11851828643734479, 0.1324359467893628, + 0.15343258533544057, 0.19006466911871833, 0.2515992006838698, + 0.34633905978908275, 0.48031784480856476, 0.6534844525157406, + 0.8626577428025872 + ], + "pressure:branch80_seg0:RESISTANCE_39": [ + 8886.413134978908, 10224.851428915914, 11643.100778098224, + 13068.987020424083, 14427.638945270272, 15661.061974150974, + 16732.791072717206, 17631.606237303422, 18357.00612610985, + 18928.687152953575, 19367.832667701707, 19686.902537268426, + 19900.333622301005, 20008.23465830851, 20008.392827163123, + 19901.576325143058, 19685.408328284124, 19371.885134260872, + 18975.661597447248, 18514.61500193067, 18012.115935787755, + 17483.91611211105, 16942.750558739823, 16395.767079328994, + 15844.943969537473, 15292.642323301357, 14742.807409797724, + 14203.376479331539, 13685.651495275775, 13201.658768530675, + 12758.6960579693, 12356.30180222641, 11982.849716352546, + 11614.259175008709, 11220.220515725683, 10768.18912942319, + 10232.698733472373, 9599.913037989789, 8877.735516785848, + 8089.260779295937, 7273.978669680392, 6480.44154709651, + 5754.6088992243585, 5133.615132855828, 4640.160205978852, + 4281.510645563259, 4045.2074708598934, 3915.1931689079097, + 3867.490493014054, 3880.084738236046, 3940.1655705891603, + 4036.8979616194633, 4167.168306598499, 4328.151089164435, + 4512.94037193334, 4712.323617281767, 4910.2959487127355, + 5088.665600120298, 5230.5079980688915, 5324.449087363015, + 5365.722661561308, 5359.951024278729, 5319.969267197884, + 5259.891009194954, 5195.3103100548005, 5135.32101329039, + 5081.909141900786, 5030.791869131549, 4973.260021698069, + 4900.485180673985, 4807.525177885174, 4695.391681012294, + 4572.507827619678, 4451.016912829521, 4344.441785976544, 4263.04801399349, + 4211.112533070605, 4184.967731214617, 4176.20309437285, 4173.726772167642, + 4167.960221052368, 4155.534328775974, 4139.61977572208, 4129.177646856128, + 4135.842311969844, 4168.644734212079, 4231.053415259152, + 4317.786879159428, 4416.433825398493, 4513.217861867017, + 4597.5427309667175, 4670.468881722689, 4749.319800966329, + 4868.276882006507, 5075.817043719297, 5424.44276502708, 5961.194258490264, + 6720.255055400749, 7701.335628906327, 8886.413134978908 + ], + "flow:branch81_seg0:RESISTANCE_40": [ + 0.9808091814012995, 1.267950889555309, 1.5825249903147678, + 1.908794166767694, 2.2295615704086202, 2.5299057007781856, + 2.798803522640715, 3.0302255892132988, 3.2218038130210584, + 3.3758684474907286, 3.4960187149720148, 3.585843732933777, + 3.648928674732353, 3.68648922790184, 3.699033166403741, + 3.6866077685597465, 3.649007973333642, 3.5880116530953012, + 3.5060705720164353, 3.407042652862522, 3.295696568835047, + 3.1760603615603538, 3.051696280063267, 2.9248870753511245, + 2.796805803912897, 2.6682282851318178, 2.5399396403523635, + 2.4133754869166806, 2.290699395450079, 2.174477318748618, + 2.0667542108943024, 1.9683394778643004, 1.87781876055481, + 1.7912133437149167, 1.7026083988673075, 1.604949286403608, + 1.4917241575770077, 1.3584260826317605, 1.204374511897575, + 1.0324769606794273, 0.8497398814321077, 0.6657940879506321, + 0.49105478006422265, 0.334993679500825, 0.20474861428643976, + 0.10391872681688193, 0.03223236767904784, -0.012636669139068494, + -0.035413247524408935, -0.04088037689180983, -0.03291783512359113, + -0.014691681205088928, 0.012289834638396111, 0.04686870613299146, + 0.08770530829057704, 0.13299585428367078, 0.1796666420372923, + 0.22396232633927646, 0.2619677531894772, 0.29048548844872013, + 0.3075753866037451, 0.31337931616030196, 0.30970165839260116, + 0.2993952905888275, 0.28588622526153107, 0.2717854414274775, + 0.25847536104996754, 0.24588735132609524, 0.23271522183957372, + 0.2171707082804387, 0.19779392629707232, 0.17417222550828712, + 0.1473351280144962, 0.11941599062711664, 0.0932460580781378, + 0.07142174152032214, 0.055577569595002776, 0.04582248580097703, + 0.04102292506252549, 0.039048509656322346, 0.037691655537038224, + 0.03558236116714835, 0.03260359544330837, 0.030010952924205622, + 0.029987784329101763, 0.03471534018029022, 0.04558524060732788, + 0.06235300771257687, 0.08318805033263642, 0.10532425076143516, + 0.12608740278332656, 0.14454363656031533, 0.16275672225369148, + 0.18641222650172512, 0.2247052706598996, 0.2887251815348188, + 0.38987311114305456, 0.537254394828529, 0.7344846040899026, + 0.9808091814012995 + ], + "pressure:branch81_seg0:RESISTANCE_40": [ + 8251.95407882273, 9497.04896787033, 10861.095339260832, + 12275.853531886136, 13666.755109417236, 14969.097928517618, + 16135.084248754647, 17138.569371674548, 17969.284870476, + 18637.335117144758, 19158.326946999077, 19547.823378889123, + 19821.370329327765, 19984.23922455648, 20038.631858136785, + 19984.753236847664, 19821.714181441097, 19557.223846450346, + 19201.91349495097, 18772.511730908303, 18289.696325827146, + 17770.933547753593, 17231.669909431606, 16681.80380434249, + 16126.42180332395, 15568.887990106965, 15012.606783295763, + 14463.80326188297, 13931.85903310699, 13427.900501182841, + 12960.794932005854, 12534.052046444562, 12141.538944814205, + 11766.003246554194, 11381.797257520613, 10958.330870212434, + 10467.36760987638, 9889.364668746028, 9221.371068638262, + 8475.994286430367, 7683.615481995973, 6885.99548872509, 6128.296370182578, + 5451.589109715873, 4886.824533839199, 4449.609131177264, + 4138.764984045997, 3944.2052707327325, 3845.4421843114133, + 3821.7357890375442, 3856.262713472082, 3935.2943917218686, + 4052.2907963593357, 4202.230616818515, 4379.3050131483205, + 4575.692461355359, 4778.064870690935, 4970.138430766316, + 5134.936373327405, 5258.594084520832, 5332.698766087165, + 5357.865583801382, 5341.918639278178, 5297.228489736263, + 5238.650903418482, 5177.5075258290135, 5119.792771823436, + 5065.209037989588, 5008.092462320459, 4940.6888290773595, + 4856.667833420613, 4754.240153680846, 4637.869971371876, + 4516.807881537822, 4403.330638984199, 4308.696720499189, + 4239.993718026188, 4197.6940289553895, 4176.882323879391, + 4168.320925582624, 4162.4373772121535, 4153.291120973969, + 4140.374690260135, 4129.132554903291, 4129.032091966245, + 4149.531571703422, 4196.66529377107, 4269.373160760174, + 4359.7174205547535, 4455.703720120988, 4545.736250153544, + 4625.76559348555, 4704.740605706505, 4807.314862948415, 4973.359962679605, + 5250.9610967680455, 5689.555583798866, 6328.625693946835, + 7183.8491551982825, 8251.95407882273 + ], + "flow:branch82_seg0:RESISTANCE_41": [ + 0.5259235490907741, 0.6875452551245437, 0.8735384147361279, + 1.0766180653984445, 1.2877481159828361, 1.4977616963568374, + 1.6985389446999675, 1.883910543066106, 2.049832997649836, + 2.1947339208616747, 2.3184541392813185, 2.421764837480324, + 2.505822080544362, 2.571308078128968, 2.618663002287159, + 2.6479835710587922, 2.6592878845581693, 2.6531534318533367, + 2.630553297182725, 2.5932276170321624, 2.5434328514854765, + 2.4835081836557005, 2.415757283591882, 2.3420445951156057, + 2.2637668218473386, 2.1819856803105964, 2.0976110976716145, + 2.0116946566645963, 1.9255634432514284, 1.8407887924829212, + 1.7588921300495257, 1.6809913691998746, 1.6072832849925762, + 1.5367468237887432, 1.4671229811146216, 1.3951539675362907, + 1.317206393880259, 1.230047202679695, 1.1317304528648005, + 1.0220018348754785, 0.9027628727616356, 0.7777376122151055, + 0.6519288593780848, 0.5307871488474518, 0.4194001520798226, + 0.3216233403885368, 0.23968055115650258, 0.17431555804342405, + 0.12471221026642786, 0.08933593580286368, 0.06636319582576303, + 0.0540191606864529, 0.05100498013776685, 0.056226734867385726, + 0.06866953207410678, 0.08713822414546352, 0.10993188867693998, + 0.13491214677967636, 0.15964871200046762, 0.18178783231001377, + 0.19941404716205424, 0.21148903315141548, 0.21788126647464642, + 0.2193092153693905, 0.21708193666252523, 0.21256892698799312, + 0.20685468569014487, 0.20044603511851528, 0.19320667583164697, + 0.1845531513701568, 0.17377747381532033, 0.16044027214446935, + 0.144658569363114, 0.12716638612895775, 0.10922638587499658, + 0.0922844034700119, 0.07759133417629806, 0.06584804835679957, + 0.05710784657656609, 0.050775479056323965, 0.045935141364987164, + 0.04174262158949158, 0.03776222397435584, 0.03418030768106744, + 0.031765477360818896, 0.031571383359911304, 0.034549922951439736, + 0.041087713302148915, 0.05082909423257894, 0.06273370223908982, + 0.07546639343390518, 0.08809377680906907, 0.1008130825725979, + 0.11552688860651877, 0.13610602517750858, 0.1680180685737613, + 0.2177165941867771, 0.29134715372629794, 0.3933564414357684, + 0.5259235490907741 + ], + "pressure:branch82_seg0:RESISTANCE_41": [ + 6656.763460500572, 7473.521457861473, 8413.44100391207, 9439.707418554715, + 10506.656663985794, 11567.963808516377, 12582.594994491506, + 13519.373470381879, 14357.865372544427, 15090.124613970325, + 15715.346809115126, 16237.429152122602, 16662.21383725838, + 16993.148422438473, 17232.45732450228, 17380.629309683514, + 17437.755847212837, 17406.755287764114, 17292.545128827915, + 17103.91917926928, 16852.280497900156, 16549.45018574555, + 16207.06987796709, 15834.561572632208, 15438.983534870982, + 15025.701166910572, 14599.312800919815, 14165.132627851943, + 13729.867098833798, 13301.456981852429, 12887.590827106695, + 12493.918027914999, 12121.432990330486, 11764.975802694256, + 11413.13054807725, 11049.433933032265, 10655.524564539772, + 10215.064132562315, 9718.218791324129, 9163.703383205544, + 8561.127291828647, 7929.310044446214, 7293.533405656326, + 6681.341743298794, 6118.445690258957, 5624.328935368234, + 5210.2296780733095, 4879.906591015981, 4629.235242550752, + 4450.460647268895, 4334.367521178093, 4271.986732934037, + 4256.754521066933, 4283.142746017251, 4346.022630022473, + 4439.354474613475, 4554.542639941681, 4680.78079249086, + 4805.7874389811495, 4917.667854125256, 5006.742225983435, + 5067.763369843723, 5100.066627963364, 5107.282791610104, 5096.02720137519, + 5073.220631426776, 5044.3436173585515, 5011.957394399265, + 4975.373171039544, 4931.642440293494, 4877.187373360489, + 4809.787601421401, 4730.034502193803, 4641.637461360598, + 4550.977369720322, 4465.360777988963, 4391.109106317392, + 4331.764214818931, 4287.595458791432, 4255.594733509485, + 4231.134005947925, 4209.94703707003, 4189.832031080927, 4171.730757123273, + 4159.52737167008, 4158.546514386915, 4173.598614080309, 4206.637447075273, + 4255.865678700333, 4316.025814571764, 4380.370682699311, + 4444.183375997155, 4508.460600623595, 4582.817065758982, + 4686.814076962577, 4848.082122546576, 5099.234453799624, + 5471.3277191775815, 5986.833362487588, 6656.763460500572 + ], + "flow:branch83_seg2:RESISTANCE_42": [ + 0.7681226837167291, 1.0004094484637351, 1.2646022137975896, + 1.5502497215733593, 1.8446210067381281, 2.1352290384951202, + 2.411293311446406, 2.6649347683299345, 2.89096951590536, + 3.087774847376672, 3.255417292510424, 3.394878863295916, + 3.507714191344565, 3.5944884458016175, 3.6554842831049963, + 3.690656769519108, 3.699851513204429, 3.684079325491844, + 3.6449335945490953, 3.585172731089161, 3.5083576899336126, + 3.4179390307979536, 3.3172672409691994, 3.208946794603646, + 3.094842951932794, 2.9764053086954396, 2.8549243956883688, + 2.731985669236832, 2.6096072914673485, 2.4901202830334994, + 2.3756308834522843, 2.2675062077036037, 2.165617326752074, + 2.067958048237402, 1.9708292231950169, 1.8692568581415872, + 1.7580492619514163, 1.6329134138810186, 1.4918161257307458, + 1.335265493547739, 1.1669182597830026, 0.9928656741040159, + 0.8205978738134608, 0.6577721094530959, 0.5110913273090472, + 0.38515773273869236, 0.28200953954629693, 0.20184174437811142, + 0.14272382408110781, 0.1020676330979142, 0.07726947452089676, + 0.06588190207499303, 0.06633632357360811, 0.07728346755815792, + 0.09734919467886087, 0.12488134894933892, 0.15739403659224396, + 0.19182583574340548, 0.22481369855961175, 0.2532597492915591, + 0.27479018999112104, 0.2883970341917056, 0.2943482724541729, + 0.2939543128318191, 0.28924717503499325, 0.2821042094411856, + 0.27383664902733423, 0.2648701642610973, 0.2547353616116844, + 0.24244740160443506, 0.2270078642054884, 0.20794716278682174, + 0.1856894616225788, 0.16149713910830307, 0.13729757318876332, + 0.11511088545565512, 0.0965209512581527, 0.08219902147130496, + 0.07191644214337754, 0.06459300060149382, 0.05884074294032132, + 0.05357411159533214, 0.048401647777029586, 0.043851436854729316, + 0.04121385241220879, 0.04201756381448597, 0.04748175167616854, + 0.05786882496610355, 0.07234819027001575, 0.08924186035896722, + 0.1066424392916633, 0.12349766046534649, 0.14060778284088096, + 0.16130937088119776, 0.19169318170506977, 0.2398187099725206, + 0.3147773304807495, 0.42482502761960156, 0.5751979046730518, + 0.7681226837167291 + ], + "pressure:branch83_seg2:RESISTANCE_42": [ + 7026.824271217912, 7942.463815646526, 8983.872023105509, + 10109.851603439503, 11270.219004202521, 12415.752225155, 13503.9561329129, + 14503.772666937091, 15394.767698532693, 16170.544761189625, + 16831.366105256955, 17381.10267452902, 17825.882593361013, + 18167.933673652755, 18408.37010463639, 18547.014764273874, + 18583.259063118607, 18521.087467644695, 18366.780874732343, + 18131.21252518512, 17828.41916816568, 17472.002391906422, + 17075.1693141544, 16648.18638092322, 16198.406167941706, 15731.5427639283, + 15252.683247486564, 14768.077249364705, 14285.680061600671, + 13814.680217564497, 13363.380197140925, 12937.168962282825, + 12535.538294093833, 12150.580083556979, 11767.712840950373, + 11367.329830900906, 10928.966186620642, 10435.699465016158, + 9879.515143525696, 9262.41606046695, 8598.816545453483, 7912.727389959385, + 7233.6735904475645, 6591.838878674184, 6013.645262326353, + 5517.233943815603, 5110.639255882411, 4794.629846023902, + 4561.595881875011, 4401.335282307064, 4303.584665103974, + 4258.696564579298, 4260.487825886948, 4303.639823555542, 4382.73590662097, + 4491.263524287072, 4619.423656587006, 4755.148638261981, + 4885.181839738624, 4997.311900017183, 5082.1816640563275, + 5135.817800572774, 5159.2766881136395, 5157.723758442729, + 5139.168928112458, 5111.0124303916045, 5078.422948769097, + 5043.078412306052, 5003.128542192317, 4954.691249110858, + 4893.830911219641, 4818.696488548225, 4730.959972969074, + 4635.597470547695, 4540.206415710492, 4452.749824412882, + 4379.471095432786, 4323.016198918769, 4282.483815329766, + 4253.615908523438, 4230.941372632215, 4210.181102753509, + 4189.792027123985, 4171.855778967587, 4161.458817177829, + 4164.626926833299, 4186.165934834003, 4227.110217929518, + 4284.185701609914, 4350.778012199897, 4419.368481330072, + 4485.8092320698925, 4553.254765069223, 4634.857316393356, + 4754.625735963348, 4944.329341445086, 5239.804967049091, + 5673.596463449599, 6266.343763493156, 7026.824271217912 + ], + "flow:branch84_seg0:RESISTANCE_43": [ + 1.0895451595950243, 1.4100289868713436, 1.7619321016613827, + 2.127664841233411, 2.487945361725091, 2.8259018024029507, + 3.128960542151772, 3.390112264738718, 3.6065377499900064, + 3.7806716916241645, 3.9165110351805956, 4.018130435936375, + 4.089591456675561, 4.132386130879417, 4.14714806689212, + 4.1339522346970226, 4.092581947108262, 4.024937650898958, + 3.933721435457014, 3.823203549576976, 3.6986833677795112, + 3.5647123248306443, 3.425319108526868, 3.283120917735273, + 3.139486615721551, 2.995301663215687, 2.8514371910365464, + 2.7094662189010803, 2.5717738085532655, 2.4412143588780437, + 2.320103995120033, 2.2094107814193733, 2.1076497207881473, + 2.0104767051389376, 1.911342116563549, 1.8023718992095443, + 1.6762218814563776, 1.5277292644976201, 1.3559405422898696, + 1.1639424247812011, 0.9594172645939171, 0.7530589868240798, + 0.5565406511929172, 0.38056389657331224, 0.23327281961176072, + 0.11888042120085733, 0.037275646312136784, -0.01405988259768584, + -0.04034698020595658, -0.046961344731659964, -0.03832989006667974, + -0.018061708540431296, 0.012067781156960127, 0.05072836069043413, + 0.0964310969828519, 0.147180449942521, 0.19958783160678623, + 0.24947846134992402, 0.2924666602722272, 0.32492863163854224, + 0.34462621164347174, 0.35162352199115104, 0.3478672475753431, + 0.33651917876804305, 0.32140920351178154, 0.3055146689893027, + 0.2904578899728933, 0.27623658341037716, 0.26144379125613487, + 0.24409226643753568, 0.22252076682773356, 0.19620993762882855, + 0.16624015351086793, 0.13495039857898225, 0.10548899687104854, + 0.08078504902150314, 0.06272438014307173, 0.05150643589284446, + 0.04592105743989872, 0.04361870310279088, 0.04212111609160348, + 0.03984380798334783, 0.03658767525530847, 0.033693661283652636, + 0.03356856161410575, 0.03866433483529868, 0.05058696441800543, + 0.06914399152969174, 0.09236070311946644, 0.11717506123342084, + 0.1405758693283694, 0.16142713913034626, 0.18189709621736216, + 0.2081936269448048, 0.250475850708587, 0.3211104452306774, + 0.43289948216759133, 0.5961735576879311, 0.8152654790341882, + 1.0895451595950243 + ], + "pressure:branch84_seg0:RESISTANCE_43": [ + 8149.200268904407, 9369.959275016714, 10710.397887192057, + 12103.515098307158, 13475.864192658932, 14763.178351808203, + 15917.563236292375, 16912.3195708605, 17736.708628236996, + 18400.004431105855, 18917.431795351367, 19304.511542003907, + 19576.714621312873, 19739.724356911654, 19795.954234370107, + 19745.689822801454, 19588.105736301222, 19330.44099074625, + 18982.98814905192, 18562.01306999365, 18087.70166818635, + 17577.39087145127, 17046.426405506223, 16504.777475708444, + 15957.658236462941, 15408.441507452622, 14860.445524114411, + 14319.662095777921, 13795.176191344179, 13297.860537763088, + 12836.537517042743, 12414.894594562023, 12027.275249483484, + 11657.132284663652, 11279.517467563064, 10864.437632291932, + 10383.918001700313, 9818.292893456412, 9163.930295612043, + 8432.587834130423, 7653.528455699073, 6867.486525863549, + 6118.926044273005, 5448.610759117985, 4887.562452097593, + 4451.828918278755, 4140.987136545782, 3945.4443230977513, + 3845.313806614055, 3820.1189469136925, 3852.9971302144663, + 3930.200917207293, 4044.9675380700237, 4192.230041292434, + 4366.3169130297765, 4559.626916240867, 4759.252537593224, + 4949.291567322604, 5113.038460377841, 5236.689766711691, + 5311.720068221736, 5338.3736117034405, 5324.0655392446915, + 5280.8394666025015, 5223.283868452733, 5162.739795663845, + 5105.386827985147, 5051.216269013672, 4994.868857035629, + 4928.774944053795, 4846.606671639507, 4746.385758853312, + 4632.227474536214, 4513.041272671452, 4400.819474232173, + 4306.719353548519, 4237.924230945504, 4195.193817401973, 4173.91848158573, + 4165.148554515858, 4159.444076861303, 4150.76955369902, 4138.366577278548, + 4127.34295200005, 4126.866433264115, 4146.27680759016, 4191.6914469600315, + 4262.377253996808, 4350.812324204244, 4445.333010024649, + 4534.469324561932, 4613.894160491933, 4691.866533329212, + 4792.032981626638, 4953.090735762822, 5222.145864499747, + 5647.962901150703, 6269.892250441279, 7104.4380633234105, + 8149.200268904407 + ], + "flow:branch87_seg2:RESISTANCE_44": [ + 0.6867574484776074, 0.9010915042283251, 1.1480449516615596, + 1.41779820848811, 1.6979249697276602, 1.9756913398132885, + 2.2396865968454205, 2.481147918994124, 2.6942586278861613, + 2.8767840116980374, 3.028664898523533, 3.151295651713606, + 3.246778211862291, 3.316568809380741, 3.361761213297472, + 3.3828701842739184, 3.3801793682258863, 3.354686609238603, + 3.3078230815476255, 3.2421251899488164, 3.1608866390463226, + 3.067488125622095, 2.965298424323336, 2.8570364549598946, + 2.744695131760891, 2.6297317299448677, 2.5132978451321697, + 2.3966791081239363, 2.2815117805969685, 2.1697653348276855, + 2.063353023088197, 1.963658073498019, 1.87081095232612, + 1.7832488800287272, 1.6977047067117401, 1.6095155067060671, + 1.5134892057098752, 1.405022349423595, 1.2813522019937509, + 1.1421214012297578, 0.9900689457914792, 0.8305333751356241, + 0.6706367754774929, 0.518082207075605, 0.38000978698374677, + 0.26168501277135026, 0.16594178695932008, 0.09352320631417628, + 0.04285364744814392, 0.011334004849338969, -0.003992616991606198, + -0.006021198281694724, 0.003147085164218283, 0.021802034058740243, + 0.048435027605106165, 0.08144102884465954, 0.11859512090087743, + 0.1571267138985468, 0.19389860665471953, 0.22587569530047133, + 0.2506123023620277, 0.26686030763174984, 0.27461552061185746, + 0.2750505321830199, 0.27016941262016825, 0.2620568932698577, + 0.25240025478739003, 0.2420694801740219, 0.2310008502150488, + 0.2184604201419872, 0.20348243937371993, 0.1854264530925821, + 0.1643961658533521, 0.14132251762925332, 0.11788299326308393, + 0.09602776933976018, 0.07745727311755758, 0.06311854962688505, + 0.05307631463780809, 0.04648512842694742, 0.04202241016032165, + 0.03845205092906477, 0.03507832618792556, 0.03205981583864596, + 0.030375469538427895, 0.03142782070819333, 0.03651877052790444, + 0.046204746402342754, 0.06004089869763299, 0.07663587614839001, + 0.09416200351135587, 0.11129936124117658, 0.12823041188183393, + 0.1474323754123351, 0.1740592636164436, 0.2154295068872416, + 0.2802742756000547, 0.37693627660894796, 0.5113862436327228, + 0.6867574484776074 + ], + "pressure:branch87_seg2:RESISTANCE_44": [ + 6967.093389565247, 7893.422613139962, 8960.729413352748, + 10126.57458936861, 11337.252959320853, 12537.729967211022, + 13678.689674325433, 14722.260087276865, 15643.302134523987, + 16432.157626839118, 17088.57082947329, 17618.56803402889, + 18031.233606458165, 18332.8612212842, 18528.178033094773, + 18619.4087832739, 18607.77935960707, 18497.602339176246, + 18295.06310635156, 18011.123735624573, 17660.01927152874, + 17256.360729631313, 16814.70759928833, 16346.810765666401, + 15861.283394247082, 15364.423675100987, 14861.208683257704, + 14357.19477968681, 13859.45371508759, 13376.497341290013, + 12916.594533184356, 12485.72345707502, 12084.447974440827, + 11706.013916625141, 11336.301005755633, 10955.156568009616, + 10540.141004883197, 10071.358671551532, 9536.869314520485, + 8935.128452025918, 8277.97374791027, 7588.47780765677, 6897.421538065056, + 6238.096754583822, 5641.362291398334, 5129.975074644956, + 4716.182932661942, 4403.197451439952, 4184.208952580793, + 4047.9843756994505, 3981.744329710406, 3972.9770149464307, + 4012.601370750359, 4093.2260958541806, 4208.331090003916, + 4350.97955244472, 4511.555626678525, 4678.085114956119, 4837.009364053588, + 4975.210974589297, 5082.119986005823, 5152.342154169546, + 5185.859368190238, 5187.739442402194, 5166.643757542433, + 5131.5823030074225, 5089.847328150186, 5045.198807909161, + 4997.361354546844, 4943.162936044546, 4878.4296800662105, + 4800.3936083178405, 4709.502920967032, 4609.781042567434, + 4508.477886001746, 4414.021909152737, 4333.762179607388, + 4271.791726280946, 4228.390243918264, 4199.903831043943, + 4180.6164325366135, 4165.18571583138, 4150.60483269049, 4137.559148753764, + 4130.279581374482, 4134.827732337251, 4156.830281475945, + 4198.692049452602, 4258.490442983978, 4330.212188384433, + 4405.958265672728, 4480.024121536764, 4553.198339881725, + 4636.187204651807, 4751.265812155085, 4930.063648056191, + 5210.315911487833, 5628.078903141792, 6209.157505543791, 6967.093389565247 + ], + "flow:branch88_seg0:RESISTANCE_45": [ + 0.4152195142649909, 0.5466406880508362, 0.7062288742620417, + 0.8908530893837509, 1.0950026970433224, 1.3116244801292851, + 1.5330264226947552, 1.7518073724849368, 1.9615478980830217, + 2.1574239438784435, 2.3360818126219844, 2.495544041895259, + 2.634835381611413, 2.753427799319692, 2.851076033872556, + 2.9275531426045367, 2.982702720359371, 3.016676277298413, + 3.029961990286333, 3.0236684414489226, 2.999450419367864, + 2.95934920236002, 2.905656513316138, 2.840603567060492, + 2.7662157350371355, 2.6842560759437046, 2.5962646650936763, + 2.503714890194126, 2.4081455700439296, 2.3112244027521904, + 2.21465616381169, 2.1199836411133246, 2.0282331270370664, + 1.9396057813231964, 1.8532752282456588, 1.767372034286792, + 1.6792435684164242, 1.5859491480613672, 1.4849074080557667, + 1.3744561127322583, 1.2544169893294659, 1.1262243696658347, + 0.9928271801460636, 0.8582589455747546, 0.7270640881800144, + 0.6035516750122953, 0.49127257924668116, 0.392728128157418, + 0.3091209588162849, 0.24065776838973563, 0.1867764527112231, + 0.1464671241035259, 0.11864274095340728, 0.10218322991036063, + 0.0959825363111915, 0.09884129702983548, 0.10927645082510369, + 0.12547002258068532, 0.1452801856708761, 0.1664076623215859, + 0.18664394182451835, 0.20420195187717158, 0.2178974660933135, + 0.2272742284880325, 0.23254284511586965, 0.23433507296290473, + 0.23343915009606928, 0.2305071416076899, 0.22586341208563535, + 0.21947354785236325, 0.21104695065222245, 0.2002625045676687, + 0.1870031736833344, 0.1715192667890811, 0.15449344577289476, + 0.1369259565627213, 0.11992237385850073, 0.10442684108452203, + 0.09103341707069695, 0.07986065654908671, 0.07063288569511636, + 0.06287084969126344, 0.05613749562890353, 0.05027152795170939, + 0.04550080869694087, 0.04238780685629657, 0.04164365975332212, + 0.04382721376800877, 0.04911656365975648, 0.0571830466973734, + 0.06729562844643924, 0.07866585921684452, 0.09094576200257123, + 0.10475817754621392, 0.12211931258973077, 0.14652475642745777, + 0.18279526385491332, 0.2363766340614274, 0.3124584369523539, + 0.4152195142649909 + ], + "pressure:branch88_seg0:RESISTANCE_45": [ + 5725.297840004784, 6271.688557789329, 6935.185170260351, + 7702.770442213111, 8551.533601537141, 9452.15051233249, + 10372.641197603396, 11282.234962062046, 12154.242668497463, + 12968.608041868418, 13711.387902438755, 14374.360842051416, + 14953.472205131306, 15446.526667884931, 15852.504543677418, + 16170.462305964991, 16399.749691756275, 16540.99661283359, + 16596.23269121148, 16570.066917709195, 16469.379166359817, + 16302.656163408605, 16079.425872114187, 15808.964690139492, + 15499.693210036066, 15158.941444765655, 14793.112341674809, + 14408.331590739153, 14010.996915277055, 13608.041861387914, + 13206.554126421634, 12812.947935413735, 12431.490155064592, + 12063.01711799637, 11704.093121931342, 11346.945894775583, + 10980.546977941774, 10592.670322798227, 10172.583762486245, + 9713.376461306707, 9214.307240504002, 8681.339413060685, + 8126.733301788842, 7567.258506667696, 7021.808711657011, + 6508.299098693261, 6041.492617208455, 5631.788672149447, + 5284.187292917541, 4999.5478342870865, 4775.533317442701, + 4607.945079132925, 4492.263684397559, 4423.8323670221125, + 4398.052644251313, 4409.938098292223, 4453.322820922077, + 4520.648481164968, 4603.010317682397, 4690.848957375028, + 4774.982396183857, 4847.980783271545, 4904.9206326688745, + 4943.905035164734, 4965.809596949475, 4973.260882245182, + 4969.536033925935, 4957.346048276236, 4938.039488810504, + 4911.473278782182, 4876.439240049816, 4831.602315623545, + 4776.475922284219, 4712.100732515741, 4641.314950453983, + 4568.277153250465, 4497.5838281869765, 4433.160303187688, + 4377.476410328601, 4331.025047392326, 4292.660085375868, + 4260.388996163672, 4232.394708384553, 4208.006626941408, + 4188.172100716516, 4175.229625305774, 4172.135793025794, 4181.21403826617, + 4203.204799729578, 4236.741644135658, 4278.785255841112, + 4326.057612136919, 4377.111979588779, 4434.537852648835, + 4506.717721118426, 4608.184688671735, 4758.9813070308965, + 4981.74878417064, 5298.063040803713, 5725.297840004784 + ], + "flow:branch89_seg0:RESISTANCE_46": [ + 0.9768303367380349, 1.2524186681583787, 1.5484957244549822, + 1.8498918280229941, 2.1406041880860887, 2.4075956401137377, + 2.6420348492753303, 2.840152982185876, 3.0010850900234183, + 3.128254509044892, 3.2257640531805936, 3.2967665499185044, + 3.344518731926704, 3.3696118993465864, 3.3720546639016704, + 3.3519228132054826, 3.308878806250039, 3.245053604401696, + 3.1631560000122794, 3.0669161443263837, 2.9610451690920687, + 2.8490741042716614, 2.733972625429848, 2.6174988737164377, + 2.500339618795177, 2.3830434707384742, 2.2663477039503745, + 2.1517344988347564, 2.0413962823324607, 1.937789586490218, + 1.842616216864923, 1.7561557600741027, 1.6764431609044397, + 1.5989903732178148, 1.5177437021455178, 1.425916080576512, + 1.317764818459397, 1.1897794427615012, 1.042586004302458, + 0.8801220913306778, 0.7099940535654932, 0.5419500074566085, + 0.3857874584407473, 0.24985054886618602, 0.1397989547804085, + 0.05794842055882479, 0.002686395634075819, -0.028936621290814722, + -0.04179379058037573, -0.040533503993552954, -0.02835649313340216, + -0.0078745991331401, 0.019909291273002738, 0.054197541230475946, + 0.09366270312576476, 0.13649181950772407, 0.17955507911732133, + 0.21917017113416276, 0.25172604360953765, 0.27455955171221236, + 0.2863236217519516, 0.28776623819989217, 0.28116865509573724, + 0.2694420198883733, 0.25588470365555666, 0.24268864150615815, + 0.2306909681955655, 0.21936209835967546, 0.20712078682867535, + 0.19216089540547765, 0.17326456112327485, 0.15035979789434145, + 0.12485400088754002, 0.0990692656914502, 0.07578861899446061, + 0.057317931405520016, 0.044850843720990206, 0.03800530431221552, + 0.03530296130419609, 0.03452530891548929, 0.0335995582191334, + 0.031527298503084694, 0.028617675349885126, 0.02644781600506111, + 0.02730883355033805, 0.033196012788759666, 0.045117849421858175, + 0.062361092885271925, 0.08270817510040586, 0.10335682661618813, + 0.12191585990036193, 0.13808403587372095, 0.15472525269490012, + 0.1782115348976581, 0.21807147391295278, 0.2851104812198877, + 0.3896371855273345, 0.5394432525524445, 0.7360130145958187, + 0.9768303367380349 + ], + "pressure:branch89_seg0:RESISTANCE_46": [ + 8674.395284248476, 9993.441526627954, 11410.5527901928, 12853.12256747711, + 14244.55682805766, 15522.45589486305, 16644.550420118358, + 17592.80166651929, 18363.069736387377, 18971.739716866367, + 19438.448873692585, 19778.287560036864, 20006.843449608485, + 20126.946677579013, 20138.638462172352, 20042.281545041304, + 19836.260356339622, 19530.774299534263, 19138.788445949736, + 18678.156388868916, 18171.426980768993, 17635.50076232068, + 17084.59146809862, 16527.114075127727, 15966.355663596305, + 15404.942041537704, 14846.402019577723, 14297.829746014237, + 13769.718816505334, 13273.826910880276, 12818.299367562922, + 12404.474369760692, 12022.946589309518, 11652.234926615678, + 11263.364629998166, 10823.850814035857, 10306.20728693532, + 9693.631899495043, 8989.121113781926, 8211.521377163057, + 7397.238900902181, 6592.931017358005, 5845.491449005634, + 5194.857698110303, 4668.118627197666, 4276.358065183673, + 4011.857874092164, 3860.5008792858152, 3798.962712007009, + 3804.9948116902638, 3863.2775420791545, 3961.30986869698, + 4094.291682731071, 4258.405261238099, 4447.297052246037, + 4652.289711902187, 4858.403049429574, 5048.012449787788, 5203.83436370812, + 5313.122202231426, 5369.42847725052, 5376.333260900264, 5344.755301276681, + 5288.628200298536, 5223.738925264712, 5160.578717781831, + 5103.1543492823685, 5048.93106954327, 4990.34057736407, 4918.738167833618, + 4828.294793104269, 4718.665906735946, 4596.587713050016, + 4473.1744397235925, 4361.746465296801, 4273.340359955583, + 4213.66923716551, 4180.904486250013, 4167.970283368573, 4164.248211915424, + 4159.817298708339, 4149.898858484108, 4135.972552289691, + 4125.586971737237, 4129.708053177322, 4157.8858124192775, + 4214.947204431428, 4297.478403701104, 4394.865481742236, + 4493.695958532467, 4582.524912173273, 4659.91052445183, 4739.560248384148, + 4851.972454399358, 5042.753764002071, 5363.622032354797, + 5863.917367191569, 6580.932956264988, 7521.773247479146, 8674.395284248476 + ], + "flow:branch90_seg2:RESISTANCE_47": [ + 0.8347571674750895, 1.0752671055490177, 1.3363322768604555, + 1.6047457647009153, 1.8662321972299154, 2.1087794522132888, + 2.323863936827521, 2.50731056634203, 2.6576948473204123, + 2.7775235647018177, 2.8701530666617896, 2.9384865296509197, + 2.9855046665000637, 3.0119929848300644, 3.018172146316042, + 3.0040843917379387, 2.9694863126334674, 2.916023159230639, + 2.8458733441378317, 2.762300301298707, 2.6693659352439774, + 2.570303995531718, 2.467930502947807, 2.363974808596461, + 2.259227421186261, 2.154244536861765, 2.049654718200946, + 1.9466911236389244, 1.8472082431996293, 1.7533597228568683, + 1.666755549853922, 1.5878876242559816, 1.5153302378527764, + 1.4454635187326856, 1.3731731340079658, 1.2925194999921639, + 1.1982259140796587, 1.0868323314095916, 0.9582836322867717, + 0.8154854322043376, 0.6646904884232249, 0.5142132370370466, + 0.37272572843565427, 0.24788041832423266, 0.1452152536313227, + 0.06724559700571238, 0.013163648358831246, -0.019268343717781553, + -0.03422139933299582, -0.03574694077033006, -0.026895587107783617, + -0.01017701291740796, 0.013362421460893103, 0.042887378537817995, + 0.07726449427922052, 0.11498354733061485, 0.15339692109227093, + 0.18932425252994142, 0.21954253142602645, 0.24153336850334056, + 0.2538724862298774, 0.2569316110441901, 0.2524650447153556, + 0.24294652591637736, 0.23127179686546548, 0.21951769263504553, + 0.2086483095176312, 0.19841667845007752, 0.18758274401348163, + 0.17459527386041926, 0.15828449068757577, 0.13842966668414544, + 0.11606360541096358, 0.09308606123653869, 0.07191177553141562, + 0.0546550764312172, 0.04254336221123341, 0.03546355598069571, + 0.03230949486361238, 0.03120751257532025, 0.030304315188573995, + 0.028573326614774467, 0.026080731683382506, 0.024033551264327078, + 0.02435349045630666, 0.02884353476517486, 0.03855244053398735, + 0.05308753535915576, 0.07072031146793122, 0.08905938543217416, + 0.10591280502580386, 0.12071519967466741, 0.13554129003606288, + 0.1555251285533527, 0.18867139995866827, 0.24434660609812744, + 0.33191721461802903, 0.458626789000419, 0.6266573150087699, + 0.8347571674750895 + ], + "pressure:branch90_seg2:RESISTANCE_47": [ + 8390.378649455995, 9655.621103419528, 11028.997774004185, + 12441.031483512626, 13816.624268661768, 15092.584366422694, + 16224.072001828195, 17189.123448587667, 17980.24492251256, + 18610.62378190235, 19097.916653489352, 19457.396178920088, + 19704.742892840564, 19844.08908848474, 19876.59559322448, + 19802.48462169467, 19620.475683273547, 19339.223889897617, + 18970.189142710467, 18530.539277703756, 18041.642617938753, + 17520.51083976915, 16981.95808799941, 16435.081901186073, + 15884.040881615347, 15331.760991434405, 14781.548888426254, + 14239.891807243543, 13716.54560050308, 13222.839880355978, + 12767.244251953927, 12352.346437245422, 11970.646261522312, + 11603.10078769365, 11222.805218622581, 10798.513388353751, + 10302.466326895992, 9716.46189389022, 9040.210123029998, + 8288.996486950064, 7495.714653181255, 6704.104092993039, + 5959.785567024327, 5303.016088822309, 4762.928947505513, + 4352.756625838879, 4068.249557361414, 3897.635679321471, + 3818.9726480456843, 3810.947284074228, 3857.511299343555, + 3945.46213416062, 4069.295236261208, 4224.616174116566, 4405.462698086278, + 4603.890038037849, 4805.96996734321, 4994.971658319433, 5153.939930696126, + 5269.626379627232, 5334.5383567251165, 5350.631390626493, + 5327.134277002239, 5277.060528783089, 5215.643678602059, + 5153.809262112924, 5096.629067902736, 5042.803874217884, + 4985.810163677634, 4917.487421013306, 4831.681838537408, + 4727.232240960311, 4609.571862859506, 4488.694677450358, + 4377.3038325604475, 4286.522102326356, 4222.80641912375, + 4185.561923197936, 4168.969461116379, 4163.172300359411, 4158.42088057538, + 4149.314727838258, 4136.202018430124, 4125.432486003088, + 4127.1155792325035, 4150.736202668077, 4201.811513146338, + 4278.2757923044655, 4371.035938071079, 4467.511680952045, + 4556.171892397305, 4634.042346649837, 4712.037456131638, + 4817.165755975341, 4991.53721899452, 5284.425882992937, + 5745.1056058605345, 6411.68235572844, 7295.634830915721, 8390.378649455995 + ], + "flow:branch91_seg0:RESISTANCE_48": [ + 1.0018691890039109, 1.2722699657716228, 1.5567381879661046, + 1.8407578269597589, 2.109462159151261, 2.351641831272337, + 2.560564991451291, 2.7346469943021336, 2.8742407324176433, + 2.9836231291047306, 3.0672380325653017, 3.1274196421349396, + 3.166984897278008, 3.1857671927524427, 3.183156122810744, + 3.159369252938408, 3.1138873741619477, 3.04929826790235, + 2.9686805184870715, 2.8756034349644692, 2.7748209377948405, + 2.6693632085999264, 2.561633648675217, 2.452939488515843, + 2.3435467169567477, 2.233896426961183, 2.1248076945687218, + 2.0179343150683797, 1.9156021026830725, 1.8202280918546876, + 1.7331853162649025, 1.654195919941326, 1.5807115125205553, + 1.507654955841196, 1.4288085590246817, 1.3376308843571278, + 1.229186493570804, 1.100969599577279, 0.9550032797219207, + 0.7963129132038976, 0.6331131664241939, 0.4753369078745614, + 0.33215617317958307, 0.21080113692211253, 0.11545037896426529, + 0.047250063307254966, 0.0032466151295095238, -0.019969925338225607, + -0.027294174423408726, -0.023166743680866093, -0.009959594077427157, + 0.010277043477938947, 0.037038326682260224, 0.06984041574721088, + 0.10723376328190813, 0.14730275529455916, 0.1867440746131608, + 0.22185200387187098, 0.2492667342263008, 0.2668344124892717, + 0.2737740290254914, 0.27141240309377634, 0.2625139709671371, + 0.24995522486673907, 0.23686522481259348, 0.22495444706428103, + 0.21445035827973105, 0.204339677617523, 0.19277258776787104, + 0.17796029073711878, 0.15899228721263567, 0.13619203420214404, + 0.1114086534062631, 0.08717594260814694, 0.06622896792983253, + 0.0505607658523187, 0.04089902720758797, 0.03633878019591674, + 0.035059356552347966, 0.03478821298286544, 0.03362675085651293, + 0.031020219056700844, 0.02775797579732227, 0.02576814022329707, + 0.027447582777432776, 0.03456519068386786, 0.047688506824037254, + 0.06558464571519193, 0.0855954381188827, 0.10491448106991037, + 0.12149153189836195, 0.1357753984934738, 0.15158679210545165, + 0.17614212132545426, 0.21945924503019604, 0.29216579769748735, + 0.4034806383737712, 0.5599893094963929, 0.7608736281908173, + 1.0018691890039109 + ], + "pressure:branch91_seg0:RESISTANCE_48": [ + 9071.139026163459, 10440.090529614748, 11880.260950396436, + 13318.160339805594, 14678.523294137733, 15904.600490433255, + 16962.310744270533, 17843.631509599516, 18550.349367254836, + 19104.11699390824, 19527.43215287916, 19832.11213895497, + 20032.418203752506, 20127.50687892329, 20114.28787798316, + 19993.86266447829, 19763.60265163702, 19436.608938166253, + 19028.46739883292, 18557.248288635667, 18047.019166252412, + 17513.120859236995, 16967.721009473375, 16417.437701321578, + 15863.617550053408, 15308.493666395902, 14756.212766897808, + 14215.147481158647, 13697.072652857742, 13214.224944081168, + 12773.555579397456, 12373.657864063742, 12001.630123532108, + 11631.768452649787, 11232.594697478193, 10770.9916787688, + 10221.972872009499, 9572.852289227028, 8833.872115398237, + 8030.474216823768, 7204.246787348344, 6405.4767211810295, + 5680.599062289055, 5066.217841488187, 4583.487854459536, + 4238.211758101572, 4015.4365602636108, 3897.898739706437, + 3860.8184401722892, 3881.714284436999, 3948.577802811673, + 4051.0293406266524, 4186.513044907254, 4352.579391604113, + 4541.889792034933, 4744.7461133561455, 4944.424731238537, + 5122.164799578133, 5260.9566950158005, 5349.896156868389, + 5385.02918645578, 5373.073039700373, 5328.023161575997, 5264.442300007792, + 5198.171871836302, 5137.8714640462995, 5084.692666611304, + 5033.505567007164, 4974.945139668451, 4899.955280052646, + 4803.926425207244, 4688.496133138981, 4563.025907769502, + 4440.343546141973, 4334.295801673886, 4254.972772181196, + 4206.058520522002, 4182.971467750333, 4176.494160468338, + 4175.121448446092, 4169.2413420977355, 4156.04531629929, + 4139.529635878792, 4129.455743217519, 4137.95821660878, + 4173.9923588215515, 4240.431455539769, 4331.033807107957, + 4432.341964110096, 4530.148017810042, 4614.072253996284, + 4686.386841565957, 4766.434803393268, 4890.750477539207, + 5110.0510369889025, 5478.140750984628, 6041.691715304324, + 6834.044397118291, 7851.0566016829225, 9071.139026163459 + ], + "flow:branch93_seg2:RESISTANCE_49": [ + 0.668798750600175, 0.8619435589807685, 1.0721633488905535, + 1.2888307384908981, 1.5004752913795856, 1.6973604883017863, + 1.8725039606565543, 2.0223560914710332, 2.1456685735838694, + 2.2442967162695915, 2.3208264769764333, 2.3776010276948387, + 2.4170191361958535, 2.4398036475817295, 2.446221389942345, + 2.4363592030470564, 2.4100506352704385, 2.3685748012475774, + 2.3136251673706765, 2.2477228669089087, 2.1740449456971924, + 2.095165326202173, 2.0133388058043473, 1.9299951387258418, + 1.8458258593836974, 1.7613188298933238, 1.6770036479849972, + 1.5938622743181965, 1.5133610139761942, 1.4372092837210273, + 1.3667183855998302, 1.3023338545017145, 1.2430047399565605, + 1.185952826286109, 1.1271690433624926, 1.0619444272227596, + 0.9860250302734678, 0.8965278801958438, 0.7932162293520438, + 0.6782049886236687, 0.5562980669825727, 0.43401722983991337, + 0.3182970108985124, 0.2153820187510205, 0.1298945401859315, + 0.06413644929296107, 0.0177393882715144, -0.010920130823965512, + -0.02502789549864387, -0.027810336377119695, -0.02177512485865498, + -0.008999140910772242, 0.00955661594117023, 0.03314901976848374, + 0.060835055500803564, 0.09136940439205267, 0.12263772711421511, + 0.15209057178546218, 0.17711863185608584, 0.1956459209571253, + 0.2064546907930417, 0.20974612832086584, 0.20683067782896652, + 0.19964019352456894, 0.1904787192222366, 0.18104442737314175, + 0.17218135111122265, 0.1637711955175357, 0.15488963630029662, + 0.1443290269734664, 0.13115038604980994, 0.11513415497434813, + 0.09704754674118765, 0.07836810902202762, 0.06100531379545517, + 0.046669766361427265, 0.03639697619896851, 0.030178504605981225, + 0.027191151862525593, 0.025982443333092756, 0.025080364455193058, + 0.023623928692701555, 0.02160824476771098, 0.01993777032238457, + 0.020108786768926783, 0.023562431530907164, 0.031172883820855323, + 0.04269006616735197, 0.05680075557155414, 0.07163019659377264, + 0.08541952134246318, 0.09765855029173111, 0.10990384672495032, + 0.12615088176888245, 0.15271593132774036, 0.19709013616613097, + 0.2668047503402786, 0.3678124696390036, 0.502115190589721, + 0.668798750600175 + ], + "pressure:branch93_seg2:RESISTANCE_49": [ + 8289.838861848855, 9529.005724855228, 10877.721228981309, + 12267.80285601517, 13625.659268902387, 14888.823492098712, + 16012.498464434695, 16973.91076649508, 17765.051584156558, + 18397.82409924887, 18888.819142278233, 19253.069895390323, + 19505.96622880145, 19652.14572871084, 19693.320294754136, + 19630.04706830874, 19461.258139031896, 19195.159973786846, + 18842.617412557804, 18419.805390775717, 17947.107008322444, + 17441.035882392043, 16916.058206614714, 16381.346912270159, + 15841.338704343652, 15299.163579298483, 14758.21929844951, + 14224.805866027777, 13708.330714132979, 13219.761016174254, + 12767.509745080173, 12354.435336837341, 11973.795166530539, + 11607.76492484672, 11230.62346040949, 10812.159285004871, + 10325.080177118056, 9750.889736072564, 9088.069050590528, + 8350.186838902919, 7568.06373171026, 6783.541679896793, 6041.110848365133, + 5380.835021926992, 4832.369590585532, 4410.48277989496, 4112.811301998595, + 3928.9392804279373, 3838.42753101811, 3820.576113919249, + 3859.2964615569604, 3941.26385215501, 4060.3127626679, 4211.675490388047, + 4389.301895856311, 4585.202337844649, 4785.81176506126, 4974.773557220672, + 5135.347082053588, 5254.213350879759, 5323.559607312071, 5344.6766145479, + 5325.971842358639, 5279.839564956601, 5221.061928286378, + 5160.533965182688, 5103.670772740949, 5049.713401523967, + 4992.731627247411, 4924.977504106929, 4840.426771063792, + 4737.670797525757, 4621.631822548252, 4501.789407754668, + 4390.394228798899, 4298.421084440295, 4232.513534210661, + 4192.617437591838, 4173.45135925487, 4165.696599656283, 4159.909096162488, + 4150.564983058393, 4137.63287917693, 4126.915549544811, 4128.012746592772, + 4150.170433260739, 4198.997116044839, 4272.888362921421, + 4363.418876635291, 4458.560713818045, 4547.029435473459, + 4625.551862436256, 4704.114499946217, 4808.351251725079, + 4978.785701418351, 5263.479060090661, 5710.749895254139, + 6358.789155083427, 7220.440487102573, 8289.838861848855 + ], + "flow:branch96_seg2:RESISTANCE_50": [ + 0.7310944301563245, 0.9500180738588738, 1.1936510429958365, + 1.4503707288324266, 1.7070868898926954, 1.9518244914243355, + 2.175150161095806, 2.371165998021291, 2.5369861552137865, + 2.6733057801969413, 2.7822219710379517, 2.8662806688000613, + 2.9281142725666807, 2.9689044294088895, 2.9892222078608057, + 2.9891661907832168, 2.968639141006266, 2.928750548916611, + 2.871228160564345, 2.7988765780210443, 2.7152227074395325, + 2.623514195400207, 2.5266920618782476, 2.4268095051320677, + 2.3250883371561324, 2.2223321147415254, 2.1192597301604317, + 2.0169811667279784, 1.9171226766191223, 1.8216552176296599, + 1.732288309469507, 1.6499100327543994, 1.5738338489807078, + 1.5014772730996635, 1.4286516848352044, 1.3501150923912915, + 1.2607437779876796, 1.156673331464802, 1.036655134687682, + 0.9021835174450787, 0.7579022207921196, 0.6106904258785346, + 0.46841932683985016, 0.338612218523712, 0.22728929510625123, + 0.13797795343793937, 0.0713674626571408, 0.026258194071242504, + -0.0004624293537863114, -0.012273112257730765, -0.012272913148659742, + -0.0030385982668584494, 0.013973416772481222, 0.03768220341639461, + 0.06701741763167234, 0.10059159050958248, 0.13615509976579848, + 0.17089063441126187, 0.20174947834066653, 0.22608008723076578, + 0.2420910020064852, 0.2494675595307144, 0.24919544661121884, + 0.24320695386690963, 0.23398610635759978, 0.22362216515837305, + 0.21339815020450453, 0.20353573711047998, 0.19328296589052585, + 0.18139930285970737, 0.16674506758814647, 0.14884816527586056, + 0.1282518999770352, 0.10639035817251144, 0.085314678047749, + 0.06704916334798414, 0.05302448331629284, 0.04361745852236945, + 0.038226569601316804, 0.035421661393854394, 0.03357612336806978, + 0.03152481459588952, 0.028961675335474026, 0.026604081158694014, + 0.025944071740468345, 0.02862689129529355, 0.035844392928248515, + 0.04767896625191096, 0.0630254001045863, 0.07995135482167258, + 0.09641937264387752, 0.11145890522263202, 0.1261701772647683, + 0.14432488843818214, 0.17242378108538725, 0.2187111278490993, + 0.2920076494701936, 0.3997996138758712, 0.5460128311028698, + 0.7310944301563245 + ], + "pressure:branch96_seg2:RESISTANCE_50": [ + 7693.597942997972, 8799.93224173434, 10031.135530244475, + 11328.47276069793, 12625.792178635227, 13862.577745445953, + 14991.157756116307, 15981.727069775385, 16819.70201035864, + 17508.595517515194, 18059.005311437893, 18483.797347914726, + 18796.274499786145, 19002.408240309323, 19105.084473882456, + 19104.801390643002, 19001.067600925133, 18799.48993297325, + 18508.799580377938, 18143.16964666339, 17720.423411121443, + 17256.9729101192, 16767.680637340683, 16262.922464560033, + 15748.87283914724, 15229.592548799417, 14708.71452764998, + 14191.848094965584, 13687.211543339577, 13204.765140991401, + 12753.147974396397, 12336.847973814698, 11952.395705423982, + 11586.740537793552, 11218.715208231195, 10821.829223432615, + 10370.189789812517, 9844.268045930414, 9237.754079136468, + 8558.199510036686, 7829.071561800061, 7085.134291540085, + 6366.164910602533, 5710.182515457253, 5147.610258165227, + 4696.273897767051, 4359.6566673934, 4131.696223361612, 3996.6631055185094, + 3936.977621725419, 3936.9786279264426, 3983.644392785304, + 4069.6148956068823, 4189.427645851541, 4337.673642027432, + 4507.341286774858, 4687.062076216122, 4862.598682099746, + 5018.544366545045, 5141.499505921538, 5222.41093180019, 5259.688488749429, + 5258.313361554961, 5228.050413210447, 5181.452705943946, 5129.07835557743, + 5077.411124834521, 5027.571255144379, 4975.75870412936, 4915.704414043255, + 4841.648990752806, 4751.206695282344, 4647.123123765856, + 4536.645456244182, 4430.139153878316, 4337.834069536312, + 4266.960114190744, 4219.421556899412, 4192.178609480988, + 4178.003958893959, 4168.677501582102, 4158.311178358261, + 4145.358311192903, 4133.444169548996, 4130.108800903915, + 4143.666474440795, 4180.140239780519, 4239.946454209635, + 4317.499914618743, 4403.035510160969, 4486.256913937991, + 4562.259443621108, 4636.603103186589, 4728.348240053074, + 4870.346464485841, 5104.260346312952, 5474.665545477576, + 6019.394042287178, 6758.284983489504, 7693.597942997972 + ], + "flow:branch97_seg0:RESISTANCE_51": [ + 0.690096963118332, 0.9022364789252597, 1.146067550562968, + 1.4122833579011747, 1.6892782394898591, 1.965259253333077, + 2.2297090931785926, 2.4745645431716077, 2.6943894314694052, + 2.8869776261411935, 3.0519293783714305, 3.190018646465417, + 3.3025753303192324, 3.3902654556920666, 3.4534697452462058, + 3.492167834881266, 3.5062637321356163, 3.496522624384441, + 3.46428920610336, 3.4119991331055184, 3.3428312651953185, + 3.2600502471504886, 3.166866350712634, 3.065863790959413, + 2.9589643702013797, 2.847633927233675, 2.7331320607306764, + 2.6169191909829683, 2.5008277063297384, 2.38700218881936, + 2.2774754919928664, 2.173688040032376, 2.0757917157289247, + 1.982266372264529, 1.8899516166488843, 1.7943978255808137, + 1.6907493626893224, 1.5747953668829604, 1.4441765793747923, + 1.298854937216005, 1.1416957927018736, 0.9779381389638558, + 0.8143732837762849, 0.6581976703784507, 0.5159356635310359, + 0.3923204375442235, 0.2898263476487585, 0.20903075096486867, + 0.1485057788818583, 0.10601444770466632, 0.07908963422902016, + 0.06539486446695603, 0.0632995305748524, 0.07144220859849555, + 0.0885376495945266, 0.11306165801541244, 0.14280023868402056, + 0.1749789979244371, 0.20647225291697952, 0.23429546473402263, + 0.25606484235421234, 0.2705730644260156, 0.2777937748711514, + 0.27876589691258574, 0.2752601747693315, 0.26905463549810604, + 0.26150147719748496, 0.25317212300960734, 0.24379889789632556, + 0.23256326257688453, 0.21853335797282478, 0.20117613579949076, + 0.18071991825014752, 0.15819263088001118, 0.13528748944277186, + 0.11388497824615212, 0.09555832879139803, 0.08111902383323294, + 0.07053347313249635, 0.06294224823827287, 0.05711366892568101, + 0.05197252367129702, 0.04701633645071184, 0.042569386147147725, + 0.03969849837966953, 0.03979337164276383, 0.04405866687295759, + 0.0529136481156203, 0.06579523820920193, 0.08128088822527162, + 0.09762094883258253, 0.11367355871241559, 0.12984596395190215, + 0.1488056984860525, 0.17577650240528497, 0.21798085103797474, + 0.2838273126734641, 0.3812242869777442, 0.5157398127085405, + 0.690096963118332 + ], + "pressure:branch97_seg0:RESISTANCE_51": [ + 6823.816261771821, 7692.17996432742, 8690.268657798953, 9779.98616403399, + 10913.826316588184, 12043.51634206206, 13126.005105152695, + 14128.286949429008, 15028.109658979629, 15816.44273854552, + 16491.649871760845, 17056.899149667286, 17517.634333147358, + 17876.581706326157, 18135.29970464845, 18293.70497049205, + 18351.404572021118, 18311.530697690698, 18179.587667943913, + 17965.545502237102, 17682.416422546718, 17343.56379974658, + 16962.12843622393, 16548.688458192097, 16111.11049702159, + 15655.394760635272, 15186.697241609332, 14710.995967969322, + 14235.79156738794, 13769.862589212196, 13321.530237631361, + 12896.690689372721, 12495.965655588361, 12113.132625991737, + 11735.254969950161, 11344.11877125811, 10919.848155487654, + 10445.206546443118, 9910.536645305296, 9315.682646669255, + 8672.373472979205, 8002.054216423612, 7332.524154009796, + 6693.240928613622, 6110.911123017939, 5604.909330179631, 5185.36398025673, + 4854.638404591395, 4606.887820947605, 4432.955446645761, + 4322.742454825746, 4266.684813084658, 4258.1078542388905, 4291.4387780436, + 4361.416596102002, 4461.802225214339, 4583.532983012635, + 4715.252273552945, 4844.165547474722, 4958.05600837511, 5047.165938133804, + 5106.55333414934, 5136.110311468582, 5140.0895582959565, + 5125.739370642951, 5100.3378558076865, 5069.420049273777, + 5035.324992466607, 4996.956994720897, 4950.965478951463, 4893.53600918888, + 4822.486626167596, 4738.751935137199, 4646.539606873618, + 4552.780585362024, 4465.172372455576, 4390.154773233502, + 4331.049479869801, 4287.718995376535, 4256.645368518256, + 4232.786887021921, 4211.742321555219, 4191.454856162194, + 4173.251881501886, 4161.500300369506, 4161.888650921268, 4179.34804571858, + 4215.594684015508, 4268.323687501337, 4331.712049322023, + 4398.5978224651135, 4464.306955899826, 4530.506455034025, + 4608.11550027447, 4718.51674760041, 4891.274398635989, 5160.807762132576, + 5559.488775911977, 6110.109434823618, 6823.816261771821 + ], + "flow:branch98_seg0:RESISTANCE_52": [ + 0.9665649091287856, 1.2493362195130961, 1.5594927832453909, + 1.8814197975023674, 2.1981780707037353, 2.4950758851195483, + 2.761300800032692, 2.9909727919027023, 3.1818523388481803, + 3.336185659018969, 3.457533801155577, 3.549405109646262, + 3.6152721977179416, 3.656403097136385, 3.6732903731555004, + 3.666001767347636, 3.634319177187956, 3.5798170556790163, + 3.5048011566010953, 3.412833972953631, 3.308364264160175, + 3.1952300341845987, 3.076815996243474, 2.955341715906898, + 2.8319852456384313, 2.7075298888484083, 2.5827699163090005, + 2.459108615516892, 2.338650554800026, 2.223910264739004, 2.11694706354522, + 2.0186587529136792, 1.9278350644078532, 1.8407880635604725, + 1.7519035384041035, 1.6543878925849282, 1.5418704622518746, + 1.4097978613191875, 1.257218272649603, 1.0866683017511822, + 0.9046497918236303, 0.7203557009656312, 0.5439328315445872, + 0.3848126995031999, 0.25028405613147003, 0.14431797353976633, + 0.06712745047654849, 0.01673385904083601, -0.011217361204929652, + -0.02132397199247632, -0.01742934303391809, -0.0026794041229315163, + 0.021330004856102716, 0.05339362840790306, 0.09216826642493213, + 0.13585135731643105, 0.18142178144058246, 0.22515876090097925, + 0.26314589690847995, 0.29212821021920804, 0.31005914705607207, + 0.3169020276640584, 0.31429410953839426, 0.30493836451363293, + 0.2921481800167556, 0.2785282940449161, 0.26550843492807813, + 0.25310629403440793, 0.24011151887013615, 0.22479306075942543, + 0.20569587757987454, 0.18234973554697542, 0.15567999753562978, + 0.127730757012893, 0.10126554336055192, 0.0788764081662085, + 0.06226009439154222, 0.051646808123857885, 0.04601775627123508, + 0.043345462073126693, 0.04147052894762874, 0.038994778174712696, + 0.035725970388964357, 0.032822588174661355, 0.032387819396494336, + 0.03658075709927761, 0.046832026021975455, 0.06300664824661564, + 0.08339324604420734, 0.10531982763064719, 0.12614030265925494, + 0.14483397439969062, 0.16327391234016864, 0.18688784197399674, + 0.22459420435130936, 0.28730283148695335, 0.38628709855212706, + 0.5306777024720742, 0.7243385739367378, 0.9665649091287856 + ], + "pressure:branch98_seg0:RESISTANCE_52": [ + 7955.499476576909, 9112.984639715005, 10382.567541467351, + 11700.331150899181, 12996.937235277146, 14212.247284544073, + 15302.002071374684, 16242.132534456703, 17023.47150139658, + 17655.213554834547, 18151.935354180452, 18527.99782088377, + 18797.6156158378, 18965.979251309407, 19035.104974889276, + 19005.270077313922, 18875.58178612988, 18652.484906462676, + 18345.417721803275, 17968.962803435283, 17541.330531400894, + 17078.231242927082, 16593.519792398936, 16096.281663815904, + 15591.339051643616, 15081.898299815835, 14571.210645641799, + 14065.02025197461, 13571.941877543106, 13102.268404731125, + 12664.429367187697, 12262.099791703906, 11890.325612194343, + 11534.01078011475, 11170.17429698198, 10771.00751780583, + 10310.433013171929, 9769.812128298996, 9145.24873167035, + 8447.126066325482, 7702.05852615916, 6947.676210880284, 6225.513649496056, + 5574.177445182523, 5023.503091026003, 4589.745620266094, 4273.77691375512, + 4067.4977324449487, 3953.08328678528, 3911.713276439118, + 3927.6554002328385, 3988.0322306243543, 4086.3114182519, 4217.55941681022, + 4376.278022844773, 4555.088700343151, 4741.624914819532, + 4920.656177705013, 5076.151253421967, 5194.786335619644, + 5268.1841400914955, 5296.19452334468, 5285.519371989923, + 5247.222926563593, 5194.868079217824, 5139.116963892116, + 5085.821975325537, 5035.055530681414, 4981.863219797691, + 4919.159234866537, 4840.987562648381, 4745.42336632709, 4636.254490563287, + 4521.848148625421, 4413.516464975367, 4321.869643493637, + 4253.853066302393, 4210.409050110348, 4187.3673066141955, + 4176.428640730283, 4168.753861872094, 4158.619719255634, + 4145.239307685551, 4133.3547150392615, 4131.575049310656, + 4148.738258599242, 4190.700406970075, 4256.908981025696, + 4340.358693252533, 4430.112115656481, 4515.337844187243, + 4591.857798261512, 4667.339128196581, 4763.999475943302, + 4918.345243724098, 5175.034316641779, 5580.212693317699, + 6171.255615977512, 6963.97954930756, 7955.499476576909 + ], + "flow:branch100_seg0:RESISTANCE_53": [ + 0.6194928319781505, 0.7915552825540968, 0.9750218351918353, + 1.160509705073546, 1.3381875229062516, 1.5002454399182443, + 1.6415848842891272, 1.7603312998069938, 1.8561939091817536, + 1.931530479023541, 1.989024433437648, 2.0304809421984866, + 2.0578892018846853, 2.0714705972956393, 2.071112067377153, + 2.056920109691496, 2.028645602203508, 1.9877475888504956, + 1.9360137054358542, 1.8757510289035875, 1.8099422124591702, + 1.740690178431377, 1.6697358148492984, 1.598086943409573, + 1.5260774930976415, 1.4540276576542748, 1.3824145484177937, + 1.312201573062467, 1.2447894200615959, 1.1817060211236472, + 1.1239374115072025, 1.071526662436981, 1.023102992269154, + 0.9757023471578943, 0.9254790610325248, 0.8682164817648941, + 0.8004817873574152, 0.7202861025791113, 0.6283411205185582, + 0.5273622468397968, 0.4222696970998723, 0.31924315343297544, + 0.22430593300747861, 0.14245910081284263, 0.07694068938735361, + 0.02894985415876639, -0.0028369848256890036, -0.0203705123082661, + -0.026729330356446552, -0.024809068463762594, -0.01644188706759301, + -0.003167651990692066, 0.014484395926484437, 0.036076603653517586, + 0.06073362561850053, 0.08729631126401168, 0.11375898874133679, + 0.13780391700196237, 0.15722264374162295, 0.17046225831551862, + 0.17680428236942472, 0.17685413876350184, 0.1721621985433525, + 0.16455212137224862, 0.1560688174510236, 0.1479893276124995, + 0.14070919681110647, 0.13379483933447225, 0.12619707631285348, + 0.11678731563435168, 0.10486914684905735, 0.09048434358204324, + 0.07461591353592881, 0.058766773229135164, 0.04467340831216589, + 0.03371485769757229, 0.026537791443046733, 0.022783522997368588, + 0.021448297577593766, 0.021126540001380482, 0.020550402981091776, + 0.019190699569820346, 0.01734613763809014, 0.0160825264125995, + 0.016861212278876905, 0.020882838468643732, 0.028683418670685593, + 0.03969884391276211, 0.052436695948126937, 0.0651381847169918, + 0.07637700553800192, 0.08613195411737531, 0.09641789992962181, + 0.11142877525355466, 0.13726430291087865, 0.18067363129353328, + 0.24789697241148004, 0.3435693307989299, 0.46808608686848086, + 0.6194928319781505 + ], + "pressure:branch100_seg0:RESISTANCE_53": [ + 8753.661965933998, 10074.256405915678, 11482.378332140725, + 12906.014045975406, 14269.706923488979, 15513.515688531454, + 16598.30835399394, 17509.69753609461, 18245.45149355998, + 18823.66629247361, 19264.93744883388, 19583.11979941275, + 19793.48060288853, 19897.71900706599, 19894.967258411143, + 19786.04273508023, 19569.033403544665, 19255.137554337027, + 18858.075449459702, 18395.554107350843, 17890.465653668074, + 17358.950202223554, 16814.369221740697, 16264.457832372802, + 15711.778968450075, 15158.790145091967, 14609.153233779036, + 14070.262473136938, 13552.868270380011, 13068.697635742734, + 12625.318476550321, 12223.06136824034, 11851.405441144767, + 11487.601321326976, 11102.133183492353, 10662.63785172928, + 10142.768115311148, 9527.259181931138, 8821.573358633002, + 8046.551622691116, 7239.957061207843, 6449.219278027313, + 5720.567762129673, 5092.386127121273, 4589.526557498076, + 4221.192676626285, 3977.225891967849, 3842.654526575508, + 3793.850038837634, 3808.5882177389503, 3872.8070707955762, + 3974.6879923963506, 4110.16901254737, 4275.891105751335, + 4465.1359177627155, 4669.006866113297, 4872.110242977961, + 5056.657181978605, 5205.697617460489, 5307.3128236560415, + 5355.988416010935, 5356.3710682200335, 5320.360014403728, + 5261.9520028570405, 5196.841899208367, 5134.831104157335, + 5078.955460014887, 5025.88715830743, 4967.573658940993, 4895.352918204169, + 4803.879924648984, 4693.475294521599, 4571.683698388963, + 4450.040152702029, 4341.872337541408, 4257.764497838738, + 4202.679883157377, 4173.865542672481, 4163.617570151026, 4161.14805245703, + 4156.7261501586845, 4146.290306899804, 4132.133131856144, + 4122.434804573835, 4128.411287078044, 4159.277621761256, + 4219.1477608239375, 4303.692118294304, 4401.456252879772, + 4498.941296196931, 4585.200234381849, 4660.070322614968, + 4739.0158613082585, 4854.225649531599, 5052.515596373867, + 5385.686009288391, 5901.631064239054, 6635.924828645448, + 7591.601881945488, 8753.661965933998 + ], + "flow:branch101_seg0:RESISTANCE_54": [ + 1.2855638558388067, 1.6524325713949852, 2.0486448535877306, + 2.4535003474941837, 2.845432216857697, 3.20671085930454, + 3.525213174837035, 3.7954457344589314, 4.016275185265492, + 4.192082450474918, 4.3282083414466275, 4.429235281155376, + 4.499447555156556, 4.539871986629149, 4.550652892618461, + 4.531644776181935, 4.482415885185675, 4.405328216795082, + 4.303646696911014, 4.182184134503231, 4.046852144978671, + 3.9024016197631908, 3.752852585098925, 3.6006144762650205, + 3.4467476553201135, 3.2919812352628104, 3.1372422566094778, + 2.9844111823207657, 2.836334219348775, 2.6963083720440126, + 2.5668169082360195, 2.4485949486100886, 2.3394433937013672, + 2.233877281107125, 2.1240954660528635, 2.00110903099181, + 1.8569831501044525, 1.6865770673445373, 1.4898927796043009, + 1.2714762147718865, 1.0409078646058392, 0.8108376739786091, + 0.5945115325325698, 0.4036005704403929, 0.24644764788835413, + 0.12686844191271576, 0.04363941704381757, -0.006866731210977605, + -0.03098214782144132, -0.03487275173378177, -0.02320125591077296, + 0.00041823673960369247, 0.034468392602939935, 0.0777854723597869, + 0.12876287168278924, 0.1850358116367583, 0.24252736966482613, + 0.2963217172369966, 0.3414325761070549, 0.3739938960559686, + 0.39188767196973134, 0.39575392358340067, 0.3883307516458166, + 0.37348576760547336, 0.35563585895114364, 0.3379153005519969, + 0.32171739818404416, 0.30653768108795365, 0.29036861818108045, + 0.2707574131920861, 0.24589507915555528, 0.2154673607509709, + 0.1811047495651854, 0.14581533157978677, 0.11335534846655199, + 0.0869872057299966, 0.0685682252803833, 0.057892712856071324, + 0.053165432904417255, 0.05144803397605919, 0.049892941617723355, + 0.046925802553985915, 0.042714678221816064, 0.03920143952753371, + 0.0394128664189216, 0.04616650030674829, 0.06105951169037242, + 0.08343213007807361, 0.11055614348878189, 0.13866809581853753, + 0.1643757060639644, 0.18684824026165442, 0.20936826036346617, + 0.23996667977434102, 0.29106820525496835, 0.3771770424196593, + 0.5125347297024351, 0.707982978033227, 0.9666312243919567, + 1.2855638558388067 + ], + "pressure:branch101_seg0:RESISTANCE_54": [ + 8355.868822022208, 9599.213414608876, 10942.00547534358, + 12314.090005267233, 13642.375437555304, 14866.774868349916, + 15946.20223555757, 16862.039911270447, 17610.446880580916, + 18206.270408908225, 18667.610891958488, 19009.998492389397, + 19247.952963596454, 19384.95428354722, 19421.491553138814, + 19357.07167271705, 19190.23140309513, 18928.975723380798, + 18584.369703425706, 18172.72430067587, 17714.074407009502, + 17224.521136841202, 16717.688649654385, 16201.742695752868, + 15680.27691879142, 15155.762335419215, 14631.340752948408, + 14113.38519626376, 13611.541666436558, 13136.983949502855, + 12698.128019616002, 12297.465253909584, 11927.54274535651, + 11569.771559946324, 11197.713054207738, 10780.903136897534, + 10292.450109821024, 9714.931579187483, 9048.354312609039, + 8308.124788257157, 7526.711985134979, 6746.987480694515, + 6013.842552285148, 5366.8315035971345, 4834.228890784956, + 4428.966319103915, 4146.897138415872, 3975.728151630558, + 3893.999261787392, 3880.8137239336897, 3920.369266839375, + 4000.4174345387255, 4115.8158737466865, 4262.620587799973, + 4435.386678515278, 4626.09973916601, 4820.942784545917, 5003.255716473589, + 5156.139677587572, 5266.49234427541, 5327.135644126164, 5340.238650279599, + 5315.080984070738, 5264.770260231518, 5204.275629693503, + 5144.219376519139, 5089.3235146849975, 5037.878356326901, + 4983.080233510742, 4916.61644239623, 4832.3561954124, 4729.234458565103, + 4612.777085686541, 4493.178697578802, 4383.169468751235, + 4293.805927250163, 4231.382671268066, 4195.202588085618, + 4179.181494663624, 4173.361105569801, 4168.09078517255, 4158.034936434513, + 4143.763131712281, 4131.856511856783, 4132.573052872651, + 4155.461606239784, 4205.935098216577, 4281.757518921441, + 4373.682760768037, 4468.956199014924, 4556.081148163341, + 4632.242190769706, 4708.564166537201, 4812.264421432292, 4985.45118466705, + 5277.280257364992, 5736.017242591265, 6398.405482275919, + 7274.983083079566, 8355.868822022208 + ], + "flow:branch102_seg2:RESISTANCE_55": [ + 1.3860396661159984, 1.7926171562157338, 2.238646945357276, + 2.7019574278511125, 3.1581642887741737, 3.5859828711484796, + 3.9695844752349156, 4.300218866844683, 4.574287746745838, + 4.794890314142266, 4.967096705449828, 5.095932762717216, 5.18653997642586, + 5.240748822133862, 5.259326706572677, 5.242433022123852, 5.18977867451023, + 5.103847167062831, 4.988098047882807, 4.847923368782142, + 4.690071970421449, 4.520261697872069, 4.3435679911717475, + 4.16329611449911, 3.981162339910075, 3.798308430257977, + 3.6158635486789468, 3.4358485811841817, 3.261304641614977, + 3.0958493196874013, 2.9423841664084738, 2.802088038964451, + 2.6730345109366387, 2.5496592639260434, 2.4236558100270016, + 2.2850640944612572, 2.1246388635256626, 1.9359008760058318, + 1.7177530428959886, 1.4741686436431798, 1.214911539074449, + 0.9535509967702137, 0.7048216560067235, 0.4822051299686874, + 0.2959401406223445, 0.15131454366430863, 0.048093046545155727, + -0.01688074300441122, -0.05020576421138049, -0.05867708127321825, + -0.04781498983264733, -0.02218765600573514, 0.015980542918067154, + 0.06500569030941812, 0.12294526614675257, 0.18725549124938362, + 0.2536104956541131, 0.3167065374502767, 0.371004148440303, + 0.4119512487105113, 0.43674320115395915, 0.44549821904939296, + 0.44071781506352425, 0.42638244281387644, 0.4073308895874, + 0.3872957545434738, 0.36828638568718786, 0.3502761926990341, + 0.33147651154493124, 0.30938568780610765, 0.2819342795376875, + 0.24849966351273936, 0.21048984281840077, 0.17087496334782637, + 0.13363412875407846, 0.1024497652864264, 0.0796758545404662, + 0.06552300114697066, 0.05844498189549379, 0.05547401700230695, + 0.05348712803427789, 0.050521912076230434, 0.046363019253933754, + 0.04272934535188641, 0.042669519174355415, 0.04925992721302827, + 0.06449563759302995, 0.08809049596171623, 0.11750856528953509, + 0.14888549180420835, 0.1784435145953966, 0.2048143807248241, + 0.23083205566786974, 0.264434547962584, 0.3185394002156389, + 0.40879899554373306, 0.5513628764059971, 0.7592638042782078, + 1.0377697937607975, 1.3860396661159984 + ], + "pressure:branch102_seg2:RESISTANCE_55": [ + 8173.629658647948, 9398.205325710387, 10741.60785011905, + 12137.058304146238, 13511.113274322468, 14799.665244487385, + 15955.039562173142, 16950.881291040118, 17776.35267004755, + 18440.788214816395, 18959.458730629125, 19347.50161202722, + 19620.40257646751, 19783.674855454912, 19839.629810619037, + 19788.74751780447, 19630.157250456254, 19371.339102338236, + 19022.712928279765, 18600.519114444054, 18125.084575761477, + 17613.630959059286, 17081.445043662934, 16538.48199478671, + 15989.911073024037, 15439.17116774235, 14889.663219068256, + 14347.47395805666, 13821.762952321364, 13323.426064145899, + 12861.20251015308, 12438.64290458097, 12049.945020365461, + 11678.349619523346, 11298.838290520009, 10881.412223728617, + 10398.2255275384, 9829.763296856563, 9172.72119601822, 8439.066393515895, + 7658.2067800383975, 6871.011796967649, 6121.860882811689, + 5451.359471616304, 4890.34569408715, 4454.7461068454995, + 4143.852029411791, 3948.1566856786253, 3847.7846506592164, + 3822.2697881926474, 3854.9854529685485, 3932.172730130461, + 4047.1319907777274, 4194.791426018156, 4369.300336270206, + 4562.997082208285, 4762.8525236935475, 4952.892256224196, + 5116.431888439688, 5239.760955711374, 5314.432137565951, + 5340.801482009525, 5326.403325342302, 5283.226444027758, + 5225.8448401048145, 5165.500774192352, 5108.246225884937, + 5054.0011074771755, 4997.378120099788, 4930.842500507832, + 4848.161271441613, 4747.459146462478, 4632.976907122873, + 4513.660371814003, 4401.494251025039, 4307.569688979192, + 4238.976671356613, 4196.3495207956585, 4175.031148880303, + 4166.082863732984, 4160.098528784175, 4151.167558924237, + 4138.641339258568, 4127.697032820464, 4127.51684163172, 4147.366571429086, + 4193.255192063702, 4264.3208317748185, 4352.925471106833, + 4447.430016126405, 4536.456182989914, 4615.882914099737, + 4694.245864397302, 4795.45361794673, 4958.412677787565, 5230.266646216988, + 5659.656525777442, 6285.8358486158995, 7124.671411715729, + 8173.629658647948 + ], + "flow:branch103_seg0:RESISTANCE_56": [ + 0.4960923983534153, 0.6394651247818954, 0.7955569319823267, + 0.9565799158131154, 1.1140401601668033, 1.2607032182467544, + 1.391353837494791, 1.5033338765698432, 1.5956189688964493, + 1.669548947790352, 1.7270289197521873, 1.7697297346478675, + 1.799430178604714, 1.816631979027887, 1.8214986814252763, + 1.8141005734517228, 1.794297408515532, 1.763064037993411, + 1.721693599115763, 1.6720938177826914, 1.6166841338963918, + 1.5574032644042122, 1.4959524330269274, 1.4334102682414742, + 1.370291562172082, 1.3069652140756791, 1.2438301618820553, + 1.1816266251428473, 1.1214560453144897, 1.0645980963322077, + 1.0120204078452428, 0.9640398077962464, 0.9198522351083892, + 0.877353272417146, 0.8335431418636737, 0.7849087815948851, + 0.7282999553683838, 0.6616012048447844, 0.5846985322894696, + 0.4992234186143824, 0.40879575823220843, 0.31830286798451357, + 0.23288253046924043, 0.15712378068193245, 0.09439184409499235, + 0.04630741537211897, 0.012503001333626878, -0.008257055768920104, + -0.018370278066111766, -0.020230412215116688, -0.01565679243050362, + -0.006175675589936933, 0.007535862532092277, 0.02494561671119902, + 0.04535144529111242, 0.06784372952764411, 0.09085179257139754, + 0.11248610273088026, 0.1308233172591422, 0.1443433254650931, + 0.15215827144152427, 0.1544364776983483, 0.15217360313471062, + 0.1467972122327867, 0.14001461289856101, 0.13307012903398072, + 0.12656533993263688, 0.12039468674957628, 0.11386010034758949, + 0.10606382653326932, 0.09631689472885767, 0.08447142480712136, + 0.07111445617911553, 0.05734829396487315, 0.044589143819109923, + 0.03409502842467666, 0.026616394797136088, 0.02212183725250481, + 0.01999034127678711, 0.01914009380663514, 0.018481108324586278, + 0.017393484842511367, 0.015890899053790493, 0.014657261481382647, + 0.014807443168414109, 0.01740230153182334, 0.023075959251681204, + 0.03162556340400948, 0.04205881547475934, 0.052987051565841596, + 0.06311523417591873, 0.07208722522613926, 0.08108796035492588, + 0.09310587087652131, 0.11283961219242446, 0.1458314870164143, + 0.19765187461459785, 0.2726929679656428, 0.3723785225756443, + 0.4960923983534153 + ], + "pressure:branch103_seg0:RESISTANCE_56": [ + 8319.985962489462, 9568.768528716102, 10928.33483130674, + 12330.851892806508, 13702.337341405831, 14979.77883674553, + 16117.75130646103, 17093.102226024243, 17896.909318843736, + 18540.842590282657, 19041.49559926999, 19413.421519448373, + 19672.113653903965, 19821.942069749046, 19864.331255337314, + 19799.893419142263, 19627.407007364625, 19355.363017101397, + 18995.024728819473, 18563.008516528975, 18080.387805037815, + 17564.04890170031, 17028.809537731275, 16484.064613199844, + 15934.297989478984, 15382.722794840856, 14832.8137956803, + 14291.018335884048, 13766.930017546289, 13271.694855258322, + 12813.740944562698, 12395.82787036187, 12010.952226359977, + 11640.784447497137, 11259.196340594666, 10835.588986977486, + 10342.523694524725, 9761.574730814255, 9091.749170712215, + 8347.257282591958, 7559.628501282191, 6771.431565059783, + 6027.416779629304, 5367.554835658328, 4821.156990636638, + 4402.339564255021, 4107.901675234099, 3927.0806918480957, + 3838.994094015227, 3822.79224618834, 3862.628669710795, 3945.2096020387, + 4064.6376842791765, 4216.277386213736, 4394.013024049406, 4589.9217797025, + 4790.322990779527, 4978.75875560387, 5138.476676762844, 5256.236525259935, + 5324.305038250363, 5344.148311979343, 5324.438577952362, + 5277.609983736493, 5218.533254059413, 5158.046503213838, 5101.38951252188, + 5047.642859938822, 4990.726333486538, 4922.82045582501, 4837.924263817243, + 4734.749715243633, 4618.409948428844, 4498.506088013876, + 4387.373345693842, 4295.969152727783, 4230.829934649734, + 4191.682146611836, 4173.116725692771, 4165.711033939857, + 4159.971242266233, 4150.497995318451, 4137.41040896952, + 4126.6653730631715, 4127.97346196685, 4150.574789058646, + 4199.992589945834, 4274.460007002958, 4365.334077822136, + 4460.5194805839365, 4548.736383380529, 4626.882808345436, + 4705.279595461423, 4809.956109019434, 4981.837838101424, 5269.1984758855, + 5720.55626351884, 6374.1673893009565, 7242.4328244547005, + 8319.985962489462 + ], + "flow:branch104_seg0:RESISTANCE_57": [ + 0.9522527204445869, 1.2278470898148983, 1.5280342406795715, + 1.8376737835871162, 2.140410401619171, 2.422288948493255, + 2.673243141870182, 2.888097116369982, 3.0649999900233325, + 3.2065182576996802, 3.3163384287036592, 3.39781456841377, + 3.4543568945854752, 3.487014459277399, 3.4961420101449123, + 3.4818377260769764, 3.443858711072546, 3.384009637444952, + 3.3047478692638617, 3.2097211010750315, 3.103516705415108, + 2.9898863731516814, 2.8720945481023494, 2.7522151999637057, + 2.6312511162982086, 2.509894163254859, 2.3888958462346106, + 2.269654632019124, 2.154267331481845, 2.0451828276790254, + 1.9442848266291815, 1.852207778772591, 1.7674418309635156, + 1.6859979142647619, 1.6021144536737664, 1.5090337355812138, + 1.4006574235108704, 1.2728673985412562, 1.125341842542074, + 0.9611628764372626, 0.7872491131767612, 0.6129706010942082, + 0.4482675000958164, 0.302049049932074, 0.18086290739339075, + 0.0879215717529005, 0.02262404565188287, -0.01744250966151841, + -0.03686991348663554, -0.04029664708015601, -0.03131176403162026, + -0.012854749453720487, 0.013714281400166143, 0.04736569129775504, + 0.08678468461957732, 0.13021203327812095, 0.174653395698068, + 0.21648149745511172, 0.25198059022376396, 0.2781948975545133, + 0.2933993297366434, 0.2978862430177314, 0.2935425467899373, + 0.28314237585097907, 0.2699770531223557, 0.2564779363088826, + 0.24384455613482844, 0.23189568777004121, 0.21929887857423394, + 0.20431724731953502, 0.18560229753866594, 0.16283819895996804, + 0.137121116617302, 0.11056827923599821, 0.08590895722613974, + 0.06558567606295095, 0.051071887740115986, 0.0423484751768612, + 0.038225345638792305, 0.036620578907723224, 0.035426165648507216, + 0.0334092119396223, 0.030566470310943342, 0.028195705292810517, + 0.028439706008165016, 0.033362327561030566, 0.04421156923519911, + 0.060631272352743126, 0.08074106387273995, 0.1018564808110664, + 0.1214638409724722, 0.13882921730880984, 0.1561724125171607, + 0.1791965047098593, 0.21691536262056577, 0.28002469761676124, + 0.37926669101087396, 0.5231453647669955, 0.7145683839773088, + 0.9522527204445869 + ], + "pressure:branch104_seg0:RESISTANCE_57": [ + 8286.302329677132, 9527.103596483268, 10878.628295347226, + 12272.710249818185, 13635.71334752678, 14904.807701108717, + 16034.67215285302, 17002.003540452853, 17798.468686791835, + 18435.62265408889, 18930.06311604008, 19296.89099281335, + 19551.46001794371, 19698.493310870297, 19739.588042613635, + 19675.18624139831, 19504.194322959556, 19234.73741589732, + 18877.879245706474, 18450.04273141702, 17971.881479515156, + 17460.28662893019, 16929.955599038094, 16390.225968951007, + 15845.612562686101, 15299.230350974118, 14754.462816778227, + 14217.606240237388, 13698.10103769234, 13206.972750794772, + 12752.702339512773, 12338.146273344704, 11956.506780259857, + 11589.823980301488, 11212.157686163464, 10793.082821940548, + 10305.143008017969, 9729.797346095434, 9065.596922885394, + 8326.418290204236, 7543.41093681852, 6758.761384423074, 6017.222953022452, + 5358.90747797071, 4813.294301892714, 4394.846975610737, 4100.859644553973, + 3920.4690483926047, 3833.0015600979896, 3817.5734677405067, + 3858.025869922019, 3941.124400280399, 4060.7454477518622, + 4212.253303758295, 4389.728398629406, 4585.250206105629, + 4785.337381018722, 4973.658941313365, 5133.485571220405, + 5251.509556321254, 5319.964070670585, 5340.165382097751, + 5320.608873035601, 5273.784457480434, 5214.510571889406, + 5153.733853986235, 5096.854919340995, 5043.0578441764965, + 4986.343562082905, 4918.892158477939, 4834.632333252291, + 4732.142132096566, 4616.356789956787, 4496.808649930207, + 4385.785634262932, 4294.284661037104, 4228.939614335763, 4189.66442382991, + 4171.100966362578, 4163.87586739779, 4158.498292055772, 4149.417414522633, + 4136.618613799214, 4125.944780932019, 4127.043338922898, + 4149.206328220389, 4198.052583112868, 4271.978579770128, + 4362.518364201253, 4457.585749453272, 4545.863450418588, + 4624.047126688623, 4702.130937450636, 4805.791701003374, + 4975.612321014659, 5259.747816922973, 5706.562428575366, + 6354.343589964413, 7216.182405012423, 8286.302329677132 + ], + "flow:branch105_seg2:RESISTANCE_58": [ + 1.0511632374977042, 1.3542468052787566, 1.6836507466547161, + 2.0227354688106596, 2.3535793293093383, 2.6610068808823697, + 2.934179591374074, 3.1676569101547134, 3.3595640049701774, + 3.512904541819401, 3.6317760413087155, 3.719822211286336, + 3.780746947545112, 3.8155725247904986, 3.8246093205611422, + 3.807928592740061, 3.76524026970494, 3.698604769682234, + 3.6107779936219924, 3.5058293876656412, 3.3888550675349767, + 3.263955323731391, 3.1346831713919214, 3.0032565208537423, + 2.8707143470099266, 2.7377864524231086, 2.6052943830769815, + 2.4747995715480484, 2.348638163712221, 2.229518806732258, + 2.119484483736212, 2.019171179003732, 1.9268177122462802, + 1.8379261472887443, 1.746086168018197, 1.6438451394712306, + 1.5245566682038563, 1.3838219663196791, 1.2214941302822868, + 1.0411530868145957, 0.8505804296329591, 0.6601724789077009, + 0.4808317059240581, 0.32222751402560107, 0.19136059806423925, + 0.09153121647856767, 0.021846936022432668, -0.020468666186225372, + -0.04054780033326254, -0.043472426941236174, -0.03309901770337954, + -0.012576936700697905, 0.01670231102561585, 0.053660313363865626, + 0.0968635412134971, 0.14437280242266606, 0.19286188062627632, + 0.23832802520725402, 0.2767014326371094, 0.3047876899110279, + 0.32076421999332105, 0.32505410105373417, 0.3198118515251439, + 0.3081217919866771, 0.29360695310457247, 0.2788848635712059, + 0.2651939479901541, 0.2522538459913214, 0.23853826865601907, + 0.22211710952834712, 0.20153081050904703, 0.1764874326598294, + 0.14826200070432327, 0.11923114356741288, 0.09241431840288152, + 0.07047148043401819, 0.05496208601567422, 0.04578297475880473, + 0.04156283434888953, 0.03997358590912607, 0.038703286496276725, + 0.03644638008452522, 0.03326855472462945, 0.030662392950661338, + 0.03102224798699765, 0.036608144934590914, 0.048745093280070824, + 0.06696160749747267, 0.08911577438687532, 0.11222219734163984, + 0.13353298635970048, 0.15232582313275814, 0.17117237452748277, + 0.1964843714047472, 0.2382830735131161, 0.3083530656511961, + 0.4184430512164444, 0.5777457328051377, 0.7891886561436593, + 1.0511632374977042 + ], + "pressure:branch105_seg2:RESISTANCE_58": [ + 8377.600138145548, 9640.08887863354, 11012.21462634132, + 12424.665479178815, 13802.789182146778, 15083.372703115241, + 16221.268345987912, 17193.813602327315, 17993.198894634912, + 18631.935935543643, 19127.09286790032, 19493.84748628379, + 19747.628296992298, 19892.693565542457, 19930.336163569307, + 19860.852914406583, 19683.035530320984, 19405.466643589963, + 19039.625906326648, 18602.464517737215, 18115.210249310865, + 17594.942781838752, 17056.462131165106, 16509.006959908955, + 15956.905097895442, 15403.196523586103, 14851.303370888772, + 14307.729757005502, 13782.20685240545, 13286.017474464597, + 12827.671629895156, 12409.81849891517, 12025.121919090876, + 11654.84582426703, 11272.288166639486, 10846.405139389053, + 10349.511319154368, 9763.283640017826, 9087.110178139366, + 8335.903049053795, 7542.076330904227, 6748.935694313569, + 6001.895172585827, 5341.232478359361, 4796.108870658657, + 4380.2715121884785, 4090.002989520065, 3913.7381668293388, + 3830.098921835051, 3817.916446256679, 3861.126681833452, + 3946.611013389114, 4068.573153583837, 4222.520997620952, 4402.48320775403, + 4600.382116575141, 4802.362434138655, 4991.750780155321, + 5151.594466730068, 5268.58722826568, 5335.137155365435, 5353.00657196382, + 5331.170082928379, 5282.475365986117, 5222.014085314207, + 5160.6895060623265, 5103.660261967721, 5049.758517330433, + 4992.626545175413, 4924.224524385476, 4838.472693923454, + 4734.154987787489, 4616.582496807117, 4495.655022809115, + 4383.950056176567, 4292.54758895322, 4227.9435064280615, + 4189.708095995466, 4172.129182728069, 4165.509199085508, + 4160.217791446645, 4150.8166914331005, 4137.579521350016, + 4126.723604879145, 4128.2225740740405, 4151.490519787801, + 4202.046743413628, 4277.9272811108185, 4370.210034865941, + 4466.459392846369, 4555.229072387864, 4633.510270545574, 4712.01521592109, + 4817.451849423763, 4991.563534742675, 5283.438731963245, + 5742.0164378882855, 6405.588677411866, 7286.350085643641, + 8377.600138145548 + ], + "flow:branch106_seg0:RESISTANCE_59": [ + 0.8588823392917576, 1.1048194114137544, 1.3711422552138965, + 1.644348599018053, 1.9100282252980654, 2.1561602604502617, + 2.3743196218455798, 2.5605171294351403, 2.7135111336744275, + 2.8359684118956605, 2.93132943876782, 3.0024383526856657, + 3.0521699136427447, 3.0811625479206928, 3.0894626257100675, + 3.077033518484396, 3.043563865057045, 2.990711966496669, + 2.920787952601531, 2.8371181493952378, 2.7438368991908133, + 2.6442410277120976, 2.5411341133925607, 2.436222198292804, + 2.3302671531397725, 2.223812806203449, 2.1175242167771593, + 2.0127059976638426, 1.9113012696852982, 1.8155437560541516, + 1.7270810909559697, 1.6463725623887424, 1.5718974824667622, + 1.4998954372037554, 1.4251022520889847, 1.3414664997511174, + 1.2436977440005381, 1.1283965968780199, 0.9956905983787536, + 0.8487423826677964, 0.6940507789374963, 0.5401551690155293, + 0.39586158616632466, 0.2688498139482173, 0.16453542459423998, + 0.08529953097966561, 0.03015927603760015, -0.0033243377639422724, + -0.019394109809022862, -0.02213258627432697, -0.01454669563510268, + 0.0009658402686263427, 0.023436872699598245, 0.052094394058020216, + 0.08582638801990065, 0.12307372643432733, 0.1611072191148363, + 0.19665976135306995, 0.2264406946657759, 0.24791612626073328, + 0.2596904125994675, 0.2622050421872859, 0.2573106497452801, + 0.24753412168386682, 0.23579426335799047, 0.22414212248514845, + 0.21346043328330092, 0.20339845196446693, 0.19262313966738337, + 0.1795247445806779, 0.1629353814535932, 0.1426817482717356, + 0.11987902189774134, 0.09652504705651244, 0.07510020994907671, + 0.05773696884444267, 0.045631998947644956, 0.03860519045514726, + 0.03546239482748989, 0.03426511576713797, 0.03314291053739463, + 0.03109945946973788, 0.02827722736003708, 0.025977651453532997, + 0.02620128231718555, 0.030782282089785475, 0.04074288723681168, + 0.05561285303653777, 0.07355420407421875, 0.0920986546874277, + 0.10903570557181572, 0.12387437521422007, 0.13886263951037697, + 0.15937938807681115, 0.19369612248878526, 0.2514216309804188, + 0.3419998152046901, 0.4726721493442876, 0.6455077975265461, + 0.8588823392917576 + ], + "pressure:branch106_seg0:RESISTANCE_59": [ + 8339.37628127752, 9582.22339279851, 10928.090342799736, + 12308.743175316877, 13651.359614811181, 14895.191975269418, + 15997.663960570342, 16938.616182548903, 17711.773944443805, + 18330.61385015141, 18812.52239601288, 19171.872483023555, + 19423.191758940913, 19569.70652166794, 19611.651103738946, + 19548.840402282156, 19379.70094832803, 19112.61299409077, + 18759.250819182813, 18336.424067854783, 17865.02570820395, + 17361.716304222213, 16840.663786461435, 16310.489667037958, + 15775.04407242586, 15237.075247892431, 14699.944081711123, + 14170.243456523802, 13657.792965935754, 13173.880767599641, + 12726.83320845742, 12318.971308096458, 11942.610244826528, + 11578.746703610008, 11200.778090422502, 10778.123415728152, + 10284.047371668665, 9701.371094278513, 9030.739109058699, + 8288.133840712124, 7506.397231367667, 6728.6831900603875, + 5999.493153325339, 5357.637035951817, 4830.48252288859, 4430.06260791616, + 4151.4104063916875, 3982.2004034528545, 3900.9915413780795, + 3887.152604712269, 3925.488030062852, 4003.8808899678925, + 4117.438628574595, 4262.259892552229, 4432.725088789788, + 4620.955137073242, 4813.1580291023765, 4992.823396534653, + 5143.321841631761, 5251.848294745017, 5311.349847886456, + 5324.057570609182, 5299.323676460113, 5249.9178282201865, + 5190.59025761813, 5131.7059686335715, 5077.7258734159805, + 5026.877482360533, 4972.424261263698, 4906.231302395762, + 4822.396678088928, 4720.044603711989, 4604.810644210899, + 4486.790941351475, 4378.520168327977, 4290.774738705101, + 4229.602070666583, 4194.091976304804, 4178.209805982807, + 4172.159336206112, 4166.488253289306, 4156.161639106832, + 4141.899441889798, 4130.278496546087, 4131.408618859652, + 4154.558777906963, 4204.894862780908, 4280.040483907267, + 4370.707401755688, 4464.422093406311, 4550.013763615771, + 4625.001229087134, 4700.744673645794, 4804.426406023848, + 4977.846597915855, 5269.563421536162, 5727.301792000738, + 6387.656620330743, 7261.084462086224, 8339.37628127752 + ], + "flow:branch108_seg0:RESISTANCE_60": [ + 0.6212719607654583, 0.7965119452271269, 0.9847901057531668, + 1.1764633401099849, 1.3613821611728723, 1.531337376457022, + 1.68079011363253, 1.8073824683305895, 1.910607110954806, + 1.9926968567792962, 2.0561847532144815, 2.103060408773877, + 2.135315509599119, 2.1532148164715164, 2.1567147722205036, + 2.1457614476152633, 2.1201125775012386, 2.0811034088246814, + 2.0304216184877943, 1.9704824371481382, 1.9042648072222197, + 1.8340103081253967, 1.7616169093293221, 1.688174683116058, + 1.61411427348653, 1.539779086060346, 1.4656392784332835, 1.39265783034826, + 1.3222541236342498, 1.2560181363991185, 1.1950551755078958, + 1.1395675036968458, 1.0883022909171396, 1.0384124538429027, + 0.9860487548038791, 0.9268962461260051, 0.8573127745030238, + 0.7751019470566133, 0.6806904511203411, 0.5766068777861921, + 0.467733727110937, 0.36026253669733, 0.2604084177934435, + 0.17344308647650947, 0.10292577858186464, 0.050240754738389924, + 0.014345711389056954, -0.006654928759191452, -0.015891285731989068, + -0.016249773880376652, -0.009738516571028477, 0.002040992973353208, + 0.018527815193944388, 0.03923534732423496, 0.0633644577351587, + 0.0897740252692725, 0.1164613754937761, 0.14108197809650502, + 0.16132712879642175, 0.1754923392581776, 0.18271856808573705, + 0.18349201622405115, 0.17925050626887468, 0.17184941367916595, + 0.16337289357691975, 0.15518404864930438, 0.14778935323823408, + 0.14081814510692658, 0.13323512973048787, 0.12387548248720819, + 0.1119572655291248, 0.0974470421505121, 0.0812511568458001, + 0.06486211935326354, 0.050065518537642455, 0.03832940128761894, + 0.030404167481110786, 0.0260341635649751, 0.024270090989706047, + 0.023681881904966607, 0.02295693839659177, 0.021470333681507813, + 0.019434275746727795, 0.017874571970600786, 0.018266321162520673, + 0.02188850561819506, 0.02938224074094907, 0.04027794599882105, + 0.05315496853554045, 0.0662113749050832, 0.0779167593759259, + 0.08808347832880503, 0.09854474684680509, 0.1133722357590492, + 0.1386438753823865, 0.181235902725727, 0.2477324300478413, + 0.34302424313414154, 0.46806711865366374, 0.6212719607654583 + ], + "pressure:branch108_seg0:RESISTANCE_60": [ + 8520.03771533175, 9795.270832257254, 11165.383630624568, + 12560.202608901203, 13905.869268748442, 15142.644766020623, + 16230.222355386708, 17151.44340865528, 17902.616054336457, + 18499.98863889226, 18961.994318171437, 19303.111606731854, + 19537.834138170547, 19668.088594445537, 19693.55800710609, + 19613.849929523534, 19427.201381924053, 19143.32904586504, + 18774.51425932407, 18338.332817739592, 17856.462684817277, + 17345.215984262595, 16818.404367181327, 16283.96036266034, + 15745.017795969456, 15204.075652828205, 14664.555301585557, + 14133.46441039937, 13621.13191600991, 13139.128195717589, + 12695.496641691016, 12291.709133423905, 11918.648742647541, + 11555.597053100055, 11174.54290416015, 10744.086132282566, + 10237.722543648024, 9639.468840010872, 8952.430053707241, + 8195.006911657805, 7402.729694151693, 6620.654635472283, + 5894.009516900578, 5261.156969803879, 4747.997792005885, + 4364.605340918874, 4103.394703670968, 3950.5716372004285, + 3883.3580482033717, 3880.749305910604, 3928.132161936366, + 4013.8524427174984, 4133.8281534729385, 4284.518253243643, + 4460.107407582404, 4652.29160131331, 4846.497238307763, 5025.663014281282, + 5172.988333380065, 5276.069519700314, 5328.655271403579, + 5334.283705366483, 5303.4179530256215, 5249.559706000422, + 5187.87550085811, 5128.284727250464, 5074.473032923154, 5023.74308392588, + 4968.560972583562, 4900.450192021484, 4813.720528090387, + 4708.128659640746, 4590.27011632974, 4471.005991596906, 4363.330135336292, + 4277.925623190695, 4220.253165386709, 4188.452353876313, + 4175.615079463433, 4171.334642513838, 4166.059179995284, 4155.24105780544, + 4140.424527694536, 4129.074458736124, 4131.925243872859, + 4158.284123027514, 4212.816535977448, 4292.105313705781, + 4385.812270121384, 4480.824614716291, 4566.005482367128, + 4639.989377874842, 4716.116730317754, 4824.01736132857, 5007.920777353669, + 5317.865816164745, 5801.7655041394955, 6495.210417369935, + 7405.155806762316, 8520.03771533175 + ], + "flow:branch109_seg2:RESISTANCE_61": [ + 0.6910671756890264, 0.8953641465028855, 1.1223629874953212, + 1.361753666010438, 1.601657039801237, 1.8312255066065497, + 2.041864828944902, 2.228178426426486, 2.387152715201456, + 2.5191416424274347, 2.6257369139483364, 2.7087661180889975, + 2.7704827496990974, 2.8117643990102876, 2.833106364648593, + 2.8347910657194086, 2.8168010295801853, 2.7804265989937256, + 2.727363316363312, 2.660203429086593, 2.5822833450097398, + 2.496489076121765, 2.405502116770395, 2.3112369373216026, + 2.2148564837296165, 2.1172362532587243, 2.0191813417423266, + 1.9218500286943252, 1.8268357224115739, 1.7359882579475503, + 1.6508300190196759, 1.5721002949607232, 1.4990955242267803, + 1.4293535623440805, 1.3590476173408559, 1.2834253030006453, + 1.1979023290799382, 1.0990232162770226, 0.9857889005263002, + 0.8595603314652356, 0.7245324069529049, 0.5869244637409579, + 0.4537628992770814, 0.3317814708564726, 0.22643172782958615, + 0.14099495287639355, 0.07611493138090594, 0.03101278725864231, + 0.003062212414820427, -0.010723116235307969, -0.012913574654798688, + -0.005857441541699321, 0.00911982310559908, 0.030928977119094512, + 0.05835727136818872, 0.08998547453000215, 0.12358169118612322, + 0.15645592349027446, 0.18578428094253432, 0.20915941769398477, + 0.22494266361937618, 0.23286212145460075, 0.23381093147620718, + 0.22944258608909057, 0.22195477248387555, 0.2131441879786332, + 0.20409832480213938, 0.1950078454053082, 0.1852286501503733, + 0.1737256890624393, 0.15958598293176657, 0.14249241105285176, + 0.1230421486852758, 0.1025562328410511, 0.08287867042770836, + 0.06579105249494237, 0.052529290391239214, 0.04336775003318082, + 0.03776758140385382, 0.03448083564909736, 0.03209761206640916, + 0.02967390984980611, 0.027014304664644433, 0.024803579115899477, + 0.024377284001351616, 0.02714540949511031, 0.03409224160605157, + 0.04519194108637524, 0.059376076257702595, 0.07492861049888416, + 0.0900882028768754, 0.10413867459499694, 0.11827766334665167, + 0.13610661412650865, 0.16366928944135015, 0.20847684433163136, + 0.27851410825790746, 0.3805887533670598, 0.5179367010136449, + 0.6910671756890264 + ], + "pressure:branch109_seg2:RESISTANCE_61": [ + 7719.91627777104, 8819.913428471586, 10042.144366645956, + 11331.096734475363, 12622.809609913775, 13858.876196562382, + 14993.022500712887, 15996.191688929785, 16852.157707370872, + 17562.826315398746, 18136.76774235205, 18583.822280732245, + 18916.123433566278, 19138.396414108418, 19253.308061104268, + 19262.379005084975, 19165.51516801822, 18969.664148573018, + 18683.95526376799, 18322.345963583753, 17902.80048463986, + 17440.857995002087, 16950.956477428423, 16443.40402380725, + 15924.462289565836, 15398.845218784349, 14870.887692784088, + 14346.82624145551, 13835.240260662664, 13346.08982607376, + 12887.571915572353, 12463.66708822572, 12070.58715426991, + 11695.07517751557, 11316.526543765538, 10909.352957332856, + 10448.871202476443, 9916.475925572875, 9306.78786122654, + 8627.134777037205, 7900.103281480167, 7159.1801789794445, + 6442.197734699589, 5785.4125500415785, 5218.177428076922, + 4758.159794730883, 4408.825986705645, 4165.982297798585, + 4015.4878848556755, 3941.263474301747, 3929.4693786253933, + 3967.4617496745227, 4048.103906881674, 4165.531038465982, + 4313.213333521006, 4483.509218091275, 4664.401487070255, + 4841.406372272307, 4999.319186660569, 5125.178046541848, + 5210.159852574376, 5252.800627027059, 5257.909309334807, + 5234.388806510111, 5194.072136136092, 5146.633264119709, + 5097.927580035748, 5048.981668624622, 4996.327501146174, + 4934.392053102379, 4858.259566196078, 4766.222565905785, + 4661.496425819225, 4551.194011797286, 4445.244018994257, + 4353.239076564502, 4281.833707854296, 4232.505182571979, + 4202.352168011059, 4184.655327226261, 4171.823325165752, + 4158.7733738043125, 4144.453248968336, 4132.550028891636, + 4130.254726080774, 4145.159157329978, 4182.5630184738275, + 4242.327183127609, 4318.698889528618, 4402.438473543594, + 4484.0623388174745, 4559.714360452265, 4635.84298477131, + 4731.839489172209, 4880.245332838067, 5121.502863543579, + 5498.604836494318, 6048.2058331784065, 6787.729040321144, 7719.91627777104 + ], + "flow:branch110_seg0:RESISTANCE_62": [ + 1.1123438853162642, 1.4222569613330462, 1.7535510908641865, + 2.0891889419094207, 2.411420171854483, 2.706129628676785, + 2.964090351212784, 3.1818221270876506, 3.3587726557090316, + 3.499090910040136, 3.6074849384920475, 3.687225639340346, + 3.7418216863344216, 3.7717283706240514, 3.776780861262943, + 3.7571106193040915, 3.7122643079262603, 3.644642798678092, + 3.557287117618314, 3.454178654316661, 3.340439409864605, + 3.219785584792988, 3.0953181110084222, 2.968862774187899, + 2.841093238055749, 2.7126185167955916, 2.5843090431163214, + 2.457884636513572, 2.3358440548633106, 2.2209519198068, 2.115076304079138, + 2.0184746684101973, 1.9289082953666055, 1.8413208132837284, + 1.7489974083229067, 1.6444506237192793, 1.5214375399153515, + 1.3761692870202094, 1.2095153858099243, 1.0259439318376924, + 0.8339146192772774, 0.6442773657045133, 0.46785729668052495, + 0.31388582100219425, 0.18860118796747624, 0.09461669450815495, + 0.030116661224934546, -0.008100282672781648, -0.02536810416569626, + -0.026785291807347743, -0.015763478237980074, 0.004865620585546963, + 0.03405944823533498, 0.07093980990302658, 0.11395153727992945, + 0.16100183856217534, 0.20848293633181883, 0.25219612360825766, + 0.2880716502557126, 0.31315622174339336, 0.3259732567357962, + 0.3274121010181501, 0.3200869066642488, 0.30720266952995645, + 0.2924088347002063, 0.2780717620644372, 0.26501641634992606, + 0.2525678518225722, 0.238910209111411, 0.2220218159079398, + 0.20059127585014558, 0.17460574179346827, 0.14572054178542604, + 0.11658494074182484, 0.09032901428587749, 0.06950841308095539, + 0.05541120395123038, 0.04754264105668524, 0.044209787212224204, + 0.04292314942453838, 0.041390292897584155, 0.038570649896816266, + 0.03489288086086969, 0.03219013849545244, 0.03306057161737032, + 0.03971355199199879, 0.05321871102343526, 0.07269425844157464, + 0.0955659890285776, 0.11868900474132618, 0.13942807787772682, + 0.15757019387368335, 0.17650621095680105, 0.20356469605670038, + 0.2495772860771057, 0.3267147698826101, 0.4464087290553665, + 0.6171989450169112, 0.8402797580444747, 1.1123438853162642 + ], + "pressure:branch110_seg0:RESISTANCE_62": [ + 8552.225508666728, 9820.811727206308, 11176.918324604323, + 12550.805343921853, 13869.81421810446, 15076.166528898255, + 16132.09298976162, 17023.34783374261, 17747.67029492273, + 18322.04361902323, 18765.73954961584, 19092.147055400976, + 19315.628406022246, 19438.047272691765, 19458.728942778667, + 19378.211533881127, 19194.639374560003, 18917.840099706482, + 18560.26172796468, 18138.201525663993, 17672.625694293874, + 17178.745985611793, 16669.255634546425, 16151.628241688019, + 15628.621356113234, 15102.727892965115, 14577.510847883821, + 14060.010063584527, 13560.453859070933, 13090.158829817683, + 12656.771672625802, 12261.346267305496, 11894.718734359702, + 11536.191517260593, 11158.278456323456, 10730.330685143881, + 10226.79367786618, 9632.158220780397, 8949.983576656068, + 8198.559275301854, 7412.513902190265, 6636.260090972965, + 5914.108992625912, 5283.848099461292, 4771.01282027473, 4386.300323818266, + 4122.27837814855, 3965.842615687473, 3895.1591819593446, + 3889.3581207895772, 3934.4743868636674, 4018.916743426254, + 4138.417630252131, 4289.382278622939, 4465.444822634361, + 4658.038709126457, 4852.396001325508, 5031.329874203874, + 5178.1813697030375, 5280.861586027694, 5333.3263421550555, + 5339.216051781636, 5309.231384064744, 5256.491545284679, + 5195.935033034271, 5137.24821351152, 5083.807965476288, 5032.851492122622, + 4976.945824818095, 4907.815528198921, 4820.092583034432, + 4713.724401319162, 4595.4868389648145, 4476.224294680369, + 4368.749299158722, 4283.523054142708, 4225.81808263363, 4193.609211113825, + 4179.966635880049, 4174.699962441521, 4168.425426723035, + 4156.883608939968, 4141.8291711797465, 4130.7658699434805, + 4134.328867274273, 4161.5619202449425, 4216.843416742811, + 4296.563870525239, 4390.186129352584, 4484.83698901066, 4569.729510179072, + 4643.991747266385, 4721.503708408588, 4832.263866493792, 5020.61002577633, + 5336.361623437811, 5826.3122541132825, 6525.41832932284, + 7438.568715439647, 8552.225508666728 + ], + "flow:branch111_seg0:RESISTANCE_63": [ + 0.6527544807224976, 0.8477847711076575, 1.0645898388906003, + 1.2928132196168698, 1.5208147314266687, 1.7379776767348558, + 1.9359681323910487, 2.1096136484043684, 2.256399946115725, + 2.376993128968232, 2.473289284149159, 2.547543656962449, + 2.602094037557126, 2.637970732319271, 2.6556620510531936, + 2.6552584214050543, 2.6366672782107945, 2.6008943053905806, + 2.5494954190584194, 2.484969652754556, 2.410465436575845, + 2.3288634246556654, 2.242765050512799, 2.1539823916692216, + 2.063586044067756, 1.9722837950194483, 1.880715617159022, + 1.789874538602453, 1.7012139583097683, 1.6164892829323823, + 1.5372125247229358, 1.4641537688865687, 1.3966762548700964, + 1.332451367927839, 1.267731780764638, 1.1978468414229633, + 1.118253246225936, 1.025541760454468, 0.9186531471618662, + 0.7989668952865607, 0.6706559151164907, 0.5398699257711408, + 0.4136127785714504, 0.29855553050813316, 0.20001088436348666, + 0.12107475245721049, 0.062304866913687224, 0.02260181177758451, + -0.0008199610040350149, -0.011062863501190689, -0.01086603431354332, + -0.002507070964207152, 0.012733878067904384, 0.033907173728251534, + 0.060057382026792755, 0.08994492632776983, 0.1215587483099797, + 0.1523859323646395, 0.17971677947935236, 0.20120617576138713, + 0.21527957598528222, 0.2216815915296501, 0.22131341009428773, + 0.2159031818220313, 0.20766409599749597, 0.19844472289929344, + 0.18936780092697986, 0.18061186129962495, 0.17149379940894866, + 0.16090494289873886, 0.14783782654921762, 0.13188516334281836, + 0.11354816300805962, 0.09411569125157908, 0.07541737848469278, + 0.059248725106968894, 0.0468687277863278, 0.038593102529554016, + 0.03386978648292846, 0.03141793881392168, 0.02979047631473855, + 0.02796246637066475, 0.0256786256946485, 0.023593169328880576, + 0.02304309227671409, 0.025489778685169478, 0.03198132324561731, + 0.04257159220219982, 0.056256978745021335, 0.07131042167756185, + 0.08592445803504092, 0.0992591753951329, 0.1123311799124349, + 0.1285380457675311, 0.15369954257064497, 0.1951667430298294, + 0.26076988904266235, 0.35714014256155724, 0.4876939654503343, + 0.6527544807224976 + ], + "pressure:branch111_seg0:RESISTANCE_63": [ + 7715.603356577941, 8826.05185335051, 10060.479906227793, + 11359.920672866387, 12658.098179299146, 13894.563887758806, + 15021.86674632782, 16010.55625628796, 16846.316810807388, + 17532.941018540074, 18081.224675168287, 18504.00852328987, + 18814.6032930054, 19018.875263729096, 19119.604736341847, + 19117.30658083409, 19011.453756780043, 18807.77235008756, + 18515.12131649368, 18147.72946134278, 17723.523074245266, + 17258.903802585308, 16768.683488844847, 16263.179600922496, + 15748.487815818047, 15228.63807859301, 14707.274216310358, + 14190.050256231507, 13685.241449791423, 13202.84259663604, + 12751.46267606663, 12335.486340112095, 11951.288050412766, + 11585.609319075329, 11217.113901593315, 10819.208398372519, + 10366.02449568379, 9838.150954578137, 9229.556773036038, + 8548.096379284869, 7817.529169607419, 7072.8699426707, 6353.996689506753, + 5698.892562335641, 5137.806620453485, 4688.366131782423, + 4353.746668680464, 4127.688460972854, 3994.3313689758415, + 3936.0111169878455, 3937.1318079077646, 3984.725431788016, + 4071.5031774841964, 4192.0580630423365, 4340.950111749526, + 4511.121517307607, 4691.121870217156, 4866.64332447754, 5022.257603849823, + 5144.612278863686, 5224.742324777273, 5261.193629461886, 5259.09730626701, + 5228.292963822261, 5181.381889390863, 5128.889330527998, + 5077.2078489511005, 5027.3539520111635, 4975.438231125015, + 4915.148212733093, 4840.747668700563, 4749.91761947036, 4645.51181452161, + 4534.868698480795, 4428.405680540522, 4336.345843052342, + 4265.857564602849, 4218.7384447569575, 4191.84519041478, + 4177.885048362039, 4168.6187273090245, 4158.210544608412, + 4145.206987876062, 4133.332976501324, 4130.200990005888, + 4144.131745269481, 4181.092803393557, 4241.390863864214, + 4319.311667264628, 4405.021805124134, 4488.230083555622, + 4564.154273680951, 4638.582649587973, 4730.860058346606, + 4874.1226574351185, 5110.225420366615, 5483.751577404243, + 6032.457129461357, 6775.794464848855, 7715.603356577941 + ], + "flow:branch114_seg0:RESISTANCE_64": [ + 0.6020987223111337, 0.7773469052173516, 0.9690584328871749, + 1.1677475565990607, 1.363008921269388, 1.5458280897828496, + 1.7095603567605073, 1.8506184029844943, 1.9675179927325988, + 2.0616432300894463, 2.1351811413055177, 2.1901869927505087, + 2.228836831146828, 2.2518514877895845, 2.2595184503234815, + 2.251952087532916, 2.2290203097708035, 2.1918560045028155, + 2.1419961816391173, 2.0817371777008646, 2.0139938413126455, + 1.9411781210640706, 1.865422212885608, 1.7881188695739416, + 1.7099788945279828, 1.6314999473542204, 1.5531913963170751, + 1.4759500802972738, 1.4011038296074172, 1.3302083642950104, + 1.264479047425039, 1.2043674266489182, 1.148987674788886, + 1.0958859164679948, 1.0414708787568907, 0.9814768754251336, + 0.911998556598281, 0.8303282650561543, 0.7361188016346211, + 0.6311661838774896, 0.5197147483048594, 0.4076196034228167, + 0.30116590136173677, 0.2060686375711199, 0.12661839077999248, + 0.0650240520745202, 0.02108752215403744, -0.006561780568040155, + -0.02073803966056258, -0.024344998401095417, -0.01967769043873703, + -0.008663887653342726, 0.007763965209066932, 0.02888989498592903, + 0.05384007065897446, 0.0814909185191493, 0.10994838011141699, + 0.13691620219809383, 0.16002614008045513, 0.17736335664442954, + 0.18776573025177817, 0.19133400939252657, 0.1891861774611854, + 0.18302178621114296, 0.1749066674897567, 0.16640207440218435, + 0.1583189336223716, 0.15060905341877465, 0.14248789992283728, + 0.13289052132144039, 0.1209644931275924, 0.1064827572547322, + 0.09009488380421146, 0.07309760297860325, 0.05719561323736366, + 0.04394251576239575, 0.03430847240665396, 0.028337515403260783, + 0.025337353465375335, 0.024032835169845904, 0.023101390403085387, + 0.021743696767879135, 0.019912842033057793, 0.018378153708678045, + 0.018456670885084157, 0.021444165660677625, 0.028154031721114414, + 0.03841162349034417, 0.05108370315099031, 0.0645134343177342, + 0.07711315699775215, 0.08837362641950178, 0.09961406307831097, + 0.11434011285757696, 0.13816780135622247, 0.17783009449104267, + 0.24017974664123518, 0.3307345588312212, 0.4515501380941528, + 0.6020987223111337 + ], + "pressure:branch114_seg0:RESISTANCE_64": [ + 8121.222729973418, 9321.045975220639, 10633.584247889648, + 11993.894096779179, 13330.736056250596, 14582.393473871884, + 15703.373883819679, 16669.11698016474, 17469.46105685453, + 18113.882276363507, 18617.353946202067, 18993.947289960928, + 19258.560444653478, 19416.12852646429, 19468.61979750665, + 19416.81727489246, 19259.816616982353, 19005.37405093385, + 18664.01259723029, 18251.453947767717, 17787.654390127314, + 17289.12714536603, 16770.470129412977, 16241.21871748651, + 15706.239370548858, 15168.939276932495, 14632.805787398538, + 14103.97904056922, 13591.549924854238, 13106.16955825743, + 12656.158830802331, 12244.609228857118, 11865.456004579479, + 11501.898888378162, 11129.350505541435, 10718.606162409491, + 10242.92818055124, 9683.77879244717, 9038.780925645251, 8320.230876530393, + 7557.187169607767, 6789.736356261512, 6060.90924857129, 5409.833124623983, + 4865.883102662066, 4444.182186116734, 4143.374103317348, + 3954.075272535298, 3857.0186017739366, 3832.323835358841, + 3864.278201407599, 3939.6833575772152, 4052.155392419185, + 4196.7924505808905, 4367.611915006045, 4556.921324457588, + 4751.753152970208, 4936.386278841771, 5094.606696352832, + 5213.304620042423, 5284.523673232389, 5308.95362273373, 5294.248656123685, + 5252.044624150597, 5196.485086137752, 5138.259041743905, + 5082.918438255793, 5030.133334679015, 4974.532480044986, + 4908.824763431703, 4827.174125957706, 4728.026031845446, + 4615.827712981126, 4499.457133256067, 4390.585379947033, + 4299.849064407014, 4233.89032536477, 4193.010626127736, 4172.470247489361, + 4163.538963016849, 4157.161897849666, 4147.8665524918415, + 4135.331745950165, 4124.824620025866, 4125.362181852989, + 4145.815835736122, 4191.754419168487, 4261.982234606463, + 4348.740656236454, 4440.6862808019505, 4526.949315912814, + 4604.043256292445, 4681.000043896833, 4781.820814433929, 4944.95525649821, + 5216.500104917167, 5643.372217040075, 6263.348794444503, + 7090.503393047364, 8121.222729973418 + ], + "flow:branch115_seg2:RESISTANCE_65": [ + 0.6544619725817437, 0.8469090431050385, 1.0590755029092203, + 1.2807304549317, 1.5005115932622741, 1.7083186845918457, + 1.8964540041793725, 2.060435544916889, 2.198187237938986, + 2.310754561287791, 2.400216316635493, 2.4687067125981006, + 2.518500059531868, 2.5504321521193454, 2.564842416938936, + 2.561831750040347, 2.5412597718209997, 2.5042509449240566, + 2.452442891398898, 2.3883160569762194, 2.315025543369563, + 2.2353085300140965, 2.151602634689997, 2.065563625233831, + 1.9781115208395101, 1.8898835583600333, 1.8015007051667034, + 1.7139721361594118, 1.6287658955349782, 1.5476143214586169, + 1.4719294177989588, 1.4023261590619651, 1.3379928479031085, + 1.2764245169854247, 1.2138100157037393, 1.145529020265539, + 1.0672450031812266, 0.9758345095288568, 0.8706398502645418, + 0.7533646680761423, 0.6283982615992849, 0.5019710209119222, + 0.38093569200697197, 0.2716545953233063, 0.17902304928002666, + 0.1057422234729109, 0.05194825301897202, 0.01634898573961508, + -0.00392781428527088, -0.011961447523666674, -0.010297681299490633, + -0.0010670966840191458, 0.014613907500942476, 0.03589990447160402, + 0.061834873818796765, 0.09118071824246864, 0.12189496539573867, + 0.15147369178537867, 0.17728638813470832, 0.19714028238068082, + 0.2096323246971161, 0.21469785814645528, 0.2133961478990372, + 0.20748457975464585, 0.19915801371492925, 0.1901487487053225, + 0.181418443991256, 0.1730047587555615, 0.16413267521041527, + 0.15367833008612983, 0.14069842492054108, 0.12488815425699536, + 0.10686889410656289, 0.08799459697464318, 0.07009456809843083, + 0.054887735537327446, 0.043505734440107996, 0.03611085948624664, + 0.03204356013381665, 0.029982167187192387, 0.02850768546608938, + 0.02670354093620382, 0.024442643569999572, 0.022483219750703703, + 0.02220626391433402, 0.025026844970452117, 0.0318848032648915, + 0.04268967879159139, 0.056310253308372124, 0.07099633448316807, + 0.08501072941598227, 0.09769848486529464, 0.11032563874910703, + 0.12651977246432827, 0.15223870248368795, 0.19478530329752544, + 0.2617170718950026, 0.3592895157232759, 0.4902637373913385, + 0.6544619725817437 + ], + "pressure:branch115_seg2:RESISTANCE_65": [ + 7880.697563384439, 9022.125722737796, 10280.512098962168, + 11595.175934637187, 12898.72594193588, 14131.256346851429, + 15247.110960601722, 16219.706426477074, 17036.729314830103, + 17704.380489482865, 18234.98958870886, 18641.214876443337, + 18936.545577940156, 19125.938898229826, 19211.408019708742, + 19193.551369736688, 19071.53633895801, 18852.032258953364, + 18544.752075295048, 18164.407628475445, 17729.71222980487, + 17256.90044017328, 16760.43008202747, 16250.121725921577, + 15731.4321232222, 15208.140807108051, 14683.930814383588, + 14164.787690296738, 13659.418592513593, 13178.098239988944, + 12729.201408043546, 12316.375589031946, 11934.806502313775, + 11569.636866617382, 11198.262260849448, 10793.278954375026, + 10328.96644868522, 9786.799133633387, 9162.876171483973, + 8467.302084649898, 7726.110364048377, 6976.254249130625, + 6258.378251782136, 5610.218107278123, 5060.8085745129165, + 4626.17063541898, 4307.11172476585, 4095.9679229167823, 3975.703631716878, + 3928.0551267264527, 3937.9231367392404, 3992.6709132512124, + 4085.676952236288, 4211.9269194410745, 4365.750535692321, + 4539.8044877431375, 4721.974611189302, 4897.4098159296955, + 5050.508215410899, 5168.264198412121, 5242.356097182216, 5272.40042316494, + 5264.6798134010105, 5229.617547565545, 5180.231620709892, + 5126.796519052695, 5075.015966544025, 5025.113324608022, + 4972.4918637407345, 4910.485807322153, 4833.500331671872, + 4739.727596689217, 4632.853062873292, 4520.9071954937845, + 4414.739837596416, 4324.546171085321, 4257.0380685882, 4213.1781205812895, + 4189.054448546379, 4176.828063648073, 4168.082724203089, + 4157.382112526564, 4143.972441430111, 4132.350848451999, + 4130.708188006868, 4147.437414564785, 4188.1128412764465, + 4252.197938290123, 4332.9833057043925, 4420.088329220105, + 4503.209495830312, 4578.4621941928, 4653.355456928784, 4749.404932707373, + 4901.947192107377, 5154.296516633997, 5551.277386359608, + 6129.992015060769, 6906.81685502745, 7880.697563384439 + ], + "flow:branch116_seg0:RESISTANCE_66": [ + 0.3050339787828627, 0.4014899628741598, 0.5185163995479931, + 0.6537882663628916, 0.8032459312281177, 0.9617132085859441, + 1.1235608927959795, 1.2833869581129909, 1.4365143821664945, + 1.579440886035749, 1.7097389068883064, 1.8259807414789566, + 1.9274691885940751, 2.01382604750567, 2.084875850980981, + 2.1404570478292433, 2.1804566199768356, 2.204991173932925, + 2.2144250688625453, 2.209574259553656, 2.1916554085980513, + 2.1621638033825943, 2.122774409541965, 2.0751155882446377, + 2.0206628018612, 1.9606999294247651, 1.8963492057473195, + 1.8286860531615814, 1.7588354413724294, 1.6880170854433343, + 1.617476093043301, 1.548336141726258, 1.4813394915965479, + 1.4166212892098224, 1.3535642651515978, 1.290789614962065, + 1.2263508145428843, 1.158096451271534, 1.0841473777660804, + 1.0033025043495323, 0.9154500969210064, 0.8216593023868295, + 0.724102808161244, 0.6257404432042991, 0.5298970219596695, + 0.43971937478710904, 0.3577917960595167, 0.28592926845516453, + 0.2249974265258186, 0.17513497464986472, 0.13592407274016155, + 0.1066225633981601, 0.08643494959113643, 0.0745430206931165, + 0.0701376389241949, 0.07234012166533679, 0.08006216887035035, + 0.09196987665209752, 0.10649338989553486, 0.1219505447286366, + 0.1367285390165947, 0.1495269224506811, 0.15948887669524442, + 0.1662893262969122, 0.1700904936674912, 0.17135895833316245, + 0.17067169662070078, 0.16850299084216847, 0.16508555989197193, + 0.16038981127901292, 0.15420089027247738, 0.14628426827551028, + 0.13655782013071588, 0.1252097128060695, 0.11274422039309005, + 0.0998960893299297, 0.0874741823304999, 0.07616589733485768, + 0.06640046236156574, 0.05825879311524688, 0.0515347299304684, + 0.04587614586564679, 0.04096501449581591, 0.03668745921506512, + 0.03321511430922458, 0.03096289301246837, 0.03045172762569682, + 0.03208742530781307, 0.03599430498783806, 0.04192606233647043, + 0.049343898376093286, 0.05767225337504748, 0.06666441688537934, + 0.07679002723877941, 0.08954209591166747, 0.10749565263475819, + 0.13418891274398023, 0.1736105500334109, 0.22954711301644773, + 0.3050339787828627 + ], + "pressure:branch116_seg0:RESISTANCE_66": [ + 5727.198674153913, 6273.679117040744, 6936.703392263025, + 7703.098866670959, 8549.865313126713, 9447.676565890535, + 10364.639831369139, 11270.149425015808, 12137.707237039913, + 12947.47077706878, 13685.686459730687, 14344.265498113102, + 14919.257833216665, 15408.520733273286, 15811.060072185215, + 16125.96056649844, 16352.581901695334, 16491.584722912365, + 16545.0333412418, 16517.55062521899, 16416.029691100764, + 16248.942230105795, 16025.777917452082, 15755.762386374454, + 15447.255007598682, 15107.52971844697, 14742.944645715212, + 14359.592695698564, 13963.847489985654, 13562.619438898457, + 13162.962816952018, 12771.243924932332, 12391.668107218797, + 12025.001049323653, 11667.745553367607, 11312.089873102388, + 10947.005793312803, 10560.304283594327, 10141.338857850695, + 9683.304629637467, 9185.568558905212, 8654.187997931087, + 8101.472511451544, 7544.1912886070495, 7001.181378097203, + 6490.271443067063, 6026.103046160519, 5618.959142314986, + 5273.744065436582, 4991.24365821661, 4769.090608372397, 4603.080153413861, + 4488.7053301405995, 4421.3304893550085, 4396.371384921558, + 4408.849757882749, 4452.599742047489, 4520.063979581751, + 4602.348308794899, 4689.92227217874, 4773.648387665971, 4846.158831815035, + 4902.599219820764, 4941.127806151204, 4962.663677126247, + 4969.850282901024, 4965.956537079617, 4953.669530674479, + 4934.307754452997, 4907.703549375723, 4872.639635772997, + 4827.787269838133, 4772.6811637737155, 4708.387395220899, + 4637.762976437304, 4564.970682420397, 4494.593200893463, + 4430.525049488157, 4375.198059882868, 4329.070667606664, + 4290.974855699976, 4258.915615882058, 4231.091139553868, + 4206.8562481023955, 4187.183351704349, 4174.423180281854, + 4171.52712474333, 4180.794323685656, 4202.929117684801, 4236.536046415211, + 4278.5624936324, 4325.747571585047, 4376.69351904421, 4434.061116115097, + 4506.309159631891, 4608.026722537495, 4759.2598963421815, + 4982.606887285335, 5299.520741832749, 5727.198674153913 + ], + "flow:branch117_seg0:RESISTANCE_67": [ + 0.6857555203684889, 0.8816230469116908, 1.093683567067095, + 1.3113830738617056, 1.5232559147436373, 1.7196759047817927, + 1.8938664002075096, 2.042633039293314, 2.1647620080415204, + 2.2622558883527883, 2.337876499289433, 2.3937365270532327, + 2.4322513992777575, 2.4540167683875005, 2.4591350778528778, + 2.447790836220478, 2.4197424439073645, 2.3763975056833697, + 2.319621652684539, 2.2519515468894626, 2.1767227246008582, + 2.0964965637766957, 2.0134868064748592, 1.929106408548568, + 1.8439798884470087, 1.7585928933833912, 1.6735043887002061, + 1.5897493754893894, 1.5088520339491795, 1.4325543832581475, + 1.36211600680432, 1.297867312417792, 1.2386122467677345, + 1.1813504755335769, 1.1219436144411719, 1.0556153959750372, + 0.9781866780567571, 0.8869066187708061, 0.781861105726319, + 0.6654729044280682, 0.542785759524467, 0.42056151918028867, + 0.30574575213120664, 0.2044611205951611, 0.12108819437368001, + 0.05768913948453926, 0.013515733602733697, -0.013198222555045927, + -0.025734858498291727, -0.027394415386883246, -0.020525030870799287, + -0.007152512210256039, 0.01186067072026456, 0.03584249320506336, + 0.06378158134601936, 0.09441928931573305, 0.12557277090248437, + 0.15463916838074956, 0.17902654517509284, 0.1967463468387999, + 0.2066737256416717, 0.2091368784523666, 0.20561003206587228, + 0.19803409009238493, 0.18873332764390444, 0.17934813221634885, + 0.17059990238271977, 0.16226949443462763, 0.15335859178210617, + 0.1426382264373393, 0.12921625078490223, 0.11295257202695246, + 0.09472923932763815, 0.07609264718365129, 0.05897542185702581, + 0.04505322353120391, 0.03528079665926175, 0.029522979069349326, + 0.026870651274827583, 0.025834490477944373, 0.0249385032421938, + 0.023407406713264783, 0.021340181733319134, 0.019730696904343557, + 0.02012608066658708, 0.02394093292642561, 0.03197201605828612, + 0.04385722481902458, 0.05815050220047164, 0.07295462544342139, + 0.0865511697440322, 0.09857875136336007, 0.11083121817975536, + 0.1275587651286069, 0.15529837165862087, 0.20163301613658738, + 0.2740068793055599, 0.3782630937919271, 0.5159014951647243, + 0.6857555203684889 + ], + "pressure:branch117_seg0:RESISTANCE_67": [ + 8462.537087047149, 9737.425794328705, 11117.713620380084, + 12534.70523553686, 13913.771469675768, 15192.256125113368, + 16326.050478130039, 17294.362640630803, 18089.291978009696, + 18723.87316270894, 19216.082691375224, 19579.671898026056, + 19830.36264052954, 19972.031980912558, 20005.34671691266, + 19931.507802391883, 19748.94268172853, 19466.81336077957, + 19097.263108566007, 18656.802889246992, 18167.14348684126, + 17644.956740174413, 17104.651749112232, 16555.42534935768, + 16001.34248997304, 15445.56421637902, 14891.728796824975, + 14346.572984602395, 13820.017567280756, 13323.401231868693, + 12864.922522890745, 12446.732042944586, 12061.044760423953, + 11688.331698724747, 11301.656389762564, 10869.930425847215, + 10365.95204905625, 9771.816212261565, 9088.081952200464, + 8330.518888456847, 7531.956419594928, 6736.406965732345, + 5989.078771967367, 5329.823839588381, 4787.155006174896, + 4374.494773225758, 4086.9730113758824, 3913.0936469226017, + 3831.4935171133416, 3820.691571667372, 3865.403938745733, + 3952.444773585081, 4076.2003171169627, 4232.296405148979, + 4414.150072223252, 4613.5688763350345, 4816.344816626969, + 5005.536065224393, 5164.271879292432, 5279.608890153935, + 5344.225538722762, 5360.258036595609, 5337.302027961547, + 5287.9907253710735, 5227.452680990037, 5166.365067962045, + 5109.42342163387, 5055.2013501781985, 4997.200877287765, + 4927.422732042432, 4840.059984931181, 4734.200781247454, + 4615.586320354334, 4494.281981212949, 4382.867099664956, + 4292.248436431827, 4228.6403596788605, 4191.163107816248, + 4173.899282551681, 4167.1549808178115, 4161.323059473389, + 4151.357253967291, 4137.901824020041, 4127.425794280883, + 4129.9993209007525, 4154.829940615261, 4207.103726743815, + 4284.463760334718, 4377.497752468328, 4473.856806348953, + 4562.355809184313, 4640.642538245582, 4720.393030102225, + 4829.271520998516, 5009.826775530451, 5311.415895704673, + 5782.492559023398, 6461.089327249174, 7356.96853037865, 8462.537087047149 + ], + "flow:branch119_seg2:RESISTANCE_68": [ + 1.0340403151052706, 1.3325289863406067, 1.6572488954103797, + 1.991847702717776, 2.318715262286743, 2.6229344974132744, + 2.893832904640563, 3.1260511403673124, 3.3177115776403805, + 3.471728503616374, 3.5921089865196225, 3.682364969956129, + 3.746049005377527, 3.7841017807235815, 3.7967198702837512, + 3.783884787774154, 3.7452505306632133, 3.682728324677207, + 3.5990179380459018, 3.498106361104161, 3.3849624054142713, + 3.2636463228868737, 3.13766059599679, 3.009192234829945, + 2.8792824343607766, 2.7486529015460373, 2.6181226903462216, + 2.489246622549086, 2.3643463226943444, 2.246123580598875, + 2.1366371677365854, 2.0365689408952665, 1.9442418560662096, + 1.855281603198556, 1.7634205469237032, 1.661341392237271, + 1.5425079545163953, 1.4025760568337116, 1.241356389371039, + 1.0623550300611653, 0.873187057558754, 0.6840563869674275, + 0.5056819065977154, 0.3475831821914671, 0.21665980005674565, + 0.11615697819939942, 0.04526388020279485, 0.0012505069695239834, + -0.020905563198658415, -0.026148813090709065, -0.018257974777525887, + -0.0002729825394868282, 0.02648805263062326, 0.06099537285413122, + 0.10189008892095008, 0.14729459596463054, 0.19394560822554713, + 0.2379009480600896, 0.27513349465753534, 0.30246441162198384, + 0.3180598590186088, 0.3222855530445061, 0.31723310565582225, + 0.3059060721119136, 0.2918388656504942, 0.27760068079780137, + 0.2643960681531517, 0.25193336102094843, 0.23869461615182283, + 0.2227607696500617, 0.20267416800534482, 0.17813526159774296, + 0.15038218189672203, 0.12175666069844444, 0.09524081820207966, + 0.07346693879739888, 0.057988257919725984, 0.048722275296977355, + 0.04433237102530931, 0.04252680245725257, 0.0410299712580617, + 0.03855144272911754, 0.035148977878491944, 0.03229344012864368, + 0.032350023211917864, 0.03756101790863559, 0.04925037324697046, + 0.06697796679119325, 0.0886432249874141, 0.11130564673101329, + 0.13224749008501002, 0.15072437083738444, 0.1692315128460395, + 0.19404722890330922, 0.23501202906214566, 0.303733065198584, + 0.4118101859634009, 0.5683000338575567, 0.7762155288390095, + 1.0340403151052706 + ], + "pressure:branch119_seg2:RESISTANCE_68": [ + 8231.700697939692, 9453.522699083116, 10782.71863629821, + 12152.352474100386, 13490.33952094059, 14735.618791039122, + 15844.503870848566, 16795.05703021438, 17579.59246346831, + 18210.03940112639, 18702.800221531183, 19072.250579031057, + 19332.932350561732, 19488.69611181255, 19540.34651238959, + 19487.80788125222, 19329.66390499805, 19073.73792121593, + 18731.08105693008, 18318.01350442558, 17854.874405088343, + 17358.283837308838, 16842.57872760641, 16316.711298618675, + 15784.943537649831, 15250.229652088992, 14715.922325791546, + 14188.386006226357, 13677.123941638263, 13193.195534138122, + 12745.028079380863, 12335.41266361275, 11957.484539645064, + 11593.338075623036, 11217.317574944145, 10799.470704783795, + 10313.042499391713, 9740.250672677268, 9080.320311140651, 8347.60305881, + 7573.2701846055015, 6799.090000603474, 6068.9387903204915, + 5421.7835765805185, 4885.866859559823, 4474.4724893343355, + 4184.281419425434, 4004.1187769426024, 3913.425974839506, + 3891.963458191598, 3924.263511049923, 3997.8825838136754, + 4107.425171841862, 4248.676103996476, 4416.072955656413, + 4601.930011562234, 4792.889463792365, 4972.814554601715, + 5125.2208231648865, 5237.09614332489, 5300.933945503479, + 5318.231238260266, 5297.549745212087, 5251.184103479821, + 5193.601943734678, 5135.319907644768, 5081.268656121423, + 5030.254291975164, 4976.0633249221155, 4910.840332913334, + 4828.618613354774, 4728.172001398877, 4614.568616594168, + 4497.394013452604, 4388.855087647379, 4299.726730457877, + 4236.366895839204, 4198.437880363234, 4180.468415727142, + 4173.0775710699745, 4166.950500037092, 4156.804987061366, + 4142.87746882288, 4131.188720859949, 4131.4203358681525, 4152.75082034497, + 4200.599576120027, 4273.165023009575, 4361.848754338612, + 4454.614236428516, 4540.336769375968, 4615.969319590764, + 4691.725740063525, 4793.305433950786, 4960.989165126795, + 5242.2892008881945, 5684.6879137913575, 6325.257414541081, + 7176.330673353895, 8231.700697939692 + ], + "flow:branch121_seg0:RESISTANCE_69": [ + 0.7737524978955908, 1.000510253428796, 1.2488967274531673, + 1.5063154977158413, 1.7591498289728893, 1.9956050770152085, + 2.2069833186031693, 2.388505690651667, 2.538460723605428, + 2.6587598674795614, 2.7522689945354597, 2.821978023017432, + 2.8707052395483306, 2.8994361637444643, 2.908597802865394, + 2.8981541684272543, 2.8679632135678963, 2.8193992729729023, + 2.754378205751046, 2.6759848737177667, 2.587956696807708, + 2.4935027686018434, 2.395439771383652, 2.295547429997358, + 2.1947428028565286, 2.0936070295383105, 1.9927359896845342, + 1.8932462910214636, 1.7968378432841725, 1.7055338402732343, + 1.6209639623463772, 1.5437728666760608, 1.472833747237782, + 1.4050121412866372, 1.3356028894921703, 1.259007976867091, + 1.1700523843972588, 1.0651771468912437, 0.9438268129816237, + 0.8083240677105596, 0.664258678374341, 0.5192578353557883, + 0.3816096885680446, 0.2588319219734491, 0.1565614467300979, + 0.07761559579778429, 0.021781902587615982, -0.012872792353626386, + -0.03012777397005226, -0.033782756740742464, -0.026968719109920138, + -0.012163416355973847, 0.009436362520325484, 0.0369287151186189, + 0.06930853009405855, 0.10514821159031704, 0.14203519798127473, + 0.17701077516879485, 0.20697267312328174, 0.22938237354427454, + 0.2427190104144446, 0.24710815905940794, 0.2439744259682891, + 0.23562313262353712, 0.22477683796797707, 0.21351468048038322, + 0.2029445299685849, 0.19300172277466554, 0.18263662628008281, + 0.17041474847023189, 0.1551623362224975, 0.13654212575564542, + 0.1153598320066919, 0.0933162255069752, 0.07266430111820604, + 0.05546993813441172, 0.043031351733715174, 0.03544344225920192, + 0.031790978516670426, 0.030368117904738996, 0.02941949680427388, + 0.027838841681106594, 0.025528052979367607, 0.02348770657776656, + 0.023458110828353376, 0.02718587906040247, 0.03578417011016943, + 0.049062797331440054, 0.06557848774582214, 0.08311456859520683, + 0.09953602697839926, 0.11408398170677905, 0.12837462443787911, + 0.14690567903550295, 0.17696098447586628, 0.22734447508311917, + 0.30709156659358383, 0.4233894071865862, 0.5791825827450817, + 0.7737524978955908 + ], + "pressure:branch121_seg0:RESISTANCE_69": [ + 8210.700176336124, 9444.99109179325, 10797.011743478583, + 12198.197113550023, 13574.428402541385, 14861.50484182135, + 16012.081776682202, 17000.146834236006, 17816.384119997983, + 18471.198064826294, 18980.18822380023, 19359.629360789448, + 19624.862012074856, 19781.25057150732, 19831.119330840687, + 19774.2723970675, 19609.936578765468, 19345.592673286912, + 18991.669111128907, 18564.957454305684, 18085.80127810853, + 17571.668364596488, 17037.890517288484, 16494.15515879139, + 15945.454034001199, 15394.950409810368, 14845.887786432984, + 14304.344098312411, 13779.572317362074, 13282.585119741094, + 12822.253203855851, 12402.085576442109, 12015.94879154006, + 11646.781298678048, 11268.971910253224, 10852.049434543134, + 10367.845137290149, 9796.986810501288, 9136.451013698526, + 8398.880617862233, 7614.70192077044, 6825.431349404179, + 6076.1830746974665, 5407.877456786049, 4851.197407561157, + 4421.47827231192, 4117.563549996549, 3928.9306406465103, + 3835.0080887785307, 3815.11323658524, 3852.203499388073, + 3932.7919257764815, 4050.364137497348, 4200.010887073015, + 4376.261138687962, 4571.344183057002, 4772.12793174904, 4962.507471729553, + 5125.596484355017, 5247.577272102303, 5320.171436270553, + 5344.062510189195, 5327.00493137898, 5281.547057254646, 5222.50835788029, + 5161.206028252366, 5103.670440457147, 5049.549616387697, + 4993.130181422764, 4926.603889014135, 4843.581750115655, + 4742.2279659017795, 4626.928214934501, 4506.940154625236, + 4394.52731741124, 4300.93472571326, 4233.22884213981, 4191.926229535978, + 4172.045088951203, 4164.3001546130645, 4159.13660726818, + 4150.532763688902, 4137.954647031368, 4126.8486055997955, + 4126.6875096119165, 4146.978548623697, 4193.7808840332555, + 4266.059289287429, 4355.957721175855, 4451.410356232243, + 4540.795863040031, 4619.983489136865, 4697.770511051788, 4798.63900081922, + 4962.236450348999, 5236.484555333638, 5670.565014253512, + 6303.599010350741, 7151.6145537657885, 8210.700176336124 + ], + "flow:branch122_seg0:RESISTANCE_70": [ + 0.40669613690151274, 0.5338945168640119, 0.6837502753274475, + 0.8516980247254117, 1.0313886904076925, 1.2157552673258507, + 1.3979100554895385, 1.5719440592353935, 1.733316958536805, + 1.8792870771478762, 2.0083746237879447, 2.1201220752813867, + 2.2146630237693308, 2.2920914576767646, 2.3525007011859045, + 2.3958136700436667, 2.421951356746806, 2.4312289778930674, + 2.424301378214357, 2.4024700119780156, 2.367517230955502, + 2.3214369292799635, 2.2663093125600393, 2.203968568766837, + 2.135928809276038, 2.0634206565679882, 1.987499155829707, + 1.9092531923349718, 1.8299268157172337, 1.7509317634880162, + 1.6736693527701725, 1.599278639150803, 1.5282426752097942, + 1.4601263751595859, 1.3934864455012161, 1.3259879903020098, + 1.2548143274113155, 1.1772481878507655, 1.0913549358947885, + 0.996403509816896, 0.893305577148526, 0.7844840171174478, + 0.6735561991050808, 0.5647424521282024, 0.4622405459770317, + 0.3695109019447052, 0.2889038822266439, 0.22163008777856386, + 0.16764731279288764, 0.1262047782143772, 0.09613511365769076, + 0.07615059879409233, 0.06518671650444322, 0.06228148609070622, + 0.06653425349941376, 0.07693115766559802, 0.0921141754574674, + 0.11039181509504174, 0.12980889182235658, 0.14838518047889449, + 0.1643844426373381, 0.1766508352034836, 0.18469094098208894, + 0.18869949495271066, 0.18940568683975076, 0.18772460850042855, + 0.18448998725680543, 0.18019939196402848, 0.17491087075005446, + 0.16832713838522428, 0.15999115845962386, 0.14956442226049999, + 0.13705440433659802, 0.12290712056278032, 0.10798834306873625, + 0.09337157969400325, 0.08007410355046492, 0.06878482492768492, + 0.05974594567546439, 0.05270528039880208, 0.04710838479556277, + 0.04235910331176264, 0.03807622619357271, 0.034285196020040515, + 0.03144096743204137, 0.03026391084148679, 0.031481898983509116, + 0.03549267482290311, 0.04219325631026966, 0.050957134013545784, + 0.06086320001561927, 0.07116043741287159, 0.08180648239525073, + 0.09394526041623928, 0.11019308093184266, 0.13449323723718792, + 0.171771837719908, 0.227047322943229, 0.3044559220036642, + 0.40669613690151274 + ], + "pressure:branch122_seg0:RESISTANCE_70": [ + 6283.399079387483, 6997.8682757257775, 7839.603236089281, + 8782.960325814523, 9792.276997436931, 10827.858111608304, + 11851.015679706667, 12828.559063737937, 13734.9854326009, + 14554.894879279429, 15279.975463893814, 15907.657293528047, + 16438.690750928643, 16873.603766046344, 17212.92053780165, + 17456.208086432016, 17603.022629340816, 17655.134727987475, + 17616.222624103284, 17493.59654431795, 17297.26790102622, + 17038.436333243248, 16728.786288757285, 16378.620342224069, + 15996.44320838971, 15589.167254021673, 15162.718633895625, + 14723.213581462718, 14277.639883376205, 13833.927223690209, + 13399.946755471889, 12982.09651720366, 12583.089799641597, + 12200.482739954532, 11826.168405125003, 11447.031760031952, + 11047.25159191221, 10611.565088583877, 10129.10546359524, + 9595.766366815487, 9016.668605354796, 8405.4214136641, 7782.343438848523, + 7171.140132831187, 6595.390233087487, 6074.53081437441, 5621.763785311875, + 5243.889052409474, 4940.669547007773, 4707.888167376523, + 4538.987831725142, 4426.735456513953, 4365.151683430187, + 4348.833097930181, 4372.720755254189, 4431.119830511357, + 4516.402351585488, 4619.067263722487, 4728.132357229916, + 4832.474771270864, 4922.342110616845, 4991.242041899678, + 5036.403056653236, 5058.918974974784, 5062.885632019809, + 5053.443069225917, 5035.274306061861, 5011.17417073351, 4981.468717702739, + 4944.488105426125, 4897.66517513494, 4839.098534311247, 4768.830167254189, + 4689.3653307426775, 4605.567038896021, 4523.4651506133905, + 4448.77365614308, 4385.36214235466, 4334.591049224096, 4295.043859524142, + 4263.606277498217, 4236.929716633879, 4212.872934043164, + 4191.578839871711, 4175.60289965872, 4168.991410765969, 4175.832810862705, + 4198.36120934946, 4235.998159377357, 4285.224577680112, + 4340.8666308058055, 4398.705881037517, 4458.5043722210075, + 4526.687496721035, 4617.950980339729, 4754.444174289946, + 4963.836870449738, 5274.317487548467, 5709.119090970521, 6283.399079387483 + ], + "flow:branch123_seg2:RESISTANCE_71": [ + 0.879416642367815, 1.1263363671553672, 1.3911672944050846, + 1.6605011293051526, 1.9200838414995132, 2.1583646341132723, + 2.3675815742612762, 2.5445460303841934, 2.6884055327393113, + 2.8022581725236817, 2.889780051185617, 2.9535957624592273, + 2.996635005735074, 3.019353702255103, 3.0217145774621006, + 3.00388417265408, 2.9655229155987373, 2.908607758898605, + 2.835599107393908, 2.749772521021314, 2.6553739683415047, + 2.555490003389294, 2.4527364173811947, 2.3486807764997946, + 2.243918815804349, 2.1389687349848643, 2.0345197923351193, + 1.9319266814346983, 1.8331682151213702, 1.7404449903565535, + 1.6552419321946654, 1.5777717955974815, 1.5062454312854812, + 1.4365966883723436, 1.3634252236701296, 1.28068901646292, + 1.1833199245757635, 1.0682222688947502, 0.9360582942309538, + 0.7903808218332845, 0.6379842910447315, 0.48760121100670617, + 0.34791967371298965, 0.22633735753284914, 0.12785878702917391, + 0.05454035580588557, 0.004862828664599411, -0.023737063420270384, + -0.0355870043797876, -0.03483088978481705, -0.024227787524166648, + -0.006124372039263612, 0.018611594910302072, 0.04925885597749905, + 0.08455833892912665, 0.12287849936873664, 0.16137896620729952, + 0.19674697493221313, 0.22576783139994924, 0.24609937669739557, + 0.2565519718613612, 0.2578257807588775, 0.25199796773316235, + 0.24162361675287464, 0.2296418799518993, 0.21797365564985724, + 0.2073204080433627, 0.19719220995944306, 0.1861747689790728, + 0.17267231701337726, 0.1556329082326358, 0.13502615896561726, + 0.11214879434705885, 0.0890796508035763, 0.06829642015139152, + 0.0518344939279454, 0.04073105103120577, 0.03460264127073759, + 0.032125152204440496, 0.03132610069324917, 0.030367919651208518, + 0.028405250926253907, 0.02574915108590276, 0.023825756108870246, + 0.024681060972701938, 0.03006587844978987, 0.0408462263018324, + 0.05634503725675243, 0.07454262601975795, 0.09295886358547066, + 0.10949042412930912, 0.1239367522856161, 0.1389413745053485, + 0.16026991150734377, 0.1964832373529956, 0.2572245621259221, + 0.3516429716468033, 0.48665226647005333, 0.66333181088939, + 0.879416642367815 + ], + "pressure:branch123_seg2:RESISTANCE_71": [ + 8656.35154042305, 9964.027453291617, 11366.560300131081, + 12792.940346206258, 14167.678878843608, 15429.603390011504, + 16537.607027351543, 17474.802939524743, 18236.676484576295, + 18839.635016101547, 19303.147004354778, 19641.112181364737, + 19869.0461051869, 19989.36331450087, 20001.86640490459, + 19907.437371727086, 19704.277855484346, 19402.857709491793, + 19016.20712867712, 18561.673333210838, 18061.742784303697, + 17532.761735251435, 16988.58330033997, 16437.50924055887, + 15882.694542364201, 15326.883568334762, 14773.726599829391, + 14230.39803397196, 13707.377575801207, 13216.319489239786, + 12765.08787152717, 12354.809463506355, 11976.009009932463, + 11607.152356024202, 11219.639523735392, 10781.472239286742, + 10265.809846465465, 9656.257765961569, 8956.323216927392, + 8184.8217831480115, 7377.73651408582, 6581.314390912348, + 5841.567163554944, 5197.672608608659, 4676.134466233907, + 4287.843305766689, 4024.753324966544, 3873.2895647416262, + 3810.5328029033094, 3814.5371522685214, 3870.690711648455, + 3966.565597264125, 4097.566181317469, 4259.87271688262, 4446.817213245856, + 4649.759083634102, 4853.655848715552, 5040.96325453535, + 5194.6564234643465, 5302.33138576127, 5357.687866231368, + 5364.433901665812, 5333.57006231484, 5278.627959571776, 5215.173212801556, + 5153.378814323039, 5096.9596874151985, 5043.321199495699, + 4984.973320629898, 4913.464933783135, 4823.2249804895355, + 4714.092550173622, 4592.935041645942, 4470.761880436262, + 4360.694812530539, 4273.513181252028, 4214.709840050872, + 4182.2540537225495, 4169.133381491203, 4164.901640121714, + 4159.827155813416, 4149.432949280212, 4135.366362309935, 4125.18014780414, + 4129.709804434667, 4158.227559004659, 4215.319803176686, 4297.40081870224, + 4393.774441822645, 4491.306019306251, 4578.85643085764, 4655.36354415388, + 4734.82735805258, 4847.782344205397, 5039.5665120112035, + 5361.249874446601, 5861.28558430351, 6576.288822726993, 7511.975855152381, + 8656.35154042305 + ], + "flow:branch125_seg0:RESISTANCE_72": [ + 0.7100692683589616, 0.9239799569631025, 1.1622671280419359, + 1.4134164505793936, 1.6644174021707159, 1.9033511643312742, + 2.1208172614491994, 2.3109182251772635, 2.470819884374434, + 2.6012681689754853, 2.7044230577858954, 2.782990056485977, + 2.8397241754599505, 2.875940867940053, 2.8923454046599253, + 2.889073466228491, 2.8660846459710525, 2.824466631678646, + 2.7658602021764236, 2.693039004846554, 2.6094582612621955, + 2.5183142625794233, 2.422527435045483, 2.3241205470061987, + 2.2242917186997264, 2.123802240519475, 2.023302730056372, + 1.9238201449670531, 1.8268928963836994, 1.7344153387140304, + 1.6480537561330244, 1.5686989618055553, 1.4957024944438657, + 1.426557678785229, 1.3571554877166638, 1.2823175367145614, + 1.1969320062874742, 1.0971197986137897, 0.981538466889763, + 0.8515580487192714, 0.7117052870507122, 0.5687348027173293, + 0.4304435236909739, 0.3043238204099958, 0.1964377936679695, + 0.11032658053702371, 0.04673948774727624, 0.00451883076888953, + -0.019471322581720137, -0.028723737230163218, -0.026407502963911776, + -0.015167212335063828, 0.003503598793347251, 0.028499240780218787, + 0.058772415969262935, 0.09298766544613096, 0.12896799461426298, + 0.1639725264428156, 0.1950134943870959, 0.21946927378084802, + 0.23556143495608423, 0.242965332064461, 0.24263776742636528, + 0.23651816454777208, 0.22710083732071734, 0.21650808966458612, + 0.20608003838193859, 0.19609571364230324, 0.18584701324826394, + 0.17411431213959683, 0.15974247385085447, 0.14222522553568445, + 0.1220516846212584, 0.10060168911952785, 0.07989251166983609, + 0.061940039634696034, 0.048189745576268074, 0.03905126849373778, + 0.03396047278648517, 0.03150516127327761, 0.030054995022583655, + 0.0284134348644549, 0.026223374160301162, 0.024149440341056327, + 0.023644291050417352, 0.026345387366507187, 0.03346657237843587, + 0.04513715306951012, 0.06031394628040039, 0.07709535776784271, + 0.09344070456607192, 0.10831980844490285, 0.12271672275233796, + 0.14024745360036087, 0.16724263304715067, 0.21178705893745056, + 0.2826400893363925, 0.3872248672489781, 0.5295056574661129, + 0.7100692683589616 + ], + "pressure:branch125_seg0:RESISTANCE_72": [ + 7767.211786589459, 8902.397907147068, 10166.94570081161, + 11499.750653160536, 12831.768227188893, 14099.747365151563, + 15253.801408691876, 16262.633538291904, 17111.203309906614, + 17803.469241524937, 18350.893957930508, 18767.83509836716, + 19068.91301477041, 19261.10858435224, 19348.164553925788, + 19330.800956440682, 19208.80336083417, 18987.943933480652, + 18676.929996867697, 18290.48080617656, 17846.93261004864, + 17363.247559283012, 16854.92383848942, 16332.695920855109, + 15802.922018183273, 15269.642163695018, 14736.309069659346, + 14208.372618388434, 13693.996885162305, 13203.234873152953, + 12744.92925722007, 12323.807424982171, 11936.428107289103, + 11569.488822691428, 11201.18369239885, 10804.031947327461, + 10350.906067224047, 9821.220367305325, 9207.85072025843, + 8518.067672883582, 7775.893847892552, 7017.1748211635895, + 6283.287507868112, 5613.992590313259, 5041.46056323771, 4584.483613612127, + 4247.038179479982, 4022.9806341771214, 3895.6691412761834, + 3846.5682162167836, 3858.8600610430813, 3918.5102916891765, + 4017.592977976759, 4150.240420902967, 4310.894797381595, + 4492.4690635905845, 4683.410294958147, 4869.173142750787, + 5033.902059332559, 5163.684547137932, 5249.082795047414, + 5288.3739650694015, 5286.635637577782, 5254.159989462979, + 5204.183902570541, 5147.970067739398, 5092.630247378988, + 5039.645205156305, 4985.25716818169, 4922.9938023717805, + 4846.725003188628, 4753.764070345569, 4646.70666335953, 4532.875338059796, + 4422.9754028931175, 4327.704814887563, 4254.734440800276, + 4206.238162214031, 4179.222211458236, 4166.192308326109, + 4158.496532995615, 4149.785064112371, 4138.162800022826, 4127.15680073441, + 4124.476062958823, 4138.810302488055, 4176.60116950931, + 4238.5348732704715, 4319.075425591624, 4408.131402776403, + 4494.873261923929, 4573.834029708849, 4650.235902879861, + 4743.268385135736, 4886.527019054064, 5122.916394212648, + 5498.920871750329, 6053.933756252208, 6808.992698516459, 7767.211786589459 + ], + "flow:branch126_seg0:RESISTANCE_73": [ + 0.762620938976332, 0.9910319926348229, 1.2450551056722041, + 1.5126262663109715, 1.7799744702368068, 2.034526198249945, + 2.2663977241425, 2.4694219850614316, 2.6405175547771362, + 2.780460194978155, 2.8914557234550067, 2.976192938649178, + 3.0375915857934883, 3.076928989108169, 3.0949309834714294, + 3.0918026478822114, 3.0674751532223974, 3.02327224296545, + 2.960933304984778, 2.883382327891618, 2.7943833018926956, + 2.6972571814556305, 2.5950852963330027, 2.4900192791832247, + 2.3833144725057225, 2.275825064812349, 2.1682872966329447, + 2.0618366394093277, 1.9581462376037237, 1.8592419766781256, + 1.7668622350339265, 1.681906536453701, 1.6036371642307963, + 1.5293212627228232, 1.4545821619219668, 1.3739391199376227, + 1.2820143551087266, 1.1747553798040096, 1.050872697286392, + 0.9118550652494003, 0.7625495683844914, 0.6101501881087528, + 0.4628672293777346, 0.32856204553203455, 0.21361591570972402, + 0.12176349800592323, 0.05366400193219543, 0.00819363882422182, + -0.01793876153268608, -0.02841744167988153, -0.0264673441113125, + -0.0149097649625215, 0.004696916891400991, 0.031186005492692962, + 0.06335506990340403, 0.09974976491848186, 0.1380053709019243, + 0.17517916849480303, 0.2081071631493646, 0.23403748881662687, + 0.25110595308096834, 0.25901402416608643, 0.25879287247627836, + 0.2524677107274668, 0.2426800127544386, 0.23162160609828722, + 0.22065883374149953, 0.21006537682114695, 0.19908553841943152, + 0.18644982276243316, 0.17097734144690638, 0.15217442269700787, + 0.1306193890724217, 0.10778354445171821, 0.0857964769493275, + 0.06676845491538813, 0.052194553941926854, 0.04245783679364609, + 0.03694743591795065, 0.03418166126167007, 0.032450307978599054, + 0.03053893177393211, 0.028115863039140203, 0.02591114306103751, + 0.025466718897526535, 0.028484399336337056, 0.03620607828139291, + 0.04871016711113405, 0.06485463584334514, 0.08263648269659257, + 0.0999260943475867, 0.11571704692063149, 0.13116090728751167, + 0.15018832508162672, 0.17958905065721162, 0.2279213914461246, + 0.3044366341866192, 0.41701018235218223, 0.5695254131389036, + 0.762620938976332 + ], + "pressure:branch126_seg0:RESISTANCE_73": [ + 7761.653778797618, 8888.59859534158, 10141.909352131199, + 11462.06408067317, 12781.118775272269, 14037.037636605577, + 15181.055888014058, 16182.746195074871, 17026.90527729266, + 17717.36062287244, 18264.995395677997, 18683.07571141535, + 18986.007141544582, 19180.09180623887, 19268.91086254191, + 19253.47613852041, 19133.448041949527, 18915.357718419455, + 18607.78703871316, 18225.162510463633, 17786.05507927554, + 17306.849820929205, 16802.749539917302, 16284.37005904116, + 15757.905044062813, 15227.568929005345, 14696.994210788414, + 14171.783129913067, 13660.190722415571, 13172.212393876083, + 12716.42503449874, 12297.266755521561, 11911.097776796774, + 11544.43461120225, 11175.683445741524, 10777.803147485585, + 10324.260573355892, 9795.06137606926, 9183.843378136782, + 8497.951879792125, 7761.301647334451, 7009.386672575647, + 6282.715330498902, 5620.074322782204, 5052.947893871626, + 4599.762269269166, 4263.769886762634, 4039.4261468685136, + 3910.49292470449, 3858.7927373144344, 3868.4142171485046, + 3925.437525368082, 4022.173861596104, 4152.866928398521, + 4311.584117475207, 4491.14991448897, 4679.897158443493, 4863.30692709324, + 5025.768560629713, 5153.704777524495, 5237.917940683512, + 5276.935140488385, 5275.844012250468, 5244.636642324829, + 5196.345654126448, 5141.785185791943, 5087.696562301309, + 5035.430084061939, 4981.257259344777, 4918.914592320141, + 4842.5757622227275, 4749.805068853495, 4643.455866288294, + 4530.787340336908, 4422.306549429702, 4328.425231267694, 4256.51985761873, + 4208.480400925817, 4181.292935150938, 4167.647030704981, + 4159.1048013482505, 4149.67436673568, 4137.719320309222, + 4126.8415728821265, 4124.64885278652, 4139.537621407972, + 4177.635191218049, 4239.328431832188, 4318.982743925262, + 4406.715626458204, 4492.019896624033, 4569.930014656637, + 4646.127633419461, 4740.005970355615, 4885.064603724454, + 5123.5288989110595, 5501.043274033761, 6056.46375195347, + 6808.950315217973, 7761.653778797618 + ], + "flow:branch127_seg2:RESISTANCE_74": [ + 0.7990729321809197, 1.0322887946494608, 1.2875627844357813, + 1.552152486709081, 1.8121936025126177, 2.0556929818088867, + 2.2738353989000233, 2.461879235602577, 2.617979609486724, + 2.744053293244055, 2.8430564941444025, 2.9177958292184014, + 2.9710885717336004, 3.00384051014706, 3.0163315577643997, + 3.0085598183427997, 2.9802922396764817, 2.932910988584016, + 2.868441620297718, 2.789968501702868, 2.701335672072403, + 2.605803793678483, 2.506219641762028, 2.4044159970116366, + 2.301328774294553, 2.1975814553276387, 2.093827398513135, + 1.991254951546606, 1.891645106440926, 1.7971033705425006, + 1.709302889262854, 1.6288976280709249, 1.5547410650390452, + 1.4835982774700973, 1.4106795410018154, 1.3302855659860542, + 1.2371897194640045, 1.1277844353050235, 1.001583576409851, + 0.861020264662513, 0.7117901446511687, 0.5617179835289301, + 0.4192199193834698, 0.29192364667593457, 0.18552193795221777, + 0.10288063134171703, 0.04373141278190125, 0.006136822124523409, + -0.013701601771551093, -0.019638780815499864, -0.014758019290828867, + -0.0015459275106961823, 0.018825691861709185, 0.045469962183526835, + 0.07732609387458167, 0.11294037554150745, 0.14981779913599788, + 0.18490289112420463, 0.21501679471217566, 0.2375738527584693, + 0.25100822778368476, 0.25543600187609405, 0.25234100932566406, + 0.24401308714006814, 0.23320105897076887, 0.22199253720198042, + 0.21145766672088187, 0.2014962150157564, 0.19101808996446054, + 0.17855590559661724, 0.1629308952545573, 0.14382184967569306, + 0.12208246498246843, 0.09946415728081466, 0.07826900375729662, + 0.06059602352965423, 0.04775599424464356, 0.03981821128023463, + 0.035843838186717165, 0.0341020107354886, 0.032810059406983234, + 0.030878807987540523, 0.02824182575936794, 0.02594339549784098, + 0.02577056254172735, 0.029492615308027124, 0.03822424332468836, + 0.051750684156124806, 0.06855820345426053, 0.08640058205576084, + 0.10312161595518789, 0.11799223503864682, 0.13273177398996497, + 0.1519983970435572, 0.1832824748551602, 0.23560027528985694, + 0.3181431803356165, 0.4382533958066598, 0.5988113357375949, + 0.7990729321809197 + ], + "pressure:branch127_seg2:RESISTANCE_74": [ + 8037.74073641368, 9216.47970528203, 10506.706692051534, + 11844.017926071409, 13158.339316825794, 14389.054089970716, + 15491.607600125457, 16442.034367115706, 17231.009833040473, + 17868.221909528602, 18368.612104726762, 18746.365855378768, + 19015.722457865468, 19181.26002338647, 19244.39331300365, + 19205.112742569185, 19062.24040028142, 18822.762148393816, + 18496.915716281448, 18100.290367056517, 17652.314963065324, + 17169.469814196884, 16666.143328154514, 16151.598897214255, + 15630.566899978527, 15106.1985894893, 14581.79622401155, + 14063.366049100363, 13559.909702408491, 13082.069013922019, + 12638.300534049962, 12231.909589344175, 11857.101333517194, + 11497.525551776564, 11128.973621706193, 10722.639720528741, + 10252.106966136324, 9699.141698365562, 9061.286842740281, + 8350.840085834425, 7596.588827260621, 6838.081654615217, + 6117.856111555453, 5474.464724521027, 4936.680377010177, + 4518.987825959388, 4220.0309361639065, 4030.0172357344045, + 3929.7482271013128, 3899.740043995007, 3924.4087939933447, + 3991.186444864362, 4094.1503743288363, 4228.818056848183, + 4389.827961681367, 4569.832620046841, 4756.221555182651, 4933.55153915151, + 5085.755730102173, 5199.765485102344, 5267.666618400037, + 5290.045841720547, 5274.402873489598, 5232.311197966501, + 5177.664147801228, 5121.013106776682, 5067.766890003041, + 5017.418894000345, 4964.45948468785, 4901.4720781019, 4822.498853964364, + 4725.916329760088, 4616.039327287408, 4501.719999195433, + 4394.593695071551, 4305.269451558004, 4240.372309830801, + 4200.252508340753, 4180.164901980861, 4171.361213106205, 4164.83132547047, + 4155.070234253586, 4141.742179807978, 4130.1252628118045, + 4129.25171613998, 4148.06402415961, 4192.196143201426, 4260.56260313833, + 4345.512562189216, 4435.692993023882, 4520.205830394376, + 4595.366147618658, 4669.863948759501, 4767.242914115385, + 4925.361496750903, 5189.790466054714, 5606.985667749714, + 6214.0566878609225, 7025.561954074735, 8037.74073641368 + ], + "flow:branch128_seg0:RESISTANCE_75": [ + 0.9351004941589702, 1.2027368718681204, 1.4927231655450852, + 1.790451650740427, 2.080230988187321, 2.348844358199768, + 2.586951582221679, 2.790047494408725, 2.9566151754878387, + 3.0893719411683933, 3.192079137428928, 3.267809078147084, + 3.319827428004578, 3.349010956670899, 3.355540534802367, + 3.3395893368499703, 3.3008607491201434, 3.2412387864515066, + 3.163261398664924, 3.070432326001921, 2.967280928713405, + 2.857367473646611, 2.7437321160682995, 2.628304244222033, + 2.5119473557727647, 2.3953002781245285, 2.279109906527985, + 2.1647706444758787, 2.0543531094018666, 1.9502291042474844, + 1.8541440657331876, 1.766557079416095, 1.6858374472267306, + 1.6079169404576055, 1.527108832094001, 1.4368651891315496, + 1.3314343513965083, 1.2070436441269243, 1.0637581778484737, + 0.9048979071289583, 0.7373866532049641, 0.5704607483781643, + 0.41367896976116386, 0.2754542106368606, 0.1617708033995769, + 0.07546627304937271, 0.015559266584275384, -0.02046895895076997, + -0.037105667501630614, -0.03888749864078925, -0.029106548743306714, + -0.010500182252830332, 0.015706535854384418, 0.04860905002577817, + 0.08688595648109147, 0.12880288477329072, 0.1714097581655571, + 0.2111646498094646, 0.244515471560434, 0.26872148964154574, + 0.28225119575232693, 0.28554477616904816, 0.2805923589200652, + 0.2700961003800292, 0.2572380291261458, 0.24428396698272495, + 0.23225012329017425, 0.2208397910121993, 0.20868497565969799, + 0.19409097903850647, 0.1758198188342278, 0.15365740842125034, + 0.12878678878562383, 0.10332921243332636, 0.07993222778302443, + 0.06090033008348393, 0.047552416838145845, 0.03973348017696505, + 0.03618635650555379, 0.03486777578778768, 0.033755491917737086, + 0.031755045387791454, 0.028985160490462417, 0.026798855920690222, + 0.027314465683320938, 0.03248753146543945, 0.043424277906495924, + 0.05964774636851888, 0.07920463027360697, 0.0994787547218736, + 0.11810466052748934, 0.134557052044938, 0.15124879091531399, + 0.1739641202046922, 0.2116254817348191, 0.27463508336839915, + 0.37317058457758556, 0.5152609192253912, 0.7031483412929428, + 0.9351004941589702 + ], + "pressure:branch128_seg0:RESISTANCE_75": [ + 8457.16683746827, 9733.144800324764, 11115.677785673823, + 12535.122291968657, 13916.668596840615, 15197.304449104962, + 16332.49979605091, 17300.775897061852, 18094.900717462868, + 18727.82927851437, 19217.49409978033, 19578.542684849017, + 19826.54435282277, 19965.679173639557, 19996.80946270495, + 19920.760843146454, 19736.119185316522, 19451.866681532792, + 19080.10321175172, 18637.533139460877, 18145.750554056747, + 17621.72931416739, 17079.963604616438, 16529.65193908001, + 15974.911112146665, 15418.786784860675, 14864.839840419465, + 14319.718209658535, 13793.293727780048, 13296.87415612626, + 12838.78100468742, 12421.203000791864, 12036.365660198948, + 11664.873375244837, 11279.614217373062, 10849.370389184976, + 10346.720388064396, 9753.677683561018, 9070.552695344326, + 8313.173573916365, 7514.550194064189, 6718.71751312593, 5971.247770017468, + 5312.250110306843, 4770.25532014101, 4358.791528244924, 4073.180055228964, + 3901.412591414684, 3822.0957449266707, 3813.6007216172147, + 3860.2321871594436, 3948.939536339307, 4073.882173322453, + 4230.747556737918, 4413.235787752521, 4613.078115724867, + 4816.209812469878, 5005.744456779328, 5164.747182648076, + 5280.151321294616, 5344.655283682129, 5360.357693297009, + 5336.746645626054, 5286.704888581782, 5225.402999409513, + 5163.643465948628, 5106.271147986526, 5051.871470856731, + 4993.922410773292, 4924.344357752116, 4837.235131510025, 4731.57405683552, + 4613.001376808696, 4491.63033341276, 4380.083326736706, + 4289.3472232824015, 4225.709973006655, 4188.432563418189, + 4171.521365938278, 4165.234926282659, 4159.932023445708, + 4150.394733672426, 4137.1890845790795, 4126.765701648104, + 4129.2239126737595, 4153.886919978257, 4206.028738529181, + 4283.375429647289, 4376.614447073215, 4473.272966492842, + 4562.073470929627, 4640.511571132004, 4720.090779095656, + 4828.387938997339, 5007.941510058731, 5308.344855153272, + 5778.120784636878, 6455.547886652638, 7351.316287451455, 8457.16683746827 + ], + "flow:branch129_seg0:RESISTANCE_76": [ + 0.7989233204113203, 1.0246184733176378, 1.2672883714864542, + 1.5144233385002734, 1.7529835127911446, 1.9723319137406583, + 2.165262298573339, 2.328654930289816, 2.4619255262813784, + 2.5678387609234945, 2.649710605846622, 2.710164910469678, + 2.7517228716670576, 2.7748175045254575, 2.779365356723356, + 2.7652892480548794, 2.732294365389495, 2.6820320147416337, + 2.61671488977293, 2.539430306849287, 2.4540020471423865, + 2.363371447412557, 2.269976927881051, 2.175244528886854, + 2.079743249219669, 1.9839041547752971, 1.8883310691881523, + 1.794249511874766, 1.7034781130708065, 1.6180590137586932, + 1.5394356302592855, 1.4678711795045145, 1.4017772239845365, + 1.3375137213229085, 1.270114759932168, 1.1940200535605316, + 1.104518706983231, 0.9987562664571501, 0.8772229054106278, + 0.7431852444438348, 0.6028980851755483, 0.46433632763671356, + 0.33554359538690076, 0.2233434470788054, 0.13232156352096966, + 0.06432182043913952, 0.018032334459012186, -0.009046844293541132, + -0.0209010168479898, -0.02129207177914449, -0.012846776637085076, + 0.002394841608027097, 0.023655567097192305, 0.05033326716918358, + 0.08142073843167859, 0.11543601657864196, 0.14983401064282917, + 0.18159552996631725, 0.2077409749858817, 0.2260574451567592, + 0.23543891748175966, 0.2364760471408253, 0.2310164225094258, + 0.22146297000750462, 0.21049156884019013, 0.19988671369011285, + 0.19031825279636605, 0.18131754856608087, 0.17155830883701392, + 0.15953333560727823, 0.1442261902006301, 0.1255733161545572, + 0.10472451757946255, 0.08360409266333312, 0.06450869763555296, + 0.049339963748863645, 0.039079970726382404, 0.03342449732066301, + 0.031144319304273374, 0.030407528956068137, 0.02951659339444626, + 0.027642802865913887, 0.025046350606023397, 0.023037722007883153, + 0.023512905108778823, 0.028132668655415218, 0.037731751377801326, + 0.051732815875038224, 0.06831850677163505, 0.0851642374714347, + 0.10029460074647428, 0.11344102300060482, 0.12693232748055358, + 0.1459843718184813, 0.17840537723429536, 0.23307553223015634, + 0.31845006252653835, 0.4409013733327073, 0.6017728360142705, + 0.7989233204113203 + ], + "pressure:branch129_seg0:RESISTANCE_76": [ + 8524.81104432956, 9803.348783281996, 11178.046551139516, + 12578.038433433452, 13929.455076255874, 15172.039176895516, + 16264.968177907727, 17190.56911893894, 17945.53210451366, + 18545.51870502642, 19009.31352801639, 19351.780386286882, + 19587.201577484666, 19718.030083531372, 19743.79315638125, + 19664.053578820567, 19477.141267515803, 19192.410685913877, + 18822.396495547004, 18384.587997514744, 17900.646483477707, + 17387.234296435407, 16858.164813574494, 16321.516393544596, + 15780.512350700004, 15237.594625014426, 14696.183809683287, + 14163.222334810542, 13649.012536798016, 13165.122915370503, + 12719.730262166968, 12314.325671598033, 11939.910823247208, + 11575.86528513028, 11194.057724823355, 10762.989744063376, + 10255.97464953169, 9656.842280781018, 8968.369415330479, + 8209.061092665303, 7414.350062741739, 6629.41324018396, 5899.816850701318, + 5264.2155890849235, 4748.586823023064, 4363.375901788628, + 4101.151153138982, 3947.750641301898, 3880.5980827300805, + 3878.3828003855265, 3926.224450579036, 4012.5665092282566, + 4133.006135624171, 4284.132315744895, 4460.239355288619, + 4652.9320926018945, 4847.792872680678, 5027.718318923656, + 5175.829333842503, 5279.59008393528, 5332.735072917076, 5338.610296165013, + 5307.6821346964525, 5253.562897292776, 5191.411139663223, + 5131.33582412853, 5077.131565867725, 5026.143585455291, 4970.858586480256, + 4902.7384612310825, 4816.02519855789, 4710.358758225741, + 4592.2526516176795, 4472.607812239177, 4364.4345401558585, + 4278.505363226174, 4220.383652982464, 4188.346030163619, + 4175.429077327268, 4171.255242604876, 4166.208192529409, + 4155.593379252427, 4140.884768283558, 4129.506112458692, + 4132.197971453377, 4158.368414032014, 4212.746141519104, + 4292.0606022627735, 4386.01668180118, 4481.4458576721545, + 4567.157669388499, 4641.630677637316, 4718.05740503129, 4825.985100316562, + 5009.646461338814, 5319.3467604214475, 5802.9839033713915, + 6496.656851300701, 7407.975652392682, 8524.81104432956 + ], + "flow:branch130_seg0:RESISTANCE_77": [ + 0.43210272668360367, 0.5607949660501025, 0.7056447262790544, + 0.8606439178479841, 1.018724562490277, 1.1731896389017364, + 1.318464362675905, 1.4506889942962207, 1.5674704013464962, + 1.6683587628399108, 1.7536754799607206, 1.8240947812078538, + 1.8805259766272333, 1.9232123696724663, 1.9522457828135453, + 1.967572443002708, 1.9690876813051366, 1.9574309146064246, + 1.9335556974188761, 1.8990391538783689, 1.855885411413301, + 1.8059525329245982, 1.750999576644956, 1.6923412514393963, + 1.6308779174786396, 1.5673152504925085, 1.5023131179707945, + 1.4367345668605205, 1.3716991209342788, 1.308486001053445, + 1.2482023680124574, 1.1914923361406962, 1.138123078604958, + 1.086805056746949, 1.0353488395426085, 0.9809374625352041, + 0.9207541796554153, 0.8525891785704437, 0.775603696574658, + 0.6903847270005379, 0.5992478028886685, 0.5057634741807155, + 0.41412999465200834, 0.3284843925268849, 0.25229657393177973, + 0.18780868307450807, 0.13579634542487032, 0.09609089615847065, + 0.06742680467732357, 0.04828307917986535, 0.03724529325688364, + 0.0330322902881564, 0.03487937828312721, 0.042121358328690135, + 0.05403420743533679, 0.06970424841067331, 0.08772796753203708, + 0.10639805242659876, 0.1238780284268521, 0.13853812779992855, + 0.14919390734396615, 0.15545847807922186, 0.15764051586189412, + 0.15657518720158814, 0.1534437874631961, 0.1492566558198338, + 0.14465479261773384, 0.13976387601802617, 0.13422448229885625, + 0.12743617244314207, 0.1188520784511484, 0.10826842667191817, + 0.09601027251091941, 0.08285782285281304, 0.06992232996284725, + 0.05830747341331319, 0.04881921786867528, 0.041717861195125924, + 0.03676512057919747, 0.03328141894783309, 0.030473883438058277, + 0.027780142538920447, 0.025066959886179668, 0.022722369402788045, + 0.021531673406419535, 0.022353596221141143, 0.025814472117641325, + 0.03195609525303269, 0.040203730946455685, 0.049553370348608634, + 0.05894521244249842, 0.06789540720360054, 0.07703245135457767, + 0.08843056632966373, 0.10566965370535389, 0.13331677767168904, + 0.17634625301037074, 0.23912028874746205, 0.3241224719817189, + 0.43210272668360367 + ], + "pressure:branch130_seg0:RESISTANCE_77": [ + 7143.4405149514905, 8079.942569751437, 9134.0239872437, + 10261.963497125444, 11412.326947636244, 12536.379665704178, + 13593.553571409171, 14555.761081490207, 15405.587210893018, + 16139.758582135612, 16760.61405318606, 17273.060030038676, + 17683.713622867705, 17994.345367218753, 18205.62346136275, + 18317.156595225584, 18328.183085950437, 18243.356013087265, + 18069.614456758773, 17818.435255049335, 17504.402577633948, + 17141.03767282742, 16741.141325335517, 16314.280759721412, + 15867.00795731739, 15404.45816772555, 14931.43329091382, + 14454.213777383755, 13980.946476693589, 13520.940364824444, + 13082.252325113583, 12669.569620724335, 12281.197955180245, + 11907.753269200175, 11533.302926418728, 11137.347687604277, + 10699.389902745022, 10203.348619325301, 9643.120104896432, + 9022.975949297312, 8359.766441722837, 7679.4747135070775, + 7012.651738869788, 6389.40294959092, 5834.979085212853, 5365.696379473637, + 4987.19911092339, 4698.259894325857, 4489.66937866454, 4350.359204615593, + 4270.03649636062, 4239.3781912715685, 4252.819574459877, + 4305.519948832687, 4392.21055054896, 4506.242489416767, 4637.402301969446, + 4773.265761593087, 4900.468718994979, 5007.151245105653, + 5084.694067327178, 5130.281768612713, 5146.160603864808, 5138.40813577252, + 5115.620729913084, 5085.150692193409, 5051.662625112677, + 5016.071097076265, 4975.760557560556, 4926.361571578266, + 4863.8945440273355, 4786.876600386545, 4697.67319063674, + 4601.961932591168, 4507.8294834945, 4423.307393597005, 4354.2607218026415, + 4302.583673136896, 4266.542247589089, 4241.191117232336, + 4220.760493079933, 4201.157959939167, 4181.413947853845, + 4164.352205699312, 4155.687431096505, 4161.668618529895, + 4186.853644483556, 4231.546647841134, 4291.565245793532, + 4359.603198624698, 4427.94826327336, 4493.079430668477, 4559.570313602131, + 4642.515160529652, 4767.965155258801, 4969.155130126251, + 5282.283507330704, 5739.094374444849, 6357.660961313069, + 7143.4405149514905 + ], + "flow:branch131_seg0:RESISTANCE_78": [ + 1.0303736246337971, 1.3049665596553748, 1.5922335462688433, + 1.8777190480275887, 2.1465808728353846, 2.387800797009027, + 2.594983387452465, 2.7670757745042494, 2.904574189084199, + 3.0119433073812423, 3.093885359536312, 3.152393025758162, + 3.1903117743856964, 3.207341549358306, 3.2026725846146182, + 3.176745187481732, 3.128942927663497, 3.0620705779078032, + 2.9794552494053064, 2.884581960191926, 2.782375291892006, + 2.675778533408504, 2.5670692781192583, 2.457520071698141, + 2.347300017534358, 2.23686675899716, 2.1271067818645872, + 2.0197523925026126, 1.9171990748499836, 1.8218776319730505, + 1.7350629565900861, 1.656280432525798, 1.5827838490266761, + 1.5092153377646451, 1.429221044084373, 1.3362269598846586, + 1.2254641024470232, 1.094625399937384, 0.946177656809139, + 0.7855259527035894, 0.6211180262502666, 0.4631348052144017, + 0.32070032078156163, 0.20086518407399803, 0.10746767375630722, + 0.041475085148851884, -0.0005073809962336292, -0.022001531068528243, + -0.02789977024500914, -0.02274028393243962, -0.008656710751124659, + 0.01235212617844475, 0.039830721643667, 0.07336357866059992, + 0.11135336891973747, 0.15181813924243207, 0.19135267946206694, + 0.22617493207910142, 0.2529567888135763, 0.26967072056577873, + 0.27566810733508706, 0.27243296939440254, 0.2629346532117971, + 0.2500247856184166, 0.23683924042896648, 0.22499772907798898, + 0.21456337754862925, 0.20440747521899677, 0.1926134460096144, + 0.1773957926955727, 0.15794193277221089, 0.13468356443117907, + 0.10962254230220819, 0.0853702565486597, 0.06466454561802809, + 0.04943099588057207, 0.04028278713248924, 0.03616008549048043, + 0.0351366944647161, 0.03493033176502464, 0.03366304699947817, + 0.03090793414593077, 0.02759451948200107, 0.025753306263086535, + 0.02782202490018687, 0.035505207801432556, 0.04924408546687627, + 0.06765441618512745, 0.0879115806577791, 0.10721652583332829, + 0.12361300330668204, 0.13779235314100083, 0.15392258038456708, + 0.17957040608708155, 0.2250418569652711, 0.3010829568720406, + 0.416685878954464, 0.5783353884105682, 0.7844886752322906, + 1.0303736246337971 + ], + "pressure:branch131_seg0:RESISTANCE_78": [ + 9224.601358335101, 10617.21582354713, 12074.10749814302, + 13521.964265930226, 14885.513063502962, 16108.87431158156, + 17159.613189364267, 18032.390005498848, 18729.721424723866, + 19274.250318905983, 19689.824328963252, 19986.549451552222, + 20178.856649249403, 20265.224169827812, 20241.545236358117, + 20110.052893739332, 19867.62087891905, 19528.47376435407, + 19109.485193101205, 18628.32964221124, 18109.98242142637, + 17569.370596154273, 17018.045117199996, 16462.459775929077, + 15903.4721902766, 15343.40332591446, 14786.749048395806, + 14242.29485288731, 13722.189579212614, 13238.761190259827, + 12798.475380570284, 12398.925105872864, 12026.182794361835, + 11653.075696906584, 11247.379860249996, 10775.754809789427, + 10214.014364924198, 9550.458073098343, 8797.596480383914, + 7982.841770905424, 7149.037155515661, 6347.815817253456, + 5625.450825049254, 5017.699774183724, 4544.02872407828, 4209.343370704905, + 3996.4267869831638, 3887.417921530149, 3857.504649377673, + 3883.671292271757, 3955.0969745553525, 4061.644545428216, + 4201.003883007573, 4371.067769531084, 4563.735259104654, + 4768.954757845357, 4969.4565390767075, 5146.059672372687, + 5281.8854578785495, 5366.651160706461, 5397.067265795815, + 5380.660070567725, 5332.48879292719, 5267.015628611796, 5200.144348907924, + 5140.08941706473, 5087.1709802748255, 5035.664715226837, + 4975.850591899778, 4898.6733545100005, 4800.011942367867, + 4682.055738627936, 4554.957268570573, 4431.960353328767, + 4326.950104058405, 4249.692247008146, 4203.296560125823, 4182.38803259228, + 4177.197843901024, 4176.151263148144, 4169.724152793303, + 4155.7514334557145, 4138.9472531519805, 4129.609430378067, + 4140.101060464082, 4179.0667812911815, 4248.744319685139, + 4342.113411157064, 4444.848830284206, 4542.755012391486, + 4625.910726889825, 4697.822146187713, 4779.627556748558, + 4909.702036165707, 5140.313214279844, 5525.960192678905, + 6112.247314378197, 6932.062453268461, 7977.581156276519, 9224.601358335101 + ], + "flow:branch132_seg2:RESISTANCE_79": [ + 1.0067890538148327, 1.2835371976110777, 1.577156095357424, + 1.8727421217814135, 2.1546451254895618, 2.4106378259949897, + 2.632949433484105, 2.8190940987369637, 2.9687664116938994, + 3.0859950665341414, 3.1752346920972774, 3.239136848454306, + 3.2808980019509884, 3.300706557982198, 3.298245561848229, + 3.2738024081703667, 3.2269047133458435, 3.160056670981443, + 3.0762497655394516, 2.9791329064352237, 2.873576245344007, + 2.762835895368698, 2.649588588371145, 2.5353780764517744, + 2.420639535328966, 2.305878395968824, 2.191887250845567, + 2.080258197733418, 1.973277061224563, 1.8733951127953958, + 1.7821050916751726, 1.699335317107375, 1.6227343825413139, + 1.547355766626243, 1.4669608441634017, 1.374801140159771, + 1.2655305349653014, 1.1361557565169709, 0.9881781991721825, + 0.8262211988103065, 0.6583513858601308, 0.4946111586330747, + 0.34455827452209253, 0.21600638802329802, 0.11384965732121549, + 0.03978135411903292, -0.008677941575207156, -0.03473550483604661, + -0.04336039969372308, -0.03921751674602983, -0.02504143848417677, + -0.0032394120053507516, 0.02543965017093166, 0.06035381321254416, + 0.10001633797407099, 0.14254650987670395, 0.18465941768551303, + 0.22260700759264762, 0.25289399678894375, 0.27314971255088194, + 0.2823362142355168, 0.281572269301708, 0.27349033660883165, + 0.2609995341979883, 0.24737488005937966, 0.2345698290775099, + 0.22307979516422397, 0.2121076583275578, 0.19990984182760477, + 0.1846783281421278, 0.1653689513063008, 0.14214024766264644, + 0.11668564136926138, 0.09146802765073588, 0.06927071894555466, + 0.0522421468139694, 0.041318214695781, 0.03579077799989508, + 0.03397218976090969, 0.03359097357718944, 0.03263695666778459, + 0.03036791820376117, 0.02737590807991448, 0.02545352633283654, + 0.026976569945978777, 0.03381652781141076, 0.04673495321040211, + 0.06469923277679679, 0.08519349847292132, 0.10539968566063858, + 0.1231019918941784, 0.13845087819826105, 0.1549299941586802, + 0.17950738481827538, 0.22213946703382037, 0.2936670791653543, + 0.40389775425714985, 0.5600645381103699, 0.7621895932966429, + 1.0067890538148327 + ], + "pressure:branch132_seg2:RESISTANCE_79": [ + 8944.381724687875, 10303.77792341031, 11746.043833469403, + 13197.972345814105, 14582.689389956011, 15840.134152526773, + 16932.136252367694, 17846.48511442728, 18581.680554211158, + 19157.51165314889, 19595.859698060285, 19909.749241275676, + 20114.88143309067, 20212.181727147312, 20200.093231290768, + 20080.027637575582, 19849.664581842713, 19521.30474738938, + 19109.642406599072, 18632.60112535619, 18114.10325263738, + 17570.14292561722, 17013.86834131009, 16452.86246200185, + 15889.26288547085, 15325.552305637322, 14765.62396341631, + 14217.298296670868, 13691.80335274736, 13201.179859656952, + 12752.760202745032, 12346.19228372254, 11969.925914455198, + 11599.663615549412, 11204.761050013023, 10752.06948150097, + 10215.328590321495, 9579.835323336107, 8852.964580171016, + 8057.426342304756, 7232.844169957006, 6428.546661698783, + 5691.481843594753, 5060.030649567158, 4558.233349374364, + 4194.407350624399, 3956.373658850057, 3828.3780309161107, + 3786.012257028433, 3806.362237532703, 3875.9956111756455, + 3983.087899178786, 4123.960418035014, 4295.459962238959, + 4490.283619059038, 4699.193255172146, 4906.053276009691, + 5092.453115093767, 5241.223825601243, 5340.72058330833, 5385.844988835848, + 5382.092465603687, 5342.39374014768, 5281.038498217691, 5214.113738431161, + 5151.214896941488, 5094.775463561177, 5040.87995805561, 4980.963872782935, + 4906.14616480918, 4811.297855764519, 4697.197681500362, 4572.163798488377, + 4448.294030982174, 4339.260103376473, 4255.61518381961, 4201.956461513959, + 4174.805506389222, 4165.872539738727, 4163.999993011105, + 4159.313829836271, 4148.1682365165225, 4133.471382065745, + 4124.028578209415, 4131.509819708612, 4165.107923002615, + 4228.563663445802, 4316.80480942192, 4417.473332436228, 4516.726804119421, + 4603.681128265535, 4679.07537449309, 4760.021346840401, 4880.746317128795, + 5090.156540129613, 5441.502578811226, 5982.959365645971, + 6750.055865100998, 7742.90094047422, 8944.381724687875 + ], + "flow:branch133_seg2:RESISTANCE_80": [ + 0.6984567292640412, 0.8962083925703149, 1.109274007432903, + 1.3269402596565485, 1.5377047576929768, 1.7320960478576257, + 1.903593021148243, 2.049294343771899, 2.1682731876019514, + 2.262811510804842, 2.3357466246175167, 2.3892278051526157, + 2.4256372710801326, 2.4454329182532732, 2.4486656820771473, + 2.435467957131299, 2.405593514728215, 2.360571755153118, + 2.3023244230477187, 2.2334836267061045, 2.157441994440252, + 2.0767313540391017, 1.9935247582364473, 1.9091488640309355, + 1.824151078860486, 1.7389789681905503, 1.6541880872290584, + 1.5708481712824616, 1.4905260902682107, 1.4149832176926775, + 1.3454452382019966, 1.28215318829776, 1.2237612076102589, + 1.167109235161013, 1.1079256975079024, 1.041372009513673, + 0.9633127555119659, 0.8711494790791781, 0.765225702253051, + 0.6482195669879562, 0.5254459255153188, 0.40382232498507986, + 0.2903324916758951, 0.19100382218350145, 0.11001401612991496, + 0.04917276241005327, 0.007461120666548984, -0.017064921647850072, + -0.027820262905269927, -0.02811155488629403, -0.020226361119322835, + -0.006112184520248552, 0.01346503678132302, 0.03787790708256339, + 0.06612311168158319, 0.09690821089290441, 0.1279896139411843, + 0.15673183211996286, 0.18054395014937885, 0.19749280524900026, + 0.20655043374799753, 0.2081851359714533, 0.20397487373252446, + 0.195937762067061, 0.18642396368282924, 0.17701770712290016, + 0.16835565715645753, 0.16011810561343404, 0.15122543748308165, + 0.14041694554776984, 0.1268248297679091, 0.11037595174918434, + 0.09204368180876961, 0.07344711601075796, 0.05655602737442362, + 0.0430243337829491, 0.033737038509105206, 0.02846086014587359, + 0.02619676698877559, 0.025395320307105226, 0.02458117332284, + 0.02303131474465167, 0.02093014737453864, 0.019360408207384532, + 0.01992656766157382, 0.024041444585057442, 0.0324456081468597, + 0.04466969776871903, 0.059169911491483373, 0.07398735931298644, + 0.08741616024824755, 0.09920861741642742, 0.11134730164723174, + 0.12830549854840842, 0.1568242806710854, 0.2045915245995758, + 0.2790247289693205, 0.38580981201668263, 0.526124255813067, + 0.6984567292640412 + ], + "pressure:branch133_seg2:RESISTANCE_80": [ + 8531.04898461565, 9814.192502808388, 11196.703062212653, + 12609.065598134826, 13976.644990383651, 15237.984186209167, + 16350.769919529204, 17296.176418725623, 18068.189810219323, + 18681.61694711639, 19154.86818036866, 19501.88943420573, + 19738.13811815938, 19866.585363224043, 19887.561671979678, + 19801.926107979747, 19608.080976726564, 19315.950038303334, + 18938.002842343183, 18491.31824745226, 17997.90986886579, + 17474.20587898064, 16934.306480462295, 16386.819900924216, + 15835.298081695393, 15282.645123385464, 14732.465835441444, + 14191.70136769595, 13670.518607975931, 13180.34651197273, + 12729.138131927435, 12318.457472003112, 11939.5717004202, + 11571.97625254526, 11187.954336099028, 10756.11001209274, + 10249.609969905368, 9651.593706512527, 8964.290219985405, + 8205.077065749318, 7408.440518543418, 6619.266197223372, + 5882.869134580639, 5238.3590642280205, 4712.84366304328, + 4318.065388898247, 4047.4126831687304, 3888.271507329916, + 3818.4837432743734, 3816.5936483386167, 3867.7579981226822, + 3959.3401062826547, 4086.3700598989262, 4244.776900902335, + 4428.050460251003, 4627.804534879177, 4829.481224677574, + 5015.979736689892, 5170.488499817533, 5280.4638759952, 5339.235757375969, + 5349.842786045831, 5322.523821383541, 5270.373727846486, + 5208.641914692465, 5147.607903986635, 5091.4027976281195, + 5037.952117661706, 4980.250608202198, 4910.117967412449, + 4821.923334963561, 4715.192140603993, 4596.240254412416, + 4475.5734419800665, 4365.972892803579, 4278.1703194559195, + 4217.908208215327, 4183.672875098944, 4168.981941983424, + 4163.781626104566, 4158.49890226675, 4148.4423952545285, + 4134.808632349471, 4124.623126933683, 4128.296743740543, + 4154.996785420351, 4209.528554305939, 4288.846528687793, + 4382.933500901817, 4479.07889766075, 4566.213835436185, 4642.731093121548, + 4721.4949008677395, 4831.530892829436, 5016.579604004058, + 5326.525059855145, 5809.496894976611, 6502.389105646322, + 7412.841973935482, 8531.04898461565 + ], + "flow:branch134_seg2:RESISTANCE_81": [ + 0.5255024007223444, 0.6771399076291391, 0.8419478110241333, + 1.0115988139393304, 1.1771077800836125, 1.3308744587956214, + 1.467476684897873, 1.5842006781338278, 1.6801021641013278, + 1.7567073293478388, 1.8160726417424584, 1.8600269615708254, + 1.890433381066574, 1.907794119911772, 1.912263535033686, + 1.9038677751139848, 1.8824588240238114, 1.8490670320920786, + 1.8050647749490458, 1.7525016538789162, 1.693933005600451, + 1.6314109560351342, 1.566720161059372, 1.5009667966267288, + 1.4346672553941269, 1.3681827268402456, 1.3019186034949128, + 1.2366548458703355, 1.173561223758874, 1.1139967656778187, + 1.0589854979679665, 1.008851229345359, 0.9627114728757692, + 0.9183108453932315, 0.8724383069874162, 0.8213566359351958, + 0.7617325651759943, 0.691363261788106, 0.6101771698127223, + 0.5199680376192792, 0.42464226014477324, 0.3294124091918056, + 0.23973940689476095, 0.16046418705756912, 0.0950973125057145, + 0.045270648377059804, 0.010528471404511328, -0.010520056502955044, + -0.02046640146643357, -0.021851051327309273, -0.016606641808757434, + -0.006312433808321032, 0.008350211717997774, 0.02684226057655873, + 0.04845161595761708, 0.07221571821430658, 0.09646823765803259, + 0.11920567128367335, 0.13838991588466282, 0.15242093590036462, + 0.16038505447913776, 0.1624976193036723, 0.15984037772360102, + 0.15396114052310378, 0.14667884481891807, 0.13930473368140947, + 0.13245861467559902, 0.12599794520112245, 0.11915395346355806, + 0.11095621291791585, 0.10066885237719614, 0.08814606325344741, + 0.07402689842577229, 0.05950238687747854, 0.04608844742872991, + 0.03511967158918632, 0.027377458981315186, 0.02280698446319341, + 0.02072189325761741, 0.019950269341817612, 0.01933071475042495, + 0.018208874275746495, 0.016617194531516177, 0.015305374099720185, + 0.015475944274810085, 0.01826409326011077, 0.024336410993157444, + 0.033456519067382916, 0.0445499049773136, 0.05611750514557581, + 0.06677707967661038, 0.07616144015838425, 0.08555484237180352, + 0.09816663934767304, 0.11901652982970382, 0.1540030653713606, + 0.20902879582720107, 0.288685828413637, 0.39443466478328043, + 0.5255024007223444 + ], + "pressure:branch134_seg2:RESISTANCE_81": [ + 8273.86801840377, 9507.412009402275, 10848.094819671083, + 12228.175378114598, 13574.56120842995, 14825.425631158709, + 15936.66030259805, 16886.189105851605, 17666.330537586902, + 18289.499852335415, 18772.426048313722, 19129.986576765536, + 19377.337359707486, 19518.56386440695, 19554.921756853073, + 19486.623751893254, 19312.4657647991, 19040.8295111684, + 18682.879021237688, 18255.28743478381, 17778.841958868587, + 17270.236270741498, 16743.988226685244, 16209.096370189101, + 15669.761463135383, 15128.921717316965, 14589.874928439986, + 14058.965935737646, 13545.710607201003, 13061.164396690368, + 12613.657575291569, 12205.824268980783, 11830.485604423466, + 11469.294443048644, 11096.129549635285, 10680.589294048264, + 10195.558145065512, 9623.11645095196, 8962.682116783944, 8228.84696464834, + 7453.388818510296, 6678.711017463881, 5949.237186122762, 5304.34745494721, + 4772.599624488911, 4367.268625706522, 4084.6472313503364, + 3913.4212223684117, 3832.5094854744616, 3821.2456065677075, + 3863.907939785316, 3947.6494802528214, 4066.927478487447, + 4217.356987756217, 4393.145227904745, 4586.461948406037, + 4783.751855346875, 4968.716810203831, 5124.777208004633, + 5238.917045707102, 5303.703725578355, 5320.889062491742, + 5299.272877613794, 5251.446334773137, 5192.206162009719, + 5132.219087121842, 5076.527133768448, 5023.9707433961985, + 4968.296094989421, 4901.608942212258, 4817.923104604549, + 4716.052455388214, 4601.195575409296, 4483.041272373973, + 4373.921274689019, 4284.692245529399, 4221.710731032837, + 4184.530738477923, 4167.568894539778, 4161.291872026934, + 4156.251906263203, 4147.125934697016, 4134.177904726464, + 4123.5064801962135, 4124.89403805586, 4147.57513125624, 4196.972349687411, + 4271.162797299643, 4361.405507089336, 4455.5058650344445, + 4542.219596864924, 4618.559690538262, 4694.973337080984, 4797.56804925097, + 4967.17817831287, 5251.787385913424, 5699.411859163478, 6347.40756874849, + 7207.655434331226, 8273.86801840377 + ], + "flow:branch135_seg0:RESISTANCE_82": [ + 0.8961448829856461, 1.1528075000843176, 1.431091896806186, + 1.7169649649168426, 1.995319434737329, 2.253454719392908, + 2.482400864449866, 2.6778194587256627, 2.838219358386507, + 2.966211216307684, 3.065360784835569, 3.138625346465811, + 3.1891695154203354, 3.2178615332229046, 3.22494380271541, + 3.210606419627649, 3.1745840112691552, 3.1186612342794917, + 3.0451871113511366, 2.9574641527232974, 2.85975565332889, 2.7554105208247, + 2.647330088507588, 2.5373596788701596, 2.4263461892015474, + 2.31492230070201, 2.203807283941245, 2.094331635909518, 1.988465339162576, + 1.8884741958287192, 1.7960410252373327, 1.711654550981784, + 1.6338166177109428, 1.558710012150054, 1.480960516536557, + 1.3943294715749055, 1.2932844777923542, 1.174138050497358, + 1.036819228532214, 0.884338091240714, 0.7231894026164071, + 0.5621220770274354, 0.41027855023980686, 0.275802531611995, + 0.1646062837285618, 0.07958398235974905, 0.019996097929413283, + -0.01640241435962831, -0.033852644229622135, -0.03666389216380296, + -0.02803329878841187, -0.010655104629319356, 0.014254481901628107, + 0.045763903460902214, 0.08257533137910054, 0.12301687688324087, + 0.16424621837732845, 0.20285934164464048, 0.23542666001325077, + 0.259276836823031, 0.2728821467223917, 0.27660788482171816, + 0.27230144977126186, 0.2625236200513332, 0.2503248411736386, + 0.23789895642532927, 0.22626870414042757, 0.21520192420216913, + 0.20342663929452687, 0.18933726073542062, 0.17173618309631414, + 0.15039351525121844, 0.1264070542489897, 0.10177930871397327, + 0.07904322676537422, 0.06042634893330849, 0.04723223514265252, + 0.039359531110212766, 0.03565325798773972, 0.034173754041259274, + 0.032981783839270834, 0.031004462932860456, 0.02831490820869385, + 0.02617322864049622, 0.026589299505483145, 0.031442174282924285, + 0.041822634476725636, 0.057313425838866845, 0.07608447557669616, + 0.0956450535656076, 0.11371121141569984, 0.12973098803226857, + 0.14594448852257094, 0.167822420135127, 0.20386808566581094, + 0.2640407833112128, 0.3581784354253008, 0.4940390673459585, + 0.6738688060155668, 0.8961448829856461 + ], + "pressure:branch135_seg0:RESISTANCE_82": [ + 8400.893832871225, 9661.629248299947, 11028.571573109168, + 12432.789707243652, 13800.076233472208, 15068.045441516053, + 16192.636613233988, 17152.539326849965, 17940.42903365483, + 18569.12934845647, 19056.155366817093, 19416.033359908688, + 19664.30801932231, 19805.244176650987, 19840.032522814305, + 19769.606814436367, 19592.66353192815, 19317.96896878153, + 18957.06160353897, 18526.163477670532, 18046.216039405426, + 17533.66923589075, 17002.774513950604, 16462.59615978923, + 15917.29416140065, 15369.976270138972, 14824.175567255941, + 14286.427498757339, 13766.408685274091, 13275.248823135933, + 12821.213977538902, 12406.704775225911, 12024.362226678606, + 11655.436051789467, 11273.527911992187, 10847.99330281003, + 10351.656891791272, 9766.405629996269, 9091.89095382957, + 8342.898474358595, 7551.330690958125, 6760.16256552621, 6014.302050314648, + 5353.751319840499, 4807.551606948374, 4389.919200450675, + 4097.221506174001, 3918.4307884978425, 3832.714671935314, + 3818.9057274453185, 3861.2994926438437, 3946.661767369429, + 4069.0184949608815, 4223.793834387029, 4404.612807533917, + 4603.263040466516, 4805.782953821948, 4995.451915175598, + 5155.423679342036, 5272.576550719355, 5339.406290951502, 5357.70724191791, + 5336.553887979083, 5288.52485923585, 5228.604046731313, 5167.567682545067, + 5110.439491803097, 5056.079096196459, 4998.238500329237, 4929.03099854483, + 4842.57391266231, 4737.738009731812, 4619.9157058133405, 4498.94339068174, + 4387.262990767214, 4295.816260141181, 4231.006329037417, + 4192.335341804908, 4174.130003460068, 4166.862630269224, + 4161.007632510807, 4151.294965654375, 4138.083782308624, + 4127.563780172558, 4129.607534267901, 4153.445018540917, + 4204.434188458647, 4280.525477108449, 4372.7295053256075, + 4468.811722890607, 4557.553298425855, 4636.242980453062, + 4715.884240669529, 4823.349377244809, 5000.40689976575, 5295.977216241866, + 5758.384532457739, 6425.736530037699, 7309.066260135896, 8400.893832871225 + ], + "flow:branch136_seg0:RESISTANCE_83": [ + 0.4425822391515432, 0.5743876439152705, 0.7203779456674727, + 0.8734882422695772, 1.0257714503215143, 1.1700583977020766, + 1.300801220833379, 1.41466932287462, 1.5100755092813618, + 1.5876433292799825, 1.648812785590174, 1.6951721547720457, + 1.7284081397666529, 1.7492477243605393, 1.7580447120390645, + 1.7549085880992816, 1.7397831302868985, 1.7134007688267525, + 1.6768326231301458, 1.6317799179453112, 1.5804028305541529, + 1.524618639502183, 1.4661622191853172, 1.406224938233686, + 1.345481723459397, 1.2843779243638656, 1.2233141623880195, + 1.1629390751995754, 1.104217458316519, 1.0483169191054884, + 0.9962231518106552, 0.9484137166264173, 0.9044056041752851, + 0.8625529396080882, 0.8202762198991005, 0.7743845173574968, + 0.7218052898269154, 0.6602606889126093, 0.5891121729543345, + 0.5093663030164225, 0.4239276930040236, 0.3370363408970271, + 0.25345793609310013, 0.17769744286839054, 0.11332175511707504, + 0.06235272291087724, 0.025049531861205693, 0.0006135533960738607, + -0.012933329185087342, -0.017756244840511234, -0.015719106420609478, + -0.008399996136626408, 0.0033484776121384574, 0.018890717464965276, + 0.03756418365379856, 0.058541429161413625, 0.08045419941518366, + 0.1016009709270862, 0.12016461443751862, 0.13459159350656974, + 0.14385578337057908, 0.14784145486774966, 0.14722288540584033, + 0.14320788367747786, 0.13733495105393753, 0.13086712364340197, + 0.12455667750273357, 0.11851175942888632, 0.1122516425396426, + 0.10501399182254827, 0.09611484858738702, 0.08528911576092209, + 0.0728993756210966, 0.059831726316362153, 0.047336331824754746, + 0.03662751360619583, 0.02854252666128226, 0.02326127095848089, + 0.020384839398341844, 0.019021488502829517, 0.01817192440378044, + 0.017148157787044458, 0.01579052584500936, 0.014559746471743285, + 0.014376948112958438, 0.016233672057679827, 0.020830408688377308, + 0.02817987416525222, 0.037570796289369934, 0.047817332478334924, + 0.05768931370368761, 0.0666382070923266, 0.07539778751718976, + 0.08632494161069532, 0.10341761072183715, 0.13167298164616534, + 0.17639634958321063, 0.24203165124179493, 0.3307124271338583, + 0.4425822391515432 + ], + "pressure:branch136_seg0:RESISTANCE_83": [ + 7863.840755809661, 9014.828877572987, 10289.686335130533, + 11626.719008597802, 12956.529147461162, 14216.512096250071, + 15358.22124466995, 16352.572220884778, 17185.704879547327, + 17863.06435209346, 18397.22543413679, 18802.057719705244, + 19092.290309275235, 19274.271574558265, 19351.091097577308, + 19323.704956549638, 19191.622191738184, 18961.23873577045, + 18641.908117977087, 18248.486250231945, 17799.836838441715, + 17312.702480043517, 16802.2329318021, 16278.831797002023, + 15748.392860842661, 15214.805129143482, 14681.567020809676, + 14154.34275160089, 13641.557379526863, 13153.40701310299, + 12698.49920805707, 12281.004249455686, 11896.704267347382, + 11531.226691770411, 11162.04606295333, 10761.297667183313, + 10302.150590114097, 9764.71356514526, 9143.410539705143, 8447.0312886209, + 7700.940296066224, 6942.163261555494, 6212.316474637385, + 5550.739447831204, 4988.580012374581, 4543.4939345140565, + 4217.744547537053, 4004.3578430430416, 3886.059955594574, + 3843.943938868172, 3861.73321031647, 3925.647197863805, + 4028.2405153223463, 4163.962821158496, 4327.028499793028, + 4510.211886315449, 4701.564724404521, 4886.228493447027, + 5048.335147688239, 5174.3184605210645, 5255.2178174962155, + 5290.022615969522, 5284.62097022958, 5249.560046085474, 5198.274776701196, + 5141.794600213091, 5086.688752589036, 5033.901623620367, + 4979.235275201001, 4916.032631729889, 4838.321037308535, + 4743.785536924614, 4635.592373235791, 4521.479381010018, + 4412.363592758633, 4318.849046903863, 4248.24705637936, 4202.128594144707, + 4177.010211748171, 4165.104776691522, 4157.685974796144, + 4148.7459528187965, 4136.890458411644, 4126.142701582704, + 4124.546418486298, 4140.760224055188, 4180.901136867462, + 4245.080200543616, 4327.08624450395, 4416.563921567786, 4502.770804730277, + 4580.91684139481, 4657.409706302142, 4752.830865918834, 4902.0922649595, + 5148.831739476621, 5539.377676140337, 6112.536665430686, + 6886.939808181098, 7863.840755809661 + ], + "flow:branch137_seg0:RESISTANCE_84": [ + 1.1679463080785455, 1.4961129550708643, 1.8480725690581323, + 2.2058446615287464, 2.5504660493093554, 2.8665692893430785, + 3.143821984790078, 3.377946060297976, 3.5679827078856627, + 3.7180723425764284, 3.8331359576719177, 3.9168138182784835, + 3.972962120434282, 4.002218031632897, 4.004539568755744, + 3.980066857137701, 3.9283808847801542, 3.8520854965036047, + 3.754450929006255, 3.6398917001098523, 3.514036166577144, + 3.3810332322565624, 3.2443645350230153, 3.1060910445664476, + 2.966994641203919, 2.827730691752093, 2.689194669212339, + 2.553173883098781, 2.4222946165208605, 2.2994778179740463, + 2.1867112775576767, 2.084266815721779, 1.9897454452293286, + 1.897734918397196, 1.801010737546423, 1.691513021155381, + 1.562482640038666, 1.409828051642077, 1.2344352946795136, + 1.0410908517886945, 0.838902725987571, 0.6395041692692881, + 0.4545013227140609, 0.29372971081711374, 0.1638025711010548, + 0.06739021242856809, 0.002443982053927919, -0.03456369185276268, + -0.04942611643644016, -0.04766763948025119, -0.03300954188591133, + -0.008528452085735674, 0.024616300574748885, 0.06549370669578515, + 0.11248439260477194, 0.16341202414066883, 0.21452275891800898, + 0.26142208897331404, 0.29983349233638923, 0.32663780906853823, + 0.3402822144200705, 0.34171235530798605, 0.3336954687997421, + 0.31968458122773263, 0.3035931741028976, 0.2879852448512876, + 0.273798864263401, 0.2603634939755916, 0.2457778178490897, + 0.2279004218523397, 0.20531783805295437, 0.17798559658975932, + 0.14762629386540524, 0.11702235250226667, 0.08947963009006507, + 0.06771119370353564, 0.053092865599957476, 0.04511697143952025, + 0.041994323740691786, 0.04108452353216426, 0.03993736692859492, + 0.03741224493230948, 0.033924918779447, 0.03138451707496087, + 0.03252540606252956, 0.03969458680961445, 0.05404611060504865, + 0.07467777831331489, 0.09890368907998816, 0.12339431098104707, + 0.14534164466003072, 0.164469063520496, 0.18429091498594033, + 0.21248618236607533, 0.2604585307295368, 0.34106085913965295, + 0.46646475520630837, 0.6458495466542563, 0.8807258741414833, + 1.1679463080785455 + ], + "pressure:branch137_seg0:RESISTANCE_84": [ + 8699.6156751216, 10020.382969160984, 11436.909454218408, + 12876.829332688823, 14263.821770764785, 15536.037654989594, + 16651.89234554634, 17594.16793787757, 18359.00553213978, + 18963.068993465648, 19426.16376846762, 19762.94077654341, + 19988.919991015373, 20106.665810167295, 20116.009265182787, + 20017.514316357814, 19809.494572498625, 19502.429688101456, + 19109.48133487896, 18648.416555312004, 18141.887710935665, + 17606.592831727532, 17056.54441248867, 16500.037206465455, + 15940.21803543301, 15379.724544212886, 14822.160729322544, + 14274.71994807667, 13747.972162010452, 13253.673267939552, + 12799.823494329268, 12387.516832794932, 12007.098116028967, + 11636.784753409702, 11247.500419424838, 10806.806631964244, + 10287.500026986856, 9673.11343564024, 8967.212884409102, + 8189.062456890378, 7375.318993778797, 6572.802666766657, + 5828.224534668881, 5181.169482762734, 4658.2537071413535, + 4270.224359116854, 4008.8362572602405, 3859.892037083058, + 3800.0754637653326, 3807.15277912429, 3866.1470007274834, + 3964.6756690941684, 4098.07284910685, 4262.591521448022, + 4451.714217620494, 4656.681878752358, 4862.386472704626, + 5051.141490367511, 5205.735279057108, 5313.614203388269, + 5368.528633297843, 5374.284499495518, 5342.019058759361, + 5285.629653452105, 5220.866812863823, 5158.049818290668, + 5100.954108921656, 5046.880979241718, 4988.178231214476, + 4916.227348480038, 4825.339568230296, 4715.335913293907, + 4593.149291113786, 4469.97807553904, 4359.127301140591, + 4271.5162075538055, 4212.682045612923, 4180.581586153154, + 4168.013913633051, 4164.352254623683, 4159.735310954903, + 4149.572491007417, 4135.537102680897, 4125.312786725091, 4129.90450521544, + 4158.758197516559, 4216.518556231749, 4299.554514274141, + 4397.0561674804985, 4495.623199548083, 4583.954298336588, + 4660.936129006558, 4740.712831979905, 4854.189894148411, + 5047.263472214395, 5371.662432813199, 5876.373578775056, + 6598.340810253248, 7543.643979641067, 8699.6156751216 + ], + "flow:branch138_seg2:RESISTANCE_85": [ + 1.4705152629435954, 1.8877604771710204, 2.337241613871005, + 2.7959876075677945, 3.239619589229704, 3.6480961523186464, + 4.00768269969753, 4.31227993196117, 4.560266468362278, 4.756648272270967, + 4.907536262556462, 5.017781562813535, 5.0923939976671155, + 5.132384800951292, 5.137863580426209, 5.10893504658215, 5.045095673797029, + 4.949470836790136, 4.826082480694187, 4.680570348057779, + 4.520052519593053, 4.349946378358234, 4.17484909882579, 3.997513184712621, + 3.8190608823160885, 3.640352720123941, 3.462493645717206, + 3.287696288247343, 3.1192519649664026, 2.9608880102175066, + 2.8152394025795298, 2.682850533044404, 2.560878281363457, + 2.442664014367678, 2.31911496039807, 2.179942314427297, 2.016323508450753, + 1.8227524581104204, 1.5999032306506422, 1.353493200806172, + 1.0948658743634672, 0.8387057750477453, 0.5999071312277088, + 0.39128732346368733, 0.22168743088560866, 0.09484635710560586, + 0.008591418547690103, -0.0414021125198007, -0.06248078442809298, + -0.06169334430550196, -0.04400783225343504, -0.013484090620268415, + 0.02828473152926532, 0.0800298942980174, 0.13976098507743384, + 0.2047702798119492, 0.2703572745884319, 0.3309611492944609, + 0.38107843962573995, 0.4165870672937832, 0.4353267602892706, + 0.43830744470491906, 0.4288786741406851, 0.41141792740944666, + 0.3909364753055489, 0.370831677440506, 0.352479136153472, + 0.3351748933051991, 0.3165853085286825, 0.2939812217824826, + 0.26546567103623386, 0.23085343688352067, 0.19218512356210996, + 0.1529218641129235, 0.11727490054045624, 0.08878729329078044, + 0.0693546622060887, 0.05849933285149013, 0.05406625077928692, + 0.05271803371648858, 0.051292054589665015, 0.04820061837491182, + 0.04381787412207887, 0.040455670570502304, 0.04155197259988949, + 0.0501604361022475, 0.06789159799385346, 0.09377084725005123, + 0.1245321740461746, 0.1559553181822084, 0.1843623230044981, + 0.20915249621919133, 0.23446192105110536, 0.26974380823428723, + 0.3292846607745613, 0.4294287240106572, 0.5859582343324246, + 0.8108793926155949, 1.106862329375854, 1.4705152629435954 + ], + "pressure:branch138_seg2:RESISTANCE_85": [ + 8621.856562293213, 9933.549698218638, 11346.582853863101, + 12788.741926147595, 14183.387102127363, 15467.514243003643, + 16597.945916956687, 17555.507765861024, 18335.102657564097, + 18952.46783138554, 19426.814173542003, 19773.392153790373, + 20007.951150071105, 20133.670176627536, 20150.893807206026, + 20059.951220013267, 19859.259482328314, 19558.64382983204, + 19170.74804523004, 18713.301778467077, 18208.682128890763, + 17673.919715259213, 17123.466667865516, 16565.976028395846, + 16004.975800802977, 15443.171227165567, 14884.03592948855, + 14334.525746620038, 13804.987587524984, 13307.1390674245, + 12849.263764409767, 12433.073079601816, 12049.629100263419, + 11677.999091579122, 11289.59812131974, 10852.081289002186, + 10337.713101208505, 9729.18408904134, 9028.613316656289, + 8253.974486181894, 7440.928159249708, 6635.638050428316, + 5884.927122450331, 5229.089354798921, 4695.918434288137, + 4297.168346432234, 4026.0088292270384, 3868.8442427779796, + 3802.57925443599, 3805.0547287339214, 3860.6526456734277, + 3956.61008513051, 4087.918666849486, 4250.589855174059, 4438.36639305903, + 4642.736012570444, 4848.921746812076, 5039.442054179949, 5196.99570243555, + 5308.624120426023, 5367.536064370174, 5376.906437366794, + 5347.265225897847, 5292.373903350492, 5227.986393985736, + 5164.7829719702795, 5107.0881162544065, 5052.688794722357, + 4994.248745754486, 4923.18831314113, 4833.544020275494, + 4724.7335931955295, 4603.172076293716, 4479.740228168346, + 4367.676923808662, 4278.120476870072, 4217.0301445244795, + 4182.904262388237, 4168.967989120563, 4164.729601221291, + 4160.246752841374, 4150.52820958486, 4136.750183242241, 4126.180429126897, + 4129.626872124479, 4156.689285549196, 4212.430711818798, + 4293.787267759438, 4390.491603326582, 4489.276493043652, + 4578.579550255681, 4656.512379525693, 4736.077579303268, 4846.99319358147, + 5034.171679807695, 5348.994416825045, 5841.075996811531, + 6548.160294927942, 7478.6413963549485, 8621.856562293213 + ], + "flow:branch139_seg2:RESISTANCE_86": [ + 0.5452152695059653, 0.7102027086599215, 0.894239942700361, + 1.0882790391676562, 1.2821771897561796, 1.4666275049728628, + 1.6343050280336717, 1.780608532819561, 1.903431783388461, + 2.003392222629937, 2.0822266584590206, 2.1421624999510995, + 2.1853734980999056, 2.2129646632470306, 2.225527342555237, + 2.2231496214765336, 2.2058095557340462, 2.17427323902811, + 2.12975552402822, 2.0743513987572264, 2.010657201267678, + 1.9411319896382473, 1.8680145949542204, 1.7928604145751652, + 1.7165974425718913, 1.639793907279489, 1.562926866638218, + 1.4867550634163387, 1.412436738276602, 1.3414213681647509, + 1.2750185428069967, 1.2139620940621443, 1.1578153439535548, + 1.1047227508942978, 1.0515533417797593, 0.9943207754232358, + 0.929035465692106, 0.8526257995248924, 0.7639191493620522, + 0.6638587455588061, 0.5558407788777, 0.44502195913117526, + 0.3374544046152012, 0.23901999407546506, 0.1545332970260852, + 0.08687657986578916, 0.036788915147175194, 0.0034226335572461334, + -0.015607489779726359, -0.02302031121518611, -0.021349321232160868, + -0.012678342588122993, 0.001780565174253513, 0.021154077007454083, + 0.04465569461381355, 0.07126032789295864, 0.0993112761983113, + 0.1266955251461501, 0.1510815707426611, 0.170396032267945, + 0.183216639873928, 0.18923630977983483, 0.18915111618432154, + 0.18446568121578227, 0.17712115773761525, 0.16880592561809474, + 0.16061346559339934, 0.15280300322904558, 0.1448509940593932, + 0.13580877957838036, 0.12475165601437078, 0.11124402454142586, + 0.09561631886088465, 0.07891569681559328, 0.06270426300475444, + 0.048571903063236534, 0.03768366184924281, 0.030413167663740946, + 0.026354036561547528, 0.024421408921625837, 0.02333770799056438, + 0.02212941519509343, 0.020472149729794612, 0.018844776680654082, + 0.01836050973069647, 0.020310705678356418, 0.02567854390427434, + 0.034619319285083265, 0.0463705014636674, 0.059461889749536055, + 0.07228210386323147, 0.08395922673228488, 0.0951568635751754, + 0.10858414163879264, 0.12908036121464564, 0.16291237141429799, + 0.21691862655007835, 0.29693057547518514, 0.40620266741856653, + 0.5452152695059653 + ], + "pressure:branch139_seg2:RESISTANCE_86": [ + 7705.720017490387, 8827.40951804418, 10078.61163496104, 11397.81277124397, + 12716.05566783801, 13970.06617320338, 15110.044574351054, + 16104.708810938291, 16939.739352011573, 17619.333966867554, + 18155.30057987165, 18562.78253397233, 18856.55837036637, + 19044.14065185568, 19129.54973239599, 19113.384472889535, + 18995.4956821913, 18781.091752312856, 18478.432024032416, + 18101.759557797883, 17668.72591028755, 17196.049321642877, + 16698.950788897066, 16188.004892129438, 15669.520724996715, + 15147.36146496656, 14624.770455201873, 14106.90611140475, + 13601.642889940984, 13118.835256578821, 12667.38663483619, + 12252.28608021582, 11870.564778218679, 11509.607577494013, + 11148.128132390468, 10759.024761242583, 10315.173721179604, + 9795.692233861007, 9192.608031650272, 8512.333794151857, + 7777.958985265319, 7024.542196624536, 6293.229575981788, + 5624.009874398367, 5049.615596247732, 4589.642220881709, + 4249.114433371162, 4022.2692388286823, 3892.890362165186, + 3842.4932894166577, 3853.853741637151, 3912.8045669509943, + 4011.1054140318415, 4142.818863998646, 4302.597801415115, + 4483.473012087695, 4674.181191789365, 4860.356725410923, + 5026.148566571071, 5157.46055500399, 5244.623196088029, 5285.548739055906, + 5284.9695388325945, 5253.11497319603, 5203.182233380952, + 5146.649999103225, 5090.952447577301, 5037.851958997739, + 4983.789145248728, 4922.314422705498, 4847.141067256892, + 4755.307601156397, 4649.060522775779, 4535.519076851279, + 4425.3034435413265, 4329.222676146328, 4255.197490278469, + 4205.768048658341, 4178.171494871886, 4165.032263526175, + 4157.664575644325, 4149.4498330601355, 4138.182688836377, + 4127.11877226148, 4123.826417667591, 4137.085089538191, 4173.579066349751, + 4234.364141400858, 4314.256148552462, 4403.25972884459, 4490.419694717901, + 4569.808199600818, 4645.936853649227, 4737.224026189202, + 4876.570357141258, 5106.5818708551415, 5473.750727227937, + 6017.722822851473, 6760.62397256909, 7705.720017490387 + ], + "flow:branch140_seg0:RESISTANCE_87": [ + 0.4280410747651334, 0.5602323215901331, 0.7146388061765866, + 0.8863535542111274, 1.0687239871191392, 1.2545551514338276, + 1.4369987077462754, 1.6103506306017752, 1.770260867720051, + 1.914274854686779, 2.0411528404892008, 2.1505268558195714, + 2.2426385623440117, 2.3175624638170205, 2.3753564173627026, + 2.4159608461131916, 2.439273042046413, 2.445698909630127, + 2.4359870878290906, 2.411519935738364, 2.374193979328288, + 2.3260308248045627, 2.2691144872065125, 2.2052516625074974, + 2.1358995089610078, 2.062254500920298, 1.9853588928525967, + 1.9063206677432893, 1.8264222447249758, 1.7471100537331326, + 1.6697763839168664, 1.5954998356567784, 1.524643154890139, + 1.4565882450857335, 1.3897149445453651, 1.3215365767752123, + 1.2491706158102596, 1.1699223056264905, 1.082027855557237, + 0.984985329146535, 0.879985979020093, 0.7697364604662457, + 0.658046449167733, 0.5492270351240157, 0.44745244279571605, + 0.3560710159044623, 0.2772075707459395, 0.21189593376323823, + 0.15990444324911526, 0.12034423865498918, 0.09201758277437376, + 0.07361101652590672, 0.06409404651999145, 0.06252941736592749, + 0.06799456274953325, 0.07944963005625656, 0.09546506905563841, + 0.11427780101802945, 0.13388837155671107, 0.15232119524845342, + 0.16788356775059068, 0.1795220147978622, 0.18687457811324248, + 0.19023351659978638, 0.1904170963636801, 0.18836446770380985, + 0.18487799478903044, 0.18039315580414625, 0.1748930440348747, + 0.16802436753009328, 0.1593158206889653, 0.14845796723062504, + 0.13553204048366632, 0.12106225578712451, 0.10598266231554784, + 0.09139630360207503, 0.07830319369517257, 0.06732400181654509, + 0.05862110340246556, 0.05186572351092209, 0.04645370583845347, + 0.041796932536860815, 0.03756314103334088, 0.03385220036257689, + 0.031192500968633637, 0.03033989118438355, 0.03201157211263281, + 0.036538620282071, 0.04371694485970703, 0.05284072452123364, + 0.06295060415685505, 0.0733480398228934, 0.08414402494624632, + 0.09671477190613476, 0.113952277367961, 0.14003727079990022, + 0.18003974756235672, 0.23901418502102637, 0.3208691079758541, + 0.4280410747651334 + ], + "pressure:branch140_seg0:RESISTANCE_87": [ + 6424.079457724572, 7173.012903754732, 8047.807440974168, + 9020.662460262694, 10053.887579567487, 11106.719575730156, + 12140.358977860666, 13122.489459858441, 14028.465670968977, + 14844.381203396928, 15563.212210855154, 16182.873952271148, + 16704.735569011882, 17129.21916431747, 17456.65252944773, + 17686.698129883353, 17818.774070266238, 17855.180014447807, + 17800.15739878015, 17661.538019888067, 17450.06670214206, + 17177.196915711425, 16854.735709871118, 16492.91897446827, + 16100.002282987585, 15682.764296512849, 15247.10993877033, + 14799.31652036355, 14346.649625083426, 13897.30404480942, + 13459.167835183314, 13038.35183878609, 12636.911203529273, + 12251.344085106073, 11872.471409160959, 11486.204835955783, + 11076.213328783493, 10627.229667130236, 10129.261042441824, + 9579.463718777462, 8984.586773368, 8359.96484236369, 7727.1817568112865, + 7110.662125502903, 6534.055141444007, 6016.330945715511, + 5569.527748325492, 5199.502723778444, 4904.943385772241, + 4680.8138683953475, 4520.328355831381, 4416.045406535226, + 4362.126729516229, 4353.262276443449, 4384.225220386464, + 4449.124245386879, 4539.860192036748, 4646.444285282254, + 4757.548556744308, 4861.980268367383, 4950.149353283121, + 5016.087321665337, 5057.743488115091, 5076.773654152189, + 5077.813730772212, 5066.184501964862, 5046.431785826148, + 5021.022796982233, 4989.8617499398015, 4950.94705862743, + 4901.608527126362, 4840.09303497119, 4766.860812004501, 4684.881815842659, + 4599.447929903505, 4516.808480176737, 4442.6290760380525, + 4380.426137448841, 4331.119607279444, 4292.846801303764, + 4262.184853990535, 4235.801766154469, 4211.815094293344, + 4190.790649397623, 4175.722043265576, 4170.891557139042, + 4180.362515226864, 4206.010641463015, 4246.679653154607, + 4298.370698566811, 4355.648522751947, 4414.555504191887, + 4475.720479452518, 4546.940420756998, 4644.600021347496, + 4792.385328543507, 5019.020552062573, 5353.141983961035, + 5816.893487903266, 6424.079457724572 + ], + "flow:branch141_seg0:RESISTANCE_88": [ + 0.8058034877887582, 1.038702057837852, 1.292217789200531, + 1.5535860331832867, 1.8090075400698769, 2.0467252023762206, + 2.258272634458894, 2.4393250527257844, 2.588332421339242, + 2.707490387429656, 2.7999258146775494, 2.8684453732245885, + 2.915923737513628, 2.9432160686156217, 2.9505986103594477, + 2.938157201783215, 2.905679053632571, 2.8547178408323117, + 2.787376342127911, 2.7067536617451156, 2.616752559938317, + 2.5205419312935122, 2.4208740484005156, 2.319491262794812, + 2.217226189747646, 2.1146591759850524, 2.0124275159406593, + 1.9117211645384145, 1.8143205579874186, 1.722297401062411, + 1.6372310259142488, 1.55963315318659, 1.4881958646126179, + 1.419510617365968, 1.3486868722702012, 1.2700093120331435, + 1.1783475171260318, 1.0702621286203968, 0.9455498617699113, + 0.8068772391613469, 0.6601403995039955, 0.5132856521110996, + 0.3746975406510101, 0.2518572364697954, 0.1502272715169049, + 0.0724525316867012, 0.01794871731466895, -0.015356377671696649, + -0.03135980489942552, -0.03397720995361706, -0.026207494104884477, + -0.010513091990488844, 0.011981359482572167, 0.040421148719255014, + 0.07369272577257316, 0.11030911810279452, 0.14773346033708937, + 0.18290032677482299, 0.2126805874259347, 0.23459858724267205, + 0.24722080539951108, 0.2508224259913633, 0.24702199241844527, + 0.2381666917514814, 0.22703516254534126, 0.21566350005253018, + 0.2050399458780362, 0.1949898379043049, 0.1843735206595715, + 0.1717219110513076, 0.15590675708264323, 0.13667824849666704, + 0.1149827597041062, 0.09261969351344967, 0.07189511175470159, + 0.054860386599361474, 0.04274004236362905, 0.035493127690693925, + 0.03209773573415988, 0.030789308617444694, 0.029791807086864183, + 0.028081844438727847, 0.025677435906462806, 0.02369140054758431, + 0.023940658938179652, 0.0281606399379201, 0.037387989450211254, + 0.05129855906353893, 0.06828333123937426, 0.08607168656637261, + 0.10255183262543031, 0.11713439145619532, 0.13173634848542182, + 0.15121519662729196, 0.18321264228676912, 0.2367633852883689, + 0.32091079483176943, 0.44279993768551196, 0.6048058397836495, + 0.8058034877887582 + ], + "pressure:branch141_seg0:RESISTANCE_88": [ + 8305.998286697743, 9550.834971294922, 10905.869836713899, + 12302.876173978639, 13668.097359065756, 14938.691964061578, + 16069.407382079517, 17037.127759435843, 17833.568195657608, + 18470.464366467364, 18964.529275368845, 19330.76449988645, + 19584.535098732144, 19730.411885166566, 19769.871375134015, + 19703.372376018255, 19529.777534894147, 19257.391203058993, + 18897.45267717916, 18466.526587208315, 17985.4730832746, + 17471.229822957615, 16938.50763030876, 16396.6193281091, + 15850.015222917353, 15301.797252603728, 14755.371739026292, + 14217.09895971715, 13696.495299028562, 13204.63396407685, + 12749.956443352627, 12335.19787013455, 11953.36745594914, + 11586.246629723224, 11207.6955891686, 10787.166114826836, + 10297.236250283899, 9719.522713217566, 9052.938952046205, + 8311.737459327496, 7527.432940202196, 6742.4982073552155, + 6001.748424485377, 5345.1702541702125, 4801.960784910631, + 4386.256861716811, 4094.9354183671226, 3916.9205683219634, + 3831.3826739151464, 3817.39271326738, 3858.9216385646014, + 3942.8078019304858, 4063.0400489024396, 4215.049968656657, + 4392.885666237976, 4588.59931282951, 4788.6314302459, 4976.597399357657, + 5135.772103296608, 5252.9232314427245, 5320.388652974982, + 5339.639219587706, 5319.32600286016, 5271.994655479834, 5212.496926882585, + 5151.715692232134, 5094.9330767165975, 5041.215515946577, + 4984.471581628818, 4916.849063567632, 4832.317484740866, 4729.54161594584, + 4613.579803326922, 4494.049807207428, 4383.277466953105, + 4292.227312454829, 4227.444393730145, 4188.709826862201, + 4170.561546839749, 4163.56803857705, 4158.2364193320445, + 4149.096714295459, 4136.245214412523, 4125.629908053545, + 4126.962187545391, 4149.5178741503905, 4198.83781274889, + 4273.189438671982, 4363.972595818668, 4459.050883611631, + 4547.136827537824, 4625.08021801895, 4703.127291356761, 4807.2412184435, + 4978.266717491974, 5264.494019625152, 5714.259693546493, + 6365.753931774149, 7231.671184982314, 8305.998286697743 + ], + "flow:branch142_seg2:RESISTANCE_89": [ + 1.4341168907595092, 1.8517717929720163, 2.3076491172561684, + 2.7785236369684783, 3.2395069056476093, 3.669337625165031, + 4.052638089841078, 4.381341015462577, 4.652794593286732, + 4.870960333013447, 5.041317405130747, 5.169219674207023, + 5.259664494032773, 5.314128853382463, 5.333059025885881, + 5.316207859443518, 5.263148650697551, 5.1763907092515975, + 5.059531942626453, 4.918262707788459, 4.759478371727813, 4.5890102256843, + 4.411911749320628, 4.231308815085036, 4.048743105634025, + 3.865200006609941, 3.6817624650587177, 3.500536534112324, + 3.3247293635069193, 3.1581330595649875, 3.0037466463079303, + 2.862692789985874, 2.732771986995211, 2.6080529394477927, + 2.479778757438948, 2.337634443554025, 2.172235582755976, + 1.9772777367790781, 1.7521178799276105, 1.5014101951602197, + 1.2357384644389704, 0.9693240237401959, 0.717375571666516, + 0.493503024646479, 0.3077005529203162, 0.16471661986333044, + 0.06373201573547456, 0.0009088022626959791, -0.030850511808276176, + -0.03850665997545076, -0.027622951854672364, -0.00252155039336693, + 0.03486580075340397, 0.08306843061722842, 0.14032823422245996, + 0.20405396829231306, 0.26975994609582743, 0.33195748014742876, + 0.3849375568568924, 0.4240996955507538, 0.44675458548596886, + 0.45328714626344524, 0.4464759503008604, 0.43060965126113554, + 0.4106876932942374, 0.3904261614930491, 0.37167668684040367, + 0.35412350667846687, 0.3356714707430058, 0.3135926803649051, + 0.28573436337765423, 0.2515620409553324, 0.21268766754753354, + 0.1723571238412572, 0.13478031300914275, 0.10374086674657508, + 0.08153536383408168, 0.06819112041658039, 0.06189348203974088, + 0.05941280972671887, 0.05750853766153498, 0.05422965960407241, + 0.04953209179129512, 0.045403734407107287, 0.04515394735196401, + 0.0520172809683154, 0.0679792048780221, 0.09255747806961134, + 0.12293632420363847, 0.1549491572714102, 0.18466745941696389, + 0.21082251951208525, 0.23662642297335432, 0.27063694445096736, + 0.32650048794955694, 0.4205256829881482, 0.5692492832985617, + 0.7856036833662984, 1.0745014155246795, 1.4341168907595092 + ], + "pressure:branch142_seg2:RESISTANCE_89": [ + 8221.809826388668, 9451.610016642562, 10793.957531701366, + 12180.464839194357, 13537.84699494601, 14803.499326187017, + 15932.141614080398, 16900.01944413793, 17699.324468177583, + 18341.721496924256, 18843.344149001623, 19219.957075153456, + 19486.275167051703, 19646.64747235803, 19702.388060156518, + 19652.769182018037, 19496.53439424268, 19241.072451066484, + 18896.977523251375, 18481.005075758367, 18013.458769795554, + 17511.5090564653, 16990.036092130493, 16458.244122955108, + 15920.672690111125, 15380.223297792589, 14840.08472332754, + 14306.45831746911, 13788.787650338958, 13298.238718198952, + 12843.642257364067, 12428.303999817055, 12045.747426460804, + 11678.50761294592, 11300.799575512481, 10882.250425644623, + 10395.227408795841, 9821.166875078248, 9158.175411727521, 8419.9574313046, + 7637.67726829137, 6853.210168486964, 6111.338703186328, 5452.137770887009, + 4905.035572713319, 4484.014133373763, 4186.661259718368, + 4001.676001621544, 3908.1595355633017, 3885.6157262539286, + 3917.6632043194227, 3991.5752023092036, 4101.663630123211, + 4243.598043111633, 4412.201636639636, 4599.844399763003, + 4793.318063248139, 4976.460985322746, 5132.462765911957, 5247.77712080478, + 5314.485275802883, 5333.720640800222, 5313.664824272581, + 5266.945924352305, 5208.284987851539, 5148.624163731108, + 5093.415647387026, 5041.729664082737, 4987.396966959371, + 4922.385158253843, 4840.355321300937, 4739.733663578825, + 4625.266644133697, 4506.51187779365, 4395.865578981727, + 4304.4687901092275, 4239.083871694998, 4199.791257130431, + 4181.24762976497, 4173.943199082242, 4168.336000086966, 4158.68122329032, + 4144.84906243388, 4132.692962578199, 4131.957455425498, 4152.166793188448, + 4199.167264048449, 4271.538891645793, 4360.990519191426, + 4455.253481241563, 4542.760112766815, 4619.774647280086, + 4695.755188195217, 4795.900417096472, 4960.392671488512, + 5237.253309624358, 5675.175409875272, 6312.238882507971, + 7162.908859300255, 8221.809826388668 + ], + "flow:branch143_seg0:RESISTANCE_90": [ + 1.065898795045103, 1.3634488769624697, 1.6814883566771421, + 2.0037252882554744, 2.3130709407075334, 2.595837645346385, + 2.8429790624455182, 3.0509855854753862, 3.219234067969192, + 3.3516805936052685, 3.45289931651362, 3.5261162582012737, 3.574787518747, + 3.599379381006369, 3.5997609807585693, 3.5760738235894305, + 3.527913358852361, 3.457727336778958, 3.3685549863209396, + 3.264406326969361, 3.150413475129027, 3.0302749413157772, + 2.907064411389273, 2.7825713083687917, 2.6574250271387343, + 2.5321881007800613, 2.4076746754159197, 2.285529382393725, + 2.168157355007488, 2.058204669276221, 1.9574208907064359, + 1.8659527733503196, 1.7815069875947032, 1.699046628106367, + 1.6119527990156117, 1.5129189245359498, 1.3959219290070375, + 1.2574131733084493, 1.0984459875332158, 0.9235814335422963, + 0.7412413668671388, 0.5620627248274548, 0.39651917464653896, + 0.25337407705911197, 0.13838609484740663, 0.05375665282495754, + -0.002629355563721553, -0.03409747281600659, -0.04595577979869511, + -0.04321379865509773, -0.02913727022860456, -0.006432647439447889, + 0.023932390783740827, 0.061169774130570516, 0.10379765799736551, + 0.14982483149001935, 0.19581257516945064, 0.23776315963871825, + 0.2718308066446599, 0.2952683068302547, 0.3067683481675586, + 0.3073027252627204, 0.2994835816314723, 0.28646720984086715, + 0.27179764206346774, 0.2577344971753228, 0.2450320530173601, + 0.23299458437124781, 0.21983935643358057, 0.20361307699544257, + 0.18307465409696444, 0.15824888152968725, 0.13077833881377157, + 0.10323537825321315, 0.07862524927212594, 0.05936701677836273, + 0.046632810156482817, 0.03986846961928709, 0.037379607538388024, + 0.03674433508252839, 0.03575518882373805, 0.03344362156676707, + 0.030268666027704408, 0.02803072460995645, 0.029241771113484864, + 0.03600523630607689, 0.04929976356584336, 0.06821478686773687, + 0.09022819913158843, 0.11229944681767506, 0.13192379262180903, + 0.14897130314063323, 0.1668014132427422, 0.19254988456720362, + 0.23668498485424952, 0.3108805424686215, 0.4260388799793009, + 0.5902980479107561, 0.8046451709376508, 1.065898795045103 + ], + "pressure:branch143_seg0:RESISTANCE_90": [ + 8766.202446643876, 10096.986837347247, 11519.409484669011, + 12960.605117650506, 14344.144866530414, 15608.811017247584, + 16714.14406925856, 17644.447405856205, 18396.93402195623, + 18989.29739078345, 19441.995288311744, 19769.456005193777, + 19987.136852037227, 20097.123265827508, 20098.82996000971, + 19992.889814345162, 19777.493487420565, 19463.588473451222, + 19064.76763862848, 18598.965682585815, 18089.135851912117, + 17551.81963109164, 17000.763993869474, 16443.9720844796, + 15884.258853878688, 15324.14021548398, 14767.25741498243, + 14220.96601991917, 13696.022921452168, 13204.262620314963, + 12753.509999134298, 12344.421411289957, 11966.740004448788, + 11597.938360867518, 11208.413654526646, 10765.487430278416, + 10242.22165126812, 9622.745128621362, 8911.768851617766, + 8129.692041425364, 7314.1812105511835, 6512.809762634531, + 5772.420880390622, 5132.208448763864, 4617.9279254322955, + 4239.425121091988, 3987.240281033491, 3846.5000097678494, + 3793.46406458833, 3805.7274983000234, 3868.6843766331026, + 3970.230164857785, 4106.036946123442, 4272.580098083862, + 4463.232112336713, 4669.087354040965, 4874.766247012169, + 5062.389058717825, 5214.755653851515, 5319.579215663736, + 5371.012827798914, 5373.402814359859, 5338.4319139115005, + 5280.216556379387, 5214.607326192888, 5151.710305359467, + 5094.8989803540435, 5041.0617396629905, 4982.225351910108, + 4909.653772509695, 4817.79625250219, 4706.763681424426, + 4583.9024500817195, 4460.717331961238, 4350.649220770722, + 4264.517316420067, 4207.56393468618, 4177.310611473175, 4166.179245665674, + 4163.338007435611, 4158.914078553325, 4148.575658870106, + 4134.375759326018, 4124.366629142432, 4129.7830006417325, + 4160.0324089005635, 4219.491808962134, 4304.088719834237, + 4402.543088383149, 4501.256124234873, 4589.02546009128, 4665.269972452405, + 4745.014639486302, 4860.173954860253, 5057.566952253007, + 5389.404501402665, 5904.446934027914, 6639.091452706994, + 7597.752944843917, 8766.202446643876 + ], + "flow:branch144_seg0:RESISTANCE_91": [ + 0.7622285364327086, 1.0029131840464365, 1.2824075326683342, + 1.5899320160992898, 1.9115750781964886, 2.232716155126168, + 2.539952475456487, 2.822672366644389, 3.0736751026767513, + 3.2897865683232688, 3.47049881097917, 3.6172227252741243, + 3.732239795698705, 3.8173194679146616, 3.873821013644067, + 3.9023930939050504, 3.9034264277117217, 3.8779476304872302, + 3.8275087240480836, 3.754896582915349, 3.663756195555145, + 3.5579824128751674, 3.4414871516692798, 3.3175048582078777, + 3.1884699321124645, 3.056154961962268, 2.9219380191153146, + 2.7872850454598104, 2.654026374072143, 2.5243798908343122, + 2.4005695000491127, 2.2842913039290167, 2.1759019228221397, + 2.0738980166050327, 1.974795642244751, 1.8734432524017728, + 1.7639301699234777, 1.6408484671275618, 1.5006802524321787, + 1.3425947489754806, 1.1692471979467445, 0.9863362654733154, + 0.8017879455351865, 0.6244036208187761, 0.46252496599203097, + 0.3225227669663924, 0.20811937819643458, 0.12051710911874158, + 0.05826525481009949, 0.018579373701325112, -0.0019219156850104238, + -0.006579547643679766, 0.002060131995989658, 0.021934215741834115, + 0.05129064714777907, 0.08828869298910139, 0.13045820689002727, + 0.17470229559346354, 0.21745724569747252, 0.2551950499285232, + 0.2849934053371329, 0.3052125893650972, 0.31561864960943004, + 0.3173794790954728, 0.312664070958402, 0.3038590869155114, + 0.29298838715578795, 0.2811926853738191, 0.26855481336941894, + 0.25434187748561476, 0.2374757884715342, 0.21716486213722408, + 0.1933966098070621, 0.1671063604409642, 0.14010859235478454, + 0.11460701076043962, 0.09260585674281485, 0.0753310450297965, + 0.06300867173078722, 0.05480834463568861, 0.04929159285095526, + 0.045013675072407035, 0.041076263546802654, 0.03751943953585188, + 0.03533455170955849, 0.03607130280766511, 0.04125158209803235, + 0.05164172034155623, 0.06690625175108833, 0.08559127063946975, + 0.10565823294772608, 0.12549476577278323, 0.1450486876104101, + 0.16678440055769078, 0.1961921296476757, 0.24135200277765295, + 0.3121219577722489, 0.41815886950603004, 0.566825477025184, + 0.7622285364327086 + ], + "pressure:branch144_seg0:RESISTANCE_91": [ + 6832.5457764179, 7727.278699808937, 8766.284710757685, 9909.49132074507, + 11105.183028097063, 12299.008631146662, 13441.144009478834, + 14492.140810692841, 15425.230702449504, 16228.614072985685, + 16900.402634354825, 17445.84131550905, 17873.411418883556, + 18189.690768637116, 18399.73238819117, 18505.94764185496, + 18509.789007670555, 18415.072876204857, 18227.56880954177, + 17957.636871823666, 17618.82712209397, 17225.61847030131, + 16792.553267957264, 16331.655404394822, 15851.974636262974, + 15360.100471356198, 14861.155819785441, 14360.590245883779, + 13865.207919673901, 13383.253719001672, 12922.994894885835, + 12490.736620946655, 12087.804615171435, 11708.610287191657, + 11340.202256162302, 10963.429907132324, 10556.3205987205, + 10098.770635104727, 9577.702433437888, 8990.027623033866, + 8345.61692782602, 7665.654849003351, 6979.605865645889, 6320.188669780645, + 5718.413012281329, 5197.961965414314, 4772.673192346148, + 4447.016217193481, 4215.598118264817, 4068.0678757925607, + 3991.855376292549, 3974.5408666228345, 4006.6584358064315, + 4080.5393302711905, 4189.670369382269, 4327.208721095043, + 4483.9717420215275, 4648.446889152348, 4807.386239357152, + 4947.674605220005, 5058.448474311063, 5133.612261504318, + 5172.296260653021, 5178.842054617281, 5161.31276494595, + 5128.5806850596155, 5088.1694121689015, 5044.319491355639, + 4997.338845618376, 4944.502980101542, 4881.804152904384, + 4806.2993183582175, 4717.9420504472555, 4620.209386959056, + 4519.846558651252, 4425.045727450658, 4343.257557547283, + 4279.039324526353, 4233.231529163217, 4202.747230695059, + 4182.238986812803, 4166.336045275086, 4151.698918396302, + 4138.476606226176, 4130.354396972355, 4133.093231668944, + 4152.350656184407, 4190.975466105747, 4247.720584448999, + 4317.181190845669, 4391.779101546061, 4465.520402374645, + 4538.211111246189, 4619.012517485112, 4728.334253124861, + 4896.213782235501, 5159.29748677734, 5553.484307430675, 6106.144851736425, + 6832.5457764179 + ], + "flow:branch145_seg0:RESISTANCE_92": [ + 0.6338318555886765, 0.8139626413622034, 1.0081660047562258, + 1.2065601709820482, 1.398595715156974, 1.575584909865192, + 1.731553876197562, 1.8638328594756806, 1.9716470153121288, + 2.0571286293840405, 2.122902946939745, 2.171043460653549, + 2.203734860948216, 2.2214228852401763, 2.2241670955506043, + 2.21202504071465, 2.1847780012372704, 2.14376696970754, + 2.0907087361697276, 2.0280309013911038, 1.958805371177372, + 1.8853667697364362, 1.809713866494088, 1.733048599578035, + 1.6558677878959382, 1.578553658012388, 1.5015841473187304, + 1.4259126657114096, 1.3529570375583382, 1.2843283242140495, + 1.2211693129686971, 1.1637345065097229, 1.110820268163586, + 1.0595705201930805, 1.0060813352283027, 0.9459135457412698, + 0.8752435146511824, 0.7916637817394002, 0.6954244364084433, + 0.5889446754373112, 0.4770836164745323, 0.3661651359100266, + 0.26261754530507914, 0.1719977177467776, 0.09817997700628057, + 0.042815480961765455, 0.005008913525046657, -0.017054290655151322, + -0.026542973768990057, -0.026494291536159637, -0.01905994041560731, + -0.006021031565196734, 0.01193077961907427, 0.0342324266287638, + 0.060014034613507086, 0.08811569478102171, 0.11650764317792695, + 0.14278864049603898, 0.16457840467029927, 0.18008512778850713, + 0.18835479707739078, 0.18980224403952295, 0.18585873727859298, + 0.17840028191500665, 0.16959245205556325, 0.16091116468963726, + 0.15296439135090234, 0.14546592687660337, 0.13742012803977446, + 0.12765345769282227, 0.1153405442082947, 0.10039278865444115, + 0.08367952813830494, 0.06668283211640164, 0.05121916366805445, + 0.038824609670212167, 0.03033071190043043, 0.025543437720752196, + 0.023550822935423293, 0.022917919072345035, 0.022275654551237544, + 0.02093223340080365, 0.01903498812650094, 0.017569224135502538, + 0.018012508599209755, 0.021684802146877093, 0.029292534292547967, + 0.040430502288322484, 0.053701378755319114, 0.06729105358548905, + 0.07960489912228146, 0.09036374475323186, 0.10132571347512326, + 0.11654186010950601, 0.14215875064440084, 0.18521909352913624, + 0.25257272144116255, 0.34942903406707426, 0.47696748068730166, + 0.6338318555886765 + ], + "pressure:branch145_seg0:RESISTANCE_92": [ + 8542.326125717773, 9833.509107189804, 11225.56475543559, + 12647.660206549543, 14024.176860333133, 15292.840820967871, + 16410.831141730338, 17359.010939435022, 18131.826105815402, + 18744.56092981811, 19216.033249672633, 19561.10592428326, + 19795.438881416045, 19922.22718050423, 19941.897763937202, + 19854.863143525363, 19659.555531239028, 19365.58720296905, + 18985.26416225837, 18535.98752565154, 18039.77680791379, + 17513.366666768557, 16971.08434258949, 16421.545364635578, + 15868.310946031457, 15314.120898481971, 14762.401091825323, + 14219.98559735794, 13697.03742351118, 13205.104707346396, + 12752.378983109953, 12340.684533849042, 11961.393655076181, + 11594.033894221953, 11210.621780502743, 10779.337225312254, + 10272.772281114749, 9673.670199434207, 8983.823628756543, + 8220.573445581349, 7418.749953822583, 6623.682892850082, 5881.45059653602, + 5231.884901117814, 4702.757077877886, 4305.902676985356, + 4034.904045338128, 3876.7543230023207, 3808.7391522442626, + 3809.0881079780684, 3862.377764179387, 3955.841061595866, + 4084.5201931956813, 4244.379081025726, 4429.182435554678, + 4630.615995085277, 4834.1303495222055, 5022.513342065868, + 5178.703038076335, 5289.855703639022, 5349.132946017974, + 5359.508290110672, 5331.241113041703, 5277.778676889123, + 5214.643883081512, 5152.416149737558, 5095.453435404592, + 5041.7042127228015, 4984.03168059094, 4914.023888844076, + 4825.764548413797, 4718.6185794476405, 4598.817416916349, + 4476.984580011242, 4366.140531638883, 4277.295989512302, + 4216.411470524559, 4182.09614279256, 4167.813019069996, 4163.276344822975, + 4158.6725730929165, 4149.0428891999545, 4135.443377049168, + 4124.9367359333555, 4128.114212526442, 4154.437324988068, + 4208.969781680053, 4288.807076912891, 4383.9331252994625, + 4481.34433010326, 4569.610351512681, 4646.7300860395335, + 4725.305813094486, 4834.375617534241, 5017.9982723450275, + 5326.656127082992, 5809.4489918726185, 6503.718002989603, + 7417.917488947865, 8542.326125717773 + ], + "flow:branch146_seg2:RESISTANCE_93": [ + 0.8225057305812477, 1.050624999228304, 1.29356931613001, + 1.538744595535678, 1.7731811085684273, 1.9866839643617422, + 2.1727005783491875, 2.3289098049455452, 2.4551915767532564, + 2.55480688001425, 2.631298867234142, 2.687124446921222, + 2.7247748579430464, 2.7444317416697968, 2.745854621329462, + 2.7290160565171018, 2.6935644718169125, 2.6413573690824204, + 2.5747336932957268, 2.496791006328363, 2.4114169821217, 2.321403274562714, + 2.2290281739590334, 2.1355636598925485, 2.041422886897096, + 1.9469891487784379, 1.8528810973955487, 1.7603887679170511, + 1.6713970198860946, 1.587967121814626, 1.511449176082063, + 1.4419287428051535, 1.377582165347721, 1.3144908346985604, + 1.2475304077806133, 1.1711001565984624, 1.0806479582181407, + 0.9735852664471751, 0.8508794873093369, 0.7161993103217532, + 0.5761486986800487, 0.43893742104124167, 0.3125855174506217, + 0.20371180710258857, 0.11655455588533165, 0.05259052601176541, + 0.01003847248129197, -0.013809094079607193, -0.023082512327654136, + -0.021573387332896623, -0.011714376824776088, 0.004567639847798419, + 0.026658812508207844, 0.05403541860853012, 0.08562577919439049, + 0.11989291647219669, 0.15416778094662512, 0.18535910505549733, + 0.21050587912769383, 0.2275253827121928, 0.23547687389970753, + 0.23518707434077687, 0.22871851968413578, 0.21853778638972512, + 0.20734931793180428, 0.19682630847803428, 0.18745931010707706, + 0.1786106633162641, 0.16882906817225446, 0.15657320891131396, + 0.14089605502509678, 0.12186480772813524, 0.10080267153844935, + 0.07974943885553641, 0.06104675775179126, 0.04654186698982343, + 0.037085476538735694, 0.0321849941619318, 0.03046759869070639, + 0.030023805325199267, 0.02916303986738069, 0.02717925233680428, + 0.024495044928378448, 0.022570682824028, 0.02338971685847662, + 0.028581167622816227, 0.03886252016430372, 0.05346267667351675, + 0.07037167652187229, 0.08719669744156168, 0.1020138914575378, + 0.11478636294783773, 0.12820854161178358, 0.14789864650735893, + 0.18201170970466238, 0.23956571932837342, 0.32887704477193275, + 0.4559972637051584, 0.6214737836474044, 0.8225057305812477 + ], + "pressure:branch146_seg2:RESISTANCE_93": [ + 8658.930713863818, 9951.347224617313, 11327.755487802167, + 12716.803335499515, 14045.010382470999, 15254.617170870912, + 16308.499837677966, 17193.50786344682, 17908.961002760552, + 18473.33447029704, 18906.702102104973, 19222.983586513892, + 19436.29311152621, 19547.659771734638, 19555.721138825087, + 19460.321748366063, 19259.46973936813, 18963.688843905693, + 18586.23042443728, 18144.643810002846, 17660.954733106515, + 17150.979391990717, 16627.625508249195, 16098.099520087404, + 15564.742166822063, 15029.725010925618, 14496.553042930826, + 13972.53499550752, 13468.349596535496, 12995.67502416136, + 12562.160323626747, 12168.290238321373, 11803.73278725777, + 11446.286974372315, 11066.920681340083, 10633.902816892696, + 10121.443192968738, 9514.876324018303, 8819.683077681984, + 8056.64852368618, 7263.187612206092, 6485.8130320852615, + 5769.962559066669, 5153.135310429042, 4659.343307793114, + 4296.953191459585, 4055.873264825513, 3920.764166206207, + 3868.225338925283, 3876.7753315303926, 3932.6318492018618, + 4024.878099598872, 4150.03629626306, 4305.139273500788, 4484.115402277489, + 4678.256889126697, 4872.44215463851, 5049.157530370057, 5191.627327839812, + 5288.051832301411, 5333.1012424490245, 5331.459374416602, + 5294.811585351976, 5237.132337652686, 5173.74373637046, 5114.125312896072, + 5061.056304641637, 5010.924032702933, 4955.506114082548, + 4886.070178414977, 4797.250796149119, 4689.428697767414, + 4570.100537876611, 4450.822821068613, 4344.862224240485, + 4262.684333619387, 4209.108871872547, 4181.345043012317, + 4171.615087819713, 4169.100763289629, 4164.224070951586, + 4152.984863612593, 4137.777406594553, 4126.874875777753, + 4131.515137493778, 4160.927456419704, 4219.176765460118, + 4301.894387009603, 4397.692829262871, 4493.015486394578, + 4576.962740402806, 4649.325558042433, 4725.369311025027, + 4836.924186754891, 5030.1927623121155, 5356.266718006034, + 5862.262692327357, 6582.4660788027495, 7519.978231036926, + 8658.930713863818 + ] + }, + "dy": { + "flow:branch0_seg0:J0": [ + 2800.401380819581, 3167.615496930888, 3363.5435643203987, + 3396.394082129692, 3262.4646633636075, 3020.6787504494628, + 2654.7255466410684, 2286.599151826968, 1894.3988712484784, + 1537.2369295902722, 1217.08238506428, 915.7429188433683, + 648.6554007522348, 367.2506202650928, 106.29453467404072, + -177.41662615889362, -433.34926855509303, -676.4738045060478, + -885.42502162504, -1041.098335745656, -1163.3131068883035, + -1237.0886691047574, -1288.0556303511573, -1320.0025200101609, + -1341.2037736610657, -1354.2166825584272, -1353.0554621816655, + -1329.7110006197818, -1281.4875309773836, -1207.569177540975, + -1115.2144060137339, -1033.4849647832825, -973.7398726336046, + -969.1652731150409, -1035.2616434833164, -1166.7186572019236, + -1354.4791993824056, -1569.7935627252984, -1762.184948160183, + -1908.737855860648, -1962.0631593496007, -1913.4168533055563, + -1767.3196862614789, -1536.6382408167506, -1250.8976463615893, + -963.2447567288997, -668.6348788990089, -432.93901991944784, + -224.73510335570708, -65.53307960451293, 60.35521697008884, + 172.7583416294763, 262.2583299960229, 350.00953062891756, + 413.64184095331404, 451.8094331409885, 452.22801207979325, + 414.1006538828541, 331.1954202177733, 231.36583362378323, + 114.31151452330766, 14.406822276148318, -65.23311282838337, + -110.49200979730666, -128.41119957108654, -127.13168349147523, + -122.18294660060921, -126.46806236451653, -146.70159908267726, + -183.68637757841697, -228.80099924429734, -267.4400847780316, + -289.7704015193585, -284.5591782599053, -250.95648204242855, + -197.6378056143267, -137.10663914190528, -80.540318673086, + -45.61365134977352, -29.469302521041048, -31.468432447904505, + -39.8606823247559, -39.6147451331667, -21.34549282541707, + 22.989881740108267, 80.20057833732832, 146.48289371157318, + 195.61165886892718, 221.88948433232335, 217.93167925624107, + 198.1906358390363, 186.9645409866745, 217.89855543426413, + 335.8826251460457, 550.0742658769589, 891.4133012527609, + 1334.723380929358, 1825.5530367942338, 2361.079160061276, + 2800.401380819581 + ], + "pressure:branch0_seg0:J0": [ + 214717.57335549564, 222260.8983309318, 216237.37728996488, + 197771.0735255309, 169794.7813431496, 144424.26694727893, + 110670.31810822758, 84904.05506950876, 61615.35218500044, + 46092.81721144755, 27453.200461929333, 14617.96746490255, + 614.1476055835519, -18097.66688118614, -28863.92059302984, + -50899.87184529623, -58993.076626968126, -71017.54350511535, + -79564.11600739663, -80219.13139160773, -83720.36699521374, + -82426.17853806276, -82046.61214253545, -81946.69255640452, + -81505.3434428925, -80671.8540906669, -78537.29489030215, + -73755.32436950592, -67715.26290232934, -60385.53636233725, + -53326.98697069324, -49964.79741215652, -50924.27776247625, + -57127.72701744827, -70189.17920611122, -85253.57130647515, + -103699.63654831544, -116588.38748620005, -124958.01790457232, + -126330.88165062443, -116651.37828075743, -100714.91060898478, + -81972.00586453511, -57833.325045208585, -35603.646103118626, + -20820.185746338124, -2158.708968788019, 4031.937759216816, + 12008.652222863364, 16784.327639131978, 20084.816140820563, + 25026.460363019578, 28076.875809760266, 31444.98569446739, + 32604.892771831022, 30880.477042825125, 25598.323175204783, + 18705.557475162375, 8774.627675721913, 277.8402252608992, + -7616.634834720464, -10485.309658581677, -13522.99613126637, + -11281.896625873112, -9295.438135126826, -7660.7583715543715, + -7212.09898282093, -8902.362779341945, -11870.130781957283, + -15851.791026165001, -18840.559982352162, -19635.354364611667, + -18610.86900692805, -15139.308201105014, -9616.703336287888, + -4787.085202447059, -873.465920349813, 1564.6860762806366, + 1195.340347977375, -488.3647195043678, -2010.5365316010673, + -2729.197268225342, -1323.2993475253472, 2190.0142627906125, + 7687.87980462862, 12532.395631187857, 16622.15229408798, + 16597.814489052646, 15444.971674381142, 11616.32909692662, + 9151.75545934258, 11058.602655405182, 19120.278716862034, + 38673.19897922885, 61646.72967407551, 97977.24594153147, + 134064.62913412886, 165740.58233729377, 201283.01546728465, + 214717.57335549564 + ], + "flow:J0:branch1_seg0": [ + 1500.058159019963, 1688.4525533344943, 1782.5159331153209, + 1786.271369170367, 1700.718234577124, 1553.8221808228225, + 1347.7058063916054, 1137.8902532029574, 922.6139329435819, + 729.2214740176964, 557.0108877960655, 401.4910496367971, + 261.7192719532724, 119.52122308068947, -14.193357081813284, + -158.418891816261, -287.19923909682694, -410.574591320891, + -512.4273169047342, -588.0277535018532, -643.7547081208367, + -674.2675978466591, -693.0231676758921, -702.0686729685488, + -706.7434982608961, -707.754260811222, -702.138324683194, + -685.3188455685626, -655.7532289447073, -612.4206106060321, + -560.8473682117412, -514.4642944704966, -482.37372113186126, + -480.41466328795553, -517.6323332704945, -590.6165512825505, + -694.7787101257983, -811.0092038061817, -916.2948288819812, + -992.5255481219476, -1018.3208310336136, -987.0006620177801, + -903.0456662289313, -771.9541578941831, -615.6372886593492, + -455.64845532833397, -297.99224688683734, -172.50221754124016, + -64.11830801993649, 15.091740980688057, 77.39589769381995, + 130.19040574267464, 172.418440225228, 212.71849292291085, + 241.25552568482127, 256.11234372763846, 251.05498292012527, + 225.06887477723117, 176.58855941630856, 118.19982875173304, + 53.07417575581721, -2.4939405026798767, -45.6520706310892, + -68.97297836235782, -77.0312381788839, -74.22702898876027, + -69.46826028613067, -70.07109327452866, -79.64402676565956, + -98.9127362690373, -122.2511808524636, -142.7708960926667, + -153.75192528200643, -149.76775427594245, -130.10645578948723, + -100.17106015925188, -65.87291032480437, -35.1542796852146, + -16.000363279976387, -8.11050240631161, -10.198912068672529, + -15.877471446939634, -16.756072401001674, -7.344550674942743, + 15.91218957504488, 47.141723915643155, 82.2598324218168, + 108.41693231623513, 121.45685729575949, 117.88281732457467, + 105.39377044688162, 97.83942403007174, 113.5904291899021, + 176.81245595178956, 292.5040515480717, 479.06177792836667, + 715.0819186743063, 983.8909409255499, 1266.3122631543145, + 1500.058159019963 + ], + "pressure:J0:branch1_seg0": [ + 214717.57335549564, 222260.8983309318, 216237.37728996488, + 197771.0735255309, 169794.7813431496, 144424.26694727893, + 110670.31810822758, 84904.05506950876, 61615.35218500044, + 46092.81721144755, 27453.200461929333, 14617.96746490255, + 614.1476055835519, -18097.66688118614, -28863.92059302984, + -50899.87184529623, -58993.076626968126, -71017.54350511535, + -79564.11600739663, -80219.13139160773, -83720.36699521374, + -82426.17853806276, -82046.61214253545, -81946.69255640452, + -81505.3434428925, -80671.8540906669, -78537.29489030215, + -73755.32436950592, -67715.26290232934, -60385.53636233725, + -53326.98697069324, -49964.79741215652, -50924.27776247625, + -57127.72701744827, -70189.17920611122, -85253.57130647515, + -103699.63654831544, -116588.38748620005, -124958.01790457232, + -126330.88165062443, -116651.37828075743, -100714.91060898478, + -81972.00586453511, -57833.325045208585, -35603.646103118626, + -20820.185746338124, -2158.708968788019, 4031.937759216816, + 12008.652222863364, 16784.327639131978, 20084.816140820563, + 25026.460363019578, 28076.875809760266, 31444.98569446739, + 32604.892771831022, 30880.477042825125, 25598.323175204783, + 18705.557475162375, 8774.627675721913, 277.8402252608992, + -7616.634834720464, -10485.309658581677, -13522.99613126637, + -11281.896625873112, -9295.438135126826, -7660.7583715543715, + -7212.09898282093, -8902.362779341945, -11870.130781957283, + -15851.791026165001, -18840.559982352162, -19635.354364611667, + -18610.86900692805, -15139.308201105014, -9616.703336287888, + -4787.085202447059, -873.465920349813, 1564.6860762806366, + 1195.340347977375, -488.3647195043678, -2010.5365316010673, + -2729.197268225342, -1323.2993475253472, 2190.0142627906125, + 7687.87980462862, 12532.395631187857, 16622.15229408798, + 16597.814489052646, 15444.971674381142, 11616.32909692662, + 9151.75545934258, 11058.602655405182, 19120.278716862034, + 38673.19897922885, 61646.72967407551, 97977.24594153147, + 134064.62913412886, 165740.58233729377, 201283.01546728465, + 214717.57335549564 + ], + "flow:J0:branch4_seg0": [ + 1300.3432217996237, 1479.1629435964228, 1581.0276312050594, + 1610.1227129593995, 1561.7464287864877, 1466.8565696266496, + 1307.0197402494714, 1148.7088986239714, 971.7849383048871, + 808.0154555725427, 660.0714972681382, 514.2518692066152, + 386.93612879900314, 247.72939718429564, 120.4878917557387, + -18.997734342566297, -146.1500294582197, -265.8992131851174, + -372.99770472032156, -453.07058224385827, -519.5583987674885, + -562.8210712581251, -595.0324626752681, -617.9338470415869, + -634.460275400109, -646.4624217472135, -650.9171374985048, + -644.3921550512258, -625.7343020326844, -595.1485669350078, + -554.367037801985, -519.020670312796, -491.3661515017185, + -488.7506098270698, -517.6293102127858, -576.1021059193477, + -659.7004892565946, -758.7843589190965, -845.8901192781922, + -916.21230773875, -943.7423283160338, -926.4161912877754, + -864.2740200325535, -764.6840829225628, -635.260357702242, + -507.5963014005617, -370.64263201217125, -260.43680237820786, + -160.61679533577038, -80.62482058519993, -17.04068072373122, + 42.567935886802005, 89.83988977079507, 137.29103770600722, + 172.38631526849514, 195.69708941335074, 201.17302915967147, + 189.0317791056212, 154.6068608014603, 113.16600487205255, + 61.23733876749007, 16.90076277882902, -19.581042197297936, + -41.51903143495124, -51.37996139219524, -52.90465450271281, + -52.71468631448306, -56.396969089981674, -67.0575723170172, + -84.77364130938176, -106.54981839183182, -124.6691886853624, + -136.01847623734966, -134.79142398396147, -120.85002625294199, + -97.466745455072, -71.23372881709994, -45.38603898787181, + -29.613288069797466, -21.35880011473039, -21.269520379232457, + -23.983210877816507, -22.85867273216534, -14.000942150474105, + 7.077692165063096, 33.05885442168409, 64.2230612897561, 87.19472655269256, + 100.43262703656356, 100.04886193166651, 92.79686539215628, + 89.12511695660008, 104.30812624436328, 159.07016919425357, + 257.57021432888644, 412.35152332439134, 619.6414622550515, + 841.6620958686948, 1094.7668969069769, 1300.3432217996237 + ], + "pressure:J0:branch4_seg0": [ + 214717.57335549564, 222260.8983309318, 216237.37728996488, + 197771.0735255309, 169794.7813431496, 144424.26694727893, + 110670.31810822758, 84904.05506950876, 61615.35218500044, + 46092.81721144755, 27453.200461929333, 14617.96746490255, + 614.1476055835519, -18097.66688118614, -28863.92059302984, + -50899.87184529623, -58993.076626968126, -71017.54350511535, + -79564.11600739663, -80219.13139160773, -83720.36699521374, + -82426.17853806276, -82046.61214253545, -81946.69255640452, + -81505.3434428925, -80671.8540906669, -78537.29489030215, + -73755.32436950592, -67715.26290232934, -60385.53636233725, + -53326.98697069324, -49964.79741215652, -50924.27776247625, + -57127.72701744827, -70189.17920611122, -85253.57130647515, + -103699.63654831544, -116588.38748620005, -124958.01790457232, + -126330.88165062443, -116651.37828075743, -100714.91060898478, + -81972.00586453511, -57833.325045208585, -35603.646103118626, + -20820.185746338124, -2158.708968788019, 4031.937759216816, + 12008.652222863364, 16784.327639131978, 20084.816140820563, + 25026.460363019578, 28076.875809760266, 31444.98569446739, + 32604.892771831022, 30880.477042825125, 25598.323175204783, + 18705.557475162375, 8774.627675721913, 277.8402252608992, + -7616.634834720464, -10485.309658581677, -13522.99613126637, + -11281.896625873112, -9295.438135126826, -7660.7583715543715, + -7212.09898282093, -8902.362779341945, -11870.130781957283, + -15851.791026165001, -18840.559982352162, -19635.354364611667, + -18610.86900692805, -15139.308201105014, -9616.703336287888, + -4787.085202447059, -873.465920349813, 1564.6860762806366, + 1195.340347977375, -488.3647195043678, -2010.5365316010673, + -2729.197268225342, -1323.2993475253472, 2190.0142627906125, + 7687.87980462862, 12532.395631187857, 16622.15229408798, + 16597.814489052646, 15444.971674381142, 11616.32909692662, + 9151.75545934258, 11058.602655405182, 19120.278716862034, + 38673.19897922885, 61646.72967407551, 97977.24594153147, + 134064.62913412886, 165740.58233729377, 201283.01546728465, + 214717.57335549564 + ], + "flow:branch1_seg2:J1": [ + 1502.6122808653017, 1688.263465111065, 1785.376099577735, + 1787.038112357154, 1703.7474577289054, 1551.3305462040075, + 1352.1160610853537, 1134.6435674368363, 926.3675669328113, + 729.2974898694877, 557.3476319102739, 405.44676946622405, + 260.87756381956905, 125.25142845193474, -14.061563808754272, + -152.95022890816014, -284.9784063239146, -409.46822853272465, + -509.47664575769187, -588.2483085270541, -642.7120903663106, + -674.4325028140098, -692.9698947765795, -702.0878237004068, + -706.8467423246896, -707.9585354393496, -702.2779147989443, + -685.839661495297, -655.9311668948973, -612.5196219641266, + -561.1441411838694, -513.6631509041973, -482.21710934623394, + -479.90129581054015, -515.8656403371543, -589.7735015622014, + -693.0330062240903, -808.2306945564469, -916.6634584720144, + -990.9464195092551, -1019.21688011135, -989.8940786359426, + -905.3157667518029, -774.324064521443, -620.8553388913573, + -455.6673330725698, -301.3666872628906, -172.23634204278073, + -64.79439754381833, 14.963418874591886, 77.76012433337884, + 130.1080835416584, 173.34241330395267, 212.3133383058218, + 242.0338345979232, 256.26602904023446, 251.76416165086022, + 224.96921647565418, 178.13406885099997, 117.60372224750392, + 54.932872933805996, -2.7104884321525513, -45.03341082966883, + -68.83081558462992, -77.21164042237541, -74.42153252342167, + -69.38041184598339, -69.74100437885241, -79.31627937568558, + -98.5141525513646, -121.65030536214469, -142.90396691243515, + -154.00711516582146, -150.00784412816543, -130.59171931752053, + -100.4544202969799, -65.7099373142965, -35.04597339039006, + -15.581992854250007, -7.942843706106435, -10.117802949040085, + -15.888911736385317, -17.03494805487856, -7.375946412653881, + 14.977487386059623, 47.376055605407544, 81.1651812852055, + 108.66455865640474, 121.44903328156808, 118.20004404680722, + 105.52113972436028, 97.38489391226886, 112.92543695660014, + 172.77431476754435, 290.1375136207347, 475.40977698100545, + 708.337661746352, 984.2898042962208, 1262.8076432964274, + 1502.6122808653017 + ], + "pressure:branch1_seg2:J1": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch2_seg0": [ + 62.03673432739508, 69.882870144741, 74.17682116976873, 74.47332824344502, + 71.14166235666029, 64.91298312146611, 56.75285276280922, + 47.560837392187324, 38.80111307765717, 30.668410106819874, + 23.33455684695893, 16.943124290136165, 10.958157235728422, + 5.268953430999989, -0.41676443582801076, -6.195588838302717, + -11.781642597407773, -16.860213346006233, -21.071709595384206, + -24.42817040501468, -26.713843158976566, -28.079409119966325, + -28.850975851474523, -29.217308490742816, -29.40709688841282, + -29.43825067981861, -29.19693081429213, -28.52796103299828, + -27.3027816480633, -25.528759607231716, -23.40661694684156, + -21.409815799727625, -20.07137010465976, -19.889026062244433, + -21.278037428854798, -24.24129355301159, -28.507978917802173, + -33.293472288856705, -37.813001892829305, -41.0471151248725, + -42.33694841714081, -41.258898713414276, -37.86671935798941, + -32.53053646722146, -26.1590521283038, -19.229074098142384, + -12.760797876498987, -7.29070725431748, -2.7658264780565807, + 0.6106199256348066, 3.2654731899152223, 5.451301712196512, + 7.225598318713541, 8.815677860597171, 10.07104051106577, + 10.683123709026013, 10.516319348710917, 9.444919112927792, + 7.5486320545626, 5.033063204258342, 2.4048246624106335, + 0.028863215139058436, -1.811859614312836, -2.880310821089606, + -3.245628039973255, -3.1529043013609552, -2.9407641965154383, + -2.924053157259971, -3.2860783590086755, -4.049446827728293, + -4.996713653268009, -5.894687729612022, -6.383217831281847, + -6.256128485134812, -5.48677237431668, -4.2529773535755915, + -2.81327066233077, -1.5128143231332132, -0.669464912091035, + -0.32296058734147737, -0.3824795454747825, -0.613914605433834, + -0.681290263584975, -0.3165055023357222, 0.5692264135495065, + 1.8926692091482313, 3.3033185846836224, 4.445007154233019, + 5.032622961440394, 4.957194142222945, 4.447624476150437, 4.08995290391587, + 4.669195878886755, 7.041174460232417, 11.792678742931198, + 19.318434701446876, 28.887049877599548, 40.36365203693726, + 51.9930413776949, 62.03673432739508 + ], + "pressure:J1:branch2_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch29_seg0": [ + 405.16177306318656, 458.6058527428069, 489.02270982416985, + 493.94261017171084, 475.5255175969276, 437.5741413822372, + 385.9020770543805, 327.9237293936632, 271.2574297296281, + 216.5637372078201, 168.27750670938315, 125.0151606230117, + 83.95679502808625, 45.46304278894074, 6.056922898377791, + -32.9118065509681, -70.41254091114565, -105.65547027351467, + -134.6650155444621, -157.91093775957722, -174.45063385182965, + -184.75687279309753, -191.10094354189988, -194.60713312172436, + -196.62834092711182, -197.46576136484188, -196.3802613610782, + -192.39079470986982, -184.71579552209633, -173.35185960507224, + -159.59715020749243, -146.58340419589217, -137.46327078802764, + -135.87027325461784, -144.30310142650382, -163.0773444734541, + -189.99763328874087, -220.87017946583538, -250.56493093072095, + -271.9158094951779, -281.4132556711276, -275.7070170841168, + -254.8485146693177, -221.2072872887059, -180.47458769706307, + -135.85920625926425, -93.47049746724288, -56.99508909545906, + -26.30818528107897, -2.8349349157497343, 15.820654173666192, + 31.400243149556303, 44.29327683874242, 55.82596534923563, + 64.77996567077957, 69.56992087435952, 69.32062594663125, + 63.00735605551679, 51.15192484957371, 35.29861534115475, + 18.496782234023353, 2.597598012260613, -9.459559008253784, + -16.77708006725277, -19.888473323376623, -19.844862528571642, + -18.9200149072908, -19.15734224986367, -21.697930475734672, + -26.730492719202278, -32.951108045410045, -38.80954707660757, + -42.136163941223046, -41.536463362580456, -36.82363927441301, + -29.052312066702296, -19.853855337921072, -11.458156044890599, + -5.849884265655305, -3.2997864495790896, -3.4392965007358725, + -4.686940237025659, -4.924446205626398, -2.458244441154184, + 3.3245763209837267, 11.868831457699665, 20.978313153285253, + 28.68343598955172, 32.64473590498993, 32.38419939477365, + 29.441682034082945, 27.337133449017593, 31.136425598979148, + 46.26208764233262, 76.7862513663201, 125.24864596812297, + 187.4671590198962, 261.8056567135627, 337.929623108303, 405.16177306318656 + ], + "pressure:J1:branch29_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch37_seg0": [ + 92.95016948500177, 105.13583073800892, 111.85839065411388, + 112.64668287144377, 107.97093795369031, 98.77495366616434, + 86.43623852825168, 72.81490499303769, 59.5040015531332, 46.90655526844965, + 35.91478098803601, 26.165254907167792, 17.056417911692783, + 8.499762418967576, -0.23320128261349551, -8.902928748773933, + -17.27290727778714, -25.145066075116326, -31.57733386335059, + -36.68924682662968, -40.244781705816244, -42.357277906228084, + -43.576965467083085, -44.16039491897136, -44.448169444158864, + -44.5100666336717, -44.17563631600542, -43.20628260553197, + -41.410069206204106, -38.760798804940336, -35.56397184068246, + -32.52591423783501, -30.388685146849625, -30.008712029967953, + -31.98164227179033, -36.36632183195892, -42.66672662487698, + -49.90704269089239, -56.82808264130306, -61.80555644365724, + -63.967694623255674, -62.53883813390197, -57.56744194738644, + -49.60463061890784, -40.035264180949135, -29.622709646544813, + -19.794289174489457, -11.446388095929839, -4.502940557638945, + 0.6759626128773678, 4.718872215299459, 8.036532680583377, + 10.76335273163747, 13.219784429245847, 15.11484649351378, + 16.102670333461027, 15.944455302191868, 14.40183131256386, + 11.573342506299841, 7.847978353517384, 3.876918011547979, + 0.168958335435424, -2.616005088028059, -4.266946446257023, + -4.900666180746532, -4.779008891155665, -4.450573485041278, + -4.404442869441316, -4.919187283963838, -6.047838512824451, + -7.476956538849837, -8.840968728542284, -9.621311931579319, + -9.48330088747727, -8.374194730734514, -6.541456169363917, + -4.367770685732705, -2.3893196579782114, -1.0692666656354888, + -0.48879001862842464, -0.562033027313221, -0.9158780672375586, + -1.0411138455210307, -0.5332437687305568, 0.7722926298153027, + 2.733422195458586, 4.866162579564669, 6.666194552681488, + 7.586473156301862, 7.5019695142008995, 6.758526822106332, + 6.178591737990824, 6.944911054471298, 10.346823504523027, + 17.313267791222003, 28.482758973777173, 42.83301651584412, + 59.97183760387025, 77.52119728299157, 92.95016948500177 + ], + "pressure:J1:branch37_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch45_seg0": [ + 68.15732363905113, 75.72615439612869, 79.06095486788902, 78.0771505824244, + 73.41431133072714, 65.87603756095442, 56.47508017957163, + 46.67349255183144, 37.49210752857624, 28.988981839781438, + 21.75236589035203, 15.395503008544505, 9.287538661776258, + 3.5252983869558854, -2.484198071074784, -8.495066821264963, + -14.108246895521306, -19.450405969895957, -23.541392789774083, + -26.68117897399426, -28.760100346543354, -29.82630899843298, + -30.412263223239208, -30.640943161736267, -30.74069886709271, + -30.71529178862711, -30.385110373720753, -29.551268758640386, + -28.107356093161087, -26.056108535087027, -23.704408067080884, + -21.622716199691627, -20.367946895437566, -20.532937250505036, + -22.497853828924455, -26.148141120533033, -31.02274423974109, + -36.264105507792245, -41.00727531210371, -43.97172915420645, + -44.739072172211536, -42.83008960669453, -38.502290540179224, + -32.181811231409135, -25.12990127791878, -17.747737609448876, + -11.028149080930373, -5.6535813194576505, -1.2292839989672422, + 1.9054978965554241, 4.363787546313048, 6.443734974786921, + 8.172282700869088, 9.766685416447958, 10.933843200353868, + 11.387197865579934, 10.979417946086908, 9.564799271493714, + 7.27070222146005, 4.453888496864975, 1.6284681623676778, + -0.871880696996601, -2.5811122100913324, -3.4148416999772606, + -3.5871715075348556, -3.3005625246555943, -2.999100862371145, + -3.0240047988263483, -3.509215178073608, -4.444110180031003, + -5.511176475137996, -6.438454282724807, -6.84630231722844, + -6.528845914254651, -5.511743789931856, -4.06075802314854, + -2.461213488753302, -1.1298211313289421, -0.36679334337434094, + -0.1584708381733764, -0.37559698677795367, -0.7036750652756254, + -0.748466452950148, -0.24712949437234596, 0.8544875661784629, + 2.379650228818162, 3.9079730125511203, 5.074285551706451, + 5.499482174559183, 5.18188825411046, 4.491974275042848, 4.121954988340138, + 4.96632390648041, 7.979702758912777, 13.636287117247866, + 22.44012697597156, 33.16490110286188, 45.652515997202634, + 57.9808358657585, 68.15732363905113 + ], + "pressure:J1:branch45_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch54_seg0": [ + 141.0039553957928, 159.01082404544314, 168.65154455486413, + 169.26014506733236, 161.6979449435731, 147.42269983857938, + 128.55061484083174, 107.92057361889667, 87.94140076463347, + 69.04433773980051, 52.71484600868882, 38.21563829286243, + 24.632767788000393, 11.889729704719281, -1.2259619265512527, + -14.179761557056198, -26.717508387565104, -38.49451513745077, + -48.02240092342366, -55.55979708113417, -60.75360419379618, + -63.777054638527794, -65.5013420088742, -66.30461469511376, + -66.68923617016118, -66.75704023052958, -66.21996213133018, + -64.71457080634498, -61.94690689674427, -57.89914054664907, + -53.03779224496248, -48.47889333401771, -45.32989986300149, + -44.89822609685756, -48.053956535801085, -54.86773674831621, + -64.49698752247204, -75.49413186273702, -85.90196331333075, + -93.24018716135235, -96.26680180130165, -93.8288215598461, + -86.02352498029099, -73.77500734590423, -59.21702835311292, + -43.47895259697053, -28.725926535769773, -16.299658458509303, + -6.012676773356063, 1.6113677202943677, 7.5328390823375075, + 12.433320859884208, 16.45301014823082, 20.09469677963866, + 22.890226866427373, 24.29040821270048, 23.95356871668189, + 21.514601935474744, 17.14485317798222, 11.456796932796701, + 5.458524186803928, -0.11733770151308448, -4.222404218392903, + -6.6046854085668505, -7.461477650759442, -7.196735486895461, + -6.662518735333338, -6.598986310967436, -7.412546169039466, + -9.158632125804964, -11.341224840888623, -13.392707651842622, + -14.530099919071562, -14.246755608390956, -12.495836513367259, + -9.666060782477018, -6.3619949504111935, -3.38706538085387, + -1.4534860552023228, -0.6460964131182381, -0.8200990806362964, + -1.3905914584583388, -1.5762705382672506, -0.7712037742736835, + 1.254223243200356, 4.261448390179208, 7.4894975518884594, + 10.185960069696968, 11.500825049180065, 11.285268922524724, + 10.09966153853843, 9.215284601854389, 10.452737924477692, + 15.74551788995839, 26.517543444408, 43.644781962081716, 65.52495723526216, + 91.49586856748778, 117.97968585338707, 141.0039553957928 + ], + "pressure:J1:branch54_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch57_seg0": [ + 151.40289931138074, 170.189681027259, 180.15096876706454, + 180.48563563712995, 172.208320341156, 156.88264776605007, + 136.85682889789177, 114.85207352510382, 93.75458767753457, + 73.8092109402886, 56.37754132895847, 40.98006536610013, + 26.341069856967177, 12.636588607730404, -1.4392676257648283, + -15.434729229840126, -28.790113578775088, -41.361735256875285, + -51.47666097493828, -59.45643987356962, -64.96818148901426, + -68.19851801865833, -70.06507991804948, -70.97518158386326, + -71.43754252161294, -71.52966040225259, -70.94317373509352, + -69.27795111496174, -66.25599357662671, -61.87481105884071, + -56.6893131061414, -51.870655995854186, -48.671871131984936, + -48.39500357364005, -51.96495868524775, -59.3758834072977, + -69.766812946312, -81.38278826838824, -92.3494858407947, + -99.89037284389157, -102.80858844909517, -99.91376836291779, + -91.44194552003972, -78.26695267481476, -62.79553841791597, + -46.10993927731065, -30.51417809421093, -17.405143807344583, + -6.540587211842659, 1.5524793502795062, 7.910699788829206, + 13.190423471678889, 17.561719744364535, 21.46549446536108, + 24.456966106247783, 25.89802809554397, 25.450051878545707, + 22.75465732304322, 18.050134856026556, 11.938021748486028, + 5.608649615258255, -0.22401679462480417, -4.514499659300234, + -6.95304139828814, -7.820372977267682, -7.552608511840186, + -7.042706176042949, -7.064219644361777, -8.009489677607158, + -9.925299603478852, -12.246384222421435, -14.388747373752095, + -15.519994230180277, -15.138252460598675, -13.199333338661601, + -10.170257617431812, -6.668218486448121, -3.5671258735692035, + -1.5781274780635952, -0.7918904104385047, -0.9976307080623574, + -1.5719715634821474, -1.6950647900668723, -0.736358598968327, + 1.494969781930232, 4.752228757749718, 8.153968176867576, + 10.936466949607413, 12.240523053934234, 11.93882144754992, + 10.6722151605666, 9.845486594905994, 11.382742792162095, + 17.355371709811998, 29.123549028749622, 47.720699955764886, + 71.15595222736837, 98.95823837985674, 127.06530001442773, + 151.40289931138074 + ], + "pressure:J1:branch57_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch69_seg0": [ + 49.509261596282684, 54.04443345469397, 55.52168823469264, + 53.79885727644824, 49.74349950599598, 43.955454072069145, + 37.080996101833314, 30.125656128048867, 24.013631755616817, + 18.261482875903877, 13.457146709475596, 9.311495847976586, + 5.060596028758007, 1.1313141062395518, -3.0753327569452678, + -7.281135884191966, -11.018040239948311, -14.689261020235822, + -17.263093670709818, -19.15648437785622, -20.41539592612894, + -20.926979879228647, -21.223571949903445, -21.328951151789163, + -21.35730128701353, -21.312703337964198, -21.007633277196355, + -20.302536958381662, -19.15552197781405, -17.61268679778398, + -15.91331711667108, -14.555912769231403, -13.91291933972198, + -14.350576897162739, -16.127139901525375, -19.04641014546905, + -22.67676290426373, -26.331888786361432, -29.501579933199576, + -31.11377805320789, -31.099145657176898, -29.197633316041326, + -25.6582390529166, -20.818674324571518, -15.807325619417819, + -10.710224955452963, -6.133028679814655, -2.7602972208425705, + 0.0771688688497099, 2.025443632257714, 3.532192780563916, + 4.94379524937369, 6.063716800097138, 7.106175243476253, 7.842207547678863, + 7.968928422419857, 7.479750921513589, 6.28140397362291, + 4.5006165080892355, 2.4271954806551492, 0.5033986533802017, + -1.1439704502504882, -2.160715385449954, -2.5160418987701902, + -2.502304283419844, -2.224322973995448, -2.0175098267480225, + -2.11957321994498, -2.5647578475761943, -3.310343393902119, + -4.066728922689739, -4.651834030700224, -4.820486989710533, + -4.429692148651388, -3.5663754642009855, -2.4738982061213677, + -1.3600397627532557, -0.49144634024920164, -0.10281080032342134, + -0.09186080321818588, -0.31718453016654585, -0.5558611633631543, + -0.5129764505040862, -0.033068691761285574, 0.8629082769087877, + 2.0111347221331113, 3.046956668632635, 3.7584177698118104, + 3.888592372648957, 3.494923995586804, 2.9541806667484405, + 2.8089154223307125, 3.7091991047592856, 6.319588556648418, + 10.845785858103428, 17.68692514456484, 25.536358569407046, + 34.41160421283758, 43.066464540611165, 49.509261596282684 + ], + "pressure:J1:branch69_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch72_seg0": [ + 100.79332891299008, 111.97709918613509, 117.0623000293487, + 115.75937492406973, 108.97862475351704, 97.9800799096503, + 84.30405159596751, 69.62994493706508, 56.203142200453435, + 43.70060692957905, 32.71605228790415, 23.308343071608878, + 14.121358027365654, 5.4892859257412, -3.336847734041166, + -12.412482727636474, -20.756735734657653, -28.556609166593336, + -34.74840875565598, -39.452705113440665, -42.572184519105846, + -44.263054086634455, -45.167215716015725, -45.55562080169184, + -45.74023286469336, -45.697794480244525, -45.202943505239126, + -43.95863392692067, -41.81227282881546, -38.79478638408041, + -35.34283310249002, -32.28470349819158, -30.486267201921084, + -30.729318661950934, -33.60980240363028, -38.932052553772905, + -46.15605287008557, -53.76386334440083, -60.72916066373855, + -65.12113229011364, -66.23474068304117, -63.483989255051696, + -57.20374119677245, -47.99927296915972, -37.60598974471797, + -26.699511381998764, -16.803251903247325, -8.753649695888909, + -2.178349154091405, 2.5641130214811545, 6.326849029255565, + 9.455543429284468, 12.05531336049274, 14.423757603692062, + 16.179740589358488, 16.842359335880417, 16.236691858001446, + 14.157668049339632, 10.824133976453485, 6.63938274336031, + 2.5256886613702636, -1.0956604151211529, -3.7000388764328234, + -4.953910000799109, -5.235387900395462, -4.87873877126853, + -4.475090101058981, -4.531573762598959, -5.248062585167476, + -6.606715065345823, -8.161741833495737, -9.520051257902663, + -10.104309106563536, -9.650479835486239, -8.164492243219582, + -6.050073956816429, -3.7106918964196294, -1.7589357814887592, + -0.6326693087620558, -0.31268530463711125, -0.5973467003765707, + -1.0392871022477435, -1.077327279037451, -0.32015403347998034, + 1.2866077847182515, 3.5375645189400817, 5.75319281602005, + 7.423960011724043, 8.08503838769999, 7.650722980086798, 6.678444952961334, + 6.198487353193861, 7.503442970999236, 11.997907625739469, + 20.34791915714833, 33.27964319572549, 49.06524374246729, + 67.61731021251585, 85.70851861099825, 100.79332891299008 + ], + "pressure:J1:branch72_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch76_seg0": [ + 117.76818509242322, 132.91189189130756, 141.04466797659987, + 141.66570009141404, 135.4137174091733, 123.53264710568064, + 107.77326796692155, 90.58152784399856, 73.82734925263473, + 58.08522160680193, 44.36514247944873, 32.24666401668426, + 20.900133424084718, 10.247210749403193, -0.6037458192615552, + -11.426823193401676, -21.747949900523047, -31.546590947318567, + -39.49235110605091, -45.80105120427835, -50.20926547761645, + -52.818328555077, -54.35508645664184, -55.11045170486981, + -55.508815181095656, -55.623583643600426, -55.239616742044745, + -54.044822904573095, -51.81732162688149, -48.50466704657907, + -44.52929125283493, -40.755360219449535, -38.138979505882524, + -37.7460669249992, -40.33080547175504, -45.92605218382614, + -53.94055701857965, -63.07677024640454, -71.82285962949024, + -78.08202094302618, -80.80114194563336, -78.97711929331501, + -72.73922899250488, -62.67604319147045, -50.62071872832578, + -37.49295939821153, -25.063676051990104, -14.532583912230766, + -5.724437707224099, 0.8315822921981336, 5.980581785887955, + 10.193979008292422, 13.68143923601274, 16.81018640327799, + 19.20582245341758, 20.4478482608969, 20.220261117230326, + 18.23505990204845, 14.619606836828682, 9.886794194321498, + 4.851080897587143, 0.17000444551299096, -3.3396436660972073, + -5.400163065687744, -6.194005414436359, -6.0375411290556436, + -5.632902370979824, -5.595145770829107, -6.262434686318638, + -7.709087157688159, -9.519911802157996, -11.240647744767806, + -12.214056396853879, -12.025444118279093, -10.60167008332729, + -8.279261382623064, -5.519006756304397, -3.0274381872116485, + -1.3615809427560157, -0.6385175610563517, -0.7364103612963192, + -1.180667715502795, -1.323943311569768, -0.6576634409725289, + 1.0198127665624317, 3.518465439709289, 6.2227696409848186, + 8.48874674168554, 9.632193606761067, 9.504193706552, 8.557623085891782, + 7.848065362702776, 8.86401698912803, 13.271416940900139, + 22.14211550741645, 36.40757578089026, 54.59844005154395, + 76.30335893264622, 98.41373070396827, 117.76818509242322 + ], + "pressure:J1:branch76_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch99_seg0": [ + 62.30088800290295, 68.8005984258145, 71.43933729833482, 70.13035888118225, + 65.5785354834154, 58.49779737059409, 49.89485954655197, 40.95717619578016, + 32.798211116929004, 25.23938056526417, 18.79543345407094, + 13.211965764223315, 7.711453833776245, 2.57500772978629, + -2.8340303152479582, -8.269353897679979, -13.24815452018805, + -18.00970451561697, -21.58687213164584, -24.30709727987234, + -26.072907279525218, -26.94658955841411, -27.416520268399864, + -27.59328061135761, -27.66973898126609, -27.629907922483163, + -27.30329214724298, -26.500750191693246, -25.140763550526405, + -23.23423164571394, -21.09562902032023, -19.240302206411275, + -18.209280412348782, -18.497779436735716, -20.445324310421636, + -23.895696757739987, -28.421321428279036, -33.134472948958326, + -37.36223738231118, -39.837632341478965, -40.295823140326554, + -38.310974844425004, -34.201153697925605, -28.324850616045456, + -21.915959554367138, -15.252312875820158, -9.282085834771518, + -4.559546061189373, -0.6951684440663481, 2.0184588324139376, + 4.169277855641238, 5.99322049217463, 7.529751214230029, 8.934167440230354, + 9.950231203413063, 10.283407435813375, 9.826665288001605, + 8.450527533153867, 6.309548171227726, 3.703964426686877, + 1.1788829215123098, -1.0291885227831792, -2.49893670718364, + -3.1536912701067097, -3.2404524893987388, -2.944585310280841, + -2.67141900781842, -2.7261528529618193, -3.2049152455517134, + -4.086349170615651, -5.055749379980956, -5.874229782158829, + -6.189485915491371, -5.838514852308723, -4.855158675482326, + -3.5123825316315984, -2.0583605964441127, -0.890147194187255, + -0.25276571920512203, -0.12413450878924281, -0.35773184650408074, + -0.6605338505834895, -0.6732881944315088, -0.16475417033157616, + 0.8799846515200188, 2.3016938805796907, 3.6658060869126547, + 4.673576749977844, 4.985919758517623, 4.629130470951351, + 3.973984874450776, 3.682426047630781, 4.566621110761676, + 7.495111054575995, 12.82420643160958, 21.03710211924353, + 30.850258483958555, 42.26219126443599, 53.30036761197389, + 62.30088800290295 + ], + "pressure:J1:branch99_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch112_seg0": [ + 94.37916848982024, 106.90967051527053, 113.97780854548904, + 115.030628735081, 110.54681675631215, 101.43401459980979, + 89.06869511758227, 75.29920812590494, 61.79820715090302, + 48.90524974736351, 37.613905732876844, 27.56337713308864, + 18.139192448570512, 9.318470227235936, 0.31406382209227107, + -8.591778414312286, -17.185491136790795, -25.286596667901648, + -31.923094432400006, -37.223465400021084, -40.95301733434391, + -43.20678123858567, -44.538243229591636, -45.20544684161286, + -45.54537454836865, -45.63897573120871, -45.31645933624648, + -44.34448288442027, -42.532176728004195, -39.857725238930534, + -36.620840103468865, -33.53899380368829, -31.35429597417242, + -30.93136867632342, -32.87531324754306, -37.26309128531015, + -43.59130612035261, -50.89578764777424, -57.92426424201209, + -63.01051422793691, -65.29104016838885, -63.96092577707959, + -59.037111676527374, -51.06540786601452, -41.426880689202484, + -30.881621749736027, -20.868454830614354, -12.31147663326033, + -5.150608839707122, 0.2444862495630406, 4.469460570882416, + 7.951603706535214, 10.806416741527075, 13.362555212497801, + 15.339931160646502, 16.38352159258379, 16.267366031580597, + 14.74603044966214, 11.919539360869036, 8.168233199711178, + 4.162335398062424, 0.3868221741180063, -2.4681122737557524, + -4.191350875964019, -4.8958700998521, -4.829191282446515, + -4.5384420535055465, -4.515895028327425, -5.043744525854397, + -6.1804110473007485, -7.618992756126141, -8.99588875786357, + -9.79469378122879, -9.67281146682756, -8.57562728523977, + -6.744276041202237, -4.560663314535266, -2.557001493995147, + -1.206582086182503, -0.591234039733824, -0.6312344227418067, + -0.9584893461594987, -1.0651736508215193, -0.5436921293696092, + 0.771491542212468, 2.748091744762337, 4.895627799542853, + 6.724776906561946, 7.6754759872546146, 7.621941325037716, + 6.908502849813567, 6.353682275321422, 7.146219364810106, + 10.579493508933632, 17.61070154593389, 28.885057619688272, + 43.399057864262, 60.76428555615038, 78.61901035886179, 94.37916848982024 + ], + "pressure:J1:branch112_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch120_seg0": [ + 65.09970809089617, 73.19534034745293, 77.36749603345048, + 77.43948676897931, 73.7458230130064, 67.01969219239236, 58.22436632182549, + 48.731508950843505, 39.53630840422276, 31.0137237115966, + 23.523892682294104, 16.97942358492393, 10.799489509224179, + 4.954450887708817, -0.9642440551265412, -6.9906528867242885, + -12.605387606258631, -17.965436081557453, -22.27295523460629, + -25.63983505805687, -27.951299971221147, -29.270257813202697, + -30.017936490236128, -30.353791119385424, -30.519564075599114, + -30.530098727768603, -30.269626545270413, -29.54600546562576, + -28.253464180458877, -26.3518092446915, -24.123823405196138, + -22.030452689298777, -20.641368509974296, -20.522377646902175, + -22.089356530616737, -25.290493513327267, -29.8342081017534, + -34.85645364683775, -39.59875917355758, -42.86273582994993, + -44.09336685401059, -42.77779989212417, -39.10883592188549, + -33.35878721843614, -26.634577976606316, -19.42991063498136, + -12.702488142479922, -7.0980334492783905, -2.4461090788188136, + 0.9497665961312702, 3.6413407797170088, 5.815798798826888, + 7.648435650865127, 9.297782740586127, 10.540003002728353, + 11.149389344929988, 10.934542021073568, 9.756013117731378, + 7.697786525893819, 5.05314738286456, 2.287446231075766, + -0.21760224271263007, -2.0770366621917637, -3.10009017104338, + -3.4417767516475415, -3.2905421554160443, -3.0396693568340387, + -3.024579855828074, -3.411994420788594, -4.23660222927147, + -5.240482840352552, -6.173950911844445, -6.663734604215298, + -6.506408564597544, -5.660199731926845, -4.350027059999582, + -2.814106659221647, -1.4756319579989954, -0.6046024259875366, + -0.26883233823482555, -0.37376751381286494, -0.6441902000150436, + -0.7178894360664174, -0.3202185979709495, 0.6412843577368511, + 2.045001481391898, 3.5313833205690535, 4.7302329065556945, + 5.2978499938049675, 5.1567993692361895, 4.587456718284902, + 4.206362196409958, 4.83131390940052, 7.414288562949147, + 12.421474868711266, 20.461449138537603, 30.544907493046516, + 42.56169774114624, 54.60542187581235, 65.09970809089617 + ], + "pressure:J1:branch120_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch132_seg0": [ + 36.814746711775726, 40.42218463642474, 41.74555625490318, + 40.70339093799057, 37.84204794730484, 33.595113714584016, + 28.491820991749602, 23.27469229488656, 18.59780672480535, + 14.207661749641964, 10.55099031137095, 7.351073766255011, + 4.158856881927374, 1.1911031308696785, -1.9871175657082014, + -5.1254528460118305, -8.011138707534872, -10.783094247419521, + -12.792853779932782, -14.301379786258389, -15.288038052115413, + -15.731724777356515, -15.97782004529657, -16.066920882191955, + -16.096937231330777, -16.070646587237864, -15.860397287399723, + -15.3635960595857, -14.533533815272715, -13.399599412418288, + -12.12923002523388, -11.078897570046003, -10.528251477239488, + -10.774870610827305, -12.005015763977722, -14.116365363651788, + -16.78913754971056, -19.560024998855564, -21.987880943339643, + -23.32519033150826, -23.462121342809482, -22.17747509678895, + -19.629280053646905, -16.094438343072135, -12.330109479583763, + -8.4618563670212, -4.993969557815999, -2.3456019198500373, + -0.15521477003412806, 1.3691109338133807, 2.5489382901010185, + 3.6170375460455806, 4.47857376201011, 5.280850651190766, 5.85527510942549, + 5.9998940620361, 5.68538852132566, 4.83434401657039, 3.5378080683602557, + 1.9998890640217335, 0.5367966982022677, -0.7370882359861929, + -1.5423128657850427, -1.8716245112382135, -1.8909937743270868, + -1.6964219419913995, -1.5355940120846328, -1.5872334830262134, + -1.8958127249179964, -2.4339383452835577, -3.005138617682758, + -3.4655931967953304, -3.6242038242372288, -3.3722663755669777, + -2.760949860086893, -1.952305409991596, -1.1100166032084273, + -0.43692671822168233, -0.10758400767947848, -0.06576516506659169, + -0.22142593552052692, -0.40265603991532434, -0.3928985110995898, + -0.06649747334781392, 0.5759587421586996, 1.4222915683227662, + 2.21304603675215, 2.7815538413040346, 2.9211566583764417, + 2.6679905360078076, 2.270396773382168, 2.1218300454705217, + 2.7128520263071305, 4.532801715157847, 7.805796653154919, + 12.767724587687262, 18.607488759391696, 25.26501452391486, + 31.775056594067767, 36.814746711775726 + ], + "pressure:J1:branch132_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:J1:branch138_seg0": [ + 55.23413874641218, 61.45103355956694, 64.29585536704053, + 63.62476216847136, 59.93969833743604, 53.87228390380223, + 46.30431117913754, 38.298241485568965, 30.842269996130415, + 23.902929580415215, 17.953470480476263, 12.759679793631078, + 7.7537371836310545, 3.061210356560663, -1.8318389410187759, + -6.732667312045369, -11.322548829832918, -15.663529827183602, + -19.042502955358945, -21.64051938729703, -23.3588370603004, + -24.27334543062328, -24.7659306098995, -24.96778461534177, + -25.057693336744272, -25.03875390909379, -24.77687122679735, + -24.110004075754244, -22.947209244192866, -21.292638036134626, + -19.38992474444824, -17.68712838484154, -16.652702995015275, + -16.754758687798677, -18.303332530578878, -21.226618624529323, + -25.16477669113613, -29.399712852366825, -33.27197657328212, + -35.72264526885924, -36.40713918581906, -34.93072770022304, + -31.487739144425436, -26.420364365711944, -20.702405043870396, + -14.69131622166477, -9.225894033014121, -4.784585119222376, + -1.1621781177857669, 1.4394647268419747, 3.4791572449687496, + 5.181548462439248, 6.6095260561599565, 7.909558710344202, + 8.873734682867074, 9.259331495002797, 8.949056753284852, + 7.820004422511204, 5.985439737369604, 3.6967516788034094, + 1.4130766002065267, -0.6259895546270535, -2.0411745943918342, + -2.7470379495893176, -2.9070600292368627, -2.693506714483056, + -2.4541067543624435, -2.467801374615994, -2.850110196083193, + -3.594886172886978, -4.457995433680808, -5.216658387321142, + -5.5590543769561105, -5.322480048011409, -4.515725952612819, + -3.348373695895079, -2.0507281138126765, -0.9641433052824084, + -0.3263748433315164, -0.14181926809124756, -0.3055657896208858, + -0.5642553216852144, -0.6047991253316193, -0.2072122955851905, + 0.6696633085842815, 1.9035620105142854, 3.137165856950657, + 4.09194346130674, 4.458144216099145, 4.224999987967272, + 3.6788654963399643, 3.3767209331830728, 4.039434324976412, + 6.433028836866828, 10.969936107774318, 18.02885085750293, + 26.702870803443904, 36.85657255365201, 46.849389497570705, + 55.23413874641218 + ], + "pressure:J1:branch138_seg0": [ + 194616.12636109465, 207236.89692532187, 210945.77394465817, + 200775.18214484997, 182289.9999906703, 159081.22116170637, + 133469.0306268753, 105121.13736853511, 83997.62133445959, + 64001.693351767586, 45046.95328568408, 31095.416687356865, + 14486.563938194166, -498.82486710101216, -15623.95662945344, + -32401.714503050953, -45597.04373559015, -58775.655975007336, + -68192.72144753118, -73902.68600266585, -78255.41231767174, + -79820.67503257125, -80457.05914414542, -80920.73187213525, + -80910.41342374358, -80578.38390188, -79120.18085674138, + -75897.82073853265, -70951.38899184424, -64876.03589353471, + -58380.88070144503, -53684.29759313553, -52680.906341498834, + -55550.37957768088, -63646.04198112638, -75812.18185507468, + -90506.38195025953, -103373.2470564001, -114670.24321045136, + -119069.74428832174, -116505.6921915325, -107579.95442196766, + -92857.2661182151, -73296.26761939406, -54185.52105771797, + -35788.35094035297, -18600.622782555078, -6889.226254732972, + 2569.346317702157, 9815.001496230983, 14838.38041339701, + 20285.63717846353, 24480.854141582495, 27715.85353819505, + 30442.68857491467, 30118.7674335162, 27314.59304440731, 22070.53837664597, + 14993.2745511752, 6528.390793084528, -204.29945063223136, + -5548.322906629491, -9182.179176423097, -9649.898216063768, + -9155.245019585565, -8185.0004741231305, -7544.668460330367, + -8292.995492187087, -10362.991484881373, -13424.723455879526, + -16200.96963002002, -17996.713671853347, -18185.198675772557, + -16160.298609525416, -12347.39676307047, -8039.542513433666, + -4066.436281460884, -1013.7454774995846, -40.308573312522256, + -612.2721169649017, -1526.917149596937, -2235.3801525912854, + -1698.013885094062, 673.5058751736459, 4395.27725211561, + 9054.344672101652, 12603.28802791847, 14576.204146591977, + 14646.685852418948, 12659.512220762983, 10612.612959956556, + 10886.089486956296, 15803.99000946991, 27798.071861453314, + 46934.009843030464, 75209.30398054043, 106001.008747077, + 139252.04390167212, 172545.85035340267, 194616.12636109465 + ], + "flow:branch2_seg0:J2": [ + 62.00731498078637, 69.87502325837386, 74.19804010062664, + 74.49926342155113, 71.18831067932294, 64.97198393405172, + 56.819230706427184, 47.63421547845742, 38.883157658714495, + 30.70533564035567, 23.402165933451954, 16.99244387090649, + 11.006138286511685, 5.331859923552846, -0.3884898826035899, + -6.125906582311653, -11.748027590662957, -16.841719987020575, + -21.05151604187257, -24.419596183642646, -26.712144989015428, + -28.078728010893116, -28.852533601313183, -29.219961076056464, + -29.406558138662703, -29.44177771243295, -29.201173808247503, + -28.537656147134005, -27.31326945393306, -25.546102025883673, + -23.416933427117062, -21.421245082189337, -20.069760715731196, + -19.87603596140836, -21.24743487699465, -24.211163038129474, + -28.450556897610635, -33.25779533926403, -37.7875718786312, + -41.035483915980244, -42.35172584560217, -41.3026927667474, + -37.90080616688992, -32.57228495949333, -26.202170338021297, + -19.262431424701514, -12.783869026342906, -7.30539878841485, + -2.776115328588648, 0.6103484034499945, 3.251019413434274, + 5.45002768442691, 7.217601875988526, 8.808510321262066, 10.069922231706, + 10.683646942636894, 10.526369980295453, 9.462081901466474, + 7.569311955289431, 5.058850427410635, 2.4309181790792938, + 0.0359454690682833, -1.79946703108089, -2.878155943062377, + -3.249479139528767, -3.155623368097752, -2.940136068490174, + -2.9195081424077207, -3.281221412436393, -4.043034763938563, + -4.992724413518862, -5.892760656601648, -6.388121615749717, + -6.2610385469309, -5.496498074548848, -4.258932784102554, + -2.82215107560833, -1.513564507008723, -0.6709580882993275, + -0.32070929493348094, -0.3795759177183366, -0.6134915935049031, + -0.6848040194799029, -0.3252282360551386, 0.5573590413554609, + 1.8783563344532481, 3.2903124379328617, 4.444558992359671, + 5.034273705950084, 4.961556997429201, 4.451929685601282, 4.08384910590817, + 4.6522878394707305, 6.992529426067448, 11.751900937750687, + 19.256963069912484, 28.837540798768945, 40.291238892316066, + 51.96818084454086, 62.00731498078637 + ], + "pressure:branch2_seg0:J2": [ + 186185.38601511417, 200121.0181262323, 206526.8145315477, + 199397.63595493202, 183554.43020055306, 162506.72643010737, + 138469.48450170923, 111522.85898612953, 89074.90169365972, + 68693.89490738827, 50221.833905782965, 35022.1598220102, + 18798.137125484544, 3686.6762434785487, -11808.007899132112, + -27365.820896161556, -41389.784976498326, -55327.72327680736, + -64739.69362284167, -71061.28891502849, -76180.86154514694, + -78151.944595301, -79170.01786579443, -79780.3523193819, + -79779.68927107079, -79649.40918828818, -78432.17631974527, + -75629.57127071965, -71145.583771911, -65568.74817470064, + -59249.71494736896, -54392.00700970595, -52675.8584606147, + -54506.95182976724, -61190.17565123947, -72238.70947437796, + -85562.53058694194, -98765.56844558504, -110310.56750603546, + -115937.32797962574, -115124.44454141684, -108033.65708551495, + -94671.38130741731, -76188.49770940543, -58035.08822917503, + -40116.6681635509, -22237.81190946032, -10106.069663694541, + -73.20866679621673, 7790.337457244091, 12801.016840618255, + 18705.599323581835, 23057.77549196057, 26245.79742117268, + 29247.309977317203, 29571.337625915086, 27422.719862180515, + 22958.119165108157, 16468.98617771939, 8668.657452101717, + 1665.429591298207, -4074.174995154281, -7809.470419062031, + -9066.424238170755, -9052.491288119689, -8228.68422917245, + -7561.875730357198, -8072.036889613164, -9867.51604405849, + -12705.49556656644, -15381.546381804885, -17225.741569220445, + -17860.30282289183, -16257.236239954658, -12928.96741167466, + -8861.464000218453, -5094.036122322756, -1800.508472248054, + -459.3058622663757, -712.041920812084, -1380.417311339217, + -2054.299124034961, -1748.6795848655818, 169.10712052633312, + 3511.8115769925435, 7772.698078742238, 11475.44563001766, + 13846.93534443955, 14242.658940821575, 12753.172892703158, + 10891.428143728257, 10763.703802732813, 14727.59984498183, + 24970.513365814117, 42416.92009617123, 68765.34412200852, + 98046.04405421598, 128747.77783708065, 163329.05312460993, + 186185.38601511417 + ], + "flow:J2:branch3_seg0": [ + 28.240748287634347, 32.04168729548129, 34.26030472566396, + 34.64714482070177, 33.34047808175564, 30.638332423421982, + 26.975097164738475, 22.777643762925347, 18.68950761735658, + 14.846036672794527, 11.392706082319236, 8.344797663664423, + 5.523873724099189, 2.8532408203322426, 0.17851114291629128, + -2.4947204854670018, -5.12926600146001, -7.531482431765456, + -9.54239355238897, -11.169218500707878, -12.299497085740166, + -12.994258079928523, -13.396913338060221, -13.595452116063447, + -13.697346886849832, -13.724372955272052, -13.627731508970479, + -13.342959642555593, -12.804900333789238, -12.013944189911554, + -11.045146110832682, -10.111868161874757, -9.446829889246386, + -9.29026286768342, -9.83798354937831, -11.121919275809955, + -13.013624263158, -15.212968836529086, -17.327506236685316, + -18.906423326370806, -19.629255198617596, -19.277217215536393, + -17.833542494098367, -15.473169247759696, -12.583184102601104, + -9.390242895630042, -6.361540119802423, -3.7594517652939614, + -1.5903667598202378, 0.05223955385055482, 1.3333431682125712, + 2.390049871807227, 3.240254122745954, 3.9982424460707695, + 4.606163451193175, 4.928982422272362, 4.90271452940719, 4.462077082739214, + 3.6321130269529647, 2.5048825159163597, 1.2927958385485645, + 0.16716709692974724, -0.716789779626285, -1.2637458781087918, + -1.4792363528679675, -1.4665063676328975, -1.3784765687389366, + -1.361658760807946, -1.510182903359434, -1.8419497519747596, + -2.2704552965641223, -2.6902138199816443, -2.940793865984767, + -2.9160162034052455, -2.5987511927047025, -2.0532879653677347, + -1.3999414589981456, -0.7872510337722665, -0.37134031635790693, + -0.17852927722664394, -0.17992927317520035, -0.2757723908433614, + -0.31467129369290014, -0.1700312336181739, 0.2111429450411856, + 0.798594634908853, 1.4476989509267142, 1.9972523341977952, + 2.301769703675559, 2.3064756417181758, 2.0968612044683144, + 1.9225622212483164, 2.139229732250618, 3.130787764721702, + 5.20918878773878, 8.542106060332605, 12.867662070643123, + 18.086649367558294, 23.491245925314814, 28.240748287634347 + ], + "pressure:J2:branch3_seg0": [ + 186185.38601511417, 200121.0181262323, 206526.8145315477, + 199397.63595493202, 183554.43020055306, 162506.72643010737, + 138469.48450170923, 111522.85898612953, 89074.90169365972, + 68693.89490738827, 50221.833905782965, 35022.1598220102, + 18798.137125484544, 3686.6762434785487, -11808.007899132112, + -27365.820896161556, -41389.784976498326, -55327.72327680736, + -64739.69362284167, -71061.28891502849, -76180.86154514694, + -78151.944595301, -79170.01786579443, -79780.3523193819, + -79779.68927107079, -79649.40918828818, -78432.17631974527, + -75629.57127071965, -71145.583771911, -65568.74817470064, + -59249.71494736896, -54392.00700970595, -52675.8584606147, + -54506.95182976724, -61190.17565123947, -72238.70947437796, + -85562.53058694194, -98765.56844558504, -110310.56750603546, + -115937.32797962574, -115124.44454141684, -108033.65708551495, + -94671.38130741731, -76188.49770940543, -58035.08822917503, + -40116.6681635509, -22237.81190946032, -10106.069663694541, + -73.20866679621673, 7790.337457244091, 12801.016840618255, + 18705.599323581835, 23057.77549196057, 26245.79742117268, + 29247.309977317203, 29571.337625915086, 27422.719862180515, + 22958.119165108157, 16468.98617771939, 8668.657452101717, + 1665.429591298207, -4074.174995154281, -7809.470419062031, + -9066.424238170755, -9052.491288119689, -8228.68422917245, + -7561.875730357198, -8072.036889613164, -9867.51604405849, + -12705.49556656644, -15381.546381804885, -17225.741569220445, + -17860.30282289183, -16257.236239954658, -12928.96741167466, + -8861.464000218453, -5094.036122322756, -1800.508472248054, + -459.3058622663757, -712.041920812084, -1380.417311339217, + -2054.299124034961, -1748.6795848655818, 169.10712052633312, + 3511.8115769925435, 7772.698078742238, 11475.44563001766, + 13846.93534443955, 14242.658940821575, 12753.172892703158, + 10891.428143728257, 10763.703802732813, 14727.59984498183, + 24970.513365814117, 42416.92009617123, 68765.34412200852, + 98046.04405421598, 128747.77783708065, 163329.05312460993, + 186185.38601511417 + ], + "flow:J2:branch36_seg0": [ + 33.766566693152164, 37.83333596289253, 39.93773537496278, + 39.852118600848364, 37.847832597566516, 34.33365151062805, + 29.844133541688386, 24.856571715532674, 20.193650041357703, + 15.859298967560836, 12.009459851131718, 8.64764620724104, + 5.482264562411354, 2.478619103219393, -0.5670010255204079, + -3.6311860968457665, -6.618761589202423, -9.310237555256103, + -11.509122489482813, -13.250377682935113, -14.41264790327389, + -15.08446993096571, -15.455620263251015, -15.624508959991424, + -15.709211251812132, -15.717404757160809, -15.57344229927712, + -15.194696504578467, -14.508369120144186, -13.532157835972557, + -12.371787316284903, -11.309376920315229, -10.622930826484929, + -10.585773093724717, -11.409451327616244, -13.089243762318459, + -15.436932634452086, -18.044826502735237, -20.46006564194592, + -22.12906058960991, -22.72247064698455, -22.025475551211144, + -20.06726367279198, -17.099115711733692, -13.618986235420138, + -9.872188529071462, -6.422328906540485, -3.545947023120897, + -1.1857485687684137, 0.5581088495994397, 1.9176762452217162, + 3.059977812619673, 3.9773477532425683, 4.810267875191324, + 5.463758780512841, 5.754664520364487, 5.6236554508883065, + 5.000004818727405, 3.937198928336412, 2.5539679114942953, + 1.1381223405308247, -0.13122162786157704, -1.0826772514546554, + -1.614410064953687, -1.7702427866608288, -1.6891170004649745, + -1.561659499751172, -1.5578493815997647, -1.7710385090769847, + -2.2010850119637864, -2.722269116954705, -3.2025468366200207, + -3.447327749764957, -3.3450223435256228, -2.8977468818440926, + -2.2056448187348408, -1.4222096166101648, -0.7263134732364802, + -0.299617771941449, -0.14218001770683925, -0.19964664454312725, + -0.3377192026615461, -0.37013272578699075, -0.15519700243696202, + 0.3462160963142744, 1.079761699544373, 1.8426134870061313, + 2.447306658161848, 2.732504002274517, 2.6550813557110273, + 2.3550684811330136, 2.161286884659844, 2.513058107220232, + 3.8617416613458038, 6.542712150011856, 10.714857009579742, + 15.96987872812577, 22.204589524757793, 28.476934919226288, + 33.766566693152164 + ], + "pressure:J2:branch36_seg0": [ + 186185.38601511417, 200121.0181262323, 206526.8145315477, + 199397.63595493202, 183554.43020055306, 162506.72643010737, + 138469.48450170923, 111522.85898612953, 89074.90169365972, + 68693.89490738827, 50221.833905782965, 35022.1598220102, + 18798.137125484544, 3686.6762434785487, -11808.007899132112, + -27365.820896161556, -41389.784976498326, -55327.72327680736, + -64739.69362284167, -71061.28891502849, -76180.86154514694, + -78151.944595301, -79170.01786579443, -79780.3523193819, + -79779.68927107079, -79649.40918828818, -78432.17631974527, + -75629.57127071965, -71145.583771911, -65568.74817470064, + -59249.71494736896, -54392.00700970595, -52675.8584606147, + -54506.95182976724, -61190.17565123947, -72238.70947437796, + -85562.53058694194, -98765.56844558504, -110310.56750603546, + -115937.32797962574, -115124.44454141684, -108033.65708551495, + -94671.38130741731, -76188.49770940543, -58035.08822917503, + -40116.6681635509, -22237.81190946032, -10106.069663694541, + -73.20866679621673, 7790.337457244091, 12801.016840618255, + 18705.599323581835, 23057.77549196057, 26245.79742117268, + 29247.309977317203, 29571.337625915086, 27422.719862180515, + 22958.119165108157, 16468.98617771939, 8668.657452101717, + 1665.429591298207, -4074.174995154281, -7809.470419062031, + -9066.424238170755, -9052.491288119689, -8228.68422917245, + -7561.875730357198, -8072.036889613164, -9867.51604405849, + -12705.49556656644, -15381.546381804885, -17225.741569220445, + -17860.30282289183, -16257.236239954658, -12928.96741167466, + -8861.464000218453, -5094.036122322756, -1800.508472248054, + -459.3058622663757, -712.041920812084, -1380.417311339217, + -2054.299124034961, -1748.6795848655818, 169.10712052633312, + 3511.8115769925435, 7772.698078742238, 11475.44563001766, + 13846.93534443955, 14242.658940821575, 12753.172892703158, + 10891.428143728257, 10763.703802732813, 14727.59984498183, + 24970.513365814117, 42416.92009617123, 68765.34412200852, + 98046.04405421598, 128747.77783708065, 163329.05312460993, + 186185.38601511417 + ], + "flow:branch4_seg0:J3": [ + 1303.013637850359, 1478.852522878191, 1583.1157417802604, + 1610.416407185155, 1565.984129695414, 1462.012373466607, + 1312.4739450618422, 1143.9366762241586, 974.197252957987, + 808.6578448384206, 657.6747259342634, 519.0813196884475, + 384.0743321777852, 253.36471620813487, 120.17396038997028, + -15.204776341719572, -143.0310135753859, -266.180127795879, + -369.11819163266216, -453.6963247694945, -518.3828337065286, + -562.74889593674, -595.0824715848455, -617.6701044914656, + -634.6552634253873, -646.5702752367298, -651.0498631097556, + -644.8563933830475, -626.1759986910791, -594.6954848727019, + -555.2418954862032, -517.5307575420574, -491.41126078705486, + -488.238416018142, -516.2208430913979, -575.1304179956744, + -659.6508028521586, -755.3665887479791, -847.64533835475, + -914.4803515358274, -944.855460950496, -928.7140891156475, + -867.3709084847081, -765.5425100545065, -642.3618882366977, + -506.6389508377626, -374.6807160804954, -260.88779104314966, + -160.84101410342015, -82.11541171681452, -15.978789031314582, + 41.6034635037689, 91.17736923307355, 136.70476044138198, + 173.11773945573282, 195.92599009995328, 201.95546178835664, + 188.40868064738893, 156.422301295158, 111.84014876412004, + 62.889611524555576, 16.569423381885905, -19.44303845007621, + -41.294974144290386, -51.626862127246234, -53.09629278121859, + -52.60737564789498, -56.12488480374792, -66.59032035793344, + -84.6038720279211, -105.57805345599844, -124.95014204087184, + -136.1552871383623, -135.0976966958339, -121.1809015462762, + -98.22610155363722, -70.68020583430443, -45.69540549157318, + -29.00005501302321, -21.252621341614752, -21.18864665517238, + -24.017424845547605, -23.169837460078966, -13.771745944559177, + 5.991379777595249, 33.74596671207631, 63.18372201772934, 87.5462664153834, + 100.49159923225206, 100.42767327383235, 92.77026224162802, + 88.709818487761, 103.658694839347, 155.49912285364803, 253.904247681615, + 410.6279498030188, 608.4094232554453, 844.6280801889754, + 1087.9985881650828, 1303.013637850359 + ], + "pressure:branch4_seg0:J3": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch5_seg0": [ + 460.08761313791126, 540.4454011651198, 601.2549465716148, + 637.8403104186793, 648.5537986859634, 634.7342980253716, + 599.3892759679215, 550.2245290920478, 492.9408361918411, + 431.56415012831104, 370.55641480658625, 310.9864798605433, + 251.93649414189102, 193.79103908567504, 135.10123673829887, + 75.78013083260689, 18.283233473716574, -37.85198445367059, + -88.07851870069142, -132.22993771859527, -169.1835360995578, + -198.30806955426357, -221.54287567591493, -239.55038126051764, + -253.7517315278725, -264.67208766271324, -272.00462106291855, + -275.0018470637035, -273.0918498739514, -265.9621922530134, + -254.78702222249183, -242.21456396621676, -231.42369528469044, + -226.40300952744076, -230.58264318841893, -245.20492523501255, + -269.8829346837797, -301.2655128708748, -334.9623537447109, + -364.1284767321434, -383.95032948652823, -389.73046729274466, + -379.9592846697155, -354.49032060037183, -317.80011580286686, + -272.543821986996, -223.97109703179945, -177.366197998333, + -133.13637197296345, -94.62237631873205, -60.41825233926769, + -29.945327150339832, -3.0430622767362205, 21.399592606812202, + 42.17640463378555, 58.098963243962785, 67.97266738497197, + 70.65754058011426, 65.99164135670803, 55.331621023770104, + 40.81182749418697, 24.90340042848425, 10.360144051978383, + -0.9120026483013526, -8.712429755795618, -13.212889156263909, + -16.069917446069375, -19.05712505164345, -23.422693391029902, + -29.848282994912136, -37.496237544347544, -45.23848871265047, + -51.10338617177217, -53.51369551320279, -51.73563881745721, + -46.32711640792425, -38.29740470873068, -29.731619935837802, + -22.584674374795863, -17.688971570613965, -15.244492593083697, + -14.282395408981696, -13.019609982297503, -9.807084095957745, + -3.6120633725144353, 5.3932860778714415, 15.839911022122356, + 25.729382548487955, 32.90709795484074, 36.2812767530628, + 36.67246095697439, 36.86174985261524, 41.375957164565094, + 56.10771168589389, 85.30278640762943, 133.99798636919414, + 199.32847527954507, 281.3902098724388, 371.89407693858243, + 460.08761313791126 + ], + "pressure:J3:branch5_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch12_seg0": [ + 176.33347258523884, 198.5856692116671, 210.37733835430035, + 211.1710794656926, 201.90224212366138, 184.4863090071416, + 161.41180238061156, 136.18585081503275, 111.86496565811869, + 88.85362156848623, 68.59467240874552, 50.72227048543571, + 33.682693256416265, 17.549812257549238, 1.091608617502958, + -15.590224831413263, -31.329634085300732, -46.19882980418368, + -58.37807943254123, -67.96650210304988, -74.67113439360865, + -78.72517824757647, -81.1725362995432, -82.48780416277216, + -83.28428504190892, -83.60968129552303, -83.14154490141976, + -81.39095831825944, -78.04549653090017, -73.06889611944516, + -67.13817958742196, -61.60251117951956, -57.89870640674161, + -57.58843781079181, -61.75820475455217, -70.33863165286719, + -82.46796397783127, -95.95060857030184, -108.68807291457168, + -117.51981071474744, -120.92150955873801, -117.58510603411429, + -107.82087442135129, -92.59604225717116, -74.60293713635382, + -55.277600140008325, -37.23087940314861, -22.01957122260547, + -9.35869954811368, 0.05866251705618651, 7.583376730087866, + 13.792892955542058, 19.012727683074015, 23.778450459073433, + 27.421185079834864, 29.30029179744615, 28.97711079960714, + 26.033600135688097, 20.71362935623946, 13.76292114894166, + 6.505849608549489, -0.15859892922571078, -5.132348170359763, + -7.903677555090141, -8.882310854529084, -8.570666913600103, + -7.98976782620427, -8.036099969017116, -9.162378694387622, + -11.426440332540121, -14.177601674698364, -16.722409725887093, + -18.06940850624426, -17.67577276986177, -15.455368789822872, + -11.970145322945543, -7.907215636571674, -4.331233099250959, + -2.033100748344721, -1.1123512357255785, -1.3609215967508825, + -2.0343341304681846, -2.1748263107358903, -1.056837526920245, + 1.556724329488501, 5.355236127844056, 9.347750354663223, + 12.595732564171678, 14.168801508855452, 13.842264529750059, + 12.391664487213607, 11.44488033090243, 13.223304037910776, + 20.197478576262515, 33.82756057098754, 55.432498970108455, + 82.73527939735011, 115.22726912609312, 147.8488887644716, + 176.33347258523884 + ], + "pressure:J3:branch12_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch20_seg0": [ + 144.54082541729974, 160.49558883303817, 167.7357879224204, + 165.69116486870647, 155.96878766968337, 140.31333100463823, + 120.74918472154293, 100.15080402232344, 81.10445153986372, + 63.257742730802065, 48.05611486952751, 34.693026586346384, + 21.720074177988288, 9.472330035586747, -3.370927639183267, + -16.201819237991174, -28.308949797207354, -39.78604166021111, + -48.64888027657434, -55.44972999869584, -60.0777376666184, + -62.53183606650883, -63.96079815088466, -64.65590549750404, + -65.03845770878664, -65.16130651879539, -64.60370443000699, + -62.96491080990327, -60.002707590045844, -55.78641660212114, + -50.872650474236195, -46.57701795825956, -44.01377550665729, + -44.413286210411165, -48.58986590967402, -56.34331407753264, + -66.60012542611477, -77.6586237436885, -87.65083251316067, + -93.88276257930568, -95.45735367395937, -91.47743195140285, + -82.29805418670526, -68.99082042553682, -54.151638935031826, + -38.6567070487493, -24.46271439237909, -13.175254282727828, + -3.8690616439343346, 2.833934171021851, 8.019858274598166, + 12.57790171556809, 16.313169849936216, 19.78123508808431, + 22.41142420282063, 23.46919145941848, 22.723738954949972, + 19.860447926232847, 15.132275337889691, 9.273370112237, + 3.4291343826675313, -1.773980476274169, -5.330862082937553, + -7.047509727937808, -7.399204289241839, -6.80799441465193, + -6.188341780951427, -6.273610080641266, -7.3464518435754185, + -9.355454268392826, -11.641032404592357, -13.609376251425648, + -14.496186086658676, -13.822975696253607, -11.687281866620456, + -8.629069998680139, -5.3015302495160554, -2.490181568918728, + -0.9266522173638753, -0.5123137163777874, -0.9645085346224863, + -1.644737980949267, -1.719826652374993, -0.6369482740557928, + 1.707846179348935, 4.946739570377715, 8.171610532323301, + 10.639734054580376, 11.554509853589444, 10.891886586041693, + 9.466936880546033, 8.729410194861048, 10.587549320167552, + 16.994621478516486, 29.08673633256865, 47.75209608034928, + 70.52652588589328, 96.83698720212337, 123.15349641252483, + 144.54082541729974 + ], + "pressure:J3:branch20_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch22_seg0": [ + 53.09344981928633, 58.25955798723253, 59.98555936161681, + 58.43734781632398, 54.21146442711287, 48.09441482422342, + 40.67486940185955, 33.332053017953676, 26.58775844087436, + 20.47552816060922, 15.32444384390491, 10.782589118604115, + 6.336644423930579, 2.018696990738703, -2.4667956023737743, + -7.081909180234316, -11.22057625612793, -15.201492809396047, + -18.134893829753647, -20.29348054426185, -21.71467400087633, + -22.354067574304178, -22.730568263512016, -22.884718646015536, + -22.97841965223404, -22.985663911147608, -22.733350352027472, + -22.053448870631396, -20.89272459018405, -19.269847549125558, + -17.461390462883244, -15.970951176373648, -15.198225888312583, + -15.60491455638852, -17.447123730562783, -20.521265571447316, + -24.442648095841683, -28.455904262017327, -31.89274756613583, + -33.79697728090037, -33.89034197585595, -31.915280756175278, + -28.190846042033108, -23.055547965498544, -17.584493021566555, + -12.083035712163152, -7.146612020701531, -3.444152427887415, + -0.3662806683385674, 1.7249613172545812, 3.395075909309895, + 4.888002447273539, 6.128662433217724, 7.326918891030001, + 8.158460200235655, 8.408787287031055, 7.9684225438013465, + 6.760754538374951, 4.887376360773772, 2.7120875004201412, + 0.595168643370182, -1.166707131249177, -2.2913953349827763, + -2.7102045341667127, -2.6805721432203633, -2.364342861671338, + -2.12288022283074, -2.203671377471269, -2.6649630500010044, + -3.466666315354123, -4.31497105167359, -4.988655059832767, + -5.210049839893293, -4.839912085177825, -3.938958047062418, + -2.764933154862588, -1.5432240125783705, -0.591879303067141, + -0.1372815837381404, -0.10207950738630193, -0.35745543057795376, + -0.6363655527050059, -0.6234807277660774, -0.14527978659375235, + 0.8104605303196792, 2.038813555906928, 3.210780318204432, + 4.009882035474966, 4.199958588805575, 3.8103536100401554, + 3.21236602591919, 2.990140591614344, 3.8472880699654013, + 6.545593197248596, 11.27818087904411, 18.494677260835594, + 26.97703182549842, 36.58126323307447, 45.9012740407493, 53.09344981928633 + ], + "pressure:J3:branch22_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch31_seg0": [ + 78.84602018177819, 87.52795473204087, 91.19018613313551, 89.9418434846495, + 84.37528835794774, 75.64939761323211, 64.75560395494158, + 53.607131965398544, 43.11795927726421, 33.59745598269247, + 25.403823975257236, 18.253001023059507, 11.453535602118775, + 4.891026368622371, -1.7763374572706612, -8.687736266362942, + -15.010558715640453, -21.04934737114, -25.82481635483403, + -29.447458743605907, -31.926132808638933, -33.27551395666498, + -34.07603230366724, -34.47982967587952, -34.7432258605805, + -34.85132518651089, -34.621823372683345, -33.807335528516944, + -32.29540707730718, -30.066800598492033, -27.476973041243127, + -25.167372286372725, -23.765446994274765, -23.97662933788814, + -26.240547610642096, -30.40705265586925, -36.06414789402353, + -42.13235559793283, -47.65471207557056, -51.264717547348376, + -52.30508586337402, -50.284867971415245, -45.496937686264054, + -38.34763850809615, -30.180664737004186, -21.68474910803906, + -13.834052628622446, -7.517980975403166, -2.297751542829176, + 1.4300067425699408, 4.391269766884348, 6.867118137900656, + 8.961385569948114, 10.920807767064945, 12.354872804153645, + 12.995612334472844, 12.610836633230539, 11.06245794329019, + 8.457958736405573, 5.249251958771797, 1.9703974171734915, + -0.8869842468406541, -2.914905721617598, -3.895527292550546, + -4.101716830246181, -3.7839244716557405, -3.439711913396432, + -3.465122140836483, -4.02505558951301, -5.115446719565249, + -6.384344279057823, -7.492854997005645, -8.0044443779336, + -7.686388818054894, -6.534684100319276, -4.867146729229139, + -3.004434798135286, -1.446353089504609, -0.5339593851495184, + -0.2685650094838828, -0.5125442302877065, -0.8919095979156321, + -0.952646796572494, -0.385628351275108, 0.8946370212857804, + 2.665280757398357, 4.479712010684877, 5.848665575601999, + 6.400487438896126, 6.068366061471199, 5.284668235597568, + 4.849505641995426, 5.790677826832608, 9.272806575931613, + 15.752363491835734, 25.908428555427054, 38.395167027814686, + 52.85862405562118, 67.08924932589446, 78.84602018177819 + ], + "pressure:J3:branch31_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch39_seg0": [ + 114.40369006605889, 128.72275184874297, 136.15031195803704, + 136.31121780617823, 129.9104123178987, 118.26609386702164, + 103.02427786572623, 86.58410152177058, 70.74911724788562, + 55.89889635528091, 43.020343715929855, 31.6318022611012, + 20.920647934402215, 10.799279783929672, 0.4497501536669445, + -9.923064201832485, -19.82521849959782, -29.187908854911306, + -36.81490008081787, -42.859360782156394, -47.11565773096573, + -49.686810995574284, -51.2722478209303, -52.148165461654045, + -52.70144122315445, -52.984792411659235, -52.77122047065112, + -51.75618607850443, -49.72276288135783, -46.64421335369792, + -42.917599585145595, -39.424211420052714, -37.05249799004025, + -36.84233527652409, -39.49414625359293, -45.02288357618303, + -52.8300702842968, -61.66752010518126, -70.05800778003612, + -76.02794566342482, -78.55323526546903, -76.72678145675953, + -70.65182786249368, -60.96218613959662, -49.35980461705822, + -36.782591462361715, -24.896480658332194, -14.843827356343535, + -6.427902471476115, -0.1355076382875522, 4.8420967641842525, + 8.982530671356677, 12.428749129118716, 15.569879823760923, + 17.989497551709896, 19.269278034258726, 19.112994848689727, + 17.243478476186283, 13.790887684379049, 9.270587348608174, + 4.482285288959593, 0.05160384262064764, -3.2487448247178277, + -5.14796008735454, -5.846387954880967, -5.664257346775854, + -5.27932414627956, -5.281426107325891, -5.986646993471083, + -7.442541572140982, -9.241334812821245, -10.924891019515721, + -11.860443966586656, -11.653374667346542, -10.251823706765439, + -7.988898689360642, -5.3315547647071675, -2.947687472944127, + -1.3932063599026632, -0.7404187110501363, -0.870758629625503, + -1.3089984833214547, -1.4259278294943394, -0.737833275794852, + 0.9388127039389097, 3.39926608269396, 6.035585347915566, + 8.217771036218982, 9.30032480039483, 9.14164505955228, 8.213519226358349, + 7.55425038534792, 8.624818116064061, 13.027478654826938, + 21.807597733636978, 35.77932753483337, 53.55170195101689, + 74.6093305587105, 95.94662365982073, 114.40369006605889 + ], + "pressure:J3:branch39_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch52_seg0": [ + 31.043550840352673, 33.86840228792598, 34.66443987035161, + 33.56013998191772, 30.947430658066935, 27.31870730494042, + 22.959991365769312, 18.720112509011297, 14.87760494063895, + 11.413594519253303, 8.479088101235561, 5.916070455252073, + 3.3591841548049506, 0.8663465665104345, -1.7010052695785818, + -4.394562137897371, -6.721211420978713, -8.997140657280772, + -10.635501106422776, -11.810867216315911, -12.592759912636739, + -12.914232951917253, -13.112233667983404, -13.192468113634334, + -13.242081328374569, -13.240178917163895, -13.079624545096783, + -12.659251743307594, -11.961782771715924, -11.00022454215478, + -9.94905859256471, -9.112593859889664, -8.7199986463969, + -9.028226548101644, -10.184666490371976, -12.03135800164051, + -14.352134631348354, -16.65713372514047, -18.599289121413392, + -19.60148330051216, -19.529154009557672, -18.260052905007676, + -16.015144356827747, -12.966240430827682, -9.788449466887307, + -6.639398870942635, -3.8132451377605037, -1.7622828375224189, + -0.03140976311124503, 1.124774891869567, 2.0581710052219706, + 2.9109569943283007, 3.613511881846019, 4.296777158450529, + 4.755787776240936, 4.8618383372684475, 4.560762398184832, + 3.8185918221290813, 2.6960509981842233, 1.4215914684854838, + 0.20630935309071508, -0.7783549050356204, -1.3951586974331693, + -1.5861681225796196, -1.5408176339366968, -1.3452339781227607, + -1.211311233462054, -1.279459344556508, -1.5685279211413614, + -2.0510019573537783, -2.5415710434477297, -2.9146567867483832, + -3.0142699159468753, -2.765597728511732, -2.2120636530585296, + -1.521228236845854, -0.8168450269223066, -0.2849766542197465, + -0.053047566843566624, -0.06043125811717011, -0.2221618203612706, + -0.3822210782307546, -0.35546133608877617, -0.04962018657371669, + 0.5316496930592719, 1.2561151971075908, 1.9268404869470712, + 2.3580553772554134, 2.432420125997603, 2.1708403156085114, + 1.8157358451066858, 1.7187605515889999, 2.2852402644344725, + 3.9694950461699396, 6.814263734307549, 11.133441203697096, + 16.102089480289436, 21.676294635400765, 27.043012464395787, + 31.043550840352673 + ], + "pressure:J3:branch52_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch70_seg0": [ + 66.00227498726848, 72.43869283484439, 74.72313407257059, + 72.85350289707985, 67.70091846393719, 60.10445996062894, + 50.99319908757035, 41.76213947887926, 33.44756011378571, + 25.773337659998198, 19.30624223547381, 13.667488129281747, + 8.035709338824981, 2.7080997642520623, -2.942345874550371, + -8.654457095945945, -13.836413066816506, -18.823909971957335, + -22.48251693384744, -25.221713404563804, -27.01512634619195, + -27.852318438567, -28.338965213819534, -28.549490567467924, + -28.672530784753242, -28.685519998220176, -28.373083060457926, + -27.53390663459676, -26.0931716018462, -24.084297251680123, + -21.844009245832616, -19.98016330007129, -19.024454430663706, + -19.506999129866767, -21.761621735392502, -25.567291510452876, + -30.414760511449355, -35.37136315467859, -39.68839124866788, + -42.05214849440561, -42.22614246418107, -39.83768832656003, + -35.2501120688184, -28.897416742892425, -22.146598959660505, + -15.26129053062865, -9.127334904608686, -4.455906086714216, + -0.602251921493175, 2.0535092706243767, 4.162385654134667, + 6.0433491047968495, 7.613760007596678, 9.093575952229067, + 10.153920212076876, 10.465584395828314, 9.935611523262914, + 8.442086329706964, 6.146150685895492, 3.4245661042278206, + 0.8265353096730829, -1.39001541808692, -2.7981144256955535, + -3.338758488811837, -3.3265985221801913, -2.9518170020999905, + -2.6570438319238527, -2.7565150177278834, -3.3242095180188205, + -4.311790223559572, -5.356666554949806, -6.198167449427372, + -6.4810181582358135, -6.031817778720093, -4.926671814842502, + -3.4774261974430107, -1.9617634286188792, -0.7763260435530367, + -0.19878860583886246, -0.14668801377453342, -0.44933178733409457, + -0.7870361783489018, -0.7710518496071739, -0.17721530568551938, + 0.992190109987963, 2.5244876886515506, 3.9596952796593015, + 4.968118088060229, 5.213413211490304, 4.747320981434027, + 4.018860038243907, 3.7500550426800157, 4.813938811444334, + 8.12255694836141, 13.991445710912673, 22.921869187042056, + 33.40417341484641, 45.387479585097125, 56.96454959428762, + 66.00227498726848 + ], + "pressure:J3:branch70_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch79_seg0": [ + 48.49444678045786, 53.07587609021357, 54.49576124279723, + 52.93466378660795, 48.96554276098023, 43.328835987470356, + 36.5387854982262, 29.870973157910854, 23.781865669525732, + 18.28100476771588, 13.644349737989247, 9.569919908120168, + 5.560692082903297, 1.6633099018110125, -2.3755893775945314, + -6.555136686091184, -10.261691784226254, -13.845964900792477, + -16.469143167478663, -18.387644980346106, -19.6561653965371, + -20.215716441222117, -20.55267881174564, -20.694413454136942, + -20.784460004958902, -20.7956563935919, -20.567492398524987, + -19.945286871939146, -18.88661986726741, -17.408958359920216, + -15.770366900842754, -14.43399368729276, -13.762314532813779, + -14.171156859892188, -15.89310857493057, -18.72548450735857, + -22.322699488724272, -25.97486806383349, -29.09183637829787, + -30.793180072993323, -30.835073416269363, -28.991580584595802, + -25.567621886793756, -20.85846520978818, -15.866849574693541, + -10.864481927715731, -6.374342978046016, -3.0353586657463123, + -0.24858826475661264, 1.635074095693289, 3.1447041625052203, + 4.501764256014181, 5.627166130676516, 6.716240293358029, + 7.464142814431782, 7.674264986131175, 7.250039749614918, 6.12674467154618, + 4.398399217589798, 2.405726172277283, 0.47780765741552766, + -1.1138084605479472, -2.123984084842853, -2.482479860963173, + -2.441790883946786, -2.146847738306417, -1.9288343643558572, + -2.0121728522039515, -2.443415911307074, -3.183924011473681, + -3.9586467447657787, -4.566547827120913, -4.755964198676815, + -4.402655467097966, -3.5654979539825304, -2.48810174144617, + -1.3733810793857286, -0.5131977353583963, -0.1121940763437637, + -0.09287026169944897, -0.3330084118794722, -0.5875489001824414, + -0.5673345744073091, -0.11756012563081665, 0.768243184948787, + 1.896360139676428, 2.9636466002844686, 3.679174121525157, + 3.8361255407303165, 3.4634281832344316, 2.912415993404129, + 2.722899253327364, 3.536585939510132, 6.05493320097745, + 10.422338412632671, 17.070881815485798, 24.832789340573044, + 33.588924459787485, 42.04928958554292, 48.49444678045786 + ], + "pressure:J3:branch79_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch118_seg0": [ + 70.02629725077624, 78.84671985994045, 83.43334015127022, + 83.65196676944547, 79.80562398900811, 72.75468897610517, + 63.42861269005642, 53.34229085350875, 43.595300982456855, + 34.49248367562384, 26.48756956747873, 19.456715703324967, + 12.828936281374737, 6.493344873200724, 0.09699856382678683, + -6.469111773661654, -12.642328824079252, -18.45675636288513, + -23.25769998837567, -26.994400262396557, -29.59368846027708, + -31.142637908407927, -32.052655579466794, -32.523016664610104, + -32.80335416523712, -32.90831304392293, -32.715395398482016, + -32.02135531526577, -30.698969790628496, -28.725483938303245, + -26.367287416327777, -24.162555669910734, -22.676532908136963, + -22.548410940754724, -24.209901392204014, -27.62757166929172, + -32.4867245649766, -37.89020744958962, -42.97395697182152, + -46.53841127406516, -47.894119765597985, -46.55518958785312, + -42.64787983215757, -36.55973660111341, -29.326408990090826, + -21.618538078565468, -14.41405425677101, -8.368564016697464, + -3.367914656987482, 0.32162885040261874, 3.252694866166162, + 5.648822699994755, 7.6644484375352695, 9.52222673577275, + 10.93371244038733, 11.668387244202666, 11.522765798889491, + 10.340923331873942, 8.201045872856737, 5.422690303941779, + 2.4994473504401777, -0.1546299241103157, -2.149824485957881, + -3.246378701289883, -3.6099838467032073, -3.4562564046520334, + -3.192666279549923, -3.180818539147545, -3.6095571246626905, + -4.503048941511438, -5.606368018806992, -6.6292557110007815, + -7.175423765848195, -7.02652037864001, -6.1386500200792575, + -4.738120005799953, -3.103538722600766, -1.6638047171386285, + -0.7383391099222759, -0.37107343585913494, -0.4836065436929241, + -0.7720403457081478, -0.8513021429892821, -0.427820951441412, + 0.6059517658156391, 2.1146220112635894, 3.7233437112369137, + 5.022598556220331, 5.663312011151428, 5.531192321614106, + 4.934785441775476, 4.523966855276262, 5.18793898983035, 7.932501146324145, + 13.321497589183489, 21.896214758400102, 32.794421739163376, + 45.72161651776717, 58.703943622159386, 70.02629725077624 + ], + "pressure:J3:branch118_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch129_seg0": [ + 29.849354788974637, 33.20136713369343, 34.56025776257379, + 34.20397322271168, 32.11803550463038, 28.89596141981801, + 24.680504797603845, 20.539223113428232, 16.423339479996034, + 12.907168166413589, 9.678441704447543, 6.921580725868705, + 4.338761843708854, 1.6806041927426139, -0.779270199910898, + -3.6405784750919494, -5.9657995277754114, -8.286730393924085, + -10.165892908634952, -11.5019964648655, -12.446206353352627, + -12.930029147769856, -13.215479742085895, -13.341817978925322, + -13.426276996233097, -13.432535077549455, -13.320638180365151, + -12.966255565070291, -12.365196281696635, -11.465978320877577, + -10.468112657766055, -9.572632740880243, -9.045114442646383, + -9.153110692068912, -10.076309631975866, -11.654658633683889, + -13.882326171246039, -16.130190508182686, -18.140175298120568, + -19.440525013992236, -19.677339726384183, -18.741609557577586, + -16.89858547918647, -14.121613205607659, -10.985490346669799, + -7.864679416287311, -4.9224550193392425, -2.64599102426818, + -0.7156001256385767, 0.6097580887631637, 1.726290811480185, + 2.598020448089624, 3.3769139477094576, 4.118695658476753, + 4.614964519304458, 4.85097701389783, 4.6700718800568435, + 4.070168669646688, 3.0556182835236223, 1.8608048167623514, + 0.6026800225093648, -0.3989521900545844, -1.167616349872624, + -1.485890412969817, -1.532788030372528, -1.4041942765342141, + -1.2803704363947954, -1.3022877173363678, -1.5155315625565817, + -1.9344717478454387, -2.408491927085413, -2.8103639996817904, + -2.9774364104195987, -2.8499491011767284, -2.393754833976708, + -1.7749120634960658, -1.068559075431732, -0.5102397418411908, + -0.1761135182833673, -0.09146297973082917, -0.19413406206895184, + -0.33600938158284654, -0.3468026801453725, -0.12019259939551187, + 0.383518287185344, 1.0440726709706418, 1.735679606516173, + 2.2009046467087465, 2.394685360135149, 2.247061694823211, + 1.9466258844724846, 1.8125833447334982, 2.198201783887118, + 3.6350428491107083, 6.038371752409484, 9.94646891108975, + 14.654487046917762, 20.108159255595403, 25.405743079937693, + 29.849354788974637 + ], + "pressure:J3:branch129_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:J3:branch146_seg0": [ + 30.292641994960835, 33.384540893724896, 34.544678379576574, + 33.81919666714773, 31.5245847365228, 28.06587547601478, + 23.867837330028713, 19.61746667688097, 15.706493415712925, + 12.142861123228132, 9.123220967679295, 6.480375431518495, + 3.9009589393694077, 1.4308263875150862, -1.1533622628495346, + -3.7863072878174995, -6.191865071361056, -8.494020555513723, + -10.227348852656393, -11.53323255065606, -12.390014537277114, + -12.812484653975835, -13.055400055308953, -13.162093008373123, + -13.228999131268363, -13.243214819946854, -13.117364937112669, + -12.75565058334751, -12.119309834187488, -11.212175983875209, + -10.189245299462298, -9.312190297226204, -8.830497755661717, + -9.001899128022588, -9.982703819074551, -11.685980904322442, + -13.90426712252818, -16.212300696554653, -18.244962742237156, + -19.433912861977397, -19.6157757445804, -18.608032691439803, + -16.573739992357126, -13.696481968003429, -10.568436648814822, + -7.362056555305861, -4.487447648986045, -2.2527041489026765, + -0.4191815237772368, 0.8501622949490701, 1.863539363380544, + 2.737431223243813, 3.4799364391513175, 4.180360007269127, + 4.683367220751925, 4.8628139660337855, 4.650439273097722, + 3.9918862226033123, 2.9512674047190393, 1.7049308056785721, + 0.4821689965164349, -0.5635492077950675, -1.2502283236351879, + -1.538416712275332, -1.552261382192602, -1.3878682168830134, + -1.24720616647212, -1.2765766058408028, -1.5208887582682051, + -1.9648029432737184, -2.4507873997509035, -2.8544745005750056, + -3.007255740146201, -2.8290366917903316, -2.340507942289429, + -1.6790030056036944, -0.970754331106193, -0.4079061299388825, + -0.11269746649659136, -0.06539564179672681, -0.19572301488741908, + -0.35382780715306084, -0.36156657759986705, -0.10972546523500176, + 0.41340934473094504, 1.11168683231392, 1.7891667471708264, + 2.276247811077986, 2.420462837365013, 2.232037177198793, + 1.900223226015924, 1.7516164428179404, 2.1871945147357033, + 3.638903494022726, 6.261105066465419, 10.294059156558156, + 15.107280866536833, 20.641921687263054, 25.998440676721, + 30.292641994960835 + ], + "pressure:J3:branch146_seg0": [ + 196227.7777161944, 207587.85617472779, 209438.9436674669, + 197659.32333723904, 177910.08271316334, 154332.56615907073, + 128386.29489788554, 100535.64628485043, 80358.9078136201, + 61628.989713343384, 43057.54854933462, 29980.426254528476, + 13709.542118514266, -1344.3983482349895, -15923.965472639386, + -33387.39801837398, -45929.745218339136, -58778.80997060232, + -67946.10517756414, -73153.89426415329, -77256.58174820883, + -78547.04509196256, -79169.2601753987, -79714.31634356861, + -79875.34418191973, -79638.54765025637, -78217.54104463564, + -74895.90425625491, -69876.53833211094, -63697.07513368014, + -57299.28787918171, -52925.514324476295, -52487.24796987119, + -56045.3759426704, -65005.457389586554, -77654.42901496579, + -92900.62010876831, -105394.34224911255, -116078.13312110885, + -119535.19405493153, -115678.77058735277, -105541.46121350031, + -90176.35384559406, -70130.93076324058, -51011.94757122539, + -33125.413183919816, -16534.86215409167, -5896.984633328012, + 2990.567890481694, 9570.956246738473, 14392.70198550549, + 19658.173056066225, 23748.099961258245, 27060.228832935725, + 29688.182305843282, 29154.142888837116, 26064.806418292603, + 20597.550075077514, 13325.508467186191, 4878.948957911156, + -1626.3206710823445, -6390.6870621697, -9736.300398803636, + -9623.617149854212, -8787.974482587842, -7699.0554627583315, + -7129.321805217597, -8093.1642607362, -10376.207874371383, + -13622.708493539669, -16422.211056438806, -18110.575492243188, + -18029.228167237663, -15731.8477199224, -11651.299760549937, + -7307.882304554643, -3368.0892828699034, -565.3402707561778, + 81.22893642078864, -758.1800030220285, -1811.6121901831161, + -2516.1756831052303, -1800.3852062061965, 838.2515313950072, + 4818.619228170186, 9590.45353652413, 13079.147869192388, + 14692.875282967918, 14498.52413106825, 12198.576278836945, + 10078.818816165787, 10662.98486739937, 16191.530917613845, + 29352.073327707167, 49236.4942109069, 78630.561987597, 109736.19570090872, + 143302.8144497451, 175793.0342397772, 196227.7777161944 + ], + "flow:branch5_seg0:J4": [ + 460.08544330848247, 540.4435826782346, 601.2605443541877, + 637.8448843415409, 648.5630069628261, 634.7416378596063, + 599.4037256931147, 550.2336176236571, 492.9560308816805, + 431.57022455445474, 370.5676793596393, 310.99684563336945, + 251.94350798406435, 193.80494392965204, 135.1054659041003, + 75.79560895374969, 18.289048263589393, -37.848842891869815, + -88.07325851481625, -132.22905980479908, -169.1826817869269, + -198.30819526173923, -221.5430793061646, -239.5507450948991, + -253.75159755918813, -264.67275180954323, -272.00530999394573, + -275.003702130429, -273.0934943454251, -265.9650304074305, + -254.78880245485715, -242.21575877458574, -231.42341903100856, + -226.4005462131727, -230.57635859334115, -245.19945669791733, + -269.87236586851935, -301.2582347942345, -334.95876965099484, + -364.12582437605533, -383.9535983619746, -389.7396187850786, + -379.96585119282526, -354.4980492321421, -317.81024349148316, + -272.54842834857584, -223.97636592077134, -177.3676879250381, + -133.13823284614972, -94.62222168411388, -60.42043787096408, + -29.94534963243049, -3.0436750093625187, 21.397843496738965, + 42.17675957021912, 58.09912640115766, 67.97468160266816, + 70.66015637667327, 65.99609054605914, 55.33527182504322, + 40.81709725789496, 24.904312908924652, 10.36262312464346, + -0.9118117433056951, -8.713249819519012, -13.213441230973583, + -16.06971553611732, -19.05611632209796, -23.421716012375846, + -29.847053108252116, -37.49523735388723, -45.23832888993239, + -51.104435278534616, -53.51461831232184, -51.73748650211065, + -46.32811036132715, -38.29871700075146, -29.73153747852951, + -22.584569390644408, -17.68857037257365, -15.243984472454247, + -14.28232982107229, -13.020379529152063, -9.808542003852502, + -3.6146722111593235, 5.391151414648471, 15.83714660778807, + 25.729547728442213, 32.907337802486865, 36.28226268918327, + 36.67321470417246, 36.86036665720018, 41.37279287834487, 56.0970538191708, + 85.29529182090396, 133.98638520980464, 199.31670917751117, + 281.37930039624973, 371.88938156690745, 460.08544330848247 + ], + "pressure:branch5_seg0:J4": [ + 195548.8072754528, 206967.3124863604, 208997.2532421916, + 197397.86613709707, 177882.80152028622, 154412.0345750485, + 128705.89564193199, 100877.40172696082, 80826.59070524527, + 62069.570381278456, 43521.46078780469, 30459.408247752086, + 14142.089027938073, -826.3023645671624, -15481.142446911002, + -32847.68190284743, -45468.18347975933, -58334.40288806534, + -67518.17517878403, -72828.63041907475, -76958.2079253504, + -78322.62750147842, -78984.95109439963, -79563.05290364864, + -79753.0083051904, -79541.34242220712, -78147.44571589968, + -74867.7440570583, -69883.59279479505, -63742.47534790441, + -57376.177089135344, -52993.48711293999, -52535.60738154333, + -56038.12634665773, -64901.56912063187, -77477.68882920303, + -92630.50589242867, -105078.99273026442, -115788.93264985319, + -119271.32938910747, -115539.07940448736, -105540.42176314308, + -90285.07140864516, -70369.57777450186, -51362.706801692286, + -33455.05705281733, -16943.407606364242, -6229.498652963175, + 2666.7829130088403, 9288.04103998311, 14151.643354016644, + 19430.124173103653, 23555.367975238136, 26873.841402415466, + 29540.4028286251, 29041.065446319055, 26010.203119049627, + 20588.786047890822, 13393.536090315038, 4967.847532197428, + -1485.1863223363741, -6273.945043167741, -9617.022425466022, + -9545.546067427422, -8739.210842763374, -7670.258610318091, + -7106.580908541793, -8061.316166369229, -10331.006341758633, + -13559.35158228166, -16349.992150690543, -18052.735445205522, + -17989.452056887203, -15721.182089473961, -11678.708464042747, + -7357.448626374721, -3427.464957876491, -627.5631071747639, + 37.43694357220103, -784.0748031069759, -1823.4055782684095, + -2521.5528051989613, -1815.7809488616601, 805.8308305737601, + 4750.156037038277, 9514.300217416518, 12980.407640885074, + 14622.59233806489, 14446.883515779873, 12183.652254913824, + 10080.15044916391, 10646.200238671807, 16124.035097060616, + 29142.694097580657, 48932.37010680301, 78138.16293664902, + 109082.92025823686, 142633.29840168802, 174992.1228522285, + 195548.8072754528 + ], + "flow:J4:branch6_seg0": [ + 387.321401910672, 461.30864339312535, 520.5020506786706, + 559.8940785202326, 576.8747233452552, 571.5968417532197, + 546.4525441440883, 507.1593338722544, 458.7394568372483, + 405.3049271416615, 351.14614061878876, 297.4426147262499, + 244.37463087154617, 192.0561750951668, 139.29411170892564, + 86.34924563350842, 34.13912390919618, -16.705563997066648, + -63.17354449937498, -104.67184820253793, -139.82902694533405, + -168.24459872190496, -191.02124591067388, -208.83483263888516, + -222.9100753139234, -233.83718713012266, -241.55520407069284, + -245.56574601450603, -245.30561165976658, -240.44537832709543, + -231.70785333048593, -221.05063153385674, -211.08593939913214, + -205.25068710518906, -206.6111866397817, -216.85946590064106, + -236.04405394390832, -262.1244277242852, -291.352501612955, + -318.3239538676139, -338.4841530564416, -347.383861610014, + -342.91378841815543, -324.64622277686476, -295.3457322548251, + -257.37057963973496, -215.34800148448795, -173.4052268884693, + -133.17008274458118, -97.29570380494349, -65.26470620239891, + -36.77214675001365, -11.51492637833265, 11.340757810550182, + 31.067974161004305, 46.786519285921855, 57.419376322415445, + 61.88486259850664, 59.873080362262996, 52.20306723817445, + 40.49131284114722, 26.814093994358633, 13.679298301292674, + 2.778293713358336, -5.1550578516398184, -10.114188955419687, + -13.265383547407362, -16.05770311863224, -19.72159903971827, + -24.99814331462775, -31.511201886654337, -38.40816752780889, + -44.081555882726256, -47.10996726241976, -46.66212245095404, + -42.8640882369307, -36.47239172009491, -29.111482418239564, + -22.470047776928315, -17.52218894349109, -14.691609522343812, + -13.367130719080752, -12.1991752552519, -9.74360155156712, + -4.937912804786367, 2.360749959346234, 11.2616040345366, + 20.19816698444057, 27.244143376619512, 31.270399133515454, + 32.49003461505253, 32.84300638866131, 35.93115413910601, + 46.54819341272605, 69.00598394880848, 107.42610643027412, + 161.15377836241487, 230.18039885673022, 308.26021948264804, + 387.321401910672 + ], + "pressure:J4:branch6_seg0": [ + 195548.8072754528, 206967.3124863604, 208997.2532421916, + 197397.86613709707, 177882.80152028622, 154412.0345750485, + 128705.89564193199, 100877.40172696082, 80826.59070524527, + 62069.570381278456, 43521.46078780469, 30459.408247752086, + 14142.089027938073, -826.3023645671624, -15481.142446911002, + -32847.68190284743, -45468.18347975933, -58334.40288806534, + -67518.17517878403, -72828.63041907475, -76958.2079253504, + -78322.62750147842, -78984.95109439963, -79563.05290364864, + -79753.0083051904, -79541.34242220712, -78147.44571589968, + -74867.7440570583, -69883.59279479505, -63742.47534790441, + -57376.177089135344, -52993.48711293999, -52535.60738154333, + -56038.12634665773, -64901.56912063187, -77477.68882920303, + -92630.50589242867, -105078.99273026442, -115788.93264985319, + -119271.32938910747, -115539.07940448736, -105540.42176314308, + -90285.07140864516, -70369.57777450186, -51362.706801692286, + -33455.05705281733, -16943.407606364242, -6229.498652963175, + 2666.7829130088403, 9288.04103998311, 14151.643354016644, + 19430.124173103653, 23555.367975238136, 26873.841402415466, + 29540.4028286251, 29041.065446319055, 26010.203119049627, + 20588.786047890822, 13393.536090315038, 4967.847532197428, + -1485.1863223363741, -6273.945043167741, -9617.022425466022, + -9545.546067427422, -8739.210842763374, -7670.258610318091, + -7106.580908541793, -8061.316166369229, -10331.006341758633, + -13559.35158228166, -16349.992150690543, -18052.735445205522, + -17989.452056887203, -15721.182089473961, -11678.708464042747, + -7357.448626374721, -3427.464957876491, -627.5631071747639, + 37.43694357220103, -784.0748031069759, -1823.4055782684095, + -2521.5528051989613, -1815.7809488616601, 805.8308305737601, + 4750.156037038277, 9514.300217416518, 12980.407640885074, + 14622.59233806489, 14446.883515779873, 12183.652254913824, + 10080.15044916391, 10646.200238671807, 16124.035097060616, + 29142.694097580657, 48932.37010680301, 78138.16293664902, + 109082.92025823686, 142633.29840168802, 174992.1228522285, + 195548.8072754528 + ], + "flow:J4:branch91_seg0": [ + 36.064179976938675, 39.324683140969235, 40.21914023208681, + 38.929168124686356, 35.887141770816385, 31.67160151789817, + 26.61697853618317, 21.70586667526215, 17.25198278415813, + 13.267762019335335, 9.842333310153407, 6.887741829208247, + 3.914794855634324, 1.012851854969545, -1.945493732276082, + -5.104268817022234, -7.769912758067324, -10.41082315952429, + -12.312152711640156, -13.671755193516116, -14.58243806920811, + -14.960398960869123, -15.198233187197413, -15.298216047253, + -15.365004277282173, -15.365676924023871, -15.183655694567205, + -14.695682452407752, -13.890167945695062, -12.772019740360873, + -11.561891624066833, -10.593320984013085, -10.150424971124014, + -10.517991433751211, -11.874575570153116, -14.016847339522107, + -16.72920002188389, -19.384514491726325, -21.63524839249959, + -22.78736688624834, -22.689083066344494, -21.200526810608725, + -18.609087131055414, -15.064187213026788, -11.38371012098317, + -7.735731253258859, -4.4602397709016595, -2.086636852961817, + -0.07109055042893192, 1.2673636427334758, 2.3693303677421187, + 3.3562383155082207, 4.184041355696412, 4.982478913388488, + 5.514836678244232, 5.639617999296135, 5.286201480229069, + 4.421432096698646, 3.11774217025489, 1.636885646422444, + 0.2285995700588504, -0.9011633928478957, -1.6206071799399544, + -1.8333269412523956, -1.7795469234780046, -1.5555109820607815, + -1.4048506503450084, -1.489508545203958, -1.826934612146311, + -2.3900260495242147, -2.9572815684706253, -3.389083312057254, + -3.499648247037277, -3.210879179136209, -2.5648313414935053, + -1.7674292478664768, -0.9475913316791928, -0.3376766515845228, + -0.06812804410175757, -0.07914180499422188, -0.2662537069725518, + -0.44907428703517566, -0.4132935962973993, -0.052501117550715654, + 0.6255983113561513, 1.469048053869879, 2.2460880753223575, + 2.738065070748285, 2.822608918308292, 2.5165671902392157, + 2.1060750814963636, 2.0041439722218133, 2.673103525675359, + 4.656309659985911, 7.953501777876486, 12.993181895485387, + 18.744916392627058, 25.235691663539658, 31.424887403221327, + 36.064179976938675 + ], + "pressure:J4:branch91_seg0": [ + 195548.8072754528, 206967.3124863604, 208997.2532421916, + 197397.86613709707, 177882.80152028622, 154412.0345750485, + 128705.89564193199, 100877.40172696082, 80826.59070524527, + 62069.570381278456, 43521.46078780469, 30459.408247752086, + 14142.089027938073, -826.3023645671624, -15481.142446911002, + -32847.68190284743, -45468.18347975933, -58334.40288806534, + -67518.17517878403, -72828.63041907475, -76958.2079253504, + -78322.62750147842, -78984.95109439963, -79563.05290364864, + -79753.0083051904, -79541.34242220712, -78147.44571589968, + -74867.7440570583, -69883.59279479505, -63742.47534790441, + -57376.177089135344, -52993.48711293999, -52535.60738154333, + -56038.12634665773, -64901.56912063187, -77477.68882920303, + -92630.50589242867, -105078.99273026442, -115788.93264985319, + -119271.32938910747, -115539.07940448736, -105540.42176314308, + -90285.07140864516, -70369.57777450186, -51362.706801692286, + -33455.05705281733, -16943.407606364242, -6229.498652963175, + 2666.7829130088403, 9288.04103998311, 14151.643354016644, + 19430.124173103653, 23555.367975238136, 26873.841402415466, + 29540.4028286251, 29041.065446319055, 26010.203119049627, + 20588.786047890822, 13393.536090315038, 4967.847532197428, + -1485.1863223363741, -6273.945043167741, -9617.022425466022, + -9545.546067427422, -8739.210842763374, -7670.258610318091, + -7106.580908541793, -8061.316166369229, -10331.006341758633, + -13559.35158228166, -16349.992150690543, -18052.735445205522, + -17989.452056887203, -15721.182089473961, -11678.708464042747, + -7357.448626374721, -3427.464957876491, -627.5631071747639, + 37.43694357220103, -784.0748031069759, -1823.4055782684095, + -2521.5528051989613, -1815.7809488616601, 805.8308305737601, + 4750.156037038277, 9514.300217416518, 12980.407640885074, + 14622.59233806489, 14446.883515779873, 12183.652254913824, + 10080.15044916391, 10646.200238671807, 16124.035097060616, + 29142.694097580657, 48932.37010680301, 78138.16293664902, + 109082.92025823686, 142633.29840168802, 174992.1228522285, + 195548.8072754528 + ], + "flow:J4:branch131_seg0": [ + 36.69986142087407, 39.810256144142876, 40.539353443429775, + 39.02163769661995, 35.80114184675237, 31.473194588493048, + 26.334203012830567, 21.36841707613305, 16.96459126030143, + 12.997535393450708, 9.579205430724295, 6.66648907791801, + 3.6540822568694358, 0.7359169795232008, -2.243152072542333, + -5.449367862746782, -8.080162887525274, -10.732455735274883, + -12.58756130378879, -13.88545640873758, -14.771216772382646, + -15.103197578962435, -15.323600208304002, -15.417696408753583, + -15.476517967967794, -15.46988775540695, -15.266450228674818, + -14.742273663519244, -13.897714739968713, -12.747632339960635, + -11.519057500288813, -10.571806256708102, -10.187054660748624, + -10.631867674233737, -12.09059638342031, -14.323143457754734, + -17.099111902725106, -19.749292578211996, -21.971019645547955, + -23.014503622192834, -22.780362239189632, -21.15523036445074, + -18.44297564361298, -14.787639242251203, -11.080801115675435, + -7.442117455581923, -4.168124665381487, -1.8758241836061869, + 0.1029404488600605, 1.4061184780964677, 2.474937963694063, + 3.470558802074756, 4.287210013273937, 5.0746067728001405, + 5.593948730970395, 5.67298911593941, 5.269103800024017, 4.353861681467898, + 3.005268013540682, 1.4953189404453018, 0.09718484668920113, + -1.0086176925863803, -1.6960679967086605, -1.8567785154127816, + -1.7786450444008683, -1.5437412934931436, -1.3994813383667724, + -1.5089046582621377, -1.8731823605103366, -2.4588837440979088, + -3.0267538987621343, -3.4410780500672207, -3.523231148771176, + -3.193771870766493, -2.5105327096648944, -1.6965928765299791, + -0.8787339489781135, -0.2823784087052944, -0.0463935696146207, + -0.08723962408853701, -0.2861212431375103, -0.46612481495604424, + -0.4079106776028584, -0.012439334734422153, 0.6976422822708457, + 1.5613534014322197, 2.3294544979287624, 2.793315673253329, + 2.8405855075587336, 2.495296365428287, 2.0771050076237083, + 2.0132162963167315, 2.7685352135628833, 4.8925507464589675, + 8.335806094219967, 13.567096884046194, 19.41801442246954, + 25.963209875979217, 32.20427468103834, 36.69986142087407 + ], + "pressure:J4:branch131_seg0": [ + 195548.8072754528, 206967.3124863604, 208997.2532421916, + 197397.86613709707, 177882.80152028622, 154412.0345750485, + 128705.89564193199, 100877.40172696082, 80826.59070524527, + 62069.570381278456, 43521.46078780469, 30459.408247752086, + 14142.089027938073, -826.3023645671624, -15481.142446911002, + -32847.68190284743, -45468.18347975933, -58334.40288806534, + -67518.17517878403, -72828.63041907475, -76958.2079253504, + -78322.62750147842, -78984.95109439963, -79563.05290364864, + -79753.0083051904, -79541.34242220712, -78147.44571589968, + -74867.7440570583, -69883.59279479505, -63742.47534790441, + -57376.177089135344, -52993.48711293999, -52535.60738154333, + -56038.12634665773, -64901.56912063187, -77477.68882920303, + -92630.50589242867, -105078.99273026442, -115788.93264985319, + -119271.32938910747, -115539.07940448736, -105540.42176314308, + -90285.07140864516, -70369.57777450186, -51362.706801692286, + -33455.05705281733, -16943.407606364242, -6229.498652963175, + 2666.7829130088403, 9288.04103998311, 14151.643354016644, + 19430.124173103653, 23555.367975238136, 26873.841402415466, + 29540.4028286251, 29041.065446319055, 26010.203119049627, + 20588.786047890822, 13393.536090315038, 4967.847532197428, + -1485.1863223363741, -6273.945043167741, -9617.022425466022, + -9545.546067427422, -8739.210842763374, -7670.258610318091, + -7106.580908541793, -8061.316166369229, -10331.006341758633, + -13559.35158228166, -16349.992150690543, -18052.735445205522, + -17989.452056887203, -15721.182089473961, -11678.708464042747, + -7357.448626374721, -3427.464957876491, -627.5631071747639, + 37.43694357220103, -784.0748031069759, -1823.4055782684095, + -2521.5528051989613, -1815.7809488616601, 805.8308305737601, + 4750.156037038277, 9514.300217416518, 12980.407640885074, + 14622.59233806489, 14446.883515779873, 12183.652254913824, + 10080.15044916391, 10646.200238671807, 16124.035097060616, + 29142.694097580657, 48932.37010680301, 78138.16293664902, + 109082.92025823686, 142633.29840168802, 174992.1228522285, + 195548.8072754528 + ], + "flow:branch6_seg0:J5": [ + 387.2803229650557, 461.280531887894, 520.6190330551129, 559.9906637866077, + 577.0539323614103, 571.7571489948828, 546.7325900395009, + 507.35148564975725, 459.04127361128667, 405.42190523690357, + 351.3781641015066, 297.6387798809987, 244.52049389016574, + 192.32388112169568, 139.3765764545244, 86.65410259460472, + 34.24552024280715, -16.644912926270464, -63.079582919535575, + -104.65647442395422, -139.8177852222454, -168.2503389166296, + -191.02749556279718, -208.8447946468893, -222.90821591447082, + -233.85170293417568, -241.569694701646, -245.60302245239677, + -245.3378322523224, -240.50406243944707, -231.7407606711047, + -221.07750432054817, -211.07901725930904, -205.2009097404971, + -206.4855723901782, -216.7509564138281, -235.82870663450814, + -261.9858787913083, -291.2773825111018, -318.2761954849362, + -338.55032826351083, -347.5676413164458, -343.04012856351767, + -324.8011751597216, -295.53312730388507, -257.4629281659046, + -215.4416604350213, -173.42946118242216, -133.20337756737277, + -97.28440365912375, -65.30876421003487, -36.766627282407775, + -11.527940565517426, 11.308719195417789, 31.075815155371505, + 46.7907985264659, 57.45981607844165, 61.940289295714564, + 59.95972931462235, 52.28014379561315, 40.59461328586435, + 26.832229361911267, 13.728752933926991, 2.780651477932198, + -5.171991201750547, -10.125534063593744, -13.261739847316726, + -16.037824329613304, -19.703097440502756, -24.97380635891824, + -31.49381693544801, -38.40500342470677, -44.1034832563025, + -47.12836619617856, -46.699107388417104, -42.88183287708965, + -36.49983038942117, -29.107806924262075, -22.468648043595273, + -17.51369464133752, -14.681163727679387, -13.365622336014344, + -12.214143791474381, -9.773802388890648, -4.988374441745018, + 2.3160765961303262, 11.20808455907494, 20.201569178116554, + 27.249592055611014, 31.290050856802726, 32.50567072161301, + 32.81547563445228, 35.868152508165736, 46.338410554197054, + 68.86419952616805, 107.19601854582272, 160.94650997384096, + 229.95781678762367, 308.1911460726058, 387.2803229650557 + ], + "pressure:branch6_seg0:J5": [ + 141562.72244171088, 158775.84248539543, 169830.55045265402, + 171892.8215361213, 167015.37831601404, 156578.95862366434, + 141910.18239955048, 123950.94683353114, 107338.50004633219, + 90391.18386290768, 74126.71327952594, 59634.853253599, 44467.296228882195, + 30009.37236025772, 15218.904345395336, 140.50609267939242, + -13942.117592694054, -27512.173812228768, -38669.53329631953, + -47721.907695381145, -55051.91189831737, -60087.42000393759, + -63900.16763367834, -66803.92548165537, -68938.2554624677, + -70495.98662693187, -71058.05093579451, -70343.37598286798, + -68213.00735095944, -64902.46252365505, -60727.71713102366, + -57037.37145594497, -54902.11761174823, -55057.93703068314, + -58531.02752307346, -65205.54370120507, -74226.35823184383, + -83933.60921086078, -93276.18658226015, -99471.13053846036, + -101704.18429541387, -99435.36317768223, -92413.90560277346, + -81310.77376853279, -68685.47154373796, -54855.044834067674, + -41012.76236944321, -29585.301642580984, -19299.687020647765, + -10737.912902423464, -3776.0586875187655, 2960.70092820685, + 8509.408699635213, 13401.70576900764, 17625.04959472924, + 19943.632825127683, 20471.95115330417, 19013.372645934633, + 15731.678217094024, 11029.395132666856, 6297.763961941654, + 1820.8394069033168, -1728.9785212156862, -3724.027059036325, + -4751.715993830678, -5063.49722676959, -5237.755726942154, + -5930.736376987262, -7344.566369773142, -9437.865411063347, + -11627.522624177318, -13491.193392231546, -14504.04543462909, + -14124.627259002558, -12486.026835225479, -10058.68486544628, + -7392.17911701336, -4900.852560201377, -3455.5114784854086, + -2895.4155541031714, -2840.4461616573535, -2974.199695622186, + -2619.0712290402867, -1306.0945152005538, 975.7456428093541, + 4034.9057031905622, 6960.972250653084, 9260.762890253256, + 10407.62519242226, 10228.687303041597, 9525.45812746222, + 9574.980183567788, 11980.00195714398, 18421.58356640205, + 29934.67304998579, 47641.41544634903, 68914.65114982704, + 93579.30686599176, 120077.74365933512, 141562.72244171088 + ], + "flow:J5:branch7_seg0": [ + 184.43132709772556, 224.58262005613145, 259.4569525075233, + 285.94582400007465, 301.9208491766864, 306.5400686720847, + 300.3880030270557, 285.48633997271185, 264.1256394432094, + 238.50184814500426, 211.04516050480183, 182.68393868227494, + 154.13884331237125, 125.6507487252909, 96.80793467768848, + 67.94391575549346, 39.05799040841032, 10.800813294386716, + -15.711925749073282, -39.99376507653583, -61.17362746682196, + -78.98600949221513, -93.64423581825191, -105.42801202738497, + -114.88275792203451, -122.36500244440346, -127.97102499314991, + -131.58164427161657, -132.94436434907695, -131.8878299748943, + -128.60936739763764, -123.86813954015582, -118.81013506797308, + -115.06618820167154, -114.20644398326567, -117.41146289960693, + -125.04270435039972, -136.66838618998938, -150.70467632468456, + -164.8480747784584, -176.76673712244613, -184.0483027957526, + -185.1340749205319, -179.4227379398171, -167.53692329188192, + -150.4164401650132, -130.17191506499282, -108.6460075861245, + -87.1932771127467, -67.17834596919771, -48.84054980457007, + -32.26481119705563, -17.384711193288506, -3.8987724792166265, + 7.970072602366408, 17.875454453589725, 25.31470491982992, + 29.719736409645105, 30.82576255854181, 28.808485113913722, + 24.270464967670396, 18.113553921338553, 11.585799219688619, + 5.568123557798343, 0.7245676061224119, -2.7381250693466566, + -5.149140876413685, -7.080539106908582, -9.145744710021905, + -11.785747378279673, -15.025585682913318, -18.586314766591133, + -21.80444344795997, -23.991662936490247, -24.644504036033954, + -23.608835676861556, -21.11161160339809, -17.77934733254, + -14.390086356946112, -11.524706256508676, -9.552075154250904, + -8.36557796084857, -7.481092239537067, -6.252495491774891, + -4.102773636971361, -0.7925533282629695, 3.4527285174939872, + 8.035840821593482, 12.053791909390558, 14.874220043782927, + 16.325331066659036, 17.021221778994914, 18.433426125068223, + 22.6614717761685, 32.034281356219445, 48.579482076371505, + 72.93721458588445, 105.36462242188946, 143.602754859867, + 184.43132709772556 + ], + "pressure:J5:branch7_seg0": [ + 141562.72244171088, 158775.84248539543, 169830.55045265402, + 171892.8215361213, 167015.37831601404, 156578.95862366434, + 141910.18239955048, 123950.94683353114, 107338.50004633219, + 90391.18386290768, 74126.71327952594, 59634.853253599, 44467.296228882195, + 30009.37236025772, 15218.904345395336, 140.50609267939242, + -13942.117592694054, -27512.173812228768, -38669.53329631953, + -47721.907695381145, -55051.91189831737, -60087.42000393759, + -63900.16763367834, -66803.92548165537, -68938.2554624677, + -70495.98662693187, -71058.05093579451, -70343.37598286798, + -68213.00735095944, -64902.46252365505, -60727.71713102366, + -57037.37145594497, -54902.11761174823, -55057.93703068314, + -58531.02752307346, -65205.54370120507, -74226.35823184383, + -83933.60921086078, -93276.18658226015, -99471.13053846036, + -101704.18429541387, -99435.36317768223, -92413.90560277346, + -81310.77376853279, -68685.47154373796, -54855.044834067674, + -41012.76236944321, -29585.301642580984, -19299.687020647765, + -10737.912902423464, -3776.0586875187655, 2960.70092820685, + 8509.408699635213, 13401.70576900764, 17625.04959472924, + 19943.632825127683, 20471.95115330417, 19013.372645934633, + 15731.678217094024, 11029.395132666856, 6297.763961941654, + 1820.8394069033168, -1728.9785212156862, -3724.027059036325, + -4751.715993830678, -5063.49722676959, -5237.755726942154, + -5930.736376987262, -7344.566369773142, -9437.865411063347, + -11627.522624177318, -13491.193392231546, -14504.04543462909, + -14124.627259002558, -12486.026835225479, -10058.68486544628, + -7392.17911701336, -4900.852560201377, -3455.5114784854086, + -2895.4155541031714, -2840.4461616573535, -2974.199695622186, + -2619.0712290402867, -1306.0945152005538, 975.7456428093541, + 4034.9057031905622, 6960.972250653084, 9260.762890253256, + 10407.62519242226, 10228.687303041597, 9525.45812746222, + 9574.980183567788, 11980.00195714398, 18421.58356640205, + 29934.67304998579, 47641.41544634903, 68914.65114982704, + 93579.30686599176, 120077.74365933512, 141562.72244171088 + ], + "flow:J5:branch10_seg0": [ + 36.363950898126305, 42.03174059131079, 45.90994631381478, + 47.705319285602535, 47.44983475688335, 45.32411041051247, + 41.721981764028214, 37.28868254532241, 32.52973411121992, + 27.656904702481935, 23.128841085640744, 18.79991555631915, + 14.600505149504738, 10.537030822793453, 6.3479417559969775, + 2.217940551710723, -1.8610693462599812, -5.77177858535718, + -9.143477390416098, -12.040709464424845, -14.332563455991032, + -16.027770239359217, -17.30951599760197, -18.24656023040368, + -18.960690623513404, -19.491255047798926, -19.785293489154604, + -19.774295822691194, -19.392466965958423, -18.630262907441914, + -17.58518653260612, -16.509751209613267, -15.661594680833996, + -15.37841670437979, -15.901900061166053, -17.31607471919715, + -19.47294284508404, -22.120839988079627, -24.79374675549467, + -26.919330225942243, -28.161002353505076, -28.15898351400386, + -26.84110176603695, -24.34231068944954, -21.086957681539584, + -17.300094675702823, -13.4910172078652, -10.013181300146224, + -6.8826247449256925, -4.295729912012774, -2.0934123882046825, + -0.15438933039579172, 1.5235845494679299, 3.0528411497930756, + 4.325364913512702, 5.2233028593983395, 5.658794463791844, + 5.531831078022654, 4.858558834540551, 3.7683651225150228, + 2.464307704397412, 1.1275090102680643, 0.03706974309823131, + -0.7377240401154823, -1.1847769691900758, -1.3574325660020896, + -1.4302218099705672, -1.5625694733184015, -1.85730361448385, + -2.346669437528522, -2.9398954714521874, -3.5218631747079248, + -3.9177679761516133, -3.996076071722099, -3.7272641174088257, + -3.170240966042851, -2.4474291154612007, -1.733614959964769, + -1.2018708629797592, -0.893411323147322, -0.8051432170552959, + -0.8261308216085295, -0.7895790731318888, -0.5546457194243304, + -0.04906762989005871, 0.6920483752239649, 1.5229380703294324, + 2.277826220220426, 2.7446941535455296, 2.8752597468052175, + 2.761482743670898, 2.666138986607864, 3.0024772677063973, + 4.232320222821908, 6.751502980118075, 10.827566017359928, + 16.199332508988984, 22.77036094364645, 29.807398776772427, + 36.363950898126305 + ], + "pressure:J5:branch10_seg0": [ + 141562.72244171088, 158775.84248539543, 169830.55045265402, + 171892.8215361213, 167015.37831601404, 156578.95862366434, + 141910.18239955048, 123950.94683353114, 107338.50004633219, + 90391.18386290768, 74126.71327952594, 59634.853253599, 44467.296228882195, + 30009.37236025772, 15218.904345395336, 140.50609267939242, + -13942.117592694054, -27512.173812228768, -38669.53329631953, + -47721.907695381145, -55051.91189831737, -60087.42000393759, + -63900.16763367834, -66803.92548165537, -68938.2554624677, + -70495.98662693187, -71058.05093579451, -70343.37598286798, + -68213.00735095944, -64902.46252365505, -60727.71713102366, + -57037.37145594497, -54902.11761174823, -55057.93703068314, + -58531.02752307346, -65205.54370120507, -74226.35823184383, + -83933.60921086078, -93276.18658226015, -99471.13053846036, + -101704.18429541387, -99435.36317768223, -92413.90560277346, + -81310.77376853279, -68685.47154373796, -54855.044834067674, + -41012.76236944321, -29585.301642580984, -19299.687020647765, + -10737.912902423464, -3776.0586875187655, 2960.70092820685, + 8509.408699635213, 13401.70576900764, 17625.04959472924, + 19943.632825127683, 20471.95115330417, 19013.372645934633, + 15731.678217094024, 11029.395132666856, 6297.763961941654, + 1820.8394069033168, -1728.9785212156862, -3724.027059036325, + -4751.715993830678, -5063.49722676959, -5237.755726942154, + -5930.736376987262, -7344.566369773142, -9437.865411063347, + -11627.522624177318, -13491.193392231546, -14504.04543462909, + -14124.627259002558, -12486.026835225479, -10058.68486544628, + -7392.17911701336, -4900.852560201377, -3455.5114784854086, + -2895.4155541031714, -2840.4461616573535, -2974.199695622186, + -2619.0712290402867, -1306.0945152005538, 975.7456428093541, + 4034.9057031905622, 6960.972250653084, 9260.762890253256, + 10407.62519242226, 10228.687303041597, 9525.45812746222, + 9574.980183567788, 11980.00195714398, 18421.58356640205, + 29934.67304998579, 47641.41544634903, 68914.65114982704, + 93579.30686599176, 120077.74365933512, 141562.72244171088 + ], + "flow:J5:branch53_seg0": [ + 30.191376403601524, 34.25351644304523, 36.829173057267184, + 37.58493845476531, 36.81088821026716, 34.692624701053425, + 31.527378871574953, 27.813334949010507, 24.102829532431937, + 20.28329364574671, 16.80411099645098, 13.534955142115733, + 10.235210992113933, 7.093842766034165, 3.7953237592466027, + 0.5540526408085906, -2.5582073290477307, -5.599856245977217, + -8.075795227834007, -10.157646560259394, -11.817328064771377, + -12.970483915439765, -13.86116737338635, -14.517280195969493, + -15.008565408083944, -15.37410429097107, -15.532006806862391, + -15.425647988548489, -15.016701075406804, -14.323681076526283, + -13.432676517675004, -12.607050283587629, -12.048322279933487, + -11.997728756126726, -12.6494393233708, -14.010090182181548, + -15.885525299301545, -18.033156478800024, -20.1130804711278, + -21.56545345312252, -22.236626368763726, -21.887423211450415, + -20.491006514670996, -18.193331160757978, -15.489087835489894, + -12.455624924828436, -9.441845720387178, -6.876367479499707, + -4.541993981253851, -2.643847301016311, -1.0611320120735768, + 0.41534244983870133, 1.6547343669940744, 2.7831302831499185, + 3.7178611054967434, 4.292307155754954, 4.489550182665817, + 4.2364177360024815, 3.5634117040343503, 2.598365905247096, + 1.5523877467199467, 0.5178565160103853, -0.2634162693611535, + -0.7546241487541523, -1.0232312148844578, -1.0972985404061504, + -1.1343524694417555, -1.2677037016108719, -1.5503165845417366, + -1.987692850122772, -2.4673928811725063, -2.8976276902375266, + -3.1506730390188062, -3.112807937117523, -2.801538494453557, + -2.2962559532723437, -1.7069892991655966, -1.155855162037293, + -0.8051600791694331, -0.6376779792311478, -0.616194571240127, + -0.6513573434853684, -0.5946291160237219, -0.3443306898778868, + 0.12687407810114168, 0.7677157382152894, 1.4206120444263768, + 1.9714318524059844, 2.250438776210823, 2.2501928396448934, + 2.1097338843119564, 2.0759239430031617, 2.500259045021617, + 3.7527477510208276, 6.094726908966726, 9.758768223869765, + 14.283410432709971, 19.629570672536314, 25.327757863511476, + 30.191376403601524 + ], + "pressure:J5:branch53_seg0": [ + 141562.72244171088, 158775.84248539543, 169830.55045265402, + 171892.8215361213, 167015.37831601404, 156578.95862366434, + 141910.18239955048, 123950.94683353114, 107338.50004633219, + 90391.18386290768, 74126.71327952594, 59634.853253599, 44467.296228882195, + 30009.37236025772, 15218.904345395336, 140.50609267939242, + -13942.117592694054, -27512.173812228768, -38669.53329631953, + -47721.907695381145, -55051.91189831737, -60087.42000393759, + -63900.16763367834, -66803.92548165537, -68938.2554624677, + -70495.98662693187, -71058.05093579451, -70343.37598286798, + -68213.00735095944, -64902.46252365505, -60727.71713102366, + -57037.37145594497, -54902.11761174823, -55057.93703068314, + -58531.02752307346, -65205.54370120507, -74226.35823184383, + -83933.60921086078, -93276.18658226015, -99471.13053846036, + -101704.18429541387, -99435.36317768223, -92413.90560277346, + -81310.77376853279, -68685.47154373796, -54855.044834067674, + -41012.76236944321, -29585.301642580984, -19299.687020647765, + -10737.912902423464, -3776.0586875187655, 2960.70092820685, + 8509.408699635213, 13401.70576900764, 17625.04959472924, + 19943.632825127683, 20471.95115330417, 19013.372645934633, + 15731.678217094024, 11029.395132666856, 6297.763961941654, + 1820.8394069033168, -1728.9785212156862, -3724.027059036325, + -4751.715993830678, -5063.49722676959, -5237.755726942154, + -5930.736376987262, -7344.566369773142, -9437.865411063347, + -11627.522624177318, -13491.193392231546, -14504.04543462909, + -14124.627259002558, -12486.026835225479, -10058.68486544628, + -7392.17911701336, -4900.852560201377, -3455.5114784854086, + -2895.4155541031714, -2840.4461616573535, -2974.199695622186, + -2619.0712290402867, -1306.0945152005538, 975.7456428093541, + 4034.9057031905622, 6960.972250653084, 9260.762890253256, + 10407.62519242226, 10228.687303041597, 9525.45812746222, + 9574.980183567788, 11980.00195714398, 18421.58356640205, + 29934.67304998579, 47641.41544634903, 68914.65114982704, + 93579.30686599176, 120077.74365933512, 141562.72244171088 + ], + "flow:J5:branch63_seg0": [ + 73.18487590502569, 86.03489864539777, 95.62603697675398, + 101.13222727445749, 102.2822883233433, 99.29777992993327, + 92.88592436017744, 84.19233698833058, 74.36049011587424, + 64.05700669404867, 54.10031960055045, 44.5525180699128, 35.33680693953331, + 26.393005705473318, 17.359806140823434, 8.363684480848516, + -0.5536245238977683, -9.105256099479284, -16.774512637500653, + -23.466668831646754, -28.89185933673141, -33.07369752318959, + -36.25243512387077, -38.60777283007642, -40.39829458842981, + -41.72990294855826, -42.56355736666732, -42.781068660800244, + -42.24376796541488, -40.901139532004464, -38.901181891238096, + -36.667753739378234, -34.729039547162174, -33.75771672094733, + -34.31131992413642, -36.666357890198, -40.70306207563374, + -45.9507246875871, -51.55715997979516, -56.4334227570891, + -59.713803759601134, -60.60484786950409, -58.79828769941056, + -54.41769078939929, -48.1165895282152, -40.43709587767554, + -32.40657652673802, -24.72796261519005, -17.705376803872433, + -11.724712091755336, -6.584439855435267, -2.129156918080428, + 1.7409438605135945, 5.22678355732019, 8.184880274979562, + 10.416065976581155, 11.719024040947625, 11.881805462157649, + 10.883864018214219, 8.905748212150206, 6.3246401798375995, + 3.5411175858845, 1.062024271871017, -0.8401844974252085, + -2.0588292410676354, -2.6731329723162935, -2.9682352753781487, + -3.264080620194327, -3.812840018600162, -4.732159313927514, + -5.9146987760385, -7.155167888269744, -8.106915616391257, + -8.492373217326417, -8.179294221359191, -7.223943987941567, + -5.830144967517371, -4.339088452218242, -3.0995493640867515, + -2.273382232073071, -1.9078422594588427, -1.8339339900415454, + -1.7488851485719055, -1.3519055769850776, -0.44869768775965235, + 0.9624196294812744, 2.6514309252540964, 4.288062203579765, + 5.4702525573216825, 6.004468265014235, 5.9743822944571985, + 5.823732942954197, 6.319286663312993, 8.395848157356944, + 12.92518251727393, 20.543685068659986, 31.048330838869884, + 44.29708198888476, 58.880785580681874, 73.18487590502569 + ], + "pressure:J5:branch63_seg0": [ + 141562.72244171088, 158775.84248539543, 169830.55045265402, + 171892.8215361213, 167015.37831601404, 156578.95862366434, + 141910.18239955048, 123950.94683353114, 107338.50004633219, + 90391.18386290768, 74126.71327952594, 59634.853253599, 44467.296228882195, + 30009.37236025772, 15218.904345395336, 140.50609267939242, + -13942.117592694054, -27512.173812228768, -38669.53329631953, + -47721.907695381145, -55051.91189831737, -60087.42000393759, + -63900.16763367834, -66803.92548165537, -68938.2554624677, + -70495.98662693187, -71058.05093579451, -70343.37598286798, + -68213.00735095944, -64902.46252365505, -60727.71713102366, + -57037.37145594497, -54902.11761174823, -55057.93703068314, + -58531.02752307346, -65205.54370120507, -74226.35823184383, + -83933.60921086078, -93276.18658226015, -99471.13053846036, + -101704.18429541387, -99435.36317768223, -92413.90560277346, + -81310.77376853279, -68685.47154373796, -54855.044834067674, + -41012.76236944321, -29585.301642580984, -19299.687020647765, + -10737.912902423464, -3776.0586875187655, 2960.70092820685, + 8509.408699635213, 13401.70576900764, 17625.04959472924, + 19943.632825127683, 20471.95115330417, 19013.372645934633, + 15731.678217094024, 11029.395132666856, 6297.763961941654, + 1820.8394069033168, -1728.9785212156862, -3724.027059036325, + -4751.715993830678, -5063.49722676959, -5237.755726942154, + -5930.736376987262, -7344.566369773142, -9437.865411063347, + -11627.522624177318, -13491.193392231546, -14504.04543462909, + -14124.627259002558, -12486.026835225479, -10058.68486544628, + -7392.17911701336, -4900.852560201377, -3455.5114784854086, + -2895.4155541031714, -2840.4461616573535, -2974.199695622186, + -2619.0712290402867, -1306.0945152005538, 975.7456428093541, + 4034.9057031905622, 6960.972250653084, 9260.762890253256, + 10407.62519242226, 10228.687303041597, 9525.45812746222, + 9574.980183567788, 11980.00195714398, 18421.58356640205, + 29934.67304998579, 47641.41544634903, 68914.65114982704, + 93579.30686599176, 120077.74365933512, 141562.72244171088 + ], + "flow:J5:branch65_seg0": [ + 63.10879266057834, 74.37775615200961, 82.79692419975719, + 87.62235477169722, 88.59007189423129, 85.90256528129669, + 80.20930201667264, 72.57079119438875, 63.92258040855821, 54.9228520496208, + 46.29973191406165, 38.06745243037299, 30.209127496643116, + 22.649253102095447, 15.065570120755911, 7.574509165745258, + 0.16043103362035366, -6.9688352898324935, -13.373871914709328, + -18.99768449107332, -23.60240689792157, -27.192377746419442, + -29.96014124968299, -32.045169363056615, -33.65790737239996, + -34.89143820245103, -35.71781204582005, -36.04036570873768, + -35.740531896476114, -34.76114894857366, -33.21234833194065, + -31.42480954781777, -29.829925683410643, -29.00085935736743, + -29.41646909823352, -31.346970722644322, -34.72447206408537, + -39.21277144684934, -44.10871898000068, -48.50991427032509, + -51.67215865918821, -52.868083925737125, -51.775657662868475, + -48.425104580295084, -43.30356896675653, -36.85367252268403, + -29.930305915037636, -23.165942201461338, -16.880104924573487, + -11.44176838514226, -6.72923014975161, -2.633612286715312, + 0.9375078507954718, 4.14473668437099, 6.87763625901603, 8.983668081142236, + 10.27774247120646, 10.570498609885997, 9.828132199292103, + 8.199179441786642, 5.982812687240541, 3.532192328409944, + 1.3072759686295563, -0.4549393935715883, -1.6297213827313919, + -2.259544915522438, -2.5797894161119275, -2.862931427580926, + -3.3368925128552487, -4.1215373790597445, -5.146244123870552, + -6.244029904899554, -7.123683176780952, -7.535446033522472, + -7.3465065191608, -6.582556292971142, -5.403655403878746, + -4.099901017501937, -2.9719813804137503, -2.1845168503772743, + -1.7999085256741447, -1.6886222200304535, -1.5999582142095983, + -1.2704249108284362, -0.5147095652252764, 0.6864461814726294, + 2.1603750015710323, 3.628408080316979, 4.730414659142173, + 5.285909961555144, 5.334740732514038, 5.228457982892535, + 5.612703407056577, 7.296022646828866, 11.058505763589595, + 17.486517159561558, 26.478221607388367, 37.89618076066717, + 50.572448991773854, 63.10879266057834 + ], + "pressure:J5:branch65_seg0": [ + 141562.72244171088, 158775.84248539543, 169830.55045265402, + 171892.8215361213, 167015.37831601404, 156578.95862366434, + 141910.18239955048, 123950.94683353114, 107338.50004633219, + 90391.18386290768, 74126.71327952594, 59634.853253599, 44467.296228882195, + 30009.37236025772, 15218.904345395336, 140.50609267939242, + -13942.117592694054, -27512.173812228768, -38669.53329631953, + -47721.907695381145, -55051.91189831737, -60087.42000393759, + -63900.16763367834, -66803.92548165537, -68938.2554624677, + -70495.98662693187, -71058.05093579451, -70343.37598286798, + -68213.00735095944, -64902.46252365505, -60727.71713102366, + -57037.37145594497, -54902.11761174823, -55057.93703068314, + -58531.02752307346, -65205.54370120507, -74226.35823184383, + -83933.60921086078, -93276.18658226015, -99471.13053846036, + -101704.18429541387, -99435.36317768223, -92413.90560277346, + -81310.77376853279, -68685.47154373796, -54855.044834067674, + -41012.76236944321, -29585.301642580984, -19299.687020647765, + -10737.912902423464, -3776.0586875187655, 2960.70092820685, + 8509.408699635213, 13401.70576900764, 17625.04959472924, + 19943.632825127683, 20471.95115330417, 19013.372645934633, + 15731.678217094024, 11029.395132666856, 6297.763961941654, + 1820.8394069033168, -1728.9785212156862, -3724.027059036325, + -4751.715993830678, -5063.49722676959, -5237.755726942154, + -5930.736376987262, -7344.566369773142, -9437.865411063347, + -11627.522624177318, -13491.193392231546, -14504.04543462909, + -14124.627259002558, -12486.026835225479, -10058.68486544628, + -7392.17911701336, -4900.852560201377, -3455.5114784854086, + -2895.4155541031714, -2840.4461616573535, -2974.199695622186, + -2619.0712290402867, -1306.0945152005538, 975.7456428093541, + 4034.9057031905622, 6960.972250653084, 9260.762890253256, + 10407.62519242226, 10228.687303041597, 9525.45812746222, + 9574.980183567788, 11980.00195714398, 18421.58356640205, + 29934.67304998579, 47641.41544634903, 68914.65114982704, + 93579.30686599176, 120077.74365933512, 141562.72244171088 + ], + "flow:branch7_seg0:J6": [ + 184.36719744606762, 224.54010835041123, 259.43585469599924, + 285.94718277532263, 301.9486487963387, 306.586293475664, + 300.43957680643985, 285.5600993587576, 264.1885370059142, + 238.54790377196514, 211.1066205099679, 182.73143447317145, + 154.18830272162168, 125.70267587627205, 96.84569462001903, + 67.99767382395208, 39.10233906437867, 10.829574314098114, + -15.680261925302748, -39.969443273755736, -61.158004794583846, + -78.97186715516226, -93.63539480566422, -105.42114316476018, + -114.87620164802838, -122.3619475555291, -127.97085521764582, + -131.58618402270216, -132.9536295629294, -131.90129952392562, + -128.62281454688298, -123.88064955807917, -118.81326623025244, + -115.0599153579601, -114.18867692395976, -117.38730965553879, + -125.00350356211237, -136.63799612036277, -150.6795145940032, + -164.83224346412538, -176.7694407186604, -184.0670758980774, + -185.15949383869548, -179.45411461774884, -167.5767952200926, + -150.4579496216668, -130.20601620952024, -108.6796009566493, + -87.21894430197845, -67.1999014084434, -48.86459767618932, + -32.28288728573874, -17.402259472560782, -3.91346661397765, + 7.958360332073979, 17.869734631239552, 25.31686537707088, + 29.729239749189727, 30.838662442004, 28.82891997104246, + 24.288068209387585, 18.122455642937503, 11.597192617712123, + 5.573348044630873, 0.7247292415379535, -2.737571884541652, + -5.147609297518526, -7.077179243945711, -9.14070932454056, + -11.779754710739985, -15.019627622308953, -18.581449402690104, + -21.80415013448771, -23.9940898277346, -24.651090267249394, + -23.616742137297845, -21.120755085212696, -17.785713150820477, + -14.394096168768518, -11.525282314956266, -9.551242191958762, + -8.365719666253252, -7.483640761306354, -6.2590766582257285, + -4.111557651297322, -0.804654630346525, 3.4428726807833345, + 8.032609398393483, 12.052138354987555, 14.8754769185566, + 16.327468048600103, 17.018115327908227, 18.42102406135859, + 22.632230780537057, 31.993661883893093, 48.5255621775544, + 72.8739804163473, 105.27978857870454, 143.53548294840996, + 184.36719744606762 + ], + "pressure:branch7_seg0:J6": [ + 125710.76462065487, 143669.76321750772, 156574.4248025455, + 161906.10660299863, 160813.02958558028, 154138.09541846978, + 142895.48523226145, 128073.7140947318, 113130.99916563186, + 97452.24309446827, 82053.81447621025, 67698.5048474972, 52984.5831250533, + 38733.99036348259, 24201.529094754354, 9570.383889056919, + -4524.535955186949, -18125.38552329195, -29720.299967195744, + -39571.94825804886, -47750.24105362679, -53796.1863125891, + -58537.083840037565, -62205.88983323421, -64999.28455927871, + -67125.72132195387, -68287.57822426973, -68284.0791393595, + -66966.53810460644, -64476.42905399037, -61036.99450440188, + -57716.1151336632, -55417.728369630095, -54908.30267690634, + -57150.53394451961, -62263.74490105951, -69656.59228902562, + -78231.33425823667, -86861.62449051568, -93345.9532351928, + -96721.06944655585, -96237.02118034086, -91455.87824352102, + -82795.65453635994, -72192.49128200483, -59944.36133105285, + -47199.72703755718, -36041.58809029945, -25683.70819145327, + -16787.704709803576, -9313.513611022125, -2213.3949057145423, + 3761.5816491806295, 9078.402891415102, 13721.95276390042, + 16757.513938401713, 18185.245025163495, 17790.1991823783, + 15621.492469774978, 12016.769911489271, 7967.846005081198, + 3880.1923141107495, 418.55743972070906, -1904.3423710799937, + -3337.010044801564, -4041.388640479055, -4485.197669168361, + -5214.366731243049, -6474.787224852363, -8306.553216245775, + -10300.459861646958, -12125.642417654391, -13324.427080741738, + -13384.188757253487, -12340.458049676768, -10479.530282700725, + -8239.929080158381, -5974.12175369013, -4443.114205811683, + -3617.869920238584, -3285.1857675550054, -3221.6978881993336, + -2872.55213522935, -1810.4377385206321, 78.65713016025659, + 2682.890715988601, 5370.689039104315, 7673.726793113511, + 9074.782556628303, 9372.94512873413, 9076.114612608326, 9164.663144600609, + 10986.020820549864, 16016.291540026292, 25381.68493504272, + 40143.9234104229, 58545.3073385875, 80445.86595312755, 104731.77394269878, + 125710.76462065487 + ], + "flow:J6:branch8_seg0": [ + 32.743149631830974, 38.7676585543946, 43.4467407385287, 46.38112378012367, + 47.40471335820739, 46.558676375870625, 44.10675058823536, + 40.54014203921977, 36.318367327563855, 31.755496298637034, + 27.25433542025327, 22.832937667499902, 18.51241111620319, + 14.281320547197556, 9.986451417928864, 5.717337952844665, + 1.4629844289233722, -2.6423738219823028, -6.3572133686857, + -9.649761455901158, -12.38190690790099, -14.547091537620801, + -16.245830831952524, -17.545847420351233, -18.557628228491065, + -19.33236083829597, -19.855757918933126, -20.08281735398585, + -19.955394633794395, -19.45133926216071, -18.63017500000254, + -17.674985374380917, -16.810025623182074, -16.33735920414228, + -16.50870780537009, -17.466129671164822, -19.169936475597073, + -21.453804508062046, -23.945290332425767, -26.17785191128074, + -27.768979283712266, -28.3462200780632, -27.74224844607013, + -25.985662783777695, -23.333644054525834, -20.001917250834925, + -16.427962695875046, -12.933790942419686, -9.661543681466231, + -6.8051304243439175, -4.30211390041765, -2.093733089236217, + -0.1555782669264729, 1.597964000191494, 3.102624709276482, + 4.274867525601644, 5.02596755436832, 5.259425617963329, 4.95855877375245, + 4.199364609178512, 3.1316452035908053, 1.9294067411771783, + 0.8269462507999478, -0.06008436766925775, -0.6674072724753239, + -1.0128365170774534, -1.2118996344918953, -1.3969072171929717, + -1.6772573641569162, -2.1084916484241067, -2.651458590750601, + -3.223163683137153, -3.6784996961436542, -3.892926386719776, + -3.8055595815620045, -3.4304155065053403, -2.849893554946635, + -2.2048393301593423, -1.6486862440031318, -1.2555123381700075, + -1.055710634490129, -0.9846579360659434, -0.9172132064448273, + -0.7251397864431702, -0.31942562830161664, 0.3055156429455084, + 1.061286537408518, 1.8097455124634423, 2.3715562468751425, + 2.6615709280891933, 2.7053190509396488, 2.682517801758522, + 2.9206725787682286, 3.8243375021705353, 5.791159705442833, + 9.113336307236464, 13.737079491223817, 19.615702176541706, + 26.191234299507382, 32.743149631830974 + ], + "pressure:J6:branch8_seg0": [ + 125710.76462065487, 143669.76321750772, 156574.4248025455, + 161906.10660299863, 160813.02958558028, 154138.09541846978, + 142895.48523226145, 128073.7140947318, 113130.99916563186, + 97452.24309446827, 82053.81447621025, 67698.5048474972, 52984.5831250533, + 38733.99036348259, 24201.529094754354, 9570.383889056919, + -4524.535955186949, -18125.38552329195, -29720.299967195744, + -39571.94825804886, -47750.24105362679, -53796.1863125891, + -58537.083840037565, -62205.88983323421, -64999.28455927871, + -67125.72132195387, -68287.57822426973, -68284.0791393595, + -66966.53810460644, -64476.42905399037, -61036.99450440188, + -57716.1151336632, -55417.728369630095, -54908.30267690634, + -57150.53394451961, -62263.74490105951, -69656.59228902562, + -78231.33425823667, -86861.62449051568, -93345.9532351928, + -96721.06944655585, -96237.02118034086, -91455.87824352102, + -82795.65453635994, -72192.49128200483, -59944.36133105285, + -47199.72703755718, -36041.58809029945, -25683.70819145327, + -16787.704709803576, -9313.513611022125, -2213.3949057145423, + 3761.5816491806295, 9078.402891415102, 13721.95276390042, + 16757.513938401713, 18185.245025163495, 17790.1991823783, + 15621.492469774978, 12016.769911489271, 7967.846005081198, + 3880.1923141107495, 418.55743972070906, -1904.3423710799937, + -3337.010044801564, -4041.388640479055, -4485.197669168361, + -5214.366731243049, -6474.787224852363, -8306.553216245775, + -10300.459861646958, -12125.642417654391, -13324.427080741738, + -13384.188757253487, -12340.458049676768, -10479.530282700725, + -8239.929080158381, -5974.12175369013, -4443.114205811683, + -3617.869920238584, -3285.1857675550054, -3221.6978881993336, + -2872.55213522935, -1810.4377385206321, 78.65713016025659, + 2682.890715988601, 5370.689039104315, 7673.726793113511, + 9074.782556628303, 9372.94512873413, 9076.114612608326, 9164.663144600609, + 10986.020820549864, 16016.291540026292, 25381.68493504272, + 40143.9234104229, 58545.3073385875, 80445.86595312755, 104731.77394269878, + 125710.76462065487 + ], + "flow:J6:branch15_seg0": [ + 151.6240478142371, 185.77244979601758, 215.98911395747157, + 239.56605899520156, 254.5439354381308, 260.02761709979694, + 256.33282621820035, 245.01995731953713, 227.87016967835024, + 206.7924074733389, 183.852285089709, 159.89849680566576, + 135.67589160543213, 111.42135532907096, 86.85924320209645, + 62.28033587110409, 37.639354635449095, 13.471948136073037, + -9.323048556614802, -30.31968181785906, -48.776097886677, + -64.42477561754768, -77.38956397371985, -87.87529574439877, + -96.31857341953346, -103.02958671722585, -108.11509729871554, + -111.50336666871358, -112.9982349291259, -112.44996026177556, + -109.99263954688057, -106.20566418369799, -102.00324060707828, + -98.7225561538191, -97.67996911858789, -99.92117998437634, + -105.83356708651372, -115.18419161230095, -126.7342242615773, + -138.65439155284815, -149.00046143495896, -155.72085582001216, + -157.41724539262475, -153.46845183397122, -144.24315116556605, + -130.45603237083225, -113.77805351364455, -95.74581001422983, + -77.55740062051295, -60.394770984099644, -44.56248377577232, + -30.189154196502308, -17.246681205634268, -5.511430614169223, + 4.855735622797692, 13.594867105637656, 20.290897822701858, + 24.46981413122646, 25.880103668251735, 24.629555361863286, + 21.156423005797162, 16.19304890176049, 10.770246366912305, + 5.6334324123002375, 1.3921365140135005, -1.7247353674638732, + -3.9357096630268793, -5.680272026752402, -7.463451960383884, + -9.671263062315992, -12.368169031558452, -15.358285719553, + -18.125650438344255, -20.101163441014574, -20.845530685687557, + -20.186326630792934, -18.270861530266114, -15.580873820660814, + -12.74540992476552, -10.269769976786286, -8.495531557468672, + -7.381061730187421, -6.566427554861522, -5.533936871782587, + -3.7921320229957223, -1.110170273291881, 2.3815861433749044, + 6.222863885930057, 9.680582108112436, 12.213905990467271, + 13.622148997660387, 14.335597526149664, 15.500351482590418, + 18.80789327836645, 26.202502178450167, 39.41222587031908, + 59.136900925123854, 85.66408640216243, 117.34424864890237, + 151.6240478142371 + ], + "pressure:J6:branch15_seg0": [ + 125710.76462065487, 143669.76321750772, 156574.4248025455, + 161906.10660299863, 160813.02958558028, 154138.09541846978, + 142895.48523226145, 128073.7140947318, 113130.99916563186, + 97452.24309446827, 82053.81447621025, 67698.5048474972, 52984.5831250533, + 38733.99036348259, 24201.529094754354, 9570.383889056919, + -4524.535955186949, -18125.38552329195, -29720.299967195744, + -39571.94825804886, -47750.24105362679, -53796.1863125891, + -58537.083840037565, -62205.88983323421, -64999.28455927871, + -67125.72132195387, -68287.57822426973, -68284.0791393595, + -66966.53810460644, -64476.42905399037, -61036.99450440188, + -57716.1151336632, -55417.728369630095, -54908.30267690634, + -57150.53394451961, -62263.74490105951, -69656.59228902562, + -78231.33425823667, -86861.62449051568, -93345.9532351928, + -96721.06944655585, -96237.02118034086, -91455.87824352102, + -82795.65453635994, -72192.49128200483, -59944.36133105285, + -47199.72703755718, -36041.58809029945, -25683.70819145327, + -16787.704709803576, -9313.513611022125, -2213.3949057145423, + 3761.5816491806295, 9078.402891415102, 13721.95276390042, + 16757.513938401713, 18185.245025163495, 17790.1991823783, + 15621.492469774978, 12016.769911489271, 7967.846005081198, + 3880.1923141107495, 418.55743972070906, -1904.3423710799937, + -3337.010044801564, -4041.388640479055, -4485.197669168361, + -5214.366731243049, -6474.787224852363, -8306.553216245775, + -10300.459861646958, -12125.642417654391, -13324.427080741738, + -13384.188757253487, -12340.458049676768, -10479.530282700725, + -8239.929080158381, -5974.12175369013, -4443.114205811683, + -3617.869920238584, -3285.1857675550054, -3221.6978881993336, + -2872.55213522935, -1810.4377385206321, 78.65713016025659, + 2682.890715988601, 5370.689039104315, 7673.726793113511, + 9074.782556628303, 9372.94512873413, 9076.114612608326, 9164.663144600609, + 10986.020820549864, 16016.291540026292, 25381.68493504272, + 40143.9234104229, 58545.3073385875, 80445.86595312755, 104731.77394269878, + 125710.76462065487 + ], + "flow:branch8_seg0:J7": [ + 32.72645615320988, 38.75530124935514, 43.43883816741335, + 46.37888767759596, 47.408773108679185, 46.567106286104305, + 44.11669139500176, 40.55574177729728, 36.33166485196241, + 31.766313813621437, 27.268036744751576, 22.8442214510736, + 18.524021063952716, 14.293309756644277, 9.99607884590204, + 5.729404195888228, 1.4745107759039997, -2.634314348974883, + -6.348648838807025, -9.642613476357923, -12.376809074542196, + -14.542571077339545, -16.242696941116822, -17.543377978043473, + -18.555489989012937, -19.331029246916696, -19.855227958534503, + -20.083336074650127, -19.95716065126841, -19.453961322109592, + -18.633200390962507, -17.677785092548636, -16.811072740814204, + -16.336565977621987, -16.50566880181029, -17.461413033552464, + -19.162306786088706, -21.44709960696543, -23.939456961326762, + -26.17351745668447, -27.76831867264054, -28.348635502587868, + -27.74712083640889, -25.992131247605002, -23.342500665998926, + -20.01191340196155, -16.436834996821386, -12.942740161954449, + -9.668796670942946, -6.811550591058289, -4.308471558471686, + -2.0991311303585407, -0.16032792747294963, 1.5939452062754698, + 3.099161697940586, 4.27288974881933, 5.025688248097051, 5.260768778010253, + 4.960771778687516, 4.203328309379629, 3.1352057333873202, + 1.9315228958249961, 0.8296037943313195, -0.05848513877639905, + -0.6669197258688866, -1.0123904683788765, -1.2114034402571248, + -1.3961542884088993, -1.676091011816526, -2.10710013160676, + -2.6499571805339603, -3.221819866534649, -3.678030220000186, + -3.893204410789841, -3.8067618193166877, -3.4321830606733887, + -2.851898600378436, -2.2065630396062943, -1.6497673325320736, + -1.2558775294645472, -1.0557404603685787, -0.9847882111553269, + -0.9177590068787626, -0.726450049783773, -0.32120464749042554, + 0.3030044372409314, 1.0591240412780558, 1.808761361077559, + 2.3708476447779434, 2.661512495817185, 2.705575347736905, + 2.681966708524194, 2.9182445823604617, 3.818801438193481, + 5.7821742778817855, 9.10135447660046, 13.721991195220186, + 19.595779353405476, 26.17308755135609, 32.72645615320988 + ], + "pressure:branch8_seg0:J7": [ + 121112.22320788993, 139427.10476446166, 152913.29993067918, + 159226.0724831402, 159182.07744718785, 153448.6318017155, + 142996.4959305093, 128946.17075833051, 114230.65966552611, + 98774.48095673538, 83576.40858256092, 69191.87205529529, + 54658.30859976604, 40510.45114356522, 26097.94344391345, + 11690.380987666078, -2370.2513071995827, -15941.030154298356, + -27599.81812473617, -37648.3006338826, -46000.946892155975, + -52258.011529889314, -57183.83744673738, -60976.7282338252, + -63877.4338087479, -66099.94690173218, -67386.27151132672, + -67557.05464693358, -66452.47309131641, -64165.94941143411, + -60903.22863442084, -57628.785350161445, -55206.957605343, + -54442.80352493653, -56284.1151258738, -60931.441514184764, + -67870.42043062142, -76204.85448567104, -84708.90173029357, + -91377.26373320041, -95175.38011056873, -95239.24544338435, + -91102.17035127357, -83096.80091758839, -72996.33907408013, + -61093.220135195865, -48576.34319455542, -37416.91370231874, + -26989.011480164136, -18010.12536951452, -10415.51885417621, + -3276.56890130265, 2763.536584645192, 8152.283544889091, + 12863.010734265625, 16082.478359701694, 17747.093939955615, + 17629.97820457468, 15737.846324415594, 12410.015560189557, + 8475.820707463738, 4427.646279292867, 950.1144932260239, + -1512.1013759709135, -3069.53276463276, -3865.2756156015857, + -4353.075320319422, -5050.9315177381395, -6230.187013843829, + -7966.2491955725, -9900.908562649654, -11729.59922669136, + -13001.878829510288, -13206.448165853108, -12341.21785488959, + -10630.787825216337, -8481.780826338183, -6247.546588492191, + -4651.3815472589895, -3724.7558320758244, -3313.2212492142035, + -3213.579505129243, -2898.3641123773064, -1943.8492149176698, + -187.49263825326582, 2277.0441970262013, 4920.867178420542, + 7258.469288224365, 8752.563730056147, 9201.248754962657, + 9002.176708496932, 9048.040471410606, 10619.993873180172, + 15154.332442047165, 23820.730382968264, 37686.159476024695, + 55260.48681178412, 76414.06444496092, 100133.78939429113, + 121112.22320788993 + ], + "flow:J7:branch9_seg0": [ + 16.202264878093402, 19.229700652737097, 21.603696762037632, + 23.118583100638876, 23.68209682154988, 23.31047058911819, + 22.130192446130067, 20.37642204921172, 18.284158306726052, + 16.01375137546677, 13.760022460280274, 11.545521340582837, + 9.38195417886658, 7.261077435619071, 5.114181966693719, 2.976424556020151, + 0.8440526969249542, -1.2115507133967984, -3.0814774189766587, + -4.741589355649068, -6.122447136617561, -7.2215309626082815, + -8.084135675456062, -8.74512674963083, -9.259554635639422, + -9.653442649662654, -9.921727677777938, -10.042990461238801, + -9.98811305810638, -9.74569842440174, -9.343109581574852, + -8.868987812953636, -8.434223316397082, -8.187692813922942, + -8.256554877982929, -8.714328544921322, -9.547211549685638, + -10.674038618770677, -11.912830532512821, -13.036007048868173, + -13.84711670259995, -14.161101137348426, -13.888782802701314, + -13.04099839844264, -11.737878413047705, -10.088507586316865, + -8.309817644406838, -6.560418485758127, -4.918666290994264, + -3.4803758859305374, -2.218534283838747, -1.1063666685194347, + -0.13049772065331633, 0.7518452494994856, 1.5108727894898517, + 2.1056896494966137, 2.4922636634869564, 2.622536376472559, + 2.4865027595966303, 2.1189939505224498, 1.5933786631181246, + 0.9970396895922438, 0.442994505630505, -0.006370517851127072, + -0.3167695177629415, -0.4965308783632302, -0.6003110690325119, + -0.6934678336673935, -0.8315290489989169, -1.0433506077738746, + -1.3119152991234784, -1.5971037567166653, -1.8272666796560644, + -1.9404797974811643, -1.904609367569003, -1.7245049801418086, + -1.4398522253662813, -1.1193443086847727, -0.8394979410464257, + -0.6387316933251935, -0.533807960125761, -0.49470437847096177, + -0.4605528786818855, -0.3675255171928839, -0.17012434063510606, + 0.13667435309572507, 0.5111656159548139, 0.8848989717069112, + 1.170653338272177, 1.3227968270722181, 1.351007130977256, + 1.3416069448285206, 1.4546048660599467, 1.8898968265696439, + 2.847237320537015, 4.472916970551962, 6.750839645215326, 9.66006891922622, + 12.92730580672785, 16.202264878093402 + ], + "pressure:J7:branch9_seg0": [ + 121112.22320788993, 139427.10476446166, 152913.29993067918, + 159226.0724831402, 159182.07744718785, 153448.6318017155, + 142996.4959305093, 128946.17075833051, 114230.65966552611, + 98774.48095673538, 83576.40858256092, 69191.87205529529, + 54658.30859976604, 40510.45114356522, 26097.94344391345, + 11690.380987666078, -2370.2513071995827, -15941.030154298356, + -27599.81812473617, -37648.3006338826, -46000.946892155975, + -52258.011529889314, -57183.83744673738, -60976.7282338252, + -63877.4338087479, -66099.94690173218, -67386.27151132672, + -67557.05464693358, -66452.47309131641, -64165.94941143411, + -60903.22863442084, -57628.785350161445, -55206.957605343, + -54442.80352493653, -56284.1151258738, -60931.441514184764, + -67870.42043062142, -76204.85448567104, -84708.90173029357, + -91377.26373320041, -95175.38011056873, -95239.24544338435, + -91102.17035127357, -83096.80091758839, -72996.33907408013, + -61093.220135195865, -48576.34319455542, -37416.91370231874, + -26989.011480164136, -18010.12536951452, -10415.51885417621, + -3276.56890130265, 2763.536584645192, 8152.283544889091, + 12863.010734265625, 16082.478359701694, 17747.093939955615, + 17629.97820457468, 15737.846324415594, 12410.015560189557, + 8475.820707463738, 4427.646279292867, 950.1144932260239, + -1512.1013759709135, -3069.53276463276, -3865.2756156015857, + -4353.075320319422, -5050.9315177381395, -6230.187013843829, + -7966.2491955725, -9900.908562649654, -11729.59922669136, + -13001.878829510288, -13206.448165853108, -12341.21785488959, + -10630.787825216337, -8481.780826338183, -6247.546588492191, + -4651.3815472589895, -3724.7558320758244, -3313.2212492142035, + -3213.579505129243, -2898.3641123773064, -1943.8492149176698, + -187.49263825326582, 2277.0441970262013, 4920.867178420542, + 7258.469288224365, 8752.563730056147, 9201.248754962657, + 9002.176708496932, 9048.040471410606, 10619.993873180172, + 15154.332442047165, 23820.730382968264, 37686.159476024695, + 55260.48681178412, 76414.06444496092, 100133.78939429113, + 121112.22320788993 + ], + "flow:J7:branch51_seg0": [ + 16.524191275116486, 19.525600596618098, 21.83514140537552, + 23.260304576956838, 23.726676287128978, 23.256635696986134, + 21.9864989488718, 20.179319728085343, 18.04750654523581, + 15.75256243815491, 13.508014284472107, 11.298700110490074, + 9.142066885087711, 7.0322323210251145, 4.881896879207984, + 2.7529796398679878, 0.6304580789797886, -1.422763635578491, + -3.267171419831024, -4.90102412071115, -6.2543619379243784, + -7.321040114732183, -8.15856126566071, -8.798251228412104, + -9.295935353373071, -9.677586597253983, -9.9335002807566, + -10.040345613410892, -9.969047593161571, -9.708262897707465, + -9.290090809387621, -8.808797279594254, -8.37684942441626, + -8.1488731636988, -8.249113923826918, -8.747084488631609, + -9.61509523640299, -10.7730609881941, -12.026626428814502, + -13.137510407816649, -13.921201970040595, -14.18753436523952, + -13.858338033707732, -12.951132849162008, -11.604622252951335, + -9.923405815644594, -8.127017352414581, -6.38232167619637, + -4.750130379948617, -3.331174705127753, -2.0899372746329283, + -0.9927644618391254, -0.029830206819678764, 0.8420999567759766, + 1.5882889084507539, 2.1672000993226916, 2.5334245846100822, + 2.6382324015376457, 2.4742690190909666, 2.0843343588571797, + 1.541827070269257, 0.9344832062328047, 0.3866092887008049, + -0.052114620925135836, -0.35015020810590236, -0.5158595900156537, + -0.6110923712245722, -0.7026864547414665, -0.8445619628176165, + -1.0637495238328916, -1.3380418814104877, -1.6247161098180507, + -1.850763540344089, -1.9527246133086744, -1.9021524517476776, + -1.7076780805315686, -1.412046375012147, -1.0872187309215022, + -0.8102693914856567, -0.6171458361393597, -0.5219325002428352, + -0.49008383268435785, -0.4572061281968739, -0.35892453259087687, + -0.1510803068553302, 0.16633008414521533, 0.5479584253232112, + 0.923862389370658, 1.2001943065057963, 1.338715668744964, + 1.3545682167596527, 1.340359763695648, 1.4636397163005448, + 1.9289046116237532, 2.9349369573447253, 4.628437506048573, + 6.971151550004874, 9.935710434179295, 13.24578174462815, + 16.524191275116486 + ], + "pressure:J7:branch51_seg0": [ + 121112.22320788993, 139427.10476446166, 152913.29993067918, + 159226.0724831402, 159182.07744718785, 153448.6318017155, + 142996.4959305093, 128946.17075833051, 114230.65966552611, + 98774.48095673538, 83576.40858256092, 69191.87205529529, + 54658.30859976604, 40510.45114356522, 26097.94344391345, + 11690.380987666078, -2370.2513071995827, -15941.030154298356, + -27599.81812473617, -37648.3006338826, -46000.946892155975, + -52258.011529889314, -57183.83744673738, -60976.7282338252, + -63877.4338087479, -66099.94690173218, -67386.27151132672, + -67557.05464693358, -66452.47309131641, -64165.94941143411, + -60903.22863442084, -57628.785350161445, -55206.957605343, + -54442.80352493653, -56284.1151258738, -60931.441514184764, + -67870.42043062142, -76204.85448567104, -84708.90173029357, + -91377.26373320041, -95175.38011056873, -95239.24544338435, + -91102.17035127357, -83096.80091758839, -72996.33907408013, + -61093.220135195865, -48576.34319455542, -37416.91370231874, + -26989.011480164136, -18010.12536951452, -10415.51885417621, + -3276.56890130265, 2763.536584645192, 8152.283544889091, + 12863.010734265625, 16082.478359701694, 17747.093939955615, + 17629.97820457468, 15737.846324415594, 12410.015560189557, + 8475.820707463738, 4427.646279292867, 950.1144932260239, + -1512.1013759709135, -3069.53276463276, -3865.2756156015857, + -4353.075320319422, -5050.9315177381395, -6230.187013843829, + -7966.2491955725, -9900.908562649654, -11729.59922669136, + -13001.878829510288, -13206.448165853108, -12341.21785488959, + -10630.787825216337, -8481.780826338183, -6247.546588492191, + -4651.3815472589895, -3724.7558320758244, -3313.2212492142035, + -3213.579505129243, -2898.3641123773064, -1943.8492149176698, + -187.49263825326582, 2277.0441970262013, 4920.867178420542, + 7258.469288224365, 8752.563730056147, 9201.248754962657, + 9002.176708496932, 9048.040471410606, 10619.993873180172, + 15154.332442047165, 23820.730382968264, 37686.159476024695, + 55260.48681178412, 76414.06444496092, 100133.78939429113, + 121112.22320788993 + ], + "flow:branch10_seg0:J8": [ + 36.34706776217695, 42.02048934522931, 45.90429908615476, + 47.70554590310693, 47.456999633775986, 45.33612939758734, + 41.7354352100686, 37.30798033110224, 32.54622119377338, + 27.669002031100206, 23.144995553492475, 18.81242468639979, + 14.61352976013968, 10.550705267221492, 6.357900537607887, + 2.2320957051567127, -1.84937505835498, -5.764174949325078, + -9.135105751825085, -12.03425758462687, -14.328398704588103, + -16.023996596986276, -17.307140305250396, -18.244711609762597, + -18.958931227788597, -19.490421248680168, -19.78522069109388, + -19.775460543502874, -19.39487349422735, -18.633777271061447, + -17.58870104591608, -16.513030093559284, -15.662426939161861, + -15.376791912603236, -15.897267793931958, -17.309769521893628, + -19.462683572365755, -22.112875996183288, -24.787138618892822, + -26.915147649554964, -28.161663535340033, -28.163851846498094, + -26.84771312098848, -24.35048930994747, -21.097386382884196, + -17.31097821359713, -13.499971358762735, -10.022025993256358, + -6.889402532094915, -4.301432398822738, -2.0997736609230637, + -0.1591768143915181, 1.5189390738124366, 3.04894477866305, + 4.322255133094362, 5.221764089744272, 5.659322589094355, + 5.534287934794759, 4.8619117081573435, 3.7737014244388454, + 2.4689132943361334, 1.1298436074141023, 0.04006759578279267, + -0.7363358278839445, -1.1847151047878826, -1.3572701475376259, + -1.4298070406235024, -1.5616811171269436, -1.8559804899672512, + -2.3450976415586706, -2.93833071286641, -3.520580322652801, + -3.917680925492983, -3.9966985738122287, -3.7289763624775976, + -3.172302408199068, -2.4498217273392027, -1.735284464548928, + -1.2029291642636566, -0.8935738892053172, -0.804935545001288, + -0.8261758850826038, -0.7902507929903707, -0.5563703957980207, + -0.05136779229460719, 0.6888775842261778, 1.520351252023738, + 2.2769707681819624, 2.744247044285295, 2.8755728384018195, + 2.762029434085298, 2.6653192092344584, 2.999231846748923, + 4.224671153072444, 6.740876948546065, 10.813458398992568, + 16.182767988883054, 22.748099992405166, 29.789733920821913, + 36.34706776217695 + ], + "pressure:branch10_seg0:J8": [ + 135078.03665695092, 153169.28414904195, 165142.71248315935, + 168798.48584743583, 165486.38440010312, 156314.64249918854, + 142564.79662804116, 125683.66779619087, 109148.81349796237, + 92267.77528938453, 76304.88834963452, 61622.332846529556, + 46756.55230167993, 32469.89630232822, 17801.94157394239, + 3109.8008993659782, -11019.133853641446, -24564.610737993535, + -35871.08531137931, -45280.606602914144, -52836.9345579572, + -58165.69164357218, -62209.554253260525, -65231.829009207046, + -67481.64545381269, -69147.4059012149, -69879.91390564831, + -69429.51133013132, -67613.12382322179, -64579.8942988769, + -60618.75973406719, -56930.89925473628, -54482.239586671356, + -54182.37309984123, -56986.417606196104, -62954.72053690199, + -71316.14336994466, -80826.3011753255, -90103.7999580596, + -96750.0427600101, -99782.75949807772, -98411.12541363333, + -92322.30943558174, -82176.01095851627, -70119.40126765787, + -56609.78156076966, -43024.458770887606, -31426.169736456002, + -20956.556557642063, -12271.202103410815, -5114.5785973296115, + 1620.7677499585902, 7230.229869201826, 12252.952467536483, + 16543.6566364899, 19160.49948664358, 20069.19808443824, 19020.6898900087, + 16116.9071145584, 11801.30443336161, 7153.378247236522, 2623.438800661939, + -997.0900013303518, -3264.670817779078, -4491.728230644828, + -4908.3666397799025, -5107.715408317201, -5704.489273234549, + -6965.574923718585, -8902.15824116213, -11033.239468627264, + -12947.271698990426, -14102.877316294363, -13968.056665349402, + -12608.175892484696, -10374.696601563935, -7790.318233830218, + -5301.678197432434, -3715.5784010877423, -2962.988838369506, + -2807.845156823598, -2920.051637660973, -2657.6901664001366, + -1548.671310859524, 520.5311529303137, 3372.2264106632724, + 6279.83950445731, 8701.129888142757, 10027.071778927437, + 10092.571790619722, 9507.809675273442, 9399.889584843106, + 11313.297559036055, 16872.25471560182, 27299.298683233028, + 43582.72985228824, 63769.59183203193, 87548.03594537493, + 113276.81978803083, 135078.03665695092 + ], + "flow:J8:branch11_seg0": [ + 19.657704877573842, 22.665791559330383, 24.697541878191355, + 25.597715472638352, 25.405264877169664, 24.21821620434443, + 22.247716121616765, 19.85269345789839, 17.296099086045242, + 14.678700060842575, 12.265445289151534, 9.953115561012664, + 7.705024675789396, 5.53344279052073, 3.283210193806424, + 1.0752582381974018, -1.105321817822051, -3.2014760689032373, + -4.98963871931157, -6.525480829075524, -7.739608668993897, + -8.62943744923932, -9.30515393737256, -9.798467989468424, + -10.174042909217002, -10.453863258786198, -10.604869838407776, + -10.590461068754003, -10.375927992969904, -9.957960708508717, + -9.390080398190134, -8.81422481639215, -8.366602174811414, + -8.23007285027039, -8.532911548366998, -9.316093103385306, + -10.489035603742398, -11.92122070775426, -13.354994255031409, + -14.4766374433003, -15.117441369478046, -15.083551986106372, + -14.340218900245356, -12.966412119496363, -11.205118359602228, + -9.165557807710606, -7.119778982040368, -5.270214150221524, + -3.602008754005325, -2.229561261817106, -1.0639021640686273, + -0.0294285871715314, 0.862019944925989, 1.676120259975063, + 2.3516732577743715, 2.8217823140588894, 3.0425058092337904, + 2.959759115222188, 2.5836520358054584, 1.9892305169245186, + 1.2851713914540142, 0.5665289190543201, -0.009589339658811277, + -0.41502870159435856, -0.6467859352913108, -0.7317930993822519, + -0.7678515512774604, -0.8408065212445898, -1.0034889252337944, + -1.2713437370579364, -1.5915527940732874, -1.9020482238846534, + -2.1096477186120484, -2.1422452723119467, -1.9886139852474076, + -1.682547022029638, -1.291807360819749, -0.909086082295378, + -0.6297311068002346, -0.4709007379746919, -0.42900932399110453, + -0.4432146294788733, -0.4219259259677519, -0.29055260999496385, + -0.012065767077346261, 0.3909667336683973, 0.8382504815215097, + 1.2412780623034958, 1.482910205043377, 1.5429011968613575, + 1.4757694752683401, 1.4258808423050846, 1.618777852895269, + 2.3025713931386584, 3.688184798236936, 5.918262893733211, + 8.830397340457392, 12.373241763246725, 16.16631751875226, + 19.657704877573842 + ], + "pressure:J8:branch11_seg0": [ + 135078.03665695092, 153169.28414904195, 165142.71248315935, + 168798.48584743583, 165486.38440010312, 156314.64249918854, + 142564.79662804116, 125683.66779619087, 109148.81349796237, + 92267.77528938453, 76304.88834963452, 61622.332846529556, + 46756.55230167993, 32469.89630232822, 17801.94157394239, + 3109.8008993659782, -11019.133853641446, -24564.610737993535, + -35871.08531137931, -45280.606602914144, -52836.9345579572, + -58165.69164357218, -62209.554253260525, -65231.829009207046, + -67481.64545381269, -69147.4059012149, -69879.91390564831, + -69429.51133013132, -67613.12382322179, -64579.8942988769, + -60618.75973406719, -56930.89925473628, -54482.239586671356, + -54182.37309984123, -56986.417606196104, -62954.72053690199, + -71316.14336994466, -80826.3011753255, -90103.7999580596, + -96750.0427600101, -99782.75949807772, -98411.12541363333, + -92322.30943558174, -82176.01095851627, -70119.40126765787, + -56609.78156076966, -43024.458770887606, -31426.169736456002, + -20956.556557642063, -12271.202103410815, -5114.5785973296115, + 1620.7677499585902, 7230.229869201826, 12252.952467536483, + 16543.6566364899, 19160.49948664358, 20069.19808443824, 19020.6898900087, + 16116.9071145584, 11801.30443336161, 7153.378247236522, 2623.438800661939, + -997.0900013303518, -3264.670817779078, -4491.728230644828, + -4908.3666397799025, -5107.715408317201, -5704.489273234549, + -6965.574923718585, -8902.15824116213, -11033.239468627264, + -12947.271698990426, -14102.877316294363, -13968.056665349402, + -12608.175892484696, -10374.696601563935, -7790.318233830218, + -5301.678197432434, -3715.5784010877423, -2962.988838369506, + -2807.845156823598, -2920.051637660973, -2657.6901664001366, + -1548.671310859524, 520.5311529303137, 3372.2264106632724, + 6279.83950445731, 8701.129888142757, 10027.071778927437, + 10092.571790619722, 9507.809675273442, 9399.889584843106, + 11313.297559036055, 16872.25471560182, 27299.298683233028, + 43582.72985228824, 63769.59183203193, 87548.03594537493, + 113276.81978803083, 135078.03665695092 + ], + "flow:J8:branch130_seg0": [ + 16.689362884603092, 19.354697785898633, 21.206757207963705, + 22.107830430468844, 22.05173475660566, 21.117913193242607, + 19.487719088451016, 17.455286873203814, 15.250122107728343, + 12.990301970257688, 10.879550264340779, 8.85930912538724, + 6.908505084351385, 5.017262476701922, 3.0746903438015836, + 1.1568374669584105, -0.7440532405331118, -2.562698880420876, + -4.145467032512455, -5.508776755551042, -6.58879003559406, + -7.394559147747787, -8.001986367877086, -8.446243620295343, + -8.78488831857067, -9.036557989894051, -9.180350852686175, + -9.184999474748498, -9.01894550125738, -8.675816562552697, + -8.19862064772692, -7.6988052771669215, -7.295824764350411, + -7.146719062331858, -7.3643562455652, -7.993676418508583, + -8.97364796862394, -10.191655288428855, -11.432144363861635, + -12.43851020625496, -13.044222165861973, -13.080299860391793, + -12.507494220743283, -11.384077190450954, -9.892268023282083, + -8.14542040588659, -6.380192376722406, -4.751811843034829, + -3.287393778089614, -2.0718711370056475, -1.0358714968544072, + -0.12974822721999035, 0.6569191288864613, 1.3728245186880035, + 1.9705818753200173, 2.3999817756853847, 2.6168167798605073, + 2.574528819572511, 2.2782596723519544, 1.78447090751444, + 1.183741902882153, 0.5633146883597502, 0.04965693544154157, + -0.3213071262895635, -0.5379291694965647, -0.6254770481554238, + -0.6619554893460488, -0.7208745958824124, -0.8524915647333897, + -1.0737539045007858, -1.3467779187931161, -1.6185320987681444, + -1.8080332068809573, -1.8544533015002496, -1.7403623772302321, + -1.4897553861693869, -1.1580143665194593, -0.8261983822535419, + -0.5731980574634141, -0.4226731512306112, -0.37592622101019807, + -0.3829612556037238, -0.36832486702261646, -0.26581778580306326, + -0.039302025217252824, 0.29791085055778993, 0.6821007705022214, + 1.03569270587849, 1.261336839241936, 1.3326716415404425, + 1.2862599588169714, 1.2394383669293472, 1.3804539938536218, + 1.9220997599337626, 3.0526921503092055, 4.895195505259432, + 7.35237064842555, 10.374858229158333, 13.623416402069841, + 16.689362884603092 + ], + "pressure:J8:branch130_seg0": [ + 135078.03665695092, 153169.28414904195, 165142.71248315935, + 168798.48584743583, 165486.38440010312, 156314.64249918854, + 142564.79662804116, 125683.66779619087, 109148.81349796237, + 92267.77528938453, 76304.88834963452, 61622.332846529556, + 46756.55230167993, 32469.89630232822, 17801.94157394239, + 3109.8008993659782, -11019.133853641446, -24564.610737993535, + -35871.08531137931, -45280.606602914144, -52836.9345579572, + -58165.69164357218, -62209.554253260525, -65231.829009207046, + -67481.64545381269, -69147.4059012149, -69879.91390564831, + -69429.51133013132, -67613.12382322179, -64579.8942988769, + -60618.75973406719, -56930.89925473628, -54482.239586671356, + -54182.37309984123, -56986.417606196104, -62954.72053690199, + -71316.14336994466, -80826.3011753255, -90103.7999580596, + -96750.0427600101, -99782.75949807772, -98411.12541363333, + -92322.30943558174, -82176.01095851627, -70119.40126765787, + -56609.78156076966, -43024.458770887606, -31426.169736456002, + -20956.556557642063, -12271.202103410815, -5114.5785973296115, + 1620.7677499585902, 7230.229869201826, 12252.952467536483, + 16543.6566364899, 19160.49948664358, 20069.19808443824, 19020.6898900087, + 16116.9071145584, 11801.30443336161, 7153.378247236522, 2623.438800661939, + -997.0900013303518, -3264.670817779078, -4491.728230644828, + -4908.3666397799025, -5107.715408317201, -5704.489273234549, + -6965.574923718585, -8902.15824116213, -11033.239468627264, + -12947.271698990426, -14102.877316294363, -13968.056665349402, + -12608.175892484696, -10374.696601563935, -7790.318233830218, + -5301.678197432434, -3715.5784010877423, -2962.988838369506, + -2807.845156823598, -2920.051637660973, -2657.6901664001366, + -1548.671310859524, 520.5311529303137, 3372.2264106632724, + 6279.83950445731, 8701.129888142757, 10027.071778927437, + 10092.571790619722, 9507.809675273442, 9399.889584843106, + 11313.297559036055, 16872.25471560182, 27299.298683233028, + 43582.72985228824, 63769.59183203193, 87548.03594537493, + 113276.81978803083, 135078.03665695092 + ], + "flow:branch12_seg0:J9": [ + 176.32338494344887, 198.57719937908053, 210.40366849946867, + 211.19255134844278, 201.94544683128117, 184.5207101706061, + 161.47958120765617, 136.2284433280454, 111.93625077906226, + 88.88206483149378, 68.64751060259667, 50.770899784977274, + 33.71557450661465, 17.615070000206103, 1.1114096083603116, + -15.517582230618954, -31.30237224194031, -46.18413202007999, + -58.35341459539159, -67.96240735241489, -74.66714425300783, + -78.72577920733204, -81.17349818012109, -82.48951616540711, + -83.28365590808488, -83.6128003039815, -83.14477731089072, + -81.39966291422452, -78.05320591397832, -73.08220698664819, + -67.14651769392417, -61.608102669954256, -57.89739684568871, + -57.57686874753277, -61.72870444474342, -70.31298360889951, + -82.41836807578582, -95.91647273976005, -108.6712877095877, + -117.50738064260365, -120.9368710732627, -117.62807454578432, + -107.85167465285681, -92.63227636772433, -74.65043600040242, + -55.29916513102548, -37.25555693746798, -22.026515408297886, + -9.367396121792476, 0.05942313156120982, 7.573133288496423, + 13.792808466101945, 19.00986776483078, 23.770249222144678, + 27.422863881642105, 29.3010617684523, 28.98656724999151, + 26.045872817166963, 20.73450484619214, 13.780041387193826, + 6.530576034216426, -0.1543399094106672, -5.1207210753412005, + -7.902787750197156, -8.886165158135801, -8.573257734164141, + -7.988816113790089, -8.031361992628552, -9.157792817657677, + -11.420673290968894, -14.17291454209013, -16.721667494478314, + -18.07434066114548, -17.680103884435642, -15.46403699122878, + -11.974799305144742, -7.913364261192244, -4.330832299830485, + -2.032599945504374, -1.1104650536499765, -1.358536780355297, + -2.0340291407657167, -2.1784414633279625, -1.0636804791287982, + 1.5444811405254115, 5.345224490340621, 9.33477970216518, + 12.596520979209798, 14.16993270138332, 13.846891700667554, + 12.395197924439055, 11.438379893190481, 13.208450332068, + 20.14744734119931, 33.79241481516181, 55.37810011237908, + 82.68012431419501, 115.17614425622682, 147.82696287163049, + 176.32338494344887 + ], + "pressure:branch12_seg0:J9": [ + 192690.02637190212, 204917.845099224, 208142.87710770886, + 197611.9126441905, 179152.4375647104, 156320.043420518, + 131334.51940489493, 103469.34627425164, 83425.92691076368, + 64206.7678361875, 45701.24385854845, 32213.322170503463, + 15916.542159600482, 1096.988751399725, -13853.574756537391, + -30615.217103695224, -43998.70475725305, -56817.44757279587, + -66223.6829384844, -72043.10148459855, -76327.0611389431, + -77979.3118438909, -78752.391818223, -79379.3204048116, -79584.896579099, + -79434.83701451115, -78106.34731926424, -75016.04383440442, + -70163.05593412914, -64233.47702645138, -57869.767634935844, + -53411.42431236228, -52633.451666930145, -55690.67142091837, + -63914.40659679198, -76084.93340015106, -90685.9638871108, + -103318.94939326902, -114194.58402094596, -118266.49426139292, + -115355.3831447381, -106266.50772676132, -91442.5698248248, + -72180.37638079088, -53367.35776050462, -35226.12934596816, + -18678.89589900397, -7444.2207980374205, 1656.8168284676974, + 8605.86170489576, 13537.172985351426, 18989.36214109534, + 23089.757131988405, 26434.965992354893, 29267.785228677265, + 28942.202224198016, 26206.657879338276, 21060.904192631882, + 14147.15565114076, 5847.2778191606885, -594.3394452901767, + -5615.2651586617985, -9076.91193835681, -9385.934185067645, + -8740.364939774665, -7753.468613470339, -7162.523161897597, + -7985.200034314741, -10143.902155017862, -13240.795243326535, + -16027.372607190355, -17819.706100165808, -17929.49203198635, + -15826.520241584014, -12007.715498624188, -7726.662438305714, + -3849.250402307893, -908.582546391482, -123.62982107459149, + -782.4240287835731, -1733.4080804185141, -2436.173658254096, + -1842.902615930321, 595.0349888294811, 4348.568047083188, + 9010.621406818444, 12487.591824003252, 14333.318528051479, + 14344.630873264954, 12314.027370411057, 10268.492874317897, + 10614.138887535837, 15677.127411461845, 27776.384505935268, + 47111.280083285405, 75214.11452637814, 105784.19402988718, + 138997.43653481614, 171623.27929785743, 192690.02637190212 + ], + "flow:J9:branch13_seg0": [ + 65.69149561064827, 73.48884214272803, 77.26866854338341, + 76.92414164588227, 72.90235034398546, 65.99654616290344, + 57.198076383474245, 47.70961816938881, 38.86309986899542, + 30.530644870896612, 23.30149308008793, 16.994896895519194, + 10.941602674263159, 5.211179323675215, -0.7009414652331499, + -6.706697390010354, -12.414314698119455, -17.690449887574506, + -22.008335072308622, -25.337340002474242, -27.569857873223782, + -28.871068356553856, -29.599868668361957, -29.96376771928154, + -30.18089461499212, -30.24766718791687, -30.027944598602268, + -29.33330304916703, -28.032458240838572, -26.14343237164686, + -23.911138138632708, -21.885503867206406, -20.593015302417975, + -20.614855161124115, -22.329028950828526, -25.68978806174886, + -30.32159025078124, -35.37352065555535, -40.0382121781258, + -43.14885500555849, -44.14519446429868, -42.61523539633227, + -38.670869413375485, -32.811005941557966, -25.99571869551729, + -18.79939259688601, -12.256715365050692, -6.80479366055074, + -2.3820311485958325, 0.8457160686459659, 3.403571326626957, + 5.5212655530778285, 7.29936255613988, 8.959670713607887, + 10.21448888782635, 10.796828535693866, 10.563957735430858, + 9.352276606880453, 7.28420141381847, 4.62851543610366, 1.939894176550318, + -0.4863648799226228, -2.2454815359435254, -3.1510290327952633, + -3.3855364409763538, -3.1723209983855494, -2.897248001427303, + -2.8993041670738084, -3.341102972455439, -4.21261887347401, + -5.259456250317606, -6.20217250894621, -6.656995764690413, + -6.438512503108801, -5.536707738268945, -4.174303220585485, + -2.6396729967263415, -1.3238969181634648, -0.5345384560257257, + -0.2669622227983124, -0.4337603482680491, -0.7316564624312301, + -0.7949082290503893, -0.3554207082431864, 0.6547842740733135, + 2.108535206424668, 3.5955427616227906, 4.770038123918149, + 5.290715452029292, 5.0799487731386135, 4.464853636852687, + 4.082701883658512, 4.795272338717524, 7.499814638284704, + 12.78698796084568, 20.99199963845044, 31.3059211544533, + 43.471002199898955, 55.43849410898953, 65.69149561064827 + ], + "pressure:J9:branch13_seg0": [ + 192690.02637190212, 204917.845099224, 208142.87710770886, + 197611.9126441905, 179152.4375647104, 156320.043420518, + 131334.51940489493, 103469.34627425164, 83425.92691076368, + 64206.7678361875, 45701.24385854845, 32213.322170503463, + 15916.542159600482, 1096.988751399725, -13853.574756537391, + -30615.217103695224, -43998.70475725305, -56817.44757279587, + -66223.6829384844, -72043.10148459855, -76327.0611389431, + -77979.3118438909, -78752.391818223, -79379.3204048116, -79584.896579099, + -79434.83701451115, -78106.34731926424, -75016.04383440442, + -70163.05593412914, -64233.47702645138, -57869.767634935844, + -53411.42431236228, -52633.451666930145, -55690.67142091837, + -63914.40659679198, -76084.93340015106, -90685.9638871108, + -103318.94939326902, -114194.58402094596, -118266.49426139292, + -115355.3831447381, -106266.50772676132, -91442.5698248248, + -72180.37638079088, -53367.35776050462, -35226.12934596816, + -18678.89589900397, -7444.2207980374205, 1656.8168284676974, + 8605.86170489576, 13537.172985351426, 18989.36214109534, + 23089.757131988405, 26434.965992354893, 29267.785228677265, + 28942.202224198016, 26206.657879338276, 21060.904192631882, + 14147.15565114076, 5847.2778191606885, -594.3394452901767, + -5615.2651586617985, -9076.91193835681, -9385.934185067645, + -8740.364939774665, -7753.468613470339, -7162.523161897597, + -7985.200034314741, -10143.902155017862, -13240.795243326535, + -16027.372607190355, -17819.706100165808, -17929.49203198635, + -15826.520241584014, -12007.715498624188, -7726.662438305714, + -3849.250402307893, -908.582546391482, -123.62982107459149, + -782.4240287835731, -1733.4080804185141, -2436.173658254096, + -1842.902615930321, 595.0349888294811, 4348.568047083188, + 9010.621406818444, 12487.591824003252, 14333.318528051479, + 14344.630873264954, 12314.027370411057, 10268.492874317897, + 10614.138887535837, 15677.127411461845, 27776.384505935268, + 47111.280083285405, 75214.11452637814, 105784.19402988718, + 138997.43653481614, 171623.27929785743, 192690.02637190212 + ], + "flow:J9:branch80_seg0": [ + 31.439279906218026, 34.47902631024528, 35.544470231703535, + 34.63922461517638, 32.18310638746275, 28.567208311916847, + 24.247889267119646, 19.856901460892047, 15.930528835859125, + 12.287812171145438, 9.208790605369815, 6.531900637457148, + 3.8371873285921665, 1.2993080045338772, -1.3977596680859394, + -4.125941687487132, -6.591160267187311, -8.958407819766215, + -10.699066375158793, -12.002364610289808, -12.851933793368497, + -13.254835046125077, -13.48981255557199, -13.59527171101844, + -13.65905924298823, -13.666426648732415, -13.516611091313914, + -13.113777802702943, -12.42368145587796, -11.464650536268476, + -10.400163587559648, -9.518223622030243, -9.074844102826699, + -9.317070516005213, -10.40114796751753, -12.21846964303662, + -14.528755706063809, -16.87330349128914, -18.91585200250624, + -20.019319551925218, -20.08417532440375, -18.933794909797637, + -16.74643619618259, -13.727654606486313, -10.523219249636382, + -7.252788104160629, -4.353803367242014, -2.1354336624359913, + -0.3083536080727434, 0.9550119478186246, 1.9669049101231713, + 2.8652894830513356, 3.6188070611024705, 4.326521792009125, + 4.831189892886689, 4.974692069197666, 4.717891277903254, + 4.001349238195579, 2.9090295688911874, 1.6116291143381818, + 0.385555789560167, -0.6614432047398409, -1.3259379608552426, + -1.57704383360575, -1.569716284605738, -1.394773340226795, + -1.2602430299042406, -1.314171966874521, -1.5892728798955846, + -2.0610251930542054, -2.556784423804282, -2.953970122999078, + -3.0816956745035817, -2.863183330169377, -2.334298915996225, + -1.6454816735628661, -0.9267777831813607, -0.36923233090234997, + -0.1001385150100517, -0.0788579258922589, -0.22342075762469174, + -0.38045150387002175, -0.3668124310442965, -0.07711601708157957, + 0.48263464100785813, 1.2144407500804224, 1.8912810337554171, + 2.3642914368179353, 2.474806661076667, 2.249367774449483, + 1.9045012530525651, 1.7858374551837677, 2.307467350577523, + 3.900134874974058, 6.710346932217331, 10.970024515611444, + 15.958824050271065, 21.67358890955129, 27.151643211763062, + 31.439279906218026 + ], + "pressure:J9:branch80_seg0": [ + 192690.02637190212, 204917.845099224, 208142.87710770886, + 197611.9126441905, 179152.4375647104, 156320.043420518, + 131334.51940489493, 103469.34627425164, 83425.92691076368, + 64206.7678361875, 45701.24385854845, 32213.322170503463, + 15916.542159600482, 1096.988751399725, -13853.574756537391, + -30615.217103695224, -43998.70475725305, -56817.44757279587, + -66223.6829384844, -72043.10148459855, -76327.0611389431, + -77979.3118438909, -78752.391818223, -79379.3204048116, -79584.896579099, + -79434.83701451115, -78106.34731926424, -75016.04383440442, + -70163.05593412914, -64233.47702645138, -57869.767634935844, + -53411.42431236228, -52633.451666930145, -55690.67142091837, + -63914.40659679198, -76084.93340015106, -90685.9638871108, + -103318.94939326902, -114194.58402094596, -118266.49426139292, + -115355.3831447381, -106266.50772676132, -91442.5698248248, + -72180.37638079088, -53367.35776050462, -35226.12934596816, + -18678.89589900397, -7444.2207980374205, 1656.8168284676974, + 8605.86170489576, 13537.172985351426, 18989.36214109534, + 23089.757131988405, 26434.965992354893, 29267.785228677265, + 28942.202224198016, 26206.657879338276, 21060.904192631882, + 14147.15565114076, 5847.2778191606885, -594.3394452901767, + -5615.2651586617985, -9076.91193835681, -9385.934185067645, + -8740.364939774665, -7753.468613470339, -7162.523161897597, + -7985.200034314741, -10143.902155017862, -13240.795243326535, + -16027.372607190355, -17819.706100165808, -17929.49203198635, + -15826.520241584014, -12007.715498624188, -7726.662438305714, + -3849.250402307893, -908.582546391482, -123.62982107459149, + -782.4240287835731, -1733.4080804185141, -2436.173658254096, + -1842.902615930321, 595.0349888294811, 4348.568047083188, + 9010.621406818444, 12487.591824003252, 14333.318528051479, + 14344.630873264954, 12314.027370411057, 10268.492874317897, + 10614.138887535837, 15677.127411461845, 27776.384505935268, + 47111.280083285405, 75214.11452637814, 105784.19402988718, + 138997.43653481614, 171623.27929785743, 192690.02637190212 + ], + "flow:J9:branch94_seg0": [ + 79.19260942658329, 90.60933092610735, 97.59052972438066, 99.6291850873845, + 96.85999009983074, 89.95695569578272, 80.03361555706245, + 68.66192369776621, 57.14262207420881, 46.063607789452035, + 36.137226917134136, 27.244102251997965, 18.936784503762095, + 11.10458267199835, 3.2101107416820827, -4.6849431531234345, + -12.296897276629283, -19.535274312737197, -25.646013147927153, + -30.622702739649114, -34.24535258641155, -36.599875804659796, + -38.08381695618723, -38.93047673510771, -39.44370205010439, + -39.69870646733278, -39.60022162097251, -38.95258206235527, + -37.597066217259844, -35.47412407873409, -32.835215967729994, + -30.204375180717346, -28.22953744044789, -27.644943070411546, + -28.9985275263962, -32.404725904114976, -37.56802211894239, + -43.66964859291562, -49.71722352895564, -54.339206085119855, + -56.7075012845611, -56.07904423965358, -52.43436904329898, + -46.093615819680366, -38.13149805524862, -29.246984429979044, + -20.645038205175307, -13.086288085311168, -6.6770113651238985, + -1.741304884903409, 2.2026570517462964, 5.40625342997278, + 8.091698147588422, 10.484056716527716, 12.377185100928983, + 13.529541163560703, 13.704718236657387, 12.692246972091569, + 10.541273863482935, 7.539896836752351, 4.205126068105961, + 0.9934681752518932, -1.5493015785422897, -3.1747148837962436, + -3.9309124325538023, -4.0061633955520435, -3.831325082458508, + -3.8178858586801856, -4.227416965306769, -5.147029224441012, + -6.356673867968413, -7.565524862532894, -8.33564922195144, + -8.378408051157455, -7.593030336963515, -6.15501441099632, + -4.346913481284573, -2.6377030507647135, -1.3979229744686417, + -0.7646449049594259, -0.701355674462566, -0.9219211744644575, + -1.0167208032332617, -0.6311437538040363, 0.4070622254442819, + 2.0222485338355995, 3.847955906787041, 5.462191418473768, + 6.40441058827731, 6.5175751530794495, 6.025843034533629, + 5.569840554348218, 6.105710642772772, 8.747497827940677, + 14.295079922098276, 23.416075958317318, 35.41537910947175, + 50.03155314677658, 65.236825550878, 79.19260942658329 + ], + "pressure:J9:branch94_seg0": [ + 192690.02637190212, 204917.845099224, 208142.87710770886, + 197611.9126441905, 179152.4375647104, 156320.043420518, + 131334.51940489493, 103469.34627425164, 83425.92691076368, + 64206.7678361875, 45701.24385854845, 32213.322170503463, + 15916.542159600482, 1096.988751399725, -13853.574756537391, + -30615.217103695224, -43998.70475725305, -56817.44757279587, + -66223.6829384844, -72043.10148459855, -76327.0611389431, + -77979.3118438909, -78752.391818223, -79379.3204048116, -79584.896579099, + -79434.83701451115, -78106.34731926424, -75016.04383440442, + -70163.05593412914, -64233.47702645138, -57869.767634935844, + -53411.42431236228, -52633.451666930145, -55690.67142091837, + -63914.40659679198, -76084.93340015106, -90685.9638871108, + -103318.94939326902, -114194.58402094596, -118266.49426139292, + -115355.3831447381, -106266.50772676132, -91442.5698248248, + -72180.37638079088, -53367.35776050462, -35226.12934596816, + -18678.89589900397, -7444.2207980374205, 1656.8168284676974, + 8605.86170489576, 13537.172985351426, 18989.36214109534, + 23089.757131988405, 26434.965992354893, 29267.785228677265, + 28942.202224198016, 26206.657879338276, 21060.904192631882, + 14147.15565114076, 5847.2778191606885, -594.3394452901767, + -5615.2651586617985, -9076.91193835681, -9385.934185067645, + -8740.364939774665, -7753.468613470339, -7162.523161897597, + -7985.200034314741, -10143.902155017862, -13240.795243326535, + -16027.372607190355, -17819.706100165808, -17929.49203198635, + -15826.520241584014, -12007.715498624188, -7726.662438305714, + -3849.250402307893, -908.582546391482, -123.62982107459149, + -782.4240287835731, -1733.4080804185141, -2436.173658254096, + -1842.902615930321, 595.0349888294811, 4348.568047083188, + 9010.621406818444, 12487.591824003252, 14333.318528051479, + 14344.630873264954, 12314.027370411057, 10268.492874317897, + 10614.138887535837, 15677.127411461845, 27776.384505935268, + 47111.280083285405, 75214.11452637814, 105784.19402988718, + 138997.43653481614, 171623.27929785743, 192690.02637190212 + ], + "flow:branch13_seg0:J10": [ + 65.65627582151527, 73.47569774919049, 77.2905787805759, 76.95391942383108, + 72.95503934545681, 66.06725319877303, 57.278343853291474, + 47.802135199421976, 38.949344361889096, 30.576768005650447, + 23.381152978848704, 17.047630362542435, 10.998115496537265, + 5.277167196280765, -0.6705346582757844, -6.629630931959339, + -12.380851622035939, -17.67759024400528, -21.986526931969426, + -25.328386270777866, -27.570788198364394, -28.869840448569246, + -29.602084039123472, -29.966078542570585, -30.179245997391366, + -30.251301256967782, -30.032500293199764, -29.34392862118547, + -28.044764944153293, -26.16360316313923, -23.92390828329175, + -21.898976190873825, -20.591886399691063, -20.599375481850583, + -22.29389259319963, -25.653789758297115, -30.25557544124017, + -35.336018309201904, -40.01068860069247, -43.13907537680462, + -44.16434294252748, -42.66392846335597, -38.70798476950846, + -32.85081738403682, -26.04121970719276, -18.835735787074015, + -12.274652885622254, -6.821259408992734, -2.391144491713076, + 0.8450991844958279, 3.384866529196129, 5.519834283744672, + 7.289336340792972, 8.948980329609771, 10.21158478831547, + 10.79756254736002, 10.574820366760715, 9.372435263516211, + 7.307720053252359, 4.659960584066811, 1.96663581120791, + -0.4785670751548543, -2.2314549652389144, -3.1501010001406695, + -3.390783119683291, -3.175141664050055, -2.89628159139679, + -2.8940400663348784, -3.335537195684015, -4.206412532233208, + -5.255209502515904, -6.199890702166622, -6.663125311148412, + -6.4441768242971325, -5.547317272986547, -4.181145424556586, + -2.6503707477829055, -1.324925612517218, -0.5361127207455262, + -0.26507407509158615, -0.4303776759406294, -0.7311413683634217, + -0.7989878685040546, -0.36598858910518645, 0.6412141405679155, + 2.0911560158797426, 3.5822615732313556, 4.77002540786536, + 5.292639242309739, 5.085258957098637, 4.469459657115026, + 4.0753901365847485, 4.775478040666483, 7.447264020131336, + 12.741674501401357, 20.93163752425697, 31.25324846021737, + 43.38408800174226, 55.4202986472589, 65.65627582151527 + ], + "pressure:branch13_seg0:J10": [ + 184456.9865506136, 198963.2275607149, 204642.15359777075, + 196925.58453574943, 181081.42040495833, 160225.3758004603, + 136562.66079216407, 109538.86311631388, 88448.69344510249, + 68965.98688450937, 50357.94165541766, 35808.46521692216, + 20025.256429556488, 4949.907455619304, -10061.947158501058, + -25954.71869329019, -40494.9716508452, -53410.63379011456, + -63013.05459240887, -69792.54165610654, -74526.86889406286, + -76576.52525295905, -77715.25398602079, -78379.00630480735, + -78649.47616307363, -78663.41327692449, -77539.94624793621, + -74895.39600608703, -70501.75264919263, -65040.1642717734, + -58816.0102809609, -54171.34318169163, -52629.395905235455, + -54559.97667392165, -61470.11494419953, -72496.00815863561, + -86019.80802128401, -99091.99549163865, -110172.69507890721, + -115687.43475295178, -114471.6131696808, -107113.02444589564, + -93493.96078914162, -75339.27986015934, -57303.55182038604, + -39013.351793033966, -22126.469517623893, -10452.970396677149, + -588.9993757072253, 6705.31923122407, 11812.120519773984, + 17612.28771207582, 21602.53372866529, 25096.840628593865, + 28245.805742460696, 28456.90398367617, 26408.215216999994, + 22025.653358277224, 15661.672469103496, 7915.055036584265, + 1156.8908208789962, -4151.390493009158, -7953.546612827675, + -9035.276852431016, -8715.459218650132, -7859.0064229762775, + -7209.8022362773745, -7759.195994667608, -9635.788149257898, + -12508.566702992774, -15212.044298163886, -17180.65545684084, + -17681.09065900062, -15980.392572406603, -12652.313622861127, + -8588.821394685032, -4828.304236272316, -1624.196496497532, + -528.4700763230047, -806.8288337501895, -1510.006150122177, + -2251.1030049213277, -1913.3082086041027, 58.44818502223054, + 3437.424437662351, 7749.3365013219045, 11437.758646345237, + 13636.175693919467, 14077.518853945543, 12538.188536817092, + 10587.0970239786, 10477.947199353532, 14531.247982532812, + 24914.87681865172, 42673.42541836858, 68823.67982025877, + 97821.49705699064, 129695.4302714788, 163067.02933765246, + 184456.9865506136 + ], + "flow:J10:branch14_seg0": [ + 33.20215173384943, 37.16142137193652, 39.092237830463276, + 38.93050822748928, 36.91062893618448, 33.43315377163337, + 28.996910479159883, 24.192070714907246, 19.72842225195737, + 15.496816585775976, 11.841121280936084, 8.641878370372886, + 5.576742043282914, 2.6790395351133407, -0.3207394618183993, + -3.3484704824747182, -6.25946993787739, -8.925685900791617, + -11.119041133886551, -12.811932044088746, -13.94470916354618, + -14.60859175589679, -14.97851949389219, -15.163960497549656, + -15.273627817241259, -15.30860790046599, -15.197550242621384, + -14.849009310942787, -14.191182592789078, -13.2405779896088, + -12.108724440915108, -11.085666502578084, -10.426377216182049, + -10.429845213984487, -11.284912599926113, -12.979025446016307, + -15.309630036199087, -17.870821561440547, -20.232473930575253, + -21.818234935682113, -22.335049026881524, -21.580801357692103, + -19.58504767545978, -16.63313041645932, -13.184052594075151, + -9.537674297186486, -6.2266512770469244, -3.459336575737255, + -1.2199275487278258, 0.41973714926709255, 1.7116689567730605, + 2.789548501494189, 3.6845839371187745, 4.525784124698059, + 5.164166204625245, 5.45967581714026, 5.34720095729007, 4.739521462385444, + 3.698611687836978, 2.3575374344204243, 0.9996454378901081, + -0.2323950239116606, -1.1255875653825618, -1.5903120313450563, + -1.7122546709096975, -1.606395481314948, -1.466625732337896, + -1.465431544565945, -1.688250090374809, -2.1268743383708753, + -2.6572203855983942, -3.1354406735663294, -3.3681474957137487, + -3.2587952252653176, -2.8060495916373673, -2.1160030601598754, + -1.3421200625709744, -0.672737725565075, -0.27420222181049453, + -0.13589629984216675, -0.2186275542740623, -0.36911900881024107, + -0.40262322762685565, -0.18341574462469515, 0.3243322854643101, + 1.057705550381735, 1.80958132860917, 2.407312291069359, + 2.6751733564133153, 2.5719084476088936, 2.2622923877961294, + 2.064879324072364, 2.4200386097350934, 3.7711299115444636, + 6.448052946442275, 10.580115069845107, 15.801130429226179, + 21.950786919124873, 28.018309214865873, 33.20215173384943 + ], + "pressure:J10:branch14_seg0": [ + 184456.9865506136, 198963.2275607149, 204642.15359777075, + 196925.58453574943, 181081.42040495833, 160225.3758004603, + 136562.66079216407, 109538.86311631388, 88448.69344510249, + 68965.98688450937, 50357.94165541766, 35808.46521692216, + 20025.256429556488, 4949.907455619304, -10061.947158501058, + -25954.71869329019, -40494.9716508452, -53410.63379011456, + -63013.05459240887, -69792.54165610654, -74526.86889406286, + -76576.52525295905, -77715.25398602079, -78379.00630480735, + -78649.47616307363, -78663.41327692449, -77539.94624793621, + -74895.39600608703, -70501.75264919263, -65040.1642717734, + -58816.0102809609, -54171.34318169163, -52629.395905235455, + -54559.97667392165, -61470.11494419953, -72496.00815863561, + -86019.80802128401, -99091.99549163865, -110172.69507890721, + -115687.43475295178, -114471.6131696808, -107113.02444589564, + -93493.96078914162, -75339.27986015934, -57303.55182038604, + -39013.351793033966, -22126.469517623893, -10452.970396677149, + -588.9993757072253, 6705.31923122407, 11812.120519773984, + 17612.28771207582, 21602.53372866529, 25096.840628593865, + 28245.805742460696, 28456.90398367617, 26408.215216999994, + 22025.653358277224, 15661.672469103496, 7915.055036584265, + 1156.8908208789962, -4151.390493009158, -7953.546612827675, + -9035.276852431016, -8715.459218650132, -7859.0064229762775, + -7209.8022362773745, -7759.195994667608, -9635.788149257898, + -12508.566702992774, -15212.044298163886, -17180.65545684084, + -17681.09065900062, -15980.392572406603, -12652.313622861127, + -8588.821394685032, -4828.304236272316, -1624.196496497532, + -528.4700763230047, -806.8288337501895, -1510.006150122177, + -2251.1030049213277, -1913.3082086041027, 58.44818502223054, + 3437.424437662351, 7749.3365013219045, 11437.758646345237, + 13636.175693919467, 14077.518853945543, 12538.188536817092, + 10587.0970239786, 10477.947199353532, 14531.247982532812, + 24914.87681865172, 42673.42541836858, 68823.67982025877, + 97821.49705699064, 129695.4302714788, 163067.02933765246, + 184456.9865506136 + ], + "flow:J10:branch106_seg0": [ + 32.45412408766575, 36.31427637725358, 38.19834095011235, + 38.02341119634053, 36.04441040927169, 32.63409942713882, + 28.281433374130895, 23.610064484513664, 19.220922109931553, + 15.07995141987427, 11.540031697911598, 8.405751992170558, + 5.421373453254594, 2.5981276611657793, -0.3497951964582558, + -3.28116044948197, -6.121381684157966, -8.751904343212384, + -10.867485798081523, -12.516454226690277, -13.626079034820574, + -14.261248692671801, -14.623564545232512, -14.80211804502035, + -14.905618180149588, -14.942693356501039, -14.834950050578614, + -14.49491931024319, -13.853582351363945, -12.923025173530228, + -11.815183842375484, -10.813309688296068, -10.165509183507412, + -10.169530267866465, -11.008979993272453, -12.674764312281036, + -14.94594540504154, -17.465196747761855, -19.77821467011682, + -21.320840441122204, -21.829293915646147, -21.083127105663696, + -19.122937094048687, -16.2176869675776, -12.857167113117649, + -9.29806148988752, -6.048001608575314, -3.36192283325548, + -1.171216942985256, 0.4253620352287328, 1.673197572423069, + 2.730285782250483, 3.6047524036742176, 4.423196204911727, + 5.04741858369024, 5.337886730219691, 5.227619409470589, 4.632913801130897, + 3.6091083654152656, 2.302423149646416, 0.9669903733178545, + -0.24617205124314462, -1.1058673998562862, -1.5597889687956241, + -1.6785284487736927, -1.568746182735204, -1.4296558590588737, + -1.4286085217688838, -1.6472871053092257, -2.079538193862306, + -2.59798911691749, -3.0644500286003087, -3.294977815434684, + -3.1853815990318854, -2.7412676813491488, -2.065142364396706, + -1.3082506852118947, -0.65218788695211, -0.261910498935048, + -0.12917777524941926, -0.21175012166656645, -0.3620223595531797, + -0.39636464087719125, -0.18257284448051547, 0.3168818551036167, + 1.033450465498001, 1.772680244622199, 2.3627131167960056, + 2.6174658858963906, 2.51335050948973, 2.2071672693188624, + 2.0105108125123325, 2.355439430931349, 3.676134108586742, + 6.293621554959072, 10.351522454411977, 15.4521180309912, + 21.43330108261717, 27.40198943239307, 32.45412408766575 + ], + "pressure:J10:branch106_seg0": [ + 184456.9865506136, 198963.2275607149, 204642.15359777075, + 196925.58453574943, 181081.42040495833, 160225.3758004603, + 136562.66079216407, 109538.86311631388, 88448.69344510249, + 68965.98688450937, 50357.94165541766, 35808.46521692216, + 20025.256429556488, 4949.907455619304, -10061.947158501058, + -25954.71869329019, -40494.9716508452, -53410.63379011456, + -63013.05459240887, -69792.54165610654, -74526.86889406286, + -76576.52525295905, -77715.25398602079, -78379.00630480735, + -78649.47616307363, -78663.41327692449, -77539.94624793621, + -74895.39600608703, -70501.75264919263, -65040.1642717734, + -58816.0102809609, -54171.34318169163, -52629.395905235455, + -54559.97667392165, -61470.11494419953, -72496.00815863561, + -86019.80802128401, -99091.99549163865, -110172.69507890721, + -115687.43475295178, -114471.6131696808, -107113.02444589564, + -93493.96078914162, -75339.27986015934, -57303.55182038604, + -39013.351793033966, -22126.469517623893, -10452.970396677149, + -588.9993757072253, 6705.31923122407, 11812.120519773984, + 17612.28771207582, 21602.53372866529, 25096.840628593865, + 28245.805742460696, 28456.90398367617, 26408.215216999994, + 22025.653358277224, 15661.672469103496, 7915.055036584265, + 1156.8908208789962, -4151.390493009158, -7953.546612827675, + -9035.276852431016, -8715.459218650132, -7859.0064229762775, + -7209.8022362773745, -7759.195994667608, -9635.788149257898, + -12508.566702992774, -15212.044298163886, -17180.65545684084, + -17681.09065900062, -15980.392572406603, -12652.313622861127, + -8588.821394685032, -4828.304236272316, -1624.196496497532, + -528.4700763230047, -806.8288337501895, -1510.006150122177, + -2251.1030049213277, -1913.3082086041027, 58.44818502223054, + 3437.424437662351, 7749.3365013219045, 11437.758646345237, + 13636.175693919467, 14077.518853945543, 12538.188536817092, + 10587.0970239786, 10477.947199353532, 14531.247982532812, + 24914.87681865172, 42673.42541836858, 68823.67982025877, + 97821.49705699064, 129695.4302714788, 163067.02933765246, + 184456.9865506136 + ], + "flow:branch15_seg0:J11": [ + 151.57997391137428, 185.73990603098665, 215.96839529271713, + 239.56035963440831, 254.5548979344372, 260.05011612454405, + 256.35927342945155, 245.06133879798463, 227.9053850617156, + 206.82100576464939, 183.8884881471847, 159.92826570895818, + 135.7065142666036, 111.45297218116943, 86.88459682988017, + 62.312149767031826, 37.66972891487911, 13.493137333673872, + -9.300518020521363, -30.30090063471331, -48.76273503109055, + -64.41292625670604, -77.38136977591238, -87.86884197209531, + -96.31297985689402, -103.0261155388633, -108.1137377530778, + -111.50477536425967, -113.0029381205756, -112.45691999258752, + -110.00065554412845, -106.21306856403237, -102.00598935442882, + -98.7204216047993, -97.67188398075474, -99.90865770243148, + -105.81334214439927, -115.16644090073127, -126.71880243174351, + -138.64296075601882, -148.99877486963598, -155.72731680658845, + -157.43020301400165, -153.4856168361614, -144.2666162289926, + -130.48248520379062, -113.80150405629618, -95.76944322310217, + -77.5765266902762, -60.4116876413459, -44.579235869223915, + -30.203370309149733, -17.25918679787116, -5.5220060789412395, + 4.846626862287936, 13.589689677701077, 20.290215157566756, + 24.473422484708887, 25.886005438892525, 24.640082400023175, + 21.165863429667617, 16.198647568279043, 10.777267918417751, + 5.637640803384104, 1.3933986264442082, -1.723579723435276, + -3.934415363075352, -5.678290875588136, -7.46037074134591, + -9.667583707976693, -12.36419998044947, -15.35473808489522, + -18.12442284256782, -20.101918066534466, -20.848732809644297, + -20.191021329665695, -18.276177713922763, -15.585436450329308, + -12.748262632773205, -10.270721991818695, -8.495595294225462, + -7.381395144964283, -6.567866844583471, -5.537406011988905, + -3.796844306273431, -1.1168207045587846, 2.3758661754998833, + 6.220272411977858, 9.678725250508156, 12.213773505569387, + 13.622846066170942, 14.334146764016065, 15.493917907659593, + 18.793217611119164, 26.17868885216017, 39.38048432896063, + 59.096953127120244, 85.61136687669764, 117.29627777448275, + 151.57997391137428 + ], + "pressure:branch15_seg0:J11": [ + 114932.75198396185, 133224.308433428, 147203.9865396237, + 154590.5033090977, 155947.21763314045, 151768.02210104518, + 142848.07451337087, 130185.44589563968, 116512.3808164267, + 101790.33810709858, 87045.70045656743, 72898.71921371382, + 58521.79515404704, 44466.8830429515, 30164.823087845554, + 15834.376622560427, 1828.2280937623898, -11734.85618633243, + -23580.852251044456, -33901.329143601346, -42608.577040704244, + -49310.95270098117, -54663.05041945017, -58852.29551374581, + -62098.88425535698, -64612.19761518071, -66180.7952818618, + -66650.7276771623, -65877.86477772462, -63941.784827049734, + -61018.04894554193, -57982.60134362939, -55632.73636465029, + -54738.86142257787, -56212.31639119371, -60305.65244188746, + -66621.359446826, -74369.129103396, -82463.40424750857, + -89043.85374103823, -93090.49508183681, -93734.08337281787, + -90436.63013537358, -83424.52758886707, -74214.02639752593, + -63103.97502521703, -51187.78396711801, -40289.672757794986, + -29957.3043468625, -20884.932902037017, -13085.739211141929, + -5764.856945933071, 495.9184376427337, 6095.10808330771, + 11008.845860444748, 14505.542614419528, 16517.406269571384, + 16819.345010739486, 15397.229409310487, 12533.551708227418, + 8988.232959611925, 5207.043611137182, 1838.6437803275142, + -654.6850430140585, -2338.22704372707, -3303.3415819270795, + -3936.9504737866214, -4708.811593491187, -5881.861044061928, + -7546.461481194941, -9406.95914697584, -11192.839330825747, + -12492.680180767062, -12829.01371521332, -12169.063976724556, + -10690.905869007787, -8747.393007956902, -6660.2412064947885, + -5098.410885849227, -4117.12173001083, -3608.916668873575, + -3408.119608772346, -3046.922892723609, -2130.931988770404, + -492.28248925724245, 1813.5700692686469, 4320.683456164829, + 6597.090667647118, 8144.306074294666, 8740.218277058775, + 8717.255040393095, 8860.928965026653, 10339.375036530193, + 14492.21794361903, 22457.88382154461, 35277.72930332869, + 51740.46775508888, 71763.95851929228, 94416.48248547022, + 114932.75198396185 + ], + "flow:J11:branch16_seg0": [ + 69.36650091626578, 86.4061599342277, 102.24826062699958, + 115.46783724472408, 124.90868676808917, 129.89749956155399, + 130.33252409870434, 126.70181239422575, 119.7458292300229, + 110.36524976227498, 99.53351907151651, 87.83398562941642, + 75.74325295205844, 63.474994318240896, 51.0265309684599, + 38.51337466577826, 25.942007810664045, 13.54644118927086, + 1.6728284579518116, -9.424040134895867, -19.385902323732992, + -28.03927659199011, -35.35832338851555, -41.400825515427805, + -46.33726250437146, -50.31454106017766, -53.41441280218378, + -55.63706204326758, -56.91487636689671, -57.17953962956111, + -56.462835412793, -54.975523779813194, -53.09978384474863, + -51.4195808563456, -50.56293728106401, -51.08537273969834, + -53.29624692524595, -57.213302273090065, -62.40806466377171, + -68.14109212006714, -73.50941258800292, -77.5255375702427, + -79.40947934923479, -78.70131185810105, -75.36294685451806, + -69.61618597029074, -62.120752102189414, -53.561681151436126, + -44.58395902331402, -35.797237119721856, -27.482166613001016, + -19.805238233195773, -12.806551634013355, -6.431429887547324, + -0.7382297627000041, 4.170626698619257, 8.112943392892667, + 10.869129270501034, 12.289819363350663, 12.36526818283393, + 11.24214492596172, 9.22365556558421, 6.752602644963566, 4.217794558800315, + 1.9607104411346767, 0.1595167260296859, -1.2013704303269637, + -2.269522956083818, -3.2603844872855765, -4.368122836390799, + -5.672615262132487, -7.131734466625862, -8.551619991383433, + -9.684852439911614, -10.304679066619059, -10.282381253780333, + -9.629265150917478, -8.515892302613521, -7.204839400811052, + -5.948274996424433, -4.943134028020116, -4.231620563605814, + -3.706150956529142, -3.159232287633291, -2.3609645299285127, + -1.1647297493761988, 0.4290638963835972, 2.259328019683349, + 4.028177690586282, 5.463660166836144, 6.412301082493514, + 6.981320017847893, 7.602034429195748, 8.990141846804175, + 12.040042670776431, 17.61192540408233, 26.22441657030973, + 38.153140249678174, 52.860344126316214, 69.36650091626578 + ], + "pressure:J11:branch16_seg0": [ + 114932.75198396185, 133224.308433428, 147203.9865396237, + 154590.5033090977, 155947.21763314045, 151768.02210104518, + 142848.07451337087, 130185.44589563968, 116512.3808164267, + 101790.33810709858, 87045.70045656743, 72898.71921371382, + 58521.79515404704, 44466.8830429515, 30164.823087845554, + 15834.376622560427, 1828.2280937623898, -11734.85618633243, + -23580.852251044456, -33901.329143601346, -42608.577040704244, + -49310.95270098117, -54663.05041945017, -58852.29551374581, + -62098.88425535698, -64612.19761518071, -66180.7952818618, + -66650.7276771623, -65877.86477772462, -63941.784827049734, + -61018.04894554193, -57982.60134362939, -55632.73636465029, + -54738.86142257787, -56212.31639119371, -60305.65244188746, + -66621.359446826, -74369.129103396, -82463.40424750857, + -89043.85374103823, -93090.49508183681, -93734.08337281787, + -90436.63013537358, -83424.52758886707, -74214.02639752593, + -63103.97502521703, -51187.78396711801, -40289.672757794986, + -29957.3043468625, -20884.932902037017, -13085.739211141929, + -5764.856945933071, 495.9184376427337, 6095.10808330771, + 11008.845860444748, 14505.542614419528, 16517.406269571384, + 16819.345010739486, 15397.229409310487, 12533.551708227418, + 8988.232959611925, 5207.043611137182, 1838.6437803275142, + -654.6850430140585, -2338.22704372707, -3303.3415819270795, + -3936.9504737866214, -4708.811593491187, -5881.861044061928, + -7546.461481194941, -9406.95914697584, -11192.839330825747, + -12492.680180767062, -12829.01371521332, -12169.063976724556, + -10690.905869007787, -8747.393007956902, -6660.2412064947885, + -5098.410885849227, -4117.12173001083, -3608.916668873575, + -3408.119608772346, -3046.922892723609, -2130.931988770404, + -492.28248925724245, 1813.5700692686469, 4320.683456164829, + 6597.090667647118, 8144.306074294666, 8740.218277058775, + 8717.255040393095, 8860.928965026653, 10339.375036530193, + 14492.21794361903, 22457.88382154461, 35277.72930332869, + 51740.46775508888, 71763.95851929228, 94416.48248547022, + 114932.75198396185 + ], + "flow:J11:branch24_seg0": [ + 82.21347299510855, 99.33374609675724, 113.72013466571775, + 124.09252238968439, 129.64621116634785, 130.1526165629959, + 126.02674933075068, 118.35952640376277, 108.15955583169615, + 96.45575600236988, 84.35496907566535, 72.09428007954457, 59.9632613145405, + 47.97797786292971, 35.858065861419796, 23.798775101254623, + 11.727721104217725, -0.053303855592715964, -10.973346478468727, + -20.876860499810242, -29.376832707362045, -36.37364966471174, + -42.02304638739676, -46.46801645667002, -49.97571735252269, + -52.71157447868178, -54.69932495089223, -55.86771332099227, + -56.08806175368265, -55.27738036302344, -53.53782013132818, + -51.23754478421702, -48.90620550968474, -47.30084074845471, + -47.108946699689525, -48.82328496273678, -52.51709521915397, + -57.95313862764177, -64.31073776797113, -70.50186863595096, + -75.48936228163356, -78.20177923634553, -78.02072366476705, + -74.78430497806244, -68.90366937447423, -60.86629923349984, + -51.680751954106775, -42.20776207166596, -32.99256766696162, + -24.614450521623326, -17.097069256222266, -10.39813207595382, + -4.452635163857596, 0.9094238086061772, 5.584856624988012, + 9.419062979082044, 12.177271764673943, 13.604293214207859, + 13.596186075541992, 12.274814217188974, 9.923718503705452, + 6.9749920026949, 4.0246652734537784, 1.4198462445834001, + -0.5673118146906565, -1.8830964494655322, -2.733044932748174, + -3.408767919504703, -4.199986254060185, -5.299460871585643, + -6.691584718316613, -8.223003618269264, -9.572802851184166, + -10.417065626622845, -10.54405374302539, -9.908640075885183, + -8.646912563005268, -7.0695441477159155, -5.5434232319621, + -4.322446995394363, -3.552461266205257, -3.149774581358404, + -2.861715888054433, -2.378173724355703, -1.435879776344968, + 0.04790904481738187, 1.9468022791162918, 3.9609443922944236, + 5.650547559921868, 6.750113338733265, 7.2105449836774405, + 7.35282674616809, 7.891883478463923, 9.80307576431506, 14.138646181384189, + 21.768558924878263, 32.87253655681057, 47.45822662702018, + 64.43593364816617, 82.21347299510855 + ], + "pressure:J11:branch24_seg0": [ + 114932.75198396185, 133224.308433428, 147203.9865396237, + 154590.5033090977, 155947.21763314045, 151768.02210104518, + 142848.07451337087, 130185.44589563968, 116512.3808164267, + 101790.33810709858, 87045.70045656743, 72898.71921371382, + 58521.79515404704, 44466.8830429515, 30164.823087845554, + 15834.376622560427, 1828.2280937623898, -11734.85618633243, + -23580.852251044456, -33901.329143601346, -42608.577040704244, + -49310.95270098117, -54663.05041945017, -58852.29551374581, + -62098.88425535698, -64612.19761518071, -66180.7952818618, + -66650.7276771623, -65877.86477772462, -63941.784827049734, + -61018.04894554193, -57982.60134362939, -55632.73636465029, + -54738.86142257787, -56212.31639119371, -60305.65244188746, + -66621.359446826, -74369.129103396, -82463.40424750857, + -89043.85374103823, -93090.49508183681, -93734.08337281787, + -90436.63013537358, -83424.52758886707, -74214.02639752593, + -63103.97502521703, -51187.78396711801, -40289.672757794986, + -29957.3043468625, -20884.932902037017, -13085.739211141929, + -5764.856945933071, 495.9184376427337, 6095.10808330771, + 11008.845860444748, 14505.542614419528, 16517.406269571384, + 16819.345010739486, 15397.229409310487, 12533.551708227418, + 8988.232959611925, 5207.043611137182, 1838.6437803275142, + -654.6850430140585, -2338.22704372707, -3303.3415819270795, + -3936.9504737866214, -4708.811593491187, -5881.861044061928, + -7546.461481194941, -9406.95914697584, -11192.839330825747, + -12492.680180767062, -12829.01371521332, -12169.063976724556, + -10690.905869007787, -8747.393007956902, -6660.2412064947885, + -5098.410885849227, -4117.12173001083, -3608.916668873575, + -3408.119608772346, -3046.922892723609, -2130.931988770404, + -492.28248925724245, 1813.5700692686469, 4320.683456164829, + 6597.090667647118, 8144.306074294666, 8740.218277058775, + 8717.255040393095, 8860.928965026653, 10339.375036530193, + 14492.21794361903, 22457.88382154461, 35277.72930332869, + 51740.46775508888, 71763.95851929228, 94416.48248547022, + 114932.75198396185 + ], + "flow:branch16_seg0:J12": [ + 69.29795240862737, 86.35330127622925, 102.21225581290881, + 115.45486635877654, 124.92082229667963, 129.92677045674284, + 130.36880216896606, 126.76015317459309, 119.79642970088489, + 110.4083221379406, 99.58625044635268, 87.87887110371754, + 75.78873221140461, 63.52187722924488, 51.06559515418901, + 38.55981661328538, 25.98876438622468, 13.580417543499546, + 1.7082261947533752, -9.39387310909179, -19.363540420130462, + -28.019774551330052, -35.3443773900871, -41.38982069046707, + -46.327992339750836, -50.30833413421773, -53.41149677139833, + -55.63814381889848, -56.920991470982415, -57.18881392755887, + -56.47438566760776, -54.98619016613576, -53.10444649322587, + -51.41767118993494, -50.5528799863193, -51.06840376975795, + -53.26887878648665, -57.18735631875419, -62.3849340379153, + -68.1225766030314, -73.50419126830205, -77.53140798523201, + -79.42654552113905, -78.72543041608849, -75.39711852660062, + -69.65586298841639, -62.157635465193565, -53.598749012882564, + -44.61489709430414, -35.82498834307985, -27.50841001008153, + -19.828513044128773, -12.826362939833231, -6.4482884637799875, + -0.7530697541281179, 4.161665827320793, 8.110436992803157, + 10.872794400695327, 12.297225447032597, 12.379344474583682, + 11.255401003814809, 9.23227335377022, 6.763186524267253, + 4.224833597045438, 1.9635148502224145, 0.16182887980401398, + -1.1992028272566875, -2.2666362267697466, -3.255844714077729, + -4.362623747309532, -5.666479337037953, -7.12608333900346, + -8.549012339447707, -9.685387748914357, -10.308808894254282, + -10.289165754033846, -9.636919531694472, -8.52310298066428, + -7.209403065009956, -5.950163187744348, -4.943679091410942, + -4.2322906802182745, -3.708180301989013, -3.163924881902836, + -2.3675110237889623, -1.1740052676244086, 0.4206851019515804, + 2.254920600822186, 4.024748832110126, 5.46279765997847, 6.412905246442745, + 6.979503466792477, 7.593414803326023, 8.970518198681162, + 12.005727259483207, 17.565482775064215, 26.16419213465115, + 38.07498783461256, 52.78437197441739, 69.29795240862737 + ], + "pressure:branch16_seg0:J12": [ + 78885.14505035791, 96085.5811631656, 111456.43617989562, + 123314.69321130206, 130921.58181355725, 133840.63050986774, + 132184.94840456333, 126598.73463791197, 118125.84735512413, + 107613.60606746264, 96015.10595024136, 83827.62743955404, + 71332.51892314642, 58769.21048830592, 45989.966527601406, + 33222.9674078161, 20447.9171506656, 7856.494580602647, + -3871.5275521093918, -14702.300979772743, -24319.051625002463, + -32458.489969460257, -39289.52928458405, -44873.99268794662, + -49394.16296200275, -53023.99987533684, -55768.43796412225, + -57595.71124411061, -58424.52120496869, -58210.27117080994, + -57020.80314137102, -55201.177171287585, -53230.105419420164, + -51728.12102247162, -51383.049594917386, -52689.795767205396, + -55771.02792373927, -60525.11676286982, -66337.58757881242, + -72226.96672869573, -77301.28057350207, -80567.31831241345, + -81325.65504865885, -79232.8133997475, -74664.89382528828, + -67798.41830040932, -59350.552111182646, -50349.18360746139, + -41117.75361225299, -32314.39022088464, -24176.851747262615, + -16612.51464868027, -9808.727712968384, -3650.783740146696, + 1843.5701794646282, 6424.37543152572, 9924.471979806283, + 12132.433436449883, 12918.87077189747, 12357.307188992056, + 10693.227410024156, 8284.371354301047, 5643.884624944157, + 3122.0570452020293, 997.6451291282583, -605.2680103472616, + -1796.3605542344803, -2790.79640579214, -3811.940970077701, + -5036.289962442875, -6452.10859317038, -7972.8038664802625, + -9368.407075427425, -10323.77450792143, -10663.355956066333, + -10324.38916096267, -9392.879491851381, -8067.019155539254, + -6699.04773100542, -5509.849819776263, -4616.751073340646, + -4023.594037545277, -3541.6893679399273, -2922.1066890361913, + -1944.9543393129204, -516.2242170746418, 1275.3405579293355, + 3203.762387079405, 4908.564068017254, 6155.70271319722, 6884.797970318826, + 7351.279439872608, 8144.04078999479, 10114.56313488483, + 14198.152614444083, 21333.63951159651, 31591.010845036402, + 45156.27058245797, 61592.13513781729, 78885.14505035791 + ], + "flow:J12:branch17_seg0": [ + 57.19795605159472, 71.28834417559348, 84.39475322105018, + 95.34524587635234, 103.17900717953081, 107.3290362211422, + 107.70770251471276, 104.74161661831086, 98.99773539744031, + 91.24759892448039, 82.31312986182436, 72.64277108525584, + 62.655430967691714, 52.521899995358574, 42.229859773857385, + 31.898413697137634, 21.51270260643388, 11.258333043588918, + 1.4476525912874618, -7.727825606268003, -15.969031977721798, + -23.125015613581706, -29.180966295430153, -34.17964609742301, + -38.26280336728835, -41.554238981297914, -44.1207761193267, + -45.96309188165219, -47.025901988878395, -47.249910866973764, + -46.662318955729525, -45.43448917399458, -43.87986388708981, + -42.48507000313602, -41.76738515228239, -42.18883462743818, + -44.00102823369802, -47.23365706475837, -51.5245369873385, + -56.26331040407902, -60.711556677007884, -64.04295354874796, + -65.61514885179699, -65.04328242092342, -62.30081701974378, + -57.56450073930698, -51.374259759557205, -44.30575004140463, + -36.8844959954663, -29.62202475106097, -22.749967965990372, + -16.4038346629594, -10.61682571503627, -5.345722612487539, + -0.6390447511431067, 3.423881624980624, 6.689279065295989, + 8.974986359845708, 10.155603102808165, 10.22774053817177, + 9.302492784425029, 7.6328292491209835, 5.594740098737167, + 3.4977003516969902, 1.628368603200025, 0.138800279250909, + -0.9867239110269577, -1.869239461487078, -2.68645525539245, + -3.6003584217734264, -4.677022945624005, -5.8824915743248685, + -7.058401421350547, -7.998320863755933, -8.515038302405634, + -8.500742301011936, -7.963534175173085, -7.044673371765804, + -5.959590512044689, -4.918887529578984, -4.08678107324215, + -3.498361157472635, -3.065057507026946, -2.615748915835595, + -1.9586449776501142, -0.9739685406478621, 0.3423995333789698, + 1.8575940377791014, 3.319839580264995, 4.50891953027788, 5.2952547954475, + 5.763987983795598, 6.270197914992107, 7.404553539907318, + 9.905893891447139, 14.490596747887096, 21.58518379185307, + 31.414565843791856, 43.55810740579931, 57.19795605159472 + ], + "pressure:J12:branch17_seg0": [ + 78885.14505035791, 96085.5811631656, 111456.43617989562, + 123314.69321130206, 130921.58181355725, 133840.63050986774, + 132184.94840456333, 126598.73463791197, 118125.84735512413, + 107613.60606746264, 96015.10595024136, 83827.62743955404, + 71332.51892314642, 58769.21048830592, 45989.966527601406, + 33222.9674078161, 20447.9171506656, 7856.494580602647, + -3871.5275521093918, -14702.300979772743, -24319.051625002463, + -32458.489969460257, -39289.52928458405, -44873.99268794662, + -49394.16296200275, -53023.99987533684, -55768.43796412225, + -57595.71124411061, -58424.52120496869, -58210.27117080994, + -57020.80314137102, -55201.177171287585, -53230.105419420164, + -51728.12102247162, -51383.049594917386, -52689.795767205396, + -55771.02792373927, -60525.11676286982, -66337.58757881242, + -72226.96672869573, -77301.28057350207, -80567.31831241345, + -81325.65504865885, -79232.8133997475, -74664.89382528828, + -67798.41830040932, -59350.552111182646, -50349.18360746139, + -41117.75361225299, -32314.39022088464, -24176.851747262615, + -16612.51464868027, -9808.727712968384, -3650.783740146696, + 1843.5701794646282, 6424.37543152572, 9924.471979806283, + 12132.433436449883, 12918.87077189747, 12357.307188992056, + 10693.227410024156, 8284.371354301047, 5643.884624944157, + 3122.0570452020293, 997.6451291282583, -605.2680103472616, + -1796.3605542344803, -2790.79640579214, -3811.940970077701, + -5036.289962442875, -6452.10859317038, -7972.8038664802625, + -9368.407075427425, -10323.77450792143, -10663.355956066333, + -10324.38916096267, -9392.879491851381, -8067.019155539254, + -6699.04773100542, -5509.849819776263, -4616.751073340646, + -4023.594037545277, -3541.6893679399273, -2922.1066890361913, + -1944.9543393129204, -516.2242170746418, 1275.3405579293355, + 3203.762387079405, 4908.564068017254, 6155.70271319722, 6884.797970318826, + 7351.279439872608, 8144.04078999479, 10114.56313488483, + 14198.152614444083, 21333.63951159651, 31591.010845036402, + 45156.27058245797, 61592.13513781729, 78885.14505035791 + ], + "flow:J12:branch116_seg0": [ + 12.09999635703258, 15.064957100636235, 17.817502591858887, + 20.10962048242206, 21.741815117148313, 22.597734235598097, + 22.661099654253416, 22.018536556280644, 20.798694303448947, + 19.160723213458546, 17.27312058452737, 15.236100018458693, + 13.13330124371075, 10.999977233890613, 8.835735380335707, + 6.6614029161481465, 4.4760617797927065, 2.322084499911051, + 0.2605736034638459, -1.6660475028222168, -3.394508442407319, + -4.894758937746356, -6.163411094661481, -7.210174593040686, + -8.06518897246378, -8.754095152920343, -9.290720652068527, + -9.675051937248785, -9.895089482103293, -9.938903060588228, + -9.81206671187741, -9.551700992138962, -9.224582606136451, + -8.932601186795145, -8.785494834037378, -8.879569142319335, + -9.267850552790556, -9.953699253996053, -10.860397050576912, + -11.85926619895014, -12.792634591295545, -13.48845443648237, + -13.811396669344246, -13.682147995165026, -13.096301506856058, + -12.09136224910992, -10.783375705635839, -9.292998971478282, + -7.730401098838216, -6.202963592019014, -4.758442044091218, + -3.424678381169482, -2.209537224796992, -1.1025658512923553, + -0.11402500298495168, 0.7377842023401405, 1.4211579275072346, + 1.897808040849647, 2.141622344224313, 2.1516039364119663, + 1.9529082193894869, 1.5994441046489356, 1.1684464255300628, + 0.7271332453483438, 0.3351462470222243, 0.023028600553338212, + -0.21247891622942686, -0.3973967652825229, -0.5693894586853774, + -0.7622653255361546, -0.9894563914143331, -1.2435917646786443, + -1.490610918097384, -1.6870668851583819, -1.793770591848688, + -1.7884234530218759, -1.6733853565211674, -1.4784296088985225, + -1.2498125529652855, -1.0312756581654317, -0.856898018168819, + -0.7339295227456261, -0.643122794962061, -0.5481759660672415, + -0.40886604613880034, -0.200036726976577, 0.07828556857261658, + 0.3973265630430298, 0.7049092518451888, 0.9538781297006172, + 1.1176504509952043, 1.2155154829969008, 1.3232168883339017, + 1.5659646587741465, 2.099833368036008, 3.074886027177215, + 4.579008342797696, 6.660421990820722, 9.226264568618243, 12.09999635703258 + ], + "pressure:J12:branch116_seg0": [ + 78885.14505035791, 96085.5811631656, 111456.43617989562, + 123314.69321130206, 130921.58181355725, 133840.63050986774, + 132184.94840456333, 126598.73463791197, 118125.84735512413, + 107613.60606746264, 96015.10595024136, 83827.62743955404, + 71332.51892314642, 58769.21048830592, 45989.966527601406, + 33222.9674078161, 20447.9171506656, 7856.494580602647, + -3871.5275521093918, -14702.300979772743, -24319.051625002463, + -32458.489969460257, -39289.52928458405, -44873.99268794662, + -49394.16296200275, -53023.99987533684, -55768.43796412225, + -57595.71124411061, -58424.52120496869, -58210.27117080994, + -57020.80314137102, -55201.177171287585, -53230.105419420164, + -51728.12102247162, -51383.049594917386, -52689.795767205396, + -55771.02792373927, -60525.11676286982, -66337.58757881242, + -72226.96672869573, -77301.28057350207, -80567.31831241345, + -81325.65504865885, -79232.8133997475, -74664.89382528828, + -67798.41830040932, -59350.552111182646, -50349.18360746139, + -41117.75361225299, -32314.39022088464, -24176.851747262615, + -16612.51464868027, -9808.727712968384, -3650.783740146696, + 1843.5701794646282, 6424.37543152572, 9924.471979806283, + 12132.433436449883, 12918.87077189747, 12357.307188992056, + 10693.227410024156, 8284.371354301047, 5643.884624944157, + 3122.0570452020293, 997.6451291282583, -605.2680103472616, + -1796.3605542344803, -2790.79640579214, -3811.940970077701, + -5036.289962442875, -6452.10859317038, -7972.8038664802625, + -9368.407075427425, -10323.77450792143, -10663.355956066333, + -10324.38916096267, -9392.879491851381, -8067.019155539254, + -6699.04773100542, -5509.849819776263, -4616.751073340646, + -4023.594037545277, -3541.6893679399273, -2922.1066890361913, + -1944.9543393129204, -516.2242170746418, 1275.3405579293355, + 3203.762387079405, 4908.564068017254, 6155.70271319722, 6884.797970318826, + 7351.279439872608, 8144.04078999479, 10114.56313488483, + 14198.152614444083, 21333.63951159651, 31591.010845036402, + 45156.27058245797, 61592.13513781729, 78885.14505035791 + ], + "flow:branch17_seg0:J13": [ + 57.196526686768784, 71.28701115151733, 84.3936013372016, 95.3444388564851, + 103.17859791791605, 107.32899239389786, 107.70794957741421, + 104.74225986937161, 98.99853083682427, 91.2484491189885, + 82.31413272355991, 72.64377173392343, 62.65644579089117, + 52.522952399418834, 42.23086897039861, 31.89946153123491, + 21.513782861129517, 11.259316108838593, 1.4485827133956761, + -7.726976242810809, -15.968303203938998, -23.124396973197715, + -29.180459460649594, -34.17923577121037, -38.262469486086836, + -41.55397621275684, -44.12058811650935, -45.96298204388144, + -47.02588230176772, -47.24996808631295, -46.66245015697062, + -45.43465519056162, -43.8800022787213, -42.48515449683489, + -41.76735634297275, -42.188670487879605, -44.00069622810564, + -47.23321966352724, -51.52405476944604, -56.26283443614342, + -60.71121099755128, -64.04277950767171, -65.61519989775263, + -65.04356262211708, -62.301289235005946, -57.565149481160354, + -51.37500241144403, -44.30651165777774, -36.88524309544014, + -29.622724719004804, -22.75061035724342, -16.404439424536825, + -10.617354716158717, -5.34618921688575, -0.6394690908477881, + 3.423547444792982, 6.689047669845472, 8.974863254896578, + 10.155585765962448, 10.227843117128305, 9.302669600382641, + 7.633017000750045, 5.594962093289169, 3.497900130606885, + 1.6285158904368464, 0.13891435710719216, -0.9866367931526895, + -1.8691611509034418, -2.686364908186169, -3.6002478313100883, + -4.676900865456779, -5.882366408796012, -7.058299488743536, + -7.998265543636947, -8.51504039649658, -8.500800419736144, + -7.963628039124685, -7.044794382011552, -5.959697793278431, + -4.918967647684623, -4.086841137091606, -3.498403326085655, + -3.0650996592093014, -2.6158118475497307, -1.9587393412661152, + -0.9741041652719664, 0.34224056858851054, 1.857452482187256, + 3.319713606984284, 4.508834925488097, 5.295213235426933, + 5.763948464604601, 6.270099012710413, 7.404318339483352, + 9.905440895353458, 14.489869768474186, 21.58420965209714, + 31.41331129507233, 43.55663547285412, 57.196526686768784 + ], + "pressure:branch17_seg0:J13": [ + 78219.41351089117, 95401.79957707184, 110800.40530825648, + 122744.75042643459, 130470.97565063064, 133525.1359607296, + 132007.13140078142, 126554.43277009593, 118180.19058631588, + 107746.14982915569, 96205.34504375399, 84053.21567623092, + 71590.8570943945, 59052.84646764772, 46299.078027745556, + 33557.320715803005, 20801.711712450087, 8225.067187537079, + -3504.887438187432, -14348.514328175763, -23984.989367800805, + -32153.808951055566, -39014.27876908328, -44626.21419483454, + -49171.21218136808, -52822.4579403164, -55589.128041625096, + -57441.69096499047, -58300.01280192426, -58117.24979513728, + -56959.30221997845, -55161.512250860615, -53196.62634386047, + -51682.68247157101, -51303.3176350806, -52557.94176608506, + -55579.21187364585, -60277.58420919001, -66047.84754479257, + -71924.48896766754, -77017.65087359573, -80331.94935391293, + -81164.75690220829, -79162.49026351176, -74679.13106052214, + -67890.04413278654, -59505.90410178976, -50538.46279692926, + -41326.82874255198, -32527.958352532576, -24383.476732297237, + -16814.556674804942, -10000.51681359358, -3831.854392611771, + 1673.2726916579356, 6274.22864860897, 9802.05934624921, + 12045.424669439784, 12872.959389499505, 12354.107221932023, + 10725.188315631187, 8341.84470084497, 5714.687155054466, + 3192.401231276538, 1059.7492320510585, -555.1092350454207, + -1756.6155548759723, -2755.2351331855443, -3773.6082529019914, + -4989.778166550904, -6397.430146267152, -7913.274493774673, + -9310.574752921477, -10277.45914375936, -10635.581119883998, + -10317.738678900867, -9404.944706690445, -8093.271870872434, + -6728.942868067368, -5535.812065828141, -4635.6017201149025, + -4035.126825537484, -3550.9318452337407, -2936.798939944681, + -1971.9214817912928, -559.4224378761259, 1218.7786942549333, + 3140.6998960639903, 4848.5233491026365, 6107.735288238251, + 6850.846513626133, 7323.371163163718, 8103.482498809829, + 10033.589025412226, 14045.326869746243, 21075.126646246023, + 31217.894760109957, 44664.633739341145, 60984.62597578038, + 78219.41351089117 + ], + "flow:J13:branch18_seg0": [ + 31.994471193208547, 39.87757305577799, 47.213297047712864, + 53.34392563964932, 57.73295614816791, 60.06312574096282, + 60.28441653320202, 58.630251279450455, 55.42361468676056, + 51.09296258134061, 46.09428471959486, 40.68434184026437, + 35.09494517607291, 29.42223698470757, 23.662142193308643, + 17.878104407669642, 12.063578062998445, 6.324619704224452, + 0.8321709698196078, -4.3051511665397495, -8.91971326041053, + -12.927681905727807, -16.320080068226677, -19.120768184883392, + -21.408892019383742, -23.25341288449999, -24.69171474997128, + -25.724454485038994, -26.32073413659735, -26.44791554299183, + -26.1207814730325, -25.43547760150539, -24.567328541085345, + -23.787426578568567, -23.385748181053987, -23.620286214590234, + -24.63277138117828, -26.43892365169909, -28.837233676261288, + -31.487428481773723, -33.97535489718947, -35.840391889975685, + -36.722286545307014, -36.40569819684903, -34.875314155525075, + -32.22851645358844, -28.76776158114251, -24.814661396271006, + -20.66249764240384, -16.59792447982273, -12.750836474447492, + -9.197066519043782, -5.956846481070421, -3.0051731912414716, + -0.3689866071883806, 1.9061714271061236, 3.735179172595884, + 5.016322603977815, 5.679422694807413, 5.721900803796531, + 5.206559348833433, 4.27490867214877, 3.1352393567617316, + 1.9623499364211232, 0.91636448785816, 0.0818640739039219, + -0.549113276205956, -1.0440657065412495, -1.5022392173284647, + -2.0140537727300374, -2.616435927110266, -3.290795132551606, + -3.9485715119919034, -4.474529584912214, -4.764140905658044, + -4.757025193383251, -4.457674133079811, -3.94442890146364, + -3.3381823370423813, -2.756188490288625, -2.290139183526182, + -1.9601976969075512, -1.7169390903420203, -1.4648995264514473, + -1.0970446640126785, -0.5461816353969967, 0.18990203257480798, + 1.036854374349905, 1.855040461718976, 2.520703490472746, + 2.9614802681052588, 3.2251445424601464, 3.509876703502567, + 4.145675791562205, 5.545564225528327, 8.109972404100233, + 12.076784029274016, 17.5741451453898, 24.366731766888428, + 31.994471193208547 + ], + "pressure:J13:branch18_seg0": [ + 78219.41351089117, 95401.79957707184, 110800.40530825648, + 122744.75042643459, 130470.97565063064, 133525.1359607296, + 132007.13140078142, 126554.43277009593, 118180.19058631588, + 107746.14982915569, 96205.34504375399, 84053.21567623092, + 71590.8570943945, 59052.84646764772, 46299.078027745556, + 33557.320715803005, 20801.711712450087, 8225.067187537079, + -3504.887438187432, -14348.514328175763, -23984.989367800805, + -32153.808951055566, -39014.27876908328, -44626.21419483454, + -49171.21218136808, -52822.4579403164, -55589.128041625096, + -57441.69096499047, -58300.01280192426, -58117.24979513728, + -56959.30221997845, -55161.512250860615, -53196.62634386047, + -51682.68247157101, -51303.3176350806, -52557.94176608506, + -55579.21187364585, -60277.58420919001, -66047.84754479257, + -71924.48896766754, -77017.65087359573, -80331.94935391293, + -81164.75690220829, -79162.49026351176, -74679.13106052214, + -67890.04413278654, -59505.90410178976, -50538.46279692926, + -41326.82874255198, -32527.958352532576, -24383.476732297237, + -16814.556674804942, -10000.51681359358, -3831.854392611771, + 1673.2726916579356, 6274.22864860897, 9802.05934624921, + 12045.424669439784, 12872.959389499505, 12354.107221932023, + 10725.188315631187, 8341.84470084497, 5714.687155054466, + 3192.401231276538, 1059.7492320510585, -555.1092350454207, + -1756.6155548759723, -2755.2351331855443, -3773.6082529019914, + -4989.778166550904, -6397.430146267152, -7913.274493774673, + -9310.574752921477, -10277.45914375936, -10635.581119883998, + -10317.738678900867, -9404.944706690445, -8093.271870872434, + -6728.942868067368, -5535.812065828141, -4635.6017201149025, + -4035.126825537484, -3550.9318452337407, -2936.798939944681, + -1971.9214817912928, -559.4224378761259, 1218.7786942549333, + 3140.6998960639903, 4848.5233491026365, 6107.735288238251, + 6850.846513626133, 7323.371163163718, 8103.482498809829, + 10033.589025412226, 14045.326869746243, 21075.126646246023, + 31217.894760109957, 44664.633739341145, 60984.62597578038, + 78219.41351089117 + ], + "flow:J13:branch49_seg0": [ + 25.202055493560312, 31.40943809573904, 37.180304289488475, + 42.00051321683603, 45.44564176974982, 47.26586665293509, + 47.42353304421227, 46.11200858992132, 43.574916150064375, + 40.15548653764862, 36.21984800396572, 31.959429893659276, + 27.561500614818655, 23.10071541470932, 18.56872677709257, + 14.021357123567336, 9.450204798134793, 4.934696404617816, + 0.6164117435741083, -3.421825076269055, -7.048589943530577, + -10.196715067470826, -12.860379392424967, -15.058467586326302, + -16.853577466703367, -18.30056332825785, -19.428873366539477, + -20.238527558840065, -20.7051481651728, -20.802052543321203, + -20.541668683938497, -19.999177589056057, -19.31267373763492, + -18.697727918266082, -18.38160816191769, -18.56838427329174, + -19.367924846927, -20.794296011827335, -22.686821093183056, + -24.775405954370356, -26.735856100362152, -28.202387617696004, + -28.892913352446737, -28.63786442526709, -27.42597507948161, + -25.336633027571846, -22.60724083030113, -19.49185026150675, + -16.222745453036065, -13.02480023918222, -9.999773882795843, + -7.207372905493217, -4.660508235088269, -2.341016025644248, + -0.2704824836594434, 1.5173760176867692, 2.9538684972495632, + 3.9585406509186694, 4.4761630711552, 4.50594231333163, 4.096110251549216, + 3.358108328601124, 2.459722736527304, 1.5355501941855605, + 0.7121514025785449, 0.057050283203126176, -0.4375235169465973, + -0.8250954443616955, -1.1841256908576563, -1.586194058580135, + -2.0604649383464477, -2.591571276244531, -3.1097279767516723, + -3.5237359587249744, -3.7508994908383464, -3.7437752263528505, + -3.5059539060446636, -3.100365480547858, -2.621515456236064, + -2.1627791573960833, -1.7967019535654314, -1.53820562917814, + -1.348160568867268, -1.1509123210982601, -0.8616946772534277, + -0.42792252987499846, 0.1523385360136817, 0.8205981078373783, + 1.4646731452653248, 1.988131435015392, 2.333732967321628, + 2.538803922144491, 2.760222309207801, 3.2586425479210117, + 4.359876669825272, 6.379897364373817, 9.507425622823048, + 13.839166149682635, 19.189903705965605, 25.202055493560312 + ], + "pressure:J13:branch49_seg0": [ + 78219.41351089117, 95401.79957707184, 110800.40530825648, + 122744.75042643459, 130470.97565063064, 133525.1359607296, + 132007.13140078142, 126554.43277009593, 118180.19058631588, + 107746.14982915569, 96205.34504375399, 84053.21567623092, + 71590.8570943945, 59052.84646764772, 46299.078027745556, + 33557.320715803005, 20801.711712450087, 8225.067187537079, + -3504.887438187432, -14348.514328175763, -23984.989367800805, + -32153.808951055566, -39014.27876908328, -44626.21419483454, + -49171.21218136808, -52822.4579403164, -55589.128041625096, + -57441.69096499047, -58300.01280192426, -58117.24979513728, + -56959.30221997845, -55161.512250860615, -53196.62634386047, + -51682.68247157101, -51303.3176350806, -52557.94176608506, + -55579.21187364585, -60277.58420919001, -66047.84754479257, + -71924.48896766754, -77017.65087359573, -80331.94935391293, + -81164.75690220829, -79162.49026351176, -74679.13106052214, + -67890.04413278654, -59505.90410178976, -50538.46279692926, + -41326.82874255198, -32527.958352532576, -24383.476732297237, + -16814.556674804942, -10000.51681359358, -3831.854392611771, + 1673.2726916579356, 6274.22864860897, 9802.05934624921, + 12045.424669439784, 12872.959389499505, 12354.107221932023, + 10725.188315631187, 8341.84470084497, 5714.687155054466, + 3192.401231276538, 1059.7492320510585, -555.1092350454207, + -1756.6155548759723, -2755.2351331855443, -3773.6082529019914, + -4989.778166550904, -6397.430146267152, -7913.274493774673, + -9310.574752921477, -10277.45914375936, -10635.581119883998, + -10317.738678900867, -9404.944706690445, -8093.271870872434, + -6728.942868067368, -5535.812065828141, -4635.6017201149025, + -4035.126825537484, -3550.9318452337407, -2936.798939944681, + -1971.9214817912928, -559.4224378761259, 1218.7786942549333, + 3140.6998960639903, 4848.5233491026365, 6107.735288238251, + 6850.846513626133, 7323.371163163718, 8103.482498809829, + 10033.589025412226, 14045.326869746243, 21075.126646246023, + 31217.894760109957, 44664.633739341145, 60984.62597578038, + 78219.41351089117 + ], + "flow:branch18_seg0:J14": [ + 31.991654445823684, 39.87493751652151, 47.211011897324546, + 53.342314478856565, 57.73212378802352, 60.06301416562912, + 60.284884391562635, 58.631496503438235, 55.425172140750455, + 51.094636807449355, 46.09625717963647, 40.68631611851648, + 35.0969477543802, 29.424313383050144, 23.664138518584334, + 17.88017235641915, 12.065709780859583, 6.326567348367848, + 0.834011069665631, -4.303469395939859, -8.918267216802423, + -12.92645479952775, -16.31907310172684, -19.119952637473553, + -21.40822869260989, -23.252889979020654, -24.691339328404382, + -25.724232910832814, -26.320689563307127, -26.44802307115428, + -26.121035731360116, -25.435802626225218, -24.56760299516015, + -23.78759785665831, -23.38569834312649, -23.619969919258544, + -24.632126254243598, -26.43806589250479, -28.836283297329413, + -31.486487346468294, -33.97466459708523, -35.84003755115623, + -36.72237501016952, -36.40624135253544, -34.87623510885688, + -32.22978720751117, -28.76922336830293, -24.816161445364155, + -20.663973376739605, -16.599308323912222, -12.752105957399241, + -9.198262496505953, -5.957893490145104, -3.006097202324632, + -0.3698271286811945, 1.9055071751716932, 3.7347162242560374, + 5.016072348240893, 5.679381996964621, 5.722095639216948, + 5.2069038527895914, 4.275279205709085, 3.1356768229866163, + 1.9627455030701635, 0.9166581826089608, 0.08209140431394968, + -0.5489399939951837, -1.043910682235904, -1.5020614034904092, + -2.0138360933364194, -2.616195636702889, -3.2905482979651555, + -3.9483688641154218, -4.474417947187621, -4.76414172888566, + -4.757136392067709, -4.457856562515887, -3.9446661137232546, + -3.3383942684744667, -2.756348008361152, -2.2902593996860166, + -1.9602818734026048, -1.7170221299571973, -1.4650222063380247, + -1.0972290163067064, -0.5464467138585792, 0.18958945068904604, + 1.0365734188588693, 1.854790156079875, 2.520534256013284, + 2.961396259388968, 3.225066571198075, 3.50968497986523, 4.145219136385144, + 5.544682309690697, 8.108549987646356, 12.074875941864315, + 17.57168841173295, 24.363837223664472, 31.991654445823684 + ], + "pressure:branch18_seg0:J14": [ + 77457.69007752174, 94618.05090053368, 110048.59045397563, + 122090.46448304142, 129952.57274916836, 133160.60285270927, + 131799.88496147146, 126499.93022632317, 118237.27906660165, + 107893.43110359309, 96419.27597188913, 84307.47107037656, + 71883.18382833179, 59374.317597837755, 46649.627575732186, + 33937.86972777428, 21204.729989266554, 8644.519585208485, + -3086.2728071609727, -13944.192401193357, -23603.132590018722, + -31804.89396739224, -38698.84746681046, -44341.94794587736, + -48915.0520372689, -52590.74858476107, -55382.72748295827, + -57264.08858255617, -58156.09588756818, -58009.24409132514, + -56887.30437189102, -55114.35389299925, -53156.679434791295, + -51629.134165601674, -51210.76510401306, -52406.16496631637, + -55358.76100121437, -59993.811438003686, -65715.75195864667, + -71577.40145720575, -76691.85822494629, -80060.74894286733, + -80978.40156858324, -79078.80834035364, -74692.78505576467, + -67992.52318651821, -59680.65345904517, -50752.915613721154, + -41564.08747463716, -32770.59767629748, -24618.920085572496, + -17044.656672879486, -10219.002822127854, -4038.638841116288, + 1478.8140989418018, 6102.715628586005, 9661.993548398412, + 11945.70486779776, 12820.00170831392, 12349.990234246805, + 10760.92991173292, 8406.737722510154, 5795.276514560886, + 3272.4542074950127, 1130.528394571185, -497.7838586113365, + -1711.1227102297537, -2714.5233639300754, -3729.733154622538, + -4936.654840235983, -6334.862161507402, -7845.035347481674, + -9244.363825876879, -10224.281997817627, -10603.512173752166, + -10309.784161127096, -9418.446279234402, -8122.9268529875335, + -6762.723325773178, -5565.307098383825, -4656.971062734627, + -4048.202359306589, -3561.4303609727217, -2953.520851337641, + -2002.5932301452692, -608.6614897093278, 1154.372635885188, + 3068.87647027454, 4779.845169465207, 6052.782148021837, 6811.781386986336, + 7291.209013648518, 8056.91981694405, 9941.00535249477, 13870.56828375645, + 20780.353058025456, 30791.55485785454, 44101.171779937824, + 60290.48685108468, 77457.69007752174 + ], + "flow:J14:branch19_seg0": [ + 18.11325183614736, 22.642934308600907, 26.888490960042535, + 30.46775037675938, 33.06424447778117, 34.4875692127719, 34.69958685052379, + 33.82067691143797, 32.03497818897885, 29.587764337937305, + 26.735340771980095, 23.636380964122566, 20.426734100469655, + 17.163509137879327, 13.85182829262025, 10.522739361522659, + 7.174663462285487, 3.8693054822671216, 0.6965939167175856, + -2.2763109301139557, -4.953134207107606, -7.285141137352385, + -9.262450513559571, -10.897905244027772, -12.235527767171103, + -13.314771920228214, -14.158817529604184, -14.769536087706467, + -15.130087250812197, -15.221839296291847, -15.051400933956637, + -14.670494605663247, -14.177346864447209, -13.724109126848592, + -13.47700864262749, -13.585950454280038, -14.138225899127116, + -15.146995784307812, -16.50405579706393, -18.021281806396104, + -19.46067338953895, -20.559484029332673, -21.106579233164798, + -20.972463265376653, -20.13878390912738, -18.6579505560833, + -16.698246604435454, -14.440714189944751, -12.058069579362993, + -9.714923132664937, -7.491057999396399, -5.4341573152760265, + -3.556772163641337, -1.8462227543875596, -0.3162568613452827, + 1.0079897311055788, 2.0786415676283707, 2.8379578619567996, + 3.2444002056811363, 3.29325139973596, 3.0181259717907, 2.498572992016037, + 1.8500468832896229, 1.1754405259068916, 0.5685254333338083, + 0.07973196129059769, -0.29147279468126147, -0.5814397104887257, + -0.8463879270634623, -1.1386869111919655, -1.4818943081307907, + -1.8675485489747217, -2.2469565299287555, -2.5552549630394146, + -2.7315536182199853, -2.7391622096415893, -2.57823599631949, + -2.2910781350329787, -1.9454658399481897, -1.6092573304375974, + -1.336362902082189, -1.141110742298861, -0.9978759314995117, + -0.8534607749043472, -0.6465598812677609, -0.3367698781010591, + 0.07991070196382308, 0.5630403568479108, 1.035601416239282, + 1.4252568325475097, 1.6877174417779728, 1.8460333098972583, + 2.0083357529912025, 2.3594044392343845, 3.1342108764974315, + 4.562704006987474, 6.790260592941719, 9.895754291217733, + 13.753789015158011, 18.11325183614736 + ], + "pressure:J14:branch19_seg0": [ + 77457.69007752174, 94618.05090053368, 110048.59045397563, + 122090.46448304142, 129952.57274916836, 133160.60285270927, + 131799.88496147146, 126499.93022632317, 118237.27906660165, + 107893.43110359309, 96419.27597188913, 84307.47107037656, + 71883.18382833179, 59374.317597837755, 46649.627575732186, + 33937.86972777428, 21204.729989266554, 8644.519585208485, + -3086.2728071609727, -13944.192401193357, -23603.132590018722, + -31804.89396739224, -38698.84746681046, -44341.94794587736, + -48915.0520372689, -52590.74858476107, -55382.72748295827, + -57264.08858255617, -58156.09588756818, -58009.24409132514, + -56887.30437189102, -55114.35389299925, -53156.679434791295, + -51629.134165601674, -51210.76510401306, -52406.16496631637, + -55358.76100121437, -59993.811438003686, -65715.75195864667, + -71577.40145720575, -76691.85822494629, -80060.74894286733, + -80978.40156858324, -79078.80834035364, -74692.78505576467, + -67992.52318651821, -59680.65345904517, -50752.915613721154, + -41564.08747463716, -32770.59767629748, -24618.920085572496, + -17044.656672879486, -10219.002822127854, -4038.638841116288, + 1478.8140989418018, 6102.715628586005, 9661.993548398412, + 11945.70486779776, 12820.00170831392, 12349.990234246805, + 10760.92991173292, 8406.737722510154, 5795.276514560886, + 3272.4542074950127, 1130.528394571185, -497.7838586113365, + -1711.1227102297537, -2714.5233639300754, -3729.733154622538, + -4936.654840235983, -6334.862161507402, -7845.035347481674, + -9244.363825876879, -10224.281997817627, -10603.512173752166, + -10309.784161127096, -9418.446279234402, -8122.9268529875335, + -6762.723325773178, -5565.307098383825, -4656.971062734627, + -4048.202359306589, -3561.4303609727217, -2953.520851337641, + -2002.5932301452692, -608.6614897093278, 1154.372635885188, + 3068.87647027454, 4779.845169465207, 6052.782148021837, 6811.781386986336, + 7291.209013648518, 8056.91981694405, 9941.00535249477, 13870.56828375645, + 20780.353058025456, 30791.55485785454, 44101.171779937824, + 60290.48685108468, 77457.69007752174 + ], + "flow:J14:branch23_seg0": [ + 13.878402609676362, 17.23200320792066, 20.322520937282015, + 22.874564102097693, 24.667879310241876, 25.575444952857765, + 25.58529754103793, 24.810819592000563, 23.39019395177185, + 21.50687246951171, 19.360916407655335, 17.0499351543932, + 14.670213653911105, 12.260804245168666, 9.812310225963918, + 7.35743299489744, 4.891046318574369, 2.4572618661013346, + 0.13741715294622597, -2.0271584658257185, -3.9651330096948016, + -5.641313662175506, -7.056622588168516, -8.222047393443404, + -9.172700925438175, -9.938118058794164, -10.532521798800872, + -10.954696823126081, -11.190602312494317, -11.22618377486323, + -11.069634797403335, -10.765308020561658, -10.390256130714592, + -10.063488729809286, -9.908689700500576, -10.034019464978646, + -10.493900355117702, -11.291070108197717, -12.332227500265402, + -13.465205540071343, -14.513991207546868, -15.280553521822835, + -15.615795777005081, -15.433778087158542, -14.737451199729376, + -13.571836651427882, -12.070976763867668, -10.375447255419564, + -8.605903797376273, -6.884385191247425, -5.261047958002902, + -3.7641051812300317, -2.401121326503769, -1.1598744479370082, + -0.05357026733590781, 0.8975174440660987, 1.6560746566276863, + 2.178114486284027, 2.434981791283472, 2.4288442394810827, + 2.188777880998911, 1.7767062136930583, 1.2856299396970265, + 0.7873049771632938, 0.34813274927513904, 0.0023594430232593516, + -0.2574671993136964, -0.4624709717472139, -0.6556734764270623, + -0.875149182144317, -1.1343013285722847, -1.422999748990399, + -1.7014123341866398, -1.9191629841482205, -2.0325881106657024, + -2.017974182426107, -1.8796205661963863, -1.6535879786902845, + -1.3929284285262562, -1.1470906779235552, -0.9538964976038203, + -0.8191711311037242, -0.7191461984576694, -0.6115614314336569, + -0.45066913503893385, -0.20967683575750115, 0.10967874872522966, + 0.4735330620109557, 0.8191887398405937, 1.0952774234657914, + 1.2736788176109528, 1.3790332613008187, 1.5013492268740567, + 1.7858146971508257, 2.4104714331932353, 3.5458459806590406, + 5.284615348922455, 7.675934120514933, 10.610048208506564, + 13.878402609676362 + ], + "pressure:J14:branch23_seg0": [ + 77457.69007752174, 94618.05090053368, 110048.59045397563, + 122090.46448304142, 129952.57274916836, 133160.60285270927, + 131799.88496147146, 126499.93022632317, 118237.27906660165, + 107893.43110359309, 96419.27597188913, 84307.47107037656, + 71883.18382833179, 59374.317597837755, 46649.627575732186, + 33937.86972777428, 21204.729989266554, 8644.519585208485, + -3086.2728071609727, -13944.192401193357, -23603.132590018722, + -31804.89396739224, -38698.84746681046, -44341.94794587736, + -48915.0520372689, -52590.74858476107, -55382.72748295827, + -57264.08858255617, -58156.09588756818, -58009.24409132514, + -56887.30437189102, -55114.35389299925, -53156.679434791295, + -51629.134165601674, -51210.76510401306, -52406.16496631637, + -55358.76100121437, -59993.811438003686, -65715.75195864667, + -71577.40145720575, -76691.85822494629, -80060.74894286733, + -80978.40156858324, -79078.80834035364, -74692.78505576467, + -67992.52318651821, -59680.65345904517, -50752.915613721154, + -41564.08747463716, -32770.59767629748, -24618.920085572496, + -17044.656672879486, -10219.002822127854, -4038.638841116288, + 1478.8140989418018, 6102.715628586005, 9661.993548398412, + 11945.70486779776, 12820.00170831392, 12349.990234246805, + 10760.92991173292, 8406.737722510154, 5795.276514560886, + 3272.4542074950127, 1130.528394571185, -497.7838586113365, + -1711.1227102297537, -2714.5233639300754, -3729.733154622538, + -4936.654840235983, -6334.862161507402, -7845.035347481674, + -9244.363825876879, -10224.281997817627, -10603.512173752166, + -10309.784161127096, -9418.446279234402, -8122.9268529875335, + -6762.723325773178, -5565.307098383825, -4656.971062734627, + -4048.202359306589, -3561.4303609727217, -2953.520851337641, + -2002.5932301452692, -608.6614897093278, 1154.372635885188, + 3068.87647027454, 4779.845169465207, 6052.782148021837, 6811.781386986336, + 7291.209013648518, 8056.91981694405, 9941.00535249477, 13870.56828375645, + 20780.353058025456, 30791.55485785454, 44101.171779937824, + 60290.48685108468, 77457.69007752174 + ], + "flow:branch20_seg0:J15": [ + 144.5315352883037, 160.48770013993993, 167.76079568714803, + 165.711429988228, 156.0095384904021, 140.3456823060453, + 120.81315970546666, 100.19085750893994, 81.17176490637749, + 63.28449333498455, 48.1059881538339, 34.73895718877885, + 21.751070614321872, 9.534014638659096, -3.3523146848931766, + -16.13313819584572, -28.28326241023429, -39.772237712003765, + -48.625610951143884, -55.44591379522593, -60.07399993837791, + -62.53243038154567, -63.96171812753508, -64.65753523124911, + -65.03786408623944, -65.16426097831524, -64.6067552704199, + -62.973129945548756, -60.00996163977232, -55.79896912540231, + -50.88048274590144, -46.58226301199569, -44.01252103336976, + -44.402351642632404, -48.56198638863634, -56.31913133696077, + -66.55327486125577, -77.62641034386549, -87.63503876130285, + -93.87103810616358, -95.47188825092252, -91.51806714548273, + -82.32709584292799, -69.02496829295049, -54.19644989669948, + -38.676956106580604, -24.485924467482004, -13.181696538436848, + -3.877206146580027, 2.834739735645852, 8.010207874067664, + 12.577882881520498, 16.31051231706735, 19.77349864915587, + 22.413047496600143, 23.46992488104003, 22.732674272154075, + 19.87202576847236, 15.151989051101157, 9.28950545020549, + 3.4524935611072674, -1.7699970560366505, -5.3198806763960125, + -7.046676406248509, -7.402850019790141, -6.810440308868185, + -6.1874336865842565, -6.269125682087197, -7.3421264259434444, + -9.350019034260134, -11.636620900173542, -13.608692005903755, + -14.500864105470798, -13.827062154477751, -11.695459344919275, + -8.633432979147168, -5.307315536078544, -2.4897663685684477, + -0.9261623693153211, -0.5105306790765856, -0.9622586776164864, + -1.644456018583637, -1.7232480703359643, -0.6434100214623943, + 1.6962806427905945, 4.937300432685269, 8.15935741430088, + 10.640501338821265, 11.55558401310738, 10.896254602330949, + 9.470264710564798, 8.723250262708593, 10.573521137765914, + 16.94732185642866, 29.053626251460624, 47.700820030062964, + 70.47458727245191, 96.78887403537529, 123.13307636120514, + 144.5315352883037 + ], + "pressure:branch20_seg0:J15": [ + 188322.59469332267, 202283.41825730682, 206529.3717149342, + 197698.9259920071, 180744.546203056, 158748.70069994783, + 133808.76282864378, 106971.1177218153, 86074.6469125871, + 66153.16370664393, 48055.705477494645, 33912.7399783613, + 17889.111702100352, 3178.1674245907107, -12022.852189192976, + -28293.79807219119, -41910.78704438895, -55139.34751523065, + -64615.86270952294, -70912.53575023031, -75462.64676149571, + -77249.73741372048, -78222.27301429085, -78835.96653957774, + -79056.74151271654, -78981.9730462283, -77799.54712394362, + -74966.6630040057, -70418.56803991256, -64661.58425798792, + -58367.29429199485, -53747.10459713581, -52363.910780259415, + -54828.2396108362, -62366.004876515064, -73960.25121834251, + -88003.24219382004, -100967.74260665833, -112146.036674449, + -116958.01338607253, -115164.73064796822, -106955.46222326688, + -92818.43932849204, -74115.05847954506, -55537.51155607755, + -37267.586212802504, -20555.593424302195, -8985.13624308712, + 616.2532993536412, 7657.4123960031, 12753.675153730388, 18186.37611466241, + 22298.885863520463, 25857.52499624835, 28719.797315461827, + 28761.351367394804, 26461.595695703727, 21696.673441125, + 14987.544038774742, 7031.225798088782, 373.37455847262544, + -5029.597632278616, -8576.69626899711, -9255.611408206478, + -8848.12301578865, -7842.928262924437, -7178.104394383703, + -7829.945455435431, -9799.03296893579, -12774.722855926639, + -15566.1136951747, -17498.03054755017, -17835.720763803703, + -15995.97852016698, -12441.76801902455, -8276.4975211711, + -4350.842113644521, -1299.0992861666384, -282.1211935955459, + -675.969198757711, -1566.5873392817396, -2339.9412130742853, + -1922.4091629043626, 240.66773459729478, 3813.088614056522, + 8289.263033473662, 11910.684909302903, 14073.863189610956, + 14286.091680846306, 12485.172993467759, 10473.130810185537, + 10474.057063582031, 14847.992689671824, 25942.525228853054, + 44227.529907650765, 71211.91930043125, 101076.71734346535, + 133842.0344304102, 166404.04495752236, 188322.59469332267 + ], + "flow:J15:branch21_seg0": [ + 35.74246903153015, 38.705193187003225, 39.6519605948569, + 38.15413519719362, 35.10512256948816, 30.95576585178509, + 26.12147310195929, 21.129922806651184, 16.980254234713254, + 12.978038296168556, 9.622543010207075, 6.779270488748543, + 3.7273137772890883, 0.9379341943157303, -2.0926664507130606, + -5.099223982532316, -7.786332353822374, -10.430293904071076, + -12.233500332828015, -13.529100089893964, -14.443555946887395, + -14.793374506727654, -15.014699172264542, -15.12915970115992, + -15.170871234882899, -15.173653545050646, -14.965713493399665, + -14.458497016489579, -13.622680198092146, -12.534008421465511, + -11.320059261533652, -10.407212119671852, -10.04164837727436, + -10.43673250587523, -11.796339298343522, -13.973013578230056, + -16.579536256338066, -19.162178949161294, -21.369816950438974, + -22.387711537784423, -22.217901062217422, -20.756219908824793, + -18.096108238330295, -14.556229223064436, -11.013766303595734, + -7.452121050614766, -4.205940529121769, -1.9381729333971587, + -0.008454657397452499, 1.355248918128224, 2.3440320719566294, + 3.4001187729425606, 4.1884209013059905, 4.912480586277723, + 5.469559071367116, 5.526720401493991, 5.150794516799252, + 4.281410614088822, 3.0068340315892232, 1.5255222851572647, + 0.20881552229551034, -0.9146286455341606, -1.5834435801449618, + -1.7700119313778881, -1.7274124618111963, -1.5210469977929117, + -1.379372225929648, -1.4819445639590902, -1.8387495094066975, + -2.3991978127898177, -2.9418206808190894, -3.336697133461424, + -3.437221745863184, -3.112227205754949, -2.463975464419167, + -1.6699477748350562, -0.9040932698593103, -0.2958175296850856, + -0.07176425598927301, -0.10978933953348881, -0.2785902811754141, + -0.44393246868743297, -0.38957954072757206, -0.010470685363371375, + 0.6579440347855295, 1.4968548284588368, 2.218004029449205, + 2.6957604788153047, 2.7523130198060186, 2.4322321082774083, + 2.044475259495472, 1.9859112798782481, 2.728801999912342, + 4.71199137853407, 8.11639841779422, 13.170434795142496, 18.84994397344514, + 25.104514618266336, 31.414644842096884, 35.74246903153015 + ], + "pressure:J15:branch21_seg0": [ + 188322.59469332267, 202283.41825730682, 206529.3717149342, + 197698.9259920071, 180744.546203056, 158748.70069994783, + 133808.76282864378, 106971.1177218153, 86074.6469125871, + 66153.16370664393, 48055.705477494645, 33912.7399783613, + 17889.111702100352, 3178.1674245907107, -12022.852189192976, + -28293.79807219119, -41910.78704438895, -55139.34751523065, + -64615.86270952294, -70912.53575023031, -75462.64676149571, + -77249.73741372048, -78222.27301429085, -78835.96653957774, + -79056.74151271654, -78981.9730462283, -77799.54712394362, + -74966.6630040057, -70418.56803991256, -64661.58425798792, + -58367.29429199485, -53747.10459713581, -52363.910780259415, + -54828.2396108362, -62366.004876515064, -73960.25121834251, + -88003.24219382004, -100967.74260665833, -112146.036674449, + -116958.01338607253, -115164.73064796822, -106955.46222326688, + -92818.43932849204, -74115.05847954506, -55537.51155607755, + -37267.586212802504, -20555.593424302195, -8985.13624308712, + 616.2532993536412, 7657.4123960031, 12753.675153730388, 18186.37611466241, + 22298.885863520463, 25857.52499624835, 28719.797315461827, + 28761.351367394804, 26461.595695703727, 21696.673441125, + 14987.544038774742, 7031.225798088782, 373.37455847262544, + -5029.597632278616, -8576.69626899711, -9255.611408206478, + -8848.12301578865, -7842.928262924437, -7178.104394383703, + -7829.945455435431, -9799.03296893579, -12774.722855926639, + -15566.1136951747, -17498.03054755017, -17835.720763803703, + -15995.97852016698, -12441.76801902455, -8276.4975211711, + -4350.842113644521, -1299.0992861666384, -282.1211935955459, + -675.969198757711, -1566.5873392817396, -2339.9412130742853, + -1922.4091629043626, 240.66773459729478, 3813.088614056522, + 8289.263033473662, 11910.684909302903, 14073.863189610956, + 14286.091680846306, 12485.172993467759, 10473.130810185537, + 10474.057063582031, 14847.992689671824, 25942.525228853054, + 44227.529907650765, 71211.91930043125, 101076.71734346535, + 133842.0344304102, 166404.04495752236, 188322.59469332267 + ], + "flow:J15:branch60_seg0": [ + 30.612113535900413, 34.068769167999875, 35.61073473345975, + 35.222146562072076, 33.17399617499403, 29.8229997582219, + 25.638241835342697, 21.285149365391636, 17.18330569007964, + 13.379429996453085, 10.187811609182331, 7.331721519640223, + 4.619774510574142, 2.0391704841889084, -0.6896933822186704, + -3.377273314556701, -5.971945997074649, -8.404502556161416, + -10.287098131248616, -11.75459914782568, -12.724390446072428, + -13.245474984831441, -13.54481791240821, -13.681443421818672, + -13.762139264637737, -13.789912398524162, -13.679891284097174, + -13.345918875824843, -12.728915914836685, -11.835062438543627, + -10.790350717562095, -9.860668246371926, -9.284320701717359, + -9.347557720597182, -10.210958678755956, -11.846841697392637, + -14.022660586892401, -16.409340150284624, -18.55418989000671, + -19.921523695691008, -20.304273887015945, -19.479414339528873, + -17.539204166719514, -14.721461186592306, -11.548922392924053, + -8.222448897864707, -5.211418628529781, -2.783188942763458, + -0.799758166696228, 0.6102437742502357, 1.714451641473418, + 2.6606758831288433, 3.451736265307942, 4.196521318805913, + 4.752658526112446, 4.995622033031943, 4.852624459299548, + 4.251250506638278, 3.247507052728971, 2.0053209977121043, + 0.7429094353720003, -0.38248975509038885, -1.1396715477044341, + -1.5205283588957053, -1.5919834593358086, -1.4547493610699689, + -1.3123650911077451, -1.3175262808654689, -1.5373429102701932, + -1.9623141330110756, -2.455855936188963, -2.888268457364703, + -3.0871068584727963, -2.954981399026058, -2.5076044184646746, + -1.8530226040620832, -1.133271604881199, -0.5285230779421823, + -0.18323354825277485, -0.08735094648915423, -0.1905679240599013, + -0.34587885672602026, -0.3752021243061909, -0.15819990399190517, + 0.33536618549236896, 1.0235616615260088, 1.7237349989510042, + 2.2668074777108114, 2.4687138128452983, 2.3346143945945204, + 2.020711313831071, 1.83451218246509, 2.1888785266943325, + 3.500565481235904, 6.036324952126741, 9.957424593060852, + 14.797601171930879, 20.4193610854808, 25.9921078223515, 30.612113535900413 + ], + "pressure:J15:branch60_seg0": [ + 188322.59469332267, 202283.41825730682, 206529.3717149342, + 197698.9259920071, 180744.546203056, 158748.70069994783, + 133808.76282864378, 106971.1177218153, 86074.6469125871, + 66153.16370664393, 48055.705477494645, 33912.7399783613, + 17889.111702100352, 3178.1674245907107, -12022.852189192976, + -28293.79807219119, -41910.78704438895, -55139.34751523065, + -64615.86270952294, -70912.53575023031, -75462.64676149571, + -77249.73741372048, -78222.27301429085, -78835.96653957774, + -79056.74151271654, -78981.9730462283, -77799.54712394362, + -74966.6630040057, -70418.56803991256, -64661.58425798792, + -58367.29429199485, -53747.10459713581, -52363.910780259415, + -54828.2396108362, -62366.004876515064, -73960.25121834251, + -88003.24219382004, -100967.74260665833, -112146.036674449, + -116958.01338607253, -115164.73064796822, -106955.46222326688, + -92818.43932849204, -74115.05847954506, -55537.51155607755, + -37267.586212802504, -20555.593424302195, -8985.13624308712, + 616.2532993536412, 7657.4123960031, 12753.675153730388, 18186.37611466241, + 22298.885863520463, 25857.52499624835, 28719.797315461827, + 28761.351367394804, 26461.595695703727, 21696.673441125, + 14987.544038774742, 7031.225798088782, 373.37455847262544, + -5029.597632278616, -8576.69626899711, -9255.611408206478, + -8848.12301578865, -7842.928262924437, -7178.104394383703, + -7829.945455435431, -9799.03296893579, -12774.722855926639, + -15566.1136951747, -17498.03054755017, -17835.720763803703, + -15995.97852016698, -12441.76801902455, -8276.4975211711, + -4350.842113644521, -1299.0992861666384, -282.1211935955459, + -675.969198757711, -1566.5873392817396, -2339.9412130742853, + -1922.4091629043626, 240.66773459729478, 3813.088614056522, + 8289.263033473662, 11910.684909302903, 14073.863189610956, + 14286.091680846306, 12485.172993467759, 10473.130810185537, + 10474.057063582031, 14847.992689671824, 25942.525228853054, + 44227.529907650765, 71211.91930043125, 101076.71734346535, + 133842.0344304102, 166404.04495752236, 188322.59469332267 + ], + "flow:J15:branch107_seg0": [ + 78.17695272087319, 87.7137377849378, 92.49810035883189, 92.3351482289596, + 87.73041974591898, 79.56691669604295, 69.05344476816633, + 57.775785336895595, 47.008204981582914, 36.92702504236092, + 28.295633534443525, 20.627965180395396, 13.403982326455045, + 6.55690996015331, -0.5699548519631061, -7.656640898756275, + -14.524984059334184, -20.937441251770228, -26.105012487068034, + -30.162214557507447, -32.90605354541596, -34.49358088998947, + -35.40220104285346, -35.846932108272284, -36.10485358671966, + -36.200695034741294, -35.96115049292435, -35.16871405323684, + -33.65836552684392, -31.429898265393152, -28.770072766805953, + -26.31438264595184, -24.686551954375222, -24.61806141615946, + -26.554688411538166, -30.499276061337632, -35.95107801802538, + -42.054891244419636, -47.71103192085819, -51.56180287268738, + -52.94971330168983, -51.282432897130136, -46.69178343787833, + -39.747277883293606, -31.633761200179794, -23.00238615810107, + -15.068565309830452, -8.46033466227622, -3.068993322486332, + 0.8692470432673882, 3.951724160637605, 6.517088225449094, + 8.670355150453414, 10.664496744072169, 12.190829899120532, + 12.947582446514172, 12.729255296055587, 11.33936464774505, + 8.897647966783193, 5.758662167335841, 2.5007686034398526, + -0.472878655411901, -2.59676554854661, -3.756136115974737, + -4.083454098642807, -3.834643950004895, -3.495696369547, + -3.469654837262524, -3.966034006266613, -4.988507088459503, + -6.238944283165252, -7.383726415077626, -7.976535501134793, + -7.759853549696848, -6.723879462035394, -5.110462600250012, + -3.2699506613379907, -1.6654257609412397, -0.671164565073279, + -0.31339039305400307, -0.4931004723811457, -0.854644693170177, + -0.9584664053021915, -0.47473943210711095, 0.7029704225127467, + 2.416883942700347, 4.217618385900678, 5.677933382295108, + 6.334557180456047, 6.129408099459044, 5.405078137238245, + 4.9028268003653706, 5.655840611159305, 8.734764996658754, + 14.900902881539418, 24.572960641859662, 36.82704212707633, + 51.26499833162787, 65.72632369675722, 78.17695272087319 + ], + "pressure:J15:branch107_seg0": [ + 188322.59469332267, 202283.41825730682, 206529.3717149342, + 197698.9259920071, 180744.546203056, 158748.70069994783, + 133808.76282864378, 106971.1177218153, 86074.6469125871, + 66153.16370664393, 48055.705477494645, 33912.7399783613, + 17889.111702100352, 3178.1674245907107, -12022.852189192976, + -28293.79807219119, -41910.78704438895, -55139.34751523065, + -64615.86270952294, -70912.53575023031, -75462.64676149571, + -77249.73741372048, -78222.27301429085, -78835.96653957774, + -79056.74151271654, -78981.9730462283, -77799.54712394362, + -74966.6630040057, -70418.56803991256, -64661.58425798792, + -58367.29429199485, -53747.10459713581, -52363.910780259415, + -54828.2396108362, -62366.004876515064, -73960.25121834251, + -88003.24219382004, -100967.74260665833, -112146.036674449, + -116958.01338607253, -115164.73064796822, -106955.46222326688, + -92818.43932849204, -74115.05847954506, -55537.51155607755, + -37267.586212802504, -20555.593424302195, -8985.13624308712, + 616.2532993536412, 7657.4123960031, 12753.675153730388, 18186.37611466241, + 22298.885863520463, 25857.52499624835, 28719.797315461827, + 28761.351367394804, 26461.595695703727, 21696.673441125, + 14987.544038774742, 7031.225798088782, 373.37455847262544, + -5029.597632278616, -8576.69626899711, -9255.611408206478, + -8848.12301578865, -7842.928262924437, -7178.104394383703, + -7829.945455435431, -9799.03296893579, -12774.722855926639, + -15566.1136951747, -17498.03054755017, -17835.720763803703, + -15995.97852016698, -12441.76801902455, -8276.4975211711, + -4350.842113644521, -1299.0992861666384, -282.1211935955459, + -675.969198757711, -1566.5873392817396, -2339.9412130742853, + -1922.4091629043626, 240.66773459729478, 3813.088614056522, + 8289.263033473662, 11910.684909302903, 14073.863189610956, + 14286.091680846306, 12485.172993467759, 10473.130810185537, + 10474.057063582031, 14847.992689671824, 25942.525228853054, + 44227.529907650765, 71211.91930043125, 101076.71734346535, + 133842.0344304102, 166404.04495752236, 188322.59469332267 + ], + "flow:branch24_seg0:J16": [ + 82.1837085908402, 99.31032635117322, 113.70369110984171, + 124.08573844706649, 129.65006409743287, 130.16392421960302, + 126.04139142884593, 118.38367883853199, 108.18088523267177, + 96.47429659056894, 84.37769311706423, 72.11390521696468, + 59.98322979611179, 47.998573579095094, 35.87549261109337, + 23.819277439999336, 11.748354416867715, -0.03793679106447034, + -10.957446521562284, -20.863208065705454, -29.366520463442377, + -36.364665661908894, -42.01650462298993, -46.462831927920185, + -49.97137713042238, -52.70860947297953, -54.69781803642953, + -55.867954478531836, -56.09047988457526, -55.28120834505106, + -53.54268558059054, -51.24212244869896, -48.90834661821881, + -47.30025237854857, -47.10491879336777, -48.816276028947726, + -52.505642149814314, -57.942120548235515, -64.30076057062396, + -70.49375720980284, -75.48676936239974, -78.20388693205813, + -78.02763756342324, -74.79435725342907, -68.91809366170358, + -60.88319504867223, -51.69664343808114, -42.22381770748407, + -33.00613083160682, -24.626682418744817, -17.108637387640183, + -10.408415693057202, -4.461432628188976, 0.9018984724173726, + 5.578225794574922, 9.414922972491532, 12.175872810729066, + 13.605539195903317, 13.599089639053451, 12.280584459041242, + 9.929255705491913, 6.978706258910383, 4.029234912596816, + 1.422964635608119, -0.565953776756076, -1.8819772391466423, + -2.7320228387122323, -3.4074757739441925, -4.198023191752695, + -5.297095955574453, -6.688942615810578, -8.220548940926017, + -9.571604731838347, -10.417184334585162, -10.5456954582154, + -9.911428360686717, -8.650114939351232, -7.072603872812062, + -5.545413587589004, -4.323334941883735, -3.552776867497148, + -3.150117840219187, -2.862602841159795, -2.3801582714978418, + -1.438646941877998, 0.0439852450743008, 1.9432164636789129, + 3.9589714279597192, 5.648980486946447, 6.749629463798809, + 7.21070314141084, 7.352018934307188, 7.8882717310028, 9.79486955449872, + 14.124256059647772, 21.748960337247915, 32.846994692199736, + 47.42499326142445, 64.40333378571405, 82.1837085908402 + ], + "pressure:branch24_seg0:J16": [ + 100197.41098694803, 119164.36045927039, 134624.3214506266, + 144853.4681703126, 149450.04151111364, 148392.05706614122, + 142265.39976361883, 132271.84070207865, 119990.6669830531, + 106262.4778607145, 92272.4082803719, 78329.79649914027, 64431.98898224128, + 50748.22095915278, 36859.83511112169, 23046.464976434094, + 9310.249133022195, -4083.371826623265, -16207.849477766376, + -27079.130078875936, -36359.55414412213, -43826.811520423165, + -49843.77478320873, -54564.57710647941, -58268.72794309751, + -61155.68236066506, -63165.554273469315, -64194.03888756336, + -64096.598084408986, -62832.19419797972, -60540.70832498665, + -57789.762471178285, -55244.7483947863, -53738.63871664211, + -54093.6107638768, -56764.13065406306, -61654.19271049123, + -68352.67006970532, -75845.05073515391, -82691.9819127599, + -87790.43532117532, -90022.97228707006, -88760.45698849128, + -83949.38557158015, -76448.09349637455, -66687.00983580713, + -55787.646533152416, -45045.207944711125, -34672.070113209236, + -25364.556797088284, -17134.829312226895, -9667.400834834232, + -3121.5407224090623, 2764.8931859628683, 7909.077421859828, + 11951.826156781683, 14688.290010029992, 15851.716856039278, + 15355.27892441948, 13400.843361491434, 10432.480401091449, + 6939.88157492241, 3607.378868763489, 818.6837919170388, + -1232.205480169437, -2531.3419576756587, -3373.4477387322836, + -4134.504561332514, -5118.803619865267, -6503.656817185726, + -8171.322067357712, -9918.860626120373, -11369.457582448842, + -12112.568535356148, -11983.100963009034, -11006.616421824267, + -9404.20675656071, -7517.293201842406, -5846.283960681147, + -4603.236335350678, -3859.1809382151473, -3496.204388840213, + -3164.0133572126274, -2497.5528175081577, -1239.3921597393103, + 646.7414062238864, 2918.1216643849402, 5198.831665029353, + 6978.382072175042, 7997.735900818145, 8327.605778133962, + 8473.318921523978, 9365.400023243297, 12188.265790666299, + 18110.046344814215, 28151.309466597657, 41998.192735124794, + 59633.7970872772, 79994.12826272323, 100197.41098694803 + ], + "flow:J16:branch25_seg0": [ + 65.3416857123591, 79.07606505938169, 90.66619867812247, 99.08314753083206, + 103.65676911011101, 104.18838668744957, 100.99865940948453, + 94.95362904712968, 86.83930830948975, 77.50460924387711, + 67.83063816485421, 58.01383268042205, 48.305180986707065, + 38.70856131115695, 29.009972783311355, 19.36033951423575, + 9.69466731848977, 0.25686082047934805, -8.506314942959788, + -16.463423401509004, -23.301661372757774, -28.940523139195047, + -33.49613637918756, -37.08239650494004, -39.91303449084799, + -42.1218809465304, -43.73244571818104, -44.68991824542092, + -44.89185540991623, -44.268995880140416, -42.89978840319678, + -41.06950621962961, -39.198517455349, -37.89074557339598, + -37.696479503381674, -39.017324759239735, -41.92283637873893, + -46.2355581163558, -51.304753606086315, -56.272578357345424, + -60.30414753621801, -62.537306319691204, -62.46922794681082, + -59.95804451229211, -55.31518192422714, -48.93116096016951, + -41.606291106222756, -34.0248888318754, -26.639017067586153, + -19.912178035992426, -13.871509640496699, -8.491467692805385, + -3.713437294077916, 0.594228040438479, 4.3532016466269114, + 7.446569930797671, 9.683926877991114, 10.86125417057935, + 10.89140964731274, 9.867651405956472, 8.007821996399544, + 5.659260695515598, 3.296588848608572, 1.1990976179293231, + -0.407627116544836, -1.4766839771147884, -2.1675063382026014, + -2.7106395498706357, -3.3392291056310235, -4.21067129743083, + -5.318247775572816, -6.542410415757684, -7.629270332671304, + -8.320086131029054, -8.441406619713238, -7.951915972456652, + -6.956087238185443, -5.7001776454497595, -4.4745791508755275, + -3.487670607404048, -2.860345096972569, -2.5298917429136387, + -2.2984206762625417, -1.9187050029672146, -1.177258855270071, + -0.003922820168000275, 1.5077528398323166, 3.119841750729722, + 4.482052253935195, 5.378968111109483, 5.762668371820696, + 5.880485060354271, 6.295427875503573, 7.782414560279445, + 11.184116839128555, 17.200151755050012, 25.99887399827204, + 37.588962910476816, 51.117354881420695, 65.3416857123591 + ], + "pressure:J16:branch25_seg0": [ + 100197.41098694803, 119164.36045927039, 134624.3214506266, + 144853.4681703126, 149450.04151111364, 148392.05706614122, + 142265.39976361883, 132271.84070207865, 119990.6669830531, + 106262.4778607145, 92272.4082803719, 78329.79649914027, 64431.98898224128, + 50748.22095915278, 36859.83511112169, 23046.464976434094, + 9310.249133022195, -4083.371826623265, -16207.849477766376, + -27079.130078875936, -36359.55414412213, -43826.811520423165, + -49843.77478320873, -54564.57710647941, -58268.72794309751, + -61155.68236066506, -63165.554273469315, -64194.03888756336, + -64096.598084408986, -62832.19419797972, -60540.70832498665, + -57789.762471178285, -55244.7483947863, -53738.63871664211, + -54093.6107638768, -56764.13065406306, -61654.19271049123, + -68352.67006970532, -75845.05073515391, -82691.9819127599, + -87790.43532117532, -90022.97228707006, -88760.45698849128, + -83949.38557158015, -76448.09349637455, -66687.00983580713, + -55787.646533152416, -45045.207944711125, -34672.070113209236, + -25364.556797088284, -17134.829312226895, -9667.400834834232, + -3121.5407224090623, 2764.8931859628683, 7909.077421859828, + 11951.826156781683, 14688.290010029992, 15851.716856039278, + 15355.27892441948, 13400.843361491434, 10432.480401091449, + 6939.88157492241, 3607.378868763489, 818.6837919170388, + -1232.205480169437, -2531.3419576756587, -3373.4477387322836, + -4134.504561332514, -5118.803619865267, -6503.656817185726, + -8171.322067357712, -9918.860626120373, -11369.457582448842, + -12112.568535356148, -11983.100963009034, -11006.616421824267, + -9404.20675656071, -7517.293201842406, -5846.283960681147, + -4603.236335350678, -3859.1809382151473, -3496.204388840213, + -3164.0133572126274, -2497.5528175081577, -1239.3921597393103, + 646.7414062238864, 2918.1216643849402, 5198.831665029353, + 6978.382072175042, 7997.735900818145, 8327.605778133962, + 8473.318921523978, 9365.400023243297, 12188.265790666299, + 18110.046344814215, 28151.309466597657, 41998.192735124794, + 59633.7970872772, 79994.12826272323, 100197.41098694803 + ], + "flow:J16:branch140_seg0": [ + 16.842022878481163, 20.234261291791903, 23.037492431719443, + 25.002590916234546, 25.99329498732235, 25.975537532155595, + 25.042732019361768, 23.430049791404784, 21.341576923181737, + 18.969687346692563, 16.54705495221283, 14.100072536544404, + 11.67804880940155, 9.290012267933955, 6.865519827784183, + 4.458937925763438, 2.0536870983757782, -0.294797611544892, + -2.45113157860177, -4.399784664197042, -6.0648590906843935, + -7.424142522710075, -8.520368243800267, -9.380435422977056, + -10.058342639570247, -10.586728526447056, -10.965372318248894, + -11.178036233110507, -11.198624474662061, -11.012212464910652, + -10.64289717739649, -10.172616229069687, -9.709829162870744, + -9.409506805155026, -9.408439289987346, -9.79895126970928, + -10.582805771075236, -11.706562431879549, -12.996006964537743, + -14.221178852459008, -15.182621826179735, -15.666580612368067, + -15.558409616613007, -14.836312741137007, -13.602911737476479, + -11.952034088502419, -10.090352331858508, -8.19892887560889, + -6.367113764020823, -4.714504382752273, -3.237127747143511, + -1.916948000251821, -0.7479953341111032, 0.3076704319789434, + 1.2250241479480193, 1.9683530416939834, 2.4919459327379974, + 2.7442850253240425, 2.707679991740884, 2.41293305308487, + 1.9214337090923046, 1.3194455633946702, 0.7326460639879977, + 0.223867017678838, -0.15832666021150224, -0.4052932620315612, + -0.5645165005097048, -0.6968362240739826, -0.8587940861215024, + -1.0864246581434411, -1.3706948402378099, -1.6781385251681273, + -1.9423343991671211, -2.0970982035560652, -2.1042888385020557, + -1.9595123882301173, -1.6940277011658338, -1.3724262273622478, + -1.070834436713593, -0.8356643344796738, -0.6924317705245684, + -0.6202260973055663, -0.5641821648971711, -0.4614532685306186, + -0.26138808660797824, 0.04790806524232612, 0.435463623846686, + 0.8391296772299867, 1.1669282330112594, 1.3706613526893718, + 1.4480347695901936, 1.4715338739528785, 1.5928438554991755, + 2.0124549942192487, 2.940139220519352, 4.548808582197937, + 6.848120693927704, 9.836030350947876, 13.285978904293655, + 16.842022878481163 + ], + "pressure:J16:branch140_seg0": [ + 100197.41098694803, 119164.36045927039, 134624.3214506266, + 144853.4681703126, 149450.04151111364, 148392.05706614122, + 142265.39976361883, 132271.84070207865, 119990.6669830531, + 106262.4778607145, 92272.4082803719, 78329.79649914027, 64431.98898224128, + 50748.22095915278, 36859.83511112169, 23046.464976434094, + 9310.249133022195, -4083.371826623265, -16207.849477766376, + -27079.130078875936, -36359.55414412213, -43826.811520423165, + -49843.77478320873, -54564.57710647941, -58268.72794309751, + -61155.68236066506, -63165.554273469315, -64194.03888756336, + -64096.598084408986, -62832.19419797972, -60540.70832498665, + -57789.762471178285, -55244.7483947863, -53738.63871664211, + -54093.6107638768, -56764.13065406306, -61654.19271049123, + -68352.67006970532, -75845.05073515391, -82691.9819127599, + -87790.43532117532, -90022.97228707006, -88760.45698849128, + -83949.38557158015, -76448.09349637455, -66687.00983580713, + -55787.646533152416, -45045.207944711125, -34672.070113209236, + -25364.556797088284, -17134.829312226895, -9667.400834834232, + -3121.5407224090623, 2764.8931859628683, 7909.077421859828, + 11951.826156781683, 14688.290010029992, 15851.716856039278, + 15355.27892441948, 13400.843361491434, 10432.480401091449, + 6939.88157492241, 3607.378868763489, 818.6837919170388, + -1232.205480169437, -2531.3419576756587, -3373.4477387322836, + -4134.504561332514, -5118.803619865267, -6503.656817185726, + -8171.322067357712, -9918.860626120373, -11369.457582448842, + -12112.568535356148, -11983.100963009034, -11006.616421824267, + -9404.20675656071, -7517.293201842406, -5846.283960681147, + -4603.236335350678, -3859.1809382151473, -3496.204388840213, + -3164.0133572126274, -2497.5528175081577, -1239.3921597393103, + 646.7414062238864, 2918.1216643849402, 5198.831665029353, + 6978.382072175042, 7997.735900818145, 8327.605778133962, + 8473.318921523978, 9365.400023243297, 12188.265790666299, + 18110.046344814215, 28151.309466597657, 41998.192735124794, + 59633.7970872772, 79994.12826272323, 100197.41098694803 + ], + "flow:branch25_seg0:J17": [ + 65.34026932042416, 79.0748552951955, 90.66525562547798, 99.08261985532658, + 103.65668699708544, 104.18866143084384, 100.99918629898924, + 94.95450380674207, 86.84022531214926, 77.5055178847982, 67.83164627480208, + 58.01477839548927, 48.3061311297414, 38.70952843495567, + 29.010884980304176, 19.361305767858948, 9.695640289656046, + 0.2577264887446491, -8.505499461518514, -16.46271495255266, + -23.30107607660557, -28.94004377078181, -33.49576494273263, + -37.08210340659094, -39.91280210407537, -42.12170703776496, + -43.732336931619116, -44.68988505255919, -44.89191202200978, + -44.2691234368903, -42.899979204731984, -41.069706454225724, + -39.19865536820412, -37.890790871797776, -37.6963819995037, + -39.01707321542123, -41.922413011329326, -46.23506630876734, + -51.30425143654473, -56.27213818450584, -60.30389587250215, + -62.537263088866936, -62.46943205610026, -59.95847275611779, + -55.31579483081678, -48.931899586910234, -41.60707535511811, + -34.02564965955041, -26.639710404998457, -19.91280380709555, + -13.872062450412082, -8.491976834096949, -3.71387617069129, + 0.5938495817343956, 4.3528652716114795, 7.446328482584005, + 9.68379481389179, 10.861233856384185, 10.891488638019489, + 9.867842537078518, 8.008053371325964, 5.659474230026054, + 3.2968134629791064, 1.1992704976226587, -0.4075186700912874, + -1.4766099736427811, -2.16745329434605, -2.7105833554787533, + -3.3391479972703793, -4.2105628531341575, -5.318124385495923, + -6.542291775255094, -7.629187290274926, -8.32006139441892, + -8.441449463449848, -7.952015849117013, -6.956214308442808, + -5.700316222866618, -4.474684937733963, -3.4877336378408357, + -2.86038016986076, -2.529913205995081, -2.298452303447992, + -1.9187715176868954, -1.1773655409001391, -0.004075654630666961, + 1.507588985945212, 3.119710944273127, 4.481949712437963, + 5.378919842818817, 5.7626610167985195, 5.88046340610341, + 6.295314956275373, 7.782125878051144, 11.183570461816194, + 17.199310339295263, 25.99776450667017, 37.587592078759045, + 51.11583220006635, 65.34026932042416 + ], + "pressure:branch25_seg0:J17": [ + 99427.43115641548, 118420.87418956892, 133951.42992487704, + 144320.2521644928, 149078.6120570523, 148179.27637377067, + 142197.0904545859, 132340.31734532438, 120134.47130629298, + 106461.87291499508, 92512.82277809165, 78585.07985332458, + 64714.70483049782, 51052.793843394036, 37189.45317513703, + 23405.152999461476, 9686.301939831872, -3694.799387348884, + -15830.171650839728, -26725.97365431119, -36033.10318448498, + -43537.245478165794, -49586.356783111165, -54333.173107355025, + -58059.68902733321, -60964.91153230161, -62996.5418661126, + -64052.837043607185, -63989.38360927978, -62759.39236957744, + -60500.628887128405, -57765.21555105269, -55211.98388486941, + -53675.866611303165, -53974.733139348056, -56572.86510267381, + -61389.72587658209, -68032.46834847884, -75491.70518009127, + -82349.37629782864, -87498.31238810353, -89810.04701551724, + -88650.52344921281, -83951.86480952999, -76539.60785812773, + -66850.24936032674, -56005.352842999884, -45274.430263529764, + -34902.55576161497, -25585.378343948272, -17336.21939131341, + -9862.815505995639, -3304.1233381604193, 2594.9902103276236, + 7749.7635390083715, 11818.757010822786, 14590.780152411297, + 15797.372124384809, 15348.02118412932, 13439.979575892106, + 10502.084080757517, 7025.810176557135, 3696.0528175306954, + 893.5331711678494, -1175.2327616145558, -2491.173146711127, + -3343.8486616781333, -4104.464126075148, -5079.219512680976, + -6449.67586278374, -8107.006276988576, -9851.845939992236, + -11309.446882218705, -12072.660944061738, -11969.870077482776, + -11019.077184579259, -9434.689370071228, -7558.577181062157, + -5882.825405110907, -4627.203162294567, -3871.28476755272, + -3499.9633161847173, -3169.0323683733536, -2515.039588307158, + -1276.3298835544344, 588.1599555536864, 2846.7339155251784, + 5126.523014361675, 6917.183955969272, 7957.53882905335, 8305.313626881783, + 8451.740102267466, 9314.899770007589, 12070.913991771296, 17888.700563693, + 27787.820799903435, 41498.64812332769, 59007.89558685174, + 79247.40951360918, 99427.43115641548 + ], + "flow:J17:branch26_seg0": [ + 52.257263079049345, 63.36221977889358, 72.78006881654001, + 79.67744492492889, 83.48690872272466, 84.03643101027984, + 81.57436639853722, 76.7826060882561, 70.2901841974627, 62.797249307537406, + 55.00226737097412, 47.0837674511978, 39.2548776550316, 31.51080775892897, + 23.694418374379957, 15.911716430815302, 8.11136259724401, + 0.4970151741574265, -6.594779535476573, -13.041598595311582, + -18.588551497606865, -23.174478659355227, -26.88049517897821, + -29.80018287116911, -32.10569265534782, -33.90505285423702, + -35.22251113025602, -36.01589501107716, -36.20281630520231, + -35.72556642019393, -34.64374972553456, -33.17854770955926, + -31.66615032567679, -30.590252714153085, -30.3949066175349, + -31.410392966757136, -33.70628821384716, -37.14586292789065, + -41.213966790211146, -45.23278954737135, -48.52037830698517, + -50.38083925291781, -50.39987806805599, -48.45266947883911, + -44.76819569587186, -39.66580356477176, -33.78690081022424, + -27.671832922436707, -21.706771828833993, -16.26147034577375, + -11.365590637271593, -7.00968517076422, -3.1381350240590375, + 0.3512157968953129, 3.398955396663444, 5.916582211559317, + 7.748876296374631, 8.731728014418847, 8.791773747825365, + 7.997684492925846, 6.519826893530226, 4.638897877849323, + 2.7307994540992997, 1.0272248298081268, -0.28341240106697774, + -1.1614787061609242, -1.7290690067956487, -2.1693775754166453, + -2.671964689573629, -3.3663088902745084, -4.25319921820899, + -5.239045957699109, -6.121174121302041, -6.692683382945381, + -6.809262774054883, -6.432723395434134, -5.643174468811873, + -4.636934226630448, -3.645023974099423, -2.8400277210641898, + -2.323467531314643, -2.0487945504630587, -1.8609208565722826, + -1.561361406487035, -0.9757896115163568, -0.04292513700168892, + 1.1678785246264696, 2.46675780793379, 3.575407945078451, + 4.315122466881019, 4.639253815490992, 4.738654460576222, + 5.058371558088907, 6.217584697607294, 8.896691973438383, + 13.66004425867018, 20.67187756492783, 29.942768598087028, + 40.79075738493723, 52.257263079049345 + ], + "pressure:J17:branch26_seg0": [ + 99427.43115641548, 118420.87418956892, 133951.42992487704, + 144320.2521644928, 149078.6120570523, 148179.27637377067, + 142197.0904545859, 132340.31734532438, 120134.47130629298, + 106461.87291499508, 92512.82277809165, 78585.07985332458, + 64714.70483049782, 51052.793843394036, 37189.45317513703, + 23405.152999461476, 9686.301939831872, -3694.799387348884, + -15830.171650839728, -26725.97365431119, -36033.10318448498, + -43537.245478165794, -49586.356783111165, -54333.173107355025, + -58059.68902733321, -60964.91153230161, -62996.5418661126, + -64052.837043607185, -63989.38360927978, -62759.39236957744, + -60500.628887128405, -57765.21555105269, -55211.98388486941, + -53675.866611303165, -53974.733139348056, -56572.86510267381, + -61389.72587658209, -68032.46834847884, -75491.70518009127, + -82349.37629782864, -87498.31238810353, -89810.04701551724, + -88650.52344921281, -83951.86480952999, -76539.60785812773, + -66850.24936032674, -56005.352842999884, -45274.430263529764, + -34902.55576161497, -25585.378343948272, -17336.21939131341, + -9862.815505995639, -3304.1233381604193, 2594.9902103276236, + 7749.7635390083715, 11818.757010822786, 14590.780152411297, + 15797.372124384809, 15348.02118412932, 13439.979575892106, + 10502.084080757517, 7025.810176557135, 3696.0528175306954, + 893.5331711678494, -1175.2327616145558, -2491.173146711127, + -3343.8486616781333, -4104.464126075148, -5079.219512680976, + -6449.67586278374, -8107.006276988576, -9851.845939992236, + -11309.446882218705, -12072.660944061738, -11969.870077482776, + -11019.077184579259, -9434.689370071228, -7558.577181062157, + -5882.825405110907, -4627.203162294567, -3871.28476755272, + -3499.9633161847173, -3169.0323683733536, -2515.039588307158, + -1276.3298835544344, 588.1599555536864, 2846.7339155251784, + 5126.523014361675, 6917.183955969272, 7957.53882905335, 8305.313626881783, + 8451.740102267466, 9314.899770007589, 12070.913991771296, 17888.700563693, + 27787.820799903435, 41498.64812332769, 59007.89558685174, + 79247.40951360918, 99427.43115641548 + ], + "flow:J17:branch44_seg0": [ + 13.083006241374905, 15.712635516301805, 17.885186808938617, + 19.405174930397912, 20.16977827436115, 20.152230420565107, + 19.424819900451304, 18.171897718484583, 16.550041114687442, + 14.708268577259398, 12.82937890382965, 10.93101094429197, + 9.051253474711269, 7.198720676026892, 5.316466605925555, + 3.4495893370473203, 1.5842776924106248, -0.23928868541410572, + -1.910719926038393, -3.421116357241422, -4.712524578997697, + -5.765565111425254, -6.615269763750225, -7.281920535420805, + -7.807109448728086, -8.21665418352863, -8.509825801364977, + -8.673990041482025, -8.689095716808664, -8.543557016696337, + -8.256229479197996, -7.89115874466554, -7.532505042525637, + -7.300538157643535, -7.3014753819675935, -7.606680248664153, + -8.21612479747991, -9.089203380877628, -10.09028464633278, + -11.039348637133974, -11.783517565517906, -12.15642383594888, + -12.069553988045413, -11.505803277278424, -10.547599134944713, + -9.26609602213819, -7.820174544894186, -6.353816737113721, + -4.932938576164243, -3.651333461321872, -2.506471813140429, + -1.482291663332876, -0.5757411466322548, 0.24263378483903764, + 0.9539098749479967, 1.5297462710245153, 1.9349185175171681, + 2.1295058419653676, 2.0997148901941665, 1.8701580441528354, + 1.4882264777959464, 1.020576352176721, 0.5660140088797649, + 0.17204566781457378, -0.124106269024213, -0.3151312674817813, + -0.43838428755036024, -0.5412057800620983, -0.6671833076968157, + -0.844253962859594, -1.0649251672870474, -1.3032458175559014, + -1.5080131689727863, -1.6273780114735863, -1.6321866893950276, + -1.5192924536828876, -1.3130398396309497, -1.063381996236239, + -0.8296609636346308, -0.6477059167767104, -0.5369126385461799, + -0.4811186555320396, -0.43753144687569284, -0.357410111199871, + -0.2015759293837771, 0.03884948237101179, 0.3397104613187733, + 0.652953136339292, 0.906541767359512, 1.0637973759378054, + 1.1234072013075345, 1.1418089455272145, 1.2369433981863176, + 1.5645411804439218, 2.2868784883776554, 3.5392660806249587, + 5.325886941742467, 7.644823480672103, 10.325074815129351, + 13.083006241374905 + ], + "pressure:J17:branch44_seg0": [ + 99427.43115641548, 118420.87418956892, 133951.42992487704, + 144320.2521644928, 149078.6120570523, 148179.27637377067, + 142197.0904545859, 132340.31734532438, 120134.47130629298, + 106461.87291499508, 92512.82277809165, 78585.07985332458, + 64714.70483049782, 51052.793843394036, 37189.45317513703, + 23405.152999461476, 9686.301939831872, -3694.799387348884, + -15830.171650839728, -26725.97365431119, -36033.10318448498, + -43537.245478165794, -49586.356783111165, -54333.173107355025, + -58059.68902733321, -60964.91153230161, -62996.5418661126, + -64052.837043607185, -63989.38360927978, -62759.39236957744, + -60500.628887128405, -57765.21555105269, -55211.98388486941, + -53675.866611303165, -53974.733139348056, -56572.86510267381, + -61389.72587658209, -68032.46834847884, -75491.70518009127, + -82349.37629782864, -87498.31238810353, -89810.04701551724, + -88650.52344921281, -83951.86480952999, -76539.60785812773, + -66850.24936032674, -56005.352842999884, -45274.430263529764, + -34902.55576161497, -25585.378343948272, -17336.21939131341, + -9862.815505995639, -3304.1233381604193, 2594.9902103276236, + 7749.7635390083715, 11818.757010822786, 14590.780152411297, + 15797.372124384809, 15348.02118412932, 13439.979575892106, + 10502.084080757517, 7025.810176557135, 3696.0528175306954, + 893.5331711678494, -1175.2327616145558, -2491.173146711127, + -3343.8486616781333, -4104.464126075148, -5079.219512680976, + -6449.67586278374, -8107.006276988576, -9851.845939992236, + -11309.446882218705, -12072.660944061738, -11969.870077482776, + -11019.077184579259, -9434.689370071228, -7558.577181062157, + -5882.825405110907, -4627.203162294567, -3871.28476755272, + -3499.9633161847173, -3169.0323683733536, -2515.039588307158, + -1276.3298835544344, 588.1599555536864, 2846.7339155251784, + 5126.523014361675, 6917.183955969272, 7957.53882905335, 8305.313626881783, + 8451.740102267466, 9314.899770007589, 12070.913991771296, 17888.700563693, + 27787.820799903435, 41498.64812332769, 59007.89558685174, + 79247.40951360918, 99427.43115641548 + ], + "flow:branch26_seg0:J18": [ + 52.25307555588596, 63.35862863083536, 72.77725740819321, + 79.67585469391881, 83.48662712348532, 84.03720512977007, + 81.57589933953612, 76.78515341729536, 70.29288150697022, 62.7999391563125, + 55.00523823105615, 47.08656568594893, 39.257687262953844, + 31.513665932324177, 23.697127037856816, 15.914572686962549, + 8.114238807096047, 0.49959348249236585, -6.592359786669717, + -13.039494919660747, -18.58680734440642, -23.17305352287133, + -26.879388082715124, -29.79930950074528, -32.10500158995518, + -33.90453385348472, -35.222184075866494, -36.01579036346284, + -36.20297518105566, -35.7259357002305, -34.6443078526407, + -33.179137178843305, -31.666563217264596, -30.59039718187281, + -30.39463186149955, -31.40966138434616, -33.70505363653508, + -37.144413586968064, -41.21247828466737, -45.23148015676345, + -48.519615669592724, -50.38069081521075, -50.40046324634328, + -48.453927598275925, -44.76999690821639, -39.66797835484122, + -33.78922303101278, -27.67408209088237, -21.70882881124413, + -16.26332667127754, -11.367226050102024, -7.01119343039425, + -3.1394355739772535, 0.35009364225910194, 3.397957719380578, + 5.915861814568252, 7.748476282427428, 8.731656461780734, + 8.791998615212004, 7.9982376852270605, 6.52050639032841, + 4.639534186060039, 2.7314647654768747, 1.0277396871747393, + -0.2830854353744568, -1.1612568202005407, -1.7289114129108412, + -2.1692121184659574, -2.671726661770991, -3.3659889429290604, + -4.25283481146311, -5.238694820543778, -6.1209249148903595, + -6.6926058080909385, -6.809384283810311, -6.433013833629539, + -5.643546568847028, -4.637342845657221, -3.645338313417562, + -2.8402171428099696, -2.3235741678045394, -2.0488588153244582, + -1.8610129109842157, -1.5615541118346035, -0.9761014196752883, + -0.043372195385890176, 1.1673950129032933, 2.4663659104193845, + 3.575100680392201, 4.314975958418189, 4.639229804712052, + 4.738592732815263, 5.058046159186947, 6.216745709611411, + 8.895096592787226, 13.657570318316646, 20.668613350220387, + 29.938744563293763, 40.78626064835088, 52.25307555588596 + ], + "pressure:branch26_seg0:J18": [ + 98385.92640079554, 117422.63881679134, 133063.0774829879, + 143634.88758830517, 148625.5483576112, 147953.7411557411, + 142178.2719420078, 132509.36769823494, 120406.93783342291, + 106810.00402673546, 92909.67267954153, 78996.68014294164, + 65157.08808710755, 51517.26494933376, 37683.01216006689, + 23931.255811773994, 10229.020884239004, -3140.7503369250608, + -15298.367429023108, -26234.58327291807, -35585.451721567835, + -43146.8162855005, -49245.48331651244, -54032.805338807004, + -57793.737041427004, -60726.98309118561, -62790.78473908624, + -63887.13048020776, -63871.84539752091, -62690.64586008942, + -60477.63859322173, -57763.62751304014, -55199.11438552454, + -53620.0955536476, -53839.847646827926, -56336.384329717024, + -61051.6730662079, -67617.02832329331, -75031.63858387207, + -81907.09343150862, -87128.484918356, -89553.69582148355, + -88540.16233164053, -83998.9851845556, -76711.19680073479, + -67120.60644988564, -56347.43928395145, -45628.677094122235, + -35253.837384371516, -25917.165732421538, -17636.08187695854, + -10148.679207026762, -3567.8036766279934, 2352.0163071618595, + 7525.563251632867, 11633.833071551111, 14457.531880493612, + 15726.431948010862, 15344.47017981858, 13501.481642933604, + 10606.201167778321, 7153.003996958429, 3825.260963839472, + 1001.9401266515563, -1093.1579277593935, -2434.3463381288925, + -3303.065392146341, -4064.020581808726, -5026.183872855061, + -6377.089113226282, -8020.262680588127, -9761.654520478904, + -11229.69855118176, -12021.542830443608, -11956.483311720049, + -11041.990373125183, -9483.21816338986, -7621.717760060555, + -5938.87182438893, -4665.247370290798, -3891.608696489863, + -3507.692626986413, -3177.8510910306527, -2540.75246184218, + -1328.9427762970397, 505.7762008598712, 2746.905384495474, + 5025.59320056185, 6832.886453301861, 7903.640666738259, 8277.429298931202, + 8426.153583868483, 9250.26834993864, 11914.433709643687, + 17588.67736225749, 27292.3996716764, 40815.985644544875, + 58152.20557364013, 78232.46496685054, 98385.92640079554 + ], + "flow:J18:branch27_seg0": [ + 36.11225425255321, 43.803585581452985, 50.33467280220491, + 55.1263009737574, 57.783402790780684, 58.184301229783436, + 56.49854043011864, 53.19595793198943, 48.71097144318853, + 43.529303625362445, 38.134411327098825, 32.65199569860567, + 27.230717171646386, 21.86786580617494, 16.455624806141437, + 11.066541481719003, 5.665047420172578, 0.3911941115003875, + -4.522513452181445, -8.990730267536634, -12.837189033093214, + -16.018592445781277, -18.590309219703165, -20.61685755082987, + -22.21711780339963, -23.466212204464323, -24.381422383815316, + -24.933975679135784, -25.06707236692581, -24.740571114660526, + -23.99514558330861, -22.982881530684917, -21.935872770716475, + -21.188272570033725, -21.047639152638673, -21.7433902700256, + -23.325153628782857, -25.69983809828099, -28.51254387089054, + -31.29525141352036, -33.575889940692875, -34.87240604960941, + -34.896598031851624, -33.56017426665042, -31.01971419797123, + -27.495480000993485, -23.429870595090275, -19.197427331939114, + -15.066387141890235, -11.293124566231633, -7.899876803098572, + -4.880589510673035, -2.196929701364341, 0.22148643157122014, + 2.334384638801817, 4.080897022042055, 5.353770081811803, + 6.039470418074865, 6.0866838127132326, 5.542213083412438, + 4.52309794006864, 3.2232729417910764, 1.9025408777736144, + 0.7217481726297732, -0.18806025214526392, -0.798603836825906, + -1.1935412507260896, -1.4992420089728355, -1.8469075138863653, + -2.3265570710861545, -2.939462602362418, -3.6214397310092465, + -4.232808065840989, -4.630364411672936, -4.713838563590342, + -4.456131125947336, -3.9119928957522836, -3.216683834669821, + -2.529848533106406, -1.9713821724328096, -1.6120201657265023, + -1.4203656949636065, -1.289721066658423, -1.0829534695068392, + -0.6791912618574751, -0.03540937628531643, 0.8012793139205283, + 1.700062419847125, 2.468698365188353, 2.9830856476081316, + 3.210003697942476, 3.2801897958225643, 3.500265658152035, + 4.297862740531863, 6.143670367977172, 9.429154351606579, + 14.270263378511476, 20.675435589630897, 28.176700337525347, + 36.11225425255321 + ], + "pressure:J18:branch27_seg0": [ + 98385.92640079554, 117422.63881679134, 133063.0774829879, + 143634.88758830517, 148625.5483576112, 147953.7411557411, + 142178.2719420078, 132509.36769823494, 120406.93783342291, + 106810.00402673546, 92909.67267954153, 78996.68014294164, + 65157.08808710755, 51517.26494933376, 37683.01216006689, + 23931.255811773994, 10229.020884239004, -3140.7503369250608, + -15298.367429023108, -26234.58327291807, -35585.451721567835, + -43146.8162855005, -49245.48331651244, -54032.805338807004, + -57793.737041427004, -60726.98309118561, -62790.78473908624, + -63887.13048020776, -63871.84539752091, -62690.64586008942, + -60477.63859322173, -57763.62751304014, -55199.11438552454, + -53620.0955536476, -53839.847646827926, -56336.384329717024, + -61051.6730662079, -67617.02832329331, -75031.63858387207, + -81907.09343150862, -87128.484918356, -89553.69582148355, + -88540.16233164053, -83998.9851845556, -76711.19680073479, + -67120.60644988564, -56347.43928395145, -45628.677094122235, + -35253.837384371516, -25917.165732421538, -17636.08187695854, + -10148.679207026762, -3567.8036766279934, 2352.0163071618595, + 7525.563251632867, 11633.833071551111, 14457.531880493612, + 15726.431948010862, 15344.47017981858, 13501.481642933604, + 10606.201167778321, 7153.003996958429, 3825.260963839472, + 1001.9401266515563, -1093.1579277593935, -2434.3463381288925, + -3303.065392146341, -4064.020581808726, -5026.183872855061, + -6377.089113226282, -8020.262680588127, -9761.654520478904, + -11229.69855118176, -12021.542830443608, -11956.483311720049, + -11041.990373125183, -9483.21816338986, -7621.717760060555, + -5938.87182438893, -4665.247370290798, -3891.608696489863, + -3507.692626986413, -3177.8510910306527, -2540.75246184218, + -1328.9427762970397, 505.7762008598712, 2746.905384495474, + 5025.59320056185, 6832.886453301861, 7903.640666738259, 8277.429298931202, + 8426.153583868483, 9250.26834993864, 11914.433709643687, + 17588.67736225749, 27292.3996716764, 40815.985644544875, + 58152.20557364013, 78232.46496685054, 98385.92640079554 + ], + "flow:J18:branch122_seg0": [ + 16.14082130333277, 19.555043049382505, 22.44258460598888, + 24.549553720161207, 25.703224332705144, 25.852903899987837, + 25.07735890941769, 23.589195485305368, 21.581910063781837, + 19.270635530950532, 16.870826903955273, 14.43456998734432, + 12.02697009130711, 9.645800126148472, 7.241502231715018, + 4.848031205243862, 2.4491913869252446, 0.10839937099258472, + -2.069846334486661, -4.048764652125649, -5.749618311311969, + -7.1544610770905095, -8.28907886301283, -9.182451949915855, + -9.887883786554422, -10.438321649020764, -10.840761692051542, + -11.08181468432615, -11.135902814131724, -10.985364585570379, + -10.649162269332091, -10.1962556481594, -9.730690446549021, + -9.402124611839968, -9.346992708862468, -9.666271114319823, + -10.379900007752097, -11.444575488686725, -12.699934413776209, + -13.936228743242324, -14.943725728899265, -15.508284765600864, + -15.503865214490968, -14.893753331625502, -13.750282710245274, + -12.172498353848182, -10.35935243592236, -8.476654758943258, + -6.642441669353893, -4.970202105045833, -3.467349247003552, + -2.130603919721323, -0.9425058726129412, 0.12860721068781833, + 1.0635730805787587, 1.8349647925261965, 2.3947062006155737, + 2.6921860437057714, 2.70531480249869, 2.4560246018145566, + 1.997408450259721, 1.4162612442691533, 0.8289238877032878, + 0.3059915145450886, -0.09502518322933776, -0.36265298337462, + -0.5353701621846964, -0.6699701094931467, -0.8248191478846949, + -1.0394318718429234, -1.3133722091006936, -1.6172550895344466, + -1.888116849049288, -2.062241396417964, -2.0955457202199894, + -1.9768827076821776, -1.7315536730946648, -1.4206590109873811, + -1.115489780311148, -0.8688349703771382, -0.7115540020780444, + -0.6284931203608566, -0.5712918443257703, -0.4786006423277846, + -0.2969101578178309, -0.007962819100559834, 0.3661156989827625, + 0.7663034905722768, 1.106402315203837, 1.3318903108100768, + 1.4292261067695677, 1.45840293699272, 1.5577805010349604, + 1.9188829690794509, 2.7514262248102734, 4.228415966710152, + 6.39834997170866, 9.263308973663081, 12.609560310825465, 16.14082130333277 + ], + "pressure:J18:branch122_seg0": [ + 98385.92640079554, 117422.63881679134, 133063.0774829879, + 143634.88758830517, 148625.5483576112, 147953.7411557411, + 142178.2719420078, 132509.36769823494, 120406.93783342291, + 106810.00402673546, 92909.67267954153, 78996.68014294164, + 65157.08808710755, 51517.26494933376, 37683.01216006689, + 23931.255811773994, 10229.020884239004, -3140.7503369250608, + -15298.367429023108, -26234.58327291807, -35585.451721567835, + -43146.8162855005, -49245.48331651244, -54032.805338807004, + -57793.737041427004, -60726.98309118561, -62790.78473908624, + -63887.13048020776, -63871.84539752091, -62690.64586008942, + -60477.63859322173, -57763.62751304014, -55199.11438552454, + -53620.0955536476, -53839.847646827926, -56336.384329717024, + -61051.6730662079, -67617.02832329331, -75031.63858387207, + -81907.09343150862, -87128.484918356, -89553.69582148355, + -88540.16233164053, -83998.9851845556, -76711.19680073479, + -67120.60644988564, -56347.43928395145, -45628.677094122235, + -35253.837384371516, -25917.165732421538, -17636.08187695854, + -10148.679207026762, -3567.8036766279934, 2352.0163071618595, + 7525.563251632867, 11633.833071551111, 14457.531880493612, + 15726.431948010862, 15344.47017981858, 13501.481642933604, + 10606.201167778321, 7153.003996958429, 3825.260963839472, + 1001.9401266515563, -1093.1579277593935, -2434.3463381288925, + -3303.065392146341, -4064.020581808726, -5026.183872855061, + -6377.089113226282, -8020.262680588127, -9761.654520478904, + -11229.69855118176, -12021.542830443608, -11956.483311720049, + -11041.990373125183, -9483.21816338986, -7621.717760060555, + -5938.87182438893, -4665.247370290798, -3891.608696489863, + -3507.692626986413, -3177.8510910306527, -2540.75246184218, + -1328.9427762970397, 505.7762008598712, 2746.905384495474, + 5025.59320056185, 6832.886453301861, 7903.640666738259, 8277.429298931202, + 8426.153583868483, 9250.26834993864, 11914.433709643687, + 17588.67736225749, 27292.3996716764, 40815.985644544875, + 58152.20557364013, 78232.46496685054, 98385.92640079554 + ], + "flow:branch27_seg0:J19": [ + 36.109986158987525, 43.80162785185144, 50.33313185164781, + 55.125415734950565, 57.783219941978054, 58.18469083630678, + 56.49935111292558, 53.19730849576274, 48.71242122600355, + 43.530762152860774, 38.13601352880227, 32.653513067037565, + 27.232239274374802, 21.869413248220457, 16.457099933829017, + 11.068088531173798, 5.666606078671565, 0.39260408615928405, + -4.521195823614658, -8.989582914362058, -12.836233729612891, + -16.017813926417936, -18.589702350689457, -20.6163790906239, + -22.216740039175825, -23.465927229013865, -24.381240999373034, + -24.93391389928645, -25.067151869998295, -24.74076509818329, + -23.9954432382179, -22.983198756792646, -21.936100279147503, + -21.18835888131359, -21.04750080576418, -21.743003963366718, + -23.324498033054905, -25.699057037664012, -28.511735342716126, + -31.29453595076014, -33.57546253792361, -34.872309557570155, + -34.896900579640054, -33.56084813809836, -31.020681129189565, + -27.496651904883088, -23.431130627698433, -19.19864593077226, + -15.067507229033685, -11.294134882385562, -7.900764387231234, + -4.881409093153861, -2.1976364146268477, 0.2208757213686484, + 2.3338415740036904, 4.08050169418594, 5.353545934420356, + 6.039422765949946, 6.086798674419373, 5.5425035985991, 4.523462269294348, + 3.223620733402696, 1.9029023102428773, 0.7220301220120707, + -0.18787829026599293, -0.7984811467937598, -1.193455137637164, + -1.4991528622082557, -1.8467799564597853, -2.3263844542717655, + -2.939265583049939, -3.6212490344530157, -4.232670278172491, + -4.630318916209102, -4.713900313763711, -4.456284653035995, + -3.9121918138939074, -3.2169043459320354, -2.530019925917907, + -1.9714872378498833, -1.6120802420321094, -1.4204012005029603, + -1.2897698959010886, -1.0830548665391166, -0.6793572875460836, + -0.03564781229614416, 0.8010182169959349, 1.6998465350542866, + 2.468528708617181, 2.983003147511569, 3.2099887553824114, + 3.280158023144772, 3.5000959315205673, 4.2974195973100064, + 6.142821555791888, 9.42782596012553, 14.268508278304726, + 20.673275420832177, 28.174269105050485, 36.109986158987525 + ], + "pressure:branch27_seg0:J19": [ + 98009.06628257461, 117061.43883837278, 132741.73094639447, + 143387.1186876584, 148462.0713138286, 147872.83113872254, + 142172.39481373303, 132571.66588158486, 120506.92684044954, + 106937.3864608916, 93054.68284485258, 79147.02587503655, + 65318.38754849159, 51686.485663794265, 37862.610602227396, + 24122.475840848103, 10426.242288448175, -2939.5645531360537, + -15105.35363526688, -26056.294488796062, -35423.142238104, + -43005.36691275905, -49122.11564521528, -53924.24452394105, + -57697.74460076749, -60641.216709560904, -62716.722693335265, + -63827.600626499065, -63829.782453311804, -62666.27303950009, + -60469.871439928465, -57763.66068340806, -55195.12391886957, + -53600.62911043687, -53791.773673584095, -56251.53131643824, + -60930.01431207033, -67467.23212840503, -74865.63992808007, + -81747.42128430179, -86995.0107873976, -89461.32049512841, + -88500.72570647465, -84016.66545600773, -76774.0474448089, + -67219.3173459437, -56472.18136236735, -45757.81871392324, + -35381.86395739509, -26038.028192468686, -17745.26435737492, + -10252.678795096404, -3663.646033098636, 2263.7669373586145, + 7444.180002226476, 11566.708554728084, 14409.160802534345, + 15700.652644008485, 15343.139655204648, 13523.742419305207, + 10643.990997771485, 7199.185580299905, 3872.2078337571297, + 1041.3863493379467, -1063.2808032616938, -2413.6607003042404, + -3288.2447775865617, -4049.3805540616017, -5007.019747582447, + -6350.858925622541, -7988.90278828284, -9729.02911153166, + -11200.836603928374, -12003.043271346516, -11951.652870773942, + -11050.333162059946, -9500.865169738008, -7644.6947295837, + -5959.30411851096, -4679.165056637467, -3899.0948728789417, + -3510.582490385299, -3181.090639993243, -2550.0636741942435, + -1347.9749896034712, 475.9749787704894, 2710.7464987940357, + 4989.013186242446, 6802.307738475745, 7884.068034675118, + 8267.321312070018, 8416.957594763786, 9227.030177930103, + 11858.037005192604, 17480.35537390467, 27113.357799745663, + 40569.137045628355, 57842.70858976298, 77865.20615015425, + 98009.06628257461 + ], + "flow:J19:branch28_seg0": [ + 14.560902531333676, 17.749179960482046, 20.494743256502165, + 22.55029340695457, 23.737608984086606, 23.996993286473696, + 23.3887809075462, 22.092420843620843, 20.286740496731777, + 18.178670179412194, 15.960188924752002, 13.699624853715813, + 11.462794361501805, 9.247104659077701, 7.017845712365985, + 4.794165984556232, 2.56357034899055, 0.3848085776923266, + -1.6591321010828743, -3.523298681620786, -5.135218486482348, + -6.476517225282952, -7.562604178316469, -8.42067085693027, + -9.098684386176153, -9.628364619716208, -10.02016415198979, + -10.263978482162404, -10.336997689695044, -10.22171731068733, + -9.931793239976418, -9.524067910453018, -9.091762029107365, + -8.769031662417882, -8.683359185932193, -8.933546490835525, + -9.549284053982385, -10.497371870314527, -11.640303942399534, + -12.79373404398904, -13.75884521989815, -14.337121936656494, + -14.402440445174788, -13.910022970698764, -12.910608412758808, + -11.495402516840386, -9.840975288021744, -8.098198663632168, + -6.388884151965879, -4.817106930898668, -3.3998197177236773, + -2.1398011881056647, -1.0185344039589075, -0.009398355205396223, + 0.8750040802490868, 1.6121653008950878, 2.1579345300376853, + 2.466040658156609, 2.5128610782475955, 2.3128944964656424, + 1.9109012095938374, 1.3860557598294834, 0.8406695563764697, + 0.34586237300358325, -0.04069141334767849, -0.3050097434308139, + -0.4765990281445293, -0.6055120596595086, -0.7464456422844098, + -0.9383309417664069, -1.185921441396019, -1.4652501562102318, + -1.7210350743600533, -1.8950535471165435, -1.943296949959267, + -1.8511718525425125, -1.6380307975150532, -1.3569987016636567, + -1.0721730869566477, -0.8356943514483963, -0.6791775957396106, + -0.5933749777763714, -0.5376829809951013, -0.45651552337357554, + -0.2988422075459801, -0.043463599939774736, 0.2944857840262232, + 0.6632992323463007, 0.986956239834933, 1.2108767839698735, + 1.3161411374076264, 1.3501212344777613, 1.4321315809552304, + 1.7337488890154076, 2.4485748388150723, 3.7395581228142643, + 5.671415988996081, 8.251387340521969, 11.29857430837994, + 14.560902531333676 + ], + "pressure:J19:branch28_seg0": [ + 98009.06628257461, 117061.43883837278, 132741.73094639447, + 143387.1186876584, 148462.0713138286, 147872.83113872254, + 142172.39481373303, 132571.66588158486, 120506.92684044954, + 106937.3864608916, 93054.68284485258, 79147.02587503655, + 65318.38754849159, 51686.485663794265, 37862.610602227396, + 24122.475840848103, 10426.242288448175, -2939.5645531360537, + -15105.35363526688, -26056.294488796062, -35423.142238104, + -43005.36691275905, -49122.11564521528, -53924.24452394105, + -57697.74460076749, -60641.216709560904, -62716.722693335265, + -63827.600626499065, -63829.782453311804, -62666.27303950009, + -60469.871439928465, -57763.66068340806, -55195.12391886957, + -53600.62911043687, -53791.773673584095, -56251.53131643824, + -60930.01431207033, -67467.23212840503, -74865.63992808007, + -81747.42128430179, -86995.0107873976, -89461.32049512841, + -88500.72570647465, -84016.66545600773, -76774.0474448089, + -67219.3173459437, -56472.18136236735, -45757.81871392324, + -35381.86395739509, -26038.028192468686, -17745.26435737492, + -10252.678795096404, -3663.646033098636, 2263.7669373586145, + 7444.180002226476, 11566.708554728084, 14409.160802534345, + 15700.652644008485, 15343.139655204648, 13523.742419305207, + 10643.990997771485, 7199.185580299905, 3872.2078337571297, + 1041.3863493379467, -1063.2808032616938, -2413.6607003042404, + -3288.2447775865617, -4049.3805540616017, -5007.019747582447, + -6350.858925622541, -7988.90278828284, -9729.02911153166, + -11200.836603928374, -12003.043271346516, -11951.652870773942, + -11050.333162059946, -9500.865169738008, -7644.6947295837, + -5959.30411851096, -4679.165056637467, -3899.0948728789417, + -3510.582490385299, -3181.090639993243, -2550.0636741942435, + -1347.9749896034712, 475.9749787704894, 2710.7464987940357, + 4989.013186242446, 6802.307738475745, 7884.068034675118, + 8267.321312070018, 8416.957594763786, 9227.030177930103, + 11858.037005192604, 17480.35537390467, 27113.357799745663, + 40569.137045628355, 57842.70858976298, 77865.20615015425, + 98009.06628257461 + ], + "flow:J19:branch47_seg0": [ + 21.5490836276539, 26.05244789136917, 29.838388595145705, + 32.57512232799664, 34.04561095789068, 34.18769754983258, + 33.11057020538018, 31.104887652140828, 28.425680729271523, + 25.352091973450484, 22.17582460405147, 18.95388821332293, + 15.76944491287383, 12.62230858914508, 9.439254221463626, + 6.273922546619878, 3.1030357296788944, 0.007795508467286381, + -2.8620637225321723, -5.466284232740426, -7.7010152431304855, + -9.541296701135272, -11.027098172373602, -12.19570823369429, + -13.118055652997786, -13.83756260929721, -14.361076847383766, + -14.669935417124458, -14.73015418030302, -14.519047787494701, + -14.063649998242239, -13.459130846341495, -12.84433825004046, + -12.419327218894963, -12.364141619833267, -12.809457472530495, + -13.775213979071811, -15.201685167349494, -16.871431400317324, + -18.50080190677029, -19.816617318026687, -20.53518762091284, + -20.494460134465744, -19.650825167399432, -18.110072716430544, + -16.00124938804252, -13.590155339676764, -11.10044726714015, + -8.678623077067988, -6.47702795148693, -4.500944669507531, + -2.741607905048258, -1.1791020106679233, 0.23027407657408266, + 1.4588374937545845, 2.4683363932908367, 3.1956114043826966, + 3.573382107793401, 3.573937596171888, 3.2296091021333995, + 2.6125610597004836, 1.8375649735731996, 1.0622327538663174, + 0.37616774900848526, -0.1471868769182745, -0.49347140336310685, + -0.7168561094929436, -0.8936408025486344, -1.1003343141754212, + -1.3880535125053952, -1.7533441416538968, -2.155998878242764, + -2.5116352038124834, -2.7352653690925703, -2.7706033638044265, + -2.6051128004934787, -2.2741610163787986, -1.8599056442683453, + -1.4578468389612351, -1.1357928864015048, -0.932902646292505, + -0.827026222726607, -0.7520869149059868, -0.6265393431655998, + -0.38051508000008566, 0.007815787643615376, 0.5065324329697236, + 1.0365473027080039, 1.4815724687822651, 1.7721263635416784, + 1.8938476179747938, 1.9300367886669993, 2.0679643505653402, + 2.563670708294543, 3.69424671697683, 5.688267837311317, 8.597092289308623, + 12.421888080310083, 16.875694796670576, 21.5490836276539 + ], + "pressure:J19:branch47_seg0": [ + 98009.06628257461, 117061.43883837278, 132741.73094639447, + 143387.1186876584, 148462.0713138286, 147872.83113872254, + 142172.39481373303, 132571.66588158486, 120506.92684044954, + 106937.3864608916, 93054.68284485258, 79147.02587503655, + 65318.38754849159, 51686.485663794265, 37862.610602227396, + 24122.475840848103, 10426.242288448175, -2939.5645531360537, + -15105.35363526688, -26056.294488796062, -35423.142238104, + -43005.36691275905, -49122.11564521528, -53924.24452394105, + -57697.74460076749, -60641.216709560904, -62716.722693335265, + -63827.600626499065, -63829.782453311804, -62666.27303950009, + -60469.871439928465, -57763.66068340806, -55195.12391886957, + -53600.62911043687, -53791.773673584095, -56251.53131643824, + -60930.01431207033, -67467.23212840503, -74865.63992808007, + -81747.42128430179, -86995.0107873976, -89461.32049512841, + -88500.72570647465, -84016.66545600773, -76774.0474448089, + -67219.3173459437, -56472.18136236735, -45757.81871392324, + -35381.86395739509, -26038.028192468686, -17745.26435737492, + -10252.678795096404, -3663.646033098636, 2263.7669373586145, + 7444.180002226476, 11566.708554728084, 14409.160802534345, + 15700.652644008485, 15343.139655204648, 13523.742419305207, + 10643.990997771485, 7199.185580299905, 3872.2078337571297, + 1041.3863493379467, -1063.2808032616938, -2413.6607003042404, + -3288.2447775865617, -4049.3805540616017, -5007.019747582447, + -6350.858925622541, -7988.90278828284, -9729.02911153166, + -11200.836603928374, -12003.043271346516, -11951.652870773942, + -11050.333162059946, -9500.865169738008, -7644.6947295837, + -5959.30411851096, -4679.165056637467, -3899.0948728789417, + -3510.582490385299, -3181.090639993243, -2550.0636741942435, + -1347.9749896034712, 475.9749787704894, 2710.7464987940357, + 4989.013186242446, 6802.307738475745, 7884.068034675118, + 8267.321312070018, 8416.957594763786, 9227.030177930103, + 11858.037005192604, 17480.35537390467, 27113.357799745663, + 40569.137045628355, 57842.70858976298, 77865.20615015425, + 98009.06628257461 + ], + "flow:branch29_seg0:J20": [ + 405.15012227905754, 458.6026400798879, 489.03094995455314, + 493.9527690547242, 475.54384053887577, 437.59733253235066, + 385.92821454219944, 327.95260779774134, 271.2896642780953, + 216.5783175751883, 168.3040908238167, 125.03456169476748, + 83.97566746320886, 45.48775543205791, 6.068069250799816, + -32.88442619640998, -70.39929731607268, -105.64816677139211, + -134.65704529794857, -157.90753175143166, -174.4499381287498, + -184.75659156363912, -191.10154606711654, -194.6081694083354, + -196.62812888053233, -197.4671442827319, -196.3819298994169, + -192.39460475998948, -184.71992406280285, -173.35867961419416, + -159.6012265549844, -146.58790621486114, -137.46266110369572, + -135.86518863355323, -144.2910932214475, -163.06549931580653, + -189.9750851285553, -220.85614248551713, -250.55491630262838, + -271.91121690757353, -281.4190346851978, -275.72418722452016, + -254.86192043650973, -221.2237088281487, -180.49157019234346, + -135.87237607955402, -93.4796240273681, -57.00091409430526, + -26.31228026640803, -2.835087504882336, 15.814955916366472, + 31.399712356187113, 44.290129513892055, 55.82313235020413, + 64.77950913707026, 69.57012200152998, 69.32456635673182, + 63.01409278379867, 51.160054091588236, 35.308749449777544, + 18.507032235092492, 2.6004014789687004, -9.454679032018996, + -16.77622543949698, -19.889979253498257, -19.845930225220847, + -18.919773064476477, -19.155562967532376, -21.696022841276854, + -26.72797176128769, -32.94953144599045, -38.80877774020131, + -42.13807770358231, -41.53839025619776, -36.8274604547943, + -29.054663481405807, -19.857355419066213, -11.458470140299182, + -5.850476873388685, -3.298909828322585, -3.43815847281086, + -4.686770003335046, -4.925821001607535, -2.461665491364883, + 3.3199151911187115, 11.863208408856252, 20.973202315576366, + 28.683246974212643, 32.64537353684815, 32.38591124110644, + 29.44337591855642, 27.33474868853523, 31.129796117915454, + 46.24300368706578, 76.77020910505513, 125.22446843147125, + 187.44762297998983, 261.7771033191625, 337.9197075013529, + 405.15012227905754 + ], + "pressure:branch29_seg0:J20": [ + 189220.67853600596, 203313.69937130672, 208591.90251670068, + 200381.0631962309, 183667.95523750965, 161935.09417040885, + 137272.43548205373, 109665.09980361549, 88271.94528846069, + 67794.45411732348, 48941.961434126606, 34249.037279165175, + 17820.16655482755, 2755.6918728732994, -12570.658037644704, + -28809.219465774404, -42802.392203670606, -56080.065204158615, + -65878.87287208463, -72216.59016460448, -76950.63994303394, + -78908.47587281774, -79808.30062479162, -80381.95043847084, + -80444.01173645892, -80232.39833220119, -78921.71155108573, + -75999.33921338282, -71335.91477371543, -65598.99059350319, + -59178.22452932108, -54433.281651083664, -52906.78602935285, + -55082.497992031604, -62222.14815937722, -73595.88799041475, + -87433.3147547916, -100478.78664263102, -111891.61578587546, + -117233.4820640451, -115865.67938743554, -108294.57313036721, + -94419.4338083265, -75876.20606457737, -57128.46340946728, + -38733.2316595061, -21408.660430498378, -9195.605521001398, + 694.8842000813845, 8327.408232858363, 13527.405341860971, + 19227.994685856243, 23410.520474757286, 26811.413026181996, + 29723.41914426087, 29762.246680494358, 27443.47808758199, + 22718.71308547368, 16057.378594823422, 7985.962875019535, + 1195.1809444301355, -4393.112168973449, -8247.711346181757, + -9237.443710193676, -9038.159925103793, -8207.806292984205, + -7563.703075096828, -8144.830605778319, -10043.207206849436, + -12922.316755501864, -15679.893012376951, -17578.189224332742, + -18014.274925604186, -16262.855543601467, -12789.352369680984, + -8613.89379810823, -4740.353857208179, -1531.1760462214374, + -383.1777764669326, -681.0596035425347, -1445.675156466398, + -2141.2849429628986, -1750.4891018125238, 326.1228016404991, + 3783.140150549683, 8198.59821077116, 11812.9640177273, 14034.761485468736, + 14414.566934083348, 12766.123140964868, 10844.630301128771, + 10822.466008783813, 15091.139257881932, 25840.882444187617, + 44017.08985374199, 70714.3718094203, 100759.2365161795, + 133151.68560010204, 166679.0722717274, 189220.67853600596 + ], + "flow:J20:branch30_seg0": [ + 35.5029875164262, 39.57488867405088, 41.5051063192601, 41.16213578895959, + 38.87816882091124, 35.06004481451263, 30.24617814841196, + 25.11009336711507, 20.325377115671586, 15.805007235546926, + 11.95320532505068, 8.55214120402017, 5.290314700334353, 2.237825546447526, + -0.9588926468614815, -4.117955038467379, -7.137516937499506, + -9.960064364642674, -12.18102300083288, -13.895981187047024, + -15.044179079632041, -15.67037157569332, -16.014502548094498, + -16.166802750417933, -16.23642006924303, -16.236049037251895, + -16.074242178411758, -15.655625315973877, -14.913023520268668, + -13.86306148401267, -12.635674239530067, -11.54366515578787, + -10.860850050095372, -10.901866767680918, -11.858177643381335, + -13.711305314363743, -16.202555288428353, -18.931625572662757, + -21.429370108314075, -23.044931889692467, -23.53645920564359, + -22.65925221015184, -20.477754814283188, -17.268719929855617, + -13.59969085933843, -9.730593146645038, -6.190483012842919, + -3.2934208081865872, -0.9276466845401264, 0.7971253868002451, + 2.1334223815213362, 3.2710960185657325, 4.204279465254882, + 5.059568526824666, 5.700901941740441, 5.964865025636578, + 5.787869705521492, 5.085231812198123, 3.9249222968451813, + 2.4671217091228654, 1.0045747985781115, -0.32077633601200956, + -1.2450378477924944, -1.7257263054126162, -1.8513386830053786, + -1.731247914538422, -1.5857989425645165, -1.5950556171640689, + -1.8402757712647813, -2.31300069315971, -2.868770796652001, + -3.3582715056645926, -3.5883494519696875, -3.444375018818691, + -2.9394179607222113, -2.192947330280324, -1.3673722547418872, + -0.6599822295857174, -0.24670513992556328, -0.11550124753318562, + -0.2097169545586217, -0.36874397518549096, -0.39402639265727984, + -0.14425246373102518, 0.4115320143365052, 1.197021156686379, + 1.9883882968770337, 2.611975248392567, 2.8619264687377846, + 2.727674330392408, 2.389628393086693, 2.19339676224073, 2.609205585411306, + 4.107987032650855, 7.016277338220123, 11.5055073409464, + 17.089664229686488, 23.597662392209564, 30.082577814580933, + 35.5029875164262 + ], + "pressure:J20:branch30_seg0": [ + 189220.67853600596, 203313.69937130672, 208591.90251670068, + 200381.0631962309, 183667.95523750965, 161935.09417040885, + 137272.43548205373, 109665.09980361549, 88271.94528846069, + 67794.45411732348, 48941.961434126606, 34249.037279165175, + 17820.16655482755, 2755.6918728732994, -12570.658037644704, + -28809.219465774404, -42802.392203670606, -56080.065204158615, + -65878.87287208463, -72216.59016460448, -76950.63994303394, + -78908.47587281774, -79808.30062479162, -80381.95043847084, + -80444.01173645892, -80232.39833220119, -78921.71155108573, + -75999.33921338282, -71335.91477371543, -65598.99059350319, + -59178.22452932108, -54433.281651083664, -52906.78602935285, + -55082.497992031604, -62222.14815937722, -73595.88799041475, + -87433.3147547916, -100478.78664263102, -111891.61578587546, + -117233.4820640451, -115865.67938743554, -108294.57313036721, + -94419.4338083265, -75876.20606457737, -57128.46340946728, + -38733.2316595061, -21408.660430498378, -9195.605521001398, + 694.8842000813845, 8327.408232858363, 13527.405341860971, + 19227.994685856243, 23410.520474757286, 26811.413026181996, + 29723.41914426087, 29762.246680494358, 27443.47808758199, + 22718.71308547368, 16057.378594823422, 7985.962875019535, + 1195.1809444301355, -4393.112168973449, -8247.711346181757, + -9237.443710193676, -9038.159925103793, -8207.806292984205, + -7563.703075096828, -8144.830605778319, -10043.207206849436, + -12922.316755501864, -15679.893012376951, -17578.189224332742, + -18014.274925604186, -16262.855543601467, -12789.352369680984, + -8613.89379810823, -4740.353857208179, -1531.1760462214374, + -383.1777764669326, -681.0596035425347, -1445.675156466398, + -2141.2849429628986, -1750.4891018125238, 326.1228016404991, + 3783.140150549683, 8198.59821077116, 11812.9640177273, 14034.761485468736, + 14414.566934083348, 12766.123140964868, 10844.630301128771, + 10822.466008783813, 15091.139257881932, 25840.882444187617, + 44017.08985374199, 70714.3718094203, 100759.2365161795, + 133151.68560010204, 166679.0722717274, 189220.67853600596 + ], + "flow:J20:branch33_seg0": [ + 109.89178747345537, 123.99545093072017, 131.65094620811533, + 132.2647011633894, 126.5052152671693, 115.5018468699621, + 100.90538584934336, 84.83569105766102, 69.29824349204597, + 54.541023603110766, 41.73828195313413, 30.374722262147113, + 19.70209069888373, 9.700483167192289, -0.5851756894458459, + -10.749266158836404, -20.596118831429003, -29.822295017034083, + -37.330257732748024, -43.27237966726436, -47.38480923672393, + -49.809909074816204, -51.199793228682395, -51.86807456089752, + -52.1965184118671, -52.26826360261704, -51.86318017214828, + -50.701297182501, -48.55136294931338, -45.40851376930231, + -41.62333933133073, -38.06908174172812, -35.60796484701539, + -35.24886766963221, -37.6708766940425, -42.944761778751, + -50.41876153788776, -58.96158729960993, -67.07279145098366, + -72.8156982076249, -75.21281534133934, -73.37763676272415, + -67.35350753500308, -57.87250203964498, -46.55399053639799, + -34.300313365923124, -22.795351089429772, -13.062028882128763, + -5.007974270292688, 1.0021028055929957, 5.673310084013366, + 9.5456565293043, 12.72243611180139, 15.591202289583343, 17.8056733798211, + 18.9236728033554, 18.689144596197487, 16.816980984548714, + 13.444084252003186, 9.02414900243239, 4.369318767853665, + 0.026388984710541567, -3.192002951628003, -5.072276156373277, + -5.765580300428544, -5.587959645742155, -5.1911027714265945, + -5.151573780378134, -5.7891285302055495, -7.145639222840773, + -8.845056429858044, -10.444034468203666, -11.336297507463849, + -11.127323429936162, -9.777870516868205, -7.584892726359738, + -5.021536901873948, -2.703680142539975, -1.1919607692714909, + -0.5521084329084797, -0.6723809575603134, -1.1021259137495665, + -1.2392735058559083, -0.6103845921603441, 0.9605188129854357, + 3.300053092262305, 5.807295764048073, 7.909118674989195, + 8.948305576841108, 8.79922487052458, 7.8945615129569005, + 7.218222883588306, 8.185169910727373, 12.28871647468178, + 20.66347932432904, 33.95974849480914, 50.992980260010015, + 71.22619187194282, 91.88182508203217, 109.89178747345537 + ], + "pressure:J20:branch33_seg0": [ + 189220.67853600596, 203313.69937130672, 208591.90251670068, + 200381.0631962309, 183667.95523750965, 161935.09417040885, + 137272.43548205373, 109665.09980361549, 88271.94528846069, + 67794.45411732348, 48941.961434126606, 34249.037279165175, + 17820.16655482755, 2755.6918728732994, -12570.658037644704, + -28809.219465774404, -42802.392203670606, -56080.065204158615, + -65878.87287208463, -72216.59016460448, -76950.63994303394, + -78908.47587281774, -79808.30062479162, -80381.95043847084, + -80444.01173645892, -80232.39833220119, -78921.71155108573, + -75999.33921338282, -71335.91477371543, -65598.99059350319, + -59178.22452932108, -54433.281651083664, -52906.78602935285, + -55082.497992031604, -62222.14815937722, -73595.88799041475, + -87433.3147547916, -100478.78664263102, -111891.61578587546, + -117233.4820640451, -115865.67938743554, -108294.57313036721, + -94419.4338083265, -75876.20606457737, -57128.46340946728, + -38733.2316595061, -21408.660430498378, -9195.605521001398, + 694.8842000813845, 8327.408232858363, 13527.405341860971, + 19227.994685856243, 23410.520474757286, 26811.413026181996, + 29723.41914426087, 29762.246680494358, 27443.47808758199, + 22718.71308547368, 16057.378594823422, 7985.962875019535, + 1195.1809444301355, -4393.112168973449, -8247.711346181757, + -9237.443710193676, -9038.159925103793, -8207.806292984205, + -7563.703075096828, -8144.830605778319, -10043.207206849436, + -12922.316755501864, -15679.893012376951, -17578.189224332742, + -18014.274925604186, -16262.855543601467, -12789.352369680984, + -8613.89379810823, -4740.353857208179, -1531.1760462214374, + -383.1777764669326, -681.0596035425347, -1445.675156466398, + -2141.2849429628986, -1750.4891018125238, 326.1228016404991, + 3783.140150549683, 8198.59821077116, 11812.9640177273, 14034.761485468736, + 14414.566934083348, 12766.123140964868, 10844.630301128771, + 10822.466008783813, 15091.139257881932, 25840.882444187617, + 44017.08985374199, 70714.3718094203, 100759.2365161795, + 133151.68560010204, 166679.0722717274, 189220.67853600596 + ], + "flow:J20:branch42_seg0": [ + 44.22754941032907, 49.46064584356887, 52.026191212420926, + 51.75976984905533, 49.039418238913655, 44.36269919057419, + 38.382551411694564, 31.977166714773812, 25.933538482347547, + 20.213407457627493, 15.343992955392316, 11.01831996191692, + 6.908504832823321, 3.0541319898452466, -0.972870607781877, + -4.9346291598777485, -8.756948262962363, -12.328503399855542, + -15.153783439878017, -17.351822693560827, -18.835244302195647, + -19.655158891788165, -20.11187528517053, -20.315538896716024, + -20.40908324175259, -20.415312616723053, -20.222524071066015, + -19.71524027300345, -18.8047848558209, -17.507715727264195, + -15.975646966762334, -14.59713351305573, -13.704443189214349, + -13.702663613453765, -14.837096928666401, -17.101600314342676, + -20.177045270439656, -23.601574791120946, -26.755368914443146, + -28.849526685562434, -29.55397152264257, -28.549862392345904, + -25.89045793641721, -21.927563887014372, -17.35239463026732, + -12.499358910523897, -8.028973116551422, -4.350726795874568, + -1.332958065918247, 0.8731641562436735, 2.5780537382911084, + 4.027452638113735, 5.209384238288579, 6.29606370885249, 7.116052671611233, + 7.47521506987404, 7.287814537726369, 6.444443981592248, 5.018061754958189, + 3.2142990309454436, 1.3739231486393673, -0.30754410800213494, + -1.4927108921120142, -2.131611911541243, -2.3170938906000553, + -2.1817029369642023, -2.001422556352897, -2.0029667014940644, + -2.2960979426012247, -2.8756500430674947, -3.5684312155321596, + -4.1884762700080636, -4.495264679597388, -4.338089718455287, + -3.7294538861782147, -2.807900079611309, -1.77754907174177, + -0.8802220714303047, -0.34336584716057367, -0.15642037604392936, + -0.25882777554817504, -0.4542819474994726, -0.4947552705706261, + -0.20123643467387217, 0.47646745028184295, 1.4446526821721386, + 2.4406540411966033, 3.2395989476189886, 3.5783799009806887, + 3.4360882736788074, 3.0254850150520816, 2.766391808292685, + 3.245425859526135, 5.050487843320488, 8.61544432595495, + 14.151786274575144, 21.093701769238915, 29.205891888130992, + 37.3633098669644, 44.22754941032907 + ], + "pressure:J20:branch42_seg0": [ + 189220.67853600596, 203313.69937130672, 208591.90251670068, + 200381.0631962309, 183667.95523750965, 161935.09417040885, + 137272.43548205373, 109665.09980361549, 88271.94528846069, + 67794.45411732348, 48941.961434126606, 34249.037279165175, + 17820.16655482755, 2755.6918728732994, -12570.658037644704, + -28809.219465774404, -42802.392203670606, -56080.065204158615, + -65878.87287208463, -72216.59016460448, -76950.63994303394, + -78908.47587281774, -79808.30062479162, -80381.95043847084, + -80444.01173645892, -80232.39833220119, -78921.71155108573, + -75999.33921338282, -71335.91477371543, -65598.99059350319, + -59178.22452932108, -54433.281651083664, -52906.78602935285, + -55082.497992031604, -62222.14815937722, -73595.88799041475, + -87433.3147547916, -100478.78664263102, -111891.61578587546, + -117233.4820640451, -115865.67938743554, -108294.57313036721, + -94419.4338083265, -75876.20606457737, -57128.46340946728, + -38733.2316595061, -21408.660430498378, -9195.605521001398, + 694.8842000813845, 8327.408232858363, 13527.405341860971, + 19227.994685856243, 23410.520474757286, 26811.413026181996, + 29723.41914426087, 29762.246680494358, 27443.47808758199, + 22718.71308547368, 16057.378594823422, 7985.962875019535, + 1195.1809444301355, -4393.112168973449, -8247.711346181757, + -9237.443710193676, -9038.159925103793, -8207.806292984205, + -7563.703075096828, -8144.830605778319, -10043.207206849436, + -12922.316755501864, -15679.893012376951, -17578.189224332742, + -18014.274925604186, -16262.855543601467, -12789.352369680984, + -8613.89379810823, -4740.353857208179, -1531.1760462214374, + -383.1777764669326, -681.0596035425347, -1445.675156466398, + -2141.2849429628986, -1750.4891018125238, 326.1228016404991, + 3783.140150549683, 8198.59821077116, 11812.9640177273, 14034.761485468736, + 14414.566934083348, 12766.123140964868, 10844.630301128771, + 10822.466008783813, 15091.139257881932, 25840.882444187617, + 44017.08985374199, 70714.3718094203, 100759.2365161795, + 133151.68560010204, 166679.0722717274, 189220.67853600596 + ], + "flow:J20:branch48_seg0": [ + 34.01494179538844, 38.069767287418486, 40.09694367125536, + 39.960464807544255, 37.90407055181183, 34.31065983042032, + 29.73181670024459, 24.762577076517186, 20.105094230985724, + 15.717901821965679, 11.908110110077148, 8.5767480752579, + 5.390821466088583, 2.4116084139667886, -0.6677553450929934, + -3.757688683626939, -6.6885157044238595, -9.419953186283026, + -11.63086471863024, -13.34482638534919, -14.494889815890643, + -15.156114211549948, -15.515231442932757, -15.680868860326411, + -15.761996718423514, -15.764787048846788, -15.62039345329307, + -15.232588122156452, -14.5369854136737, -13.53830113911239, + -12.36856868207265, -11.297524544989402, -10.610693508595203, + -10.602662484552328, -11.464253663845305, -13.186569696782914, + -15.567684648678409, -18.17523812651475, -20.607468551608022, + -22.232983610839383, -22.79138864386007, -22.03655910759057, + -20.040718010098445, -17.027864077560004, -13.5052797860659, + -9.762118814658297, -6.33005203806324, -3.451260338616629, + -1.115749419473205, 0.6086379216427784, 1.9621654936891326, + 3.0717058880783026, 4.003704509953226, 4.844553797050062, + 5.479807449374031, 5.765560965157674, 5.625656370356942, + 4.979275618139193, 3.893676480876225, 2.4966599761594814, + 1.086481083318665, -0.1989742368145812, -1.129660795986782, + -1.6304571535346608, -1.7783720398284986, -1.6853866384832188, + -1.5522539299418987, -1.5523937947713742, -1.7710741741480298, + -2.2092895804426673, -2.739902701737812, -3.2204338435902145, + -3.4576970184805598, -3.3500651542860664, -2.889246842502493, + -2.1880919113627404, -1.3909119187166943, -0.7035561901757121, + -0.2777517353149578, -0.12752500032647496, -0.20149294773439025, + -0.346348805588892, -0.37735057038232717, -0.15212086632431016, + 0.362297860579557, 1.1091038317715598, 1.8702451818361439, + 2.480484512239877, 2.750703189684621, 2.6536630079419923, + 2.3448925542197774, 2.1514078808152384, 2.51413979949424, + 3.895565576634842, 6.60019485170858, 10.817260469450535, + 16.136352284140067, 22.420720295222374, 28.638399504817432, + 34.01494179538844 + ], + "pressure:J20:branch48_seg0": [ + 189220.67853600596, 203313.69937130672, 208591.90251670068, + 200381.0631962309, 183667.95523750965, 161935.09417040885, + 137272.43548205373, 109665.09980361549, 88271.94528846069, + 67794.45411732348, 48941.961434126606, 34249.037279165175, + 17820.16655482755, 2755.6918728732994, -12570.658037644704, + -28809.219465774404, -42802.392203670606, -56080.065204158615, + -65878.87287208463, -72216.59016460448, -76950.63994303394, + -78908.47587281774, -79808.30062479162, -80381.95043847084, + -80444.01173645892, -80232.39833220119, -78921.71155108573, + -75999.33921338282, -71335.91477371543, -65598.99059350319, + -59178.22452932108, -54433.281651083664, -52906.78602935285, + -55082.497992031604, -62222.14815937722, -73595.88799041475, + -87433.3147547916, -100478.78664263102, -111891.61578587546, + -117233.4820640451, -115865.67938743554, -108294.57313036721, + -94419.4338083265, -75876.20606457737, -57128.46340946728, + -38733.2316595061, -21408.660430498378, -9195.605521001398, + 694.8842000813845, 8327.408232858363, 13527.405341860971, + 19227.994685856243, 23410.520474757286, 26811.413026181996, + 29723.41914426087, 29762.246680494358, 27443.47808758199, + 22718.71308547368, 16057.378594823422, 7985.962875019535, + 1195.1809444301355, -4393.112168973449, -8247.711346181757, + -9237.443710193676, -9038.159925103793, -8207.806292984205, + -7563.703075096828, -8144.830605778319, -10043.207206849436, + -12922.316755501864, -15679.893012376951, -17578.189224332742, + -18014.274925604186, -16262.855543601467, -12789.352369680984, + -8613.89379810823, -4740.353857208179, -1531.1760462214374, + -383.1777764669326, -681.0596035425347, -1445.675156466398, + -2141.2849429628986, -1750.4891018125238, 326.1228016404991, + 3783.140150549683, 8198.59821077116, 11812.9640177273, 14034.761485468736, + 14414.566934083348, 12766.123140964868, 10844.630301128771, + 10822.466008783813, 15091.139257881932, 25840.882444187617, + 44017.08985374199, 70714.3718094203, 100759.2365161795, + 133151.68560010204, 166679.0722717274, 189220.67853600596 + ], + "flow:J20:branch68_seg0": [ + 23.60524491752825, 26.238099193739714, 27.44075922364129, + 27.136782405516456, 25.561327168816824, 22.983154315296872, + 19.772966266421, 16.36425417220294, 13.221354362628805, + 10.257928776363094, 7.730307384209962, 5.51146694159324, 3.36240848161397, + 1.3573593546504352, -0.7484033661157476, -2.8392581615562054, + -4.814528541255932, -6.666121255979133, -8.112588184724222, + -9.224049575794792, -9.960967344047903, -10.357591310436435, + -10.57360871611712, -10.66798819232245, -10.711542407961723, + -10.707813703275713, -10.595843828885409, -10.310072344762627, + -9.809320296504737, -9.10449011656185, -8.29060040343598, + -7.572690119168699, -7.1392729296343385, -7.193033947427464, + -7.85853374929679, -9.112368383146967, -10.784546863908158, + -12.5855707911799, -14.225727744226907, -15.256910944819067, + -15.537747026668034, -14.907168900453438, -13.428920729536197, + -11.277011904422112, -8.841684071829402, -6.284541336748749, + -3.9633592433386964, -2.0721933455514567, -0.532427624671145, + 0.5843879018876198, 1.4560619870259723, 2.19552343910874, + 2.807821666389559, 3.367566251327158, 3.783054674800044, 3.94390311377431, + 3.8101470278932577, 3.3266595580369467, 2.5454864845820513, + 1.5701728979071938, 0.606818043979278, -0.2595108087235179, + -0.8567362201375135, -1.1558344907506968, -1.2251539220767889, + -1.1381066766979375, -1.0414747218558527, -1.0532576578609958, + -1.2224047345993327, -1.541609709154465, -1.910433572099815, + -2.2309301140916826, -2.373145999673619, -2.2665719320782602, + -1.9206973341280904, -1.421163599451432, -0.8725785658357527, + -0.4114872245739338, -0.14725535304140486, -0.07126998528749877, + -0.14126379030375644, -0.2481418827207007, -0.26006955212955724, + -0.08474769570671077, 0.2923446786177899, 0.8199681531968217, + 1.3409176109913603, 1.744452448142301, 1.8962297365636225, + 1.7943376788932375, 1.5643864214017709, 1.4419768728662474, + 1.738338407869339, 2.7681928867146715, 4.729000339630103, + 7.743607688846504, 11.45950546575875, 15.78926856488073, + 20.05346996401652, 23.60524491752825 + ], + "pressure:J20:branch68_seg0": [ + 189220.67853600596, 203313.69937130672, 208591.90251670068, + 200381.0631962309, 183667.95523750965, 161935.09417040885, + 137272.43548205373, 109665.09980361549, 88271.94528846069, + 67794.45411732348, 48941.961434126606, 34249.037279165175, + 17820.16655482755, 2755.6918728732994, -12570.658037644704, + -28809.219465774404, -42802.392203670606, -56080.065204158615, + -65878.87287208463, -72216.59016460448, -76950.63994303394, + -78908.47587281774, -79808.30062479162, -80381.95043847084, + -80444.01173645892, -80232.39833220119, -78921.71155108573, + -75999.33921338282, -71335.91477371543, -65598.99059350319, + -59178.22452932108, -54433.281651083664, -52906.78602935285, + -55082.497992031604, -62222.14815937722, -73595.88799041475, + -87433.3147547916, -100478.78664263102, -111891.61578587546, + -117233.4820640451, -115865.67938743554, -108294.57313036721, + -94419.4338083265, -75876.20606457737, -57128.46340946728, + -38733.2316595061, -21408.660430498378, -9195.605521001398, + 694.8842000813845, 8327.408232858363, 13527.405341860971, + 19227.994685856243, 23410.520474757286, 26811.413026181996, + 29723.41914426087, 29762.246680494358, 27443.47808758199, + 22718.71308547368, 16057.378594823422, 7985.962875019535, + 1195.1809444301355, -4393.112168973449, -8247.711346181757, + -9237.443710193676, -9038.159925103793, -8207.806292984205, + -7563.703075096828, -8144.830605778319, -10043.207206849436, + -12922.316755501864, -15679.893012376951, -17578.189224332742, + -18014.274925604186, -16262.855543601467, -12789.352369680984, + -8613.89379810823, -4740.353857208179, -1531.1760462214374, + -383.1777764669326, -681.0596035425347, -1445.675156466398, + -2141.2849429628986, -1750.4891018125238, 326.1228016404991, + 3783.140150549683, 8198.59821077116, 11812.9640177273, 14034.761485468736, + 14414.566934083348, 12766.123140964868, 10844.630301128771, + 10822.466008783813, 15091.139257881932, 25840.882444187617, + 44017.08985374199, 70714.3718094203, 100759.2365161795, + 133151.68560010204, 166679.0722717274, 189220.67853600596 + ], + "flow:J20:branch85_seg0": [ + 85.1774414967754, 100.11967780031212, 111.13118460314305, + 117.11208699333089, 117.70936392512218, 113.22191317994293, + 104.58107787906052, 93.12187832812316, 80.46001812913357, 67.394413996124, + 54.91350910408457, 43.287118780655746, 32.320623246475556, + 21.996177519358607, 11.835895218050593, 1.83347196035469, + -7.8954829892374505, -17.135808878711554, -25.358436046643476, + -32.38250971439315, -37.91036721523284, -41.975560893411824, + -44.82637591379285, -46.72075369344742, -47.97116377069428, + -48.72704522919259, -48.98072306465651, -48.6022518664736, + -47.43559150750857, -45.41078095889201, -42.689263542699315, + -39.73427531395627, -37.179726583393304, -35.795096433580454, + -36.247410682573374, -38.881388802009866, -43.60439031251546, + -49.789510374847694, -56.51171053057439, -62.41255525090451, + -66.42735087611466, -67.58111219668149, -65.4742793602079, + -60.198247024666486, -52.49284824204859, -43.09185021517028, + -33.25080867071407, -23.83403164230676, -15.353680639226033, + -8.236288606309735, -2.300727305435739, 2.6226965264886615, + 6.741211119525432, 10.295479591112333, 13.197922000971802, + 15.243261712370504, 16.21580830674411, 15.878719628293503, + 14.217530420118898, 11.404152060107764, 7.935875701072784, + 4.261508937754877, 0.9735193202014915, -1.542619268449387, + -3.1585873602967154, -3.961388733484718, -4.280523329794721, + -4.515799747500288, -4.997005998840809, -5.900314709283701, + -7.138380675973864, -8.480977806738455, -9.520710446982457, + -9.926037299981921, -9.50676508653113, -8.316457986603092, + -6.577273324652324, -4.704339172241837, -3.110127324337501, + -2.0255946333106456, -1.521334026131419, -1.4127161229019576, + -1.3522996765133122, -0.9667901295215935, -0.012467622517247869, + 1.5572525294542563, 3.4676701409669004, 5.352257083675417, + 6.740152815162225, 7.365443715734821, 7.298137492392121, + 7.038929279362437, 7.475489213571462, 9.72315381574312, + 14.817124877970272, 23.55153260287755, 35.76208218678157, + 51.28425251327438, 68.34589398936237, 85.1774414967754 + ], + "pressure:J20:branch85_seg0": [ + 189220.67853600596, 203313.69937130672, 208591.90251670068, + 200381.0631962309, 183667.95523750965, 161935.09417040885, + 137272.43548205373, 109665.09980361549, 88271.94528846069, + 67794.45411732348, 48941.961434126606, 34249.037279165175, + 17820.16655482755, 2755.6918728732994, -12570.658037644704, + -28809.219465774404, -42802.392203670606, -56080.065204158615, + -65878.87287208463, -72216.59016460448, -76950.63994303394, + -78908.47587281774, -79808.30062479162, -80381.95043847084, + -80444.01173645892, -80232.39833220119, -78921.71155108573, + -75999.33921338282, -71335.91477371543, -65598.99059350319, + -59178.22452932108, -54433.281651083664, -52906.78602935285, + -55082.497992031604, -62222.14815937722, -73595.88799041475, + -87433.3147547916, -100478.78664263102, -111891.61578587546, + -117233.4820640451, -115865.67938743554, -108294.57313036721, + -94419.4338083265, -75876.20606457737, -57128.46340946728, + -38733.2316595061, -21408.660430498378, -9195.605521001398, + 694.8842000813845, 8327.408232858363, 13527.405341860971, + 19227.994685856243, 23410.520474757286, 26811.413026181996, + 29723.41914426087, 29762.246680494358, 27443.47808758199, + 22718.71308547368, 16057.378594823422, 7985.962875019535, + 1195.1809444301355, -4393.112168973449, -8247.711346181757, + -9237.443710193676, -9038.159925103793, -8207.806292984205, + -7563.703075096828, -8144.830605778319, -10043.207206849436, + -12922.316755501864, -15679.893012376951, -17578.189224332742, + -18014.274925604186, -16262.855543601467, -12789.352369680984, + -8613.89379810823, -4740.353857208179, -1531.1760462214374, + -383.1777764669326, -681.0596035425347, -1445.675156466398, + -2141.2849429628986, -1750.4891018125238, 326.1228016404991, + 3783.140150549683, 8198.59821077116, 11812.9640177273, 14034.761485468736, + 14414.566934083348, 12766.123140964868, 10844.630301128771, + 10822.466008783813, 15091.139257881932, 25840.882444187617, + 44017.08985374199, 70714.3718094203, 100759.2365161795, + 133151.68560010204, 166679.0722717274, 189220.67853600596 + ], + "flow:J20:branch105_seg0": [ + 40.00359393386263, 44.860484838445856, 47.33400935739604, + 47.25449970497698, 44.90552277777813, 40.7249688452627, 35.34517242191625, + 29.506824166657633, 23.979199940653817, 18.763716420465713, + 14.255267617272855, 10.286186346887987, 6.515607374999557, + 2.9857518043655302, -0.6672541987539986, -4.304206020399829, + -7.782943606639791, -11.034845364536256, -13.658289113411449, + -15.70524001833354, -17.090312576488216, -17.886367948779476, + -18.32653789303374, -18.53009514196204, -18.628852656662588, + -18.63811816195724, -18.47401194889754, -18.026952010189152, + -17.218289720898706, -16.0515000523944, -14.673748667295136, + -13.405630869889787, -12.573599924779831, -12.533879810199823, + -13.515961934415303, -15.519846993490475, -18.298880771537114, + -21.385184511905816, -24.271360923590095, -26.22792774636278, + -26.939077025456495, -26.10306285410824, -23.785566136953886, + -20.256013083063326, -16.117095189049838, -11.699375164107524, + -7.621496284543018, -4.203888093820188, -1.4132366100510492, + 0.6480808129116697, 2.2574076912725562, 3.5862702931636012, + 4.692851878086413, 5.693915263972122, 6.454261307602125, 6.80734059096449, + 6.66231216828936, 5.921040487442977, 4.652991393348155, 3.01935395719619, + 1.348138136089795, -0.18507684474880914, -1.2949832782704116, + -1.9063596905570033, -2.0981133552022606, -1.995960351732889, + -1.8395382819214194, -1.834703651147423, -2.0858070258633536, + -2.597239433543611, -3.22113314702959, -3.7910935672637396, + -4.08273957526332, -3.9673506030593426, -3.436831018806701, + -2.616614217685315, -1.6791907377144197, -0.8602801084685765, + -0.3476721234941236, -0.15782716870448352, -0.23587158807999964, + -0.40537915276597486, -0.44690980413425596, -0.19209668079324432, + 0.40580402109709723, 1.2775941608330619, 2.1797638814243268, + 2.9122690669463753, 3.2436750953125193, 3.1422157721388944, + 2.784685173159746, 2.548637553040329, 2.9538538686260107, + 4.543703568316645, 7.694648570368236, 12.631200466633663, + 18.877869966377197, 26.255356481093663, 33.632138725797134, + 40.00359393386263 + ], + "pressure:J20:branch105_seg0": [ + 189220.67853600596, 203313.69937130672, 208591.90251670068, + 200381.0631962309, 183667.95523750965, 161935.09417040885, + 137272.43548205373, 109665.09980361549, 88271.94528846069, + 67794.45411732348, 48941.961434126606, 34249.037279165175, + 17820.16655482755, 2755.6918728732994, -12570.658037644704, + -28809.219465774404, -42802.392203670606, -56080.065204158615, + -65878.87287208463, -72216.59016460448, -76950.63994303394, + -78908.47587281774, -79808.30062479162, -80381.95043847084, + -80444.01173645892, -80232.39833220119, -78921.71155108573, + -75999.33921338282, -71335.91477371543, -65598.99059350319, + -59178.22452932108, -54433.281651083664, -52906.78602935285, + -55082.497992031604, -62222.14815937722, -73595.88799041475, + -87433.3147547916, -100478.78664263102, -111891.61578587546, + -117233.4820640451, -115865.67938743554, -108294.57313036721, + -94419.4338083265, -75876.20606457737, -57128.46340946728, + -38733.2316595061, -21408.660430498378, -9195.605521001398, + 694.8842000813845, 8327.408232858363, 13527.405341860971, + 19227.994685856243, 23410.520474757286, 26811.413026181996, + 29723.41914426087, 29762.246680494358, 27443.47808758199, + 22718.71308547368, 16057.378594823422, 7985.962875019535, + 1195.1809444301355, -4393.112168973449, -8247.711346181757, + -9237.443710193676, -9038.159925103793, -8207.806292984205, + -7563.703075096828, -8144.830605778319, -10043.207206849436, + -12922.316755501864, -15679.893012376951, -17578.189224332742, + -18014.274925604186, -16262.855543601467, -12789.352369680984, + -8613.89379810823, -4740.353857208179, -1531.1760462214374, + -383.1777764669326, -681.0596035425347, -1445.675156466398, + -2141.2849429628986, -1750.4891018125238, 326.1228016404991, + 3783.140150549683, 8198.59821077116, 11812.9640177273, 14034.761485468736, + 14414.566934083348, 12766.123140964868, 10844.630301128771, + 10822.466008783813, 15091.139257881932, 25840.882444187617, + 44017.08985374199, 70714.3718094203, 100759.2365161795, + 133151.68560010204, 166679.0722717274, 189220.67853600596 + ], + "flow:J20:branch123_seg0": [ + 32.726575735293345, 36.28362551163259, 37.845809359324285, + 37.302328341953896, 35.04075378836238, 31.432045486384524, + 26.963065865109947, 22.27412291468354, 17.966838524633225, + 13.88491826398339, 10.461416374600022, 7.4278581222821405, + 4.485296661977073, 1.744417636247647, -1.1674741131856106, + -4.014894934000502, -6.7272424426303, -9.280575304350348, + -11.231803061092704, -12.730722509685005, -13.729168558537722, + -14.245517657167865, -14.533621039286238, -14.658047312234014, + -14.712551603933294, -14.70975488286423, -14.55101118206009, + -14.150577644933689, -13.45056579881207, -12.474316366645382, + -11.344384721861934, -10.3679049562904, -9.786110070966808, + -9.887117907034927, -10.838781925227194, -12.607658032923824, + -14.921220435158672, -17.42585101767473, -19.68111807888412, + -21.070682571772892, -21.420225043472318, -20.509532800464363, + -18.410715914011107, -15.395786881921884, -12.028586877346854, + -8.504225125777042, -5.299100571884815, -2.733364187820344, + -0.6286069522354973, 0.8877021163484573, 2.055261845988723, + 3.0793110233640326, 3.9084405245925424, 4.674782921482112, + 5.241835711149406, 5.446302720397646, 5.245813644003459, + 4.561740713546956, 3.463301008855866, 2.112840815906187, + 0.7819025555608317, -0.4156141091949489, -1.217066366294277, + -1.6113404628780024, -1.6957397020597609, -1.5641773275776751, + -1.4276585306178018, -1.449812017215076, -1.6942286637534998, + -2.145228369794206, -2.6574229071065947, -3.094560164640708, + -3.283873024151141, -3.118577099581929, -2.6271778090569886, + -1.9265956300520415, -1.170942643789626, -0.5349230012829447, + -0.18563858084307028, -0.09266298420786429, -0.19727043289416013, + -0.3490322029229177, -0.36113622936420164, -0.11003662845373743, + 0.42341797573758166, 1.157562802479631, 1.8782673982358555, + 2.4330909922080246, 2.6260007535656134, 2.4672635918016437, + 2.1415993562872098, 1.975785648328938, 2.408173472689449, + 3.8651964890035804, 6.634039476874453, 10.863825093332078, + 16.0354668179973, 21.997759312408196, 27.92209255378417, + 32.726575735293345 + ], + "pressure:J20:branch123_seg0": [ + 189220.67853600596, 203313.69937130672, 208591.90251670068, + 200381.0631962309, 183667.95523750965, 161935.09417040885, + 137272.43548205373, 109665.09980361549, 88271.94528846069, + 67794.45411732348, 48941.961434126606, 34249.037279165175, + 17820.16655482755, 2755.6918728732994, -12570.658037644704, + -28809.219465774404, -42802.392203670606, -56080.065204158615, + -65878.87287208463, -72216.59016460448, -76950.63994303394, + -78908.47587281774, -79808.30062479162, -80381.95043847084, + -80444.01173645892, -80232.39833220119, -78921.71155108573, + -75999.33921338282, -71335.91477371543, -65598.99059350319, + -59178.22452932108, -54433.281651083664, -52906.78602935285, + -55082.497992031604, -62222.14815937722, -73595.88799041475, + -87433.3147547916, -100478.78664263102, -111891.61578587546, + -117233.4820640451, -115865.67938743554, -108294.57313036721, + -94419.4338083265, -75876.20606457737, -57128.46340946728, + -38733.2316595061, -21408.660430498378, -9195.605521001398, + 694.8842000813845, 8327.408232858363, 13527.405341860971, + 19227.994685856243, 23410.520474757286, 26811.413026181996, + 29723.41914426087, 29762.246680494358, 27443.47808758199, + 22718.71308547368, 16057.378594823422, 7985.962875019535, + 1195.1809444301355, -4393.112168973449, -8247.711346181757, + -9237.443710193676, -9038.159925103793, -8207.806292984205, + -7563.703075096828, -8144.830605778319, -10043.207206849436, + -12922.316755501864, -15679.893012376951, -17578.189224332742, + -18014.274925604186, -16262.855543601467, -12789.352369680984, + -8613.89379810823, -4740.353857208179, -1531.1760462214374, + -383.1777764669326, -681.0596035425347, -1445.675156466398, + -2141.2849429628986, -1750.4891018125238, 326.1228016404991, + 3783.140150549683, 8198.59821077116, 11812.9640177273, 14034.761485468736, + 14414.566934083348, 12766.123140964868, 10844.630301128771, + 10822.466008783813, 15091.139257881932, 25840.882444187617, + 44017.08985374199, 70714.3718094203, 100759.2365161795, + 133151.68560010204, 166679.0722717274, 189220.67853600596 + ], + "flow:branch31_seg0:J21": [ + 78.82019707304845, 87.5082034774812, 91.2839890522491, 90.01738870800328, + 84.51885880236567, 75.76276617790828, 64.97397852116825, + 53.74345603233902, 43.34632282640021, 33.6852886633263, 25.57260911932327, + 18.406982407298667, 11.557234259961316, 5.098944027296249, + -1.7163089888306045, -8.455565966027274, -14.925672918777897, + -21.005303855424152, -25.747432401319355, -29.435200867892114, + -31.914122549614344, -33.27729980534251, -34.0787030286308, + -34.48484470703722, -34.740297268841076, -34.86067893963704, + -34.63136696511977, -33.834527793719936, -32.319127739931474, + -30.10892100609169, -27.50256199680074, -25.184583654202463, + -23.76027453679665, -23.938382751041157, -26.144115122272225, + -30.32372820795351, -35.90179789630417, -42.020821009596425, + -47.59912462785872, -51.222719467916804, -52.353692948047446, + -50.424095622281804, -45.595937134112965, -38.46490452582822, + -30.33549267763275, -21.754797958091892, -13.914447491754082, + -7.540393600005504, -2.3259869075884962, 1.4329605849529157, + 4.357573033301678, 6.867175048673569, 8.952148632627553, 10.8939955934224, + 12.360662200344732, 12.998320508015832, 12.642079071554939, + 11.102896424525534, 8.52647496857554, 5.3054302645683675, + 2.0515116015813457, -0.8733391765496303, -2.8767745746611317, + -3.8926763541550895, -4.114435761734945, -3.7924077022038563, + -3.436508482115649, -3.449488235963236, -4.010012452736008, + -5.096558595079193, -6.369047126351368, -7.490465161823828, + -8.0207446069583, -7.700580690368473, -6.563129770018151, + -4.882282427185043, -3.0245886682496264, -1.4448508456414364, + -0.5322509938730627, -0.2623327395087743, -0.5046959972647406, + -0.890941811918085, -0.9645852600945912, -0.4081890333437604, + 0.854357770127092, 2.6323507824091905, 4.437083080500591, + 5.851434220594522, 6.404299650339154, 6.083596814600141, + 5.296255760395737, 4.828019920770024, 5.741818364556105, + 9.108269899082048, 15.637607914603418, 25.731122990242614, + 38.217084602871566, 52.69440154196959, 67.02438331457466, + 78.82019707304845 + ], + "pressure:branch31_seg0:J21": [ + 182616.55096749892, 196600.3188856652, 200943.61250514883, + 192666.69222650072, 176268.4335547909, 154968.91960812148, + 130897.65774648856, 104745.28707551511, 84298.84815870026, + 64923.56771565293, 47390.98120712286, 33557.54173104289, + 18398.504615338785, 4336.987003711713, -10073.473541465824, + -25363.21100759878, -38806.67816672484, -51272.34576303642, + -60640.12369063142, -67039.69778769053, -71581.97713341707, + -73624.312890607, -74739.02782809555, -75471.39792145361, + -75838.54159989646, -75926.06952664077, -74986.25322151739, + -72538.02732986868, -68401.55612578864, -63114.84171701488, + -57140.24413840922, -52660.975391941654, -51088.828852609935, + -53125.80710691329, -59972.80526384705, -70891.8644273326, + -84362.1146030666, -97311.9036649219, -108609.235156582, + -114281.20347281473, -113539.15120910606, -106562.79591776205, + -93377.6473993581, -75673.23592611663, -57426.694464224354, + -39168.7986616534, -22470.55239538015, -10407.077822677635, + -545.9348381084375, 6761.3005003701255, 12050.28715608105, + 17554.376914219494, 21656.537086212615, 25291.21723062624, + 28257.845231526077, 28536.956310008594, 26542.799127643633, + 22111.97403903276, 15714.426394904933, 7965.0200648169875, + 1277.241570713875, -4231.267543605106, -8015.431809483655, + -9051.79559196184, -8808.699056711032, -7903.0247931430995, + -7216.976514639547, -7721.651626107497, -9543.719043844907, + -12372.932318794206, -15155.110217250121, -17186.409847973737, + -17696.3279213567, -16088.846547436684, -12778.234071775449, + -8709.68682289952, -4821.481143739233, -1658.777673458696, + -482.13658731300444, -677.8133963189746, -1466.5650172875294, + -2235.479646584359, -1941.9094327829946, 1.9583597818764724, + 3366.1222992835364, 7698.879152198969, 11371.841295812212, + 13689.644067263676, 14164.275413686435, 12615.798112996335, + 10671.058290081472, 10447.7985930865, 14329.153611518657, + 24529.55183832225, 42047.44911343023, 67768.48233336411, + 96922.65542727133, 129000.47865622987, 160901.73463059272, + 182616.55096749892 + ], + "flow:J21:branch32_seg0": [ + 30.366934261793794, 33.42179615441699, 34.57402492026066, + 33.77685647506531, 31.449717325266413, 27.9733026496433, + 23.801219974000638, 19.533975381131864, 15.687570382020164, + 12.099171680813672, 9.12550886096015, 6.501291827422759, + 3.933000093548689, 1.5249589158956058, -1.054933386031143, + -3.589826651164322, -5.994290275212568, -8.2683210079656, + -9.972541984821111, -11.282135556637705, -12.155015088738852, + -12.598903365905073, -12.866006324325879, -12.99986491622471, + -13.083935795845182, -13.12219553798068, -13.014451940665445, + -12.678976214841514, -12.065166417743542, -11.195725228255414, + -10.190775022085454, -9.339352744201388, -8.864221898966772, + -9.025669305226362, -9.978223366068937, -11.671667870758734, + -13.849742856297174, -16.176793830944455, -18.246317610233515, + -19.488478600343782, -19.75720099339497, -18.855079258746933, + -16.86495976212209, -14.035944376477326, -10.926265008892555, + -7.6868606303865255, -4.759950033329211, -2.4611850531552983, + -0.5698365401778506, 0.7701438129322983, 1.8083646173086583, + 2.739544507980556, 3.4983811623784957, 4.212037063627635, + 4.74158945884086, 4.927505164551432, 4.731350678971898, 4.083903060538883, + 3.0526406660465617, 1.8012458883781146, 0.5787752287843336, + -0.5007704983036967, -1.2022305922584458, -1.5207039127832078, + -1.559659884033271, -1.4095429194898563, -1.2732011404740669, + -1.3014374351768248, -1.545954439526361, -1.9864368002853237, + -2.474182640196274, -2.8827652762550073, -3.0492069196850906, + -2.8763627875245654, -2.39875489893792, -1.7350268313645318, + -1.0302132847333552, -0.4494117679816841, -0.14738946859634808, + -0.08674352579217708, -0.2044654489033924, -0.35700018511885573, + -0.36522370788287417, -0.11723397062032624, 0.39981697757423384, + 1.0990140600680849, 1.7770576743322704, 2.2842092890938965, + 2.4418800410934227, 2.26740296919654, 1.9461123408089824, + 1.7947588137107546, 2.2270322103091234, 3.6450686905467435, + 6.292205317256412, 10.315089589118667, 15.153021882199127, + 20.681131987945758, 26.108223317393158, 30.366934261793794 + ], + "pressure:J21:branch32_seg0": [ + 182616.55096749892, 196600.3188856652, 200943.61250514883, + 192666.69222650072, 176268.4335547909, 154968.91960812148, + 130897.65774648856, 104745.28707551511, 84298.84815870026, + 64923.56771565293, 47390.98120712286, 33557.54173104289, + 18398.504615338785, 4336.987003711713, -10073.473541465824, + -25363.21100759878, -38806.67816672484, -51272.34576303642, + -60640.12369063142, -67039.69778769053, -71581.97713341707, + -73624.312890607, -74739.02782809555, -75471.39792145361, + -75838.54159989646, -75926.06952664077, -74986.25322151739, + -72538.02732986868, -68401.55612578864, -63114.84171701488, + -57140.24413840922, -52660.975391941654, -51088.828852609935, + -53125.80710691329, -59972.80526384705, -70891.8644273326, + -84362.1146030666, -97311.9036649219, -108609.235156582, + -114281.20347281473, -113539.15120910606, -106562.79591776205, + -93377.6473993581, -75673.23592611663, -57426.694464224354, + -39168.7986616534, -22470.55239538015, -10407.077822677635, + -545.9348381084375, 6761.3005003701255, 12050.28715608105, + 17554.376914219494, 21656.537086212615, 25291.21723062624, + 28257.845231526077, 28536.956310008594, 26542.799127643633, + 22111.97403903276, 15714.426394904933, 7965.0200648169875, + 1277.241570713875, -4231.267543605106, -8015.431809483655, + -9051.79559196184, -8808.699056711032, -7903.0247931430995, + -7216.976514639547, -7721.651626107497, -9543.719043844907, + -12372.932318794206, -15155.110217250121, -17186.409847973737, + -17696.3279213567, -16088.846547436684, -12778.234071775449, + -8709.68682289952, -4821.481143739233, -1658.777673458696, + -482.13658731300444, -677.8133963189746, -1466.5650172875294, + -2235.479646584359, -1941.9094327829946, 1.9583597818764724, + 3366.1222992835364, 7698.879152198969, 11371.841295812212, + 13689.644067263676, 14164.275413686435, 12615.798112996335, + 10671.058290081472, 10447.7985930865, 14329.153611518657, + 24529.55183832225, 42047.44911343023, 67768.48233336411, + 96922.65542727133, 129000.47865622987, 160901.73463059272, + 182616.55096749892 + ], + "flow:J21:branch101_seg0": [ + 48.45326281125467, 54.08640732306327, 56.70996413198903, + 56.24053223293918, 53.06914147710037, 47.78946352826578, + 41.17275854716891, 34.209480651208096, 27.658752444380596, + 21.586116982511623, 16.44710025836182, 11.905690579875253, + 7.624234166415369, 3.5739851114020595, -0.6613756027963412, + -4.865739314860597, -8.931382643565104, -12.736982847456458, + -15.77489041649876, -18.15306531125452, -19.75910746087232, + -20.67839643943882, -21.212696704303944, -21.484979790812485, + -21.656361472997226, -21.738483401656133, -21.616915024454773, + -21.15555157887815, -20.253961322187276, -18.913195777838155, + -17.31178697471674, -15.845230910001002, -14.896052637830309, + -14.912713445815541, -16.165891756204786, -18.652060337194975, + -22.05205504000703, -25.844027178652006, -29.352807017625388, + -31.7342408675728, -32.596491954652734, -31.56901636353473, + -28.730977371990807, -24.428960149350853, -19.409227668740215, + -14.06793732770542, -9.154497458424883, -5.079208546850205, + -1.7561503674106411, 0.6628167720205969, 2.549208415993004, + 4.127630540693012, 5.453767470249032, 6.681958529794783, + 7.619072741503853, 8.070815343464325, 7.910728392583086, 7.01899336398646, + 5.473834302529025, 3.504184376190168, 1.4727363727971365, + -0.37256867824603757, -1.6745439824025754, -2.371972441371976, + -2.5547758777017644, -2.3828647827141656, -2.163307341641411, + -2.148050800786336, -2.4640580132097494, -3.110121794793965, + -3.894864486155082, -4.6076998855688345, -4.971537687273206, + -4.824217902843912, -4.164374871080261, -3.147255595820533, + -1.9943753835163205, -0.9954390776597599, -0.38486152527671896, + -0.17558921371657601, -0.3002305483613669, -0.5339416267992307, + -0.5993615522117102, -0.2909550627234171, 0.4545407925528548, + 1.5333367223411174, 2.6600254061683772, 3.5672249315006184, + 3.962419609245734, 3.8161938454035877, 3.3501434195867805, + 3.033261107059228, 3.514786154246928, 5.463201208535205, + 9.345402597346968, 15.416033401124176, 23.064062720672254, + 32.013269554023815, 40.91615999718174, 48.45326281125467 + ], + "pressure:J21:branch101_seg0": [ + 182616.55096749892, 196600.3188856652, 200943.61250514883, + 192666.69222650072, 176268.4335547909, 154968.91960812148, + 130897.65774648856, 104745.28707551511, 84298.84815870026, + 64923.56771565293, 47390.98120712286, 33557.54173104289, + 18398.504615338785, 4336.987003711713, -10073.473541465824, + -25363.21100759878, -38806.67816672484, -51272.34576303642, + -60640.12369063142, -67039.69778769053, -71581.97713341707, + -73624.312890607, -74739.02782809555, -75471.39792145361, + -75838.54159989646, -75926.06952664077, -74986.25322151739, + -72538.02732986868, -68401.55612578864, -63114.84171701488, + -57140.24413840922, -52660.975391941654, -51088.828852609935, + -53125.80710691329, -59972.80526384705, -70891.8644273326, + -84362.1146030666, -97311.9036649219, -108609.235156582, + -114281.20347281473, -113539.15120910606, -106562.79591776205, + -93377.6473993581, -75673.23592611663, -57426.694464224354, + -39168.7986616534, -22470.55239538015, -10407.077822677635, + -545.9348381084375, 6761.3005003701255, 12050.28715608105, + 17554.376914219494, 21656.537086212615, 25291.21723062624, + 28257.845231526077, 28536.956310008594, 26542.799127643633, + 22111.97403903276, 15714.426394904933, 7965.0200648169875, + 1277.241570713875, -4231.267543605106, -8015.431809483655, + -9051.79559196184, -8808.699056711032, -7903.0247931430995, + -7216.976514639547, -7721.651626107497, -9543.719043844907, + -12372.932318794206, -15155.110217250121, -17186.409847973737, + -17696.3279213567, -16088.846547436684, -12778.234071775449, + -8709.68682289952, -4821.481143739233, -1658.777673458696, + -482.13658731300444, -677.8133963189746, -1466.5650172875294, + -2235.479646584359, -1941.9094327829946, 1.9583597818764724, + 3366.1222992835364, 7698.879152198969, 11371.841295812212, + 13689.644067263676, 14164.275413686435, 12615.798112996335, + 10671.058290081472, 10447.7985930865, 14329.153611518657, + 24529.55183832225, 42047.44911343023, 67768.48233336411, + 96922.65542727133, 129000.47865622987, 160901.73463059272, + 182616.55096749892 + ], + "flow:branch33_seg0:J22": [ + 109.72992120314544, 123.93519779444435, 131.659976207901, + 132.33209847168797, 126.65586164295496, 115.71460045561504, + 101.1050512615104, 85.11741296577588, 69.50989037390794, + 54.66913770110095, 41.9200678772708, 30.49731091513657, + 19.835782218701496, 9.830947316549922, -0.5138825814892976, + -10.616544378339528, -20.500793152257376, -29.799086310429534, + -37.283389065885885, -43.244028078200074, -47.38566989332488, + -49.79833858013784, -51.203778179334144, -51.87061027373483, + -52.19266348772973, -52.274815931692025, -51.87605137353129, + -50.72817803502526, -48.592849231748495, -45.46245365513182, + -41.66977200939925, -38.11055573998472, -35.60892877658291, + -35.20923258658187, -37.59487175169011, -42.85356003139838, + -50.27469841962879, -58.87191969616072, -67.01123926963923, + -72.79651373292307, -75.25964368670044, -73.47571687609725, + -67.45223334989676, -57.958697116103195, -46.66659824853161, + -34.40998298103333, -22.855197900185054, -13.139620796301674, + -5.04386364803652, 0.9707301371526381, 5.617814713808589, + 9.517242053095448, 12.683754583919088, 15.56317294589328, + 17.78763143495093, 18.92328195346397, 18.716196872577832, + 16.87074263640798, 13.499575864165294, 9.108568274615072, + 4.428698977253976, 0.04482091501308287, -3.1668110583055222, + -5.067349387596607, -5.778187749672612, -5.594542233160925, + -5.189539406039685, -5.141869369868269, -5.77458503389107, + -7.1322482770090225, -8.832154407836603, -10.43531869315615, + -11.345594205622678, -11.141996601954474, -9.804304657092016, + -7.612783779487673, -5.053026427531005, -2.7196837827082083, + -1.2012543297404443, -0.5484382848892324, -0.66297559723805, + -1.1005339702640242, -1.248299374130304, -0.6362849216597569, + 0.9299970263391742, 3.2562443172421283, 5.7795680054841485, + 7.910135533308463, 8.955259568846659, 8.811185505307572, 7.90441906705084, + 7.204847938033832, 8.136550115965967, 12.185414845359027, + 20.530859392562984, 33.817311394770925, 50.8262419165326, + 70.9729530529429, 91.74675973975747, 109.72992120314544 + ], + "pressure:branch33_seg0:J22": [ + 175734.34770948224, 193960.67858331883, 202949.6646734555, + 199902.94644595406, 187852.0480717702, 169128.74491564155, + 145986.64487082083, 120403.7990118848, 97519.26352372004, + 75985.63620312263, 56995.845100628045, 40779.71011150707, + 24614.89954163625, 9451.283708023639, -6126.687118735516, + -21628.583141414038, -36255.15146634269, -50102.81050803467, + -60544.06106454288, -68355.18870417301, -73962.43889620446, + -76770.59288992024, -78369.54987440522, -79155.42370530654, + -79425.53224228897, -79425.74396162093, -78512.63660996704, + -76269.69936748204, -72427.98901073575, -67276.43246491815, + -61228.59573403091, -56111.454096078596, -53295.50139768855, + -53839.65454657612, -58986.503719482076, -68454.5049900506, + -80746.3887124333, -93906.30235105456, -105825.69581453111, + -113094.39743874353, -114586.48643442118, -109715.9690679729, + -98426.24964464488, -82049.21997414058, -64432.09620828253, + -46014.87783398018, -28490.00827458385, -15106.551187326244, + -3860.5869225789847, 4518.206226933814, 10600.215502189816, + 16496.34732942347, 20968.6137241203, 24862.264847091, 28066.4785917094, + 29063.257926415663, 27891.397458881584, 24293.276051234072, + 18495.992443618685, 11285.416099087617, 4236.015642681616, + -1961.423207476813, -6323.948383491446, -8382.737444473529, + -8888.291561282487, -8336.318186262872, -7687.886454592248, + -7899.736281432919, -9277.490144484946, -11724.835148446418, + -14352.95338314931, -16532.39367162207, -17523.60180280404, + -16563.700791976036, -13907.573304986076, -10219.32751133064, + -6381.583263747779, -2961.516656096637, -1171.608929916863, + -760.1725395407846, -1175.2290618830268, -1873.0387099135246, + -1841.801609249967, -435.15085936052213, 2420.052391199272, + 6308.767965942845, 10090.493936727747, 12901.180527700644, + 13926.946361936893, 13063.836049534932, 11420.436380259995, + 10794.25618507035, 13436.152869120864, 21575.090226640943, + 36622.83203850532, 59789.08069761541, 87216.639356093, 118134.91464625044, + 150928.52323161685, 175734.34770948224 + ], + "flow:J22:branch34_seg0": [ + 46.164270702022925, 52.353693366654454, 55.828065709688666, + 56.34179879009608, 54.12711276974631, 49.62132486242529, + 43.502293317454935, 36.75260170090374, 30.076733609257346, + 23.72712583513754, 18.251006792034477, 13.331020373674535, + 8.775580415308756, 4.495763914979792, 0.09021183861991536, + -4.21017777090699, -8.438854084022909, -12.416332521186929, + -15.652249858608306, -18.247462991981468, -20.05957369671858, + -21.137302300167747, -21.767707116346443, -22.06994671870583, + -22.218271345728294, -22.260509561809577, -22.105207738495434, + -21.640265938852377, -20.761359622222074, -19.45559109754628, + -17.85952038013697, -16.333910862483453, -15.229322009705834, + -14.994990253534896, -15.925666246543916, -18.07770825994092, + -21.17158224392491, -24.807093226021493, -28.284533094487326, + -30.820519518566865, -31.975834799767338, -31.338696088259034, + -28.898895033169808, -24.963587440491935, -20.209089735434407, + -15.009599334681756, -10.07933683111365, -5.885751182633816, + -2.3865681860308254, 0.22718245574551305, 2.251436039670723, + 3.929523449216354, 5.298345347322685, 6.538906662904225, + 7.5025581621468405, 8.022335847437724, 7.977720314196838, + 7.240745797056728, 5.8502103100152265, 4.014149229076571, + 2.0253906418628804, 0.14662427246323245, -1.251087899642621, + -2.1035892996953924, -2.4405260874462353, -2.38563367919153, + -2.2195888979888294, -2.1877054086734544, -2.4360757791014707, + -2.9926268419288964, -3.7070823725737574, -4.3953076544427505, + -4.803445321963146, -4.750786310367105, -4.216467987894383, + -3.3083829608239887, -2.227012436274914, -1.227671783541218, + -0.5558647081812476, -0.24990107886968038, -0.27812950204964293, + -0.4565575369378469, -0.5292178389047415, -0.29278835781691914, + 0.3459366766850315, 1.3131466163957772, 2.3845872407527526, + 3.3063140797636015, 3.7817783398960705, 3.756898056904476, + 3.391440469823125, 3.0823789616463526, 3.424694694238198, + 5.049440160950401, 8.471372056712557, 13.973205170279535, + 21.10087770641458, 29.60046698268371, 38.41172795517311, + 46.164270702022925 + ], + "pressure:J22:branch34_seg0": [ + 175734.34770948224, 193960.67858331883, 202949.6646734555, + 199902.94644595406, 187852.0480717702, 169128.74491564155, + 145986.64487082083, 120403.7990118848, 97519.26352372004, + 75985.63620312263, 56995.845100628045, 40779.71011150707, + 24614.89954163625, 9451.283708023639, -6126.687118735516, + -21628.583141414038, -36255.15146634269, -50102.81050803467, + -60544.06106454288, -68355.18870417301, -73962.43889620446, + -76770.59288992024, -78369.54987440522, -79155.42370530654, + -79425.53224228897, -79425.74396162093, -78512.63660996704, + -76269.69936748204, -72427.98901073575, -67276.43246491815, + -61228.59573403091, -56111.454096078596, -53295.50139768855, + -53839.65454657612, -58986.503719482076, -68454.5049900506, + -80746.3887124333, -93906.30235105456, -105825.69581453111, + -113094.39743874353, -114586.48643442118, -109715.9690679729, + -98426.24964464488, -82049.21997414058, -64432.09620828253, + -46014.87783398018, -28490.00827458385, -15106.551187326244, + -3860.5869225789847, 4518.206226933814, 10600.215502189816, + 16496.34732942347, 20968.6137241203, 24862.264847091, 28066.4785917094, + 29063.257926415663, 27891.397458881584, 24293.276051234072, + 18495.992443618685, 11285.416099087617, 4236.015642681616, + -1961.423207476813, -6323.948383491446, -8382.737444473529, + -8888.291561282487, -8336.318186262872, -7687.886454592248, + -7899.736281432919, -9277.490144484946, -11724.835148446418, + -14352.95338314931, -16532.39367162207, -17523.60180280404, + -16563.700791976036, -13907.573304986076, -10219.32751133064, + -6381.583263747779, -2961.516656096637, -1171.608929916863, + -760.1725395407846, -1175.2290618830268, -1873.0387099135246, + -1841.801609249967, -435.15085936052213, 2420.052391199272, + 6308.767965942845, 10090.493936727747, 12901.180527700644, + 13926.946361936893, 13063.836049534932, 11420.436380259995, + 10794.25618507035, 13436.152869120864, 21575.090226640943, + 36622.83203850532, 59789.08069761541, 87216.639356093, 118134.91464625044, + 150928.52323161685, 175734.34770948224 + ], + "flow:J22:branch81_seg0": [ + 37.76643251840542, 42.69110085676951, 45.38558403526863, + 45.667379545309245, 43.73527006228493, 39.98487035308629, + 34.97179675487911, 29.442576288737396, 24.05963277773533, + 18.950665039362203, 14.524965429516461, 10.577196503474077, + 6.900414717099882, 3.4388365733361486, -0.11350194088490934, + -3.614106016547075, -7.0414182338880655, -10.228305203326176, + -12.83623129605195, -14.906888520986433, -16.336237867156225, + -17.183515347642896, -17.668150788861183, -17.898658228055062, + -18.012372753778966, -18.038632608337583, -17.902456258797645, + -17.509928307677317, -16.776136226827333, -15.700380976431788, + -14.394683870151175, -13.163451759729245, -12.294643309891224, + -12.145419010740573, -12.950562853381768, -14.744107050703875, + -17.302057254010567, -20.25913699241014, -23.06431709027187, + -25.081484547964145, -25.944811398369097, -25.350759352521493, + -23.294244428644017, -20.048037441505063, -16.14682833735628, + -11.91408216212637, -7.937908558466658, -4.5635839597602255, + -1.7713606312505825, 0.30996354479845606, 1.9264524964456038, + 3.2661679748104646, 4.359082453855877, 5.353835566677823, + 6.122747206876065, 6.52089460106656, 6.45532049498736, 5.826228886066829, + 4.674728544633098, 3.161116401228435, 1.5490404331123737, + 0.043337267511575885, -1.0783839802076876, -1.7433790700127005, + -1.9902989384612295, -1.931826416367346, -1.7928199186151461, + -1.7722266884114597, -1.9859925684215094, -2.4487436438003334, + -3.0352439188500204, -3.5915602860075517, -3.907434291195567, + -3.844599934274963, -3.3889243243642544, -2.635874097510851, + -1.752971334515564, -0.9474661376558519, -0.4194434222191049, + -0.18962713641810905, -0.22678529155574204, -0.37584852190893253, + -0.4292694977971232, -0.22309350659987345, 0.3103024814008967, + 1.1099254152228129, 1.9797010383461686, 2.713020764495232, + 3.0837189511050362, 3.0426488541466026, 2.732578697992606, + 2.487347897017836, 2.797349614316813, 4.173977166167253, + 7.031733855705122, 11.5736658984147, 17.429612030707162, + 24.393452369466168, 31.530396126310684, 37.76643251840542 + ], + "pressure:J22:branch81_seg0": [ + 175734.34770948224, 193960.67858331883, 202949.6646734555, + 199902.94644595406, 187852.0480717702, 169128.74491564155, + 145986.64487082083, 120403.7990118848, 97519.26352372004, + 75985.63620312263, 56995.845100628045, 40779.71011150707, + 24614.89954163625, 9451.283708023639, -6126.687118735516, + -21628.583141414038, -36255.15146634269, -50102.81050803467, + -60544.06106454288, -68355.18870417301, -73962.43889620446, + -76770.59288992024, -78369.54987440522, -79155.42370530654, + -79425.53224228897, -79425.74396162093, -78512.63660996704, + -76269.69936748204, -72427.98901073575, -67276.43246491815, + -61228.59573403091, -56111.454096078596, -53295.50139768855, + -53839.65454657612, -58986.503719482076, -68454.5049900506, + -80746.3887124333, -93906.30235105456, -105825.69581453111, + -113094.39743874353, -114586.48643442118, -109715.9690679729, + -98426.24964464488, -82049.21997414058, -64432.09620828253, + -46014.87783398018, -28490.00827458385, -15106.551187326244, + -3860.5869225789847, 4518.206226933814, 10600.215502189816, + 16496.34732942347, 20968.6137241203, 24862.264847091, 28066.4785917094, + 29063.257926415663, 27891.397458881584, 24293.276051234072, + 18495.992443618685, 11285.416099087617, 4236.015642681616, + -1961.423207476813, -6323.948383491446, -8382.737444473529, + -8888.291561282487, -8336.318186262872, -7687.886454592248, + -7899.736281432919, -9277.490144484946, -11724.835148446418, + -14352.95338314931, -16532.39367162207, -17523.60180280404, + -16563.700791976036, -13907.573304986076, -10219.32751133064, + -6381.583263747779, -2961.516656096637, -1171.608929916863, + -760.1725395407846, -1175.2290618830268, -1873.0387099135246, + -1841.801609249967, -435.15085936052213, 2420.052391199272, + 6308.767965942845, 10090.493936727747, 12901.180527700644, + 13926.946361936893, 13063.836049534932, 11420.436380259995, + 10794.25618507035, 13436.152869120864, 21575.090226640943, + 36622.83203850532, 59789.08069761541, 87216.639356093, 118134.91464625044, + 150928.52323161685, 175734.34770948224 + ], + "flow:J22:branch117_seg0": [ + 25.79921798271755, 28.890403571019483, 30.44632646294234, + 30.32292013628083, 28.79347881092287, 26.108405240101657, + 22.630961189175476, 18.92223497613408, 15.373523986915561, + 11.991346826603769, 9.144095655722484, 6.589094037988649, + 4.159787086293205, 1.8963468282337466, -0.49059247922540755, + -2.7922605908886617, -5.020520834347612, -7.154448585919446, + -8.794907911225573, -10.089676565233216, -10.989858329452186, + -11.477520932320806, -11.76792027412708, -11.902005326973306, + -11.962019388226699, -11.975673761544181, -11.868387376236306, + -11.577983788495116, -11.055353382697556, -10.306481581153408, + -9.415567759108976, -8.613193117772344, -8.084963456983926, + -8.06882332230513, -8.718642651766919, -10.031744720753434, + -11.801058921693073, -13.805689477728812, -15.662389084879742, + -16.894509666391933, -17.338997488562978, -16.78626143531625, + -15.259093888083292, -12.94707223410616, -10.31068017574088, + -7.4863014842251365, -4.83795251060476, -2.6902856539076345, + -0.8859348307551339, 0.43358413660867484, 1.4399261776922316, + 2.321550629068635, 3.0263267827405325, 3.670430716311261, + 4.16232606592809, 4.3800515049596225, 4.283156063393939, + 3.803767953284429, 2.974637009517008, 1.933302644309915, + 0.8542679022786345, -0.14514062496161806, -0.8373391784554481, + -1.2203810178883685, -1.3473627237652936, -1.2770821376021384, + -1.1771305894356505, -1.1819372727831734, -1.3525166863680969, + -1.6908777912798345, -2.0898281164127983, -2.4484507527056767, + -2.6347145924640714, -2.546610357312465, -2.198912344833436, + -1.6685267211527732, -1.073042656740539, -0.5445458615111461, + -0.22594619934009139, -0.10891006960149731, -0.15806080363266578, + -0.2681279114172504, -0.28981203742842393, -0.12040305724295981, + 0.2737578682532447, 0.8331722856235608, 1.4152797263852492, + 1.8908006890496256, 2.0897622778456104, 2.0116385942564183, + 1.7803998992350947, 1.635121079369549, 1.9145058074109709, + 2.9619975182413794, 5.027753480145338, 8.270440326076322, + 12.295752179411442, 16.979033700793106, 21.804635658273273, + 25.79921798271755 + ], + "pressure:J22:branch117_seg0": [ + 175734.34770948224, 193960.67858331883, 202949.6646734555, + 199902.94644595406, 187852.0480717702, 169128.74491564155, + 145986.64487082083, 120403.7990118848, 97519.26352372004, + 75985.63620312263, 56995.845100628045, 40779.71011150707, + 24614.89954163625, 9451.283708023639, -6126.687118735516, + -21628.583141414038, -36255.15146634269, -50102.81050803467, + -60544.06106454288, -68355.18870417301, -73962.43889620446, + -76770.59288992024, -78369.54987440522, -79155.42370530654, + -79425.53224228897, -79425.74396162093, -78512.63660996704, + -76269.69936748204, -72427.98901073575, -67276.43246491815, + -61228.59573403091, -56111.454096078596, -53295.50139768855, + -53839.65454657612, -58986.503719482076, -68454.5049900506, + -80746.3887124333, -93906.30235105456, -105825.69581453111, + -113094.39743874353, -114586.48643442118, -109715.9690679729, + -98426.24964464488, -82049.21997414058, -64432.09620828253, + -46014.87783398018, -28490.00827458385, -15106.551187326244, + -3860.5869225789847, 4518.206226933814, 10600.215502189816, + 16496.34732942347, 20968.6137241203, 24862.264847091, 28066.4785917094, + 29063.257926415663, 27891.397458881584, 24293.276051234072, + 18495.992443618685, 11285.416099087617, 4236.015642681616, + -1961.423207476813, -6323.948383491446, -8382.737444473529, + -8888.291561282487, -8336.318186262872, -7687.886454592248, + -7899.736281432919, -9277.490144484946, -11724.835148446418, + -14352.95338314931, -16532.39367162207, -17523.60180280404, + -16563.700791976036, -13907.573304986076, -10219.32751133064, + -6381.583263747779, -2961.516656096637, -1171.608929916863, + -760.1725395407846, -1175.2290618830268, -1873.0387099135246, + -1841.801609249967, -435.15085936052213, 2420.052391199272, + 6308.767965942845, 10090.493936727747, 12901.180527700644, + 13926.946361936893, 13063.836049534932, 11420.436380259995, + 10794.25618507035, 13436.152869120864, 21575.090226640943, + 36622.83203850532, 59789.08069761541, 87216.639356093, 118134.91464625044, + 150928.52323161685, 175734.34770948224 + ], + "flow:branch34_seg0:J23": [ + 46.15817553367678, 52.35041836533066, 55.82711053721097, + 56.34340400519804, 54.131551664681425, 49.62688925614951, + 43.50747974304584, 36.759871849199655, 30.082120616060607, + 23.73077011405831, 18.255569040393762, 13.334401416523274, + 8.77899625712196, 4.499458124507272, 0.09270880834927106, + -4.20658816715029, -8.435057391551446, -12.414298842178955, + -15.649903694999146, -18.245836463272006, -20.05872352888312, + -21.136554236179972, -21.767482199873445, -22.06982681819929, + -22.21814389691026, -22.26059022230098, -22.105555402084665, + -21.641000603444805, -20.76261971388512, -19.457018798360693, + -17.86103808427796, -16.33503787235929, -15.229446321808936, + -14.99419553224123, -15.923950988026652, -18.07540336186723, + -21.168221243893715, -24.804342664676263, -28.282551006040922, + -30.819300862931915, -31.976516087321446, -31.34062455843369, + -28.90206628779217, -24.967153081634354, -20.21351755540342, + -15.014083215980614, -10.083057537733776, -5.889184156585378, + -2.3888656712518186, 0.22531587586519092, 2.2497311575385424, + 3.928040729470121, 5.29721192413935, 6.53809557103985, 7.501899245802555, + 8.022290516002375, 7.978393358812238, 7.242002537084987, + 5.851630893339203, 4.016153923715955, 2.026995444073834, + 0.14728288185394728, -1.2502502514751646, -2.1032588852535232, + -2.440695643852692, -2.3857733718747456, -2.2196289324136558, + -2.1875505340519594, -2.4356298246352424, -2.9920534201675246, + -3.706460764749083, -4.394832527648574, -4.803422874642655, + -4.751175747065896, -4.217287439348543, -3.309435750363622, + -2.227978833224435, -1.2284506613236428, -0.5561671320883125, + -0.24980854772784084, -0.2779062936006587, -0.4564731525723705, + -0.5293969732734066, -0.29334412707345864, 0.34517898647475503, + 1.3121208148404342, 2.383777498160682, 3.306172519644602, + 3.7817516270318454, 3.7571712220556215, 3.3917750910568087, + 3.082268501782455, 3.423551672466825, 5.046828533889526, + 8.466855863762259, 13.967435061565697, 21.09375257556223, + 29.591769800113724, 38.40391483386206, 46.15817553367678 + ], + "pressure:branch34_seg0:J23": [ + 175073.45046226247, 193464.76891667978, 202612.81431302158, + 199792.72470031868, 187949.08744056785, 169366.00445312573, + 146304.76775823013, 120816.13774657164, 97884.82764286468, + 76318.21463818678, 57323.908884048, 41052.42909845465, 24901.77859599509, + 9740.13477279741, -5838.523378834657, -21307.948436066952, + -35951.07115503002, -49814.387402037726, -60283.681176919046, + -68154.5151465285, -73798.22177259813, -76645.28995445407, + -78274.0896773103, -79070.59986142218, -79350.48477745253, + -79359.35863786512, -78463.74525970755, -76250.48039089712, + -72445.56607103982, -67321.6228146377, -61293.75187687801, + -56163.453031589044, -53295.65357378062, -53770.684874135746, + -58829.33267884947, -68209.49567727445, -80430.34701045114, + -93582.52090865835, -105517.1104688854, -112863.75009117305, + -114476.75762831692, -109726.21528664911, -98558.03779931275, + -82286.68606653203, -64725.92324190695, -46318.649984957214, + -28794.86251148291, -15363.007071953603, -4064.7238593678585, + 4346.4235933374885, 10467.34553913159, 16369.002500731654, + 20854.267188023463, 24766.957049657743, 27982.402467370455, + 29019.50385988773, 27896.75872089806, 24348.455736178745, + 18592.52081554713, 11421.117912643918, 4367.0671570022205, + -1851.4912965074373, -6235.649550758077, -8339.091350671915, + -8875.521251479093, -8337.856184148919, -7690.790492741264, + -7887.244815949139, -9241.743492819403, -11668.406136205671, + -14289.29454663249, -16479.180164628015, -17493.173628246048, + -16568.507002496386, -13949.085184082498, -10284.44749563031, + -6450.3876279368515, -3023.840054947542, -1206.8316031457493, + -765.0778114201506, -1164.24318966209, -1860.4538277342112, + -1843.8358815805957, -465.81624320553817, 2361.5639932143445, + 6226.0253102623155, 10011.08008450296, 12844.060164311795, + 13897.816059242603, 13069.76624898455, 11440.737094412816, + 10791.258744683211, 13363.852191200853, 21388.226875519973, + 36292.61519314789, 59292.20356957474, 86593.97849252264, + 117436.6299621526, 150175.1800082715, 175073.45046226247 + ], + "flow:J23:branch35_seg0": [ + 27.304708222527246, 31.13106213597581, 33.36816794953887, + 33.85857191699821, 32.68527053209216, 30.101338985959522, + 26.51203452848594, 22.49260438666826, 18.462793753853145, + 14.629450276170449, 11.29161421340619, 8.293465258024542, + 5.542770215986682, 2.9535337901147054, 0.31358711805097905, + -2.2739269110692995, -4.831286754744151, -7.228194047822214, + -9.217433479103331, -10.822893063010579, -11.951542854343145, + -12.64371026379398, -13.048564039124393, -13.246728635653419, + -13.346400776627389, -13.377945466885977, -13.296968260030505, + -13.037416477381475, -12.534092167928323, -11.773145868649683, + -10.83054959916308, -9.906836147458279, -9.213790206644749, + -9.021222973529516, -9.510721060417355, -10.731453320308173, + -12.539723781434972, -14.701099751736404, -16.800606439111395, + -18.38762284702035, -19.16847802192369, -18.888979953343167, + -17.52717471465079, -15.252675739629973, -12.435788896598822, + -9.325110461370818, -6.352336299389201, -3.780211969010114, + -1.634701520782638, -0.016911380866002378, 1.2399404438383759, + 2.2642285209575905, 3.1044750326878514, 3.861438844282872, + 4.455179431510344, 4.796615469777293, 4.804283633103534, + 4.4008752627275305, 3.6028913452711655, 2.5245247661911234, + 1.3334544989977297, 0.19712522921176412, -0.6716139352991647, + -1.219912183489385, -1.4503523576075963, -1.4381051181527804, + -1.344179830756093, -1.315646711007968, -1.447894866122074, + -1.7643914695656462, -2.186265545255499, -2.604509963159615, + -2.866188120263121, -2.8626139416722616, -2.5700396417702622, + -2.0445596067071894, -1.401864982768906, -0.7961520905738814, + -0.37178412393732274, -0.16511911703621004, -0.16456424750758072, + -0.2643181906883917, -0.3154322741555315, -0.1926206067878332, + 0.16780801389031155, 0.7307170679800846, 1.3716779349295192, + 1.935790004502029, 2.24829517030394, 2.2639459543852243, + 2.0619214955020224, 1.868394378060727, 2.0315050032017576, + 2.9288964359227463, 4.880798454591589, 8.06032493409384, + 12.25388138529521, 17.303109811826122, 22.568639923472137, + 27.304708222527246 + ], + "pressure:J23:branch35_seg0": [ + 175073.45046226247, 193464.76891667978, 202612.81431302158, + 199792.72470031868, 187949.08744056785, 169366.00445312573, + 146304.76775823013, 120816.13774657164, 97884.82764286468, + 76318.21463818678, 57323.908884048, 41052.42909845465, 24901.77859599509, + 9740.13477279741, -5838.523378834657, -21307.948436066952, + -35951.07115503002, -49814.387402037726, -60283.681176919046, + -68154.5151465285, -73798.22177259813, -76645.28995445407, + -78274.0896773103, -79070.59986142218, -79350.48477745253, + -79359.35863786512, -78463.74525970755, -76250.48039089712, + -72445.56607103982, -67321.6228146377, -61293.75187687801, + -56163.453031589044, -53295.65357378062, -53770.684874135746, + -58829.33267884947, -68209.49567727445, -80430.34701045114, + -93582.52090865835, -105517.1104688854, -112863.75009117305, + -114476.75762831692, -109726.21528664911, -98558.03779931275, + -82286.68606653203, -64725.92324190695, -46318.649984957214, + -28794.86251148291, -15363.007071953603, -4064.7238593678585, + 4346.4235933374885, 10467.34553913159, 16369.002500731654, + 20854.267188023463, 24766.957049657743, 27982.402467370455, + 29019.50385988773, 27896.75872089806, 24348.455736178745, + 18592.52081554713, 11421.117912643918, 4367.0671570022205, + -1851.4912965074373, -6235.649550758077, -8339.091350671915, + -8875.521251479093, -8337.856184148919, -7690.790492741264, + -7887.244815949139, -9241.743492819403, -11668.406136205671, + -14289.29454663249, -16479.180164628015, -17493.173628246048, + -16568.507002496386, -13949.085184082498, -10284.44749563031, + -6450.3876279368515, -3023.840054947542, -1206.8316031457493, + -765.0778114201506, -1164.24318966209, -1860.4538277342112, + -1843.8358815805957, -465.81624320553817, 2361.5639932143445, + 6226.0253102623155, 10011.08008450296, 12844.060164311795, + 13897.816059242603, 13069.76624898455, 11440.737094412816, + 10791.258744683211, 13363.852191200853, 21388.226875519973, + 36292.61519314789, 59292.20356957474, 86593.97849252264, + 117436.6299621526, 150175.1800082715, 175073.45046226247 + ], + "flow:J23:branch103_seg0": [ + 18.853467311149373, 21.219356229355107, 22.458942587671668, + 22.484832088200047, 21.446281132590048, 19.525550270188997, + 16.995445214559975, 14.267267462531052, 11.619326862207027, + 9.101319837887855, 6.963954826985704, 5.0409361584991155, + 3.2362260411367108, 1.5459243343947038, -0.22087830970174951, + -1.9326612560808096, -3.6037706368055105, -5.1861047943554395, + -6.432470215896217, -7.422943400262289, -8.107180674540732, + -8.492843972385762, -8.718918160747581, -8.823098182544411, + -8.871743120282753, -8.882644755414415, -8.808587142054078, + -8.603584126063327, -8.228527545956865, -7.683872929711325, + -7.0304884851153355, -6.4282017249011085, -6.015656115164937, + -5.972972558712101, -6.4132299276098435, -7.343950041559342, + -8.628497462458876, -10.103242912939537, -11.481944566929549, + -12.431678015910839, -12.808038065397767, -12.451644605090467, + -11.374891573141225, -9.714477342004432, -7.777728658804562, + -5.6889727546098126, -3.7307212383445623, -2.1089721875752554, + -0.7541641504691877, 0.24222725673119727, 1.009790713700173, + 1.6638122085125298, 2.1927368914514984, 2.676656726756982, + 3.0467198142921856, 3.2256750462251156, 3.174109725708763, + 2.841127274357429, 2.2487395480681225, 1.491629157524779, + 0.6935409450762045, -0.049842347357770087, -0.5786363161759831, + -0.8833467017641383, -0.9903432862451607, -0.9476682537219926, + -0.8754491016576594, -0.8719038230440319, -0.9877349585131201, + -1.2276619506018243, -1.5201952194936275, -1.7903225644889065, + -1.9372347543795518, -1.8885618053936353, -1.6472477975783155, + -1.2648761436564455, -0.8261138504555381, -0.43229857074975603, + -0.18438300815098527, -0.0846894306916218, -0.11334204609309241, + -0.1921549618839757, -0.21396469911786528, -0.10072352028561392, + 0.17737097258444195, 0.5814037468603483, 1.0120995632311571, + 1.3703825151425548, 1.5334564567279059, 1.4932252676703914, + 1.3298535955547581, 1.2138741237217376, 1.3920466692650557, + 2.1179320979667726, 3.586057409170701, 5.90711012747178, 8.83987119026716, + 12.28865998828773, 15.835274910389806, 18.853467311149373 + ], + "pressure:J23:branch103_seg0": [ + 175073.45046226247, 193464.76891667978, 202612.81431302158, + 199792.72470031868, 187949.08744056785, 169366.00445312573, + 146304.76775823013, 120816.13774657164, 97884.82764286468, + 76318.21463818678, 57323.908884048, 41052.42909845465, 24901.77859599509, + 9740.13477279741, -5838.523378834657, -21307.948436066952, + -35951.07115503002, -49814.387402037726, -60283.681176919046, + -68154.5151465285, -73798.22177259813, -76645.28995445407, + -78274.0896773103, -79070.59986142218, -79350.48477745253, + -79359.35863786512, -78463.74525970755, -76250.48039089712, + -72445.56607103982, -67321.6228146377, -61293.75187687801, + -56163.453031589044, -53295.65357378062, -53770.684874135746, + -58829.33267884947, -68209.49567727445, -80430.34701045114, + -93582.52090865835, -105517.1104688854, -112863.75009117305, + -114476.75762831692, -109726.21528664911, -98558.03779931275, + -82286.68606653203, -64725.92324190695, -46318.649984957214, + -28794.86251148291, -15363.007071953603, -4064.7238593678585, + 4346.4235933374885, 10467.34553913159, 16369.002500731654, + 20854.267188023463, 24766.957049657743, 27982.402467370455, + 29019.50385988773, 27896.75872089806, 24348.455736178745, + 18592.52081554713, 11421.117912643918, 4367.0671570022205, + -1851.4912965074373, -6235.649550758077, -8339.091350671915, + -8875.521251479093, -8337.856184148919, -7690.790492741264, + -7887.244815949139, -9241.743492819403, -11668.406136205671, + -14289.29454663249, -16479.180164628015, -17493.173628246048, + -16568.507002496386, -13949.085184082498, -10284.44749563031, + -6450.3876279368515, -3023.840054947542, -1206.8316031457493, + -765.0778114201506, -1164.24318966209, -1860.4538277342112, + -1843.8358815805957, -465.81624320553817, 2361.5639932143445, + 6226.0253102623155, 10011.08008450296, 12844.060164311795, + 13897.816059242603, 13069.76624898455, 11440.737094412816, + 10791.258744683211, 13363.852191200853, 21388.226875519973, + 36292.61519314789, 59292.20356957474, 86593.97849252264, + 117436.6299621526, 150175.1800082715, 175073.45046226247 + ], + "flow:branch37_seg0:J24": [ + 92.91668341947934, 105.1271886248399, 111.88348692195004, + 112.67691566727518, 108.02505305665179, 98.84333299883286, + 86.51313508885698, 72.89995045560933, 59.599171055563254, + 46.949034982772844, 35.99326653644003, 26.22240795415822, + 17.11202972440056, 8.572829551544377, -0.2006583322012855, + -8.82192228183097, -17.234040182267528, -25.123944360838454, + -31.554102498314965, -36.67945547505448, -40.243004841865584, + -42.35659189024747, -43.57884811492968, -44.16353822702827, + -44.447548372247304, -44.51419523113634, -44.180577062222994, + -43.21755192075175, -41.42221058459361, -38.78092054812325, + -35.57584257654515, -32.53911258401156, -30.386716662923796, + -29.993543879036665, -31.946014121790267, -36.33139907702176, + -42.599959544210385, -49.8657541822006, -56.79874988624618, + -61.79222114104042, -63.98504195321134, -62.5899132768774, + -57.606943763886754, -49.652864913292326, -40.08504927642077, + -29.661143112913397, -19.82062387623139, -11.463077985632191, + -4.514587430483867, 0.6759684483835452, 4.702160165092413, + 8.035246523877962, 10.754181336346475, 13.21152106050452, + 15.11363552213871, 16.10332387354989, 15.956166396200238, + 14.421787656309322, 11.597336333059488, 7.87791075624783, + 3.9071921110712466, 0.17702422147183852, -2.6016542333334294, + -4.264494428168309, -4.905193262999439, -4.7821755765610146, + -4.449818017665897, -4.399132998209128, -4.913553705657982, + -6.04042874719938, -7.4723882036438125, -8.838779141031093, + -9.627084607725118, -9.489016571016052, -8.385477881580131, + -6.548290427905702, -4.378034655633308, -2.3900802052980405, + -1.0709409377503978, -0.4861463519231714, -0.5586531340747855, + -0.9154032380830709, -1.0452213430840067, -0.5434012301702092, + 0.7585089098694855, 2.716806103468711, 4.851080862152086, + 6.665769908361843, 7.588439245660992, 7.50704220634593, 6.763506932649503, + 6.171433014002654, 6.925229714305192, 10.290215040571189, + 17.266086689833628, 28.411698033262176, 42.776129899272185, + 59.888064357076274, 77.49328352000721, 92.91668341947934 + ], + "pressure:branch37_seg0:J24": [ + 176666.1194213594, 193589.93308682882, 201756.72807320103, + 197572.91386599338, 184600.81349331656, 165453.70383784032, + 142346.19254029865, 116496.48252603771, 94210.62014201304, + 73260.40360899402, 54409.881294042534, 38736.61590765508, + 22677.99178175796, 7681.411327639267, -7597.806345688747, + -23081.584199498026, -37367.55636835391, -50902.942443979955, + -61061.11845178395, -68418.49868554383, -73783.96371134564, + -76376.24612073254, -77792.92680090987, -78525.54412163816, + -78730.58801502103, -78670.42615584485, -77661.23282360255, + -75272.4847561615, -71276.86259080053, -66062.46923545866, + -60012.260321982496, -55046.50414015267, -52602.77727374778, + -53513.781312962186, -59040.86304069583, -68813.30325784309, + -81293.8641910343, -94217.1573769151, -105855.99391581675, + -112591.36631922584, -113393.17928712137, -107992.14770029689, + -96303.7923660855, -79637.90088888285, -62021.252153396264, + -43881.81292097619, -26547.206864166877, -13588.766127538054, + -2785.280147674854, 5385.056658923246, 11181.94428131157, + 16998.632803756274, 21358.989986143555, 25033.81084138627, + 28143.318451405754, 28890.407920918788, 27443.599424841977, + 23632.70938181227, 17723.57316118582, 10394.57391606331, + 3500.5584846821093, -2448.1657613147363, -6659.534402081987, + -8465.951275859508, -8813.247649048897, -8231.499988256388, + -7603.102933689972, -7897.630919747159, -9370.385887953284, + -11874.137761589833, -14479.367841378042, -16546.115937959956, + -17402.568446077858, -16275.776917412071, -13470.810602896861, + -9727.420104757812, -5950.60127811499, -2615.9112544615523, + -987.3546803142414, -752.5819236777706, -1219.1763826917404, + -1888.8737740768895, -1767.0781642885038, -221.45727226563758, + 2724.068403160029, 6676.445791265133, 10354.836049039683, + 12971.20823591052, 13840.768055331093, 12828.002028495603, + 11161.707909392928, 10717.011069938955, 13727.303554118405, + 22380.086169185877, 37938.356173414366, 61631.59725674065, + 89275.41916991348, 120020.8225075486, 152715.86990047235, + 176666.1194213594 + ], + "flow:J24:branch38_seg0": [ + 39.52056327238514, 44.66317058770733, 47.480009660962814, + 47.76291958252043, 45.739166614686035, 41.80616606763026, + 36.555527591233755, 30.76548451663122, 25.13709427582146, + 19.787832950946417, 15.151540787896735, 11.026805320107279, + 7.17144553689112, 3.558623203920303, -0.1526225138812952, + -3.8089304653567333, -7.367736864141661, -10.699172978460743, + -13.41575360070116, -15.575813547657411, -17.07279828346408, + -17.95958592604041, -18.470159840847845, -18.714362980096475, + -18.83380193969743, -18.8605771733453, -18.716860195693, + -18.304291217224385, -17.53740070436936, -16.41239420699253, + -15.0512089622901, -13.766490528181182, -12.864200711331648, + -12.712860265763894, -13.559847530715444, -15.437209278030167, + -18.112868928384117, -21.19670683726254, -24.13330815974666, + -26.236580971204614, -27.143523584569696, -26.526226725542884, + -24.389643830700958, -20.998215579486118, -16.927320649248497, + -12.500663352348374, -8.333879448027544, -4.797567935784692, + -1.86323757777023, 0.3265012637233394, 2.0275851273960717, + 3.4347802396857494, 4.583952056585488, 5.6233026043928325, + 6.425885834974789, 6.837654951989177, 6.765166113366003, + 6.102906079911846, 4.895950200374884, 3.309514274363422, + 1.6255739049773898, 0.04852832514163683, -1.125197988016346, + -1.821077107999074, -2.084387029610089, -2.0275578155352716, + -1.8854602051558969, -1.8662800809569409, -2.0886772665448183, + -2.5706963525128637, -3.1802458625995302, -3.7591924565488313, + -4.088418739225713, -4.023155629397636, -3.5475281334775284, + -2.762991753917088, -1.8399307171400467, -0.9986751045477082, + -0.44433819070632424, -0.20229100788421345, -0.23780354788840508, + -0.39057463208508675, -0.44347201438386485, -0.2251872283099052, + 0.33271125284607295, 1.1689597269962453, 2.074352341043774, + 2.839611230656247, 3.225136559140234, 3.1833018577541545, + 2.8634673513812654, 2.6149586479623603, 2.946382635991416, + 4.395407232859887, 7.381581765129706, 12.138186888165542, + 18.254893710847075, 25.537318538160317, 32.997884554856064, + 39.52056327238514 + ], + "pressure:J24:branch38_seg0": [ + 176666.1194213594, 193589.93308682882, 201756.72807320103, + 197572.91386599338, 184600.81349331656, 165453.70383784032, + 142346.19254029865, 116496.48252603771, 94210.62014201304, + 73260.40360899402, 54409.881294042534, 38736.61590765508, + 22677.99178175796, 7681.411327639267, -7597.806345688747, + -23081.584199498026, -37367.55636835391, -50902.942443979955, + -61061.11845178395, -68418.49868554383, -73783.96371134564, + -76376.24612073254, -77792.92680090987, -78525.54412163816, + -78730.58801502103, -78670.42615584485, -77661.23282360255, + -75272.4847561615, -71276.86259080053, -66062.46923545866, + -60012.260321982496, -55046.50414015267, -52602.77727374778, + -53513.781312962186, -59040.86304069583, -68813.30325784309, + -81293.8641910343, -94217.1573769151, -105855.99391581675, + -112591.36631922584, -113393.17928712137, -107992.14770029689, + -96303.7923660855, -79637.90088888285, -62021.252153396264, + -43881.81292097619, -26547.206864166877, -13588.766127538054, + -2785.280147674854, 5385.056658923246, 11181.94428131157, + 16998.632803756274, 21358.989986143555, 25033.81084138627, + 28143.318451405754, 28890.407920918788, 27443.599424841977, + 23632.70938181227, 17723.57316118582, 10394.57391606331, + 3500.5584846821093, -2448.1657613147363, -6659.534402081987, + -8465.951275859508, -8813.247649048897, -8231.499988256388, + -7603.102933689972, -7897.630919747159, -9370.385887953284, + -11874.137761589833, -14479.367841378042, -16546.115937959956, + -17402.568446077858, -16275.776917412071, -13470.810602896861, + -9727.420104757812, -5950.60127811499, -2615.9112544615523, + -987.3546803142414, -752.5819236777706, -1219.1763826917404, + -1888.8737740768895, -1767.0781642885038, -221.45727226563758, + 2724.068403160029, 6676.445791265133, 10354.836049039683, + 12971.20823591052, 13840.768055331093, 12828.002028495603, + 11161.707909392928, 10717.011069938955, 13727.303554118405, + 22380.086169185877, 37938.356173414366, 61631.59725674065, + 89275.41916991348, 120020.8225075486, 152715.86990047235, + 176666.1194213594 + ], + "flow:J24:branch102_seg0": [ + 53.3961201470945, 60.46401803713258, 64.40347726098774, 64.91399608475479, + 62.28588644196561, 57.03716693120282, 49.95760749762238, + 42.134465938976966, 34.462076779742425, 27.161202031827898, + 20.841725748541702, 15.195602634052284, 9.94058418750872, + 5.0142063476214656, -0.048035818320274516, -5.012991816475938, + -9.866303318123833, -14.42477138237777, -18.138348897614645, + -21.10364192740007, -23.170206558403443, -24.397005964206762, + -25.10868827408086, -25.449175246933542, -25.613746432549263, + -25.653618057790354, -25.463716866531847, -24.913260703526237, + -23.884809880225394, -22.36852634113081, -20.524633614254583, + -18.77262205582931, -17.52251595159138, -17.280683613271858, + -18.386166591076286, -20.894189798992198, -24.487090615824822, + -28.669047344936857, -32.66544172649916, -35.55564016983631, + -36.841518368640976, -36.0636865513346, -33.21729993318552, + -28.654649333806052, -23.15772862717226, -17.160479760564993, + -11.486744428203858, -6.6655100498475095, -2.6513498527136132, + 0.3494671846602233, 2.6745750376963455, 4.600466284192208, + 6.170229279760984, 7.588218456111659, 8.687749687163905, 9.26566892156074, + 9.191000282834239, 8.318881576397434, 6.701386132684881, + 4.568396481884112, 2.281618206093523, 0.12849589633009667, + -1.4764562453170547, -2.443417320169379, -2.8208062333892805, + -2.7546177610257954, -2.564357812510015, -2.532852917252183, + -2.824876439113152, -3.469732394686429, -4.292142341044185, + -5.079586684482322, -5.538665868499356, -5.465860941618371, + -4.837949748102625, -3.7852986739886187, -2.5381039384933253, + -1.3914051007503134, -0.626602747044079, -0.28385534403896223, + -0.320849586186365, -0.5248286059979874, -0.601749328700166, + -0.31821400186030857, 0.4257976570234014, 1.5478463764724923, + 2.776728521108243, 3.826158677705544, 4.363302686520832, 4.32374034859178, + 3.900039581268292, 3.5564743660402223, 3.978847078313928, + 5.894807807711356, 9.88450492470378, 16.27351114509672, 24.52123618842537, + 34.350745818915144, 44.4953989651512, 53.3961201470945 + ], + "pressure:J24:branch102_seg0": [ + 176666.1194213594, 193589.93308682882, 201756.72807320103, + 197572.91386599338, 184600.81349331656, 165453.70383784032, + 142346.19254029865, 116496.48252603771, 94210.62014201304, + 73260.40360899402, 54409.881294042534, 38736.61590765508, + 22677.99178175796, 7681.411327639267, -7597.806345688747, + -23081.584199498026, -37367.55636835391, -50902.942443979955, + -61061.11845178395, -68418.49868554383, -73783.96371134564, + -76376.24612073254, -77792.92680090987, -78525.54412163816, + -78730.58801502103, -78670.42615584485, -77661.23282360255, + -75272.4847561615, -71276.86259080053, -66062.46923545866, + -60012.260321982496, -55046.50414015267, -52602.77727374778, + -53513.781312962186, -59040.86304069583, -68813.30325784309, + -81293.8641910343, -94217.1573769151, -105855.99391581675, + -112591.36631922584, -113393.17928712137, -107992.14770029689, + -96303.7923660855, -79637.90088888285, -62021.252153396264, + -43881.81292097619, -26547.206864166877, -13588.766127538054, + -2785.280147674854, 5385.056658923246, 11181.94428131157, + 16998.632803756274, 21358.989986143555, 25033.81084138627, + 28143.318451405754, 28890.407920918788, 27443.599424841977, + 23632.70938181227, 17723.57316118582, 10394.57391606331, + 3500.5584846821093, -2448.1657613147363, -6659.534402081987, + -8465.951275859508, -8813.247649048897, -8231.499988256388, + -7603.102933689972, -7897.630919747159, -9370.385887953284, + -11874.137761589833, -14479.367841378042, -16546.115937959956, + -17402.568446077858, -16275.776917412071, -13470.810602896861, + -9727.420104757812, -5950.60127811499, -2615.9112544615523, + -987.3546803142414, -752.5819236777706, -1219.1763826917404, + -1888.8737740768895, -1767.0781642885038, -221.45727226563758, + 2724.068403160029, 6676.445791265133, 10354.836049039683, + 12971.20823591052, 13840.768055331093, 12828.002028495603, + 11161.707909392928, 10717.011069938955, 13727.303554118405, + 22380.086169185877, 37938.356173414366, 61631.59725674065, + 89275.41916991348, 120020.8225075486, 152715.86990047235, + 176666.1194213594 + ], + "flow:branch39_seg0:J25": [ + 114.39426475491987, 128.71539703352494, 136.18586534971465, + 136.33977450600085, 129.9647183870403, 118.3084067239419, + 103.10681756169366, 86.63472955080775, 70.83511138445239, + 55.93169995183019, 43.08346159528652, 31.68990344310496, + 20.95922227531586, 10.877896331636423, 0.4721196847728938, + -9.83538101314121, -19.793341080889558, -29.171457501667764, + -36.785705427021576, -42.855036624136986, -47.111191360274745, + -49.687654747203176, -51.273341860220874, -52.150108912154295, + -52.70039808891447, -52.98835212075611, -52.77483410269972, + -51.76645194030004, -49.731667689678815, -46.65999741484364, + -42.92718028793794, -39.43052893886241, -37.05048593217525, + -36.82789214432226, -39.4577875799387, -44.99157766469588, + -52.76910092654712, -61.62561606941986, -70.03736734356055, + -76.01227623600812, -78.57167374381, -76.77926165346693, + -70.68903813606121, -61.00615704976733, -49.41793020617355, + -36.80866635258565, -24.926551235194342, -14.852017284965573, + -6.4383885361378725, -0.13427532930072417, 4.829537375515027, + 8.982610472896782, 12.42536500520387, 15.559835492132185, + 17.991737368077224, 19.270323682274647, 19.124764578477247, + 17.258655459653667, 13.816659121053222, 9.291617986707216, + 4.512771444631136, 0.05665578642450442, -3.2344535781000845, + -5.14692767207121, -5.851197854875738, -5.667460028258924, + -5.2781156927153425, -5.27553826528042, -5.980991422014178, + -7.435450992437932, -9.235594891995525, -10.92402727289791, + -11.86659961285709, -11.65871840500307, -10.26251094106547, + -7.9945597367010395, -5.33908360835307, -2.9470777561502226, + -1.3925227172489478, -0.73805782819932, -0.8678036887311035, + -1.3086379542231672, -1.4304240036033988, -0.746304941416536, + 0.923667649495687, 3.3869297565943985, 6.0195673272314165, + 8.218851331956877, 9.301778751004893, 9.147384383379963, + 8.217870508750645, 7.5461515209234875, 8.606445034880645, + 12.965550220843816, 21.764495324425383, 35.71271304046969, + 53.48467429589131, 74.54781224646814, 95.92220388111976, + 114.39426475491987 + ], + "pressure:branch39_seg0:J25": [ + 181283.05211140093, 194864.53657498272, 199351.42907566755, + 191081.46876201802, 174840.73965678382, 153854.83363911277, + 130229.06805566336, 104135.64245057054, 84076.7391011975, + 65029.960532604346, 47380.94037638497, 33707.08738527401, + 18455.745989336945, 4365.01423053609, -9924.21257446297, + -25262.983644435095, -38520.17493547139, -50875.692738862235, + -60167.73060868293, -66449.39512152255, -71014.77051287908, + -73087.05286943198, -74237.30538046925, -75040.2551724066, + -75435.12552081826, -75529.9971946793, -74572.90133614284, + -72091.27622902878, -67943.26630939865, -62702.54231246149, + -56812.50860911148, -52445.246482904244, -51064.93433941334, + -53189.6543895645, -60062.66181698763, -70900.68465157127, + -84227.32753095265, -96816.97211541147, -107848.09612048294, + -113247.81329290394, -112302.79692064913, -105341.80054264358, + -92375.37413715078, -74915.08785954097, -57055.557193004366, + -39195.49466636751, -22679.428604912533, -10832.878209228631, + -1068.1500537487925, 6318.504731380643, 11630.933380987519, + 17241.98521887826, 21400.723107606347, 24977.611452147034, + 27976.344053146444, 28205.07191542352, 26175.477059583423, + 21778.772952824005, 15481.228023037334, 7806.414305757194, + 1299.299532848752, -4025.322205627385, -7767.886573962561, + -8760.381737259388, -8548.565918180415, -7747.569877080571, + -7152.269398928631, -7727.923358873465, -9570.983362350222, + -12373.227834667794, -15079.00236609121, -17019.555448188366, + -17481.093096334316, -15855.273031343542, -12568.84396500458, + -8583.238310580478, -4808.527850566029, -1723.8662876060616, + -603.472507742897, -835.8902959638823, -1564.9719495725205, + -2254.568833957394, -1887.672946619836, 106.57994938295012, + 3450.706504033132, 7736.2832958120225, 11288.47669166632, + 13479.642626468329, 13914.552029120754, 12385.060816093504, + 10530.357749405888, 10472.047941990746, 14507.496298908729, + 24814.06664375708, 42247.191973604466, 67842.397449973, 96634.66251751386, + 128238.53015689302, 159963.8670772874, 181283.05211140093 + ], + "flow:J25:branch40_seg0": [ + 73.30364287905587, 83.27275326278178, 88.94670749280141, + 89.93055790958779, 86.5151730352917, 79.45254174832331, 69.85812451530389, + 59.18406051442181, 48.68885105151708, 38.74420718735703, + 30.046962356687597, 22.324742984104237, 15.160358159973466, + 8.425582015272795, 1.5748168183996618, -5.232094765495071, + -11.868831184502824, -18.10658589438302, -23.32867549666002, + -27.543409738859257, -30.550917088156044, -32.46073218121765, + -33.640314895756894, -34.306404287163645, -34.72243594679023, + -34.94745178852547, -34.86656672971636, -34.29681839346249, + -33.075545810988174, -31.169850337440305, -28.79197839049093, + -26.466389015202868, -24.766434185430285, -24.377411068509144, + -25.780672294177347, -29.08317599172167, -33.94636263768549, + -39.661032240545985, -45.2444314622446, -49.46514442956084, + -51.56399479949454, -50.887289760629294, -47.381561525438634, + -41.44316111636789, -34.03345750477341, -25.816868997820837, + -17.93561500170522, -11.063259741328155, -5.299700361801777, + -0.9015438068602168, 2.5689730842960308, 5.409061448454677, + 7.771945712808657, 9.900482853635005, 11.581969744720947, + 12.564581824211452, 12.640369238293468, 11.607927765491137, + 9.526063737894683, 6.675248877185825, 3.556156152092233, + 0.5815425416441005, -1.719287062916225, -3.1516555703734426, + -3.7612958539007706, -3.748258550976335, -3.5273400613168326, + -3.487927727008645, -3.874660778163377, -4.747106821646981, + -5.892366847362171, -7.020633924628324, -7.719834117348945, + -7.7153565982422805, -6.93576979971766, -5.544866627416179, + -3.8390403073358517, -2.240515368056212, -1.121477076692055, + -0.5786906446345006, -0.5729228397063627, -0.8211737215390064, + -0.9306167188456991, -0.5685985855062938, 0.41993335143772137, + 1.9506230020408397, 3.6645896003741156, 5.162362548051814, + 6.001434359734858, 6.047381621257589, 5.529021379106657, + 5.061800898613934, 5.569712369882725, 8.071300491650838, + 13.373851060599483, 21.967734795416934, 33.236212621236774, + 46.801612310594805, 60.78078821124237, 73.30364287905587 + ], + "pressure:J25:branch40_seg0": [ + 181283.05211140093, 194864.53657498272, 199351.42907566755, + 191081.46876201802, 174840.73965678382, 153854.83363911277, + 130229.06805566336, 104135.64245057054, 84076.7391011975, + 65029.960532604346, 47380.94037638497, 33707.08738527401, + 18455.745989336945, 4365.01423053609, -9924.21257446297, + -25262.983644435095, -38520.17493547139, -50875.692738862235, + -60167.73060868293, -66449.39512152255, -71014.77051287908, + -73087.05286943198, -74237.30538046925, -75040.2551724066, + -75435.12552081826, -75529.9971946793, -74572.90133614284, + -72091.27622902878, -67943.26630939865, -62702.54231246149, + -56812.50860911148, -52445.246482904244, -51064.93433941334, + -53189.6543895645, -60062.66181698763, -70900.68465157127, + -84227.32753095265, -96816.97211541147, -107848.09612048294, + -113247.81329290394, -112302.79692064913, -105341.80054264358, + -92375.37413715078, -74915.08785954097, -57055.557193004366, + -39195.49466636751, -22679.428604912533, -10832.878209228631, + -1068.1500537487925, 6318.504731380643, 11630.933380987519, + 17241.98521887826, 21400.723107606347, 24977.611452147034, + 27976.344053146444, 28205.07191542352, 26175.477059583423, + 21778.772952824005, 15481.228023037334, 7806.414305757194, + 1299.299532848752, -4025.322205627385, -7767.886573962561, + -8760.381737259388, -8548.565918180415, -7747.569877080571, + -7152.269398928631, -7727.923358873465, -9570.983362350222, + -12373.227834667794, -15079.00236609121, -17019.555448188366, + -17481.093096334316, -15855.273031343542, -12568.84396500458, + -8583.238310580478, -4808.527850566029, -1723.8662876060616, + -603.472507742897, -835.8902959638823, -1564.9719495725205, + -2254.568833957394, -1887.672946619836, 106.57994938295012, + 3450.706504033132, 7736.2832958120225, 11288.47669166632, + 13479.642626468329, 13914.552029120754, 12385.060816093504, + 10530.357749405888, 10472.047941990746, 14507.496298908729, + 24814.06664375708, 42247.191973604466, 67842.397449973, 96634.66251751386, + 128238.53015689302, 159963.8670772874, 181283.05211140093 + ], + "flow:J25:branch110_seg0": [ + 41.090621875864755, 45.442643770742976, 47.23915785691338, + 46.40921659641417, 43.44954535174609, 38.855864975616434, + 33.24869304638886, 27.45066903638492, 22.14626033293303, + 17.187492764472843, 13.036499238599122, 9.36516045900198, + 5.7988641153416856, 2.4523143163649825, -1.1026971336261702, + -4.603286247647627, -7.924509896392088, -11.064871607281493, + -13.457029930363236, -15.311626885277903, -16.560274272117915, + -17.22692256598532, -17.63302696446206, -17.843704624988657, + -17.977962142125023, -18.040900332231132, -17.908267372983655, + -17.46963354683599, -16.656121878688367, -15.4901470774036, + -14.135201897446422, -12.964139923658678, -12.284051746745284, + -12.45048107581262, -13.677115285761912, -15.908401672975575, + -18.822738288861572, -21.964583828874005, -24.792935881317607, + -26.547131806445375, -27.007678944314844, -25.89197189283747, + -23.307476610622565, -19.562995933399193, -15.384472701400153, + -10.991797354764751, -6.990936233489124, -3.7887575436374314, + -1.1386881743360975, 0.7672684775594912, 2.2605642912189907, + 3.573549024442104, 4.653419292395193, 5.65935263849715, 6.409767623356275, + 6.7057418580632415, 6.484395340183709, 5.650727694162421, + 4.290595383158699, 2.6163691095215085, 0.9566152925394571, + -0.5248867552196284, -1.5151665151839544, -1.9952721016975896, + -2.089902000975233, -1.9192014772823844, -1.7507756313986607, + -1.7876105382719407, -2.1063306438508134, -2.688344170790776, + -3.3432280446332796, -3.9033933482697676, -4.146765495508005, + -3.94336180676077, -3.3267411413478887, -2.449693109284816, + -1.5000433010172614, -0.706562388094044, -0.2710456405568838, + -0.15936718356485366, -0.29488084902473605, -0.48746423268415745, + -0.49980728475768765, -0.17770635591026857, 0.503734298057984, + 1.4363067545536026, 2.354977726857345, 3.056488783905037, + 3.3003443912699684, 3.100002762122285, 2.688849129644018, + 2.4843506223095617, 3.036732664998006, 4.89424972919301, + 8.390644263825893, 13.744978245053058, 20.248461674654912, + 27.74619993587293, 35.14141566987769, 41.090621875864755 + ], + "pressure:J25:branch110_seg0": [ + 181283.05211140093, 194864.53657498272, 199351.42907566755, + 191081.46876201802, 174840.73965678382, 153854.83363911277, + 130229.06805566336, 104135.64245057054, 84076.7391011975, + 65029.960532604346, 47380.94037638497, 33707.08738527401, + 18455.745989336945, 4365.01423053609, -9924.21257446297, + -25262.983644435095, -38520.17493547139, -50875.692738862235, + -60167.73060868293, -66449.39512152255, -71014.77051287908, + -73087.05286943198, -74237.30538046925, -75040.2551724066, + -75435.12552081826, -75529.9971946793, -74572.90133614284, + -72091.27622902878, -67943.26630939865, -62702.54231246149, + -56812.50860911148, -52445.246482904244, -51064.93433941334, + -53189.6543895645, -60062.66181698763, -70900.68465157127, + -84227.32753095265, -96816.97211541147, -107848.09612048294, + -113247.81329290394, -112302.79692064913, -105341.80054264358, + -92375.37413715078, -74915.08785954097, -57055.557193004366, + -39195.49466636751, -22679.428604912533, -10832.878209228631, + -1068.1500537487925, 6318.504731380643, 11630.933380987519, + 17241.98521887826, 21400.723107606347, 24977.611452147034, + 27976.344053146444, 28205.07191542352, 26175.477059583423, + 21778.772952824005, 15481.228023037334, 7806.414305757194, + 1299.299532848752, -4025.322205627385, -7767.886573962561, + -8760.381737259388, -8548.565918180415, -7747.569877080571, + -7152.269398928631, -7727.923358873465, -9570.983362350222, + -12373.227834667794, -15079.00236609121, -17019.555448188366, + -17481.093096334316, -15855.273031343542, -12568.84396500458, + -8583.238310580478, -4808.527850566029, -1723.8662876060616, + -603.472507742897, -835.8902959638823, -1564.9719495725205, + -2254.568833957394, -1887.672946619836, 106.57994938295012, + 3450.706504033132, 7736.2832958120225, 11288.47669166632, + 13479.642626468329, 13914.552029120754, 12385.060816093504, + 10530.357749405888, 10472.047941990746, 14507.496298908729, + 24814.06664375708, 42247.191973604466, 67842.397449973, 96634.66251751386, + 128238.53015689302, 159963.8670772874, 181283.05211140093 + ], + "flow:branch40_seg0:J26": [ + 73.22164785284674, 83.23422789910647, 88.95701045674843, + 89.97157142248038, 86.5995818578953, 79.56444440780577, 69.97344336330737, + 59.33035578236954, 48.796457148185354, 38.812629287067836, + 30.14693753176426, 22.38901869939578, 15.2313931027615, 8.498555932481567, + 1.6122690379436475, -5.150184889745087, -11.819750099897096, + -18.093309127339165, -23.297387770326402, -27.52632996532135, + -30.549138451968005, -32.45354511367476, -33.640876831746965, + -34.30632127796411, -34.71866787339266, -34.950140092293154, + -34.87243071888611, -34.31069192770991, -33.09637896014288, + -31.198319653769264, -28.816119827276232, -26.486934245749396, + -24.766735373037598, -24.356079801233843, -25.737235919905526, + -29.032827372584467, -33.86515991342377, -39.6116610155713, + -45.20927372885254, -49.452110851280494, -51.58844158837203, + -50.94105718593854, -47.43501417867876, -41.49319087717537, + -34.10149879963962, -25.880082291803337, -17.97191347061801, + -11.10570079918117, -5.323219496863584, -0.9191588707693427, + 2.536458647310347, 5.394159281754367, 7.752153524380258, 9.88227253503448, + 11.572169902757425, 12.56475111332943, 12.654860824036644, + 11.636318426630448, 9.55757017796661, 6.72024240602071, + 3.5881205395353652, 0.5919002181212024, -1.7027471296069163, + -3.150079193436982, -3.7683221550133923, -3.751687023841127, + -3.5264869039097864, -3.4822632096588384, -3.86640966768029, + -4.738927525835554, -5.884197057463228, -7.014943267572195, + -7.72506216437656, -7.723336476758023, -6.950789047419578, + -5.559871379065814, -3.8568684072436255, -2.248763493347342, + -1.1256459817394975, -0.5770424301063166, -0.567959919687001, + -0.8200356360479588, -0.9356337636305637, -0.5827667646203175, + 0.40233124351915434, 1.9267422966264953, 3.648945145274082, + 5.162588745319063, 6.003819873268566, 6.054470225637734, + 5.534920146798879, 5.0543117021215505, 5.543139017652987, + 8.010577778308464, 13.300499320471294, 21.883843921686257, + 33.13819617085287, 46.655165198266054, 60.70990560897919, + 73.22164785284674 + ], + "pressure:branch40_seg0:J26": [ + 165938.67613592747, 183129.24144902802, 191524.73471595807, + 188489.30045774748, 177011.83975361264, 159390.96545130233, + 137830.07547445156, 113739.69613989611, 92626.00863230845, + 72877.15337242118, 55068.06669240418, 40097.92903586765, + 25153.11750313591, 11042.331084390918, -3252.438945198475, + -17754.53596201868, -31500.12325610435, -44191.09160780878, + -54083.780668821724, -61649.60495937461, -67082.42351831641, + -70043.93991671632, -71870.92825802107, -72942.12947469288, + -73551.70116752914, -73864.40041379113, -73304.58003911086, + -71505.21472643579, -68190.77397318027, -63648.40477015337, + -58228.432449679756, -53625.42240933476, -51135.590985125375, + -51678.87229557168, -56488.53425433111, -65286.57253820207, + -76863.95328316299, -89228.09558184557, -100517.0012430929, + -107689.2168521567, -109466.7669198002, -105362.9398531959, + -95211.88605724143, -80254.95470821219, -63853.03628956632, + -46413.582149148926, -29866.957086904364, -16984.896685980057, + -6062.842787708685, 2165.2225423583495, 8300.949927562422, + 14178.345788920557, 18636.233354043798, 22590.915462840338, + 25907.08877323693, 27065.03140854244, 26171.803068721158, + 22977.493573646305, 17697.34533722982, 10969.016716487897, + 4392.410960552316, -1363.6366594671363, -5604.442957997814, + -7653.552258378556, -8178.37069992617, -7752.926668680681, + -7211.324470161683, -7444.008202723033, -8764.542464806438, + -11082.42398489812, -13595.1007395031, -15732.194333263318, + -16730.26164244082, -15906.82061412981, -13484.150669596384, + -10058.23601623628, -6449.037123145814, -3199.5377844504374, + -1479.7827807126607, -1029.5891690120457, -1351.7594596492381, + -1968.4408515216617, -1920.079626499264, -588.0207960616715, + 2094.6870380321293, 5789.105339915722, 9393.860932027661, + 12069.13459815791, 13160.316520442202, 12462.540878839962, + 10979.631961032084, 10430.312643549143, 12922.619028988234, + 20567.40385663611, 34745.41112385864, 56489.37093496825, + 82338.06853248642, 111828.57616649158, 142685.36897299153, + 165938.67613592747 + ], + "flow:J26:branch41_seg0": [ + 36.148288409636734, 41.22689097412905, 44.207386626391546, + 44.86353713202118, 43.31998529062607, 39.92369561828633, + 35.218427848432974, 29.945130609142048, 24.681938446695504, + 19.682930243121262, 15.32124331663644, 11.414727704111158, + 7.824753376888718, 4.446880040896017, 1.0085584283990436, + -2.371804247602635, -5.714030608955431, -8.856397211694427, + -11.486256792887092, -13.630886407806946, -15.17210750858872, + -16.15526279742678, -16.768669344136026, -17.113834131038757, + -17.326663512591438, -17.446178064734678, -17.414815489096693, + -17.147363556522063, -16.558548296292702, -15.629116202730609, + -14.452790125769706, -13.287566251691178, -12.40908401605635, + -12.165597099570011, -12.801864538848395, -14.389328895919618, + -16.754823259862103, -19.596771701706444, -22.389090452970127, + -24.543117748173593, -25.667126085591196, -25.419359373847215, + -23.748680031051748, -20.855436272612344, -17.210034396297043, + -13.131104051220664, -9.185093349024005, -5.732158289371872, + -2.8186585723012247, -0.5878689008867487, 1.1637998517342554, + 2.6042438915929935, 3.7929280834964128, 4.863453921170334, + 5.717547210313154, 6.233268295189983, 6.304951781891989, + 5.8290624005378415, 4.823633920490447, 3.4321471369533465, + 1.8780890254641704, 0.3811243602093764, -0.7818423606122393, + -1.5290239658712972, -1.8600240772808623, -1.869257274463159, + -1.7634094938968587, -1.73625073904127, -1.9157476584706619, + -2.3368753945659524, -2.900088931106822, -3.4647671814877454, + -3.8299303690380526, -3.8491599861490213, -3.486324583660262, + -2.8104799145114723, -1.9703609264576931, -1.1667677116204123, + -0.5935870277458117, -0.30322768549067064, -0.2839156882353955, + -0.4022126587869801, -0.46359116509403414, -0.30126954304646475, + 0.17184466227596557, 0.9159759986015168, 1.76951273369057, + 2.5298275815101996, 2.967807614011962, 3.0159167913488094, + 2.7726136557686516, 2.5309193823929363, 2.746304532321972, + 3.9189569460332434, 6.476585141826047, 10.65914342601511, + 16.192683770516158, 22.87371709963869, 29.860928065729574, + 36.148288409636734 + ], + "pressure:J26:branch41_seg0": [ + 165938.67613592747, 183129.24144902802, 191524.73471595807, + 188489.30045774748, 177011.83975361264, 159390.96545130233, + 137830.07547445156, 113739.69613989611, 92626.00863230845, + 72877.15337242118, 55068.06669240418, 40097.92903586765, + 25153.11750313591, 11042.331084390918, -3252.438945198475, + -17754.53596201868, -31500.12325610435, -44191.09160780878, + -54083.780668821724, -61649.60495937461, -67082.42351831641, + -70043.93991671632, -71870.92825802107, -72942.12947469288, + -73551.70116752914, -73864.40041379113, -73304.58003911086, + -71505.21472643579, -68190.77397318027, -63648.40477015337, + -58228.432449679756, -53625.42240933476, -51135.590985125375, + -51678.87229557168, -56488.53425433111, -65286.57253820207, + -76863.95328316299, -89228.09558184557, -100517.0012430929, + -107689.2168521567, -109466.7669198002, -105362.9398531959, + -95211.88605724143, -80254.95470821219, -63853.03628956632, + -46413.582149148926, -29866.957086904364, -16984.896685980057, + -6062.842787708685, 2165.2225423583495, 8300.949927562422, + 14178.345788920557, 18636.233354043798, 22590.915462840338, + 25907.08877323693, 27065.03140854244, 26171.803068721158, + 22977.493573646305, 17697.34533722982, 10969.016716487897, + 4392.410960552316, -1363.6366594671363, -5604.442957997814, + -7653.552258378556, -8178.37069992617, -7752.926668680681, + -7211.324470161683, -7444.008202723033, -8764.542464806438, + -11082.42398489812, -13595.1007395031, -15732.194333263318, + -16730.26164244082, -15906.82061412981, -13484.150669596384, + -10058.23601623628, -6449.037123145814, -3199.5377844504374, + -1479.7827807126607, -1029.5891690120457, -1351.7594596492381, + -1968.4408515216617, -1920.079626499264, -588.0207960616715, + 2094.6870380321293, 5789.105339915722, 9393.860932027661, + 12069.13459815791, 13160.316520442202, 12462.540878839962, + 10979.631961032084, 10430.312643549143, 12922.619028988234, + 20567.40385663611, 34745.41112385864, 56489.37093496825, + 82338.06853248642, 111828.57616649158, 142685.36897299153, + 165938.67613592747 + ], + "flow:J26:branch98_seg0": [ + 37.07335944321044, 42.007336924977025, 44.74962383035722, + 45.108034290460026, 43.27959656726681, 39.64074878952027, + 34.75501551487451, 29.38522517322693, 24.11451870149044, + 19.129699043946903, 14.82569421512882, 10.974290995283466, + 7.406639725871922, 4.051675891584134, 0.6037106095387698, + -2.778380642143432, -6.105719490942981, -9.236911915645432, + -11.811130977439852, -13.895443557513074, -15.377030943377678, + -16.29828231624862, -16.872207487613952, -17.192487146926997, + -17.392004360800076, -17.503962027558124, -17.457615229789916, + -17.163328371187916, -16.537830663849498, -15.569203451039556, + -14.363329701505252, -13.199367994060092, -12.357651356980943, + -12.190482701663232, -12.935371381057147, -14.64349847666559, + -17.110336653561554, -20.014889313864415, -22.820183275882005, + -24.90899310310704, -25.921315502780498, -25.521697812091148, + -23.686334147626823, -20.637754604562986, -16.89146440334255, + -12.748978240582728, -8.786820121594006, -5.373542509809282, + -2.504560924562356, -0.33128996988258497, 1.372658795576102, + 2.7899153901613722, 3.9592254408838365, 5.018818613864168, + 5.854622692444276, 6.331482818139405, 6.349909042144605, + 5.807256026092756, 4.733936257476091, 3.288095269067376, + 1.7100315140711981, 0.21077585791196665, -0.9209047689947308, + -1.6210552275656793, -1.9082980777326215, -1.8824297493779583, + -1.7630774100128934, -1.7460124706175166, -1.9506620092097142, + -2.4020521312695813, -2.9841081263564835, -3.5501760860844334, + -3.8951317953385285, -3.8741764906091034, -3.464464463759319, + -2.749391464554281, -1.8865074807859386, -1.0819957817269197, + -0.5320589539937102, -0.2738147446156309, -0.2840442314516029, + -0.4178229772609837, -0.47204259853651975, -0.281497221573846, + 0.23048658124320368, 1.0107662980249883, 1.879432411583529, + 2.6327611638088904, 3.0360122592566423, 3.0385534342889007, + 2.762306491030227, 2.5233923197287087, 2.79683448533102, + 4.0916208322750744, 6.823914178645223, 11.22470049567101, + 16.9455124003366, 23.781448098627592, 30.848977543249482, + 37.07335944321044 + ], + "pressure:J26:branch98_seg0": [ + 165938.67613592747, 183129.24144902802, 191524.73471595807, + 188489.30045774748, 177011.83975361264, 159390.96545130233, + 137830.07547445156, 113739.69613989611, 92626.00863230845, + 72877.15337242118, 55068.06669240418, 40097.92903586765, + 25153.11750313591, 11042.331084390918, -3252.438945198475, + -17754.53596201868, -31500.12325610435, -44191.09160780878, + -54083.780668821724, -61649.60495937461, -67082.42351831641, + -70043.93991671632, -71870.92825802107, -72942.12947469288, + -73551.70116752914, -73864.40041379113, -73304.58003911086, + -71505.21472643579, -68190.77397318027, -63648.40477015337, + -58228.432449679756, -53625.42240933476, -51135.590985125375, + -51678.87229557168, -56488.53425433111, -65286.57253820207, + -76863.95328316299, -89228.09558184557, -100517.0012430929, + -107689.2168521567, -109466.7669198002, -105362.9398531959, + -95211.88605724143, -80254.95470821219, -63853.03628956632, + -46413.582149148926, -29866.957086904364, -16984.896685980057, + -6062.842787708685, 2165.2225423583495, 8300.949927562422, + 14178.345788920557, 18636.233354043798, 22590.915462840338, + 25907.08877323693, 27065.03140854244, 26171.803068721158, + 22977.493573646305, 17697.34533722982, 10969.016716487897, + 4392.410960552316, -1363.6366594671363, -5604.442957997814, + -7653.552258378556, -8178.37069992617, -7752.926668680681, + -7211.324470161683, -7444.008202723033, -8764.542464806438, + -11082.42398489812, -13595.1007395031, -15732.194333263318, + -16730.26164244082, -15906.82061412981, -13484.150669596384, + -10058.23601623628, -6449.037123145814, -3199.5377844504374, + -1479.7827807126607, -1029.5891690120457, -1351.7594596492381, + -1968.4408515216617, -1920.079626499264, -588.0207960616715, + 2094.6870380321293, 5789.105339915722, 9393.860932027661, + 12069.13459815791, 13160.316520442202, 12462.540878839962, + 10979.631961032084, 10430.312643549143, 12922.619028988234, + 20567.40385663611, 34745.41112385864, 56489.37093496825, + 82338.06853248642, 111828.57616649158, 142685.36897299153, + 165938.67613592747 + ], + "flow:branch42_seg0:J27": [ + 44.200292423223644, 49.45048166300427, 52.02769969686242, + 51.771097270482244, 49.064760630921896, 44.39850189591575, + 38.416159244447385, 32.02458816745815, 25.969180349936586, + 20.23498208177997, 15.374610058792337, 11.038972358903813, + 6.931022155628362, 3.076111128565152, -0.9608594812567474, + -4.91226705772056, -8.740883794028337, -12.324581918760925, + -15.145880736300063, -17.347035883946322, -18.835380119921908, + -19.65320495692744, -20.112541535580224, -20.3159647838053, + -20.40843290484041, -20.416415424975796, -20.22468998504214, + -19.719764229727218, -18.811765795926448, -17.51679523018026, + -15.983461408509662, -14.60411662017439, -13.704609462064141, + -13.695998042344375, -14.824306962546373, -17.08625440932264, + -20.152790745554068, -23.586473760046577, -26.744997474289484, + -28.846282628770712, -29.561839931798673, -28.566366425304444, + -25.90707222724808, -21.94207641127284, -17.37135745418716, + -12.517834679317279, -8.039058874524336, -4.363798534049264, + -1.3390119612251703, 0.8678797229258122, 2.5687042009186682, + 4.022668739430675, 5.20287279130252, 6.291342894744639, 7.113014853629204, + 7.475146139029198, 7.292364718821541, 6.453490701555072, + 5.027401080598933, 3.2285089546393095, 1.3839239792503162, + -0.3044374166309945, -1.4884626210216734, -2.130775696181135, + -2.31921172589712, -2.182809281480574, -2.0011591015899475, + -2.0013337321269864, -2.2936511350843816, -2.8733958698487068, + -3.566258890811378, -4.187006346088692, -4.49682783724213, + -4.340556986772823, -3.733902037759947, -2.8125930274680213, + -1.7828509593880861, -0.8829160666073071, -0.344932007481968, + -0.1558051090781836, -0.25724628781868775, -0.45401437868536354, + -0.49627389450533677, -0.2055946425528547, 0.4713308922466136, + 1.4372786499816195, 2.435983399480894, 3.2397669535507805, + 3.5795460613208276, 3.4380979129364406, 3.0271434573587785, + 2.7641418263202193, 3.2372461121683895, 5.033098976450581, + 8.593124018421445, 14.127805410269099, 21.065634708692244, + 29.163244536226017, 37.34057078639116, 44.200292423223644 + ], + "pressure:branch42_seg0:J27": [ + 182623.09477327787, 198455.18373853766, 205169.91328708778, + 199143.9677675281, 184420.94168304867, 164106.5837671326, + 140197.83334629488, 113605.25520344927, 91562.41195450418, + 70741.17771105007, 51976.376474633136, 36655.57450520115, + 20532.11728201155, 5447.919874330515, -9892.123733912147, + -25681.672877301397, -40043.717801108185, -53466.54013506529, + -63434.807399243575, -70355.36196963764, -75383.0746609117, + -77620.25238831027, -78775.08606904409, -79383.11705365717, + -79511.33090353408, -79390.62760710933, -78251.44404310916, + -75643.70178580329, -71353.65029251362, -65909.65059705495, + -59654.08246054767, -54776.51368220562, -52668.470666164896, + -54086.83117955606, -60320.6974321766, -70820.23545319603, + -83938.76383905039, -97113.20819926294, -108706.29060364442, + -114948.22869473729, -114812.65284621857, -108409.68411246978, + -95543.68290824528, -77891.77904808753, -59662.01676723967, + -41275.822616122125, -23919.73375387806, -11355.236980155989, + -953.8567580184674, 6845.130141037625, 12304.694859916272, + 18056.48977081449, 22248.78944077576, 25841.759095297573, + 28864.378902236116, 29318.848916358496, 27512.476517625, + 23311.756493971738, 17038.78106001226, 9393.439945204575, + 2447.734710085829, -3386.6420588338237, -7460.198225169926, + -8914.500347334131, -8988.164851865644, -8238.348431604643, + -7562.505837484729, -7962.568324944118, -9639.311385995126, + -12345.307885892122, -15049.477787505208, -17075.134671256354, + -17749.52575260217, -16323.007816244088, -13198.360698270697, + -9225.261079467524, -5386.684540205339, -2077.7698288432853, + -681.9696648473363, -676.7288491488345, -1295.9241498663096, + -2011.9351299918262, -1796.6308410712486, -42.45744170708499, + 3145.1877806925077, 7306.839602673038, 11031.222807324046, + 13514.440159184984, 14186.94371514, 12863.489596794901, 11028.36673170948, + 10689.023511657339, 14206.142808848366, 23772.17829001072, + 40621.53840555683, 65802.4013400134, 94635.67855574854, + 126251.41710707544, 159461.28772874243, 182623.09477327787 + ], + "flow:J27:branch43_seg0": [ + 24.201904031777136, 27.004518250913225, 28.338576494492784, + 28.119406896425115, 26.581285119636025, 23.995527355276497, + 20.71138461478113, 17.223649792879108, 13.947007319458342, + 10.841016142397374, 8.219337109661238, 5.882334558013695, + 3.6538688982943865, 1.5660110021085165, -0.6302572131778378, + -2.777419946355957, -4.849953229902911, -6.792631229528124, + -8.306567496549881, -9.482320068385736, -10.274348407028818, + -10.700599659222256, -10.939906611140845, -11.044538351805214, + -11.091084871890855, -11.093038119359372, -10.983382446498931, + -10.700080966059184, -10.195653161695933, -9.482185015007548, + -8.642606117696033, -7.89774643576182, -7.423656588987073, + -7.442757094599776, -8.08663682822702, -9.346479030358608, + -11.03388416194819, -12.90647259219849, -14.616061371628751, + -15.728273365082307, -16.077819007453048, -15.492495631146307, + -14.00364137495032, -11.812755157543299, -9.31393033367451, + -6.6729914989845565, -4.245611257631182, -2.271873507775902, + -0.6469802593953567, 0.5329611534524734, 1.4411177220122358, + 2.2258212035939606, 2.8600890014647313, 3.4469260631696126, + 3.8872318122466285, 4.070685589689153, 3.9559614412400346, + 3.4829742808306627, 2.6925306438587104, 1.704644481079772, + 0.7025615407108331, -0.2100171335221728, -0.8408472068109849, + -1.1738991032268207, -1.2646909415275838, -1.182781184064202, + -1.0827204115224596, -1.0878476465076286, -1.2545668205415195, + -1.577197104387353, -1.956363921752555, -2.290840638391689, + -2.451226693040592, -2.3537017823828728, -2.0117200269593383, + -1.502944206047241, -0.9413022278424096, -0.4554019902374925, + -0.1729284473291931, -0.08021890612353684, -0.14240311564890998, + -0.25156651996593704, -0.27026605406504933, -0.10315871084002795, + 0.2748417705700556, 0.8073996909754405, 1.3500687846345338, + 1.7810384484956314, 1.9537214656843116, 1.863637736245877, + 1.6337487609404198, 1.4960831900450937, 1.7739333177069516, + 2.786077854947619, 4.767180950360907, 7.829222087482137, + 11.636527599023966, 16.060592118670947, 20.512875527021144, + 24.201904031777136 + ], + "pressure:J27:branch43_seg0": [ + 182623.09477327787, 198455.18373853766, 205169.91328708778, + 199143.9677675281, 184420.94168304867, 164106.5837671326, + 140197.83334629488, 113605.25520344927, 91562.41195450418, + 70741.17771105007, 51976.376474633136, 36655.57450520115, + 20532.11728201155, 5447.919874330515, -9892.123733912147, + -25681.672877301397, -40043.717801108185, -53466.54013506529, + -63434.807399243575, -70355.36196963764, -75383.0746609117, + -77620.25238831027, -78775.08606904409, -79383.11705365717, + -79511.33090353408, -79390.62760710933, -78251.44404310916, + -75643.70178580329, -71353.65029251362, -65909.65059705495, + -59654.08246054767, -54776.51368220562, -52668.470666164896, + -54086.83117955606, -60320.6974321766, -70820.23545319603, + -83938.76383905039, -97113.20819926294, -108706.29060364442, + -114948.22869473729, -114812.65284621857, -108409.68411246978, + -95543.68290824528, -77891.77904808753, -59662.01676723967, + -41275.822616122125, -23919.73375387806, -11355.236980155989, + -953.8567580184674, 6845.130141037625, 12304.694859916272, + 18056.48977081449, 22248.78944077576, 25841.759095297573, + 28864.378902236116, 29318.848916358496, 27512.476517625, + 23311.756493971738, 17038.78106001226, 9393.439945204575, + 2447.734710085829, -3386.6420588338237, -7460.198225169926, + -8914.500347334131, -8988.164851865644, -8238.348431604643, + -7562.505837484729, -7962.568324944118, -9639.311385995126, + -12345.307885892122, -15049.477787505208, -17075.134671256354, + -17749.52575260217, -16323.007816244088, -13198.360698270697, + -9225.261079467524, -5386.684540205339, -2077.7698288432853, + -681.9696648473363, -676.7288491488345, -1295.9241498663096, + -2011.9351299918262, -1796.6308410712486, -42.45744170708499, + 3145.1877806925077, 7306.839602673038, 11031.222807324046, + 13514.440159184984, 14186.94371514, 12863.489596794901, 11028.36673170948, + 10689.023511657339, 14206.142808848366, 23772.17829001072, + 40621.53840555683, 65802.4013400134, 94635.67855574854, + 126251.41710707544, 159461.28772874243, 182623.09477327787 + ], + "flow:J27:branch134_seg0": [ + 19.99838839144637, 22.44596341209088, 23.689123202368354, + 23.651690374057303, 22.483475511285828, 20.402974540639832, + 17.704774629666254, 14.800938374579165, 12.02217303047734, + 9.393965939382355, 7.155272949130837, 5.15663780089105, 3.277153257334202, + 1.510100126456691, -0.3306022680786194, -2.1348471113654246, + -3.8909305641247687, -5.531950689232038, -6.839313239749883, + -7.864715815560923, -8.561031712893989, -8.952605297704224, + -9.172634924438825, -9.27142643200042, -9.317348032950806, + -9.323377305617012, -9.241307538543403, -9.019683263668355, + -8.616112634230484, -8.034610215172844, -7.340855290814631, + -6.706370184411967, -6.280952873077626, -6.253240947745259, + -6.737670134318875, -7.73977537896435, -9.11890658360611, + -10.680001167847795, -12.128936102660742, -13.118009263688283, + -13.484020924345565, -13.073870794158193, -11.90343085229781, + -10.129321253729639, -8.057427120512681, -5.8448431803327185, + -3.7934476168931486, -2.0919250262733624, -0.6920317018298319, + 0.33491856947334014, 1.1275864789064312, 1.7968475358367195, + 2.3427837898377866, 2.844416831575023, 3.2257830413825452, + 3.4044605493400457, 3.3364032775813945, 2.9705164207243646, + 2.334870436740081, 1.5238644735594427, 0.681362438539494, + -0.09442028310882525, -0.6476154142107201, -0.956876592954345, + -1.0545207843695452, -1.0000280974164601, -0.9184386900674265, + -0.9134860856193295, -1.03908431454282, -1.296198765461231, + -1.609894969058855, -1.8961657076970284, -2.0456011442015174, + -1.9868552043899572, -1.7221820108005879, -1.3096488214207782, + -0.8415487315456766, -0.42751407636981176, -0.1720035601527761, + -0.07558620295462834, -0.11484317216978075, -0.20244785871941978, + -0.22600784044027974, -0.10243593171281679, 0.19648912167655336, + 0.6298789590061865, 1.0859146148463683, 1.4587285050551677, + 1.6258245956365207, 1.5744601766905644, 1.3933946964183574, + 1.2680586362750845, 1.463312794461476, 2.247021121502981, + 3.8259430680605533, 6.29858332278695, 9.429107109668125, + 13.102652417555273, 16.827695259370202, 19.99838839144637 + ], + "pressure:J27:branch134_seg0": [ + 182623.09477327787, 198455.18373853766, 205169.91328708778, + 199143.9677675281, 184420.94168304867, 164106.5837671326, + 140197.83334629488, 113605.25520344927, 91562.41195450418, + 70741.17771105007, 51976.376474633136, 36655.57450520115, + 20532.11728201155, 5447.919874330515, -9892.123733912147, + -25681.672877301397, -40043.717801108185, -53466.54013506529, + -63434.807399243575, -70355.36196963764, -75383.0746609117, + -77620.25238831027, -78775.08606904409, -79383.11705365717, + -79511.33090353408, -79390.62760710933, -78251.44404310916, + -75643.70178580329, -71353.65029251362, -65909.65059705495, + -59654.08246054767, -54776.51368220562, -52668.470666164896, + -54086.83117955606, -60320.6974321766, -70820.23545319603, + -83938.76383905039, -97113.20819926294, -108706.29060364442, + -114948.22869473729, -114812.65284621857, -108409.68411246978, + -95543.68290824528, -77891.77904808753, -59662.01676723967, + -41275.822616122125, -23919.73375387806, -11355.236980155989, + -953.8567580184674, 6845.130141037625, 12304.694859916272, + 18056.48977081449, 22248.78944077576, 25841.759095297573, + 28864.378902236116, 29318.848916358496, 27512.476517625, + 23311.756493971738, 17038.78106001226, 9393.439945204575, + 2447.734710085829, -3386.6420588338237, -7460.198225169926, + -8914.500347334131, -8988.164851865644, -8238.348431604643, + -7562.505837484729, -7962.568324944118, -9639.311385995126, + -12345.307885892122, -15049.477787505208, -17075.134671256354, + -17749.52575260217, -16323.007816244088, -13198.360698270697, + -9225.261079467524, -5386.684540205339, -2077.7698288432853, + -681.9696648473363, -676.7288491488345, -1295.9241498663096, + -2011.9351299918262, -1796.6308410712486, -42.45744170708499, + 3145.1877806925077, 7306.839602673038, 11031.222807324046, + 13514.440159184984, 14186.94371514, 12863.489596794901, 11028.36673170948, + 10689.023511657339, 14206.142808848366, 23772.17829001072, + 40621.53840555683, 65802.4013400134, 94635.67855574854, + 126251.41710707544, 159461.28772874243, 182623.09477327787 + ], + "flow:branch45_seg0:J28": [ + 68.08501042190616, 75.70679666496545, 79.11329695100532, + 78.14092357052145, 73.52904737214138, 66.021547981106, 56.63869805288936, + 46.85479941409613, 37.69444946432777, 29.07999978640415, + 21.919369365372884, 15.517152267493081, 9.406012288999102, + 3.6803694755898073, -2.4146643684027573, -8.32321311269443, + -14.025411650525529, -19.40522659858901, -23.49179807325656, + -26.660016793564893, -28.75608131507047, -29.824625272884944, + -30.41612913150669, -30.64751500407201, -30.739334471846075, + -30.724000468481446, -30.39557185564414, -29.575154993266278, + -28.133181193993675, -26.098884218399885, -23.729791864774906, + -21.65092931494345, -20.363996258683773, -20.500908888259435, + -22.422405127817328, -26.07392946310236, -30.881030321735697, + -36.176240499526884, -40.94462474694581, -43.943119562193566, + -44.775516208030176, -42.938088204724735, -38.586129533100504, + -32.28426612028269, -25.235831152111462, -17.82989794626135, + -11.084525158709749, -5.689681533060629, -1.2544907011396775, + 1.905002895738116, 4.328009702580475, 6.440695366389665, + 8.152579764002686, 9.748968080402877, 10.931064564573793, + 11.38847020347797, 11.004166284958828, 9.607147017027026, + 7.321648568754505, 4.517576524049112, 1.6927841352711375, + -0.8544878605981917, -2.550521549456707, -3.4094954609590276, + -3.5966750671189396, -3.307246847216354, -2.99752075733241, + -3.01278697933655, -3.4972712459671706, -4.428382668174025, + -5.501416270015907, -6.433703206295883, -6.858436636411035, + -6.540925416260922, -5.535668937767634, -4.075360452066127, + -2.483120632980733, -1.131617574813988, -0.3704802385398075, + -0.1529583724055608, -0.3684537878361198, -0.7026499892115065, + -0.7571384890678998, -0.26866053849503024, 0.8252511095979238, + 2.3443164342423115, 3.875930214008368, 5.073229376759236, + 5.503554950735177, 5.192598171327137, 4.502545461178231, + 4.106864807570182, 4.9246485265058135, 7.859847928412904, + 13.535996905036251, 22.28918930543755, 33.04359765660337, + 45.47384031943939, 57.92051188772138, 68.08501042190616 + ], + "pressure:branch45_seg0:J28": [ + 179730.33511205885, 197568.4973196094, 205110.24980407907, + 200686.87653334392, 187193.99768136928, 166972.08580703413, + 142534.0949224138, 116599.3461827766, 93728.54747676417, 72069.5731603412, + 53601.72808886375, 37747.18357290129, 21834.41484001054, + 7081.651949107282, -8491.556974345765, -23981.093808167585, + -38361.43531252767, -52017.67856369514, -62258.57019495256, + -69801.56684730398, -74938.31626673264, -77394.0342540359, + -78689.53712575174, -79254.15955689308, -79419.57194350944, + -79313.31616088745, -78313.18447302826, -75934.97883337327, + -71913.95818793504, -66495.92155803589, -60289.35326362895, + -55124.537249878835, -52378.039098029236, -53344.874317183814, + -59030.74658741439, -69106.4931593698, -81974.13855311653, + -95427.67423576921, -107433.24483165336, -114338.33708563464, + -115334.05467945912, -109630.74439018173, -97536.94262767257, + -80544.85127604881, -62179.666349084364, -43313.99653874359, + -26007.616232727978, -12672.53943523436, -1779.3271026919601, + 6144.148334774964, 12024.108427578663, 17488.104386584968, + 21809.243372156387, 25686.131852702227, 28656.14004329928, + 29452.288884350426, 28023.079855433327, 24035.500623441865, + 17875.04160058633, 10369.05898122838, 3255.137251126233, + -3010.1916002739345, -7176.7410764532215, -8969.939277709265, + -9214.997515477868, -8417.2220295642, -7655.873574481433, + -7864.332529682096, -9317.287922327318, -11869.886236517481, + -14637.316422232778, -16881.43284236111, -17758.609715043127, + -16636.517871339325, -13755.712097776834, -9853.804464189927, + -5807.956781384062, -2422.95606980799, -724.0063238152486, + -444.9124695491631, -1087.9555598567383, -1910.3678094607235, + -1886.4231027914352, -361.9782797811701, 2668.3183660749614, + 6751.530095304984, 10586.840464800312, 13402.022890472175, + 14255.211039858674, 13165.945433053477, 11328.386060158613, + 10616.641439191531, 13408.21239053512, 21993.175921594288, + 37748.22820482588, 61614.33753519627, 90080.7081626652, + 122262.47148708858, 154679.74948822637, 179730.33511205885 + ], + "flow:J28:branch46_seg0": [ + 31.653870835579742, 35.2018843208783, 36.78854172644028, + 36.34047897298942, 34.19863254908421, 30.70885431798174, + 26.346331683988105, 21.79763413823119, 17.536051498661223, + 13.529694595927069, 10.19957122253382, 7.221295146878223, + 4.380623041407863, 1.718521090899972, -1.1148201553311115, + -3.8612504481010563, -6.513227464644057, -9.014486956775368, + -10.915910539892769, -12.390921935294585, -13.366561971851704, + -13.864926603586493, -14.140907395986908, -14.249027308116808, + -14.292326549388282, -14.285698975132346, -14.133804791994832, + -13.753447701048405, -13.084140321691134, -12.139072792289708, + -11.038012991115869, -10.070858706411666, -9.470990784752653, + -9.532873516575624, -10.424179838495293, -12.120271230398997, + -14.354807376037535, -16.81808471684351, -19.037113327488704, + -20.435173686827362, -20.82652316839803, -19.975883979405776, + -17.955330126229097, -15.027110419834864, -11.749165894115393, + -8.303691478322149, -5.165554281226773, -2.653608724361313, + -0.5888701366052228, 0.8820065090359738, 2.0105153006118868, + 2.99331951909216, 3.7901325204866034, 4.533295277488317, + 5.083509863312814, 5.297482248940859, 5.1199730233131415, + 4.471335231067908, 3.4092013897189117, 2.10554247483123, + 0.7911218707055861, -0.39443164968306954, -1.184330504662709, + -1.5853183385149343, -1.6731309513115675, -1.5388534642437577, + -1.3947228207599156, -1.4012729383395324, -1.625972150222959, + -2.0585489581797956, -2.557679046908645, -2.991834593638941, + -3.1901222616854286, -3.043489386235979, -2.5768186142686433, + -1.8979754460912142, -1.1571742795781823, -0.5281401283577616, + -0.17316653754865816, -0.07112115519520734, -0.17100991943774416, + -0.3264891496216695, -0.3523362373660307, -0.125935349397439, + 0.3821853725013698, 1.0883254172401706, 1.8010905536657857, + 2.358742653494562, 2.559886578642305, 2.416265200051509, + 2.095525540856592, 1.9106045861130843, 2.2889314643666014, + 3.651075470797814, 6.287784327873192, 10.354958232816598, + 15.354976927941841, 21.135880154178544, 26.923373444472855, + 31.653870835579742 + ], + "pressure:J28:branch46_seg0": [ + 179730.33511205885, 197568.4973196094, 205110.24980407907, + 200686.87653334392, 187193.99768136928, 166972.08580703413, + 142534.0949224138, 116599.3461827766, 93728.54747676417, 72069.5731603412, + 53601.72808886375, 37747.18357290129, 21834.41484001054, + 7081.651949107282, -8491.556974345765, -23981.093808167585, + -38361.43531252767, -52017.67856369514, -62258.57019495256, + -69801.56684730398, -74938.31626673264, -77394.0342540359, + -78689.53712575174, -79254.15955689308, -79419.57194350944, + -79313.31616088745, -78313.18447302826, -75934.97883337327, + -71913.95818793504, -66495.92155803589, -60289.35326362895, + -55124.537249878835, -52378.039098029236, -53344.874317183814, + -59030.74658741439, -69106.4931593698, -81974.13855311653, + -95427.67423576921, -107433.24483165336, -114338.33708563464, + -115334.05467945912, -109630.74439018173, -97536.94262767257, + -80544.85127604881, -62179.666349084364, -43313.99653874359, + -26007.616232727978, -12672.53943523436, -1779.3271026919601, + 6144.148334774964, 12024.108427578663, 17488.104386584968, + 21809.243372156387, 25686.131852702227, 28656.14004329928, + 29452.288884350426, 28023.079855433327, 24035.500623441865, + 17875.04160058633, 10369.05898122838, 3255.137251126233, + -3010.1916002739345, -7176.7410764532215, -8969.939277709265, + -9214.997515477868, -8417.2220295642, -7655.873574481433, + -7864.332529682096, -9317.287922327318, -11869.886236517481, + -14637.316422232778, -16881.43284236111, -17758.609715043127, + -16636.517871339325, -13755.712097776834, -9853.804464189927, + -5807.956781384062, -2422.95606980799, -724.0063238152486, + -444.9124695491631, -1087.9555598567383, -1910.3678094607235, + -1886.4231027914352, -361.9782797811701, 2668.3183660749614, + 6751.530095304984, 10586.840464800312, 13402.022890472175, + 14255.211039858674, 13165.945433053477, 11328.386060158613, + 10616.641439191531, 13408.21239053512, 21993.175921594288, + 37748.22820482588, 61614.33753519627, 90080.7081626652, + 122262.47148708858, 154679.74948822637, 179730.33511205885 + ], + "flow:J28:branch89_seg0": [ + 36.43113958632662, 40.50491234408713, 42.32475522456499, + 41.80044459753165, 39.33041482305737, 35.31269366312386, + 30.292366368900918, 25.05716527586641, 20.158397965665266, + 15.550305190476715, 11.719798142840098, 8.295857120613304, + 5.025389247592859, 1.961848384690523, -1.2998442130734533, + -4.461962664595397, -7.512184185882951, -10.390739641813578, + -12.575887533363243, -14.269094858269757, -15.389519343218216, + -15.959698669299733, -16.275221735519942, -16.39848769595274, + -16.447007922456883, -16.438301493349183, -16.261767063648726, + -15.821707292216733, -15.049040872302392, -13.95981142611009, + -12.691778873658409, -11.58007060853244, -10.89300547393077, + -10.968035371683992, -11.998225289322079, -13.953658232702841, + -16.526222945697782, -19.35815578268252, -21.907511419456718, + -23.507945875366207, -23.948993039632153, -22.962204225319272, + -20.630799406871546, -17.25715570044776, -13.486665257996082, + -9.526206467939177, -5.918970877482978, -3.036072808699322, + -0.6656205645344292, 1.0229963867021574, 2.3174944019685806, + 3.4473758472975025, 4.362447243516086, 5.2156728029145425, + 5.847554701260954, 6.09098795453716, 5.884193261645714, 5.135811785959173, + 3.9124471790356856, 2.412034049217696, 0.9016622645655967, + -0.46005621091506693, -1.3661910447940866, -1.8241771224441439, + -1.9235441158073578, -1.7683933829726821, -1.6027979365724225, + -1.6115140409968836, -1.8712990957442328, -2.3698337099941913, + -2.9437372231072323, -3.4418686126568914, -3.6683143747255773, + -3.4974360300249603, -2.958850323498993, -2.1773850059748936, + -1.325946353402533, -0.6034774464562177, -0.1973137009911823, + -0.08183721721034788, -0.19744386839836944, -0.37616083958983637, + -0.4048022517018739, -0.14272518909758142, 0.4430657370965412, + 1.2559910170021618, 2.0748396603425814, 2.7144867232646765, + 2.943668372092871, 2.7763329712756653, 2.4070199203216416, + 2.1962602214570697, 2.6357170621392583, 4.208772457615178, + 7.248212577163097, 11.934231072620761, 17.68862072866173, + 24.337960165261045, 30.99713844324861, 36.43113958632662 + ], + "pressure:J28:branch89_seg0": [ + 179730.33511205885, 197568.4973196094, 205110.24980407907, + 200686.87653334392, 187193.99768136928, 166972.08580703413, + 142534.0949224138, 116599.3461827766, 93728.54747676417, 72069.5731603412, + 53601.72808886375, 37747.18357290129, 21834.41484001054, + 7081.651949107282, -8491.556974345765, -23981.093808167585, + -38361.43531252767, -52017.67856369514, -62258.57019495256, + -69801.56684730398, -74938.31626673264, -77394.0342540359, + -78689.53712575174, -79254.15955689308, -79419.57194350944, + -79313.31616088745, -78313.18447302826, -75934.97883337327, + -71913.95818793504, -66495.92155803589, -60289.35326362895, + -55124.537249878835, -52378.039098029236, -53344.874317183814, + -59030.74658741439, -69106.4931593698, -81974.13855311653, + -95427.67423576921, -107433.24483165336, -114338.33708563464, + -115334.05467945912, -109630.74439018173, -97536.94262767257, + -80544.85127604881, -62179.666349084364, -43313.99653874359, + -26007.616232727978, -12672.53943523436, -1779.3271026919601, + 6144.148334774964, 12024.108427578663, 17488.104386584968, + 21809.243372156387, 25686.131852702227, 28656.14004329928, + 29452.288884350426, 28023.079855433327, 24035.500623441865, + 17875.04160058633, 10369.05898122838, 3255.137251126233, + -3010.1916002739345, -7176.7410764532215, -8969.939277709265, + -9214.997515477868, -8417.2220295642, -7655.873574481433, + -7864.332529682096, -9317.287922327318, -11869.886236517481, + -14637.316422232778, -16881.43284236111, -17758.609715043127, + -16636.517871339325, -13755.712097776834, -9853.804464189927, + -5807.956781384062, -2422.95606980799, -724.0063238152486, + -444.9124695491631, -1087.9555598567383, -1910.3678094607235, + -1886.4231027914352, -361.9782797811701, 2668.3183660749614, + 6751.530095304984, 10586.840464800312, 13402.022890472175, + 14255.211039858674, 13165.945433053477, 11328.386060158613, + 10616.641439191531, 13408.21239053512, 21993.175921594288, + 37748.22820482588, 61614.33753519627, 90080.7081626652, + 122262.47148708858, 154679.74948822637, 179730.33511205885 + ], + "flow:branch49_seg0:J29": [ + 25.185838203098378, 31.39427272743701, 37.16716157194628, + 41.99125909111008, 45.44087734108592, 47.26525022736747, + 47.426242356959904, 46.11920283163973, 43.58389699358194, + 40.16512461388422, 36.23121090413058, 31.97079729740868, + 27.57302874044767, 23.11267261818354, 18.580215169623653, + 14.033262532174543, 9.462483172599525, 4.945903170835055, + 0.6270007048950798, -3.4121470033731907, -7.040272536507518, + -10.189657111919267, -12.854589076411033, -15.053778941126103, + -16.849763578901033, -18.297557509489177, -19.426717034039317, + -20.237257218590532, -20.704897900610366, -20.80267698163818, + -20.54313717179129, -20.001051241391778, -19.314251283160228, + -18.698709436412486, -18.38131393182386, -18.566555973776694, + -19.36420025303657, -20.789350494043457, -22.681348330453936, + -24.769988016110865, -26.73189029917408, -28.200359693759314, + -28.893437892616994, -28.641005823009344, -27.43128983263653, + -25.343962060956425, -22.61566390445685, -19.50048950769897, + -16.2312412035188, -13.032764208287821, -10.007079473680902, + -7.214256583204154, -4.666531672287247, -2.346330766023589, + -0.2753182273511195, 1.513557303270782, 2.9512104169685562, + 3.957107505645254, 4.475935173703232, 4.50707160987559, 4.098099388909144, + 3.3602406222346994, 2.4622421940546757, 1.5378270938470031, + 0.7138388533073915, 0.05835661495178196, -0.4365274317414175, + -0.8242035046503965, -1.1831012287101748, -1.5849395655981016, + -2.059080808198676, -2.5901498196470776, -3.1085627278285246, + -3.52309626726806, -3.7509081041910806, -3.7444194245106543, + -3.5070067584237674, -3.1017330465917703, -2.6227349627550507, + -2.1636954173931486, -1.7973924117014535, -1.5386892423111849, + -1.348638830310072, -1.1516200546528277, -0.8627578496258875, + -0.4294510647351408, 0.15053713253603898, 0.8189825427255277, + 1.463233817783645, 1.9871592954226303, 2.333251779148189, + 2.5383551899425756, 2.759114568535207, 3.256004338534854, + 4.354783791381519, 6.371689668956539, 9.496423611271863, + 13.82500108405491, 19.173221378543875, 25.185838203098378 + ], + "pressure:branch49_seg0:J29": [ + 73161.10925893635, 90178.53587962368, 105728.18311420319, + 118272.61265015841, 126849.01467242278, 130882.92378119341, + 130371.23185848637, 125903.58043675816, 118288.4217264577, + 108444.0506254929, 97348.16479773073, 85491.28321253779, + 73295.60195830745, 60975.96013269498, 48445.932957922385, + 35909.709897273744, 23330.26233010708, 10904.971109141252, + -822.4433145918977, -11732.408335118793, -21484.32126515402, + -29851.00573383961, -36907.15970247272, -42705.47040276774, + -47421.395573292066, -51217.86935629352, -54139.41439900401, + -56171.74221044787, -57242.58024055316, -57290.19620052381, + -56365.1754880588, -54733.34640386022, -52817.9830833969, + -51221.47645509877, -50592.27437756365, -51460.248052282725, + -54039.105984902315, -58313.31551840263, -63760.18388943323, + -69531.48632323268, -74748.59840369546, -78410.25699852296, + -79784.7987940786, -78457.93809567101, -74593.3660378529, + -68382.20663657192, -60494.84408488444, -51788.97057713451, + -42746.919111840245, -34004.19333071999, -25823.60136895032, + -18245.4574020305, -11375.696466891965, -5139.9097300351705, + 426.99929652009104, 5161.714100036032, 8883.84061255295, + 11379.202212740445, 12505.726488131457, 12298.463736118782, + 10934.792591597163, 8744.584145923165, 6216.354335265997, + 3699.001446023021, 1511.247876180336, -188.19047531001704, + -1462.8371517113535, -2489.150918057091, -3484.5630696639846, + -4636.530527084094, -5982.191376806389, -7459.926288788619, + -8863.92707212229, -9913.112527940617, -10405.79187196636, + -10242.755270560843, -9467.852495134239, -8264.316419985602, + -6931.369769113345, -5710.671924994179, -4761.611226124207, + -4108.7979309412785, -3608.6589982581945, -3035.7144463537043, + -2163.735288446547, -872.9708150733726, 801.2492878025104, + 2669.7513681271816, 4398.279556809289, 5742.175864351763, + 6586.617065651862, 7102.0039547483475, 7787.725874474862, + 9417.053199093976, 12896.321975714383, 19127.470233832155, + 28415.293606293533, 40983.66743346309, 56387.94202993793, + 73161.10925893635 + ], + "flow:J29:branch50_seg0": [ + 8.755657081356022, 10.904061341511358, 12.897599159840938, + 14.558996871544103, 15.74238195559734, 16.36205300564943, + 16.406028645998088, 15.943904960286623, 15.058845879843389, + 13.870011383164833, 12.50595495679297, 11.030228453628007, + 9.507810623439802, 7.9646420876936705, 6.396164579810152, + 4.823322725981292, 3.242592926616366, 1.6805140979799145, + 0.18835133411685748, -1.2064533945487665, -2.458616796954638, + -3.5445627217821043, -4.463137595422056, -5.220854767314835, + -5.839486707686506, -6.338120699548822, -6.726686257839112, + -7.004987355927323, -7.164529621299113, -7.1959889728085145, + -7.103968130993734, -6.914885742017087, -6.676741816445737, + -6.464737306437058, -6.357426183956341, -6.42530601046758, + -6.70544868046486, -7.202596227988075, -7.8601916920768025, + -8.583573151034024, -9.261094925200007, -9.765581943246076, + -10.000024169379211, -9.906286289798993, -9.48177404118936, + -8.754310072428071, -7.806333288869387, -6.726591557791113, + -5.594719005027109, -4.488670893924385, -3.443151299514438, + -2.4782299420877525, -1.598251923708335, -0.7969029047523034, + -0.08190553144690266, 0.5351108844859194, 1.0301536533009295, + 1.3752597300468203, 1.5514601568591981, 1.5590289692332704, + 1.4147882810187382, 1.1573745056551616, 0.845876666701593, + 0.5261430386660487, 0.2417556859265624, 0.016112477525330855, + -0.15409730997119575, -0.28767004240447064, -0.4118051037001308, + -0.5512485573953061, -0.7157982974222377, -0.899842942178089, + -1.0790500016879419, -1.2216369162615661, -1.2991026192929687, + -1.295281386172753, -1.211668047701764, -1.070417419178986, + -0.9043601271350111, -0.7457976937753216, -0.6197156808706146, + -0.5308995361331941, -0.4654906812826289, -0.39711683644698476, + -0.2964151752680512, -0.1454558979298911, 0.05613319124917532, + 0.2879464446072845, 0.5105213180361562, 0.6908290570353561, + 0.8094083227638174, 0.8796217948600195, 0.9564743980215512, + 1.1307586543887835, 1.5154649157893172, 2.220143521344759, + 3.308929307515831, 4.814365089423873, 6.671764116151863, 8.755657081356022 + ], + "pressure:J29:branch50_seg0": [ + 73161.10925893635, 90178.53587962368, 105728.18311420319, + 118272.61265015841, 126849.01467242278, 130882.92378119341, + 130371.23185848637, 125903.58043675816, 118288.4217264577, + 108444.0506254929, 97348.16479773073, 85491.28321253779, + 73295.60195830745, 60975.96013269498, 48445.932957922385, + 35909.709897273744, 23330.26233010708, 10904.971109141252, + -822.4433145918977, -11732.408335118793, -21484.32126515402, + -29851.00573383961, -36907.15970247272, -42705.47040276774, + -47421.395573292066, -51217.86935629352, -54139.41439900401, + -56171.74221044787, -57242.58024055316, -57290.19620052381, + -56365.1754880588, -54733.34640386022, -52817.9830833969, + -51221.47645509877, -50592.27437756365, -51460.248052282725, + -54039.105984902315, -58313.31551840263, -63760.18388943323, + -69531.48632323268, -74748.59840369546, -78410.25699852296, + -79784.7987940786, -78457.93809567101, -74593.3660378529, + -68382.20663657192, -60494.84408488444, -51788.97057713451, + -42746.919111840245, -34004.19333071999, -25823.60136895032, + -18245.4574020305, -11375.696466891965, -5139.9097300351705, + 426.99929652009104, 5161.714100036032, 8883.84061255295, + 11379.202212740445, 12505.726488131457, 12298.463736118782, + 10934.792591597163, 8744.584145923165, 6216.354335265997, + 3699.001446023021, 1511.247876180336, -188.19047531001704, + -1462.8371517113535, -2489.150918057091, -3484.5630696639846, + -4636.530527084094, -5982.191376806389, -7459.926288788619, + -8863.92707212229, -9913.112527940617, -10405.79187196636, + -10242.755270560843, -9467.852495134239, -8264.316419985602, + -6931.369769113345, -5710.671924994179, -4761.611226124207, + -4108.7979309412785, -3608.6589982581945, -3035.7144463537043, + -2163.735288446547, -872.9708150733726, 801.2492878025104, + 2669.7513681271816, 4398.279556809289, 5742.175864351763, + 6586.617065651862, 7102.0039547483475, 7787.725874474862, + 9417.053199093976, 12896.321975714383, 19127.470233832155, + 28415.293606293533, 40983.66743346309, 56387.94202993793, + 73161.10925893635 + ], + "flow:J29:branch88_seg0": [ + 16.430181121742308, 20.490211385925903, 24.269562412105174, + 27.432262219565896, 29.69849538548906, 30.90319722171724, + 31.02021371096204, 30.175297871352775, 28.5250511137388, + 26.295113230719323, 23.725255947336336, 20.940568843781463, + 18.065218117005237, 15.148030530489391, 12.184050589813294, + 9.209939806194042, 6.219890245982276, 3.265389072855233, + 0.43864937077820343, -2.205693608823958, -4.581655739553499, + -6.645094390136272, -8.391451480988508, -9.832924173811985, + -11.010276871215, -11.959436809940234, -12.700030776200734, + -13.232269862664154, -13.540368279309991, -13.606688008830554, + -13.439169040797186, -13.086165499373916, -12.637509466712574, + -12.233972129975955, -12.023887747866976, -12.141249963308915, + -12.658751572571722, -13.586754266054811, -14.821156638377893, + -16.18641486507744, -17.470795373974465, -18.434777750513316, + -18.893413723237668, -18.73471953321034, -17.949515791447613, + -16.589651988528427, -14.809330615587323, -12.773897949907742, + -10.636522198491635, -8.544093314363296, -6.563928174166468, + -4.736026641116397, -3.0682797485789504, -1.549427861271317, + -0.19341269590421512, 0.978446418784953, 1.921056763667592, + 2.581847775598454, 2.9244750168441076, 2.9480426406422944, + 2.68331110789033, 2.202866116579587, 1.6163655273531414, + 1.0116840551810047, 0.4720831673808765, 0.04224413742645161, + -0.28243012177019944, -0.5365334622461169, -0.7712961250100295, + -1.033691008202866, -1.343282510776477, -1.690306877469093, + -2.0295127261406245, -2.301459351006493, -2.4518054848980575, + -2.4491380383379178, -2.2953387107220125, -2.0313156274127744, + -1.7183748356200905, -1.4178977236178145, -1.1776767308308695, + -1.0077897061779895, -0.8831481490274475, -0.7545032182058607, + -0.56634267435781, -0.28399516680523484, 0.09440394128690123, + 0.5310360981182584, 0.9527124997474994, 1.2963302383872874, + 1.5238434563843313, 1.6587333950825727, 1.8026401705136161, + 2.1252456841461322, 2.8393188755920917, 4.151546147611814, + 6.187494303756092, 9.010635994631091, 12.50145726239218, + 16.430181121742308 + ], + "pressure:J29:branch88_seg0": [ + 73161.10925893635, 90178.53587962368, 105728.18311420319, + 118272.61265015841, 126849.01467242278, 130882.92378119341, + 130371.23185848637, 125903.58043675816, 118288.4217264577, + 108444.0506254929, 97348.16479773073, 85491.28321253779, + 73295.60195830745, 60975.96013269498, 48445.932957922385, + 35909.709897273744, 23330.26233010708, 10904.971109141252, + -822.4433145918977, -11732.408335118793, -21484.32126515402, + -29851.00573383961, -36907.15970247272, -42705.47040276774, + -47421.395573292066, -51217.86935629352, -54139.41439900401, + -56171.74221044787, -57242.58024055316, -57290.19620052381, + -56365.1754880588, -54733.34640386022, -52817.9830833969, + -51221.47645509877, -50592.27437756365, -51460.248052282725, + -54039.105984902315, -58313.31551840263, -63760.18388943323, + -69531.48632323268, -74748.59840369546, -78410.25699852296, + -79784.7987940786, -78457.93809567101, -74593.3660378529, + -68382.20663657192, -60494.84408488444, -51788.97057713451, + -42746.919111840245, -34004.19333071999, -25823.60136895032, + -18245.4574020305, -11375.696466891965, -5139.9097300351705, + 426.99929652009104, 5161.714100036032, 8883.84061255295, + 11379.202212740445, 12505.726488131457, 12298.463736118782, + 10934.792591597163, 8744.584145923165, 6216.354335265997, + 3699.001446023021, 1511.247876180336, -188.19047531001704, + -1462.8371517113535, -2489.150918057091, -3484.5630696639846, + -4636.530527084094, -5982.191376806389, -7459.926288788619, + -8863.92707212229, -9913.112527940617, -10405.79187196636, + -10242.755270560843, -9467.852495134239, -8264.316419985602, + -6931.369769113345, -5710.671924994179, -4761.611226124207, + -4108.7979309412785, -3608.6589982581945, -3035.7144463537043, + -2163.735288446547, -872.9708150733726, 801.2492878025104, + 2669.7513681271816, 4398.279556809289, 5742.175864351763, + 6586.617065651862, 7102.0039547483475, 7787.725874474862, + 9417.053199093976, 12896.321975714383, 19127.470233832155, + 28415.293606293533, 40983.66743346309, 56387.94202993793, + 73161.10925893635 + ], + "flow:branch54_seg0:J30": [ + 140.97940573553603, 159.0042878427228, 168.66951503997288, + 169.28198849870486, 161.73717358323188, 147.4722937573231, + 128.60646633127948, 107.98228696227227, 88.0104213888235, + 69.07531539696933, 52.77176385846637, 38.25713457923729, + 24.673125837584674, 11.942697075141597, -1.2022540380755053, + -14.121053296742518, -26.689248962246843, -38.47905652881575, + -48.00545131565847, -55.552606878680805, -60.75221864912124, + -63.7765057270695, -65.5026666574498, -66.30686298227607, + -66.68877891071676, -66.76001611639572, -66.22353561786885, + -64.72273198449624, -61.95571823375, -57.91373132773414, + -53.046445659877904, -48.48848955344442, -45.32852739002698, + -44.887280400141556, -48.02817583181801, -54.84240339001821, + -64.44862658312523, -75.46413336148949, -85.88061054344928, + -93.23042823638094, -96.27927586154178, -93.86573387622362, + -86.05218370106036, -73.81006103064627, -59.25325033859682, + -43.506969356308, -28.745229017365784, -16.31192541788428, + -6.021275818179279, 1.6112249788262134, 7.52067509437205, + 12.432297556166885, 16.446321106386705, 20.08866637225039, + 22.88930574253276, 24.290859650014003, 23.962034137300318, + 21.529048742262354, 17.162256867858957, 11.478496004855366, + 5.4804821397733665, -0.111419836964889, -4.211971317417821, + -6.602879330446962, -7.46473078526838, -7.199025176613201, + -6.6619822418651236, -6.5951523011732744, -7.408461949556122, + -9.15324809360222, -11.337884209089212, -13.391092631261845, + -14.534246796180224, -14.250889385951934, -12.504016943356447, + -9.671047568418716, -6.369460417713244, -3.3876683006265256, + -1.4547248556393273, -0.6441996872887938, -0.8176565960593004, + -1.3902393214231743, -1.579234398881527, -0.7785507846551104, + 1.2442331920195904, 4.249404500310032, 7.478553497389897, + 10.18560853188537, 11.502220876436576, 11.288939071881162, + 10.103278102834068, 9.210129217209847, 10.438502225597956, + 15.704541376764197, 26.483278336077106, 43.59314686483629, + 65.48345754318078, 91.43495198599294, 117.9590291551755, + 140.97940573553603 + ], + "pressure:branch54_seg0:J30": [ + 181509.9708549473, 197604.58285193844, 204749.41183839922, + 199163.64874481884, 184827.26341978653, 164645.91783361495, + 140823.33468460583, 114275.90361885788, 92196.34860613632, + 71297.20780357077, 52430.286998861986, 37062.66938341344, + 20879.542507859904, 5872.465066349424, -9441.533633427505, + -25201.614453738923, -39412.91079325533, -52862.57187642546, + -62932.92827288873, -69966.32589328408, -75093.68620706625, + -77459.0855272924, -78677.75229883529, -79331.57808672384, + -79476.35204636618, -79352.00195463725, -78235.71362781493, + -75662.79411335012, -71431.24127699732, -66014.88745995532, + -59812.332162221086, -54892.66808513724, -52723.494140190145, + -54062.40505581244, -60154.15253643383, -70509.22081619814, + -83514.8981955952, -96555.68306530052, -108181.85460381114, + -114495.5903319523, -114590.57767277873, -108432.63551720929, + -95946.73633146229, -78589.87999893393, -60468.625828609394, + -42122.91523745078, -24755.025620138797, -11970.658416257458, + -1447.4956800512864, 6531.94998168625, 12140.193539332498, + 17882.010812903365, 22170.281496792064, 25768.894300893728, + 28797.170134763346, 29303.787954336058, 27558.21242918809, + 23412.655918777164, 17213.769253893195, 9595.437143785675, + 2699.534701920517, -3168.916315876193, -7277.9355834037015, + -8812.390989970278, -8964.134780126518, -8275.765440894755, + -7621.442628342739, -7996.826524398508, -9607.627726025707, + -12241.734180709522, -14918.49872984639, -16952.06366766102, + -17672.65078233379, -16337.353492348924, -13296.11896093456, + -9382.691895655913, -5537.728399961103, -2227.8605071822667, + -748.7383362333178, -685.5559889475754, -1270.0467345703248, + -1966.9125472750397, -1768.3840254141408, -48.48336853674413, + 3077.9374941031856, 7205.534807289175, 10884.751415440145, + 13391.928471106117, 14105.63866145993, 12872.114808694598, + 11099.958480561243, 10766.569980313529, 14177.283284841616, + 23533.752015826114, 40016.0571630738, 64766.41772234085, + 93355.46077434151, 124868.04736019847, 157879.84584058, 181509.9708549473 + ], + "flow:J30:branch55_seg0": [ + 74.03822967044928, 83.71863451806432, 89.03122479367232, + 89.58413635372538, 85.80706362704349, 78.43599158132481, + 68.56497811706467, 57.71914576085835, 47.12098765690607, 37.0558998801806, + 28.38108160842806, 20.631887167169513, 13.417357992929604, + 6.64936721557007, -0.3240782145044451, -7.158521333562643, + -13.843284927751894, -20.11814844795976, -25.206328470948648, + -29.256336916085452, -32.064512575937385, -33.71111848569849, + -34.658137854052406, -35.10195375514834, -35.31189608581095, + -35.35686053903476, -35.08427911061829, -34.311021295429164, + -32.87364716515081, -30.762261780971517, -28.200879847723435, + -25.78160524180113, -24.069374891660743, -23.768913127888823, + -25.34444316215416, -28.864282449822415, -33.87107043814472, + -39.678998950028934, -45.19987407367951, -49.15780252478006, + -50.87279888493268, -49.718388948432704, -45.696151547180996, + -39.315250527453834, -31.67323312423902, -23.368312621830814, + -15.538129178069418, -8.918855696316589, -3.4209965971216154, + 0.6695609824257852, 3.8305767833045343, 6.4572073002598716, + 8.595924148523771, 10.535757884645188, 12.03598055702275, + 12.811172537309165, 12.681129916448185, 11.445761723349216, + 9.180106291128862, 6.211978828909738, 3.0425219236050918, + 0.06998304821311756, -2.1270159655709233, -3.43460267779192, + -3.9273652807036137, -3.810583033346893, -3.533193625122797, + -3.487682269607015, -3.8990869793237883, -4.802195661953628, + -5.947329554410157, -7.03619358737932, -7.661735076223925, + -7.5421742706580295, -6.6525687723471005, -5.178655037524513, + -3.4451948571896196, -1.8603546362497276, -0.8166311064128473, + -0.36068345133268465, -0.4298842934710309, -0.7242166448919757, + -0.8326641401485522, -0.43319457996598154, 0.6095287103704691, + 2.1734662527268487, 3.8787984842922114, 5.325899229348897, + 6.0516847254277675, 5.973373661850953, 5.36791539393282, + 4.885976830637133, 5.485717539672606, 8.174766972434815, + 13.755905373980571, 22.665979133708568, 34.1331336521002, + 47.759316306679025, 61.794483186761056, 74.03822967044928 + ], + "pressure:J30:branch55_seg0": [ + 181509.9708549473, 197604.58285193844, 204749.41183839922, + 199163.64874481884, 184827.26341978653, 164645.91783361495, + 140823.33468460583, 114275.90361885788, 92196.34860613632, + 71297.20780357077, 52430.286998861986, 37062.66938341344, + 20879.542507859904, 5872.465066349424, -9441.533633427505, + -25201.614453738923, -39412.91079325533, -52862.57187642546, + -62932.92827288873, -69966.32589328408, -75093.68620706625, + -77459.0855272924, -78677.75229883529, -79331.57808672384, + -79476.35204636618, -79352.00195463725, -78235.71362781493, + -75662.79411335012, -71431.24127699732, -66014.88745995532, + -59812.332162221086, -54892.66808513724, -52723.494140190145, + -54062.40505581244, -60154.15253643383, -70509.22081619814, + -83514.8981955952, -96555.68306530052, -108181.85460381114, + -114495.5903319523, -114590.57767277873, -108432.63551720929, + -95946.73633146229, -78589.87999893393, -60468.625828609394, + -42122.91523745078, -24755.025620138797, -11970.658416257458, + -1447.4956800512864, 6531.94998168625, 12140.193539332498, + 17882.010812903365, 22170.281496792064, 25768.894300893728, + 28797.170134763346, 29303.787954336058, 27558.21242918809, + 23412.655918777164, 17213.769253893195, 9595.437143785675, + 2699.534701920517, -3168.916315876193, -7277.9355834037015, + -8812.390989970278, -8964.134780126518, -8275.765440894755, + -7621.442628342739, -7996.826524398508, -9607.627726025707, + -12241.734180709522, -14918.49872984639, -16952.06366766102, + -17672.65078233379, -16337.353492348924, -13296.11896093456, + -9382.691895655913, -5537.728399961103, -2227.8605071822667, + -748.7383362333178, -685.5559889475754, -1270.0467345703248, + -1966.9125472750397, -1768.3840254141408, -48.48336853674413, + 3077.9374941031856, 7205.534807289175, 10884.751415440145, + 13391.928471106117, 14105.63866145993, 12872.114808694598, + 11099.958480561243, 10766.569980313529, 14177.283284841616, + 23533.752015826114, 40016.0571630738, 64766.41772234085, + 93355.46077434151, 124868.04736019847, 157879.84584058, 181509.9708549473 + ], + "flow:J30:branch104_seg0": [ + 36.26777190168887, 40.80575730830875, 43.17921308520536, + 43.22579404790368, 41.194885523932264, 37.464803960386924, + 32.59078470089791, 27.293630411900605, 22.205293411782616, + 17.39146717659823, 13.25428737054454, 9.581784310894779, 6.13004202476296, + 2.8986814859284444, -0.4457839350452664, -3.739165274741786, + -6.92825962528129, -9.919734643069736, -12.327957032440649, + -14.228765452622639, -15.530818718714023, -16.282724268455745, + -16.709711398445783, -16.908173113773017, -17.003711631130525, + -17.020490641890614, -16.8805843821315, -16.490403516190504, + -15.77440754075004, -14.73200907643055, -13.484529243071133, + -12.324667535484085, -11.535411775144564, -11.452355485067073, + -12.292677985966346, -14.071421880820344, -16.5593151364629, + -19.384848273560316, -22.04509968360694, -23.896591698264498, + -24.63624993524418, -23.97011799159646, -21.928204643459775, + -18.75939483470875, -15.013397641032782, -10.976231138293032, + -7.2100714011758695, -4.047618481996942, -1.4381486868080438, + 0.4911528128357187, 1.9876543006418517, 3.2312033864772105, + 4.251568769746447, 5.177743474140419, 5.885787628833119, + 6.230023037469217, 6.1271984176550225, 5.4825902045368915, + 4.346282086162574, 2.8760515584577826, 1.3399614354655132, + -0.08475650757254875, -1.121185151297895, -1.7144173391944535, + -1.918977537817069, -1.8404042699898964, -1.699855568922846, + -1.686841534437285, -1.9027068109636338, -2.3575044997301164, + -2.9209777522754226, -3.4453071516677247, -3.7291526688522136, + -3.644025932602653, -3.182622004586659, -2.4473697673021926, + -1.596859583091068, -0.8372013105179605, -0.3514110319388149, + -0.15555745620066133, -0.20982073269849918, -0.3603136432396574, + -0.4053968810192837, -0.1905499217516724, 0.3385602412449549, + 1.1183710489877405, 1.9459760454485477, 2.632563562521779, + 2.956724307370581, 2.88736205152444, 2.5744041185894333, + 2.3492791664584662, 2.683877098712974, 4.071162218942378, + 6.878466956167085, 11.313958341449933, 16.959634688310956, + 23.638131850837492, 30.41460834031185, 36.26777190168887 + ], + "pressure:J30:branch104_seg0": [ + 181509.9708549473, 197604.58285193844, 204749.41183839922, + 199163.64874481884, 184827.26341978653, 164645.91783361495, + 140823.33468460583, 114275.90361885788, 92196.34860613632, + 71297.20780357077, 52430.286998861986, 37062.66938341344, + 20879.542507859904, 5872.465066349424, -9441.533633427505, + -25201.614453738923, -39412.91079325533, -52862.57187642546, + -62932.92827288873, -69966.32589328408, -75093.68620706625, + -77459.0855272924, -78677.75229883529, -79331.57808672384, + -79476.35204636618, -79352.00195463725, -78235.71362781493, + -75662.79411335012, -71431.24127699732, -66014.88745995532, + -59812.332162221086, -54892.66808513724, -52723.494140190145, + -54062.40505581244, -60154.15253643383, -70509.22081619814, + -83514.8981955952, -96555.68306530052, -108181.85460381114, + -114495.5903319523, -114590.57767277873, -108432.63551720929, + -95946.73633146229, -78589.87999893393, -60468.625828609394, + -42122.91523745078, -24755.025620138797, -11970.658416257458, + -1447.4956800512864, 6531.94998168625, 12140.193539332498, + 17882.010812903365, 22170.281496792064, 25768.894300893728, + 28797.170134763346, 29303.787954336058, 27558.21242918809, + 23412.655918777164, 17213.769253893195, 9595.437143785675, + 2699.534701920517, -3168.916315876193, -7277.9355834037015, + -8812.390989970278, -8964.134780126518, -8275.765440894755, + -7621.442628342739, -7996.826524398508, -9607.627726025707, + -12241.734180709522, -14918.49872984639, -16952.06366766102, + -17672.65078233379, -16337.353492348924, -13296.11896093456, + -9382.691895655913, -5537.728399961103, -2227.8605071822667, + -748.7383362333178, -685.5559889475754, -1270.0467345703248, + -1966.9125472750397, -1768.3840254141408, -48.48336853674413, + 3077.9374941031856, 7205.534807289175, 10884.751415440145, + 13391.928471106117, 14105.63866145993, 12872.114808694598, + 11099.958480561243, 10766.569980313529, 14177.283284841616, + 23533.752015826114, 40016.0571630738, 64766.41772234085, + 93355.46077434151, 124868.04736019847, 157879.84584058, 181509.9708549473 + ], + "flow:J30:branch141_seg0": [ + 30.673404163398104, 34.47989601634892, 36.45907716109419, + 36.47205809707699, 34.735224432253325, 31.571498215612664, + 27.45070351331492, 22.96951078951244, 18.68414032013506, + 14.627948340192738, 11.136394879490723, 8.04346310116903, + 5.1257258198904285, 2.3946483736447743, -0.43239188852410476, + -3.2233666884423777, -5.917704409217205, -8.441173437788596, + -10.47116581226938, -12.067504509972535, -13.156887354473927, + -13.782662972912242, -14.13481740495229, -14.296736113356092, + -14.373171193775823, -14.382664935472286, -14.258672125119032, + -13.921307172879883, -13.307663527852666, -12.419460470331684, + -11.361036569082758, -10.38221677615932, -9.723740723220184, + -9.666011787186457, -10.39105468369782, -11.906699059375448, + -14.018241008518396, -16.400286137900046, -18.635636786164085, + -20.176034013336682, -20.770227041365082, -20.17722693619513, + -18.427827510419647, -15.73541566848357, -12.566619573324923, + -9.162425596184153, -5.997028438120506, -3.3454512395707487, + -1.1621305342495805, 0.45051118356467496, 1.7024440104256768, + 2.743886869429812, 3.5988281881164834, 4.37516501346481, + 4.9675375566769295, 5.249664075235498, 5.153705803197206, + 4.600696814376455, 3.6358684905675087, 2.3904656174876084, + 1.0979987807020124, -0.09664637760538441, -0.9637702005490855, + -1.4538593134605817, -1.6183879667477392, -1.5480378732767397, + -1.4289330478197055, -1.4206284971287824, -1.6066681592685574, + -1.9935479319183447, -2.469576902403512, -2.9095918922147708, + -3.1433590511040066, -3.064689182691323, -2.66882616642265, + -2.0450227635921086, -1.3274059774325262, -0.6901123538588554, + -0.2866827172876569, -0.12795877975545755, -0.17795156988979086, + -0.30570903329154775, -0.3411733777137204, -0.15480628293748439, + 0.2961442404041517, 0.9575671985954977, 1.6537789676492245, + 2.2271457400148083, 2.4938118436383, 2.4282033585056455, 2.16095859031193, + 1.974873220114296, 2.2689075872122806, 3.45861218538702, + 5.848906005929583, 9.613209389678177, 14.39068920276947, + 20.037503828476055, 25.749937628102067, 30.673404163398104 + ], + "pressure:J30:branch141_seg0": [ + 181509.9708549473, 197604.58285193844, 204749.41183839922, + 199163.64874481884, 184827.26341978653, 164645.91783361495, + 140823.33468460583, 114275.90361885788, 92196.34860613632, + 71297.20780357077, 52430.286998861986, 37062.66938341344, + 20879.542507859904, 5872.465066349424, -9441.533633427505, + -25201.614453738923, -39412.91079325533, -52862.57187642546, + -62932.92827288873, -69966.32589328408, -75093.68620706625, + -77459.0855272924, -78677.75229883529, -79331.57808672384, + -79476.35204636618, -79352.00195463725, -78235.71362781493, + -75662.79411335012, -71431.24127699732, -66014.88745995532, + -59812.332162221086, -54892.66808513724, -52723.494140190145, + -54062.40505581244, -60154.15253643383, -70509.22081619814, + -83514.8981955952, -96555.68306530052, -108181.85460381114, + -114495.5903319523, -114590.57767277873, -108432.63551720929, + -95946.73633146229, -78589.87999893393, -60468.625828609394, + -42122.91523745078, -24755.025620138797, -11970.658416257458, + -1447.4956800512864, 6531.94998168625, 12140.193539332498, + 17882.010812903365, 22170.281496792064, 25768.894300893728, + 28797.170134763346, 29303.787954336058, 27558.21242918809, + 23412.655918777164, 17213.769253893195, 9595.437143785675, + 2699.534701920517, -3168.916315876193, -7277.9355834037015, + -8812.390989970278, -8964.134780126518, -8275.765440894755, + -7621.442628342739, -7996.826524398508, -9607.627726025707, + -12241.734180709522, -14918.49872984639, -16952.06366766102, + -17672.65078233379, -16337.353492348924, -13296.11896093456, + -9382.691895655913, -5537.728399961103, -2227.8605071822667, + -748.7383362333178, -685.5559889475754, -1270.0467345703248, + -1966.9125472750397, -1768.3840254141408, -48.48336853674413, + 3077.9374941031856, 7205.534807289175, 10884.751415440145, + 13391.928471106117, 14105.63866145993, 12872.114808694598, + 11099.958480561243, 10766.569980313529, 14177.283284841616, + 23533.752015826114, 40016.0571630738, 64766.41772234085, + 93355.46077434151, 124868.04736019847, 157879.84584058, 181509.9708549473 + ], + "flow:branch55_seg0:J31": [ + 73.99750438373884, 83.69982898263866, 89.02904320492023, + 89.59808869165138, 85.84092435685275, 78.48204468642352, + 68.60829806490567, 57.780332270875455, 47.16700821446734, + 37.085388183074315, 28.420494557894674, 20.659574261710816, + 13.446564751986374, 6.678966769221772, -0.30598325604885135, + -7.129090726458882, -13.817953968653985, -20.1081876223685, + -25.19251145404501, -29.247153858458567, -32.06187129773045, + -33.70725196138812, -34.65797588958647, -35.10198913727848, + -35.311037334399046, -35.35800391737983, -35.08710877764228, + -34.316899543296735, -32.883132455305535, -30.773967254975243, + -28.211945838813023, -25.790851650279684, -24.07011489976965, + -23.761388725335358, -25.32894855591798, -28.844672484119418, + -33.840947698389044, -39.65773569577963, -45.184780245437096, + -49.15086742577997, -50.88082552317455, -49.737472509165876, + -45.71958343490526, -39.33851737421269, -31.702419237307424, + -23.397589587943518, -15.55816324440507, -8.940113478435467, + -3.433234049451829, 0.6595131766796544, 3.8178674800391725, + 6.448711041281418, 8.587283116292676, 10.529435700335222, + 12.031391070812925, 12.810931181555002, 12.686761159662481, + 11.45686642696837, 9.192079591344712, 6.229734751209101, + 3.055835029542608, 0.07490872576033353, -2.1207356049146777, + -3.4327186600009143, -3.929519522701149, -3.811927555398891, + -3.5331904088969193, -3.485949982581922, -3.895751486463955, + -4.798547731132355, -5.943632104728374, -7.033469137777006, + -7.6628488253965505, -7.545350419377578, -6.6586647029604995, + -5.1857057137173, -3.4524668476124885, -1.865032865067087, + -0.8188777289295668, -0.3599716362515962, -0.4279731718687852, + -0.7236895105604555, -0.8343646184929143, -0.4383461752264794, + 0.6030479490129707, 2.164294230197527, 3.872351690457392, + 5.325353139079935, 6.052393484961981, 5.97580573501769, 5.370373993208323, + 4.883964121222345, 5.4757279220737916, 8.152779617587127, + 13.723842826314007, 22.628393153391478, 34.0883953660612, + 47.6979586093555, 61.75141182480916, 73.99750438373884 + ], + "pressure:branch55_seg0:J31": [ + 172625.00493719202, 190971.37575913448, 200229.90322588498, + 197672.79992401405, 186116.0156361859, 167832.01782568856, + 145078.29512889474, 119832.65872011188, 97059.69930604112, + 75694.10583937295, 56809.934187573286, 40661.90763874104, + 24707.084768456603, 9715.352353598315, -5627.308247103649, + -20902.88809821146, -35392.58207453608, -49070.998363179955, + -59476.89323678484, -67312.21716597019, -72919.16241055712, + -75774.80815472327, -77387.86775218327, -78165.94697161765, + -78431.31600103258, -78425.80998993097, -77542.722243095, + -75373.1418215154, -71638.34627872644, -66598.12117997138, + -60653.774181439825, -55557.08616130015, -52670.32955914829, + -53058.93636102554, -57954.60751890776, -67130.11922131313, + -79166.19792722177, -92165.1859294962, -104007.49688347727, + -111401.58063173832, -113140.3218706831, -108594.30596437327, + -97690.55714404273, -81705.80727671561, -64339.45662035606, + -46104.520721062436, -28724.665743927937, -15329.339179063705, + -4093.982427839016, 4284.818818323747, 10378.079976855537, + 16202.44552765306, 20634.13407732454, 24488.152921519704, + 27668.186668125643, 28720.462816508112, 27642.64670868084, + 24176.110620140247, 18525.110782576932, 11447.590737618233, + 4457.382206515643, -1712.6731257774122, -6108.5583317446435, + -8253.06118124872, -8815.75176083896, -8303.614596318674, + -7656.120654387989, -7817.430604360112, -9117.73489192126, + -11482.550424941306, -14065.526392028369, -16244.066950120845, + -17276.520514300933, -16407.10639846982, -13856.300291262136, + -10252.225550827623, -6457.892667374305, -3049.7953977579687, + -1211.383439260451, -739.2049927444386, -1111.266767395571, + -1795.9623641383446, -1801.6032883689145, -477.30689918664575, + 2277.114318211508, 6072.7851316954375, 9817.422371419056, + 12638.800236008567, 13730.183585206107, 12962.81902619804, + 11370.391502558989, 10701.436639883541, 13163.443038312747, + 20965.195548272954, 35545.711076381114, 58100.42776891173, + 85006.58140934988, 115475.8175452145, 147841.0414287296, + 172625.00493719202 + ], + "flow:J31:branch56_seg0": [ + 31.972489552001775, 36.04266647189618, 38.216661523462314, + 38.32766522465131, 36.60801919052325, 33.37396598037685, + 29.08972088981724, 24.43137220397808, 19.906599109261716, + 15.606326002045535, 11.9319569946675, 8.641943067662442, + 5.562669772968013, 2.6785010453632756, -0.3165512757213729, + -3.2342958170121787, -6.083340398180084, -8.771655127870405, + -10.913836039785561, -12.614363681616597, -13.791581991902468, + -14.463458122540299, -14.8522968784814, -15.031307453209521, + -15.113267078392862, -15.129200888560964, -15.004125076715928, + -14.659758721215276, -14.028070521850008, -13.108868607408754, + -12.001044748835907, -10.971287876112184, -10.257817647856394, + -10.163706437544711, -10.885420857592566, -12.44206945854048, + -14.61518320955266, -17.118582036033473, -19.474977787096915, + -21.123744757873872, -21.79945647579255, -21.235412393182596, + -19.441162645692557, -16.64546091689667, -13.352496454598699, + -9.792416816132839, -6.444899907959911, -3.6537263737720407, + -1.3283938262807748, 0.38975646433309147, 1.711306317477059, + 2.8276093571510965, 3.7301957428634354, 4.552403350841004, + 5.1850261207904085, 5.496870940204349, 5.4185214884908355, + 4.864090323216122, 3.868330041563483, 2.5834850248671506, + 1.223852557797362, -0.04544809907684171, -0.9635275764171328, + -1.4981780460964422, -1.6911638668811233, -1.6266860879224891, + -1.5039171172702441, -1.491301653837229, -1.6793800781442119, + -2.078740125224042, -2.5733681748682193, -3.0352966599466473, + -3.292378822438808, -3.2213024085972477, -2.821288783012915, + -2.1770718019831516, -1.4314927050782844, -0.7564310297526612, + -0.3244525929132487, -0.1449268768000655, -0.1859834704258817, + -0.3172115011122934, -0.358430566566494, -0.1745025631544466, + 0.2880685525333555, 0.9689477288505838, 1.7009604617373, + 2.3144640996047423, 2.60566311479793, 2.5505515769578215, + 2.2796344900403644, 2.078870619066426, 2.364890742526018, + 3.5693589029890154, 6.0293199597954, 9.932794971896824, + 14.898511646316933, 20.758128399355577, 26.794751400033128, + 31.972489552001775 + ], + "pressure:J31:branch56_seg0": [ + 172625.00493719202, 190971.37575913448, 200229.90322588498, + 197672.79992401405, 186116.0156361859, 167832.01782568856, + 145078.29512889474, 119832.65872011188, 97059.69930604112, + 75694.10583937295, 56809.934187573286, 40661.90763874104, + 24707.084768456603, 9715.352353598315, -5627.308247103649, + -20902.88809821146, -35392.58207453608, -49070.998363179955, + -59476.89323678484, -67312.21716597019, -72919.16241055712, + -75774.80815472327, -77387.86775218327, -78165.94697161765, + -78431.31600103258, -78425.80998993097, -77542.722243095, + -75373.1418215154, -71638.34627872644, -66598.12117997138, + -60653.774181439825, -55557.08616130015, -52670.32955914829, + -53058.93636102554, -57954.60751890776, -67130.11922131313, + -79166.19792722177, -92165.1859294962, -104007.49688347727, + -111401.58063173832, -113140.3218706831, -108594.30596437327, + -97690.55714404273, -81705.80727671561, -64339.45662035606, + -46104.520721062436, -28724.665743927937, -15329.339179063705, + -4093.982427839016, 4284.818818323747, 10378.079976855537, + 16202.44552765306, 20634.13407732454, 24488.152921519704, + 27668.186668125643, 28720.462816508112, 27642.64670868084, + 24176.110620140247, 18525.110782576932, 11447.590737618233, + 4457.382206515643, -1712.6731257774122, -6108.5583317446435, + -8253.06118124872, -8815.75176083896, -8303.614596318674, + -7656.120654387989, -7817.430604360112, -9117.73489192126, + -11482.550424941306, -14065.526392028369, -16244.066950120845, + -17276.520514300933, -16407.10639846982, -13856.300291262136, + -10252.225550827623, -6457.892667374305, -3049.7953977579687, + -1211.383439260451, -739.2049927444386, -1111.266767395571, + -1795.9623641383446, -1801.6032883689145, -477.30689918664575, + 2277.114318211508, 6072.7851316954375, 9817.422371419056, + 12638.800236008567, 13730.183585206107, 12962.81902619804, + 11370.391502558989, 10701.436639883541, 13163.443038312747, + 20965.195548272954, 35545.711076381114, 58100.42776891173, + 85006.58140934988, 115475.8175452145, 147841.0414287296, + 172625.00493719202 + ], + "flow:J31:branch84_seg0": [ + 42.02501483173707, 47.65716251074205, 50.81238168145731, + 51.270423467001265, 49.23290516633022, 45.10807870604713, + 39.51857717508582, 33.34896006689645, 27.260409105206854, + 21.479062181029022, 16.488537563227304, 12.017631194047455, + 7.88389497901823, 4.000465723856813, 0.0105680196683951, + -3.8947949094450385, -7.734613570472788, -11.336532494497442, + -14.278675414260503, -16.632790176842292, -18.270289305827127, + -19.243793838849903, -19.80567901110535, -20.070681684069356, + -20.197770256005462, -20.22880302882101, -20.082983700926523, + -19.65714082208077, -18.85506193345523, -17.665098647567063, + -16.210901089975653, -14.819563774168044, -13.812297251912433, + -13.597682287790208, -14.443527698325003, -16.402603025578966, + -19.225764488835562, -22.53915365974648, -25.709802458340075, + -28.027122667906617, -29.08136904738208, -28.502060115983202, + -26.278420789212934, -22.69305645731604, -18.349922782708752, + -13.605172771810635, -9.113263336445163, -5.286387104663414, + -2.1048402231710486, 0.2697567123465764, 2.10656116256212, + 3.621101684130336, 4.857087373429233, 5.97703234949421, 6.846364950022541, + 7.314060241350684, 7.268239671171526, 6.59277610375222, 5.323749549781386, + 3.646249726341784, 1.8319824717454114, 0.12035682483727256, + -1.157208028497635, -1.934540613904524, -2.2383556558201514, + -2.185241467476295, -2.0292732916266916, -1.9946483287447785, + -2.2163714083196933, -2.7198076059082763, -3.3702639298601866, + -3.9981724778304133, -4.370470002957765, -4.324048010780303, + -3.837375919947584, -3.0086339117341274, -2.0209741425341985, + -1.1086018353144522, -0.49442513601634996, -0.215044759451538, + -0.24198970144289317, -0.4064780094481422, -0.4759340519264352, + -0.2638436120720203, 0.3149793964795957, 1.19534650134693, + 2.1713912287201023, 3.0108890394752224, 3.446730370164044, + 3.4252541580599054, 3.0907395031679727, 2.805093502155907, + 3.110837179547706, 4.583420714598023, 7.6945228665185175, + 12.695598181494676, 19.189883719744085, 26.939830210000068, + 34.95666042477621, 42.02501483173707 + ], + "pressure:J31:branch84_seg0": [ + 172625.00493719202, 190971.37575913448, 200229.90322588498, + 197672.79992401405, 186116.0156361859, 167832.01782568856, + 145078.29512889474, 119832.65872011188, 97059.69930604112, + 75694.10583937295, 56809.934187573286, 40661.90763874104, + 24707.084768456603, 9715.352353598315, -5627.308247103649, + -20902.88809821146, -35392.58207453608, -49070.998363179955, + -59476.89323678484, -67312.21716597019, -72919.16241055712, + -75774.80815472327, -77387.86775218327, -78165.94697161765, + -78431.31600103258, -78425.80998993097, -77542.722243095, + -75373.1418215154, -71638.34627872644, -66598.12117997138, + -60653.774181439825, -55557.08616130015, -52670.32955914829, + -53058.93636102554, -57954.60751890776, -67130.11922131313, + -79166.19792722177, -92165.1859294962, -104007.49688347727, + -111401.58063173832, -113140.3218706831, -108594.30596437327, + -97690.55714404273, -81705.80727671561, -64339.45662035606, + -46104.520721062436, -28724.665743927937, -15329.339179063705, + -4093.982427839016, 4284.818818323747, 10378.079976855537, + 16202.44552765306, 20634.13407732454, 24488.152921519704, + 27668.186668125643, 28720.462816508112, 27642.64670868084, + 24176.110620140247, 18525.110782576932, 11447.590737618233, + 4457.382206515643, -1712.6731257774122, -6108.5583317446435, + -8253.06118124872, -8815.75176083896, -8303.614596318674, + -7656.120654387989, -7817.430604360112, -9117.73489192126, + -11482.550424941306, -14065.526392028369, -16244.066950120845, + -17276.520514300933, -16407.10639846982, -13856.300291262136, + -10252.225550827623, -6457.892667374305, -3049.7953977579687, + -1211.383439260451, -739.2049927444386, -1111.266767395571, + -1795.9623641383446, -1801.6032883689145, -477.30689918664575, + 2277.114318211508, 6072.7851316954375, 9817.422371419056, + 12638.800236008567, 13730.183585206107, 12962.81902619804, + 11370.391502558989, 10701.436639883541, 13163.443038312747, + 20965.195548272954, 35545.711076381114, 58100.42776891173, + 85006.58140934988, 115475.8175452145, 147841.0414287296, + 172625.00493719202 + ], + "flow:branch57_seg0:J32": [ + 151.39528403289984, 170.18756741275422, 180.15631670515018, + 180.49224637590385, 172.22025536603326, 156.89776158446384, + 136.87386568749412, 114.87089992401063, 93.77559344151116, + 73.81872865956908, 56.39486771100469, 40.9927125522198, + 26.353374145344038, 12.652689924766257, -1.4319932624676504, + -15.41689157177033, -28.78147851879984, -41.35696653347542, + -51.47146074285068, -59.45421362461783, -64.96772172768476, + -68.1983302625339, -70.06546939272383, -70.97585395945364, + -71.43740344531983, -71.53055993490617, -70.94426019031951, + -69.2804328441589, -66.2586847037491, -61.879255448397664, + -56.69197318783869, -51.87359263075254, -48.67147844429767, + -48.391694314958684, -51.95713868228643, -59.36816344700067, + -69.75212444934408, -81.37363852855172, -92.34295387267372, + -99.88737541247353, -102.81234683322828, -99.924946490633, + -91.45068049372667, -78.27765544302753, -62.80660910803996, + -46.1185293272912, -30.52013575681168, -17.40895140379089, + -6.543265075475173, 1.5523683312540992, 7.9069825644649345, + 13.190070206828024, 17.559664049590626, 21.463644882741466, + 24.45666404908137, 25.89815676835532, 25.452616756010993, + 22.75904537988319, 18.05543160399009, 11.944626017487618, + 5.615328098742883, -0.22218425864647667, -4.51131823566936, + -6.952482404199363, -7.821351899314928, -7.553303242312693, + -7.042548992991305, -7.063061216310985, -8.008246619571732, + -9.923656555617974, -12.245355317158392, -14.388244437627163, + -15.52123853636956, -15.139507142981671, -13.201822616549451, + -10.17179183566538, -6.670500629009926, -3.5673342676906166, + -1.5785158701198905, -0.7913209725954284, -0.9968899468296136, + -1.5718603296692972, -1.6959596695260393, -0.738586835864114, + 1.491933079360321, 4.748564376166656, 8.150637940678854, + 10.936340340132377, 12.240936571071037, 11.93993611774282, + 10.673318964711724, 9.843934958391184, 11.378425126891033, + 17.342943841849745, 29.113093067636676, 47.70494267533106, + 71.14320839823657, 98.93962276092897, 127.05881241371927, + 151.39528403289984 + ], + "pressure:branch57_seg0:J32": [ + 192501.69511036042, 205667.74849694726, 210073.3173908585, + 200650.09101053196, 182860.9845546781, 160167.770386033, + 134948.51557698287, 106809.05743599513, 85682.2215516229, + 65373.2861452402, 46550.020250421396, 32307.854208918565, + 15760.532592675929, 847.5840576363256, -14440.834319207432, + -30866.218135472383, -44444.8979300185, -57636.65761872505, + -67240.37540726578, -73216.0463804245, -77707.09835867291, + -79457.85282017862, -80182.19474404442, -80697.07582336265, + -80703.61058062366, -80419.0280587457, -79016.36461056572, + -75920.9724621672, -71073.139133876, -65142.13063856918, + -58654.401160978785, -53936.099373504876, -52709.98256006246, + -55311.122794148505, -62993.07841946498, -74878.96587064897, + -89178.43707350438, -102139.11230369977, -113502.91673799932, + -118278.14254841354, -116232.58365658691, -107909.89514747768, + -93507.6841305822, -74418.17948640628, -55412.280288719405, + -36994.57249958005, -19773.070974297894, -7759.8931323560155, + 1825.8481953290434, 9287.824666262248, 14349.831719338725, + 19903.629227939262, 24097.21042809619, 27380.38188116107, + 30185.137504290935, 29992.349386805236, 27387.3705753761, + 22338.79470828787, 15435.236527277688, 7101.792332514177, + 381.2314023058438, -5107.581486073555, -8801.638436453273, + -9494.875545047706, -9120.47803415642, -8208.654247203429, + -7558.943669929475, -8228.287341426863, -10226.954085045129, + -13200.06996531942, -15980.362776133048, -17818.732555704846, + -18118.700368487986, -16206.873165246041, -12541.696690454566, + -8267.170048789078, -4336.998726077558, -1204.0344880121036, + -157.99738443765574, -618.471756215275, -1483.5876833670225, + -2190.6519235066867, -1720.3625540800417, 531.2028181022541, + 4137.876379413096, 8710.294561895584, 12266.207929083825, + 14364.953729028226, 14554.268736156393, 12709.639005335292, + 10714.722964428067, 10851.53958664579, 15497.944709572475, + 26904.591532355047, 45695.162865418686, 73211.73210106544, + 103801.76107371708, 136679.65258190923, 170102.99880852818, + 192501.69511036042 + ], + "flow:J32:branch58_seg0": [ + 51.722743782164954, 57.583492204836325, 60.30396774123164, + 59.71546705928657, 56.30357788642484, 50.67178609836315, + 43.62187623466576, 36.11653356030225, 29.151408073453208, + 22.612199251519563, 17.029505584300516, 12.130196461613886, + 7.423373306791825, 3.013927762558483, -1.5941420030475135, + -6.172915623857102, -10.528255065689372, -14.597451866896037, + -17.79046660870957, -20.247855112619984, -21.87858110794339, + -22.75664390008512, -23.23029382015466, -23.43084564890841, + -23.51999084794594, -23.509228400754978, -23.266926985156722, + -22.650146232800903, -21.563392616272587, -20.027467105062655, + -18.241028737038835, -16.652017088434185, -15.671777741028889, + -15.748934392539333, -17.1693361836688, -19.88981442195059, + -23.54783848461896, -27.526027574012794, -31.159290443285165, + -33.49022745665561, -34.167870100643455, -32.841182140816, + -29.62682441857515, -24.913849255461457, -19.556783144035997, + -13.916820622657113, -8.779015798416175, -4.589603913906763, + -1.1771922462195217, 1.2921240604931403, 3.210063763603325, + 4.83424945401304, 6.17167287345799, 7.398277505049363, 8.315188312050587, + 8.683078486702728, 8.406447669665399, 7.364243284217063, + 5.659028427027342, 3.5224841666819007, 1.3863617933826846, + -0.5345467682550044, -1.87266378106984, -2.5537045494005977, + -2.717224859247216, -2.5272707886515775, -2.305963554877779, + -2.3165083937232014, -2.674358753688616, -3.367301102291244, + -4.17714554351275, -4.88945086839004, -5.217181927581559, + -4.999311021768781, -4.25248257881273, -3.158829713281267, + -1.9506760351585006, -0.9234986487970411, -0.32647985171013094, + -0.1450479465816264, -0.291089196968997, -0.5294162645638274, + -0.5683830220756819, -0.20189388883909948, 0.6126886046395403, + 1.7628786810309987, 2.918181709919276, 3.820054359408283, + 4.1753736004362505, 3.967095074960167, 3.462851089529723, + 3.1747323396371634, 3.7872612715884255, 5.995747445757631, + 10.251627595387047, 16.828278094275465, 24.966430518324405, + 34.46186826012899, 43.8723974136169, 51.722743782164954 + ], + "pressure:J32:branch58_seg0": [ + 192501.69511036042, 205667.74849694726, 210073.3173908585, + 200650.09101053196, 182860.9845546781, 160167.770386033, + 134948.51557698287, 106809.05743599513, 85682.2215516229, + 65373.2861452402, 46550.020250421396, 32307.854208918565, + 15760.532592675929, 847.5840576363256, -14440.834319207432, + -30866.218135472383, -44444.8979300185, -57636.65761872505, + -67240.37540726578, -73216.0463804245, -77707.09835867291, + -79457.85282017862, -80182.19474404442, -80697.07582336265, + -80703.61058062366, -80419.0280587457, -79016.36461056572, + -75920.9724621672, -71073.139133876, -65142.13063856918, + -58654.401160978785, -53936.099373504876, -52709.98256006246, + -55311.122794148505, -62993.07841946498, -74878.96587064897, + -89178.43707350438, -102139.11230369977, -113502.91673799932, + -118278.14254841354, -116232.58365658691, -107909.89514747768, + -93507.6841305822, -74418.17948640628, -55412.280288719405, + -36994.57249958005, -19773.070974297894, -7759.8931323560155, + 1825.8481953290434, 9287.824666262248, 14349.831719338725, + 19903.629227939262, 24097.21042809619, 27380.38188116107, + 30185.137504290935, 29992.349386805236, 27387.3705753761, + 22338.79470828787, 15435.236527277688, 7101.792332514177, + 381.2314023058438, -5107.581486073555, -8801.638436453273, + -9494.875545047706, -9120.47803415642, -8208.654247203429, + -7558.943669929475, -8228.287341426863, -10226.954085045129, + -13200.06996531942, -15980.362776133048, -17818.732555704846, + -18118.700368487986, -16206.873165246041, -12541.696690454566, + -8267.170048789078, -4336.998726077558, -1204.0344880121036, + -157.99738443765574, -618.471756215275, -1483.5876833670225, + -2190.6519235066867, -1720.3625540800417, 531.2028181022541, + 4137.876379413096, 8710.294561895584, 12266.207929083825, + 14364.953729028226, 14554.268736156393, 12709.639005335292, + 10714.722964428067, 10851.53958664579, 15497.944709572475, + 26904.591532355047, 45695.162865418686, 73211.73210106544, + 103801.76107371708, 136679.65258190923, 170102.99880852818, + 192501.69511036042 + ], + "flow:J32:branch61_seg0": [ + 56.19511894976098, 64.41493116274503, 69.61261506537112, + 71.25150309730358, 69.41861765880735, 64.58343833898843, + 57.57405448446568, 49.35204523297189, 40.98893703871483, + 32.94333768286716, 25.695240098581085, 19.18641384531131, + 13.154051232695755, 7.499856849988461, 1.844850356770672, + -3.7377609728755883, -9.19751255828491, -14.336803139569378, + -18.67593478034972, -22.222561381998798, -24.810476230794432, + -26.48918852590593, -27.520211047640924, -28.083173216341358, + -28.389318443610755, -28.512125590063324, -28.38353001840357, + -27.877369678387865, -26.874030535569236, -25.34537231530749, + -23.437845903705373, -21.525397452919705, -20.068421893322128, + -19.569878591203707, -20.428224134675528, -22.76528117843623, + -26.36510241918975, -30.70232772259811, -35.039069840958, + -38.426497392487384, -40.240084775478984, -39.946596187604065, + -37.468280415129925, -33.04132769420873, -27.40848194581699, + -21.052671393282072, -14.82020911563135, -9.305359167549602, + -4.628028775172895, -0.9827797688222042, 1.89165161067094, + 4.2382658600263605, 6.16501993134725, 7.837708034133685, + 9.175801104049544, 9.980347576449459, 10.090929511524545, + 9.364011165726037, 7.831098593387373, 5.668826175073325, + 3.2504014066112727, 0.9076747245045799, -0.9739013931885285, + -2.225230874632042, -2.835069955373163, -2.940661666486897, + -2.83785566063784, -2.8214179464000106, -3.090414933220914, + -3.7131715428068413, -4.547665593006328, -5.394284679821489, + -5.955262372289323, -6.006032697341039, -5.47401376473128, + -4.464415769598086, -3.1881738069864043, -1.9465107935210049, + -1.028652730854702, -0.5413604817300199, -0.4562827693250481, + -0.5876777086103341, -0.653975613222469, -0.3987010919988733, + 0.3083204747635473, 1.431715115712521, 2.720034384592629, + 3.876388703448364, 4.573080278166436, 4.694767355130515, + 4.373781226015662, 4.050532196393052, 4.400372709415314, + 6.194302997046638, 10.061814981933281, 16.442502695614746, + 24.907220858041427, 35.22573410989842, 46.161296326817556, + 56.19511894976098 + ], + "pressure:J32:branch61_seg0": [ + 192501.69511036042, 205667.74849694726, 210073.3173908585, + 200650.09101053196, 182860.9845546781, 160167.770386033, + 134948.51557698287, 106809.05743599513, 85682.2215516229, + 65373.2861452402, 46550.020250421396, 32307.854208918565, + 15760.532592675929, 847.5840576363256, -14440.834319207432, + -30866.218135472383, -44444.8979300185, -57636.65761872505, + -67240.37540726578, -73216.0463804245, -77707.09835867291, + -79457.85282017862, -80182.19474404442, -80697.07582336265, + -80703.61058062366, -80419.0280587457, -79016.36461056572, + -75920.9724621672, -71073.139133876, -65142.13063856918, + -58654.401160978785, -53936.099373504876, -52709.98256006246, + -55311.122794148505, -62993.07841946498, -74878.96587064897, + -89178.43707350438, -102139.11230369977, -113502.91673799932, + -118278.14254841354, -116232.58365658691, -107909.89514747768, + -93507.6841305822, -74418.17948640628, -55412.280288719405, + -36994.57249958005, -19773.070974297894, -7759.8931323560155, + 1825.8481953290434, 9287.824666262248, 14349.831719338725, + 19903.629227939262, 24097.21042809619, 27380.38188116107, + 30185.137504290935, 29992.349386805236, 27387.3705753761, + 22338.79470828787, 15435.236527277688, 7101.792332514177, + 381.2314023058438, -5107.581486073555, -8801.638436453273, + -9494.875545047706, -9120.47803415642, -8208.654247203429, + -7558.943669929475, -8228.287341426863, -10226.954085045129, + -13200.06996531942, -15980.362776133048, -17818.732555704846, + -18118.700368487986, -16206.873165246041, -12541.696690454566, + -8267.170048789078, -4336.998726077558, -1204.0344880121036, + -157.99738443765574, -618.471756215275, -1483.5876833670225, + -2190.6519235066867, -1720.3625540800417, 531.2028181022541, + 4137.876379413096, 8710.294561895584, 12266.207929083825, + 14364.953729028226, 14554.268736156393, 12709.639005335292, + 10714.722964428067, 10851.53958664579, 15497.944709572475, + 26904.591532355047, 45695.162865418686, 73211.73210106544, + 103801.76107371708, 136679.65258190923, 170102.99880852818, + 192501.69511036042 + ], + "flow:J32:branch137_seg0": [ + 43.47742130097456, 48.18914404517277, 50.23973389854705, + 49.52527621931485, 46.49805982080747, 41.64253714711377, + 35.677934968360695, 29.402321130734954, 23.635248329343877, + 18.26319172518115, 13.670122028126945, 9.676102245299697, + 5.775949605853179, 2.1389053122158663, -1.6827016161893207, + -5.506214975035998, -9.055710894820676, -12.422711527009396, + -15.005059353794417, -16.98379712999689, -18.27866438894611, + -18.952497836544165, -19.31496452492302, -19.461835094201476, + -19.528094153764343, -19.509205944091185, -19.29380318675984, + -18.752916932969647, -17.821261551910233, -16.50641602802563, + -15.013098547095346, -13.696178089401064, -12.931278809945862, + -13.072881331217111, -14.35957836394029, -16.713067846613296, + -19.839183545535654, -23.145283231939334, -26.144593588430432, + -27.97065056333176, -28.404391957104487, -27.13716816221268, + -24.355575660020897, -20.32247849335716, -15.841344018186756, + -11.14903731135202, -6.920910842764148, -3.5139883223345283, + -0.7380440540827161, 1.243024039583145, 2.8052671901906616, + 4.117554892788618, 5.222971244785385, 6.2276593435584555, + 6.965674632981243, 7.23473070520299, 6.955239574820839, 6.030790929939952, + 4.5653045835759265, 2.753315675732446, 0.9785648987491404, + -0.5953122148957882, -1.6647530614111843, -2.1735469801668, + -2.2690570846944813, -2.0853707871743765, -1.8987297774756822, + -1.925134876188417, -2.2434729326624883, -2.843183910519952, + -3.520544180639335, -4.104508889415726, -4.348794236498597, + -4.1341634238718346, -3.475326273005589, -2.548546352786106, + -1.5316507868650568, -0.6973248253725458, -0.2233832875550737, + -0.10491254428380331, -0.2495179805356203, -0.45476635649515584, + -0.47360103422789257, -0.13799185502615072, 0.5709239999572499, + 1.5539705794231524, 2.5124218461670207, 3.2398972772757126, + 3.4924826924682666, 3.2780736876521623, 2.8366866491663547, + 2.6186704223610837, 3.1907911458873004, 5.152893399045499, + 8.79965049031634, 14.434161885440844, 21.26955702187143, + 29.252020390900903, 37.025118673284354, 43.47742130097456 + ], + "pressure:J32:branch137_seg0": [ + 192501.69511036042, 205667.74849694726, 210073.3173908585, + 200650.09101053196, 182860.9845546781, 160167.770386033, + 134948.51557698287, 106809.05743599513, 85682.2215516229, + 65373.2861452402, 46550.020250421396, 32307.854208918565, + 15760.532592675929, 847.5840576363256, -14440.834319207432, + -30866.218135472383, -44444.8979300185, -57636.65761872505, + -67240.37540726578, -73216.0463804245, -77707.09835867291, + -79457.85282017862, -80182.19474404442, -80697.07582336265, + -80703.61058062366, -80419.0280587457, -79016.36461056572, + -75920.9724621672, -71073.139133876, -65142.13063856918, + -58654.401160978785, -53936.099373504876, -52709.98256006246, + -55311.122794148505, -62993.07841946498, -74878.96587064897, + -89178.43707350438, -102139.11230369977, -113502.91673799932, + -118278.14254841354, -116232.58365658691, -107909.89514747768, + -93507.6841305822, -74418.17948640628, -55412.280288719405, + -36994.57249958005, -19773.070974297894, -7759.8931323560155, + 1825.8481953290434, 9287.824666262248, 14349.831719338725, + 19903.629227939262, 24097.21042809619, 27380.38188116107, + 30185.137504290935, 29992.349386805236, 27387.3705753761, + 22338.79470828787, 15435.236527277688, 7101.792332514177, + 381.2314023058438, -5107.581486073555, -8801.638436453273, + -9494.875545047706, -9120.47803415642, -8208.654247203429, + -7558.943669929475, -8228.287341426863, -10226.954085045129, + -13200.06996531942, -15980.362776133048, -17818.732555704846, + -18118.700368487986, -16206.873165246041, -12541.696690454566, + -8267.170048789078, -4336.998726077558, -1204.0344880121036, + -157.99738443765574, -618.471756215275, -1483.5876833670225, + -2190.6519235066867, -1720.3625540800417, 531.2028181022541, + 4137.876379413096, 8710.294561895584, 12266.207929083825, + 14364.953729028226, 14554.268736156393, 12709.639005335292, + 10714.722964428067, 10851.53958664579, 15497.944709572475, + 26904.591532355047, 45695.162865418686, 73211.73210106544, + 103801.76107371708, 136679.65258190923, 170102.99880852818, + 192501.69511036042 + ], + "flow:branch58_seg0:J33": [ + 51.672042831070115, 57.57338030082044, 60.32066363612299, + 59.74757213732049, 56.361296808797206, 50.75777454488128, + 43.702488085707415, 36.22860909016078, 29.250134130826485, + 22.66722003767066, 17.11584092407969, 12.188308662665406, + 7.488699697927237, 3.080988656319015, -1.555609301906779, + -6.10079464444818, -10.486741343575781, -14.580156214966228, + -17.77065283859242, -20.236708362373736, -21.880112080915065, + -22.754531756040773, -23.233197125118387, -23.43371925754744, + -23.519220207555374, -23.513149334632438, -23.272361365096597, + -22.661624743968186, -21.57834200613674, -20.04990552882055, + -18.2563863069927, -16.669280759179014, -15.671026885513015, + -15.73254167575749, -17.134007193881573, -19.849794296680766, + -23.478441247568547, -27.483863571755492, -31.126008662876593, + -33.47916821981171, -34.18599565083213, -32.890106559971976, + -29.668698834118054, -24.958541926830044, -19.602900595769412, + -13.95976250391026, -8.799911088545688, -4.613066187288513, + -1.1870372685054251, 1.2882992259179658, 3.1907695815772565, + 4.830122955740597, 6.157980630036975, 7.389075513254305, 8.31045517078478, + 8.683342599590071, 8.418027949730368, 7.387326101305064, + 5.683269876757381, 3.559178740353864, 1.4157891970789411, + -0.5236969916175104, -1.859004210122442, -2.5508696412391147, + -2.7221577814867888, -2.5303335971557197, -2.3053472540155515, + -2.3115394403240117, -2.6683533418889205, -3.360589194761652, + -4.172773509833486, -4.8868741497803505, -5.222815644239246, + -5.0055185908389515, -4.263779116870833, -3.167560956315603, + -1.9625240051652382, -0.9262831400985888, -0.32966466439291564, + -0.14279617745521686, -0.28728205969081266, -0.5288491541368394, + -0.5723569701201839, -0.21333196110805894, 0.5989837335109429, + 1.743035634811572, 2.9040317514710554, 3.8186432852560976, + 4.177965151480934, 3.972236961595634, 3.467940893800597, + 3.167979461784904, 3.765943313798585, 5.94420507891296, 10.1995143113294, + 16.762517700701736, 24.909601255166535, 34.36809593474223, + 43.84179855781545, 51.672042831070115 + ], + "pressure:branch58_seg0:J33": [ + 183196.12054317136, 199257.0168102707, 205981.52320277345, + 199923.49409417287, 185121.36616285937, 164510.41305367788, + 140265.9659266503, 113610.90683115178, 91265.80770291644, + 70280.77326855328, 51606.09556901545, 36221.6634659192, + 20167.762744830656, 5147.075350254176, -10273.51324660512, + -25950.07496448003, -40305.493029553305, -53814.397948674115, + -63731.847694042764, -70687.48907703253, -75677.08126114913, + -77858.82358111303, -78986.10139552742, -79539.16806567, + -79632.03599882506, -79496.88880180208, -78354.65296218768, + -75750.61570826161, -71459.98233282121, -65968.37841114786, + -59671.131476939045, -54715.732120713685, -52523.62393184906, + -53926.45902376434, -60186.985861038505, -70771.01752029725, + -83948.19953852899, -97287.7146063769, -108988.47751741894, + -115283.66871713656, -115225.73501269244, -108767.78210691902, + -95845.8175307191, -78067.70549544912, -59740.084902000446, + -41201.9391423645, -23759.10976436923, -11122.731559319556, + -658.0451954635538, 7109.469811699496, 12543.973117254798, + 18236.639413712706, 22423.05094648487, 26019.064265093097, + 29016.910791494094, 29484.23301852074, 27680.909421704808, + 23443.36101567341, 17098.984193571934, 9414.818134126344, + 2375.842817325928, -3555.4574151653287, -7597.120356454925, + -9065.420317807007, -9118.047280358505, -8315.321116328581, + -7596.876175526833, -7964.43847516189, -9620.20541807451, + -12333.055418659218, -15058.962214407562, -17119.58844301676, + -17825.456549988638, -16412.15718155382, -13284.12056523241, + -9277.434127781373, -5380.177381251565, -2035.8622316844094, + -596.0835420900063, -581.0896253428456, -1232.577376366829, + -1994.9786355538142, -1815.127748030412, -79.56283576357744, + 3123.404726433562, 7307.821306107793, 11081.93637399393, + 13627.681284185477, 14285.475652333398, 12953.894801116116, + 11074.962736546993, 10669.188518070374, 14109.038185280624, + 23617.972292543505, 40433.43910872688, 65661.01198712834, + 94599.62868790056, 126361.234521918, 159744.57332518089, + 183196.12054317136 + ], + "flow:J33:branch59_seg0": [ + 27.816712637472122, 31.013449835467377, 32.50856232399158, + 32.21495593757791, 30.406158666445492, 27.394089016888536, + 23.591002038663643, 19.57231113116214, 15.800148070252293, + 12.242843878683818, 9.25331955486725, 6.590139787032247, + 4.056553924001404, 1.6802006412704347, -0.8255641701943932, + -3.271071283731396, -5.636328420184225, -7.852118822583254, + -9.570681458498225, -10.903893764819296, -11.793717335071177, + -12.26521939190895, -12.525566203870838, -12.63371299224161, + -12.679360056552976, -12.676845685410283, -12.548035757740026, + -12.22052746058904, -11.638976453881343, -10.815922949208913, + -9.849267460033294, -8.991605823794599, -8.448183951845332, + -8.475850387186448, -9.226095687168657, -10.686355466008267, + -12.636553394107922, -14.79877729061438, -16.76530431233552, + -18.037786031783256, -18.427688717586744, -17.73523840662345, + -16.004256762933252, -13.46678234419347, -10.585089858529892, + -7.544111068849499, -4.759189002370958, -2.5024375853242895, + -0.6504492073311968, 0.6851821335231976, 1.7106176614905744, + 2.595522102465267, 3.3121937252684552, 3.9770643818351696, + 4.474654264707412, 4.678755345817767, 4.539578854131246, + 3.9875258761509897, 3.070264819662531, 1.928781208960013, + 0.7712547755960889, -0.27849364921646, -0.9976583320292898, + -1.3732131881247795, -1.467948842549273, -1.3643873104789244, + -1.2425067134850656, -1.2447582174397405, -1.435603072924924, + -1.808107949430275, -2.2454405180212635, -2.630989770436244, + -2.814352605875036, -2.6992404349295036, -2.3016962211290752, + -1.7121653312780851, -1.062599563936316, -0.503039496574754, + -0.17926019086562212, -0.07654930103862961, -0.15353693416761396, + -0.2844429516357111, -0.30931007758337054, -0.11796037301041642, + 0.31865818637673077, 0.9336355351247467, 1.560656053294232, + 2.056860042915051, 2.2513633911396647, 2.1420230419267066, + 1.8704510201142237, 1.7064125488761903, 2.0233038876266565, + 3.189639843022365, 5.473435877723074, 9.004695849038498, + 13.387774191839064, 18.476570095714088, 23.58923528917391, + 27.816712637472122 + ], + "pressure:J33:branch59_seg0": [ + 183196.12054317136, 199257.0168102707, 205981.52320277345, + 199923.49409417287, 185121.36616285937, 164510.41305367788, + 140265.9659266503, 113610.90683115178, 91265.80770291644, + 70280.77326855328, 51606.09556901545, 36221.6634659192, + 20167.762744830656, 5147.075350254176, -10273.51324660512, + -25950.07496448003, -40305.493029553305, -53814.397948674115, + -63731.847694042764, -70687.48907703253, -75677.08126114913, + -77858.82358111303, -78986.10139552742, -79539.16806567, + -79632.03599882506, -79496.88880180208, -78354.65296218768, + -75750.61570826161, -71459.98233282121, -65968.37841114786, + -59671.131476939045, -54715.732120713685, -52523.62393184906, + -53926.45902376434, -60186.985861038505, -70771.01752029725, + -83948.19953852899, -97287.7146063769, -108988.47751741894, + -115283.66871713656, -115225.73501269244, -108767.78210691902, + -95845.8175307191, -78067.70549544912, -59740.084902000446, + -41201.9391423645, -23759.10976436923, -11122.731559319556, + -658.0451954635538, 7109.469811699496, 12543.973117254798, + 18236.639413712706, 22423.05094648487, 26019.064265093097, + 29016.910791494094, 29484.23301852074, 27680.909421704808, + 23443.36101567341, 17098.984193571934, 9414.818134126344, + 2375.842817325928, -3555.4574151653287, -7597.120356454925, + -9065.420317807007, -9118.047280358505, -8315.321116328581, + -7596.876175526833, -7964.43847516189, -9620.20541807451, + -12333.055418659218, -15058.962214407562, -17119.58844301676, + -17825.456549988638, -16412.15718155382, -13284.12056523241, + -9277.434127781373, -5380.177381251565, -2035.8622316844094, + -596.0835420900063, -581.0896253428456, -1232.577376366829, + -1994.9786355538142, -1815.127748030412, -79.56283576357744, + 3123.404726433562, 7307.821306107793, 11081.93637399393, + 13627.681284185477, 14285.475652333398, 12953.894801116116, + 11074.962736546993, 10669.188518070374, 14109.038185280624, + 23617.972292543505, 40433.43910872688, 65661.01198712834, + 94599.62868790056, 126361.234521918, 159744.57332518089, + 183196.12054317136 + ], + "flow:J33:branch145_seg0": [ + 23.855330193598014, 26.559930465352483, 27.8121013121317, + 27.53261619974325, 25.955138142352364, 23.363685527992704, + 20.111486047044615, 16.656297958999566, 13.44998606057511, + 10.42437615898746, 7.862521369211106, 5.598168875632825, + 3.432145773925637, 1.4007880150491412, -0.730045131712017, + -2.829723360716373, -4.850412923389907, -6.728037392381911, + -8.19997138009491, -9.332814597554211, -10.086394745844583, + -10.489312364132106, -10.707630921247164, -10.800006265304269, + -10.839860151002522, -10.836303649222316, -10.724325607356205, + -10.441097283378836, -9.939365552255229, -9.23398257961164, + -8.407118846959117, -7.677674935383559, -7.222842933667926, + -7.2566912885713, -7.90791150671334, -9.163438830672296, + -10.841887853459978, -12.685086281141178, -14.360704350541148, + -15.441382188028541, -15.758306933245267, -15.154868153348069, + -13.66444207118473, -11.491759582636606, -9.017810737239536, + -6.415651435060749, -4.040722086174726, -2.1106286019642235, + -0.5365880611742129, 0.6031170923947666, 1.480151920086687, + 2.234600853275331, 2.845786904768522, 3.412011131419169, + 3.8358009060773903, 4.004587253772284, 3.8784490955991724, + 3.3998002251540607, 2.613005057094787, 1.630397531394, 0.6445344214828532, + -0.24520334240098277, -0.8613458780931126, -1.1776564531143043, + -1.254208938937469, -1.165946286676747, -1.0628405405304278, + -1.0667812228842894, -1.2327502689639656, -1.5524812453313461, + -1.9273329918121525, -2.2558843793440837, -2.4084630383641574, + -2.3062781559094696, -1.9620828957417393, -1.455395625037513, + -0.8999244412289411, -0.4232436435238528, -0.15040447352729472, + -0.06624687641659352, -0.13374512552319914, -0.24440620250112352, + -0.2630468925368182, -0.09537158809764942, 0.2803255471342049, + 0.8094000996868269, 1.343375698176838, 1.7617832423410285, + 1.9266017603412582, 1.8302139196689138, 1.597489873686373, + 1.4615669129087505, 1.742639426171921, 2.75456523589063, + 4.726078433606252, 7.757821851663133, 11.521827063327633, + 15.891525839028168, 20.252563268641058, 23.855330193598014 + ], + "pressure:J33:branch145_seg0": [ + 183196.12054317136, 199257.0168102707, 205981.52320277345, + 199923.49409417287, 185121.36616285937, 164510.41305367788, + 140265.9659266503, 113610.90683115178, 91265.80770291644, + 70280.77326855328, 51606.09556901545, 36221.6634659192, + 20167.762744830656, 5147.075350254176, -10273.51324660512, + -25950.07496448003, -40305.493029553305, -53814.397948674115, + -63731.847694042764, -70687.48907703253, -75677.08126114913, + -77858.82358111303, -78986.10139552742, -79539.16806567, + -79632.03599882506, -79496.88880180208, -78354.65296218768, + -75750.61570826161, -71459.98233282121, -65968.37841114786, + -59671.131476939045, -54715.732120713685, -52523.62393184906, + -53926.45902376434, -60186.985861038505, -70771.01752029725, + -83948.19953852899, -97287.7146063769, -108988.47751741894, + -115283.66871713656, -115225.73501269244, -108767.78210691902, + -95845.8175307191, -78067.70549544912, -59740.084902000446, + -41201.9391423645, -23759.10976436923, -11122.731559319556, + -658.0451954635538, 7109.469811699496, 12543.973117254798, + 18236.639413712706, 22423.05094648487, 26019.064265093097, + 29016.910791494094, 29484.23301852074, 27680.909421704808, + 23443.36101567341, 17098.984193571934, 9414.818134126344, + 2375.842817325928, -3555.4574151653287, -7597.120356454925, + -9065.420317807007, -9118.047280358505, -8315.321116328581, + -7596.876175526833, -7964.43847516189, -9620.20541807451, + -12333.055418659218, -15058.962214407562, -17119.58844301676, + -17825.456549988638, -16412.15718155382, -13284.12056523241, + -9277.434127781373, -5380.177381251565, -2035.8622316844094, + -596.0835420900063, -581.0896253428456, -1232.577376366829, + -1994.9786355538142, -1815.127748030412, -79.56283576357744, + 3123.404726433562, 7307.821306107793, 11081.93637399393, + 13627.681284185477, 14285.475652333398, 12953.894801116116, + 11074.962736546993, 10669.188518070374, 14109.038185280624, + 23617.972292543505, 40433.43910872688, 65661.01198712834, + 94599.62868790056, 126361.234521918, 159744.57332518089, + 183196.12054317136 + ], + "flow:branch61_seg2:J34": [ + 56.101234538925425, 64.39015908843706, 69.62117424297905, + 71.28968967634442, 69.50012267041157, 64.70331576236832, + 57.67946629074318, 49.50641049091982, 41.12609975018479, + 33.02295030736834, 25.80507597309137, 19.265936817979323, + 13.239224880909509, 7.587890619443669, 1.9003579877457286, + -3.653225842401115, -9.133645444868412, -14.305864742821983, + -18.644450312753264, -22.203788444508085, -24.807728792633107, + -26.482178301959088, -27.521470378098236, -28.084951411559626, + -28.388260452436956, -28.51619023917423, -28.39065925562407, + -27.89253291117071, -26.896635153671106, -25.375727050267656, + -23.462389665653234, -21.55034364051074, -20.068803435637133, + -19.54867222944055, -20.38463886392157, -22.7121617591816, + -26.27943647199823, -30.643490036382712, -34.994320870210295, + -38.40818234364368, -40.26121933654125, -40.00486045783775, + -37.527849718798066, -33.10539096988949, -27.476679350074576, + -21.11658362246276, -14.861811321781673, -9.350330631317197, + -4.649862407374482, -0.99914824833627, 1.8642441139477193, + 4.223873784115168, 6.141817747509324, 7.824786087474465, + 9.166985963536561, 9.979158752927457, 10.105672669533407, + 9.394153434187041, 7.862693144463441, 5.716937311136033, + 3.290227339835977, 0.9234461120698745, -0.9576422823365857, + -2.2198384474661457, -2.840396094730468, -2.9441777494417, + -2.8373115715634114, -2.815755812436874, -3.0819002477227424, + -3.703404567252378, -4.540065776606, -5.389974377481004, + -5.9603628538265685, -6.014109206334061, -5.489302052506386, + -4.479584369740009, -3.2048080799895766, -1.9544291966094518, + -1.0348676436135973, -0.5386568440990982, -0.45104393756641914, + -0.5867744318537494, -0.6589806423049351, -0.41323362946674685, + 0.29063204183034397, 1.4061031781340396, 2.700973207505683, + 3.8735646804068895, 4.576423386092589, 4.70125672787777, + 4.380378200698738, 4.043163278679402, 4.372356649078071, + 6.1305891864831406, 9.984214698403493, 16.346314588919288, + 24.81068823948147, 35.094501508890694, 46.08140116532258, + 56.101234538925425 + ], + "pressure:branch61_seg2:J34": [ + 164738.44366302222, 182847.81592300604, 192984.20847454524, + 191931.14773455824, 182201.40081027913, 165838.55371477385, + 144666.51796977594, 121233.1970553397, 99218.06970444965, + 77830.97069216147, 59365.90978931377, 43407.601345866686, + 27326.65433728239, 12485.321367869888, -2946.0847028627286, + -17916.22655757176, -31532.456391881376, -45636.64781327145, + -56266.73002693576, -63899.30915766336, -69940.34042848634, + -73185.34721978457, -75140.41946309453, -76276.97191906959, + -76670.48692673906, -76783.60631282632, -76074.20866759172, + -74084.26682834509, -70629.70772702922, -65911.90898931077, + -60293.83731311945, -55376.864538508504, -52467.12360183328, + -52611.81877829451, -56920.20508663866, -65398.13506310164, + -76432.17938720556, -88564.55464116468, -100151.16318772525, + -107444.39827260785, -109646.70732503186, -106030.8882099093, + -96382.65353498676, -81425.61659697819, -65095.38243298149, + -48282.70082263184, -31202.960425690675, -17864.88426285411, + -6620.960888365783, 2206.172906961973, 8409.483538989994, + 14406.666606870782, 19246.262030911807, 23142.922296112814, + 26330.246344838466, 27601.317436646925, 26832.118465921383, + 23795.999108280874, 18591.44855166011, 12041.220476634118, + 5454.477589981701, -719.9396023066165, -5018.181975719782, + -7191.998400068899, -8116.703161338851, -7922.132475080465, + -7453.337031455864, -7668.61157938828, -8883.236597500056, + -11096.421251249874, -13524.214406456076, -15499.9059961052, + -16586.95362974454, -15936.807071274263, -13661.007670482522, + -10367.402021101474, -6858.543852421238, -3603.950464533462, + -1670.2800107516612, -1075.5927179158405, -1284.1957839905265, + -1801.5021492976546, -1753.099141096502, -509.64147677842027, + 2051.478331540178, 5571.824396985414, 9068.81452236219, + 11897.868961224776, 13039.74715709855, 12427.817286465952, + 11116.05047051015, 10620.19530694649, 12946.390136079228, + 20176.887555044013, 33573.00132622363, 54842.88258391337, + 80451.08454957607, 108411.80628137958, 139731.7213758639, + 164738.44366302222 + ], + "flow:J34:branch62_seg0": [ + 26.28717649272151, 30.197994800053564, 32.691572868679806, + 33.517032992918985, 32.71142885988644, 30.488454754321456, + 27.216097330727294, 23.380408241955326, 19.43799712271772, + 15.631485362033185, 12.224446862883989, 9.138402686866321, + 6.298200328923973, 3.6318041356924664, 0.9589794787400907, + -1.655070832955933, -4.239440730804531, -6.672776270130817, + -8.722011377334095, -10.405696017090076, -11.640791316867864, + -12.440206415401487, -12.936414906757712, -13.2068847134513, + -13.353100222474023, -13.415436543067441, -13.358998700786849, + -13.128443488372207, -12.66468972567584, -11.95521059102152, + -11.0599641475338, -10.160852625477592, -9.461316573544044, + -9.207185599664001, -9.585543523540814, -10.663159419395189, + -12.328406096803239, -14.372160596184875, -16.41606140314505, + -18.032295452141838, -18.918952569378046, -18.820228590147888, + -17.679473300565817, -15.62171696846348, -12.988609331140534, + -10.005260283682638, -7.062173227262575, -4.460854169952234, + -2.2421419731328314, -0.5130886842759307, 0.843656731459476, + 1.9608212573721728, 2.8685755714838383, 3.6616100733363046, + 4.297254593774024, 4.685535802384404, 4.751624371765176, + 4.425681363753307, 3.7152116973813802, 2.7122301494989753, + 1.5733023992415978, 0.4624741499124106, -0.427645198073829, + -1.0295526738356673, -1.3280207832529551, -1.3830771963901463, + -1.3359795353285886, -1.325409893528977, -1.4479306476578462, + -1.7365056005261867, -2.1272958381422664, -2.5265142082358185, + -2.797438812941456, -2.828060373088904, -2.58728581611055, + -2.117557171603229, -1.521622787677965, -0.933452237300102, + -0.49757774606462324, -0.26032924782014677, -0.21440851291040575, + -0.27489583163489434, -0.30881760745304987, -0.19620267557944093, + 0.12986510709151786, 0.6501194179609598, 1.2573191636032606, + 1.8084786977881662, 2.1438532504175862, 2.2096245874604152, + 2.0639628216248957, 1.9065697956451269, 2.0558859008658037, + 2.8692590980592567, 4.661443440965202, 7.6276278351396805, + 11.585329288018348, 16.402374467695385, 21.56536268654096, + 26.28717649272151 + ], + "pressure:J34:branch62_seg0": [ + 164738.44366302222, 182847.81592300604, 192984.20847454524, + 191931.14773455824, 182201.40081027913, 165838.55371477385, + 144666.51796977594, 121233.1970553397, 99218.06970444965, + 77830.97069216147, 59365.90978931377, 43407.601345866686, + 27326.65433728239, 12485.321367869888, -2946.0847028627286, + -17916.22655757176, -31532.456391881376, -45636.64781327145, + -56266.73002693576, -63899.30915766336, -69940.34042848634, + -73185.34721978457, -75140.41946309453, -76276.97191906959, + -76670.48692673906, -76783.60631282632, -76074.20866759172, + -74084.26682834509, -70629.70772702922, -65911.90898931077, + -60293.83731311945, -55376.864538508504, -52467.12360183328, + -52611.81877829451, -56920.20508663866, -65398.13506310164, + -76432.17938720556, -88564.55464116468, -100151.16318772525, + -107444.39827260785, -109646.70732503186, -106030.8882099093, + -96382.65353498676, -81425.61659697819, -65095.38243298149, + -48282.70082263184, -31202.960425690675, -17864.88426285411, + -6620.960888365783, 2206.172906961973, 8409.483538989994, + 14406.666606870782, 19246.262030911807, 23142.922296112814, + 26330.246344838466, 27601.317436646925, 26832.118465921383, + 23795.999108280874, 18591.44855166011, 12041.220476634118, + 5454.477589981701, -719.9396023066165, -5018.181975719782, + -7191.998400068899, -8116.703161338851, -7922.132475080465, + -7453.337031455864, -7668.61157938828, -8883.236597500056, + -11096.421251249874, -13524.214406456076, -15499.9059961052, + -16586.95362974454, -15936.807071274263, -13661.007670482522, + -10367.402021101474, -6858.543852421238, -3603.950464533462, + -1670.2800107516612, -1075.5927179158405, -1284.1957839905265, + -1801.5021492976546, -1753.099141096502, -509.64147677842027, + 2051.478331540178, 5571.824396985414, 9068.81452236219, + 11897.868961224776, 13039.74715709855, 12427.817286465952, + 11116.05047051015, 10620.19530694649, 12946.390136079228, + 20176.887555044013, 33573.00132622363, 54842.88258391337, + 80451.08454957607, 108411.80628137958, 139731.7213758639, + 164738.44366302222 + ], + "flow:J34:branch126_seg0": [ + 29.814058046204174, 34.192164288383744, 36.92960137429906, + 37.77265668342493, 36.78869381052511, 34.214861008048416, + 30.463368960016005, 26.12600224896385, 21.688102627467046, + 17.391464945335198, 13.580629110206504, 10.127534131112414, + 6.941024551986045, 3.9560864837489107, 0.9413785090034721, + -1.9981550094457698, -4.894204714063367, -7.633088472690963, + -9.922438935419681, -11.798092427417256, -13.166937475765206, + -14.041971886557137, -14.585055471341796, -14.878066698105584, + -15.035160229962573, -15.100753696106075, -15.031660554837059, + -14.764089422798543, -14.231945427995242, -13.420516459247267, + -12.402425518119633, -11.389491015033839, -10.607486862093332, + -10.341486629776947, -10.79909534038089, -12.049002339786465, + -13.951030375195623, -16.27132944019741, -18.578259467065585, + -20.375886891501974, -21.34226676716337, -21.184631867689255, + -19.848376418232142, -17.483674001425918, -14.488070018934085, + -11.111323338780153, -7.799638094519117, -4.88947646136496, + -2.4077204342416456, -0.48605956406035655, 1.0205873824882559, + 2.2630525267429866, 3.2732421760254846, 4.1631760141381715, + 4.869731369762545, 5.293622950543019, 5.354048297768264, + 4.968472070433694, 4.147481447082065, 3.0047071616371, 1.7169249405942832, + 0.46097196215735536, -0.5299970842628425, -1.1902857736305534, + -1.512375311477429, -1.5611005530516515, -1.5013320362349443, + -1.4903459189078259, -1.633969600064745, -1.9668989667264571, + -2.4127699384636796, -2.8634601692451778, -3.1629240408851307, + -3.186048833245151, -2.902016236395809, -2.362027198136759, + -1.683185292311588, -1.0209769593093545, -0.5372898975489465, + -0.2783275962789509, -0.23663542465601953, -0.3118786002188605, + -0.3501630348518753, -0.2170309538873004, 0.1607669347388258, + 0.7559837601730791, 1.4436540439024053, 2.0650859826187173, + 2.432570135675016, 2.491632140417348, 2.3164153790738036, + 2.136593483034232, 2.3164707482123816, 3.2613300884239025, + 5.322771257438374, 8.718686753779556, 13.225358951463143, + 18.69212704119522, 24.51603847878179, 29.814058046204174 + ], + "pressure:J34:branch126_seg0": [ + 164738.44366302222, 182847.81592300604, 192984.20847454524, + 191931.14773455824, 182201.40081027913, 165838.55371477385, + 144666.51796977594, 121233.1970553397, 99218.06970444965, + 77830.97069216147, 59365.90978931377, 43407.601345866686, + 27326.65433728239, 12485.321367869888, -2946.0847028627286, + -17916.22655757176, -31532.456391881376, -45636.64781327145, + -56266.73002693576, -63899.30915766336, -69940.34042848634, + -73185.34721978457, -75140.41946309453, -76276.97191906959, + -76670.48692673906, -76783.60631282632, -76074.20866759172, + -74084.26682834509, -70629.70772702922, -65911.90898931077, + -60293.83731311945, -55376.864538508504, -52467.12360183328, + -52611.81877829451, -56920.20508663866, -65398.13506310164, + -76432.17938720556, -88564.55464116468, -100151.16318772525, + -107444.39827260785, -109646.70732503186, -106030.8882099093, + -96382.65353498676, -81425.61659697819, -65095.38243298149, + -48282.70082263184, -31202.960425690675, -17864.88426285411, + -6620.960888365783, 2206.172906961973, 8409.483538989994, + 14406.666606870782, 19246.262030911807, 23142.922296112814, + 26330.246344838466, 27601.317436646925, 26832.118465921383, + 23795.999108280874, 18591.44855166011, 12041.220476634118, + 5454.477589981701, -719.9396023066165, -5018.181975719782, + -7191.998400068899, -8116.703161338851, -7922.132475080465, + -7453.337031455864, -7668.61157938828, -8883.236597500056, + -11096.421251249874, -13524.214406456076, -15499.9059961052, + -16586.95362974454, -15936.807071274263, -13661.007670482522, + -10367.402021101474, -6858.543852421238, -3603.950464533462, + -1670.2800107516612, -1075.5927179158405, -1284.1957839905265, + -1801.5021492976546, -1753.099141096502, -509.64147677842027, + 2051.478331540178, 5571.824396985414, 9068.81452236219, + 11897.868961224776, 13039.74715709855, 12427.817286465952, + 11116.05047051015, 10620.19530694649, 12946.390136079228, + 20176.887555044013, 33573.00132622363, 54842.88258391337, + 80451.08454957607, 108411.80628137958, 139731.7213758639, + 164738.44366302222 + ], + "flow:branch63_seg0:J35": [ + 73.09128886815988, 85.97264482276772, 95.59484067505524, + 101.13366265856601, 102.3221945604019, 99.36456152517427, + 92.9605923523871, 84.29938621989062, 74.45190816051506, 64.12406808119232, + 54.1898363085354, 44.62181877482973, 35.40897723188021, + 26.468772878548933, 17.415007219822456, 8.442103361345268, + -0.48883273504540453, -9.063108868398992, -16.728147426845933, + -23.430959962260715, -28.868806967565416, -33.05282017855982, + -36.23929682014513, -38.59754273274765, -40.38855973625897, + -41.72528858505678, -42.56316347765937, -42.78753839860394, + -42.2571275113317, -40.92063226999442, -38.92067732415413, + -36.68592781414459, -34.73362765625799, -33.748673766619625, + -34.28559560755306, -36.63134029215184, -40.646152661684575, + -45.9065411953319, -51.520505499595465, -56.41025171889007, + -59.717510408269675, -60.631885244077445, -58.83501595070667, + -54.46313525598878, -48.174463292789476, -40.497455995914734, + -32.456264956936906, -24.776993804498385, -17.74293716244995, + -11.756322968102557, -6.619666223095911, -2.155697097634443, + 1.7151931809943988, 5.205204843120174, 8.167649107236992, + 10.407557330220982, 11.721983519431769, 11.895458373214302, + 10.902484453428482, 8.935358663975936, 6.350188363221701, + 3.554071830039276, 1.078631614325796, -0.8325080216608154, + -2.058503899101373, -2.6722474054248213, -2.965945411766438, + -3.2591548937271155, -3.80549344881464, -4.723427617389251, + -5.906013044157939, -7.14805914755833, -8.106437473063323, + -8.49584360387124, -8.188810975061248, -7.235397036148732, + -5.843416412005658, -4.348352099014318, -3.105411046020315, + -2.2742658243134, -1.9066790484404692, -1.8341772522647664, + -1.7526105482932641, -1.3614771047755367, -0.46146514910387615, + 0.944826475036654, 2.6370829314942585, 4.283317848632284, + 5.467787783550878, 6.006225910040297, 5.977430804417988, + 5.819189397631439, 6.301265177861552, 8.353390041985008, + 12.866178167135882, 20.465330422806083, 30.956369339440364, + 44.173650990022914, 58.78273882953819, 73.09128886815988 + ], + "pressure:branch63_seg0:J35": [ + 130572.71045513055, 149253.1631291483, 162379.96129144443, + 167465.6561619106, 165634.88959102842, 157774.29802578385, + 145116.70519808287, 129002.21799655346, 112593.5438976229, + 95873.79280731195, 79818.4701406636, 64871.620092402714, + 49943.50073853373, 35512.14407837286, 20800.144878380303, + 6166.95444617172, -8098.927479648124, -21830.702679433998, + -33366.46966833526, -43173.31914680861, -51152.46425187857, + -56883.05841837906, -61281.57787709871, -64563.91728993358, + -67006.35128054727, -68840.40534569426, -69749.67997660227, + -69519.63677337128, -67966.13545924824, -65189.65319545528, + -61438.12099859646, -57784.885179465244, -55197.4302133009, + -54545.767674205985, -56834.27459665076, -62221.59714001317, + -70036.43141677229, -79260.07510798112, -88453.9610909239, + -95399.29743071429, -99023.26989314702, -98420.90660831779, + -93214.21306552071, -83850.66706349858, -72451.05441273708, + -59326.573305147846, -45799.90121041999, -34077.480345704964, + -23330.67545836509, -14310.335042776725, -6865.193342730879, + 120.61331902053169, 5944.31184922705, 11106.046370379507, + 15594.749893315678, 18492.894438509273, 19726.24322588129, + 19062.98177513482, 16529.231107604835, 12542.589883327633, + 8018.201078893121, 3525.1461361760894, -177.37036464616313, + -2678.339634284312, -4121.670957816121, -4717.27778314967, + -5015.295411970038, -5604.461895437178, -6779.9383433753255, + -8608.790049796076, -10656.559333956124, -12568.383164310442, + -13839.13713436236, -13897.516268196592, -12772.616110765774, + -10743.698470787207, -8289.56566376821, -5816.069392870889, + -4122.108009041981, -3229.6245208751984, -2924.6563455191867, + -2954.583485424993, -2709.2904594290494, -1715.0007585691444, + 195.32339044253334, 2883.6303586016857, 5742.164728198284, + 8209.177929202675, 9675.477518031928, 9964.648924625111, + 9542.249230968735, 9442.266167304197, 11106.261207819463, + 16120.115738442913, 25722.17941702069, 41043.84661950459, + 60259.98730676342, 83143.61488251467, 108601.14848124888, + 130572.71045513055 + ], + "flow:J35:branch64_seg0": [ + 15.832609545206907, 18.590796572390126, 20.638528694321096, + 21.79778464290052, 22.018586641857638, 21.352395388167867, + 19.95259457458061, 18.063984917556912, 15.939944917602672, + 13.71895808283804, 11.577379815700475, 9.524470283859745, + 7.545092492677254, 5.621949821974893, 3.678553177489552, + 1.7459400229120654, -0.17645983735557785, -2.0128243558556553, + -3.656987869992546, -5.091334480550885, -6.250823646517873, + -7.142177769775034, -7.8193761831138096, -8.32034564369233, + -8.701346784204617, -8.985068870742385, -9.161179016585002, + -9.204685846500979, -9.084611192338501, -8.791886862247908, + -8.356916734234575, -7.874968881303154, -7.45871847721847, + -7.253491463396436, -7.380120540641382, -7.897122016660439, + -8.774700162337595, -9.914025237997713, -11.12359483761306, + -12.171943356596003, -12.870042422479294, -13.050134547864763, + -12.643623283986985, -11.684793732188512, -10.31723301869374, + -8.65451905878082, -6.9216990440362824, -5.271857780891744, + -3.7638405384632665, -2.482954149401736, -1.3840266787631177, + -0.4279770763986098, 0.3991185872633534, 1.1461441026231418, + 1.7804782915926667, 2.256039154652349, 2.5313389091117444, + 2.5604240322840317, 2.338922859996887, 1.907357115545095, + 1.3470128261992613, 0.746118630254018, 0.2132520831176341, + -0.19382104599608554, -0.4519249332486209, -0.5802769960457477, + -0.6411406357916212, -0.7040427138437964, -0.8234306688615078, + -1.0234034310121118, -1.279491619197498, -1.547118617249063, + -1.7509852645719877, -1.8304965060176603, -1.7592588985319866, + -1.5494085131350008, -1.2471831429723854, -0.9243583675879951, + -0.6591862480626061, -0.4835679210134411, -0.40720611882477753, + -0.39345457690655367, -0.3757370273770755, -0.28932482894866246, + -0.09239909195783605, 0.21398827079199134, 0.5799497373005249, + 0.9325021539234678, 1.185176963213143, 1.2966254711964151, + 1.2864091087045328, 1.252120842313252, 1.3613637894135135, + 1.8152409321450513, 2.8054182437711237, 4.463197428090811, + 6.741096241834339, 9.606591147582145, 12.761172978575422, + 15.832609545206907 + ], + "pressure:J35:branch64_seg0": [ + 130572.71045513055, 149253.1631291483, 162379.96129144443, + 167465.6561619106, 165634.88959102842, 157774.29802578385, + 145116.70519808287, 129002.21799655346, 112593.5438976229, + 95873.79280731195, 79818.4701406636, 64871.620092402714, + 49943.50073853373, 35512.14407837286, 20800.144878380303, + 6166.95444617172, -8098.927479648124, -21830.702679433998, + -33366.46966833526, -43173.31914680861, -51152.46425187857, + -56883.05841837906, -61281.57787709871, -64563.91728993358, + -67006.35128054727, -68840.40534569426, -69749.67997660227, + -69519.63677337128, -67966.13545924824, -65189.65319545528, + -61438.12099859646, -57784.885179465244, -55197.4302133009, + -54545.767674205985, -56834.27459665076, -62221.59714001317, + -70036.43141677229, -79260.07510798112, -88453.9610909239, + -95399.29743071429, -99023.26989314702, -98420.90660831779, + -93214.21306552071, -83850.66706349858, -72451.05441273708, + -59326.573305147846, -45799.90121041999, -34077.480345704964, + -23330.67545836509, -14310.335042776725, -6865.193342730879, + 120.61331902053169, 5944.31184922705, 11106.046370379507, + 15594.749893315678, 18492.894438509273, 19726.24322588129, + 19062.98177513482, 16529.231107604835, 12542.589883327633, + 8018.201078893121, 3525.1461361760894, -177.37036464616313, + -2678.339634284312, -4121.670957816121, -4717.27778314967, + -5015.295411970038, -5604.461895437178, -6779.9383433753255, + -8608.790049796076, -10656.559333956124, -12568.383164310442, + -13839.13713436236, -13897.516268196592, -12772.616110765774, + -10743.698470787207, -8289.56566376821, -5816.069392870889, + -4122.108009041981, -3229.6245208751984, -2924.6563455191867, + -2954.583485424993, -2709.2904594290494, -1715.0007585691444, + 195.32339044253334, 2883.6303586016857, 5742.164728198284, + 8209.177929202675, 9675.477518031928, 9964.648924625111, + 9542.249230968735, 9442.266167304197, 11106.261207819463, + 16120.115738442913, 25722.17941702069, 41043.84661950459, + 60259.98730676342, 83143.61488251467, 108601.14848124888, + 130572.71045513055 + ], + "flow:J35:branch83_seg0": [ + 29.980304971658292, 35.119737634218396, 38.885278102862436, + 40.96599857789021, 41.28678936463249, 39.94024188270157, + 37.221511979865674, 33.65510143019172, 29.633531910697783, + 25.44059218437714, 21.460618565312263, 17.617266912788292, + 13.91620896455564, 10.329105412665843, 6.669384961933989, + 3.062655942268094, -0.526586480250513, -3.9848013436730607, + -7.035207610286227, -9.696409471487032, -11.846205925511352, + -13.481366783639997, -14.727465126569948, -15.646066658231529, + -16.343263069856906, -16.86460528367797, -17.18350875994606, + -17.25069715906526, -17.009522395536553, -16.440144733952106, + -15.607903807908645, -14.696394484857604, -13.916152389828994, + -13.552495864672311, -13.823836037172525, -14.83822336934589, + -16.514405719606174, -18.684311019820267, -20.96660619296439, + -22.90930199245389, -24.187983817635097, -24.469194627101263, + -23.643354521448508, -21.77852771231666, -19.173336313574435, + -16.030972971180933, -12.76632790251355, -9.688189609858389, + -6.876134118045822, -4.501240173872857, -2.4697812978200204, + -0.6964879037797586, 0.8412240891462833, 2.2305159352387474, + 3.403659615836174, 4.279878866964047, 4.775778448085202, + 4.8038260036541125, 4.358194225714856, 3.5304543801103985, + 2.4637249655433093, 1.3224569608524432, 0.33959544249382057, + -0.40894160448298117, -0.8798815372949416, -1.102500097872136, + -1.20680558991457, -1.3237137101278695, -1.5520311049841884, + -1.9357318028486812, -2.4222269586093965, -2.924549193000755, + -3.302694186532939, -3.439093479395929, -3.2896449914764077, + -2.8813264864210986, -2.3033598797533568, -1.6954500829897372, + -1.2021031861361995, -0.8821912095765191, -0.751473951713056, + -0.7345804817890417, -0.7030313636142237, -0.5353269082861644, + -0.1539403169279635, 0.43087286891668736, 1.1241751601782075, + 1.7896702641470954, 2.2491077031698827, 2.4413895169975346, + 2.408530056326771, 2.337825471941663, 2.5522350988757267, + 3.433261195897968, 5.337439481732246, 8.516582710969738, + 12.851408647278532, 18.264607493132505, 24.219519846392682, + 29.980304971658292 + ], + "pressure:J35:branch83_seg0": [ + 130572.71045513055, 149253.1631291483, 162379.96129144443, + 167465.6561619106, 165634.88959102842, 157774.29802578385, + 145116.70519808287, 129002.21799655346, 112593.5438976229, + 95873.79280731195, 79818.4701406636, 64871.620092402714, + 49943.50073853373, 35512.14407837286, 20800.144878380303, + 6166.95444617172, -8098.927479648124, -21830.702679433998, + -33366.46966833526, -43173.31914680861, -51152.46425187857, + -56883.05841837906, -61281.57787709871, -64563.91728993358, + -67006.35128054727, -68840.40534569426, -69749.67997660227, + -69519.63677337128, -67966.13545924824, -65189.65319545528, + -61438.12099859646, -57784.885179465244, -55197.4302133009, + -54545.767674205985, -56834.27459665076, -62221.59714001317, + -70036.43141677229, -79260.07510798112, -88453.9610909239, + -95399.29743071429, -99023.26989314702, -98420.90660831779, + -93214.21306552071, -83850.66706349858, -72451.05441273708, + -59326.573305147846, -45799.90121041999, -34077.480345704964, + -23330.67545836509, -14310.335042776725, -6865.193342730879, + 120.61331902053169, 5944.31184922705, 11106.046370379507, + 15594.749893315678, 18492.894438509273, 19726.24322588129, + 19062.98177513482, 16529.231107604835, 12542.589883327633, + 8018.201078893121, 3525.1461361760894, -177.37036464616313, + -2678.339634284312, -4121.670957816121, -4717.27778314967, + -5015.295411970038, -5604.461895437178, -6779.9383433753255, + -8608.790049796076, -10656.559333956124, -12568.383164310442, + -13839.13713436236, -13897.516268196592, -12772.616110765774, + -10743.698470787207, -8289.56566376821, -5816.069392870889, + -4122.108009041981, -3229.6245208751984, -2924.6563455191867, + -2954.583485424993, -2709.2904594290494, -1715.0007585691444, + 195.32339044253334, 2883.6303586016857, 5742.164728198284, + 8209.177929202675, 9675.477518031928, 9964.648924625111, + 9542.249230968735, 9442.266167304197, 11106.261207819463, + 16120.115738442913, 25722.17941702069, 41043.84661950459, + 60259.98730676342, 83143.61488251467, 108601.14848124888, + 130572.71045513055 + ], + "flow:J35:branch97_seg0": [ + 27.27837435129456, 32.26211061615947, 36.07103387787194, + 38.36987943777645, 39.01681855390978, 38.071924254302054, + 35.78648579794069, 32.58029987214283, 28.878431332215513, + 24.964517813975704, 21.151837927522298, 17.48008157818591, + 13.947675774648138, 10.517717643903389, 7.06706908039664, + 3.6335073961661264, 0.2142135825643796, -3.0654831688726065, + -6.035951946566874, -8.643216010222446, -10.771777395537661, + -12.42927562514212, -13.69245551045959, -14.631130430821253, + -15.343949882196897, -15.875614430637228, -16.218475701127574, + -16.33215539303784, -16.16299392345646, -15.688600673793184, + -14.955856782010216, -14.11456444798523, -13.358756789213922, + -12.942686438550801, -13.081639029740645, -13.895994906146294, + -15.357046779741342, -17.3082049375122, -19.430304469019163, + -21.329006369840275, -22.659484168155892, -23.112556069111648, + -22.548038145271985, -20.999813811483076, -18.68389396052127, + -15.811963965952867, -12.768238010387137, -9.816946413748278, + -7.102962505940975, -4.772128644828035, -2.765858246512757, + -1.031232117456036, 0.4748505045847881, 1.8285448052582778, + 2.9835111998081394, 3.8716393086045437, 4.414866162234742, + 4.531208337276193, 4.2053673677166525, 3.4975471683204864, + 2.5394505714791933, 1.485496238932672, 0.5257840887146599, + -0.2297453711818549, -0.7266974285578708, -0.9894703115072013, + -1.117999186060313, -1.2313984697556932, -1.4300316749688535, + -1.7642923835283977, -2.204294466351009, -2.6763913373084107, + -3.052758021958329, -3.2262536184577684, -3.139907085052858, + -2.804662036592632, -2.2928733892799418, -1.7285436484367163, + -1.2441216118214118, -0.9085066937234462, -0.7479989779026391, + -0.7061421935691795, -0.6738421573019838, -0.5368253675406729, + -0.21512574021809758, 0.2999653353279672, 0.9329580340155268, + 1.5611454305617491, 2.0335031171678195, 2.268210921846303, + 2.282491639386705, 2.22924308337646, 2.3876662895723326, + 3.104887913942012, 4.723320441632588, 7.485550283745677, + 11.363864450327338, 16.302452349307625, 21.802046004569796, + 27.27837435129456 + ], + "pressure:J35:branch97_seg0": [ + 130572.71045513055, 149253.1631291483, 162379.96129144443, + 167465.6561619106, 165634.88959102842, 157774.29802578385, + 145116.70519808287, 129002.21799655346, 112593.5438976229, + 95873.79280731195, 79818.4701406636, 64871.620092402714, + 49943.50073853373, 35512.14407837286, 20800.144878380303, + 6166.95444617172, -8098.927479648124, -21830.702679433998, + -33366.46966833526, -43173.31914680861, -51152.46425187857, + -56883.05841837906, -61281.57787709871, -64563.91728993358, + -67006.35128054727, -68840.40534569426, -69749.67997660227, + -69519.63677337128, -67966.13545924824, -65189.65319545528, + -61438.12099859646, -57784.885179465244, -55197.4302133009, + -54545.767674205985, -56834.27459665076, -62221.59714001317, + -70036.43141677229, -79260.07510798112, -88453.9610909239, + -95399.29743071429, -99023.26989314702, -98420.90660831779, + -93214.21306552071, -83850.66706349858, -72451.05441273708, + -59326.573305147846, -45799.90121041999, -34077.480345704964, + -23330.67545836509, -14310.335042776725, -6865.193342730879, + 120.61331902053169, 5944.31184922705, 11106.046370379507, + 15594.749893315678, 18492.894438509273, 19726.24322588129, + 19062.98177513482, 16529.231107604835, 12542.589883327633, + 8018.201078893121, 3525.1461361760894, -177.37036464616313, + -2678.339634284312, -4121.670957816121, -4717.27778314967, + -5015.295411970038, -5604.461895437178, -6779.9383433753255, + -8608.790049796076, -10656.559333956124, -12568.383164310442, + -13839.13713436236, -13897.516268196592, -12772.616110765774, + -10743.698470787207, -8289.56566376821, -5816.069392870889, + -4122.108009041981, -3229.6245208751984, -2924.6563455191867, + -2954.583485424993, -2709.2904594290494, -1715.0007585691444, + 195.32339044253334, 2883.6303586016857, 5742.164728198284, + 8209.177929202675, 9675.477518031928, 9964.648924625111, + 9542.249230968735, 9442.266167304197, 11106.261207819463, + 16120.115738442913, 25722.17941702069, 41043.84661950459, + 60259.98730676342, 83143.61488251467, 108601.14848124888, + 130572.71045513055 + ], + "flow:branch65_seg0:J36": [ + 63.0479475253451, 74.33940764491963, 82.78040144450878, 87.6279637513745, + 88.62132131274328, 85.95099647355032, 80.2614480386765, 72.64395331572914, + 63.9837578392155, 54.96626766385667, 46.35837168260738, + 38.111897235757155, 30.255290342004024, 22.697777518844457, + 15.099605152214012, 7.624532309676785, 0.20124659305496892, + -6.943705776654733, -13.345194533973219, -18.975663502961904, + -23.588582268969976, -27.17932658454985, -29.95195106615697, + -32.03860775426558, -33.65137150500313, -34.88823280654894, + -35.717293696555785, -36.044333662396866, -35.74901095136296, + -34.77365018251409, -33.22469282844278, -31.436273893422054, + -29.832158163332828, -28.993981899518605, -29.39849494846275, + -31.32303513605973, -34.68560519222939, -39.182854796294954, + -44.08386954582667, -48.49392468707526, -51.6742672412947, + -52.88583368928051, -51.799671065406194, -48.45487527504472, + -43.342051625617756, -36.894073629736724, -29.963430764982995, + -23.198957344958703, -16.905337000763076, -11.463056491095635, + -6.753242696375165, -2.6516238428003676, 0.9199729749990175, + 4.1300695594652765, 6.86597256477097, 8.978030751700205, + 10.280019175740108, 10.580113086281928, 9.841045126663795, + 8.219634524941188, 6.000320224763185, 3.5408415934683215, + 1.3185323074854542, -0.4498320490598711, -1.629666830133536, + -2.2590113908314917, -2.57822825024591, -2.859533653449222, + -3.3318393057566316, -4.115568363932573, -5.140328930880795, + -6.239202199347752, -7.123451148807148, -7.537888744061204, + -7.35308682216933, -6.5904209305886825, -5.412758321082826, + -4.1061917297436565, -2.9759317879687677, -2.1850417002828575, + -1.7990497933490406, -1.688780479004374, -1.6025488146768094, + -1.2770679838195627, -0.5235265348136017, 0.674306692295774, + 2.1505403069644813, 3.6252944488466508, 4.728839248395504, + 5.28720693609126, 5.3368780652817795, 5.225281452083187, + 5.600199766480462, 7.26666667851303, 11.017950305739992, + 17.433032866117237, 26.41587764983923, 37.812600134745246, + 50.507723506177996, 63.0479475253451 + ], + "pressure:branch65_seg0:J36": [ + 118719.46099565424, 137160.83068736384, 150261.20457080237, + 156208.89157100327, 155467.0966430944, 148747.44226551286, + 137244.11994563334, 122560.31734784387, 107110.08361722119, + 91285.62266163164, 76241.26975191128, 62155.61496171904, 48396.626145386, + 35193.16651150643, 21846.69003200715, 8641.860860369863, + -4279.398278836648, -16710.88412607914, -27456.401464503804, + -36716.01077549341, -44295.797966177335, -49966.06866288472, + -54356.07541485989, -57678.59014542775, -60224.59752671065, + -62181.2203299059, -63354.0294390972, -63554.10707498355, + -62591.06906298982, -60475.5253237661, -57409.23341435775, + -54221.406646412936, -51728.049409376625, -50834.49470468366, + -52437.18466160136, -56830.23944321368, -63612.16077950095, + -72006.39726109715, -80731.71931910506, -87917.31004502212, + -92431.05282814537, -93225.19344811374, -89799.0716856676, + -82413.17270042059, -72522.09177272482, -60629.80363131005, + -48097.81647199506, -36591.00219948566, -25932.64050899952, + -16832.225576822842, -9123.05427407401, -2134.814745980355, + 3813.6388407366194, 9131.991434473213, 13700.456852406585, + 16920.235276520492, 18614.314759607743, 18502.4415323245, + 16575.449455947142, 13177.765360893456, 9034.49513234461, + 4708.449452467113, 981.7306609833876, -1737.254972290239, + -3444.98953874855, -4270.475460670138, -4692.40073495386, + -5239.511672891465, -6246.472993888187, -7841.324373507626, + -9741.190181018163, -11625.242222904546, -12996.655178473466, + -13357.55423542506, -12618.380088001504, -10945.054903548911, + -8717.452744096381, -6375.842019315627, -4588.039157547512, + -3483.378672647439, -3010.321466983616, -2930.1138938130734, + -2721.7124081750194, -1927.477940187141, -311.1811967162807, + 2068.9559126713484, 4753.643949700254, 7230.926215173816, + 8888.140457007286, 9482.713017593069, 9305.913061959882, + 9176.793691784183, 10374.917528529211, 14375.75018339048, + 22463.949081311483, 35677.03421641176, 52967.11432245431, + 74071.20224245486, 97433.57942564327, 118719.46099565424 + ], + "flow:J36:branch66_seg0": [ + 20.842231490117406, 24.437245996806514, 27.06340604782143, + 28.49238140992855, 28.67511821452294, 27.685349258438368, + 25.740507155356052, 23.21185205114135, 20.383373442390518, + 17.453136411341674, 14.685640108803677, 12.03548252888797, + 9.501942158001441, 7.067738902785401, 4.603815967085649, + 2.1872967638831544, -0.20810512450935612, -2.5174220624859616, + -4.559285827511469, -6.348798352524593, -7.807852447453592, + -8.930248129062173, -9.797825083898442, -10.448993770261199, + -10.952224832006493, -11.338330010692205, -11.590058531081812, + -11.675003355087858, -11.554581686604164, -11.213002197011264, + -10.689673563554607, -10.103806343997421, -9.594429818236, + -9.353349908802858, -9.532915982993861, -10.213794188315465, + -11.352118829419434, -12.843996681602404, -14.441570517584132, + -15.840384111869195, -16.81582908135911, -17.130027933624014, + -16.68890170584687, -15.518128400110992, -13.803464304553243, + -11.675429821335841, -9.41461137416497, -7.242555197180889, + -5.2275800483963755, -3.499880155492532, -2.0094064885245637, + -0.7036590982306363, 0.4302604850005293, 1.4521911288538882, + 2.31888932142196, 2.975445876430966, 3.364480589264515, + 3.4236881887443715, 3.1455812302338653, 2.5896596766847577, + 1.8532920001039073, 1.0502837023461407, 0.3434153231648269, + -0.2077493555509472, -0.5680187337658344, -0.7515118441164963, + -0.8438178597652599, -0.9350209649624653, -1.0958866804526177, + -1.3613355043687063, -1.700321833003985, -2.0559704117172957, + -2.3328860007069707, -2.447455782886693, -2.364471775010915, + -2.0971649464861444, -1.703048970221202, -1.2768407161284645, + -0.9201785490505016, -0.6786073680393148, -0.5682303612910673, + -0.5421040609563572, -0.5137524471534964, -0.3981559444100372, + -0.137931356780315, 0.2653930786147408, 0.7507615758771511, + 1.2259538028444155, 1.5667862148838025, 1.7251045518038561, + 1.723433584227297, 1.6846880066132148, 1.828551720030674, + 2.420474275995759, 3.7135825118898422, 5.892820996675136, + 8.888798354466077, 12.650149929518314, 16.808223785973944, + 20.842231490117406 + ], + "pressure:J36:branch66_seg0": [ + 118719.46099565424, 137160.83068736384, 150261.20457080237, + 156208.89157100327, 155467.0966430944, 148747.44226551286, + 137244.11994563334, 122560.31734784387, 107110.08361722119, + 91285.62266163164, 76241.26975191128, 62155.61496171904, 48396.626145386, + 35193.16651150643, 21846.69003200715, 8641.860860369863, + -4279.398278836648, -16710.88412607914, -27456.401464503804, + -36716.01077549341, -44295.797966177335, -49966.06866288472, + -54356.07541485989, -57678.59014542775, -60224.59752671065, + -62181.2203299059, -63354.0294390972, -63554.10707498355, + -62591.06906298982, -60475.5253237661, -57409.23341435775, + -54221.406646412936, -51728.049409376625, -50834.49470468366, + -52437.18466160136, -56830.23944321368, -63612.16077950095, + -72006.39726109715, -80731.71931910506, -87917.31004502212, + -92431.05282814537, -93225.19344811374, -89799.0716856676, + -82413.17270042059, -72522.09177272482, -60629.80363131005, + -48097.81647199506, -36591.00219948566, -25932.64050899952, + -16832.225576822842, -9123.05427407401, -2134.814745980355, + 3813.6388407366194, 9131.991434473213, 13700.456852406585, + 16920.235276520492, 18614.314759607743, 18502.4415323245, + 16575.449455947142, 13177.765360893456, 9034.49513234461, + 4708.449452467113, 981.7306609833876, -1737.254972290239, + -3444.98953874855, -4270.475460670138, -4692.40073495386, + -5239.511672891465, -6246.472993888187, -7841.324373507626, + -9741.190181018163, -11625.242222904546, -12996.655178473466, + -13357.55423542506, -12618.380088001504, -10945.054903548911, + -8717.452744096381, -6375.842019315627, -4588.039157547512, + -3483.378672647439, -3010.321466983616, -2930.1138938130734, + -2721.7124081750194, -1927.477940187141, -311.1811967162807, + 2068.9559126713484, 4753.643949700254, 7230.926215173816, + 8888.140457007286, 9482.713017593069, 9305.913061959882, + 9176.793691784183, 10374.917528529211, 14375.75018339048, + 22463.949081311483, 35677.03421641176, 52967.11432245431, + 74071.20224245486, 97433.57942564327, 118719.46099565424 + ], + "flow:J36:branch67_seg0": [ + 21.465927635802636, 25.323208526158126, 28.208894082086175, + 29.871235668376848, 30.215776013437104, 29.30844885600699, + 27.37051725244442, 24.773375583772985, 21.818082297070188, + 18.743852733565603, 15.807767387171996, 12.996344461112226, + 10.32159614486688, 7.748238791401042, 5.164055351774437, + 2.620823262724324, 0.09402575112207519, -2.336049413908327, + -4.517749154674431, -6.437365759750906, -8.009998986932297, + -9.23643068617315, -10.183101025832611, -10.895990784796435, + -11.447628042131152, -11.871038707301292, -12.156421383775477, + -12.271644202028531, -12.1753469331217, -11.847243256422216, + -11.323119569611867, -10.715013097308622, -10.167439632205623, + -9.878690028863243, -10.011368676676607, -10.66153211893211, + -11.803921737299682, -13.335607676873066, -15.00810916259337, + -16.51931941544609, -17.6140517119327, -18.03976269391416, + -17.682705256953977, -16.554442557408436, -14.817271666353436, + -12.621584716302927, -10.258883270724455, -7.946787574313367, + -5.796007322198391, -3.9345562332432724, -2.322658173965073, + -0.9209447134532376, 0.30071292310919506, 1.3985740611869517, + 2.3345815065379276, 3.0591584071481828, 3.507539952116948, + 3.6142637250934047, 3.366126533461242, 2.8155721853387283, + 2.0589226148682545, 1.2193919755342055, 0.4585185256418308, + -0.14821838721376013, -0.5532473144884087, -0.7700192256414471, + -0.8796754502630537, -0.9749774014940915, -1.1348123059498758, + -1.4008092383854434, -1.7501400195595325, -2.1258853910050464, + -2.429307251503163, -2.573617697801294, -2.513419002584953, + -2.255157491638831, -1.853972972531081, -1.407787404530446, + -1.02015640095702, -0.7481257126325667, -0.6148629044829685, + -0.5765285055746305, -0.5477556025395554, -0.4383939836753688, + -0.18327610240165196, 0.22399474080890386, 0.7277741841476428, + 1.2321653164651434, 1.6114708983917438, 1.805016864322748, + 1.8235548846063543, 1.784600572268645, 1.908381253611151, + 2.4694787187320255, 3.739764811529576, 5.91636043492107, + 8.973303217528626, 12.856710911068092, 17.182531459837612, + 21.465927635802636 + ], + "pressure:J36:branch67_seg0": [ + 118719.46099565424, 137160.83068736384, 150261.20457080237, + 156208.89157100327, 155467.0966430944, 148747.44226551286, + 137244.11994563334, 122560.31734784387, 107110.08361722119, + 91285.62266163164, 76241.26975191128, 62155.61496171904, 48396.626145386, + 35193.16651150643, 21846.69003200715, 8641.860860369863, + -4279.398278836648, -16710.88412607914, -27456.401464503804, + -36716.01077549341, -44295.797966177335, -49966.06866288472, + -54356.07541485989, -57678.59014542775, -60224.59752671065, + -62181.2203299059, -63354.0294390972, -63554.10707498355, + -62591.06906298982, -60475.5253237661, -57409.23341435775, + -54221.406646412936, -51728.049409376625, -50834.49470468366, + -52437.18466160136, -56830.23944321368, -63612.16077950095, + -72006.39726109715, -80731.71931910506, -87917.31004502212, + -92431.05282814537, -93225.19344811374, -89799.0716856676, + -82413.17270042059, -72522.09177272482, -60629.80363131005, + -48097.81647199506, -36591.00219948566, -25932.64050899952, + -16832.225576822842, -9123.05427407401, -2134.814745980355, + 3813.6388407366194, 9131.991434473213, 13700.456852406585, + 16920.235276520492, 18614.314759607743, 18502.4415323245, + 16575.449455947142, 13177.765360893456, 9034.49513234461, + 4708.449452467113, 981.7306609833876, -1737.254972290239, + -3444.98953874855, -4270.475460670138, -4692.40073495386, + -5239.511672891465, -6246.472993888187, -7841.324373507626, + -9741.190181018163, -11625.242222904546, -12996.655178473466, + -13357.55423542506, -12618.380088001504, -10945.054903548911, + -8717.452744096381, -6375.842019315627, -4588.039157547512, + -3483.378672647439, -3010.321466983616, -2930.1138938130734, + -2721.7124081750194, -1927.477940187141, -311.1811967162807, + 2068.9559126713484, 4753.643949700254, 7230.926215173816, + 8888.140457007286, 9482.713017593069, 9305.913061959882, + 9176.793691784183, 10374.917528529211, 14375.75018339048, + 22463.949081311483, 35677.03421641176, 52967.11432245431, + 74071.20224245486, 97433.57942564327, 118719.46099565424 + ], + "flow:J36:branch82_seg0": [ + 20.739788399425116, 24.578953121955674, 27.50810131460147, + 29.264346673069323, 29.730427084784484, 28.95719835910488, + 27.15042363087551, 24.658725680816982, 21.782302099755455, + 18.769278518948767, 15.86496418663284, 13.08007024575666, + 10.431752039136232, 7.881799824659988, 5.3317338333541064, + 2.816412283070877, 0.31532596644412386, -2.0902343002607053, + -4.268159551787924, -6.189499390687067, -7.770730834585198, + -9.012647769317203, -9.971024956422829, -10.69362319920789, + -11.25151863086672, -11.678864088556157, -11.970813781699727, + -12.097686105279848, -12.01908233163697, -11.713404729079869, + -11.211899695275598, -10.617454452116549, -10.07028871288943, + -9.761941961852388, -9.85421028879232, -10.447708828814363, + -11.529564625511053, -13.003250437820254, -14.634189865648729, + -16.134221159759967, -17.244386448002306, -17.71604306174274, + -17.428064102605425, -16.382304317525673, -14.721315654711148, + -12.597059092097759, -10.289936120093524, -8.009614573464468, + -5.8817496301683585, -4.0286201023597386, -2.421178033885521, + -1.0270200311164066, 0.18899956688929184, 1.279304369424396, + 2.212501736811048, 2.943426468121095, 3.407998634358657, + 3.5421611724440756, 3.329337362968755, 2.814402662917575, + 2.088105609790942, 1.2711659155880322, 0.5165984586787535, + -0.09386430629515286, -0.5084007818794247, -0.7374803210735646, + -0.854734940217575, -0.9495352869925742, -1.1011403193542686, + -1.3534236211783546, -1.6898670783171137, -2.0573463966254293, + -2.361257896597023, -2.5168152633732386, -2.4751960445734125, + -2.238098492463633, -1.8557363783305862, -1.421563609084683, + -1.035596837961258, -0.7583086196110169, -0.6159565275750135, + -0.5701479124733803, -0.541040764983789, -0.440518055734188, + -0.20231907563165993, 0.18491887287215597, 0.6720045469396568, + 1.1671753295371072, 1.5505821351199327, 1.7570855199646014, + 1.7898895964480772, 1.7559928732013965, 1.8632667928386726, + 2.3767136837852108, 3.5646029823207326, 5.6238514345212085, + 8.553776077844569, 12.305739294158762, 16.51696826036665, + 20.739788399425116 + ], + "pressure:J36:branch82_seg0": [ + 118719.46099565424, 137160.83068736384, 150261.20457080237, + 156208.89157100327, 155467.0966430944, 148747.44226551286, + 137244.11994563334, 122560.31734784387, 107110.08361722119, + 91285.62266163164, 76241.26975191128, 62155.61496171904, 48396.626145386, + 35193.16651150643, 21846.69003200715, 8641.860860369863, + -4279.398278836648, -16710.88412607914, -27456.401464503804, + -36716.01077549341, -44295.797966177335, -49966.06866288472, + -54356.07541485989, -57678.59014542775, -60224.59752671065, + -62181.2203299059, -63354.0294390972, -63554.10707498355, + -62591.06906298982, -60475.5253237661, -57409.23341435775, + -54221.406646412936, -51728.049409376625, -50834.49470468366, + -52437.18466160136, -56830.23944321368, -63612.16077950095, + -72006.39726109715, -80731.71931910506, -87917.31004502212, + -92431.05282814537, -93225.19344811374, -89799.0716856676, + -82413.17270042059, -72522.09177272482, -60629.80363131005, + -48097.81647199506, -36591.00219948566, -25932.64050899952, + -16832.225576822842, -9123.05427407401, -2134.814745980355, + 3813.6388407366194, 9131.991434473213, 13700.456852406585, + 16920.235276520492, 18614.314759607743, 18502.4415323245, + 16575.449455947142, 13177.765360893456, 9034.49513234461, + 4708.449452467113, 981.7306609833876, -1737.254972290239, + -3444.98953874855, -4270.475460670138, -4692.40073495386, + -5239.511672891465, -6246.472993888187, -7841.324373507626, + -9741.190181018163, -11625.242222904546, -12996.655178473466, + -13357.55423542506, -12618.380088001504, -10945.054903548911, + -8717.452744096381, -6375.842019315627, -4588.039157547512, + -3483.378672647439, -3010.321466983616, -2930.1138938130734, + -2721.7124081750194, -1927.477940187141, -311.1811967162807, + 2068.9559126713484, 4753.643949700254, 7230.926215173816, + 8888.140457007286, 9482.713017593069, 9305.913061959882, + 9176.793691784183, 10374.917528529211, 14375.75018339048, + 22463.949081311483, 35677.03421641176, 52967.11432245431, + 74071.20224245486, 97433.57942564327, 118719.46099565424 + ], + "flow:branch70_seg0:J37": [ + 65.99973662935584, 72.43655874586862, 74.72973463413058, 72.8588845260746, + 67.7117551725354, 60.11309202440669, 51.010210383939054, + 41.772831398748764, 33.46545215530812, 25.780481884141448, + 19.319505757420337, 13.679695365067694, 8.043964481799206, + 2.7244768737481277, -2.9373743219013564, -8.636226576328026, + -13.829570284103564, -18.820220546613257, -22.476325463451605, + -25.220683050765185, -27.0141235418852, -27.852467443863205, + -28.339205502735364, -28.549919508718126, -28.672372331148445, + -28.686302369023938, -28.37389378591391, -27.536090407752358, + -26.09510575689372, -24.087637668644618, -21.846102169248418, + -19.98156773915812, -19.02412808264499, -19.504097765313862, + -21.754220604694968, -25.560856074605198, -30.402314657631056, + -35.36279587665475, -39.68417668881538, -42.04902673833378, + -42.229993649056354, -39.84846773622068, -35.25783860989304, + -28.906506296960956, -22.15851816758948, -15.26670419359302, + -9.133527977673017, -4.457652183208225, -0.6044368904281066, + 2.05369776418791, 4.159812217547112, 6.043326867877059, 7.613040930705843, + 9.091516061819997, 10.154340305982295, 10.46577626098183, + 9.937983049448768, 8.445165375676469, 6.15138895555879, 3.428862974675198, + 0.8327407458947932, -1.388944780984395, -2.795195344998634, + -3.3385337671610507, -3.327564609538478, -2.9524666469839693, + -2.6568049300600647, -2.75532637850914, -3.3230592354688975, + -4.310343680623862, -5.355490360009604, -6.197980565143918, + -6.482255174832886, -6.032903702491681, -4.928846156191456, + -3.478593776366683, -1.9633070253637752, -0.7762261171031667, + -0.1986639993303451, -0.14621592672473044, -0.44873378701028693, + -0.7869596672687539, -0.7719586898295473, -0.1789320937969791, + 0.9891181393495452, 2.5219751039291203, 3.956440127871225, + 4.968314840900223, 5.213696122399984, 4.7484812290404195, + 4.019746273941415, 3.7484243576623926, 4.810212873543108, + 8.110004802222186, 13.982628611830158, 22.908222729962286, + 33.39033402745925, 45.374646340056685, 56.95904774540954, + 65.99973662935584 + ], + "pressure:branch70_seg0:J37": [ + 194624.7302327168, 206409.61832523235, 208898.05655539813, + 197655.35525520318, 178516.75726854496, 155075.50628907533, + 129578.2591854386, 101625.82890395698, 81653.94319755677, + 62478.16828001448, 44136.73555024665, 30903.660140069103, + 14595.100610666514, -105.82793468228881, -15036.568813232829, + -31940.38923647346, -44987.127115194824, -57819.69902307726, + -67080.56665609301, -72651.62003051337, -76770.17738374566, + -78248.13496365845, -78906.25203576664, -79472.3544235417, + -79642.22980928035, -79444.66307054185, -78070.75006051936, + -74879.64141745467, -69931.77061254639, -63863.61296826088, + -57461.17169260297, -53015.22165722268, -52370.94082134687, + -55691.92793741896, -64259.170927409534, -76733.08332360897, + -91633.76838802872, -104251.27085933724, -115115.25798564241, + -118846.87670005142, -115547.93253127395, -105957.34868649929, + -90789.17442939205, -71162.14240834798, -52132.199244690106, + -33973.36306164871, -17517.165393267976, -6442.489506062969, + 2478.5168629179, 9231.18238815089, 14084.603107168996, 19375.154496496365, + 23473.25457088987, 26792.459202419548, 29512.12854762909, + 29072.13982788517, 26176.041365182245, 20831.289154858885, + 13742.521893180867, 5316.471952222968, -1112.7541634535364, + -6103.334805526578, -9449.237758403217, -9558.783474247024, + -8810.115867168819, -7739.290702271751, -7132.672979214611, + -8004.8027564583, -10222.489915717635, -13388.114253850945, + -16206.690744210333, -17977.619674427297, -17999.0484790208, + -15799.74769544397, -11851.883119867745, -7506.474634467346, + -3565.0294949313948, -686.8201103286356, 37.42972250620969, + -711.3130339108009, -1748.9707944421452, -2475.1227734788085, + -1841.9954792977078, 693.9285815039883, 4550.68356743508, + 9301.845767256735, 12767.154209405482, 14558.49034133045, + 14449.457135080382, 12281.181335107809, 10175.430305763563, + 10581.71832323702, 15834.007586728538, 28338.204125762684, + 48014.74466992745, 76646.80087782253, 107587.6709147807, + 141192.67855913896, 173594.08325950525, 194624.7302327168 + ], + "flow:J37:branch71_seg0": [ + 31.836551669107525, 35.26779174340403, 36.68793443962683, + 36.14148871452439, 33.88026167565926, 30.314385521787145, + 25.924845809899153, 21.407785966649964, 17.196464847121756, + 13.375115328433361, 10.071411582109084, 7.211726587837482, + 4.430276227490025, 1.7676487589224479, -0.9826844275978588, + -3.8286763070049314, -6.40442616073563, -8.87879105305262, + -10.788991161462356, -12.235187594437708, -13.186256579030072, + -13.682707467448331, -13.960663393562244, -14.08327710168039, + -14.159999463534312, -14.172187810427658, -14.04591075507753, + -13.673831668096847, -13.016128263627424, -12.061574270430247, + -10.985365062934834, -10.02928861375783, -9.482632040224575, + -9.609927236619587, -10.586976609739017, -12.327004178867506, + -14.656180004673201, -17.079565935732788, -19.25818252685592, + -20.578579416660947, -20.846954538268747, -19.85636374287477, + -17.79616753319069, -14.81117065408381, -11.513820667895454, + -8.108789155125178, -5.048581481054757, -2.6126132571018026, + -0.6251780367723586, 0.7638816757056159, 1.8881571283974812, + 2.8142245971935274, 3.6256574495226332, 4.377814490402081, + 4.923261065361519, 5.144747454140421, 4.952008665775215, + 4.288098974257647, 3.21958099491522, 1.9124038848199925, + 0.6158541169344124, -0.5006399368233249, -1.2642198113675174, + -1.6020887042320269, -1.6411277429485356, -1.4849954758717314, + -1.3386466698734403, -1.3579830739165155, -1.596976510309388, + -2.0501477519104214, -2.558950216953498, -2.9952552364227314, + -3.1732904695197237, -3.0159698579885545, -2.5241975050887255, + -1.8428849384666068, -1.0910311779425879, -0.4904962863629077, + -0.15016643423900583, -0.07764399509699525, -0.20047467044307463, + -0.3626375640387272, -0.38041613958785075, -0.13229230086753904, + 0.3988569713693641, 1.125782472843143, 1.842573600563506, + 2.3694681910378117, 2.551045760041415, 2.381925459482704, + 2.044879543052881, 1.8789601202980708, 2.295289252505304, + 3.76301820748588, 6.429089881283418, 10.591356831774915, + 15.612085405657762, 21.475833774689683, 27.123178105216013, + 31.836551669107525 + ], + "pressure:J37:branch71_seg0": [ + 194624.7302327168, 206409.61832523235, 208898.05655539813, + 197655.35525520318, 178516.75726854496, 155075.50628907533, + 129578.2591854386, 101625.82890395698, 81653.94319755677, + 62478.16828001448, 44136.73555024665, 30903.660140069103, + 14595.100610666514, -105.82793468228881, -15036.568813232829, + -31940.38923647346, -44987.127115194824, -57819.69902307726, + -67080.56665609301, -72651.62003051337, -76770.17738374566, + -78248.13496365845, -78906.25203576664, -79472.3544235417, + -79642.22980928035, -79444.66307054185, -78070.75006051936, + -74879.64141745467, -69931.77061254639, -63863.61296826088, + -57461.17169260297, -53015.22165722268, -52370.94082134687, + -55691.92793741896, -64259.170927409534, -76733.08332360897, + -91633.76838802872, -104251.27085933724, -115115.25798564241, + -118846.87670005142, -115547.93253127395, -105957.34868649929, + -90789.17442939205, -71162.14240834798, -52132.199244690106, + -33973.36306164871, -17517.165393267976, -6442.489506062969, + 2478.5168629179, 9231.18238815089, 14084.603107168996, 19375.154496496365, + 23473.25457088987, 26792.459202419548, 29512.12854762909, + 29072.13982788517, 26176.041365182245, 20831.289154858885, + 13742.521893180867, 5316.471952222968, -1112.7541634535364, + -6103.334805526578, -9449.237758403217, -9558.783474247024, + -8810.115867168819, -7739.290702271751, -7132.672979214611, + -8004.8027564583, -10222.489915717635, -13388.114253850945, + -16206.690744210333, -17977.619674427297, -17999.0484790208, + -15799.74769544397, -11851.883119867745, -7506.474634467346, + -3565.0294949313948, -686.8201103286356, 37.42972250620969, + -711.3130339108009, -1748.9707944421452, -2475.1227734788085, + -1841.9954792977078, 693.9285815039883, 4550.68356743508, + 9301.845767256735, 12767.154209405482, 14558.49034133045, + 14449.457135080382, 12281.181335107809, 10175.430305763563, + 10581.71832323702, 15834.007586728538, 28338.204125762684, + 48014.74466992745, 76646.80087782253, 107587.6709147807, + 141192.67855913896, 173594.08325950525, 194624.7302327168 + ], + "flow:J37:branch75_seg0": [ + 34.16318496024803, 37.16876700246418, 38.041800194503224, + 36.71739581154963, 33.83149349687497, 29.798706502620245, + 25.08536457403873, 20.3650454320994, 16.268987308185245, + 12.405366555707008, 9.248094175312026, 6.4679687772283865, + 3.6136882543110045, 0.956828114824462, -1.9546898943040738, + -4.807550269322752, -7.425144123368261, -9.941429493559822, + -11.687334301988713, -12.985495456327923, -13.827866962855254, + -14.16975997641266, -14.378542109173791, -14.466642407039274, + -14.512372867612747, -14.5141145585969, -14.327983030836624, + -13.862258739656196, -13.078977493266027, -12.026063398214552, + -10.86073710631377, -9.952279125400795, -9.541496042421612, + -9.89417052869522, -11.167243994955497, -13.233851895738352, + -15.74613465295784, -18.283229940921945, -20.425994161959366, + -21.470447321672832, -21.383039110787454, -19.992103993345633, + -17.46167107670259, -14.095335642877174, -10.644697499693947, + -7.157915038467821, -4.084946496618252, -1.8450389261064064, + 0.02074114634425504, 1.2898160884823, 2.2716550891496388, + 3.2291022706835335, 3.987383481183195, 4.713701571417902, + 5.231079240620761, 5.32102880684146, 4.9859743836735895, + 4.157066401418728, 2.93180796064345, 1.5164590898549997, + 0.21688662896030517, -0.8883048441611423, -1.530975533631091, + -1.7364450629290056, -1.6864368665899971, -1.4674711711122355, + -1.3181582601867194, -1.3973433045926644, -1.7260827251594912, + -2.2601959287135016, -2.796540143056217, -3.202725328721124, + -3.308964705313133, -3.016933844503149, -2.4046486511027223, + -1.6357088379000633, -0.8722758474211899, -0.2857298307402404, + -0.048497565091345736, -0.06857193162774752, -0.2482591165672139, + -0.424322103230021, -0.3915425502416822, -0.046639792929449794, + 0.5902611679801779, 1.3961926310859687, 2.113866527307703, + 2.5988466498624336, 2.662650362358549, 2.36655576955768, + 1.9748667308885341, 1.869464237364289, 2.5149236210378203, + 4.346986594736268, 7.553538730546784, 12.316865898187338, + 17.778248621801396, 23.89881256536728, 29.835869640193476, + 34.16318496024803 + ], + "pressure:J37:branch75_seg0": [ + 194624.7302327168, 206409.61832523235, 208898.05655539813, + 197655.35525520318, 178516.75726854496, 155075.50628907533, + 129578.2591854386, 101625.82890395698, 81653.94319755677, + 62478.16828001448, 44136.73555024665, 30903.660140069103, + 14595.100610666514, -105.82793468228881, -15036.568813232829, + -31940.38923647346, -44987.127115194824, -57819.69902307726, + -67080.56665609301, -72651.62003051337, -76770.17738374566, + -78248.13496365845, -78906.25203576664, -79472.3544235417, + -79642.22980928035, -79444.66307054185, -78070.75006051936, + -74879.64141745467, -69931.77061254639, -63863.61296826088, + -57461.17169260297, -53015.22165722268, -52370.94082134687, + -55691.92793741896, -64259.170927409534, -76733.08332360897, + -91633.76838802872, -104251.27085933724, -115115.25798564241, + -118846.87670005142, -115547.93253127395, -105957.34868649929, + -90789.17442939205, -71162.14240834798, -52132.199244690106, + -33973.36306164871, -17517.165393267976, -6442.489506062969, + 2478.5168629179, 9231.18238815089, 14084.603107168996, 19375.154496496365, + 23473.25457088987, 26792.459202419548, 29512.12854762909, + 29072.13982788517, 26176.041365182245, 20831.289154858885, + 13742.521893180867, 5316.471952222968, -1112.7541634535364, + -6103.334805526578, -9449.237758403217, -9558.783474247024, + -8810.115867168819, -7739.290702271751, -7132.672979214611, + -8004.8027564583, -10222.489915717635, -13388.114253850945, + -16206.690744210333, -17977.619674427297, -17999.0484790208, + -15799.74769544397, -11851.883119867745, -7506.474634467346, + -3565.0294949313948, -686.8201103286356, 37.42972250620969, + -711.3130339108009, -1748.9707944421452, -2475.1227734788085, + -1841.9954792977078, 693.9285815039883, 4550.68356743508, + 9301.845767256735, 12767.154209405482, 14558.49034133045, + 14449.457135080382, 12281.181335107809, 10175.430305763563, + 10581.71832323702, 15834.007586728538, 28338.204125762684, + 48014.74466992745, 76646.80087782253, 107587.6709147807, + 141192.67855913896, 173594.08325950525, 194624.7302327168 + ], + "flow:branch72_seg0:J38": [ + 100.70250857148334, 111.95181685301075, 117.12585145012538, + 115.8380471030871, 109.12071729046535, 98.16006209882921, + 84.50692352943275, 69.8541622354264, 56.453266660001745, + 43.81402027919967, 32.92237298986102, 23.45895574872279, + 14.267899900915411, 5.680990362427773, -3.2501634236122663, + -12.200119239777573, -20.65387097871466, -28.499752725654105, + -34.686451037413974, -39.42614913550992, -42.56666780597194, + -44.26079246038019, -45.17183477174051, -45.563613054211714, + -45.738574626897766, -45.708496989987154, -45.21587716844952, + -43.98817954613144, -41.84432287777421, -38.84770826035363, + -35.37452881808603, -32.319688666955386, -30.48161509378525, + -30.689940350373394, -33.516719668471204, -38.84012509657363, + -45.9811840868058, -53.654895474714564, -60.6513408991849, + -65.08540764039823, -66.27944292454399, -63.61702545832068, + -57.30775538533564, -48.12674913501876, -37.7378443195268, + -26.80186560434322, -16.874275613695616, -8.799066365338517, + -2.2103011234534087, 2.562722376315924, 6.282567881798966, + 9.451292404321363, 12.030811538627477, 14.401722476411122, + 16.176119073367083, 16.84388009339378, 16.26721797320645, + 14.209907772091768, 10.887198117138608, 6.718023025358447, + 2.6052080732182272, -1.073806581550722, -3.6621486460334878, + -4.947239041140177, -5.247029476147486, -4.887006778650762, + -4.473223549889834, -4.517788289436863, -5.233261673682872, + -6.587145956393834, -8.149480319918206, -9.514050474954566, + -10.119106373481886, -9.665414770479392, -8.19413058660601, + -6.068356187401962, -3.7378752574047587, -1.7614411982619298, + -0.6373072170851624, -0.3059129395317553, -0.5885306799003862, + -1.0379597236324047, -1.087975667706546, -0.34667840195944605, + 1.2504551820747483, 3.493931962362194, 5.713538927436404, + 7.4224307500223174, 8.08994980566647, 7.663989998656796, 6.69159045361949, + 6.180028998213198, 7.452047583498635, 11.849973366423287, + 20.223394506111006, 33.09197247508095, 48.91340888813683, + 67.39557421333105, 85.63107387862598, 100.70250857148334 + ], + "pressure:branch72_seg0:J38": [ + 192294.02086547925, 205749.64240737425, 210398.78071109718, + 201180.2218696146, 183567.97929206103, 160983.5662348645, + 135785.58926308458, 107680.13635264226, 86248.68332893774, + 65886.13599779615, 47066.84760095248, 32609.497675125294, + 16144.1257410002, 1137.6187857441091, -14220.175341831833, + -30514.69464469238, -44345.19916510233, -57612.23619713513, + -67170.36459622836, -73272.73656133187, -77811.12546763767, + -79553.53526137493, -80312.06919054872, -80802.14562927655, + -80799.82944359726, -80537.91819953886, -79146.76756061015, + -76090.52866804223, -71273.96844852144, -65372.886456400935, + -58863.662993770995, -54106.120122408, -52779.45794518541, + -55256.43373387663, -62828.57044346209, -74651.51308501058, + -88869.70798753339, -102014.130582009, -113429.96403912747, + -118395.48008668472, -116525.71278192372, -108327.22535063824, + -93933.94023399086, -74821.91322709947, -55856.763111044595, + -37331.958139805385, -19969.125192843254, -7953.185485321788, + 1754.933680387426, 9221.793126385804, 14256.934086869807, + 19885.70388651022, 24036.5773480696, 27331.316995814825, + 30184.22846840279, 30049.08106732303, 27505.305690341473, + 22523.47019548214, 15634.822540886256, 7349.110398332543, + 520.3692041169137, -5023.251062371484, -8740.78964173184, + -9534.84506437425, -9177.010804692143, -8249.199948761208, + -7577.551844858571, -8213.821266061936, -10193.888129045159, + -13167.184358698794, -15949.148857156852, -17816.861699985297, + -18169.091343933327, -16277.100244943911, -12644.518552745816, + -8365.02585471746, -4435.48333643155, -1247.7484357757814, + -173.35879723570991, -603.8757915147229, -1449.6124614526987, + -2178.0302765142424, -1741.656690323397, 458.4464575612927, + 4046.5473397795326, 8591.564500480348, 12212.578372020635, + 14366.037027187735, 14589.182788556427, 12784.530356134168, + 10772.016376227033, 10836.137618679542, 15375.90867915099, + 26633.55763046242, 45355.71894499562, 72834.21809938815, + 103353.75415188177, 136143.41186243374, 169949.7886222853, + 192294.02086547925 + ], + "flow:J38:branch73_seg0": [ + 58.74319144561281, 65.90891386326021, 69.55995472320664, + 69.46314057806754, 65.9987075076125, 59.87396643600845, 52.00087412450128, + 43.32790637731869, 35.21665474845465, 27.573501324715643, + 20.87556796867873, 15.04513915689687, 9.518112877812284, 4.31008082447765, + -0.9994447478503176, -6.362387147906649, -11.529300421607564, + -16.22941737296442, -20.11849070785801, -23.135713078731307, + -25.15070360729701, -26.32688616352405, -26.955085652100674, + -27.238324819977247, -27.375471327833765, -27.376058320650923, + -27.12491217946584, -26.46613116392953, -25.271514125477193, + -23.565808094633635, -21.53624915613418, -19.67468696633931, + -18.450320515653903, -18.371862805523982, -19.794462469008206, + -22.71311359210193, -26.80644072363967, -31.34621029529545, + -35.58088643942827, -38.505831241566, -39.552893619131474, + -38.35246810999556, -34.937457183964725, -29.770504078992868, + -23.65967722915145, -17.129868999190208, -11.141201452204964, + -6.094581306370489, -1.9975858760624448, 1.0246671565506882, + 3.3888348400793156, 5.334463280700039, 6.9252483116597565, + 8.38558176115556, 9.501027304603925, 10.010022947947864, 9.79488401929846, + 8.71045193128867, 6.858016881907219, 4.448730516944017, 1.988099132797783, + -0.24700492037353938, -1.9148094650372567, -2.826218053886864, + -3.1019517368825404, -2.955860719707919, -2.720019040518749, + -2.701683474136039, -3.0643220302263683, -3.80746241765702, + -4.722833275970826, -5.565849313787836, -5.994125573988923, + -5.827805758227784, -5.052154226292896, -3.844348321452037, + -2.469707431287676, -1.2565780112221645, -0.5060701864677734, + -0.22115975649255368, -0.3303063683825044, -0.5789506469880239, + -0.6447748423953203, -0.28033580691711585, 0.5869913191785503, + 1.863627835813966, 3.1921134464227556, 4.259843739323076, + 4.7689219228281505, 4.629279524939404, 4.104050710802907, + 3.7501533903787285, 4.335435009874994, 6.650578320051593, + 11.287872232574058, 18.50866371625223, 27.687582321898375, + 38.574196519430494, 49.41678049113577, 58.74319144561281 + ], + "pressure:J38:branch73_seg0": [ + 192294.02086547925, 205749.64240737425, 210398.78071109718, + 201180.2218696146, 183567.97929206103, 160983.5662348645, + 135785.58926308458, 107680.13635264226, 86248.68332893774, + 65886.13599779615, 47066.84760095248, 32609.497675125294, + 16144.1257410002, 1137.6187857441091, -14220.175341831833, + -30514.69464469238, -44345.19916510233, -57612.23619713513, + -67170.36459622836, -73272.73656133187, -77811.12546763767, + -79553.53526137493, -80312.06919054872, -80802.14562927655, + -80799.82944359726, -80537.91819953886, -79146.76756061015, + -76090.52866804223, -71273.96844852144, -65372.886456400935, + -58863.662993770995, -54106.120122408, -52779.45794518541, + -55256.43373387663, -62828.57044346209, -74651.51308501058, + -88869.70798753339, -102014.130582009, -113429.96403912747, + -118395.48008668472, -116525.71278192372, -108327.22535063824, + -93933.94023399086, -74821.91322709947, -55856.763111044595, + -37331.958139805385, -19969.125192843254, -7953.185485321788, + 1754.933680387426, 9221.793126385804, 14256.934086869807, + 19885.70388651022, 24036.5773480696, 27331.316995814825, + 30184.22846840279, 30049.08106732303, 27505.305690341473, + 22523.47019548214, 15634.822540886256, 7349.110398332543, + 520.3692041169137, -5023.251062371484, -8740.78964173184, + -9534.84506437425, -9177.010804692143, -8249.199948761208, + -7577.551844858571, -8213.821266061936, -10193.888129045159, + -13167.184358698794, -15949.148857156852, -17816.861699985297, + -18169.091343933327, -16277.100244943911, -12644.518552745816, + -8365.02585471746, -4435.48333643155, -1247.7484357757814, + -173.35879723570991, -603.8757915147229, -1449.6124614526987, + -2178.0302765142424, -1741.656690323397, 458.4464575612927, + 4046.5473397795326, 8591.564500480348, 12212.578372020635, + 14366.037027187735, 14589.182788556427, 12784.530356134168, + 10772.016376227033, 10836.137618679542, 15375.90867915099, + 26633.55763046242, 45355.71894499562, 72834.21809938815, + 103353.75415188177, 136143.41186243374, 169949.7886222853, + 192294.02086547925 + ], + "flow:J38:branch78_seg0": [ + 41.95931712587023, 46.042902989750324, 47.56589672692014, + 46.37490652502075, 43.12200978285376, 38.28609566282077, + 32.50604940493007, 26.526255858104292, 21.23661191154898, + 16.240518954483676, 12.046805021180447, 8.413816591828018, + 4.749787023104646, 1.3709095379514717, -2.250718675762523, + -5.8377320918727795, -9.124570557106264, -12.270335352687985, + -14.567960329557826, -16.290436056780848, -17.415964198678758, + -17.933906296853934, -18.216749119641047, -18.32528823423607, + -18.363103299061677, -18.33243866933354, -18.0909649889838, + -17.52204838220165, -16.572808752296503, -15.281900165720222, + -13.83827966195185, -12.64500170061558, -12.031294578130444, + -12.318077544846814, -13.72225719946333, -16.127011504470683, + -19.17474336316555, -22.308685179419264, -25.07045445975574, + -26.57957639883079, -26.72654930541256, -25.264557348324697, + -22.37029820137083, -18.356245056025802, -14.07816709037543, + -9.671996605153007, -5.733074161490665, -2.7044850589680167, + -0.2127152473909558, 1.5380552197652235, 2.893733041719701, + 4.116829123621321, 5.105563226967735, 6.016140715255582, + 6.675091768763123, 6.833857145445989, 6.472333953907837, + 5.499455840803261, 4.0291812352313405, 2.2692925084143827, + 0.6171089404207121, -0.8268016611773291, -1.7473391809959882, + -2.121020987253507, -2.145077739264898, -1.9311460589428617, + -1.7532045093711461, -1.816104815300975, -2.168939643456603, + -2.7796835387364767, -3.4266470439472014, -3.9482011611667094, + -4.124980799492912, -3.8376090122516575, -3.1419763603131607, + -2.2240078659499494, -1.2681678261170677, -0.5048631870397432, + -0.13123703061739928, -0.08475318303915522, -0.2582243115178801, + -0.45900907664439117, -0.44320082531122346, -0.06634259504232623, + 0.6634638628962021, 1.6303041265481988, 2.521425481013657, + 3.16258701069922, 3.3210278828383832, 3.034710473717343, + 2.5875397428166256, 2.429875607834561, 3.116612573623563, + 5.199395046371545, 8.935522273537021, 14.583308758828858, + 21.22582656623838, 28.821377693900235, 36.214293387490216, + 41.95931712587023 + ], + "pressure:J38:branch78_seg0": [ + 192294.02086547925, 205749.64240737425, 210398.78071109718, + 201180.2218696146, 183567.97929206103, 160983.5662348645, + 135785.58926308458, 107680.13635264226, 86248.68332893774, + 65886.13599779615, 47066.84760095248, 32609.497675125294, + 16144.1257410002, 1137.6187857441091, -14220.175341831833, + -30514.69464469238, -44345.19916510233, -57612.23619713513, + -67170.36459622836, -73272.73656133187, -77811.12546763767, + -79553.53526137493, -80312.06919054872, -80802.14562927655, + -80799.82944359726, -80537.91819953886, -79146.76756061015, + -76090.52866804223, -71273.96844852144, -65372.886456400935, + -58863.662993770995, -54106.120122408, -52779.45794518541, + -55256.43373387663, -62828.57044346209, -74651.51308501058, + -88869.70798753339, -102014.130582009, -113429.96403912747, + -118395.48008668472, -116525.71278192372, -108327.22535063824, + -93933.94023399086, -74821.91322709947, -55856.763111044595, + -37331.958139805385, -19969.125192843254, -7953.185485321788, + 1754.933680387426, 9221.793126385804, 14256.934086869807, + 19885.70388651022, 24036.5773480696, 27331.316995814825, + 30184.22846840279, 30049.08106732303, 27505.305690341473, + 22523.47019548214, 15634.822540886256, 7349.110398332543, + 520.3692041169137, -5023.251062371484, -8740.78964173184, + -9534.84506437425, -9177.010804692143, -8249.199948761208, + -7577.551844858571, -8213.821266061936, -10193.888129045159, + -13167.184358698794, -15949.148857156852, -17816.861699985297, + -18169.091343933327, -16277.100244943911, -12644.518552745816, + -8365.02585471746, -4435.48333643155, -1247.7484357757814, + -173.35879723570991, -603.8757915147229, -1449.6124614526987, + -2178.0302765142424, -1741.656690323397, 458.4464575612927, + 4046.5473397795326, 8591.564500480348, 12212.578372020635, + 14366.037027187735, 14589.182788556427, 12784.530356134168, + 10772.016376227033, 10836.137618679542, 15375.90867915099, + 26633.55763046242, 45355.71894499562, 72834.21809938815, + 103353.75415188177, 136143.41186243374, 169949.7886222853, + 192294.02086547925 + ], + "flow:branch73_seg0:J39": [ + 58.699408214025425, 65.89660931508357, 69.56968028731838, + 69.48860882030516, 66.04702132163817, 59.942204846219596, + 52.062495304576665, 43.41789719649911, 35.28916862460522, + 27.613638051975386, 20.93970227928697, 15.087753607840437, + 9.565628718080342, 4.359217371079519, -0.9724673651028329, + -6.3109716262853555, -11.494248361104317, -16.217949592166317, + -20.102312293793563, -23.125579208121014, -25.151244429902285, + -26.32404495968499, -26.956861286087232, -27.240118793833208, + -27.374585703528542, -27.378753634111273, -27.129358705959067, + -26.475179908008336, -25.284300629414865, -23.583269976392263, + -21.549581036037214, -19.68782901632941, -18.449376501174648, + -18.358903716339974, -19.767903442040573, -22.68280598153073, + -26.75513740927835, -31.314411037099173, -35.55753637250782, + -38.497507714759536, -39.56773372522773, -38.38826542173999, + -34.97156107519626, -29.804442986749393, -23.697340657959412, + -17.16695252143664, -11.160457961497455, -6.116613402781219, + -2.0077479129749527, 1.0187105586170244, 3.37261249870725, + 5.328196062355169, 6.9144838437115395, 8.37807965435512, + 9.496398288709152, 10.010543483558278, 9.80416625229842, 8.72837110456337, + 6.876362549793338, 4.476867024392431, 2.0096529019849974, + -0.24027585749058256, -1.9048773309521259, -2.8240026722172082, + -3.10607298846608, -2.958163311485826, -2.7195839388209695, + -2.6981043437463033, -3.0593849808644564, -3.8022213943839462, + -4.7189047364768975, -5.563193378755936, -5.997957346537616, + -5.832926216073954, -5.061220068284652, -3.8524545943306485, + -2.4793483178582205, -1.2601782858815018, -0.5083800814049154, + -0.21931143582489837, -0.3272817993475138, -0.5784779579399371, + -0.6478930439723714, -0.2890817215953325, 0.5766614377925718, + 1.8486916728120952, 3.181768767736918, 4.259626455690294, + 4.770899716961543, 4.63322090463652, 4.107876137059409, + 3.7453316364649827, 4.318797848400798, 6.612294471125331, + 11.243776857759782, 18.456142082404952, 27.636901994073312, + 38.49356409271608, 49.380796512270905, 58.699408214025425 + ], + "pressure:branch73_seg0:J39": [ + 187117.31019225682, 201920.46181176734, 208150.87868293028, + 200777.80467832083, 184860.87685581998, 163610.9632497194, + 139269.52393900574, 111847.01937906144, 89537.38178697291, + 69076.43048734381, 50161.76200623741, 34980.693443573226, + 18812.00293825378, 3535.01677659241, -11865.698520740461, + -27666.311323005782, -42113.79700444263, -55616.18004705705, + -65219.37756278711, -71861.03534624421, -76749.28641795085, + -78711.295387046, -79725.62565147252, -80244.33064359648, + -80276.86527810276, -80122.81270681707, -78865.08270452298, + -76075.53824350816, -71559.51345757332, -65943.95326397203, + -59543.881905739836, -54659.23673371359, -52867.65613203375, + -54626.05705883819, -61383.41042227948, -72464.16572626207, + -85996.8165200112, -99400.1043442437, -110950.72955802809, + -116801.70313218128, -115983.2769436872, -108833.61732668139, + -95248.96720579093, -76724.33749576866, -58340.064330681926, + -39842.82156357754, -22147.216935317465, -9955.571761603876, + 279.03794391404966, 7964.25816068307, 13099.963445517695, + 18981.88344485326, 23112.854299767005, 26478.748425282527, + 29529.021364218963, 29760.82428130619, 27641.360904241646, + 23156.71655020232, 16604.88050409386, 8708.641823988768, + 1634.0833636173154, -4080.122289209991, -7999.797527707967, + -9274.300376660074, -9147.35841312151, -8308.162553073531, + -7610.839035821559, -8090.4697495829805, -9894.98391937043, + -12745.57536475702, -15456.215067483006, -17408.96270427764, + -18011.35999659235, -16373.438525136344, -13040.709428787493, + -8920.278877677834, -5077.806214882147, -1736.5609663351556, + -449.6644788348638, -652.0866547065209, -1325.1404197239317, + -2065.155312922706, -1778.7441786633844, 129.66207280662326, + 3490.678205474293, 7796.081164587716, 11565.572887629072, + 13932.144752513683, 14410.468255058286, 12910.750997110632, + 10966.216016347355, 10773.121546926022, 14694.754203098042, + 24950.529084943515, 42612.21556394505, 69025.92882019909, + 98458.42260785581, 130175.74166230725, 164611.75848953106, + 187117.31019225682 + ], + "flow:J39:branch74_seg0": [ + 26.964209247530295, 30.31990482847084, 32.0702318711881, + 32.10475661469004, 30.56663795832989, 27.8007204342545, + 24.218940292987465, 20.205116488329462, 16.47267491251469, + 12.942902480823891, 9.808062572405529, 7.0973359139078935, + 4.53434495697404, 2.111742409377312, -0.3261370277743615, + -2.8176242281889783, -5.230327167222898, -7.381417927740673, + -9.213755813192368, -10.63222609191388, -11.578171726451973, + -12.14874175264547, -12.449254042616694, -12.588601896410196, + -12.658584170722715, -12.66036464369607, -12.54783380086726, + -12.251322545611481, -11.707052499156937, -10.932240473571694, + -10.000850817270612, -9.142466243806355, -8.568504355932195, + -8.51015071388242, -9.134094491711178, -10.44530319963454, + -12.315699807096474, -14.397245069167907, -16.35011112765035, + -17.736323843795503, -18.253004854887887, -17.75164065922051, + -16.217790869218362, -13.883851509552446, -11.070483778896062, + -8.053755005105922, -5.288994296401492, -2.926010246668997, + -1.01707816743942, 0.40358599384382227, 1.5188120514779349, + 2.4282209095949034, 3.1656216223259848, 3.8462177623667397, + 4.3695575012363905, 4.614066216779518, 4.528392125361082, + 4.045054137813248, 3.209964006264549, 2.1052908882930748, + 0.9750999061742567, -0.052108290231928846, -0.8442108261226416, + -1.2834490590889667, -1.422367116387007, -1.368192593937672, + -1.2637454650563045, -1.2513733428434355, -1.4124076829077357, + -1.7459433565032243, -2.1656938062205895, -2.5574144992221033, + -2.7602482543168585, -2.6948419528262795, -2.3492669656413825, + -1.7993025009164572, -1.169822074221857, -0.606409694692565, + -0.254374074254759, -0.11226908888768136, -0.15346785766852314, + -0.2625851056150937, -0.29452031020643915, -0.1340515354417285, + 0.254735427102487, 0.8362317235926865, 1.446405833737184, + 1.938772701689356, 2.190497870213445, 2.1415447249851023, + 1.9089722698421001, 1.7444850982961455, 2.000506587289173, + 3.035948286548881, 5.1439407226913145, 8.415254133363401, + 12.624807810666882, 17.646204063937834, 22.63621847002896, + 26.964209247530295 + ], + "pressure:J39:branch74_seg0": [ + 187117.31019225682, 201920.46181176734, 208150.87868293028, + 200777.80467832083, 184860.87685581998, 163610.9632497194, + 139269.52393900574, 111847.01937906144, 89537.38178697291, + 69076.43048734381, 50161.76200623741, 34980.693443573226, + 18812.00293825378, 3535.01677659241, -11865.698520740461, + -27666.311323005782, -42113.79700444263, -55616.18004705705, + -65219.37756278711, -71861.03534624421, -76749.28641795085, + -78711.295387046, -79725.62565147252, -80244.33064359648, + -80276.86527810276, -80122.81270681707, -78865.08270452298, + -76075.53824350816, -71559.51345757332, -65943.95326397203, + -59543.881905739836, -54659.23673371359, -52867.65613203375, + -54626.05705883819, -61383.41042227948, -72464.16572626207, + -85996.8165200112, -99400.1043442437, -110950.72955802809, + -116801.70313218128, -115983.2769436872, -108833.61732668139, + -95248.96720579093, -76724.33749576866, -58340.064330681926, + -39842.82156357754, -22147.216935317465, -9955.571761603876, + 279.03794391404966, 7964.25816068307, 13099.963445517695, + 18981.88344485326, 23112.854299767005, 26478.748425282527, + 29529.021364218963, 29760.82428130619, 27641.360904241646, + 23156.71655020232, 16604.88050409386, 8708.641823988768, + 1634.0833636173154, -4080.122289209991, -7999.797527707967, + -9274.300376660074, -9147.35841312151, -8308.162553073531, + -7610.839035821559, -8090.4697495829805, -9894.98391937043, + -12745.57536475702, -15456.215067483006, -17408.96270427764, + -18011.35999659235, -16373.438525136344, -13040.709428787493, + -8920.278877677834, -5077.806214882147, -1736.5609663351556, + -449.6644788348638, -652.0866547065209, -1325.1404197239317, + -2065.155312922706, -1778.7441786633844, 129.66207280662326, + 3490.678205474293, 7796.081164587716, 11565.572887629072, + 13932.144752513683, 14410.468255058286, 12910.750997110632, + 10966.216016347355, 10773.121546926022, 14694.754203098042, + 24950.529084943515, 42612.21556394505, 69025.92882019909, + 98458.42260785581, 130175.74166230725, 164611.75848953106, + 187117.31019225682 + ], + "flow:J39:branch90_seg0": [ + 31.735198966495247, 35.57670448661249, 37.499448416130406, + 37.38385220561654, 35.48038336330768, 32.14148441196544, + 27.843555011586446, 23.21278070816743, 18.816493712090793, + 14.670735571151353, 11.131639706881705, 7.990417693932134, + 5.0312837611041195, 2.2474749617007723, -0.646330337328399, + -3.493347398097491, -6.263921193881869, -8.836531664424994, + -10.888556480600377, -12.49335311620647, -13.573072703449254, + -14.1753032070396, -14.507607243471798, -14.65151689742263, + -14.716001532806152, -14.718388990414295, -14.581524905091882, + -14.223857362396494, -13.577248130256823, -12.65102950282165, + -11.548730218766629, -10.545362772522754, -9.880872145243305, + -9.84875300245805, -10.633808950330216, -12.237502781895786, + -14.439437602181552, -16.917165967931457, -19.207425244857802, + -20.761183870963595, -21.314728870339888, -20.636624762519077, + -18.75377020597764, -15.920591477196993, -12.62685687906338, + -9.113197516330715, -5.871463665095954, -3.1906031561122203, + -0.9906697455355246, 0.6151245647732122, 1.8538004472293053, + 2.8999751527602653, 3.7488622213855503, 4.531861891988369, + 5.126840787472748, 5.396477266778761, 5.275774126937336, + 4.683316966750195, 3.6663985435289024, 2.371576136099257, + 1.0345529958108768, -0.1881675672586238, -1.0606665048295354, + -1.5405536131283144, -1.6837058720790496, -1.5899707175482036, + -1.4558384737646113, -1.44673100090282, -1.6469772979566442, + -2.056278037880662, -2.553210930256302, -3.0057788795338234, + -3.237709092220769, -3.1380842632476673, -2.711953102643267, + -2.0531520934141674, -1.309526243636364, -0.6537685911889225, + -0.2540060071501561, -0.1070423469372122, -0.17381394167897551, + -0.3158928523248423, -0.35337273376594724, -0.15503018615359293, + 0.321926010690088, 1.0124599492193942, 1.7353629339997239, + 2.320853754000944, 2.5804018467481526, 2.4916761796513986, + 2.198903867217345, 2.0008465381687697, 2.3182912611115034, + 3.5763461845764994, 6.099836135068428, 10.040887949041432, + 15.012094183406585, 20.847360028778315, 26.74457804224186, + 31.735198966495247 + ], + "pressure:J39:branch90_seg0": [ + 187117.31019225682, 201920.46181176734, 208150.87868293028, + 200777.80467832083, 184860.87685581998, 163610.9632497194, + 139269.52393900574, 111847.01937906144, 89537.38178697291, + 69076.43048734381, 50161.76200623741, 34980.693443573226, + 18812.00293825378, 3535.01677659241, -11865.698520740461, + -27666.311323005782, -42113.79700444263, -55616.18004705705, + -65219.37756278711, -71861.03534624421, -76749.28641795085, + -78711.295387046, -79725.62565147252, -80244.33064359648, + -80276.86527810276, -80122.81270681707, -78865.08270452298, + -76075.53824350816, -71559.51345757332, -65943.95326397203, + -59543.881905739836, -54659.23673371359, -52867.65613203375, + -54626.05705883819, -61383.41042227948, -72464.16572626207, + -85996.8165200112, -99400.1043442437, -110950.72955802809, + -116801.70313218128, -115983.2769436872, -108833.61732668139, + -95248.96720579093, -76724.33749576866, -58340.064330681926, + -39842.82156357754, -22147.216935317465, -9955.571761603876, + 279.03794391404966, 7964.25816068307, 13099.963445517695, + 18981.88344485326, 23112.854299767005, 26478.748425282527, + 29529.021364218963, 29760.82428130619, 27641.360904241646, + 23156.71655020232, 16604.88050409386, 8708.641823988768, + 1634.0833636173154, -4080.122289209991, -7999.797527707967, + -9274.300376660074, -9147.35841312151, -8308.162553073531, + -7610.839035821559, -8090.4697495829805, -9894.98391937043, + -12745.57536475702, -15456.215067483006, -17408.96270427764, + -18011.35999659235, -16373.438525136344, -13040.709428787493, + -8920.278877677834, -5077.806214882147, -1736.5609663351556, + -449.6644788348638, -652.0866547065209, -1325.1404197239317, + -2065.155312922706, -1778.7441786633844, 129.66207280662326, + 3490.678205474293, 7796.081164587716, 11565.572887629072, + 13932.144752513683, 14410.468255058286, 12910.750997110632, + 10966.216016347355, 10773.121546926022, 14694.754203098042, + 24950.529084943515, 42612.21556394505, 69025.92882019909, + 98458.42260785581, 130175.74166230725, 164611.75848953106, + 187117.31019225682 + ], + "flow:branch76_seg0:J40": [ + 117.68245434538551, 132.89224443045197, 141.1135655893581, + 141.74790529174416, 135.55752469355986, 123.71297076067715, + 107.97428926552843, 90.80344238902883, 74.0745274625945, 58.1947854478253, + 44.56846403419939, 32.394156371280786, 21.043783727016073, + 10.435876060791845, -0.5204735117922658, -11.217527790302043, + -21.647975622909033, -31.4929494001157, -39.432746530301934, + -45.77585678687281, -50.204855158707055, -52.81630876379318, + -54.35967842544973, -55.1182329061517, -55.50670381836461, + -55.63385558361988, -55.251981770675165, -54.073660291713146, + -51.84846623815131, -48.55667711960355, -44.559808741829364, + -40.78947673846244, -38.13353497479322, -37.70618619794549, + -40.237557949461, -45.83454510153193, -53.76568654746055, + -62.96831999472978, -71.74530545252325, -78.0461672552482, + -80.84545143634602, -79.10978789987854, -72.842045767342, + -62.802126234093215, -50.75131191257042, -37.59420617652333, + -25.133302137098475, -14.577072623702126, -5.755463101421447, + 0.8311338752685833, 5.936473417603606, 10.190285003443806, + 13.657179999844297, 16.78839106678704, 19.202535051729512, + 20.449578008126476, 20.25103371807633, 18.28752983962051, + 14.682665280850577, 9.965495935421881, 4.930545557102719, + 0.19135273335159048, -3.3019286118063165, -5.393672010866374, + -6.205837345644848, -6.045839926643271, -5.6309440473063, + -5.581240321627865, -6.247629176167147, -7.689599860829145, + -9.507831150460571, -11.234798188868927, -12.229099627950756, + -12.040423196034723, -10.631309255582172, -8.297333632690354, + -5.546077971923127, -3.0296122559748806, -1.3660720183127524, + -0.6316258663062524, -0.7275361312714602, -1.1793920632519475, + -1.3346968363702758, -0.6843363363407405, 0.9835921156282702, + 3.474750017605351, 6.183132999102878, 8.487515913817216, + 9.637310430424929, 9.517526172137833, 8.57074043979413, 7.829364965339982, + 8.812385169131662, 13.122996187411722, 22.01807904145567, + 36.221064074094386, 54.44917261440416, 76.0841402581793, + 98.34177489831377, 117.68245434538551 + ], + "pressure:branch76_seg0:J40": [ + 174667.51324737558, 192388.12256494423, 200696.26794201141, + 197144.10692219218, 184665.1227015391, 165691.31312916978, + 142483.9779501325, 117101.40218477952, 94771.83193075324, + 73565.22211693214, 54963.535964309805, 39238.9715675112, + 23406.407142082684, 8735.180256370264, -6384.026455139789, + -21605.74204338298, -35680.595556870074, -49069.84668803649, + -59328.04009384433, -66895.65283307574, -72326.3152978608, + -75107.25742386846, -76668.57987802374, -77487.59096922717, + -77809.02726111292, -77833.99293632127, -76977.26461776844, + -74796.30462092049, -71041.96265670478, -65987.70066436552, + -60085.89882080685, -55118.110316635015, -52428.377050054216, + -53108.742243402325, -58292.2720169149, -67720.65793471212, + -79988.62266413397, -92940.81652103923, -104796.17164660346, + -112008.68036137016, -113554.27885175848, -108815.32396277563, + -97754.73288170417, -81687.55657096194, -64088.255954116525, + -45772.972901615925, -28449.227967312127, -14982.130142138274, + -3806.1948948677104, 4583.684492088949, 10745.037817396436, + 16538.698775962846, 21026.633031800327, 24931.919024584608, + 28062.835993431596, 29011.991901907466, 27800.687050599656, + 24154.50539138296, 18363.259350180764, 11133.55040707526, + 4200.081795446555, -1960.229227286607, -6320.261696029268, + -8337.062114469756, -8847.467023558764, -8314.816056821976, + -7686.398218438536, -7905.0361990256715, -9273.031113412479, + -11686.63763633087, -14319.68421823317, -16493.630491897173, + -17450.501106915148, -16500.043511033076, -13845.355882996568, + -10169.468056364527, -6317.029725709318, -2943.9156703286894, + -1165.793666439772, -748.9933444508321, -1181.1790084109934, + -1860.4226250882723, -1812.1510895328488, -383.5192554323185, + 2462.0828967035636, 6355.481342771894, 10071.934345178483, + 12849.42024993654, 13874.377277138197, 13011.822908013663, + 11397.09109961346, 10799.109767910737, 13465.074304546062, + 21613.00498950103, 36621.99946650273, 59575.3114180849, 86998.60634299963, + 117986.48213062603, 150041.07610239505, 174667.51324737558 + ], + "flow:J40:branch77_seg0": [ + 36.903332605931844, 41.6276644254108, 44.138329548222366, + 44.27626271438733, 42.27764576466986, 38.517227524205666, + 33.55485204992449, 28.17373498218077, 22.937520412788242, + 17.98763264618186, 13.75492088197132, 9.969667113893976, + 6.446988566235678, 3.1469481940425483, -0.26848749807688616, + -3.601801461086473, -6.856926116271101, -9.922209547445393, + -12.387882052948573, -14.354461603165587, -15.7159161978259, + -16.51258141283208, -16.979046526539626, -17.20370367912572, + -17.318708771710572, -17.35435933430842, -17.23187661473167, + -16.859342725384877, -16.157532735011305, -15.119983108014805, + -13.864317892829122, -12.68286382207335, -11.855808152901707, + -11.73570367337666, -12.547141052973112, -14.320316789788437, + -16.82150300216808, -19.7151625020465, -22.459837563613302, + -24.418091168905935, -25.268988186544075, -24.689714507979254, + -22.692315103774717, -19.520675020312023, -15.728786570135211, + -11.602783079528454, -7.714690426430949, -4.428590505261062, + -1.6927232363926792, 0.339243927285526, 1.9152959181833895, + 3.225823670212846, 4.298038452042447, 5.270283109777535, + 6.016350782711141, 6.398778853947678, 6.325957628830432, + 5.698470321288326, 4.557474905172468, 3.072803913472843, + 1.4915592924122596, 0.010662762023206675, -1.0723444372237179, + -1.7149321465351466, -1.9543254584299865, -1.8916464212668322, + -1.754717666481963, -1.7373319571783632, -1.9486595882960793, + -2.405077348402982, -2.978722395344989, -3.520984706582618, + -3.8284569759630696, -3.7623381488058123, -3.3122007267971023, + -2.573158802120687, -1.7062517725622341, -0.9193718581537318, + -0.40333261489067274, -0.18129113301763125, -0.22084737353230346, + -0.3689816741437978, -0.4197695612325085, -0.21379048684826232, + 0.3144089148708684, 1.1001628178132927, 1.9522874139273798, + 2.6725787007039057, 3.0250287795134274, 2.977494657097964, + 2.6705079240954395, 2.4322520447222518, 2.7424761997095937, + 4.10515247512648, 6.9124213615094225, 11.384480337488217, + 17.115819454766957, 23.90848068602694, 30.86657481409595, + 36.903332605931844 + ], + "pressure:J40:branch77_seg0": [ + 174667.51324737558, 192388.12256494423, 200696.26794201141, + 197144.10692219218, 184665.1227015391, 165691.31312916978, + 142483.9779501325, 117101.40218477952, 94771.83193075324, + 73565.22211693214, 54963.535964309805, 39238.9715675112, + 23406.407142082684, 8735.180256370264, -6384.026455139789, + -21605.74204338298, -35680.595556870074, -49069.84668803649, + -59328.04009384433, -66895.65283307574, -72326.3152978608, + -75107.25742386846, -76668.57987802374, -77487.59096922717, + -77809.02726111292, -77833.99293632127, -76977.26461776844, + -74796.30462092049, -71041.96265670478, -65987.70066436552, + -60085.89882080685, -55118.110316635015, -52428.377050054216, + -53108.742243402325, -58292.2720169149, -67720.65793471212, + -79988.62266413397, -92940.81652103923, -104796.17164660346, + -112008.68036137016, -113554.27885175848, -108815.32396277563, + -97754.73288170417, -81687.55657096194, -64088.255954116525, + -45772.972901615925, -28449.227967312127, -14982.130142138274, + -3806.1948948677104, 4583.684492088949, 10745.037817396436, + 16538.698775962846, 21026.633031800327, 24931.919024584608, + 28062.835993431596, 29011.991901907466, 27800.687050599656, + 24154.50539138296, 18363.259350180764, 11133.55040707526, + 4200.081795446555, -1960.229227286607, -6320.261696029268, + -8337.062114469756, -8847.467023558764, -8314.816056821976, + -7686.398218438536, -7905.0361990256715, -9273.031113412479, + -11686.63763633087, -14319.68421823317, -16493.630491897173, + -17450.501106915148, -16500.043511033076, -13845.355882996568, + -10169.468056364527, -6317.029725709318, -2943.9156703286894, + -1165.793666439772, -748.9933444508321, -1181.1790084109934, + -1860.4226250882723, -1812.1510895328488, -383.5192554323185, + 2462.0828967035636, 6355.481342771894, 10071.934345178483, + 12849.42024993654, 13874.377277138197, 13011.822908013663, + 11397.09109961346, 10799.109767910737, 13465.074304546062, + 21613.00498950103, 36621.99946650273, 59575.3114180849, 86998.60634299963, + 117986.48213062603, 150041.07610239505, 174667.51324737558 + ], + "flow:J40:branch92_seg0": [ + 80.77912173945275, 91.2645800050407, 96.9752360411361, 97.47164257735419, + 93.27987892889013, 85.19574323647218, 74.41943721560052, + 62.62970740684682, 51.137007049809895, 40.20715280164209, + 30.813543152228196, 22.424489257385705, 14.596795160778743, + 7.288927866747795, -0.2519860137125565, -7.6157263292135475, + -14.791049506640608, -21.570739852665433, -27.04486447735445, + -31.421395183703215, -34.48893896087943, -36.30372735095915, + -37.3806318989088, -37.914529227027295, -38.18799504665177, + -38.27949624931125, -38.0201051559439, -37.21431756632859, + -35.690933503137934, -33.43669401158873, -30.695490848999032, + -28.10661291638949, -26.277726821889132, -25.97048252456749, + -27.690416896486948, -31.51422831174354, -36.944183545292546, + -43.253157492682654, -49.285467888910404, -53.62807608634138, + -55.57646324980246, -54.42007339189928, -50.14973066356735, + -43.28145121378097, -35.02252534243503, -25.991423096994744, + -17.41861171066752, -10.14848211844105, -4.062739865028735, + 0.49188994798302826, 4.021177499420252, 6.964461333230963, + 9.359141547801842, 11.518107957009503, 13.186184269018389, + 14.050799154178657, 13.925076089245858, 12.589059518332276, + 10.125190375678063, 6.892692021949118, 3.4389862646905462, + 0.18068997132822284, -2.22958417458262, -3.678739864331195, + -4.2515118872150754, -4.154193505376453, -3.876226380824363, + -3.843908364449475, -4.298969587870937, -5.284522512425926, + -6.529108755115663, -7.71381348228647, -8.400642651987711, + -8.278085047228855, -7.319108528785135, -5.72417483056971, + -3.8398261993609295, -2.1102403978211317, -0.9627394034221096, + -0.4503347332885564, -0.5066887577391603, -0.8104103891081427, + -0.9149272751377775, -0.4705458494924833, 0.6691832007574399, + 2.374587199792041, 4.230845585175501, 5.814937213113237, + 6.612281650911459, 6.54003151503976, 5.900232515698662, + 5.3971129206176665, 6.0699089694218005, 9.017843712285288, + 15.10565767994615, 24.8365837366061, 37.33335315963675, 52.17565957215257, + 67.47520008421829, 80.77912173945275 + ], + "pressure:J40:branch92_seg0": [ + 174667.51324737558, 192388.12256494423, 200696.26794201141, + 197144.10692219218, 184665.1227015391, 165691.31312916978, + 142483.9779501325, 117101.40218477952, 94771.83193075324, + 73565.22211693214, 54963.535964309805, 39238.9715675112, + 23406.407142082684, 8735.180256370264, -6384.026455139789, + -21605.74204338298, -35680.595556870074, -49069.84668803649, + -59328.04009384433, -66895.65283307574, -72326.3152978608, + -75107.25742386846, -76668.57987802374, -77487.59096922717, + -77809.02726111292, -77833.99293632127, -76977.26461776844, + -74796.30462092049, -71041.96265670478, -65987.70066436552, + -60085.89882080685, -55118.110316635015, -52428.377050054216, + -53108.742243402325, -58292.2720169149, -67720.65793471212, + -79988.62266413397, -92940.81652103923, -104796.17164660346, + -112008.68036137016, -113554.27885175848, -108815.32396277563, + -97754.73288170417, -81687.55657096194, -64088.255954116525, + -45772.972901615925, -28449.227967312127, -14982.130142138274, + -3806.1948948677104, 4583.684492088949, 10745.037817396436, + 16538.698775962846, 21026.633031800327, 24931.919024584608, + 28062.835993431596, 29011.991901907466, 27800.687050599656, + 24154.50539138296, 18363.259350180764, 11133.55040707526, + 4200.081795446555, -1960.229227286607, -6320.261696029268, + -8337.062114469756, -8847.467023558764, -8314.816056821976, + -7686.398218438536, -7905.0361990256715, -9273.031113412479, + -11686.63763633087, -14319.68421823317, -16493.630491897173, + -17450.501106915148, -16500.043511033076, -13845.355882996568, + -10169.468056364527, -6317.029725709318, -2943.9156703286894, + -1165.793666439772, -748.9933444508321, -1181.1790084109934, + -1860.4226250882723, -1812.1510895328488, -383.5192554323185, + 2462.0828967035636, 6355.481342771894, 10071.934345178483, + 12849.42024993654, 13874.377277138197, 13011.822908013663, + 11397.09109961346, 10799.109767910737, 13465.074304546062, + 21613.00498950103, 36621.99946650273, 59575.3114180849, 86998.60634299963, + 117986.48213062603, 150041.07610239505, 174667.51324737558 + ], + "flow:branch85_seg0:J41": [ + 85.01972664713102, 100.06424467208073, 111.1444882955329, + 117.18273010401067, 117.86233140785743, 113.43565161366624, + 104.7797537469498, 93.40240170348392, 80.66898413007219, + 67.51881029957731, 55.092075629776716, 43.40630680464158, + 32.45112207078424, 22.123630638511425, 11.903742219396637, + 1.9631573479595996, -7.8029132226688835, -17.116054289201625, + -25.31426366005368, -32.356486445129434, -37.91330518442889, + -41.9653191420282, -44.8314149963935, -46.72396326409781, + -47.967678555325186, -48.733862453090225, -48.993744902764, + -48.62916714897909, -47.47702424305904, -45.46442285514398, + -42.73515143444539, -39.77502475985646, -37.17973031870862, + -35.75452883003994, -36.170884268704086, -38.79027663052757, + -43.46075915379782, -49.70116658673524, -56.45198654185633, + -62.39516103091341, -66.47590723699636, -67.68026699864762, + -65.57315142587399, -60.28328115476554, -52.60391011452877, + -43.199469045041695, -33.30795975303782, -23.909373768262032, + -15.387101170900266, -8.265657875911307, -2.354751405690297, + 2.5955989419574528, 6.703558429339564, 10.268420380376677, + 13.18069613472245, 15.243590370287757, 16.24348730793219, + 15.932911489590557, 14.272972682083143, 11.48841181996324, + 7.994586913645374, 4.278787673791226, 0.9977525782952418, + -1.5385106994636686, -3.1719008565656757, -3.968333018116693, + -4.279079295864071, -4.506123402402209, -4.982493376870332, + -5.887113726356309, -7.125745989538816, -8.472599827339382, + -9.530413139347838, -9.940990464355522, -9.533319086092403, + -8.344291105858254, -6.608511230515804, -4.719938876405244, + -3.118984946236304, -2.0215139682688115, -1.5116415088036785, + -1.4110542584137589, -1.3613745122064778, -0.9927866887633632, + -0.04292919012999892, 1.5135827329595024, 3.440356384174551, + 5.3539579198695595, 6.747657823668365, 7.3777310937015566, + 7.30807434027332, 7.025393039751517, 7.426588988434473, 9.61978952759126, + 14.684844996607229, 23.410735813327083, 35.59763995966505, + 51.03368406107889, 68.21502536946653, 85.01972664713102 + ], + "pressure:branch85_seg0:J41": [ + 155391.98431911762, 174050.12241636266, 185489.05327498933, + 186571.1965868256, 179406.267792994, 165719.13144098234, + 147207.41885029792, 125434.63753283673, 104845.13875096793, + 84739.34760243568, 66282.15782718931, 50001.81378178999, 33817.9986567458, + 18635.057090646995, 3296.722341712073, -11860.761745347094, + -26174.446984879283, -39959.112351977084, -50826.61797609291, + -59355.29427585396, -65993.85034421473, -70011.7620015354, + -72690.47465698859, -74394.30689639592, -75349.5021196743, + -75867.93935699775, -75477.65771589584, -73862.22475260992, + -70821.30880998402, -66567.19560568407, -61392.13790446863, + -56762.41035596476, -53871.06736585036, -53633.20184487923, + -57206.747954926024, -64583.815913951374, -74660.83344248858, + -85933.9167617505, -96745.141936928, -104100.01722139028, + -106888.57334009484, -104371.27087443395, -96207.01887839653, + -83185.39181194978, -68411.67753937247, -52342.6106672292, + -36191.02991880314, -23098.5820446646, -11638.6411335032, + -2467.7897652594365, 4512.060789986773, 11111.056065645384, + 16289.769076713568, 20654.179619425602, 24328.116727815785, + 26047.485784102508, 25806.73435026117, 23404.987999446766, + 18953.15289769482, 13028.968988168028, 6930.4750048302985, + 1247.8610173319057, -3111.954782283883, -5653.325566768747, + -6869.78623540375, -7052.313697869408, -6941.065024560452, + -7341.631508345382, -8572.26354999131, -10645.603445171068, + -12914.44221496018, -14885.471102560057, -15998.59417423728, + -15533.133851626546, -13610.858371696591, -10710.780962911098, + -7513.210736290179, -4457.537154316476, -2591.136626572455, + -1840.3396435097757, -1790.7697053901861, -2079.0711416703843, + -1914.0320889365166, -717.7529013030066, 1636.8352530875225, + 4904.933058996543, 8205.554746755179, 10857.740358065412, + 12141.251771062489, 11884.908392951966, 10890.766736964983, + 10556.088517892933, 12725.849219275115, 19324.764670486627, + 31685.982765124827, 51122.39171418225, 74708.33541766905, + 101740.66148981574, 131489.96839635607, 155391.98431911762 + ], + "flow:J41:branch86_seg0": [ + 58.37814976427754, 69.51693742602954, 78.12543501783657, + 83.33641254639025, 84.74544834884412, 82.42977506198439, + 76.93871478461178, 69.24441178571443, 60.311757080222606, + 50.93958007568616, 41.891361304822524, 33.32743265968104, + 25.319485783630427, 17.759943161431572, 10.363683558313598, + 3.1580699220826007, -3.9399913844161665, -10.710715909490837, + -16.79703768065447, -22.087590477347614, -26.332323504825144, + -29.51433272709925, -31.79309050338316, -33.32670830353151, + -34.34635376556029, -34.98676449833495, -35.263029847456565, + -35.10901095420343, -34.4121355628153, -33.10648535790468, + -31.265552605453493, -29.177918393142143, -27.251198730075895, + -26.03848656423783, -26.033888510134382, -27.547576048762014, + -30.56287430293876, -34.79288266431949, -39.54367436422672, + -43.947651991210826, -47.19272803877718, -48.529284772721816, + -47.56883477700863, -44.31430970690973, -39.202726498087365, + -32.71921853466794, -25.715014761258463, -18.870150614600682, + -12.58413462017303, -7.231370802331181, -2.749599011512118, + 0.9853426934008657, 4.0937326361948925, 6.770677913830882, + 8.980621087747629, 10.615568395232751, 11.5181032985292, + 11.514199396438025, 10.549774008294154, 8.741249945832614, + 6.346870298569094, 3.7199205077298054, 1.2954527014473614, + -0.6605171883778699, -1.985028817452995, -2.701028400827102, + -3.0162106336368453, -3.202060707621505, -3.5100938200611402, + -4.093322328072662, -4.929264910568491, -5.881579540504708, + -6.684826949275635, -7.085182797583004, -6.929092868597986, + -6.205178142842329, -5.0496041743710744, -3.723562508117907, + -2.5288431478936677, -1.6549251877970876, -1.191300455196333, + -1.0467136495120393, -0.9957286329598082, -0.7780495008834135, + -0.18698546940798283, 0.8326194799393071, 2.1580656828228157, + 3.53210151862592, 4.614973399003695, 5.197102016663447, 5.264415135608486, + 5.100715314261806, 5.284796166538352, 6.575235308699458, + 9.756421643743602, 15.42295906894039, 23.608617251691783, + 34.2016358895347, 46.234059943056494, 58.37814976427754 + ], + "pressure:J41:branch86_seg0": [ + 155391.98431911762, 174050.12241636266, 185489.05327498933, + 186571.1965868256, 179406.267792994, 165719.13144098234, + 147207.41885029792, 125434.63753283673, 104845.13875096793, + 84739.34760243568, 66282.15782718931, 50001.81378178999, 33817.9986567458, + 18635.057090646995, 3296.722341712073, -11860.761745347094, + -26174.446984879283, -39959.112351977084, -50826.61797609291, + -59355.29427585396, -65993.85034421473, -70011.7620015354, + -72690.47465698859, -74394.30689639592, -75349.5021196743, + -75867.93935699775, -75477.65771589584, -73862.22475260992, + -70821.30880998402, -66567.19560568407, -61392.13790446863, + -56762.41035596476, -53871.06736585036, -53633.20184487923, + -57206.747954926024, -64583.815913951374, -74660.83344248858, + -85933.9167617505, -96745.141936928, -104100.01722139028, + -106888.57334009484, -104371.27087443395, -96207.01887839653, + -83185.39181194978, -68411.67753937247, -52342.6106672292, + -36191.02991880314, -23098.5820446646, -11638.6411335032, + -2467.7897652594365, 4512.060789986773, 11111.056065645384, + 16289.769076713568, 20654.179619425602, 24328.116727815785, + 26047.485784102508, 25806.73435026117, 23404.987999446766, + 18953.15289769482, 13028.968988168028, 6930.4750048302985, + 1247.8610173319057, -3111.954782283883, -5653.325566768747, + -6869.78623540375, -7052.313697869408, -6941.065024560452, + -7341.631508345382, -8572.26354999131, -10645.603445171068, + -12914.44221496018, -14885.471102560057, -15998.59417423728, + -15533.133851626546, -13610.858371696591, -10710.780962911098, + -7513.210736290179, -4457.537154316476, -2591.136626572455, + -1840.3396435097757, -1790.7697053901861, -2079.0711416703843, + -1914.0320889365166, -717.7529013030066, 1636.8352530875225, + 4904.933058996543, 8205.554746755179, 10857.740358065412, + 12141.251771062489, 11884.908392951966, 10890.766736964983, + 10556.088517892933, 12725.849219275115, 19324.764670486627, + 31685.982765124827, 51122.39171418225, 74708.33541766905, + 101740.66148981574, 131489.96839635607, 155391.98431911762 + ], + "flow:J41:branch109_seg0": [ + 26.641576882853197, 30.547307246052306, 33.019053277697004, + 33.84631755761946, 33.11688305901373, 31.00587655168329, + 27.84103896233727, 24.157989917771562, 20.357227049849072, + 16.57923022389185, 13.200714324955337, 10.078874144961919, + 7.131636287152123, 4.363687477080221, 1.5400586610829714, + -1.1949125741245306, -3.862921838251829, -6.40533837970982, + -8.517225979401502, -10.268895967781187, -11.580981679605845, + -12.450986414924081, -13.038324493010126, -13.397254960567805, + -13.621324789760324, -13.747097954754201, -13.730715055307725, + -13.52015619477542, -13.064888680245106, -12.357937497240329, + -11.469598828993107, -10.597106366711822, -9.928531588633575, + -9.716042265802454, -10.136995758570631, -11.242700581765925, + -12.897884850857155, -14.908283922417068, -16.908312177630176, + -18.447509039703984, -19.283179198219113, -19.150982225925762, + -18.004316648864503, -15.968971447855221, -13.401183616441404, + -10.48025051037363, -7.592944991779329, -5.039223153661334, + -2.8029665507271893, -1.0342870735801284, 0.3948476058218275, + 1.6102562485565863, 2.609825793144673, 3.4977424665457972, + 4.2000750469748205, 4.628021975054954, 4.7253840094030055, + 4.4187120931524575, 3.7231986737889473, 2.7471618741305486, + 1.6477166150764155, 0.5588671660613974, -0.2977001231521977, + -0.8779935110854582, -1.186872039112483, -1.2673046172897269, + -1.262868662227339, -1.3040626947804743, -1.4723995568090393, + -1.7937913982836087, -2.196481078970512, -2.5910202868346173, + -2.8455861900721757, -2.8558076667725754, -2.6042262174943884, + -2.139112963016046, -1.5589070561447163, -0.9963763682873508, + -0.59014179834261, -0.36658878047170024, -0.32034105360734916, + -0.3643406089016954, -0.36564587924666575, -0.21473718787996673, + 0.14405627927797457, 0.6809632530201684, 1.2822907013517328, + 1.8218564012435907, 2.13268442466463, 2.1806290770381205, + 2.043659204664857, 1.9246777254896397, 2.1417928218960625, + 3.044554218891939, 4.928423352863684, 7.987776744386478, + 11.989022707973112, 16.83204817154442, 21.980965426410133, + 26.641576882853197 + ], + "pressure:J41:branch109_seg0": [ + 155391.98431911762, 174050.12241636266, 185489.05327498933, + 186571.1965868256, 179406.267792994, 165719.13144098234, + 147207.41885029792, 125434.63753283673, 104845.13875096793, + 84739.34760243568, 66282.15782718931, 50001.81378178999, 33817.9986567458, + 18635.057090646995, 3296.722341712073, -11860.761745347094, + -26174.446984879283, -39959.112351977084, -50826.61797609291, + -59355.29427585396, -65993.85034421473, -70011.7620015354, + -72690.47465698859, -74394.30689639592, -75349.5021196743, + -75867.93935699775, -75477.65771589584, -73862.22475260992, + -70821.30880998402, -66567.19560568407, -61392.13790446863, + -56762.41035596476, -53871.06736585036, -53633.20184487923, + -57206.747954926024, -64583.815913951374, -74660.83344248858, + -85933.9167617505, -96745.141936928, -104100.01722139028, + -106888.57334009484, -104371.27087443395, -96207.01887839653, + -83185.39181194978, -68411.67753937247, -52342.6106672292, + -36191.02991880314, -23098.5820446646, -11638.6411335032, + -2467.7897652594365, 4512.060789986773, 11111.056065645384, + 16289.769076713568, 20654.179619425602, 24328.116727815785, + 26047.485784102508, 25806.73435026117, 23404.987999446766, + 18953.15289769482, 13028.968988168028, 6930.4750048302985, + 1247.8610173319057, -3111.954782283883, -5653.325566768747, + -6869.78623540375, -7052.313697869408, -6941.065024560452, + -7341.631508345382, -8572.26354999131, -10645.603445171068, + -12914.44221496018, -14885.471102560057, -15998.59417423728, + -15533.133851626546, -13610.858371696591, -10710.780962911098, + -7513.210736290179, -4457.537154316476, -2591.136626572455, + -1840.3396435097757, -1790.7697053901861, -2079.0711416703843, + -1914.0320889365166, -717.7529013030066, 1636.8352530875225, + 4904.933058996543, 8205.554746755179, 10857.740358065412, + 12141.251771062489, 11884.908392951966, 10890.766736964983, + 10556.088517892933, 12725.849219275115, 19324.764670486627, + 31685.982765124827, 51122.39171418225, 74708.33541766905, + 101740.66148981574, 131489.96839635607, 155391.98431911762 + ], + "flow:branch86_seg2:J42": [ + 58.28231982005897, 69.45779333214878, 78.09428162310896, 83.3422122943702, + 84.79272107812, 82.49746516789261, 77.0038913998872, 69.34399301661304, + 60.3955849430593, 50.99630822105799, 41.96267940173258, 33.38616669889127, + 25.37508091620366, 17.82102052366814, 10.407459034786946, + 3.213066436708677, -3.8768269606882377, -10.672065179608701, + -16.75794807873613, -22.056001298955476, -26.31231994151662, + -29.497738563282816, -31.784336807966984, -33.321434136627325, + -34.34212983538178, -34.98568883390054, -35.2662678565209, + -35.11766409703494, -34.42828725923426, -33.125421380084546, + -31.286566051753013, -29.195217540812102, -27.25554569418883, + -26.031545674793797, -26.01453452332717, -27.519283440142207, + -30.518978093650055, -34.75228133072854, -39.51264650604105, + -43.92410563517341, -47.193768049200145, -48.54856219684978, + -47.606949194702366, -44.3618362565545, -39.26242989674128, + -32.78459830644921, -25.774319578281222, -18.924779926658218, + -12.625130993286424, -7.265356876681883, -2.779492214582587, + 0.9578702410314185, 4.072970997985936, 6.7562194297698905, + 8.967516732553259, 10.610955412457042, 11.523976394458266, + 11.528376377097533, 10.567217932629305, 8.767516424149054, + 6.371042006650518, 3.7312332685526566, 1.3093818113981914, + -0.6514625126747982, -1.9839864854752358, -2.7006706156194684, + -3.0153653911484626, -3.199489203049385, -3.5040231665269084, + -4.085291774947839, -4.920627714354754, -5.874234076698747, + -6.682689402617496, -7.088881952242388, -6.938756129121879, + -6.218823223933617, -5.062680030627119, -3.735493539765412, + -2.5349421457326153, -1.6553013492263098, -1.1899915885126198, + -1.0464847907351478, -0.9983267852101531, -0.7851113922846191, + -0.1968243195271517, 0.8189827156007883, 2.145721340710083, + 3.528434612421243, 4.612878125648903, 5.1984062037568, 5.267668322176976, + 5.0991853580432105, 5.270552242655123, 6.541818297821685, + 9.696574772827853, 15.342984289612644, 23.51022086987083, + 34.08018776137293, 46.11236622647367, 58.28231982005897 + ], + "pressure:branch86_seg2:J42": [ + 128372.52298777344, 149466.6273711724, 165014.76645229937, + 172608.4202288308, 172424.37970712793, 164995.4915897579, + 151644.62153610945, 134478.4538212933, 115587.6829245335, + 96364.46075305002, 78336.72909509903, 61424.339186418685, + 45395.17417822452, 30321.151660395342, 15261.907313339027, + 783.1051636481369, -13339.411082497103, -27161.342625272348, + -38814.696941955175, -48717.16530330606, -56693.70748434979, + -62292.26091186096, -66282.73262222327, -68929.94075878881, + -70608.95565304432, -71666.38866681258, -71941.07637089698, + -71238.14864923952, -69358.99416418829, -66239.39849275316, + -62102.61328380538, -57760.0517153547, -54171.088966646304, + -52405.47465746231, -53478.23019097537, -57867.64918724907, + -65067.107828935455, -74433.19416434587, -84383.54122866353, + -92708.34513421392, -98121.68425710511, -99202.05630546415, + -95403.98098195085, -86821.9971750005, -75279.46355574625, + -61461.31343548127, -46687.45405967308, -33233.85424537064, + -20996.247568639832, -10742.57035722265, -2465.138483754879, + 4742.522482149036, 10682.811989856411, 15690.24538602573, + 19873.371457705194, 22696.721699366302, 23882.152314680672, + 23150.13649957052, 20430.119539616542, 16139.816011558358, + 10917.070179111697, 5466.149723751679, 845.1071264998695, + -2651.336714606081, -4882.0482931818, -5909.910110765741, + -6300.064123219703, -6673.483760406182, -7466.370159050096, + -8915.953522151422, -10765.772695970894, -12675.820135740962, + -14162.505693136998, -14585.462143210207, -13786.338473505575, + -11897.722116482635, -9315.589017748996, -6531.902342072784, + -4271.010971942087, -2836.6894190793023, -2183.4100524159458, + -2082.0461818083477, -1974.8074080589581, -1317.6276526538065, + 226.80908563363633, 2631.2918501219, 5492.397983239741, 8252.843707926959, + 10113.980695942826, 10840.939076175982, 10625.963018803901, + 10280.024717855247, 11165.167886718204, 14932.049975743354, + 23035.877447945335, 36876.965131658166, 55407.94223927802, + 78085.20786254779, 104094.84116774308, 128372.52298777344 + ], + "flow:J42:branch87_seg0": [ + 27.506693861788072, 32.65316719272269, 36.565588249038974, + 38.86941155577166, 39.400177603014, 38.195856513914606, + 35.522494930768104, 31.89140409864109, 27.69586159641476, + 23.309226565968753, 19.134128822160765, 15.174506784090937, + 11.473798192728696, 7.988700194734145, 4.550220583434349, + 1.219619649436411, -2.058134722361833, -5.20681206311063, + -8.003790017445324, -10.42863477916026, -12.367536055568204, + -13.804690888295791, -14.832716429773836, -15.519565272110723, + -15.973630462274262, -16.258623966825287, -16.37555538404412, + -16.290253448055857, -15.950389198886588, -15.323036878151466, + -14.44978874057426, -13.47125669283069, -12.57747948250544, + -12.037446156089148, -12.076082180133074, -12.833108894519295, + -14.279273746363106, -16.28766363069154, -18.518422060685847, + -20.548870811466415, -22.023200604211066, -22.581269751259846, + -22.058659451109815, -20.465265390037615, -18.03061414205855, + -14.977416898497609, -11.701836675010775, -8.531066227297622, + -5.627523342904516, -3.172875123336471, -1.1250013252501962, + 0.5827684716861972, 2.0066594918652614, 3.236248085207461, + 4.244690624112969, 4.9854256353847175, 5.381940134272181, + 5.3500192672111755, 4.867072586844555, 4.001116606263228, + 2.868677103616064, 1.6320680449456426, 0.5174924609249711, + -0.37303575239977843, -0.9697145037949744, -1.2797499314516299, + -1.4109455215194457, -1.4922983691529703, -1.6385197701796583, + -1.9188402983108162, -2.315951385427721, -2.7619319044634754, + -3.1316898328102774, -3.3047917469782266, -3.2140383735747213, + -2.859029564127837, -2.3065722774502535, -1.6846005031608728, + -1.1325567072548133, -0.7363068616650332, -0.5356336516995547, + -0.4807830805641495, -0.4615056103548269, -0.3557301389849046, + -0.06823853386058376, 0.4190912685140519, 1.0452315103394392, + 1.6898204195725255, 2.181295492925137, 2.433230169752058, + 2.4469853783091167, 2.3611974033832572, 2.4549257046746917, + 3.087644482899288, 4.6225012723710375, 7.3390053024407225, + 11.225298518893016, 16.214654737224237, 21.854648138825453, + 27.506693861788072 + ], + "pressure:J42:branch87_seg0": [ + 128372.52298777344, 149466.6273711724, 165014.76645229937, + 172608.4202288308, 172424.37970712793, 164995.4915897579, + 151644.62153610945, 134478.4538212933, 115587.6829245335, + 96364.46075305002, 78336.72909509903, 61424.339186418685, + 45395.17417822452, 30321.151660395342, 15261.907313339027, + 783.1051636481369, -13339.411082497103, -27161.342625272348, + -38814.696941955175, -48717.16530330606, -56693.70748434979, + -62292.26091186096, -66282.73262222327, -68929.94075878881, + -70608.95565304432, -71666.38866681258, -71941.07637089698, + -71238.14864923952, -69358.99416418829, -66239.39849275316, + -62102.61328380538, -57760.0517153547, -54171.088966646304, + -52405.47465746231, -53478.23019097537, -57867.64918724907, + -65067.107828935455, -74433.19416434587, -84383.54122866353, + -92708.34513421392, -98121.68425710511, -99202.05630546415, + -95403.98098195085, -86821.9971750005, -75279.46355574625, + -61461.31343548127, -46687.45405967308, -33233.85424537064, + -20996.247568639832, -10742.57035722265, -2465.138483754879, + 4742.522482149036, 10682.811989856411, 15690.24538602573, + 19873.371457705194, 22696.721699366302, 23882.152314680672, + 23150.13649957052, 20430.119539616542, 16139.816011558358, + 10917.070179111697, 5466.149723751679, 845.1071264998695, + -2651.336714606081, -4882.0482931818, -5909.910110765741, + -6300.064123219703, -6673.483760406182, -7466.370159050096, + -8915.953522151422, -10765.772695970894, -12675.820135740962, + -14162.505693136998, -14585.462143210207, -13786.338473505575, + -11897.722116482635, -9315.589017748996, -6531.902342072784, + -4271.010971942087, -2836.6894190793023, -2183.4100524159458, + -2082.0461818083477, -1974.8074080589581, -1317.6276526538065, + 226.80908563363633, 2631.2918501219, 5492.397983239741, 8252.843707926959, + 10113.980695942826, 10840.939076175982, 10625.963018803901, + 10280.024717855247, 11165.167886718204, 14932.049975743354, + 23035.877447945335, 36876.965131658166, 55407.94223927802, + 78085.20786254779, 104094.84116774308, 128372.52298777344 + ], + "flow:J42:branch144_seg0": [ + 30.77562595827109, 36.8046261394263, 41.528693374069455, + 44.47280073859907, 45.3925434751061, 44.30160865397653, 41.48139646911871, + 37.452588917970715, 32.69972334664373, 27.68708165508844, + 22.82855057957199, 18.211659914801096, 13.901282723475795, + 9.832320328935673, 5.857238451353217, 1.9934467872714399, + -1.818692238328186, -5.465253116498194, -8.754158061288457, + -11.627366519796487, -13.944783885949498, -15.693047674986303, + -16.951620378193702, -17.801868864515928, -18.368499373107134, + -18.727064867076074, -18.890712472477084, -18.827410648977978, + -18.477898060347822, -17.80238450193207, -16.836777311177457, + -15.723960847981688, -14.678066211683582, -13.99409951870507, + -13.93845234319411, -14.686174545624212, -16.23970434728739, + -18.464617700037067, -20.99422444535605, -23.375234823705483, + -25.170567444988723, -25.967292445589504, -25.548289743592413, + -23.896570866516523, -21.23181575468274, -17.807181407951624, + -14.07248290327044, -10.393713699360571, -6.997607650381874, + -4.0924817533454165, -1.6544908893323906, 0.3751017693452239, + 2.066311506120672, 3.519971344562418, 4.722826108440282, + 5.625529777072365, 6.142036260186091, 6.178357109886376, + 5.700145345784662, 4.76639981788584, 3.5023649030346116, + 2.099165223607147, 0.7918893504730458, -0.27842676027511737, + -1.0142719816801926, -1.420920684167827, -1.604419869629064, + -1.7071908338962138, -1.8655033963472312, -2.166451476637049, + -2.604676328926924, -3.1123021722352537, -3.5509995698072165, + -3.784090205264119, -3.724717755547215, -3.3597936598057796, + -2.7561077531768476, -2.0508930366046294, -1.4023854384777918, + -0.9189944875613001, -0.6543579368130806, -0.56570171017097, + -0.5368211748553399, -0.4293812532997261, -0.1285857856665425, + 0.39989144708673896, 1.1004898303706345, 1.838614192848682, + 2.4315826327237593, 2.7651760340047398, 2.8206829438678755, + 2.7379879546599004, 2.8156265379804495, 3.4541738149223256, + 5.074073500456881, 8.003978987172042, 12.284922350977864, + 17.865533024148924, 24.25771808764769, 30.77562595827109 + ], + "pressure:J42:branch144_seg0": [ + 128372.52298777344, 149466.6273711724, 165014.76645229937, + 172608.4202288308, 172424.37970712793, 164995.4915897579, + 151644.62153610945, 134478.4538212933, 115587.6829245335, + 96364.46075305002, 78336.72909509903, 61424.339186418685, + 45395.17417822452, 30321.151660395342, 15261.907313339027, + 783.1051636481369, -13339.411082497103, -27161.342625272348, + -38814.696941955175, -48717.16530330606, -56693.70748434979, + -62292.26091186096, -66282.73262222327, -68929.94075878881, + -70608.95565304432, -71666.38866681258, -71941.07637089698, + -71238.14864923952, -69358.99416418829, -66239.39849275316, + -62102.61328380538, -57760.0517153547, -54171.088966646304, + -52405.47465746231, -53478.23019097537, -57867.64918724907, + -65067.107828935455, -74433.19416434587, -84383.54122866353, + -92708.34513421392, -98121.68425710511, -99202.05630546415, + -95403.98098195085, -86821.9971750005, -75279.46355574625, + -61461.31343548127, -46687.45405967308, -33233.85424537064, + -20996.247568639832, -10742.57035722265, -2465.138483754879, + 4742.522482149036, 10682.811989856411, 15690.24538602573, + 19873.371457705194, 22696.721699366302, 23882.152314680672, + 23150.13649957052, 20430.119539616542, 16139.816011558358, + 10917.070179111697, 5466.149723751679, 845.1071264998695, + -2651.336714606081, -4882.0482931818, -5909.910110765741, + -6300.064123219703, -6673.483760406182, -7466.370159050096, + -8915.953522151422, -10765.772695970894, -12675.820135740962, + -14162.505693136998, -14585.462143210207, -13786.338473505575, + -11897.722116482635, -9315.589017748996, -6531.902342072784, + -4271.010971942087, -2836.6894190793023, -2183.4100524159458, + -2082.0461818083477, -1974.8074080589581, -1317.6276526538065, + 226.80908563363633, 2631.2918501219, 5492.397983239741, 8252.843707926959, + 10113.980695942826, 10840.939076175982, 10625.963018803901, + 10280.024717855247, 11165.167886718204, 14932.049975743354, + 23035.877447945335, 36876.965131658166, 55407.94223927802, + 78085.20786254779, 104094.84116774308, 128372.52298777344 + ], + "flow:branch92_seg0:J43": [ + 80.77556969228291, 91.26278323491373, 96.97475767254515, + 97.47264052036385, 93.28246878617992, 85.19927888990094, + 74.42300180980668, 62.63429840976446, 51.14068836594395, + 40.209790241069115, 30.816622508706676, 22.42676811428102, + 14.59915107379189, 7.291293049641735, -0.2502584944999017, + -7.613346734887727, -14.789056681373927, -21.569517670421643, + -27.043571166337152, -31.420567436683847, -34.488518283017804, + -36.30337152199298, -37.380544138469304, -37.91447413023992, + -38.18792893454536, -38.27955598713845, -38.020296107879894, + -37.21475257474308, -35.69164483165435, -33.437591264594786, + -30.69638768992765, -28.107369329824543, -26.27787703577159, + -25.970001857223515, -27.689278371230106, -31.512646367711188, + -36.94189555454616, -43.25135775161077, -49.28405043466329, + -53.6273428175007, -55.57685980697435, -54.42138873088609, + -50.15155769995388, -43.283586781813106, -35.025067559463615, + -25.993878447646058, -17.42062616057415, -10.15034641431774, + -4.0639648746909325, 0.49087586465797345, 4.020176486457034, + 6.963703378224637, 9.358396592010529, 11.517573216603118, + 13.185785214375802, 14.050736217277286, 13.925468708124772, + 12.589865930284507, 10.126154977370625, 6.894033088108019, + 3.4400737690287433, 0.18126561594470858, -2.229027386892342, + -3.6785532844260134, -4.251613244470089, -4.154289855910282, + -3.8762517207232605, -3.843795998814679, -4.298712693403436, + -5.284190937713495, -6.528765317583503, -7.713571447434397, + -8.400660777221104, -8.27830819790139, -7.319587929558083, + -5.72475549389476, -3.840415702637898, -2.110662999393975, + -0.9629637833443087, -0.45030609920945924, -0.5065571737300923, + -0.8103523583035842, -0.9150302869014741, -0.470909890475659, + 0.668672346015482, 2.373884640850111, 4.230304255549728, + 5.814775453053337, 6.612278862287515, 6.540218373315615, 5.90045139003759, + 5.397015475776241, 6.06919634772041, 9.016168554175412, + 15.103128758031987, 24.83328684764923, 37.32940875654052, + 52.17086340399514, 67.47119528353777, 80.77556969228291 + ], + "pressure:branch92_seg0:J43": [ + 173739.02334901888, 191694.09219363861, 200218.77084080077, + 196976.143687692, 184780.16086646533, 166008.2011733941, + 142914.07636026334, 117668.03292724396, 95283.5000375725, + 74019.18919209525, 55428.270340188246, 39618.72381796503, + 23813.060881133664, 9147.484274498298, -5979.627861670586, + -21141.25806515702, -35260.43135259665, -48666.115406047924, + -58963.863285910134, -66614.5742029068, -72093.2153999305, + -74925.53193565432, -76525.96590167179, -77358.0783122278, + -77691.3504370101, -77729.17136049869, -76895.674707894, + -74757.06602341968, -71052.04450070065, -66039.68108557956, + -60161.7320421469, -55180.769281922236, -52415.74551568713, + -52999.06373524413, -58053.839024233246, -67359.5376432255, + -79516.72176768295, -92466.95152473579, -104338.84148532774, + -111665.79635302858, -113383.54863235005, -108822.00351908553, + -97920.06035105744, -82007.93559829293, -64482.02732883164, + -46180.023161309255, -28859.539490858853, -15326.4242156169, + -4081.830323676015, 4352.044152543613, 10559.03067405925, + 16364.858498434816, 20862.54551307015, 24795.436581192946, + 27942.17919315714, 28946.47137162453, 27805.603898506455, + 24231.479832670026, 18499.235164112557, 11328.161501880133, + 4389.412407312483, -1803.1442482440132, -6191.934180459376, + -8274.75454279836, -8828.84307715322, -8315.446251810388, + -7688.115482249212, -7883.943562492501, -9220.815579718286, + -11605.06015454652, -14230.125070083823, -16418.907986786988, + -17408.327973169442, -16504.697187832455, -13901.748925270878, + -10255.69165227391, -6411.019939162063, -3026.230211054968, + -1214.5615996673432, -754.9602876827109, -1165.7918602724192, + -1843.2809016127592, -1816.0172897635518, -429.0982945765599, + 2376.9913915326806, 6234.407879847948, 9956.00715299203, + 12766.70297803997, 13832.206973158058, 13018.84583000785, + 11424.076556438851, 10789.005757857754, 13356.08192805108, + 21333.380182860103, 36154.89872080186, 58866.63679523885, + 86130.16017668176, 117007.12317165975, 149002.03480685147, + 173739.02334901888 + ], + "flow:J43:branch93_seg0": [ + 25.406477807692752, 28.586689951634582, 30.23395365117349, + 30.243649808253657, 28.81047677159355, 26.18965066177319, + 22.760651110811143, 19.074423593444074, 15.506923337718025, + 12.12843595931881, 9.26246507751216, 6.693067507707619, 4.290415813758059, + 2.04408888355781, -0.29769668706934416, -2.570018545657968, + -4.786954003158922, -6.882945955621663, -8.544160335221063, + -9.86730486345319, -10.781901300203211, -11.305361590194181, + -11.614347349959722, -11.761394506712886, -11.835394429579335, + -11.857970656375151, -11.768767283095817, -11.505482602642507, + -11.015089001505258, -10.296162167902189, -9.430655937140465, + -8.627880857806518, -8.075706588738282, -8.01668827546122, + -8.602582650473149, -9.84731410379619, -11.575793158932084, + -13.56474335032455, -15.435874088130937, -16.743998650228498, + -17.287675156730746, -16.84644030390552, -15.433374970956708, + -13.224204397921925, -10.618714665709623, -7.794358306204943, + -5.140263287793729, -2.9219015182473576, -1.0693569770556546, + 0.2981248170227568, 1.3554126531419668, 2.246838860438679, + 2.9710250729755496, 3.6309668496665157, 4.134591377814416, + 4.382329351692141, 4.317661809100377, 3.8717011404399524, + 3.0747436365005703, 2.0507000476318162, 0.9685945142580787, + -0.04170366609739636, -0.766942983926253, -1.1896786900654275, + -1.3418583007998488, -1.2897421199545753, -1.1939144556259347, + -1.1869588327197014, -1.3395594054403197, -1.6599312577725631, + -2.0547958674711584, -2.4225852722169305, -2.625357788745681, + -2.566725789231558, -2.2464470129331993, -1.7326367173801271, + -1.137977945854767, -0.6025158003439662, -0.26005251014539366, + -0.11836833235620761, -0.15278835917231298, -0.2572381233285155, + -0.288122159191247, -0.13850013749285095, 0.2333495532330268, + 0.7779137624040418, 1.3613212056491641, 1.8496091007783728, + 2.0774117935896617, 2.0305925734449644, 1.8133715410084719, + 1.65468152599523, 1.886931912998223, 2.854210457793826, 4.821298870905667, + 7.937170451340601, 11.891951267757388, 16.55335108014412, + 21.325967994789558, 25.406477807692752 + ], + "pressure:J43:branch93_seg0": [ + 173739.02334901888, 191694.09219363861, 200218.77084080077, + 196976.143687692, 184780.16086646533, 166008.2011733941, + 142914.07636026334, 117668.03292724396, 95283.5000375725, + 74019.18919209525, 55428.270340188246, 39618.72381796503, + 23813.060881133664, 9147.484274498298, -5979.627861670586, + -21141.25806515702, -35260.43135259665, -48666.115406047924, + -58963.863285910134, -66614.5742029068, -72093.2153999305, + -74925.53193565432, -76525.96590167179, -77358.0783122278, + -77691.3504370101, -77729.17136049869, -76895.674707894, + -74757.06602341968, -71052.04450070065, -66039.68108557956, + -60161.7320421469, -55180.769281922236, -52415.74551568713, + -52999.06373524413, -58053.839024233246, -67359.5376432255, + -79516.72176768295, -92466.95152473579, -104338.84148532774, + -111665.79635302858, -113383.54863235005, -108822.00351908553, + -97920.06035105744, -82007.93559829293, -64482.02732883164, + -46180.023161309255, -28859.539490858853, -15326.4242156169, + -4081.830323676015, 4352.044152543613, 10559.03067405925, + 16364.858498434816, 20862.54551307015, 24795.436581192946, + 27942.17919315714, 28946.47137162453, 27805.603898506455, + 24231.479832670026, 18499.235164112557, 11328.161501880133, + 4389.412407312483, -1803.1442482440132, -6191.934180459376, + -8274.75454279836, -8828.84307715322, -8315.446251810388, + -7688.115482249212, -7883.943562492501, -9220.815579718286, + -11605.06015454652, -14230.125070083823, -16418.907986786988, + -17408.327973169442, -16504.697187832455, -13901.748925270878, + -10255.69165227391, -6411.019939162063, -3026.230211054968, + -1214.5615996673432, -754.9602876827109, -1165.7918602724192, + -1843.2809016127592, -1816.0172897635518, -429.0982945765599, + 2376.9913915326806, 6234.407879847948, 9956.00715299203, + 12766.70297803997, 13832.206973158058, 13018.84583000785, + 11424.076556438851, 10789.005757857754, 13356.08192805108, + 21333.380182860103, 36154.89872080186, 58866.63679523885, + 86130.16017668176, 117007.12317165975, 149002.03480685147, + 173739.02334901888 + ], + "flow:J43:branch135_seg0": [ + 33.8043827944381, 37.90068965567204, 39.96253382940748, 39.83450702458587, + 37.83031849927723, 34.295050258280746, 29.72449484493224, + 24.836604695102242, 20.16544939423392, 15.730869697668426, + 11.98035445223012, 8.630341421441326, 5.464186418417558, + 2.5142704482817937, -0.5752030471397138, -3.57392983318161, + -6.477608069025519, -9.234537064975747, -11.392132637833733, + -13.098866202667107, -14.279569222975997, -14.939467166060185, + -15.330058924527016, -15.515579285177203, -15.606564169628683, + -15.632169317891666, -15.504662978495599, -15.141344285670938, + -14.475617579794713, -13.512029981306465, -12.360883762965855, + -11.312162877960063, -10.61272220920875, -10.576101930541107, + -11.40198249330416, -13.095188948071952, -15.409262258251994, + -18.037649056811226, -20.492561902283146, -22.16317288229015, + -22.809626537944474, -22.152711216718853, -20.2161916792399, + -17.240402169026172, -13.783025106043567, -10.05774019781375, + -6.566273844876366, -3.68451831385067, -1.274448653686235, + 0.4982816351427751, 1.8632543873222596, 3.031881601553972, + 3.974693280227555, 4.834434238676802, 5.488630812169817, + 5.790421513835188, 5.677568079035251, 5.060359820398777, + 3.9838687194439415, 2.6156701333224226, 1.192104756205089, + -0.12977803246142175, -1.065131119441332, -1.5934227207038791, + -1.775209953125517, -1.6947267319932986, -1.566779807607715, + -1.5670992271822946, -1.7819581626093575, -2.21710489622189, + -2.7409725716914473, -3.219380531628784, -3.4727546810081305, + -3.373439378187873, -2.9299633902228583, -2.2396691560286586, + -1.4537167328503342, -0.7533270701445699, -0.3193777329178763, + -0.15041093884360823, -0.20647517586707298, -0.346879364996458, + -0.3793337248783968, -0.165588277476044, 0.3417587918857682, + 1.0725785370085386, 1.839800511725284, 2.4720053787428973, + 2.7518225698253906, 2.6672648277676703, 2.3712647864445664, + 2.174300325045391, 2.519493415885897, 3.8604802571184145, + 6.533967212048553, 10.738397594034767, 16.01208306694969, + 22.18952600661644, 28.50018454604316, 33.8043827944381 + ], + "pressure:J43:branch135_seg0": [ + 173739.02334901888, 191694.09219363861, 200218.77084080077, + 196976.143687692, 184780.16086646533, 166008.2011733941, + 142914.07636026334, 117668.03292724396, 95283.5000375725, + 74019.18919209525, 55428.270340188246, 39618.72381796503, + 23813.060881133664, 9147.484274498298, -5979.627861670586, + -21141.25806515702, -35260.43135259665, -48666.115406047924, + -58963.863285910134, -66614.5742029068, -72093.2153999305, + -74925.53193565432, -76525.96590167179, -77358.0783122278, + -77691.3504370101, -77729.17136049869, -76895.674707894, + -74757.06602341968, -71052.04450070065, -66039.68108557956, + -60161.7320421469, -55180.769281922236, -52415.74551568713, + -52999.06373524413, -58053.839024233246, -67359.5376432255, + -79516.72176768295, -92466.95152473579, -104338.84148532774, + -111665.79635302858, -113383.54863235005, -108822.00351908553, + -97920.06035105744, -82007.93559829293, -64482.02732883164, + -46180.023161309255, -28859.539490858853, -15326.4242156169, + -4081.830323676015, 4352.044152543613, 10559.03067405925, + 16364.858498434816, 20862.54551307015, 24795.436581192946, + 27942.17919315714, 28946.47137162453, 27805.603898506455, + 24231.479832670026, 18499.235164112557, 11328.161501880133, + 4389.412407312483, -1803.1442482440132, -6191.934180459376, + -8274.75454279836, -8828.84307715322, -8315.446251810388, + -7688.115482249212, -7883.943562492501, -9220.815579718286, + -11605.06015454652, -14230.125070083823, -16418.907986786988, + -17408.327973169442, -16504.697187832455, -13901.748925270878, + -10255.69165227391, -6411.019939162063, -3026.230211054968, + -1214.5615996673432, -754.9602876827109, -1165.7918602724192, + -1843.2809016127592, -1816.0172897635518, -429.0982945765599, + 2376.9913915326806, 6234.407879847948, 9956.00715299203, + 12766.70297803997, 13832.206973158058, 13018.84583000785, + 11424.076556438851, 10789.005757857754, 13356.08192805108, + 21333.380182860103, 36154.89872080186, 58866.63679523885, + 86130.16017668176, 117007.12317165975, 149002.03480685147, + 173739.02334901888 + ], + "flow:J43:branch139_seg0": [ + 21.5647090901523, 24.775403627606504, 26.77827019196437, + 27.394483687523977, 26.641673515310064, 24.71457796984651, + 21.93785585406374, 18.72327012121834, 15.468315633992981, + 12.350484584082807, 9.573802978963212, 7.103359185131646, + 4.8445488416125215, 2.732933717802536, 0.6226412397085039, + -1.469398356050333, -3.5244946091899347, -5.452034649825646, + -7.107278193284071, -8.454396370562906, -9.42704775983488, + -10.058542765737004, -10.436137863985367, -10.637500338349517, + -10.745970335336693, -10.78941601287297, -10.746865846287179, + -10.567925686429485, -10.200938250354541, -9.629399115385146, + -8.904847989821725, -8.167325594060689, -7.58944823782413, + -7.377211651220574, -7.684713227453058, -8.570143315843197, + -9.956840137361631, -11.648965344475437, -13.35561444424987, + -14.720171284982479, -15.479558112299081, -15.422237210261864, + -14.50199104975757, -12.818980214865206, -10.623327787710535, + -8.14177994362734, -5.714089027904051, -3.5439265822197163, + -1.7201592439490332, -0.3055305875075755, 0.8015094459928388, + 1.684982916231992, 2.412678238807425, 3.052172128259813, + 3.562563024391598, 3.8779853517499876, 3.930238819989162, + 3.65780496944583, 3.0675426214261465, 2.227662907153892, + 1.279374498565506, 0.3527473145037553, -0.3969532835246567, + -0.8954518736565888, -1.1345449905448324, -1.1698210039624497, + -1.1155574574898461, -1.0897379389126725, -1.1771951253535722, + -1.4071547837190375, -1.7329968784208793, -2.0716056435886983, + -2.3025483074672306, -2.3381430304819855, -2.143177526402021, + -1.7524496204859352, -1.2487210239327786, -0.7548201289054897, + -0.3835335402810367, -0.18152682800970127, -0.14729363869072057, + -0.20623486997858947, -0.24757440283183912, -0.166821475506759, + 0.09356400089666676, 0.5233923414375421, 1.0291825381752426, + 1.493160973532019, 1.7830444988724738, 1.8423609721030367, + 1.7158150625845596, 1.5680336247356996, 1.6627710188363582, + 2.3014778392631134, 3.7478626750778257, 6.15771880227375, + 9.42537442183345, 13.427986317234975, 17.645042742705062, 21.5647090901523 + ], + "pressure:J43:branch139_seg0": [ + 173739.02334901888, 191694.09219363861, 200218.77084080077, + 196976.143687692, 184780.16086646533, 166008.2011733941, + 142914.07636026334, 117668.03292724396, 95283.5000375725, + 74019.18919209525, 55428.270340188246, 39618.72381796503, + 23813.060881133664, 9147.484274498298, -5979.627861670586, + -21141.25806515702, -35260.43135259665, -48666.115406047924, + -58963.863285910134, -66614.5742029068, -72093.2153999305, + -74925.53193565432, -76525.96590167179, -77358.0783122278, + -77691.3504370101, -77729.17136049869, -76895.674707894, + -74757.06602341968, -71052.04450070065, -66039.68108557956, + -60161.7320421469, -55180.769281922236, -52415.74551568713, + -52999.06373524413, -58053.839024233246, -67359.5376432255, + -79516.72176768295, -92466.95152473579, -104338.84148532774, + -111665.79635302858, -113383.54863235005, -108822.00351908553, + -97920.06035105744, -82007.93559829293, -64482.02732883164, + -46180.023161309255, -28859.539490858853, -15326.4242156169, + -4081.830323676015, 4352.044152543613, 10559.03067405925, + 16364.858498434816, 20862.54551307015, 24795.436581192946, + 27942.17919315714, 28946.47137162453, 27805.603898506455, + 24231.479832670026, 18499.235164112557, 11328.161501880133, + 4389.412407312483, -1803.1442482440132, -6191.934180459376, + -8274.75454279836, -8828.84307715322, -8315.446251810388, + -7688.115482249212, -7883.943562492501, -9220.815579718286, + -11605.06015454652, -14230.125070083823, -16418.907986786988, + -17408.327973169442, -16504.697187832455, -13901.748925270878, + -10255.69165227391, -6411.019939162063, -3026.230211054968, + -1214.5615996673432, -754.9602876827109, -1165.7918602724192, + -1843.2809016127592, -1816.0172897635518, -429.0982945765599, + 2376.9913915326806, 6234.407879847948, 9956.00715299203, + 12766.70297803997, 13832.206973158058, 13018.84583000785, + 11424.076556438851, 10789.005757857754, 13356.08192805108, + 21333.380182860103, 36154.89872080186, 58866.63679523885, + 86130.16017668176, 117007.12317165975, 149002.03480685147, + 173739.02334901888 + ], + "flow:branch94_seg0:J44": [ + 79.12983313051946, 90.58758628771656, 97.63370300894638, 99.6857692798253, + 96.95845986477316, 90.08865071473872, 80.18225933780063, + 68.83372323530259, 57.30204025223984, 46.147599362013764, + 36.28481359926769, 27.340994594646315, 19.041134306148063, + 11.22658349774453, 3.26510446397714, -4.542047235886924, + -12.236017175845049, -19.51342824685962, -25.606773569985105, + -30.607196939031056, -34.24829245170287, -36.59819222325248, + -38.08844331599842, -38.93509059286419, -39.4407107285251, + -39.70563603327383, -39.60878384804304, -38.97241791073636, + -37.61990726890192, -35.51160693153503, -32.858578657639946, + -30.22912232442141, -28.226905506154196, -27.61557317647946, + -28.932688387843104, -32.337816232661204, -37.44492923627754, + -43.6007426027966, -49.66704641568341, -54.322151781651066, + -56.74427766204854, -56.170623390326156, -52.503198297976404, + -46.1664870110999, -38.21479510954922, -29.31303698701594, + -20.676038380115592, -13.115296256511948, -6.6922944318593665, + -1.7410443611099244, 2.1683409058547816, 5.4044902582320775, + 8.07347979591367, 10.464506666842881, 12.37219253186138, + 13.531221422720956, 13.725218049438313, 12.730032453127038, + 10.584986215265351, 7.598484363121523, 4.254562024627302, + 1.0072506669669563, -1.5235794628020807, -3.1734102364324843, + -3.9410346197390504, -4.011498592996219, -3.829444045787011, + -3.807968239196274, -4.217062509868294, -5.135656225181369, + -6.349044638035488, -7.561542399989306, -8.347438478541408, + -8.389077182021293, -7.612775758673833, -6.1675011530843715, + -4.366628107776861, -2.639170798630479, -1.4005820448017123, + -0.7609473822288335, -0.6949509522868805, -0.9210123715359267, + -1.0244337333016462, -0.6509824555734908, 0.381793184917519, + 1.9898749850909017, 3.8234674976509577, 5.462642126605315, + 6.408312961977374, 6.527590874808747, 6.034364206327396, + 5.555929883621116, 6.068561292510639, 8.649346622983032, + 14.211327893039972, 23.30536393566437, 35.31984847083929, + 49.87145587443605, 65.20734552550678, 79.12983313051946 + ], + "pressure:branch94_seg0:J44": [ + 162478.5054879678, 180850.80760355137, 190813.77539823987, + 189878.25547055766, 180391.63004620915, 164364.5032420693, + 143821.03573169338, 120412.02284920891, 99325.4575929515, + 79028.54615886287, 60619.1025940516, 44899.44471651906, + 29194.919780203047, 14480.942442392961, -453.2516910380621, + -15630.86060637404, -29870.084658705997, -43207.73257413856, + -53880.02605407659, -62077.31285822666, -68056.16318634452, + -71509.13762245407, -73628.31713297345, -74879.81521843186, + -75563.87749274848, -75860.66327167879, -75295.0653046486, + -73491.49919136635, -70194.97367912286, -65634.08943248658, + -60190.1955696607, -55443.5192311014, -52662.62722343214, + -52854.55866141636, -57168.03750029094, -65434.96329089486, + -76568.87539137404, -88543.78968950076, -99714.788266101, + -106956.77622773958, -109056.69115515123, -105397.6632780387, + -95831.26662248251, -81503.77261735307, -65386.5463332322, + -48244.04308157429, -31905.219846206543, -18812.400762110654, + -7763.6368412444, 711.3625224925776, 7139.6359936062745, + 13063.937480209015, 17690.293328573, 21764.581989439645, + 25122.559182711542, 26464.9977962354, 25820.769210859147, + 22913.00198252431, 17958.2570073724, 11511.574715578328, + 5162.393488087419, -568.6771670822761, -4878.7124120367225, + -7083.062729353725, -7827.333977091313, -7581.061105125324, + -7146.112504640215, -7379.992273908614, -8612.584614436993, + -10793.005062059334, -13229.229217518954, -15337.18468874474, + -16375.35447481205, -15716.231966918378, -13489.992835093057, + -10255.37919852842, -6751.046909737524, -3584.255266737122, + -1794.6576455197355, -1213.2700426217193, -1430.86484905489, + -1952.979174755697, -1897.0922190991048, -645.9159491689907, + 1879.7967083886574, 5413.329530736675, 8882.600504018183, + 11558.623513182773, 12756.440629839075, 12239.62339583428, + 10935.538071786943, 10422.096379066761, 12717.346320154038, + 19882.060430496505, 33289.95791910511, 53978.50341293779, + 79092.31018349466, 108101.94595860194, 138370.65005474206, + 162478.5054879678 + ], + "flow:J44:branch95_seg0": [ + 53.96028978135659, 61.93439017758026, 66.92050943704048, + 68.50612302765745, 66.79067627153346, 62.198589450378776, + 55.4832396130103, 47.72887520342704, 39.79614698733693, 32.11215903811926, + 25.28953242378578, 19.101285556220965, 13.376962791955728, + 7.985898248007756, 2.514557972283958, -2.857937414972537, + -8.161071062243185, -13.174511652728869, -17.406268760108627, + -20.88810551855694, -23.433114933536586, -25.09388680736695, + -26.147635895652993, -26.749664695694417, -27.110009315652388, + -27.300110970492266, -27.246114301036396, -26.827686351969813, + -25.921897868146072, -24.496255071139988, -22.689721224185572, + -20.878753091228422, -19.477386483262332, -19.010050521715797, + -19.850016402005316, -22.120939135076483, -25.57851135887137, + -29.781947012406, -33.956766951023155, -37.21030368446325, + -38.95499569102427, -38.659716861051514, -36.24090861755543, + -31.975339718565138, -26.555540037177533, -20.457426534246036, + -14.514360456860874, -9.272103873424006, -4.815570128974461, + -1.364720095386784, 1.363341856616726, 3.6078366880566435, + 5.462281685995632, 7.11914693657761, 8.445795824747712, 9.270085908076451, + 9.437008538581216, 8.791726587170576, 7.354823390241361, + 5.328754469052978, 3.038331047661246, 0.8011094132327662, + -0.9634921286768411, -2.1303677637484895, -2.686386581690769, + -2.7568395415280316, -2.639858708924747, -2.618739630741692, + -2.885230468945023, -3.499831429810389, -4.325673014690426, + -5.161679198811009, -5.716215541570736, -5.77059587111387, + -5.264469975083734, -4.2919132803572655, -3.063266193513014, + -1.872953195454179, -1.0038330952917105, -0.5428028794584517, + -0.4797277435909398, -0.6262277276574298, -0.7021981009430522, + -0.462076814506897, 0.22615039512751287, 1.3132851338798912, + 2.568558818446931, 3.703382674593353, 4.377276661162195, + 4.4879355470341435, 4.167757808896784, 3.8352285304997213, + 4.151503762433353, 5.854119469373492, 9.579455321429558, + 15.710539729492321, 23.879045874317224, 33.81701067004604, + 44.326223040699595, 53.96028978135659 + ], + "pressure:J44:branch95_seg0": [ + 162478.5054879678, 180850.80760355137, 190813.77539823987, + 189878.25547055766, 180391.63004620915, 164364.5032420693, + 143821.03573169338, 120412.02284920891, 99325.4575929515, + 79028.54615886287, 60619.1025940516, 44899.44471651906, + 29194.919780203047, 14480.942442392961, -453.2516910380621, + -15630.86060637404, -29870.084658705997, -43207.73257413856, + -53880.02605407659, -62077.31285822666, -68056.16318634452, + -71509.13762245407, -73628.31713297345, -74879.81521843186, + -75563.87749274848, -75860.66327167879, -75295.0653046486, + -73491.49919136635, -70194.97367912286, -65634.08943248658, + -60190.1955696607, -55443.5192311014, -52662.62722343214, + -52854.55866141636, -57168.03750029094, -65434.96329089486, + -76568.87539137404, -88543.78968950076, -99714.788266101, + -106956.77622773958, -109056.69115515123, -105397.6632780387, + -95831.26662248251, -81503.77261735307, -65386.5463332322, + -48244.04308157429, -31905.219846206543, -18812.400762110654, + -7763.6368412444, 711.3625224925776, 7139.6359936062745, + 13063.937480209015, 17690.293328573, 21764.581989439645, + 25122.559182711542, 26464.9977962354, 25820.769210859147, + 22913.00198252431, 17958.2570073724, 11511.574715578328, + 5162.393488087419, -568.6771670822761, -4878.7124120367225, + -7083.062729353725, -7827.333977091313, -7581.061105125324, + -7146.112504640215, -7379.992273908614, -8612.584614436993, + -10793.005062059334, -13229.229217518954, -15337.18468874474, + -16375.35447481205, -15716.231966918378, -13489.992835093057, + -10255.37919852842, -6751.046909737524, -3584.255266737122, + -1794.6576455197355, -1213.2700426217193, -1430.86484905489, + -1952.979174755697, -1897.0922190991048, -645.9159491689907, + 1879.7967083886574, 5413.329530736675, 8882.600504018183, + 11558.623513182773, 12756.440629839075, 12239.62339583428, + 10935.538071786943, 10422.096379066761, 12717.346320154038, + 19882.060430496505, 33289.95791910511, 53978.50341293779, + 79092.31018349466, 108101.94595860194, 138370.65005474206, + 162478.5054879678 + ], + "flow:J44:branch115_seg0": [ + 25.16954334916277, 28.6531961101368, 30.713193571905798, + 31.179646252167345, 30.16778359323834, 27.89006126436081, + 24.699019724788286, 21.1048480318745, 17.50589326490292, + 14.03544032389424, 10.995281175478869, 8.23970903842514, 5.66417151419156, + 3.2406852497381915, 0.750546491693098, -1.6841098209150849, + -4.074946113602403, -6.338916594129753, -8.20050480987686, + -9.719091420475515, -10.815177518166648, -11.504305415886169, + -11.940807420344852, -12.18542589716975, -12.330701412872818, + -12.405525062783278, -12.362669547006165, -12.144731558767804, + -11.698009400755222, -11.015351860395024, -10.168857433455093, + -9.350369233191671, -8.749519022893047, -8.605522654764309, + -9.082671985835743, -10.216877097584716, -11.866417877407129, + -13.818795590390662, -15.710279464659616, -17.111848097188375, + -17.789281971024458, -17.510906529274454, -16.262289680420583, + -14.191147292534758, -11.65925507237191, -8.855610452769982, + -6.161677923254741, -3.8431923830879438, -1.8767243028849119, + -0.3763242657231362, 0.8049990492380561, 1.7966535701754347, + 2.611198109918024, 3.3453597302652778, 3.926396707113687, + 4.261135514644458, 4.288209510857026, 3.93830586595644, + 3.2301628250238426, 2.269729894068447, 1.2162309769661086, + 0.2061412537342573, -0.5600873341251187, -1.0430424726840946, + -1.2546480380485163, -1.2546590514681526, -1.189585336862199, + -1.1892286084545727, -1.3318320409232725, -1.635824795370991, + -2.023371623345201, -2.399863201178314, -2.631222936970687, + -2.6184813109073826, -2.3483057835901313, -1.8755878727270712, + -1.3033619142638813, -0.7662176031763019, -0.3967489495100002, + -0.2181445027704006, -0.21522320869596231, -0.29478464387851816, + -0.3222356323585865, -0.18890564106660426, 0.15564278978998533, + 0.6765898512110354, 1.2549086792040778, 1.7592594520120053, + 2.031036300815158, 2.0396553277745264, 1.8666063974306737, + 1.7207013531214044, 1.9170575300772643, 2.7952271536095203, + 4.631872571610367, 7.594824206172233, 11.440802596521866, + 16.054445204389793, 20.881122484807058, 25.16954334916277 + ], + "pressure:J44:branch115_seg0": [ + 162478.5054879678, 180850.80760355137, 190813.77539823987, + 189878.25547055766, 180391.63004620915, 164364.5032420693, + 143821.03573169338, 120412.02284920891, 99325.4575929515, + 79028.54615886287, 60619.1025940516, 44899.44471651906, + 29194.919780203047, 14480.942442392961, -453.2516910380621, + -15630.86060637404, -29870.084658705997, -43207.73257413856, + -53880.02605407659, -62077.31285822666, -68056.16318634452, + -71509.13762245407, -73628.31713297345, -74879.81521843186, + -75563.87749274848, -75860.66327167879, -75295.0653046486, + -73491.49919136635, -70194.97367912286, -65634.08943248658, + -60190.1955696607, -55443.5192311014, -52662.62722343214, + -52854.55866141636, -57168.03750029094, -65434.96329089486, + -76568.87539137404, -88543.78968950076, -99714.788266101, + -106956.77622773958, -109056.69115515123, -105397.6632780387, + -95831.26662248251, -81503.77261735307, -65386.5463332322, + -48244.04308157429, -31905.219846206543, -18812.400762110654, + -7763.6368412444, 711.3625224925776, 7139.6359936062745, + 13063.937480209015, 17690.293328573, 21764.581989439645, + 25122.559182711542, 26464.9977962354, 25820.769210859147, + 22913.00198252431, 17958.2570073724, 11511.574715578328, + 5162.393488087419, -568.6771670822761, -4878.7124120367225, + -7083.062729353725, -7827.333977091313, -7581.061105125324, + -7146.112504640215, -7379.992273908614, -8612.584614436993, + -10793.005062059334, -13229.229217518954, -15337.18468874474, + -16375.35447481205, -15716.231966918378, -13489.992835093057, + -10255.37919852842, -6751.046909737524, -3584.255266737122, + -1794.6576455197355, -1213.2700426217193, -1430.86484905489, + -1952.979174755697, -1897.0922190991048, -645.9159491689907, + 1879.7967083886574, 5413.329530736675, 8882.600504018183, + 11558.623513182773, 12756.440629839075, 12239.62339583428, + 10935.538071786943, 10422.096379066761, 12717.346320154038, + 19882.060430496505, 33289.95791910511, 53978.50341293779, + 79092.31018349466, 108101.94595860194, 138370.65005474206, + 162478.5054879678 + ], + "flow:branch95_seg0:J45": [ + 53.94021067942876, 61.921839256634726, 66.91607117568859, + 68.50974737150942, 66.80297610408424, 62.21645182187475, + 55.50265057806802, 47.75381058335516, 39.81558287805312, + 32.12728465949075, 25.307324156838096, 19.114297703465557, + 13.39058520177083, 7.999342124519729, 2.524508868978869, + -2.8437311086805517, -8.149471275342556, -13.167450673345693, + -17.398103374863148, -20.882462753341095, -23.430124263506052, + -25.09128431791252, -26.146640799438124, -26.74900670160945, + -27.109299295567233, -27.300241045204423, -27.2469846116389, + -26.829873233253846, -25.925574117306642, -24.501063248950583, + -22.69461921707837, -20.882907598023593, -19.478580092428572, + -19.007897806307145, -19.844207637228564, -22.112751513400838, + -25.566206637871943, -29.77230803240573, -33.948905328628705, + -37.20588598071074, -38.95652359109315, -38.666133775553696, + -36.25022321765289, -31.986198142388556, -26.56938562315807, + -20.471396243058052, -14.525361872998479, -9.282750900413763, + -4.823005860376442, -1.370701897071915, 1.357082944186645, + 3.6034055867882593, 5.458116648338619, 7.1156163365529075, + 8.44325381488031, 9.269463908879535, 9.438692063409425, 8.795694156760863, + 7.359792355159332, 5.335841998364632, 3.0439751467659986, + 0.8042934561087123, -0.9600720703496955, -2.1291601945148337, + -2.686729803555901, -2.7571768343730207, -2.639915053722203, + -2.618136252545991, -2.8838950022812195, -3.4981236848796864, + -4.323769648610739, -5.160149419987846, -5.71618821826429, + -5.771616572460273, -5.2668756518429, -4.294912389653232, + -3.0665409902288627, -1.8752899465242145, -1.0050837623521667, + -0.5428947656182486, -0.4791642486085512, -0.6259432527466096, + -0.702726797828276, -0.46396482007094203, 0.22347111821385324, + 1.309531120557001, 2.565666645800126, 3.7023964483012635, + 4.3769451041870395, 4.488736685133566, 4.168813547216408, + 3.8347477189224524, 4.14793661954875, 5.845481202265794, + 9.566242236976203, 15.693420076900129, 23.857802199909436, + 33.78929260954979, 44.30453008077069, 53.94021067942876 + ], + "pressure:branch95_seg0:J45": [ + 157269.38707129288, 176586.18547123612, 187630.8335281139, + 188263.2672299395, 180257.13213046355, 165381.58002521185, + 145613.8685427671, 122966.1150726269, 101759.4840532165, + 81349.21908560942, 62952.02534519624, 46911.6809265506, 31313.9249971172, + 16627.335352099046, 1741.512002041635, -13188.295074398678, + -27510.135649495518, -40906.87447483153, -51773.576054451994, + -60333.75856977683, -66584.79885928074, -70330.85383427265, + -72669.52061100573, -74026.98695949525, -74791.75299520924, + -75159.44374229437, -74718.65318226907, -73123.24644988382, + -70085.62931436123, -65754.23906348243, -60476.82610868713, + -55694.84003661005, -52607.09039460454, -52338.82001152514, + -56017.37487239432, -63629.23587787723, -74189.53299255866, + -86007.32624517714, -97198.13110664036, -104928.88339764973, + -107822.33193942237, -105044.55876374966, -96368.59806472072, + -82871.65280519884, -67233.80487030101, -50304.142677174365, + -34029.74835787682, -20664.355823228783, -9316.58161524754, + -601.4306098936576, 6072.137267210076, 12064.52496415099, + 16778.238912197445, 20962.650809505598, 24400.339597990376, + 26009.579150145164, 25701.44512112694, 23162.007207848914, + 18537.339700106677, 12402.616989127237, 6087.167773864811, + 265.3111539310049, -4181.391662540519, -6682.674698104482, + -7653.699876540187, -7535.82294708126, -7132.993970706169, + -7276.073342237157, -8356.48038884876, -10383.580163764093, + -12753.687818817472, -14904.097701735987, -16086.753943980342, + -15664.347981947316, -13699.945022421756, -10647.902703431952, + -7213.434255724623, -4021.9529847972103, -2072.2308210283218, + -1291.9484806711387, -1385.570918101691, -1871.656654189137, + -1897.8644116661953, -837.0913539838726, 1484.801230434127, + 4828.065708018569, 8283.880325831655, 11079.441504186065, + 12467.994206538662, 12198.140879324563, 11022.68734658436, + 10384.959532940022, 12239.175514316703, 18612.22769216912, + 31022.782565772468, 50480.395749732925, 74642.28695683816, + 102909.5463509456, 132715.58551900627, 157269.38707129288 + ], + "flow:J45:branch96_seg0": [ + 28.516074949961073, 32.75454670908349, 35.41526071427078, + 36.27793916963048, 35.39202932646714, 32.976781533903164, + 29.430010515574768, 25.333790212339277, 21.12615851610462, + 17.05174488142323, 13.438151215056353, 10.153094143989733, + 7.121031311934794, 4.264546111793799, 1.3639502089911482, + -1.4769422390591787, -4.288189237223468, -6.948950200149904, + -9.191670011347501, -11.041585790742218, -12.39560070411528, + -13.27908770063096, -13.841334548797844, -14.162188853654374, + -14.354068859522775, -14.456344873118796, -14.42967372353145, + -14.211111744344823, -13.73519494625927, -12.983404147027136, + -12.028509358379187, -11.06838587383389, -10.32120133079121, + -10.066292630369338, -10.501977818596238, -11.696208351310645, + -13.518544870894443, -15.744767648363673, -17.95788756418811, + -19.68865037564601, -20.6254555548302, -20.482235635600258, + -19.213353804877894, -16.963422928623704, -14.100965274263807, + -10.873889133486568, -7.723008846444993, -4.943193016672876, + -2.5761984195750944, -0.7433998736540411, 0.7044757178863358, + 1.8966007192938212, 2.880788852346043, 3.7599258755204543, + 4.464773839395612, 4.905690108634143, 4.999298774457838, + 4.663222902810989, 3.9064415185665453, 2.8380480866194944, + 1.6241748845004709, 0.43647328700724086, -0.4996954344845138, + -1.1225791856003136, -1.4210292342214739, -1.4601402074224727, + -1.398601642217474, -1.3862501582656204, -1.5253393489174114, + -1.8490565084964337, -2.2853872629235377, -2.7286594970653537, + -3.02509632671966, -3.057198292622795, -2.7929328782152094, + -2.2804182391994128, -1.6308183621091705, -0.9993446890670739, + -0.5363550680781684, -0.28923157602924077, -0.2536208507976205, + -0.3307528788615578, -0.3722353716856403, -0.24786992127712643, + 0.11397455286458681, 0.6870143153511102, 1.3522658178639266, + 1.9558758960353142, 2.315302052791556, 2.3774562711211367, + 2.2097343518680757, 2.0318291217798725, 2.1930691475759727, + 3.083689045990488, 5.042949264783365, 8.275954070590052, + 12.588897022098259, 17.83884048562908, 23.40737339379091, + 28.516074949961073 + ], + "pressure:J45:branch96_seg0": [ + 157269.38707129288, 176586.18547123612, 187630.8335281139, + 188263.2672299395, 180257.13213046355, 165381.58002521185, + 145613.8685427671, 122966.1150726269, 101759.4840532165, + 81349.21908560942, 62952.02534519624, 46911.6809265506, 31313.9249971172, + 16627.335352099046, 1741.512002041635, -13188.295074398678, + -27510.135649495518, -40906.87447483153, -51773.576054451994, + -60333.75856977683, -66584.79885928074, -70330.85383427265, + -72669.52061100573, -74026.98695949525, -74791.75299520924, + -75159.44374229437, -74718.65318226907, -73123.24644988382, + -70085.62931436123, -65754.23906348243, -60476.82610868713, + -55694.84003661005, -52607.09039460454, -52338.82001152514, + -56017.37487239432, -63629.23587787723, -74189.53299255866, + -86007.32624517714, -97198.13110664036, -104928.88339764973, + -107822.33193942237, -105044.55876374966, -96368.59806472072, + -82871.65280519884, -67233.80487030101, -50304.142677174365, + -34029.74835787682, -20664.355823228783, -9316.58161524754, + -601.4306098936576, 6072.137267210076, 12064.52496415099, + 16778.238912197445, 20962.650809505598, 24400.339597990376, + 26009.579150145164, 25701.44512112694, 23162.007207848914, + 18537.339700106677, 12402.616989127237, 6087.167773864811, + 265.3111539310049, -4181.391662540519, -6682.674698104482, + -7653.699876540187, -7535.82294708126, -7132.993970706169, + -7276.073342237157, -8356.48038884876, -10383.580163764093, + -12753.687818817472, -14904.097701735987, -16086.753943980342, + -15664.347981947316, -13699.945022421756, -10647.902703431952, + -7213.434255724623, -4021.9529847972103, -2072.2308210283218, + -1291.9484806711387, -1385.570918101691, -1871.656654189137, + -1897.8644116661953, -837.0913539838726, 1484.801230434127, + 4828.065708018569, 8283.880325831655, 11079.441504186065, + 12467.994206538662, 12198.140879324563, 11022.68734658436, + 10384.959532940022, 12239.175514316703, 18612.22769216912, + 31022.782565772468, 50480.395749732925, 74642.28695683816, + 102909.5463509456, 132715.58551900627, 157269.38707129288 + ], + "flow:J45:branch111_seg0": [ + 25.424135729467604, 29.167292547551586, 31.500810461418013, + 32.23180820187897, 31.41094677761769, 29.23967028797201, + 26.072640062494454, 22.420020371015788, 18.689424361947303, + 15.075539778068265, 11.869172941783074, 8.961203559477383, + 6.2695538898372165, 3.734796012727269, 1.1605586599877524, + -1.366788869621048, -3.861282038120151, -6.218500473194199, + -8.206433363514485, -9.840876962599443, -11.034523559389621, + -11.812196617281394, -12.305306250640184, -12.58681784795446, + -12.75523043604529, -12.843896172085076, -12.817310888108421, + -12.61876148890923, -12.190379171047937, -11.517659101922387, + -10.666109858699295, -9.81452172419005, -9.157378761637514, + -8.941605175936926, -9.3422298186326, -10.416543162090424, + -12.047661766976628, -14.02754038404278, -15.991017764440537, + -17.517235605064453, -18.331068036262774, -18.183898139953328, + -17.036869412774987, -15.022775213764893, -12.468420348894195, + -9.597507109571499, -6.802353026553516, -4.339557883740883, + -2.246807440801349, -0.6273020234178617, 0.6526072263003058, + 1.7068048674944378, 2.5773277959925736, 3.3556904610324376, + 3.9784799754846847, 4.363773800245417, 4.439393288951629, 4.1324712539499, + 3.453350836592668, 2.4977939117452608, 1.4198002622656318, + 0.3678201691015121, -0.46037663586515803, -1.0065810089145237, + -1.265700569334318, -1.2970366269504665, -1.2413134115045776, + -1.23188609428038, -1.3585556533638758, -1.6490671763833715, + -2.0383823856872203, -2.4314899229224554, -2.6910918915446636, + -2.714418279837432, -2.473942773627677, -2.014494150453813, + -1.4357226281196753, -0.87594525745712, -0.46872869427398306, + -0.25366318958900985, -0.22554339781092148, -0.2951903738850477, + -0.33049142614262367, -0.2160948987937976, 0.10949656534927771, + 0.6225168052058728, 1.2134008279362263, 1.7465205522659546, + 2.0616430513955137, 2.11128041401246, 1.9590791953483415, + 1.802918597142577, 1.954867471972763, 2.7617921562752756, + 4.523292972192672, 7.417466006310391, 11.268905177811176, + 15.950452123920808, 20.897156686979997, 25.424135729467604 + ], + "pressure:J45:branch111_seg0": [ + 157269.38707129288, 176586.18547123612, 187630.8335281139, + 188263.2672299395, 180257.13213046355, 165381.58002521185, + 145613.8685427671, 122966.1150726269, 101759.4840532165, + 81349.21908560942, 62952.02534519624, 46911.6809265506, 31313.9249971172, + 16627.335352099046, 1741.512002041635, -13188.295074398678, + -27510.135649495518, -40906.87447483153, -51773.576054451994, + -60333.75856977683, -66584.79885928074, -70330.85383427265, + -72669.52061100573, -74026.98695949525, -74791.75299520924, + -75159.44374229437, -74718.65318226907, -73123.24644988382, + -70085.62931436123, -65754.23906348243, -60476.82610868713, + -55694.84003661005, -52607.09039460454, -52338.82001152514, + -56017.37487239432, -63629.23587787723, -74189.53299255866, + -86007.32624517714, -97198.13110664036, -104928.88339764973, + -107822.33193942237, -105044.55876374966, -96368.59806472072, + -82871.65280519884, -67233.80487030101, -50304.142677174365, + -34029.74835787682, -20664.355823228783, -9316.58161524754, + -601.4306098936576, 6072.137267210076, 12064.52496415099, + 16778.238912197445, 20962.650809505598, 24400.339597990376, + 26009.579150145164, 25701.44512112694, 23162.007207848914, + 18537.339700106677, 12402.616989127237, 6087.167773864811, + 265.3111539310049, -4181.391662540519, -6682.674698104482, + -7653.699876540187, -7535.82294708126, -7132.993970706169, + -7276.073342237157, -8356.48038884876, -10383.580163764093, + -12753.687818817472, -14904.097701735987, -16086.753943980342, + -15664.347981947316, -13699.945022421756, -10647.902703431952, + -7213.434255724623, -4021.9529847972103, -2072.2308210283218, + -1291.9484806711387, -1385.570918101691, -1871.656654189137, + -1897.8644116661953, -837.0913539838726, 1484.801230434127, + 4828.065708018569, 8283.880325831655, 11079.441504186065, + 12467.994206538662, 12198.140879324563, 11022.68734658436, + 10384.959532940022, 12239.175514316703, 18612.22769216912, + 31022.782565772468, 50480.395749732925, 74642.28695683816, + 102909.5463509456, 132715.58551900627, 157269.38707129288 + ], + "flow:branch99_seg0:J46": [ + 62.29944660413787, 68.80019696779317, 71.44034572737947, + 70.13160717087642, 65.58079034665806, 58.50065369819317, + 49.898079387072166, 40.96073484651635, 32.80218064026485, + 25.241180671515384, 18.79870787998426, 13.214356104466638, + 7.713779524494677, 2.578049995260936, -2.8326547780891276, + -8.265983764323272, -13.246522162684972, -18.008802600330196, + -21.585888936116014, -24.30667587645346, -26.072819837706877, + -26.946553641933356, -27.416593598468925, -27.59340744527974, + -27.669712640039258, -27.630077773027043, -27.303497397006907, + -26.50121906211089, -25.14127218145193, -23.235071525806738, + -21.096132067200365, -19.240857447547913, -18.209206672277382, + -18.49715451078611, -20.443847120740735, -23.89423788792594, + -28.4185462389467, -33.13274366454249, -37.36100245765596, + -39.83706543167459, -40.296532563104265, -38.31308606028464, + -34.20280425119755, -28.326873143996515, -21.91805191229454, + -15.253937102595861, -9.283212632801002, -4.560266837723885, + -0.6956754084598088, 2.0184367599275523, 4.16857498850006, + 5.99315303838552, 7.529362348321174, 8.933817637074624, 9.950173693674355, + 10.283431534128434, 9.827149695993766, 8.451356584264024, + 6.310549008524862, 3.7052125206297246, 1.1801448665304362, + -1.028841708735465, -2.498335381906057, -3.153585383685082, + -3.240637238237276, -2.9447165089706835, -2.671389367095093, + -2.725934080930048, -3.204680380664878, -4.086038698541872, + -5.055554819772795, -5.874134551789189, -6.18972076131679, + -5.838751838694684, -4.855628981061705, -3.512672646121524, + -2.058792015517442, -0.890186965156139, -0.252839344495235, + -0.12402709154838136, -0.35759194321056914, -0.6605127936180113, + -0.6734571830106865, -0.16517511595801518, 0.8794109150270419, + 2.3010014099184435, 3.6651768049649305, 4.673552501854312, + 4.985997700033062, 4.629340990513671, 3.9741934465414097, + 3.6821331010897786, 4.565805499719983, 7.492763492828158, + 12.82223039854788, 21.034124464910448, 30.847849164382353, + 42.25867226910001, 53.2991390910447, 62.29944660413787 + ], + "pressure:branch99_seg0:J46": [ + 193992.28087881475, 206739.309820831, 210685.83390765623, + 200695.90831965455, 182406.1052125822, 159291.31495440291, + 133836.1274725118, 105466.51337363174, 84450.30435163401, + 64297.255999080226, 45450.29607596072, 31421.61159353261, + 14827.628292039519, -48.82686447902755, -15281.12281027312, + -31847.213847442512, -45246.89066775055, -58382.245910988444, + -67864.48672436399, -73684.7018940389, -78052.40530149775, + -79691.43033664544, -80337.41745347125, -80816.3703373634, + -80806.27721849577, -80489.8828819582, -79045.56253719733, + -75868.8953638361, -70941.3831727898, -64917.61199268744, + -58410.4106110293, -53707.62139822831, -52631.05274827097, + -55423.92995757205, -63371.40287432719, -75475.92206788703, + -90019.95787560519, -102936.28353734547, -114264.00331852569, + -118773.67942288172, -116394.48037924363, -107686.97836860783, + -93028.54566687597, -73659.35476351278, -54555.257917203926, + -36102.818216945794, -18950.159983181267, -7082.450201354769, + 2369.386902295553, 9702.892156824828, 14716.445558093996, + 20194.684093951164, 24378.640148110364, 27616.162540913647, + 30375.280113712917, 30078.790007827974, 27339.829117222875, + 22144.815630004705, 15131.672827511085, 6683.598244656948, + -15.588085173571812, -5430.408435227299, -9063.426955039076, + -9615.382059638478, -9151.440334458335, -8195.108087652205, + -7545.080065574359, -8261.04833093602, -10310.555584497637, + -13336.686987629906, -16123.58409925388, -17940.082150313483, + -18167.205183237147, -16174.194991628587, -12411.95128014413, + -8098.012813318801, -4138.221097551981, -1050.777081619838, + -60.14863278622244, -599.3145606996644, -1507.5837771549527, + -2219.653976251445, -1709.158661941921, 625.0481027740575, + 4304.083134380796, 8948.376590866703, 12486.031062919523, + 14514.58138422077, 14617.978064242436, 12679.610064873517, + 10644.862425388497, 10858.134283103678, 15684.649809243832, + 27435.02642900843, 46516.472286686585, 74471.77769797819, + 105261.02148572322, 138441.24359844468, 171763.5386045525, + 193992.28087881475 + ], + "flow:J46:branch100_seg0": [ + 22.842963849351666, 25.188470211550893, 26.117791507234568, + 25.599350907207555, 23.90364362279526, 21.292990772356347, + 18.1368236579463, 14.865144263945943, 11.89466737255476, + 9.141841412574458, 6.796169829805561, 4.768256883951418, + 2.7596909170287414, 0.8870619981546526, -1.0884601222557033, + -3.075453186752881, -4.886978613449849, -6.6227582706897845, + -7.919116817118953, -8.901996218835015, -9.538563352934014, + -9.849263424870339, -10.016361372888683, -10.0786929549639, + -10.10543320447117, -10.089753518217938, -9.967784433076174, + -9.66994339563659, -9.167805405008098, -8.466520390439365, + -7.683253763565784, -7.008429526604522, -6.640860081673024, + -6.759132170602307, -7.486880312481159, -8.762128480669519, + -10.426349624889564, -12.148199585691538, -13.687918222447953, + -14.57498717602411, -14.721163119189676, -13.972880697218976, + -12.451738866818165, -10.288149247990406, -7.941951471498719, + -5.507772759988068, -3.332007867522391, -1.6193573352311619, + -0.21735565910559843, 0.7644662280666491, 1.5436502010197406, + 2.2072350200651, 2.766054211600723, 3.2766819871018993, + 3.6446932447786655, 3.7593848037028175, 3.5843682629710787, + 3.0727876813406154, 2.2834225463132154, 1.3263515510971948, + 0.4053009855147808, -0.39741289775666006, -0.9278963598061895, + -1.1583790100740432, -1.1843588727862058, -1.0730436697114494, + -0.9733243500342741, -0.9965165106196775, -1.1754783900962316, + -1.5011953098237056, -1.8560373646374333, -2.1531018946213965, + -2.2636124563395748, -2.1290739007102712, -1.7636726148139197, + -1.2698433765873876, -0.7380040956914917, -0.3137615063901652, + -0.08600186535768849, -0.04426637799356132, -0.1327950302450415, + -0.24392066083492164, -0.24580346801599567, -0.054832884032390596, + 0.33189581974234716, 0.8551115643593514, 1.3525205901612638, + 1.7166795825781598, 1.824343470652008, 1.687376159278218, + 1.445321988339688, 1.3429517500245143, 1.6778266229189505, + 2.7679073962752225, 4.7371489489641725, 7.764842158485803, + 11.364820395925213, 15.544962985399431, 19.57593189783207, + 22.842963849351666 + ], + "pressure:J46:branch100_seg0": [ + 193992.28087881475, 206739.309820831, 210685.83390765623, + 200695.90831965455, 182406.1052125822, 159291.31495440291, + 133836.1274725118, 105466.51337363174, 84450.30435163401, + 64297.255999080226, 45450.29607596072, 31421.61159353261, + 14827.628292039519, -48.82686447902755, -15281.12281027312, + -31847.213847442512, -45246.89066775055, -58382.245910988444, + -67864.48672436399, -73684.7018940389, -78052.40530149775, + -79691.43033664544, -80337.41745347125, -80816.3703373634, + -80806.27721849577, -80489.8828819582, -79045.56253719733, + -75868.8953638361, -70941.3831727898, -64917.61199268744, + -58410.4106110293, -53707.62139822831, -52631.05274827097, + -55423.92995757205, -63371.40287432719, -75475.92206788703, + -90019.95787560519, -102936.28353734547, -114264.00331852569, + -118773.67942288172, -116394.48037924363, -107686.97836860783, + -93028.54566687597, -73659.35476351278, -54555.257917203926, + -36102.818216945794, -18950.159983181267, -7082.450201354769, + 2369.386902295553, 9702.892156824828, 14716.445558093996, + 20194.684093951164, 24378.640148110364, 27616.162540913647, + 30375.280113712917, 30078.790007827974, 27339.829117222875, + 22144.815630004705, 15131.672827511085, 6683.598244656948, + -15.588085173571812, -5430.408435227299, -9063.426955039076, + -9615.382059638478, -9151.440334458335, -8195.108087652205, + -7545.080065574359, -8261.04833093602, -10310.555584497637, + -13336.686987629906, -16123.58409925388, -17940.082150313483, + -18167.205183237147, -16174.194991628587, -12411.95128014413, + -8098.012813318801, -4138.221097551981, -1050.777081619838, + -60.14863278622244, -599.3145606996644, -1507.5837771549527, + -2219.653976251445, -1709.158661941921, 625.0481027740575, + 4304.083134380796, 8948.376590866703, 12486.031062919523, + 14514.58138422077, 14617.978064242436, 12679.610064873517, + 10644.862425388497, 10858.134283103678, 15684.649809243832, + 27435.02642900843, 46516.472286686585, 74471.77769797819, + 105261.02148572322, 138441.24359844468, 171763.5386045525, + 193992.28087881475 + ], + "flow:J46:branch143_seg0": [ + 39.45648275478648, 43.611726756242994, 45.32255422014556, + 44.532256263668856, 41.67714672386286, 37.20766292583782, + 31.761255729125335, 26.0955905825705, 20.90751326771004, + 16.099339258941274, 12.002538050177076, 8.44609922051614, + 4.954088607465823, 1.6909879971034774, -1.744194655834233, + -5.190530577571325, -8.359543549234871, -11.38604432963985, + -13.666772118997008, -15.404679657617796, -16.53425648477194, + -17.097290217061026, -17.400232225579877, -17.514714490317417, + -17.564279435567688, -17.540324254809587, -17.33571296393043, + -16.831275666472745, -15.973466776444488, -14.768551135367373, + -13.412878303634244, -12.232427920943401, -11.568346590604172, + -11.73802234018468, -12.95696680825928, -15.132109407255967, + -17.992196614056652, -20.984544078851183, -23.67308423520841, + -25.26207825565001, -25.57536944391443, -24.340205363065706, + -21.751065384379434, -18.038723896006005, -13.976100440795818, + -9.746164342607791, -5.951204765278611, -2.9409095024927265, + -0.47831974935421673, 1.2539705318609158, 2.6249247874803117, + 3.785918018320421, 4.76330813672046, 5.657135649972711, 6.305480448895715, + 6.524046730425616, 6.242781433022743, 5.378568902923413, + 4.027126462211665, 2.378860969532429, 0.7748438810157328, + -0.631428810978878, -1.570439022099981, -1.9952063736111665, + -2.0562783654512584, -1.871672839259206, -1.6980650170607365, + -1.7294175703103383, -2.0292019905686565, -2.584843388718165, + -3.199517455135434, -3.7210326571677297, -3.926108304977256, + -3.709677937984416, -3.091956366247799, -2.242829269534176, + -1.3207879198259624, -0.5764254587659816, -0.16683747913752467, + -0.07976071355481885, -0.22479691296551238, -0.4165921327830992, + -0.42765371499469207, -0.11034223192562843, 0.5475150952846798, + 1.4458898455591358, 2.312656214803661, 2.956872919276163, + 3.161654229381077, 2.9419648312354476, 2.528871458201738, + 2.3391813510652604, 2.8879788768009798, 4.724856096553002, + 8.085081449583594, 13.269282306424566, 19.483028768457185, + 26.713709283700762, 33.72320719321259, 39.45648275478648 + ], + "pressure:J46:branch143_seg0": [ + 193992.28087881475, 206739.309820831, 210685.83390765623, + 200695.90831965455, 182406.1052125822, 159291.31495440291, + 133836.1274725118, 105466.51337363174, 84450.30435163401, + 64297.255999080226, 45450.29607596072, 31421.61159353261, + 14827.628292039519, -48.82686447902755, -15281.12281027312, + -31847.213847442512, -45246.89066775055, -58382.245910988444, + -67864.48672436399, -73684.7018940389, -78052.40530149775, + -79691.43033664544, -80337.41745347125, -80816.3703373634, + -80806.27721849577, -80489.8828819582, -79045.56253719733, + -75868.8953638361, -70941.3831727898, -64917.61199268744, + -58410.4106110293, -53707.62139822831, -52631.05274827097, + -55423.92995757205, -63371.40287432719, -75475.92206788703, + -90019.95787560519, -102936.28353734547, -114264.00331852569, + -118773.67942288172, -116394.48037924363, -107686.97836860783, + -93028.54566687597, -73659.35476351278, -54555.257917203926, + -36102.818216945794, -18950.159983181267, -7082.450201354769, + 2369.386902295553, 9702.892156824828, 14716.445558093996, + 20194.684093951164, 24378.640148110364, 27616.162540913647, + 30375.280113712917, 30078.790007827974, 27339.829117222875, + 22144.815630004705, 15131.672827511085, 6683.598244656948, + -15.588085173571812, -5430.408435227299, -9063.426955039076, + -9615.382059638478, -9151.440334458335, -8195.108087652205, + -7545.080065574359, -8261.04833093602, -10310.555584497637, + -13336.686987629906, -16123.58409925388, -17940.082150313483, + -18167.205183237147, -16174.194991628587, -12411.95128014413, + -8098.012813318801, -4138.221097551981, -1050.777081619838, + -60.14863278622244, -599.3145606996644, -1507.5837771549527, + -2219.653976251445, -1709.158661941921, 625.0481027740575, + 4304.083134380796, 8948.376590866703, 12486.031062919523, + 14514.58138422077, 14617.978064242436, 12679.610064873517, + 10644.862425388497, 10858.134283103678, 15684.649809243832, + 27435.02642900843, 46516.472286686585, 74471.77769797819, + 105261.02148572322, 138441.24359844468, 171763.5386045525, + 193992.28087881475 + ], + "flow:branch107_seg0:J47": [ + 78.16273814898, 87.70770024682903, 92.50187989689888, 92.3438076771414, + 87.74776427221632, 79.58735484303969, 69.07660208433812, + 57.80151671218061, 47.032048455120204, 36.94008267407176, + 28.31621859043573, 20.64265800899751, 13.418487148643742, + 6.5752496561772045, -0.5609334012378272, -7.636279754040282, + -14.513988007725953, -20.931701579494636, -26.097139748116696, + -30.15891956761125, -32.90476518380297, -34.49256837635132, + -35.402338550006405, -35.84712122821009, -36.10442476395329, + -36.201489355726906, -35.96247624720874, -35.17186874638888, + -33.66246226146646, -31.43564659938983, -28.774592586272295, + -26.31816743053234, -24.68623914302137, -24.61371306379207, + -26.545144253565663, -30.488888146511528, -35.93386942745347, + -42.043804092913504, -47.70350225378226, -51.55841931429096, + -52.95497712037476, -51.295145529120404, -46.7037036448362, + -39.76083740092424, -31.649654248280758, -23.014618034217555, + -15.078063473942168, -8.467588713241065, -3.0737579752465867, + 0.8665120438350816, 3.946389083059927, 6.514797593095139, + 8.667011844044975, 10.66144478949076, 12.189620387181096, + 12.94776038277395, 12.732529123082625, 11.344859878310864, + 8.904409700915636, 5.766973194876571, 2.5082022937282793, + -0.47067854236253087, -2.593094548702956, -3.7558179864573664, + -4.084853826841295, -3.8354605844492125, -3.4955655549435836, + -3.4683431101049886, -3.9642367041705437, -4.986328447130247, + -6.237105385341461, -7.382814222564166, -7.9777291462912725, + -7.761597040380955, -6.727233905425365, -5.113317785120285, + -3.2731658725958863, -1.6666188774540363, -0.671727484762846, + -0.31270524840245423, -0.4920825082632681, -0.8544257047811409, + -0.9595667653947202, -0.4775402940261273, 0.6990995389165308, + 2.4123224803291783, 4.213860530738907, 5.677860024585689, + 6.335002219995419, 6.131022690461529, 5.406508618267435, + 4.901135273066407, 5.650210804678611, 8.720114424863544, + 14.88559226800495, 24.55202669718098, 36.80526125673996, + 51.23807475223113, 65.7107234812494, 78.16273814898 + ], + "pressure:branch107_seg0:J47": [ + 184231.7707451852, 199219.23836333532, 204600.5986371913, + 197180.84353235576, 181489.0054873513, 160405.72295223115, + 136109.8168230941, 109677.46243739463, 88542.55390835494, + 68335.87658094874, 50263.44631466688, 35703.03594112028, + 19837.261610409976, 5166.756146249764, -10092.234696288302, + -25962.51791222199, -40017.74716017658, -53255.04268079648, + -62957.75592580371, -69686.98337591092, -74447.17585889656, + -76498.51530078136, -77621.94345986837, -78284.03872945374, + -78542.81587875297, -78530.74507523261, -77453.76328935171, + -74835.65911892564, -70504.42593197216, -64973.531174571304, + -58758.290357641046, -54062.31399451145, -52311.685739308516, + -54274.95954334545, -61149.00172742624, -72181.57889282538, + -85686.74039180327, -98741.10503927911, -110043.28722703097, + -115499.92640614074, -114556.69857412286, -107254.35971812767, + -93767.41999535478, -75763.86767028467, -57463.11418617399, + -39155.16504352031, -22402.3981153436, -10442.852346163514, + -563.181104090076, 6714.466729535171, 11950.516456396464, + 17470.634648583797, 21582.471284513806, 25222.6043495611, + 28196.637701042433, 28491.83998378246, 26528.61930707679, + 22111.309515865418, 15698.661474277622, 7981.3897673469355, + 1279.4334858912805, -4296.032833241006, -8004.048339878475, + -9035.321810384099, -8813.487535330667, -7889.707001369718, + -7203.068176026561, -7719.302444354844, -9542.419501523205, + -12378.985634183355, -15146.737960299903, -17163.28205691611, + -17677.28390744264, -16055.063302789045, -12746.805261802558, + -8688.484278508824, -4807.586394799622, -1654.433672075027, + -479.8561072633316, -677.8620731824527, -1467.5442830191462, + -2243.7351959846314, -1947.0686739985188, -0.13694676585857413, + 3371.497090897604, 7690.32319097887, 11354.535699633418, + 13698.046524262232, 14127.478893357069, 12570.399202690778, + 10632.744084951293, 10417.004225872799, 14300.11838480992, + 24501.18393652547, 42001.80728994441, 67824.84785546106, + 97037.23936368473, 129273.02016644341, 161803.40127572409, + 184231.7707451852 + ], + "flow:J47:branch108_seg0": [ + 23.20805558288949, 25.77597375868343, 26.902404288416694, + 26.564461327357172, 24.986426539432802, 22.438577494965678, + 19.27891740419883, 15.978675223441446, 12.913231546154833, + 10.049780441339468, 7.639328648293659, 5.496815456446234, + 3.4356094710178517, 1.4863793583309801, -0.5795046388358511, + -2.6216045861270088, -4.5769370516319885, -6.407419701763522, + -7.823413482228399, -8.919924154977945, -9.642293900736563, + -10.029321823779101, -10.249969317996152, -10.35208851328299, + -10.41185610673451, -10.429528168155498, -10.340158637896568, + -10.078488624710332, -9.601693962052892, -8.919214054162776, + -8.127187489463648, -7.431323779719258, -7.01247193732823, + -7.0800699358358505, -7.753555462303418, -9.006233911406392, + -10.660692198735173, -12.450800088263655, -14.05614777614831, + -15.056179238890985, -15.308752121226934, -14.654064955605229, + -13.163672018603192, -11.022140770691536, -8.624679630365902, + -6.119460056709708, -3.8635987891839183, -2.0475431705631357, + -0.5679262299920335, 0.4865208764442028, 1.314553914923143, + 2.0269270705890032, 2.6215018222181206, 3.1799419286012083, + 3.595399211416383, 3.7663166140452344, 3.6462053745144654, + 3.180164059149731, 2.416629616661266, 1.4723234268495478, + 0.5297004878294055, -0.30965949110485563, -0.8727560395573566, + -1.147289748030179, -1.194805045682486, -1.0906727101378868, + -0.9864257380600132, -0.9968248454419272, -1.1692343055878602, + -1.4935969964365263, -1.8653554205562284, -2.18680810339312, + -2.327805009925029, -2.2185473752949982, -1.873018167160726, + -1.3763109861487808, -0.8352560276399198, -0.3850870750299872, + -0.13408911056172815, -0.06933212682431153, -0.15015422601822911, + -0.26505425586226866, -0.28069761708564905, -0.10778279013688657, + 0.2705511809077187, 0.7944479932773357, 1.3164155737849796, + 1.7168793738783434, 1.8601056452607743, 1.7505176383610002, + 1.5132329288682538, 1.3834732813777473, 1.6731255406059846, + 2.693482379502227, 4.641100710817108, 7.630985177719641, + 11.300775671703127, 15.559936284277997, 19.75072228521977, + 23.20805558288949 + ], + "pressure:J47:branch108_seg0": [ + 184231.7707451852, 199219.23836333532, 204600.5986371913, + 197180.84353235576, 181489.0054873513, 160405.72295223115, + 136109.8168230941, 109677.46243739463, 88542.55390835494, + 68335.87658094874, 50263.44631466688, 35703.03594112028, + 19837.261610409976, 5166.756146249764, -10092.234696288302, + -25962.51791222199, -40017.74716017658, -53255.04268079648, + -62957.75592580371, -69686.98337591092, -74447.17585889656, + -76498.51530078136, -77621.94345986837, -78284.03872945374, + -78542.81587875297, -78530.74507523261, -77453.76328935171, + -74835.65911892564, -70504.42593197216, -64973.531174571304, + -58758.290357641046, -54062.31399451145, -52311.685739308516, + -54274.95954334545, -61149.00172742624, -72181.57889282538, + -85686.74039180327, -98741.10503927911, -110043.28722703097, + -115499.92640614074, -114556.69857412286, -107254.35971812767, + -93767.41999535478, -75763.86767028467, -57463.11418617399, + -39155.16504352031, -22402.3981153436, -10442.852346163514, + -563.181104090076, 6714.466729535171, 11950.516456396464, + 17470.634648583797, 21582.471284513806, 25222.6043495611, + 28196.637701042433, 28491.83998378246, 26528.61930707679, + 22111.309515865418, 15698.661474277622, 7981.3897673469355, + 1279.4334858912805, -4296.032833241006, -8004.048339878475, + -9035.321810384099, -8813.487535330667, -7889.707001369718, + -7203.068176026561, -7719.302444354844, -9542.419501523205, + -12378.985634183355, -15146.737960299903, -17163.28205691611, + -17677.28390744264, -16055.063302789045, -12746.805261802558, + -8688.484278508824, -4807.586394799622, -1654.433672075027, + -479.8561072633316, -677.8620731824527, -1467.5442830191462, + -2243.7351959846314, -1947.0686739985188, -0.13694676585857413, + 3371.497090897604, 7690.32319097887, 11354.535699633418, + 13698.046524262232, 14127.478893357069, 12570.399202690778, + 10632.744084951293, 10417.004225872799, 14300.11838480992, + 24501.18393652547, 42001.80728994441, 67824.84785546106, + 97037.23936368473, 129273.02016644341, 161803.40127572409, + 184231.7707451852 + ], + "flow:J47:branch142_seg0": [ + 54.954682566091364, 61.93172648814516, 65.59947560848174, + 65.7793463497844, 62.761337732783296, 57.14877734807557, + 49.79768468014229, 41.82284148873941, 34.118816908964085, + 26.890302232731674, 20.67688994214093, 15.145842552552605, + 9.982877677626776, 5.08887029784579, 0.018571237597182898, + -5.014675167913698, -9.937050956094676, -14.524281877731397, + -18.273726265887127, -21.238995412633884, -23.26247128306704, + -24.463246552574386, -25.152369232009473, -25.495032714924744, + -25.6925686572171, -25.771961187571332, -25.622317609310254, + -25.093380121677974, -24.06076829941338, -22.51643254522984, + -20.64740509680988, -18.886843650814853, -17.673767205694205, + -17.53364312795573, -18.791588791261752, -21.482654235106057, + -25.27317722871845, -29.59300400465008, -33.64735447763452, + -36.50224007540014, -37.64622499914775, -36.641080573515865, + -33.54003162623298, -28.73869663023263, -23.024974617914896, + -16.895157977507907, -11.214464684758243, -6.420045542677932, + -2.505831745254569, 0.37999116739086564, 2.6318351681367913, + 4.487870522506133, 6.045510021826844, 7.481502860889554, 8.59422117576476, + 9.181443768728785, 9.08632374856808, 8.16469581916101, 6.48778008425426, + 4.2946497680269236, 1.9785018058990174, -0.16101905125756596, + -1.7203385091456966, -2.6085282384272612, -2.890048781158805, + -2.744787874311414, -2.509139816883702, -2.471518264662921, + -2.795002398582821, -3.492731450693793, -4.371749964785118, + -5.196006119171088, -5.64992413636627, -5.543049665085938, + -4.8542157382646485, -3.737006798971477, -2.4379098449559704, + -1.2815318024240812, -0.5376383742011187, -0.24337312157812552, + -0.34192828224505545, -0.5893714489188794, -0.6788691483090711, + -0.3697575038892471, 0.42854835800882235, 1.6178744870518602, + 2.897444956953939, 3.96098065070733, 4.474896574734688, 4.380505052100566, + 3.893275689399272, 3.5176619916886867, 3.9770852640726932, + 6.026632045361284, 10.244491557187839, 16.921041519461323, + 25.504485585036548, 35.678138467952856, 45.96000119603005, + 54.954682566091364 + ], + "pressure:J47:branch142_seg0": [ + 184231.7707451852, 199219.23836333532, 204600.5986371913, + 197180.84353235576, 181489.0054873513, 160405.72295223115, + 136109.8168230941, 109677.46243739463, 88542.55390835494, + 68335.87658094874, 50263.44631466688, 35703.03594112028, + 19837.261610409976, 5166.756146249764, -10092.234696288302, + -25962.51791222199, -40017.74716017658, -53255.04268079648, + -62957.75592580371, -69686.98337591092, -74447.17585889656, + -76498.51530078136, -77621.94345986837, -78284.03872945374, + -78542.81587875297, -78530.74507523261, -77453.76328935171, + -74835.65911892564, -70504.42593197216, -64973.531174571304, + -58758.290357641046, -54062.31399451145, -52311.685739308516, + -54274.95954334545, -61149.00172742624, -72181.57889282538, + -85686.74039180327, -98741.10503927911, -110043.28722703097, + -115499.92640614074, -114556.69857412286, -107254.35971812767, + -93767.41999535478, -75763.86767028467, -57463.11418617399, + -39155.16504352031, -22402.3981153436, -10442.852346163514, + -563.181104090076, 6714.466729535171, 11950.516456396464, + 17470.634648583797, 21582.471284513806, 25222.6043495611, + 28196.637701042433, 28491.83998378246, 26528.61930707679, + 22111.309515865418, 15698.661474277622, 7981.3897673469355, + 1279.4334858912805, -4296.032833241006, -8004.048339878475, + -9035.321810384099, -8813.487535330667, -7889.707001369718, + -7203.068176026561, -7719.302444354844, -9542.419501523205, + -12378.985634183355, -15146.737960299903, -17163.28205691611, + -17677.28390744264, -16055.063302789045, -12746.805261802558, + -8688.484278508824, -4807.586394799622, -1654.433672075027, + -479.8561072633316, -677.8620731824527, -1467.5442830191462, + -2243.7351959846314, -1947.0686739985188, -0.13694676585857413, + 3371.497090897604, 7690.32319097887, 11354.535699633418, + 13698.046524262232, 14127.478893357069, 12570.399202690778, + 10632.744084951293, 10417.004225872799, 14300.11838480992, + 24501.18393652547, 42001.80728994441, 67824.84785546106, + 97037.23936368473, 129273.02016644341, 161803.40127572409, + 184231.7707451852 + ], + "flow:branch112_seg0:J48": [ + 94.35967297107445, 106.90443024562, 113.99193272022154, + 115.04787673299937, 110.57782612348656, 101.47322892497652, + 89.11285729566517, 75.34801002447723, 61.852737721236586, + 48.92978259815251, 37.658874193645715, 27.596167716190024, + 18.171090786182514, 9.360302129433325, 0.3328339617063083, + -8.545417005984286, -17.16314080163548, -25.274343561404965, + -31.90967952586921, -37.21776599273367, -40.95190483809238, + -43.20634037993171, -44.539287219669625, -45.207219739825874, + -45.54501705442159, -45.64132576525749, -45.319285477345545, + -44.350933711822094, -42.53915057432173, -39.86926028661865, + -36.627699101285856, -33.546587405742805, -31.353225123818017, + -30.922729143477255, -32.85495519331107, -37.243061490915075, + -43.553113646934854, -50.87207455082842, -57.907377678811436, + -63.0027976232906, -65.3008858304285, -63.99006551523653, + -59.05977729534994, -51.09313473248926, -41.455533855957505, + -30.90379905694537, -20.883755526621353, -12.32121185606803, + -5.157433666737344, 0.24433515280356766, 4.4598476861360075, + 7.9507711806356225, 10.80112188104981, 13.357785138300246, + 15.339191200519425, 16.383876429305968, 16.27405114167227, + 14.757443338243483, 11.93329233402634, 8.185379986086287, + 4.179678956552442, 0.39151532726609317, -2.4598705003686585, + -4.189923103302565, -4.898437723057276, -4.8310019960987205, + -4.53802380277675, -4.512871616651297, -5.040516298638642, + -6.176153072887439, -7.616344522809457, -8.994605787698966, + -9.797959954289821, -9.67607832762978, -8.582093298516332, + -6.748230121898212, -4.566569041828853, -2.5574944737795, + -1.2075661624506737, -0.5897374807743305, -0.6293037310429854, + -0.9582071686348438, -1.0675107411069293, -0.5494931485382948, + 0.7635997740846657, 2.7385755106168777, 4.886982695389973, + 6.724488434102554, 7.676574581399735, 7.624842931573868, + 6.911364473791315, 6.349620835940219, 7.134978275703992, + 10.547143657755171, 17.583600291664773, 28.84422438787033, + 43.36618286202937, 60.71609780545153, 78.60254575195427, 94.35967297107445 + ], + "pressure:branch112_seg0:J48": [ + 185266.59688404872, 200094.51119473894, 206126.3246582491, + 199032.6606013217, 183407.15137147676, 162390.10410605662, + 138184.39662988848, 111133.77908044292, 89583.43872102702, + 69011.52956323427, 50198.81903492293, 35308.937798714964, + 18981.931925291778, 4012.016318776744, -11268.059544244892, + -27280.573731114157, -41221.83705165797, -54536.58446079384, + -64395.37920457665, -70989.70458204344, -75874.59820195612, + -78005.8550393875, -79048.94901641816, -79670.27927792439, + -79775.49434055513, -79598.31905953746, -78370.19162313615, + -75591.5031004355, -71121.54409145936, -65524.839121799865, + -59233.9593825408, -54435.77822916413, -52675.81849331538, + -54525.39803692247, -61235.10120966605, -72154.67468217434, + -85607.64941251898, -98536.19494463934, -109981.10411598504, + -115629.83658272326, -114843.40317961306, -107850.1139860416, + -94646.5764980199, -76680.95311677667, -58312.164651052204, + -40040.46117102926, -22800.45253730547, -10399.822141852539, + -279.76426075399826, 7487.117547448229, 12876.069936842123, + 18570.42959123045, 22818.18201889373, 26290.904042748076, + 29234.341005569215, 29455.33348332234, 27370.73320000636, + 22886.53420139913, 16440.275492842888, 8578.512331628264, + 1799.7823178834612, -3873.575411628998, -7801.5113750583705, + -8993.285957976594, -8946.926960997695, -8191.4960939324, + -7562.073444538235, -8072.884510749041, -9846.866207828365, + -12610.909047437952, -15311.832822326154, -17246.815656869156, + -17785.327652361728, -16212.430987998863, -12930.679959840352, + -8895.178597742337, -5049.733233085522, -1832.913963348459, + -550.501692946089, -700.9209375228112, -1383.8769554928756, + -2065.988805764072, -1741.6183062895398, 197.5856674258633, + 3508.9029488939846, 7793.731044237242, 11397.163618981078, + 13713.795396922182, 14210.235385507887, 12735.591683939438, + 10895.762760606864, 10779.437434076564, 14710.57214353419, + 24891.045870617156, 42275.95042247363, 68071.97495017771, + 97344.26992321886, 129252.58105484529, 162321.07970877804, + 185266.59688404872 + ], + "flow:J48:branch113_seg0": [ + 68.17703996694291, 77.76653696437721, 83.47603043091466, + 84.83619146585663, 82.07382257809074, 75.79351166254621, 66.9829350026974, + 56.98882005377887, 46.99731014889316, 37.39557069749232, + 28.942149119127265, 21.371381911555503, 14.352300872958812, + 7.7842673234026165, 1.1178955018256285, -5.441092369749529, + -11.851601411877873, -17.88241135309491, -22.90890604089098, + -26.972602246061978, -29.869755597385662, -31.677766589367813, + -32.75974768595905, -33.317013673247374, -33.60577931068588, + -33.70330907934328, -33.50556837762366, -32.853186713700204, + -31.59535078175771, -29.703748283172775, -27.36699818046459, + -25.08190458569681, -23.376832641188113, -22.898597321252645, + -24.10457963689149, -27.110270312092663, -31.58251738025689, + -36.89745094417434, -42.106600508184066, -46.046154752646906, + -48.01299054758032, -47.37858282415236, -44.07802558046066, + -38.49463484111054, -31.545575888956378, -23.829290950000942, + -16.406423170935618, -9.945828669171217, -4.513882790907074, + -0.36938906729388976, 2.8733981706869165, 5.5234304369762395, + 7.690573288660521, 9.621325864617795, 11.135350768545386, + 11.997685638787257, 12.029052965628376, 11.040113258578709, + 9.079016145525461, 6.405427376978639, 3.4716296950333914, + 0.6539207348065186, -1.5311818623243185, -2.9203192612826467, + -3.54074946760946, -3.564021470281892, -3.3753577550253433, + -3.3362607890598417, -3.6770509011928234, -4.459902150292115, + -5.493847250484433, -6.518346488386095, -7.159991317968301, + -7.154392831339706, -6.439152811088187, -5.155856656945259, + -3.5782468200319566, -2.0843814761323243, -1.029474836881717, + -0.5014107590313442, -0.469899593543565, -0.6830806279200282, + -0.7799585975825015, -0.45386595941484326, 0.4431969270999337, + 1.837873198062129, 3.4078693868409795, 4.793086325042068, + 5.5735701898531875, 5.630572048222589, 5.1668774842673395, + 4.739278737613953, 5.197812994270235, 7.476328563121567, + 12.343653374247646, 20.260704432996587, 30.670186438267166, + 43.24227535410609, 56.35520608772446, 68.17703996694291 + ], + "pressure:J48:branch113_seg0": [ + 185266.59688404872, 200094.51119473894, 206126.3246582491, + 199032.6606013217, 183407.15137147676, 162390.10410605662, + 138184.39662988848, 111133.77908044292, 89583.43872102702, + 69011.52956323427, 50198.81903492293, 35308.937798714964, + 18981.931925291778, 4012.016318776744, -11268.059544244892, + -27280.573731114157, -41221.83705165797, -54536.58446079384, + -64395.37920457665, -70989.70458204344, -75874.59820195612, + -78005.8550393875, -79048.94901641816, -79670.27927792439, + -79775.49434055513, -79598.31905953746, -78370.19162313615, + -75591.5031004355, -71121.54409145936, -65524.839121799865, + -59233.9593825408, -54435.77822916413, -52675.81849331538, + -54525.39803692247, -61235.10120966605, -72154.67468217434, + -85607.64941251898, -98536.19494463934, -109981.10411598504, + -115629.83658272326, -114843.40317961306, -107850.1139860416, + -94646.5764980199, -76680.95311677667, -58312.164651052204, + -40040.46117102926, -22800.45253730547, -10399.822141852539, + -279.76426075399826, 7487.117547448229, 12876.069936842123, + 18570.42959123045, 22818.18201889373, 26290.904042748076, + 29234.341005569215, 29455.33348332234, 27370.73320000636, + 22886.53420139913, 16440.275492842888, 8578.512331628264, + 1799.7823178834612, -3873.575411628998, -7801.5113750583705, + -8993.285957976594, -8946.926960997695, -8191.4960939324, + -7562.073444538235, -8072.884510749041, -9846.866207828365, + -12610.909047437952, -15311.832822326154, -17246.815656869156, + -17785.327652361728, -16212.430987998863, -12930.679959840352, + -8895.178597742337, -5049.733233085522, -1832.913963348459, + -550.501692946089, -700.9209375228112, -1383.8769554928756, + -2065.988805764072, -1741.6183062895398, 197.5856674258633, + 3508.9029488939846, 7793.731044237242, 11397.163618981078, + 13713.795396922182, 14210.235385507887, 12735.591683939438, + 10895.762760606864, 10779.437434076564, 14710.57214353419, + 24891.045870617156, 42275.95042247363, 68071.97495017771, + 97344.26992321886, 129252.58105484529, 162321.07970877804, + 185266.59688404872 + ], + "flow:J48:branch133_seg0": [ + 26.182633004131418, 29.137893281241958, 30.515902289307594, + 30.211685267142215, 28.504003545394017, 25.679717262431737, + 22.12992229296842, 18.35918997069831, 14.85542757234616, + 11.534211900658226, 8.71672507451751, 6.224785804635216, 3.81878991322455, + 1.5760348060260405, -0.785061540121429, -3.104324636236426, + -5.311539389760986, -7.391932208309199, -9.00077348497937, + -10.245163746673493, -11.082149240705705, -11.528573790566478, + -11.779539533712589, -11.890206066577802, -11.939237743734646, + -11.938016685913702, -11.813717099720687, -11.497746998121775, + -10.943799792564755, -10.165512003445325, -9.260700920823009, + -8.464682820042922, -7.976392482629966, -8.024131822225305, + -8.750375556420723, -10.132791178823373, -11.97059626667821, + -13.974623606654399, -15.800777170627498, -16.95664287064406, + -17.287895282848485, -16.61148269108382, -14.981751714889196, + -12.598499891378731, -9.90995796700102, -7.074508106944442, + -4.477332355685765, -2.3753831868968143, -0.6435508758302372, + 0.613724220097444, 1.5864495154490732, 2.4273407436593963, + 3.1105485923892813, 3.7364592736824735, 4.203840431974044, + 4.386190790518685, 4.244998176044031, 3.7173300796650137, + 2.854276188500834, 1.7799526091078268, 0.7080492615190946, + -0.2624054075403435, -0.9286886380442876, -1.2696038420197666, + -1.357688255447735, -1.266980525816579, -1.1626660477515234, + -1.1766108275913285, -1.363465397445708, -1.7162509225954128, + -2.1224972723252047, -2.47625929931276, -2.637968636321451, + -2.521685496290089, -2.142940487428119, -1.5923734649529273, + -0.988322221796851, -0.4731129976471543, -0.1780913255689383, + -0.08832672174293592, -0.1594041374994076, -0.2751265407148021, + -0.287552143524431, -0.09562718912347723, 0.32040284698474397, + 0.9007023125547504, 1.4791133085490618, 1.9314021090605122, + 2.103004391546648, 1.9942708833513747, 1.7444869895240376, + 1.6103420983261987, 1.9371652814336382, 3.0708150946334296, + 5.239946917417216, 8.583519954873807, 12.695996423762276, + 17.473822451345427, 22.247339664230278, 26.182633004131418 + ], + "pressure:J48:branch133_seg0": [ + 185266.59688404872, 200094.51119473894, 206126.3246582491, + 199032.6606013217, 183407.15137147676, 162390.10410605662, + 138184.39662988848, 111133.77908044292, 89583.43872102702, + 69011.52956323427, 50198.81903492293, 35308.937798714964, + 18981.931925291778, 4012.016318776744, -11268.059544244892, + -27280.573731114157, -41221.83705165797, -54536.58446079384, + -64395.37920457665, -70989.70458204344, -75874.59820195612, + -78005.8550393875, -79048.94901641816, -79670.27927792439, + -79775.49434055513, -79598.31905953746, -78370.19162313615, + -75591.5031004355, -71121.54409145936, -65524.839121799865, + -59233.9593825408, -54435.77822916413, -52675.81849331538, + -54525.39803692247, -61235.10120966605, -72154.67468217434, + -85607.64941251898, -98536.19494463934, -109981.10411598504, + -115629.83658272326, -114843.40317961306, -107850.1139860416, + -94646.5764980199, -76680.95311677667, -58312.164651052204, + -40040.46117102926, -22800.45253730547, -10399.822141852539, + -279.76426075399826, 7487.117547448229, 12876.069936842123, + 18570.42959123045, 22818.18201889373, 26290.904042748076, + 29234.341005569215, 29455.33348332234, 27370.73320000636, + 22886.53420139913, 16440.275492842888, 8578.512331628264, + 1799.7823178834612, -3873.575411628998, -7801.5113750583705, + -8993.285957976594, -8946.926960997695, -8191.4960939324, + -7562.073444538235, -8072.884510749041, -9846.866207828365, + -12610.909047437952, -15311.832822326154, -17246.815656869156, + -17785.327652361728, -16212.430987998863, -12930.679959840352, + -8895.178597742337, -5049.733233085522, -1832.913963348459, + -550.501692946089, -700.9209375228112, -1383.8769554928756, + -2065.988805764072, -1741.6183062895398, 197.5856674258633, + 3508.9029488939846, 7793.731044237242, 11397.163618981078, + 13713.795396922182, 14210.235385507887, 12735.591683939438, + 10895.762760606864, 10779.437434076564, 14710.57214353419, + 24891.045870617156, 42275.95042247363, 68071.97495017771, + 97344.26992321886, 129252.58105484529, 162321.07970877804, + 185266.59688404872 + ], + "flow:branch113_seg0:J49": [ + 68.13054464572446, 77.74854911956442, 83.47860983547896, + 84.85576864628729, 82.11666842682924, 75.85370619683981, + 67.03959887837554, 57.068357755771316, 47.06029621561617, + 37.433423079564434, 28.996592556477207, 21.408709006692103, + 14.39271747243454, 7.825348950619133, 1.1416799901855175, + -5.398831264829007, -11.820959656296994, -17.87100697645224, + -22.892965544427923, -26.9626173231074, -29.86832781054254, + -31.674080097897193, -32.76041634893396, -33.31774897071605, + -33.60478893995672, -33.70525519658029, -33.50929695201389, + -32.861010028893475, -31.607061841945367, -29.71922764525996, + -27.38007577718674, -25.09392508357812, -23.377144058301877, + -22.887926211961314, -24.082600551080375, -27.08390092734038, + -31.53993088020949, -36.869692821513894, -42.0863761172279, + -46.03826440053048, -48.02483638383807, -47.40707280770172, + -44.10767291074239, -38.52413028481891, -31.58079184855717, + -23.86367639192524, -16.427405961920655, -9.969073946877277, + -4.5261280537934185, -0.37859963199716923, 2.8576963717616053, + 5.515342372113995, 7.679792581627231, 9.613614109100178, + 11.13033444875718, 11.9975539926539, 12.036751933772173, + 11.05529896786424, 9.095116194438182, 6.42953153423974, + 3.4899114887880907, 0.6603228557779464, -1.5227424108644427, + -2.9182311193755948, -3.543923581225485, -3.565891202103054, + -3.375090636678362, -3.3334893937480614, -3.6727742594915997, + -4.455338812554854, -5.4897912211926245, -6.51553576743251, + -7.162459628756897, -7.1586029796064965, -6.447034862006095, + -5.163858240230864, -3.587294213285708, -2.0889050676032674, + -1.032142122371647, -0.5002583045680192, -0.4673342925704857, + -0.682555872392811, -0.7824579050365247, -0.4611419232035789, + 0.43431908692142973, 1.8252285907382642, 3.3991073459944494, + 4.792587233316054, 5.574989906637022, 5.633918081092352, + 5.170087654349833, 4.735697417462055, 5.183963984161662, + 7.445009199647014, 12.304221954185905, 20.21405027043002, + 30.619493978815346, 43.16781778899145, 56.31290681945275, + 68.13054464572446 + ], + "pressure:branch113_seg0:J49": [ + 173583.99437981064, 190952.5879669496, 199640.392853051, + 196305.66886322873, 184198.58621777955, 165824.1441267115, + 143282.79764754153, 117930.6053354034, 95803.49453167662, + 74827.83448638908, 55960.281454110984, 40143.529237301605, + 24064.548421354844, 9051.166644325991, -6207.384451066891, + -21636.654467568576, -35949.245347449425, -49471.82021573697, + -59772.488929450075, -67317.64315273477, -72845.16484716996, + -75634.90201298738, -77202.23501427917, -78034.53543809713, + -78315.08390784591, -78303.71372760503, -77361.52043271535, + -75077.50612104584, -71214.49724480778, -66136.01684453542, + -60193.71434616756, -55258.211436605845, -52694.944488314424, + -53389.76937224618, -58586.58995587795, -67976.60526500295, + -80112.86850030589, -92843.44084511147, -104415.47632518939, + -111343.09477330491, -112516.2173538237, -107605.27733643974, + -96431.34582771464, -80311.9667483784, -63021.71189205346, + -45079.001504343505, -27875.432200379328, -14804.004989163164, + -3853.2802768177594, 4468.256345946104, 10449.490613382788, + 16343.122614541018, 20770.623094388233, 24539.553641576906, + 27698.179230364556, 28573.016220979185, 27305.691417379043, + 23698.933975874737, 17994.275543870495, 10855.123664655108, + 4047.374055847988, -1903.86875508947, -6189.742109252538, + -8134.469405618907, -8621.801211932447, -8145.965283760749, + -7571.808668028597, -7850.517247935556, -9261.027405715755, + -11679.610871471137, -14236.368807831595, -16304.683333983694, + -17208.710876632787, -16195.716214342441, -13532.636389816967, + -9907.832418671951, -6198.386940921281, -2881.9128193912, + -1200.891467976905, -860.3285079496914, -1247.3340849905594, + -1869.8495330106828, -1761.0113940526753, -293.73207602641924, + 2544.668744444515, 6386.058199148377, 10018.999887843072, + 12661.441455108306, 13626.484197439077, 12740.484265169856, + 11172.098861293147, 10710.203211181566, 13545.11484500011, + 21825.535314209505, 36882.7702113784, 59882.911453583845, + 86964.23107307492, 117284.13790586706, 149544.398110095, + 173583.99437981064 + ], + "flow:J49:branch114_seg0": [ + 23.012018078870923, 26.003914895059232, 27.645505202631078, + 27.81352599128281, 26.653360928540337, 24.38601724311336, + 21.34511977135736, 18.001300042541928, 14.737468262238895, + 11.616660687302273, 8.924430371633292, 6.511367889561465, + 4.251124283067329, 2.137247752931335, -0.04516788180012102, + -2.1771113166160605, -4.254255868910469, -6.2099957984211365, + -7.790153153366398, -9.052004680035806, -9.934053438718404, + -10.455637898856429, -10.763940484705634, -10.91530056055037, + -10.990822084165575, -11.01199631824536, -10.930164644426915, + -10.690147931030507, -10.243543060704184, -9.589291135570063, + -8.797547954449197, -8.054497160583004, -7.532178320523462, + -7.447678419474862, -7.94281467200832, -9.036717471718115, + -10.58439689356018, -12.37514903938975, -14.078419506672516, + -15.292377845660775, -15.81877576836536, -15.461157636301166, + -14.220038734562495, -12.250705326229491, -9.895917304512967, + -7.3308160955376565, -4.906662796840334, -2.8557302074279787, + -1.1406420457222257, 0.14224830624190468, 1.1391814677593872, + 1.9736298525062514, 2.6515026198679275, 3.2645741241000903, + 3.7366402924356974, 3.977966415557972, 3.937920612495714, + 3.554402492466883, 2.8529014903497893, 1.9352045267478708, + 0.9595222728147411, 0.04114386405981782, -0.6361984717785639, + -1.0408865166168118, -1.1990613193434012, -1.1703922502689472, + -1.0936365968537898, -1.0886792842109327, -1.2225181335627147, + -1.505244948981798, -1.8587937904522098, -2.1925134363648775, + -2.382123409654628, -2.34119820249814, -2.06434482007756, + -1.6097127978410426, -1.0766394589180053, -0.589936586048949, + -0.27090395916077686, -0.13042964391769973, -0.14911740002444251, + -0.23466852774010338, -0.2607561486266599, -0.12968307549031896, + 0.1978546909508109, 0.6837244579780479, 1.2081950176049698, + 1.6524323097903688, 1.872528969205513, 1.8467036902420175, + 1.6637911718633578, 1.5253217424679713, 1.7271563940828218, + 2.5790214104258253, 4.325685648872656, 7.1030926926487625, + 10.66117616203923, 14.885100345102577, 19.232841641933422, + 23.012018078870923 + ], + "pressure:J49:branch114_seg0": [ + 173583.99437981064, 190952.5879669496, 199640.392853051, + 196305.66886322873, 184198.58621777955, 165824.1441267115, + 143282.79764754153, 117930.6053354034, 95803.49453167662, + 74827.83448638908, 55960.281454110984, 40143.529237301605, + 24064.548421354844, 9051.166644325991, -6207.384451066891, + -21636.654467568576, -35949.245347449425, -49471.82021573697, + -59772.488929450075, -67317.64315273477, -72845.16484716996, + -75634.90201298738, -77202.23501427917, -78034.53543809713, + -78315.08390784591, -78303.71372760503, -77361.52043271535, + -75077.50612104584, -71214.49724480778, -66136.01684453542, + -60193.71434616756, -55258.211436605845, -52694.944488314424, + -53389.76937224618, -58586.58995587795, -67976.60526500295, + -80112.86850030589, -92843.44084511147, -104415.47632518939, + -111343.09477330491, -112516.2173538237, -107605.27733643974, + -96431.34582771464, -80311.9667483784, -63021.71189205346, + -45079.001504343505, -27875.432200379328, -14804.004989163164, + -3853.2802768177594, 4468.256345946104, 10449.490613382788, + 16343.122614541018, 20770.623094388233, 24539.553641576906, + 27698.179230364556, 28573.016220979185, 27305.691417379043, + 23698.933975874737, 17994.275543870495, 10855.123664655108, + 4047.374055847988, -1903.86875508947, -6189.742109252538, + -8134.469405618907, -8621.801211932447, -8145.965283760749, + -7571.808668028597, -7850.517247935556, -9261.027405715755, + -11679.610871471137, -14236.368807831595, -16304.683333983694, + -17208.710876632787, -16195.716214342441, -13532.636389816967, + -9907.832418671951, -6198.386940921281, -2881.9128193912, + -1200.891467976905, -860.3285079496914, -1247.3340849905594, + -1869.8495330106828, -1761.0113940526753, -293.73207602641924, + 2544.668744444515, 6386.058199148377, 10018.999887843072, + 12661.441455108306, 13626.484197439077, 12740.484265169856, + 11172.098861293147, 10710.203211181566, 13545.11484500011, + 21825.535314209505, 36882.7702113784, 59882.911453583845, + 86964.23107307492, 117284.13790586706, 149544.398110095, + 173583.99437981064 + ], + "flow:J49:branch124_seg0": [ + 45.1185265668538, 51.74463422450505, 55.83310463284824, 57.04224265500409, + 55.4633074982887, 51.46768895372879, 45.69447910701614, 39.06705771322875, + 32.32282795337689, 25.81676239226358, 20.072162184844274, + 14.897341117129763, 10.14159318936692, 5.688101197687429, + 1.1868478719877649, -3.221719948216412, -7.566703787384964, + -11.661011178032421, -15.102812391062189, -17.91061264307123, + -19.934274371824408, -21.218442199040773, -21.99647586422927, + -22.402448410164176, -22.613966855791222, -22.693258878334408, + -22.57913230758665, -22.170862097863264, -21.36351878124053, + -20.12993650968962, -18.582527822740204, -17.039427922995877, + -15.844965737777784, -15.440247792484962, -16.139785879071788, + -18.047183455623212, -20.955533986649467, -24.494543782124577, + -28.00795661055472, -30.745886554869372, -32.20606061547338, + -31.94591517140047, -29.887634176179976, -26.273424958589253, + -21.684874544044177, -16.532860296387547, -11.52074316508035, + -7.113343739449293, -3.385486008071185, -0.5208479382390603, + 1.7185149040022416, 3.541712519607735, 5.028289961759304, + 6.349039985000093, 7.393694156321432, 8.019587577095873, 8.0988313212765, + 7.500896475397358, 6.242214704088489, 4.494327007491817, + 2.530389215973271, 0.6191789917180812, -0.8865439390857754, + -1.877344602758914, -2.3448622618821213, -2.395498951834348, + -2.2814540398244145, -2.244810109537264, -2.450256125928786, + -2.9500938635731693, -3.6309974307403534, -4.323022331067603, + -4.780336219102227, -4.817404777108379, -4.382690041928505, + -3.5541454423898315, -2.510654754367676, -1.498968481554314, + -0.7612381632108898, -0.3698286606503125, -0.3182168925460336, + -0.44788734465269114, -0.5217017564098616, -0.33145884771324646, + 0.23646439597062194, 1.1415041327602002, 2.1909123283895022, + 3.140154923525716, 3.702460937431467, 3.7872143908503575, + 3.5062964824864564, 3.210375674994016, 3.4568075900788253, + 4.8659877892212, 7.978536305313211, 13.110957577781354, 19.95831781677609, + 28.28271744388904, 37.080065177519714, 45.1185265668538 + ], + "pressure:J49:branch124_seg0": [ + 173583.99437981064, 190952.5879669496, 199640.392853051, + 196305.66886322873, 184198.58621777955, 165824.1441267115, + 143282.79764754153, 117930.6053354034, 95803.49453167662, + 74827.83448638908, 55960.281454110984, 40143.529237301605, + 24064.548421354844, 9051.166644325991, -6207.384451066891, + -21636.654467568576, -35949.245347449425, -49471.82021573697, + -59772.488929450075, -67317.64315273477, -72845.16484716996, + -75634.90201298738, -77202.23501427917, -78034.53543809713, + -78315.08390784591, -78303.71372760503, -77361.52043271535, + -75077.50612104584, -71214.49724480778, -66136.01684453542, + -60193.71434616756, -55258.211436605845, -52694.944488314424, + -53389.76937224618, -58586.58995587795, -67976.60526500295, + -80112.86850030589, -92843.44084511147, -104415.47632518939, + -111343.09477330491, -112516.2173538237, -107605.27733643974, + -96431.34582771464, -80311.9667483784, -63021.71189205346, + -45079.001504343505, -27875.432200379328, -14804.004989163164, + -3853.2802768177594, 4468.256345946104, 10449.490613382788, + 16343.122614541018, 20770.623094388233, 24539.553641576906, + 27698.179230364556, 28573.016220979185, 27305.691417379043, + 23698.933975874737, 17994.275543870495, 10855.123664655108, + 4047.374055847988, -1903.86875508947, -6189.742109252538, + -8134.469405618907, -8621.801211932447, -8145.965283760749, + -7571.808668028597, -7850.517247935556, -9261.027405715755, + -11679.610871471137, -14236.368807831595, -16304.683333983694, + -17208.710876632787, -16195.716214342441, -13532.636389816967, + -9907.832418671951, -6198.386940921281, -2881.9128193912, + -1200.891467976905, -860.3285079496914, -1247.3340849905594, + -1869.8495330106828, -1761.0113940526753, -293.73207602641924, + 2544.668744444515, 6386.058199148377, 10018.999887843072, + 12661.441455108306, 13626.484197439077, 12740.484265169856, + 11172.098861293147, 10710.203211181566, 13545.11484500011, + 21825.535314209505, 36882.7702113784, 59882.911453583845, + 86964.23107307492, 117284.13790586706, 149544.398110095, + 173583.99437981064 + ], + "flow:branch118_seg0:J50": [ + 70.01073285686972, 78.8336442036888, 83.47701938388957, 83.68728027208043, + 79.87617749591476, 72.81062547166532, 63.53889756097996, + 53.411340539202556, 43.711369209107104, 34.53827175133715, + 26.57353960159296, 19.535786551475912, 12.882261732904123, + 6.599710039835003, 0.12884195051944297, -6.350664181166838, + -12.598177150031463, -18.433206123246567, -23.217728686368634, + -26.987953358929595, -29.587368885745878, -31.14371652030013, + -32.0542726125209, -32.525843345419084, -32.80230904149067, + -32.91340543583753, -32.72064491547554, -32.03552608542725, + -30.711455036440015, -28.74711840036209, -26.380719340425674, + -24.171546235791435, -22.674259223078526, -22.529442988519136, + -24.16168897563459, -27.58583006597827, -32.40576365227895, + -37.83465555149268, -42.946771986459396, -46.51822859905953, + -47.91930801558782, -46.62545588524648, -42.69798420319678, + -36.61862068283491, -29.40366433125861, -21.65335939109291, + -14.453943632696294, -8.37952353924968, -3.3818300068572738, + 0.32316863461705114, 3.2360699349122797, 5.648870680600535, + 7.659896192303744, 9.508914776037525, 10.936564411444333, + 11.66969199779515, 11.538247668032248, 10.360961637090934, + 8.235092563236044, 5.450569906203498, 2.5397821953129367, + -0.14785099093301682, -2.130890912081921, -3.2449778039389354, + -3.616322722601429, -3.460487196296586, -3.1910828123839963, + -3.173052257080314, -3.6020794605137096, -4.493665465438065, + -5.5987763195035045, -6.628103112401564, -7.183548054928005, + -7.033597587518658, -6.152786150869163, -4.745631991969998, + -3.1135093868302057, -1.663036580790551, -0.7374627381709219, + -0.3679627011114967, -0.47970919785990696, -0.7715631180306134, + -0.8572323901235743, -0.4390090691612484, 0.5859660171721268, + 2.098310377129377, 3.702190192201794, 5.023986391873693, + 5.665205489305872, 5.538751956503728, 4.940531558459047, + 4.513283132155917, 5.163652043933496, 7.8507022848554975, + 13.264333472308293, 21.807718838953793, 32.70499028056783, + 45.6387454855054, 58.66919584692199, 70.01073285686972 + ], + "pressure:branch118_seg0:J50": [ + 185215.85233992702, 199096.8878959781, 204175.39920071236, + 195950.48379452163, 179638.46642773997, 158494.96137840473, + 134660.06400405863, 107645.13979020341, 87041.50788273028, + 67638.24000857402, 49130.65336794074, 34962.17186853618, + 19054.14525378434, 4180.708103617693, -10700.811240357714, + -26792.997989731, -40798.17791132368, -53631.20810987835, + -63225.94264593024, -69704.12257614058, -74358.00962254454, + -76369.17855393948, -77435.31794072692, -78133.48349443768, + -78407.77694262713, -78381.07609052757, -77232.27206645827, + -74503.2030063125, -70047.37821225572, -64521.34371858426, + -58335.054907253056, -53781.548153607204, -52436.2465733333, + -54633.103821094126, -61786.86673775518, -72969.28249303011, + -86657.8836514629, -99431.85877640333, -110431.25330645742, + -115569.21970412669, -114015.91238545632, -106385.5843243538, + -92698.47432942547, -74511.378809271, -56372.50918703528, + -38284.402737203425, -21585.241034922135, -9960.605057044557, + -309.757501228265, 6957.288540760271, 12088.030826593573, + 17755.92725072396, 21818.29045034664, 25283.313429249778, + 28319.717732636935, 28417.518989060456, 26231.37155830274, + 21700.99742683366, 15270.97966989696, 7438.825891741062, + 853.6344998262394, -4372.4682322003355, -8104.40880454482, + -8990.191656634668, -8647.084407798904, -7800.0002759444205, + -7187.310243892462, -7804.293167249328, -9723.222757774367, + -12608.679934878497, -15313.555483590075, -17220.886134394583, + -17622.11843001046, -15866.79295323164, -12457.203753052, + -8391.442092680196, -4622.378050594057, -1518.9955949265318, + -482.85839070811153, -825.4973482894823, -1573.1847451447652, + -2275.8025130257242, -1869.8458191077673, 204.85150919499662, + 3636.0850976794145, 7999.713044312695, 11578.911937682346, + 13680.339139354639, 14039.346620202828, 12408.959517323496, + 10488.528746476997, 10516.010084237349, 14789.205874945075, + 25508.90542827989, 43455.61302596519, 69805.16877518543, + 99010.31429792117, 131042.84916359048, 163802.04010607413, + 185215.85233992702 + ], + "flow:J50:branch119_seg0": [ + 39.339263132477605, 44.19083802605335, 46.68160785368286, + 46.67329025811681, 44.43587669830997, 40.40256129729321, + 35.164281433307764, 29.49033450888077, 24.08084200069262, + 18.97426429901665, 14.575503174229018, 10.67628548715265, + 6.985253630501429, 3.499153421374972, -0.11631148923878175, + -3.7140787011618768, -7.194641581715268, -10.445799800382542, + -13.078997999300134, -15.151259821073614, -16.57150535383892, + -17.405036486921766, -17.8919097942657, -18.139982775170132, + -18.28432588415075, -18.342148477574778, -18.226777778053844, + -17.833046854723648, -17.078677967905612, -15.967458545641966, + -14.63424392761741, -13.40367585648306, -12.582951175342002, + -12.53321728692567, -13.487031145463321, -15.4473113693437, + -18.168261020527595, -21.223215364269716, -24.072866069617817, + -26.029386505520993, -26.75904208365126, -25.969800581001522, + -23.703640476027786, -20.247064577241556, -16.19138775261037, + -11.853404792669794, -7.839902069867952, -4.4864193829362025, + -1.7296784708574469, 0.30149065491387367, 1.8914077084588699, + 3.223896322780402, 4.330077997133214, 5.351375652853664, + 6.137986509399311, 6.529001954449636, 6.433715156134167, + 5.7510048140802486, 4.53837621395476, 2.9680342150740464, + 1.336521571839869, -0.16251505824494544, -1.2477200425096813, + -1.8474715159733077, -2.034126555929853, -1.9295396300147116, + -1.7719652862615785, -1.76532510427609, -2.0151185270986662, + -2.5249670609970174, -3.148214117208837, -3.7213344150857153, + -4.022890336787595, -3.920787005386847, -3.410368383062289, + -2.609369601493065, -1.6924129009855824, -0.8837559361657081, + -0.3798908109357298, -0.1892022972555256, -0.264993833094305, + -0.4356933055887059, -0.4815709797383801, -0.23792631954302898, + 0.3492088167120105, 1.2054143994354065, 2.1055329377677587, + 2.840118816304692, 3.18025828757781, 3.08925859164492, 2.7405555636170575, + 2.5010033063234314, 2.88538224941671, 4.427959225206051, + 7.516715954307343, 12.3648138777967, 18.507930327361496, + 25.758660351332413, 33.061472031965614, 39.339263132477605 + ], + "pressure:J50:branch119_seg0": [ + 185215.85233992702, 199096.8878959781, 204175.39920071236, + 195950.48379452163, 179638.46642773997, 158494.96137840473, + 134660.06400405863, 107645.13979020341, 87041.50788273028, + 67638.24000857402, 49130.65336794074, 34962.17186853618, + 19054.14525378434, 4180.708103617693, -10700.811240357714, + -26792.997989731, -40798.17791132368, -53631.20810987835, + -63225.94264593024, -69704.12257614058, -74358.00962254454, + -76369.17855393948, -77435.31794072692, -78133.48349443768, + -78407.77694262713, -78381.07609052757, -77232.27206645827, + -74503.2030063125, -70047.37821225572, -64521.34371858426, + -58335.054907253056, -53781.548153607204, -52436.2465733333, + -54633.103821094126, -61786.86673775518, -72969.28249303011, + -86657.8836514629, -99431.85877640333, -110431.25330645742, + -115569.21970412669, -114015.91238545632, -106385.5843243538, + -92698.47432942547, -74511.378809271, -56372.50918703528, + -38284.402737203425, -21585.241034922135, -9960.605057044557, + -309.757501228265, 6957.288540760271, 12088.030826593573, + 17755.92725072396, 21818.29045034664, 25283.313429249778, + 28319.717732636935, 28417.518989060456, 26231.37155830274, + 21700.99742683366, 15270.97966989696, 7438.825891741062, + 853.6344998262394, -4372.4682322003355, -8104.40880454482, + -8990.191656634668, -8647.084407798904, -7800.0002759444205, + -7187.310243892462, -7804.293167249328, -9723.222757774367, + -12608.679934878497, -15313.555483590075, -17220.886134394583, + -17622.11843001046, -15866.79295323164, -12457.203753052, + -8391.442092680196, -4622.378050594057, -1518.9955949265318, + -482.85839070811153, -825.4973482894823, -1573.1847451447652, + -2275.8025130257242, -1869.8458191077673, 204.85150919499662, + 3636.0850976794145, 7999.713044312695, 11578.911937682346, + 13680.339139354639, 14039.346620202828, 12408.959517323496, + 10488.528746476997, 10516.010084237349, 14789.205874945075, + 25508.90542827989, 43455.61302596519, 69805.16877518543, + 99010.31429792117, 131042.84916359048, 163802.04010607413, + 185215.85233992702 + ], + "flow:J50:branch127_seg0": [ + 30.671469724391905, 34.64280617763475, 36.795411530206, 37.01399001396195, + 35.44030079760648, 32.408064174375994, 28.374616127671146, + 23.921006030321955, 19.630527208414122, 15.564007452321333, + 11.99803642736511, 8.859501064323123, 5.897008102403412, + 3.1005566184615834, 0.2451534397579598, -2.636585480006045, + -5.403535568316735, -7.98740632286529, -10.138730687068739, + -11.836693537857487, -13.01586353190535, -13.738680033377701, + -14.162362818255778, -14.38586057024827, -14.517983157339625, + -14.571256958264483, -14.493867137421113, -14.202479230701702, + -13.632777068534597, -12.779659854720673, -11.746475412807166, + -10.767870379307963, -10.091308047735723, -9.99622570159337, + -10.674657830170803, -12.138518696634408, -14.237502631751616, + -16.611440187222566, -18.873905916841323, -20.48884209353845, + -21.160265931937417, -20.655655304245123, -18.994343727168744, + -16.371556105593278, -13.212276578648169, -9.799954598423062, + -6.614041562828354, -3.89310415631348, -1.6521515359998333, + 0.0216779797031554, 1.3446622264533925, 2.4249743578201337, + 3.3298181951705286, 4.157539123183882, 4.798577902044967, + 5.1406900433454705, 5.104532511898178, 4.609956823010629, + 3.696716349281267, 2.48253569112975, 1.203260623473367, + 0.014664067311889451, -0.8831708695721843, -1.3975062879657514, + -1.5821961666715754, -1.5309475662819054, -1.419117526122449, + -1.4077271528042044, -1.5869609334149624, -1.968698404441063, + -2.4505622022947224, -2.90676869731584, -3.160657718140382, + -3.1128105821318197, -2.742417767806862, -2.1362623904769182, + -1.4210964858446242, -0.7792806446248389, -0.3575719272351478, + -0.17876040385597206, -0.21471536476560535, -0.3358698124419071, + -0.3756614103851997, -0.2010827496182176, 0.236757200460121, + 0.8928959776939934, 1.5966572544340663, 2.1838675755690162, + 2.4849472017280547, 2.4494933648587556, 2.199975994841962, + 2.0122798258324655, 2.2782697945169237, 3.422743059649418, + 5.747617518000954, 9.44290496115725, 14.19705995320662, 19.88008513417225, + 25.607723814956817, 30.671469724391905 + ], + "pressure:J50:branch127_seg0": [ + 185215.85233992702, 199096.8878959781, 204175.39920071236, + 195950.48379452163, 179638.46642773997, 158494.96137840473, + 134660.06400405863, 107645.13979020341, 87041.50788273028, + 67638.24000857402, 49130.65336794074, 34962.17186853618, + 19054.14525378434, 4180.708103617693, -10700.811240357714, + -26792.997989731, -40798.17791132368, -53631.20810987835, + -63225.94264593024, -69704.12257614058, -74358.00962254454, + -76369.17855393948, -77435.31794072692, -78133.48349443768, + -78407.77694262713, -78381.07609052757, -77232.27206645827, + -74503.2030063125, -70047.37821225572, -64521.34371858426, + -58335.054907253056, -53781.548153607204, -52436.2465733333, + -54633.103821094126, -61786.86673775518, -72969.28249303011, + -86657.8836514629, -99431.85877640333, -110431.25330645742, + -115569.21970412669, -114015.91238545632, -106385.5843243538, + -92698.47432942547, -74511.378809271, -56372.50918703528, + -38284.402737203425, -21585.241034922135, -9960.605057044557, + -309.757501228265, 6957.288540760271, 12088.030826593573, + 17755.92725072396, 21818.29045034664, 25283.313429249778, + 28319.717732636935, 28417.518989060456, 26231.37155830274, + 21700.99742683366, 15270.97966989696, 7438.825891741062, + 853.6344998262394, -4372.4682322003355, -8104.40880454482, + -8990.191656634668, -8647.084407798904, -7800.0002759444205, + -7187.310243892462, -7804.293167249328, -9723.222757774367, + -12608.679934878497, -15313.555483590075, -17220.886134394583, + -17622.11843001046, -15866.79295323164, -12457.203753052, + -8391.442092680196, -4622.378050594057, -1518.9955949265318, + -482.85839070811153, -825.4973482894823, -1573.1847451447652, + -2275.8025130257242, -1869.8458191077673, 204.85150919499662, + 3636.0850976794145, 7999.713044312695, 11578.911937682346, + 13680.339139354639, 14039.346620202828, 12408.959517323496, + 10488.528746476997, 10516.010084237349, 14789.205874945075, + 25508.90542827989, 43455.61302596519, 69805.16877518543, + 99010.31429792117, 131042.84916359048, 163802.04010607413, + 185215.85233992702 + ], + "flow:branch120_seg0:J51": [ + 65.0004992246312, 73.17002265394454, 77.44091565233194, 77.52840695826812, + 73.90496489614365, 67.22153444608595, 58.4502283410798, 48.9827529171102, + 39.815876788131646, 31.13886112205215, 23.75477733877239, + 17.147125227983388, 10.963213251977397, 5.168530340777161, + -0.8686448560424251, -6.753387608245355, -12.491279449900379, + -17.903867215613015, -22.20503537978909, -25.611029831710876, + -27.946312358056804, -29.268120327980522, -30.023488697787855, + -30.362981005324365, -30.51767953816411, -30.542188655151712, + -30.284132275833183, -29.579078989775763, -28.28923368413477, + -26.41100572222029, -24.1588063997583, -22.069417943367746, + -20.63560180389316, -20.477731248030537, -21.98474722387651, + -25.187747620371365, -29.637966901051975, -34.73528012252834, + -39.512471290858606, -42.82371149602682, -44.144346577875794, + -42.92763732509856, -39.22480706475478, -33.50006398003942, + -26.78045210512058, -19.542996590388526, -12.779424916934934, + -7.147443953506336, -2.480233852677334, 0.9495872387806871, + 3.592000161016458, 5.811870922184626, 7.62121014312344, 9.27344820675756, + 10.536257365614903, 11.151276071320773, 10.968936492389192, + 9.814811506115863, 7.768230275787451, 5.14143691992839, + 2.3762839068414743, -0.1938601047864219, -2.0349250338948486, + -3.0928689588158003, -3.455098687525189, -3.2998171142808004, + -3.037433058356682, -3.008994027302287, -3.395440469640962, + -4.214900339087767, -5.227102611209896, -6.167497911378795, + -6.6806951631783695, -6.52320472792908, -5.6933281923723955, + -4.370175970897298, -2.8443510609671803, -1.4779567688759188, + -0.609615969123133, -0.2610959846982268, -0.3638234937475177, + -0.6428077001498697, -0.7299595863016423, -0.3501347309063781, + 0.6008229735443765, 1.9960259233677733, 3.4871635151287266, + 4.728989870035033, 5.30366467381482, 5.17167995526136, 4.602062796765275, + 4.185327959368131, 4.773411186396974, 7.248306299216946, + 12.282742623319672, 20.253177167662766, 30.378101761627196, + 42.315045997613964, 54.52364052345117, 65.0004992246312 + ], + "pressure:branch120_seg0:J51": [ + 172268.18370753777, 191386.41064846466, 200737.0630382192, + 198658.3506818901, 187392.9543809187, 169015.63232797157, + 145894.62627534647, 120854.60565186488, 97950.92013946052, + 76151.09176373022, 57381.81634167259, 41081.32913724272, + 25132.912014494766, 10311.330899474093, -5130.280927520414, + -20435.10276122395, -34886.62640931258, -48608.655799632776, + -59236.430083548155, -67296.49349395669, -72918.9499312658, + -75878.36773844704, -77523.45400403289, -78294.57581970023, + -78586.18205631267, -78571.36403986608, -77733.2450912525, + -75629.74534196488, -71967.77796052632, -66905.68710027935, + -60961.76275778055, -55778.42955819293, -52663.057690986556, + -52955.55830883, -57699.80424898474, -66764.1332933368, + -78785.95739234744, -91851.56931112465, -103862.38617340899, + -111467.21401081122, -113585.37651183247, -109259.56204598829, + -98582.12849947641, -82877.49690908687, -65272.9998479858, + -46788.38615894959, -29498.474513898338, -15715.865860439759, + -4331.23126523748, 4096.06116284167, 10404.824772089798, + 16061.784833234184, 20548.064936970066, 24556.39975190031, + 27679.81044173266, 28834.056615894347, 27874.36390031011, + 24440.465430010714, 18805.752428408417, 11735.97506504339, + 4736.137800570501, -1603.819016211934, -6052.070263871848, + -8286.66884570754, -8909.769552109068, -8376.603785015503, + -7701.872547487818, -7799.4055673886605, -9028.299360120423, + -11334.663735852404, -13972.058693038565, -16244.573269467857, + -17324.09704583025, -16555.553457749967, -14070.17980334179, + -10469.897270450914, -6566.416674639047, -3149.1594420041088, + -1218.5412272563321, -643.332589424683, -1051.9515734803053, + -1773.3829102928573, -1838.480387260283, -574.8958401199563, + 2135.8767786498997, 5928.748365181496, 9691.44394707788, + 12629.163174727833, 13793.224149294592, 13093.66498447197, + 11504.331797653604, 10701.410264789127, 12928.791963135613, + 20423.72149032621, 34710.74040749169, 56780.62782455738, + 83788.99521728349, 114811.83423098882, 146627.78455253708, + 172268.18370753777 + ], + "flow:J51:branch121_seg0": [ + 29.762738826029896, 33.678833097371566, 35.80939290483531, + 36.0407612632247, 34.511738455734644, 31.516080994711874, + 27.516103245525063, 23.1518331335713, 18.857448041743933, + 14.809123280640472, 11.33589438115315, 8.220960838970553, + 5.345527392688234, 2.6382990927150685, -0.1573756498371967, + -2.892074885641348, -5.580106601890219, -8.09734336592504, + -10.142332367899874, -11.774802306984906, -12.892085433135621, + -13.548781309351947, -13.921086514349417, -14.089941412539606, + -14.170662070943767, -14.186204307028659, -14.078838153555074, + -13.771977228486724, -13.197738047308599, -12.34585977632547, + -11.314175600906866, -10.330527611932343, -9.628715610349545, + -9.50155043319461, -10.130389804763233, -11.546742253634788, + -13.568939191495526, -15.922016465278663, -18.154124299951174, + -19.76174395847096, -20.465128035305757, -19.998321352559277, + -18.37939180702377, -15.807991399910154, -12.71626404991843, + -9.358569493608313, -6.211539734939369, -3.536907930077911, + -1.3300723294729275, 0.3026237148226191, 1.5699679405668552, + 2.60660258581194, 3.463123041963747, 4.2422267651822905, + 4.840679520905029, 5.158334364587356, 5.108898448709429, 4.61092722335663, + 3.6961956417568955, 2.49899367963828, 1.2132977389146273, + 0.01007396370878105, -0.8737498659259471, -1.4028164397291956, + -1.5951428535992436, -1.5395819873591259, -1.420401738472072, + -1.3946100614634018, -1.555396662813748, -1.9180340279062054, + -2.383152834669018, -2.828096473320549, -3.0840356337237362, + -3.0407363511478605, -2.683604213627592, -2.086979712802124, + -1.381116350168855, -0.7403854035172944, -0.3136534405225865, + -0.12864635102721997, -0.16211102716576478, -0.2873169052034249, + -0.33836049084813524, -0.18336929170638117, 0.23479976870982824, + 0.8658810163511146, 1.5592542771573534, 2.1489757234623257, + 2.443394859176551, 2.4130590726100154, 2.16202091783492, + 1.9538586555396873, 2.1763526010065153, 3.2396829635096047, + 5.468751077707727, 9.037240953345217, 13.656438394186955, + 19.159895562133883, 24.793004453522126, 29.762738826029896 + ], + "pressure:J51:branch121_seg0": [ + 172268.18370753777, 191386.41064846466, 200737.0630382192, + 198658.3506818901, 187392.9543809187, 169015.63232797157, + 145894.62627534647, 120854.60565186488, 97950.92013946052, + 76151.09176373022, 57381.81634167259, 41081.32913724272, + 25132.912014494766, 10311.330899474093, -5130.280927520414, + -20435.10276122395, -34886.62640931258, -48608.655799632776, + -59236.430083548155, -67296.49349395669, -72918.9499312658, + -75878.36773844704, -77523.45400403289, -78294.57581970023, + -78586.18205631267, -78571.36403986608, -77733.2450912525, + -75629.74534196488, -71967.77796052632, -66905.68710027935, + -60961.76275778055, -55778.42955819293, -52663.057690986556, + -52955.55830883, -57699.80424898474, -66764.1332933368, + -78785.95739234744, -91851.56931112465, -103862.38617340899, + -111467.21401081122, -113585.37651183247, -109259.56204598829, + -98582.12849947641, -82877.49690908687, -65272.9998479858, + -46788.38615894959, -29498.474513898338, -15715.865860439759, + -4331.23126523748, 4096.06116284167, 10404.824772089798, + 16061.784833234184, 20548.064936970066, 24556.39975190031, + 27679.81044173266, 28834.056615894347, 27874.36390031011, + 24440.465430010714, 18805.752428408417, 11735.97506504339, + 4736.137800570501, -1603.819016211934, -6052.070263871848, + -8286.66884570754, -8909.769552109068, -8376.603785015503, + -7701.872547487818, -7799.4055673886605, -9028.299360120423, + -11334.663735852404, -13972.058693038565, -16244.573269467857, + -17324.09704583025, -16555.553457749967, -14070.17980334179, + -10469.897270450914, -6566.416674639047, -3149.1594420041088, + -1218.5412272563321, -643.332589424683, -1051.9515734803053, + -1773.3829102928573, -1838.480387260283, -574.8958401199563, + 2135.8767786498997, 5928.748365181496, 9691.44394707788, + 12629.163174727833, 13793.224149294592, 13093.66498447197, + 11504.331797653604, 10701.410264789127, 12928.791963135613, + 20423.72149032621, 34710.74040749169, 56780.62782455738, + 83788.99521728349, 114811.83423098882, 146627.78455253708, + 172268.18370753777 + ], + "flow:J51:branch128_seg0": [ + 35.23776039860105, 39.491189556572934, 41.63152274749677, + 41.48764569504375, 39.39322644040999, 35.70545345137441, + 30.93412509555397, 25.830919783539702, 20.958428746388144, + 16.32973784141274, 12.418882957618814, 8.92616438901099, + 5.617685859289845, 2.530231248062559, -0.7112692062075063, + -3.8613127226030417, -6.911172848008241, -9.806523849690334, + -12.062703011889276, -13.83622752472589, -15.054226924920158, + -15.719339018626929, -16.102402183436087, -16.27303959278336, + -16.34701746721914, -16.355984348124952, -16.205294122278943, + -15.807101761288697, -15.091495636825105, -14.06514594589504, + -12.844630798851679, -11.73889033143542, -11.00688619354306, + -10.976180814835624, -11.854357419113917, -13.641005366736783, + -16.06902770955643, -18.813263657249095, -21.358346990907254, + -23.06196753755548, -23.679218542570514, -22.929315972539644, + -20.845415257731005, -17.69207258012916, -14.064188055202207, + -10.184427096780212, -6.567885181995567, -3.610536023428433, + -1.1501615232044187, 0.6469635239580632, 2.022032220449619, + 3.2052683363726895, 4.158087101159695, 5.031221441575272, + 5.695577844709888, 5.992941706733411, 5.860038043679683, + 5.203884282759225, 4.072034634030582, 2.642443240290186, + 1.1629861679266948, -0.20393406849514206, -1.1611751679689817, + -1.6900525190865854, -1.8599558339259286, -1.7602351269217793, + -1.6170313198846051, -1.6143839658388086, -1.8400438068272085, + -2.296866311181461, -2.843949776540927, -3.339401438058358, + -3.59665952945468, -3.4824683767811955, -3.0097239787448196, + -2.283196258095176, -1.463234710798304, -0.7375713653586382, + -0.2959625286005426, -0.13244963367100335, -0.2017124665817679, + -0.3554907949464383, -0.3915990954535155, -0.16676543920000417, + 0.3660232048345553, 1.1301449070166494, 1.9279092379713876, + 2.5800141465727284, 2.8602698146382592, 2.7586208826513525, + 2.4400418789303058, 2.231469303828482, 2.597058585390454, + 4.008623335707312, 6.81399154561193, 11.215936214317473, + 16.721663367440136, 23.155150435480444, 29.73063606992889, + 35.23776039860105 + ], + "pressure:J51:branch128_seg0": [ + 172268.18370753777, 191386.41064846466, 200737.0630382192, + 198658.3506818901, 187392.9543809187, 169015.63232797157, + 145894.62627534647, 120854.60565186488, 97950.92013946052, + 76151.09176373022, 57381.81634167259, 41081.32913724272, + 25132.912014494766, 10311.330899474093, -5130.280927520414, + -20435.10276122395, -34886.62640931258, -48608.655799632776, + -59236.430083548155, -67296.49349395669, -72918.9499312658, + -75878.36773844704, -77523.45400403289, -78294.57581970023, + -78586.18205631267, -78571.36403986608, -77733.2450912525, + -75629.74534196488, -71967.77796052632, -66905.68710027935, + -60961.76275778055, -55778.42955819293, -52663.057690986556, + -52955.55830883, -57699.80424898474, -66764.1332933368, + -78785.95739234744, -91851.56931112465, -103862.38617340899, + -111467.21401081122, -113585.37651183247, -109259.56204598829, + -98582.12849947641, -82877.49690908687, -65272.9998479858, + -46788.38615894959, -29498.474513898338, -15715.865860439759, + -4331.23126523748, 4096.06116284167, 10404.824772089798, + 16061.784833234184, 20548.064936970066, 24556.39975190031, + 27679.81044173266, 28834.056615894347, 27874.36390031011, + 24440.465430010714, 18805.752428408417, 11735.97506504339, + 4736.137800570501, -1603.819016211934, -6052.070263871848, + -8286.66884570754, -8909.769552109068, -8376.603785015503, + -7701.872547487818, -7799.4055673886605, -9028.299360120423, + -11334.663735852404, -13972.058693038565, -16244.573269467857, + -17324.09704583025, -16555.553457749967, -14070.17980334179, + -10469.897270450914, -6566.416674639047, -3149.1594420041088, + -1218.5412272563321, -643.332589424683, -1051.9515734803053, + -1773.3829102928573, -1838.480387260283, -574.8958401199563, + 2135.8767786498997, 5928.748365181496, 9691.44394707788, + 12629.163174727833, 13793.224149294592, 13093.66498447197, + 11504.331797653604, 10701.410264789127, 12928.791963135613, + 20423.72149032621, 34710.74040749169, 56780.62782455738, + 83788.99521728349, 114811.83423098882, 146627.78455253708, + 172268.18370753777 + ], + "flow:branch124_seg2:J52": [ + 45.0282361903587, 51.69322982852402, 55.815701487721476, + 57.06152205636552, 55.52442803543783, 51.54788816599854, + 45.771217570284094, 39.17529840444287, 32.4033480381588, + 25.872191838562195, 20.14069824442627, 14.94845867496821, + 10.192587851872181, 5.741903462795196, 1.2227144451670688, + -3.170019830304048, -7.512036229938582, -11.633410612131925, + -15.069292826879622, -17.886467000852484, -19.92201876823071, + -21.206972786633695, -21.992814945187035, -22.4004716001332, + -22.61176584917642, -22.69428388892327, -22.58399190480532, + -22.181215730775147, -21.381540581499305, -20.150734855342286, + -18.604758307029165, -17.056444234911883, -15.847877162735077, + -15.429458033295596, -16.115680186264004, -18.01437040060498, + -20.90678515627469, -24.454684788277135, -27.9791967871504, + -30.727796308516492, -32.21486916833646, -31.972542925116407, + -29.931381555449985, -26.32118458308032, -21.746800142359394, + -16.597186140929455, -11.572924421381849, -7.163707055156972, + -3.4192987078896984, -0.5486437911615246, 1.692060042526334, + 3.519619969099692, 5.011096703797751, 6.336206277397663, + 7.383431279484204, 8.01819368864296, 8.107865880338226, 7.518863888184256, + 6.26268364734411, 4.523871245252897, 2.553876049735652, + 0.6290122685568328, -0.8740367699188165, -1.8719206538641708, + -2.34693097141782, -2.397194314013131, -2.2818014615840307, + -2.242612242762598, -2.4441365181423538, -2.9424936184108326, + -3.6223868026200834, -4.316073707977223, -4.779854008658805, + -4.822542080835118, -4.393897093812314, -3.5689920165504825, + -2.5248638916122297, -1.5105072454392856, -0.7661899933015964, + -0.3692111766383737, -0.31530426886062324, -0.4467776744843849, + -0.5242301770266135, -0.33942042951288853, 0.2256549258783881, + 1.1265319134217064, 2.179196203815498, 3.138035422194424, + 3.70187693807753, 3.790656009060152, 3.5106766511779015, + 3.2086966284671905, 3.440835542469028, 4.829783139591927, + 7.91547970230421, 13.03244193171226, 19.85873729108369, + 28.156479306481693, 36.96935609589469, 45.0282361903587 + ], + "pressure:branch124_seg2:J52": [ + 157331.50888121207, 177898.74033154928, 190018.76334474198, + 191710.57189158836, 184357.82945404912, 169475.60611322906, + 149210.8716372049, 126196.13738741858, 103703.10755725898, + 82260.12918526439, 63301.24804115515, 46493.35364901673, + 30624.16275430688, 15739.272144599006, 609.0634567400572, + -14190.319389464139, -28598.86842601864, -42300.68523674782, + -53264.99053885512, -62021.11305802149, -68387.70751750762, + -72135.8124597305, -74410.66513354753, -75583.08058346281, + -76135.3025682114, -76323.88517742653, -75769.17923814147, + -74124.02633978154, -71078.44208571705, -66667.57874356364, + -61264.61101629201, -56174.94149078062, -52628.932485498, + -51897.36531977177, -55136.06645755927, -62466.675654899016, + -72885.16830623629, -85029.5653761601, -96702.73176540101, + -105105.3084760176, -108808.14162100824, -106628.95869740022, + -98381.83484773879, -84953.90536200591, -69151.14500668713, + -51792.06104698917, -34884.881978270285, -20834.476498954344, + -8867.263488074163, 247.87220757095207, 7163.556613972876, + 13206.34343697137, 17981.43993814012, 22156.541880902325, + 25546.721528375332, 27258.579464207152, 27049.463079761757, + 24563.385287729307, 19880.632758481875, 13673.242544132372, + 7003.782799741845, 742.9757770104438, -3993.5332313100757, + -6861.248231653542, -8076.772592771185, -8020.571329399559, + -7566.7025267523795, -7570.891280568972, -8485.060480680655, + -10403.60990884454, -12748.76183897948, -14969.702075481824, + -16312.580553602082, -16070.870773712773, -14241.663015274018, + -11215.133823105632, -7677.698459313174, -4315.497224453157, + -2097.4195241418984, -1105.2315903796, -1104.6909319994045, + -1610.3405352965208, -1753.068297554406, -866.0467015985279, + 1330.8649844982822, 4596.77678404967, 8158.047324144718, + 11176.52729978324, 12736.716215916533, 12637.653096814109, + 11485.869639913097, 10655.584256565387, 12097.376768295057, + 17916.95646287221, 29728.271290843193, 48770.7690128026, + 72807.38267908018, 101126.87316288486, 131550.332029068, + 157331.50888121207 + ], + "flow:J52:branch125_seg0": [ + 27.842450481548926, 32.02657434882373, 34.642465598724804, + 35.48434545080042, 34.58627741882502, 32.15962476116212, + 28.60131457763174, 24.513783013979424, 20.298095145789926, + 16.23166490203379, 12.649787803960377, 9.405055239335804, + 6.4424280666917415, 3.667282873497485, 0.859921579518485, + -1.8742757149532336, -4.581985963661277, -7.145232027867523, + -9.299265259235446, -11.069014935012595, -12.348898465901582, + -13.16537037414597, -13.664185507705296, -13.924308031330044, + -14.060493349189835, -14.11436388177986, -14.050483220344569, + -13.807408666515954, -13.319150038036469, -12.562522499796692, + -11.607471836834026, -10.642613335555621, -9.88075699838131, + -9.602189914900674, -10.00347275335944, -11.157104045644227, + -12.93735133285502, -15.134398134109231, -17.328485936471846, + -19.060886694905967, -20.01707090443742, -19.904384164139525, + -18.673756674591502, -16.463904599954816, -13.633892887168878, + -10.436194866126177, -7.310262363383932, -4.54834500101753, + -2.204081418639638, -0.4015508669607221, 1.0085894725426847, + 2.1512887159225933, 3.0857755254697197, 3.9151539435966973, + 4.5718792406662, 4.977429845721658, 5.045864989727271, 4.693935597230894, + 3.926901036136343, 2.854795587344321, 1.631695396836575, + 0.4328967040740279, -0.512632940570406, -1.146631331092523, + -1.452228999255526, -1.4915276187975188, -1.4225346117165403, + -1.3951631618572693, -1.5146099157316044, -1.8179677683814566, + -2.238114700491598, -2.671273964889746, -2.96515809144122, + -3.0018298950933473, -2.7456779401952183, -2.240145494216793, + -1.5935481719235567, -0.961326029697983, -0.4913071746107927, + -0.23603103966188974, -0.1961165806911901, -0.2747789057830702, + -0.325234647766161, -0.21700129969372373, 0.125962502370386, + 0.6795555851981758, 1.332910469991613, 1.932340408951557, + 2.2927954980683096, 2.3593071089097775, 2.1918017919570403, + 2.001482741211235, 2.1308904682576064, 2.9663979211128977, + 4.84823545979137, 7.983115076176992, 12.195842642108488, + 17.33762038793081, 22.803164413483568, 27.842450481548926 + ], + "pressure:J52:branch125_seg0": [ + 157331.50888121207, 177898.74033154928, 190018.76334474198, + 191710.57189158836, 184357.82945404912, 169475.60611322906, + 149210.8716372049, 126196.13738741858, 103703.10755725898, + 82260.12918526439, 63301.24804115515, 46493.35364901673, + 30624.16275430688, 15739.272144599006, 609.0634567400572, + -14190.319389464139, -28598.86842601864, -42300.68523674782, + -53264.99053885512, -62021.11305802149, -68387.70751750762, + -72135.8124597305, -74410.66513354753, -75583.08058346281, + -76135.3025682114, -76323.88517742653, -75769.17923814147, + -74124.02633978154, -71078.44208571705, -66667.57874356364, + -61264.61101629201, -56174.94149078062, -52628.932485498, + -51897.36531977177, -55136.06645755927, -62466.675654899016, + -72885.16830623629, -85029.5653761601, -96702.73176540101, + -105105.3084760176, -108808.14162100824, -106628.95869740022, + -98381.83484773879, -84953.90536200591, -69151.14500668713, + -51792.06104698917, -34884.881978270285, -20834.476498954344, + -8867.263488074163, 247.87220757095207, 7163.556613972876, + 13206.34343697137, 17981.43993814012, 22156.541880902325, + 25546.721528375332, 27258.579464207152, 27049.463079761757, + 24563.385287729307, 19880.632758481875, 13673.242544132372, + 7003.782799741845, 742.9757770104438, -3993.5332313100757, + -6861.248231653542, -8076.772592771185, -8020.571329399559, + -7566.7025267523795, -7570.891280568972, -8485.060480680655, + -10403.60990884454, -12748.76183897948, -14969.702075481824, + -16312.580553602082, -16070.870773712773, -14241.663015274018, + -11215.133823105632, -7677.698459313174, -4315.497224453157, + -2097.4195241418984, -1105.2315903796, -1104.6909319994045, + -1610.3405352965208, -1753.068297554406, -866.0467015985279, + 1330.8649844982822, 4596.77678404967, 8158.047324144718, + 11176.52729978324, 12736.716215916533, 12637.653096814109, + 11485.869639913097, 10655.584256565387, 12097.376768295057, + 17916.95646287221, 29728.271290843193, 48770.7690128026, + 72807.38267908018, 101126.87316288486, 131550.332029068, + 157331.50888121207 + ], + "flow:J52:branch136_seg0": [ + 17.18578570880977, 19.666655479700037, 21.173235888996633, + 21.577176605565217, 20.938150616612845, 19.388263404836653, + 17.169902992651235, 14.66151539046358, 12.105252892369569, + 9.640526936528069, 7.490910440465522, 5.543403435630983, + 3.750159785180927, 2.074620589298146, 0.36279286564901286, + -1.2957441153513145, -2.930050266276892, -4.48817858426369, + -5.77002756764313, -6.817452065840247, -7.57312030233, -8.041602412488052, + -8.328629437481176, -8.476163568803107, -8.55127249998647, + -8.57992000714326, -8.533508684460623, -8.373807064258731, + -8.062390543462497, -7.5882123555455845, -6.997286470194797, + -6.413830899356134, -5.967120164353303, -5.827268118394685, + -6.1122074329049445, -6.857266354960655, -7.969433823419606, + -9.32028665416766, -10.65071085067842, -11.66690961361033, + -12.19779826389941, -12.068158760977054, -11.257624880858462, + -9.85727998312553, -8.112907255190507, -6.160991274803297, + -4.262662057997927, -2.6153620541394376, -1.2152172892500483, + -0.14709292420080042, 0.6834705699836525, 1.368331253177106, + 1.9253211783280313, 2.4210523338009633, 2.8115520388180077, + 3.0407638429213093, 3.0620008906110088, 2.824928290953375, + 2.335782611207799, 1.6690756579086756, 0.922180652899089, + 0.19611556448289966, -0.3614038293483912, -0.7252893227717847, + -0.8947019721622888, -0.9056666952155726, -0.8592668498675505, + -0.8474490809053571, -0.9295266024107669, -1.1245258500294897, + -1.384272102128437, -1.6447997430874732, -1.8146959172175905, + -1.8207121857417996, -1.648219153617077, -1.328846522333686, + -0.9313157196886415, -0.5491812157413088, -0.2748828186907984, + -0.13318013697648706, -0.11918768816943101, -0.171998768701323, + -0.19899552926046263, -0.12241912981917134, 0.09969242350799856, + 0.44697632822351147, 0.8462857338238939, 1.2056950132428714, + 1.4090814400092142, 1.4313489001503603, 1.3188748592208535, + 1.2072138872559404, 1.3099450742114163, 1.8633852184790314, + 3.067244242512862, 5.049326855535171, 7.662894648975108, + 10.818858918551019, 14.166191682411249, 17.18578570880977 + ], + "pressure:J52:branch136_seg0": [ + 157331.50888121207, 177898.74033154928, 190018.76334474198, + 191710.57189158836, 184357.82945404912, 169475.60611322906, + 149210.8716372049, 126196.13738741858, 103703.10755725898, + 82260.12918526439, 63301.24804115515, 46493.35364901673, + 30624.16275430688, 15739.272144599006, 609.0634567400572, + -14190.319389464139, -28598.86842601864, -42300.68523674782, + -53264.99053885512, -62021.11305802149, -68387.70751750762, + -72135.8124597305, -74410.66513354753, -75583.08058346281, + -76135.3025682114, -76323.88517742653, -75769.17923814147, + -74124.02633978154, -71078.44208571705, -66667.57874356364, + -61264.61101629201, -56174.94149078062, -52628.932485498, + -51897.36531977177, -55136.06645755927, -62466.675654899016, + -72885.16830623629, -85029.5653761601, -96702.73176540101, + -105105.3084760176, -108808.14162100824, -106628.95869740022, + -98381.83484773879, -84953.90536200591, -69151.14500668713, + -51792.06104698917, -34884.881978270285, -20834.476498954344, + -8867.263488074163, 247.87220757095207, 7163.556613972876, + 13206.34343697137, 17981.43993814012, 22156.541880902325, + 25546.721528375332, 27258.579464207152, 27049.463079761757, + 24563.385287729307, 19880.632758481875, 13673.242544132372, + 7003.782799741845, 742.9757770104438, -3993.5332313100757, + -6861.248231653542, -8076.772592771185, -8020.571329399559, + -7566.7025267523795, -7570.891280568972, -8485.060480680655, + -10403.60990884454, -12748.76183897948, -14969.702075481824, + -16312.580553602082, -16070.870773712773, -14241.663015274018, + -11215.133823105632, -7677.698459313174, -4315.497224453157, + -2097.4195241418984, -1105.2315903796, -1104.6909319994045, + -1610.3405352965208, -1753.068297554406, -866.0467015985279, + 1330.8649844982822, 4596.77678404967, 8158.047324144718, + 11176.52729978324, 12736.716215916533, 12637.653096814109, + 11485.869639913097, 10655.584256565387, 12097.376768295057, + 17916.95646287221, 29728.271290843193, 48770.7690128026, + 72807.38267908018, 101126.87316288486, 131550.332029068, + 157331.50888121207 + ], + "flow:branch1_seg0:J53": [ + 1500.91744954255, 1688.3518554526925, 1783.188031991868, + 1786.3658264275832, 1702.0844851368886, 1552.261108615197, + 1349.4644020902658, 1136.3531829715967, 923.3916523004618, + 729.429708752725, 556.238586199252, 403.0483402611232, 260.7974203674759, + 121.33780335463614, -14.293676457004919, -157.19647971551498, + -286.19304048799006, -410.6648814629761, -511.17632464642, + -588.2290156925492, -643.3755635047473, -674.2439789906425, + -693.0391610172878, -701.9834462280326, -706.8062573043109, + -707.788916658089, -702.1810659368103, -685.468455049018, + -655.8957761105136, -612.2745942063433, -561.1296763727844, + -513.9841781048328, -482.38840714015015, -480.24958601960606, + -517.1783929185705, -590.3029369115781, -694.7627161836339, + -809.9071022304371, -916.8602619485124, -991.9671084084581, + -1018.6794586609818, -987.7410920978401, -904.0443377051463, + -772.230860876166, -617.9269952732919, -455.34043207940107, + -299.2942497815485, -172.64847399688884, -64.19081114714963, + 14.610515455866537, 77.73797644449986, 129.8790485088544, + 172.84925037150293, 212.52930105432227, 241.49097300226765, + 256.1860228157814, 251.30712317519885, 224.8680248545914, + 177.17382713785466, 117.77269840383893, 53.60676806376562, + -2.6004315303350682, -45.60757649284564, -68.9006383753295, + -77.11077275335458, -74.28877028819498, -69.43367021418047, + -69.98339891712102, -79.49332714289368, -98.85800160596453, + -121.93779787831598, -142.8613827321966, -153.79594152969761, + -149.86649732246593, -130.21310454238937, -100.41605234545962, + -65.69454772300497, -35.25421090015428, -15.802776498067626, + -8.076325475569114, -10.172845929209732, -15.888497969655846, + -16.856373170495136, -7.270690665489624, 15.561963827963645, + 47.36306710142227, 81.92479238779582, 108.53008403575542, + 121.47583499537456, 118.00492038031045, 105.38519621446663, + 97.70559901151606, 113.38099714181668, 175.66154961659652, + 291.32156554723645, 478.50617854302084, 711.4598310261932, + 984.8462638336049, 1264.1291206127764, 1500.91744954255 + ], + "pressure:branch1_seg0:J53": [ + 210229.99640252977, 217944.95855131422, 215073.2241492028, + 198384.87284493374, 173649.91827665767, 146756.2583893297, + 117397.75980438593, 88424.7934106516, 67412.18264729549, + 50501.02561377835, 30955.456896336087, 19531.718272127695, + 3084.1838926439614, -12778.803465503086, -25880.470413144867, + -45787.36525168413, -55135.69914204694, -67931.3889463863, + -75902.72811730145, -78751.11177248046, -81960.92955205304, + -81762.89301403999, -81602.19246909046, -81631.89611252472, + -81419.5064270747, -80661.65952837803, -78713.58422673598, + -74371.44025170195, -68589.526130057, -61366.31865650964, + -54792.336509125744, -50542.58945431151, -51455.126673354105, + -56770.87659850389, -68477.54726305147, -82962.20465740724, + -100799.04595196938, -112747.23582703368, -122939.87897026334, + -124105.3108828779, -116707.19574453037, -102579.91266039398, + -85156.5263395544, -61819.615155449595, -41678.25261651158, + -24392.277351700788, -7427.564974731018, 1154.4922963620184, + 9312.83469930835, 14591.915916429789, 18964.001993398466, + 23491.638059758618, 27492.46452014228, 30353.1607710371, + 32201.529997861744, 30704.48496459652, 26116.23448814451, + 19281.237532542622, 10611.5916375933, 1326.8980255546564, + -5524.761857233311, -9389.455994432157, -12442.283757643856, + -10820.542926805992, -9261.537199783268, -7816.740889845271, + -7287.032939976584, -8734.181433249392, -11428.490480368368, + -15213.123183196216, -17964.55600267728, -19246.224657427163, + -18448.152940004835, -15419.226916767171, -10338.143155685455, + -5758.192242772078, -1557.7940480015527, 785.9674954022507, + 1008.5880868070489, -530.3141694107942, -1898.0100397010046, + -2602.169751531258, -1449.8597672915676, 1934.8432842234781, + 6704.892833069577, 11940.60922534555, 15442.680203008214, + 16173.545577033201, 15209.585947173871, 11924.138546417074, + 9490.059130224303, 11006.22109432099, 18311.87173892904, + 35476.88046994368, 57414.07582997633, 91917.94529376576, + 124679.86611709272, 159708.226562066, 192010.08343156351, + 210229.99640252977 + ], + "flow:J53:branch1_seg1": [ + 1500.91744954255, 1688.3518554526925, 1783.188031991868, + 1786.3658264275832, 1702.0844851368886, 1552.261108615197, + 1349.4644020902658, 1136.3531829715967, 923.3916523004618, + 729.429708752725, 556.238586199252, 403.0483402611232, 260.7974203674759, + 121.33780335463614, -14.293676457004919, -157.19647971551498, + -286.19304048799006, -410.6648814629761, -511.17632464642, + -588.2290156925492, -643.3755635047473, -674.2439789906425, + -693.0391610172878, -701.9834462280326, -706.8062573043109, + -707.788916658089, -702.1810659368103, -685.468455049018, + -655.8957761105136, -612.2745942063433, -561.1296763727844, + -513.9841781048328, -482.38840714015015, -480.24958601960606, + -517.1783929185705, -590.3029369115781, -694.7627161836339, + -809.9071022304371, -916.8602619485124, -991.9671084084581, + -1018.6794586609818, -987.7410920978401, -904.0443377051463, + -772.230860876166, -617.9269952732919, -455.34043207940107, + -299.2942497815485, -172.64847399688884, -64.19081114714963, + 14.610515455866537, 77.73797644449986, 129.8790485088544, + 172.84925037150293, 212.52930105432227, 241.49097300226765, + 256.1860228157814, 251.30712317519885, 224.8680248545914, + 177.17382713785466, 117.77269840383893, 53.60676806376562, + -2.6004315303350682, -45.60757649284564, -68.9006383753295, + -77.11077275335458, -74.28877028819498, -69.43367021418047, + -69.98339891712102, -79.49332714289368, -98.85800160596453, + -121.93779787831598, -142.8613827321966, -153.79594152969761, + -149.86649732246593, -130.21310454238937, -100.41605234545962, + -65.69454772300497, -35.25421090015428, -15.802776498067626, + -8.076325475569114, -10.172845929209732, -15.888497969655846, + -16.856373170495136, -7.270690665489624, 15.561963827963645, + 47.36306710142227, 81.92479238779582, 108.53008403575542, + 121.47583499537456, 118.00492038031045, 105.38519621446663, + 97.70559901151606, 113.38099714181668, 175.66154961659652, + 291.32156554723645, 478.50617854302084, 711.4598310261932, + 984.8462638336049, 1264.1291206127764, 1500.91744954255 + ], + "pressure:J53:branch1_seg1": [ + 210229.99640252977, 217944.95855131422, 215073.2241492028, + 198384.87284493374, 173649.91827665767, 146756.2583893297, + 117397.75980438593, 88424.7934106516, 67412.18264729549, + 50501.02561377835, 30955.456896336087, 19531.718272127695, + 3084.1838926439614, -12778.803465503086, -25880.470413144867, + -45787.36525168413, -55135.69914204694, -67931.3889463863, + -75902.72811730145, -78751.11177248046, -81960.92955205304, + -81762.89301403999, -81602.19246909046, -81631.89611252472, + -81419.5064270747, -80661.65952837803, -78713.58422673598, + -74371.44025170195, -68589.526130057, -61366.31865650964, + -54792.336509125744, -50542.58945431151, -51455.126673354105, + -56770.87659850389, -68477.54726305147, -82962.20465740724, + -100799.04595196938, -112747.23582703368, -122939.87897026334, + -124105.3108828779, -116707.19574453037, -102579.91266039398, + -85156.5263395544, -61819.615155449595, -41678.25261651158, + -24392.277351700788, -7427.564974731018, 1154.4922963620184, + 9312.83469930835, 14591.915916429789, 18964.001993398466, + 23491.638059758618, 27492.46452014228, 30353.1607710371, + 32201.529997861744, 30704.48496459652, 26116.23448814451, + 19281.237532542622, 10611.5916375933, 1326.8980255546564, + -5524.761857233311, -9389.455994432157, -12442.283757643856, + -10820.542926805992, -9261.537199783268, -7816.740889845271, + -7287.032939976584, -8734.181433249392, -11428.490480368368, + -15213.123183196216, -17964.55600267728, -19246.224657427163, + -18448.152940004835, -15419.226916767171, -10338.143155685455, + -5758.192242772078, -1557.7940480015527, 785.9674954022507, + 1008.5880868070489, -530.3141694107942, -1898.0100397010046, + -2602.169751531258, -1449.8597672915676, 1934.8432842234781, + 6704.892833069577, 11940.60922534555, 15442.680203008214, + 16173.545577033201, 15209.585947173871, 11924.138546417074, + 9490.059130224303, 11006.22109432099, 18311.87173892904, + 35476.88046994368, 57414.07582997633, 91917.94529376576, + 124679.86611709272, 159708.226562066, 192010.08343156351, + 210229.99640252977 + ], + "flow:branch1_seg1:J54": [ + 1502.6294464519638, 1688.268511833476, 1785.3625327389013, + 1787.0222566499608, 1703.7186160692377, 1551.2954123629083, + 1352.0747407276065, 1134.600056980729, 926.3167605650341, + 729.2751313656528, 557.3063414743253, 405.41589520727723, + 260.84856149107765, 125.21173122038796, -14.078810916833866, + -152.99416990729515, -284.99929467211814, -409.48003298504295, + -509.48968063962366, -588.2535514529459, -642.7134928796474, + -674.4328624957637, -692.9690157139438, -702.0861962874981, + -706.8470511265095, -707.9563420783935, -702.275314667477, + -685.8336514844417, -655.9248190153359, -612.5090501801152, + -561.1378720654285, -513.6563846364681, -482.2181055920841, + -479.9092349728847, -515.8846412296065, -589.7919128963141, + -693.0683650799324, -808.2530060513299, -916.6789369391798, + -990.9539560300077, -1019.2078042999365, -989.8667949167198, + -905.2946252163881, -774.2978935281376, -620.8279243093152, + -455.6469488749133, -301.35168441235857, -172.22755719945079, + -64.78779730925243, 14.963530590139342, 77.7688652091668, + 130.10881588751076, 173.34702695685783, 212.31779336759502, + 242.034298980885, 256.26569218684244, 251.75791947263704, + 224.9588476937078, 178.12116197336167, 117.5882608842833, + 54.916544046296906, -2.7147614468579877, -45.04116756390762, + -68.8321666374602, -77.20929519526524, -74.41983719645548, + -69.38080441290313, -69.74384028852582, -79.31928562466483, + -98.51818036715554, -121.65286199226412, -142.90513426946407, + -154.00409452387433, -150.00482817716303, -130.58568692775648, + -100.45079079321656, -65.70455736954322, -35.045574993168856, + -15.581177782969627, -7.94424311971315, -10.119570029555488, + -15.889174497305909, -17.032762132189543, -7.370656959741854, + 14.984901866869171, 47.38467208831915, 81.17337000817345, + 108.6648021511759, 121.44807719755092, 118.19733207519005, + 105.51847796981649, 97.38868833223198, 112.93580163541588, + 172.8048850664665, 290.16266563721626, 475.44830805886005, + 708.3691109402819, 984.3338854596267, 1262.823561857248, + 1502.6294464519638 + ], + "pressure:branch1_seg1:J54": [ + 194924.68225640626, 207446.08749428627, 211023.31070989536, + 200721.74627604603, 182111.6325626872, 158828.89512157705, + 133143.21825691796, 104782.50148251037, 83662.93419324448, + 63728.89770906151, 44763.350509476375, 30863.230735782705, + 14257.981198601716, -743.4368706654413, -15828.027101869848, + -32666.57583071366, -45785.150619507775, -58955.306499321865, + -68343.07576692326, -73995.9841793991, -78325.62509585406, + -79855.94625268942, -80476.4191047023, -80931.59210854098, + -80917.3569775143, -80576.9955371976, -79109.17745506657, + -75864.75550318266, -70901.83733017197, -64803.952656730275, + -58307.46337960475, -53619.97462888519, -52654.999076970875, + -55573.25992295017, -63740.610602378954, -75952.93518971016, + -90709.35362989083, -103557.73564546261, -114832.90248689386, + -119167.95848951528, -116508.07151859673, -107479.37567686869, + -92703.11416048539, -73067.46113516521, -53936.54139619843, + -35561.27368657152, -18378.41799181927, -6728.876644860362, + 2703.4901237335366, 9910.197975955014, 14920.520039721447, + 20349.502484594086, 24540.89514190412, 27768.23792001428, + 30477.701391455244, 30130.295982224794, 27290.610017093197, + 22014.80132102438, 14906.030618691066, 6424.625266518, -310.0804991072617, + -5624.78054824449, -9246.936887927413, -9673.126926969035, + -9157.284289222976, -8177.631699461433, -7539.48974431132, + -8301.703557280023, -10384.145292046976, -13460.219198856894, + -16235.969122017725, -18021.506742771395, -18190.36667908374, + -16145.468558706538, -12307.366740678151, -7994.042631155038, + -4016.4504786814514, -977.8489572113916, -19.377238458682974, + -610.6367350608208, -1534.310859716653, -2242.6719160969765, + -1693.078531431291, 698.6395912398102, 4441.184752814274, + 9111.836210081521, 12659.668896134293, 14607.950280353209, + 14657.804202765645, 12644.828907845913, 10590.226739599213, + 10888.403700073583, 15853.865718138655, 27950.465123395792, + 47142.452553647025, 75541.19167398263, 106371.90737557237, + 139658.2171237449, 172931.44153607427, 194924.68225640626 + ], + "flow:J54:branch1_seg2": [ + 1502.6294464519638, 1688.268511833476, 1785.3625327389013, + 1787.0222566499608, 1703.7186160692377, 1551.2954123629083, + 1352.0747407276065, 1134.600056980729, 926.3167605650341, + 729.2751313656528, 557.3063414743253, 405.41589520727723, + 260.84856149107765, 125.21173122038796, -14.078810916833866, + -152.99416990729515, -284.99929467211814, -409.48003298504295, + -509.48968063962366, -588.2535514529459, -642.7134928796474, + -674.4328624957637, -692.9690157139438, -702.0861962874981, + -706.8470511265095, -707.9563420783935, -702.275314667477, + -685.8336514844417, -655.9248190153359, -612.5090501801152, + -561.1378720654285, -513.6563846364681, -482.2181055920841, + -479.9092349728847, -515.8846412296065, -589.7919128963141, + -693.0683650799324, -808.2530060513299, -916.6789369391798, + -990.9539560300077, -1019.2078042999365, -989.8667949167198, + -905.2946252163881, -774.2978935281376, -620.8279243093152, + -455.6469488749133, -301.35168441235857, -172.22755719945079, + -64.78779730925243, 14.963530590139342, 77.7688652091668, + 130.10881588751076, 173.34702695685783, 212.31779336759502, + 242.034298980885, 256.26569218684244, 251.75791947263704, + 224.9588476937078, 178.12116197336167, 117.5882608842833, + 54.916544046296906, -2.7147614468579877, -45.04116756390762, + -68.8321666374602, -77.20929519526524, -74.41983719645548, + -69.38080441290313, -69.74384028852582, -79.31928562466483, + -98.51818036715554, -121.65286199226412, -142.90513426946407, + -154.00409452387433, -150.00482817716303, -130.58568692775648, + -100.45079079321656, -65.70455736954322, -35.045574993168856, + -15.581177782969627, -7.94424311971315, -10.119570029555488, + -15.889174497305909, -17.032762132189543, -7.370656959741854, + 14.984901866869171, 47.38467208831915, 81.17337000817345, + 108.6648021511759, 121.44807719755092, 118.19733207519005, + 105.51847796981649, 97.38868833223198, 112.93580163541588, + 172.8048850664665, 290.16266563721626, 475.44830805886005, + 708.3691109402819, 984.3338854596267, 1262.823561857248, + 1502.6294464519638 + ], + "pressure:J54:branch1_seg2": [ + 194924.68225640626, 207446.08749428627, 211023.31070989536, + 200721.74627604603, 182111.6325626872, 158828.89512157705, + 133143.21825691796, 104782.50148251037, 83662.93419324448, + 63728.89770906151, 44763.350509476375, 30863.230735782705, + 14257.981198601716, -743.4368706654413, -15828.027101869848, + -32666.57583071366, -45785.150619507775, -58955.306499321865, + -68343.07576692326, -73995.9841793991, -78325.62509585406, + -79855.94625268942, -80476.4191047023, -80931.59210854098, + -80917.3569775143, -80576.9955371976, -79109.17745506657, + -75864.75550318266, -70901.83733017197, -64803.952656730275, + -58307.46337960475, -53619.97462888519, -52654.999076970875, + -55573.25992295017, -63740.610602378954, -75952.93518971016, + -90709.35362989083, -103557.73564546261, -114832.90248689386, + -119167.95848951528, -116508.07151859673, -107479.37567686869, + -92703.11416048539, -73067.46113516521, -53936.54139619843, + -35561.27368657152, -18378.41799181927, -6728.876644860362, + 2703.4901237335366, 9910.197975955014, 14920.520039721447, + 20349.502484594086, 24540.89514190412, 27768.23792001428, + 30477.701391455244, 30130.295982224794, 27290.610017093197, + 22014.80132102438, 14906.030618691066, 6424.625266518, -310.0804991072617, + -5624.78054824449, -9246.936887927413, -9673.126926969035, + -9157.284289222976, -8177.631699461433, -7539.48974431132, + -8301.703557280023, -10384.145292046976, -13460.219198856894, + -16235.969122017725, -18021.506742771395, -18190.36667908374, + -16145.468558706538, -12307.366740678151, -7994.042631155038, + -4016.4504786814514, -977.8489572113916, -19.377238458682974, + -610.6367350608208, -1534.310859716653, -2242.6719160969765, + -1693.078531431291, 698.6395912398102, 4441.184752814274, + 9111.836210081521, 12659.668896134293, 14607.950280353209, + 14657.804202765645, 12644.828907845913, 10590.226739599213, + 10888.403700073583, 15853.865718138655, 27950.465123395792, + 47142.452553647025, 75541.19167398263, 106371.90737557237, + 139658.2171237449, 172931.44153607427, 194924.68225640626 + ], + "flow:branch3_seg0:J55": [ + 28.139942650999494, 32.01013790167251, 34.256205881318536, + 34.69000001189971, 33.44246202305217, 30.763549780689235, + 27.063381055169664, 22.942254318323712, 18.82073233040891, + 14.889954294756535, 11.485183335129394, 8.418503936480398, + 5.588067926495515, 2.9356098915127222, 0.214357179800253, + -2.431742657868085, -5.037899835383992, -7.505393478592226, + -9.515500468798594, -11.139864364717154, -12.290476064232253, + -12.983013259995984, -13.394894257729312, -13.596677025665324, + -13.695183304537347, -13.72627211523719, -13.636476699626419, + -13.35972355649367, -12.832962210132136, -12.044505249158403, + -11.073953770928204, -10.134586878446774, -9.44110559422066, + -9.266533797196052, -9.796968579890713, -11.076017272087125, + -12.938481240234015, -15.154883483861438, -17.298436161123167, + -18.888977725747658, -19.65504342192992, -19.33185001967761, + -17.903474796942195, -15.539318073359095, -12.656682179583516, + -9.476506187984292, -6.426100186179516, -3.8177273549138886, + -1.6254466999274289, 0.025482123299959834, 1.3014144676494164, + 2.358960849390895, 3.2187132209929192, 3.989177279990957, + 4.593066824518508, 4.9287542319437305, 4.921364999224973, + 4.49270829958586, 3.660540387628835, 2.5497314262559945, + 1.3309915767553975, 0.16856786245241026, -0.7060578580429713, + -1.25464192572576, -1.486517129820652, -1.471015752169936, + -1.3775928083152302, -1.3565607764478713, -1.5000253471628362, + -1.8308949339315541, -2.2613328969679047, -2.682536419313465, + -2.9429122306365785, -2.9264131886829747, -2.616596917683383, + -2.074184698727736, -1.4180658819576546, -0.8014163750977692, + -0.3759853072975159, -0.1728052099495754, -0.17463713405207842, + -0.2753464523233427, -0.32041100929711164, -0.18417359057437188, + 0.19484676039872056, 0.7760838952664763, 1.4295504340470557, + 2.001333436085797, 2.3068777621823657, 2.311176406237195, + 2.1026890078190896, 1.9163644293656132, 2.109788332092391, + 3.068833718038785, 5.111074932580733, 8.42759999607158, + 12.746280196440624, 17.914959430200494, 23.336483610941595, + 28.139942650999494 + ], + "pressure:branch3_seg0:J55": [ + 171687.38383418275, 188816.38768057933, 198292.98430905223, + 195781.09910330828, 184238.01548128718, 166147.53451308972, + 143807.0012709314, 119124.3186243663, 96064.37698718962, + 74964.02420522828, 56644.39270850583, 40473.13214627534, + 24526.514564232508, 9657.237960717677, -5839.905958647081, + -20680.949064792276, -34738.083503908776, -49004.51157218664, + -58996.74444151476, -66423.92067864806, -72291.2469215187, + -75076.32667415524, -76707.52431878804, -77574.97976966496, + -77782.53112765506, -77825.13517757408, -76974.64571213147, + -74775.64117612946, -71057.8551892147, -66057.52837393571, + -60192.22708755699, -55129.00377272062, -52386.78289004554, + -52882.90938245409, -57761.61794125451, -66987.44572475678, + -78748.7947175938, -91594.44899705012, -103376.52604534508, + -110430.85303333537, -112070.3225225071, -107475.55398832912, + -96729.49433587215, -80598.84340101706, -63655.456431783336, + -46158.52862879384, -28465.945853766778, -15355.914297769315, + -4352.430251745799, 4186.204639316179, 10000.507745511482, + 15947.30614762737, 20609.399113441552, 24193.372437215054, + 27355.439821315602, 28482.489490079766, 27335.02744443303, + 23880.941219678967, 18262.231154765366, 11312.559772934317, + 4352.475921854516, -1818.3962870372814, -5923.281617197411, + -8033.116509194722, -8688.977669295582, -8183.119587370717, + -7570.165974328759, -7785.773744240678, -9102.266052698626, + -11488.604317698326, -14010.345357187436, -16033.536161936148, + -17108.788600405383, -16233.501137679332, -13667.282005516721, + -10110.663915334453, -6436.76153483045, -3068.9408195669475, + -1190.884923239123, -824.7245976430074, -1183.0252935784856, + -1801.7070951637431, -1772.1949402728396, -419.7265822570902, + 2344.86509992132, 6089.080544549428, 9778.997951180627, + 12590.589074580765, 13527.65004083167, 12745.233544494673, + 11222.900863556562, 10659.487953381553, 13230.684750549386, + 21107.720863346127, 35526.12196257519, 58251.624322217554, + 84912.70769525637, 113886.13884787796, 146877.50084232457, + 171687.38383418275 + ], + "flow:J55:branch3_seg1": [ + 28.139942650999494, 32.01013790167251, 34.256205881318536, + 34.69000001189971, 33.44246202305217, 30.763549780689235, + 27.063381055169664, 22.942254318323712, 18.82073233040891, + 14.889954294756535, 11.485183335129394, 8.418503936480398, + 5.588067926495515, 2.9356098915127222, 0.214357179800253, + -2.431742657868085, -5.037899835383992, -7.505393478592226, + -9.515500468798594, -11.139864364717154, -12.290476064232253, + -12.983013259995984, -13.394894257729312, -13.596677025665324, + -13.695183304537347, -13.72627211523719, -13.636476699626419, + -13.35972355649367, -12.832962210132136, -12.044505249158403, + -11.073953770928204, -10.134586878446774, -9.44110559422066, + -9.266533797196052, -9.796968579890713, -11.076017272087125, + -12.938481240234015, -15.154883483861438, -17.298436161123167, + -18.888977725747658, -19.65504342192992, -19.33185001967761, + -17.903474796942195, -15.539318073359095, -12.656682179583516, + -9.476506187984292, -6.426100186179516, -3.8177273549138886, + -1.6254466999274289, 0.025482123299959834, 1.3014144676494164, + 2.358960849390895, 3.2187132209929192, 3.989177279990957, + 4.593066824518508, 4.9287542319437305, 4.921364999224973, + 4.49270829958586, 3.660540387628835, 2.5497314262559945, + 1.3309915767553975, 0.16856786245241026, -0.7060578580429713, + -1.25464192572576, -1.486517129820652, -1.471015752169936, + -1.3775928083152302, -1.3565607764478713, -1.5000253471628362, + -1.8308949339315541, -2.2613328969679047, -2.682536419313465, + -2.9429122306365785, -2.9264131886829747, -2.616596917683383, + -2.074184698727736, -1.4180658819576546, -0.8014163750977692, + -0.3759853072975159, -0.1728052099495754, -0.17463713405207842, + -0.2753464523233427, -0.32041100929711164, -0.18417359057437188, + 0.19484676039872056, 0.7760838952664763, 1.4295504340470557, + 2.001333436085797, 2.3068777621823657, 2.311176406237195, + 2.1026890078190896, 1.9163644293656132, 2.109788332092391, + 3.068833718038785, 5.111074932580733, 8.42759999607158, + 12.746280196440624, 17.914959430200494, 23.336483610941595, + 28.139942650999494 + ], + "pressure:J55:branch3_seg1": [ + 171687.38383418275, 188816.38768057933, 198292.98430905223, + 195781.09910330828, 184238.01548128718, 166147.53451308972, + 143807.0012709314, 119124.3186243663, 96064.37698718962, + 74964.02420522828, 56644.39270850583, 40473.13214627534, + 24526.514564232508, 9657.237960717677, -5839.905958647081, + -20680.949064792276, -34738.083503908776, -49004.51157218664, + -58996.74444151476, -66423.92067864806, -72291.2469215187, + -75076.32667415524, -76707.52431878804, -77574.97976966496, + -77782.53112765506, -77825.13517757408, -76974.64571213147, + -74775.64117612946, -71057.8551892147, -66057.52837393571, + -60192.22708755699, -55129.00377272062, -52386.78289004554, + -52882.90938245409, -57761.61794125451, -66987.44572475678, + -78748.7947175938, -91594.44899705012, -103376.52604534508, + -110430.85303333537, -112070.3225225071, -107475.55398832912, + -96729.49433587215, -80598.84340101706, -63655.456431783336, + -46158.52862879384, -28465.945853766778, -15355.914297769315, + -4352.430251745799, 4186.204639316179, 10000.507745511482, + 15947.30614762737, 20609.399113441552, 24193.372437215054, + 27355.439821315602, 28482.489490079766, 27335.02744443303, + 23880.941219678967, 18262.231154765366, 11312.559772934317, + 4352.475921854516, -1818.3962870372814, -5923.281617197411, + -8033.116509194722, -8688.977669295582, -8183.119587370717, + -7570.165974328759, -7785.773744240678, -9102.266052698626, + -11488.604317698326, -14010.345357187436, -16033.536161936148, + -17108.788600405383, -16233.501137679332, -13667.282005516721, + -10110.663915334453, -6436.76153483045, -3068.9408195669475, + -1190.884923239123, -824.7245976430074, -1183.0252935784856, + -1801.7070951637431, -1772.1949402728396, -419.7265822570902, + 2344.86509992132, 6089.080544549428, 9778.997951180627, + 12590.589074580765, 13527.65004083167, 12745.233544494673, + 11222.900863556562, 10659.487953381553, 13230.684750549386, + 21107.720863346127, 35526.12196257519, 58251.624322217554, + 84912.70769525637, 113886.13884787796, 146877.50084232457, + 171687.38383418275 + ], + "flow:branch3_seg1:J56": [ + 28.07127161928618, 31.984228588954025, 34.241819578845664, + 34.70919432193506, 33.496830353602775, 30.83111491401385, + 27.111183404435625, 23.03079465682684, 18.903870143578793, + 14.923541949258391, 11.539528608337012, 8.468249994140406, + 5.628785656035786, 2.9893864751818384, 0.24807457060516988, + -2.392851651142972, -4.975952478951181, -7.471652740428272, + -9.492704353131444, -11.116845744804305, -12.277180293009337, + -12.974301764825249, -13.391022989744036, -13.596099722437296, + -13.694509265085827, -13.726528567943035, -13.640955782858464, + -13.368728197655818, -12.848519936594423, -12.061162158708358, + -11.091347902406314, -10.149048012545345, -9.440235050027777, + -9.25729625854378, -9.776972364807797, -11.049649723351646, + -12.898204811652848, -15.114838645561438, -17.27348482865863, + -18.870509488085897, -19.661360240243514, -19.357637804076976, + -17.94588068549583, -15.591279858246144, -12.706904315362053, + -9.533733611519203, -6.480289646134782, -3.8579705110496083, + -1.6545764103167826, 0.0035370070817640504, 1.284507306531429, + 2.337126983804343, 3.2048150251195286, 3.9847480207963173, + 4.584158171463823, 4.926905631673452, 4.930358722634681, + 4.507737484773241, 3.676452628585488, 2.5732933761823844, + 1.3560771812217263, 0.17502416194475284, -0.6977782721390805, + -1.246411486590885, -1.4881758709236668, -1.4733481110750513, + -1.3780094822791469, -1.3545117143923242, -1.4941750448776419, + -1.8224918457697286, -2.254531672830503, -2.677140817254653, + -2.9416141765092982, -2.9317081068087103, -2.6269091126219033, + -2.0871542203873883, -1.4283207244951104, -0.8115139235421884, + -0.3801153035468, -0.16987286428014575, -0.17238387523436488, + -0.27471722852757485, -0.3226982113345578, -0.19066372506145385, + 0.18588868429683156, 0.7640074071015714, 1.417024676637269, + 1.9996972762507235, 2.307806508715819, 2.3131254585862955, + 2.1069972402403114, 1.9151122367208477, 2.0951936794965538, + 3.034667854526863, 5.051929398065051, 8.346033985123135, + 12.66302534530472, 17.81824959117161, 23.21975772898191, 28.07127161928618 + ], + "pressure:branch3_seg1:J56": [ + 159455.5961453376, 179688.6978863229, 191254.5096495493, + 192352.05916996853, 184270.67470724444, 168602.630851227, + 147570.24202904908, 124514.13472135959, 101681.30173417923, + 79981.63389191874, 61491.84016653208, 44803.90279633152, + 29083.291704824675, 14476.858849714392, -750.5791052122698, + -15348.779692792563, -29481.204421780094, -43414.50982292045, + -54193.841313307355, -62671.45157049986, -68917.45954995007, + -72441.95699233818, -74543.29893758826, -75598.38651933147, + -76038.55265206595, -76177.77100646026, -75600.02832509046, + -73899.12636245995, -70791.43138231005, -66263.85650288103, + -60774.24375858568, -55622.24976639745, -52053.135654173195, + -51485.22323442666, -54931.45722222263, -62588.28192600745, + -73209.38882125361, -85598.41613224059, -97461.71196290625, + -105734.45866781904, -109305.96806162894, -106785.35243123322, + -98155.41256633178, -84261.43376549143, -68085.02376238751, + -50639.97216122685, -33561.6372798174, -19519.987464469425, + -7723.642278411026, 1235.1904211050592, 7912.396898004074, + 13747.692990938252, 18501.698341133615, 22583.819585987174, + 25836.895978447283, 27507.770143676258, 27190.085444196462, + 24536.66793117205, 19654.232798510082, 13334.87628733048, + 6558.835122730418, 138.48871090785877, -4446.1404258865, + -7195.642657168891, -8337.10609499829, -8128.99847380047, + -7576.129309131917, -7547.169775504859, -8474.179643771222, + -10450.94144128756, -12870.831600359837, -15104.381115650054, + -16453.259126542303, -16162.136494444438, -14226.253342799868, + -11086.039309123391, -7446.561264899151, -4060.4734038209735, + -1825.7175760289192, -899.4394568158779, -1016.0002654509444, + -1596.475958551314, -1776.5077669393843, -868.8401551528553, + 1406.1683628364158, 4749.570293334467, 8371.168946612712, + 11471.796947092862, 12940.194059510839, 12729.712151096863, + 11483.328388397158, 10568.961069756779, 12015.516105760124, + 17967.786745927937, 30019.275385176923, 49490.96735777665, + 74093.77090432697, 102580.9698766679, 133273.84021776044, + 159455.5961453376 + ], + "flow:J56:branch3_seg2": [ + 28.07127161928618, 31.984228588954025, 34.241819578845664, + 34.70919432193506, 33.496830353602775, 30.83111491401385, + 27.111183404435625, 23.03079465682684, 18.903870143578793, + 14.923541949258391, 11.539528608337012, 8.468249994140406, + 5.628785656035786, 2.9893864751818384, 0.24807457060516988, + -2.392851651142972, -4.975952478951181, -7.471652740428272, + -9.492704353131444, -11.116845744804305, -12.277180293009337, + -12.974301764825249, -13.391022989744036, -13.596099722437296, + -13.694509265085827, -13.726528567943035, -13.640955782858464, + -13.368728197655818, -12.848519936594423, -12.061162158708358, + -11.091347902406314, -10.149048012545345, -9.440235050027777, + -9.25729625854378, -9.776972364807797, -11.049649723351646, + -12.898204811652848, -15.114838645561438, -17.27348482865863, + -18.870509488085897, -19.661360240243514, -19.357637804076976, + -17.94588068549583, -15.591279858246144, -12.706904315362053, + -9.533733611519203, -6.480289646134782, -3.8579705110496083, + -1.6545764103167826, 0.0035370070817640504, 1.284507306531429, + 2.337126983804343, 3.2048150251195286, 3.9847480207963173, + 4.584158171463823, 4.926905631673452, 4.930358722634681, + 4.507737484773241, 3.676452628585488, 2.5732933761823844, + 1.3560771812217263, 0.17502416194475284, -0.6977782721390805, + -1.246411486590885, -1.4881758709236668, -1.4733481110750513, + -1.3780094822791469, -1.3545117143923242, -1.4941750448776419, + -1.8224918457697286, -2.254531672830503, -2.677140817254653, + -2.9416141765092982, -2.9317081068087103, -2.6269091126219033, + -2.0871542203873883, -1.4283207244951104, -0.8115139235421884, + -0.3801153035468, -0.16987286428014575, -0.17238387523436488, + -0.27471722852757485, -0.3226982113345578, -0.19066372506145385, + 0.18588868429683156, 0.7640074071015714, 1.417024676637269, + 1.9996972762507235, 2.307806508715819, 2.3131254585862955, + 2.1069972402403114, 1.9151122367208477, 2.0951936794965538, + 3.034667854526863, 5.051929398065051, 8.346033985123135, + 12.66302534530472, 17.81824959117161, 23.21975772898191, 28.07127161928618 + ], + "pressure:J56:branch3_seg2": [ + 159455.5961453376, 179688.6978863229, 191254.5096495493, + 192352.05916996853, 184270.67470724444, 168602.630851227, + 147570.24202904908, 124514.13472135959, 101681.30173417923, + 79981.63389191874, 61491.84016653208, 44803.90279633152, + 29083.291704824675, 14476.858849714392, -750.5791052122698, + -15348.779692792563, -29481.204421780094, -43414.50982292045, + -54193.841313307355, -62671.45157049986, -68917.45954995007, + -72441.95699233818, -74543.29893758826, -75598.38651933147, + -76038.55265206595, -76177.77100646026, -75600.02832509046, + -73899.12636245995, -70791.43138231005, -66263.85650288103, + -60774.24375858568, -55622.24976639745, -52053.135654173195, + -51485.22323442666, -54931.45722222263, -62588.28192600745, + -73209.38882125361, -85598.41613224059, -97461.71196290625, + -105734.45866781904, -109305.96806162894, -106785.35243123322, + -98155.41256633178, -84261.43376549143, -68085.02376238751, + -50639.97216122685, -33561.6372798174, -19519.987464469425, + -7723.642278411026, 1235.1904211050592, 7912.396898004074, + 13747.692990938252, 18501.698341133615, 22583.819585987174, + 25836.895978447283, 27507.770143676258, 27190.085444196462, + 24536.66793117205, 19654.232798510082, 13334.87628733048, + 6558.835122730418, 138.48871090785877, -4446.1404258865, + -7195.642657168891, -8337.10609499829, -8128.99847380047, + -7576.129309131917, -7547.169775504859, -8474.179643771222, + -10450.94144128756, -12870.831600359837, -15104.381115650054, + -16453.259126542303, -16162.136494444438, -14226.253342799868, + -11086.039309123391, -7446.561264899151, -4060.4734038209735, + -1825.7175760289192, -899.4394568158779, -1016.0002654509444, + -1596.475958551314, -1776.5077669393843, -868.8401551528553, + 1406.1683628364158, 4749.570293334467, 8371.168946612712, + 11471.796947092862, 12940.194059510839, 12729.712151096863, + 11483.328388397158, 10568.961069756779, 12015.516105760124, + 17967.786745927937, 30019.275385176923, 49490.96735777665, + 74093.77090432697, 102580.9698766679, 133273.84021776044, + 159455.5961453376 + ], + "flow:branch9_seg0:J57": [ + 16.199716989531076, 19.227744996861816, 21.602388276277217, + 23.118149685729318, 23.68260384899556, 23.311593424754204, + 22.13155307379357, 20.37861341965913, 18.28604807811289, + 16.01533998509598, 13.761988458964, 11.547190228790786, 9.38364483124855, + 7.2628412286359945, 5.115644810696165, 2.9781765615096862, + 0.8458363114653723, -1.2102604783243422, -3.080142350112905, + -4.740454695386804, -6.1216128483361265, -7.220811991645319, + -8.083625910126896, -8.74472973129151, -9.259221180265216, + -9.653222679997583, -9.9216327082012, -10.04304617384177, + -9.98835878460808, -9.746058831112538, -9.343554516361236, + -8.869391578122453, -8.43439374888982, -8.187617752900916, + -8.25616785418552, -8.713684279269588, -9.546173907134266, + -10.673052982208121, -11.91196228482424, -13.035314018447881, + -13.846941299316635, -14.161352833370211, -13.889474245952993, + -13.04196588501198, -11.739208804229184, -10.090040071847714, + -8.311234446077377, -6.56181160022637, -4.919825273384805, + -3.4813981154097893, -2.219493384075668, -1.1072228809997924, + -0.13121271255893577, 0.7512378682834846, 1.5103357693581705, + 2.105375555656607, 2.4921906000808445, 2.622689821433504, + 2.4867932239783324, 2.1195292580704512, 1.593884369958605, + 0.9973594487344709, 0.4433919836718184, -0.006110702853414507, + -0.3166730919376019, -0.4964530432202893, -0.6002374499710392, + -0.6933638865936637, -0.8313581158234159, -1.0431390899526776, + -1.3116821587648797, -1.5968903277997115, -1.8271719748359743, + -1.9405087744084832, -1.9047756387950037, -1.7247693945215217, + -1.4401431797360904, -1.1196170728321408, -0.8396628083111171, + -0.6387942541468791, -0.5338230292185038, -0.4947251114539516, + -0.46062726537278015, -0.36770084293925914, -0.1703708366475987, + 0.1363270197736181, 0.5108492514741957, 0.8847376946927781, + 1.1705278282817397, 1.3227716745833014, 1.3510388205654893, + 1.341544255449731, 1.454278059521125, 1.889142130654084, + 2.8459127639125747, 4.4711118279747115, 6.748532955371775, + 9.657094578326708, 12.92440712235588, 16.199716989531076 + ], + "pressure:branch9_seg0:J57": [ + 120662.6830017537, 139004.86215708638, 152545.9124442192, + 158948.59081019554, 159003.20725611952, 153360.30261954563, + 142986.67123106166, 129010.03975622536, 114317.11744681215, + 98886.92963205282, 83709.18263514325, 69323.69051001678, + 54809.18266126375, 40671.67975393884, 26272.318617479385, + 11888.74425034032, -2167.550529945395, -15734.405395507305, + -27395.548667962787, -37460.802092245576, -45829.41683397201, + -52105.01761547033, -57048.001999989596, -60852.36121887737, + -63762.775218886156, -65994.42027075443, -67292.22902161293, + -67479.26265410896, -66394.77888208358, -64127.99748691551, + -60882.47427892539, -57613.07610319829, -55181.03080953732, + -54393.10226319495, -56196.9401545977, -60800.26583860496, + -67695.19408219014, -76005.94365825388, -84496.1612441774, + -91179.92795092349, -95016.00426213781, -95130.56379333994, + -91054.1655246413, -83109.96171038807, -73060.78709704657, + -61193.163844092036, -48698.04384642656, -37542.51090764829, + -27109.47622657365, -18123.742622899463, -10519.968763581921, + -3376.663857859698, 2668.788505473902, 8062.646541014311, + 12779.917882159598, 16016.070410603916, 17702.347959910534, + 17611.56135234981, 15745.772085574758, 12444.63678478497, + 8521.472576770442, 4478.374701109804, 1000.3738581824965, + -1474.577137665731, -3043.3277695286856, -3847.6773491266204, + -4339.784026221743, -5034.967548915486, -6206.734751677427, + -7933.884668529839, -9862.244382797213, -11690.516114334472, + -12969.593006801893, -13187.339062909725, -12338.894037258353, + -10643.025576941096, -8503.51785075365, -6272.44555699525, + -4670.619852114519, -3735.1020242716454, -3315.7910104450148, + -3212.5689870034885, -2900.346151716987, -1955.8483969816489, + -212.02154619824154, 2238.9731310984553, 4878.368141388854, + 7218.444328869986, 8720.582595144202, 9183.254551533753, 8993.43263499616, + 9035.98942290142, 10585.309918472358, 15073.651307652799, + 23673.860005105485, 37455.580314865445, 54947.68500446677, + 76023.58327376975, 99692.06532457564, 120662.6830017537 + ], + "flow:J57:branch9_seg1": [ + 16.199716989531076, 19.227744996861816, 21.602388276277217, + 23.118149685729318, 23.68260384899556, 23.311593424754204, + 22.13155307379357, 20.37861341965913, 18.28604807811289, + 16.01533998509598, 13.761988458964, 11.547190228790786, 9.38364483124855, + 7.2628412286359945, 5.115644810696165, 2.9781765615096862, + 0.8458363114653723, -1.2102604783243422, -3.080142350112905, + -4.740454695386804, -6.1216128483361265, -7.220811991645319, + -8.083625910126896, -8.74472973129151, -9.259221180265216, + -9.653222679997583, -9.9216327082012, -10.04304617384177, + -9.98835878460808, -9.746058831112538, -9.343554516361236, + -8.869391578122453, -8.43439374888982, -8.187617752900916, + -8.25616785418552, -8.713684279269588, -9.546173907134266, + -10.673052982208121, -11.91196228482424, -13.035314018447881, + -13.846941299316635, -14.161352833370211, -13.889474245952993, + -13.04196588501198, -11.739208804229184, -10.090040071847714, + -8.311234446077377, -6.56181160022637, -4.919825273384805, + -3.4813981154097893, -2.219493384075668, -1.1072228809997924, + -0.13121271255893577, 0.7512378682834846, 1.5103357693581705, + 2.105375555656607, 2.4921906000808445, 2.622689821433504, + 2.4867932239783324, 2.1195292580704512, 1.593884369958605, + 0.9973594487344709, 0.4433919836718184, -0.006110702853414507, + -0.3166730919376019, -0.4964530432202893, -0.6002374499710392, + -0.6933638865936637, -0.8313581158234159, -1.0431390899526776, + -1.3116821587648797, -1.5968903277997115, -1.8271719748359743, + -1.9405087744084832, -1.9047756387950037, -1.7247693945215217, + -1.4401431797360904, -1.1196170728321408, -0.8396628083111171, + -0.6387942541468791, -0.5338230292185038, -0.4947251114539516, + -0.46062726537278015, -0.36770084293925914, -0.1703708366475987, + 0.1363270197736181, 0.5108492514741957, 0.8847376946927781, + 1.1705278282817397, 1.3227716745833014, 1.3510388205654893, + 1.341544255449731, 1.454278059521125, 1.889142130654084, + 2.8459127639125747, 4.4711118279747115, 6.748532955371775, + 9.657094578326708, 12.92440712235588, 16.199716989531076 + ], + "pressure:J57:branch9_seg1": [ + 120662.6830017537, 139004.86215708638, 152545.9124442192, + 158948.59081019554, 159003.20725611952, 153360.30261954563, + 142986.67123106166, 129010.03975622536, 114317.11744681215, + 98886.92963205282, 83709.18263514325, 69323.69051001678, + 54809.18266126375, 40671.67975393884, 26272.318617479385, + 11888.74425034032, -2167.550529945395, -15734.405395507305, + -27395.548667962787, -37460.802092245576, -45829.41683397201, + -52105.01761547033, -57048.001999989596, -60852.36121887737, + -63762.775218886156, -65994.42027075443, -67292.22902161293, + -67479.26265410896, -66394.77888208358, -64127.99748691551, + -60882.47427892539, -57613.07610319829, -55181.03080953732, + -54393.10226319495, -56196.9401545977, -60800.26583860496, + -67695.19408219014, -76005.94365825388, -84496.1612441774, + -91179.92795092349, -95016.00426213781, -95130.56379333994, + -91054.1655246413, -83109.96171038807, -73060.78709704657, + -61193.163844092036, -48698.04384642656, -37542.51090764829, + -27109.47622657365, -18123.742622899463, -10519.968763581921, + -3376.663857859698, 2668.788505473902, 8062.646541014311, + 12779.917882159598, 16016.070410603916, 17702.347959910534, + 17611.56135234981, 15745.772085574758, 12444.63678478497, + 8521.472576770442, 4478.374701109804, 1000.3738581824965, + -1474.577137665731, -3043.3277695286856, -3847.6773491266204, + -4339.784026221743, -5034.967548915486, -6206.734751677427, + -7933.884668529839, -9862.244382797213, -11690.516114334472, + -12969.593006801893, -13187.339062909725, -12338.894037258353, + -10643.025576941096, -8503.51785075365, -6272.44555699525, + -4670.619852114519, -3735.1020242716454, -3315.7910104450148, + -3212.5689870034885, -2900.346151716987, -1955.8483969816489, + -212.02154619824154, 2238.9731310984553, 4878.368141388854, + 7218.444328869986, 8720.582595144202, 9183.254551533753, 8993.43263499616, + 9035.98942290142, 10585.309918472358, 15073.651307652799, + 23673.860005105485, 37455.580314865445, 54947.68500446677, + 76023.58327376975, 99692.06532457564, 120662.6830017537 + ], + "flow:branch9_seg1:J58": [ + 16.167285115490618, 19.20280626220384, 21.585684390439138, + 23.112631170618837, 23.689074164073897, 23.3258044461202, + 22.148695809359875, 20.406415499765686, 18.309966034023727, + 16.0354030103365, 13.786899026395902, 11.56836400995616, + 9.405050838833652, 7.285247399659662, 5.134200325203667, + 3.0003806545336693, 0.8686571039065044, -1.1938205666343755, + -3.0631188961723903, -4.725945286797896, -6.110949737494638, + -7.21162586795419, -8.077109176031037, -8.739663584046504, + -9.254967620978894, -9.650407818950917, -9.920420115992583, + -10.043743253312268, -9.991485721810271, -9.750614560281036, + -9.349210662475326, -8.874498393271615, -8.43653875619441, + -8.186679582695248, -8.251293283741697, -8.705556810392507, + -9.533067423743999, -10.660531397780897, -11.900960755015577, + -13.026452536516185, -13.844668197406126, -14.164467565088037, + -13.898284461943087, -13.054296456441898, -11.756175176920056, + -10.109643810277081, -8.329378902880777, -6.579617394273296, + -4.934657056386456, -3.494463255573937, -2.231709029041447, + -1.1181860158113848, -0.1402952096569953, 0.7435217014954227, + 1.503486640373294, 2.1013804388712116, 2.4912541724252812, + 2.6246119019905922, 2.490446911644397, 2.126290674751032, + 1.6002928171917516, 1.0013836387021882, 0.44844499137786703, + -0.0027812906940646405, -0.3154381202246562, -0.4954546332482874, + -0.599299845831567, -0.6920488120054705, -0.8291787950485715, + -1.040437915936274, -1.3087030806070297, -1.5941554209191011, + -1.825947472550347, -1.9408782779785612, -1.9068917753463561, + -1.7281504857782266, -1.4438396602182575, -1.1231097194503747, + -0.8417508348911158, -0.6395843761457324, -0.5340208910789592, + -0.4949916436208361, -0.46157280832076997, -0.36991720130747474, + -0.17348787337398938, 0.13193629586010705, 0.5068313166725855, + 0.8826980659397342, 1.1689169605395855, 1.3224361483290121, + 1.3514378906940745, 1.3407624381514047, 1.4501351024411377, + 1.8795804606120916, 2.828991659852377, 4.448053052851716, + 6.719060091816814, 9.619120342315002, 12.887229265969367, + 16.167285115490618 + ], + "pressure:branch9_seg1:J58": [ + 114240.96246576688, 132973.11408897451, 147216.18891231055, + 154878.6942629377, 156308.26443061544, 151902.02488286415, + 142595.62592276206, 129675.16137823675, 115366.33843657578, + 100281.611113271, 85410.21041431, 71062.6601669218, 56813.64957350967, + 42875.42100541054, 28689.89264071946, 14628.484957939836, + 712.1187376923483, -12761.925597757496, -24476.303560313998, + -34758.72965127507, -43327.59878623363, -49871.30337049116, + -55045.379427843225, -59010.530315003554, -62060.657516239065, + -64412.54849025155, -65873.78367996527, -66289.44928393808, + -65491.40425010773, -63498.29305118581, -60505.835916395605, + -57312.72806729399, -54739.817995176934, -53635.827520925755, + -54920.16897253872, -58899.90395624132, -65186.632912795176, + -73122.34651878312, -81416.7434285516, -88296.36989531585, + -92666.84970364452, -93495.3798390714, -90303.67837284626, + -83266.48427998679, -73917.75717391103, -62555.544106051064, + -50423.01067785179, -39288.20905352659, -28799.392978055723, + -19722.391182004932, -11961.635654930107, -4796.023048932625, + 1335.1451444718798, 6813.712089521679, 11602.53490280461, + 15069.002550781639, 17059.71822894469, 17328.475799427073, + 15834.101836717153, 12901.763243111944, 9159.43683114966, + 5186.401204417173, 1701.1375867235452, -938.3259019431697, + -2668.5013905422575, -3596.587624543934, -4150.969067390049, + -4808.829357127861, -5870.976607237407, -7465.072443724744, + -9308.130295525221, -11133.13487715956, -12499.450766923916, + -12909.424983905366, -12298.262802019812, -10810.519295152322, + -8794.9478197975, -6621.524537195745, -4937.909722272862, + -3872.4932037587214, -3351.593188149786, -3196.9169400805467, + -2924.934645405397, -2117.351473479077, -552.1074955134808, + 1711.9595876459546, 4274.775238554803, 6647.310785845293, + 8263.130002289286, 8920.994953448613, 8866.119968726853, + 8865.123710342941, 10093.567985778462, 13932.56054178384, + 21578.674344395677, 34129.20523732224, 50473.17325896896, + 70523.22589642396, 93299.69622543942, 114240.96246576688 + ], + "flow:J58:branch9_seg2": [ + 16.167285115490618, 19.20280626220384, 21.585684390439138, + 23.112631170618837, 23.689074164073897, 23.3258044461202, + 22.148695809359875, 20.406415499765686, 18.309966034023727, + 16.0354030103365, 13.786899026395902, 11.56836400995616, + 9.405050838833652, 7.285247399659662, 5.134200325203667, + 3.0003806545336693, 0.8686571039065044, -1.1938205666343755, + -3.0631188961723903, -4.725945286797896, -6.110949737494638, + -7.21162586795419, -8.077109176031037, -8.739663584046504, + -9.254967620978894, -9.650407818950917, -9.920420115992583, + -10.043743253312268, -9.991485721810271, -9.750614560281036, + -9.349210662475326, -8.874498393271615, -8.43653875619441, + -8.186679582695248, -8.251293283741697, -8.705556810392507, + -9.533067423743999, -10.660531397780897, -11.900960755015577, + -13.026452536516185, -13.844668197406126, -14.164467565088037, + -13.898284461943087, -13.054296456441898, -11.756175176920056, + -10.109643810277081, -8.329378902880777, -6.579617394273296, + -4.934657056386456, -3.494463255573937, -2.231709029041447, + -1.1181860158113848, -0.1402952096569953, 0.7435217014954227, + 1.503486640373294, 2.1013804388712116, 2.4912541724252812, + 2.6246119019905922, 2.490446911644397, 2.126290674751032, + 1.6002928171917516, 1.0013836387021882, 0.44844499137786703, + -0.0027812906940646405, -0.3154381202246562, -0.4954546332482874, + -0.599299845831567, -0.6920488120054705, -0.8291787950485715, + -1.040437915936274, -1.3087030806070297, -1.5941554209191011, + -1.825947472550347, -1.9408782779785612, -1.9068917753463561, + -1.7281504857782266, -1.4438396602182575, -1.1231097194503747, + -0.8417508348911158, -0.6395843761457324, -0.5340208910789592, + -0.4949916436208361, -0.46157280832076997, -0.36991720130747474, + -0.17348787337398938, 0.13193629586010705, 0.5068313166725855, + 0.8826980659397342, 1.1689169605395855, 1.3224361483290121, + 1.3514378906940745, 1.3407624381514047, 1.4501351024411377, + 1.8795804606120916, 2.828991659852377, 4.448053052851716, + 6.719060091816814, 9.619120342315002, 12.887229265969367, + 16.167285115490618 + ], + "pressure:J58:branch9_seg2": [ + 114240.96246576688, 132973.11408897451, 147216.18891231055, + 154878.6942629377, 156308.26443061544, 151902.02488286415, + 142595.62592276206, 129675.16137823675, 115366.33843657578, + 100281.611113271, 85410.21041431, 71062.6601669218, 56813.64957350967, + 42875.42100541054, 28689.89264071946, 14628.484957939836, + 712.1187376923483, -12761.925597757496, -24476.303560313998, + -34758.72965127507, -43327.59878623363, -49871.30337049116, + -55045.379427843225, -59010.530315003554, -62060.657516239065, + -64412.54849025155, -65873.78367996527, -66289.44928393808, + -65491.40425010773, -63498.29305118581, -60505.835916395605, + -57312.72806729399, -54739.817995176934, -53635.827520925755, + -54920.16897253872, -58899.90395624132, -65186.632912795176, + -73122.34651878312, -81416.7434285516, -88296.36989531585, + -92666.84970364452, -93495.3798390714, -90303.67837284626, + -83266.48427998679, -73917.75717391103, -62555.544106051064, + -50423.01067785179, -39288.20905352659, -28799.392978055723, + -19722.391182004932, -11961.635654930107, -4796.023048932625, + 1335.1451444718798, 6813.712089521679, 11602.53490280461, + 15069.002550781639, 17059.71822894469, 17328.475799427073, + 15834.101836717153, 12901.763243111944, 9159.43683114966, + 5186.401204417173, 1701.1375867235452, -938.3259019431697, + -2668.5013905422575, -3596.587624543934, -4150.969067390049, + -4808.829357127861, -5870.976607237407, -7465.072443724744, + -9308.130295525221, -11133.13487715956, -12499.450766923916, + -12909.424983905366, -12298.262802019812, -10810.519295152322, + -8794.9478197975, -6621.524537195745, -4937.909722272862, + -3872.4932037587214, -3351.593188149786, -3196.9169400805467, + -2924.934645405397, -2117.351473479077, -552.1074955134808, + 1711.9595876459546, 4274.775238554803, 6647.310785845293, + 8263.130002289286, 8920.994953448613, 8866.119968726853, + 8865.123710342941, 10093.567985778462, 13932.56054178384, + 21578.674344395677, 34129.20523732224, 50473.17325896896, + 70523.22589642396, 93299.69622543942, 114240.96246576688 + ], + "flow:branch28_seg0:J59": [ + 14.557046903700774, 17.745844754938453, 20.492113192787357, + 22.54877472777277, 23.73728053632028, 23.99763833469178, + 23.390147482013788, 22.09469972079295, 20.289198794259253, + 18.18115058942926, 15.962908767357614, 13.70220551245207, + 11.465382269639488, 9.249735189815635, 7.020358349407427, + 4.796796224034443, 2.566220736216167, 0.3872137119102033, + -1.6568879586161767, -3.5213435075472463, -5.133588222822229, + -6.475189901665792, -7.56156828916187, -8.419854335445583, + -9.098040194065582, -9.62787791928446, -10.019853334926335, + -10.263870500744307, -10.33712901954827, -10.222043563446778, + -9.932296499770734, -9.524605995558382, -9.092150992049604, + -8.76918308651362, -8.683130045502566, -8.932895509551686, + -9.548177052202103, -10.496046240607829, -11.638927931257914, + -12.792514004417805, -13.758110238062839, -14.336948627645604, + -14.402946507315942, -13.91116453004729, -12.912247293452292, + -11.497391339946123, -9.843118843534247, -8.100270477544138, + -6.390791787350228, -4.818827255809304, -3.401329558551166, + -2.1411959820152706, -1.0197371331321965, -0.010438174837396388, + 0.8740793334131914, 1.6114902654117251, 2.1575491434052063, + 2.465954475311253, 2.5130523124296302, 2.3133830712841945, + 1.9115184991013536, 1.3866489001015694, 0.8412846712060253, + 0.34634351669651187, -0.04037922965164565, -0.3047997132099923, + -0.47645220428258517, -0.605360772984414, -0.7462295724535574, + -0.9380378259714323, -1.1855867013538153, -1.4649256813059355, + -1.720799205080607, -1.8949741961522086, -1.9433995914139472, + -1.8514306392825524, -1.6383674058358526, -1.3573730651684188, + -1.072465104396797, -0.8358743622146024, -0.6792810763690071, + -0.593435745702757, -0.5377653945921682, -0.456686170281939, + -0.29912280089454046, -0.043866801667332984, 0.29404232431954946, + 0.6629300749771934, 0.9866659284897035, 1.210734706391109, + 1.3161146388448384, 1.3500681844354088, 1.4318468037840517, + 1.7330019374132883, 2.4471406397912383, 3.737306142257025, + 5.668439708044599, 8.247726440912393, 11.294443629341027, + 14.557046903700774 + ], + "pressure:branch28_seg0:J59": [ + 97112.1450268309, 116165.77855088304, 131909.6667492476, + 142690.6921507966, 147933.0736775196, 147518.63267178662, + 141986.38044856628, 132538.07167641382, 120571.30819483697, + 107080.0445836719, 93249.36024579813, 79371.6815764055, 65580.7190700417, + 51979.968151866175, 38194.48366974533, 24493.458803028592, + 10826.349849158769, -2515.256708680901, -14682.425439546014, + -25649.457151187926, -35039.3730549044, -42656.207510139335, + -48804.12139740123, -53632.78817866391, -57428.72813904223, + -60390.75299164268, -62488.19947240177, -63627.57991179083, + -63665.642623411666, -62540.78194068667, -60382.09079256677, + -57696.890814420076, -55126.2206516552, -53503.31299713847, + -53636.70558168921, -56018.15533550567, -60614.49269143177, + -67082.8036884057, -74436.23726401303, -81319.29564665938, + -86610.77508728048, -89157.54556920454, -88307.18127858875, + -83946.30885407893, -76809.49158806681, -67344.35114933367, + -56664.52688874912, -45975.88203148736, -35611.554363379284, + -26263.36772248027, -17957.04956340543, -10460.252725598431, + -3861.4932727116975, 2073.917849276968, 7263.595456618017, + 11410.040410260444, 14287.157652510457, 15623.971401129285, + 15318.15627949246, 13550.132929390302, 10707.701228872147, + 7286.822464097712, 3966.2504139453854, 1124.508199227843, + -997.1861030306359, -2365.7895723318375, -3252.4231377105652, + -4014.224150822133, -4962.308363637122, -6290.404546697346, + -7915.271284754147, -9649.60284225318, -11126.758923557167, + -11948.528103780369, -11925.049466404505, -11052.514287250631, + -9525.549869541963, -7683.311320457317, -5995.858468255557, + -4704.819540718073, -3911.831171421402, -3513.454420876722, + -3184.0392748156437, -2565.259957475181, -1384.2710641846436, + 415.2811581589901, 2633.299286409529, 4906.400094361198, + 6729.108844598834, 7831.864570965351, 8234.857766074005, + 8388.416576472911, 9171.644019269914, 11734.523736202178, + 17245.300740572264, 26723.870956729814, 40021.45259835885, + 57139.46354464874, 77020.65015989685, 97112.1450268309 + ], + "flow:J59:branch28_seg1": [ + 14.557046903700774, 17.745844754938453, 20.492113192787357, + 22.54877472777277, 23.73728053632028, 23.99763833469178, + 23.390147482013788, 22.09469972079295, 20.289198794259253, + 18.18115058942926, 15.962908767357614, 13.70220551245207, + 11.465382269639488, 9.249735189815635, 7.020358349407427, + 4.796796224034443, 2.566220736216167, 0.3872137119102033, + -1.6568879586161767, -3.5213435075472463, -5.133588222822229, + -6.475189901665792, -7.56156828916187, -8.419854335445583, + -9.098040194065582, -9.62787791928446, -10.019853334926335, + -10.263870500744307, -10.33712901954827, -10.222043563446778, + -9.932296499770734, -9.524605995558382, -9.092150992049604, + -8.76918308651362, -8.683130045502566, -8.932895509551686, + -9.548177052202103, -10.496046240607829, -11.638927931257914, + -12.792514004417805, -13.758110238062839, -14.336948627645604, + -14.402946507315942, -13.91116453004729, -12.912247293452292, + -11.497391339946123, -9.843118843534247, -8.100270477544138, + -6.390791787350228, -4.818827255809304, -3.401329558551166, + -2.1411959820152706, -1.0197371331321965, -0.010438174837396388, + 0.8740793334131914, 1.6114902654117251, 2.1575491434052063, + 2.465954475311253, 2.5130523124296302, 2.3133830712841945, + 1.9115184991013536, 1.3866489001015694, 0.8412846712060253, + 0.34634351669651187, -0.04037922965164565, -0.3047997132099923, + -0.47645220428258517, -0.605360772984414, -0.7462295724535574, + -0.9380378259714323, -1.1855867013538153, -1.4649256813059355, + -1.720799205080607, -1.8949741961522086, -1.9433995914139472, + -1.8514306392825524, -1.6383674058358526, -1.3573730651684188, + -1.072465104396797, -0.8358743622146024, -0.6792810763690071, + -0.593435745702757, -0.5377653945921682, -0.456686170281939, + -0.29912280089454046, -0.043866801667332984, 0.29404232431954946, + 0.6629300749771934, 0.9866659284897035, 1.210734706391109, + 1.3161146388448384, 1.3500681844354088, 1.4318468037840517, + 1.7330019374132883, 2.4471406397912383, 3.737306142257025, + 5.668439708044599, 8.247726440912393, 11.294443629341027, + 14.557046903700774 + ], + "pressure:J59:branch28_seg1": [ + 97112.1450268309, 116165.77855088304, 131909.6667492476, + 142690.6921507966, 147933.0736775196, 147518.63267178662, + 141986.38044856628, 132538.07167641382, 120571.30819483697, + 107080.0445836719, 93249.36024579813, 79371.6815764055, 65580.7190700417, + 51979.968151866175, 38194.48366974533, 24493.458803028592, + 10826.349849158769, -2515.256708680901, -14682.425439546014, + -25649.457151187926, -35039.3730549044, -42656.207510139335, + -48804.12139740123, -53632.78817866391, -57428.72813904223, + -60390.75299164268, -62488.19947240177, -63627.57991179083, + -63665.642623411666, -62540.78194068667, -60382.09079256677, + -57696.890814420076, -55126.2206516552, -53503.31299713847, + -53636.70558168921, -56018.15533550567, -60614.49269143177, + -67082.8036884057, -74436.23726401303, -81319.29564665938, + -86610.77508728048, -89157.54556920454, -88307.18127858875, + -83946.30885407893, -76809.49158806681, -67344.35114933367, + -56664.52688874912, -45975.88203148736, -35611.554363379284, + -26263.36772248027, -17957.04956340543, -10460.252725598431, + -3861.4932727116975, 2073.917849276968, 7263.595456618017, + 11410.040410260444, 14287.157652510457, 15623.971401129285, + 15318.15627949246, 13550.132929390302, 10707.701228872147, + 7286.822464097712, 3966.2504139453854, 1124.508199227843, + -997.1861030306359, -2365.7895723318375, -3252.4231377105652, + -4014.224150822133, -4962.308363637122, -6290.404546697346, + -7915.271284754147, -9649.60284225318, -11126.758923557167, + -11948.528103780369, -11925.049466404505, -11052.514287250631, + -9525.549869541963, -7683.311320457317, -5995.858468255557, + -4704.819540718073, -3911.831171421402, -3513.454420876722, + -3184.0392748156437, -2565.259957475181, -1384.2710641846436, + 415.2811581589901, 2633.299286409529, 4906.400094361198, + 6729.108844598834, 7831.864570965351, 8234.857766074005, + 8388.416576472911, 9171.644019269914, 11734.523736202178, + 17245.300740572264, 26723.870956729814, 40021.45259835885, + 57139.46354464874, 77020.65015989685, 97112.1450268309 + ], + "flow:branch28_seg1:J60": [ + 14.5522253265971, 17.741653138393296, 20.48879587209685, + 22.546837273033145, 23.73682218630941, 23.99839824188582, + 23.39182216650738, 22.09750648475415, 20.292255991541506, + 18.184251077260818, 15.966302178360737, 13.705436715911521, + 11.468620161035206, 9.253026966704104, 7.02351184664028, + 4.800088418044384, 2.5695416446513533, 0.39024151500255067, + -1.6540690145460055, -3.5188830763174965, -5.131532234179561, + -6.47351784687802, -7.5602604246156, -8.418824206536533, + -9.097228131475843, -9.627262794383835, -10.019457829605185, + -10.263727362036933, -10.337283060418123, -10.22244209137315, + -9.932918088649071, -9.52527537450757, -9.09264237818788, + -8.769384553881357, -8.682859543685252, -8.932098306326653, + -9.546811880892086, -10.49439478969995, -11.637204453843117, + -12.79097747365742, -13.75716867806242, -14.336707049528888, + -14.4035568003365, -13.912579014063896, -12.91428340228325, + -11.499871981874973, -9.845802992020054, -8.102863768748742, + -6.393188060465534, -4.820986503134058, -3.4032228730101264, + -2.142945551193969, -1.0212450896924166, -0.011743583821317696, + 0.8729180099691511, 1.610637775524807, 2.157055433293761, + 2.4658327965619646, 2.513279791072899, 2.313980127804184, + 1.9122848434708422, 1.3873936424667133, 0.8420562696570018, + 0.34695096479042253, -0.03998123206775004, -0.3045326741906255, + -0.47626684891542326, -0.6051719663103287, -0.7459612680786124, + -0.9376722809884048, -1.1851686873053073, -1.4645186311610041, + -1.720500045030496, -1.8948695220016143, -1.9435216241721518, + -1.8517482417665692, -1.6387843531635153, -1.3578397964060542, + -1.0728317976905661, -0.8361032283525522, -0.6794142762258523, + -0.5935131956224473, -0.537867262463534, -0.45689528245848376, + -0.29946914615912, -0.04436542713739557, 0.29348879042640585, + 0.6624636911860603, 0.9862976000122221, 1.210551461946931, + 1.31607807191131, 1.3500038738024347, 1.4315001973751065, + 1.732084053137119, 2.4453692152161794, 3.734507118354784, + 5.664738115463315, 8.243171574138149, 11.289284361165167, 14.5522253265971 + ], + "pressure:branch28_seg1:J60": [ + 96008.63931253072, 115063.80237406632, 130885.18303674403, + 141832.6203387494, 147280.27691056646, 147080.27192700206, + 141754.3516818369, 132493.14638586348, 120647.41698813996, + 107252.31151935314, 93485.64661279495, 79645.34744780048, + 65901.03016083164, 52339.22207143762, 38601.76705869497, + 24949.180599612257, 11318.73353541323, -1992.0101993353203, + -14160.71737492665, -25147.02041760095, -34564.79694386592, + -42224.109092065424, -48410.14743063086, -53271.4171995883, + -57095.00688893141, -60079.848186017436, -62204.378029988824, + -63378.96701232758, -63461.345923785586, -62384.27709841906, + -60272.26074409359, -57613.244949653075, -55040.18004755783, + -53382.557946280845, -53444.93470273569, -55729.93592769752, + -60225.21742632008, -66608.44298611536, -73906.49126643763, + -80791.29568667976, -86137.03370769843, -88783.34305286402, + -88069.1874227525, -83860.77799834686, -76854.15893108239, + -67499.44053992126, -56902.91369953216, -46245.53890611382, + -35895.51696651768, -26541.767334689626, -18218.355131089014, + -10716.363268374833, -4105.454061412971, 1840.094415349696, + 7041.225796783796, 11217.187873320252, 14137.080904676446, + 15529.720848845542, 15287.63934830043, 13582.820581370142, + 10786.528887709152, 7395.131885570484, 4082.2644747262925, + 1227.0642838203642, -915.6653730927262, -2306.8231274116574, + -3208.3583091780365, -3971.000428883259, -4907.333517096809, + -6216.0021037558945, -7824.722134087292, -9551.981002122386, + -11035.692936985077, -11881.609779594623, -11892.528745446498, + -11055.431389761356, -9556.129645070368, -7731.078527516281, + -6041.0951664925415, -4736.562347584295, -3927.677989913773, + -3517.104519397696, -3187.740845206892, -2584.0027268908652, + -1429.0028338418115, 340.5514223002718, 2537.87751746695, + 4804.606576475342, 6639.036652672267, 7767.701431867627, + 8195.083501301657, 8353.50945283349, 9103.712140872432, + 11582.688500440723, 16956.228437135287, 26244.3121598295, + 39347.59725028029, 56274.905640893194, 75981.23411438907, + 96008.63931253072 + ], + "flow:J60:branch28_seg2": [ + 14.5522253265971, 17.741653138393296, 20.48879587209685, + 22.546837273033145, 23.73682218630941, 23.99839824188582, + 23.39182216650738, 22.09750648475415, 20.292255991541506, + 18.184251077260818, 15.966302178360737, 13.705436715911521, + 11.468620161035206, 9.253026966704104, 7.02351184664028, + 4.800088418044384, 2.5695416446513533, 0.39024151500255067, + -1.6540690145460055, -3.5188830763174965, -5.131532234179561, + -6.47351784687802, -7.5602604246156, -8.418824206536533, + -9.097228131475843, -9.627262794383835, -10.019457829605185, + -10.263727362036933, -10.337283060418123, -10.22244209137315, + -9.932918088649071, -9.52527537450757, -9.09264237818788, + -8.769384553881357, -8.682859543685252, -8.932098306326653, + -9.546811880892086, -10.49439478969995, -11.637204453843117, + -12.79097747365742, -13.75716867806242, -14.336707049528888, + -14.4035568003365, -13.912579014063896, -12.91428340228325, + -11.499871981874973, -9.845802992020054, -8.102863768748742, + -6.393188060465534, -4.820986503134058, -3.4032228730101264, + -2.142945551193969, -1.0212450896924166, -0.011743583821317696, + 0.8729180099691511, 1.610637775524807, 2.157055433293761, + 2.4658327965619646, 2.513279791072899, 2.313980127804184, + 1.9122848434708422, 1.3873936424667133, 0.8420562696570018, + 0.34695096479042253, -0.03998123206775004, -0.3045326741906255, + -0.47626684891542326, -0.6051719663103287, -0.7459612680786124, + -0.9376722809884048, -1.1851686873053073, -1.4645186311610041, + -1.720500045030496, -1.8948695220016143, -1.9435216241721518, + -1.8517482417665692, -1.6387843531635153, -1.3578397964060542, + -1.0728317976905661, -0.8361032283525522, -0.6794142762258523, + -0.5935131956224473, -0.537867262463534, -0.45689528245848376, + -0.29946914615912, -0.04436542713739557, 0.29348879042640585, + 0.6624636911860603, 0.9862976000122221, 1.210551461946931, + 1.31607807191131, 1.3500038738024347, 1.4315001973751065, + 1.732084053137119, 2.4453692152161794, 3.734507118354784, + 5.664738115463315, 8.243171574138149, 11.289284361165167, 14.5522253265971 + ], + "pressure:J60:branch28_seg2": [ + 96008.63931253072, 115063.80237406632, 130885.18303674403, + 141832.6203387494, 147280.27691056646, 147080.27192700206, + 141754.3516818369, 132493.14638586348, 120647.41698813996, + 107252.31151935314, 93485.64661279495, 79645.34744780048, + 65901.03016083164, 52339.22207143762, 38601.76705869497, + 24949.180599612257, 11318.73353541323, -1992.0101993353203, + -14160.71737492665, -25147.02041760095, -34564.79694386592, + -42224.109092065424, -48410.14743063086, -53271.4171995883, + -57095.00688893141, -60079.848186017436, -62204.378029988824, + -63378.96701232758, -63461.345923785586, -62384.27709841906, + -60272.26074409359, -57613.244949653075, -55040.18004755783, + -53382.557946280845, -53444.93470273569, -55729.93592769752, + -60225.21742632008, -66608.44298611536, -73906.49126643763, + -80791.29568667976, -86137.03370769843, -88783.34305286402, + -88069.1874227525, -83860.77799834686, -76854.15893108239, + -67499.44053992126, -56902.91369953216, -46245.53890611382, + -35895.51696651768, -26541.767334689626, -18218.355131089014, + -10716.363268374833, -4105.454061412971, 1840.094415349696, + 7041.225796783796, 11217.187873320252, 14137.080904676446, + 15529.720848845542, 15287.63934830043, 13582.820581370142, + 10786.528887709152, 7395.131885570484, 4082.2644747262925, + 1227.0642838203642, -915.6653730927262, -2306.8231274116574, + -3208.3583091780365, -3971.000428883259, -4907.333517096809, + -6216.0021037558945, -7824.722134087292, -9551.981002122386, + -11035.692936985077, -11881.609779594623, -11892.528745446498, + -11055.431389761356, -9556.129645070368, -7731.078527516281, + -6041.0951664925415, -4736.562347584295, -3927.677989913773, + -3517.104519397696, -3187.740845206892, -2584.0027268908652, + -1429.0028338418115, 340.5514223002718, 2537.87751746695, + 4804.606576475342, 6639.036652672267, 7767.701431867627, + 8195.083501301657, 8353.50945283349, 9103.712140872432, + 11582.688500440723, 16956.228437135287, 26244.3121598295, + 39347.59725028029, 56274.905640893194, 75981.23411438907, + 96008.63931253072 + ], + "flow:branch30_seg0:J61": [ + 35.44569196601404, 39.55343902586221, 41.508155096852306, + 41.1858613334789, 38.93131235582157, 35.13512778386305, 30.3167186235701, + 25.209536171259966, 20.400143954660916, 15.850357684387948, + 12.017421820347352, 8.595488667930116, 5.3375635173444085, + 2.283933107347043, -0.9336126535811252, -4.071043350155529, + -7.103789231029849, -9.951719453126167, -12.164382065731738, + -13.885897859933628, -15.044403175226172, -15.66625510844697, + -16.015880030214056, -16.16768183270583, -16.23505779359248, + -16.238354774865723, -16.078780962040522, -15.665110625135577, + -14.92766679223955, -13.882104738152549, -12.652085690974543, + -11.55832428530736, -10.86122755339403, -10.88791812567639, + -11.831375992416442, -13.67910526347614, -16.15171034858057, + -18.89991343856558, -21.40755976105039, -23.03807849680689, + -23.552906381351825, -22.693814360565305, -20.51261975464769, + -17.29924690978994, -13.639543799982247, -9.769416163138203, + -6.211768858261885, -3.320907396893404, -0.9404263541038327, + 0.7859711237085898, 2.11380759228646, 3.261023962852273, + 4.190607053993834, 5.04965378534912, 5.694513647607058, + 5.9647105772962155, 5.797400186677576, 5.10419005911459, + 3.944516916851885, 2.4969140652475716, 1.025557915066125, + -0.3142130646856012, -1.236111979863839, -1.723961886013405, + -1.8557645721543827, -1.7335674547873103, -1.5852553770039608, + -1.5916391488868702, -1.8351434180338009, -2.3082598855086225, + -2.864197283482896, -3.3551760704309515, -3.5916066553688824, + -3.449545456204262, -2.9487499729313726, -2.202805385092235, + -1.3785012682828979, -0.6656559721166555, -0.2500014662330695, + -0.11421806837703535, -0.20640397086807838, -0.3681766404763587, + -0.39720238882699493, -0.15338175523410177, 0.40075894066535633, + 1.1815594936474183, 1.9785841510744753, 2.6122973078054534, + 2.8643558383332213, 2.731889187927903, 2.3931150157044603, + 2.1886984312457196, 2.592069192900076, 4.071539673947583, + 6.969435758346297, 11.455105943857154, 17.030646147328163, + 23.508160925313682, 30.03464682299056, 35.44569196601404 + ], + "pressure:branch30_seg0:J61": [ + 184787.9543089167, 200303.20133343135, 206656.3946936274, + 200084.9780953518, 184819.06816208918, 164071.59784372558, + 139839.97182371776, 112980.50385946478, 91042.03165953544, + 70192.13436336262, 51414.215555885734, 36183.40915176392, + 19959.920204684273, 4870.19652186593, -10530.67558041409, + -26455.051079058943, -40770.83353989952, -54209.39927303048, + -64190.98371820427, -71005.91394589248, -75978.37696375482, + -78157.30232318019, -79252.53277914222, -79851.18066696596, + -79962.07347274426, -79818.21927246012, -78636.13646773629, + -75948.57649947684, -71556.10284911984, -66020.6399655578, + -59698.42257100086, -54838.56019160711, -52842.048748591405, + -54454.31291525943, -60913.9621918278, -71657.67943214302, + -84971.28132010854, -98168.24306362384, -109757.16998301345, + -115814.43369357266, -115415.48143869573, -108737.62048274916, + -95597.3156527395, -77712.60119049618, -59254.41178468349, + -40791.867172311584, -23396.254364471963, -10843.949193879453, + -532.8903698384581, 7250.963294245942, 12666.438983857453, + 18403.08108422984, 22601.795534016797, 26172.27586971577, + 29162.96309717498, 29522.10828475824, 27591.53808599309, + 23249.445926523345, 16857.767745023564, 9092.945623357222, + 2170.171195408869, -3641.6135387517447, -7666.349922061349, + -9020.973978118023, -9034.271362958909, -8257.850791828647, + -7584.365157584694, -8022.172092992226, -9752.956289317695, + -12502.60386563466, -15240.090636109995, -17249.70513609887, + -17873.840817080003, -16367.992610510146, -13151.914850020683, + -9108.747780144613, -5238.3981160962385, -1941.3114543482188, + -599.8963732763722, -663.0353651857672, -1330.7007115653269, + -2050.0119795223645, -1796.6179230444409, 36.69635668312549, + 3298.608354540639, 7532.122154272466, 11240.084087146739, + 13679.969001478643, 14286.610119351139, 12885.093941607303, + 11024.240558044992, 10742.578662310367, 14429.161424422658, + 24271.385910569632, 41483.907223014576, 67050.65223422229, + 96328.68428236213, 128278.32419906222, 161636.4920288948, + 184787.9543089167 + ], + "flow:J61:branch30_seg1": [ + 35.44569196601404, 39.55343902586221, 41.508155096852306, + 41.1858613334789, 38.93131235582157, 35.13512778386305, 30.3167186235701, + 25.209536171259966, 20.400143954660916, 15.850357684387948, + 12.017421820347352, 8.595488667930116, 5.3375635173444085, + 2.283933107347043, -0.9336126535811252, -4.071043350155529, + -7.103789231029849, -9.951719453126167, -12.164382065731738, + -13.885897859933628, -15.044403175226172, -15.66625510844697, + -16.015880030214056, -16.16768183270583, -16.23505779359248, + -16.238354774865723, -16.078780962040522, -15.665110625135577, + -14.92766679223955, -13.882104738152549, -12.652085690974543, + -11.55832428530736, -10.86122755339403, -10.88791812567639, + -11.831375992416442, -13.67910526347614, -16.15171034858057, + -18.89991343856558, -21.40755976105039, -23.03807849680689, + -23.552906381351825, -22.693814360565305, -20.51261975464769, + -17.29924690978994, -13.639543799982247, -9.769416163138203, + -6.211768858261885, -3.320907396893404, -0.9404263541038327, + 0.7859711237085898, 2.11380759228646, 3.261023962852273, + 4.190607053993834, 5.04965378534912, 5.694513647607058, + 5.9647105772962155, 5.797400186677576, 5.10419005911459, + 3.944516916851885, 2.4969140652475716, 1.025557915066125, + -0.3142130646856012, -1.236111979863839, -1.723961886013405, + -1.8557645721543827, -1.7335674547873103, -1.5852553770039608, + -1.5916391488868702, -1.8351434180338009, -2.3082598855086225, + -2.864197283482896, -3.3551760704309515, -3.5916066553688824, + -3.449545456204262, -2.9487499729313726, -2.202805385092235, + -1.3785012682828979, -0.6656559721166555, -0.2500014662330695, + -0.11421806837703535, -0.20640397086807838, -0.3681766404763587, + -0.39720238882699493, -0.15338175523410177, 0.40075894066535633, + 1.1815594936474183, 1.9785841510744753, 2.6122973078054534, + 2.8643558383332213, 2.731889187927903, 2.3931150157044603, + 2.1886984312457196, 2.592069192900076, 4.071539673947583, + 6.969435758346297, 11.455105943857154, 17.030646147328163, + 23.508160925313682, 30.03464682299056, 35.44569196601404 + ], + "pressure:J61:branch30_seg1": [ + 184787.9543089167, 200303.20133343135, 206656.3946936274, + 200084.9780953518, 184819.06816208918, 164071.59784372558, + 139839.97182371776, 112980.50385946478, 91042.03165953544, + 70192.13436336262, 51414.215555885734, 36183.40915176392, + 19959.920204684273, 4870.19652186593, -10530.67558041409, + -26455.051079058943, -40770.83353989952, -54209.39927303048, + -64190.98371820427, -71005.91394589248, -75978.37696375482, + -78157.30232318019, -79252.53277914222, -79851.18066696596, + -79962.07347274426, -79818.21927246012, -78636.13646773629, + -75948.57649947684, -71556.10284911984, -66020.6399655578, + -59698.42257100086, -54838.56019160711, -52842.048748591405, + -54454.31291525943, -60913.9621918278, -71657.67943214302, + -84971.28132010854, -98168.24306362384, -109757.16998301345, + -115814.43369357266, -115415.48143869573, -108737.62048274916, + -95597.3156527395, -77712.60119049618, -59254.41178468349, + -40791.867172311584, -23396.254364471963, -10843.949193879453, + -532.8903698384581, 7250.963294245942, 12666.438983857453, + 18403.08108422984, 22601.795534016797, 26172.27586971577, + 29162.96309717498, 29522.10828475824, 27591.53808599309, + 23249.445926523345, 16857.767745023564, 9092.945623357222, + 2170.171195408869, -3641.6135387517447, -7666.349922061349, + -9020.973978118023, -9034.271362958909, -8257.850791828647, + -7584.365157584694, -8022.172092992226, -9752.956289317695, + -12502.60386563466, -15240.090636109995, -17249.70513609887, + -17873.840817080003, -16367.992610510146, -13151.914850020683, + -9108.747780144613, -5238.3981160962385, -1941.3114543482188, + -599.8963732763722, -663.0353651857672, -1330.7007115653269, + -2050.0119795223645, -1796.6179230444409, 36.69635668312549, + 3298.608354540639, 7532.122154272466, 11240.084087146739, + 13679.969001478643, 14286.610119351139, 12885.093941607303, + 11024.240558044992, 10742.578662310367, 14429.161424422658, + 24271.385910569632, 41483.907223014576, 67050.65223422229, + 96328.68428236213, 128278.32419906222, 161636.4920288948, + 184787.9543089167 + ], + "flow:branch30_seg1:J62": [ + 35.37930927505883, 39.52233035767919, 41.502676948520836, + 41.20644062177467, 38.98522647305723, 35.206395436693235, + 30.383866574304943, 25.30249968315744, 20.463949225637005, + 15.891573878499043, 12.070561103232244, 8.63202642542787, + 5.375934374709063, 2.321319061702023, -0.9128935428346547, + -4.034732309452247, -7.070921261298009, -9.943009814194241, + -12.145957678986202, -13.87425869246522, -15.04154847557914, + -15.66016065932629, -16.015680192715838, -16.167143652856627, + -16.23339425369556, -16.239751346272513, -16.082998934500676, + -15.674013554125413, -14.942831414513638, -13.899993239565616, + -12.669891331663761, -11.571930977741673, -10.862080462019378, + -10.875193379627925, -11.808431007700657, -13.650153156997941, + -16.109899717257175, -18.871943585691845, -21.39011240775593, + -23.03175811623155, -23.567845377548142, -22.721175218469874, + -20.54639921378923, -17.328095906713138, -13.681553865862035, + -9.810895243664703, -6.239970505123331, -3.354201687224626, + -0.9585637246139551, 0.7685164760918514, 2.093296892891194, + 3.2463355757874552, 4.176395547505649, 5.039224292584935, + 5.687123784205499, 5.964433317523387, 5.806284711023469, + 5.121215851068141, 3.9623351995594076, 2.5230690731099084, + 1.0429178658337261, -0.3092954084461811, -1.22912172717839, + -1.7225560176293766, -1.8597177564811442, -1.7355905535941412, + -1.584979527478772, -1.5891010150264007, -1.8301389746475256, + -2.3036052467630133, -2.8586187099839524, -3.3511906236731397, + -3.5931251844088026, -3.4543669399029513, -2.957827687872612, + -2.214230882720127, -1.3898897490298225, -0.6735820054697566, + -0.25350930137692124, -0.11319205887111905, -0.20321199608253757, + -0.3674363590342912, -0.3999440382503647, -0.16129805807025366, + 0.391195956338659, 1.1683502140638473, 1.9705118930359409, + 2.6131102722857245, 2.86639859139832, 2.7358321640874617, + 2.3961956400234934, 2.185419426381436, 2.576844543662793, + 4.0411266604646965, 6.92155754930969, 11.404267679391088, + 16.96142532580247, 23.41401085125656, 29.965943506024008, + 35.37930927505883 + ], + "pressure:branch30_seg1:J62": [ + 177162.1185859915, 194977.99768287694, 203009.7122420342, + 199119.00696487824, 186266.1214955385, 166912.96234331146, + 143255.1429103526, 117671.56468865991, 94960.59268536772, + 73514.74970906055, 54935.17923890182, 38992.48956091926, + 23067.09891991144, 8138.544622712988, -7363.416534625701, + -22794.650044196, -37303.1692565763, -50981.483510205995, + -61234.59897391479, -68819.41105417443, -74134.94258601616, + -76700.34601441007, -78118.51831502028, -78775.89051955887, + -78987.36871445297, -78940.34669472564, -77980.93014068609, + -75671.00537376567, -71739.2395310891, -66483.31941304114, + -60369.357565137754, -55289.228441457344, -52548.46785470728, + -53323.98814533199, -58750.71573099856, -68507.51722306684, + -81037.20483601592, -94323.64223939885, -106199.34429113725, + -113237.02777620894, -114391.3862699705, -109063.81609225414, + -97278.64761014568, -80572.18987772922, -62632.50923098616, + -44094.05818179453, -26765.485862755635, -13585.861967538598, + -2625.0939459554293, 5408.108600838652, 11285.18342018141, + 16952.972047142863, 21276.922680330776, 25141.74269369322, + 28212.553624011813, 29085.49466494253, 27772.442084614577, + 23992.9653707913, 18026.102576582085, 10716.350084057329, + 3657.6003570548723, -2522.7851448636484, -6758.561614715182, + -8647.923002263591, -8998.775534987088, -8308.295242877839, + -7601.491723507662, -7821.281390500391, -9259.183405205775, + -11776.19734108434, -14472.188590859305, -16665.726270178653, + -17575.833110309875, -16499.187306231463, -13711.256370967269, + -9912.81999654592, -6004.082390214203, -2620.4420410227403, + -928.4628500417916, -608.2921003827312, -1143.799639719157, + -1902.9865242692126, -1866.0953023653458, -397.86398868431905, + 2550.9380496855138, 6518.995708892173, 10324.934685922137, + 13111.891609556471, 14038.289068155322, 13033.336235534616, + 11281.600272131964, 10612.651790993415, 13357.60759598435, + 21753.005229315342, 37232.84188077876, 60802.17151730274, + 88710.35565568818, 120097.25875848853, 152630.78782005142, + 177162.1185859915 + ], + "flow:J62:branch30_seg2": [ + 35.37930927505883, 39.52233035767919, 41.502676948520836, + 41.20644062177467, 38.98522647305723, 35.206395436693235, + 30.383866574304943, 25.30249968315744, 20.463949225637005, + 15.891573878499043, 12.070561103232244, 8.63202642542787, + 5.375934374709063, 2.321319061702023, -0.9128935428346547, + -4.034732309452247, -7.070921261298009, -9.943009814194241, + -12.145957678986202, -13.87425869246522, -15.04154847557914, + -15.66016065932629, -16.015680192715838, -16.167143652856627, + -16.23339425369556, -16.239751346272513, -16.082998934500676, + -15.674013554125413, -14.942831414513638, -13.899993239565616, + -12.669891331663761, -11.571930977741673, -10.862080462019378, + -10.875193379627925, -11.808431007700657, -13.650153156997941, + -16.109899717257175, -18.871943585691845, -21.39011240775593, + -23.03175811623155, -23.567845377548142, -22.721175218469874, + -20.54639921378923, -17.328095906713138, -13.681553865862035, + -9.810895243664703, -6.239970505123331, -3.354201687224626, + -0.9585637246139551, 0.7685164760918514, 2.093296892891194, + 3.2463355757874552, 4.176395547505649, 5.039224292584935, + 5.687123784205499, 5.964433317523387, 5.806284711023469, + 5.121215851068141, 3.9623351995594076, 2.5230690731099084, + 1.0429178658337261, -0.3092954084461811, -1.22912172717839, + -1.7225560176293766, -1.8597177564811442, -1.7355905535941412, + -1.584979527478772, -1.5891010150264007, -1.8301389746475256, + -2.3036052467630133, -2.8586187099839524, -3.3511906236731397, + -3.5931251844088026, -3.4543669399029513, -2.957827687872612, + -2.214230882720127, -1.3898897490298225, -0.6735820054697566, + -0.25350930137692124, -0.11319205887111905, -0.20321199608253757, + -0.3674363590342912, -0.3999440382503647, -0.16129805807025366, + 0.391195956338659, 1.1683502140638473, 1.9705118930359409, + 2.6131102722857245, 2.86639859139832, 2.7358321640874617, + 2.3961956400234934, 2.185419426381436, 2.576844543662793, + 4.0411266604646965, 6.92155754930969, 11.404267679391088, + 16.96142532580247, 23.41401085125656, 29.965943506024008, + 35.37930927505883 + ], + "pressure:J62:branch30_seg2": [ + 177162.1185859915, 194977.99768287694, 203009.7122420342, + 199119.00696487824, 186266.1214955385, 166912.96234331146, + 143255.1429103526, 117671.56468865991, 94960.59268536772, + 73514.74970906055, 54935.17923890182, 38992.48956091926, + 23067.09891991144, 8138.544622712988, -7363.416534625701, + -22794.650044196, -37303.1692565763, -50981.483510205995, + -61234.59897391479, -68819.41105417443, -74134.94258601616, + -76700.34601441007, -78118.51831502028, -78775.89051955887, + -78987.36871445297, -78940.34669472564, -77980.93014068609, + -75671.00537376567, -71739.2395310891, -66483.31941304114, + -60369.357565137754, -55289.228441457344, -52548.46785470728, + -53323.98814533199, -58750.71573099856, -68507.51722306684, + -81037.20483601592, -94323.64223939885, -106199.34429113725, + -113237.02777620894, -114391.3862699705, -109063.81609225414, + -97278.64761014568, -80572.18987772922, -62632.50923098616, + -44094.05818179453, -26765.485862755635, -13585.861967538598, + -2625.0939459554293, 5408.108600838652, 11285.18342018141, + 16952.972047142863, 21276.922680330776, 25141.74269369322, + 28212.553624011813, 29085.49466494253, 27772.442084614577, + 23992.9653707913, 18026.102576582085, 10716.350084057329, + 3657.6003570548723, -2522.7851448636484, -6758.561614715182, + -8647.923002263591, -8998.775534987088, -8308.295242877839, + -7601.491723507662, -7821.281390500391, -9259.183405205775, + -11776.19734108434, -14472.188590859305, -16665.726270178653, + -17575.833110309875, -16499.187306231463, -13711.256370967269, + -9912.81999654592, -6004.082390214203, -2620.4420410227403, + -928.4628500417916, -608.2921003827312, -1143.799639719157, + -1902.9865242692126, -1866.0953023653458, -397.86398868431905, + 2550.9380496855138, 6518.995708892173, 10324.934685922137, + 13111.891609556471, 14038.289068155322, 13033.336235534616, + 11281.600272131964, 10612.651790993415, 13357.60759598435, + 21753.005229315342, 37232.84188077876, 60802.17151730274, + 88710.35565568818, 120097.25875848853, 152630.78782005142, + 177162.1185859915 + ], + "flow:branch35_seg0:J63": [ + 27.26286351868443, 31.10837550391613, 33.36138059758876, + 33.869424104317865, 32.71551487392055, 30.139075486164256, + 26.547199089035278, 22.541882580543696, 18.49935261854893, + 14.654263452826228, 11.322562295462088, 8.31649783504125, + 5.5659626078265525, 2.978750843694146, 0.33075094456427007, + -2.2494539734736376, -4.805104821565847, -7.213933930468564, + -9.201169258186601, -10.81158203523771, -11.945511946303364, + -12.638507330562568, -13.046940745973862, -13.24586679643104, + -13.345529689205687, -13.378470054826192, -13.299331083856778, + -13.042412041829259, -12.542684935491542, -11.782837972291285, + -10.840921831021499, -9.914494755720337, -9.214658848256514, + -9.015905954482744, -9.499150623495982, -10.715837472129381, + -12.517000036422633, -14.682290133383452, -16.7870158718416, + -18.37911671313844, -19.172926893707547, -18.90190604610815, + -17.548873888834137, -15.277298184061381, -12.466280897212775, + -9.356023707325452, -6.378221816684642, -3.8038975257946395, + -1.6506876861936957, -0.02985306922004799, 1.228304724546118, + 2.2539737480241904, 3.096761014027536, 3.8559203074503654, + 4.450663402429436, 4.796298008319611, 4.808840521563514, + 4.409358989366194, 3.6125243470082586, 2.5380707248152325, + 1.3443822557578389, 0.2016554774614112, -0.665859686300463, + -1.2176014109064364, -1.4514521097254767, -1.4390439060831504, + -1.3444752176303738, -1.3146217348681495, -1.4448496358089538, + -1.760428940595688, -2.181966157714037, -2.601213453624914, + -2.8659626285119963, -2.865257781595679, -2.575639307222964, + -2.0517880522382086, -1.4084609269370458, -0.8015300300296864, + -0.3738504846659506, -0.16449018075295166, -0.16305787142573788, + -0.26373362878094114, -0.31663185385054826, -0.19635697264339252, + 0.16267564274122978, 0.7237875662674201, 1.366145082929762, + 1.9347732842905832, 2.2480478973468214, 2.265785544253638, + 2.064218056164933, 1.8677123287163713, 2.0237853470824523, + 2.9111651110261834, 4.849849326956859, 8.02052800184065, + 12.204754402380111, 17.243495303134267, 22.51443325093358, + 27.26286351868443 + ], + "pressure:branch35_seg0:J63": [ + 169876.6633194596, 189334.34103585593, 199615.28000615735, + 198434.22936636675, 188099.62002263978, 170590.55971776642, + 148217.17137823504, 123425.83323337756, 100327.85283886218, + 78604.65255882627, 59565.49950105493, 42981.79071691552, + 26927.13128170439, 11825.011995294873, -3683.4136603220027, + -18943.02420882302, -33617.60569005672, -47522.014672543846, + -58222.91640337499, -66489.8980986036, -72392.58338409718, + -75547.1584396235, -77386.57410350237, -78277.72614443177, + -78635.41891014227, -78700.44945481734, -77930.29972487861, + -75927.15284821796, -72389.19990580568, -67478.43714336382, + -61620.318134995585, -56422.37010719017, -53220.376802410035, + -53221.276940601114, -57635.807661631254, -66349.58970658705, + -78035.44054022247, -91019.36746709357, -103012.54291554811, + -110871.88161436889, -113324.14586625539, -109464.5109554723, + -99244.63820334976, -83835.44042006794, -66712.65746348203, + -48458.582927459436, -31013.857913792686, -17228.08908583686, + -5605.038598635517, 3059.299478855233, 9475.815255035168, + 15397.277443507144, 19986.33946589432, 24019.499461687934, + 27304.671251053263, 28617.33323605289, 27837.95832395452, + 24650.210423512148, 19221.55395869502, 12337.406220672287, + 5313.088571477825, -1015.2090462183261, -5558.975739775683, + -7968.531114120812, -8733.13272311016, -8322.071136189441, + -7700.337068393633, -7792.894263953043, -8976.36239971508, + -11236.697922056337, -13795.700430430572, -16045.865474002125, + -17211.43447108454, -16546.47966325519, -14198.757119296948, + -10720.980733059869, -6929.210769714602, -3477.41073486285, + -1473.01455088423, -817.088237558952, -1096.168277983008, + -1763.5676251984876, -1841.005687121919, -660.9453005354964, + 1953.2862790866911, 5635.577128349456, 9406.738945188272, + 12371.368689324925, 13629.271845880387, 13062.031691416416, + 11559.80713544443, 10772.133208844361, 12866.384718454981, + 20064.833982851982, 33895.166131303784, 55588.807245856304, + 81929.33703796865, 112169.85265870646, 144327.47761871965, + 169876.6633194596 + ], + "flow:J63:branch35_seg1": [ + 27.26286351868443, 31.10837550391613, 33.36138059758876, + 33.869424104317865, 32.71551487392055, 30.139075486164256, + 26.547199089035278, 22.541882580543696, 18.49935261854893, + 14.654263452826228, 11.322562295462088, 8.31649783504125, + 5.5659626078265525, 2.978750843694146, 0.33075094456427007, + -2.2494539734736376, -4.805104821565847, -7.213933930468564, + -9.201169258186601, -10.81158203523771, -11.945511946303364, + -12.638507330562568, -13.046940745973862, -13.24586679643104, + -13.345529689205687, -13.378470054826192, -13.299331083856778, + -13.042412041829259, -12.542684935491542, -11.782837972291285, + -10.840921831021499, -9.914494755720337, -9.214658848256514, + -9.015905954482744, -9.499150623495982, -10.715837472129381, + -12.517000036422633, -14.682290133383452, -16.7870158718416, + -18.37911671313844, -19.172926893707547, -18.90190604610815, + -17.548873888834137, -15.277298184061381, -12.466280897212775, + -9.356023707325452, -6.378221816684642, -3.8038975257946395, + -1.6506876861936957, -0.02985306922004799, 1.228304724546118, + 2.2539737480241904, 3.096761014027536, 3.8559203074503654, + 4.450663402429436, 4.796298008319611, 4.808840521563514, + 4.409358989366194, 3.6125243470082586, 2.5380707248152325, + 1.3443822557578389, 0.2016554774614112, -0.665859686300463, + -1.2176014109064364, -1.4514521097254767, -1.4390439060831504, + -1.3444752176303738, -1.3146217348681495, -1.4448496358089538, + -1.760428940595688, -2.181966157714037, -2.601213453624914, + -2.8659626285119963, -2.865257781595679, -2.575639307222964, + -2.0517880522382086, -1.4084609269370458, -0.8015300300296864, + -0.3738504846659506, -0.16449018075295166, -0.16305787142573788, + -0.26373362878094114, -0.31663185385054826, -0.19635697264339252, + 0.16267564274122978, 0.7237875662674201, 1.366145082929762, + 1.9347732842905832, 2.2480478973468214, 2.265785544253638, + 2.064218056164933, 1.8677123287163713, 2.0237853470824523, + 2.9111651110261834, 4.849849326956859, 8.02052800184065, + 12.204754402380111, 17.243495303134267, 22.51443325093358, + 27.26286351868443 + ], + "pressure:J63:branch35_seg1": [ + 169876.6633194596, 189334.34103585593, 199615.28000615735, + 198434.22936636675, 188099.62002263978, 170590.55971776642, + 148217.17137823504, 123425.83323337756, 100327.85283886218, + 78604.65255882627, 59565.49950105493, 42981.79071691552, + 26927.13128170439, 11825.011995294873, -3683.4136603220027, + -18943.02420882302, -33617.60569005672, -47522.014672543846, + -58222.91640337499, -66489.8980986036, -72392.58338409718, + -75547.1584396235, -77386.57410350237, -78277.72614443177, + -78635.41891014227, -78700.44945481734, -77930.29972487861, + -75927.15284821796, -72389.19990580568, -67478.43714336382, + -61620.318134995585, -56422.37010719017, -53220.376802410035, + -53221.276940601114, -57635.807661631254, -66349.58970658705, + -78035.44054022247, -91019.36746709357, -103012.54291554811, + -110871.88161436889, -113324.14586625539, -109464.5109554723, + -99244.63820334976, -83835.44042006794, -66712.65746348203, + -48458.582927459436, -31013.857913792686, -17228.08908583686, + -5605.038598635517, 3059.299478855233, 9475.815255035168, + 15397.277443507144, 19986.33946589432, 24019.499461687934, + 27304.671251053263, 28617.33323605289, 27837.95832395452, + 24650.210423512148, 19221.55395869502, 12337.406220672287, + 5313.088571477825, -1015.2090462183261, -5558.975739775683, + -7968.531114120812, -8733.13272311016, -8322.071136189441, + -7700.337068393633, -7792.894263953043, -8976.36239971508, + -11236.697922056337, -13795.700430430572, -16045.865474002125, + -17211.43447108454, -16546.47966325519, -14198.757119296948, + -10720.980733059869, -6929.210769714602, -3477.41073486285, + -1473.01455088423, -817.088237558952, -1096.168277983008, + -1763.5676251984876, -1841.005687121919, -660.9453005354964, + 1953.2862790866911, 5635.577128349456, 9406.738945188272, + 12371.368689324925, 13629.271845880387, 13062.031691416416, + 11559.80713544443, 10772.133208844361, 12866.384718454981, + 20064.833982851982, 33895.166131303784, 55588.807245856304, + 81929.33703796865, 112169.85265870646, 144327.47761871965, + 169876.6633194596 + ], + "flow:branch35_seg1:J64": [ + 27.23186712439565, 31.09046625853592, 33.35498753748583, + 33.876254558460815, 32.73607109290182, 30.165094092137753, + 26.5722627262659, 22.576086815802608, 18.525969122938115, + 14.673361666641696, 11.345065798229033, 8.333841189422994, + 5.583183461378607, 2.9975146742536873, 0.3446970046556841, + -2.2311483171373294, -4.785386272445483, -7.201458861745288, + -9.18839523307604, -10.802535253545505, -11.940153166142279, + -12.634465232778055, -13.045406627862222, -13.245086192599146, + -13.344931146500393, -13.378750466327288, -13.300917082692674, + -13.045843742972686, -12.548615703488077, -11.789608299974187, + -10.848359111699505, -9.920106498383005, -9.215742210039846, + -9.012834006566473, -9.491422532370116, -10.704810218265262, + -12.501069857175203, -14.668080985317673, -16.776087145331868, + -18.371820364500586, -19.174741178888333, -18.9102246179312, + -17.56437793279761, -15.296359301964333, -12.489094679770151, + -9.379267029720538, -6.398648189198756, -3.821664724981085, + -1.663358155961348, -0.03981867261610644, 1.2199920679901752, + 2.246351702314411, 3.0912035503045012, 3.851899678115567, + 4.4472841792962665, 4.795857177902186, 4.81175804368459, + 4.415005125093233, 3.619334158295719, 2.5474451581631516, + 1.3524898397216747, 0.2057308680732448, -0.661275297952595, + -1.2155566810880916, -1.4518555015329067, -1.4396524524141068, + -1.3448146859394288, -1.3140248658675775, -1.4427302422413393, + -1.7573971666329364, -2.178699261625261, -2.59865667881315, + -2.8654808942288748, -2.866991246265076, -2.5795803518561606, + -2.056971663763473, -1.413203257483647, -0.80556213703179, + -0.37549313588639505, -0.16418878967200393, -0.16211292153028845, + -0.2632470519073562, -0.3173232842491866, -0.1987749271693741, + 0.15909462685699274, 0.7189533679379092, 1.3619513968690702, + 1.933462352925444, 2.2474886128241764, 2.2669626808496726, + 2.065968977275527, 1.867567718057985, 2.0187431220909606, + 2.8988334321035687, 4.827769958915636, 7.990572190938832, + 12.168329552075436, 17.200624642443994, 22.473236346334325, + 27.23186712439565 + ], + "pressure:branch35_seg1:J64": [ + 162136.19837153464, 182947.13810214293, 194644.38510739448, + 195662.11727457712, 187370.94833911103, 171361.97800519867, + 149979.80608045487, 126259.54785823874, 103122.37776905847, + 81266.00282232492, 62274.09189347059, 45372.223167770935, + 29521.16431506333, 14611.668323886764, -707.8346322538493, + -15635.131225756691, -30245.284403225596, -44105.995406254, + -55113.11693659367, -63876.818688848885, -70095.6784256956, + -73669.83459749195, -75782.72906283452, -76805.81141266879, + -77275.0614709891, -77413.26071113381, -76819.88326265321, + -75111.98146832244, -71952.40871068613, -67352.1348763334, + -61755.36762915936, -56500.93033034532, -52862.47979923314, + -52242.32623052358, -55764.34151410276, -63533.370656036976, + -74449.31229019725, -87119.1289214438, -99138.83252142667, + -107658.08054294033, -111249.61345027969, -108635.53815109377, + -99767.87510820002, -85650.07322628952, -69140.94766023452, + -51163.235118041455, -33933.21132014525, -19675.99355435293, + -7674.203204379145, 1308.223225183156, 8124.863427331164, + 14021.357551018347, 18737.507789382707, 22930.35013604581, + 26280.220285102703, 27955.837654282936, 27641.484367782596, + 24946.477138622875, 19985.49152533569, 13512.486702497314, + 6585.654793668048, 134.46988254530936, -4613.365586606033, + -7423.966437818304, -8498.90621053821, -8265.623676661122, + -7684.4722138898915, -7634.758353046468, -8579.278865535782, + -10595.998080612211, -13069.612477251167, -15396.329269821681, + -16756.456756819352, -16449.688816580394, -14479.388508890219, + -11266.293609497252, -7538.294711151102, -4074.764080676501, + -1827.062594093962, -879.7034050206498, -1002.6934434188495, + -1625.1879175550944, -1827.5102056609715, -916.5610305750826, + 1395.7269579816013, 4818.717863801484, 8541.355948156965, + 11669.62128064114, 13205.133024685225, 12996.614135399492, + 11679.77420439032, 10707.579237267188, 12144.006590940307, + 18184.823238987898, 30504.4134493511, 50279.60674278483, + 75265.18945684336, 104649.0813701799, 135751.20751128637, + 162136.19837153464 + ], + "flow:J64:branch35_seg2": [ + 27.23186712439565, 31.09046625853592, 33.35498753748583, + 33.876254558460815, 32.73607109290182, 30.165094092137753, + 26.5722627262659, 22.576086815802608, 18.525969122938115, + 14.673361666641696, 11.345065798229033, 8.333841189422994, + 5.583183461378607, 2.9975146742536873, 0.3446970046556841, + -2.2311483171373294, -4.785386272445483, -7.201458861745288, + -9.18839523307604, -10.802535253545505, -11.940153166142279, + -12.634465232778055, -13.045406627862222, -13.245086192599146, + -13.344931146500393, -13.378750466327288, -13.300917082692674, + -13.045843742972686, -12.548615703488077, -11.789608299974187, + -10.848359111699505, -9.920106498383005, -9.215742210039846, + -9.012834006566473, -9.491422532370116, -10.704810218265262, + -12.501069857175203, -14.668080985317673, -16.776087145331868, + -18.371820364500586, -19.174741178888333, -18.9102246179312, + -17.56437793279761, -15.296359301964333, -12.489094679770151, + -9.379267029720538, -6.398648189198756, -3.821664724981085, + -1.663358155961348, -0.03981867261610644, 1.2199920679901752, + 2.246351702314411, 3.0912035503045012, 3.851899678115567, + 4.4472841792962665, 4.795857177902186, 4.81175804368459, + 4.415005125093233, 3.619334158295719, 2.5474451581631516, + 1.3524898397216747, 0.2057308680732448, -0.661275297952595, + -1.2155566810880916, -1.4518555015329067, -1.4396524524141068, + -1.3448146859394288, -1.3140248658675775, -1.4427302422413393, + -1.7573971666329364, -2.178699261625261, -2.59865667881315, + -2.8654808942288748, -2.866991246265076, -2.5795803518561606, + -2.056971663763473, -1.413203257483647, -0.80556213703179, + -0.37549313588639505, -0.16418878967200393, -0.16211292153028845, + -0.2632470519073562, -0.3173232842491866, -0.1987749271693741, + 0.15909462685699274, 0.7189533679379092, 1.3619513968690702, + 1.933462352925444, 2.2474886128241764, 2.2669626808496726, + 2.065968977275527, 1.867567718057985, 2.0187431220909606, + 2.8988334321035687, 4.827769958915636, 7.990572190938832, + 12.168329552075436, 17.200624642443994, 22.473236346334325, + 27.23186712439565 + ], + "pressure:J64:branch35_seg2": [ + 162136.19837153464, 182947.13810214293, 194644.38510739448, + 195662.11727457712, 187370.94833911103, 171361.97800519867, + 149979.80608045487, 126259.54785823874, 103122.37776905847, + 81266.00282232492, 62274.09189347059, 45372.223167770935, + 29521.16431506333, 14611.668323886764, -707.8346322538493, + -15635.131225756691, -30245.284403225596, -44105.995406254, + -55113.11693659367, -63876.818688848885, -70095.6784256956, + -73669.83459749195, -75782.72906283452, -76805.81141266879, + -77275.0614709891, -77413.26071113381, -76819.88326265321, + -75111.98146832244, -71952.40871068613, -67352.1348763334, + -61755.36762915936, -56500.93033034532, -52862.47979923314, + -52242.32623052358, -55764.34151410276, -63533.370656036976, + -74449.31229019725, -87119.1289214438, -99138.83252142667, + -107658.08054294033, -111249.61345027969, -108635.53815109377, + -99767.87510820002, -85650.07322628952, -69140.94766023452, + -51163.235118041455, -33933.21132014525, -19675.99355435293, + -7674.203204379145, 1308.223225183156, 8124.863427331164, + 14021.357551018347, 18737.507789382707, 22930.35013604581, + 26280.220285102703, 27955.837654282936, 27641.484367782596, + 24946.477138622875, 19985.49152533569, 13512.486702497314, + 6585.654793668048, 134.46988254530936, -4613.365586606033, + -7423.966437818304, -8498.90621053821, -8265.623676661122, + -7684.4722138898915, -7634.758353046468, -8579.278865535782, + -10595.998080612211, -13069.612477251167, -15396.329269821681, + -16756.456756819352, -16449.688816580394, -14479.388508890219, + -11266.293609497252, -7538.294711151102, -4074.764080676501, + -1827.062594093962, -879.7034050206498, -1002.6934434188495, + -1625.1879175550944, -1827.5102056609715, -916.5610305750826, + 1395.7269579816013, 4818.717863801484, 8541.355948156965, + 11669.62128064114, 13205.133024685225, 12996.614135399492, + 11679.77420439032, 10707.579237267188, 12144.006590940307, + 18184.823238987898, 30504.4134493511, 50279.60674278483, + 75265.18945684336, 104649.0813701799, 135751.20751128637, + 162136.19837153464 + ], + "flow:branch41_seg0:J65": [ + 36.135913552779506, 41.219279237811136, 44.20554422370437, + 44.86705476019704, 43.32920952279277, 39.935495582828864, + 35.230142649822625, 29.961003413740666, 24.69272405995984, + 19.690920059897543, 15.331423488590433, 11.421743465230149, + 7.8321765744333804, 4.454516004939681, 1.0135779199553254, + -2.3637416711219825, -5.706362461109806, -8.852834831426703, + -11.481219701524717, -13.627288459033739, -15.170427679457246, + -16.153563832473385, -16.768083057804805, -17.1134394424646, + -17.32615226610172, -17.44621789712194, -17.415398127914738, + -17.148747862189364, -16.56100636322617, -15.632046544294678, + -14.455894686327488, -13.289869969060634, -12.409438895562406, + -12.1639599622592, -12.798148308516234, -14.384390140443749, + -16.747354422751098, -19.590989349818067, -22.384730993403064, + -24.540410387097673, -25.66838386581952, -25.423242444466865, + -23.75500419150686, -20.862248251046587, -17.219238310595376, + -13.140764287431823, -9.192378735721947, -5.739396993077412, + -2.8235990808656157, -0.5917798697211339, 1.1597334202720202, + 2.601156990939846, 3.7905389293345286, 4.861311682404085, + 5.715966789134813, 6.233111133885759, 6.306220428190334, + 5.8316781419147015, 4.826674954994435, 3.4365621877421315, + 1.8813731072731843, 0.3825748704070445, -0.7797980357235125, + -1.5283436296390942, -1.8603950336809902, -1.869503798135332, + -1.7634591315639316, -1.735896703486234, -1.9148197489256713, + -2.3357438480770343, -2.8987792541707686, -3.463662691483398, + -3.8299189459634966, -3.849932790407499, -3.487988793011006, + -2.8126145883672327, -1.9725037991801984, -1.1683836342945142, + -0.5942035930399293, -0.30316689620448983, -0.28348754132264775, + -0.4020264870795928, -0.46396822990963926, -0.30248446657192746, + 0.17019934275743895, 0.9136822248470474, 1.767807398543859, + 2.5294954992345065, 2.967618104552824, 3.016460901568501, + 2.773294371674538, 2.5306545331887182, 2.743925728945495, + 3.9134613493582098, 6.467272318140884, 10.647688542778043, + 16.178109022309506, 22.854358223703272, 29.845909117062245, + 36.135913552779506 + ], + "pressure:branch41_seg0:J65": [ + 163759.62144128716, 181383.40171313274, 190276.6130323792, + 187923.79557775773, 177080.7316300996, 159918.30624400888, + 138654.95404982383, 114851.04053052531, 93633.53607264803, + 73823.39013802417, 56001.514358910565, 40888.94869204704, + 25988.18376884841, 11888.539452003866, -2387.810594066849, + -16780.934937107657, -30553.943117728886, -43278.021275256404, + -53239.20892565122, -60958.034171155276, -66500.22501992926, + -69576.2409432469, -71490.45075761902, -72598.39932927428, + -73236.34993655093, -73575.58707466634, -73067.05356481958, + -71354.72453603403, -68150.80733299477, -63701.07465152267, + -58351.10140299244, -53723.10511469056, -51099.59317714974, + -51443.46164210571, -55987.47161658363, -64512.57340742081, + -75855.73940949497, -88160.41164764372, -99466.16012912168, + -106844.85753762392, -108961.58261968408, -105222.77536529605, + -95455.4769690133, -80839.61580850263, -64651.911110364344, + -47297.8415016867, -30770.843387371915, -17772.757861152295, + -6715.555144718782, 1614.8533402386047, 7856.003043045453, + 13759.432612599789, 18257.816144547276, 22255.429644769552, + 25607.44902384799, 26882.105444110915, 26133.408730087296, + 23095.526649297004, 17953.307629412935, 11353.571172118449, + 4781.738914152342, -1018.0061776895127, -5317.157321467695, + -7494.873605282283, -8115.154636552334, -7741.720197537017, + -7210.750650940542, -7402.104647363713, -8653.911239505638, + -10906.152199341212, -13388.45200138792, -15545.453640437805, + -16608.890365206185, -15890.233139167516, -13581.183500235838, + -10234.90252972492, -6652.068454797584, -3389.5043723624494, + -1594.0925277114184, -1057.7251436835468, -1325.9045550405615, + -1929.7977430330782, -1919.6658590570762, -671.1768578529316, + 1923.659057962437, 5538.148487297311, 9140.78548549558, + 11870.712686399122, 13042.708370916462, 12452.229846075425, + 11022.020811479988, 10417.901650306116, 12715.607734097435, + 20020.05490485775, 33755.576715459894, 54980.755475777885, + 80408.61758227149, 109588.39075920783, 140276.69454126054, + 163759.62144128716 + ], + "flow:J65:branch41_seg1": [ + 36.135913552779506, 41.219279237811136, 44.20554422370437, + 44.86705476019704, 43.32920952279277, 39.935495582828864, + 35.230142649822625, 29.961003413740666, 24.69272405995984, + 19.690920059897543, 15.331423488590433, 11.421743465230149, + 7.8321765744333804, 4.454516004939681, 1.0135779199553254, + -2.3637416711219825, -5.706362461109806, -8.852834831426703, + -11.481219701524717, -13.627288459033739, -15.170427679457246, + -16.153563832473385, -16.768083057804805, -17.1134394424646, + -17.32615226610172, -17.44621789712194, -17.415398127914738, + -17.148747862189364, -16.56100636322617, -15.632046544294678, + -14.455894686327488, -13.289869969060634, -12.409438895562406, + -12.1639599622592, -12.798148308516234, -14.384390140443749, + -16.747354422751098, -19.590989349818067, -22.384730993403064, + -24.540410387097673, -25.66838386581952, -25.423242444466865, + -23.75500419150686, -20.862248251046587, -17.219238310595376, + -13.140764287431823, -9.192378735721947, -5.739396993077412, + -2.8235990808656157, -0.5917798697211339, 1.1597334202720202, + 2.601156990939846, 3.7905389293345286, 4.861311682404085, + 5.715966789134813, 6.233111133885759, 6.306220428190334, + 5.8316781419147015, 4.826674954994435, 3.4365621877421315, + 1.8813731072731843, 0.3825748704070445, -0.7797980357235125, + -1.5283436296390942, -1.8603950336809902, -1.869503798135332, + -1.7634591315639316, -1.735896703486234, -1.9148197489256713, + -2.3357438480770343, -2.8987792541707686, -3.463662691483398, + -3.8299189459634966, -3.849932790407499, -3.487988793011006, + -2.8126145883672327, -1.9725037991801984, -1.1683836342945142, + -0.5942035930399293, -0.30316689620448983, -0.28348754132264775, + -0.4020264870795928, -0.46396822990963926, -0.30248446657192746, + 0.17019934275743895, 0.9136822248470474, 1.767807398543859, + 2.5294954992345065, 2.967618104552824, 3.016460901568501, + 2.773294371674538, 2.5306545331887182, 2.743925728945495, + 3.9134613493582098, 6.467272318140884, 10.647688542778043, + 16.178109022309506, 22.854358223703272, 29.845909117062245, + 36.135913552779506 + ], + "pressure:J65:branch41_seg1": [ + 163759.62144128716, 181383.40171313274, 190276.6130323792, + 187923.79557775773, 177080.7316300996, 159918.30624400888, + 138654.95404982383, 114851.04053052531, 93633.53607264803, + 73823.39013802417, 56001.514358910565, 40888.94869204704, + 25988.18376884841, 11888.539452003866, -2387.810594066849, + -16780.934937107657, -30553.943117728886, -43278.021275256404, + -53239.20892565122, -60958.034171155276, -66500.22501992926, + -69576.2409432469, -71490.45075761902, -72598.39932927428, + -73236.34993655093, -73575.58707466634, -73067.05356481958, + -71354.72453603403, -68150.80733299477, -63701.07465152267, + -58351.10140299244, -53723.10511469056, -51099.59317714974, + -51443.46164210571, -55987.47161658363, -64512.57340742081, + -75855.73940949497, -88160.41164764372, -99466.16012912168, + -106844.85753762392, -108961.58261968408, -105222.77536529605, + -95455.4769690133, -80839.61580850263, -64651.911110364344, + -47297.8415016867, -30770.843387371915, -17772.757861152295, + -6715.555144718782, 1614.8533402386047, 7856.003043045453, + 13759.432612599789, 18257.816144547276, 22255.429644769552, + 25607.44902384799, 26882.105444110915, 26133.408730087296, + 23095.526649297004, 17953.307629412935, 11353.571172118449, + 4781.738914152342, -1018.0061776895127, -5317.157321467695, + -7494.873605282283, -8115.154636552334, -7741.720197537017, + -7210.750650940542, -7402.104647363713, -8653.911239505638, + -10906.152199341212, -13388.45200138792, -15545.453640437805, + -16608.890365206185, -15890.233139167516, -13581.183500235838, + -10234.90252972492, -6652.068454797584, -3389.5043723624494, + -1594.0925277114184, -1057.7251436835468, -1325.9045550405615, + -1929.7977430330782, -1919.6658590570762, -671.1768578529316, + 1923.659057962437, 5538.148487297311, 9140.78548549558, + 11870.712686399122, 13042.708370916462, 12452.229846075425, + 11022.020811479988, 10417.901650306116, 12715.607734097435, + 20020.05490485775, 33755.576715459894, 54980.755475777885, + 80408.61758227149, 109588.39075920783, 140276.69454126054, + 163759.62144128716 + ], + "flow:branch41_seg1:J66": [ + 36.109733519791924, 41.20274937059646, 44.201064332342625, + 44.87401648941282, 43.3481024293445, 39.95947678288371, 35.25393216105805, + 29.993386437668732, 24.714803724105572, 19.707464935067936, + 15.352275804082923, 11.436323574421358, 7.847431008539365, + 4.4704068785695235, 1.0242833318325435, -2.3470779157237507, + -5.6898104984537365, -8.84470051628466, -11.470296005714557, + -13.61934533575511, -15.16648724524399, -16.149821708845387, + -16.76667816685601, -17.112533264810935, -17.325078751940374, + -17.44623885171906, -17.416577357519184, -17.151561164225537, + -16.566071594718053, -15.638008346505814, -14.462352842673317, + -13.294603426590601, -12.4102476685681, -12.160818913070473, + -12.790760600670556, -14.374410465464226, -16.73228494011246, + -19.57887980977318, -22.375511923938543, -24.534352842098425, + -25.670502598431625, -25.430755035604356, -23.768174706498698, + -20.876846892906535, -17.238776223532444, -13.161453548316349, + -9.2084175497922, -5.754946499872613, -2.8344658804203093, + -0.6002973596207732, 1.151261262121398, 2.5944673069103037, + 3.785615908348296, 4.856889720060117, 5.71261743093512, 6.232736375759566, + 6.308739929567714, 5.836897581061648, 4.832829461236794, 3.445469679572, + 1.8881606190823064, 0.3856815349479361, -0.7754547952361678, + -1.526765299641972, -1.8610252738636286, -1.8699750803507083, + -1.763602770633698, -1.7352329950319954, -1.9129037966658704, + -2.3333181441101973, -2.895964376377258, -3.4612545178517347, + -3.829739926252528, -3.851489796278919, -3.491426904723538, + -2.8171092475814774, -1.9769476601082538, -1.171865399522846, + -0.5955038363623975, -0.3030678657977891, -0.28264849964937616, + -0.40162788307492553, -0.46469709026912226, -0.3048818968828835, + 0.16688071634795335, 0.9090589363669991, 1.7642443396153673, + 2.5286842156080445, 2.9670755003719025, 3.0175071978760575, + 2.774718416657376, 2.530259454836613, 2.739186449695899, 3.90232535690887, + 6.447764168275388, 10.62324753173781, 16.147057521538862, + 22.81367244249497, 29.813075721558533, 36.109733519791924 + ], + "pressure:branch41_seg1:J66": [ + 159180.1075344572, 177721.89274476888, 187639.5144544668, + 186734.68077581085, 177225.03944590196, 161012.28205060208, + 140348.7759912737, 117170.0621560549, 95757.73023853524, + 75793.20222333018, 57957.87424070519, 42557.401429632526, + 27737.253261925493, 13683.233730750448, -555.9970854626414, + -14736.934804994771, -28529.003842857976, -41328.080182389, + -51453.866597190754, -59490.01936800033, -65262.92108111953, + -68588.47191078312, -70684.82108640065, -71873.84428933467, + -72573.61114231712, -72965.4313695841, -72566.70101184348, + -71036.42368936654, -68066.05730984002, -63806.15672675466, + -58606.74057042083, -53926.03445135256, -51018.55843845635, + -50953.05007804169, -54939.30178715189, -62889.206302475846, + -73743.88813673424, -85903.22900385661, -97249.74699646277, + -105052.3266310225, -107888.71758312252, -104920.27614618148, + -95978.30022330256, -82101.67433693228, -66342.91066747965, + -49173.44690765219, -32704.684666844663, -19436.329312758648, + -8100.903485919554, 450.9521016055165, 6930.016956245497, + 12868.547074158694, 17464.442543323414, 21559.244480300636, + 24975.34091065738, 26496.988768843174, 26052.462168810238, + 23338.448932510746, 18486.23003224047, 12154.616317585447, + 5606.470531674053, -291.15952832153636, -4711.4895857011015, + -7154.277468243904, -7980.409546429376, -7717.763491008102, + -7210.610921787811, -7315.019294087418, -8419.565565372086, + -10529.495130864265, -12951.53355833037, -15151.467187117305, + -16349.915131443553, -15856.392552246523, -13786.596218334616, + -10608.955464401664, -7075.072086230536, -3791.849772636591, + -1833.8615798474739, -1113.6053171783406, -1273.0140020624565, + -1848.5789490783523, -1918.0806877236078, -843.1790202374694, + 1565.852540218756, 5013.906502163856, 8604.282479138936, 11450.7523305116, + 12792.909309504952, 12428.578320570034, 11113.467635982539, + 10394.818261481178, 12280.640949995464, 18866.300631126727, + 31657.121216886637, 51763.273017622916, 76325.68227197933, + 104885.98864175742, 135142.53435972548, 159180.1075344572 + ], + "flow:J66:branch41_seg2": [ + 36.109733519791924, 41.20274937059646, 44.201064332342625, + 44.87401648941282, 43.3481024293445, 39.95947678288371, 35.25393216105805, + 29.993386437668732, 24.714803724105572, 19.707464935067936, + 15.352275804082923, 11.436323574421358, 7.847431008539365, + 4.4704068785695235, 1.0242833318325435, -2.3470779157237507, + -5.6898104984537365, -8.84470051628466, -11.470296005714557, + -13.61934533575511, -15.16648724524399, -16.149821708845387, + -16.76667816685601, -17.112533264810935, -17.325078751940374, + -17.44623885171906, -17.416577357519184, -17.151561164225537, + -16.566071594718053, -15.638008346505814, -14.462352842673317, + -13.294603426590601, -12.4102476685681, -12.160818913070473, + -12.790760600670556, -14.374410465464226, -16.73228494011246, + -19.57887980977318, -22.375511923938543, -24.534352842098425, + -25.670502598431625, -25.430755035604356, -23.768174706498698, + -20.876846892906535, -17.238776223532444, -13.161453548316349, + -9.2084175497922, -5.754946499872613, -2.8344658804203093, + -0.6002973596207732, 1.151261262121398, 2.5944673069103037, + 3.785615908348296, 4.856889720060117, 5.71261743093512, 6.232736375759566, + 6.308739929567714, 5.836897581061648, 4.832829461236794, 3.445469679572, + 1.8881606190823064, 0.3856815349479361, -0.7754547952361678, + -1.526765299641972, -1.8610252738636286, -1.8699750803507083, + -1.763602770633698, -1.7352329950319954, -1.9129037966658704, + -2.3333181441101973, -2.895964376377258, -3.4612545178517347, + -3.829739926252528, -3.851489796278919, -3.491426904723538, + -2.8171092475814774, -1.9769476601082538, -1.171865399522846, + -0.5955038363623975, -0.3030678657977891, -0.28264849964937616, + -0.40162788307492553, -0.46469709026912226, -0.3048818968828835, + 0.16688071634795335, 0.9090589363669991, 1.7642443396153673, + 2.5286842156080445, 2.9670755003719025, 3.0175071978760575, + 2.774718416657376, 2.530259454836613, 2.739186449695899, 3.90232535690887, + 6.447764168275388, 10.62324753173781, 16.147057521538862, + 22.81367244249497, 29.813075721558533, 36.109733519791924 + ], + "pressure:J66:branch41_seg2": [ + 159180.1075344572, 177721.89274476888, 187639.5144544668, + 186734.68077581085, 177225.03944590196, 161012.28205060208, + 140348.7759912737, 117170.0621560549, 95757.73023853524, + 75793.20222333018, 57957.87424070519, 42557.401429632526, + 27737.253261925493, 13683.233730750448, -555.9970854626414, + -14736.934804994771, -28529.003842857976, -41328.080182389, + -51453.866597190754, -59490.01936800033, -65262.92108111953, + -68588.47191078312, -70684.82108640065, -71873.84428933467, + -72573.61114231712, -72965.4313695841, -72566.70101184348, + -71036.42368936654, -68066.05730984002, -63806.15672675466, + -58606.74057042083, -53926.03445135256, -51018.55843845635, + -50953.05007804169, -54939.30178715189, -62889.206302475846, + -73743.88813673424, -85903.22900385661, -97249.74699646277, + -105052.3266310225, -107888.71758312252, -104920.27614618148, + -95978.30022330256, -82101.67433693228, -66342.91066747965, + -49173.44690765219, -32704.684666844663, -19436.329312758648, + -8100.903485919554, 450.9521016055165, 6930.016956245497, + 12868.547074158694, 17464.442543323414, 21559.244480300636, + 24975.34091065738, 26496.988768843174, 26052.462168810238, + 23338.448932510746, 18486.23003224047, 12154.616317585447, + 5606.470531674053, -291.15952832153636, -4711.4895857011015, + -7154.277468243904, -7980.409546429376, -7717.763491008102, + -7210.610921787811, -7315.019294087418, -8419.565565372086, + -10529.495130864265, -12951.53355833037, -15151.467187117305, + -16349.915131443553, -15856.392552246523, -13786.596218334616, + -10608.955464401664, -7075.072086230536, -3791.849772636591, + -1833.8615798474739, -1113.6053171783406, -1273.0140020624565, + -1848.5789490783523, -1918.0806877236078, -843.1790202374694, + 1565.852540218756, 5013.906502163856, 8604.282479138936, 11450.7523305116, + 12792.909309504952, 12428.578320570034, 11113.467635982539, + 10394.818261481178, 12280.640949995464, 18866.300631126727, + 31657.121216886637, 51763.273017622916, 76325.68227197933, + 104885.98864175742, 135142.53435972548, 159180.1075344572 + ], + "flow:branch51_seg0:J67": [ + 16.510541207399143, 19.515130628535854, 21.82814487100036, + 23.25799923041521, 23.72941661282289, 23.262672695045065, + 21.993796167037885, 20.191086066594593, 18.05763722687922, + 15.761062600961752, 13.518554557883995, 11.307639844239198, + 9.151123337240744, 7.041685643883843, 4.889722861182018, 2.76236799179115, + 0.6400214921983037, -1.4158658708366803, -3.2600221503103413, + -4.894946653785988, -6.24989946916121, -7.317189927541726, + -8.155833619166705, -8.796127073537685, -9.294149449998933, + -9.676410098405842, -9.932994457792786, -10.040647838702919, + -9.970369665576275, -9.710198295949738, -9.29247777133778, + -8.810961087085422, -8.377757320988525, -8.148463466072068, + -8.24703209720829, -8.743628127936109, -9.609525657592403, + -10.767779290614536, -12.021981039842865, -13.133802206687141, + -13.920274976336486, -14.188895441856754, -13.86205356092206, + -12.956317623547053, -11.611755922622637, -9.931624758166896, + -8.134605431579237, -6.389787933329585, -4.756337080626615, + -3.3366485602825726, -2.095078491453612, -0.9973526046269967, + -0.033659497407258876, 0.8388471336604639, 1.58541254022143, + 2.165520976563711, 2.5330390361208974, 2.6390612609341377, + 2.4758287719264818, 2.0872091721354615, 1.5445384405905171, + 0.936188928075379, 0.3887380316027282, -0.050724022538414765, + -0.34963781192023285, -0.5154437328231063, -0.6106974202262047, + -0.7021285739384858, -0.8436446183576337, -1.0626159590216482, + -1.3367926590446855, -1.6235723362721863, -1.8502586874731826, + -1.9528827240929187, -1.903046439466638, -1.709097758901505, + -1.41360726392962, -1.0886807503630234, -0.8111510790260256, + -0.6174787941600157, -0.5220116529074951, -0.4901950696708885, + -0.4576063138721487, -0.3598667907623417, -0.15240286131944009, + 0.16446651724103742, 0.5462631882360295, 0.9230036950561997, + 1.1995244004516585, 1.3385823639776973, 1.3547385514657404, + 1.3400214985468768, 1.461882414437208, 1.9248510582673244, + 2.927825298572801, 4.618757779184063, 6.958783216293322, + 9.919748259052811, 13.230245410920018, 16.510541207399143 + ], + "pressure:branch51_seg0:J67": [ + 117279.55289869977, 135850.467696732, 149711.0770192466, + 156767.25336465373, 157521.30798861955, 152500.84521657202, + 142645.90930022413, 129231.61898671076, 114749.98310625287, + 99474.09875929402, 84476.59889879127, 70121.07051920067, + 55758.85057696916, 41747.824017043815, 27470.388141869502, + 13254.823608072127, -716.7034299906562, -14216.451220877776, + -25917.206955624737, -36088.9196186621, -44541.68799071024, + -50949.49524300245, -55997.59857201081, -59872.54888112697, + -62848.179295092086, -65132.395208366186, -66510.6525015402, + -66813.89359841225, -65875.25254231457, -63745.01570952075, + -60626.43231992459, -57394.27790405888, -54876.52659439456, + -53924.647870021334, -55454.82751340767, -59731.091240622576, + -66314.13096244371, -74432.25863567613, -82824.22563834258, + -89616.50762101548, -93735.77165568828, -94220.83705575476, + -90595.51322569413, -83131.65451972264, -73412.50451563532, + -61792.51120248338, -49507.237547323864, -38347.17713944711, + -27897.176423243945, -18882.867536402056, -11199.88127822966, + -4074.5903525308654, 2001.8668563971783, 7441.866143650311, + 12178.532678352001, 15529.576246116902, 17372.775383230408, + 17462.731572819775, 15785.188821103617, 12673.126232643259, + 8845.468613213445, 4831.182055319435, 1346.2577991716587, + -1211.3857757122685, -2861.6842486665314, -3724.3854832096, + -4242.906066565695, -4912.342811638285, -6023.130961890018, + -7677.305011684081, -9566.318405823602, -11397.537590517939, + -12719.516459956758, -13038.827715336969, -12312.719304186354, + -10720.828295292336, -8638.025455779534, -6438.320556784191, + -4794.048793154271, -3787.424803074787, -3322.5233367348833, + -3196.9793123850773, -2909.799802153951, -2040.2892466374174, + -391.50691790418773, 1961.909755976215, 4561.021551127692, + 6921.665838323627, 8486.47176990765, 9048.69795454755, 8925.442893472686, + 8934.004529918542, 10303.326068109363, 14438.807994366394, + 22538.24567341136, 35651.837745859106, 52569.118539043346, + 73154.34392750915, 96293.37958510776, 117279.55289869977 + ], + "flow:J67:branch51_seg1": [ + 16.510541207399143, 19.515130628535854, 21.82814487100036, + 23.25799923041521, 23.72941661282289, 23.262672695045065, + 21.993796167037885, 20.191086066594593, 18.05763722687922, + 15.761062600961752, 13.518554557883995, 11.307639844239198, + 9.151123337240744, 7.041685643883843, 4.889722861182018, 2.76236799179115, + 0.6400214921983037, -1.4158658708366803, -3.2600221503103413, + -4.894946653785988, -6.24989946916121, -7.317189927541726, + -8.155833619166705, -8.796127073537685, -9.294149449998933, + -9.676410098405842, -9.932994457792786, -10.040647838702919, + -9.970369665576275, -9.710198295949738, -9.29247777133778, + -8.810961087085422, -8.377757320988525, -8.148463466072068, + -8.24703209720829, -8.743628127936109, -9.609525657592403, + -10.767779290614536, -12.021981039842865, -13.133802206687141, + -13.920274976336486, -14.188895441856754, -13.86205356092206, + -12.956317623547053, -11.611755922622637, -9.931624758166896, + -8.134605431579237, -6.389787933329585, -4.756337080626615, + -3.3366485602825726, -2.095078491453612, -0.9973526046269967, + -0.033659497407258876, 0.8388471336604639, 1.58541254022143, + 2.165520976563711, 2.5330390361208974, 2.6390612609341377, + 2.4758287719264818, 2.0872091721354615, 1.5445384405905171, + 0.936188928075379, 0.3887380316027282, -0.050724022538414765, + -0.34963781192023285, -0.5154437328231063, -0.6106974202262047, + -0.7021285739384858, -0.8436446183576337, -1.0626159590216482, + -1.3367926590446855, -1.6235723362721863, -1.8502586874731826, + -1.9528827240929187, -1.903046439466638, -1.709097758901505, + -1.41360726392962, -1.0886807503630234, -0.8111510790260256, + -0.6174787941600157, -0.5220116529074951, -0.4901950696708885, + -0.4576063138721487, -0.3598667907623417, -0.15240286131944009, + 0.16446651724103742, 0.5462631882360295, 0.9230036950561997, + 1.1995244004516585, 1.3385823639776973, 1.3547385514657404, + 1.3400214985468768, 1.461882414437208, 1.9248510582673244, + 2.927825298572801, 4.618757779184063, 6.958783216293322, + 9.919748259052811, 13.230245410920018, 16.510541207399143 + ], + "pressure:J67:branch51_seg1": [ + 117279.55289869977, 135850.467696732, 149711.0770192466, + 156767.25336465373, 157521.30798861955, 152500.84521657202, + 142645.90930022413, 129231.61898671076, 114749.98310625287, + 99474.09875929402, 84476.59889879127, 70121.07051920067, + 55758.85057696916, 41747.824017043815, 27470.388141869502, + 13254.823608072127, -716.7034299906562, -14216.451220877776, + -25917.206955624737, -36088.9196186621, -44541.68799071024, + -50949.49524300245, -55997.59857201081, -59872.54888112697, + -62848.179295092086, -65132.395208366186, -66510.6525015402, + -66813.89359841225, -65875.25254231457, -63745.01570952075, + -60626.43231992459, -57394.27790405888, -54876.52659439456, + -53924.647870021334, -55454.82751340767, -59731.091240622576, + -66314.13096244371, -74432.25863567613, -82824.22563834258, + -89616.50762101548, -93735.77165568828, -94220.83705575476, + -90595.51322569413, -83131.65451972264, -73412.50451563532, + -61792.51120248338, -49507.237547323864, -38347.17713944711, + -27897.176423243945, -18882.867536402056, -11199.88127822966, + -4074.5903525308654, 2001.8668563971783, 7441.866143650311, + 12178.532678352001, 15529.576246116902, 17372.775383230408, + 17462.731572819775, 15785.188821103617, 12673.126232643259, + 8845.468613213445, 4831.182055319435, 1346.2577991716587, + -1211.3857757122685, -2861.6842486665314, -3724.3854832096, + -4242.906066565695, -4912.342811638285, -6023.130961890018, + -7677.305011684081, -9566.318405823602, -11397.537590517939, + -12719.516459956758, -13038.827715336969, -12312.719304186354, + -10720.828295292336, -8638.025455779534, -6438.320556784191, + -4794.048793154271, -3787.424803074787, -3322.5233367348833, + -3196.9793123850773, -2909.799802153951, -2040.2892466374174, + -391.50691790418773, 1961.909755976215, 4561.021551127692, + 6921.665838323627, 8486.47176990765, 9048.69795454755, 8925.442893472686, + 8934.004529918542, 10303.326068109363, 14438.807994366394, + 22538.24567341136, 35651.837745859106, 52569.118539043346, + 73154.34392750915, 96293.37958510776, 117279.55289869977 + ], + "flow:branch51_seg1:J68": [ + 16.48848454125523, 19.497899832252607, 21.816290898934824, + 23.25368228857316, 23.73304435224935, 23.271517169474226, + 22.005030373626173, 20.208936122530222, 18.073502722548092, + 15.774856420421042, 13.535019335700676, 11.321940596534654, + 9.165506670547545, 7.056658399392969, 4.902567513812906, + 2.7772027315223577, 0.6552808287342032, -1.4042329559763724, + -3.24835220001781, -4.885026297884227, -6.242382031522872, + -7.310874623484525, -8.151272532137131, -8.792578912643153, + -9.29123850650026, -9.674419033979857, -9.932067396126564, + -10.040984701952135, -9.972305641655543, -9.71310723168267, + -9.296206772080799, -8.814370065260084, -8.379364913266533, + -8.14809001274405, -8.244058996615818, -8.73834879964892, + -9.601119499390673, -10.759376555647224, -12.01439867356168, + -13.127623872378305, -13.918286358904984, -14.190490768994156, + -13.867646402193502, -12.964622185924405, -11.623087113473193, + -9.94468234000382, -8.14711554712211, -6.401850330865985, + -4.766565585623033, -3.3456774707078014, -2.1032761892005003, + -1.0048302859657396, -0.03985700880469499, 0.8335840100254911, + 1.5807337222155684, 2.162690118968376, 2.532204921149085, + 2.6401060183673075, 2.47814858466715, 2.09149650013305, + 1.5487758409418761, 0.9391081609767509, 0.3921613686244599, + -0.048413029448877376, -0.34865542720109344, -0.5147227872663107, + -0.610078938428247, -0.7012791755082763, -0.8422178915875265, + -1.0607912721731996, -1.3347651241993062, -1.621715167168075, + -1.8493204779887464, -1.9530356080587423, -1.9043743773168866, + -1.7113086640321309, -1.4160394080313758, -1.091054439183429, + -0.8126159390910836, -0.6180831640975936, -0.5222021515892051, + -0.4903720996850287, -0.4581904188716421, -0.36125367411839215, + -0.15443166613488848, 0.16162032013009905, 0.5435665299389499, + 0.9214632278634641, 1.1983434856531432, 1.3382959120102191, + 1.354983158748216, 1.339587103047853, 1.4593081672688746, + 1.9187687223631535, 2.9168235959244684, 4.603351979026195, + 6.938995150116805, 9.894833949560244, 13.204914724526219, + 16.48848454125523 + ], + "pressure:branch51_seg1:J68": [ + 108448.69062704314, 127495.0549701878, 142049.87771920272, + 150665.89586800715, 153115.6971903698, 149617.3889367426, + 141058.8290647094, 129077.85558522386, 115212.23936440298, + 100375.14316809156, 85893.80229744408, 71703.3077174872, + 57781.740089695304, 44176.65287845634, 30286.93445452537, + 16554.672230204924, 2899.9101868154444, -10341.567218416933, + -22089.948378320398, -32463.816134637807, -41073.53945694025, + -47784.65421010839, -53067.2400548979, -57104.30078767529, + -60233.72987556085, -62639.09571916662, -64215.65933626676, + -64810.00500100026, -64242.54381317583, -62464.804485780274, + -59684.784563508365, -56568.45155364225, -53859.421238431285, + -52520.445155074274, -53374.258077694714, -56825.36557421592, + -62615.797071513254, -70204.74497289381, -78321.07528771006, + -85349.62737357587, -90159.56357955019, -91572.66305195184, + -89103.89472578, -82892.10516333618, -74026.33045529589, + -63072.36684453455, -51377.91563427714, -40229.064598316945, + -29780.99036927314, -20720.74067138977, -12852.037743415629, + -5805.443587185349, 336.3284974388665, 5879.113453309886, + 10643.014232976015, 14265.305638615702, 16490.65405260799, + 17023.31848592796, 15819.744510248482, 13182.290457249219, + 9619.369288186725, 5692.036637374976, 2201.650142521, -545.8922786084361, + -2394.1353194688973, -3402.5073137423947, -3987.618985786134, + -4592.902723324825, -5548.306576972743, -7012.522458057253, + -8798.911480492221, -10631.408019527818, -12051.523458011354, + -12624.199241976925, -12204.702068634151, -10877.550552501718, + -8939.924494038902, -6831.025104483522, -5087.069365051149, + -3906.208779479003, -3332.2176507574386, -3149.5535142807457, + -2922.8940066908494, -2238.403743432039, -831.1732883825905, + 1275.226796129512, 3757.6583739337084, 6158.724776236655, + 7873.550808299518, 8680.567035813769, 8726.67048647577, 8655.808716239135, + 9578.26763646503, 12827.28182004339, 19653.52526273287, 31042.3332471377, + 46483.53622218827, 65805.26988098063, 87476.31179321263, + 108448.69062704314 + ], + "flow:J68:branch51_seg2": [ + 16.48848454125523, 19.497899832252607, 21.816290898934824, + 23.25368228857316, 23.73304435224935, 23.271517169474226, + 22.005030373626173, 20.208936122530222, 18.073502722548092, + 15.774856420421042, 13.535019335700676, 11.321940596534654, + 9.165506670547545, 7.056658399392969, 4.902567513812906, + 2.7772027315223577, 0.6552808287342032, -1.4042329559763724, + -3.24835220001781, -4.885026297884227, -6.242382031522872, + -7.310874623484525, -8.151272532137131, -8.792578912643153, + -9.29123850650026, -9.674419033979857, -9.932067396126564, + -10.040984701952135, -9.972305641655543, -9.71310723168267, + -9.296206772080799, -8.814370065260084, -8.379364913266533, + -8.14809001274405, -8.244058996615818, -8.73834879964892, + -9.601119499390673, -10.759376555647224, -12.01439867356168, + -13.127623872378305, -13.918286358904984, -14.190490768994156, + -13.867646402193502, -12.964622185924405, -11.623087113473193, + -9.94468234000382, -8.14711554712211, -6.401850330865985, + -4.766565585623033, -3.3456774707078014, -2.1032761892005003, + -1.0048302859657396, -0.03985700880469499, 0.8335840100254911, + 1.5807337222155684, 2.162690118968376, 2.532204921149085, + 2.6401060183673075, 2.47814858466715, 2.09149650013305, + 1.5487758409418761, 0.9391081609767509, 0.3921613686244599, + -0.048413029448877376, -0.34865542720109344, -0.5147227872663107, + -0.610078938428247, -0.7012791755082763, -0.8422178915875265, + -1.0607912721731996, -1.3347651241993062, -1.621715167168075, + -1.8493204779887464, -1.9530356080587423, -1.9043743773168866, + -1.7113086640321309, -1.4160394080313758, -1.091054439183429, + -0.8126159390910836, -0.6180831640975936, -0.5222021515892051, + -0.4903720996850287, -0.4581904188716421, -0.36125367411839215, + -0.15443166613488848, 0.16162032013009905, 0.5435665299389499, + 0.9214632278634641, 1.1983434856531432, 1.3382959120102191, + 1.354983158748216, 1.339587103047853, 1.4593081672688746, + 1.9187687223631535, 2.9168235959244684, 4.603351979026195, + 6.938995150116805, 9.894833949560244, 13.204914724526219, + 16.48848454125523 + ], + "pressure:J68:branch51_seg2": [ + 108448.69062704314, 127495.0549701878, 142049.87771920272, + 150665.89586800715, 153115.6971903698, 149617.3889367426, + 141058.8290647094, 129077.85558522386, 115212.23936440298, + 100375.14316809156, 85893.80229744408, 71703.3077174872, + 57781.740089695304, 44176.65287845634, 30286.93445452537, + 16554.672230204924, 2899.9101868154444, -10341.567218416933, + -22089.948378320398, -32463.816134637807, -41073.53945694025, + -47784.65421010839, -53067.2400548979, -57104.30078767529, + -60233.72987556085, -62639.09571916662, -64215.65933626676, + -64810.00500100026, -64242.54381317583, -62464.804485780274, + -59684.784563508365, -56568.45155364225, -53859.421238431285, + -52520.445155074274, -53374.258077694714, -56825.36557421592, + -62615.797071513254, -70204.74497289381, -78321.07528771006, + -85349.62737357587, -90159.56357955019, -91572.66305195184, + -89103.89472578, -82892.10516333618, -74026.33045529589, + -63072.36684453455, -51377.91563427714, -40229.064598316945, + -29780.99036927314, -20720.74067138977, -12852.037743415629, + -5805.443587185349, 336.3284974388665, 5879.113453309886, + 10643.014232976015, 14265.305638615702, 16490.65405260799, + 17023.31848592796, 15819.744510248482, 13182.290457249219, + 9619.369288186725, 5692.036637374976, 2201.650142521, -545.8922786084361, + -2394.1353194688973, -3402.5073137423947, -3987.618985786134, + -4592.902723324825, -5548.306576972743, -7012.522458057253, + -8798.911480492221, -10631.408019527818, -12051.523458011354, + -12624.199241976925, -12204.702068634151, -10877.550552501718, + -8939.924494038902, -6831.025104483522, -5087.069365051149, + -3906.208779479003, -3332.2176507574386, -3149.5535142807457, + -2922.8940066908494, -2238.403743432039, -831.1732883825905, + 1275.226796129512, 3757.6583739337084, 6158.724776236655, + 7873.550808299518, 8680.567035813769, 8726.67048647577, 8655.808716239135, + 9578.26763646503, 12827.28182004339, 19653.52526273287, 31042.3332471377, + 46483.53622218827, 65805.26988098063, 87476.31179321263, + 108448.69062704314 + ], + "flow:branch60_seg0:J69": [ + 30.591697256670884, 34.060141586565585, 35.61629135950733, + 35.234661447426355, 33.19903848537601, 29.852502950476204, + 25.671661586773308, 21.322305432414648, 17.217745153736452, + 13.398209250514727, 10.217562374487827, 7.352928642291497, + 4.640709235447375, 2.0656725545247134, -0.6767418115308695, + -3.3478366786789375, -5.95610924194416, -8.39631219739275, + -10.275766894065033, -11.74987664472798, -12.722574679679576, + -13.24402585377349, -13.545030142402132, -13.681726855822658, + -13.76151664211319, -13.791067146335317, -13.68180783901479, + -13.350477532506112, -12.734825705483436, -11.843364116210543, + -10.796855740382883, -9.866122982542631, -9.283848680462603, + -9.341255343200237, -10.197152157455907, -11.831854764476137, + -13.997774857379781, -16.39336060236186, -18.54335953827847, + -19.91666801643993, -20.311917112025377, -19.49782224625802, + -17.556388736863052, -14.74096755713095, -11.571818400956227, + -8.240045489176353, -5.225029548476855, -2.793603953316454, + -0.8065781575320584, 0.6063528352552189, 1.7067419511188928, + 2.6574067676917053, 3.446920410513966, 4.192118270014275, + 4.750929352531329, 4.995884885376084, 4.8573622362193705, + 4.259197155359589, 3.2572706340477415, 2.0173307078139735, + 0.7536446253848922, -0.3793501631209736, -1.1343723649118136, + -1.520076722524079, -1.5940161212683728, -1.4559269561660124, + -1.3121668263424133, -1.3156236283433684, -1.5347497269417696, + -1.9591795197345758, -2.453214818140109, -2.886962113914366, + -3.088849758122829, -2.957499374230388, -2.512445290000947, + -1.8571281545987322, -1.1379079398506942, -0.5302228196139038, + -0.18403875302624198, -0.08635879638992938, -0.18909657596678645, + -0.3455686811904035, -0.37679931625241375, -0.16225382118225554, + 0.32977400125909173, 1.0169715443705056, 1.7183116742183233, + 2.2667266432249304, 2.469366272594047, 2.3369447695364056, + 2.0227691356916906, 1.8320489315562103, 2.180733697297511, + 3.479374992466782, 6.014254717295332, 9.927282403432981, + 14.766275830753882, 20.380530613269574, 25.969810495062323, + 30.591697256670884 + ], + "pressure:branch60_seg0:J69": [ + 180218.3703377509, 196085.94511672822, 202054.23595718364, + 195804.48876189417, 181110.76046344487, 160557.88849251618, + 136489.53036479518, 110757.94688619193, 89338.52915403538, + 68980.38791252776, 51182.69622632373, 36427.57854597342, + 20837.72011945455, 6389.098361737973, -8810.246499950912, + -24366.309345849597, -38357.86073610892, -51627.62558652466, + -61420.43960948342, -68418.94780886477, -73262.18492798107, + -75463.52529179299, -76683.57231810792, -77346.68486464108, + -77637.97406653923, -77654.56664352516, -76686.09385429327, + -74244.50324316595, -70132.27939789533, -64724.35540386184, + -58626.79322101517, -53832.20539203822, -51752.511949841195, + -53380.54197191117, -59790.810721492344, -70375.97439982386, + -83520.99022420112, -96561.2003141414, -107953.92849141592, + -113800.77364691341, -113534.16544862594, -106807.07135763536, + -93973.0005024333, -76563.62748379816, -58472.444500636455, + -40209.745712120595, -23596.839288804833, -11354.573740421587, + -1302.4334984968257, 6019.575736652119, 11423.770154669322, + 16794.47703341661, 20960.644246934004, 24699.159546263643, + 27652.446196059416, 28180.33524950175, 26480.03142800093, + 22296.376786006036, 16076.94018031451, 8571.52430800821, + 1838.593591142017, -3884.1645948916685, -7641.039812732161, + -8885.953268385672, -8791.161612736294, -7883.891297807877, + -7168.668511211063, -7572.203559655239, -9249.93199798993, + -11969.202525134575, -14728.133499032854, -16827.364528733622, + -17465.581807632218, -16048.236639012948, -12930.775436846483, + -8978.257206529106, -5066.366665126163, -1896.8980527033505, + -556.9727995967372, -597.2836205628016, -1359.9675486507513, + -2164.898150581422, -1976.5713156532809, -198.15296883010322, + 3026.7961006442065, 7225.455620256213, 10919.349844898063, + 13414.325887766783, 13971.363632141505, 12588.690037862345, + 10690.809270965441, 10279.235539125983, 13703.892996023067, + 23207.09492704566, 39845.77730820251, 64631.76120232099, + 93219.90939187286, 125147.52589152245, 157045.02034753512, + 180218.3703377509 + ], + "flow:J69:branch60_seg1": [ + 30.591697256670884, 34.060141586565585, 35.61629135950733, + 35.234661447426355, 33.19903848537601, 29.852502950476204, + 25.671661586773308, 21.322305432414648, 17.217745153736452, + 13.398209250514727, 10.217562374487827, 7.352928642291497, + 4.640709235447375, 2.0656725545247134, -0.6767418115308695, + -3.3478366786789375, -5.95610924194416, -8.39631219739275, + -10.275766894065033, -11.74987664472798, -12.722574679679576, + -13.24402585377349, -13.545030142402132, -13.681726855822658, + -13.76151664211319, -13.791067146335317, -13.68180783901479, + -13.350477532506112, -12.734825705483436, -11.843364116210543, + -10.796855740382883, -9.866122982542631, -9.283848680462603, + -9.341255343200237, -10.197152157455907, -11.831854764476137, + -13.997774857379781, -16.39336060236186, -18.54335953827847, + -19.91666801643993, -20.311917112025377, -19.49782224625802, + -17.556388736863052, -14.74096755713095, -11.571818400956227, + -8.240045489176353, -5.225029548476855, -2.793603953316454, + -0.8065781575320584, 0.6063528352552189, 1.7067419511188928, + 2.6574067676917053, 3.446920410513966, 4.192118270014275, + 4.750929352531329, 4.995884885376084, 4.8573622362193705, + 4.259197155359589, 3.2572706340477415, 2.0173307078139735, + 0.7536446253848922, -0.3793501631209736, -1.1343723649118136, + -1.520076722524079, -1.5940161212683728, -1.4559269561660124, + -1.3121668263424133, -1.3156236283433684, -1.5347497269417696, + -1.9591795197345758, -2.453214818140109, -2.886962113914366, + -3.088849758122829, -2.957499374230388, -2.512445290000947, + -1.8571281545987322, -1.1379079398506942, -0.5302228196139038, + -0.18403875302624198, -0.08635879638992938, -0.18909657596678645, + -0.3455686811904035, -0.37679931625241375, -0.16225382118225554, + 0.32977400125909173, 1.0169715443705056, 1.7183116742183233, + 2.2667266432249304, 2.469366272594047, 2.3369447695364056, + 2.0227691356916906, 1.8320489315562103, 2.180733697297511, + 3.479374992466782, 6.014254717295332, 9.927282403432981, + 14.766275830753882, 20.380530613269574, 25.969810495062323, + 30.591697256670884 + ], + "pressure:J69:branch60_seg1": [ + 180218.3703377509, 196085.94511672822, 202054.23595718364, + 195804.48876189417, 181110.76046344487, 160557.88849251618, + 136489.53036479518, 110757.94688619193, 89338.52915403538, + 68980.38791252776, 51182.69622632373, 36427.57854597342, + 20837.72011945455, 6389.098361737973, -8810.246499950912, + -24366.309345849597, -38357.86073610892, -51627.62558652466, + -61420.43960948342, -68418.94780886477, -73262.18492798107, + -75463.52529179299, -76683.57231810792, -77346.68486464108, + -77637.97406653923, -77654.56664352516, -76686.09385429327, + -74244.50324316595, -70132.27939789533, -64724.35540386184, + -58626.79322101517, -53832.20539203822, -51752.511949841195, + -53380.54197191117, -59790.810721492344, -70375.97439982386, + -83520.99022420112, -96561.2003141414, -107953.92849141592, + -113800.77364691341, -113534.16544862594, -106807.07135763536, + -93973.0005024333, -76563.62748379816, -58472.444500636455, + -40209.745712120595, -23596.839288804833, -11354.573740421587, + -1302.4334984968257, 6019.575736652119, 11423.770154669322, + 16794.47703341661, 20960.644246934004, 24699.159546263643, + 27652.446196059416, 28180.33524950175, 26480.03142800093, + 22296.376786006036, 16076.94018031451, 8571.52430800821, + 1838.593591142017, -3884.1645948916685, -7641.039812732161, + -8885.953268385672, -8791.161612736294, -7883.891297807877, + -7168.668511211063, -7572.203559655239, -9249.93199798993, + -11969.202525134575, -14728.133499032854, -16827.364528733622, + -17465.581807632218, -16048.236639012948, -12930.775436846483, + -8978.257206529106, -5066.366665126163, -1896.8980527033505, + -556.9727995967372, -597.2836205628016, -1359.9675486507513, + -2164.898150581422, -1976.5713156532809, -198.15296883010322, + 3026.7961006442065, 7225.455620256213, 10919.349844898063, + 13414.325887766783, 13971.363632141505, 12588.690037862345, + 10690.809270965441, 10279.235539125983, 13703.892996023067, + 23207.09492704566, 39845.77730820251, 64631.76120232099, + 93219.90939187286, 125147.52589152245, 157045.02034753512, + 180218.3703377509 + ], + "flow:branch60_seg1:J70": [ + 30.573709462637062, 34.052204550576825, 35.61667811620973, + 35.24278212983938, 33.21569630166145, 29.874267716494085, + 25.693961086443448, 21.349891499052593, 17.240016286376928, + 13.413234430437896, 10.237348090522193, 7.366587045190123, + 4.6556799699139155, 2.081333099753737, -0.6662197859373756, + -3.3307160631379493, -5.94481957467526, -8.389420788221498, + -10.268146130522148, -11.745732408320745, -12.720825248814098, + -13.242548816814697, -13.544926142433926, -13.681627291604734, + -13.761098143428264, -13.79159463689712, -13.683032020129376, + -13.353351514594907, -12.739084515336398, -11.849031179478214, + -10.801893647533278, -9.870438084451715, -9.284089989325807, + -9.337537250942704, -10.188822682293289, -11.821350490675187, + -13.982067158170421, -16.38248252232908, -18.534883369914144, + -19.913188713413547, -20.31596440160045, -19.508254604831283, + -17.568216195462217, -14.754737421428077, -11.587181656513309, + -8.253728614708319, -5.235422378530728, -2.802646313565394, + -0.8122795264244963, 0.6020772933591804, 1.7013134724661838, + 2.6541132136260095, 3.442897130334304, 4.189038087478674, + 4.748956667685073, 4.995865913218115, 4.86017629173357, 4.264520790410429, + 3.2635472569289754, 2.0258183728327306, 0.760371196095067, + -0.3762445121963618, -1.1309487072487105, -1.5195844939587486, + -1.5951318054322248, -1.456697400632833, -1.312253671889386, + -1.3146281879299009, -1.533003041274981, -1.9569860229560823, + -2.451241632064683, -2.885767346318856, -3.0895283484064606, + -2.9591551423180165, -2.5156540213150422, -1.8603759167018112, + -1.14133301155637, -0.5320711614348412, -0.18495198154668382, + -0.08583338022131373, -0.1881265149736881, -0.34522543098495173, + -0.3776311608651818, -0.16484916681965092, 0.3262695143587103, + 1.0123502187224307, 1.714905890212265, 2.2660415137281116, + 2.469630064872315, 2.3384552942258425, 2.024281543016479, + 1.8309610042165327, 2.175622496447423, 3.4671150344798605, + 5.998651768881252, 9.906441546139794, 14.743597796682986, + 20.35238416532194, 25.950266027531914, 30.573709462637062 + ], + "pressure:branch60_seg1:J70": [ + 171606.48372211982, 189220.2903134437, 196657.38029758653, + 192874.5000663176, 180356.96811505832, 161249.6506193262, + 138026.0232771065, 113602.053341911, 91695.18817680948, 71111.11854282912, + 53698.88901585173, 38471.853649326884, 23441.465122908325, + 9312.223564891478, -5696.982883653641, -20540.684147949185, + -34648.493688253795, -47890.141908919955, -57901.63032698893, + -65498.88396847262, -70606.64553102321, -73181.99498231015, + -74655.36986127427, -75370.30917559644, -75747.76254259468, + -75861.68937779349, -75125.4057861743, -73083.3433001204, + -69443.40967903819, -64396.35527445636, -58551.198196274214, + -53614.67640524434, -50880.25155908916, -51708.94121422723, + -57042.0858730237, -66597.1816166347, -78875.36706343613, + -91920.96249354404, -103487.53221602393, -110324.2029510862, + -111539.4963641469, -106238.55682363895, -94777.98923595579, + -78657.13349101509, -61107.92010913406, -42946.91198751747, + -26463.4048527217, -13648.622512422091, -3150.010739081947, + 4388.935842381872, 10114.054026325413, 15378.754203847588, + 19604.771474585876, 23526.37802382292, 26534.81284210432, + 27544.494300889324, 26420.643236296844, 22806.77730384977, + 17057.450344934445, 10024.886204139655, 3211.464888957981, + -2783.1585405229807, -6738.6061517337475, -8504.640989849597, + -8712.05765904916, -7897.192757314293, -7139.423445810383, + -7308.452003356672, -8694.148311746225, -11163.983362520781, + -13878.96736942079, -16132.649507217388, -17053.281973715915, + -16056.565948212705, -13364.117073880456, -9643.733641828914, + -5741.459489631087, -2483.923843934593, -823.256621520867, + -518.6085402217716, -1157.090903533512, -1991.4940637540378, + -2021.7051982051203, -617.2088858232711, 2273.6935280683288, + 6187.797230834643, 9954.263644462551, 12749.659937035502, + 13633.941200789634, 12651.537420166775, 10868.006074532846, + 10071.222066171998, 12567.28305988625, 20569.11438749123, + 35494.10660868585, 58137.89691248093, 85339.87718920164, + 116342.25453968128, 147354.17541450085, 171606.48372211982 + ], + "flow:J70:branch60_seg2": [ + 30.573709462637062, 34.052204550576825, 35.61667811620973, + 35.24278212983938, 33.21569630166145, 29.874267716494085, + 25.693961086443448, 21.349891499052593, 17.240016286376928, + 13.413234430437896, 10.237348090522193, 7.366587045190123, + 4.6556799699139155, 2.081333099753737, -0.6662197859373756, + -3.3307160631379493, -5.94481957467526, -8.389420788221498, + -10.268146130522148, -11.745732408320745, -12.720825248814098, + -13.242548816814697, -13.544926142433926, -13.681627291604734, + -13.761098143428264, -13.79159463689712, -13.683032020129376, + -13.353351514594907, -12.739084515336398, -11.849031179478214, + -10.801893647533278, -9.870438084451715, -9.284089989325807, + -9.337537250942704, -10.188822682293289, -11.821350490675187, + -13.982067158170421, -16.38248252232908, -18.534883369914144, + -19.913188713413547, -20.31596440160045, -19.508254604831283, + -17.568216195462217, -14.754737421428077, -11.587181656513309, + -8.253728614708319, -5.235422378530728, -2.802646313565394, + -0.8122795264244963, 0.6020772933591804, 1.7013134724661838, + 2.6541132136260095, 3.442897130334304, 4.189038087478674, + 4.748956667685073, 4.995865913218115, 4.86017629173357, 4.264520790410429, + 3.2635472569289754, 2.0258183728327306, 0.760371196095067, + -0.3762445121963618, -1.1309487072487105, -1.5195844939587486, + -1.5951318054322248, -1.456697400632833, -1.312253671889386, + -1.3146281879299009, -1.533003041274981, -1.9569860229560823, + -2.451241632064683, -2.885767346318856, -3.0895283484064606, + -2.9591551423180165, -2.5156540213150422, -1.8603759167018112, + -1.14133301155637, -0.5320711614348412, -0.18495198154668382, + -0.08583338022131373, -0.1881265149736881, -0.34522543098495173, + -0.3776311608651818, -0.16484916681965092, 0.3262695143587103, + 1.0123502187224307, 1.714905890212265, 2.2660415137281116, + 2.469630064872315, 2.3384552942258425, 2.024281543016479, + 1.8309610042165327, 2.175622496447423, 3.4671150344798605, + 5.998651768881252, 9.906441546139794, 14.743597796682986, + 20.35238416532194, 25.950266027531914, 30.573709462637062 + ], + "pressure:J70:branch60_seg2": [ + 171606.48372211982, 189220.2903134437, 196657.38029758653, + 192874.5000663176, 180356.96811505832, 161249.6506193262, + 138026.0232771065, 113602.053341911, 91695.18817680948, 71111.11854282912, + 53698.88901585173, 38471.853649326884, 23441.465122908325, + 9312.223564891478, -5696.982883653641, -20540.684147949185, + -34648.493688253795, -47890.141908919955, -57901.63032698893, + -65498.88396847262, -70606.64553102321, -73181.99498231015, + -74655.36986127427, -75370.30917559644, -75747.76254259468, + -75861.68937779349, -75125.4057861743, -73083.3433001204, + -69443.40967903819, -64396.35527445636, -58551.198196274214, + -53614.67640524434, -50880.25155908916, -51708.94121422723, + -57042.0858730237, -66597.1816166347, -78875.36706343613, + -91920.96249354404, -103487.53221602393, -110324.2029510862, + -111539.4963641469, -106238.55682363895, -94777.98923595579, + -78657.13349101509, -61107.92010913406, -42946.91198751747, + -26463.4048527217, -13648.622512422091, -3150.010739081947, + 4388.935842381872, 10114.054026325413, 15378.754203847588, + 19604.771474585876, 23526.37802382292, 26534.81284210432, + 27544.494300889324, 26420.643236296844, 22806.77730384977, + 17057.450344934445, 10024.886204139655, 3211.464888957981, + -2783.1585405229807, -6738.6061517337475, -8504.640989849597, + -8712.05765904916, -7897.192757314293, -7139.423445810383, + -7308.452003356672, -8694.148311746225, -11163.983362520781, + -13878.96736942079, -16132.649507217388, -17053.281973715915, + -16056.565948212705, -13364.117073880456, -9643.733641828914, + -5741.459489631087, -2483.923843934593, -823.256621520867, + -518.6085402217716, -1157.090903533512, -1991.4940637540378, + -2021.7051982051203, -617.2088858232711, 2273.6935280683288, + 6187.797230834643, 9954.263644462551, 12749.659937035502, + 13633.941200789634, 12651.537420166775, 10868.006074532846, + 10071.222066171998, 12567.28305988625, 20569.11438749123, + 35494.10660868585, 58137.89691248093, 85339.87718920164, + 116342.25453968128, 147354.17541450085, 171606.48372211982 + ], + "flow:branch61_seg0:J71": [ + 56.164170541484985, 64.40899712840398, 69.62313789833223, + 71.27143400161606, 69.45423736526003, 64.63637954395942, + 57.62361213903751, 49.42091457485421, 41.049548183237185, + 32.9770261809641, 25.74823703744068, 19.222018300694973, + 13.194132668926528, 7.541016835572692, 1.8684374900684755, + -3.6934591997390616, -9.172126323636858, -14.326306567804622, + -18.66385878756334, -22.21583229139995, -24.811523447338104, + -26.4879616107034, -27.522051003740984, -28.084970117936326, + -28.38886014385674, -28.514552887809703, -28.38688183041738, + -27.88444070439165, -26.88322826156748, -25.35917247303409, + -23.44726602807759, -21.535984131864424, -20.067905012325497, + -19.559731480304546, -20.406433156831675, -22.740634277319405, + -26.32239419431328, -30.67645559186996, -35.01868058602751, + -38.41980896297062, -40.25135914988718, -39.97680177570915, + -37.494066084866, -33.06879667139813, -27.43678277685912, + -21.07894384784846, -14.832894965772205, -9.319636539407679, + -4.633928922438774, -0.9850101420008724, 1.8798666383588885, + 4.235812038659551, 6.156639873978998, 7.8320892788421945, + 9.172933837490948, 9.980548346835812, 10.098090526107915, + 9.378240356282605, 7.846020449871071, 5.691399259471043, + 3.2684735940668252, 0.9142970177421837, -0.9655456436994747, + -2.2235440148424472, -2.8381463954326134, -2.9425637257740553, + -2.8374772524012712, -2.8183516245554507, -3.086714352850756, + -3.709044268283223, -4.544989011905942, -5.392726118195011, + -5.958761194984642, -6.009872564529153, -5.480976042393054, + -4.4697792381434684, -3.1954445581058013, -1.9481874667774923, + -1.0305832322556339, -0.5399481724351941, -0.45392318317052677, + -0.5873270071673597, -0.6564292227907373, -0.40575352183614455, + 0.29988004829450987, 1.419505010200898, 2.7113479721272733, + 3.87555543157158, 4.574709277045907, 4.697958106548711, 4.376920501172323, + 4.046356588141012, 4.387221016516589, 6.162541729415973, + 10.029763392103732, 16.40209713278274, 24.87237575905311, + 35.168233054080765, 46.1427712593863, 56.164170541484985 + ], + "pressure:branch61_seg0:J71": [ + 181352.562938414, 196479.14616233343, 203237.69058817698, + 197177.80808072022, 182605.54770761903, 162536.4799441507, + 138984.50830099537, 112757.55381510686, 91308.5065530538, + 70513.32946795762, 51891.59770227129, 36908.43456855753, + 20576.853250583503, 5671.969328813246, -9704.777165635343, + -25475.500849869284, -39170.273668587826, -52735.48338780649, + -62805.697848471806, -69435.51773309728, -74580.87783372795, + -76946.72408750761, -78165.53865138571, -78940.24809862123, + -79091.5888343198, -78973.85091908096, -77847.08467960962, + -75201.9436481561, -70902.35054522245, -65485.24930353746, + -59321.13823186318, -54546.53444993273, -52629.64699292564, + -54233.352660717814, -60512.1726674072, -71024.13371220329, + -83931.89311473393, -96599.58478058189, -108035.26540738768, + -113879.55982473731, -113563.81904817845, -107223.70093591002, + -94703.2204143304, -77314.37517439827, -59346.34273382373, + -41616.31990254536, -24391.92571823329, -11826.504873691665, + -1588.4351458890817, 6469.8253499585335, 11933.824381381852, + 17716.04350660071, 22145.623968197167, 25664.709950251625, + 28631.03289651585, 29025.74248202658, 27165.48372070058, + 22947.287329306877, 16736.031060466023, 9141.589156692911, + 2478.12416984817, -3298.7536939606853, -7236.116993169132, + -8548.083153837471, -8708.800983098608, -8096.69324131814, + -7517.961745909155, -7995.845833525656, -9683.833214012606, + -12344.66995277206, -14993.183095118864, -16877.55461150497, + -17509.183542004288, -16099.83142696858, -13000.639367933532, + -9103.28649412834, -5366.127889340788, -2158.9433877928836, + -769.2458662020368, -804.8236444909483, -1404.6124089807297, + -2032.7132818301634, -1734.8305780983285, 100.71244045240834, + 3281.779349100998, 7415.968563940677, 10949.896521340603, + 13350.850453617033, 13937.260218177347, 12595.17820250549, + 10884.071692409201, 10752.556017568431, 14459.83120903186, + 24122.94462060503, 40792.60073390415, 65741.46566162941, 94434.8508847364, + 125180.8467858049, 157964.7196999533, 181352.562938414 + ], + "flow:J71:branch61_seg1": [ + 56.164170541484985, 64.40899712840398, 69.62313789833223, + 71.27143400161606, 69.45423736526003, 64.63637954395942, + 57.62361213903751, 49.42091457485421, 41.049548183237185, + 32.9770261809641, 25.74823703744068, 19.222018300694973, + 13.194132668926528, 7.541016835572692, 1.8684374900684755, + -3.6934591997390616, -9.172126323636858, -14.326306567804622, + -18.66385878756334, -22.21583229139995, -24.811523447338104, + -26.4879616107034, -27.522051003740984, -28.084970117936326, + -28.38886014385674, -28.514552887809703, -28.38688183041738, + -27.88444070439165, -26.88322826156748, -25.35917247303409, + -23.44726602807759, -21.535984131864424, -20.067905012325497, + -19.559731480304546, -20.406433156831675, -22.740634277319405, + -26.32239419431328, -30.67645559186996, -35.01868058602751, + -38.41980896297062, -40.25135914988718, -39.97680177570915, + -37.494066084866, -33.06879667139813, -27.43678277685912, + -21.07894384784846, -14.832894965772205, -9.319636539407679, + -4.633928922438774, -0.9850101420008724, 1.8798666383588885, + 4.235812038659551, 6.156639873978998, 7.8320892788421945, + 9.172933837490948, 9.980548346835812, 10.098090526107915, + 9.378240356282605, 7.846020449871071, 5.691399259471043, + 3.2684735940668252, 0.9142970177421837, -0.9655456436994747, + -2.2235440148424472, -2.8381463954326134, -2.9425637257740553, + -2.8374772524012712, -2.8183516245554507, -3.086714352850756, + -3.709044268283223, -4.544989011905942, -5.392726118195011, + -5.958761194984642, -6.009872564529153, -5.480976042393054, + -4.4697792381434684, -3.1954445581058013, -1.9481874667774923, + -1.0305832322556339, -0.5399481724351941, -0.45392318317052677, + -0.5873270071673597, -0.6564292227907373, -0.40575352183614455, + 0.29988004829450987, 1.419505010200898, 2.7113479721272733, + 3.87555543157158, 4.574709277045907, 4.697958106548711, 4.376920501172323, + 4.046356588141012, 4.387221016516589, 6.162541729415973, + 10.029763392103732, 16.40209713278274, 24.87237575905311, + 35.168233054080765, 46.1427712593863, 56.164170541484985 + ], + "pressure:J71:branch61_seg1": [ + 181352.562938414, 196479.14616233343, 203237.69058817698, + 197177.80808072022, 182605.54770761903, 162536.4799441507, + 138984.50830099537, 112757.55381510686, 91308.5065530538, + 70513.32946795762, 51891.59770227129, 36908.43456855753, + 20576.853250583503, 5671.969328813246, -9704.777165635343, + -25475.500849869284, -39170.273668587826, -52735.48338780649, + -62805.697848471806, -69435.51773309728, -74580.87783372795, + -76946.72408750761, -78165.53865138571, -78940.24809862123, + -79091.5888343198, -78973.85091908096, -77847.08467960962, + -75201.9436481561, -70902.35054522245, -65485.24930353746, + -59321.13823186318, -54546.53444993273, -52629.64699292564, + -54233.352660717814, -60512.1726674072, -71024.13371220329, + -83931.89311473393, -96599.58478058189, -108035.26540738768, + -113879.55982473731, -113563.81904817845, -107223.70093591002, + -94703.2204143304, -77314.37517439827, -59346.34273382373, + -41616.31990254536, -24391.92571823329, -11826.504873691665, + -1588.4351458890817, 6469.8253499585335, 11933.824381381852, + 17716.04350660071, 22145.623968197167, 25664.709950251625, + 28631.03289651585, 29025.74248202658, 27165.48372070058, + 22947.287329306877, 16736.031060466023, 9141.589156692911, + 2478.12416984817, -3298.7536939606853, -7236.116993169132, + -8548.083153837471, -8708.800983098608, -8096.69324131814, + -7517.961745909155, -7995.845833525656, -9683.833214012606, + -12344.66995277206, -14993.183095118864, -16877.55461150497, + -17509.183542004288, -16099.83142696858, -13000.639367933532, + -9103.28649412834, -5366.127889340788, -2158.9433877928836, + -769.2458662020368, -804.8236444909483, -1404.6124089807297, + -2032.7132818301634, -1734.8305780983285, 100.71244045240834, + 3281.779349100998, 7415.968563940677, 10949.896521340603, + 13350.850453617033, 13937.260218177347, 12595.17820250549, + 10884.071692409201, 10752.556017568431, 14459.83120903186, + 24122.94462060503, 40792.60073390415, 65741.46566162941, 94434.8508847364, + 125180.8467858049, 157964.7196999533, 181352.562938414 + ], + "flow:branch61_seg1:J72": [ + 56.12559370426155, 64.39859455644633, 69.62380166044139, + 71.28476983030434, 69.4849380125955, 64.68198839039209, 57.6623740681945, + 49.480123546970106, 41.10043159443848, 33.007898833732035, + 25.78779278811856, 19.251360964542098, 13.225242607701379, + 7.572103208610591, 1.889116404905463, -3.6656023201602608, + -9.147942646212472, -14.315297900648615, -18.652376233522862, + -22.208824397930464, -24.810472648656145, -26.484868277797588, + -27.522374543724506, -28.085340369890805, -28.388471308186773, + -28.515852507356758, -28.38950246678929, -27.889935484452792, + -26.892077751186175, -25.37041043938497, -23.45712715267055, + -21.54557897639797, -20.068394827775414, -19.551914333968984, + -20.391087375411953, -22.72089460148314, -26.292131887900197, + -30.654706319387543, -35.00252458826246, -38.41309499070718, + -40.25902156366231, -39.996876758281296, -37.51631604894436, + -33.091482626680154, -27.461814036635932, -21.102687408130677, + -14.848761704651402, -9.338021994673907, -4.642406619907047, + -0.9927147243341624, 1.8695733990341303, 4.22909918750059, + 6.147217335009878, 7.827138340420524, 9.169079461832611, + 9.979867732860406, 10.103360549190434, 9.389368406797823, + 7.8574958610134225, 5.7093349638182715, 3.2829095350191606, + 0.9202828712893518, -0.9601107211875313, -2.221398669363188, + -2.840036615446186, -2.9437672456792257, -2.8372955548669836, + -2.816442890030405, -3.083523575645456, -3.7055841488027546, + -4.542055931936187, -5.391113875060325, -5.960330295171652, + -6.012842034600967, -5.486499997196127, -4.475934295296528, + -3.2016651788885415, -1.951834620299837, -1.0332019454103478, + -0.5390744173482297, -0.45195194643841796, -0.5869863833860733, + -0.6582183589637898, -0.41105348688961696, 0.29350040880282674, + 1.4100707807371544, 2.704516155122541, 3.8744494643579643, + 4.576043156068674, 4.7002971622487175, 4.379233772456923, + 4.043878369085383, 4.3769163886903595, 6.1406706150704755, + 10.000224636314728, 16.367607526340826, 24.834821779469376, + 35.1197995406365, 46.1087875166712, 56.12559370426155 + ], + "pressure:branch61_seg1:J72": [ + 170149.59391139177, 187262.6957595043, 196287.42485439827, + 193586.83174216453, 182264.96275547732, 164697.6879434349, + 142752.21419922408, 118420.14360039245, 96592.39374224322, + 75398.83886852665, 56899.279557334215, 41263.89331280676, + 25109.918367132686, 10249.637025425856, -5164.28017547621, + -20382.552240367313, -34020.17797323011, -47953.627107971406, + -58398.34952572461, -65690.3142422363, -71439.44721151386, + -74393.2829413075, -76105.91630148263, -77124.36561189461, + -77435.93451009065, -77474.14249581713, -76628.34775214209, + -74424.36124840366, -70692.85229288046, -65749.44372867809, + -59951.72173915388, -55085.02695474717, -52501.36551873421, + -53124.57584516288, -58075.63536902045, -67220.59479241917, + -78857.55454896527, -91166.79345607855, -102701.19719173189, + -109520.46084658543, -110895.85517499158, -106392.85625980585, + -95800.3943430216, -80043.82623867369, -63179.24863274188, + -46083.369605972526, -28949.572917036014, -15871.900378113112, + -4963.284328671234, 3612.6731726015955, 9560.841986776828, + 15490.661367860504, 20194.328930081916, 23963.078403759737, + 27076.35410081598, 28059.89208950432, 26933.01460509659, + 23512.07784524317, 17977.82556800324, 11090.529420880686, + 4478.594352728616, -1566.9142203046144, -5743.07941786753, + -7632.963073151879, -8308.393859577996, -7977.4535692664895, + -7471.931879298404, -7772.690021614355, -9143.14973268165, + -11503.482774309909, -14003.784969523083, -15946.287243083249, + -16885.33754963235, -15985.488857175165, -13439.894706352847, + -9947.344572721984, -6367.552364912703, -3127.0986981875, + -1373.0175811085614, -986.2982329737213, -1323.4180102512967, + -1876.9932612426808, -1746.94377047378, -310.4925376806921, + 2453.8168295394717, 6172.699816883359, 9681.959625669548, + 12371.572471741638, 13330.725837240954, 12478.042809089597, + 11035.82822573806, 10658.963638813826, 13438.159386184801, + 21461.94830753089, 35932.295681296404, 58408.65247242038, + 85032.97307326332, 113865.66664598077, 145686.52682816092, + 170149.59391139177 + ], + "flow:J72:branch61_seg2": [ + 56.12559370426155, 64.39859455644633, 69.62380166044139, + 71.28476983030434, 69.4849380125955, 64.68198839039209, 57.6623740681945, + 49.480123546970106, 41.10043159443848, 33.007898833732035, + 25.78779278811856, 19.251360964542098, 13.225242607701379, + 7.572103208610591, 1.889116404905463, -3.6656023201602608, + -9.147942646212472, -14.315297900648615, -18.652376233522862, + -22.208824397930464, -24.810472648656145, -26.484868277797588, + -27.522374543724506, -28.085340369890805, -28.388471308186773, + -28.515852507356758, -28.38950246678929, -27.889935484452792, + -26.892077751186175, -25.37041043938497, -23.45712715267055, + -21.54557897639797, -20.068394827775414, -19.551914333968984, + -20.391087375411953, -22.72089460148314, -26.292131887900197, + -30.654706319387543, -35.00252458826246, -38.41309499070718, + -40.25902156366231, -39.996876758281296, -37.51631604894436, + -33.091482626680154, -27.461814036635932, -21.102687408130677, + -14.848761704651402, -9.338021994673907, -4.642406619907047, + -0.9927147243341624, 1.8695733990341303, 4.22909918750059, + 6.147217335009878, 7.827138340420524, 9.169079461832611, + 9.979867732860406, 10.103360549190434, 9.389368406797823, + 7.8574958610134225, 5.7093349638182715, 3.2829095350191606, + 0.9202828712893518, -0.9601107211875313, -2.221398669363188, + -2.840036615446186, -2.9437672456792257, -2.8372955548669836, + -2.816442890030405, -3.083523575645456, -3.7055841488027546, + -4.542055931936187, -5.391113875060325, -5.960330295171652, + -6.012842034600967, -5.486499997196127, -4.475934295296528, + -3.2016651788885415, -1.951834620299837, -1.0332019454103478, + -0.5390744173482297, -0.45195194643841796, -0.5869863833860733, + -0.6582183589637898, -0.41105348688961696, 0.29350040880282674, + 1.4100707807371544, 2.704516155122541, 3.8744494643579643, + 4.576043156068674, 4.7002971622487175, 4.379233772456923, + 4.043878369085383, 4.3769163886903595, 6.1406706150704755, + 10.000224636314728, 16.367607526340826, 24.834821779469376, + 35.1197995406365, 46.1087875166712, 56.12559370426155 + ], + "pressure:J72:branch61_seg2": [ + 170149.59391139177, 187262.6957595043, 196287.42485439827, + 193586.83174216453, 182264.96275547732, 164697.6879434349, + 142752.21419922408, 118420.14360039245, 96592.39374224322, + 75398.83886852665, 56899.279557334215, 41263.89331280676, + 25109.918367132686, 10249.637025425856, -5164.28017547621, + -20382.552240367313, -34020.17797323011, -47953.627107971406, + -58398.34952572461, -65690.3142422363, -71439.44721151386, + -74393.2829413075, -76105.91630148263, -77124.36561189461, + -77435.93451009065, -77474.14249581713, -76628.34775214209, + -74424.36124840366, -70692.85229288046, -65749.44372867809, + -59951.72173915388, -55085.02695474717, -52501.36551873421, + -53124.57584516288, -58075.63536902045, -67220.59479241917, + -78857.55454896527, -91166.79345607855, -102701.19719173189, + -109520.46084658543, -110895.85517499158, -106392.85625980585, + -95800.3943430216, -80043.82623867369, -63179.24863274188, + -46083.369605972526, -28949.572917036014, -15871.900378113112, + -4963.284328671234, 3612.6731726015955, 9560.841986776828, + 15490.661367860504, 20194.328930081916, 23963.078403759737, + 27076.35410081598, 28059.89208950432, 26933.01460509659, + 23512.07784524317, 17977.82556800324, 11090.529420880686, + 4478.594352728616, -1566.9142203046144, -5743.07941786753, + -7632.963073151879, -8308.393859577996, -7977.4535692664895, + -7471.931879298404, -7772.690021614355, -9143.14973268165, + -11503.482774309909, -14003.784969523083, -15946.287243083249, + -16885.33754963235, -15985.488857175165, -13439.894706352847, + -9947.344572721984, -6367.552364912703, -3127.0986981875, + -1373.0175811085614, -986.2982329737213, -1323.4180102512967, + -1876.9932612426808, -1746.94377047378, -310.4925376806921, + 2453.8168295394717, 6172.699816883359, 9681.959625669548, + 12371.572471741638, 13330.725837240954, 12478.042809089597, + 11035.82822573806, 10658.963638813826, 13438.159386184801, + 21461.94830753089, 35932.295681296404, 58408.65247242038, + 85032.97307326332, 113865.66664598077, 145686.52682816092, + 170149.59391139177 + ], + "flow:branch64_seg0:J73": [ + 15.793132423138342, 18.561549381273704, 20.620126912228574, + 21.794198130225478, 22.030233660168182, 21.37345201739165, + 19.976240732795823, 18.101302059506235, 15.971519097856213, + 13.744025587452766, 11.608886140199283, 9.550608052494468, + 7.571224932586165, 5.649688010205305, 3.7008888178723174, + 1.7731089662904242, -0.148194957080921, -1.9933134377285269, + -3.637005351552281, -5.0744519434696835, -6.239002213605328, + -7.132191236321808, -7.8125948243799375, -8.315268879704721, + -8.697048751949607, -8.982410147241369, -9.16046593819165, + -9.20631393502677, -9.089266467558419, -8.798219185508344, + -8.364470873838782, -7.8816250937311665, -7.461157858129117, + -7.2518718130320625, -7.373166495625847, -7.886022977009535, + -8.757124047554967, -9.89747064714687, -11.109558284202333, + -12.161014016553548, -12.868221944968612, -13.055653469890666, + -12.656543443527866, -11.702274549926935, -10.33981504856983, + -8.680205856842717, -6.94495451460269, -5.293821059043159, + -3.781810481557678, -2.498269875815313, -1.398211086115318, + -0.44079942657927873, 0.38880435778282507, 1.1375370973912207, + 1.7727241033185208, 2.2519893899034122, 2.53120269180597, + 2.5638525203186653, 2.3444167683128248, 1.9167186374854597, + 1.355807423037734, 0.7512773742614779, 0.21965153926329398, + -0.18982174618076567, -0.4508511920493112, -0.579462584150898, + -0.6403069379460746, -0.7025769097394876, -0.8207241584078462, + -1.0199170001064684, -1.2757614654169316, -1.5437507179596102, + -1.749672986256643, -1.8313485236604148, -1.7623754234964786, + -1.554055664060174, -1.2520593887411382, -0.9288666628098287, + -0.6616946376552771, -0.48427323921376847, -0.4072167635220149, + -0.39358045592260915, -0.37684159154667557, -0.29216506253311575, + -0.09646282701231423, 0.20827560904516404, 0.5747181270875427, + 0.9300855670353232, 1.1834067865117204, 1.2965622596333872, + 1.2873248881921915, 1.2512898862975228, 1.3559000876284246, + 1.8023473182105598, 2.7828734445462393, 4.432353613095467, + 6.7029598854179975, 9.5579302845574, 12.713700713222496, + 15.793132423138342 + ], + "pressure:branch64_seg0:J73": [ + 126317.11066320079, 145423.18348655463, 159184.58815448798, + 165272.929150423, 164477.54697058286, 157487.29416707993, + 145530.76707004654, 130110.2392301571, 113823.50830396636, + 97244.18269071513, 81331.98979273891, 66306.35672674913, + 51520.40676134353, 37175.72707449738, 22555.54990638762, + 8131.529654855628, -6097.044156401356, -19831.20524343893, + -31439.57125852235, -41455.047915199655, -49614.385307073, + -55553.34302204993, -60129.23294237693, -63523.56386168715, + -66059.42434063296, -67976.39630399655, -69000.60779652285, + -68934.64608939948, -67585.49489307724, -64994.476864404234, + -61405.74728842721, -57773.33369869672, -55042.262313642175, + -54125.702746045084, -56012.876691865335, -60947.825903398545, + -68335.13121309706, -77349.62126972932, -86463.44522226376, + -93622.14610727575, -97703.05475060496, -97653.66526115083, + -93095.78810424953, -84357.16702748952, -73418.90202409688, + -60586.20198982829, -47230.06872247374, -35447.97044836799, + -24587.838365987714, -15452.495361584219, -7864.448914985248, + -838.8284240233967, 5064.046538105635, 10297.208138507704, + 14850.445385147921, 17934.068199325935, 19399.35441180491, + 19001.003787413796, 16725.38858164596, 12991.806854572711, + 8555.81468907896, 4070.890871630516, 336.5897498095548, + -2319.4906334354873, -3896.918765236535, -4583.322772785494, + -4920.943679162485, -5472.51065529981, -6559.507000653336, + -8290.686981577723, -10281.894370562783, -12203.65732835445, + -13555.767640004418, -13765.836594870974, -12819.006726954394, + -10935.13492523035, -8555.752887156363, -6102.470803490612, + -4324.915243250149, -3322.8999157950993, -2937.8864469942846, + -2934.459811509992, -2728.2898047511167, -1844.3778282762692, + -66.38191543257894, 2488.824386402672, 5311.561856261346, + 7826.969166185812, 9391.173464310335, 9836.025089953395, + 9509.156043188386, 9359.54349907556, 10762.853566280148, + 15277.770868066244, 24174.87734994973, 38624.27293766384, + 57057.08247640119, 79263.79263862202, 104221.88389831586, + 126317.11066320079 + ], + "flow:J73:branch64_seg1": [ + 15.793132423138342, 18.561549381273704, 20.620126912228574, + 21.794198130225478, 22.030233660168182, 21.37345201739165, + 19.976240732795823, 18.101302059506235, 15.971519097856213, + 13.744025587452766, 11.608886140199283, 9.550608052494468, + 7.571224932586165, 5.649688010205305, 3.7008888178723174, + 1.7731089662904242, -0.148194957080921, -1.9933134377285269, + -3.637005351552281, -5.0744519434696835, -6.239002213605328, + -7.132191236321808, -7.8125948243799375, -8.315268879704721, + -8.697048751949607, -8.982410147241369, -9.16046593819165, + -9.20631393502677, -9.089266467558419, -8.798219185508344, + -8.364470873838782, -7.8816250937311665, -7.461157858129117, + -7.2518718130320625, -7.373166495625847, -7.886022977009535, + -8.757124047554967, -9.89747064714687, -11.109558284202333, + -12.161014016553548, -12.868221944968612, -13.055653469890666, + -12.656543443527866, -11.702274549926935, -10.33981504856983, + -8.680205856842717, -6.94495451460269, -5.293821059043159, + -3.781810481557678, -2.498269875815313, -1.398211086115318, + -0.44079942657927873, 0.38880435778282507, 1.1375370973912207, + 1.7727241033185208, 2.2519893899034122, 2.53120269180597, + 2.5638525203186653, 2.3444167683128248, 1.9167186374854597, + 1.355807423037734, 0.7512773742614779, 0.21965153926329398, + -0.18982174618076567, -0.4508511920493112, -0.579462584150898, + -0.6403069379460746, -0.7025769097394876, -0.8207241584078462, + -1.0199170001064684, -1.2757614654169316, -1.5437507179596102, + -1.749672986256643, -1.8313485236604148, -1.7623754234964786, + -1.554055664060174, -1.2520593887411382, -0.9288666628098287, + -0.6616946376552771, -0.48427323921376847, -0.4072167635220149, + -0.39358045592260915, -0.37684159154667557, -0.29216506253311575, + -0.09646282701231423, 0.20827560904516404, 0.5747181270875427, + 0.9300855670353232, 1.1834067865117204, 1.2965622596333872, + 1.2873248881921915, 1.2512898862975228, 1.3559000876284246, + 1.8023473182105598, 2.7828734445462393, 4.432353613095467, + 6.7029598854179975, 9.5579302845574, 12.713700713222496, + 15.793132423138342 + ], + "pressure:J73:branch64_seg1": [ + 126317.11066320079, 145423.18348655463, 159184.58815448798, + 165272.929150423, 164477.54697058286, 157487.29416707993, + 145530.76707004654, 130110.2392301571, 113823.50830396636, + 97244.18269071513, 81331.98979273891, 66306.35672674913, + 51520.40676134353, 37175.72707449738, 22555.54990638762, + 8131.529654855628, -6097.044156401356, -19831.20524343893, + -31439.57125852235, -41455.047915199655, -49614.385307073, + -55553.34302204993, -60129.23294237693, -63523.56386168715, + -66059.42434063296, -67976.39630399655, -69000.60779652285, + -68934.64608939948, -67585.49489307724, -64994.476864404234, + -61405.74728842721, -57773.33369869672, -55042.262313642175, + -54125.702746045084, -56012.876691865335, -60947.825903398545, + -68335.13121309706, -77349.62126972932, -86463.44522226376, + -93622.14610727575, -97703.05475060496, -97653.66526115083, + -93095.78810424953, -84357.16702748952, -73418.90202409688, + -60586.20198982829, -47230.06872247374, -35447.97044836799, + -24587.838365987714, -15452.495361584219, -7864.448914985248, + -838.8284240233967, 5064.046538105635, 10297.208138507704, + 14850.445385147921, 17934.068199325935, 19399.35441180491, + 19001.003787413796, 16725.38858164596, 12991.806854572711, + 8555.81468907896, 4070.890871630516, 336.5897498095548, + -2319.4906334354873, -3896.918765236535, -4583.322772785494, + -4920.943679162485, -5472.51065529981, -6559.507000653336, + -8290.686981577723, -10281.894370562783, -12203.65732835445, + -13555.767640004418, -13765.836594870974, -12819.006726954394, + -10935.13492523035, -8555.752887156363, -6102.470803490612, + -4324.915243250149, -3322.8999157950993, -2937.8864469942846, + -2934.459811509992, -2728.2898047511167, -1844.3778282762692, + -66.38191543257894, 2488.824386402672, 5311.561856261346, + 7826.969166185812, 9391.173464310335, 9836.025089953395, + 9509.156043188386, 9359.54349907556, 10762.853566280148, + 15277.770868066244, 24174.87734994973, 38624.27293766384, + 57057.08247640119, 79263.79263862202, 104221.88389831586, + 126317.11066320079 + ], + "flow:branch64_seg1:J74": [ + 15.733141363462543, 18.515537181788435, 20.589868743417462, + 21.78679393182646, 22.045380292803884, 21.40206511589718, + 20.008920109523203, 18.154434048057297, 16.018327565522018, + 13.781564053906115, 11.655683335704733, 9.590629190172477, + 7.610513110835533, 5.692313096226724, 3.736192332186509, + 1.8143187103117766, -0.103211807652876, -1.9607708869911078, + -3.6052901237940724, -5.047140829696509, -6.219314102994767, + -7.116244244906906, -7.801416900281806, -8.307102190408761, + -8.690338049726988, -8.977990060535758, -9.159070122457257, + -9.208324613490285, -9.095788498812642, -8.80708686940743, + -8.375552572778215, -7.891431885790614, -7.465130286070204, + -7.250570320523509, -7.363991464814307, -7.870448017669095, + -8.732203800659395, -9.872062993318995, -11.087601358374824, + -12.142829347717603, -12.86339183143115, -13.061969071549857, + -12.67560252541588, -11.73001581367731, -10.374480459428723, + -8.720338969478828, -6.982717688140425, -5.327999166664519, + -3.810781569754648, -2.52245631508215, -1.4195773474298552, + -0.4610390778347163, 0.37327661185016453, 1.1246006262193793, + 1.7606599679664507, 2.2454552222359196, 2.5303101875122764, + 2.5679732623740565, 2.351919782382071, 1.929687867424605, + 1.3690649928928882, 0.7595055329076295, 0.22968877263881443, + -0.18307581140662518, -0.44862224959094793, -0.5780070671513472, + -0.6391013814344962, -0.7005264695304932, -0.8166897390314939, + -1.0143840099350003, -1.2699284454727762, -1.538376336370904, + -1.7471632963159331, -1.8323769130866316, -1.7668479200666716, + -1.560980880301687, -1.2591675089056469, -0.9358914699291196, + -0.6655512321899627, -0.4854634303554766, -0.4075171458212325, + -0.3937862751628038, -0.3783334189870726, -0.2959898329879446, + -0.10223929110824903, 0.2001708426485511, 0.5666489701706048, + 0.9258845488111634, 1.1801857541948357, 1.296074027624371, + 1.2886899030105488, 1.250487248438953, 1.3484164907094542, + 1.7838440662379038, 2.749025970618296, 4.3840431686107655, + 6.6442937802739035, 9.48481700887559, 12.637855562039485, + 15.733141363462543 + ], + "pressure:branch64_seg1:J74": [ + 117444.70858764299, 137472.92418084666, 152296.0892660336, + 160423.36226257487, 161695.68013713314, 156473.14698868257, + 145893.80627718984, 131931.9298065379, 116178.85585187511, + 99796.09493844297, 84196.14866435363, 69135.75857898312, + 54610.72144077198, 40535.84023092422, 26180.577600097084, + 12069.526252161166, -1974.324885510847, -15574.259910551466, + -27480.6061796851, -37884.857490611525, -46349.07112939768, + -52753.765560704116, -57656.79208997437, -61279.11442652988, + -64015.52080447693, -66073.43235409215, -67327.2530372507, + -67589.71076141666, -66648.41956475042, -64430.99868687, + -61181.6365640795, -57625.759659515534, -54601.35700178785, + -53184.20500107881, -54254.481596575715, -58234.9824012155, + -64773.786378108256, -73253.04871542232, -82180.56570361515, + -89756.50637716554, -94747.19752242877, -95853.5246422181, + -92636.93523133411, -85314.03337975962, -75184.76959927517, + -62940.907252776495, -50103.106537101485, -38096.38916124221, + -27072.081231241715, -17730.947704508315, -9789.429174184492, + -2786.733945902486, 3260.2087438323406, 8685.296316757906, + 13306.87952215408, 16741.465085206208, 18679.985594715577, + 18800.841562719805, 17063.510879201815, 13833.543317810088, + 9662.287715382603, 5203.884871867987, 1369.534369733809, + -1561.4034802063902, -3417.2409600367228, -4301.787993436123, + -4722.58623961591, -5194.44576948461, -6096.7908429122945, + -7605.803773561864, -9499.505526611103, -11449.81046289123, + -12934.935388176977, -13462.618955089323, -12877.20698948504, + -11287.567620358144, -9044.463409377906, -6663.467936413986, + -4734.67371629155, -3492.0608179169276, -2965.388688900641, + -2887.637758604779, -2753.7883713126816, -2088.287041302551, + -590.786261478332, 1695.6990040149117, 4404.561494520581, + 7002.901724723309, 8791.086797937673, 9544.927921496288, + 9428.372441888543, 9178.710170786588, 10050.31121892902, + 13533.385597383754, 20999.725495402807, 33509.383580395035, + 50446.42276948751, 71507.95843980437, 94968.86846172981, + 117444.70858764299 + ], + "flow:J74:branch64_seg2": [ + 15.733141363462543, 18.515537181788435, 20.589868743417462, + 21.78679393182646, 22.045380292803884, 21.40206511589718, + 20.008920109523203, 18.154434048057297, 16.018327565522018, + 13.781564053906115, 11.655683335704733, 9.590629190172477, + 7.610513110835533, 5.692313096226724, 3.736192332186509, + 1.8143187103117766, -0.103211807652876, -1.9607708869911078, + -3.6052901237940724, -5.047140829696509, -6.219314102994767, + -7.116244244906906, -7.801416900281806, -8.307102190408761, + -8.690338049726988, -8.977990060535758, -9.159070122457257, + -9.208324613490285, -9.095788498812642, -8.80708686940743, + -8.375552572778215, -7.891431885790614, -7.465130286070204, + -7.250570320523509, -7.363991464814307, -7.870448017669095, + -8.732203800659395, -9.872062993318995, -11.087601358374824, + -12.142829347717603, -12.86339183143115, -13.061969071549857, + -12.67560252541588, -11.73001581367731, -10.374480459428723, + -8.720338969478828, -6.982717688140425, -5.327999166664519, + -3.810781569754648, -2.52245631508215, -1.4195773474298552, + -0.4610390778347163, 0.37327661185016453, 1.1246006262193793, + 1.7606599679664507, 2.2454552222359196, 2.5303101875122764, + 2.5679732623740565, 2.351919782382071, 1.929687867424605, + 1.3690649928928882, 0.7595055329076295, 0.22968877263881443, + -0.18307581140662518, -0.44862224959094793, -0.5780070671513472, + -0.6391013814344962, -0.7005264695304932, -0.8166897390314939, + -1.0143840099350003, -1.2699284454727762, -1.538376336370904, + -1.7471632963159331, -1.8323769130866316, -1.7668479200666716, + -1.560980880301687, -1.2591675089056469, -0.9358914699291196, + -0.6655512321899627, -0.4854634303554766, -0.4075171458212325, + -0.3937862751628038, -0.3783334189870726, -0.2959898329879446, + -0.10223929110824903, 0.2001708426485511, 0.5666489701706048, + 0.9258845488111634, 1.1801857541948357, 1.296074027624371, + 1.2886899030105488, 1.250487248438953, 1.3484164907094542, + 1.7838440662379038, 2.749025970618296, 4.3840431686107655, + 6.6442937802739035, 9.48481700887559, 12.637855562039485, + 15.733141363462543 + ], + "pressure:J74:branch64_seg2": [ + 117444.70858764299, 137472.92418084666, 152296.0892660336, + 160423.36226257487, 161695.68013713314, 156473.14698868257, + 145893.80627718984, 131931.9298065379, 116178.85585187511, + 99796.09493844297, 84196.14866435363, 69135.75857898312, + 54610.72144077198, 40535.84023092422, 26180.577600097084, + 12069.526252161166, -1974.324885510847, -15574.259910551466, + -27480.6061796851, -37884.857490611525, -46349.07112939768, + -52753.765560704116, -57656.79208997437, -61279.11442652988, + -64015.52080447693, -66073.43235409215, -67327.2530372507, + -67589.71076141666, -66648.41956475042, -64430.99868687, + -61181.6365640795, -57625.759659515534, -54601.35700178785, + -53184.20500107881, -54254.481596575715, -58234.9824012155, + -64773.786378108256, -73253.04871542232, -82180.56570361515, + -89756.50637716554, -94747.19752242877, -95853.5246422181, + -92636.93523133411, -85314.03337975962, -75184.76959927517, + -62940.907252776495, -50103.106537101485, -38096.38916124221, + -27072.081231241715, -17730.947704508315, -9789.429174184492, + -2786.733945902486, 3260.2087438323406, 8685.296316757906, + 13306.87952215408, 16741.465085206208, 18679.985594715577, + 18800.841562719805, 17063.510879201815, 13833.543317810088, + 9662.287715382603, 5203.884871867987, 1369.534369733809, + -1561.4034802063902, -3417.2409600367228, -4301.787993436123, + -4722.58623961591, -5194.44576948461, -6096.7908429122945, + -7605.803773561864, -9499.505526611103, -11449.81046289123, + -12934.935388176977, -13462.618955089323, -12877.20698948504, + -11287.567620358144, -9044.463409377906, -6663.467936413986, + -4734.67371629155, -3492.0608179169276, -2965.388688900641, + -2887.637758604779, -2753.7883713126816, -2088.287041302551, + -590.786261478332, 1695.6990040149117, 4404.561494520581, + 7002.901724723309, 8791.086797937673, 9544.927921496288, + 9428.372441888543, 9178.710170786588, 10050.31121892902, + 13533.385597383754, 20999.725495402807, 33509.383580395035, + 50446.42276948751, 71507.95843980437, 94968.86846172981, + 117444.70858764299 + ], + "flow:branch75_seg0:J75": [ + 34.15163313940896, 37.16552749695996, 38.053402782559466, + 36.73028019481514, 33.85312450236915, 29.826683800894802, + 25.119913395503556, 20.400274895428083, 16.30778655488655, + 12.424674121663676, 9.282230189429022, 6.491724786542834, + 3.6379086806478886, 0.9873975157721333, -1.9407584836402738, + -4.7716850139291855, -7.411805973828602, -9.933891209485251, + -11.677757247594316, -12.982475443700206, -13.827859819900995, + -14.169966031763549, -14.379561873049903, -14.467831748655966, + -14.511899215326501, -14.515820723829167, -14.32983464853686, + -13.866835975306397, -13.083610620864087, -12.03447498108157, + -10.865412550487259, -9.957701887894007, -9.540906028472333, + -9.887684865804825, -11.151624691437055, -13.218366334556126, + -15.71710173283585, -18.266429658998128, -20.41353279337726, + -21.465773846811324, -21.391028338419094, -20.014378402009743, + -17.477316571522245, -14.11428227208499, -10.664569256575023, + -7.171690076980946, -4.093153627053156, -1.8498941600280234, + 0.01739892572232778, 1.2909014689222655, 2.2647660881379745, + 3.2297378434865, 3.983614197216012, 4.709555481828363, 5.230604687553624, + 5.32130097076494, 4.990693284789595, 4.165398055454441, + 2.9422326242398986, 1.5292482912385486, 0.22920859698229387, + -0.8845216795328423, -1.5247060459756119, -1.7361070715582345, + -1.6885649029770802, -1.4687951491428322, -1.317763848060316, + -1.394924124963024, -1.7237496123587281, -2.257271995054705, + -2.7947916160973327, -3.202084894563739, -3.311761237074703, + -3.0192985065273947, -2.4092379235583246, -1.6380857777636015, + -0.8764743630720359, -0.28549270905854895, -0.04905425825431495, + -0.0676208167383732, -0.2468555418681458, -0.42409924171408786, + -0.3933039505911366, -0.051083540704946896, 0.5841988537556959, + 1.3889351543550912, 2.1076734889557143, 2.598554306695996, + 2.6634831579073195, 2.3689501322902164, 1.9769884780854556, + 1.866135489297969, 2.5064926285027043, 4.322754421121782, + 7.535384324300044, 12.28941940712703, 17.75682102752931, + 23.866151663011898, 29.83088682169783, 34.15163313940896 + ], + "pressure:branch75_seg0:J75": [ + 188395.40304071736, 202419.94389783684, 206134.86834866146, + 197040.6461281338, 179861.96978857333, 157412.35724974432, + 132132.6715765309, 105542.73832897993, 84645.22203023039, + 64579.53234086931, 47081.364944660236, 32953.50210340434, + 17180.3079144942, 2794.4569723606464, -12572.263469697717, + -28476.2606193913, -42172.61561422648, -55332.8410169816, + -64638.27140859408, -70965.71539128799, -75292.38682174752, + -76967.29084746414, -77861.45077449626, -78382.78346248638, + -78582.31969684323, -78503.57922686453, -77324.93163396174, + -74513.11651687293, -69952.88956010292, -64136.42173673039, + -57797.84944654988, -53145.014344884235, -51667.46572988231, + -54216.74656218698, -61813.11927783547, -73556.13906402288, + -87612.94190701247, -100785.84012101957, -111980.44908576144, + -116713.8707138066, -114955.68662466358, -106575.98663369502, + -92213.29829288324, -73473.38807981774, -54736.19089415032, + -36279.38272044893, -19823.964483895936, -8231.659279799647, + 1225.00009027819, 8035.7420349970735, 13048.165387767709, + 18293.577003859333, 22344.231956896638, 25948.210702687065, + 28716.926488282657, 28752.06670119278, 26452.27060431674, + 21596.321864099773, 14804.906676202334, 6825.49949432122, + 140.8669198826099, -5376.049006797419, -8753.616943505274, + -9413.84788803025, -8926.416925278994, -7802.936893379099, + -7087.674344983862, -7714.2942450040655, -9695.231521300897, + -12692.663141965884, -15546.15801529142, -17532.082124265686, + -17855.75289635645, -15983.99621080194, -12399.717392381848, + -8158.011869759279, -4155.992075489962, -1116.8380293897637, + -117.58974187602544, -526.8324955268699, -1523.7560369867433, + -2366.3956719444504, -1981.6639786388705, 182.51256701514066, + 3792.797619163148, 8312.970482105004, 11968.603633130222, + 14209.621401728575, 14341.174442798965, 12488.114940069427, + 10388.222357340708, 10260.108141499313, 14553.495776569018, + 25547.8896963385, 43968.17500736543, 70873.64146554956, + 100973.34855593203, 134078.57545820923, 166282.8567815261, + 188395.40304071736 + ], + "flow:J75:branch75_seg1": [ + 34.15163313940896, 37.16552749695996, 38.053402782559466, + 36.73028019481514, 33.85312450236915, 29.826683800894802, + 25.119913395503556, 20.400274895428083, 16.30778655488655, + 12.424674121663676, 9.282230189429022, 6.491724786542834, + 3.6379086806478886, 0.9873975157721333, -1.9407584836402738, + -4.7716850139291855, -7.411805973828602, -9.933891209485251, + -11.677757247594316, -12.982475443700206, -13.827859819900995, + -14.169966031763549, -14.379561873049903, -14.467831748655966, + -14.511899215326501, -14.515820723829167, -14.32983464853686, + -13.866835975306397, -13.083610620864087, -12.03447498108157, + -10.865412550487259, -9.957701887894007, -9.540906028472333, + -9.887684865804825, -11.151624691437055, -13.218366334556126, + -15.71710173283585, -18.266429658998128, -20.41353279337726, + -21.465773846811324, -21.391028338419094, -20.014378402009743, + -17.477316571522245, -14.11428227208499, -10.664569256575023, + -7.171690076980946, -4.093153627053156, -1.8498941600280234, + 0.01739892572232778, 1.2909014689222655, 2.2647660881379745, + 3.2297378434865, 3.983614197216012, 4.709555481828363, 5.230604687553624, + 5.32130097076494, 4.990693284789595, 4.165398055454441, + 2.9422326242398986, 1.5292482912385486, 0.22920859698229387, + -0.8845216795328423, -1.5247060459756119, -1.7361070715582345, + -1.6885649029770802, -1.4687951491428322, -1.317763848060316, + -1.394924124963024, -1.7237496123587281, -2.257271995054705, + -2.7947916160973327, -3.202084894563739, -3.311761237074703, + -3.0192985065273947, -2.4092379235583246, -1.6380857777636015, + -0.8764743630720359, -0.28549270905854895, -0.04905425825431495, + -0.0676208167383732, -0.2468555418681458, -0.42409924171408786, + -0.3933039505911366, -0.051083540704946896, 0.5841988537556959, + 1.3889351543550912, 2.1076734889557143, 2.598554306695996, + 2.6634831579073195, 2.3689501322902164, 1.9769884780854556, + 1.866135489297969, 2.5064926285027043, 4.322754421121782, + 7.535384324300044, 12.28941940712703, 17.75682102752931, + 23.866151663011898, 29.83088682169783, 34.15163313940896 + ], + "pressure:J75:branch75_seg1": [ + 188395.40304071736, 202419.94389783684, 206134.86834866146, + 197040.6461281338, 179861.96978857333, 157412.35724974432, + 132132.6715765309, 105542.73832897993, 84645.22203023039, + 64579.53234086931, 47081.364944660236, 32953.50210340434, + 17180.3079144942, 2794.4569723606464, -12572.263469697717, + -28476.2606193913, -42172.61561422648, -55332.8410169816, + -64638.27140859408, -70965.71539128799, -75292.38682174752, + -76967.29084746414, -77861.45077449626, -78382.78346248638, + -78582.31969684323, -78503.57922686453, -77324.93163396174, + -74513.11651687293, -69952.88956010292, -64136.42173673039, + -57797.84944654988, -53145.014344884235, -51667.46572988231, + -54216.74656218698, -61813.11927783547, -73556.13906402288, + -87612.94190701247, -100785.84012101957, -111980.44908576144, + -116713.8707138066, -114955.68662466358, -106575.98663369502, + -92213.29829288324, -73473.38807981774, -54736.19089415032, + -36279.38272044893, -19823.964483895936, -8231.659279799647, + 1225.00009027819, 8035.7420349970735, 13048.165387767709, + 18293.577003859333, 22344.231956896638, 25948.210702687065, + 28716.926488282657, 28752.06670119278, 26452.27060431674, + 21596.321864099773, 14804.906676202334, 6825.49949432122, + 140.8669198826099, -5376.049006797419, -8753.616943505274, + -9413.84788803025, -8926.416925278994, -7802.936893379099, + -7087.674344983862, -7714.2942450040655, -9695.231521300897, + -12692.663141965884, -15546.15801529142, -17532.082124265686, + -17855.75289635645, -15983.99621080194, -12399.717392381848, + -8158.011869759279, -4155.992075489962, -1116.8380293897637, + -117.58974187602544, -526.8324955268699, -1523.7560369867433, + -2366.3956719444504, -1981.6639786388705, 182.51256701514066, + 3792.797619163148, 8312.970482105004, 11968.603633130222, + 14209.621401728575, 14341.174442798965, 12488.114940069427, + 10388.222357340708, 10260.108141499313, 14553.495776569018, + 25547.8896963385, 43968.17500736543, 70873.64146554956, + 100973.34855593203, 134078.57545820923, 166282.8567815261, + 188395.40304071736 + ], + "flow:branch75_seg1:J76": [ + 34.13853822168963, 37.161661756026184, 38.05643474514289, + 36.73889962404026, 33.868257911393904, 29.846646484281194, + 25.14033638286456, 20.425166963220466, 16.329199112128027, + 12.438008310386994, 9.301569045433112, 6.504547470010049, + 3.6525753058712174, 1.0029437961022094, -1.930885645748878, + -4.754158263991832, -7.4026069197136275, -9.92797273889662, + -11.671628815348535, -12.979781636597126, -13.827113687583171, + -14.169356197727126, -14.379922076927027, -14.468063213069168, + -14.511649768710974, -14.51653757621103, -14.331031561018758, + -13.869627614752458, -13.08730612948092, -12.03976540391188, + -10.869463879798166, -9.961547759543231, -9.540674278202953, + -9.883812036331992, -11.143048784738797, -13.208202190444448, + -15.701272483213499, -18.256465589352977, -20.40557241916859, + -21.463248671646657, -21.395657529129537, -20.025759673788237, + -17.488113320677375, -14.127192895729085, -10.677628068742791, + -7.182443166036737, -4.100721303426868, -1.8559552806213135, + 0.013871357354997147, 1.2887255219695257, 2.2604765463561414, + 3.228008597004392, 3.9802309938866203, 4.707104825198695, + 5.229281576507338, 5.32149807873829, 4.993552837259164, 4.170613854146997, + 2.9482687613484457, 1.537371369448685, 0.23574636690216091, + -0.8817055359972367, -1.5214966343583123, -1.7359691018785026, + -1.6898031403213365, -1.4695712922512714, -1.317746681250744, + -1.3937516808778578, -1.7221095333285654, -2.255231234174645, + -2.7932884325385716, -3.201383175966515, -3.3128669220031077, + -3.0209474702446357, -2.412253868413121, -1.640591597247675, + -0.8793450670531752, -0.2864755603533966, -0.04968178455025523, + -0.06693700193060576, -0.2459240661963094, -0.42385465945490597, + -0.3942210421666848, -0.05373476918064085, 0.5807436581809247, + 1.3844224868555601, 2.104406523766028, 2.598046102737284, + 2.6639847085176207, 2.370529775084521, 1.978440734277104, + 1.8646683900905596, 2.501274759165479, 4.310024985872918, + 7.521762051266705, 12.270484384412985, 17.738856508495388, + 23.843225815725496, 29.818405956499998, 34.13853822168963 + ], + "pressure:branch75_seg1:J76": [ + 183965.15294554608, 199602.98591997678, 204126.9085444446, + 196577.6091366816, 180780.32899985727, 159047.12685405157, + 133857.75316070634, 108308.30451994599, 86657.66023209105, + 66030.71545210965, 49086.316128514736, 34332.99076531826, + 18956.329138359277, 4737.727717520444, -10873.076525319007, + -26161.113959778246, -40212.94337491732, -53631.19341311272, + -62949.41858893652, -69780.81849939984, -74261.65885309216, + -76053.58469996894, -77122.4779741685, -77606.2182060492, + -77830.63054414731, -77831.54356423272, -76793.79001134065, + -74242.72652358685, -69967.05520368848, -64314.42067487413, + -58036.31532722939, -53232.19093256814, -51170.80410705374, + -53180.035119657434, -60122.82289959909, -71336.99328294802, + -84841.74983230403, -98386.01985952663, -109804.24886218562, + -115234.57969245438, -114532.43232645618, -106952.4057244839, + -93187.29641817012, -75029.78448563206, -56513.87727158795, + -37882.13123074933, -21409.406255627222, -9507.346091859496, + 356.72373646558043, 7172.883023039797, 12321.115448803519, + 17513.96188435097, 21541.529671792534, 25358.168070636508, + 28145.224507026527, 28525.58784491217, 26638.709732973366, + 22127.45357820423, 15529.6383005565, 7879.46424973317, 987.9136581120513, + -4875.89699349187, -8285.403561083222, -9313.901719046902, + -9008.389719934929, -7844.096310529468, -7055.709821486168, + -7515.766467737659, -9326.895108671673, -12213.222830532657, + -15084.632196883973, -17218.506856512467, -17748.359162871384, + -16110.872500343115, -12775.82301204449, -8620.858067792948, + -4568.151935588025, -1429.3010386329224, -229.30745597874045, + -399.24492344047826, -1365.9596462639847, -2290.7663438855348, + -2077.087657892062, -172.69876384918646, 3272.834708730155, + 7624.37585845682, 11426.295949386247, 13968.878180717571, + 14267.376955106323, 12628.895154428898, 10531.685324269838, + 10040.24401493774, 13661.759196942721, 23654.102262606768, + 41135.18290541544, 66894.66423396344, 96346.34793622754, + 129095.42879061899, 161112.47630026648, 183965.15294554608 + ], + "flow:J76:branch75_seg2": [ + 34.13853822168963, 37.161661756026184, 38.05643474514289, + 36.73889962404026, 33.868257911393904, 29.846646484281194, + 25.14033638286456, 20.425166963220466, 16.329199112128027, + 12.438008310386994, 9.301569045433112, 6.504547470010049, + 3.6525753058712174, 1.0029437961022094, -1.930885645748878, + -4.754158263991832, -7.4026069197136275, -9.92797273889662, + -11.671628815348535, -12.979781636597126, -13.827113687583171, + -14.169356197727126, -14.379922076927027, -14.468063213069168, + -14.511649768710974, -14.51653757621103, -14.331031561018758, + -13.869627614752458, -13.08730612948092, -12.03976540391188, + -10.869463879798166, -9.961547759543231, -9.540674278202953, + -9.883812036331992, -11.143048784738797, -13.208202190444448, + -15.701272483213499, -18.256465589352977, -20.40557241916859, + -21.463248671646657, -21.395657529129537, -20.025759673788237, + -17.488113320677375, -14.127192895729085, -10.677628068742791, + -7.182443166036737, -4.100721303426868, -1.8559552806213135, + 0.013871357354997147, 1.2887255219695257, 2.2604765463561414, + 3.228008597004392, 3.9802309938866203, 4.707104825198695, + 5.229281576507338, 5.32149807873829, 4.993552837259164, 4.170613854146997, + 2.9482687613484457, 1.537371369448685, 0.23574636690216091, + -0.8817055359972367, -1.5214966343583123, -1.7359691018785026, + -1.6898031403213365, -1.4695712922512714, -1.317746681250744, + -1.3937516808778578, -1.7221095333285654, -2.255231234174645, + -2.7932884325385716, -3.201383175966515, -3.3128669220031077, + -3.0209474702446357, -2.412253868413121, -1.640591597247675, + -0.8793450670531752, -0.2864755603533966, -0.04968178455025523, + -0.06693700193060576, -0.2459240661963094, -0.42385465945490597, + -0.3942210421666848, -0.05373476918064085, 0.5807436581809247, + 1.3844224868555601, 2.104406523766028, 2.598046102737284, + 2.6639847085176207, 2.370529775084521, 1.978440734277104, + 1.8646683900905596, 2.501274759165479, 4.310024985872918, + 7.521762051266705, 12.270484384412985, 17.738856508495388, + 23.843225815725496, 29.818405956499998, 34.13853822168963 + ], + "pressure:J76:branch75_seg2": [ + 183965.15294554608, 199602.98591997678, 204126.9085444446, + 196577.6091366816, 180780.32899985727, 159047.12685405157, + 133857.75316070634, 108308.30451994599, 86657.66023209105, + 66030.71545210965, 49086.316128514736, 34332.99076531826, + 18956.329138359277, 4737.727717520444, -10873.076525319007, + -26161.113959778246, -40212.94337491732, -53631.19341311272, + -62949.41858893652, -69780.81849939984, -74261.65885309216, + -76053.58469996894, -77122.4779741685, -77606.2182060492, + -77830.63054414731, -77831.54356423272, -76793.79001134065, + -74242.72652358685, -69967.05520368848, -64314.42067487413, + -58036.31532722939, -53232.19093256814, -51170.80410705374, + -53180.035119657434, -60122.82289959909, -71336.99328294802, + -84841.74983230403, -98386.01985952663, -109804.24886218562, + -115234.57969245438, -114532.43232645618, -106952.4057244839, + -93187.29641817012, -75029.78448563206, -56513.87727158795, + -37882.13123074933, -21409.406255627222, -9507.346091859496, + 356.72373646558043, 7172.883023039797, 12321.115448803519, + 17513.96188435097, 21541.529671792534, 25358.168070636508, + 28145.224507026527, 28525.58784491217, 26638.709732973366, + 22127.45357820423, 15529.6383005565, 7879.46424973317, 987.9136581120513, + -4875.89699349187, -8285.403561083222, -9313.901719046902, + -9008.389719934929, -7844.096310529468, -7055.709821486168, + -7515.766467737659, -9326.895108671673, -12213.222830532657, + -15084.632196883973, -17218.506856512467, -17748.359162871384, + -16110.872500343115, -12775.82301204449, -8620.858067792948, + -4568.151935588025, -1429.3010386329224, -229.30745597874045, + -399.24492344047826, -1365.9596462639847, -2290.7663438855348, + -2077.087657892062, -172.69876384918646, 3272.834708730155, + 7624.37585845682, 11426.295949386247, 13968.878180717571, + 14267.376955106323, 12628.895154428898, 10531.685324269838, + 10040.24401493774, 13661.759196942721, 23654.102262606768, + 41135.18290541544, 66894.66423396344, 96346.34793622754, + 129095.42879061899, 161112.47630026648, 183965.15294554608 + ], + "flow:branch77_seg0:J77": [ + 36.84809655758482, 41.59975880168292, 44.130933325000164, + 44.29181179580483, 42.3179681485106, 38.57226280475751, 33.6103022381907, + 28.24519505661638, 22.99479444492442, 18.028622551104835, + 13.802830360010747, 10.005106242831872, 6.483630344551984, + 3.1837402207383194, -0.24165470978927606, -3.5647897679873184, + -6.8259322734328345, -9.903252351684127, -12.367785811494684, + -14.34160198312153, -15.709397514794418, -16.507050373475355, + -16.97768956583782, -17.202851264111086, -17.317678665835953, + -17.355291691902586, -17.234850600631436, -16.866114889885726, + -16.16860571276792, -15.13394757223164, -13.878268837154337, + -12.694629180953365, -11.858130507561643, -11.728205164875135, + -12.529411935074112, -14.295703954767715, -16.785891079324127, + -19.68717831673071, -22.437814696964903, -24.406708667543537, + -25.275192424114138, -24.710206931802645, -22.72074289350564, + -19.55386604098552, -15.768316405464205, -11.64096221967361, + -7.745984223239935, -4.457578934457701, -1.7117520998646563, + 0.3234869893446091, 1.899718218067893, 3.2140390434450885, + 4.28644927071486, 5.261966966979668, 6.010146949028576, 6.397804930761389, + 6.3320759687506305, 5.711028927471643, 4.572483358221648, + 3.093678569565668, 1.5084755271448274, 0.01959376348583927, + -1.0636913987229488, -1.7120361912996265, -1.9559121986847554, + -1.893146440794668, -1.7551076836626285, -1.7355796290835634, + -1.9446610205432497, -2.399923223542095, -2.9733843565711773, + -3.517223578897463, -3.82874818828084, -3.7658139499476277, + -3.3196615061306423, -2.5821921376202552, -1.7154228708822157, + -0.9259409176823142, -0.4068193021861771, -0.18084114995306103, + -0.21879677023131483, -0.3680814077874286, -0.42137743021010976, + -0.2194616855463411, 0.3064587179954901, 1.0892282649992056, + 1.9438693860890688, 2.6700788007760217, 3.0249948520739234, + 2.980403824000922, 2.6739099631604595, 2.430725830941793, + 2.7313749298349634, 4.079074537894445, 6.873069820614662, + 11.33321833801953, 17.054486158692793, 23.833855390985946, + 30.80433274138121, 36.84809655758482 + ], + "pressure:branch77_seg0:J77": [ + 169659.73947865597, 188740.70402016395, 198253.0413694472, + 196471.31520584, 185564.55320572827, 167627.3240174426, + 144969.02085246463, 120306.81316055526, 97610.66386419271, + 76092.66926370835, 57483.8395264698, 41310.32567722321, + 25604.905022593673, 10968.801171784304, -4164.589782211246, + -19135.183979691916, -33369.11470861164, -46854.23007379266, + -57361.38224451948, -65404.21943525699, -71094.123886511, + -74175.5576654333, -75952.9028134842, -76842.97508480494, + -77237.82384224296, -77324.59963082608, -76602.82722043685, + -74654.30843766441, -71181.36716656329, -66335.42732166531, + -60577.93299873682, -55506.12258507256, -52392.885136628334, + -52541.75505723492, -57031.51080290337, -65780.14534423791, + -77500.75869535387, -90412.97008215524, -102390.25758889088, + -110231.32426196491, -112737.45701726788, -108945.08933564571, + -98817.34966030443, -83606.4757578149, -66382.75811895277, + -48109.67398678907, -30819.99170385225, -16931.4750369554, + -5357.055920957577, 3278.9363705574206, 9753.669750051033, + 15565.04161879678, 20145.410642341616, 24215.688881191094, + 27422.731539483364, 28690.34440107027, 27866.580395419343, + 24604.241411434396, 19131.3659349816, 12201.970700543106, + 5233.46820335938, -1105.398802318387, -5639.618090602911, + -8013.260466890095, -8761.768743307419, -8333.595920243053, + -7710.411184061165, -7800.435110861488, -8984.72431130737, + -11232.55986721962, -13823.60919623369, -16091.026651474616, + -17226.165639045546, -16552.803778815338, -14183.936676708043, + -10680.639518803417, -6843.990124192623, -3417.835512657478, + -1428.8863999082198, -769.8934446641973, -1089.8587438548245, + -1762.348273938751, -1834.0224630867074, -633.1155798582458, + 1994.2974025804006, 5701.2768951783255, 9446.778047691076, + 12407.86390043447, 13659.889714441291, 13073.724286283285, + 11566.368132055573, 10764.915053240995, 12869.687333521062, + 20092.60280026794, 33998.262165527594, 55605.132812802665, + 82129.96613594548, 112637.75503022678, 144221.61960632686, + 169659.73947865597 + ], + "flow:J77:branch77_seg1": [ + 36.84809655758482, 41.59975880168292, 44.130933325000164, + 44.29181179580483, 42.3179681485106, 38.57226280475751, 33.6103022381907, + 28.24519505661638, 22.99479444492442, 18.028622551104835, + 13.802830360010747, 10.005106242831872, 6.483630344551984, + 3.1837402207383194, -0.24165470978927606, -3.5647897679873184, + -6.8259322734328345, -9.903252351684127, -12.367785811494684, + -14.34160198312153, -15.709397514794418, -16.507050373475355, + -16.97768956583782, -17.202851264111086, -17.317678665835953, + -17.355291691902586, -17.234850600631436, -16.866114889885726, + -16.16860571276792, -15.13394757223164, -13.878268837154337, + -12.694629180953365, -11.858130507561643, -11.728205164875135, + -12.529411935074112, -14.295703954767715, -16.785891079324127, + -19.68717831673071, -22.437814696964903, -24.406708667543537, + -25.275192424114138, -24.710206931802645, -22.72074289350564, + -19.55386604098552, -15.768316405464205, -11.64096221967361, + -7.745984223239935, -4.457578934457701, -1.7117520998646563, + 0.3234869893446091, 1.899718218067893, 3.2140390434450885, + 4.28644927071486, 5.261966966979668, 6.010146949028576, 6.397804930761389, + 6.3320759687506305, 5.711028927471643, 4.572483358221648, + 3.093678569565668, 1.5084755271448274, 0.01959376348583927, + -1.0636913987229488, -1.7120361912996265, -1.9559121986847554, + -1.893146440794668, -1.7551076836626285, -1.7355796290835634, + -1.9446610205432497, -2.399923223542095, -2.9733843565711773, + -3.517223578897463, -3.82874818828084, -3.7658139499476277, + -3.3196615061306423, -2.5821921376202552, -1.7154228708822157, + -0.9259409176823142, -0.4068193021861771, -0.18084114995306103, + -0.21879677023131483, -0.3680814077874286, -0.42137743021010976, + -0.2194616855463411, 0.3064587179954901, 1.0892282649992056, + 1.9438693860890688, 2.6700788007760217, 3.0249948520739234, + 2.980403824000922, 2.6739099631604595, 2.430725830941793, + 2.7313749298349634, 4.079074537894445, 6.873069820614662, + 11.33321833801953, 17.054486158692793, 23.833855390985946, + 30.80433274138121, 36.84809655758482 + ], + "pressure:J77:branch77_seg1": [ + 169659.73947865597, 188740.70402016395, 198253.0413694472, + 196471.31520584, 185564.55320572827, 167627.3240174426, + 144969.02085246463, 120306.81316055526, 97610.66386419271, + 76092.66926370835, 57483.8395264698, 41310.32567722321, + 25604.905022593673, 10968.801171784304, -4164.589782211246, + -19135.183979691916, -33369.11470861164, -46854.23007379266, + -57361.38224451948, -65404.21943525699, -71094.123886511, + -74175.5576654333, -75952.9028134842, -76842.97508480494, + -77237.82384224296, -77324.59963082608, -76602.82722043685, + -74654.30843766441, -71181.36716656329, -66335.42732166531, + -60577.93299873682, -55506.12258507256, -52392.885136628334, + -52541.75505723492, -57031.51080290337, -65780.14534423791, + -77500.75869535387, -90412.97008215524, -102390.25758889088, + -110231.32426196491, -112737.45701726788, -108945.08933564571, + -98817.34966030443, -83606.4757578149, -66382.75811895277, + -48109.67398678907, -30819.99170385225, -16931.4750369554, + -5357.055920957577, 3278.9363705574206, 9753.669750051033, + 15565.04161879678, 20145.410642341616, 24215.688881191094, + 27422.731539483364, 28690.34440107027, 27866.580395419343, + 24604.241411434396, 19131.3659349816, 12201.970700543106, + 5233.46820335938, -1105.398802318387, -5639.618090602911, + -8013.260466890095, -8761.768743307419, -8333.595920243053, + -7710.411184061165, -7800.435110861488, -8984.72431130737, + -11232.55986721962, -13823.60919623369, -16091.026651474616, + -17226.165639045546, -16552.803778815338, -14183.936676708043, + -10680.639518803417, -6843.990124192623, -3417.835512657478, + -1428.8863999082198, -769.8934446641973, -1089.8587438548245, + -1762.348273938751, -1834.0224630867074, -633.1155798582458, + 1994.2974025804006, 5701.2768951783255, 9446.778047691076, + 12407.86390043447, 13659.889714441291, 13073.724286283285, + 11566.368132055573, 10764.915053240995, 12869.687333521062, + 20092.60280026794, 33998.262165527594, 55605.132812802665, + 82129.96613594548, 112637.75503022678, 144221.61960632686, + 169659.73947865597 + ], + "flow:branch77_seg1:J78": [ + 36.81275994958986, 41.58031995847665, 44.1236555010403, 44.29987892163685, + 42.34107021602675, 38.6040108314833, 33.64328767532121, + 28.286535968275512, 23.028200364488683, 18.054649547762686, + 13.830607360979657, 10.026381913766858, 6.505357059664544, + 3.205162120067066, -0.22412453445683422, -3.5434403334147664, + -6.806807727070711, -9.889605304020135, -12.354599443624974, + -14.33295980099445, -15.704200487528164, -16.50329211335784, + -16.976400557059073, -17.202005873333597, -17.3170965155976, + -17.355639441311865, -17.236486375625983, -16.869939751395343, + -16.17510144563164, -15.142010403640679, -13.886891249951017, + -12.701760455309218, -11.860145413745162, -11.724632023503336, + -12.519855223371666, -14.281267791869007, -16.766040745997614, + -19.67008982313335, -22.42379005240237, -24.39887688464227, + -25.2773698587314, -24.72057010927851, -22.73761178143722, + -19.57492186958369, -15.79301382021717, -11.664992527951885, + -7.767210037031519, -4.476313271227524, -1.7248066695363502, + 0.31254188219124107, 1.8904541039684266, 3.2061417344838694, + 4.279328927527915, 5.25683706469762, 6.006078252581504, 6.396981697663283, + 6.335274900471546, 5.717902638323467, 4.581212002136624, + 3.1055213025445836, 1.5184012724429723, 0.02580800831608832, + -1.058318305111133, -1.7100070580987792, -1.9564235801618393, + -1.8939571212326152, -1.755529734386844, -1.7347894795278869, + -1.9423392631320935, -2.396669338516398, -2.969890329598438, + -3.5147148255583733, -3.8283825824726687, -3.767709897112659, + -3.3240069199481965, -2.5878168296137396, -1.7209474148165924, + -0.9303638675724275, -0.4091286871188626, -0.18077359768423562, + -0.21771906109853414, -0.3674353636648261, -0.42209258321105053, + -0.22245805270196276, 0.3019254294329371, 1.0830167549623366, + 1.9388370950637777, 2.6679458552694126, 3.0245594916327603, + 2.9820176403900382, 2.6760329647330336, 2.4303607475694484, + 2.7254381213811487, 4.064771682512132, 6.84952245048107, 11.3012799954281, + 17.015395166408688, 23.788994871641307, 30.762294442666086, + 36.81275994958986 + ], + "pressure:branch77_seg1:J78": [ + 165583.39042562016, 185729.61518211095, 196177.48769930092, + 195800.90250730433, 186146.2008545072, 169020.25097520582, + 146797.62613263103, 122720.5656915592, 99753.84204900402, + 78009.57343470628, 59401.52716437674, 42897.20272763814, + 27296.49237194819, 12708.135725705763, -2419.6645311313323, + -17196.707718093607, -31517.251820775386, -45065.37208223619, + -55764.10703440588, -64178.01764397738, -70064.45866053995, + -73384.75148074863, -75331.98872448367, -76278.66243754368, + -76734.1156235831, -76867.54855305757, -76253.90643719152, + -74489.03143911152, -71242.22812688776, -66558.28061019839, + -60923.55388903916, -55768.81153682144, -52325.692356737076, + -52061.576496248934, -56008.45573442686, -64215.81883619483, + -75509.40834157195, -88365.9989858344, -100432.5496059009, + -108751.30986523037, -112010.67484379785, -108955.88926996976, + -99586.6918061254, -85068.95186614538, -68153.23496933604, + -49924.50148752043, -32689.13130946298, -18468.110899601717, + -6587.298504310699, 2236.1506845417052, 8969.363096712072, + 14777.560202533412, 19437.7383987911, 23638.67876718239, 26899.1206770573, + 28417.60587170913, 27898.492117223665, 24935.688084490266, + 19716.535976976425, 13023.643595220285, 6037.314471426283, + -436.0821632847672, -5103.298170506498, -7751.906800320125, + -8686.752599088259, -8341.568211236396, -7724.635011615027, + -7714.567111991607, -8751.081701917054, -10865.048727411227, + -13420.520274725706, -15761.280492269914, -17033.619584438045, + -16582.586135685455, -14440.938029572559, -11079.340144662048, + -7252.490566295203, -3792.646538379414, -1634.7009901347185, + -784.5166430207124, -1017.5940702097433, -1683.9207131150745, + -1849.245210960847, -825.9485629604027, 1627.9470251046278, + 5188.456114334814, 8950.510514460231, 12052.312241969155, + 13480.00489473587, 13112.357108359203, 11691.525351508055, + 10733.809550782747, 12395.149708340205, 18890.667812588898, + 31900.91308513038, 52422.05729045436, 78209.56696297531, + 108346.56324659754, 139481.7874060658, 165583.39042562016 + ], + "flow:J78:branch77_seg2": [ + 36.81275994958986, 41.58031995847665, 44.1236555010403, 44.29987892163685, + 42.34107021602675, 38.6040108314833, 33.64328767532121, + 28.286535968275512, 23.028200364488683, 18.054649547762686, + 13.830607360979657, 10.026381913766858, 6.505357059664544, + 3.205162120067066, -0.22412453445683422, -3.5434403334147664, + -6.806807727070711, -9.889605304020135, -12.354599443624974, + -14.33295980099445, -15.704200487528164, -16.50329211335784, + -16.976400557059073, -17.202005873333597, -17.3170965155976, + -17.355639441311865, -17.236486375625983, -16.869939751395343, + -16.17510144563164, -15.142010403640679, -13.886891249951017, + -12.701760455309218, -11.860145413745162, -11.724632023503336, + -12.519855223371666, -14.281267791869007, -16.766040745997614, + -19.67008982313335, -22.42379005240237, -24.39887688464227, + -25.2773698587314, -24.72057010927851, -22.73761178143722, + -19.57492186958369, -15.79301382021717, -11.664992527951885, + -7.767210037031519, -4.476313271227524, -1.7248066695363502, + 0.31254188219124107, 1.8904541039684266, 3.2061417344838694, + 4.279328927527915, 5.25683706469762, 6.006078252581504, 6.396981697663283, + 6.335274900471546, 5.717902638323467, 4.581212002136624, + 3.1055213025445836, 1.5184012724429723, 0.02580800831608832, + -1.058318305111133, -1.7100070580987792, -1.9564235801618393, + -1.8939571212326152, -1.755529734386844, -1.7347894795278869, + -1.9423392631320935, -2.396669338516398, -2.969890329598438, + -3.5147148255583733, -3.8283825824726687, -3.767709897112659, + -3.3240069199481965, -2.5878168296137396, -1.7209474148165924, + -0.9303638675724275, -0.4091286871188626, -0.18077359768423562, + -0.21771906109853414, -0.3674353636648261, -0.42209258321105053, + -0.22245805270196276, 0.3019254294329371, 1.0830167549623366, + 1.9388370950637777, 2.6679458552694126, 3.0245594916327603, + 2.9820176403900382, 2.6760329647330336, 2.4303607475694484, + 2.7254381213811487, 4.064771682512132, 6.84952245048107, 11.3012799954281, + 17.015395166408688, 23.788994871641307, 30.762294442666086, + 36.81275994958986 + ], + "pressure:J78:branch77_seg2": [ + 165583.39042562016, 185729.61518211095, 196177.48769930092, + 195800.90250730433, 186146.2008545072, 169020.25097520582, + 146797.62613263103, 122720.5656915592, 99753.84204900402, + 78009.57343470628, 59401.52716437674, 42897.20272763814, + 27296.49237194819, 12708.135725705763, -2419.6645311313323, + -17196.707718093607, -31517.251820775386, -45065.37208223619, + -55764.10703440588, -64178.01764397738, -70064.45866053995, + -73384.75148074863, -75331.98872448367, -76278.66243754368, + -76734.1156235831, -76867.54855305757, -76253.90643719152, + -74489.03143911152, -71242.22812688776, -66558.28061019839, + -60923.55388903916, -55768.81153682144, -52325.692356737076, + -52061.576496248934, -56008.45573442686, -64215.81883619483, + -75509.40834157195, -88365.9989858344, -100432.5496059009, + -108751.30986523037, -112010.67484379785, -108955.88926996976, + -99586.6918061254, -85068.95186614538, -68153.23496933604, + -49924.50148752043, -32689.13130946298, -18468.110899601717, + -6587.298504310699, 2236.1506845417052, 8969.363096712072, + 14777.560202533412, 19437.7383987911, 23638.67876718239, 26899.1206770573, + 28417.60587170913, 27898.492117223665, 24935.688084490266, + 19716.535976976425, 13023.643595220285, 6037.314471426283, + -436.0821632847672, -5103.298170506498, -7751.906800320125, + -8686.752599088259, -8341.568211236396, -7724.635011615027, + -7714.567111991607, -8751.081701917054, -10865.048727411227, + -13420.520274725706, -15761.280492269914, -17033.619584438045, + -16582.586135685455, -14440.938029572559, -11079.340144662048, + -7252.490566295203, -3792.646538379414, -1634.7009901347185, + -784.5166430207124, -1017.5940702097433, -1683.9207131150745, + -1849.245210960847, -825.9485629604027, 1627.9470251046278, + 5188.456114334814, 8950.510514460231, 12052.312241969155, + 13480.00489473587, 13112.357108359203, 11691.525351508055, + 10733.809550782747, 12395.149708340205, 18890.667812588898, + 31900.91308513038, 52422.05729045436, 78209.56696297531, + 108346.56324659754, 139481.7874060658, 165583.39042562016 + ], + "flow:branch83_seg0:J79": [ + 29.966559678723478, 35.10954476101407, 38.878860245820384, + 40.96473423376283, 41.290824480987034, 39.94755620596017, + 37.22974025972393, 33.66807765558916, 29.64451726196927, + 25.449327310120545, 21.47158417992635, 17.62636741008224, + 13.92530917394075, 10.338759645177863, 6.677166964922742, + 3.072115957329946, -0.5167513526678086, -3.9780020785834367, + -7.028247138272646, -9.690530114916996, -11.84208636970408, + -13.477888433798404, -14.725102480857581, -15.644297837956653, + -16.34176654153151, -16.863679296500596, -17.18325947576547, + -17.2512625418912, -17.01114060338183, -16.442347827065596, + -15.610532868351342, -14.69871214856056, -13.917006094097074, + -13.551936939239575, -13.821420614559704, -14.83436335167933, + -16.508293526248895, -18.678551093164238, -20.9617182130892, + -22.905496809207186, -24.187344287089868, -24.47110921385822, + -23.647845135460358, -21.784608031253274, -19.181193196547728, + -16.039909374679937, -12.774421003675055, -9.695833547503913, + -6.882390080476842, -4.50657231964142, -2.4747185553815125, + -0.7009495022855448, 0.837633641796659, 2.22751823995996, + 3.4009604527844206, 4.27846730071627, 4.775727388191631, + 4.805015621784949, 4.3601044649382, 3.5337092768406686, 2.466783799637711, + 1.3242563332075035, 0.3418235479508102, -0.4075491910222281, + -0.879505390892087, -1.1022158360233905, -1.2065156118740874, + -1.3232041759417315, -1.5510903159633025, -1.934519379668663, + -2.4209289313099984, -2.9233769069612388, -3.30223621325439, + -3.4393880982141045, -3.2907275770930267, -2.882941979795819, + -2.3050564845107324, -1.6970187867843183, -1.2029771943460765, + -0.8824385817333322, -0.7514785177853265, -0.7346241992861756, + -0.703414849514097, -0.5363138184154292, -0.15535343637813345, + 0.42888607472224377, 1.1223551086164467, 1.7888265552874327, + 2.24848999027229, 2.4413665514928935, 2.4088480347854233, + 2.337537543509238, 2.550337619053416, 3.4287806687839963, + 5.329603203291849, 8.505857746652337, 12.838142417826766, + 18.24768035572443, 24.20300433382875, 29.966559678723478 + ], + "pressure:branch83_seg0:J79": [ + 128513.6447061974, 147457.58184564186, 160889.85065657384, + 166499.51354294916, 165192.33421577752, 157762.66103758183, + 145430.54030378195, 129664.91649985671, 113324.24520806776, + 96635.46572714258, 80646.28082334452, 65652.01970731327, + 50782.39017644037, 36393.27966813699, 21717.959347333435, + 7165.663596465647, -7089.529904339701, -20822.46934316512, + -32427.87975483753, -42351.11982098342, -50420.419218967916, + -56266.29303583859, -60753.727407413295, -64092.748294784134, + -66584.81796970945, -68458.38982689958, -69426.45868413897, + -69279.97040829217, -67828.35183162586, -65141.45692826671, + -61467.22995526718, -57821.57479396345, -55149.96636630558, + -54363.19015820692, -56445.97613007943, -61603.36662155526, + -69211.22118845717, -78334.16082715307, -87498.96184798572, + -94566.17241384447, -98431.95908955204, -98115.88031786302, + -93232.46079137831, -84192.92114325076, -72991.34099359019, + -59991.8232989933, -46558.546601749425, -34776.27157368682, + -23966.805188945546, -14887.194384106835, -7355.087077173164, + -359.9531176888589, 5504.407184577949, 10715.753418698447, + 15231.45550959705, 18225.615615426235, 19580.79582973698, + 19049.656679236643, 16644.574246545177, 12781.908782714589, + 8303.583537383947, 3805.6236337036617, 78.20166990788206, + -2501.5870469325637, -4015.102719147405, -4656.1129421509595, + -4972.248669799279, -5539.797718163539, -6669.45597793145, + -8447.376160907063, -10472.533759217455, -12395.109932355717, + -13705.982667958322, -13843.876706889627, -12808.820885311652, + -10849.875168314638, -8426.45460557983, -5962.904015790099, + -4225.476154653441, -3272.1517601331884, -2930.5608844176263, + -2945.195527761336, -2721.1957088410477, -1783.937254054301, + 59.13689974886894, 2682.3736940667177, 5523.701162727759, + 8019.996090051234, 9542.16006331518, 9910.118828925848, 9535.549935416657, + 9404.098729408404, 10929.487621885632, 15684.219846747494, + 24934.995036320484, 39803.05220801357, 58657.96574125581, + 81259.93251123463, 106428.34925792886, 128513.6447061974 + ], + "flow:J79:branch83_seg1": [ + 29.966559678723478, 35.10954476101407, 38.878860245820384, + 40.96473423376283, 41.290824480987034, 39.94755620596017, + 37.22974025972393, 33.66807765558916, 29.64451726196927, + 25.449327310120545, 21.47158417992635, 17.62636741008224, + 13.92530917394075, 10.338759645177863, 6.677166964922742, + 3.072115957329946, -0.5167513526678086, -3.9780020785834367, + -7.028247138272646, -9.690530114916996, -11.84208636970408, + -13.477888433798404, -14.725102480857581, -15.644297837956653, + -16.34176654153151, -16.863679296500596, -17.18325947576547, + -17.2512625418912, -17.01114060338183, -16.442347827065596, + -15.610532868351342, -14.69871214856056, -13.917006094097074, + -13.551936939239575, -13.821420614559704, -14.83436335167933, + -16.508293526248895, -18.678551093164238, -20.9617182130892, + -22.905496809207186, -24.187344287089868, -24.47110921385822, + -23.647845135460358, -21.784608031253274, -19.181193196547728, + -16.039909374679937, -12.774421003675055, -9.695833547503913, + -6.882390080476842, -4.50657231964142, -2.4747185553815125, + -0.7009495022855448, 0.837633641796659, 2.22751823995996, + 3.4009604527844206, 4.27846730071627, 4.775727388191631, + 4.805015621784949, 4.3601044649382, 3.5337092768406686, 2.466783799637711, + 1.3242563332075035, 0.3418235479508102, -0.4075491910222281, + -0.879505390892087, -1.1022158360233905, -1.2065156118740874, + -1.3232041759417315, -1.5510903159633025, -1.934519379668663, + -2.4209289313099984, -2.9233769069612388, -3.30223621325439, + -3.4393880982141045, -3.2907275770930267, -2.882941979795819, + -2.3050564845107324, -1.6970187867843183, -1.2029771943460765, + -0.8824385817333322, -0.7514785177853265, -0.7346241992861756, + -0.703414849514097, -0.5363138184154292, -0.15535343637813345, + 0.42888607472224377, 1.1223551086164467, 1.7888265552874327, + 2.24848999027229, 2.4413665514928935, 2.4088480347854233, + 2.337537543509238, 2.550337619053416, 3.4287806687839963, + 5.329603203291849, 8.505857746652337, 12.838142417826766, + 18.24768035572443, 24.20300433382875, 29.966559678723478 + ], + "pressure:J79:branch83_seg1": [ + 128513.6447061974, 147457.58184564186, 160889.85065657384, + 166499.51354294916, 165192.33421577752, 157762.66103758183, + 145430.54030378195, 129664.91649985671, 113324.24520806776, + 96635.46572714258, 80646.28082334452, 65652.01970731327, + 50782.39017644037, 36393.27966813699, 21717.959347333435, + 7165.663596465647, -7089.529904339701, -20822.46934316512, + -32427.87975483753, -42351.11982098342, -50420.419218967916, + -56266.29303583859, -60753.727407413295, -64092.748294784134, + -66584.81796970945, -68458.38982689958, -69426.45868413897, + -69279.97040829217, -67828.35183162586, -65141.45692826671, + -61467.22995526718, -57821.57479396345, -55149.96636630558, + -54363.19015820692, -56445.97613007943, -61603.36662155526, + -69211.22118845717, -78334.16082715307, -87498.96184798572, + -94566.17241384447, -98431.95908955204, -98115.88031786302, + -93232.46079137831, -84192.92114325076, -72991.34099359019, + -59991.8232989933, -46558.546601749425, -34776.27157368682, + -23966.805188945546, -14887.194384106835, -7355.087077173164, + -359.9531176888589, 5504.407184577949, 10715.753418698447, + 15231.45550959705, 18225.615615426235, 19580.79582973698, + 19049.656679236643, 16644.574246545177, 12781.908782714589, + 8303.583537383947, 3805.6236337036617, 78.20166990788206, + -2501.5870469325637, -4015.102719147405, -4656.1129421509595, + -4972.248669799279, -5539.797718163539, -6669.45597793145, + -8447.376160907063, -10472.533759217455, -12395.109932355717, + -13705.982667958322, -13843.876706889627, -12808.820885311652, + -10849.875168314638, -8426.45460557983, -5962.904015790099, + -4225.476154653441, -3272.1517601331884, -2930.5608844176263, + -2945.195527761336, -2721.1957088410477, -1783.937254054301, + 59.13689974886894, 2682.3736940667177, 5523.701162727759, + 8019.996090051234, 9542.16006331518, 9910.118828925848, 9535.549935416657, + 9404.098729408404, 10929.487621885632, 15684.219846747494, + 24934.995036320484, 39803.05220801357, 58657.96574125581, + 81259.93251123463, 106428.34925792886, 128513.6447061974 + ], + "flow:branch83_seg1:J80": [ + 29.939303255966667, 35.08911253076395, 38.86566125720631, + 40.961718514208954, 41.29812193067923, 39.96129116491366, + 37.245597216195655, 33.69280643288807, 29.6658886047161, + 25.466752512633924, 21.492834957050096, 17.644290254680698, + 13.943154419273966, 10.35761919252887, 6.692801877291182, + 3.0905629084689843, -0.4974645048037728, -3.9640858093418885, + -7.014369325865979, -9.678821489436372, -11.833674581067427, + -13.470938800903351, -14.72031190279552, -15.640710401848372, + -16.33880164458395, -16.861783623547826, -17.18268407744941, + -17.252265362840962, -17.014186066010566, -16.44654008353153, + -15.615645054713426, -14.703248570634443, -13.918834295662784, + -13.551082359344765, -13.8169711599101, -14.826954362049724, + -16.496686215769863, -18.667243293674947, -20.95194534696878, + -22.89781310069661, -24.185663959204632, -24.474403253332774, + -23.65640399573876, -21.796620958487352, -19.196593567242132, + -16.0573980339573, -12.790656556716177, -9.71095831377839, + -6.894922823305297, -4.517278466766621, -2.4843711352406608, + -0.7098130991202813, 0.8305181884973765, 2.221594125726931, + 3.3956021752547554, 4.2755792075265076, 4.775453888368029, + 4.807131975546287, 4.363730494655033, 3.539864435753512, + 2.4727281017799183, 1.3279897812530335, 0.34621934209006777, + -0.404741121209703, -0.8786285240231584, -1.1016172019022252, + -1.2059655435831338, -1.322244712904257, -1.5492792682929402, + -1.9321265232139857, -2.4183531882106655, -2.9210551201571837, + -3.3012254069632196, -3.439884761748102, -3.2927729183636214, + -2.8860716060733282, -2.3083403172079744, -1.7001349549696627, + -1.2047492736369454, -0.8829852368466843, -0.7515380720104391, + -0.7347047109094104, -0.7041157672528274, -0.5381505756887087, + -0.15805999542517046, 0.4250877250450203, 1.1187869995108946, + 1.787012256441349, 2.247186686815927, 2.44126613368654, + 2.4094574148774086, 2.337068736939234, 2.5468106744360197, + 3.4203177944685805, 5.314519978242412, 8.48482890027289, + 12.812048689833231, 18.214980888124927, 24.170127938584844, + 29.939303255966667 + ], + "pressure:branch83_seg1:J80": [ + 124102.48233518467, 143610.51639033828, 157666.55272032676, + 164389.50224827128, 164191.82726350267, 157670.7650554849, + 146021.6460052128, 131003.39004902855, 114835.67150260384, + 98205.56781132105, 82361.36604031439, 67283.94656567714, + 52536.50932225282, 38252.48591511263, 23665.408579763065, + 9275.446620540748, -4935.281268319932, -18655.477427161626, + -30420.75369797487, -40586.18039257339, -48838.963775885095, + -54933.882520147316, -59606.79005365537, -63066.36361812415, + -65665.38608037766, -67619.9169924559, -68713.17791256124, + -68744.02073101987, -67509.35626234382, -65011.73605191133, + -61504.63565582643, -57877.623406165454, -55027.84131214245, + -53959.450081585346, -55606.86066667008, -60272.78282802409, + -67444.72904957856, -76339.00456424878, -85440.23178645494, + -92760.8335289524, -97138.87871665736, -97432.11731083218, + -93243.35291791435, -84909.0642195389, -74118.39931152371, + -61385.430939242295, -48171.647144941904, -36250.30748735742, + -25314.41339413738, -16111.673534543472, -8385.46588962092, + -1383.9324022659864, 4568.188897075793, 9889.920472033906, + 14455.66484082507, 17651.56145433798, 19265.632572263905, + 19011.970954863547, 16881.252944897366, 13279.93375298348, + 8909.036750299385, 4401.378704242644, 619.0817653849016, + -2122.8495621355682, -3785.9845947485746, -4524.734745364547, + -4879.904494723244, -5401.5127178730145, -6432.666256919979, + -8099.596820613337, -10078.012355652036, -12024.361451321472, + -13416.979756486906, -13725.799292141466, -12881.937942327742, + -11072.569108675063, -8711.678842025902, -6273.69472930562, + -4444.341692413458, -3359.842930590989, -2943.0185990046566, + -2924.607709449385, -2745.0787454345955, -1927.8229473323254, + -228.7146683269342, 2257.16187757783, 5056.891530170405, 7613.86117246307, + 9255.973022528893, 9790.562982240903, 9519.367943585745, + 9321.958517771414, 10552.387429031442, 14755.578146348562, + 23254.652850592283, 37139.314689648505, 55231.211031006096, + 77259.87564457279, 101752.84275261962, 124102.48233518467 + ], + "flow:J80:branch83_seg2": [ + 29.939303255966667, 35.08911253076395, 38.86566125720631, + 40.961718514208954, 41.29812193067923, 39.96129116491366, + 37.245597216195655, 33.69280643288807, 29.6658886047161, + 25.466752512633924, 21.492834957050096, 17.644290254680698, + 13.943154419273966, 10.35761919252887, 6.692801877291182, + 3.0905629084689843, -0.4974645048037728, -3.9640858093418885, + -7.014369325865979, -9.678821489436372, -11.833674581067427, + -13.470938800903351, -14.72031190279552, -15.640710401848372, + -16.33880164458395, -16.861783623547826, -17.18268407744941, + -17.252265362840962, -17.014186066010566, -16.44654008353153, + -15.615645054713426, -14.703248570634443, -13.918834295662784, + -13.551082359344765, -13.8169711599101, -14.826954362049724, + -16.496686215769863, -18.667243293674947, -20.95194534696878, + -22.89781310069661, -24.185663959204632, -24.474403253332774, + -23.65640399573876, -21.796620958487352, -19.196593567242132, + -16.0573980339573, -12.790656556716177, -9.71095831377839, + -6.894922823305297, -4.517278466766621, -2.4843711352406608, + -0.7098130991202813, 0.8305181884973765, 2.221594125726931, + 3.3956021752547554, 4.2755792075265076, 4.775453888368029, + 4.807131975546287, 4.363730494655033, 3.539864435753512, + 2.4727281017799183, 1.3279897812530335, 0.34621934209006777, + -0.404741121209703, -0.8786285240231584, -1.1016172019022252, + -1.2059655435831338, -1.322244712904257, -1.5492792682929402, + -1.9321265232139857, -2.4183531882106655, -2.9210551201571837, + -3.3012254069632196, -3.439884761748102, -3.2927729183636214, + -2.8860716060733282, -2.3083403172079744, -1.7001349549696627, + -1.2047492736369454, -0.8829852368466843, -0.7515380720104391, + -0.7347047109094104, -0.7041157672528274, -0.5381505756887087, + -0.15805999542517046, 0.4250877250450203, 1.1187869995108946, + 1.787012256441349, 2.247186686815927, 2.44126613368654, + 2.4094574148774086, 2.337068736939234, 2.5468106744360197, + 3.4203177944685805, 5.314519978242412, 8.48482890027289, + 12.812048689833231, 18.214980888124927, 24.170127938584844, + 29.939303255966667 + ], + "pressure:J80:branch83_seg2": [ + 124102.48233518467, 143610.51639033828, 157666.55272032676, + 164389.50224827128, 164191.82726350267, 157670.7650554849, + 146021.6460052128, 131003.39004902855, 114835.67150260384, + 98205.56781132105, 82361.36604031439, 67283.94656567714, + 52536.50932225282, 38252.48591511263, 23665.408579763065, + 9275.446620540748, -4935.281268319932, -18655.477427161626, + -30420.75369797487, -40586.18039257339, -48838.963775885095, + -54933.882520147316, -59606.79005365537, -63066.36361812415, + -65665.38608037766, -67619.9169924559, -68713.17791256124, + -68744.02073101987, -67509.35626234382, -65011.73605191133, + -61504.63565582643, -57877.623406165454, -55027.84131214245, + -53959.450081585346, -55606.86066667008, -60272.78282802409, + -67444.72904957856, -76339.00456424878, -85440.23178645494, + -92760.8335289524, -97138.87871665736, -97432.11731083218, + -93243.35291791435, -84909.0642195389, -74118.39931152371, + -61385.430939242295, -48171.647144941904, -36250.30748735742, + -25314.41339413738, -16111.673534543472, -8385.46588962092, + -1383.9324022659864, 4568.188897075793, 9889.920472033906, + 14455.66484082507, 17651.56145433798, 19265.632572263905, + 19011.970954863547, 16881.252944897366, 13279.93375298348, + 8909.036750299385, 4401.378704242644, 619.0817653849016, + -2122.8495621355682, -3785.9845947485746, -4524.734745364547, + -4879.904494723244, -5401.5127178730145, -6432.666256919979, + -8099.596820613337, -10078.012355652036, -12024.361451321472, + -13416.979756486906, -13725.799292141466, -12881.937942327742, + -11072.569108675063, -8711.678842025902, -6273.69472930562, + -4444.341692413458, -3359.842930590989, -2943.0185990046566, + -2924.607709449385, -2745.0787454345955, -1927.8229473323254, + -228.7146683269342, 2257.16187757783, 5056.891530170405, 7613.86117246307, + 9255.973022528893, 9790.562982240903, 9519.367943585745, + 9321.958517771414, 10552.387429031442, 14755.578146348562, + 23254.652850592283, 37139.314689648505, 55231.211031006096, + 77259.87564457279, 101752.84275261962, 124102.48233518467 + ], + "flow:branch86_seg0:J81": [ + 58.3637258166195, 69.50828773305572, 78.12114925374142, 83.33769126936222, + 84.75302949115586, 82.44059265056428, 76.9491834593818, 69.26005880529637, + 60.32464636974602, 50.94838284371413, 41.90236652491485, + 33.33629795662031, 25.328034808666583, 17.76913389620847, + 10.37021708332462, 3.1664856761455025, -3.9307502646320787, + -10.705233672399546, -16.79131432139374, -22.083077351067544, + -26.32957142846973, -29.51197500080271, -31.79192224466705, + -33.32599084709772, -34.345752032534264, -34.98666094520779, + -35.263562141357944, -35.110385433105485, -34.41465096568368, + -33.1094655473265, -31.268792062351793, -29.18058941444673, + -27.251831450428536, -26.037265399137272, -26.030715642652435, + -27.543020783034475, -30.555881738594966, -34.78669768373841, + -39.53896595980181, -43.944300770154, -47.193188429026954, + -48.532562811115646, -47.57476007114421, -44.321443815883285, + -39.2117661104819, -32.7289676172733, -25.72361395804708, + -18.87824173440661, -12.590037522358443, -7.236317135808362, + -2.754089334132116, 0.9813589461173254, 4.090596830777675, + 6.768473833390645, 8.97868741251711, 10.614935285588352, + 11.519093228616741, 11.516518526108163, 10.552570494358875, + 8.745444687400655, 6.3505690357973705, 3.7216424736577403, + 1.2975362402218154, -0.6592630949072644, -1.9849712059786657, + -2.7010281917011136, -3.016094202699517, -3.201649850865488, + -3.5091600046949987, -4.092127034885255, -4.927973147038008, + -5.880505105814433, -6.6845859441176065, -7.0857918006053255, + -6.930606399277428, -6.2072654514016135, -5.051632276230139, + -3.725333356070641, -2.529752806873236, -1.6549601497785753, + -1.1910509470940804, -1.046663099720523, -0.996139574504972, + -0.7791936055042111, -0.18855019063278544, 0.8304424981663567, + 2.1561934584070173, 3.5315854216078812, 4.614727420565477, + 5.197377077909856, 5.264936280046722, 5.1004294014471965, + 5.282515145199655, 6.569978519618067, 9.747272559227717, + 15.41099077329148, 23.593806797743024, 34.18316332940564, + 46.21630363295533, 58.3637258166195 + ], + "pressure:branch86_seg0:J81": [ + 151094.11860357688, 170107.47463111475, 182214.07463307033, + 184321.52012843918, 178262.82699347424, 165577.74261756198, + 147902.61498832147, 126862.25908433224, 106502.76491528586, + 86556.06822161625, 68172.77933326771, 51783.541528084745, + 35635.20453884534, 20456.993203282873, 5159.533430021571, + -9868.128313230543, -24161.303278796964, -37969.73582694495, + -48932.57230955006, -57668.54004430325, -64522.88436074071, + -68778.64360803715, -71664.68012770217, -73514.53936130444, + -74579.63894185884, -75185.93417618633, -74900.72283227032, + -73429.8322618115, -70573.85199533889, -66502.55770261967, + -61491.86899817928, -56905.88686476696, -53906.76856001878, + -53420.26239951615, -56597.27724635181, -63503.82980021727, + -73118.99913260751, -84104.81182027636, -94780.58723999628, + -102290.03539123305, -105489.36715637073, -103533.96376718757, + -96049.4664439061, -83701.1072613886, -69462.24776978877, + -53763.32473269551, -37807.00454629054, -24685.408959235046, + -13102.755496030368, -3766.0784275474734, 3398.610434695189, + 10106.273698783223, 15402.588895473833, 19856.883554311615, + 23617.010827794016, 25513.510569319573, 25497.40418036977, + 23364.17498775955, 19185.550753678064, 13525.171420614364, + 7552.007252227187, 1906.610829505946, -2488.615199407514, + -5182.932120655019, -6558.2610640055855, -6871.259353629935, + -6837.188487567224, -7233.5600759835625, -8396.420428851858, + -10375.806530619971, -12574.62113243329, -14532.029769660616, + -15707.521209558236, -15379.86844500785, -13634.056365739294, + -10894.543643605086, -7800.139524459063, -4783.83161948477, + -2854.4838109346742, -1999.5345322966289, -1851.278752449877, + -2078.6345610500935, -1923.8295029593205, -814.9694572988226, + 1412.4847964775659, 4541.478507100147, 7779.161353736026, + 10449.592165784003, 11820.700355209281, 11718.11186352867, + 10843.95608908989, 10507.244002295569, 12475.14478862198, + 18630.698418505206, 30320.16616146449, 48903.20048295556, + 71667.64147760149, 97949.34702511174, 127175.16896088285, + 151094.11860357688 + ], + "flow:J81:branch86_seg1": [ + 58.3637258166195, 69.50828773305572, 78.12114925374142, 83.33769126936222, + 84.75302949115586, 82.44059265056428, 76.9491834593818, 69.26005880529637, + 60.32464636974602, 50.94838284371413, 41.90236652491485, + 33.33629795662031, 25.328034808666583, 17.76913389620847, + 10.37021708332462, 3.1664856761455025, -3.9307502646320787, + -10.705233672399546, -16.79131432139374, -22.083077351067544, + -26.32957142846973, -29.51197500080271, -31.79192224466705, + -33.32599084709772, -34.345752032534264, -34.98666094520779, + -35.263562141357944, -35.110385433105485, -34.41465096568368, + -33.1094655473265, -31.268792062351793, -29.18058941444673, + -27.251831450428536, -26.037265399137272, -26.030715642652435, + -27.543020783034475, -30.555881738594966, -34.78669768373841, + -39.53896595980181, -43.944300770154, -47.193188429026954, + -48.532562811115646, -47.57476007114421, -44.321443815883285, + -39.2117661104819, -32.7289676172733, -25.72361395804708, + -18.87824173440661, -12.590037522358443, -7.236317135808362, + -2.754089334132116, 0.9813589461173254, 4.090596830777675, + 6.768473833390645, 8.97868741251711, 10.614935285588352, + 11.519093228616741, 11.516518526108163, 10.552570494358875, + 8.745444687400655, 6.3505690357973705, 3.7216424736577403, + 1.2975362402218154, -0.6592630949072644, -1.9849712059786657, + -2.7010281917011136, -3.016094202699517, -3.201649850865488, + -3.5091600046949987, -4.092127034885255, -4.927973147038008, + -5.880505105814433, -6.6845859441176065, -7.0857918006053255, + -6.930606399277428, -6.2072654514016135, -5.051632276230139, + -3.725333356070641, -2.529752806873236, -1.6549601497785753, + -1.1910509470940804, -1.046663099720523, -0.996139574504972, + -0.7791936055042111, -0.18855019063278544, 0.8304424981663567, + 2.1561934584070173, 3.5315854216078812, 4.614727420565477, + 5.197377077909856, 5.264936280046722, 5.1004294014471965, + 5.282515145199655, 6.569978519618067, 9.747272559227717, + 15.41099077329148, 23.593806797743024, 34.18316332940564, + 46.21630363295533, 58.3637258166195 + ], + "pressure:J81:branch86_seg1": [ + 151094.11860357688, 170107.47463111475, 182214.07463307033, + 184321.52012843918, 178262.82699347424, 165577.74261756198, + 147902.61498832147, 126862.25908433224, 106502.76491528586, + 86556.06822161625, 68172.77933326771, 51783.541528084745, + 35635.20453884534, 20456.993203282873, 5159.533430021571, + -9868.128313230543, -24161.303278796964, -37969.73582694495, + -48932.57230955006, -57668.54004430325, -64522.88436074071, + -68778.64360803715, -71664.68012770217, -73514.53936130444, + -74579.63894185884, -75185.93417618633, -74900.72283227032, + -73429.8322618115, -70573.85199533889, -66502.55770261967, + -61491.86899817928, -56905.88686476696, -53906.76856001878, + -53420.26239951615, -56597.27724635181, -63503.82980021727, + -73118.99913260751, -84104.81182027636, -94780.58723999628, + -102290.03539123305, -105489.36715637073, -103533.96376718757, + -96049.4664439061, -83701.1072613886, -69462.24776978877, + -53763.32473269551, -37807.00454629054, -24685.408959235046, + -13102.755496030368, -3766.0784275474734, 3398.610434695189, + 10106.273698783223, 15402.588895473833, 19856.883554311615, + 23617.010827794016, 25513.510569319573, 25497.40418036977, + 23364.17498775955, 19185.550753678064, 13525.171420614364, + 7552.007252227187, 1906.610829505946, -2488.615199407514, + -5182.932120655019, -6558.2610640055855, -6871.259353629935, + -6837.188487567224, -7233.5600759835625, -8396.420428851858, + -10375.806530619971, -12574.62113243329, -14532.029769660616, + -15707.521209558236, -15379.86844500785, -13634.056365739294, + -10894.543643605086, -7800.139524459063, -4783.83161948477, + -2854.4838109346742, -1999.5345322966289, -1851.278752449877, + -2078.6345610500935, -1923.8295029593205, -814.9694572988226, + 1412.4847964775659, 4541.478507100147, 7779.161353736026, + 10449.592165784003, 11820.700355209281, 11718.11186352867, + 10843.95608908989, 10507.244002295569, 12475.14478862198, + 18630.698418505206, 30320.16616146449, 48903.20048295556, + 71667.64147760149, 97949.34702511174, 127175.16896088285, + 151094.11860357688 + ], + "flow:branch86_seg1:J82": [ + 58.3607818352748, 69.50645208531871, 78.12016945676835, 83.3378416106168, + 84.75444556289001, 82.44264281639227, 76.95117809190748, 69.2630948119677, + 60.327213236609175, 50.95014218582218, 41.90455909491607, + 33.338108099798426, 25.329749721619915, 17.77100856047486, + 10.371573768856106, 3.1681781910886397, -3.928818175243637, + -10.704036093873226, -16.790107694832457, -22.082102138030884, + -26.32894894256966, -29.51146103033301, -31.791648324648033, + -33.3258247232372, -34.34562027700339, -34.9866256732628, + -35.26365823274509, -35.11064672888263, -34.415140350393195, + -33.11004228040569, -31.269434007044204, -29.181120821864404, + -27.251972819208188, -26.03706272338771, -26.03013240955198, + -27.542159470380483, -30.55454425621079, -34.785454060168796, + -39.53800633939591, -43.943570830129666, -47.19320377404579, + -48.53313704216216, -47.57591222850607, -44.32289160770093, + -39.21358906150013, -32.73096611033078, -25.72543252478302, + -18.879918288205772, -12.59130135213093, -7.237365971407035, + -2.755010258879246, 0.9805150919488356, 4.089956690258852, + 6.768024894315275, 8.978282247504735, 10.614788586123098, + 11.51926546047504, 11.516945531914935, 10.55310144827694, + 8.746244993057907, 6.351308350399484, 3.7219981601381313, + 1.297967954891048, -0.6589818082774765, -1.9849333468804875, + -2.7010141798234373, -3.01606759070053, -3.2015716072782987, + -3.508975834192149, -4.0918824064371035, -4.9277089233399485, + -5.880279515150114, -6.684517758189139, -7.085901213200115, + -6.930898121553496, -6.20767962838826, -5.052031772479278, + -3.7256988488794307, -2.5299423702251898, -1.6549760294530513, + -1.1910137342177773, -1.046656620922498, -0.9962177707947858, + -0.7794072835124768, -0.1888496852149555, 0.8300264576852241, + 2.1558153375642335, 3.5314672284297766, 4.6146588667053985, + 5.197414091899502, 5.265034298324761, 5.1003843610035355, + 5.282085621794728, 6.568966194816333, 9.745456577813568, + 15.40855603971929, 23.590804578365233, 34.17945793815734, + 46.212585550621654, 58.3607818352748 + ], + "pressure:branch86_seg1:J82": [ + 150198.27548571175, 169285.310581909, 181530.247445269, + 183850.73628157133, 178022.0072433125, 165545.27275256615, + 148044.15309748377, 127156.37019968538, 106845.40471604445, + 86932.00672300665, 68564.38347847649, 52152.929945506316, + 36012.18817996395, 20835.373426351805, 5546.744134189019, + -9453.8433281914, -23742.370635414565, -37555.31320504118, + -48537.985809784346, -57316.93682609368, -64215.94511691772, + -68521.14724004442, -71450.20716814164, -73330.40040485097, + -74418.35634880177, -75042.87196711713, -74779.50002147192, + -73338.6696306367, -70521.16389413, -66487.90570040778, + -61511.472993593365, -56934.683681564995, -53913.21305717384, + -53375.11744362395, -56469.689103172335, -63278.321171705036, + -72797.39840574021, -83723.16746951178, -94370.57874164711, + -101911.97492293485, -105196.62941314881, -103358.07147472168, + -96015.0695973554, -83807.10183906896, -69679.46155597732, + -54057.644059396494, -38142.41592666867, -25014.782868047958, + -13406.861798141394, -4035.867662716379, 3167.2678336438994, + 9897.26458546921, 15217.942397486095, 19690.925455438435, + 23468.836796771626, 25402.08283384201, 25432.66053848253, + 23355.226594254953, 19233.460941318255, 13627.96009429621, + 7681.072796729978, 2043.5205717399015, -2359.0241679165365, + -5085.048356994483, -6493.3728468049885, -6833.503160699432, + -6815.489314458373, -7210.98206389826, -8359.723923930376, + -10319.507601900288, -12503.759326199486, -14458.332508695526, + -15646.72996125069, -15347.74288366559, -13638.641908183492, + -10932.544064098365, -7859.58606387433, -4851.553148590994, + -2909.166521691678, -2032.5601014174295, -1863.8297828191176, + -2078.5105819223286, -1925.8245712349187, -835.1302721713587, + 1365.8547599062438, 4465.905670909786, 7690.38719289179, + 10364.54381330808, 11753.855619633207, 11683.232594980664, + 10834.054159944899, 10496.932153837355, 12422.841252292075, + 18486.11582506037, 30035.747669042743, 48440.820462541655, + 71034.29015906942, 97160.04224951395, 126275.89883605906, + 150198.27548571175 + ], + "flow:J82:branch86_seg2": [ + 58.3607818352748, 69.50645208531871, 78.12016945676835, 83.3378416106168, + 84.75444556289001, 82.44264281639227, 76.95117809190748, 69.2630948119677, + 60.327213236609175, 50.95014218582218, 41.90455909491607, + 33.338108099798426, 25.329749721619915, 17.77100856047486, + 10.371573768856106, 3.1681781910886397, -3.928818175243637, + -10.704036093873226, -16.790107694832457, -22.082102138030884, + -26.32894894256966, -29.51146103033301, -31.791648324648033, + -33.3258247232372, -34.34562027700339, -34.9866256732628, + -35.26365823274509, -35.11064672888263, -34.415140350393195, + -33.11004228040569, -31.269434007044204, -29.181120821864404, + -27.251972819208188, -26.03706272338771, -26.03013240955198, + -27.542159470380483, -30.55454425621079, -34.785454060168796, + -39.53800633939591, -43.943570830129666, -47.19320377404579, + -48.53313704216216, -47.57591222850607, -44.32289160770093, + -39.21358906150013, -32.73096611033078, -25.72543252478302, + -18.879918288205772, -12.59130135213093, -7.237365971407035, + -2.755010258879246, 0.9805150919488356, 4.089956690258852, + 6.768024894315275, 8.978282247504735, 10.614788586123098, + 11.51926546047504, 11.516945531914935, 10.55310144827694, + 8.746244993057907, 6.351308350399484, 3.7219981601381313, + 1.297967954891048, -0.6589818082774765, -1.9849333468804875, + -2.7010141798234373, -3.01606759070053, -3.2015716072782987, + -3.508975834192149, -4.0918824064371035, -4.9277089233399485, + -5.880279515150114, -6.684517758189139, -7.085901213200115, + -6.930898121553496, -6.20767962838826, -5.052031772479278, + -3.7256988488794307, -2.5299423702251898, -1.6549760294530513, + -1.1910137342177773, -1.046656620922498, -0.9962177707947858, + -0.7794072835124768, -0.1888496852149555, 0.8300264576852241, + 2.1558153375642335, 3.5314672284297766, 4.6146588667053985, + 5.197414091899502, 5.265034298324761, 5.1003843610035355, + 5.282085621794728, 6.568966194816333, 9.745456577813568, + 15.40855603971929, 23.590804578365233, 34.17945793815734, + 46.212585550621654, 58.3607818352748 + ], + "pressure:J82:branch86_seg2": [ + 150198.27548571175, 169285.310581909, 181530.247445269, + 183850.73628157133, 178022.0072433125, 165545.27275256615, + 148044.15309748377, 127156.37019968538, 106845.40471604445, + 86932.00672300665, 68564.38347847649, 52152.929945506316, + 36012.18817996395, 20835.373426351805, 5546.744134189019, + -9453.8433281914, -23742.370635414565, -37555.31320504118, + -48537.985809784346, -57316.93682609368, -64215.94511691772, + -68521.14724004442, -71450.20716814164, -73330.40040485097, + -74418.35634880177, -75042.87196711713, -74779.50002147192, + -73338.6696306367, -70521.16389413, -66487.90570040778, + -61511.472993593365, -56934.683681564995, -53913.21305717384, + -53375.11744362395, -56469.689103172335, -63278.321171705036, + -72797.39840574021, -83723.16746951178, -94370.57874164711, + -101911.97492293485, -105196.62941314881, -103358.07147472168, + -96015.0695973554, -83807.10183906896, -69679.46155597732, + -54057.644059396494, -38142.41592666867, -25014.782868047958, + -13406.861798141394, -4035.867662716379, 3167.2678336438994, + 9897.26458546921, 15217.942397486095, 19690.925455438435, + 23468.836796771626, 25402.08283384201, 25432.66053848253, + 23355.226594254953, 19233.460941318255, 13627.96009429621, + 7681.072796729978, 2043.5205717399015, -2359.0241679165365, + -5085.048356994483, -6493.3728468049885, -6833.503160699432, + -6815.489314458373, -7210.98206389826, -8359.723923930376, + -10319.507601900288, -12503.759326199486, -14458.332508695526, + -15646.72996125069, -15347.74288366559, -13638.641908183492, + -10932.544064098365, -7859.58606387433, -4851.553148590994, + -2909.166521691678, -2032.5601014174295, -1863.8297828191176, + -2078.5105819223286, -1925.8245712349187, -835.1302721713587, + 1365.8547599062438, 4465.905670909786, 7690.38719289179, + 10364.54381330808, 11753.855619633207, 11683.232594980664, + 10834.054159944899, 10496.932153837355, 12422.841252292075, + 18486.11582506037, 30035.747669042743, 48440.820462541655, + 71034.29015906942, 97160.04224951395, 126275.89883605906, + 150198.27548571175 + ], + "flow:branch87_seg0:J83": [ + 27.437010968410746, 32.60226382240487, 36.52882983598094, + 38.85807125505839, 39.41433589305802, 38.228309482627026, + 35.561007530626476, 31.9506153746158, 27.757787676752457, + 23.35880886115784, 19.18855222844138, 15.22398421626557, + 11.519475573013764, 8.036976075753186, 4.592420838312143, + 1.2623479272679592, -2.0106184612737334, -5.167653527568884, + -7.971158978140062, -10.400954412796372, -12.346786471711546, + -13.78982489573829, -14.822811348966415, -15.51341708512162, + -15.969656524767636, -16.25636330316911, -16.376066891826603, + -16.294027846386058, -15.958467888066709, -15.333785308359518, + -14.462936800364428, -13.484222405964909, -12.584513342516422, + -12.038896204983933, -12.068598226753414, -12.816899449977578, + -14.253212395601993, -16.25720213514014, -18.490381288356552, + -20.525386663262996, -22.013318808074395, -22.585606439946105, + -22.077979485285084, -20.49856824494866, -18.069198443809075, + -15.021642092838173, -11.747883709316788, -8.570694512671034, + -5.661528906026942, -3.2009262190021674, -1.1470289877904243, + 0.5613914577636174, 1.989967227589408, 3.2243732551971176, + 4.233302443363515, 4.978905768061946, 5.381666787312566, + 5.3552473133616925, 4.876723610394252, 4.016263052058416, + 2.8865619738592456, 1.6454119839066201, 0.5301248358838636, + -0.36331740889021263, -0.9653583890536488, -1.2777739253822287, + -1.4100268536132823, -1.4908203506422892, -1.6351012357337096, + -1.9132236350634089, -2.3101199160122587, -2.756613983810005, + -3.1283417045599644, -3.3053088890033138, -3.2184552763824934, + -2.866428632513709, -2.314363906745847, -1.6930088070888045, + -1.138417423802197, -0.7385314321804662, -0.5365781642221772, + -0.4809847924373659, -0.46249208814717774, -0.3588875107616479, + -0.07389006792208687, 0.410808270770673, 1.0356975203536298, + 1.6834663023275325, 2.177295837640768, 2.432174922899688, + 2.4486546119866746, 2.3613721647991004, 2.4487357266881693, + 3.0698341660212147, 4.588987278682315, 7.286156384836705, + 11.162720621674307, 16.142784469307838, 21.768528817446608, + 27.437010968410746 + ], + "pressure:branch87_seg0:J83": [ + 122974.01496701829, 144777.745315756, 161143.43283302462, + 170138.2340890597, 171413.75200892705, 165273.03980348105, + 152929.5722827274, 136638.9788647159, 118157.91879499512, + 99027.16344803569, 80995.67758485739, 63940.77327275005, + 47906.48183510169, 32835.876212828494, 17852.019565136186, + 3413.8003332478665, -10726.820679695833, -24474.508848721733, + -36396.59532197837, -46642.336552850094, -54873.41897942013, + -60834.48925834991, -65095.5847447327, -67935.36650269156, + -69779.10775908819, -70939.74141944795, -71351.5626596857, + -70843.74630415808, -69204.63466007783, -66317.23834266675, + -62386.065264897974, -58101.481364064755, -54338.361254286174, + -52238.048909993486, -52779.853750208604, -56525.249080315654, + -63169.67627103766, -72148.55165643111, -81943.0608022034, + -90536.85961625035, -96530.32192996076, -98395.16717434436, + -95497.48001182474, -87892.36643400208, -76926.5547893829, + -63465.10459126118, -49025.09521863546, -35403.727820939, + -22966.68821389958, -12488.219442510563, -3869.5339602156414, + 3442.1895200462172, 9522.042811738638, 14717.021840730882, + 19002.07091765134, 22053.680566300493, 23552.993734852833, + 23167.917102136063, 20810.934575039842, 16839.919968497095, + 11803.743985680941, 6392.200414654133, 1659.1078028249824, + -2045.0400403000651, -4488.260872932739, -5697.361911713882, + -6189.263983915386, -6549.053949213223, -7246.7895045967525, + -8558.4257842925, -10334.551924709082, -12256.641182978483, + -13813.37584182564, -14429.659892663754, -13868.346436966482, + -12184.651264915112, -9710.066806233373, -6979.242685883148, + -4638.3248890617815, -3037.4789872420624, -2260.913007382877, + -2081.842271287211, -1990.4911305929238, -1450.8658361596922, + -80.71731871875849, 2151.2729357495678, 4924.529284478278, + 7712.005337503589, 9726.79558011106, 10664.647837478056, + 10610.633248523758, 10245.90831391412, 10844.536447057124, + 14003.359123276241, 21244.41396869459, 33868.91758808769, + 51418.30272596318, 73454.91276627916, 98538.76588816268, + 122974.01496701829 + ], + "flow:J83:branch87_seg1": [ + 27.437010968410746, 32.60226382240487, 36.52882983598094, + 38.85807125505839, 39.41433589305802, 38.228309482627026, + 35.561007530626476, 31.9506153746158, 27.757787676752457, + 23.35880886115784, 19.18855222844138, 15.22398421626557, + 11.519475573013764, 8.036976075753186, 4.592420838312143, + 1.2623479272679592, -2.0106184612737334, -5.167653527568884, + -7.971158978140062, -10.400954412796372, -12.346786471711546, + -13.78982489573829, -14.822811348966415, -15.51341708512162, + -15.969656524767636, -16.25636330316911, -16.376066891826603, + -16.294027846386058, -15.958467888066709, -15.333785308359518, + -14.462936800364428, -13.484222405964909, -12.584513342516422, + -12.038896204983933, -12.068598226753414, -12.816899449977578, + -14.253212395601993, -16.25720213514014, -18.490381288356552, + -20.525386663262996, -22.013318808074395, -22.585606439946105, + -22.077979485285084, -20.49856824494866, -18.069198443809075, + -15.021642092838173, -11.747883709316788, -8.570694512671034, + -5.661528906026942, -3.2009262190021674, -1.1470289877904243, + 0.5613914577636174, 1.989967227589408, 3.2243732551971176, + 4.233302443363515, 4.978905768061946, 5.381666787312566, + 5.3552473133616925, 4.876723610394252, 4.016263052058416, + 2.8865619738592456, 1.6454119839066201, 0.5301248358838636, + -0.36331740889021263, -0.9653583890536488, -1.2777739253822287, + -1.4100268536132823, -1.4908203506422892, -1.6351012357337096, + -1.9132236350634089, -2.3101199160122587, -2.756613983810005, + -3.1283417045599644, -3.3053088890033138, -3.2184552763824934, + -2.866428632513709, -2.314363906745847, -1.6930088070888045, + -1.138417423802197, -0.7385314321804662, -0.5365781642221772, + -0.4809847924373659, -0.46249208814717774, -0.3588875107616479, + -0.07389006792208687, 0.410808270770673, 1.0356975203536298, + 1.6834663023275325, 2.177295837640768, 2.432174922899688, + 2.4486546119866746, 2.3613721647991004, 2.4487357266881693, + 3.0698341660212147, 4.588987278682315, 7.286156384836705, + 11.162720621674307, 16.142784469307838, 21.768528817446608, + 27.437010968410746 + ], + "pressure:J83:branch87_seg1": [ + 122974.01496701829, 144777.745315756, 161143.43283302462, + 170138.2340890597, 171413.75200892705, 165273.03980348105, + 152929.5722827274, 136638.9788647159, 118157.91879499512, + 99027.16344803569, 80995.67758485739, 63940.77327275005, + 47906.48183510169, 32835.876212828494, 17852.019565136186, + 3413.8003332478665, -10726.820679695833, -24474.508848721733, + -36396.59532197837, -46642.336552850094, -54873.41897942013, + -60834.48925834991, -65095.5847447327, -67935.36650269156, + -69779.10775908819, -70939.74141944795, -71351.5626596857, + -70843.74630415808, -69204.63466007783, -66317.23834266675, + -62386.065264897974, -58101.481364064755, -54338.361254286174, + -52238.048909993486, -52779.853750208604, -56525.249080315654, + -63169.67627103766, -72148.55165643111, -81943.0608022034, + -90536.85961625035, -96530.32192996076, -98395.16717434436, + -95497.48001182474, -87892.36643400208, -76926.5547893829, + -63465.10459126118, -49025.09521863546, -35403.727820939, + -22966.68821389958, -12488.219442510563, -3869.5339602156414, + 3442.1895200462172, 9522.042811738638, 14717.021840730882, + 19002.07091765134, 22053.680566300493, 23552.993734852833, + 23167.917102136063, 20810.934575039842, 16839.919968497095, + 11803.743985680941, 6392.200414654133, 1659.1078028249824, + -2045.0400403000651, -4488.260872932739, -5697.361911713882, + -6189.263983915386, -6549.053949213223, -7246.7895045967525, + -8558.4257842925, -10334.551924709082, -12256.641182978483, + -13813.37584182564, -14429.659892663754, -13868.346436966482, + -12184.651264915112, -9710.066806233373, -6979.242685883148, + -4638.3248890617815, -3037.4789872420624, -2260.913007382877, + -2081.842271287211, -1990.4911305929238, -1450.8658361596922, + -80.71731871875849, 2151.2729357495678, 4924.529284478278, + 7712.005337503589, 9726.79558011106, 10664.647837478056, + 10610.633248523758, 10245.90831391412, 10844.536447057124, + 14003.359123276241, 21244.41396869459, 33868.91758808769, + 51418.30272596318, 73454.91276627916, 98538.76588816268, + 122974.01496701829 + ], + "flow:branch87_seg1:J84": [ + 27.41018442981842, 32.58164987030299, 36.51370182688383, + 38.852228121740936, 39.41776265342486, 38.239062256396615, + 35.575859278309366, 31.971501664444403, 27.780192132006075, + 23.37888066883769, 19.208920955592276, 15.242626537995067, + 11.53700152313715, 8.054566430207277, 4.608875123713355, + 1.2785485476932215, -1.9940369159007856, -5.152520575842231, + -7.958454876435062, -10.390520099598522, -12.338577687052897, + -13.784019685732527, -14.81885817672952, -15.510826893928455, + -15.96804775442807, -16.25540959386499, -16.37605098310097, + -16.29520481670446, -15.961132265403974, -15.337608923094766, + -14.467754908805542, -13.48911343214652, -12.587710149831238, + -12.039972193749795, -12.066377982182297, -12.8111005618748, + -14.24406294711073, -16.24618638808932, -18.479491964624742, + -20.51641139729247, -22.008747956877706, -22.586160784873247, + -22.08402434537422, -20.51014884967198, -18.08325071337576, + -15.037476678850219, -11.764860437457443, -8.585612243184599, + -5.6745219359319545, -3.2118930199744065, -1.155560653730091, + 0.5534709897201907, 1.9834495963328358, 3.2194731964455543, + 4.2289180528157795, 4.976181842523118, 5.381102703005761, + 5.356772994484547, 4.880173799037125, 4.021612517726224, + 2.8929157852618097, 1.6510002322174957, 0.5350543489622329, + -0.35966305330331044, -0.9633953917694805, -1.2768666837612213, + -1.4096580934519993, -1.4903194424978925, -1.6339698349622487, + -1.9112786201210414, -2.3079467618112184, -2.7546258813894617, + -3.126945175746354, -3.3052362556716885, -3.219829089944539, + -2.868953971297231, -2.3172484447452226, -1.6961182876281184, + -1.1407810959475844, -0.7396639928622307, -0.5370638043664693, + -0.4810723999273112, -0.4627590606567084, -0.3599024057625725, + -0.07588608662854421, 0.40784294201587734, 1.0322783235502764, + 1.6807383583432383, 2.1755604585987465, 2.4316715751250264, + 2.4491625896325084, 2.361553942734909, 2.4468916823506843, + 3.064050023443247, 4.577847608472916, 7.267896278223312, + 11.140023021104113, 16.117088975556893, 21.737723146360473, + 27.41018442981842 + ], + "pressure:branch87_seg1:J84": [ + 120005.66615077315, 142168.28492379934, 158945.3293254769, + 168669.90250317636, 170712.4671562038, 165258.06029137268, + 153460.0911285267, 137640.2711438849, 119400.2354034887, + 100339.8742222948, 82317.65542131479, 65206.94943969043, + 49186.682968724905, 34132.01498030063, 19209.458484883446, + 4803.441837043359, -9335.697232127368, -23019.543657110284, + -35074.79332919159, -45493.471801992295, -53848.06196696404, + -59996.68847577383, -64396.76320865489, -67335.95952030228, + -69266.81637031742, -70481.2906195117, -70965.7596693246, + -70562.73004508408, -69052.87451190008, -66292.73374503774, + -62475.20631725089, -58227.28269040238, -54376.85473702467, + -52101.24483620837, -52361.63579762169, -55760.65374411381, + -62107.53062488982, -70872.07869000846, -80573.8064734146, + -89305.67455183917, -95600.87645680086, -97881.94288362698, + -95464.28151413218, -88388.18869096487, -77736.4864461872, + -64471.905795808445, -50226.11375275238, -36525.809850593316, + -23993.210871153704, -13405.593901394714, -4610.01963974499, + 2750.7327374872143, 8897.369254479787, 14189.400163552315, + 18525.3909056225, 21694.466644319473, 23359.010849314378, + 23158.15299092371, 20996.446421582823, 17196.933693969928, + 12264.695225742456, 6881.090161345563, 2089.187267634767, + -1722.026497773703, -4274.983216334114, -5579.875953074462, + -6125.656891308594, -6478.027684795738, -7125.057109491795, + -8362.237117536348, -10097.892053953628, -12025.549166947949, + -13617.021542543689, -14335.04784183213, -13900.289052947559, + -12326.641335781796, -9911.160473233402, -7210.781976957371, + -4830.563770597973, -3142.1719925680713, -2300.5318195430577, + -2080.1337308111747, -1996.925882327406, -1519.9469382186714, + -243.624847421641, 1895.3438221334914, 4619.614845956306, + 7417.64885984932, 9513.838584156472, 10562.894527930828, + 10594.233885200247, 10220.11517269477, 10667.096152879147, + 13501.951968404961, 20282.63065537262, 32249.994820832297, + 49264.2492973884, 70953.57655896757, 95515.84452023411, 120005.66615077315 + ], + "flow:J84:branch87_seg2": [ + 27.41018442981842, 32.58164987030299, 36.51370182688383, + 38.852228121740936, 39.41776265342486, 38.239062256396615, + 35.575859278309366, 31.971501664444403, 27.780192132006075, + 23.37888066883769, 19.208920955592276, 15.242626537995067, + 11.53700152313715, 8.054566430207277, 4.608875123713355, + 1.2785485476932215, -1.9940369159007856, -5.152520575842231, + -7.958454876435062, -10.390520099598522, -12.338577687052897, + -13.784019685732527, -14.81885817672952, -15.510826893928455, + -15.96804775442807, -16.25540959386499, -16.37605098310097, + -16.29520481670446, -15.961132265403974, -15.337608923094766, + -14.467754908805542, -13.48911343214652, -12.587710149831238, + -12.039972193749795, -12.066377982182297, -12.8111005618748, + -14.24406294711073, -16.24618638808932, -18.479491964624742, + -20.51641139729247, -22.008747956877706, -22.586160784873247, + -22.08402434537422, -20.51014884967198, -18.08325071337576, + -15.037476678850219, -11.764860437457443, -8.585612243184599, + -5.6745219359319545, -3.2118930199744065, -1.155560653730091, + 0.5534709897201907, 1.9834495963328358, 3.2194731964455543, + 4.2289180528157795, 4.976181842523118, 5.381102703005761, + 5.356772994484547, 4.880173799037125, 4.021612517726224, + 2.8929157852618097, 1.6510002322174957, 0.5350543489622329, + -0.35966305330331044, -0.9633953917694805, -1.2768666837612213, + -1.4096580934519993, -1.4903194424978925, -1.6339698349622487, + -1.9112786201210414, -2.3079467618112184, -2.7546258813894617, + -3.126945175746354, -3.3052362556716885, -3.219829089944539, + -2.868953971297231, -2.3172484447452226, -1.6961182876281184, + -1.1407810959475844, -0.7396639928622307, -0.5370638043664693, + -0.4810723999273112, -0.4627590606567084, -0.3599024057625725, + -0.07588608662854421, 0.40784294201587734, 1.0322783235502764, + 1.6807383583432383, 2.1755604585987465, 2.4316715751250264, + 2.4491625896325084, 2.361553942734909, 2.4468916823506843, + 3.064050023443247, 4.577847608472916, 7.267896278223312, + 11.140023021104113, 16.117088975556893, 21.737723146360473, + 27.41018442981842 + ], + "pressure:J84:branch87_seg2": [ + 120005.66615077315, 142168.28492379934, 158945.3293254769, + 168669.90250317636, 170712.4671562038, 165258.06029137268, + 153460.0911285267, 137640.2711438849, 119400.2354034887, + 100339.8742222948, 82317.65542131479, 65206.94943969043, + 49186.682968724905, 34132.01498030063, 19209.458484883446, + 4803.441837043359, -9335.697232127368, -23019.543657110284, + -35074.79332919159, -45493.471801992295, -53848.06196696404, + -59996.68847577383, -64396.76320865489, -67335.95952030228, + -69266.81637031742, -70481.2906195117, -70965.7596693246, + -70562.73004508408, -69052.87451190008, -66292.73374503774, + -62475.20631725089, -58227.28269040238, -54376.85473702467, + -52101.24483620837, -52361.63579762169, -55760.65374411381, + -62107.53062488982, -70872.07869000846, -80573.8064734146, + -89305.67455183917, -95600.87645680086, -97881.94288362698, + -95464.28151413218, -88388.18869096487, -77736.4864461872, + -64471.905795808445, -50226.11375275238, -36525.809850593316, + -23993.210871153704, -13405.593901394714, -4610.01963974499, + 2750.7327374872143, 8897.369254479787, 14189.400163552315, + 18525.3909056225, 21694.466644319473, 23359.010849314378, + 23158.15299092371, 20996.446421582823, 17196.933693969928, + 12264.695225742456, 6881.090161345563, 2089.187267634767, + -1722.026497773703, -4274.983216334114, -5579.875953074462, + -6125.656891308594, -6478.027684795738, -7125.057109491795, + -8362.237117536348, -10097.892053953628, -12025.549166947949, + -13617.021542543689, -14335.04784183213, -13900.289052947559, + -12326.641335781796, -9911.160473233402, -7210.781976957371, + -4830.563770597973, -3142.1719925680713, -2300.5318195430577, + -2080.1337308111747, -1996.925882327406, -1519.9469382186714, + -243.624847421641, 1895.3438221334914, 4619.614845956306, + 7417.64885984932, 9513.838584156472, 10562.894527930828, + 10594.233885200247, 10220.11517269477, 10667.096152879147, + 13501.951968404961, 20282.63065537262, 32249.994820832297, + 49264.2492973884, 70953.57655896757, 95515.84452023411, 120005.66615077315 + ], + "flow:branch90_seg0:J85": [ + 31.650593705943695, 35.534569677244185, 37.49797462048342, + 37.41853120777082, 35.56215449286877, 32.239752852116005, + 27.922907791247557, 23.344643875039168, 18.90022845440019, + 14.711718502950493, 11.205225708035558, 8.03863696196462, + 5.080395416435286, 2.3046214010315533, -0.623594650284702, + -3.4408564032936826, -6.200313798056114, -8.825734547949825, + -10.859789794983195, -12.470576301043005, -13.568381595084928, + -14.164647075483337, -14.506486579991321, -14.651674887290952, + -14.713175842895541, -14.720408566677618, -14.588493158631879, + -14.236979253669713, -13.599947507217903, -12.675344488933675, + -11.573115819566784, -10.562015642421496, -9.877893698736724, + -9.83018930612114, -10.601480812140544, -12.201509948733019, + -14.3811922280194, -16.877235445799005, -19.186876320524338, + -20.748891492161718, -21.33698466712844, -20.67574194038758, + -18.807754388824065, -15.966033393652085, -12.690282018981192, + -9.184073848480107, -5.91697817795219, -3.241201623375956, + -1.0202376597722866, 0.592124131718174, 1.8241528157123696, + 2.8765716928008507, 3.7331188296072866, 4.519580374967908, + 5.116792270667144, 5.398088555732461, 5.289695377969262, + 4.707349007677354, 3.689218403819222, 2.4071186191579206, + 1.0592752487882326, -0.18741061226403294, -1.0498449121394653, + -1.5367911375458956, -1.6900419578470987, -1.59267452569515, + -1.455345044099032, -1.4431239385352717, -1.639063364330988, + -2.0485306786649686, -2.5449408224356285, -2.9985595043812423, + -3.240049736443048, -3.1460418948817304, -2.725914907917264, + -2.0704089049950043, -1.3252430134504236, -0.6654295788124244, + -0.2567472508949111, -0.10415314374510877, -0.1693446165348604, + -0.31511727299565717, -0.3578541364413908, -0.1661001930466477, + 0.30927947368562714, 0.994890532044455, 1.7234815971071147, + 2.324755566394718, 2.5826776322873752, 2.496470171220071, + 2.2033822322814105, 1.996292986001617, 2.2957341127296687, + 3.5303216171638288, 6.022350452928466, 9.957394311917849, + 14.908574261867203, 20.695670644913577, 26.63269051065899, + 31.650593705943695 + ], + "pressure:branch90_seg0:J85": [ + 173343.11829382993, 191915.83852948036, 200936.96556702652, + 198222.4613821823, 186446.1018120026, 167729.9742119985, + 144478.30518737476, 119311.41764485155, 96204.41754833124, + 74680.61676181712, 56092.88324848757, 39891.96692838411, + 24132.419529341285, 9288.277997175683, -6149.784917338613, + -21260.349830436135, -35766.13801782723, -49535.38470735777, + -59830.53649571297, -67697.60542734058, -73196.24091276024, + -75926.52180853869, -77473.24225098616, -78153.1563903782, + -78374.00317722438, -78354.6746850148, -77475.58142981862, + -75316.96113688254, -71584.38831611737, -66471.99196230536, + -60471.23427862663, -55286.765040693856, -52277.988770446274, + -52677.18706429871, -57625.91816558308, -66932.76736657301, + -79069.0403271609, -92322.99650443945, -104290.12074603682, + -111728.04575524751, -113539.38490498351, -108839.68375898717, + -97759.11619637905, -81577.0988759507, -63997.19483409245, + -45543.99820322121, -28141.18733114705, -14723.188209151831, + -3498.9662718892473, 4718.972160430341, 10730.59833348693, + 16403.695905680685, 20788.32330337955, 24661.469255386008, + 27783.66008869174, 28858.321715660975, 27780.004772881828, + 24254.191983670422, 18496.370662788977, 11380.492825013076, + 4271.302513633204, -2022.7650418278806, -6342.755430925085, + -8484.523298188533, -8984.848855112818, -8358.591923997848, + -7640.579561015081, -7755.931005574933, -9043.352528138155, + -11435.359508582678, -14075.728805012699, -16315.72481630995, + -17374.24016479883, -16499.392487646423, -13918.08932969463, + -10248.059404537225, -6357.295617052353, -2921.6720441921, + -1051.834980753809, -583.9244271670453, -1031.592516329959, + -1793.404278467545, -1852.352597070994, -549.9807669599891, + 2238.4041249483325, 6073.133390381717, 9897.037570903383, + 12807.426957135343, 13866.665922939037, 13065.33044540975, + 11384.987819324191, 10588.272235125123, 12934.607730027288, + 20673.63235795307, 35282.212973638256, 57923.32795942818, + 85064.1712539242, 115850.44806954265, 148264.098315139, 173343.11829382993 + ], + "flow:J85:branch90_seg1": [ + 31.650593705943695, 35.534569677244185, 37.49797462048342, + 37.41853120777082, 35.56215449286877, 32.239752852116005, + 27.922907791247557, 23.344643875039168, 18.90022845440019, + 14.711718502950493, 11.205225708035558, 8.03863696196462, + 5.080395416435286, 2.3046214010315533, -0.623594650284702, + -3.4408564032936826, -6.200313798056114, -8.825734547949825, + -10.859789794983195, -12.470576301043005, -13.568381595084928, + -14.164647075483337, -14.506486579991321, -14.651674887290952, + -14.713175842895541, -14.720408566677618, -14.588493158631879, + -14.236979253669713, -13.599947507217903, -12.675344488933675, + -11.573115819566784, -10.562015642421496, -9.877893698736724, + -9.83018930612114, -10.601480812140544, -12.201509948733019, + -14.3811922280194, -16.877235445799005, -19.186876320524338, + -20.748891492161718, -21.33698466712844, -20.67574194038758, + -18.807754388824065, -15.966033393652085, -12.690282018981192, + -9.184073848480107, -5.91697817795219, -3.241201623375956, + -1.0202376597722866, 0.592124131718174, 1.8241528157123696, + 2.8765716928008507, 3.7331188296072866, 4.519580374967908, + 5.116792270667144, 5.398088555732461, 5.289695377969262, + 4.707349007677354, 3.689218403819222, 2.4071186191579206, + 1.0592752487882326, -0.18741061226403294, -1.0498449121394653, + -1.5367911375458956, -1.6900419578470987, -1.59267452569515, + -1.455345044099032, -1.4431239385352717, -1.639063364330988, + -2.0485306786649686, -2.5449408224356285, -2.9985595043812423, + -3.240049736443048, -3.1460418948817304, -2.725914907917264, + -2.0704089049950043, -1.3252430134504236, -0.6654295788124244, + -0.2567472508949111, -0.10415314374510877, -0.1693446165348604, + -0.31511727299565717, -0.3578541364413908, -0.1661001930466477, + 0.30927947368562714, 0.994890532044455, 1.7234815971071147, + 2.324755566394718, 2.5826776322873752, 2.496470171220071, + 2.2033822322814105, 1.996292986001617, 2.2957341127296687, + 3.5303216171638288, 6.022350452928466, 9.957394311917849, + 14.908574261867203, 20.695670644913577, 26.63269051065899, + 31.650593705943695 + ], + "pressure:J85:branch90_seg1": [ + 173343.11829382993, 191915.83852948036, 200936.96556702652, + 198222.4613821823, 186446.1018120026, 167729.9742119985, + 144478.30518737476, 119311.41764485155, 96204.41754833124, + 74680.61676181712, 56092.88324848757, 39891.96692838411, + 24132.419529341285, 9288.277997175683, -6149.784917338613, + -21260.349830436135, -35766.13801782723, -49535.38470735777, + -59830.53649571297, -67697.60542734058, -73196.24091276024, + -75926.52180853869, -77473.24225098616, -78153.1563903782, + -78374.00317722438, -78354.6746850148, -77475.58142981862, + -75316.96113688254, -71584.38831611737, -66471.99196230536, + -60471.23427862663, -55286.765040693856, -52277.988770446274, + -52677.18706429871, -57625.91816558308, -66932.76736657301, + -79069.0403271609, -92322.99650443945, -104290.12074603682, + -111728.04575524751, -113539.38490498351, -108839.68375898717, + -97759.11619637905, -81577.0988759507, -63997.19483409245, + -45543.99820322121, -28141.18733114705, -14723.188209151831, + -3498.9662718892473, 4718.972160430341, 10730.59833348693, + 16403.695905680685, 20788.32330337955, 24661.469255386008, + 27783.66008869174, 28858.321715660975, 27780.004772881828, + 24254.191983670422, 18496.370662788977, 11380.492825013076, + 4271.302513633204, -2022.7650418278806, -6342.755430925085, + -8484.523298188533, -8984.848855112818, -8358.591923997848, + -7640.579561015081, -7755.931005574933, -9043.352528138155, + -11435.359508582678, -14075.728805012699, -16315.72481630995, + -17374.24016479883, -16499.392487646423, -13918.08932969463, + -10248.059404537225, -6357.295617052353, -2921.6720441921, + -1051.834980753809, -583.9244271670453, -1031.592516329959, + -1793.404278467545, -1852.352597070994, -549.9807669599891, + 2238.4041249483325, 6073.133390381717, 9897.037570903383, + 12807.426957135343, 13866.665922939037, 13065.33044540975, + 11384.987819324191, 10588.272235125123, 12934.607730027288, + 20673.63235795307, 35282.212973638256, 57923.32795942818, + 85064.1712539242, 115850.44806954265, 148264.098315139, 173343.11829382993 + ], + "flow:branch90_seg1:J86": [ + 31.62101289524176, 35.51842832681219, 37.4926311088753, + 37.426893935109284, 35.58394921041352, 32.26713448417183, + 27.94871030444406, 23.38004751490385, 18.927602613830327, + 14.730556277371207, 11.227865025076726, 8.055771779562619, + 5.0974429632409555, 2.323327642477046, -0.6098609494384959, + -3.4230943596910124, -6.181202980905825, -8.814098430434296, + -10.848119052235132, -12.4624291165246, -13.563831822260655, + -14.161250498549439, -14.505355670166578, -14.651151569081371, + -14.71274162171176, -14.720769611474102, -14.590201839104646, + -14.240562877193224, -13.606087669336043, -12.682311576746413, + -11.580697209337359, -10.567736090040578, -9.878709096552907, + -9.82667687644376, -10.593056872761585, -12.189644831980251, + -14.36464212257529, -16.862752308505655, -19.176203401002187, + -20.74233697324827, -21.339923385065845, -20.68524228090352, + -18.82395633970048, -15.985551546905626, -12.71254689377563, + -9.2065224868935, -5.936592152914836, -3.257802915876829, + -1.0319667089692521, 0.5828408254969712, 1.8164783336613666, + 2.869134320881353, 3.7276602741103795, 4.51580161556434, + 5.113430189968002, 5.397865342789114, 5.292943124039272, + 4.713389460398128, 3.6964198306989298, 2.416893739343991, + 1.0676276155476758, -0.18346296594997513, -1.04558789901184, + -1.5350894210621373, -1.6908507924954583, -1.5934728978843116, + -1.4557289330182592, -1.4424349160479248, -1.6368272471753476, + -2.0454224999207136, -2.5417791480791263, -2.99621529441467, + -3.23976584757153, -3.1480233454802913, -2.7300215288228684, + -2.0756878493912283, -1.3299266671868772, -0.6694160777835385, + -0.2582954220363412, -0.10363964281726121, -0.16829425849806287, + -0.31456356829280574, -0.35860771691075427, -0.1687095170566467, + 0.3054600839531179, 0.9898222825256188, 1.7192053940974954, + 2.323600382481707, 2.5824621540676884, 2.4979255079662708, + 2.205309152603733, 1.995969710017135, 2.2902275917399946, + 3.517343694212065, 5.999833248826895, 9.927088040531055, + 14.872651976294211, 20.65418219691149, 26.59189950288062, + 31.62101289524176 + ], + "pressure:branch90_seg1:J86": [ + 168764.91698031832, 188600.96826328654, 198519.31318592074, + 197354.43476716013, 186943.00773830968, 169055.97880578827, + 146150.75721951845, 121731.22978060495, 98408.3794403021, + 76517.68764584557, 58040.78607014707, 41518.78152370343, + 25888.79771031992, 11209.236505800676, -4229.021913545968, + -19129.982184944583, -33635.9606220407, -47467.47677522672, + -58021.6791386479, -66297.13475089059, -71991.54447238076, + -74989.42929334793, -76709.84037295076, -77446.78597430796, + -77734.44824724195, -77756.41704541621, -77003.72555857225, + -75054.59215308948, -71581.45535159606, -66634.45896642293, + -60768.15668188598, -55488.11177965771, -52074.811875455875, + -52032.28357925111, -56380.78601835922, -65095.183112018654, + -76774.8595429521, -89959.25423368503, -102062.31408997615, + -110024.05617602199, -112710.14908034474, -108831.76695002403, + -98594.52823275088, -83224.89826876762, -65885.70052540477, + -47440.160764420834, -30162.819324120446, -16307.159933428013, + -4762.645994464344, 3637.029585798511, 9958.753340984114, + 15545.351919191427, 20017.45401259442, 24068.57918563161, + 27205.83272605927, 28557.583581797, 27824.480854266054, 24611.52501624271, + 19119.430136112333, 12256.604431170725, 5152.100782691475, + -1333.3296388602935, -5791.781402215134, -8217.506644502571, + -8927.439717721945, -8374.82317880313, -7651.926876077539, + -7645.989179874543, -8760.056872356943, -10994.200719116976, + -13615.162596745555, -15953.420060275377, -17158.983340856274, + -16540.795181998434, -14209.807138412305, -10688.98846858341, + -6777.011236218853, -3315.041082075878, -1252.4572312762514, + -558.4098057738682, -935.4422107825364, -1702.8984053776048, + -1875.4129162037186, -772.0104008148332, 1824.5093735902205, + 5505.487219269338, 9339.263189448266, 12427.818436325686, + 13683.796558161084, 13115.445696411989, 11526.78161218204, + 10530.096271186194, 12352.933364029675, 19251.476537238766, + 32844.346637210496, 54194.32569793605, 80596.9927658533, + 111129.85920166525, 142785.37150081125, 168764.91698031832 + ], + "flow:J86:branch90_seg2": [ + 31.62101289524176, 35.51842832681219, 37.4926311088753, + 37.426893935109284, 35.58394921041352, 32.26713448417183, + 27.94871030444406, 23.38004751490385, 18.927602613830327, + 14.730556277371207, 11.227865025076726, 8.055771779562619, + 5.0974429632409555, 2.323327642477046, -0.6098609494384959, + -3.4230943596910124, -6.181202980905825, -8.814098430434296, + -10.848119052235132, -12.4624291165246, -13.563831822260655, + -14.161250498549439, -14.505355670166578, -14.651151569081371, + -14.71274162171176, -14.720769611474102, -14.590201839104646, + -14.240562877193224, -13.606087669336043, -12.682311576746413, + -11.580697209337359, -10.567736090040578, -9.878709096552907, + -9.82667687644376, -10.593056872761585, -12.189644831980251, + -14.36464212257529, -16.862752308505655, -19.176203401002187, + -20.74233697324827, -21.339923385065845, -20.68524228090352, + -18.82395633970048, -15.985551546905626, -12.71254689377563, + -9.2065224868935, -5.936592152914836, -3.257802915876829, + -1.0319667089692521, 0.5828408254969712, 1.8164783336613666, + 2.869134320881353, 3.7276602741103795, 4.51580161556434, + 5.113430189968002, 5.397865342789114, 5.292943124039272, + 4.713389460398128, 3.6964198306989298, 2.416893739343991, + 1.0676276155476758, -0.18346296594997513, -1.04558789901184, + -1.5350894210621373, -1.6908507924954583, -1.5934728978843116, + -1.4557289330182592, -1.4424349160479248, -1.6368272471753476, + -2.0454224999207136, -2.5417791480791263, -2.99621529441467, + -3.23976584757153, -3.1480233454802913, -2.7300215288228684, + -2.0756878493912283, -1.3299266671868772, -0.6694160777835385, + -0.2582954220363412, -0.10363964281726121, -0.16829425849806287, + -0.31456356829280574, -0.35860771691075427, -0.1687095170566467, + 0.3054600839531179, 0.9898222825256188, 1.7192053940974954, + 2.323600382481707, 2.5824621540676884, 2.4979255079662708, + 2.205309152603733, 1.995969710017135, 2.2902275917399946, + 3.517343694212065, 5.999833248826895, 9.927088040531055, + 14.872651976294211, 20.65418219691149, 26.59189950288062, + 31.62101289524176 + ], + "pressure:J86:branch90_seg2": [ + 168764.91698031832, 188600.96826328654, 198519.31318592074, + 197354.43476716013, 186943.00773830968, 169055.97880578827, + 146150.75721951845, 121731.22978060495, 98408.3794403021, + 76517.68764584557, 58040.78607014707, 41518.78152370343, + 25888.79771031992, 11209.236505800676, -4229.021913545968, + -19129.982184944583, -33635.9606220407, -47467.47677522672, + -58021.6791386479, -66297.13475089059, -71991.54447238076, + -74989.42929334793, -76709.84037295076, -77446.78597430796, + -77734.44824724195, -77756.41704541621, -77003.72555857225, + -75054.59215308948, -71581.45535159606, -66634.45896642293, + -60768.15668188598, -55488.11177965771, -52074.811875455875, + -52032.28357925111, -56380.78601835922, -65095.183112018654, + -76774.8595429521, -89959.25423368503, -102062.31408997615, + -110024.05617602199, -112710.14908034474, -108831.76695002403, + -98594.52823275088, -83224.89826876762, -65885.70052540477, + -47440.160764420834, -30162.819324120446, -16307.159933428013, + -4762.645994464344, 3637.029585798511, 9958.753340984114, + 15545.351919191427, 20017.45401259442, 24068.57918563161, + 27205.83272605927, 28557.583581797, 27824.480854266054, 24611.52501624271, + 19119.430136112333, 12256.604431170725, 5152.100782691475, + -1333.3296388602935, -5791.781402215134, -8217.506644502571, + -8927.439717721945, -8374.82317880313, -7651.926876077539, + -7645.989179874543, -8760.056872356943, -10994.200719116976, + -13615.162596745555, -15953.420060275377, -17158.983340856274, + -16540.795181998434, -14209.807138412305, -10688.98846858341, + -6777.011236218853, -3315.041082075878, -1252.4572312762514, + -558.4098057738682, -935.4422107825364, -1702.8984053776048, + -1875.4129162037186, -772.0104008148332, 1824.5093735902205, + 5505.487219269338, 9339.263189448266, 12427.818436325686, + 13683.796558161084, 13115.445696411989, 11526.78161218204, + 10530.096271186194, 12352.933364029675, 19251.476537238766, + 32844.346637210496, 54194.32569793605, 80596.9927658533, + 111129.85920166525, 142785.37150081125, 168764.91698031832 + ], + "flow:branch93_seg0:J87": [ + 25.378935255536785, 28.572619014531146, 30.229744324768014, + 30.25102466878128, 28.830073829004156, 26.216459278631458, + 22.787547846449648, 19.1093147874526, 15.53443328852629, + 12.148549313525969, 9.285486281995132, 6.710128889928807, + 4.308090364435388, 2.061574188461267, -0.2846154551261123, + -2.552567510348003, -4.771833312304001, -6.8736698772747475, + -8.53431803393198, -9.86093120754518, -10.778611730589114, + -11.302557342467066, -11.613626115432053, -11.760907786225332, + -11.834883350827743, -11.858377325582213, -11.770200426700084, + -11.508741249876804, -11.0205233362366, -10.30292476373164, + -9.437558099067598, -8.633636305949679, -8.076918868271107, + -8.013128228635155, -8.59417139479859, -9.835395639374173, + -11.558830601630806, -13.551219424191888, -15.425200599579881, + -16.738444741589316, -17.290553585790857, -16.85599916613906, + -15.447171940339837, -13.240255488040832, -10.637988289565918, + -7.813116155681646, -5.155740633687565, -2.9363667880360516, + -1.0788379362323826, 0.2901009449106302, 1.3477748142613795, + 2.2408569884863305, 2.9652899264105783, 3.626877502879341, + 4.131458085358488, 4.3818245380954215, 4.320577723431668, + 3.877745970236193, 3.0819678256832943, 2.060798041700866, + 0.9766781892419515, -0.037313468554177824, -0.7627925066730936, + -1.1882492839712113, -1.342590827144182, -1.2904504644009418, + -1.1941240618139954, -1.18615771447954, -1.3376202337838858, + -1.6574373444586046, -2.052156392051978, -2.42071070846458, + -2.625407622216803, -2.5683976745284833, -2.250050341591495, + -1.7371190814178596, -1.1424652939088602, -0.6058470700180232, + -0.2617943168541525, -0.11818299612970232, -0.15180233924225398, + -0.2567896008585918, -0.28887191668700307, -0.1412106624627953, + 0.22954067928050464, 0.7726417746045121, 1.357299256848964, + 1.8483536169987131, 2.07736295579255, 2.031986023785277, + 1.8150142605280086, 1.6540251681460592, 1.8816181500118272, + 2.841909161559032, 4.802074826074228, 7.912310691922299, + 11.861685037763582, 16.516814486758626, 21.294730468778024, + 25.378935255536785 + ], + "pressure:branch93_seg0:J87": [ + 168297.054957227, 187533.09987805184, 197123.50503900493, + 195574.3982133744, 184924.47932317454, 167165.20607030566, + 144616.40338313923, 120200.41234226026, 97524.44092885226, + 76016.73607591275, 57541.26868918767, 41360.96852244361, + 25753.413094152475, 11206.155986355623, -3895.0598815503467, + -18742.928319983366, -32936.884866262306, -46395.54608240665, + -56868.67048346476, -64951.70099031887, -70640.88686352747, + -73734.60145734897, -75534.67174845272, -76422.55218569253, + -76824.64167471071, -76920.77178172328, -76221.26327961912, + -74314.5548496191, -70896.38472242394, -66090.40053978314, + -60371.91197328525, -55302.41747325063, -52128.29090642214, + -52208.522454910795, -56594.749416854684, -65228.99325084762, + -76828.33859387353, -89708.58108296887, -101660.66686648878, + -109546.75393629429, -112184.51479654257, -108517.35478839645, + -98539.66972543835, -83495.49338423548, -66385.96102366185, + -48171.23656577585, -30971.411970689827, -17090.55203877636, + -5502.157865308143, 3107.5998461241898, 9596.579163094086, + 15373.156930137176, 19942.10531037203, 24031.571714792604, + 27226.701476302176, 28534.139418854058, 27770.586502269714, + 24567.392188801492, 19147.681567954773, 12290.6308261464, + 5336.944751290803, -1018.2321915582523, -5540.137986944961, + -7950.246159892706, -8724.771714240711, -8299.77052315576, + -7675.4813813687015, -7746.641533999847, -8901.374209338917, + -11120.818421719716, -13700.040999264202, -15976.937356485576, + -17131.38715156562, -16495.915753006837, -14173.899193209967, + -10704.17018173581, -6875.8805996254305, -3457.866151710761, + -1448.6099971801052, -756.8826460774717, -1068.7999932920739, + -1745.5256969023364, -1836.259872449228, -671.753308975597, + 1920.7001127499886, 5589.517140062281, 9329.972638388554, + 12314.8530175355, 13583.72218694213, 13031.571545061674, + 11537.264846342756, 10699.574506094721, 12709.62091068744, + 19772.78755560709, 33475.31744725802, 54816.805774063985, + 81121.63078424687, 111476.8545124145, 142841.33688082822, 168297.054957227 + ], + "flow:J87:branch93_seg1": [ + 25.378935255536785, 28.572619014531146, 30.229744324768014, + 30.25102466878128, 28.830073829004156, 26.216459278631458, + 22.787547846449648, 19.1093147874526, 15.53443328852629, + 12.148549313525969, 9.285486281995132, 6.710128889928807, + 4.308090364435388, 2.061574188461267, -0.2846154551261123, + -2.552567510348003, -4.771833312304001, -6.8736698772747475, + -8.53431803393198, -9.86093120754518, -10.778611730589114, + -11.302557342467066, -11.613626115432053, -11.760907786225332, + -11.834883350827743, -11.858377325582213, -11.770200426700084, + -11.508741249876804, -11.0205233362366, -10.30292476373164, + -9.437558099067598, -8.633636305949679, -8.076918868271107, + -8.013128228635155, -8.59417139479859, -9.835395639374173, + -11.558830601630806, -13.551219424191888, -15.425200599579881, + -16.738444741589316, -17.290553585790857, -16.85599916613906, + -15.447171940339837, -13.240255488040832, -10.637988289565918, + -7.813116155681646, -5.155740633687565, -2.9363667880360516, + -1.0788379362323826, 0.2901009449106302, 1.3477748142613795, + 2.2408569884863305, 2.9652899264105783, 3.626877502879341, + 4.131458085358488, 4.3818245380954215, 4.320577723431668, + 3.877745970236193, 3.0819678256832943, 2.060798041700866, + 0.9766781892419515, -0.037313468554177824, -0.7627925066730936, + -1.1882492839712113, -1.342590827144182, -1.2904504644009418, + -1.1941240618139954, -1.18615771447954, -1.3376202337838858, + -1.6574373444586046, -2.052156392051978, -2.42071070846458, + -2.625407622216803, -2.5683976745284833, -2.250050341591495, + -1.7371190814178596, -1.1424652939088602, -0.6058470700180232, + -0.2617943168541525, -0.11818299612970232, -0.15180233924225398, + -0.2567896008585918, -0.28887191668700307, -0.1412106624627953, + 0.22954067928050464, 0.7726417746045121, 1.357299256848964, + 1.8483536169987131, 2.07736295579255, 2.031986023785277, + 1.8150142605280086, 1.6540251681460592, 1.8816181500118272, + 2.841909161559032, 4.802074826074228, 7.912310691922299, + 11.861685037763582, 16.516814486758626, 21.294730468778024, + 25.378935255536785 + ], + "pressure:J87:branch93_seg1": [ + 168297.054957227, 187533.09987805184, 197123.50503900493, + 195574.3982133744, 184924.47932317454, 167165.20607030566, + 144616.40338313923, 120200.41234226026, 97524.44092885226, + 76016.73607591275, 57541.26868918767, 41360.96852244361, + 25753.413094152475, 11206.155986355623, -3895.0598815503467, + -18742.928319983366, -32936.884866262306, -46395.54608240665, + -56868.67048346476, -64951.70099031887, -70640.88686352747, + -73734.60145734897, -75534.67174845272, -76422.55218569253, + -76824.64167471071, -76920.77178172328, -76221.26327961912, + -74314.5548496191, -70896.38472242394, -66090.40053978314, + -60371.91197328525, -55302.41747325063, -52128.29090642214, + -52208.522454910795, -56594.749416854684, -65228.99325084762, + -76828.33859387353, -89708.58108296887, -101660.66686648878, + -109546.75393629429, -112184.51479654257, -108517.35478839645, + -98539.66972543835, -83495.49338423548, -66385.96102366185, + -48171.23656577585, -30971.411970689827, -17090.55203877636, + -5502.157865308143, 3107.5998461241898, 9596.579163094086, + 15373.156930137176, 19942.10531037203, 24031.571714792604, + 27226.701476302176, 28534.139418854058, 27770.586502269714, + 24567.392188801492, 19147.681567954773, 12290.6308261464, + 5336.944751290803, -1018.2321915582523, -5540.137986944961, + -7950.246159892706, -8724.771714240711, -8299.77052315576, + -7675.4813813687015, -7746.641533999847, -8901.374209338917, + -11120.818421719716, -13700.040999264202, -15976.937356485576, + -17131.38715156562, -16495.915753006837, -14173.899193209967, + -10704.17018173581, -6875.8805996254305, -3457.866151710761, + -1448.6099971801052, -756.8826460774717, -1068.7999932920739, + -1745.5256969023364, -1836.259872449228, -671.753308975597, + 1920.7001127499886, 5589.517140062281, 9329.972638388554, + 12314.8530175355, 13583.72218694213, 13031.571545061674, + 11537.264846342756, 10699.574506094721, 12709.62091068744, + 19772.78755560709, 33475.31744725802, 54816.805774063985, + 81121.63078424687, 111476.8545124145, 142841.33688082822, 168297.054957227 + ], + "flow:branch93_seg1:J88": [ + 25.36032059887994, 28.562367501173437, 30.225733603510673, + 30.255238681304217, 28.842113816364535, 26.23292599971713, + 22.804715104682, 19.13069306633169, 15.551798103189167, 12.16230036490607, + 9.299925826350142, 6.721251313246949, 4.319459291980584, + 2.0727798374499287, -0.27519353203020797, -2.5414086810436243, + -4.761772038160495, -6.866166207986971, -8.527266424094057, + -9.856344255686343, -10.775741544745282, -11.300569319480779, + -11.612913341586793, -11.760432231353823, -11.83459859261178, + -11.85854319268093, -11.771045592517634, -11.510728217577057, + -11.023908084482382, -10.30710322175586, -9.4420808057648, + -8.637361038419074, -8.078002500836948, -8.01134208309154, + -8.589251678971237, -9.827827896058286, -11.548576646816405, + -13.542221836437236, -15.417728755870945, -16.73423677710592, + -17.291557273131186, -16.861274810095626, -15.45604389050741, + -13.251579958039041, -10.65108051353605, -7.825780218501133, + -5.1671728435254405, -2.946257086504108, -1.0858098558116451, + 0.2842377251327413, 1.34301777447504, 2.236663570868835, + 2.961558176338538, 3.624223228208504, 4.129312462368633, 4.38138989947256, + 4.322224100722741, 3.8812776037652372, 3.0865174874412475, + 2.0669152527063934, 0.981862703497654, -0.033946401670313084, + -0.7599548339932077, -1.187173872826064, -1.3428172204043816, + -1.29086813673403, -1.1943694247490009, -1.1857642981132455, + -1.336400257119242, -1.655687167461749, -2.0502894720216527, + -2.4193885398990287, -2.6251683441987113, -2.5693863639955317, + -2.2523304767029892, -1.7400861972080255, -1.1453364059544646, + -0.6081943850611471, -0.2630115870581579, -0.11814442468773606, + -0.15125196902128693, -0.25644090105861367, -0.2892242018361526, + -0.14274172246271968, 0.22718118563924633, 0.7694241559829257, + 1.3546574257701198, 1.8471564761159922, 2.077094212480787, + 2.032835691560674, 1.816152266412456, 1.653883267641527, + 1.8785532938245086, 2.8344788586203, 4.789696153796939, 7.895262376508051, + 11.840894995660342, 16.49350141184319, 21.272195358009263, + 25.36032059887994 + ], + "pressure:branch93_seg1:J88": [ + 164702.10050247423, 184784.33000718086, 195073.7030341163, + 194645.26006458412, 185016.90914588957, 167915.19822413108, + 145721.3591381797, 121850.73638064163, 98986.51382643942, + 77321.41852510911, 58918.41982558027, 42500.80487588634, + 27020.668803294488, 12557.851501030738, -2522.214692221613, + -17169.99041518024, -31399.0174559819, -44888.762363652786, + -55479.6151005073, -63849.341957636854, -69674.86067323507, + -72944.09687010599, -74876.15710155944, -75801.73582807145, + -76251.09122476303, -76384.71988041399, -75774.3926843233, + -74020.43285839583, -70792.51208839362, -66120.15457317556, + -60509.734579051335, -55379.699418338816, -51937.093072486736, + -51688.76771525114, -55637.229219894485, -63828.644389882145, + -75066.61473812925, -87892.28439533444, -99898.16241478581, + -108147.16969579311, -111391.254953596, -108309.31933939713, + -98950.2807452262, -84484.08627358473, -67648.66361813329, + -49489.72364492776, -32378.404273423494, -18260.98290280337, + -6446.185038021431, 2280.122111072806, 8964.038236197623, + 14714.459588393052, 19335.917995422165, 23530.277176485935, + 26755.290598391624, 28262.953678022644, 27747.518205773875, + 24786.075055855625, 19572.466205798853, 12919.292261225615, + 5958.952452685671, -502.3898412584456, -5111.898380468686, + -7735.854015789241, -8655.304367285013, -8289.057969250982, + -7667.740419543444, -7657.28368612621, -8690.74046911024, + -10800.41587070934, -13349.148040767026, -15684.967874220913, + -16946.9134700771, -16490.239786508933, -14353.773710688623, + -11001.897752270947, -7181.629465033408, -3744.6383762579594, + -1602.8185992313122, -757.5834701542894, -1005.1748510154067, + -1681.04797691693, -1849.1648261110872, -829.890371427914, + 1621.5580106043226, 5167.804757849564, 8918.433213914272, + 12017.129929651588, 13419.123032072972, 13039.70920416475, + 11612.203121241339, 10642.70523862529, 12285.592697741315, + 18748.667952965516, 31705.361881605888, 52136.556088346195, + 77804.09276783992, 107831.9218170888, 138749.59311512727, + 164702.10050247423 + ], + "flow:J88:branch93_seg2": [ + 25.36032059887994, 28.562367501173437, 30.225733603510673, + 30.255238681304217, 28.842113816364535, 26.23292599971713, + 22.804715104682, 19.13069306633169, 15.551798103189167, 12.16230036490607, + 9.299925826350142, 6.721251313246949, 4.319459291980584, + 2.0727798374499287, -0.27519353203020797, -2.5414086810436243, + -4.761772038160495, -6.866166207986971, -8.527266424094057, + -9.856344255686343, -10.775741544745282, -11.300569319480779, + -11.612913341586793, -11.760432231353823, -11.83459859261178, + -11.85854319268093, -11.771045592517634, -11.510728217577057, + -11.023908084482382, -10.30710322175586, -9.4420808057648, + -8.637361038419074, -8.078002500836948, -8.01134208309154, + -8.589251678971237, -9.827827896058286, -11.548576646816405, + -13.542221836437236, -15.417728755870945, -16.73423677710592, + -17.291557273131186, -16.861274810095626, -15.45604389050741, + -13.251579958039041, -10.65108051353605, -7.825780218501133, + -5.1671728435254405, -2.946257086504108, -1.0858098558116451, + 0.2842377251327413, 1.34301777447504, 2.236663570868835, + 2.961558176338538, 3.624223228208504, 4.129312462368633, 4.38138989947256, + 4.322224100722741, 3.8812776037652372, 3.0865174874412475, + 2.0669152527063934, 0.981862703497654, -0.033946401670313084, + -0.7599548339932077, -1.187173872826064, -1.3428172204043816, + -1.29086813673403, -1.1943694247490009, -1.1857642981132455, + -1.336400257119242, -1.655687167461749, -2.0502894720216527, + -2.4193885398990287, -2.6251683441987113, -2.5693863639955317, + -2.2523304767029892, -1.7400861972080255, -1.1453364059544646, + -0.6081943850611471, -0.2630115870581579, -0.11814442468773606, + -0.15125196902128693, -0.25644090105861367, -0.2892242018361526, + -0.14274172246271968, 0.22718118563924633, 0.7694241559829257, + 1.3546574257701198, 1.8471564761159922, 2.077094212480787, + 2.032835691560674, 1.816152266412456, 1.653883267641527, + 1.8785532938245086, 2.8344788586203, 4.789696153796939, 7.895262376508051, + 11.840894995660342, 16.49350141184319, 21.272195358009263, + 25.36032059887994 + ], + "pressure:J88:branch93_seg2": [ + 164702.10050247423, 184784.33000718086, 195073.7030341163, + 194645.26006458412, 185016.90914588957, 167915.19822413108, + 145721.3591381797, 121850.73638064163, 98986.51382643942, + 77321.41852510911, 58918.41982558027, 42500.80487588634, + 27020.668803294488, 12557.851501030738, -2522.214692221613, + -17169.99041518024, -31399.0174559819, -44888.762363652786, + -55479.6151005073, -63849.341957636854, -69674.86067323507, + -72944.09687010599, -74876.15710155944, -75801.73582807145, + -76251.09122476303, -76384.71988041399, -75774.3926843233, + -74020.43285839583, -70792.51208839362, -66120.15457317556, + -60509.734579051335, -55379.699418338816, -51937.093072486736, + -51688.76771525114, -55637.229219894485, -63828.644389882145, + -75066.61473812925, -87892.28439533444, -99898.16241478581, + -108147.16969579311, -111391.254953596, -108309.31933939713, + -98950.2807452262, -84484.08627358473, -67648.66361813329, + -49489.72364492776, -32378.404273423494, -18260.98290280337, + -6446.185038021431, 2280.122111072806, 8964.038236197623, + 14714.459588393052, 19335.917995422165, 23530.277176485935, + 26755.290598391624, 28262.953678022644, 27747.518205773875, + 24786.075055855625, 19572.466205798853, 12919.292261225615, + 5958.952452685671, -502.3898412584456, -5111.898380468686, + -7735.854015789241, -8655.304367285013, -8289.057969250982, + -7667.740419543444, -7657.28368612621, -8690.74046911024, + -10800.41587070934, -13349.148040767026, -15684.967874220913, + -16946.9134700771, -16490.239786508933, -14353.773710688623, + -11001.897752270947, -7181.629465033408, -3744.6383762579594, + -1602.8185992313122, -757.5834701542894, -1005.1748510154067, + -1681.04797691693, -1849.1648261110872, -829.890371427914, + 1621.5580106043226, 5167.804757849564, 8918.433213914272, + 12017.129929651588, 13419.123032072972, 13039.70920416475, + 11612.203121241339, 10642.70523862529, 12285.592697741315, + 18748.667952965516, 31705.361881605888, 52136.556088346195, + 77804.09276783992, 107831.9218170888, 138749.59311512727, + 164702.10050247423 + ], + "flow:branch96_seg0:J89": [ + 28.478892476052273, 32.73016084425153, 35.404632882494255, + 36.282565217279505, 35.412262019460165, 33.006338905360266, + 29.462498032514887, 25.375597114705688, 21.15832180724868, + 17.07822323364537, 13.46732339658992, 10.175150386733534, + 7.143633342175618, 4.286558839169883, 1.3814318428782515, + -1.4542435938322351, -4.2675099752865915, -6.935537824855838, + -9.17678431123337, -11.030899134340483, -12.389313597177242, + -13.273937592475074, -13.839076871142897, -14.160664404888424, + -14.352768972168192, -14.456307788287882, -14.43102780727029, + -14.214628628719076, -13.741490684665022, -12.991362345989861, + -12.037235033429665, -11.075546861844858, -10.323721035115964, + -10.063318646197839, -10.493184445325493, -11.682845950334315, + -13.499237474412197, -15.72835086464345, -17.94434246202452, + -19.68035040766366, -20.626817445962434, -20.491174854663658, + -19.228979078746363, -16.98215225061388, -14.125330327628875, + -10.898996062446493, -7.743993803150729, -4.963189246995775, + -2.5905949491746405, -0.7553544472993852, 0.6934238428231936, + 1.887840196005383, 2.873339007715695, 3.7536777196544127, + 4.459982374001774, 4.904350482303121, 5.001768223221771, + 4.669435618712842, 3.9145230127389783, 2.8495331813137965, + 1.6334388642291593, 0.44222302875617475, -0.493883764682935, + -1.120176865402554, -1.4212392430139118, -1.4605798039337603, + -1.3987896815871483, -1.3854624904186381, -1.5231256800509383, + -1.8461062034763853, -2.2818829543385966, -2.7257595717253027, + -3.024520708878771, -3.0587513891052307, -2.7968924335995844, + -2.285837197256153, -1.6364989214375976, -1.0039243995929885, + -0.5387233789608834, -0.2895882771726637, -0.25278941298332447, + -0.33022523710551555, -0.37296184935219373, -0.25075017575945985, + 0.10968754781748949, 0.6809803090111785, 1.3474649699076566, + 1.9538825314225616, 2.314425127396919, 2.3786077179688845, + 2.211472438544044, 2.0314641120704846, 2.187595950283218, + 3.07045624541765, 5.020217842591346, 8.246250342015587, + 12.550329481108498, 17.79036822705973, 23.365109223159767, + 28.478892476052273 + ], + "pressure:branch96_seg0:J89": [ + 149767.5553724324, 170325.46477251555, 182783.66382740412, + 185574.70641772766, 179615.3334301145, 166279.8302465242, + 147558.99957103725, 126034.92211482866, 104746.74154514963, + 84207.55433956858, 65888.42745538015, 49495.08655942534, + 34049.61651215251, 19491.589898470695, 4709.576327102576, + -9881.853301489098, -24159.524979825415, -37618.747103745016, + -48744.38269978624, -57768.503323625206, -64372.494139684924, + -68526.97515166327, -71160.60782258412, -72668.96160503561, + -73549.3341663138, -74006.13300155675, -73742.12367275081, + -72430.58504916151, -69758.18780006756, -65731.78040726502, + -60708.69500863101, -55879.53920902451, -52384.887262590775, + -51518.85970721696, -54343.87362765495, -61052.52404430874, + -70831.44156326265, -82348.53179066684, -93549.5644973377, + -101876.9579250871, -105843.8712159014, -104250.25715341314, + -96867.26185327045, -84570.71341864855, -69611.64577998217, + -53028.930212902866, -36927.7323119397, -23175.12682833216, + -11455.71075028084, -2422.1599932375243, 4615.790340455881, + 10639.870355480063, 15503.856903275382, 19838.719201554486, + 23354.51445216428, 25326.044360166405, 25472.542465168382, + 23421.61268867467, 19253.316692894376, 13545.093558659755, + 7318.667635956001, 1380.4709381486716, -3227.9075632521863, + -6108.012162504741, -7391.425697411257, -7451.610584740294, + -7099.005757418277, -7122.53146671603, -7985.695925848391, + -9791.12828551946, -12066.513330742811, -14270.202185247272, + -15640.168880496036, -15554.096249128826, -13952.260403609864, + -11164.774786574108, -7816.766490436964, -4619.139143173654, + -2441.491028587319, -1389.7119549817635, -1324.011860100153, + -1757.4334173319264, -1891.962195371784, -1083.1641208996105, + 956.3858724691289, 4041.3990325260083, 7451.601412998111, + 10402.324106241189, 12036.77550999791, 12103.257137248347, + 11113.646324534307, 10319.950432807582, 11569.908412492816, + 16861.12270548784, 27828.722058066127, 45514.42954442295, + 68315.77809218966, 95570.49717997716, 124486.34994864055, + 149767.5553724324 + ], + "flow:J89:branch96_seg1": [ + 28.478892476052273, 32.73016084425153, 35.404632882494255, + 36.282565217279505, 35.412262019460165, 33.006338905360266, + 29.462498032514887, 25.375597114705688, 21.15832180724868, + 17.07822323364537, 13.46732339658992, 10.175150386733534, + 7.143633342175618, 4.286558839169883, 1.3814318428782515, + -1.4542435938322351, -4.2675099752865915, -6.935537824855838, + -9.17678431123337, -11.030899134340483, -12.389313597177242, + -13.273937592475074, -13.839076871142897, -14.160664404888424, + -14.352768972168192, -14.456307788287882, -14.43102780727029, + -14.214628628719076, -13.741490684665022, -12.991362345989861, + -12.037235033429665, -11.075546861844858, -10.323721035115964, + -10.063318646197839, -10.493184445325493, -11.682845950334315, + -13.499237474412197, -15.72835086464345, -17.94434246202452, + -19.68035040766366, -20.626817445962434, -20.491174854663658, + -19.228979078746363, -16.98215225061388, -14.125330327628875, + -10.898996062446493, -7.743993803150729, -4.963189246995775, + -2.5905949491746405, -0.7553544472993852, 0.6934238428231936, + 1.887840196005383, 2.873339007715695, 3.7536777196544127, + 4.459982374001774, 4.904350482303121, 5.001768223221771, + 4.669435618712842, 3.9145230127389783, 2.8495331813137965, + 1.6334388642291593, 0.44222302875617475, -0.493883764682935, + -1.120176865402554, -1.4212392430139118, -1.4605798039337603, + -1.3987896815871483, -1.3854624904186381, -1.5231256800509383, + -1.8461062034763853, -2.2818829543385966, -2.7257595717253027, + -3.024520708878771, -3.0587513891052307, -2.7968924335995844, + -2.285837197256153, -1.6364989214375976, -1.0039243995929885, + -0.5387233789608834, -0.2895882771726637, -0.25278941298332447, + -0.33022523710551555, -0.37296184935219373, -0.25075017575945985, + 0.10968754781748949, 0.6809803090111785, 1.3474649699076566, + 1.9538825314225616, 2.314425127396919, 2.3786077179688845, + 2.211472438544044, 2.0314641120704846, 2.187595950283218, + 3.07045624541765, 5.020217842591346, 8.246250342015587, + 12.550329481108498, 17.79036822705973, 23.365109223159767, + 28.478892476052273 + ], + "pressure:J89:branch96_seg1": [ + 149767.5553724324, 170325.46477251555, 182783.66382740412, + 185574.70641772766, 179615.3334301145, 166279.8302465242, + 147558.99957103725, 126034.92211482866, 104746.74154514963, + 84207.55433956858, 65888.42745538015, 49495.08655942534, + 34049.61651215251, 19491.589898470695, 4709.576327102576, + -9881.853301489098, -24159.524979825415, -37618.747103745016, + -48744.38269978624, -57768.503323625206, -64372.494139684924, + -68526.97515166327, -71160.60782258412, -72668.96160503561, + -73549.3341663138, -74006.13300155675, -73742.12367275081, + -72430.58504916151, -69758.18780006756, -65731.78040726502, + -60708.69500863101, -55879.53920902451, -52384.887262590775, + -51518.85970721696, -54343.87362765495, -61052.52404430874, + -70831.44156326265, -82348.53179066684, -93549.5644973377, + -101876.9579250871, -105843.8712159014, -104250.25715341314, + -96867.26185327045, -84570.71341864855, -69611.64577998217, + -53028.930212902866, -36927.7323119397, -23175.12682833216, + -11455.71075028084, -2422.1599932375243, 4615.790340455881, + 10639.870355480063, 15503.856903275382, 19838.719201554486, + 23354.51445216428, 25326.044360166405, 25472.542465168382, + 23421.61268867467, 19253.316692894376, 13545.093558659755, + 7318.667635956001, 1380.4709381486716, -3227.9075632521863, + -6108.012162504741, -7391.425697411257, -7451.610584740294, + -7099.005757418277, -7122.53146671603, -7985.695925848391, + -9791.12828551946, -12066.513330742811, -14270.202185247272, + -15640.168880496036, -15554.096249128826, -13952.260403609864, + -11164.774786574108, -7816.766490436964, -4619.139143173654, + -2441.491028587319, -1389.7119549817635, -1324.011860100153, + -1757.4334173319264, -1891.962195371784, -1083.1641208996105, + 956.3858724691289, 4041.3990325260083, 7451.601412998111, + 10402.324106241189, 12036.77550999791, 12103.257137248347, + 11113.646324534307, 10319.950432807582, 11569.908412492816, + 16861.12270548784, 27828.722058066127, 45514.42954442295, + 68315.77809218966, 95570.49717997716, 124486.34994864055, + 149767.5553724324 + ], + "flow:branch96_seg1:J90": [ + 28.464837905742048, 32.72051509249377, 35.39964400385925, + 36.283398772174095, 35.41862099214687, 33.016176085756214, + 29.473924523473993, 25.389784110218905, 21.170282325678883, + 17.088604833358563, 13.47786553665915, 10.183660918959115, + 7.152096405409449, 4.294827912594502, 1.3887736380898497, + -1.4458751752210315, -4.259613759567737, -6.9292736468316, + -9.17087956045118, -11.0265694295398, -12.386381312306803, + -13.271892496918186, -13.838012102394229, -14.159982108887647, + -14.352319069057991, -14.456206195312598, -14.431419261994806, + -14.215767872695908, -13.743582859670191, -12.99407515027873, + -12.040358974105395, -11.078213965550997, -10.324943148181319, + -10.062738840350681, -10.490461123331077, -11.678183594581125, + -13.492676155725691, -15.722037225764174, -17.93878273107262, + -19.67667573531729, -20.626418753011126, -20.49370778018058, + -19.23442639837866, -16.98961412069509, -14.134435964773505, + -10.908392082623937, -7.752633063758133, -4.970779280239135, + -2.5964438399105583, -0.7601285639728479, 0.6895271832730089, + 1.8844694952209373, 2.870557866118365, 3.7514144028776433, + 4.458142960028308, 4.903671800919526, 5.002395486103257, + 4.671348280656389, 3.9173239387143317, 2.85339494880494, + 1.6369328765812095, 0.44482580899045454, -0.49159259670374666, + -1.11905842617333, -1.4210462825791799, -1.4606874255789215, + -1.3989252685194569, -1.3852651090768129, -1.5223819284134898, + -1.8449508738070315, -2.2805389578102697, -2.7246422842763156, + -3.0240936911019944, -3.0591853419099024, -2.798228367559974, + -2.287758939162016, -1.6385047472507583, -1.0056850150240677, + -0.5397123955165439, -0.28981903819803173, -0.25258957991961484, + -0.33000757970443007, -0.3731144904858631, -0.25160811527084104, + 0.10822543038742695, 0.6789219633968613, 1.345610512136188, + 1.9527894005134827, 2.31390099023189, 2.3789173831284622, + 2.2121337943404993, 2.031540274864273, 2.185957055891798, + 3.066067177064307, 5.012290746369105, 8.234930361132882, + 12.53596192819413, 17.773474369673718, 23.348443234993677, + 28.464837905742048 + ], + "pressure:branch96_seg1:J90": [ + 146602.55287975966, 167662.20087972228, 180693.529022321, + 184373.1327219638, 179258.7386108602, 166559.49021087252, + 148275.8712727467, 127226.22080766654, 105918.68309727433, + 85335.57935394521, 67059.26643181356, 50532.25074613627, + 35157.36122383393, 20664.861810259896, 5935.863100412626, + -8508.651675171754, -22753.472236269714, -36229.06289372041, + -47457.980295815, -56668.735750583575, -63414.793638208466, + -67738.25510175974, -70492.99168067514, -72064.36607536732, + -72993.43528092066, -73487.19593943616, -73297.5564941639, + -72104.84860311606, -69585.83919816118, -65687.64788786761, + -60773.677702823494, -55927.635251012296, -52267.040803580996, + -51156.147720928, -53627.6157438793, -59959.87699100974, + -69412.83911924798, -80797.48275151697, -91999.18380540019, + -100569.27965767865, -104980.58624082734, -103879.18554160712, + -97039.09432089352, -85248.88039505934, -70575.00330994264, + -54142.464444640595, -38121.984844533676, -24209.422546685193, + -12340.91067038822, -3177.132985498224, 4012.445539116974, + 10045.072012116798, 14971.863107556215, 19368.317523947695, + 22914.020178703424, 25034.771307447176, 25369.120197797594, + 23519.93059260175, 19542.01818576342, 14011.233329002667, + 7825.954515215465, 1841.551077054404, -2831.9770937826547, + -5867.083772373405, -7279.688620576415, -7414.0455438958015, + -7082.75356566747, -7056.930321769154, -7829.475170405315, + -9541.838670786306, -11777.511091643375, -14002.685782936642, + -15449.309207537593, -15503.308552833487, -14052.287945300657, + -11375.553098633387, -8063.551096036195, -4865.449875476499, + -2593.5214326774285, -1429.4491357867078, -1298.3904286475163, + -1709.5988169579487, -1888.6983512126064, -1183.9222000389873, + 737.9460755814565, 3715.60047359831, 7104.485234357199, 10118.25059250074, + 11853.778167329152, 12059.64668593684, 11147.878666443876, + 10290.463209496736, 11289.923609074458, 16131.505557991859, + 26495.709704442615, 43437.19641270762, 65668.27894977835, + 92498.73038783637, 121021.89736617033, 146602.55287975966 + ], + "flow:J90:branch96_seg2": [ + 28.464837905742048, 32.72051509249377, 35.39964400385925, + 36.283398772174095, 35.41862099214687, 33.016176085756214, + 29.473924523473993, 25.389784110218905, 21.170282325678883, + 17.088604833358563, 13.47786553665915, 10.183660918959115, + 7.152096405409449, 4.294827912594502, 1.3887736380898497, + -1.4458751752210315, -4.259613759567737, -6.9292736468316, + -9.17087956045118, -11.0265694295398, -12.386381312306803, + -13.271892496918186, -13.838012102394229, -14.159982108887647, + -14.352319069057991, -14.456206195312598, -14.431419261994806, + -14.215767872695908, -13.743582859670191, -12.99407515027873, + -12.040358974105395, -11.078213965550997, -10.324943148181319, + -10.062738840350681, -10.490461123331077, -11.678183594581125, + -13.492676155725691, -15.722037225764174, -17.93878273107262, + -19.67667573531729, -20.626418753011126, -20.49370778018058, + -19.23442639837866, -16.98961412069509, -14.134435964773505, + -10.908392082623937, -7.752633063758133, -4.970779280239135, + -2.5964438399105583, -0.7601285639728479, 0.6895271832730089, + 1.8844694952209373, 2.870557866118365, 3.7514144028776433, + 4.458142960028308, 4.903671800919526, 5.002395486103257, + 4.671348280656389, 3.9173239387143317, 2.85339494880494, + 1.6369328765812095, 0.44482580899045454, -0.49159259670374666, + -1.11905842617333, -1.4210462825791799, -1.4606874255789215, + -1.3989252685194569, -1.3852651090768129, -1.5223819284134898, + -1.8449508738070315, -2.2805389578102697, -2.7246422842763156, + -3.0240936911019944, -3.0591853419099024, -2.798228367559974, + -2.287758939162016, -1.6385047472507583, -1.0056850150240677, + -0.5397123955165439, -0.28981903819803173, -0.25258957991961484, + -0.33000757970443007, -0.3731144904858631, -0.25160811527084104, + 0.10822543038742695, 0.6789219633968613, 1.345610512136188, + 1.9527894005134827, 2.31390099023189, 2.3789173831284622, + 2.2121337943404993, 2.031540274864273, 2.185957055891798, + 3.066067177064307, 5.012290746369105, 8.234930361132882, + 12.53596192819413, 17.773474369673718, 23.348443234993677, + 28.464837905742048 + ], + "pressure:J90:branch96_seg2": [ + 146602.55287975966, 167662.20087972228, 180693.529022321, + 184373.1327219638, 179258.7386108602, 166559.49021087252, + 148275.8712727467, 127226.22080766654, 105918.68309727433, + 85335.57935394521, 67059.26643181356, 50532.25074613627, + 35157.36122383393, 20664.861810259896, 5935.863100412626, + -8508.651675171754, -22753.472236269714, -36229.06289372041, + -47457.980295815, -56668.735750583575, -63414.793638208466, + -67738.25510175974, -70492.99168067514, -72064.36607536732, + -72993.43528092066, -73487.19593943616, -73297.5564941639, + -72104.84860311606, -69585.83919816118, -65687.64788786761, + -60773.677702823494, -55927.635251012296, -52267.040803580996, + -51156.147720928, -53627.6157438793, -59959.87699100974, + -69412.83911924798, -80797.48275151697, -91999.18380540019, + -100569.27965767865, -104980.58624082734, -103879.18554160712, + -97039.09432089352, -85248.88039505934, -70575.00330994264, + -54142.464444640595, -38121.984844533676, -24209.422546685193, + -12340.91067038822, -3177.132985498224, 4012.445539116974, + 10045.072012116798, 14971.863107556215, 19368.317523947695, + 22914.020178703424, 25034.771307447176, 25369.120197797594, + 23519.93059260175, 19542.01818576342, 14011.233329002667, + 7825.954515215465, 1841.551077054404, -2831.9770937826547, + -5867.083772373405, -7279.688620576415, -7414.0455438958015, + -7082.75356566747, -7056.930321769154, -7829.475170405315, + -9541.838670786306, -11777.511091643375, -14002.685782936642, + -15449.309207537593, -15503.308552833487, -14052.287945300657, + -11375.553098633387, -8063.551096036195, -4865.449875476499, + -2593.5214326774285, -1429.4491357867078, -1298.3904286475163, + -1709.5988169579487, -1888.6983512126064, -1183.9222000389873, + 737.9460755814565, 3715.60047359831, 7104.485234357199, 10118.25059250074, + 11853.778167329152, 12059.64668593684, 11147.878666443876, + 10290.463209496736, 11289.923609074458, 16131.505557991859, + 26495.709704442615, 43437.19641270762, 65668.27894977835, + 92498.73038783637, 121021.89736617033, 146602.55287975966 + ], + "flow:branch102_seg0:J91": [ + 53.29921117376382, 60.414331128398985, 64.39264768401777, + 64.9431181412212, 62.36175751357459, 57.137108464335874, + 50.04980849045341, 42.26789626418891, 34.56193875569654, + 27.22442783254618, 20.926791367273466, 15.256801662227213, + 10.003083252779758, 5.080617647082582, -0.00695523681698698, + -4.948784019642467, -9.80284435862823, -14.397101005826466, + -18.10313950125501, -21.078444949858085, -23.160227769253332, + -24.38603051281235, -25.10644535568317, -25.448415420049002, + -25.611567557416247, -25.655595462212318, -25.469998044380265, + -24.926195447153383, -23.90638907533563, -22.394024840667882, + -20.550077092138153, -18.792857097908854, -17.524232059344026, + -17.26548284443895, -18.35389222283406, -20.852786154371117, + -24.42368062119364, -28.620868469748537, -32.63171134387454, + -35.53679987895527, -36.85640803569107, -36.1020958704562, + -33.27111126317187, -28.710963522005652, -23.227771930413834, + -17.2330957862277, -11.540954525327919, -6.718960148515678, + -2.6852070042321072, 0.3226054660028297, 2.6451037075259767, + 4.577777014110387, 6.151063881758398, 7.574217653803958, + 8.676684137735275, 9.264979318072204, 9.203127882440576, + 8.342292314686137, 6.7269379890651395, 4.605946379850082, + 2.311020433379757, 0.13906013038864387, -1.4619605419238262, + -2.4379166513434996, -2.8247904476137657, -2.7572859280432223, + -2.564609626761814, -2.5295318515068206, -2.8173018371355933, + -3.460781204709457, -4.2828711367343875, -5.072291545489113, + -5.539776281180116, -5.472796348053155, -4.851768800679424, + -3.8021977510988503, -2.5546062232314375, -1.4034432839400135, + -0.6317056897370229, -0.2822712681914269, -0.3168968923337636, + -0.5235501492545276, -0.6052689753595106, -0.32883040832525184, + 0.41204028434046824, 1.528613935318781, 2.7622269987230115, + 3.8246475609653263, 4.363874117100856, 4.328556934346426, + 3.9056158282299416, 3.5531367485242744, 3.957711942335489, + 5.847368354021867, 9.809307280558032, 16.181867266844158, + 24.41138904764266, 34.20524980679315, 44.37941840783964, 53.29921117376382 + ], + "pressure:branch102_seg0:J91": [ + 169374.11370050808, 188335.7206723653, 198295.86154567683, + 196759.17327940394, 186167.6900854203, 168598.2563756226, + 146307.5384805038, 121568.04874383996, 98759.02206703882, + 77287.76266769749, 58394.84561911552, 42039.32328594066, + 26099.964097707732, 11141.003220232293, -4196.32844904907, + -19358.744757526743, -33840.922524287795, -47579.887605471326, + -58137.86228204537, -66219.15639789344, -72015.35296170505, + -75080.18694277166, -76846.10944090561, -77707.48019954991, + -78032.29266275218, -78068.25882849496, -77263.1047294435, + -75217.18388053951, -71643.25616075264, -66733.4559502157, + -60900.67590753901, -55779.36424213567, -52703.21453693683, + -52823.428450087915, -57324.368913601465, -66086.2777039985, + -77761.34178997859, -90609.70256325809, -102461.59368151662, + -110126.77102817455, -112376.0807089767, -108390.48043237983, + -98106.32871245466, -82698.00082642073, -65627.33222726636, + -47538.15116725145, -30220.771061156862, -16610.281282671895, + -5173.521998634769, 3394.547471760427, 9690.906682128367, + 15549.06452265518, 20072.529235593178, 24009.334626683194, + 27232.49509427243, 28452.287665962678, 27582.48440590771, + 24338.27913062776, 18896.47648313215, 12009.820490681304, + 5071.385063540939, -1159.5017190053904, -5636.113248515081, + -7966.693161399006, -8686.33255172733, -8268.985784238963, + -7656.2475924137025, -7768.2681100234695, -8969.432759387395, + -11228.184912938937, -13769.125210710281, -15971.943613923147, + -17090.61690464377, -16377.123333415484, -13995.34949126263, + -10514.622571589103, -6756.874303599943, -3347.9841953967493, + -1401.9266589510992, -800.7544654890543, -1095.0380646178407, + -1748.1336316534828, -1797.3688594560303, -582.2720257805622, + 2043.0499596142402, 5721.591040930932, 9436.177354290858, + 12328.54372817453, 13534.37363434178, 12929.81419392283, + 11433.316594941247, 10702.704357534383, 12895.975888381057, + 20205.474755508432, 34126.39311951813, 55855.574012138364, + 82171.54232461491, 112228.57262367515, 144192.24605148047, + 169374.11370050808 + ], + "flow:J91:branch102_seg1": [ + 53.29921117376382, 60.414331128398985, 64.39264768401777, + 64.9431181412212, 62.36175751357459, 57.137108464335874, + 50.04980849045341, 42.26789626418891, 34.56193875569654, + 27.22442783254618, 20.926791367273466, 15.256801662227213, + 10.003083252779758, 5.080617647082582, -0.00695523681698698, + -4.948784019642467, -9.80284435862823, -14.397101005826466, + -18.10313950125501, -21.078444949858085, -23.160227769253332, + -24.38603051281235, -25.10644535568317, -25.448415420049002, + -25.611567557416247, -25.655595462212318, -25.469998044380265, + -24.926195447153383, -23.90638907533563, -22.394024840667882, + -20.550077092138153, -18.792857097908854, -17.524232059344026, + -17.26548284443895, -18.35389222283406, -20.852786154371117, + -24.42368062119364, -28.620868469748537, -32.63171134387454, + -35.53679987895527, -36.85640803569107, -36.1020958704562, + -33.27111126317187, -28.710963522005652, -23.227771930413834, + -17.2330957862277, -11.540954525327919, -6.718960148515678, + -2.6852070042321072, 0.3226054660028297, 2.6451037075259767, + 4.577777014110387, 6.151063881758398, 7.574217653803958, + 8.676684137735275, 9.264979318072204, 9.203127882440576, + 8.342292314686137, 6.7269379890651395, 4.605946379850082, + 2.311020433379757, 0.13906013038864387, -1.4619605419238262, + -2.4379166513434996, -2.8247904476137657, -2.7572859280432223, + -2.564609626761814, -2.5295318515068206, -2.8173018371355933, + -3.460781204709457, -4.2828711367343875, -5.072291545489113, + -5.539776281180116, -5.472796348053155, -4.851768800679424, + -3.8021977510988503, -2.5546062232314375, -1.4034432839400135, + -0.6317056897370229, -0.2822712681914269, -0.3168968923337636, + -0.5235501492545276, -0.6052689753595106, -0.32883040832525184, + 0.41204028434046824, 1.528613935318781, 2.7622269987230115, + 3.8246475609653263, 4.363874117100856, 4.328556934346426, + 3.9056158282299416, 3.5531367485242744, 3.957711942335489, + 5.847368354021867, 9.809307280558032, 16.181867266844158, + 24.41138904764266, 34.20524980679315, 44.37941840783964, 53.29921117376382 + ], + "pressure:J91:branch102_seg1": [ + 169374.11370050808, 188335.7206723653, 198295.86154567683, + 196759.17327940394, 186167.6900854203, 168598.2563756226, + 146307.5384805038, 121568.04874383996, 98759.02206703882, + 77287.76266769749, 58394.84561911552, 42039.32328594066, + 26099.964097707732, 11141.003220232293, -4196.32844904907, + -19358.744757526743, -33840.922524287795, -47579.887605471326, + -58137.86228204537, -66219.15639789344, -72015.35296170505, + -75080.18694277166, -76846.10944090561, -77707.48019954991, + -78032.29266275218, -78068.25882849496, -77263.1047294435, + -75217.18388053951, -71643.25616075264, -66733.4559502157, + -60900.67590753901, -55779.36424213567, -52703.21453693683, + -52823.428450087915, -57324.368913601465, -66086.2777039985, + -77761.34178997859, -90609.70256325809, -102461.59368151662, + -110126.77102817455, -112376.0807089767, -108390.48043237983, + -98106.32871245466, -82698.00082642073, -65627.33222726636, + -47538.15116725145, -30220.771061156862, -16610.281282671895, + -5173.521998634769, 3394.547471760427, 9690.906682128367, + 15549.06452265518, 20072.529235593178, 24009.334626683194, + 27232.49509427243, 28452.287665962678, 27582.48440590771, + 24338.27913062776, 18896.47648313215, 12009.820490681304, + 5071.385063540939, -1159.5017190053904, -5636.113248515081, + -7966.693161399006, -8686.33255172733, -8268.985784238963, + -7656.2475924137025, -7768.2681100234695, -8969.432759387395, + -11228.184912938937, -13769.125210710281, -15971.943613923147, + -17090.61690464377, -16377.123333415484, -13995.34949126263, + -10514.622571589103, -6756.874303599943, -3347.9841953967493, + -1401.9266589510992, -800.7544654890543, -1095.0380646178407, + -1748.1336316534828, -1797.3688594560303, -582.2720257805622, + 2043.0499596142402, 5721.591040930932, 9436.177354290858, + 12328.54372817453, 13534.37363434178, 12929.81419392283, + 11433.316594941247, 10702.704357534383, 12895.975888381057, + 20205.474755508432, 34126.39311951813, 55855.574012138364, + 82171.54232461491, 112228.57262367515, 144192.24605148047, + 169374.11370050808 + ], + "flow:branch102_seg1:J92": [ + 53.19731335373872, 60.35584983941978, 64.37096877409301, + 64.96542065738365, 62.42965801466653, 57.226514028642065, + 50.136820227945584, 42.38703154811259, 34.65502518881689, + 27.290501096046565, 21.004598326594024, 15.316280821000667, + 10.061941324828496, 5.143230491185677, 0.03895754685088417, + -4.888862088489456, -9.739754691766874, -14.359254952995455, + -18.063696023432364, -21.05023812631117, -23.14450280060121, + -24.373590727811617, -25.102045096098085, -25.446222271021693, + -25.609657566647414, -25.65665690164822, -25.47533949014847, + -24.937668654797534, -23.926230230453996, -22.417140580501677, + -20.575190247608223, -18.812493680919474, -17.52836124074434, + -17.25485483260192, -18.32720479548238, -20.81459371786055, + -24.368791992161967, -28.57303443833285, -32.59552629227488, + -35.51390760798459, -36.863916502752716, -36.131476587571186, + -33.321838230951265, -28.77141261747495, -23.300149758842295, + -17.30728384826348, -11.604670779199438, -6.775692632278048, + -2.7250883235088983, 0.2906483363913043, 2.617328592245412, + 4.55286581682998, 6.131949608552044, 7.56038762178852, 8.664990699566964, + 9.263229590370967, 9.212880320575488, 8.361822993647538, + 6.750433145047236, 4.6386922240246395, 2.338823721730437, + 0.15288066503234962, -1.44704136465679, -2.431342453206771, + -2.826638058269744, -2.7594504749542486, -2.565609094854861, + -2.527361463308165, -2.810375302802344, -3.4512737833733795, + -4.272670149964042, -5.064313133404907, -5.538575321712657, + -5.478569049360817, -4.864576686133141, -3.819099759460242, + -2.570441441860868, -1.4167648313957626, -0.637569094443127, + -0.28151117563809175, -0.3137771704547241, -0.5219096806434844, + -0.6076360213896951, -0.33726953583591174, 0.39972102346012617, + 1.5117748485374598, 2.748093751190537, 3.8204530493620985, + 4.362617244752849, 4.33261672790896, 3.9113679102892314, + 3.552120425391092, 3.9404521640434975, 5.806317619504959, + 9.73771801232699, 16.08700145194396, 24.29564899520191, 34.0665085726803, + 44.24814845185578, 53.19731335373872 + ], + "pressure:branch102_seg1:J92": [ + 162154.818380568, 183177.40111001531, 194830.33810118763, + 195927.03296745618, 187674.73612499007, 171605.76428599303, + 150051.7821892657, 126419.4204833563, 103222.19952620567, + 81182.87218622027, 62259.343018208674, 45284.20789742504, + 29432.733727161845, 14585.712531917308, -786.6000927893665, + -15694.245468375655, -30279.34622565235, -44164.66288822062, + -55194.8789104162, -63999.999757181045, -70203.29964206068, + -73770.82768078346, -75876.3377198535, -76876.23753639463, + -77332.84182395307, -77452.78821888499, -76852.62103376957, + -75144.0275837277, -71987.47889438599, -67365.29474580818, + -61756.83050934266, -56485.47243371573, -52781.322957235956, + -52153.499094843595, -55649.06151307292, -63408.06821102477, + -74315.22381979221, -87021.0296933257, -99084.50568164742, + -107640.10328436553, -111328.61659098182, -108750.05708333822, + -99905.23806657745, -85838.49277722035, -69236.4897554617, + -51177.362178290445, -33966.43316901582, -19618.231250692937, + -7574.5614833665495, 1401.8842804907226, 8259.63847545137, + 14097.222674488172, 18805.605406286337, 23031.736781716892, + 26337.85003663976, 28019.013780056895, 27717.97949012925, + 25012.76500880442, 20035.16780472724, 13565.213082488179, + 6633.347743229438, 120.28323879096061, -4625.967140336003, + -7458.64012898582, -8551.51698747266, -8303.531625833, -7713.146418120102, + -7645.33066871223, -8570.651464033886, -10570.3482270021, + -13058.407191919247, -15404.906172559191, -16769.625515832115, + -16477.511704734436, -14516.87770893515, -11298.38761418612, + -7537.852213636483, -4075.923438116243, -1811.991303582065, + -837.8907403428568, -976.1179170216218, -1609.0262659969512, + -1823.9803107421717, -926.2285117112259, 1378.7890660231603, + 4797.022618373243, 8520.08263318806, 11681.186125651435, + 13224.336502071972, 13026.222029397624, 11709.340906100737, + 10700.029985637493, 12082.781673249325, 18055.583546104608, + 30331.186080131516, 50004.45483659536, 75061.94595076244, + 104618.81906536907, 135568.32884673998, 162154.818380568 + ], + "flow:J92:branch102_seg2": [ + 53.19731335373872, 60.35584983941978, 64.37096877409301, + 64.96542065738365, 62.42965801466653, 57.226514028642065, + 50.136820227945584, 42.38703154811259, 34.65502518881689, + 27.290501096046565, 21.004598326594024, 15.316280821000667, + 10.061941324828496, 5.143230491185677, 0.03895754685088417, + -4.888862088489456, -9.739754691766874, -14.359254952995455, + -18.063696023432364, -21.05023812631117, -23.14450280060121, + -24.373590727811617, -25.102045096098085, -25.446222271021693, + -25.609657566647414, -25.65665690164822, -25.47533949014847, + -24.937668654797534, -23.926230230453996, -22.417140580501677, + -20.575190247608223, -18.812493680919474, -17.52836124074434, + -17.25485483260192, -18.32720479548238, -20.81459371786055, + -24.368791992161967, -28.57303443833285, -32.59552629227488, + -35.51390760798459, -36.863916502752716, -36.131476587571186, + -33.321838230951265, -28.77141261747495, -23.300149758842295, + -17.30728384826348, -11.604670779199438, -6.775692632278048, + -2.7250883235088983, 0.2906483363913043, 2.617328592245412, + 4.55286581682998, 6.131949608552044, 7.56038762178852, 8.664990699566964, + 9.263229590370967, 9.212880320575488, 8.361822993647538, + 6.750433145047236, 4.6386922240246395, 2.338823721730437, + 0.15288066503234962, -1.44704136465679, -2.431342453206771, + -2.826638058269744, -2.7594504749542486, -2.565609094854861, + -2.527361463308165, -2.810375302802344, -3.4512737833733795, + -4.272670149964042, -5.064313133404907, -5.538575321712657, + -5.478569049360817, -4.864576686133141, -3.819099759460242, + -2.570441441860868, -1.4167648313957626, -0.637569094443127, + -0.28151117563809175, -0.3137771704547241, -0.5219096806434844, + -0.6076360213896951, -0.33726953583591174, 0.39972102346012617, + 1.5117748485374598, 2.748093751190537, 3.8204530493620985, + 4.362617244752849, 4.33261672790896, 3.9113679102892314, + 3.552120425391092, 3.9404521640434975, 5.806317619504959, + 9.73771801232699, 16.08700145194396, 24.29564899520191, 34.0665085726803, + 44.24814845185578, 53.19731335373872 + ], + "pressure:J92:branch102_seg2": [ + 162154.818380568, 183177.40111001531, 194830.33810118763, + 195927.03296745618, 187674.73612499007, 171605.76428599303, + 150051.7821892657, 126419.4204833563, 103222.19952620567, + 81182.87218622027, 62259.343018208674, 45284.20789742504, + 29432.733727161845, 14585.712531917308, -786.6000927893665, + -15694.245468375655, -30279.34622565235, -44164.66288822062, + -55194.8789104162, -63999.999757181045, -70203.29964206068, + -73770.82768078346, -75876.3377198535, -76876.23753639463, + -77332.84182395307, -77452.78821888499, -76852.62103376957, + -75144.0275837277, -71987.47889438599, -67365.29474580818, + -61756.83050934266, -56485.47243371573, -52781.322957235956, + -52153.499094843595, -55649.06151307292, -63408.06821102477, + -74315.22381979221, -87021.0296933257, -99084.50568164742, + -107640.10328436553, -111328.61659098182, -108750.05708333822, + -99905.23806657745, -85838.49277722035, -69236.4897554617, + -51177.362178290445, -33966.43316901582, -19618.231250692937, + -7574.5614833665495, 1401.8842804907226, 8259.63847545137, + 14097.222674488172, 18805.605406286337, 23031.736781716892, + 26337.85003663976, 28019.013780056895, 27717.97949012925, + 25012.76500880442, 20035.16780472724, 13565.213082488179, + 6633.347743229438, 120.28323879096061, -4625.967140336003, + -7458.64012898582, -8551.51698747266, -8303.531625833, -7713.146418120102, + -7645.33066871223, -8570.651464033886, -10570.3482270021, + -13058.407191919247, -15404.906172559191, -16769.625515832115, + -16477.511704734436, -14516.87770893515, -11298.38761418612, + -7537.852213636483, -4075.923438116243, -1811.991303582065, + -837.8907403428568, -976.1179170216218, -1609.0262659969512, + -1823.9803107421717, -926.2285117112259, 1378.7890660231603, + 4797.022618373243, 8520.08263318806, 11681.186125651435, + 13224.336502071972, 13026.222029397624, 11709.340906100737, + 10700.029985637493, 12082.781673249325, 18055.583546104608, + 30331.186080131516, 50004.45483659536, 75061.94595076244, + 104618.81906536907, 135568.32884673998, 162154.818380568 + ], + "flow:branch105_seg0:J93": [ + 39.878104920629326, 44.81399791543985, 47.34120275859414, + 47.30684131290873, 45.022542047075795, 40.89012919844275, + 35.49984790579869, 29.72553964331977, 24.14317496223391, + 18.862673473895217, 14.396091691947527, 10.381034508473931, + 6.619061328691026, 3.086703686985151, -0.6124200440694757, + -4.201612782440942, -7.7091173064484835, -11.017381424195376, + -13.622152351530783, -15.683370090586115, -17.091162429685635, + -17.87738361795431, -18.329665234042128, -18.532070330944123, + -18.62583586280217, -18.643201008480062, -18.484005368690354, + -18.047806870674012, -17.250510930939424, -16.093339900147676, + -14.709756834320926, -13.437763054295232, -12.57424992544306, + -12.50301110779668, -13.45698774065479, -15.44918885280091, + -18.187198477231423, -21.31584750554319, -24.223937682991238, + -26.213249146647573, -26.97561013222718, -26.179179578540346, + -23.862075383362363, -20.322443824836213, -16.20420461075941, + -11.784274032939209, -7.66757029934566, -4.264047960285531, + -1.4409003673318905, 0.6237981494262009, 2.214297290560576, + 3.564209478881947, 4.662831376989566, 5.672187905889345, + 6.440273479694859, 6.807061659284089, 6.683343953840942, + 5.9627976101187645, 4.695987151451136, 3.084862097257983, + 1.3941020482827133, -0.17100629641403253, -1.2755512113084015, + -1.902578028617158, -2.107953194048716, -2.001058651344115, + -1.8382902571735136, -1.8271621482493914, -2.074523511233951, + -2.5869108710013755, -3.211164228265918, -3.7843569143208593, + -4.089992917345053, -3.9787454580393775, -3.4573263449869396, + -2.6382562972465826, -1.703610019225956, -0.8726857905052102, + -0.35486218804317765, -0.1549626071388758, -0.2285585251688661, + -0.40416772792041633, -0.45394269532734977, -0.21222067811261125, + 0.38214654086199773, 1.2436189720553836, 2.1583252821964365, + 2.9131989563120304, 3.249133525308284, 3.15148668612456, + 2.7922852340582605, 2.538207128865391, 2.9160762371756133, + 4.463624152826099, 7.591777047378005, 12.521127905156721, + 18.748782407094314, 26.058882496391245, 33.52768302616975, + 39.878104920629326 + ], + "pressure:branch105_seg0:J93": [ + 174946.42981007296, 193147.41359949336, 201766.4217924382, + 198624.69899649158, 186431.92744720078, 167590.81525844557, + 144315.1365319721, 118935.26579119037, 96286.08897547613, + 74804.35631716753, 56086.92356847666, 40043.17078009478, + 24081.846170782424, 9164.041454674787, -6262.447260231674, + -21687.91917193555, -36170.00127070032, -49824.84488453529, + -60278.322041093445, -68034.73913517331, -73504.10445411011, + -76269.70179340628, -77790.94170705175, -78525.87355000884, + -78783.45402746588, -78755.3653460802, -77846.53434095957, + -75617.34944609711, -71790.36746673443, -66635.45204449503, + -60605.91420334781, -55513.65687341349, -52669.12197930631, + -53261.765767077966, -58397.702908539504, -67841.67614508589, + -80132.7669106472, -93240.03575050314, -105112.39945128972, + -112355.139029845, -113854.87615456436, -108972.86232088265, + -97686.98766616597, -81458.82905285813, -63701.82096356087, + -45277.980424593254, -27982.887658656393, -14571.757774298198, + -3477.194284822202, 4760.350556561055, 10815.708871489625, + 16512.943356602133, 20917.259706794903, 24821.61078160804, + 27931.00226671725, 28911.101966019385, 27733.151221508568, + 24109.171861161893, 18311.614077639028, 11110.08306549756, + 4123.601768142489, -2066.5716759308, -6402.215349401912, + -8426.884602455948, -8896.316977093662, -8302.669002461189, + -7629.625539522377, -7812.702483870302, -9172.649320229859, + -11596.15771563966, -14257.84932431548, -16463.557277044347, + -17435.19977101088, -16482.385608002405, -13821.668177083075, + -10116.147781248135, -6239.599383763031, -2852.0111248790113, + -1077.4381928608846, -664.5561418652677, -1133.8504154535563, + -1855.7664374025992, -1844.6201674757315, -449.8567560201903, + 2393.9820857150526, 6281.7514810169905, 10042.529564496219, + 12856.5699147708, 13886.713031541436, 13015.167327940027, + 11353.717093346204, 10666.938992557936, 13238.376657306675, + 21282.185468446285, 36276.253496592755, 59189.7936165332, + 86697.03634100623, 117817.54660355256, 150049.67952615983, + 174946.42981007296 + ], + "flow:J93:branch105_seg1": [ + 39.878104920629326, 44.81399791543985, 47.34120275859414, + 47.30684131290873, 45.022542047075795, 40.89012919844275, + 35.49984790579869, 29.72553964331977, 24.14317496223391, + 18.862673473895217, 14.396091691947527, 10.381034508473931, + 6.619061328691026, 3.086703686985151, -0.6124200440694757, + -4.201612782440942, -7.7091173064484835, -11.017381424195376, + -13.622152351530783, -15.683370090586115, -17.091162429685635, + -17.87738361795431, -18.329665234042128, -18.532070330944123, + -18.62583586280217, -18.643201008480062, -18.484005368690354, + -18.047806870674012, -17.250510930939424, -16.093339900147676, + -14.709756834320926, -13.437763054295232, -12.57424992544306, + -12.50301110779668, -13.45698774065479, -15.44918885280091, + -18.187198477231423, -21.31584750554319, -24.223937682991238, + -26.213249146647573, -26.97561013222718, -26.179179578540346, + -23.862075383362363, -20.322443824836213, -16.20420461075941, + -11.784274032939209, -7.66757029934566, -4.264047960285531, + -1.4409003673318905, 0.6237981494262009, 2.214297290560576, + 3.564209478881947, 4.662831376989566, 5.672187905889345, + 6.440273479694859, 6.807061659284089, 6.683343953840942, + 5.9627976101187645, 4.695987151451136, 3.084862097257983, + 1.3941020482827133, -0.17100629641403253, -1.2755512113084015, + -1.902578028617158, -2.107953194048716, -2.001058651344115, + -1.8382902571735136, -1.8271621482493914, -2.074523511233951, + -2.5869108710013755, -3.211164228265918, -3.7843569143208593, + -4.089992917345053, -3.9787454580393775, -3.4573263449869396, + -2.6382562972465826, -1.703610019225956, -0.8726857905052102, + -0.35486218804317765, -0.1549626071388758, -0.2285585251688661, + -0.40416772792041633, -0.45394269532734977, -0.21222067811261125, + 0.38214654086199773, 1.2436189720553836, 2.1583252821964365, + 2.9131989563120304, 3.249133525308284, 3.15148668612456, + 2.7922852340582605, 2.538207128865391, 2.9160762371756133, + 4.463624152826099, 7.591777047378005, 12.521127905156721, + 18.748782407094314, 26.058882496391245, 33.52768302616975, + 39.878104920629326 + ], + "pressure:J93:branch105_seg1": [ + 174946.42981007296, 193147.41359949336, 201766.4217924382, + 198624.69899649158, 186431.92744720078, 167590.81525844557, + 144315.1365319721, 118935.26579119037, 96286.08897547613, + 74804.35631716753, 56086.92356847666, 40043.17078009478, + 24081.846170782424, 9164.041454674787, -6262.447260231674, + -21687.91917193555, -36170.00127070032, -49824.84488453529, + -60278.322041093445, -68034.73913517331, -73504.10445411011, + -76269.70179340628, -77790.94170705175, -78525.87355000884, + -78783.45402746588, -78755.3653460802, -77846.53434095957, + -75617.34944609711, -71790.36746673443, -66635.45204449503, + -60605.91420334781, -55513.65687341349, -52669.12197930631, + -53261.765767077966, -58397.702908539504, -67841.67614508589, + -80132.7669106472, -93240.03575050314, -105112.39945128972, + -112355.139029845, -113854.87615456436, -108972.86232088265, + -97686.98766616597, -81458.82905285813, -63701.82096356087, + -45277.980424593254, -27982.887658656393, -14571.757774298198, + -3477.194284822202, 4760.350556561055, 10815.708871489625, + 16512.943356602133, 20917.259706794903, 24821.61078160804, + 27931.00226671725, 28911.101966019385, 27733.151221508568, + 24109.171861161893, 18311.614077639028, 11110.08306549756, + 4123.601768142489, -2066.5716759308, -6402.215349401912, + -8426.884602455948, -8896.316977093662, -8302.669002461189, + -7629.625539522377, -7812.702483870302, -9172.649320229859, + -11596.15771563966, -14257.84932431548, -16463.557277044347, + -17435.19977101088, -16482.385608002405, -13821.668177083075, + -10116.147781248135, -6239.599383763031, -2852.0111248790113, + -1077.4381928608846, -664.5561418652677, -1133.8504154535563, + -1855.7664374025992, -1844.6201674757315, -449.8567560201903, + 2393.9820857150526, 6281.7514810169905, 10042.529564496219, + 12856.5699147708, 13886.713031541436, 13015.167327940027, + 11353.717093346204, 10666.938992557936, 13238.376657306675, + 21282.185468446285, 36276.253496592755, 59189.7936165332, + 86697.03634100623, 117817.54660355256, 150049.67952615983, + 174946.42981007296 + ], + "flow:branch105_seg1:J94": [ + 39.82477624892172, 44.78577551260672, 47.33170421594481, + 47.32012080487457, 45.05987738087919, 40.94039572704773, + 35.55064972782963, 29.790962316253676, 24.192914354448913, + 18.899762253092252, 14.437220691036307, 10.411674657842683, + 6.650520864110226, 3.1175995866738457, -0.5892187801911234, + -4.171222217247798, -7.681465363460517, -11.001059536368443, + -13.604005321900543, -15.671781048830745, -17.085078283452955, + -17.87213263485584, -18.32837123186721, -18.531088827177722, + -18.62493362891241, -18.643934800550017, -18.486824273511754, + -18.054065253749375, -17.261183121358844, -16.10619202239754, + -14.723355488205483, -13.448528750753622, -12.57659494145943, + -12.496136772484011, -13.441482529687626, -15.426998933634435, + -18.15686384633239, -21.291538396507214, -24.205648168091535, + -26.204138930991927, -26.982086288776205, -26.19674921346925, + -23.88821485938836, -20.351485554892015, -16.24015446665851, + -11.819018707773186, -7.696538453139701, -4.291402252944652, + -1.4587126167697628, 0.6080786733688901, 2.199974569837364, + 3.5522617318927834, 4.651995298207093, 5.664344654502797, + 6.434220862280863, 6.806205466657686, 6.688896302349469, 5.97406332279681, + 4.709416949852821, 3.103342217213781, 1.4083652433371676, + -0.1635257719011253, -1.2686147107393373, -1.9004011614160004, + -2.109596164528918, -2.0024809564396486, -1.8387112978515288, + -1.8257487215896364, -2.0708444863455533, -2.582369186446437, + -3.206121245663385, -3.780822371037516, -4.089954661336847, + -3.981978668026665, -3.4641165948005646, -2.6470384928518103, + -1.7121081817596056, -0.8793239729028178, -0.3580571553715606, + -0.15456415264731663, -0.22659636552586024, -0.4032670008198185, + -0.45534120509412435, -0.21724332536069044, 0.3750941534871752, + 1.2340513687725718, 2.151271468616046, 2.911284634312716, + 3.2493096986969188, 3.1542678209796597, 2.7952892162740293, + 2.537081516102832, 2.9061692172034963, 4.441578853568796, + 7.555451659775457, 12.475479647893001, 18.690611216416357, + 25.989617642722582, 33.465907185251595, 39.82477624892172 + ], + "pressure:branch105_seg1:J94": [ + 167652.50513951803, 187821.7695631848, 198026.89017111057, + 197359.58205340125, 187393.04427543143, 169903.01854478387, + 147292.0259884216, 123033.60032767242, 99850.8036211154, + 77919.68522769018, 59313.85283837974, 42693.63693051624, + 26974.49703079696, 12222.854417688417, -3211.4276900868194, + -18224.335598789017, -32813.91880866345, -46605.95161921184, + -57364.68866816002, -65804.54661638157, -71607.91944198946, + -74782.27935156741, -76607.77241991945, -77430.46348625037, + -77794.93531598558, -77853.85626746924, -77149.84464352568, + -75263.90586478978, -71858.9908364284, -66981.8260579505, + -61169.85846212997, -55904.63000059265, -52429.37183819471, + -52277.57386272657, -56452.36070885517, -64954.6438460121, + -76504.9591068194, -89572.6668241831, -101657.85416569369, + -109767.85121585605, -112664.365756807, -109075.22408408114, + -99128.55973783023, -84099.21817899743, -66853.2795733817, + -48439.06260522357, -31242.37856804616, -17216.902735563872, + -5557.640055105325, 2975.627155421087, 9489.297048468703, + 15135.652629572074, 19680.125672970276, 23834.281818403597, + 27021.760798681997, 28458.217977355776, 27833.25991187527, + 24728.43162617116, 19355.67394701847, 12566.143404021059, + 5519.955614098469, -957.048216698645, -5505.789489113115, + -8016.656867945249, -8808.42507411655, -8332.4716591763, + -7651.7932448257525, -7644.829390520163, -8733.098147111948, + -10922.260675997053, -13532.570381656386, -15888.653491127692, + -17113.894573509308, -16563.99281666372, -14307.134810764892, + -10844.116944220968, -6954.116521996163, -3501.267559760635, + -1409.0952589550186, -647.8397779170967, -981.1958899053891, + -1714.600557267265, -1886.4550932151967, -815.2064283991251, + 1726.7930386938049, 5365.37616127198, 9174.53714068184, + 12270.956120842964, 13603.507198414027, 13112.784471820129, + 11584.251448978925, 10585.470301486677, 12327.48299065897, + 19049.30622597375, 32420.153833272212, 53395.158211492766, + 79599.59376646063, 110134.7499272134, 141493.38997642597, + 167652.50513951803 + ], + "flow:J94:branch105_seg2": [ + 39.82477624892172, 44.78577551260672, 47.33170421594481, + 47.32012080487457, 45.05987738087919, 40.94039572704773, + 35.55064972782963, 29.790962316253676, 24.192914354448913, + 18.899762253092252, 14.437220691036307, 10.411674657842683, + 6.650520864110226, 3.1175995866738457, -0.5892187801911234, + -4.171222217247798, -7.681465363460517, -11.001059536368443, + -13.604005321900543, -15.671781048830745, -17.085078283452955, + -17.87213263485584, -18.32837123186721, -18.531088827177722, + -18.62493362891241, -18.643934800550017, -18.486824273511754, + -18.054065253749375, -17.261183121358844, -16.10619202239754, + -14.723355488205483, -13.448528750753622, -12.57659494145943, + -12.496136772484011, -13.441482529687626, -15.426998933634435, + -18.15686384633239, -21.291538396507214, -24.205648168091535, + -26.204138930991927, -26.982086288776205, -26.19674921346925, + -23.88821485938836, -20.351485554892015, -16.24015446665851, + -11.819018707773186, -7.696538453139701, -4.291402252944652, + -1.4587126167697628, 0.6080786733688901, 2.199974569837364, + 3.5522617318927834, 4.651995298207093, 5.664344654502797, + 6.434220862280863, 6.806205466657686, 6.688896302349469, 5.97406332279681, + 4.709416949852821, 3.103342217213781, 1.4083652433371676, + -0.1635257719011253, -1.2686147107393373, -1.9004011614160004, + -2.109596164528918, -2.0024809564396486, -1.8387112978515288, + -1.8257487215896364, -2.0708444863455533, -2.582369186446437, + -3.206121245663385, -3.780822371037516, -4.089954661336847, + -3.981978668026665, -3.4641165948005646, -2.6470384928518103, + -1.7121081817596056, -0.8793239729028178, -0.3580571553715606, + -0.15456415264731663, -0.22659636552586024, -0.4032670008198185, + -0.45534120509412435, -0.21724332536069044, 0.3750941534871752, + 1.2340513687725718, 2.151271468616046, 2.911284634312716, + 3.2493096986969188, 3.1542678209796597, 2.7952892162740293, + 2.537081516102832, 2.9061692172034963, 4.441578853568796, + 7.555451659775457, 12.475479647893001, 18.690611216416357, + 25.989617642722582, 33.465907185251595, 39.82477624892172 + ], + "pressure:J94:branch105_seg2": [ + 167652.50513951803, 187821.7695631848, 198026.89017111057, + 197359.58205340125, 187393.04427543143, 169903.01854478387, + 147292.0259884216, 123033.60032767242, 99850.8036211154, + 77919.68522769018, 59313.85283837974, 42693.63693051624, + 26974.49703079696, 12222.854417688417, -3211.4276900868194, + -18224.335598789017, -32813.91880866345, -46605.95161921184, + -57364.68866816002, -65804.54661638157, -71607.91944198946, + -74782.27935156741, -76607.77241991945, -77430.46348625037, + -77794.93531598558, -77853.85626746924, -77149.84464352568, + -75263.90586478978, -71858.9908364284, -66981.8260579505, + -61169.85846212997, -55904.63000059265, -52429.37183819471, + -52277.57386272657, -56452.36070885517, -64954.6438460121, + -76504.9591068194, -89572.6668241831, -101657.85416569369, + -109767.85121585605, -112664.365756807, -109075.22408408114, + -99128.55973783023, -84099.21817899743, -66853.2795733817, + -48439.06260522357, -31242.37856804616, -17216.902735563872, + -5557.640055105325, 2975.627155421087, 9489.297048468703, + 15135.652629572074, 19680.125672970276, 23834.281818403597, + 27021.760798681997, 28458.217977355776, 27833.25991187527, + 24728.43162617116, 19355.67394701847, 12566.143404021059, + 5519.955614098469, -957.048216698645, -5505.789489113115, + -8016.656867945249, -8808.42507411655, -8332.4716591763, + -7651.7932448257525, -7644.829390520163, -8733.098147111948, + -10922.260675997053, -13532.570381656386, -15888.653491127692, + -17113.894573509308, -16563.99281666372, -14307.134810764892, + -10844.116944220968, -6954.116521996163, -3501.267559760635, + -1409.0952589550186, -647.8397779170967, -981.1958899053891, + -1714.600557267265, -1886.4550932151967, -815.2064283991251, + 1726.7930386938049, 5365.37616127198, 9174.53714068184, + 12270.956120842964, 13603.507198414027, 13112.784471820129, + 11584.251448978925, 10585.470301486677, 12327.48299065897, + 19049.30622597375, 32420.153833272212, 53395.158211492766, + 79599.59376646063, 110134.7499272134, 141493.38997642597, + 167652.50513951803 + ], + "flow:branch109_seg0:J95": [ + 26.64010002896541, 30.54641887253834, 33.01861101083234, + 33.84644436966168, 33.11765402143328, 31.006979585450203, + 27.842109021280542, 24.159588215084387, 20.358545386777795, + 16.580133339825153, 13.201841039850747, 10.079782598728627, + 7.132512306896226, 4.364628322622981, 1.5407292248269817, + -1.1940506670455366, -3.8619763606454547, -6.404775326742874, + -8.51663902771861, -10.268432938699402, -11.58069854255307, + -12.450744286556153, -13.038204037503897, -13.397180875063698, + -13.621262874264568, -13.747086989128084, -13.730769063006393, + -13.520296250299971, -13.065145246206445, -12.358241830672327, + -11.469929952862596, -10.597379765417076, -9.928597409251195, + -9.715918815829678, -10.136672678381487, -11.242235562517838, + -12.897170783739336, -14.907651203997542, -16.90782930580156, + -18.447164810911456, -19.28322380912071, -19.151315072175844, + -18.004920677257054, -15.96970033359984, -13.402107652986448, + -10.481247545169555, -7.593825435718972, -5.040051547076796, + -2.8035718540920924, -1.0347943508664406, 0.3943874860415167, + 1.6098481720051725, 2.609504429783722, 3.497516208734928, + 4.199876670064756, 4.627956426530804, 4.725484175434395, + 4.4189482162311595, 3.723484151436749, 2.7475902204333913, + 1.648094839787895, 0.5590444993170418, -0.29748628006987965, + -0.8778645567431975, -1.1868652609198922, -1.2673041366995652, + -1.2628566408768243, -1.3040207525639695, -1.4723042688479524, + -1.7936692654980153, -2.1963489530312783, -2.5909102442070284, + -2.845561087862066, -2.855869410288976, -2.6043804477438086, + -2.1393259902654633, -1.559114353321406, -0.9965575821547941, + -0.590235233081523, -0.36659294673453224, -0.3203159614541769, + -0.3643355264610148, -0.36568772291874474, -0.2148538102992699, + 0.14389652960366708, 0.680740879536916, 1.282099161611784, + 1.8218028010851621, 2.1326586119723077, 2.1806567431638335, + 2.04371227415456, 1.9246487707347402, 2.1415604796124588, + 3.0440181009144234, 4.927489670545956, 7.9865540984525305, + 11.987508957916853, 16.830160298842763, 21.97914930504997, + 26.64010002896541 + ], + "pressure:branch109_seg0:J95": [ + 155291.16201552452, 173971.68544337375, 185430.3354047373, + 186543.88814427066, 179409.0561463998, 165743.72237256353, + 147245.27697719465, 125489.74354119119, 104897.45561767812, + 84788.12604479611, 66332.83416752047, 50045.36581552279, + 33863.81462836638, 18681.53310282885, 3342.4960702224407, + -11810.447710495151, -26126.61829502819, -39913.09265897135, + -50784.520191926895, -59321.70621149939, -65965.29344803626, + -69988.98107304094, -72672.50773690529, -74378.48038078092, + -75335.77413845832, -75855.9684872455, -75468.49494978657, + -73857.51050504812, -70821.95615514985, -66571.98841184707, + -61400.054031395965, -56769.30085059452, -53871.01855249402, + -53624.08331124216, -57185.432339642924, -64549.91925748584, + -74615.9943158101, -85886.98700711495, -96698.86768095508, + -104063.34538211007, -106868.18447603314, -104367.57506432237, + -96220.44573168403, -83215.30479309116, -68450.64748238215, + -52384.44455292831, -36235.49095850578, -23137.595273943047, + -11671.139074489582, -2496.4323906584737, 4489.178229179678, + 11089.197325553556, 16269.954107807, 20638.006781571556, + 24313.625756916554, 26038.793213884674, 25805.270368188543, + 23410.766197610898, 18965.116972875236, 13047.231745677756, + 6949.0858346929535, 1264.051078001685, -3098.053246728439, + -5645.257784548548, -6866.0510485510895, -7050.738281318751, + -6940.128420659237, -7339.0312156322125, -8566.83559841504, + -10637.424679575615, -12905.327618599053, -14877.697929152082, + -15993.61593381624, -15532.80339270298, -13615.65725785722, + -10719.03452328116, -7522.3097666635485, -4466.301369629394, + -2596.7608561716766, -1841.8360312550822, -1790.1922869843822, + -2078.112613645554, -1914.7724934063951, -722.1901530857107, + 1628.6950182924857, 4893.29032109119, 8194.034582103877, + 10849.052636182667, 12136.129988118992, 11884.4503636844, + 10892.45696931765, 10554.752739783888, 12715.283807932434, + 19298.41194327356, 31640.091765181725, 51052.187258513855, + 74619.96084409999, 101641.12961572457, 131378.95126482612, + 155291.16201552452 + ], + "flow:J95:branch109_seg1": [ + 26.64010002896541, 30.54641887253834, 33.01861101083234, + 33.84644436966168, 33.11765402143328, 31.006979585450203, + 27.842109021280542, 24.159588215084387, 20.358545386777795, + 16.580133339825153, 13.201841039850747, 10.079782598728627, + 7.132512306896226, 4.364628322622981, 1.5407292248269817, + -1.1940506670455366, -3.8619763606454547, -6.404775326742874, + -8.51663902771861, -10.268432938699402, -11.58069854255307, + -12.450744286556153, -13.038204037503897, -13.397180875063698, + -13.621262874264568, -13.747086989128084, -13.730769063006393, + -13.520296250299971, -13.065145246206445, -12.358241830672327, + -11.469929952862596, -10.597379765417076, -9.928597409251195, + -9.715918815829678, -10.136672678381487, -11.242235562517838, + -12.897170783739336, -14.907651203997542, -16.90782930580156, + -18.447164810911456, -19.28322380912071, -19.151315072175844, + -18.004920677257054, -15.96970033359984, -13.402107652986448, + -10.481247545169555, -7.593825435718972, -5.040051547076796, + -2.8035718540920924, -1.0347943508664406, 0.3943874860415167, + 1.6098481720051725, 2.609504429783722, 3.497516208734928, + 4.199876670064756, 4.627956426530804, 4.725484175434395, + 4.4189482162311595, 3.723484151436749, 2.7475902204333913, + 1.648094839787895, 0.5590444993170418, -0.29748628006987965, + -0.8778645567431975, -1.1868652609198922, -1.2673041366995652, + -1.2628566408768243, -1.3040207525639695, -1.4723042688479524, + -1.7936692654980153, -2.1963489530312783, -2.5909102442070284, + -2.845561087862066, -2.855869410288976, -2.6043804477438086, + -2.1393259902654633, -1.559114353321406, -0.9965575821547941, + -0.590235233081523, -0.36659294673453224, -0.3203159614541769, + -0.3643355264610148, -0.36568772291874474, -0.2148538102992699, + 0.14389652960366708, 0.680740879536916, 1.282099161611784, + 1.8218028010851621, 2.1326586119723077, 2.1806567431638335, + 2.04371227415456, 1.9246487707347402, 2.1415604796124588, + 3.0440181009144234, 4.927489670545956, 7.9865540984525305, + 11.987508957916853, 16.830160298842763, 21.97914930504997, + 26.64010002896541 + ], + "pressure:J95:branch109_seg1": [ + 155291.16201552452, 173971.68544337375, 185430.3354047373, + 186543.88814427066, 179409.0561463998, 165743.72237256353, + 147245.27697719465, 125489.74354119119, 104897.45561767812, + 84788.12604479611, 66332.83416752047, 50045.36581552279, + 33863.81462836638, 18681.53310282885, 3342.4960702224407, + -11810.447710495151, -26126.61829502819, -39913.09265897135, + -50784.520191926895, -59321.70621149939, -65965.29344803626, + -69988.98107304094, -72672.50773690529, -74378.48038078092, + -75335.77413845832, -75855.9684872455, -75468.49494978657, + -73857.51050504812, -70821.95615514985, -66571.98841184707, + -61400.054031395965, -56769.30085059452, -53871.01855249402, + -53624.08331124216, -57185.432339642924, -64549.91925748584, + -74615.9943158101, -85886.98700711495, -96698.86768095508, + -104063.34538211007, -106868.18447603314, -104367.57506432237, + -96220.44573168403, -83215.30479309116, -68450.64748238215, + -52384.44455292831, -36235.49095850578, -23137.595273943047, + -11671.139074489582, -2496.4323906584737, 4489.178229179678, + 11089.197325553556, 16269.954107807, 20638.006781571556, + 24313.625756916554, 26038.793213884674, 25805.270368188543, + 23410.766197610898, 18965.116972875236, 13047.231745677756, + 6949.0858346929535, 1264.051078001685, -3098.053246728439, + -5645.257784548548, -6866.0510485510895, -7050.738281318751, + -6940.128420659237, -7339.0312156322125, -8566.83559841504, + -10637.424679575615, -12905.327618599053, -14877.697929152082, + -15993.61593381624, -15532.80339270298, -13615.65725785722, + -10719.03452328116, -7522.3097666635485, -4466.301369629394, + -2596.7608561716766, -1841.8360312550822, -1790.1922869843822, + -2078.112613645554, -1914.7724934063951, -722.1901530857107, + 1628.6950182924857, 4893.29032109119, 8194.034582103877, + 10849.052636182667, 12136.129988118992, 11884.4503636844, + 10892.45696931765, 10554.752739783888, 12715.283807932434, + 19298.41194327356, 31640.091765181725, 51052.187258513855, + 74619.96084409999, 101641.12961572457, 131378.95126482612, + 155291.16201552452 + ], + "flow:branch109_seg1:J96": [ + 26.57798901385665, 30.509109035302377, 33.000073564180376, + 33.85184328253363, 33.15019468045466, 31.05340983702809, + 27.887004071017166, 24.22681933875508, 20.413903183189692, + 16.617909141338135, 13.249112610447735, 10.117892621519589, + 7.169225545909612, 4.404131249089745, 1.5687790190206865, + -1.1579211200589268, -3.8221583053443515, -6.381195767159666, + -8.49198803871971, -10.248955790749893, -11.568811308844415, + -12.440548729565768, -13.033138063710322, -13.39406870556811, + -13.618653741636358, -13.74662335396914, -13.733047646956944, + -13.526192309509618, -13.075957325513473, -12.371037716880391, + -11.483858070263246, -10.608853577858653, -9.93131854697281, + -9.710689126401286, -10.12308315353985, -11.22272067433278, + -12.867184414483559, -14.881088447363771, -16.887625191514093, + -18.432721061904637, -19.285152304605955, -19.165316073724835, + -18.0303547797578, -16.000313648052643, -13.44097306556231, + -10.523224680073852, -7.630868239796002, -5.074933227339215, + -2.8290373785910554, -1.0561379428127609, 0.3750234124754829, + 1.5926490773367221, 2.596001031621307, 3.4880223039840974, + 4.191538562972607, 4.625216675087433, 4.729721667647138, + 4.4288918063842955, 3.7354710753043068, 2.7655918093100857, + 1.6639764789210711, 0.5664161995483974, -0.28852842052729355, + -0.872444516411073, -1.1865983908613482, -1.2672859464009303, + -1.2623459307907892, -1.3022568981634424, -1.4682904430527088, + -1.7885344542157593, -2.190790289562751, -2.586275931166646, + -2.844507334907398, -2.8584769144691813, -2.610877027576906, + -2.148305670603875, -1.5678347417340304, -1.004190289005209, + -0.5941517132638536, -0.3667519057659825, -0.3192529425045472, + -0.36412581264605404, -0.3674562472701474, -0.21976312378533672, + 0.13718610795092634, 0.6714024024536123, 1.2740590891018444, + 1.8195950950248336, 2.131588888006236, 2.18181767438993, + 2.0459366324238935, 1.9234251755932885, 2.131771471854569, + 3.021470116594464, 4.888145477198393, 7.9351131809535795, + 11.92378176173122, 16.75062788622539, 21.902621586894764, + 26.57798901385665 + ], + "pressure:branch109_seg1:J96": [ + 145718.7824933763, 166355.57377026894, 179353.64681325646, + 183196.75350127558, 178703.06875920232, 166904.9941519206, + 149541.51666175533, 129400.94333506726, 108848.79661060403, + 88473.94235140386, 70272.25146547609, 53531.99184246478, + 37589.73238210593, 22638.64959882217, 7350.791889254009, + -7426.713762135313, -21763.946764987704, -35553.548531012406, + -46808.66745640283, -56069.99815774858, -63080.17860317462, + -67628.40110377771, -70711.67725685416, -72604.4167646025, + -73759.00909010545, -74412.84423622189, -74273.05590039183, + -73053.3852359664, -70499.22038115916, -66606.53552236542, + -61744.60825789042, -57049.63818246578, -53560.15417861675, + -52572.01095439132, -55079.289361049414, -61310.74390414198, + -70422.30210294809, -81361.66928773018, -92170.8158710034, + -100286.2539280793, -104496.90882307939, -103454.97901980572, + -96907.0706280117, -85526.82252705985, -71538.57453942552, + -55753.61873730903, -40050.65199985458, -26433.49455058053, + -14471.656277467186, -5004.329180547028, 2544.799245886375, + 9112.746257027064, 14468.779196317648, 19178.66282084175, + 22943.338821286572, 25149.06261088094, 25542.4084880832, + 23757.668673473796, 19870.353277040238, 14500.555981899424, + 8530.741250235687, 2665.3916003205018, -1884.4292604540506, + -4900.857228318452, -6492.775588991846, -6872.929161942278, + -6827.6870406684, -7081.911620303115, -8047.374707778849, + -9846.67614163969, -12034.287317494143, -14129.832478408332, + -15462.762046506297, -15423.25826414016, -13965.184041986913, + -11387.63426939835, -8246.971584992574, -5206.591364826353, + -3070.3003644306336, -1946.1520310670978, -1733.8415187905853, + -1985.9949772359544, -1965.6529864826148, -1085.9043113164944, + 928.3736865196319, 3887.570910343751, 7145.8306038932515, + 10025.035994104746, 11620.012715596473, 11778.090167906626, + 10990.240430381986, 10398.689846520103, 11741.777793256757, + 16915.30641626802, 27455.373725687925, 44510.43350063966, + 66433.52518935666, 92634.4000338692, 120815.15072159038, 145718.7824933763 + ], + "flow:J96:branch109_seg2": [ + 26.57798901385665, 30.509109035302377, 33.000073564180376, + 33.85184328253363, 33.15019468045466, 31.05340983702809, + 27.887004071017166, 24.22681933875508, 20.413903183189692, + 16.617909141338135, 13.249112610447735, 10.117892621519589, + 7.169225545909612, 4.404131249089745, 1.5687790190206865, + -1.1579211200589268, -3.8221583053443515, -6.381195767159666, + -8.49198803871971, -10.248955790749893, -11.568811308844415, + -12.440548729565768, -13.033138063710322, -13.39406870556811, + -13.618653741636358, -13.74662335396914, -13.733047646956944, + -13.526192309509618, -13.075957325513473, -12.371037716880391, + -11.483858070263246, -10.608853577858653, -9.93131854697281, + -9.710689126401286, -10.12308315353985, -11.22272067433278, + -12.867184414483559, -14.881088447363771, -16.887625191514093, + -18.432721061904637, -19.285152304605955, -19.165316073724835, + -18.0303547797578, -16.000313648052643, -13.44097306556231, + -10.523224680073852, -7.630868239796002, -5.074933227339215, + -2.8290373785910554, -1.0561379428127609, 0.3750234124754829, + 1.5926490773367221, 2.596001031621307, 3.4880223039840974, + 4.191538562972607, 4.625216675087433, 4.729721667647138, + 4.4288918063842955, 3.7354710753043068, 2.7655918093100857, + 1.6639764789210711, 0.5664161995483974, -0.28852842052729355, + -0.872444516411073, -1.1865983908613482, -1.2672859464009303, + -1.2623459307907892, -1.3022568981634424, -1.4682904430527088, + -1.7885344542157593, -2.190790289562751, -2.586275931166646, + -2.844507334907398, -2.8584769144691813, -2.610877027576906, + -2.148305670603875, -1.5678347417340304, -1.004190289005209, + -0.5941517132638536, -0.3667519057659825, -0.3192529425045472, + -0.36412581264605404, -0.3674562472701474, -0.21976312378533672, + 0.13718610795092634, 0.6714024024536123, 1.2740590891018444, + 1.8195950950248336, 2.131588888006236, 2.18181767438993, + 2.0459366324238935, 1.9234251755932885, 2.131771471854569, + 3.021470116594464, 4.888145477198393, 7.9351131809535795, + 11.92378176173122, 16.75062788622539, 21.902621586894764, + 26.57798901385665 + ], + "pressure:J96:branch109_seg2": [ + 145718.7824933763, 166355.57377026894, 179353.64681325646, + 183196.75350127558, 178703.06875920232, 166904.9941519206, + 149541.51666175533, 129400.94333506726, 108848.79661060403, + 88473.94235140386, 70272.25146547609, 53531.99184246478, + 37589.73238210593, 22638.64959882217, 7350.791889254009, + -7426.713762135313, -21763.946764987704, -35553.548531012406, + -46808.66745640283, -56069.99815774858, -63080.17860317462, + -67628.40110377771, -70711.67725685416, -72604.4167646025, + -73759.00909010545, -74412.84423622189, -74273.05590039183, + -73053.3852359664, -70499.22038115916, -66606.53552236542, + -61744.60825789042, -57049.63818246578, -53560.15417861675, + -52572.01095439132, -55079.289361049414, -61310.74390414198, + -70422.30210294809, -81361.66928773018, -92170.8158710034, + -100286.2539280793, -104496.90882307939, -103454.97901980572, + -96907.0706280117, -85526.82252705985, -71538.57453942552, + -55753.61873730903, -40050.65199985458, -26433.49455058053, + -14471.656277467186, -5004.329180547028, 2544.799245886375, + 9112.746257027064, 14468.779196317648, 19178.66282084175, + 22943.338821286572, 25149.06261088094, 25542.4084880832, + 23757.668673473796, 19870.353277040238, 14500.555981899424, + 8530.741250235687, 2665.3916003205018, -1884.4292604540506, + -4900.857228318452, -6492.775588991846, -6872.929161942278, + -6827.6870406684, -7081.911620303115, -8047.374707778849, + -9846.67614163969, -12034.287317494143, -14129.832478408332, + -15462.762046506297, -15423.25826414016, -13965.184041986913, + -11387.63426939835, -8246.971584992574, -5206.591364826353, + -3070.3003644306336, -1946.1520310670978, -1733.8415187905853, + -1985.9949772359544, -1965.6529864826148, -1085.9043113164944, + 928.3736865196319, 3887.570910343751, 7145.8306038932515, + 10025.035994104746, 11620.012715596473, 11778.090167906626, + 10990.240430381986, 10398.689846520103, 11741.777793256757, + 16915.30641626802, 27455.373725687925, 44510.43350063966, + 66433.52518935666, 92634.4000338692, 120815.15072159038, 145718.7824933763 + ], + "flow:branch115_seg0:J97": [ + 25.16050502378106, 28.647541446650994, 30.711187444184315, + 31.18126878916727, 30.17330850607727, 27.898090516386254, + 24.707750519443316, 21.116059939486654, 17.51463801454361, + 14.04225109931945, 11.003284786477536, 8.245566059299147, + 5.670301417240028, 3.246733632295056, 0.7550286373519937, + -1.6777192115099289, -4.069726086046471, -6.335732594263509, + -8.196828350310204, -9.71654960267571, -10.81382791121539, + -11.503132979378686, -11.940357893604219, -12.18512881275528, + -12.330381860962309, -12.40558285865108, -12.363060229278076, + -12.145714156060157, -11.699661736489464, -11.01751365336958, + -10.171060726175112, -9.35223883753551, -8.750058758498668, + -8.604557983789949, -9.080062723312198, -10.213195745514861, + -11.860886104818752, -13.814457694600957, -15.706738946351159, + -17.109856344524363, -17.789962613204235, -17.5137870524671, + -16.26647690510604, -14.196033348860567, -11.665484254400308, + -8.861896639291102, -6.16663255651241, -3.8479851267025422, + -1.8800739020085833, -0.37901877872989115, 0.802182944580157, + 1.7946586054664013, 2.6093235641898156, 3.34377065524186, + 3.9252521174509067, 4.260854055374541, 4.288964557121177, + 3.940088201484863, 3.2323970365099486, 2.272916317711619, + 1.2187704252704266, 0.20757707107335532, -0.5585475133956853, + -1.0424974043941764, -1.2548004221977145, -1.2548102582191545, + -1.1896110432727907, -1.1889578900456559, -1.3312319142724998, + -1.6350565156788595, -2.0225150238011502, -2.399174399269975, + -2.631209031201347, -2.618939270639648, -2.3493868959860356, + -1.8769366087666866, -1.3048349885211041, -0.767269699013334, + -0.3973127149718953, -0.21818700855845624, -0.21497051089999045, + -0.2946565166162436, -0.32247263647991264, -0.18975359696903277, + 0.15443835102612313, 0.6749020201846919, 1.2536071539193485, + 1.758813345681217, 2.030885596736905, 2.0400147064147207, + 1.867081208348331, 1.7204865695004654, 1.9154557405873467, + 2.791345596864065, 4.625932209191277, 7.5871230507958325, + 11.431245100730884, 16.041979223104672, 20.87135656696148, + 25.16050502378106 + ], + "pressure:branch115_seg0:J97": [ + 160072.39812175915, 178867.27438970678, 189259.23609366597, + 188997.71784020786, 180151.01376919146, 164600.09226606612, + 144362.6806829413, 121333.62889159558, 100187.93788183425, + 79834.38029489701, 61497.64244242168, 45647.76416128546, + 30027.575372941134, 15365.301056320817, 452.15519080669264, + -14574.55419657336, -28833.573861111392, -42193.10157370837, + -52926.134836684556, -61275.2814815169, -67354.34189245146, + -70919.00587563502, -73125.32927105106, -74412.01178608903, + -75126.18055151675, -75452.5492715391, -74943.08750123416, + -73234.60774448633, -70055.73787499477, -65593.17572446454, + -60222.076524381875, -55457.51133481501, -52529.82206694112, + -52522.43696677846, -56557.61596124852, -64542.52270537893, + -75418.4606302002, -87338.83141116149, -98519.00182259116, + -105969.37504951173, -108425.70692615109, -105143.52164411846, + -95959.11855130034, -81996.90231339124, -66085.31051023383, + -49033.58651451095, -32744.37562693592, -19541.20176163017, + -8375.407714798992, 178.1898576990413, 6699.306290193632, + 12629.88083468308, 17284.98848749479, 21408.1317449634, 24788.49504905169, + 26249.086761391412, 25754.546141141614, 23004.556348239046, + 18188.476403581997, 11883.37556228758, 5545.3633039469505, + -236.2463760941847, -4589.751058254102, -6921.182181745308, + -7759.408803966546, -7557.205425122402, -7129.584108918246, + -7318.9094261300825, -8482.184740740862, -10595.224755479643, + -13006.29252123834, -15136.924866557034, -16239.62307074514, + -15684.621135510108, -13573.154124482166, -10415.04485070462, + -6935.058576890229, -3758.7272952615276, -1898.1482494748313, + -1229.313811697475, -1401.565534453831, -1915.4777339872549, + -1901.0366498824594, -737.045313553402, 1700.2124503543514, + 5150.06334002824, 8616.948133724329, 11353.630312361054, + 12628.983198878053, 12216.718083608894, 10961.986060358717, + 10380.112594452014, 12466.45540936133, 19265.850906722982, + 32225.206238343082, 52353.03632148116, 77048.71342135886, + 105733.14571066573, 135759.01276130474, 160072.39812175915 + ], + "flow:J97:branch115_seg1": [ + 25.16050502378106, 28.647541446650994, 30.711187444184315, + 31.18126878916727, 30.17330850607727, 27.898090516386254, + 24.707750519443316, 21.116059939486654, 17.51463801454361, + 14.04225109931945, 11.003284786477536, 8.245566059299147, + 5.670301417240028, 3.246733632295056, 0.7550286373519937, + -1.6777192115099289, -4.069726086046471, -6.335732594263509, + -8.196828350310204, -9.71654960267571, -10.81382791121539, + -11.503132979378686, -11.940357893604219, -12.18512881275528, + -12.330381860962309, -12.40558285865108, -12.363060229278076, + -12.145714156060157, -11.699661736489464, -11.01751365336958, + -10.171060726175112, -9.35223883753551, -8.750058758498668, + -8.604557983789949, -9.080062723312198, -10.213195745514861, + -11.860886104818752, -13.814457694600957, -15.706738946351159, + -17.109856344524363, -17.789962613204235, -17.5137870524671, + -16.26647690510604, -14.196033348860567, -11.665484254400308, + -8.861896639291102, -6.16663255651241, -3.8479851267025422, + -1.8800739020085833, -0.37901877872989115, 0.802182944580157, + 1.7946586054664013, 2.6093235641898156, 3.34377065524186, + 3.9252521174509067, 4.260854055374541, 4.288964557121177, + 3.940088201484863, 3.2323970365099486, 2.272916317711619, + 1.2187704252704266, 0.20757707107335532, -0.5585475133956853, + -1.0424974043941764, -1.2548004221977145, -1.2548102582191545, + -1.1896110432727907, -1.1889578900456559, -1.3312319142724998, + -1.6350565156788595, -2.0225150238011502, -2.399174399269975, + -2.631209031201347, -2.618939270639648, -2.3493868959860356, + -1.8769366087666866, -1.3048349885211041, -0.767269699013334, + -0.3973127149718953, -0.21818700855845624, -0.21497051089999045, + -0.2946565166162436, -0.32247263647991264, -0.18975359696903277, + 0.15443835102612313, 0.6749020201846919, 1.2536071539193485, + 1.758813345681217, 2.030885596736905, 2.0400147064147207, + 1.867081208348331, 1.7204865695004654, 1.9154557405873467, + 2.791345596864065, 4.625932209191277, 7.5871230507958325, + 11.431245100730884, 16.041979223104672, 20.87135656696148, + 25.16050502378106 + ], + "pressure:J97:branch115_seg1": [ + 160072.39812175915, 178867.27438970678, 189259.23609366597, + 188997.71784020786, 180151.01376919146, 164600.09226606612, + 144362.6806829413, 121333.62889159558, 100187.93788183425, + 79834.38029489701, 61497.64244242168, 45647.76416128546, + 30027.575372941134, 15365.301056320817, 452.15519080669264, + -14574.55419657336, -28833.573861111392, -42193.10157370837, + -52926.134836684556, -61275.2814815169, -67354.34189245146, + -70919.00587563502, -73125.32927105106, -74412.01178608903, + -75126.18055151675, -75452.5492715391, -74943.08750123416, + -73234.60774448633, -70055.73787499477, -65593.17572446454, + -60222.076524381875, -55457.51133481501, -52529.82206694112, + -52522.43696677846, -56557.61596124852, -64542.52270537893, + -75418.4606302002, -87338.83141116149, -98519.00182259116, + -105969.37504951173, -108425.70692615109, -105143.52164411846, + -95959.11855130034, -81996.90231339124, -66085.31051023383, + -49033.58651451095, -32744.37562693592, -19541.20176163017, + -8375.407714798992, 178.1898576990413, 6699.306290193632, + 12629.88083468308, 17284.98848749479, 21408.1317449634, 24788.49504905169, + 26249.086761391412, 25754.546141141614, 23004.556348239046, + 18188.476403581997, 11883.37556228758, 5545.3633039469505, + -236.2463760941847, -4589.751058254102, -6921.182181745308, + -7759.408803966546, -7557.205425122402, -7129.584108918246, + -7318.9094261300825, -8482.184740740862, -10595.224755479643, + -13006.29252123834, -15136.924866557034, -16239.62307074514, + -15684.621135510108, -13573.154124482166, -10415.04485070462, + -6935.058576890229, -3758.7272952615276, -1898.1482494748313, + -1229.313811697475, -1401.565534453831, -1915.4777339872549, + -1901.0366498824594, -737.045313553402, 1700.2124503543514, + 5150.06334002824, 8616.948133724329, 11353.630312361054, + 12628.983198878053, 12216.718083608894, 10961.986060358717, + 10380.112594452014, 12466.45540936133, 19265.850906722982, + 32225.206238343082, 52353.03632148116, 77048.71342135886, + 105733.14571066573, 135759.01276130474, 160072.39812175915 + ], + "flow:branch115_seg1:J98": [ + 25.15171697374196, 28.6419840499619, 30.708967412924455, + 31.182652632182876, 30.17841221802031, 27.905541324985105, + 24.71586238836931, 21.12650152288459, 17.522762205053755, + 14.048765959936153, 11.010673697372194, 8.251062003545982, + 5.676018218076857, 3.252316202397588, 0.7593649769642234, + -1.6718982341716528, -4.064731395593484, -6.332534206302213, + -8.193283566740222, -9.714062316391958, -10.812429371466463, + -11.501969380006816, -11.939881944202558, -12.184807924994809, + -12.330081925089681, -12.405608753004513, -12.363412482057404, + -12.146612231812387, -11.701214092264454, -11.019512955241275, + -10.17316891115474, -9.354008701641613, -8.75061965291669, + -8.603734272071492, -9.077735685236663, -10.209777023062122, + -11.855874526518424, -13.810363948435532, -15.703359420760233, + -17.107898996492015, -17.790457683945057, -17.51627578062905, + -16.27039893327898, -14.200706900242876, -11.671410032116526, + -8.867917243659612, -6.171539077603527, -3.852661260536288, + -1.883383952373921, -0.38173469433297963, 0.7995394223696061, + 1.7926617275538166, 2.607522227688878, 3.3422721248854814, + 3.924126353039368, 4.260559970089233, 4.289628902988233, + 3.9417007539008875, 3.234454817206478, 2.275846267067976, + 1.221124286167831, 0.20899269829031392, -0.5571062606869726, + -1.0419492575912634, -1.2549005261383623, -1.2549407123983358, + -1.1896505685329173, -1.1887308480589094, -1.3306727182057891, + -1.634322035888292, -2.021682122879835, -2.3985034697616854, + -2.6311365845188095, -2.6193527675263257, -2.3503884887463404, + -1.878236657146969, -1.3062197319353108, -0.7683205856803783, + -0.3978693663537889, -0.2182432704353984, -0.21474734433133905, + -0.2945294972730142, -0.32267287015441715, -0.1905119795864266, + 0.15333599187744926, 0.6733518373676338, 1.2523940723326643, + 1.7583414116743967, 2.0307115304513315, 2.040334551857232, + 1.8675288467945292, 1.7203389895517527, 1.9140144970433377, + 2.7878638276143377, 4.6203255564382815, 7.579789943892031, + 11.422015243491801, 16.030256092291392, 20.861597266590568, + 25.15171697374196 + ], + "pressure:branch115_seg1:J98": [ + 157770.06931289565, 176969.85295244196, 187767.92208677655, + 188152.36024973908, 179917.75853356323, 164818.01289535026, + 144868.09149660548, 122206.0271249646, 101002.72177529168, + 80595.28767586521, 62328.45384862237, 46357.13263648021, + 30816.598317970846, 16206.148500952513, 1314.8327573677843, + -13571.218198672635, -27839.472120067057, -41221.30033425167, + -52012.4258406629, -60505.49954773024, -66680.02326651034, + -70351.74918939242, -72641.62813186126, -73962.2295542263, + -74705.7405480582, -75059.97365953142, -74604.69345572541, + -72986.89817033225, -69921.25939891904, -65551.35100194682, + -60251.20256900408, -55468.679981628455, -52400.86664909009, + -52204.53284545862, -55975.6341132475, -63691.09945342269, + -74323.17150885702, -86187.95880499983, -97377.71327821299, + -105024.346780341, -107821.0159287888, -104896.29635440827, + -96081.02683599842, -82468.5582530251, -66753.3427428944, + -49789.5727777073, -33550.08989268216, -20239.984012114823, + -8961.886294861015, -333.6676276800603, 6279.490377196983, + 12212.70212400147, 16897.995464762043, 21068.79980702808, + 24468.917826873505, 26042.950754447873, 25691.188991489133, + 23090.866675944846, 18406.623698226493, 12236.343945039642, + 5909.684510482325, 79.69857827945903, -4314.784535545483, + -6766.106553608038, -7694.363521125192, -7534.178899800049, + -7113.844890842086, -7260.942368040197, -8357.449871309003, + -10405.913093003273, -12792.852429831297, -14945.25256810159, + -16109.103253540401, -15654.467399364696, -13652.570658870767, + -10568.387184397465, -7110.342681168011, -3926.3451655350095, + -1996.807830575076, -1244.2058549020037, -1373.6772111304138, + -1879.7225691286496, -1904.693489785401, -823.4700357345098, + 1529.5185742108467, 4899.848213612452, 8363.83203565809, + 11158.272925954505, 12507.048419864266, 12194.44537493636, + 10987.119852888998, 10340.636392778943, 12227.245285748779, + 18679.611052875945, 31205.788371639803, 50797.116973118995, + 75091.11055236851, 103469.13365222866, 133250.43531606626, + 157770.06931289565 + ], + "flow:J98:branch115_seg2": [ + 25.15171697374196, 28.6419840499619, 30.708967412924455, + 31.182652632182876, 30.17841221802031, 27.905541324985105, + 24.71586238836931, 21.12650152288459, 17.522762205053755, + 14.048765959936153, 11.010673697372194, 8.251062003545982, + 5.676018218076857, 3.252316202397588, 0.7593649769642234, + -1.6718982341716528, -4.064731395593484, -6.332534206302213, + -8.193283566740222, -9.714062316391958, -10.812429371466463, + -11.501969380006816, -11.939881944202558, -12.184807924994809, + -12.330081925089681, -12.405608753004513, -12.363412482057404, + -12.146612231812387, -11.701214092264454, -11.019512955241275, + -10.17316891115474, -9.354008701641613, -8.75061965291669, + -8.603734272071492, -9.077735685236663, -10.209777023062122, + -11.855874526518424, -13.810363948435532, -15.703359420760233, + -17.107898996492015, -17.790457683945057, -17.51627578062905, + -16.27039893327898, -14.200706900242876, -11.671410032116526, + -8.867917243659612, -6.171539077603527, -3.852661260536288, + -1.883383952373921, -0.38173469433297963, 0.7995394223696061, + 1.7926617275538166, 2.607522227688878, 3.3422721248854814, + 3.924126353039368, 4.260559970089233, 4.289628902988233, + 3.9417007539008875, 3.234454817206478, 2.275846267067976, + 1.221124286167831, 0.20899269829031392, -0.5571062606869726, + -1.0419492575912634, -1.2549005261383623, -1.2549407123983358, + -1.1896505685329173, -1.1887308480589094, -1.3306727182057891, + -1.634322035888292, -2.021682122879835, -2.3985034697616854, + -2.6311365845188095, -2.6193527675263257, -2.3503884887463404, + -1.878236657146969, -1.3062197319353108, -0.7683205856803783, + -0.3978693663537889, -0.2182432704353984, -0.21474734433133905, + -0.2945294972730142, -0.32267287015441715, -0.1905119795864266, + 0.15333599187744926, 0.6733518373676338, 1.2523940723326643, + 1.7583414116743967, 2.0307115304513315, 2.040334551857232, + 1.8675288467945292, 1.7203389895517527, 1.9140144970433377, + 2.7878638276143377, 4.6203255564382815, 7.579789943892031, + 11.422015243491801, 16.030256092291392, 20.861597266590568, + 25.15171697374196 + ], + "pressure:J98:branch115_seg2": [ + 157770.06931289565, 176969.85295244196, 187767.92208677655, + 188152.36024973908, 179917.75853356323, 164818.01289535026, + 144868.09149660548, 122206.0271249646, 101002.72177529168, + 80595.28767586521, 62328.45384862237, 46357.13263648021, + 30816.598317970846, 16206.148500952513, 1314.8327573677843, + -13571.218198672635, -27839.472120067057, -41221.30033425167, + -52012.4258406629, -60505.49954773024, -66680.02326651034, + -70351.74918939242, -72641.62813186126, -73962.2295542263, + -74705.7405480582, -75059.97365953142, -74604.69345572541, + -72986.89817033225, -69921.25939891904, -65551.35100194682, + -60251.20256900408, -55468.679981628455, -52400.86664909009, + -52204.53284545862, -55975.6341132475, -63691.09945342269, + -74323.17150885702, -86187.95880499983, -97377.71327821299, + -105024.346780341, -107821.0159287888, -104896.29635440827, + -96081.02683599842, -82468.5582530251, -66753.3427428944, + -49789.5727777073, -33550.08989268216, -20239.984012114823, + -8961.886294861015, -333.6676276800603, 6279.490377196983, + 12212.70212400147, 16897.995464762043, 21068.79980702808, + 24468.917826873505, 26042.950754447873, 25691.188991489133, + 23090.866675944846, 18406.623698226493, 12236.343945039642, + 5909.684510482325, 79.69857827945903, -4314.784535545483, + -6766.106553608038, -7694.363521125192, -7534.178899800049, + -7113.844890842086, -7260.942368040197, -8357.449871309003, + -10405.913093003273, -12792.852429831297, -14945.25256810159, + -16109.103253540401, -15654.467399364696, -13652.570658870767, + -10568.387184397465, -7110.342681168011, -3926.3451655350095, + -1996.807830575076, -1244.2058549020037, -1373.6772111304138, + -1879.7225691286496, -1904.693489785401, -823.4700357345098, + 1529.5185742108467, 4899.848213612452, 8363.83203565809, + 11158.272925954505, 12507.048419864266, 12194.44537493636, + 10987.119852888998, 10340.636392778943, 12227.245285748779, + 18679.611052875945, 31205.788371639803, 50797.116973118995, + 75091.11055236851, 103469.13365222866, 133250.43531606626, + 157770.06931289565 + ], + "flow:branch119_seg0:J99": [ + 39.30361995458315, 44.17113378570649, 46.686410918504734, + 46.691058139224566, 44.47354511266555, 40.45054463553284, + 35.21245037921077, 29.55523207750102, 24.125171048080915, + 19.001004846560654, 14.619675102396767, 10.703562529592093, + 7.015679162558625, 3.5321215290959476, -0.10178693157334788, + -3.6765104396469552, -7.169147696210139, -10.441042005492047, + -13.063452092898665, -15.141877474528474, -16.57060677343216, + -17.401144679441295, -17.892073834383442, -18.14021837109561, + -18.282559154986668, -18.343608214094814, -18.229839612506428, + -17.839582658376774, -17.088497574653196, -15.980160508556544, + -14.645081525731454, -13.412145399811235, -12.582374751297563, + -12.52363552185672, -13.468006375780003, -15.426679004724022, + -18.13293435252572, -21.202499127133468, -24.05932921796574, + -26.02366266664407, -26.7707512959443, -25.993648097810237, + -23.728520646689415, -20.268803908617134, -16.222756509300595, + -11.884265589292484, -7.856231565019317, -4.506282760688421, + -1.7408840380636121, 0.2941391909169865, 1.876310934513121, + 3.217046874853698, 4.322623018931221, 5.343474075968354, + 6.1339288336887625, 6.52968778642894, 6.440367859919629, + 5.763438378898075, 4.551548158487916, 2.98733660017245, 1.349808910703253, + -0.15990333088553807, -1.2401924184755408, -1.8466813089665495, + -2.0374602039059773, -1.930950984677593, -1.7715081058421485, + -1.7628676824774594, -2.011375203363321, -2.52135958316473, + -3.144480268954441, -3.718327067693887, -4.025339286955822, + -3.924497419115643, -3.417186116919385, -2.616207218292168, + -1.7003434831986037, -0.8874168318146642, -0.3810550108234673, + -0.1882875954277659, -0.2627592578628781, -0.4352707641937502, + -0.48393943173687665, -0.24411888536196852, 0.34179355394224054, + 1.1953274494765467, 2.098967391931114, 2.8411893575993923, + 3.181064931022267, 3.092183718129718, 2.7430088527400907, + 2.4977190752589786, 2.8736221277490825, 4.401000659864759, + 7.482538948438669, 12.326839984898992, 18.463031464716746, + 25.687056553583183, 33.027893101651934, 39.30361995458315 + ], + "pressure:branch119_seg0:J99": [ + 179414.81183911435, 194772.88999128784, 201273.3297161871, + 195013.62055847308, 180471.8749595731, 160562.71854750894, + 137434.4573343451, 111244.01507155674, 90143.10194426794, + 70407.33492731088, 51983.85336182076, 37254.78943585448, + 21585.37651295362, 6744.04853413744, -8176.3666207891265, + -23817.252396502186, -38157.335033983785, -51125.480887122685, + -60937.6814246862, -67955.36361962595, -72916.67484942556, + -75235.69859840667, -76538.9222181018, -77299.05763340894, + -77633.5371855962, -77691.5832541609, -76696.83345178801, + -74249.65454660151, -70117.1945405056, -64861.770334450004, + -58817.95552665686, -54149.43776946947, -52300.47203987641, + -53845.08914465409, -60164.38364395616, -70578.71988584028, + -83579.47147752834, -96428.31105991197, -107581.8627457023, + -113511.82934901642, -113085.34244600491, -106574.9061048417, + -93856.95322969365, -76563.17560565256, -58870.0022049289, + -40817.682093062576, -24058.803090691777, -12018.198168702429, + -1927.1192880767508, 5595.909724121887, 10963.773246664245, + 16701.80971119018, 20807.747540470096, 24416.31086621796, + 27562.091979452955, 28025.687600067333, 26290.411279130672, + 22223.230406166866, 16157.4561756753, 8690.368360424625, + 2015.0860201582532, -3434.4030625961677, -7348.19682421754, + -8669.691277841795, -8587.018496046165, -7836.791913272219, + -7205.312604005253, -7656.89864729747, -9369.81973471787, + -12077.37134955668, -14736.647869512506, -16749.873001072905, + -17379.816225084247, -15927.280952928795, -12844.292798167366, + -8954.366634692005, -5224.469701029356, -2021.492693619272, + -753.5763604790735, -828.9446084545955, -1445.4491745691037, + -2155.2463122524036, -1903.534789752615, -111.75595107327958, + 3067.857046765767, 7207.081745640859, 10853.15344950754, + 13187.754384189246, 13808.8143253775, 12492.899610006098, + 10675.763941592246, 10434.723221076072, 14043.015911652987, + 23648.685464689952, 40394.03152161722, 65260.48051458247, + 93451.20190392023, 124728.33073568298, 157285.53539342535, + 179414.81183911435 + ], + "flow:J99:branch119_seg1": [ + 39.30361995458315, 44.17113378570649, 46.686410918504734, + 46.691058139224566, 44.47354511266555, 40.45054463553284, + 35.21245037921077, 29.55523207750102, 24.125171048080915, + 19.001004846560654, 14.619675102396767, 10.703562529592093, + 7.015679162558625, 3.5321215290959476, -0.10178693157334788, + -3.6765104396469552, -7.169147696210139, -10.441042005492047, + -13.063452092898665, -15.141877474528474, -16.57060677343216, + -17.401144679441295, -17.892073834383442, -18.14021837109561, + -18.282559154986668, -18.343608214094814, -18.229839612506428, + -17.839582658376774, -17.088497574653196, -15.980160508556544, + -14.645081525731454, -13.412145399811235, -12.582374751297563, + -12.52363552185672, -13.468006375780003, -15.426679004724022, + -18.13293435252572, -21.202499127133468, -24.05932921796574, + -26.02366266664407, -26.7707512959443, -25.993648097810237, + -23.728520646689415, -20.268803908617134, -16.222756509300595, + -11.884265589292484, -7.856231565019317, -4.506282760688421, + -1.7408840380636121, 0.2941391909169865, 1.876310934513121, + 3.217046874853698, 4.322623018931221, 5.343474075968354, + 6.1339288336887625, 6.52968778642894, 6.440367859919629, + 5.763438378898075, 4.551548158487916, 2.98733660017245, 1.349808910703253, + -0.15990333088553807, -1.2401924184755408, -1.8466813089665495, + -2.0374602039059773, -1.930950984677593, -1.7715081058421485, + -1.7628676824774594, -2.011375203363321, -2.52135958316473, + -3.144480268954441, -3.718327067693887, -4.025339286955822, + -3.924497419115643, -3.417186116919385, -2.616207218292168, + -1.7003434831986037, -0.8874168318146642, -0.3810550108234673, + -0.1882875954277659, -0.2627592578628781, -0.4352707641937502, + -0.48393943173687665, -0.24411888536196852, 0.34179355394224054, + 1.1953274494765467, 2.098967391931114, 2.8411893575993923, + 3.181064931022267, 3.092183718129718, 2.7430088527400907, + 2.4977190752589786, 2.8736221277490825, 4.401000659864759, + 7.482538948438669, 12.326839984898992, 18.463031464716746, + 25.687056553583183, 33.027893101651934, 39.30361995458315 + ], + "pressure:J99:branch119_seg1": [ + 179414.81183911435, 194772.88999128784, 201273.3297161871, + 195013.62055847308, 180471.8749595731, 160562.71854750894, + 137434.4573343451, 111244.01507155674, 90143.10194426794, + 70407.33492731088, 51983.85336182076, 37254.78943585448, + 21585.37651295362, 6744.04853413744, -8176.3666207891265, + -23817.252396502186, -38157.335033983785, -51125.480887122685, + -60937.6814246862, -67955.36361962595, -72916.67484942556, + -75235.69859840667, -76538.9222181018, -77299.05763340894, + -77633.5371855962, -77691.5832541609, -76696.83345178801, + -74249.65454660151, -70117.1945405056, -64861.770334450004, + -58817.95552665686, -54149.43776946947, -52300.47203987641, + -53845.08914465409, -60164.38364395616, -70578.71988584028, + -83579.47147752834, -96428.31105991197, -107581.8627457023, + -113511.82934901642, -113085.34244600491, -106574.9061048417, + -93856.95322969365, -76563.17560565256, -58870.0022049289, + -40817.682093062576, -24058.803090691777, -12018.198168702429, + -1927.1192880767508, 5595.909724121887, 10963.773246664245, + 16701.80971119018, 20807.747540470096, 24416.31086621796, + 27562.091979452955, 28025.687600067333, 26290.411279130672, + 22223.230406166866, 16157.4561756753, 8690.368360424625, + 2015.0860201582532, -3434.4030625961677, -7348.19682421754, + -8669.691277841795, -8587.018496046165, -7836.791913272219, + -7205.312604005253, -7656.89864729747, -9369.81973471787, + -12077.37134955668, -14736.647869512506, -16749.873001072905, + -17379.816225084247, -15927.280952928795, -12844.292798167366, + -8954.366634692005, -5224.469701029356, -2021.492693619272, + -753.5763604790735, -828.9446084545955, -1445.4491745691037, + -2155.2463122524036, -1903.534789752615, -111.75595107327958, + 3067.857046765767, 7207.081745640859, 10853.15344950754, + 13187.754384189246, 13808.8143253775, 12492.899610006098, + 10675.763941592246, 10434.723221076072, 14043.015911652987, + 23648.685464689952, 40394.03152161722, 65260.48051458247, + 93451.20190392023, 124728.33073568298, 157285.53539342535, + 179414.81183911435 + ], + "flow:branch119_seg1:J100": [ + 39.23772095379957, 44.132045084764385, 46.68438364738359, + 46.71641781107393, 44.53286735896525, 40.52514229550098, + 35.28325849739126, 29.65708336913303, 24.185762654430707, + 19.04188449369421, 14.681581641186627, 10.741266860288444, + 7.058420049392444, 3.575688843535091, -0.08052554301293988, + -3.6285554660991015, -7.12678199403801, -10.43293725289762, + -13.037948145321636, -15.124341588288978, -16.566867629091185, + -17.39279888611396, -17.891032943620797, -18.139396522963942, + -18.27952862243232, -18.34498297347879, -18.23444147851189, + -17.849135002992664, -17.104711063053628, -15.999137190011984, + -14.663745450115744, -13.425293989925837, -12.582189853212597, + -12.510110923999619, -13.442325440605904, -15.396634524457149, + -18.085086717473995, -21.172291846752078, -24.04006739101017, + -26.014278449983717, -26.786681518218447, -26.02337807154561, + -23.767415911330044, -20.301556850277606, -16.272938008204125, + -11.937364977227096, -7.88728013725035, -4.544122558479197, + -1.76302996874149, 0.27661234492107384, 1.851725294952656, + 3.2016119250455937, 4.310044853939219, 5.330863644529098, + 6.125778194712181, 6.530545176106594, 6.449895946813217, + 5.781554400524339, 4.570197472282038, 3.0157621089012223, + 1.3675992099433183, -0.15628236051167416, -1.22970250558176, + -1.844991391436151, -2.042096116392577, -1.9328213366433211, + -1.7711609627407703, -1.7599872786224515, -2.0055575812823654, + -2.5157959423442184, -3.137811086206866, -3.7125605810297904, + -4.027480948377173, -3.930094740542474, -3.427539448621927, + -2.6285994641769364, -1.713132583230522, -0.8955809692797849, + -0.3832882677427864, -0.1871709605239582, -0.25942813774614587, + -0.43443609293244956, -0.4871197433808512, -0.2528260470980869, + 0.3314962932722954, 1.1808286910939894, 2.0901285399832883, + 2.842699886676189, 3.1817369070443093, 3.096259988398237, + 2.7466108309934545, 2.4942191006515575, 2.85684988152306, + 4.365611796324417, 7.426640888161032, 12.267281834673627, + 18.384538190151506, 25.568450662414957, 32.955999617514195, + 39.23772095379957 + ], + "pressure:branch119_seg1:J100": [ + 167265.31193359056, 185604.38767613596, 194660.01256875382, + 192479.88359076288, 181541.15230018148, 163903.16590237935, + 141875.26254402936, 117728.59449444592, 95751.11595551025, + 75203.71174831424, 57167.44497849794, 41525.85745536245, + 26270.59975417818, 11793.740619666085, -3154.6696212211023, + -18026.58253834967, -32379.762783709524, -45722.80733814224, + -56029.046976690785, -64022.940864636876, -69595.37095289066, + -72576.85524035516, -74359.24386906916, -75280.51590115945, + -75765.53292627551, -75967.24718031767, -75322.88565157379, + -73440.5954445167, -70011.845986727, -65235.92229319088, + -59564.33757483979, -54640.15868757218, -51762.57896452234, + -52110.10709785674, -56816.59304314488, -65679.93222030236, + -77380.95167741005, -90126.28424073228, -101655.78331202838, + -108981.60384680539, -110868.3034774813, -106536.66876909763, + -96043.28936132944, -80711.21585121079, -63831.96507387787, + -45979.01634793724, -29299.581057039035, -16248.12669411686, + -5311.065694333338, 2734.118829579446, 8767.539716166633, + 14397.074150852312, 18767.4621015135, 22731.708683954774, + 25961.11042789828, 27193.65463264582, 26363.285074049036, + 23161.150441391906, 17804.5620868115, 11057.363908232463, + 4313.497527416715, -1643.4395095741997, -5859.226752626949, + -7958.688618532206, -8445.022210572302, -7884.6147449346345, + -7230.7188202466805, -7362.417191449328, -8622.974603173543, + -10939.717036328168, -13521.16739410344, -15750.345048674153, + -16810.828783176257, -16029.938382340742, -13606.461486242275, + -10114.373966818259, -6381.141889449325, -3076.5429107774034, + -1277.411395845234, -791.8814665756612, -1195.9384474440092, + -1913.2569685218712, -1964.309035788752, -712.1897689039987, + 1963.20843739626, 5672.067689261219, 9379.65657174696, 12197.351668901107, + 13307.431138466733, 12611.596763195288, 11036.4976512939, + 10282.771424019706, 12524.196156473261, 19925.483509620524, + 33968.27390278474, 55631.52458319747, 81761.0357942269, + 111757.56726090168, 142939.99393506176, 167265.31193359056 + ], + "flow:J100:branch119_seg2": [ + 39.23772095379957, 44.132045084764385, 46.68438364738359, + 46.71641781107393, 44.53286735896525, 40.52514229550098, + 35.28325849739126, 29.65708336913303, 24.185762654430707, + 19.04188449369421, 14.681581641186627, 10.741266860288444, + 7.058420049392444, 3.575688843535091, -0.08052554301293988, + -3.6285554660991015, -7.12678199403801, -10.43293725289762, + -13.037948145321636, -15.124341588288978, -16.566867629091185, + -17.39279888611396, -17.891032943620797, -18.139396522963942, + -18.27952862243232, -18.34498297347879, -18.23444147851189, + -17.849135002992664, -17.104711063053628, -15.999137190011984, + -14.663745450115744, -13.425293989925837, -12.582189853212597, + -12.510110923999619, -13.442325440605904, -15.396634524457149, + -18.085086717473995, -21.172291846752078, -24.04006739101017, + -26.014278449983717, -26.786681518218447, -26.02337807154561, + -23.767415911330044, -20.301556850277606, -16.272938008204125, + -11.937364977227096, -7.88728013725035, -4.544122558479197, + -1.76302996874149, 0.27661234492107384, 1.851725294952656, + 3.2016119250455937, 4.310044853939219, 5.330863644529098, + 6.125778194712181, 6.530545176106594, 6.449895946813217, + 5.781554400524339, 4.570197472282038, 3.0157621089012223, + 1.3675992099433183, -0.15628236051167416, -1.22970250558176, + -1.844991391436151, -2.042096116392577, -1.9328213366433211, + -1.7711609627407703, -1.7599872786224515, -2.0055575812823654, + -2.5157959423442184, -3.137811086206866, -3.7125605810297904, + -4.027480948377173, -3.930094740542474, -3.427539448621927, + -2.6285994641769364, -1.713132583230522, -0.8955809692797849, + -0.3832882677427864, -0.1871709605239582, -0.25942813774614587, + -0.43443609293244956, -0.4871197433808512, -0.2528260470980869, + 0.3314962932722954, 1.1808286910939894, 2.0901285399832883, + 2.842699886676189, 3.1817369070443093, 3.096259988398237, + 2.7466108309934545, 2.4942191006515575, 2.85684988152306, + 4.365611796324417, 7.426640888161032, 12.267281834673627, + 18.384538190151506, 25.568450662414957, 32.955999617514195, + 39.23772095379957 + ], + "pressure:J100:branch119_seg2": [ + 167265.31193359056, 185604.38767613596, 194660.01256875382, + 192479.88359076288, 181541.15230018148, 163903.16590237935, + 141875.26254402936, 117728.59449444592, 95751.11595551025, + 75203.71174831424, 57167.44497849794, 41525.85745536245, + 26270.59975417818, 11793.740619666085, -3154.6696212211023, + -18026.58253834967, -32379.762783709524, -45722.80733814224, + -56029.046976690785, -64022.940864636876, -69595.37095289066, + -72576.85524035516, -74359.24386906916, -75280.51590115945, + -75765.53292627551, -75967.24718031767, -75322.88565157379, + -73440.5954445167, -70011.845986727, -65235.92229319088, + -59564.33757483979, -54640.15868757218, -51762.57896452234, + -52110.10709785674, -56816.59304314488, -65679.93222030236, + -77380.95167741005, -90126.28424073228, -101655.78331202838, + -108981.60384680539, -110868.3034774813, -106536.66876909763, + -96043.28936132944, -80711.21585121079, -63831.96507387787, + -45979.01634793724, -29299.581057039035, -16248.12669411686, + -5311.065694333338, 2734.118829579446, 8767.539716166633, + 14397.074150852312, 18767.4621015135, 22731.708683954774, + 25961.11042789828, 27193.65463264582, 26363.285074049036, + 23161.150441391906, 17804.5620868115, 11057.363908232463, + 4313.497527416715, -1643.4395095741997, -5859.226752626949, + -7958.688618532206, -8445.022210572302, -7884.6147449346345, + -7230.7188202466805, -7362.417191449328, -8622.974603173543, + -10939.717036328168, -13521.16739410344, -15750.345048674153, + -16810.828783176257, -16029.938382340742, -13606.461486242275, + -10114.373966818259, -6381.141889449325, -3076.5429107774034, + -1277.411395845234, -791.8814665756612, -1195.9384474440092, + -1913.2569685218712, -1964.309035788752, -712.1897689039987, + 1963.20843739626, 5672.067689261219, 9379.65657174696, 12197.351668901107, + 13307.431138466733, 12611.596763195288, 11036.4976512939, + 10282.771424019706, 12524.196156473261, 19925.483509620524, + 33968.27390278474, 55631.52458319747, 81761.0357942269, + 111757.56726090168, 142939.99393506176, 167265.31193359056 + ], + "flow:branch123_seg0:J101": [ + 32.70981613057024, 36.27734241304019, 37.846693545538464, + 37.309264299360194, 35.05629017083543, 31.453996642481297, + 26.98369915865702, 22.303193087858435, 17.98870239671088, + 13.898190609994018, 10.480193624863006, 7.44053721685732, + 4.4991148615797325, 1.7579011761356498, -1.1600719266787007, + -4.001174164572409, -6.717378757718301, -9.278120754190343, + -11.226930496357562, -12.727769199656732, -13.72922684266562, + -14.244312392199065, -14.534021071488251, -14.658302613951294, + -14.712152980223987, -14.710427799281046, -14.5523369686667, + -14.153349786186217, -13.454845647306438, -12.479883690431874, + -11.349184182418718, -10.372192285929964, -9.786224307989906, + -9.883043831707777, -10.83094737664854, -12.598240935270766, + -14.906353814362786, -17.41657142739345, -19.674730447810447, + -21.068670218798527, -21.425024810335998, -20.51963294145273, + -18.420911112089144, -15.404724199732382, -12.04024899236241, + -8.515585337087769, -5.30533929297216, -2.741407180337099, + -0.6323530887477399, 0.8844346439456486, 2.049525939439315, + 3.0763634484932245, 3.9044416849406947, 4.671881915781914, + 5.239966325407357, 5.446256202611479, 5.248598480876347, + 4.567282169582946, 3.469032060254867, 2.1215512963892493, + 0.7880405783312888, -0.41368771599604076, -1.2144531483416532, + -1.6108228570733818, -1.6970315587776472, -1.5648556132035811, + -1.4275007570071185, -1.4488138635436307, -1.6927281001268246, + -2.1438405108963607, -2.656083789619813, -3.0936535540323242, + -3.2848231718029597, -3.120088188667726, -2.629906675231771, + -1.9294789505734733, -1.1741979078632319, -0.5365839101685111, + -0.18660379625053786, -0.0922889510894095, -0.19630234588074677, + -0.3488654622155135, -0.3620636884125945, -0.11270470702469182, + 0.42026750920276934, 1.1530417738253793, 1.87539869325559, + 2.4331806160266636, 2.6267087594179372, 2.4684959877352064, + 2.142620092523476, 1.974414260048411, 2.40316553336691, + 3.8545402363405694, 6.620342015104998, 10.849075670662932, + 16.018197420877108, 21.971586005740495, 27.908060428627536, + 32.70981613057024 + ], + "pressure:branch123_seg0:J101": [ + 187133.5697505713, 201896.48086512528, 207617.74392932068, + 200131.3973993418, 184047.85184981464, 162778.722168528, + 138293.15192179364, 111082.84640540207, 89460.05524402857, + 68800.00984235127, 50055.42438043182, 35097.16498908931, + 18812.41402864183, 3751.047727666282, -11609.835933561724, + -27655.416772947407, -41842.507238298014, -55177.30525383265, + -65060.87406365885, -71618.2067798838, -76455.57354133052, + -78504.40257069963, -79489.47249794006, -80067.55266241102, + -80147.75007786133, -79970.2973880767, -78717.789300505, + -75908.70541294166, -71367.81791470527, -65732.40628619774, + -59346.06203264439, -54562.76213685466, -52806.0431406653, + -54722.81321086617, -61534.32501467649, -72616.17216039228, + -86180.06314870456, -99327.62870237774, -110805.89547187155, + -116502.58922081137, -115596.28265167255, -108465.78281968241, + -94902.58677760472, -76684.16884455066, -58041.97728175955, + -39610.231750424195, -22250.088762345255, -9887.521891433074, + 189.02782983604544, 7877.545029134754, 13150.114432965975, + 18870.62249652959, 23031.952513255008, 26515.709692549808, + 29456.814357235246, 29641.18658194991, 27503.98248997719, + 22960.62318437261, 16420.374463026903, 8505.491764275572, + 1650.7576798942027, -4046.1521956295214, -7972.70840609899, + -9140.395773921808, -9038.427073034743, -8226.823233052843, + -7565.007767403846, -8074.074330251181, -9897.351652094994, + -12715.402259677052, -15472.540302401896, -17425.426591912437, + -17951.933786937814, -16307.392644988931, -12952.493927380445, + -8826.133513614424, -4956.374861000435, -1698.225534798538, + -472.50558827584877, -661.5235147787564, -1388.458865087844, + -2100.1729051225598, -1776.2312181716322, 181.9111257283619, + 3549.644174710343, 7873.913252702917, 11537.220172663689, + 13865.159809734127, 14353.32593431064, 12818.70572260376, + 10922.831073356865, 10763.228730466639, 14750.880023795138, + 25049.836679325275, 42809.34958140651, 68957.82547535558, + 98703.02869328922, 130879.65635623725, 164372.72598490783, + 187133.5697505713 + ], + "flow:J101:branch123_seg1": [ + 32.70981613057024, 36.27734241304019, 37.846693545538464, + 37.309264299360194, 35.05629017083543, 31.453996642481297, + 26.98369915865702, 22.303193087858435, 17.98870239671088, + 13.898190609994018, 10.480193624863006, 7.44053721685732, + 4.4991148615797325, 1.7579011761356498, -1.1600719266787007, + -4.001174164572409, -6.717378757718301, -9.278120754190343, + -11.226930496357562, -12.727769199656732, -13.72922684266562, + -14.244312392199065, -14.534021071488251, -14.658302613951294, + -14.712152980223987, -14.710427799281046, -14.5523369686667, + -14.153349786186217, -13.454845647306438, -12.479883690431874, + -11.349184182418718, -10.372192285929964, -9.786224307989906, + -9.883043831707777, -10.83094737664854, -12.598240935270766, + -14.906353814362786, -17.41657142739345, -19.674730447810447, + -21.068670218798527, -21.425024810335998, -20.51963294145273, + -18.420911112089144, -15.404724199732382, -12.04024899236241, + -8.515585337087769, -5.30533929297216, -2.741407180337099, + -0.6323530887477399, 0.8844346439456486, 2.049525939439315, + 3.0763634484932245, 3.9044416849406947, 4.671881915781914, + 5.239966325407357, 5.446256202611479, 5.248598480876347, + 4.567282169582946, 3.469032060254867, 2.1215512963892493, + 0.7880405783312888, -0.41368771599604076, -1.2144531483416532, + -1.6108228570733818, -1.6970315587776472, -1.5648556132035811, + -1.4275007570071185, -1.4488138635436307, -1.6927281001268246, + -2.1438405108963607, -2.656083789619813, -3.0936535540323242, + -3.2848231718029597, -3.120088188667726, -2.629906675231771, + -1.9294789505734733, -1.1741979078632319, -0.5365839101685111, + -0.18660379625053786, -0.0922889510894095, -0.19630234588074677, + -0.3488654622155135, -0.3620636884125945, -0.11270470702469182, + 0.42026750920276934, 1.1530417738253793, 1.87539869325559, + 2.4331806160266636, 2.6267087594179372, 2.4684959877352064, + 2.142620092523476, 1.974414260048411, 2.40316553336691, + 3.8545402363405694, 6.620342015104998, 10.849075670662932, + 16.018197420877108, 21.971586005740495, 27.908060428627536, + 32.70981613057024 + ], + "pressure:J101:branch123_seg1": [ + 187133.5697505713, 201896.48086512528, 207617.74392932068, + 200131.3973993418, 184047.85184981464, 162778.722168528, + 138293.15192179364, 111082.84640540207, 89460.05524402857, + 68800.00984235127, 50055.42438043182, 35097.16498908931, + 18812.41402864183, 3751.047727666282, -11609.835933561724, + -27655.416772947407, -41842.507238298014, -55177.30525383265, + -65060.87406365885, -71618.2067798838, -76455.57354133052, + -78504.40257069963, -79489.47249794006, -80067.55266241102, + -80147.75007786133, -79970.2973880767, -78717.789300505, + -75908.70541294166, -71367.81791470527, -65732.40628619774, + -59346.06203264439, -54562.76213685466, -52806.0431406653, + -54722.81321086617, -61534.32501467649, -72616.17216039228, + -86180.06314870456, -99327.62870237774, -110805.89547187155, + -116502.58922081137, -115596.28265167255, -108465.78281968241, + -94902.58677760472, -76684.16884455066, -58041.97728175955, + -39610.231750424195, -22250.088762345255, -9887.521891433074, + 189.02782983604544, 7877.545029134754, 13150.114432965975, + 18870.62249652959, 23031.952513255008, 26515.709692549808, + 29456.814357235246, 29641.18658194991, 27503.98248997719, + 22960.62318437261, 16420.374463026903, 8505.491764275572, + 1650.7576798942027, -4046.1521956295214, -7972.70840609899, + -9140.395773921808, -9038.427073034743, -8226.823233052843, + -7565.007767403846, -8074.074330251181, -9897.351652094994, + -12715.402259677052, -15472.540302401896, -17425.426591912437, + -17951.933786937814, -16307.392644988931, -12952.493927380445, + -8826.133513614424, -4956.374861000435, -1698.225534798538, + -472.50558827584877, -661.5235147787564, -1388.458865087844, + -2100.1729051225598, -1776.2312181716322, 181.9111257283619, + 3549.644174710343, 7873.913252702917, 11537.220172663689, + 13865.159809734127, 14353.32593431064, 12818.70572260376, + 10922.831073356865, 10763.228730466639, 14750.880023795138, + 25049.836679325275, 42809.34958140651, 68957.82547535558, + 98703.02869328922, 130879.65635623725, 164372.72598490783, + 187133.5697505713 + ], + "flow:branch123_seg1:J102": [ + 32.62831070128147, 36.24319706546321, 37.84331288144044, + 37.337588702249285, 35.126366776126474, 31.550541892920112, + 27.074450238776894, 22.431500412510374, 18.077824128314237, + 13.956022873589783, 10.555212341328948, 7.491618350389469, + 4.5537083442878314, 1.8089116938930794, -1.1317880002783527, + -3.9520112395776925, -6.676359458247653, -9.270932614844575, + -11.206270100463694, -12.715228394208554, -13.728877002602998, + -14.237920061301216, -14.5351986948352, -14.658376362170927, + -14.710151573361346, -14.712625906508046, -14.557954507403865, + -14.165061794407087, -13.474567601588657, -12.503805897901431, + -11.372219790488767, -10.39085954451451, -9.787557704831116, + -9.865545704300551, -10.79923686938469, -12.558037794027078, + -14.847475363672062, -17.378546156219393, -19.65057021824264, + -21.061431516240056, -21.44629539018083, -20.558596881833576, + -18.464847655898915, -15.439469788603864, -12.091104826641917, + -8.565429694216872, -5.334788786264411, -2.78069358112161, + -0.6509683754699437, 0.8650692677563918, 2.0234746937041135, + 3.0593563606126764, 3.8856451834715555, 4.658168425111387, + 5.2302792172927255, 5.4457803296586285, 5.260396642146731, + 4.590797160486449, 3.4933417686620007, 2.158413802941056, + 0.8122055703255708, -0.40632956785647845, -1.2049650293963157, + -1.6090867450935866, -1.7027563187537371, -1.567667624716091, + -1.4269263052644658, -1.4450708291625871, -1.686172628964117, + -2.1383367713619092, -2.6496952953838635, -3.089341381146483, + -3.287888830556655, -3.126623047785696, -2.6415465218901812, + -1.9436279334797355, -1.1888054599964812, -0.5460040738054488, + -0.19126545474519713, -0.09105227324871883, -0.19205523994977752, + -0.3480239634036949, -0.36586529508417914, -0.12382309095307835, + 0.40712300746313873, 1.1342968052747198, 1.8643066564778177, + 2.4341550657356503, 2.6299460117630127, 2.473893436707235, + 2.1466578717165663, 1.9692735558199863, 2.382078407217794, + 3.8133952194640717, 6.559328030876591, 10.788354091298789, + 15.936194690827959, 21.85492262564447, 27.83271965663213, + 32.62831070128147 + ], + "pressure:branch123_seg1:J102": [ + 174744.71198295767, 193283.61060534458, 201372.2873450937, + 198026.99030319156, 185714.56332410927, 166460.17773674388, + 142648.91721965183, 117712.40496090318, 94851.24119202359, + 73185.41016789617, 55085.10002400007, 39036.58778406991, + 23387.01613047623, 8784.147879615923, -6756.449058797042, + -21832.322703822112, -36223.458306583925, -49908.81512287117, + -60100.86468994122, -67893.68851261429, -73190.69062089783, + -75796.40659414965, -77292.29417586928, -77935.59082225968, + -78184.21696036731, -78173.89761360823, -77297.82606069952, + -75120.53339635697, -71346.24710744618, -66141.17018184933, + -60096.38059321838, -54957.76930700997, -51958.532847972914, + -52574.86929216138, -57773.127224119824, -67328.43025312533, + -79646.609268763, -93021.61772943195, -104982.34716139013, + -112217.72364309033, -113860.4436261085, -108833.06325628735, + -97406.80246110703, -81081.0803367138, -63226.065404024615, + -44585.912068219266, -27434.7932761881, -14069.551016677338, + -2950.2376124358557, 5032.5005465176755, 11047.178438507735, + 16568.927511766036, 20914.707025985263, 24923.574195636254, + 27942.447548490407, 28953.815566866786, 27815.22997632317, + 24134.13893527781, 18221.455312503193, 11037.817556327675, + 3942.490202600252, -2410.5009655727267, -6598.650300487078, + -8607.15506037179, -9022.586691059705, -8293.310844874835, + -7558.623106782211, -7710.825471302617, -9062.59909026997, + -11516.12878144817, -14231.19750492528, -16508.539734369224, + -17489.627766762173, -16527.237737975673, -13850.858812579592, + -10095.404788868018, -6115.448730933079, -2729.4483257192483, + -939.7477486142343, -506.85320755597, -1067.4800081594722, + -1878.5463815354447, -1916.4412064868732, -543.076886266738, + 2345.2176571781415, 6260.464533018558, 10101.049256091466, + 13026.77279337942, 13989.029046485064, 13065.429927953539, + 11309.43932288665, 10475.096306848509, 12906.112103559935, + 20856.829513348155, 35840.103207744985, 58755.50987839874, + 86356.65490911633, 117805.87628610636, 149723.7972190609, + 174744.71198295767 + ], + "flow:J102:branch123_seg2": [ + 32.62831070128147, 36.24319706546321, 37.84331288144044, + 37.337588702249285, 35.126366776126474, 31.550541892920112, + 27.074450238776894, 22.431500412510374, 18.077824128314237, + 13.956022873589783, 10.555212341328948, 7.491618350389469, + 4.5537083442878314, 1.8089116938930794, -1.1317880002783527, + -3.9520112395776925, -6.676359458247653, -9.270932614844575, + -11.206270100463694, -12.715228394208554, -13.728877002602998, + -14.237920061301216, -14.5351986948352, -14.658376362170927, + -14.710151573361346, -14.712625906508046, -14.557954507403865, + -14.165061794407087, -13.474567601588657, -12.503805897901431, + -11.372219790488767, -10.39085954451451, -9.787557704831116, + -9.865545704300551, -10.79923686938469, -12.558037794027078, + -14.847475363672062, -17.378546156219393, -19.65057021824264, + -21.061431516240056, -21.44629539018083, -20.558596881833576, + -18.464847655898915, -15.439469788603864, -12.091104826641917, + -8.565429694216872, -5.334788786264411, -2.78069358112161, + -0.6509683754699437, 0.8650692677563918, 2.0234746937041135, + 3.0593563606126764, 3.8856451834715555, 4.658168425111387, + 5.2302792172927255, 5.4457803296586285, 5.260396642146731, + 4.590797160486449, 3.4933417686620007, 2.158413802941056, + 0.8122055703255708, -0.40632956785647845, -1.2049650293963157, + -1.6090867450935866, -1.7027563187537371, -1.567667624716091, + -1.4269263052644658, -1.4450708291625871, -1.686172628964117, + -2.1383367713619092, -2.6496952953838635, -3.089341381146483, + -3.287888830556655, -3.126623047785696, -2.6415465218901812, + -1.9436279334797355, -1.1888054599964812, -0.5460040738054488, + -0.19126545474519713, -0.09105227324871883, -0.19205523994977752, + -0.3480239634036949, -0.36586529508417914, -0.12382309095307835, + 0.40712300746313873, 1.1342968052747198, 1.8643066564778177, + 2.4341550657356503, 2.6299460117630127, 2.473893436707235, + 2.1466578717165663, 1.9692735558199863, 2.382078407217794, + 3.8133952194640717, 6.559328030876591, 10.788354091298789, + 15.936194690827959, 21.85492262564447, 27.83271965663213, + 32.62831070128147 + ], + "pressure:J102:branch123_seg2": [ + 174744.71198295767, 193283.61060534458, 201372.2873450937, + 198026.99030319156, 185714.56332410927, 166460.17773674388, + 142648.91721965183, 117712.40496090318, 94851.24119202359, + 73185.41016789617, 55085.10002400007, 39036.58778406991, + 23387.01613047623, 8784.147879615923, -6756.449058797042, + -21832.322703822112, -36223.458306583925, -49908.81512287117, + -60100.86468994122, -67893.68851261429, -73190.69062089783, + -75796.40659414965, -77292.29417586928, -77935.59082225968, + -78184.21696036731, -78173.89761360823, -77297.82606069952, + -75120.53339635697, -71346.24710744618, -66141.17018184933, + -60096.38059321838, -54957.76930700997, -51958.532847972914, + -52574.86929216138, -57773.127224119824, -67328.43025312533, + -79646.609268763, -93021.61772943195, -104982.34716139013, + -112217.72364309033, -113860.4436261085, -108833.06325628735, + -97406.80246110703, -81081.0803367138, -63226.065404024615, + -44585.912068219266, -27434.7932761881, -14069.551016677338, + -2950.2376124358557, 5032.5005465176755, 11047.178438507735, + 16568.927511766036, 20914.707025985263, 24923.574195636254, + 27942.447548490407, 28953.815566866786, 27815.22997632317, + 24134.13893527781, 18221.455312503193, 11037.817556327675, + 3942.490202600252, -2410.5009655727267, -6598.650300487078, + -8607.15506037179, -9022.586691059705, -8293.310844874835, + -7558.623106782211, -7710.825471302617, -9062.59909026997, + -11516.12878144817, -14231.19750492528, -16508.539734369224, + -17489.627766762173, -16527.237737975673, -13850.858812579592, + -10095.404788868018, -6115.448730933079, -2729.4483257192483, + -939.7477486142343, -506.85320755597, -1067.4800081594722, + -1878.5463815354447, -1916.4412064868732, -543.076886266738, + 2345.2176571781415, 6260.464533018558, 10101.049256091466, + 13026.77279337942, 13989.029046485064, 13065.429927953539, + 11309.43932288665, 10475.096306848509, 12906.112103559935, + 20856.829513348155, 35840.103207744985, 58755.50987839874, + 86356.65490911633, 117805.87628610636, 149723.7972190609, + 174744.71198295767 + ], + "flow:branch124_seg0:J103": [ + 45.112943021757516, 51.74165675369201, 55.83225136735304, + 57.04364005924281, 55.46734083466448, 51.473056089115246, + 45.69956153557182, 39.07427172557659, 32.32814433659021, + 25.82034265795843, 20.07670059848902, 14.90064325615507, + 10.144961619842904, 5.691573362337295, 1.189084858764004, + -3.2183593114626987, -7.563352823232097, -11.659489922589273, + -15.100837087153876, -17.909219961964126, -19.933662231100616, + -21.217788457438182, -21.99631651110752, -22.402361296732334, + -22.613833394876554, -22.693348070498224, -22.579458060993005, + -22.171548780253886, -21.364691909552246, -20.131314233105417, + -18.583946727492396, -17.040540017472694, -15.845117916767554, + -15.43946037215152, -16.13811547772739, -18.044967680789508, + -20.95222082103627, -24.491991395209556, -28.006142179349094, + -30.74486361768916, -32.20679783535146, -31.947835409450533, + -29.890461314161428, -26.276359930718602, -21.688694668421494, + -16.53679299448526, -11.523757130799272, -7.116384217106026, + -3.387418937710981, -0.5224665435192578, 1.7168440187899827, + 3.5404015823148067, 5.027182914347191, 6.348222180226932, + 7.393057258391735, 8.019518265507541, 8.09945381813431, 7.502131932104982, + 6.243582691305586, 4.496333202260422, 2.531923892850206, + 0.6197840648961963, -0.8857680814438144, -1.8770437245729512, + -2.345046472395498, -2.3956251648668596, -2.281464362908077, + -2.244643456140487, -2.449855963754971, -2.9496280854564043, + -3.630480085099746, -4.322616091494595, -4.780364028223738, + -4.817757108535456, -4.383418761383763, -3.5550769694715303, + -2.511565221224332, -1.4996610448381793, -0.7615444491484723, + -0.3697738954429334, -0.31801130726665067, -0.44782047543975234, + -0.5218832885821845, -0.3320172933836977, 0.23573542463632788, + 1.1404830848410448, 2.190158539006057, 3.140056064932989, + 3.7024748154699747, 3.787463258868937, 3.5065786267192918, + 3.210214824458633, 3.455703464386118, 4.863553917222147, + 7.974514968829015, 13.106119636950833, 19.952224021882454, + 28.27477584757037, 37.07356039864164, 45.112943021757516 + ], + "pressure:branch124_seg0:J103": [ + 172485.12523300402, 190061.74092767228, 198985.58711705383, + 195985.41810867656, 184197.5143063804, 166066.97536626065, + 143689.4057831649, 118492.66448249295, 96330.45528081547, + 75332.21905051515, 56456.811844085416, 40569.07676959425, + 24509.329153995248, 9495.730572944613, -5753.26362242849, + -21133.678548837506, -35464.35120204732, -49000.83538978479, + -59338.303209011116, -66962.85057434485, -72547.72241720953, + -75397.82640983055, -77012.72734721558, -77866.38829901634, + -78163.80907509694, -78166.99906329163, -77250.34974443442, + -75009.56196226855, -71201.33352815655, -66170.11993573977, + -60263.14891722388, -55318.09582783882, -52689.764672727026, + -53284.80956646945, -58348.66713590826, -67599.54234331961, + -79616.98923240796, -92315.25329955656, -103892.35683375591, + -110923.46942884439, -112264.38113601609, -107537.06892720007, + -96552.96219610803, -80604.7438165254, -63422.06608019758, + -45521.164846854845, -28329.023719162797, -15203.2443571402, + -4183.272026236611, 4188.635474960017, 10224.547878259837, + 16135.095013230926, 20581.547836542948, 24374.391812496015, + 27551.672021565944, 28482.898174557067, 27286.727380830594, + 23758.004831922466, 18122.328860830858, 11048.436970038172, + 4244.6782890185705, -1725.503153367118, -6041.952546381435, + -8050.272367428988, -8585.619964327228, -8137.415864879201, + -7570.582055988236, -7830.737503321998, -9208.943568538487, + -11595.756381675918, -14137.06335675522, -16214.530431987192, + -17149.07695656529, -16186.163762073376, -13578.699719447008, + -9993.733133653443, -6298.855447027835, -2977.004315173541, + -1261.2343143185224, -878.09333790059, -1237.3473737815827, + -1852.2710710344606, -1760.5884548589102, -333.50985748773553, + 2462.017535310702, 6263.2320798931005, 9894.413641677364, + 12561.755132090662, 13566.931502878455, 12733.344115144602, + 11191.693663619602, 10704.614100315575, 13446.601475357234, + 21562.734674844327, 36406.39730988852, 59152.785100145375, + 86023.27847563967, 116188.44654754334, 148355.98271651432, + 172485.12523300402 + ], + "flow:J103:branch124_seg1": [ + 45.112943021757516, 51.74165675369201, 55.83225136735304, + 57.04364005924281, 55.46734083466448, 51.473056089115246, + 45.69956153557182, 39.07427172557659, 32.32814433659021, + 25.82034265795843, 20.07670059848902, 14.90064325615507, + 10.144961619842904, 5.691573362337295, 1.189084858764004, + -3.2183593114626987, -7.563352823232097, -11.659489922589273, + -15.100837087153876, -17.909219961964126, -19.933662231100616, + -21.217788457438182, -21.99631651110752, -22.402361296732334, + -22.613833394876554, -22.693348070498224, -22.579458060993005, + -22.171548780253886, -21.364691909552246, -20.131314233105417, + -18.583946727492396, -17.040540017472694, -15.845117916767554, + -15.43946037215152, -16.13811547772739, -18.044967680789508, + -20.95222082103627, -24.491991395209556, -28.006142179349094, + -30.74486361768916, -32.20679783535146, -31.947835409450533, + -29.890461314161428, -26.276359930718602, -21.688694668421494, + -16.53679299448526, -11.523757130799272, -7.116384217106026, + -3.387418937710981, -0.5224665435192578, 1.7168440187899827, + 3.5404015823148067, 5.027182914347191, 6.348222180226932, + 7.393057258391735, 8.019518265507541, 8.09945381813431, 7.502131932104982, + 6.243582691305586, 4.496333202260422, 2.531923892850206, + 0.6197840648961963, -0.8857680814438144, -1.8770437245729512, + -2.345046472395498, -2.3956251648668596, -2.281464362908077, + -2.244643456140487, -2.449855963754971, -2.9496280854564043, + -3.630480085099746, -4.322616091494595, -4.780364028223738, + -4.817757108535456, -4.383418761383763, -3.5550769694715303, + -2.511565221224332, -1.4996610448381793, -0.7615444491484723, + -0.3697738954429334, -0.31801130726665067, -0.44782047543975234, + -0.5218832885821845, -0.3320172933836977, 0.23573542463632788, + 1.1404830848410448, 2.190158539006057, 3.140056064932989, + 3.7024748154699747, 3.787463258868937, 3.5065786267192918, + 3.210214824458633, 3.455703464386118, 4.863553917222147, + 7.974514968829015, 13.106119636950833, 19.952224021882454, + 28.27477584757037, 37.07356039864164, 45.112943021757516 + ], + "pressure:J103:branch124_seg1": [ + 172485.12523300402, 190061.74092767228, 198985.58711705383, + 195985.41810867656, 184197.5143063804, 166066.97536626065, + 143689.4057831649, 118492.66448249295, 96330.45528081547, + 75332.21905051515, 56456.811844085416, 40569.07676959425, + 24509.329153995248, 9495.730572944613, -5753.26362242849, + -21133.678548837506, -35464.35120204732, -49000.83538978479, + -59338.303209011116, -66962.85057434485, -72547.72241720953, + -75397.82640983055, -77012.72734721558, -77866.38829901634, + -78163.80907509694, -78166.99906329163, -77250.34974443442, + -75009.56196226855, -71201.33352815655, -66170.11993573977, + -60263.14891722388, -55318.09582783882, -52689.764672727026, + -53284.80956646945, -58348.66713590826, -67599.54234331961, + -79616.98923240796, -92315.25329955656, -103892.35683375591, + -110923.46942884439, -112264.38113601609, -107537.06892720007, + -96552.96219610803, -80604.7438165254, -63422.06608019758, + -45521.164846854845, -28329.023719162797, -15203.2443571402, + -4183.272026236611, 4188.635474960017, 10224.547878259837, + 16135.095013230926, 20581.547836542948, 24374.391812496015, + 27551.672021565944, 28482.898174557067, 27286.727380830594, + 23758.004831922466, 18122.328860830858, 11048.436970038172, + 4244.6782890185705, -1725.503153367118, -6041.952546381435, + -8050.272367428988, -8585.619964327228, -8137.415864879201, + -7570.582055988236, -7830.737503321998, -9208.943568538487, + -11595.756381675918, -14137.06335675522, -16214.530431987192, + -17149.07695656529, -16186.163762073376, -13578.699719447008, + -9993.733133653443, -6298.855447027835, -2977.004315173541, + -1261.2343143185224, -878.09333790059, -1237.3473737815827, + -1852.2710710344606, -1760.5884548589102, -333.50985748773553, + 2462.017535310702, 6263.2320798931005, 9894.413641677364, + 12561.755132090662, 13566.931502878455, 12733.344115144602, + 11191.693663619602, 10704.614100315575, 13446.601475357234, + 21562.734674844327, 36406.39730988852, 59152.785100145375, + 86023.27847563967, 116188.44654754334, 148355.98271651432, + 172485.12523300402 + ], + "flow:branch124_seg1:J104": [ + 45.088144268130804, 51.728196639391776, 55.828200074803675, + 57.04961116213979, 55.484987395839795, 51.4964032808312, + 45.721676741354806, 39.10568436759153, 32.351245609130814, + 25.835962636432455, 20.096402737081487, 14.915057281400136, + 10.159573347343759, 5.7067305660789, 1.1988921448540804, + -3.2037441106838678, -7.54845410100044, -11.652608237722498, + -15.091981719799774, -17.902931206447175, -19.930791246023624, + -21.214813854778395, -21.99553170321416, -22.401930626482315, + -22.613233588721382, -22.6937100912984, -22.58087643205274, + -22.174541616046522, -21.36984208564136, -20.13731636001497, + -18.590200867144016, -17.045391344258412, -15.845810761297418, + -15.43609128765322, -16.13092610584361, -18.035380207890185, + -20.937920926479695, -24.48081563945405, -27.998207566198076, + -30.740247749067457, -32.209876141720734, -31.956011206953242, + -29.902864092969104, -26.289336771860416, -21.705639449529393, + -16.55429839259536, -11.53736352458923, -7.129987085070703, + -3.3961799460683597, -0.529785334352413, 1.70945887180601, + 3.534491612720658, 5.0223241200010085, 6.344621837714151, + 7.390229695314237, 8.019198189893427, 8.102148216981965, + 7.507469830561249, 6.249518845860245, 4.505013451139919, + 2.538603760075158, 0.6224256556126171, -0.8823546527703257, + -1.875677400720624, -2.345807606977054, -2.3961594425869364, + -2.281520343895447, -2.243942233989033, -2.4481040063440433, + -2.947564372128762, -3.6281662061770956, -4.320783295787277, + -4.780418659283504, -4.819283652045468, -4.386610801118464, + -3.5592072188534742, -2.5155693719518286, -1.502770489576946, + -0.7628974807261539, -0.3695470054200326, -0.3171254900728766, + -0.4475235556180027, -0.5226623929668621, -0.3344178237796789, + 0.23257927697447636, 1.13607513587269, 2.1868669717395366, + 3.139605946563462, 3.7024860903392582, 3.78852494840042, 3.50780976726199, + 3.209567456510524, 3.4509374478571626, 4.853016303140329, + 7.956790104045052, 13.084680956059458, 19.92508013475421, + 28.239634517176523, 37.04422198932354, 45.088144268130804 + ], + "pressure:branch124_seg1:J104": [ + 167565.33199043543, 186081.06729914306, 196046.06054927188, + 194545.92664464604, 184186.9808833059, 167126.2487992786, + 145460.6357443712, 120964.92309520551, 98663.71507527937, + 77553.72445697659, 58647.69954753339, 42456.29482048916, + 26474.31255093259, 11479.512508541582, -3725.7021012739006, + -18899.347516908412, -33279.945767177014, -46875.20791630007, + -57385.63476202486, -65366.673452310526, -71203.92907173386, + -74329.4484211428, -76156.85100903852, -77108.23004221066, + -77483.89848484087, -77549.96562210827, -76748.87880264044, + -74700.78793657366, -71138.93100401503, -66313.77327075877, + -60568.55982193219, -55578.45527689885, -52658.83092946068, + -52815.91057370097, -57290.588279572556, -65921.19406275207, + -77416.24717721075, -89953.98927605968, -101556.9798229654, + -109037.87516840712, -111130.91043849238, -107219.10377779741, + -97098.70061142911, -81931.02133131596, -65220.580418234174, + -47503.68867946329, -30382.031622049264, -16996.04409425218, + -5668.8554716195395, 2930.2869448339998, 9226.534216476484, + 15197.058705320032, 19737.846947529088, 23643.33174443242, + 26897.467442332694, 28080.501491075058, 27201.893310147025, + 24016.0530627274, 18687.721751467496, 11900.410031470086, + 5124.223295956034, -933.2678209823694, -5384.214390775512, + -7671.799723293159, -8422.642279910924, -8098.250331228897, + -7565.563298067695, -7743.5364778514695, -8975.125835522122, + -11216.987980656198, -13690.527108711442, -15810.742515492368, + -16879.101539787458, -16143.557802928539, -13785.246890032195, + -10380.301251478119, -6744.357194088842, -3404.3230619930764, + -1529.9708335568416, -954.6896700394593, -1193.1794209052405, + -1773.9236688248698, -1758.341956882692, -508.2170780868716, + 2095.534046445929, 5720.387886635954, 9337.815339252245, + 12116.663616234673, 13299.407806892912, 12700.19401497463, + 11279.822673902265, 10681.970679647495, 13007.68949966265, + 20390.628895581885, 34266.73286327184, 55859.004822973286, + 81789.33251319615, 111299.54778080752, 142984.84598354058, + 167565.33199043543 + ], + "flow:J104:branch124_seg2": [ + 45.088144268130804, 51.728196639391776, 55.828200074803675, + 57.04961116213979, 55.484987395839795, 51.4964032808312, + 45.721676741354806, 39.10568436759153, 32.351245609130814, + 25.835962636432455, 20.096402737081487, 14.915057281400136, + 10.159573347343759, 5.7067305660789, 1.1988921448540804, + -3.2037441106838678, -7.54845410100044, -11.652608237722498, + -15.091981719799774, -17.902931206447175, -19.930791246023624, + -21.214813854778395, -21.99553170321416, -22.401930626482315, + -22.613233588721382, -22.6937100912984, -22.58087643205274, + -22.174541616046522, -21.36984208564136, -20.13731636001497, + -18.590200867144016, -17.045391344258412, -15.845810761297418, + -15.43609128765322, -16.13092610584361, -18.035380207890185, + -20.937920926479695, -24.48081563945405, -27.998207566198076, + -30.740247749067457, -32.209876141720734, -31.956011206953242, + -29.902864092969104, -26.289336771860416, -21.705639449529393, + -16.55429839259536, -11.53736352458923, -7.129987085070703, + -3.3961799460683597, -0.529785334352413, 1.70945887180601, + 3.534491612720658, 5.0223241200010085, 6.344621837714151, + 7.390229695314237, 8.019198189893427, 8.102148216981965, + 7.507469830561249, 6.249518845860245, 4.505013451139919, + 2.538603760075158, 0.6224256556126171, -0.8823546527703257, + -1.875677400720624, -2.345807606977054, -2.3961594425869364, + -2.281520343895447, -2.243942233989033, -2.4481040063440433, + -2.947564372128762, -3.6281662061770956, -4.320783295787277, + -4.780418659283504, -4.819283652045468, -4.386610801118464, + -3.5592072188534742, -2.5155693719518286, -1.502770489576946, + -0.7628974807261539, -0.3695470054200326, -0.3171254900728766, + -0.4475235556180027, -0.5226623929668621, -0.3344178237796789, + 0.23257927697447636, 1.13607513587269, 2.1868669717395366, + 3.139605946563462, 3.7024860903392582, 3.78852494840042, 3.50780976726199, + 3.209567456510524, 3.4509374478571626, 4.853016303140329, + 7.956790104045052, 13.084680956059458, 19.92508013475421, + 28.239634517176523, 37.04422198932354, 45.088144268130804 + ], + "pressure:J104:branch124_seg2": [ + 167565.33199043543, 186081.06729914306, 196046.06054927188, + 194545.92664464604, 184186.9808833059, 167126.2487992786, + 145460.6357443712, 120964.92309520551, 98663.71507527937, + 77553.72445697659, 58647.69954753339, 42456.29482048916, + 26474.31255093259, 11479.512508541582, -3725.7021012739006, + -18899.347516908412, -33279.945767177014, -46875.20791630007, + -57385.63476202486, -65366.673452310526, -71203.92907173386, + -74329.4484211428, -76156.85100903852, -77108.23004221066, + -77483.89848484087, -77549.96562210827, -76748.87880264044, + -74700.78793657366, -71138.93100401503, -66313.77327075877, + -60568.55982193219, -55578.45527689885, -52658.83092946068, + -52815.91057370097, -57290.588279572556, -65921.19406275207, + -77416.24717721075, -89953.98927605968, -101556.9798229654, + -109037.87516840712, -111130.91043849238, -107219.10377779741, + -97098.70061142911, -81931.02133131596, -65220.580418234174, + -47503.68867946329, -30382.031622049264, -16996.04409425218, + -5668.8554716195395, 2930.2869448339998, 9226.534216476484, + 15197.058705320032, 19737.846947529088, 23643.33174443242, + 26897.467442332694, 28080.501491075058, 27201.893310147025, + 24016.0530627274, 18687.721751467496, 11900.410031470086, + 5124.223295956034, -933.2678209823694, -5384.214390775512, + -7671.799723293159, -8422.642279910924, -8098.250331228897, + -7565.563298067695, -7743.5364778514695, -8975.125835522122, + -11216.987980656198, -13690.527108711442, -15810.742515492368, + -16879.101539787458, -16143.557802928539, -13785.246890032195, + -10380.301251478119, -6744.357194088842, -3404.3230619930764, + -1529.9708335568416, -954.6896700394593, -1193.1794209052405, + -1773.9236688248698, -1758.341956882692, -508.2170780868716, + 2095.534046445929, 5720.387886635954, 9337.815339252245, + 12116.663616234673, 13299.407806892912, 12700.19401497463, + 11279.822673902265, 10681.970679647495, 13007.68949966265, + 20390.628895581885, 34266.73286327184, 55859.004822973286, + 81789.33251319615, 111299.54778080752, 142984.84598354058, + 167565.33199043543 + ], + "flow:branch127_seg0:J105": [ + 30.60088120113766, 34.604020988793486, 36.805477010566115, + 37.04969981299087, 35.51564377597039, 32.503866171751405, + 28.470379765051785, 24.050574026190354, 19.71859348168562, + 15.616732307606524, 12.085999949040389, 8.913565806929855, + 5.957443267442391, 3.16611017183705, 0.2736070913033744, + -2.5618648734420377, -5.3528128644368556, -7.978541516527183, + -10.107996414257144, -11.818151178368, -13.014347728506545, + -13.730980285994491, -14.162777227993164, -14.386384611615167, + -14.514447952626265, -14.574196166113616, -14.500005898450283, + -14.215539652349316, -13.652398732842247, -12.804991756233484, + -11.768032640355912, -10.784679865089053, -10.089989535920916, + -9.976951530939857, -10.636620907600777, -12.097442309052767, + -14.167022267253142, -16.57037867890684, -18.847265673401264, + -20.47769425964019, -21.183936226221125, -20.703399811660873, + -19.04395705884253, -16.41454766780246, -13.27455688094815, + -9.861303940125122, -6.646101849706045, -3.932502612760599, + -1.6741960974018213, 0.007253472860076955, 1.314563866202014, + 2.411407181259501, 3.315033769114641, 4.141843864302732, + 4.790541444946561, 5.14214183405192, 5.117886743441172, 4.63483554790953, + 3.72294105503015, 2.521066778291253, 1.2296507872764713, + 0.01959135558695624, -0.8682520587390761, -1.3960079430423695, + -1.5889429214629642, -1.533765313461074, -1.4181689480064024, + -1.4027953628861667, -1.5794819089115641, -1.9615491614465055, + -2.4431715801399108, -2.9008080692692344, -3.1656295152138294, + -3.1202527335603345, -2.756025933193923, -2.1498802883123784, + -1.4368838638186938, -0.7865150138937921, -0.3598212962888183, + -0.17688703098765968, -0.21023412510674477, -0.33505095283673547, + -0.38042937421283646, -0.21348548661214858, 0.22197668429031628, + 0.8727748442025149, 1.5836362612597574, 2.1861762720039173, + 2.4866317538225053, 2.455342077661454, 2.20483988263801, + 2.0056479827777047, 2.254707399876173, 3.3689053023919953, + 5.679428156022733, 9.367513039032309, 14.107935395677321, + 19.737258521878633, 25.541456577640314, 30.60088120113766 + ], + "pressure:branch127_seg0:J105": [ + 171120.92792965926, 188110.7878562196, 196307.14643351024, + 192579.9531052566, 180379.19292941294, 162112.60795949172, + 139994.32610811124, 115036.20682294555, 93578.48848631029, + 73560.49751055658, 55250.71681938774, 40026.42434478219, + 24582.591788400117, 9899.536377570628, -4948.277203155862, + -20132.538436949846, -34481.57960811377, -47590.44651791214, + -57671.00664279774, -65260.146476911854, -70617.09780287377, + -73364.27134782622, -74984.77699404887, -75872.73015538049, + -76310.1426153558, -76461.15972526363, -75669.00085776765, + -73558.47367059541, -69854.88316838017, -64934.22877676602, + -59154.47802570741, -54378.53002809291, -51984.13076723144, + -52789.62608395624, -58104.76298965577, -67501.64954823881, + -79631.98172084025, -92277.44784743043, -103538.75594462712, + -110252.9067364823, -111154.10141763017, -106008.78990447882, + -94730.37565440682, -78722.04397092041, -61732.911497380934, + -43957.30407423111, -27300.49409408064, -14767.334417660288, + -4191.811769637171, 3673.609742426403, 9432.781305811612, + 15178.890062720864, 19432.60790820929, 23213.032943263068, + 26443.311561051778, 27348.521914916593, 26155.852037281238, + 22652.603242257843, 17080.894086902812, 10091.011716351673, + 3434.7191452514758, -2222.802064387854, -6330.345645367383, + -8120.8363509420105, -8392.247367372836, -7807.8213507822375, + -7197.32281059005, -7478.1286309567195, -8921.599861818331, + -11378.104607197572, -13944.011153733834, -16048.316757470724, + -16925.156913542403, -15874.850668855186, -13212.845372726477, + -9607.807317195216, -5942.213720253038, -2696.512975518232, + -1132.355910758086, -878.1974970242317, -1322.4183322265878, + -2002.2648246676608, -1908.6734276982083, -436.68757320258425, + 2416.0511101149195, 6263.261992001654, 9904.771839594767, + 12471.273250692819, 13388.852175231852, 12466.085317648703, + 10833.108871875264, 10350.058598743339, 13186.515247121983, + 21477.992726485838, 36532.728116954575, 59391.610244067066, + 86073.9371196455, 116275.31191742819, 147990.98576249837, + 171120.92792965926 + ], + "flow:J105:branch127_seg1": [ + 30.60088120113766, 34.604020988793486, 36.805477010566115, + 37.04969981299087, 35.51564377597039, 32.503866171751405, + 28.470379765051785, 24.050574026190354, 19.71859348168562, + 15.616732307606524, 12.085999949040389, 8.913565806929855, + 5.957443267442391, 3.16611017183705, 0.2736070913033744, + -2.5618648734420377, -5.3528128644368556, -7.978541516527183, + -10.107996414257144, -11.818151178368, -13.014347728506545, + -13.730980285994491, -14.162777227993164, -14.386384611615167, + -14.514447952626265, -14.574196166113616, -14.500005898450283, + -14.215539652349316, -13.652398732842247, -12.804991756233484, + -11.768032640355912, -10.784679865089053, -10.089989535920916, + -9.976951530939857, -10.636620907600777, -12.097442309052767, + -14.167022267253142, -16.57037867890684, -18.847265673401264, + -20.47769425964019, -21.183936226221125, -20.703399811660873, + -19.04395705884253, -16.41454766780246, -13.27455688094815, + -9.861303940125122, -6.646101849706045, -3.932502612760599, + -1.6741960974018213, 0.007253472860076955, 1.314563866202014, + 2.411407181259501, 3.315033769114641, 4.141843864302732, + 4.790541444946561, 5.14214183405192, 5.117886743441172, 4.63483554790953, + 3.72294105503015, 2.521066778291253, 1.2296507872764713, + 0.01959135558695624, -0.8682520587390761, -1.3960079430423695, + -1.5889429214629642, -1.533765313461074, -1.4181689480064024, + -1.4027953628861667, -1.5794819089115641, -1.9615491614465055, + -2.4431715801399108, -2.9008080692692344, -3.1656295152138294, + -3.1202527335603345, -2.756025933193923, -2.1498802883123784, + -1.4368838638186938, -0.7865150138937921, -0.3598212962888183, + -0.17688703098765968, -0.21023412510674477, -0.33505095283673547, + -0.38042937421283646, -0.21348548661214858, 0.22197668429031628, + 0.8727748442025149, 1.5836362612597574, 2.1861762720039173, + 2.4866317538225053, 2.455342077661454, 2.20483988263801, + 2.0056479827777047, 2.254707399876173, 3.3689053023919953, + 5.679428156022733, 9.367513039032309, 14.107935395677321, + 19.737258521878633, 25.541456577640314, 30.60088120113766 + ], + "pressure:J105:branch127_seg1": [ + 171120.92792965926, 188110.7878562196, 196307.14643351024, + 192579.9531052566, 180379.19292941294, 162112.60795949172, + 139994.32610811124, 115036.20682294555, 93578.48848631029, + 73560.49751055658, 55250.71681938774, 40026.42434478219, + 24582.591788400117, 9899.536377570628, -4948.277203155862, + -20132.538436949846, -34481.57960811377, -47590.44651791214, + -57671.00664279774, -65260.146476911854, -70617.09780287377, + -73364.27134782622, -74984.77699404887, -75872.73015538049, + -76310.1426153558, -76461.15972526363, -75669.00085776765, + -73558.47367059541, -69854.88316838017, -64934.22877676602, + -59154.47802570741, -54378.53002809291, -51984.13076723144, + -52789.62608395624, -58104.76298965577, -67501.64954823881, + -79631.98172084025, -92277.44784743043, -103538.75594462712, + -110252.9067364823, -111154.10141763017, -106008.78990447882, + -94730.37565440682, -78722.04397092041, -61732.911497380934, + -43957.30407423111, -27300.49409408064, -14767.334417660288, + -4191.811769637171, 3673.609742426403, 9432.781305811612, + 15178.890062720864, 19432.60790820929, 23213.032943263068, + 26443.311561051778, 27348.521914916593, 26155.852037281238, + 22652.603242257843, 17080.894086902812, 10091.011716351673, + 3434.7191452514758, -2222.802064387854, -6330.345645367383, + -8120.8363509420105, -8392.247367372836, -7807.8213507822375, + -7197.32281059005, -7478.1286309567195, -8921.599861818331, + -11378.104607197572, -13944.011153733834, -16048.316757470724, + -16925.156913542403, -15874.850668855186, -13212.845372726477, + -9607.807317195216, -5942.213720253038, -2696.512975518232, + -1132.355910758086, -878.1974970242317, -1322.4183322265878, + -2002.2648246676608, -1908.6734276982083, -436.68757320258425, + 2416.0511101149195, 6263.261992001654, 9904.771839594767, + 12471.273250692819, 13388.852175231852, 12466.085317648703, + 10833.108871875264, 10350.058598743339, 13186.515247121983, + 21477.992726485838, 36532.728116954575, 59391.610244067066, + 86073.9371196455, 116275.31191742819, 147990.98576249837, + 171120.92792965926 + ], + "flow:branch127_seg1:J106": [ + 30.548843240756906, 34.57121302890872, 36.7993060433286, + 37.06611462487855, 35.55726854071264, 32.555906196860455, + 28.520549222445403, 24.121875028404702, 19.76364318512256, + 15.648831584167507, 12.130763387268107, 8.942880414857793, + 5.989239616932945, 3.199499490663976, 0.29321842966081146, + -2.52611404878509, -5.31808548612892, -7.965937878698189, + -10.086193842265034, -11.802534712589102, -13.008355552185174, + -13.723795202812008, -14.160848081205387, -14.385225280071179, + -14.512328212779407, -14.574822454138618, -14.503133724810755, + -14.222197438178855, -13.663969117924246, -12.818341797763049, + -11.781946601172836, -10.794496236282429, -10.090734326732576, + -9.968867137397982, -10.619544365169107, -12.076096510014262, + -14.133848584408565, -16.546354314733474, -18.830582807375777, + -20.467631416379227, -21.19214899904826, -20.722315489924185, + -19.073067738610302, -16.443199802880258, -13.314518557767428, + -9.903792219554813, -6.675459809766821, -3.9631363734322385, + -1.6942539903497815, -0.00818677123849446, 1.2968649623080595, + 2.3985059024183837, 3.305640806643882, 4.132783003315613, + 4.784066541352513, 5.142241034630704, 5.124100837252848, 4.64687272956086, + 3.7361312348205926, 2.5406164629345542, 1.2432748048945528, + 0.023989714274791706, -0.8597623354074517, -1.3936802784128266, + -1.5913521214289623, -1.5349982875663186, -1.4182902496676304, + -1.4011105397971748, -1.5752627626472833, -1.9567709535201065, + -2.4376200768262977, -2.8960024290401223, -3.166149730460349, + -3.124051479070978, -2.7635804424410697, -2.159344316868138, + -1.4462428979113775, -0.7933003321042222, -0.3618434522723454, + -0.17625149824031025, -0.20810904584227055, -0.3342728407949329, + -0.38233440323166323, -0.21910970324586715, 0.21477436795367472, + 0.8627357077399479, 1.576611192064662, 2.1859142489564722, + 2.4862028012214337, 2.457957790868636, 2.207770490894938, + 2.0041073221260057, 2.2436084877988605, 3.344117753746027, + 5.637494590334989, 9.318352143364702, 14.044983798902397, + 19.64937439735456, 25.47784572014713, 30.548843240756906 + ], + "pressure:branch127_seg1:J106": [ + 156226.91815834845, 176166.9232796217, 187074.61655428744, + 187843.40661318586, 179700.3456213656, 164184.53008, 143601.34066722135, + 121073.37019433593, 99117.12461681721, 78418.79917901127, + 60590.38067292031, 44586.14908367356, 29609.546608613266, + 15452.350155004002, 752.5459229941929, -13590.40801282855, + -27720.41441082865, -41067.411462234515, -51702.38932286053, + -60249.69095964891, -66258.72297251377, -69773.81765868652, + -71916.19915377637, -73022.39475122651, -73641.65642675904, + -73939.96895669127, -73530.16005800839, -72033.91842788277, + -69115.30483444003, -64771.15972171364, -59474.76141119872, + -54510.778344351864, -51086.76409087068, -50631.44505606349, + -54147.80184529831, -61737.25857836607, -72327.78175067581, + -84569.85355078673, -96079.67115486795, -104175.38437095005, + -107526.41523063259, -104841.05652629696, -96176.83903386742, + -82581.52648943265, -66643.95453505797, -49351.42213927069, + -32999.237159904194, -19430.085393603444, -8066.065547461929, + 378.74960038639256, 6876.420468338672, 12464.04122349964, + 17009.964977672407, 21143.35156519552, 24427.576232904004, + 26135.29663169171, 25919.357622927302, 23385.13001545127, + 18673.647931890137, 12526.869343365579, 5959.572063679371, + -144.75308912535183, -4568.13905576185, -7163.601483214007, + -8080.265664757924, -7761.2133662532715, -7168.990527466862, + -7123.7067195200925, -8067.290489911345, -10054.93191666449, + -12499.588769356913, -14791.467142441932, -16101.838984772457, + -15794.355977473235, -13878.215897421847, -10762.98344328025, + -7153.235906810541, -3859.852826797021, -1749.3066945254059, + -889.0226245097617, -1081.8322812114163, -1724.3490192054853, + -1929.3911191341706, -1031.8041205794154, 1235.194845122879, + 4573.547326906151, 8184.884617401589, 11206.16189361823, + 12654.980872716606, 12424.039833698862, 11118.002468633307, + 10150.332148757378, 11543.710642669363, 17412.01666038186, + 29390.249326131543, 48470.547235735576, 72665.34599368712, + 101187.09701909764, 130894.83288169926, 156226.91815834845 + ], + "flow:J106:branch127_seg2": [ + 30.548843240756906, 34.57121302890872, 36.7993060433286, + 37.06611462487855, 35.55726854071264, 32.555906196860455, + 28.520549222445403, 24.121875028404702, 19.76364318512256, + 15.648831584167507, 12.130763387268107, 8.942880414857793, + 5.989239616932945, 3.199499490663976, 0.29321842966081146, + -2.52611404878509, -5.31808548612892, -7.965937878698189, + -10.086193842265034, -11.802534712589102, -13.008355552185174, + -13.723795202812008, -14.160848081205387, -14.385225280071179, + -14.512328212779407, -14.574822454138618, -14.503133724810755, + -14.222197438178855, -13.663969117924246, -12.818341797763049, + -11.781946601172836, -10.794496236282429, -10.090734326732576, + -9.968867137397982, -10.619544365169107, -12.076096510014262, + -14.133848584408565, -16.546354314733474, -18.830582807375777, + -20.467631416379227, -21.19214899904826, -20.722315489924185, + -19.073067738610302, -16.443199802880258, -13.314518557767428, + -9.903792219554813, -6.675459809766821, -3.9631363734322385, + -1.6942539903497815, -0.00818677123849446, 1.2968649623080595, + 2.3985059024183837, 3.305640806643882, 4.132783003315613, + 4.784066541352513, 5.142241034630704, 5.124100837252848, 4.64687272956086, + 3.7361312348205926, 2.5406164629345542, 1.2432748048945528, + 0.023989714274791706, -0.8597623354074517, -1.3936802784128266, + -1.5913521214289623, -1.5349982875663186, -1.4182902496676304, + -1.4011105397971748, -1.5752627626472833, -1.9567709535201065, + -2.4376200768262977, -2.8960024290401223, -3.166149730460349, + -3.124051479070978, -2.7635804424410697, -2.159344316868138, + -1.4462428979113775, -0.7933003321042222, -0.3618434522723454, + -0.17625149824031025, -0.20810904584227055, -0.3342728407949329, + -0.38233440323166323, -0.21910970324586715, 0.21477436795367472, + 0.8627357077399479, 1.576611192064662, 2.1859142489564722, + 2.4862028012214337, 2.457957790868636, 2.207770490894938, + 2.0041073221260057, 2.2436084877988605, 3.344117753746027, + 5.637494590334989, 9.318352143364702, 14.044983798902397, + 19.64937439735456, 25.47784572014713, 30.548843240756906 + ], + "pressure:J106:branch127_seg2": [ + 156226.91815834845, 176166.9232796217, 187074.61655428744, + 187843.40661318586, 179700.3456213656, 164184.53008, 143601.34066722135, + 121073.37019433593, 99117.12461681721, 78418.79917901127, + 60590.38067292031, 44586.14908367356, 29609.546608613266, + 15452.350155004002, 752.5459229941929, -13590.40801282855, + -27720.41441082865, -41067.411462234515, -51702.38932286053, + -60249.69095964891, -66258.72297251377, -69773.81765868652, + -71916.19915377637, -73022.39475122651, -73641.65642675904, + -73939.96895669127, -73530.16005800839, -72033.91842788277, + -69115.30483444003, -64771.15972171364, -59474.76141119872, + -54510.778344351864, -51086.76409087068, -50631.44505606349, + -54147.80184529831, -61737.25857836607, -72327.78175067581, + -84569.85355078673, -96079.67115486795, -104175.38437095005, + -107526.41523063259, -104841.05652629696, -96176.83903386742, + -82581.52648943265, -66643.95453505797, -49351.42213927069, + -32999.237159904194, -19430.085393603444, -8066.065547461929, + 378.74960038639256, 6876.420468338672, 12464.04122349964, + 17009.964977672407, 21143.35156519552, 24427.576232904004, + 26135.29663169171, 25919.357622927302, 23385.13001545127, + 18673.647931890137, 12526.869343365579, 5959.572063679371, + -144.75308912535183, -4568.13905576185, -7163.601483214007, + -8080.265664757924, -7761.2133662532715, -7168.990527466862, + -7123.7067195200925, -8067.290489911345, -10054.93191666449, + -12499.588769356913, -14791.467142441932, -16101.838984772457, + -15794.355977473235, -13878.215897421847, -10762.98344328025, + -7153.235906810541, -3859.852826797021, -1749.3066945254059, + -889.0226245097617, -1081.8322812114163, -1724.3490192054853, + -1929.3911191341706, -1031.8041205794154, 1235.194845122879, + 4573.547326906151, 8184.884617401589, 11206.16189361823, + 12654.980872716606, 12424.039833698862, 11118.002468633307, + 10150.332148757378, 11543.710642669363, 17412.01666038186, + 29390.249326131543, 48470.547235735576, 72665.34599368712, + 101187.09701909764, 130894.83288169926, 156226.91815834845 + ], + "flow:branch132_seg0:J107": [ + 36.79311207787313, 40.416180331270645, 41.76078840425883, + 40.7221794300811, 37.87597358410143, 33.63810160573586, + 28.540282393994005, 23.32825532761082, 18.65758972546955, + 14.234730325560767, 10.600305169963615, 7.387067982835917, + 4.193873748731455, 1.236925200271163, -1.9664348039729749, + -5.074685762929288, -7.986574207457896, -10.76954858209331, + -12.778071441018636, -14.295045844162583, -15.286740087329564, + -15.731191609633342, -15.978928970523677, -16.06883739691328, + -16.09653915869168, -16.0732072594638, -15.863487084462482, + -15.37065452454741, -14.541183202863849, -13.412243288378038, + -12.136788238970132, -11.087252915834794, -10.527135190487453, + -10.765456736250949, -11.982766546931185, -14.094412672629169, + -16.74733453951704, -19.533996482478273, -21.96929878781958, + -23.316661370747784, -23.472810013243354, -22.20928500607303, + -19.654111884259326, -16.124856791705323, -12.361578226480642, + -8.486281964440357, -5.010883050584455, -2.356417980443621, + -0.16282036868482724, 1.3688165620535726, 2.5383545296324184, + 3.6160469350289928, 4.472728581352624, 5.275586949132492, + 5.85441924814261, 6.000256917549075, 5.692682442847814, 4.846828426547615, + 3.552874536860217, 2.0186818902391024, 0.5558023297897586, + -0.7318795502444231, -1.5332575349335806, -1.8700295358287597, + -1.8937778414249349, -1.6983973261257082, -1.535144157200885, + -1.5839361358346975, -1.892279421881607, -2.42926930495294, + -3.0022177063099678, -3.464163313586295, -3.6277479316424497, + -3.375832437080987, -2.76802719399258, -1.956660615579624, + -1.1165086134724695, -0.43751171447676823, -0.10868950083969589, + -0.0641479170602275, -0.21931975612351165, -0.40234119048738604, + -0.39544526899784604, -0.07283778958462826, 0.5673205477449184, + 1.4118646570234492, 2.2035695945842058, 2.7811965210126712, + 2.922333131195618, 2.671157289108447, 2.273533640516494, + 2.1174117908349843, 2.7005711207303538, 4.497442302530647, + 7.776076840009381, 12.722937849902213, 18.571300451406202, + 25.212061002328987, 31.756691470389786, 36.79311207787313 + ], + "pressure:branch132_seg0:J107": [ + 191291.99818300956, 205217.458835538, 209752.74094228298, + 200824.4191700029, 183456.77686119825, 160874.6838479352, + 135459.4245872704, 107729.82746442447, 86244.006167662, 65675.28206884146, + 47080.591760564326, 32596.94777946357, 16216.560277495491, + 1381.0745511001357, -14004.140850583486, -30262.397358828315, + -43942.53254018654, -57237.41287740722, -66818.28069363153, + -73007.1542920378, -77510.12968372756, -79257.00568666327, + -80033.682567396, -80500.70317909542, -80515.07693100616, + -80249.08737368727, -78892.98978046111, -75884.64982998998, + -71138.33647145252, -65225.42968462958, -58746.61716877427, + -53952.10001208536, -52481.19287333826, -54903.292172259804, + -62401.45734021472, -74132.28531434026, -88313.8974388941, + -101467.22841459262, -112944.37260078397, -117968.60496463835, + -116307.8579831134, -108187.24979777032, -93943.0224706965, + -74998.29160921166, -55989.198724578695, -37387.56965452255, + -20186.012287243273, -8067.683998039508, 1703.6880962231244, + 9085.992166966074, 14230.215788211528, 19702.392222038194, + 23865.70561441606, 27269.378129437675, 30052.088219610927, + 29981.87000920151, 27520.314402032196, 22565.767182800675, + 15685.532718893974, 7454.133513568811, 623.3920141476025, + -5014.61791183333, -8718.483986684132, -9529.884172302103, + -9202.090133321535, -8239.971627316878, -7550.4268686219375, + -8155.769152281935, -10092.274752882284, -13037.55621775595, + -15840.721548831545, -17760.022534398035, -18124.83294804824, + -16289.653512032877, -12696.407642451417, -8439.631560575504, + -4446.197702210724, -1284.11684405878, -165.00572808727838, + -533.2384207247898, -1410.3557890482084, -2169.317324241549, + -1768.0384955961588, 392.64086545935214, 3958.5308529171216, + 8485.728877720618, 12117.962530149838, 14339.184988752226, + 14581.523983467892, 12796.996272163433, 10777.475704027329, + 10755.979626962879, 15139.766005530222, 26223.257160057226, + 44697.06180481747, 71877.86723222972, 102298.97892831305, + 135334.66487934734, 168574.82775536607, 191291.99818300956 + ], + "flow:J107:branch132_seg1": [ + 36.79311207787313, 40.416180331270645, 41.76078840425883, + 40.7221794300811, 37.87597358410143, 33.63810160573586, + 28.540282393994005, 23.32825532761082, 18.65758972546955, + 14.234730325560767, 10.600305169963615, 7.387067982835917, + 4.193873748731455, 1.236925200271163, -1.9664348039729749, + -5.074685762929288, -7.986574207457896, -10.76954858209331, + -12.778071441018636, -14.295045844162583, -15.286740087329564, + -15.731191609633342, -15.978928970523677, -16.06883739691328, + -16.09653915869168, -16.0732072594638, -15.863487084462482, + -15.37065452454741, -14.541183202863849, -13.412243288378038, + -12.136788238970132, -11.087252915834794, -10.527135190487453, + -10.765456736250949, -11.982766546931185, -14.094412672629169, + -16.74733453951704, -19.533996482478273, -21.96929878781958, + -23.316661370747784, -23.472810013243354, -22.20928500607303, + -19.654111884259326, -16.124856791705323, -12.361578226480642, + -8.486281964440357, -5.010883050584455, -2.356417980443621, + -0.16282036868482724, 1.3688165620535726, 2.5383545296324184, + 3.6160469350289928, 4.472728581352624, 5.275586949132492, + 5.85441924814261, 6.000256917549075, 5.692682442847814, 4.846828426547615, + 3.552874536860217, 2.0186818902391024, 0.5558023297897586, + -0.7318795502444231, -1.5332575349335806, -1.8700295358287597, + -1.8937778414249349, -1.6983973261257082, -1.535144157200885, + -1.5839361358346975, -1.892279421881607, -2.42926930495294, + -3.0022177063099678, -3.464163313586295, -3.6277479316424497, + -3.375832437080987, -2.76802719399258, -1.956660615579624, + -1.1165086134724695, -0.43751171447676823, -0.10868950083969589, + -0.0641479170602275, -0.21931975612351165, -0.40234119048738604, + -0.39544526899784604, -0.07283778958462826, 0.5673205477449184, + 1.4118646570234492, 2.2035695945842058, 2.7811965210126712, + 2.922333131195618, 2.671157289108447, 2.273533640516494, + 2.1174117908349843, 2.7005711207303538, 4.497442302530647, + 7.776076840009381, 12.722937849902213, 18.571300451406202, + 25.212061002328987, 31.756691470389786, 36.79311207787313 + ], + "pressure:J107:branch132_seg1": [ + 191291.99818300956, 205217.458835538, 209752.74094228298, + 200824.4191700029, 183456.77686119825, 160874.6838479352, + 135459.4245872704, 107729.82746442447, 86244.006167662, 65675.28206884146, + 47080.591760564326, 32596.94777946357, 16216.560277495491, + 1381.0745511001357, -14004.140850583486, -30262.397358828315, + -43942.53254018654, -57237.41287740722, -66818.28069363153, + -73007.1542920378, -77510.12968372756, -79257.00568666327, + -80033.682567396, -80500.70317909542, -80515.07693100616, + -80249.08737368727, -78892.98978046111, -75884.64982998998, + -71138.33647145252, -65225.42968462958, -58746.61716877427, + -53952.10001208536, -52481.19287333826, -54903.292172259804, + -62401.45734021472, -74132.28531434026, -88313.8974388941, + -101467.22841459262, -112944.37260078397, -117968.60496463835, + -116307.8579831134, -108187.24979777032, -93943.0224706965, + -74998.29160921166, -55989.198724578695, -37387.56965452255, + -20186.012287243273, -8067.683998039508, 1703.6880962231244, + 9085.992166966074, 14230.215788211528, 19702.392222038194, + 23865.70561441606, 27269.378129437675, 30052.088219610927, + 29981.87000920151, 27520.314402032196, 22565.767182800675, + 15685.532718893974, 7454.133513568811, 623.3920141476025, + -5014.61791183333, -8718.483986684132, -9529.884172302103, + -9202.090133321535, -8239.971627316878, -7550.4268686219375, + -8155.769152281935, -10092.274752882284, -13037.55621775595, + -15840.721548831545, -17760.022534398035, -18124.83294804824, + -16289.653512032877, -12696.407642451417, -8439.631560575504, + -4446.197702210724, -1284.11684405878, -165.00572808727838, + -533.2384207247898, -1410.3557890482084, -2169.317324241549, + -1768.0384955961588, 392.64086545935214, 3958.5308529171216, + 8485.728877720618, 12117.962530149838, 14339.184988752226, + 14581.523983467892, 12796.996272163433, 10777.475704027329, + 10755.979626962879, 15139.766005530222, 26223.257160057226, + 44697.06180481747, 71877.86723222972, 102298.97892831305, + 135334.66487934734, 168574.82775536607, 191291.99818300956 + ], + "flow:branch132_seg1:J108": [ + 36.77531099779406, 40.411393706023084, 41.76523247085581, + 40.73287106639545, 37.89586368561253, 33.665945830709866, + 28.567677631158414, 23.363940067210677, 18.68945451274965, + 14.253055713608163, 10.627719776805257, 7.405951935092459, + 4.2144649589945296, 1.2588396242984843, -1.9535483661260895, + -5.0511707684982925, -7.9730232935809395, -10.762689237738508, + -12.77067274476761, -14.291300461944978, -15.286415552351151, + -15.73041545284722, -15.979665948992222, -16.06956647212852, + -16.096333763253675, -16.07439711905479, -15.86526260225726, + -15.37448946658189, -14.546245337036748, -13.419588820844087, + -12.142216506030582, -11.092827197941979, -10.527018272562584, + -10.76023891120236, -11.971269353458682, -14.08107639418696, + -16.725226953143206, -19.519932761177355, -21.958415726251697, + -23.312752174786127, -23.478713093500808, -22.224925207662736, + -19.668392523780177, -16.14091821897729, -12.37825619289222, + -8.5009211061269, -5.019967479966329, -2.3647824271087403, + -0.16715886684515435, 1.3664925995746564, 2.532148520969697, + 3.6139686953881363, 4.468156545323651, 5.272426645670565, + 5.852751603930131, 6.000359030309361, 5.696547756150462, + 4.854184664674896, 3.561035213156972, 2.030260596545874, + 0.565397133370815, -0.728158298644473, -1.528789971662101, + -1.869239319718135, -1.8953589422208401, -1.6994377107204146, + -1.5350449801762176, -1.5823776330442396, -1.890219383838573, + -2.4268214353505617, -3.0004682398288667, -3.463229473925802, + -3.6293481392697577, -3.377933809286198, -2.7719131565685897, + -1.9598747246010972, -1.120461910851197, -0.4387936549777725, + -0.10974878016506048, -0.06337762092663679, -0.21807863454725207, + -0.40208073966222846, -0.39669570967730555, -0.076454132558565, + 0.5627391806858936, 1.4055889901275647, 2.1988990938774866, + 2.78061902931865, 2.923077441133184, 2.6729942873093737, + 2.275326448469163, 2.115381096109191, 2.6936365250236647, + 4.480445404841489, 7.7581874757206215, 12.699296349363625, + 18.549432983762603, 25.180849825224204, 31.742062601260773, + 36.77531099779406 + ], + "pressure:branch132_seg1:J108": [ + 187655.8365586884, 202916.06239031343, 208205.39611556072, + 200564.28972131418, 184345.87934950893, 162433.05468800754, + 137173.5135417446, 110190.18032199661, 88257.52933931461, + 67213.66839284223, 48957.586817925476, 33971.45925053199, + 17859.57508153823, 3139.1936993836534, -12417.726448295547, + -28235.22331758474, -42259.430421360405, -55683.672174645704, + -65386.86947510581, -72017.87895680913, -76669.33986572863, + -78568.92138035211, -79495.1193825751, -79957.246240949, + -80001.99521793595, -79797.99906974693, -78550.36448204408, + -75753.53494352671, -71228.85483048146, -65469.30719380504, + -59035.370055153384, -54140.783307113816, -52207.11921860094, + -54181.79477577323, -61110.10691274068, -72375.3071763707, + -86078.93453675692, -99478.09387238642, -111114.67754611764, + -116742.09381131297, -115956.25073936414, -108584.17740679112, + -94872.13756474113, -76516.53724697114, -57655.814716807174, + -38905.42467131008, -21700.670980822808, -9254.946473524311, + 853.0672121032648, 8317.079946103338, 13606.919759878027, + 19069.052233363578, 23207.91476754527, 26792.188177632142, + 29609.014035217475, 29804.309232926265, 27681.948096532058, + 23022.455934412006, 16329.703108663714, 8357.065212790998, + 1406.8379694390458, -4493.580004249963, -8272.412355258522, + -9402.49481975252, -9238.628784408096, -8279.82256259243, + -7545.389209391868, -8014.726718301892, -9811.314495008328, + -12645.418439584517, -15463.582846546262, -17501.676809006178, + -18033.548665792954, -16394.831552397973, -13018.115716431164, + -8835.099054791972, -4814.941022467042, -1565.1427294696095, + -292.7401047471736, -455.5826126539458, -1292.331105829774, + -2101.882625083254, -1833.1070221898747, 116.84921542634646, + 3532.438562549211, 7916.908092232656, 11641.400403260119, + 14092.477132703467, 14501.909230390509, 12913.04633631109, + 10920.297785986744, 10618.528946875993, 14465.65722589363, + 24696.762411181466, 42419.37195715216, 68553.23890114734, + 98489.51909310515, 131279.05419163703, 164343.28940463203, + 187655.8365586884 + ], + "flow:J108:branch132_seg2": [ + 36.77531099779406, 40.411393706023084, 41.76523247085581, + 40.73287106639545, 37.89586368561253, 33.665945830709866, + 28.567677631158414, 23.363940067210677, 18.68945451274965, + 14.253055713608163, 10.627719776805257, 7.405951935092459, + 4.2144649589945296, 1.2588396242984843, -1.9535483661260895, + -5.0511707684982925, -7.9730232935809395, -10.762689237738508, + -12.77067274476761, -14.291300461944978, -15.286415552351151, + -15.73041545284722, -15.979665948992222, -16.06956647212852, + -16.096333763253675, -16.07439711905479, -15.86526260225726, + -15.37448946658189, -14.546245337036748, -13.419588820844087, + -12.142216506030582, -11.092827197941979, -10.527018272562584, + -10.76023891120236, -11.971269353458682, -14.08107639418696, + -16.725226953143206, -19.519932761177355, -21.958415726251697, + -23.312752174786127, -23.478713093500808, -22.224925207662736, + -19.668392523780177, -16.14091821897729, -12.37825619289222, + -8.5009211061269, -5.019967479966329, -2.3647824271087403, + -0.16715886684515435, 1.3664925995746564, 2.532148520969697, + 3.6139686953881363, 4.468156545323651, 5.272426645670565, + 5.852751603930131, 6.000359030309361, 5.696547756150462, + 4.854184664674896, 3.561035213156972, 2.030260596545874, + 0.565397133370815, -0.728158298644473, -1.528789971662101, + -1.869239319718135, -1.8953589422208401, -1.6994377107204146, + -1.5350449801762176, -1.5823776330442396, -1.890219383838573, + -2.4268214353505617, -3.0004682398288667, -3.463229473925802, + -3.6293481392697577, -3.377933809286198, -2.7719131565685897, + -1.9598747246010972, -1.120461910851197, -0.4387936549777725, + -0.10974878016506048, -0.06337762092663679, -0.21807863454725207, + -0.40208073966222846, -0.39669570967730555, -0.076454132558565, + 0.5627391806858936, 1.4055889901275647, 2.1988990938774866, + 2.78061902931865, 2.923077441133184, 2.6729942873093737, + 2.275326448469163, 2.115381096109191, 2.6936365250236647, + 4.480445404841489, 7.7581874757206215, 12.699296349363625, + 18.549432983762603, 25.180849825224204, 31.742062601260773, + 36.77531099779406 + ], + "pressure:J108:branch132_seg2": [ + 187655.8365586884, 202916.06239031343, 208205.39611556072, + 200564.28972131418, 184345.87934950893, 162433.05468800754, + 137173.5135417446, 110190.18032199661, 88257.52933931461, + 67213.66839284223, 48957.586817925476, 33971.45925053199, + 17859.57508153823, 3139.1936993836534, -12417.726448295547, + -28235.22331758474, -42259.430421360405, -55683.672174645704, + -65386.86947510581, -72017.87895680913, -76669.33986572863, + -78568.92138035211, -79495.1193825751, -79957.246240949, + -80001.99521793595, -79797.99906974693, -78550.36448204408, + -75753.53494352671, -71228.85483048146, -65469.30719380504, + -59035.370055153384, -54140.783307113816, -52207.11921860094, + -54181.79477577323, -61110.10691274068, -72375.3071763707, + -86078.93453675692, -99478.09387238642, -111114.67754611764, + -116742.09381131297, -115956.25073936414, -108584.17740679112, + -94872.13756474113, -76516.53724697114, -57655.814716807174, + -38905.42467131008, -21700.670980822808, -9254.946473524311, + 853.0672121032648, 8317.079946103338, 13606.919759878027, + 19069.052233363578, 23207.91476754527, 26792.188177632142, + 29609.014035217475, 29804.309232926265, 27681.948096532058, + 23022.455934412006, 16329.703108663714, 8357.065212790998, + 1406.8379694390458, -4493.580004249963, -8272.412355258522, + -9402.49481975252, -9238.628784408096, -8279.82256259243, + -7545.389209391868, -8014.726718301892, -9811.314495008328, + -12645.418439584517, -15463.582846546262, -17501.676809006178, + -18033.548665792954, -16394.831552397973, -13018.115716431164, + -8835.099054791972, -4814.941022467042, -1565.1427294696095, + -292.7401047471736, -455.5826126539458, -1292.331105829774, + -2101.882625083254, -1833.1070221898747, 116.84921542634646, + 3532.438562549211, 7916.908092232656, 11641.400403260119, + 14092.477132703467, 14501.909230390509, 12913.04633631109, + 10920.297785986744, 10618.528946875993, 14465.65722589363, + 24696.762411181466, 42419.37195715216, 68553.23890114734, + 98489.51909310515, 131279.05419163703, 164343.28940463203, + 187655.8365586884 + ], + "flow:branch133_seg0:J109": [ + 26.144364461044066, 29.122900004078993, 30.51777727639711, + 30.227560756686668, 28.53896275673079, 25.728909024390973, + 22.176342735444766, 18.42425093148522, 14.90701409403254, + 11.56535795700423, 8.761313864839083, 6.255418519979097, + 3.851918933245456, 1.6096843245188026, -0.7654698978091485, + -3.0697136189534193, -5.286387808390674, -7.3824286476501335, + -8.987616469522303, -10.23689419087685, -11.080875059409756, + -11.525506503334746, -11.78004186940042, -11.8907803110796, + -11.938421357555981, -11.939595057994879, -11.816757002918703, + -11.504135067134534, -10.953373612721666, -10.178172302979535, + -9.271427468874416, -8.474543498216654, -7.976708540661107, + -8.015469714934808, -8.732454927385563, -10.111229765356503, + -11.935799328826025, -13.951854322801818, -15.784136748024872, + -16.9500823788233, -17.297459742905396, -16.63467310886496, + -15.005988676296889, -12.62270139944589, -9.938865828720527, + -7.102761377655791, -4.494686455924481, -2.3945355853042294, + -0.6537180337080115, 0.6060677284076873, 1.5735576419178885, + 2.420657388729129, 3.1016965939076715, 3.7301140357321168, + 4.199702328578259, 4.386052589670992, 4.251259976184732, + 3.7297172832322696, 2.867444663761536, 1.7996549200816565, + 0.7230227822273471, -0.2570935479580045, -0.9217444840589719, + -1.2678569551185936, -1.360246498276201, -1.268499511707186, + -1.1624558512009455, -1.1743582840441649, -1.3599735709592398, + -1.7125094500046356, -2.1191582203316215, -2.473935407827819, + -2.639950944194656, -2.525110556573141, -2.1493790291329185, + -1.598931678406121, -0.9957397480409785, -0.47685040804724477, + -0.1803000488940194, -0.08740866870579826, -0.1573191090738567, + -0.27469198412924883, -0.2895815348107245, -0.10155712151167025, + 0.31314850755588725, 0.8903673564102785, 1.4719309808537406, + 1.9309451228635748, 2.104129950876735, 1.9969916899316422, + 1.7471149688013994, 1.6074448570539939, 1.9258827568123016, + 3.0452581596245203, 5.207689738696004, 8.545270967721946, + 12.65435790143716, 17.412794197585185, 22.212419170264816, + 26.144364461044066 + ], + "pressure:branch133_seg0:J109": [ + 180988.26585471502, 197137.88908578502, 204086.96857930862, + 198475.5033300639, 184169.59907957108, 164042.27028141072, + 140190.06198256067, 113927.03364772949, 91940.58338005585, + 71004.32049971918, 52378.24393723418, 37000.880115761785, + 20905.924850176645, 5976.822888061991, -9383.675625752741, + -25047.593337037175, -39266.86055442695, -52714.318369241824, + -62735.546994434924, -69769.1543029522, -74860.93689701048, + -77190.50410270122, -78412.91977069309, -79056.27898862772, + -79206.31553824381, -79092.96833331023, -77983.7957918595, + -75424.96947604445, -71204.48053112016, -65792.54397327716, + -59589.201795660374, -54698.54612125579, -52494.40683273227, + -53847.18794432424, -59928.3064041171, -70274.71118640351, + -83209.53371009645, -96274.89423439236, -107855.44777720176, + -114139.97008207024, -114256.80117265068, -108099.45421808794, + -95578.86393085332, -78278.80859625254, -60163.814915079354, + -41843.813533567576, -24582.78473250019, -11867.319688893405, + -1379.4228139837046, 6514.641620806554, 12093.611291097955, + 17801.52094709527, 22054.070716799237, 25694.016920071193, + 28689.858967669745, 29200.06604621428, 27473.531368551943, + 23335.096547890917, 17131.899939291823, 9566.301999816313, + 2687.442720967034, -3200.247950261925, -7254.5526528202345, + -8780.179039867842, -8930.022168924328, -8218.924668391337, + -7563.928749589748, -7941.744009592933, -9560.718114655605, + -12197.819011820651, -14887.435044613381, -16926.23396624906, + -17636.717397128086, -16287.475872268076, -13246.167939089613, + -9326.549532949906, -5480.771823852319, -2188.2016049211975, + -736.2599988553181, -669.7194586408568, -1277.0722114701298, + -1985.4443261349074, -1787.6959484663798, -71.31388554374189, + 3062.3253442152077, 7175.526243412681, 10855.159274388061, + 13376.75450970124, 14071.514665369443, 12822.835752166016, + 11041.6802535828, 10676.415499079183, 14061.536031786953, + 23372.51376887879, 39865.98698230292, 64541.917180671386, + 93140.25331718611, 124641.1133293118, 157477.14963178927, + 180988.26585471502 + ], + "flow:J109:branch133_seg1": [ + 26.144364461044066, 29.122900004078993, 30.51777727639711, + 30.227560756686668, 28.53896275673079, 25.728909024390973, + 22.176342735444766, 18.42425093148522, 14.90701409403254, + 11.56535795700423, 8.761313864839083, 6.255418519979097, + 3.851918933245456, 1.6096843245188026, -0.7654698978091485, + -3.0697136189534193, -5.286387808390674, -7.3824286476501335, + -8.987616469522303, -10.23689419087685, -11.080875059409756, + -11.525506503334746, -11.78004186940042, -11.8907803110796, + -11.938421357555981, -11.939595057994879, -11.816757002918703, + -11.504135067134534, -10.953373612721666, -10.178172302979535, + -9.271427468874416, -8.474543498216654, -7.976708540661107, + -8.015469714934808, -8.732454927385563, -10.111229765356503, + -11.935799328826025, -13.951854322801818, -15.784136748024872, + -16.9500823788233, -17.297459742905396, -16.63467310886496, + -15.005988676296889, -12.62270139944589, -9.938865828720527, + -7.102761377655791, -4.494686455924481, -2.3945355853042294, + -0.6537180337080115, 0.6060677284076873, 1.5735576419178885, + 2.420657388729129, 3.1016965939076715, 3.7301140357321168, + 4.199702328578259, 4.386052589670992, 4.251259976184732, + 3.7297172832322696, 2.867444663761536, 1.7996549200816565, + 0.7230227822273471, -0.2570935479580045, -0.9217444840589719, + -1.2678569551185936, -1.360246498276201, -1.268499511707186, + -1.1624558512009455, -1.1743582840441649, -1.3599735709592398, + -1.7125094500046356, -2.1191582203316215, -2.473935407827819, + -2.639950944194656, -2.525110556573141, -2.1493790291329185, + -1.598931678406121, -0.9957397480409785, -0.47685040804724477, + -0.1803000488940194, -0.08740866870579826, -0.1573191090738567, + -0.27469198412924883, -0.2895815348107245, -0.10155712151167025, + 0.31314850755588725, 0.8903673564102785, 1.4719309808537406, + 1.9309451228635748, 2.104129950876735, 1.9969916899316422, + 1.7471149688013994, 1.6074448570539939, 1.9258827568123016, + 3.0452581596245203, 5.207689738696004, 8.545270967721946, + 12.65435790143716, 17.412794197585185, 22.212419170264816, + 26.144364461044066 + ], + "pressure:J109:branch133_seg1": [ + 180988.26585471502, 197137.88908578502, 204086.96857930862, + 198475.5033300639, 184169.59907957108, 164042.27028141072, + 140190.06198256067, 113927.03364772949, 91940.58338005585, + 71004.32049971918, 52378.24393723418, 37000.880115761785, + 20905.924850176645, 5976.822888061991, -9383.675625752741, + -25047.593337037175, -39266.86055442695, -52714.318369241824, + -62735.546994434924, -69769.1543029522, -74860.93689701048, + -77190.50410270122, -78412.91977069309, -79056.27898862772, + -79206.31553824381, -79092.96833331023, -77983.7957918595, + -75424.96947604445, -71204.48053112016, -65792.54397327716, + -59589.201795660374, -54698.54612125579, -52494.40683273227, + -53847.18794432424, -59928.3064041171, -70274.71118640351, + -83209.53371009645, -96274.89423439236, -107855.44777720176, + -114139.97008207024, -114256.80117265068, -108099.45421808794, + -95578.86393085332, -78278.80859625254, -60163.814915079354, + -41843.813533567576, -24582.78473250019, -11867.319688893405, + -1379.4228139837046, 6514.641620806554, 12093.611291097955, + 17801.52094709527, 22054.070716799237, 25694.016920071193, + 28689.858967669745, 29200.06604621428, 27473.531368551943, + 23335.096547890917, 17131.899939291823, 9566.301999816313, + 2687.442720967034, -3200.247950261925, -7254.5526528202345, + -8780.179039867842, -8930.022168924328, -8218.924668391337, + -7563.928749589748, -7941.744009592933, -9560.718114655605, + -12197.819011820651, -14887.435044613381, -16926.23396624906, + -17636.717397128086, -16287.475872268076, -13246.167939089613, + -9326.549532949906, -5480.771823852319, -2188.2016049211975, + -736.2599988553181, -669.7194586408568, -1277.0722114701298, + -1985.4443261349074, -1787.6959484663798, -71.31388554374189, + 3062.3253442152077, 7175.526243412681, 10855.159274388061, + 13376.75450970124, 14071.514665369443, 12822.835752166016, + 11041.6802535828, 10676.415499079183, 14061.536031786953, + 23372.51376887879, 39865.98698230292, 64541.917180671386, + 93140.25331718611, 124641.1133293118, 157477.14963178927, + 180988.26585471502 + ], + "flow:branch133_seg1:J110": [ + 26.090156335895397, 29.098152176427217, 30.512620128504587, + 30.244718990576075, 28.58246382344275, 25.78799835707658, + 22.232432591583162, 18.502551463438845, 14.964009332943865, + 11.603810169638075, 8.809334233358232, 6.289293676180425, + 3.8875955529978703, 1.6444457226326692, -0.7432709367406672, + -3.0361300145494, -5.256717567010706, -7.3711668176435925, + -8.971002252818236, -10.226417030641477, -11.077756955682334, + -11.520655731016694, -11.779887283381424, -11.890469000116372, + -11.937350262836862, -11.940842442578935, -11.82026710165661, + -11.511501142030827, -10.965726656663291, -10.193005565052315, + -9.2861658197323, -8.486456030988746, -7.977999188309014, + -8.00581727837732, -8.713308443329586, -10.08593046840611, + -11.89930571565702, -13.925864460837731, -15.766127697201165, + -16.94256823439428, -17.30830779008947, -16.657742977076268, + -15.035175106473872, -12.650587540226015, -9.974997133734524, + -7.13811706483957, -4.5197222868053215, -2.4218142484578107, + -0.6689906589547776, 0.5918596740538107, 1.557551388251303, + 2.4088599055016053, 3.089911570591431, 3.7217572824188947, + 4.193380267895968, 4.3856009954837365, 4.258330871979698, + 3.7437194578495276, 2.882652961203627, 1.8220154922629854, + 0.7390475178594329, -0.2508230926429753, -0.91466414160141, + -1.2659743321958736, -1.3631103962748088, -1.2701778500113965, + -1.1624487761686055, -1.172264506040576, -1.3557363797398476, + -1.7081218065717052, -2.1144299770488595, -2.470701694368033, + -2.6411470617983297, -2.529143392211495, -2.1569768113351486, + -1.6082496768326253, -1.0049569323782352, -0.48332100831609515, + -0.18340318105373493, -0.08661761313700521, -0.1548713422042762, + -0.27400056048525157, -0.29168840421246367, -0.10804661827957794, + 0.30497027875639543, 0.8788920143554566, 1.464289017568261, + 1.930345305411959, 2.105313874280018, 2.0002677226482315, + 1.7501213164916762, 1.6049643257000608, 1.9132121443197374, + 3.018978354695014, 5.167343129026508, 8.499654316529483, + 12.596513209524256, 17.33726377351101, 22.15511825627455, + 26.090156335895397 + ], + "pressure:branch133_seg1:J110": [ + 173540.89876643417, 191905.0907359865, 200318.726133976, + 197222.2274738196, 185199.66906164176, 166369.7534702976, + 143005.03867042367, 118075.61160435829, 95414.15002437966, + 73885.84850261341, 55571.21084122525, 39532.28443937132, 23759.5772425159, + 9049.524839100597, -6421.037344550387, -21577.13912356013, + -35945.55951649733, -49601.56493897273, -59855.529250979394, + -67617.38793951357, -73002.06650288335, -75680.0446484199, + -77204.84890936289, -77895.27022172803, -78142.93453565052, + -78120.34371978683, -77222.92461420053, -75024.38636057741, + -71243.33412875734, -66088.54991041988, -60084.51317887954, + -54996.289439106775, -52072.66759002839, -52655.50749830502, + -57767.5791306472, -67184.9330802188, -79361.18580226024, + -92508.72503905318, -104338.47313548544, -111516.33219306673, + -113108.06934765758, -108210.95089786904, -96965.4632786054, + -80822.1662349477, -63187.92715786498, -44796.70752656834, + -27676.709428906084, -14381.795514357362, -3299.810540068576, + 4785.11469604448, 10803.758070106538, 16407.42853482161, + 20766.17046453351, 24707.77322596588, 27751.39928585309, + 28743.902674491153, 27605.071435953167, 23989.062269504455, + 18179.80472238178, 11059.593094390168, 4068.9590185114666, + -2177.862327219909, -6400.173122802202, -8420.77781945388, + -8885.989281063628, -8242.701436194788, -7556.429316390977, + -7729.264196266153, -9071.813417935895, -11486.06274537764, + -14143.148881506391, -16360.692572780927, -17332.336483049865, + -16384.939947977513, -13748.30980759827, -10058.007661459294, + -6166.798498100744, -2807.0982888380345, -1033.445816451228, + -601.1393699582251, -1099.9236160899607, -1852.4021136909905, + -1859.1846588688177, -485.88772027512846, 2355.8731812436554, + 6215.99659796278, 9981.86697315198, 12836.891906301928, + 13820.010190727107, 12938.249874036903, 11256.826898476495, + 10512.441651952195, 12996.149102887206, 20922.49865471804, + 35773.23861837829, 58503.58612439483, 85814.7062775653, + 116833.88299413817, 148725.6907339778, 173540.89876643417 + ], + "flow:J110:branch133_seg2": [ + 26.090156335895397, 29.098152176427217, 30.512620128504587, + 30.244718990576075, 28.58246382344275, 25.78799835707658, + 22.232432591583162, 18.502551463438845, 14.964009332943865, + 11.603810169638075, 8.809334233358232, 6.289293676180425, + 3.8875955529978703, 1.6444457226326692, -0.7432709367406672, + -3.0361300145494, -5.256717567010706, -7.3711668176435925, + -8.971002252818236, -10.226417030641477, -11.077756955682334, + -11.520655731016694, -11.779887283381424, -11.890469000116372, + -11.937350262836862, -11.940842442578935, -11.82026710165661, + -11.511501142030827, -10.965726656663291, -10.193005565052315, + -9.2861658197323, -8.486456030988746, -7.977999188309014, + -8.00581727837732, -8.713308443329586, -10.08593046840611, + -11.89930571565702, -13.925864460837731, -15.766127697201165, + -16.94256823439428, -17.30830779008947, -16.657742977076268, + -15.035175106473872, -12.650587540226015, -9.974997133734524, + -7.13811706483957, -4.5197222868053215, -2.4218142484578107, + -0.6689906589547776, 0.5918596740538107, 1.557551388251303, + 2.4088599055016053, 3.089911570591431, 3.7217572824188947, + 4.193380267895968, 4.3856009954837365, 4.258330871979698, + 3.7437194578495276, 2.882652961203627, 1.8220154922629854, + 0.7390475178594329, -0.2508230926429753, -0.91466414160141, + -1.2659743321958736, -1.3631103962748088, -1.2701778500113965, + -1.1624487761686055, -1.172264506040576, -1.3557363797398476, + -1.7081218065717052, -2.1144299770488595, -2.470701694368033, + -2.6411470617983297, -2.529143392211495, -2.1569768113351486, + -1.6082496768326253, -1.0049569323782352, -0.48332100831609515, + -0.18340318105373493, -0.08661761313700521, -0.1548713422042762, + -0.27400056048525157, -0.29168840421246367, -0.10804661827957794, + 0.30497027875639543, 0.8788920143554566, 1.464289017568261, + 1.930345305411959, 2.105313874280018, 2.0002677226482315, + 1.7501213164916762, 1.6049643257000608, 1.9132121443197374, + 3.018978354695014, 5.167343129026508, 8.499654316529483, + 12.596513209524256, 17.33726377351101, 22.15511825627455, + 26.090156335895397 + ], + "pressure:J110:branch133_seg2": [ + 173540.89876643417, 191905.0907359865, 200318.726133976, + 197222.2274738196, 185199.66906164176, 166369.7534702976, + 143005.03867042367, 118075.61160435829, 95414.15002437966, + 73885.84850261341, 55571.21084122525, 39532.28443937132, 23759.5772425159, + 9049.524839100597, -6421.037344550387, -21577.13912356013, + -35945.55951649733, -49601.56493897273, -59855.529250979394, + -67617.38793951357, -73002.06650288335, -75680.0446484199, + -77204.84890936289, -77895.27022172803, -78142.93453565052, + -78120.34371978683, -77222.92461420053, -75024.38636057741, + -71243.33412875734, -66088.54991041988, -60084.51317887954, + -54996.289439106775, -52072.66759002839, -52655.50749830502, + -57767.5791306472, -67184.9330802188, -79361.18580226024, + -92508.72503905318, -104338.47313548544, -111516.33219306673, + -113108.06934765758, -108210.95089786904, -96965.4632786054, + -80822.1662349477, -63187.92715786498, -44796.70752656834, + -27676.709428906084, -14381.795514357362, -3299.810540068576, + 4785.11469604448, 10803.758070106538, 16407.42853482161, + 20766.17046453351, 24707.77322596588, 27751.39928585309, + 28743.902674491153, 27605.071435953167, 23989.062269504455, + 18179.80472238178, 11059.593094390168, 4068.9590185114666, + -2177.862327219909, -6400.173122802202, -8420.77781945388, + -8885.989281063628, -8242.701436194788, -7556.429316390977, + -7729.264196266153, -9071.813417935895, -11486.06274537764, + -14143.148881506391, -16360.692572780927, -17332.336483049865, + -16384.939947977513, -13748.30980759827, -10058.007661459294, + -6166.798498100744, -2807.0982888380345, -1033.445816451228, + -601.1393699582251, -1099.9236160899607, -1852.4021136909905, + -1859.1846588688177, -485.88772027512846, 2355.8731812436554, + 6215.99659796278, 9981.86697315198, 12836.891906301928, + 13820.010190727107, 12938.249874036903, 11256.826898476495, + 10512.441651952195, 12996.149102887206, 20922.49865471804, + 35773.23861837829, 58503.58612439483, 85814.7062775653, + 116833.88299413817, 148725.6907339778, 173540.89876643417 + ], + "flow:branch134_seg0:J111": [ + 19.946413312727312, 22.41984657182276, 23.68436655612911, + 23.667081862525393, 22.524925001669086, 20.454715287394666, + 17.752574117148605, 14.86696709768221, 12.065523044439505, + 9.420873014115504, 7.191489088866046, 5.181381775976113, + 3.302849711243622, 1.5365445771374246, -0.3171315226534895, + -2.10870611326359, -3.8647802493273327, -5.5243335731991206, + -6.823697488413241, -7.854375929731907, -8.557339911553408, + -8.946983270116293, -9.171744305509037, -9.270647679802837, + -9.315884662081766, -9.324256833546379, -9.244477754127349, + -9.0263770241275, -8.627643002170378, -8.047706770529187, + -7.3541720742000365, -6.715745829702674, -6.281000416031937, + -6.243728017293897, -6.721281638369628, -7.71983086343979, + -9.089883779275041, -10.660444921353015, -12.117410601364204, + -13.113002720344836, -13.494659934520392, -13.092754973195794, + -11.928915584141663, -10.15163447670536, -8.091166691460984, + -5.878796600436133, -3.8180554217290634, -2.119471942332114, + -0.7081640344123247, 0.3202567533485399, 1.11147067880106, + 1.7847476894761203, 2.3325211682091975, 2.836749507360582, + 3.220451815708323, 3.404546802890588, 3.343191919094082, + 2.982788730910021, 2.347479950075535, 1.5420374556717549, + 0.6932158769938647, -0.09204950894237868, -0.6426784658029088, + -0.9557804977738875, -1.057288192957572, -1.001408478646796, + -0.9182404328087512, -0.9117649359097848, -1.035306446852495, + -1.2925017938814158, -1.6052400910712255, -1.892608223463512, + -2.0462977174191113, -1.990422094743999, -1.7291831227266594, + -1.3186832662498236, -0.8502835460356983, -0.43385348785711797, + -0.1743641439652845, -0.07464104193172848, -0.11240361067428885, + -0.20190532386462598, -0.22807070104000102, -0.1080675131288549, + 0.18974254514945604, 0.6208211443488186, 1.0803561861087896, + 1.4598460954713175, 1.6271189647977011, 1.577206166403191, + 1.3955501372572987, 1.2659212533765345, 1.4523602335914612, + 2.224803509737229, 3.7887061041201178, 6.257856357126675, + 9.372681924980753, 13.026669386649496, 16.769285072064864, + 19.946413312727312 + ], + "pressure:branch134_seg0:J111": [ + 170956.8032941097, 189303.57265140853, 198130.2062501845, + 195520.35436579687, 183964.78562352285, 165670.45298710527, + 142870.90049710523, 118069.85210550233, 95508.87256059606, + 74258.75453360258, 55841.191608673864, 39887.180036738384, + 24239.185861494694, 9532.984235171005, -5692.149308438755, + -20767.766658992037, -35118.57205759849, -48634.09579387859, + -58921.50794122808, -66694.09330794145, -72134.02463505555, + -74896.23458564626, -76447.52615266464, -77165.57027356856, + -77428.50577722563, -77422.4572968699, -76567.80777060465, + -74444.17282922205, -70762.12027950004, -65738.32770603667, + -59831.13756769206, -54759.790832628474, -51814.09968521758, + -52214.95327411453, -57090.48148243311, -66223.70752829932, + -78203.41957180522, -91191.00111584888, -102958.91812298703, + -110292.94629244652, -112041.2971553887, -107441.14343151855, + -96513.28975346035, -80647.90743678319, -63289.47345967226, + -45114.78442755376, -28055.05370081977, -14791.617419421893, + -3737.439941552609, 4386.523434203291, 10396.816866055542, + 16015.484055912002, 20359.31476113722, 24246.930553114213, + 27340.925174257703, 28406.86107128597, 27364.287929638376, + 23905.33880508342, 18264.349387930284, 11254.28375137189, + 4301.055843643211, -1870.4622921807515, -6179.133251302822, + -8270.65035413347, -8780.775584463952, -8195.341320725713, + -7513.5608829395815, -7651.5097742436, -8942.143031797872, + -11303.15293185219, -13911.623460553443, -16118.250989473243, + -17132.48999720825, -16265.783041855246, -13718.179701089262, + -10111.504315314633, -6291.324855669323, -2926.9059604362897, + -1112.9880507684313, -639.8480775670307, -1072.4981074097777, + -1799.7776750865683, -1835.8168536950923, -536.2968928443647, + 2212.5627129147806, 5995.373873020375, 9744.887820296826, + 12589.013486845437, 13658.2752960585, 12861.164202867234, + 11224.57494040241, 10466.111767469509, 12822.793174913602, + 20498.543772887064, 34970.014098737855, 57272.607512875344, + 84064.89091380234, 114548.06910169788, 146276.34243142308, + 170956.8032941097 + ], + "flow:J111:branch134_seg1": [ + 19.946413312727312, 22.41984657182276, 23.68436655612911, + 23.667081862525393, 22.524925001669086, 20.454715287394666, + 17.752574117148605, 14.86696709768221, 12.065523044439505, + 9.420873014115504, 7.191489088866046, 5.181381775976113, + 3.302849711243622, 1.5365445771374246, -0.3171315226534895, + -2.10870611326359, -3.8647802493273327, -5.5243335731991206, + -6.823697488413241, -7.854375929731907, -8.557339911553408, + -8.946983270116293, -9.171744305509037, -9.270647679802837, + -9.315884662081766, -9.324256833546379, -9.244477754127349, + -9.0263770241275, -8.627643002170378, -8.047706770529187, + -7.3541720742000365, -6.715745829702674, -6.281000416031937, + -6.243728017293897, -6.721281638369628, -7.71983086343979, + -9.089883779275041, -10.660444921353015, -12.117410601364204, + -13.113002720344836, -13.494659934520392, -13.092754973195794, + -11.928915584141663, -10.15163447670536, -8.091166691460984, + -5.878796600436133, -3.8180554217290634, -2.119471942332114, + -0.7081640344123247, 0.3202567533485399, 1.11147067880106, + 1.7847476894761203, 2.3325211682091975, 2.836749507360582, + 3.220451815708323, 3.404546802890588, 3.343191919094082, + 2.982788730910021, 2.347479950075535, 1.5420374556717549, + 0.6932158769938647, -0.09204950894237868, -0.6426784658029088, + -0.9557804977738875, -1.057288192957572, -1.001408478646796, + -0.9182404328087512, -0.9117649359097848, -1.035306446852495, + -1.2925017938814158, -1.6052400910712255, -1.892608223463512, + -2.0462977174191113, -1.990422094743999, -1.7291831227266594, + -1.3186832662498236, -0.8502835460356983, -0.43385348785711797, + -0.1743641439652845, -0.07464104193172848, -0.11240361067428885, + -0.20190532386462598, -0.22807070104000102, -0.1080675131288549, + 0.18974254514945604, 0.6208211443488186, 1.0803561861087896, + 1.4598460954713175, 1.6271189647977011, 1.577206166403191, + 1.3955501372572987, 1.2659212533765345, 1.4523602335914612, + 2.224803509737229, 3.7887061041201178, 6.257856357126675, + 9.372681924980753, 13.026669386649496, 16.769285072064864, + 19.946413312727312 + ], + "pressure:J111:branch134_seg1": [ + 170956.8032941097, 189303.57265140853, 198130.2062501845, + 195520.35436579687, 183964.78562352285, 165670.45298710527, + 142870.90049710523, 118069.85210550233, 95508.87256059606, + 74258.75453360258, 55841.191608673864, 39887.180036738384, + 24239.185861494694, 9532.984235171005, -5692.149308438755, + -20767.766658992037, -35118.57205759849, -48634.09579387859, + -58921.50794122808, -66694.09330794145, -72134.02463505555, + -74896.23458564626, -76447.52615266464, -77165.57027356856, + -77428.50577722563, -77422.4572968699, -76567.80777060465, + -74444.17282922205, -70762.12027950004, -65738.32770603667, + -59831.13756769206, -54759.790832628474, -51814.09968521758, + -52214.95327411453, -57090.48148243311, -66223.70752829932, + -78203.41957180522, -91191.00111584888, -102958.91812298703, + -110292.94629244652, -112041.2971553887, -107441.14343151855, + -96513.28975346035, -80647.90743678319, -63289.47345967226, + -45114.78442755376, -28055.05370081977, -14791.617419421893, + -3737.439941552609, 4386.523434203291, 10396.816866055542, + 16015.484055912002, 20359.31476113722, 24246.930553114213, + 27340.925174257703, 28406.86107128597, 27364.287929638376, + 23905.33880508342, 18264.349387930284, 11254.28375137189, + 4301.055843643211, -1870.4622921807515, -6179.133251302822, + -8270.65035413347, -8780.775584463952, -8195.341320725713, + -7513.5608829395815, -7651.5097742436, -8942.143031797872, + -11303.15293185219, -13911.623460553443, -16118.250989473243, + -17132.48999720825, -16265.783041855246, -13718.179701089262, + -10111.504315314633, -6291.324855669323, -2926.9059604362897, + -1112.9880507684313, -639.8480775670307, -1072.4981074097777, + -1799.7776750865683, -1835.8168536950923, -536.2968928443647, + 2212.5627129147806, 5995.373873020375, 9744.887820296826, + 12589.013486845437, 13658.2752960585, 12861.164202867234, + 11224.57494040241, 10466.111767469509, 12822.793174913602, + 20498.543772887064, 34970.014098737855, 57272.607512875344, + 84064.89091380234, 114548.06910169788, 146276.34243142308, + 170956.8032941097 + ], + "flow:branch134_seg1:J112": [ + 19.92878639911549, 22.410111076750393, 23.681184396290742, + 23.671442164728038, 22.53716480112738, 20.470069564615386, + 17.76769553112198, 14.886340499258859, 12.079963940173407, + 9.431420091965675, 7.203456093248553, 5.1903771746659775, + 3.3119904087187337, 1.5461235284982182, -0.3100338567979876, + -2.0991225724226914, -3.855179531524039, -5.5182569351003465, + -6.817123678570452, -7.850028073142118, -8.554748368089982, + -8.944963600815813, -9.171066028197144, -9.270217322027612, + -9.315560442287417, -9.324440689837807, -9.245384546763946, + -9.028384056458476, -8.631082029541618, -8.051671259974716, + -7.358461150002971, -6.718893016639748, -6.281525152579504, + -6.241602954887021, -6.716611832673863, -7.713297199129716, + -9.080949853084421, -10.652992039131757, -12.11186192972592, + -13.109827792903793, -13.496413021230687, -13.097839200078699, + -11.937475398695344, -10.161667109436877, -8.103619472239327, + -5.891008107090091, -3.8287829169578056, -2.1290659371227063, + -0.7147748543659151, 0.3147327796872706, 1.1068126244103822, + 1.7806059358318276, 2.329246771309328, 2.834395224762684, + 3.2186212622124417, 3.404391153840764, 3.3450066745185416, + 2.986184092321962, 2.351507860022481, 1.5474066505081467, + 0.6974616810291636, -0.08997916617552756, -0.6404990802559076, + -0.955031833896393, -1.057715962510312, -1.0018235872211114, + -0.9184048612432354, -0.9113794109749535, -1.034105270323161, + -1.2908991085998682, -1.6034386349298446, -1.8912845759385646, + -2.046120792211075, -1.9914540841002768, -1.7314463766955546, + -1.3216468500050975, -0.8530238574949427, -0.4360853243660792, + -0.17527607026129097, -0.07441943566362297, -0.11176706532646823, + -0.20161211632087142, -0.22850676548415347, -0.1095483848398364, + 0.18762962789624374, 0.6180550648228105, 1.0782086601816556, + 1.4593140896937817, 1.6270567374630225, 1.5780323237774605, + 1.3965092929197191, 1.2657047618722295, 1.4493540787243717, + 2.2178400356942873, 3.776515760361248, 6.24182204176869, + 9.352338063925478, 13.002929358115445, 16.74693064880753, + 19.92878639911549 + ], + "pressure:branch134_seg1:J112": [ + 166429.25372072187, 185732.61659463373, 195350.67066050167, + 194047.3435144535, 183698.52882692922, 166166.03024414124, + 143782.4884673638, 119681.62004784802, 96960.75049349928, + 75549.43984893567, 57281.445405585946, 41101.51598733599, + 25639.728014673765, 11102.879015928143, -4068.001410858756, + -18870.74776864219, -33192.73041964408, -46728.7551889874, + -57151.85029926368, -65250.38471020335, -70844.61786390308, + -73815.64281230219, -75517.38238174173, -76280.43379977808, + -76596.99941500915, -76632.72682621663, -75887.53044381179, + -73949.09384124095, -70499.83946937672, -65635.4339376403, + -59864.790687642715, -54722.46783600991, -51458.1399206158, + -51480.4683770301, -55835.667328285264, -64443.756319072796, + -75983.99921571229, -88879.29750805745, -100705.45910563957, + -108446.27075864961, -110917.14761562402, -107013.62086259395, + -96847.20429422605, -81698.55424565535, -64663.72816999779, + -46576.37742334159, -29651.8068842615, -16103.646535850867, + -4809.715522902547, 3443.4384104427895, 9673.905424742085, + 15227.47743373575, 19633.690847640162, 23635.898113720752, + 26749.365641830576, 28046.792367146103, 27294.428904460663, + 24115.055376109707, 18718.013177993365, 11949.967912846569, + 5009.581845133179, -1287.8596894414081, -5682.797649184581, + -8015.869142074289, -8694.085648930197, -8174.262222180273, + -7492.765301836273, -7530.224899961805, -8670.663571867166, + -10893.83680007203, -13467.564334025074, -15743.887021700122, + -16886.38476229097, -16236.795154804719, -13911.91479745164, + -10445.961391238568, -6629.8979000543595, -3249.1379065376955, + -1275.0438636181975, -622.4619166819563, -987.575653524982, + -1717.9915918062788, -1849.163778613284, -721.5257730302585, + 1857.7297757917602, 5495.859877144322, 9246.057733842868, + 12225.52809106872, 13445.877881166065, 12852.801604568118, + 11296.6416995164, 10379.431594136695, 12290.531564140672, + 19234.17487536418, 32783.10150868617, 53943.323393915685, + 79963.49073956981, 110032.11987944202, 141132.3813624696, + 166429.25372072187 + ], + "flow:J112:branch134_seg2": [ + 19.92878639911549, 22.410111076750393, 23.681184396290742, + 23.671442164728038, 22.53716480112738, 20.470069564615386, + 17.76769553112198, 14.886340499258859, 12.079963940173407, + 9.431420091965675, 7.203456093248553, 5.1903771746659775, + 3.3119904087187337, 1.5461235284982182, -0.3100338567979876, + -2.0991225724226914, -3.855179531524039, -5.5182569351003465, + -6.817123678570452, -7.850028073142118, -8.554748368089982, + -8.944963600815813, -9.171066028197144, -9.270217322027612, + -9.315560442287417, -9.324440689837807, -9.245384546763946, + -9.028384056458476, -8.631082029541618, -8.051671259974716, + -7.358461150002971, -6.718893016639748, -6.281525152579504, + -6.241602954887021, -6.716611832673863, -7.713297199129716, + -9.080949853084421, -10.652992039131757, -12.11186192972592, + -13.109827792903793, -13.496413021230687, -13.097839200078699, + -11.937475398695344, -10.161667109436877, -8.103619472239327, + -5.891008107090091, -3.8287829169578056, -2.1290659371227063, + -0.7147748543659151, 0.3147327796872706, 1.1068126244103822, + 1.7806059358318276, 2.329246771309328, 2.834395224762684, + 3.2186212622124417, 3.404391153840764, 3.3450066745185416, + 2.986184092321962, 2.351507860022481, 1.5474066505081467, + 0.6974616810291636, -0.08997916617552756, -0.6404990802559076, + -0.955031833896393, -1.057715962510312, -1.0018235872211114, + -0.9184048612432354, -0.9113794109749535, -1.034105270323161, + -1.2908991085998682, -1.6034386349298446, -1.8912845759385646, + -2.046120792211075, -1.9914540841002768, -1.7314463766955546, + -1.3216468500050975, -0.8530238574949427, -0.4360853243660792, + -0.17527607026129097, -0.07441943566362297, -0.11176706532646823, + -0.20161211632087142, -0.22850676548415347, -0.1095483848398364, + 0.18762962789624374, 0.6180550648228105, 1.0782086601816556, + 1.4593140896937817, 1.6270567374630225, 1.5780323237774605, + 1.3965092929197191, 1.2657047618722295, 1.4493540787243717, + 2.2178400356942873, 3.776515760361248, 6.24182204176869, + 9.352338063925478, 13.002929358115445, 16.74693064880753, + 19.92878639911549 + ], + "pressure:J112:branch134_seg2": [ + 166429.25372072187, 185732.61659463373, 195350.67066050167, + 194047.3435144535, 183698.52882692922, 166166.03024414124, + 143782.4884673638, 119681.62004784802, 96960.75049349928, + 75549.43984893567, 57281.445405585946, 41101.51598733599, + 25639.728014673765, 11102.879015928143, -4068.001410858756, + -18870.74776864219, -33192.73041964408, -46728.7551889874, + -57151.85029926368, -65250.38471020335, -70844.61786390308, + -73815.64281230219, -75517.38238174173, -76280.43379977808, + -76596.99941500915, -76632.72682621663, -75887.53044381179, + -73949.09384124095, -70499.83946937672, -65635.4339376403, + -59864.790687642715, -54722.46783600991, -51458.1399206158, + -51480.4683770301, -55835.667328285264, -64443.756319072796, + -75983.99921571229, -88879.29750805745, -100705.45910563957, + -108446.27075864961, -110917.14761562402, -107013.62086259395, + -96847.20429422605, -81698.55424565535, -64663.72816999779, + -46576.37742334159, -29651.8068842615, -16103.646535850867, + -4809.715522902547, 3443.4384104427895, 9673.905424742085, + 15227.47743373575, 19633.690847640162, 23635.898113720752, + 26749.365641830576, 28046.792367146103, 27294.428904460663, + 24115.055376109707, 18718.013177993365, 11949.967912846569, + 5009.581845133179, -1287.8596894414081, -5682.797649184581, + -8015.869142074289, -8694.085648930197, -8174.262222180273, + -7492.765301836273, -7530.224899961805, -8670.663571867166, + -10893.83680007203, -13467.564334025074, -15743.887021700122, + -16886.38476229097, -16236.795154804719, -13911.91479745164, + -10445.961391238568, -6629.8979000543595, -3249.1379065376955, + -1275.0438636181975, -622.4619166819563, -987.575653524982, + -1717.9915918062788, -1849.163778613284, -721.5257730302585, + 1857.7297757917602, 5495.859877144322, 9246.057733842868, + 12225.52809106872, 13445.877881166065, 12852.801604568118, + 11296.6416995164, 10379.431594136695, 12290.531564140672, + 19234.17487536418, 32783.10150868617, 53943.323393915685, + 79963.49073956981, 110032.11987944202, 141132.3813624696, + 166429.25372072187 + ], + "flow:branch138_seg0:J113": [ + 55.21805009260667, 61.44655950114702, 64.30713013967986, + 63.63870996230197, 59.96488682875645, 53.90418650327263, + 46.340272342457816, 38.3379846597837, 30.88660668050827, + 23.92302726335885, 17.99004272540322, 12.7863762809664, 7.779710976883511, + 3.095192381361229, -1.816480148320903, -6.695021999505126, + -11.30431877482575, -15.65345952694659, -19.03152326491999, + -21.635814968546935, -23.357862187508545, -24.272945372089247, + -24.76675012414031, -24.969201765096543, -25.057398823868308, + -25.04065124935654, -24.779163642420038, -24.115241234602895, + -22.952889598234425, -21.302018669262782, -19.395541396476347, + -17.693328545909736, -16.651876946683487, -16.747776638548444, + -18.28683058546411, -21.210324394640335, -25.133776579616008, + -29.380398587011673, -33.258185074919346, -35.71631424777102, + -36.41506565036453, -34.95431329664577, -31.506174786789874, + -26.442955045933623, -20.725774681109474, -14.709455059693141, + -9.238476826271572, -4.792631433302733, -1.1678378681696313, + 1.439222402153035, 3.471307307710559, 5.180797570816129, + 6.605183995129336, 7.905652617891067, 8.873094113074705, + 9.259601502098684, 8.95446864523265, 7.829265329322006, 5.996618989995382, + 3.710692059690636, 1.4271726065424581, -0.6221183382600586, + -2.034458234617209, -2.7458560313969054, -2.9091243953617907, + -2.694972307640161, -2.4537752352311206, -2.46535706878414, + -2.8474866656768403, -3.5914181711028306, -4.455822815966943, + -5.215595367679569, -5.561678730722257, -5.325127483308547, + -4.520979544797729, -3.351613253592513, -2.055546333690977, + -0.9645858253033313, -0.32719627568284854, -0.14061866734675124, + -0.30400289227996974, -0.5640204179460572, -0.606687294078571, + -0.21191473003163505, 0.663254409693487, 1.895827412628083, + 3.130136771901141, 4.091674177804736, 4.459015543843552, + 4.2273517480162575, 3.6811950858918454, 3.373447486680349, + 4.030322839012933, 6.406802789447424, 10.947865128272644, + 17.995590663105173, 26.675964696700095, 36.817270601569305, + 46.83567890488152, 55.21805009260667 + ], + "pressure:branch138_seg0:J113": [ + 193133.82267112422, 206201.77559864838, 210438.87597377063, + 200815.7341520049, 182829.29433811424, 159959.80589395802, + 134618.057167162, 106370.85822216184, 85266.18354511139, + 64987.94676778782, 46156.95631611805, 31971.010168687244, + 15419.782622817425, 525.3267391759518, -14742.340622145777, + -31215.602201930556, -44770.06535816604, -57927.05808452716, + -67499.8777106672, -73440.30378194108, -77880.05083426257, + -79589.10243651002, -80277.65427158981, -80769.85837749047, + -80767.38871666948, -80468.94088453482, -79050.32998132471, + -75928.87133257944, -71052.03432791529, -65086.51963480326, + -58583.54197041503, -53865.28459213087, -52675.33149462502, + -55335.599377731596, -63102.31987719385, -75065.05968905693, + -89460.53460436684, -102435.25760804041, -113801.14056004601, + -118513.50715241494, -116372.34018336317, -107924.03754617153, + -93413.74007996722, -74226.63996124869, -55144.77022548918, + -36666.75762886084, -19463.36196871736, -7477.015649675099, + 2066.80322298077, 9476.57609180957, 14523.04253967988, 20040.23035965787, + 24215.166086868685, 27487.643953422194, 30275.028769291268, + 30047.78463123838, 27398.903419747527, 22297.583805506412, + 15351.763045994356, 6971.244743728743, 248.16007850689059, + -5224.830855643985, -8907.888370200575, -9562.675131822718, + -9153.601477425404, -8218.170721027642, -7560.9529427777825, + -8238.513793191758, -10252.11192988629, -13242.441919198913, + -16032.874421136677, -17874.489131649814, -18152.786510440128, + -16213.504026222374, -12513.608539528139, -8217.15866853849, + -4266.864437410438, -1142.272046190767, -114.37815260597483, + -597.9653910362471, -1482.4451469311537, -2197.0911775979807, + -1719.4048675369104, 555.2524193922925, 4185.696149639772, + 8785.898157271324, 12343.443846909751, 14425.949146762125, + 14593.87084378082, 12719.921725948514, 10705.19609964846, + 10851.800186354158, 15544.578482867577, 27052.318494248597, + 45957.36478042652, 73616.05944190598, 104315.33104564014, + 137375.82413874488, 170772.0162702801, 193133.82267112422 + ], + "flow:J113:branch138_seg1": [ + 55.21805009260667, 61.44655950114702, 64.30713013967986, + 63.63870996230197, 59.96488682875645, 53.90418650327263, + 46.340272342457816, 38.3379846597837, 30.88660668050827, + 23.92302726335885, 17.99004272540322, 12.7863762809664, 7.779710976883511, + 3.095192381361229, -1.816480148320903, -6.695021999505126, + -11.30431877482575, -15.65345952694659, -19.03152326491999, + -21.635814968546935, -23.357862187508545, -24.272945372089247, + -24.76675012414031, -24.969201765096543, -25.057398823868308, + -25.04065124935654, -24.779163642420038, -24.115241234602895, + -22.952889598234425, -21.302018669262782, -19.395541396476347, + -17.693328545909736, -16.651876946683487, -16.747776638548444, + -18.28683058546411, -21.210324394640335, -25.133776579616008, + -29.380398587011673, -33.258185074919346, -35.71631424777102, + -36.41506565036453, -34.95431329664577, -31.506174786789874, + -26.442955045933623, -20.725774681109474, -14.709455059693141, + -9.238476826271572, -4.792631433302733, -1.1678378681696313, + 1.439222402153035, 3.471307307710559, 5.180797570816129, + 6.605183995129336, 7.905652617891067, 8.873094113074705, + 9.259601502098684, 8.95446864523265, 7.829265329322006, 5.996618989995382, + 3.710692059690636, 1.4271726065424581, -0.6221183382600586, + -2.034458234617209, -2.7458560313969054, -2.9091243953617907, + -2.694972307640161, -2.4537752352311206, -2.46535706878414, + -2.8474866656768403, -3.5914181711028306, -4.455822815966943, + -5.215595367679569, -5.561678730722257, -5.325127483308547, + -4.520979544797729, -3.351613253592513, -2.055546333690977, + -0.9645858253033313, -0.32719627568284854, -0.14061866734675124, + -0.30400289227996974, -0.5640204179460572, -0.606687294078571, + -0.21191473003163505, 0.663254409693487, 1.895827412628083, + 3.130136771901141, 4.091674177804736, 4.459015543843552, + 4.2273517480162575, 3.6811950858918454, 3.373447486680349, + 4.030322839012933, 6.406802789447424, 10.947865128272644, + 17.995590663105173, 26.675964696700095, 36.817270601569305, + 46.83567890488152, 55.21805009260667 + ], + "pressure:J113:branch138_seg1": [ + 193133.82267112422, 206201.77559864838, 210438.87597377063, + 200815.7341520049, 182829.29433811424, 159959.80589395802, + 134618.057167162, 106370.85822216184, 85266.18354511139, + 64987.94676778782, 46156.95631611805, 31971.010168687244, + 15419.782622817425, 525.3267391759518, -14742.340622145777, + -31215.602201930556, -44770.06535816604, -57927.05808452716, + -67499.8777106672, -73440.30378194108, -77880.05083426257, + -79589.10243651002, -80277.65427158981, -80769.85837749047, + -80767.38871666948, -80468.94088453482, -79050.32998132471, + -75928.87133257944, -71052.03432791529, -65086.51963480326, + -58583.54197041503, -53865.28459213087, -52675.33149462502, + -55335.599377731596, -63102.31987719385, -75065.05968905693, + -89460.53460436684, -102435.25760804041, -113801.14056004601, + -118513.50715241494, -116372.34018336317, -107924.03754617153, + -93413.74007996722, -74226.63996124869, -55144.77022548918, + -36666.75762886084, -19463.36196871736, -7477.015649675099, + 2066.80322298077, 9476.57609180957, 14523.04253967988, 20040.23035965787, + 24215.166086868685, 27487.643953422194, 30275.028769291268, + 30047.78463123838, 27398.903419747527, 22297.583805506412, + 15351.763045994356, 6971.244743728743, 248.16007850689059, + -5224.830855643985, -8907.888370200575, -9562.675131822718, + -9153.601477425404, -8218.170721027642, -7560.9529427777825, + -8238.513793191758, -10252.11192988629, -13242.441919198913, + -16032.874421136677, -17874.489131649814, -18152.786510440128, + -16213.504026222374, -12513.608539528139, -8217.15866853849, + -4266.864437410438, -1142.272046190767, -114.37815260597483, + -597.9653910362471, -1482.4451469311537, -2197.0911775979807, + -1719.4048675369104, 555.2524193922925, 4185.696149639772, + 8785.898157271324, 12343.443846909751, 14425.949146762125, + 14593.87084378082, 12719.921725948514, 10705.19609964846, + 10851.800186354158, 15544.578482867577, 27052.318494248597, + 45957.36478042652, 73616.05944190598, 104315.33104564014, + 137375.82413874488, 170772.0162702801, 193133.82267112422 + ], + "flow:branch138_seg1:J114": [ + 55.137887996388194, 61.43014226552268, 64.33585446147114, + 63.69140698862794, 60.05853176698704, 54.04371245816914, + 46.47353489700541, 38.519046250571186, 31.0478209167268, 24.0121093305382, + 18.131693380788406, 12.881089291474996, 7.886373533313065, + 3.2053041127373105, -1.7540294567198638, -6.57468027025092, + -11.238503718460606, -15.625139846884306, -18.99936391793734, + -21.61808206063205, -23.36038686992053, -24.27007089822033, + -24.77159090219379, -24.97406244701581, -25.056109900088398, + -25.047189208178022, -24.787978256263212, -24.134063008215264, + -22.976813789681884, -21.33876251681412, -19.42006439195216, + -17.721352075889328, -16.650603234140526, -16.721019041623677, + -18.22839284874917, -21.144835820767266, -25.019305926735843, + -29.31177755730246, -33.203651748161505, -35.698637203200896, + -36.444938911686606, -35.03549546968663, -31.57386440956605, + -26.51639745731021, -20.800983018019373, -14.778873956079421, + -9.272115065399067, -4.8292377093508385, -1.183710590562842, + 1.4341347030777847, 3.4397235746226085, 5.175217775730074, + 6.583286696692761, 7.890484288053146, 8.865792633396438, 9.26012228774472, + 8.973496200256195, 7.8669683852747285, 6.03659972019609, + 3.770463947938761, 1.4753759399459165, -0.6044219412056386, + -2.0118094316832527, -2.7415919962213473, -2.9172966378050824, + -2.700106013029118, -2.452765154737737, -2.457088841005151, + -2.837782445043034, -3.5804050727204326, -4.448802307973293, + -5.211435834262015, -5.571090416339429, -5.335200449068409, + -4.539496966995474, -3.365380646296626, -2.074963804874348, + -0.9685866817413228, -0.33227551886599443, -0.13693355888925332, + -0.29782006532220173, -0.5630490674286558, -0.6131882374501566, + -0.23064610305323172, 0.640662827249281, 1.8634045178468384, + 3.1069247964780313, 4.089404745199498, 4.463248895872152, + 4.235882428468261, 3.6896148056672033, 3.36219475746971, + 3.9955780669001792, 6.321350145954777, 10.864203718713728, + 17.88788162527246, 26.584902426397928, 36.66447043784449, + 46.78955363137396, 55.137887996388194 + ], + "pressure:branch138_seg1:J114": [ + 182353.33128529164, 199088.7140744698, 206013.3018692476, + 200503.60733231247, 186068.01275265292, 165539.4749383869, + 141114.18918250233, 114701.39858634125, 92270.03296761334, + 70952.0200433983, 52354.19597865917, 36801.304834570845, + 20772.652433766132, 5883.977412766679, -9583.681680285003, + -25266.328154186165, -39626.1182379947, -53160.538682600665, + -63297.831135810695, -70473.43765173247, -75516.0403604316, + -77818.95539124927, -78988.98124296936, -79547.81498550822, + -79666.61500355756, -79528.5309517338, -78431.59481121141, + -75899.84279891897, -71690.90539843995, -66214.09187101462, + -59934.581555380864, -54917.37997177493, -52515.41231823573, + -53791.82426064685, -59841.586952454, -70248.49339535677, + -83336.83059567588, -96702.55093474626, -108529.51400513087, + -115067.12260209446, -115407.71303980418, -109253.62529952133, + -96616.65608372845, -79179.05588272343, -60682.53616311004, + -41970.98923341329, -24588.185501252774, -11601.08590065747, + -998.5819270901022, 6848.377150797741, 12473.351773195996, + 18042.817763282135, 22270.474059487093, 25987.626049784423, + 28948.890175462966, 29523.323018735093, 27843.889002057138, + 23678.139695987706, 17392.467967083667, 9752.50823693141, + 2721.0241762237883, -3343.5863632888972, -7455.906507546288, + -9042.84903994249, -9172.758923647953, -8373.48179218543, + -7638.612978167797, -7941.036475605733, -9521.775033077894, + -12164.987430213827, -14930.893705664843, -17069.889374014965, + -17831.07876649739, -16522.31630626244, -13474.279430946579, + -9486.986598246582, -5514.632066965475, -2158.010934162952, + -632.4282174261845, -516.3973950141167, -1180.51921602254, + -1962.250136955101, -1838.026200064061, -174.2283395856517, + 2965.126589453175, 7120.312466629004, 10901.147064913044, + 13546.216248326798, 14294.27376060843, 13054.295314039355, + 11199.223263822665, 10671.83972944047, 13874.99114335121, + 23038.643993678448, 39522.03331188406, 64200.75698837142, + 93155.9541966766, 125280.01435900344, 158197.28320991667, + 182353.33128529164 + ], + "flow:J114:branch138_seg2": [ + 55.137887996388194, 61.43014226552268, 64.33585446147114, + 63.69140698862794, 60.05853176698704, 54.04371245816914, + 46.47353489700541, 38.519046250571186, 31.0478209167268, 24.0121093305382, + 18.131693380788406, 12.881089291474996, 7.886373533313065, + 3.2053041127373105, -1.7540294567198638, -6.57468027025092, + -11.238503718460606, -15.625139846884306, -18.99936391793734, + -21.61808206063205, -23.36038686992053, -24.27007089822033, + -24.77159090219379, -24.97406244701581, -25.056109900088398, + -25.047189208178022, -24.787978256263212, -24.134063008215264, + -22.976813789681884, -21.33876251681412, -19.42006439195216, + -17.721352075889328, -16.650603234140526, -16.721019041623677, + -18.22839284874917, -21.144835820767266, -25.019305926735843, + -29.31177755730246, -33.203651748161505, -35.698637203200896, + -36.444938911686606, -35.03549546968663, -31.57386440956605, + -26.51639745731021, -20.800983018019373, -14.778873956079421, + -9.272115065399067, -4.8292377093508385, -1.183710590562842, + 1.4341347030777847, 3.4397235746226085, 5.175217775730074, + 6.583286696692761, 7.890484288053146, 8.865792633396438, 9.26012228774472, + 8.973496200256195, 7.8669683852747285, 6.03659972019609, + 3.770463947938761, 1.4753759399459165, -0.6044219412056386, + -2.0118094316832527, -2.7415919962213473, -2.9172966378050824, + -2.700106013029118, -2.452765154737737, -2.457088841005151, + -2.837782445043034, -3.5804050727204326, -4.448802307973293, + -5.211435834262015, -5.571090416339429, -5.335200449068409, + -4.539496966995474, -3.365380646296626, -2.074963804874348, + -0.9685866817413228, -0.33227551886599443, -0.13693355888925332, + -0.29782006532220173, -0.5630490674286558, -0.6131882374501566, + -0.23064610305323172, 0.640662827249281, 1.8634045178468384, + 3.1069247964780313, 4.089404745199498, 4.463248895872152, + 4.235882428468261, 3.6896148056672033, 3.36219475746971, + 3.9955780669001792, 6.321350145954777, 10.864203718713728, + 17.88788162527246, 26.584902426397928, 36.66447043784449, + 46.78955363137396, 55.137887996388194 + ], + "pressure:J114:branch138_seg2": [ + 182353.33128529164, 199088.7140744698, 206013.3018692476, + 200503.60733231247, 186068.01275265292, 165539.4749383869, + 141114.18918250233, 114701.39858634125, 92270.03296761334, + 70952.0200433983, 52354.19597865917, 36801.304834570845, + 20772.652433766132, 5883.977412766679, -9583.681680285003, + -25266.328154186165, -39626.1182379947, -53160.538682600665, + -63297.831135810695, -70473.43765173247, -75516.0403604316, + -77818.95539124927, -78988.98124296936, -79547.81498550822, + -79666.61500355756, -79528.5309517338, -78431.59481121141, + -75899.84279891897, -71690.90539843995, -66214.09187101462, + -59934.581555380864, -54917.37997177493, -52515.41231823573, + -53791.82426064685, -59841.586952454, -70248.49339535677, + -83336.83059567588, -96702.55093474626, -108529.51400513087, + -115067.12260209446, -115407.71303980418, -109253.62529952133, + -96616.65608372845, -79179.05588272343, -60682.53616311004, + -41970.98923341329, -24588.185501252774, -11601.08590065747, + -998.5819270901022, 6848.377150797741, 12473.351773195996, + 18042.817763282135, 22270.474059487093, 25987.626049784423, + 28948.890175462966, 29523.323018735093, 27843.889002057138, + 23678.139695987706, 17392.467967083667, 9752.50823693141, + 2721.0241762237883, -3343.5863632888972, -7455.906507546288, + -9042.84903994249, -9172.758923647953, -8373.48179218543, + -7638.612978167797, -7941.036475605733, -9521.775033077894, + -12164.987430213827, -14930.893705664843, -17069.889374014965, + -17831.07876649739, -16522.31630626244, -13474.279430946579, + -9486.986598246582, -5514.632066965475, -2158.010934162952, + -632.4282174261845, -516.3973950141167, -1180.51921602254, + -1962.250136955101, -1838.026200064061, -174.2283395856517, + 2965.126589453175, 7120.312466629004, 10901.147064913044, + 13546.216248326798, 14294.27376060843, 13054.295314039355, + 11199.223263822665, 10671.83972944047, 13874.99114335121, + 23038.643993678448, 39522.03331188406, 64200.75698837142, + 93155.9541966766, 125280.01435900344, 158197.28320991667, + 182353.33128529164 + ], + "flow:branch139_seg0:J115": [ + 21.48250940713865, 24.733858404289602, 26.76616271391562, + 27.417023817932122, 26.700832119309993, 24.795135300902285, + 22.01829019884458, 18.827865467519775, 15.550501851577824, + 12.410264366403363, 9.642538130013717, 7.154164611705887, + 4.897255596267947, 2.785161177702787, 0.6615042397184018, + -1.4173190543736853, -3.479326598994048, -5.424593493609217, + -7.077995420046814, -8.435519813907392, -9.41739365758749, + -10.050231713332288, -10.434067968691004, -10.636084133622928, + -10.744454782608058, -10.790657542055673, -10.751194030999907, + -10.57773606501983, -10.217290771307523, -9.64968313530859, + -8.925518578412378, -8.18450253178861, -7.592905156008566, + -7.366349256550375, -7.659361466733572, -8.534371967499656, + -9.905980610522265, -11.608595274119196, -13.323905029175323, + -14.703798233514789, -15.48853755538881, -15.451134625895564, + -14.543486885650811, -12.867041011425831, -10.681006610857294, + -8.197803041225335, -5.760217521997128, -3.5870856582888493, + -1.748300525004006, -0.32941069677866963, 0.7787367040400909, + 1.667116338008722, 2.395539523038518, 3.0400132487572216, + 3.5532386101624183, 3.876563823134981, 3.9390957449910937, + 3.676018258864574, 3.0892044779262626, 2.257948147005811, + 1.3035255463137854, 0.36569619817629667, -0.3846473484623259, + -0.8912826922572712, -1.1368461031428176, -1.1719727765275254, + -1.116171392007254, -1.0873068133020425, -1.1713469177650788, + -1.3996738677182132, -1.7251028901146495, -2.0660364484902147, + -2.3027688940395925, -2.3432206312078594, -2.154030171144334, + -1.7659140505569957, -1.2621417288876156, -0.7647609934758481, + -0.3886854974548858, -0.18089071482245148, -0.1442943451545574, + -0.20489996556704085, -0.24986198788314096, -0.17500059932868922, + 0.08212462626624656, 0.5075824211039325, 1.017178640585774, + 1.489531603098103, 1.7829938278666813, 1.8465955761042265, + 1.7207442295072224, 1.5659993765959148, 1.6467032457723116, + 2.2644506257045314, 3.6900641151977234, 6.083177638369003, + 9.334684045684673, 13.31860734170658, 17.551644858211567, + 21.48250940713865 + ], + "pressure:branch139_seg0:J115": [ + 159435.57878219086, 179641.28728304087, 191029.10300674938, + 191840.3957199106, 183527.38311641294, 167825.5213265262, + 146926.68258330759, 123520.25770544556, 101047.89229170569, + 79683.67196918219, 60943.06713051462, 44478.40752482686, + 28895.368842940476, 14324.801945390953, -503.36184882596734, + -15112.368916332622, -29251.378471626962, -42640.71966008796, + -53405.11412164654, -61901.943386593586, -68034.28476261871, + -71621.02324855834, -73762.26985959354, -74872.57010204025, + -75410.31846015989, -75600.84370743194, -75064.10757853782, + -73431.4091144171, -70385.74283845501, -65977.75168759977, + -60584.46994089927, -55554.78078958779, -52106.88672417049, + -51540.16971683709, -54982.63420487518, -62538.91300202364, + -73210.01197841564, -85513.84900675317, -97313.85539045633, + -105758.23168121165, -109395.37928083459, -107089.61932913667, + -98626.26799513024, -84995.18687563574, -68887.32292737537, + -51302.00108152314, -34292.86829538278, -20136.695316272562, + -8184.697026444721, 887.7428273256814, 7769.001578526473, + 13740.844364609255, 18473.230812555743, 22643.295537568043, + 25992.45419008082, 27637.181051178475, 27330.819068226145, + 24707.20743108537, 19878.41097470955, 13509.951033095485, + 6757.598143209518, 441.1907280092589, -4325.225943170063, + -7136.372220436369, -8279.583113203968, -8152.20418972201, + -7646.149396697224, -7633.706406017956, -8571.92721762209, + -10533.44107865997, -12939.707710034716, -15198.701759480877, + -16526.673557851056, -16238.628922065622, -14325.95663490654, + -11205.155935964993, -7583.233155040305, -4180.803712214227, + -1970.998437313668, -1007.617531601615, -1063.7029951291427, + -1609.1052997645318, -1763.363613198444, -846.0965859429868, + 1409.9165460424604, 4759.884767487005, 8374.419985785305, + 11414.662057309932, 12969.383036829408, 12806.019798640824, + 11587.478989245205, 10721.620681556906, 12220.188959649447, + 18217.89215660193, 30365.176661339785, 49792.328555678265, + 74339.55712678908, 103175.46118551015, 133691.88655057328, + 159435.57878219086 + ], + "flow:J115:branch139_seg1": [ + 21.48250940713865, 24.733858404289602, 26.76616271391562, + 27.417023817932122, 26.700832119309993, 24.795135300902285, + 22.01829019884458, 18.827865467519775, 15.550501851577824, + 12.410264366403363, 9.642538130013717, 7.154164611705887, + 4.897255596267947, 2.785161177702787, 0.6615042397184018, + -1.4173190543736853, -3.479326598994048, -5.424593493609217, + -7.077995420046814, -8.435519813907392, -9.41739365758749, + -10.050231713332288, -10.434067968691004, -10.636084133622928, + -10.744454782608058, -10.790657542055673, -10.751194030999907, + -10.57773606501983, -10.217290771307523, -9.64968313530859, + -8.925518578412378, -8.18450253178861, -7.592905156008566, + -7.366349256550375, -7.659361466733572, -8.534371967499656, + -9.905980610522265, -11.608595274119196, -13.323905029175323, + -14.703798233514789, -15.48853755538881, -15.451134625895564, + -14.543486885650811, -12.867041011425831, -10.681006610857294, + -8.197803041225335, -5.760217521997128, -3.5870856582888493, + -1.748300525004006, -0.32941069677866963, 0.7787367040400909, + 1.667116338008722, 2.395539523038518, 3.0400132487572216, + 3.5532386101624183, 3.876563823134981, 3.9390957449910937, + 3.676018258864574, 3.0892044779262626, 2.257948147005811, + 1.3035255463137854, 0.36569619817629667, -0.3846473484623259, + -0.8912826922572712, -1.1368461031428176, -1.1719727765275254, + -1.116171392007254, -1.0873068133020425, -1.1713469177650788, + -1.3996738677182132, -1.7251028901146495, -2.0660364484902147, + -2.3027688940395925, -2.3432206312078594, -2.154030171144334, + -1.7659140505569957, -1.2621417288876156, -0.7647609934758481, + -0.3886854974548858, -0.18089071482245148, -0.1442943451545574, + -0.20489996556704085, -0.24986198788314096, -0.17500059932868922, + 0.08212462626624656, 0.5075824211039325, 1.017178640585774, + 1.489531603098103, 1.7829938278666813, 1.8465955761042265, + 1.7207442295072224, 1.5659993765959148, 1.6467032457723116, + 2.2644506257045314, 3.6900641151977234, 6.083177638369003, + 9.334684045684673, 13.31860734170658, 17.551644858211567, + 21.48250940713865 + ], + "pressure:J115:branch139_seg1": [ + 159435.57878219086, 179641.28728304087, 191029.10300674938, + 191840.3957199106, 183527.38311641294, 167825.5213265262, + 146926.68258330759, 123520.25770544556, 101047.89229170569, + 79683.67196918219, 60943.06713051462, 44478.40752482686, + 28895.368842940476, 14324.801945390953, -503.36184882596734, + -15112.368916332622, -29251.378471626962, -42640.71966008796, + -53405.11412164654, -61901.943386593586, -68034.28476261871, + -71621.02324855834, -73762.26985959354, -74872.57010204025, + -75410.31846015989, -75600.84370743194, -75064.10757853782, + -73431.4091144171, -70385.74283845501, -65977.75168759977, + -60584.46994089927, -55554.78078958779, -52106.88672417049, + -51540.16971683709, -54982.63420487518, -62538.91300202364, + -73210.01197841564, -85513.84900675317, -97313.85539045633, + -105758.23168121165, -109395.37928083459, -107089.61932913667, + -98626.26799513024, -84995.18687563574, -68887.32292737537, + -51302.00108152314, -34292.86829538278, -20136.695316272562, + -8184.697026444721, 887.7428273256814, 7769.001578526473, + 13740.844364609255, 18473.230812555743, 22643.295537568043, + 25992.45419008082, 27637.181051178475, 27330.819068226145, + 24707.20743108537, 19878.41097470955, 13509.951033095485, + 6757.598143209518, 441.1907280092589, -4325.225943170063, + -7136.372220436369, -8279.583113203968, -8152.20418972201, + -7646.149396697224, -7633.706406017956, -8571.92721762209, + -10533.44107865997, -12939.707710034716, -15198.701759480877, + -16526.673557851056, -16238.628922065622, -14325.95663490654, + -11205.155935964993, -7583.233155040305, -4180.803712214227, + -1970.998437313668, -1007.617531601615, -1063.7029951291427, + -1609.1052997645318, -1763.363613198444, -846.0965859429868, + 1409.9165460424604, 4759.884767487005, 8374.419985785305, + 11414.662057309932, 12969.383036829408, 12806.019798640824, + 11587.478989245205, 10721.620681556906, 12220.188959649447, + 18217.89215660193, 30365.176661339785, 49792.328555678265, + 74339.55712678908, 103175.46118551015, 133691.88655057328, + 159435.57878219086 + ], + "flow:branch139_seg1:J116": [ + 21.434911223862144, 24.70424324692412, 26.75302945692243, + 27.423670285677773, 26.727118103665536, 24.831858757117967, + 22.057661218184162, 18.877049136321325, 15.59115407810939, + 12.443002335182966, 9.676518127775106, 7.181241692063083, + 4.923897850945929, 2.8120262168996804, 0.6840035812563743, + -1.3906749524348465, -3.4530810747893064, -5.404972264753592, + -7.0591958394997905, -8.422215614318798, -9.408705469860543, + -10.044131831344593, -10.43135695322883, -10.63449271591293, + -10.743465195243502, -10.79079405727265, -10.753000964032383, + -10.582129584864601, -10.225047405504423, -9.659242262431393, + -8.936277733917041, -8.193319629950565, -7.596137486552113, + -7.363282938602039, -7.649250910590709, -8.51820631239084, + -9.883258204171604, -11.58723598100736, -13.30585723776962, + -14.691892996803341, -15.488471630759456, -15.460978490226392, + -14.563455279871235, -12.893509082954765, -10.713264929865948, + -8.230548141833914, -5.7902782141032985, -3.6134297392492054, + -1.7678171951324049, -0.3452346693983474, 0.7660025866204734, + 1.6559569154248912, 2.3865287308683136, 3.033212940729164, + 3.5477719417491707, 3.875034585658605, 3.9423017505493756, + 3.6835064554473456, 3.0992544703564606, 2.2715598513698527, + 1.3156666763354912, 0.3737812797555709, -0.37730917031831146, + -0.8877840633488271, -1.136634724534244, -1.1726243076779173, + -1.1167462543031592, -1.086664125149899, -1.1686935834163341, + -1.395600511746268, -1.7204187871997907, -2.0622864756334445, + -2.301550208163558, -2.3450753920574536, -2.1591034692563955, + -1.77299534315231, -1.2691816024221436, -0.7708553616290296, + -0.3918818209928148, -0.18124671130778833, -0.1432754067047107, + -0.20410838583038618, -0.2505001037830514, -0.178118476179545, + 0.07703260149128267, 0.5005305420297861, 1.010906338111228, + 1.486402564323124, 1.7816473425303696, 1.8479640987754056, + 1.7231730041931235, 1.566190552626795, 1.6405556896813498, + 2.248432683765074, 3.6611523664431638, 6.042545492525004, + 9.283530403283985, 13.259395605561677, 17.49333203072322, + 21.434911223862144 + ], + "pressure:branch139_seg1:J116": [ + 149865.64032882822, 171493.43865782162, 184664.1158421177, + 188097.43681465875, 182289.29867198542, 168554.14719593796, + 149073.76120367073, 126915.82294323073, 104521.87556458991, + 83123.64923616895, 64338.62126506178, 47519.557730743174, + 32102.374168632843, 17679.782459553237, 3098.017483220531, + -11152.48573129239, -25210.10179481812, -38524.491586287004, + -49620.42450113761, -58656.96495777237, -65193.46206462799, + -69291.18633609486, -71778.06007824965, -73077.74852678257, + -73757.45134078617, -74041.34150698206, -73701.49652005832, + -72399.69737888918, -69788.02955373409, -65772.90572668711, + -60713.576105982414, -55666.894414831295, -51787.74507751923, + -50506.959685032874, -52901.14893364728, -59306.12199715009, + -69004.12380633695, -80812.90472680767, -92537.91030447416, + -101670.84660899782, -106557.83544740711, -105735.23598091926, + -98922.70359830494, -86877.46072547918, -71671.21852156988, + -54576.307449636406, -37851.3629743365, -23245.78446762016, + -10870.113395098675, -1377.2374971577726, 5974.488133181267, + 12004.905387823952, 16902.683583760874, 21232.40775308635, + 24687.83070780157, 26740.483817920755, 26970.18285092185, + 24951.978128783478, 20720.470989412166, 14870.833701093206, + 8290.54864951484, 1908.1660185132944, -3095.336030368358, + -6369.195975032336, -7897.1313079206875, -8028.752844900921, + -7609.880009237363, -7462.6759146445065, -8134.55124260447, + -9804.315337488835, -12072.153225970043, -14377.543157791224, + -15916.358102458209, -16037.200378940452, -14578.337028090302, + -11804.085089656965, -8318.88353022732, -4924.607151237629, + -2456.4601527194186, -1164.3466994338044, -1000.1488794843913, + -1454.539056371314, -1722.568041301035, -1103.6704036954104, + 788.36087745643, 3809.272794103067, 7325.542032600346, 10503.710892245883, + 12374.653374361065, 12640.662983062539, 11679.752888485793, + 10671.203309755858, 11472.903259429178, 16165.051341572505, + 26532.65261561367, 43703.635731308255, 66491.83069120756, + 94060.82646360878, 123383.416905429, 149865.64032882822 + ], + "flow:J116:branch139_seg2": [ + 21.434911223862144, 24.70424324692412, 26.75302945692243, + 27.423670285677773, 26.727118103665536, 24.831858757117967, + 22.057661218184162, 18.877049136321325, 15.59115407810939, + 12.443002335182966, 9.676518127775106, 7.181241692063083, + 4.923897850945929, 2.8120262168996804, 0.6840035812563743, + -1.3906749524348465, -3.4530810747893064, -5.404972264753592, + -7.0591958394997905, -8.422215614318798, -9.408705469860543, + -10.044131831344593, -10.43135695322883, -10.63449271591293, + -10.743465195243502, -10.79079405727265, -10.753000964032383, + -10.582129584864601, -10.225047405504423, -9.659242262431393, + -8.936277733917041, -8.193319629950565, -7.596137486552113, + -7.363282938602039, -7.649250910590709, -8.51820631239084, + -9.883258204171604, -11.58723598100736, -13.30585723776962, + -14.691892996803341, -15.488471630759456, -15.460978490226392, + -14.563455279871235, -12.893509082954765, -10.713264929865948, + -8.230548141833914, -5.7902782141032985, -3.6134297392492054, + -1.7678171951324049, -0.3452346693983474, 0.7660025866204734, + 1.6559569154248912, 2.3865287308683136, 3.033212940729164, + 3.5477719417491707, 3.875034585658605, 3.9423017505493756, + 3.6835064554473456, 3.0992544703564606, 2.2715598513698527, + 1.3156666763354912, 0.3737812797555709, -0.37730917031831146, + -0.8877840633488271, -1.136634724534244, -1.1726243076779173, + -1.1167462543031592, -1.086664125149899, -1.1686935834163341, + -1.395600511746268, -1.7204187871997907, -2.0622864756334445, + -2.301550208163558, -2.3450753920574536, -2.1591034692563955, + -1.77299534315231, -1.2691816024221436, -0.7708553616290296, + -0.3918818209928148, -0.18124671130778833, -0.1432754067047107, + -0.20410838583038618, -0.2505001037830514, -0.178118476179545, + 0.07703260149128267, 0.5005305420297861, 1.010906338111228, + 1.486402564323124, 1.7816473425303696, 1.8479640987754056, + 1.7231730041931235, 1.566190552626795, 1.6405556896813498, + 2.248432683765074, 3.6611523664431638, 6.042545492525004, + 9.283530403283985, 13.259395605561677, 17.49333203072322, + 21.434911223862144 + ], + "pressure:J116:branch139_seg2": [ + 149865.64032882822, 171493.43865782162, 184664.1158421177, + 188097.43681465875, 182289.29867198542, 168554.14719593796, + 149073.76120367073, 126915.82294323073, 104521.87556458991, + 83123.64923616895, 64338.62126506178, 47519.557730743174, + 32102.374168632843, 17679.782459553237, 3098.017483220531, + -11152.48573129239, -25210.10179481812, -38524.491586287004, + -49620.42450113761, -58656.96495777237, -65193.46206462799, + -69291.18633609486, -71778.06007824965, -73077.74852678257, + -73757.45134078617, -74041.34150698206, -73701.49652005832, + -72399.69737888918, -69788.02955373409, -65772.90572668711, + -60713.576105982414, -55666.894414831295, -51787.74507751923, + -50506.959685032874, -52901.14893364728, -59306.12199715009, + -69004.12380633695, -80812.90472680767, -92537.91030447416, + -101670.84660899782, -106557.83544740711, -105735.23598091926, + -98922.70359830494, -86877.46072547918, -71671.21852156988, + -54576.307449636406, -37851.3629743365, -23245.78446762016, + -10870.113395098675, -1377.2374971577726, 5974.488133181267, + 12004.905387823952, 16902.683583760874, 21232.40775308635, + 24687.83070780157, 26740.483817920755, 26970.18285092185, + 24951.978128783478, 20720.470989412166, 14870.833701093206, + 8290.54864951484, 1908.1660185132944, -3095.336030368358, + -6369.195975032336, -7897.1313079206875, -8028.752844900921, + -7609.880009237363, -7462.6759146445065, -8134.55124260447, + -9804.315337488835, -12072.153225970043, -14377.543157791224, + -15916.358102458209, -16037.200378940452, -14578.337028090302, + -11804.085089656965, -8318.88353022732, -4924.607151237629, + -2456.4601527194186, -1164.3466994338044, -1000.1488794843913, + -1454.539056371314, -1722.568041301035, -1103.6704036954104, + 788.36087745643, 3809.272794103067, 7325.542032600346, 10503.710892245883, + 12374.653374361065, 12640.662983062539, 11679.752888485793, + 10671.203309755858, 11472.903259429178, 16165.051341572505, + 26532.65261561367, 43703.635731308255, 66491.83069120756, + 94060.82646360878, 123383.416905429, 149865.64032882822 + ], + "flow:branch142_seg0:J117": [ + 54.90043031479331, 61.90777717665136, 65.60166751266841, + 65.80344741275151, 62.81248764547342, 57.21475105318072, + 49.86272806555365, 41.90773594105404, 34.18108624606985, + 26.930693159622653, 20.73424316821577, 15.18334223157174, + 10.024883487636577, 5.132304077602717, 0.04420047008210931, + -4.966766737893428, -9.904511437764626, -14.510324924488236, + -18.25242568142249, -21.227244130685655, -23.259111513074682, + -24.458350808886216, -25.152396760777066, -25.494786993062018, + -25.690917824369034, -25.773652473743514, -25.626202467773155, + -25.10212069959217, -24.07409339591948, -22.533500350801607, + -20.662559706098747, -18.899196997624784, -17.67358837995357, + -17.521288047599548, -18.76678731760315, -21.452761353575685, + -25.22734531632738, -29.563812266127297, -33.62614030457054, + -36.49429097570437, -37.660562470107116, -36.67199781494328, + -33.57422419271132, -28.773906421959747, -23.068770805182147, + -16.935231148569784, -11.24149201117686, -6.447667477010032, + -2.521571789628316, 0.36739626096641426, 2.614045878865597, + 4.477779329075404, 6.033564967246778, 7.4720034664145665, + 8.588379043039454, 9.181799306635538, 9.095157782231505, + 8.181088135269698, 6.505788920348732, 4.320153425289966, + 1.9967621301684575, -0.1546024885988603, -1.71106179384276, + -2.607570535638926, -2.893986749698859, -2.746877733440681, + -2.5089740309682984, -2.4684748245567363, -2.789847578006324, + -3.487029100361724, -4.366191683276286, -5.192415574173409, + -5.652373024478538, -5.548043888269501, -4.863634122283384, + -3.746814815096758, -2.448305265162292, -1.287035840443029, + -0.5400457619958503, -0.24178987069490526, -0.33886293697855124, + -0.5886129106440593, -0.6816834775129528, -0.37781021634123785, + 0.41846188120940114, 1.6042998240211248, 2.888414191573199, + 3.9606893469639513, 4.4761428470901174, 4.384820306811868, + 3.8971349548500824, 3.5138922606565695, 3.961408596923084, + 5.9912035004517366, 10.198034174794717, 16.864413158711898, + 25.438793525407203, 35.58996184576729, 45.905164179310425, + 54.90043031479331 + ], + "pressure:branch142_seg0:J117": [ + 178796.66185950703, 195243.91537802602, 202097.62855524017, + 196670.5794085523, 182705.23917596528, 162869.91059332291, + 139301.11002975714, 113541.12886309867, 91910.40066279822, + 71402.50283918892, 53232.94513540436, 38125.059072788914, + 22437.872957774765, 7717.801194030775, -7516.71085287462, + -23076.0789678428, -37464.78013141973, -50800.94287623286, + -60812.55074934783, -68074.38964652386, -73160.17066206562, + -75554.80452091662, -76910.1082016417, -77644.92819560063, + -77969.47812750409, -78031.271071123, -77103.68016919779, + -74755.5007399913, -70736.69346783852, -65474.4500641254, + -59401.57883907902, -54587.58016084149, -52357.59768453172, + -53666.93630895194, -59714.036021715845, -69966.09818383532, + -82843.34739628993, -95934.18171313364, -107401.18377380559, + -113683.79134819501, -113833.05307996889, -107654.6405260052, + -95149.28209284204, -78028.91789941519, -60121.101325319934, + -41837.863949223465, -24987.59488085433, -12560.320301431466, + -2230.382468412766, 5345.129479848688, 10857.369044158593, + 16454.926893875792, 20624.145345106484, 24402.847699122667, + 27495.756037861665, 28153.068869336326, 26626.76708602269, + 22670.6602364185, 16628.94310599861, 9248.46554029259, 2458.1162017200777, + -3308.7775929018535, -7257.886896735345, -8720.661109810757, + -8760.02148312525, -7953.466124353158, -7253.537894269132, + -7605.660022270338, -9222.489028692322, -11878.980110606992, + -14599.722688207165, -16719.848691469466, -17456.732820038073, + -16143.319493750054, -13155.827671994817, -9276.237003899594, + -5434.966182000493, -2179.7071604631724, -768.6456852919865, + -698.8614975078054, -1345.7352625967842, -2116.7517434601295, + -1968.5679680600228, -299.74151953381124, 2816.9457760710247, + 6917.779907792572, 10645.798038853573, 13199.97819429567, + 13916.973865286947, 12679.719568977862, 10854.47289393729, + 10392.834137814629, 13635.550956787814, 22769.43451220678, + 39084.65644439695, 63464.53367732169, 91702.07504955822, + 123256.52425034811, 155599.62289865687, 178796.66185950703 + ], + "flow:J117:branch142_seg1": [ + 54.90043031479331, 61.90777717665136, 65.60166751266841, + 65.80344741275151, 62.81248764547342, 57.21475105318072, + 49.86272806555365, 41.90773594105404, 34.18108624606985, + 26.930693159622653, 20.73424316821577, 15.18334223157174, + 10.024883487636577, 5.132304077602717, 0.04420047008210931, + -4.966766737893428, -9.904511437764626, -14.510324924488236, + -18.25242568142249, -21.227244130685655, -23.259111513074682, + -24.458350808886216, -25.152396760777066, -25.494786993062018, + -25.690917824369034, -25.773652473743514, -25.626202467773155, + -25.10212069959217, -24.07409339591948, -22.533500350801607, + -20.662559706098747, -18.899196997624784, -17.67358837995357, + -17.521288047599548, -18.76678731760315, -21.452761353575685, + -25.22734531632738, -29.563812266127297, -33.62614030457054, + -36.49429097570437, -37.660562470107116, -36.67199781494328, + -33.57422419271132, -28.773906421959747, -23.068770805182147, + -16.935231148569784, -11.24149201117686, -6.447667477010032, + -2.521571789628316, 0.36739626096641426, 2.614045878865597, + 4.477779329075404, 6.033564967246778, 7.4720034664145665, + 8.588379043039454, 9.181799306635538, 9.095157782231505, + 8.181088135269698, 6.505788920348732, 4.320153425289966, + 1.9967621301684575, -0.1546024885988603, -1.71106179384276, + -2.607570535638926, -2.893986749698859, -2.746877733440681, + -2.5089740309682984, -2.4684748245567363, -2.789847578006324, + -3.487029100361724, -4.366191683276286, -5.192415574173409, + -5.652373024478538, -5.548043888269501, -4.863634122283384, + -3.746814815096758, -2.448305265162292, -1.287035840443029, + -0.5400457619958503, -0.24178987069490526, -0.33886293697855124, + -0.5886129106440593, -0.6816834775129528, -0.37781021634123785, + 0.41846188120940114, 1.6042998240211248, 2.888414191573199, + 3.9606893469639513, 4.4761428470901174, 4.384820306811868, + 3.8971349548500824, 3.5138922606565695, 3.961408596923084, + 5.9912035004517366, 10.198034174794717, 16.864413158711898, + 25.438793525407203, 35.58996184576729, 45.905164179310425, + 54.90043031479331 + ], + "pressure:J117:branch142_seg1": [ + 178796.66185950703, 195243.91537802602, 202097.62855524017, + 196670.5794085523, 182705.23917596528, 162869.91059332291, + 139301.11002975714, 113541.12886309867, 91910.40066279822, + 71402.50283918892, 53232.94513540436, 38125.059072788914, + 22437.872957774765, 7717.801194030775, -7516.71085287462, + -23076.0789678428, -37464.78013141973, -50800.94287623286, + -60812.55074934783, -68074.38964652386, -73160.17066206562, + -75554.80452091662, -76910.1082016417, -77644.92819560063, + -77969.47812750409, -78031.271071123, -77103.68016919779, + -74755.5007399913, -70736.69346783852, -65474.4500641254, + -59401.57883907902, -54587.58016084149, -52357.59768453172, + -53666.93630895194, -59714.036021715845, -69966.09818383532, + -82843.34739628993, -95934.18171313364, -107401.18377380559, + -113683.79134819501, -113833.05307996889, -107654.6405260052, + -95149.28209284204, -78028.91789941519, -60121.101325319934, + -41837.863949223465, -24987.59488085433, -12560.320301431466, + -2230.382468412766, 5345.129479848688, 10857.369044158593, + 16454.926893875792, 20624.145345106484, 24402.847699122667, + 27495.756037861665, 28153.068869336326, 26626.76708602269, + 22670.6602364185, 16628.94310599861, 9248.46554029259, 2458.1162017200777, + -3308.7775929018535, -7257.886896735345, -8720.661109810757, + -8760.02148312525, -7953.466124353158, -7253.537894269132, + -7605.660022270338, -9222.489028692322, -11878.980110606992, + -14599.722688207165, -16719.848691469466, -17456.732820038073, + -16143.319493750054, -13155.827671994817, -9276.237003899594, + -5434.966182000493, -2179.7071604631724, -768.6456852919865, + -698.8614975078054, -1345.7352625967842, -2116.7517434601295, + -1968.5679680600228, -299.74151953381124, 2816.9457760710247, + 6917.779907792572, 10645.798038853573, 13199.97819429567, + 13916.973865286947, 12679.719568977862, 10854.47289393729, + 10392.834137814629, 13635.550956787814, 22769.43451220678, + 39084.65644439695, 63464.53367732169, 91702.07504955822, + 123256.52425034811, 155599.62289865687, 178796.66185950703 + ], + "flow:branch142_seg1:J118": [ + 54.77894215694788, 61.84511811522891, 65.59133656857942, + 65.84486206206583, 62.91207746285558, 57.339937831205916, + 49.98426353347939, 42.069715161117855, 34.28721885576536, + 27.007011669269147, 20.832257071395286, 15.248259453497445, + 10.096724115288913, 5.203615481422172, 0.08931536354696468, + -4.890180135527039, -9.838852713054447, -14.48334358922171, + -18.20843069394111, -21.20005739718256, -23.248440235665562, + -24.445096385627473, -25.150144046256557, -25.492286961823844, + -25.687087186156244, -25.77547819589364, -25.63328345976466, + -25.117943592079882, -24.100969267474614, -22.565106031445254, + -20.694609958545534, -18.922469298775418, -17.67484306217355, + -17.499667463594548, -18.725223651662557, -21.399264567120518, + -25.150781979756164, -29.511117874098787, -33.589234180465134, + -36.4780561924372, -37.68425447932053, -36.71966693562537, + -33.6394267104548, -28.83801374871068, -23.15657541287737, + -17.02020180285956, -11.302971729388434, -6.512296957035352, + -2.5601804760270728, 0.33317673948877097, 2.5770736590235885, + 4.450891160659866, 6.009296925561025, 7.452344860970015, + 8.574635491316027, 9.18198513981222, 9.110778267417025, 8.210403167150023, + 6.537865982867864, 4.365990088739731, 2.0272120082805527, + -0.14341206651241006, -1.6951246965524913, -2.605069917741285, + -2.900559802353566, -2.7504049534829056, -2.509154220227885, + -2.464133448856299, -2.780111845566288, -3.476448349443955, + -4.3539323594539265, -5.183589183364124, -5.654366371866512, + -5.557119914943283, -4.881258733597167, -3.7684096840371573, + -2.4693342324172063, -1.301561394301517, -0.5453321197253216, + -0.23954179759722732, -0.33314168563458874, -0.5868526016884758, + -0.6863054921375368, -0.391681279532963, 0.4009238627051428, + 1.5804902225584252, 2.873244678181358, 3.9601716719705014, + 4.47751292680757, 4.392280133666904, 3.903940925449843, 3.509200867049068, + 3.934188966448663, 5.933327749137206, 10.105285564392027, + 16.756507959794074, 25.297300117378313, 35.40684604111811, + 45.76903806244424, 54.77894215694788 + ], + "pressure:branch142_seg1:J118": [ + 162136.34318973852, 182730.6781739725, 193558.9697269369, + 194006.32126230764, 185113.35989604803, 168541.15218426325, + 146790.7561703221, 123368.90761853658, 100515.94232338361, + 79125.02412615277, 60945.287455748556, 44568.1447372827, + 29374.91371990917, 14952.378334124001, -115.2868952016615, + -14819.927216713795, -29382.215625690857, -43041.69648449163, + -53962.72926246449, -62696.13406403214, -68681.54373114277, + -72149.7498796839, -74190.67541909758, -75184.65786385389, + -75745.9319565357, -75996.5262374143, -75553.03899144009, + -73995.27486102482, -70951.13734928529, -66392.97466326857, + -60857.95166313183, -55659.61561980653, -52056.026516358674, + -51628.65387958639, -55355.47216992549, -63344.33998792957, + -74478.67156285448, -87329.6081092566, -99310.65153803401, + -107708.11021054361, -111094.2654190827, -108091.78241828155, + -98855.27708965635, -84572.91484680338, -67788.11287824612, + -49710.334608714, -32875.902328436874, -18852.811599529756, + -7279.877767752843, 1193.008567121422, 7746.168290991491, + 13267.354036915456, 17835.29107557779, 22061.18084521011, + 25355.347545374887, 27088.71996919254, 26815.228170361253, + 24100.980971271332, 19122.188676143833, 12679.853483447125, + 5798.174149970999, -562.7089684808607, -5101.074992823579, + -7721.199571735305, -8550.894221881219, -8090.96216283408, + -7381.084440820169, -7272.05976017202, -8235.742767366664, + -10315.487768802315, -12905.679858842941, -15332.748587858701, + -16687.421849520466, -16351.16509526968, -14312.796827477763, + -11006.95513663756, -7181.3408612020885, -3751.878472147473, + -1564.9150180927097, -704.9202592023202, -998.5191903675365, + -1746.7670000896733, -2018.2211694428213, -1111.9088415348194, + 1259.821537804384, 4763.238001429196, 8565.8315606906, 11734.84610911111, + 13218.782409568488, 12919.883410073877, 11463.179414464445, + 10334.864860382802, 11682.75001018082, 17726.42358103591, + 30205.640789565223, 50022.21941158485, 75318.65312753948, + 105170.33832506399, 135770.38857797076, 162136.34318973852 + ], + "flow:J118:branch142_seg2": [ + 54.77894215694788, 61.84511811522891, 65.59133656857942, + 65.84486206206583, 62.91207746285558, 57.339937831205916, + 49.98426353347939, 42.069715161117855, 34.28721885576536, + 27.007011669269147, 20.832257071395286, 15.248259453497445, + 10.096724115288913, 5.203615481422172, 0.08931536354696468, + -4.890180135527039, -9.838852713054447, -14.48334358922171, + -18.20843069394111, -21.20005739718256, -23.248440235665562, + -24.445096385627473, -25.150144046256557, -25.492286961823844, + -25.687087186156244, -25.77547819589364, -25.63328345976466, + -25.117943592079882, -24.100969267474614, -22.565106031445254, + -20.694609958545534, -18.922469298775418, -17.67484306217355, + -17.499667463594548, -18.725223651662557, -21.399264567120518, + -25.150781979756164, -29.511117874098787, -33.589234180465134, + -36.4780561924372, -37.68425447932053, -36.71966693562537, + -33.6394267104548, -28.83801374871068, -23.15657541287737, + -17.02020180285956, -11.302971729388434, -6.512296957035352, + -2.5601804760270728, 0.33317673948877097, 2.5770736590235885, + 4.450891160659866, 6.009296925561025, 7.452344860970015, + 8.574635491316027, 9.18198513981222, 9.110778267417025, 8.210403167150023, + 6.537865982867864, 4.365990088739731, 2.0272120082805527, + -0.14341206651241006, -1.6951246965524913, -2.605069917741285, + -2.900559802353566, -2.7504049534829056, -2.509154220227885, + -2.464133448856299, -2.780111845566288, -3.476448349443955, + -4.3539323594539265, -5.183589183364124, -5.654366371866512, + -5.557119914943283, -4.881258733597167, -3.7684096840371573, + -2.4693342324172063, -1.301561394301517, -0.5453321197253216, + -0.23954179759722732, -0.33314168563458874, -0.5868526016884758, + -0.6863054921375368, -0.391681279532963, 0.4009238627051428, + 1.5804902225584252, 2.873244678181358, 3.9601716719705014, + 4.47751292680757, 4.392280133666904, 3.903940925449843, 3.509200867049068, + 3.934188966448663, 5.933327749137206, 10.105285564392027, + 16.756507959794074, 25.297300117378313, 35.40684604111811, + 45.76903806244424, 54.77894215694788 + ], + "pressure:J118:branch142_seg2": [ + 162136.34318973852, 182730.6781739725, 193558.9697269369, + 194006.32126230764, 185113.35989604803, 168541.15218426325, + 146790.7561703221, 123368.90761853658, 100515.94232338361, + 79125.02412615277, 60945.287455748556, 44568.1447372827, + 29374.91371990917, 14952.378334124001, -115.2868952016615, + -14819.927216713795, -29382.215625690857, -43041.69648449163, + -53962.72926246449, -62696.13406403214, -68681.54373114277, + -72149.7498796839, -74190.67541909758, -75184.65786385389, + -75745.9319565357, -75996.5262374143, -75553.03899144009, + -73995.27486102482, -70951.13734928529, -66392.97466326857, + -60857.95166313183, -55659.61561980653, -52056.026516358674, + -51628.65387958639, -55355.47216992549, -63344.33998792957, + -74478.67156285448, -87329.6081092566, -99310.65153803401, + -107708.11021054361, -111094.2654190827, -108091.78241828155, + -98855.27708965635, -84572.91484680338, -67788.11287824612, + -49710.334608714, -32875.902328436874, -18852.811599529756, + -7279.877767752843, 1193.008567121422, 7746.168290991491, + 13267.354036915456, 17835.29107557779, 22061.18084521011, + 25355.347545374887, 27088.71996919254, 26815.228170361253, + 24100.980971271332, 19122.188676143833, 12679.853483447125, + 5798.174149970999, -562.7089684808607, -5101.074992823579, + -7721.199571735305, -8550.894221881219, -8090.96216283408, + -7381.084440820169, -7272.05976017202, -8235.742767366664, + -10315.487768802315, -12905.679858842941, -15332.748587858701, + -16687.421849520466, -16351.16509526968, -14312.796827477763, + -11006.95513663756, -7181.3408612020885, -3751.878472147473, + -1564.9150180927097, -704.9202592023202, -998.5191903675365, + -1746.7670000896733, -2018.2211694428213, -1111.9088415348194, + 1259.821537804384, 4763.238001429196, 8565.8315606906, 11734.84610911111, + 13218.782409568488, 12919.883410073877, 11463.179414464445, + 10334.864860382802, 11682.75001018082, 17726.42358103591, + 30205.640789565223, 50022.21941158485, 75318.65312753948, + 105170.33832506399, 135770.38857797076, 162136.34318973852 + ], + "flow:branch146_seg0:J119": [ + 30.28870547121999, 33.381231660607, 34.55495389019042, 33.827568001730114, + 31.541438454127864, 28.079299986181358, 23.89429290766115, + 19.634095685348594, 15.73432327505063, 12.153965719247802, + 9.143853540334336, 6.499361248651914, 3.9137984394894145, + 1.4563011487227162, -1.1456357713620298, -3.7579482779342586, + -6.181226274665637, -8.488290132034253, -10.217722660893875, + -11.531633695010166, -12.388459000824058, -12.812718031756088, + -13.055775229886175, -13.162761301846228, -13.228752589444143, + -13.244432552642834, -13.118626218625353, -12.759047570085096, + -12.1223175341746, -11.217371653705555, -10.192498262485435, + -9.314373778149744, -8.829988044909442, -8.997384327716054, + -9.97118999295462, -11.675972633503443, -13.884905841731653, + -16.198978598869232, -18.238411358970577, -19.429060647292136, + -19.621770021523396, -18.624803845619063, -16.585754857228594, + -13.71061365793785, -10.58696936771828, -7.370469474095809, + -4.49706993823013, -2.255413027253358, -0.4225736364918236, + 0.8504616635278006, 1.8595369932835475, 2.7374007257097377, + 3.4788192251416636, 4.177157029637326, 4.684022423605533, + 4.8631130202723645, 4.654128841489646, 3.9966762643945395, + 2.9594145878222995, 1.7116146146087166, 0.49182078391953565, + -0.56188736615037, -1.2456883220522834, -1.538068059006157, + -1.5537650526400872, -1.3888784810882984, -1.246833709770942, + -1.2747269739377463, -1.519099854154903, -1.9625539733673993, + -2.448959524320726, -2.8541851050280536, -3.0091816578757675, + -2.830725782182091, -2.343889556421268, -1.6808171009375736, + -0.9731542709410285, -0.4077482166573005, -0.11250286422223976, + -0.0646609456930341, -0.19479283241334877, -0.3537094150858607, + -0.3629778339284126, -0.11239660119377451, 0.4086311246897158, + 1.107778576244915, 1.7841041146062135, 2.276556101395337, + 2.420903863698947, 2.233841743769059, 1.9016009775061053, + 1.749078072675163, 2.181397752253039, 3.619376780842682, + 6.247395488284266, 10.272841314208208, 15.08576913374188, + 20.62196837933023, 25.98990584094226, 30.28870547121999 + ], + "pressure:branch146_seg0:J119": [ + 194248.69061305336, 206052.22669345912, 208615.97581366648, + 197470.2403301833, 178406.68492886488, 155030.2299725306, + 129597.23437979148, 101655.06696878877, 81688.2616855622, + 62553.78033509432, 44171.580710072834, 30957.223357984833, + 14657.383108251295, -42.71023924040811, -14924.837271439437, + -31842.894660386188, -44855.35670036481, -57666.70573297149, + -66947.11743395937, -72521.4217757789, -76649.41549354828, + -78147.44906283726, -78809.75280368925, -79381.24808305223, + -79555.10379575437, -79356.07150072367, -77989.36228494285, + -74807.91455988733, -69876.80362778592, -63822.97191506893, + -57439.58205951117, -52989.80026396952, -52341.592401707676, + -55636.993374026395, -64169.434647719536, -76594.91482060277, + -91476.84309418533, -104052.122494054, -114911.20011358139, + -118665.43596818799, -115396.04710122939, -105852.71805258446, + -90760.96975021901, -71190.0472481953, -52195.15328215188, + -34067.77873101051, -17624.259685478082, -6531.931417125662, + 2392.013145041279, 9160.256246597744, 14032.578390178214, + 19312.702034215188, 23421.060915120834, 26734.35314632925, + 29457.516829542434, 29031.59026946335, 26149.362272824605, + 20826.077097524598, 13763.329699414957, 5349.246536200974, + -1070.7794050210616, -6049.019343537208, -9414.841362974938, + -9534.863229277998, -8795.837049104855, -7737.45493625617, + -7133.112570314435, -7998.904608957042, -10203.938347044364, + -13357.42536668089, -16168.338135070588, -17939.401955549532, + -17967.338196428103, -15787.056772906513, -11854.73643174732, + -7525.670598138835, -3588.9689801200925, -713.6292774292937, + 24.350580547542492, -715.5550169132276, -1743.2282345249882, + -2464.4149827784677, -1836.084228409301, 688.9849380667528, + 4529.477990664747, 9269.988221947522, 12729.265753152456, + 14517.743539624234, 14424.85876311262, 12273.540680109709, + 10177.492198313377, 10584.032874158202, 15812.155255134305, + 28277.31741629477, 47870.18569088208, 76419.97152710083, + 107279.20433340129, 140834.96943993325, 173172.21887091905, + 194248.69061305336 + ], + "flow:J119:branch146_seg1": [ + 30.28870547121999, 33.381231660607, 34.55495389019042, 33.827568001730114, + 31.541438454127864, 28.079299986181358, 23.89429290766115, + 19.634095685348594, 15.73432327505063, 12.153965719247802, + 9.143853540334336, 6.499361248651914, 3.9137984394894145, + 1.4563011487227162, -1.1456357713620298, -3.7579482779342586, + -6.181226274665637, -8.488290132034253, -10.217722660893875, + -11.531633695010166, -12.388459000824058, -12.812718031756088, + -13.055775229886175, -13.162761301846228, -13.228752589444143, + -13.244432552642834, -13.118626218625353, -12.759047570085096, + -12.1223175341746, -11.217371653705555, -10.192498262485435, + -9.314373778149744, -8.829988044909442, -8.997384327716054, + -9.97118999295462, -11.675972633503443, -13.884905841731653, + -16.198978598869232, -18.238411358970577, -19.429060647292136, + -19.621770021523396, -18.624803845619063, -16.585754857228594, + -13.71061365793785, -10.58696936771828, -7.370469474095809, + -4.49706993823013, -2.255413027253358, -0.4225736364918236, + 0.8504616635278006, 1.8595369932835475, 2.7374007257097377, + 3.4788192251416636, 4.177157029637326, 4.684022423605533, + 4.8631130202723645, 4.654128841489646, 3.9966762643945395, + 2.9594145878222995, 1.7116146146087166, 0.49182078391953565, + -0.56188736615037, -1.2456883220522834, -1.538068059006157, + -1.5537650526400872, -1.3888784810882984, -1.246833709770942, + -1.2747269739377463, -1.519099854154903, -1.9625539733673993, + -2.448959524320726, -2.8541851050280536, -3.0091816578757675, + -2.830725782182091, -2.343889556421268, -1.6808171009375736, + -0.9731542709410285, -0.4077482166573005, -0.11250286422223976, + -0.0646609456930341, -0.19479283241334877, -0.3537094150858607, + -0.3629778339284126, -0.11239660119377451, 0.4086311246897158, + 1.107778576244915, 1.7841041146062135, 2.276556101395337, + 2.420903863698947, 2.233841743769059, 1.9016009775061053, + 1.749078072675163, 2.181397752253039, 3.619376780842682, + 6.247395488284266, 10.272841314208208, 15.08576913374188, + 20.62196837933023, 25.98990584094226, 30.28870547121999 + ], + "pressure:J119:branch146_seg1": [ + 194248.69061305336, 206052.22669345912, 208615.97581366648, + 197470.2403301833, 178406.68492886488, 155030.2299725306, + 129597.23437979148, 101655.06696878877, 81688.2616855622, + 62553.78033509432, 44171.580710072834, 30957.223357984833, + 14657.383108251295, -42.71023924040811, -14924.837271439437, + -31842.894660386188, -44855.35670036481, -57666.70573297149, + -66947.11743395937, -72521.4217757789, -76649.41549354828, + -78147.44906283726, -78809.75280368925, -79381.24808305223, + -79555.10379575437, -79356.07150072367, -77989.36228494285, + -74807.91455988733, -69876.80362778592, -63822.97191506893, + -57439.58205951117, -52989.80026396952, -52341.592401707676, + -55636.993374026395, -64169.434647719536, -76594.91482060277, + -91476.84309418533, -104052.122494054, -114911.20011358139, + -118665.43596818799, -115396.04710122939, -105852.71805258446, + -90760.96975021901, -71190.0472481953, -52195.15328215188, + -34067.77873101051, -17624.259685478082, -6531.931417125662, + 2392.013145041279, 9160.256246597744, 14032.578390178214, + 19312.702034215188, 23421.060915120834, 26734.35314632925, + 29457.516829542434, 29031.59026946335, 26149.362272824605, + 20826.077097524598, 13763.329699414957, 5349.246536200974, + -1070.7794050210616, -6049.019343537208, -9414.841362974938, + -9534.863229277998, -8795.837049104855, -7737.45493625617, + -7133.112570314435, -7998.904608957042, -10203.938347044364, + -13357.42536668089, -16168.338135070588, -17939.401955549532, + -17967.338196428103, -15787.056772906513, -11854.73643174732, + -7525.670598138835, -3588.9689801200925, -713.6292774292937, + 24.350580547542492, -715.5550169132276, -1743.2282345249882, + -2464.4149827784677, -1836.084228409301, 688.9849380667528, + 4529.477990664747, 9269.988221947522, 12729.265753152456, + 14517.743539624234, 14424.85876311262, 12273.540680109709, + 10177.492198313377, 10584.032874158202, 15812.155255134305, + 28277.31741629477, 47870.18569088208, 76419.97152710083, + 107279.20433340129, 140834.96943993325, 173172.21887091905, + 194248.69061305336 + ], + "flow:branch146_seg1:J120": [ + 30.266170970602882, 33.37537631942279, 34.58131495799599, + 33.855213730277754, 31.58705871530176, 28.1381402067009, + 23.96759094103095, 19.70777078565418, 15.817085424575412, + 12.194157319218414, 9.216558122423015, 6.549907199244341, + 3.9650697741804874, 1.5217509376976528, -1.1166531528645076, + -3.6808131896988328, -6.153371793660683, -8.472656060121922, + -10.197594325141603, -11.525380687964981, -12.388611817420806, + -12.81329446512161, -13.057920388004975, -13.165365910917677, + -13.227651019573763, -13.248069127551833, -13.122452030180295, + -12.768673164836926, -12.131797060476234, -11.235120802586827, + -10.201957236175652, -9.325708514845088, -8.828621998546655, + -8.98357354630041, -9.937727871274063, -11.643295674344657, + -13.822578286512437, -16.16314917492181, -18.21177556672186, + -19.41884355455858, -19.63858047920763, -18.672650621114844, + -16.618582266486552, -13.750747325655755, -10.628992023131497, + -7.3993932739786965, -4.513995705953584, -2.264994458126402, + -0.42943439007549455, 0.8535727934648705, 1.8448314804611488, + 2.739364969764869, 3.4710705931004187, 4.1683451540451975, + 4.6833078484865736, 4.863693274370317, 4.66418496825908, + 4.014400191365322, 2.981662199658719, 1.738768247048724, + 0.5183272321500199, -0.5539545325943921, -1.2321339591271454, + -1.5373150341964088, -1.5582914141034403, -1.3917076051808208, + -1.2459429769031176, -1.2694968610098722, -1.5141946854627122, + -1.956355003046096, -2.44535173962308, -2.852864754764291, + -3.0152840148283473, -2.8356963024195867, -2.353624368416621, + -1.685580150613094, -0.9820470509988438, -0.4069204776879816, + -0.11362329044259363, -0.06264954990356861, -0.191823496092709, + -0.3532569346907753, -0.36676403020596077, -0.1218802782362338, + 0.3956714105779679, 1.0923275752139572, 1.7707652380148693, + 2.275996397405704, 2.422661728098295, 2.2389007209615315, + 1.9061007593599995, 1.7418575774416158, 2.163485884945908, + 3.567186811801749, 6.209450599475013, 10.21472520411642, + 15.041703142308414, 20.553159368314212, 25.982239201909238, + 30.266170970602882 + ], + "pressure:branch146_seg1:J120": [ + 176443.4204626843, 192661.6985102142, 198499.3400151565, + 192728.85775902568, 178450.25034687284, 158054.00275304378, + 134077.67432815273, 109095.95456913862, 87622.49143537373, + 67420.818270839, 50289.98776988336, 35640.75611285924, 20663.69534728805, + 6693.925456406957, -8230.465609183759, -23195.42211246547, + -37003.99285816644, -50021.91710361727, -59664.22803133066, + -66740.71654243847, -71451.37258436294, -73658.1547650325, + -74879.43349341484, -75487.93542837365, -75802.08018927986, + -75857.34385095247, -75003.53261232795, -72747.91882689697, + -68847.1902354369, -63572.89798590225, -57603.11544740533, + -52775.79262102375, -50453.778513266516, -51876.4948726708, + -57965.387443696425, -68251.54815746236, -81127.2676981752, + -94245.61196389966, -105681.90337073618, -111840.0919757701, + -112094.42393801776, -105755.29404859699, -93330.85952748885, + -76370.36593565262, -58393.50745682897, -40132.39656591855, + -23768.72020139379, -11386.295760004248, -1339.2292746810724, + 5832.544961394815, 11253.928285364382, 16388.182428688928, + 20509.99619957437, 24307.65201499966, 27188.85671178331, + 27875.368013532538, 26352.78203426113, 22304.08288337524, + 16188.260820408706, 8837.701776768456, 2049.9829507828804, + -3788.0985301212345, -7513.42584048693, -8889.904299072177, + -8816.791191327895, -7848.702082520661, -7070.788386408984, + -7366.097747292627, -8940.063213388434, -11587.508873453287, + -14370.344871794714, -16557.144815495154, -17280.78686291854, + -15996.400323279717, -12998.40755524942, -9082.70619155822, + -5117.186346883674, -1935.778574591484, -491.0842633481194, + -435.2327404452474, -1234.0772974212657, -2105.184013715753, + -2024.6300949381625, -382.9987123516533, 2749.8603052633475, + 6875.119662441688, 10626.361064251747, 13253.907099463711, + 13876.965594085463, 12587.873732280159, 10656.156344416679, + 10019.16622713498, 13046.86371153738, 21980.017992047357, + 38025.2376763633, 61993.6340311475, 90151.61932401967, 121845.87763052192, + 152975.51589650192, 176443.4204626843 + ], + "flow:J120:branch146_seg2": [ + 30.266170970602882, 33.37537631942279, 34.58131495799599, + 33.855213730277754, 31.58705871530176, 28.1381402067009, + 23.96759094103095, 19.70777078565418, 15.817085424575412, + 12.194157319218414, 9.216558122423015, 6.549907199244341, + 3.9650697741804874, 1.5217509376976528, -1.1166531528645076, + -3.6808131896988328, -6.153371793660683, -8.472656060121922, + -10.197594325141603, -11.525380687964981, -12.388611817420806, + -12.81329446512161, -13.057920388004975, -13.165365910917677, + -13.227651019573763, -13.248069127551833, -13.122452030180295, + -12.768673164836926, -12.131797060476234, -11.235120802586827, + -10.201957236175652, -9.325708514845088, -8.828621998546655, + -8.98357354630041, -9.937727871274063, -11.643295674344657, + -13.822578286512437, -16.16314917492181, -18.21177556672186, + -19.41884355455858, -19.63858047920763, -18.672650621114844, + -16.618582266486552, -13.750747325655755, -10.628992023131497, + -7.3993932739786965, -4.513995705953584, -2.264994458126402, + -0.42943439007549455, 0.8535727934648705, 1.8448314804611488, + 2.739364969764869, 3.4710705931004187, 4.1683451540451975, + 4.6833078484865736, 4.863693274370317, 4.66418496825908, + 4.014400191365322, 2.981662199658719, 1.738768247048724, + 0.5183272321500199, -0.5539545325943921, -1.2321339591271454, + -1.5373150341964088, -1.5582914141034403, -1.3917076051808208, + -1.2459429769031176, -1.2694968610098722, -1.5141946854627122, + -1.956355003046096, -2.44535173962308, -2.852864754764291, + -3.0152840148283473, -2.8356963024195867, -2.353624368416621, + -1.685580150613094, -0.9820470509988438, -0.4069204776879816, + -0.11362329044259363, -0.06264954990356861, -0.191823496092709, + -0.3532569346907753, -0.36676403020596077, -0.1218802782362338, + 0.3956714105779679, 1.0923275752139572, 1.7707652380148693, + 2.275996397405704, 2.422661728098295, 2.2389007209615315, + 1.9061007593599995, 1.7418575774416158, 2.163485884945908, + 3.567186811801749, 6.209450599475013, 10.21472520411642, + 15.041703142308414, 20.553159368314212, 25.982239201909238, + 30.266170970602882 + ], + "pressure:J120:branch146_seg2": [ + 176443.4204626843, 192661.6985102142, 198499.3400151565, + 192728.85775902568, 178450.25034687284, 158054.00275304378, + 134077.67432815273, 109095.95456913862, 87622.49143537373, + 67420.818270839, 50289.98776988336, 35640.75611285924, 20663.69534728805, + 6693.925456406957, -8230.465609183759, -23195.42211246547, + -37003.99285816644, -50021.91710361727, -59664.22803133066, + -66740.71654243847, -71451.37258436294, -73658.1547650325, + -74879.43349341484, -75487.93542837365, -75802.08018927986, + -75857.34385095247, -75003.53261232795, -72747.91882689697, + -68847.1902354369, -63572.89798590225, -57603.11544740533, + -52775.79262102375, -50453.778513266516, -51876.4948726708, + -57965.387443696425, -68251.54815746236, -81127.2676981752, + -94245.61196389966, -105681.90337073618, -111840.0919757701, + -112094.42393801776, -105755.29404859699, -93330.85952748885, + -76370.36593565262, -58393.50745682897, -40132.39656591855, + -23768.72020139379, -11386.295760004248, -1339.2292746810724, + 5832.544961394815, 11253.928285364382, 16388.182428688928, + 20509.99619957437, 24307.65201499966, 27188.85671178331, + 27875.368013532538, 26352.78203426113, 22304.08288337524, + 16188.260820408706, 8837.701776768456, 2049.9829507828804, + -3788.0985301212345, -7513.42584048693, -8889.904299072177, + -8816.791191327895, -7848.702082520661, -7070.788386408984, + -7366.097747292627, -8940.063213388434, -11587.508873453287, + -14370.344871794714, -16557.144815495154, -17280.78686291854, + -15996.400323279717, -12998.40755524942, -9082.70619155822, + -5117.186346883674, -1935.778574591484, -491.0842633481194, + -435.2327404452474, -1234.0772974212657, -2105.184013715753, + -2024.6300949381625, -382.9987123516533, 2749.8603052633475, + 6875.119662441688, 10626.361064251747, 13253.907099463711, + 13876.965594085463, 12587.873732280159, 10656.156344416679, + 10019.16622713498, 13046.86371153738, 21980.017992047357, + 38025.2376763633, 61993.6340311475, 90151.61932401967, 121845.87763052192, + 152975.51589650192, 176443.4204626843 + ], + "flow:INFLOW:branch0_seg0": [ + 2812.176785326458, 3154.014559137005, 3374.119971313893, + 3399.2380024557347, 3235.4300771313415, 3050.13774421996, + 2637.9958821032546, 2286.5925201046425, 1916.8965067715383, + 1512.3561222558833, 1253.9597534217746, 894.348355686143, + 663.9186332109592, 367.20122835667365, 93.88972891737389, + -149.36199392615927, -463.0675496669113, -654.564734576502, + -902.9479174920223, -1039.8343033145866, -1160.5628551230575, + -1243.7966473271447, -1283.9769033279715, -1324.9006293451569, + -1339.3473284425522, -1354.7149200388058, -1352.3212560181996, + -1329.973330174462, -1274.0262282980702, -1216.3572176270063, + -1104.6879474140283, -1043.011306401021, -972.5589226078554, + -971.407325049463, -1031.9501030352867, -1179.0671347369969, + -1332.7978421346895, -1587.160158640274, -1749.1895192693903, + -1908.8493618232576, -1958.4279204530308, -1918.2976182779025, + -1741.3082175027291, -1559.1647275637033, -1210.2763787378574, + -970.1319904858225, -665.5134424374545, -410.56960579692014, + -239.95729536341528, -39.604484315444864, 47.93773019561366, + 184.28465848560458, 257.4411566824773, 350.6914363819695, + 415.8532864355901, 449.32342305758743, 449.0614437168961, + 420.12652988374134, 324.9491059230894, 234.78646230261958, + 117.55679659692704, 10.179614777473104, -57.22260618711881, + -112.95779572658206, -126.94751112261298, -126.80140208923508, + -122.48254035177366, -126.0862909409536, -150.89555790991778, + -179.90161789143045, -236.31528317170125, -265.16493864314606, + -289.92806374310305, -282.08102613784837, -253.42995389582345, + -187.36101758839672, -143.8702146190908, -74.99309793183065, + -48.48938601898129, -29.480502822348985, -32.05689148541427, + -39.24927609707879, -38.32589438454823, -24.343180848489112, + 26.91850528686329, 77.54258670322861, 145.4311115352251, + 196.64800078124583, 219.60135292780643, 216.09396327098221, + 199.92171911064514, 187.79568780827836, 222.37668369082203, + 331.072297928797, 589.3246009787966, 857.1303578273723, 1429.514790739441, + 1789.1121573134992, 2401.6544987689917, 2812.176785326458 + ], + "pressure:INFLOW:branch0_seg0": [ + 226817.29218303753, 231981.145227484, 221606.72483707813, + 197807.1861704641, 158536.36336029565, 143902.46528801325, + 93270.22618245776, 77911.43996161278, 51165.04577304479, + 32605.450423857394, 24225.751752393524, 82.20188056198026, + -2984.972635892558, -30848.234364702228, -37457.78915152627, + -59463.863004628656, -72001.94087933618, -75958.65071590531, + -90945.4482650813, -83945.31478714517, -88306.00860000782, + -85344.49524716816, -83149.05571259922, -83773.30931182229, + -81819.42099378006, -81131.62911931, -78316.877480137, -72617.06841829454, + -64989.28835890897, -59412.071109065655, -48557.11178473555, + -49912.16440967094, -49253.643334618195, -57925.736886130464, + -73316.59014233795, -91607.69971116736, -107024.5536246237, + -127540.48527347932, -127660.86461376555, -131858.27246694046, + -116484.62902930604, -97752.42238990712, -71990.27152729567, + -51949.40194618974, -16713.706469944067, -13720.677467988147, + 11045.513562466984, 13663.42151516198, 17011.94201630433, + 25752.137555470887, 21520.81663456585, 30827.9401376525, + 29180.625425529015, 34604.84171455482, 34230.54372549271, + 31384.54569143751, 24466.875235453914, 18589.306923054814, + 4025.738130718449, -1171.431993958006, -11921.550985547323, + -13472.258530069985, -15026.542282920977, -12803.850700278263, + -9372.246054858893, -7414.851708909363, -7170.391117635491, + -9274.749495244425, -13412.423760642541, -16860.63819367739, + -21857.21429578436, -20300.51658829452, -19210.364972042775, + -14325.69409988994, -8389.560832329846, -1328.1912232340699, + -204.8808340529381, 4243.131353841395, 1297.9794479344337, + -244.49556867268504, -2236.2449824736627, -2897.1849443991605, + -876.9303309104664, 2335.1818087591364, 10414.90118765287, + 13368.30273564887, 19257.241566292112, 17766.30868190856, + 15856.511677250777, 10826.205473270249, 8723.090522388955, + 11217.577590429388, 21316.79333610073, 45054.11125203604, + 75787.21773003953, 107386.44291416585, 167462.14794142067, + 174731.83563296893, 229360.78511609288, 226817.29218303753 + ], + "flow:branch3_seg2:RESISTANCE_0": [ + 28.038237301742644, 31.96689555063024, 34.23200931411849, + 34.713688237265174, 33.51488964259532, 30.856574278398917, + 27.136189385021027, 23.06415414408644, 18.936459040191277, + 14.94643794218745, 11.563415880095715, 8.489386108974436, + 5.648292146504286, 3.010571553946546, 0.2665853452389577, + -2.3742370109566298, -4.955220061188528, -7.45418569008481, + -9.47988351436584, -11.107412499430657, -12.270280566900732, + -12.970347498218162, -13.389071202521434, -13.595162690240654, + -13.694263359053783, -13.726618912370164, -13.642292882313384, + -13.371906343708694, -12.854012586991878, -12.067796226849731, + -11.098771954171669, -10.155597872979428, -9.442288057746683, + -9.255376131359565, -9.769961028643097, -11.037923323558609, + -12.88226712142717, -15.098199921472082, -17.259710124882336, + -18.861396516880912, -19.66093822682966, -19.36534389058568, + -17.961062505107826, -15.613308764441326, -12.72953044915614, + -9.556246700434471, -6.503466092406951, -3.875693120031847, + -1.6680291324097225, -0.007335772889584114, 1.2772452885065921, + 2.329068251366393, 3.1982754407410194, 3.9812152115466377, + 4.580386411155562, 4.925564114759852, 4.932703357517978, 4.51286588445741, + 3.683434993317626, 2.5825722426702726, 1.3658446338379984, + 0.1813087681017616, -0.6929651330050536, -1.2434261788993588, + -1.4878738436250671, -1.4739815283942992, -1.3785355989184542, + -1.3540403617865484, -1.4921906140983308, -1.8191221496705028, + -2.2512786542522507, -2.674819177265197, -2.9405824110797276, + -2.9331339117629507, -2.630604680137995, -2.092145700706434, + -1.4327854624926637, -0.8157640285198275, -0.3825251881674005, + -0.16971774668602332, -0.17169841158314006, -0.2741710304359138, + -0.32310022859884785, -0.19275657757115064, 0.18225286677033264, + 0.7590863079299772, 1.4119871244454785, 1.997026118185058, + 2.307084026255524, 2.314071078273851, 2.108956444019811, + 1.9153396174198358, 2.0906914243820935, 3.0226763202610614, + 5.0309542594573795, 8.314048007850825, 12.62689596388581, + 17.781467540910995, 23.174868345647972, 28.038237301742644 + ], + "pressure:branch3_seg2:RESISTANCE_0": [ + 154174.84494524935, 175777.49670422648, 188232.75769338344, + 190881.38258696484, 184289.50644779237, 169672.13394038717, + 149214.72223150276, 126823.67834645901, 104126.57560866555, + 82186.5057857003, 63584.162983039285, 46680.88699534882, 31058.4633592062, + 16554.336049420344, 1465.8822459040987, -13055.300841074186, + -27247.44342454513, -40988.593918866405, -52127.370033902625, + -61076.72110100976, -67471.0247822575, -71320.50752347098, + -73622.9583334409, -74756.20087012662, -75301.12921507469, + -75479.04383795065, -75015.35732053907, -73528.5733185346, + -70680.81264155016, -66357.6169957664, -61029.20902986845, + -55842.94442417012, -51920.64256981413, -50892.86336390126, + -53722.429498752696, -60694.61851731252, -70836.17684717392, + -83021.00473700796, -94906.5771741042, -103713.8266627147, + -108110.29487973958, -106484.89987125067, -98763.12825859398, + -85853.45191048717, -69996.31831714671, -52547.270980062465, + -35760.83851537958, -21311.410535750507, -9172.050656602545, + -40.33747327365968, 7023.233743025532, 12806.929788663681, + 17586.470035967308, 21891.648584330953, 25186.332404900917, + 27084.373225336996, 27123.63003144205, 24815.05490188927, + 20254.23398942801, 14200.881132025153, 7510.418089948309, + 996.9689217077348, -3810.4318322059953, -6837.271411522053, + -8181.424412322667, -8105.034248292615, -7580.202347510431, + -7445.509522635209, -8205.161190467259, -10002.871162819378, + -12379.185385750096, -14708.122606759003, -16169.48427955473, + -16128.526953496223, -14464.998791036583, -11504.155398145473, + -7878.507986874163, -4485.670452656421, -2103.4047518288694, + -933.2329631915035, -944.1241151624716, -1507.5939207972447, + -1776.64262948783, -1059.9173956398697, 1002.1602703748285, + 4174.014670239931, 7764.143431460169, 10981.117992880445, + 12686.044354202797, 12724.464303716788, 11596.593225666818, + 10531.945548333013, 11496.158717595797, 16620.896955135726, + 27663.885733296775, 45716.749190867464, 69431.95845092727, + 97775.58309090097, 127432.4664337854, 154174.84494524935 + ], + "flow:branch9_seg2:RESISTANCE_1": [ + 16.11526168746115, 19.161021992041007, 21.55639562056207, + 23.101164494409765, 23.69598826685305, 23.344420125806028, + 22.172704961801546, 20.446550225453578, 18.34682601360649, + 16.06733638540684, 13.82573558738581, 11.602703342813962, + 9.439234898649921, 7.321708106448907, 5.16565636723281, 3.036316921336074, + 0.9069767997200489, -1.1641947572881175, -3.0341905823827724, + -4.700927347546386, -6.0918752695133565, -7.195942446383166, + -8.06560702114844, -8.73090702176391, -9.247835069246168, + -9.64541460006082, -9.918016595597866, -10.044260807454567, + -9.995729565790311, -9.757040831611185, -9.357711653615647, + -8.882324518875603, -8.440365400009892, -8.186474902987321, + -8.24503203152018, -8.693979125840977, -9.513978698987001, + -10.640377794066438, -11.88254202267953, -13.010613020451888, + -13.838649292103147, -14.167124403918518, -13.911359195047691, + -13.074916285238032, -11.783493419457757, -10.141765258096722, + -8.360641469524417, -6.608853267483954, -4.960067948426983, + -3.516332036123336, -2.251208691148674, -1.136398815823848, + -0.15483674068005412, 0.7311228940413574, 1.4922029567319197, + 2.094434214920683, 2.488851884114702, 2.626403220278838, + 2.4953229604975404, 2.135692438417455, 1.6103280182066604, + 1.008376148935906, 0.45691402569743167, 0.00322454090335613, + -0.31272433629336444, -0.4935647377520188, -0.5978194740991611, + -0.6900936504928362, -0.8257984432213111, -1.0359075230860886, + -1.3037766763702814, -1.5895310241506755, -1.8234518161350566, + -1.9410978222964241, -1.9099143957341003, -1.7332757083643922, + -1.4494071959406307, -1.1287651739006421, -0.8451681048900422, + -0.6410496212613284, -0.534662110599598, -0.4954625938104582, + -0.4628938606716584, -0.37294571235270557, -0.1780523438155636, + 0.12551332342575372, 0.5003036095093868, 0.8787840034911399, + 1.165726209908454, 1.3214534181567437, 1.3519841510850277, + 1.3399579685929088, 1.444439890499339, 1.8655004326520965, + 2.80283071439431, 4.410166148424278, 6.671620631487039, 9.559681169599397, + 12.824993037304264, 16.11526168746115 + ], + "pressure:branch9_seg2:RESISTANCE_1": [ + 103071.7089060503, 122552.10740032504, 137872.69344779127, + 147752.8909140384, 151557.32821780184, 149308.73121717223, + 141814.55044325, 130774.2259383037, 117344.5859520731, 102765.18314938594, + 88428.11376646048, 74209.80711745303, 60372.464973778835, + 46828.96134600771, 33039.05575461325, 19419.999496878947, + 5800.93891730053, -7446.080954827048, -19406.39963148534, + -30066.692341197115, -38963.06536305025, -46024.57592825375, + -51586.869338972625, -55842.066017033314, -59148.28953787434, + -61691.17109088847, -63434.70799870479, -64242.15418902957, + -63931.75289920073, -62405.122044198986, -59851.049911199516, + -56810.518189161376, -53983.78893514873, -52359.929024545316, + -52734.454950557614, -55605.87864304912, -60850.51934113884, + -68054.86276984999, -75999.62918247603, -83214.66594468759, + -88510.7086159519, -90611.6047580329, -88975.75436551248, + -83625.94362160601, -75366.12356544881, -64865.7835503465, + -53473.88212039962, -42269.60836254472, -31724.131425821088, + -22490.13134712805, -14398.520570185632, -7268.30070882037, + -990.3213346977835, 4676.193757859972, 9543.990768992615, + 13395.805659869426, 15918.46424121978, 16798.22974274695, + 15959.852641493673, 13659.689404652352, 10299.507631638426, + 6449.4796861910345, 2922.3794416213177, 20.623862510501418, + -2000.1556526597942, -3156.793973470195, -3823.597531816641, + -4413.774547441133, -5281.729729588949, -6625.567784367944, + -8338.833875090499, -10166.49199968556, -11662.627541638838, + -12415.080411233175, -12215.63412685716, -11085.869577002417, + -9270.273079250079, -7219.476647911234, -5405.616276879651, + -4100.093516222782, -3419.648932520923, -3168.9324835981583, + -2960.6259077188847, -2385.3259504497073, -1138.8061644732898, + 802.7714961673016, 3199.8951679526444, 5620.620425271965, + 7455.875982785553, 8451.892664899035, 8647.164381741364, + 8570.246041528071, 9238.50265749474, 11931.566566370955, + 17926.64352026946, 28207.01086296128, 42671.062561476945, + 61142.82807546729, 82027.45786571276, 103071.7089060503 + ], + "flow:branch11_seg0:RESISTANCE_2": [ + 19.6281880594351, 22.645476323357855, 24.685486329598955, + 25.59659857461856, 25.415649243114487, 24.23630643614857, + 22.268233156032487, 19.88235812908537, 17.320566059169657, + 14.6987269199052, 12.289357637205603, 9.972369524273317, + 7.724955104922635, 5.553505567972261, 3.299599710362418, + 1.095454379141584, -1.0865303022687822, -3.1882694369560736, + -4.975773637379154, -6.514501216889465, -7.731961814125388, + -8.622795720838829, -9.300836035774516, -9.795024729955301, + -10.171107871911008, -10.452176187936498, -10.604522677512444, + -10.591976985082727, -10.379690498203903, -9.963182929795908, + -9.395988169938194, -8.819458334355955, -8.368416603282443, + -8.228153932349548, -8.526763201516976, -9.30657396417887, + -10.474750824774805, -11.908886481487144, -13.34448175927643, + -14.469628850948393, -15.117355027138473, -15.089083189104679, + -14.350243785456895, -12.979174648630089, -11.221802353375596, + -9.183420929674142, -7.135571169382641, -5.285721026529854, + -3.6140376313075375, -2.24031546633096, -1.0741720888377762, + -0.038210628694345564, 0.8541737832196904, 1.6696699656692384, + 2.3461873359038536, 2.8190121554790437, 3.0428392644117035, + 2.963042791535621, 2.5884873644706485, 1.9970395949085613, + 1.291841766275194, 0.570625063293617, -0.005082184037344281, + -0.41265001184103794, -0.6463381351613506, -0.7314030334582727, + -0.767281290432739, -0.8396225406135437, -1.0014357448447706, + -1.2688490789167592, -1.588850122617914, -1.8998053408061646, + -2.108989382278802, -2.1430532425660145, -1.9911284565682177, + -1.6860899171376142, -1.2956175539165335, -0.9122949173477616, + -0.6316314981531093, -0.4713518906408042, -0.42879345611880443, + -0.44324126735592534, -0.42281072294112665, -0.29296673924362815, + -0.015422321077025947, 0.3862879150186163, 0.834405619294503, + 1.239564176895862, 1.48196811084144, 1.543243424404048, 1.476562039728496, + 1.4250292443058643, 1.6142228811829846, 2.2922753364518607, + 3.671381242037764, 5.896046784251235, 8.80231698488622, 12.33782069499675, + 16.13375187736861, 19.6281880594351 + ], + "pressure:branch11_seg0:RESISTANCE_2": [ + 125540.05794330096, 144838.35192426032, 157886.0654275578, + 163713.45426682476, 162556.11923962526, 155013.15277357318, + 142425.5398531003, 127165.70597432723, 110780.72311588928, + 94011.68480911822, 78601.58386444682, 63782.34425502639, + 49408.091492947504, 35519.70302508466, 21103.93163008563, + 7006.423915215906, -6949.346352851191, -20391.873597411948, + -31824.58354575709, -41666.14145755791, -49452.905750711514, + -55150.59623178651, -59487.27877054137, -62648.06351106389, + -65053.45616828609, -66851.14287135776, -67825.53679253433, + -67745.29571526889, -66387.5311685542, -63723.587654593444, + -60095.862935325975, -56408.43194343091, -53523.611149873504, + -52626.50420434644, -54536.38120573399, -59523.97802480826, + -66995.52814054741, -76168.12588095623, -85350.05922146229, + -92546.39495330032, -96689.19109138765, -96508.36705535311, + -91782.81922261982, -83013.58905423679, -71773.59995763117, + -58736.302716175946, -45638.44687804711, -33806.978103804584, + -23115.047210152577, -14328.848521464442, -6870.3043737622365, + -244.39161301042097, 5463.215754521488, 10679.05318624525, + 15005.995112910794, 18030.138506421295, 19461.715794126616, + 18951.34500502431, 16555.72346959083, 12772.878765004081, + 8262.499304605859, 3649.664619721714, -32.50517452704982, + -2639.2709423792594, -4133.918357282822, -4677.9855034110315, + -4907.459484699199, -5370.147365609125, -6405.089509719975, + -8115.440223321803, -10162.137017062509, -12150.977555523179, + -13488.899151127556, -13706.768420633542, -12735.071676163418, + -10784.073662535082, -8286.64888977585, -5834.95310104065, + -4039.856080289204, -3014.722677586351, -2742.5229045005676, + -2834.9297560321834, -2704.257901766583, -1873.7879068985255, + -98.63972546661485, 2470.661432801481, 5336.780424013951, + 7928.136724630373, 9478.529650408356, 9870.440834051438, 9443.95292439139, + 9114.353977012332, 10324.418811531692, 14661.17899873299, + 23481.811589624962, 37710.56465782543, 56298.797472889695, + 78911.54905658327, 103189.97043408151, 125540.05794330096 + ], + "flow:branch14_seg0:RESISTANCE_3": [ + 33.06419973600639, 37.07486384711923, 39.09657756928473, + 38.99358049767773, 37.05004404819263, 33.60113775553367, + 29.148843333422214, 24.425288900198428, 19.85177555200809, + 15.573796079300296, 11.978141773160383, 8.71823621593331, + 5.666454784967304, 2.774153793664274, -0.2855614589931271, + -3.242355541436391, -6.159818010308117, -8.920823694239026, + -11.062771038963666, -12.771865296347134, -13.940598141505925, + -14.589347228836315, -14.977098205314539, -15.16310286388642, + -15.26601969894753, -15.312205648623355, -15.208965383829732, + -14.871251914308456, -14.229200008698298, -13.283174854679219, + -12.150460748737222, -11.112622254134692, -10.422231803025527, + -10.39677655665038, -11.225637617413241, -12.91477418092292, + -15.20234409159858, -17.807940598343077, -20.19779432865531, + -21.800503050143156, -22.37715301415016, -21.649784516235076, + -19.675128479107457, -16.700584552285832, -13.295619729053147, + -9.660871899589596, -6.290074643243857, -3.5438829611001728, + -1.267954892191182, 0.38384368059551655, 1.6544305486350421, + 2.7546132831484766, 3.659948600354905, 4.497628598413049, + 5.146530578412459, 5.4641671401621466, 5.370317592122712, + 4.781435610074632, 3.7391434791422236, 2.4214299076609085, + 1.0366166651900899, -0.2317788020438179, -1.1025368029873719, + -1.5877485461492955, -1.7247459551300908, -1.6104120606899848, + -1.4652379796183832, -1.4585369661775773, -1.6745809792320487, + -2.1149211023222687, -2.642638029212009, -3.12185572446336, + -3.374463046902477, -3.2725304617112183, -2.829968938754027, + -2.1443879446732415, -1.3708424126951757, -0.6907049542854286, + -0.2768177047718721, -0.13252144537372884, -0.21076101486022725, + -0.3675788458032579, -0.41073152952598385, -0.20374165648309275, + 0.30163227237656337, 1.0256159824054887, 1.7912653169390234, + 2.415009117276782, 2.6771985777002802, 2.581220459681752, + 2.269885481210826, 2.0558683859234397, 2.38044066178802, + 3.6899925823765574, 6.317324986952172, 10.448731136715299, + 15.626222960142684, 21.668768724679943, 27.861122105052686, + 33.06419973600639 + ], + "pressure:branch14_seg0:RESISTANCE_3": [ + 164253.35189272667, 184177.16764589946, 194220.45488964036, + 193708.7953188168, 184053.8700854073, 166920.70420035927, + 144802.99718540453, 121337.74913163485, 98617.86165925056, + 77366.10074167726, 59503.93329935382, 43309.66823612429, + 28149.303452402422, 13781.19122535587, -1418.586482833719, + -16107.081676281068, -30600.188824185683, -44316.06405484629, + -54956.63705397353, -63446.92149203778, -69252.84720071958, + -72475.64445521729, -74401.87881428756, -75325.89599545793, + -75837.15697440859, -76066.5953731914, -75553.72768916666, + -73876.06514807754, -70686.5375494196, -65986.9590396389, + -60359.96397783446, -55204.28342839114, -51774.623959389166, + -51648.16968033524, -55765.71096578715, -64156.85137070449, + -75520.83503029749, -88464.6825551067, -100336.78255665707, + -108298.57451635454, -111163.20424316978, -107549.84856549946, + -97740.3302489184, -82963.65897807074, -66048.78156509325, + -47992.408840484655, -31247.265987300994, -17604.982419771786, + -6298.832052613931, 1906.8240466728976, 8218.730991729251, + 13684.119638093356, 18181.56284329376, 22342.91405073586, + 25566.470831656086, 27144.39711953298, 26678.179791965144, + 23752.78494820725, 18574.98002554406, 12028.961289918754, + 5149.610855388562, -1151.4098462178179, -5477.082975595143, + -7887.474148779901, -8568.037531695418, -8000.05991400876, + -7278.877196314781, -7245.588505600297, -8318.832485009278, + -10506.314467572876, -13127.859062157699, -15508.473544279861, + -16763.35343717136, -16256.981926036173, -14058.464673394003, + -10652.69719162269, -6809.947405342304, -3431.221829534532, + -1375.1500485445647, -658.3280942560486, -1046.9995770498335, + -1826.0250660857173, -2040.3950796120498, -1012.1294410485847, + 1498.4216213431632, 5094.962654772733, 8898.486422944747, + 11997.064666055632, 13299.545840537576, 12822.754394842435, + 11276.132544515222, 10212.957704537212, 11825.338607988208, + 18330.81262978755, 31382.6377891313, 51906.26496133036, 77626.5422759183, + 107644.15660546419, 138405.9717091533, 164253.35189272667 + ], + "flow:branch19_seg0:RESISTANCE_4": [ + 18.038085311675374, 22.572412361107162, 26.82714625014294, + 30.42431567129256, 33.04149166559423, 34.484042094642476, + 34.711588093238205, 33.85344517957583, 32.07639122109306, + 29.632378736859376, 26.787940323683433, 23.689175107256915, + 20.48025549724475, 17.21906589922001, 13.905318618852245, + 10.57803433524926, 7.231760669754619, 3.921590670096176, + 0.7458919018098767, -2.231194212280446, -4.91429051581695, + -7.252203091083878, -9.235381194442251, -10.875987049581301, + -12.217706583857328, -13.300700416276356, -14.1486935704015, + -14.76351371595574, -15.128778827132512, -15.224593547486663, + -15.058095554485396, -14.679124733939835, -14.184695139218071, + -13.728792441287268, -13.475828691040615, -13.577667290969742, + -14.121194312385951, -15.12414330188602, -16.478664429387738, + -17.996043980878916, -19.442033833459586, -20.54978699725982, + -21.10872726838986, -20.986864313016575, -20.163201874488188, + -18.691784462957816, -16.73732282790124, -14.480761522892845, + -12.097581356799731, -9.751970553579788, -7.525012098192186, + -5.466203520076281, -3.584809579331867, -1.8709649933518915, + -0.33879523972258313, 0.990136549804506, 2.0661391096608033, + 2.8311081972425325, 3.243167298795572, 3.2982901861962883, + 3.0272661626674924, 2.5084699803053288, 1.8617362859140343, + 1.1860636578096082, 0.5764406556909443, 0.08585432763527434, + -0.2868138765263446, -0.5772864001915698, -0.8416397221633678, + -1.132864664119831, -1.4754806543337542, -1.8609485680949969, + -2.2415024540496056, -2.552225005164719, -2.731512586552607, + -2.7420671666307164, -2.583046745942515, -2.297391229576287, + -1.951130883278756, -1.6135410317849705, -1.3396157082114526, + -1.1433812489707629, -1.0000926123860392, -0.8567045233199392, + -0.6514464036481002, -0.3437970475239897, 0.07156372241312173, + 0.555494994032842, 1.0288699871496103, 1.4206796382075124, + 1.6854369423378348, 1.843954306891857, 2.0032796043834233, + 2.3473312525728174, 3.1108352577666634, 4.524815228189813, + 6.7395088587464365, 9.830459827949662, 13.676469294818892, + 18.038085311675374 + ], + "pressure:branch19_seg0:RESISTANCE_4": [ + 66998.29630829666, 83840.00550122884, 99643.23056004985, + 113004.08447470039, 122724.97944372677, 128082.9994006705, + 128928.16638898439, 125740.79299480231, 119140.33703680929, + 110062.61787922143, 99497.60921318147, 87987.96245341247, + 76069.17267354537, 63956.238111444785, 51648.090193037664, + 39289.66220675494, 26860.702553026804, 14565.841616511168, + 2770.442970411473, -8287.25490387569, -18252.99561649011, + -26936.63119942674, -34302.687624218, -40396.33865803462, + -45379.845575034, -49402.37570673514, -52552.05016639999, + -54835.65741054372, -56192.350192893595, -56548.23181303712, + -55929.81352322374, -54522.21405308693, -52685.769667866596, + -50992.424530841796, -50052.84918227023, -50431.10510997847, + -52449.91053212872, -56175.132606402054, -61206.18808086639, + -66842.14350775411, -72212.93840799309, -76327.43135013552, + -78403.48572379627, -77950.85395873089, -74891.5503152978, + -69426.3106278524, -62166.91488345139, -53785.43978016272, + -44933.66819991438, -36221.439329574205, -27949.917165093677, + -20302.94883251692, -13314.946140621158, -6949.266778658851, + -1258.3765663898635, 3677.633230092947, 7674.195896700453, + 10515.49666177221, 12045.994899550918, 12250.73611679223, + 11244.080059829397, 9317.131619960935, 6914.98887916121, + 4405.359161650631, 2141.055504884852, 318.88604488038715, + -1065.3038142790483, -2144.1968272403433, -3126.0761059737406, + -4207.7638026684035, -5480.331663153587, -6912.063083493215, + -8325.542483991074, -9479.649540785053, -10145.571798867262, + -10184.77434565907, -9594.129768905837, -8533.12841555119, + -7247.024437211502, -5993.125006630505, -4975.692741618495, + -4246.825224976155, -3714.6127220625285, -3182.0308259040016, + -2419.647009449029, -1276.954624725789, 265.80689670435385, + 2063.257688659018, 3821.4996254154917, 5276.785962319207, + 6260.165739353236, 6848.9418304352575, 7440.718801567597, + 8718.619081581686, 11554.478136948532, 16806.379732681682, + 25032.34704175758, 36512.969587381886, 50798.08230380795, + 66998.29630829666 + ], + "flow:branch21_seg0:RESISTANCE_5": [ + 35.73106770740595, 38.700321112188696, 39.65497058804138, + 38.161057001212114, 35.11900001333421, 30.972133662730425, + 26.140048252325347, 21.150533587280496, 16.999370257915423, + 12.988530987990407, 9.639043604527043, 6.791057740559995, + 3.73894707603313, 0.9526331681219963, -2.0854204323120134, + -5.082899242575303, -7.77751970241566, -10.42567635404384, + -12.227184463320357, -13.526450573734893, -14.442514565551939, + -14.792561388240564, -15.01480555180721, -15.129309999627036, + -15.17052714040677, -15.174288710243273, -14.96677366583852, + -14.461022112663139, -13.625958389220356, -12.538613994935833, + -11.323681870707711, -10.410248070612948, -10.041408547100403, + -10.433257911132856, -11.78869721124378, -13.964690237480855, + -16.565747338949386, -19.153284419585898, -21.363767552623493, + -22.384988126731564, -22.222100608114218, -20.766395947431768, + -18.105654138389855, -14.567097062359206, -11.026505851781778, + -7.461932420531439, -4.213562194877067, -1.9439912298756092, + -0.012285133473400232, 1.3530529841243644, 2.339752866315798, + 3.398283154002537, 4.1857416522786535, 4.91002882034115, + 5.468587744771273, 5.526858835377903, 5.153411515385749, + 4.285809519979595, 3.0122538393624847, 1.5321806891926277, + 0.21477603725883543, -0.9128528760419009, -1.5804965818744463, + -1.7697529807623151, -1.7285292011092404, -1.5217015442164317, + -1.3792691736214144, -1.4808952319962598, -1.8373113248006203, + -2.3974523845353564, -2.940345996988771, -3.3359631820193587, + -3.438174617107902, -3.11362116108033, -2.4666609938188038, + -1.6722341134774272, -0.9066721645367478, -0.2967755017159107, + -0.07221822880889506, -0.10924466256353836, -0.27777595525152077, + -0.4437553764319368, -0.39045861071548177, -0.012712079893967068, + 0.6548426640126861, 1.4931998340051442, 2.214989932709831, + 2.6956936729407084, 2.7526654413483502, 2.4335242088839295, + 2.0456220544721777, 1.9845603770392055, 2.724299499449196, + 4.7002602868192875, 8.10414092878581, 13.153664171146515, + 18.832491895488946, 25.082932814947593, 31.40214079916775, + 35.73106770740595 + ], + "pressure:branch21_seg0:RESISTANCE_5": [ + 184782.73399634796, 200138.1878707384, 205075.14473977702, + 197349.39080516173, 181617.4341842173, 160171.97086762125, + 135182.90643914562, 109379.69874684315, 87912.01366263344, + 67170.01255632391, 49848.18379735024, 35119.863372217886, + 19335.914298307714, 4926.529560849549, -10784.72359599931, + -26286.144773572738, -40221.338082913586, -53916.244435714485, + -63232.71928819753, -69951.856427818, -74689.26898737965, + -76499.53140250802, -77648.86409233474, -78241.02229752378, + -78454.17618430601, -78473.6290919056, -77400.46784286473, + -74784.98051726623, -70466.45975145666, -64843.27290417875, + -58560.26783494476, -53836.45727634571, -51929.0086627607, + -53955.452355782036, -60965.08838713366, -72218.20692917432, + -85669.53859454273, -99050.95165479742, -110482.43531827065, + -115763.6637226989, -114921.29312044631, -107393.13613127214, + -93633.14580690903, -75333.54568676878, -57023.42606730012, + -38589.28271757147, -21790.379974334563, -10053.324386018528, + -63.53240181036695, 6997.295230463506, 12100.000342951585, + 17574.175427178125, 21646.50641408532, 25392.147720104043, + 28280.72765282247, 28582.07581077455, 26650.798039933525, + 22164.006040190314, 15577.830040970728, 7923.651737582257, + 1110.7113755061343, -4720.806317705103, -8173.516723937654, + -9152.253634326751, -8939.065414697701, -7869.458980889391, + -7132.871900323148, -7658.429688450112, -9501.630697946453, + -12398.392622023017, -15205.959605460353, -17251.88853388058, + -17780.473589776873, -16102.049775971647, -12756.304010066633, + -8647.936129440923, -4688.8428516428285, -1534.7704983030158, + -373.47559476772875, -564.9572967807089, -1436.514600408166, + -2294.8749350051507, -2019.251431030595, -65.74034945890813, + 3386.5099913787462, 7722.06277152827, 11454.790517096973, + 13940.743416390891, 14235.372147140879, 12584.937574386127, + 10578.90682259885, 10263.127182571021, 14088.678061775683, + 24307.332582534906, 41910.45534310854, 68023.99658240718, + 97391.97744967624, 129716.04823418282, 162395.74696520402, + 184782.73399634796 + ], + "flow:branch22_seg0:RESISTANCE_6": [ + 53.068099856052925, 58.237905316225095, 60.05683342868907, + 58.49441260673998, 54.32597527319084, 48.18571811662028, + 40.85507279351416, 33.445178588515645, 26.777979117016844, + 20.5505169832949, 15.465694372519325, 10.912121056182858, + 6.424292583642194, 2.192862846412892, -2.4147613807710955, + -6.8877389352525284, -11.148533782599168, -15.163190373765566, + -18.069666338138557, -20.282891639889222, -21.704494023886745, + -22.35584754617988, -22.73324140527383, -22.889424012764508, + -22.976697940014173, -22.994057872870112, -22.741945479865915, + -22.076616958387515, -20.913048738319997, -19.30528711456145, + -17.483221592594965, -15.985765254620016, -15.194596113351784, + -15.57397854442738, -17.3683338637119, -20.4532195795189, + -24.31003612523326, -28.36527386751543, -31.84827980374758, + -33.764045173890516, -33.93147054812844, -32.03025379317834, + -28.272320071935926, -23.151290173300367, -17.710178430883317, + -12.13970796224931, -7.211095045240692, -3.4617851148480234, + -0.3888285198788027, 1.7278492032897301, 3.36770477166017, + 4.888384372909414, 6.12121472357687, 7.305111435776397, 8.163163670917779, + 8.410843192049407, 7.993632389429675, 6.793511622872379, + 4.942934479712157, 2.757748187147892, 0.6611305443786261, + -1.155664275601817, -2.2603391010023, -2.7078598453779392, + -2.6909003530914615, -2.3712219740146296, -2.1202508641640723, + -2.1909647143685698, -2.6528233437536977, -3.4514342986011712, + -4.302694093191332, -4.98678510073367, -5.223391632023288, + -4.851392597607807, -3.9619653954325944, -2.777012846470809, + -1.5595316258140894, -0.590478480217135, -0.13589510189589865, + -0.09706814738562952, -0.3511167670119648, -0.6356113056518818, + -0.6331715621171733, -0.16357980103850722, 0.7778503891146588, + 2.012112592003863, 3.1762110621341475, 4.012175297637264, + 4.2030263148386995, 3.8226209963842797, 3.221696462465895, + 2.972625383134486, 3.8076798444461137, 6.41197366358813, + 11.185416148410269, 18.350823439879022, 26.8322518793925, + 36.4458119919377, 45.846154285405284, 53.068099856052925 + ], + "pressure:branch22_seg0:RESISTANCE_6": [ + 179526.72481750255, 197015.91784920497, 203169.26058420204, + 197883.66917029637, 183782.05437479838, 163009.87184242133, + 138210.66574260636, 113143.36464315603, 90588.56264214363, + 69521.37003820731, 52319.669731119524, 36915.159188712976, + 21733.060161169604, 7418.345217901625, -8169.01684969578, + -23300.8759649901, -37714.93160554443, -51296.31384901014, + -61128.77651602947, -68616.00690084168, -73425.21658960129, + -75628.71294377685, -76905.41747386039, -77433.77541530991, + -77729.0187415912, -77787.74652527412, -76934.86292241787, + -74684.08984569453, -70747.79681434002, -65308.81973802823, + -59144.86330376728, -54079.04348653627, -51402.5578936077, + -52685.98966314501, -58756.20386911944, -69192.21779269082, + -82239.63506506437, -95958.30131094673, -107741.1360072669, + -114222.07433656733, -114788.46599502134, -108356.74490249917, + -95643.84327447886, -78319.65552537242, -59912.646924503126, + -41068.024229530594, -24394.77349540166, -11711.045720054073, + -1315.387415015354, 5845.2273453633525, 11392.77662943341, + 16537.159583590765, 20707.76293496679, 24712.826237403213, + 27615.573988219956, 28453.46140747415, 27042.058150980385, + 22982.109684952382, 16721.699863708738, 9329.324043127206, + 2236.5715303757574, -3909.5543829558496, -7646.614008804746, + -9160.554280709623, -9103.18116742668, -8021.72521655897, + -7172.702517468353, -7411.923932234617, -8974.368551265581, + -11676.029426934138, -14555.798691445925, -16870.04431912556, + -17670.47236814447, -16412.018259836645, -13403.130566416561, + -9394.495421079338, -5275.81740803013, -1997.5591346997135, + -459.7263257673849, -328.3766826313433, -1187.8104432070431, + -2150.2412234472263, -2141.987693224801, -553.3822768547021, + 2631.4289212253098, 6806.876156980718, 10744.962997749073, + 13572.988151682977, 14218.627587413506, 12931.735441083143, + 10898.837829721242, 10056.242838751046, 12881.19027214403, + 21691.38587140746, 37839.70280247071, 62079.916914339155, + 90772.16467994814, 123294.35721223739, 155095.2445379068, + 179526.72481750255 + ], + "flow:branch23_seg0:RESISTANCE_7": [ + 13.839546714971622, 17.195526137992005, 20.290783616933354, + 22.85207085772379, 24.656069902233885, 25.573576518353544, + 25.591469043844977, 24.827723333950196, 23.411575947151956, + 21.529928662325133, 19.388099797578914, 17.0772253452075, + 14.69788176087023, 12.289520682204026, 9.839961355337884, + 7.386016481171793, 4.920558605305119, 2.4842904394310135, + 0.16290837406229033, -2.0038248127593277, -3.9450402224499572, + -5.624270977374258, -7.042613598011705, -8.210702274641756, + -9.163474820677434, -9.930831971031473, -10.527276206440906, + -10.951570606902179, -11.189911609490073, -11.227594042729358, + -11.073083245608874, -10.769760645676245, -10.394054653914102, + -10.065915305572675, -9.908091990950386, -10.029754287966268, + -10.485114287805231, -11.27927118034533, -12.319107584314269, + -13.452154879992182, -14.504337578509476, -15.275512824841877, + -15.616872161711267, -15.441184085935722, -14.750044368784375, + -13.589305848098139, -12.091160791194037, -10.396147877519184, + -8.626335320929295, -6.903547068401384, -5.278616203779206, + -3.7806834726250527, -2.4156281258845693, -1.1726804463614484, + -0.06523391995324367, 0.888274009330693, 1.6495948393144446, + 2.1745566688449958, 2.4343285930606293, 2.4314340500357514, + 2.1934908286103894, 1.7818183405803134, 1.291672409564648, + 0.7927998497372475, 0.3522313474667114, 0.005531136599438443, + -0.255053485473198, -0.46032116472091245, -0.6532188268529958, + -0.8721413178765631, -1.1309866951564567, -1.419586737463981, + -1.6985898746208956, -1.9175905217610156, -2.0325589389875764, + -2.0194680751769374, -1.8821026800776763, -1.6568483593390555, + -1.39585746247096, -1.1493094737178864, -0.9555821365323177, + -0.8203480966718648, -0.7202932894277674, -0.6132368708375653, + -0.45319204328283524, -0.2133056532572058, 0.10536664323512299, + 0.4696310737714779, 0.8157045658800623, 1.09290503660595, + 1.272493443385686, 1.3779562479116279, 1.4987406010089215, + 1.7795882332795019, 2.3984107924666556, 3.526293686612658, + 5.258409387346045, 7.642199634415879, 10.570104931925428, + 13.839546714971622 + ], + "pressure:branch23_seg0:RESISTANCE_7": [ + 69938.38102996523, 86897.87923101654, 102539.81472257902, + 115483.32267575769, 124599.86205028066, 129236.49709601347, + 129326.9172731497, 125467.31554133417, 118310.79101258425, + 108801.85495560573, 97978.08692846706, 86300.04419405127, + 74275.99155491727, 62105.29852236926, 49726.40945279031, + 37325.35794651451, 24866.125293379922, 12554.403328402415, + 823.2601957882915, -10126.362239916887, -19936.32681320241, + -28422.34754739871, -35589.96572711146, -41492.92141095459, + -46307.77342394919, -50185.62563058569, -53199.76656008073, + -55343.94541647291, -56548.40566342644, -56738.83447069648, + -55958.011570581, -54425.16573349856, -52526.52921394126, + -50868.2715232983, -50070.708760522946, -50685.53121540229, + -52986.70059836405, -56999.985750827815, -62254.81642753863, + -67980.68990606806, -73297.91278898285, -77195.05980756853, + -78920.12493158177, -78032.28229922705, -74539.59616733505, + -68673.78461961227, -61102.88349215329, -52537.10735448099, + -43593.32996901714, -34887.190691429125, -26675.575361982093, + -19105.747226250893, -12207.417177333346, -5926.1602690562895, + -329.66070664951013, 4488.907577904097, 8336.255138488299, + 10989.158533088676, 12301.920301296312, 12287.292679657521, + 11084.842626467453, 9004.448815860163, 6527.488147303689, + 4006.427313940995, 1780.0070115854064, 27.951691408695176, + -1288.917059022372, -2326.2407127517167, -3301.052277886437, + -4407.380751541921, -5715.460199293421, -7173.90534492337, + -8583.852369698718, -9690.575806596557, -10271.570627888084, + -10205.415728447495, -9511.237404501519, -8372.910923374116, + -7053.98905646123, -5808.054667517372, -4829.050325609231, + -4145.642841045237, -3640.014197490872, -3099.002793772428, + -2290.2135782088135, -1077.9436899622515, 532.4720956681701, + 2373.288494009498, 4122.176680443081, 5523.013900233507, + 6430.566920617116, 6963.524968978908, 7573.910719564198, + 8993.178931278326, 12120.40909464586, 17820.18418356674, + 26573.459876825535, 38619.98380052621, 53416.202241363884, + 69938.38102996523 + ], + "flow:branch28_seg2:RESISTANCE_8": [ + 14.51269324693512, 17.707118990218472, 20.461367293521196, + 22.530644591444943, 23.732680785823934, 24.004245449229835, + 23.40526050355615, 22.12016284281434, 20.317185195167372, + 18.209651084889888, 15.994061481989096, 13.73196446168477, + 11.495180780841551, 9.280043764895238, 7.04946514211403, + 4.827112182133581, 2.5968403009539287, 0.4152439078975615, + -1.6308470187316144, -3.4985761068189913, -5.114528081069313, + -6.459706529838403, -7.549433122679745, -8.410303819079928, + -9.090516806354689, -9.62216570609402, -10.016159477544424, + -10.262487778200475, -10.338463050408288, -10.22563127479723, + -9.937949831410121, -9.530733330538988, -9.096708320397694, + -8.77113546777547, -8.680772676105384, -8.925701640708963, + -9.535774963809994, -10.480901407967114, -11.623048071748006, + -12.778283951931874, -13.749261903188106, -14.334523258490771, + -14.408382599259827, -13.924085183443996, -12.93087811844189, + -11.520171224124223, -9.867855380485194, -8.12415213432367, + -6.412930489257122, -4.838757612951295, -3.418788287578173, + -2.1573374384520587, -1.0336398135707379, -0.022485417047921206, + 0.8633559838366924, 1.6035804495018984, 2.152912137682989, + 2.4647206768123926, 2.515048056961703, 2.3187597525934547, + 1.9185249018551114, 1.3935231534682295, 0.8484039628915164, + 0.3519813722015094, -0.0366551604793622, -0.3023070973319215, + -0.4747329012517463, -0.6036269142437716, -0.7437758256690552, + -0.9346804024800023, -1.181744596341084, -1.4611692399514253, + -1.718011980539957, -1.893967599567919, -1.9444721477779137, + -1.8543043927906464, -1.6421699113495811, -1.361655394253193, + -1.0758497960129276, -0.8380086798939366, -0.6805376094338499, + -0.5941603402132886, -0.5386930401133566, -0.45857453635137996, + -0.3022715482056303, -0.04840737498636307, 0.28895678281765824, + 0.6586006941883749, 0.9832332767612317, 1.2090027190379056, + 1.3157511257183905, 1.3494937436852297, 1.428735078254534, + 1.7246848692289065, 2.431014850791519, 3.711673611501882, + 5.634539329373503, 8.206003103396291, 11.247008473127247, + 14.51269324693512 + ], + "pressure:branch28_seg2:RESISTANCE_8": [ + 86677.09812185711, 105755.81417285926, 122205.56931997759, + 134564.33335788708, 141743.49765175043, 143365.4183094772, + 139787.97916526135, 132112.73004774709, 121344.44136296854, + 108757.18841388429, 95524.57375436788, 82014.19342358623, + 68654.99707850399, 55425.08549574958, 42102.948876061404, + 28829.94004880946, 15509.63544414114, 2480.0453187348126, + -9740.238056376997, -20895.25488741687, -30546.532251931465, + -38580.614032031495, -45089.008938924126, -50230.56140975025, + -54293.13524346652, -57468.40967840773, -59821.53850200387, + -61292.73491764055, -61746.49742828644, -61072.60935531049, + -59354.43118727321, -56922.32957785632, -54330.114077177095, + -52385.629369036884, -51845.93736102269, -53308.776238451035, + -56952.44074566624, -62597.210888875656, -69418.68480564257, + -76318.33410139188, -82117.50243790657, -85612.97740298079, + -86054.10250761276, -83161.63493343099, -77229.70315731416, + -68804.25256593176, -58935.79189701706, -48521.51972910846, + -38301.24400813047, -28899.492414630247, -20418.721929703184, + -12884.703456000614, -6173.416471987333, -134.29421173633725, + 5156.395856497031, 9577.388400811504, 12858.273335659374, + 14720.550645701107, 15021.131054395826, 13848.798646594158, + 11458.394960731373, 8322.82065451679, 5067.094872557593, + 2102.2096599342567, -218.9230411940223, -1805.5299242210056, + -2835.3434861021246, -3605.163313567999, -4442.203051168153, + -5582.3811321485455, -7057.972671865786, -8726.83708178401, + -10260.83101723651, -11311.726409021347, -11613.364954416063, + -11074.837803496297, -9807.864061956134, -8132.490379810581, + -6425.515701786357, -5005.009017844618, -4064.512640407325, + -3548.624175575837, -3217.3455816228366, -2738.83760975307, + -1805.3176069722892, -289.11317287079424, 1725.7951360971908, + 3933.4943571108442, 5872.363299935255, 7220.771880490272, + 7858.327016724877, 8059.8548901967515, 8533.123966785188, + 10300.684862265405, 14519.242512223367, 22167.98028776722, + 33652.300783436156, 49010.37485454668, 67172.7873259158, 86677.09812185711 + ], + "flow:branch30_seg2:RESISTANCE_9": [ + 35.318263835831395, 39.49013173193545, 41.49279717994543, + 41.22265896362804, 39.02975742443034, 35.26231317609108, + 30.438463781109675, 25.373023908682004, 20.515042093489722, + 15.927768046937162, 12.112315197376374, 8.662636703681207, + 5.407148717824364, 2.353573423734076, -0.8904286827410933, + -4.003022622360723, -7.039856517464076, -9.925559727476413, + -12.125143023218133, -13.861049957089314, -15.03420689858987, + -15.653737126617225, -16.013893039984367, -16.16579512540442, + -16.232222962217936, -16.240473995630683, -16.086279624503682, + -15.681242706103319, -14.955272830217309, -13.914273566557195, + -12.685206955455268, -11.583090409823095, -10.863548768869835, + -10.866687033743597, -11.79113122218296, -13.626514975518942, + -16.07800201057981, -18.846771263197247, -21.37245155954461, + -23.02275034101196, -23.576339869060405, -22.740478628818302, + -20.576246579012576, -17.360759504424564, -13.723215152940144, + -9.851108560632111, -6.274479200797313, -3.38637172995675, + -0.9798193500797829, 0.7498238056337877, 2.0768686285520217, + 3.231915997920746, 4.16450580245564, 5.030778015534897, 5.680654782552763, + 5.964008800861102, 5.813098031441838, 5.133809798112929, + 3.976865642865249, 2.5425924069562758, 1.057541156395736, + -0.3030057971757505, -1.2223321122554671, -1.7206815071925083, + -1.8618699192236776, -1.7371767999105894, -1.5853678227486832, + -1.587532800972762, -1.8258459051897242, -2.2983472776647855, + -2.8526440755373867, -3.346983628674197, -3.592949439496501, + -3.4581953002184775, -2.9658041024086317, -2.2246525793766545, + -1.3995125463609803, -0.6813165252966396, -0.2566871338838726, + -0.11231377099711311, -0.20081395142061761, -0.3664794490762882, + -0.40169684944788614, -0.16690216656227208, 0.3835225399118688, + 1.1583591093898937, 1.963298407282112, 2.6120458035910574, + 2.866880400899233, 2.739056529079734, 2.3994174297324227, + 2.1840986789217407, 2.565515171074175, 4.016352826810565, + 6.879099149791011, 11.35091067652579, 16.89220384569618, + 23.332455365488023, 29.89073819442793, 35.318263835831395 + ], + "pressure:branch30_seg2:RESISTANCE_9": [ + 169743.58024606478, 189794.05034532788, 199419.08754309552, + 198120.77264822746, 187581.4392279657, 169474.67503187244, + 146290.7079298113, 121945.62960252463, 98597.61821912669, + 76550.65906362288, 58213.160087032426, 41633.614134843374, + 25987.36977992677, 11311.540713709144, -4279.501202687778, + -19238.9805706173, -33834.348575220305, -47703.36537264493, + -58274.81207239939, -66617.77760713985, -72256.10287609437, + -75233.63539198037, -76964.58554473556, -77694.64418934607, + -78013.90390440612, -78053.55930646275, -77312.48367684858, + -75365.83032547093, -71876.7367942413, -66873.57630853693, + -60966.54282866364, -55669.645756551356, -52211.447051221345, + -52226.52990801135, -56669.51348763424, -65490.575895031296, + -77272.70052585546, -90579.71946650797, -102718.42532282538, + -110649.94837118567, -113310.56240687377, -109293.3185194839, + -98891.7739156808, -83437.77847545852, -65955.32791121681, + -47345.54462379699, -30155.858415730712, -16275.286468181072, + -4709.122884694489, 3603.738222061841, 9981.666096322402, + 15532.954708408382, 20015.087042504532, 24178.489513228673, + 27301.87093608322, 28663.702473680987, 27938.40820616007, + 24673.671941651697, 19113.26716158172, 12219.987377334981, + 5082.662697652465, -1456.2802148774458, -5874.666714890486, + -8269.790407922228, -8948.35792355345, -8349.06865490057, + -7619.457499134891, -7629.862629934952, -8775.22242783622, + -11046.117594371526, -13710.130849017161, -16085.98278774266, + -17268.122361227, -16620.478689939784, -14253.990767817491, + -10691.932519171905, -6726.215969243473, -3274.4844656654022, + -1233.6674676614698, -539.7927171217948, -965.1346180522279, + -1761.3417823138147, -1930.6006013123333, -802.1507352325433, + 1843.2528091511085, 5567.205210098392, 9435.834736739145, + 12553.788275924067, 13778.552242769427, 13164.21622261781, + 11531.872204159852, 10497.025875738591, 12330.1567805811, + 19303.047044532123, 33061.73044011658, 54553.763634667106, + 81185.84685654368, 112138.42583200012, 143658.27666116838, + 169743.58024606478 + ], + "flow:branch32_seg0:RESISTANCE_10": [ + 30.30056648294753, 33.39097800704415, 34.579103801169936, + 33.807687248899136, 31.513986725995213, 28.055799804555637, + 23.885528679517684, 19.638014650247985, 15.760729506196006, + 12.148378885502463, 9.192627125938273, 6.5445524733503735, + 3.981547617466436, 1.573360555522288, -1.0282359047109437, + -3.5346995984732312, -5.9596042675923, -8.25664595986928, + -9.948511934501617, -11.269200089284158, -12.152074558461257, + -12.592889841979837, -12.86595929336044, -12.999149702462043, + -13.08124609801559, -13.123846274617541, -13.018664790599244, + -12.689116433427541, -12.0809621543056, -11.216480595309312, + -10.209322298589735, -9.354088077474854, -8.864514526163225, + -9.009915974439096, -9.947633475354365, -11.635093232434848, + -13.793856469114898, -16.142187610437503, -18.221522062161625, + -19.479748008038246, -19.774594559202974, -18.891843726329665, + -16.904593818183464, -14.073648306741728, -10.978809128363785, + -7.73498490054902, -4.790602596271566, -2.4956268570131406, + -0.589092122181635, 0.7542020027803171, 1.784664436023132, + 2.7271354171309468, 3.483282523894077, 4.198799606486962, + 4.7342997673134155, 4.927829204453988, 4.7421155070994185, + 4.104433427419034, 3.075388981099288, 1.8330282864676226, + 0.6003125232480865, -0.4932450190664504, -1.19136274122855, + -1.5201120382281836, -1.5646453992741929, -1.412164480915168, + -1.2728741941759074, -1.2977076600555761, -1.5398500983596857, + -1.9802349378273545, -2.4674044504708634, -2.8781728764498835, + -3.0522461355314823, -2.8822582204710705, -2.410067371678777, + -1.7471263764836364, -1.0437195961652692, -0.4564211271391172, + -0.15054869110935154, -0.0853435284826808, -0.20053042592422918, + -0.35597410698473597, -0.36868872293605015, -0.12729155697279115, + 0.3872520495521976, 1.08219359537368, 1.7665014312364222, + 2.284275703177734, 2.443682570893442, 2.2727854517712616, + 1.9504660457088907, 1.7900304403173501, 2.208141593612562, + 3.6028000029935137, 6.236864046585196, 10.25152872848907, + 15.07387471412963, 20.570645895857453, 26.046297377066725, + 30.30056648294753 + ], + "pressure:branch32_seg0:RESISTANCE_10": [ + 171668.76187181904, 189177.5804054492, 195908.9424788415, + 191538.45902631312, 178543.43039894121, 158950.969397962, + 135324.17413298934, 111259.75689351844, 89292.88243003351, + 68827.00239936629, 52081.10277235771, 37078.356958692864, + 22557.576611950084, 8913.921087800321, -5825.501142804245, + -20025.94585155132, -33764.315477048396, -46778.27359901863, + -56363.59066831477, -63845.98874419821, -68847.94034458412, + -71345.39246246034, -72892.47557227965, -73647.06980194188, + -74112.18937608557, -74353.54194541324, -73757.63311501617, + -71890.56708229294, -68445.05090085241, -63547.304880907795, + -57841.2195539518, -52995.864602188274, -50222.17106593033, + -51045.94730172899, -56358.61373185325, -65918.96724436962, + -78149.50465771723, -91454.04468084422, -103234.57594734573, + -110363.0925183195, -112033.55443555824, -107032.3033003382, + -95773.47975810115, -79734.67364702454, -62200.77010619274, + -43822.787330451945, -27141.3016909988, -14139.048287384501, + -3337.5189635580628, 4272.95390967078, 10111.069516180443, + 15450.666929911193, 19734.640884127242, 23788.42422629706, + 26822.316336631455, 27918.763126771115, 26866.5966431692, + 23253.789828216508, 17423.707868849484, 10385.076351326901, + 3401.0884799857863, -2794.4943461765506, -6749.7010936097395, + -8612.240027128732, -8864.545110500927, -8000.659926093639, + -7211.506657993892, -7352.201398568284, -8724.066594675514, + -11219.080018965997, -13979.153402553127, -16306.37415413708, + -17292.591388006356, -16329.519792362415, -13654.308474945827, + -9898.396521839633, -5913.224457895997, -2585.8674897127585, + -852.9380933728556, -483.5163024641586, -1136.11110061035, + -2016.781905344529, -2088.816940704935, -721.1741072406638, + 2193.98802053414, 6131.200046308402, 10008.166471600802, + 12941.63203051269, 13844.756387281195, 12876.533668947797, + 11050.4234740401, 10141.470773329418, 12510.2919652171, + 20411.770721637993, 35335.139012754145, 58080.34133960782, + 85401.48614851554, 116543.6069927229, 147566.07354462004, + 171668.76187181904 + ], + "flow:branch35_seg2:RESISTANCE_11": [ + 27.192906622656153, 31.066218221753957, 33.3441314709538, + 33.88229838959922, 32.75798865396289, 30.19495455627991, + 26.60365523350096, 22.61606599807969, 18.56000495662646, + 14.700553257290718, 11.373618584294395, 8.356945005417677, + 5.605895741599583, 3.0213141858571015, 0.36515088773477594, + -2.207698559647962, -4.761349850113533, -7.1827407246007455, + -9.171695342688837, -10.79066312808879, -11.932277471827142, + -12.629411272726712, -13.043108926754988, -13.243905256707196, + -13.344329736625822, -13.378949522278695, -13.302573086439986, + -13.049649822787579, -12.555205768156632, -11.79755112187893, + -10.857363005040323, -9.9274197946315, -9.21829570191537, + -9.010555092201523, -9.483003944367498, -10.6912275174228, + -12.482060829040533, -14.64945303450809, -16.760312935628534, + -18.361196528488826, -19.174495229617882, -18.918795291785585, + -17.582404345670568, -15.321154063688368, -12.517279852290544, + -9.407786918312949, -6.425308094235106, -3.8435671040794945, + -1.6799777794919621, -0.052735223111491716, 1.2102178968081183, + 2.2370959322952038, 3.084183962940081, 3.8467405031659054, + 4.442863799726974, 4.794760149994301, 4.814492301258739, + 4.421093350637565, 3.6276361555950123, 2.55849992863958, + 1.3629405100152108, 0.21273992509824866, -0.6549342841780061, + -1.2125062554675008, -1.451656162779019, -1.4403020204574626, + -1.3454579922432388, -1.3135262795496583, -1.4403768902374883, + -1.7535665476957087, -2.1746014579154065, -2.5954404008135055, + -2.8644002991322264, -2.8687095408629704, -2.5840354394500333, + -2.063007871710525, -1.4189119020960923, -0.8106234330604632, + -0.377947981141947, -0.16424459408542688, -0.16124448065036492, + -0.2625107939619137, -0.3178022830957611, -0.20127071080897552, + 0.15484020556312936, 0.7131444673143484, 1.3564406765609207, + 1.9305800026584876, 2.246215471042225, 2.2681926760811626, + 2.0682757193586223, 1.8679428892592111, 2.013587039089252, + 2.884879199936879, 4.8024780532515114, 7.953588084042268, + 12.12404872877281, 17.151105993523096, 22.422029817508733, + 27.192906622656153 + ], + "pressure:branch35_seg2:RESISTANCE_11": [ + 155402.838114044, 177538.15537720046, 190556.04231423917, + 193631.57475721624, 187206.33576890876, 172559.03165795133, + 152035.3666073068, 129246.97208160828, 106067.2728257526, + 84011.16253333396, 64998.296509927284, 47758.51988999898, + 32036.741070197328, 17266.296899832952, 2086.775241837967, + -12616.621923890798, -27210.304886824448, -41048.14205886883, + -52414.67954674796, -61666.805189580955, -68190.93707111636, + -72174.93821922751, -74539.14997669721, -75686.6668637361, + -76260.57569268488, -76458.42188177427, -76021.9435361816, + -74576.53008546114, -71750.86637674054, -67420.99888682188, + -62047.98364629035, -56733.51630421184, -52680.99267691223, + -51493.7904116679, -54193.75527783805, -61098.54758028096, + -71332.85548551477, -83719.13344799218, -95782.3389025347, + -104931.11645960005, -109578.98026260319, -108117.69859101936, + -100480.45154207468, -87557.79062970831, -71534.12621558557, + -53763.902762050704, -36719.543352140376, -21965.332531172, + -9600.787386371569, -301.3728342410641, 6916.189523619911, + 12784.62291053603, 17625.586986990253, 21983.46796741963, + 25390.21125665392, 27401.239070355525, 27514.004960045873, + 25265.796841438103, 20731.323872341865, 14621.392105760107, + 7788.973292781981, 1215.7725027050503, -3742.8380846441178, + -6929.267104299878, -8295.968165230552, -8231.081172248325, + -7689.063676026101, -7506.579366890092, -8231.509040310337, + -10021.334685375201, -12427.477614526379, -14832.50062375495, + -16369.560715110129, -16394.18729895881, -14767.323208591808, + -11789.739242083218, -8108.840282479695, -4632.575100831299, + -2159.908454950113, -938.6299309571386, -921.4847927460465, + -1500.20455640716, -1816.1860163578094, -1150.2278929936347, + 884.8854494483605, 4075.4993845947606, 7751.8278496657485, + 11032.936485333788, 12836.73952400715, 12962.335514321143, + 11819.844095773617, 10674.976031579676, 11507.307585995351, + 16486.59415146369, 27445.34557530105, 45453.40366154172, + 69286.87720033959, 98015.6547872534, 128138.08829893566, 155402.838114044 + ], + "flow:branch36_seg0:RESISTANCE_12": [ + 33.572177176727365, 37.77327468241582, 39.930317242561614, + 39.93516505963871, 38.045118805263186, 34.57541410331241, + 30.013569435261434, 25.17394274366687, 20.446817765753394, + 15.942947855829281, 12.187194943508064, 8.789561116681213, + 5.605419019814917, 2.637249000479711, -0.49851780237918386, + -3.510565616779984, -6.442167959046248, -9.260162050499897, + -11.457481913405873, -13.193630511237638, -14.395146785738655, + -15.062559310902985, -15.451551291288022, -15.626759470707404, + -15.704915811751901, -15.72092967279153, -15.590212073451033, + -15.226915092628355, -14.562450754620174, -13.590960463872053, + -12.427245473725286, -11.353106445459376, -10.611684828900964, + -10.539902102674569, -11.330424977369194, -13.000936342065241, + -15.292125569816347, -17.932688415457633, -20.404110684851798, + -22.09512062297102, -22.772018747376254, -22.13062601054624, + -20.202131253679642, -17.226623962642627, -13.760786344379328, + -10.0389467252965, -6.547287368916311, -3.6588279824918097, + -1.2536818709190936, 0.5062463877463673, 1.8559018803854734, + 2.999663899585741, 3.9356652233364624, 4.7928748505894765, + 5.438432547559592, 5.7541808096990135, 5.6597042677688485, + 5.059147005006979, 3.991954286211529, 2.6404990738498073, + 1.2119261828394579, -0.12876904459562816, -1.0620539196380447, + -1.5966804546705051, -1.7842800802042444, -1.697794308211581, + -1.559913237363965, -1.5480101983702192, -1.7514166519824939, + -2.17973997494185, -2.704660010061639, -3.1876967819119737, + -3.4513697768509237, -3.365085670473096, -2.93219857504298, + -2.246049374260511, -1.4571932988761194, -0.7537424239650848, + -0.3086205605478151, -0.13109403080324666, -0.18943727466863555, + -0.33693620679671843, -0.38124139134641294, -0.18249734420323013, + 0.3148030938920586, 1.0363498102486433, 1.8075532753708883, + 2.4553017457402486, 2.742400132214349, 2.664072944556294, + 2.3662670713329526, 2.149311556710555, 2.456190793421847, + 3.742183399947743, 6.353073471158988, 10.4936976342586, 15.73551658223851, + 21.873144475857572, 28.177603892563614, 33.572177176727365 + ], + "pressure:branch36_seg0:RESISTANCE_12": [ + 164907.66445927977, 185543.5968321444, 196139.06250183747, + 196162.87514252227, 186878.90431487624, 169835.59801543283, + 147427.66343691965, 123655.25420756603, 100435.45718304659, + 78312.29656810279, 59863.91182985926, 43174.6200952105, 27534.00692506612, + 12954.255870199735, -2448.736227286072, -17244.016488606703, + -31644.14588271221, -45486.227724337, -56279.53686106945, + -64807.557218992, -70709.44560694405, -73987.79839820221, + -75898.5401007939, -76759.16857627872, -77143.07515453456, + -77221.73577904444, -76579.64653063189, -74795.11953087756, + -71531.24833418352, -66759.25532197606, -61043.04811529205, + -55766.84104885127, -52124.95310924358, -51772.353941537505, + -55655.42891404584, -63861.036973198294, -75115.43559005453, + -88085.9691792346, -100225.67856397723, -108531.97630584611, + -111856.92267989348, -108706.37996485943, -99233.54879866255, + -84617.75681819218, -67593.44576400504, -49311.64426379161, + -32160.495962715784, -17972.286220067817, -6158.1275536548355, + 2486.6992987893063, 9116.252513171346, 14734.450054862047, + 19332.120066492476, 23542.762612495557, 26713.763751940678, + 28264.729844857615, 27800.65789045602, 24850.7003987291, + 19608.613838237612, 12970.220339994132, 5953.022208152872, + -632.5178819084806, -5216.84460603745, -7842.948143679686, + -8764.443819617469, -8339.622796148631, -7662.346334545625, + -7603.878206307849, -8603.017553884929, -10706.956135254284, + -13285.381018568001, -15658.073902750195, -16953.244530128042, + -16529.414094950098, -14403.058109570231, -11032.670136933071, + -7157.782538749579, -3702.4081603530176, -1515.9545827496338, + -643.9382924300398, -930.5222703515669, -1655.0419903392267, + -1872.670548328409, -896.4330982809142, 1546.3233946694347, + 5090.585155417142, 8878.76253774168, 12060.524829875018, + 13470.76176905871, 13086.0159864896, 11623.183511939273, + 10557.490720564856, 12064.89186201397, 18381.73083667274, + 31206.51075895279, 51545.39603725757, 77293.38716930336, 107441.621998662, + 138409.33888560918, 164907.66445927977 + ], + "flow:branch38_seg0:RESISTANCE_13": [ + 39.38143981811242, 44.592385803545575, 47.465244075403184, + 47.80551372934973, 45.8491228831977, 41.95053460952765, + 36.688058478371595, 30.95789021676842, 25.280664869533638, + 19.878059123498325, 15.273735773859581, 11.11452875368126, + 7.261003183901827, 3.6539877397678233, -0.09418760844275607, + -3.7168969279669164, -7.276397064051851, -10.660040204021213, + -13.365366657812002, -15.539669053281274, -17.0586671456318, + -17.943766187586956, -18.466948675283195, -18.713264494197762, + -18.830587683259875, -18.863384868805852, -18.72588427426677, + -18.32289694630799, -17.568499870906727, -16.44908405566764, + -15.087785902309706, -13.795527717226596, -12.866443707676206, + -12.690733706130224, -13.513214436732463, -15.377607067142511, + -18.02142901264738, -21.12741066838064, -24.085002827014797, + -26.20954712351472, -27.165203484480752, -26.581693686271382, + -24.467218856163957, -21.079060567013116, -17.02811528994677, + -12.605299259946044, -8.411732226277707, -4.8745935592835625, + -1.9118652451305982, 0.2879085071988545, 1.985044765760956, + 3.4020479501572454, 4.556352169754779, 5.603178347626812, + 6.409968712649325, 6.836733567295984, 6.782766029964318, + 6.136773417681333, 4.932767546140673, 3.363713462556212, + 1.667917752982343, 0.06344788161290907, -1.1044076754489645, + -1.8131904212021974, -2.090230512754948, -2.031412372348262, + -1.8857845410785357, -1.8614594044855453, -2.0777270607916516, + -2.55781618028129, -3.1669114145711843, -3.7486917458663194, + -4.090089200484576, -4.033204111854314, -3.5674863462330197, + -2.7873865031039995, -1.86372066160574, -1.0160110047972575, + -0.451640791800245, -0.19994770176662474, -0.23207063941076703, + -0.3887558052481162, -0.44859907108218233, -0.24055712019190936, + 0.31286744565034064, 1.141212538493365, 2.053482452844946, + 2.8376202971052806, 3.2260482176675125, 3.190258767386354, + 2.8714801287014486, 2.6100663265028867, 2.9157725681247517, + 4.326879910876436, 7.272967956672056, 12.006227424386058, + 18.09674275083756, 25.3274330798531, 32.83113550041549, 39.38143981811242 + ], + "pressure:branch38_seg0:RESISTANCE_13": [ + 160142.48751850266, 181332.5165343532, 193014.83876706442, + 194398.5268460646, 186442.96965697935, 170589.57204533578, + 149189.99848879216, 125888.5802686654, 102802.45153623873, + 80833.04850659306, 62109.81751361098, 45196.62791485164, + 29526.475342709975, 14858.74281669258, -383.008797512009, + -15114.559615995737, -29589.073720797714, -43348.47489588483, + -54349.53808352807, -63191.22076034599, -69368.14405641347, + -72967.35127010538, -75094.84445960546, -76096.47436796097, + -76573.56274834073, -76706.93072323955, -76147.79201865192, + -74509.0659224073, -71441.35116160923, -66889.30750734112, + -61353.66245373438, -56098.76468383694, -52320.6949867833, + -51606.17980249126, -54950.75305179531, -62532.2044899323, + -73283.16293291417, -85913.46875294302, -97940.35673714978, + -106579.70080521333, -110465.82552703292, -108093.01460370883, + -99494.61747418455, -85716.85569002708, -69243.90659352466, + -51258.76526420004, -34205.85253554126, -19822.270131076177, + -7774.496249235306, 1170.7643177469995, 8072.076797921709, + 13834.24333675149, 18528.158793708273, 22785.020627561342, + 26065.789856858602, 27801.205974810764, 27581.749913443513, + 24954.856018060604, 20058.831491128738, 13678.358223596975, + 6782.497013125045, 258.00736682575314, -4491.013868405713, + -7373.240433492081, -8499.808928916535, -8260.628153421994, + -7668.440481786052, -7569.5236341238215, -8448.964320159057, + -10401.220666821118, -12878.073377268805, -15243.851517257088, + -16632.12573647223, -16400.80561110185, -14506.98959491226, + -11334.75592421706, -7578.7189134697, -4131.553605098121, + -1836.5727662005622, -813.0764766966497, -943.7026590920678, + -1580.8543815867076, -1824.203773996134, -978.2124725682897, + 1272.2584862662409, 4640.678846323719, 8350.374937864752, + 11539.028920991002, 13118.549977298813, 12973.014120270997, + 11676.718088368802, 10613.693050456533, 11856.830889229495, + 17595.022308019914, 29575.12944176572, 48822.67216065013, + 73589.42216146809, 102992.63192506644, 133506.0305406973, + 160142.48751850266 + ], + "flow:branch41_seg2:RESISTANCE_14": [ + 36.03879212499376, 41.15603506052822, 44.18572833259033, + 44.89008866101864, 43.39546642575029, 40.01951476695925, + 35.314306060004675, 30.07499527939229, 24.772750606768735, + 19.752048955294548, 15.406341712040447, 11.475707167828768, + 7.887592017422077, 4.513135139272324, 1.0551286231877948, + -2.3028579783768848, -5.64358487714129, -8.818454610789537, + -11.439273591601133, -13.59628047708727, -15.153655941096703, + -16.13912990587395, -16.76204063566755, -17.10973478260735, + -17.322295996342838, -17.445992079919524, -17.41943270547512, + -17.158572639794873, -16.578921474173484, -15.653030541672017, + -14.479226451543955, -13.30699836460107, -12.413045734050474, + -12.1541586308204, -12.772984511796475, -14.349246612235607, + -16.694510170470597, -19.545944266767272, -22.349523960221337, + -24.515877548443267, -25.673077002479385, -25.447895562773482, + -23.80268046131522, -20.9181499131323, -17.29205044566415, + -13.218307113481934, -9.255233570883867, -5.797812946825831, + -2.8659222337409136, -0.6244516413677828, 1.1292060813240594, + 2.5758414121860804, 3.7727354987223047, 4.845434583335445, + 5.703513108141722, 6.231302838684011, 6.3146069826869065, + 5.849425162876528, 4.848363131660711, 3.467594357296661, + 1.9062942723272593, 0.3950531910937336, -0.7633590350628059, + -1.5216744290539166, -1.8618137155322096, -1.8710307678255367, + -1.7642321656675848, -1.7338378230424554, -1.90798926353327, + -2.3265032373640953, -2.8881441832077694, -3.4544722247059667, + -3.828454633060144, -3.855238486575788, -3.5002849485611325, + -2.8290132628297116, -1.98850601881702, -1.1815074351302892, + -0.599180694892733, -0.30301945481847975, -0.2807588441972838, + -0.40049016590446423, -0.46626592218865986, -0.31049820358346236, + 0.1585713885917501, 0.8975258621388869, 1.7545280090327522, + 2.525524233437058, 2.9648432352345315, 3.0198358569268495, + 2.7785915997695843, 2.5300285922954138, 2.727885312501468, + 3.874284066279464, 6.396425891924278, 10.555595976533256, + 16.06235049366278, 22.706473223178435, 29.719573806064634, + 36.03879212499376 + ], + "pressure:branch41_seg2:RESISTANCE_14": [ + 147519.80010067037, 168466.5247383449, 180868.15419115545, + 183751.3555617254, 177633.3266164738, 163814.33645366263, + 144554.21681718304, 123107.82437593558, 101403.82077122487, + 80852.27449792225, 63063.72427134051, 46974.216603604276, + 32286.764596612047, 18473.893111171717, 4319.02276394766, + -9426.429927298213, -23101.23241754352, -36097.12159243733, + -46825.08080950422, -55654.48950498153, -62029.39009363751, + -66063.29116846851, -68613.08989704307, -70036.32769243911, + -70906.4175570124, -71412.75032918544, -71304.03321138925, + -70236.23869124948, -67863.51699225637, -64073.51080104049, + -59268.70646318584, -54470.35327592194, -50811.08209666332, + -49751.36362483885, -52284.441590995, -58736.65200793728, + -68336.66329839181, -80008.61352433334, -91484.67838549994, + -100352.34651304598, -105089.18207467873, -104167.43306442523, + -97432.97309562616, -85625.54713150507, -70782.6115877486, + -54107.30793326858, -37885.015722126715, -23732.54364270671, + -11731.255408315132, -2556.1062365119114, 4622.2485706964435, + 10543.849774398346, 15443.169811959973, 19834.114824252632, + 23346.54032428382, 25506.974427476962, 25847.968393874235, + 23943.811094959194, 19846.10243088841, 14194.116846216446, + 7803.151365655052, 1617.095478038003, -3124.7043981642582, + -6228.763350718493, -7621.076372023069, -7658.805097976494, + -7221.639823770665, -7097.2247953022115, -7810.089577209242, + -9523.218517400537, -11822.217878197474, -14140.403215359216, + -15671.248364948173, -15780.884356710758, -14327.931250198597, + -11580.173651972867, -8139.673754254871, -4836.336912826557, + -2452.6631200126003, -1240.3681357143778, -1149.2474117576326, + -1639.3509807878754, -1908.594921729511, -1270.98135712568, + 649.0899990663853, 3673.8977074685213, 7181.917203714812, + 10337.883377829266, 12136.174816145041, 12361.2794903228, + 11373.779563358827, 10356.32134645214, 11166.220405003214, + 15858.844797253725, 26182.88275763573, 43207.86898187304, + 65749.00528724078, 92945.80071542974, 121652.95584108119, + 147519.80010067037 + ], + "flow:branch43_seg0:RESISTANCE_15": [ + 24.120953494256852, 26.96377919292747, 28.331145626654635, + 28.14331201087409, 26.645785688992007, 24.076045818287486, + 20.78575632180724, 17.326424021979285, 14.014447387567623, + 10.88283507584729, 8.27567080899045, 5.920826653079302, 3.693817086194303, + 1.6071381212326117, -0.6093682127674517, -2.7367725468451085, + -4.8092206324019635, -6.780829487117211, -8.28225870631021, + -9.466193296377192, -10.268597069517359, -10.691824257435252, + -10.938507534089727, -11.043322598276678, -11.088796535586688, + -11.094403176759002, -10.98831480101146, -10.710494825544483, + -10.213600142588179, -9.502567250677496, -8.663333997787873, + -7.912334453216465, -7.423732738513769, -7.427952914103528, + -8.061149598861265, -9.31548269042357, -10.98874062022567, + -12.876059865985377, -14.598164580930359, -15.720475226212837, + -16.094363070740293, -15.521852953220924, -14.043280407415786, + -11.847406457050113, -9.36643710971175, -6.725881002816531, + -4.283912007613358, -2.314799892554403, -0.6721238126641677, + 0.5101221916461726, 1.4159894623088434, 2.2069683565241736, + 2.8441162138206684, 3.43497926390153, 3.878930287262674, 4.07081433634726, + 3.966522006024845, 3.502070539026788, 2.7121408641230387, + 1.732920066256277, 0.720996786189478, -0.20636118894793254, + -0.8331678694753004, -1.1721816140623256, -1.2689952784460738, + -1.184925887350839, -1.0824079222535419, -1.0851726790421807, + -1.2486919100577976, -1.5714544075483574, -1.9491190007841932, + -2.2852910671690747, -2.4523050863226303, -2.3592459635575085, + -2.022610370227792, -1.517008297702167, -0.9549072286690938, + -0.46527787000132004, -0.17660485022817402, -0.07875479840285525, + -0.13860657448034155, -0.25072383701684464, -0.2734768698420267, + -0.11191969454618779, 0.26435143141221673, 0.7933117683596143, + 1.3414253415619686, 1.7827945440371094, 1.955733100247578, + 1.8678989799483623, 1.637092572338007, 1.4927603356518861, + 1.7569020325151168, 2.7515323165759478, 4.709233055480488, + 7.765897667622829, 11.548710332077784, 15.942199578796691, + 20.42193113361974, 24.120953494256852 + ], + "pressure:branch43_seg0:RESISTANCE_15": [ + 167677.4040290384, 187439.37709421924, 196944.65863370767, + 195638.92861391985, 185228.83739683, 167365.2272102669, + 144492.69850176718, 120445.06457025006, 97421.77718672653, + 75652.29684758696, 57528.53004673965, 41158.772729722885, + 25677.660715976115, 11172.060347798468, -4236.03818311811, + -19024.741960646523, -33431.416019093755, -47137.103673538964, + -57574.32597768708, -65804.47652500626, -71382.40617423726, + -74324.48042521803, -76039.3053162289, -76767.92982396284, + -77084.0430224265, -77123.01772703473, -76385.54176252271, + -74454.2693406081, -71000.09367820072, -66057.33096680007, + -60223.380279367724, -55002.78839477451, -51606.261506025825, + -51635.59816088642, -56037.28055561481, -64756.80802500073, + -76388.50185530807, -89508.24821103955, -101479.50167483327, + -109281.27184780262, -111880.36243447429, -107900.5442109156, + -97622.21063640446, -82357.53862997048, -65111.0189293139, + -46755.12792763433, -29779.720138194978, -16091.388631159332, + -4672.285285922359, 3546.127015799151, 9843.28572371685, + 15341.795044890385, 19770.944113128702, 23878.343200724306, + 26964.479705691054, 28298.36641264684, 27573.37570227555, + 24344.729856985843, 18853.514209772038, 12046.436645585416, + 5012.026968597417, -1434.5249023178592, -5791.787024809134, + -8148.449444310674, -8821.452023678525, -8237.04157487455, + -7524.385408196243, -7543.6046833007895, -8680.312656811522, + -10924.004130701614, -13549.348879304715, -15886.257302594024, + -17047.259382165816, -16400.356591604177, -14060.225949307189, + -10545.520653226304, -6638.06118733741, -3234.390606183257, + -1227.6729786906283, -547.4659264267189, -963.5270262327175, + -1742.912946172831, -1901.0812158828464, -778.0125211757078, + 1837.645505227739, 5514.72635341349, 9324.951396527671, + 12393.140309833458, 13595.326955099648, 12984.745898242112, + 11380.28945456894, 10376.960346083932, 12213.147876414863, + 19127.34486450836, 32736.34990833703, 53984.82946257489, + 80281.14513910556, 110822.59416162269, 141963.5587192014, + 167677.4040290384 + ], + "flow:branch44_seg0:RESISTANCE_16": [ + 13.063340506227496, 15.695771311502622, 17.871988478735037, + 19.39771291992778, 20.16846485340848, 20.155873614878843, + 19.432021796615594, 18.183870025440743, 16.562709471629514, + 14.720895797223989, 12.843332577502107, 10.944150937120485, + 9.06444641790958, 7.212143863175041, 5.329181773752041, + 3.4630029127059956, 1.5977886341272023, -0.22718635842980683, + -1.8993574217587246, -3.4112368563581588, -4.7043362326874405, + -5.758872873555302, -6.6100717937294755, -7.277820222494758, + -7.803864294261173, -8.214217622082078, -8.508291088225386, + -8.673499980595029, -8.689843961128277, -8.545292880138097, + -8.258851883522365, -7.893927106393122, -7.534442266816177, + -7.301214051038953, -7.30018236479573, -7.603243545361709, + -8.210323738257543, -9.082396670256209, -10.08329707431055, + -11.033200872239638, -11.779940291484758, -12.155730700208734, + -12.072306265329594, -11.511711766458138, -10.556060730739315, + -9.276314128380928, -7.831080036674728, -6.36438116057342, + -4.9425986649873845, -3.6600503856314845, -2.5141535738079805, + -1.489375436158516, -0.5818478499964924, 0.23736426177002895, + 0.9492248510690261, 1.526364620018031, 1.9330421180652955, + 2.1291722167006784, 2.1007721019100805, 1.8727582532506442, + 1.4914180799160057, 1.0235614910766706, 0.5691382240607339, + 0.17446324441267966, -0.12257229156279155, -0.31408970575011846, + -0.4376440734828407, -0.5404285599888843, -0.6660649890292306, + -0.8427513755009663, -1.063213677930353, -1.3015963318297787, + -1.5068435928709965, -1.627014717567498, -1.6327584826091257, + -1.5206577064856641, -1.314788313727387, -1.0653014779025636, + -0.831136516981107, -0.6485947604799975, -0.5374128472953829, + -0.4814204328264315, -0.4379642766625479, -0.35831601011176145, + -0.20304077988260377, 0.036749231652739994, 0.3374397634078353, + 0.6511148150811994, 0.9050995658726858, 1.0631097263742724, + 1.123294619173685, 1.1415184484431944, 1.2354133246937995, + 1.560597982212501, 2.279380354966419, 3.5276448457134073, + 5.310552992510838, 7.625912576053199, 10.30395286827163, + 13.063340506227496 + ], + "pressure:branch44_seg0:RESISTANCE_16": [ + 95062.80477250117, 114219.18024933133, 130055.65849259081, + 141158.45755234174, 146767.27105188774, 146675.64376485368, + 141408.1255484375, 132325.2414199046, 120527.94736955721, + 107124.94576565032, 93461.79232343675, 79641.32018455566, + 65962.58436237757, 52483.25447302843, 38780.81309400869, + 25200.50439320398, 11627.215023704182, -1653.250363350107, + -13821.751311749847, -24823.799330200196, -34233.77019522512, + -41907.70403844411, -48101.935654210705, -52961.18574345868, + -56789.243725433655, -59775.412406539945, -61915.4047375531, + -63117.64092473457, -63236.57716695223, -62184.66925830409, + -60100.218919813015, -57444.636848107504, -54828.64156672428, + -53131.42420235283, -53123.91655238626, -55329.31308388974, + -59747.07635285781, -66093.20955229203, -73376.82890385856, + -80289.34253328975, -85723.415356684, -88458.0673580519, + -87850.98215175273, -83771.49839510203, -76817.16173091817, + -67504.35989739915, -56987.29450781342, -46314.02844295054, + -35967.62189078284, -26634.432065896046, -18295.664132850754, + -10838.284912881443, -4234.145817845228, 1727.3156483864989, + 6907.572887606184, 11107.457683987259, 14066.877105366453, + 15494.128983835079, 15287.45944425176, 13628.187379023062, + 10853.149368468188, 7448.525601279505, 4141.657017718856, + 1269.5807275088264, -891.9667842841468, -2285.651848739319, + -3184.765267161528, -3932.734867257774, -4846.999585420549, + -6132.758266754187, -7737.077223728203, -9471.80377992683, + -10965.401860535143, -11839.895192533288, -11881.692955865843, + -11065.928091557249, -9567.802716728573, -7752.270284114874, + -6048.23616252006, -4719.867560870747, -3910.78932378212, + -3503.328769349755, -3187.095407170964, -2607.489630991892, + -1477.5413692708457, 267.42662280584176, 2455.5717839560098, + 4738.206167176895, 6586.47022859332, 7736.320761286179, 8174.290261637739, + 8306.906289157405, 8990.185599364504, 11356.576156052935, + 16587.203677584785, 25670.908074001745, 38645.2502038371, + 55494.27714020865, 74982.55591168243, 95062.80477250117 + ], + "flow:branch46_seg0:RESISTANCE_17": [ + 31.618798210561394, 35.186086290300786, 36.785353958900004, + 36.35328575684648, 34.22652435436712, 30.74699683438236, + 26.385061708859443, 21.84602556913957, 17.576267854932148, + 13.55955334236804, 10.233608496972858, 7.246286217075294, + 4.407592999748323, 1.7451430016114995, -1.0934403077838748, + -3.8336722918732247, -6.492437457180593, -8.999216703498538, + -10.902239832462604, -12.382971665182831, -13.362438247931212, + -13.862231370443942, -14.140610071192022, -14.248861144545755, + -14.292116945763201, -14.286628258562251, -14.1360260269742, + -13.75835754237219, -13.091705518563613, -12.148844862036633, + -11.047425858428015, -10.079063240411083, -9.472457168510157, + -9.527607150877643, -10.411096712094134, -12.101806439432726, + -14.328983510822006, -16.79786375651519, -19.020409422131163, + -20.427685570974663, -20.831402490396624, -19.991801945755846, + -17.97621346458446, -15.05306683477597, -11.776661857844745, + -8.328900289299721, -5.186603521050889, -2.6712122077604876, + -0.6003420103128191, 0.8727672510695624, 2.0016917122809077, + 2.986607752285492, 3.7826806983023284, 4.52826458962025, + 5.079682819965605, 5.297180723880185, 5.124433110624513, + 4.480223998315699, 3.420052695159019, 2.120201754787661, + 0.8032354857954312, -0.38718379006403364, -1.1782439777967058, + -1.5837794791837816, -1.6744219132740732, -1.5401705748214367, + -1.3952137332189085, -1.399945185226479, -1.6230632234123064, + -2.0545646555007893, -2.5540197642388187, -2.989599403226078, + -3.190618319298268, -3.0461954869180743, -2.5822394292928905, + -1.9040050273238631, -1.1631717454671684, -0.5321114700612067, + -0.17529723260729968, -0.07045741666253133, -0.16947667575732434, + -0.32573123063621895, -0.353405965850408, -0.12998538164013668, + 0.3763716780529004, 1.0804304215765959, 1.7949868058457052, + 2.3564365133993874, 2.5600015073403783, 2.4187417555411743, + 2.098348975006665, 1.9095045981953955, 2.280864478169129, + 3.6317215899804745, 6.260444589055296, 10.317280227131803, + 15.313304455538528, 21.088267190121446, 26.88314549825374, + 31.618798210561394 + ], + "pressure:branch46_seg0:RESISTANCE_17": [ + 173658.09809452726, 193250.50825374262, 202034.0736449227, + 199661.05042892363, 187980.3616881339, 168869.95377939558, + 144913.149574958, 119983.66370529083, 96533.12016989323, + 74472.35118697291, 56205.4565260073, 39798.35901181124, + 24207.568308371865, 9584.748052243925, -6005.439010213981, + -21055.45677261154, -35658.03903436448, -49425.87781681858, + -59877.74176829943, -68010.2796385092, -73389.74734549299, + -76134.73222816925, -77663.65547818375, -78258.19659231986, + -78495.76792949592, -78465.62272999148, -77638.47879706058, + -75564.23200534043, -71902.81762220856, -66724.39852827831, + -60675.13858810233, -55356.656544890655, -52025.02907323907, + -52327.92613416112, -57180.26479249623, -66466.05211826338, + -78698.24803417557, -92257.93632577626, -104464.69543941668, + -112193.79690223471, -114411.10800712393, -109799.81845808568, + -98729.71832807879, -82675.08902801748, -64680.27932360221, + -45744.33771412777, -28486.082773862345, -14670.944433670862, + -3297.223728203757, 4793.449133980862, 10993.77570935597, + 16403.17315548671, 20775.398590154393, 24870.325907567476, + 27898.848386465845, 29093.39955446969, 28144.627821637, + 24606.475344312785, 18783.757765530045, 11644.661566867859, + 4411.563837954243, -2126.507153996789, -6471.201306036976, + -8698.500503549836, -9196.33070588647, -8458.989838371, + -7662.851754599706, -7688.838035021674, -8914.256341685325, + -11284.166719762485, -14027.2951489159, -16419.604027054265, + -17523.648602488793, -16730.443426708465, -14182.284384418785, + -10457.256775084708, -6388.42095546731, -2922.4850751673043, + -962.7748598504577, -386.9691976517669, -930.8069518460964, + -1788.9948133251812, -1940.9911621608258, -713.9111994519143, + 2067.1244160524952, 5933.985564062374, 9858.502297657282, + 12942.120079084125, 14060.148330853355, 13284.315559748187, + 11524.64080739664, 10487.46175035367, 12527.06015745711, + 19946.294603765058, 34383.87801211129, 56665.00193399426, + 84104.37707284564, 115821.871152664, 147648.7463861235, 173658.09809452726 + ], + "flow:branch47_seg0:RESISTANCE_18": [ + 21.501250753196288, 26.01108112786679, 29.80577596277556, + 32.556303325653474, 34.04156577856744, 34.19572390942474, + 33.12753163613263, 31.133183426771293, 28.456184470179796, + 25.382850934788664, 22.20957076528718, 18.98590047405656, + 15.801545780781433, 12.654945412445496, 9.470414450329992, + 6.306552816063648, 3.135925039822412, 0.037621796287553036, + -2.834226556697893, -5.442030575161969, -7.680797369101783, + -9.524833246995264, -11.014251523589847, -12.185582630385902, + -13.110065887939633, -13.831527383049037, -14.35722464765328, + -14.668600265634609, -14.73178975815283, -14.523099845202248, + -14.069897007805205, -13.465806607279829, -12.849157804851087, + -12.42119817739252, -12.361290468678781, -12.801376300101992, + -13.76147110727255, -15.185236911461628, -16.85436612815104, + -18.4856697373855, -19.80751156864633, -20.533050393785626, + -20.50075258269368, -19.66499533256417, -18.13041502298267, + -16.025934731260993, -13.61675179759494, -11.126154080312029, + -8.702288224142368, -6.498367921313713, -4.519676151091878, + -2.758912638663211, -1.1940203269801808, 0.21737739919572618, + 1.4473669219939453, 2.4599667148887336, 3.19083739393651, + 3.5723201253176535, 3.5763142181198955, 3.2356766787011866, + 2.620221887546924, 1.8449164805205058, 1.0698629276503846, + 0.38213547485857274, -0.14331832168186198, -0.4908675151042487, + -0.7150347906902748, -0.8917634484990565, -1.097652093999905, + -1.3844158927254078, -1.7491905456039218, -2.15197285795051, + -2.5087110957811576, -2.7342842966197742, -2.771880774529132, + -2.6083274170825907, -2.2783392171641434, -1.8645513089073713, + -1.461467831209847, -1.1380231876559193, -0.9341845503585188, + -0.8277798856164342, -0.7531106934233861, -0.6286589118218846, + -0.38399799902061876, 0.0028114496313022667, 0.5010302326183098, + 1.0319725527916552, 1.4779733749464803, 1.7703656084839219, + 1.8935202254622898, 1.9293771037418588, 2.0644252055331958, + 2.5543929929961693, 3.6764354759264166, 5.660312996661718, + 8.560151178198309, 12.376442408752629, 16.824432272895784, + 21.501250753196288 + ], + "pressure:branch47_seg0:RESISTANCE_18": [ + 92139.26684206158, 111465.23392527574, 127726.63211048863, + 139513.46151654102, 145878.25373492218, 146538.8672647107, + 141961.34505275963, 133414.9686606331, 121943.23038696291, + 108773.08033557785, 95174.62917296763, 81360.24132251026, + 67714.33252533128, 54230.212261294706, 40583.548099600586, + 27025.458167189157, 13438.373300116013, 161.2206083782927, + -12145.505393894739, -23320.722737632157, -32914.50560131601, + -40816.748860087784, -47199.35002137805, -52218.85287023245, + -56180.53912451065, -59272.2166263066, -61524.98606272369, + -62859.32337559423, -63130.109181476066, -62235.81071497246, + -60293.701502452415, -57704.99411747729, -55062.47023797208, + -53228.53570249909, -52971.81331818602, -54857.71225124508, + -58972.004607863935, -65073.26536048548, -72225.98145388023, + -79216.6035473075, -84881.08970262762, -87990.23977864548, + -87851.8340333782, -84270.36516122874, -77694.23123032045, + -68675.90604596018, -58351.83923959547, -47678.88582385538, + -37291.89831905841, -27847.443054020492, -19368.15916921754, + -11822.762811596856, -5116.7329187156265, 931.5269339367411, + 6202.398575541055, 10541.690442452851, 13673.6891013574, + 15308.456287037228, 15325.57216493453, 13865.838798666122, + 11228.431613271987, 7906.016903446443, 4584.681463730399, + 1637.56438599445, -614.1617172123135, -2103.5135805578407, + -3064.1371582048237, -3821.472121990234, -4703.766322699709, + -5932.634655740504, -7495.802746035925, -9221.844983417883, + -10750.574640383988, -11717.223026706273, -11878.335138282948, + -11177.460262786153, -9763.362489774465, -7990.157994254359, + -6262.825173595349, -4876.768489587207, -4003.259184929004, + -3547.283487960314, -3227.303748022623, -2693.9907772750735, + -1645.5458570616306, 12.047899481163915, 2147.063853588486, + 4422.309916143432, 6333.556347153788, 7586.544200637098, + 8114.298434418641, 8267.955843182159, 8846.677203643372, + 10946.33518313837, 15754.621590731342, 24256.127961833507, + 36682.79872040236, 53036.74389667593, 72097.70596383027, 92139.26684206158 + ], + "flow:branch48_seg0:RESISTANCE_19": [ + 33.86541605092014, 38.014997459178836, 40.10600806027647, + 40.02313081003983, 38.04414364086549, 34.508045102277784, + 29.915827545866374, 25.02395070831063, 20.300232234137834, + 15.834923037981284, 12.075622698639629, 8.689291035888742, + 5.513615276680594, 2.5314411816223203, -0.6034371119601882, + -3.636197460434027, -6.6007063685930385, -9.400387845064166, + -11.588293362035126, -13.31905843397518, -14.4963569930162, + -15.145397896056677, -15.519067219876534, -15.683255198115424, + -15.75834900949018, -15.770856338357094, -15.632347438952777, + -15.25748703342966, -14.575541697701688, -13.588217593099493, + -12.411516237495656, -11.335762654160918, -10.611214927685834, + -10.56552064609546, -11.39383964150229, -13.102451855645873, + -15.434619129517982, -18.09303394328618, -20.551682600300392, + -22.215986396099765, -22.835521934024424, -22.127489679315442, + -20.131885720044256, -17.106162594285887, -13.608647109884286, + -9.862976615178138, -6.384199259398811, -3.522937321775275, + -1.1482998835070994, 0.5798073103611715, 1.9106388215551393, + 3.0453375889418526, 3.967861214817101, 4.818696164412654, + 5.4631428548960415, 5.765300387516309, 5.650877568825497, + 5.029231035580095, 3.9448581495232196, 2.574865887621676, + 1.1410822403674077, -0.18273818636952932, -1.10676287575161, + -1.6260579334532315, -1.7902713070252976, -1.6914597423956963, + -1.5506863042784351, -1.543363569422127, -1.7575982292391061, + -2.197094594313068, -2.7280981245682256, -3.2124629768498707, + -3.466453949625149, -3.3637052522440087, -2.913687980261501, + -2.213943396791674, -1.4200183103915154, -0.7183392357382734, + -0.28627516732056685, -0.12404811266314374, -0.19271920851843072, + -0.34495622514264207, -0.3858175718133062, -0.17621118274051775, + 0.33411302955418676, 1.0685886075979913, 1.8448358651378327, + 2.4819351190729204, 2.757381462841724, 2.664721412056247, + 2.3538602241918936, 2.1388333188392283, 2.4688997949545697, + 3.800134768333552, 6.477411173898744, 10.686848450391413, + 15.982875062657039, 22.186301870112082, 28.514423149456135, + 33.86541605092014 + ], + "pressure:branch48_seg0:RESISTANCE_19": [ + 166348.06368085154, 186730.9472489088, 197002.06171287654, + 196594.9658697513, 186874.11427452526, 169504.67921445819, + 146947.55198585073, 122918.48828059777, 99715.42411712215, + 77781.67502631043, 59315.86520711902, 42682.09008287809, + 27083.06384832217, 12434.524302078287, -2964.103407943512, + -17861.12433389187, -32422.8918874183, -46175.021547777375, + -56922.08710034895, -65423.66339786704, -71206.59355221999, + -74394.70431713766, -76230.18061486667, -77036.6774911776, + -77405.54082059137, -77466.97724102995, -76786.61686441454, + -74945.28993326047, -71595.55148729228, -66745.78224839688, + -60965.78557742605, -55681.647762129985, -52122.64493865191, + -51898.19308923961, -55966.92387904335, -64359.68459330317, + -75815.36875218751, -88873.59180977344, -100950.55678049369, + -109125.67305225448, -112168.85247045993, -108690.97420027223, + -98888.50037270942, -84026.046521638, -66846.1327225808, + -48447.27315906775, -31359.401678598682, -17304.78672002987, + -5640.487683928882, 2848.033027012306, 9385.122210849673, + 14958.800754530463, 19490.267860483556, 23669.59777523826, + 26835.14161342066, 28319.349585422304, 27757.300848106745, + 24703.752149819138, 19377.276029390152, 12647.827919778061, + 5605.034377853967, -897.6161231076059, -5436.456503538454, + -7987.251308416615, -8793.872927450127, -8308.507195618371, + -7617.023328613761, -7581.053808490415, -8633.381669462655, + -10792.202609825992, -13400.509826041958, -15779.726286010886, + -17027.338494584365, -16522.633434137864, -14312.133444866222, + -10874.964494796193, -6975.177743861719, -3528.5065079773776, + -1406.193258991206, -609.3285053327357, -946.6432399045439, + -1694.4365904394326, -1895.148900833481, -865.5552615589432, + 1641.1744486862096, 5248.943213277322, 9061.89587375056, + 12191.348856264272, 13544.350569427763, 13089.201280680372, + 11562.240661120593, 10506.021263404773, 12127.3189053753, + 18666.389909045738, 31817.261740491154, 52494.15934829534, + 78508.42035214536, 108979.86166130648, 140063.8064140825, + 166348.06368085154 + ], + "flow:branch50_seg0:RESISTANCE_20": [ + 8.740606034158581, 10.889685614180653, 12.884868252814275, + 14.549601067423925, 15.736942967544536, 16.360527685496294, + 16.407926973080848, 15.949679561312884, 15.066730326922762, + 13.87898797929828, 12.516289979176117, 11.040798841390657, + 9.518588354329076, 7.975706654719796, 6.407063148382721, + 4.834419668513134, 3.2538762113369972, 1.6912147824990154, + 0.1983880932252752, -1.197271397922442, -2.4505777343217496, + -3.537745443604671, -4.457486349381921, -5.216249073253777, + -5.835754705988646, -6.335149685982484, -6.7244946821967355, + -7.003609962597175, -7.164063832639083, -7.196368721198394, + -7.105159761957432, -6.916541330344711, -6.6782938546167, + -6.465822010665412, -6.357420099078216, -6.4238723067953005, + -6.702360561859974, -7.198229706101336, -7.8551279057079375, + -8.578491401211378, -9.257084359131888, -9.763256300351323, + -9.999974088370854, -9.908737250005554, -9.486267958336354, + -8.760678448739649, -7.813950841591203, -6.734519556083458, + -5.602655168168452, -4.496201072098891, -3.4500527872514795, + -2.4847183736532514, -1.6040198038101563, -0.8020190650228288, + -0.08653389649826979, 0.5313513403295314, 1.0274165209500126, + 1.3736425282507683, 1.5510092709909464, 1.5597991770871267, + 1.4164478834301486, 1.1593948295844998, 0.8481940231222374, + 0.5282929644567099, 0.24345272677352928, 0.017418318185193772, + -0.15311396406884545, -0.2868182202919539, -0.41087552235590735, + -0.550117673242822, -0.7145351131322809, -0.8985328078477282, + -1.0779093670078304, -1.2209333521047532, -1.2989717603446849, + -1.2957364998677185, -1.2125487165765518, -1.0716235771469, + -0.9055180387849868, -0.7467223638452207, -0.6204214469821773, + -0.5313873797994693, -0.4659294216266653, -0.3977218652023995, + -0.29733872287368057, -0.14678987576382796, 0.05451135700672836, + 0.2863671835274641, 0.5091165047393884, 0.6898410045139911, + 0.8088740562828494, 0.8791993320588878, 0.9555833942069895, + 1.1286210161457675, 1.5112643947695874, 2.2131117215805745, + 3.299281253859317, 4.801967652867001, 6.6568029724691, 8.740606034158581 + ], + "pressure:branch50_seg0:RESISTANCE_20": [ + 68067.95447518502, 84804.03094915289, 100341.626452881, + 113305.82561657223, 122552.31654500915, 127408.51713648973, + 127777.64171856258, 124209.014572955, 117332.99841852786, + 108083.38898293386, 97471.30269586781, 85980.83359076544, + 74126.53496090292, 62111.25811634742, 49895.35977247085, + 37648.31141276635, 25339.741541443876, 13170.42895801298, + 1544.9582838178296, -9323.817443516858, -19084.010079598473, + -27550.388938590204, -34712.92227538155, -40621.829088499384, + -45446.26357751231, -49335.32969381635, -52367.37545515782, + -54541.00118836248, -55790.54460430522, -56042.12071644734, + -55331.8258854976, -53862.94938357135, -52007.58394686699, + -50352.94767280992, -49508.76177149585, -50026.26202628671, + -52195.0047648936, -56056.61323963458, -61172.244417940456, + -66805.4777759638, -72090.05808840676, -76031.90016627307, + -77875.35307507761, -77164.841133909, -73874.83808376594, + -68224.2695174811, -60851.57574636988, -52445.44471679137, + -43630.98799290202, -35014.41532668168, -26867.47751149869, + -19349.882202734763, -12491.393223348601, -6245.7679699614455, + -673.8875204291328, 4137.9280455542175, 8001.06316447262, + 10697.317407138124, 12078.570757658865, 12147.022639104463, + 11030.666485710204, 9028.851565957095, 6605.358018241013, + 4114.110773746281, 1895.901618047721, 135.6461193459727, + -1192.3834909170253, -2233.6128050148604, -3199.7159283214487, + -4284.071904390591, -5564.48184045125, -6997.374097405305, + -8394.279004811155, -9508.086224629338, -10115.81465886246, + -10090.619888389167, -9442.790410222451, -8345.328067493205, + -7051.771970913159, -5815.141841330348, -4831.566443284627, + -4138.208704925699, -3628.4512236323517, -3097.2810933907695, + -2315.5418026149346, -1143.134302340727, 424.51021732703265, + 2230.1003311843597, 3964.773029665396, 5372.175099400187, + 6299.151594757496, 6846.81358195553, 7441.658704205743, 8789.198786275694, + 11769.055328788256, 17234.730329261864, 25693.335829445365, + 37395.58954027757, 51840.22250968846, 68067.95447518502 + ], + "flow:branch51_seg2:RESISTANCE_21": [ + 16.477250432361334, 19.48882587901224, 21.80958368541458, + 23.25065821099449, 23.733697040704573, 23.2749565939046, + 22.010328972719474, 20.216721579192548, 18.08134996224492, + 15.782419790930096, 13.543073371306736, 11.329336562812955, + 9.172931389372154, 7.064162793254332, 4.909725135751921, + 2.784706591424773, 0.6627124006021765, -1.3975122268586886, + -3.2422295849752727, -4.879893019874638, -6.238180235956545, + -7.3075743719026285, -8.148777226212236, -8.790629951796303, + -9.289730885283339, -9.673307269594776, -9.931447979235907, + -10.040973296461026, -9.973013393852552, -9.714365915552818, + -9.297938995144433, -8.816082141851147, -8.380434045238854, + -8.148275092869012, -8.242950510546205, -8.735880911891126, + -9.597330003970303, -10.755124964521073, -12.010196522597443, + -13.124225612698757, -13.91663839906655, -14.190705567589667, + -13.869961684086984, -12.968847678890146, -11.628567245214391, + -9.950897199518295, -8.15363474160416, -6.407849109177318, + -4.771893296693756, -3.3504019658176314, -2.1072885201859677, + -1.0085825951161278, -0.043082934164683805, 0.8308615855917246, + 1.578318679648308, 2.1610642938763394, 2.531491524298204, + 2.6403032914568265, 2.479153219107045, 2.0933407419013035, + 1.5508578048232624, 0.9409740037630858, 0.3939470303466987, + -0.047159769074494665, -0.34794445556543724, -0.514299531979071, + -0.6097904161023577, -0.7008922796995761, -0.8415663188450714, + -1.0598694747143624, -1.3337416582469948, -1.6207917880872615, + -1.8487189640047175, -1.9529731788790372, -1.904896205926702, + -1.7122787153077712, -1.4171659183354062, -1.0922222027191695, + -0.8134431492212983, -0.6184935183880571, -0.5223782968319286, + -0.49045602920806336, -0.4584068306412181, -0.36181559072947933, + -0.15537183233981797, 0.1603013460574165, 0.5421955289664905, + 0.9204050543074397, 1.1976186078026694, 1.3380778682207202, + 1.3550850402507362, 1.3394818228959802, 1.4583065834693085, + 1.9161470289853026, 2.9119694902324285, 4.595865696951227, + 6.929424551095693, 9.88356480697994, 13.192327869590471, + 16.477250432361334 + ], + "pressure:branch51_seg2:RESISTANCE_21": [ + 105386.95511583818, 124648.71045098931, 139492.06066782665, + 148709.0387655541, 151798.51001410265, 148864.44895365555, + 140776.00877978362, 129304.26337827212, 115646.6259177785, + 100942.88321669448, 86620.23262748263, 72461.37871962407, + 58669.21259591963, 45181.72557245909, 31402.14349696902, + 17810.723322196747, 4238.646630016869, -8938.35770297051, + -20736.997665330626, -31211.34006955343, -39898.81826643793, + -46738.563299667265, -52118.81820410908, -56224.04830058459, + -59416.25126500705, -61869.57000060785, -63520.61387423222, + -64221.12757570195, -63786.46238473001, -62132.177266089246, + -59468.749569204934, -56386.83813143703, -53600.473586433436, + -52115.606606134104, -52721.141736786856, -55873.87855383392, + -61383.62650444802, -68788.77495696158, -76816.09544354262, + -83941.32147552405, -89009.5196614416, -90762.42767885663, + -88710.97975111699, -82947.53872011481, -74375.23022203085, + -63645.00927098353, -52149.88641895876, -40984.004535833286, + -30520.583925127918, -21428.85811204171, -13478.020596010663, + -6450.800096680795, -275.55442382374554, 5314.11311539396, + 10094.77889125887, 13821.965422937907, 16191.183398133393, + 16887.133300010497, 15856.432485493193, 13388.811908545791, + 9919.141700179529, 6018.381859692762, 2519.648419229968, + -301.62947920905793, -2225.4202466592974, -3289.4117811262545, + -3900.162559018223, -4482.841571470767, -5382.5795896699055, + -6778.826189409632, -8530.48710103443, -10366.432926686366, + -11824.233859959853, -12491.034083010782, -12183.538253446117, + -10951.5747701156, -9064.060878385459, -6985.7512166221895, + -5202.706422906918, -3955.8267885372757, -3341.0828067267407, + -3136.910963913584, -2931.9272826426222, -2314.1387318793986, + -993.7437309866583, 1025.2724404060996, 3467.831972922567, + 5886.824779708504, 7659.856781596239, 8558.221095111223, + 8666.997379280792, 8567.200658113095, 9327.192730856583, + 12255.497467128103, 18624.684939125695, 29394.727834675497, + 44319.952357504444, 63214.35757582327, 84376.8971512028, + 105386.95511583818 + ], + "flow:branch52_seg0:RESISTANCE_22": [ + 31.023059898458985, 33.851072994022964, 34.72167027185893, + 33.60601837855869, 31.03927321790133, 27.392369208594104, + 23.104519755535637, 18.811317906222214, 15.030275782276377, + 11.473831545761112, 8.592627855483334, 6.019870535324049, + 3.429695926275509, 1.0058622500714824, -1.6592449965334668, + -4.238924317768567, -6.663490806615211, -8.966473722883494, + -10.58333009087313, -11.802296585882685, -12.584659551982353, + -12.915629006856815, -13.114362466824247, -13.196241317416307, + -13.240663128561456, -13.246893313667597, -13.086498578814247, + -12.677808766194477, -11.978072580572555, -11.028697657237366, + -9.966557321095896, -9.124570425430328, -8.717100299626123, + -9.003400180889065, -10.121450203117375, -11.97672373229361, + -14.245582651418939, -16.584420157862482, -18.563436807133638, + -19.57503833079318, -19.562076361793167, -18.352263357017094, + -16.080452003332514, -13.043043283960833, -9.889149218724729, + -6.685034445509157, -3.864872253462269, -1.7765160591046452, + -0.04953112044226234, 1.1271181493431752, 2.0360917737834328, + 2.9112828208141357, 3.607451868809364, 4.279256245874561, + 4.759516036460697, 4.863469384938333, 4.58097774174117, + 3.8449481986862537, 2.740621485042686, 1.4583712584617685, + 0.2592491391440112, -0.7694486504104219, -1.3702081113741096, + -1.584272201125332, -1.5491047377893017, -1.3507545873487379, + -1.2092045685833, -1.2692678039615253, -1.5587957164257533, + -2.038782806133331, -2.5317414030676852, -2.9131286093075754, + -3.024976828910981, -2.77480309919604, -2.2305282625051666, + -1.53091754015462, -0.8299889396396126, -0.2838584690989068, + -0.0519746724870997, -0.056422407496982505, -0.21706966375985753, + -0.3816101437818649, -0.3632304299851785, -0.06433364980394336, + 0.505491739774304, 1.2346158912744942, 1.8991022034918288, + 2.359873797884052, 2.434880165175098, 2.180673071321568, + 1.8232322784749873, 1.704716229865208, 2.253454173799572, + 3.8623320792443523, 6.739866424897837, 11.018047574633645, + 15.986242664956764, 21.5672946180956, 26.999119943958917, + 31.023059898458985 + ], + "pressure:branch52_seg0:RESISTANCE_22": [ + 181644.4750773411, 198202.89826115893, 203300.37046582878, + 196768.06826253142, 181739.40639324003, 160386.25919897293, + 135280.28429964127, 110142.97035085027, 88004.42521387002, + 67180.93299233998, 50311.071230650545, 35247.20730326785, + 20081.36264579808, 5889.468060609601, -9715.117960847057, + -24819.511199532353, -39015.696508083936, -52499.99252230033, + -61966.918969925944, -69104.14301705496, -73684.99064338177, + -75622.86437647276, -76786.47735127411, -77265.88979106898, + -77525.98588067979, -77562.46451003001, -76623.33028171324, + -74230.39268221013, -70133.33673266979, -64574.61008980217, + -58355.62574562625, -53425.671441124556, -51039.875283250585, + -52716.20224186686, -59262.545834751414, -70125.4390321036, + -83409.93413794071, -97104.16393150981, -108691.59088432064, + -114614.66321677706, -114538.76902507915, -107455.13997902145, + -94153.35794444905, -76368.89328391924, -57902.390179312184, + -39141.837610570255, -22629.38259536356, -10401.756889189823, + -290.01182997961274, 6599.438780625915, 11921.610011028824, + 17045.979394662234, 21122.149240642928, 25055.660436059046, + 27867.650544298, 28476.312342281417, 26822.283164947235, + 22512.72439069049, 16046.732742214119, 8538.973350089618, + 1517.9409751396004, -4505.232451608691, -8022.765450987626, + -9276.141466861964, -9070.230913925709, -7908.862271494729, + -7080.066564689459, -7431.745441546061, -9126.972986858893, + -11937.366392254702, -14823.709837036737, -17056.78675161118, + -17711.674154874574, -16246.871006476047, -13060.063601530437, + -8963.742257476832, -4859.704547337593, -1662.0321394627279, + -304.3191784470875, -330.3613062664795, -1270.9740837284755, + -2234.3822459272965, -2126.766379676219, -376.68276716402426, + 2959.726797671749, 7228.853511767379, 11119.516385571118, + 13817.400303791086, 14256.573365977982, 12768.154290774904, + 10675.28706876853, 9981.358568213238, 13194.298107614626, + 22614.509510185868, 39462.88673164538, 64512.25232527327, + 93601.74872625552, 126279.61015337988, 158083.72822740793, + 181644.4750773411 + ], + "flow:branch53_seg0:RESISTANCE_23": [ + 30.144087770590744, 34.22193112720467, 36.81326472106298, + 37.58548614375148, 36.83082701363653, 34.726159313994785, + 31.564993962106467, 27.86722245345715, 24.14891306959473, + 20.317209504541452, 16.849262923417918, 13.569960700119953, + 10.271652562861997, 7.132068673577856, 3.8232481683202395, + 0.5936256677323407, -2.5254901586585516, -5.5784954396463995, + -8.052340130718909, -10.13955819544315, -11.805623107883493, + -12.959904432764976, -13.854493715482544, -14.512088531519604, + -15.003636070867316, -15.371756162750296, -15.531787060979045, + -15.428885356125164, -15.023410258566415, -14.333491379597007, + -13.442504610701361, -12.616223371190209, -12.050684238995236, + -11.993228476187726, -12.636531471551717, -13.992475865033382, + -15.856886632789967, -18.010868321878277, -20.09455259106482, + -21.553709811314086, -22.238392726883994, -21.90095320985841, + -20.50946031720838, -18.21621475541305, -15.5182608744856, + -12.486087843096614, -9.466953421220744, -6.901143621371111, + -4.561009357677651, -2.6598453592475915, -1.078932868706421, + 0.40192641736399615, 1.6417272403507548, 2.772212901603827, + 3.709144905360319, 4.287981377339759, 4.490993994609118, 4.24325494030561, + 3.5727733099937447, 2.6132618409498702, 1.565261203804535, + 0.5244293212650658, -0.25502174043589476, -0.750725831766871, + -1.0230334881421879, -1.0968381569240413, -1.133196946546035, + -1.2652268050133508, -1.5466213371632342, -1.983294676606069, + -2.4630090471739403, -2.894029717140198, -3.1504084244659345, + -3.114535198849605, -2.806314454020749, -2.302018234594168, + -1.7136809136612652, -1.1605364667407523, -0.8081310503155923, + -0.6381470105344512, -0.6156221056563407, -0.6514804259525857, + -0.5964977822859057, -0.3491383944058337, 0.12045023543552945, + 0.7588587672325683, 1.4133754305743904, 1.9690075530026063, + 2.2491697581470245, 2.2510589531893714, 2.1112616008360225, + 2.0736511685388272, 2.4912178192485452, 3.731415492572744, + 6.065045751146996, 9.719315005699299, 14.23705754939318, + 19.567332606114157, 25.27825924568509, 30.144087770590744 + ], + "pressure:branch53_seg0:RESISTANCE_23": [ + 136720.28197836733, 155215.58022135458, 166968.7260570707, + 170471.18171149955, 167048.3808673636, 157502.53680150313, + 143164.88553204917, 126393.42549644914, 109528.81472058737, + 92149.89797052214, 76420.82240302105, 61547.35440910976, + 46587.683975246335, 32347.916698005636, 17340.56680116969, + 2692.424109809046, -11454.509065033719, -25301.593975178163, + -36521.86198620925, -45988.562207200586, -53545.0975502639, + -58780.4083488885, -62837.87062537138, -65820.43056749286, + -68049.8733257749, -69719.50364091717, -70445.33318658684, + -69978.61645557459, -68139.56031642943, -65010.392686851235, + -60969.26982357621, -57221.62269226471, -54656.58671532843, + -54395.99272581786, -57313.73127518192, -63463.696775368284, + -71919.84140416137, -81689.35196787742, -91140.02445149262, + -97758.11779442038, -100863.53740422567, -99333.06063978079, + -93021.86283204192, -82620.71278761412, -70383.98437266685, + -56631.3853551179, -42937.92371743795, -31300.542549760954, + -20686.726041714293, -12063.884974817429, -4893.563446600104, + 1822.9608915277197, 7446.15040071951, 12573.534568232191, + 16823.04474492186, 19448.3915880797, 20369.167246959747, + 19245.532203853407, 16204.523358100201, 11852.602689358313, + 7099.334197227916, 2378.580012995224, -1156.6660941399878, + -3404.9611382750445, -4640.028520239509, -4974.773933799781, + -5139.681361329604, -5738.510545235918, -7014.791986409182, + -8995.349585477987, -11171.122311202875, -13126.041895591681, + -14288.862592823947, -14126.157469383365, -12728.204163736274, + -10440.939017571318, -7772.500515515447, -5263.681362214339, + -3665.325881329032, -2894.353277096404, -2792.190246990921, + -2954.8277664752814, -2705.4507541988664, -1583.5377104774443, + 546.3091229839888, 3441.848545142624, 6410.447344768959, + 8930.549496564767, 10201.241646167176, 10209.810201330569, + 9575.751092326667, 9405.166765867742, 11299.064855083316, + 16924.054302307464, 27508.371512822705, 44082.524517869424, + 64573.01138149943, 88748.78721931402, 114651.03068616238, + 136720.28197836733 + ], + "flow:branch56_seg0:RESISTANCE_24": [ + 31.874228770328493, 35.98754110428263, 38.199487007998975, + 38.35202045800664, 36.67778080545295, 33.46254464031138, + 29.173586700733814, 24.54782624560158, 19.99311893788097, + 15.665578413412902, 12.004989303754796, 8.696284632255463, + 5.617094859121678, 2.7371207328118436, -0.27662800388658176, + -3.1774485233660075, -6.022673137976709, -8.739039056192393, + -10.876328434835266, -12.58783074213895, -13.777672443341574, + -14.451391485473474, -14.848504480067959, -15.029391386095252, + -15.111223026226934, -15.130423166183755, -15.009609746689895, + -14.671327465064413, -14.048026400044563, -13.131634342784421, + -12.02547175643034, -10.989543998308253, -10.260434789015852, + -10.151671604074155, -10.858504589217572, -12.405512208458047, + -14.561883715521072, -17.074291026879013, -19.442964343783178, + -21.103715362771684, -21.8094455836174, -21.265328196106452, + -19.49128836257808, -16.702022468986407, -13.423022578168403, + -9.864790593630993, -6.504961673451892, -3.70907602493948, + -1.3660896963676328, 0.35947176006613407, 1.6836651240457927, + 2.803600693529662, 3.712146377554356, 4.5391104549657015, + 5.174243388645814, 5.495943612663, 5.42892329304704, 4.8838906238848185, + 3.8910382880306007, 2.615400991586455, 1.2496166599665388, + -0.034543591714281764, -0.949953638272839, -1.4926602168669862, + -1.6937052238698806, -1.6289249964420203, -1.5046803633514527, + -1.48900689894602, -1.6724400081995894, -2.0697094744925906, + -2.5634465964459228, -3.027479024124528, -3.291724234479717, + -3.2273027822390867, -2.834163377541059, -2.1938662899843293, + -1.447116704465252, -0.7691933513895909, -0.32951659376233294, + -0.14374166572388236, -0.1825409459463942, -0.31573907370707827, + -0.3611016837576366, -0.18313662735666117, 0.2760821549820443, + 0.9526734161303905, 1.6879470162565051, 2.3119294028527935, + 2.6050234038111344, 2.5547581715760024, 2.28498116294542, + 2.077397966597575, 2.3472563000581124, 3.5285956485193957, + 5.958007405748614, 9.841402236014439, 14.785060032423107, + 20.61835789501338, 26.66855631033424, 31.874228770328493 + ], + "pressure:branch56_seg0:RESISTANCE_24": [ + 162958.95688574197, 183988.51942406414, 195297.22903252748, + 196077.06568621946, 187517.4123900536, 171079.31955373293, + 149151.75804325292, 125502.27293718007, 102216.05142153199, + 80091.23407051538, 61376.2468877506, 44460.29055841035, 28717.74327675123, + 13993.698253951658, -1414.2777001350285, -16244.901191388604, + -30791.287196327474, -44678.87518290185, -55605.89871079412, + -64356.059623404646, -70439.19857194342, -73883.62865150579, + -75913.89328414403, -76838.68872730288, -77257.0580253268, + -77355.21992288968, -76737.55387799845, -75008.06488725581, + -71821.39981958158, -67136.28901029992, -61480.964688033535, + -56184.720249020495, -52457.10452981032, -51901.046050922916, + -55514.773202766104, -63423.94489574344, -74448.52697994733, + -87293.36403251177, -99403.35218962342, -107894.044016283, + -111502.13321776464, -108720.2995762013, -99650.41171072243, + -85390.11811203165, -68626.02930265511, -50434.349223561054, + -33257.017025437315, -18962.879522178515, -6984.217674300832, + 1837.8215037714422, 8607.841599444553, 14333.581145877957, + 18978.57688894394, 23206.48164572925, 26453.637870340786, + 28098.350070704688, 27755.70456064722, 24969.19148529298, + 19893.172794513343, 13371.39858340963, 6388.74210517962, + -176.6062392732733, -4856.696458389625, -7631.3172525120135, + -8659.172227899095, -8327.979327060719, -7692.770991419613, + -7612.639439730348, -8550.452503621776, -10581.517107445068, + -13105.778539745561, -15478.172893835657, -16829.142799704405, + -16499.784159097635, -14489.834749439526, -11216.276470206538, + -7398.473241528502, -3932.548363415453, -1684.6738718916308, + -734.8881152918682, -933.2518240587806, -1614.2354524141044, + -1846.1545889893034, -936.2972819414966, 1411.4870140001865, + 4870.601490124122, 8629.733036980126, 11819.881403155616, + 13318.342527026669, 13061.358432707419, 11682.10686759534, + 10620.824996665657, 12000.492339975643, 18040.162486680078, + 30460.679659240104, 50314.774805372486, 75589.52963968286, + 105412.62408193671, 136344.6359532416, 162958.95688574197 + ], + "flow:branch59_seg0:RESISTANCE_25": [ + 27.730105317749345, 30.97266435178521, 32.50297481020914, + 32.24442343008068, 30.478863733359947, 27.484526384542377, + 23.672249753193935, 19.688601709872568, 15.880192379130035, + 12.292829090797014, 9.320679464542492, 6.636955036006725, + 4.10545583948857, 1.7316986302983555, -0.7963386347111047, + -3.2211359071498755, -5.585706704263093, -7.834017504794739, + -9.54197783043205, -10.885097761623497, -11.787064858056876, + -12.25607392196849, -12.524450075752792, -12.632945382769545, + -12.677389839946311, -12.678643046538227, -12.553783174412905, + -12.232320063721266, -11.659027263451772, -10.838568081495286, + -9.872200838758118, -9.00823339611213, -8.448102826004257, + -8.459914648108795, -9.196930178115295, -10.650090155104026, + -12.58329083322743, -14.760758661103068, -16.741069554684735, + -18.026005781602116, -18.44517978824478, -17.769710702893175, + -16.052098991061726, -13.512367628078492, -10.646214132680004, + -7.605209705239827, -4.804041560050812, -2.549428857735176, + -0.6779901760685966, 0.6612823855840377, 1.6848364327953385, + 2.5752701502484006, 3.2951756820166267, 3.96486631273729, + 4.465583794317261, 4.6791300357684635, 4.551467154911719, + 4.009025901180462, 3.0926272269362483, 1.9612808549928642, + 0.794237585704934, -0.27227763354388673, -0.987502957947612, + -1.3705001657522338, -1.4725904054328027, -1.3669937709020348, + -1.2425345366108784, -1.241719665168437, -1.4286461622734472, + -1.8006495423826512, -2.2371420878163595, -2.6249200976152913, + -2.815801119151286, -2.705901449742481, -2.3143505007104954, + -1.7279136347428374, -1.0772780423434722, -0.5137631444223398, + -0.18311705028348024, -0.07454342138371071, -0.14935663814328598, + -0.28340159678947724, -0.3128133966226878, -0.12777907323141577, + 0.3065627913195225, 0.917177988935364, 1.5495576096792019, + 2.0575239218556143, 2.2530891273862568, 2.147040170835754, + 1.8750052276181628, 1.7029725002182494, 2.0036073143829176, + 3.1484473092594265, 5.4056285753471665, 8.9268600309176, + 13.28815851320982, 18.34698266468307, 23.486922227508774, + 27.730105317749345 + ], + "pressure:branch59_seg0:RESISTANCE_25": [ + 169776.15500662726, 189628.55725582814, 198997.8049604627, + 197414.8373270245, 186605.2881634294, 168272.6105176092, + 144932.14134608678, 120542.45944819329, 97225.66762733254, + 75262.21892324602, 57065.38447678652, 40634.418587798194, + 25135.443915240485, 10602.236512035302, -4875.542661498519, + -19721.240247856498, -34198.204311819456, -47963.372478329424, + -58420.27243121084, -66643.45568340497, -72165.70321259288, + -75037.1872773603, -76680.30658624272, -77344.56356798272, + -77616.6724894626, -77624.34518288555, -76859.89698620075, + -74891.75549217284, -71381.79957215262, -66358.58009078668, + -60442.045951578446, -55152.44936395029, -51723.078526555604, + -51795.39580474589, -56307.73578438265, -65204.63360267628, + -77040.55612180033, -90371.99180267219, -102496.3442123539, + -110363.30070368925, -112929.67217292514, -108794.14716057171, + -98278.15708813284, -82728.78139639909, -65180.902853143816, + -46562.508399427206, -29412.499347250687, -15608.748108582695, + -4150.96026164444, 4048.6676668405817, 10315.325098745534, + 15766.96010356257, 20174.54499193889, 24274.69171063663, + 27340.308944799148, 28647.73491286677, 27866.125438234063, + 24545.056537838278, 18934.452409815607, 12007.841969345498, + 4862.679096152135, -1667.005919656673, -6045.936477230041, + -8390.81734134025, -9015.859625097202, -8369.349617766775, + -7607.354305780758, -7602.36529694821, -8746.81323840927, + -11024.384953364251, -13696.788292751851, -16070.93937315514, + -17239.598688681417, -16566.743569853388, -14169.492861493884, + -10579.063069854623, -6595.579851081269, -3145.4886393217266, + -1121.1247976534453, -456.3882941874889, -914.4283967964541, + -1735.1118170774484, -1915.1840609560916, -782.3208565194161, + 1876.91504889486, 5615.3754424591, 9487.087406200128, 12597.085235854, + 13794.423228894964, 13145.143903076998, 11479.623842560233, + 10426.36224623425, 12266.983557445665, 19276.20801587538, + 33095.68515518579, 54654.24508724868, 81356.07252985645, + 112328.46529397777, 143797.48302556688, 169776.15500662726 + ], + "flow:branch60_seg2:RESISTANCE_26": [ + 30.55186837537063, 34.04124930767741, 35.613876160991396, + 35.25047088034551, 33.232653178988485, 29.896663688865843, + 25.717095533216057, 21.378106054362974, 17.262332344742983, + 13.430690747947143, 10.256637533156262, 7.380711062179935, + 4.671066614306728, 2.0965031370916396, -0.6535226713186472, + -3.314658705872662, -5.932117359881174, -8.379788190058136, + -10.25932026844624, -11.740422906673148, -12.717728310017296, + -13.240561397088909, -13.544376333570082, -13.681179019828596, + -13.760736836485009, -13.791875799011128, -13.68419234275017, + -13.356139414504657, -12.743592415459746, -11.854732117278385, + -10.80767934433347, -9.87515265348528, -9.28497131267312, + -9.334475470128451, -10.181209770717906, -11.810399773102224, + -13.967323075322629, -16.370620178009133, -18.525132474913303, + -19.908722547548013, -20.318763330227412, -19.517140779756605, + -17.58091146067836, -14.770563078948967, -11.604290837257375, + -8.26958876493977, -5.249032077568345, -2.81381032126623, + -0.8199195598905706, 0.5958402289982542, 1.6958358762469494, + 2.649505536963843, 3.4383800984742146, 4.185742859478729, + 4.746379351083798, 4.995625603340308, 4.862695893860768, + 4.269564274770935, 3.2698768101925495, 2.034188190417024, + 0.7671330501912497, -0.37205216120722134, -1.127432684689407, + -1.5188070631319452, -1.5959134149919885, -1.4574967112449342, + -1.3126005076728786, -1.3138887113472997, -1.5311865757622083, + -1.9544763772247973, -2.448822340931354, -2.8842184188158777, + -3.089618678468409, -2.9607909009313853, -2.5189584649258903, + -1.864205763794514, -1.1450168335629585, -0.5346910809566346, + -0.18615033086303576, -0.08542091230840093, -0.1871967689269675, + -0.3447123386498137, -0.3782280695494759, -0.1671893961932511, + 0.3228250752733528, 1.0077766353336546, 1.7113897177535902, + 2.264641271977548, 2.4695930676637197, 2.3399732904644055, + 2.0260042052610236, 1.8304759003531328, 2.1709251366250584, + 3.4558961069148992, 5.981740312797824, 9.883075026194149, + 14.716851237536169, 20.322303640705805, 25.92348366526209, + 30.55186837537063 + ], + "pressure:branch60_seg2:RESISTANCE_26": [ + 166225.2493246431, 185210.11821498274, 193766.39659295138, + 191789.19727279473, 180810.74428986036, 162660.4407494407, + 139920.43185026874, 116313.05049217828, 93920.13158327834, + 73073.10606179449, 55803.85822020147, 40156.64513313046, 25414.1318964625, + 11406.561208999503, -3555.657141645593, -18034.247956309526, + -32275.200817645982, -45592.3796235987, -55818.45432728637, + -63876.77181836944, -69194.05167639378, -72038.65872907935, + -73691.64154980102, -74435.95153282452, -74868.8061702781, + -75038.22565539385, -74452.34628641524, -72667.49047598375, + -69334.77195322925, -64498.700297489755, -58801.94204687931, + -53728.29222017895, -50517.259777981184, -50786.59980047777, + -55393.47419840148, -64257.49884711611, -75992.79140862697, + -89068.54360770948, -100790.71847851266, -108318.49393109817, + -110549.42562066417, -106187.99323037438, -95653.44269621081, + -80363.02396625116, -63136.110497706104, -44992.81148292981, + -28558.700734329897, -15309.254296925968, -4460.981946977304, + 3241.821069861421, 9226.628560958228, 14415.312119628987, + 18707.385817441816, 22773.60395368062, 25823.890091751582, + 27179.978037521025, 26456.739974651427, 23229.65578934875, + 17790.60060606081, 11067.520813158186, 4173.7834480848005, + -2024.2448840961515, -6134.0857065323, -8263.45805249259, + -8682.974869106967, -7929.883411381017, -7141.538578617036, + -7148.547379989631, -8330.81195530998, -10633.828318179752, + -13323.443894554573, -15692.327548807289, -16809.860164248643, + -16108.93971061497, -13705.03740479033, -10142.687971547712, + -6229.756763201968, -2909.123499475716, -1012.7984573439682, + -464.754308036186, -1018.4918711130657, -1875.4955910823041, + -2057.8464920704023, -909.6366456263288, 1756.4123400341125, + 5483.0663844746505, 9311.253211426214, 12321.359709994003, + 13436.452342591623, 12731.222812350114, 11022.993749992214, + 9959.172027731103, 11811.473120626912, 18802.68613866811, + 32545.187177215288, 53771.395913958084, 80070.79096364559, + 110568.68758477403, 141043.33923797958, 166225.2493246431 + ], + "flow:branch62_seg0:RESISTANCE_27": [ + 26.12190932027245, 30.136733048368924, 32.66751621016973, + 33.5423033732319, 32.804413247939785, 30.614318764200824, + 27.312837912728124, 23.52926800729685, 19.59698409638693, + 15.721459345700472, 12.322739174914945, 9.227599586406809, + 6.379050078669012, 3.730901794987127, 1.0313021968176757, + -1.5821955399938745, -4.144048229601571, -6.600599194813308, + -8.665610112304412, -10.369567099049073, -11.616413448967627, + -12.42003898786532, -12.927302544757527, -13.202733008908067, + -13.351791842513453, -13.416610787793575, -13.36562691117167, + -13.144031344390633, -12.692958314793236, -11.986923638232264, + -11.092906950397737, -10.189841458450331, -9.463909207201981, + -9.189269658701722, -9.549408128659993, -10.613323213402852, + -12.257643924433081, -14.301960560308169, -16.36486933344429, + -17.996741243587312, -18.92714462684323, -18.86358029061778, + -17.752014591434275, -15.717384510077558, -13.088449084206102, + -10.097647010916228, -7.159856712031917, -4.546326031034502, + -2.298710710956947, -0.5604009595146019, 0.8105301098754797, + 1.9232170871949115, 2.8333843630236193, 3.647905955856502, + 4.284322411282736, 4.680121002554408, 4.764983950988334, + 4.452597877411091, 3.745433408879779, 2.754266995303652, + 1.6189720216074759, 0.4823516536603235, -0.4130863226109104, + -1.0184236472069514, -1.328324929934657, -1.3850209635538278, + -1.3364234642165747, -1.321952463949098, -1.4378204678133306, + -1.7213426837109571, -2.1133112152682245, -2.5184279331211203, + -2.795318803213937, -2.8351728398116314, -2.604833545447292, + -2.1416972479340277, -1.540992221853498, -0.9515408642569093, + -0.5088583174198756, -0.2576200458508156, -0.20903607999167842, + -0.27346176591927907, -0.3131401409459082, -0.20811907389482326, + 0.11320280433879186, 0.6282185895930803, 1.2349033007708372, + 1.8019741176392952, 2.145255901305407, 2.2148982615523347, + 2.0710869131637026, 1.9037494192131472, 2.0296323176632796, + 2.8087353626703493, 4.558792956313349, 7.481159645536301, + 11.419255625088963, 16.24323983797006, 21.363769693122368, + 26.12190932027245 + ], + "pressure:branch62_seg0:RESISTANCE_27": [ + 144306.65309054145, 166485.95736140068, 180466.89739528444, + 185299.53065039168, 181223.16498263177, 169124.30953430137, + 150885.76325970577, 129983.98678186197, 108260.66161341105, + 86850.89409280557, 68075.16347434453, 50976.51921410622, 35240.1256532571, + 20610.819233889564, 5697.277581168581, -8740.606979072596, + -22893.186058008683, -36464.04121984888, -47871.89086992808, + -57285.15108579964, -64173.17069681239, -68612.68200644242, + -71414.98505528885, -72936.56021861883, -73760.01386159536, + -74118.09660875042, -73836.44366728154, -72612.27149097042, + -70120.38476085057, -66219.99984291692, -61281.13590128401, + -56292.28316978432, -52281.97702164779, -50764.77115570263, + -52754.303261175315, -58631.745953795085, -67715.55431967646, + -79009.081449083, -90405.31811128443, -99420.3549042691, + -104560.23180283318, -104209.07995921765, -98068.39844269009, + -86828.38326163877, -72305.21545459604, -55782.96847941975, + -39553.577269304325, -25115.510713753294, -12698.889849682444, + -3095.8528285490506, 4477.654598336028, 10624.530451310957, + 15652.615945255791, 20152.320905201912, 23668.110181103537, + 25854.64139151716, 26323.454291437785, 24597.723289260903, + 20691.097001453094, 15215.543662481836, 8943.773252594685, + 2664.6808967476327, -2282.0347441894874, -5626.13192453962, + -7338.136064459158, -7651.344978660125, -7382.875228156826, + -7302.932311660318, -7943.028088462103, -9509.304946383418, + -11674.677554195054, -13912.68538691394, -15442.32834847993, + -15662.496122706836, -14390.020507029672, -11831.49202431161, + -8512.9852970473, -5256.6478091720555, -2811.113069254204, + -1423.1841221865645, -1154.7891353924306, -1510.6993789855176, + -1729.8967366490126, -1149.7232698356777, 625.3722733018659, + 3470.501369632539, 6822.041989342309, 9954.741465643956, + 11851.151282417712, 12235.880277427997, 11441.415596152914, + 10516.984177589244, 11212.405769246165, 15516.446161516727, + 25184.38241219085, 41328.56815506592, 63084.001243471976, + 89733.39381992252, 118021.00926133587, 144306.65309054145 + ], + "flow:branch64_seg2:RESISTANCE_28": [ + 15.723717851058467, 18.50812370544324, 20.584548922696438, + 21.784786986098894, 22.04654305282036, 21.405585002754194, + 20.013892845501537, 18.161461339885992, 16.025390706747825, + 13.788128082393726, 11.662563872823965, 9.5968852036003, + 7.616689149215316, 5.69858750710801, 3.7421698090801967, + 1.8205125232284214, -0.09699702268571152, -1.955161144259469, + -3.600344300667916, -5.043034377767831, -6.21601986374401, + -7.113765413333253, -7.799589740467556, -8.305725399525926, + -8.689304147763002, -8.977241591227337, -9.158716369532645, + -9.208466457846802, -9.09652634875867, -8.808274949970874, + -8.377125417487509, -7.892963280102232, -7.466051666770991, + -7.250709953085945, -7.3629537946566455, -7.868195976612835, + -8.728816254711106, -9.86823919743526, -11.083895180750574, + -12.139899218725207, -12.862074974139741, -13.062377890376832, + -12.67790477631635, -11.73406538724123, -10.379439360351121, + -8.72587255075447, -6.988467469402602, -5.3330772744221, + -3.8152403991418193, -2.526296000583247, -1.4227273743450117, + -0.4640225218723117, 0.3707644782886198, 1.1225260668786994, + 1.7587948160211222, 2.2442603489753785, 2.529894346374388, + 2.568322021487614, 2.352957339449641, 1.9314116702478241, + 1.3710100306427422, 0.761199296759943, 0.23124295270689038, + -0.1820130530075153, -0.448078216854597, -0.5777363261123184, + -0.6389438818437978, -0.7002599001116494, -0.8161645840565773, + -1.013587391998745, -1.269056643263117, -1.5375985335533193, + -1.7466690798282754, -1.8323803097940439, -1.7673678982298566, + -1.5618832691324416, -1.2601765768290545, -0.936927264741856, + -0.666259996673221, -0.48577602743910986, -0.4076281790890116, + -0.39380723424680675, -0.3784776921052876, -0.2964469727338942, + -0.10304864281437706, 0.19902893937021612, 0.5654378780557764, + 0.9249631197170202, 1.1795948995585102, 1.295946199737358, + 1.2888647091207155, 1.2504672978653577, 1.3475797474504827, + 1.7815307548755053, 2.7447243627624487, 4.377312166154688, + 6.635910362032588, 9.475136905709777, 12.62689218558758, + 15.723717851058467 + ], + "pressure:branch64_seg2:RESISTANCE_28": [ + 114422.54909151958, 134684.85719078488, 149795.14272290713, + 158529.3555873218, 160434.17203583688, 155769.87732869943, + 145642.4401861628, 132162.1719126045, 116617.84268980403, + 100337.13256191739, 84869.25928789147, 69837.1771063467, + 55427.15764466999, 41469.00338461918, 27232.020616504316, + 13247.99169852549, -705.8538378227023, -14227.838742075197, + -26199.946882270608, -36698.49930698729, -45234.39333815336, + -51767.3478971694, -56758.13751086152, -60441.320638680954, + -63232.64890889689, -65327.98899145544, -66648.59312122282, + -67010.62784967571, -66196.0321701561, -64098.40741366656, + -60960.90335682026, -57437.6230195624, -54330.95858454687, + -52763.90249520708, -53580.708456366694, -57257.389691402095, + -63520.181160481465, -71811.83831401524, -80658.24841542379, + -88342.86060578165, -93598.18200046066, -95055.79975241113, + -92257.96312212606, -85389.58060255011, -75531.87617598199, + -63498.75962941175, -50855.546357847714, -38809.1609135768, + -27763.7601998413, -18384.025386649853, -10353.282498251816, + -3376.7230047899093, 2698.077968596857, 8168.697455053799, + 12798.86780495384, 16331.633039159367, 18410.210790248464, + 18689.851558657996, 17122.628327072398, 14055.012227275094, + 9976.93192043919, 5539.298321616055, 1682.7704718935224, + -1324.5211908731137, -3260.695228097895, -4204.225982859919, + -4649.6374699380995, -5095.83824616775, -5939.284402744938, + -7375.943413519217, -9235.010284410382, -11189.20762602653, + -12710.628009636133, -13334.35437711361, -12861.25469902033, + -11365.929275148577, -9170.389445553412, -6818.082527339452, + -4848.418669120919, -3535.024723391333, -2966.33759106457, + -2865.761648741211, -2754.2075427191667, -2157.264497620057, + -749.8918832640011, 1448.3469368674735, 4114.729351729898, + 6731.018641787171, 8583.991176981537, 9430.687389842278, + 9379.154907805283, 9099.73437151776, 9806.428178626044, + 12964.318756462097, 19973.543224051053, 31853.994135809273, + 48289.96464824481, 68951.20657926626, 91886.7410789534, 114422.54909151958 + ], + "flow:branch66_seg0:RESISTANCE_29": [ + 20.804418316481808, 24.408683341840675, 27.04489700642659, + 28.487362643698248, 28.683787988873508, 27.703287668869187, + 25.76301490955724, 23.243616290502686, 20.411925269289636, + 17.478275620438136, 14.713455859808645, 12.059333079603771, + 9.525683549584144, 7.091713543632299, 4.624844189380337, + 2.211058202601453, -0.18463358526894239, -2.4986430414554563, + -4.541003184338319, -6.333681613861523, -7.796323493008204, + -8.920848052364008, -9.791128640007589, -10.44377871425333, + -10.947994410816122, -11.33542382791008, -11.58871649256983, + -11.675683277789759, -11.55776998426018, -11.21791421430616, + -10.695897101110308, -10.109579876874514, -9.597279449070761, + -9.35266800103953, -9.527622844187524, -10.204205561021485, + -11.337336533176693, -12.828997104101536, -14.427532344415914, + -15.829238783558022, -16.811620293436533, -17.132329750708436, + -16.69812363462286, -15.532733930951165, -13.823195045529511, + -11.69778489899099, -9.436498380485585, -7.263360836129231, + -5.245205640466356, -3.515334547599708, -2.023097168755922, + -0.7159293355243965, 0.4198407637534016, 1.4434143731817828, + 2.311262118170017, 2.970833444701888, 3.3632896340716827, + 3.4258329013437465, 3.150162312682922, 2.59747441097244, + 1.8610948466309882, 1.0562605624273447, 0.349614558642446, + -0.20371583157597922, -0.5662141616138632, -0.7504226959793032, + -0.8430013282605082, -0.9337648071254218, -1.0936149345312558, + -1.3582390822538362, -1.6968048621754095, -2.052782460943192, + -2.3311939082461457, -2.4476627103608153, -2.366803516326342, + -2.101047853883937, -1.7074419211999212, -1.2810602717415966, + -0.9229394121230771, -0.6797846918146934, -0.5685269486334873, + -0.542269084975461, -0.51457538496002, -0.4004099638003162, + -0.14144592882179455, 0.260408034874835, 0.7459695365313668, + 1.2228770284465047, 1.564655615792811, 1.7247060805154508, + 1.7240390539416806, 1.684212289450988, 1.8244513226341266, + 2.4101766471277966, 3.6950124614409408, 5.866018271698642, + 8.854357420693935, 12.607895146719802, 16.765226762444403, + 20.804418316481808 + ], + "pressure:branch66_seg0:RESISTANCE_29": [ + 111229.78141831497, 130499.80400898325, 144594.18844325535, + 152306.2587879559, 153356.4370662614, 148114.2411723118, + 137740.6699612813, 124270.8313221904, 109131.3369829416, + 93446.72594332145, 78664.75545235323, 64474.62082765255, + 50928.59040623733, 37915.491572035055, 24726.498018502967, + 11821.312032729858, -987.1342240662519, -13358.869982124434, + -24278.24628068297, -33862.711793525, -41682.65340573767, + -47694.86768800473, -52347.7792985816, -55837.140260121116, + -58532.90424943718, -60604.276239890605, -61958.492796033315, + -62423.456361153156, -61793.0388380013, -59976.016971263496, + -57185.07859874982, -54050.36290031985, -51311.374299989526, + -50003.57143413098, -50938.958747795186, -54556.27438527275, + -60614.50242288682, -68589.59101850778, -77136.07968571794, + -84630.2330173159, -89882.48659878914, -91597.14366289909, + -89275.68239212643, -83044.98466077342, -73905.02055993179, + -62541.621572876786, -50451.766362732626, -38833.195231656886, + -28043.22947212545, -18794.56024165762, -10816.387771363356, + -3827.680365293377, 2244.6576334120246, 7717.142713760722, + 12357.047252834056, 15883.41234335854, 17981.659720229458, + 18316.0441688604, 16842.185161907186, 13887.266953444556, + 9950.250463165563, 5647.244238812866, 1869.196742101173, + -1089.1564990155991, -3027.235680144737, -4012.097390822912, + -4507.064415422311, -4992.326813116403, -5846.957519950978, + -7261.757283221639, -9071.882282803572, -10975.098700508914, + -12463.61157103576, -13086.306193117154, -12653.996558631634, + -11233.147208532633, -9128.752786569312, -6849.1246350589345, + -4934.449380468374, -3634.434836475836, -3039.6008802040997, + -2899.2145261734277, -2751.1515449105946, -2140.7718338323666, + -756.2335801007071, 1392.2585269187541, 3988.2887966792255, + 6538.050836433124, 8365.352950132345, 9221.054750403027, + 9217.488526206329, 9004.556722898811, 9754.337695862288, + 12885.888831948758, 19755.199216428937, 31362.373137823994, + 47339.37885315194, 67407.48046792089, 89634.44590699593, + 111229.78141831497 + ], + "flow:branch67_seg0:RESISTANCE_30": [ + 21.414158542416803, 25.28425504679189, 28.18379116558208, + 29.864677610462028, 30.228003187400308, 29.333316931299272, + 27.401520388474893, 24.817061157449338, 21.857236686418815, + 18.778214078433557, 15.845830556173514, 13.02892459527174, + 10.35401278229098, 7.780987384678102, 5.192705316711909, + 2.6532537697278866, 0.12608129224540873, -2.3104857041124722, + -4.492815855226361, -6.41674878394881, -7.99428750236958, + -9.223595990657953, -10.173957423143861, -10.888858155819452, + -11.441827249402564, -11.867047700669072, -12.15457050518082, + -12.272561716064565, -12.179703904735144, -11.853952661716761, + -11.331620461747464, -10.722887367376769, -10.171284129265324, + -9.877691041034321, -10.004051734961541, -10.648341482760472, + -11.783596243486468, -13.315012748010329, -14.98884789617587, + -16.50401096756294, -17.608277759943288, -18.042912248569834, + -17.695348444485976, -16.57446161475758, -14.84434417759318, + -12.652269568762984, -10.28891958561033, -7.975351840794503, + -5.820192862422073, -3.955769835328066, -2.341459115572351, + -0.9378009871046761, 0.28640400427984414, 1.3865301517933761, + 2.324112718782245, 3.0528437484608704, 3.505936790803905, + 3.61724405444244, 3.3724414737919868, 2.8263344186183352, + 2.0696489678334653, 1.2275757092354718, 0.46702371258212244, + -0.14269185367548035, -0.5507890838709403, -0.7685315231646177, + -0.8785545078744439, -0.9732479438003593, -1.1316834995129925, + -1.3965496304600027, -1.745305762792434, -2.1215074806097083, + -2.4269926460148454, -2.5739157264045764, -2.516638441426171, + -2.2605064409613482, -1.860014139196286, -1.4135859859945195, + -1.0239413477846675, -0.7497293600149497, -0.6152613183582838, + -0.576754286111999, -0.5488925789651652, -0.4415034649346292, + -0.1881156169480241, 0.2171339164092671, 0.7211884326146754, + 1.2279570897573195, 1.6085576950935367, 1.80448191553866, + 1.824394068930404, 1.7839387015089263, 1.9027184677210316, + 2.455282397681655, 3.7141857803570577, 5.879485581672075, + 8.925956445880413, 12.79865153908069, 17.12353365725716, + 21.414158542416803 + ], + "pressure:branch67_seg0:RESISTANCE_30": [ + 107229.49236077847, 126608.65604490483, 141127.8250089202, + 149544.71422937, 151364.03470837174, 146883.97293644174, + 137210.67373951024, 124269.22423912036, 109448.16671884236, + 94030.2351401761, 79346.58572774344, 65241.179922647796, + 51846.79717126525, 38962.601573720756, 26002.009557705285, + 13285.932028041743, 631.3408456791595, -11569.551456720123, + -22497.37539170612, -32131.298241145756, -40030.682922572865, + -46186.33573016491, -50945.185990986516, -54524.98776098208, + -57293.93126528741, -59423.18481687473, -60862.929661798014, + -61453.76014533701, -60988.782922402264, -59357.61257519746, + -56742.080588008714, -53693.90381452807, -50931.79970989237, + -49461.65845969217, -50094.3983844179, -53320.621934265124, + -59005.30907486345, -66673.74087654622, -75055.32135648662, + -82642.3655388136, -88171.88318683849, -90348.27669235627, + -88607.88188762343, -82995.14088229339, -74331.73185110427, + -63355.113411663144, -51520.84878425206, -39935.86428311267, + -29144.09757652234, -19808.165261227903, -11724.648056986609, + -4695.954948850057, 1434.1425523763799, 6942.926289876189, + 11637.787519439828, 15286.843270343197, 17555.66634020343, + 18113.027552989515, 16887.200425589697, 14152.617967683935, + 10363.582941920384, 6146.976070762703, 2338.579660807021, + -714.5167531725979, -2758.027299757981, -3848.3531785263303, + -4399.283478921218, -4873.452428598447, -5666.804368031211, + -6993.097937249433, -8739.463219527788, -10623.259827593267, + -12152.949595475404, -12888.653839705417, -12601.84293467275, + -11319.284746230605, -9313.85520167952, -7078.40597080913, + -5127.295135723037, -3754.2030205460064, -3080.8662738775756, + -2888.045738252284, -2748.530720291123, -2210.7892928275423, + -941.972203600601, 1087.278754602707, 3611.2868676368357, + 6148.885799770627, 8054.709445446736, 9035.782535846125, + 9135.490871141565, 8932.91422059122, 9527.693324726473, + 12294.608008260382, 18598.4546146157, 29441.000589231095, + 44695.93220907139, 64088.10809538425, 85744.57025025564, + 107229.49236077847 + ], + "flow:branch68_seg0:RESISTANCE_31": [ + 23.51834692767491, 26.206103871180005, 27.445941843739455, + 27.17301617135288, 25.642527128094585, 23.09780264391496, + 19.8799727830518, 16.51620893322576, 13.33489557377793, 10.32606103350521, + 7.827791197939058, 5.576997556038028, 3.433870600908302, + 1.427058649714678, -0.7110040765415446, -2.768566216961403, + -4.763482259413328, -6.6547878184207825, -8.087857339892908, + -9.209025606114679, -9.961824961670622, -10.351349808334517, + -10.575827883125687, -10.669382206251974, -10.70941159187508, + -10.711342181792517, -10.602780947079387, -10.324524778140091, + -9.831693513372711, -9.133500405110356, -8.315543705396474, + -7.594939289671428, -7.1396363103567815, -7.1714981832389695, + -7.817644691038179, -9.063525332982602, -10.707173165377585, + -12.537768030495261, -14.193257240079566, -15.246978525310283, + -15.563305919046906, -14.959977492167143, -13.481801971324948, + -11.322365421276583, -8.901666329507966, -6.343153824108843, + -3.9947244002382343, -2.1138395366842073, -0.5513499328984924, + 0.5676691152218559, 1.426053007632323, 2.1802345889999275, + 2.7869927388691496, 3.3524983645059563, 3.7733604425091802, + 3.943717550669914, 3.8247623215747555, 3.3556739685620594, + 2.5752235878217857, 1.6156412773223991, 0.6385792216350117, + -0.25004216213136077, -0.843389933981143, -1.1532376523171195, + -1.2320457027411384, -1.1416294101280178, -1.0405601621902831, + -1.0480147346076913, -1.2145953878799278, -1.5345527445644016, + -1.9035922473094609, -2.226286674814844, -2.3782315186131684, + -2.2744701415335027, -1.9348687948884777, -1.436150561998487, + -0.8895051202870885, -0.4200685108194183, -0.15222864588725513, + -0.06928389025216308, -0.13617721941830505, -0.2473327944955649, + -0.2649805833357942, -0.09873769178235703, 0.27597510218056076, + 0.7964152094849147, 1.3261367504927066, 1.7452752946367647, + 1.9000905357127356, 1.8007354749278632, 1.569583085555516, + 1.4346765993871926, 1.7120978742915587, 2.7127934509375806, + 4.657791945031717, 7.668051192412774, 11.370558716381042, + 15.653000446212715, 19.981710857891276, 23.51834692767491 + ], + "pressure:branch68_seg0:RESISTANCE_31": [ + 169572.8913850257, 188952.2600818136, 197891.78761333498, + 195923.92841208295, 184888.73732929374, 166540.66678302444, + 143339.34590916205, 119085.80616397422, 96147.77797592123, + 74453.36321700814, 56440.24176847985, 40211.4827089206, + 24759.026143667365, 10289.433273191411, -5126.508993872314, + -19962.022834551768, -34345.843365358705, -47982.60759541156, + -58315.380687803095, -66399.27132931912, -71827.1342546718, + -74635.7013158705, -76254.24178183437, -76928.79076790228, + -77217.41218680172, -77231.33220062828, -76448.57980228851, + -74442.2864493677, -70888.85547105059, -65854.71661439148, + -59957.053695104325, -54761.32396566677, -51478.480877419766, + -51708.21258118674, -56367.08303338474, -65350.179652578845, + -77201.2725978051, -90400.29824307076, -102336.77034245733, + -109934.35216230719, -112215.1481274775, -107865.00625248223, + -97207.00814510492, -81636.95551001512, -64183.137627888515, + -45735.65215965164, -28802.91582218379, -15241.2872920817, + -3975.364534508548, 4093.0297318171206, 10282.182353895641, + 15720.011457068504, 20094.88245294154, 24172.312908772834, + 27206.828883079666, 28435.144269686964, 27577.448692480673, + 24195.20977152146, 18567.976358747208, 11649.159002503038, + 4604.30851386165, -1802.8636337053028, -6081.0426051647055, + -8315.118565046827, -8883.343407373462, -8231.420369847023, + -7502.686983285064, -7556.436228621169, -8757.522474651496, + -11064.491338564663, -13725.354183568938, -16052.057980999709, + -17147.616549515657, -16399.472269664016, -13950.86555228058, + -10354.988129534182, -6413.544098688077, -3028.7941656153166, + -1097.6048492722412, -499.55337560896845, -981.8702355472009, + -1783.3284467622889, -1910.5732139820618, -711.9223105133134, + 1989.8463174706362, 5742.343636253635, 9561.762306021747, + 12583.851190074754, 13700.106007664375, 12983.732319374067, + 11317.068453201768, 10344.360507509187, 12344.634075284988, + 19559.88788754876, 33583.79098743038, 55288.47822445263, + 81984.44066368639, 112861.8670639628, 144072.90169722692, + 169572.8913850257 + ], + "flow:branch69_seg0:RESISTANCE_32": [ + 49.44359972170192, 54.026325680277104, 55.56825295407086, + 53.8560346935053, 49.846659542470675, 44.086423249463984, + 37.22850419461282, 30.288918424300963, 24.195809232559288, + 18.34385900655065, 13.607481217291596, 9.421140640562813, + 5.167342381624713, 1.2708740870022737, -3.012428336972429, + -7.126481009896872, -10.943284387767104, -14.64821947497834, + -17.218240687504522, -19.137227988638738, -20.411577829104754, + -20.92538819745266, -21.22698317286138, -21.334826863674536, + -21.356079055465965, -21.320517186825967, -21.017041864012672, + -20.324022565134435, -19.17878414433846, -17.65120236135128, + -15.936271425897031, -14.581375700477912, -13.909509808997893, + -14.321885584517283, -16.05935463080815, -18.97958981140294, + -22.549333864760186, -26.252662183721423, -29.44499775190198, + -31.087858051865492, -31.131716548497305, -29.294593853953845, + -25.733753812124764, -20.91107973470246, -15.902900584066279, + -10.784501119362758, -6.184176596131629, -2.793088668262793, + 0.05417173118306209, 2.024738311583276, 3.4999273748364863, + 4.94090396895592, 6.045932756492972, 7.09015132190983, 7.8396227227761806, + 7.970025482658038, 7.501953327582635, 6.319457799869377, + 4.546479821536295, 2.4844938045548637, 0.5612960373695183, + -1.1281415846725895, -2.133133201935278, -2.511171914170627, + -2.510794301512545, -2.23033916122541, -2.0161240559842724, + -2.109518957463338, -2.5540155426430764, -3.2961643875477433, + -4.057886575769311, -4.647492739133562, -4.831320911240312, + -4.440540053692944, -3.587901563803114, -2.487099329047979, + -1.3798080301654154, -0.4931667546759751, -0.10617731987554552, + -0.0869449449422988, -0.3107695838868415, -0.554911039590527, + -0.5207394800286295, -0.05239829246055084, 0.8366097078479156, + 1.9793461749190158, 3.0180972893999782, 3.757353330342585, + 3.89219315329325, 3.504547832015385, 2.963716204466975, + 2.7954303554290045, 3.6717969325172866, 6.21190498727982, + 10.755446208854906, 17.550866923284765, 25.4267053485923, + 34.250400564471235, 43.0113021593685, 49.44359972170192 + ], + "pressure:branch69_seg0:RESISTANCE_32": [ + 185098.83094377772, 202254.88799145893, 208027.30216408908, + 201617.38055370472, 186607.7401260512, 165043.5132130272, + 139369.9617947453, 113390.6799352367, 90580.29811528874, + 68672.72763757544, 50941.454092883665, 35269.31955886251, + 19344.648029439635, 4757.689753678759, -11277.434624791716, + -26678.94957283285, -40967.6714127211, -54837.59911268357, + -64458.82257975077, -71642.81217669346, -76413.51388553859, + -78337.03278470924, -79466.09453751698, -79869.82204130973, + -79949.38250773736, -79816.25182250336, -78680.15073379836, + -76085.73886318723, -71798.38328967371, -66079.67341027138, + -59659.59653301131, -54587.360364173146, -52072.13914719936, + -53615.923871355844, -60120.37522764263, -71052.67224993749, + -84416.49395312843, -98280.40649791063, -110231.34827755918, + -116381.6189422899, -116545.80918125706, -109668.29085786686, + -96337.80253116504, -78283.46711104501, -59534.66825421641, + -40373.24468165106, -23151.305016964347, -10456.30678445139, + 202.79923323976658, 7579.882867562867, 13102.453484714417, + 18496.94507695301, 22633.770427124076, 26542.94445159441, + 29348.69243327327, 29836.8728760787, 28084.581190411638, + 23657.748576928912, 17020.36471075137, 9301.039999083298, + 2101.2879506185986, -4223.351245403947, -7985.673861692188, + -9400.913125825273, -9399.499481552511, -8349.577572719802, + -7547.634231747339, -7897.270730245753, -9561.304067993806, + -12339.63906688942, -15191.24953492533, -17398.520287261068, + -18086.706016923155, -16623.764801185796, -13431.796809685018, + -9310.794133900456, -5165.498765219916, -1846.236727598974, + -397.4892178626748, -325.4902101760627, -1163.4081457273826, + -2077.384844228956, -1949.4589698592633, -196.16012451543574, + 3131.9620689128883, 7409.951238840938, 11298.657118149471, + 14066.16251251145, 14570.95370355421, 13119.750793706824, + 11095.074140712319, 10465.073208405423, 13745.870517061107, + 23255.110015272963, 40264.47367795258, 65704.05407039715, + 95188.32490488196, 128221.026371936, 161018.65139026797, + 185098.83094377772 + ], + "flow:branch71_seg0:RESISTANCE_33": [ + 31.787188292785792, 35.255793357631795, 36.7399485229442, + 36.19835099612952, 33.97488264684498, 30.43773988458237, + 26.07509022179203, 21.563448146244895, 17.36578036856156, + 13.458556646910566, 10.221221056601545, 7.314820110951159, + 4.536391045670723, 1.9005327132312677, -0.9229244341493449, + -3.6725719799731835, -6.3471390825744916, -8.848059242424094, + -10.74845531967687, -12.22272062422529, -13.18741476586863, + -13.68382575356022, -13.965480824708136, -14.088645946857485, + -14.157869195676104, -14.179750481597434, -14.054061926631856, + -13.693866195445816, -13.036426179904883, -12.098441659485552, + -11.005546735508274, -10.053040168341035, -9.47965455402162, + -9.581050982148806, -10.518386808861573, -12.25927795171141, + -14.528714164478387, -17.00698807392479, -19.20435011653044, + -20.559153169168145, -20.88277149667797, -19.95434710267104, + -17.864030396908138, -14.892301584739515, -11.59892965435202, + -8.167818233594954, -5.08184345962406, -2.632964114489934, + -0.638339285899742, 0.7695363229349338, 1.8579348724260032, + 2.8175721992842697, 3.6090816190293102, 4.359846373180962, + 4.921257839417398, 5.146066450547473, 4.972813003485863, + 4.324931257874789, 3.2650116962531914, 1.9688658270037906, + 0.6694428772660169, -0.48466299892606923, -1.2370445181077512, + -1.600823021284613, -1.6506941736953493, -1.490743232435866, + -1.3367651552498003, -1.347284636961001, -1.5867991436772348, + -2.0376290752021675, -2.551641889585507, -2.992673738401017, + -3.185862632582731, -3.0263619988643073, -2.5441834930794283, + -1.8530523154635474, -1.1093130337152577, -0.4891349238137572, + -0.15254414444593448, -0.07341560683499349, -0.19428557954041076, + -0.3617729041800026, -0.3882504814177716, -0.15197675824834186, + 0.3723867892423216, 1.093804401305262, 1.8157515149035743, + 2.3686062441821942, 2.5549614060472887, 2.392392981166177, + 2.0540220048933233, 1.8640614258932455, 2.258041357201619, + 3.6570509717681294, 6.350286944982587, 10.473512438690879, + 15.521328593753971, 21.333830100308873, 27.10579732502332, + 31.787188292785792 + ], + "pressure:branch71_seg0:RESISTANCE_33": [ + 169948.61148837523, 188493.33488896495, 196428.29620906967, + 193532.67213499284, 181645.00987406386, 162733.85310405944, + 139409.165001029, 115287.89641919249, 92845.27570872732, + 71955.49960923141, 54647.24688088866, 39108.31966932394, + 24253.587712102286, 10161.103043365547, -4934.369301488526, + -19635.22230524714, -33934.66147656424, -47305.7059582108, + -57466.078484159334, -65348.164158607266, -70505.85311093321, + -73159.88961484186, -74665.74435794052, -75324.24051999302, + -75694.3391556715, -75811.32635584289, -75139.33878652834, + -73213.57033493572, -69698.60019196347, -64683.71289288919, + -58840.60487332888, -53748.076178036965, -50682.498684889404, + -51224.60961371494, -56236.02870434798, -65543.61608057407, + -77677.04322326064, -90927.01066041875, -102675.09685912306, + -109918.48358195183, -111648.6927752266, -106684.91821359663, + -95509.14455147569, -79620.94517076293, -62013.096954406516, + -43668.83144565334, -27169.821747348113, -14077.010877298957, + -3412.8490477960495, 4114.287440840184, 9933.355819214627, + 15064.008764350352, 19295.774267694076, 23309.70045541515, + 26311.25876506455, 27513.186754424132, 26586.89586979066, + 23123.02853868146, 17456.221643785306, 10526.4426165721, + 3579.142842526255, -2591.2264698809417, -6613.7966109282, + -8558.720173676977, -8825.353794349801, -7970.184091294601, + -7146.948007108382, -7203.189889655649, -8483.742213843363, + -10894.081881964645, -13642.225671436512, -16000.180380671785, + -17033.055135707662, -16180.292979385447, -13602.349727755134, + -9907.25147275407, -5930.886621660058, -2615.1353925033663, + -815.5696345478369, -392.512868023463, -1038.7381284242217, + -1934.200728080256, -2075.761769769126, -812.5361326372748, + 1990.9473334172944, 5847.970494575371, 9707.824609191795, + 12663.634752897757, 13659.973300081734, 12790.809351829463, + 10981.725860208786, 9966.111130737032, 12072.505117630586, + 19552.24001159187, 33951.491365392234, 55996.1101298711, + 82984.00659620248, 114060.25502731472, 144919.7889490147, + 169948.61148837523 + ], + "flow:branch74_seg0:RESISTANCE_34": [ + 26.778360388694935, 30.22852860395842, 32.067990417734, 32.18213305764065, + 30.74808871024887, 28.017544062107195, 24.3920342788105, 20.4955428131213, + 16.65681005888441, 13.030839190430948, 9.969404399676147, + 7.202877671606431, 4.641472880881558, 2.23773948139597, + -0.2771122803885949, -2.702698732128016, -5.089198649409232, + -7.3581159442579125, -9.150575277802906, -10.582009197649883, + -11.567995305073481, -12.125182316281675, -12.446775707668676, + -12.589004741109619, -12.652344164313183, -12.664805737501624, + -12.563283422598799, -12.28033518964516, -11.757303172119896, + -10.985760652135216, -10.054513021488878, -9.178909264652736, + -8.561277466237017, -8.468820990226353, -9.062683449841671, + -10.366286709505593, -12.187585664954451, -14.309501708232945, + -16.30572355997685, -17.709431862111384, -18.302716422497735, + -17.83823350350143, -16.3373465297164, -13.984394624054579, + -11.210406688571096, -8.210250020965836, -5.389649134597154, + -3.037648412527414, -1.0822002291606931, 0.3529829720321707, + 1.4536521069235664, 2.3763225800988375, 3.1310589730158696, + 3.8195783353334196, 4.347512832876648, 4.617821650873559, + 4.5593948318894295, 4.09815193435075, 3.2600627736357404, + 2.183458300512419, 1.0295533370903283, -0.051294638231990916, + -0.8206680602862961, -1.2751701244141216, -1.4365504699810536, + -1.3741614367846788, -1.2625914227793091, -1.2433684529200584, + -1.394838180758756, -1.7287442279341272, -2.1474565227438953, + -2.541532641454126, -2.765486959910519, -2.7125521467243727, + -2.3802010190468805, -1.8375159498520184, -1.2043433727688537, + -0.6321294458510561, -0.26024356353325473, -0.10562915202237302, + -0.14355255840717174, -0.2609377655445333, -0.30452490311912084, + -0.15852698549711142, 0.22689405371450522, 0.7976287950365804, + 1.4202536876523826, 1.9478216431655178, 2.195697813270755, + 2.1521234813896326, 1.9188389933486802, 1.7343138610194582, + 1.950433938152723, 2.934034271928764, 4.972141678863073, + 8.230093618632083, 12.395943968616686, 17.31151108720753, + 22.387984301753697, 26.778360388694935 + ], + "pressure:branch74_seg0:RESISTANCE_34": [ + 162989.50295928452, 183989.33993096912, 195185.43119227374, + 195880.17321063438, 187151.700966245, 170531.93379048244, + 148464.86063976362, 124748.4269948705, 101383.54824483019, + 79313.66864743165, 60679.901394913584, 43841.12524183984, + 28250.84683576238, 13620.253089843143, -1686.6750685561206, + -16450.279875391407, -30975.980093173006, -44786.000451977525, + -55696.00582977116, -64408.58941324608, -70409.90477539465, + -73801.2862003244, -75758.70055490587, -76624.39356711843, + -77009.91609186777, -77085.76485895083, -76467.83786846464, + -74745.64161809908, -71562.14840451645, -66866.06806132353, + -61197.92459593431, -55868.463828188615, -52109.178406140905, + -51546.43166393446, -55161.04233142269, -63095.57022128217, + -74181.1112021316, -87096.39190622278, -99246.62077346607, + -107790.44926572521, -111401.54248454284, -108574.41494568472, + -99439.0975362384, -85117.59106518445, -68233.40143382824, + -49972.61037137844, -32804.70577069942, -18488.98878558473, + -6586.933437783125, 2148.4705683808747, 8847.817078570182, + 14463.75471011823, 19057.542670292394, 23248.29322458581, + 26461.62593430501, 28106.890963653543, 27751.269557135733, + 24943.862773368295, 19842.73881515428, 13289.86457599071, + 6266.492206642808, -312.21058603135197, -4995.088470654933, + -7761.466413549703, -8743.726041456528, -8363.988172401758, + -7684.904730997652, -7567.901962445746, -8489.839500647111, + -10522.196219811665, -13070.735705552574, -15469.324333997696, + -16832.44748720636, -16510.253791803985, -14487.36126508144, + -11184.247541631923, -7330.37142194857, -3847.5269840913306, + -1584.0017257571542, -642.9237166207973, -873.7487958087775, + -1588.2270643922366, -1853.525080611211, -964.8923308517379, + 1381.0161825656407, 4854.85739089299, 8644.53384249191, + 11855.635552910466, 13364.361747288813, 13099.14167436466, + 11679.229394374242, 10556.096418147941, 11871.535580222342, + 17858.32966267117, 30263.499673531835, 50093.3906608963, + 75449.30745681051, 105368.45970484542, 136266.98500717367, + 162989.50295928452 + ], + "flow:branch75_seg2:RESISTANCE_35": [ + 34.13297794453439, 37.159767797183264, 38.056498055376046, + 36.741850905927386, 33.87377238021134, 29.853426542345105, + 25.14689694610457, 20.43344919141865, 16.33559338456892, + 12.442507794914034, 9.307215433724844, 6.50839034716531, + 3.656999420797474, 1.007473949101965, -1.9274516639468129, + -4.749329716342858, -7.399253848262398, -9.925532415448721, + -11.669328460331778, -12.978685824178285, -13.82650796063999, + -14.168970013107106, -14.37992173815487, -14.467995390627761, + -14.511584666535889, -14.516683369134912, -14.33143203283729, + -13.870547239681311, -13.088703984924939, -12.041477221742147, + -10.87107587199482, -9.962824025108791, -9.540620507625345, + -9.882599338825855, -11.140484593988136, -13.20480605519961, + -15.696708201957167, -18.253209156066397, -20.40301594245011, + -21.46237343867769, -21.39708916021048, -20.028939215498344, + -17.49201270748168, -14.131932196118134, -10.682462295085351, + -7.186531024508718, -4.104248015828403, -1.8586936170269888, + 0.012171572236064233, 1.2872410947551909, 2.2591129819095355, + 3.2268537322002926, 3.9789570699297374, 4.706318662519294, + 5.228658153513246, 5.321575334817872, 4.994498487306971, + 4.172255697460776, 2.950189825298766, 1.5398992311642075, + 0.23768687621994003, -0.8807268643284318, -1.5205915800094516, + -1.7359355714472304, -1.6901780367839698, -1.4698214936905993, + -1.3177992261505789, -1.3934433335634717, -1.7215118463427768, + -2.254464617911968, -2.7926385694929783, -3.201072600970804, + -3.3130526515571637, -3.0215361039342152, -2.413312090347408, + -1.6416882889014488, -0.8803285414186596, -0.2870910051487252, + -0.049921794527483895, -0.06667801078632501, -0.24560856015816623, + -0.42374554972183187, -0.39448494695461417, -0.05454097795713554, + 0.5796561893672436, 1.3830319954482992, 2.1034234595102124, + 2.597822100083379, 2.664123221061401, 2.37108208164705, 1.978954720543098, + 1.8643380255298658, 2.4995866100165856, 4.306235329948305, + 7.516617314028112, 12.263434154729872, 17.731268547946588, + 23.835115803276068, 29.811371058184072, 34.13297794453439 + ], + "pressure:branch75_seg2:RESISTANCE_35": [ + 182488.3071424306, 198670.71458380183, 203464.98676968523, + 196436.36673008115, 181102.4923825207, 159608.1443865272, + 134445.1884929786, 109245.24540701174, 87336.49867177867, + 66522.53394913144, 49760.02947853905, 34796.41121869011, + 19551.75533194179, 5386.35145637516, -10304.913676855169, + -25391.78214702893, -39559.31741674121, -53065.79493080748, + -62388.81353028326, -69389.15229829015, -73921.94245484329, + -75752.8791025897, -76880.7098841647, -77351.58622463237, + -77584.63161501591, -77611.89128182156, -76621.46487333004, + -74157.3937387389, -69977.35259955208, -64378.466984644474, + -58121.041648369566, -53265.17052378209, -51007.90468250825, + -52836.257839556936, -59561.406496870666, -70598.07987083099, + -83920.76753861364, -97588.82580418217, -109082.53730419026, + -114746.27858276683, -114397.24318714636, -107082.57618876245, + -93519.17060062209, -75554.86038492876, -57112.63938091689, + -38422.017645815344, -21942.921995211986, -9937.306150635557, + 65.07400603112875, 6882.096506426129, 12078.105355532694, + 17252.0275243005, 21273.06738556015, 25161.828159018216, + 27954.460246966108, 28451.23199504746, 26702.5506961381, 22306.5177738705, + 15772.873607525766, 8232.906144952789, 1270.767401011756, + -4708.711756334331, -8129.679858049659, -9280.993420981633, + -9036.35566762539, -7858.243034669146, -7045.472279757683, + -7449.8953901441255, -9203.878521095288, -12053.25337577394, + -14930.542709621703, -17114.191470209003, -17712.880805152163, + -16154.31883712916, -12902.51435692119, -8777.110429215449, + -4706.582165601987, -1534.901279651324, -266.9015222624275, + -356.4868360386125, -1313.1198348935095, -2265.5101513128993, + -2109.0714756833795, -291.59749124195343, 3099.069670809642, + 7394.2322871230235, 11245.728015688648, 13888.977342433562, + 14243.449177520171, 12676.73614293464, 10580.269247243552, + 9967.483375550773, 13363.771826737677, 23022.825514847562, + 40186.788603779234, 65565.13593059148, 94798.32630075779, + 127431.89125050025, 159383.29924928202, 182488.3071424306 + ], + "flow:branch77_seg2:RESISTANCE_36": [ + 36.781679838051865, 41.562153300862704, 44.1158121264252, + 44.30592669388954, 42.359750617240444, 38.62992896039888, + 33.67126895956621, 28.320306117850183, 23.056443977119738, + 18.078017980017115, 13.854007319105573, 10.044884335218175, + 6.524051019942081, 3.223539526356759, -0.2077571431761621, + -3.52506258962801, -6.790054071909128, -9.875898275711371, + -12.34242403130872, -14.3249117552703, -15.698789916206197, + -16.49986792152977, -16.97497425572962, -17.201097954924627, + -17.31665451845953, -17.35582185443035, -17.237767764636793, + -16.87303902471862, -16.18042459586976, -15.14865303122274, + -13.89428263146981, -12.70788519825022, -11.862309507711826, + -11.722303742982858, -12.512348615996466, -14.269123351465012, + -16.74985459929228, -19.655060524393033, -22.410911743879794, + -24.391283121610883, -25.277999492703795, -24.72830255161818, + -22.751884160104247, -19.594134817941644, -15.814878108494929, + -11.686233555671249, -7.787106046803983, -4.49293006340255, + -1.7370437509858643, 0.30243578705555496, 1.8827414701540328, + 3.19908163227734, 4.27324290334666, 5.252416885228022, 6.002465192397772, + 6.396108226166137, 6.337659223349265, 5.723275935163913, 4.58852799021269, + 3.115137760150829, 1.5269138168206287, 0.03188415960848464, + -1.0534459773201794, -1.7080288677975473, -1.9565091600574163, + -1.8945970864782389, -1.756032990593942, -1.734271151515059, + -1.940420122595985, -2.393719670271097, -2.9667187098418344, + -3.5124207355364683, -3.827728232996466, -3.769183576474417, + -3.3276322159833915, -2.5926493017098946, -1.7256343674202648, + -0.9343467514180923, -0.4112323695709544, -0.18084863224760767, + -0.2169246032226091, -0.3668049613118124, -0.4225227124888152, + -0.22472648747849908, 0.2981805872470436, 1.0779324527977225, + 1.9344356820577993, 2.6655747262965077, 3.0238516810961484, + 2.983306372683226, 2.6779466182719016, 2.430415693810661, + 2.720889832149712, 4.053182481434827, 6.829631009500788, + 11.272817706457243, 16.98072908246923, 23.75108628468589, + 30.72382970394533, 36.781679838051865 + ], + "pressure:branch77_seg2:RESISTANCE_36": [ + 162073.10069863702, 183137.5588837039, 194389.8835683723, + 195227.5956460326, 186652.05497913674, 170217.14054241564, + 148367.52939948268, 124789.29307916222, 101594.85327775401, + 79658.14615884119, 61045.660045850746, 44261.31589247945, + 28747.27806270984, 14204.056164961461, -915.451511050425, + -15532.673509575441, -29919.381664751814, -43516.70349958896, + -54385.089036143356, -63120.631674067685, -69174.42515237562, + -72704.25839534122, -74797.74507360403, -75794.12613155106, + -76303.30925316931, -76475.89439921723, -75955.7062928774, + -74348.58236453196, -71296.67803154736, -66750.32730935964, + -61223.1273280758, -55995.440297210036, -52269.53450268919, + -51652.61954651102, -55133.836903197574, -62874.80821989743, + -73805.78818344361, -86607.15382313995, -98750.40976394975, + -107476.62703126216, -111383.8132265701, -108961.65393209113, + -100252.85492125664, -86338.6935951077, -69685.95081845873, + -51493.68153372503, -34312.74558507269, -19797.440187721997, + -7654.029615041365, 1332.6391286691198, 8296.02533721524, + 14096.28602647043, 18829.42079951754, 23144.00795447399, + 26448.986284772385, 28183.516826394964, 27925.969831232756, + 25218.779594896936, 20218.678491319723, 13726.399612906376, + 6728.122747011579, 140.4928930288949, -4641.855856354527, + -7526.179769538208, -8621.071889918792, -8348.265379181033, + -7737.702926232087, -7641.8125603781245, -8550.177895950532, + -10547.576154006738, -13072.412742477421, -15476.969025694629, + -16866.325466507915, -16608.35698726425, -14662.725400352327, + -11424.130523738602, -7603.755832559777, -4117.062510379673, + -1812.0353811309562, -796.8830873019213, -955.8465849554374, + -1616.272494708377, -1861.7846283847596, -990.2244485611329, + 1313.8892121325202, 4749.751934598938, 8523.808332669352, + 11745.465757329002, 13324.160836748464, 13145.503856366879, + 11799.980692554806, 10709.2718227358, 11989.20369318559, + 17859.756687458204, 30093.771660536953, 49672.02496841686, + 74823.10287721068, 104655.69316215682, 135380.0687565057, + 162073.10069863702 + ], + "flow:branch78_seg0:RESISTANCE_37": [ + 41.83507121881083, 46.0079318203896, 47.59344018006406, 46.44700186908548, + 43.25895750010621, 38.47980971231656, 32.68085950006485, + 26.781945372026264, 21.442305596011213, 16.354384312380237, + 12.228775518771029, 8.534677533824151, 4.884567405930461, + 1.5100797926411749, -2.174449264593217, -5.692173909310512, + -9.025193236011166, -12.23829451694308, -14.522275488975808, + -16.261709571744788, -17.417666737119216, -17.925818431812253, + -18.221810395460718, -18.33038727172596, -18.360556942125456, + -18.340076522041244, -18.10357074684674, -17.547686934646766, + -16.60908377073883, -15.331440321794735, -13.876111671028244, + -12.682314996334888, -12.028654688884348, -12.281297040400672, + -13.646966014185084, -16.041100906708795, -19.02921305456422, + -22.218567589638777, -25.004339379664223, -26.556042961440248, + -26.76866604361055, -25.366026017794454, -22.466892485527218, + -18.451977987940523, -14.184699484388917, -9.777112978002398, + -5.787276102674836, -2.7670042386062317, -0.2414070538054925, + 1.521203292557618, 2.847584358931472, 4.099047793952802, 5.0749967708915, + 5.99479861894484, 6.6619158896700785, 6.835306053635394, + 6.498635042562908, 5.550321291709578, 4.08118682486816, + 2.3492005195016286, 0.6782057858372356, -0.8077872714679449, + -1.7191984748302158, -2.114711968471299, -2.1567849318865555, + -1.9376678756801737, -1.7519492556029774, -1.8059573101454827, + -2.154957607395561, -2.764903959007943, -3.4155506256584816, + -3.9406626617141365, -4.135868195796304, -3.85211337693056, + -3.1676426446395123, -2.2469854274134557, -1.2955390406108156, + -0.5150870904454682, -0.13781031707825916, -0.0795508345816198, + -0.24964395006008855, -0.4576781557336047, -0.4520488759285903, + -0.09116631339043056, 0.6341864627652256, 1.5879050558320311, + 2.4921193690507244, 3.1620236505472907, 3.326657757217283, + 3.04585478703523, 2.598345579067104, 2.4161865297715552, + 3.0694377577146654, 5.090989392050875, 8.810576333176522, + 14.434991671430126, 21.0825274978024, 28.592516640150336, + 36.112764934285785, 41.83507121881083 + ], + "pressure:branch78_seg0:RESISTANCE_37": [ + 181707.2732828007, 199831.7583048639, 206718.28657910816, + 201738.823812443, 187891.80903476608, 167133.96429267467, + 141946.6895905568, 116325.2296454045, 93132.93294922836, + 71033.95531654543, 53114.70472898288, 37069.68669679829, + 21215.726390314307, 6558.910348816196, -9444.545814077115, + -24723.5004023942, -39200.20227020442, -53156.049733357395, + -63076.337725392776, -70631.43002061307, -75652.23716716091, + -77859.35325820137, -79144.97058981737, -79616.5655352235, + -79747.60507655413, -79658.65001610536, -78631.40616844031, + -76216.96945698647, -72140.22196643126, -66590.88021627846, + -60269.77705673352, -55084.61703924117, -52245.49597024752, + -53342.827741713365, -59274.501292247354, -69673.2339946814, + -82651.85922063624, -96504.56459955948, -108604.34072533876, + -115344.0406606616, -116267.5519485042, -110175.29760153977, + -97583.14384911138, -80144.68504969169, -61610.10345036409, + -42466.10530477294, -25136.569144382585, -12018.260772865884, + -1048.532157835452, 6607.224377693105, 12368.254056457446, + 17803.88501789218, 22042.841049186045, 26037.926533712267, + 28935.4968423475, 29688.60309961852, 28226.29959126677, + 24107.374945893727, 17726.30733256917, 10203.56386058303, + 2945.7323838326283, -3508.559163750908, -7467.200556668963, + -9185.081664127882, -9367.82220306896, -8416.104860343441, + -7609.450943692726, -7844.0305927831305, -9359.885365841616, + -12009.138377041258, -14835.169939155036, -17115.95191131149, + -17963.811477325024, -16731.345201667464, -13758.401525868754, + -9759.600814014277, -5627.069815886227, -2237.239425708273, + -598.5680486958046, -345.5226635960431, -1084.3084554513714, + -1987.8883266265282, -1963.4380017161322, -395.9735632996164, + 2754.5379879749466, 6896.938131601353, 10824.320409949636, + 13733.99587612754, 14449.07090147784, 13229.425743600501, + 11285.705425222051, 10494.512218494561, 13331.856483487618, + 22112.303715291415, 38268.03098237856, 62697.227471103586, + 91570.26566296203, 124189.3005942548, 156852.89532772367, + 181707.2732828007 + ], + "flow:branch79_seg0:RESISTANCE_38": [ + 48.46971742691641, 53.0551481101934, 54.56924355976741, + 52.993460402467335, 49.08205107813794, 43.42183266666793, + 36.721082700739764, 29.9855227025004, 23.974087630599563, + 18.356478469824435, 13.787089914863943, 9.700469004734085, + 5.649133750373776, 1.8388901315391846, -2.3234290169779386, + -6.359214907693434, -10.18928032445561, -13.807633840822598, + -16.403505134158802, -18.376925825613224, -19.645933813028037, + -20.217407718111183, -20.555250101804898, -20.699047268068224, + -20.7825325476887, -20.803989920850693, -20.57600872490269, + -19.968543753618235, -18.90698820582882, -17.444702551962397, + -15.792283671515658, -14.448925084724678, -13.75854854266333, + -14.139739527028258, -15.813200656787672, -18.65645249119647, + -22.188044931038046, -25.882787826214233, -29.04638376680707, + -30.759413061963127, -30.876421045034455, -29.107963799238632, + -25.650103043156818, -20.955590924479544, -15.994471706352748, + -10.922146826877157, -6.439925108418115, -3.0533778157722407, + -0.2715621408796854, 1.6379565824326756, 3.11684007200641, + 4.502123661229706, 5.619566492463733, 6.694082501977925, 7.46891515191379, + 7.676369348419496, 7.275668496278189, 6.160060660448911, + 4.454844286333255, 2.4521590679650673, 0.5448134521625654, + -1.1025654807788918, -2.09242528184492, -2.48008872599206, + -2.452278105586253, -2.1538351912382607, -1.9261661654106241, + -1.9992665412763997, -2.4310795044480478, -3.1684388153397838, + -3.946163443835045, -4.5646242621115665, -4.769502953741095, + -4.4143160501712035, -3.5888830170876376, -2.5003961263964043, + -1.3899813154612632, -0.5117981349337712, -0.11080286351404593, + -0.08778041079780141, -0.326562843494661, -0.5867765021775718, + -0.5771784714595217, -0.13616697611132308, 0.7350986743169763, + 1.869197329920771, 2.9285135382892244, 3.68149036159902, + 3.839244411800371, 3.4758986077561644, 2.921908407136546, + 2.705116987183717, 3.4963442036661947, 5.919214975214872, + 10.328116948251855, 16.924858876843196, 24.68610019762336, + 33.451776670307794, 41.994310207598865, 48.46971742691641 + ], + "pressure:branch79_seg0:RESISTANCE_38": [ + 179958.70403328087, 196983.52297185076, 202605.06708955864, + 196754.48842148628, 182232.1806731204, 161216.8823807635, + 136338.29129472774, 111330.45727859552, 89011.15932619908, + 68154.06095620504, 51188.80334324861, 36015.96880028795, + 20974.14308553891, 6827.444072289001, -8626.443416730273, + -23610.53734598056, -37830.83086848812, -51265.07897445489, + -60903.047970053376, -68229.9780410232, -72941.5597243198, + -75063.3320144556, -76317.6755667702, -76851.56668597774, + -77161.53141290466, -77241.19849724548, -76394.7483270229, + -74139.34815591466, -70197.99733357296, -64768.812985770375, + -58633.70067170173, -53646.06956584155, -51082.83473800679, + -52498.123276434606, -58711.361400133406, -69267.80658947812, + -82379.92756698973, -96097.79468999723, -107843.6157051978, + -114203.76278862788, -114638.1908421191, -108072.25047798373, + -95233.88100883193, -77804.06375810136, -59384.38581393125, + -40551.8227167253, -23910.19874068319, -11336.60239465647, + -1008.257805728871, 6081.416593397799, 11572.225501066447, + 16715.51604760475, 20864.365564695054, 24853.836079491302, + 27730.64013215268, 28500.877516055683, 27013.1526048233, + 22871.116071439872, 16539.976855598972, 9104.39324553168, + 2022.7871750828606, -4093.612786827605, -7768.771142004002, + -9208.090674140713, -9104.835209240322, -7996.774280785981, + -7151.483137954611, -7422.890721977952, -9026.12889546818, + -11763.801674251241, -14651.343085028897, -16947.568713330893, + -17708.243744814976, -16389.50333844892, -13324.829831243629, + -9283.488131628594, -5160.73229719113, -1900.207675610698, + -411.38964243417416, -325.9117198385381, -1212.4647970013282, + -2178.587879087069, -2142.952243870518, -505.5616961259876, + 2729.279471582368, 6939.9688492552405, 10873.005436621343, + 13668.663024151145, 14254.37335912566, 12905.340530324442, + 10848.481859733725, 10043.577167661937, 12981.25108104427, + 21976.902535903107, 38346.304451105534, 62838.733772592925, + 91654.72453802575, 124199.98912261688, 155916.7670644277, + 179958.70403328087 + ], + "flow:branch80_seg0:RESISTANCE_39": [ + 31.3828898069144, 34.45806192190846, 35.57973568690521, 34.68680445847393, + 32.26735032077764, 28.6808827938123, 24.376599680358876, + 20.005949657284003, 16.068890470892086, 12.36177632780758, + 9.336880603203698, 6.616409602303729, 3.9280038772680212, + 1.4049162773052437, -1.349327366418002, -4.002491842588917, + -6.5377411375013175, -8.938539553900412, -10.664440004760085, + -11.988099962355976, -12.853775274210578, -13.252876335934362, + -13.493448776068917, -13.599030087114903, -13.65637403825556, + -13.672283177171149, -13.523919900895661, -13.130796038919284, + -12.443401932652488, -11.497041168378285, -10.420591922290773, + -9.539899104240058, -9.07304666868187, -9.292179077509894, + -10.344788685988453, -12.160799546396827, -14.422707371941875, + -16.813377563559815, -18.87184273838731, -20.00383703549633, + -20.114990766750662, -19.01193203301659, -16.80566393481665, + -13.790711929667774, -10.595604402082813, -7.31082705741296, + -4.381678449978443, -2.161698932908627, -0.32262072260078933, + 0.9542680275518559, 1.9367221659312095, 2.8631680814049925, + 3.6026881340685555, 4.309315256954273, 4.826515140802541, + 4.975849642666321, 4.7352842828742, 4.033769697524833, 2.9466931914455414, + 1.6622558689070537, 0.4283736422424809, -0.6490475720679588, + -1.3034528823333345, -1.5755572702946405, -1.5781727760736988, + -1.3992765508100882, -1.2586501614466683, -1.3057174567171277, + -1.5803903119811236, -2.0512053731786914, -2.550081921144335, + -2.950331311115701, -3.0916043628894165, -2.872233651589537, + -2.351238507743973, -1.656364228951807, -0.9439588027541761, + -0.3708106910050592, -0.10268725028020705, -0.07587990204546673, + -0.21799323178149113, -0.37964853529910575, -0.37337014735682916, + -0.09411457721276839, 0.46090529106333084, 1.1864870636125684, + 1.8700475494652002, 2.364358512958232, 2.477928108669118, + 2.2578375532115116, 1.91182555253442, 1.7740491818715787, + 2.275714100540069, 3.816030403112021, 6.638026717943122, + 10.87425980347228, 15.8754195927367, 21.534117183200696, + 27.12400283872134, 31.3828898069144 + ], + "pressure:branch80_seg0:RESISTANCE_39": [ + 177800.6968993346, 195223.17610680644, 201578.0522299822, + 196519.12376051903, 182811.63428312627, 162492.3956908678, + 138106.3515141621, 113344.30363434838, 91038.77755369058, + 70036.01196450737, 52898.37514421352, 37485.46566293372, + 22254.22295711849, 7959.595012670727, -7644.6543824015935, + -22676.23674316399, -37039.76713255986, -50641.56206531924, + -60419.702473344725, -67918.93738658544, -72823.44664890209, + -75084.56560079548, -76447.53592551655, -77045.70998784796, + -77370.5938509448, -77460.727551306, -76620.17099076173, + -74392.91604205636, -70498.46425987073, -65136.82916375931, + -59038.17389942428, -54048.582508466694, -51403.61613022637, + -52645.11731901681, -58608.708406448306, -68897.3720235947, + -81712.2781771843, -95256.69135077248, -106918.9871074479, + -113332.3345126852, -113962.07928767604, -107712.66717854653, + -95212.98955738956, -78131.68917582327, -60029.71231619839, + -41419.70843718068, -24824.52976090529, -12247.169687765801, + -1827.8173127295372, 5406.433931717607, 10972.55711381515, + 16221.364040910175, 20411.136924911392, 24414.553935585376, + 27344.765281648033, 28190.824349690574, 26827.89413886383, + 22853.44236187315, 16694.578039531887, 9417.560133407938, + 2426.9636286716163, -3677.198350583436, -7384.751126495347, + -8926.366640764054, -8941.184866656027, -7927.642974233347, + -7130.9199769218685, -7397.581140113243, -8953.748382385504, + -11621.165134209905, -14447.565075094994, -16715.189914877974, + -17515.576597334857, -16272.725298798201, -13321.011794181524, + -9384.18087176369, -5348.026711580141, -2100.839013999568, + -581.7776748664629, -429.8998450223294, -1235.0471473015075, + -2150.9100840704486, -2115.3396901918436, -533.2089402788721, + 2611.272653981598, 6722.077796859537, 10594.810088409722, + 13395.343574487482, 14038.775501506945, 12791.845904454593, + 10831.50460910136, 10050.928477622816, 12893.126015772574, + 21619.833904297386, 37607.93807543682, 61608.44279215678, + 89942.66253122617, 122002.18226689598, 153671.8459356695, + 177800.6968993346 + ], + "flow:branch81_seg0:RESISTANCE_40": [ + 37.57705288497806, 42.589701230062985, 45.35636832636398, + 45.717669433748995, 43.87382432225614, 40.158159483450234, + 35.13273123749732, 29.668861047787406, 24.226991253274626, + 19.063280944255435, 14.666678492555201, 10.682086783615793, + 7.006358748827731, 3.553696799351915, -0.03633047452846216, + -3.5026273971819406, -6.923127252208374, -10.165459634702463, + -12.76336302513949, -14.856341258685607, -16.309938840554395, + -17.160225143676378, -17.661186144786186, -17.894955306204768, + -18.008384733913868, -18.0411515274192, -17.91330473713241, + -17.532821741533674, -16.815414959540995, -15.744799548541986, + -14.441870191459559, -13.198418384929465, -12.298290887614144, + -12.12050335173626, -12.897097565188352, -14.672494783834553, + -17.19748454633928, -20.173725503537273, -23.00299901371381, + -25.043718961409926, -25.96629507604832, -25.410931705826503, + -23.39305112458095, -20.158852930924414, -16.284570778198727, + -12.053633533551842, -8.053534971856651, -4.670406968923227, + -1.8427234806488735, 0.2519910095687615, 1.8733884623620725, + 3.2200028898509867, 4.32387344228858, 5.328691680009719, + 6.102298780387048, 6.519564635399685, 6.476377569740944, + 5.8654161996522625, 4.718878742283259, 3.2234946861360165, + 1.5989139552699945, 0.06350426855196506, -1.0524185869331164, + -1.7331364384887011, -1.995661714681468, -1.9361765786564602, + -1.794031449583073, -1.7673798502043832, -1.9720812897477709, + -2.4309015644648855, -3.015916139846637, -3.576786784016514, + -3.9067967570157096, -3.856771722753209, -3.4144699743497373, + -2.6686717636199466, -1.7830240647897182, -0.9716790236796081, + -0.42878257811862636, -0.18667307054476284, -0.21980745529585713, + -0.3732501753542603, -0.4348958463656154, -0.2404349894972733, + 0.286732336524825, 1.0780223985877382, 1.9545473666278275, + 2.708803643312628, 3.082958114113654, 3.0511572294646436, + 2.742967131255575, 2.4838411921296952, 2.761650853901867, + 4.092557078354106, 6.890933706051251, 11.394050058140186, + 17.207869359906944, 24.122530559128357, 31.28728343993767, + 37.57705288497806 + ], + "pressure:branch81_seg0:RESISTANCE_40": [ + 162940.44077868186, 184676.12966617258, 196672.86494871558, + 198239.52750394805, 190244.30403302555, 174132.55443748878, + 152341.44974379282, 128649.18681422867, 105052.32130985157, + 82661.6022616971, 63597.192298478374, 46319.330424507294, + 30380.753548760647, 15409.428851489878, -157.53506671358016, + -15187.983307987086, -30019.847737785843, -44079.14794878701, + -55344.095331273355, -64419.6020496467, -70722.64639506453, + -74409.63125370455, -76581.88266957496, -77595.54519170924, + -78087.39432647283, -78229.47667106058, -77675.1114198759, + -76025.2729612428, -72914.476123784, -68272.10708259209, + -62622.385578448135, -57230.56876771817, -53327.46408256121, + -52556.54733319314, -55923.9908587269, -63622.412718712796, + -74571.19430952665, -87476.67720926105, -99744.88446443719, + -108593.79043908184, -112594.23611615897, -110186.0868498163, + -101436.21622123773, -87412.18722531854, -70612.6461969571, + -52266.58852021753, -34921.486316597555, -20251.672542324977, + -7990.359890362718, 1092.6755298531043, 8123.328424433002, + 13962.475763784472, 18749.044708596353, 23106.106106090607, + 26460.597005385443, 28269.932147919168, 28082.665745311348, + 25433.434171836438, 20461.854329087142, 13977.61678156226, + 6933.160656220798, 275.3652219829658, -4563.464542134639, + -7515.171987579627, -8653.525874705887, -8395.588289407835, + -7779.223029028951, -7663.657197842909, -8551.277174036273, + -10540.79929088301, -13077.521185131827, -15509.550920423606, + -16940.52983796794, -16723.61284988757, -14805.71784990907, + -11571.81098764967, -7731.493151553195, -4213.364174630097, + -1859.2735968614957, -809.4459267247516, -953.1222089714836, + -1618.4757298318905, -1885.7817593245056, -1042.5666772538586, + 1243.319784599787, 4674.486988986837, 8475.247125314136, + 11745.82958848031, 13368.226495930534, 13230.332495094379, + 11893.968235782273, 10770.354447664387, 11974.9840092296, + 17746.017930148028, 29880.25109040813, 49406.52329522905, + 74616.22461313554, 104599.36211689527, 135666.93934395723, + 162940.44077868186 + ], + "flow:branch82_seg0:RESISTANCE_41": [ + 20.68256572528684, 24.535881594931933, 27.480289568679712, + 29.25701757702667, 29.743872498757415, 28.984616508354932, + 27.184614251923556, 24.70701937317247, 21.8255750351734, + 18.807241232679857, 15.90708441982196, 13.116123289570744, + 10.467649304542997, 7.918090659204053, 5.363474667066831, + 2.852364697252928, 0.3508679851621952, -2.0619116191638103, + -4.240536909993729, -6.166674898902831, -7.753351713973362, + -8.998458925589304, -9.960931771821455, -10.685757635376198, + -11.245128810465483, -11.674481645471957, -11.968805921651033, + -12.09874799299609, -12.023955895011888, -11.720875382955153, + -11.221345327433408, -10.62619152825992, -10.074542669543153, + -9.760827097760577, -9.84610241179319, -10.433113688803413, + -11.50708445661809, -12.980511733546482, -14.612963723043285, + -16.117389270068266, -17.23813060619231, -17.71965156560015, + -17.442151226546407, -16.4045047634991, -14.751276815989732, + -12.630972355458079, -10.323094803009736, -8.041128541339537, + -5.908405667201191, -4.0519967092768345, -2.4418965061473776, + -1.0456004357135045, 0.17323271899674997, 1.266040732041491, + 2.200968495265086, 2.936484282838419, 3.4062613454520054, + 3.545479773457493, 3.3363239492606676, 2.826300171387561, + 2.0999461177972094, 1.2801712391126074, 0.5259702409577834, + -0.08778383498681794, -0.5057109347545624, -0.7358500606237875, + -0.8535012479345074, -0.9476244315423031, -1.097680833547459, + -1.3487182343168473, -1.6845320978900578, -2.0525211867618567, + -2.3587180728769845, -2.5171625190770293, -2.4787677239019743, + -2.2440157993210232, -1.8624065042242448, -1.4279599573007369, + -1.0397613764578868, -0.7600614349672287, -0.6163851331414365, + -0.5703946162406875, -0.5423004602778915, -0.44395990154483156, + -0.20766738491554046, 0.17734125515796312, 0.6647406134358561, + 1.1625532114185746, 1.5473846034782055, 1.7565097136447134, + 1.7908233553631099, 1.7552543248873969, 1.8569893922038851, + 2.361000896635253, 3.5363108803913974, 5.583094494807361, + 8.501459825686016, 12.24157748978066, 16.451758594037656, + 20.68256572528684 + ], + "pressure:branch82_seg0:RESISTANCE_41": [ + 104519.692166477, 123992.48842710219, 138872.10341860034, + 147850.8281552999, 150311.157653337, 146474.24479414927, + 137377.90325508968, 124857.33605468221, 110295.90885059544, + 95042.70844583985, 80386.71743677108, 66282.54863792924, + 52898.44101303452, 40014.20371334669, 27104.409026930098, + 14414.472752717455, 1773.117237363239, -10419.904888589064, + -21429.62427099774, -31163.394845932813, -39181.6926955182, + -45473.862835364365, -50337.73547782364, -54000.65511454004, + -56827.44671301697, -58997.18845307189, -60484.56111041348, + -61141.225543488596, -60763.262424131855, -59231.63998218613, + -56707.25648332435, -53699.636794959246, -50911.870051559345, + -49326.503157236824, -49757.443384409366, -52723.91470069734, + -58151.243956589235, -65597.23336910972, -73846.85682903804, + -81449.49651847653, -87113.18162437044, -89546.55585449998, + -88144.2032450968, -82900.43947150023, -74545.8243599188, + -63830.83026984754, -52167.93241936843, -40635.977710652725, + -29858.226959504966, -20476.833210079094, -12340.164876783123, + -5283.959307635888, 875.4344457649728, 6397.958035807234, + 11122.631140099393, 14839.572486826586, 17213.598737895067, + 17917.14139465716, 16860.16893532926, 14282.755234874303, + 10612.112864215893, 6469.366789868688, 2657.9994186326026, + -443.61707980892, -2555.618675545551, -3718.630601185023, + -4313.182846011712, -4788.835930211075, -5547.148470036775, + -6815.770177768452, -8512.811159630708, -10372.45018122851, + -11919.821271651641, -12720.522933246937, -12526.494193013381, + -11340.171411856718, -9411.702450065613, -7216.219551551613, + -5254.451523928605, -3840.9831867840644, -3114.9125900364197, + -2882.498742890503, -2740.5244553721104, -2243.5587953671225, + -1049.4506065005914, 896.1970020407597, 3359.277819284856, + 5874.982117719786, 7819.734000457567, 8876.551245917912, + 9049.955808829978, 8870.207117815224, 9384.326983776915, + 11931.35755973403, 17870.80624003666, 28214.261503358117, + 42962.26956310401, 61863.01679678197, 83139.23749526283, 104519.692166477 + ], + "flow:branch83_seg2:RESISTANCE_42": [ + 29.897507977181295, 35.057175134379776, 38.843972734324716, + 40.95532723316114, 41.30677083187082, 39.9798912212256, 37.26887217518152, + 33.72744326501946, 29.697758172257284, 25.494415554474884, + 21.524162473988973, 17.671666412235652, 13.970294476220745, + 10.38583387929842, 6.7178291045650536, 3.1182599182800175, + -0.46894234002942703, -3.9411134628041298, -6.992829207262614, + -9.660852056672917, -11.820002801636253, -13.460186253831136, + -14.712658575115872, -15.634952648259485, -16.33427889164508, + -16.85870425671913, -17.181510451248656, -17.253413244044946, + -17.018253364472386, -16.452436876738595, -15.623116865714595, + -14.710092073642592, -13.922185735368151, -13.55061963042944, + -13.811160072668825, -14.8162071045174, -16.48028648848581, + -18.65014782034227, -20.9363943626532, -22.88557056026472, + -24.181683678005207, -24.477977926554164, -23.668288306273492, + -21.814962038720743, -19.219563049209476, -16.083157545570128, + -12.815956556529716, -9.73383542518897, -6.914391733106582, + -4.5340006387084815, -2.498687078947267, -0.7232490924152036, + 0.8195432429936765, 2.2125173012806085, 3.387403750382351, + 4.270805881475802, 4.774432656166482, 4.80961102199374, 4.368865032071877, + 3.5484231628258183, 2.4815577227863406, 1.3344961053387685, + 0.35295695124421206, -0.4003115850087535, -0.8768210327839863, + -1.100592631982496, -1.2052085584144643, -1.320917639206447, + -1.5466981468563974, -1.9284996980910631, -2.4144198822834864, + -2.917553408231232, -3.2993731555443406, -3.440330470246063, + -3.2955608069821865, -2.890550065890849, -2.3131155423854795, + -1.7048499263065997, -1.2076399358551186, -0.8840418452315724, + -0.7517932911881492, -0.7348022141211239, -0.7049880256583787, + -0.5405966652249714, -0.16195156493963628, 0.41964779795082185, + 1.1133954886372268, 1.7836549653236948, 2.2449299738763497, + 2.440960474304722, 2.410337177457828, 2.33665554874924, 2.542171025647862, + 3.40859445994595, 5.293152190071287, 8.453501394297561, + 12.773065067350506, 18.16819670159552, 24.12017982036378, + 29.897507977181295 + ], + "pressure:branch83_seg2:RESISTANCE_42": [ + 117851.48677580939, 138190.1198889183, 153117.10736938278, + 161439.7497444153, 162825.08763469686, 157594.7274653345, + 146908.29749606134, 132948.51654401663, 117064.10304096849, + 100495.15765221289, 84845.01621672712, 69659.05526567117, + 55068.80292415179, 40939.397524910084, 26480.6735224525, + 12291.71233278932, -1848.500283930756, -15535.277438446275, + -27564.682630880005, -38081.62804969823, -46592.67604946677, + -53058.0329137769, -57995.09072212449, -61630.635458746714, + -64387.27449325552, -66454.48053009706, -67726.93407354061, + -68010.36408519352, -67083.39915357705, -64853.03552686514, + -61583.98058132527, -57984.9739587333, -54879.16549213184, + -53414.5077040666, -54441.51900235371, -58403.26347528383, + -64962.81451422856, -73516.08203913111, -82528.12258622368, + -90211.48245192574, -95320.56572642578, -96488.51316007983, + -93296.83826697807, -85991.30443190395, -75760.63136297141, + -63397.391857598755, -50518.57619016169, -38369.31752857279, + -27255.493886612057, -17872.349652756882, -9849.449240591035, + -2850.939312917072, 3230.5163941278497, 8721.410950775939, + 13352.636901950804, 16834.875443363147, 18820.096560210543, + 18958.76439561184, 17221.409889597136, 13987.351245727874, + 9781.927890898565, 5260.383247683878, 1391.3032987133333, + -1577.9681538296054, -3456.2968401491307, -4338.370880697247, + -4750.7511526540975, -5206.858973252249, -6096.851829238968, + -7601.856209558772, -9517.280605638789, -11500.557410010922, + -13005.633516540753, -13561.266083717182, -12990.60581100508, + -11394.114289563535, -9117.954110502644, -6720.262394384942, + -4760.335277407491, -3484.760198479154, -2963.456258034679, + -2896.479983764364, -2778.9569300017743, -2130.9508736115345, + -638.3887489345767, 1654.1886015546027, 4388.837819040807, + 7030.900024135812, 8849.176838779616, 9621.899633819428, + 9501.187196311039, 9210.745280616477, 10020.856428557956, + 13436.167496868977, 20864.811067418574, 33322.43304491197, + 50349.50438077649, 71616.30310300736, 95078.12675555631, + 117851.48677580939 + ], + "flow:branch84_seg0:RESISTANCE_43": [ + 41.896997711181996, 47.58550559419169, 50.79020407048045, + 51.30237572004833, 49.32407055291832, 45.223686352248485, + 39.627870497731564, 33.50083847337667, 27.373149170406734, + 21.556119163176525, 16.583685444590795, 12.088377598092984, + 7.954757864693446, 4.076851874126022, 0.06247931003236348, + -3.8207442599351102, -7.6555263401737434, -11.294132446245362, + -14.229826472625017, -16.598242036433465, -18.25220344469673, + -19.22806654822981, -19.80074500963637, -20.06818386574459, + -20.19509422068379, -20.230392039974262, -20.090135656476665, + -19.672229965344627, -18.881096714726688, -17.694780166538717, + -16.242739213775174, -14.843338559713311, -13.815641758401421, + -13.58192277465298, -14.408379145626087, -16.354922760377782, + -19.15623562300381, -22.481427032140996, -25.66812543619655, + -28.00104561935989, -29.094477167278676, -28.541129728524496, + -26.343830462698335, -22.76681071223584, -18.441898246317056, + -13.699548051542973, -9.191556811745176, -5.358558066299588, + -2.153954573464642, 0.23028975636552318, 2.070521362632884, + 3.5897872527356314, 4.833555806554413, 5.9597215839762505, + 6.832317650198914, 7.312877956394253, 7.281845782320303, + 6.618633477078771, 5.353368843312653, 3.6878876671502185, + 1.8655721689362148, 0.13450535785472625, -1.1395340544682266, + -1.9273674444679019, -2.2416991714122583, -2.1881659475170157, + -2.030261126154621, -1.991644687773375, -2.20730658369137, + -2.7080243449908945, -3.3573258849183114, -3.9879851920720646, + -4.369636217688863, -4.331893784357768, -3.854186565633905, + -3.030551618181658, -2.0413473811330882, -1.1252390733268058, + -0.5010105522943147, -0.21347459521312923, -0.23748819114547123, + -0.40456308290657983, -0.4794330829077623, -0.275123549099792, + 0.2993381916638986, 1.174115857530615, 2.154427814969289, + 3.0076286605387423, 3.445921044664149, 3.4307535335502797, + 3.0977127366797834, 2.8031498142368294, 3.0877887072189623, + 4.530190033569288, 7.601430129177827, 12.576354467068402, + 19.041897099199716, 26.7575222750126, 34.79212225484828, + 41.896997711181996 + ], + "pressure:branch84_seg0:RESISTANCE_43": [ + 159590.38469949033, 181258.55213414898, 193465.60969475558, + 195416.52921290323, 187880.94194119485, 172262.1165420169, + 150947.02348722704, 127608.46819090178, 104267.40924626516, + 82109.68656021636, 63169.12629591056, 46045.99223484153, + 30300.568946939053, 15529.188116056554, 237.99073129042588, + -14553.645358661846, -29160.762356471623, -43020.62296607605, + -54203.01226898993, -63224.5739942975, -69524.69934559296, + -73241.87185471604, -75423.26863629112, -76441.97337078273, + -76925.38921138736, -77059.84258197485, -76525.59021493584, + -74933.74035315051, -71920.22466677146, -67401.41127575746, + -61870.42368928452, -56539.94893140541, -52625.33602747916, + -51735.07408592245, -54883.13951748567, -62297.743457702774, + -72968.25976753229, -85634.28848495318, -97772.78174239869, + -106659.13756366279, -110824.14152356322, -108716.37878523997, + -100346.61831814407, -86721.34707581821, -70247.26821733633, + -52183.12201810587, -35011.6754829444, -20411.351408290746, + -8204.655650366944, 877.1996280995937, 7886.849150122812, + 13673.904096963106, 18411.558650383045, 22701.250978533295, + 26025.06770773469, 27855.576057420643, 27737.37101006428, + 25211.120617119854, 20391.58507327869, 14047.579628168209, + 7106.174580278171, 512.3460624124913, -4340.61360158605, + -7341.559747079804, -8538.884709887387, -8334.970628632844, + -7733.493373365579, -7586.399008768147, -8407.879468341054, + -10315.169835601437, -12788.432556176247, -15190.684911745266, + -16644.436667872254, -16500.671486979518, -14681.030868926222, + -11543.71255743187, -7775.722167639895, -4286.162407840571, + -1908.405641146803, -813.1487847520827, -904.6192772039063, + -1541.0263637828616, -1826.2146291795625, -1047.9765959243127, + 1140.2128976457768, 4472.339585683335, 8206.458280575467, + 11456.396429105765, 13125.90150141571, 13068.126742700797, + 11799.536824646575, 10677.513465481072, 11761.735078318074, + 17256.0042417116, 28954.70379392028, 47904.75110776057, 72532.73144816073, + 101922.41704074846, 132527.11359985927, 159590.38469949033 + ], + "flow:branch87_seg2:RESISTANCE_44": [ + 27.39424620639035, 32.569068025175895, 36.50443372229334, + 38.84831149715958, 39.41919016561251, 38.244918839161194, + 35.58471814106496, 31.983319967937582, 27.792996163033074, + 23.39109251295261, 19.220815878200632, 15.253534799596986, + 11.547370706313544, 8.064665762839585, 4.618669551189077, + 1.2880838241095554, -1.9847550037698465, -5.143560924826138, + -7.950868296825737, -10.384402958048499, -12.33364701285778, + -13.78054780936762, -14.816473000406337, -15.509220599081926, + -15.967066207123729, -16.2548201842771, -16.37597760339981, + -16.295821153260125, -15.962580358582859, -15.339786429729028, + -14.47054440414967, -13.491981334496009, -12.589758475889163, + -12.040761853271404, -12.06525902587598, -12.80779619808048, + -14.23890621735526, -16.239891540782057, -18.4730201211646, + -20.51112521822212, -22.005814680373263, -22.58614617533833, + -22.087177837308776, -20.5166045376563, -18.09135018829016, + -15.046510440743775, -11.774683280992727, -8.594369851136967, + -5.682199934553095, -3.218454521976715, -1.1606552358897941, + 0.5488707925289493, 1.9795563496665165, 3.216453128141329, + 4.2263191231030595, 4.97450472028419, 5.380629791556933, + 5.357533544783883, 4.882142506089648, 4.024641570488205, + 2.896504992708731, 1.6544445356332598, 0.5379975524005587, + -0.357532043355414, -0.9621461801727279, -1.2762835550317304, + -1.4094340900496265, -1.4900433666081452, -1.6333561057846213, + -1.9101968172770885, -2.3066777968211927, -2.753461347571735, + -3.1260858402238156, -3.3051096407725824, -3.2205450088643643, + -2.8703554605191948, -2.318931636368461, -1.6979247208830763, + -1.142213917123182, -0.7404232629277098, -0.5373867087893426, + -0.4811269901925202, -0.46288372358255747, -0.36044505083900713, + -0.0770154123748414, 0.40615209280941283, 1.0303361328801246, + 1.67904097952133, 2.1744712668105888, 2.4313456235296074, + 2.449419779464132, 2.3616956583240216, 2.445963208842351, + 3.0609532863252626, 4.571781315292332, 7.257736015854605, + 11.126970531894477, 16.10238497501398, 21.720196588573597, + 27.39424620639035 + ], + "pressure:branch87_seg2:RESISTANCE_44": [ + 118395.04800065071, 140760.0830891866, 157768.31931148935, + 167898.3122878391, 170365.5897900069, 165290.51274595852, + 153793.4053983251, 138228.54165414925, 120118.40333232401, + 101093.83919506407, 83070.34263203196, 65924.17149104246, + 49906.52046985833, 34854.63636804888, 19961.403540452033, + 5566.962676595153, -8577.90216859967, -22229.928796034827, + -34362.815700694395, -44880.29630067279, -53304.723886492495, + -59558.076797335525, -64035.23640940417, -67029.21859746553, + -69007.97911281255, -70251.6215069468, -70775.25111677453, + -70428.82337825256, -68988.5917477025, -66296.94195578084, + -62540.169436210206, -58310.92287360639, -54411.610665958644, + -52038.90506211252, -52144.779263015225, -55353.94674596431, + -61539.053580063395, -70187.10148146987, -79838.4480990754, + -88646.92375409877, -95106.81424657756, -97614.94586973221, + -95458.45724482901, -88670.60479581643, -78188.91083192179, + -65029.43400788153, -50888.941485838055, -37143.961669707445, + -24557.869887428635, -13909.821600729172, -5016.229734159576, + 2372.161779449094, 8555.43413288336, 13901.171787282194, + 18265.706297446803, 21499.285678470293, 23254.515479111822, + 23154.695932161743, 21100.105912739273, 17394.077147931806, + 12518.389630515398, 7150.335100843621, 2325.1687803644327, + -1545.2158499241682, -4158.294494653204, -5515.963155985369, + -6091.425750063665, -6439.810556695744, -7059.1931272552, + -8255.66953616169, -9969.21858769829, -11900.170056061785, + -13510.613882892529, -14284.335900995377, -13918.856464968363, + -12405.374105449344, -10022.17839211916, -7338.251883840502, + -4936.528295976376, -3200.031389609682, -2322.5287785854425, + -2079.3801979107093, -2000.5347202976268, -1557.8055615830112, + -332.85250399714226, 1755.346584879318, 4453.004291123892, + 7256.6383417809475, 9397.835883871612, 10508.019809533285, + 10586.134408609292, 10206.999992756326, 10571.19547429657, + 13229.117842185318, 19758.75752136034, 31367.170956238235, + 48089.595176309536, 69592.81258109643, 93872.4029240799, + 118395.04800065071 + ], + "flow:branch88_seg0:RESISTANCE_45": [ + 16.395687834881567, 20.457258784877265, 24.240372098508534, + 27.410706461771934, 29.68600157107671, 30.899672802079444, + 31.024543181710463, 30.188505857391025, 28.543104393295355, + 26.315683277049406, 23.748936297572342, 20.964795266989007, + 18.089924273754686, 15.1733930238989, 12.209040342057708, + 9.235382352560679, 6.2457556581831035, 3.2899288118852783, + 0.46166575956787426, -2.184638605240027, -4.5632188275480985, + -6.6294602782698036, -8.378491372601067, -9.822361895808692, + -11.001719492082549, -11.952624824303163, -12.695005858213811, + -13.229111821120584, -13.539299692140906, -13.607558619893329, + -13.441901171165666, -13.08996231020912, -12.641071615810908, + -12.23646345953247, -12.023880044650907, -12.13796937915235, + -12.65168144265615, -13.57675280475645, -14.809553890083311, + -16.174772001227343, -17.46160379379915, -18.429446570314546, + -18.893296003813514, -18.740334149259123, -17.95981245629589, + -16.604241407392923, -14.82678516501548, -12.792064777633717, + -10.654708130554221, -8.561350104044195, -6.579743271856789, + -4.750893988066543, -3.081497995763723, -1.5611528089649391, + -0.20401874476445833, 0.9698295872140874, 1.9147815748947103, + 2.5781384280981623, 2.923438813067342, 2.9498034008922422, + 2.687110483758835, 2.2074964330941174, 1.6216746456692115, + 1.0166100326787042, 0.47597346389182044, 0.04523741887410573, + -0.28017629836297414, -0.5345814586038193, -0.7691666845116018, + -1.031100587588236, -1.3403885718623736, -1.6873054135826402, + -2.026898526873519, -2.299845718889619, -2.4515037120319083, + -2.4501788103851108, -2.297355345513701, -2.034078254314475, + -1.7210284266271623, -1.42001757706776, -1.1792945808290993, + -1.0089079221137607, -0.8841532117553355, -0.7558886850383513, + -0.5684578309079885, -0.2870503536730233, 0.09068907025346797, + 0.5274163759754804, 0.9494929508725645, 1.294065460292507, + 1.5226180707934032, 1.6577653882024268, 1.8006008356036283, + 2.1203528597406645, 2.829703263047474, 4.135444628351657, + 6.165395918220865, 8.982241345145358, 12.467184217140359, + 16.395687834881567 + ], + "pressure:branch88_seg0:RESISTANCE_45": [ + 68165.96889684157, 85052.17225945114, 100780.67276929924, + 113961.51127849962, 123421.17513731195, 128467.07965907565, + 128986.23509188509, 125510.36419094574, 118669.5176126274, + 109408.89249830932, 98737.50154899109, 87162.28294234199, + 75209.84955370212, 63084.21136966152, 50759.7529666577, 38396.60723814252, + 25967.0707457141, 13678.058970276768, 1919.4006451240489, + -9082.754484920992, -18971.83184998212, -27562.343689536257, + -34834.036123337, -40837.00679265017, -45740.25050132496, + -49693.69142755337, -52780.18117880977, -55000.75593125, + -56290.37897000812, -56574.169195401635, -55885.439292075855, + -54422.23422918065, -52555.94661621111, -50873.766077402586, + -49989.93890328242, -50464.27155132021, -52600.05755160259, + -56446.09233412127, -61571.530271497046, -67247.49923595399, + -72597.57279379042, -76621.43207102362, -78549.91145993973, + -77913.96418374497, -74668.90255646326, -69033.04178090152, + -61643.17023945541, -53183.70894470432, -44297.53178680796, + -35594.28130033346, -27355.642516220887, -19752.10159428301, + -12811.496452624078, -6490.578186827462, -848.2190896793663, + 4032.119551374756, 7960.8091220688475, 10718.75151999352, + 12154.356755890845, 12263.968971722214, 11171.808801373338, + 9177.7871543793, 6742.201033024881, 4226.611811940557, 1978.8857083712032, + 188.07704312374184, -1164.8482840244658, -2222.551651813407, + -3197.852558608206, -4286.857086503391, -5572.738796898602, + -7015.064540143657, -8426.941481892367, -9561.734360900242, + -10192.26076196414, -10186.752410905834, -9551.380497382264, + -8456.791591404834, -7155.269811275696, -5903.800741159833, + -4902.98171852157, -4194.589866017002, -3675.9153345393015, + -3142.6485495888946, -2363.3945224552945, -1193.4275449345917, + 377.0447696024852, 2192.7624289072214, 3947.5688735207646, + 5380.147927013537, 6330.367905313626, 6892.250269004092, + 7486.096453620795, 8815.482982052712, 11764.646080039434, + 17193.337220723843, 25632.97073173415, 37344.159654862604, + 51833.000245879404, 68165.96889684157 + ], + "flow:branch89_seg0:RESISTANCE_46": [ + 36.38985596588262, 40.486279993889596, 42.320950040772374, + 41.81546232343411, 39.36318696623989, 35.35753188433487, + 30.33791475128497, 25.114080970031594, 20.205705754635282, + 15.585443623676486, 11.759843725208489, 8.325265620952015, + 5.0571259405737425, 1.9931766443796768, -1.274674362145863, + -4.429509659245265, -7.487714192284273, -10.372755911356194, + -12.55979489122572, -14.259738557228086, -15.384664070795447, + -15.956531107688955, -16.27487558340617, -16.398296895336447, + -16.446768216852856, -16.439400334330443, -16.26438617495281, + -15.827488676645906, -15.057945577546711, -13.971309954898434, + -12.702856610556353, -11.589724077593514, -10.894735522769887, + -10.961847999022655, -11.982845580834136, -13.931948058573255, + -16.49586697096918, -19.334384238058018, -21.88787816441678, + -23.49915077870453, -23.95473875173784, -22.980925005529112, + -20.655361700910017, -17.287683062453187, -13.51899778433388, + -9.55584668556077, -5.943725362640995, -3.0567702146145814, + -0.6791126157094626, 1.0121300546316823, 2.3071230801143785, + 3.439483308012784, 4.353687251379773, 5.2097581165866504, + 5.8430542010020075, 6.0906321303928745, 5.8894341387419225, + 5.146257965461511, 3.9252026449296693, 2.4292638322491413, + 0.9159017079304782, -0.4515330863881601, -1.3590354780042968, + -1.8223676122683958, -1.9250603944742986, -1.7699417034119433, + -1.60337593404623, -1.6099542081591451, -1.8678796678411378, + -2.36514911057111, -2.93943431412408, -3.4392402332255254, + -3.6688957472991786, -3.5006169416755224, -2.965222685200137, + -2.184474006888857, -1.3329965944673685, -0.6081476234974462, + -0.19981873193162003, -0.08105745362345766, -0.1956419587356831, + -0.3752694174213661, -0.406058843503366, -0.14748441525566147, + 0.4362325450733209, 1.246712180087278, 2.0676648393616204, + 2.7117736979369, 2.9438018492413436, 2.7792438720161092, + 2.4103392621601936, 2.1949691459748024, 2.6262364093579755, + 4.186024668406014, 7.216070416425704, 11.889925669249143, + 17.63960823576475, 24.2819636015045, 30.94979052730891, 36.38985596588262 + ], + "pressure:branch89_seg0:RESISTANCE_46": [ + 174172.47865736284, 193779.16045512722, 202560.427132399, + 200141.01528470765, 188403.7092147672, 169231.47410298124, + 145206.1204771207, 120203.32632954701, 96710.40901084218, + 74596.48506043579, 56286.0466434123, 39847.152735135845, + 24204.88173346481, 9539.925546266328, -6100.963778043252, + -21200.926909716487, -35838.38698264693, -49647.039254079355, + -60114.84655734952, -68251.27342759764, -73635.4954807574, + -76372.61813855279, -77896.30777488102, -78487.03822014434, + -78719.03612144494, -78683.77128382452, -77846.1024024901, + -75754.9833755151, -72071.72535081892, -66870.76989851659, + -60799.58172859981, -55471.80432486309, -52145.38612343342, + -52466.60603562194, -57353.39865425715, -66682.372366694, + -78954.0370984035, -92540.0097547369, -104761.77745855757, + -112473.7987780832, -114654.37587583228, -109993.41887488363, + -98862.59369602364, -82743.90016968946, -64705.871748116144, + -45737.07311329546, -28448.40550730405, -14630.595006053383, + -3250.431320105137, 4844.350043707333, 11042.564878737061, + 16462.371646067837, 20838.018721005432, 24935.423905549975, + 27966.563925727205, 29151.544203288133, 28188.55185345259, + 24631.49363644116, 18787.16625151687, 11627.166190822141, + 4383.77307198729, -2161.169225999802, -6504.740717007425, + -8722.383632165436, -9213.901280209777, -8471.457920890942, + -7674.22550158664, -7705.711042735306, -8940.217622368496, + -11320.294407558955, -14068.99111723395, -16461.208219141645, + -17560.406582583506, -16754.97507143778, -14192.421792945981, + -10455.530593445916, -6380.111015496869, -2910.7721413741206, + -956.390809992058, -387.9646466445338, -936.399553609007, + -1796.1490327928955, -1943.5162183660316, -705.9034856436344, + 2087.936366597721, 5967.128608084906, 9896.447802431032, + 12979.340917708241, 14089.895415886538, 13302.272876160008, + 11536.587671278772, 10505.763394318614, 12569.934472589322, + 20035.536631436273, 34538.22053523002, 56908.65681926495, + 84428.31683226474, 116220.56957595452, 148134.73664532858, + 174172.47865736284 + ], + "flow:branch90_seg2:RESISTANCE_47": [ + 31.603132432321424, 35.50852183886862, 37.48850523162609, + 37.431226129464854, 35.59573629779651, 32.28254244539583, + 27.964336863239232, 23.399694656162286, 18.944158391745784, + 14.74331788717305, 11.24130893377606, 8.066441302002954, 5.10808695836772, + 2.334528642025578, -0.6001631143452716, -3.412245251272646, + -6.1704413713531325, -8.80552975077751, -10.840815239935, + -12.457578032484143, -13.56060450867249, -14.159331799255266, + -14.504585819948153, -14.65074206353044, -14.712602325575071, + -14.720940890432875, -14.591090889150962, -14.24254224333153, + -13.609438057780869, -12.68627963961626, -11.585111339438878, + -10.571259300992212, -9.879639336531872, -9.825120051515588, + -10.588432482478774, -12.182416661514113, -14.355125887098891, + -16.853767332472064, -19.168860926662937, -20.73795261223325, + -21.34076834141472, -20.690315032406822, -18.83320788657455, + -15.998028898283504, -12.725943063894968, -9.219458286539304, + -5.948925620166738, -3.2674847202877206, -1.0391512899201787, + 0.577080055293534, 1.812380369967711, 2.8649060593115716, + 3.72430948179741, 4.513572580376162, 5.111418966919808, 5.397550872429526, + 5.294581954234483, 4.716640797767798, 3.700715474229098, + 2.4224369548466593, 1.072709580803002, -0.18019204211725068, + -1.0428733445676095, -1.5339964230423013, -1.6910658743879365, + -1.5939375052615643, -1.4560706290682883, -1.4421139529611229, + -1.6355839195054112, -2.0434825426495133, -2.539837834526015, + -2.994869175827491, -3.239413736969681, -3.149062197186883, + -2.732345088254037, -2.0786964917754958, -1.3326119853906555, + -0.6717699434132922, -0.25937797935987034, -0.10344927458163702, + -0.1677548238748718, -0.3141695399472209, -0.35890216928773105, + -0.17007516803557768, 0.3032213957067395, 0.9868774412034647, + 1.7165583454241524, 2.3223424045898344, 2.5821449389475135, + 2.4987837369447883, 2.2065574497111755, 1.9959972044866428, + 2.2873280587565468, 3.5100324488710695, 5.9872249536546835, + 9.908742227451123, 14.851247680583828, 20.631629390032206, + 26.56755025521622, 31.603132432321424 + ], + "pressure:branch90_seg2:RESISTANCE_47": [ + 166253.52429018496, 186798.47355920024, 197214.50487466683, + 196913.17864941162, 187257.27969801569, 169827.67344623862, + 147111.03615781266, 123097.97809544303, 99658.88995605786, + 77559.67114089368, 59136.771706958025, 42434.8535009978, + 26871.939388541585, 12281.175453870794, -3157.2576902708247, + -17950.682578108423, -32460.631129224166, -46322.9509746845, + -57029.908148429706, -65535.15720176623, -71337.81108250264, + -74487.51538352633, -76303.7814716605, -77072.66065301198, + -77398.08683031866, -77441.95323495984, -76758.85574807246, + -74925.25773755093, -71594.70807396896, -66738.27997062363, + -60945.401333260634, -55611.864385249966, -51973.48275307604, + -51686.67500402274, -55702.2067572184, -64087.625132905814, + -75517.52268451202, -88662.04078316774, -100840.97494167558, + -109095.44222333512, -112266.65443429032, -108844.83682680395, + -99075.21640578224, -84160.28669726661, -66946.93599818392, + -48500.490749326396, -31295.310748417796, -17189.145774568326, + -5466.627860067982, 3035.825426342863, 9534.327791927983, + 15071.313900318486, 19592.348265545275, 23744.397813541964, + 26889.467972642124, 28394.712359563553, 27853.02727252761, + 24812.671880517704, 19468.228072116945, 12743.631726268926, + 5643.166819944248, -947.9301494940441, -5486.208346402183, + -8069.842827304172, -8896.132749687038, -8385.172840559118, + -7659.901252397978, -7586.479840924625, -8604.260716004199, + -10750.079134355781, -13361.23854240767, -15755.006448668051, + -17041.473707030655, -16566.164433618862, -14373.954906906918, + -10935.327959258326, -7010.426563158566, -3533.95730134883, + -1364.5009172500754, -544.2120815498912, -882.5020983485483, + -1652.7410171347192, -1888.0644394104668, -894.7086539826563, + 1595.1464869614765, 5191.632601418406, 9030.24012533094, + 12217.067728917666, 13583.802088209188, 13145.266647088492, + 11607.961753439644, 10500.274630367117, 12032.868950268668, + 18465.10836378047, 31496.790749931493, 52126.58334184339, + 78127.45373551341, 108536.11126325653, 139763.0083392922, + 166253.52429018496 + ], + "flow:branch91_seg0:RESISTANCE_48": [ + 36.02861065821236, 39.29955536593294, 40.30281006957662, + 38.99853712732234, 36.01892481976299, 31.792033526984124, + 26.826417892259347, 21.852579111989634, 17.479850930865005, + 13.358188619626642, 10.019442416526855, 7.036959639733222, + 4.02756348481057, 1.215075223170029, -1.8807992607232993, + -4.874077871135587, -7.687614126674619, -10.362870796158113, + -12.23964397959754, -13.65730468010581, -14.571937550684215, + -14.962495161167924, -15.201165440817764, -15.304274566136838, + -15.362378244953081, -15.37557793036365, -15.193726885226797, + -14.722944190487768, -13.913946625063316, -12.816008195327235, + -11.586691978299468, -10.614185685932858, -10.145856857797227, + -10.481241342435224, -11.78092523884714, -13.935413231146716, + -16.567023220812576, -19.279780251993287, -21.57697691797298, + -22.749924328712638, -22.736769031170095, -21.336693710325548, + -18.702882477039065, -15.180191970426428, -11.524422761626491, + -7.807036174371596, -4.531977459476617, -2.107480678076577, + -0.09845746186534005, 1.2735784377209574, 2.333868678068267, + 3.3585433054945835, 4.172329894644888, 4.9569185782359115, + 5.51919311311406, 5.6416055921242805, 5.315502303651548, + 4.462542466951481, 3.1822806309407845, 1.6951602039180405, + 0.3063253003376803, -0.8867883381320795, -1.5827721053025012, + -1.8307799594037248, -1.7916089457184303, -1.5635471862307828, + -1.4018284238375527, -1.474441839337689, -1.8129261403490855, + -2.3716064154545005, -2.9440281121306175, -3.3862461627974376, + -3.515681253967551, -3.2243178094068523, -2.5923475359432273, + -1.780740378113594, -0.9685326672405189, -0.33530271186056254, + -0.06761552065101478, -0.07319664960705809, -0.25868738799465857, + -0.4480951846502785, -0.42456837885989357, -0.0752949389339359, + 0.587699951470098, 1.435066265330495, 2.2056331237791054, + 2.7400362010504877, 2.826199221629002, 2.5308477750453076, + 2.1175737614970704, 1.983485897797118, 2.625868207596308, + 4.499319233011908, 7.8468001942409735, 12.81992531316762, 18.588685929555, + 25.06503882900674, 31.37063772996667, 36.02861065821236 + ], + "pressure:branch91_seg0:RESISTANCE_48": [ + 182401.17989820245, 198960.91293176103, 204040.0663695369, + 197436.95514125822, 182352.14363704587, 160952.76283886682, + 135813.46009730184, 110632.5262347333, 88494.8205325228, + 67628.17996612108, 50725.1899340171, 35625.846174305894, + 20390.248702996323, 6151.532083042262, -9521.877142650077, + -24675.876709339074, -38919.898982779996, -52463.85652456287, + -61965.35094265234, -69142.50764517982, -73772.99746199841, + -75750.26407508668, -76958.57435459578, -77480.58244130765, + -77774.74253737443, -77841.56826696129, -76920.91535827081, + -74537.495142302, -70441.80264202098, -64883.29618338902, + -58659.66656355422, -53736.182367373614, -51365.185282788865, + -53063.1282397819, -59643.006616139704, -70550.48111189711, + -83873.46965843516, -97607.27937866982, -109237.24164138376, + -115175.49426253301, -115108.89325434105, -108020.7656301278, + -94686.6329005024, -76852.39247092331, -58344.41769924779, + -39524.49410892584, -22943.933190277316, -10669.491697598167, + -498.4582221160475, 6447.714899055052, 11815.620775542391, + 17003.21634583454, 21123.15412124536, 25095.27236303405, + 27941.886115682366, 28561.620826452992, 26910.665557864115, + 22592.40632506122, 16110.85554636796, 8582.046758460816, + 1550.8257241518247, -4489.52197268208, -8013.062237006165, + -9268.64562991781, -9070.33548185804, -7915.7327020059265, + -7097.003016532282, -7464.621207233014, -9178.257529965758, + -12006.674710185362, -14904.660254604933, -17143.46693463894, + -17798.754854941963, -16323.676157867898, -13124.215467200016, + -9015.311446273257, -4903.367019909024, -1697.5289679266737, + -342.3154687552286, -370.5709159743877, -1309.6504120762058, + -2268.5607047766753, -2149.452111440001, -381.1938748405237, + 2975.3343971878908, 7265.275436556248, 11166.405721731233, + 13871.915316875664, 14308.130767041292, 12812.862108126767, + 10720.589708070984, 10041.746308283073, 13293.919764668008, + 22778.595173304253, 39725.80645511771, 64903.12728158285, + 94108.49278849608, 126896.16871370969, 158819.37248114895, + 182401.17989820245 + ], + "flow:branch93_seg2:RESISTANCE_49": [ + 25.34912972923017, 28.555915195175764, 30.222912473812304, + 30.2575083933464, 28.848901385714875, 26.24224203695107, + 22.81475562960907, 19.142754491484258, 15.56194626389825, + 12.170748509865765, 9.308341264054452, 6.727909697090802, + 4.326213836201662, 2.07944761707975, -0.269165513546623, + -2.5347350920075344, -4.755716293268233, -6.861044594845134, + -8.522810640685117, -9.85344594185217, -10.773737762979609, + -11.299344224985619, -11.61239557368664, -11.760096431331503, + -11.834454575669398, -11.858608483799184, -11.77150904008138, + -11.511851573587954, -11.02582945878253, -10.309487303042514, + -9.444744388011497, -8.639559918878705, -8.07876558214702, + -8.01051130565959, -8.586539479096599, -9.8234078501676, + -11.542755005018149, -13.536770189910646, -15.41302134225949, + -16.731469574894366, -17.29177366501748, -16.864066205371714, + -15.461254495371598, -13.258721902686473, -10.659065861582821, + -7.833455656100685, -5.174492942298456, -2.9522463714169924, + -1.090248785366336, 0.28056314616389294, 1.34030944979209, + 2.234111221071003, 2.959366174314754, 3.6226640437544004, + 4.128016722211922, 4.381088734505643, 4.323094511064514, + 3.8832043280071438, 3.0891624593472127, 2.070358689862675, + 0.9849397459475767, -0.03171115835868186, -0.7581881611362639, + -1.1864708807566442, -1.3428425862181674, -1.291100190671135, + -1.194560804121903, -1.1855775146192953, -1.3356965776282241, + -1.6545888402791469, -2.0491278954850918, -2.4185685807544552, + -2.624924887851795, -2.569929534066719, -2.253656059701877, + -1.74184138948772, -1.1470103147909145, -0.6096313297938692, + -0.263763638352398, -0.11815339407026303, -0.15096615951708026, + -0.2562104665257179, -0.28937702773901425, -0.14355525378093292, + 0.22582397685761657, 0.7675959337704753, 1.3530609305644512, + 1.8462728552358774, 2.0768314243619486, 2.033316568257577, + 1.8168626629940074, 1.6539100766874955, 1.8768980521421237, + 2.830250215415875, 4.782451944526078, 7.884750002382654, + 11.828214776915678, 16.479956896230767, 21.258113528817407, + 25.34912972923017 + ], + "pressure:branch93_seg2:RESISTANCE_49": [ + 162633.42426794348, 183207.32588864234, 193902.34692352155, + 194124.3053465376, 185087.04909568487, 168363.400579245, + 146373.5391121185, 122814.93471867501, 99841.40032440759, + 78084.35742001262, 59719.896903684814, 43164.51901469942, + 27755.86293542386, 13341.195148067827, -1726.8959380705596, + -16262.201189104255, -30511.43900727848, -44018.67789678643, + -54680.13670242317, -63217.14676124289, -69121.49976248929, + -72493.65413806647, -74502.11018190272, -75449.72047476012, + -75926.78299188461, -76081.74818519765, -75522.94080462765, + -73857.04602387609, -70738.85452597545, -66142.9895404792, + -60595.02387517758, -55429.16971051084, -51831.25908136011, + -51393.35739303345, -55089.00435690674, -63024.43017643839, + -74055.31440345017, -86848.39728342682, -98885.93675530222, + -107344.75775167333, -110939.52308608331, -108195.46325089037, + -99195.38812257536, -85064.51177942527, -68385.79466370514, + -50257.41438901283, -33198.20108403645, -18940.84498342789, + -6994.752686268143, 1800.0201849703158, 8599.076880615996, + 14333.476610806763, 18986.523787306287, 23242.070426141112, + 26484.281793489008, 28107.92601265442, 27735.850156529996, + 24913.629136059513, 19819.262998377406, 13282.882954635026, + 6319.1172751123795, -203.4505455013784, -4864.338074013131, + -7612.088627608792, -8615.328825181057, -8283.363071030017, + -7663.9914721261075, -7606.357022792487, -8569.481892396336, + -10615.41172121062, -13146.671699006101, -15516.90706215502, + -16840.835465259563, -16487.99957698961, -14458.871212800948, + -11175.20138679006, -7358.91989814353, -3911.2360765235503, + -1692.2389115849764, -758.0414504085024, -968.5596205122877, + -1643.7797253581343, -1856.5677570930798, -921.0131765227591, + 1448.8279096953454, 4924.695896731782, 8680.88706521337, + 11845.206513490957, 13324.410335939718, 13045.230335271546, + 11656.518368225721, 10611.056950519142, 12041.689812716602, + 18158.14937178765, 30682.967993108785, 50586.50557559638, + 75886.7500657558, 105731.11781157395, 136386.52820028376, + 162633.42426794348 + ], + "flow:branch96_seg2:RESISTANCE_50": [ + 28.450703401180967, 32.71064798880271, 35.39423099432949, + 36.28385948417319, 35.42447070119641, 33.02554166123202, + 29.48511118413548, 25.40342266283925, 21.182316429662787, + 17.099272449540848, 13.488342600431206, 10.192352390637767, + 7.160645051020505, 4.303184336903706, 1.396526802201779, + -1.4374736052990054, -4.251626939774113, -6.922435151771168, + -9.164814589078993, -11.022091408308686, -12.383199220075966, + -13.269800721050002, -13.836856138824738, -14.159255043880169, + -14.351886051997813, -14.45607073192567, -14.431763214016648, + -14.216837707793468, -13.745565342882157, -12.996690381114886, + -12.043428526465766, -11.080893970015293, -10.326293096856636, + -10.062384085167709, -10.487953407204031, -11.673626812787745, + -13.486331432950953, -15.71560379206731, -17.932958767287317, + -19.67273884983718, -20.625630198960895, -20.495934362282856, + -19.239726213230952, -16.997317990944918, -14.143562749451801, + -10.91780570643557, -7.761615953536797, -4.978413705355936, + -2.6024892866583462, -0.7650226847791051, 0.6857266133951826, + 1.881070311153173, 2.867768558224564, 3.749175608779333, + 4.456280853269368, 4.902912951988155, 5.002898292633314, + 4.673098692891517, 3.9200508348196275, 2.857101022147287, + 1.6404710452056006, 0.4476510626889004, -0.4892324987362404, + -1.1178411008791322, -1.4207362963993069, -1.4607730536260852, + -1.3990895534857826, -1.3851051271476176, -1.5216716416846248, + -1.8437675160878595, -2.2791799152693826, -2.7235119976689366, + -3.023580923180308, -3.0595583101765835, -2.7995075036598083, + -2.289634192970997, -1.6404655697827555, -1.0074619063245727, + -0.5407505360633057, -0.2900924720203729, -0.2524365707328854, + -0.3297801523475752, -0.3732170897468621, -0.25237961080290017, + 0.1068120537491351, 0.6769301223202747, 1.3437146405802303, + 1.9515345599219875, 2.3132917041763963, 2.379178867464433, + 2.212805889312053, 2.031703050856297, 2.1844810964564942, + 3.061876167526202, 5.004594419022762, 8.223476317501813, + 12.521613630757969, 17.75709266212737, 23.33144552088416, + 28.450703401180967 + ], + "pressure:branch96_seg2:RESISTANCE_50": [ + 143776.10596810968, 165303.8072629282, 178865.33891071347, + 183361.09137856547, 179018.15577563946, 166895.12770859207, + 149003.50301763334, 128376.62173840804, 107045.1907180145, + 86411.459604922, 68163.56515716763, 51507.22344952251, 36186.43965100345, + 21746.214091755235, 7057.371576005556, -7264.296930992398, + -21485.667922168926, -34982.64193696331, -46314.54396600237, + -55700.32346706149, -62578.7045819022, -67059.160110818, + -69924.78415836836, -71554.03242276308, -72527.496447364, + -73053.99547167559, -72931.15702295135, -71845.02737891061, + -69463.44459264427, -65678.99243546529, -60861.6676932017, + -55997.48319713366, -52184.09505087166, -50850.42644186154, + -53001.048135781755, -58992.86854179711, -68153.40168863868, + -79419.06687857982, -90624.50736947858, -99416.51514456986, + -104231.96753095441, -103576.54744889808, -97228.27853585081, + -85896.23104145132, -71474.73115013917, -55173.31392666137, + -39223.45616850706, -25158.49701011768, -13151.723181785532, + -3866.054945771091, 3465.3309214348924, 9506.02031085756, + 14492.316422032003, 18946.521708792225, 22519.889900392525, + 24776.952688914902, 25282.230281850556, 23615.582482951395, + 19810.042524433895, 14438.40784986722, 8290.147892206036, + 2262.212140007559, -2472.34462324053, -5649.028718524029, + -7179.71466024841, -7382.041083200562, -7070.322482520261, + -6999.651949889371, -7689.793117538473, -9317.510011462346, + -11517.873860529378, -13763.313478077782, -15279.716816993068, + -15461.529144522383, -14147.358039943007, -11570.704727923572, + -8290.120222063448, -5091.22561084132, -2732.6918874033363, + -1465.9871641706136, -1275.6924365683087, -1666.5495211665684, + -1886.058811547945, -1275.4045886090207, 539.7765018987528, + 3420.8777065130243, 6790.484433046361, 9862.112571743299, + 11690.258356881446, 12023.220239658494, 11182.45160910034, + 10267.245382886234, 11039.311794182053, 15473.242475447298, + 25290.80168495512, 41557.47525041165, 63278.18412365832, 89735.7650626494, + 117905.85056187243, 143776.10596810968 + ], + "flow:branch97_seg0:RESISTANCE_51": [ + 27.168876251555496, 32.181381808390164, 36.02052964964859, + 38.36069430802061, 39.05013715868771, 38.13119041575993, + 35.85236369420601, 32.684721083191384, 28.966314033786986, + 25.033682405530723, 21.239464337327195, 17.552553149602918, + 14.020121522452367, 10.594848016076726, 7.128748034801883, + 3.7089419913322383, 0.2929535440613211, -3.011712189496413, + -5.980629142605842, -8.596446630060779, -10.739204738133086, + -12.401656170434936, -13.67376264451756, -14.617143767663652, + -15.332057174497292, -15.868296034951213, -16.21659683045227, + -16.33680395792809, -16.176109673117463, -15.706318447462243, + -14.976928661584761, -14.133045181980789, -13.365309150862329, + -12.937910718028126, -13.0620160748954, -13.864963353765372, + -15.307896510043589, -17.26214776676815, -19.39150712961551, + -21.298812743379013, -22.654879618335418, -23.12834669043006, + -22.584380960524324, -21.048604281239005, -18.74685783696087, + -15.88358214707611, -12.8328384980499, -9.877974796332117, + -7.152759837172826, -4.814550136802208, -2.805241586047939, + -1.0668749965677808, 0.4462680472603294, 1.8047399092433718, + 2.9620143194201876, 3.8605357971360017, 4.4147125424977345, + 4.5409650870875655, 4.220759091925681, 3.5237612671459875, + 2.5639637686091503, 1.4995896431716613, 0.5435071403738111, + -0.218700949985989, -0.7238717212797936, -0.9872646207537502, + -1.115679239475979, -1.2272933229075402, -1.422446400991404, + -1.7545616058732898, -2.1939168853696787, -2.6670376145941495, + -3.0491970930062577, -3.2287394384639416, -3.148694975057718, + -2.817690836283613, -2.3064692458634948, -1.7410871771722294, + -1.2510202432787247, -0.9103592233730747, -0.7479665776285089, + -0.7064899283817714, -0.6769647558684482, -0.5448135117482028, + -0.2264890123893316, 0.28400917074462445, 0.9184031149309424, + 1.5546005303234764, 2.028685711961189, 2.268107644264453, + 2.2850802066889164, 2.2268615429252314, 2.3722501820270074, + 3.0686725372880694, 4.660093634509755, 7.399352718174888, + 11.257478641514176, 16.16655574318585, 21.66978906530029, + 27.168876251555496 + ], + "pressure:branch97_seg0:RESISTANCE_51": [ + 111212.02896280604, 131730.02565878804, 147445.04518927296, + 157024.18483991147, 159846.32358303087, 156084.7424692809, + 146756.68116073532, 133790.3752105695, 118569.5913752314, + 102471.90892079048, 86940.8031884247, 71848.94329712902, + 57389.42407409031, 43368.54176487582, 29180.54193977028, + 15182.039932105734, 1199.1647252920955, -12328.0263837439, + -24480.876399338813, -35188.362696626085, -43959.44599682144, + -50764.46049674973, -55971.65201727932, -59833.25187952567, + -62759.650813750275, -64954.670259074206, -66380.3912862654, + -66872.4425002578, -66214.66271978401, -64291.63745696598, + -61305.98147174897, -57851.66142162546, -54709.04039681265, + -52959.54415520093, -53467.55223086241, -56754.30561758646, + -62660.75248280392, -70660.20911660478, -79376.4465104711, + -87183.73766211774, -92734.60944557449, -94672.68127627055, + -92446.0329618947, -86159.54400461179, -76737.66398808421, + -65017.24184019597, -52529.44558715175, -40434.120608159086, + -29278.830924417765, -19707.693623371146, -11482.867588142168, + -4367.104915177432, 1826.736392686033, 7387.452657179244, + 12124.595041384919, 15802.568163210191, 18071.01385397177, + 18587.81114494507, 17277.092288621494, 14424.028306191616, + 10495.23028681672, 6138.362340958672, 2224.7711416945676, + -895.2220238647296, -2963.0685526689467, -4041.230876855015, + -4566.878318592974, -5023.7550979022935, -5822.5871721891035, + -7182.0547277220185, -8980.494663768712, -10917.148787931457, + -12481.46564035015, -13216.397344488265, -12888.746428777311, + -11533.826868349393, -9441.212150175745, -7126.899021574396, + -5120.877957571689, -3726.4292928023788, -3061.697507260134, + -2891.9185927915632, -2771.0613916940324, -2230.1185918345845, + -927.1013777807514, 1162.5521729391844, 3759.3558479041194, + 6363.541782265304, 8304.143758691238, 9284.184251465218, + 9353.659083123735, 9115.349052899655, 9710.477294234868, + 12561.185671958969, 19075.447340991675, 30288.224701694544, + 46080.9283805602, 66175.55503191033, 88702.27781357213, 111212.02896280604 + ], + "flow:branch98_seg0:RESISTANCE_52": [ + 36.99141127422643, 41.95717205377205, 44.73805149615343, + 45.13199939420024, 43.34151547243112, 39.71956684311043, + 34.83288581996633, 29.4909908778497, 24.185918366703955, + 19.18227776107815, 14.893212377336202, 11.020597551902872, + 7.455690424466085, 4.102219271348387, 0.6365313797134629, + -2.7249828783469225, -6.054818318950723, -9.21379777932131, + -11.777807670817488, -13.871602134367153, -15.3660364720318, + -16.28696882547805, -16.8683231098774, -17.189853618953578, + -17.388536491379377, -17.50419952599213, -17.461472292686427, + -17.172517516979973, -16.554186792045293, -15.588669784157956, + -14.38393154908431, -13.21459521807102, -12.359853610063492, + -12.179424645457308, -12.910526563539257, -14.610655171861954, + -17.06053653191035, -19.97650635063813, -22.791355123128735, + -24.89103317543963, -25.929829409981387, -25.547602520464945, + -23.728445693242666, -20.682859809823736, -16.952711560115464, + -12.813364466135994, -8.835136304639404, -5.421768751412571, + -2.5373805878981375, -0.3572599199459972, 1.3454869610149596, + 2.7693491814658286, 3.9433537938797785, 5.004552285711753, + 5.844121396209759, 6.330507687443032, 6.358448137326275, + 5.8247720676422485, 4.754198310823881, 3.3175677192551314, + 1.7318489097041165, 0.22022209436217505, -0.9073265432515739, + -1.616570822704403, -1.9108433706823345, -1.8840753054668606, + -1.7633818886052819, -1.7436306811244169, -1.9444578742128162, + -2.39453280632268, -2.975394064845179, -3.5428133829118336, + -3.895110403519545, -3.879362796178964, -3.4755841468199486, + -2.763639218274957, -1.9008016306112292, -1.0927472806820755, + -0.5361153333818017, -0.27337632347647683, -0.2811666254207423, + -0.4165963703194159, -0.4745920392832198, -0.28964046660466714, + 0.21951254174382695, 0.9954639547588059, 1.8681078073153154, + 2.63068355499207, 3.0347947776029036, 3.042195065098761, + 2.7668263487484115, 2.5215730689879114, 2.7808886738465235, + 4.054897498717919, 6.761707881827599, 11.148503516529415, + 16.848502841480837, 23.652196664646443, 30.74936734310964, + 36.99141127422643 + ], + "pressure:branch98_seg0:RESISTANCE_52": [ + 151419.21454218286, 171745.86797178778, 183129.01250175256, + 184741.58361590674, 177412.48586738957, 162586.54120422606, + 142583.5897959278, 120717.2833091152, 99001.70433938828, + 78519.99509237635, 60963.300466382876, 45111.2884751485, 30518.835293236, + 16791.86596429572, 2605.552971019403, -11154.33969311688, + -24784.559509084098, -37715.40405292418, -48210.823137382955, + -56781.48054575313, -62898.74035822066, -66668.44929339217, + -69048.1424730241, -70364.28304347381, -71177.56384161637, + -71651.01444135049, -71476.11643438588, -70293.32011305964, + -67762.26899952548, -63810.05896142234, -58878.629989131674, + -54092.11380392931, -50593.3475102689, -49854.78655354183, + -52847.450914619956, -59806.69171201645, -69834.94147275161, + -81771.05973294341, -93293.25300709931, -101887.99407051923, + -106140.16246544004, -104575.5696750062, -97129.10336246008, + -84662.419707996, -69393.57489670554, -52449.731336875855, + -36165.405793906255, -22193.25885358345, -10386.415721365764, + -1462.3939612526922, 5507.5643722620625, 11335.947005156784, + 16141.572153187713, 20485.44108306827, 23922.10086128276, + 25913.05572474091, 26027.426083417802, 23842.89706687218, + 19460.65178930701, 13580.003599109095, 7089.083454240165, + 901.4486175177477, -3714.0154370953805, -6617.208584206686, + -7821.772469206515, -7712.2011046630705, -7218.159332477281, + -7137.310502437046, -7959.368779986051, -9801.688128120537, + -12179.363174668055, -14502.01550119781, -15944.09452193363, + -15879.633874116742, -14226.821942136632, -11312.5740623152, + -7780.667998145856, -4473.009523951356, -2194.5138043764473, + -1119.0280865026837, -1150.9166076711563, -1705.2794960216697, + -1942.6767279443684, -1185.6031019684544, 898.5441622294159, + 4074.7937140661716, 7646.840364291174, 10768.338484112855, + 12422.511758601242, 12452.803809686086, 11325.620139126939, + 10321.709833841916, 11383.182317688988, 16598.160847482726, + 27678.113950285886, 45634.85381186091, 68967.01095170966, + 96816.98853304867, 125868.27294169377, 151419.21454218286 + ], + "flow:branch100_seg0:RESISTANCE_53": [ + 22.79208145286792, 25.18060856839968, 26.144450879794785, + 25.63860310963281, 23.97019296154604, 21.39112598537537, + 18.23190178982337, 14.990991100536025, 12.0142948244434, + 9.203339159495288, 6.90116295487471, 4.838529484195999, + 2.8381034173189787, 0.9720549340361921, -1.0426523332972564, + -2.981000115903648, -4.838625943354906, -6.599698050389475, + -7.894973387233828, -8.889134771411713, -9.540128210763982, + -9.847955317535778, -10.01990486510081, -10.082810236235531, + -10.104591007000046, -10.094907225095975, -9.97418074599746, + -9.683798976648179, -9.184159245286212, -8.493032629788683, + -7.699238993028278, -7.028061435071895, -6.639021706314686, + -6.739623368888275, -7.443001256621616, -8.715222112354278, + -10.340477952861384, -12.09751378031054, -13.647253623915576, + -14.561026175022976, -14.7427243599617, -14.035028784829208, + -12.500787500784236, -10.344637968383845, -7.99718417391608, + -5.557532264742451, -3.356444118529326, -1.6426869443731142, + -0.22826485720855214, 0.764185391182876, 1.521498918529484, + 2.2057843188893784, 2.7515587542679625, 3.266468558846297, + 3.640862490776575, 3.760004206698882, 3.5985001079836576, + 3.100058870694235, 2.3126833334599555, 1.3691492752631838, + 0.4418049517607375, -0.38484568721198736, -0.9103677373179468, + -1.155137270318767, -1.1902207080462535, -1.0768617567094956, + -0.9724744257125661, -0.9901024189597231, -1.1684744468141652, + -1.4927068799016459, -1.851206703340763, -2.150302331827779, + -2.2710709426148936, -2.1363648298409768, -1.7773525226028175, + -1.2787109216392845, -0.7516771344059489, -0.3151480974389375, + -0.08918627881837485, -0.041232942934208296, -0.12837167003827585, + -0.24331694942671453, -0.25072833223219515, -0.0685387193681018, + 0.3151887000084851, 0.8316375001878125, 1.3347788678188741, + 1.7150827372120816, 1.8272782830182088, 1.6935575753491285, + 1.4516328778456038, 1.3342014511873475, 1.652361842796382, + 2.701884212027321, 4.677710329417376, 7.6830148674070395, + 11.30221219250686, 15.436255612067862, 19.54997931805365, + 22.79208145286792 + ], + "pressure:branch100_seg0:RESISTANCE_53": [ + 174931.2295711019, 193263.38523875453, 200660.95974259014, + 196778.53362046363, 183973.33900770458, 164178.77315286442, + 139931.44961808875, 115057.17506008242, 92210.76935933641, + 70636.43742497278, 52967.03259257134, 37136.13930944965, + 21782.693321289997, 7460.607104841377, -8002.448352774656, + -22879.438049796154, -37136.87964199852, -50653.26293871219, + -60594.61506031752, -68224.8911141347, -73221.32301194285, + -75583.92312787892, -76903.65102731071, -77386.45528290702, + -77553.62461401091, -77479.30073626785, -76552.71439204652, + -74324.00877504314, -70489.22989666255, -65184.772342477474, + -59092.33637117914, -53940.98958801872, -50955.07545620989, + -51727.20206373572, -57125.68920975974, -66890.09616133728, + -79364.07766826956, -92849.48216420143, -104743.87175375107, + -111757.15644405175, -113151.70599266773, -107720.08021614922, + -95944.6434342232, -79396.00615324912, -61379.0918368992, + -42654.548881937146, -25761.00378788068, -12607.766762057281, + -1751.9528535356474, 5865.190082630718, 11677.638005981933, + 16929.588632344694, 21118.455421307903, 25070.433454528924, + 27943.93980768801, 28858.362955156615, 27618.804794244897, + 23793.2244632763, 17750.047970271255, 10508.341095718475, + 3390.89185873286, -2953.724494111163, -6987.152445036995, + -8865.780136760426, -9135.048606686067, -8265.008685968625, + -7463.826740359153, -7599.123138803505, -8968.144139283879, + -11456.656577435975, -14208.174250136854, -16503.759502354915, + -17430.669210986896, -16396.787948891702, -13641.336917961846, + -9814.218778169676, -5769.18811184801, -2418.7893631375528, + -684.5125333011954, -316.46646319767234, -985.263857024994, + -1867.4789850470158, -1924.3619998638587, -526.0406986991521, + 2419.1009914321653, 6382.89095123507, 10244.545195923425, + 13163.410838851683, 14024.5215198059, 12998.203328549806, + 11141.409999453972, 10240.113472498144, 12682.022458302292, + 20737.1989410467, 35901.83815350795, 58967.81478022514, 86745.47253602892, + 118474.61934429956, 150047.81056389163, 174931.2295711019 + ], + "flow:branch101_seg0:RESISTANCE_54": [ + 48.3442673147446, 54.036123981070965, 56.71869112978114, + 56.29152050392456, 53.17522970792643, 47.92544860023944, + 41.311423845973295, 34.38099488093338, 27.77901683130788, + 21.66668803388532, 16.557601791389118, 11.976698400168312, + 7.704063187172546, 3.6536301973795937, -0.6177837093437855, + -4.775002457229529, -8.874407191302748, -12.718237834106167, + -15.735502575948995, -18.13197430043595, -19.754500126098385, + -20.668563235252638, -21.212718410916256, -21.48385083865478, + -21.651941984353485, -21.741250610170365, -21.623908110073575, + -21.17232080093368, -20.280056645032943, -18.94742161550777, + -17.34231473672487, -15.869438447451234, -14.896362641439792, + -14.886574571506701, -16.11537577298623, -18.5918322640936, + -21.95996997455066, -25.787307125986683, -29.31234190517892, + -31.72020462104681, -32.62554533298222, -31.629832167950628, + -28.796287622224263, -24.490782596488764, -19.49554804690747, + -14.146901023892976, -9.204526821589367, -5.135697034444822, + -1.78753857573292, 0.6367574356212504, 2.5102138539840313, + 4.107282894386633, 5.428945964202237, 6.660226536045442, + 7.6071326578740335, 8.071433786967392, 7.928562244661595, + 7.052894397380069, 5.511277743540635, 3.556556598690443, + 1.5080905280045573, -0.3604407631255563, -1.6567563497093927, + -2.371104981656369, -2.5630830619817884, -2.3871812650249793, + -2.1627260688206222, -2.1418662210657367, -2.4539827339489952, + -3.099943052278284, -3.8837509994827277, -4.600198295235756, + -4.97663696468272, -4.833976712489588, -4.183030022121694, + -3.1671683362268293, -2.0165799649989604, -1.0069077737998353, + -0.3899938584959982, -0.1732228411983543, -0.29372237273605123, + -0.5322826354284609, -0.605122079292848, -0.3075825290247959, + 0.43384003666440746, 1.5056317736426206, 2.6427219979175853, + 3.5675087505913607, 3.965478425782137, 3.8250906141333796, + 3.3572822825144932, 3.0253691131043454, 3.4835293216701615, + 5.39345037507883, 9.254208125937911, 15.311592890501334, + 22.933977176032155, 31.831380521320856, 40.814709018420224, + 48.3442673147446 + ], + "pressure:branch101_seg0:RESISTANCE_54": [ + 163842.21602876738, 183132.32965191186, 192223.743602383, + 190776.03147744702, 180214.69673878665, 162422.809135042, + 140007.4012118431, 116519.67655009807, 94145.09577961084, + 73429.97171441474, 56114.90917756414, 40589.89649830297, + 26109.626955237356, 12382.416806349602, -2093.713641506809, + -16182.828442555294, -30076.007372258395, -43103.02723494319, + -53328.75551893987, -61450.571399059794, -66949.42869087028, + -70047.25463202939, -71891.43585135584, -72810.32324514707, + -73379.99628677538, -73682.66967448065, -73284.98746068163, + -71754.52543137678, -68730.57771831432, -64214.181286584935, + -58774.35806472105, -53782.673867711186, -50484.849631737205, + -50451.67715530181, -54616.17323915891, -63009.06327429952, + -74423.92540838383, -87395.04763675648, -99341.64527657763, + -107502.06604979016, -110570.33115635725, -107195.78727454407, + -97592.70001363606, -83001.03229951607, -66071.82137863227, + -47944.87004227133, -31194.806658813643, -17405.24843406146, + -6058.097428144672, 2158.0169711921485, 8507.296177751105, + 13919.878584407703, 18399.09025168024, 22571.989100896655, + 25781.12238575059, 27354.672469778063, 26870.47048681429, + 23902.768863171448, 18678.118602415838, 12053.427364353123, + 5111.027797186441, -1221.5597972161002, -5614.867011820184, + -8035.8461552884, -8686.473744795745, -8090.329841543634, + -7329.634959028667, -7258.939427333437, -8316.724847825333, + -10505.931053657298, -13162.312836728213, -15590.404503520565, + -16866.182361514413, -16382.696456011638, -14176.591074952321, + -10733.762399688883, -6834.335250414593, -3412.483220024756, + -1321.7173733874863, -587.0647285650377, -995.4463500918761, + -1803.9443223840974, -2050.8024621360055, -1042.4194215016005, + 1470.3152401959503, 5102.6949009443615, 8956.375854616419, + 12090.544998717995, 13439.292991338018, 12963.508551081615, + 11378.072304212232, 10253.194583938945, 11805.9326444599, + 18278.793134684667, 31363.180189984116, 51892.09495672563, + 77724.90621092288, 107878.84921109439, 138323.99876102371, + 163842.21602876738 + ], + "flow:branch102_seg2:RESISTANCE_55": [ + 53.169441892323256, 60.338800596524024, 64.3626856260411, + 64.96953401509901, 62.4448718391874, 57.24804373582875, 50.16027851941166, + 42.41574439071324, 34.6801380043152, 27.311250505060013, + 21.025328334317603, 15.333154731891346, 10.07859173973588, + 5.160085345488983, 0.05424392332505537, -4.872318797866757, + -9.723810577934294, -14.345727101048428, -18.052200541704657, + -21.042350888732337, -23.139027414406208, -24.370292770867913, + -25.100528869912463, -25.445378466965895, -25.609333238803814, + -25.656807630422453, -25.47647531066638, -24.94035001931982, + -23.93084220667729, -22.422853693693416, -20.58168301963674, + -18.817947328624175, -17.530475449881237, -17.253337628811355, + -18.321140479215664, -20.80437514663294, -24.355100049815764, + -28.559556499393718, -32.58385914782194, -35.50653144546477, + -36.863732732305316, -36.13768187930526, -33.334376403323056, + -28.78911000240589, -23.319759301893384, -17.326576367568798, + -11.623293995315596, -6.7907153876403425, -2.736546945501819, + 0.28143260675164594, 2.6106704777657033, 4.546434802483585, + 6.12669523961078, 7.556645918454294, 8.66176344332512, 9.262336359772933, + 9.214751351917782, 8.366168112408248, 6.756585271274332, + 4.646723848134854, 2.346415867199276, 0.15842687827924037, + -1.44256998380135, -2.429288887560193, -2.826489111693305, + -2.759944079694974, -2.566104947776042, -2.5270063795470175, + -2.8087448423958192, -3.4485837073125016, -4.2698194376247605, + -5.062195049562419, -5.537794869248952, -5.479753359543489, + -4.8676738910173425, -3.8233158449405513, -2.574465214406314, + -1.4203576658417965, -0.639480779806046, -0.28162487438565836, + -0.31318624027790365, -0.5213455238670707, -0.6079224658107925, + -0.3390519869032314, 0.3965917686998301, 1.5075246240120326, + 2.7441252925419612, 3.8181451927347627, 4.3617741672253, + 4.333584314808715, 3.91306687913482, 3.552370202986867, 3.936797493652178, + 5.7965045718616635, 9.720373471887664, 16.061209971694716, + 24.264732811316247, 34.03335978080939, 44.2124518769244, + 53.169441892323256 + ], + "pressure:branch102_seg2:RESISTANCE_55": [ + 160141.6860452805, 181735.16436463367, 193854.75242396208, + 195682.52643735553, 188078.4658499944, 172426.0763394063, + 151078.35043419743, 127752.49428705033, 104453.527715056, + 82259.08620110933, 63326.441077413794, 46182.114458354874, + 30355.83253690132, 15541.723553108093, 163.37792969716568, + -14674.996002792794, -29287.262858414924, -43208.06921690173, + -54371.641467114874, -63377.711515240655, -69692.71693871195, + -73401.17997942441, -75600.5869310568, -76639.24360936976, + -77133.06097255887, -77276.0496677041, -76732.90456957162, + -75118.14231079638, -72077.5935023356, -67535.66463471108, + -61990.22038051704, -56678.003489674404, -52800.25134370463, + -51965.53658362249, -55181.66492241326, -62660.94949515469, + -73355.42083886442, -86018.87414542478, -98139.72003620975, + -106942.55213007251, -111030.32312487706, -108843.52176650506, + -100400.21204862246, -86710.26912159285, -70237.06549973138, + -52186.12522798295, -35008.339970530964, -20453.037927924914, + -8242.23889132125, 847.6502771009878, 7863.110033478309, + 13693.462049857999, 18453.067601194783, 22759.95337094531, + 26088.470229734026, 27897.343071164632, 27754.021209636536, + 25198.16307217615, 20350.241017043256, 13995.52384119673, + 7067.198371156499, 477.16783361986745, -4344.894007201971, + -7316.804624973588, -8513.136791089264, -8312.709003192782, + -7728.882573909838, -7611.121122682573, -8459.692611465145, + -10386.831038695896, -12860.320881961085, -15246.886585129905, + -16679.35144270245, -16504.535516599106, -14661.005951590983, + -11515.49130292507, -7754.062962234368, -4277.9924576967505, + -1926.0599063469042, -848.229370316303, -943.2894305319121, + -1570.2468980829601, -1831.0090381794262, -1021.1947860894466, + 1194.4995518260055, 4540.531674807336, 8265.064206561083, + 11499.917752917541, 13137.280445839831, 13052.37508789851, + 11785.813529915607, 10699.426842121995, 11857.288055214703, + 17458.562329599827, 29276.910597073795, 48374.95285362297, + 73083.24265866315, 102505.48854964373, 133164.01932721428, + 160141.6860452805 + ], + "flow:branch103_seg0:RESISTANCE_56": [ + 18.810249305285378, 21.195928487768814, 22.45199155331543, + 22.49606325523648, 21.477583650135905, 19.564564607099623, + 17.031719982605576, 14.318228105281525, 11.657052381608732, + 9.1268242021692, 6.995898994286433, 5.064686823540658, 3.2601305707080344, + 1.571955156805712, -0.20326685912359255, -1.9074127220801884, + -3.5766772971461354, -5.171483233983941, -6.415687596018539, + -7.4112481431025925, -8.100977795690257, -8.487454086136463, + -8.717242360147539, -8.822212422171187, -8.870833100506939, + -8.883188044419402, -8.811033910928778, -8.608750491130518, + -8.23741870801313, -7.69389025041406, -7.041202802677155, + -6.43609966748252, -6.016524580670186, -5.967449771918382, + -6.401266710588124, -7.327853142994154, -8.60502153797133, + -10.08384811329905, -11.467979281982466, -12.422914945399873, + -12.812675976519856, -12.465014819184077, -11.397316952166213, + -9.73983611986271, -7.809216611732551, -5.720941878271654, + -3.757422229914597, -2.133467458461755, -0.7706737824243683, + 0.2288700546103685, 0.997733249855036, 1.6532059561577683, + 2.184777415660369, 2.6709558755949434, 3.042058775844631, + 3.2253563763973596, 3.1788319661347737, 2.8499065798184207, + 2.258679091850598, 1.5056286553219898, 0.7048152553810637, + -0.04523021853392852, -0.5727052119183782, -0.8809591282936954, + -0.9914920332560972, -0.948636873689548, -0.8757460294851461, + -0.8708415474395467, -0.98458641320385, -1.2235775256162158, + -1.5157574415387185, -1.7869107183666462, -1.937010832985592, + -1.8912978054011456, -1.6530365007216663, -1.2723498288092012, + -0.8329340817242925, -0.4378548779910215, -0.18650753013978716, + -0.08403422936684603, -0.11178093473136709, -0.19155643672143396, + -0.21521289114241024, -0.10459135791614982, 0.1720732687222481, + 0.5742478334462024, 1.006393878389372, 1.3693713653528918, + 1.5332101987067557, 1.4951202438070759, 1.3322153962817807, + 1.2131587588404191, 1.3840574365405798, 2.0996049724984305, + 3.554046896613566, 5.8660393852237425, 8.789130644488411, + 12.226922651552128, 15.779288438221464, 18.810249305285378 + ], + "pressure:branch103_seg0:RESISTANCE_56": [ + 163838.07425559926, 184617.44175393024, 195557.8046626197, + 195941.67106729976, 187070.67023897072, 170408.19272797715, + 148347.0079488308, 124712.37788765696, 101533.42375758186, + 79495.02832652898, 60934.578819672526, 44113.63838986368, + 28395.876410655237, 13691.796505583005, -1770.463018239518, + -16613.646216182337, -31153.01190789677, -45043.839682807935, + -55880.91277779445, -64552.28763263917, -70559.86234379609, + -73926.0873280793, -75927.55300189678, -76841.84672216255, + -77265.33490555582, -77372.94699433468, -76744.48141214492, + -74982.58419241132, -71748.26851330402, -67014.1124502573, + -61329.17692428987, -56058.70279141397, -52404.18587814999, + -51976.74219945015, -55755.30625022614, -63825.91362245401, + -74950.10485124384, -87830.74743749462, -99886.58899035215, + -108204.11937461948, -111598.95459036624, -108570.8110720696, + -99271.11708184071, -84834.38829250792, -68018.60997937893, + -49829.6479250221, -32727.30798636593, -18582.59261790666, + -6712.601536662361, 1993.467943651059, 8690.299188703562, + 14399.4944356577, 19029.504534973006, 23264.13967071551, + 26496.46177026967, 28092.991694080927, 27687.7620950667, + 24822.807941977037, 19673.19128865735, 13114.08984689497, + 6138.970955328234, -393.95713381937674, -4988.286838414003, + -7673.191606076454, -8635.93792575639, -8262.667656907417, + -7627.785292963654, -7585.067045025537, -8575.789680373275, + -10657.412469440002, -13202.312007130935, -15564.068620907747, + -16871.447025394595, -16473.284604138342, -14398.018471575948, + -11082.22131181373, -7254.891400786542, -3813.7346746006465, + -1624.4885475107794, -731.9417242994705, -973.6167122318343, + -1668.4647393212301, -1874.5134669675979, -910.9951913272537, + 1498.7655145239025, 5001.723137761355, 8765.733632865891, + 11927.283035911416, 13354.326266935346, 13022.56113410971, + 11603.652959513742, 10566.664566155587, 12055.19934274423, + 18287.648919941887, 30955.900153417035, 51093.45340321963, + 76553.70302663893, 106497.01813040885, 137438.27574445916, + 163838.07425559926 + ], + "flow:branch104_seg0:RESISTANCE_57": [ + 36.16283519086192, 40.75800884397484, 43.174594435644394, + 43.26272095128933, 41.28336732385547, 37.58461847856874, + 32.702818523295335, 27.452357190198125, 22.3241358034363, + 17.466984943457753, 13.355934248874915, 9.652959473769116, + 6.205119749709231, 2.9748433260607245, -0.39982938264062445, + -3.6635911468902354, -6.862948490195421, -9.894884724640105, + -12.292611305781628, -14.205199556330491, -15.524267309637393, + -16.272680726751165, -16.709293874901125, -16.90822266928694, + -17.001368236314914, -17.023374259752714, -16.88784463570248, + -16.505553789654947, -15.798945936515242, -14.76225802633415, + -13.51309418005771, -12.3484992784935, -11.537110856600124, + -11.43261407527134, -12.252393317613409, -14.020636777621254, + -16.481147790920346, -19.32986419722354, -22.00623676662849, + -23.878701609009337, -24.657215158159147, -24.01962516819439, + -21.988864575479887, -18.81923117690696, -15.088849670234941, + -11.052059299060137, -7.261646731551204, -4.102753363728521, + -1.4696856207311049, 0.4651956234315951, 1.9545796722667794, + 3.2091387088554444, 4.22913997713192, 5.161361964608491, + 5.873903103830767, 6.229455853566101, 6.141916694266408, + 5.511532402154413, 4.3773415369272755, 2.922219408928857, + 1.3744473953982361, -0.07226763348745986, -1.1050014664519616, + -1.709579240486272, -1.9246639552856473, -1.843896243828635, + -1.6998027618735956, -1.6823138962147688, -1.894030803801885, + -2.3480891210307533, -2.91142454422924, -3.438259583450397, + -3.7321135705346022, -3.6523040642149005, -3.1984590523819767, + -2.465688857173267, -1.6157401784753258, -0.8493251170366624, + -0.3572057832445536, -0.15367159057883648, -0.20482817909368375, + -0.3589715767063425, -0.409860570782991, -0.20398776250506218, + 0.3217300877253619, 1.094534892429762, 1.9292943925619181, + 2.631330992094956, 2.958655864613295, 2.8936847658003657, + 2.5807462975226243, 2.3439711495518836, 2.6578236558554806, + 4.014028131818745, 6.7951579598170015, 11.216825365176565, + 16.84392655267785, 23.478951398162913, 30.303672632720968, + 36.16283519086192 + ], + "pressure:branch104_seg0:RESISTANCE_57": [ + 162814.97992374125, 183503.70917101632, 194383.83879899548, + 194780.60848808938, 185869.01681084023, 169216.23735342346, + 147237.03805904428, 123598.0243581971, 100509.36834647764, + 78641.14602430773, 60132.07081569642, 43460.26506581586, + 27937.147132991417, 13393.558714423449, -1800.141293235652, + -16494.48987839922, -30898.872136310332, -44549.47874765171, + -55344.699949498005, -63955.69562977957, -69894.49961567481, + -73264.0616215036, -75229.81349287237, -76125.44536169822, + -76544.81219357427, -76643.8893329945, -76033.6978780904, + -74312.51987598899, -71131.17795918719, -66463.72529978002, + -60839.64783241276, -55596.322896281, -51943.2301859497, + -51472.75708103994, -55163.62756117645, -63124.74349475982, + -74202.63739102255, -87028.33819829892, -99078.09989027109, + -107508.44900729012, -111013.53004438596, -108142.92543421958, + -98999.88553185131, -84729.32860702716, -67934.13025183439, + -49759.3953404174, -32693.92072194434, -18471.71835454765, + -6616.926841344598, 2094.4379966297047, 8800.052551738781, + 14448.420642272953, 19040.74547355775, 23237.86396203926, + 26445.919156412503, 28046.714932088667, 27652.589681987218, + 24814.427095378327, 19707.989450844278, 13156.631439055232, + 6188.1382891287685, -325.36866186865075, -4975.018983619391, + -7696.99356393762, -8665.363807507661, -8301.725468590006, + -7652.977181909211, -7574.237522915095, -8527.44497682114, + -10571.739773224523, -13108.03000417941, -15479.9855182128, + -16802.996580678893, -16443.672343501003, -14400.337906361498, + -11101.205966292424, -7274.504427874519, -3823.894093180706, + -1608.238184883596, -691.8715527386856, -922.1925131391231, + -1616.188270255204, -1845.3044472693753, -918.4087276827743, + 1448.5168957964372, 4927.8956032147025, 8686.211303234795, + 11846.972185379767, 13320.67833331819, 13028.160667239741, + 11619.22604800726, 10553.19953875232, 11966.249407301577, + 18072.25308099105, 30593.66061778843, 50501.217258009805, + 75835.96665020777, 105708.66416713827, 136435.42673774823, + 162814.97992374125 + ], + "flow:branch105_seg2:RESISTANCE_58": [ + 39.807320363416046, 44.77574152625257, 47.327388153475866, + 47.3237738384681, 45.07065863015566, 40.95500677360158, + 35.566328261844646, 29.809776710785588, 24.208582029141066, + 18.912736064849614, 14.450161890933936, 10.4219134112792, + 6.660925917161056, 3.127943356407106, -0.5799064985895498, + -4.160854150168725, -7.671981883066931, -10.993130557656773, + -13.597079168798041, -15.667327368334233, -17.082028967225444, + -17.87029382074197, -18.327635117411766, -18.5306203231536, + -18.624753170150086, -18.64408000471496, -18.487610242771424, + -18.05590109297476, -17.26429565705177, -16.110002680096496, + -14.727601144341673, -13.451961971511727, -12.577725898302063, + -12.49472561159883, -13.437143442509285, -15.420036700721775, + -18.147800587885495, -21.283140669594992, -24.198558732577418, + -26.20010802939826, -26.98277448177107, -26.201378194151683, + -23.896593850995703, -20.362711625493382, -16.252663111538997, + -11.830931879660978, -7.707840975221372, -4.300590520048052, + -1.465465544573234, 0.602478763295529, 2.1958613083176677, + 3.548322484444598, 4.648642233990228, 5.661961321185452, 6.43224851187628, + 6.805804569118872, 6.690335604991541, 5.977129206702731, + 4.713567835325724, 3.1086895236899084, 1.4130769465158752, + -0.16020000472292933, -1.266002040990954, -1.8994294151962259, + -2.1097345536827037, -2.0028943528002876, -1.8390197742313166, + -1.8254452662068499, -2.06971563656468, -2.5806386100250944, + -3.2042977545239872, -3.7795577327190606, -4.089612244479742, + -3.9828856191172632, -3.4662410272930133, -2.649827799927571, + -1.7147238329341754, -0.8815541222149623, -0.3591675151826749, + -0.15451078873159135, -0.22609888615347795, -0.40289165448512393, + -0.455597113628613, -0.21854274253896785, 0.3729530083402052, + 1.231208885720048, 2.148827151370971, 2.910003645380423, + 3.248982340520857, 3.155084649127149, 2.7964205688910693, + 2.537106696087651, 2.9035143527573903, 4.434898732289994, + 7.543984253891838, 12.458979047610239, 18.67065181385835, + 25.968338416803718, 33.44374608694393, 39.807320363416046 + ], + "pressure:branch105_seg2:RESISTANCE_58": [ + 165816.62317013758, 186512.48544339277, 197141.32012472345, + 197126.26476546013, 187740.9569365195, 170597.2887175261, + 148150.8525843792, 124172.04842004615, 100840.38029091523, + 78780.63633902563, 60191.869915928626, 43412.278773175625, + 27745.958097319766, 13029.38756217968, -2415.589305499762, + -17331.957498904972, -31957.49217125724, -45791.672750078025, + -56638.37033399432, -65261.94917420747, -71154.86132653322, + -74438.36333019564, -76343.40965730397, -77188.94060643308, + -77581.04916023221, -77661.55471587295, -77009.78294834733, + -75211.5068333633, -71914.08969828597, -67105.9046247783, + -61347.537760813364, -56033.88745500898, -52392.27399824904, + -52046.53790905831, -55972.16115901523, -64231.864680426545, + -75594.31240224262, -88654.51088063285, -100798.6284429196, + -109136.04333237497, -112396.2253043441, -109141.33417909627, + -99540.79956816178, -84820.48149690627, -67700.15389315171, + -49281.517955280426, -32106.86252617554, -17914.026645391536, + -6104.368386390338, 2509.613637627367, 9146.817815694898, + 14780.46869062843, 19363.829329108597, 23584.79039100857, + 26793.4067878296, 28349.44732035576, 27868.46358324896, 24897.61612333745, + 19634.27566592327, 12949.186094332137, 5886.144694283196, + -667.3100216857734, -5273.507019490253, -7912.036497371008, + -8788.058484805035, -8343.017694127946, -7660.40130614751, + -7603.856955478592, -8621.360459443851, -10749.600225040012, + -13347.440330979774, -15743.674645630332, -17035.20071846101, + -16590.633024419392, -14438.559968175252, -11037.806457579143, + -7142.648966341201, -3672.096648377943, -1496.1053388244923, + -643.6117024951648, -941.8105379181214, -1678.2373955419464, + -1897.78096637162, -910.3355678118465, 1553.5285439838808, + 5128.576804048918, 8950.897944494012, 12121.563910471954, + 13533.573109826297, 13142.444092141792, 11648.43580185173, + 10568.26887936584, 12094.532887542578, 18473.484906201844, + 31424.320522177564, 51897.636288044356, 77772.23907300706, + 108170.6114931318, 139309.2775818411, 165816.62317013758 + ], + "flow:branch106_seg0:RESISTANCE_59": [ + 32.364188654800735, 36.25779460994059, 38.20143001082904, + 38.06469689496807, 36.1355546007907, 32.743908486689996, + 28.380750405799628, 23.762551225487567, 19.301322648161754, + 15.130087648293014, 11.629545205779664, 8.455492288156888, + 5.479911133635116, 2.6601365403894985, -0.32710967398519697, + -3.2118645266566013, -6.056436450118232, -8.749125779577124, + -10.830825571346853, -12.490354278246365, -13.62353379308047, + -14.248683093985353, -14.622668183730859, -14.801570216224972, + -14.900618137432632, -14.945052509263462, -14.842408014065679, + -14.509448982330602, -13.878416046746034, -12.950860466085631, + -11.84242593786805, -10.830885992279443, -10.16276638937945, + -10.147857907299317, -10.970204070466771, -12.632823040953472, + -14.875789006083101, -17.4242383008137, -19.755693507602533, + -21.309360232884554, -21.856908396071095, -21.128248599634883, + -19.181714930681363, -16.26143676805316, -12.929931943181247, + -9.378475224592062, -6.089124467294978, -3.4171013066287044, + -1.20247637642072, 0.40201337720995767, 1.6357134494065588, + 2.707525953393465, 3.5886858240871318, 4.404756721784988, + 5.035918679335911, 5.340847988113965, 5.24274271510546, 4.660342431790759, + 3.6355914442952666, 2.344215364370456, 0.9910864435353186, + -0.24587648634130174, -1.090816160948313, -1.5581542237770367, + -1.6867234364887718, -1.5713656603977204, -1.4287285355482797, + -1.4240895451444977, -1.6383612750051915, -2.0717753621564974, + -2.5884887020223952, -3.055577714225797, -3.2991489569611794, + -3.194358046793229, -2.7568877770812077, -2.0836667591232376, + -1.3270314818074038, -0.6638952212912776, -0.26359537085974927, + -0.12698216135365475, -0.20660039601612348, -0.36102573492551826, + -0.4016809406055054, -0.19588036723551808, 0.3020488720224242, + 1.0124683420885556, 1.7607514421348711, 2.3678170595585613, + 2.6188088996492924, 2.5194372755912933, 2.2121016054082343, + 2.0045834809493828, 2.329538725296807, 3.623110777262183, + 6.208269046101129, 10.266024041957156, 15.338102994149844, + 21.248872055267995, 27.299882968250138, 32.364188654800735 + ], + "pressure:branch106_seg0:RESISTANCE_59": [ + 163552.9692180229, 183229.3721002459, 193051.5661395664, + 192360.5830493342, 182611.63016742317, 165471.88974586217, + 143422.59733477706, 120084.45045779257, 97539.55715103571, + 76460.15124313404, 58770.10140274393, 42729.97184260846, + 27692.82266015442, 13443.044543660635, -1653.0542140508057, + -16231.211159456116, -30606.30299933786, -44213.85360759201, + -54733.75835774115, -63120.21446238951, -68846.75611263634, + -72005.9585712053, -73895.89848359692, -74799.98290004037, + -75300.52322815103, -75525.07307012848, -75006.35739514588, + -73323.74335376768, -70134.8078488533, -65447.390192565545, + -59845.897746477356, -54734.063695935474, -51357.710096819224, + -51282.36983302754, -55438.10993656408, -63840.18273998032, + -75175.04879717913, -88053.67997500653, -99835.72789643757, + -107687.20870460296, -110454.25251448376, -106771.9580337507, + -96935.11754824282, -82177.4429612236, -65341.62755167721, + -47394.28156473074, -30771.49244142957, -17268.37866318723, + -6076.734500463898, 2031.581332358539, 8266.105302184416, + 13682.527735688842, 18135.483894881447, 22259.511839304247, + 25449.09935889055, 26990.064726019507, 26494.288086362132, + 23551.11850391014, 18372.52223191083, 11846.531591405292, + 5008.471935474131, -1242.540940264104, -5512.457732124236, + -7874.1584569444785, -8523.885125928424, -7940.922673098063, + -7220.103574595669, -7196.660358923833, -8279.486133176675, + -10469.751478945442, -13080.97099292735, -15441.41313624088, + -16672.304489348695, -16142.741870374175, -13931.978538126816, + -10529.844852605655, -6706.175810873866, -3355.005615928039, + -1332.0836198322506, -641.7064783717086, -1044.0585602335457, + -1824.449595848424, -2029.901358412564, -989.8847153114808, + 1526.409031758927, 5116.525717793668, 8897.98689185989, 11965.80315318371, + 13234.194619263575, 12732.018453377585, 11178.892498602569, + 10130.196182318403, 11772.362950125977, 18309.450972107417, + 31373.591565181963, 51879.52437289497, 77511.36027607357, + 107381.53068631067, 137960.41564290944, 163552.9692180229 + ], + "flow:branch108_seg0:RESISTANCE_60": [ + 23.140927904459804, 25.746604884966768, 26.905518809311868, + 26.5945357180524, 25.050122975885696, 22.52068746177006, + 19.35951969222375, 16.08438654917522, 12.990375087427038, + 10.099484828093283, 7.7105375176962925, 5.543154606386326, + 3.487605677250713, 1.5401317331168307, -0.5481952860880902, + -2.562299910487163, -4.536674758317992, -6.39075265160773, + -7.797185987582319, -8.905449310464062, -9.638365976470043, + -10.023235024023432, -10.250054859174952, -10.351804156851177, + -10.40976260268865, -10.431639622761477, -10.344989968286827, + -10.089344818476416, -9.618260893675078, -8.940415165560742, + -8.145957368426773, -7.44662296226571, -7.0121329580003975, + -7.064580548243194, -7.722685783189654, -8.969185455520838, + -10.60369258371162, -12.414760177577811, -14.030078334387463, + -15.046484748964438, -15.326771825281892, -14.692568883078856, + -13.206030794206297, -11.065383030579174, -8.678820127260057, + -6.169073518244015, -3.896676124952381, -2.081780165085411, + -0.587241879641119, 0.4710204312813201, 1.292350296283024, + 2.0144578403946443, 2.6066710997479987, 3.1681459182373577, + 3.5881688562196667, 3.766796107608647, 3.657238183522251, + 3.2006103063662397, 2.438963034607738, 1.5040851906088906, + 0.5523047058323682, -0.30192703612619565, -0.8612872923949296, + -1.1461364131530845, -1.1997675031984376, -1.0932551303659395, + -0.9861739612711005, -0.9930188958773049, -1.1628327582580482, + -1.4865830605715762, -1.8585049528256226, -2.18237221837242, + -2.3309206700228424, -2.2247626830800353, -1.8847080319346783, + -1.3884722349024268, -0.8481691426680087, -0.3918760886513504, + -0.1370515105932849, -0.06735172071407393, -0.1463296755900113, + -0.2641414848843429, -0.2842335959955594, -0.11783788578224332, + 0.25803141510094135, 0.7775620124242474, 1.3052590679180542, + 1.7166715436045645, 1.8617093384097496, 1.7558658415101058, + 1.51797926559201, 1.3787107229860884, 1.6535681040033978, + 2.649447156391735, 4.583433118330863, 7.56114132098564, 11.21961271332944, + 15.450293356453269, 19.68340538250799, 23.140927904459804 + ], + "pressure:branch108_seg0:RESISTANCE_60": [ + 168398.08398069863, 187359.77008082447, 195793.26441450152, + 193530.21960770932, 182291.42452870618, 163884.5526915625, + 140880.5228734505, 117047.1593908823, 94531.8305274948, 73494.62827353916, + 56110.09851472686, 40337.90774415976, 25379.540360432693, + 11207.641889107057, -3989.2538538616272, -18646.028253116387, + -33013.68640438179, -46505.93555143342, -56740.64523993733, + -64805.55175060078, -70139.03547184536, -72939.7533367035, + -74590.33648558513, -75330.7729471425, -75752.54044366685, + -75911.74098561634, -75281.18564006685, -73420.83874366041, + -69992.7294362775, -65060.000622628635, -59278.6779637807, + -54189.57459914387, -51027.76170516438, -51409.42633601778, + -56198.5022572729, -65269.36395174865, -77163.7819187555, + -90343.04223302622, -102097.82076865781, -109494.27839849619, + -111533.94624635833, -106918.80891207106, -96101.171565637, + -80523.53425736974, -63156.35598873476, -44892.76163416737, + -28356.373436903243, -15149.253846551539, -4273.398533241825, + 3427.647260776743, 9404.51975929832, 14659.344775755133, + 18968.920372498585, 23054.810274035834, 26111.345356645932, + 27411.227842121127, 26613.96748258715, 23291.055803216586, + 17748.497537496518, 10945.328782318737, 4019.1583768679734, + -2197.1432863661157, -6267.64537684131, -8340.511527988656, + -8730.788566260835, -7955.690887409951, -7176.454040015152, + -7226.265088104386, -8462.011950822049, -10817.964608504839, + -13524.465156134629, -15881.268963108696, -16962.266006074085, + -16189.747217105638, -13715.146719750297, -10104.00555169238, + -6172.183721697021, -2851.7085727563767, -997.3330320137519, + -490.12298762932426, -1064.850860804555, -1922.1752964271077, + -2068.3869361761854, -857.514195972336, 1877.7119089291677, + 5658.370900640011, 9498.457756029047, 12492.333927176509, + 13547.783684886135, 12777.55346104656, 11046.436897582504, + 10032.970374959381, 12033.125966054398, 19280.204604870345, + 33353.95012538961, 55022.93237411288, 81645.87399997856, + 112432.8207109207, 143237.46075847556, 168398.08398069863 + ], + "flow:branch109_seg2:RESISTANCE_61": [ + 26.55901377383084, 30.496754885174596, 32.9927167836868, + 33.852044647105195, 33.157658939677795, 31.065283954003952, + 27.90049523825448, 24.244468384242897, 20.430108325815354, + 16.63158716821705, 13.26326527481013, 10.129864929144421, + 7.180985441303314, 4.416031104729838, 1.5794458724948313, + -1.1465139340583912, -3.8110401593491146, -6.371679229941946, + -8.483669957542752, -10.24288083476977, -11.564278390969275, + -12.437430156120607, -13.031326936470471, -13.392860013579075, + -13.61794683698312, -13.746361466598099, -13.733489689733464, + -13.527657033868547, -13.078675110079207, -12.374486077183311, + -11.487861168927454, -10.612371951420645, -9.932865148408249, + -9.710109555453403, -10.119813850217614, -11.21688839103245, + -12.858990926659517, -14.872796185430948, -16.88016099696575, + -18.427515271543903, -19.28417996209647, -19.16819369521312, + -18.037173559739863, -16.01053144343247, -13.452843838777007, + -10.53529543850162, -7.6430075563002955, -5.085275203316281, + -2.8372524776998227, -1.0630954011257332, 0.3697142420930933, + 1.5876324636285952, 2.5918231529044755, 3.485027525963826, + 4.188939665981371, 4.624092569753239, 4.730407472793481, + 4.431173451183977, 3.7389267505029458, 2.770398245091867, + 1.6687100677566011, 0.5699773020206225, -0.2854302531680831, + -0.8706817972702405, -1.1860278006881062, -1.267164120718789, + -1.2623319015980454, -1.3018634163672616, -1.4672216856150861, + -1.786875993662072, -2.1890174984650996, -2.5849093653074457, + -2.8438846749860356, -2.8589988341435753, -2.612579781009803, + -2.1507583399266714, -1.5702586543322208, -1.006471826207198, + -0.5955325480326324, -0.36705220960119317, -0.31912880524477805, + -0.363991593026663, -0.3677550308936267, -0.22089647178908023, + 0.13529336501949848, 0.6688041528085962, 1.2715672233905033, + 1.8180744833221822, 2.1308555014750867, 2.182109916272763, + 2.046707614680505, 1.9234103822568447, 2.129499608949606, + 3.0155519981982537, 4.877652199228647, 7.919407453146952, + 11.904594041659662, 16.729715188307534, 21.8795321284547, + 26.55901377383084 + ], + "pressure:branch109_seg2:RESISTANCE_61": [ + 143001.8240615466, 164203.82223811446, 177642.841748214, + 182269.72484644115, 178530.9405824604, 167264.9560048681, + 150224.7690846928, 130539.60632248258, 110001.92933539631, + 89549.53381729567, 71413.4622415352, 54542.27987155963, 38664.61403312503, + 23777.25726063088, 8504.217916243952, -6173.180422975263, + -20519.801638709712, -34307.06275376142, -45678.66446381879, + -55150.7919492264, -62265.59908989087, -66966.91428789869, + -70164.63554433722, -72111.23980928308, -73323.17586206783, + -74014.59936248892, -73945.29379315209, -72837.02804613505, + -70419.5725404766, -66628.00418458995, -61854.14547814188, + -57140.24472429927, -53481.57301606312, -52282.18901846156, + -54488.1617995303, -60395.14546255061, -69236.72594782176, + -80079.66717152449, -90887.93106456597, -99219.35803765197, + -103831.90180156987, -103207.39639366356, -97117.63930402612, + -86205.58052729776, -72434.21100431895, -56725.241289550635, + -41152.28190227784, -27380.671440659175, -15276.63199730748, + -5724.02961973794, 1990.654150453609, 8548.297017786246, + 13955.16571761709, 18764.450267673707, 22554.52774791409, + 24897.523595386858, 25469.95543299992, 23858.788268589487, + 20131.521068801143, 14916.668435006002, 8984.843546946782, + 3068.9314955998525, -1536.8434683970117, -4688.016138217345, + -6385.935122832332, -6822.797796306994, -6796.7796559331755, + -7009.629378743387, -7899.968693580684, -9621.084903282002, + -11786.337318428134, -13917.939778204658, -15312.341768668972, + -15393.721007639178, -14066.9257289517, -11580.33834931348, + -8454.751133837444, -5419.151036245805, -3206.5287281324736, + -1976.320956258436, -1718.2867424674341, -1959.8416638932692, + -1980.1051602830591, -1189.3739226768998, 728.4607081413367, + 3601.045377891739, 6846.505442943577, 9789.067079401433, + 11473.175401668235, 11749.144790809081, 11020.097534960414, + 10356.227660557286, 11465.874863103643, 16236.650952743563, + 26262.7659131978, 42640.50318022343, 64097.962264960384, + 90077.88498213803, 117806.06880309562, 143001.8240615466 + ], + "flow:branch110_seg0:RESISTANCE_62": [ + 41.01109156316713, 45.40490587912356, 47.248660461281766, + 46.4483602938854, 43.53067870131056, 38.963765913853884, 33.3600697411964, + 27.592031245253093, 22.250291078530328, 17.253815424950485, + 13.13320232043199, 9.427404984071197, 5.86759182675061, + 2.5228198776989315, -1.0664486151233068, -4.524151886275863, + -7.87699917460041, -11.051997438079677, -13.426706821256552, + -15.294966705761318, -16.558470337270265, -17.219887661311077, + -17.633513194500896, -17.843601476574456, -17.97430295105779, + -18.04348803921166, -17.91391710874606, -17.483003411782967, + -16.676216585810174, -15.517637827739694, -14.158536093087562, + -12.984035717783392, -12.284459760992885, -12.42999749374893, + -13.635305213136217, -15.859895109513687, -18.744399997861155, + -21.91691072322667, -24.758936808927842, -26.534437018786598, + -27.031102116324423, -25.943694691518875, -23.358931040910512, + -19.61109694315707, -15.450114328659277, -11.05292606170309, + -7.0259933761790565, -3.8299005323042343, -1.16153572028433, + 0.7501522320894807, 2.2290280682177874, 3.5591090628157627, + 4.634264653589846, 5.641691575433772, 6.400253453840024, 6.70583649838905, + 6.498300245372506, 5.67807643912756, 4.320963257473593, 2.659797293589631, + 0.9874737807101408, -0.5148356703694211, -1.4991413537368468, + -1.9936721971822187, -2.0966268593970687, -1.9224822402114365, + -1.74994712885176, -1.7821653317650736, -2.0983994100205776, + -2.680489944582201, -3.335347191713065, -3.897863706344473, + -4.15177239675904, -3.9510105433805003, -3.3411854980663374, + -2.4641553040956725, -1.5172792252541583, -0.7145577595706929, + -0.2751196850173025, -0.15783980496709432, -0.29011691280019664, + -0.48636850030463874, -0.5046298141369647, -0.1913503822455999, + 0.48677998087108804, 1.4132678600869661, 2.33987556531396, + 3.0566694902639164, 3.3025942732722418, 3.1067868085078127, + 2.6945116854830395, 2.4771549641623385, 3.011179956851326, + 4.835820993002634, 8.32000286518832, 13.66427466758289, + 20.153955929416007, 27.604606704419442, 35.072943298143365, + 41.01109156316713 + ], + "pressure:branch110_seg0:RESISTANCE_62": [ + 167873.21862302115, 185858.68848342096, 193405.84229621987, + 190129.92449338685, 178186.7993242292, 159492.77486452932, + 136554.82132966863, 112944.15527451668, 91078.4823393198, + 70626.10183035038, 53758.94325958435, 38589.775536726935, + 24018.17381538548, 10326.813472473372, -4365.35958184714, + -18518.988637958373, -32243.40426283123, -45239.819556763, + -54960.363250039125, -62607.826121221326, -67779.80309813877, + -70487.22323273397, -72180.3420187757, -73040.30928036317, + -73575.31764917611, -73858.51721754843, -73328.13657396511, + -71564.25108589632, -68261.78104532299, -63519.29949380798, + -57956.004932857155, -53148.350448159305, -50284.733239701476, + -50880.471775246435, -55814.231852636985, -64920.28223527642, + -76727.60316441815, -89713.83606589558, -101347.27590453997, + -108615.03990530486, -110648.06963759132, -106196.91807349498, + -95616.54635285742, -80275.30697409344, -63242.901409995546, + -45243.62074885238, -28759.929987878833, -15677.166953082335, + -4754.585466455601, 3070.6441808339364, 9124.217423875149, + 14568.719608084226, 18969.719987844026, 23093.482449442632, + 26198.550351783902, 27449.41218671082, 26599.891302313794, + 23242.41884553952, 17687.264150643157, 10887.511537505996, + 4042.0870441414386, -2107.408453486393, -6136.527330297577, + -8160.820789290406, -8582.251428161433, -7869.4145683204215, + -7163.166005666615, -7295.046753412855, -8589.507118438643, + -10972.214036063839, -13652.781405140402, -15955.364785401549, + -16994.704814442623, -16172.913995942463, -13676.679702931131, + -10086.678172132166, -6210.7721931995675, -2924.9431414511164, + -1126.1642953169064, -646.0953629059094, -1187.5533684279374, + -1990.8820387594583, -2065.6321956668344, -783.2662659778492, + 1992.5663774199754, 5785.016087266448, 9577.956288280764, + 12512.052862747863, 13518.711873500071, 12717.201158043632, + 11029.610088838721, 10139.890478686724, 12325.847763188995, + 19794.762924799885, 34056.778463959796, 55932.814298857826, + 82497.42498676424, 112995.63117348115, 143566.23180764218, + 167873.21862302115 + ], + "flow:branch111_seg0:RESISTANCE_63": [ + 25.358868834342363, 29.124525801028263, 31.482236334935802, + 32.24001091345573, 31.44658253114321, 29.29165110549823, + 26.129696536941164, 22.493514836144826, 18.745862485790326, + 15.121939157748495, 11.92038483172431, 8.99987991288103, + 6.309198832026535, 3.773422357126863, 1.1911570777148712, + -1.3269574292350887, -3.8249747325697165, -6.195062612901242, + -8.18032504386928, -9.822134781234755, -11.023528007801199, + -11.803158204129355, -12.301356236113756, -12.584148326313253, + -12.752943561073273, -12.843835724762291, -12.819697292897503, + -12.624948744843895, -12.201455098803091, -11.53164640360757, + -10.681438829752958, -9.827086790278797, -9.161770940769037, + -8.936339332027135, -9.326753913214342, -10.39307175702287, + -12.013733260243631, -13.998743561155377, -15.967296664468071, + -17.502708232527546, -18.333532522519157, -18.199644003841726, + -17.064336387110362, -15.055619788590043, -12.51120428084323, + -9.641600358168198, -6.839150402866129, -4.3746700956134195, + -2.2720572891149, -0.6482755942616699, 0.6331839230568822, + 1.6914198371435711, 2.564251613826904, 3.3447202087106747, + 3.970071487906876, 4.361439012706803, 4.443755123700808, + 4.143408423376588, 3.467548837062511, 2.5179822978383366, + 1.436054301528481, 0.3778623997647188, -0.45018793728649437, + -1.002379603860145, -1.2660922286329208, -1.297811921261988, + -1.2416377105588239, -1.2304966870384064, -1.3546614252616886, + -1.6438904086660615, -2.0322306153199254, -2.426398760629873, + -2.6900958855928474, -2.717157904756229, -2.48090722858149, + -2.0240209113477436, -1.4457040408426747, -0.8839857673860988, + -0.4728756457224583, -0.25427877621046346, -0.22407469601809332, + -0.29426648661873134, -0.3317771573272305, -0.2211672802871394, + 0.10196259225361665, 0.6119138830124197, 1.2049806256731181, + 1.7430559597157438, 2.060119138551658, 2.1133097612580145, + 1.9621285399769823, 1.8022622208233048, 1.9452261348623288, + 2.738521109308815, 4.483323285966482, 7.365318706440951, + 11.201163672782933, 15.865230706573143, 20.822970303144935, + 25.358868834342363 + ], + "pressure:branch111_seg0:RESISTANCE_63": [ + 144386.38080954622, 165826.98939275634, 179251.14065168423, + 183565.69937970012, 179048.13776044652, 166778.55462272253, + 148775.26041348305, 128071.84816061663, 106733.7528798308, + 86100.13640878895, 67871.37214018701, 51242.82541269235, + 35922.83201253767, 21484.822567223753, 6782.118735272466, + -7555.328352660652, -21778.347525332672, -35272.97196923954, + -46576.5068089494, -55924.51706542823, -62764.91759930717, + -67203.91616635582, -70040.51787893962, -71650.65777485396, + -72611.73112572079, -73129.24595041365, -72991.80839993511, + -71882.96406602228, -69471.70845177991, -65658.00311792438, + -60817.15649626964, -55952.7124343996, -52164.588120440596, + -50881.04293082646, -53103.95550477179, -59175.274192759665, + -68402.87225701388, -79704.97153796097, -90913.36809048371, + -99655.57661774557, -104386.0601856096, -103623.73601531581, + -97159.60865394783, -85722.53227538204, -71235.33456797864, + -54896.60402528037, -38940.2295872396, -24908.16078854175, + -12936.465388510347, -3691.1018166487897, 3605.17401758588, + 9630.47643449597, 14600.139005573197, 19043.91118196426, + 22604.488293175298, 24832.82666431412, 25301.511818465904, + 23591.42083092231, 19743.263397689618, 14336.694325853268, + 8176.495749796678, 2151.4439268733845, -2563.2455206695145, + -5707.272045301013, -7208.778745518502, -7389.381896590723, + -7069.541487649449, -7006.107583119933, -7713.067238668995, + -9359.857023014034, -11570.958682473836, -13815.243011693481, + -15316.661460285255, -15470.74510770338, -14125.599142421424, + -11524.214900174815, -8231.438694785687, -5033.170307152851, + -2692.4230534427693, -1447.7929774210859, -1275.8193041049935, + -1675.4719334681063, -1889.0473110097844, -1259.265283588405, + 580.5467810748487, 3484.068296280052, 6860.826191542622, + 9924.478225584551, 11729.74821531002, 12032.60089993887, + 11171.816866955474, 10261.582290375038, 11075.579250149076, + 15592.381281934133, 25526.80198350421, 41936.08628519209, + 63776.32591317663, 90332.23277405603, 118560.22993044999, + 144386.38080954622 + ], + "flow:branch114_seg0:RESISTANCE_64": [ + 22.946650948440034, 25.969379718971062, 27.63604150047433, + 27.83034990910448, 26.701249485818337, 24.44942481084091, + 21.40471889669909, 18.086346863377532, 14.799772914477138, + 11.658131188654734, 8.977571504967761, 6.549883081674564, + 4.290395466059363, 2.1778536166369946, -0.01946975690520511, + -2.137904471378961, -4.214909326032764, -6.192727972204773, + -7.767174723518805, -9.035748170184508, -9.927065430554778, + -10.447946625916082, -10.762098413391444, -10.914287579348606, + -10.989200900890928, -11.01303071673122, -10.933993026046428, + -10.69822102017587, -10.257370014549087, -9.605485671376643, + -8.814194926456347, -8.067496595652303, -7.533801772925777, + -7.438231896489182, -7.9230605577535895, -9.010712912100846, + -10.545368011732794, -12.345269069891975, -14.05737196036812, + -15.280491861479149, -15.827676579593042, -15.483870157574536, + -14.253317092818252, -12.284901881356795, -9.940724363154597, + -7.377053813466686, -4.9418374680804105, -2.891493026511525, + -1.1632315458787332, 0.12331215220965536, 1.119441014653645, + 1.9581918295977958, 2.638498708836272, 3.2549771759192097, + 3.729175004772736, 3.977207172864973, 3.945339255310907, + 3.5690425978865696, 2.8689869559102967, 1.9588749448781368, + 0.9775312666431448, 0.04799153762698767, -0.6271599783852162, + -1.037388843318814, -1.20131403603572, -1.1718847384744175, + -1.0937234480549356, -1.086691355679798, -1.2177884607261955, + -1.4997979783881115, -1.8527338823150925, -2.187742485095545, + -2.3825119528806673, -2.3453820361174613, -2.07294680644011, + -1.6206999620237141, -1.0873642858312635, -0.5980711349885482, + -0.27446392601263403, -0.1297438131726421, -0.1466669748474743, + -0.23390232802644342, -0.2629371530235124, -0.1363102265762825, + 0.1892690017559269, 0.6716924440742604, 1.1993651006512267, + 1.6514371421877996, 1.872766362864135, 1.8496409597044048, + 1.6670805727467701, 1.5233591996419826, 1.7140522432830323, + 2.5502818575486144, 4.278213355651792, 7.046372823129049, + 10.58963590453999, 14.79139642834315, 19.156664661141825, + 22.946650948440034 + ], + "pressure:branch114_seg0:RESISTANCE_64": [ + 157102.4860397311, 177797.36676725955, 189208.03884529046, + 190538.35646431014, 182808.05700207863, 167391.11204747358, + 146545.76649154446, 123826.78683691756, 101325.51032881462, + 79816.50117180157, 61464.25485788995, 44843.27223666682, + 29373.863546635886, 14910.50777618803, -133.29819759590237, + -14636.999016709593, -28857.053477632868, -42398.03716835422, + -53177.36611375289, -61862.55693497945, -67964.89220685366, + -71531.06536678749, -73681.88148880978, -74723.83294281039, + -75236.72125397324, -75399.8702607167, -74858.74477249662, + -73244.54981463883, -70226.29721155872, -65763.22104619895, + -60345.709641744164, -55233.49678093832, -51579.59610387702, + -50925.284273692, -54244.62652364216, -61691.15496035343, + -72198.05341396577, -84520.93798207273, -96242.71912800262, + -104616.71573521792, -108362.97394657062, -106009.12964324043, + -97584.24245114706, -84107.63865506448, -68058.40704146506, + -50506.43321975844, -33833.9112572116, -19796.385269999435, + -7963.97557569688, 844.2471938323023, 7664.167061767875, + 13406.610196135352, 18064.27907506746, 22284.951624901867, + 25531.51069598037, 27229.643914316715, 27011.462660595214, + 24435.176452092535, 19642.299183520372, 13411.287092517174, + 6692.592854456706, 328.57038210039644, -4293.802697846638, + -7102.403162948079, -8224.704424175123, -8023.218995226149, + -7488.09371421751, -7439.949033033109, -8337.495309467062, + -10268.251846057348, -12684.600447175815, -14978.211155759247, + -16311.685380928782, -16057.478253140811, -14192.271345024677, + -11095.998005570682, -7444.556197712453, -4094.6481622260194, + -1879.0962220018994, -888.2810673996233, -1004.1441960409657, + -1601.3943518813462, -1800.1790546683405, -933.2375132157002, + 1295.8157063060737, 4598.690809184403, 8211.36118752098, + 11306.437752463597, 12821.751289049811, 12663.424989703617, + 11413.539300159386, 10429.561940563062, 11735.127240432543, + 17460.309167696247, 29290.4596619105, 48242.45117789797, 72501.1301473569, + 101268.16135885431, 131154.63556129514, 157102.4860397311 + ], + "flow:branch115_seg2:RESISTANCE_65": [ + 25.117063559326006, 28.619843910876543, 30.69932664502002, + 31.18746189186784, 30.197649538047603, 27.93371418657057, + 24.746674938119522, 21.166098989094245, 17.553701622209964, + 14.07418103001777, 11.03859694916061, 8.272198544846734, + 5.697829070777085, 3.273503728849386, 0.7765080000578554, + -1.6500712052724997, -4.045232047155683, -6.319425213409299, + -8.179323426017598, -9.704169463430105, -10.80657058317308, + -11.497301671594482, -11.93786180387443, -12.18343458234398, + -12.328938725452607, -12.405611971246621, -12.36470839803006, + -12.149970286544976, -11.70714812686015, -11.027064349641773, + -10.181368091707277, -9.360837400312326, -8.752963438841658, + -8.600880748551216, -9.069228376412061, -10.196798147582593, + -11.837262267712903, -13.79454007765915, -15.690156735022724, + -17.10003643063137, -17.791820569908296, -17.52510069031522, + -16.285412110700317, -14.21903155956729, -11.69445075229458, + -8.891401884116844, -6.1913098498945, -3.8711600715396814, + -1.896667373053425, -0.3927690674992347, 0.789436309053347, + 1.7846013955131406, 2.6004896989224733, 3.3365136758383236, + 3.919651352106626, 4.259323022462789, 4.292017618467721, + 3.9476551458191538, 3.2422185025480736, 2.286841578178086, + 1.2300868686052022, 0.21468574786008943, -0.5515706767634795, + -1.03971012532208, -1.255123344979812, -1.2554030620494103, + -1.189858685422384, -1.1879512956320792, -1.328543980157274, + -1.6314446591198404, -2.0183852154793014, -2.395851061387129, + -2.6306515926546, -2.6208775509680327, -2.354184803426622, + -1.8833240134274973, -1.3115243094356248, -0.7725537665747639, + -0.40009694702153276, -0.2185139546012305, -0.21394524291393102, + -0.2940179069893208, -0.32336123284443385, -0.1932816303736591, + 0.14919986396262624, 0.6675344003354852, 1.2477471969737168, + 1.7563266545131053, 2.0299209726234513, 2.0415004779648394, + 1.8692596296489894, 1.7199614781861328, 1.9087135515387894, + 2.7750179528036854, 4.598746116354415, 7.551208074304241, + 11.385720236604536, 15.985349393276765, 20.822134101809866, + 25.117063559326006 + ], + "pressure:branch115_seg2:RESISTANCE_65": [ + 148972.51254033783, 169747.95026676205, 182081.62800571465, + 184976.8205114303, 179106.11699770848, 165678.42722251327, + 146775.6903128064, 125538.83695978372, 104113.2467124342, + 83475.76559007619, 65471.32862694334, 49063.46629842218, + 33794.552085839234, 19415.5687883327, 4605.568143062682, + -9786.783106212612, -23992.788028345858, -37481.318213365106, + -48512.6121043516, -57556.66874312903, -64095.15061014688, + -68191.96493276973, -70804.9833565146, -72261.50687621374, + -73124.51053636475, -73579.26935177279, -73336.66503380513, + -72063.02586294964, -69436.59106571069, -65402.9273059726, + -60386.99476701075, -55520.32241795907, -51914.944299846204, + -51012.922435980225, -53790.75204571708, -60478.512399511965, + -70208.31465648614, -81817.17937900832, -93060.32392867527, + -101422.50050789143, -105525.56060965138, -103943.61093175139, + -96590.85960249824, -84334.89258471072, -69361.28131513624, + -52736.04040353458, -36721.4496263077, -22960.3449042107, + -11249.376478650549, -2329.563513477839, 4682.24759524302, + 10584.698850031697, 15423.836602902718, 19789.288833099698, + 23247.952883754097, 25262.58895186725, 25456.504777333073, + 23414.046961595996, 19230.01211461396, 13563.549531903742, + 7295.802354689347, 1273.3285955105252, -3271.4361440758166, + -6166.653570668488, -7444.296894340004, -7445.955932015039, + -7057.203861296492, -7045.890888793333, -7879.764060670679, + -9676.306681532817, -11971.300550880187, -14210.098702191975, + -15602.730647647455, -15544.75955782205, -13962.970803588816, + -11170.235308167086, -7778.8182194484025, -4582.1150791501295, + -2373.026103020961, -1296.034178725189, -1268.936566078534, + -1743.8577655608565, -1917.8967796613322, -1146.3780404369204, + 884.9234526444254, 3959.231802324488, 7400.54801825503, + 10416.997749216738, 12039.720600132421, 12108.4001255323, + 11086.817651326248, 10201.311242963704, 11320.82390208173, + 16458.985971718947, 27275.750681217076, 44787.17971497436, + 67530.1611879139, 94811.14929405868, 123498.73727363706, + 148972.51254033783 + ], + "flow:branch116_seg0:RESISTANCE_66": [ + 12.038776734845678, 15.007970639402194, 17.76832072611052, + 20.07529982003322, 21.724592683118995, 22.596147510232562, + 22.67186387512714, 22.04634975184496, 20.83292923612055, + 19.197136431669367, 17.316133091526076, 15.278959301911522, + 13.17673389938633, 11.045055819133903, 8.878887800310933, + 6.706238674026646, 4.522343083219962, 2.36410026008581, + 0.30032239918003034, -1.6297477593450058, -3.3633975837242405, + -4.868353514012082, -6.141789030223386, -7.192677096891765, + -8.050947017504246, -8.742889644726063, -9.282717362783476, + -9.670395717574706, -9.894300881019491, -9.941396214114157, + -9.817719750603425, -9.558824917090803, -9.23047494185936, + -8.936168362930632, -8.784185423818506, -8.87246311732402, + -9.253530156761824, -9.93489095733911, -10.839725814922867, + -11.83887758192678, -12.77789927412214, -13.481105106973994, + -13.813715239719844, -13.694281430496087, -13.116632863825986, + -12.119255604920923, -10.815251824792297, -9.325642037389953, + -7.762393333956613, -6.232915260365751, -4.785922416667949, + -3.4505664900442885, -2.232157802969307, -1.1225025326022136, + -0.13217077136172425, 0.7235201918166663, 1.4113146365335252, + 1.8926068629470634, 2.1409412266082053, 2.156069450958943, + 1.9605410167511161, 1.6074811796407535, 1.1779627397369217, + 0.7356877238447337, 0.3414235311625633, 0.027891284104324714, + -0.20876226196849088, -0.3940478095891937, -0.5655121325121683, + -0.7575145143437454, -0.984219974047344, -1.238227981923599, + -1.4862571964497684, -1.6847258230966122, -1.793897113903664, + -1.7909509489251396, -1.6774288434946267, -1.4836311128245274, + -1.2544034307432879, -1.0346864437373307, -0.8594554068686551, + -0.7357263141203076, -0.644929881518794, -0.5508850170791199, + -0.41292592283811697, -0.20586944021251355, 0.07145693512286955, + 0.39127894529820884, 0.6995300282986846, 0.9502746907091167, + 1.1158945294828482, 1.2138246548290397, 1.3189425281812077, + 1.5558010667641884, 2.0802815614659833, 3.0435591246511184, + 4.537120211294505, 6.606507783600676, 9.163041027255005, + 12.038776734845678 + ], + "pressure:branch116_seg0:RESISTANCE_66": [ + 68206.82100601576, 85029.06811971343, 100668.0909560715, + 113738.49782460145, 123082.72154239424, 128020.59732489541, + 128449.57550609605, 124905.66645426987, 118030.91848411725, + 108763.18061726344, 98106.17941534621, 86564.37985491037, + 74654.02426793046, 62576.80176729361, 50304.17327828974, + 37994.82546586466, 25621.75975173791, 13394.032203726676, + 1701.5047771144475, -9233.489095686336, -19055.645105631454, + -27582.114365756443, -34796.882961421834, -40750.788066513494, + -45613.396962698345, -49533.662946602446, -52592.107616727706, + -54788.53577014643, -56057.0915164463, -56323.91455215934, + -55623.21392491991, -54156.42091448748, -52296.12327119379, + -50628.70168908438, -49767.62806406016, -50267.77363302972, + -52426.74475797542, -56287.058408527424, -61413.48533133795, + -67074.27356846188, -72394.38921566265, -76378.46794958948, + -78262.90191565033, -77586.23844500103, -74313.51620261352, + -68662.78160790044, -61274.825640168085, -52835.30139480924, + -43978.56895003348, -35313.16718241829, -27115.093236801546, + -19549.508736595304, -12646.499812863136, -6359.64359222608, + -748.8259266735084, 4099.171643797296, 7995.935709863331, + 10722.742050873225, 12129.70372687463, 12215.414103698793, + 11107.629383760193, 9107.335695739048, 6673.858607947102, + 4168.107940016107, 1934.3671030814319, 158.02069133921614, + -1182.7622148424089, -2232.5148981841144, -3203.9621340700037, + -4291.769672889166, -5576.190760816336, -7015.29700133491, + -8420.529826234995, -9544.972482757596, -10163.492690837174, + -10146.800916268297, -9503.630759047111, -8405.651502655, + -7106.9405268063, -5862.1132877297, -4869.325379984465, + -4168.326576849708, -3653.9108548191466, -3121.0908369161316, + -2339.470622979613, -1166.3726613139668, 404.8459815255541, + 2216.8276373243184, 3963.2531177697165, 5383.8705678580955, + 6322.205329527602, 6877.037658233837, 7472.592848782211, + 8814.537159296175, 11786.030693162775, 17243.5702570529, + 25705.480959607623, 37429.79073335753, 51914.07009050682, + 68206.82100601576 + ], + "flow:branch117_seg0:RESISTANCE_67": [ + 25.75622952674866, 28.867410181745775, 30.439815422241036, + 30.33446713280679, 28.825051602178448, 26.14785962959951, + 22.667624288200333, 18.973658537356375, 15.41151385835503, + 12.016938294333732, 9.176246654713587, 6.6128840739502985, + 4.183810308006862, 1.9223555077596202, -0.4731289180059172, + -2.7669957888692993, -4.993719727649324, -7.140235966009288, + -8.778383726252375, -10.078186920523004, -10.983877544299087, + -11.472209721667795, -11.76631283779232, -11.901139102306177, + -11.961083116292539, -11.9762184761942, -11.870822247379312, + -11.583153805918023, -11.064246023051261, -10.316555117606617, + -9.426275308464648, -8.621130502259756, -8.085802276617857, + -8.063160901516804, -8.706486274729663, -10.01545392816778, + -11.777256821655586, -13.786232224407772, -15.64838721661193, + -16.88586191125524, -17.343807392537368, -16.799885410083057, + -15.281520130252092, -12.9722319280459, -10.342019530214719, + -7.518087554676044, -4.86427441190546, -2.714630830022572, + -0.9022059731359744, 0.42037050867494624, 1.427814249685734, + 2.311034598156257, 3.0183036247783144, 3.6646834480638577, + 4.157663764335813, 4.379742853382541, 4.287941846016879, + 3.8126904173216287, 2.9846971017711605, 1.9475142158203167, + 0.8656236766645011, -0.1405298111403902, -0.8314177878694848, + -1.2180434036533663, -1.3485759861249367, -1.2780718381003384, + -1.177407345295238, -1.1808360501296382, -1.3493541201179489, + -1.6868226103727715, -2.0854267011148346, -2.4450788580050076, + -2.6345633412166296, -2.5493739286599357, -2.2047225069712755, + -1.6759919894151514, -1.0798972582102802, -0.5500651110798763, + -0.22808049537143907, -0.10824967106548314, -0.15647396915480058, + -0.2675336628173276, -0.2910891413400082, -0.12435008604392396, + 0.268389469381674, 0.8259021163728881, 1.4095502620747309, + 1.889830086799305, 2.0895833232765857, 2.0135729682359838, + 1.7827635004548295, 1.6343288001576708, 1.9063932120625398, + 2.943483737548261, 4.995730272894142, 8.22961836786802, + 12.245328912467812, 16.917372014358843, 21.749446690708094, + 25.75622952674866 + ], + "pressure:branch117_seg0:RESISTANCE_67": [ + 167645.58548995387, 187896.05351479648, 198130.73467791453, + 197445.0296664578, 187620.34433676177, 170194.6797904138, + 147542.05934976056, 123498.2818847035, 100312.5190116513, + 78217.45236654759, 59727.57935830399, 43042.82275490044, + 27232.14311847794, 12512.484184977713, -3079.564669544255, + -18010.19161564515, -32503.789681057442, -46475.321157347105, + -57137.91601035765, -65598.24857957431, -71493.32863149345, + -74671.85030539082, -76586.14793369053, -77463.72312498736, + -77853.89472641316, -77952.40977768386, -77266.39273199075, + -75393.97797323218, -72016.44171608878, -67149.77132558973, + -61354.99924148506, -56114.365230965625, -52629.9494035752, + -52482.57819843753, -56669.94027877391, -65189.92370337687, + -76657.38159700311, -89733.66891923876, -101854.31195113368, + -109908.95246040622, -112889.68914985155, -109349.33713075332, + -99466.39847855065, -84435.39511209048, -67315.51749415601, + -48934.732025100275, -31661.238727539967, -17669.351580190498, + -5872.398692589269, 2736.163691053695, 9293.54801761024, + 15042.370541583468, 19645.937610430294, 23853.180903204247, + 27061.957004171, 28507.45502901371, 27909.92837580579, 24816.548425303736, + 19427.194986630977, 12676.240542977635, 5634.286957168425, + -914.699197059214, -5411.643101307011, -7928.16352818856, + -8777.791428548657, -8318.884616788018, -7663.66612617643, + -7685.983337975862, -8782.856250972913, -10979.416216180682, + -13573.90374012931, -15914.855716503593, -17148.197619140283, + -16593.70539694803, -14350.392208620711, -10908.920424480535, + -7028.979452666022, -3580.3372348714583, -1484.5607795837304, + -704.5899115786774, -1018.4786614690254, -1741.3588232977627, + -1894.6798668268798, -809.3864421764141, 1746.9292113251477, + 5375.7419622659745, 9174.668936599799, 12300.778382524382, + 13600.958917411956, 13106.212570285814, 11603.88909073241, + 10637.737495738906, 12408.586663603375, 19158.9399391298, + 32516.876186377332, 53566.03877936661, 79704.0317145675, + 110114.04962644563, 141565.70241616765, 167645.58548995387 + ], + "flow:branch119_seg2:RESISTANCE_68": [ + 39.19449051061941, 44.105741403587864, 46.675890789875055, + 46.727840564261975, 44.56355231388802, 40.56459728855001, + 35.32310050619091, 29.709641521467645, 24.223561969697098, + 19.070910608347983, 14.715733713908019, 10.766003015896803, + 7.08418411550777, 3.6023216261211366, -0.060562419342056174, + -3.6011441433358655, -7.10002269894425, -10.417260550552127, + -13.020149188780959, -15.111956220243105, -16.560192304586106, + -17.387384510006115, -17.889070387083944, -18.138143156883324, + -18.2782925393772, -18.345199493438027, -18.23657186022012, + -17.85402835102407, -17.113293196857867, -16.00924998760091, + -14.674798125476046, -13.433552632196504, -12.58385243543931, + -12.505100127186637, -13.429952397559182, -15.379097740418041, + -18.060369819518865, -21.151697229967, -24.02431208893144, + -26.00496122226738, -26.790818598469414, -26.03676359917099, + -23.79013622986738, -20.327914216705093, -16.305179617651355, + -11.970115744247146, -7.914154362588372, -4.5682792510638075, + -1.7800410957309727, 0.26302054953419735, 1.8394297967077193, + 3.1910025391578447, 4.301966830780474, 5.324139446614056, + 6.12040264726367, 6.529980313557787, 6.454142919255752, 5.790147600401202, + 4.580700142784552, 3.0302790097823706, 1.3790462045896323, + -0.15035836803043917, -1.2230417859348537, -1.8427984862755125, + -2.0433001507204365, -1.9338940292490483, -1.7716441524761835, + -1.7589360482181338, -2.002345604197631, -2.5115309864958624, + -3.1331486662328425, -3.708913392540008, -4.0271316262549135, + -3.932824332141036, -3.4333355080493613, -2.636081814433262, + -1.7202301241299753, -0.9012908435387164, -0.3854731139099987, + -0.18677421804110597, -0.2579413670358893, -0.43360398852299903, + -0.4881892932433353, -0.2567172727916507, 0.3258477708559744, + 1.173185392147434, 2.084122530043528, 2.8409178672599387, + 3.181119070937109, 3.09835596806652, 2.7492966037296465, + 2.4937126730865082, 2.8489942763102674, 4.347134424148873, + 7.3946601727119825, 12.225623065509744, 18.332974038768402, + 25.505474266301725, 32.90025371930084, 39.19449051061941 + ], + "pressure:branch119_seg2:RESISTANCE_68": [ + 160437.21401984207, 180540.73878454906, 191061.28903993033, + 191273.9382404358, 182414.72428708788, 166045.5562000045, + 144590.21566361512, 121612.29941083101, 99155.79321032678, + 78064.12908967219, 60236.81615856374, 44069.141032247135, + 28998.125713298887, 14745.604246132443, -247.90386880903728, + -14740.784383575137, -29062.95875915618, -42641.61209076609, + -53296.17593586734, -61858.698066461344, -67786.85173266481, + -71172.84836554503, -73226.42996292264, -74245.97482125489, + -74819.65689190029, -75093.53123414314, -74648.87907482362, + -73082.99024561846, -70050.89356793222, -65531.64572612035, + -60069.25200155165, -54988.38562819101, -51510.25565269105, + -51187.89399498529, -54973.64856674619, -62952.204849891416, + -73927.62044518803, -86581.54070015454, -98340.19144213456, + -106447.7041247445, -109664.50236379118, -106577.88274636108, + -97381.62502299473, -83209.49912281337, -66742.9926468973, + -48998.00957947635, -32395.49387464561, -18699.617889068628, + -7286.351487654092, 1076.6381613194005, 7529.450903027122, + 13061.92657802253, 17609.504911135562, 21793.626827130243, + 25053.019866161925, 26729.569270143533, 26419.13940865731, + 23701.166609638047, 18750.46108762392, 12404.027088975321, + 5644.934484070048, -615.4711378330187, -5006.352020626418, + -7543.240166826278, -8363.965937994592, -7916.1271449181895, + -7251.979764370376, -7199.96090110416, -8196.324178658228, + -10280.603961128798, -12825.109768531012, -15181.922866908586, + -16484.505097277863, -16098.47126108707, -14053.882995560563, + -10790.435510865273, -7041.523566012504, -3689.3091369510626, + -1577.8807600132725, -764.5343721233128, -1055.8472318070076, + -1774.8978236544785, -1998.3352022675792, -1050.836571695108, + 1333.812683101216, 4802.271783425811, 8531.066689220903, + 11628.903500069262, 13021.469970843204, 12682.69068132532, + 11253.864557751402, 10207.66716504656, 11661.963161018708, + 17794.392193751424, 30269.0164172931, 50043.893382301765, + 75043.48803006382, 104403.1235061348, 134672.6281807491, + 160437.21401984207 + ], + "flow:branch121_seg0:RESISTANCE_69": [ + 29.688153617726712, 33.63959942603916, 35.79528144818194, 36.059400836289, + 34.56173773923277, 31.586666572038375, 27.59031036247258, + 23.244096265107054, 18.934456089444947, 14.86917767934063, + 11.400491772123027, 8.27006039006454, 5.39663569126563, 2.688236372445347, + -0.11573463704842608, -2.8414746772630006, -5.538604244662954, + -8.066114564721554, -10.113817438537355, -11.756956056074094, + -12.881682433583777, -13.541793346617938, -13.91917661680865, + -14.08876881960281, -14.169924422234816, -14.187490020267196, + -14.08272964271474, -13.780799924977718, -13.212035052163802, + -12.364150898223455, -11.332992535169586, -10.34679207670369, + -9.63326411417145, -9.49345910522348, -10.10804199650492, + -11.513180634496429, -13.522573017804616, -15.883164442144507, + -18.12162279550209, -19.745053498567927, -20.471058090552084, + -20.02407651752964, -18.41749178131809, -15.856240535845892, + -12.769960255770286, -9.409334176871564, -6.255807379536362, + -3.5749238101617844, -1.356104156287332, 0.28105215202313555, + 1.5511919562719036, 2.591292169117184, 3.4478594685531623, + 4.231469481149978, 4.8322269538343425, 5.156712754661379, + 5.116183966247148, 4.626582574537483, 3.716153041067608, + 2.526006452717704, 1.23613988222956, 0.024819626979635356, + -0.8615890537272145, -1.3987169460445257, -1.5965891379687802, + -1.5416558815361225, -1.4214414500502672, -1.3926463613299875, + -1.5502317269492696, -1.910709170254528, -2.3757655899357935, + -2.8231101453840854, -3.0838063144601264, -3.04513565704658, + -2.6933136011957, -2.098851433694181, -1.3929803565580747, + -0.7492877007463068, -0.31859793000448317, -0.12826777360771766, + -0.15962460658242977, -0.2858182363204705, -0.33995983249483336, + -0.19027933062669153, 0.2243575207548502, 0.8515246937417961, + 1.5476881335802655, 2.1438280155497353, 2.4426811043226166, + 2.417007574209632, 2.1670681772753086, 1.9527177885055853, + 2.1626976298307876, 3.206370637721167, 5.417643518811465, + 8.966631594578908, 13.573541191439855, 19.065709931033552, + 24.707032542562466, 29.688153617726712 + ], + "pressure:branch121_seg0:RESISTANCE_69": [ + 161598.96370860562, 183107.52756192462, 194841.36542025596, + 196279.02368499796, 188126.92343702193, 171932.97538055183, + 150179.95461705668, 126522.58261495849, 103064.29028356737, + 80936.11125570224, 62055.31269697327, 45015.705794654314, + 29375.041184799233, 14632.64497969933, -629.9683588583097, + -15466.753815767997, -30147.806355832923, -43905.58508951448, + -55051.66937124073, -63995.62396143607, -70117.7499582746, + -73710.87470602508, -75765.05248242136, -76688.17907957574, + -77129.92636548489, -77225.5396688739, -76655.30654935422, + -75011.83858137863, -71915.92984875459, -67300.71522860572, + -61687.899927433886, -56319.80010725516, -52435.914945276716, + -51674.92640896446, -55020.23240619437, -62668.70225346923, + -73606.25434942503, -86455.45786759355, -98639.86498382044, + -107476.5451844866, -111428.34330649259, -108995.32709647786, + -100250.34309293234, -86308.90529268618, -69509.62227238073, + -51217.01644869243, -34051.69626615293, -19459.074164666832, + -7381.564685992865, 1529.8269168170712, 8443.469266375005, + 14104.956966591895, 18767.43580302698, 23032.792538169062, + 26302.84382785498, 28069.089375725198, 27848.48252046396, + 25183.477530618336, 20227.81504540915, 13749.59286241035, + 6728.573509128095, 135.09853294255996, -4689.813318059154, + -7613.515205859802, -8690.575826518254, -8391.562373982204, + -7737.209536783156, -7580.471716136765, -8438.242532996344, + -10400.39828132993, -12931.799743819787, -15366.791744735605, + -16785.816696841892, -16575.324045650017, -14660.281420654524, + -11424.496822220182, -7582.289723527851, -4078.5330579766132, + -1734.1966089020245, -698.1888991512774, -868.8708411549788, + -1555.7697320326745, -1850.4740086271827, -1035.7310542231387, + 1221.225924692538, 4635.030856172785, 8424.397210788835, + 11669.313967558668, 13296.035186688376, 13156.288676533992, + 11795.815133632888, 10629.0601665937, 11772.025310020215, + 17452.960497081905, 29489.391278945528, 48807.29169952799, + 73883.68500906283, 103778.73298877897, 134485.65736364704, + 161598.96370860562 + ], + "flow:branch122_seg0:RESISTANCE_70": [ + 16.10169235456015, 19.521303400868163, 22.416050710199215, + 24.534352607843267, 25.70016025501973, 25.859702104392895, + 25.091381880864162, 23.612562799187828, 21.60694588888379, + 19.29577540237442, 16.898476669992636, 14.460737210846538, + 12.05321610074762, 9.672497325956542, 7.266922696204621, + 4.8747136705808085, 2.476089979425566, 0.13269325725359704, + -2.0471317980588593, -4.028986844673858, -5.733161256947956, + -7.1410456181755775, -8.278625597598639, -9.174210845857477, + -9.881374669367927, -10.433413378404312, -10.837642167458668, + -11.080760114122292, -11.13728946927469, -10.988722068489793, + -10.654305538166899, -10.201728406953693, -9.734599494966654, + -9.403592415892245, -9.344580983642604, -9.659586725490907, + -10.368561812265924, -11.431089254505931, -12.685992532395385, + -13.923893182325653, -14.93638205301516, -15.506653390590502, + -15.509122312323768, -14.905406818954415, -13.76699309588054, + -12.192743847045122, -10.381102903825653, -8.497686232277124, + -6.661761908887601, -4.987626495796012, -3.4826594281038314, + -2.1447445364553768, -0.9546924630722544, 0.11808006996697261, + 1.054209132664849, 1.828157069726304, 2.3908581599521654, + 2.6913839092306935, 2.7073105490378655, 2.4610551021859775, + 2.0037037444216486, 1.4222494026438823, 0.8351576125189276, + 0.31085127387239886, -0.0918971015012129, -0.36054175042426556, + -0.5338860504647177, -0.6684309782001202, -0.8226138889627798, + -1.0364493355778528, -1.3099702605217163, -1.613964237351636, + -1.8857448543462612, -2.0614656189303653, -2.0966224973212704, + -1.9795427971520245, -1.7349916346791034, -1.424467047433362, + -1.11844291428222, -0.8706398525690386, -0.7125851807618392, + -0.6291044215100794, -0.5721372827461916, -0.48035671069590763, + -0.29978076682049837, -0.012083621307138125, 0.3616080733089137, + 0.7625889085889803, 1.1034819326958754, 1.330473379481882, + 1.4289733133487674, 1.4578514435545697, 1.554835640984071, + 1.9112063620575208, 2.7367321766423083, 4.20544562132875, + 6.36801861641267, 9.225976281287982, 12.56756958641142, 16.10169235456015 + ], + "pressure:branch122_seg0:RESISTANCE_70": [ + 90442.68645277344, 109650.5313700251, 125910.2336108054, + 137808.66702527518, 144356.9709660009, 145253.11238649473, + 140937.48247991863, 132631.00341055583, 121365.51793432844, + 108383.74787889102, 94918.19824521686, 81225.49435407984, + 67702.52595459773, 54330.105407763534, 40818.07032558125, + 27381.109410557336, 13908.11752620551, 745.3337448026862, + -11498.673261318554, -22630.689115856498, -32202.981806356976, + -40111.02283957411, -46500.77288127021, -51531.246325702836, + -55503.36270652062, -58604.14632427658, -60874.68639041462, + -62240.27205290208, -62557.79561693604, -61723.29732009009, + -59844.89045883324, -57302.77931469134, -54678.93128744299, + -52819.675203856656, -52488.20989283781, -54257.586981502376, + -58239.87716964434, -64208.05953146604, -71256.81075534702, + -78210.0587665455, -83897.17608640507, -87100.3717904114, + -87114.23964412844, -83723.18919606727, -77328.75604318628, + -68486.24880383909, -58310.32007631064, -47731.22939851777, + -37418.90170805097, -28015.337106789557, -19561.985643614025, + -12046.960863528195, -5362.47676301038, 663.2519432866327, + 5921.458685321127, 10268.699277244446, 13429.373146131615, + 15117.416583709573, 15206.876005649141, 13823.667105835217, + 11254.739285193931, 7988.729007390978, 4691.053364107067, + 1746.0415760771452, -516.183054177055, -2025.151379662544, + -2998.820720233703, -3754.555238383593, -4620.59567360267, + -5821.7024780819465, -7358.0606886506885, -9065.585048482653, + -10592.168005450283, -11579.18587068757, -11776.660922313084, + -11119.028023905694, -9745.392034460428, -8001.185446622207, + -6282.257764233238, -4890.355961676891, -4002.567969591439, + -3533.6592382848685, -3213.676657826147, -2698.14814581623, + -1683.8588951450135, -67.87331101588967, 2031.1408809044726, + 4283.437295478879, 6198.222413363427, 7473.226046339279, 8026.4969968806, + 8188.704522527106, 8733.4616304042, 10735.184472773995, 15372.13633864954, + 23621.852371083343, 35768.955111512114, 51822.01110636314, + 70591.63288853434, 90442.68645277344 + ], + "flow:branch123_seg2:RESISTANCE_71": [ + 32.61502367049847, 36.23669870800713, 37.841043805230484, + 37.34161815650066, 35.13613701178498, 31.563040004393756, + 27.086996964472924, 22.447157390569515, 18.090191353427983, + 13.965635291149876, 10.565452486129505, 7.499342009091609, + 4.561807713993565, 1.8170622727252235, -1.124922538574775, + -3.943918436149811, -6.669151143136631, -9.265425932278053, + -11.201199066764264, -12.712250832495844, -13.726944256218662, + -14.23667140422285, -14.534839548369613, -14.658084063145337, + -14.710033206932724, -14.712804085388816, -14.558670823196184, + -14.166672724954223, -13.477255537339621, -12.506973069377874, + -11.375634938499916, -10.393514581828933, -9.788060451074662, + -9.863900589381077, -10.795279737965028, -12.552130190429473, + -14.83986675203905, -17.372065698120053, -19.64538761426268, + -21.05883703011327, -21.447760904832073, -20.56305959558332, + -18.47195603955679, -15.448414415841818, -12.100969706535963, + -8.57446206382226, -5.343191504346756, -2.787597335330788, + -0.6556988932799986, 0.8609316832451709, 2.020376091167178, + 3.0563228603289265, 3.8829644028437182, 4.6564216562512115, + 5.228808409802104, 5.44565850576208, 5.261858132653299, 4.593565754628063, + 3.4968012674803055, 2.162922003231195, 0.8159098414701962, + -0.40406220343354227, -1.2031116477819177, -1.608578799193179, + -1.7031179554597247, -1.5680514445549156, -1.4271174312207817, + -1.4447205766447466, -1.6851610731319868, -2.136929124860437, + -2.64828224640579, -3.088474351218681, -3.2878186774229654, + -3.1275241098804516, -2.6433965011513054, -1.945935732326438, + -1.1908549541458213, -0.5476838083465183, -0.19202131009516357, + -0.09082972342722338, -0.191559353230374, -0.347760544750646, + -0.36619111024878864, -0.12505325309924697, 0.4052863201608712, + 1.131902550840207, 1.8624236994195709, 2.433424941960427, + 2.6299200543206367, 2.4747076716431304, 2.147578934753084, + 1.9690697487715423, 2.379500404772164, 3.8074638773202945, + 6.549615231261757, 10.774971070115981, 15.920210120621988, + 21.83815588972807, 27.815646887477524, 32.61502367049847 + ], + "pressure:branch123_seg2:RESISTANCE_71": [ + 172727.71905219287, 191907.94944837585, 200404.48993890002, + 197759.55385015803, 186079.4235093755, 167156.4602065069, + 143451.53475632594, 118879.15012570997, 95804.85120179615, + 73961.38519859742, 55954.16784363887, 39716.18272331567, + 24159.131360852127, 9623.08121908922, -5957.539879834533, + -20886.81714555855, -35319.52871185973, -49069.28486386279, + -59321.05354262927, -67323.51668665545, -72697.28806231286, + -75396.78043438193, -76975.8657035856, -77628.56318858286, + -77903.68355040178, -77918.35799983445, -77102.0750782742, + -75026.0705330604, -71374.94767952168, -66236.37475618198, + -60244.85818401553, -55043.59232701699, -51837.134099282666, + -52238.78010864297, -57171.32277772194, -66475.52486678513, + -78591.2762478447, -92001.68957642508, -104041.10163430999, + -111526.66706152266, -113586.39065527939, -108901.05175340292, + -97826.66005026102, -81814.11768941671, -64086.198950709295, + -45409.97085718033, -28297.305264250237, -14762.9918724597, + -3472.5522619735243, 4559.45601662247, 10699.82218564466, + 16186.150336269879, 20564.007288173147, 24660.20260341057, + 27691.53746783751, 28839.965959866753, 27866.567334475567, + 24327.32053574524, 18518.904447614266, 11454.739014764307, + 4321.022339065884, -2139.895511325082, -6371.625934904528, + -8518.961988419498, -9019.637167686036, -8304.330915433176, + -7557.95063050618, -7651.176108064386, -8924.538315171321, + -11317.081883561124, -14025.185339413882, -16356.423206271102, + -17412.14191796479, -16563.22899648902, -13999.310649202574, + -10305.589346264973, -6306.715028929932, -2900.5091620738326, + -1016.9363431158677, -481.03018744381154, -1014.4898400459625, + -1841.7244236264826, -1939.3318812053226, -662.2764829510223, + 2146.378379229262, 5994.505715253575, 9863.313323317305, + 12887.310582876356, 13927.939984396055, 13105.942088599062, + 11373.482804489342, 10428.10607148372, 12601.72862519907, + 20164.159853057245, 34686.471823371496, 57063.768973373335, + 84312.7268202485, 115653.90518330014, 147310.43243672667, + 172727.71905219287 + ], + "flow:branch125_seg0:RESISTANCE_72": [ + 27.77855151928287, 31.98557186927411, 34.62324086124198, + 35.491676109022805, 34.6199941030983, 32.20649670986638, + 28.650504248648684, 24.57856852315421, 20.352664650657474, + 16.274402384406837, 12.696157008222539, 9.442469067142772, + 6.478763927429809, 3.7055724417544655, 0.8913323406563426, + -1.8370256297337892, -4.542811786728361, -7.1164935315194695, + -9.27221718739715, -11.049166384880833, -12.335926413394047, + -13.156369431616966, -13.659972932223834, -13.922094889693751, + -14.059160313434216, -14.114559778633279, -14.053079464347421, + -13.813415728173037, -13.329717181019454, -12.575193509551719, + -11.621875611863226, -10.654340155257993, -9.884899543583792, + -9.598696655849237, -9.990567208636895, -11.136509123317056, + -12.907517495197082, -15.105385362754506, -17.30420098866663, + -19.043694600483196, -20.01628710482099, -19.91707650486011, + -18.701313147858126, -16.50122052250842, -13.678177746196893, + -10.482125412060537, -7.352731699382272, -4.58462471662048, + -2.231621044590682, -0.4231591706822573, 0.9914784322046755, + 2.1356268599733728, 3.0740855759216807, 3.906443453240239, + 4.564481940435018, 4.975383104496259, 5.050014310081341, + 4.703474210480806, 3.9397188291836875, 2.8723580362929906, + 1.6481646025945638, 0.44334952245213105, -0.5023828665097223, + -1.1413128963860641, -1.4516540959335962, -1.4921989812193124, + -1.4232659471258777, -1.3943321676167988, -1.5109722733241393, + -1.8122001719749947, -2.231728632889151, -2.666014587068203, + -2.9633419127200744, -3.0043169229998594, -2.7525064788327884, + -2.249665683135812, -1.6027418323925335, -0.9695784928390423, + -0.4954160017076969, -0.23639470597044743, -0.19493237328356217, + -0.2738152688893147, -0.3261159476791106, -0.220968864235435, + 0.11940265860291949, 0.6704738545094718, 1.3243178176997712, + 1.928173851836948, 2.290649677593426, 2.3608454993877777, + 2.1950447472817025, 2.001872181213911, 2.1227795325735292, + 2.944750194806152, 4.808418165480035, 7.925985427239298, + 12.125959386381556, 17.25659896378582, 22.720872221930968, + 27.77855151928287 + ], + "pressure:branch125_seg0:RESISTANCE_72": [ + 147415.8506975791, 169741.76223279716, 183739.40419190712, + 188348.0361696588, 183722.17422174464, 170914.1712150855, + 152043.14932681923, 130434.10795751582, 108007.98491442128, + 86365.36971434986, 67376.25554946845, 50109.51018278937, + 34381.652159508536, 19664.816340179663, 4730.142792389183, + -9748.76950558745, -24107.89718947328, -37765.97016602689, + -49206.013624728854, -58635.968149584456, -65464.575613704095, + -69818.52133317226, -72491.05587495348, -73882.09065659992, + -74609.47257310164, -74903.46771841614, -74577.20258450054, + -73305.34960379118, -70738.44712291672, -66734.32369612165, + -61675.23453607398, -56540.69531014211, -52457.41032486568, + -50938.58231332844, -53018.169899544046, -59099.48058578606, + -68497.90820185363, -80161.60352419406, -91830.32843218921, + -101061.51280085437, -106222.88888302229, -105696.39580863596, + -99244.55509998772, -87569.05338226125, -72587.66559691237, + -55626.78218354734, -39019.644262699505, -24329.790999383735, + -11842.81745196707, -2245.6307372006886, 5261.600354874233, + 11333.393323875049, 16313.627439395323, 20730.803204826694, + 24222.89685536361, 26403.47652348035, 26799.531107258295, + 24960.50420378644, 20907.389728736212, 15243.095131660142, + 8746.51749975095, 2352.777356417183, -2666.056852929162, + -6056.745306395546, -7703.671061542943, -7918.835583411591, + -7553.020186052429, -7399.473745116199, -8018.4621180828035, + -9617.025200198728, -11843.38840400156, -14148.067009614439, + -15725.930441988743, -15943.3775609844, -14607.06415329347, + -11938.577151309952, -8505.466906969625, -5145.38125721807, + -2629.08493591682, -1254.5048166704807, -1034.471564009467, + -1453.0891133495722, -1730.6395482761081, -1172.642607960478, + 633.6487516734225, 3558.085941392587, 7027.91999628408, + 10232.476969292631, 12156.071947745304, 12528.588735674162, + 11648.713523279708, 10623.580944334379, 11265.214833844815, + 15627.26748937497, 25517.4231774435, 42061.80021885103, 64350.31780641649, + 91577.71292097801, 120575.6428610724, 147415.8506975791 + ], + "flow:branch126_seg0:RESISTANCE_73": [ + 29.661010760455813, 34.13509835197898, 36.90705826544446, + 37.79586750459689, 36.87460065072979, 34.33130246311094, + 30.553107060311117, 26.26396365946178, 21.835302965385747, + 17.474959698837708, 13.67179065121652, 10.21024592436772, + 7.016011597914388, 4.047858418221865, 1.008408957137515, + -1.9305752968349605, -4.805824309365653, -7.566240398118146, + -9.870176656629852, -11.764533447038403, -13.144294118169329, + -14.023262589102254, -14.576588222353584, -14.874207168086755, + -15.033929358432127, -15.101827651816949, -15.03778873823539, + -14.778508460688547, -14.258097331268903, -13.449880627487948, + -12.432949573709733, -11.416355833548447, -10.609970225227533, + -10.324984357620892, -10.765694370339991, -12.002877968489631, + -13.885501250718328, -16.206291836728933, -18.530781682211273, + -20.342898700679317, -21.349735833783754, -21.224658518965786, + -19.9154641371347, -17.57214606619217, -14.580487497131614, + -11.196983226026301, -7.8901209091119195, -4.9686612553851175, + -2.4601951477510458, -0.5299236477672972, 0.9898183716982251, + 2.2281949157482535, 3.2406682719708404, 4.150419220609108, + 4.857701894855148, 5.288578660410038, 5.36637033664587, 4.993360790159829, + 4.175465941054339, 3.043645570766132, 1.7592048914901692, + 0.47943263691122634, -0.5164501702789507, -1.1799365181372572, + -1.5126212732900486, -1.562889748671052, -1.501746310642426, + -1.4871544131055123, -1.624624219292996, -1.9528811620574478, + -2.3998240120062126, -2.855940532310278, -3.1609341215150017, + -3.192611920347996, -2.9182399949337583, -2.3843612210984855, + -1.7011439639535264, -1.0377490224109016, -0.5477469925249928, + -0.27585917610447397, -0.23168617261835175, -0.3105491699753006, + -0.3541496846781815, -0.22804680648839415, 0.14534781144053327, + 0.7357008739431145, 1.422897170142441, 2.0590287736179516, + 2.4338257932322187, 2.496487261136026, 2.3230009974765204, + 2.134005823983106, 2.2922236162496814, 3.205383861422488, + 5.2278168843519905, 8.583219566125686, 13.071676233080769, + 18.54454352703927, 24.32935948649299, 29.661010760455813 + ], + "pressure:branch126_seg0:RESISTANCE_73": [ + 146342.84021967108, 168417.29650919608, 182093.71805760017, + 186478.965395311, 181933.57720594123, 169385.33725190474, + 150744.30540656054, 129582.33515346439, 107732.00815096781, + 86218.7487710894, 67454.50082419845, 50375.774446141855, + 34615.91624591078, 19971.50746189739, 4975.333850969647, + -9525.159964314926, -23711.193954552527, -37330.66005699357, + -48697.925268507, -58044.388723055934, -64851.914503878026, + -69188.60901298953, -71918.63211943877, -73387.03797294947, + -74175.08256016302, -74510.08223972002, -74194.12414329291, + -72914.87534979547, -70347.24731526195, -66359.63108398991, + -61342.25052608081, -56326.534221390204, -52347.952331951485, + -50941.87613229841, -53116.27118226433, -59220.34373355448, + -68508.91587325482, -79959.33773024102, -91428.0111614073, + -100368.71629902095, -105336.2950132824, -104719.18288432116, + -98259.82026232338, -86698.25127840097, -71937.87053819196, + -55244.18370034884, -38928.63641233031, -24514.606264594182, + -12138.222406653364, -2614.5613290180536, 4883.610777319274, + 10993.569139200496, 15988.956106724407, 20477.52660054201, + 23967.149938845803, 26093.02926794858, 26476.841368546822, + 24636.469949559294, 20601.103245916656, 15016.876567192567, + 8679.644885611822, 2365.446489540867, -2548.0852746707897, + -5821.624311376728, -7463.03944587999, -7711.05632973458, + -7409.384061915658, -7337.3898960033075, -8015.644660969408, + -9635.21365387963, -11840.360558870418, -14090.768934750453, + -15595.560138714614, -15751.853499402105, -14398.144849149257, + -11764.069539746122, -8393.181247869687, -5120.093195786477, + -2702.4989557920926, -1361.0465151646144, -1143.1037470173187, + -1532.2015803527138, -1747.3197773754187, -1125.1476773353133, + 717.1236246028313, 3629.834340927874, 7020.354596169039, + 10158.929554315724, 12008.120089295813, 12317.282081766036, + 11461.327685335042, 10528.854726127876, 11309.476845873045, + 15814.868281568919, 25793.240061274235, 42348.27800307096, + 64493.62908870547, 91495.90997560498, 120037.29733733335, + 146342.84021967108 + ], + "flow:branch127_seg2:RESISTANCE_74": [ + 30.539324862447764, 34.5652097767291, 36.79650625853272, + 37.06770670012317, 35.56266577419423, 32.563461729000274, + 28.52881069898537, 24.132024521002247, 19.77221556575251, + 15.655954912188047, 12.138036855645618, 8.94870981941874, + 5.995075059401896, 3.2054082956205945, 0.298545877221238, + -2.520173747772926, -5.3123757628011985, -7.961271124103528, + -10.082139277786311, -11.799675229139288, -13.006422483111258, + -13.72260091656357, -14.160265177054466, -14.384873549703922, + -14.512127024842918, -14.5748041002186, -14.503477643136916, + -14.22309122876985, -13.665548482008138, -12.820321003665324, + -11.784199721199226, -10.796359152671425, -10.091428186353252, + -9.968286836050998, -10.617333587317097, -12.072454152821008, + -14.128941693719588, -16.541611128678415, -18.82651608771843, + -20.465096478113697, -21.192170625660015, -20.724580528048115, + -19.077546432925022, -16.449371376130937, -13.32137273810464, + -9.910639781919317, -6.681866257712495, -3.9682971734084247, + -1.6982169393683832, -0.011326992162085629, 1.294500127797175, + 2.396243950494435, 3.303830667862458, 4.13139881851026, 4.782866111996558, + 5.1419114105614, 5.124729062482006, 4.64838092998866, 3.738274575981316, + 2.5434436859765945, 1.2458848628555468, 0.025862279979782715, + -0.8582007374360914, -1.3930032738931526, -1.591352053929647, + -1.535194978222032, -1.4184649803372722, -1.400967393756587, + -1.5746629693914087, -1.955809068720697, -2.4366057960743337, + -2.89522722873495, -3.1658886215361774, -3.124489140777948, + -2.7646829698894355, -2.160822956891627, -1.4476662844833694, + -0.7945447562448166, -0.36246258337865017, -0.17627128372332493, + -0.20788945300985162, -0.3340648710277083, -0.3824423663512797, + -0.2197610915546836, 0.21364857226259215, 0.8612067489582805, + 1.5752120596462433, 2.1851241784564843, 2.485906141233084, + 2.458311691784549, 2.2083782868217954, 2.0041833420039494, + 2.242288360856694, 3.340599197910234, 5.631303637283511, + 9.309278067538518, 14.034162374706186, 19.63741382637088, + 25.465443631632077, 30.539324862447764 + ], + "pressure:branch127_seg2:RESISTANCE_74": [ + 154354.39046584183, 174702.35214568753, 185979.95602032065, + 187350.6798016868, 179743.77703633934, 164584.95101895527, + 144192.68290937055, 121970.08127794373, 99934.37299472638, + 79129.62675225794, 61349.07332574739, 45229.31190697856, + 30300.805952941984, 16201.040654733177, 1508.935351785061, + -12737.671328933471, -26850.250504428168, -40238.51729628256, + -50957.98514943852, -59638.897909242085, -65738.1400395779, + -69357.90852032207, -71569.98755157129, -72705.22183098618, + -73348.3969070017, -73665.1845835206, -73304.68048408184, + -71887.52819668376, -69069.54937027226, -64797.53049585115, + -59560.68031254854, -54567.854520909124, -51004.93392208944, + -50382.54268873457, -53663.00864948138, -61017.59978580469, + -71411.66980227518, -83605.983910591, -95154.54020034167, + -103436.38921068847, -107111.22771395024, -104747.89503289375, + -96423.31860645793, -83139.77809741923, -67329.98775905608, + -50091.178163068565, -33772.04303071164, -20056.89694017911, + -8583.269005967062, -57.2498239203252, 6542.76998866442, + 12111.295061431552, 16698.495177517852, 20881.25881219421, + 24173.958878336514, 25988.675426891357, 25901.830977104986, + 23494.232709238797, 18894.297636522133, 12855.284181999314, + 6297.054681559592, 130.71528202670228, -4337.589397308489, + -7040.632765365013, -8043.143632257251, -7759.3098792124965, + -7169.323435379987, -7080.885680997268, -7958.79227600203, + -9885.212526132991, -12315.295251368812, -14633.297761634958, + -16001.297037867715, -15792.052346087154, -13973.490133481144, + -10921.410735760144, -7316.91509048785, -4015.85405376216, + -1831.9884730952526, -890.9249526082023, -1050.7321281055163, + -1688.458398335645, -1932.971950504749, -1110.7347489771157, + 1079.840346635852, 4352.782630240189, 7961.567533541977, + 11044.235986780861, 12564.47314776966, 12425.00299104805, + 11161.768831358144, 10129.709793198479, 11333.159942062448, + 16884.333733851217, 28462.202238460217, 47051.725873577074, + 70932.62830148953, 99253.04685507753, 128709.5588198875, + 154354.39046584183 + ], + "flow:branch128_seg0:RESISTANCE_75": [ + 35.20062339883612, 39.471615338041865, 41.624489122234834, + 41.496932005201444, 39.41810392845139, 35.74057333420423, + 30.9710891972405, 25.876797474792564, 20.99675167860742, + 16.359670294458162, 12.451019333371777, 8.950611349915986, + 5.643120616188558, 2.555074371392688, -0.6905146267755125, + -3.836128631892385, -6.890511652519949, -9.790926292290933, + -12.04848634904289, -13.827313218439478, -15.049012368780872, + -15.715846438830875, -16.10143129176392, -16.27244310760345, + -16.346642047877122, -16.356611997792083, -16.207217836854323, + -15.811477774730974, -15.098593249655393, -14.074237481427522, + -12.853992548082994, -11.746985852165343, -11.00916967879514, + -10.972178723968451, -11.843251046922587, -13.624301002939344, + -16.045952969264057, -18.79388645016188, -21.342110782872723, + -23.053601555838753, -23.682101486642704, -22.942087348410514, + -20.864369744979456, -17.71612764473757, -14.090958024833826, + -10.209754964247182, -6.58999712325552, -3.629503024787483, + -1.1631775369876511, 0.6361925867879843, 2.012672075058101, + 3.197630929077595, 4.150484638944828, 5.0258534240029045, + 5.691361478518431, 5.9921260753660475, 5.863652517255406, + 5.211666751332074, 4.081974578213626, 2.6558866572544337, + 1.1743703453134184, -0.19655785329227474, -1.1551020198471702, + -1.6879973903034882, -1.8606614237337795, -1.761266753692502, + -1.617554372512487, -1.613411613065821, -1.8374749108703852, + -2.2932138912595583, -2.8402634834616167, -3.33690775368171, + -3.596532056709394, -3.484652177355072, -3.0145559803726742, + -2.289109395156924, -1.469149023841388, -0.7420142247890306, + -0.29843200144218474, -0.13226985316494996, -0.20047874309100724, + -0.35474050155993697, -0.3923884806214122, -0.17019742911876445, + 0.36082495420709143, 1.1229982234854519, 1.9221409196190622, + 2.577428254228956, 2.8599002822158974, 2.7605826198950023, + 2.442558961206488, 2.230915604298631, 2.590280231426611, + 3.9920536550793977, 6.788549738569625, 11.180742604284749, + 16.68035069825664, 23.108232161091298, 29.687779365250968, + 35.20062339883612 + ], + "pressure:branch128_seg0:RESISTANCE_75": [ + 167821.8040468914, 188184.10173083, 198448.10070194802, + 197839.96188415744, 187928.98178046287, 170396.05880431857, + 147657.15946241218, 123369.71382499508, 100103.70287774572, + 77996.04431208046, 59361.236392717045, 42672.75971354676, + 26904.031543209647, 12181.522628798131, -3292.084037073665, + -18289.051880295752, -32851.068665184066, -46679.02880711062, + -57442.12800497692, -65922.82821663034, -71747.37720515071, + -74926.56228286761, -76764.86909063955, -77580.18168106109, + -77933.9310983375, -77981.46363667132, -77269.21495520363, + -75382.49237059019, -71983.7580436497, -67100.05950620728, + -61282.44361422225, -56004.70012951484, -52487.10216350745, + -52310.74481033902, -56463.65219033415, -64954.95114631351, + -76500.37172473634, -89601.36567419113, -101750.23019247966, + -109909.90014702595, -112906.32413178876, -109378.24719146892, + -99472.56135866273, -84463.06386049069, -67179.77604211659, + -48675.828196650094, -31418.34146963304, -17303.947674790277, + -5545.542488615729, 3033.099341064151, 9595.576043185161, + 15244.962713123474, 19787.769434779035, 23961.160543518068, + 27134.02373548819, 28567.94314834838, 27955.435123983272, + 24847.04053078649, 19461.14220840768, 12662.153312295557, + 5598.905102807741, -937.1053792241939, -5507.041810952759, + -8047.663362590629, -8870.853033294461, -8396.98094728396, + -7711.820607923515, -7692.069668965927, -8760.309467796584, + -10933.08172233397, -13541.184664895776, -15908.97617964978, + -17146.755931869022, -16613.359605984097, -14372.13816625756, + -10913.513206945408, -7004.286168492669, -3537.6125138917882, + -1422.7985766007664, -630.6071664602132, -955.7985367850359, + -1691.2538810972612, -1870.743650161815, -811.4299362021674, + 1720.2619986023435, 5353.984378953611, 9163.961476133789, + 12288.096563667728, 13634.804682792195, 13161.299737283913, + 11645.096358552822, 10636.069627168816, 12349.369398934045, + 19032.436972965323, 32364.95703728048, 53305.08988931973, + 79524.91393686213, 110170.35595275849, 141538.8765923773, + 167821.8040468914 + ], + "flow:branch129_seg0:RESISTANCE_76": [ + 29.802460350419786, 33.16664824834458, 34.68639541120228, + 34.30637030543293, 32.319712048608714, 29.06373975386361, + 24.994689534642017, 20.74676740344123, 16.75769961793702, + 13.038011690188311, 9.930578150184761, 7.146242662784323, + 4.496041940186301, 1.9836556741078408, -0.6884582542173698, + -3.3014139990902835, -5.8410292699330135, -8.222113912086987, + -10.054799510778963, -11.483830222252005, -12.43078712497177, + -12.93336795789281, -13.220799418974694, -13.350504288733157, + -13.423066560194917, -13.44747970821608, -13.335999023605138, + -13.007188870864466, -12.40148699821638, -11.529348488218698, + -10.506280063461219, -9.600016204327584, -9.037790165154222, + -9.097521026056818, -9.937177511578113, -11.534310863613669, + -13.647028412687536, -15.973320697637348, -18.061585303401376, + -19.385288823178296, -19.751374542569017, -18.94459831370522, + -17.040974883547417, -14.288515661327741, -11.201451910173091, + -7.96457270923036, -5.030671919577002, -2.6766311279451007, + -0.7533031874049619, 0.616396367589442, 1.6770091634738367, + 2.5995309058905502, 3.362391768542407, 4.080859334665453, + 4.62269161012065, 4.854807350105308, 4.714725958337534, 4.129442409249288, + 3.1526122516747463, 1.9436022750750186, 0.7177228280214829, + -0.38021521528730284, -1.1134084671479554, -1.482309159725019, + -1.551478179788368, -1.4162194458829696, -1.2755655629512757, + -1.2798031821773292, -1.494207661413006, -1.9079039592671962, + -2.387721119220684, -2.8071631011549707, -3.0014461469114178, + -2.870349289333953, -2.434346375592429, -1.7959282126183265, + -1.0977541624342226, -0.5073748726827695, -0.17397311915496166, + -0.08237851920049594, -0.18278237034064662, -0.3348184703126758, + -0.36401329229415175, -0.1532288154982916, 0.3265087735480764, + 0.9958784866418463, 1.6756877036280389, 2.2054985180882296, + 2.400649813199105, 2.268650771430445, 1.9630201141754982, + 1.7813353889071657, 2.1275412260705004, 3.400824118939472, + 5.87580323601543, 9.695109505912198, 14.407444423208524, + 19.86628555130419, 25.31599889322385, 29.802460350419786 + ], + "pressure:branch129_seg0:RESISTANCE_76": [ + 168827.59678698596, 187885.34407590993, 196494.54137749047, + 194341.7417572085, 183087.54545284034, 164642.82742408355, + 141592.1141058089, 117528.11145916626, 94930.48966121624, + 73858.87455779307, 56255.61192223349, 40482.663532761144, + 25469.573548302997, 11237.187009892343, -3900.0388283773304, + -18702.140189492417, -33088.77598728924, -46577.35354614741, + -56959.312003773135, -65054.610778313465, -70419.01547064638, + -73266.07954574848, -74894.34654937474, -75629.11009558561, + -76040.16722859142, -76178.46497522049, -75546.9393947948, + -73684.26674181073, -70253.03353736058, -65312.466652047806, + -59516.89872008433, -54383.015557634615, -51198.06807583073, + -51536.436706533066, -56292.99656468954, -65340.57795233377, + -77308.88601502067, -90487.07101298077, -102316.85589319275, + -109815.48793480046, -111889.32249396338, -107319.02560362354, + -96535.21228344693, -80942.83936263157, -63454.96929728849, + -45118.41150442529, -28498.192445174784, -15162.815267693835, + -4267.3781052378545, 3491.8163193469936, 9500.06890471467, + 14726.051153316952, 19047.572417334744, 23117.610633366163, + 26187.029730015423, 27501.93937496706, 26708.39399486541, + 23392.828304324932, 17859.194972269735, 11010.28899467917, + 4065.8193581766113, -2153.8765693853115, -6307.334144250852, + -8397.115210931954, -8788.949955180358, -8022.724391211473, + -7225.935912847008, -7249.941550688743, -8464.518889075414, + -10808.062037700583, -13526.17245743185, -15902.264262234226, + -17002.85593573523, -16260.206934582498, -13790.299307707703, + -10173.73198632656, -6218.654263021706, -2874.221772899393, + -985.5382162117438, -466.6650759691517, -1035.4416365893283, + -1896.709098447498, -2062.0944919962003, -868.0240616009705, + 1849.6355978630104, 5641.539980749442, 9492.582982832642, + 12493.901850652252, 13599.412059409544, 12851.652285953945, + 11120.28887628621, 10091.065275976049, 12052.282531018143, + 19265.287373752795, 33285.76660670645, 54921.7084503817, 81616.5574658041, + 112540.28047598837, 143412.2956007841, 168827.59678698596 + ], + "flow:branch130_seg0:RESISTANCE_77": [ + 16.647745645603244, 19.326132354549472, 21.189833539524923, + 22.106346095821813, 22.066510615202827, 21.143534642969712, + 19.51667429578961, 17.497248462605548, 15.284647344273314, + 13.018469123112334, 10.91329630557103, 8.886438358623401, + 6.936596586039531, 5.045566338932183, 3.0977367419656425, + 1.1853136303883325, -0.7175386927557146, -2.544162812526512, + -4.125943925523777, -5.49332547280068, -6.5780542688019095, + -7.385208938044203, -7.995922568021927, -8.441404317498518, + -8.780756715810696, -9.034192767148609, -9.179880397162751, + -9.187162028968045, -9.024286841278839, -8.683206998753008, + -8.206969680657753, -7.706187943768784, -7.298347763451083, + -7.143963095581707, -7.355637281091598, -7.98022317217982, + -8.953457273314138, -10.17427583317299, -11.41737457518251, + -12.42867984880976, -13.044195634361751, -13.088181584906062, + -12.521690204610858, -11.402076779384103, -9.915810898997767, + -8.170614028199056, -6.402426238128764, -4.773671172404652, + -3.304315322803747, -2.0870145555061934, -1.0503527207075896, + -0.1421307182880131, 0.6458594026704553, 1.3637447001701397, + 1.9628550174133532, 2.396098422155451, 2.6173240737334784, + 2.57919801982482, 2.2850959426360533, 1.7955164219519804, + 1.1931504429445177, 0.569042997216075, 0.055996470550076345, + -0.31797008193906845, -0.5373247755285939, -0.6249332997219785, + -0.6611470533388426, -0.7191980001324269, -0.8495871580421002, + -1.0702355430364061, -1.342969045316881, -1.615375978218711, + -1.8071223988485254, -1.8556102001863746, -1.7439256800240084, + -1.4947666676920333, -1.1633922871851285, -0.8307225433549978, + -0.5758677565658753, -0.4232930936113968, -0.3756118416805689, + -0.383001370711765, -0.3695834986419924, -0.2692399413544116, + -0.04404574407813627, 0.2913004758976811, 0.6766836410988775, + 1.0333108291281603, 1.2600289289821078, 1.333165852157029, + 1.2873793638557762, 1.238218988826498, 1.3739886439432425, + 1.9075239032294269, 3.028921933713107, 4.863834919250212, + 7.312731738692817, 10.324828464185265, 13.577477269615258, + 16.647745645603244 + ], + "pressure:branch130_seg0:RESISTANCE_77": [ + 121146.7613093135, 140637.56097854263, 154199.83946444414, + 160869.3627896101, 160579.47732613032, 153862.91928982982, + 142024.1474609572, 127328.65026856627, 111227.40357357105, + 94736.27270890509, 79416.7889619289, 64667.20777935459, 50478.07846163067, + 36716.924558147504, 22542.437977301568, 8625.606764694043, + -5221.577178790069, -18514.043375144895, -30024.770594268888, + -39975.29779796135, -47868.94197850211, -53742.66062702506, + -58186.86466126263, -61428.665222156895, -63898.15537855788, + -65742.42651726153, -66802.60516935727, -66855.59409224613, + -65670.34043050339, -63188.27954673614, -59722.668650817504, + -56078.44637361255, -53110.56603539376, -51987.09845567383, + -53527.4656965725, -58072.619105063735, -65154.90891523788, + -74038.8874323102, -83085.00032879342, -90444.33661390615, + -94923.48625625185, -95243.5749676623, -91121.1792094989, + -82973.67724304028, -72158.02077600965, -59458.10613019332, + -46590.885023277006, -34738.32520051642, -24045.72416134578, + -15187.344856613932, -7643.487175679395, -1034.2947669737107, + 4699.962178685184, 9924.061623442376, 14283.82757290468, + 17436.568878571183, 19046.442778480363, 18768.99692780252, + 16628.796392294007, 13066.093393529318, 8682.635775114813, + 4140.964045582658, 407.49007080641934, -2313.8896064495775, + -3910.1484196283827, -4547.681524413024, -4811.211437650242, + -5233.6520698320965, -6182.502714654556, -7788.175806926225, + -9772.875790047627, -11755.199305904614, -13150.550865596306, + -13503.39984708331, -12690.66410531413, -10877.517266238361, + -8466.083680341113, -6045.223648685938, -4190.628276979157, + -3080.332224391114, -2733.352557019217, -2787.1266552536977, + -2689.483900523216, -1959.2771060164707, -320.5238329640645, + 2119.813095063707, 4924.2722285197815, 7519.4721879824665, + 9169.31500227228, 9701.537296111052, 9368.345950718222, 9010.602605383885, + 9998.607489143289, 13881.179344987713, 22041.66800355806, + 35394.45283187267, 53215.239187684594, 75134.46902287257, + 98804.21247300367, 121146.7613093135 + ], + "flow:branch131_seg0:RESISTANCE_78": [ + 36.6604099420473, 39.782073539694565, 40.62955668838191, 39.0967815497844, + 35.94450103863485, 31.603939344023516, 26.562340041598034, + 21.527812483331946, 17.212515126642582, 13.096372639583887, + 9.77168209291787, 6.829115271711587, 3.776744568223386, + 0.9561504312556982, -2.172320581369481, -5.1988455349725635, + -7.99021836169126, -10.679696968396252, -12.508265627270294, + -13.86958829570756, -14.759505064725765, -15.105445460735002, + -15.326757556027315, -15.424261861936534, -15.473734265778813, + -15.480668069506734, -15.277455278322606, -14.771989047092108, + -13.923692816570256, -12.795508617747872, -11.546232002976911, + -10.594520286945517, -10.182205610193254, -10.592006851892931, + -11.988845232507026, -14.234517171027335, -16.923020738190893, + -19.635250690512333, -21.907642996594223, -22.973733534278452, + -22.8321738551104, -21.303154897280937, -18.545240347630212, + -14.914137897646384, -11.234216129045375, -7.519915573579826, + -4.24671016639065, -1.898778128477519, 0.07289556489474433, + 1.4125394683298533, 2.436450353169705, 3.472830196931717, + 4.274460887465601, 5.046782276755251, 5.598613261971302, + 5.6751312158211356, 5.300923996522664, 4.398470309105357, + 3.0754625772209905, 1.5585655199790804, 0.18167701326340213, + -0.9928520239397937, -1.6549504980135512, -1.8539854816191272, + -1.7917142679155358, -1.5524892364525038, -1.3962377295789168, + -1.4925623344425607, -1.857930360560651, -2.4388055216900693, + -3.012252207606464, -3.437950933407039, -3.5405696206639905, + -3.2083926329209502, -2.5404685122159423, -1.7111734397523624, + -0.9015116265390232, -0.27992477485946493, -0.04584707716168939, + -0.08078456925968887, -0.27789934880846584, -0.4650335492009684, + -0.4201362984896524, -0.03716250948020276, 0.656440341727213, + 1.524466298389211, 2.285461856251067, 2.795364910435609, + 2.8444462767549576, 2.5108374482440965, 2.0896345907167175, + 1.9908499786955558, 2.717244619003243, 4.721997787085501, + 8.219507919936762, 13.378257673278632, 19.247124153036584, + 25.777338431722974, 32.14361234692488, 36.6604099420473 + ], + "pressure:branch131_seg0:RESISTANCE_78": [ + 185925.45792151082, 201757.16124361873, 206055.2226332685, + 198281.6619997348, 182294.6831727394, 160281.2653745538, + 134712.49349114715, 109179.58638049466, 87294.29818054034, + 66419.03579295108, 49557.669176664895, 34634.26584969287, + 19153.985577626918, 4849.174001442261, -11017.05353218784, + -26366.255540548682, -40522.86949706063, -54162.72083293171, + -63436.41596562091, -70340.44515974246, -74853.71118850594, + -76608.16856208123, -77730.56606734949, -78225.06497650268, + -78475.96722645863, -78511.13242606852, -77480.52662225509, + -74917.0244504559, -70614.83946774127, -64893.185942388736, + -58557.40499942458, -53730.74220727065, -51639.66370585428, + -53717.995171335904, -60802.14442031042, -72191.2037399052, + -85826.11010453086, -99581.34624812605, -111105.91950721903, + -116512.66132265264, -115794.73295758326, -108040.22201909237, + -94053.29371243196, -75637.9408333922, -56974.99786510267, + -38137.700826561006, -21537.444169180904, -9629.766649817053, + 369.69420977425904, 7163.7782527961135, 12356.603440393254, + 17612.665697652228, 21678.183608038198, 25595.057647178644, + 28393.701437134863, 28781.766808777098, 26883.9525531384, + 22307.104794175088, 15597.392088473098, 7904.358092582944, + 921.3858202406335, -5035.308320095596, -8393.180263586348, + -9402.598066818477, -9086.785888465358, -7873.541857878457, + -7081.10301138459, -7569.6189962507015, -9422.604755909382, + -12368.547818163903, -15276.81692484193, -17435.773430133355, + -17956.210229660825, -16271.554802874198, -12884.137744656851, + -8678.318269546135, -4572.070040972359, -1419.6552093035552, + -232.51618923769487, -409.70376644249376, -1409.3831401505308, + -2358.445410749888, -2130.746323066391, -188.4718857094578, + 3329.1763874638127, 7731.4218543098505, 11590.856263128664, + 14176.860047446547, 14425.779127261503, 12733.862034527921, + 10597.706593619485, 10096.714535575782, 13780.668325082852, + 23947.89371575601, 41685.725182002556, 67848.6325719825, 97612.9393392599, + 130731.31095620563, 163018.24923127866, 185925.45792151082 + ], + "flow:branch132_seg2:RESISTANCE_79": [ + 36.72915634121043, 40.3972030379607, 41.76704359000731, + 40.754825376376125, 37.93932022749299, 33.72690542904937, + 28.62521225332284, 23.442761967122106, 18.751567245962107, + 14.295077408545808, 10.681462306844933, 7.442914305443622, + 4.256110434231315, 1.2985934182105356, -1.9254063303863707, + -5.01047051978124, -7.944867559012212, -10.748298246600612, + -12.755076260681223, -14.283068137600306, -15.284989408043405, + -15.727813261531848, -15.980945661766413, -16.070207193192438, + -16.095988002586616, -16.076319629476735, -15.868947308638326, + -15.382241827379671, -14.557973048969195, -13.434811348349434, + -12.155643150289348, -11.10513566400203, -10.5276895850396, + -10.749864001284564, -11.949404708969519, -14.052357788534529, + -16.68325541056115, -19.491362607914272, -21.936036998365292, + -23.305276025920012, -23.49050825466456, -22.253050146256054, + -19.69905753748444, -16.17386530485475, -12.41376975656663, + -8.533052436919187, -5.041538658904592, -2.3865313947339923, + -0.17785598691376484, 1.3568686486413812, 2.519235893548556, + 3.6062365805283783, 4.457015006828425, 5.265420667388537, + 5.847556668325216, 6.000430731574381, 5.704225925467323, + 4.869277034972104, 3.5775898767623153, 2.054489741242931, + 0.5835127949883558, -0.7194189928649969, -1.5206169992852772, + -1.8677934225571777, -1.8985317945240903, -1.70148579606298, + -1.5351660061198948, -1.5797173590095148, -1.8857497832394474, + -2.4217731958711064, -2.9961953217949286, -3.4609854695881936, + -3.6316769310820347, -3.3824454319498014, -2.779949386644769, + -1.9681375417934823, -1.1290045872361145, -0.44339584121467496, + -0.112496771982913, -0.06197687745225378, -0.21546210147470887, + -0.4013523829805438, -0.3989550040675444, -0.08366679149627985, + 0.553624821987494, 1.3926572040438783, 2.1901601464721536, + 2.778857011439099, 2.924556212566628, 2.676971979067445, + 2.2791175555074052, 2.1121328055799182, 2.6795258991817184, + 4.449607795643057, 7.718368701884142, 12.650472697887713, + 18.49684937025208, 25.11423162040723, 31.698394392868092, + 36.72915634121043 + ], + "pressure:branch132_seg2:RESISTANCE_79": [ + 180414.85239114676, 198432.42124599026, 205161.12415168545, + 200189.07421121135, 186359.21813928717, 165667.69484342355, + 140608.00622185488, 115151.63595504533, 92108.32956125005, + 70217.90145746132, 52467.70242986987, 36559.84562515212, + 20906.15772981036, 6378.73458585718, -9457.660711360037, + -24611.599864669373, -39025.45690432242, -52796.00281590184, + -62653.36397686051, -70158.91151429608, -75080.38252318825, + -77255.54819866504, -78498.94307002271, -78937.39871725898, + -79064.0349208968, -78967.42321006207, -77948.80338916705, + -75558.08968086304, -71509.25369328505, -65992.24560994812, + -59708.92835941349, -54548.80022268451, -51712.36564378873, + -52803.693855622456, -58695.87819287749, -69025.65451309795, + -81948.7121985166, -95742.22928348393, -107750.5521864235, + -114476.30038356263, -115386.16732678033, -109307.73144073055, + -96762.43376933501, -79446.5708512774, -60976.854938967466, + -41914.6408251517, -24764.207609909157, -11722.722550657763, + -873.6345950286825, 6664.98447948545, 12374.57151617448, + 17713.955483197125, 21893.00775361978, 25863.923572302163, + 28723.395205816447, 29474.31775081863, 28019.349771838268, + 23918.052714169906, 17573.241909940767, 10091.722770926011, + 2866.2344922435477, -3533.8103113323878, -7469.3218902418685, + -9174.664168631625, -9325.652086504686, -8357.755508745662, + -7540.787101587344, -7759.624846750829, -9262.866416784156, + -11895.831464218209, -14717.412283989608, -17000.477136554382, + -17838.919341535977, -16614.685827718822, -13655.204970870474, + -9667.55786028553, -5545.708539093379, -2177.975298437031, + -552.5879310470353, -304.4325084232069, -1058.3570957186707, + -1971.4564162483186, -1959.6804103227878, -410.97409637208995, + 2719.423762721011, 6840.779068403093, 10758.140368594488, + 13649.839187087407, 14365.518567812267, 13149.376478239028, + 11195.102156418718, 10374.86744343334, 13161.921419814656, + 21856.623282923476, 37912.886893304196, 62139.54775505558, + 90857.1467809895, 123361.95116001145, 155703.58034630513, + 180414.85239114676 + ], + "flow:branch133_seg2:RESISTANCE_80": [ + 26.066938288510997, 29.086434581554776, 30.508406152583298, + 30.25107610789662, 28.599089300838045, 25.809746470938695, + 22.254164518010704, 18.530494133940376, 14.985786695328416, + 11.62031377346341, 8.827374223405158, 6.302858963341213, + 3.9016187566197935, 1.6585190335891928, -0.7320186023009047, + -3.0223905560876814, -5.244125777788658, -7.362575749699568, + -8.962505930202662, -10.221226302989292, -11.074665131919849, + -11.51839355654394, -11.779275146661972, -11.889996993924488, + -11.93707813514115, -11.941165424977077, -11.82152861212117, + -11.514286185303183, -10.970428148806924, -10.1985471659253, + -9.292122261196797, -8.491125993467701, -7.978922183843077, + -8.002929109926562, -8.706521524271308, -10.075945979123686, + -11.886100247947523, -13.914828605324251, -15.757559640108635, + -16.938199805867505, -17.310965944256203, -16.66542572254039, + -15.047173539055514, -12.664978123638255, -9.991521287322922, + -7.153618941367605, -4.533578657588399, -2.433845053835553, + -0.6770604916006914, 0.5847497958506169, 1.5518107323959591, + 2.4035273818035505, 3.0852109185839964, 3.7185979500394737, + 4.1907613660274015, 4.3853133825084365, 4.260819370960787, + 3.748557389522267, 2.8885641367808508, 1.8299465926056386, + 0.7454437383044966, -0.24718750212916235, -0.9114955120503703, + -1.2650047877355404, -1.3637622728873022, -1.27080046870765, + -1.1627073668691452, -1.171653845765887, -1.3540379038595711, + -1.7058666209053472, -2.112093228098941, -2.4691926919218847, + -2.6410651560324956, -2.530645857261432, -2.160075838338217, + -1.6121904327664476, -1.0085456164919153, -0.4862516972286295, + -0.18475898027988405, -0.08632002266190995, -0.1540341472740535, + -0.2735875728140433, -0.29228062573702196, -0.11019951924867956, + 0.3018429969224528, 0.8747368427613067, 1.461080271803959, + 1.9292693089936017, 2.1053051383102463, 2.0015727174283175, + 1.7515891823817074, 1.6045418959356512, 1.9087733000255225, + 3.008962459734314, 5.150820403402677, 8.477720367450432, + 12.569715148110806, 17.30777463264534, 22.126296395670185, + 26.066938288510997 + ], + "pressure:branch133_seg2:RESISTANCE_80": [ + 169139.52755092696, 188732.0155828753, 197958.70715104736, + 196288.97970928458, 185569.79723477634, 167470.69701806986, + 144399.73083743546, 120238.09579820899, 97237.69065521535, + 75400.2775425115, 57277.83942772897, 40897.11555229509, + 25316.281715727033, 10761.567878453163, -4749.820603452944, + -19611.26792386868, -34027.354753200016, -47773.25860363763, + -58154.663272247126, -66322.07314660691, -71859.74844706117, + -74738.95179926546, -76431.72401558021, -77150.1605549337, + -77455.65412284202, -77482.17516125756, -76705.89243176376, + -74712.30045942114, -71183.38999322965, -66174.9159129579, + -60293.43192549183, -55096.038630029994, -51772.521713284965, + -51928.294519852025, -56493.66722428784, -65379.39836565945, + -77124.87589104088, -90288.60659458823, -102245.46371286587, + -109906.2375879546, -112324.99071638774, -108136.29901398445, + -97636.00907799855, -82178.75043726056, -64831.59515506605, + -46417.40869719188, -29416.85531965294, -15792.395638554299, + -4393.216050355121, 3794.2432329793237, 10069.173879219104, + 15595.674540463788, 20018.887964078556, 24128.721734024195, + 27192.43010756416, 28454.812201981003, 27647.012756454173, + 24323.118382520865, 18742.91364747569, 11873.903206082918, + 4836.931760727638, -1603.9159207673792, -5914.385439772226, + -8208.187312952161, -8848.991161712505, -8245.793522420645, + -7544.414021148968, -7602.464690432153, -8785.8930270223, + -11068.790324792906, -13704.657094371598, -16021.754481535512, + -17136.97664752013, -16420.503242782845, -14015.999989216976, + -10460.957290118678, -6544.11067379598, -3155.122455495818, + -1198.8384017119367, -560.1013701593154, -999.4753740656337, + -1775.2170315285778, -1896.5099162123245, -715.0473299066605, + 1958.5569018103004, 5675.8708935601635, 9480.45467218818, + 12518.37464875987, 13660.611480454285, 12987.526959922054, + 11365.468529227275, 10411.32852698083, 12385.382993384834, + 19524.13755789056, 33421.927803280414, 55009.05406644936, + 81560.6212770387, 112304.28337699393, 143570.0379305706, + 169139.52755092696 + ], + "flow:branch134_seg2:RESISTANCE_81": [ + 19.91213385140292, 22.400680182779148, 23.677563629080044, + 23.675262541587312, 22.548016595501, 20.484012278069667, + 17.781973400767036, 14.903979438469436, 12.09408516490815, + 9.442492524087436, 7.215136536443621, 5.199491568740632, + 3.3212255764347964, 1.5556969572978598, -0.3019937180816331, + -2.0895189888665673, -3.8458292447839426, -5.511097644889498, + -6.8104637727227075, -7.845660627175143, -8.55185885184073, + -8.943080543323855, -9.170331465963418, -9.269773137564258, + -9.315340036723958, -9.324586963513758, -9.2461820319531, + -9.030194357632613, -8.634159434770476, -8.055299453785363, + -7.362470945264669, -6.721967647946343, -6.282296915914639, + -6.240022948444665, -6.712432100476723, -7.706975868807061, + -9.07254467736647, -10.64538830272988, -12.105715550031874, + -13.106199615697204, -13.497365062415136, -13.1023105926615, + -11.945609063542033, -10.172208846803512, -8.115747029106195, + -5.902727580540794, -3.8396952977889787, -2.1381101865046204, + -0.7213328533366721, 0.3093755998297584, 1.102749017448862, + 1.7767423823755129, 2.326167511822761, 2.83222484991653, 3.21684378485827, + 3.404139496051425, 3.346527833798846, 2.989164163984564, + 2.355331191680884, 1.5523567870086257, 0.7017245008568498, + -0.08734526519337894, -0.6381673475966929, -0.9541607147293418, + -1.0579286774995174, -1.0022104561327696, -0.9186566902564237, + -0.9110750551580635, -1.032993265578081, -1.2892437254941536, + -1.6016672871849638, -1.8900195864991791, -2.045823685400148, + -1.9923708603255377, -1.733546787780064, -1.3243929182081684, + -0.8555395321400552, -0.43821257416591625, -0.17621809063581872, + -0.07426729204052494, -0.11124098255944982, -0.20128531479483958, + -0.22881423379179452, -0.11081772692639005, 0.18564046562581069, + 0.6154518684473216, 1.0759995510571976, 1.4583777523774806, + 1.6268081920761779, 1.5787964961030465, 1.3975340638770293, + 1.2656775575785535, 1.4467307555003919, 2.211357139651416, + 3.765167161271819, 6.225824925013897, 9.332813395460251, + 12.981516387317896, 16.725193871033373, 19.91213385140292 + ], + "pressure:branch134_seg2:RESISTANCE_81": [ + 161981.64663478508, 182225.5258438866, 192612.7442473, 192594.0253121997, + 183424.08120314588, 166633.77532765272, 144653.17245089234, + 121241.20643574979, 98383.21920556293, 76812.98743784125, + 58693.84494849765, 42296.93373163767, 27017.57590277692, + 12655.316436109588, -2456.6648704306235, -16997.86316308632, + -31285.132894095957, -44831.79341531804, -55401.90441088586, + -63823.04562692564, -69567.8418469326, -72750.360318269, + -74599.00591914226, -75407.94612766987, -75778.62470049736, + -75853.84679567176, -75216.03670393443, -73459.0156131555, + -70237.34236563682, -65528.419977376616, -59892.38400638179, + -54682.00426763427, -51105.36151889337, -50761.47035626251, + -54604.434294862476, -62694.86992806479, -73803.52788779156, + -86598.32940111417, -98477.83030788851, -106616.5891972047, + -109798.65012743488, -106584.9526905501, -97175.3926830712, + -82749.09917814138, -66020.15018864203, -48017.632879922916, + -31235.234332651034, -17393.143862992412, -5867.913716692237, + 2516.715157854379, 8970.66597705054, 14453.481424477777, + 18922.95656132443, 23039.64247393282, 26168.448702021975, + 27692.065805697817, 27223.405239901196, 24316.31571770815, + 19160.197879639178, 12628.144748364773, 5708.403277166674, + -710.538106432438, -5191.3772056629305, -7761.926716619011, + -8606.060529844372, -8152.80276691777, -7473.107829139965, + -7411.432583957258, -8403.215414764958, -10487.76706341935, + -13029.276845735418, -15374.971214928379, -16642.409686403877, + -16207.580517039716, -14102.09299006192, -10773.699458019171, + -6959.661039412637, -3564.780895369872, -1433.5026422112358, + -604.1511344595646, -904.9254923002601, -1637.4200262603458, + -1861.362857424394, -901.4823834457956, 1510.1519771063304, + 5006.590846542903, 8753.063853388487, 11863.6421143283, + 13233.793609364135, 12843.227051829825, 11368.68959320796, + 10296.060503371278, 11768.895878361247, 17988.994723089087, + 30628.961275040172, 50645.97197565396, 75920.7673478607, + 105602.31343995394, 136056.46003253985, 161981.64663478508 + ], + "flow:branch135_seg0:RESISTANCE_82": [ + 33.739998258873214, 37.86778787380386, 39.95269228956668, + 39.85174040544604, 37.87612352858594, 34.35771729458082, + 29.78736849080002, 24.91816857275281, 20.229751720452033, + 15.777883123207529, 12.034162628176443, 8.670220890428974, + 5.505496252338295, 2.5551342824426446, -0.544635575628161, + -3.5331476446226735, -6.442263489772394, -9.212866008779507, + -11.369130732061935, -13.083965029738113, -14.271881571252564, + -14.932910010514547, -15.328371695542902, -15.514441069101885, + -15.605367660797773, -15.633118754854086, -15.508011957335139, + -15.148959668185606, -14.488319411098642, -13.527837104398536, + -12.377017835285193, -11.32561648042442, -10.615558082917103, + -10.567781098820694, -11.382323890695286, -13.067333688963476, + -15.369614460254828, -18.00603813043507, -20.46761558201395, + -22.15018978150244, -22.816351168321166, -22.175049355387586, + -20.248436889296553, -17.277906295717283, -13.828071687469492, + -10.101590612339583, -6.602446746913873, -3.7183359288081994, + -1.2966130179599726, 0.4795244045010523, 1.845394335941479, + 3.0178966155689317, 3.9612867305887707, 4.824872044489601, + 5.481305131631968, 5.7892401256772095, 5.684382429946221, + 5.0744896323717406, 4.00075430535397, 2.6392752686898753, + 1.210999341714145, -0.11951794027516877, -1.0554299746775373, + -1.590079760622498, -1.776921783184478, -1.6963823019578939, + -1.5672693797850366, -1.5652271566686373, -1.7774262422895868, + -2.211277698993094, -2.734803386014355, -3.2149971595867584, + -3.4728705013489805, -3.377346290983415, -2.9383846829163165, + -2.2501466887772934, -1.4642077379997922, -0.7611153813998489, + -0.32345011460514633, -0.14997954697288618, -0.204170470651415, + -0.34583090038365, -0.3810860103122543, -0.17192382498583267, + 0.3328564903632296, 1.060255290792175, 1.8303999060959273, + 2.469071778272974, 2.7517082698267226, 2.6705204631458814, + 2.3751032263460123, 2.172766853711029, 2.5070749835779407, + 3.831732785365938, 6.489034594347239, 10.680304395113414, + 15.941343942787315, 22.104107580695473, 28.427172998930622, + 33.739998258873214 + ], + "pressure:branch135_seg0:RESISTANCE_82": [ + 165732.00726427342, 186007.84880991458, 196248.9694859597, + 195753.09043272946, 186048.7938268146, 168766.2639624377, + 146316.55678294742, 122398.88286970627, 99369.2214612619, + 77501.49304476022, 59112.21194530047, 42588.41688640677, 27043.1829274272, + 12550.90561089741, -2675.2682819894135, -17354.940169574107, + -31644.61513285842, -45253.90797524124, -55845.55288407794, + -64268.87668210798, -70103.96272381938, -73350.95667020933, + -75293.47777981134, -76207.45680653196, -76654.0912858771, + -76790.4055940927, -76175.87679310395, -74412.1998617345, + -71167.11267926366, -66449.19125526617, -60796.32826442634, + -55631.80941517794, -52143.97866335914, -51909.29650912261, + -55910.35812341224, -64187.182976349635, -75496.06362846006, + -88446.26544843524, -100537.61675665926, -108802.47786638807, + -112074.68502396646, -108924.58893017896, -99461.00363963615, + -84869.65736461408, -67923.95363434576, -49619.353145778914, + -32431.440684313846, -18264.591255636817, -6369.0067931461335, + 2355.4400175254204, 9064.639101136974, 14824.009769555163, + 19457.973772630856, 23699.93390608048, 26924.35532815716, + 28436.942385171256, 27921.877853831356, 24926.06390083576, + 19651.839828508542, 12964.20896784988, 5948.4695333441505, + -587.0761460598764, -5184.3075654020895, -7810.525312311596, + -8728.299616949214, -8332.686973900598, -7698.4799537525505, + -7688.448485056683, -8730.77753705308, -10861.870497474, + -13433.446295989474, -15792.174276925954, -17058.85681265734, + -16589.638675633858, -14433.444479690514, -11052.796283771318, + -7192.237699857192, -3738.624375475267, -1588.797851501696, + -736.7045836136995, -1002.8922249948386, -1698.7330246681802, + -1871.9073114593898, -844.4956159426279, 1635.002285879136, + 5208.009680597804, 8990.985956967195, 12128.163693224173, + 13516.48365435791, 13117.686414852275, 11666.587002820213, + 10672.703929025887, 12314.836717013357, 18821.60043241871, + 31874.356373021074, 52462.01472847083, 78304.4180932472, + 108576.12054472131, 139635.23073752783, 165732.00726427342 + ], + "flow:branch136_seg0:RESISTANCE_83": [ + 17.158433975682243, 19.64907655198298, 21.16497764600287, + 21.580277033324272, 20.952541744358836, 19.408295604325197, + 17.190949481022134, 14.689230231013873, 12.12860237871167, + 9.65883079887344, 7.510758608356528, 5.5594228337404665, + 3.765717374931753, 2.091007067090708, 0.3762422757848465, + -1.2797983260100605, -2.9132852655467385, -4.4758755667118715, + -5.7584484725278005, -6.808952561857956, -7.567565796266571, + -8.037749597887878, -8.326826371404216, -8.475217627326467, + -8.550703603365214, -8.580005705136477, -8.534621025349992, + -8.376378114968398, -8.066911832743573, -7.593635448238476, + -7.003451664066627, -6.418851538507663, -5.9689007295109615, + -5.825781036945051, -6.106693552309426, -6.848461642590219, + -7.956677089824105, -9.307878522144568, -10.640322993336426, + -11.659556352520942, -12.197458666082408, -12.073582992739473, + -11.26940647961023, -9.873231683497478, -8.13184523330008, + -6.180637869549911, -4.280823981945244, -2.630881560568083, + -1.2270004716124443, -0.1563373431902612, 0.6761470289564694, + 1.3616324485948514, 1.9203211496152204, 2.417322426776587, + 2.8083863279390844, 3.0398854263545707, 3.063770754069918, + 2.829004069880006, 2.3412628244458564, 1.6765851312238165, + 0.9292228472155123, 0.20058960503424794, -0.357017800561867, + -0.7230123236268717, -0.8944531905660669, -0.9059528893344727, + -0.8595796960592285, -0.847094755156773, -0.92797272137976, + -1.1220615148469517, -1.3815414397576016, -1.6425489278969174, + -1.8139174149626536, -1.8217733338033892, -1.6511368063358112, + -1.3329162188694932, -0.9352487244868599, -0.5527114762770244, + -0.27664168643148995, -0.13333894135233137, -0.11868253167895884, + -0.17158647909081678, -0.19937120078456952, -0.12411406955811136, + 0.09688862094814045, 0.44309357475369426, 0.8426115973915552, + 1.2039108331365518, 1.4081613390264727, 1.432004585049827, + 1.320260279617293, 1.207382252706061, 1.3064819866596167, + 1.8541369016638365, 3.0502265167377733, 5.024909814233622, + 7.633013744138721, 10.784195337008777, 14.130992453540815, + 17.158433975682243 + ], + "pressure:branch136_seg0:RESISTANCE_83": [ + 149835.68943529075, 171585.17706836018, 184822.75375281202, + 188449.34753809022, 182967.6613924727, 169482.5621475387, + 150119.63045034584, 128273.41598055864, 105912.7832922463, + 84345.55122799226, 65587.55279532446, 48547.551270490665, + 32884.053398527176, 18259.67835733555, 3285.528321923985, + -11175.813875990225, -25440.206658924577, -39085.495932516416, + -50285.538772450425, -59459.04520680917, -66083.62045379268, + -70189.49131457465, -72713.84859105518, -74009.67233398954, + -74668.85214483035, -74924.73217601723, -74528.41134654598, + -73146.55822353602, -70444.14996064642, -66311.27318027228, + -61157.504816538945, -56052.49564256301, -52123.3089945505, + -50873.519075618125, -53326.58212731327, -59804.057482342505, + -69481.52722197051, -81280.86732868491, -92916.41263883775, + -101816.84803319201, -106514.06947633676, -105432.32757926383, + -98409.87189110876, -86217.80276380874, -71011.17961227908, + -53972.2994328247, -37382.21177963829, -22974.121823063342, + -10714.757644085112, -1365.2127947451397, 5904.44071917639, + 11890.428752520365, 16769.166918003717, 21109.220859946166, + 24524.17873587825, 26545.740089548584, 26754.318247127976, + 24704.222764529055, 20445.031868713737, 14640.74689974028, + 8114.4203572931065, 1751.6448066559153, -3117.6509676619894, + -6313.690989187903, -7810.795009963821, -7911.215904769365, + -7506.262900574172, -7397.238398087972, -8103.5036578590425, + -9798.380254525238, -12064.283628849778, -14343.526419219643, + -15839.998384164604, -15908.600041945932, -14418.519899889987, + -11639.664837527023, -8167.0412128269, -4826.542167201719, + -2415.7681214816575, -1164.3797000599957, -1036.3928889573322, + -1498.3755760456556, -1741.0051153530474, -1083.8236873622882, + 846.0779893295152, 3869.305983966697, 7358.089310497316, + 10513.127827240554, 12296.741379089919, 12504.952059116604, + 11529.147095291177, 10543.441930805086, 11408.828421250373, + 16191.214265935938, 26636.04345926297, 43879.92677145817, + 66655.14337981066, 94172.77506884468, 123398.61549614386, + 149835.68943529075 + ], + "flow:branch137_seg0:RESISTANCE_84": [ + 43.3618956793499, 48.166778125836196, 50.278204620859114, + 49.5986961762644, 46.629957056026925, 41.83930011518673, + 35.86171794582666, 29.658938975260835, 23.86043289601091, + 18.38847098774058, 13.867078772770101, 9.80843342049367, + 5.924883641772834, 2.2913830740844325, -1.5954177664273703, + -5.342437816281461, -8.961326459148784, -12.384409004788393, + -14.960446831199135, -16.95864944724618, -18.28264320051728, + -18.947690407860268, -19.3217021710778, -19.468412000429424, + -19.52627807902659, -19.51813944917892, -19.306192026302725, + -18.77906800677734, -17.855414728940254, -16.557625186239374, + -15.048132682555352, -13.735602600470447, -12.929482198115382, + -13.035269359728245, -14.278924779581368, -16.621736508082222, + -19.680749316497156, -23.04931583044876, -26.068971359079505, + -27.945737831224765, -28.44603417462892, -27.248859331500828, + -24.450927280709084, -20.423499594588, -15.945913272053636, + -11.246604626744254, -6.967600087494393, -3.5674089827647255, + -0.7599862620241989, 1.2344684049203187, 2.761124893941187, + 4.10818339729015, 5.191620663194207, 6.206648673123021, 6.95482721775413, + 7.235337966632307, 6.981710330764077, 6.083626797983231, + 4.620583099225076, 2.8372990863639314, 1.0456192087041751, + -0.5707751877116128, -1.6337355625209633, -2.167115863042092, + -2.280417455423725, -2.0923494005808005, -1.8972647628387083, + -1.913771441449164, -2.2297765879172733, -2.8280138169539604, + -3.5106761844111682, -4.098694861067108, -4.361746837625755, + -4.148342101512309, -3.5010520392404825, -2.568456172840646, + -1.5586888941857802, -0.7036548399218716, -0.23066635893681597, + -0.09978123028992743, -0.2408004155162631, -0.4535086653547558, + -0.482712353859451, -0.1641817466898271, 0.539662212332895, + 1.5085896640421144, 2.4802270865961535, 3.2368456484810686, + 3.4985154787418025, 3.2897915868140934, 2.8482261255532926, + 2.6031618254483284, 3.142020463276141, 5.035459526632144, + 8.680851278303514, 14.285268240926554, 21.140797552578153, + 29.038275535433346, 36.95663388800039, 43.3618956793499 + ], + "pressure:branch137_seg0:RESISTANCE_84": [ + 174517.95953588776, 193856.09656226067, 202353.92254169396, + 199619.11527876687, 187670.87626519677, 168389.9924142205, + 144332.10871677136, 119367.87889157796, 96030.72000004163, + 74007.79844811733, 55810.62022847415, 39475.85224238851, + 23845.788738024952, 9222.09447579031, -6421.053527331203, + -21501.627916353857, -36066.51378782692, -49843.341849162, + -60211.08196083403, -68253.21752312225, -73581.87496853614, + -76258.48031069069, -77763.75974407866, -78354.2205544543, + -78587.11327754066, -78554.35785824587, -77701.33630119188, + -75579.8283073937, -71862.41506146602, -66639.22130228124, + -60563.989868079894, -55281.47008506767, -52037.08960872688, + -52462.84958302195, -57468.17056445596, -66897.2491605141, + -79208.81130868073, -92766.22952957528, -104919.39103466526, + -112472.78440256666, -114486.31945785413, -109668.06814395456, + -98407.27373508041, -82198.14701336608, -64177.273700242375, + -45264.03793967448, -28042.393697992142, -14357.69646940456, + -3058.7051060809317, 4968.346142690581, 11112.657206630945, + 16534.142999557258, 20894.636422836447, 24979.804157994426, + 27990.98692415137, 29119.954252611857, 28099.182978657234, + 24484.67989528958, 18596.390257143226, 11419.23431592851, + 4208.287665834419, -2297.1901839754496, -6575.270576285317, + -8721.958128691189, -9177.961317777474, -8421.046688679857, + -7635.892525508466, -7702.326702908421, -8974.147791457273, + -11381.864033890282, -14129.364842008425, -16495.954632683195, + -17554.655906730462, -16695.769123339116, -14090.630691873164, + -10337.226346285821, -6273.231395971296, -2831.9888915559013, + -928.3593732358061, -401.5879941904254, -969.1457560363044, + -1825.2294017489912, -1942.7650410226597, -660.7797693436155, + 2171.970266967774, 6071.597789274983, 9982.132089870252, + 13027.283264612823, 14080.421835559315, 13240.37397429912, + 11463.212203728874, 10476.9056564872, 12645.641789413046, + 20266.13708062475, 34937.68960948567, 57493.70099648449, + 85085.04515392474, 116869.90422095651, 148738.80019318525, + 174517.95953588776 + ], + "flow:branch138_seg2:RESISTANCE_85": [ + 55.0200017229851, 61.37569041574173, 64.32269877609691, 63.7285339250037, + 60.15103741834636, 54.16980345271253, 46.597947070436646, + 38.6822575055454, 31.16838455789548, 24.09860220960986, + 18.231413193539687, 12.952301394361054, 7.961800507488306, + 3.276714473763438, -1.7037286901812483, -6.504417103845241, + -11.180256187642525, -15.597599467590436, -18.96390453555926, + -21.597260833837396, -23.35284025947754, -24.260795916142655, + -24.77142208083029, -24.973172570596056, -25.05432528413, + -25.04973341976331, -24.79516811599226, -24.14957607603969, + -23.00272810826189, -21.370378072286936, -19.45194782418556, + -17.74714291988495, -16.654627610024118, -16.701159975644085, + -18.187779233397606, -21.089055141112908, -24.942672761919997, + -29.255899304760888, -33.16340546710501, -35.68316427368902, + -36.46717815991745, -35.08392038110857, -31.63577589911024, + -26.57859401803186, -20.879159206146095, -14.852520510993015, + -9.327588455724479, -4.886563799508515, -1.2166557742298112, + 1.4027868463804156, 3.4072423613180116, 5.150532762054316, + 6.55770301364169, 7.872412663141442, 8.852335554956404, 9.259003538666253, + 8.98824555788003, 7.896393637487507, 6.069907733347641, + 3.8175092092605323, 1.5092028435258, -0.5885703301407297, + -1.9971722283128612, -2.738506040452047, -2.9232475018916317, + -2.7040747120298, -2.4532898586135974, -2.4529093221486344, + -2.8288778891795343, -3.570724239730067, -4.438284947073802, + -5.204689218495737, -5.573086889923567, -5.343675270770005, + -4.555737650450162, -3.385451414153684, -2.0947735695609127, + -0.9826833120942178, -0.33931082725973455, -0.13538210197772443, + -0.29248660417434474, -0.5611090142396689, -0.6172022475554786, + -0.244119584814515, 0.6229578900883267, 1.8390435521973216, + 3.090700584086254, 4.086719489353501, 4.46576465507108, 4.243489277272786, + 3.6965769920213765, 3.357594326053968, 3.969389913124168, + 6.266400407821084, 10.779788219802898, 17.789220107362425, + 26.45873881447825, 36.50843707753001, 46.664677617751074, 55.0200017229851 + ], + "pressure:branch138_seg2:RESISTANCE_85": [ + 172966.2944900959, 192946.66322315656, 202211.16885673025, + 200343.2937314772, 189096.72348556542, 170293.5275001715, + 146489.89427879502, 121605.35321195089, 97984.0024245088, + 75758.73856880916, 57314.065515321745, 40718.12990084816, + 25029.499965919644, 10301.00223337034, -5356.009253533618, + -20447.926009434228, -35147.354119743584, -49034.149370490195, + -59616.797416594985, -67895.27554675823, -73414.28787730871, + -76268.62667368607, -77873.88135944206, -78508.12406268819, + -78763.24372296491, -78748.80828604833, -77948.53173351588, + -75918.98503402612, -72313.64084794483, -67182.02455947269, + -61151.05834972471, -55791.66580353483, -52357.1271102879, + -52503.410836263654, -57176.89350217763, -66297.63009498132, + -78412.24186123996, -91971.72548626094, -104255.7465773671, + -112177.10844823794, -114641.81169219884, -110293.26634809526, + -99453.33986244367, -83555.08498893978, -65637.78056821134, + -46691.84580471365, -29323.125430606775, -15361.883073830173, + -3824.798879470572, 4409.938843685711, 10711.342552006083, + 16191.721893934582, 20615.440841803786, 24748.49153760782, + 27829.07362004287, 29107.515132715198, 28256.333686448146, + 24823.88048964382, 19081.95957208474, 12001.097808613398, + 4744.478649651176, -1850.287638373011, -6278.507251399465, + -8609.037212332647, -9189.808659500713, -8500.795498316511, + -7712.403541734423, -7711.207249835489, -8893.139053681734, + -11225.280280827208, -13952.62953737548, -16361.973462456015, + -17520.104653481685, -16798.903700459385, -14321.865419683438, + -10642.83838504255, -6585.336437228622, -3089.260011403377, + -1066.6909239099252, -425.6005050175261, -919.4896860750024, + -1763.9575419625621, -1940.2977529547488, -767.4383619697072, + 1958.3917574991012, 5781.398376377604, 9716.230655523366, + 12847.413750598962, 14039.017452987357, 13340.250690898562, + 11620.923383944872, 10555.264100180853, 12478.564942912428, + 19699.673289529044, 33888.40358738746, 55923.94379285768, + 83178.29637053187, 114771.51728781588, 146699.6749973838, + 172966.2944900959 + ], + "flow:branch139_seg2:RESISTANCE_86": [ + 21.413106237363262, 24.689293978149323, 26.74517091479979, + 27.424856635463676, 26.73661751814023, 24.846680032771356, + 22.07517615769781, 18.897797130132755, 15.609862474852005, + 12.459477066962279, 9.692190810771892, 7.194344033062081, + 4.936560930327999, 2.824423079945567, 0.6956401713612523, + -1.3783194907828056, -3.4411951372018916, -5.394492489733639, + -7.050153964190399, -8.415634812476537, -9.404020623484453, + -10.04120558936565, -10.429824327369758, -10.63362322468558, + -10.743040948620944, -10.790748526140728, -10.753626713406286, + -10.583814122579948, -10.228078734576052, -9.663224576812961, + -8.940962071341303, -8.197439402511035, -7.598290295037006, + -7.362864713767773, -7.645543183492885, -8.51130140967616, + -9.873644336770816, -11.577178819840594, -13.29663786631595, + -14.685504922092871, -15.486860334875143, -15.464131391944013, + -14.571571063321331, -12.905684153713116, -10.727612245688038, + -8.245307086499668, -5.804573814950934, -3.625435297999081, + -1.7773190209001182, -0.3527800049956953, 0.7603523140445371, + 1.6509124563126805, 2.3824289796019924, 3.0299985520733292, + 3.5451378882070177, 3.8739908907272502, 3.9431687181722146, + 3.686263394173599, 3.103551550964204, 2.277271153507832, + 1.3212922997772365, 0.3783804702982869, -0.373576274833291, + -0.8858037418411099, -1.1360796468478451, -1.172799446932462, + -1.1170982872761013, -1.086528938464604, -1.1676846497105489, + -1.3937844684319773, -1.7183046691296928, -2.0605189629730676, + -2.300695942209589, -2.345613500940941, -2.1610791701307623, + -1.7759282209236724, -1.272249593612006, -0.7736632608696995, + -0.39355957384421847, -0.18170513244652908, -0.14303328069040075, + -0.20370818857857367, -0.2505742526744668, -0.1791930509509465, + 0.07492753456327288, 0.4975379874455395, 1.0079398877522876, + 1.4843445141005462, 1.7806461444790256, 1.8483532076808658, + 1.7242700201186298, 1.5666047789482, 1.6385049020422773, + 2.242187124359669, 3.6494213651244496, 6.024680562715204, + 9.26119579969171, 13.234338731107197, 17.466901806689556, + 21.413106237363262 + ], + "pressure:branch139_seg2:RESISTANCE_86": [ + 145579.9093789216, 167853.51644578157, 181830.67486521672, + 186451.61049798262, 181772.52343698396, 168923.52690178136, + 150081.08160197365, 128479.23898428108, 106125.7689246991, + 84707.44609449271, 65893.6748491637, 48911.724472106354, + 33561.879575733146, 19202.223697400696, 4729.404131496246, + -9370.692151764168, -23395.432249556627, -36675.18944217253, + -47931.42871646563, -57214.83561449515, -63934.510714543016, + -68266.49919684752, -70908.57643843691, -72294.13090559978, + -73038.02215417632, -73362.36859579234, -73109.99091298232, + -71955.49696381988, -69536.9816408018, -65696.74397570672, + -60786.344292035494, -55731.4045019026, -51658.007965986275, + -50057.435194958314, -51979.26314227856, -57865.237961381536, + -67127.31127624573, -78709.02169789604, -90398.99742546924, + -99841.39862957408, -105289.5221797001, -105134.99637594623, + -99066.80382528517, -87741.04554210868, -72933.12802298895, + -56056.83944908134, -39463.18299627872, -24648.013991586584, + -12083.344617633995, -2398.4227504718447, 5169.358417581006, + 11223.952429804664, 16197.26680975355, 20599.856449570507, + 24102.101151510327, 26337.852927790616, 26808.167777902283, + 25061.56206026005, 21099.91649664573, 15482.337054884158, + 8982.985052816266, 2572.4709888492025, -2539.8090138568687, + -6022.256978285526, -7723.791691032927, -7973.436236269241, + -7594.744341448284, -7386.914474054316, -7938.662593071346, + -9475.832901535226, -11682.127536489357, -14008.717865497656, + -15641.593660565562, -15946.971780727697, -14692.390083944782, + -12073.889075206753, -8649.561557876092, -5259.85469640451, + -2675.668184723991, -1235.347007669865, -972.4311741721259, + -1384.9377714884693, -1703.5630698633338, -1218.2682806309663, + 509.4050144233579, 3382.579543667476, 6852.616145073936, + 10091.517664673034, 12105.964518911716, 12566.280178674568, + 11722.683784927807, 10650.775241283458, 11139.597987891433, + 15243.813520400296, 24811.086524816452, 40959.60859833957, + 62963.496762885, 89975.44829823596, 118751.10289750657, 145579.9093789216 + ], + "flow:branch140_seg0:RESISTANCE_87": [ + 16.802541282186663, 20.20054508529143, 23.011217999561833, + 24.987899143664144, 25.991029845622894, 25.98321627260227, + 25.057426782875293, 23.45445519809791, 21.36714315882727, + 18.99500500555039, 16.575159276551716, 14.126431172804018, + 11.704529322843257, 9.316971168369182, 6.890935138952563, + 4.485870077017382, 2.0808143548343376, -0.2706805936908061, + -2.4284046694158365, -4.380038704052254, -6.048550887893245, + -7.4107827383098135, -8.51001806648247, -9.372268571547906, + -10.051865978409527, -10.581882691881598, -10.962342504275112, + -11.177113918743283, -11.20020693004107, -11.015771232320425, + -10.64821806361782, -10.178197536118242, -9.713668717001385, + -9.410763273561642, -9.40571479758556, -9.791936181438796, + -10.570996843222291, -11.692851725391137, -12.982014001654756, + -14.208911561307422, -15.175615694148965, -15.665384357940004, + -15.564108487056453, -14.848252212553637, -13.620002749765815, + -11.972632906353986, -10.112214021275546, -8.220140567811208, + -6.386440246290817, -4.73194614730653, -3.25253954868625, + -1.9311417367053365, -0.7602272886259646, 0.2971223215850168, + 1.2156484415804942, 1.9616259692074531, 2.4882697292517535, + 2.743724316260275, 2.7098848681505303, 2.418266134573, 1.927885242550669, + 1.3253917189630882, 0.7389066581535556, 0.2286853563347058, + -0.15530710762933267, -0.4032315690874529, -0.5630377672656843, + -0.6952693379041973, -0.8565319615636687, -1.0834012416429863, + -1.3672548477590625, -1.6748306386577452, -1.940021223546019, + -2.096411065289468, -2.1054859350308726, -1.9622995018847473, + -1.69757183966257, -1.3762902292270112, -1.0737819504788393, + -0.8374194281799915, -0.6934080798381365, -0.620824305155383, + -0.5650649224940785, -0.46330945100115367, -0.2643633611594722, + 0.04364590479285131, 0.43089575202269365, 0.8354877121942468, + 1.1640717206289013, 1.3693169542202626, 1.4478304414942922, + 1.4709289183102514, 1.589691546139286, 2.004400027515773, + 2.9248949821378933, 4.525344255814424, 6.8171820101755625, + 9.797792641909988, 13.243523187140918, 16.802541282186663 + ], + "pressure:branch140_seg0:RESISTANCE_87": [ + 95195.29807590923, 114446.78982749263, 130370.74093550387, + 141569.68683026612, 147252.95369915507, 147208.68566848672, + 141963.5977410119, 132881.91448504827, 121056.18595870596, + 107616.76660029197, 93907.05855071066, 80033.71654676355, + 66312.35948264168, 52785.5776481825, 39040.7982672087, 25414.830527101018, + 11788.915701642989, -1533.5489654182804, -13758.198981430896, + -24815.239731523583, -34268.24520352162, -41986.010324348856, + -48213.7608153958, -53098.866732847244, -56949.146082341664, + -59951.971558373414, -62107.47795698277, -63324.27180234212, + -63455.10594564185, -62410.180007025054, -60327.79658265436, + -57664.881285153664, -55033.07942506779, -53316.95961362693, + -53288.35732261584, -55476.50607593431, -59890.297458569825, + -66246.1997064747, -73549.98697865826, -80501.01164440587, + -85977.9027010277, -88752.701652862, -88178.92019000165, + -84123.21514596273, -77164.53123273813, -67831.30832013715, + -57291.04971658569, -46571.451213055625, -36182.56742711724, + -26808.981832382662, -18427.359685710635, -10940.941025832173, + -4307.090346085464, 1683.3553623380149, 6887.292452270209, + 11113.65035300482, 14097.36626093049, 15544.651832006817, + 15352.933430876566, 13700.758810312087, 10922.491261207077, + 7509.046258840949, 4186.297679136206, 1295.6236974082744, + -879.897043893027, -2284.5204643894085, -3189.9072397868877, + -3939.0691415820215, -4852.707338921709, -6138.042002214185, + -7746.223061873575, -9488.80286595217, -10991.248022990598, + -11877.279329255769, -11928.693274058314, -11117.466272448384, + -9617.643817561602, -7797.413284688599, -6083.543621625226, + -4744.424711793286, -3928.5241285739285, -3517.2985912953977, + -3201.3921481087195, -2624.8934937117097, -1497.7584963668544, + 247.2771735402598, 2441.252716751434, 4733.480517341668, + 6595.083003576006, 7757.905987445781, 8202.726488019482, 8333.59159637645, + 9006.444801531932, 11355.988054321122, 16571.07963546807, + 25638.472662765016, 38622.947719485375, 55509.68602715975, + 75031.57505773875, 95195.29807590923 + ], + "flow:branch141_seg0:RESISTANCE_88": [ + 30.56874604255293, 34.431957990263975, 36.4539460042173, + 36.508297164790015, 34.82284487917921, 31.6904161776356, + 27.56204916035345, 23.12741284316078, 18.802468776705375, + 14.703264078783626, 11.237682071187496, 8.114451903772768, + 5.200605478851511, 2.470609733423562, -0.38643951544169974, + -3.1479939482562296, -5.852551197126388, -8.416249878479375, + -10.435882969274223, -12.044005474902717, -13.150338684337571, + -13.772695831811058, -14.134443359205163, -14.296838980129767, + -14.370908894219685, -14.385598285061409, -14.265963475963677, + -13.936446898808558, -13.332142523229217, -12.449607557344985, + -11.38951343266633, -10.40596967730043, -9.725482558870768, + -9.646434502912122, -10.351056662492962, -11.85625630972574, + -13.940627168902319, -16.345709840703382, -18.597120227717866, + -20.15837429946155, -20.791178421681995, -20.22649939705483, + -18.4881726712431, -15.794893925460189, -12.6415680710284, + -9.237722538921432, -6.048236953873814, -3.400188817641737, + -1.1934419566396248, 0.42472925032369774, 1.6696152969415845, + 2.7219719851300663, 3.576561535994255, 4.358903340217664, + 4.955728842481896, 5.2490894868134195, 5.1683035333865925, + 4.629412227556801, 3.666685062332098, 2.4362842266837235, + 1.1322254713641957, -0.08425782782942992, -0.9477108559364383, + -1.4490519594279991, -1.624031808232427, -1.5515026199955444, + -1.4288810640989813, -1.4161384101935646, -1.5980573692768156, + -1.9842046449921167, -2.4600942039354172, -2.9025964804111313, + -3.1462953439152446, -3.072906850520262, -2.684544065828432, + -2.0632111114460234, -1.3461434081667885, -0.7021531615469546, + -0.29243521052446814, -0.1260873196249139, -0.1729974940607618, + -0.3043783766898678, -0.3456029624819339, -0.16813828528950853, + 0.2794488673307368, 0.9339200658448813, 1.6372289558025508, + 2.225927814877664, 2.495726496291246, 2.4344721700938443, + 2.1672483654479398, 1.969607672108272, 2.2430515397556596, + 3.4019228312943404, 5.766189700117473, 9.516752140708585, + 14.275698498480137, 19.879273458357638, 25.639401748059125, + 30.56874604255293 + ], + "pressure:branch141_seg0:RESISTANCE_88": [ + 163389.13745963728, 184037.90293669174, 194845.37528422184, + 195135.88079706457, 186127.18299859646, 169384.4346049742, + 147318.4223082415, 123615.40872029077, 100498.69730544515, + 78588.5568328355, 60065.11284764592, 43371.53037515929, + 27797.098457182437, 13205.343548654515, -2065.5089685502703, + -16825.94422478338, -31281.731043391796, -44984.63255167453, + -55779.517897329184, -64374.89007119549, -70288.21175539424, + -73614.69421483183, -75548.2251616668, -76416.22545167054, + -76812.12717947293, -76890.64158422253, -76251.19670017342, + -74489.93932818182, -71259.94845608238, -66542.82245251292, + -60876.64745089221, -55619.63214449465, -51982.44653086446, + -51559.936766711915, -55326.12353566323, -63371.37575908004, + -74512.28276104521, -87367.38590193748, -99401.11475329185, + -107745.97639015649, -111128.29765274539, -108110.10323132933, + -98818.79295127871, -84423.2894327762, -67568.84631078341, + -49375.38215093138, -32327.66622711067, -18173.91911794637, + -6378.915629449453, 2270.1665867372562, 8924.04951374042, + 14548.868122382699, 19116.62662328291, 23298.22283310927, + 26488.239325545936, 28056.244194806808, 27624.44541474175, + 24744.08566686674, 19598.334483090104, 13021.874624829328, + 6051.715138020892, -450.3558567345059, -5065.489408596203, + -7745.144320135649, -8680.40697465006, -8292.740385705214, + -7637.3314191715135, -7569.222271756033, -8541.574286813058, + -10605.52124177311, -13149.138322223702, -15514.301262721743, + -16816.865229602176, -16424.605677360698, -14348.816885635728, + -11027.808711127165, -7195.100840942075, -3752.990039893464, + -1563.0584500888942, -673.9333818090812, -924.6670209470706, + -1626.8943567239025, -1847.238675242055, -898.6946788448986, + 1493.646789883623, 4991.778001041642, 8750.945378661721, + 11897.525178625789, 13339.591980532292, 13012.189230379838, + 11583.885076555622, 10527.500808561026, 11989.051034280401, + 18183.187374963105, 30820.13113064542, 50866.787977597094, + 76303.23013752527, 106254.1897912307, 137041.9228438434, + 163389.13745963728 + ], + "flow:branch142_seg2:RESISTANCE_89": [ + 54.77075913778906, 61.840018772728506, 65.58905573615779, + 65.84640862873727, 62.91682995358166, 57.34654738859611, + 49.99165334505866, 42.07830863238929, 34.2945183589019, 27.01332477886783, + 20.838333715259992, 15.253177571386207, 10.101710202791997, + 5.208538286668597, 0.09399896903582862, -4.885122693475758, + -9.834181490953652, -14.4792268459461, -18.204999473878004, + -21.1977261353496, -23.24680910923704, -24.44416744341809, + -25.149698261475226, -25.492008722275482, -25.68695187232847, + -25.775473385353784, -25.63357806288929, -25.118718758181842, + -24.10232250824529, -22.566827042812303, -20.696569680698044, + -18.924078027250072, -17.675477776297186, -17.49915348780718, + -18.72327687920272, -21.396010443290923, -25.14655056750914, + -29.507003401290454, -33.585657245326274, -36.47595468840742, + -37.68430246887465, -36.72167952344597, -33.64335326719728, + -28.84345957906823, -23.162536814806103, -17.026016802952775, + -11.30847907625568, -6.516634293073504, -2.5635070375544755, + 0.330535481541071, 2.5751563740839236, 4.4490367099562445, + 6.007761894585434, 7.451159926538602, 8.573640297436723, + 9.181720829914706, 9.111329188407977, 8.211721430323166, + 6.539773892915924, 4.368424994147525, 2.0294424170664724, + -0.14170027861319098, -1.6938241889664787, -2.6045600624023857, + -2.90057603644065, -2.7506172503858237, -2.5093394195918437, + -2.4640196431426826, -2.7795935546930672, -3.4756032057732504, + -4.353038762107126, -5.182929562003618, -5.654139595478261, + -5.557510567173414, -4.882229756662861, -3.7696983174994867, + -2.470575490548341, -1.3026264099056923, -0.5458597413259527, + -0.23954809745555927, -0.3329244931403658, -0.5866448647630849, + -0.6863795683008161, -0.39223980901303573, 0.3999303450754439, + 1.5791600989918317, 2.8720420318888356, 3.959438780478009, + 4.477277615072126, 4.392636031749924, 3.9045002709858903, + 3.5092984220457524, 3.933070888182412, 5.930302526404493, + 10.099973102132168, 16.748634172542594, 25.28788456087401, + 35.39669887793617, 45.75843790141343, 54.77075913778906 + ], + "pressure:branch142_seg2:RESISTANCE_89": [ + 161274.51072926898, 182090.20521279552, 193129.38216599484, + 193887.1672047417, 185260.9152608919, 168859.01378218626, + 147202.25829788155, 123901.12431948344, 100981.4681427744, + 79541.72637854115, 61359.23852884911, 44913.54125114773, + 29744.856491497052, 15336.732172789203, 276.7834147079523, + -14384.42308715408, -28957.10837943153, -42634.61493099393, + -53605.289194367084, -62417.48270187688, -68451.08273335216, + -71976.7482992863, -74054.20969068646, -75062.15540756806, + -75636.17266859763, -75896.82751302139, -75479.01152753488, + -73962.98940609305, -70970.1733397113, -66448.85057893387, + -60941.80912541299, -55722.64238969605, -52046.093118904995, + -51526.89977918262, -55131.37603854676, -63001.33812495097, + -74044.94119026685, -86884.45461670894, -98894.20057396367, + -107404.78748809412, -110962.81188201338, -108128.33328458788, + -99064.08862819127, -84930.6254757438, -68202.93986904476, + -50133.73144339021, -33298.23173579205, -19188.468879407817, + -7548.340569692083, 973.2738582283404, 7582.64246871029, + 13100.351901453694, 17690.07542308675, 21940.213910398674, + 25245.398564940035, 27035.914013387424, 26828.643241133854, + 24179.71517591435, 19256.604280519496, 12862.987745272907, + 5975.767690974128, -417.24167170846096, -4987.527498928896, + -7669.222708273518, -8540.852609569354, -8099.2934595531015, + -7388.84203029187, -7255.396285002684, -8184.615251206304, + -10234.041216958498, -12817.682420252111, -15261.326343013154, + -16648.82158309566, -16364.293862331122, -14375.904728522459, + -11100.015068664667, -7274.700218331789, -3835.6312789468197, + -1607.3040449883358, -705.3581659526618, -980.3083905762904, + -1727.397338030853, -2021.069833517699, -1154.9645154253617, + 1177.6095811561077, 4649.894877070989, 8456.83318578119, + 11658.712826632707, 13183.508283192143, 12934.278034197958, + 11496.944368826229, 10333.258018109307, 11581.071599894065, + 17461.993470209636, 29739.741534845358, 49316.968106374734, + 74461.10432162091, 104226.87913835766, 134737.40003714233, + 161274.51072926898 + ], + "flow:branch143_seg0:RESISTANCE_90": [ + 39.3761984293024, 43.598817135522516, 45.36418803063228, + 44.59397138220813, 41.78188166369036, 37.361713931063285, + 31.911004958277466, 26.292951877307292, 21.09559226572526, + 16.196235773188207, 12.16752072296818, 8.556703388506712, + 5.077342176011926, 1.824868634697892, -1.6718248760329588, + -5.04166924595839, -8.28333331584836, -11.349064220261578, + -13.628388208955837, -15.38428857970149, -16.536362497604568, + -17.09519928585979, -17.405710089796273, -17.521140441020226, + -17.562980386157825, -17.548413484138905, -17.345770084829205, + -16.85308751937973, -15.999186350885324, -14.810236068067443, + -13.438079479944639, -12.263271119411954, -11.565515124002555, + -11.707458735598916, -12.887992517630064, -15.05831532789533, + -17.857278628259007, -20.904665971542897, -23.60896174759075, + -25.239908008262578, -25.60911088180242, -24.437837843949588, + -21.828382515346306, -18.1282102632686, -14.063518089647559, + -9.824744272355973, -5.990443851449039, -2.9777936473064646, + -0.49590595917129, 1.2532767070303688, 2.59014193921012, + 3.783497406320287, 4.740544586388146, 5.641049757302166, + 6.299457376916646, 6.525021458619144, 6.264992338433902, + 5.421355625664757, 4.073195913441558, 2.445995658400948, + 0.8322921514361363, -0.6115267365323521, -1.5427997210408035, + -1.9901040503149714, -2.0654361819616986, -1.8776861856352751, + -1.696771396567069, -1.7193528630014931, -2.0181689431831016, + -2.5713897634400693, -3.1918196325637647, -3.7165784991683344, + -3.9377533190796745, -3.721147054471129, -3.1135221939599402, + -2.256838568630778, -1.3423082292013617, -0.578677551956602, + -0.17184146348419474, -0.0749853734482898, -0.21785394019461707, + -0.41561388016301987, -0.4353710980541888, -0.13183777006321695, + 0.5212212174518223, 1.4090478959237387, 2.284703584378974, + 2.954260350602804, 3.1661966603896694, 2.951714119103874, + 2.5388479115810467, 2.3254961830875023, 2.847998601295876, + 4.62092946432459, 7.991405549118382, 13.139742272225439, + 19.38364147444023, 26.542501974491678, 33.68108574980574, 39.3761984293024 + ], + "pressure:branch143_seg0:RESISTANCE_90": [ + 176108.94239144382, 194994.486048226, 202890.0578318885, + 199445.2854877567, 186868.29314231884, 167099.21700909565, + 142721.07410115865, 117594.48936583409, 94349.44436569666, + 72437.20995208922, 54418.894954907795, 38269.61576325286, + 22708.270387814373, 8161.673754187479, -7477.1898386951425, + -22548.724209307213, -37046.975785349365, -50758.37121634017, + -60952.58378708784, -68805.79891632558, -73958.41718146982, + -76457.79903332298, -77846.54988951674, -78362.8088958421, + -78549.93687624094, -78484.78681577794, -77578.46989949927, + -75374.96095254712, -71555.91194099099, -66238.36516869394, + -60101.43333755634, -54847.13591579321, -51726.44180868, + -52361.2806279316, -57641.1848366666, -67347.89269598157, + -79866.17750462452, -93495.53187325786, -105590.41883622222, + -112884.7802149544, -114536.02970527449, -109297.54391497855, + -97626.82819153913, -81077.91163857337, -62898.68996666957, + -43940.89302900768, -26792.092005227718, -13318.098516510105, + -2217.925484911527, 5605.244899280628, 11584.337131401422, + 16921.585966815484, 21201.95262036804, 25229.43672481918, + 28174.146325489823, 29182.9753505036, 28020.0024081306, + 24246.860886732233, 18217.25440959437, 10939.646935910056, + 3722.403289216007, -2735.036166789173, -6900.128454048135, + -8900.68451323766, -9237.605357848912, -8397.898768439054, + -7588.762451661453, -7689.757426544364, -9026.203958956072, + -11500.468551545777, -14275.323728984748, -16622.293032643425, + -17611.491207476774, -16642.72576801974, -13925.14063222821, + -10093.647160566006, -6003.43588354196, -2588.1191106794668, + -768.5561227428269, -335.36997830211027, -974.3456335006285, + -1858.8214149251644, -1947.1850174613076, -589.6407266116898, + 2331.1472671039064, 6301.927169924435, 10218.272661473584, + 13212.846507461203, 14160.725705038209, 13201.458558541039, + 11354.926032386182, 10400.716414363562, 12737.593815895376, + 20666.97734390871, 35741.337041541556, 58767.12854879729, + 86692.79249716035, 118710.59517192941, 150637.71076437217, + 176108.94239144382 + ], + "flow:branch144_seg0:RESISTANCE_91": [ + 30.646738855299645, 36.71075305564904, 41.46091242122263, + 44.452127326168494, 45.419108408167546, 44.361965983076985, + 41.55267493251541, 37.56238015430683, 32.81453510236321, + 27.77867870008001, 22.929275005574574, 18.30322555920437, + 13.985774038836297, 9.921757184729092, 5.9353101554478425, + 2.072500927603289, -1.7306118936938095, -5.392788188538857, + -8.693849138870945, -11.576199983289577, -13.90646367935317, + -15.665607458499418, -16.933352433657326, -17.790549014180726, + -18.361186903155815, -18.72291036820851, -18.89170069042654, + -18.834447851348095, -18.49292084892399, -17.82232639225904, + -16.861142209174826, -15.747969159382976, -14.690996018505885, + -13.996682170534894, -13.924478094827187, -14.656067634477044, + -16.1913437415534, -18.4081474171549, -20.942354369308667, + -23.331822506026484, -25.152453575524095, -25.97555012141702, + -25.584288179782202, -23.95845622197939, -21.303332770147847, + -17.889101426540016, -14.157767553049647, -10.467009945358317, + -7.060460094158097, -4.144308077107944, -1.6951526002276407, + 0.3355553365230786, 2.035453900007247, 3.4980903025617867, + 4.701785561768778, 5.613516703769401, 6.141621499432006, + 6.188120125107471, 5.718061280699858, 4.794497303982765, + 3.5355398589105986, 2.123802646153424, 0.815222482347196, + -0.26046491656774257, -1.006274696339743, -1.4173044231444762, + -1.6027341524716072, -1.7044482998940877, -1.8591493708300584, + -2.156018571109713, -2.593876334151349, -3.10247356182824, + -3.5448297475828956, -3.7850986695037636, -3.732950059175118, + -3.373536706447182, -2.7705317266696055, -2.066458302723467, + -1.413210046412145, -0.9230522997146681, -0.6560747926409447, + -0.5660661150117255, -0.538660340310747, -0.4352556362851415, + -0.1390776169132869, 0.3845293340485445, 1.0828121953940462, + 1.8268940253362735, 2.4242310212987515, 2.7632599018067476, + 2.8238069387162725, 2.7382943723219006, 2.804079211757257, + 3.4210345917310843, 5.011801281739095, 7.905838489052194, + 12.168920034473976, 17.73245679720775, 24.098073458698348, + 30.646738855299645 + ], + "pressure:branch144_seg0:RESISTANCE_91": [ + 113927.69135990362, 136470.35540913278, 154128.83100311283, + 165248.52011884487, 168843.2230587184, 164913.349916331, + 154469.95346688424, 139636.2357890223, 121986.36353813084, + 103265.82375603274, 85238.41242213511, 68041.30913391501, + 51991.40292378853, 36883.627182213924, 22064.213315102774, + 7704.416679952957, -6433.46160319696, -20047.415524828393, + -32318.941538916475, -43033.93405229163, -51696.57070037491, + -58236.09813507366, -62948.87553481244, -66135.4601799742, + -68256.77747903294, -69601.46604373942, -70228.93547286728, + -70016.10095853699, -68746.49171538597, -66253.59096508395, + -62680.4377017774, -58542.27356478633, -54613.02972784643, + -52031.95334800409, -51763.53837272428, -54483.18523854498, + -60190.49600022146, -68431.3507988993, -77852.13611802396, + -86734.86225993626, -93502.96556597625, -96562.78506855923, + -95108.28872106923, -89064.3411948354, -79194.0549444478, + -66501.82375526853, -52630.78005607191, -38910.576559097484, + -26246.900926851114, -15406.25427515811, -6301.643485086822, + 1247.4098792058203, 7566.696241066452, 13003.972599531653, + 17478.64844121926, 20867.96254212414, 22831.165232304804, + 23004.02150584151, 21256.60168412922, 17823.299622616138, + 13143.189418569442, 7895.128206714133, 3030.5480722443326, + -968.2650661424526, -3740.7749506132086, -5268.757033020531, + -5958.082610907271, -6336.199775321304, -6911.293130144888, + -8014.889267512263, -9642.603208720788, -11533.287508112346, + -13177.72410672711, -14070.91159102002, -13877.051787194998, + -12540.950947443425, -10299.310636252496, -7681.953529619964, + -5253.53639598066, -3431.3999283079065, -2438.924638536017, + -2104.321962113466, -2002.4423899876992, -1618.0406674730375, + -517.0139599362983, 1429.468221567414, 4025.299206550765, + 6791.385525504068, 9011.955395437892, 10272.277997558813, + 10497.358524603422, 10179.469912783501, 10424.021704043045, + 12717.521917699587, 18631.116096203008, 29389.55206864794, + 45237.34066507866, 65919.50532106307, 89583.36116392772, + 113927.69135990362 + ], + "flow:branch145_seg0:RESISTANCE_92": [ + 23.738851969953522, 26.505167024782835, 27.804676908828892, + 27.572382077681326, 26.05304450011871, 23.48534339430538, + 20.220696734566037, 16.81259721855331, 13.557596086116416, + 10.491526024716208, 7.953021131320683, 5.661083253789731, + 3.4978297360301447, 1.4700257836525197, -0.6907407561401826, + -2.7626224758693225, -4.782286688430899, -6.703603530398042, + -8.161322700148093, -9.307494565718207, -10.077386602308854, + -10.476980289080545, -10.706093190888863, -10.798946504714795, + -10.837194659513862, -10.838695583547075, -10.732034276200883, + -10.456935855652102, -9.966316530579093, -9.264411055618282, + -8.43795224441223, -7.700022469341542, -7.222717455778246, + -7.2352649785504255, -7.868691371841167, -9.114654000223549, + -10.770257758769302, -12.633887319881259, -14.328038016267215, + -15.4254410752475, -15.781761122091574, -15.201182889790458, + -13.728828319842863, -11.553216178460293, -9.100145228381063, + -6.49794242828772, -4.1012309513392315, -2.1739275660890724, + -0.5737235257642329, 0.5709022237704255, 1.4454747480411982, + 2.2073113914612628, 2.822881283008037, 3.3956117291776606, + 3.8235925353398517, 4.005092782876086, 3.8944486977561708, + 3.4287193172180657, 2.6430938938521535, 1.674107407334363, + 0.6754761357860396, -0.23681774426090982, -0.8476696519169741, + -1.1739921664866277, -1.260444615791461, -1.1694525602124444, + -1.062884704923564, -1.0626976195901645, -1.2233830068643523, + -1.542421540857419, -1.9161481247379903, -2.24770761030227, + -2.410395478441761, -2.315242966522902, -1.979120761527979, + -1.476604644925507, -0.919675624718676, -0.4376904540388251, + -0.15559843529956682, -0.06354154879641984, -0.12812176519976415, + -0.24300166016340352, -0.26775704050865845, -0.10857536288009857, + 0.26404954887033155, 0.7872618902433963, 1.3284273872177839, + 1.7626578225599936, 1.9289123858069899, 1.8369660392497364, + 1.6036299527169338, 1.4569530041014975, 1.7161397191256875, + 2.6991236135400745, 4.634775069544059, 7.652915927106337, + 11.387645297174927, 15.717193201234679, 20.114719603768105, + 23.738851969953522 + ], + "pressure:branch145_seg0:RESISTANCE_92": [ + 170160.81694011213, 189989.84785699658, 199304.77444952796, + 197639.67799544393, 186749.01977266755, 168343.65971665614, + 144942.572615018, 120513.21105229211, 97181.26338534174, + 75203.57941376808, 57007.498701305674, 40578.81789945465, + 25072.550524078444, 10537.189775908197, -4951.2508653436735, + -19802.56239797619, -34279.57724220058, -48051.63512620204, + -58500.61071727173, -66716.40570372531, -72235.01536807694, + -75099.31513587986, -76741.60342313288, -77407.17881642458, + -77681.34275979568, -77692.10142916894, -76927.54991602157, + -74955.63602403061, -71438.86169700051, -66407.5817856882, + -60483.49975087779, -55193.996554627, -51772.659619694256, + -51862.60064667858, -56403.02040624539, -65334.118632513346, + -77201.53700808428, -90560.09069862613, -102703.81470355128, + -110570.0333928518, -113124.14638617737, -108962.54386086849, + -98408.66127358767, -82813.80690611273, -65230.11931221052, + -46577.450056419635, -29397.748889594317, -15582.779280252125, + -4112.467779207387, 4092.244600230762, 10361.207201777015, + 15822.075561517302, 20234.499370465026, 24339.848724766773, + 27407.628232529474, 28708.627557799526, 27915.52737176697, + 24577.164928390095, 18945.777866449866, 12000.053095999203, + 4841.833599803262, -1697.51683359899, -6076.1219897289075, + -8415.211754279815, -9034.905554921897, -8382.671717668234, + -7618.790071731338, -7617.449038336931, -8769.246808655078, + -11056.124777664789, -13735.008360823387, -16111.636893629266, + -17277.78850803516, -16595.732392493293, -14186.398147262673, + -10584.347254709037, -6592.263004971107, -3137.3785606986435, + -1115.3343429888848, -455.46776510093684, -918.3807313761846, + -1741.8433319170995, -1919.290655338971, -778.2715217497383, + 1892.7152418876105, 5643.117306566433, 9522.208139665583, + 12634.785180525972, 13826.502974543695, 13167.42875037212, + 11494.868545847014, 10443.483692262529, 12301.341992418324, + 19347.40061076585, 33222.20944658667, 54856.33541919573, + 81626.98976530504, 112661.32155475594, 144182.92530029142, + 170160.81694011213 + ], + "flow:branch146_seg2:RESISTANCE_93": [ + 30.2487670867172, 33.367832705282346, 34.58109759440052, 33.8633182118577, + 31.602746783610876, 28.158902965975603, 23.989066347890663, + 19.733461270512546, 15.838237387473072, 12.209681112794815, + 9.235009143486428, 6.56298113941601, 3.9796799863518184, + 1.5363902413959578, -1.1051901682437513, -3.664832281269369, + -6.142687329515002, -8.464531490616725, -10.190257650802003, + -11.52137691191135, -12.386546476194814, -12.812039558324798, + -13.057776304524635, -13.165212866325097, -13.227379754873036, + -13.24849083340169, -13.123555603597246, -12.771329754059673, + -12.135767640726467, -11.240437983169391, -10.206843135271086, + -9.329929037760596, -8.829094250125621, -8.980342415214972, + -9.92997116841206, -11.632853650534507, -13.807886653044989, + -16.152264320437265, -18.20278856640826, -19.415266405657867, + -19.6418837755171, -18.6822260808452, -16.630185894622876, + -13.765210689319257, -10.64394017127426, -7.4126805086194905, + -4.524832340513836, -2.2736044725394473, -0.4351407039213527, + 0.8492329275908433, 1.840201700284081, 2.7361395521677316, + 3.467182493337704, 4.1655195852326825, 4.681323706537031, + 4.8636421354074635, 4.666731822450945, 4.019342568569128, + 2.9877358401787646, 1.7467682261188922, 0.524817961171827, + -0.5502139201676852, -1.2288751430443605, -1.5368542729147847, + -1.5592179480336654, -1.3925211680740852, -1.246185656528829, + -1.2686217372899116, -1.512500681443688, -1.9540639001706082, + -2.443354660869304, -2.8517069887444757, -3.015752926273336, + -2.837300742180772, -2.356721876742929, -1.68876320687412, + -0.9852870360069186, -0.4087987299591112, -0.11455631643548492, + -0.06213316092112989, -0.19090775341656818, -0.3528252090884117, + -0.3674331075033787, -0.1242530718747013, 0.3923052883202556, + 1.0878960365700288, 1.7674254229870803, 2.274857369155019, + 2.4228464612437874, 2.240447830983945, 1.9077273336529479, + 1.7410620599383997, 2.158779321243464, 3.5557582563864427, + 6.194417808181831, 10.193667632920919, 15.01931541471514, + 20.527299143884196, 25.962094480294148, 30.2487670867172 + ], + "pressure:branch146_seg2:RESISTANCE_93": [ + 171375.2908496999, 189046.45000896446, 195920.23837377317, + 191853.637903855, 179046.30314896276, 159535.10342976966, + 135910.769876896, 111800.51256337727, 89732.00563988743, + 69174.31199389839, 52321.21935507236, 37182.7651151651, + 22546.995492228994, 8704.464671991938, -6261.48781482107, + -20763.216441761164, -34801.57801726182, -47956.05526507186, + -57733.20822408732, -65274.70404355193, -70176.34797793956, + -72586.99170750905, -73979.2205620502, -74587.90560277631, + -74940.11396141707, -75059.71940558031, -74351.89514009336, + -72356.34909895432, -68755.5530164784, -63683.0361753692, + -57827.1737803296, -52858.99084314522, -50021.49643709479, + -50878.397421136804, -56258.547405821024, -65906.27882640602, + -78228.99308264109, -91511.13458147057, -103128.4407691988, + -109997.77007953098, -111281.67753797396, -105844.70828665822, + -94218.81349428705, -77987.21113910753, -60303.56005616901, + -41996.762198563294, -25635.5723913859, -12881.173855503828, + -2465.3026181621626, 4811.354444554546, 10425.71754095726, + 15501.680125138642, 19643.42568149246, 23599.87527467987, + 26522.178886480546, 27555.109375360702, 26439.50813258978, + 22771.705033080787, 16927.106388329823, 9896.367410280238, + 2973.371790035698, -3117.2533521104406, -6962.228723354043, + -8707.093656390034, -8833.795723849122, -7889.370152143422, + -7060.30195307141, -7187.414236854023, -8569.117658572968, + -11070.807225649418, -13842.898603274652, -16156.430879089212, + -17085.83802405159, -16074.811860110387, -13352.077984561025, + -9567.738246145656, -5582.173047980142, -2316.061380119126, + -649.022222675538, -352.0172737527093, -1081.593562917749, + -1998.9417305260579, -2081.7032140733604, -703.9594794222887, + 2222.617295277378, 6163.507396745063, 10013.401374383346, + 12888.27217859427, 13726.708787484633, 12693.323915242421, + 10808.286027970902, 9864.038955833214, 12230.628540919968, + 20145.254305159928, 35094.65858487314, 57752.52757935011, + 85092.37881270343, 116298.02467839172, 147089.01952508348, + 171375.2908496999 + ] + } +} diff --git a/tests/cases/vmr/input/0104_0001_calibrate_from_0d.json b/tests/cases/vmr/input/0104_0001_calibrate_from_0d.json index ed298c309..e1badeafe 100644 --- a/tests/cases/vmr/input/0104_0001_calibrate_from_0d.json +++ b/tests/cases/vmr/input/0104_0001_calibrate_from_0d.json @@ -1,15343 +1,5532 @@ { - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 19.581907481595668, - 29.24682998044782, - 42.0511165296033, - 58.583913202644474, - 78.95362616027712, - 103.27506735565193, - 130.16534882450802, - 158.11460426170575, - 185.3564624676055, - 210.00675799120174, - 230.14062159309847, - 244.73105343201496, - 253.69338170314, - 257.05601197452415, - 256.0693925199267, - 251.86471784525148, - 245.88851566046975, - 239.12106476762335, - 232.10897405704137, - 225.15125147491213, - 217.97720402973337, - 210.1674463421351, - 201.4946309392784, - 191.82313530044465, - 181.19449872183276, - 169.9852394452257, - 158.72346366351152, - 147.6930079809729, - 136.9482091445109, - 126.56365701566217, - 116.06082531356147, - 104.86525943054755, - 92.70970076933371, - 79.3807344047527, - 64.81272634444237, - 49.86814034140978, - 35.19454243721392, - 21.51179631610772, - 9.992989822184512, - 0.8867712885176026, - -5.537671779881001, - -9.579657157216602, - -11.611404933684915, - -12.33447052477908, - -12.218625949917055, - -11.640767443352093, - -10.689850735695753, - -9.276334007322495, - -7.253939643489095, - -4.5124157127967175, - -1.0622631811875014, - 2.740625109763227, - 6.476082901308106, - 9.639835317912233, - 11.730779557406226, - 12.519379517353505, - 12.095924459442914, - 10.775316065370106, - 9.110507086398105, - 7.665149973221131, - 6.854060102188092, - 6.88444268118512, - 7.567583025205867, - 8.528115822955554, - 9.202847862573616, - 9.068039723252227, - 7.86356755044207, - 5.555421231360338, - 2.5134069022190055, - -0.7866296297480672, - -3.665410108802718, - -5.626432153743674, - -6.491107894311172, - -6.249539655106462, - -5.35236204167692, - -4.319870419424456, - -3.727209684989501, - -4.015479774824012, - -5.297081449614054, - -7.469070649799495, - -10.087968366633373, - -12.675902678245876, - -14.779047115069162, - -16.048740620275993, - -16.433639588685313, - -16.06971930508376, - -15.251965727850354, - -14.292802363131837, - -13.40752847300765, - -12.676279065948533, - -11.988085430841524, - -11.12210395441212, - -9.830647135308425, - -7.950669625931317, - -5.353410386770605, - -2.085489965433775, - 1.8538463401322447, - 6.520264580067509, - 12.319343064136449, - 19.581907481595668 - ], - "t": [ - 0.0, - 0.009777777777777785, - 0.01955555555555557, - 0.029333333333333354, - 0.03911111111111114, - 0.048888888888888926, - 0.05866666666666671, - 0.06844444444444449, - 0.07822222222222228, - 0.08800000000000006, - 0.09777777777777785, - 0.10755555555555563, - 0.11733333333333341, - 0.1271111111111112, - 0.13688888888888898, - 0.14666666666666678, - 0.15644444444444455, - 0.16622222222222233, - 0.17600000000000013, - 0.1857777777777779, - 0.1955555555555557, - 0.20533333333333348, - 0.21511111111111125, - 0.22488888888888905, - 0.23466666666666683, - 0.2444444444444446, - 0.2542222222222224, - 0.2640000000000002, - 0.27377777777777795, - 0.2835555555555557, - 0.29333333333333356, - 0.30311111111111133, - 0.3128888888888891, - 0.3226666666666669, - 0.33244444444444465, - 0.3422222222222225, - 0.35200000000000026, - 0.36177777777777803, - 0.3715555555555558, - 0.3813333333333336, - 0.3911111111111114, - 0.4008888888888892, - 0.41066666666666696, - 0.42044444444444473, - 0.4302222222222225, - 0.4400000000000003, - 0.4497777777777781, - 0.4595555555555559, - 0.46933333333333366, - 0.47911111111111143, - 0.4888888888888892, - 0.49866666666666704, - 0.5084444444444448, - 0.5182222222222226, - 0.5280000000000004, - 0.5377777777777781, - 0.5475555555555559, - 0.5573333333333337, - 0.5671111111111115, - 0.5768888888888893, - 0.5866666666666671, - 0.5964444444444449, - 0.6062222222222227, - 0.6160000000000004, - 0.6257777777777782, - 0.635555555555556, - 0.6453333333333338, - 0.6551111111111115, - 0.6648888888888893, - 0.6746666666666671, - 0.684444444444445, - 0.6942222222222227, - 0.7040000000000005, - 0.7137777777777783, - 0.7235555555555561, - 0.7333333333333338, - 0.7431111111111116, - 0.7528888888888894, - 0.7626666666666672, - 0.7724444444444449, - 0.7822222222222228, - 0.7920000000000006, - 0.8017777777777784, - 0.8115555555555561, - 0.8213333333333339, - 0.8311111111111117, - 0.8408888888888895, - 0.8506666666666672, - 0.860444444444445, - 0.8702222222222228, - 0.8800000000000006, - 0.8897777777777784, - 0.8995555555555562, - 0.909333333333334, - 0.9191111111111118, - 0.9288888888888895, - 0.9386666666666673, - 0.9484444444444451, - 0.9582222222222229, - 0.9680000000000007 - ] - } - }, - { - "bc_name": "RCR_0", - "bc_type": "RCR", - "bc_values": { - "C": 0.00012993, - "Pd": 0.0, - "Rd": 14964.0, - "Rp": 888.0 - } - }, - { - "bc_name": "RCR_1", - "bc_type": "RCR", - "bc_values": { - "C": 0.00060244, - "Pd": 0.0, - "Rd": 3163.0000000000005, - "Rp": 256.0 - } - }, - { - "bc_name": "RCR_2", - "bc_type": "RCR", - "bc_values": { - "C": 0.00011318999999999999, - "Pd": 0.0, - "Rd": 17177.0, - "Rp": 1019.0 - } - }, - { - "bc_name": "RCR_3", - "bc_type": "RCR", - "bc_values": { - "C": 4.123e-05, - "Pd": 0.0, - "Rd": 44958.0, - "Rp": 4995.0 - } - }, - { - "bc_name": "RCR_4", - "bc_type": "RCR", - "bc_values": { - "C": 0.00011318999999999999, - "Pd": 0.0, - "Rd": 17177.0, - "Rp": 1019.0 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0 - ], - "junction_name": "J0", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 1, - 5, - 9 - ] - }, - { - "inlet_vessels": [ - 1 - ], - "junction_name": "J1", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 2, - 15 - ] - }, - { - "inlet_vessels": [ - 5 - ], - "junction_name": "J2", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 6, - 12 - ] - }, - { - "inlet_vessels": [ - 2 - ], - "junction_name": "J3", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 3 - ] - }, - { - "inlet_vessels": [ - 3 - ], - "junction_name": "J4", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 4 - ] - }, - { - "inlet_vessels": [ - 6 - ], - "junction_name": "J5", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 7 - ] - }, - { - "inlet_vessels": [ - 7 - ], - "junction_name": "J6", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 8 - ] - }, - { - "inlet_vessels": [ - 9 - ], - "junction_name": "J7", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 10 - ] - }, - { - "inlet_vessels": [ - 10 - ], - "junction_name": "J8", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 11 - ] - }, - { - "inlet_vessels": [ - 12 - ], - "junction_name": "J9", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 13 - ] - }, - { - "inlet_vessels": [ - 13 - ], - "junction_name": "J10", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 14 - ] - }, - { - "inlet_vessels": [ - 15 - ], - "junction_name": "J11", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 16 - ] - }, - { - "inlet_vessels": [ - 16 - ], - "junction_name": "J12", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 17 - ] - } - ], - "simulation_parameters": { - "density": 1.06, - "model_name": "0104_0001", - "number_of_cardiac_cycles": 9, - "number_of_time_pts_per_cardiac_cycle": 968, - "viscosity": 0.04, - "output_all_cycles": false + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 19.581907481595668, 29.24682998044782, 42.0511165296033, + 58.583913202644474, 78.95362616027712, 103.27506735565193, + 130.16534882450802, 158.11460426170575, 185.3564624676055, + 210.00675799120174, 230.14062159309847, 244.73105343201496, + 253.69338170314, 257.05601197452415, 256.0693925199267, + 251.86471784525148, 245.88851566046975, 239.12106476762335, + 232.10897405704137, 225.15125147491213, 217.97720402973337, + 210.1674463421351, 201.4946309392784, 191.82313530044465, + 181.19449872183276, 169.9852394452257, 158.72346366351152, + 147.6930079809729, 136.9482091445109, 126.56365701566217, + 116.06082531356147, 104.86525943054755, 92.70970076933371, + 79.3807344047527, 64.81272634444237, 49.86814034140978, + 35.19454243721392, 21.51179631610772, 9.992989822184512, + 0.8867712885176026, -5.537671779881001, -9.579657157216602, + -11.611404933684915, -12.33447052477908, -12.218625949917055, + -11.640767443352093, -10.689850735695753, -9.276334007322495, + -7.253939643489095, -4.5124157127967175, -1.0622631811875014, + 2.740625109763227, 6.476082901308106, 9.639835317912233, + 11.730779557406226, 12.519379517353505, 12.095924459442914, + 10.775316065370106, 9.110507086398105, 7.665149973221131, + 6.854060102188092, 6.88444268118512, 7.567583025205867, + 8.528115822955554, 9.202847862573616, 9.068039723252227, + 7.86356755044207, 5.555421231360338, 2.5134069022190055, + -0.7866296297480672, -3.665410108802718, -5.626432153743674, + -6.491107894311172, -6.249539655106462, -5.35236204167692, + -4.319870419424456, -3.727209684989501, -4.015479774824012, + -5.297081449614054, -7.469070649799495, -10.087968366633373, + -12.675902678245876, -14.779047115069162, -16.048740620275993, + -16.433639588685313, -16.06971930508376, -15.251965727850354, + -14.292802363131837, -13.40752847300765, -12.676279065948533, + -11.988085430841524, -11.12210395441212, -9.830647135308425, + -7.950669625931317, -5.353410386770605, -2.085489965433775, + 1.8538463401322447, 6.520264580067509, 12.319343064136449, + 19.581907481595668 + ], + "t": [ + 0.0, 0.009777777777777785, 0.01955555555555557, 0.029333333333333354, + 0.03911111111111114, 0.048888888888888926, 0.05866666666666671, + 0.06844444444444449, 0.07822222222222228, 0.08800000000000006, + 0.09777777777777785, 0.10755555555555563, 0.11733333333333341, + 0.1271111111111112, 0.13688888888888898, 0.14666666666666678, + 0.15644444444444455, 0.16622222222222233, 0.17600000000000013, + 0.1857777777777779, 0.1955555555555557, 0.20533333333333348, + 0.21511111111111125, 0.22488888888888905, 0.23466666666666683, + 0.2444444444444446, 0.2542222222222224, 0.2640000000000002, + 0.27377777777777795, 0.2835555555555557, 0.29333333333333356, + 0.30311111111111133, 0.3128888888888891, 0.3226666666666669, + 0.33244444444444465, 0.3422222222222225, 0.35200000000000026, + 0.36177777777777803, 0.3715555555555558, 0.3813333333333336, + 0.3911111111111114, 0.4008888888888892, 0.41066666666666696, + 0.42044444444444473, 0.4302222222222225, 0.4400000000000003, + 0.4497777777777781, 0.4595555555555559, 0.46933333333333366, + 0.47911111111111143, 0.4888888888888892, 0.49866666666666704, + 0.5084444444444448, 0.5182222222222226, 0.5280000000000004, + 0.5377777777777781, 0.5475555555555559, 0.5573333333333337, + 0.5671111111111115, 0.5768888888888893, 0.5866666666666671, + 0.5964444444444449, 0.6062222222222227, 0.6160000000000004, + 0.6257777777777782, 0.635555555555556, 0.6453333333333338, + 0.6551111111111115, 0.6648888888888893, 0.6746666666666671, + 0.684444444444445, 0.6942222222222227, 0.7040000000000005, + 0.7137777777777783, 0.7235555555555561, 0.7333333333333338, + 0.7431111111111116, 0.7528888888888894, 0.7626666666666672, + 0.7724444444444449, 0.7822222222222228, 0.7920000000000006, + 0.8017777777777784, 0.8115555555555561, 0.8213333333333339, + 0.8311111111111117, 0.8408888888888895, 0.8506666666666672, + 0.860444444444445, 0.8702222222222228, 0.8800000000000006, + 0.8897777777777784, 0.8995555555555562, 0.909333333333334, + 0.9191111111111118, 0.9288888888888895, 0.9386666666666673, + 0.9484444444444451, 0.9582222222222229, 0.9680000000000007 + ] + } }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 5.462738535526542, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 1, - "vessel_length": 1.2615694946168765, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 2, - "vessel_length": 3.066087671068054, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 3, - "vessel_length": 0.386387365444609, - "vessel_name": "branch2_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_0" - }, - "vessel_id": 4, - "vessel_length": 1.0711328524532193, - "vessel_name": "branch2_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 5, - "vessel_length": 0.6541411252008914, - "vessel_name": "branch3_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 6, - "vessel_length": 3.9035420097681923, - "vessel_name": "branch4_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 7, - "vessel_length": 1.6172339670911955, - "vessel_name": "branch4_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_1" - }, - "vessel_id": 8, - "vessel_length": 10.404354538354355, - "vessel_name": "branch4_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 9, - "vessel_length": 2.0528043053140657, - "vessel_name": "branch5_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 10, - "vessel_length": 1.8557246843610942, - "vessel_name": "branch5_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_2" - }, - "vessel_id": 11, - "vessel_length": 1.6295908330522304, - "vessel_name": "branch5_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 12, - "vessel_length": 1.560439375019021, - "vessel_name": "branch6_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 13, - "vessel_length": 1.6347590809944081, - "vessel_name": "branch6_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_3" - }, - "vessel_id": 14, - "vessel_length": 3.8286489278855598, - "vessel_name": "branch6_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 15, - "vessel_length": 0.8548959459506262, - "vessel_name": "branch7_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 16, - "vessel_length": 0.3605161548345858, - "vessel_name": "branch7_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_4" - }, - "vessel_id": 17, - "vessel_length": 2.8490356278827176, - "vessel_name": "branch7_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - } - ], - "calibration_parameters": { - "tolerance_gradient": 1e-05, - "tolerance_increment": 1e-09, - "maximum_iterations": 20, - "calibrate_stenosis_coefficient": true, - "set_capacitance_to_zero": false + { + "bc_name": "RCR_0", + "bc_type": "RCR", + "bc_values": { + "C": 0.00012993, + "Pd": 0.0, + "Rd": 14964.0, + "Rp": 888.0 + } }, - "y": { - "flow:branch0_seg0:J0": [ - 18.92175758566744, - 28.216243332130016, - 40.60118299487864, - 56.943204493576935, - 77.18517660039059, - 101.11749855132854, - 128.44126202068026, - 156.652370956494, - 184.12603075864237, - 209.38477573349212, - 229.95250608442987, - 244.9200148672844, - 253.87720255718816, - 257.537613325642, - 256.4462847338889, - 251.90789173468957, - 245.98501856784105, - 239.0202266119794, - 232.01601030970318, - 225.05969989498712, - 217.96681990396004, - 210.4575119627732, - 201.67244314611705, - 192.14040157461082, - 181.587231945087, - 170.20405497593046, - 158.9362933904147, - 147.84248603872268, - 137.19161330343783, - 126.79811656567603, - 116.45646902798744, - 105.55096026610292, - 93.37055604300863, - 80.16797603938484, - 65.7540070934529, - 50.49477777429036, - 35.66823773172331, - 22.000132360325274, - 10.033745383033612, - 0.8058247333701418, - -5.579235432888197, - -9.691383529155814, - -11.727745028935376, - -12.319787473107695, - -12.132426403781672, - -11.591242421348413, - -10.672843317314076, - -9.262566260228443, - -7.361868551313712, - -4.645276899541107, - -1.1838315676539206, - 2.7010812899769965, - 6.557703460702957, - 9.803768275307165, - 12.076415900964406, - 12.920042142551251, - 12.457542643536534, - 11.10589536973831, - 9.303647673381752, - 7.7559788423003875, - 6.843446993975088, - 6.852162158863066, - 7.598479601278759, - 8.64083811789094, - 9.465853113425387, - 9.446814427487602, - 8.310417127883694, - 6.013343001131544, - 2.8817227304084705, - -0.5099867873149737, - -3.5592699441080105, - -5.634650387707736, - -6.5081176773890865, - -6.296060943354422, - -5.293468094205534, - -4.1398264437213905, - -3.4198499597427845, - -3.611054581269036, - -4.871286367953094, - -7.057526336563104, - -9.781802509137403, - -12.466645443769556, - -14.672233145803878, - -16.016879198141996, - -16.41215876514399, - -16.017090385883545, - -15.156921138562671, - -14.151996633600982, - -13.232937522363965, - -12.513822240892178, - -11.87388848648263, - -11.082077185205298, - -9.856423271301594, - -8.023971386986613, - -5.49503922024819, - -2.2205509864959514, - 1.6599250290215395, - 6.2367095658757234, - 11.852863079627044, - 18.92175758566744 - ], - "pressure:branch0_seg0:J0": [ - 97883.79228818601, - 100362.45706633799, - 104006.98735296179, - 108713.17682436532, - 114111.63012592736, - 120270.72035781217, - 126863.79328064158, - 132468.9960143025, - 137351.9846395365, - 141641.979621213, - 143797.80682405067, - 144737.71207481594, - 145321.06511807407, - 144850.37597145676, - 144076.91395986167, - 143728.66784539717, - 143704.29941630695, - 143827.16766675044, - 144136.16896355106, - 144584.79382749216, - 144750.9536720433, - 144495.05781557388, - 143862.05763622772, - 143095.99787243173, - 142118.79346803468, - 140941.1109844177, - 140231.2719990955, - 139565.63890059595, - 138615.2299902476, - 137877.79348515076, - 136815.54779725138, - 134972.22600465495, - 132853.38417500505, - 130496.28845757022, - 127630.19407785177, - 124896.84950916583, - 122822.61890608656, - 120992.84987708904, - 119656.51297161075, - 119277.09738336042, - 119120.88060001955, - 118946.28771280719, - 119096.28503194808, - 119109.3261227336, - 118780.34396326689, - 118497.47012917965, - 118301.80508038167, - 118160.95566874628, - 118200.86255736674, - 118485.09189602805, - 118874.86293273137, - 119102.6950715318, - 119105.81235995868, - 118821.13606311278, - 118111.48369959112, - 117053.21802567685, - 115897.4702628976, - 114802.56184169221, - 113886.27055010603, - 113301.59393592518, - 113041.7417191392, - 112968.17037649023, - 112906.40846491912, - 112665.85081329715, - 112095.50973817798, - 111142.90343254161, - 109867.50014854025, - 108450.66499766815, - 107080.65084230114, - 105922.15717554606, - 105147.11586384277, - 104779.29792543473, - 104647.90396003803, - 104617.53571766807, - 104526.30192301433, - 104143.21848358714, - 103392.91870178893, - 102319.88087469581, - 101028.6935940345, - 99663.02354377806, - 98447.46998748454, - 97490.68841062339, - 96790.32991114185, - 96394.28884377204, - 96166.9117979795, - 95927.07546863424, - 95622.7833539858, - 95203.81884674405, - 94668.93006942548, - 94095.47620490487, - 93595.00415169299, - 93267.54323751351, - 93146.20084769033, - 93210.71152021117, - 93446.8125940448, - 93839.37452857489, - 94293.32645674625, - 94967.02245556592, - 96117.67835019356, - 97883.79228818601 - ], - "flow:J0:branch1_seg0": [ - 7.473269095184357, - 10.474955181417705, - 14.544898020446606, - 19.97308178374206, - 26.67493738180803, - 34.523415357927654, - 43.349024135409444, - 52.271393740277176, - 60.449925712231035, - 67.52115662463035, - 72.7051929291901, - 75.40545015250765, - 75.94898462223, - 74.6205432165584, - 71.65086096973255, - 67.79526644100238, - 63.7574188255106, - 59.83732888198146, - 56.23908873576452, - 53.05013746626578, - 50.16682871600392, - 47.31630084510907, - 44.26971719121469, - 41.05917510557836, - 37.69656534374528, - 34.177462813403174, - 30.792222932941794, - 27.74464167211503, - 24.91107814752932, - 22.267223976908767, - 19.78719663642131, - 17.089900642379742, - 13.945489705521059, - 10.465244030171759, - 6.592076166920957, - 2.4213436894557505, - -1.490902618782335, - -4.849280208445136, - -7.543955431973615, - -9.179905545698805, - -9.7186426718282, - -9.511268411521915, - -8.692277256980441, - -7.452067676695933, - -6.161138326244535, - -4.9652567031769115, - -3.8074778239983504, - -2.665216895999083, - -1.487378018682198, - -0.16433204461397324, - 1.3253991873549238, - 2.8562163296970215, - 4.232168331130521, - 5.292535112838462, - 5.881209509875805, - 5.872114748567824, - 5.338173259392179, - 4.4767050220000915, - 3.5058331747608844, - 2.673198142371993, - 2.1712886450776065, - 2.0686142397613216, - 2.284267498201832, - 2.63227214549627, - 2.880606387289924, - 2.806386801407169, - 2.2905279875912474, - 1.3455464807065398, - 0.12342103770218237, - -1.148282479026889, - -2.2195748384979628, - -2.8535726022716266, - -2.980430843346229, - -2.6728106909163847, - -2.080785465985457, - -1.4549172184039612, - -1.0526865691645575, - -1.0440232998102057, - -1.4705818565152995, - -2.262485031914761, - -3.239311489929444, - -4.163507666777938, - -4.855976429434905, - -5.192100517469342, - -5.132496395096732, - -4.776817478592463, - -4.271584024752902, - -3.747491169622864, - -3.3073175831576664, - -2.986103491383085, - -2.737281641340788, - -2.4559839830901833, - -2.031018446316045, - -1.3964704423326666, - -0.524962117934216, - 0.588258664592567, - 1.8899773324477065, - 3.3748733015604775, - 5.180080143732487, - 7.473269095184357 - ], - "pressure:J0:branch1_seg0": [ - 97883.79228818601, - 100362.45706633799, - 104006.98735296179, - 108713.17682436532, - 114111.63012592736, - 120270.72035781217, - 126863.79328064158, - 132468.9960143025, - 137351.9846395365, - 141641.979621213, - 143797.80682405067, - 144737.71207481594, - 145321.06511807407, - 144850.37597145676, - 144076.91395986167, - 143728.66784539717, - 143704.29941630695, - 143827.16766675044, - 144136.16896355106, - 144584.79382749216, - 144750.9536720433, - 144495.05781557388, - 143862.05763622772, - 143095.99787243173, - 142118.79346803468, - 140941.1109844177, - 140231.2719990955, - 139565.63890059595, - 138615.2299902476, - 137877.79348515076, - 136815.54779725138, - 134972.22600465495, - 132853.38417500505, - 130496.28845757022, - 127630.19407785177, - 124896.84950916583, - 122822.61890608656, - 120992.84987708904, - 119656.51297161075, - 119277.09738336042, - 119120.88060001955, - 118946.28771280719, - 119096.28503194808, - 119109.3261227336, - 118780.34396326689, - 118497.47012917965, - 118301.80508038167, - 118160.95566874628, - 118200.86255736674, - 118485.09189602805, - 118874.86293273137, - 119102.6950715318, - 119105.81235995868, - 118821.13606311278, - 118111.48369959112, - 117053.21802567685, - 115897.4702628976, - 114802.56184169221, - 113886.27055010603, - 113301.59393592518, - 113041.7417191392, - 112968.17037649023, - 112906.40846491912, - 112665.85081329715, - 112095.50973817798, - 111142.90343254161, - 109867.50014854025, - 108450.66499766815, - 107080.65084230114, - 105922.15717554606, - 105147.11586384277, - 104779.29792543473, - 104647.90396003803, - 104617.53571766807, - 104526.30192301433, - 104143.21848358714, - 103392.91870178893, - 102319.88087469581, - 101028.6935940345, - 99663.02354377806, - 98447.46998748454, - 97490.68841062339, - 96790.32991114185, - 96394.28884377204, - 96166.9117979795, - 95927.07546863424, - 95622.7833539858, - 95203.81884674405, - 94668.93006942548, - 94095.47620490487, - 93595.00415169299, - 93267.54323751351, - 93146.20084769033, - 93210.71152021117, - 93446.8125940448, - 93839.37452857489, - 94293.32645674625, - 94967.02245556592, - 96117.67835019356, - 97883.79228818601 - ], - "flow:J0:branch3_seg0": [ - 7.605245607515687, - 12.40153990092021, - 18.67511662220872, - 26.863769035610904, - 37.06398450199306, - 49.27204824320138, - 63.456987042534394, - 78.47481951203525, - 93.96682558194021, - 108.97121499673561, - 122.18031266628904, - 133.55030768901486, - 142.1111953672284, - 148.11883884469236, - 151.75306093962996, - 153.15545335894836, - 153.33022220387997, - 152.19713068807033, - 150.47784083876473, - 148.1538858813753, - 145.2232717347568, - 141.83791440947016, - 137.48939398958134, - 132.6479344239662, - 127.0173492118531, - 120.79272033015184, - 114.46708972025326, - 107.79433089412835, - 101.24619815140254, - 94.67564242960515, - 87.9206805460903, - 80.95508624457888, - 73.40908117591513, - 65.34858164135032, - 56.66791448892943, - 47.57824774952261, - 38.49628249127316, - 29.71016609135891, - 21.61135447110023, - 14.641660592661458, - 8.870820755560954, - 4.287355722774933, - 0.8990825426274188, - -1.633829600471678, - -3.4129828669649735, - -4.657425536132012, - -5.447196858332844, - -5.710494477176277, - -5.532899683363156, - -4.7598144666319815, - -3.4925106813569826, - -1.8554580351379422, - -0.00011896963564717584, - 1.7320370565161367, - 3.2098412534890053, - 4.16110688939452, - 4.584333987994032, - 4.586785848212133, - 4.27302544494116, - 3.9740225532366216, - 3.7864745993518896, - 3.905477192710565, - 4.284315777087809, - 4.773904372167237, - 5.217015451072702, - 5.322554676024792, - 4.988256885847819, - 4.139558348062439, - 2.860087519029483, - 1.3726568559268029, - -0.09961167866809661, - -1.2791335664825316, - -2.0298244071027205, - -2.34397288482981, - -2.278804893700324, - -2.087445557588426, - -1.9653078482395683, - -2.140902104065323, - -2.7219535113062867, - -3.6837087396342976, - -4.9220203927103245, - -6.223675987859057, - -7.41632641240454, - -8.299720923086237, - -8.834594808228921, - -9.017286259333078, - -8.944421568812835, - -8.737399952522416, - -8.474065778714168, - -8.22163371112518, - -7.937111288166891, - -7.553787404586311, - -6.959644509431893, - -6.078853536913267, - -4.859164121159537, - -3.254683676909389, - -1.319886622794394, - 1.0433629774099975, - 3.9653440612098296, - 7.605245607515687 - ], - "pressure:J0:branch3_seg0": [ - 97883.79228818601, - 100362.45706633799, - 104006.98735296179, - 108713.17682436532, - 114111.63012592736, - 120270.72035781217, - 126863.79328064158, - 132468.9960143025, - 137351.9846395365, - 141641.979621213, - 143797.80682405067, - 144737.71207481594, - 145321.06511807407, - 144850.37597145676, - 144076.91395986167, - 143728.66784539717, - 143704.29941630695, - 143827.16766675044, - 144136.16896355106, - 144584.79382749216, - 144750.9536720433, - 144495.05781557388, - 143862.05763622772, - 143095.99787243173, - 142118.79346803468, - 140941.1109844177, - 140231.2719990955, - 139565.63890059595, - 138615.2299902476, - 137877.79348515076, - 136815.54779725138, - 134972.22600465495, - 132853.38417500505, - 130496.28845757022, - 127630.19407785177, - 124896.84950916583, - 122822.61890608656, - 120992.84987708904, - 119656.51297161075, - 119277.09738336042, - 119120.88060001955, - 118946.28771280719, - 119096.28503194808, - 119109.3261227336, - 118780.34396326689, - 118497.47012917965, - 118301.80508038167, - 118160.95566874628, - 118200.86255736674, - 118485.09189602805, - 118874.86293273137, - 119102.6950715318, - 119105.81235995868, - 118821.13606311278, - 118111.48369959112, - 117053.21802567685, - 115897.4702628976, - 114802.56184169221, - 113886.27055010603, - 113301.59393592518, - 113041.7417191392, - 112968.17037649023, - 112906.40846491912, - 112665.85081329715, - 112095.50973817798, - 111142.90343254161, - 109867.50014854025, - 108450.66499766815, - 107080.65084230114, - 105922.15717554606, - 105147.11586384277, - 104779.29792543473, - 104647.90396003803, - 104617.53571766807, - 104526.30192301433, - 104143.21848358714, - 103392.91870178893, - 102319.88087469581, - 101028.6935940345, - 99663.02354377806, - 98447.46998748454, - 97490.68841062339, - 96790.32991114185, - 96394.28884377204, - 96166.9117979795, - 95927.07546863424, - 95622.7833539858, - 95203.81884674405, - 94668.93006942548, - 94095.47620490487, - 93595.00415169299, - 93267.54323751351, - 93146.20084769033, - 93210.71152021117, - 93446.8125940448, - 93839.37452857489, - 94293.32645674625, - 94967.02245556592, - 96117.67835019356, - 97883.79228818601 - ], - "flow:J0:branch5_seg0": [ - 3.8432428829673935, - 5.3397482497921045, - 7.381168352223314, - 10.106353674223971, - 13.446254716589515, - 17.32203495019952, - 21.635250842736394, - 25.906157704181553, - 29.709279464471106, - 32.89240411212612, - 35.067000488950725, - 35.964257025761945, - 35.81702256772976, - 34.79823126439119, - 33.04236282452645, - 30.957171934738856, - 28.897377538450456, - 26.98576704192764, - 25.299080735173952, - 23.855676547346036, - 22.576719453199313, - 21.303296708194, - 19.913331965321017, - 18.433292045066267, - 16.87331738948867, - 15.233871832375469, - 13.676980737219674, - 12.303513472479283, - 11.034337004506007, - 9.855250159162106, - 8.748591845475813, - 7.505973379144259, - 6.015985161572443, - 4.354150367862775, - 2.4940164376025056, - 0.495186335312009, - -1.3371421407675101, - -2.8607535225885026, - -4.033653656093008, - -4.6559303135925125, - -4.731413516620951, - -4.467470840408831, - -3.934550314582356, - -3.2338901959400843, - -2.558305210572162, - -1.968560182039492, - -1.4181686349828826, - -0.8868548870530849, - -0.3415908492683576, - 0.27886961170484564, - 0.9832799263481379, - 1.7003229954179178, - 2.325654099208082, - 2.779196105952565, - 2.9853651375995973, - 2.8868205045889073, - 2.5350353961503234, - 2.0424044995260835, - 1.5247890536797049, - 1.1087581466917744, - 0.8856837495455924, - 0.8780707263911783, - 1.0298963259891198, - 1.2346616002274322, - 1.3682312750627625, - 1.3178729500556436, - 1.0316322544446268, - 0.5282381723625639, - -0.1017858263231952, - -0.7343611642148872, - -1.240083426941951, - -1.501944218953579, - -1.4978624269401362, - -1.2792773676082279, - -0.933877734519754, - -0.5974636677290034, - -0.4018555423386586, - -0.426129177393508, - -0.6787510001315069, - -1.1113325650140455, - -1.620470626497637, - -2.079461789132558, - -2.3999303039644326, - -2.525057757586414, - -2.44506756181833, - -2.2229866479580034, - -1.940915544996933, - -1.6671055114557003, - -1.4515541604921285, - -1.3060850383839138, - -1.1994955569749512, - -1.0723057975288026, - -0.8657603155536575, - -0.548647407740679, - -0.11091298115443671, - 0.4458740258208701, - 1.0898343193682263, - 1.8184732869052482, - 2.707438874684726, - 3.8432428829673935 - ], - "pressure:J0:branch5_seg0": [ - 97883.79228818601, - 100362.45706633799, - 104006.98735296179, - 108713.17682436532, - 114111.63012592736, - 120270.72035781217, - 126863.79328064158, - 132468.9960143025, - 137351.9846395365, - 141641.979621213, - 143797.80682405067, - 144737.71207481594, - 145321.06511807407, - 144850.37597145676, - 144076.91395986167, - 143728.66784539717, - 143704.29941630695, - 143827.16766675044, - 144136.16896355106, - 144584.79382749216, - 144750.9536720433, - 144495.05781557388, - 143862.05763622772, - 143095.99787243173, - 142118.79346803468, - 140941.1109844177, - 140231.2719990955, - 139565.63890059595, - 138615.2299902476, - 137877.79348515076, - 136815.54779725138, - 134972.22600465495, - 132853.38417500505, - 130496.28845757022, - 127630.19407785177, - 124896.84950916583, - 122822.61890608656, - 120992.84987708904, - 119656.51297161075, - 119277.09738336042, - 119120.88060001955, - 118946.28771280719, - 119096.28503194808, - 119109.3261227336, - 118780.34396326689, - 118497.47012917965, - 118301.80508038167, - 118160.95566874628, - 118200.86255736674, - 118485.09189602805, - 118874.86293273137, - 119102.6950715318, - 119105.81235995868, - 118821.13606311278, - 118111.48369959112, - 117053.21802567685, - 115897.4702628976, - 114802.56184169221, - 113886.27055010603, - 113301.59393592518, - 113041.7417191392, - 112968.17037649023, - 112906.40846491912, - 112665.85081329715, - 112095.50973817798, - 111142.90343254161, - 109867.50014854025, - 108450.66499766815, - 107080.65084230114, - 105922.15717554606, - 105147.11586384277, - 104779.29792543473, - 104647.90396003803, - 104617.53571766807, - 104526.30192301433, - 104143.21848358714, - 103392.91870178893, - 102319.88087469581, - 101028.6935940345, - 99663.02354377806, - 98447.46998748454, - 97490.68841062339, - 96790.32991114185, - 96394.28884377204, - 96166.9117979795, - 95927.07546863424, - 95622.7833539858, - 95203.81884674405, - 94668.93006942548, - 94095.47620490487, - 93595.00415169299, - 93267.54323751351, - 93146.20084769033, - 93210.71152021117, - 93446.8125940448, - 93839.37452857489, - 94293.32645674625, - 94967.02245556592, - 96117.67835019356, - 97883.79228818601 - ], - "flow:branch1_seg0:J1": [ - 7.436994157107219, - 10.419524000996379, - 14.464504074185541, - 19.879936068333887, - 26.568690241920002, - 34.40129052015915, - 43.23884932285845, - 52.1756036545508, - 60.364045748599985, - 67.46466910515002, - 72.67996358736173, - 75.39421894326978, - 75.94557602258259, - 74.63637379367258, - 71.66238590207814, - 67.79702663656795, - 63.7579813699179, - 59.832110168130384, - 56.23300441382124, - 53.04370951545333, - 50.16669840394105, - 47.32750920978502, - 44.28077320548176, - 41.075948354639195, - 37.71753427271564, - 34.19300038207421, - 30.804262897141754, - 27.757955976764183, - 24.926616410235365, - 22.281148075255423, - 19.811976787522298, - 17.12985288604405, - 13.984561184910982, - 10.512392843135935, - 6.6501238147078, - 2.4646020408377494, - -1.4560332893809058, - -4.8149919874309735, - -7.529809117353391, - -9.176581177416223, - -9.714042547259924, - -9.511792250212821, - -8.695332419331635, - -7.448460116161951, - -6.154401352850443, - -4.961073149214933, - -3.8043535028453275, - -2.6632936608794195, - -1.4909349332673347, - -0.17068052815586043, - 1.3185730088374144, - 2.8539208238727647, - 4.2349965918322106, - 5.300265169106837, - 5.8985958045629125, - 5.892927190406694, - 5.35905048498271, - 4.495995849822405, - 3.519628854454033, - 2.6809843201880557, - 2.1734813579984613, - 2.0692766851964355, - 2.2867921391735857, - 2.639228851533129, - 2.894960296935423, - 2.826970772106312, - 2.3160846905536814, - 1.371740139768391, - 0.14670489528492614, - -1.1291670259004856, - -2.2095148371510662, - -2.8496451731568704, - -2.9789173931005424, - -2.6727056405058485, - -2.0767893153343686, - -1.44456035931054, - -1.0356626470240995, - -1.0217652566762025, - -1.4460338126800278, - -2.238222166644501, - -3.2193893430973546, - -4.148440045762904, - -4.845965253470924, - -5.187206157390439, - -5.1285317229789795, - -4.772061673964366, - -4.26500311496086, - -3.738570814928069, - -3.296928025780516, - -2.9759041304182254, - -2.7294388666079104, - -2.452004469500976, - -2.0304665956395045, - -1.399331500225905, - -0.5309093421284777, - 0.5810149251579892, - 1.880257592532041, - 3.3590976065690636, - 5.155429178249147, - 7.436994157107219 - ], - "pressure:branch1_seg0:J1": [ - 97502.08436909712, - 99851.23092221214, - 103307.4460970348, - 107808.76956266847, - 113026.78047688554, - 119014.14839557321, - 125493.57642305779, - 131148.96041433408, - 136161.7616728522, - 140631.76334465484, - 143122.61300788147, - 144413.54620305033, - 145265.4756368717, - 145069.5027163677, - 144489.1861308312, - 144214.30389194112, - 144193.00442238353, - 144288.15826521834, - 144548.11418542033, - 144939.8900359055, - 145085.28668021198, - 144850.01713359382, - 144251.2933783559, - 143511.38085708278, - 142560.64822091497, - 141402.61259867199, - 140651.24064696397, - 139943.14287673356, - 138979.76611575263, - 138207.7894255174, - 137146.96678599407, - 135369.8030421252, - 133310.87515618344, - 131006.4751718092, - 128210.95715259839, - 125490.37939763811, - 123350.17573004725, - 121444.09984065007, - 119990.51736510513, - 119440.6631102136, - 119149.83819651752, - 118886.63708674055, - 118951.13981743743, - 118928.36513525413, - 118611.10007030233, - 118336.38079739023, - 118141.88323848145, - 118000.83227068039, - 118025.55148095817, - 118282.3288997889, - 118649.86431399568, - 118884.76749311939, - 118920.36554666521, - 118688.92923375595, - 118060.12949669684, - 117087.38957273876, - 115996.16351626636, - 114934.26362036327, - 114018.01193809956, - 113398.37566734024, - 113082.20821793395, - 112953.89118468779, - 112856.7328564617, - 112612.34683498398, - 112073.48169783494, - 111178.97260027891, - 109971.38963045599, - 108609.74057080605, - 107266.45856478073, - 106100.22636480331, - 105278.21576857117, - 104838.02468297383, - 104636.83624076913, - 104551.3609851007, - 104433.87335092934, - 104064.80732527623, - 103361.19253050294, - 102351.46862348235, - 101120.84107716115, - 99799.95188911812, - 98595.02206450485, - 97616.82999473557, - 96874.90414773443, - 96420.79889977057, - 96140.65116288514, - 95868.19797179863, - 95551.435406903, - 95137.47845571346, - 94618.75708966111, - 94060.90792846215, - 93564.12276836002, - 93222.92085491515, - 93074.37520951356, - 93104.88786505621, - 93305.00787425479, - 93663.00132517607, - 94092.1029157819, - 94731.9146439118, - 95819.81024297018, - 97502.08436909712 - ], - "flow:J1:branch2_seg0": [ - 4.1780007438161295, - 5.82846139823927, - 8.071686950536629, - 11.074406504513346, - 14.775179642414852, - 19.09591272197443, - 23.9530169354946, - 28.831712434298506, - 33.25969476893241, - 37.0561795890873, - 39.78049464514346, - 41.10216336299164, - 41.23153733220882, - 40.34747414490571, - 38.56892927063476, - 36.33563852292718, - 34.047686477798734, - 31.857505399407163, - 29.87499490103864, - 28.13815438187652, - 26.583128740746726, - 25.049507041594275, - 23.399156708790432, - 21.66093238240485, - 19.839147865987062, - 17.927925147445958, - 16.09938310093891, - 14.467734466553967, - 12.956554576331257, - 11.548953107724726, - 10.236623059728604, - 8.797905579215085, - 7.09624945831014, - 5.21179897823959, - 3.111044426174561, - 0.8369324098201595, - -1.2772072377300763, - -3.068311535256341, - -4.493262866301354, - -5.31821536849393, - -5.528736263757521, - -5.339418861557774, - -4.8227962234994255, - -4.0836222047915305, - -3.336827428742273, - -2.6606607644033797, - -2.0141570322670614, - -1.382436334085723, - -0.7364821173140472, - -0.009788012312438784, - 0.8089844986386068, - 1.6487648916934043, - 2.3966066414374803, - 2.9631589618132494, - 3.265078951118298, - 3.229387582938383, - 2.903010255257179, - 2.4014873469559483, - 1.847352187853149, - 1.3809444486995552, - 1.108200962825337, - 1.064898754607385, - 1.2006637717696071, - 1.4070273990647746, - 1.5524969864746325, - 1.5108186689330416, - 1.218131336114927, - 0.6843399140048404, - -0.0010068659157988784, - -0.7066820915350701, - -1.2940766250559566, - -1.6283627508257354, - -1.6745471850773417, - -1.4796499756315502, - -1.1292489035154027, - -0.7676838607443498, - -0.540153704395355, - -0.5399934062783681, - -0.7869478525974507, - -1.2373721209634112, - -1.7872413542088341, - -2.3000580241679858, - -2.676481218448683, - -2.848972671047521, - -2.7970376332462443, - -2.5816542815530967, - -2.2877298546102924, - -1.9892264055104585, - -1.7435768755228016, - -1.568824646755895, - -1.4367169287841621, - -1.2863167728577551, - -1.053881860729761, - -0.7034540045308566, - -0.2210564214221933, - 0.39543303324928814, - 1.1130524744174588, - 1.9277469374130984, - 2.918004686900601, - 4.1780007438161295 - ], - "pressure:J1:branch2_seg0": [ - 97502.08436909712, - 99851.23092221214, - 103307.4460970348, - 107808.76956266847, - 113026.78047688554, - 119014.14839557321, - 125493.57642305779, - 131148.96041433408, - 136161.7616728522, - 140631.76334465484, - 143122.61300788147, - 144413.54620305033, - 145265.4756368717, - 145069.5027163677, - 144489.1861308312, - 144214.30389194112, - 144193.00442238353, - 144288.15826521834, - 144548.11418542033, - 144939.8900359055, - 145085.28668021198, - 144850.01713359382, - 144251.2933783559, - 143511.38085708278, - 142560.64822091497, - 141402.61259867199, - 140651.24064696397, - 139943.14287673356, - 138979.76611575263, - 138207.7894255174, - 137146.96678599407, - 135369.8030421252, - 133310.87515618344, - 131006.4751718092, - 128210.95715259839, - 125490.37939763811, - 123350.17573004725, - 121444.09984065007, - 119990.51736510513, - 119440.6631102136, - 119149.83819651752, - 118886.63708674055, - 118951.13981743743, - 118928.36513525413, - 118611.10007030233, - 118336.38079739023, - 118141.88323848145, - 118000.83227068039, - 118025.55148095817, - 118282.3288997889, - 118649.86431399568, - 118884.76749311939, - 118920.36554666521, - 118688.92923375595, - 118060.12949669684, - 117087.38957273876, - 115996.16351626636, - 114934.26362036327, - 114018.01193809956, - 113398.37566734024, - 113082.20821793395, - 112953.89118468779, - 112856.7328564617, - 112612.34683498398, - 112073.48169783494, - 111178.97260027891, - 109971.38963045599, - 108609.74057080605, - 107266.45856478073, - 106100.22636480331, - 105278.21576857117, - 104838.02468297383, - 104636.83624076913, - 104551.3609851007, - 104433.87335092934, - 104064.80732527623, - 103361.19253050294, - 102351.46862348235, - 101120.84107716115, - 99799.95188911812, - 98595.02206450485, - 97616.82999473557, - 96874.90414773443, - 96420.79889977057, - 96140.65116288514, - 95868.19797179863, - 95551.435406903, - 95137.47845571346, - 94618.75708966111, - 94060.90792846215, - 93564.12276836002, - 93222.92085491515, - 93074.37520951356, - 93104.88786505621, - 93305.00787425479, - 93663.00132517607, - 94092.1029157819, - 94731.9146439118, - 95819.81024297018, - 97502.08436909712 - ], - "flow:J1:branch7_seg0": [ - 3.25899341329109, - 4.59106260275711, - 6.392817123648911, - 8.805529563820544, - 11.793510599505147, - 15.305377798184715, - 19.285832387363836, - 23.343891220252292, - 27.10435097966757, - 30.408489516062712, - 32.89946894221824, - 34.292055580278145, - 34.714038690373755, - 34.28889964876687, - 33.09345663144339, - 31.46138811364077, - 29.71029489211915, - 27.97460476872321, - 26.358009512782594, - 24.905555133576815, - 23.58356966319431, - 22.278002168190742, - 20.881616496691343, - 19.41501597223434, - 17.878386406728573, - 16.26507523462825, - 14.704879796202844, - 13.290221510210209, - 11.970061833904113, - 10.732194967530697, - 9.575353727793697, - 8.331947306828965, - 6.888311726600839, - 5.300593864896346, - 3.5390793885332403, - 1.6276696310175895, - -0.1788260516508297, - -1.746680452174631, - -3.036546251052039, - -3.8583658089222928, - -4.1853062835024035, - -4.1723733886550445, - -3.872536195832206, - -3.364837911370421, - -2.8175739241081694, - -2.3004123848115534, - -1.7901964705782656, - -1.2808573267936971, - -0.7544528159532877, - -0.16089251584342162, - 0.5095885101988079, - 1.2051559321793603, - 1.838389950394731, - 2.3371062072935875, - 2.6335168534446147, - 2.6635396074683118, - 2.45604022972553, - 2.0945085028664563, - 1.6722766666008841, - 1.3000398714885002, - 1.0652803951731247, - 1.0043779305890503, - 1.086128367403978, - 1.232201452468354, - 1.3424633104607908, - 1.3161521031732706, - 1.0979533544387539, - 0.6874002257635508, - 0.14771176120072504, - -0.4224849343654153, - -0.9154382120951092, - -1.2212824223311352, - -1.3043702080232003, - -1.193055664874298, - -0.9475404118189654, - -0.6768764985661901, - -0.4955089426287444, - -0.4817718503978342, - -0.659085960082577, - -1.0008500456810896, - -1.4321479888885205, - -1.8483820215949172, - -2.169484035022242, - -2.3382334863429177, - -2.331494089732735, - -2.1904073924112692, - -1.977273260350568, - -1.7493444094176112, - -1.5533511502577138, - -1.4070794836623302, - -1.292721937823748, - -1.1656876966432204, - -0.9765847349097436, - -0.6958774956950485, - -0.3098529207062844, - 0.18558189190870142, - 0.7672051181145829, - 1.4313506691559648, - 2.237424491348547, - 3.25899341329109 - ], - "pressure:J1:branch7_seg0": [ - 97502.08436909712, - 99851.23092221214, - 103307.4460970348, - 107808.76956266847, - 113026.78047688554, - 119014.14839557321, - 125493.57642305779, - 131148.96041433408, - 136161.7616728522, - 140631.76334465484, - 143122.61300788147, - 144413.54620305033, - 145265.4756368717, - 145069.5027163677, - 144489.1861308312, - 144214.30389194112, - 144193.00442238353, - 144288.15826521834, - 144548.11418542033, - 144939.8900359055, - 145085.28668021198, - 144850.01713359382, - 144251.2933783559, - 143511.38085708278, - 142560.64822091497, - 141402.61259867199, - 140651.24064696397, - 139943.14287673356, - 138979.76611575263, - 138207.7894255174, - 137146.96678599407, - 135369.8030421252, - 133310.87515618344, - 131006.4751718092, - 128210.95715259839, - 125490.37939763811, - 123350.17573004725, - 121444.09984065007, - 119990.51736510513, - 119440.6631102136, - 119149.83819651752, - 118886.63708674055, - 118951.13981743743, - 118928.36513525413, - 118611.10007030233, - 118336.38079739023, - 118141.88323848145, - 118000.83227068039, - 118025.55148095817, - 118282.3288997889, - 118649.86431399568, - 118884.76749311939, - 118920.36554666521, - 118688.92923375595, - 118060.12949669684, - 117087.38957273876, - 115996.16351626636, - 114934.26362036327, - 114018.01193809956, - 113398.37566734024, - 113082.20821793395, - 112953.89118468779, - 112856.7328564617, - 112612.34683498398, - 112073.48169783494, - 111178.97260027891, - 109971.38963045599, - 108609.74057080605, - 107266.45856478073, - 106100.22636480331, - 105278.21576857117, - 104838.02468297383, - 104636.83624076913, - 104551.3609851007, - 104433.87335092934, - 104064.80732527623, - 103361.19253050294, - 102351.46862348235, - 101120.84107716115, - 99799.95188911812, - 98595.02206450485, - 97616.82999473557, - 96874.90414773443, - 96420.79889977057, - 96140.65116288514, - 95868.19797179863, - 95551.435406903, - 95137.47845571346, - 94618.75708966111, - 94060.90792846215, - 93564.12276836002, - 93222.92085491515, - 93074.37520951356, - 93104.88786505621, - 93305.00787425479, - 93663.00132517607, - 94092.1029157819, - 94731.9146439118, - 95819.81024297018, - 97502.08436909712 - ], - "flow:branch3_seg0:J2": [ - 7.587510785038859, - 12.374448120080912, - 18.63584327570089, - 26.818302798638168, - 37.01219700428036, - 49.2126016444846, - 63.403524463333206, - 78.42855305527665, - 93.92550325169027, - 108.94436444902416, - 122.16873972216945, - 133.54549662332116, - 142.11011029315813, - 148.12695978644433, - 151.75895928961143, - 153.1564159699642, - 153.33049899973506, - 152.19452427636878, - 150.4747189523462, - 148.1505950475925, - 145.22298740364153, - 141.8431434705973, - 137.49451507046717, - 132.6557889348219, - 127.02726310259388, - 120.79994089785679, - 114.47261295968956, - 107.80049809459861, - 101.25345523950067, - 94.68214615913439, - 87.93249241923414, - 80.97433272741515, - 73.42791299905849, - 65.37136564894162, - 56.69605667062263, - 47.59918972538373, - 38.5131541365938, - 29.72679601415554, - 21.618169974524612, - 14.643206996075522, - 8.873013632971505, - 4.28705533473904, - 0.8975509374103066, - -1.6320980222934285, - -3.409716547380607, - -4.655402537918657, - -5.445688471563984, - -5.709568421076952, - -5.534650532334508, - -4.7629290103949575, - -3.4958558090960894, - -1.8565857481312125, - 0.0012627674633254584, - 1.7358220163155562, - 3.2183542401950804, - 4.171300562704519, - 4.594558753612042, - 4.596234678457958, - 4.279783758586908, - 3.977837913480906, - 3.787551359859114, - 3.9058020717844917, - 4.285551809063018, - 4.777308361063235, - 5.22403973821736, - 5.33262855885417, - 5.000763882227642, - 4.1523782309160335, - 2.8714829888557643, - 1.3820122416332221, - -0.09468832447016394, - -1.2772154461292968, - -2.0290894297362696, - -2.343928524433441, - -2.2768567078770805, - -2.0823834924004117, - -1.956981854419757, - -2.1300122768040337, - -2.709942147202188, - -3.6718364836365174, - -4.9122735070512, - -6.216306808707785, - -7.4114331474685, - -8.297332844076694, - -8.832661886635137, - -9.014965758783454, - -8.941206621010103, - -8.733039037344621, - -8.468984366731563, - -8.216644069429845, - -7.933273754242946, - -7.551839332379464, - -6.959373512771336, - -6.080251901074453, - -4.862072870516301, - -3.2582273940814916, - -1.3246423117793666, - 1.0356444554116964, - 3.9532879820389777, - 7.587510785038859 - ], - "pressure:branch3_seg0:J2": [ - 97548.24032821732, - 99919.79398510675, - 103402.64292525622, - 107958.12454584338, - 113144.6249263531, - 119122.19165332863, - 125543.48282004212, - 130997.62125591442, - 135847.81253932428, - 140087.88951588448, - 142316.95578690825, - 143374.82333961411, - 144060.01392230004, - 143792.33202648864, - 143125.1624431328, - 142926.09898868512, - 142997.16070491468, - 143181.22753503433, - 143592.99702860747, - 144059.85360895944, - 144329.0653073986, - 144144.64172855878, - 143595.30403995657, - 142952.85147674903, - 142030.9996906741, - 140965.77401941232, - 140303.00036950182, - 139677.64701092505, - 138793.90587994692, - 138068.489240698, - 137082.90261144456, - 135306.49674971166, - 133252.71837275175, - 131000.54983128383, - 128205.2544151426, - 125515.69623482919, - 123467.84556222755, - 121619.85600653854, - 120222.83904893626, - 119771.48367858557, - 119513.46555007022, - 119258.3770089073, - 119329.30405988752, - 119273.2008971731, - 118907.8052777815, - 118576.63549602764, - 118352.16783356776, - 118170.40959169147, - 118166.6060582169, - 118413.01654887055, - 118754.01093005673, - 118968.96281171146, - 118958.58531990835, - 118686.07585362143, - 118016.86896146707, - 116988.26962871796, - 115884.24348626086, - 114810.5520614725, - 113910.01198343423, - 113322.36152389884, - 113037.04122622657, - 112949.27391413672, - 112861.5646234062, - 112623.06180263722, - 112066.11734404121, - 111142.50406133725, - 109913.30667462297, - 108529.21328885322, - 107192.6281617059, - 106043.61004131884, - 105251.58721604644, - 104861.13459553481, - 104689.16581343378, - 104627.89335526324, - 104515.66075921775, - 104127.24853624904, - 103396.80863704013, - 102348.29335450428, - 101094.09299922502, - 99755.584006936, - 98555.61275955991, - 97598.52196186634, - 96881.52499226053, - 96459.9723736755, - 96202.77925933604, - 95940.50750972067, - 95619.01939328114, - 95193.72878067475, - 94656.81698609043, - 94083.5806077978, - 93578.72635592973, - 93237.08590671881, - 93097.11765798375, - 93132.78710790754, - 93340.95742507577, - 93702.66183263078, - 94123.54917523697, - 94763.26769991429, - 95856.20863367623, - 97548.24032821732 - ], - "flow:J2:branch4_seg0": [ - 6.516136245182161, - 10.912654453094067, - 16.6323818564796, - 24.09939660574454, - 33.446838335608305, - 44.68993518200534, - 57.84017854607301, - 71.89070778240128, - 86.56251401328512, - 100.90642328088134, - 113.71558011764756, - 124.96401082411256, - 133.5776725855873, - 139.79375418669326, - 143.74500466353186, - 145.46470701261296, - 145.90777696156857, - 144.99349158914976, - 143.4498524320351, - 141.2663456412183, - 138.47475038610924, - 135.2733722648087, - 131.1629736913887, - 126.59648036585955, - 121.26884007982216, - 115.3674757853671, - 109.33741709407063, - 102.92045160885463, - 96.6268244082001, - 90.30030300401268, - 83.79872293276777, - 77.16041924774174, - 70.00678476200935, - 62.38116927064215, - 54.19228784375566, - 45.60293250070128, - 36.9505274957692, - 28.51807863755253, - 20.685144992518918, - 13.846690533311309, - 8.105452178876416, - 3.508351474702199, - 0.06700755359274367, - -2.5313764938097525, - -4.347023326545565, - -5.608638659517528, - -6.418671803357157, - -6.710204819982927, - -6.581223136732428, - -5.8892495793712225, - -4.72933134247333, - -3.1961344730102086, - -1.4151118927582522, - 0.28567486032888684, - 1.7942938694044266, - 2.841404933217492, - 3.3998844194497138, - 3.5463788278927297, - 3.3577981084225614, - 3.140442751523061, - 2.978790623184405, - 3.0772162456859045, - 3.413596804715674, - 3.8688580509759247, - 4.316113438128302, - 4.482486014773988, - 4.267476710550527, - 3.5784157674368644, - 2.468706287760671, - 1.1314034070912267, - -0.24170578216626512, - -1.3900223698197032, - -2.1663946558079705, - -2.541981359983542, - -2.5463461535613074, - -2.398551739515005, - -2.268740511937472, - -2.378742573090545, - -2.8467983193169797, - -3.668177261815284, - -4.770390008456021, - -5.967754657364791, - -7.100730678936304, - -7.975468126004279, - -8.543130996421677, - -8.7768964090478, - -8.753608081733095, - -8.582366983497312, - -8.335322001210512, - -8.084718152478281, - -7.801647181791496, - -7.4367337385755645, - -6.889619818334184, - -6.087016882745878, - -4.9749497563138485, - -3.5038297061555252, - -1.719220069988569, - 0.4712026535866301, - 3.170407683649061, - 6.516136245182161 - ], - "pressure:J2:branch4_seg0": [ - 97548.24032821732, - 99919.79398510675, - 103402.64292525622, - 107958.12454584338, - 113144.6249263531, - 119122.19165332863, - 125543.48282004212, - 130997.62125591442, - 135847.81253932428, - 140087.88951588448, - 142316.95578690825, - 143374.82333961411, - 144060.01392230004, - 143792.33202648864, - 143125.1624431328, - 142926.09898868512, - 142997.16070491468, - 143181.22753503433, - 143592.99702860747, - 144059.85360895944, - 144329.0653073986, - 144144.64172855878, - 143595.30403995657, - 142952.85147674903, - 142030.9996906741, - 140965.77401941232, - 140303.00036950182, - 139677.64701092505, - 138793.90587994692, - 138068.489240698, - 137082.90261144456, - 135306.49674971166, - 133252.71837275175, - 131000.54983128383, - 128205.2544151426, - 125515.69623482919, - 123467.84556222755, - 121619.85600653854, - 120222.83904893626, - 119771.48367858557, - 119513.46555007022, - 119258.3770089073, - 119329.30405988752, - 119273.2008971731, - 118907.8052777815, - 118576.63549602764, - 118352.16783356776, - 118170.40959169147, - 118166.6060582169, - 118413.01654887055, - 118754.01093005673, - 118968.96281171146, - 118958.58531990835, - 118686.07585362143, - 118016.86896146707, - 116988.26962871796, - 115884.24348626086, - 114810.5520614725, - 113910.01198343423, - 113322.36152389884, - 113037.04122622657, - 112949.27391413672, - 112861.5646234062, - 112623.06180263722, - 112066.11734404121, - 111142.50406133725, - 109913.30667462297, - 108529.21328885322, - 107192.6281617059, - 106043.61004131884, - 105251.58721604644, - 104861.13459553481, - 104689.16581343378, - 104627.89335526324, - 104515.66075921775, - 104127.24853624904, - 103396.80863704013, - 102348.29335450428, - 101094.09299922502, - 99755.584006936, - 98555.61275955991, - 97598.52196186634, - 96881.52499226053, - 96459.9723736755, - 96202.77925933604, - 95940.50750972067, - 95619.01939328114, - 95193.72878067475, - 94656.81698609043, - 94083.5806077978, - 93578.72635592973, - 93237.08590671881, - 93097.11765798375, - 93132.78710790754, - 93340.95742507577, - 93702.66183263078, - 94123.54917523697, - 94763.26769991429, - 95856.20863367623, - 97548.24032821732 - ], - "flow:J2:branch6_seg0": [ - 1.0713745398566967, - 1.461793666986845, - 2.0034614192212863, - 2.7189061928936265, - 3.5653586686720597, - 4.522666462479256, - 5.563345917260203, - 6.537845272875377, - 7.362989238405152, - 8.037941168142808, - 8.453159604521865, - 8.581485799208549, - 8.53243770757085, - 8.333205599751055, - 8.0139546260796, - 7.691708957351205, - 7.4227220381665315, - 7.201032687219002, - 7.024866520311081, - 6.884249406374167, - 6.748237017532301, - 6.569771205788644, - 6.331541379078519, - 6.059308568962376, - 5.758423022771722, - 5.432465112489688, - 5.135195865618932, - 4.880046485743968, - 4.626630831300583, - 4.381843155121707, - 4.133769486466337, - 3.8139134796733885, - 3.4211282370491247, - 2.99019637829948, - 2.5037688268669647, - 1.9962572246824428, - 1.5626266408245943, - 1.2087173766029995, - 0.9330249820056878, - 0.7965164627642136, - 0.7675614540950905, - 0.7787038600368403, - 0.8305433838175625, - 0.899278471516324, - 0.9373067791649576, - 0.9532361215988726, - 0.9729833317931718, - 1.0006363989059766, - 1.0465726043979187, - 1.1263205689762645, - 1.2334755333772403, - 1.3395487248789963, - 1.4163746602215777, - 1.4501471559866694, - 1.4240603707906534, - 1.329895629487026, - 1.1946743341623292, - 1.0498558505652287, - 0.9219856501643477, - 0.8373951619578446, - 0.8087607366747089, - 0.828585826098587, - 0.8719550043473432, - 0.9084503100873104, - 0.9079263000890583, - 0.8501425440801811, - 0.7332871716771158, - 0.5739624634791683, - 0.402776701095092, - 0.2506088345419959, - 0.14701745769610122, - 0.11280692369040628, - 0.13730522607170056, - 0.19805283555010153, - 0.26948944568422667, - 0.3161682471145934, - 0.3117586575177149, - 0.2487302962865123, - 0.13685617211479253, - -0.0036592218212329114, - -0.1418834985951785, - -0.24855215134299202, - -0.31070246853219635, - -0.32186471807241507, - -0.289530890213462, - -0.23806934973565572, - -0.18759853927700781, - -0.1506720538473088, - -0.1336623655210511, - -0.13192591695156622, - -0.1316265724514488, - -0.11510559380389687, - -0.0697536944371525, - 0.006764981671425028, - 0.11287688579754877, - 0.24560231207403352, - 0.3945777582092024, - 0.5644418018250665, - 0.7828802983899148, - 1.0713745398566967 - ], - "pressure:J2:branch6_seg0": [ - 97548.24032821732, - 99919.79398510675, - 103402.64292525622, - 107958.12454584338, - 113144.6249263531, - 119122.19165332863, - 125543.48282004212, - 130997.62125591442, - 135847.81253932428, - 140087.88951588448, - 142316.95578690825, - 143374.82333961411, - 144060.01392230004, - 143792.33202648864, - 143125.1624431328, - 142926.09898868512, - 142997.16070491468, - 143181.22753503433, - 143592.99702860747, - 144059.85360895944, - 144329.0653073986, - 144144.64172855878, - 143595.30403995657, - 142952.85147674903, - 142030.9996906741, - 140965.77401941232, - 140303.00036950182, - 139677.64701092505, - 138793.90587994692, - 138068.489240698, - 137082.90261144456, - 135306.49674971166, - 133252.71837275175, - 131000.54983128383, - 128205.2544151426, - 125515.69623482919, - 123467.84556222755, - 121619.85600653854, - 120222.83904893626, - 119771.48367858557, - 119513.46555007022, - 119258.3770089073, - 119329.30405988752, - 119273.2008971731, - 118907.8052777815, - 118576.63549602764, - 118352.16783356776, - 118170.40959169147, - 118166.6060582169, - 118413.01654887055, - 118754.01093005673, - 118968.96281171146, - 118958.58531990835, - 118686.07585362143, - 118016.86896146707, - 116988.26962871796, - 115884.24348626086, - 114810.5520614725, - 113910.01198343423, - 113322.36152389884, - 113037.04122622657, - 112949.27391413672, - 112861.5646234062, - 112623.06180263722, - 112066.11734404121, - 111142.50406133725, - 109913.30667462297, - 108529.21328885322, - 107192.6281617059, - 106043.61004131884, - 105251.58721604644, - 104861.13459553481, - 104689.16581343378, - 104627.89335526324, - 104515.66075921775, - 104127.24853624904, - 103396.80863704013, - 102348.29335450428, - 101094.09299922502, - 99755.584006936, - 98555.61275955991, - 97598.52196186634, - 96881.52499226053, - 96459.9723736755, - 96202.77925933604, - 95940.50750972067, - 95619.01939328114, - 95193.72878067475, - 94656.81698609043, - 94083.5806077978, - 93578.72635592973, - 93237.08590671881, - 93097.11765798375, - 93132.78710790754, - 93340.95742507577, - 93702.66183263078, - 94123.54917523697, - 94763.26769991429, - 95856.20863367623, - 97548.24032821732 - ], - "flow:branch2_seg0:J3": [ - 4.152958243035408, - 5.7906638522809075, - 8.016013698575849, - 11.00973284395512, - 14.700179898699615, - 19.010363501713794, - 23.87379200093419, - 28.761448900572095, - 33.19611790389776, - 37.0120210399849, - 39.75811298736527, - 41.089407578152695, - 41.22558415575764, - 40.3548573069292, - 38.57487926315535, - 36.335514710382284, - 34.047183227635635, - 31.853253174119978, - 29.870365618567895, - 28.133242193907858, - 26.58237154908731, - 25.056416895768567, - 23.40627291474439, - 21.67219033401513, - 19.853293534513483, - 17.93879783885881, - 16.10815499610408, - 14.47732361645885, - 12.967669006540161, - 11.559014069276671, - 10.253911262175734, - 8.825812179385645, - 7.1236545644452685, - 5.245093204795016, - 3.152212498628501, - 0.8685453227605765, - -1.2510853767598307, - -3.0428130193474012, - -4.480836341539729, - -5.3139495672200905, - -5.523801883526647, - -5.338559661096326, - -4.823711571434714, - -4.0805895305210775, - -3.331679096141958, - -2.6573110457071967, - -2.011535716581927, - -1.3806828660418744, - -0.738423538013204, - -0.013795693653576028, - 0.8044494066826028, - 1.6471512318818378, - 2.3984020699473185, - 2.9682145767149635, - 3.276807732467579, - 3.243636057828356, - 2.917638006470206, - 2.4152763123686363, - 1.8575995554775937, - 1.3872172406322505, - 1.110532314813268, - 1.0661133334957755, - 1.20286636319219, - 1.4120984116118052, - 1.56256912338668, - 1.5250352550986932, - 1.23608985727736, - 0.702816122373056, - 0.01584315432360354, - -0.6924253134486276, - -1.2860052371438477, - -1.6244228493110577, - -1.6726418344619738, - -1.4787574223481175, - -1.1260504329305603, - -0.7603077172216592, - -0.5282079192261764, - -0.5244996403879215, - -0.7696007464105089, - -1.2200792088764993, - -1.7726139377652275, - -2.288624371976769, - -2.6685059482670823, - -2.844531827945502, - -2.7934589220041963, - -2.577699036194431, - -2.282665576359719, - -1.9826453482407593, - -1.7360254485740418, - -1.5613474799328713, - -1.4307714017528061, - -1.2829869334909156, - -1.05288269680179, - -0.7049373492981216, - -0.22464832375770735, - 0.3907081707345406, - 1.1066102306457881, - 1.9169983918521274, - 2.9013459424312322, - 4.152958243035408 - ], - "pressure:branch2_seg0:J3": [ - 95730.66820914941, - 97471.57263901344, - 100044.50753914671, - 103563.22800103329, - 107894.9381218777, - 113047.60525675488, - 118909.11650507593, - 124702.29828612671, - 130215.57875262968, - 135370.68297795, - 139333.02409944846, - 142142.8266773768, - 144146.91189181453, - 145169.85443962057, - 145468.25716735027, - 145521.41593579622, - 145529.1454867596, - 145520.9015891519, - 145588.69577733096, - 145750.5911172942, - 145842.6458337706, - 145730.62574551336, - 145332.83844189282, - 144752.81575496632, - 143959.56090875666, - 142943.58748619255, - 142036.75841467155, - 141174.66967426654, - 140209.1833448789, - 139302.75700907552, - 138282.34302076334, - 136860.44472778757, - 135105.35314766844, - 133076.81584665316, - 130651.57672347444, - 128043.54991984951, - 125643.29380770259, - 123424.94015926313, - 121497.92209802296, - 120197.79257342538, - 119323.44555634374, - 118681.98561726058, - 118368.13804444348, - 118182.62895320353, - 117927.9052309879, - 117683.37875175625, - 117486.54896281176, - 117333.75972853963, - 117280.97104229599, - 117395.70142805885, - 117642.67326611343, - 117894.78034772819, - 118060.43502505061, - 118056.94865259672, - 117781.28970180034, - 117192.3978753333, - 116388.05504733873, - 115477.06031270379, - 114565.47756994731, - 113790.77187981465, - 113221.6484770503, - 112847.21213781337, - 112589.6383781674, - 112327.61928390992, - 111932.7906030149, - 111303.64554975777, - 110410.59401379526, - 109304.67122089033, - 108092.30011678055, - 106902.67874645215, - 105876.70198506031, - 105116.64656050947, - 104601.48754469222, - 104270.82401155421, - 104032.3409166522, - 103726.30057972542, - 103236.29224262059, - 102511.38356439405, - 101560.41167627176, - 100445.95484058931, - 99295.65279327729, - 98227.22106056564, - 97304.29578749562, - 96592.11777938891, - 96071.90161251814, - 95655.17309916276, - 95280.68380028292, - 94888.74120225581, - 94442.52932175685, - 93953.21535080807, - 93470.87280606347, - 93064.5132344598, - 92787.09088326053, - 92657.68446003733, - 92687.13083941273, - 92878.43104125772, - 93185.35836528587, - 93660.46204467834, - 94443.87389545207, - 95730.66820914941 - ], - "flow:J3:branch2_seg1": [ - 4.152958243035408, - 5.7906638522809075, - 8.016013698575849, - 11.00973284395512, - 14.700179898699615, - 19.010363501713794, - 23.87379200093419, - 28.761448900572095, - 33.19611790389776, - 37.0120210399849, - 39.75811298736527, - 41.089407578152695, - 41.22558415575764, - 40.3548573069292, - 38.57487926315535, - 36.335514710382284, - 34.047183227635635, - 31.853253174119978, - 29.870365618567895, - 28.133242193907858, - 26.58237154908731, - 25.056416895768567, - 23.40627291474439, - 21.67219033401513, - 19.853293534513483, - 17.93879783885881, - 16.10815499610408, - 14.47732361645885, - 12.967669006540161, - 11.559014069276671, - 10.253911262175734, - 8.825812179385645, - 7.1236545644452685, - 5.245093204795016, - 3.152212498628501, - 0.8685453227605765, - -1.2510853767598307, - -3.0428130193474012, - -4.480836341539729, - -5.3139495672200905, - -5.523801883526647, - -5.338559661096326, - -4.823711571434714, - -4.0805895305210775, - -3.331679096141958, - -2.6573110457071967, - -2.011535716581927, - -1.3806828660418744, - -0.738423538013204, - -0.013795693653576028, - 0.8044494066826028, - 1.6471512318818378, - 2.3984020699473185, - 2.9682145767149635, - 3.276807732467579, - 3.243636057828356, - 2.917638006470206, - 2.4152763123686363, - 1.8575995554775937, - 1.3872172406322505, - 1.110532314813268, - 1.0661133334957755, - 1.20286636319219, - 1.4120984116118052, - 1.56256912338668, - 1.5250352550986932, - 1.23608985727736, - 0.702816122373056, - 0.01584315432360354, - -0.6924253134486276, - -1.2860052371438477, - -1.6244228493110577, - -1.6726418344619738, - -1.4787574223481175, - -1.1260504329305603, - -0.7603077172216592, - -0.5282079192261764, - -0.5244996403879215, - -0.7696007464105089, - -1.2200792088764993, - -1.7726139377652275, - -2.288624371976769, - -2.6685059482670823, - -2.844531827945502, - -2.7934589220041963, - -2.577699036194431, - -2.282665576359719, - -1.9826453482407593, - -1.7360254485740418, - -1.5613474799328713, - -1.4307714017528061, - -1.2829869334909156, - -1.05288269680179, - -0.7049373492981216, - -0.22464832375770735, - 0.3907081707345406, - 1.1066102306457881, - 1.9169983918521274, - 2.9013459424312322, - 4.152958243035408 - ], - "pressure:J3:branch2_seg1": [ - 95730.66820914941, - 97471.57263901344, - 100044.50753914671, - 103563.22800103329, - 107894.9381218777, - 113047.60525675488, - 118909.11650507593, - 124702.29828612671, - 130215.57875262968, - 135370.68297795, - 139333.02409944846, - 142142.8266773768, - 144146.91189181453, - 145169.85443962057, - 145468.25716735027, - 145521.41593579622, - 145529.1454867596, - 145520.9015891519, - 145588.69577733096, - 145750.5911172942, - 145842.6458337706, - 145730.62574551336, - 145332.83844189282, - 144752.81575496632, - 143959.56090875666, - 142943.58748619255, - 142036.75841467155, - 141174.66967426654, - 140209.1833448789, - 139302.75700907552, - 138282.34302076334, - 136860.44472778757, - 135105.35314766844, - 133076.81584665316, - 130651.57672347444, - 128043.54991984951, - 125643.29380770259, - 123424.94015926313, - 121497.92209802296, - 120197.79257342538, - 119323.44555634374, - 118681.98561726058, - 118368.13804444348, - 118182.62895320353, - 117927.9052309879, - 117683.37875175625, - 117486.54896281176, - 117333.75972853963, - 117280.97104229599, - 117395.70142805885, - 117642.67326611343, - 117894.78034772819, - 118060.43502505061, - 118056.94865259672, - 117781.28970180034, - 117192.3978753333, - 116388.05504733873, - 115477.06031270379, - 114565.47756994731, - 113790.77187981465, - 113221.6484770503, - 112847.21213781337, - 112589.6383781674, - 112327.61928390992, - 111932.7906030149, - 111303.64554975777, - 110410.59401379526, - 109304.67122089033, - 108092.30011678055, - 106902.67874645215, - 105876.70198506031, - 105116.64656050947, - 104601.48754469222, - 104270.82401155421, - 104032.3409166522, - 103726.30057972542, - 103236.29224262059, - 102511.38356439405, - 101560.41167627176, - 100445.95484058931, - 99295.65279327729, - 98227.22106056564, - 97304.29578749562, - 96592.11777938891, - 96071.90161251814, - 95655.17309916276, - 95280.68380028292, - 94888.74120225581, - 94442.52932175685, - 93953.21535080807, - 93470.87280606347, - 93064.5132344598, - 92787.09088326053, - 92657.68446003733, - 92687.13083941273, - 92878.43104125772, - 93185.35836528587, - 93660.46204467834, - 94443.87389545207, - 95730.66820914941 - ], - "flow:branch2_seg1:J4": [ - 4.151050321386932, - 5.7878100709221885, - 8.01179881020946, - 11.004407954909949, - 14.693712608577911, - 19.0027942194948, - 23.86584655565275, - 28.753743680508563, - 33.18884146000656, - 37.00578211367823, - 39.75360858464667, - 41.08621172755604, - 41.223455900240594, - 40.35407006829424, - 38.574736247265626, - 36.33544200375976, - 34.047224558342606, - 31.85317200664739, - 29.870230136351648, - 28.13301442882348, - 26.582330843054212, - 25.0568085635674, - 23.40688237358482, - 21.673133619043575, - 19.854527290427544, - 17.940080404821025, - 16.109331664926675, - 14.478493228859893, - 12.968955248968363, - 11.56022585166253, - 10.255472694150189, - 8.828075050931389, - 7.126163836446219, - 5.248084006745922, - 3.155837733850503, - 0.8719709306991456, - -1.2479598524245479, - -3.0398587210119423, - -4.478626545346997, - -5.312537505047529, - -5.522744621826279, - -5.337931940625212, - -4.823419802171891, - -4.080299385259421, - -3.3312956991651443, - -2.6570083487214085, - -2.0112885353036325, - -1.3805060361047377, - -0.7384625580861126, - -0.014044074715072222, - 0.8040672326176456, - 1.6468541961170509, - 2.3982890620948463, - 2.9683543391561473, - 3.27741939320801, - 3.2446060075426315, - 2.918820897172165, - 2.4165528883209046, - 1.8587645769223797, - 1.3881455136339713, - 1.1111512466531128, - 1.0665235049778672, - 1.2031989120830757, - 1.4125152202325795, - 1.5632644751173517, - 1.5260623537408544, - 1.2374815545367464, - 0.7044167721887017, - 0.017496576570936003, - -0.6908564769082685, - -1.2847891325769658, - -1.62356335482153, - -1.6720762922486971, - -1.4784010564253318, - -1.125708379791124, - -0.7597834130815008, - -0.5273765276448414, - -0.5233511335843368, - -0.7681816575673214, - -1.2185127564720433, - -1.771088186984737, - -2.2872614469137833, - -2.667385561519639, - -2.8437094690872886, - -2.7928411726433846, - -2.577171943110213, - -2.2821525692198685, - -1.9820738483269171, - -1.735381227265299, - -1.5606696563159255, - -1.4301483548645864, - -1.2825139586257532, - -1.0525960297954255, - -0.7048669691105606, - -0.22479387081584948, - 0.390382534934592, - 1.1061077604679002, - 1.9161896285346462, - 2.9000726902190723, - 4.151050321386932 - ], - "pressure:branch2_seg1:J4": [ - 95444.26284197022, - 97086.50179666001, - 99516.48994182014, - 102875.01981092975, - 107060.83791922806, - 112074.83277105293, - 117830.82069192875, - 123638.11847352116, - 129223.71255538674, - 134480.88178306515, - 138671.9581548201, - 141720.17028976616, - 143906.35671399912, - 145123.70501235468, - 145564.24732277318, - 145672.95151594764, - 145688.8705824431, - 145667.71095252427, - 145708.1493714442, - 145836.28759055297, - 145922.28021183115, - 145831.98671695174, - 145468.6339694991, - 144916.56529943907, - 144151.01090652015, - 143160.58170150092, - 142231.8908445511, - 141347.87255347345, - 140384.4321615423, - 139458.75015616353, - 138446.60402812305, - 137083.12072498308, - 135378.7060567378, - 133396.57546389487, - 131033.1027561112, - 128446.4831761471, - 126008.21159183356, - 123743.00641379204, - 121743.38208808353, - 120325.70486363831, - 119359.17239212603, - 118657.60836939061, - 118283.0272915018, - 118070.5622065703, - 117824.6516532887, - 117583.91157206331, - 117385.75733548749, - 117230.17400676005, - 117164.2178127494, - 117255.36342591363, - 117481.99138780794, - 117735.53976404203, - 117920.62095628586, - 117952.37212311359, - 117732.09453024683, - 117204.08000646449, - 116445.64396390217, - 115559.34337175565, - 114649.38959162179, - 113850.85913009687, - 113242.12158248184, - 112828.7490220001, - 112545.54228231974, - 112280.3650967571, - 111908.06792185557, - 111320.98543858292, - 110478.15233656534, - 109413.55436624188, - 108222.96499592478, - 107030.7480867264, - 105973.41773429395, - 105163.22833220946, - 104598.41117431267, - 104228.61099837112, - 103970.39338351772, - 103673.73254639922, - 103217.18088371071, - 102537.336523882, - 101631.03128577334, - 100549.95602649832, - 99409.16991325964, - 98327.25983658098, - 97376.27062192606, - 96623.51595462364, - 96065.16399542223, - 95625.26269672244, - 95241.16070812539, - 94852.24347343414, - 94417.15106502475, - 93938.43735734526, - 93458.21456702908, - 93041.35499897109, - 92743.18804870633, - 92587.97120327855, - 92589.67336074747, - 92753.67214470118, - 93040.1965571621, - 93488.08470960746, - 94221.82164946492, - 95444.26284197022 - ], - "flow:J4:branch2_seg2": [ - 4.151050321386932, - 5.7878100709221885, - 8.01179881020946, - 11.004407954909949, - 14.693712608577911, - 19.0027942194948, - 23.86584655565275, - 28.753743680508563, - 33.18884146000656, - 37.00578211367823, - 39.75360858464667, - 41.08621172755604, - 41.223455900240594, - 40.35407006829424, - 38.574736247265626, - 36.33544200375976, - 34.047224558342606, - 31.85317200664739, - 29.870230136351648, - 28.13301442882348, - 26.582330843054212, - 25.0568085635674, - 23.40688237358482, - 21.673133619043575, - 19.854527290427544, - 17.940080404821025, - 16.109331664926675, - 14.478493228859893, - 12.968955248968363, - 11.56022585166253, - 10.255472694150189, - 8.828075050931389, - 7.126163836446219, - 5.248084006745922, - 3.155837733850503, - 0.8719709306991456, - -1.2479598524245479, - -3.0398587210119423, - -4.478626545346997, - -5.312537505047529, - -5.522744621826279, - -5.337931940625212, - -4.823419802171891, - -4.080299385259421, - -3.3312956991651443, - -2.6570083487214085, - -2.0112885353036325, - -1.3805060361047377, - -0.7384625580861126, - -0.014044074715072222, - 0.8040672326176456, - 1.6468541961170509, - 2.3982890620948463, - 2.9683543391561473, - 3.27741939320801, - 3.2446060075426315, - 2.918820897172165, - 2.4165528883209046, - 1.8587645769223797, - 1.3881455136339713, - 1.1111512466531128, - 1.0665235049778672, - 1.2031989120830757, - 1.4125152202325795, - 1.5632644751173517, - 1.5260623537408544, - 1.2374815545367464, - 0.7044167721887017, - 0.017496576570936003, - -0.6908564769082685, - -1.2847891325769658, - -1.62356335482153, - -1.6720762922486971, - -1.4784010564253318, - -1.125708379791124, - -0.7597834130815008, - -0.5273765276448414, - -0.5233511335843368, - -0.7681816575673214, - -1.2185127564720433, - -1.771088186984737, - -2.2872614469137833, - -2.667385561519639, - -2.8437094690872886, - -2.7928411726433846, - -2.577171943110213, - -2.2821525692198685, - -1.9820738483269171, - -1.735381227265299, - -1.5606696563159255, - -1.4301483548645864, - -1.2825139586257532, - -1.0525960297954255, - -0.7048669691105606, - -0.22479387081584948, - 0.390382534934592, - 1.1061077604679002, - 1.9161896285346462, - 2.9000726902190723, - 4.151050321386932 - ], - "pressure:J4:branch2_seg2": [ - 95444.26284197022, - 97086.50179666001, - 99516.48994182014, - 102875.01981092975, - 107060.83791922806, - 112074.83277105293, - 117830.82069192875, - 123638.11847352116, - 129223.71255538674, - 134480.88178306515, - 138671.9581548201, - 141720.17028976616, - 143906.35671399912, - 145123.70501235468, - 145564.24732277318, - 145672.95151594764, - 145688.8705824431, - 145667.71095252427, - 145708.1493714442, - 145836.28759055297, - 145922.28021183115, - 145831.98671695174, - 145468.6339694991, - 144916.56529943907, - 144151.01090652015, - 143160.58170150092, - 142231.8908445511, - 141347.87255347345, - 140384.4321615423, - 139458.75015616353, - 138446.60402812305, - 137083.12072498308, - 135378.7060567378, - 133396.57546389487, - 131033.1027561112, - 128446.4831761471, - 126008.21159183356, - 123743.00641379204, - 121743.38208808353, - 120325.70486363831, - 119359.17239212603, - 118657.60836939061, - 118283.0272915018, - 118070.5622065703, - 117824.6516532887, - 117583.91157206331, - 117385.75733548749, - 117230.17400676005, - 117164.2178127494, - 117255.36342591363, - 117481.99138780794, - 117735.53976404203, - 117920.62095628586, - 117952.37212311359, - 117732.09453024683, - 117204.08000646449, - 116445.64396390217, - 115559.34337175565, - 114649.38959162179, - 113850.85913009687, - 113242.12158248184, - 112828.7490220001, - 112545.54228231974, - 112280.3650967571, - 111908.06792185557, - 111320.98543858292, - 110478.15233656534, - 109413.55436624188, - 108222.96499592478, - 107030.7480867264, - 105973.41773429395, - 105163.22833220946, - 104598.41117431267, - 104228.61099837112, - 103970.39338351772, - 103673.73254639922, - 103217.18088371071, - 102537.336523882, - 101631.03128577334, - 100549.95602649832, - 99409.16991325964, - 98327.25983658098, - 97376.27062192606, - 96623.51595462364, - 96065.16399542223, - 95625.26269672244, - 95241.16070812539, - 94852.24347343414, - 94417.15106502475, - 93938.43735734526, - 93458.21456702908, - 93041.35499897109, - 92743.18804870633, - 92587.97120327855, - 92589.67336074747, - 92753.67214470118, - 93040.1965571621, - 93488.08470960746, - 94221.82164946492, - 95444.26284197022 - ], - "flow:branch4_seg0:J5": [ - 6.381570796368494, - 10.70503213129594, - 16.331334707509622, - 23.74802257691309, - 33.04130336619854, - 44.23430160183704, - 57.41578996590026, - 71.5281532850343, - 86.2320517784055, - 100.68019238598023, - 113.62599921188156, - 124.90352820779147, - 133.56075312580543, - 139.8461697517431, - 143.77933997725947, - 145.47012607685315, - 145.89886603899177, - 144.9714759492408, - 143.41961855574257, - 141.23509721916997, - 138.47254239787208, - 135.30282267468996, - 131.20408522235857, - 126.65172360695904, - 121.3423610810622, - 115.42538070723887, - 109.37369641921173, - 102.97284825782583, - 96.68181240922847, - 90.3474943724599, - 83.89293274676078, - 77.30851781119607, - 70.1535447736491, - 62.55846991566828, - 54.41337666053929, - 45.77082788724262, - 37.08607345255149, - 28.65003552066127, - 20.748257093587572, - 13.863952801588095, - 8.128827400171911, - 3.5119726253949617, - 0.058610631953456255, - -2.5131453068905643, - -4.317929830752673, - -5.590656924166877, - -6.402729350946939, - -6.701584624232397, - -6.590314171414594, - -5.912076259194088, - -4.754028510427163, - -3.203006831483952, - -1.405618576464803, - 0.31629361285932994, - 1.8585381702051775, - 2.9204946882633327, - 3.4796068988645796, - 3.6196368808156603, - 3.4130569489049445, - 3.1708134471410525, - 2.989642642737865, - 3.0814419949648584, - 3.423845119605788, - 3.896662311897622, - 4.370258773391874, - 4.560935317677941, - 4.364904851982994, - 3.6780518050728737, - 2.5591523619311323, - 1.2062714440240614, - -0.20057523843526592, - -1.3717099727150184, - -2.1591995582979338, - -2.538626007402861, - -2.5304481469163136, - -2.3581023603917806, - -2.2033136139477194, - -2.2945380571301666, - -2.7521083789213354, - -3.5756185500298043, - -4.6927184946150895, - -5.908080457107199, - -7.060032577303152, - -7.954354206292298, - -8.525978978112779, - -8.756692572282033, - -8.727264089227456, - -8.546863548639353, - -8.294740078074573, - -8.044488817097355, - -7.770387793677862, - -7.419573920416371, - -6.885686289533677, - -6.0961749347947185, - -4.995393716673761, - -3.530465793472129, - -1.754022437844057, - 0.4123192603840706, - 3.0785528038434493, - 6.381570796368494 - ], - "pressure:branch4_seg0:J5": [ - 96213.77658802547, - 98177.57643484129, - 101060.14458037149, - 105024.50609679114, - 109391.44470075179, - 114736.0306186818, - 120576.60067573522, - 125580.43705782104, - 130533.64500833371, - 134787.62972876287, - 137650.05013252632, - 139502.99461205915, - 140827.18537862677, - 141621.66714152836, - 141570.3324058137, - 142086.42449922365, - 142603.92619758888, - 143037.23742435456, - 143839.0225935242, - 144316.2395838989, - 144932.7731177888, - 144920.74484730107, - 144593.51771779516, - 144332.40547246268, - 143484.47743157495, - 142745.0495630364, - 142118.2942106853, - 141505.43169218354, - 140782.6676088786, - 139939.63126572338, - 139116.7360543106, - 137499.90532233662, - 135576.02550888833, - 133619.76772886177, - 131000.53962659433, - 128427.6195640013, - 126417.49252670848, - 124414.29117130578, - 122756.09648013902, - 121986.31154080479, - 121273.87216204111, - 120669.02383203944, - 120384.18407046245, - 120010.8131263655, - 119481.30976162662, - 118933.18348693191, - 118578.79043745557, - 118219.56136748094, - 118037.88763886098, - 118123.64267323328, - 118249.41942432134, - 118400.3965680214, - 118318.94919346717, - 118088.36941926568, - 117571.42847648097, - 116666.8128125491, - 115781.21707909789, - 114808.95852951535, - 113993.42121444395, - 113409.29791974631, - 113028.66167477483, - 112883.80348305473, - 112682.86816824958, - 112440.96938741124, - 111926.84446348816, - 111114.61266209392, - 110073.91720666864, - 108829.01777494617, - 107641.20010297574, - 106547.50589668348, - 105704.6995307076, - 105230.9509711218, - 104889.96863404365, - 104695.17478579764, - 104481.77612826545, - 104054.81395433848, - 103394.59548581329, - 102435.93035342345, - 101334.42864469149, - 100113.7852778093, - 98987.95980092736, - 98042.07848390593, - 97269.53083746211, - 96746.42479211079, - 96358.52467529147, - 95998.77514505856, - 95596.48486583943, - 95137.56246499768, - 94589.51210832965, - 94016.08285413205, - 93497.14289011832, - 93105.23745012168, - 92893.21164501287, - 92815.33571548089, - 92910.31509916253, - 93146.06165893088, - 93431.95819192579, - 93939.83459146277, - 94795.45016016354, - 96213.77658802547 - ], - "flow:J5:branch4_seg1": [ - 6.381570796368494, - 10.70503213129594, - 16.331334707509622, - 23.74802257691309, - 33.04130336619854, - 44.23430160183704, - 57.41578996590026, - 71.5281532850343, - 86.2320517784055, - 100.68019238598023, - 113.62599921188156, - 124.90352820779147, - 133.56075312580543, - 139.8461697517431, - 143.77933997725947, - 145.47012607685315, - 145.89886603899177, - 144.9714759492408, - 143.41961855574257, - 141.23509721916997, - 138.47254239787208, - 135.30282267468996, - 131.20408522235857, - 126.65172360695904, - 121.3423610810622, - 115.42538070723887, - 109.37369641921173, - 102.97284825782583, - 96.68181240922847, - 90.3474943724599, - 83.89293274676078, - 77.30851781119607, - 70.1535447736491, - 62.55846991566828, - 54.41337666053929, - 45.77082788724262, - 37.08607345255149, - 28.65003552066127, - 20.748257093587572, - 13.863952801588095, - 8.128827400171911, - 3.5119726253949617, - 0.058610631953456255, - -2.5131453068905643, - -4.317929830752673, - -5.590656924166877, - -6.402729350946939, - -6.701584624232397, - -6.590314171414594, - -5.912076259194088, - -4.754028510427163, - -3.203006831483952, - -1.405618576464803, - 0.31629361285932994, - 1.8585381702051775, - 2.9204946882633327, - 3.4796068988645796, - 3.6196368808156603, - 3.4130569489049445, - 3.1708134471410525, - 2.989642642737865, - 3.0814419949648584, - 3.423845119605788, - 3.896662311897622, - 4.370258773391874, - 4.560935317677941, - 4.364904851982994, - 3.6780518050728737, - 2.5591523619311323, - 1.2062714440240614, - -0.20057523843526592, - -1.3717099727150184, - -2.1591995582979338, - -2.538626007402861, - -2.5304481469163136, - -2.3581023603917806, - -2.2033136139477194, - -2.2945380571301666, - -2.7521083789213354, - -3.5756185500298043, - -4.6927184946150895, - -5.908080457107199, - -7.060032577303152, - -7.954354206292298, - -8.525978978112779, - -8.756692572282033, - -8.727264089227456, - -8.546863548639353, - -8.294740078074573, - -8.044488817097355, - -7.770387793677862, - -7.419573920416371, - -6.885686289533677, - -6.0961749347947185, - -4.995393716673761, - -3.530465793472129, - -1.754022437844057, - 0.4123192603840706, - 3.0785528038434493, - 6.381570796368494 - ], - "pressure:J5:branch4_seg1": [ - 96213.77658802547, - 98177.57643484129, - 101060.14458037149, - 105024.50609679114, - 109391.44470075179, - 114736.0306186818, - 120576.60067573522, - 125580.43705782104, - 130533.64500833371, - 134787.62972876287, - 137650.05013252632, - 139502.99461205915, - 140827.18537862677, - 141621.66714152836, - 141570.3324058137, - 142086.42449922365, - 142603.92619758888, - 143037.23742435456, - 143839.0225935242, - 144316.2395838989, - 144932.7731177888, - 144920.74484730107, - 144593.51771779516, - 144332.40547246268, - 143484.47743157495, - 142745.0495630364, - 142118.2942106853, - 141505.43169218354, - 140782.6676088786, - 139939.63126572338, - 139116.7360543106, - 137499.90532233662, - 135576.02550888833, - 133619.76772886177, - 131000.53962659433, - 128427.6195640013, - 126417.49252670848, - 124414.29117130578, - 122756.09648013902, - 121986.31154080479, - 121273.87216204111, - 120669.02383203944, - 120384.18407046245, - 120010.8131263655, - 119481.30976162662, - 118933.18348693191, - 118578.79043745557, - 118219.56136748094, - 118037.88763886098, - 118123.64267323328, - 118249.41942432134, - 118400.3965680214, - 118318.94919346717, - 118088.36941926568, - 117571.42847648097, - 116666.8128125491, - 115781.21707909789, - 114808.95852951535, - 113993.42121444395, - 113409.29791974631, - 113028.66167477483, - 112883.80348305473, - 112682.86816824958, - 112440.96938741124, - 111926.84446348816, - 111114.61266209392, - 110073.91720666864, - 108829.01777494617, - 107641.20010297574, - 106547.50589668348, - 105704.6995307076, - 105230.9509711218, - 104889.96863404365, - 104695.17478579764, - 104481.77612826545, - 104054.81395433848, - 103394.59548581329, - 102435.93035342345, - 101334.42864469149, - 100113.7852778093, - 98987.95980092736, - 98042.07848390593, - 97269.53083746211, - 96746.42479211079, - 96358.52467529147, - 95998.77514505856, - 95596.48486583943, - 95137.56246499768, - 94589.51210832965, - 94016.08285413205, - 93497.14289011832, - 93105.23745012168, - 92893.21164501287, - 92815.33571548089, - 92910.31509916253, - 93146.06165893088, - 93431.95819192579, - 93939.83459146277, - 94795.45016016354, - 96213.77658802547 - ], - "flow:branch4_seg1:J6": [ - 6.3381203620302795, - 10.63121543693124, - 16.230454134592954, - 23.623520265798547, - 32.894618391863695, - 44.07229073744267, - 57.2409186665832, - 71.39131225562423, - 86.09321503632488, - 100.55914611218441, - 113.5809044445459, - 124.84253361851111, - 133.5319970361052, - 139.84560194160903, - 143.76338278339853, - 145.4661794607007, - 145.87331979077598, - 144.96115485981352, - 143.39742325382412, - 141.21278884315186, - 138.47249440731898, - 135.29678821102826, - 131.22277911857705, - 126.6621775054169, - 121.36503217843504, - 115.45535193958183, - 109.37758596509457, - 103.00147803702988, - 96.70415462039753, - 90.36374303252845, - 83.93585309172462, - 77.35806733538406, - 70.21145229079391, - 62.62661335041125, - 54.49307521469011, - 45.8396919381201, - 37.143760566262046, - 28.706095138617066, - 20.78548658332191, - 13.881676489511909, - 8.148467177662452, - 3.5284006396781473, - 0.06203754963343114, - -2.4964671820778035, - -4.300916988997476, - -5.579307887119241, - -6.389379978338031, - -6.695713666832268, - -6.586508750217743, - -5.9174792110127825, - -4.759467916105924, - -3.2017700269507974, - -1.4046131530689734, - 0.3298302404660415, - 1.8789382625452107, - 2.948032988119903, - 3.5090264483478566, - 3.644540341013857, - 3.4371300186725833, - 3.182531476461721, - 2.9981941242939505, - 3.0859102183358957, - 3.428620571790814, - 3.9091332447362808, - 4.388277960112416, - 4.590184304328215, - 4.399351274859452, - 3.7142977397577455, - 2.594990690825451, - 1.2346819015524093, - -0.1808165061313711, - -1.3599629038866672, - -2.15250967986864, - -2.532257585902581, - -2.522852782802527, - -2.3410812739155102, - -2.1792131191588586, - -2.26389345640201, - -2.7161650336388026, - -3.5405288006403475, - -4.661308345854403, - -5.882909981795086, - -7.039929971889781, - -7.942405392024682, - -8.514961889135003, - -8.745397376545935, - -8.715033634156077, - -8.531267520104251, - -8.27811181526096, - -8.027349813258018, - -7.756843531849961, - -7.410296423949897, - -6.881450287996742, - -6.096624614701211, - -4.999720772022902, - -3.539445244121953, - -1.7637495668679628, - 0.39289493984184526, - 3.045088946440224, - 6.3381203620302795 - ], - "pressure:branch4_seg1:J6": [ - 95662.11210849456, - 97456.75473375715, - 100092.85131198129, - 103802.40366665405, - 107835.40769083025, - 112907.70119691252, - 118496.30217406177, - 123317.39611972494, - 128293.15689571333, - 132549.11545946868, - 135664.93949699667, - 137840.01991231728, - 139428.6767747875, - 140648.59560236745, - 140864.55421049366, - 141669.3075832336, - 142371.35989177375, - 142915.91108095803, - 143870.03559417918, - 144364.57774490374, - 145117.4428196359, - 145184.07745640073, - 144956.64086390854, - 144848.07683447754, - 144046.66262015275, - 143440.48278629084, - 142834.6069724299, - 142233.03196195536, - 141576.1392553403, - 140694.4517792071, - 139934.32398883437, - 138390.62224522364, - 136528.28635464318, - 134690.40702456987, - 132152.88335968496, - 129635.24385032314, - 127637.49975048754, - 125574.40176095678, - 123812.84254911669, - 122904.94202161102, - 122006.90544293771, - 121256.94777224354, - 120821.50956075784, - 120317.52240296139, - 119718.64826868763, - 119083.43887083248, - 118672.3607900386, - 118240.99707760396, - 117986.24956132955, - 118002.81723230921, - 118041.03472158636, - 118161.97230240185, - 118052.85470950569, - 117839.12966773198, - 117383.24535266087, - 116534.46890541614, - 115736.83433843848, - 114809.34232510268, - 114029.06936118318, - 113445.78912635756, - 113027.06458681844, - 112855.26885960848, - 112609.06569364396, - 112363.63008968775, - 111867.38429267539, - 111102.3469770135, - 110138.92505666874, - 108954.45500111413, - 107827.56996338339, - 106757.64922427645, - 105895.44035311035, - 105384.54238295463, - 104974.6011657217, - 104722.9903994289, - 104466.52485135067, - 104024.04063168117, - 103391.7490388457, - 102472.21178903266, - 101433.45014471187, - 100263.1791269977, - 99168.49040012887, - 98227.15143003268, - 97432.28599569776, - 96866.09504958172, - 96423.82986866529, - 96022.83427737729, - 95587.23944120729, - 95113.94898914677, - 94561.67595513501, - 93988.46704817392, - 93463.89242039053, - 93051.56810940919, - 92808.96185598288, - 92684.52184281943, - 92731.83531311997, - 92914.85333611921, - 93145.90038102602, - 93598.52154688878, - 94356.71169877781, - 95662.11210849456 - ], - "flow:J6:branch4_seg2": [ - 6.3381203620302795, - 10.63121543693124, - 16.230454134592954, - 23.623520265798547, - 32.894618391863695, - 44.07229073744267, - 57.2409186665832, - 71.39131225562423, - 86.09321503632488, - 100.55914611218441, - 113.5809044445459, - 124.84253361851111, - 133.5319970361052, - 139.84560194160903, - 143.76338278339853, - 145.4661794607007, - 145.87331979077598, - 144.96115485981352, - 143.39742325382412, - 141.21278884315186, - 138.47249440731898, - 135.29678821102826, - 131.22277911857705, - 126.6621775054169, - 121.36503217843504, - 115.45535193958183, - 109.37758596509457, - 103.00147803702988, - 96.70415462039753, - 90.36374303252845, - 83.93585309172462, - 77.35806733538406, - 70.21145229079391, - 62.62661335041125, - 54.49307521469011, - 45.8396919381201, - 37.143760566262046, - 28.706095138617066, - 20.78548658332191, - 13.881676489511909, - 8.148467177662452, - 3.5284006396781473, - 0.06203754963343114, - -2.4964671820778035, - -4.300916988997476, - -5.579307887119241, - -6.389379978338031, - -6.695713666832268, - -6.586508750217743, - -5.9174792110127825, - -4.759467916105924, - -3.2017700269507974, - -1.4046131530689734, - 0.3298302404660415, - 1.8789382625452107, - 2.948032988119903, - 3.5090264483478566, - 3.644540341013857, - 3.4371300186725833, - 3.182531476461721, - 2.9981941242939505, - 3.0859102183358957, - 3.428620571790814, - 3.9091332447362808, - 4.388277960112416, - 4.590184304328215, - 4.399351274859452, - 3.7142977397577455, - 2.594990690825451, - 1.2346819015524093, - -0.1808165061313711, - -1.3599629038866672, - -2.15250967986864, - -2.532257585902581, - -2.522852782802527, - -2.3410812739155102, - -2.1792131191588586, - -2.26389345640201, - -2.7161650336388026, - -3.5405288006403475, - -4.661308345854403, - -5.882909981795086, - -7.039929971889781, - -7.942405392024682, - -8.514961889135003, - -8.745397376545935, - -8.715033634156077, - -8.531267520104251, - -8.27811181526096, - -8.027349813258018, - -7.756843531849961, - -7.410296423949897, - -6.881450287996742, - -6.096624614701211, - -4.999720772022902, - -3.539445244121953, - -1.7637495668679628, - 0.39289493984184526, - 3.045088946440224, - 6.3381203620302795 - ], - "pressure:J6:branch4_seg2": [ - 95662.11210849456, - 97456.75473375715, - 100092.85131198129, - 103802.40366665405, - 107835.40769083025, - 112907.70119691252, - 118496.30217406177, - 123317.39611972494, - 128293.15689571333, - 132549.11545946868, - 135664.93949699667, - 137840.01991231728, - 139428.6767747875, - 140648.59560236745, - 140864.55421049366, - 141669.3075832336, - 142371.35989177375, - 142915.91108095803, - 143870.03559417918, - 144364.57774490374, - 145117.4428196359, - 145184.07745640073, - 144956.64086390854, - 144848.07683447754, - 144046.66262015275, - 143440.48278629084, - 142834.6069724299, - 142233.03196195536, - 141576.1392553403, - 140694.4517792071, - 139934.32398883437, - 138390.62224522364, - 136528.28635464318, - 134690.40702456987, - 132152.88335968496, - 129635.24385032314, - 127637.49975048754, - 125574.40176095678, - 123812.84254911669, - 122904.94202161102, - 122006.90544293771, - 121256.94777224354, - 120821.50956075784, - 120317.52240296139, - 119718.64826868763, - 119083.43887083248, - 118672.3607900386, - 118240.99707760396, - 117986.24956132955, - 118002.81723230921, - 118041.03472158636, - 118161.97230240185, - 118052.85470950569, - 117839.12966773198, - 117383.24535266087, - 116534.46890541614, - 115736.83433843848, - 114809.34232510268, - 114029.06936118318, - 113445.78912635756, - 113027.06458681844, - 112855.26885960848, - 112609.06569364396, - 112363.63008968775, - 111867.38429267539, - 111102.3469770135, - 110138.92505666874, - 108954.45500111413, - 107827.56996338339, - 106757.64922427645, - 105895.44035311035, - 105384.54238295463, - 104974.6011657217, - 104722.9903994289, - 104466.52485135067, - 104024.04063168117, - 103391.7490388457, - 102472.21178903266, - 101433.45014471187, - 100263.1791269977, - 99168.49040012887, - 98227.15143003268, - 97432.28599569776, - 96866.09504958172, - 96423.82986866529, - 96022.83427737729, - 95587.23944120729, - 95113.94898914677, - 94561.67595513501, - 93988.46704817392, - 93463.89242039053, - 93051.56810940919, - 92808.96185598288, - 92684.52184281943, - 92731.83531311997, - 92914.85333611921, - 93145.90038102602, - 93598.52154688878, - 94356.71169877781, - 95662.11210849456 - ], - "flow:branch5_seg0:J7": [ - 3.814022166949105, - 5.295076376916816, - 7.316365394364299, - 10.031300826473204, - 13.360654430613963, - 17.223641192141507, - 21.54654503901803, - 25.829053082265016, - 29.640133523428933, - 32.84695947633372, - 35.04672105081795, - 35.95518257666088, - 35.81419385651324, - 34.81088486074247, - 33.051485337077715, - 30.958389998803177, - 28.897641763440056, - 26.981376290032745, - 25.294014732638974, - 23.850355960504718, - 22.576501187312722, - 21.312242022720387, - 19.922142306361952, - 18.446719663976115, - 16.890130507727662, - 15.246288649967703, - 13.686585826211049, - 12.314165614011069, - 11.046793744227173, - 9.866412376603298, - 8.768533338051299, - 7.538163793519589, - 6.047442343487104, - 4.3921255375129284, - 2.540786250162844, - 0.5299949363083695, - -1.3090904569980155, - -2.833142885960334, - -4.0222913113628245, - -4.653263900322686, - -4.72767266619884, - -4.46785082110667, - -3.9369550676882334, - -3.230901297250331, - -2.552795329502226, - -1.965122981385222, - -1.4155912140695792, - -0.885250520669446, - -0.3444147574726437, - 0.2737963614680524, - 0.9778261580387607, - 1.6985294103895856, - 2.327991638112614, - 2.785478615995021, - 2.99943043838651, - 2.9036287107784764, - 2.5518776787651447, - 2.0579565844138634, - 1.5359011539061624, - 1.1150255735998165, - 0.8874482377379245, - 0.8786169117441867, - 1.0319590746447505, - 1.2403080254656444, - 1.3798477121640154, - 1.3345065993946719, - 1.0522654512857028, - 0.5493690938530057, - -0.08301408190502244, - -0.718954489397299, - -1.2319820375072217, - -1.4987762164200094, - -1.4966238376265242, - -1.2791609542519529, - -0.930608636556967, - -0.5890583232141412, - -0.388076447443866, - -0.40813974210820075, - -0.6589293908529121, - -1.0917547089692152, - -1.6044040543717, - -2.0673111296835613, - -2.391852716245551, - -2.5210982129649597, - -2.4418426097455104, - -2.2191127674557762, - -1.9355637390185865, - -1.6598656651518198, - -1.4431333259215895, - -1.2978241904692847, - -1.1931420359740064, - -1.069071950749124, - -0.8652891310160625, - -0.550925683342859, - -0.1156757302819506, - 0.44007241573312184, - 1.0820368219152454, - 1.8057868895046119, - 2.687593949478294, - 3.814022166949105 - ], - "pressure:branch5_seg0:J7": [ - 97247.18838601379, - 99504.13543346662, - 102826.48307046772, - 107187.21270529677, - 112288.26778099868, - 118170.98858621684, - 124586.4458807276, - 130303.10495825011, - 135422.16072436876, - 140013.45589910762, - 142744.96820448255, - 144258.14390998922, - 145252.28845650796, - 145207.42299458347, - 144715.29019676757, - 144438.94673902096, - 144380.27211681244, - 144429.8459718665, - 144642.00923259265, - 144989.50777275712, - 145128.4828934758, - 144918.745993251, - 144355.17677947698, - 143641.15497470484, - 142714.39924215976, - 141575.98197693707, - 140793.53499832412, - 140060.18081093885, - 139101.35672835523, - 138309.8520349087, - 137262.46161657406, - 135551.40853172704, - 133540.80529583924, - 131277.30693974733, - 128537.11391147292, - 125822.93916827132, - 123628.59788130333, - 121668.35705476071, - 120138.15108316233, - 119472.04764547954, - 119104.55777679295, - 118802.07135211697, - 118825.89521769648, - 118798.51082433057, - 118510.03878005467, - 118250.49726848412, - 118061.3602415692, - 117921.65521214374, - 117934.73766599689, - 118169.32561670359, - 118519.86767458962, - 118762.3036003484, - 118822.65518869499, - 118629.2172152935, - 118056.24036243606, - 117139.11954164696, - 116083.02475954799, - 115032.30733712054, - 114104.11047963187, - 113449.39566371983, - 113087.01291183277, - 112919.63536868659, - 112801.78404351538, - 112562.07618372086, - 112053.70420589011, - 111205.8788850416, - 110048.37847846586, - 108722.00010683665, - 107390.79623166838, - 106211.3336672556, - 105348.42111551008, - 104853.49692242584, - 104604.62244862106, - 104487.10529454412, - 104360.27417775734, - 104012.02945886491, - 103350.62538085498, - 102389.42566719167, - 101201.25312232357, - 99906.8441004994, - 98701.41008291773, - 97700.1927628332, - 96924.0024720966, - 96426.77511946094, - 96111.23001787647, - 95822.4075041589, - 95503.97550892713, - 95100.32028707518, - 94597.83546334412, - 94052.7234179912, - 93557.55355058594, - 93204.07283094614, - 93033.78047977695, - 93039.2008625821, - 93214.36384596721, - 93549.64631709122, - 93964.36509226049, - 94581.85595077056, - 95623.79719336017, - 97247.18838601379 - ], - "flow:J7:branch5_seg1": [ - 3.814022166949105, - 5.295076376916816, - 7.316365394364299, - 10.031300826473204, - 13.360654430613963, - 17.223641192141507, - 21.54654503901803, - 25.829053082265016, - 29.640133523428933, - 32.84695947633372, - 35.04672105081795, - 35.95518257666088, - 35.81419385651324, - 34.81088486074247, - 33.051485337077715, - 30.958389998803177, - 28.897641763440056, - 26.981376290032745, - 25.294014732638974, - 23.850355960504718, - 22.576501187312722, - 21.312242022720387, - 19.922142306361952, - 18.446719663976115, - 16.890130507727662, - 15.246288649967703, - 13.686585826211049, - 12.314165614011069, - 11.046793744227173, - 9.866412376603298, - 8.768533338051299, - 7.538163793519589, - 6.047442343487104, - 4.3921255375129284, - 2.540786250162844, - 0.5299949363083695, - -1.3090904569980155, - -2.833142885960334, - -4.0222913113628245, - -4.653263900322686, - -4.72767266619884, - -4.46785082110667, - -3.9369550676882334, - -3.230901297250331, - -2.552795329502226, - -1.965122981385222, - -1.4155912140695792, - -0.885250520669446, - -0.3444147574726437, - 0.2737963614680524, - 0.9778261580387607, - 1.6985294103895856, - 2.327991638112614, - 2.785478615995021, - 2.99943043838651, - 2.9036287107784764, - 2.5518776787651447, - 2.0579565844138634, - 1.5359011539061624, - 1.1150255735998165, - 0.8874482377379245, - 0.8786169117441867, - 1.0319590746447505, - 1.2403080254656444, - 1.3798477121640154, - 1.3345065993946719, - 1.0522654512857028, - 0.5493690938530057, - -0.08301408190502244, - -0.718954489397299, - -1.2319820375072217, - -1.4987762164200094, - -1.4966238376265242, - -1.2791609542519529, - -0.930608636556967, - -0.5890583232141412, - -0.388076447443866, - -0.40813974210820075, - -0.6589293908529121, - -1.0917547089692152, - -1.6044040543717, - -2.0673111296835613, - -2.391852716245551, - -2.5210982129649597, - -2.4418426097455104, - -2.2191127674557762, - -1.9355637390185865, - -1.6598656651518198, - -1.4431333259215895, - -1.2978241904692847, - -1.1931420359740064, - -1.069071950749124, - -0.8652891310160625, - -0.550925683342859, - -0.1156757302819506, - 0.44007241573312184, - 1.0820368219152454, - 1.8057868895046119, - 2.687593949478294, - 3.814022166949105 - ], - "pressure:J7:branch5_seg1": [ - 97247.18838601379, - 99504.13543346662, - 102826.48307046772, - 107187.21270529677, - 112288.26778099868, - 118170.98858621684, - 124586.4458807276, - 130303.10495825011, - 135422.16072436876, - 140013.45589910762, - 142744.96820448255, - 144258.14390998922, - 145252.28845650796, - 145207.42299458347, - 144715.29019676757, - 144438.94673902096, - 144380.27211681244, - 144429.8459718665, - 144642.00923259265, - 144989.50777275712, - 145128.4828934758, - 144918.745993251, - 144355.17677947698, - 143641.15497470484, - 142714.39924215976, - 141575.98197693707, - 140793.53499832412, - 140060.18081093885, - 139101.35672835523, - 138309.8520349087, - 137262.46161657406, - 135551.40853172704, - 133540.80529583924, - 131277.30693974733, - 128537.11391147292, - 125822.93916827132, - 123628.59788130333, - 121668.35705476071, - 120138.15108316233, - 119472.04764547954, - 119104.55777679295, - 118802.07135211697, - 118825.89521769648, - 118798.51082433057, - 118510.03878005467, - 118250.49726848412, - 118061.3602415692, - 117921.65521214374, - 117934.73766599689, - 118169.32561670359, - 118519.86767458962, - 118762.3036003484, - 118822.65518869499, - 118629.2172152935, - 118056.24036243606, - 117139.11954164696, - 116083.02475954799, - 115032.30733712054, - 114104.11047963187, - 113449.39566371983, - 113087.01291183277, - 112919.63536868659, - 112801.78404351538, - 112562.07618372086, - 112053.70420589011, - 111205.8788850416, - 110048.37847846586, - 108722.00010683665, - 107390.79623166838, - 106211.3336672556, - 105348.42111551008, - 104853.49692242584, - 104604.62244862106, - 104487.10529454412, - 104360.27417775734, - 104012.02945886491, - 103350.62538085498, - 102389.42566719167, - 101201.25312232357, - 99906.8441004994, - 98701.41008291773, - 97700.1927628332, - 96924.0024720966, - 96426.77511946094, - 96111.23001787647, - 95822.4075041589, - 95503.97550892713, - 95100.32028707518, - 94597.83546334412, - 94052.7234179912, - 93557.55355058594, - 93204.07283094614, - 93033.78047977695, - 93039.2008625821, - 93214.36384596721, - 93549.64631709122, - 93964.36509226049, - 94581.85595077056, - 95623.79719336017, - 97247.18838601379 - ], - "flow:branch5_seg1:J8": [ - 3.8028667746326135, - 5.278270314246637, - 7.29160576194693, - 10.002180004535917, - 13.32665113292728, - 17.184734809556417, - 21.509769325006758, - 25.795973389493014, - 29.610067926751643, - 32.82514580841447, - 35.03476281959694, - 35.94800310170474, - 35.8105020530817, - 34.813341297468796, - 33.05391846021568, - 30.958479624919555, - 28.89760654665885, - 26.979748973910468, - 25.29214504231946, - 23.84826113419356, - 22.576128831847683, - 21.31514347408384, - 19.925323360349402, - 18.451754051205516, - 16.896512463106305, - 15.251483105410948, - 13.690864952009342, - 12.318729185434666, - 11.052047187339085, - 9.871188332144053, - 8.776346590578232, - 7.5506192817187, - 6.059951073344015, - 4.407278254178819, - 2.559470061986318, - 0.5448943676167625, - -1.2965747626600044, - -2.8210519355090073, - -4.015815842887271, - -4.650610714030264, - -4.72508418935367, - -4.467158886071061, - -3.9371998666636285, - -3.2296258502080626, - -2.5505934938180044, - -1.9636419253034543, - -1.4144151282679767, - -0.8844547350866278, - -0.3451946544809052, - 0.2720441324003666, - 0.9757654228150295, - 1.697654424474741, - 2.3285817453464372, - 2.7875447701670293, - 3.0044415694807154, - 2.9099267017701695, - 2.5584931283801837, - 2.064325822273376, - 1.5408109111823918, - 1.1181971224554073, - 0.8888368122173156, - 0.8793808064012376, - 1.0330288968573593, - 1.242542139710778, - 1.3842368600992578, - 1.3407747657185272, - 1.060280091833507, - 0.55777163643444, - -0.07519082514176542, - -0.7122049638777693, - -1.2279043183433413, - -1.4965968628834199, - -1.4954883775702563, - -1.2785912463498754, - -0.9291696795766647, - -0.5858614602030426, - -0.3828514454318778, - -0.4012791978279173, - -0.6511153473561474, - -1.0838336809551046, - -1.5975395353959312, - -2.061816322680497, - -2.387900848569606, - -2.518755045232405, - -2.4400203315967337, - -2.2172203956617356, - -1.9332568366983987, - -1.6569183892746517, - -1.4397399072920969, - -1.2944205836691058, - -1.1903614859872325, - -1.0674146681420411, - -0.864683364218868, - -0.5514507320218432, - -0.11719349145327874, - 0.4379704785868535, - 1.0791384429374165, - 1.8010026918638802, - 2.6801595664100506, - 3.8028667746326135 - ], - "pressure:branch5_seg1:J8": [ - 95953.57648090649, - 97757.70001205534, - 100422.41529322421, - 104059.9134736873, - 108512.42044881517, - 113782.66117411472, - 119745.59823480393, - 125569.90783977286, - 131046.86917511903, - 136116.47033399795, - 139906.64611845356, - 142492.4933235819, - 144275.7005500826, - 145075.86229514383, - 145178.08550614913, - 145092.48283429744, - 145021.68786494812, - 144978.42984526118, - 145046.80374508098, - 145233.1859383309, - 145352.33095849806, - 145257.96155048, - 144863.54213854717, - 144284.5928172492, - 143489.6800412222, - 142469.11394899065, - 141579.87427292424, - 140746.5141926522, - 139805.26435508602, - 138930.1625938397, - 137933.26269690803, - 136507.70219188955, - 134734.19968916703, - 132683.34453448665, - 130225.17014887121, - 127592.25639327969, - 125202.70596807032, - 123019.13749259985, - 121148.61978714218, - 119941.24194236238, - 119169.49803660896, - 118617.12166866842, - 118387.1708466024, - 118265.12283197732, - 118043.87029460576, - 117816.42628873343, - 117629.02192705621, - 117480.63676386811, - 117433.03588647458, - 117558.61846308211, - 117818.2217893602, - 118074.16138973607, - 118230.68487007098, - 118203.23999089637, - 117887.14844487076, - 117244.6347930562, - 116386.4846172057, - 115431.778232881, - 114492.45007353235, - 113711.96004660572, - 113157.04859119779, - 112809.20730230193, - 112579.64063645063, - 112336.42485288341, - 111943.92094590046, - 111297.88733159666, - 110373.5581211973, - 109231.03025109082, - 107987.96764135535, - 106782.28691081406, - 105761.12797393976, - 105027.89305766762, - 104551.7897011637, - 104262.8247314049, - 104059.00173280756, - 103770.17682216597, - 103276.11045271571, - 102528.83353652107, - 101544.93733243184, - 100396.01862825282, - 99221.2318461342, - 98144.67365226049, - 97229.9423618432, - 96541.43041967694, - 96053.06741206438, - 95666.19720941172, - 95314.08877413251, - 94934.32510627704, - 94490.12919950772, - 93996.78287158471, - 93510.25829645726, - 93104.99052387223, - 92836.52343575751, - 92722.49555046961, - 92772.05698767341, - 92986.07521446244, - 93313.39467089908, - 93809.70270635062, - 94624.61924975339, - 95953.57648090649 - ], - "flow:J8:branch5_seg2": [ - 3.8028667746326135, - 5.278270314246637, - 7.29160576194693, - 10.002180004535917, - 13.32665113292728, - 17.184734809556417, - 21.509769325006758, - 25.795973389493014, - 29.610067926751643, - 32.82514580841447, - 35.03476281959694, - 35.94800310170474, - 35.8105020530817, - 34.813341297468796, - 33.05391846021568, - 30.958479624919555, - 28.89760654665885, - 26.979748973910468, - 25.29214504231946, - 23.84826113419356, - 22.576128831847683, - 21.31514347408384, - 19.925323360349402, - 18.451754051205516, - 16.896512463106305, - 15.251483105410948, - 13.690864952009342, - 12.318729185434666, - 11.052047187339085, - 9.871188332144053, - 8.776346590578232, - 7.5506192817187, - 6.059951073344015, - 4.407278254178819, - 2.559470061986318, - 0.5448943676167625, - -1.2965747626600044, - -2.8210519355090073, - -4.015815842887271, - -4.650610714030264, - -4.72508418935367, - -4.467158886071061, - -3.9371998666636285, - -3.2296258502080626, - -2.5505934938180044, - -1.9636419253034543, - -1.4144151282679767, - -0.8844547350866278, - -0.3451946544809052, - 0.2720441324003666, - 0.9757654228150295, - 1.697654424474741, - 2.3285817453464372, - 2.7875447701670293, - 3.0044415694807154, - 2.9099267017701695, - 2.5584931283801837, - 2.064325822273376, - 1.5408109111823918, - 1.1181971224554073, - 0.8888368122173156, - 0.8793808064012376, - 1.0330288968573593, - 1.242542139710778, - 1.3842368600992578, - 1.3407747657185272, - 1.060280091833507, - 0.55777163643444, - -0.07519082514176542, - -0.7122049638777693, - -1.2279043183433413, - -1.4965968628834199, - -1.4954883775702563, - -1.2785912463498754, - -0.9291696795766647, - -0.5858614602030426, - -0.3828514454318778, - -0.4012791978279173, - -0.6511153473561474, - -1.0838336809551046, - -1.5975395353959312, - -2.061816322680497, - -2.387900848569606, - -2.518755045232405, - -2.4400203315967337, - -2.2172203956617356, - -1.9332568366983987, - -1.6569183892746517, - -1.4397399072920969, - -1.2944205836691058, - -1.1903614859872325, - -1.0674146681420411, - -0.864683364218868, - -0.5514507320218432, - -0.11719349145327874, - 0.4379704785868535, - 1.0791384429374165, - 1.8010026918638802, - 2.6801595664100506, - 3.8028667746326135 - ], - "pressure:J8:branch5_seg2": [ - 95953.57648090649, - 97757.70001205534, - 100422.41529322421, - 104059.9134736873, - 108512.42044881517, - 113782.66117411472, - 119745.59823480393, - 125569.90783977286, - 131046.86917511903, - 136116.47033399795, - 139906.64611845356, - 142492.4933235819, - 144275.7005500826, - 145075.86229514383, - 145178.08550614913, - 145092.48283429744, - 145021.68786494812, - 144978.42984526118, - 145046.80374508098, - 145233.1859383309, - 145352.33095849806, - 145257.96155048, - 144863.54213854717, - 144284.5928172492, - 143489.6800412222, - 142469.11394899065, - 141579.87427292424, - 140746.5141926522, - 139805.26435508602, - 138930.1625938397, - 137933.26269690803, - 136507.70219188955, - 134734.19968916703, - 132683.34453448665, - 130225.17014887121, - 127592.25639327969, - 125202.70596807032, - 123019.13749259985, - 121148.61978714218, - 119941.24194236238, - 119169.49803660896, - 118617.12166866842, - 118387.1708466024, - 118265.12283197732, - 118043.87029460576, - 117816.42628873343, - 117629.02192705621, - 117480.63676386811, - 117433.03588647458, - 117558.61846308211, - 117818.2217893602, - 118074.16138973607, - 118230.68487007098, - 118203.23999089637, - 117887.14844487076, - 117244.6347930562, - 116386.4846172057, - 115431.778232881, - 114492.45007353235, - 113711.96004660572, - 113157.04859119779, - 112809.20730230193, - 112579.64063645063, - 112336.42485288341, - 111943.92094590046, - 111297.88733159666, - 110373.5581211973, - 109231.03025109082, - 107987.96764135535, - 106782.28691081406, - 105761.12797393976, - 105027.89305766762, - 104551.7897011637, - 104262.8247314049, - 104059.00173280756, - 103770.17682216597, - 103276.11045271571, - 102528.83353652107, - 101544.93733243184, - 100396.01862825282, - 99221.2318461342, - 98144.67365226049, - 97229.9423618432, - 96541.43041967694, - 96053.06741206438, - 95666.19720941172, - 95314.08877413251, - 94934.32510627704, - 94490.12919950772, - 93996.78287158471, - 93510.25829645726, - 93104.99052387223, - 92836.52343575751, - 92722.49555046961, - 92772.05698767341, - 92986.07521446244, - 93313.39467089908, - 93809.70270635062, - 94624.61924975339, - 95953.57648090649 - ], - "flow:branch6_seg0:J9": [ - 1.061376366728062, - 1.4463712626447205, - 1.9811000190110992, - 2.692804424658442, - 3.5352081046142456, - 4.48877361991872, - 5.531742344272148, - 6.5107780899726455, - 7.3382742822412, - 8.020929206920334, - 8.44627797210713, - 8.576772524374723, - 8.530976811860906, - 8.336939559014143, - 8.016375871653059, - 7.692039660969509, - 7.422029236270648, - 7.199390469949614, - 7.022647561008561, - 6.881959002392038, - 6.748124053142761, - 6.572010392087057, - 6.334649601065464, - 6.0634855349731245, - 5.763954095570421, - 5.436851761686924, - 5.137982329113078, - 4.884031076102563, - 4.630812653134107, - 4.385437893842913, - 4.140856377896152, - 3.824991568996238, - 3.4321025236826093, - 3.003443183281559, - 2.520259157574641, - 2.008801219657366, - 1.5727800384328439, - 1.218600293076429, - 0.937792818427317, - 0.7978863646678793, - 0.7693740803988259, - 0.7790368234087383, - 0.8299747048254842, - 0.9006732022513642, - 0.9394950477577952, - 0.9545888656898022, - 0.9741803877102035, - 1.0012834255882275, - 1.0459008025484555, - 1.1246278986231883, - 1.2316381418953566, - 1.3390297924633383, - 1.4170627711164347, - 1.452398851021013, - 1.4288047568605697, - 1.3357375282028168, - 1.2005685290686663, - 1.0552744568196788, - 0.9260756996815857, - 0.839645531135106, - 0.8095664468958967, - 0.828903399263795, - 0.8727167896191252, - 0.9105125973038597, - 0.9119389639053666, - 0.8559552126309661, - 0.7405083798909392, - 0.5813486250090448, - 0.40948671694854183, - 0.25616862456342476, - 0.15007952481921166, - 0.11418227065356316, - 0.13785546509013336, - 0.19831646865142405, - 0.27067988158410755, - 0.31917407120281976, - 0.316613289078466, - 0.25497414666608287, - 0.14387843545672663, - 0.0032069851462926562, - -0.13611726779840186, - -0.24411565642474642, - -0.30766991581958464, - -0.320282652344028, - -0.28824339234132634, - -0.23655810585679277, - -0.18563594801975555, - -0.14803349329754725, - -0.13065021894871517, - -0.1289416647124762, - -0.12930815168124787, - -0.11383269251737368, - -0.0694609416986849, - 0.006085591951471146, - 0.11135920399867762, - 0.24362347147667857, - 0.3919894342732744, - 0.5600645265972428, - 0.7760534863478131, - 1.061376366728062 - ], - "pressure:branch6_seg0:J9": [ - 97269.7090381556, - 99533.36535116337, - 102867.1103837527, - 107276.32153190165, - 112356.95179308351, - 118226.7954930934, - 124584.51687098829, - 130105.97177249263, - 135049.81528631176, - 139411.2079729109, - 141855.9726734128, - 143085.22919139135, - 143883.09771090848, - 143742.07417798034, - 143134.28212482322, - 142912.8818729978, - 142948.56732151975, - 143107.18284267205, - 143494.02424236614, - 143945.94928992027, - 144230.38496078574, - 144096.35587286984, - 143597.19832713288, - 142980.13902800702, - 142089.31861550335, - 141039.38210680822, - 140350.62979175348, - 139713.28514589614, - 138837.999522032, - 138107.67725874708, - 137157.79181055672, - 135462.75713651298, - 133451.77740986412, - 131245.20502204535, - 128520.07237031717, - 125818.77525813897, - 123707.87835790042, - 121828.05223290008, - 120364.24165026104, - 119798.61084600612, - 119490.49740373642, - 119214.09317396749, - 119251.49688634122, - 119200.76211551216, - 118863.26512940448, - 118535.5646017916, - 118304.41251438875, - 118115.03495174767, - 118089.67456714858, - 118305.79747502379, - 118629.67273618393, - 118856.39904541611, - 118871.39871818371, - 118633.0209779583, - 118016.9013699023, - 117038.37799560592, - 115956.25217550196, - 114885.25203228444, - 113965.9956105088, - 113340.17811678667, - 113013.70902463743, - 112896.2477928935, - 112800.30304140587, - 112576.87071968321, - 112057.12851466621, - 111181.03140563717, - 109997.0531215279, - 108639.4365920434, - 107305.76743249598, - 106138.84737416798, - 105301.01251254382, - 104858.29573239245, - 104650.29625166778, - 104568.12036386598, - 104457.05747844998, - 104098.11559059098, - 103411.18757877676, - 102407.20728464203, - 101187.30781370899, - 99864.90740704973, - 98656.27818206893, - 97671.82288670466, - 96919.9084141183, - 96459.3783481874, - 96177.04732119356, - 95907.52028028002, - 95590.44738306715, - 95177.67716246615, - 94654.71464097647, - 94089.19121284822, - 93579.42426657683, - 93219.22153314747, - 93053.6758122563, - 93064.04060043104, - 93247.89246525761, - 93588.25368343305, - 93993.73631185447, - 94605.65067561531, - 95647.54509017945, - 97269.7090381556 - ], - "flow:J9:branch6_seg1": [ - 1.061376366728062, - 1.4463712626447205, - 1.9811000190110992, - 2.692804424658442, - 3.5352081046142456, - 4.48877361991872, - 5.531742344272148, - 6.5107780899726455, - 7.3382742822412, - 8.020929206920334, - 8.44627797210713, - 8.576772524374723, - 8.530976811860906, - 8.336939559014143, - 8.016375871653059, - 7.692039660969509, - 7.422029236270648, - 7.199390469949614, - 7.022647561008561, - 6.881959002392038, - 6.748124053142761, - 6.572010392087057, - 6.334649601065464, - 6.0634855349731245, - 5.763954095570421, - 5.436851761686924, - 5.137982329113078, - 4.884031076102563, - 4.630812653134107, - 4.385437893842913, - 4.140856377896152, - 3.824991568996238, - 3.4321025236826093, - 3.003443183281559, - 2.520259157574641, - 2.008801219657366, - 1.5727800384328439, - 1.218600293076429, - 0.937792818427317, - 0.7978863646678793, - 0.7693740803988259, - 0.7790368234087383, - 0.8299747048254842, - 0.9006732022513642, - 0.9394950477577952, - 0.9545888656898022, - 0.9741803877102035, - 1.0012834255882275, - 1.0459008025484555, - 1.1246278986231883, - 1.2316381418953566, - 1.3390297924633383, - 1.4170627711164347, - 1.452398851021013, - 1.4288047568605697, - 1.3357375282028168, - 1.2005685290686663, - 1.0552744568196788, - 0.9260756996815857, - 0.839645531135106, - 0.8095664468958967, - 0.828903399263795, - 0.8727167896191252, - 0.9105125973038597, - 0.9119389639053666, - 0.8559552126309661, - 0.7405083798909392, - 0.5813486250090448, - 0.40948671694854183, - 0.25616862456342476, - 0.15007952481921166, - 0.11418227065356316, - 0.13785546509013336, - 0.19831646865142405, - 0.27067988158410755, - 0.31917407120281976, - 0.316613289078466, - 0.25497414666608287, - 0.14387843545672663, - 0.0032069851462926562, - -0.13611726779840186, - -0.24411565642474642, - -0.30766991581958464, - -0.320282652344028, - -0.28824339234132634, - -0.23655810585679277, - -0.18563594801975555, - -0.14803349329754725, - -0.13065021894871517, - -0.1289416647124762, - -0.12930815168124787, - -0.11383269251737368, - -0.0694609416986849, - 0.006085591951471146, - 0.11135920399867762, - 0.24362347147667857, - 0.3919894342732744, - 0.5600645265972428, - 0.7760534863478131, - 1.061376366728062 - ], - "pressure:J9:branch6_seg1": [ - 97269.7090381556, - 99533.36535116337, - 102867.1103837527, - 107276.32153190165, - 112356.95179308351, - 118226.7954930934, - 124584.51687098829, - 130105.97177249263, - 135049.81528631176, - 139411.2079729109, - 141855.9726734128, - 143085.22919139135, - 143883.09771090848, - 143742.07417798034, - 143134.28212482322, - 142912.8818729978, - 142948.56732151975, - 143107.18284267205, - 143494.02424236614, - 143945.94928992027, - 144230.38496078574, - 144096.35587286984, - 143597.19832713288, - 142980.13902800702, - 142089.31861550335, - 141039.38210680822, - 140350.62979175348, - 139713.28514589614, - 138837.999522032, - 138107.67725874708, - 137157.79181055672, - 135462.75713651298, - 133451.77740986412, - 131245.20502204535, - 128520.07237031717, - 125818.77525813897, - 123707.87835790042, - 121828.05223290008, - 120364.24165026104, - 119798.61084600612, - 119490.49740373642, - 119214.09317396749, - 119251.49688634122, - 119200.76211551216, - 118863.26512940448, - 118535.5646017916, - 118304.41251438875, - 118115.03495174767, - 118089.67456714858, - 118305.79747502379, - 118629.67273618393, - 118856.39904541611, - 118871.39871818371, - 118633.0209779583, - 118016.9013699023, - 117038.37799560592, - 115956.25217550196, - 114885.25203228444, - 113965.9956105088, - 113340.17811678667, - 113013.70902463743, - 112896.2477928935, - 112800.30304140587, - 112576.87071968321, - 112057.12851466621, - 111181.03140563717, - 109997.0531215279, - 108639.4365920434, - 107305.76743249598, - 106138.84737416798, - 105301.01251254382, - 104858.29573239245, - 104650.29625166778, - 104568.12036386598, - 104457.05747844998, - 104098.11559059098, - 103411.18757877676, - 102407.20728464203, - 101187.30781370899, - 99864.90740704973, - 98656.27818206893, - 97671.82288670466, - 96919.9084141183, - 96459.3783481874, - 96177.04732119356, - 95907.52028028002, - 95590.44738306715, - 95177.67716246615, - 94654.71464097647, - 94089.19121284822, - 93579.42426657683, - 93219.22153314747, - 93053.6758122563, - 93064.04060043104, - 93247.89246525761, - 93588.25368343305, - 93993.73631185447, - 94605.65067561531, - 95647.54509017945, - 97269.7090381556 - ], - "flow:branch6_seg1:J10": [ - 1.054403238926958, - 1.4354596633490129, - 1.965306997571811, - 2.6738960992347485, - 3.5131282381066717, - 4.464107231322489, - 5.508721876879788, - 6.4903621655579435, - 7.319434813715084, - 8.007723227773072, - 8.440660664700555, - 8.572772590754266, - 8.529246525253912, - 8.339264161681434, - 8.018182565694278, - 7.692430949656113, - 7.421674678538415, - 7.1982312784742035, - 7.0209714867500255, - 6.880339525248589, - 6.7479387912659154, - 6.573348370734498, - 6.336721865476598, - 6.0665062491724235, - 5.7679497496489205, - 5.43995844341154, - 5.140044927102317, - 4.88700091504577, - 4.633964473801196, - 4.387921494389523, - 4.14578944872033, - 3.8330670242483005, - 3.4401517086836173, - 3.0129195711208427, - 2.532265083118458, - 2.018556216284833, - 1.5805331863254724, - 1.2258776289922901, - 0.9417715731250333, - 0.7994128009758437, - 0.7708059350995808, - 0.7793452310065607, - 0.8296447684698067, - 0.9016275973347028, - 0.9410592132671127, - 0.9556357308133185, - 0.9750934785824422, - 1.0017990795863285, - 1.0455397137991722, - 1.1234870972329776, - 1.230272809837435, - 1.3385245866550939, - 1.4174767633867293, - 1.4539435591499752, - 1.4320498281865963, - 1.3399216165266705, - 1.2048829657249844, - 1.0593171624236861, - 0.9292432795733334, - 0.8414870096194519, - 0.810306165985401, - 0.8292103650454995, - 0.8732855251514285, - 0.9119438391814283, - 0.9147595997125499, - 0.8600980346732606, - 0.7457243812031925, - 0.5867796922526852, - 0.4144816298147841, - 0.2604169663819498, - 0.15263248192060516, - 0.11538932378340092, - 0.13836948949499545, - 0.1985675266557767, - 0.2715130789527877, - 0.3212633009859316, - 0.32005707659905386, - 0.2594444558295907, - 0.1489804177225476, - 0.008269723331985368, - -0.13178920330417537, - -0.24068689557249312, - -0.3052377075914591, - -0.31897843094107153, - -0.2872394865651079, - -0.23542458701888264, - -0.18421034840526412, - -0.1461213683923015, - -0.1284424774388183, - -0.12674109215339271, - -0.12753940102967393, - -0.11277490297314571, - -0.06912944232128035, - 0.00569018743174691, - 0.11033365288107949, - 0.24228349674891542, - 0.39016583736097826, - 0.5569742334172397, - 0.7712082096032375, - 1.054403238926958 - ], - "pressure:branch6_seg1:J10": [ - 96846.64875221744, - 98946.7951841279, - 102056.91125057756, - 106235.92296837753, - 111144.00193336018, - 116835.10570782327, - 123078.36063217187, - 128683.24590158103, - 133741.32095840722, - 138253.93696273913, - 141017.26227458208, - 142500.5586787383, - 143453.96361673888, - 143505.51570997093, - 142997.28581954184, - 142749.12732077378, - 142738.49170944895, - 142865.15803798297, - 143214.80758539133, - 143647.38259299027, - 143957.39764781648, - 143899.2691142902, - 143477.87931980265, - 142903.04836065668, - 142066.07577117442, - 141047.08568213435, - 140321.51197103274, - 139672.04514577021, - 138820.5321442994, - 138083.0394055766, - 137185.61337059585, - 135620.83403179832, - 133682.20805475887, - 131545.82504831493, - 128932.06202838974, - 126229.53804952961, - 124033.85920806704, - 122110.02334910547, - 120554.61555342845, - 119825.21571181947, - 119443.31099155913, - 119136.4835993024, - 119120.75049926096, - 119076.66646278914, - 118780.961709992, - 118458.6866020232, - 118216.79670549638, - 118016.00767657139, - 117958.88424365873, - 118128.7649998586, - 118424.5883085699, - 118665.33952466479, - 118716.0431420685, - 118527.69822443782, - 117989.13801880727, - 117086.55307606695, - 116039.10218834235, - 114975.41320232175, - 114032.19174939142, - 113352.25827866899, - 112965.85036080045, - 112803.18409512189, - 112694.05745741651, - 112490.94119973872, - 112025.5167360456, - 111220.7940449975, - 110105.35083740862, - 108790.73357920782, - 107464.5611022039, - 106274.42533385092, - 105372.9278020566, - 104853.59393705656, - 104591.73414529383, - 104476.61302380102, - 104365.15530289595, - 104048.1676019254, - 103425.11086448444, - 102488.01017800909, - 101320.40525311229, - 100025.48354316095, - 98806.42652990938, - 97784.06937718295, - 96983.60725182969, - 96465.40066661988, - 96144.36528049779, - 95863.02441060974, - 95551.24727257965, - 95156.04212268523, - 94653.8918276776, - 94099.9401226489, - 93583.18473078396, - 93196.06678790026, - 92992.24411917134, - 92964.31586390974, - 93110.27054630741, - 93416.86633047317, - 93798.21658616238, - 94367.02839685105, - 95328.14757607451, - 96846.64875221744 - ], - "flow:J10:branch6_seg2": [ - 1.054403238926958, - 1.4354596633490129, - 1.965306997571811, - 2.6738960992347485, - 3.5131282381066717, - 4.464107231322489, - 5.508721876879788, - 6.4903621655579435, - 7.319434813715084, - 8.007723227773072, - 8.440660664700555, - 8.572772590754266, - 8.529246525253912, - 8.339264161681434, - 8.018182565694278, - 7.692430949656113, - 7.421674678538415, - 7.1982312784742035, - 7.0209714867500255, - 6.880339525248589, - 6.7479387912659154, - 6.573348370734498, - 6.336721865476598, - 6.0665062491724235, - 5.7679497496489205, - 5.43995844341154, - 5.140044927102317, - 4.88700091504577, - 4.633964473801196, - 4.387921494389523, - 4.14578944872033, - 3.8330670242483005, - 3.4401517086836173, - 3.0129195711208427, - 2.532265083118458, - 2.018556216284833, - 1.5805331863254724, - 1.2258776289922901, - 0.9417715731250333, - 0.7994128009758437, - 0.7708059350995808, - 0.7793452310065607, - 0.8296447684698067, - 0.9016275973347028, - 0.9410592132671127, - 0.9556357308133185, - 0.9750934785824422, - 1.0017990795863285, - 1.0455397137991722, - 1.1234870972329776, - 1.230272809837435, - 1.3385245866550939, - 1.4174767633867293, - 1.4539435591499752, - 1.4320498281865963, - 1.3399216165266705, - 1.2048829657249844, - 1.0593171624236861, - 0.9292432795733334, - 0.8414870096194519, - 0.810306165985401, - 0.8292103650454995, - 0.8732855251514285, - 0.9119438391814283, - 0.9147595997125499, - 0.8600980346732606, - 0.7457243812031925, - 0.5867796922526852, - 0.4144816298147841, - 0.2604169663819498, - 0.15263248192060516, - 0.11538932378340092, - 0.13836948949499545, - 0.1985675266557767, - 0.2715130789527877, - 0.3212633009859316, - 0.32005707659905386, - 0.2594444558295907, - 0.1489804177225476, - 0.008269723331985368, - -0.13178920330417537, - -0.24068689557249312, - -0.3052377075914591, - -0.31897843094107153, - -0.2872394865651079, - -0.23542458701888264, - -0.18421034840526412, - -0.1461213683923015, - -0.1284424774388183, - -0.12674109215339271, - -0.12753940102967393, - -0.11277490297314571, - -0.06912944232128035, - 0.00569018743174691, - 0.11033365288107949, - 0.24228349674891542, - 0.39016583736097826, - 0.5569742334172397, - 0.7712082096032375, - 1.054403238926958 - ], - "pressure:J10:branch6_seg2": [ - 96846.64875221744, - 98946.7951841279, - 102056.91125057756, - 106235.92296837753, - 111144.00193336018, - 116835.10570782327, - 123078.36063217187, - 128683.24590158103, - 133741.32095840722, - 138253.93696273913, - 141017.26227458208, - 142500.5586787383, - 143453.96361673888, - 143505.51570997093, - 142997.28581954184, - 142749.12732077378, - 142738.49170944895, - 142865.15803798297, - 143214.80758539133, - 143647.38259299027, - 143957.39764781648, - 143899.2691142902, - 143477.87931980265, - 142903.04836065668, - 142066.07577117442, - 141047.08568213435, - 140321.51197103274, - 139672.04514577021, - 138820.5321442994, - 138083.0394055766, - 137185.61337059585, - 135620.83403179832, - 133682.20805475887, - 131545.82504831493, - 128932.06202838974, - 126229.53804952961, - 124033.85920806704, - 122110.02334910547, - 120554.61555342845, - 119825.21571181947, - 119443.31099155913, - 119136.4835993024, - 119120.75049926096, - 119076.66646278914, - 118780.961709992, - 118458.6866020232, - 118216.79670549638, - 118016.00767657139, - 117958.88424365873, - 118128.7649998586, - 118424.5883085699, - 118665.33952466479, - 118716.0431420685, - 118527.69822443782, - 117989.13801880727, - 117086.55307606695, - 116039.10218834235, - 114975.41320232175, - 114032.19174939142, - 113352.25827866899, - 112965.85036080045, - 112803.18409512189, - 112694.05745741651, - 112490.94119973872, - 112025.5167360456, - 111220.7940449975, - 110105.35083740862, - 108790.73357920782, - 107464.5611022039, - 106274.42533385092, - 105372.9278020566, - 104853.59393705656, - 104591.73414529383, - 104476.61302380102, - 104365.15530289595, - 104048.1676019254, - 103425.11086448444, - 102488.01017800909, - 101320.40525311229, - 100025.48354316095, - 98806.42652990938, - 97784.06937718295, - 96983.60725182969, - 96465.40066661988, - 96144.36528049779, - 95863.02441060974, - 95551.24727257965, - 95156.04212268523, - 94653.8918276776, - 94099.9401226489, - 93583.18473078396, - 93196.06678790026, - 92992.24411917134, - 92964.31586390974, - 93110.27054630741, - 93416.86633047317, - 93798.21658616238, - 94367.02839685105, - 95328.14757607451, - 96846.64875221744 - ], - "flow:branch7_seg0:J11": [ - 3.2541458472428406, - 4.58375692297481, - 6.382066017321487, - 8.793023306428207, - 11.779003605831724, - 15.288828050513006, - 19.27047311787227, - 23.330258457587, - 27.092025372581226, - 30.399909811917276, - 32.8951131068588, - 34.28960788719288, - 34.712938468801696, - 34.29039472133814, - 33.09470943817552, - 31.461489601367802, - 29.710317070063937, - 27.973900575595316, - 26.35721915211059, - 24.904696665124725, - 23.583498111430057, - 22.27939679375846, - 20.883056264718746, - 19.417249765600957, - 17.88117496327039, - 16.267241359282625, - 14.706634811824467, - 13.292122569472625, - 11.972250361435506, - 10.734175171163958, - 9.578712914325862, - 8.337345186403903, - 6.893625221536453, - 5.3070397370992595, - 3.5470394337312943, - 1.6338066078283708, - -0.1737524332248753, - -1.7417422321580638, - -3.034126608118937, - -3.8575364148854696, - -4.184374839226271, - -4.17223403904928, - -3.8727498609981112, - -3.3643020313794807, - -2.8166293502173474, - -2.2998071013375445, - -1.7897285416283033, - -1.2805538519174013, - -0.754856581560192, - -0.16169502110746084, - 0.5086818559211851, - 1.2048092039094136, - 1.8387011298693658, - 2.3380506103181347, - 2.6357507027485747, - 2.6662705364384545, - 2.4588551449411957, - 2.09716806465182, - 1.674258740227785, - 1.3012551319769865, - 1.0657316030844601, - 1.0046050367563806, - 1.0865375117110263, - 1.2331580416165793, - 1.3443811330746933, - 1.3188727866098873, - 1.1014010906919873, - 0.6909569087278278, - 0.1509620159762973, - -0.4197325625261839, - -0.9138764254149736, - -1.2205240938010358, - -1.3040135288777777, - -1.192902465229234, - -0.9469510285449984, - -0.6754858226446808, - -0.49323616747145704, - -0.4788089362664108, - -0.6557579087060162, - -0.9975242231908499, - -1.429329998764566, - -1.8461789121525427, - -2.1679498395524015, - -2.337385632384824, - -2.330820734960735, - -2.189667947575654, - -1.9763235762852522, - -1.7481033738730023, - -1.5519210080664194, - -1.4056599963218608, - -1.2915938522650177, - -1.165061421282276, - -0.9764084832011648, - -0.6961813054765003, - -0.3105656000306292, - 0.1846470777046919, - 0.7659386775380784, - 1.4292569825905996, - 2.234191678528815, - 3.2541458472428406 - ], - "pressure:branch7_seg0:J11": [ - 96896.60944409386, - 99040.31616856462, - 102196.22091386744, - 106361.24400466714, - 111259.71535280808, - 116937.54459460829, - 123169.05230282033, - 128809.56594750451, - 133930.72729609127, - 138583.53963538655, - 141508.0185470223, - 143272.09280758264, - 144511.93916385155, - 144725.1442970018, - 144462.7657045599, - 144338.18704254678, - 144370.13673369001, - 144468.58358698932, - 144696.2384272474, - 145036.68912485603, - 145177.4048001745, - 144991.80384119696, - 144466.87175750235, - 143790.2140702007, - 142904.16517027805, - 141805.6827282084, - 141024.60950058795, - 140281.7037243919, - 139324.18257281915, - 138522.18286702855, - 137480.38226109796, - 135817.29598822797, - 133866.63056296413, - 131665.16775916613, - 129002.34316995948, - 126338.57670857795, - 124141.06876750116, - 122154.50202510909, - 120562.16940323658, - 119781.44231943802, - 119301.28281702183, - 118903.93101879738, - 118835.36951017435, - 118742.80346715832, - 118426.35871432051, - 118148.61163625559, - 117944.02776078005, - 117791.46221624575, - 117785.27707064456, - 117991.15994248525, - 118313.86100444519, - 118544.2319120691, - 118612.33351315827, - 118446.37367542143, - 117925.9168689606, - 117075.92823700156, - 116082.67902271502, - 115079.05210483693, - 114175.32767628231, - 113517.03794105296, - 113127.67672714453, - 112923.2591996322, - 112772.66190420008, - 112517.2610864872, - 112018.26369365079, - 111204.08789352895, - 110096.89004036009, - 108821.94315451205, - 107529.661277708, - 106366.63587343125, - 105489.84653395605, - 104954.97244779616, - 104654.81457796096, - 104487.76268942922, - 104324.30226328851, - 103966.02306860588, - 103322.5035602326, - 102399.5805456271, - 101259.13324274268, - 100009.25541534628, - 98830.75103075075, - 97833.00099655251, - 97040.12180417482, - 96508.25983632683, - 96151.43998426526, - 95828.55265092252, - 95487.18821994288, - 95073.80410322928, - 94572.71637008154, - 94033.56798542918, - 93540.29562750511, - 93178.20809282693, - 92988.32156887496, - 92965.69649771237, - 93107.51405128186, - 93406.30014930955, - 93788.70266129826, - 94367.7083788769, - 95351.9144033172, - 96896.60944409386 - ], - "flow:J11:branch7_seg1": [ - 3.2541458472428406, - 4.58375692297481, - 6.382066017321487, - 8.793023306428207, - 11.779003605831724, - 15.288828050513006, - 19.27047311787227, - 23.330258457587, - 27.092025372581226, - 30.399909811917276, - 32.8951131068588, - 34.28960788719288, - 34.712938468801696, - 34.29039472133814, - 33.09470943817552, - 31.461489601367802, - 29.710317070063937, - 27.973900575595316, - 26.35721915211059, - 24.904696665124725, - 23.583498111430057, - 22.27939679375846, - 20.883056264718746, - 19.417249765600957, - 17.88117496327039, - 16.267241359282625, - 14.706634811824467, - 13.292122569472625, - 11.972250361435506, - 10.734175171163958, - 9.578712914325862, - 8.337345186403903, - 6.893625221536453, - 5.3070397370992595, - 3.5470394337312943, - 1.6338066078283708, - -0.1737524332248753, - -1.7417422321580638, - -3.034126608118937, - -3.8575364148854696, - -4.184374839226271, - -4.17223403904928, - -3.8727498609981112, - -3.3643020313794807, - -2.8166293502173474, - -2.2998071013375445, - -1.7897285416283033, - -1.2805538519174013, - -0.754856581560192, - -0.16169502110746084, - 0.5086818559211851, - 1.2048092039094136, - 1.8387011298693658, - 2.3380506103181347, - 2.6357507027485747, - 2.6662705364384545, - 2.4588551449411957, - 2.09716806465182, - 1.674258740227785, - 1.3012551319769865, - 1.0657316030844601, - 1.0046050367563806, - 1.0865375117110263, - 1.2331580416165793, - 1.3443811330746933, - 1.3188727866098873, - 1.1014010906919873, - 0.6909569087278278, - 0.1509620159762973, - -0.4197325625261839, - -0.9138764254149736, - -1.2205240938010358, - -1.3040135288777777, - -1.192902465229234, - -0.9469510285449984, - -0.6754858226446808, - -0.49323616747145704, - -0.4788089362664108, - -0.6557579087060162, - -0.9975242231908499, - -1.429329998764566, - -1.8461789121525427, - -2.1679498395524015, - -2.337385632384824, - -2.330820734960735, - -2.189667947575654, - -1.9763235762852522, - -1.7481033738730023, - -1.5519210080664194, - -1.4056599963218608, - -1.2915938522650177, - -1.165061421282276, - -0.9764084832011648, - -0.6961813054765003, - -0.3105656000306292, - 0.1846470777046919, - 0.7659386775380784, - 1.4292569825905996, - 2.234191678528815, - 3.2541458472428406 - ], - "pressure:J11:branch7_seg1": [ - 96896.60944409386, - 99040.31616856462, - 102196.22091386744, - 106361.24400466714, - 111259.71535280808, - 116937.54459460829, - 123169.05230282033, - 128809.56594750451, - 133930.72729609127, - 138583.53963538655, - 141508.0185470223, - 143272.09280758264, - 144511.93916385155, - 144725.1442970018, - 144462.7657045599, - 144338.18704254678, - 144370.13673369001, - 144468.58358698932, - 144696.2384272474, - 145036.68912485603, - 145177.4048001745, - 144991.80384119696, - 144466.87175750235, - 143790.2140702007, - 142904.16517027805, - 141805.6827282084, - 141024.60950058795, - 140281.7037243919, - 139324.18257281915, - 138522.18286702855, - 137480.38226109796, - 135817.29598822797, - 133866.63056296413, - 131665.16775916613, - 129002.34316995948, - 126338.57670857795, - 124141.06876750116, - 122154.50202510909, - 120562.16940323658, - 119781.44231943802, - 119301.28281702183, - 118903.93101879738, - 118835.36951017435, - 118742.80346715832, - 118426.35871432051, - 118148.61163625559, - 117944.02776078005, - 117791.46221624575, - 117785.27707064456, - 117991.15994248525, - 118313.86100444519, - 118544.2319120691, - 118612.33351315827, - 118446.37367542143, - 117925.9168689606, - 117075.92823700156, - 116082.67902271502, - 115079.05210483693, - 114175.32767628231, - 113517.03794105296, - 113127.67672714453, - 112923.2591996322, - 112772.66190420008, - 112517.2610864872, - 112018.26369365079, - 111204.08789352895, - 110096.89004036009, - 108821.94315451205, - 107529.661277708, - 106366.63587343125, - 105489.84653395605, - 104954.97244779616, - 104654.81457796096, - 104487.76268942922, - 104324.30226328851, - 103966.02306860588, - 103322.5035602326, - 102399.5805456271, - 101259.13324274268, - 100009.25541534628, - 98830.75103075075, - 97833.00099655251, - 97040.12180417482, - 96508.25983632683, - 96151.43998426526, - 95828.55265092252, - 95487.18821994288, - 95073.80410322928, - 94572.71637008154, - 94033.56798542918, - 93540.29562750511, - 93178.20809282693, - 92988.32156887496, - 92965.69649771237, - 93107.51405128186, - 93406.30014930955, - 93788.70266129826, - 94367.7083788769, - 95351.9144033172, - 96896.60944409386 - ], - "flow:branch7_seg1:J12": [ - 3.252520716112364, - 4.581302102959328, - 6.378458912557818, - 8.788727490329066, - 11.773965854860668, - 15.283048399505734, - 19.264917827139474, - 23.325171282357786, - 27.08735614561353, - 30.396423565768938, - 32.89305419404388, - 34.28826930958197, - 34.71218058309349, - 34.29056292881026, - 33.09496911702814, - 31.461466333375295, - 29.710307638054488, - 27.97368192073012, - 26.356981349216266, - 24.904426564084503, - 23.583469567132976, - 22.2798251306508, - 20.883549864273487, - 19.41801229191062, - 17.882140817927358, - 16.268048500921264, - 14.707326291809885, - 13.292854077481541, - 11.973067091949547, - 10.734931326556715, - 9.57989652859517, - 8.339202171297242, - 6.895501180445796, - 5.309301796495755, - 3.5498471384583667, - 1.6360862117444925, - -0.1718033825762498, - -1.7398594501948332, - -3.033031971662423, - -3.8570112828767233, - -4.183896952674905, - -4.172052533520222, - -3.8727260840813056, - -3.364087415731422, - -2.8162944174747415, - -2.299582255553589, - -1.7895511183299486, - -1.2804349618649677, - -0.7549612312514593, - -0.16194906608966472, - 0.5083716812204971, - 1.2046621693126311, - 1.8387574518676257, - 2.3383197742427844, - 2.6364410640157554, - 2.6671687740294083, - 2.459808682611673, - 2.098109718273055, - 1.6750034369923086, - 1.3017554910606328, - 1.0659788878204215, - 1.0047508823709617, - 1.0867190033172005, - 1.2334949951683207, - 1.3450194331817362, - 1.3197834395567654, - 1.1025680423856847, - 0.6921961303337648, - 0.15213119010047968, - -0.41869836007919226, - -0.9132229635841256, - -1.2201466415331315, - -1.303798011504663, - -1.1927820917554186, - -0.9467203020447547, - -0.6750157180229589, - -0.4924774219374979, - -0.4778144852682091, - -0.6546135533691249, - -0.996355153397855, - -1.4282959933542878, - -1.845331144254451, - -2.167326986007982, - -2.3369912092494323, - -2.3305160004511216, - -2.189361497425471, - -1.9759684258390187, - -1.7476622517253801, - -1.5514181980837825, - -1.4051549416513838, - -1.2911747375283416, - -1.1647997478331185, - -0.9763025578731122, - -0.6962381383208954, - -0.31077439004306245, - 0.18434842590294348, - 0.7655139745386834, - 1.4285601255205402, - 2.233111541965074, - 3.252520716112364 - ], - "pressure:branch7_seg1:J12": [ - 96598.30312051249, - 98640.41483759858, - 101648.17460891022, - 105646.22446349992, - 110385.0712012784, - 115907.37095881485, - 122012.12491752455, - 127638.77771744257, - 132806.333289006, - 137541.85767134812, - 140672.6746142843, - 142663.85206535575, - 144090.68311054428, - 144503.08658488988, - 144396.92767106497, - 144347.92497022907, - 144408.52717117156, - 144511.3998416385, - 144726.0024222841, - 145043.86241119093, - 145184.49037623193, - 145024.9325761834, - 144538.09932734136, - 143894.48358041022, - 143042.21107631832, - 141975.32431418347, - 141182.26050164207, - 140424.71643028816, - 139472.3442697808, - 138657.5470520853, - 137626.73156578423, - 136021.08615512846, - 134125.09735473624, - 131975.94074741364, - 129380.25737153369, - 126747.20360376038, - 124524.6818322415, - 122501.42341882543, - 120844.08992142914, - 119952.70662344535, - 119381.20799404626, - 118918.91273345046, - 118785.30182100774, - 118658.05704495293, - 118341.24591074021, - 118061.21353975439, - 117850.94223066016, - 117692.00013497876, - 117670.06386694954, - 117850.32762169935, - 118150.17530981054, - 118377.26834675026, - 118460.09703527913, - 118325.09595524747, - 117856.64230830762, - 117066.15017031504, - 116120.71387842965, - 115145.92595767228, - 114248.98974668582, - 113572.55519729664, - 113148.08015788523, - 112906.84858334405, - 112730.1878903517, - 112469.18529985528, - 111989.31189657364, - 111214.12068119337, - 110155.93685483605, - 108923.67605479728, - 107656.98445867907, - 106496.44781815515, - 105593.91425578581, - 105013.61368776366, - 104665.59100588218, - 104458.80130468833, - 104272.62841536192, - 103919.12684115025, - 103304.45422895183, - 102423.56487748248, - 101327.12873972078, - 100112.22733953284, - 98947.22700383453, - 97940.67454975139, - 97123.63756872644, - 96554.34208255098, - 96160.30170082622, - 95812.74941290016, - 95459.10669100359, - 95045.63993910042, - 94552.81058493807, - 94022.50720401327, - 93530.77944703538, - 93158.3998161981, - 92948.1751977345, - 92899.37307859356, - 93012.32784813504, - 93281.65004621155, - 93640.52321912101, - 94189.08346046018, - 95121.73837864122, - 96598.30312051249 - ], - "flow:J12:branch7_seg2": [ - 3.252520716112364, - 4.581302102959328, - 6.378458912557818, - 8.788727490329066, - 11.773965854860668, - 15.283048399505734, - 19.264917827139474, - 23.325171282357786, - 27.08735614561353, - 30.396423565768938, - 32.89305419404388, - 34.28826930958197, - 34.71218058309349, - 34.29056292881026, - 33.09496911702814, - 31.461466333375295, - 29.710307638054488, - 27.97368192073012, - 26.356981349216266, - 24.904426564084503, - 23.583469567132976, - 22.2798251306508, - 20.883549864273487, - 19.41801229191062, - 17.882140817927358, - 16.268048500921264, - 14.707326291809885, - 13.292854077481541, - 11.973067091949547, - 10.734931326556715, - 9.57989652859517, - 8.339202171297242, - 6.895501180445796, - 5.309301796495755, - 3.5498471384583667, - 1.6360862117444925, - -0.1718033825762498, - -1.7398594501948332, - -3.033031971662423, - -3.8570112828767233, - -4.183896952674905, - -4.172052533520222, - -3.8727260840813056, - -3.364087415731422, - -2.8162944174747415, - -2.299582255553589, - -1.7895511183299486, - -1.2804349618649677, - -0.7549612312514593, - -0.16194906608966472, - 0.5083716812204971, - 1.2046621693126311, - 1.8387574518676257, - 2.3383197742427844, - 2.6364410640157554, - 2.6671687740294083, - 2.459808682611673, - 2.098109718273055, - 1.6750034369923086, - 1.3017554910606328, - 1.0659788878204215, - 1.0047508823709617, - 1.0867190033172005, - 1.2334949951683207, - 1.3450194331817362, - 1.3197834395567654, - 1.1025680423856847, - 0.6921961303337648, - 0.15213119010047968, - -0.41869836007919226, - -0.9132229635841256, - -1.2201466415331315, - -1.303798011504663, - -1.1927820917554186, - -0.9467203020447547, - -0.6750157180229589, - -0.4924774219374979, - -0.4778144852682091, - -0.6546135533691249, - -0.996355153397855, - -1.4282959933542878, - -1.845331144254451, - -2.167326986007982, - -2.3369912092494323, - -2.3305160004511216, - -2.189361497425471, - -1.9759684258390187, - -1.7476622517253801, - -1.5514181980837825, - -1.4051549416513838, - -1.2911747375283416, - -1.1647997478331185, - -0.9763025578731122, - -0.6962381383208954, - -0.31077439004306245, - 0.18434842590294348, - 0.7655139745386834, - 1.4285601255205402, - 2.233111541965074, - 3.252520716112364 - ], - "pressure:J12:branch7_seg2": [ - 96598.30312051249, - 98640.41483759858, - 101648.17460891022, - 105646.22446349992, - 110385.0712012784, - 115907.37095881485, - 122012.12491752455, - 127638.77771744257, - 132806.333289006, - 137541.85767134812, - 140672.6746142843, - 142663.85206535575, - 144090.68311054428, - 144503.08658488988, - 144396.92767106497, - 144347.92497022907, - 144408.52717117156, - 144511.3998416385, - 144726.0024222841, - 145043.86241119093, - 145184.49037623193, - 145024.9325761834, - 144538.09932734136, - 143894.48358041022, - 143042.21107631832, - 141975.32431418347, - 141182.26050164207, - 140424.71643028816, - 139472.3442697808, - 138657.5470520853, - 137626.73156578423, - 136021.08615512846, - 134125.09735473624, - 131975.94074741364, - 129380.25737153369, - 126747.20360376038, - 124524.6818322415, - 122501.42341882543, - 120844.08992142914, - 119952.70662344535, - 119381.20799404626, - 118918.91273345046, - 118785.30182100774, - 118658.05704495293, - 118341.24591074021, - 118061.21353975439, - 117850.94223066016, - 117692.00013497876, - 117670.06386694954, - 117850.32762169935, - 118150.17530981054, - 118377.26834675026, - 118460.09703527913, - 118325.09595524747, - 117856.64230830762, - 117066.15017031504, - 116120.71387842965, - 115145.92595767228, - 114248.98974668582, - 113572.55519729664, - 113148.08015788523, - 112906.84858334405, - 112730.1878903517, - 112469.18529985528, - 111989.31189657364, - 111214.12068119337, - 110155.93685483605, - 108923.67605479728, - 107656.98445867907, - 106496.44781815515, - 105593.91425578581, - 105013.61368776366, - 104665.59100588218, - 104458.80130468833, - 104272.62841536192, - 103919.12684115025, - 103304.45422895183, - 102423.56487748248, - 101327.12873972078, - 100112.22733953284, - 98947.22700383453, - 97940.67454975139, - 97123.63756872644, - 96554.34208255098, - 96160.30170082622, - 95812.74941290016, - 95459.10669100359, - 95045.63993910042, - 94552.81058493807, - 94022.50720401327, - 93530.77944703538, - 93158.3998161981, - 92948.1751977345, - 92899.37307859356, - 93012.32784813504, - 93281.65004621155, - 93640.52321912101, - 94189.08346046018, - 95121.73837864122, - 96598.30312051249 - ], - "flow:INFLOW:branch0_seg0": [ - 19.581907481595668, - 29.24682998044782, - 42.0511165296033, - 58.583913202644474, - 78.95362616027712, - 103.27506735565193, - 130.16534882450802, - 158.11460426170575, - 185.3564624676055, - 210.00675799120174, - 230.14062159309847, - 244.73105343201496, - 253.69338170314, - 257.05601197452415, - 256.0693925199267, - 251.86471784525148, - 245.88851566046975, - 239.12106476762335, - 232.10897405704137, - 225.15125147491213, - 217.97720402973337, - 210.1674463421351, - 201.4946309392784, - 191.82313530044465, - 181.19449872183276, - 169.9852394452257, - 158.72346366351152, - 147.6930079809729, - 136.9482091445109, - 126.56365701566217, - 116.06082531356147, - 104.86525943054755, - 92.70970076933371, - 79.3807344047527, - 64.81272634444237, - 49.86814034140978, - 35.19454243721392, - 21.51179631610772, - 9.992989822184512, - 0.8867712885176026, - -5.537671779881001, - -9.579657157216602, - -11.611404933684915, - -12.33447052477908, - -12.218625949917055, - -11.640767443352093, - -10.689850735695753, - -9.276334007322495, - -7.253939643489095, - -4.5124157127967175, - -1.0622631811875014, - 2.740625109763227, - 6.476082901308106, - 9.639835317912233, - 11.730779557406226, - 12.519379517353505, - 12.095924459442914, - 10.775316065370106, - 9.110507086398105, - 7.665149973221131, - 6.854060102188092, - 6.88444268118512, - 7.567583025205867, - 8.528115822955554, - 9.202847862573616, - 9.068039723252227, - 7.86356755044207, - 5.555421231360338, - 2.5134069022190055, - -0.7866296297480672, - -3.665410108802718, - -5.626432153743674, - -6.491107894311172, - -6.249539655106462, - -5.35236204167692, - -4.319870419424456, - -3.727209684989501, - -4.015479774824012, - -5.297081449614054, - -7.469070649799495, - -10.087968366633373, - -12.675902678245876, - -14.779047115069162, - -16.048740620275993, - -16.433639588685313, - -16.06971930508376, - -15.251965727850354, - -14.292802363131837, - -13.40752847300765, - -12.676279065948533, - -11.988085430841524, - -11.12210395441212, - -9.830647135308425, - -7.950669625931317, - -5.353410386770605, - -2.085489965433775, - 1.8538463401322447, - 6.520264580067509, - 12.319343064136449, - 19.581907481595668 - ], - "pressure:INFLOW:branch0_seg0": [ - 99289.04240518558, - 102230.89862156154, - 106545.06930493927, - 111912.08868519882, - 118023.8086789431, - 124807.38239018325, - 131826.96353417807, - 137494.5361386775, - 142010.48715848348, - 145839.2805084215, - 147025.25268720725, - 146876.94522902658, - 146601.75021996355, - 145095.26981786502, - 143697.85144498982, - 142889.15220436614, - 142670.23328974674, - 142750.50265563477, - 142970.65453143537, - 143532.37008490632, - 143570.11695728256, - 143180.51038108265, - 142383.35423162894, - 141388.87360786242, - 140336.77947728918, - 138990.89175513198, - 138354.20601745058, - 137778.29478291387, - 136806.2223419014, - 136185.5262287783, - 135032.44764510292, - 133008.53667778944, - 130715.38012380351, - 128115.03617721665, - 125048.7121424308, - 122280.7013534513, - 120338.3105399996, - 118738.41907497321, - 117802.21875262432, - 117911.20360117465, - 118237.46787526738, - 118403.89594109816, - 118879.49402399528, - 119099.14070845555, - 118826.01447853596, - 118629.01121283513, - 118491.5242413194, - 118438.43354821486, - 118600.66065009375, - 119013.31778803078, - 119542.36616442064, - 119778.522168243, - 119744.06620048748, - 119328.38723984422, - 118379.3085416484, - 117098.70933337428, - 115717.67760524353, - 114522.3709630556, - 113580.92372537986, - 113074.40797163009, - 112975.62013619875, - 113034.58964156799, - 113089.1516315101, - 112845.64732335568, - 112184.05283160352, - 111057.29192113591, - 109560.99409805745, - 107974.88310174154, - 106492.83332340665, - 105337.91787629541, - 104693.4307680509, - 104513.74368889008, - 104596.98244151777, - 104733.75089076714, - 104728.96041434204, - 104325.35923821117, - 103442.1692079762, - 102196.69500810427, - 100717.02588091505, - 99215.9828540519, - 97955.43400361741, - 97046.93423934058, - 96467.20980382699, - 96236.01561898681, - 96169.6847427391, - 96035.81784446226, - 95787.69645010999, - 95369.06005159026, - 94805.91933352438, - 94202.1285320573, - 93704.45639308062, - 93433.04391460001, - 93401.8779998918, - 93587.86868072052, - 93948.47487575066, - 94463.68387023623, - 95031.04770752905, - 95833.98479151237, - 97218.95336261258, - 99289.04240518558 - ], - "flow:branch2_seg2:RCR_0": [ - 4.146197566111827, - 5.78054545558274, - 8.001054441554933, - 10.990589607989728, - 14.676778917914707, - 18.982860242578365, - 23.844480360254448, - 28.732730826123927, - 33.16885157091111, - 36.98818770490654, - 39.74045466621714, - 41.07669939778047, - 41.21694227853378, - 40.35116074180716, - 38.573867142985385, - 36.335051054576496, - 34.04721058046348, - 31.852946833560146, - 29.869864372815535, - 28.132387960740203, - 26.58212411538654, - 25.05763573249632, - 23.408380024217198, - 21.67550339146665, - 19.85768622329045, - 17.943532447092185, - 16.112551979388957, - 14.481669633973155, - 12.9724392142787, - 11.563531512048714, - 10.259573319019353, - 8.833914969872065, - 7.132793387433619, - 5.2559688543028615, - 3.165368814267517, - 0.8812842836436403, - -1.2393377363431723, - -3.031725897882983, - -4.4722565919830055, - -5.308283874474553, - -5.519610513135064, - -5.33595296189033, - -4.822409626397322, - -4.0794537939071915, - -3.330254134481651, - -2.6561465461899383, - -2.010573261727958, - -1.379975977210803, - -0.7384536820750247, - -0.014599547887442254, - 0.8031158486098693, - 1.6460430633501855, - 2.397902836183999, - 2.968611385800247, - 3.278859197915782, - 3.2470453550350706, - 2.9219025133215193, - 2.4199572792612987, - 1.8619709740580634, - 1.3907851254097539, - 1.1129990053760412, - 1.0677742278707925, - 1.2041708352428209, - 1.4136306763115905, - 1.565035020232443, - 1.528688374130653, - 1.2410791283230953, - 0.7086398021403476, - 0.02194988565098901, - -0.6865566367488688, - -1.2813221546973879, - -1.6210271517155788, - -1.6703603621455945, - -1.4772906308568228, - -1.1247350638909681, - -0.7584189117963672, - -0.5252529668060489, - -0.5203929902055714, - -0.7644663458424128, - -1.2143384673487154, - -1.7669309076900863, - -2.2834745288580796, - -2.664203349531645, - -2.841302755985234, - -2.7910279496061374, - -2.575654849452047, - -2.2807243645640196, - -1.9805287262450928, - -1.733652895412772, - -1.5588363939686087, - -1.4284236625641702, - -1.2811473810646032, - -1.0517108004456597, - -0.7045496862004635, - -0.22505938374020282, - 0.38960490232137746, - 1.104850415887952, - 1.9141580977544503, - 2.896841680509402, - 4.146197566111827 - ], - "pressure:branch2_seg2:RCR_0": [ - 94639.44354636031, - 96004.18715667319, - 98033.27813606353, - 100940.17459387387, - 104715.67107330331, - 109339.4739643146, - 114797.74751022019, - 120644.08775979541, - 126433.20422872975, - 131975.6651440223, - 136810.66752956598, - 140529.6434249714, - 143226.89501655314, - 144991.00769257848, - 145831.69247895633, - 146096.62497022757, - 146135.23742887762, - 146077.6841042491, - 146040.9651010095, - 146073.8226150968, - 146142.69542169137, - 146112.71201098806, - 145846.58727015535, - 145373.0121799634, - 144685.33285821887, - 143767.45253517557, - 142777.22914151032, - 141831.63048326282, - 140874.66112023944, - 139894.49723476917, - 138905.34637070986, - 137706.50211091342, - 136144.94656125666, - 134293.18080332637, - 132104.02670720257, - 129579.08208693551, - 127034.54335898338, - 124637.73750835, - 122435.30418382592, - 120687.4870553013, - 119461.1919748477, - 118591.07533774924, - 118045.24260305142, - 117756.52820352338, - 117535.3573676419, - 117305.14051588745, - 117103.10622987039, - 116939.5108539065, - 116836.64233396051, - 116861.17375891254, - 117030.14513080032, - 117287.39636558214, - 117526.64807641314, - 117657.31571738332, - 117592.27371292881, - 117235.71217386024, - 116606.34098287001, - 115789.86373060863, - 114884.91846438043, - 114019.64399856151, - 113299.76360012604, - 112776.74135462807, - 112421.32706313206, - 112146.93824037058, - 111837.6976794427, - 111368.88826843472, - 110667.19748937478, - 109719.18784551654, - 108590.14114560887, - 107391.12140266354, - 106246.10077565008, - 105295.04989129995, - 104590.60708938292, - 104110.54308581186, - 103796.5428773262, - 103525.87308670013, - 103163.2288583765, - 102609.96576847376, - 101829.39064411532, - 100842.43185563329, - 99728.73194911187, - 98609.27484785095, - 97579.62204987711, - 96712.94703049972, - 96047.12313480156, - 95541.99726717318, - 95130.63310312187, - 94750.08213776184, - 94346.22581162938, - 93897.2984216465, - 93423.12657457028, - 92976.89098218846, - 92620.32435974039, - 92392.61432850754, - 92316.10004350406, - 92403.23444637102, - 92632.1857572018, - 93003.73023504551, - 93597.46572279382, - 94639.44354636031 - ], - "flow:branch4_seg2:RCR_1": [ - 6.0973904987979655, - 10.20219660569426, - 15.658402104184303, - 22.90002536196302, - 32.032687070605796, - 43.12677775557608, - 56.155060144603425, - 70.57363353735836, - 85.22646796121704, - 99.74086368844088, - 113.2813667551271, - 124.37860708938422, - 133.30139539368346, - 139.78718436432635, - 143.5896389803293, - 145.42106960671916, - 145.65713843431035, - 144.88813286129857, - 143.22930311784148, - 141.0451824329117, - 138.46686209026709, - 135.2108070996649, - 131.33624540880717, - 126.6910936504262, - 121.4817463992611, - 115.65008087222604, - 109.3694756619866, - 103.18965357302483, - 96.83746531636885, - 90.45274303635684, - 84.20743198480038, - 77.63393521371898, - 70.56146862677319, - 63.03521435133585, - 54.956203166134536, - 46.263212531204864, - 37.503309728718385, - 29.0561315385787, - 21.040603147973187, - 14.01387343168552, - 8.293357619956394, - 3.6652401017267056, - 0.10008137896073255, - -2.370430301903879, - -4.182078796513259, - -5.497617008468625, - -6.28851367426038, - -6.6515200291051455, - -6.542939218157856, - -5.939298339907148, - -4.778924628743014, - -3.1818130870312706, - -1.4021094448722853, - 0.4191497400106649, - 1.9947139916743897, - 3.109954187214436, - 3.686489172098571, - 3.789038658938478, - 3.5916744841061736, - 3.255447331850269, - 3.062625185028951, - 3.1219547207687675, - 3.4614182030291554, - 3.9908672722958234, - 4.492382907142421, - 4.766734565788836, - 4.602270785773453, - 3.9301769987891397, - 2.816242329670311, - 1.4065294504201176, - -0.050150146386597066, - -1.2756519431542022, - -2.100661114216079, - -2.47901878135479, - -2.471307101470239, - -2.2322352801493204, - -2.033867522025386, - -2.0805336077719074, - -2.497717476613927, - -3.32721005373692, - -4.465398625900988, - -5.72342646132313, - -6.905078511851318, - -7.858715300185251, - -8.435117553261232, - -8.666108271563042, - -8.63350106321104, - -8.429692705523534, - -8.172547984592766, - -7.9170413296682165, - -7.66872385658588, - -7.34534026659903, - -6.846624470546006, - -6.089588204874966, - -5.014752932044401, - -3.588670729626346, - -1.8109422587236075, - 0.28547308603387794, - 2.848943697918328, - 6.0973904987979655 - ], - "pressure:branch4_seg2:RCR_1": [ - 92169.36413080529, - 92886.97105213773, - 94029.0994524721, - 95731.62651678454, - 98052.13543344795, - 101037.99202491547, - 104713.8042954773, - 108967.9572414965, - 113514.49280883167, - 118259.07098009139, - 122977.58254024351, - 127264.24905562898, - 131149.25185690608, - 134526.4750886637, - 137291.95571065304, - 139587.6439936199, - 141481.90119905153, - 143105.06465635856, - 144470.3754902403, - 145661.52378918268, - 146703.50444697938, - 147516.77278786007, - 148105.65307381362, - 148419.52397702905, - 148502.31817199197, - 148328.37454560248, - 147934.47655533635, - 147459.21804422652, - 146832.49045074268, - 146089.50557264575, - 145275.03353932788, - 144269.6429554182, - 143022.7273057219, - 141538.1180750887, - 139784.1129382423, - 137735.10449908362, - 135525.79104792135, - 133257.17107982413, - 130965.9004323593, - 128806.18247164902, - 126879.93300167113, - 125151.98062633113, - 123632.46859191754, - 122347.90897725243, - 121200.98745629888, - 120159.4990043115, - 119238.6989403788, - 118421.98141757947, - 117727.56746703187, - 117169.14425088721, - 116771.41579616336, - 116511.40081155367, - 116329.3547355489, - 116190.54578661926, - 116019.69292994602, - 115756.1754699198, - 115370.94763082998, - 114872.66233819196, - 114299.18593232644, - 113688.18694891261, - 113112.15337638976, - 112602.00045748631, - 112169.73619106246, - 111795.85123926403, - 111426.13061985254, - 111007.38992180726, - 110479.79902299143, - 109818.10908285827, - 109031.06968747545, - 108150.25394829546, - 107236.55432779735, - 106362.63770298302, - 105577.5368455802, - 104899.89593812246, - 104321.21119094419, - 103807.08497930958, - 103289.26074899056, - 102713.17948997085, - 102041.3837523636, - 101256.86717405941, - 100380.0863113498, - 99455.94615616894, - 98534.50101863313, - 97657.05434515947, - 96867.0017413091, - 96162.18609269238, - 95526.70614179979, - 94940.37994489845, - 94374.84767134304, - 93816.31484683439, - 93263.15207063647, - 92736.87725014274, - 92265.09643108555, - 91872.63957092323, - 91579.2637753172, - 91398.93931116605, - 91337.47562370023, - 91391.43757986721, - 91604.98862239558, - 92169.36413080529 - ], - "flow:branch5_seg2:RCR_2": [ - 3.794582571933747, - 5.265820506449388, - 7.27324716792963, - 9.979070827099143, - 13.2987511970316, - 17.152199263053216, - 21.475977042214815, - 25.763539861129306, - 29.579752211077942, - 32.79956984933867, - 35.01691325777762, - 35.93569216777006, - 35.802598158694096, - 34.8110446404375, - 33.05407103241827, - 30.958520969004585, - 28.8978709727641, - 26.97925728737838, - 25.29130974944164, - 23.8469615254582, - 22.57566665952543, - 21.316605419045217, - 19.927731454315104, - 18.45560616599623, - 16.901618433140307, - 15.256714625892053, - 13.695573431186634, - 12.323398885560787, - 11.057229127544643, - 9.876041393861643, - 8.782801357071776, - 7.560228923809178, - 6.070595289705551, - 4.419994091144322, - 2.574995237700714, - 0.5593481265595447, - -1.283559023367676, - -2.808812348560663, - -4.006924336256953, - -4.645192562641917, - -4.721107439621325, - -4.464937525497, - -3.9363196209296745, - -3.2285674730268914, - -2.5490027162075397, - -1.962352818708891, - -1.4133285642113942, - -0.8836521592490034, - -0.345333945820231, - 0.2709886145498973, - 0.9741557277072593, - 1.6964816865395793, - 2.3282602383635274, - 2.7883638108713886, - 3.0073384544160464, - 2.914378766327031, - 2.5637713303164706, - 2.069937279612725, - 1.5458284139157847, - 1.1220915087859138, - 0.8913436663900177, - 0.8809712496000685, - 1.03434044963109, - 1.244281529872084, - 1.3872639319509705, - 1.3452968102835057, - 1.0663822589443699, - 0.5647536017262234, - -0.06806805012295523, - -0.7055151551726955, - -1.2228488154860855, - -1.4931390252283065, - -1.4932924527340814, - -1.2772679308667485, - -0.9278131571785457, - -0.5836234610955011, - -0.37919497570751853, - -0.39621740146559614, - -0.6448878298255586, - -1.0770207591986465, - -1.590985813633281, - -2.056037797084981, - -2.38324317583539, - -2.5154059584175763, - -2.4375493433921243, - -2.215086257958426, - -1.9311302716851437, - -1.654482694892173, - -1.4369520710739845, - -1.291480204286361, - -1.1876723760841128, - -1.0653992943678334, - -0.8635008230699639, - -0.5512008757087775, - -0.11788510426365648, - 0.43653528453048457, - 1.0769539948852729, - 1.7975069175625333, - 2.6746304738742075, - 3.794582571933747 - ], - "pressure:branch5_seg2:RCR_2": [ - 94884.91875391192, - 96314.8782225634, - 98440.09813699983, - 101479.37841602268, - 105403.1810554257, - 110177.67391583098, - 115780.67910361633, - 121716.33376596289, - 127514.77830019097, - 132999.36086945777, - 137690.09697093422, - 141180.1528677411, - 143616.5862803627, - 145117.27939447394, - 145704.6668106804, - 145765.87846928285, - 145671.03252212575, - 145538.8940928167, - 145476.97258299275, - 145519.8704952464, - 145615.77787200833, - 145609.16328995067, - 145350.1898242047, - 144877.02563539165, - 144184.8235508123, - 143257.74761860925, - 142272.2583683571, - 141350.04274110464, - 140420.90997150843, - 139470.1848848861, - 138510.94488300616, - 137321.177387925, - 135741.59011913548, - 133862.79716474537, - 131636.74301643335, - 129070.55723993374, - 126514.66812619244, - 124140.65442739413, - 121985.98485765001, - 120325.95458270327, - 119214.53121244042, - 118455.85816936534, - 118013.69845265114, - 117813.57610458408, - 117650.40906288159, - 117451.05337275799, - 117266.05056449215, - 117111.45878667275, - 117014.76576331232, - 117050.18651573354, - 117234.0833099442, - 117502.4428736711, - 117739.7921604143, - 117851.7813034804, - 117749.75512194869, - 117336.94650980974, - 116643.40115589224, - 115768.36762760713, - 114819.66597302232, - 113933.62693738815, - 113217.87320114109, - 112718.87552776842, - 112395.91182836363, - 112149.5052397237, - 111853.2848165099, - 111375.7827257029, - 110645.35676902666, - 109656.13872282718, - 108485.98482824027, - 107258.12368616938, - 106104.81139054892, - 105171.91922275761, - 104506.1245570799, - 104073.7505922277, - 103805.74981807657, - 103566.4553351859, - 103212.13201848778, - 102643.33311061129, - 101829.65962007837, - 100802.0249918612, - 99652.25229068905, - 98512.47522587303, - 97481.94561498026, - 96633.50844867107, - 96000.5316633234, - 95532.05771378597, - 95152.05766475007, - 94792.56172925622, - 94397.58905165055, - 93947.84927556722, - 93469.04278977084, - 93021.2630393485, - 92671.1229138435, - 92458.30009137264, - 92403.57127320305, - 92517.3388836744, - 92772.79933572882, - 93170.32553640543, - 93797.07959037724, - 94884.91875391192 - ], - "flow:branch6_seg2:RCR_3": [ - 1.0415479123310178, - 1.4150218202514386, - 1.9356867171114138, - 2.637222305300072, - 3.4696369315768134, - 4.415616211999407, - 5.463067201226899, - 6.448225278708105, - 7.2800428844139455, - 7.978989769362071, - 8.427175867449135, - 8.563198122961616, - 8.523710535866778, - 8.342438457658352, - 8.021476422810178, - 7.693363249455084, - 7.421145567415826, - 7.195918633907246, - 7.017347238478855, - 6.87703887706076, - 6.747028410018505, - 6.57507859500502, - 6.340086844908028, - 6.072171506666178, - 5.775520199796086, - 5.445885108216239, - 5.1441643968414565, - 4.892846753831863, - 4.640438135738765, - 4.392522145182325, - 4.154793994918442, - 3.8486956008564714, - 3.4560727656426415, - 3.0311140918975044, - 2.555574378670938, - 2.0392744429171246, - 1.5967907551908316, - 1.2405234931627853, - 0.9509763343277171, - 0.8038622799989666, - 0.773992795711857, - 0.7803030327611711, - 0.8293070199171032, - 0.9033580488557452, - 0.9440740166487228, - 0.9579329232851465, - 0.977053225641105, - 1.00301532599067, - 1.0452193756345474, - 1.1215827046461584, - 1.2276239722545716, - 1.3372406373467962, - 1.4180790901925469, - 1.4567192606947563, - 1.4379197660042657, - 1.3479330700938144, - 1.2134919794638697, - 1.0675517299835227, - 0.9360336166799555, - 0.8457570504686288, - 0.8122651458268983, - 0.8301177564560572, - 0.8744832420973111, - 0.9145964569666662, - 0.920038374161123, - 0.8680000488602337, - 0.7558849168546398, - 0.5976352259897847, - 0.42468458958503696, - 0.2693370848143799, - 0.15860577559713532, - 0.11843279880057134, - 0.1398148969873211, - 0.19932069079765805, - 0.27312740641482386, - 0.32515073845665454, - 0.3265903505312215, - 0.26808839416724667, - 0.1590206408128309, - 0.01850868168146808, - -0.12281584869186324, - -0.2333199809815434, - -0.299709047245991, - -0.315880408473964, - -0.2849429821065175, - -0.23301858364034964, - -0.18132267742404973, - -0.14231792184126832, - -0.123990687797068, - -0.1222459893890945, - -0.1237472263085344, - -0.11025634758375366, - -0.06804548197945025, - 0.005270716484858636, - 0.10863977593296967, - 0.23995499004996135, - 0.3868302794859478, - 0.5512523521732823, - 0.7620801068955463, - 1.0415479123310178 - ], - "pressure:branch6_seg2:RCR_3": [ - 95719.99104686073, - 97397.47181922095, - 99916.09016827795, - 103483.26885152026, - 107886.3889500382, - 113065.73435369432, - 118986.07981660326, - 124836.0650840426, - 130130.13012611399, - 134935.26816155057, - 138620.25562743068, - 140805.82365849166, - 142115.90552657767, - 142684.60220944835, - 142486.7283885743, - 142166.4351588047, - 142047.2481560301, - 142097.83889321532, - 142327.29545732395, - 142704.63644351347, - 143096.64723955002, - 143238.81182811008, - 143012.6744147488, - 142556.89405993363, - 141886.4552424171, - 140972.7362456708, - 140118.37807210162, - 139447.5588479145, - 138709.58450641346, - 137931.2247465063, - 137144.9146377652, - 135952.14453752304, - 134241.60742451373, - 132271.31571399985, - 129941.73722671827, - 127289.08349138836, - 124890.7046312067, - 122830.31091029766, - 121027.56268217962, - 119885.3522900925, - 119311.78831118994, - 118919.30340828051, - 118748.33730609617, - 118720.36860194428, - 118542.20028812718, - 118237.62697716524, - 117964.90183669074, - 117733.65661807643, - 117593.15806823056, - 117638.90451125588, - 117856.6169100908, - 118120.05139885118, - 118264.10795964082, - 118213.09438769656, - 117879.2322863669, - 117178.08203145461, - 116228.86627733133, - 115190.02757262386, - 114191.52198083496, - 113374.091417747, - 112827.56042127269, - 112537.92276134201, - 112390.67165863642, - 112234.65047806391, - 111913.29360272635, - 111301.39767274236, - 110371.73486228367, - 109181.13384330113, - 107879.38997284317, - 106628.49598443719, - 105570.8537358462, - 104850.29837573817, - 104438.20159579947, - 104229.22964864482, - 104110.69346789467, - 103901.52981914337, - 103448.81371668066, - 102692.36486126098, - 101665.64597351503, - 100454.48851059187, - 99207.89023568186, - 98087.84980755919, - 97170.1563297274, - 96496.45074609884, - 96063.29183338501, - 95748.38020288842, - 95447.88583126936, - 95097.85976735373, - 94654.25797044687, - 94132.84007761443, - 93597.68750533207, - 93141.28779680635, - 92837.51506540923, - 92705.52002814067, - 92747.1942504009, - 92958.74866773168, - 93283.5626006885, - 93734.65636519814, - 94463.13291926403, - 95719.99104686073 - ], - "flow:branch7_seg2:RCR_4": [ - 3.241204093604291, - 4.564037509970337, - 6.353015649920394, - 8.758155627997242, - 11.737959358749263, - 15.241603528818553, - 19.224670663688766, - 23.287853599494667, - 27.05278353951561, - 30.36998381687255, - 32.87656656498584, - 34.27676537308015, - 34.70493102490818, - 34.28986813433799, - 33.09522358469299, - 31.45987943723158, - 29.708964941797294, - 27.97097747718876, - 26.354268045732667, - 24.901556356748074, - 23.582356391407526, - 22.281943207202527, - 20.886292852245376, - 19.42272264281936, - 17.88839290181061, - 16.273292139303702, - 14.711887887928842, - 13.297772947536783, - 11.97861298190402, - 10.740145853839524, - 9.588158973939969, - 8.352300815884766, - 6.9088319544554935, - 5.325431606827753, - 3.570043849655253, - 1.6526807933001948, - -0.15742181876356703, - -1.725886638193136, - -3.024462433053385, - -3.8524573495886605, - -4.179748149456104, - -4.1700339040907775, - -3.871865245754176, - -3.36196564490793, - -2.813366919571356, - -2.2974687063822246, - -1.7877989722322563, - -1.279131466924582, - -0.7552394812606261, - -0.16334598260333721, - 0.5065149152119545, - 1.2039018910929515, - 1.8393729417920681, - 2.3404115884994137, - 2.6414557613489005, - 2.6737176922115027, - 2.4667473441325365, - 2.1050483764465695, - 1.680596040009081, - 1.3056498017894689, - 1.0681164312083384, - 1.006137769281448, - 1.0883420620929822, - 1.2361718040573366, - 1.349791022202963, - 1.326481623942378, - 1.1110837789153298, - 0.7012853733204331, - 0.16077524959299966, - -0.4109187650455665, - -0.9081020035823298, - -1.2169622261224624, - -1.3017804779088076, - -1.191470603114712, - -0.9446743983186668, - -0.6713320616018683, - -0.4867696094696311, - -0.47045769370850377, - -0.6461567348783949, - -0.9876991363197157, - -1.4205280389894646, - -1.8388272103788628, - -2.162412869932357, - -2.333654949870306, - -2.3278613356696054, - -2.186710684245982, - -1.9730148526898599, - -1.7441253076461873, - -1.5474606791102985, - -1.4011887189075802, - -1.2878092046788874, - -1.1625358993008965, - -0.9751635968898603, - -0.6962498899600463, - -0.3119063076154847, - 0.18255481736033674, - 0.7627705665626618, - 1.4238803820474413, - 2.2256930645000095, - 3.241204093604291 - ], - "pressure:branch7_seg2:RCR_4": [ - 94215.84288090184, - 95441.4229694233, - 97275.51695643218, - 99917.71945294578, - 103377.06453498383, - 107647.71840135875, - 112726.83847957081, - 118232.84522970808, - 123767.12388156996, - 129142.33361030695, - 133936.28515548905, - 137760.12254592992, - 140658.29704498776, - 142685.7976423399, - 143835.481617432, - 144399.60196834567, - 144687.35861842526, - 144826.8733350482, - 144935.35785290762, - 145069.59729930523, - 145213.21865919215, - 145256.422102784, - 145079.9436409005, - 144704.6282742268, - 144122.39947542342, - 143317.3327296704, - 142424.40821221465, - 141549.8686700868, - 140652.3122863557, - 139723.8197971107, - 138779.6313769478, - 137647.41898014233, - 136187.29557360802, - 134454.02415858657, - 132402.6344314888, - 130028.05329586187, - 127602.59023869946, - 125280.45518037053, - 123112.71761655604, - 121335.84107123206, - 120024.90209191763, - 119049.66284614553, - 118386.56706418819, - 117979.9540360569, - 117664.15410303624, - 117365.1571067409, - 117108.03617646288, - 116897.64661980703, - 116750.62736130832, - 116724.0998617007, - 116834.64208405331, - 117035.67403832967, - 117234.09051377326, - 117347.2013723813, - 117293.65569030639, - 116982.50507662179, - 116421.31060101428, - 115679.04246117026, - 114840.13673817989, - 114018.50923664075, - 113312.25188255504, - 112774.33237111043, - 112386.96899249697, - 112079.41428680789, - 111751.31706395742, - 111290.38135819527, - 110625.85033794973, - 109738.24536639308, - 108678.28233212724, - 107540.43806484179, - 106434.39790015484, - 105488.0067346748, - 104756.14919557185, - 104227.78561883018, - 103857.68720423082, - 103541.03548812165, - 103157.3462667502, - 102614.0729150686, - 101871.0680288367, - 100939.28698543856, - 99883.32460584208, - 98807.89466315621, - 97799.85131120747, - 96928.75559115714, - 96234.50460289695, - 95688.48263310421, - 95235.53881405678, - 94820.89409065705, - 94395.25222299091, - 93936.17299308006, - 93457.57103041599, - 93003.9884995209, - 92629.77647304958, - 92371.63234741145, - 92252.17439674618, - 92285.35911949442, - 92454.8312862454, - 92762.16918295901, - 93277.07483755067, - 94215.84288090184 - ] + { + "bc_name": "RCR_1", + "bc_type": "RCR", + "bc_values": { + "C": 0.00060244, + "Pd": 0.0, + "Rd": 3163.0000000000005, + "Rp": 256.0 + } }, - "dy": { - "flow:branch0_seg0:J0": [ - 820.7215490613082, - 1089.5706677150113, - 1478.4097978085879, - 1862.4285377017757, - 2276.1614273865616, - 2636.8095684323357, - 2877.526149067736, - 2905.9333932712216, - 2685.3355532785718, - 2406.6372680727254, - 1829.7065422206892, - 1189.2487836086316, - 678.8473844617928, - 75.0772735171606, - -295.59662889178844, - -562.5060675982423, - -676.4827947193329, - -699.8774926969703, - -748.1827976750751, - -682.1524349947059, - -754.2866545802742, - -831.0494157918466, - -925.1386131324506, - -1055.283785500705, - -1098.925135134438, - -1191.9053331841642, - -1146.7505511382524, - -1091.5505179947916, - -1100.4946144560836, - -1030.3188644866468, - -1079.5729121433203, - -1183.0072896701765, - -1282.550485391545, - -1420.5775097911744, - -1533.7334169791714, - -1550.6242556062277, - -1469.130777358387, - -1329.1335882329674, - -1091.5690812835644, - -801.8424479111313, - -518.5570406786147, - -315.123495456129, - -124.35685262513643, - -2.6899920100854904, - 30.337164566123537, - 80.4044227578722, - 114.44640696934641, - 165.81038953352038, - 236.5492046626251, - 311.86409896006677, - 391.86713269347166, - 396.44513054289587, - 373.1747872995751, - 294.64358213522763, - 154.6072085071777, - 22.749062975777466, - -108.3209498279736, - -167.58700820460209, - -181.72147651326299, - -135.35366175409845, - -41.01185392095958, - 37.35471143500617, - 104.87268231102173, - 103.20840468959244, - 49.27804809620562, - -53.06924879494892, - -182.1083207849199, - -281.1266853074404, - -345.72763744172704, - -342.66132503815527, - -265.4283636224716, - -154.4614628701448, - -27.915227921187373, - 69.83155759412185, - 120.38394534569649, - 108.11194868001309, - 29.630899519405784, - -71.1155641762674, - -181.77531446252104, - -260.2558773221472, - -285.9852930241166, - -257.1074752050386, - -185.45597209899748, - -88.79203095172922, - 6.296774450034815, - 68.1274808709373, - 101.08697269830978, - 101.04821591231762, - 84.10266168623959, - 66.25832617923913, - 67.76845035328012, - 100.30859573287708, - 153.06402418839153, - 223.47870120942787, - 296.44960872192047, - 367.1756766898289, - 432.774052824912, - 507.5477770781599, - 643.7412655145386, - 820.7215490613082 - ], - "pressure:branch0_seg0:J0": [ - 282654.5108816577, - 309175.5177247969, - 447386.19955476903, - 518739.6605798818, - 591952.7129886831, - 681052.9066334267, - 615313.5218778573, - 534139.2578071905, - 478937.608070944, - 317379.9588129607, - 140708.83260450335, - 64053.60163882457, - 17448.724291169176, - -86722.47307238543, - -65087.10356735015, - -9867.661330186995, - -3523.6218115276474, - 28327.073981875084, - 33828.96749137115, - 35524.533816639705, - 215.97733678926218, - -62321.85361982361, - -62455.681693142455, - -93310.89907249196, - -117659.94635060965, - -87639.40831777733, - -67491.11599212087, - -74789.95869891442, - -86996.6006052843, - -78362.09948045382, - -138643.4485542102, - -221858.7670403141, - -218270.98159995835, - -262851.08391698083, - -322070.0372757088, - -240900.3941966527, - -194459.43337961205, - -190336.85744071746, - -78888.42709742587, - -18290.308665842032, - -25755.887423945805, - 3133.149720774186, - 16871.458767567095, - -19706.66303535631, - -37231.582840846364, - -23038.12121561766, - -17323.884903196154, - -10286.167455368151, - 19673.761934466762, - 35691.46774864221, - 37784.43962508979, - 12915.493132373707, - -15315.43854555964, - -43412.01348111442, - -96293.68521907936, - -116217.03036902583, - -116042.7537813435, - -107430.34354095146, - -76904.61449206057, - -43273.6247943589, - -12536.450689377858, - -3605.1438949975827, - -14087.639993866305, - -38674.82033562142, - -79690.58285938588, - -114664.50089150945, - -142065.0457025937, - -145918.67659339312, - -129713.41376844227, - -106176.07073444972, - -56006.80233190021, - -21966.701266488075, - -8240.359036545457, - -680.0411203989454, - -22163.501580139662, - -57436.558483145855, - -94797.91396285317, - -123645.42429328691, - -136914.17087360882, - -135072.40360506036, - -111026.38497128325, - -84065.98336675022, - -55568.38500044924, - -27592.65621269479, - -21934.763912337174, - -26623.267545126724, - -36494.72715261804, - -49519.65867081749, - -57801.17549910452, - -56682.282495355415, - -43556.27830582518, - -22152.47555859287, - -2879.9982715963724, - 15802.724832233685, - 33484.715883323974, - 40605.132288222754, - 54440.583208953445, - 87944.9733807003, - 137864.09172887003, - 282654.5108816577 - ], - "flow:J0:branch1_seg0": [ - 264.8641243061731, - 355.75795568180604, - 484.97103445361415, - 624.9179065621718, - 744.5448772042132, - 861.4859484624749, - 928.5761802245522, - 884.5179165811094, - 785.3120075016556, - 644.6564214485787, - 405.32833897231933, - 155.0456881185963, - -39.758890722230404, - -230.04776733110336, - -363.5051438648689, - -411.36954675189844, - -410.27709052475467, - -386.7379247263073, - -348.24377924524276, - -306.1611024330951, - -288.2425451077311, - -300.64885151447186, - -321.55392657776065, - -336.1520253081189, - -353.05668660217196, - -360.7710515826823, - -329.3664728064149, - -296.8409229516823, - -282.25294318432964, - -257.64779910787564, - -256.91668220715496, - -298.66861932709844, - -339.3711126707126, - -373.33295497907415, - -418.4578079710174, - -422.10874611288176, - -372.25767250113915, - -315.65419121253643, - -227.43962188742995, - -106.98568445859522, - -11.263724923930466, - 52.48520728646596, - 111.40486976206772, - 134.9285663192496, - 126.65874844350897, - 119.54837021245379, - 117.45763285779546, - 116.73516334678662, - 126.41974942313881, - 144.44509049456002, - 157.72186459175762, - 151.42581055925137, - 126.90703423347405, - 87.53117185393863, - 30.26684063864819, - -30.694076583698283, - -75.1294282887044, - -97.82959241914519, - -96.4153528047093, - -70.60433222257757, - -30.84070805819064, - 8.268531402020592, - 32.40470869566469, - 34.60869419717752, - 12.151631001895051, - -29.283153843486975, - -75.89027066272368, - -114.35837381600196, - -131.48972669318917, - -124.33263944938321, - -90.10582048003957, - -38.1472651337127, - 10.896478393736423, - 49.607492429618326, - 67.0354760101143, - 56.43005272793414, - 23.03598034913212, - -21.81297482107907, - -64.14622334695055, - -94.65016917037515, - -101.07377160720277, - -84.98949032010498, - -54.301538461009436, - -13.401716764919104, - 23.725996588521422, - 46.293210519404866, - 54.676071352198385, - 50.60341430354578, - 38.834298417922895, - 27.712486116328577, - 25.06008468518361, - 34.55419251936648, - 53.606049581232185, - 76.68021267945512, - 101.91905110072842, - 124.70541698461163, - 141.73458715558144, - 164.37898556031865, - 207.32562973222585, - 264.8641243061731 - ], - "pressure:J0:branch1_seg0": [ - 282654.5108816577, - 309175.5177247969, - 447386.19955476903, - 518739.6605798818, - 591952.7129886831, - 681052.9066334267, - 615313.5218778573, - 534139.2578071905, - 478937.608070944, - 317379.9588129607, - 140708.83260450335, - 64053.60163882457, - 17448.724291169176, - -86722.47307238543, - -65087.10356735015, - -9867.661330186995, - -3523.6218115276474, - 28327.073981875084, - 33828.96749137115, - 35524.533816639705, - 215.97733678926218, - -62321.85361982361, - -62455.681693142455, - -93310.89907249196, - -117659.94635060965, - -87639.40831777733, - -67491.11599212087, - -74789.95869891442, - -86996.6006052843, - -78362.09948045382, - -138643.4485542102, - -221858.7670403141, - -218270.98159995835, - -262851.08391698083, - -322070.0372757088, - -240900.3941966527, - -194459.43337961205, - -190336.85744071746, - -78888.42709742587, - -18290.308665842032, - -25755.887423945805, - 3133.149720774186, - 16871.458767567095, - -19706.66303535631, - -37231.582840846364, - -23038.12121561766, - -17323.884903196154, - -10286.167455368151, - 19673.761934466762, - 35691.46774864221, - 37784.43962508979, - 12915.493132373707, - -15315.43854555964, - -43412.01348111442, - -96293.68521907936, - -116217.03036902583, - -116042.7537813435, - -107430.34354095146, - -76904.61449206057, - -43273.6247943589, - -12536.450689377858, - -3605.1438949975827, - -14087.639993866305, - -38674.82033562142, - -79690.58285938588, - -114664.50089150945, - -142065.0457025937, - -145918.67659339312, - -129713.41376844227, - -106176.07073444972, - -56006.80233190021, - -21966.701266488075, - -8240.359036545457, - -680.0411203989454, - -22163.501580139662, - -57436.558483145855, - -94797.91396285317, - -123645.42429328691, - -136914.17087360882, - -135072.40360506036, - -111026.38497128325, - -84065.98336675022, - -55568.38500044924, - -27592.65621269479, - -21934.763912337174, - -26623.267545126724, - -36494.72715261804, - -49519.65867081749, - -57801.17549910452, - -56682.282495355415, - -43556.27830582518, - -22152.47555859287, - -2879.9982715963724, - 15802.724832233685, - 33484.715883323974, - 40605.132288222754, - 54440.583208953445, - 87944.9733807003, - 137864.09172887003, - 282654.5108816577 - ], - "flow:J0:branch3_seg0": [ - 424.3797912917064, - 555.7696152699405, - 749.7895629557302, - 924.5323323668594, - 1162.2867661497335, - 1351.5629578080682, - 1498.9433395653184, - 1603.8839429131185, - 1540.4999976981865, - 1478.9245477857773, - 1267.383810636796, - 1002.3587180252833, - 778.2049200924896, - 452.6196925770632, - 272.0739349400208, - 64.28891839036329, - -61.87977055861058, - -128.46618345555638, - -239.6971390826705, - -239.46718395260078, - -338.25776607106945, - -394.584513946617, - -455.85675632163606, - -563.6475761848418, - -581.502636572934, - -663.5900817784768, - -667.5780416918487, - -661.8611179349217, - -691.8150775768577, - -658.2880417182246, - -706.6969172945827, - -744.209664957436, - -781.5199827413749, - -868.5446999338055, - -913.855132524859, - -927.9840806269399, - -925.3841496100699, - -872.5208990777204, - -769.4492336322829, - -661.8937751404617, - -520.073784534329, - -408.3384470042393, - -302.098564966161, - -210.74954175641116, - -160.39074312316157, - -96.83806661156046, - -58.122327703434806, - -4.893517030902874, - 51.314622414343965, - 99.24659979923834, - 159.65164370383897, - 174.95177957419546, - 189.95986017626214, - 171.84352951838238, - 118.65983474469441, - 78.27972262894207, - 12.002132539061307, - -15.928141899491639, - -35.46874581613141, - -31.054550029627748, - 1.357309565283045, - 20.176006419661604, - 52.27816397447858, - 49.15428845083911, - 31.29112751699843, - -6.805914312446811, - -65.0210667691815, - -106.79415481743453, - -147.58258874329394, - -157.81017093478113, - -134.741175017642, - -103.80262895903786, - -51.25730160112355, - -10.626003646487462, - 15.97064054342796, - 22.57278397745182, - -2.9884490739847682, - -34.70289565963469, - -81.42925481383517, - -115.15525295714558, - -133.41845508548337, - -131.17533678207866, - -107.65931205552334, - -73.64089894660886, - -34.36474406310222, - -5.143942912598905, - 16.942523813543147, - 24.833558310249863, - 26.993239477286544, - 26.508950734581525, - 31.867151933021656, - 49.49070021735946, - 72.88335360525268, - 108.33796268983842, - 143.34352800974017, - 180.42693660965642, - 221.27145669364833, - 262.58531669073244, - 333.94742559113735, - 424.3797912917064 - ], - "pressure:J0:branch3_seg0": [ - 282654.5108816577, - 309175.5177247969, - 447386.19955476903, - 518739.6605798818, - 591952.7129886831, - 681052.9066334267, - 615313.5218778573, - 534139.2578071905, - 478937.608070944, - 317379.9588129607, - 140708.83260450335, - 64053.60163882457, - 17448.724291169176, - -86722.47307238543, - -65087.10356735015, - -9867.661330186995, - -3523.6218115276474, - 28327.073981875084, - 33828.96749137115, - 35524.533816639705, - 215.97733678926218, - -62321.85361982361, - -62455.681693142455, - -93310.89907249196, - -117659.94635060965, - -87639.40831777733, - -67491.11599212087, - -74789.95869891442, - -86996.6006052843, - -78362.09948045382, - -138643.4485542102, - -221858.7670403141, - -218270.98159995835, - -262851.08391698083, - -322070.0372757088, - -240900.3941966527, - -194459.43337961205, - -190336.85744071746, - -78888.42709742587, - -18290.308665842032, - -25755.887423945805, - 3133.149720774186, - 16871.458767567095, - -19706.66303535631, - -37231.582840846364, - -23038.12121561766, - -17323.884903196154, - -10286.167455368151, - 19673.761934466762, - 35691.46774864221, - 37784.43962508979, - 12915.493132373707, - -15315.43854555964, - -43412.01348111442, - -96293.68521907936, - -116217.03036902583, - -116042.7537813435, - -107430.34354095146, - -76904.61449206057, - -43273.6247943589, - -12536.450689377858, - -3605.1438949975827, - -14087.639993866305, - -38674.82033562142, - -79690.58285938588, - -114664.50089150945, - -142065.0457025937, - -145918.67659339312, - -129713.41376844227, - -106176.07073444972, - -56006.80233190021, - -21966.701266488075, - -8240.359036545457, - -680.0411203989454, - -22163.501580139662, - -57436.558483145855, - -94797.91396285317, - -123645.42429328691, - -136914.17087360882, - -135072.40360506036, - -111026.38497128325, - -84065.98336675022, - -55568.38500044924, - -27592.65621269479, - -21934.763912337174, - -26623.267545126724, - -36494.72715261804, - -49519.65867081749, - -57801.17549910452, - -56682.282495355415, - -43556.27830582518, - -22152.47555859287, - -2879.9982715963724, - 15802.724832233685, - 33484.715883323974, - 40605.132288222754, - 54440.583208953445, - 87944.9733807003, - 137864.09172887003, - 282654.5108816577 - ], - "flow:J0:branch5_seg0": [ - 131.47763346343095, - 178.043096763257, - 243.6492003992269, - 312.9782987727676, - 369.32978403260756, - 423.7606621617878, - 450.0066292778951, - 417.5315337769879, - 359.52354807865856, - 283.0562988383611, - 156.99439261147194, - 31.844377464768876, - -59.59864490844782, - -147.49465172881906, - -204.16541996694409, - -215.42543923679406, - -204.3259336358393, - -184.67338451513294, - -160.24187934722593, - -136.52414860904298, - -127.78634340156887, - -135.81605033077824, - -147.7279302330984, - -155.48418400772283, - -164.36581195937077, - -167.54419982299277, - -149.80603663993244, - -132.8484771081664, - -126.42659369490181, - -114.38302366054454, - -115.95931264157946, - -140.12900538563954, - -161.65938997948035, - -178.69985487828285, - -201.42047648330944, - -200.53142886639023, - -171.4889552471886, - -140.95849794270143, - -94.68022576384682, - -32.96298831207632, - 12.780468779644213, - 40.72974426164076, - 66.336842578956, - 73.13098342707725, - 64.06915924577727, - 57.69411915697625, - 55.11110181498937, - 53.968743217632806, - 58.81483282514149, - 68.17240866626867, - 74.49362439787566, - 70.06754040944931, - 56.30789288983984, - 35.26888076290392, - 5.680533123836589, - -24.8365830694668, - -45.193654078329956, - -53.82927388596541, - -49.83737789242266, - -33.6947795018917, - -11.528455428051293, - 8.91017361332352, - 20.18980964088016, - 19.445422041577505, - 5.835289577309842, - -16.98018063901364, - -41.19698335301559, - -59.9741566740074, - -66.65532200524358, - -60.518514653990906, - -40.58136812479003, - -12.511568777395462, - 12.445595286200605, - 30.85006881099028, - 37.37782879215436, - 29.10911197462637, - 9.583368244259137, - -14.59969369555287, - -36.19983630173537, - -50.45045519462567, - -51.49306633143026, - -40.942648102858726, - -23.495121582467252, - -1.749415240203411, - 16.93552192461963, - 26.978213264134865, - 29.468377532566052, - 25.6112432985234, - 18.275123791030573, - 12.036889328332022, - 10.841213735077135, - 16.263702996150755, - 26.57462100190659, - 38.46052584013514, - 51.187029611449866, - 62.04332309556056, - 69.76800897568191, - 80.58347482710737, - 102.46821019117186, - 131.47763346343095 - ], - "pressure:J0:branch5_seg0": [ - 282654.5108816577, - 309175.5177247969, - 447386.19955476903, - 518739.6605798818, - 591952.7129886831, - 681052.9066334267, - 615313.5218778573, - 534139.2578071905, - 478937.608070944, - 317379.9588129607, - 140708.83260450335, - 64053.60163882457, - 17448.724291169176, - -86722.47307238543, - -65087.10356735015, - -9867.661330186995, - -3523.6218115276474, - 28327.073981875084, - 33828.96749137115, - 35524.533816639705, - 215.97733678926218, - -62321.85361982361, - -62455.681693142455, - -93310.89907249196, - -117659.94635060965, - -87639.40831777733, - -67491.11599212087, - -74789.95869891442, - -86996.6006052843, - -78362.09948045382, - -138643.4485542102, - -221858.7670403141, - -218270.98159995835, - -262851.08391698083, - -322070.0372757088, - -240900.3941966527, - -194459.43337961205, - -190336.85744071746, - -78888.42709742587, - -18290.308665842032, - -25755.887423945805, - 3133.149720774186, - 16871.458767567095, - -19706.66303535631, - -37231.582840846364, - -23038.12121561766, - -17323.884903196154, - -10286.167455368151, - 19673.761934466762, - 35691.46774864221, - 37784.43962508979, - 12915.493132373707, - -15315.43854555964, - -43412.01348111442, - -96293.68521907936, - -116217.03036902583, - -116042.7537813435, - -107430.34354095146, - -76904.61449206057, - -43273.6247943589, - -12536.450689377858, - -3605.1438949975827, - -14087.639993866305, - -38674.82033562142, - -79690.58285938588, - -114664.50089150945, - -142065.0457025937, - -145918.67659339312, - -129713.41376844227, - -106176.07073444972, - -56006.80233190021, - -21966.701266488075, - -8240.359036545457, - -680.0411203989454, - -22163.501580139662, - -57436.558483145855, - -94797.91396285317, - -123645.42429328691, - -136914.17087360882, - -135072.40360506036, - -111026.38497128325, - -84065.98336675022, - -55568.38500044924, - -27592.65621269479, - -21934.763912337174, - -26623.267545126724, - -36494.72715261804, - -49519.65867081749, - -57801.17549910452, - -56682.282495355415, - -43556.27830582518, - -22152.47555859287, - -2879.9982715963724, - 15802.724832233685, - 33484.715883323974, - 40605.132288222754, - 54440.583208953445, - 87944.9733807003, - 137864.09172887003, - 282654.5108816577 - ], - "flow:branch1_seg0:J1": [ - 263.6046593293569, - 352.8946190441882, - 482.24998695487784, - 622.5015962102576, - 743.8735564183102, - 858.2813657357467, - 929.5546241962787, - 885.2965388509336, - 785.1362150581754, - 649.9507875358635, - 406.7724382266251, - 155.31040874170455, - -36.62770958085748, - -229.69278227426122, - -364.34680187802047, - -412.40921626835114, - -410.8177468636478, - -387.150881341859, - -348.6697672793689, - -305.2894550000624, - -287.67846969245585, - -299.3518288411512, - -320.7215359050253, - -335.96539917203694, - -351.6868148107066, - -361.7352743043886, - -329.03628743594066, - -295.9471307345354, - -283.7177395087194, - -256.7258687822411, - -255.31498598576292, - -299.43652217819596, - -338.9667324968837, - -372.8218952271968, - -418.9714871888002, - -423.87435119396525, - -373.2345393825156, - -315.5885298157554, - -229.54016966487717, - -107.08770234405308, - -11.03663865516151, - 51.93609843775966, - 111.67282124994736, - 135.89422261086875, - 126.37043630226745, - 119.40935792707545, - 117.37722311242048, - 116.47244474009742, - 125.97918104947448, - 144.227275541919, - 158.40749826300052, - 151.91850916096095, - 127.51605527190208, - 88.48116943425846, - 30.703783317707416, - -30.228621819100592, - -75.27855624363931, - -97.99058001855765, - -97.0179620772916, - -71.33002052131528, - -30.975534070324898, - 8.095341984954963, - 32.91033727062913, - 35.31009149976795, - 12.749786990654492, - -28.497720650413115, - -76.01424753499425, - -114.33297129809472, - -132.01786278154216, - -125.25269131173543, - -90.87005394069055, - -38.86382065201128, - 10.810220669181144, - 49.621582216152845, - 67.65015748579093, - 57.10782388399628, - 23.521895734257804, - -21.356228164030288, - -64.01337578042553, - -94.90832559859842, - -101.50822275566348, - -85.43165760450121, - -55.12857720925694, - -13.722744150699263, - 23.78216289941763, - 46.50980453155607, - 54.933998498459204, - 50.84660914895303, - 38.92347208742396, - 27.56838568097989, - 24.713133884100202, - 34.15245551803462, - 53.09884922157898, - 76.49925667882015, - 101.33605321266168, - 124.62558278800452, - 141.10184699183782, - 163.6318566752133, - 206.5169173736514, - 263.6046593293569 - ], - "pressure:branch1_seg0:J1": [ - 273064.61454273947, - 291588.94703517517, - 426429.5561692136, - 498219.10878435045, - 576109.621517616, - 660599.8292624658, - 613826.217226253, - 544739.6577708155, - 492950.9082422998, - 345183.3949299639, - 176770.80463603884, - 97744.82281947872, - 43557.67363853189, - -60377.88906393317, - -52049.63400212639, - -7743.316687483984, - -4338.321210212171, - 23743.34561473294, - 28118.222216834514, - 30960.27447683479, - -69.0999896210557, - -57612.11815633734, - -60155.813574836546, - -90758.15822078868, - -113554.36062773879, - -89512.6782667584, - -72338.05914054962, - -77966.00116180202, - -89112.07348088348, - -80996.8655987764, - -135152.52016498617, - -214253.86991122793, - -212893.07323586856, - -257042.78675138723, - -315711.2864926908, - -245152.9652138208, - -203001.37462929642, - -197232.72046996737, - -96613.17191260454, - -34232.46491099694, - -36512.058778698774, - -5661.5379777187245, - 9555.185226526874, - -19956.75753767941, - -35772.23119833177, - -22720.31298697104, - -17266.444310894407, - -10699.786490987703, - 17024.7942912827, - 32950.09065027775, - 36868.016349320525, - 15036.079124069505, - -10829.339230341391, - -36631.752762779295, - -87296.93868296551, - -107859.10437541077, - -111269.64765371989, - -105435.53158059416, - -78880.71186781995, - -48344.97273516139, - -18392.721527565845, - -8768.15738351842, - -15909.418883195262, - -37331.79790102896, - -75032.39127525773, - -107530.13402622275, - -135889.1870143666, - -141122.84417670465, - -128999.09263571251, - -109009.50339916018, - -62405.07766743018, - -30063.558700932997, - -14232.26411480538, - -5515.638474376154, - -22658.14957880439, - -54126.88609702007, - -88993.50667790222, - -116793.1154350175, - -131473.66181461737, - -131828.19789010592, - -111803.40048833379, - -87492.81989192122, - -60851.77326386761, - -33664.32794542026, - -26374.866175858562, - -28779.222962564327, - -36841.08881708043, - -48287.673618452915, - -55911.9600078126, - -55546.47827136155, - -44078.272558225464, - -24354.603489750945, - -6288.613688959481, - 12484.920108646504, - 29272.111183597015, - 38007.948369499834, - 51422.88790275117, - 83763.26761538681, - 129779.71511095844, - 273064.61454273947 - ], - "flow:J1:branch2_seg0": [ - 145.61169813950264, - 195.64310208275361, - 267.4934915282555, - 345.12421324127325, - 410.7580839188886, - 473.0929802832994, - 509.49957177306743, - 481.1517100650466, - 422.47818773761475, - 344.34934772084915, - 207.52414491093364, - 67.08725137150985, - -37.37448122195873, - -142.4319247789455, - -213.25083294237123, - -235.73639004139466, - -230.75858812813547, - -214.54059153139966, - -190.87223729520915, - -165.46555011482263, - -155.2406751660505, - -162.00593597100286, - -173.92179482818656, - -182.24434258728857, - -190.87878895751982, - -195.85125514389117, - -176.87430395029696, - -158.08281704062605, - -151.21482293224878, - -136.33339137889106, - -136.1149240442255, - -161.41272653006354, - -183.78152042275374, - -202.488147023098, - -227.9829006648249, - -229.63168101725395, - -200.0644525421823, - -167.36246331235822, - -118.48279723937011, - -50.2986884312124, - 2.4612615736531307, - 35.918097592114144, - 67.78359690526162, - 79.2355948362076, - 72.23095495351768, - 67.11809087118311, - 65.26765445767496, - 64.24948238017421, - 69.37795192554698, - 79.33926719915279, - 86.93095037288276, - 82.7332018875713, - 68.5240162849765, - 46.290725113476526, - 13.762106152923684, - -20.082780613527778, - -44.5546468889313, - -56.202224543166984, - -54.52730528098703, - -39.123472964989105, - -15.925357934907607, - 6.112975797394483, - 19.63713380879139, - 20.34798916316263, - 7.060345312204039, - -16.585670592666396, - -43.18531587944064, - -64.33787429145309, - -73.44583094937612, - -68.75505726232439, - -48.71907044409475, - -19.03649175240358, - 8.60760702459754, - 29.937442530456746, - 39.131042698048326, - 32.256491605199095, - 12.687420097399512, - -12.948430755531014, - -36.70989973478901, - -53.59689097939757, - -56.481471963622674, - -46.69249943587576, - -29.14907794817681, - -5.6513008314738675, - 15.130986784875303, - 27.39127347134446, - 31.447098270802986, - 28.55127899985515, - 21.41195033901649, - 14.838334871510884, - 13.26413742289164, - 18.693636059669586, - 29.434877376543106, - 42.49536394004744, - 56.29056923809873, - 68.96583382384073, - 77.8322967041925, - 90.0940043904633, - 113.96993538046794, - 145.61169813950264 - ], - "pressure:J1:branch2_seg0": [ - 273064.61454273947, - 291588.94703517517, - 426429.5561692136, - 498219.10878435045, - 576109.621517616, - 660599.8292624658, - 613826.217226253, - 544739.6577708155, - 492950.9082422998, - 345183.3949299639, - 176770.80463603884, - 97744.82281947872, - 43557.67363853189, - -60377.88906393317, - -52049.63400212639, - -7743.316687483984, - -4338.321210212171, - 23743.34561473294, - 28118.222216834514, - 30960.27447683479, - -69.0999896210557, - -57612.11815633734, - -60155.813574836546, - -90758.15822078868, - -113554.36062773879, - -89512.6782667584, - -72338.05914054962, - -77966.00116180202, - -89112.07348088348, - -80996.8655987764, - -135152.52016498617, - -214253.86991122793, - -212893.07323586856, - -257042.78675138723, - -315711.2864926908, - -245152.9652138208, - -203001.37462929642, - -197232.72046996737, - -96613.17191260454, - -34232.46491099694, - -36512.058778698774, - -5661.5379777187245, - 9555.185226526874, - -19956.75753767941, - -35772.23119833177, - -22720.31298697104, - -17266.444310894407, - -10699.786490987703, - 17024.7942912827, - 32950.09065027775, - 36868.016349320525, - 15036.079124069505, - -10829.339230341391, - -36631.752762779295, - -87296.93868296551, - -107859.10437541077, - -111269.64765371989, - -105435.53158059416, - -78880.71186781995, - -48344.97273516139, - -18392.721527565845, - -8768.15738351842, - -15909.418883195262, - -37331.79790102896, - -75032.39127525773, - -107530.13402622275, - -135889.1870143666, - -141122.84417670465, - -128999.09263571251, - -109009.50339916018, - -62405.07766743018, - -30063.558700932997, - -14232.26411480538, - -5515.638474376154, - -22658.14957880439, - -54126.88609702007, - -88993.50667790222, - -116793.1154350175, - -131473.66181461737, - -131828.19789010592, - -111803.40048833379, - -87492.81989192122, - -60851.77326386761, - -33664.32794542026, - -26374.866175858562, - -28779.222962564327, - -36841.08881708043, - -48287.673618452915, - -55911.9600078126, - -55546.47827136155, - -44078.272558225464, - -24354.603489750945, - -6288.613688959481, - 12484.920108646504, - 29272.111183597015, - 38007.948369499834, - 51422.88790275117, - 83763.26761538681, - 129779.71511095844, - 273064.61454273947 - ], - "flow:J1:branch7_seg0": [ - 117.99296118985302, - 157.25151696143433, - 214.75649542661915, - 277.3773829689866, - 333.1154724994202, - 385.18838545244637, - 420.05505242321306, - 404.1448287858824, - 362.6580273205616, - 305.6014398150057, - 199.2482933156872, - 88.22315737020149, - 0.7467716410860787, - -87.26085749531677, - -151.0959689356727, - -176.67282622694387, - -180.05915873550987, - -172.61028981044316, - -157.797529984167, - -139.82390488525002, - -132.43779452640393, - -137.34589287014518, - -146.79974107682594, - -153.72105658474004, - -160.8080258532064, - -165.8840191604896, - -152.161983485647, - -137.86431369390255, - -132.50291657646878, - -120.39247740334856, - -119.2000619415429, - -138.0237956481363, - -155.18521207413116, - -170.33374820409907, - -190.98858652397487, - -194.2426701767109, - -173.17008684033377, - -148.22606650339554, - -111.05737242550595, - -56.78901391283885, - -13.497900228814256, - 16.018000845644355, - 43.88922434468472, - 56.65862777466276, - 54.139481348748774, - 52.291267055892796, - 52.109568654745345, - 52.22296235992348, - 56.6012291239273, - 64.88800834276621, - 71.47654789011766, - 69.18530727338891, - 58.992038986925124, - 42.19044432078287, - 16.941677164785606, - -10.14584120557231, - -30.723909354708898, - -41.78835547539213, - -42.49065679630514, - -32.206547556325724, - -15.05017613541736, - 1.9823661875613696, - 13.273203461837086, - 14.962102336606018, - 5.689441678451147, - -11.912050057746722, - -32.828931655553234, - -49.99509700664162, - -58.57203183216609, - -56.49763404941092, - -42.15098349659506, - -19.82732889960709, - 2.202613644584493, - 19.684139685695698, - 28.51911478774292, - 24.85133227879683, - 10.834475636858336, - -8.407797408499524, - -27.303476045636422, - -41.311434619201606, - -45.02675079204104, - -38.739158168625735, - -25.97949926108016, - -8.071443319224413, - 8.65117611454187, - 19.118531060212607, - 23.48690022765667, - 22.295330149097815, - 17.511521748406786, - 12.730050809470011, - 11.448996461208608, - 15.458819458365626, - 23.663971845035903, - 34.00389273877302, - 45.045483974562906, - 55.659748964163725, - 63.26955028764525, - 73.53785228474952, - 92.54698199318243, - 117.99296118985302 - ], - "pressure:J1:branch7_seg0": [ - 273064.61454273947, - 291588.94703517517, - 426429.5561692136, - 498219.10878435045, - 576109.621517616, - 660599.8292624658, - 613826.217226253, - 544739.6577708155, - 492950.9082422998, - 345183.3949299639, - 176770.80463603884, - 97744.82281947872, - 43557.67363853189, - -60377.88906393317, - -52049.63400212639, - -7743.316687483984, - -4338.321210212171, - 23743.34561473294, - 28118.222216834514, - 30960.27447683479, - -69.0999896210557, - -57612.11815633734, - -60155.813574836546, - -90758.15822078868, - -113554.36062773879, - -89512.6782667584, - -72338.05914054962, - -77966.00116180202, - -89112.07348088348, - -80996.8655987764, - -135152.52016498617, - -214253.86991122793, - -212893.07323586856, - -257042.78675138723, - -315711.2864926908, - -245152.9652138208, - -203001.37462929642, - -197232.72046996737, - -96613.17191260454, - -34232.46491099694, - -36512.058778698774, - -5661.5379777187245, - 9555.185226526874, - -19956.75753767941, - -35772.23119833177, - -22720.31298697104, - -17266.444310894407, - -10699.786490987703, - 17024.7942912827, - 32950.09065027775, - 36868.016349320525, - 15036.079124069505, - -10829.339230341391, - -36631.752762779295, - -87296.93868296551, - -107859.10437541077, - -111269.64765371989, - -105435.53158059416, - -78880.71186781995, - -48344.97273516139, - -18392.721527565845, - -8768.15738351842, - -15909.418883195262, - -37331.79790102896, - -75032.39127525773, - -107530.13402622275, - -135889.1870143666, - -141122.84417670465, - -128999.09263571251, - -109009.50339916018, - -62405.07766743018, - -30063.558700932997, - -14232.26411480538, - -5515.638474376154, - -22658.14957880439, - -54126.88609702007, - -88993.50667790222, - -116793.1154350175, - -131473.66181461737, - -131828.19789010592, - -111803.40048833379, - -87492.81989192122, - -60851.77326386761, - -33664.32794542026, - -26374.866175858562, - -28779.222962564327, - -36841.08881708043, - -48287.673618452915, - -55911.9600078126, - -55546.47827136155, - -44078.272558225464, - -24354.603489750945, - -6288.613688959481, - 12484.920108646504, - 29272.111183597015, - 38007.948369499834, - 51422.88790275117, - 83763.26761538681, - 129779.71511095844, - 273064.61454273947 - ], - "flow:branch3_seg0:J2": [ - 423.7649961391189, - 554.3707098405597, - 748.4627568754075, - 923.3566153548065, - 1161.9670848536628, - 1350.0119063731695, - 1499.4334633084386, - 1604.2817938271126, - 1540.423776292949, - 1481.5129383591673, - 1268.0984872421097, - 1002.4661063892734, - 779.7253615205983, - 452.7785278764697, - 271.64205314066936, - 63.77690383426122, - -62.160490750218614, - -128.6698539373206, - -239.9118484433558, - -239.04669065445808, - -337.98021813700257, - -393.9632677478973, - -455.44715816640246, - -563.5619962387973, - -580.8362886625542, - -664.0578327223436, - -667.4214793735778, - -661.4173917937009, - -692.5309422482588, - -657.8382184320508, - -705.9096101566338, - -744.5858223671075, - -781.3207839435701, - -868.2929518980073, - -914.103630878958, - -928.8433022638762, - -925.8578748647162, - -872.4854570349181, - -770.4726857846006, - -661.9413920974333, - -519.9609692552998, - -408.60592960201774, - -301.967016524339, - -210.27661750736797, - -160.531274989512, - -96.90574437536993, - -58.160963687597075, - -5.021847802092898, - 51.09969150611932, - 99.14010821084354, - 159.9872398962765, - 175.19317382254582, - 190.2579482745547, - 172.30907898110962, - 118.87379604080456, - 78.5077184104855, - 11.929191262730154, - -16.007180897244023, - -35.76357878943655, - -31.410069196352612, - 1.291193686505457, - 20.09108907641912, - 52.525447778891845, - 49.49765114603532, - 31.583790575108832, - -6.421432803335519, - -65.08167360670544, - -106.78177225702517, - -147.84094125573193, - -158.26047611751403, - -135.115528060024, - -104.15352983268157, - -51.299830258423, - -10.61906446567541, - 16.271384856344234, - 22.904654961530962, - -2.7503977237167594, - -34.479295686115925, - -81.36405346860656, - -115.28173331746511, - -133.63122132222045, - -131.39192111151968, - -108.06413569673121, - -73.7981013061519, - -34.33727975758063, - -5.037824173192754, - 17.068809653799857, - 24.952752054361216, - 27.036989478872453, - 26.438583646806784, - 31.69744226073579, - 49.29422673869502, - 72.63520168234837, - 108.24943239537917, - 143.05829348497892, - 180.38773901104508, - 220.96182080214024, - 262.2201240114443, - 333.55226970325424, - 423.7649961391189 - ], - "pressure:branch3_seg0:J2": [ - 272181.50848515995, - 296167.43975732685, - 428606.7483272615, - 500442.1031460593, - 577099.9716371021, - 651144.2752599689, - 607353.6070700928, - 519522.37700059003, - 473946.60895648296, - 327604.926058671, - 134126.2405782199, - 89473.75540687946, - 27758.98681238205, - -71992.46739094774, - -46730.44820113433, - -6829.4051082410415, - 12680.359071820872, - 30681.355481318067, - 42045.16878633098, - 43516.18146694174, - 1963.874561255821, - -43766.0807065162, - -60129.92239097044, - -80475.47298480842, - -106671.34103791005, - -85499.70330399144, - -54460.5118294842, - -76708.25201988034, - -81009.6049285923, - -70059.58091033346, - -136437.89605425598, - -211608.56111997945, - -210999.5378561691, - -254409.1907259913, - -314737.2186911503, - -240340.044163851, - -194774.19153084853, - -189693.11856066162, - -90934.4794067833, - -26411.041133722447, - -34338.19760323282, - -6645.954386279893, - 10999.055318274304, - -26379.802076991804, - -41486.19277304884, - -25827.605872297743, - -22710.659216732507, - -12258.353262589337, - 13103.162790943139, - 32520.12872883811, - 35044.86599646993, - 10120.977005187886, - -12980.034739719098, - -43110.27246409896, - -90825.73797313446, - -111843.24167625484, - -113036.48160237541, - -103776.6988703116, - -78330.21763351151, - -43161.30785822361, - -15523.30156043801, - -5980.11574371878, - -14424.970749223834, - -39262.14453860615, - -76526.69086626814, - -111265.43703008871, - -138036.2387943387, - -141529.5285140626, - -128575.46288357423, - -106074.79876527483, - -58615.93397984286, - -26150.256503854915, - -10528.02273151427, - -4807.007021782568, - -22584.482543382233, - -57259.29006875291, - -92604.34580760702, - -119537.1847066292, - -134380.5344508278, - -131700.99070956258, - -110511.45105888793, - -84911.2356860969, - -58056.76834587681, - -30230.71552267884, - -24572.83658692506, - -28730.349777839067, - -37355.27057505007, - -50234.24683761147, - -57478.24253171956, - -56976.821266592204, - -44230.63727889499, - -24174.3651068255, - -5367.742612232771, - 13217.501142635281, - 29457.707895888365, - 38378.565532036366, - 50057.704620191886, - 84109.60785548326, - 131525.28911509257, - 272181.50848515995 - ], - "flow:J2:branch4_seg0": [ - 389.8536315905925, - 507.34037661982575, - 683.0228459209213, - 841.7374045329192, - 1069.5296259495963, - 1246.6103321482121, - 1392.6531440754243, - 1510.7729322985638, - 1463.2079626876578, - 1424.6090479861903, - 1241.3091578561537, - 999.459685622248, - 792.336721916904, - 481.40416611822576, - 306.20145310047167, - 94.17548783088606, - -37.60102805778822, - -108.56559981525444, - -223.63904251478826, - -225.44670797806356, - -322.7020882803517, - -372.3661735873546, - -428.40081002030695, - -534.0757000256702, - -548.4868885494882, - -631.2050669673657, - -639.18625378132, - -635.8369701935708, - -667.2745114618465, - -633.798379607003, - -677.7942878072724, - -707.5217284245397, - -739.8193062020864, - -822.0928549388831, - -860.9511020194649, - -879.8468713449012, - -886.7730231000417, - -838.9571808858663, - -747.9818947140546, - -654.9422233135076, - -519.7672369809812, - -411.48181543262194, - -308.9387974102483, - -216.09921628827578, - -162.6978342929534, - -98.54872559754457, - -60.559834903124944, - -8.38456379880265, - 44.86838624708266, - 89.30146993523817, - 148.45265951158243, - 165.7124583977416, - 184.54808582270994, - 171.39571514920996, - 125.15127210842792, - 90.9166969620407, - 26.804551918665084, - -1.5105999747992818, - -24.456229015197778, - -25.605564072805127, - 1.4302246655493196, - 16.40446834244089, - 47.9598697807583, - 47.247958783319156, - 34.383103212412344, - 2.5513563825754337, - -50.56993080610688, - -89.42585205779713, - -130.87146054029463, - -144.51207775064108, - -128.05455900615127, - -104.20122681623597, - -56.04760027106605, - -17.889649340131594, - 9.615089988828762, - 20.457509630322125, - 0.6550279762120568, - -25.29437533795909, - -68.08571227543909, - -100.48505136358823, - -120.65361779154698, - -122.61462523647558, - -104.35612827111684, - -75.33467101880404, - -39.01383552661277, - -10.484009997930963, - 12.470531113046961, - 22.206360722557253, - 26.194496650929512, - 26.614077454825544, - 31.147440170560493, - 46.23368515469294, - 66.33733091422681, - 98.81955681517536, - 130.77159280035067, - 165.78565424780717, - 204.8276313988461, - 242.9187465149287, - 308.2690254193275, - 389.8536315905925 - ], - "pressure:J2:branch4_seg0": [ - 272181.50848515995, - 296167.43975732685, - 428606.7483272615, - 500442.1031460593, - 577099.9716371021, - 651144.2752599689, - 607353.6070700928, - 519522.37700059003, - 473946.60895648296, - 327604.926058671, - 134126.2405782199, - 89473.75540687946, - 27758.98681238205, - -71992.46739094774, - -46730.44820113433, - -6829.4051082410415, - 12680.359071820872, - 30681.355481318067, - 42045.16878633098, - 43516.18146694174, - 1963.874561255821, - -43766.0807065162, - -60129.92239097044, - -80475.47298480842, - -106671.34103791005, - -85499.70330399144, - -54460.5118294842, - -76708.25201988034, - -81009.6049285923, - -70059.58091033346, - -136437.89605425598, - -211608.56111997945, - -210999.5378561691, - -254409.1907259913, - -314737.2186911503, - -240340.044163851, - -194774.19153084853, - -189693.11856066162, - -90934.4794067833, - -26411.041133722447, - -34338.19760323282, - -6645.954386279893, - 10999.055318274304, - -26379.802076991804, - -41486.19277304884, - -25827.605872297743, - -22710.659216732507, - -12258.353262589337, - 13103.162790943139, - 32520.12872883811, - 35044.86599646993, - 10120.977005187886, - -12980.034739719098, - -43110.27246409896, - -90825.73797313446, - -111843.24167625484, - -113036.48160237541, - -103776.6988703116, - -78330.21763351151, - -43161.30785822361, - -15523.30156043801, - -5980.11574371878, - -14424.970749223834, - -39262.14453860615, - -76526.69086626814, - -111265.43703008871, - -138036.2387943387, - -141529.5285140626, - -128575.46288357423, - -106074.79876527483, - -58615.93397984286, - -26150.256503854915, - -10528.02273151427, - -4807.007021782568, - -22584.482543382233, - -57259.29006875291, - -92604.34580760702, - -119537.1847066292, - -134380.5344508278, - -131700.99070956258, - -110511.45105888793, - -84911.2356860969, - -58056.76834587681, - -30230.71552267884, - -24572.83658692506, - -28730.349777839067, - -37355.27057505007, - -50234.24683761147, - -57478.24253171956, - -56976.821266592204, - -44230.63727889499, - -24174.3651068255, - -5367.742612232771, - 13217.501142635281, - 29457.707895888365, - 38378.565532036366, - 50057.704620191886, - 84109.60785548326, - 131525.28911509257, - 272181.50848515995 - ], - "flow:J2:branch6_seg0": [ - 33.91136454852848, - 47.03033322073444, - 65.43991095448128, - 81.619210821893, - 92.437458904065, - 103.4015742249402, - 106.78031923301924, - 93.50886152853106, - 77.21581360531069, - 56.90389037297332, - 26.789329385973264, - 3.006420767043786, - -12.611360396302914, - -28.625638241729302, - -34.559399959757094, - -30.398583996583664, - -24.559462692451625, - -20.104254122065555, - -16.27280592854544, - -13.599982676387766, - -15.278129856641323, - -21.597094160525273, - -27.04634814607731, - -29.486296213134686, - -32.34940011301212, - -32.85276575495368, - -28.23522559224259, - -25.5804216001468, - -25.25643078643839, - -24.03983882507711, - -28.11532234935304, - -37.06409394262994, - -41.501477741492806, - -46.20009695912412, - -53.152528859498, - -48.99643091897537, - -39.08485176467728, - -33.52827614904849, - -22.490791070541093, - -6.999168783927768, - -0.19373227431650528, - 2.8758858306038584, - 6.971780885909353, - 5.822598780907114, - 2.166559303441684, - 1.6429812221747084, - 2.3988712155278007, - 3.3627159967109965, - 6.23130525903852, - 9.838638275605328, - 11.534580384694058, - 9.480715424803757, - 5.709862451845173, - 0.9133638318992223, - -6.277476067623168, - -12.408978551553021, - -14.875360655933786, - -14.496580922443856, - -11.307349774240274, - -5.804505123547483, - -0.13903097904447967, - 3.6866207339802872, - 4.56557799813209, - 2.2496923627149323, - -2.7993126373057327, - -8.97278918591018, - -14.511742800598677, - -17.35592019922675, - -16.969480715436372, - -13.748398366872824, - -7.060969053872617, - 0.047696983554931134, - 4.747770012643565, - 7.270584874456184, - 6.656294867516594, - 2.4471453312093296, - -3.405425699927967, - -9.184920348157787, - -13.278341193165891, - -14.796681953875689, - -12.977603530673429, - -8.777295875044368, - -3.708007425614364, - 1.5365697126523234, - 4.676555769030121, - 5.446185824736282, - 4.59827854075396, - 2.7463913318097473, - 0.842492827935827, - -0.17549380801645775, - 0.5500020901748875, - 3.06054158400396, - 6.2978707681242865, - 9.42987558020245, - 12.286700684628958, - 14.602084763238018, - 16.13418940329433, - 19.301377496516245, - 25.283244283926397, - 33.91136454852848 - ], - "pressure:J2:branch6_seg0": [ - 272181.50848515995, - 296167.43975732685, - 428606.7483272615, - 500442.1031460593, - 577099.9716371021, - 651144.2752599689, - 607353.6070700928, - 519522.37700059003, - 473946.60895648296, - 327604.926058671, - 134126.2405782199, - 89473.75540687946, - 27758.98681238205, - -71992.46739094774, - -46730.44820113433, - -6829.4051082410415, - 12680.359071820872, - 30681.355481318067, - 42045.16878633098, - 43516.18146694174, - 1963.874561255821, - -43766.0807065162, - -60129.92239097044, - -80475.47298480842, - -106671.34103791005, - -85499.70330399144, - -54460.5118294842, - -76708.25201988034, - -81009.6049285923, - -70059.58091033346, - -136437.89605425598, - -211608.56111997945, - -210999.5378561691, - -254409.1907259913, - -314737.2186911503, - -240340.044163851, - -194774.19153084853, - -189693.11856066162, - -90934.4794067833, - -26411.041133722447, - -34338.19760323282, - -6645.954386279893, - 10999.055318274304, - -26379.802076991804, - -41486.19277304884, - -25827.605872297743, - -22710.659216732507, - -12258.353262589337, - 13103.162790943139, - 32520.12872883811, - 35044.86599646993, - 10120.977005187886, - -12980.034739719098, - -43110.27246409896, - -90825.73797313446, - -111843.24167625484, - -113036.48160237541, - -103776.6988703116, - -78330.21763351151, - -43161.30785822361, - -15523.30156043801, - -5980.11574371878, - -14424.970749223834, - -39262.14453860615, - -76526.69086626814, - -111265.43703008871, - -138036.2387943387, - -141529.5285140626, - -128575.46288357423, - -106074.79876527483, - -58615.93397984286, - -26150.256503854915, - -10528.02273151427, - -4807.007021782568, - -22584.482543382233, - -57259.29006875291, - -92604.34580760702, - -119537.1847066292, - -134380.5344508278, - -131700.99070956258, - -110511.45105888793, - -84911.2356860969, - -58056.76834587681, - -30230.71552267884, - -24572.83658692506, - -28730.349777839067, - -37355.27057505007, - -50234.24683761147, - -57478.24253171956, - -56976.821266592204, - -44230.63727889499, - -24174.3651068255, - -5367.742612232771, - 13217.501142635281, - 29457.707895888365, - 38378.565532036366, - 50057.704620191886, - 84109.60785548326, - 131525.28911509257, - 272181.50848515995 - ], - "flow:branch2_seg0:J3": [ - 144.68346418366906, - 193.75636161960387, - 265.3627041795882, - 343.3221838329048, - 410.3052537823807, - 470.86194642296965, - 509.89398665262536, - 481.5910252580308, - 422.3172874835986, - 348.17949718634213, - 207.98637643672487, - 67.86582442419996, - -35.691171157375486, - -141.60758220509499, - -214.1754735965872, - -236.1826469553346, - -231.24030895969926, - -214.78613561701783, - -191.0778762883225, - -164.87792670129724, - -154.9345231105479, - -160.93978556384744, - -173.41508382472654, - -181.96632218094982, - -190.09571352393456, - -196.38139797367853, - -176.59407529002945, - -157.50040294366875, - -152.19278323608944, - -135.71510278465743, - -135.04636235129558, - -161.93228179020352, - -183.58029493689352, - -202.08962541028146, - -228.2710451604532, - -230.84172399642264, - -200.77046534383342, - -167.08365859521643, - -119.98817894863095, - -50.369151413691014, - 2.4828477862902427, - 35.72926923065231, - 67.82553596453329, - 79.92269170558379, - 71.99124511139709, - 67.06496704867841, - 65.16153946965134, - 64.14732086467771, - 68.97997200527945, - 79.27597836020105, - 87.34156654836644, - 83.07946803938621, - 69.00986318111744, - 46.78846144732834, - 14.25576346236199, - -19.913468427188004, - -44.48438089228588, - -56.33700188404026, - -54.93292278018497, - -39.561221706174145, - -16.09314885440792, - 6.04258776955685, - 19.91342807308927, - 20.814160806201656, - 7.482741577919841, - -16.094185368930194, - -43.20454497005744, - -64.32606045054581, - -73.77248539334514, - -69.37426717463627, - -49.24642079172306, - -19.576224192727107, - 8.59961519415858, - 29.887547901340223, - 39.53159113425516, - 32.73068792977089, - 12.9252195994083, - -12.536973102231391, - -36.69787877835459, - -53.671029530707315, - -56.759691484013, - -47.02960119721383, - -29.61397236075845, - -6.006941176702014, - 15.249657900210652, - 27.453656271093504, - 31.649882693159114, - 28.71693349835512, - 21.44913120877359, - 14.762545336990247, - 13.046161254078122, - 18.378036017298243, - 29.133077924279647, - 42.27240532688513, - 55.96155024526791, - 68.82848284141019, - 77.43641120604183, - 89.51071054664256, - 113.46188257101115, - 144.68346418366906 - ], - "pressure:branch2_seg0:J3": [ - 224180.20316049972, - 215699.79013902554, - 317690.2950461059, - 401831.9192305831, - 487101.6708379801, - 571523.6018991048, - 599626.9857907358, - 581041.3883975429, - 548816.5635703355, - 470317.17147735733, - 340008.7726373893, - 239563.27420659718, - 159720.71610545376, - 57709.696736132086, - 9713.754595972609, - 3603.176299995304, - -4534.3677809484825, - 4390.76818474238, - 8922.570462794602, - 15910.436110976501, - 1927.9328276114693, - -30643.25989495581, - -47026.82740095529, - -71971.2644205536, - -93973.15763836743, - -97877.02127053266, - -89535.17628449273, - -88921.92453157481, - -97590.75983164068, - -92044.52729597712, - -118257.8563764447, - -170381.68647077781, - -189605.110052229, - -225677.9055986057, - -272750.53258991573, - -258249.21451942076, - -235597.69699845414, - -222695.5326616776, - -166021.79792265265, - -106460.16819165662, - -79061.5050951885, - -47093.92104953255, - -21251.355239622382, - -21290.421335011873, - -28094.116907857566, - -22243.994999206396, - -18019.876879129264, - -12792.369109787873, - 3484.001124749341, - 19117.96428346599, - 29160.9674619911, - 22801.80195401274, - 8962.153838354006, - -10234.56148438119, - -45796.668216470665, - -72786.11597268976, - -89079.28360094638, - -96014.66023713963, - -87723.39757269793, - -69844.01114902999, - -46581.78515453292, - -30709.543118292797, - -24804.76281398757, - -31144.678345040986, - -51993.657169176826, - -77206.28669056862, - -104498.82950794265, - -120468.43933198263, - -124445.84480496653, - -117871.5808102855, - -91544.47203690164, - -64470.15769891395, - -42470.766659989764, - -26447.10311506689, - -25416.047077370215, - -39096.047775429026, - -62114.81605887842, - -86294.34245904931, - -106562.52091857065, - -117907.59268901145, - -114761.77596167712, - -102468.12713292656, - -84247.0892914979, - -61648.747555767986, - -46315.238101050294, - -39308.310455209634, - -38274.60213190011, - -42622.56610096619, - -48141.966722608835, - -50711.12391365319, - -46587.196992577265, - -35309.27988276256, - -21250.495780424233, - -4977.0772102919445, - 11361.123847156245, - 24959.185853271134, - 38305.91107204972, - 61282.27636533481, - 96482.96061242557, - 224180.20316049972 - ], - "flow:J3:branch2_seg1": [ - 144.68346418366906, - 193.75636161960387, - 265.3627041795882, - 343.3221838329048, - 410.3052537823807, - 470.86194642296965, - 509.89398665262536, - 481.5910252580308, - 422.3172874835986, - 348.17949718634213, - 207.98637643672487, - 67.86582442419996, - -35.691171157375486, - -141.60758220509499, - -214.1754735965872, - -236.1826469553346, - -231.24030895969926, - -214.78613561701783, - -191.0778762883225, - -164.87792670129724, - -154.9345231105479, - -160.93978556384744, - -173.41508382472654, - -181.96632218094982, - -190.09571352393456, - -196.38139797367853, - -176.59407529002945, - -157.50040294366875, - -152.19278323608944, - -135.71510278465743, - -135.04636235129558, - -161.93228179020352, - -183.58029493689352, - -202.08962541028146, - -228.2710451604532, - -230.84172399642264, - -200.77046534383342, - -167.08365859521643, - -119.98817894863095, - -50.369151413691014, - 2.4828477862902427, - 35.72926923065231, - 67.82553596453329, - 79.92269170558379, - 71.99124511139709, - 67.06496704867841, - 65.16153946965134, - 64.14732086467771, - 68.97997200527945, - 79.27597836020105, - 87.34156654836644, - 83.07946803938621, - 69.00986318111744, - 46.78846144732834, - 14.25576346236199, - -19.913468427188004, - -44.48438089228588, - -56.33700188404026, - -54.93292278018497, - -39.561221706174145, - -16.09314885440792, - 6.04258776955685, - 19.91342807308927, - 20.814160806201656, - 7.482741577919841, - -16.094185368930194, - -43.20454497005744, - -64.32606045054581, - -73.77248539334514, - -69.37426717463627, - -49.24642079172306, - -19.576224192727107, - 8.59961519415858, - 29.887547901340223, - 39.53159113425516, - 32.73068792977089, - 12.9252195994083, - -12.536973102231391, - -36.69787877835459, - -53.671029530707315, - -56.759691484013, - -47.02960119721383, - -29.61397236075845, - -6.006941176702014, - 15.249657900210652, - 27.453656271093504, - 31.649882693159114, - 28.71693349835512, - 21.44913120877359, - 14.762545336990247, - 13.046161254078122, - 18.378036017298243, - 29.133077924279647, - 42.27240532688513, - 55.96155024526791, - 68.82848284141019, - 77.43641120604183, - 89.51071054664256, - 113.46188257101115, - 144.68346418366906 - ], - "pressure:J3:branch2_seg1": [ - 224180.20316049972, - 215699.79013902554, - 317690.2950461059, - 401831.9192305831, - 487101.6708379801, - 571523.6018991048, - 599626.9857907358, - 581041.3883975429, - 548816.5635703355, - 470317.17147735733, - 340008.7726373893, - 239563.27420659718, - 159720.71610545376, - 57709.696736132086, - 9713.754595972609, - 3603.176299995304, - -4534.3677809484825, - 4390.76818474238, - 8922.570462794602, - 15910.436110976501, - 1927.9328276114693, - -30643.25989495581, - -47026.82740095529, - -71971.2644205536, - -93973.15763836743, - -97877.02127053266, - -89535.17628449273, - -88921.92453157481, - -97590.75983164068, - -92044.52729597712, - -118257.8563764447, - -170381.68647077781, - -189605.110052229, - -225677.9055986057, - -272750.53258991573, - -258249.21451942076, - -235597.69699845414, - -222695.5326616776, - -166021.79792265265, - -106460.16819165662, - -79061.5050951885, - -47093.92104953255, - -21251.355239622382, - -21290.421335011873, - -28094.116907857566, - -22243.994999206396, - -18019.876879129264, - -12792.369109787873, - 3484.001124749341, - 19117.96428346599, - 29160.9674619911, - 22801.80195401274, - 8962.153838354006, - -10234.56148438119, - -45796.668216470665, - -72786.11597268976, - -89079.28360094638, - -96014.66023713963, - -87723.39757269793, - -69844.01114902999, - -46581.78515453292, - -30709.543118292797, - -24804.76281398757, - -31144.678345040986, - -51993.657169176826, - -77206.28669056862, - -104498.82950794265, - -120468.43933198263, - -124445.84480496653, - -117871.5808102855, - -91544.47203690164, - -64470.15769891395, - -42470.766659989764, - -26447.10311506689, - -25416.047077370215, - -39096.047775429026, - -62114.81605887842, - -86294.34245904931, - -106562.52091857065, - -117907.59268901145, - -114761.77596167712, - -102468.12713292656, - -84247.0892914979, - -61648.747555767986, - -46315.238101050294, - -39308.310455209634, - -38274.60213190011, - -42622.56610096619, - -48141.966722608835, - -50711.12391365319, - -46587.196992577265, - -35309.27988276256, - -21250.495780424233, - -4977.0772102919445, - 11361.123847156245, - 24959.185853271134, - 38305.91107204972, - 61282.27636533481, - 96482.96061242557, - 224180.20316049972 - ], - "flow:branch2_seg1:J4": [ - 144.60203710704656, - 193.64085055717197, - 265.1786829458331, - 343.18730988794374, - 410.19626923605676, - 470.71815989581694, - 509.86859443824875, - 481.61408370250524, - 422.33680606443664, - 348.39200906255354, - 208.11091160587944, - 67.97929857397894, - -35.53994205624436, - -141.49270421842118, - -214.15728593555852, - -236.18459359513534, - -231.24871336022318, - -214.80009717579176, - -191.08813025584925, - -164.8582992861747, - -154.91705825431794, - -160.86989184612742, - -173.38158728471862, - -181.932053373228, - -190.05029453273934, - -196.39774337316018, - -176.58624099472533, - -157.48039191290096, - -152.22819557941574, - -135.69438806237375, - -134.99092664348416, - -161.91433801006133, - -183.5571238698207, - -202.04099233154372, - -228.24601876612115, - -230.88783378277085, - -200.81008026609365, - -167.0843639661357, - -120.07836521857736, - -50.42879615551903, - 2.4623569847337934, - 35.6877500767656, - 67.80828928689469, - 79.94122460711097, - 71.98536106947704, - 67.05977847908467, - 65.15426732823184, - 64.14009697242012, - 68.95204888887555, - 79.26134001191127, - 87.34854957402817, - 83.09436392002813, - 69.0404777234186, - 46.81967591216312, - 14.305957345244344, - -19.888196636969678, - -44.46136005131961, - -56.334745523832964, - -54.95247522075692, - -39.588250030892254, - -16.121273178974523, - 6.028087658897311, - 19.91428707800476, - 20.834944561458627, - 7.515912375541626, - -16.05960107341021, - -43.177153092576866, - -64.31381673811603, - -73.77681048404733, - -69.40085306566469, - -49.28689413041859, - -19.616235434016605, - 8.576264870485861, - 29.873280407546726, - 39.54108095641671, - 32.75751130973335, - 12.951617675479556, - -12.501793472625769, - -36.67874181076858, - -53.66323760479918, - -56.76905537650837, - -47.05159410720273, - -29.64501245864441, - -6.040725483354807, - 15.240740250672081, - 27.446502563064467, - 31.655701017770138, - 28.72595728608519, - 21.45384163830183, - 14.762637165612578, - 13.035954323829182, - 18.356392933553128, - 29.112647055085162, - 42.24648175008746, - 55.93838523529656, - 68.80871409230022, - 77.41299948821286, - 89.46529160664485, - 113.42157579949954, - 144.60203710704656 - ], - "pressure:branch2_seg1:J4": [ - 216199.35391710323, - 203471.81196657754, - 300009.1092151156, - 386105.10443143523, - 472266.02413512964, - 556828.866700035, - 596589.9567680722, - 586021.0024087765, - 557043.7540378557, - 489554.485848057, - 365662.821267386, - 261776.38855544262, - 178267.1310900657, - 76567.51287962192, - 19939.029879467584, - 5735.035479432842, - -4167.550464306764, - 1645.9558473528828, - 6207.230293202389, - 13790.75145497922, - 2481.0741082369536, - -26135.327198689334, - -44682.06333966298, - -68708.95911601678, - -90601.70045585575, - -98930.94756667686, - -91988.59570408864, - -90427.7656987594, - -98712.07534677087, - -93613.79652117682, - -115411.22512266196, - -163144.26671184253, - -185680.14908821168, - -220404.31197085264, - -265532.9014416355, - -259955.30170369672, - -240435.57318134894, - -226489.47967310523, - -176736.70435990448, - -117874.51258219371, - -85758.89546483842, - -53764.67875112361, - -26195.951697361605, - -21645.534553059962, - -26966.146069906485, - -22277.25371471501, - -18229.15134259794, - -13219.286403408363, - 1250.991258632225, - 16795.21244646652, - 27801.239995065735, - 23899.121666796702, - 11991.62125348291, - -6137.947691053269, - -39252.298741029714, - -67200.60258117509, - -85509.9402881912, - -94425.04267996323, - -89041.64633911199, - -73180.17798247338, - -51031.976483575425, - -34190.05243378183, - -26248.805389019562, - -30204.449705452924, - -48344.751420830566, - -72402.59339009388, - -99438.75646761103, - -117114.84909474512, - -123606.70123650867, - -119140.49514412992, - -96095.2225477343, - -69864.6071306754, - -46983.45227247043, - -29791.067106705825, - -25924.136546034577, - -36771.691920271354, - -57861.26859409284, - -81467.78089156523, - -102547.2951641685, - -115642.44927918889, - -115137.34598345913, - -104763.31260948017, - -87915.08407395954, - -66058.75031766071, - -49513.869272598575, - -41015.13079785756, - -38555.695285240115, - -41766.645534448275, - -46945.95581883805, - -49967.93846789636, - -46999.4751504663, - -37069.9105187837, - -23655.920109956634, - -7811.459723885105, - 8453.774856339482, - 22792.575687668585, - 36129.21208140394, - 57581.47241558101, - 91083.84900486657, - 216199.35391710323 - ], - "flow:J4:branch2_seg2": [ - 144.60203710704656, - 193.64085055717197, - 265.1786829458331, - 343.18730988794374, - 410.19626923605676, - 470.71815989581694, - 509.86859443824875, - 481.61408370250524, - 422.33680606443664, - 348.39200906255354, - 208.11091160587944, - 67.97929857397894, - -35.53994205624436, - -141.49270421842118, - -214.15728593555852, - -236.18459359513534, - -231.24871336022318, - -214.80009717579176, - -191.08813025584925, - -164.8582992861747, - -154.91705825431794, - -160.86989184612742, - -173.38158728471862, - -181.932053373228, - -190.05029453273934, - -196.39774337316018, - -176.58624099472533, - -157.48039191290096, - -152.22819557941574, - -135.69438806237375, - -134.99092664348416, - -161.91433801006133, - -183.5571238698207, - -202.04099233154372, - -228.24601876612115, - -230.88783378277085, - -200.81008026609365, - -167.0843639661357, - -120.07836521857736, - -50.42879615551903, - 2.4623569847337934, - 35.6877500767656, - 67.80828928689469, - 79.94122460711097, - 71.98536106947704, - 67.05977847908467, - 65.15426732823184, - 64.14009697242012, - 68.95204888887555, - 79.26134001191127, - 87.34854957402817, - 83.09436392002813, - 69.0404777234186, - 46.81967591216312, - 14.305957345244344, - -19.888196636969678, - -44.46136005131961, - -56.334745523832964, - -54.95247522075692, - -39.588250030892254, - -16.121273178974523, - 6.028087658897311, - 19.91428707800476, - 20.834944561458627, - 7.515912375541626, - -16.05960107341021, - -43.177153092576866, - -64.31381673811603, - -73.77681048404733, - -69.40085306566469, - -49.28689413041859, - -19.616235434016605, - 8.576264870485861, - 29.873280407546726, - 39.54108095641671, - 32.75751130973335, - 12.951617675479556, - -12.501793472625769, - -36.67874181076858, - -53.66323760479918, - -56.76905537650837, - -47.05159410720273, - -29.64501245864441, - -6.040725483354807, - 15.240740250672081, - 27.446502563064467, - 31.655701017770138, - 28.72595728608519, - 21.45384163830183, - 14.762637165612578, - 13.035954323829182, - 18.356392933553128, - 29.112647055085162, - 42.24648175008746, - 55.93838523529656, - 68.80871409230022, - 77.41299948821286, - 89.46529160664485, - 113.42157579949954, - 144.60203710704656 - ], - "pressure:J4:branch2_seg2": [ - 216199.35391710323, - 203471.81196657754, - 300009.1092151156, - 386105.10443143523, - 472266.02413512964, - 556828.866700035, - 596589.9567680722, - 586021.0024087765, - 557043.7540378557, - 489554.485848057, - 365662.821267386, - 261776.38855544262, - 178267.1310900657, - 76567.51287962192, - 19939.029879467584, - 5735.035479432842, - -4167.550464306764, - 1645.9558473528828, - 6207.230293202389, - 13790.75145497922, - 2481.0741082369536, - -26135.327198689334, - -44682.06333966298, - -68708.95911601678, - -90601.70045585575, - -98930.94756667686, - -91988.59570408864, - -90427.7656987594, - -98712.07534677087, - -93613.79652117682, - -115411.22512266196, - -163144.26671184253, - -185680.14908821168, - -220404.31197085264, - -265532.9014416355, - -259955.30170369672, - -240435.57318134894, - -226489.47967310523, - -176736.70435990448, - -117874.51258219371, - -85758.89546483842, - -53764.67875112361, - -26195.951697361605, - -21645.534553059962, - -26966.146069906485, - -22277.25371471501, - -18229.15134259794, - -13219.286403408363, - 1250.991258632225, - 16795.21244646652, - 27801.239995065735, - 23899.121666796702, - 11991.62125348291, - -6137.947691053269, - -39252.298741029714, - -67200.60258117509, - -85509.9402881912, - -94425.04267996323, - -89041.64633911199, - -73180.17798247338, - -51031.976483575425, - -34190.05243378183, - -26248.805389019562, - -30204.449705452924, - -48344.751420830566, - -72402.59339009388, - -99438.75646761103, - -117114.84909474512, - -123606.70123650867, - -119140.49514412992, - -96095.2225477343, - -69864.6071306754, - -46983.45227247043, - -29791.067106705825, - -25924.136546034577, - -36771.691920271354, - -57861.26859409284, - -81467.78089156523, - -102547.2951641685, - -115642.44927918889, - -115137.34598345913, - -104763.31260948017, - -87915.08407395954, - -66058.75031766071, - -49513.869272598575, - -41015.13079785756, - -38555.695285240115, - -41766.645534448275, - -46945.95581883805, - -49967.93846789636, - -46999.4751504663, - -37069.9105187837, - -23655.920109956634, - -7811.459723885105, - 8453.774856339482, - 22792.575687668585, - 36129.21208140394, - 57581.47241558101, - 91083.84900486657, - 216199.35391710323 - ], - "flow:branch4_seg0:J5": [ - 383.6789890089777, - 498.62795707280884, - 668.6940283694805, - 834.8667434375861, - 1063.807792024599, - 1238.7289395349017, - 1394.6662164434006, - 1510.3892720004576, - 1466.0690313444175, - 1443.2102426794402, - 1245.422232421429, - 1000.2475216031448, - 801.6423748625874, - 486.5030417937184, - 300.38459757278633, - 91.10665935150831, - -39.79668151000615, - -111.77398951353992, - -222.15296249799914, - -224.041905329471, - -319.830668430992, - -367.01393803307576, - -426.4324457913692, - -530.5326421147138, - -546.9636751485378, - -632.9634833014321, - -637.1583632932446, - -633.2897615197141, - -671.5337609532564, - -631.7477399131584, - -670.8784569720644, - -710.0919112023954, - -740.9043488828692, - -818.4123390556438, - -862.1038507436774, - -887.5351197418614, - -889.9302196820513, - -837.8766872383479, - -754.8458413095785, - -655.8306684099484, - -519.3683261857561, - -413.4410602767285, - -307.2284012074456, - -213.02136325033342, - -163.31083709213354, - -99.55818912162533, - -60.69170935189694, - -9.050705050139458, - 42.69153004927355, - 89.0696652501554, - 150.33171287219247, - 168.211113116897, - 187.0976756976997, - 173.7361625673517, - 128.41888598136626, - 91.09592005747488, - 27.500154988462242, - -2.4822782491308097, - -26.855117718623966, - -27.70176659565871, - -0.056952948302457895, - 16.790525186547097, - 49.10121128664094, - 49.95056648306596, - 37.045225155529856, - 4.4714632532798335, - -49.984937009807815, - -90.20924246875104, - -132.3880893600872, - -147.50390768489336, - -131.76035374783328, - -106.36709345193593, - -56.848565812346735, - -17.56617807171006, - 11.839691473523622, - 22.873757888513154, - 2.5275405400902162, - -23.75464151436661, - -67.62663790262158, - -101.3527667784037, - -122.05367681028395, - -124.32049970410428, - -107.19714445037228, - -76.93279332246894, - -38.5519622790127, - -9.898995826613074, - 13.514692810418923, - 23.229441194757168, - 26.284400798750926, - 26.153981705436788, - 30.035896681785058, - 44.369181690545666, - 64.95399423674525, - 97.27091249552713, - 129.40541241001864, - 164.863375592373, - 202.7026129484556, - 239.5395880288286, - 306.1071475427915, - 383.6789890089777 - ], - "pressure:branch4_seg0:J5": [ - 230304.76035623712, - 253775.86737993662, - 347781.1134484604, - 428229.1484273334, - 505122.73765827506, - 558953.3084692727, - 601492.3780299498, - 473971.61782306875, - 479173.1810041651, - 417727.05519118486, - 160250.9342426363, - 210370.38613574323, - 101442.83703824997, - 3803.3353707001284, - 54861.77491920451, - 15076.885326898135, - 86351.651411482, - 36130.538706636515, - 75027.30742636982, - 75706.23385127942, - 132.9126369236306, - 18402.489565431657, - -64053.04551429081, - -38036.68897133265, - -79086.71824462012, - -103652.01963394294, - -16271.595263905367, - -98626.46223233506, - -78581.76014088401, - -57747.96176456078, - -148093.637711358, - -171932.540556785, - -199979.00912121727, - -235590.20729981374, - -275014.2743806835, - -237616.49585275157, - -199633.65516384708, - -193899.4216898011, - -128516.99705420542, - -61987.02368446339, - -68103.9515691561, - -56517.93535154422, - -12716.263352780845, - -57150.08532736695, - -58595.27424350457, - -39214.69028312264, - -45679.99037497143, - -20437.103138359118, - -12708.300727030695, - 18408.124011122334, - 18781.513117256924, - -3882.0119470198156, - -3594.2422949181737, - -45946.20669720296, - -70134.83641280635, - -94288.57774991645, - -100896.42672472741, - -85678.24499458383, - -82355.45876062033, - -40571.993013378466, - -29191.25795134433, - -15422.308507869504, - -16455.420840802442, - -42607.38727355154, - -62014.53595201996, - -100212.83981030673, - -118368.17995736621, - -124533.93009904474, - -123063.43517232356, - -97780.78018275237, - -67887.60956276694, - -40498.936100337756, - -23129.054128825966, - -21829.7917865691, - -26233.534137927523, - -58302.55755228961, - -82785.6499144425, - -105245.96225973763, - -123370.84984315226, - -120641.73720220203, - -107950.75969222243, - -86590.87194557828, - -69091.8392927751, - -41248.37434090137, - -37869.049352429494, - -38801.6432567353, - -42022.515298825085, - -53469.61956653039, - -57074.85715086424, - -58755.055053758086, - -46494.40854298236, - -31741.71240169353, - -14505.793736663536, - 1673.137249239541, - 15052.382648997085, - 30907.141688582476, - 33798.85270235853, - 66949.4597516954, - 115123.9351313893, - 230304.76035623712 - ], - "flow:J5:branch4_seg1": [ - 383.6789890089777, - 498.62795707280884, - 668.6940283694805, - 834.8667434375861, - 1063.807792024599, - 1238.7289395349017, - 1394.6662164434006, - 1510.3892720004576, - 1466.0690313444175, - 1443.2102426794402, - 1245.422232421429, - 1000.2475216031448, - 801.6423748625874, - 486.5030417937184, - 300.38459757278633, - 91.10665935150831, - -39.79668151000615, - -111.77398951353992, - -222.15296249799914, - -224.041905329471, - -319.830668430992, - -367.01393803307576, - -426.4324457913692, - -530.5326421147138, - -546.9636751485378, - -632.9634833014321, - -637.1583632932446, - -633.2897615197141, - -671.5337609532564, - -631.7477399131584, - -670.8784569720644, - -710.0919112023954, - -740.9043488828692, - -818.4123390556438, - -862.1038507436774, - -887.5351197418614, - -889.9302196820513, - -837.8766872383479, - -754.8458413095785, - -655.8306684099484, - -519.3683261857561, - -413.4410602767285, - -307.2284012074456, - -213.02136325033342, - -163.31083709213354, - -99.55818912162533, - -60.69170935189694, - -9.050705050139458, - 42.69153004927355, - 89.0696652501554, - 150.33171287219247, - 168.211113116897, - 187.0976756976997, - 173.7361625673517, - 128.41888598136626, - 91.09592005747488, - 27.500154988462242, - -2.4822782491308097, - -26.855117718623966, - -27.70176659565871, - -0.056952948302457895, - 16.790525186547097, - 49.10121128664094, - 49.95056648306596, - 37.045225155529856, - 4.4714632532798335, - -49.984937009807815, - -90.20924246875104, - -132.3880893600872, - -147.50390768489336, - -131.76035374783328, - -106.36709345193593, - -56.848565812346735, - -17.56617807171006, - 11.839691473523622, - 22.873757888513154, - 2.5275405400902162, - -23.75464151436661, - -67.62663790262158, - -101.3527667784037, - -122.05367681028395, - -124.32049970410428, - -107.19714445037228, - -76.93279332246894, - -38.5519622790127, - -9.898995826613074, - 13.514692810418923, - 23.229441194757168, - 26.284400798750926, - 26.153981705436788, - 30.035896681785058, - 44.369181690545666, - 64.95399423674525, - 97.27091249552713, - 129.40541241001864, - 164.863375592373, - 202.7026129484556, - 239.5395880288286, - 306.1071475427915, - 383.6789890089777 - ], - "pressure:J5:branch4_seg1": [ - 230304.76035623712, - 253775.86737993662, - 347781.1134484604, - 428229.1484273334, - 505122.73765827506, - 558953.3084692727, - 601492.3780299498, - 473971.61782306875, - 479173.1810041651, - 417727.05519118486, - 160250.9342426363, - 210370.38613574323, - 101442.83703824997, - 3803.3353707001284, - 54861.77491920451, - 15076.885326898135, - 86351.651411482, - 36130.538706636515, - 75027.30742636982, - 75706.23385127942, - 132.9126369236306, - 18402.489565431657, - -64053.04551429081, - -38036.68897133265, - -79086.71824462012, - -103652.01963394294, - -16271.595263905367, - -98626.46223233506, - -78581.76014088401, - -57747.96176456078, - -148093.637711358, - -171932.540556785, - -199979.00912121727, - -235590.20729981374, - -275014.2743806835, - -237616.49585275157, - -199633.65516384708, - -193899.4216898011, - -128516.99705420542, - -61987.02368446339, - -68103.9515691561, - -56517.93535154422, - -12716.263352780845, - -57150.08532736695, - -58595.27424350457, - -39214.69028312264, - -45679.99037497143, - -20437.103138359118, - -12708.300727030695, - 18408.124011122334, - 18781.513117256924, - -3882.0119470198156, - -3594.2422949181737, - -45946.20669720296, - -70134.83641280635, - -94288.57774991645, - -100896.42672472741, - -85678.24499458383, - -82355.45876062033, - -40571.993013378466, - -29191.25795134433, - -15422.308507869504, - -16455.420840802442, - -42607.38727355154, - -62014.53595201996, - -100212.83981030673, - -118368.17995736621, - -124533.93009904474, - -123063.43517232356, - -97780.78018275237, - -67887.60956276694, - -40498.936100337756, - -23129.054128825966, - -21829.7917865691, - -26233.534137927523, - -58302.55755228961, - -82785.6499144425, - -105245.96225973763, - -123370.84984315226, - -120641.73720220203, - -107950.75969222243, - -86590.87194557828, - -69091.8392927751, - -41248.37434090137, - -37869.049352429494, - -38801.6432567353, - -42022.515298825085, - -53469.61956653039, - -57074.85715086424, - -58755.055053758086, - -46494.40854298236, - -31741.71240169353, - -14505.793736663536, - 1673.137249239541, - 15052.382648997085, - 30907.141688582476, - 33798.85270235853, - 66949.4597516954, - 115123.9351313893, - 230304.76035623712 - ], - "flow:branch4_seg1:J6": [ - 381.57338077703554, - 496.10353258945827, - 663.8646639898568, - 835.5767638535214, - 1058.9396773570847, - 1238.076486268729, - 1398.6408784161529, - 1507.3068898761878, - 1471.6375811852245, - 1445.7624906103006, - 1248.3010971879073, - 1003.2248235536898, - 800.3569934455338, - 492.46401601370366, - 296.16241979265226, - 91.77500417350666, - -38.63800471647813, - -115.22680517786273, - -218.02462008107338, - -227.33547056138087, - -316.0776110268999, - -366.0958305291142, - -428.37839973609385, - -525.8745980450144, - -550.1880523494104, - -631.8207715221583, - -636.9916169523434, - -634.3736921115365, - -669.2009351423957, - -633.786530291454, - -667.2529736667275, - -708.8436306201203, - -742.5149816907281, - -814.731107088975, - -862.2921911997048, - -890.3734428156388, - -888.9265980197008, - -838.7889039072455, - -758.5054683793791, - -654.8804320872428, - -520.382607467389, - -414.5268135385111, - -306.43088484811983, - -213.0494336069684, - -162.5779940089724, - -100.87304837511337, - -60.18513888854938, - -9.632312886501605, - 41.499124526114485, - 89.54462678122295, - 149.4919972384242, - 169.6590192352408, - 187.2646353965045, - 174.26747497064144, - 130.4453719082088, - 90.12696557685416, - 28.472611612575125, - -3.2988717221444697, - -27.617969415490702, - -28.003972576910463, - -1.3931861270525958, - 17.649586537487547, - 48.74193686609138, - 51.02291679599739, - 38.0389136376458, - 4.8441716271170945, - -48.904218806828425, - -90.86929305155026, - -132.4255620094953, - -148.07510204298606, - -133.42618275359803, - -106.30912257683484, - -57.61546500085071, - -17.453745607317767, - 12.658727409013668, - 23.337978856259053, - 3.8085871765765176, - -23.664460816674996, - -67.08153948562934, - -101.71739195372602, - -122.62184574699391, - -124.77322994514856, - -108.10010520855305, - -77.22546047859572, - -38.76001106292668, - -9.62451892783459, - 13.608295878277545, - 23.566069537938787, - 26.32986492143532, - 25.97707242839655, - 29.696667209988508, - 43.699625710246615, - 64.70799137843184, - 96.57334533596033, - 129.10335634506293, - 164.81363165269846, - 201.74940102720464, - 238.88158035201295, - 304.5926145060175, - 381.57338077703554 - ], - "pressure:branch4_seg1:J6": [ - 213737.86286144046, - 235523.31019861792, - 315064.70775156363, - 397626.9280493233, - 474511.69377158966, - 521777.7777940367, - 596049.7805613125, - 455831.55541285186, - 479981.39488453994, - 451911.30545904185, - 174574.86844451053, - 256847.10518217986, - 132108.64254412026, - 36167.71530600854, - 95238.45452408989, - 26550.688090892058, - 114910.55629985941, - 39945.43365703558, - 88399.02534203388, - 88393.98167799017, - 1478.390152473808, - 41996.482929061975, - -63217.10796992901, - -20978.181644603123, - -67407.61659574298, - -108988.98703590508, - -2392.982340078119, - -105403.45450858516, - -77664.13624998239, - -53630.80660198687, - -151174.1893737403, - -155735.17841384845, - -194771.06322977593, - -227433.3587670755, - -257790.81726031684, - -235857.2479064722, - -201641.60562675478, - -195986.04667559543, - -143469.42939154254, - -77009.20236593584, - -82367.91525050688, - -76598.83303018384, - -23553.458090726566, - -69371.84543361761, - -65583.72131293944, - -45124.320906203044, - -54737.14382741786, - -24337.6911034815, - -22895.870441218434, - 12153.064162754396, - 11745.916295050094, - -9282.098728316729, - -402.4292243478628, - -46544.03013649135, - -61923.73465179371, - -86784.73713040254, - -95654.81119348425, - -78487.84612163548, - -83438.38609472796, - -40033.90883932663, - -34626.81754583034, - -19459.821526262196, - -17548.19069095661, - -43678.939108853425, - -56321.821660180154, - -95270.01575001245, - -110259.24785548938, - -117495.53197347625, - -120502.16784318029, - -94371.87157682318, - -71622.97566114177, - -46467.05408604761, - -28605.729354959258, - -28805.995076723328, - -28015.736822931805, - -58587.58179567415, - -78699.56767114853, - -99395.35180378836, - -118550.6742942177, - -116171.45873120024, - -106827.23828631546, - -87278.17810398129, - -73649.68215123427, - -45997.29388165192, - -43437.532571907315, - -42961.821830975714, - -44067.26059848949, - -54727.468734728034, - -56943.90136815185, - -59404.888335252675, - -47484.55463891771, - -34774.895002181474, - -18389.72209604489, - -3089.4509711226187, - 9151.432887680308, - 27606.296722874322, - 27256.18744962968, - 59859.737994390074, - 108092.81803125031, - 213737.86286144046 - ], - "flow:J6:branch4_seg2": [ - 381.57338077703554, - 496.10353258945827, - 663.8646639898568, - 835.5767638535214, - 1058.9396773570847, - 1238.076486268729, - 1398.6408784161529, - 1507.3068898761878, - 1471.6375811852245, - 1445.7624906103006, - 1248.3010971879073, - 1003.2248235536898, - 800.3569934455338, - 492.46401601370366, - 296.16241979265226, - 91.77500417350666, - -38.63800471647813, - -115.22680517786273, - -218.02462008107338, - -227.33547056138087, - -316.0776110268999, - -366.0958305291142, - -428.37839973609385, - -525.8745980450144, - -550.1880523494104, - -631.8207715221583, - -636.9916169523434, - -634.3736921115365, - -669.2009351423957, - -633.786530291454, - -667.2529736667275, - -708.8436306201203, - -742.5149816907281, - -814.731107088975, - -862.2921911997048, - -890.3734428156388, - -888.9265980197008, - -838.7889039072455, - -758.5054683793791, - -654.8804320872428, - -520.382607467389, - -414.5268135385111, - -306.43088484811983, - -213.0494336069684, - -162.5779940089724, - -100.87304837511337, - -60.18513888854938, - -9.632312886501605, - 41.499124526114485, - 89.54462678122295, - 149.4919972384242, - 169.6590192352408, - 187.2646353965045, - 174.26747497064144, - 130.4453719082088, - 90.12696557685416, - 28.472611612575125, - -3.2988717221444697, - -27.617969415490702, - -28.003972576910463, - -1.3931861270525958, - 17.649586537487547, - 48.74193686609138, - 51.02291679599739, - 38.0389136376458, - 4.8441716271170945, - -48.904218806828425, - -90.86929305155026, - -132.4255620094953, - -148.07510204298606, - -133.42618275359803, - -106.30912257683484, - -57.61546500085071, - -17.453745607317767, - 12.658727409013668, - 23.337978856259053, - 3.8085871765765176, - -23.664460816674996, - -67.08153948562934, - -101.71739195372602, - -122.62184574699391, - -124.77322994514856, - -108.10010520855305, - -77.22546047859572, - -38.76001106292668, - -9.62451892783459, - 13.608295878277545, - 23.566069537938787, - 26.32986492143532, - 25.97707242839655, - 29.696667209988508, - 43.699625710246615, - 64.70799137843184, - 96.57334533596033, - 129.10335634506293, - 164.81363165269846, - 201.74940102720464, - 238.88158035201295, - 304.5926145060175, - 381.57338077703554 - ], - "pressure:J6:branch4_seg2": [ - 213737.86286144046, - 235523.31019861792, - 315064.70775156363, - 397626.9280493233, - 474511.69377158966, - 521777.7777940367, - 596049.7805613125, - 455831.55541285186, - 479981.39488453994, - 451911.30545904185, - 174574.86844451053, - 256847.10518217986, - 132108.64254412026, - 36167.71530600854, - 95238.45452408989, - 26550.688090892058, - 114910.55629985941, - 39945.43365703558, - 88399.02534203388, - 88393.98167799017, - 1478.390152473808, - 41996.482929061975, - -63217.10796992901, - -20978.181644603123, - -67407.61659574298, - -108988.98703590508, - -2392.982340078119, - -105403.45450858516, - -77664.13624998239, - -53630.80660198687, - -151174.1893737403, - -155735.17841384845, - -194771.06322977593, - -227433.3587670755, - -257790.81726031684, - -235857.2479064722, - -201641.60562675478, - -195986.04667559543, - -143469.42939154254, - -77009.20236593584, - -82367.91525050688, - -76598.83303018384, - -23553.458090726566, - -69371.84543361761, - -65583.72131293944, - -45124.320906203044, - -54737.14382741786, - -24337.6911034815, - -22895.870441218434, - 12153.064162754396, - 11745.916295050094, - -9282.098728316729, - -402.4292243478628, - -46544.03013649135, - -61923.73465179371, - -86784.73713040254, - -95654.81119348425, - -78487.84612163548, - -83438.38609472796, - -40033.90883932663, - -34626.81754583034, - -19459.821526262196, - -17548.19069095661, - -43678.939108853425, - -56321.821660180154, - -95270.01575001245, - -110259.24785548938, - -117495.53197347625, - -120502.16784318029, - -94371.87157682318, - -71622.97566114177, - -46467.05408604761, - -28605.729354959258, - -28805.995076723328, - -28015.736822931805, - -58587.58179567415, - -78699.56767114853, - -99395.35180378836, - -118550.6742942177, - -116171.45873120024, - -106827.23828631546, - -87278.17810398129, - -73649.68215123427, - -45997.29388165192, - -43437.532571907315, - -42961.821830975714, - -44067.26059848949, - -54727.468734728034, - -56943.90136815185, - -59404.888335252675, - -47484.55463891771, - -34774.895002181474, - -18389.72209604489, - -3089.4509711226187, - 9151.432887680308, - 27606.296722874322, - 27256.18744962968, - 59859.737994390074, - 108092.81803125031, - 213737.86286144046 - ], - "flow:branch5_seg0:J7": [ - 130.46227915156402, - 175.73246430381434, - 241.45509858069423, - 311.0291579858608, - 368.79180288831805, - 421.173705556247, - 450.79748181188734, - 418.1559926825073, - 359.3752160180821, - 287.33012674978846, - 158.14794817883123, - 32.0495822732003, - -57.07540764990964, - -147.21336126407425, - -204.8502158835173, - -216.26463011636764, - -204.76174612611118, - -185.00483311034193, - -160.5835810165481, - -135.81710852826635, - -127.33010554177692, - -134.7682408305187, - -147.05564750752035, - -155.3336079310439, - -163.25927456365028, - -168.32334183389867, - -149.53693151516947, - -132.12442638857354, - -127.61082067917832, - -113.63657496235669, - -114.6652567456643, - -140.75263486322538, - -161.33402020184414, - -178.2883844611947, - -201.83731304228772, - -201.95731976659303, - -172.27580521049592, - -140.90168924582562, - -96.37343108157353, - -33.03962459540969, - 12.966755688014732, - 40.28877241796379, - 66.55493473429061, - 73.91164864799399, - 63.8347630909926, - 57.58140981547106, - 55.04567857739685, - 53.75647464686712, - 58.45906328929925, - 67.99737733194726, - 75.04813777583178, - 70.46510152508033, - 56.79898275358421, - 36.03446067533558, - 6.031299255446235, - -24.46301093177834, - -45.31528201106523, - -53.959739137089244, - -50.32370942297672, - -34.27960942433692, - -11.63545358962605, - 8.77183306159067, - 20.59913991561365, - 20.012025059992993, - 6.3172501367589255, - -16.347366698029173, - -41.29929454359893, - -59.95490517565598, - -67.08244140374225, - -61.26133096460684, - -41.19688906550203, - -13.08851131544276, - 12.378186568562322, - 30.862610000160114, - 37.8748490433219, - 29.655906882581913, - 9.973828383566358, - -14.232341114163521, - -36.09447395222528, - -50.65993033888438, - -51.84387676594233, - -41.29894909662085, - -24.16178890961504, - -2.007292563388787, - 16.982550105566144, - 27.153698406241645, - 29.676916670422216, - 25.807321244619093, - 18.34641377502425, - 11.919916726201166, - 10.560818180364468, - 15.939490832264688, - 26.165580116337022, - 38.315074367395326, - 50.71689370918581, - 61.97946683001398, - 69.25700798143616, - 79.98039010255819, - 101.81672870805652, - 130.46227915156402 - ], - "pressure:branch5_seg0:J7": [ - 265787.3499804679, - 279989.3923237808, - 410002.2924482929, - 484771.11746371386, - 564708.3640934894, - 649246.8780454852, - 615730.7608200252, - 553980.172888793, - 503409.1146245606, - 367140.0516746551, - 202035.86345347887, - 117337.18090481542, - 57600.652106372574, - -46212.5048375586, - -47938.11437896582, - -10883.428912609777, - -7899.953700326859, - 18238.41132464539, - 23871.93892244055, - 28398.36031721406, - 673.4578263844246, - -52561.46494921353, - -57989.97130595382, - -87701.08869775092, - -110489.79069379136, - -91683.81765831125, - -75429.37054765326, - -79465.12322506674, - -90399.40124638415, - -82386.15257745472, - -131597.8006780242, - -206566.38643438905, - -209524.38872281683, - -252425.73703310775, - -309243.78379105945, - -248786.77324823756, - -209168.80328882363, - -201233.95802394047, - -107847.34493836128, - -44627.351036835724, - -41117.95466395925, - -10163.553492276986, - 6696.914632849016, - -17945.106657263463, - -33067.751951703714, - -21867.630736011295, - -16961.51181320866, - -10786.908461470795, - 14814.486097600631, - 30933.086417628485, - 35958.978761797815, - 16767.078946316116, - -7312.7213105824, - -32451.112741391393, - -80890.58019706164, - -103176.01526961314, - -108943.11629251801, - -105238.01836590655, - -81513.8531985888, - -52609.898399570324, - -23206.87768742736, - -11971.326473902753, - -16639.625947950666, - -35502.83163480913, - -70691.30633102979, - -102463.34859934733, - -131159.89603911003, - -138601.35644756976, - -129284.30768113112, - -111310.97837654986, - -67723.55829901299, - -35658.914310820175, - -18161.670581808885, - -8002.012245472209, - -21975.884501864806, - -50696.94459884658, - -84167.90032651272, - -111850.40331452132, - -128016.9198411957, - -130459.19192211075, - -113259.81575986795, - -90642.82526622429, - -64978.95524886927, - -38154.683842717044, - -28990.665464660233, - -29726.15244235204, - -36287.389126262744, - -46771.69905967597, - -54352.89520731817, - -54728.91685580629, - -44642.939952950794, - -26301.92862246146, - -8726.328843552426, - 9818.691825727834, - 26726.615823169963, - 36460.12284366114, - 49811.78048090745, - 80485.23650014059, - 124942.85113759353, - 265787.3499804679 - ], - "flow:J7:branch5_seg1": [ - 130.46227915156402, - 175.73246430381434, - 241.45509858069423, - 311.0291579858608, - 368.79180288831805, - 421.173705556247, - 450.79748181188734, - 418.1559926825073, - 359.3752160180821, - 287.33012674978846, - 158.14794817883123, - 32.0495822732003, - -57.07540764990964, - -147.21336126407425, - -204.8502158835173, - -216.26463011636764, - -204.76174612611118, - -185.00483311034193, - -160.5835810165481, - -135.81710852826635, - -127.33010554177692, - -134.7682408305187, - -147.05564750752035, - -155.3336079310439, - -163.25927456365028, - -168.32334183389867, - -149.53693151516947, - -132.12442638857354, - -127.61082067917832, - -113.63657496235669, - -114.6652567456643, - -140.75263486322538, - -161.33402020184414, - -178.2883844611947, - -201.83731304228772, - -201.95731976659303, - -172.27580521049592, - -140.90168924582562, - -96.37343108157353, - -33.03962459540969, - 12.966755688014732, - 40.28877241796379, - 66.55493473429061, - 73.91164864799399, - 63.8347630909926, - 57.58140981547106, - 55.04567857739685, - 53.75647464686712, - 58.45906328929925, - 67.99737733194726, - 75.04813777583178, - 70.46510152508033, - 56.79898275358421, - 36.03446067533558, - 6.031299255446235, - -24.46301093177834, - -45.31528201106523, - -53.959739137089244, - -50.32370942297672, - -34.27960942433692, - -11.63545358962605, - 8.77183306159067, - 20.59913991561365, - 20.012025059992993, - 6.3172501367589255, - -16.347366698029173, - -41.29929454359893, - -59.95490517565598, - -67.08244140374225, - -61.26133096460684, - -41.19688906550203, - -13.08851131544276, - 12.378186568562322, - 30.862610000160114, - 37.8748490433219, - 29.655906882581913, - 9.973828383566358, - -14.232341114163521, - -36.09447395222528, - -50.65993033888438, - -51.84387676594233, - -41.29894909662085, - -24.16178890961504, - -2.007292563388787, - 16.982550105566144, - 27.153698406241645, - 29.676916670422216, - 25.807321244619093, - 18.34641377502425, - 11.919916726201166, - 10.560818180364468, - 15.939490832264688, - 26.165580116337022, - 38.315074367395326, - 50.71689370918581, - 61.97946683001398, - 69.25700798143616, - 79.98039010255819, - 101.81672870805652, - 130.46227915156402 - ], - "pressure:J7:branch5_seg1": [ - 265787.3499804679, - 279989.3923237808, - 410002.2924482929, - 484771.11746371386, - 564708.3640934894, - 649246.8780454852, - 615730.7608200252, - 553980.172888793, - 503409.1146245606, - 367140.0516746551, - 202035.86345347887, - 117337.18090481542, - 57600.652106372574, - -46212.5048375586, - -47938.11437896582, - -10883.428912609777, - -7899.953700326859, - 18238.41132464539, - 23871.93892244055, - 28398.36031721406, - 673.4578263844246, - -52561.46494921353, - -57989.97130595382, - -87701.08869775092, - -110489.79069379136, - -91683.81765831125, - -75429.37054765326, - -79465.12322506674, - -90399.40124638415, - -82386.15257745472, - -131597.8006780242, - -206566.38643438905, - -209524.38872281683, - -252425.73703310775, - -309243.78379105945, - -248786.77324823756, - -209168.80328882363, - -201233.95802394047, - -107847.34493836128, - -44627.351036835724, - -41117.95466395925, - -10163.553492276986, - 6696.914632849016, - -17945.106657263463, - -33067.751951703714, - -21867.630736011295, - -16961.51181320866, - -10786.908461470795, - 14814.486097600631, - 30933.086417628485, - 35958.978761797815, - 16767.078946316116, - -7312.7213105824, - -32451.112741391393, - -80890.58019706164, - -103176.01526961314, - -108943.11629251801, - -105238.01836590655, - -81513.8531985888, - -52609.898399570324, - -23206.87768742736, - -11971.326473902753, - -16639.625947950666, - -35502.83163480913, - -70691.30633102979, - -102463.34859934733, - -131159.89603911003, - -138601.35644756976, - -129284.30768113112, - -111310.97837654986, - -67723.55829901299, - -35658.914310820175, - -18161.670581808885, - -8002.012245472209, - -21975.884501864806, - -50696.94459884658, - -84167.90032651272, - -111850.40331452132, - -128016.9198411957, - -130459.19192211075, - -113259.81575986795, - -90642.82526622429, - -64978.95524886927, - -38154.683842717044, - -28990.665464660233, - -29726.15244235204, - -36287.389126262744, - -46771.69905967597, - -54352.89520731817, - -54728.91685580629, - -44642.939952950794, - -26301.92862246146, - -8726.328843552426, - 9818.691825727834, - 26726.615823169963, - 36460.12284366114, - 49811.78048090745, - 80485.23650014059, - 124942.85113759353, - 265787.3499804679 - ], - "flow:branch5_seg1:J8": [ - 130.02854754605255, - 174.93768051083887, - 240.47194297323693, - 310.24160030825664, - 368.50128752390106, - 420.2272243866252, - 450.95201754258227, - 418.36457135178466, - 359.35257229084425, - 288.96537419021604, - 158.45396949789253, - 32.41761514314376, - -56.297404449567836, - -146.82032615361135, - -205.17934662696234, - -216.46117518532515, - -204.95591335553877, - -185.11857615411841, - -160.67691982118964, - -135.5763305970265, - -127.19940844125483, - -134.29752755465213, - -146.8362003701145, - -155.1979584158885, - -162.925930591953, - -168.55222930528953, - -149.42836230928933, - -131.8911732203099, - -128.00043042333158, - -113.38251144707256, - -114.21406760649876, - -140.91803810930645, - -161.24728948537074, - -178.0909268640535, - -201.9349694297265, - -202.45679844122276, - -172.57581109237458, - -140.8059149238985, - -97.00379565113202, - -33.135233536818134, - 12.971116325757723, - 40.17206490213944, - 66.56869710865728, - 74.1865606796758, - 63.74484176496133, - 57.55737611919973, - 55.001944130241206, - 53.71081960342187, - 58.28447111715632, - 67.95763933914876, - 75.21219734479521, - 70.61032428728358, - 57.01357562021392, - 36.25253889105757, - 6.265362205932495, - -24.380264659990917, - -45.27094050741157, - -54.01013618489639, - -50.49859804551305, - -34.467568184317045, - -11.729316591052116, - 8.733983109793332, - 20.70284454626382, - 20.205616967989325, - 6.511478396741537, - -16.13510015009532, - -41.27316775858689, - -59.94390014945407, - -67.20937705752726, - -61.52189388998684, - -41.43892319771022, - -13.324463327098439, - 12.348079372649108, - 30.838169873806187, - 38.03443317444997, - 29.861054960320345, - 10.092865060483586, - -14.0480250003893, - -36.06940620824823, - -50.685332171573776, - -51.95644582190395, - -41.44845154385621, - -24.36359698762964, - -2.1702583310769645, - 17.017120971559628, - 27.172399942156158, - 29.75926051626121, - 25.880589800362458, - 18.36611732890254, - 11.891921333161273, - 10.470286821257018, - 15.799141348133018, - 26.03550043663879, - 38.20384311190998, - 50.57379466950388, - 61.91209137112564, - 69.09267345095287, - 79.71638439633603, - 101.59111974943514, - 130.02854754605255 - ], - "pressure:branch5_seg1:J8": [ - 229324.31517338974, - 223605.69990032172, - 329003.7779859739, - 414284.86891592015, - 499589.16288300394, - 583282.4611875972, - 606150.5865466862, - 580780.3736524427, - 542240.375680493, - 457039.54296978924, - 318383.7223146029, - 216436.37278494288, - 137098.0457268261, - 35698.61388258712, - -8206.949317007377, - -7139.801177294198, - -10487.49476796177, - 3005.9184808402947, - 10041.081144944306, - 18798.104692115794, - 4357.280366980173, - -29818.213267750496, - -46632.00723980948, - -72097.59289776061, - -94406.4948571925, - -97019.45129922156, - -87027.19897873061, - -85850.29236232658, - -94774.63241575217, - -88697.54984797996, - -116762.79151614678, - -172234.64024639069, - -191473.30837099883, - -228286.69261746467, - -277304.11128363264, - -259124.72622884333, - -233144.0007625548, - -218717.02802240057, - -158388.72424508593, - -96032.99864647, - -69255.12854058527, - -37974.37676350814, - -13443.14810820699, - -16395.922092767705, - -25862.66608801599, - -20909.719416829917, - -17380.049471956558, - -12468.342729957774, - 4262.2983175378395, - 20452.919621899855, - 30293.125886984057, - 22593.312107207486, - 7286.472369191121, - -13354.056216111909, - -50694.24658407022, - -78618.21722165028, - -94005.2553660318, - -99869.4882312692, - -89433.67354344048, - -69310.50242937698, - -44312.11621521235, - -27672.220289003457, - -22359.682635208294, - -29927.04389288613, - -52822.459331212565, - -79770.28790228555, - -108127.93284506408, - -124123.7106439452, - -126858.14094327827, - -118822.2280536688, - -89832.26526382999, - -60949.41817969441, - -38199.74528798787, - -22299.915113252162, - -22676.235253482413, - -38376.38214596176, - -63682.52608209898, - -89220.69644273407, - -110162.59144306864, - -121014.24898355556, - -116433.16377228835, - -102463.96764788542, - -82457.13673160801, - -58716.6098993601, - -42924.935407623445, - -36594.93275006075, - -36443.14300299016, - -41922.97815655663, - -48317.8505347655, - -51200.43914355907, - -46810.50812379363, - -34818.01268760253, - -19955.828717796103, - -3193.2140108589956, - 13630.941480865346, - 27085.92088567759, - 40376.46758359089, - 63717.505951449304, - 100108.91334993696, - 229324.31517338974 - ], - "flow:J8:branch5_seg2": [ - 130.02854754605255, - 174.93768051083887, - 240.47194297323693, - 310.24160030825664, - 368.50128752390106, - 420.2272243866252, - 450.95201754258227, - 418.36457135178466, - 359.35257229084425, - 288.96537419021604, - 158.45396949789253, - 32.41761514314376, - -56.297404449567836, - -146.82032615361135, - -205.17934662696234, - -216.46117518532515, - -204.95591335553877, - -185.11857615411841, - -160.67691982118964, - -135.5763305970265, - -127.19940844125483, - -134.29752755465213, - -146.8362003701145, - -155.1979584158885, - -162.925930591953, - -168.55222930528953, - -149.42836230928933, - -131.8911732203099, - -128.00043042333158, - -113.38251144707256, - -114.21406760649876, - -140.91803810930645, - -161.24728948537074, - -178.0909268640535, - -201.9349694297265, - -202.45679844122276, - -172.57581109237458, - -140.8059149238985, - -97.00379565113202, - -33.135233536818134, - 12.971116325757723, - 40.17206490213944, - 66.56869710865728, - 74.1865606796758, - 63.74484176496133, - 57.55737611919973, - 55.001944130241206, - 53.71081960342187, - 58.28447111715632, - 67.95763933914876, - 75.21219734479521, - 70.61032428728358, - 57.01357562021392, - 36.25253889105757, - 6.265362205932495, - -24.380264659990917, - -45.27094050741157, - -54.01013618489639, - -50.49859804551305, - -34.467568184317045, - -11.729316591052116, - 8.733983109793332, - 20.70284454626382, - 20.205616967989325, - 6.511478396741537, - -16.13510015009532, - -41.27316775858689, - -59.94390014945407, - -67.20937705752726, - -61.52189388998684, - -41.43892319771022, - -13.324463327098439, - 12.348079372649108, - 30.838169873806187, - 38.03443317444997, - 29.861054960320345, - 10.092865060483586, - -14.0480250003893, - -36.06940620824823, - -50.685332171573776, - -51.95644582190395, - -41.44845154385621, - -24.36359698762964, - -2.1702583310769645, - 17.017120971559628, - 27.172399942156158, - 29.75926051626121, - 25.880589800362458, - 18.36611732890254, - 11.891921333161273, - 10.470286821257018, - 15.799141348133018, - 26.03550043663879, - 38.20384311190998, - 50.57379466950388, - 61.91209137112564, - 69.09267345095287, - 79.71638439633603, - 101.59111974943514, - 130.02854754605255 - ], - "pressure:J8:branch5_seg2": [ - 229324.31517338974, - 223605.69990032172, - 329003.7779859739, - 414284.86891592015, - 499589.16288300394, - 583282.4611875972, - 606150.5865466862, - 580780.3736524427, - 542240.375680493, - 457039.54296978924, - 318383.7223146029, - 216436.37278494288, - 137098.0457268261, - 35698.61388258712, - -8206.949317007377, - -7139.801177294198, - -10487.49476796177, - 3005.9184808402947, - 10041.081144944306, - 18798.104692115794, - 4357.280366980173, - -29818.213267750496, - -46632.00723980948, - -72097.59289776061, - -94406.4948571925, - -97019.45129922156, - -87027.19897873061, - -85850.29236232658, - -94774.63241575217, - -88697.54984797996, - -116762.79151614678, - -172234.64024639069, - -191473.30837099883, - -228286.69261746467, - -277304.11128363264, - -259124.72622884333, - -233144.0007625548, - -218717.02802240057, - -158388.72424508593, - -96032.99864647, - -69255.12854058527, - -37974.37676350814, - -13443.14810820699, - -16395.922092767705, - -25862.66608801599, - -20909.719416829917, - -17380.049471956558, - -12468.342729957774, - 4262.2983175378395, - 20452.919621899855, - 30293.125886984057, - 22593.312107207486, - 7286.472369191121, - -13354.056216111909, - -50694.24658407022, - -78618.21722165028, - -94005.2553660318, - -99869.4882312692, - -89433.67354344048, - -69310.50242937698, - -44312.11621521235, - -27672.220289003457, - -22359.682635208294, - -29927.04389288613, - -52822.459331212565, - -79770.28790228555, - -108127.93284506408, - -124123.7106439452, - -126858.14094327827, - -118822.2280536688, - -89832.26526382999, - -60949.41817969441, - -38199.74528798787, - -22299.915113252162, - -22676.235253482413, - -38376.38214596176, - -63682.52608209898, - -89220.69644273407, - -110162.59144306864, - -121014.24898355556, - -116433.16377228835, - -102463.96764788542, - -82457.13673160801, - -58716.6098993601, - -42924.935407623445, - -36594.93275006075, - -36443.14300299016, - -41922.97815655663, - -48317.8505347655, - -51200.43914355907, - -46810.50812379363, - -34818.01268760253, - -19955.828717796103, - -3193.2140108589956, - 13630.941480865346, - 27085.92088567759, - 40376.46758359089, - 63717.505951449304, - 100108.91334993696, - 229324.31517338974 - ], - "flow:branch6_seg0:J9": [ - 33.452953218314995, - 46.38377166512833, - 64.375598787605, - 81.10705661007133, - 92.00949123049156, - 102.81238108641622, - 106.9294648147519, - 93.47384963774587, - 77.42421089223662, - 58.28595685043806, - 27.091699443309345, - 3.070031924586366, - -11.918831027414827, - -28.24387487342813, - -34.98424589773659, - -30.62387576611716, - -24.716293797544214, - -20.341534497895836, - -16.16017707415341, - -13.492985453329398, - -15.065630698270612, - -21.19692223444768, - -26.901603876585906, - -29.220865033951295, - -32.23505079313662, - -32.98510832219007, - -28.082131652404186, - -25.392713147307195, - -25.5724847731014, - -23.8876617087552, - -27.604152034470015, - -37.254018760212595, - -41.58209445814014, - -45.92772754178112, - -53.23778875140997, - -49.56534001264568, - -39.31872534456938, - -33.44869961283418, - -23.000142936639456, - -7.064300505151569, - -0.1653562840370433, - 2.72847433680067, - 7.098251782906153, - 6.049370316106888, - 2.1198839774851437, - 1.5676148525696643, - 2.388178121314093, - 3.313045550961382, - 6.069191101368446, - 9.82137426282898, - 11.673397602731416, - 9.665020827041246, - 5.899047563298311, - 1.0863097168454234, - -6.035385262258178, - -12.395692790769013, - -14.823384353338167, - -14.567763464806395, - -11.484896029536483, - -5.959101863055229, - -0.24927480015588888, - 3.7152724250534015, - 4.650215665169219, - 2.449691526893055, - -2.601872123516211, - -8.830643146518542, - -14.468195666071843, - -17.413590351334562, - -17.08170086435917, - -13.969541501087676, - -7.335060940634916, - -0.11276559830034096, - 4.688277567474841, - 7.2941205284242585, - 6.820998164766794, - 2.6257127254561032, - -3.2668650192944764, - -9.07084024142852, - -13.244325405791422, - -14.860748293303871, - -13.08110152817416, - -8.903271619343302, - -3.9185101519313026, - 1.4180806837062099, - 4.7105091829965975, - 5.4891801258686135, - 4.67538383440768, - 2.821909027963824, - 0.8489675666254736, - -0.20985813536801093, - 0.46757693398577915, - 2.922289105758938, - 6.195282151249773, - 9.314859346615746, - 12.185068536532825, - 14.533800623098037, - 15.97605711092438, - 19.05033878902733, - 25.122967856823852, - 33.452953218314995 - ], - "pressure:branch6_seg0:J9": [ - 261614.06841059006, - 282723.2489750596, - 409181.13291185285, - 489355.14608847885, - 570147.7393012078, - 638915.1240103756, - 599405.9122136951, - 529548.1290076063, - 486632.0762855671, - 343230.22824382066, - 148804.8937718588, - 102711.2158268803, - 42816.533763905485, - -61106.73868692848, - -47882.255116671025, - -11508.259566720482, - 8036.324046914278, - 28310.02650319221, - 41661.30126322411, - 41019.86554411709, - 4368.401232624447, - -36127.54683658458, - -55245.25722410095, - -78974.10017688626, - -104184.50667236235, - -82935.1902929498, - -55545.251899322735, - -77402.4252408915, - -82283.04447431504, - -66362.21007713518, - -128696.30598960229, - -207937.093523552, - -208647.65874605044, - -246333.21288035455, - -309901.95191650494, - -251561.33041872096, - -200734.09207136813, - -189087.6432729976, - -103156.33294590542, - -38771.6438868823, - -36448.077018965945, - -8289.33944252413, - 8698.444190143648, - -23902.91648234389, - -39751.27568351472, - -26719.936457705, - -23192.87377733353, - -13108.24347078347, - 9751.67694932561, - 29823.09620884269, - 35328.78534431008, - 13267.255938298096, - -10243.564802063998, - -39454.997354606596, - -83783.64628574211, - -107982.25084248437, - -111610.89286345926, - -104454.7862626885, - -81743.92917675957, - -47574.72590346087, - -19095.461101347322, - -7761.729203603874, - -14254.437027406997, - -36503.35189611548, - -72300.23639970447, - -106605.70794835387, - -134385.6054482756, - -140154.17741392247, - -129138.4475083251, - -109403.16699842873, - -65534.44939477979, - -30867.171214655373, - -13008.881967577732, - -6046.915104394953, - -20950.792531016155, - -53338.08210130545, - -88261.51606515898, - -115155.69017465727, - -131544.4913462311, - -130837.01008545638, - -111921.48606545512, - -88376.4186346106, - -62492.10684750735, - -33448.11088696739, - -25638.738687744048, - -28743.837065645297, - -36302.68541535618, - -48771.9175897592, - -56466.75962446634, - -56447.689970380256, - -45332.02387523028, - -26846.04449916772, - -8073.965009251867, - 10718.50954547891, - 27036.17164132861, - 35619.33754368587, - 47917.057221707306, - 80379.92858475303, - 125808.7699684277, - 261614.06841059006 - ], - "flow:J9:branch6_seg1": [ - 33.452953218314995, - 46.38377166512833, - 64.375598787605, - 81.10705661007133, - 92.00949123049156, - 102.81238108641622, - 106.9294648147519, - 93.47384963774587, - 77.42421089223662, - 58.28595685043806, - 27.091699443309345, - 3.070031924586366, - -11.918831027414827, - -28.24387487342813, - -34.98424589773659, - -30.62387576611716, - -24.716293797544214, - -20.341534497895836, - -16.16017707415341, - -13.492985453329398, - -15.065630698270612, - -21.19692223444768, - -26.901603876585906, - -29.220865033951295, - -32.23505079313662, - -32.98510832219007, - -28.082131652404186, - -25.392713147307195, - -25.5724847731014, - -23.8876617087552, - -27.604152034470015, - -37.254018760212595, - -41.58209445814014, - -45.92772754178112, - -53.23778875140997, - -49.56534001264568, - -39.31872534456938, - -33.44869961283418, - -23.000142936639456, - -7.064300505151569, - -0.1653562840370433, - 2.72847433680067, - 7.098251782906153, - 6.049370316106888, - 2.1198839774851437, - 1.5676148525696643, - 2.388178121314093, - 3.313045550961382, - 6.069191101368446, - 9.82137426282898, - 11.673397602731416, - 9.665020827041246, - 5.899047563298311, - 1.0863097168454234, - -6.035385262258178, - -12.395692790769013, - -14.823384353338167, - -14.567763464806395, - -11.484896029536483, - -5.959101863055229, - -0.24927480015588888, - 3.7152724250534015, - 4.650215665169219, - 2.449691526893055, - -2.601872123516211, - -8.830643146518542, - -14.468195666071843, - -17.413590351334562, - -17.08170086435917, - -13.969541501087676, - -7.335060940634916, - -0.11276559830034096, - 4.688277567474841, - 7.2941205284242585, - 6.820998164766794, - 2.6257127254561032, - -3.2668650192944764, - -9.07084024142852, - -13.244325405791422, - -14.860748293303871, - -13.08110152817416, - -8.903271619343302, - -3.9185101519313026, - 1.4180806837062099, - 4.7105091829965975, - 5.4891801258686135, - 4.67538383440768, - 2.821909027963824, - 0.8489675666254736, - -0.20985813536801093, - 0.46757693398577915, - 2.922289105758938, - 6.195282151249773, - 9.314859346615746, - 12.185068536532825, - 14.533800623098037, - 15.97605711092438, - 19.05033878902733, - 25.122967856823852, - 33.452953218314995 - ], - "pressure:J9:branch6_seg1": [ - 261614.06841059006, - 282723.2489750596, - 409181.13291185285, - 489355.14608847885, - 570147.7393012078, - 638915.1240103756, - 599405.9122136951, - 529548.1290076063, - 486632.0762855671, - 343230.22824382066, - 148804.8937718588, - 102711.2158268803, - 42816.533763905485, - -61106.73868692848, - -47882.255116671025, - -11508.259566720482, - 8036.324046914278, - 28310.02650319221, - 41661.30126322411, - 41019.86554411709, - 4368.401232624447, - -36127.54683658458, - -55245.25722410095, - -78974.10017688626, - -104184.50667236235, - -82935.1902929498, - -55545.251899322735, - -77402.4252408915, - -82283.04447431504, - -66362.21007713518, - -128696.30598960229, - -207937.093523552, - -208647.65874605044, - -246333.21288035455, - -309901.95191650494, - -251561.33041872096, - -200734.09207136813, - -189087.6432729976, - -103156.33294590542, - -38771.6438868823, - -36448.077018965945, - -8289.33944252413, - 8698.444190143648, - -23902.91648234389, - -39751.27568351472, - -26719.936457705, - -23192.87377733353, - -13108.24347078347, - 9751.67694932561, - 29823.09620884269, - 35328.78534431008, - 13267.255938298096, - -10243.564802063998, - -39454.997354606596, - -83783.64628574211, - -107982.25084248437, - -111610.89286345926, - -104454.7862626885, - -81743.92917675957, - -47574.72590346087, - -19095.461101347322, - -7761.729203603874, - -14254.437027406997, - -36503.35189611548, - -72300.23639970447, - -106605.70794835387, - -134385.6054482756, - -140154.17741392247, - -129138.4475083251, - -109403.16699842873, - -65534.44939477979, - -30867.171214655373, - -13008.881967577732, - -6046.915104394953, - -20950.792531016155, - -53338.08210130545, - -88261.51606515898, - -115155.69017465727, - -131544.4913462311, - -130837.01008545638, - -111921.48606545512, - -88376.4186346106, - -62492.10684750735, - -33448.11088696739, - -25638.738687744048, - -28743.837065645297, - -36302.68541535618, - -48771.9175897592, - -56466.75962446634, - -56447.689970380256, - -45332.02387523028, - -26846.04449916772, - -8073.965009251867, - 10718.50954547891, - 27036.17164132861, - 35619.33754368587, - 47917.057221707306, - 80379.92858475303, - 125808.7699684277, - 261614.06841059006 - ], - "flow:branch6_seg1:J10": [ - 33.1210567145812, - 45.90642715726296, - 63.55152804110279, - 80.54089961840495, - 91.63143700450584, - 102.5977092138559, - 106.91849122510342, - 93.13269468901046, - 77.5957828718337, - 59.55823893337955, - 27.327885429608987, - 2.8815558402817825, - -11.303975812138347, - -27.89552791241836, - -35.222054661826334, - -30.776107910532993, - -24.877437528866434, - -20.56927308953574, - -16.037245511841, - -13.346490321279422, - -14.961370999102174, - -20.970443682411364, - -26.680765934543942, - -28.974405673489525, - -32.199530093899284, - -33.14457126079039, - -27.86031115465343, - -25.212368475609377, - -25.941434847958302, - -23.84155804867322, - -27.185247656462867, - -37.31232177056231, - -41.80156953146513, - -45.758358899848005, - -53.09477190025222, - -49.96007506466634, - -39.62824246794698, - -33.41872855687429, - -23.123390965508655, - -7.183980041297872, - -0.2074772536644838, - 2.611700371718969, - 7.234649456786017, - 6.19842014862997, - 2.106745608884643, - 1.5073859986461688, - 2.3783090851151942, - 3.2830536267715402, - 5.980999785495418, - 9.789305052971653, - 11.735082471147736, - 9.827504877168092, - 6.0570081826795406, - 1.1883624460950837, - -5.88602708597929, - -12.345760004571932, - -14.780525064058393, - -14.593458658983291, - -11.600313345841842, - -6.083297107576129, - -0.3432533520988732, - 3.740585482867242, - 4.707980282757985, - 2.5992788256884354, - -2.450840289590041, - -8.742399570451761, - -14.418189237517536, - -17.474228018454912, - -17.15789720536393, - -14.074659440635138, - -7.549844528191407, - -0.25773516945245545, - 4.618190853024249, - 7.320340435139839, - 6.9269452849169415, - 2.7532241617414126, - -3.1608490664110134, - -9.00670172923203, - -13.202297592768653, - -14.929734346825501, - -13.134674000612772, - -8.973077969728935, - -4.0999308781307935, - 1.3124292284664307, - 4.727614940502126, - 5.522968812780345, - 4.732852632015644, - 2.8829655494765767, - 0.84881995208857, - -0.23849724147334453, - 0.4186281660494842, - 2.8290977729412736, - 6.108383275755104, - 9.222762851641722, - 12.12332759403608, - 14.490455389068252, - 15.8348084029411, - 18.857203151744592, - 25.09664631959307, - 33.1210567145812 - ], - "pressure:branch6_seg1:J10": [ - 246814.46311572008, - 262479.35416092165, - 380001.00122267666, - 470234.0835253042, - 554788.4798738067, - 620480.6073790017, - 590756.9831946159, - 541219.6385462633, - 501404.44539822737, - 368313.19170665956, - 176362.5649232514, - 119995.7654765594, - 64651.21652681027, - -44053.582515733295, - -46982.807684821804, - -16940.463592507447, - 2694.5094516587546, - 24696.466898618022, - 41218.17016058414, - 38909.76729751359, - 9263.693175099657, - -25757.746284015517, - -47835.50530142556, - -75239.2900844614, - -99496.1141148517, - -81268.61166964183, - -57724.878816198, - -76862.40142621352, - -84296.44430006461, - -63171.119989546554, - -117599.42194302996, - -199242.49456587204, - -204683.08714371303, - -235170.16458823578, - -298973.88476285886, - -263971.110584518, - -208484.6362446008, - -188865.72691592615, - -118802.36785880532, - -55108.443243576854, - -39235.32397688089, - -12147.191867082403, - 5314.824228682447, - -20071.381307415428, - -36847.54316890372, - -28124.034463574324, - -23825.477331915925, - -14617.656371194767, - 5151.672667871383, - 25549.364297078686, - 34735.54303579352, - 17272.61995513285, - -6249.5658454738705, - -34005.62109633509, - -74165.05752851938, - -101923.05652327093, - -109565.15550362477, - -104943.88467781131, - -86222.60647765227, - -54006.74902926266, - -24568.745638427314, - -10679.798224380984, - -13961.948078211573, - -32433.512804032456, - -65754.92698192639, - -99512.0456447423, - -128518.38162111207, - -137794.03758967912, - -129878.6768689435, - -113189.75078677296, - -74907.82208213386, - -37705.04728068763, - -17194.55422140658, - -8041.25406674272, - -18738.85507195496, - -47654.904353230064, - -81436.41065690697, - -108880.34381487881, - -127074.65923629601, - -129896.78523851358, - -114080.76397244738, - -93066.72969285102, - -68998.10502587931, - -38398.08515958103, - -27804.456294056206, - -28872.77701214472, - -34988.540740701734, - -46575.036185892954, - -54953.61706645014, - -55853.38466703288, - -47017.013700169926, - -30633.64896653319, - -12177.339963887987, - 6873.291184909934, - 23273.497787572815, - 32089.87836127913, - 44659.91130410416, - 74446.7504371447, - 117665.06786122522, - 246814.46311572008 - ], - "flow:J10:branch6_seg2": [ - 33.1210567145812, - 45.90642715726296, - 63.55152804110279, - 80.54089961840495, - 91.63143700450584, - 102.5977092138559, - 106.91849122510342, - 93.13269468901046, - 77.5957828718337, - 59.55823893337955, - 27.327885429608987, - 2.8815558402817825, - -11.303975812138347, - -27.89552791241836, - -35.222054661826334, - -30.776107910532993, - -24.877437528866434, - -20.56927308953574, - -16.037245511841, - -13.346490321279422, - -14.961370999102174, - -20.970443682411364, - -26.680765934543942, - -28.974405673489525, - -32.199530093899284, - -33.14457126079039, - -27.86031115465343, - -25.212368475609377, - -25.941434847958302, - -23.84155804867322, - -27.185247656462867, - -37.31232177056231, - -41.80156953146513, - -45.758358899848005, - -53.09477190025222, - -49.96007506466634, - -39.62824246794698, - -33.41872855687429, - -23.123390965508655, - -7.183980041297872, - -0.2074772536644838, - 2.611700371718969, - 7.234649456786017, - 6.19842014862997, - 2.106745608884643, - 1.5073859986461688, - 2.3783090851151942, - 3.2830536267715402, - 5.980999785495418, - 9.789305052971653, - 11.735082471147736, - 9.827504877168092, - 6.0570081826795406, - 1.1883624460950837, - -5.88602708597929, - -12.345760004571932, - -14.780525064058393, - -14.593458658983291, - -11.600313345841842, - -6.083297107576129, - -0.3432533520988732, - 3.740585482867242, - 4.707980282757985, - 2.5992788256884354, - -2.450840289590041, - -8.742399570451761, - -14.418189237517536, - -17.474228018454912, - -17.15789720536393, - -14.074659440635138, - -7.549844528191407, - -0.25773516945245545, - 4.618190853024249, - 7.320340435139839, - 6.9269452849169415, - 2.7532241617414126, - -3.1608490664110134, - -9.00670172923203, - -13.202297592768653, - -14.929734346825501, - -13.134674000612772, - -8.973077969728935, - -4.0999308781307935, - 1.3124292284664307, - 4.727614940502126, - 5.522968812780345, - 4.732852632015644, - 2.8829655494765767, - 0.84881995208857, - -0.23849724147334453, - 0.4186281660494842, - 2.8290977729412736, - 6.108383275755104, - 9.222762851641722, - 12.12332759403608, - 14.490455389068252, - 15.8348084029411, - 18.857203151744592, - 25.09664631959307, - 33.1210567145812 - ], - "pressure:J10:branch6_seg2": [ - 246814.46311572008, - 262479.35416092165, - 380001.00122267666, - 470234.0835253042, - 554788.4798738067, - 620480.6073790017, - 590756.9831946159, - 541219.6385462633, - 501404.44539822737, - 368313.19170665956, - 176362.5649232514, - 119995.7654765594, - 64651.21652681027, - -44053.582515733295, - -46982.807684821804, - -16940.463592507447, - 2694.5094516587546, - 24696.466898618022, - 41218.17016058414, - 38909.76729751359, - 9263.693175099657, - -25757.746284015517, - -47835.50530142556, - -75239.2900844614, - -99496.1141148517, - -81268.61166964183, - -57724.878816198, - -76862.40142621352, - -84296.44430006461, - -63171.119989546554, - -117599.42194302996, - -199242.49456587204, - -204683.08714371303, - -235170.16458823578, - -298973.88476285886, - -263971.110584518, - -208484.6362446008, - -188865.72691592615, - -118802.36785880532, - -55108.443243576854, - -39235.32397688089, - -12147.191867082403, - 5314.824228682447, - -20071.381307415428, - -36847.54316890372, - -28124.034463574324, - -23825.477331915925, - -14617.656371194767, - 5151.672667871383, - 25549.364297078686, - 34735.54303579352, - 17272.61995513285, - -6249.5658454738705, - -34005.62109633509, - -74165.05752851938, - -101923.05652327093, - -109565.15550362477, - -104943.88467781131, - -86222.60647765227, - -54006.74902926266, - -24568.745638427314, - -10679.798224380984, - -13961.948078211573, - -32433.512804032456, - -65754.92698192639, - -99512.0456447423, - -128518.38162111207, - -137794.03758967912, - -129878.6768689435, - -113189.75078677296, - -74907.82208213386, - -37705.04728068763, - -17194.55422140658, - -8041.25406674272, - -18738.85507195496, - -47654.904353230064, - -81436.41065690697, - -108880.34381487881, - -127074.65923629601, - -129896.78523851358, - -114080.76397244738, - -93066.72969285102, - -68998.10502587931, - -38398.08515958103, - -27804.456294056206, - -28872.77701214472, - -34988.540740701734, - -46575.036185892954, - -54953.61706645014, - -55853.38466703288, - -47017.013700169926, - -30633.64896653319, - -12177.339963887987, - 6873.291184909934, - 23273.497787572815, - 32089.87836127913, - 44659.91130410416, - 74446.7504371447, - 117665.06786122522, - 246814.46311572008 - ], - "flow:branch7_seg0:J11": [ - 117.81433070949768, - 156.88780309078794, - 214.34663408370363, - 277.02965676840404, - 333.0268638696725, - 384.7587329468549, - 420.13075271949975, - 404.23140366875634, - 362.6305292711321, - 306.3380130010268, - 199.34395469427614, - 88.37824694140863, - 1.072812542447371, - -87.0990590002884, - -151.2703950580745, - -176.7583782698028, - -180.1518575922212, - -172.6585564083569, - -157.83833936738384, - -139.71298557905286, - -132.37948351844804, - -137.14182871868627, - -146.70260364904757, - -153.66781271251833, - -160.65776772677083, - -165.9857012651326, - -152.10971217479005, - -137.75388302840818, - -132.69005149325127, - -120.27505461911194, - -118.99542587909689, - -138.12155722125792, - -155.14566086303498, - -170.25686652530376, - -191.0424996971512, - -194.47471479608595, - -173.30675491481256, - -148.17441737348182, - -111.34837376473784, - -56.805337682424145, - -13.495860810289269, - 15.980574635038876, - 43.896003247821604, - 56.79003466771563, - 54.09429161404198, - 52.28136053303551, - 52.08948074025137, - 52.203436420295176, - 56.52491464057657, - 64.87542203611139, - 71.55483686224076, - 69.25190918446901, - 59.08563054689982, - 42.286942665991354, - 17.037453349156618, - -10.111751156049374, - -30.709869029730662, - -41.813809582488894, - -42.568601241621366, - -32.29130055017971, - -15.083284278851623, - 1.9678225359250578, - 13.325720420693482, - 15.051412027889109, - 5.770955347587019, - -11.816697154849402, - -32.83160401963897, - -49.99189342560474, - -58.63442189210924, - -56.61649515629236, - -42.25291694662227, - -19.932008357274633, - 2.2000130356428755, - 19.673712886775427, - 28.595627335714948, - 24.9425810024441, - 10.881106899858336, - -8.327936893295146, - -27.300139944772674, - -41.32506331380554, - -45.080143224820546, - -38.804230102655204, - -26.069402825693736, - -8.140411406603636, - 8.672933310625087, - 19.130171155775045, - 23.525598542815565, - 22.32726011337815, - 17.519080083872968, - 12.715825551493284, - 11.407289082514401, - 15.398222248385347, - 23.605642144180678, - 33.96088244585166, - 44.981820886256, - 55.633199808413444, - 63.19340643658431, - 73.42598607573026, - 92.44839178699262, - 117.81433070949768 - ], - "pressure:branch7_seg0:J11": [ - 256262.9310472813, - 266004.28070952074, - 389981.0477265822, - 464745.433955423, - 544436.1060322407, - 626585.7218707892, - 602765.949420821, - 551244.5831777836, - 506197.49442069605, - 379463.6686970349, - 224859.7061096498, - 144648.412736537, - 81700.46514477769, - -19128.960387907493, - -29063.245965136408, - 561.8016466871314, - -775.683865306683, - 21210.98883865791, - 23985.529973784407, - 27527.632403580505, - 1539.375362679602, - -47834.906109637945, - -54923.32372493713, - -83558.05928462432, - -105871.04498569091, - -89452.05500789403, - -76197.96431826564, - -80376.2739411543, - -89751.42932142812, - -83184.41491667376, - -128988.5565213845, - -200331.4388730224, - -203742.73138601094, - -245206.8105453016, - -302430.5115798487, - -246917.5005965254, - -211315.5003268123, - -204044.58858319488, - -118329.81474160097, - -57176.462709970125, - -51314.0102747852, - -19667.146298240034, - -2010.6544252499393, - -22410.55381654038, - -35145.17321952117, - -23570.232279885036, - -18421.407701195236, - -12108.114018248278, - 11971.239877002889, - 28024.636102018027, - 33847.15769983836, - 16552.05538380207, - -5336.043990898766, - -28633.139309918453, - -74026.84080881494, - -96577.3009758114, - -102943.11888986958, - -101557.55459922779, - -80511.63412944172, - -54149.50321746632, - -26880.40847621124, - -15673.451633398441, - -19344.58035138181, - -36030.62705156477, - -68382.39189237225, - -98068.73991520813, - -125596.75597551526, - -133769.08554126718, - -126341.89736246406, - -111346.58601526819, - -70720.36750204337, - -40710.14708345124, - -23257.531877853362, - -12725.66121108257, - -24488.674781453174, - -50219.5257152286, - -81261.67716204599, - -107041.90051124353, - -123250.45597268362, - -126284.87937036948, - -111693.31341631016, - -91514.06129250818, - -67349.45729606804, - -42507.04787467125, - -32775.68221224829, - -32744.14739413199, - -37915.308925629724, - -47114.97689323528, - -53834.38362279869, - -54137.6700891798, - -44888.20294212897, - -27908.701523743046, - -11084.90465692236, - 6504.368489402723, - 23059.446663338338, - 32906.27508557149, - 46482.95029859645, - 75774.67379070415, - 117624.14144699356, - 256262.9310472813 - ], - "flow:J11:branch7_seg1": [ - 117.81433070949768, - 156.88780309078794, - 214.34663408370363, - 277.02965676840404, - 333.0268638696725, - 384.7587329468549, - 420.13075271949975, - 404.23140366875634, - 362.6305292711321, - 306.3380130010268, - 199.34395469427614, - 88.37824694140863, - 1.072812542447371, - -87.0990590002884, - -151.2703950580745, - -176.7583782698028, - -180.1518575922212, - -172.6585564083569, - -157.83833936738384, - -139.71298557905286, - -132.37948351844804, - -137.14182871868627, - -146.70260364904757, - -153.66781271251833, - -160.65776772677083, - -165.9857012651326, - -152.10971217479005, - -137.75388302840818, - -132.69005149325127, - -120.27505461911194, - -118.99542587909689, - -138.12155722125792, - -155.14566086303498, - -170.25686652530376, - -191.0424996971512, - -194.47471479608595, - -173.30675491481256, - -148.17441737348182, - -111.34837376473784, - -56.805337682424145, - -13.495860810289269, - 15.980574635038876, - 43.896003247821604, - 56.79003466771563, - 54.09429161404198, - 52.28136053303551, - 52.08948074025137, - 52.203436420295176, - 56.52491464057657, - 64.87542203611139, - 71.55483686224076, - 69.25190918446901, - 59.08563054689982, - 42.286942665991354, - 17.037453349156618, - -10.111751156049374, - -30.709869029730662, - -41.813809582488894, - -42.568601241621366, - -32.29130055017971, - -15.083284278851623, - 1.9678225359250578, - 13.325720420693482, - 15.051412027889109, - 5.770955347587019, - -11.816697154849402, - -32.83160401963897, - -49.99189342560474, - -58.63442189210924, - -56.61649515629236, - -42.25291694662227, - -19.932008357274633, - 2.2000130356428755, - 19.673712886775427, - 28.595627335714948, - 24.9425810024441, - 10.881106899858336, - -8.327936893295146, - -27.300139944772674, - -41.32506331380554, - -45.080143224820546, - -38.804230102655204, - -26.069402825693736, - -8.140411406603636, - 8.672933310625087, - 19.130171155775045, - 23.525598542815565, - 22.32726011337815, - 17.519080083872968, - 12.715825551493284, - 11.407289082514401, - 15.398222248385347, - 23.605642144180678, - 33.96088244585166, - 44.981820886256, - 55.633199808413444, - 63.19340643658431, - 73.42598607573026, - 92.44839178699262, - 117.81433070949768 - ], - "pressure:J11:branch7_seg1": [ - 256262.9310472813, - 266004.28070952074, - 389981.0477265822, - 464745.433955423, - 544436.1060322407, - 626585.7218707892, - 602765.949420821, - 551244.5831777836, - 506197.49442069605, - 379463.6686970349, - 224859.7061096498, - 144648.412736537, - 81700.46514477769, - -19128.960387907493, - -29063.245965136408, - 561.8016466871314, - -775.683865306683, - 21210.98883865791, - 23985.529973784407, - 27527.632403580505, - 1539.375362679602, - -47834.906109637945, - -54923.32372493713, - -83558.05928462432, - -105871.04498569091, - -89452.05500789403, - -76197.96431826564, - -80376.2739411543, - -89751.42932142812, - -83184.41491667376, - -128988.5565213845, - -200331.4388730224, - -203742.73138601094, - -245206.8105453016, - -302430.5115798487, - -246917.5005965254, - -211315.5003268123, - -204044.58858319488, - -118329.81474160097, - -57176.462709970125, - -51314.0102747852, - -19667.146298240034, - -2010.6544252499393, - -22410.55381654038, - -35145.17321952117, - -23570.232279885036, - -18421.407701195236, - -12108.114018248278, - 11971.239877002889, - 28024.636102018027, - 33847.15769983836, - 16552.05538380207, - -5336.043990898766, - -28633.139309918453, - -74026.84080881494, - -96577.3009758114, - -102943.11888986958, - -101557.55459922779, - -80511.63412944172, - -54149.50321746632, - -26880.40847621124, - -15673.451633398441, - -19344.58035138181, - -36030.62705156477, - -68382.39189237225, - -98068.73991520813, - -125596.75597551526, - -133769.08554126718, - -126341.89736246406, - -111346.58601526819, - -70720.36750204337, - -40710.14708345124, - -23257.531877853362, - -12725.66121108257, - -24488.674781453174, - -50219.5257152286, - -81261.67716204599, - -107041.90051124353, - -123250.45597268362, - -126284.87937036948, - -111693.31341631016, - -91514.06129250818, - -67349.45729606804, - -42507.04787467125, - -32775.68221224829, - -32744.14739413199, - -37915.308925629724, - -47114.97689323528, - -53834.38362279869, - -54137.6700891798, - -44888.20294212897, - -27908.701523743046, - -11084.90465692236, - 6504.368489402723, - 23059.446663338338, - 32906.27508557149, - 46482.95029859645, - 75774.67379070415, - 117624.14144699356, - 256262.9310472813 - ], - "flow:branch7_seg1:J12": [ - 117.73949430470824, - 156.7865726993606, - 214.17623104422864, - 276.93070203196885, - 332.95865378781673, - 384.6424246522111, - 420.12386222801575, - 404.252080363881, - 362.6390641667912, - 306.5479575807551, - 199.40922086088412, - 88.40041341472104, - 1.215363459557775, - -87.05010481415798, - -151.29404838904745, - -176.79422518079915, - -180.17571757840923, - -172.67520932625962, - -157.84398137212406, - -139.67931208936474, - -132.36286433682838, - -137.07260451609415, - -146.66783879880592, - -153.64691570246868, - -160.61440400275066, - -166.00996483642078, - -152.09013204351083, - -137.72005236851484, - -132.7471037791467, - -120.23796626654007, - -118.93276884305521, - -138.15013184957039, - -155.13941056961292, - -170.22402809031257, - -191.0494892058335, - -194.54826355270114, - -173.3474086496258, - -148.15891008065262, - -111.42408754258838, - -56.83601391227844, - -13.490384533067546, - 15.951525693501534, - 43.90448049269423, - 56.823760966607004, - 54.08284150867111, - 52.27536223303794, - 52.08401773763727, - 52.197112740672765, - 56.501798028099316, - 64.86592017258131, - 71.58029179408379, - 69.272025664926, - 59.1168279106034, - 42.31606673945468, - 17.073298000862902, - -10.098595221434058, - -30.702404035296915, - -41.81827676665156, - -42.59390498263438, - -32.316691409853114, - -15.098665627047898, - 1.9633163621225604, - 13.338748487419005, - 15.077076519626987, - 5.8013060577345446, - -11.791094968964671, - -32.82349577354838, - -49.99258298431892, - -58.649695339707314, - -56.65005026605676, - -42.292239635939076, - -19.96201592198596, - 2.1884199406213374, - 19.67276005778971, - 28.615689322176742, - 24.970206538775603, - 10.901488976899742, - -8.304682644206208, - -27.29227356162383, - -41.32949805395253, - -45.093240381602904, - -38.82442270942175, - -26.10100203988678, - -8.161769041097337, - 8.67476858742211, - 19.132799036032022, - 23.536016507702705, - 22.33772395450892, - 17.520947095564022, - 12.712110526795747, - 11.395278547225088, - 15.377219209058, - 23.58834835004338, - 33.942186076195576, - 44.9632816556609, - 55.61834135137105, - 63.17170856538829, - 73.38372958574179, - 92.42167664477267, - 117.73949430470824 - ], - "pressure:branch7_seg1:J12": [ - 247921.4671679164, - 253414.20381650675, - 371913.86276027723, - 448083.8858237197, - 528440.3574747859, - 609617.3781688699, - 596748.8547103723, - 553689.5694964492, - 512045.89486428903, - 395670.55268779164, - 247980.37411183986, - 167128.78591882726, - 100258.34670658696, - 977.8834045456376, - -17579.2605877184, - 4882.441736425124, - 1275.7693281744332, - 20243.228876755507, - 22283.985114220908, - 26115.25169707922, - 2535.144660521512, - -42888.15785244716, - -52145.7648958903, - -79797.88675965747, - -101912.43575604848, - -89214.24835603153, - -77819.6496829571, - -81327.26810682351, - -89911.49022791436, - -84095.44841141456, - -125850.31909924361, - -193300.15796161094, - -199112.11037147685, - -239211.93076590355, - -295533.7872163454, - -247443.47757513006, - -215054.62625701368, - -207108.94300918543, - -128581.54064171444, - -68229.99610488774, - -58432.58977610218, - -26529.18633254944, - -7666.359579930607, - -23694.715240326044, - -34905.032599969236, - -24070.930642261028, - -19059.425917340708, - -12866.218172519459, - 9445.181045375833, - 25526.71728843564, - 32244.058649136256, - 17173.472430487145, - -2764.809370335826, - -24847.43565838862, - -67627.35385630754, - -91090.51807325512, - -98871.41884160208, - -99596.82123737714, - -81235.11946549606, - -56909.29724955121, - -30982.90267898867, - -19022.699036515867, - -21030.853942089852, - -35424.60841884733, - -65152.25724656393, - -93480.87007720648, - -120536.44093410559, - -130137.35657915997, - -124962.10537944161, - -112340.63753546934, - -74692.41017867545, - -45821.67375321839, - -27657.41826766545, - -16247.371986130804, - -25425.89567255775, - -48368.898634454294, - -77515.83545529911, - -102318.43962687437, - -119214.56942074947, - -123557.31259237096, - -111569.94655968035, - -93395.25442803036, - -70475.54774338857, - -46776.69212218514, - -35907.03705778712, - -34699.20736401933, - -38476.08482388651, - -46579.674638699835, - -52859.20944787161, - -53477.23741456167, - -45296.49969503082, - -29653.548723835756, - -13443.344030057091, - 3547.6488219052585, - 19991.898819451537, - 30354.14235253346, - 44001.051075690055, - 71780.11115031468, - 111653.64129365959, - 247921.4671679164 - ], - "flow:J12:branch7_seg2": [ - 117.73949430470824, - 156.7865726993606, - 214.17623104422864, - 276.93070203196885, - 332.95865378781673, - 384.6424246522111, - 420.12386222801575, - 404.252080363881, - 362.6390641667912, - 306.5479575807551, - 199.40922086088412, - 88.40041341472104, - 1.215363459557775, - -87.05010481415798, - -151.29404838904745, - -176.79422518079915, - -180.17571757840923, - -172.67520932625962, - -157.84398137212406, - -139.67931208936474, - -132.36286433682838, - -137.07260451609415, - -146.66783879880592, - -153.64691570246868, - -160.61440400275066, - -166.00996483642078, - -152.09013204351083, - -137.72005236851484, - -132.7471037791467, - -120.23796626654007, - -118.93276884305521, - -138.15013184957039, - -155.13941056961292, - -170.22402809031257, - -191.0494892058335, - -194.54826355270114, - -173.3474086496258, - -148.15891008065262, - -111.42408754258838, - -56.83601391227844, - -13.490384533067546, - 15.951525693501534, - 43.90448049269423, - 56.823760966607004, - 54.08284150867111, - 52.27536223303794, - 52.08401773763727, - 52.197112740672765, - 56.501798028099316, - 64.86592017258131, - 71.58029179408379, - 69.272025664926, - 59.1168279106034, - 42.31606673945468, - 17.073298000862902, - -10.098595221434058, - -30.702404035296915, - -41.81827676665156, - -42.59390498263438, - -32.316691409853114, - -15.098665627047898, - 1.9633163621225604, - 13.338748487419005, - 15.077076519626987, - 5.8013060577345446, - -11.791094968964671, - -32.82349577354838, - -49.99258298431892, - -58.649695339707314, - -56.65005026605676, - -42.292239635939076, - -19.96201592198596, - 2.1884199406213374, - 19.67276005778971, - 28.615689322176742, - 24.970206538775603, - 10.901488976899742, - -8.304682644206208, - -27.29227356162383, - -41.32949805395253, - -45.093240381602904, - -38.82442270942175, - -26.10100203988678, - -8.161769041097337, - 8.67476858742211, - 19.132799036032022, - 23.536016507702705, - 22.33772395450892, - 17.520947095564022, - 12.712110526795747, - 11.395278547225088, - 15.377219209058, - 23.58834835004338, - 33.942186076195576, - 44.9632816556609, - 55.61834135137105, - 63.17170856538829, - 73.38372958574179, - 92.42167664477267, - 117.73949430470824 - ], - "pressure:J12:branch7_seg2": [ - 247921.4671679164, - 253414.20381650675, - 371913.86276027723, - 448083.8858237197, - 528440.3574747859, - 609617.3781688699, - 596748.8547103723, - 553689.5694964492, - 512045.89486428903, - 395670.55268779164, - 247980.37411183986, - 167128.78591882726, - 100258.34670658696, - 977.8834045456376, - -17579.2605877184, - 4882.441736425124, - 1275.7693281744332, - 20243.228876755507, - 22283.985114220908, - 26115.25169707922, - 2535.144660521512, - -42888.15785244716, - -52145.7648958903, - -79797.88675965747, - -101912.43575604848, - -89214.24835603153, - -77819.6496829571, - -81327.26810682351, - -89911.49022791436, - -84095.44841141456, - -125850.31909924361, - -193300.15796161094, - -199112.11037147685, - -239211.93076590355, - -295533.7872163454, - -247443.47757513006, - -215054.62625701368, - -207108.94300918543, - -128581.54064171444, - -68229.99610488774, - -58432.58977610218, - -26529.18633254944, - -7666.359579930607, - -23694.715240326044, - -34905.032599969236, - -24070.930642261028, - -19059.425917340708, - -12866.218172519459, - 9445.181045375833, - 25526.71728843564, - 32244.058649136256, - 17173.472430487145, - -2764.809370335826, - -24847.43565838862, - -67627.35385630754, - -91090.51807325512, - -98871.41884160208, - -99596.82123737714, - -81235.11946549606, - -56909.29724955121, - -30982.90267898867, - -19022.699036515867, - -21030.853942089852, - -35424.60841884733, - -65152.25724656393, - -93480.87007720648, - -120536.44093410559, - -130137.35657915997, - -124962.10537944161, - -112340.63753546934, - -74692.41017867545, - -45821.67375321839, - -27657.41826766545, - -16247.371986130804, - -25425.89567255775, - -48368.898634454294, - -77515.83545529911, - -102318.43962687437, - -119214.56942074947, - -123557.31259237096, - -111569.94655968035, - -93395.25442803036, - -70475.54774338857, - -46776.69212218514, - -35907.03705778712, - -34699.20736401933, - -38476.08482388651, - -46579.674638699835, - -52859.20944787161, - -53477.23741456167, - -45296.49969503082, - -29653.548723835756, - -13443.344030057091, - 3547.6488219052585, - 19991.898819451537, - 30354.14235253346, - 44001.051075690055, - 71780.11115031468, - 111653.64129365959, - 247921.4671679164 - ], - "flow:INFLOW:branch0_seg0": [ - 852.8214442259172, - 1118.486267799621, - 1512.0222657376494, - 1887.4729020795003, - 2312.898724509188, - 2675.207453594711, - 2840.0128294530527, - 2855.488104132652, - 2704.688404195668, - 2342.338136675987, - 1698.6480758793448, - 1232.8464623953762, - 547.7716873416613, - 155.68288258367295, - -354.26081661195906, - -521.9133872048149, - -674.6305633069009, - -705.3644140837112, - -705.8308045096925, - -714.7191352694945, - -761.2257703710623, - -842.9075206980056, - -950.9680800749403, - -1028.4888295779144, - -1150.8488926462285, - -1151.3191433636305, - -1142.5774607290866, - -1116.0883045327323, - -1070.015247715286, - -1059.8254247404493, - -1099.465042425857, - -1172.9617757770018, - -1301.0002321838513, - -1424.9430371963417, - -1513.9191907126315, - -1529.5430314970756, - -1461.8634622132158, - -1274.361096659664, - -1067.9069937474205, - -781.6052273988278, - -555.0811427037473, - -262.2609356232955, - -139.42150023947727, - -17.317881134805454, - 35.35419371940424, - 85.8065240233537, - 112.96782437031689, - 179.15367466598147, - 234.0169989672913, - 330.83737773063433, - 370.10211224369533, - 393.98358037277717, - 367.96249135849024, - 258.6536587756236, - 171.06072417035864, - 4.54129470615542, - -90.68373743557156, - -165.805678957748, - -172.12741704858118, - -119.80439609905173, - -44.60020782906426, - 44.69740778250576, - 87.59571048751553, - 91.837175002585, - 34.821136214112435, - -65.95904031774455, - -176.46457098691394, - -280.8763618309149, - -334.18596583159916, - -326.19675102790325, - -252.1889790561357, - -148.5201457467677, - -9.293033383781538, - 61.33195507985649, - 109.3100661451808, - 96.30228237240904, - 5.797892643370591, - -69.38152839390077, - -196.0672168004675, - -248.82958172855197, - -274.7914402311835, - -252.74753392554027, - -160.61803024444242, - -92.42751726163958, - 12.719849970608971, - 57.34970333844624, - 97.99093483965592, - 97.52628508600573, - 80.46140736359429, - 70.64554306242974, - 76.34184304028875, - 104.54210469540739, - 161.94762800185975, - 217.03900350835113, - 311.1585829141075, - 363.857156232901, - 436.51866751529167, - 520.0941828804364, - 658.3518590575383, - 852.8214442259172 - ], - "pressure:INFLOW:branch0_seg0": [ - 322816.4818995891, - 367279.433980257, - 522453.80897156487, - 587047.042494455, - 646382.8452050157, - 771009.5307408356, - 622095.7200842886, - 526084.38427636, - 441867.26628439303, - 230437.63749017462, - 60951.23774440736, - -61759.38272212559, - -73638.58716526476, - -165784.26076939722, - -137723.27884790866, - -15721.92677694692, - -34716.08984374859, - 35448.403462372036, - 33781.5087318741, - 32388.803250723646, - 2803.6963795187535, - -102375.08047036917, - -65004.24124312342, - -113941.25045549075, - -141018.86230680853, - -79354.8157326543, - -76349.01041750128, - -55619.052399573564, - -87834.14103254414, - -84680.3680213351, - -142655.78929713156, - -247844.51004327775, - -236788.16020501513, - -284091.8485326786, - -337576.07695238944, - -225719.7914041693, - -172035.54455481074, - -169021.2032668103, - -17339.746717046204, - 32835.380018038704, - 11710.835198006258, - 43912.584518152245, - 40686.428181630385, - -4289.9271532369885, - -31358.990848674483, - -17111.899797929378, - -6561.331705184353, - -4294.162875385829, - 37411.202316891024, - 48628.317406355694, - 43423.72005867002, - 14360.581607866605, - -28268.116459656016, - -59424.832458992896, - -122846.54103685051, - -142602.32992991127, - -129622.25483044132, - -118454.7086375536, - -69559.02453044406, - -33160.58361262824, - 4131.435463195045, - 11255.808462778557, - -10886.538825562777, - -40316.85687797321, - -95398.90637371746, - -135376.3877551379, - -161357.09231236894, - -163548.64869651705, - -132798.2548381995, - -99636.9580160028, - -37374.241762157435, - 1608.5541255139037, - 9396.431588021629, - 15846.775183933294, - -20872.20216863053, - -64097.7990950866, - -112055.29714121239, - -143875.18876476266, - -153715.64988694107, - -147165.45913717692, - -110022.52285532103, - -75772.13848781948, - -38515.68686606467, - -12121.664860164832, - -7168.25724130691, - -19464.86790166059, - -34104.28806797763, - -50482.7889896466, - -62544.77024702709, - -58153.11637081186, - -40999.44409614613, - -14140.47255512727, - 8963.050367020847, - 26169.56805705677, - 50335.542815194516, - 49672.07999371527, - 69064.64405783024, - 102889.12486048821, - 166670.30273753052, - 322816.4818995891 - ], - "flow:branch2_seg2:RCR_0": [ - 144.39012990564794, - 193.35613088556437, - 264.7021346651384, - 342.8400737969334, - 409.8805225292544, - 470.3580468051356, - 509.77524154723017, - 481.6645129693187, - 422.4001195475306, - 348.8904433533434, - 208.47499415989864, - 68.297009702873, - -35.141976118398006, - -141.17265880552674, - -214.0620125893179, - -236.17134891391038, - -231.2533011644381, - -214.83174706238879, - -191.11080007423345, - -164.82041903216754, - -154.87382269104333, - -160.69833107066245, - -173.29703116356114, - -181.83796196231336, - -189.93902498091214, - -196.42631606161885, - -176.57277927400028, - -157.44083914719704, - -152.29747292436429, - -135.65445234170363, - -134.86198991603908, - -161.8377247201374, - -183.49080344909189, - -201.907534824838, - -228.15539424042015, - -230.97962615939608, - -200.90262732026414, - -167.09712434483623, - -120.29654306114332, - -50.6067107548985, - 2.3968004382101404, - 35.56787408987277, - 67.75232446124492, - 79.97081278903366, - 71.97624501397517, - 67.0454778502519, - 65.13584609268516, - 64.12110961854863, - 68.88219406417106, - 79.21790142591512, - 87.35308647852935, - 83.12570041661554, - 69.11405836024953, - 46.89667988397746, - 14.438743851846453, - -19.815235779813335, - -44.39469867421811, - -56.32162787365014, - -54.996013711699064, - -39.654456760915124, - -16.199918633423213, - 5.985206326507575, - 19.906606749456206, - 20.88002873065874, - 7.60037459062128, - -15.971502242737367, - -43.09347165421592, - -64.27508747546929, - -73.77728253261617, - -69.45737162123942, - -49.38932605236695, - -19.7181723569986, - 8.505361832250967, - 29.83055596833616, - 39.55449189151775, - 32.82063216349238, - 13.023483134095077, - -12.410082596351291, - -36.620078504576675, - -53.63619926988452, - -56.78669982345064, - -47.10514744369058, - -29.722416504108747, - -6.1295418152851155, - 15.207870390890257, - 27.422335665774607, - 31.66496056391871, - 28.746788888024867, - 21.46694663851013, - 14.765621914960196, - 13.013027777036699, - 18.30281224031007, - 29.060933011370693, - 42.176678773989124, - 55.878791232943264, - 68.75396631354188, - 77.35532418655754, - 89.34979254143575, - 113.315734919898, - 144.39012990564794 - ], - "pressure:branch2_seg2:RCR_0": [ - 193582.4334216555, - 169463.63413750954, - 249884.38140186, - 342147.4515890797, - 429790.45847083, - 516223.43459427624, - 588043.9923261668, - 599920.5650963349, - 580481.3170850425, - 543484.001782487, - 438740.62097557983, - 323249.43435614265, - 231157.15728415022, - 129035.99518101098, - 49396.82936804681, - 11383.44776680551, - -2920.397600581219, - -6195.310930473204, - -1280.7985483877803, - 7881.645059800722, - 4035.993389631575, - -13554.17591205756, - -38049.49246885185, - -59519.61459746315, - -81180.59578309825, - -102071.32745710624, - -98858.51034980959, - -94680.98478478927, - -101927.63413331348, - -98130.5616371784, - -107554.24349061177, - -142520.88600669007, - -174811.28334354117, - -205516.16053934075, - -244745.47622926743, - -264567.7613441961, - -253836.99251126745, - -237199.66479964933, - -206246.32353501086, - -150278.31048846932, - -104309.04147567462, - -72908.78161254092, - -39863.251328100145, - -22812.268964490155, - -23691.312178017903, - -22453.925025667355, - -18782.09630020369, - -14457.40109300664, - -4944.373088694733, - 10123.007127097977, - 23926.137004265835, - 26909.736952320716, - 20472.418704486212, - 5328.206184285153, - -20933.850148554986, - -51426.24927678588, - -75577.56556253794, - -89838.96157407263, - -92742.61598841797, - -82513.80111983558, - -63579.63866267222, - -43980.144650858216, - -30325.353942692826, - -27614.633820548195, - -38016.39970328703, - -59004.576499250485, - -85073.0937716155, - -107733.84712450599, - -121187.02295303803, - -122508.57290274635, - -108944.96680689896, - -84876.78170816958, - -59855.22227487656, - -39098.900250752966, - -27431.182506691894, - -30288.057648718048, - -45782.451190044914, - -68043.63990421213, - -91129.67338841123, - -109398.20570287442, - -116125.52738578503, - -111161.95963051217, - -98299.3029931092, - -78346.34894365497, - -58647.67932215226, - -45787.27645382102, - -39405.18253909368, - -39354.51192842968, - -43598.85735967871, - -47892.91020020132, - -48140.80916204699, - -42011.77539035208, - -30403.86877862862, - -15809.152274439191, - 307.0271829339314, - 16705.964751139785, - 30057.58284099591, - 47117.44643073356, - 76106.87134402743, - 193582.4334216555 - ], - "flow:branch4_seg2:RCR_1": [ - 370.3246574244162, - 482.2227544333679, - 638.207444357086, - 847.1929248010327, - 1024.134702220575, - 1238.467463271014, - 1432.6251457360418, - 1482.444103579611, - 1515.3252619556667, - 1451.2259188932903, - 1267.755826988073, - 1031.393283370842, - 777.8898701650733, - 539.8361518562498, - 263.81410711939503, - 101.53491095841554, - -26.767095442605996, - -141.38506223711855, - -184.93487070228116, - -256.9727770486124, - -286.48907392511614, - -363.40761113896417, - -447.3287284818344, - -489.4138613565637, - -578.909498361788, - -620.8436815183542, - -638.1333116190963, - -646.198983787428, - -644.5164617440638, - -653.4208618832843, - -642.8036671066751, - -694.8158219023132, - -754.5930550741755, - -786.7306278045954, - -863.6543245852957, - -906.6714758707577, - -877.2123266023759, - -847.9698016568158, - -784.4731992515019, - -644.9757552181566, - -529.6941351263764, - -421.0327548543779, - -301.96884940150704, - -216.02310289213176, - -155.83192380617166, - -110.94808954374012, - -55.78430391491064, - -14.015089439792973, - 33.1288523616409, - 94.1655950803904, - 140.2230038240395, - 179.61687602735674, - 186.1973132577748, - 176.70012909806073, - 144.7349461869423, - 81.35306824799679, - 36.386989976039004, - -9.601157572238664, - -31.703657413945624, - -28.561227799327387, - -11.426297951180262, - 24.604528103846324, - 44.47010787898915, - 57.72328059537298, - 43.80008653932103, - 6.509973572324164, - -40.209219772651515, - -95.60838391654198, - -131.29873045079952, - -150.45860291508058, - -143.71913103722946, - -103.98265425247546, - -62.9619695469837, - -17.00508566618706, - 17.543655909436204, - 25.13849123363032, - 12.644343541709839, - -24.02840278570186, - -63.127939931501906, - -103.79967386197201, - -126.290176350693, - -127.18053081471005, - -112.6458458538054, - -78.54887209664362, - -40.745018350432005, - -7.982593037040798, - 13.48767534021598, - 25.45219689032067, - 26.701056169680587, - 24.93981287152286, - 27.80333337338969, - 39.77799966049774, - 63.91156388621568, - 92.10246004282828, - 127.75140742297916, - 165.57185215967192, - 195.63521850434458, - 236.6579442693426, - 293.1315020645828, - 370.3246574244162 - ], - "pressure:branch4_seg2:RCR_1": [ - 137484.47768493774, - 93014.33810385902, - 142137.93156930164, - 207739.21013018457, - 268204.97024995275, - 341412.14780333155, - 412563.8050287578, - 448947.2403114674, - 481270.1710647386, - 488411.22643553134, - 463251.17554117047, - 420409.52225356735, - 369480.11097582936, - 318402.2029468918, - 253116.47319245466, - 213653.8671394351, - 180243.3314327047, - 148667.41786098035, - 133829.22200087318, - 110843.8693178034, - 98112.26407494846, - 72154.53501722106, - 43406.34126258425, - 24136.417960096587, - -8166.14981237947, - -29273.817639090346, - -44757.22551057393, - -57664.73558085358, - -68300.59864126328, - -81644.98765134915, - -89708.60822472398, - -114290.10199643021, - -141629.25599374104, - -162581.47230251462, - -195849.60052898008, - -221382.145447622, - -228396.58681602456, - -234876.1257669348, - -231798.49681810552, - -207559.31142570724, - -187301.8561929546, - -166882.4201386014, - -142000.22276707122, - -123759.67302051946, - -110999.78719966608, - -101323.13820860001, - -88137.88055943257, - -77666.9872289701, - -65039.3991017267, - -48036.97003548573, - -33956.345905515955, - -20870.716305856946, - -15897.3786766828, - -14989.98483015795, - -20256.79844660711, - -34343.9590359702, - -44618.34630937457, - -55944.71986057618, - -61655.98842886824, - -61132.24940520317, - -56789.403614839255, - -47190.916627939696, - -41269.72879452661, - -36731.951610350756, - -39202.925379418746, - -48038.538394468145, - -60016.929418896165, - -75057.56080050553, - -85779.48314008271, - -92750.14157392623, - -93158.01399145214, - -84724.84026738118, - -75291.55905274116, - -63850.296285543416, - -54688.67230871132, - -52047.137664136666, - -54618.68437828322, - -63788.93876672549, - -74194.71201090775, - -85682.73715131615, - -93021.63416578568, - -95020.83593413193, - -92936.07626031735, - -85456.93544475733, - -76399.0524516735, - -68056.77755842697, - -62168.74810508441, - -58433.0703447572, - -57355.368844429926, - -57054.8202726652, - -55585.467831013804, - -51663.15706916942, - -44342.12078711226, - -35560.73467778174, - -24352.028945031914, - -12016.342372278541, - -1098.7170212440221, - 13137.132916507002, - 32082.21009668609, - 137484.47768493774 - ], - "flow:branch5_seg2:RCR_2": [ - 129.64256532827244, - 174.4708365707954, - 239.61305934924096, - 309.70026695547597, - 367.9805534709063, - 419.66311523561427, - 450.86931569899303, - 418.4934040804629, - 359.4885779610462, - 289.87477531914936, - 159.04946117682135, - 32.771142534886245, - -55.576134271381804, - -146.40813730723562, - -205.08687720488024, - -216.5592668077561, - -205.01099294490734, - -185.20449497883064, - -160.72279438166757, - -135.4817722981099, - -127.12231232247096, - -133.98020733778407, - -146.68070127706022, - -155.0554499014629, - -162.73040832336562, - -168.64252150455863, - -149.39005694294403, - -131.79902077997426, - -128.15654073370166, - -113.27618192332768, - -113.96601920567456, - -140.84781195901428, - -161.17237295394332, - -177.87702886769716, - -201.84184957881317, - -202.68554935055033, - -172.7486401530129, - -140.8113442848432, - -97.35040420343803, - -33.42517246132197, - 12.924839576606592, - 39.96804972591577, - 66.5409220305989, - 74.27520767553611, - 63.73174769434409, - 57.53282557058368, - 54.97835282629235, - 53.67773879505942, - 58.16952589552166, - 67.88299018388746, - 75.26188949582934, - 70.68090852506081, - 57.15496285288278, - 36.39478026077662, - 6.481314156896856, - -24.27231484722639, - -45.18995450387557, - -54.003078874219234, - -50.59942937004338, - -34.58810038257868, - -11.8558746364948, - 8.675370276948996, - 20.713805046188455, - 20.297916768330467, - 6.669552659985536, - -15.994634113588498, - -41.14784805565604, - -59.904509522754196, - -67.2349584925314, - -61.64379797067373, - -41.63600513433259, - -13.487612079186096, - 12.232773848458226, - 30.79718548797752, - 38.08282762637729, - 29.983508592526842, - 10.224707167686178, - -13.907342230632514, - -35.97871330008468, - -50.66897168657595, - -51.99776510520473, - -41.548092075065824, - -24.508764720127814, - -2.3045934538270747, - 16.973331676182486, - 27.15267131520962, - 29.787122153015844, - 25.927134886334866, - 18.388176036453988, - 11.89082709804055, - 10.425854304108755, - 15.700264940393899, - 25.948576495680065, - 38.08745959277232, - 50.47565975708314, - 61.82694802254142, - 68.99905617337224, - 79.51030585055582, - 101.42771357445746, - 129.64256532827244 - ], - "pressure:branch5_seg2:RCR_2": [ - 199051.7385088925, - 177541.76840971992, - 261620.8280467675, - 356796.6665932432, - 445232.8471963542, - 531504.1536587067, - 600873.2761109667, - 604946.6584016656, - 577550.6074450111, - 533916.5968600226, - 418937.52355886577, - 297069.924103197, - 204551.5453183411, - 101942.44536823967, - 25413.954130635455, - -5909.8916440545145, - -13377.196572741334, - -11079.19258764891, - -1898.3417587579995, - 10281.853246286946, - 6849.322284521855, - -11923.129346545886, - -37727.400898464206, - -59796.19087118626, - -81804.32809946446, - -102741.3975553853, - -97224.82978250388, - -91668.57066624363, - -99330.05293237662, - -94731.42410269153, - -105177.65876374384, - -143405.53502101885, - -177240.43734254886, - -208745.00765316602, - -249289.5746943582, - -267682.8675716179, - -253106.49077500906, - -233617.41335686456, - -199428.31908535294, - -139407.76842339165, - -92322.28830474387, - -61978.14542322698, - -29727.87135417282, - -15125.367495332526, - -19427.14642019223, - -20149.190168438698, - -17518.492725060874, - -13806.802662172351, - -4139.880781998415, - 11508.109224627395, - 25512.306862308225, - 27463.421981231808, - 19469.05501266195, - 2561.836156225378, - -25820.59915649475, - -57814.81863554386, - -82051.60707252022, - -95201.45978097309, - -96146.9313068807, - -83339.20495195704, - -61965.4879090996, - -40886.04205380796, - -27020.02030612791, - -25355.046335029907, - -37754.903675903675, - -60997.921203052596, - -88863.65144934735, - -112160.25417086437, - -124947.517651244, - -124582.01414768919, - -108438.855928687, - -81804.87067133129, - -55256.14050090882, - -34096.58170682743, - -23267.594604690374, - -28179.72963339006, - -46220.579661780255, - -70678.07065050829, - -95076.34516387673, - -113559.09909984269, - -119128.72881817547, - -112244.53797224554, - -97412.35027930622, - -75586.29758248127, - -54889.45950251723, - -42195.80031827285, - -36660.01240565254, - -37820.64196329964, - -43264.16900124141, - -48291.54221544966, - -48565.16043506072, - -41814.37095694647, - -29301.063388256258, - -13899.03558978702, - 2807.943490252203, - 19504.08063099948, - 32674.487378057955, - 49926.09071902223, - 80147.56939785658, - 199051.7385088925 - ], - "flow:branch6_seg2:RCR_3": [ - 32.58683867583751, - 44.834482412635914, - 62.07331257255673, - 78.85219903479368, - 90.90579331906788, - 102.45222420611313, - 106.82134213317794, - 91.8250999601082, - 77.86715349585754, - 62.75759481765566, - 27.7800259949343, - 2.3047891059893115, - -10.080250154881794, - -26.932046354791915, - -35.60322411987168, - -30.936319032719517, - -25.294572454698688, - -21.10881720933089, - -15.771285942382137, - -12.906361563891792, - -14.850198470958077, - -20.705455650365458, - -26.01377968263428, - -28.388630463501247, - -32.182858387355544, - -33.64363722774285, - -27.237005291996155, - -24.768739973437388, - -26.93768340393803, - -23.93039039834598, - -26.275292760839953, - -37.16321597549426, - -42.497793883136374, - -45.53446509771757, - -52.338875386627485, - -50.605757965401125, - -40.55168228659393, - -33.446495499737026, - -22.93393844911182, - -7.4681846892188615, - -0.5093327978606236, - 2.4347788040377436, - 7.502722168039165, - 6.48110694341178, - 2.1200929424969885, - 1.397554523971204, - 2.3434168205144887, - 3.233798637461237, - 5.865105153754423, - 9.697622841864419, - 11.728913085572817, - 10.195523079736102, - 6.397043203801143, - 1.3544329696180262, - -5.674052266945673, - -12.135371956901148, - -14.68766772489366, - -14.589687528457743, - -11.778815653048254, - -6.368363256022505, - -0.5464129177785182, - 3.769937628419469, - 4.818052087627974, - 2.9025650087462314, - -2.1614072471378303, - -8.551261911833262, - -14.304674228472797, - -17.58871982770834, - -17.305764395043543, - -14.162309991290927, - -7.95464902316926, - -0.6440757913449685, - 4.4649233575766365, - 7.347672137570591, - 7.1095787055733, - 3.001749912759922, - -2.9592596695834144, - -8.888115501207091, - -13.100910831205637, - -15.09079954736119, - -13.20988455182226, - -9.064399489819053, - -4.497859140790839, - 1.0401155934508526, - 4.747393787043315, - 5.584039449377014, - 4.84726409766392, - 3.010477742560552, - 0.8482453224187666, - -0.3020627451847599, - 0.3426448648716571, - 2.6757081609005735, - 5.895086273847422, - 9.046777718620424, - 12.004460191076266, - 14.455003898364975, - 15.482621009767342, - 18.49599493504738, - 25.182591951126433, - 32.58683867583751 - ], - "pressure:branch6_seg2:RCR_3": [ - 219027.57408027755, - 209546.2263695402, - 308329.6199149908, - 409117.7648865028, - 489383.5754836429, - 569754.3261083924, - 616596.2169352538, - 565080.7338056836, - 514925.3390247707, - 455685.10552518396, - 291055.3530493502, - 166307.15233173274, - 102677.10374526908, - 13307.163867883746, - -38538.25002440459, - -23892.85476477793, - -2984.7248422323974, - 11827.119323761483, - 33551.40029313696, - 43874.64553807429, - 30446.105074774554, - -3511.714369240096, - -36234.77195584106, - -55072.53529991444, - -81657.50177197935, - -97338.11290261213, - -73005.99830882694, - -67093.24373062004, - -84330.55681446659, - -75567.25595902157, - -93269.08104241733, - -155264.02308763226, - -191562.22011582967, - -217120.0371883666, - -262669.46337162086, - -266487.2202406159, - -226895.33939177348, - -199895.9508108081, - -154210.5084277321, - -80310.29897285663, - -46051.357693128564, - -30961.54227159505, - -4235.7524276403165, - -7332.993568815874, - -27922.266984114325, - -30990.970668777427, - -25604.16989967771, - -20331.546519206375, - -5973.910170763938, - 15202.488799065342, - 28088.04120912042, - 23238.260010579856, - 6364.423859099488, - -17755.35394963759, - -53190.07567014436, - -87509.3810886644, - -103367.06590909084, - -106248.56108023257, - -95212.32726327899, - -70177.71426265463, - -41704.83100548548, - -19509.078009697358, - -13000.850904872086, - -21405.51564350055, - -46381.70791370618, - -79371.35593100936, - -110628.79453406722, - -130652.67112683934, - -133195.59216363463, - -121004.58282085168, - -92409.03077913052, - -56586.76686887296, - -30270.146794047854, - -14155.931509083077, - -13294.68836293147, - -32300.496649216046, - -61793.45417852167, - -92575.71980589906, - -116002.64168052265, - -129073.28847303537, - -122811.9784060894, - -104478.43703918351, - -82962.48206600428, - -55372.22887298855, - -35788.82111980524, - -30042.086024867596, - -32167.84625391349, - -40103.33104095934, - -50170.139336284534, - -55586.675235618015, - -52116.90976170297, - -39852.668433784114, - -22470.386477056865, - -4680.574312935983, - 12855.956043933087, - 28519.71016551311, - 37435.88202496744, - 56677.40987249196, - 95366.11094921471, - 219027.57408027755 - ], - "flow:branch7_seg2:RCR_4": [ - 117.14753218974951, - 156.14252442156337, - 212.83346901295528, - 276.301183093507, - 332.33610983678636, - 383.91828698948353, - 419.9533728413609, - 404.35209434426395, - 362.740959462481, - 307.9019133632817, - 199.95835019641, - 88.37804712704057, - 2.3552547640779906, - -86.76689481682006, - -151.3544504748058, - -177.09526595498727, - -180.32089788555425, - -172.79139362648988, - -157.8453796732533, - -139.4341725280304, - -132.24716789269567, - -136.56804042214435, - -146.40268606174587, - -153.4868639421666, - -160.32197992381228, - -166.148135604526, - -151.92800687597753, - -137.47360158385405, - -133.1423391506929, - -119.96515816943688, - -118.49529716756804, - -138.3584047586257, - -155.12482055051476, - -169.96418237285025, - -191.06993889989909, - -195.06686547769957, - -173.6111968087132, - -148.0406311114298, - -111.86804060806287, - -57.127761743292346, - -13.410294607975509, - 15.688179901787812, - 44.00624978085692, - 57.034432018271616, - 54.010244566189776, - 52.219343561831, - 52.04888316248059, - 52.14989075128239, - 56.34623473387633, - 64.77808956586792, - 71.76775078002386, - 69.40780506500217, - 59.33665219591578, - 42.50985253688763, - 17.331992454903155, - -10.006220104438528, - -30.649033893978263, - -41.83881880101493, - -42.77443349323849, - -32.485417884899306, - -15.216178343258314, - 1.9392641986493526, - 13.422633830496073, - 15.248577715418872, - 6.028332930691733, - -11.636871217225766, - -32.742244156310264, - -50.011893216953204, - -58.74302254103642, - -56.869411213524685, - -42.590533411614636, - -20.14955397262303, - 2.072461662759782, - 19.684791362346807, - 28.744327553247476, - 25.157147648076418, - 11.061529007194494, - -8.15984817069378, - -27.216654682280513, - -41.36908246692681, - -45.1706236261092, - -38.96055581884234, - -26.33272164120062, - -8.299260139878932, - 8.674008006201051, - 19.153095775246097, - 23.603379021982555, - 22.41189621197807, - 17.52930610896041, - 12.68602344537874, - 11.314275805002543, - 15.22390069810182, - 23.47354115386928, - 33.79559835881123, - 44.84201433208066, - 55.4915901451712, - 63.02920915469305, - 73.06186977193929, - 92.2597609326031, - 117.14753218974951 - ], - "pressure:branch7_seg2:RCR_4": [ - 181485.5111444608, - 152745.0632731698, - 226316.86584010298, - 312139.07797378226, - 395345.78548895393, - 478500.5126648823, - 549874.1097794771, - 569163.0042747697, - 559146.4631809456, - 531536.6743193107, - 442528.09095341666, - 339968.7476347168, - 254832.49771594213, - 159089.72678680829, - 81511.4962018398, - 39695.01144509591, - 19875.914727514, - 11214.61232361784, - 11258.583392649802, - 16354.744619200908, - 11255.674855068139, - -5343.230156435786, - -28333.92665638701, - -49057.74582675935, - -70082.73051110067, - -90717.1842015426, - -90378.77436857425, - -88435.1653125949, - -95906.59896141125, - -93591.17468985834, - -102393.07365810487, - -133622.1030288042, - -163462.00076259556, - -192511.60028845747, - -229393.73076346406, - -250181.20664380703, - -244007.50020292783, - -231436.3318463262, - -205608.80056093965, - -156662.6283980986, - -114507.81271816691, - -84264.51377749203, - -52278.54896492058, - -34026.10926525811, - -31813.051775784596, - -28655.01924342699, - -23926.508051361736, - -18954.703217558414, - -9698.462085040572, - 4446.849871817063, - 17780.78510186893, - 21796.89849324473, - 17377.786913608565, - 4861.168919701738, - -17952.31424385262, - -45347.21926518326, - -68028.50331804504, - -82432.26292795951, - -86923.74336458973, - -79523.64842887709, - -63784.920457954555, - -46607.73064378806, - -33939.519008564464, - -30539.43321490697, - -38705.386436834626, - -56688.4805448311, - -79869.22904821187, - -100844.1028927337, - -114252.06968582107, - -117106.01474527312, - -106636.80380512592, - -86172.37956215386, - -63946.26789237995, - -44696.34558639753, - -32967.30059229187, - -33904.36356315149, - -46345.15322519447, - -65500.177266828934, - -86180.56793183417, - -103317.37864097468, - -110696.26351675256, - -107727.98445523407, - -97368.7750932932, - -80146.55900066772, - -62440.503032450215, - -50162.003687609285, - -43395.647226259345, - -42255.54296205388, - -45171.86453879958, - -48501.750550879755, - -48591.262402844295, - -43200.41498381911, - -32847.32247342922, - -19585.72652305033, - -4670.932943381052, - 10790.753035066451, - 23814.445419655043, - 40068.06819664574, - 66870.74993784717, - 181485.5111444608 - ] + { + "bc_name": "RCR_2", + "bc_type": "RCR", + "bc_values": { + "C": 0.00011318999999999999, + "Pd": 0.0, + "Rd": 17177.0, + "Rp": 1019.0 + } + }, + { + "bc_name": "RCR_3", + "bc_type": "RCR", + "bc_values": { + "C": 4.123e-5, + "Pd": 0.0, + "Rd": 44958.0, + "Rp": 4995.0 + } + }, + { + "bc_name": "RCR_4", + "bc_type": "RCR", + "bc_values": { + "C": 0.00011318999999999999, + "Pd": 0.0, + "Rd": 17177.0, + "Rp": 1019.0 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0], + "junction_name": "J0", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [1, 5, 9] + }, + { + "inlet_vessels": [1], + "junction_name": "J1", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [2, 15] + }, + { + "inlet_vessels": [5], + "junction_name": "J2", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [6, 12] + }, + { + "inlet_vessels": [2], + "junction_name": "J3", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [3] + }, + { + "inlet_vessels": [3], + "junction_name": "J4", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [4] + }, + { + "inlet_vessels": [6], + "junction_name": "J5", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [7] + }, + { + "inlet_vessels": [7], + "junction_name": "J6", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [8] + }, + { + "inlet_vessels": [9], + "junction_name": "J7", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [10] + }, + { + "inlet_vessels": [10], + "junction_name": "J8", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [11] + }, + { + "inlet_vessels": [12], + "junction_name": "J9", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [13] + }, + { + "inlet_vessels": [13], + "junction_name": "J10", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [14] + }, + { + "inlet_vessels": [15], + "junction_name": "J11", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [16] + }, + { + "inlet_vessels": [16], + "junction_name": "J12", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [17] } -} \ No newline at end of file + ], + "simulation_parameters": { + "density": 1.06, + "model_name": "0104_0001", + "number_of_cardiac_cycles": 9, + "number_of_time_pts_per_cardiac_cycle": 968, + "viscosity": 0.04, + "output_all_cycles": false + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 5.462738535526542, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 1, + "vessel_length": 1.2615694946168765, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 2, + "vessel_length": 3.066087671068054, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 3, + "vessel_length": 0.386387365444609, + "vessel_name": "branch2_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_0" + }, + "vessel_id": 4, + "vessel_length": 1.0711328524532193, + "vessel_name": "branch2_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 5, + "vessel_length": 0.6541411252008914, + "vessel_name": "branch3_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 6, + "vessel_length": 3.9035420097681923, + "vessel_name": "branch4_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 7, + "vessel_length": 1.6172339670911955, + "vessel_name": "branch4_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_1" + }, + "vessel_id": 8, + "vessel_length": 10.404354538354355, + "vessel_name": "branch4_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 9, + "vessel_length": 2.0528043053140657, + "vessel_name": "branch5_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 10, + "vessel_length": 1.8557246843610942, + "vessel_name": "branch5_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_2" + }, + "vessel_id": 11, + "vessel_length": 1.6295908330522304, + "vessel_name": "branch5_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 12, + "vessel_length": 1.560439375019021, + "vessel_name": "branch6_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 13, + "vessel_length": 1.6347590809944081, + "vessel_name": "branch6_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_3" + }, + "vessel_id": 14, + "vessel_length": 3.8286489278855598, + "vessel_name": "branch6_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 15, + "vessel_length": 0.8548959459506262, + "vessel_name": "branch7_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 16, + "vessel_length": 0.3605161548345858, + "vessel_name": "branch7_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_4" + }, + "vessel_id": 17, + "vessel_length": 2.8490356278827176, + "vessel_name": "branch7_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + } + ], + "calibration_parameters": { + "tolerance_gradient": 1e-5, + "tolerance_increment": 1e-9, + "maximum_iterations": 20, + "calibrate_stenosis_coefficient": true, + "set_capacitance_to_zero": false + }, + "y": { + "flow:branch0_seg0:J0": [ + 18.92175758566744, 28.216243332130016, 40.60118299487864, + 56.943204493576935, 77.18517660039059, 101.11749855132854, + 128.44126202068026, 156.652370956494, 184.12603075864237, + 209.38477573349212, 229.95250608442987, 244.9200148672844, + 253.87720255718816, 257.537613325642, 256.4462847338889, + 251.90789173468957, 245.98501856784105, 239.0202266119794, + 232.01601030970318, 225.05969989498712, 217.96681990396004, + 210.4575119627732, 201.67244314611705, 192.14040157461082, + 181.587231945087, 170.20405497593046, 158.9362933904147, + 147.84248603872268, 137.19161330343783, 126.79811656567603, + 116.45646902798744, 105.55096026610292, 93.37055604300863, + 80.16797603938484, 65.7540070934529, 50.49477777429036, 35.66823773172331, + 22.000132360325274, 10.033745383033612, 0.8058247333701418, + -5.579235432888197, -9.691383529155814, -11.727745028935376, + -12.319787473107695, -12.132426403781672, -11.591242421348413, + -10.672843317314076, -9.262566260228443, -7.361868551313712, + -4.645276899541107, -1.1838315676539206, 2.7010812899769965, + 6.557703460702957, 9.803768275307165, 12.076415900964406, + 12.920042142551251, 12.457542643536534, 11.10589536973831, + 9.303647673381752, 7.7559788423003875, 6.843446993975088, + 6.852162158863066, 7.598479601278759, 8.64083811789094, 9.465853113425387, + 9.446814427487602, 8.310417127883694, 6.013343001131544, + 2.8817227304084705, -0.5099867873149737, -3.5592699441080105, + -5.634650387707736, -6.5081176773890865, -6.296060943354422, + -5.293468094205534, -4.1398264437213905, -3.4198499597427845, + -3.611054581269036, -4.871286367953094, -7.057526336563104, + -9.781802509137403, -12.466645443769556, -14.672233145803878, + -16.016879198141996, -16.41215876514399, -16.017090385883545, + -15.156921138562671, -14.151996633600982, -13.232937522363965, + -12.513822240892178, -11.87388848648263, -11.082077185205298, + -9.856423271301594, -8.023971386986613, -5.49503922024819, + -2.2205509864959514, 1.6599250290215395, 6.2367095658757234, + 11.852863079627044, 18.92175758566744 + ], + "pressure:branch0_seg0:J0": [ + 97883.79228818601, 100362.45706633799, 104006.98735296179, + 108713.17682436532, 114111.63012592736, 120270.72035781217, + 126863.79328064158, 132468.9960143025, 137351.9846395365, + 141641.979621213, 143797.80682405067, 144737.71207481594, + 145321.06511807407, 144850.37597145676, 144076.91395986167, + 143728.66784539717, 143704.29941630695, 143827.16766675044, + 144136.16896355106, 144584.79382749216, 144750.9536720433, + 144495.05781557388, 143862.05763622772, 143095.99787243173, + 142118.79346803468, 140941.1109844177, 140231.2719990955, + 139565.63890059595, 138615.2299902476, 137877.79348515076, + 136815.54779725138, 134972.22600465495, 132853.38417500505, + 130496.28845757022, 127630.19407785177, 124896.84950916583, + 122822.61890608656, 120992.84987708904, 119656.51297161075, + 119277.09738336042, 119120.88060001955, 118946.28771280719, + 119096.28503194808, 119109.3261227336, 118780.34396326689, + 118497.47012917965, 118301.80508038167, 118160.95566874628, + 118200.86255736674, 118485.09189602805, 118874.86293273137, + 119102.6950715318, 119105.81235995868, 118821.13606311278, + 118111.48369959112, 117053.21802567685, 115897.4702628976, + 114802.56184169221, 113886.27055010603, 113301.59393592518, + 113041.7417191392, 112968.17037649023, 112906.40846491912, + 112665.85081329715, 112095.50973817798, 111142.90343254161, + 109867.50014854025, 108450.66499766815, 107080.65084230114, + 105922.15717554606, 105147.11586384277, 104779.29792543473, + 104647.90396003803, 104617.53571766807, 104526.30192301433, + 104143.21848358714, 103392.91870178893, 102319.88087469581, + 101028.6935940345, 99663.02354377806, 98447.46998748454, + 97490.68841062339, 96790.32991114185, 96394.28884377204, 96166.9117979795, + 95927.07546863424, 95622.7833539858, 95203.81884674405, 94668.93006942548, + 94095.47620490487, 93595.00415169299, 93267.54323751351, + 93146.20084769033, 93210.71152021117, 93446.8125940448, 93839.37452857489, + 94293.32645674625, 94967.02245556592, 96117.67835019356, 97883.79228818601 + ], + "flow:J0:branch1_seg0": [ + 7.473269095184357, 10.474955181417705, 14.544898020446606, + 19.97308178374206, 26.67493738180803, 34.523415357927654, + 43.349024135409444, 52.271393740277176, 60.449925712231035, + 67.52115662463035, 72.7051929291901, 75.40545015250765, 75.94898462223, + 74.6205432165584, 71.65086096973255, 67.79526644100238, 63.7574188255106, + 59.83732888198146, 56.23908873576452, 53.05013746626578, + 50.16682871600392, 47.31630084510907, 44.26971719121469, + 41.05917510557836, 37.69656534374528, 34.177462813403174, + 30.792222932941794, 27.74464167211503, 24.91107814752932, + 22.267223976908767, 19.78719663642131, 17.089900642379742, + 13.945489705521059, 10.465244030171759, 6.592076166920957, + 2.4213436894557505, -1.490902618782335, -4.849280208445136, + -7.543955431973615, -9.179905545698805, -9.7186426718282, + -9.511268411521915, -8.692277256980441, -7.452067676695933, + -6.161138326244535, -4.9652567031769115, -3.8074778239983504, + -2.665216895999083, -1.487378018682198, -0.16433204461397324, + 1.3253991873549238, 2.8562163296970215, 4.232168331130521, + 5.292535112838462, 5.881209509875805, 5.872114748567824, + 5.338173259392179, 4.4767050220000915, 3.5058331747608844, + 2.673198142371993, 2.1712886450776065, 2.0686142397613216, + 2.284267498201832, 2.63227214549627, 2.880606387289924, 2.806386801407169, + 2.2905279875912474, 1.3455464807065398, 0.12342103770218237, + -1.148282479026889, -2.2195748384979628, -2.8535726022716266, + -2.980430843346229, -2.6728106909163847, -2.080785465985457, + -1.4549172184039612, -1.0526865691645575, -1.0440232998102057, + -1.4705818565152995, -2.262485031914761, -3.239311489929444, + -4.163507666777938, -4.855976429434905, -5.192100517469342, + -5.132496395096732, -4.776817478592463, -4.271584024752902, + -3.747491169622864, -3.3073175831576664, -2.986103491383085, + -2.737281641340788, -2.4559839830901833, -2.031018446316045, + -1.3964704423326666, -0.524962117934216, 0.588258664592567, + 1.8899773324477065, 3.3748733015604775, 5.180080143732487, + 7.473269095184357 + ], + "pressure:J0:branch1_seg0": [ + 97883.79228818601, 100362.45706633799, 104006.98735296179, + 108713.17682436532, 114111.63012592736, 120270.72035781217, + 126863.79328064158, 132468.9960143025, 137351.9846395365, + 141641.979621213, 143797.80682405067, 144737.71207481594, + 145321.06511807407, 144850.37597145676, 144076.91395986167, + 143728.66784539717, 143704.29941630695, 143827.16766675044, + 144136.16896355106, 144584.79382749216, 144750.9536720433, + 144495.05781557388, 143862.05763622772, 143095.99787243173, + 142118.79346803468, 140941.1109844177, 140231.2719990955, + 139565.63890059595, 138615.2299902476, 137877.79348515076, + 136815.54779725138, 134972.22600465495, 132853.38417500505, + 130496.28845757022, 127630.19407785177, 124896.84950916583, + 122822.61890608656, 120992.84987708904, 119656.51297161075, + 119277.09738336042, 119120.88060001955, 118946.28771280719, + 119096.28503194808, 119109.3261227336, 118780.34396326689, + 118497.47012917965, 118301.80508038167, 118160.95566874628, + 118200.86255736674, 118485.09189602805, 118874.86293273137, + 119102.6950715318, 119105.81235995868, 118821.13606311278, + 118111.48369959112, 117053.21802567685, 115897.4702628976, + 114802.56184169221, 113886.27055010603, 113301.59393592518, + 113041.7417191392, 112968.17037649023, 112906.40846491912, + 112665.85081329715, 112095.50973817798, 111142.90343254161, + 109867.50014854025, 108450.66499766815, 107080.65084230114, + 105922.15717554606, 105147.11586384277, 104779.29792543473, + 104647.90396003803, 104617.53571766807, 104526.30192301433, + 104143.21848358714, 103392.91870178893, 102319.88087469581, + 101028.6935940345, 99663.02354377806, 98447.46998748454, + 97490.68841062339, 96790.32991114185, 96394.28884377204, 96166.9117979795, + 95927.07546863424, 95622.7833539858, 95203.81884674405, 94668.93006942548, + 94095.47620490487, 93595.00415169299, 93267.54323751351, + 93146.20084769033, 93210.71152021117, 93446.8125940448, 93839.37452857489, + 94293.32645674625, 94967.02245556592, 96117.67835019356, 97883.79228818601 + ], + "flow:J0:branch3_seg0": [ + 7.605245607515687, 12.40153990092021, 18.67511662220872, + 26.863769035610904, 37.06398450199306, 49.27204824320138, + 63.456987042534394, 78.47481951203525, 93.96682558194021, + 108.97121499673561, 122.18031266628904, 133.55030768901486, + 142.1111953672284, 148.11883884469236, 151.75306093962996, + 153.15545335894836, 153.33022220387997, 152.19713068807033, + 150.47784083876473, 148.1538858813753, 145.2232717347568, + 141.83791440947016, 137.48939398958134, 132.6479344239662, + 127.0173492118531, 120.79272033015184, 114.46708972025326, + 107.79433089412835, 101.24619815140254, 94.67564242960515, + 87.9206805460903, 80.95508624457888, 73.40908117591513, 65.34858164135032, + 56.66791448892943, 47.57824774952261, 38.49628249127316, + 29.71016609135891, 21.61135447110023, 14.641660592661458, + 8.870820755560954, 4.287355722774933, 0.8990825426274188, + -1.633829600471678, -3.4129828669649735, -4.657425536132012, + -5.447196858332844, -5.710494477176277, -5.532899683363156, + -4.7598144666319815, -3.4925106813569826, -1.8554580351379422, + -0.00011896963564717584, 1.7320370565161367, 3.2098412534890053, + 4.16110688939452, 4.584333987994032, 4.586785848212133, 4.27302544494116, + 3.9740225532366216, 3.7864745993518896, 3.905477192710565, + 4.284315777087809, 4.773904372167237, 5.217015451072702, + 5.322554676024792, 4.988256885847819, 4.139558348062439, + 2.860087519029483, 1.3726568559268029, -0.09961167866809661, + -1.2791335664825316, -2.0298244071027205, -2.34397288482981, + -2.278804893700324, -2.087445557588426, -1.9653078482395683, + -2.140902104065323, -2.7219535113062867, -3.6837087396342976, + -4.9220203927103245, -6.223675987859057, -7.41632641240454, + -8.299720923086237, -8.834594808228921, -9.017286259333078, + -8.944421568812835, -8.737399952522416, -8.474065778714168, + -8.22163371112518, -7.937111288166891, -7.553787404586311, + -6.959644509431893, -6.078853536913267, -4.859164121159537, + -3.254683676909389, -1.319886622794394, 1.0433629774099975, + 3.9653440612098296, 7.605245607515687 + ], + "pressure:J0:branch3_seg0": [ + 97883.79228818601, 100362.45706633799, 104006.98735296179, + 108713.17682436532, 114111.63012592736, 120270.72035781217, + 126863.79328064158, 132468.9960143025, 137351.9846395365, + 141641.979621213, 143797.80682405067, 144737.71207481594, + 145321.06511807407, 144850.37597145676, 144076.91395986167, + 143728.66784539717, 143704.29941630695, 143827.16766675044, + 144136.16896355106, 144584.79382749216, 144750.9536720433, + 144495.05781557388, 143862.05763622772, 143095.99787243173, + 142118.79346803468, 140941.1109844177, 140231.2719990955, + 139565.63890059595, 138615.2299902476, 137877.79348515076, + 136815.54779725138, 134972.22600465495, 132853.38417500505, + 130496.28845757022, 127630.19407785177, 124896.84950916583, + 122822.61890608656, 120992.84987708904, 119656.51297161075, + 119277.09738336042, 119120.88060001955, 118946.28771280719, + 119096.28503194808, 119109.3261227336, 118780.34396326689, + 118497.47012917965, 118301.80508038167, 118160.95566874628, + 118200.86255736674, 118485.09189602805, 118874.86293273137, + 119102.6950715318, 119105.81235995868, 118821.13606311278, + 118111.48369959112, 117053.21802567685, 115897.4702628976, + 114802.56184169221, 113886.27055010603, 113301.59393592518, + 113041.7417191392, 112968.17037649023, 112906.40846491912, + 112665.85081329715, 112095.50973817798, 111142.90343254161, + 109867.50014854025, 108450.66499766815, 107080.65084230114, + 105922.15717554606, 105147.11586384277, 104779.29792543473, + 104647.90396003803, 104617.53571766807, 104526.30192301433, + 104143.21848358714, 103392.91870178893, 102319.88087469581, + 101028.6935940345, 99663.02354377806, 98447.46998748454, + 97490.68841062339, 96790.32991114185, 96394.28884377204, 96166.9117979795, + 95927.07546863424, 95622.7833539858, 95203.81884674405, 94668.93006942548, + 94095.47620490487, 93595.00415169299, 93267.54323751351, + 93146.20084769033, 93210.71152021117, 93446.8125940448, 93839.37452857489, + 94293.32645674625, 94967.02245556592, 96117.67835019356, 97883.79228818601 + ], + "flow:J0:branch5_seg0": [ + 3.8432428829673935, 5.3397482497921045, 7.381168352223314, + 10.106353674223971, 13.446254716589515, 17.32203495019952, + 21.635250842736394, 25.906157704181553, 29.709279464471106, + 32.89240411212612, 35.067000488950725, 35.964257025761945, + 35.81702256772976, 34.79823126439119, 33.04236282452645, + 30.957171934738856, 28.897377538450456, 26.98576704192764, + 25.299080735173952, 23.855676547346036, 22.576719453199313, + 21.303296708194, 19.913331965321017, 18.433292045066267, + 16.87331738948867, 15.233871832375469, 13.676980737219674, + 12.303513472479283, 11.034337004506007, 9.855250159162106, + 8.748591845475813, 7.505973379144259, 6.015985161572443, + 4.354150367862775, 2.4940164376025056, 0.495186335312009, + -1.3371421407675101, -2.8607535225885026, -4.033653656093008, + -4.6559303135925125, -4.731413516620951, -4.467470840408831, + -3.934550314582356, -3.2338901959400843, -2.558305210572162, + -1.968560182039492, -1.4181686349828826, -0.8868548870530849, + -0.3415908492683576, 0.27886961170484564, 0.9832799263481379, + 1.7003229954179178, 2.325654099208082, 2.779196105952565, + 2.9853651375995973, 2.8868205045889073, 2.5350353961503234, + 2.0424044995260835, 1.5247890536797049, 1.1087581466917744, + 0.8856837495455924, 0.8780707263911783, 1.0298963259891198, + 1.2346616002274322, 1.3682312750627625, 1.3178729500556436, + 1.0316322544446268, 0.5282381723625639, -0.1017858263231952, + -0.7343611642148872, -1.240083426941951, -1.501944218953579, + -1.4978624269401362, -1.2792773676082279, -0.933877734519754, + -0.5974636677290034, -0.4018555423386586, -0.426129177393508, + -0.6787510001315069, -1.1113325650140455, -1.620470626497637, + -2.079461789132558, -2.3999303039644326, -2.525057757586414, + -2.44506756181833, -2.2229866479580034, -1.940915544996933, + -1.6671055114557003, -1.4515541604921285, -1.3060850383839138, + -1.1994955569749512, -1.0723057975288026, -0.8657603155536575, + -0.548647407740679, -0.11091298115443671, 0.4458740258208701, + 1.0898343193682263, 1.8184732869052482, 2.707438874684726, + 3.8432428829673935 + ], + "pressure:J0:branch5_seg0": [ + 97883.79228818601, 100362.45706633799, 104006.98735296179, + 108713.17682436532, 114111.63012592736, 120270.72035781217, + 126863.79328064158, 132468.9960143025, 137351.9846395365, + 141641.979621213, 143797.80682405067, 144737.71207481594, + 145321.06511807407, 144850.37597145676, 144076.91395986167, + 143728.66784539717, 143704.29941630695, 143827.16766675044, + 144136.16896355106, 144584.79382749216, 144750.9536720433, + 144495.05781557388, 143862.05763622772, 143095.99787243173, + 142118.79346803468, 140941.1109844177, 140231.2719990955, + 139565.63890059595, 138615.2299902476, 137877.79348515076, + 136815.54779725138, 134972.22600465495, 132853.38417500505, + 130496.28845757022, 127630.19407785177, 124896.84950916583, + 122822.61890608656, 120992.84987708904, 119656.51297161075, + 119277.09738336042, 119120.88060001955, 118946.28771280719, + 119096.28503194808, 119109.3261227336, 118780.34396326689, + 118497.47012917965, 118301.80508038167, 118160.95566874628, + 118200.86255736674, 118485.09189602805, 118874.86293273137, + 119102.6950715318, 119105.81235995868, 118821.13606311278, + 118111.48369959112, 117053.21802567685, 115897.4702628976, + 114802.56184169221, 113886.27055010603, 113301.59393592518, + 113041.7417191392, 112968.17037649023, 112906.40846491912, + 112665.85081329715, 112095.50973817798, 111142.90343254161, + 109867.50014854025, 108450.66499766815, 107080.65084230114, + 105922.15717554606, 105147.11586384277, 104779.29792543473, + 104647.90396003803, 104617.53571766807, 104526.30192301433, + 104143.21848358714, 103392.91870178893, 102319.88087469581, + 101028.6935940345, 99663.02354377806, 98447.46998748454, + 97490.68841062339, 96790.32991114185, 96394.28884377204, 96166.9117979795, + 95927.07546863424, 95622.7833539858, 95203.81884674405, 94668.93006942548, + 94095.47620490487, 93595.00415169299, 93267.54323751351, + 93146.20084769033, 93210.71152021117, 93446.8125940448, 93839.37452857489, + 94293.32645674625, 94967.02245556592, 96117.67835019356, 97883.79228818601 + ], + "flow:branch1_seg0:J1": [ + 7.436994157107219, 10.419524000996379, 14.464504074185541, + 19.879936068333887, 26.568690241920002, 34.40129052015915, + 43.23884932285845, 52.1756036545508, 60.364045748599985, + 67.46466910515002, 72.67996358736173, 75.39421894326978, + 75.94557602258259, 74.63637379367258, 71.66238590207814, + 67.79702663656795, 63.7579813699179, 59.832110168130384, + 56.23300441382124, 53.04370951545333, 50.16669840394105, + 47.32750920978502, 44.28077320548176, 41.075948354639195, + 37.71753427271564, 34.19300038207421, 30.804262897141754, + 27.757955976764183, 24.926616410235365, 22.281148075255423, + 19.811976787522298, 17.12985288604405, 13.984561184910982, + 10.512392843135935, 6.6501238147078, 2.4646020408377494, + -1.4560332893809058, -4.8149919874309735, -7.529809117353391, + -9.176581177416223, -9.714042547259924, -9.511792250212821, + -8.695332419331635, -7.448460116161951, -6.154401352850443, + -4.961073149214933, -3.8043535028453275, -2.6632936608794195, + -1.4909349332673347, -0.17068052815586043, 1.3185730088374144, + 2.8539208238727647, 4.2349965918322106, 5.300265169106837, + 5.8985958045629125, 5.892927190406694, 5.35905048498271, + 4.495995849822405, 3.519628854454033, 2.6809843201880557, + 2.1734813579984613, 2.0692766851964355, 2.2867921391735857, + 2.639228851533129, 2.894960296935423, 2.826970772106312, + 2.3160846905536814, 1.371740139768391, 0.14670489528492614, + -1.1291670259004856, -2.2095148371510662, -2.8496451731568704, + -2.9789173931005424, -2.6727056405058485, -2.0767893153343686, + -1.44456035931054, -1.0356626470240995, -1.0217652566762025, + -1.4460338126800278, -2.238222166644501, -3.2193893430973546, + -4.148440045762904, -4.845965253470924, -5.187206157390439, + -5.1285317229789795, -4.772061673964366, -4.26500311496086, + -3.738570814928069, -3.296928025780516, -2.9759041304182254, + -2.7294388666079104, -2.452004469500976, -2.0304665956395045, + -1.399331500225905, -0.5309093421284777, 0.5810149251579892, + 1.880257592532041, 3.3590976065690636, 5.155429178249147, + 7.436994157107219 + ], + "pressure:branch1_seg0:J1": [ + 97502.08436909712, 99851.23092221214, 103307.4460970348, + 107808.76956266847, 113026.78047688554, 119014.14839557321, + 125493.57642305779, 131148.96041433408, 136161.7616728522, + 140631.76334465484, 143122.61300788147, 144413.54620305033, + 145265.4756368717, 145069.5027163677, 144489.1861308312, + 144214.30389194112, 144193.00442238353, 144288.15826521834, + 144548.11418542033, 144939.8900359055, 145085.28668021198, + 144850.01713359382, 144251.2933783559, 143511.38085708278, + 142560.64822091497, 141402.61259867199, 140651.24064696397, + 139943.14287673356, 138979.76611575263, 138207.7894255174, + 137146.96678599407, 135369.8030421252, 133310.87515618344, + 131006.4751718092, 128210.95715259839, 125490.37939763811, + 123350.17573004725, 121444.09984065007, 119990.51736510513, + 119440.6631102136, 119149.83819651752, 118886.63708674055, + 118951.13981743743, 118928.36513525413, 118611.10007030233, + 118336.38079739023, 118141.88323848145, 118000.83227068039, + 118025.55148095817, 118282.3288997889, 118649.86431399568, + 118884.76749311939, 118920.36554666521, 118688.92923375595, + 118060.12949669684, 117087.38957273876, 115996.16351626636, + 114934.26362036327, 114018.01193809956, 113398.37566734024, + 113082.20821793395, 112953.89118468779, 112856.7328564617, + 112612.34683498398, 112073.48169783494, 111178.97260027891, + 109971.38963045599, 108609.74057080605, 107266.45856478073, + 106100.22636480331, 105278.21576857117, 104838.02468297383, + 104636.83624076913, 104551.3609851007, 104433.87335092934, + 104064.80732527623, 103361.19253050294, 102351.46862348235, + 101120.84107716115, 99799.95188911812, 98595.02206450485, + 97616.82999473557, 96874.90414773443, 96420.79889977057, + 96140.65116288514, 95868.19797179863, 95551.435406903, 95137.47845571346, + 94618.75708966111, 94060.90792846215, 93564.12276836002, + 93222.92085491515, 93074.37520951356, 93104.88786505621, + 93305.00787425479, 93663.00132517607, 94092.1029157819, 94731.9146439118, + 95819.81024297018, 97502.08436909712 + ], + "flow:J1:branch2_seg0": [ + 4.1780007438161295, 5.82846139823927, 8.071686950536629, + 11.074406504513346, 14.775179642414852, 19.09591272197443, + 23.9530169354946, 28.831712434298506, 33.25969476893241, 37.0561795890873, + 39.78049464514346, 41.10216336299164, 41.23153733220882, + 40.34747414490571, 38.56892927063476, 36.33563852292718, + 34.047686477798734, 31.857505399407163, 29.87499490103864, + 28.13815438187652, 26.583128740746726, 25.049507041594275, + 23.399156708790432, 21.66093238240485, 19.839147865987062, + 17.927925147445958, 16.09938310093891, 14.467734466553967, + 12.956554576331257, 11.548953107724726, 10.236623059728604, + 8.797905579215085, 7.09624945831014, 5.21179897823959, 3.111044426174561, + 0.8369324098201595, -1.2772072377300763, -3.068311535256341, + -4.493262866301354, -5.31821536849393, -5.528736263757521, + -5.339418861557774, -4.8227962234994255, -4.0836222047915305, + -3.336827428742273, -2.6606607644033797, -2.0141570322670614, + -1.382436334085723, -0.7364821173140472, -0.009788012312438784, + 0.8089844986386068, 1.6487648916934043, 2.3966066414374803, + 2.9631589618132494, 3.265078951118298, 3.229387582938383, + 2.903010255257179, 2.4014873469559483, 1.847352187853149, + 1.3809444486995552, 1.108200962825337, 1.064898754607385, + 1.2006637717696071, 1.4070273990647746, 1.5524969864746325, + 1.5108186689330416, 1.218131336114927, 0.6843399140048404, + -0.0010068659157988784, -0.7066820915350701, -1.2940766250559566, + -1.6283627508257354, -1.6745471850773417, -1.4796499756315502, + -1.1292489035154027, -0.7676838607443498, -0.540153704395355, + -0.5399934062783681, -0.7869478525974507, -1.2373721209634112, + -1.7872413542088341, -2.3000580241679858, -2.676481218448683, + -2.848972671047521, -2.7970376332462443, -2.5816542815530967, + -2.2877298546102924, -1.9892264055104585, -1.7435768755228016, + -1.568824646755895, -1.4367169287841621, -1.2863167728577551, + -1.053881860729761, -0.7034540045308566, -0.2210564214221933, + 0.39543303324928814, 1.1130524744174588, 1.9277469374130984, + 2.918004686900601, 4.1780007438161295 + ], + "pressure:J1:branch2_seg0": [ + 97502.08436909712, 99851.23092221214, 103307.4460970348, + 107808.76956266847, 113026.78047688554, 119014.14839557321, + 125493.57642305779, 131148.96041433408, 136161.7616728522, + 140631.76334465484, 143122.61300788147, 144413.54620305033, + 145265.4756368717, 145069.5027163677, 144489.1861308312, + 144214.30389194112, 144193.00442238353, 144288.15826521834, + 144548.11418542033, 144939.8900359055, 145085.28668021198, + 144850.01713359382, 144251.2933783559, 143511.38085708278, + 142560.64822091497, 141402.61259867199, 140651.24064696397, + 139943.14287673356, 138979.76611575263, 138207.7894255174, + 137146.96678599407, 135369.8030421252, 133310.87515618344, + 131006.4751718092, 128210.95715259839, 125490.37939763811, + 123350.17573004725, 121444.09984065007, 119990.51736510513, + 119440.6631102136, 119149.83819651752, 118886.63708674055, + 118951.13981743743, 118928.36513525413, 118611.10007030233, + 118336.38079739023, 118141.88323848145, 118000.83227068039, + 118025.55148095817, 118282.3288997889, 118649.86431399568, + 118884.76749311939, 118920.36554666521, 118688.92923375595, + 118060.12949669684, 117087.38957273876, 115996.16351626636, + 114934.26362036327, 114018.01193809956, 113398.37566734024, + 113082.20821793395, 112953.89118468779, 112856.7328564617, + 112612.34683498398, 112073.48169783494, 111178.97260027891, + 109971.38963045599, 108609.74057080605, 107266.45856478073, + 106100.22636480331, 105278.21576857117, 104838.02468297383, + 104636.83624076913, 104551.3609851007, 104433.87335092934, + 104064.80732527623, 103361.19253050294, 102351.46862348235, + 101120.84107716115, 99799.95188911812, 98595.02206450485, + 97616.82999473557, 96874.90414773443, 96420.79889977057, + 96140.65116288514, 95868.19797179863, 95551.435406903, 95137.47845571346, + 94618.75708966111, 94060.90792846215, 93564.12276836002, + 93222.92085491515, 93074.37520951356, 93104.88786505621, + 93305.00787425479, 93663.00132517607, 94092.1029157819, 94731.9146439118, + 95819.81024297018, 97502.08436909712 + ], + "flow:J1:branch7_seg0": [ + 3.25899341329109, 4.59106260275711, 6.392817123648911, 8.805529563820544, + 11.793510599505147, 15.305377798184715, 19.285832387363836, + 23.343891220252292, 27.10435097966757, 30.408489516062712, + 32.89946894221824, 34.292055580278145, 34.714038690373755, + 34.28889964876687, 33.09345663144339, 31.46138811364077, + 29.71029489211915, 27.97460476872321, 26.358009512782594, + 24.905555133576815, 23.58356966319431, 22.278002168190742, + 20.881616496691343, 19.41501597223434, 17.878386406728573, + 16.26507523462825, 14.704879796202844, 13.290221510210209, + 11.970061833904113, 10.732194967530697, 9.575353727793697, + 8.331947306828965, 6.888311726600839, 5.300593864896346, + 3.5390793885332403, 1.6276696310175895, -0.1788260516508297, + -1.746680452174631, -3.036546251052039, -3.8583658089222928, + -4.1853062835024035, -4.1723733886550445, -3.872536195832206, + -3.364837911370421, -2.8175739241081694, -2.3004123848115534, + -1.7901964705782656, -1.2808573267936971, -0.7544528159532877, + -0.16089251584342162, 0.5095885101988079, 1.2051559321793603, + 1.838389950394731, 2.3371062072935875, 2.6335168534446147, + 2.6635396074683118, 2.45604022972553, 2.0945085028664563, + 1.6722766666008841, 1.3000398714885002, 1.0652803951731247, + 1.0043779305890503, 1.086128367403978, 1.232201452468354, + 1.3424633104607908, 1.3161521031732706, 1.0979533544387539, + 0.6874002257635508, 0.14771176120072504, -0.4224849343654153, + -0.9154382120951092, -1.2212824223311352, -1.3043702080232003, + -1.193055664874298, -0.9475404118189654, -0.6768764985661901, + -0.4955089426287444, -0.4817718503978342, -0.659085960082577, + -1.0008500456810896, -1.4321479888885205, -1.8483820215949172, + -2.169484035022242, -2.3382334863429177, -2.331494089732735, + -2.1904073924112692, -1.977273260350568, -1.7493444094176112, + -1.5533511502577138, -1.4070794836623302, -1.292721937823748, + -1.1656876966432204, -0.9765847349097436, -0.6958774956950485, + -0.3098529207062844, 0.18558189190870142, 0.7672051181145829, + 1.4313506691559648, 2.237424491348547, 3.25899341329109 + ], + "pressure:J1:branch7_seg0": [ + 97502.08436909712, 99851.23092221214, 103307.4460970348, + 107808.76956266847, 113026.78047688554, 119014.14839557321, + 125493.57642305779, 131148.96041433408, 136161.7616728522, + 140631.76334465484, 143122.61300788147, 144413.54620305033, + 145265.4756368717, 145069.5027163677, 144489.1861308312, + 144214.30389194112, 144193.00442238353, 144288.15826521834, + 144548.11418542033, 144939.8900359055, 145085.28668021198, + 144850.01713359382, 144251.2933783559, 143511.38085708278, + 142560.64822091497, 141402.61259867199, 140651.24064696397, + 139943.14287673356, 138979.76611575263, 138207.7894255174, + 137146.96678599407, 135369.8030421252, 133310.87515618344, + 131006.4751718092, 128210.95715259839, 125490.37939763811, + 123350.17573004725, 121444.09984065007, 119990.51736510513, + 119440.6631102136, 119149.83819651752, 118886.63708674055, + 118951.13981743743, 118928.36513525413, 118611.10007030233, + 118336.38079739023, 118141.88323848145, 118000.83227068039, + 118025.55148095817, 118282.3288997889, 118649.86431399568, + 118884.76749311939, 118920.36554666521, 118688.92923375595, + 118060.12949669684, 117087.38957273876, 115996.16351626636, + 114934.26362036327, 114018.01193809956, 113398.37566734024, + 113082.20821793395, 112953.89118468779, 112856.7328564617, + 112612.34683498398, 112073.48169783494, 111178.97260027891, + 109971.38963045599, 108609.74057080605, 107266.45856478073, + 106100.22636480331, 105278.21576857117, 104838.02468297383, + 104636.83624076913, 104551.3609851007, 104433.87335092934, + 104064.80732527623, 103361.19253050294, 102351.46862348235, + 101120.84107716115, 99799.95188911812, 98595.02206450485, + 97616.82999473557, 96874.90414773443, 96420.79889977057, + 96140.65116288514, 95868.19797179863, 95551.435406903, 95137.47845571346, + 94618.75708966111, 94060.90792846215, 93564.12276836002, + 93222.92085491515, 93074.37520951356, 93104.88786505621, + 93305.00787425479, 93663.00132517607, 94092.1029157819, 94731.9146439118, + 95819.81024297018, 97502.08436909712 + ], + "flow:branch3_seg0:J2": [ + 7.587510785038859, 12.374448120080912, 18.63584327570089, + 26.818302798638168, 37.01219700428036, 49.2126016444846, + 63.403524463333206, 78.42855305527665, 93.92550325169027, + 108.94436444902416, 122.16873972216945, 133.54549662332116, + 142.11011029315813, 148.12695978644433, 151.75895928961143, + 153.1564159699642, 153.33049899973506, 152.19452427636878, + 150.4747189523462, 148.1505950475925, 145.22298740364153, + 141.8431434705973, 137.49451507046717, 132.6557889348219, + 127.02726310259388, 120.79994089785679, 114.47261295968956, + 107.80049809459861, 101.25345523950067, 94.68214615913439, + 87.93249241923414, 80.97433272741515, 73.42791299905849, + 65.37136564894162, 56.69605667062263, 47.59918972538373, 38.5131541365938, + 29.72679601415554, 21.618169974524612, 14.643206996075522, + 8.873013632971505, 4.28705533473904, 0.8975509374103066, + -1.6320980222934285, -3.409716547380607, -4.655402537918657, + -5.445688471563984, -5.709568421076952, -5.534650532334508, + -4.7629290103949575, -3.4958558090960894, -1.8565857481312125, + 0.0012627674633254584, 1.7358220163155562, 3.2183542401950804, + 4.171300562704519, 4.594558753612042, 4.596234678457958, + 4.279783758586908, 3.977837913480906, 3.787551359859114, + 3.9058020717844917, 4.285551809063018, 4.777308361063235, + 5.22403973821736, 5.33262855885417, 5.000763882227642, 4.1523782309160335, + 2.8714829888557643, 1.3820122416332221, -0.09468832447016394, + -1.2772154461292968, -2.0290894297362696, -2.343928524433441, + -2.2768567078770805, -2.0823834924004117, -1.956981854419757, + -2.1300122768040337, -2.709942147202188, -3.6718364836365174, + -4.9122735070512, -6.216306808707785, -7.4114331474685, + -8.297332844076694, -8.832661886635137, -9.014965758783454, + -8.941206621010103, -8.733039037344621, -8.468984366731563, + -8.216644069429845, -7.933273754242946, -7.551839332379464, + -6.959373512771336, -6.080251901074453, -4.862072870516301, + -3.2582273940814916, -1.3246423117793666, 1.0356444554116964, + 3.9532879820389777, 7.587510785038859 + ], + "pressure:branch3_seg0:J2": [ + 97548.24032821732, 99919.79398510675, 103402.64292525622, + 107958.12454584338, 113144.6249263531, 119122.19165332863, + 125543.48282004212, 130997.62125591442, 135847.81253932428, + 140087.88951588448, 142316.95578690825, 143374.82333961411, + 144060.01392230004, 143792.33202648864, 143125.1624431328, + 142926.09898868512, 142997.16070491468, 143181.22753503433, + 143592.99702860747, 144059.85360895944, 144329.0653073986, + 144144.64172855878, 143595.30403995657, 142952.85147674903, + 142030.9996906741, 140965.77401941232, 140303.00036950182, + 139677.64701092505, 138793.90587994692, 138068.489240698, + 137082.90261144456, 135306.49674971166, 133252.71837275175, + 131000.54983128383, 128205.2544151426, 125515.69623482919, + 123467.84556222755, 121619.85600653854, 120222.83904893626, + 119771.48367858557, 119513.46555007022, 119258.3770089073, + 119329.30405988752, 119273.2008971731, 118907.8052777815, + 118576.63549602764, 118352.16783356776, 118170.40959169147, + 118166.6060582169, 118413.01654887055, 118754.01093005673, + 118968.96281171146, 118958.58531990835, 118686.07585362143, + 118016.86896146707, 116988.26962871796, 115884.24348626086, + 114810.5520614725, 113910.01198343423, 113322.36152389884, + 113037.04122622657, 112949.27391413672, 112861.5646234062, + 112623.06180263722, 112066.11734404121, 111142.50406133725, + 109913.30667462297, 108529.21328885322, 107192.6281617059, + 106043.61004131884, 105251.58721604644, 104861.13459553481, + 104689.16581343378, 104627.89335526324, 104515.66075921775, + 104127.24853624904, 103396.80863704013, 102348.29335450428, + 101094.09299922502, 99755.584006936, 98555.61275955991, 97598.52196186634, + 96881.52499226053, 96459.9723736755, 96202.77925933604, 95940.50750972067, + 95619.01939328114, 95193.72878067475, 94656.81698609043, 94083.5806077978, + 93578.72635592973, 93237.08590671881, 93097.11765798375, + 93132.78710790754, 93340.95742507577, 93702.66183263078, + 94123.54917523697, 94763.26769991429, 95856.20863367623, 97548.24032821732 + ], + "flow:J2:branch4_seg0": [ + 6.516136245182161, 10.912654453094067, 16.6323818564796, + 24.09939660574454, 33.446838335608305, 44.68993518200534, + 57.84017854607301, 71.89070778240128, 86.56251401328512, + 100.90642328088134, 113.71558011764756, 124.96401082411256, + 133.5776725855873, 139.79375418669326, 143.74500466353186, + 145.46470701261296, 145.90777696156857, 144.99349158914976, + 143.4498524320351, 141.2663456412183, 138.47475038610924, + 135.2733722648087, 131.1629736913887, 126.59648036585955, + 121.26884007982216, 115.3674757853671, 109.33741709407063, + 102.92045160885463, 96.6268244082001, 90.30030300401268, + 83.79872293276777, 77.16041924774174, 70.00678476200935, + 62.38116927064215, 54.19228784375566, 45.60293250070128, 36.9505274957692, + 28.51807863755253, 20.685144992518918, 13.846690533311309, + 8.105452178876416, 3.508351474702199, 0.06700755359274367, + -2.5313764938097525, -4.347023326545565, -5.608638659517528, + -6.418671803357157, -6.710204819982927, -6.581223136732428, + -5.8892495793712225, -4.72933134247333, -3.1961344730102086, + -1.4151118927582522, 0.28567486032888684, 1.7942938694044266, + 2.841404933217492, 3.3998844194497138, 3.5463788278927297, + 3.3577981084225614, 3.140442751523061, 2.978790623184405, + 3.0772162456859045, 3.413596804715674, 3.8688580509759247, + 4.316113438128302, 4.482486014773988, 4.267476710550527, + 3.5784157674368644, 2.468706287760671, 1.1314034070912267, + -0.24170578216626512, -1.3900223698197032, -2.1663946558079705, + -2.541981359983542, -2.5463461535613074, -2.398551739515005, + -2.268740511937472, -2.378742573090545, -2.8467983193169797, + -3.668177261815284, -4.770390008456021, -5.967754657364791, + -7.100730678936304, -7.975468126004279, -8.543130996421677, + -8.7768964090478, -8.753608081733095, -8.582366983497312, + -8.335322001210512, -8.084718152478281, -7.801647181791496, + -7.4367337385755645, -6.889619818334184, -6.087016882745878, + -4.9749497563138485, -3.5038297061555252, -1.719220069988569, + 0.4712026535866301, 3.170407683649061, 6.516136245182161 + ], + "pressure:J2:branch4_seg0": [ + 97548.24032821732, 99919.79398510675, 103402.64292525622, + 107958.12454584338, 113144.6249263531, 119122.19165332863, + 125543.48282004212, 130997.62125591442, 135847.81253932428, + 140087.88951588448, 142316.95578690825, 143374.82333961411, + 144060.01392230004, 143792.33202648864, 143125.1624431328, + 142926.09898868512, 142997.16070491468, 143181.22753503433, + 143592.99702860747, 144059.85360895944, 144329.0653073986, + 144144.64172855878, 143595.30403995657, 142952.85147674903, + 142030.9996906741, 140965.77401941232, 140303.00036950182, + 139677.64701092505, 138793.90587994692, 138068.489240698, + 137082.90261144456, 135306.49674971166, 133252.71837275175, + 131000.54983128383, 128205.2544151426, 125515.69623482919, + 123467.84556222755, 121619.85600653854, 120222.83904893626, + 119771.48367858557, 119513.46555007022, 119258.3770089073, + 119329.30405988752, 119273.2008971731, 118907.8052777815, + 118576.63549602764, 118352.16783356776, 118170.40959169147, + 118166.6060582169, 118413.01654887055, 118754.01093005673, + 118968.96281171146, 118958.58531990835, 118686.07585362143, + 118016.86896146707, 116988.26962871796, 115884.24348626086, + 114810.5520614725, 113910.01198343423, 113322.36152389884, + 113037.04122622657, 112949.27391413672, 112861.5646234062, + 112623.06180263722, 112066.11734404121, 111142.50406133725, + 109913.30667462297, 108529.21328885322, 107192.6281617059, + 106043.61004131884, 105251.58721604644, 104861.13459553481, + 104689.16581343378, 104627.89335526324, 104515.66075921775, + 104127.24853624904, 103396.80863704013, 102348.29335450428, + 101094.09299922502, 99755.584006936, 98555.61275955991, 97598.52196186634, + 96881.52499226053, 96459.9723736755, 96202.77925933604, 95940.50750972067, + 95619.01939328114, 95193.72878067475, 94656.81698609043, 94083.5806077978, + 93578.72635592973, 93237.08590671881, 93097.11765798375, + 93132.78710790754, 93340.95742507577, 93702.66183263078, + 94123.54917523697, 94763.26769991429, 95856.20863367623, 97548.24032821732 + ], + "flow:J2:branch6_seg0": [ + 1.0713745398566967, 1.461793666986845, 2.0034614192212863, + 2.7189061928936265, 3.5653586686720597, 4.522666462479256, + 5.563345917260203, 6.537845272875377, 7.362989238405152, + 8.037941168142808, 8.453159604521865, 8.581485799208549, 8.53243770757085, + 8.333205599751055, 8.0139546260796, 7.691708957351205, 7.4227220381665315, + 7.201032687219002, 7.024866520311081, 6.884249406374167, + 6.748237017532301, 6.569771205788644, 6.331541379078519, + 6.059308568962376, 5.758423022771722, 5.432465112489688, + 5.135195865618932, 4.880046485743968, 4.626630831300583, + 4.381843155121707, 4.133769486466337, 3.8139134796733885, + 3.4211282370491247, 2.99019637829948, 2.5037688268669647, + 1.9962572246824428, 1.5626266408245943, 1.2087173766029995, + 0.9330249820056878, 0.7965164627642136, 0.7675614540950905, + 0.7787038600368403, 0.8305433838175625, 0.899278471516324, + 0.9373067791649576, 0.9532361215988726, 0.9729833317931718, + 1.0006363989059766, 1.0465726043979187, 1.1263205689762645, + 1.2334755333772403, 1.3395487248789963, 1.4163746602215777, + 1.4501471559866694, 1.4240603707906534, 1.329895629487026, + 1.1946743341623292, 1.0498558505652287, 0.9219856501643477, + 0.8373951619578446, 0.8087607366747089, 0.828585826098587, + 0.8719550043473432, 0.9084503100873104, 0.9079263000890583, + 0.8501425440801811, 0.7332871716771158, 0.5739624634791683, + 0.402776701095092, 0.2506088345419959, 0.14701745769610122, + 0.11280692369040628, 0.13730522607170056, 0.19805283555010153, + 0.26948944568422667, 0.3161682471145934, 0.3117586575177149, + 0.2487302962865123, 0.13685617211479253, -0.0036592218212329114, + -0.1418834985951785, -0.24855215134299202, -0.31070246853219635, + -0.32186471807241507, -0.289530890213462, -0.23806934973565572, + -0.18759853927700781, -0.1506720538473088, -0.1336623655210511, + -0.13192591695156622, -0.1316265724514488, -0.11510559380389687, + -0.0697536944371525, 0.006764981671425028, 0.11287688579754877, + 0.24560231207403352, 0.3945777582092024, 0.5644418018250665, + 0.7828802983899148, 1.0713745398566967 + ], + "pressure:J2:branch6_seg0": [ + 97548.24032821732, 99919.79398510675, 103402.64292525622, + 107958.12454584338, 113144.6249263531, 119122.19165332863, + 125543.48282004212, 130997.62125591442, 135847.81253932428, + 140087.88951588448, 142316.95578690825, 143374.82333961411, + 144060.01392230004, 143792.33202648864, 143125.1624431328, + 142926.09898868512, 142997.16070491468, 143181.22753503433, + 143592.99702860747, 144059.85360895944, 144329.0653073986, + 144144.64172855878, 143595.30403995657, 142952.85147674903, + 142030.9996906741, 140965.77401941232, 140303.00036950182, + 139677.64701092505, 138793.90587994692, 138068.489240698, + 137082.90261144456, 135306.49674971166, 133252.71837275175, + 131000.54983128383, 128205.2544151426, 125515.69623482919, + 123467.84556222755, 121619.85600653854, 120222.83904893626, + 119771.48367858557, 119513.46555007022, 119258.3770089073, + 119329.30405988752, 119273.2008971731, 118907.8052777815, + 118576.63549602764, 118352.16783356776, 118170.40959169147, + 118166.6060582169, 118413.01654887055, 118754.01093005673, + 118968.96281171146, 118958.58531990835, 118686.07585362143, + 118016.86896146707, 116988.26962871796, 115884.24348626086, + 114810.5520614725, 113910.01198343423, 113322.36152389884, + 113037.04122622657, 112949.27391413672, 112861.5646234062, + 112623.06180263722, 112066.11734404121, 111142.50406133725, + 109913.30667462297, 108529.21328885322, 107192.6281617059, + 106043.61004131884, 105251.58721604644, 104861.13459553481, + 104689.16581343378, 104627.89335526324, 104515.66075921775, + 104127.24853624904, 103396.80863704013, 102348.29335450428, + 101094.09299922502, 99755.584006936, 98555.61275955991, 97598.52196186634, + 96881.52499226053, 96459.9723736755, 96202.77925933604, 95940.50750972067, + 95619.01939328114, 95193.72878067475, 94656.81698609043, 94083.5806077978, + 93578.72635592973, 93237.08590671881, 93097.11765798375, + 93132.78710790754, 93340.95742507577, 93702.66183263078, + 94123.54917523697, 94763.26769991429, 95856.20863367623, 97548.24032821732 + ], + "flow:branch2_seg0:J3": [ + 4.152958243035408, 5.7906638522809075, 8.016013698575849, + 11.00973284395512, 14.700179898699615, 19.010363501713794, + 23.87379200093419, 28.761448900572095, 33.19611790389776, + 37.0120210399849, 39.75811298736527, 41.089407578152695, + 41.22558415575764, 40.3548573069292, 38.57487926315535, + 36.335514710382284, 34.047183227635635, 31.853253174119978, + 29.870365618567895, 28.133242193907858, 26.58237154908731, + 25.056416895768567, 23.40627291474439, 21.67219033401513, + 19.853293534513483, 17.93879783885881, 16.10815499610408, + 14.47732361645885, 12.967669006540161, 11.559014069276671, + 10.253911262175734, 8.825812179385645, 7.1236545644452685, + 5.245093204795016, 3.152212498628501, 0.8685453227605765, + -1.2510853767598307, -3.0428130193474012, -4.480836341539729, + -5.3139495672200905, -5.523801883526647, -5.338559661096326, + -4.823711571434714, -4.0805895305210775, -3.331679096141958, + -2.6573110457071967, -2.011535716581927, -1.3806828660418744, + -0.738423538013204, -0.013795693653576028, 0.8044494066826028, + 1.6471512318818378, 2.3984020699473185, 2.9682145767149635, + 3.276807732467579, 3.243636057828356, 2.917638006470206, + 2.4152763123686363, 1.8575995554775937, 1.3872172406322505, + 1.110532314813268, 1.0661133334957755, 1.20286636319219, + 1.4120984116118052, 1.56256912338668, 1.5250352550986932, + 1.23608985727736, 0.702816122373056, 0.01584315432360354, + -0.6924253134486276, -1.2860052371438477, -1.6244228493110577, + -1.6726418344619738, -1.4787574223481175, -1.1260504329305603, + -0.7603077172216592, -0.5282079192261764, -0.5244996403879215, + -0.7696007464105089, -1.2200792088764993, -1.7726139377652275, + -2.288624371976769, -2.6685059482670823, -2.844531827945502, + -2.7934589220041963, -2.577699036194431, -2.282665576359719, + -1.9826453482407593, -1.7360254485740418, -1.5613474799328713, + -1.4307714017528061, -1.2829869334909156, -1.05288269680179, + -0.7049373492981216, -0.22464832375770735, 0.3907081707345406, + 1.1066102306457881, 1.9169983918521274, 2.9013459424312322, + 4.152958243035408 + ], + "pressure:branch2_seg0:J3": [ + 95730.66820914941, 97471.57263901344, 100044.50753914671, + 103563.22800103329, 107894.9381218777, 113047.60525675488, + 118909.11650507593, 124702.29828612671, 130215.57875262968, + 135370.68297795, 139333.02409944846, 142142.8266773768, + 144146.91189181453, 145169.85443962057, 145468.25716735027, + 145521.41593579622, 145529.1454867596, 145520.9015891519, + 145588.69577733096, 145750.5911172942, 145842.6458337706, + 145730.62574551336, 145332.83844189282, 144752.81575496632, + 143959.56090875666, 142943.58748619255, 142036.75841467155, + 141174.66967426654, 140209.1833448789, 139302.75700907552, + 138282.34302076334, 136860.44472778757, 135105.35314766844, + 133076.81584665316, 130651.57672347444, 128043.54991984951, + 125643.29380770259, 123424.94015926313, 121497.92209802296, + 120197.79257342538, 119323.44555634374, 118681.98561726058, + 118368.13804444348, 118182.62895320353, 117927.9052309879, + 117683.37875175625, 117486.54896281176, 117333.75972853963, + 117280.97104229599, 117395.70142805885, 117642.67326611343, + 117894.78034772819, 118060.43502505061, 118056.94865259672, + 117781.28970180034, 117192.3978753333, 116388.05504733873, + 115477.06031270379, 114565.47756994731, 113790.77187981465, + 113221.6484770503, 112847.21213781337, 112589.6383781674, + 112327.61928390992, 111932.7906030149, 111303.64554975777, + 110410.59401379526, 109304.67122089033, 108092.30011678055, + 106902.67874645215, 105876.70198506031, 105116.64656050947, + 104601.48754469222, 104270.82401155421, 104032.3409166522, + 103726.30057972542, 103236.29224262059, 102511.38356439405, + 101560.41167627176, 100445.95484058931, 99295.65279327729, + 98227.22106056564, 97304.29578749562, 96592.11777938891, + 96071.90161251814, 95655.17309916276, 95280.68380028292, + 94888.74120225581, 94442.52932175685, 93953.21535080807, + 93470.87280606347, 93064.5132344598, 92787.09088326053, 92657.68446003733, + 92687.13083941273, 92878.43104125772, 93185.35836528587, + 93660.46204467834, 94443.87389545207, 95730.66820914941 + ], + "flow:J3:branch2_seg1": [ + 4.152958243035408, 5.7906638522809075, 8.016013698575849, + 11.00973284395512, 14.700179898699615, 19.010363501713794, + 23.87379200093419, 28.761448900572095, 33.19611790389776, + 37.0120210399849, 39.75811298736527, 41.089407578152695, + 41.22558415575764, 40.3548573069292, 38.57487926315535, + 36.335514710382284, 34.047183227635635, 31.853253174119978, + 29.870365618567895, 28.133242193907858, 26.58237154908731, + 25.056416895768567, 23.40627291474439, 21.67219033401513, + 19.853293534513483, 17.93879783885881, 16.10815499610408, + 14.47732361645885, 12.967669006540161, 11.559014069276671, + 10.253911262175734, 8.825812179385645, 7.1236545644452685, + 5.245093204795016, 3.152212498628501, 0.8685453227605765, + -1.2510853767598307, -3.0428130193474012, -4.480836341539729, + -5.3139495672200905, -5.523801883526647, -5.338559661096326, + -4.823711571434714, -4.0805895305210775, -3.331679096141958, + -2.6573110457071967, -2.011535716581927, -1.3806828660418744, + -0.738423538013204, -0.013795693653576028, 0.8044494066826028, + 1.6471512318818378, 2.3984020699473185, 2.9682145767149635, + 3.276807732467579, 3.243636057828356, 2.917638006470206, + 2.4152763123686363, 1.8575995554775937, 1.3872172406322505, + 1.110532314813268, 1.0661133334957755, 1.20286636319219, + 1.4120984116118052, 1.56256912338668, 1.5250352550986932, + 1.23608985727736, 0.702816122373056, 0.01584315432360354, + -0.6924253134486276, -1.2860052371438477, -1.6244228493110577, + -1.6726418344619738, -1.4787574223481175, -1.1260504329305603, + -0.7603077172216592, -0.5282079192261764, -0.5244996403879215, + -0.7696007464105089, -1.2200792088764993, -1.7726139377652275, + -2.288624371976769, -2.6685059482670823, -2.844531827945502, + -2.7934589220041963, -2.577699036194431, -2.282665576359719, + -1.9826453482407593, -1.7360254485740418, -1.5613474799328713, + -1.4307714017528061, -1.2829869334909156, -1.05288269680179, + -0.7049373492981216, -0.22464832375770735, 0.3907081707345406, + 1.1066102306457881, 1.9169983918521274, 2.9013459424312322, + 4.152958243035408 + ], + "pressure:J3:branch2_seg1": [ + 95730.66820914941, 97471.57263901344, 100044.50753914671, + 103563.22800103329, 107894.9381218777, 113047.60525675488, + 118909.11650507593, 124702.29828612671, 130215.57875262968, + 135370.68297795, 139333.02409944846, 142142.8266773768, + 144146.91189181453, 145169.85443962057, 145468.25716735027, + 145521.41593579622, 145529.1454867596, 145520.9015891519, + 145588.69577733096, 145750.5911172942, 145842.6458337706, + 145730.62574551336, 145332.83844189282, 144752.81575496632, + 143959.56090875666, 142943.58748619255, 142036.75841467155, + 141174.66967426654, 140209.1833448789, 139302.75700907552, + 138282.34302076334, 136860.44472778757, 135105.35314766844, + 133076.81584665316, 130651.57672347444, 128043.54991984951, + 125643.29380770259, 123424.94015926313, 121497.92209802296, + 120197.79257342538, 119323.44555634374, 118681.98561726058, + 118368.13804444348, 118182.62895320353, 117927.9052309879, + 117683.37875175625, 117486.54896281176, 117333.75972853963, + 117280.97104229599, 117395.70142805885, 117642.67326611343, + 117894.78034772819, 118060.43502505061, 118056.94865259672, + 117781.28970180034, 117192.3978753333, 116388.05504733873, + 115477.06031270379, 114565.47756994731, 113790.77187981465, + 113221.6484770503, 112847.21213781337, 112589.6383781674, + 112327.61928390992, 111932.7906030149, 111303.64554975777, + 110410.59401379526, 109304.67122089033, 108092.30011678055, + 106902.67874645215, 105876.70198506031, 105116.64656050947, + 104601.48754469222, 104270.82401155421, 104032.3409166522, + 103726.30057972542, 103236.29224262059, 102511.38356439405, + 101560.41167627176, 100445.95484058931, 99295.65279327729, + 98227.22106056564, 97304.29578749562, 96592.11777938891, + 96071.90161251814, 95655.17309916276, 95280.68380028292, + 94888.74120225581, 94442.52932175685, 93953.21535080807, + 93470.87280606347, 93064.5132344598, 92787.09088326053, 92657.68446003733, + 92687.13083941273, 92878.43104125772, 93185.35836528587, + 93660.46204467834, 94443.87389545207, 95730.66820914941 + ], + "flow:branch2_seg1:J4": [ + 4.151050321386932, 5.7878100709221885, 8.01179881020946, + 11.004407954909949, 14.693712608577911, 19.0027942194948, + 23.86584655565275, 28.753743680508563, 33.18884146000656, + 37.00578211367823, 39.75360858464667, 41.08621172755604, + 41.223455900240594, 40.35407006829424, 38.574736247265626, + 36.33544200375976, 34.047224558342606, 31.85317200664739, + 29.870230136351648, 28.13301442882348, 26.582330843054212, + 25.0568085635674, 23.40688237358482, 21.673133619043575, + 19.854527290427544, 17.940080404821025, 16.109331664926675, + 14.478493228859893, 12.968955248968363, 11.56022585166253, + 10.255472694150189, 8.828075050931389, 7.126163836446219, + 5.248084006745922, 3.155837733850503, 0.8719709306991456, + -1.2479598524245479, -3.0398587210119423, -4.478626545346997, + -5.312537505047529, -5.522744621826279, -5.337931940625212, + -4.823419802171891, -4.080299385259421, -3.3312956991651443, + -2.6570083487214085, -2.0112885353036325, -1.3805060361047377, + -0.7384625580861126, -0.014044074715072222, 0.8040672326176456, + 1.6468541961170509, 2.3982890620948463, 2.9683543391561473, + 3.27741939320801, 3.2446060075426315, 2.918820897172165, + 2.4165528883209046, 1.8587645769223797, 1.3881455136339713, + 1.1111512466531128, 1.0665235049778672, 1.2031989120830757, + 1.4125152202325795, 1.5632644751173517, 1.5260623537408544, + 1.2374815545367464, 0.7044167721887017, 0.017496576570936003, + -0.6908564769082685, -1.2847891325769658, -1.62356335482153, + -1.6720762922486971, -1.4784010564253318, -1.125708379791124, + -0.7597834130815008, -0.5273765276448414, -0.5233511335843368, + -0.7681816575673214, -1.2185127564720433, -1.771088186984737, + -2.2872614469137833, -2.667385561519639, -2.8437094690872886, + -2.7928411726433846, -2.577171943110213, -2.2821525692198685, + -1.9820738483269171, -1.735381227265299, -1.5606696563159255, + -1.4301483548645864, -1.2825139586257532, -1.0525960297954255, + -0.7048669691105606, -0.22479387081584948, 0.390382534934592, + 1.1061077604679002, 1.9161896285346462, 2.9000726902190723, + 4.151050321386932 + ], + "pressure:branch2_seg1:J4": [ + 95444.26284197022, 97086.50179666001, 99516.48994182014, + 102875.01981092975, 107060.83791922806, 112074.83277105293, + 117830.82069192875, 123638.11847352116, 129223.71255538674, + 134480.88178306515, 138671.9581548201, 141720.17028976616, + 143906.35671399912, 145123.70501235468, 145564.24732277318, + 145672.95151594764, 145688.8705824431, 145667.71095252427, + 145708.1493714442, 145836.28759055297, 145922.28021183115, + 145831.98671695174, 145468.6339694991, 144916.56529943907, + 144151.01090652015, 143160.58170150092, 142231.8908445511, + 141347.87255347345, 140384.4321615423, 139458.75015616353, + 138446.60402812305, 137083.12072498308, 135378.7060567378, + 133396.57546389487, 131033.1027561112, 128446.4831761471, + 126008.21159183356, 123743.00641379204, 121743.38208808353, + 120325.70486363831, 119359.17239212603, 118657.60836939061, + 118283.0272915018, 118070.5622065703, 117824.6516532887, + 117583.91157206331, 117385.75733548749, 117230.17400676005, + 117164.2178127494, 117255.36342591363, 117481.99138780794, + 117735.53976404203, 117920.62095628586, 117952.37212311359, + 117732.09453024683, 117204.08000646449, 116445.64396390217, + 115559.34337175565, 114649.38959162179, 113850.85913009687, + 113242.12158248184, 112828.7490220001, 112545.54228231974, + 112280.3650967571, 111908.06792185557, 111320.98543858292, + 110478.15233656534, 109413.55436624188, 108222.96499592478, + 107030.7480867264, 105973.41773429395, 105163.22833220946, + 104598.41117431267, 104228.61099837112, 103970.39338351772, + 103673.73254639922, 103217.18088371071, 102537.336523882, + 101631.03128577334, 100549.95602649832, 99409.16991325964, + 98327.25983658098, 97376.27062192606, 96623.51595462364, + 96065.16399542223, 95625.26269672244, 95241.16070812539, + 94852.24347343414, 94417.15106502475, 93938.43735734526, + 93458.21456702908, 93041.35499897109, 92743.18804870633, + 92587.97120327855, 92589.67336074747, 92753.67214470118, 93040.1965571621, + 93488.08470960746, 94221.82164946492, 95444.26284197022 + ], + "flow:J4:branch2_seg2": [ + 4.151050321386932, 5.7878100709221885, 8.01179881020946, + 11.004407954909949, 14.693712608577911, 19.0027942194948, + 23.86584655565275, 28.753743680508563, 33.18884146000656, + 37.00578211367823, 39.75360858464667, 41.08621172755604, + 41.223455900240594, 40.35407006829424, 38.574736247265626, + 36.33544200375976, 34.047224558342606, 31.85317200664739, + 29.870230136351648, 28.13301442882348, 26.582330843054212, + 25.0568085635674, 23.40688237358482, 21.673133619043575, + 19.854527290427544, 17.940080404821025, 16.109331664926675, + 14.478493228859893, 12.968955248968363, 11.56022585166253, + 10.255472694150189, 8.828075050931389, 7.126163836446219, + 5.248084006745922, 3.155837733850503, 0.8719709306991456, + -1.2479598524245479, -3.0398587210119423, -4.478626545346997, + -5.312537505047529, -5.522744621826279, -5.337931940625212, + -4.823419802171891, -4.080299385259421, -3.3312956991651443, + -2.6570083487214085, -2.0112885353036325, -1.3805060361047377, + -0.7384625580861126, -0.014044074715072222, 0.8040672326176456, + 1.6468541961170509, 2.3982890620948463, 2.9683543391561473, + 3.27741939320801, 3.2446060075426315, 2.918820897172165, + 2.4165528883209046, 1.8587645769223797, 1.3881455136339713, + 1.1111512466531128, 1.0665235049778672, 1.2031989120830757, + 1.4125152202325795, 1.5632644751173517, 1.5260623537408544, + 1.2374815545367464, 0.7044167721887017, 0.017496576570936003, + -0.6908564769082685, -1.2847891325769658, -1.62356335482153, + -1.6720762922486971, -1.4784010564253318, -1.125708379791124, + -0.7597834130815008, -0.5273765276448414, -0.5233511335843368, + -0.7681816575673214, -1.2185127564720433, -1.771088186984737, + -2.2872614469137833, -2.667385561519639, -2.8437094690872886, + -2.7928411726433846, -2.577171943110213, -2.2821525692198685, + -1.9820738483269171, -1.735381227265299, -1.5606696563159255, + -1.4301483548645864, -1.2825139586257532, -1.0525960297954255, + -0.7048669691105606, -0.22479387081584948, 0.390382534934592, + 1.1061077604679002, 1.9161896285346462, 2.9000726902190723, + 4.151050321386932 + ], + "pressure:J4:branch2_seg2": [ + 95444.26284197022, 97086.50179666001, 99516.48994182014, + 102875.01981092975, 107060.83791922806, 112074.83277105293, + 117830.82069192875, 123638.11847352116, 129223.71255538674, + 134480.88178306515, 138671.9581548201, 141720.17028976616, + 143906.35671399912, 145123.70501235468, 145564.24732277318, + 145672.95151594764, 145688.8705824431, 145667.71095252427, + 145708.1493714442, 145836.28759055297, 145922.28021183115, + 145831.98671695174, 145468.6339694991, 144916.56529943907, + 144151.01090652015, 143160.58170150092, 142231.8908445511, + 141347.87255347345, 140384.4321615423, 139458.75015616353, + 138446.60402812305, 137083.12072498308, 135378.7060567378, + 133396.57546389487, 131033.1027561112, 128446.4831761471, + 126008.21159183356, 123743.00641379204, 121743.38208808353, + 120325.70486363831, 119359.17239212603, 118657.60836939061, + 118283.0272915018, 118070.5622065703, 117824.6516532887, + 117583.91157206331, 117385.75733548749, 117230.17400676005, + 117164.2178127494, 117255.36342591363, 117481.99138780794, + 117735.53976404203, 117920.62095628586, 117952.37212311359, + 117732.09453024683, 117204.08000646449, 116445.64396390217, + 115559.34337175565, 114649.38959162179, 113850.85913009687, + 113242.12158248184, 112828.7490220001, 112545.54228231974, + 112280.3650967571, 111908.06792185557, 111320.98543858292, + 110478.15233656534, 109413.55436624188, 108222.96499592478, + 107030.7480867264, 105973.41773429395, 105163.22833220946, + 104598.41117431267, 104228.61099837112, 103970.39338351772, + 103673.73254639922, 103217.18088371071, 102537.336523882, + 101631.03128577334, 100549.95602649832, 99409.16991325964, + 98327.25983658098, 97376.27062192606, 96623.51595462364, + 96065.16399542223, 95625.26269672244, 95241.16070812539, + 94852.24347343414, 94417.15106502475, 93938.43735734526, + 93458.21456702908, 93041.35499897109, 92743.18804870633, + 92587.97120327855, 92589.67336074747, 92753.67214470118, 93040.1965571621, + 93488.08470960746, 94221.82164946492, 95444.26284197022 + ], + "flow:branch4_seg0:J5": [ + 6.381570796368494, 10.70503213129594, 16.331334707509622, + 23.74802257691309, 33.04130336619854, 44.23430160183704, + 57.41578996590026, 71.5281532850343, 86.2320517784055, 100.68019238598023, + 113.62599921188156, 124.90352820779147, 133.56075312580543, + 139.8461697517431, 143.77933997725947, 145.47012607685315, + 145.89886603899177, 144.9714759492408, 143.41961855574257, + 141.23509721916997, 138.47254239787208, 135.30282267468996, + 131.20408522235857, 126.65172360695904, 121.3423610810622, + 115.42538070723887, 109.37369641921173, 102.97284825782583, + 96.68181240922847, 90.3474943724599, 83.89293274676078, 77.30851781119607, + 70.1535447736491, 62.55846991566828, 54.41337666053929, 45.77082788724262, + 37.08607345255149, 28.65003552066127, 20.748257093587572, + 13.863952801588095, 8.128827400171911, 3.5119726253949617, + 0.058610631953456255, -2.5131453068905643, -4.317929830752673, + -5.590656924166877, -6.402729350946939, -6.701584624232397, + -6.590314171414594, -5.912076259194088, -4.754028510427163, + -3.203006831483952, -1.405618576464803, 0.31629361285932994, + 1.8585381702051775, 2.9204946882633327, 3.4796068988645796, + 3.6196368808156603, 3.4130569489049445, 3.1708134471410525, + 2.989642642737865, 3.0814419949648584, 3.423845119605788, + 3.896662311897622, 4.370258773391874, 4.560935317677941, + 4.364904851982994, 3.6780518050728737, 2.5591523619311323, + 1.2062714440240614, -0.20057523843526592, -1.3717099727150184, + -2.1591995582979338, -2.538626007402861, -2.5304481469163136, + -2.3581023603917806, -2.2033136139477194, -2.2945380571301666, + -2.7521083789213354, -3.5756185500298043, -4.6927184946150895, + -5.908080457107199, -7.060032577303152, -7.954354206292298, + -8.525978978112779, -8.756692572282033, -8.727264089227456, + -8.546863548639353, -8.294740078074573, -8.044488817097355, + -7.770387793677862, -7.419573920416371, -6.885686289533677, + -6.0961749347947185, -4.995393716673761, -3.530465793472129, + -1.754022437844057, 0.4123192603840706, 3.0785528038434493, + 6.381570796368494 + ], + "pressure:branch4_seg0:J5": [ + 96213.77658802547, 98177.57643484129, 101060.14458037149, + 105024.50609679114, 109391.44470075179, 114736.0306186818, + 120576.60067573522, 125580.43705782104, 130533.64500833371, + 134787.62972876287, 137650.05013252632, 139502.99461205915, + 140827.18537862677, 141621.66714152836, 141570.3324058137, + 142086.42449922365, 142603.92619758888, 143037.23742435456, + 143839.0225935242, 144316.2395838989, 144932.7731177888, + 144920.74484730107, 144593.51771779516, 144332.40547246268, + 143484.47743157495, 142745.0495630364, 142118.2942106853, + 141505.43169218354, 140782.6676088786, 139939.63126572338, + 139116.7360543106, 137499.90532233662, 135576.02550888833, + 133619.76772886177, 131000.53962659433, 128427.6195640013, + 126417.49252670848, 124414.29117130578, 122756.09648013902, + 121986.31154080479, 121273.87216204111, 120669.02383203944, + 120384.18407046245, 120010.8131263655, 119481.30976162662, + 118933.18348693191, 118578.79043745557, 118219.56136748094, + 118037.88763886098, 118123.64267323328, 118249.41942432134, + 118400.3965680214, 118318.94919346717, 118088.36941926568, + 117571.42847648097, 116666.8128125491, 115781.21707909789, + 114808.95852951535, 113993.42121444395, 113409.29791974631, + 113028.66167477483, 112883.80348305473, 112682.86816824958, + 112440.96938741124, 111926.84446348816, 111114.61266209392, + 110073.91720666864, 108829.01777494617, 107641.20010297574, + 106547.50589668348, 105704.6995307076, 105230.9509711218, + 104889.96863404365, 104695.17478579764, 104481.77612826545, + 104054.81395433848, 103394.59548581329, 102435.93035342345, + 101334.42864469149, 100113.7852778093, 98987.95980092736, + 98042.07848390593, 97269.53083746211, 96746.42479211079, + 96358.52467529147, 95998.77514505856, 95596.48486583943, + 95137.56246499768, 94589.51210832965, 94016.08285413205, + 93497.14289011832, 93105.23745012168, 92893.21164501287, + 92815.33571548089, 92910.31509916253, 93146.06165893088, + 93431.95819192579, 93939.83459146277, 94795.45016016354, 96213.77658802547 + ], + "flow:J5:branch4_seg1": [ + 6.381570796368494, 10.70503213129594, 16.331334707509622, + 23.74802257691309, 33.04130336619854, 44.23430160183704, + 57.41578996590026, 71.5281532850343, 86.2320517784055, 100.68019238598023, + 113.62599921188156, 124.90352820779147, 133.56075312580543, + 139.8461697517431, 143.77933997725947, 145.47012607685315, + 145.89886603899177, 144.9714759492408, 143.41961855574257, + 141.23509721916997, 138.47254239787208, 135.30282267468996, + 131.20408522235857, 126.65172360695904, 121.3423610810622, + 115.42538070723887, 109.37369641921173, 102.97284825782583, + 96.68181240922847, 90.3474943724599, 83.89293274676078, 77.30851781119607, + 70.1535447736491, 62.55846991566828, 54.41337666053929, 45.77082788724262, + 37.08607345255149, 28.65003552066127, 20.748257093587572, + 13.863952801588095, 8.128827400171911, 3.5119726253949617, + 0.058610631953456255, -2.5131453068905643, -4.317929830752673, + -5.590656924166877, -6.402729350946939, -6.701584624232397, + -6.590314171414594, -5.912076259194088, -4.754028510427163, + -3.203006831483952, -1.405618576464803, 0.31629361285932994, + 1.8585381702051775, 2.9204946882633327, 3.4796068988645796, + 3.6196368808156603, 3.4130569489049445, 3.1708134471410525, + 2.989642642737865, 3.0814419949648584, 3.423845119605788, + 3.896662311897622, 4.370258773391874, 4.560935317677941, + 4.364904851982994, 3.6780518050728737, 2.5591523619311323, + 1.2062714440240614, -0.20057523843526592, -1.3717099727150184, + -2.1591995582979338, -2.538626007402861, -2.5304481469163136, + -2.3581023603917806, -2.2033136139477194, -2.2945380571301666, + -2.7521083789213354, -3.5756185500298043, -4.6927184946150895, + -5.908080457107199, -7.060032577303152, -7.954354206292298, + -8.525978978112779, -8.756692572282033, -8.727264089227456, + -8.546863548639353, -8.294740078074573, -8.044488817097355, + -7.770387793677862, -7.419573920416371, -6.885686289533677, + -6.0961749347947185, -4.995393716673761, -3.530465793472129, + -1.754022437844057, 0.4123192603840706, 3.0785528038434493, + 6.381570796368494 + ], + "pressure:J5:branch4_seg1": [ + 96213.77658802547, 98177.57643484129, 101060.14458037149, + 105024.50609679114, 109391.44470075179, 114736.0306186818, + 120576.60067573522, 125580.43705782104, 130533.64500833371, + 134787.62972876287, 137650.05013252632, 139502.99461205915, + 140827.18537862677, 141621.66714152836, 141570.3324058137, + 142086.42449922365, 142603.92619758888, 143037.23742435456, + 143839.0225935242, 144316.2395838989, 144932.7731177888, + 144920.74484730107, 144593.51771779516, 144332.40547246268, + 143484.47743157495, 142745.0495630364, 142118.2942106853, + 141505.43169218354, 140782.6676088786, 139939.63126572338, + 139116.7360543106, 137499.90532233662, 135576.02550888833, + 133619.76772886177, 131000.53962659433, 128427.6195640013, + 126417.49252670848, 124414.29117130578, 122756.09648013902, + 121986.31154080479, 121273.87216204111, 120669.02383203944, + 120384.18407046245, 120010.8131263655, 119481.30976162662, + 118933.18348693191, 118578.79043745557, 118219.56136748094, + 118037.88763886098, 118123.64267323328, 118249.41942432134, + 118400.3965680214, 118318.94919346717, 118088.36941926568, + 117571.42847648097, 116666.8128125491, 115781.21707909789, + 114808.95852951535, 113993.42121444395, 113409.29791974631, + 113028.66167477483, 112883.80348305473, 112682.86816824958, + 112440.96938741124, 111926.84446348816, 111114.61266209392, + 110073.91720666864, 108829.01777494617, 107641.20010297574, + 106547.50589668348, 105704.6995307076, 105230.9509711218, + 104889.96863404365, 104695.17478579764, 104481.77612826545, + 104054.81395433848, 103394.59548581329, 102435.93035342345, + 101334.42864469149, 100113.7852778093, 98987.95980092736, + 98042.07848390593, 97269.53083746211, 96746.42479211079, + 96358.52467529147, 95998.77514505856, 95596.48486583943, + 95137.56246499768, 94589.51210832965, 94016.08285413205, + 93497.14289011832, 93105.23745012168, 92893.21164501287, + 92815.33571548089, 92910.31509916253, 93146.06165893088, + 93431.95819192579, 93939.83459146277, 94795.45016016354, 96213.77658802547 + ], + "flow:branch4_seg1:J6": [ + 6.3381203620302795, 10.63121543693124, 16.230454134592954, + 23.623520265798547, 32.894618391863695, 44.07229073744267, + 57.2409186665832, 71.39131225562423, 86.09321503632488, + 100.55914611218441, 113.5809044445459, 124.84253361851111, + 133.5319970361052, 139.84560194160903, 143.76338278339853, + 145.4661794607007, 145.87331979077598, 144.96115485981352, + 143.39742325382412, 141.21278884315186, 138.47249440731898, + 135.29678821102826, 131.22277911857705, 126.6621775054169, + 121.36503217843504, 115.45535193958183, 109.37758596509457, + 103.00147803702988, 96.70415462039753, 90.36374303252845, + 83.93585309172462, 77.35806733538406, 70.21145229079391, + 62.62661335041125, 54.49307521469011, 45.8396919381201, + 37.143760566262046, 28.706095138617066, 20.78548658332191, + 13.881676489511909, 8.148467177662452, 3.5284006396781473, + 0.06203754963343114, -2.4964671820778035, -4.300916988997476, + -5.579307887119241, -6.389379978338031, -6.695713666832268, + -6.586508750217743, -5.9174792110127825, -4.759467916105924, + -3.2017700269507974, -1.4046131530689734, 0.3298302404660415, + 1.8789382625452107, 2.948032988119903, 3.5090264483478566, + 3.644540341013857, 3.4371300186725833, 3.182531476461721, + 2.9981941242939505, 3.0859102183358957, 3.428620571790814, + 3.9091332447362808, 4.388277960112416, 4.590184304328215, + 4.399351274859452, 3.7142977397577455, 2.594990690825451, + 1.2346819015524093, -0.1808165061313711, -1.3599629038866672, + -2.15250967986864, -2.532257585902581, -2.522852782802527, + -2.3410812739155102, -2.1792131191588586, -2.26389345640201, + -2.7161650336388026, -3.5405288006403475, -4.661308345854403, + -5.882909981795086, -7.039929971889781, -7.942405392024682, + -8.514961889135003, -8.745397376545935, -8.715033634156077, + -8.531267520104251, -8.27811181526096, -8.027349813258018, + -7.756843531849961, -7.410296423949897, -6.881450287996742, + -6.096624614701211, -4.999720772022902, -3.539445244121953, + -1.7637495668679628, 0.39289493984184526, 3.045088946440224, + 6.3381203620302795 + ], + "pressure:branch4_seg1:J6": [ + 95662.11210849456, 97456.75473375715, 100092.85131198129, + 103802.40366665405, 107835.40769083025, 112907.70119691252, + 118496.30217406177, 123317.39611972494, 128293.15689571333, + 132549.11545946868, 135664.93949699667, 137840.01991231728, + 139428.6767747875, 140648.59560236745, 140864.55421049366, + 141669.3075832336, 142371.35989177375, 142915.91108095803, + 143870.03559417918, 144364.57774490374, 145117.4428196359, + 145184.07745640073, 144956.64086390854, 144848.07683447754, + 144046.66262015275, 143440.48278629084, 142834.6069724299, + 142233.03196195536, 141576.1392553403, 140694.4517792071, + 139934.32398883437, 138390.62224522364, 136528.28635464318, + 134690.40702456987, 132152.88335968496, 129635.24385032314, + 127637.49975048754, 125574.40176095678, 123812.84254911669, + 122904.94202161102, 122006.90544293771, 121256.94777224354, + 120821.50956075784, 120317.52240296139, 119718.64826868763, + 119083.43887083248, 118672.3607900386, 118240.99707760396, + 117986.24956132955, 118002.81723230921, 118041.03472158636, + 118161.97230240185, 118052.85470950569, 117839.12966773198, + 117383.24535266087, 116534.46890541614, 115736.83433843848, + 114809.34232510268, 114029.06936118318, 113445.78912635756, + 113027.06458681844, 112855.26885960848, 112609.06569364396, + 112363.63008968775, 111867.38429267539, 111102.3469770135, + 110138.92505666874, 108954.45500111413, 107827.56996338339, + 106757.64922427645, 105895.44035311035, 105384.54238295463, + 104974.6011657217, 104722.9903994289, 104466.52485135067, + 104024.04063168117, 103391.7490388457, 102472.21178903266, + 101433.45014471187, 100263.1791269977, 99168.49040012887, + 98227.15143003268, 97432.28599569776, 96866.09504958172, + 96423.82986866529, 96022.83427737729, 95587.23944120729, + 95113.94898914677, 94561.67595513501, 93988.46704817392, + 93463.89242039053, 93051.56810940919, 92808.96185598288, + 92684.52184281943, 92731.83531311997, 92914.85333611921, + 93145.90038102602, 93598.52154688878, 94356.71169877781, 95662.11210849456 + ], + "flow:J6:branch4_seg2": [ + 6.3381203620302795, 10.63121543693124, 16.230454134592954, + 23.623520265798547, 32.894618391863695, 44.07229073744267, + 57.2409186665832, 71.39131225562423, 86.09321503632488, + 100.55914611218441, 113.5809044445459, 124.84253361851111, + 133.5319970361052, 139.84560194160903, 143.76338278339853, + 145.4661794607007, 145.87331979077598, 144.96115485981352, + 143.39742325382412, 141.21278884315186, 138.47249440731898, + 135.29678821102826, 131.22277911857705, 126.6621775054169, + 121.36503217843504, 115.45535193958183, 109.37758596509457, + 103.00147803702988, 96.70415462039753, 90.36374303252845, + 83.93585309172462, 77.35806733538406, 70.21145229079391, + 62.62661335041125, 54.49307521469011, 45.8396919381201, + 37.143760566262046, 28.706095138617066, 20.78548658332191, + 13.881676489511909, 8.148467177662452, 3.5284006396781473, + 0.06203754963343114, -2.4964671820778035, -4.300916988997476, + -5.579307887119241, -6.389379978338031, -6.695713666832268, + -6.586508750217743, -5.9174792110127825, -4.759467916105924, + -3.2017700269507974, -1.4046131530689734, 0.3298302404660415, + 1.8789382625452107, 2.948032988119903, 3.5090264483478566, + 3.644540341013857, 3.4371300186725833, 3.182531476461721, + 2.9981941242939505, 3.0859102183358957, 3.428620571790814, + 3.9091332447362808, 4.388277960112416, 4.590184304328215, + 4.399351274859452, 3.7142977397577455, 2.594990690825451, + 1.2346819015524093, -0.1808165061313711, -1.3599629038866672, + -2.15250967986864, -2.532257585902581, -2.522852782802527, + -2.3410812739155102, -2.1792131191588586, -2.26389345640201, + -2.7161650336388026, -3.5405288006403475, -4.661308345854403, + -5.882909981795086, -7.039929971889781, -7.942405392024682, + -8.514961889135003, -8.745397376545935, -8.715033634156077, + -8.531267520104251, -8.27811181526096, -8.027349813258018, + -7.756843531849961, -7.410296423949897, -6.881450287996742, + -6.096624614701211, -4.999720772022902, -3.539445244121953, + -1.7637495668679628, 0.39289493984184526, 3.045088946440224, + 6.3381203620302795 + ], + "pressure:J6:branch4_seg2": [ + 95662.11210849456, 97456.75473375715, 100092.85131198129, + 103802.40366665405, 107835.40769083025, 112907.70119691252, + 118496.30217406177, 123317.39611972494, 128293.15689571333, + 132549.11545946868, 135664.93949699667, 137840.01991231728, + 139428.6767747875, 140648.59560236745, 140864.55421049366, + 141669.3075832336, 142371.35989177375, 142915.91108095803, + 143870.03559417918, 144364.57774490374, 145117.4428196359, + 145184.07745640073, 144956.64086390854, 144848.07683447754, + 144046.66262015275, 143440.48278629084, 142834.6069724299, + 142233.03196195536, 141576.1392553403, 140694.4517792071, + 139934.32398883437, 138390.62224522364, 136528.28635464318, + 134690.40702456987, 132152.88335968496, 129635.24385032314, + 127637.49975048754, 125574.40176095678, 123812.84254911669, + 122904.94202161102, 122006.90544293771, 121256.94777224354, + 120821.50956075784, 120317.52240296139, 119718.64826868763, + 119083.43887083248, 118672.3607900386, 118240.99707760396, + 117986.24956132955, 118002.81723230921, 118041.03472158636, + 118161.97230240185, 118052.85470950569, 117839.12966773198, + 117383.24535266087, 116534.46890541614, 115736.83433843848, + 114809.34232510268, 114029.06936118318, 113445.78912635756, + 113027.06458681844, 112855.26885960848, 112609.06569364396, + 112363.63008968775, 111867.38429267539, 111102.3469770135, + 110138.92505666874, 108954.45500111413, 107827.56996338339, + 106757.64922427645, 105895.44035311035, 105384.54238295463, + 104974.6011657217, 104722.9903994289, 104466.52485135067, + 104024.04063168117, 103391.7490388457, 102472.21178903266, + 101433.45014471187, 100263.1791269977, 99168.49040012887, + 98227.15143003268, 97432.28599569776, 96866.09504958172, + 96423.82986866529, 96022.83427737729, 95587.23944120729, + 95113.94898914677, 94561.67595513501, 93988.46704817392, + 93463.89242039053, 93051.56810940919, 92808.96185598288, + 92684.52184281943, 92731.83531311997, 92914.85333611921, + 93145.90038102602, 93598.52154688878, 94356.71169877781, 95662.11210849456 + ], + "flow:branch5_seg0:J7": [ + 3.814022166949105, 5.295076376916816, 7.316365394364299, + 10.031300826473204, 13.360654430613963, 17.223641192141507, + 21.54654503901803, 25.829053082265016, 29.640133523428933, + 32.84695947633372, 35.04672105081795, 35.95518257666088, + 35.81419385651324, 34.81088486074247, 33.051485337077715, + 30.958389998803177, 28.897641763440056, 26.981376290032745, + 25.294014732638974, 23.850355960504718, 22.576501187312722, + 21.312242022720387, 19.922142306361952, 18.446719663976115, + 16.890130507727662, 15.246288649967703, 13.686585826211049, + 12.314165614011069, 11.046793744227173, 9.866412376603298, + 8.768533338051299, 7.538163793519589, 6.047442343487104, + 4.3921255375129284, 2.540786250162844, 0.5299949363083695, + -1.3090904569980155, -2.833142885960334, -4.0222913113628245, + -4.653263900322686, -4.72767266619884, -4.46785082110667, + -3.9369550676882334, -3.230901297250331, -2.552795329502226, + -1.965122981385222, -1.4155912140695792, -0.885250520669446, + -0.3444147574726437, 0.2737963614680524, 0.9778261580387607, + 1.6985294103895856, 2.327991638112614, 2.785478615995021, + 2.99943043838651, 2.9036287107784764, 2.5518776787651447, + 2.0579565844138634, 1.5359011539061624, 1.1150255735998165, + 0.8874482377379245, 0.8786169117441867, 1.0319590746447505, + 1.2403080254656444, 1.3798477121640154, 1.3345065993946719, + 1.0522654512857028, 0.5493690938530057, -0.08301408190502244, + -0.718954489397299, -1.2319820375072217, -1.4987762164200094, + -1.4966238376265242, -1.2791609542519529, -0.930608636556967, + -0.5890583232141412, -0.388076447443866, -0.40813974210820075, + -0.6589293908529121, -1.0917547089692152, -1.6044040543717, + -2.0673111296835613, -2.391852716245551, -2.5210982129649597, + -2.4418426097455104, -2.2191127674557762, -1.9355637390185865, + -1.6598656651518198, -1.4431333259215895, -1.2978241904692847, + -1.1931420359740064, -1.069071950749124, -0.8652891310160625, + -0.550925683342859, -0.1156757302819506, 0.44007241573312184, + 1.0820368219152454, 1.8057868895046119, 2.687593949478294, + 3.814022166949105 + ], + "pressure:branch5_seg0:J7": [ + 97247.18838601379, 99504.13543346662, 102826.48307046772, + 107187.21270529677, 112288.26778099868, 118170.98858621684, + 124586.4458807276, 130303.10495825011, 135422.16072436876, + 140013.45589910762, 142744.96820448255, 144258.14390998922, + 145252.28845650796, 145207.42299458347, 144715.29019676757, + 144438.94673902096, 144380.27211681244, 144429.8459718665, + 144642.00923259265, 144989.50777275712, 145128.4828934758, + 144918.745993251, 144355.17677947698, 143641.15497470484, + 142714.39924215976, 141575.98197693707, 140793.53499832412, + 140060.18081093885, 139101.35672835523, 138309.8520349087, + 137262.46161657406, 135551.40853172704, 133540.80529583924, + 131277.30693974733, 128537.11391147292, 125822.93916827132, + 123628.59788130333, 121668.35705476071, 120138.15108316233, + 119472.04764547954, 119104.55777679295, 118802.07135211697, + 118825.89521769648, 118798.51082433057, 118510.03878005467, + 118250.49726848412, 118061.3602415692, 117921.65521214374, + 117934.73766599689, 118169.32561670359, 118519.86767458962, + 118762.3036003484, 118822.65518869499, 118629.2172152935, + 118056.24036243606, 117139.11954164696, 116083.02475954799, + 115032.30733712054, 114104.11047963187, 113449.39566371983, + 113087.01291183277, 112919.63536868659, 112801.78404351538, + 112562.07618372086, 112053.70420589011, 111205.8788850416, + 110048.37847846586, 108722.00010683665, 107390.79623166838, + 106211.3336672556, 105348.42111551008, 104853.49692242584, + 104604.62244862106, 104487.10529454412, 104360.27417775734, + 104012.02945886491, 103350.62538085498, 102389.42566719167, + 101201.25312232357, 99906.8441004994, 98701.41008291773, 97700.1927628332, + 96924.0024720966, 96426.77511946094, 96111.23001787647, 95822.4075041589, + 95503.97550892713, 95100.32028707518, 94597.83546334412, 94052.7234179912, + 93557.55355058594, 93204.07283094614, 93033.78047977695, 93039.2008625821, + 93214.36384596721, 93549.64631709122, 93964.36509226049, + 94581.85595077056, 95623.79719336017, 97247.18838601379 + ], + "flow:J7:branch5_seg1": [ + 3.814022166949105, 5.295076376916816, 7.316365394364299, + 10.031300826473204, 13.360654430613963, 17.223641192141507, + 21.54654503901803, 25.829053082265016, 29.640133523428933, + 32.84695947633372, 35.04672105081795, 35.95518257666088, + 35.81419385651324, 34.81088486074247, 33.051485337077715, + 30.958389998803177, 28.897641763440056, 26.981376290032745, + 25.294014732638974, 23.850355960504718, 22.576501187312722, + 21.312242022720387, 19.922142306361952, 18.446719663976115, + 16.890130507727662, 15.246288649967703, 13.686585826211049, + 12.314165614011069, 11.046793744227173, 9.866412376603298, + 8.768533338051299, 7.538163793519589, 6.047442343487104, + 4.3921255375129284, 2.540786250162844, 0.5299949363083695, + -1.3090904569980155, -2.833142885960334, -4.0222913113628245, + -4.653263900322686, -4.72767266619884, -4.46785082110667, + -3.9369550676882334, -3.230901297250331, -2.552795329502226, + -1.965122981385222, -1.4155912140695792, -0.885250520669446, + -0.3444147574726437, 0.2737963614680524, 0.9778261580387607, + 1.6985294103895856, 2.327991638112614, 2.785478615995021, + 2.99943043838651, 2.9036287107784764, 2.5518776787651447, + 2.0579565844138634, 1.5359011539061624, 1.1150255735998165, + 0.8874482377379245, 0.8786169117441867, 1.0319590746447505, + 1.2403080254656444, 1.3798477121640154, 1.3345065993946719, + 1.0522654512857028, 0.5493690938530057, -0.08301408190502244, + -0.718954489397299, -1.2319820375072217, -1.4987762164200094, + -1.4966238376265242, -1.2791609542519529, -0.930608636556967, + -0.5890583232141412, -0.388076447443866, -0.40813974210820075, + -0.6589293908529121, -1.0917547089692152, -1.6044040543717, + -2.0673111296835613, -2.391852716245551, -2.5210982129649597, + -2.4418426097455104, -2.2191127674557762, -1.9355637390185865, + -1.6598656651518198, -1.4431333259215895, -1.2978241904692847, + -1.1931420359740064, -1.069071950749124, -0.8652891310160625, + -0.550925683342859, -0.1156757302819506, 0.44007241573312184, + 1.0820368219152454, 1.8057868895046119, 2.687593949478294, + 3.814022166949105 + ], + "pressure:J7:branch5_seg1": [ + 97247.18838601379, 99504.13543346662, 102826.48307046772, + 107187.21270529677, 112288.26778099868, 118170.98858621684, + 124586.4458807276, 130303.10495825011, 135422.16072436876, + 140013.45589910762, 142744.96820448255, 144258.14390998922, + 145252.28845650796, 145207.42299458347, 144715.29019676757, + 144438.94673902096, 144380.27211681244, 144429.8459718665, + 144642.00923259265, 144989.50777275712, 145128.4828934758, + 144918.745993251, 144355.17677947698, 143641.15497470484, + 142714.39924215976, 141575.98197693707, 140793.53499832412, + 140060.18081093885, 139101.35672835523, 138309.8520349087, + 137262.46161657406, 135551.40853172704, 133540.80529583924, + 131277.30693974733, 128537.11391147292, 125822.93916827132, + 123628.59788130333, 121668.35705476071, 120138.15108316233, + 119472.04764547954, 119104.55777679295, 118802.07135211697, + 118825.89521769648, 118798.51082433057, 118510.03878005467, + 118250.49726848412, 118061.3602415692, 117921.65521214374, + 117934.73766599689, 118169.32561670359, 118519.86767458962, + 118762.3036003484, 118822.65518869499, 118629.2172152935, + 118056.24036243606, 117139.11954164696, 116083.02475954799, + 115032.30733712054, 114104.11047963187, 113449.39566371983, + 113087.01291183277, 112919.63536868659, 112801.78404351538, + 112562.07618372086, 112053.70420589011, 111205.8788850416, + 110048.37847846586, 108722.00010683665, 107390.79623166838, + 106211.3336672556, 105348.42111551008, 104853.49692242584, + 104604.62244862106, 104487.10529454412, 104360.27417775734, + 104012.02945886491, 103350.62538085498, 102389.42566719167, + 101201.25312232357, 99906.8441004994, 98701.41008291773, 97700.1927628332, + 96924.0024720966, 96426.77511946094, 96111.23001787647, 95822.4075041589, + 95503.97550892713, 95100.32028707518, 94597.83546334412, 94052.7234179912, + 93557.55355058594, 93204.07283094614, 93033.78047977695, 93039.2008625821, + 93214.36384596721, 93549.64631709122, 93964.36509226049, + 94581.85595077056, 95623.79719336017, 97247.18838601379 + ], + "flow:branch5_seg1:J8": [ + 3.8028667746326135, 5.278270314246637, 7.29160576194693, + 10.002180004535917, 13.32665113292728, 17.184734809556417, + 21.509769325006758, 25.795973389493014, 29.610067926751643, + 32.82514580841447, 35.03476281959694, 35.94800310170474, 35.8105020530817, + 34.813341297468796, 33.05391846021568, 30.958479624919555, + 28.89760654665885, 26.979748973910468, 25.29214504231946, + 23.84826113419356, 22.576128831847683, 21.31514347408384, + 19.925323360349402, 18.451754051205516, 16.896512463106305, + 15.251483105410948, 13.690864952009342, 12.318729185434666, + 11.052047187339085, 9.871188332144053, 8.776346590578232, 7.5506192817187, + 6.059951073344015, 4.407278254178819, 2.559470061986318, + 0.5448943676167625, -1.2965747626600044, -2.8210519355090073, + -4.015815842887271, -4.650610714030264, -4.72508418935367, + -4.467158886071061, -3.9371998666636285, -3.2296258502080626, + -2.5505934938180044, -1.9636419253034543, -1.4144151282679767, + -0.8844547350866278, -0.3451946544809052, 0.2720441324003666, + 0.9757654228150295, 1.697654424474741, 2.3285817453464372, + 2.7875447701670293, 3.0044415694807154, 2.9099267017701695, + 2.5584931283801837, 2.064325822273376, 1.5408109111823918, + 1.1181971224554073, 0.8888368122173156, 0.8793808064012376, + 1.0330288968573593, 1.242542139710778, 1.3842368600992578, + 1.3407747657185272, 1.060280091833507, 0.55777163643444, + -0.07519082514176542, -0.7122049638777693, -1.2279043183433413, + -1.4965968628834199, -1.4954883775702563, -1.2785912463498754, + -0.9291696795766647, -0.5858614602030426, -0.3828514454318778, + -0.4012791978279173, -0.6511153473561474, -1.0838336809551046, + -1.5975395353959312, -2.061816322680497, -2.387900848569606, + -2.518755045232405, -2.4400203315967337, -2.2172203956617356, + -1.9332568366983987, -1.6569183892746517, -1.4397399072920969, + -1.2944205836691058, -1.1903614859872325, -1.0674146681420411, + -0.864683364218868, -0.5514507320218432, -0.11719349145327874, + 0.4379704785868535, 1.0791384429374165, 1.8010026918638802, + 2.6801595664100506, 3.8028667746326135 + ], + "pressure:branch5_seg1:J8": [ + 95953.57648090649, 97757.70001205534, 100422.41529322421, + 104059.9134736873, 108512.42044881517, 113782.66117411472, + 119745.59823480393, 125569.90783977286, 131046.86917511903, + 136116.47033399795, 139906.64611845356, 142492.4933235819, + 144275.7005500826, 145075.86229514383, 145178.08550614913, + 145092.48283429744, 145021.68786494812, 144978.42984526118, + 145046.80374508098, 145233.1859383309, 145352.33095849806, + 145257.96155048, 144863.54213854717, 144284.5928172492, 143489.6800412222, + 142469.11394899065, 141579.87427292424, 140746.5141926522, + 139805.26435508602, 138930.1625938397, 137933.26269690803, + 136507.70219188955, 134734.19968916703, 132683.34453448665, + 130225.17014887121, 127592.25639327969, 125202.70596807032, + 123019.13749259985, 121148.61978714218, 119941.24194236238, + 119169.49803660896, 118617.12166866842, 118387.1708466024, + 118265.12283197732, 118043.87029460576, 117816.42628873343, + 117629.02192705621, 117480.63676386811, 117433.03588647458, + 117558.61846308211, 117818.2217893602, 118074.16138973607, + 118230.68487007098, 118203.23999089637, 117887.14844487076, + 117244.6347930562, 116386.4846172057, 115431.778232881, + 114492.45007353235, 113711.96004660572, 113157.04859119779, + 112809.20730230193, 112579.64063645063, 112336.42485288341, + 111943.92094590046, 111297.88733159666, 110373.5581211973, + 109231.03025109082, 107987.96764135535, 106782.28691081406, + 105761.12797393976, 105027.89305766762, 104551.7897011637, + 104262.8247314049, 104059.00173280756, 103770.17682216597, + 103276.11045271571, 102528.83353652107, 101544.93733243184, + 100396.01862825282, 99221.2318461342, 98144.67365226049, 97229.9423618432, + 96541.43041967694, 96053.06741206438, 95666.19720941172, + 95314.08877413251, 94934.32510627704, 94490.12919950772, + 93996.78287158471, 93510.25829645726, 93104.99052387223, + 92836.52343575751, 92722.49555046961, 92772.05698767341, + 92986.07521446244, 93313.39467089908, 93809.70270635062, + 94624.61924975339, 95953.57648090649 + ], + "flow:J8:branch5_seg2": [ + 3.8028667746326135, 5.278270314246637, 7.29160576194693, + 10.002180004535917, 13.32665113292728, 17.184734809556417, + 21.509769325006758, 25.795973389493014, 29.610067926751643, + 32.82514580841447, 35.03476281959694, 35.94800310170474, 35.8105020530817, + 34.813341297468796, 33.05391846021568, 30.958479624919555, + 28.89760654665885, 26.979748973910468, 25.29214504231946, + 23.84826113419356, 22.576128831847683, 21.31514347408384, + 19.925323360349402, 18.451754051205516, 16.896512463106305, + 15.251483105410948, 13.690864952009342, 12.318729185434666, + 11.052047187339085, 9.871188332144053, 8.776346590578232, 7.5506192817187, + 6.059951073344015, 4.407278254178819, 2.559470061986318, + 0.5448943676167625, -1.2965747626600044, -2.8210519355090073, + -4.015815842887271, -4.650610714030264, -4.72508418935367, + -4.467158886071061, -3.9371998666636285, -3.2296258502080626, + -2.5505934938180044, -1.9636419253034543, -1.4144151282679767, + -0.8844547350866278, -0.3451946544809052, 0.2720441324003666, + 0.9757654228150295, 1.697654424474741, 2.3285817453464372, + 2.7875447701670293, 3.0044415694807154, 2.9099267017701695, + 2.5584931283801837, 2.064325822273376, 1.5408109111823918, + 1.1181971224554073, 0.8888368122173156, 0.8793808064012376, + 1.0330288968573593, 1.242542139710778, 1.3842368600992578, + 1.3407747657185272, 1.060280091833507, 0.55777163643444, + -0.07519082514176542, -0.7122049638777693, -1.2279043183433413, + -1.4965968628834199, -1.4954883775702563, -1.2785912463498754, + -0.9291696795766647, -0.5858614602030426, -0.3828514454318778, + -0.4012791978279173, -0.6511153473561474, -1.0838336809551046, + -1.5975395353959312, -2.061816322680497, -2.387900848569606, + -2.518755045232405, -2.4400203315967337, -2.2172203956617356, + -1.9332568366983987, -1.6569183892746517, -1.4397399072920969, + -1.2944205836691058, -1.1903614859872325, -1.0674146681420411, + -0.864683364218868, -0.5514507320218432, -0.11719349145327874, + 0.4379704785868535, 1.0791384429374165, 1.8010026918638802, + 2.6801595664100506, 3.8028667746326135 + ], + "pressure:J8:branch5_seg2": [ + 95953.57648090649, 97757.70001205534, 100422.41529322421, + 104059.9134736873, 108512.42044881517, 113782.66117411472, + 119745.59823480393, 125569.90783977286, 131046.86917511903, + 136116.47033399795, 139906.64611845356, 142492.4933235819, + 144275.7005500826, 145075.86229514383, 145178.08550614913, + 145092.48283429744, 145021.68786494812, 144978.42984526118, + 145046.80374508098, 145233.1859383309, 145352.33095849806, + 145257.96155048, 144863.54213854717, 144284.5928172492, 143489.6800412222, + 142469.11394899065, 141579.87427292424, 140746.5141926522, + 139805.26435508602, 138930.1625938397, 137933.26269690803, + 136507.70219188955, 134734.19968916703, 132683.34453448665, + 130225.17014887121, 127592.25639327969, 125202.70596807032, + 123019.13749259985, 121148.61978714218, 119941.24194236238, + 119169.49803660896, 118617.12166866842, 118387.1708466024, + 118265.12283197732, 118043.87029460576, 117816.42628873343, + 117629.02192705621, 117480.63676386811, 117433.03588647458, + 117558.61846308211, 117818.2217893602, 118074.16138973607, + 118230.68487007098, 118203.23999089637, 117887.14844487076, + 117244.6347930562, 116386.4846172057, 115431.778232881, + 114492.45007353235, 113711.96004660572, 113157.04859119779, + 112809.20730230193, 112579.64063645063, 112336.42485288341, + 111943.92094590046, 111297.88733159666, 110373.5581211973, + 109231.03025109082, 107987.96764135535, 106782.28691081406, + 105761.12797393976, 105027.89305766762, 104551.7897011637, + 104262.8247314049, 104059.00173280756, 103770.17682216597, + 103276.11045271571, 102528.83353652107, 101544.93733243184, + 100396.01862825282, 99221.2318461342, 98144.67365226049, 97229.9423618432, + 96541.43041967694, 96053.06741206438, 95666.19720941172, + 95314.08877413251, 94934.32510627704, 94490.12919950772, + 93996.78287158471, 93510.25829645726, 93104.99052387223, + 92836.52343575751, 92722.49555046961, 92772.05698767341, + 92986.07521446244, 93313.39467089908, 93809.70270635062, + 94624.61924975339, 95953.57648090649 + ], + "flow:branch6_seg0:J9": [ + 1.061376366728062, 1.4463712626447205, 1.9811000190110992, + 2.692804424658442, 3.5352081046142456, 4.48877361991872, + 5.531742344272148, 6.5107780899726455, 7.3382742822412, 8.020929206920334, + 8.44627797210713, 8.576772524374723, 8.530976811860906, 8.336939559014143, + 8.016375871653059, 7.692039660969509, 7.422029236270648, + 7.199390469949614, 7.022647561008561, 6.881959002392038, + 6.748124053142761, 6.572010392087057, 6.334649601065464, + 6.0634855349731245, 5.763954095570421, 5.436851761686924, + 5.137982329113078, 4.884031076102563, 4.630812653134107, + 4.385437893842913, 4.140856377896152, 3.824991568996238, + 3.4321025236826093, 3.003443183281559, 2.520259157574641, + 2.008801219657366, 1.5727800384328439, 1.218600293076429, + 0.937792818427317, 0.7978863646678793, 0.7693740803988259, + 0.7790368234087383, 0.8299747048254842, 0.9006732022513642, + 0.9394950477577952, 0.9545888656898022, 0.9741803877102035, + 1.0012834255882275, 1.0459008025484555, 1.1246278986231883, + 1.2316381418953566, 1.3390297924633383, 1.4170627711164347, + 1.452398851021013, 1.4288047568605697, 1.3357375282028168, + 1.2005685290686663, 1.0552744568196788, 0.9260756996815857, + 0.839645531135106, 0.8095664468958967, 0.828903399263795, + 0.8727167896191252, 0.9105125973038597, 0.9119389639053666, + 0.8559552126309661, 0.7405083798909392, 0.5813486250090448, + 0.40948671694854183, 0.25616862456342476, 0.15007952481921166, + 0.11418227065356316, 0.13785546509013336, 0.19831646865142405, + 0.27067988158410755, 0.31917407120281976, 0.316613289078466, + 0.25497414666608287, 0.14387843545672663, 0.0032069851462926562, + -0.13611726779840186, -0.24411565642474642, -0.30766991581958464, + -0.320282652344028, -0.28824339234132634, -0.23655810585679277, + -0.18563594801975555, -0.14803349329754725, -0.13065021894871517, + -0.1289416647124762, -0.12930815168124787, -0.11383269251737368, + -0.0694609416986849, 0.006085591951471146, 0.11135920399867762, + 0.24362347147667857, 0.3919894342732744, 0.5600645265972428, + 0.7760534863478131, 1.061376366728062 + ], + "pressure:branch6_seg0:J9": [ + 97269.7090381556, 99533.36535116337, 102867.1103837527, + 107276.32153190165, 112356.95179308351, 118226.7954930934, + 124584.51687098829, 130105.97177249263, 135049.81528631176, + 139411.2079729109, 141855.9726734128, 143085.22919139135, + 143883.09771090848, 143742.07417798034, 143134.28212482322, + 142912.8818729978, 142948.56732151975, 143107.18284267205, + 143494.02424236614, 143945.94928992027, 144230.38496078574, + 144096.35587286984, 143597.19832713288, 142980.13902800702, + 142089.31861550335, 141039.38210680822, 140350.62979175348, + 139713.28514589614, 138837.999522032, 138107.67725874708, + 137157.79181055672, 135462.75713651298, 133451.77740986412, + 131245.20502204535, 128520.07237031717, 125818.77525813897, + 123707.87835790042, 121828.05223290008, 120364.24165026104, + 119798.61084600612, 119490.49740373642, 119214.09317396749, + 119251.49688634122, 119200.76211551216, 118863.26512940448, + 118535.5646017916, 118304.41251438875, 118115.03495174767, + 118089.67456714858, 118305.79747502379, 118629.67273618393, + 118856.39904541611, 118871.39871818371, 118633.0209779583, + 118016.9013699023, 117038.37799560592, 115956.25217550196, + 114885.25203228444, 113965.9956105088, 113340.17811678667, + 113013.70902463743, 112896.2477928935, 112800.30304140587, + 112576.87071968321, 112057.12851466621, 111181.03140563717, + 109997.0531215279, 108639.4365920434, 107305.76743249598, + 106138.84737416798, 105301.01251254382, 104858.29573239245, + 104650.29625166778, 104568.12036386598, 104457.05747844998, + 104098.11559059098, 103411.18757877676, 102407.20728464203, + 101187.30781370899, 99864.90740704973, 98656.27818206893, + 97671.82288670466, 96919.9084141183, 96459.3783481874, 96177.04732119356, + 95907.52028028002, 95590.44738306715, 95177.67716246615, + 94654.71464097647, 94089.19121284822, 93579.42426657683, + 93219.22153314747, 93053.6758122563, 93064.04060043104, 93247.89246525761, + 93588.25368343305, 93993.73631185447, 94605.65067561531, + 95647.54509017945, 97269.7090381556 + ], + "flow:J9:branch6_seg1": [ + 1.061376366728062, 1.4463712626447205, 1.9811000190110992, + 2.692804424658442, 3.5352081046142456, 4.48877361991872, + 5.531742344272148, 6.5107780899726455, 7.3382742822412, 8.020929206920334, + 8.44627797210713, 8.576772524374723, 8.530976811860906, 8.336939559014143, + 8.016375871653059, 7.692039660969509, 7.422029236270648, + 7.199390469949614, 7.022647561008561, 6.881959002392038, + 6.748124053142761, 6.572010392087057, 6.334649601065464, + 6.0634855349731245, 5.763954095570421, 5.436851761686924, + 5.137982329113078, 4.884031076102563, 4.630812653134107, + 4.385437893842913, 4.140856377896152, 3.824991568996238, + 3.4321025236826093, 3.003443183281559, 2.520259157574641, + 2.008801219657366, 1.5727800384328439, 1.218600293076429, + 0.937792818427317, 0.7978863646678793, 0.7693740803988259, + 0.7790368234087383, 0.8299747048254842, 0.9006732022513642, + 0.9394950477577952, 0.9545888656898022, 0.9741803877102035, + 1.0012834255882275, 1.0459008025484555, 1.1246278986231883, + 1.2316381418953566, 1.3390297924633383, 1.4170627711164347, + 1.452398851021013, 1.4288047568605697, 1.3357375282028168, + 1.2005685290686663, 1.0552744568196788, 0.9260756996815857, + 0.839645531135106, 0.8095664468958967, 0.828903399263795, + 0.8727167896191252, 0.9105125973038597, 0.9119389639053666, + 0.8559552126309661, 0.7405083798909392, 0.5813486250090448, + 0.40948671694854183, 0.25616862456342476, 0.15007952481921166, + 0.11418227065356316, 0.13785546509013336, 0.19831646865142405, + 0.27067988158410755, 0.31917407120281976, 0.316613289078466, + 0.25497414666608287, 0.14387843545672663, 0.0032069851462926562, + -0.13611726779840186, -0.24411565642474642, -0.30766991581958464, + -0.320282652344028, -0.28824339234132634, -0.23655810585679277, + -0.18563594801975555, -0.14803349329754725, -0.13065021894871517, + -0.1289416647124762, -0.12930815168124787, -0.11383269251737368, + -0.0694609416986849, 0.006085591951471146, 0.11135920399867762, + 0.24362347147667857, 0.3919894342732744, 0.5600645265972428, + 0.7760534863478131, 1.061376366728062 + ], + "pressure:J9:branch6_seg1": [ + 97269.7090381556, 99533.36535116337, 102867.1103837527, + 107276.32153190165, 112356.95179308351, 118226.7954930934, + 124584.51687098829, 130105.97177249263, 135049.81528631176, + 139411.2079729109, 141855.9726734128, 143085.22919139135, + 143883.09771090848, 143742.07417798034, 143134.28212482322, + 142912.8818729978, 142948.56732151975, 143107.18284267205, + 143494.02424236614, 143945.94928992027, 144230.38496078574, + 144096.35587286984, 143597.19832713288, 142980.13902800702, + 142089.31861550335, 141039.38210680822, 140350.62979175348, + 139713.28514589614, 138837.999522032, 138107.67725874708, + 137157.79181055672, 135462.75713651298, 133451.77740986412, + 131245.20502204535, 128520.07237031717, 125818.77525813897, + 123707.87835790042, 121828.05223290008, 120364.24165026104, + 119798.61084600612, 119490.49740373642, 119214.09317396749, + 119251.49688634122, 119200.76211551216, 118863.26512940448, + 118535.5646017916, 118304.41251438875, 118115.03495174767, + 118089.67456714858, 118305.79747502379, 118629.67273618393, + 118856.39904541611, 118871.39871818371, 118633.0209779583, + 118016.9013699023, 117038.37799560592, 115956.25217550196, + 114885.25203228444, 113965.9956105088, 113340.17811678667, + 113013.70902463743, 112896.2477928935, 112800.30304140587, + 112576.87071968321, 112057.12851466621, 111181.03140563717, + 109997.0531215279, 108639.4365920434, 107305.76743249598, + 106138.84737416798, 105301.01251254382, 104858.29573239245, + 104650.29625166778, 104568.12036386598, 104457.05747844998, + 104098.11559059098, 103411.18757877676, 102407.20728464203, + 101187.30781370899, 99864.90740704973, 98656.27818206893, + 97671.82288670466, 96919.9084141183, 96459.3783481874, 96177.04732119356, + 95907.52028028002, 95590.44738306715, 95177.67716246615, + 94654.71464097647, 94089.19121284822, 93579.42426657683, + 93219.22153314747, 93053.6758122563, 93064.04060043104, 93247.89246525761, + 93588.25368343305, 93993.73631185447, 94605.65067561531, + 95647.54509017945, 97269.7090381556 + ], + "flow:branch6_seg1:J10": [ + 1.054403238926958, 1.4354596633490129, 1.965306997571811, + 2.6738960992347485, 3.5131282381066717, 4.464107231322489, + 5.508721876879788, 6.4903621655579435, 7.319434813715084, + 8.007723227773072, 8.440660664700555, 8.572772590754266, + 8.529246525253912, 8.339264161681434, 8.018182565694278, + 7.692430949656113, 7.421674678538415, 7.1982312784742035, + 7.0209714867500255, 6.880339525248589, 6.7479387912659154, + 6.573348370734498, 6.336721865476598, 6.0665062491724235, + 5.7679497496489205, 5.43995844341154, 5.140044927102317, 4.88700091504577, + 4.633964473801196, 4.387921494389523, 4.14578944872033, + 3.8330670242483005, 3.4401517086836173, 3.0129195711208427, + 2.532265083118458, 2.018556216284833, 1.5805331863254724, + 1.2258776289922901, 0.9417715731250333, 0.7994128009758437, + 0.7708059350995808, 0.7793452310065607, 0.8296447684698067, + 0.9016275973347028, 0.9410592132671127, 0.9556357308133185, + 0.9750934785824422, 1.0017990795863285, 1.0455397137991722, + 1.1234870972329776, 1.230272809837435, 1.3385245866550939, + 1.4174767633867293, 1.4539435591499752, 1.4320498281865963, + 1.3399216165266705, 1.2048829657249844, 1.0593171624236861, + 0.9292432795733334, 0.8414870096194519, 0.810306165985401, + 0.8292103650454995, 0.8732855251514285, 0.9119438391814283, + 0.9147595997125499, 0.8600980346732606, 0.7457243812031925, + 0.5867796922526852, 0.4144816298147841, 0.2604169663819498, + 0.15263248192060516, 0.11538932378340092, 0.13836948949499545, + 0.1985675266557767, 0.2715130789527877, 0.3212633009859316, + 0.32005707659905386, 0.2594444558295907, 0.1489804177225476, + 0.008269723331985368, -0.13178920330417537, -0.24068689557249312, + -0.3052377075914591, -0.31897843094107153, -0.2872394865651079, + -0.23542458701888264, -0.18421034840526412, -0.1461213683923015, + -0.1284424774388183, -0.12674109215339271, -0.12753940102967393, + -0.11277490297314571, -0.06912944232128035, 0.00569018743174691, + 0.11033365288107949, 0.24228349674891542, 0.39016583736097826, + 0.5569742334172397, 0.7712082096032375, 1.054403238926958 + ], + "pressure:branch6_seg1:J10": [ + 96846.64875221744, 98946.7951841279, 102056.91125057756, + 106235.92296837753, 111144.00193336018, 116835.10570782327, + 123078.36063217187, 128683.24590158103, 133741.32095840722, + 138253.93696273913, 141017.26227458208, 142500.5586787383, + 143453.96361673888, 143505.51570997093, 142997.28581954184, + 142749.12732077378, 142738.49170944895, 142865.15803798297, + 143214.80758539133, 143647.38259299027, 143957.39764781648, + 143899.2691142902, 143477.87931980265, 142903.04836065668, + 142066.07577117442, 141047.08568213435, 140321.51197103274, + 139672.04514577021, 138820.5321442994, 138083.0394055766, + 137185.61337059585, 135620.83403179832, 133682.20805475887, + 131545.82504831493, 128932.06202838974, 126229.53804952961, + 124033.85920806704, 122110.02334910547, 120554.61555342845, + 119825.21571181947, 119443.31099155913, 119136.4835993024, + 119120.75049926096, 119076.66646278914, 118780.961709992, + 118458.6866020232, 118216.79670549638, 118016.00767657139, + 117958.88424365873, 118128.7649998586, 118424.5883085699, + 118665.33952466479, 118716.0431420685, 118527.69822443782, + 117989.13801880727, 117086.55307606695, 116039.10218834235, + 114975.41320232175, 114032.19174939142, 113352.25827866899, + 112965.85036080045, 112803.18409512189, 112694.05745741651, + 112490.94119973872, 112025.5167360456, 111220.7940449975, + 110105.35083740862, 108790.73357920782, 107464.5611022039, + 106274.42533385092, 105372.9278020566, 104853.59393705656, + 104591.73414529383, 104476.61302380102, 104365.15530289595, + 104048.1676019254, 103425.11086448444, 102488.01017800909, + 101320.40525311229, 100025.48354316095, 98806.42652990938, + 97784.06937718295, 96983.60725182969, 96465.40066661988, + 96144.36528049779, 95863.02441060974, 95551.24727257965, + 95156.04212268523, 94653.8918276776, 94099.9401226489, 93583.18473078396, + 93196.06678790026, 92992.24411917134, 92964.31586390974, + 93110.27054630741, 93416.86633047317, 93798.21658616238, + 94367.02839685105, 95328.14757607451, 96846.64875221744 + ], + "flow:J10:branch6_seg2": [ + 1.054403238926958, 1.4354596633490129, 1.965306997571811, + 2.6738960992347485, 3.5131282381066717, 4.464107231322489, + 5.508721876879788, 6.4903621655579435, 7.319434813715084, + 8.007723227773072, 8.440660664700555, 8.572772590754266, + 8.529246525253912, 8.339264161681434, 8.018182565694278, + 7.692430949656113, 7.421674678538415, 7.1982312784742035, + 7.0209714867500255, 6.880339525248589, 6.7479387912659154, + 6.573348370734498, 6.336721865476598, 6.0665062491724235, + 5.7679497496489205, 5.43995844341154, 5.140044927102317, 4.88700091504577, + 4.633964473801196, 4.387921494389523, 4.14578944872033, + 3.8330670242483005, 3.4401517086836173, 3.0129195711208427, + 2.532265083118458, 2.018556216284833, 1.5805331863254724, + 1.2258776289922901, 0.9417715731250333, 0.7994128009758437, + 0.7708059350995808, 0.7793452310065607, 0.8296447684698067, + 0.9016275973347028, 0.9410592132671127, 0.9556357308133185, + 0.9750934785824422, 1.0017990795863285, 1.0455397137991722, + 1.1234870972329776, 1.230272809837435, 1.3385245866550939, + 1.4174767633867293, 1.4539435591499752, 1.4320498281865963, + 1.3399216165266705, 1.2048829657249844, 1.0593171624236861, + 0.9292432795733334, 0.8414870096194519, 0.810306165985401, + 0.8292103650454995, 0.8732855251514285, 0.9119438391814283, + 0.9147595997125499, 0.8600980346732606, 0.7457243812031925, + 0.5867796922526852, 0.4144816298147841, 0.2604169663819498, + 0.15263248192060516, 0.11538932378340092, 0.13836948949499545, + 0.1985675266557767, 0.2715130789527877, 0.3212633009859316, + 0.32005707659905386, 0.2594444558295907, 0.1489804177225476, + 0.008269723331985368, -0.13178920330417537, -0.24068689557249312, + -0.3052377075914591, -0.31897843094107153, -0.2872394865651079, + -0.23542458701888264, -0.18421034840526412, -0.1461213683923015, + -0.1284424774388183, -0.12674109215339271, -0.12753940102967393, + -0.11277490297314571, -0.06912944232128035, 0.00569018743174691, + 0.11033365288107949, 0.24228349674891542, 0.39016583736097826, + 0.5569742334172397, 0.7712082096032375, 1.054403238926958 + ], + "pressure:J10:branch6_seg2": [ + 96846.64875221744, 98946.7951841279, 102056.91125057756, + 106235.92296837753, 111144.00193336018, 116835.10570782327, + 123078.36063217187, 128683.24590158103, 133741.32095840722, + 138253.93696273913, 141017.26227458208, 142500.5586787383, + 143453.96361673888, 143505.51570997093, 142997.28581954184, + 142749.12732077378, 142738.49170944895, 142865.15803798297, + 143214.80758539133, 143647.38259299027, 143957.39764781648, + 143899.2691142902, 143477.87931980265, 142903.04836065668, + 142066.07577117442, 141047.08568213435, 140321.51197103274, + 139672.04514577021, 138820.5321442994, 138083.0394055766, + 137185.61337059585, 135620.83403179832, 133682.20805475887, + 131545.82504831493, 128932.06202838974, 126229.53804952961, + 124033.85920806704, 122110.02334910547, 120554.61555342845, + 119825.21571181947, 119443.31099155913, 119136.4835993024, + 119120.75049926096, 119076.66646278914, 118780.961709992, + 118458.6866020232, 118216.79670549638, 118016.00767657139, + 117958.88424365873, 118128.7649998586, 118424.5883085699, + 118665.33952466479, 118716.0431420685, 118527.69822443782, + 117989.13801880727, 117086.55307606695, 116039.10218834235, + 114975.41320232175, 114032.19174939142, 113352.25827866899, + 112965.85036080045, 112803.18409512189, 112694.05745741651, + 112490.94119973872, 112025.5167360456, 111220.7940449975, + 110105.35083740862, 108790.73357920782, 107464.5611022039, + 106274.42533385092, 105372.9278020566, 104853.59393705656, + 104591.73414529383, 104476.61302380102, 104365.15530289595, + 104048.1676019254, 103425.11086448444, 102488.01017800909, + 101320.40525311229, 100025.48354316095, 98806.42652990938, + 97784.06937718295, 96983.60725182969, 96465.40066661988, + 96144.36528049779, 95863.02441060974, 95551.24727257965, + 95156.04212268523, 94653.8918276776, 94099.9401226489, 93583.18473078396, + 93196.06678790026, 92992.24411917134, 92964.31586390974, + 93110.27054630741, 93416.86633047317, 93798.21658616238, + 94367.02839685105, 95328.14757607451, 96846.64875221744 + ], + "flow:branch7_seg0:J11": [ + 3.2541458472428406, 4.58375692297481, 6.382066017321487, + 8.793023306428207, 11.779003605831724, 15.288828050513006, + 19.27047311787227, 23.330258457587, 27.092025372581226, + 30.399909811917276, 32.8951131068588, 34.28960788719288, + 34.712938468801696, 34.29039472133814, 33.09470943817552, + 31.461489601367802, 29.710317070063937, 27.973900575595316, + 26.35721915211059, 24.904696665124725, 23.583498111430057, + 22.27939679375846, 20.883056264718746, 19.417249765600957, + 17.88117496327039, 16.267241359282625, 14.706634811824467, + 13.292122569472625, 11.972250361435506, 10.734175171163958, + 9.578712914325862, 8.337345186403903, 6.893625221536453, + 5.3070397370992595, 3.5470394337312943, 1.6338066078283708, + -0.1737524332248753, -1.7417422321580638, -3.034126608118937, + -3.8575364148854696, -4.184374839226271, -4.17223403904928, + -3.8727498609981112, -3.3643020313794807, -2.8166293502173474, + -2.2998071013375445, -1.7897285416283033, -1.2805538519174013, + -0.754856581560192, -0.16169502110746084, 0.5086818559211851, + 1.2048092039094136, 1.8387011298693658, 2.3380506103181347, + 2.6357507027485747, 2.6662705364384545, 2.4588551449411957, + 2.09716806465182, 1.674258740227785, 1.3012551319769865, + 1.0657316030844601, 1.0046050367563806, 1.0865375117110263, + 1.2331580416165793, 1.3443811330746933, 1.3188727866098873, + 1.1014010906919873, 0.6909569087278278, 0.1509620159762973, + -0.4197325625261839, -0.9138764254149736, -1.2205240938010358, + -1.3040135288777777, -1.192902465229234, -0.9469510285449984, + -0.6754858226446808, -0.49323616747145704, -0.4788089362664108, + -0.6557579087060162, -0.9975242231908499, -1.429329998764566, + -1.8461789121525427, -2.1679498395524015, -2.337385632384824, + -2.330820734960735, -2.189667947575654, -1.9763235762852522, + -1.7481033738730023, -1.5519210080664194, -1.4056599963218608, + -1.2915938522650177, -1.165061421282276, -0.9764084832011648, + -0.6961813054765003, -0.3105656000306292, 0.1846470777046919, + 0.7659386775380784, 1.4292569825905996, 2.234191678528815, + 3.2541458472428406 + ], + "pressure:branch7_seg0:J11": [ + 96896.60944409386, 99040.31616856462, 102196.22091386744, + 106361.24400466714, 111259.71535280808, 116937.54459460829, + 123169.05230282033, 128809.56594750451, 133930.72729609127, + 138583.53963538655, 141508.0185470223, 143272.09280758264, + 144511.93916385155, 144725.1442970018, 144462.7657045599, + 144338.18704254678, 144370.13673369001, 144468.58358698932, + 144696.2384272474, 145036.68912485603, 145177.4048001745, + 144991.80384119696, 144466.87175750235, 143790.2140702007, + 142904.16517027805, 141805.6827282084, 141024.60950058795, + 140281.7037243919, 139324.18257281915, 138522.18286702855, + 137480.38226109796, 135817.29598822797, 133866.63056296413, + 131665.16775916613, 129002.34316995948, 126338.57670857795, + 124141.06876750116, 122154.50202510909, 120562.16940323658, + 119781.44231943802, 119301.28281702183, 118903.93101879738, + 118835.36951017435, 118742.80346715832, 118426.35871432051, + 118148.61163625559, 117944.02776078005, 117791.46221624575, + 117785.27707064456, 117991.15994248525, 118313.86100444519, + 118544.2319120691, 118612.33351315827, 118446.37367542143, + 117925.9168689606, 117075.92823700156, 116082.67902271502, + 115079.05210483693, 114175.32767628231, 113517.03794105296, + 113127.67672714453, 112923.2591996322, 112772.66190420008, + 112517.2610864872, 112018.26369365079, 111204.08789352895, + 110096.89004036009, 108821.94315451205, 107529.661277708, + 106366.63587343125, 105489.84653395605, 104954.97244779616, + 104654.81457796096, 104487.76268942922, 104324.30226328851, + 103966.02306860588, 103322.5035602326, 102399.5805456271, + 101259.13324274268, 100009.25541534628, 98830.75103075075, + 97833.00099655251, 97040.12180417482, 96508.25983632683, + 96151.43998426526, 95828.55265092252, 95487.18821994288, + 95073.80410322928, 94572.71637008154, 94033.56798542918, + 93540.29562750511, 93178.20809282693, 92988.32156887496, + 92965.69649771237, 93107.51405128186, 93406.30014930955, + 93788.70266129826, 94367.7083788769, 95351.9144033172, 96896.60944409386 + ], + "flow:J11:branch7_seg1": [ + 3.2541458472428406, 4.58375692297481, 6.382066017321487, + 8.793023306428207, 11.779003605831724, 15.288828050513006, + 19.27047311787227, 23.330258457587, 27.092025372581226, + 30.399909811917276, 32.8951131068588, 34.28960788719288, + 34.712938468801696, 34.29039472133814, 33.09470943817552, + 31.461489601367802, 29.710317070063937, 27.973900575595316, + 26.35721915211059, 24.904696665124725, 23.583498111430057, + 22.27939679375846, 20.883056264718746, 19.417249765600957, + 17.88117496327039, 16.267241359282625, 14.706634811824467, + 13.292122569472625, 11.972250361435506, 10.734175171163958, + 9.578712914325862, 8.337345186403903, 6.893625221536453, + 5.3070397370992595, 3.5470394337312943, 1.6338066078283708, + -0.1737524332248753, -1.7417422321580638, -3.034126608118937, + -3.8575364148854696, -4.184374839226271, -4.17223403904928, + -3.8727498609981112, -3.3643020313794807, -2.8166293502173474, + -2.2998071013375445, -1.7897285416283033, -1.2805538519174013, + -0.754856581560192, -0.16169502110746084, 0.5086818559211851, + 1.2048092039094136, 1.8387011298693658, 2.3380506103181347, + 2.6357507027485747, 2.6662705364384545, 2.4588551449411957, + 2.09716806465182, 1.674258740227785, 1.3012551319769865, + 1.0657316030844601, 1.0046050367563806, 1.0865375117110263, + 1.2331580416165793, 1.3443811330746933, 1.3188727866098873, + 1.1014010906919873, 0.6909569087278278, 0.1509620159762973, + -0.4197325625261839, -0.9138764254149736, -1.2205240938010358, + -1.3040135288777777, -1.192902465229234, -0.9469510285449984, + -0.6754858226446808, -0.49323616747145704, -0.4788089362664108, + -0.6557579087060162, -0.9975242231908499, -1.429329998764566, + -1.8461789121525427, -2.1679498395524015, -2.337385632384824, + -2.330820734960735, -2.189667947575654, -1.9763235762852522, + -1.7481033738730023, -1.5519210080664194, -1.4056599963218608, + -1.2915938522650177, -1.165061421282276, -0.9764084832011648, + -0.6961813054765003, -0.3105656000306292, 0.1846470777046919, + 0.7659386775380784, 1.4292569825905996, 2.234191678528815, + 3.2541458472428406 + ], + "pressure:J11:branch7_seg1": [ + 96896.60944409386, 99040.31616856462, 102196.22091386744, + 106361.24400466714, 111259.71535280808, 116937.54459460829, + 123169.05230282033, 128809.56594750451, 133930.72729609127, + 138583.53963538655, 141508.0185470223, 143272.09280758264, + 144511.93916385155, 144725.1442970018, 144462.7657045599, + 144338.18704254678, 144370.13673369001, 144468.58358698932, + 144696.2384272474, 145036.68912485603, 145177.4048001745, + 144991.80384119696, 144466.87175750235, 143790.2140702007, + 142904.16517027805, 141805.6827282084, 141024.60950058795, + 140281.7037243919, 139324.18257281915, 138522.18286702855, + 137480.38226109796, 135817.29598822797, 133866.63056296413, + 131665.16775916613, 129002.34316995948, 126338.57670857795, + 124141.06876750116, 122154.50202510909, 120562.16940323658, + 119781.44231943802, 119301.28281702183, 118903.93101879738, + 118835.36951017435, 118742.80346715832, 118426.35871432051, + 118148.61163625559, 117944.02776078005, 117791.46221624575, + 117785.27707064456, 117991.15994248525, 118313.86100444519, + 118544.2319120691, 118612.33351315827, 118446.37367542143, + 117925.9168689606, 117075.92823700156, 116082.67902271502, + 115079.05210483693, 114175.32767628231, 113517.03794105296, + 113127.67672714453, 112923.2591996322, 112772.66190420008, + 112517.2610864872, 112018.26369365079, 111204.08789352895, + 110096.89004036009, 108821.94315451205, 107529.661277708, + 106366.63587343125, 105489.84653395605, 104954.97244779616, + 104654.81457796096, 104487.76268942922, 104324.30226328851, + 103966.02306860588, 103322.5035602326, 102399.5805456271, + 101259.13324274268, 100009.25541534628, 98830.75103075075, + 97833.00099655251, 97040.12180417482, 96508.25983632683, + 96151.43998426526, 95828.55265092252, 95487.18821994288, + 95073.80410322928, 94572.71637008154, 94033.56798542918, + 93540.29562750511, 93178.20809282693, 92988.32156887496, + 92965.69649771237, 93107.51405128186, 93406.30014930955, + 93788.70266129826, 94367.7083788769, 95351.9144033172, 96896.60944409386 + ], + "flow:branch7_seg1:J12": [ + 3.252520716112364, 4.581302102959328, 6.378458912557818, + 8.788727490329066, 11.773965854860668, 15.283048399505734, + 19.264917827139474, 23.325171282357786, 27.08735614561353, + 30.396423565768938, 32.89305419404388, 34.28826930958197, + 34.71218058309349, 34.29056292881026, 33.09496911702814, + 31.461466333375295, 29.710307638054488, 27.97368192073012, + 26.356981349216266, 24.904426564084503, 23.583469567132976, + 22.2798251306508, 20.883549864273487, 19.41801229191062, + 17.882140817927358, 16.268048500921264, 14.707326291809885, + 13.292854077481541, 11.973067091949547, 10.734931326556715, + 9.57989652859517, 8.339202171297242, 6.895501180445796, 5.309301796495755, + 3.5498471384583667, 1.6360862117444925, -0.1718033825762498, + -1.7398594501948332, -3.033031971662423, -3.8570112828767233, + -4.183896952674905, -4.172052533520222, -3.8727260840813056, + -3.364087415731422, -2.8162944174747415, -2.299582255553589, + -1.7895511183299486, -1.2804349618649677, -0.7549612312514593, + -0.16194906608966472, 0.5083716812204971, 1.2046621693126311, + 1.8387574518676257, 2.3383197742427844, 2.6364410640157554, + 2.6671687740294083, 2.459808682611673, 2.098109718273055, + 1.6750034369923086, 1.3017554910606328, 1.0659788878204215, + 1.0047508823709617, 1.0867190033172005, 1.2334949951683207, + 1.3450194331817362, 1.3197834395567654, 1.1025680423856847, + 0.6921961303337648, 0.15213119010047968, -0.41869836007919226, + -0.9132229635841256, -1.2201466415331315, -1.303798011504663, + -1.1927820917554186, -0.9467203020447547, -0.6750157180229589, + -0.4924774219374979, -0.4778144852682091, -0.6546135533691249, + -0.996355153397855, -1.4282959933542878, -1.845331144254451, + -2.167326986007982, -2.3369912092494323, -2.3305160004511216, + -2.189361497425471, -1.9759684258390187, -1.7476622517253801, + -1.5514181980837825, -1.4051549416513838, -1.2911747375283416, + -1.1647997478331185, -0.9763025578731122, -0.6962381383208954, + -0.31077439004306245, 0.18434842590294348, 0.7655139745386834, + 1.4285601255205402, 2.233111541965074, 3.252520716112364 + ], + "pressure:branch7_seg1:J12": [ + 96598.30312051249, 98640.41483759858, 101648.17460891022, + 105646.22446349992, 110385.0712012784, 115907.37095881485, + 122012.12491752455, 127638.77771744257, 132806.333289006, + 137541.85767134812, 140672.6746142843, 142663.85206535575, + 144090.68311054428, 144503.08658488988, 144396.92767106497, + 144347.92497022907, 144408.52717117156, 144511.3998416385, + 144726.0024222841, 145043.86241119093, 145184.49037623193, + 145024.9325761834, 144538.09932734136, 143894.48358041022, + 143042.21107631832, 141975.32431418347, 141182.26050164207, + 140424.71643028816, 139472.3442697808, 138657.5470520853, + 137626.73156578423, 136021.08615512846, 134125.09735473624, + 131975.94074741364, 129380.25737153369, 126747.20360376038, + 124524.6818322415, 122501.42341882543, 120844.08992142914, + 119952.70662344535, 119381.20799404626, 118918.91273345046, + 118785.30182100774, 118658.05704495293, 118341.24591074021, + 118061.21353975439, 117850.94223066016, 117692.00013497876, + 117670.06386694954, 117850.32762169935, 118150.17530981054, + 118377.26834675026, 118460.09703527913, 118325.09595524747, + 117856.64230830762, 117066.15017031504, 116120.71387842965, + 115145.92595767228, 114248.98974668582, 113572.55519729664, + 113148.08015788523, 112906.84858334405, 112730.1878903517, + 112469.18529985528, 111989.31189657364, 111214.12068119337, + 110155.93685483605, 108923.67605479728, 107656.98445867907, + 106496.44781815515, 105593.91425578581, 105013.61368776366, + 104665.59100588218, 104458.80130468833, 104272.62841536192, + 103919.12684115025, 103304.45422895183, 102423.56487748248, + 101327.12873972078, 100112.22733953284, 98947.22700383453, + 97940.67454975139, 97123.63756872644, 96554.34208255098, + 96160.30170082622, 95812.74941290016, 95459.10669100359, + 95045.63993910042, 94552.81058493807, 94022.50720401327, + 93530.77944703538, 93158.3998161981, 92948.1751977345, 92899.37307859356, + 93012.32784813504, 93281.65004621155, 93640.52321912101, + 94189.08346046018, 95121.73837864122, 96598.30312051249 + ], + "flow:J12:branch7_seg2": [ + 3.252520716112364, 4.581302102959328, 6.378458912557818, + 8.788727490329066, 11.773965854860668, 15.283048399505734, + 19.264917827139474, 23.325171282357786, 27.08735614561353, + 30.396423565768938, 32.89305419404388, 34.28826930958197, + 34.71218058309349, 34.29056292881026, 33.09496911702814, + 31.461466333375295, 29.710307638054488, 27.97368192073012, + 26.356981349216266, 24.904426564084503, 23.583469567132976, + 22.2798251306508, 20.883549864273487, 19.41801229191062, + 17.882140817927358, 16.268048500921264, 14.707326291809885, + 13.292854077481541, 11.973067091949547, 10.734931326556715, + 9.57989652859517, 8.339202171297242, 6.895501180445796, 5.309301796495755, + 3.5498471384583667, 1.6360862117444925, -0.1718033825762498, + -1.7398594501948332, -3.033031971662423, -3.8570112828767233, + -4.183896952674905, -4.172052533520222, -3.8727260840813056, + -3.364087415731422, -2.8162944174747415, -2.299582255553589, + -1.7895511183299486, -1.2804349618649677, -0.7549612312514593, + -0.16194906608966472, 0.5083716812204971, 1.2046621693126311, + 1.8387574518676257, 2.3383197742427844, 2.6364410640157554, + 2.6671687740294083, 2.459808682611673, 2.098109718273055, + 1.6750034369923086, 1.3017554910606328, 1.0659788878204215, + 1.0047508823709617, 1.0867190033172005, 1.2334949951683207, + 1.3450194331817362, 1.3197834395567654, 1.1025680423856847, + 0.6921961303337648, 0.15213119010047968, -0.41869836007919226, + -0.9132229635841256, -1.2201466415331315, -1.303798011504663, + -1.1927820917554186, -0.9467203020447547, -0.6750157180229589, + -0.4924774219374979, -0.4778144852682091, -0.6546135533691249, + -0.996355153397855, -1.4282959933542878, -1.845331144254451, + -2.167326986007982, -2.3369912092494323, -2.3305160004511216, + -2.189361497425471, -1.9759684258390187, -1.7476622517253801, + -1.5514181980837825, -1.4051549416513838, -1.2911747375283416, + -1.1647997478331185, -0.9763025578731122, -0.6962381383208954, + -0.31077439004306245, 0.18434842590294348, 0.7655139745386834, + 1.4285601255205402, 2.233111541965074, 3.252520716112364 + ], + "pressure:J12:branch7_seg2": [ + 96598.30312051249, 98640.41483759858, 101648.17460891022, + 105646.22446349992, 110385.0712012784, 115907.37095881485, + 122012.12491752455, 127638.77771744257, 132806.333289006, + 137541.85767134812, 140672.6746142843, 142663.85206535575, + 144090.68311054428, 144503.08658488988, 144396.92767106497, + 144347.92497022907, 144408.52717117156, 144511.3998416385, + 144726.0024222841, 145043.86241119093, 145184.49037623193, + 145024.9325761834, 144538.09932734136, 143894.48358041022, + 143042.21107631832, 141975.32431418347, 141182.26050164207, + 140424.71643028816, 139472.3442697808, 138657.5470520853, + 137626.73156578423, 136021.08615512846, 134125.09735473624, + 131975.94074741364, 129380.25737153369, 126747.20360376038, + 124524.6818322415, 122501.42341882543, 120844.08992142914, + 119952.70662344535, 119381.20799404626, 118918.91273345046, + 118785.30182100774, 118658.05704495293, 118341.24591074021, + 118061.21353975439, 117850.94223066016, 117692.00013497876, + 117670.06386694954, 117850.32762169935, 118150.17530981054, + 118377.26834675026, 118460.09703527913, 118325.09595524747, + 117856.64230830762, 117066.15017031504, 116120.71387842965, + 115145.92595767228, 114248.98974668582, 113572.55519729664, + 113148.08015788523, 112906.84858334405, 112730.1878903517, + 112469.18529985528, 111989.31189657364, 111214.12068119337, + 110155.93685483605, 108923.67605479728, 107656.98445867907, + 106496.44781815515, 105593.91425578581, 105013.61368776366, + 104665.59100588218, 104458.80130468833, 104272.62841536192, + 103919.12684115025, 103304.45422895183, 102423.56487748248, + 101327.12873972078, 100112.22733953284, 98947.22700383453, + 97940.67454975139, 97123.63756872644, 96554.34208255098, + 96160.30170082622, 95812.74941290016, 95459.10669100359, + 95045.63993910042, 94552.81058493807, 94022.50720401327, + 93530.77944703538, 93158.3998161981, 92948.1751977345, 92899.37307859356, + 93012.32784813504, 93281.65004621155, 93640.52321912101, + 94189.08346046018, 95121.73837864122, 96598.30312051249 + ], + "flow:INFLOW:branch0_seg0": [ + 19.581907481595668, 29.24682998044782, 42.0511165296033, + 58.583913202644474, 78.95362616027712, 103.27506735565193, + 130.16534882450802, 158.11460426170575, 185.3564624676055, + 210.00675799120174, 230.14062159309847, 244.73105343201496, + 253.69338170314, 257.05601197452415, 256.0693925199267, + 251.86471784525148, 245.88851566046975, 239.12106476762335, + 232.10897405704137, 225.15125147491213, 217.97720402973337, + 210.1674463421351, 201.4946309392784, 191.82313530044465, + 181.19449872183276, 169.9852394452257, 158.72346366351152, + 147.6930079809729, 136.9482091445109, 126.56365701566217, + 116.06082531356147, 104.86525943054755, 92.70970076933371, + 79.3807344047527, 64.81272634444237, 49.86814034140978, 35.19454243721392, + 21.51179631610772, 9.992989822184512, 0.8867712885176026, + -5.537671779881001, -9.579657157216602, -11.611404933684915, + -12.33447052477908, -12.218625949917055, -11.640767443352093, + -10.689850735695753, -9.276334007322495, -7.253939643489095, + -4.5124157127967175, -1.0622631811875014, 2.740625109763227, + 6.476082901308106, 9.639835317912233, 11.730779557406226, + 12.519379517353505, 12.095924459442914, 10.775316065370106, + 9.110507086398105, 7.665149973221131, 6.854060102188092, 6.88444268118512, + 7.567583025205867, 8.528115822955554, 9.202847862573616, + 9.068039723252227, 7.86356755044207, 5.555421231360338, + 2.5134069022190055, -0.7866296297480672, -3.665410108802718, + -5.626432153743674, -6.491107894311172, -6.249539655106462, + -5.35236204167692, -4.319870419424456, -3.727209684989501, + -4.015479774824012, -5.297081449614054, -7.469070649799495, + -10.087968366633373, -12.675902678245876, -14.779047115069162, + -16.048740620275993, -16.433639588685313, -16.06971930508376, + -15.251965727850354, -14.292802363131837, -13.40752847300765, + -12.676279065948533, -11.988085430841524, -11.12210395441212, + -9.830647135308425, -7.950669625931317, -5.353410386770605, + -2.085489965433775, 1.8538463401322447, 6.520264580067509, + 12.319343064136449, 19.581907481595668 + ], + "pressure:INFLOW:branch0_seg0": [ + 99289.04240518558, 102230.89862156154, 106545.06930493927, + 111912.08868519882, 118023.8086789431, 124807.38239018325, + 131826.96353417807, 137494.5361386775, 142010.48715848348, + 145839.2805084215, 147025.25268720725, 146876.94522902658, + 146601.75021996355, 145095.26981786502, 143697.85144498982, + 142889.15220436614, 142670.23328974674, 142750.50265563477, + 142970.65453143537, 143532.37008490632, 143570.11695728256, + 143180.51038108265, 142383.35423162894, 141388.87360786242, + 140336.77947728918, 138990.89175513198, 138354.20601745058, + 137778.29478291387, 136806.2223419014, 136185.5262287783, + 135032.44764510292, 133008.53667778944, 130715.38012380351, + 128115.03617721665, 125048.7121424308, 122280.7013534513, + 120338.3105399996, 118738.41907497321, 117802.21875262432, + 117911.20360117465, 118237.46787526738, 118403.89594109816, + 118879.49402399528, 119099.14070845555, 118826.01447853596, + 118629.01121283513, 118491.5242413194, 118438.43354821486, + 118600.66065009375, 119013.31778803078, 119542.36616442064, + 119778.522168243, 119744.06620048748, 119328.38723984422, + 118379.3085416484, 117098.70933337428, 115717.67760524353, + 114522.3709630556, 113580.92372537986, 113074.40797163009, + 112975.62013619875, 113034.58964156799, 113089.1516315101, + 112845.64732335568, 112184.05283160352, 111057.29192113591, + 109560.99409805745, 107974.88310174154, 106492.83332340665, + 105337.91787629541, 104693.4307680509, 104513.74368889008, + 104596.98244151777, 104733.75089076714, 104728.96041434204, + 104325.35923821117, 103442.1692079762, 102196.69500810427, + 100717.02588091505, 99215.9828540519, 97955.43400361741, + 97046.93423934058, 96467.20980382699, 96236.01561898681, 96169.6847427391, + 96035.81784446226, 95787.69645010999, 95369.06005159026, + 94805.91933352438, 94202.1285320573, 93704.45639308062, 93433.04391460001, + 93401.8779998918, 93587.86868072052, 93948.47487575066, 94463.68387023623, + 95031.04770752905, 95833.98479151237, 97218.95336261258, 99289.04240518558 + ], + "flow:branch2_seg2:RCR_0": [ + 4.146197566111827, 5.78054545558274, 8.001054441554933, + 10.990589607989728, 14.676778917914707, 18.982860242578365, + 23.844480360254448, 28.732730826123927, 33.16885157091111, + 36.98818770490654, 39.74045466621714, 41.07669939778047, + 41.21694227853378, 40.35116074180716, 38.573867142985385, + 36.335051054576496, 34.04721058046348, 31.852946833560146, + 29.869864372815535, 28.132387960740203, 26.58212411538654, + 25.05763573249632, 23.408380024217198, 21.67550339146665, + 19.85768622329045, 17.943532447092185, 16.112551979388957, + 14.481669633973155, 12.9724392142787, 11.563531512048714, + 10.259573319019353, 8.833914969872065, 7.132793387433619, + 5.2559688543028615, 3.165368814267517, 0.8812842836436403, + -1.2393377363431723, -3.031725897882983, -4.4722565919830055, + -5.308283874474553, -5.519610513135064, -5.33595296189033, + -4.822409626397322, -4.0794537939071915, -3.330254134481651, + -2.6561465461899383, -2.010573261727958, -1.379975977210803, + -0.7384536820750247, -0.014599547887442254, 0.8031158486098693, + 1.6460430633501855, 2.397902836183999, 2.968611385800247, + 3.278859197915782, 3.2470453550350706, 2.9219025133215193, + 2.4199572792612987, 1.8619709740580634, 1.3907851254097539, + 1.1129990053760412, 1.0677742278707925, 1.2041708352428209, + 1.4136306763115905, 1.565035020232443, 1.528688374130653, + 1.2410791283230953, 0.7086398021403476, 0.02194988565098901, + -0.6865566367488688, -1.2813221546973879, -1.6210271517155788, + -1.6703603621455945, -1.4772906308568228, -1.1247350638909681, + -0.7584189117963672, -0.5252529668060489, -0.5203929902055714, + -0.7644663458424128, -1.2143384673487154, -1.7669309076900863, + -2.2834745288580796, -2.664203349531645, -2.841302755985234, + -2.7910279496061374, -2.575654849452047, -2.2807243645640196, + -1.9805287262450928, -1.733652895412772, -1.5588363939686087, + -1.4284236625641702, -1.2811473810646032, -1.0517108004456597, + -0.7045496862004635, -0.22505938374020282, 0.38960490232137746, + 1.104850415887952, 1.9141580977544503, 2.896841680509402, + 4.146197566111827 + ], + "pressure:branch2_seg2:RCR_0": [ + 94639.44354636031, 96004.18715667319, 98033.27813606353, + 100940.17459387387, 104715.67107330331, 109339.4739643146, + 114797.74751022019, 120644.08775979541, 126433.20422872975, + 131975.6651440223, 136810.66752956598, 140529.6434249714, + 143226.89501655314, 144991.00769257848, 145831.69247895633, + 146096.62497022757, 146135.23742887762, 146077.6841042491, + 146040.9651010095, 146073.8226150968, 146142.69542169137, + 146112.71201098806, 145846.58727015535, 145373.0121799634, + 144685.33285821887, 143767.45253517557, 142777.22914151032, + 141831.63048326282, 140874.66112023944, 139894.49723476917, + 138905.34637070986, 137706.50211091342, 136144.94656125666, + 134293.18080332637, 132104.02670720257, 129579.08208693551, + 127034.54335898338, 124637.73750835, 122435.30418382592, + 120687.4870553013, 119461.1919748477, 118591.07533774924, + 118045.24260305142, 117756.52820352338, 117535.3573676419, + 117305.14051588745, 117103.10622987039, 116939.5108539065, + 116836.64233396051, 116861.17375891254, 117030.14513080032, + 117287.39636558214, 117526.64807641314, 117657.31571738332, + 117592.27371292881, 117235.71217386024, 116606.34098287001, + 115789.86373060863, 114884.91846438043, 114019.64399856151, + 113299.76360012604, 112776.74135462807, 112421.32706313206, + 112146.93824037058, 111837.6976794427, 111368.88826843472, + 110667.19748937478, 109719.18784551654, 108590.14114560887, + 107391.12140266354, 106246.10077565008, 105295.04989129995, + 104590.60708938292, 104110.54308581186, 103796.5428773262, + 103525.87308670013, 103163.2288583765, 102609.96576847376, + 101829.39064411532, 100842.43185563329, 99728.73194911187, + 98609.27484785095, 97579.62204987711, 96712.94703049972, + 96047.12313480156, 95541.99726717318, 95130.63310312187, + 94750.08213776184, 94346.22581162938, 93897.2984216465, 93423.12657457028, + 92976.89098218846, 92620.32435974039, 92392.61432850754, + 92316.10004350406, 92403.23444637102, 92632.1857572018, 93003.73023504551, + 93597.46572279382, 94639.44354636031 + ], + "flow:branch4_seg2:RCR_1": [ + 6.0973904987979655, 10.20219660569426, 15.658402104184303, + 22.90002536196302, 32.032687070605796, 43.12677775557608, + 56.155060144603425, 70.57363353735836, 85.22646796121704, + 99.74086368844088, 113.2813667551271, 124.37860708938422, + 133.30139539368346, 139.78718436432635, 143.5896389803293, + 145.42106960671916, 145.65713843431035, 144.88813286129857, + 143.22930311784148, 141.0451824329117, 138.46686209026709, + 135.2108070996649, 131.33624540880717, 126.6910936504262, + 121.4817463992611, 115.65008087222604, 109.3694756619866, + 103.18965357302483, 96.83746531636885, 90.45274303635684, + 84.20743198480038, 77.63393521371898, 70.56146862677319, + 63.03521435133585, 54.956203166134536, 46.263212531204864, + 37.503309728718385, 29.0561315385787, 21.040603147973187, + 14.01387343168552, 8.293357619956394, 3.6652401017267056, + 0.10008137896073255, -2.370430301903879, -4.182078796513259, + -5.497617008468625, -6.28851367426038, -6.6515200291051455, + -6.542939218157856, -5.939298339907148, -4.778924628743014, + -3.1818130870312706, -1.4021094448722853, 0.4191497400106649, + 1.9947139916743897, 3.109954187214436, 3.686489172098571, + 3.789038658938478, 3.5916744841061736, 3.255447331850269, + 3.062625185028951, 3.1219547207687675, 3.4614182030291554, + 3.9908672722958234, 4.492382907142421, 4.766734565788836, + 4.602270785773453, 3.9301769987891397, 2.816242329670311, + 1.4065294504201176, -0.050150146386597066, -1.2756519431542022, + -2.100661114216079, -2.47901878135479, -2.471307101470239, + -2.2322352801493204, -2.033867522025386, -2.0805336077719074, + -2.497717476613927, -3.32721005373692, -4.465398625900988, + -5.72342646132313, -6.905078511851318, -7.858715300185251, + -8.435117553261232, -8.666108271563042, -8.63350106321104, + -8.429692705523534, -8.172547984592766, -7.9170413296682165, + -7.66872385658588, -7.34534026659903, -6.846624470546006, + -6.089588204874966, -5.014752932044401, -3.588670729626346, + -1.8109422587236075, 0.28547308603387794, 2.848943697918328, + 6.0973904987979655 + ], + "pressure:branch4_seg2:RCR_1": [ + 92169.36413080529, 92886.97105213773, 94029.0994524721, 95731.62651678454, + 98052.13543344795, 101037.99202491547, 104713.8042954773, + 108967.9572414965, 113514.49280883167, 118259.07098009139, + 122977.58254024351, 127264.24905562898, 131149.25185690608, + 134526.4750886637, 137291.95571065304, 139587.6439936199, + 141481.90119905153, 143105.06465635856, 144470.3754902403, + 145661.52378918268, 146703.50444697938, 147516.77278786007, + 148105.65307381362, 148419.52397702905, 148502.31817199197, + 148328.37454560248, 147934.47655533635, 147459.21804422652, + 146832.49045074268, 146089.50557264575, 145275.03353932788, + 144269.6429554182, 143022.7273057219, 141538.1180750887, + 139784.1129382423, 137735.10449908362, 135525.79104792135, + 133257.17107982413, 130965.9004323593, 128806.18247164902, + 126879.93300167113, 125151.98062633113, 123632.46859191754, + 122347.90897725243, 121200.98745629888, 120159.4990043115, + 119238.6989403788, 118421.98141757947, 117727.56746703187, + 117169.14425088721, 116771.41579616336, 116511.40081155367, + 116329.3547355489, 116190.54578661926, 116019.69292994602, + 115756.1754699198, 115370.94763082998, 114872.66233819196, + 114299.18593232644, 113688.18694891261, 113112.15337638976, + 112602.00045748631, 112169.73619106246, 111795.85123926403, + 111426.13061985254, 111007.38992180726, 110479.79902299143, + 109818.10908285827, 109031.06968747545, 108150.25394829546, + 107236.55432779735, 106362.63770298302, 105577.5368455802, + 104899.89593812246, 104321.21119094419, 103807.08497930958, + 103289.26074899056, 102713.17948997085, 102041.3837523636, + 101256.86717405941, 100380.0863113498, 99455.94615616894, + 98534.50101863313, 97657.05434515947, 96867.0017413091, 96162.18609269238, + 95526.70614179979, 94940.37994489845, 94374.84767134304, + 93816.31484683439, 93263.15207063647, 92736.87725014274, + 92265.09643108555, 91872.63957092323, 91579.2637753172, 91398.93931116605, + 91337.47562370023, 91391.43757986721, 91604.98862239558, 92169.36413080529 + ], + "flow:branch5_seg2:RCR_2": [ + 3.794582571933747, 5.265820506449388, 7.27324716792963, 9.979070827099143, + 13.2987511970316, 17.152199263053216, 21.475977042214815, + 25.763539861129306, 29.579752211077942, 32.79956984933867, + 35.01691325777762, 35.93569216777006, 35.802598158694096, + 34.8110446404375, 33.05407103241827, 30.958520969004585, 28.8978709727641, + 26.97925728737838, 25.29130974944164, 23.8469615254582, 22.57566665952543, + 21.316605419045217, 19.927731454315104, 18.45560616599623, + 16.901618433140307, 15.256714625892053, 13.695573431186634, + 12.323398885560787, 11.057229127544643, 9.876041393861643, + 8.782801357071776, 7.560228923809178, 6.070595289705551, + 4.419994091144322, 2.574995237700714, 0.5593481265595447, + -1.283559023367676, -2.808812348560663, -4.006924336256953, + -4.645192562641917, -4.721107439621325, -4.464937525497, + -3.9363196209296745, -3.2285674730268914, -2.5490027162075397, + -1.962352818708891, -1.4133285642113942, -0.8836521592490034, + -0.345333945820231, 0.2709886145498973, 0.9741557277072593, + 1.6964816865395793, 2.3282602383635274, 2.7883638108713886, + 3.0073384544160464, 2.914378766327031, 2.5637713303164706, + 2.069937279612725, 1.5458284139157847, 1.1220915087859138, + 0.8913436663900177, 0.8809712496000685, 1.03434044963109, + 1.244281529872084, 1.3872639319509705, 1.3452968102835057, + 1.0663822589443699, 0.5647536017262234, -0.06806805012295523, + -0.7055151551726955, -1.2228488154860855, -1.4931390252283065, + -1.4932924527340814, -1.2772679308667485, -0.9278131571785457, + -0.5836234610955011, -0.37919497570751853, -0.39621740146559614, + -0.6448878298255586, -1.0770207591986465, -1.590985813633281, + -2.056037797084981, -2.38324317583539, -2.5154059584175763, + -2.4375493433921243, -2.215086257958426, -1.9311302716851437, + -1.654482694892173, -1.4369520710739845, -1.291480204286361, + -1.1876723760841128, -1.0653992943678334, -0.8635008230699639, + -0.5512008757087775, -0.11788510426365648, 0.43653528453048457, + 1.0769539948852729, 1.7975069175625333, 2.6746304738742075, + 3.794582571933747 + ], + "pressure:branch5_seg2:RCR_2": [ + 94884.91875391192, 96314.8782225634, 98440.09813699983, + 101479.37841602268, 105403.1810554257, 110177.67391583098, + 115780.67910361633, 121716.33376596289, 127514.77830019097, + 132999.36086945777, 137690.09697093422, 141180.1528677411, + 143616.5862803627, 145117.27939447394, 145704.6668106804, + 145765.87846928285, 145671.03252212575, 145538.8940928167, + 145476.97258299275, 145519.8704952464, 145615.77787200833, + 145609.16328995067, 145350.1898242047, 144877.02563539165, + 144184.8235508123, 143257.74761860925, 142272.2583683571, + 141350.04274110464, 140420.90997150843, 139470.1848848861, + 138510.94488300616, 137321.177387925, 135741.59011913548, + 133862.79716474537, 131636.74301643335, 129070.55723993374, + 126514.66812619244, 124140.65442739413, 121985.98485765001, + 120325.95458270327, 119214.53121244042, 118455.85816936534, + 118013.69845265114, 117813.57610458408, 117650.40906288159, + 117451.05337275799, 117266.05056449215, 117111.45878667275, + 117014.76576331232, 117050.18651573354, 117234.0833099442, + 117502.4428736711, 117739.7921604143, 117851.7813034804, + 117749.75512194869, 117336.94650980974, 116643.40115589224, + 115768.36762760713, 114819.66597302232, 113933.62693738815, + 113217.87320114109, 112718.87552776842, 112395.91182836363, + 112149.5052397237, 111853.2848165099, 111375.7827257029, + 110645.35676902666, 109656.13872282718, 108485.98482824027, + 107258.12368616938, 106104.81139054892, 105171.91922275761, + 104506.1245570799, 104073.7505922277, 103805.74981807657, + 103566.4553351859, 103212.13201848778, 102643.33311061129, + 101829.65962007837, 100802.0249918612, 99652.25229068905, + 98512.47522587303, 97481.94561498026, 96633.50844867107, 96000.5316633234, + 95532.05771378597, 95152.05766475007, 94792.56172925622, + 94397.58905165055, 93947.84927556722, 93469.04278977084, 93021.2630393485, + 92671.1229138435, 92458.30009137264, 92403.57127320305, 92517.3388836744, + 92772.79933572882, 93170.32553640543, 93797.07959037724, 94884.91875391192 + ], + "flow:branch6_seg2:RCR_3": [ + 1.0415479123310178, 1.4150218202514386, 1.9356867171114138, + 2.637222305300072, 3.4696369315768134, 4.415616211999407, + 5.463067201226899, 6.448225278708105, 7.2800428844139455, + 7.978989769362071, 8.427175867449135, 8.563198122961616, + 8.523710535866778, 8.342438457658352, 8.021476422810178, + 7.693363249455084, 7.421145567415826, 7.195918633907246, + 7.017347238478855, 6.87703887706076, 6.747028410018505, 6.57507859500502, + 6.340086844908028, 6.072171506666178, 5.775520199796086, + 5.445885108216239, 5.1441643968414565, 4.892846753831863, + 4.640438135738765, 4.392522145182325, 4.154793994918442, + 3.8486956008564714, 3.4560727656426415, 3.0311140918975044, + 2.555574378670938, 2.0392744429171246, 1.5967907551908316, + 1.2405234931627853, 0.9509763343277171, 0.8038622799989666, + 0.773992795711857, 0.7803030327611711, 0.8293070199171032, + 0.9033580488557452, 0.9440740166487228, 0.9579329232851465, + 0.977053225641105, 1.00301532599067, 1.0452193756345474, + 1.1215827046461584, 1.2276239722545716, 1.3372406373467962, + 1.4180790901925469, 1.4567192606947563, 1.4379197660042657, + 1.3479330700938144, 1.2134919794638697, 1.0675517299835227, + 0.9360336166799555, 0.8457570504686288, 0.8122651458268983, + 0.8301177564560572, 0.8744832420973111, 0.9145964569666662, + 0.920038374161123, 0.8680000488602337, 0.7558849168546398, + 0.5976352259897847, 0.42468458958503696, 0.2693370848143799, + 0.15860577559713532, 0.11843279880057134, 0.1398148969873211, + 0.19932069079765805, 0.27312740641482386, 0.32515073845665454, + 0.3265903505312215, 0.26808839416724667, 0.1590206408128309, + 0.01850868168146808, -0.12281584869186324, -0.2333199809815434, + -0.299709047245991, -0.315880408473964, -0.2849429821065175, + -0.23301858364034964, -0.18132267742404973, -0.14231792184126832, + -0.123990687797068, -0.1222459893890945, -0.1237472263085344, + -0.11025634758375366, -0.06804548197945025, 0.005270716484858636, + 0.10863977593296967, 0.23995499004996135, 0.3868302794859478, + 0.5512523521732823, 0.7620801068955463, 1.0415479123310178 + ], + "pressure:branch6_seg2:RCR_3": [ + 95719.99104686073, 97397.47181922095, 99916.09016827795, + 103483.26885152026, 107886.3889500382, 113065.73435369432, + 118986.07981660326, 124836.0650840426, 130130.13012611399, + 134935.26816155057, 138620.25562743068, 140805.82365849166, + 142115.90552657767, 142684.60220944835, 142486.7283885743, + 142166.4351588047, 142047.2481560301, 142097.83889321532, + 142327.29545732395, 142704.63644351347, 143096.64723955002, + 143238.81182811008, 143012.6744147488, 142556.89405993363, + 141886.4552424171, 140972.7362456708, 140118.37807210162, + 139447.5588479145, 138709.58450641346, 137931.2247465063, + 137144.9146377652, 135952.14453752304, 134241.60742451373, + 132271.31571399985, 129941.73722671827, 127289.08349138836, + 124890.7046312067, 122830.31091029766, 121027.56268217962, + 119885.3522900925, 119311.78831118994, 118919.30340828051, + 118748.33730609617, 118720.36860194428, 118542.20028812718, + 118237.62697716524, 117964.90183669074, 117733.65661807643, + 117593.15806823056, 117638.90451125588, 117856.6169100908, + 118120.05139885118, 118264.10795964082, 118213.09438769656, + 117879.2322863669, 117178.08203145461, 116228.86627733133, + 115190.02757262386, 114191.52198083496, 113374.091417747, + 112827.56042127269, 112537.92276134201, 112390.67165863642, + 112234.65047806391, 111913.29360272635, 111301.39767274236, + 110371.73486228367, 109181.13384330113, 107879.38997284317, + 106628.49598443719, 105570.8537358462, 104850.29837573817, + 104438.20159579947, 104229.22964864482, 104110.69346789467, + 103901.52981914337, 103448.81371668066, 102692.36486126098, + 101665.64597351503, 100454.48851059187, 99207.89023568186, + 98087.84980755919, 97170.1563297274, 96496.45074609884, 96063.29183338501, + 95748.38020288842, 95447.88583126936, 95097.85976735373, + 94654.25797044687, 94132.84007761443, 93597.68750533207, + 93141.28779680635, 92837.51506540923, 92705.52002814067, 92747.1942504009, + 92958.74866773168, 93283.5626006885, 93734.65636519814, 94463.13291926403, + 95719.99104686073 + ], + "flow:branch7_seg2:RCR_4": [ + 3.241204093604291, 4.564037509970337, 6.353015649920394, + 8.758155627997242, 11.737959358749263, 15.241603528818553, + 19.224670663688766, 23.287853599494667, 27.05278353951561, + 30.36998381687255, 32.87656656498584, 34.27676537308015, + 34.70493102490818, 34.28986813433799, 33.09522358469299, + 31.45987943723158, 29.708964941797294, 27.97097747718876, + 26.354268045732667, 24.901556356748074, 23.582356391407526, + 22.281943207202527, 20.886292852245376, 19.42272264281936, + 17.88839290181061, 16.273292139303702, 14.711887887928842, + 13.297772947536783, 11.97861298190402, 10.740145853839524, + 9.588158973939969, 8.352300815884766, 6.9088319544554935, + 5.325431606827753, 3.570043849655253, 1.6526807933001948, + -0.15742181876356703, -1.725886638193136, -3.024462433053385, + -3.8524573495886605, -4.179748149456104, -4.1700339040907775, + -3.871865245754176, -3.36196564490793, -2.813366919571356, + -2.2974687063822246, -1.7877989722322563, -1.279131466924582, + -0.7552394812606261, -0.16334598260333721, 0.5065149152119545, + 1.2039018910929515, 1.8393729417920681, 2.3404115884994137, + 2.6414557613489005, 2.6737176922115027, 2.4667473441325365, + 2.1050483764465695, 1.680596040009081, 1.3056498017894689, + 1.0681164312083384, 1.006137769281448, 1.0883420620929822, + 1.2361718040573366, 1.349791022202963, 1.326481623942378, + 1.1110837789153298, 0.7012853733204331, 0.16077524959299966, + -0.4109187650455665, -0.9081020035823298, -1.2169622261224624, + -1.3017804779088076, -1.191470603114712, -0.9446743983186668, + -0.6713320616018683, -0.4867696094696311, -0.47045769370850377, + -0.6461567348783949, -0.9876991363197157, -1.4205280389894646, + -1.8388272103788628, -2.162412869932357, -2.333654949870306, + -2.3278613356696054, -2.186710684245982, -1.9730148526898599, + -1.7441253076461873, -1.5474606791102985, -1.4011887189075802, + -1.2878092046788874, -1.1625358993008965, -0.9751635968898603, + -0.6962498899600463, -0.3119063076154847, 0.18255481736033674, + 0.7627705665626618, 1.4238803820474413, 2.2256930645000095, + 3.241204093604291 + ], + "pressure:branch7_seg2:RCR_4": [ + 94215.84288090184, 95441.4229694233, 97275.51695643218, 99917.71945294578, + 103377.06453498383, 107647.71840135875, 112726.83847957081, + 118232.84522970808, 123767.12388156996, 129142.33361030695, + 133936.28515548905, 137760.12254592992, 140658.29704498776, + 142685.7976423399, 143835.481617432, 144399.60196834567, + 144687.35861842526, 144826.8733350482, 144935.35785290762, + 145069.59729930523, 145213.21865919215, 145256.422102784, + 145079.9436409005, 144704.6282742268, 144122.39947542342, + 143317.3327296704, 142424.40821221465, 141549.8686700868, + 140652.3122863557, 139723.8197971107, 138779.6313769478, + 137647.41898014233, 136187.29557360802, 134454.02415858657, + 132402.6344314888, 130028.05329586187, 127602.59023869946, + 125280.45518037053, 123112.71761655604, 121335.84107123206, + 120024.90209191763, 119049.66284614553, 118386.56706418819, + 117979.9540360569, 117664.15410303624, 117365.1571067409, + 117108.03617646288, 116897.64661980703, 116750.62736130832, + 116724.0998617007, 116834.64208405331, 117035.67403832967, + 117234.09051377326, 117347.2013723813, 117293.65569030639, + 116982.50507662179, 116421.31060101428, 115679.04246117026, + 114840.13673817989, 114018.50923664075, 113312.25188255504, + 112774.33237111043, 112386.96899249697, 112079.41428680789, + 111751.31706395742, 111290.38135819527, 110625.85033794973, + 109738.24536639308, 108678.28233212724, 107540.43806484179, + 106434.39790015484, 105488.0067346748, 104756.14919557185, + 104227.78561883018, 103857.68720423082, 103541.03548812165, + 103157.3462667502, 102614.0729150686, 101871.0680288367, + 100939.28698543856, 99883.32460584208, 98807.89466315621, + 97799.85131120747, 96928.75559115714, 96234.50460289695, + 95688.48263310421, 95235.53881405678, 94820.89409065705, + 94395.25222299091, 93936.17299308006, 93457.57103041599, 93003.9884995209, + 92629.77647304958, 92371.63234741145, 92252.17439674618, + 92285.35911949442, 92454.8312862454, 92762.16918295901, 93277.07483755067, + 94215.84288090184 + ] + }, + "dy": { + "flow:branch0_seg0:J0": [ + 820.7215490613082, 1089.5706677150113, 1478.4097978085879, + 1862.4285377017757, 2276.1614273865616, 2636.8095684323357, + 2877.526149067736, 2905.9333932712216, 2685.3355532785718, + 2406.6372680727254, 1829.7065422206892, 1189.2487836086316, + 678.8473844617928, 75.0772735171606, -295.59662889178844, + -562.5060675982423, -676.4827947193329, -699.8774926969703, + -748.1827976750751, -682.1524349947059, -754.2866545802742, + -831.0494157918466, -925.1386131324506, -1055.283785500705, + -1098.925135134438, -1191.9053331841642, -1146.7505511382524, + -1091.5505179947916, -1100.4946144560836, -1030.3188644866468, + -1079.5729121433203, -1183.0072896701765, -1282.550485391545, + -1420.5775097911744, -1533.7334169791714, -1550.6242556062277, + -1469.130777358387, -1329.1335882329674, -1091.5690812835644, + -801.8424479111313, -518.5570406786147, -315.123495456129, + -124.35685262513643, -2.6899920100854904, 30.337164566123537, + 80.4044227578722, 114.44640696934641, 165.81038953352038, + 236.5492046626251, 311.86409896006677, 391.86713269347166, + 396.44513054289587, 373.1747872995751, 294.64358213522763, + 154.6072085071777, 22.749062975777466, -108.3209498279736, + -167.58700820460209, -181.72147651326299, -135.35366175409845, + -41.01185392095958, 37.35471143500617, 104.87268231102173, + 103.20840468959244, 49.27804809620562, -53.06924879494892, + -182.1083207849199, -281.1266853074404, -345.72763744172704, + -342.66132503815527, -265.4283636224716, -154.4614628701448, + -27.915227921187373, 69.83155759412185, 120.38394534569649, + 108.11194868001309, 29.630899519405784, -71.1155641762674, + -181.77531446252104, -260.2558773221472, -285.9852930241166, + -257.1074752050386, -185.45597209899748, -88.79203095172922, + 6.296774450034815, 68.1274808709373, 101.08697269830978, + 101.04821591231762, 84.10266168623959, 66.25832617923913, + 67.76845035328012, 100.30859573287708, 153.06402418839153, + 223.47870120942787, 296.44960872192047, 367.1756766898289, + 432.774052824912, 507.5477770781599, 643.7412655145386, 820.7215490613082 + ], + "pressure:branch0_seg0:J0": [ + 282654.5108816577, 309175.5177247969, 447386.19955476903, + 518739.6605798818, 591952.7129886831, 681052.9066334267, + 615313.5218778573, 534139.2578071905, 478937.608070944, 317379.9588129607, + 140708.83260450335, 64053.60163882457, 17448.724291169176, + -86722.47307238543, -65087.10356735015, -9867.661330186995, + -3523.6218115276474, 28327.073981875084, 33828.96749137115, + 35524.533816639705, 215.97733678926218, -62321.85361982361, + -62455.681693142455, -93310.89907249196, -117659.94635060965, + -87639.40831777733, -67491.11599212087, -74789.95869891442, + -86996.6006052843, -78362.09948045382, -138643.4485542102, + -221858.7670403141, -218270.98159995835, -262851.08391698083, + -322070.0372757088, -240900.3941966527, -194459.43337961205, + -190336.85744071746, -78888.42709742587, -18290.308665842032, + -25755.887423945805, 3133.149720774186, 16871.458767567095, + -19706.66303535631, -37231.582840846364, -23038.12121561766, + -17323.884903196154, -10286.167455368151, 19673.761934466762, + 35691.46774864221, 37784.43962508979, 12915.493132373707, + -15315.43854555964, -43412.01348111442, -96293.68521907936, + -116217.03036902583, -116042.7537813435, -107430.34354095146, + -76904.61449206057, -43273.6247943589, -12536.450689377858, + -3605.1438949975827, -14087.639993866305, -38674.82033562142, + -79690.58285938588, -114664.50089150945, -142065.0457025937, + -145918.67659339312, -129713.41376844227, -106176.07073444972, + -56006.80233190021, -21966.701266488075, -8240.359036545457, + -680.0411203989454, -22163.501580139662, -57436.558483145855, + -94797.91396285317, -123645.42429328691, -136914.17087360882, + -135072.40360506036, -111026.38497128325, -84065.98336675022, + -55568.38500044924, -27592.65621269479, -21934.763912337174, + -26623.267545126724, -36494.72715261804, -49519.65867081749, + -57801.17549910452, -56682.282495355415, -43556.27830582518, + -22152.47555859287, -2879.9982715963724, 15802.724832233685, + 33484.715883323974, 40605.132288222754, 54440.583208953445, + 87944.9733807003, 137864.09172887003, 282654.5108816577 + ], + "flow:J0:branch1_seg0": [ + 264.8641243061731, 355.75795568180604, 484.97103445361415, + 624.9179065621718, 744.5448772042132, 861.4859484624749, + 928.5761802245522, 884.5179165811094, 785.3120075016556, + 644.6564214485787, 405.32833897231933, 155.0456881185963, + -39.758890722230404, -230.04776733110336, -363.5051438648689, + -411.36954675189844, -410.27709052475467, -386.7379247263073, + -348.24377924524276, -306.1611024330951, -288.2425451077311, + -300.64885151447186, -321.55392657776065, -336.1520253081189, + -353.05668660217196, -360.7710515826823, -329.3664728064149, + -296.8409229516823, -282.25294318432964, -257.64779910787564, + -256.91668220715496, -298.66861932709844, -339.3711126707126, + -373.33295497907415, -418.4578079710174, -422.10874611288176, + -372.25767250113915, -315.65419121253643, -227.43962188742995, + -106.98568445859522, -11.263724923930466, 52.48520728646596, + 111.40486976206772, 134.9285663192496, 126.65874844350897, + 119.54837021245379, 117.45763285779546, 116.73516334678662, + 126.41974942313881, 144.44509049456002, 157.72186459175762, + 151.42581055925137, 126.90703423347405, 87.53117185393863, + 30.26684063864819, -30.694076583698283, -75.1294282887044, + -97.82959241914519, -96.4153528047093, -70.60433222257757, + -30.84070805819064, 8.268531402020592, 32.40470869566469, + 34.60869419717752, 12.151631001895051, -29.283153843486975, + -75.89027066272368, -114.35837381600196, -131.48972669318917, + -124.33263944938321, -90.10582048003957, -38.1472651337127, + 10.896478393736423, 49.607492429618326, 67.0354760101143, + 56.43005272793414, 23.03598034913212, -21.81297482107907, + -64.14622334695055, -94.65016917037515, -101.07377160720277, + -84.98949032010498, -54.301538461009436, -13.401716764919104, + 23.725996588521422, 46.293210519404866, 54.676071352198385, + 50.60341430354578, 38.834298417922895, 27.712486116328577, + 25.06008468518361, 34.55419251936648, 53.606049581232185, + 76.68021267945512, 101.91905110072842, 124.70541698461163, + 141.73458715558144, 164.37898556031865, 207.32562973222585, + 264.8641243061731 + ], + "pressure:J0:branch1_seg0": [ + 282654.5108816577, 309175.5177247969, 447386.19955476903, + 518739.6605798818, 591952.7129886831, 681052.9066334267, + 615313.5218778573, 534139.2578071905, 478937.608070944, 317379.9588129607, + 140708.83260450335, 64053.60163882457, 17448.724291169176, + -86722.47307238543, -65087.10356735015, -9867.661330186995, + -3523.6218115276474, 28327.073981875084, 33828.96749137115, + 35524.533816639705, 215.97733678926218, -62321.85361982361, + -62455.681693142455, -93310.89907249196, -117659.94635060965, + -87639.40831777733, -67491.11599212087, -74789.95869891442, + -86996.6006052843, -78362.09948045382, -138643.4485542102, + -221858.7670403141, -218270.98159995835, -262851.08391698083, + -322070.0372757088, -240900.3941966527, -194459.43337961205, + -190336.85744071746, -78888.42709742587, -18290.308665842032, + -25755.887423945805, 3133.149720774186, 16871.458767567095, + -19706.66303535631, -37231.582840846364, -23038.12121561766, + -17323.884903196154, -10286.167455368151, 19673.761934466762, + 35691.46774864221, 37784.43962508979, 12915.493132373707, + -15315.43854555964, -43412.01348111442, -96293.68521907936, + -116217.03036902583, -116042.7537813435, -107430.34354095146, + -76904.61449206057, -43273.6247943589, -12536.450689377858, + -3605.1438949975827, -14087.639993866305, -38674.82033562142, + -79690.58285938588, -114664.50089150945, -142065.0457025937, + -145918.67659339312, -129713.41376844227, -106176.07073444972, + -56006.80233190021, -21966.701266488075, -8240.359036545457, + -680.0411203989454, -22163.501580139662, -57436.558483145855, + -94797.91396285317, -123645.42429328691, -136914.17087360882, + -135072.40360506036, -111026.38497128325, -84065.98336675022, + -55568.38500044924, -27592.65621269479, -21934.763912337174, + -26623.267545126724, -36494.72715261804, -49519.65867081749, + -57801.17549910452, -56682.282495355415, -43556.27830582518, + -22152.47555859287, -2879.9982715963724, 15802.724832233685, + 33484.715883323974, 40605.132288222754, 54440.583208953445, + 87944.9733807003, 137864.09172887003, 282654.5108816577 + ], + "flow:J0:branch3_seg0": [ + 424.3797912917064, 555.7696152699405, 749.7895629557302, + 924.5323323668594, 1162.2867661497335, 1351.5629578080682, + 1498.9433395653184, 1603.8839429131185, 1540.4999976981865, + 1478.9245477857773, 1267.383810636796, 1002.3587180252833, + 778.2049200924896, 452.6196925770632, 272.0739349400208, + 64.28891839036329, -61.87977055861058, -128.46618345555638, + -239.6971390826705, -239.46718395260078, -338.25776607106945, + -394.584513946617, -455.85675632163606, -563.6475761848418, + -581.502636572934, -663.5900817784768, -667.5780416918487, + -661.8611179349217, -691.8150775768577, -658.2880417182246, + -706.6969172945827, -744.209664957436, -781.5199827413749, + -868.5446999338055, -913.855132524859, -927.9840806269399, + -925.3841496100699, -872.5208990777204, -769.4492336322829, + -661.8937751404617, -520.073784534329, -408.3384470042393, + -302.098564966161, -210.74954175641116, -160.39074312316157, + -96.83806661156046, -58.122327703434806, -4.893517030902874, + 51.314622414343965, 99.24659979923834, 159.65164370383897, + 174.95177957419546, 189.95986017626214, 171.84352951838238, + 118.65983474469441, 78.27972262894207, 12.002132539061307, + -15.928141899491639, -35.46874581613141, -31.054550029627748, + 1.357309565283045, 20.176006419661604, 52.27816397447858, + 49.15428845083911, 31.29112751699843, -6.805914312446811, + -65.0210667691815, -106.79415481743453, -147.58258874329394, + -157.81017093478113, -134.741175017642, -103.80262895903786, + -51.25730160112355, -10.626003646487462, 15.97064054342796, + 22.57278397745182, -2.9884490739847682, -34.70289565963469, + -81.42925481383517, -115.15525295714558, -133.41845508548337, + -131.17533678207866, -107.65931205552334, -73.64089894660886, + -34.36474406310222, -5.143942912598905, 16.942523813543147, + 24.833558310249863, 26.993239477286544, 26.508950734581525, + 31.867151933021656, 49.49070021735946, 72.88335360525268, + 108.33796268983842, 143.34352800974017, 180.42693660965642, + 221.27145669364833, 262.58531669073244, 333.94742559113735, + 424.3797912917064 + ], + "pressure:J0:branch3_seg0": [ + 282654.5108816577, 309175.5177247969, 447386.19955476903, + 518739.6605798818, 591952.7129886831, 681052.9066334267, + 615313.5218778573, 534139.2578071905, 478937.608070944, 317379.9588129607, + 140708.83260450335, 64053.60163882457, 17448.724291169176, + -86722.47307238543, -65087.10356735015, -9867.661330186995, + -3523.6218115276474, 28327.073981875084, 33828.96749137115, + 35524.533816639705, 215.97733678926218, -62321.85361982361, + -62455.681693142455, -93310.89907249196, -117659.94635060965, + -87639.40831777733, -67491.11599212087, -74789.95869891442, + -86996.6006052843, -78362.09948045382, -138643.4485542102, + -221858.7670403141, -218270.98159995835, -262851.08391698083, + -322070.0372757088, -240900.3941966527, -194459.43337961205, + -190336.85744071746, -78888.42709742587, -18290.308665842032, + -25755.887423945805, 3133.149720774186, 16871.458767567095, + -19706.66303535631, -37231.582840846364, -23038.12121561766, + -17323.884903196154, -10286.167455368151, 19673.761934466762, + 35691.46774864221, 37784.43962508979, 12915.493132373707, + -15315.43854555964, -43412.01348111442, -96293.68521907936, + -116217.03036902583, -116042.7537813435, -107430.34354095146, + -76904.61449206057, -43273.6247943589, -12536.450689377858, + -3605.1438949975827, -14087.639993866305, -38674.82033562142, + -79690.58285938588, -114664.50089150945, -142065.0457025937, + -145918.67659339312, -129713.41376844227, -106176.07073444972, + -56006.80233190021, -21966.701266488075, -8240.359036545457, + -680.0411203989454, -22163.501580139662, -57436.558483145855, + -94797.91396285317, -123645.42429328691, -136914.17087360882, + -135072.40360506036, -111026.38497128325, -84065.98336675022, + -55568.38500044924, -27592.65621269479, -21934.763912337174, + -26623.267545126724, -36494.72715261804, -49519.65867081749, + -57801.17549910452, -56682.282495355415, -43556.27830582518, + -22152.47555859287, -2879.9982715963724, 15802.724832233685, + 33484.715883323974, 40605.132288222754, 54440.583208953445, + 87944.9733807003, 137864.09172887003, 282654.5108816577 + ], + "flow:J0:branch5_seg0": [ + 131.47763346343095, 178.043096763257, 243.6492003992269, + 312.9782987727676, 369.32978403260756, 423.7606621617878, + 450.0066292778951, 417.5315337769879, 359.52354807865856, + 283.0562988383611, 156.99439261147194, 31.844377464768876, + -59.59864490844782, -147.49465172881906, -204.16541996694409, + -215.42543923679406, -204.3259336358393, -184.67338451513294, + -160.24187934722593, -136.52414860904298, -127.78634340156887, + -135.81605033077824, -147.7279302330984, -155.48418400772283, + -164.36581195937077, -167.54419982299277, -149.80603663993244, + -132.8484771081664, -126.42659369490181, -114.38302366054454, + -115.95931264157946, -140.12900538563954, -161.65938997948035, + -178.69985487828285, -201.42047648330944, -200.53142886639023, + -171.4889552471886, -140.95849794270143, -94.68022576384682, + -32.96298831207632, 12.780468779644213, 40.72974426164076, + 66.336842578956, 73.13098342707725, 64.06915924577727, 57.69411915697625, + 55.11110181498937, 53.968743217632806, 58.81483282514149, + 68.17240866626867, 74.49362439787566, 70.06754040944931, + 56.30789288983984, 35.26888076290392, 5.680533123836589, + -24.8365830694668, -45.193654078329956, -53.82927388596541, + -49.83737789242266, -33.6947795018917, -11.528455428051293, + 8.91017361332352, 20.18980964088016, 19.445422041577505, + 5.835289577309842, -16.98018063901364, -41.19698335301559, + -59.9741566740074, -66.65532200524358, -60.518514653990906, + -40.58136812479003, -12.511568777395462, 12.445595286200605, + 30.85006881099028, 37.37782879215436, 29.10911197462637, + 9.583368244259137, -14.59969369555287, -36.19983630173537, + -50.45045519462567, -51.49306633143026, -40.942648102858726, + -23.495121582467252, -1.749415240203411, 16.93552192461963, + 26.978213264134865, 29.468377532566052, 25.6112432985234, + 18.275123791030573, 12.036889328332022, 10.841213735077135, + 16.263702996150755, 26.57462100190659, 38.46052584013514, + 51.187029611449866, 62.04332309556056, 69.76800897568191, + 80.58347482710737, 102.46821019117186, 131.47763346343095 + ], + "pressure:J0:branch5_seg0": [ + 282654.5108816577, 309175.5177247969, 447386.19955476903, + 518739.6605798818, 591952.7129886831, 681052.9066334267, + 615313.5218778573, 534139.2578071905, 478937.608070944, 317379.9588129607, + 140708.83260450335, 64053.60163882457, 17448.724291169176, + -86722.47307238543, -65087.10356735015, -9867.661330186995, + -3523.6218115276474, 28327.073981875084, 33828.96749137115, + 35524.533816639705, 215.97733678926218, -62321.85361982361, + -62455.681693142455, -93310.89907249196, -117659.94635060965, + -87639.40831777733, -67491.11599212087, -74789.95869891442, + -86996.6006052843, -78362.09948045382, -138643.4485542102, + -221858.7670403141, -218270.98159995835, -262851.08391698083, + -322070.0372757088, -240900.3941966527, -194459.43337961205, + -190336.85744071746, -78888.42709742587, -18290.308665842032, + -25755.887423945805, 3133.149720774186, 16871.458767567095, + -19706.66303535631, -37231.582840846364, -23038.12121561766, + -17323.884903196154, -10286.167455368151, 19673.761934466762, + 35691.46774864221, 37784.43962508979, 12915.493132373707, + -15315.43854555964, -43412.01348111442, -96293.68521907936, + -116217.03036902583, -116042.7537813435, -107430.34354095146, + -76904.61449206057, -43273.6247943589, -12536.450689377858, + -3605.1438949975827, -14087.639993866305, -38674.82033562142, + -79690.58285938588, -114664.50089150945, -142065.0457025937, + -145918.67659339312, -129713.41376844227, -106176.07073444972, + -56006.80233190021, -21966.701266488075, -8240.359036545457, + -680.0411203989454, -22163.501580139662, -57436.558483145855, + -94797.91396285317, -123645.42429328691, -136914.17087360882, + -135072.40360506036, -111026.38497128325, -84065.98336675022, + -55568.38500044924, -27592.65621269479, -21934.763912337174, + -26623.267545126724, -36494.72715261804, -49519.65867081749, + -57801.17549910452, -56682.282495355415, -43556.27830582518, + -22152.47555859287, -2879.9982715963724, 15802.724832233685, + 33484.715883323974, 40605.132288222754, 54440.583208953445, + 87944.9733807003, 137864.09172887003, 282654.5108816577 + ], + "flow:branch1_seg0:J1": [ + 263.6046593293569, 352.8946190441882, 482.24998695487784, + 622.5015962102576, 743.8735564183102, 858.2813657357467, + 929.5546241962787, 885.2965388509336, 785.1362150581754, + 649.9507875358635, 406.7724382266251, 155.31040874170455, + -36.62770958085748, -229.69278227426122, -364.34680187802047, + -412.40921626835114, -410.8177468636478, -387.150881341859, + -348.6697672793689, -305.2894550000624, -287.67846969245585, + -299.3518288411512, -320.7215359050253, -335.96539917203694, + -351.6868148107066, -361.7352743043886, -329.03628743594066, + -295.9471307345354, -283.7177395087194, -256.7258687822411, + -255.31498598576292, -299.43652217819596, -338.9667324968837, + -372.8218952271968, -418.9714871888002, -423.87435119396525, + -373.2345393825156, -315.5885298157554, -229.54016966487717, + -107.08770234405308, -11.03663865516151, 51.93609843775966, + 111.67282124994736, 135.89422261086875, 126.37043630226745, + 119.40935792707545, 117.37722311242048, 116.47244474009742, + 125.97918104947448, 144.227275541919, 158.40749826300052, + 151.91850916096095, 127.51605527190208, 88.48116943425846, + 30.703783317707416, -30.228621819100592, -75.27855624363931, + -97.99058001855765, -97.0179620772916, -71.33002052131528, + -30.975534070324898, 8.095341984954963, 32.91033727062913, + 35.31009149976795, 12.749786990654492, -28.497720650413115, + -76.01424753499425, -114.33297129809472, -132.01786278154216, + -125.25269131173543, -90.87005394069055, -38.86382065201128, + 10.810220669181144, 49.621582216152845, 67.65015748579093, + 57.10782388399628, 23.521895734257804, -21.356228164030288, + -64.01337578042553, -94.90832559859842, -101.50822275566348, + -85.43165760450121, -55.12857720925694, -13.722744150699263, + 23.78216289941763, 46.50980453155607, 54.933998498459204, + 50.84660914895303, 38.92347208742396, 27.56838568097989, + 24.713133884100202, 34.15245551803462, 53.09884922157898, + 76.49925667882015, 101.33605321266168, 124.62558278800452, + 141.10184699183782, 163.6318566752133, 206.5169173736514, + 263.6046593293569 + ], + "pressure:branch1_seg0:J1": [ + 273064.61454273947, 291588.94703517517, 426429.5561692136, + 498219.10878435045, 576109.621517616, 660599.8292624658, 613826.217226253, + 544739.6577708155, 492950.9082422998, 345183.3949299639, + 176770.80463603884, 97744.82281947872, 43557.67363853189, + -60377.88906393317, -52049.63400212639, -7743.316687483984, + -4338.321210212171, 23743.34561473294, 28118.222216834514, + 30960.27447683479, -69.0999896210557, -57612.11815633734, + -60155.813574836546, -90758.15822078868, -113554.36062773879, + -89512.6782667584, -72338.05914054962, -77966.00116180202, + -89112.07348088348, -80996.8655987764, -135152.52016498617, + -214253.86991122793, -212893.07323586856, -257042.78675138723, + -315711.2864926908, -245152.9652138208, -203001.37462929642, + -197232.72046996737, -96613.17191260454, -34232.46491099694, + -36512.058778698774, -5661.5379777187245, 9555.185226526874, + -19956.75753767941, -35772.23119833177, -22720.31298697104, + -17266.444310894407, -10699.786490987703, 17024.7942912827, + 32950.09065027775, 36868.016349320525, 15036.079124069505, + -10829.339230341391, -36631.752762779295, -87296.93868296551, + -107859.10437541077, -111269.64765371989, -105435.53158059416, + -78880.71186781995, -48344.97273516139, -18392.721527565845, + -8768.15738351842, -15909.418883195262, -37331.79790102896, + -75032.39127525773, -107530.13402622275, -135889.1870143666, + -141122.84417670465, -128999.09263571251, -109009.50339916018, + -62405.07766743018, -30063.558700932997, -14232.26411480538, + -5515.638474376154, -22658.14957880439, -54126.88609702007, + -88993.50667790222, -116793.1154350175, -131473.66181461737, + -131828.19789010592, -111803.40048833379, -87492.81989192122, + -60851.77326386761, -33664.32794542026, -26374.866175858562, + -28779.222962564327, -36841.08881708043, -48287.673618452915, + -55911.9600078126, -55546.47827136155, -44078.272558225464, + -24354.603489750945, -6288.613688959481, 12484.920108646504, + 29272.111183597015, 38007.948369499834, 51422.88790275117, + 83763.26761538681, 129779.71511095844, 273064.61454273947 + ], + "flow:J1:branch2_seg0": [ + 145.61169813950264, 195.64310208275361, 267.4934915282555, + 345.12421324127325, 410.7580839188886, 473.0929802832994, + 509.49957177306743, 481.1517100650466, 422.47818773761475, + 344.34934772084915, 207.52414491093364, 67.08725137150985, + -37.37448122195873, -142.4319247789455, -213.25083294237123, + -235.73639004139466, -230.75858812813547, -214.54059153139966, + -190.87223729520915, -165.46555011482263, -155.2406751660505, + -162.00593597100286, -173.92179482818656, -182.24434258728857, + -190.87878895751982, -195.85125514389117, -176.87430395029696, + -158.08281704062605, -151.21482293224878, -136.33339137889106, + -136.1149240442255, -161.41272653006354, -183.78152042275374, + -202.488147023098, -227.9829006648249, -229.63168101725395, + -200.0644525421823, -167.36246331235822, -118.48279723937011, + -50.2986884312124, 2.4612615736531307, 35.918097592114144, + 67.78359690526162, 79.2355948362076, 72.23095495351768, 67.11809087118311, + 65.26765445767496, 64.24948238017421, 69.37795192554698, + 79.33926719915279, 86.93095037288276, 82.7332018875713, 68.5240162849765, + 46.290725113476526, 13.762106152923684, -20.082780613527778, + -44.5546468889313, -56.202224543166984, -54.52730528098703, + -39.123472964989105, -15.925357934907607, 6.112975797394483, + 19.63713380879139, 20.34798916316263, 7.060345312204039, + -16.585670592666396, -43.18531587944064, -64.33787429145309, + -73.44583094937612, -68.75505726232439, -48.71907044409475, + -19.03649175240358, 8.60760702459754, 29.937442530456746, + 39.131042698048326, 32.256491605199095, 12.687420097399512, + -12.948430755531014, -36.70989973478901, -53.59689097939757, + -56.481471963622674, -46.69249943587576, -29.14907794817681, + -5.6513008314738675, 15.130986784875303, 27.39127347134446, + 31.447098270802986, 28.55127899985515, 21.41195033901649, + 14.838334871510884, 13.26413742289164, 18.693636059669586, + 29.434877376543106, 42.49536394004744, 56.29056923809873, + 68.96583382384073, 77.8322967041925, 90.0940043904633, 113.96993538046794, + 145.61169813950264 + ], + "pressure:J1:branch2_seg0": [ + 273064.61454273947, 291588.94703517517, 426429.5561692136, + 498219.10878435045, 576109.621517616, 660599.8292624658, 613826.217226253, + 544739.6577708155, 492950.9082422998, 345183.3949299639, + 176770.80463603884, 97744.82281947872, 43557.67363853189, + -60377.88906393317, -52049.63400212639, -7743.316687483984, + -4338.321210212171, 23743.34561473294, 28118.222216834514, + 30960.27447683479, -69.0999896210557, -57612.11815633734, + -60155.813574836546, -90758.15822078868, -113554.36062773879, + -89512.6782667584, -72338.05914054962, -77966.00116180202, + -89112.07348088348, -80996.8655987764, -135152.52016498617, + -214253.86991122793, -212893.07323586856, -257042.78675138723, + -315711.2864926908, -245152.9652138208, -203001.37462929642, + -197232.72046996737, -96613.17191260454, -34232.46491099694, + -36512.058778698774, -5661.5379777187245, 9555.185226526874, + -19956.75753767941, -35772.23119833177, -22720.31298697104, + -17266.444310894407, -10699.786490987703, 17024.7942912827, + 32950.09065027775, 36868.016349320525, 15036.079124069505, + -10829.339230341391, -36631.752762779295, -87296.93868296551, + -107859.10437541077, -111269.64765371989, -105435.53158059416, + -78880.71186781995, -48344.97273516139, -18392.721527565845, + -8768.15738351842, -15909.418883195262, -37331.79790102896, + -75032.39127525773, -107530.13402622275, -135889.1870143666, + -141122.84417670465, -128999.09263571251, -109009.50339916018, + -62405.07766743018, -30063.558700932997, -14232.26411480538, + -5515.638474376154, -22658.14957880439, -54126.88609702007, + -88993.50667790222, -116793.1154350175, -131473.66181461737, + -131828.19789010592, -111803.40048833379, -87492.81989192122, + -60851.77326386761, -33664.32794542026, -26374.866175858562, + -28779.222962564327, -36841.08881708043, -48287.673618452915, + -55911.9600078126, -55546.47827136155, -44078.272558225464, + -24354.603489750945, -6288.613688959481, 12484.920108646504, + 29272.111183597015, 38007.948369499834, 51422.88790275117, + 83763.26761538681, 129779.71511095844, 273064.61454273947 + ], + "flow:J1:branch7_seg0": [ + 117.99296118985302, 157.25151696143433, 214.75649542661915, + 277.3773829689866, 333.1154724994202, 385.18838545244637, + 420.05505242321306, 404.1448287858824, 362.6580273205616, + 305.6014398150057, 199.2482933156872, 88.22315737020149, + 0.7467716410860787, -87.26085749531677, -151.0959689356727, + -176.67282622694387, -180.05915873550987, -172.61028981044316, + -157.797529984167, -139.82390488525002, -132.43779452640393, + -137.34589287014518, -146.79974107682594, -153.72105658474004, + -160.8080258532064, -165.8840191604896, -152.161983485647, + -137.86431369390255, -132.50291657646878, -120.39247740334856, + -119.2000619415429, -138.0237956481363, -155.18521207413116, + -170.33374820409907, -190.98858652397487, -194.2426701767109, + -173.17008684033377, -148.22606650339554, -111.05737242550595, + -56.78901391283885, -13.497900228814256, 16.018000845644355, + 43.88922434468472, 56.65862777466276, 54.139481348748774, + 52.291267055892796, 52.109568654745345, 52.22296235992348, + 56.6012291239273, 64.88800834276621, 71.47654789011766, 69.18530727338891, + 58.992038986925124, 42.19044432078287, 16.941677164785606, + -10.14584120557231, -30.723909354708898, -41.78835547539213, + -42.49065679630514, -32.206547556325724, -15.05017613541736, + 1.9823661875613696, 13.273203461837086, 14.962102336606018, + 5.689441678451147, -11.912050057746722, -32.828931655553234, + -49.99509700664162, -58.57203183216609, -56.49763404941092, + -42.15098349659506, -19.82732889960709, 2.202613644584493, + 19.684139685695698, 28.51911478774292, 24.85133227879683, + 10.834475636858336, -8.407797408499524, -27.303476045636422, + -41.311434619201606, -45.02675079204104, -38.739158168625735, + -25.97949926108016, -8.071443319224413, 8.65117611454187, + 19.118531060212607, 23.48690022765667, 22.295330149097815, + 17.511521748406786, 12.730050809470011, 11.448996461208608, + 15.458819458365626, 23.663971845035903, 34.00389273877302, + 45.045483974562906, 55.659748964163725, 63.26955028764525, + 73.53785228474952, 92.54698199318243, 117.99296118985302 + ], + "pressure:J1:branch7_seg0": [ + 273064.61454273947, 291588.94703517517, 426429.5561692136, + 498219.10878435045, 576109.621517616, 660599.8292624658, 613826.217226253, + 544739.6577708155, 492950.9082422998, 345183.3949299639, + 176770.80463603884, 97744.82281947872, 43557.67363853189, + -60377.88906393317, -52049.63400212639, -7743.316687483984, + -4338.321210212171, 23743.34561473294, 28118.222216834514, + 30960.27447683479, -69.0999896210557, -57612.11815633734, + -60155.813574836546, -90758.15822078868, -113554.36062773879, + -89512.6782667584, -72338.05914054962, -77966.00116180202, + -89112.07348088348, -80996.8655987764, -135152.52016498617, + -214253.86991122793, -212893.07323586856, -257042.78675138723, + -315711.2864926908, -245152.9652138208, -203001.37462929642, + -197232.72046996737, -96613.17191260454, -34232.46491099694, + -36512.058778698774, -5661.5379777187245, 9555.185226526874, + -19956.75753767941, -35772.23119833177, -22720.31298697104, + -17266.444310894407, -10699.786490987703, 17024.7942912827, + 32950.09065027775, 36868.016349320525, 15036.079124069505, + -10829.339230341391, -36631.752762779295, -87296.93868296551, + -107859.10437541077, -111269.64765371989, -105435.53158059416, + -78880.71186781995, -48344.97273516139, -18392.721527565845, + -8768.15738351842, -15909.418883195262, -37331.79790102896, + -75032.39127525773, -107530.13402622275, -135889.1870143666, + -141122.84417670465, -128999.09263571251, -109009.50339916018, + -62405.07766743018, -30063.558700932997, -14232.26411480538, + -5515.638474376154, -22658.14957880439, -54126.88609702007, + -88993.50667790222, -116793.1154350175, -131473.66181461737, + -131828.19789010592, -111803.40048833379, -87492.81989192122, + -60851.77326386761, -33664.32794542026, -26374.866175858562, + -28779.222962564327, -36841.08881708043, -48287.673618452915, + -55911.9600078126, -55546.47827136155, -44078.272558225464, + -24354.603489750945, -6288.613688959481, 12484.920108646504, + 29272.111183597015, 38007.948369499834, 51422.88790275117, + 83763.26761538681, 129779.71511095844, 273064.61454273947 + ], + "flow:branch3_seg0:J2": [ + 423.7649961391189, 554.3707098405597, 748.4627568754075, + 923.3566153548065, 1161.9670848536628, 1350.0119063731695, + 1499.4334633084386, 1604.2817938271126, 1540.423776292949, + 1481.5129383591673, 1268.0984872421097, 1002.4661063892734, + 779.7253615205983, 452.7785278764697, 271.64205314066936, + 63.77690383426122, -62.160490750218614, -128.6698539373206, + -239.9118484433558, -239.04669065445808, -337.98021813700257, + -393.9632677478973, -455.44715816640246, -563.5619962387973, + -580.8362886625542, -664.0578327223436, -667.4214793735778, + -661.4173917937009, -692.5309422482588, -657.8382184320508, + -705.9096101566338, -744.5858223671075, -781.3207839435701, + -868.2929518980073, -914.103630878958, -928.8433022638762, + -925.8578748647162, -872.4854570349181, -770.4726857846006, + -661.9413920974333, -519.9609692552998, -408.60592960201774, + -301.967016524339, -210.27661750736797, -160.531274989512, + -96.90574437536993, -58.160963687597075, -5.021847802092898, + 51.09969150611932, 99.14010821084354, 159.9872398962765, + 175.19317382254582, 190.2579482745547, 172.30907898110962, + 118.87379604080456, 78.5077184104855, 11.929191262730154, + -16.007180897244023, -35.76357878943655, -31.410069196352612, + 1.291193686505457, 20.09108907641912, 52.525447778891845, + 49.49765114603532, 31.583790575108832, -6.421432803335519, + -65.08167360670544, -106.78177225702517, -147.84094125573193, + -158.26047611751403, -135.115528060024, -104.15352983268157, + -51.299830258423, -10.61906446567541, 16.271384856344234, + 22.904654961530962, -2.7503977237167594, -34.479295686115925, + -81.36405346860656, -115.28173331746511, -133.63122132222045, + -131.39192111151968, -108.06413569673121, -73.7981013061519, + -34.33727975758063, -5.037824173192754, 17.068809653799857, + 24.952752054361216, 27.036989478872453, 26.438583646806784, + 31.69744226073579, 49.29422673869502, 72.63520168234837, + 108.24943239537917, 143.05829348497892, 180.38773901104508, + 220.96182080214024, 262.2201240114443, 333.55226970325424, + 423.7649961391189 + ], + "pressure:branch3_seg0:J2": [ + 272181.50848515995, 296167.43975732685, 428606.7483272615, + 500442.1031460593, 577099.9716371021, 651144.2752599689, + 607353.6070700928, 519522.37700059003, 473946.60895648296, + 327604.926058671, 134126.2405782199, 89473.75540687946, 27758.98681238205, + -71992.46739094774, -46730.44820113433, -6829.4051082410415, + 12680.359071820872, 30681.355481318067, 42045.16878633098, + 43516.18146694174, 1963.874561255821, -43766.0807065162, + -60129.92239097044, -80475.47298480842, -106671.34103791005, + -85499.70330399144, -54460.5118294842, -76708.25201988034, + -81009.6049285923, -70059.58091033346, -136437.89605425598, + -211608.56111997945, -210999.5378561691, -254409.1907259913, + -314737.2186911503, -240340.044163851, -194774.19153084853, + -189693.11856066162, -90934.4794067833, -26411.041133722447, + -34338.19760323282, -6645.954386279893, 10999.055318274304, + -26379.802076991804, -41486.19277304884, -25827.605872297743, + -22710.659216732507, -12258.353262589337, 13103.162790943139, + 32520.12872883811, 35044.86599646993, 10120.977005187886, + -12980.034739719098, -43110.27246409896, -90825.73797313446, + -111843.24167625484, -113036.48160237541, -103776.6988703116, + -78330.21763351151, -43161.30785822361, -15523.30156043801, + -5980.11574371878, -14424.970749223834, -39262.14453860615, + -76526.69086626814, -111265.43703008871, -138036.2387943387, + -141529.5285140626, -128575.46288357423, -106074.79876527483, + -58615.93397984286, -26150.256503854915, -10528.02273151427, + -4807.007021782568, -22584.482543382233, -57259.29006875291, + -92604.34580760702, -119537.1847066292, -134380.5344508278, + -131700.99070956258, -110511.45105888793, -84911.2356860969, + -58056.76834587681, -30230.71552267884, -24572.83658692506, + -28730.349777839067, -37355.27057505007, -50234.24683761147, + -57478.24253171956, -56976.821266592204, -44230.63727889499, + -24174.3651068255, -5367.742612232771, 13217.501142635281, + 29457.707895888365, 38378.565532036366, 50057.704620191886, + 84109.60785548326, 131525.28911509257, 272181.50848515995 + ], + "flow:J2:branch4_seg0": [ + 389.8536315905925, 507.34037661982575, 683.0228459209213, + 841.7374045329192, 1069.5296259495963, 1246.6103321482121, + 1392.6531440754243, 1510.7729322985638, 1463.2079626876578, + 1424.6090479861903, 1241.3091578561537, 999.459685622248, + 792.336721916904, 481.40416611822576, 306.20145310047167, + 94.17548783088606, -37.60102805778822, -108.56559981525444, + -223.63904251478826, -225.44670797806356, -322.7020882803517, + -372.3661735873546, -428.40081002030695, -534.0757000256702, + -548.4868885494882, -631.2050669673657, -639.18625378132, + -635.8369701935708, -667.2745114618465, -633.798379607003, + -677.7942878072724, -707.5217284245397, -739.8193062020864, + -822.0928549388831, -860.9511020194649, -879.8468713449012, + -886.7730231000417, -838.9571808858663, -747.9818947140546, + -654.9422233135076, -519.7672369809812, -411.48181543262194, + -308.9387974102483, -216.09921628827578, -162.6978342929534, + -98.54872559754457, -60.559834903124944, -8.38456379880265, + 44.86838624708266, 89.30146993523817, 148.45265951158243, + 165.7124583977416, 184.54808582270994, 171.39571514920996, + 125.15127210842792, 90.9166969620407, 26.804551918665084, + -1.5105999747992818, -24.456229015197778, -25.605564072805127, + 1.4302246655493196, 16.40446834244089, 47.9598697807583, + 47.247958783319156, 34.383103212412344, 2.5513563825754337, + -50.56993080610688, -89.42585205779713, -130.87146054029463, + -144.51207775064108, -128.05455900615127, -104.20122681623597, + -56.04760027106605, -17.889649340131594, 9.615089988828762, + 20.457509630322125, 0.6550279762120568, -25.29437533795909, + -68.08571227543909, -100.48505136358823, -120.65361779154698, + -122.61462523647558, -104.35612827111684, -75.33467101880404, + -39.01383552661277, -10.484009997930963, 12.470531113046961, + 22.206360722557253, 26.194496650929512, 26.614077454825544, + 31.147440170560493, 46.23368515469294, 66.33733091422681, + 98.81955681517536, 130.77159280035067, 165.78565424780717, + 204.8276313988461, 242.9187465149287, 308.2690254193275, 389.8536315905925 + ], + "pressure:J2:branch4_seg0": [ + 272181.50848515995, 296167.43975732685, 428606.7483272615, + 500442.1031460593, 577099.9716371021, 651144.2752599689, + 607353.6070700928, 519522.37700059003, 473946.60895648296, + 327604.926058671, 134126.2405782199, 89473.75540687946, 27758.98681238205, + -71992.46739094774, -46730.44820113433, -6829.4051082410415, + 12680.359071820872, 30681.355481318067, 42045.16878633098, + 43516.18146694174, 1963.874561255821, -43766.0807065162, + -60129.92239097044, -80475.47298480842, -106671.34103791005, + -85499.70330399144, -54460.5118294842, -76708.25201988034, + -81009.6049285923, -70059.58091033346, -136437.89605425598, + -211608.56111997945, -210999.5378561691, -254409.1907259913, + -314737.2186911503, -240340.044163851, -194774.19153084853, + -189693.11856066162, -90934.4794067833, -26411.041133722447, + -34338.19760323282, -6645.954386279893, 10999.055318274304, + -26379.802076991804, -41486.19277304884, -25827.605872297743, + -22710.659216732507, -12258.353262589337, 13103.162790943139, + 32520.12872883811, 35044.86599646993, 10120.977005187886, + -12980.034739719098, -43110.27246409896, -90825.73797313446, + -111843.24167625484, -113036.48160237541, -103776.6988703116, + -78330.21763351151, -43161.30785822361, -15523.30156043801, + -5980.11574371878, -14424.970749223834, -39262.14453860615, + -76526.69086626814, -111265.43703008871, -138036.2387943387, + -141529.5285140626, -128575.46288357423, -106074.79876527483, + -58615.93397984286, -26150.256503854915, -10528.02273151427, + -4807.007021782568, -22584.482543382233, -57259.29006875291, + -92604.34580760702, -119537.1847066292, -134380.5344508278, + -131700.99070956258, -110511.45105888793, -84911.2356860969, + -58056.76834587681, -30230.71552267884, -24572.83658692506, + -28730.349777839067, -37355.27057505007, -50234.24683761147, + -57478.24253171956, -56976.821266592204, -44230.63727889499, + -24174.3651068255, -5367.742612232771, 13217.501142635281, + 29457.707895888365, 38378.565532036366, 50057.704620191886, + 84109.60785548326, 131525.28911509257, 272181.50848515995 + ], + "flow:J2:branch6_seg0": [ + 33.91136454852848, 47.03033322073444, 65.43991095448128, 81.619210821893, + 92.437458904065, 103.4015742249402, 106.78031923301924, 93.50886152853106, + 77.21581360531069, 56.90389037297332, 26.789329385973264, + 3.006420767043786, -12.611360396302914, -28.625638241729302, + -34.559399959757094, -30.398583996583664, -24.559462692451625, + -20.104254122065555, -16.27280592854544, -13.599982676387766, + -15.278129856641323, -21.597094160525273, -27.04634814607731, + -29.486296213134686, -32.34940011301212, -32.85276575495368, + -28.23522559224259, -25.5804216001468, -25.25643078643839, + -24.03983882507711, -28.11532234935304, -37.06409394262994, + -41.501477741492806, -46.20009695912412, -53.152528859498, + -48.99643091897537, -39.08485176467728, -33.52827614904849, + -22.490791070541093, -6.999168783927768, -0.19373227431650528, + 2.8758858306038584, 6.971780885909353, 5.822598780907114, + 2.166559303441684, 1.6429812221747084, 2.3988712155278007, + 3.3627159967109965, 6.23130525903852, 9.838638275605328, + 11.534580384694058, 9.480715424803757, 5.709862451845173, + 0.9133638318992223, -6.277476067623168, -12.408978551553021, + -14.875360655933786, -14.496580922443856, -11.307349774240274, + -5.804505123547483, -0.13903097904447967, 3.6866207339802872, + 4.56557799813209, 2.2496923627149323, -2.7993126373057327, + -8.97278918591018, -14.511742800598677, -17.35592019922675, + -16.969480715436372, -13.748398366872824, -7.060969053872617, + 0.047696983554931134, 4.747770012643565, 7.270584874456184, + 6.656294867516594, 2.4471453312093296, -3.405425699927967, + -9.184920348157787, -13.278341193165891, -14.796681953875689, + -12.977603530673429, -8.777295875044368, -3.708007425614364, + 1.5365697126523234, 4.676555769030121, 5.446185824736282, + 4.59827854075396, 2.7463913318097473, 0.842492827935827, + -0.17549380801645775, 0.5500020901748875, 3.06054158400396, + 6.2978707681242865, 9.42987558020245, 12.286700684628958, + 14.602084763238018, 16.13418940329433, 19.301377496516245, + 25.283244283926397, 33.91136454852848 + ], + "pressure:J2:branch6_seg0": [ + 272181.50848515995, 296167.43975732685, 428606.7483272615, + 500442.1031460593, 577099.9716371021, 651144.2752599689, + 607353.6070700928, 519522.37700059003, 473946.60895648296, + 327604.926058671, 134126.2405782199, 89473.75540687946, 27758.98681238205, + -71992.46739094774, -46730.44820113433, -6829.4051082410415, + 12680.359071820872, 30681.355481318067, 42045.16878633098, + 43516.18146694174, 1963.874561255821, -43766.0807065162, + -60129.92239097044, -80475.47298480842, -106671.34103791005, + -85499.70330399144, -54460.5118294842, -76708.25201988034, + -81009.6049285923, -70059.58091033346, -136437.89605425598, + -211608.56111997945, -210999.5378561691, -254409.1907259913, + -314737.2186911503, -240340.044163851, -194774.19153084853, + -189693.11856066162, -90934.4794067833, -26411.041133722447, + -34338.19760323282, -6645.954386279893, 10999.055318274304, + -26379.802076991804, -41486.19277304884, -25827.605872297743, + -22710.659216732507, -12258.353262589337, 13103.162790943139, + 32520.12872883811, 35044.86599646993, 10120.977005187886, + -12980.034739719098, -43110.27246409896, -90825.73797313446, + -111843.24167625484, -113036.48160237541, -103776.6988703116, + -78330.21763351151, -43161.30785822361, -15523.30156043801, + -5980.11574371878, -14424.970749223834, -39262.14453860615, + -76526.69086626814, -111265.43703008871, -138036.2387943387, + -141529.5285140626, -128575.46288357423, -106074.79876527483, + -58615.93397984286, -26150.256503854915, -10528.02273151427, + -4807.007021782568, -22584.482543382233, -57259.29006875291, + -92604.34580760702, -119537.1847066292, -134380.5344508278, + -131700.99070956258, -110511.45105888793, -84911.2356860969, + -58056.76834587681, -30230.71552267884, -24572.83658692506, + -28730.349777839067, -37355.27057505007, -50234.24683761147, + -57478.24253171956, -56976.821266592204, -44230.63727889499, + -24174.3651068255, -5367.742612232771, 13217.501142635281, + 29457.707895888365, 38378.565532036366, 50057.704620191886, + 84109.60785548326, 131525.28911509257, 272181.50848515995 + ], + "flow:branch2_seg0:J3": [ + 144.68346418366906, 193.75636161960387, 265.3627041795882, + 343.3221838329048, 410.3052537823807, 470.86194642296965, + 509.89398665262536, 481.5910252580308, 422.3172874835986, + 348.17949718634213, 207.98637643672487, 67.86582442419996, + -35.691171157375486, -141.60758220509499, -214.1754735965872, + -236.1826469553346, -231.24030895969926, -214.78613561701783, + -191.0778762883225, -164.87792670129724, -154.9345231105479, + -160.93978556384744, -173.41508382472654, -181.96632218094982, + -190.09571352393456, -196.38139797367853, -176.59407529002945, + -157.50040294366875, -152.19278323608944, -135.71510278465743, + -135.04636235129558, -161.93228179020352, -183.58029493689352, + -202.08962541028146, -228.2710451604532, -230.84172399642264, + -200.77046534383342, -167.08365859521643, -119.98817894863095, + -50.369151413691014, 2.4828477862902427, 35.72926923065231, + 67.82553596453329, 79.92269170558379, 71.99124511139709, + 67.06496704867841, 65.16153946965134, 64.14732086467771, + 68.97997200527945, 79.27597836020105, 87.34156654836644, + 83.07946803938621, 69.00986318111744, 46.78846144732834, + 14.25576346236199, -19.913468427188004, -44.48438089228588, + -56.33700188404026, -54.93292278018497, -39.561221706174145, + -16.09314885440792, 6.04258776955685, 19.91342807308927, + 20.814160806201656, 7.482741577919841, -16.094185368930194, + -43.20454497005744, -64.32606045054581, -73.77248539334514, + -69.37426717463627, -49.24642079172306, -19.576224192727107, + 8.59961519415858, 29.887547901340223, 39.53159113425516, + 32.73068792977089, 12.9252195994083, -12.536973102231391, + -36.69787877835459, -53.671029530707315, -56.759691484013, + -47.02960119721383, -29.61397236075845, -6.006941176702014, + 15.249657900210652, 27.453656271093504, 31.649882693159114, + 28.71693349835512, 21.44913120877359, 14.762545336990247, + 13.046161254078122, 18.378036017298243, 29.133077924279647, + 42.27240532688513, 55.96155024526791, 68.82848284141019, + 77.43641120604183, 89.51071054664256, 113.46188257101115, + 144.68346418366906 + ], + "pressure:branch2_seg0:J3": [ + 224180.20316049972, 215699.79013902554, 317690.2950461059, + 401831.9192305831, 487101.6708379801, 571523.6018991048, + 599626.9857907358, 581041.3883975429, 548816.5635703355, + 470317.17147735733, 340008.7726373893, 239563.27420659718, + 159720.71610545376, 57709.696736132086, 9713.754595972609, + 3603.176299995304, -4534.3677809484825, 4390.76818474238, + 8922.570462794602, 15910.436110976501, 1927.9328276114693, + -30643.25989495581, -47026.82740095529, -71971.2644205536, + -93973.15763836743, -97877.02127053266, -89535.17628449273, + -88921.92453157481, -97590.75983164068, -92044.52729597712, + -118257.8563764447, -170381.68647077781, -189605.110052229, + -225677.9055986057, -272750.53258991573, -258249.21451942076, + -235597.69699845414, -222695.5326616776, -166021.79792265265, + -106460.16819165662, -79061.5050951885, -47093.92104953255, + -21251.355239622382, -21290.421335011873, -28094.116907857566, + -22243.994999206396, -18019.876879129264, -12792.369109787873, + 3484.001124749341, 19117.96428346599, 29160.9674619911, 22801.80195401274, + 8962.153838354006, -10234.56148438119, -45796.668216470665, + -72786.11597268976, -89079.28360094638, -96014.66023713963, + -87723.39757269793, -69844.01114902999, -46581.78515453292, + -30709.543118292797, -24804.76281398757, -31144.678345040986, + -51993.657169176826, -77206.28669056862, -104498.82950794265, + -120468.43933198263, -124445.84480496653, -117871.5808102855, + -91544.47203690164, -64470.15769891395, -42470.766659989764, + -26447.10311506689, -25416.047077370215, -39096.047775429026, + -62114.81605887842, -86294.34245904931, -106562.52091857065, + -117907.59268901145, -114761.77596167712, -102468.12713292656, + -84247.0892914979, -61648.747555767986, -46315.238101050294, + -39308.310455209634, -38274.60213190011, -42622.56610096619, + -48141.966722608835, -50711.12391365319, -46587.196992577265, + -35309.27988276256, -21250.495780424233, -4977.0772102919445, + 11361.123847156245, 24959.185853271134, 38305.91107204972, + 61282.27636533481, 96482.96061242557, 224180.20316049972 + ], + "flow:J3:branch2_seg1": [ + 144.68346418366906, 193.75636161960387, 265.3627041795882, + 343.3221838329048, 410.3052537823807, 470.86194642296965, + 509.89398665262536, 481.5910252580308, 422.3172874835986, + 348.17949718634213, 207.98637643672487, 67.86582442419996, + -35.691171157375486, -141.60758220509499, -214.1754735965872, + -236.1826469553346, -231.24030895969926, -214.78613561701783, + -191.0778762883225, -164.87792670129724, -154.9345231105479, + -160.93978556384744, -173.41508382472654, -181.96632218094982, + -190.09571352393456, -196.38139797367853, -176.59407529002945, + -157.50040294366875, -152.19278323608944, -135.71510278465743, + -135.04636235129558, -161.93228179020352, -183.58029493689352, + -202.08962541028146, -228.2710451604532, -230.84172399642264, + -200.77046534383342, -167.08365859521643, -119.98817894863095, + -50.369151413691014, 2.4828477862902427, 35.72926923065231, + 67.82553596453329, 79.92269170558379, 71.99124511139709, + 67.06496704867841, 65.16153946965134, 64.14732086467771, + 68.97997200527945, 79.27597836020105, 87.34156654836644, + 83.07946803938621, 69.00986318111744, 46.78846144732834, + 14.25576346236199, -19.913468427188004, -44.48438089228588, + -56.33700188404026, -54.93292278018497, -39.561221706174145, + -16.09314885440792, 6.04258776955685, 19.91342807308927, + 20.814160806201656, 7.482741577919841, -16.094185368930194, + -43.20454497005744, -64.32606045054581, -73.77248539334514, + -69.37426717463627, -49.24642079172306, -19.576224192727107, + 8.59961519415858, 29.887547901340223, 39.53159113425516, + 32.73068792977089, 12.9252195994083, -12.536973102231391, + -36.69787877835459, -53.671029530707315, -56.759691484013, + -47.02960119721383, -29.61397236075845, -6.006941176702014, + 15.249657900210652, 27.453656271093504, 31.649882693159114, + 28.71693349835512, 21.44913120877359, 14.762545336990247, + 13.046161254078122, 18.378036017298243, 29.133077924279647, + 42.27240532688513, 55.96155024526791, 68.82848284141019, + 77.43641120604183, 89.51071054664256, 113.46188257101115, + 144.68346418366906 + ], + "pressure:J3:branch2_seg1": [ + 224180.20316049972, 215699.79013902554, 317690.2950461059, + 401831.9192305831, 487101.6708379801, 571523.6018991048, + 599626.9857907358, 581041.3883975429, 548816.5635703355, + 470317.17147735733, 340008.7726373893, 239563.27420659718, + 159720.71610545376, 57709.696736132086, 9713.754595972609, + 3603.176299995304, -4534.3677809484825, 4390.76818474238, + 8922.570462794602, 15910.436110976501, 1927.9328276114693, + -30643.25989495581, -47026.82740095529, -71971.2644205536, + -93973.15763836743, -97877.02127053266, -89535.17628449273, + -88921.92453157481, -97590.75983164068, -92044.52729597712, + -118257.8563764447, -170381.68647077781, -189605.110052229, + -225677.9055986057, -272750.53258991573, -258249.21451942076, + -235597.69699845414, -222695.5326616776, -166021.79792265265, + -106460.16819165662, -79061.5050951885, -47093.92104953255, + -21251.355239622382, -21290.421335011873, -28094.116907857566, + -22243.994999206396, -18019.876879129264, -12792.369109787873, + 3484.001124749341, 19117.96428346599, 29160.9674619911, 22801.80195401274, + 8962.153838354006, -10234.56148438119, -45796.668216470665, + -72786.11597268976, -89079.28360094638, -96014.66023713963, + -87723.39757269793, -69844.01114902999, -46581.78515453292, + -30709.543118292797, -24804.76281398757, -31144.678345040986, + -51993.657169176826, -77206.28669056862, -104498.82950794265, + -120468.43933198263, -124445.84480496653, -117871.5808102855, + -91544.47203690164, -64470.15769891395, -42470.766659989764, + -26447.10311506689, -25416.047077370215, -39096.047775429026, + -62114.81605887842, -86294.34245904931, -106562.52091857065, + -117907.59268901145, -114761.77596167712, -102468.12713292656, + -84247.0892914979, -61648.747555767986, -46315.238101050294, + -39308.310455209634, -38274.60213190011, -42622.56610096619, + -48141.966722608835, -50711.12391365319, -46587.196992577265, + -35309.27988276256, -21250.495780424233, -4977.0772102919445, + 11361.123847156245, 24959.185853271134, 38305.91107204972, + 61282.27636533481, 96482.96061242557, 224180.20316049972 + ], + "flow:branch2_seg1:J4": [ + 144.60203710704656, 193.64085055717197, 265.1786829458331, + 343.18730988794374, 410.19626923605676, 470.71815989581694, + 509.86859443824875, 481.61408370250524, 422.33680606443664, + 348.39200906255354, 208.11091160587944, 67.97929857397894, + -35.53994205624436, -141.49270421842118, -214.15728593555852, + -236.18459359513534, -231.24871336022318, -214.80009717579176, + -191.08813025584925, -164.8582992861747, -154.91705825431794, + -160.86989184612742, -173.38158728471862, -181.932053373228, + -190.05029453273934, -196.39774337316018, -176.58624099472533, + -157.48039191290096, -152.22819557941574, -135.69438806237375, + -134.99092664348416, -161.91433801006133, -183.5571238698207, + -202.04099233154372, -228.24601876612115, -230.88783378277085, + -200.81008026609365, -167.0843639661357, -120.07836521857736, + -50.42879615551903, 2.4623569847337934, 35.6877500767656, + 67.80828928689469, 79.94122460711097, 71.98536106947704, + 67.05977847908467, 65.15426732823184, 64.14009697242012, + 68.95204888887555, 79.26134001191127, 87.34854957402817, + 83.09436392002813, 69.0404777234186, 46.81967591216312, + 14.305957345244344, -19.888196636969678, -44.46136005131961, + -56.334745523832964, -54.95247522075692, -39.588250030892254, + -16.121273178974523, 6.028087658897311, 19.91428707800476, + 20.834944561458627, 7.515912375541626, -16.05960107341021, + -43.177153092576866, -64.31381673811603, -73.77681048404733, + -69.40085306566469, -49.28689413041859, -19.616235434016605, + 8.576264870485861, 29.873280407546726, 39.54108095641671, + 32.75751130973335, 12.951617675479556, -12.501793472625769, + -36.67874181076858, -53.66323760479918, -56.76905537650837, + -47.05159410720273, -29.64501245864441, -6.040725483354807, + 15.240740250672081, 27.446502563064467, 31.655701017770138, + 28.72595728608519, 21.45384163830183, 14.762637165612578, + 13.035954323829182, 18.356392933553128, 29.112647055085162, + 42.24648175008746, 55.93838523529656, 68.80871409230022, + 77.41299948821286, 89.46529160664485, 113.42157579949954, + 144.60203710704656 + ], + "pressure:branch2_seg1:J4": [ + 216199.35391710323, 203471.81196657754, 300009.1092151156, + 386105.10443143523, 472266.02413512964, 556828.866700035, + 596589.9567680722, 586021.0024087765, 557043.7540378557, 489554.485848057, + 365662.821267386, 261776.38855544262, 178267.1310900657, + 76567.51287962192, 19939.029879467584, 5735.035479432842, + -4167.550464306764, 1645.9558473528828, 6207.230293202389, + 13790.75145497922, 2481.0741082369536, -26135.327198689334, + -44682.06333966298, -68708.95911601678, -90601.70045585575, + -98930.94756667686, -91988.59570408864, -90427.7656987594, + -98712.07534677087, -93613.79652117682, -115411.22512266196, + -163144.26671184253, -185680.14908821168, -220404.31197085264, + -265532.9014416355, -259955.30170369672, -240435.57318134894, + -226489.47967310523, -176736.70435990448, -117874.51258219371, + -85758.89546483842, -53764.67875112361, -26195.951697361605, + -21645.534553059962, -26966.146069906485, -22277.25371471501, + -18229.15134259794, -13219.286403408363, 1250.991258632225, + 16795.21244646652, 27801.239995065735, 23899.121666796702, + 11991.62125348291, -6137.947691053269, -39252.298741029714, + -67200.60258117509, -85509.9402881912, -94425.04267996323, + -89041.64633911199, -73180.17798247338, -51031.976483575425, + -34190.05243378183, -26248.805389019562, -30204.449705452924, + -48344.751420830566, -72402.59339009388, -99438.75646761103, + -117114.84909474512, -123606.70123650867, -119140.49514412992, + -96095.2225477343, -69864.6071306754, -46983.45227247043, + -29791.067106705825, -25924.136546034577, -36771.691920271354, + -57861.26859409284, -81467.78089156523, -102547.2951641685, + -115642.44927918889, -115137.34598345913, -104763.31260948017, + -87915.08407395954, -66058.75031766071, -49513.869272598575, + -41015.13079785756, -38555.695285240115, -41766.645534448275, + -46945.95581883805, -49967.93846789636, -46999.4751504663, + -37069.9105187837, -23655.920109956634, -7811.459723885105, + 8453.774856339482, 22792.575687668585, 36129.21208140394, + 57581.47241558101, 91083.84900486657, 216199.35391710323 + ], + "flow:J4:branch2_seg2": [ + 144.60203710704656, 193.64085055717197, 265.1786829458331, + 343.18730988794374, 410.19626923605676, 470.71815989581694, + 509.86859443824875, 481.61408370250524, 422.33680606443664, + 348.39200906255354, 208.11091160587944, 67.97929857397894, + -35.53994205624436, -141.49270421842118, -214.15728593555852, + -236.18459359513534, -231.24871336022318, -214.80009717579176, + -191.08813025584925, -164.8582992861747, -154.91705825431794, + -160.86989184612742, -173.38158728471862, -181.932053373228, + -190.05029453273934, -196.39774337316018, -176.58624099472533, + -157.48039191290096, -152.22819557941574, -135.69438806237375, + -134.99092664348416, -161.91433801006133, -183.5571238698207, + -202.04099233154372, -228.24601876612115, -230.88783378277085, + -200.81008026609365, -167.0843639661357, -120.07836521857736, + -50.42879615551903, 2.4623569847337934, 35.6877500767656, + 67.80828928689469, 79.94122460711097, 71.98536106947704, + 67.05977847908467, 65.15426732823184, 64.14009697242012, + 68.95204888887555, 79.26134001191127, 87.34854957402817, + 83.09436392002813, 69.0404777234186, 46.81967591216312, + 14.305957345244344, -19.888196636969678, -44.46136005131961, + -56.334745523832964, -54.95247522075692, -39.588250030892254, + -16.121273178974523, 6.028087658897311, 19.91428707800476, + 20.834944561458627, 7.515912375541626, -16.05960107341021, + -43.177153092576866, -64.31381673811603, -73.77681048404733, + -69.40085306566469, -49.28689413041859, -19.616235434016605, + 8.576264870485861, 29.873280407546726, 39.54108095641671, + 32.75751130973335, 12.951617675479556, -12.501793472625769, + -36.67874181076858, -53.66323760479918, -56.76905537650837, + -47.05159410720273, -29.64501245864441, -6.040725483354807, + 15.240740250672081, 27.446502563064467, 31.655701017770138, + 28.72595728608519, 21.45384163830183, 14.762637165612578, + 13.035954323829182, 18.356392933553128, 29.112647055085162, + 42.24648175008746, 55.93838523529656, 68.80871409230022, + 77.41299948821286, 89.46529160664485, 113.42157579949954, + 144.60203710704656 + ], + "pressure:J4:branch2_seg2": [ + 216199.35391710323, 203471.81196657754, 300009.1092151156, + 386105.10443143523, 472266.02413512964, 556828.866700035, + 596589.9567680722, 586021.0024087765, 557043.7540378557, 489554.485848057, + 365662.821267386, 261776.38855544262, 178267.1310900657, + 76567.51287962192, 19939.029879467584, 5735.035479432842, + -4167.550464306764, 1645.9558473528828, 6207.230293202389, + 13790.75145497922, 2481.0741082369536, -26135.327198689334, + -44682.06333966298, -68708.95911601678, -90601.70045585575, + -98930.94756667686, -91988.59570408864, -90427.7656987594, + -98712.07534677087, -93613.79652117682, -115411.22512266196, + -163144.26671184253, -185680.14908821168, -220404.31197085264, + -265532.9014416355, -259955.30170369672, -240435.57318134894, + -226489.47967310523, -176736.70435990448, -117874.51258219371, + -85758.89546483842, -53764.67875112361, -26195.951697361605, + -21645.534553059962, -26966.146069906485, -22277.25371471501, + -18229.15134259794, -13219.286403408363, 1250.991258632225, + 16795.21244646652, 27801.239995065735, 23899.121666796702, + 11991.62125348291, -6137.947691053269, -39252.298741029714, + -67200.60258117509, -85509.9402881912, -94425.04267996323, + -89041.64633911199, -73180.17798247338, -51031.976483575425, + -34190.05243378183, -26248.805389019562, -30204.449705452924, + -48344.751420830566, -72402.59339009388, -99438.75646761103, + -117114.84909474512, -123606.70123650867, -119140.49514412992, + -96095.2225477343, -69864.6071306754, -46983.45227247043, + -29791.067106705825, -25924.136546034577, -36771.691920271354, + -57861.26859409284, -81467.78089156523, -102547.2951641685, + -115642.44927918889, -115137.34598345913, -104763.31260948017, + -87915.08407395954, -66058.75031766071, -49513.869272598575, + -41015.13079785756, -38555.695285240115, -41766.645534448275, + -46945.95581883805, -49967.93846789636, -46999.4751504663, + -37069.9105187837, -23655.920109956634, -7811.459723885105, + 8453.774856339482, 22792.575687668585, 36129.21208140394, + 57581.47241558101, 91083.84900486657, 216199.35391710323 + ], + "flow:branch4_seg0:J5": [ + 383.6789890089777, 498.62795707280884, 668.6940283694805, + 834.8667434375861, 1063.807792024599, 1238.7289395349017, + 1394.6662164434006, 1510.3892720004576, 1466.0690313444175, + 1443.2102426794402, 1245.422232421429, 1000.2475216031448, + 801.6423748625874, 486.5030417937184, 300.38459757278633, + 91.10665935150831, -39.79668151000615, -111.77398951353992, + -222.15296249799914, -224.041905329471, -319.830668430992, + -367.01393803307576, -426.4324457913692, -530.5326421147138, + -546.9636751485378, -632.9634833014321, -637.1583632932446, + -633.2897615197141, -671.5337609532564, -631.7477399131584, + -670.8784569720644, -710.0919112023954, -740.9043488828692, + -818.4123390556438, -862.1038507436774, -887.5351197418614, + -889.9302196820513, -837.8766872383479, -754.8458413095785, + -655.8306684099484, -519.3683261857561, -413.4410602767285, + -307.2284012074456, -213.02136325033342, -163.31083709213354, + -99.55818912162533, -60.69170935189694, -9.050705050139458, + 42.69153004927355, 89.0696652501554, 150.33171287219247, 168.211113116897, + 187.0976756976997, 173.7361625673517, 128.41888598136626, + 91.09592005747488, 27.500154988462242, -2.4822782491308097, + -26.855117718623966, -27.70176659565871, -0.056952948302457895, + 16.790525186547097, 49.10121128664094, 49.95056648306596, + 37.045225155529856, 4.4714632532798335, -49.984937009807815, + -90.20924246875104, -132.3880893600872, -147.50390768489336, + -131.76035374783328, -106.36709345193593, -56.848565812346735, + -17.56617807171006, 11.839691473523622, 22.873757888513154, + 2.5275405400902162, -23.75464151436661, -67.62663790262158, + -101.3527667784037, -122.05367681028395, -124.32049970410428, + -107.19714445037228, -76.93279332246894, -38.5519622790127, + -9.898995826613074, 13.514692810418923, 23.229441194757168, + 26.284400798750926, 26.153981705436788, 30.035896681785058, + 44.369181690545666, 64.95399423674525, 97.27091249552713, + 129.40541241001864, 164.863375592373, 202.7026129484556, + 239.5395880288286, 306.1071475427915, 383.6789890089777 + ], + "pressure:branch4_seg0:J5": [ + 230304.76035623712, 253775.86737993662, 347781.1134484604, + 428229.1484273334, 505122.73765827506, 558953.3084692727, + 601492.3780299498, 473971.61782306875, 479173.1810041651, + 417727.05519118486, 160250.9342426363, 210370.38613574323, + 101442.83703824997, 3803.3353707001284, 54861.77491920451, + 15076.885326898135, 86351.651411482, 36130.538706636515, + 75027.30742636982, 75706.23385127942, 132.9126369236306, + 18402.489565431657, -64053.04551429081, -38036.68897133265, + -79086.71824462012, -103652.01963394294, -16271.595263905367, + -98626.46223233506, -78581.76014088401, -57747.96176456078, + -148093.637711358, -171932.540556785, -199979.00912121727, + -235590.20729981374, -275014.2743806835, -237616.49585275157, + -199633.65516384708, -193899.4216898011, -128516.99705420542, + -61987.02368446339, -68103.9515691561, -56517.93535154422, + -12716.263352780845, -57150.08532736695, -58595.27424350457, + -39214.69028312264, -45679.99037497143, -20437.103138359118, + -12708.300727030695, 18408.124011122334, 18781.513117256924, + -3882.0119470198156, -3594.2422949181737, -45946.20669720296, + -70134.83641280635, -94288.57774991645, -100896.42672472741, + -85678.24499458383, -82355.45876062033, -40571.993013378466, + -29191.25795134433, -15422.308507869504, -16455.420840802442, + -42607.38727355154, -62014.53595201996, -100212.83981030673, + -118368.17995736621, -124533.93009904474, -123063.43517232356, + -97780.78018275237, -67887.60956276694, -40498.936100337756, + -23129.054128825966, -21829.7917865691, -26233.534137927523, + -58302.55755228961, -82785.6499144425, -105245.96225973763, + -123370.84984315226, -120641.73720220203, -107950.75969222243, + -86590.87194557828, -69091.8392927751, -41248.37434090137, + -37869.049352429494, -38801.6432567353, -42022.515298825085, + -53469.61956653039, -57074.85715086424, -58755.055053758086, + -46494.40854298236, -31741.71240169353, -14505.793736663536, + 1673.137249239541, 15052.382648997085, 30907.141688582476, + 33798.85270235853, 66949.4597516954, 115123.9351313893, 230304.76035623712 + ], + "flow:J5:branch4_seg1": [ + 383.6789890089777, 498.62795707280884, 668.6940283694805, + 834.8667434375861, 1063.807792024599, 1238.7289395349017, + 1394.6662164434006, 1510.3892720004576, 1466.0690313444175, + 1443.2102426794402, 1245.422232421429, 1000.2475216031448, + 801.6423748625874, 486.5030417937184, 300.38459757278633, + 91.10665935150831, -39.79668151000615, -111.77398951353992, + -222.15296249799914, -224.041905329471, -319.830668430992, + -367.01393803307576, -426.4324457913692, -530.5326421147138, + -546.9636751485378, -632.9634833014321, -637.1583632932446, + -633.2897615197141, -671.5337609532564, -631.7477399131584, + -670.8784569720644, -710.0919112023954, -740.9043488828692, + -818.4123390556438, -862.1038507436774, -887.5351197418614, + -889.9302196820513, -837.8766872383479, -754.8458413095785, + -655.8306684099484, -519.3683261857561, -413.4410602767285, + -307.2284012074456, -213.02136325033342, -163.31083709213354, + -99.55818912162533, -60.69170935189694, -9.050705050139458, + 42.69153004927355, 89.0696652501554, 150.33171287219247, 168.211113116897, + 187.0976756976997, 173.7361625673517, 128.41888598136626, + 91.09592005747488, 27.500154988462242, -2.4822782491308097, + -26.855117718623966, -27.70176659565871, -0.056952948302457895, + 16.790525186547097, 49.10121128664094, 49.95056648306596, + 37.045225155529856, 4.4714632532798335, -49.984937009807815, + -90.20924246875104, -132.3880893600872, -147.50390768489336, + -131.76035374783328, -106.36709345193593, -56.848565812346735, + -17.56617807171006, 11.839691473523622, 22.873757888513154, + 2.5275405400902162, -23.75464151436661, -67.62663790262158, + -101.3527667784037, -122.05367681028395, -124.32049970410428, + -107.19714445037228, -76.93279332246894, -38.5519622790127, + -9.898995826613074, 13.514692810418923, 23.229441194757168, + 26.284400798750926, 26.153981705436788, 30.035896681785058, + 44.369181690545666, 64.95399423674525, 97.27091249552713, + 129.40541241001864, 164.863375592373, 202.7026129484556, + 239.5395880288286, 306.1071475427915, 383.6789890089777 + ], + "pressure:J5:branch4_seg1": [ + 230304.76035623712, 253775.86737993662, 347781.1134484604, + 428229.1484273334, 505122.73765827506, 558953.3084692727, + 601492.3780299498, 473971.61782306875, 479173.1810041651, + 417727.05519118486, 160250.9342426363, 210370.38613574323, + 101442.83703824997, 3803.3353707001284, 54861.77491920451, + 15076.885326898135, 86351.651411482, 36130.538706636515, + 75027.30742636982, 75706.23385127942, 132.9126369236306, + 18402.489565431657, -64053.04551429081, -38036.68897133265, + -79086.71824462012, -103652.01963394294, -16271.595263905367, + -98626.46223233506, -78581.76014088401, -57747.96176456078, + -148093.637711358, -171932.540556785, -199979.00912121727, + -235590.20729981374, -275014.2743806835, -237616.49585275157, + -199633.65516384708, -193899.4216898011, -128516.99705420542, + -61987.02368446339, -68103.9515691561, -56517.93535154422, + -12716.263352780845, -57150.08532736695, -58595.27424350457, + -39214.69028312264, -45679.99037497143, -20437.103138359118, + -12708.300727030695, 18408.124011122334, 18781.513117256924, + -3882.0119470198156, -3594.2422949181737, -45946.20669720296, + -70134.83641280635, -94288.57774991645, -100896.42672472741, + -85678.24499458383, -82355.45876062033, -40571.993013378466, + -29191.25795134433, -15422.308507869504, -16455.420840802442, + -42607.38727355154, -62014.53595201996, -100212.83981030673, + -118368.17995736621, -124533.93009904474, -123063.43517232356, + -97780.78018275237, -67887.60956276694, -40498.936100337756, + -23129.054128825966, -21829.7917865691, -26233.534137927523, + -58302.55755228961, -82785.6499144425, -105245.96225973763, + -123370.84984315226, -120641.73720220203, -107950.75969222243, + -86590.87194557828, -69091.8392927751, -41248.37434090137, + -37869.049352429494, -38801.6432567353, -42022.515298825085, + -53469.61956653039, -57074.85715086424, -58755.055053758086, + -46494.40854298236, -31741.71240169353, -14505.793736663536, + 1673.137249239541, 15052.382648997085, 30907.141688582476, + 33798.85270235853, 66949.4597516954, 115123.9351313893, 230304.76035623712 + ], + "flow:branch4_seg1:J6": [ + 381.57338077703554, 496.10353258945827, 663.8646639898568, + 835.5767638535214, 1058.9396773570847, 1238.076486268729, + 1398.6408784161529, 1507.3068898761878, 1471.6375811852245, + 1445.7624906103006, 1248.3010971879073, 1003.2248235536898, + 800.3569934455338, 492.46401601370366, 296.16241979265226, + 91.77500417350666, -38.63800471647813, -115.22680517786273, + -218.02462008107338, -227.33547056138087, -316.0776110268999, + -366.0958305291142, -428.37839973609385, -525.8745980450144, + -550.1880523494104, -631.8207715221583, -636.9916169523434, + -634.3736921115365, -669.2009351423957, -633.786530291454, + -667.2529736667275, -708.8436306201203, -742.5149816907281, + -814.731107088975, -862.2921911997048, -890.3734428156388, + -888.9265980197008, -838.7889039072455, -758.5054683793791, + -654.8804320872428, -520.382607467389, -414.5268135385111, + -306.43088484811983, -213.0494336069684, -162.5779940089724, + -100.87304837511337, -60.18513888854938, -9.632312886501605, + 41.499124526114485, 89.54462678122295, 149.4919972384242, + 169.6590192352408, 187.2646353965045, 174.26747497064144, + 130.4453719082088, 90.12696557685416, 28.472611612575125, + -3.2988717221444697, -27.617969415490702, -28.003972576910463, + -1.3931861270525958, 17.649586537487547, 48.74193686609138, + 51.02291679599739, 38.0389136376458, 4.8441716271170945, + -48.904218806828425, -90.86929305155026, -132.4255620094953, + -148.07510204298606, -133.42618275359803, -106.30912257683484, + -57.61546500085071, -17.453745607317767, 12.658727409013668, + 23.337978856259053, 3.8085871765765176, -23.664460816674996, + -67.08153948562934, -101.71739195372602, -122.62184574699391, + -124.77322994514856, -108.10010520855305, -77.22546047859572, + -38.76001106292668, -9.62451892783459, 13.608295878277545, + 23.566069537938787, 26.32986492143532, 25.97707242839655, + 29.696667209988508, 43.699625710246615, 64.70799137843184, + 96.57334533596033, 129.10335634506293, 164.81363165269846, + 201.74940102720464, 238.88158035201295, 304.5926145060175, + 381.57338077703554 + ], + "pressure:branch4_seg1:J6": [ + 213737.86286144046, 235523.31019861792, 315064.70775156363, + 397626.9280493233, 474511.69377158966, 521777.7777940367, + 596049.7805613125, 455831.55541285186, 479981.39488453994, + 451911.30545904185, 174574.86844451053, 256847.10518217986, + 132108.64254412026, 36167.71530600854, 95238.45452408989, + 26550.688090892058, 114910.55629985941, 39945.43365703558, + 88399.02534203388, 88393.98167799017, 1478.390152473808, + 41996.482929061975, -63217.10796992901, -20978.181644603123, + -67407.61659574298, -108988.98703590508, -2392.982340078119, + -105403.45450858516, -77664.13624998239, -53630.80660198687, + -151174.1893737403, -155735.17841384845, -194771.06322977593, + -227433.3587670755, -257790.81726031684, -235857.2479064722, + -201641.60562675478, -195986.04667559543, -143469.42939154254, + -77009.20236593584, -82367.91525050688, -76598.83303018384, + -23553.458090726566, -69371.84543361761, -65583.72131293944, + -45124.320906203044, -54737.14382741786, -24337.6911034815, + -22895.870441218434, 12153.064162754396, 11745.916295050094, + -9282.098728316729, -402.4292243478628, -46544.03013649135, + -61923.73465179371, -86784.73713040254, -95654.81119348425, + -78487.84612163548, -83438.38609472796, -40033.90883932663, + -34626.81754583034, -19459.821526262196, -17548.19069095661, + -43678.939108853425, -56321.821660180154, -95270.01575001245, + -110259.24785548938, -117495.53197347625, -120502.16784318029, + -94371.87157682318, -71622.97566114177, -46467.05408604761, + -28605.729354959258, -28805.995076723328, -28015.736822931805, + -58587.58179567415, -78699.56767114853, -99395.35180378836, + -118550.6742942177, -116171.45873120024, -106827.23828631546, + -87278.17810398129, -73649.68215123427, -45997.29388165192, + -43437.532571907315, -42961.821830975714, -44067.26059848949, + -54727.468734728034, -56943.90136815185, -59404.888335252675, + -47484.55463891771, -34774.895002181474, -18389.72209604489, + -3089.4509711226187, 9151.432887680308, 27606.296722874322, + 27256.18744962968, 59859.737994390074, 108092.81803125031, + 213737.86286144046 + ], + "flow:J6:branch4_seg2": [ + 381.57338077703554, 496.10353258945827, 663.8646639898568, + 835.5767638535214, 1058.9396773570847, 1238.076486268729, + 1398.6408784161529, 1507.3068898761878, 1471.6375811852245, + 1445.7624906103006, 1248.3010971879073, 1003.2248235536898, + 800.3569934455338, 492.46401601370366, 296.16241979265226, + 91.77500417350666, -38.63800471647813, -115.22680517786273, + -218.02462008107338, -227.33547056138087, -316.0776110268999, + -366.0958305291142, -428.37839973609385, -525.8745980450144, + -550.1880523494104, -631.8207715221583, -636.9916169523434, + -634.3736921115365, -669.2009351423957, -633.786530291454, + -667.2529736667275, -708.8436306201203, -742.5149816907281, + -814.731107088975, -862.2921911997048, -890.3734428156388, + -888.9265980197008, -838.7889039072455, -758.5054683793791, + -654.8804320872428, -520.382607467389, -414.5268135385111, + -306.43088484811983, -213.0494336069684, -162.5779940089724, + -100.87304837511337, -60.18513888854938, -9.632312886501605, + 41.499124526114485, 89.54462678122295, 149.4919972384242, + 169.6590192352408, 187.2646353965045, 174.26747497064144, + 130.4453719082088, 90.12696557685416, 28.472611612575125, + -3.2988717221444697, -27.617969415490702, -28.003972576910463, + -1.3931861270525958, 17.649586537487547, 48.74193686609138, + 51.02291679599739, 38.0389136376458, 4.8441716271170945, + -48.904218806828425, -90.86929305155026, -132.4255620094953, + -148.07510204298606, -133.42618275359803, -106.30912257683484, + -57.61546500085071, -17.453745607317767, 12.658727409013668, + 23.337978856259053, 3.8085871765765176, -23.664460816674996, + -67.08153948562934, -101.71739195372602, -122.62184574699391, + -124.77322994514856, -108.10010520855305, -77.22546047859572, + -38.76001106292668, -9.62451892783459, 13.608295878277545, + 23.566069537938787, 26.32986492143532, 25.97707242839655, + 29.696667209988508, 43.699625710246615, 64.70799137843184, + 96.57334533596033, 129.10335634506293, 164.81363165269846, + 201.74940102720464, 238.88158035201295, 304.5926145060175, + 381.57338077703554 + ], + "pressure:J6:branch4_seg2": [ + 213737.86286144046, 235523.31019861792, 315064.70775156363, + 397626.9280493233, 474511.69377158966, 521777.7777940367, + 596049.7805613125, 455831.55541285186, 479981.39488453994, + 451911.30545904185, 174574.86844451053, 256847.10518217986, + 132108.64254412026, 36167.71530600854, 95238.45452408989, + 26550.688090892058, 114910.55629985941, 39945.43365703558, + 88399.02534203388, 88393.98167799017, 1478.390152473808, + 41996.482929061975, -63217.10796992901, -20978.181644603123, + -67407.61659574298, -108988.98703590508, -2392.982340078119, + -105403.45450858516, -77664.13624998239, -53630.80660198687, + -151174.1893737403, -155735.17841384845, -194771.06322977593, + -227433.3587670755, -257790.81726031684, -235857.2479064722, + -201641.60562675478, -195986.04667559543, -143469.42939154254, + -77009.20236593584, -82367.91525050688, -76598.83303018384, + -23553.458090726566, -69371.84543361761, -65583.72131293944, + -45124.320906203044, -54737.14382741786, -24337.6911034815, + -22895.870441218434, 12153.064162754396, 11745.916295050094, + -9282.098728316729, -402.4292243478628, -46544.03013649135, + -61923.73465179371, -86784.73713040254, -95654.81119348425, + -78487.84612163548, -83438.38609472796, -40033.90883932663, + -34626.81754583034, -19459.821526262196, -17548.19069095661, + -43678.939108853425, -56321.821660180154, -95270.01575001245, + -110259.24785548938, -117495.53197347625, -120502.16784318029, + -94371.87157682318, -71622.97566114177, -46467.05408604761, + -28605.729354959258, -28805.995076723328, -28015.736822931805, + -58587.58179567415, -78699.56767114853, -99395.35180378836, + -118550.6742942177, -116171.45873120024, -106827.23828631546, + -87278.17810398129, -73649.68215123427, -45997.29388165192, + -43437.532571907315, -42961.821830975714, -44067.26059848949, + -54727.468734728034, -56943.90136815185, -59404.888335252675, + -47484.55463891771, -34774.895002181474, -18389.72209604489, + -3089.4509711226187, 9151.432887680308, 27606.296722874322, + 27256.18744962968, 59859.737994390074, 108092.81803125031, + 213737.86286144046 + ], + "flow:branch5_seg0:J7": [ + 130.46227915156402, 175.73246430381434, 241.45509858069423, + 311.0291579858608, 368.79180288831805, 421.173705556247, + 450.79748181188734, 418.1559926825073, 359.3752160180821, + 287.33012674978846, 158.14794817883123, 32.0495822732003, + -57.07540764990964, -147.21336126407425, -204.8502158835173, + -216.26463011636764, -204.76174612611118, -185.00483311034193, + -160.5835810165481, -135.81710852826635, -127.33010554177692, + -134.7682408305187, -147.05564750752035, -155.3336079310439, + -163.25927456365028, -168.32334183389867, -149.53693151516947, + -132.12442638857354, -127.61082067917832, -113.63657496235669, + -114.6652567456643, -140.75263486322538, -161.33402020184414, + -178.2883844611947, -201.83731304228772, -201.95731976659303, + -172.27580521049592, -140.90168924582562, -96.37343108157353, + -33.03962459540969, 12.966755688014732, 40.28877241796379, + 66.55493473429061, 73.91164864799399, 63.8347630909926, 57.58140981547106, + 55.04567857739685, 53.75647464686712, 58.45906328929925, + 67.99737733194726, 75.04813777583178, 70.46510152508033, + 56.79898275358421, 36.03446067533558, 6.031299255446235, + -24.46301093177834, -45.31528201106523, -53.959739137089244, + -50.32370942297672, -34.27960942433692, -11.63545358962605, + 8.77183306159067, 20.59913991561365, 20.012025059992993, + 6.3172501367589255, -16.347366698029173, -41.29929454359893, + -59.95490517565598, -67.08244140374225, -61.26133096460684, + -41.19688906550203, -13.08851131544276, 12.378186568562322, + 30.862610000160114, 37.8748490433219, 29.655906882581913, + 9.973828383566358, -14.232341114163521, -36.09447395222528, + -50.65993033888438, -51.84387676594233, -41.29894909662085, + -24.16178890961504, -2.007292563388787, 16.982550105566144, + 27.153698406241645, 29.676916670422216, 25.807321244619093, + 18.34641377502425, 11.919916726201166, 10.560818180364468, + 15.939490832264688, 26.165580116337022, 38.315074367395326, + 50.71689370918581, 61.97946683001398, 69.25700798143616, + 79.98039010255819, 101.81672870805652, 130.46227915156402 + ], + "pressure:branch5_seg0:J7": [ + 265787.3499804679, 279989.3923237808, 410002.2924482929, + 484771.11746371386, 564708.3640934894, 649246.8780454852, + 615730.7608200252, 553980.172888793, 503409.1146245606, 367140.0516746551, + 202035.86345347887, 117337.18090481542, 57600.652106372574, + -46212.5048375586, -47938.11437896582, -10883.428912609777, + -7899.953700326859, 18238.41132464539, 23871.93892244055, + 28398.36031721406, 673.4578263844246, -52561.46494921353, + -57989.97130595382, -87701.08869775092, -110489.79069379136, + -91683.81765831125, -75429.37054765326, -79465.12322506674, + -90399.40124638415, -82386.15257745472, -131597.8006780242, + -206566.38643438905, -209524.38872281683, -252425.73703310775, + -309243.78379105945, -248786.77324823756, -209168.80328882363, + -201233.95802394047, -107847.34493836128, -44627.351036835724, + -41117.95466395925, -10163.553492276986, 6696.914632849016, + -17945.106657263463, -33067.751951703714, -21867.630736011295, + -16961.51181320866, -10786.908461470795, 14814.486097600631, + 30933.086417628485, 35958.978761797815, 16767.078946316116, + -7312.7213105824, -32451.112741391393, -80890.58019706164, + -103176.01526961314, -108943.11629251801, -105238.01836590655, + -81513.8531985888, -52609.898399570324, -23206.87768742736, + -11971.326473902753, -16639.625947950666, -35502.83163480913, + -70691.30633102979, -102463.34859934733, -131159.89603911003, + -138601.35644756976, -129284.30768113112, -111310.97837654986, + -67723.55829901299, -35658.914310820175, -18161.670581808885, + -8002.012245472209, -21975.884501864806, -50696.94459884658, + -84167.90032651272, -111850.40331452132, -128016.9198411957, + -130459.19192211075, -113259.81575986795, -90642.82526622429, + -64978.95524886927, -38154.683842717044, -28990.665464660233, + -29726.15244235204, -36287.389126262744, -46771.69905967597, + -54352.89520731817, -54728.91685580629, -44642.939952950794, + -26301.92862246146, -8726.328843552426, 9818.691825727834, + 26726.615823169963, 36460.12284366114, 49811.78048090745, + 80485.23650014059, 124942.85113759353, 265787.3499804679 + ], + "flow:J7:branch5_seg1": [ + 130.46227915156402, 175.73246430381434, 241.45509858069423, + 311.0291579858608, 368.79180288831805, 421.173705556247, + 450.79748181188734, 418.1559926825073, 359.3752160180821, + 287.33012674978846, 158.14794817883123, 32.0495822732003, + -57.07540764990964, -147.21336126407425, -204.8502158835173, + -216.26463011636764, -204.76174612611118, -185.00483311034193, + -160.5835810165481, -135.81710852826635, -127.33010554177692, + -134.7682408305187, -147.05564750752035, -155.3336079310439, + -163.25927456365028, -168.32334183389867, -149.53693151516947, + -132.12442638857354, -127.61082067917832, -113.63657496235669, + -114.6652567456643, -140.75263486322538, -161.33402020184414, + -178.2883844611947, -201.83731304228772, -201.95731976659303, + -172.27580521049592, -140.90168924582562, -96.37343108157353, + -33.03962459540969, 12.966755688014732, 40.28877241796379, + 66.55493473429061, 73.91164864799399, 63.8347630909926, 57.58140981547106, + 55.04567857739685, 53.75647464686712, 58.45906328929925, + 67.99737733194726, 75.04813777583178, 70.46510152508033, + 56.79898275358421, 36.03446067533558, 6.031299255446235, + -24.46301093177834, -45.31528201106523, -53.959739137089244, + -50.32370942297672, -34.27960942433692, -11.63545358962605, + 8.77183306159067, 20.59913991561365, 20.012025059992993, + 6.3172501367589255, -16.347366698029173, -41.29929454359893, + -59.95490517565598, -67.08244140374225, -61.26133096460684, + -41.19688906550203, -13.08851131544276, 12.378186568562322, + 30.862610000160114, 37.8748490433219, 29.655906882581913, + 9.973828383566358, -14.232341114163521, -36.09447395222528, + -50.65993033888438, -51.84387676594233, -41.29894909662085, + -24.16178890961504, -2.007292563388787, 16.982550105566144, + 27.153698406241645, 29.676916670422216, 25.807321244619093, + 18.34641377502425, 11.919916726201166, 10.560818180364468, + 15.939490832264688, 26.165580116337022, 38.315074367395326, + 50.71689370918581, 61.97946683001398, 69.25700798143616, + 79.98039010255819, 101.81672870805652, 130.46227915156402 + ], + "pressure:J7:branch5_seg1": [ + 265787.3499804679, 279989.3923237808, 410002.2924482929, + 484771.11746371386, 564708.3640934894, 649246.8780454852, + 615730.7608200252, 553980.172888793, 503409.1146245606, 367140.0516746551, + 202035.86345347887, 117337.18090481542, 57600.652106372574, + -46212.5048375586, -47938.11437896582, -10883.428912609777, + -7899.953700326859, 18238.41132464539, 23871.93892244055, + 28398.36031721406, 673.4578263844246, -52561.46494921353, + -57989.97130595382, -87701.08869775092, -110489.79069379136, + -91683.81765831125, -75429.37054765326, -79465.12322506674, + -90399.40124638415, -82386.15257745472, -131597.8006780242, + -206566.38643438905, -209524.38872281683, -252425.73703310775, + -309243.78379105945, -248786.77324823756, -209168.80328882363, + -201233.95802394047, -107847.34493836128, -44627.351036835724, + -41117.95466395925, -10163.553492276986, 6696.914632849016, + -17945.106657263463, -33067.751951703714, -21867.630736011295, + -16961.51181320866, -10786.908461470795, 14814.486097600631, + 30933.086417628485, 35958.978761797815, 16767.078946316116, + -7312.7213105824, -32451.112741391393, -80890.58019706164, + -103176.01526961314, -108943.11629251801, -105238.01836590655, + -81513.8531985888, -52609.898399570324, -23206.87768742736, + -11971.326473902753, -16639.625947950666, -35502.83163480913, + -70691.30633102979, -102463.34859934733, -131159.89603911003, + -138601.35644756976, -129284.30768113112, -111310.97837654986, + -67723.55829901299, -35658.914310820175, -18161.670581808885, + -8002.012245472209, -21975.884501864806, -50696.94459884658, + -84167.90032651272, -111850.40331452132, -128016.9198411957, + -130459.19192211075, -113259.81575986795, -90642.82526622429, + -64978.95524886927, -38154.683842717044, -28990.665464660233, + -29726.15244235204, -36287.389126262744, -46771.69905967597, + -54352.89520731817, -54728.91685580629, -44642.939952950794, + -26301.92862246146, -8726.328843552426, 9818.691825727834, + 26726.615823169963, 36460.12284366114, 49811.78048090745, + 80485.23650014059, 124942.85113759353, 265787.3499804679 + ], + "flow:branch5_seg1:J8": [ + 130.02854754605255, 174.93768051083887, 240.47194297323693, + 310.24160030825664, 368.50128752390106, 420.2272243866252, + 450.95201754258227, 418.36457135178466, 359.35257229084425, + 288.96537419021604, 158.45396949789253, 32.41761514314376, + -56.297404449567836, -146.82032615361135, -205.17934662696234, + -216.46117518532515, -204.95591335553877, -185.11857615411841, + -160.67691982118964, -135.5763305970265, -127.19940844125483, + -134.29752755465213, -146.8362003701145, -155.1979584158885, + -162.925930591953, -168.55222930528953, -149.42836230928933, + -131.8911732203099, -128.00043042333158, -113.38251144707256, + -114.21406760649876, -140.91803810930645, -161.24728948537074, + -178.0909268640535, -201.9349694297265, -202.45679844122276, + -172.57581109237458, -140.8059149238985, -97.00379565113202, + -33.135233536818134, 12.971116325757723, 40.17206490213944, + 66.56869710865728, 74.1865606796758, 63.74484176496133, 57.55737611919973, + 55.001944130241206, 53.71081960342187, 58.28447111715632, + 67.95763933914876, 75.21219734479521, 70.61032428728358, + 57.01357562021392, 36.25253889105757, 6.265362205932495, + -24.380264659990917, -45.27094050741157, -54.01013618489639, + -50.49859804551305, -34.467568184317045, -11.729316591052116, + 8.733983109793332, 20.70284454626382, 20.205616967989325, + 6.511478396741537, -16.13510015009532, -41.27316775858689, + -59.94390014945407, -67.20937705752726, -61.52189388998684, + -41.43892319771022, -13.324463327098439, 12.348079372649108, + 30.838169873806187, 38.03443317444997, 29.861054960320345, + 10.092865060483586, -14.0480250003893, -36.06940620824823, + -50.685332171573776, -51.95644582190395, -41.44845154385621, + -24.36359698762964, -2.1702583310769645, 17.017120971559628, + 27.172399942156158, 29.75926051626121, 25.880589800362458, + 18.36611732890254, 11.891921333161273, 10.470286821257018, + 15.799141348133018, 26.03550043663879, 38.20384311190998, + 50.57379466950388, 61.91209137112564, 69.09267345095287, + 79.71638439633603, 101.59111974943514, 130.02854754605255 + ], + "pressure:branch5_seg1:J8": [ + 229324.31517338974, 223605.69990032172, 329003.7779859739, + 414284.86891592015, 499589.16288300394, 583282.4611875972, + 606150.5865466862, 580780.3736524427, 542240.375680493, + 457039.54296978924, 318383.7223146029, 216436.37278494288, + 137098.0457268261, 35698.61388258712, -8206.949317007377, + -7139.801177294198, -10487.49476796177, 3005.9184808402947, + 10041.081144944306, 18798.104692115794, 4357.280366980173, + -29818.213267750496, -46632.00723980948, -72097.59289776061, + -94406.4948571925, -97019.45129922156, -87027.19897873061, + -85850.29236232658, -94774.63241575217, -88697.54984797996, + -116762.79151614678, -172234.64024639069, -191473.30837099883, + -228286.69261746467, -277304.11128363264, -259124.72622884333, + -233144.0007625548, -218717.02802240057, -158388.72424508593, + -96032.99864647, -69255.12854058527, -37974.37676350814, + -13443.14810820699, -16395.922092767705, -25862.66608801599, + -20909.719416829917, -17380.049471956558, -12468.342729957774, + 4262.2983175378395, 20452.919621899855, 30293.125886984057, + 22593.312107207486, 7286.472369191121, -13354.056216111909, + -50694.24658407022, -78618.21722165028, -94005.2553660318, + -99869.4882312692, -89433.67354344048, -69310.50242937698, + -44312.11621521235, -27672.220289003457, -22359.682635208294, + -29927.04389288613, -52822.459331212565, -79770.28790228555, + -108127.93284506408, -124123.7106439452, -126858.14094327827, + -118822.2280536688, -89832.26526382999, -60949.41817969441, + -38199.74528798787, -22299.915113252162, -22676.235253482413, + -38376.38214596176, -63682.52608209898, -89220.69644273407, + -110162.59144306864, -121014.24898355556, -116433.16377228835, + -102463.96764788542, -82457.13673160801, -58716.6098993601, + -42924.935407623445, -36594.93275006075, -36443.14300299016, + -41922.97815655663, -48317.8505347655, -51200.43914355907, + -46810.50812379363, -34818.01268760253, -19955.828717796103, + -3193.2140108589956, 13630.941480865346, 27085.92088567759, + 40376.46758359089, 63717.505951449304, 100108.91334993696, + 229324.31517338974 + ], + "flow:J8:branch5_seg2": [ + 130.02854754605255, 174.93768051083887, 240.47194297323693, + 310.24160030825664, 368.50128752390106, 420.2272243866252, + 450.95201754258227, 418.36457135178466, 359.35257229084425, + 288.96537419021604, 158.45396949789253, 32.41761514314376, + -56.297404449567836, -146.82032615361135, -205.17934662696234, + -216.46117518532515, -204.95591335553877, -185.11857615411841, + -160.67691982118964, -135.5763305970265, -127.19940844125483, + -134.29752755465213, -146.8362003701145, -155.1979584158885, + -162.925930591953, -168.55222930528953, -149.42836230928933, + -131.8911732203099, -128.00043042333158, -113.38251144707256, + -114.21406760649876, -140.91803810930645, -161.24728948537074, + -178.0909268640535, -201.9349694297265, -202.45679844122276, + -172.57581109237458, -140.8059149238985, -97.00379565113202, + -33.135233536818134, 12.971116325757723, 40.17206490213944, + 66.56869710865728, 74.1865606796758, 63.74484176496133, 57.55737611919973, + 55.001944130241206, 53.71081960342187, 58.28447111715632, + 67.95763933914876, 75.21219734479521, 70.61032428728358, + 57.01357562021392, 36.25253889105757, 6.265362205932495, + -24.380264659990917, -45.27094050741157, -54.01013618489639, + -50.49859804551305, -34.467568184317045, -11.729316591052116, + 8.733983109793332, 20.70284454626382, 20.205616967989325, + 6.511478396741537, -16.13510015009532, -41.27316775858689, + -59.94390014945407, -67.20937705752726, -61.52189388998684, + -41.43892319771022, -13.324463327098439, 12.348079372649108, + 30.838169873806187, 38.03443317444997, 29.861054960320345, + 10.092865060483586, -14.0480250003893, -36.06940620824823, + -50.685332171573776, -51.95644582190395, -41.44845154385621, + -24.36359698762964, -2.1702583310769645, 17.017120971559628, + 27.172399942156158, 29.75926051626121, 25.880589800362458, + 18.36611732890254, 11.891921333161273, 10.470286821257018, + 15.799141348133018, 26.03550043663879, 38.20384311190998, + 50.57379466950388, 61.91209137112564, 69.09267345095287, + 79.71638439633603, 101.59111974943514, 130.02854754605255 + ], + "pressure:J8:branch5_seg2": [ + 229324.31517338974, 223605.69990032172, 329003.7779859739, + 414284.86891592015, 499589.16288300394, 583282.4611875972, + 606150.5865466862, 580780.3736524427, 542240.375680493, + 457039.54296978924, 318383.7223146029, 216436.37278494288, + 137098.0457268261, 35698.61388258712, -8206.949317007377, + -7139.801177294198, -10487.49476796177, 3005.9184808402947, + 10041.081144944306, 18798.104692115794, 4357.280366980173, + -29818.213267750496, -46632.00723980948, -72097.59289776061, + -94406.4948571925, -97019.45129922156, -87027.19897873061, + -85850.29236232658, -94774.63241575217, -88697.54984797996, + -116762.79151614678, -172234.64024639069, -191473.30837099883, + -228286.69261746467, -277304.11128363264, -259124.72622884333, + -233144.0007625548, -218717.02802240057, -158388.72424508593, + -96032.99864647, -69255.12854058527, -37974.37676350814, + -13443.14810820699, -16395.922092767705, -25862.66608801599, + -20909.719416829917, -17380.049471956558, -12468.342729957774, + 4262.2983175378395, 20452.919621899855, 30293.125886984057, + 22593.312107207486, 7286.472369191121, -13354.056216111909, + -50694.24658407022, -78618.21722165028, -94005.2553660318, + -99869.4882312692, -89433.67354344048, -69310.50242937698, + -44312.11621521235, -27672.220289003457, -22359.682635208294, + -29927.04389288613, -52822.459331212565, -79770.28790228555, + -108127.93284506408, -124123.7106439452, -126858.14094327827, + -118822.2280536688, -89832.26526382999, -60949.41817969441, + -38199.74528798787, -22299.915113252162, -22676.235253482413, + -38376.38214596176, -63682.52608209898, -89220.69644273407, + -110162.59144306864, -121014.24898355556, -116433.16377228835, + -102463.96764788542, -82457.13673160801, -58716.6098993601, + -42924.935407623445, -36594.93275006075, -36443.14300299016, + -41922.97815655663, -48317.8505347655, -51200.43914355907, + -46810.50812379363, -34818.01268760253, -19955.828717796103, + -3193.2140108589956, 13630.941480865346, 27085.92088567759, + 40376.46758359089, 63717.505951449304, 100108.91334993696, + 229324.31517338974 + ], + "flow:branch6_seg0:J9": [ + 33.452953218314995, 46.38377166512833, 64.375598787605, 81.10705661007133, + 92.00949123049156, 102.81238108641622, 106.9294648147519, + 93.47384963774587, 77.42421089223662, 58.28595685043806, + 27.091699443309345, 3.070031924586366, -11.918831027414827, + -28.24387487342813, -34.98424589773659, -30.62387576611716, + -24.716293797544214, -20.341534497895836, -16.16017707415341, + -13.492985453329398, -15.065630698270612, -21.19692223444768, + -26.901603876585906, -29.220865033951295, -32.23505079313662, + -32.98510832219007, -28.082131652404186, -25.392713147307195, + -25.5724847731014, -23.8876617087552, -27.604152034470015, + -37.254018760212595, -41.58209445814014, -45.92772754178112, + -53.23778875140997, -49.56534001264568, -39.31872534456938, + -33.44869961283418, -23.000142936639456, -7.064300505151569, + -0.1653562840370433, 2.72847433680067, 7.098251782906153, + 6.049370316106888, 2.1198839774851437, 1.5676148525696643, + 2.388178121314093, 3.313045550961382, 6.069191101368446, 9.82137426282898, + 11.673397602731416, 9.665020827041246, 5.899047563298311, + 1.0863097168454234, -6.035385262258178, -12.395692790769013, + -14.823384353338167, -14.567763464806395, -11.484896029536483, + -5.959101863055229, -0.24927480015588888, 3.7152724250534015, + 4.650215665169219, 2.449691526893055, -2.601872123516211, + -8.830643146518542, -14.468195666071843, -17.413590351334562, + -17.08170086435917, -13.969541501087676, -7.335060940634916, + -0.11276559830034096, 4.688277567474841, 7.2941205284242585, + 6.820998164766794, 2.6257127254561032, -3.2668650192944764, + -9.07084024142852, -13.244325405791422, -14.860748293303871, + -13.08110152817416, -8.903271619343302, -3.9185101519313026, + 1.4180806837062099, 4.7105091829965975, 5.4891801258686135, + 4.67538383440768, 2.821909027963824, 0.8489675666254736, + -0.20985813536801093, 0.46757693398577915, 2.922289105758938, + 6.195282151249773, 9.314859346615746, 12.185068536532825, + 14.533800623098037, 15.97605711092438, 19.05033878902733, + 25.122967856823852, 33.452953218314995 + ], + "pressure:branch6_seg0:J9": [ + 261614.06841059006, 282723.2489750596, 409181.13291185285, + 489355.14608847885, 570147.7393012078, 638915.1240103756, + 599405.9122136951, 529548.1290076063, 486632.0762855671, + 343230.22824382066, 148804.8937718588, 102711.2158268803, + 42816.533763905485, -61106.73868692848, -47882.255116671025, + -11508.259566720482, 8036.324046914278, 28310.02650319221, + 41661.30126322411, 41019.86554411709, 4368.401232624447, + -36127.54683658458, -55245.25722410095, -78974.10017688626, + -104184.50667236235, -82935.1902929498, -55545.251899322735, + -77402.4252408915, -82283.04447431504, -66362.21007713518, + -128696.30598960229, -207937.093523552, -208647.65874605044, + -246333.21288035455, -309901.95191650494, -251561.33041872096, + -200734.09207136813, -189087.6432729976, -103156.33294590542, + -38771.6438868823, -36448.077018965945, -8289.33944252413, + 8698.444190143648, -23902.91648234389, -39751.27568351472, + -26719.936457705, -23192.87377733353, -13108.24347078347, + 9751.67694932561, 29823.09620884269, 35328.78534431008, + 13267.255938298096, -10243.564802063998, -39454.997354606596, + -83783.64628574211, -107982.25084248437, -111610.89286345926, + -104454.7862626885, -81743.92917675957, -47574.72590346087, + -19095.461101347322, -7761.729203603874, -14254.437027406997, + -36503.35189611548, -72300.23639970447, -106605.70794835387, + -134385.6054482756, -140154.17741392247, -129138.4475083251, + -109403.16699842873, -65534.44939477979, -30867.171214655373, + -13008.881967577732, -6046.915104394953, -20950.792531016155, + -53338.08210130545, -88261.51606515898, -115155.69017465727, + -131544.4913462311, -130837.01008545638, -111921.48606545512, + -88376.4186346106, -62492.10684750735, -33448.11088696739, + -25638.738687744048, -28743.837065645297, -36302.68541535618, + -48771.9175897592, -56466.75962446634, -56447.689970380256, + -45332.02387523028, -26846.04449916772, -8073.965009251867, + 10718.50954547891, 27036.17164132861, 35619.33754368587, + 47917.057221707306, 80379.92858475303, 125808.7699684277, + 261614.06841059006 + ], + "flow:J9:branch6_seg1": [ + 33.452953218314995, 46.38377166512833, 64.375598787605, 81.10705661007133, + 92.00949123049156, 102.81238108641622, 106.9294648147519, + 93.47384963774587, 77.42421089223662, 58.28595685043806, + 27.091699443309345, 3.070031924586366, -11.918831027414827, + -28.24387487342813, -34.98424589773659, -30.62387576611716, + -24.716293797544214, -20.341534497895836, -16.16017707415341, + -13.492985453329398, -15.065630698270612, -21.19692223444768, + -26.901603876585906, -29.220865033951295, -32.23505079313662, + -32.98510832219007, -28.082131652404186, -25.392713147307195, + -25.5724847731014, -23.8876617087552, -27.604152034470015, + -37.254018760212595, -41.58209445814014, -45.92772754178112, + -53.23778875140997, -49.56534001264568, -39.31872534456938, + -33.44869961283418, -23.000142936639456, -7.064300505151569, + -0.1653562840370433, 2.72847433680067, 7.098251782906153, + 6.049370316106888, 2.1198839774851437, 1.5676148525696643, + 2.388178121314093, 3.313045550961382, 6.069191101368446, 9.82137426282898, + 11.673397602731416, 9.665020827041246, 5.899047563298311, + 1.0863097168454234, -6.035385262258178, -12.395692790769013, + -14.823384353338167, -14.567763464806395, -11.484896029536483, + -5.959101863055229, -0.24927480015588888, 3.7152724250534015, + 4.650215665169219, 2.449691526893055, -2.601872123516211, + -8.830643146518542, -14.468195666071843, -17.413590351334562, + -17.08170086435917, -13.969541501087676, -7.335060940634916, + -0.11276559830034096, 4.688277567474841, 7.2941205284242585, + 6.820998164766794, 2.6257127254561032, -3.2668650192944764, + -9.07084024142852, -13.244325405791422, -14.860748293303871, + -13.08110152817416, -8.903271619343302, -3.9185101519313026, + 1.4180806837062099, 4.7105091829965975, 5.4891801258686135, + 4.67538383440768, 2.821909027963824, 0.8489675666254736, + -0.20985813536801093, 0.46757693398577915, 2.922289105758938, + 6.195282151249773, 9.314859346615746, 12.185068536532825, + 14.533800623098037, 15.97605711092438, 19.05033878902733, + 25.122967856823852, 33.452953218314995 + ], + "pressure:J9:branch6_seg1": [ + 261614.06841059006, 282723.2489750596, 409181.13291185285, + 489355.14608847885, 570147.7393012078, 638915.1240103756, + 599405.9122136951, 529548.1290076063, 486632.0762855671, + 343230.22824382066, 148804.8937718588, 102711.2158268803, + 42816.533763905485, -61106.73868692848, -47882.255116671025, + -11508.259566720482, 8036.324046914278, 28310.02650319221, + 41661.30126322411, 41019.86554411709, 4368.401232624447, + -36127.54683658458, -55245.25722410095, -78974.10017688626, + -104184.50667236235, -82935.1902929498, -55545.251899322735, + -77402.4252408915, -82283.04447431504, -66362.21007713518, + -128696.30598960229, -207937.093523552, -208647.65874605044, + -246333.21288035455, -309901.95191650494, -251561.33041872096, + -200734.09207136813, -189087.6432729976, -103156.33294590542, + -38771.6438868823, -36448.077018965945, -8289.33944252413, + 8698.444190143648, -23902.91648234389, -39751.27568351472, + -26719.936457705, -23192.87377733353, -13108.24347078347, + 9751.67694932561, 29823.09620884269, 35328.78534431008, + 13267.255938298096, -10243.564802063998, -39454.997354606596, + -83783.64628574211, -107982.25084248437, -111610.89286345926, + -104454.7862626885, -81743.92917675957, -47574.72590346087, + -19095.461101347322, -7761.729203603874, -14254.437027406997, + -36503.35189611548, -72300.23639970447, -106605.70794835387, + -134385.6054482756, -140154.17741392247, -129138.4475083251, + -109403.16699842873, -65534.44939477979, -30867.171214655373, + -13008.881967577732, -6046.915104394953, -20950.792531016155, + -53338.08210130545, -88261.51606515898, -115155.69017465727, + -131544.4913462311, -130837.01008545638, -111921.48606545512, + -88376.4186346106, -62492.10684750735, -33448.11088696739, + -25638.738687744048, -28743.837065645297, -36302.68541535618, + -48771.9175897592, -56466.75962446634, -56447.689970380256, + -45332.02387523028, -26846.04449916772, -8073.965009251867, + 10718.50954547891, 27036.17164132861, 35619.33754368587, + 47917.057221707306, 80379.92858475303, 125808.7699684277, + 261614.06841059006 + ], + "flow:branch6_seg1:J10": [ + 33.1210567145812, 45.90642715726296, 63.55152804110279, 80.54089961840495, + 91.63143700450584, 102.5977092138559, 106.91849122510342, + 93.13269468901046, 77.5957828718337, 59.55823893337955, + 27.327885429608987, 2.8815558402817825, -11.303975812138347, + -27.89552791241836, -35.222054661826334, -30.776107910532993, + -24.877437528866434, -20.56927308953574, -16.037245511841, + -13.346490321279422, -14.961370999102174, -20.970443682411364, + -26.680765934543942, -28.974405673489525, -32.199530093899284, + -33.14457126079039, -27.86031115465343, -25.212368475609377, + -25.941434847958302, -23.84155804867322, -27.185247656462867, + -37.31232177056231, -41.80156953146513, -45.758358899848005, + -53.09477190025222, -49.96007506466634, -39.62824246794698, + -33.41872855687429, -23.123390965508655, -7.183980041297872, + -0.2074772536644838, 2.611700371718969, 7.234649456786017, + 6.19842014862997, 2.106745608884643, 1.5073859986461688, + 2.3783090851151942, 3.2830536267715402, 5.980999785495418, + 9.789305052971653, 11.735082471147736, 9.827504877168092, + 6.0570081826795406, 1.1883624460950837, -5.88602708597929, + -12.345760004571932, -14.780525064058393, -14.593458658983291, + -11.600313345841842, -6.083297107576129, -0.3432533520988732, + 3.740585482867242, 4.707980282757985, 2.5992788256884354, + -2.450840289590041, -8.742399570451761, -14.418189237517536, + -17.474228018454912, -17.15789720536393, -14.074659440635138, + -7.549844528191407, -0.25773516945245545, 4.618190853024249, + 7.320340435139839, 6.9269452849169415, 2.7532241617414126, + -3.1608490664110134, -9.00670172923203, -13.202297592768653, + -14.929734346825501, -13.134674000612772, -8.973077969728935, + -4.0999308781307935, 1.3124292284664307, 4.727614940502126, + 5.522968812780345, 4.732852632015644, 2.8829655494765767, + 0.84881995208857, -0.23849724147334453, 0.4186281660494842, + 2.8290977729412736, 6.108383275755104, 9.222762851641722, + 12.12332759403608, 14.490455389068252, 15.8348084029411, + 18.857203151744592, 25.09664631959307, 33.1210567145812 + ], + "pressure:branch6_seg1:J10": [ + 246814.46311572008, 262479.35416092165, 380001.00122267666, + 470234.0835253042, 554788.4798738067, 620480.6073790017, + 590756.9831946159, 541219.6385462633, 501404.44539822737, + 368313.19170665956, 176362.5649232514, 119995.7654765594, + 64651.21652681027, -44053.582515733295, -46982.807684821804, + -16940.463592507447, 2694.5094516587546, 24696.466898618022, + 41218.17016058414, 38909.76729751359, 9263.693175099657, + -25757.746284015517, -47835.50530142556, -75239.2900844614, + -99496.1141148517, -81268.61166964183, -57724.878816198, + -76862.40142621352, -84296.44430006461, -63171.119989546554, + -117599.42194302996, -199242.49456587204, -204683.08714371303, + -235170.16458823578, -298973.88476285886, -263971.110584518, + -208484.6362446008, -188865.72691592615, -118802.36785880532, + -55108.443243576854, -39235.32397688089, -12147.191867082403, + 5314.824228682447, -20071.381307415428, -36847.54316890372, + -28124.034463574324, -23825.477331915925, -14617.656371194767, + 5151.672667871383, 25549.364297078686, 34735.54303579352, + 17272.61995513285, -6249.5658454738705, -34005.62109633509, + -74165.05752851938, -101923.05652327093, -109565.15550362477, + -104943.88467781131, -86222.60647765227, -54006.74902926266, + -24568.745638427314, -10679.798224380984, -13961.948078211573, + -32433.512804032456, -65754.92698192639, -99512.0456447423, + -128518.38162111207, -137794.03758967912, -129878.6768689435, + -113189.75078677296, -74907.82208213386, -37705.04728068763, + -17194.55422140658, -8041.25406674272, -18738.85507195496, + -47654.904353230064, -81436.41065690697, -108880.34381487881, + -127074.65923629601, -129896.78523851358, -114080.76397244738, + -93066.72969285102, -68998.10502587931, -38398.08515958103, + -27804.456294056206, -28872.77701214472, -34988.540740701734, + -46575.036185892954, -54953.61706645014, -55853.38466703288, + -47017.013700169926, -30633.64896653319, -12177.339963887987, + 6873.291184909934, 23273.497787572815, 32089.87836127913, + 44659.91130410416, 74446.7504371447, 117665.06786122522, + 246814.46311572008 + ], + "flow:J10:branch6_seg2": [ + 33.1210567145812, 45.90642715726296, 63.55152804110279, 80.54089961840495, + 91.63143700450584, 102.5977092138559, 106.91849122510342, + 93.13269468901046, 77.5957828718337, 59.55823893337955, + 27.327885429608987, 2.8815558402817825, -11.303975812138347, + -27.89552791241836, -35.222054661826334, -30.776107910532993, + -24.877437528866434, -20.56927308953574, -16.037245511841, + -13.346490321279422, -14.961370999102174, -20.970443682411364, + -26.680765934543942, -28.974405673489525, -32.199530093899284, + -33.14457126079039, -27.86031115465343, -25.212368475609377, + -25.941434847958302, -23.84155804867322, -27.185247656462867, + -37.31232177056231, -41.80156953146513, -45.758358899848005, + -53.09477190025222, -49.96007506466634, -39.62824246794698, + -33.41872855687429, -23.123390965508655, -7.183980041297872, + -0.2074772536644838, 2.611700371718969, 7.234649456786017, + 6.19842014862997, 2.106745608884643, 1.5073859986461688, + 2.3783090851151942, 3.2830536267715402, 5.980999785495418, + 9.789305052971653, 11.735082471147736, 9.827504877168092, + 6.0570081826795406, 1.1883624460950837, -5.88602708597929, + -12.345760004571932, -14.780525064058393, -14.593458658983291, + -11.600313345841842, -6.083297107576129, -0.3432533520988732, + 3.740585482867242, 4.707980282757985, 2.5992788256884354, + -2.450840289590041, -8.742399570451761, -14.418189237517536, + -17.474228018454912, -17.15789720536393, -14.074659440635138, + -7.549844528191407, -0.25773516945245545, 4.618190853024249, + 7.320340435139839, 6.9269452849169415, 2.7532241617414126, + -3.1608490664110134, -9.00670172923203, -13.202297592768653, + -14.929734346825501, -13.134674000612772, -8.973077969728935, + -4.0999308781307935, 1.3124292284664307, 4.727614940502126, + 5.522968812780345, 4.732852632015644, 2.8829655494765767, + 0.84881995208857, -0.23849724147334453, 0.4186281660494842, + 2.8290977729412736, 6.108383275755104, 9.222762851641722, + 12.12332759403608, 14.490455389068252, 15.8348084029411, + 18.857203151744592, 25.09664631959307, 33.1210567145812 + ], + "pressure:J10:branch6_seg2": [ + 246814.46311572008, 262479.35416092165, 380001.00122267666, + 470234.0835253042, 554788.4798738067, 620480.6073790017, + 590756.9831946159, 541219.6385462633, 501404.44539822737, + 368313.19170665956, 176362.5649232514, 119995.7654765594, + 64651.21652681027, -44053.582515733295, -46982.807684821804, + -16940.463592507447, 2694.5094516587546, 24696.466898618022, + 41218.17016058414, 38909.76729751359, 9263.693175099657, + -25757.746284015517, -47835.50530142556, -75239.2900844614, + -99496.1141148517, -81268.61166964183, -57724.878816198, + -76862.40142621352, -84296.44430006461, -63171.119989546554, + -117599.42194302996, -199242.49456587204, -204683.08714371303, + -235170.16458823578, -298973.88476285886, -263971.110584518, + -208484.6362446008, -188865.72691592615, -118802.36785880532, + -55108.443243576854, -39235.32397688089, -12147.191867082403, + 5314.824228682447, -20071.381307415428, -36847.54316890372, + -28124.034463574324, -23825.477331915925, -14617.656371194767, + 5151.672667871383, 25549.364297078686, 34735.54303579352, + 17272.61995513285, -6249.5658454738705, -34005.62109633509, + -74165.05752851938, -101923.05652327093, -109565.15550362477, + -104943.88467781131, -86222.60647765227, -54006.74902926266, + -24568.745638427314, -10679.798224380984, -13961.948078211573, + -32433.512804032456, -65754.92698192639, -99512.0456447423, + -128518.38162111207, -137794.03758967912, -129878.6768689435, + -113189.75078677296, -74907.82208213386, -37705.04728068763, + -17194.55422140658, -8041.25406674272, -18738.85507195496, + -47654.904353230064, -81436.41065690697, -108880.34381487881, + -127074.65923629601, -129896.78523851358, -114080.76397244738, + -93066.72969285102, -68998.10502587931, -38398.08515958103, + -27804.456294056206, -28872.77701214472, -34988.540740701734, + -46575.036185892954, -54953.61706645014, -55853.38466703288, + -47017.013700169926, -30633.64896653319, -12177.339963887987, + 6873.291184909934, 23273.497787572815, 32089.87836127913, + 44659.91130410416, 74446.7504371447, 117665.06786122522, + 246814.46311572008 + ], + "flow:branch7_seg0:J11": [ + 117.81433070949768, 156.88780309078794, 214.34663408370363, + 277.02965676840404, 333.0268638696725, 384.7587329468549, + 420.13075271949975, 404.23140366875634, 362.6305292711321, + 306.3380130010268, 199.34395469427614, 88.37824694140863, + 1.072812542447371, -87.0990590002884, -151.2703950580745, + -176.7583782698028, -180.1518575922212, -172.6585564083569, + -157.83833936738384, -139.71298557905286, -132.37948351844804, + -137.14182871868627, -146.70260364904757, -153.66781271251833, + -160.65776772677083, -165.9857012651326, -152.10971217479005, + -137.75388302840818, -132.69005149325127, -120.27505461911194, + -118.99542587909689, -138.12155722125792, -155.14566086303498, + -170.25686652530376, -191.0424996971512, -194.47471479608595, + -173.30675491481256, -148.17441737348182, -111.34837376473784, + -56.805337682424145, -13.495860810289269, 15.980574635038876, + 43.896003247821604, 56.79003466771563, 54.09429161404198, + 52.28136053303551, 52.08948074025137, 52.203436420295176, + 56.52491464057657, 64.87542203611139, 71.55483686224076, + 69.25190918446901, 59.08563054689982, 42.286942665991354, + 17.037453349156618, -10.111751156049374, -30.709869029730662, + -41.813809582488894, -42.568601241621366, -32.29130055017971, + -15.083284278851623, 1.9678225359250578, 13.325720420693482, + 15.051412027889109, 5.770955347587019, -11.816697154849402, + -32.83160401963897, -49.99189342560474, -58.63442189210924, + -56.61649515629236, -42.25291694662227, -19.932008357274633, + 2.2000130356428755, 19.673712886775427, 28.595627335714948, + 24.9425810024441, 10.881106899858336, -8.327936893295146, + -27.300139944772674, -41.32506331380554, -45.080143224820546, + -38.804230102655204, -26.069402825693736, -8.140411406603636, + 8.672933310625087, 19.130171155775045, 23.525598542815565, + 22.32726011337815, 17.519080083872968, 12.715825551493284, + 11.407289082514401, 15.398222248385347, 23.605642144180678, + 33.96088244585166, 44.981820886256, 55.633199808413444, 63.19340643658431, + 73.42598607573026, 92.44839178699262, 117.81433070949768 + ], + "pressure:branch7_seg0:J11": [ + 256262.9310472813, 266004.28070952074, 389981.0477265822, + 464745.433955423, 544436.1060322407, 626585.7218707892, 602765.949420821, + 551244.5831777836, 506197.49442069605, 379463.6686970349, + 224859.7061096498, 144648.412736537, 81700.46514477769, + -19128.960387907493, -29063.245965136408, 561.8016466871314, + -775.683865306683, 21210.98883865791, 23985.529973784407, + 27527.632403580505, 1539.375362679602, -47834.906109637945, + -54923.32372493713, -83558.05928462432, -105871.04498569091, + -89452.05500789403, -76197.96431826564, -80376.2739411543, + -89751.42932142812, -83184.41491667376, -128988.5565213845, + -200331.4388730224, -203742.73138601094, -245206.8105453016, + -302430.5115798487, -246917.5005965254, -211315.5003268123, + -204044.58858319488, -118329.81474160097, -57176.462709970125, + -51314.0102747852, -19667.146298240034, -2010.6544252499393, + -22410.55381654038, -35145.17321952117, -23570.232279885036, + -18421.407701195236, -12108.114018248278, 11971.239877002889, + 28024.636102018027, 33847.15769983836, 16552.05538380207, + -5336.043990898766, -28633.139309918453, -74026.84080881494, + -96577.3009758114, -102943.11888986958, -101557.55459922779, + -80511.63412944172, -54149.50321746632, -26880.40847621124, + -15673.451633398441, -19344.58035138181, -36030.62705156477, + -68382.39189237225, -98068.73991520813, -125596.75597551526, + -133769.08554126718, -126341.89736246406, -111346.58601526819, + -70720.36750204337, -40710.14708345124, -23257.531877853362, + -12725.66121108257, -24488.674781453174, -50219.5257152286, + -81261.67716204599, -107041.90051124353, -123250.45597268362, + -126284.87937036948, -111693.31341631016, -91514.06129250818, + -67349.45729606804, -42507.04787467125, -32775.68221224829, + -32744.14739413199, -37915.308925629724, -47114.97689323528, + -53834.38362279869, -54137.6700891798, -44888.20294212897, + -27908.701523743046, -11084.90465692236, 6504.368489402723, + 23059.446663338338, 32906.27508557149, 46482.95029859645, + 75774.67379070415, 117624.14144699356, 256262.9310472813 + ], + "flow:J11:branch7_seg1": [ + 117.81433070949768, 156.88780309078794, 214.34663408370363, + 277.02965676840404, 333.0268638696725, 384.7587329468549, + 420.13075271949975, 404.23140366875634, 362.6305292711321, + 306.3380130010268, 199.34395469427614, 88.37824694140863, + 1.072812542447371, -87.0990590002884, -151.2703950580745, + -176.7583782698028, -180.1518575922212, -172.6585564083569, + -157.83833936738384, -139.71298557905286, -132.37948351844804, + -137.14182871868627, -146.70260364904757, -153.66781271251833, + -160.65776772677083, -165.9857012651326, -152.10971217479005, + -137.75388302840818, -132.69005149325127, -120.27505461911194, + -118.99542587909689, -138.12155722125792, -155.14566086303498, + -170.25686652530376, -191.0424996971512, -194.47471479608595, + -173.30675491481256, -148.17441737348182, -111.34837376473784, + -56.805337682424145, -13.495860810289269, 15.980574635038876, + 43.896003247821604, 56.79003466771563, 54.09429161404198, + 52.28136053303551, 52.08948074025137, 52.203436420295176, + 56.52491464057657, 64.87542203611139, 71.55483686224076, + 69.25190918446901, 59.08563054689982, 42.286942665991354, + 17.037453349156618, -10.111751156049374, -30.709869029730662, + -41.813809582488894, -42.568601241621366, -32.29130055017971, + -15.083284278851623, 1.9678225359250578, 13.325720420693482, + 15.051412027889109, 5.770955347587019, -11.816697154849402, + -32.83160401963897, -49.99189342560474, -58.63442189210924, + -56.61649515629236, -42.25291694662227, -19.932008357274633, + 2.2000130356428755, 19.673712886775427, 28.595627335714948, + 24.9425810024441, 10.881106899858336, -8.327936893295146, + -27.300139944772674, -41.32506331380554, -45.080143224820546, + -38.804230102655204, -26.069402825693736, -8.140411406603636, + 8.672933310625087, 19.130171155775045, 23.525598542815565, + 22.32726011337815, 17.519080083872968, 12.715825551493284, + 11.407289082514401, 15.398222248385347, 23.605642144180678, + 33.96088244585166, 44.981820886256, 55.633199808413444, 63.19340643658431, + 73.42598607573026, 92.44839178699262, 117.81433070949768 + ], + "pressure:J11:branch7_seg1": [ + 256262.9310472813, 266004.28070952074, 389981.0477265822, + 464745.433955423, 544436.1060322407, 626585.7218707892, 602765.949420821, + 551244.5831777836, 506197.49442069605, 379463.6686970349, + 224859.7061096498, 144648.412736537, 81700.46514477769, + -19128.960387907493, -29063.245965136408, 561.8016466871314, + -775.683865306683, 21210.98883865791, 23985.529973784407, + 27527.632403580505, 1539.375362679602, -47834.906109637945, + -54923.32372493713, -83558.05928462432, -105871.04498569091, + -89452.05500789403, -76197.96431826564, -80376.2739411543, + -89751.42932142812, -83184.41491667376, -128988.5565213845, + -200331.4388730224, -203742.73138601094, -245206.8105453016, + -302430.5115798487, -246917.5005965254, -211315.5003268123, + -204044.58858319488, -118329.81474160097, -57176.462709970125, + -51314.0102747852, -19667.146298240034, -2010.6544252499393, + -22410.55381654038, -35145.17321952117, -23570.232279885036, + -18421.407701195236, -12108.114018248278, 11971.239877002889, + 28024.636102018027, 33847.15769983836, 16552.05538380207, + -5336.043990898766, -28633.139309918453, -74026.84080881494, + -96577.3009758114, -102943.11888986958, -101557.55459922779, + -80511.63412944172, -54149.50321746632, -26880.40847621124, + -15673.451633398441, -19344.58035138181, -36030.62705156477, + -68382.39189237225, -98068.73991520813, -125596.75597551526, + -133769.08554126718, -126341.89736246406, -111346.58601526819, + -70720.36750204337, -40710.14708345124, -23257.531877853362, + -12725.66121108257, -24488.674781453174, -50219.5257152286, + -81261.67716204599, -107041.90051124353, -123250.45597268362, + -126284.87937036948, -111693.31341631016, -91514.06129250818, + -67349.45729606804, -42507.04787467125, -32775.68221224829, + -32744.14739413199, -37915.308925629724, -47114.97689323528, + -53834.38362279869, -54137.6700891798, -44888.20294212897, + -27908.701523743046, -11084.90465692236, 6504.368489402723, + 23059.446663338338, 32906.27508557149, 46482.95029859645, + 75774.67379070415, 117624.14144699356, 256262.9310472813 + ], + "flow:branch7_seg1:J12": [ + 117.73949430470824, 156.7865726993606, 214.17623104422864, + 276.93070203196885, 332.95865378781673, 384.6424246522111, + 420.12386222801575, 404.252080363881, 362.6390641667912, + 306.5479575807551, 199.40922086088412, 88.40041341472104, + 1.215363459557775, -87.05010481415798, -151.29404838904745, + -176.79422518079915, -180.17571757840923, -172.67520932625962, + -157.84398137212406, -139.67931208936474, -132.36286433682838, + -137.07260451609415, -146.66783879880592, -153.64691570246868, + -160.61440400275066, -166.00996483642078, -152.09013204351083, + -137.72005236851484, -132.7471037791467, -120.23796626654007, + -118.93276884305521, -138.15013184957039, -155.13941056961292, + -170.22402809031257, -191.0494892058335, -194.54826355270114, + -173.3474086496258, -148.15891008065262, -111.42408754258838, + -56.83601391227844, -13.490384533067546, 15.951525693501534, + 43.90448049269423, 56.823760966607004, 54.08284150867111, + 52.27536223303794, 52.08401773763727, 52.197112740672765, + 56.501798028099316, 64.86592017258131, 71.58029179408379, 69.272025664926, + 59.1168279106034, 42.31606673945468, 17.073298000862902, + -10.098595221434058, -30.702404035296915, -41.81827676665156, + -42.59390498263438, -32.316691409853114, -15.098665627047898, + 1.9633163621225604, 13.338748487419005, 15.077076519626987, + 5.8013060577345446, -11.791094968964671, -32.82349577354838, + -49.99258298431892, -58.649695339707314, -56.65005026605676, + -42.292239635939076, -19.96201592198596, 2.1884199406213374, + 19.67276005778971, 28.615689322176742, 24.970206538775603, + 10.901488976899742, -8.304682644206208, -27.29227356162383, + -41.32949805395253, -45.093240381602904, -38.82442270942175, + -26.10100203988678, -8.161769041097337, 8.67476858742211, + 19.132799036032022, 23.536016507702705, 22.33772395450892, + 17.520947095564022, 12.712110526795747, 11.395278547225088, + 15.377219209058, 23.58834835004338, 33.942186076195576, 44.9632816556609, + 55.61834135137105, 63.17170856538829, 73.38372958574179, + 92.42167664477267, 117.73949430470824 + ], + "pressure:branch7_seg1:J12": [ + 247921.4671679164, 253414.20381650675, 371913.86276027723, + 448083.8858237197, 528440.3574747859, 609617.3781688699, + 596748.8547103723, 553689.5694964492, 512045.89486428903, + 395670.55268779164, 247980.37411183986, 167128.78591882726, + 100258.34670658696, 977.8834045456376, -17579.2605877184, + 4882.441736425124, 1275.7693281744332, 20243.228876755507, + 22283.985114220908, 26115.25169707922, 2535.144660521512, + -42888.15785244716, -52145.7648958903, -79797.88675965747, + -101912.43575604848, -89214.24835603153, -77819.6496829571, + -81327.26810682351, -89911.49022791436, -84095.44841141456, + -125850.31909924361, -193300.15796161094, -199112.11037147685, + -239211.93076590355, -295533.7872163454, -247443.47757513006, + -215054.62625701368, -207108.94300918543, -128581.54064171444, + -68229.99610488774, -58432.58977610218, -26529.18633254944, + -7666.359579930607, -23694.715240326044, -34905.032599969236, + -24070.930642261028, -19059.425917340708, -12866.218172519459, + 9445.181045375833, 25526.71728843564, 32244.058649136256, + 17173.472430487145, -2764.809370335826, -24847.43565838862, + -67627.35385630754, -91090.51807325512, -98871.41884160208, + -99596.82123737714, -81235.11946549606, -56909.29724955121, + -30982.90267898867, -19022.699036515867, -21030.853942089852, + -35424.60841884733, -65152.25724656393, -93480.87007720648, + -120536.44093410559, -130137.35657915997, -124962.10537944161, + -112340.63753546934, -74692.41017867545, -45821.67375321839, + -27657.41826766545, -16247.371986130804, -25425.89567255775, + -48368.898634454294, -77515.83545529911, -102318.43962687437, + -119214.56942074947, -123557.31259237096, -111569.94655968035, + -93395.25442803036, -70475.54774338857, -46776.69212218514, + -35907.03705778712, -34699.20736401933, -38476.08482388651, + -46579.674638699835, -52859.20944787161, -53477.23741456167, + -45296.49969503082, -29653.548723835756, -13443.344030057091, + 3547.6488219052585, 19991.898819451537, 30354.14235253346, + 44001.051075690055, 71780.11115031468, 111653.64129365959, + 247921.4671679164 + ], + "flow:J12:branch7_seg2": [ + 117.73949430470824, 156.7865726993606, 214.17623104422864, + 276.93070203196885, 332.95865378781673, 384.6424246522111, + 420.12386222801575, 404.252080363881, 362.6390641667912, + 306.5479575807551, 199.40922086088412, 88.40041341472104, + 1.215363459557775, -87.05010481415798, -151.29404838904745, + -176.79422518079915, -180.17571757840923, -172.67520932625962, + -157.84398137212406, -139.67931208936474, -132.36286433682838, + -137.07260451609415, -146.66783879880592, -153.64691570246868, + -160.61440400275066, -166.00996483642078, -152.09013204351083, + -137.72005236851484, -132.7471037791467, -120.23796626654007, + -118.93276884305521, -138.15013184957039, -155.13941056961292, + -170.22402809031257, -191.0494892058335, -194.54826355270114, + -173.3474086496258, -148.15891008065262, -111.42408754258838, + -56.83601391227844, -13.490384533067546, 15.951525693501534, + 43.90448049269423, 56.823760966607004, 54.08284150867111, + 52.27536223303794, 52.08401773763727, 52.197112740672765, + 56.501798028099316, 64.86592017258131, 71.58029179408379, 69.272025664926, + 59.1168279106034, 42.31606673945468, 17.073298000862902, + -10.098595221434058, -30.702404035296915, -41.81827676665156, + -42.59390498263438, -32.316691409853114, -15.098665627047898, + 1.9633163621225604, 13.338748487419005, 15.077076519626987, + 5.8013060577345446, -11.791094968964671, -32.82349577354838, + -49.99258298431892, -58.649695339707314, -56.65005026605676, + -42.292239635939076, -19.96201592198596, 2.1884199406213374, + 19.67276005778971, 28.615689322176742, 24.970206538775603, + 10.901488976899742, -8.304682644206208, -27.29227356162383, + -41.32949805395253, -45.093240381602904, -38.82442270942175, + -26.10100203988678, -8.161769041097337, 8.67476858742211, + 19.132799036032022, 23.536016507702705, 22.33772395450892, + 17.520947095564022, 12.712110526795747, 11.395278547225088, + 15.377219209058, 23.58834835004338, 33.942186076195576, 44.9632816556609, + 55.61834135137105, 63.17170856538829, 73.38372958574179, + 92.42167664477267, 117.73949430470824 + ], + "pressure:J12:branch7_seg2": [ + 247921.4671679164, 253414.20381650675, 371913.86276027723, + 448083.8858237197, 528440.3574747859, 609617.3781688699, + 596748.8547103723, 553689.5694964492, 512045.89486428903, + 395670.55268779164, 247980.37411183986, 167128.78591882726, + 100258.34670658696, 977.8834045456376, -17579.2605877184, + 4882.441736425124, 1275.7693281744332, 20243.228876755507, + 22283.985114220908, 26115.25169707922, 2535.144660521512, + -42888.15785244716, -52145.7648958903, -79797.88675965747, + -101912.43575604848, -89214.24835603153, -77819.6496829571, + -81327.26810682351, -89911.49022791436, -84095.44841141456, + -125850.31909924361, -193300.15796161094, -199112.11037147685, + -239211.93076590355, -295533.7872163454, -247443.47757513006, + -215054.62625701368, -207108.94300918543, -128581.54064171444, + -68229.99610488774, -58432.58977610218, -26529.18633254944, + -7666.359579930607, -23694.715240326044, -34905.032599969236, + -24070.930642261028, -19059.425917340708, -12866.218172519459, + 9445.181045375833, 25526.71728843564, 32244.058649136256, + 17173.472430487145, -2764.809370335826, -24847.43565838862, + -67627.35385630754, -91090.51807325512, -98871.41884160208, + -99596.82123737714, -81235.11946549606, -56909.29724955121, + -30982.90267898867, -19022.699036515867, -21030.853942089852, + -35424.60841884733, -65152.25724656393, -93480.87007720648, + -120536.44093410559, -130137.35657915997, -124962.10537944161, + -112340.63753546934, -74692.41017867545, -45821.67375321839, + -27657.41826766545, -16247.371986130804, -25425.89567255775, + -48368.898634454294, -77515.83545529911, -102318.43962687437, + -119214.56942074947, -123557.31259237096, -111569.94655968035, + -93395.25442803036, -70475.54774338857, -46776.69212218514, + -35907.03705778712, -34699.20736401933, -38476.08482388651, + -46579.674638699835, -52859.20944787161, -53477.23741456167, + -45296.49969503082, -29653.548723835756, -13443.344030057091, + 3547.6488219052585, 19991.898819451537, 30354.14235253346, + 44001.051075690055, 71780.11115031468, 111653.64129365959, + 247921.4671679164 + ], + "flow:INFLOW:branch0_seg0": [ + 852.8214442259172, 1118.486267799621, 1512.0222657376494, + 1887.4729020795003, 2312.898724509188, 2675.207453594711, + 2840.0128294530527, 2855.488104132652, 2704.688404195668, + 2342.338136675987, 1698.6480758793448, 1232.8464623953762, + 547.7716873416613, 155.68288258367295, -354.26081661195906, + -521.9133872048149, -674.6305633069009, -705.3644140837112, + -705.8308045096925, -714.7191352694945, -761.2257703710623, + -842.9075206980056, -950.9680800749403, -1028.4888295779144, + -1150.8488926462285, -1151.3191433636305, -1142.5774607290866, + -1116.0883045327323, -1070.015247715286, -1059.8254247404493, + -1099.465042425857, -1172.9617757770018, -1301.0002321838513, + -1424.9430371963417, -1513.9191907126315, -1529.5430314970756, + -1461.8634622132158, -1274.361096659664, -1067.9069937474205, + -781.6052273988278, -555.0811427037473, -262.2609356232955, + -139.42150023947727, -17.317881134805454, 35.35419371940424, + 85.8065240233537, 112.96782437031689, 179.15367466598147, + 234.0169989672913, 330.83737773063433, 370.10211224369533, + 393.98358037277717, 367.96249135849024, 258.6536587756236, + 171.06072417035864, 4.54129470615542, -90.68373743557156, + -165.805678957748, -172.12741704858118, -119.80439609905173, + -44.60020782906426, 44.69740778250576, 87.59571048751553, 91.837175002585, + 34.821136214112435, -65.95904031774455, -176.46457098691394, + -280.8763618309149, -334.18596583159916, -326.19675102790325, + -252.1889790561357, -148.5201457467677, -9.293033383781538, + 61.33195507985649, 109.3100661451808, 96.30228237240904, + 5.797892643370591, -69.38152839390077, -196.0672168004675, + -248.82958172855197, -274.7914402311835, -252.74753392554027, + -160.61803024444242, -92.42751726163958, 12.719849970608971, + 57.34970333844624, 97.99093483965592, 97.52628508600573, + 80.46140736359429, 70.64554306242974, 76.34184304028875, + 104.54210469540739, 161.94762800185975, 217.03900350835113, + 311.1585829141075, 363.857156232901, 436.51866751529167, + 520.0941828804364, 658.3518590575383, 852.8214442259172 + ], + "pressure:INFLOW:branch0_seg0": [ + 322816.4818995891, 367279.433980257, 522453.80897156487, 587047.042494455, + 646382.8452050157, 771009.5307408356, 622095.7200842886, 526084.38427636, + 441867.26628439303, 230437.63749017462, 60951.23774440736, + -61759.38272212559, -73638.58716526476, -165784.26076939722, + -137723.27884790866, -15721.92677694692, -34716.08984374859, + 35448.403462372036, 33781.5087318741, 32388.803250723646, + 2803.6963795187535, -102375.08047036917, -65004.24124312342, + -113941.25045549075, -141018.86230680853, -79354.8157326543, + -76349.01041750128, -55619.052399573564, -87834.14103254414, + -84680.3680213351, -142655.78929713156, -247844.51004327775, + -236788.16020501513, -284091.8485326786, -337576.07695238944, + -225719.7914041693, -172035.54455481074, -169021.2032668103, + -17339.746717046204, 32835.380018038704, 11710.835198006258, + 43912.584518152245, 40686.428181630385, -4289.9271532369885, + -31358.990848674483, -17111.899797929378, -6561.331705184353, + -4294.162875385829, 37411.202316891024, 48628.317406355694, + 43423.72005867002, 14360.581607866605, -28268.116459656016, + -59424.832458992896, -122846.54103685051, -142602.32992991127, + -129622.25483044132, -118454.7086375536, -69559.02453044406, + -33160.58361262824, 4131.435463195045, 11255.808462778557, + -10886.538825562777, -40316.85687797321, -95398.90637371746, + -135376.3877551379, -161357.09231236894, -163548.64869651705, + -132798.2548381995, -99636.9580160028, -37374.241762157435, + 1608.5541255139037, 9396.431588021629, 15846.775183933294, + -20872.20216863053, -64097.7990950866, -112055.29714121239, + -143875.18876476266, -153715.64988694107, -147165.45913717692, + -110022.52285532103, -75772.13848781948, -38515.68686606467, + -12121.664860164832, -7168.25724130691, -19464.86790166059, + -34104.28806797763, -50482.7889896466, -62544.77024702709, + -58153.11637081186, -40999.44409614613, -14140.47255512727, + 8963.050367020847, 26169.56805705677, 50335.542815194516, + 49672.07999371527, 69064.64405783024, 102889.12486048821, + 166670.30273753052, 322816.4818995891 + ], + "flow:branch2_seg2:RCR_0": [ + 144.39012990564794, 193.35613088556437, 264.7021346651384, + 342.8400737969334, 409.8805225292544, 470.3580468051356, + 509.77524154723017, 481.6645129693187, 422.4001195475306, + 348.8904433533434, 208.47499415989864, 68.297009702873, + -35.141976118398006, -141.17265880552674, -214.0620125893179, + -236.17134891391038, -231.2533011644381, -214.83174706238879, + -191.11080007423345, -164.82041903216754, -154.87382269104333, + -160.69833107066245, -173.29703116356114, -181.83796196231336, + -189.93902498091214, -196.42631606161885, -176.57277927400028, + -157.44083914719704, -152.29747292436429, -135.65445234170363, + -134.86198991603908, -161.8377247201374, -183.49080344909189, + -201.907534824838, -228.15539424042015, -230.97962615939608, + -200.90262732026414, -167.09712434483623, -120.29654306114332, + -50.6067107548985, 2.3968004382101404, 35.56787408987277, + 67.75232446124492, 79.97081278903366, 71.97624501397517, 67.0454778502519, + 65.13584609268516, 64.12110961854863, 68.88219406417106, + 79.21790142591512, 87.35308647852935, 83.12570041661554, + 69.11405836024953, 46.89667988397746, 14.438743851846453, + -19.815235779813335, -44.39469867421811, -56.32162787365014, + -54.996013711699064, -39.654456760915124, -16.199918633423213, + 5.985206326507575, 19.906606749456206, 20.88002873065874, + 7.60037459062128, -15.971502242737367, -43.09347165421592, + -64.27508747546929, -73.77728253261617, -69.45737162123942, + -49.38932605236695, -19.7181723569986, 8.505361832250967, + 29.83055596833616, 39.55449189151775, 32.82063216349238, + 13.023483134095077, -12.410082596351291, -36.620078504576675, + -53.63619926988452, -56.78669982345064, -47.10514744369058, + -29.722416504108747, -6.1295418152851155, 15.207870390890257, + 27.422335665774607, 31.66496056391871, 28.746788888024867, + 21.46694663851013, 14.765621914960196, 13.013027777036699, + 18.30281224031007, 29.060933011370693, 42.176678773989124, + 55.878791232943264, 68.75396631354188, 77.35532418655754, + 89.34979254143575, 113.315734919898, 144.39012990564794 + ], + "pressure:branch2_seg2:RCR_0": [ + 193582.4334216555, 169463.63413750954, 249884.38140186, 342147.4515890797, + 429790.45847083, 516223.43459427624, 588043.9923261668, 599920.5650963349, + 580481.3170850425, 543484.001782487, 438740.62097557983, + 323249.43435614265, 231157.15728415022, 129035.99518101098, + 49396.82936804681, 11383.44776680551, -2920.397600581219, + -6195.310930473204, -1280.7985483877803, 7881.645059800722, + 4035.993389631575, -13554.17591205756, -38049.49246885185, + -59519.61459746315, -81180.59578309825, -102071.32745710624, + -98858.51034980959, -94680.98478478927, -101927.63413331348, + -98130.5616371784, -107554.24349061177, -142520.88600669007, + -174811.28334354117, -205516.16053934075, -244745.47622926743, + -264567.7613441961, -253836.99251126745, -237199.66479964933, + -206246.32353501086, -150278.31048846932, -104309.04147567462, + -72908.78161254092, -39863.251328100145, -22812.268964490155, + -23691.312178017903, -22453.925025667355, -18782.09630020369, + -14457.40109300664, -4944.373088694733, 10123.007127097977, + 23926.137004265835, 26909.736952320716, 20472.418704486212, + 5328.206184285153, -20933.850148554986, -51426.24927678588, + -75577.56556253794, -89838.96157407263, -92742.61598841797, + -82513.80111983558, -63579.63866267222, -43980.144650858216, + -30325.353942692826, -27614.633820548195, -38016.39970328703, + -59004.576499250485, -85073.0937716155, -107733.84712450599, + -121187.02295303803, -122508.57290274635, -108944.96680689896, + -84876.78170816958, -59855.22227487656, -39098.900250752966, + -27431.182506691894, -30288.057648718048, -45782.451190044914, + -68043.63990421213, -91129.67338841123, -109398.20570287442, + -116125.52738578503, -111161.95963051217, -98299.3029931092, + -78346.34894365497, -58647.67932215226, -45787.27645382102, + -39405.18253909368, -39354.51192842968, -43598.85735967871, + -47892.91020020132, -48140.80916204699, -42011.77539035208, + -30403.86877862862, -15809.152274439191, 307.0271829339314, + 16705.964751139785, 30057.58284099591, 47117.44643073356, + 76106.87134402743, 193582.4334216555 + ], + "flow:branch4_seg2:RCR_1": [ + 370.3246574244162, 482.2227544333679, 638.207444357086, 847.1929248010327, + 1024.134702220575, 1238.467463271014, 1432.6251457360418, + 1482.444103579611, 1515.3252619556667, 1451.2259188932903, + 1267.755826988073, 1031.393283370842, 777.8898701650733, + 539.8361518562498, 263.81410711939503, 101.53491095841554, + -26.767095442605996, -141.38506223711855, -184.93487070228116, + -256.9727770486124, -286.48907392511614, -363.40761113896417, + -447.3287284818344, -489.4138613565637, -578.909498361788, + -620.8436815183542, -638.1333116190963, -646.198983787428, + -644.5164617440638, -653.4208618832843, -642.8036671066751, + -694.8158219023132, -754.5930550741755, -786.7306278045954, + -863.6543245852957, -906.6714758707577, -877.2123266023759, + -847.9698016568158, -784.4731992515019, -644.9757552181566, + -529.6941351263764, -421.0327548543779, -301.96884940150704, + -216.02310289213176, -155.83192380617166, -110.94808954374012, + -55.78430391491064, -14.015089439792973, 33.1288523616409, + 94.1655950803904, 140.2230038240395, 179.61687602735674, + 186.1973132577748, 176.70012909806073, 144.7349461869423, + 81.35306824799679, 36.386989976039004, -9.601157572238664, + -31.703657413945624, -28.561227799327387, -11.426297951180262, + 24.604528103846324, 44.47010787898915, 57.72328059537298, + 43.80008653932103, 6.509973572324164, -40.209219772651515, + -95.60838391654198, -131.29873045079952, -150.45860291508058, + -143.71913103722946, -103.98265425247546, -62.9619695469837, + -17.00508566618706, 17.543655909436204, 25.13849123363032, + 12.644343541709839, -24.02840278570186, -63.127939931501906, + -103.79967386197201, -126.290176350693, -127.18053081471005, + -112.6458458538054, -78.54887209664362, -40.745018350432005, + -7.982593037040798, 13.48767534021598, 25.45219689032067, + 26.701056169680587, 24.93981287152286, 27.80333337338969, + 39.77799966049774, 63.91156388621568, 92.10246004282828, + 127.75140742297916, 165.57185215967192, 195.63521850434458, + 236.6579442693426, 293.1315020645828, 370.3246574244162 + ], + "pressure:branch4_seg2:RCR_1": [ + 137484.47768493774, 93014.33810385902, 142137.93156930164, + 207739.21013018457, 268204.97024995275, 341412.14780333155, + 412563.8050287578, 448947.2403114674, 481270.1710647386, + 488411.22643553134, 463251.17554117047, 420409.52225356735, + 369480.11097582936, 318402.2029468918, 253116.47319245466, + 213653.8671394351, 180243.3314327047, 148667.41786098035, + 133829.22200087318, 110843.8693178034, 98112.26407494846, + 72154.53501722106, 43406.34126258425, 24136.417960096587, + -8166.14981237947, -29273.817639090346, -44757.22551057393, + -57664.73558085358, -68300.59864126328, -81644.98765134915, + -89708.60822472398, -114290.10199643021, -141629.25599374104, + -162581.47230251462, -195849.60052898008, -221382.145447622, + -228396.58681602456, -234876.1257669348, -231798.49681810552, + -207559.31142570724, -187301.8561929546, -166882.4201386014, + -142000.22276707122, -123759.67302051946, -110999.78719966608, + -101323.13820860001, -88137.88055943257, -77666.9872289701, + -65039.3991017267, -48036.97003548573, -33956.345905515955, + -20870.716305856946, -15897.3786766828, -14989.98483015795, + -20256.79844660711, -34343.9590359702, -44618.34630937457, + -55944.71986057618, -61655.98842886824, -61132.24940520317, + -56789.403614839255, -47190.916627939696, -41269.72879452661, + -36731.951610350756, -39202.925379418746, -48038.538394468145, + -60016.929418896165, -75057.56080050553, -85779.48314008271, + -92750.14157392623, -93158.01399145214, -84724.84026738118, + -75291.55905274116, -63850.296285543416, -54688.67230871132, + -52047.137664136666, -54618.68437828322, -63788.93876672549, + -74194.71201090775, -85682.73715131615, -93021.63416578568, + -95020.83593413193, -92936.07626031735, -85456.93544475733, + -76399.0524516735, -68056.77755842697, -62168.74810508441, + -58433.0703447572, -57355.368844429926, -57054.8202726652, + -55585.467831013804, -51663.15706916942, -44342.12078711226, + -35560.73467778174, -24352.028945031914, -12016.342372278541, + -1098.7170212440221, 13137.132916507002, 32082.21009668609, + 137484.47768493774 + ], + "flow:branch5_seg2:RCR_2": [ + 129.64256532827244, 174.4708365707954, 239.61305934924096, + 309.70026695547597, 367.9805534709063, 419.66311523561427, + 450.86931569899303, 418.4934040804629, 359.4885779610462, + 289.87477531914936, 159.04946117682135, 32.771142534886245, + -55.576134271381804, -146.40813730723562, -205.08687720488024, + -216.5592668077561, -205.01099294490734, -185.20449497883064, + -160.72279438166757, -135.4817722981099, -127.12231232247096, + -133.98020733778407, -146.68070127706022, -155.0554499014629, + -162.73040832336562, -168.64252150455863, -149.39005694294403, + -131.79902077997426, -128.15654073370166, -113.27618192332768, + -113.96601920567456, -140.84781195901428, -161.17237295394332, + -177.87702886769716, -201.84184957881317, -202.68554935055033, + -172.7486401530129, -140.8113442848432, -97.35040420343803, + -33.42517246132197, 12.924839576606592, 39.96804972591577, + 66.5409220305989, 74.27520767553611, 63.73174769434409, 57.53282557058368, + 54.97835282629235, 53.67773879505942, 58.16952589552166, + 67.88299018388746, 75.26188949582934, 70.68090852506081, + 57.15496285288278, 36.39478026077662, 6.481314156896856, + -24.27231484722639, -45.18995450387557, -54.003078874219234, + -50.59942937004338, -34.58810038257868, -11.8558746364948, + 8.675370276948996, 20.713805046188455, 20.297916768330467, + 6.669552659985536, -15.994634113588498, -41.14784805565604, + -59.904509522754196, -67.2349584925314, -61.64379797067373, + -41.63600513433259, -13.487612079186096, 12.232773848458226, + 30.79718548797752, 38.08282762637729, 29.983508592526842, + 10.224707167686178, -13.907342230632514, -35.97871330008468, + -50.66897168657595, -51.99776510520473, -41.548092075065824, + -24.508764720127814, -2.3045934538270747, 16.973331676182486, + 27.15267131520962, 29.787122153015844, 25.927134886334866, + 18.388176036453988, 11.89082709804055, 10.425854304108755, + 15.700264940393899, 25.948576495680065, 38.08745959277232, + 50.47565975708314, 61.82694802254142, 68.99905617337224, + 79.51030585055582, 101.42771357445746, 129.64256532827244 + ], + "pressure:branch5_seg2:RCR_2": [ + 199051.7385088925, 177541.76840971992, 261620.8280467675, + 356796.6665932432, 445232.8471963542, 531504.1536587067, + 600873.2761109667, 604946.6584016656, 577550.6074450111, + 533916.5968600226, 418937.52355886577, 297069.924103197, + 204551.5453183411, 101942.44536823967, 25413.954130635455, + -5909.8916440545145, -13377.196572741334, -11079.19258764891, + -1898.3417587579995, 10281.853246286946, 6849.322284521855, + -11923.129346545886, -37727.400898464206, -59796.19087118626, + -81804.32809946446, -102741.3975553853, -97224.82978250388, + -91668.57066624363, -99330.05293237662, -94731.42410269153, + -105177.65876374384, -143405.53502101885, -177240.43734254886, + -208745.00765316602, -249289.5746943582, -267682.8675716179, + -253106.49077500906, -233617.41335686456, -199428.31908535294, + -139407.76842339165, -92322.28830474387, -61978.14542322698, + -29727.87135417282, -15125.367495332526, -19427.14642019223, + -20149.190168438698, -17518.492725060874, -13806.802662172351, + -4139.880781998415, 11508.109224627395, 25512.306862308225, + 27463.421981231808, 19469.05501266195, 2561.836156225378, + -25820.59915649475, -57814.81863554386, -82051.60707252022, + -95201.45978097309, -96146.9313068807, -83339.20495195704, + -61965.4879090996, -40886.04205380796, -27020.02030612791, + -25355.046335029907, -37754.903675903675, -60997.921203052596, + -88863.65144934735, -112160.25417086437, -124947.517651244, + -124582.01414768919, -108438.855928687, -81804.87067133129, + -55256.14050090882, -34096.58170682743, -23267.594604690374, + -28179.72963339006, -46220.579661780255, -70678.07065050829, + -95076.34516387673, -113559.09909984269, -119128.72881817547, + -112244.53797224554, -97412.35027930622, -75586.29758248127, + -54889.45950251723, -42195.80031827285, -36660.01240565254, + -37820.64196329964, -43264.16900124141, -48291.54221544966, + -48565.16043506072, -41814.37095694647, -29301.063388256258, + -13899.03558978702, 2807.943490252203, 19504.08063099948, + 32674.487378057955, 49926.09071902223, 80147.56939785658, + 199051.7385088925 + ], + "flow:branch6_seg2:RCR_3": [ + 32.58683867583751, 44.834482412635914, 62.07331257255673, + 78.85219903479368, 90.90579331906788, 102.45222420611313, + 106.82134213317794, 91.8250999601082, 77.86715349585754, + 62.75759481765566, 27.7800259949343, 2.3047891059893115, + -10.080250154881794, -26.932046354791915, -35.60322411987168, + -30.936319032719517, -25.294572454698688, -21.10881720933089, + -15.771285942382137, -12.906361563891792, -14.850198470958077, + -20.705455650365458, -26.01377968263428, -28.388630463501247, + -32.182858387355544, -33.64363722774285, -27.237005291996155, + -24.768739973437388, -26.93768340393803, -23.93039039834598, + -26.275292760839953, -37.16321597549426, -42.497793883136374, + -45.53446509771757, -52.338875386627485, -50.605757965401125, + -40.55168228659393, -33.446495499737026, -22.93393844911182, + -7.4681846892188615, -0.5093327978606236, 2.4347788040377436, + 7.502722168039165, 6.48110694341178, 2.1200929424969885, + 1.397554523971204, 2.3434168205144887, 3.233798637461237, + 5.865105153754423, 9.697622841864419, 11.728913085572817, + 10.195523079736102, 6.397043203801143, 1.3544329696180262, + -5.674052266945673, -12.135371956901148, -14.68766772489366, + -14.589687528457743, -11.778815653048254, -6.368363256022505, + -0.5464129177785182, 3.769937628419469, 4.818052087627974, + 2.9025650087462314, -2.1614072471378303, -8.551261911833262, + -14.304674228472797, -17.58871982770834, -17.305764395043543, + -14.162309991290927, -7.95464902316926, -0.6440757913449685, + 4.4649233575766365, 7.347672137570591, 7.1095787055733, 3.001749912759922, + -2.9592596695834144, -8.888115501207091, -13.100910831205637, + -15.09079954736119, -13.20988455182226, -9.064399489819053, + -4.497859140790839, 1.0401155934508526, 4.747393787043315, + 5.584039449377014, 4.84726409766392, 3.010477742560552, + 0.8482453224187666, -0.3020627451847599, 0.3426448648716571, + 2.6757081609005735, 5.895086273847422, 9.046777718620424, + 12.004460191076266, 14.455003898364975, 15.482621009767342, + 18.49599493504738, 25.182591951126433, 32.58683867583751 + ], + "pressure:branch6_seg2:RCR_3": [ + 219027.57408027755, 209546.2263695402, 308329.6199149908, + 409117.7648865028, 489383.5754836429, 569754.3261083924, + 616596.2169352538, 565080.7338056836, 514925.3390247707, + 455685.10552518396, 291055.3530493502, 166307.15233173274, + 102677.10374526908, 13307.163867883746, -38538.25002440459, + -23892.85476477793, -2984.7248422323974, 11827.119323761483, + 33551.40029313696, 43874.64553807429, 30446.105074774554, + -3511.714369240096, -36234.77195584106, -55072.53529991444, + -81657.50177197935, -97338.11290261213, -73005.99830882694, + -67093.24373062004, -84330.55681446659, -75567.25595902157, + -93269.08104241733, -155264.02308763226, -191562.22011582967, + -217120.0371883666, -262669.46337162086, -266487.2202406159, + -226895.33939177348, -199895.9508108081, -154210.5084277321, + -80310.29897285663, -46051.357693128564, -30961.54227159505, + -4235.7524276403165, -7332.993568815874, -27922.266984114325, + -30990.970668777427, -25604.16989967771, -20331.546519206375, + -5973.910170763938, 15202.488799065342, 28088.04120912042, + 23238.260010579856, 6364.423859099488, -17755.35394963759, + -53190.07567014436, -87509.3810886644, -103367.06590909084, + -106248.56108023257, -95212.32726327899, -70177.71426265463, + -41704.83100548548, -19509.078009697358, -13000.850904872086, + -21405.51564350055, -46381.70791370618, -79371.35593100936, + -110628.79453406722, -130652.67112683934, -133195.59216363463, + -121004.58282085168, -92409.03077913052, -56586.76686887296, + -30270.146794047854, -14155.931509083077, -13294.68836293147, + -32300.496649216046, -61793.45417852167, -92575.71980589906, + -116002.64168052265, -129073.28847303537, -122811.9784060894, + -104478.43703918351, -82962.48206600428, -55372.22887298855, + -35788.82111980524, -30042.086024867596, -32167.84625391349, + -40103.33104095934, -50170.139336284534, -55586.675235618015, + -52116.90976170297, -39852.668433784114, -22470.386477056865, + -4680.574312935983, 12855.956043933087, 28519.71016551311, + 37435.88202496744, 56677.40987249196, 95366.11094921471, + 219027.57408027755 + ], + "flow:branch7_seg2:RCR_4": [ + 117.14753218974951, 156.14252442156337, 212.83346901295528, + 276.301183093507, 332.33610983678636, 383.91828698948353, + 419.9533728413609, 404.35209434426395, 362.740959462481, + 307.9019133632817, 199.95835019641, 88.37804712704057, 2.3552547640779906, + -86.76689481682006, -151.3544504748058, -177.09526595498727, + -180.32089788555425, -172.79139362648988, -157.8453796732533, + -139.4341725280304, -132.24716789269567, -136.56804042214435, + -146.40268606174587, -153.4868639421666, -160.32197992381228, + -166.148135604526, -151.92800687597753, -137.47360158385405, + -133.1423391506929, -119.96515816943688, -118.49529716756804, + -138.3584047586257, -155.12482055051476, -169.96418237285025, + -191.06993889989909, -195.06686547769957, -173.6111968087132, + -148.0406311114298, -111.86804060806287, -57.127761743292346, + -13.410294607975509, 15.688179901787812, 44.00624978085692, + 57.034432018271616, 54.010244566189776, 52.219343561831, + 52.04888316248059, 52.14989075128239, 56.34623473387633, + 64.77808956586792, 71.76775078002386, 69.40780506500217, + 59.33665219591578, 42.50985253688763, 17.331992454903155, + -10.006220104438528, -30.649033893978263, -41.83881880101493, + -42.77443349323849, -32.485417884899306, -15.216178343258314, + 1.9392641986493526, 13.422633830496073, 15.248577715418872, + 6.028332930691733, -11.636871217225766, -32.742244156310264, + -50.011893216953204, -58.74302254103642, -56.869411213524685, + -42.590533411614636, -20.14955397262303, 2.072461662759782, + 19.684791362346807, 28.744327553247476, 25.157147648076418, + 11.061529007194494, -8.15984817069378, -27.216654682280513, + -41.36908246692681, -45.1706236261092, -38.96055581884234, + -26.33272164120062, -8.299260139878932, 8.674008006201051, + 19.153095775246097, 23.603379021982555, 22.41189621197807, + 17.52930610896041, 12.68602344537874, 11.314275805002543, + 15.22390069810182, 23.47354115386928, 33.79559835881123, + 44.84201433208066, 55.4915901451712, 63.02920915469305, 73.06186977193929, + 92.2597609326031, 117.14753218974951 + ], + "pressure:branch7_seg2:RCR_4": [ + 181485.5111444608, 152745.0632731698, 226316.86584010298, + 312139.07797378226, 395345.78548895393, 478500.5126648823, + 549874.1097794771, 569163.0042747697, 559146.4631809456, + 531536.6743193107, 442528.09095341666, 339968.7476347168, + 254832.49771594213, 159089.72678680829, 81511.4962018398, + 39695.01144509591, 19875.914727514, 11214.61232361784, 11258.583392649802, + 16354.744619200908, 11255.674855068139, -5343.230156435786, + -28333.92665638701, -49057.74582675935, -70082.73051110067, + -90717.1842015426, -90378.77436857425, -88435.1653125949, + -95906.59896141125, -93591.17468985834, -102393.07365810487, + -133622.1030288042, -163462.00076259556, -192511.60028845747, + -229393.73076346406, -250181.20664380703, -244007.50020292783, + -231436.3318463262, -205608.80056093965, -156662.6283980986, + -114507.81271816691, -84264.51377749203, -52278.54896492058, + -34026.10926525811, -31813.051775784596, -28655.01924342699, + -23926.508051361736, -18954.703217558414, -9698.462085040572, + 4446.849871817063, 17780.78510186893, 21796.89849324473, + 17377.786913608565, 4861.168919701738, -17952.31424385262, + -45347.21926518326, -68028.50331804504, -82432.26292795951, + -86923.74336458973, -79523.64842887709, -63784.920457954555, + -46607.73064378806, -33939.519008564464, -30539.43321490697, + -38705.386436834626, -56688.4805448311, -79869.22904821187, + -100844.1028927337, -114252.06968582107, -117106.01474527312, + -106636.80380512592, -86172.37956215386, -63946.26789237995, + -44696.34558639753, -32967.30059229187, -33904.36356315149, + -46345.15322519447, -65500.177266828934, -86180.56793183417, + -103317.37864097468, -110696.26351675256, -107727.98445523407, + -97368.7750932932, -80146.55900066772, -62440.503032450215, + -50162.003687609285, -43395.647226259345, -42255.54296205388, + -45171.86453879958, -48501.750550879755, -48591.262402844295, + -43200.41498381911, -32847.32247342922, -19585.72652305033, + -4670.932943381052, 10790.753035066451, 23814.445419655043, + 40068.06819664574, 66870.74993784717, 181485.5111444608 + ] + } +} diff --git a/tests/cases/vmr/input/0140_2001_calibrate_from_0d.json b/tests/cases/vmr/input/0140_2001_calibrate_from_0d.json index 1e58b35e1..ca7ab3fc6 100644 --- a/tests/cases/vmr/input/0140_2001_calibrate_from_0d.json +++ b/tests/cases/vmr/input/0140_2001_calibrate_from_0d.json @@ -1,33799 +1,12228 @@ { - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 25.674478887744097, - 25.94535841671895, - 26.40397770930373, - 27.078557220791417, - 27.987924243407218, - 29.223018699271037, - 30.872863997957957, - 33.14710517392046, - 36.24233649316084, - 40.32941619284094, - 45.707199117022874, - 52.3992217826857, - 60.62210097617118, - 70.22501556164931, - 81.05839546420485, - 92.99648379412291, - 105.49834749077813, - 118.48276992683357, - 131.27259753840468, - 143.7649170026322, - 155.35688109143825, - 165.80346685084584, - 174.7861901139547, - 181.8894769571331, - 187.03405970454247, - 189.92968409297364, - 190.54660446170104, - 188.8393317841419, - 184.95869990371955, - 179.00706479935084, - 171.36892276825773, - 162.17188382738493, - 151.9224840372999, - 140.69629176277343, - 128.8758653843917, - 116.79196935170167, - 104.40209357822438, - 92.1540459381269, - 79.96017988979212, - 68.31079157809357, - 57.16093078281224, - 46.90621631712706, - 37.866800968464474, - 30.021884357838466, - 23.657451092007406, - 18.65215821403915, - 15.026506001685505, - 12.617459012327329, - 11.222617178148154, - 10.668320045402487, - 10.775780400321388, - 11.426953130150322, - 12.573357800939682, - 14.17715631699319, - 16.245875690586708, - 18.77312459468089, - 21.66200146102451, - 24.87301321309217, - 28.183734122582287, - 31.485700969509814, - 34.5548741049021, - 37.202931571616574, - 39.38566156483294, - 41.01172010677542, - 42.138563589177416, - 42.809473436279944, - 43.1255305264649, - 43.165580110023946, - 42.997790777114155, - 42.65457442604729, - 42.154960997292505, - 41.48541045198559, - 40.6598910096873, - 39.67391551057553, - 38.569986753415115, - 37.41430731338149, - 36.24090910332261, - 35.129941865339894, - 34.09139769664441, - 33.1525575391422, - 32.297312222462224, - 31.48971969828123, - 30.714288194429606, - 29.93583369617746, - 29.174750273047025, - 28.437718719180175, - 27.777383767244913, - 27.22607248914084, - 26.812199166529453, - 26.54440338309936, - 26.39417815218615, - 26.321846831150243, - 26.27277536814443, - 26.202064928995775, - 26.085898194797117, - 25.925203022216337, - 25.754547731026946, - 25.61956451593617, - 25.57745195059132, - 25.674478887744097 - ], - "t": [ - 0.0, - 0.008909090909090906, - 0.017818181818181813, - 0.026727272727272718, - 0.035636363636363626, - 0.044545454545454534, - 0.053454545454545435, - 0.06236363636363634, - 0.07127272727272725, - 0.08018181818181816, - 0.08909090909090907, - 0.09799999999999998, - 0.10690909090909087, - 0.11581818181818178, - 0.12472727272727269, - 0.1336363636363636, - 0.1425454545454545, - 0.1514545454545454, - 0.16036363636363632, - 0.1692727272727272, - 0.17818181818181814, - 0.18709090909090903, - 0.19599999999999995, - 0.20490909090909085, - 0.21381818181818174, - 0.22272727272727266, - 0.23163636363636356, - 0.24054545454545448, - 0.24945454545454537, - 0.2583636363636363, - 0.2672727272727272, - 0.2761818181818181, - 0.285090909090909, - 0.29399999999999993, - 0.3029090909090908, - 0.3118181818181817, - 0.32072727272727264, - 0.32963636363636356, - 0.3385454545454544, - 0.34745454545454535, - 0.35636363636363627, - 0.36527272727272714, - 0.37418181818181806, - 0.383090909090909, - 0.3919999999999999, - 0.40090909090909077, - 0.4098181818181817, - 0.4187272727272726, - 0.4276363636363635, - 0.4365454545454544, - 0.4454545454545453, - 0.45436363636363625, - 0.4632727272727271, - 0.47218181818181804, - 0.48109090909090896, - 0.4899999999999999, - 0.49890909090909075, - 0.5078181818181816, - 0.5167272727272726, - 0.5256363636363635, - 0.5345454545454544, - 0.5434545454545453, - 0.5523636363636362, - 0.5612727272727271, - 0.570181818181818, - 0.5790909090909089, - 0.5879999999999999, - 0.5969090909090907, - 0.6058181818181816, - 0.6147272727272726, - 0.6236363636363634, - 0.6325454545454544, - 0.6414545454545453, - 0.6503636363636361, - 0.6592727272727271, - 0.668181818181818, - 0.6770909090909089, - 0.6859999999999998, - 0.6949090909090907, - 0.7038181818181816, - 0.7127272727272725, - 0.7216363636363634, - 0.7305454545454543, - 0.7394545454545453, - 0.7483636363636361, - 0.7572727272727271, - 0.766181818181818, - 0.7750909090909088, - 0.7839999999999998, - 0.7929090909090907, - 0.8018181818181815, - 0.8107272727272725, - 0.8196363636363634, - 0.8285454545454543, - 0.8374545454545452, - 0.8463636363636361, - 0.855272727272727, - 0.8641818181818179, - 0.8730909090909088, - 0.8819999999999997 - ] - } - }, - { - "bc_name": "RCR_0", - "bc_type": "RCR", - "bc_values": { - "C": 6.2771e-05, - "Pd": 0.0, - "Rd": 21136.07, - "Rp": 3492.25 - } - }, - { - "bc_name": "RCR_1", - "bc_type": "RCR", - "bc_values": { - "C": 0.000105293, - "Pd": 0.0, - "Rd": 13335.72, - "Rp": 2084.437 - } - }, - { - "bc_name": "RCR_2", - "bc_type": "RCR", - "bc_values": { - "C": 6.2771e-05, - "Pd": 0.0, - "Rd": 22067.45, - "Rp": 3495.473 - } - }, - { - "bc_name": "RCR_3", - "bc_type": "RCR", - "bc_values": { - "C": 0.00013478, - "Pd": 0.0, - "Rd": 10230.62, - "Rp": 1627.759 - } - }, - { - "bc_name": "RCR_4", - "bc_type": "RCR", - "bc_values": { - "C": 2.69561e-05, - "Pd": 0.0, - "Rd": 51446.11, - "Rp": 8139.868 - } - }, - { - "bc_name": "RCR_5", - "bc_type": "RCR", - "bc_values": { - "C": 3.67007e-05, - "Pd": 0.0, - "Rd": 38604.41, - "Rp": 5981.256 - } - }, - { - "bc_name": "RCR_6", - "bc_type": "RCR", - "bc_values": { - "C": 2.69561e-05, - "Pd": 0.0, - "Rd": 51680.49, - "Rp": 8140.638 - } - }, - { - "bc_name": "RCR_7", - "bc_type": "RCR", - "bc_values": { - "C": 6.0493e-05, - "Pd": 0.0, - "Rd": 23055.22, - "Rp": 3627.554 - } - }, - { - "bc_name": "RCR_8", - "bc_type": "RCR", - "bc_values": { - "C": 0.000112253, - "Pd": 0.0, - "Rd": 12537.03, - "Rp": 1955.241 - } - }, - { - "bc_name": "RCR_9", - "bc_type": "RCR", - "bc_values": { - "C": 0.00013478, - "Pd": 0.0, - "Rd": 10019.46, - "Rp": 1627.064 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0 - ], - "junction_name": "J0", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 1, - 9, - 21, - 34, - 37 - ] - }, - { - "inlet_vessels": [ - 1 - ], - "junction_name": "J1", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 2, - 27 - ] - }, - { - "inlet_vessels": [ - 2 - ], - "junction_name": "J2", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 3, - 15 - ] - }, - { - "inlet_vessels": [ - 5 - ], - "junction_name": "J3", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 6, - 24 - ] - }, - { - "inlet_vessels": [ - 11 - ], - "junction_name": "J4", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 12, - 31 - ] - }, - { - "inlet_vessels": [ - 17 - ], - "junction_name": "J5", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 18, - 28 - ] - }, - { - "inlet_vessels": [ - 3 - ], - "junction_name": "J6", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 4 - ] - }, - { - "inlet_vessels": [ - 4 - ], - "junction_name": "J7", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 5 - ] - }, - { - "inlet_vessels": [ - 6 - ], - "junction_name": "J8", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 7 - ] - }, - { - "inlet_vessels": [ - 7 - ], - "junction_name": "J9", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 8 - ] - }, - { - "inlet_vessels": [ - 9 - ], - "junction_name": "J10", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 10 - ] - }, - { - "inlet_vessels": [ - 10 - ], - "junction_name": "J11", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 11 - ] - }, - { - "inlet_vessels": [ - 12 - ], - "junction_name": "J12", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 13 - ] - }, - { - "inlet_vessels": [ - 13 - ], - "junction_name": "J13", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 14 - ] - }, - { - "inlet_vessels": [ - 15 - ], - "junction_name": "J14", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 16 - ] - }, - { - "inlet_vessels": [ - 16 - ], - "junction_name": "J15", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 17 - ] - }, - { - "inlet_vessels": [ - 18 - ], - "junction_name": "J16", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 19 - ] - }, - { - "inlet_vessels": [ - 19 - ], - "junction_name": "J17", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 20 - ] - }, - { - "inlet_vessels": [ - 21 - ], - "junction_name": "J18", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 22 - ] - }, - { - "inlet_vessels": [ - 22 - ], - "junction_name": "J19", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 23 - ] - }, - { - "inlet_vessels": [ - 24 - ], - "junction_name": "J20", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 25 - ] - }, - { - "inlet_vessels": [ - 25 - ], - "junction_name": "J21", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 26 - ] - }, - { - "inlet_vessels": [ - 28 - ], - "junction_name": "J22", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 29 - ] - }, - { - "inlet_vessels": [ - 29 - ], - "junction_name": "J23", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 30 - ] - }, - { - "inlet_vessels": [ - 31 - ], - "junction_name": "J24", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 32 - ] - }, - { - "inlet_vessels": [ - 32 - ], - "junction_name": "J25", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 33 - ] - }, - { - "inlet_vessels": [ - 34 - ], - "junction_name": "J26", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 35 - ] - }, - { - "inlet_vessels": [ - 35 - ], - "junction_name": "J27", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 36 - ] - }, - { - "inlet_vessels": [ - 37 - ], - "junction_name": "J28", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 38 - ] - }, - { - "inlet_vessels": [ - 38 - ], - "junction_name": "J29", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 39 - ] - } - ], - "simulation_parameters": { - "density": 1.06, - "model_name": "0140_2001", - "number_of_cardiac_cycles": 9, - "number_of_time_pts_per_cardiac_cycle": 882, - "viscosity": 0.04, - "output_all_cycles": false + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 25.674478887744097, 25.94535841671895, 26.40397770930373, + 27.078557220791417, 27.987924243407218, 29.223018699271037, + 30.872863997957957, 33.14710517392046, 36.24233649316084, + 40.32941619284094, 45.707199117022874, 52.3992217826857, + 60.62210097617118, 70.22501556164931, 81.05839546420485, + 92.99648379412291, 105.49834749077813, 118.48276992683357, + 131.27259753840468, 143.7649170026322, 155.35688109143825, + 165.80346685084584, 174.7861901139547, 181.8894769571331, + 187.03405970454247, 189.92968409297364, 190.54660446170104, + 188.8393317841419, 184.95869990371955, 179.00706479935084, + 171.36892276825773, 162.17188382738493, 151.9224840372999, + 140.69629176277343, 128.8758653843917, 116.79196935170167, + 104.40209357822438, 92.1540459381269, 79.96017988979212, + 68.31079157809357, 57.16093078281224, 46.90621631712706, + 37.866800968464474, 30.021884357838466, 23.657451092007406, + 18.65215821403915, 15.026506001685505, 12.617459012327329, + 11.222617178148154, 10.668320045402487, 10.775780400321388, + 11.426953130150322, 12.573357800939682, 14.17715631699319, + 16.245875690586708, 18.77312459468089, 21.66200146102451, + 24.87301321309217, 28.183734122582287, 31.485700969509814, + 34.5548741049021, 37.202931571616574, 39.38566156483294, + 41.01172010677542, 42.138563589177416, 42.809473436279944, + 43.1255305264649, 43.165580110023946, 42.997790777114155, + 42.65457442604729, 42.154960997292505, 41.48541045198559, + 40.6598910096873, 39.67391551057553, 38.569986753415115, + 37.41430731338149, 36.24090910332261, 35.129941865339894, + 34.09139769664441, 33.1525575391422, 32.297312222462224, + 31.48971969828123, 30.714288194429606, 29.93583369617746, + 29.174750273047025, 28.437718719180175, 27.777383767244913, + 27.22607248914084, 26.812199166529453, 26.54440338309936, + 26.39417815218615, 26.321846831150243, 26.27277536814443, + 26.202064928995775, 26.085898194797117, 25.925203022216337, + 25.754547731026946, 25.61956451593617, 25.57745195059132, + 25.674478887744097 + ], + "t": [ + 0.0, 0.008909090909090906, 0.017818181818181813, 0.026727272727272718, + 0.035636363636363626, 0.044545454545454534, 0.053454545454545435, + 0.06236363636363634, 0.07127272727272725, 0.08018181818181816, + 0.08909090909090907, 0.09799999999999998, 0.10690909090909087, + 0.11581818181818178, 0.12472727272727269, 0.1336363636363636, + 0.1425454545454545, 0.1514545454545454, 0.16036363636363632, + 0.1692727272727272, 0.17818181818181814, 0.18709090909090903, + 0.19599999999999995, 0.20490909090909085, 0.21381818181818174, + 0.22272727272727266, 0.23163636363636356, 0.24054545454545448, + 0.24945454545454537, 0.2583636363636363, 0.2672727272727272, + 0.2761818181818181, 0.285090909090909, 0.29399999999999993, + 0.3029090909090908, 0.3118181818181817, 0.32072727272727264, + 0.32963636363636356, 0.3385454545454544, 0.34745454545454535, + 0.35636363636363627, 0.36527272727272714, 0.37418181818181806, + 0.383090909090909, 0.3919999999999999, 0.40090909090909077, + 0.4098181818181817, 0.4187272727272726, 0.4276363636363635, + 0.4365454545454544, 0.4454545454545453, 0.45436363636363625, + 0.4632727272727271, 0.47218181818181804, 0.48109090909090896, + 0.4899999999999999, 0.49890909090909075, 0.5078181818181816, + 0.5167272727272726, 0.5256363636363635, 0.5345454545454544, + 0.5434545454545453, 0.5523636363636362, 0.5612727272727271, + 0.570181818181818, 0.5790909090909089, 0.5879999999999999, + 0.5969090909090907, 0.6058181818181816, 0.6147272727272726, + 0.6236363636363634, 0.6325454545454544, 0.6414545454545453, + 0.6503636363636361, 0.6592727272727271, 0.668181818181818, + 0.6770909090909089, 0.6859999999999998, 0.6949090909090907, + 0.7038181818181816, 0.7127272727272725, 0.7216363636363634, + 0.7305454545454543, 0.7394545454545453, 0.7483636363636361, + 0.7572727272727271, 0.766181818181818, 0.7750909090909088, + 0.7839999999999998, 0.7929090909090907, 0.8018181818181815, + 0.8107272727272725, 0.8196363636363634, 0.8285454545454543, + 0.8374545454545452, 0.8463636363636361, 0.855272727272727, + 0.8641818181818179, 0.8730909090909088, 0.8819999999999997 + ] + } }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 10.363988810880336, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 1, - "vessel_length": 4.66281727880718, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 2, - "vessel_length": 2.116158678641109, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 3, - "vessel_length": 0.35990552284365307, - "vessel_name": "branch3_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 4, - "vessel_length": 0.864484150026015, - "vessel_name": "branch3_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 5, - "vessel_length": 8.844469069947266, - "vessel_name": "branch3_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 6, - "vessel_length": 0.3274863354762827, - "vessel_name": "branch4_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 7, - "vessel_length": 0.13126708493434283, - "vessel_name": "branch4_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_0" - }, - "vessel_id": 8, - "vessel_length": 14.522367746763132, - "vessel_name": "branch4_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 9, - "vessel_length": 0.4354726919461728, - "vessel_name": "branch5_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 10, - "vessel_length": 1.1021257371704019, - "vessel_name": "branch5_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 11, - "vessel_length": 1.197892120556633, - "vessel_name": "branch5_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 12, - "vessel_length": 0.22487849028322263, - "vessel_name": "branch6_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 13, - "vessel_length": 1.3305241414719227, - "vessel_name": "branch6_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_1" - }, - "vessel_id": 14, - "vessel_length": 2.4724650795955725, - "vessel_name": "branch6_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 15, - "vessel_length": 3.1676143243342416, - "vessel_name": "branch7_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 16, - "vessel_length": 0.9349331414099631, - "vessel_name": "branch7_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 17, - "vessel_length": 6.532761902851568, - "vessel_name": "branch7_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 18, - "vessel_length": 12.131550548508903, - "vessel_name": "branch8_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 19, - "vessel_length": 1.3728431428203225, - "vessel_name": "branch8_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_2" - }, - "vessel_id": 20, - "vessel_length": 0.7043738355971776, - "vessel_name": "branch8_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 21, - "vessel_length": 1.1208205168121053, - "vessel_name": "branch9_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 22, - "vessel_length": 1.3241597330959292, - "vessel_name": "branch9_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_3" - }, - "vessel_id": 23, - "vessel_length": 4.00169754634469, - "vessel_name": "branch9_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 24, - "vessel_length": 0.552191808078751, - "vessel_name": "branch10_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 25, - "vessel_length": 0.5270977183058395, - "vessel_name": "branch10_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_4" - }, - "vessel_id": 26, - "vessel_length": 3.5488612883908073, - "vessel_name": "branch10_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_5" - }, - "vessel_id": 27, - "vessel_length": 4.236657060976641, - "vessel_name": "branch11_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 28, - "vessel_length": 0.23664468015987364, - "vessel_name": "branch12_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 29, - "vessel_length": 2.4484809178077045, - "vessel_name": "branch12_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_6" - }, - "vessel_id": 30, - "vessel_length": 0.23609553650119913, - "vessel_name": "branch12_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 31, - "vessel_length": 1.2623969755085829, - "vessel_name": "branch13_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 32, - "vessel_length": 2.6214394087987603, - "vessel_name": "branch13_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_7" - }, - "vessel_id": 33, - "vessel_length": 8.331258378528362, - "vessel_name": "branch13_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 34, - "vessel_length": 0.34130122602911156, - "vessel_name": "branch14_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 35, - "vessel_length": 1.3016520368622686, - "vessel_name": "branch14_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_8" - }, - "vessel_id": 36, - "vessel_length": 2.1909658954476545, - "vessel_name": "branch14_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 37, - "vessel_length": 2.410068685549808, - "vessel_name": "branch15_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "vessel_id": 38, - "vessel_length": 1.035048097779632, - "vessel_name": "branch15_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_9" - }, - "vessel_id": 39, - "vessel_length": 3.1133534339282987, - "vessel_name": "branch15_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 0.0, - "L": 0.0, - "R_poiseuille": 0.0, - "stenosis_coefficient": 0.0 - } - } - ], - "calibration_parameters": { - "tolerance_gradient": 1e-05, - "tolerance_increment": 1e-09, - "maximum_iterations": 20, - "calibrate_stenosis_coefficient": true, - "set_capacitance_to_zero": false + { + "bc_name": "RCR_0", + "bc_type": "RCR", + "bc_values": { + "C": 6.2771e-5, + "Pd": 0.0, + "Rd": 21136.07, + "Rp": 3492.25 + } }, - "y": { - "flow:branch0_seg0:J0": [ - 25.863323772071247, - 26.06534674187386, - 26.459196283666618, - 27.061639362616134, - 27.88760555157769, - 28.983016274996206, - 30.452124167904238, - 32.430199389180856, - 35.14836624831182, - 38.80758211143984, - 43.661115494028934, - 49.87416140261827, - 57.548975918926985, - 66.72639482604868, - 77.18688725274224, - 88.83613024474077, - 101.23713669719305, - 114.15430812387144, - 127.14319510970785, - 139.73852082273768, - 151.68961485662334, - 162.48867104512536, - 171.95511061891037, - 179.69716263964915, - 185.46565707395226, - 189.08166141476366, - 190.39708702196583, - 189.37892044192168, - 186.11699630312276, - 180.713119197081, - 173.46985007178625, - 164.6381410961134, - 154.53433544794441, - 143.56598965027945, - 131.87453556098077, - 119.84913878577369, - 107.53092980714148, - 95.18456966323538, - 83.00803881751354, - 71.11288191795548, - 59.84187394901971, - 49.30463606527955, - 39.84944691398702, - 31.650020879730278, - 24.86369061791769, - 19.548567269207535, - 15.641451594755027, - 13.031591526129706, - 11.50925189664932, - 10.866502817983738, - 10.904218934912478, - 11.483416985155252, - 12.51982008170942, - 14.001353209480461, - 15.917927961234305, - 18.301323798323622, - 21.104084682135632, - 24.251912478613047, - 27.60988161549061, - 30.97703550721582, - 34.18092551885121, - 37.00918861664934, - 39.35046152966264, - 41.12700343575892, - 42.354204580073365, - 43.09322224059531, - 43.437550864493616, - 43.49122078037609, - 43.336241793805236, - 43.01981831913373, - 42.55858004514483, - 41.94606348969096, - 41.166901188734684, - 40.22980631619228, - 39.14743037841075, - 37.98006936721861, - 36.78418486004231, - 35.62782883646672, - 34.558886323876024, - 33.59440656670651, - 32.73499664299225, - 31.94169655252137, - 31.184279982752365, - 30.425741445838774, - 29.66031036327914, - 28.9104059998316, - 28.20728285662232, - 27.607308334983024, - 27.141972028881682, - 26.83267756919372, - 26.666609880773095, - 26.601017531143924, - 26.579349103458593, - 26.5434365817637, - 26.454653953989112, - 26.303415397928898, - 26.114703113304863, - 25.93765665448461, - 25.834821269358752, - 25.863323772071247 - ], - "pressure:branch0_seg0:J0": [ - 109184.2247568038, - 108960.08334194825, - 108808.06574557221, - 108731.74896974048, - 108739.52602852343, - 108852.52443392164, - 109130.65677680589, - 109628.5798950928, - 110459.49911959124, - 111694.7250239259, - 113426.70669932579, - 115727.48340001119, - 118584.44801677066, - 122054.67606022613, - 125984.32388200116, - 130385.63529497715, - 135076.34647184293, - 139976.53360305945, - 144968.40845658391, - 149821.79630325394, - 154548.70591976435, - 158888.73640108993, - 162846.17958416927, - 166220.22044639027, - 168913.964837845, - 170881.90888809774, - 172036.83396279917, - 172388.77362303305, - 171961.4944070379, - 170800.28099754866, - 169015.85834421997, - 166724.15396851714, - 163986.2168437468, - 161004.30752469026, - 157733.61560797074, - 154350.84037058838, - 150808.796995675, - 147199.93892578868, - 143635.24895918067, - 140070.97164123447, - 136727.099766906, - 133549.4813533953, - 130736.24146440033, - 128317.26758275626, - 126304.78114427126, - 124737.65773122244, - 123521.38916637588, - 122638.59596455404, - 121992.47646638434, - 121521.25083525143, - 121180.33089748345, - 120952.43649170286, - 120834.63132245911, - 120860.82711785649, - 121033.78095603862, - 121384.33913911138, - 121887.03597776733, - 122499.30294968892, - 123181.13403299895, - 123828.90644073393, - 124411.91644126122, - 124839.81798045697, - 125101.69245403043, - 125190.7135153392, - 125124.4371865532, - 124944.47306541247, - 124682.85457732512, - 124373.60266435878, - 124034.46070551482, - 123665.30323659649, - 123255.9944818378, - 122796.83522608771, - 122273.18686325914, - 121695.81835354793, - 121067.43992441318, - 120420.3975050044, - 119776.87622267928, - 119155.21909994849, - 118573.36839880272, - 118019.56638371758, - 117492.44049653572, - 116966.73814747296, - 116431.65285694577, - 115877.86671576713, - 115308.98052861723, - 114745.59030351634, - 114200.5697665593, - 113701.13744281624, - 113252.0483103213, - 112857.64790667953, - 112504.07554719147, - 112168.46991160532, - 111827.6173024971, - 111462.16627531259, - 111065.97085790984, - 110645.54173513905, - 110220.0156388605, - 109815.13620006792, - 109454.9922570863, - 109184.2247568038 - ], - "flow:J0:branch1_seg0": [ - 7.23486699454111, - 7.308799409906743, - 7.42958760593467, - 7.608094153155919, - 7.84904783991485, - 8.177495118521556, - 8.628202784872602, - 9.239974736535169, - 10.08687402661895, - 11.199194091243369, - 12.671234937730405, - 14.498402220766632, - 16.73915410311762, - 19.371483523431163, - 22.306724105178784, - 25.60020471543251, - 29.024529402411538, - 32.649276903903505, - 36.242525268337275, - 39.72316478747301, - 43.0526954999471, - 46.017073706330876, - 48.64809709421645, - 50.75951839364263, - 52.331233276601914, - 53.29839334644185, - 53.62699043782589, - 53.310212439991744, - 52.40202387611779, - 50.893528404901744, - 48.928146034360346, - 46.500712293738125, - 43.746674222009545, - 40.76958071019044, - 37.53973124074869, - 34.25555659201786, - 30.811685999113067, - 27.396147729846703, - 24.00258868989273, - 20.683529765100975, - 17.562893692993622, - 14.625685471698914, - 12.019985623027043, - 9.718356623639293, - 7.807650217988583, - 6.256708466098765, - 5.0749240151124075, - 4.228048166579419, - 3.656917269174855, - 3.332806839221945, - 3.2069633672009417, - 3.258867182348223, - 3.470743312831576, - 3.838712287237346, - 4.348141985303119, - 5.008283336226442, - 5.775882227485648, - 6.641868719808868, - 7.5475200264356905, - 8.44894786732002, - 9.30291139644758, - 10.049819591324827, - 10.688667955275355, - 11.183493228602465, - 11.556160062547152, - 11.808176870152554, - 11.9609809120793, - 12.036319374098492, - 12.045588212056774, - 11.995979934673167, - 11.892606052834523, - 11.733702562267984, - 11.522094159958838, - 11.266905795734532, - 10.972485885040324, - 10.664431188880727, - 10.346675405361776, - 10.043686891303238, - 9.756004090339355, - 9.489436726713258, - 9.243771976493965, - 9.003969528638905, - 8.773839593240016, - 8.540702845707001, - 8.314469724897254, - 8.101597784970666, - 7.90781803153242, - 7.749718302864885, - 7.626043115731935, - 7.541201589138908, - 7.487092297312254, - 7.451430262797096, - 7.422635200023167, - 7.389506300289824, - 7.3472874928992615, - 7.2974113235328675, - 7.249537563920786, - 7.214180469597871, - 7.20610417361053, - 7.23486699454111 - ], - "pressure:J0:branch1_seg0": [ - 109184.2247568038, - 108960.08334194825, - 108808.06574557221, - 108731.74896974048, - 108739.52602852343, - 108852.52443392164, - 109130.65677680589, - 109628.5798950928, - 110459.49911959124, - 111694.7250239259, - 113426.70669932579, - 115727.48340001119, - 118584.44801677066, - 122054.67606022613, - 125984.32388200116, - 130385.63529497715, - 135076.34647184293, - 139976.53360305945, - 144968.40845658391, - 149821.79630325394, - 154548.70591976435, - 158888.73640108993, - 162846.17958416927, - 166220.22044639027, - 168913.964837845, - 170881.90888809774, - 172036.83396279917, - 172388.77362303305, - 171961.4944070379, - 170800.28099754866, - 169015.85834421997, - 166724.15396851714, - 163986.2168437468, - 161004.30752469026, - 157733.61560797074, - 154350.84037058838, - 150808.796995675, - 147199.93892578868, - 143635.24895918067, - 140070.97164123447, - 136727.099766906, - 133549.4813533953, - 130736.24146440033, - 128317.26758275626, - 126304.78114427126, - 124737.65773122244, - 123521.38916637588, - 122638.59596455404, - 121992.47646638434, - 121521.25083525143, - 121180.33089748345, - 120952.43649170286, - 120834.63132245911, - 120860.82711785649, - 121033.78095603862, - 121384.33913911138, - 121887.03597776733, - 122499.30294968892, - 123181.13403299895, - 123828.90644073393, - 124411.91644126122, - 124839.81798045697, - 125101.69245403043, - 125190.7135153392, - 125124.4371865532, - 124944.47306541247, - 124682.85457732512, - 124373.60266435878, - 124034.46070551482, - 123665.30323659649, - 123255.9944818378, - 122796.83522608771, - 122273.18686325914, - 121695.81835354793, - 121067.43992441318, - 120420.3975050044, - 119776.87622267928, - 119155.21909994849, - 118573.36839880272, - 118019.56638371758, - 117492.44049653572, - 116966.73814747296, - 116431.65285694577, - 115877.86671576713, - 115308.98052861723, - 114745.59030351634, - 114200.5697665593, - 113701.13744281624, - 113252.0483103213, - 112857.64790667953, - 112504.07554719147, - 112168.46991160532, - 111827.6173024971, - 111462.16627531259, - 111065.97085790984, - 110645.54173513905, - 110220.0156388605, - 109815.13620006792, - 109454.9922570863, - 109184.2247568038 - ], - "flow:J0:branch5_seg0": [ - 5.4375478162733755, - 5.483272706587209, - 5.574546685809298, - 5.713125535225978, - 5.901911731383291, - 6.147647235152849, - 6.472809778232448, - 6.907546647127241, - 7.502898215847121, - 8.311268262718105, - 9.383936977688641, - 10.773444126864975, - 12.492547437728211, - 14.562945214312458, - 16.93959784902539, - 19.580637950193587, - 22.41499920994195, - 25.352488556880175, - 28.321765450888567, - 31.20360148915004, - 33.93137121499567, - 36.405965319667885, - 38.565319674238864, - 40.33362417601144, - 41.642886009147695, - 42.45092500721531, - 42.721244006002735, - 42.44551102818489, - 41.634903423855285, - 40.326294004940024, - 38.57403261310543, - 36.46138971853747, - 34.050211824087484, - 31.44172486896506, - 28.689659804435646, - 25.863205446799796, - 23.00311401606976, - 20.142833779890072, - 17.342714638778013, - 14.623020971757121, - 12.056678169697195, - 9.675602962357841, - 7.550674015700896, - 5.735868284732074, - 4.25444521191055, - 3.129832919872798, - 2.333707310536194, - 1.840338982366575, - 1.5977999941814776, - 1.548205419316709, - 1.643858758792726, - 1.8472340447045892, - 2.1382317071539587, - 2.5160473559630003, - 2.98165766393436, - 3.5443866592325572, - 4.201352601132688, - 4.93285524709079, - 5.714612320782986, - 6.496066980540755, - 7.2384940665259165, - 7.892125304580829, - 8.424855997313683, - 8.823381011947854, - 9.087273945763139, - 9.236079615797324, - 9.29328818935135, - 9.284881595148942, - 9.233441817377226, - 9.150876516223455, - 9.040672371885996, - 8.900965930922174, - 8.725584265542256, - 8.514891562805344, - 8.27102654161215, - 8.005929764668728, - 7.7357512439354466, - 7.474584370564958, - 7.237147742325565, - 7.026384745787861, - 6.842483615427028, - 6.677145376346303, - 6.51971531672521, - 6.362266322315722, - 6.200225141690724, - 6.03881193278834, - 5.886260137657523, - 5.755474490352005, - 5.656298008113565, - 5.594280293483494, - 5.567108721147121, - 5.565057278540992, - 5.573567722049154, - 5.577820992183491, - 5.567416993321287, - 5.539197725496349, - 5.498517695574097, - 5.45790300090882, - 5.432610112107991, - 5.4375478162733755 - ], - "pressure:J0:branch5_seg0": [ - 109184.2247568038, - 108960.08334194825, - 108808.06574557221, - 108731.74896974048, - 108739.52602852343, - 108852.52443392164, - 109130.65677680589, - 109628.5798950928, - 110459.49911959124, - 111694.7250239259, - 113426.70669932579, - 115727.48340001119, - 118584.44801677066, - 122054.67606022613, - 125984.32388200116, - 130385.63529497715, - 135076.34647184293, - 139976.53360305945, - 144968.40845658391, - 149821.79630325394, - 154548.70591976435, - 158888.73640108993, - 162846.17958416927, - 166220.22044639027, - 168913.964837845, - 170881.90888809774, - 172036.83396279917, - 172388.77362303305, - 171961.4944070379, - 170800.28099754866, - 169015.85834421997, - 166724.15396851714, - 163986.2168437468, - 161004.30752469026, - 157733.61560797074, - 154350.84037058838, - 150808.796995675, - 147199.93892578868, - 143635.24895918067, - 140070.97164123447, - 136727.099766906, - 133549.4813533953, - 130736.24146440033, - 128317.26758275626, - 126304.78114427126, - 124737.65773122244, - 123521.38916637588, - 122638.59596455404, - 121992.47646638434, - 121521.25083525143, - 121180.33089748345, - 120952.43649170286, - 120834.63132245911, - 120860.82711785649, - 121033.78095603862, - 121384.33913911138, - 121887.03597776733, - 122499.30294968892, - 123181.13403299895, - 123828.90644073393, - 124411.91644126122, - 124839.81798045697, - 125101.69245403043, - 125190.7135153392, - 125124.4371865532, - 124944.47306541247, - 124682.85457732512, - 124373.60266435878, - 124034.46070551482, - 123665.30323659649, - 123255.9944818378, - 122796.83522608771, - 122273.18686325914, - 121695.81835354793, - 121067.43992441318, - 120420.3975050044, - 119776.87622267928, - 119155.21909994849, - 118573.36839880272, - 118019.56638371758, - 117492.44049653572, - 116966.73814747296, - 116431.65285694577, - 115877.86671576713, - 115308.98052861723, - 114745.59030351634, - 114200.5697665593, - 113701.13744281624, - 113252.0483103213, - 112857.64790667953, - 112504.07554719147, - 112168.46991160532, - 111827.6173024971, - 111462.16627531259, - 111065.97085790984, - 110645.54173513905, - 110220.0156388605, - 109815.13620006792, - 109454.9922570863, - 109184.2247568038 - ], - "flow:J0:branch9_seg0": [ - 4.603306224222611, - 4.6257863490276065, - 4.681920641318977, - 4.774165239742731, - 4.905119227141204, - 5.079385104900929, - 5.310797128284378, - 5.620882086490945, - 6.0434519710340195, - 6.618882812374348, - 7.386444214732206, - 8.387205673497858, - 9.64067944419896, - 11.162369068160086, - 12.934349097971154, - 14.92335993084346, - 17.08460034765694, - 19.349855428258447, - 21.6633279329863, - 23.93963875896967, - 26.116293295417712, - 28.125339755250874, - 29.906422963223502, - 31.408995272432538, - 32.57466286466512, - 33.36813739651153, - 33.75911662681014, - 33.73406700987722, - 33.2969254104764, - 32.46848746481316, - 31.283523590324553, - 29.79789306335981, - 28.05974080651138, - 26.13664291863365, - 24.079394514989342, - 21.933867787068518, - 19.741677359583306, - 17.52578469106344, - 15.331631680464117, - 13.182568224281638, - 11.122910084178546, - 9.190600607250097, - 7.428367178335163, - 5.886695276895574, - 4.5902699181318365, - 3.5613603950519903, - 2.7935480123004823, - 2.269658597894026, - 1.9585164398682435, - 1.8189008732627754, - 1.812583472588597, - 1.9082135847616355, - 2.085467065361458, - 2.3371184031660768, - 2.662385599013123, - 3.064350565976442, - 3.5433612789393836, - 4.087268477726163, - 4.6787936932220475, - 5.285407991475916, - 5.874267802773741, - 6.410066343899225, - 6.86287134457146, - 7.217704739148744, - 7.469350378426576, - 7.627099665825538, - 7.706400768715049, - 7.726132347255088, - 7.703894608692921, - 7.6515941901868185, - 7.574362553305648, - 7.472728067522319, - 7.343750509482943, - 7.186526925097425, - 7.002706471205347, - 6.798845238379311, - 6.586395465561815, - 6.376203470316048, - 6.179579303732929, - 6.001667353173499, - 5.843732984973724, - 5.70194248167643, - 5.569037796308207, - 5.4388232569073836, - 5.306890883370993, - 5.175058944355324, - 5.04849748626802, - 4.935618306999321, - 4.84466686437778, - 4.78061114414114, - 4.744006004782861, - 4.729336061794418, - 4.727048411826222, - 4.7261790723643795, - 4.717754654411711, - 4.697521081487855, - 4.667178073754169, - 4.634171578722273, - 4.609099351840685, - 4.603306224222611 - ], - "pressure:J0:branch9_seg0": [ - 109184.2247568038, - 108960.08334194825, - 108808.06574557221, - 108731.74896974048, - 108739.52602852343, - 108852.52443392164, - 109130.65677680589, - 109628.5798950928, - 110459.49911959124, - 111694.7250239259, - 113426.70669932579, - 115727.48340001119, - 118584.44801677066, - 122054.67606022613, - 125984.32388200116, - 130385.63529497715, - 135076.34647184293, - 139976.53360305945, - 144968.40845658391, - 149821.79630325394, - 154548.70591976435, - 158888.73640108993, - 162846.17958416927, - 166220.22044639027, - 168913.964837845, - 170881.90888809774, - 172036.83396279917, - 172388.77362303305, - 171961.4944070379, - 170800.28099754866, - 169015.85834421997, - 166724.15396851714, - 163986.2168437468, - 161004.30752469026, - 157733.61560797074, - 154350.84037058838, - 150808.796995675, - 147199.93892578868, - 143635.24895918067, - 140070.97164123447, - 136727.099766906, - 133549.4813533953, - 130736.24146440033, - 128317.26758275626, - 126304.78114427126, - 124737.65773122244, - 123521.38916637588, - 122638.59596455404, - 121992.47646638434, - 121521.25083525143, - 121180.33089748345, - 120952.43649170286, - 120834.63132245911, - 120860.82711785649, - 121033.78095603862, - 121384.33913911138, - 121887.03597776733, - 122499.30294968892, - 123181.13403299895, - 123828.90644073393, - 124411.91644126122, - 124839.81798045697, - 125101.69245403043, - 125190.7135153392, - 125124.4371865532, - 124944.47306541247, - 124682.85457732512, - 124373.60266435878, - 124034.46070551482, - 123665.30323659649, - 123255.9944818378, - 122796.83522608771, - 122273.18686325914, - 121695.81835354793, - 121067.43992441318, - 120420.3975050044, - 119776.87622267928, - 119155.21909994849, - 118573.36839880272, - 118019.56638371758, - 117492.44049653572, - 116966.73814747296, - 116431.65285694577, - 115877.86671576713, - 115308.98052861723, - 114745.59030351634, - 114200.5697665593, - 113701.13744281624, - 113252.0483103213, - 112857.64790667953, - 112504.07554719147, - 112168.46991160532, - 111827.6173024971, - 111462.16627531259, - 111065.97085790984, - 110645.54173513905, - 110220.0156388605, - 109815.13620006792, - 109454.9922570863, - 109184.2247568038 - ], - "flow:J0:branch14_seg0": [ - 3.6851688154625646, - 3.7298690983035048, - 3.8079238940603153, - 3.9186233876667655, - 4.0641539737905035, - 4.24961935137308, - 4.495062814429342, - 4.8248013456578365, - 5.279016391445132, - 5.897515137753224, - 6.712135448205373, - 7.761496703188749, - 9.040742958632205, - 10.564239828972447, - 12.28534791237976, - 14.16550140171437, - 16.157381600171227, - 18.181230451632235, - 20.2047941536192, - 22.1264691015811, - 23.916840868442254, - 25.506287644543807, - 26.85258183869496, - 27.914886180112006, - 28.635561502754776, - 29.00223637313285, - 28.988878110699385, - 28.598849697898363, - 27.8472211963508, - 26.768778903780436, - 25.405138475312004, - 23.828135159281207, - 22.072355750024247, - 20.219246501177203, - 18.297785657630687, - 16.34888634985482, - 14.404943159455387, - 12.470013372434387, - 10.60445216861702, - 8.804573798155523, - 7.1319446470264865, - 5.606091915976807, - 4.272259894331069, - 3.177003826486692, - 2.3156530065396823, - 1.7059428164933645, - 1.3106890829003681, - 1.107404940356618, - 1.05387414315721, - 1.1059608786218678, - 1.2335001255132267, - 1.4156341823404635, - 1.6451248450611804, - 1.9285896273126057, - 2.2711725396099935, - 2.68025245713892, - 3.154117443118852, - 3.6713375837844815, - 4.214306850501926, - 4.740414864773663, - 5.223681753495169, - 5.630112204433606, - 5.939706511106839, - 6.152818626192052, - 6.273131487269979, - 6.322320044942418, - 6.318721130778246, - 6.281913594728283, - 6.225853369240464, - 6.155720046196422, - 6.069795574742362, - 5.964432232681414, - 5.833483847770555, - 5.67807674369824, - 5.5012955824553424, - 5.313274664024858, - 5.1282242506555065, - 4.9546281848535045, - 4.803192096335847, - 4.672207414090582, - 4.559811489416546, - 4.457794347493871, - 4.356860532101158, - 4.252623316179806, - 4.142530850910758, - 4.03378149111719, - 3.9335613334347106, - 3.85231277775273, - 3.7967945335687654, - 3.7686854921550754, - 3.764420180168544, - 3.773940312305971, - 3.785432430937901, - 3.788136769332418, - 3.7761208778962065, - 3.7498727402431906, - 3.716095019342763, - 3.6863911413940427, - 3.6726065342943475, - 3.6851688154625646 - ], - "pressure:J0:branch14_seg0": [ - 109184.2247568038, - 108960.08334194825, - 108808.06574557221, - 108731.74896974048, - 108739.52602852343, - 108852.52443392164, - 109130.65677680589, - 109628.5798950928, - 110459.49911959124, - 111694.7250239259, - 113426.70669932579, - 115727.48340001119, - 118584.44801677066, - 122054.67606022613, - 125984.32388200116, - 130385.63529497715, - 135076.34647184293, - 139976.53360305945, - 144968.40845658391, - 149821.79630325394, - 154548.70591976435, - 158888.73640108993, - 162846.17958416927, - 166220.22044639027, - 168913.964837845, - 170881.90888809774, - 172036.83396279917, - 172388.77362303305, - 171961.4944070379, - 170800.28099754866, - 169015.85834421997, - 166724.15396851714, - 163986.2168437468, - 161004.30752469026, - 157733.61560797074, - 154350.84037058838, - 150808.796995675, - 147199.93892578868, - 143635.24895918067, - 140070.97164123447, - 136727.099766906, - 133549.4813533953, - 130736.24146440033, - 128317.26758275626, - 126304.78114427126, - 124737.65773122244, - 123521.38916637588, - 122638.59596455404, - 121992.47646638434, - 121521.25083525143, - 121180.33089748345, - 120952.43649170286, - 120834.63132245911, - 120860.82711785649, - 121033.78095603862, - 121384.33913911138, - 121887.03597776733, - 122499.30294968892, - 123181.13403299895, - 123828.90644073393, - 124411.91644126122, - 124839.81798045697, - 125101.69245403043, - 125190.7135153392, - 125124.4371865532, - 124944.47306541247, - 124682.85457732512, - 124373.60266435878, - 124034.46070551482, - 123665.30323659649, - 123255.9944818378, - 122796.83522608771, - 122273.18686325914, - 121695.81835354793, - 121067.43992441318, - 120420.3975050044, - 119776.87622267928, - 119155.21909994849, - 118573.36839880272, - 118019.56638371758, - 117492.44049653572, - 116966.73814747296, - 116431.65285694577, - 115877.86671576713, - 115308.98052861723, - 114745.59030351634, - 114200.5697665593, - 113701.13744281624, - 113252.0483103213, - 112857.64790667953, - 112504.07554719147, - 112168.46991160532, - 111827.6173024971, - 111462.16627531259, - 111065.97085790984, - 110645.54173513905, - 110220.0156388605, - 109815.13620006792, - 109454.9922570863, - 109184.2247568038 - ], - "flow:J0:branch15_seg0": [ - 4.9024339215715855, - 4.9176191780488026, - 4.965217456543355, - 5.047631046824745, - 5.1673727793478434, - 5.3288694650477995, - 5.545251662085463, - 5.836994573369656, - 6.236125643366603, - 6.780721807350797, - 7.5073639156723075, - 8.45361267830006, - 9.635851975249999, - 11.06535719117254, - 12.72086828818717, - 14.566426246556853, - 16.555626137011398, - 18.621456783197075, - 20.71078230387651, - 22.74564668556387, - 24.672413977820604, - 26.43400461933194, - 27.982689048536596, - 29.280138617450532, - 30.281313420782737, - 30.961969291462143, - 31.300857840627646, - 31.290280265969496, - 30.935922396322493, - 30.25603041864561, - 29.27900935868392, - 28.05001086119677, - 26.605352845311756, - 24.998794651313087, - 23.267964343176374, - 21.447622610032685, - 19.569509272919966, - 17.649790090000764, - 15.726651639761648, - 13.819189158660192, - 11.967447355123866, - 10.206655107995887, - 8.578160202592853, - 7.132096867976642, - 5.8956722633470395, - 4.894722671690618, - 4.128583173905578, - 3.5861408389330682, - 3.242144050267534, - 3.0606288075604424, - 3.007313210816988, - 3.053467991000337, - 3.1802531513012497, - 3.3808855358014345, - 3.654570173373706, - 4.00405077974926, - 4.429371131459059, - 4.918582450202744, - 5.454648724547957, - 6.006197803105469, - 6.541570499608816, - 7.02706517241085, - 7.434359721395302, - 7.749605829867818, - 7.9682887060665175, - 8.099546043877472, - 8.158159863569681, - 8.161973869145283, - 8.12746378643784, - 8.06564763185387, - 7.981143492376289, - 7.874234696297066, - 7.741988405980091, - 7.583405288856743, - 7.39991589809759, - 7.197588511264988, - 6.9871384945277635, - 6.778725919428971, - 6.582963091142326, - 6.404710326941306, - 6.245196576680975, - 6.100844818365855, - 5.964826744377778, - 5.831325704728858, - 5.696193762409405, - 5.561155846600078, - 5.431145867729642, - 5.314184457014082, - 5.218169507089637, - 5.147899050275101, - 5.103982677362316, - 5.081253615705447, - 5.070665338622148, - 5.061793447593589, - 5.04607393546064, - 5.019412527168638, - 4.983374760713053, - 4.945010463861597, - 4.914401097505198, - 4.9024339215715855 - ], - "pressure:J0:branch15_seg0": [ - 109184.2247568038, - 108960.08334194825, - 108808.06574557221, - 108731.74896974048, - 108739.52602852343, - 108852.52443392164, - 109130.65677680589, - 109628.5798950928, - 110459.49911959124, - 111694.7250239259, - 113426.70669932579, - 115727.48340001119, - 118584.44801677066, - 122054.67606022613, - 125984.32388200116, - 130385.63529497715, - 135076.34647184293, - 139976.53360305945, - 144968.40845658391, - 149821.79630325394, - 154548.70591976435, - 158888.73640108993, - 162846.17958416927, - 166220.22044639027, - 168913.964837845, - 170881.90888809774, - 172036.83396279917, - 172388.77362303305, - 171961.4944070379, - 170800.28099754866, - 169015.85834421997, - 166724.15396851714, - 163986.2168437468, - 161004.30752469026, - 157733.61560797074, - 154350.84037058838, - 150808.796995675, - 147199.93892578868, - 143635.24895918067, - 140070.97164123447, - 136727.099766906, - 133549.4813533953, - 130736.24146440033, - 128317.26758275626, - 126304.78114427126, - 124737.65773122244, - 123521.38916637588, - 122638.59596455404, - 121992.47646638434, - 121521.25083525143, - 121180.33089748345, - 120952.43649170286, - 120834.63132245911, - 120860.82711785649, - 121033.78095603862, - 121384.33913911138, - 121887.03597776733, - 122499.30294968892, - 123181.13403299895, - 123828.90644073393, - 124411.91644126122, - 124839.81798045697, - 125101.69245403043, - 125190.7135153392, - 125124.4371865532, - 124944.47306541247, - 124682.85457732512, - 124373.60266435878, - 124034.46070551482, - 123665.30323659649, - 123255.9944818378, - 122796.83522608771, - 122273.18686325914, - 121695.81835354793, - 121067.43992441318, - 120420.3975050044, - 119776.87622267928, - 119155.21909994849, - 118573.36839880272, - 118019.56638371758, - 117492.44049653572, - 116966.73814747296, - 116431.65285694577, - 115877.86671576713, - 115308.98052861723, - 114745.59030351634, - 114200.5697665593, - 113701.13744281624, - 113252.0483103213, - 112857.64790667953, - 112504.07554719147, - 112168.46991160532, - 111827.6173024971, - 111462.16627531259, - 111065.97085790984, - 110645.54173513905, - 110220.0156388605, - 109815.13620006792, - 109454.9922570863, - 109184.2247568038 - ], - "flow:branch1_seg0:J1": [ - 7.3197718780767556, - 7.369334878794585, - 7.467316708502656, - 7.619689385809693, - 7.832408511991693, - 8.117147987783696, - 8.50603553439325, - 9.030148470029188, - 9.754808637574882, - 10.729323737876205, - 12.016862433871658, - 13.671543380294008, - 15.706260742664968, - 18.160281710872695, - 20.9613732316132, - 24.11121481873409, - 27.490195509235633, - 31.031593530368294, - 34.64337419011497, - 38.160322318944395, - 41.56744568008477, - 44.677005170641515, - 47.45484884873186, - 49.78269222787319, - 51.56890501178819, - 52.79084201223384, - 53.37847740106379, - 53.32921011367024, - 52.656582725170615, - 51.38081182286356, - 49.579695951379044, - 47.32582943592153, - 44.682337282823326, - 41.782040017696886, - 38.63005057638742, - 35.35940577114101, - 31.97728654153215, - 28.54986403947577, - 25.169262417947447, - 21.81350994974648, - 18.626244209153384, - 15.602656952316035, - 12.855417117298565, - 10.441046710795943, - 8.378080168098585, - 6.714204685958567, - 5.4127156110965835, - 4.471073419037803, - 3.834794853179514, - 3.4590781419122854, - 3.2991477925002113, - 3.3161447494034015, - 3.4873479297903778, - 3.8068452199966147, - 4.264504229895799, - 4.866887361951135, - 5.5964149513536805, - 6.4260635138079785, - 7.329683931689211, - 8.243334694188206, - 9.135077123090635, - 9.94064125995641, - 10.631400765562898, - 11.185366688548806, - 11.596396137595715, - 11.8813662464241, - 12.054456829152201, - 12.141711668594384, - 12.160385988267999, - 12.121919147132683, - 12.032340722084815, - 11.893050750313447, - 11.701085827893179, - 11.463156138047376, - 11.181309689237656, - 10.873075425040623, - 10.553582847821465, - 10.237480614387577, - 9.940884212794273, - 9.664388784497653, - 9.412790566422258, - 9.175779109423729, - 8.948490808281766, - 8.723764024560431, - 8.499023825969568, - 8.282770749087586, - 8.078812978319814, - 7.9033386940498165, - 7.762236145913541, - 7.660953852706622, - 7.597454991469454, - 7.560055374723918, - 7.53659330380527, - 7.512978397758939, - 7.48022592924787, - 7.435882572348591, - 7.385235103466752, - 7.339683330120218, - 7.313282508474946, - 7.3197718780767556 - ], - "pressure:branch1_seg0:J1": [ - 109176.92713602296, - 108946.4254865615, - 108787.650024979, - 108703.44664266305, - 108702.53063588498, - 108803.37347596798, - 109065.39908933234, - 109540.83958801902, - 110340.42746858626, - 111538.63548363814, - 113219.96194765385, - 115470.54294946173, - 118267.03961915965, - 121681.13578407999, - 125564.83767087158, - 129915.58729604482, - 134578.1056189281, - 139447.22228621427, - 144432.02136552546, - 149291.2799233579, - 154036.56991151356, - 158412.93390918177, - 162411.32677210672, - 165845.85717791982, - 168604.10950240394, - 170652.93404691495, - 171892.67607451946, - 172332.0145290301, - 171989.13311836513, - 170911.0104723265, - 169196.38436512815, - 166974.24148307854, - 164288.59086561305, - 161345.66917726723, - 158111.06671322297, - 154747.4927440472, - 151229.22292340902, - 147626.24782183475, - 144067.62638311, - 140492.6977122976, - 137129.63166477042, - 133927.068294865, - 131071.91491387735, - 128616.76235554605, - 126550.86739023564, - 124935.15316620983, - 123669.4460912874, - 122739.31440389613, - 122057.94166324999, - 121554.92993387688, - 121188.58048620251, - 120938.8254717534, - 120799.9204838209, - 120806.55633822628, - 120960.85284827492, - 121292.12902982089, - 121779.98989457637, - 122377.61243791059, - 123054.07264129318, - 123701.35348954255, - 124291.29517125935, - 124734.16238122205, - 125010.65714651112, - 125119.12039099543, - 125069.97468802896, - 124906.01251967152, - 124658.28293330081, - 124359.0256240877, - 124028.04088880248, - 123666.00292508074, - 123263.2683832054, - 122811.45603796093, - 122294.77135278039, - 121723.7426162955, - 121100.62051038096, - 120455.82150096084, - 119813.94644928658, - 119190.38793709065, - 118606.45257847413, - 118049.63607631795, - 117519.29988408211, - 116992.70471728998, - 116456.77636061836, - 115903.58221979988, - 115334.4455807272, - 114769.75129740298, - 114222.09508271841, - 113718.26584304699, - 113264.29515107117, - 112864.64017232378, - 112506.8831486158, - 112168.41702612347, - 111826.63763733678, - 111461.96057227504, - 111067.33492009953, - 110648.44014441938, - 110223.05179427212, - 109816.71415465746, - 109452.96167414922, - 109176.92713602296 - ], - "flow:J1:branch2_seg0": [ - 6.137648634370128, - 6.168779670964727, - 6.237549827513741, - 6.349987650235961, - 6.511128155742191, - 6.730180635998866, - 7.031136106749137, - 7.436848397757457, - 7.997321349388062, - 8.750165825166189, - 9.747077443542905, - 11.031096837952965, - 12.618504884428493, - 14.54312715687865, - 16.75421329133072, - 19.2609822823652, - 21.966041128609483, - 24.823833019193682, - 27.75670098285821, - 30.63565352127467, - 33.44937859121861, - 36.04159894002707, - 38.38543771785981, - 40.38272955409003, - 41.9591359556501, - 43.094869486052445, - 43.72913285724328, - 43.85568489092064, - 43.47996285097755, - 42.60994757297456, - 41.30455719092424, - 39.612473078967845, - 37.584547631120785, - 35.32206076621726, - 32.82773088795951, - 30.21426656170316, - 27.485992291245417, - 24.702484061072116, - 21.93604729912859, - 19.17002598379929, - 16.52063779859227, - 13.984329725971211, - 11.653109538573817, - 9.573743297125956, - 7.768014039780911, - 6.279322726415551, - 5.086216734922329, - 4.193460082545154, - 3.5617104041439784, - 3.1599487156442714, - 2.9520547683078795, - 2.904118015830618, - 2.994972099953548, - 3.2149211098965993, - 3.5531000489659617, - 4.013015976805565, - 4.5799064135862295, - 5.234518167018617, - 5.957089702734147, - 6.699306677523272, - 7.435977703693984, - 8.115027254188012, - 8.711774460652151, - 9.203399854113355, - 9.581105229358084, - 9.854225264600016, - 10.03082943650658, - 10.130924164681675, - 10.167862392520119, - 10.152324482196276, - 10.091453813570098, - 9.987936364050732, - 9.840837988456713, - 9.655532856433194, - 9.433017433486983, - 9.186373889623681, - 8.926396054370999, - 8.665025518439174, - 8.415330077438334, - 8.179360434084062, - 7.96262917566333, - 7.758227657340324, - 7.563884264068535, - 7.373754371219923, - 7.185287332061811, - 7.003970981956132, - 6.831340350194465, - 6.679787509935753, - 6.5538277075744364, - 6.458679002022267, - 6.3942297880974355, - 6.352574437702323, - 6.3254375322735, - 6.301976246449721, - 6.274522538679644, - 6.239774405857534, - 6.200184176767684, - 6.163074609253481, - 6.138659786764289, - 6.137648634370128 - ], - "pressure:J1:branch2_seg0": [ - 109176.92713602296, - 108946.4254865615, - 108787.650024979, - 108703.44664266305, - 108702.53063588498, - 108803.37347596798, - 109065.39908933234, - 109540.83958801902, - 110340.42746858626, - 111538.63548363814, - 113219.96194765385, - 115470.54294946173, - 118267.03961915965, - 121681.13578407999, - 125564.83767087158, - 129915.58729604482, - 134578.1056189281, - 139447.22228621427, - 144432.02136552546, - 149291.2799233579, - 154036.56991151356, - 158412.93390918177, - 162411.32677210672, - 165845.85717791982, - 168604.10950240394, - 170652.93404691495, - 171892.67607451946, - 172332.0145290301, - 171989.13311836513, - 170911.0104723265, - 169196.38436512815, - 166974.24148307854, - 164288.59086561305, - 161345.66917726723, - 158111.06671322297, - 154747.4927440472, - 151229.22292340902, - 147626.24782183475, - 144067.62638311, - 140492.6977122976, - 137129.63166477042, - 133927.068294865, - 131071.91491387735, - 128616.76235554605, - 126550.86739023564, - 124935.15316620983, - 123669.4460912874, - 122739.31440389613, - 122057.94166324999, - 121554.92993387688, - 121188.58048620251, - 120938.8254717534, - 120799.9204838209, - 120806.55633822628, - 120960.85284827492, - 121292.12902982089, - 121779.98989457637, - 122377.61243791059, - 123054.07264129318, - 123701.35348954255, - 124291.29517125935, - 124734.16238122205, - 125010.65714651112, - 125119.12039099543, - 125069.97468802896, - 124906.01251967152, - 124658.28293330081, - 124359.0256240877, - 124028.04088880248, - 123666.00292508074, - 123263.2683832054, - 122811.45603796093, - 122294.77135278039, - 121723.7426162955, - 121100.62051038096, - 120455.82150096084, - 119813.94644928658, - 119190.38793709065, - 118606.45257847413, - 118049.63607631795, - 117519.29988408211, - 116992.70471728998, - 116456.77636061836, - 115903.58221979988, - 115334.4455807272, - 114769.75129740298, - 114222.09508271841, - 113718.26584304699, - 113264.29515107117, - 112864.64017232378, - 112506.8831486158, - 112168.41702612347, - 111826.63763733678, - 111461.96057227504, - 111067.33492009953, - 110648.44014441938, - 110223.05179427212, - 109816.71415465746, - 109452.96167414922, - 109176.92713602296 - ], - "flow:J1:branch11_seg0": [ - 1.1821232437066251, - 1.2005552078298576, - 1.2297668809889168, - 1.269701735573735, - 1.3212803562495017, - 1.3869673517848293, - 1.4748994276441127, - 1.593300072271732, - 1.7574872881868175, - 1.9791579127100143, - 2.269784990328756, - 2.6404465423410426, - 3.087755858236477, - 3.6171545539940455, - 4.207159940282474, - 4.850232536368892, - 5.524154380626155, - 6.207760511174619, - 6.88667320725676, - 7.524668797669744, - 8.118067088866157, - 8.635406230614443, - 9.069411130872039, - 9.399962673783172, - 9.609769056138104, - 9.695972526181391, - 9.649344543820515, - 9.473525222749608, - 9.176619874193062, - 8.770864249888998, - 8.275138760454798, - 7.713356356953679, - 7.097789651702556, - 6.459979251479625, - 5.802319688427909, - 5.145139209437848, - 4.49129425028673, - 3.847379978403651, - 3.2332151188188627, - 2.64348396594718, - 2.1056064105611156, - 1.6183272263448287, - 1.202307578724749, - 0.8673034136699889, - 0.6100661283176734, - 0.43488195954301606, - 0.32649887617425394, - 0.27761333649264874, - 0.2730844490355353, - 0.29912942626801403, - 0.3470930241923313, - 0.41202673357278247, - 0.4923758298368295, - 0.5919241101000149, - 0.7114041809298368, - 0.8538713851455697, - 1.016508537767452, - 1.1915453467893617, - 1.3725942289550637, - 1.544028016664934, - 1.6990994193966473, - 1.8256140057683983, - 1.9196263049107456, - 1.9819668344354502, - 2.015290908237627, - 2.0271409818240804, - 2.023627392645622, - 2.010787503912709, - 1.9925235957478764, - 1.9695946649364076, - 1.9408869085147165, - 1.9051143862627156, - 1.8602478394364654, - 1.8076232816141835, - 1.7482922557506728, - 1.6867015354169401, - 1.6271867934504671, - 1.572455095948407, - 1.5255541353559388, - 1.485028350413592, - 1.450161390758928, - 1.4175514520834047, - 1.3846065442132298, - 1.350009653340505, - 1.3137364939077556, - 1.2787997671314548, - 1.24747262812535, - 1.2235511841140638, - 1.2084084383391058, - 1.202274850684353, - 1.2032252033720192, - 1.2074809370215964, - 1.2111557715317702, - 1.2110021513092197, - 1.2057033905682253, - 1.196108166491057, - 1.1850509266990692, - 1.176608720866736, - 1.174622721710659, - 1.1821232437066251 - ], - "pressure:J1:branch11_seg0": [ - 109176.92713602296, - 108946.4254865615, - 108787.650024979, - 108703.44664266305, - 108702.53063588498, - 108803.37347596798, - 109065.39908933234, - 109540.83958801902, - 110340.42746858626, - 111538.63548363814, - 113219.96194765385, - 115470.54294946173, - 118267.03961915965, - 121681.13578407999, - 125564.83767087158, - 129915.58729604482, - 134578.1056189281, - 139447.22228621427, - 144432.02136552546, - 149291.2799233579, - 154036.56991151356, - 158412.93390918177, - 162411.32677210672, - 165845.85717791982, - 168604.10950240394, - 170652.93404691495, - 171892.67607451946, - 172332.0145290301, - 171989.13311836513, - 170911.0104723265, - 169196.38436512815, - 166974.24148307854, - 164288.59086561305, - 161345.66917726723, - 158111.06671322297, - 154747.4927440472, - 151229.22292340902, - 147626.24782183475, - 144067.62638311, - 140492.6977122976, - 137129.63166477042, - 133927.068294865, - 131071.91491387735, - 128616.76235554605, - 126550.86739023564, - 124935.15316620983, - 123669.4460912874, - 122739.31440389613, - 122057.94166324999, - 121554.92993387688, - 121188.58048620251, - 120938.8254717534, - 120799.9204838209, - 120806.55633822628, - 120960.85284827492, - 121292.12902982089, - 121779.98989457637, - 122377.61243791059, - 123054.07264129318, - 123701.35348954255, - 124291.29517125935, - 124734.16238122205, - 125010.65714651112, - 125119.12039099543, - 125069.97468802896, - 124906.01251967152, - 124658.28293330081, - 124359.0256240877, - 124028.04088880248, - 123666.00292508074, - 123263.2683832054, - 122811.45603796093, - 122294.77135278039, - 121723.7426162955, - 121100.62051038096, - 120455.82150096084, - 119813.94644928658, - 119190.38793709065, - 118606.45257847413, - 118049.63607631795, - 117519.29988408211, - 116992.70471728998, - 116456.77636061836, - 115903.58221979988, - 115334.4455807272, - 114769.75129740298, - 114222.09508271841, - 113718.26584304699, - 113264.29515107117, - 112864.64017232378, - 112506.8831486158, - 112168.41702612347, - 111826.63763733678, - 111461.96057227504, - 111067.33492009953, - 110648.44014441938, - 110223.05179427212, - 109816.71415465746, - 109452.96167414922, - 109176.92713602296 - ], - "flow:branch2_seg0:J2": [ - 6.15154366574088, - 6.178827477101852, - 6.243991645021148, - 6.35226054259111, - 6.508906869923747, - 6.7212756678123995, - 7.012484588952808, - 7.404766960970209, - 7.945974638190391, - 8.67706121547335, - 9.644760449656705, - 10.901102284315781, - 12.456254132043938, - 14.352080651801849, - 16.5417029299011, - 19.024015323737512, - 21.72134480124597, - 24.564789808088808, - 27.49954557086032, - 30.385805482335428, - 33.209793290392035, - 35.825003292215456, - 38.19092563496472, - 40.2219652161832, - 41.83321907676909, - 43.00934006705581, - 43.68512032486719, - 43.85433949606205, - 43.51629422911009, - 42.684284810558395, - 41.40584817208224, - 39.74199509050874, - 37.7325123279884, - 35.481650183463735, - 33.001309173941834, - 30.390182445133696, - 27.67272745847436, - 24.888314512730044, - 22.122295389638417, - 19.352001783497336, - 16.691283745245777, - 14.142563630014592, - 11.789650071012003, - 9.692316144460325, - 7.862207770286647, - 6.354760336663215, - 5.1424120477668, - 4.234364296430544, - 3.592218613494567, - 3.181821649640091, - 2.9681248262777595, - 2.914253516841117, - 2.998592045960487, - 3.2107877082412215, - 3.540821488653663, - 3.991327868280058, - 4.551783946199563, - 5.2004808556303805, - 5.922182371852449, - 6.6664438002023205, - 7.408662937924672, - 8.096766234090541, - 8.70150193435819, - 9.202640548774962, - 9.586655529127336, - 9.865248293212849, - 10.045310594200386, - 10.147329707866527, - 10.18582046223901, - 10.172105487784432, - 10.113497787017325, - 10.01308326979643, - 9.86920951653573, - 9.686611146994542, - 9.466246787872125, - 9.219716719934471, - 8.959592495665614, - 8.696233024334036, - 8.445045946033263, - 8.207490436464942, - 7.989753434982425, - 7.78583732278893, - 7.591894080641362, - 7.40310031733354, - 7.214919818968377, - 7.032989954456698, - 6.858897814347883, - 6.704616153100607, - 6.5759479531498055, - 6.478168760259828, - 6.4120859714493506, - 6.37005148864032, - 6.343665123353429, - 6.321677383038896, - 6.2957390471112715, - 6.261915570917493, - 6.221956046579294, - 6.183312122872762, - 6.156044805313025, - 6.15154366574088 - ], - "pressure:branch2_seg0:J2": [ - 109169.00145729956, - 108932.30095742995, - 108766.70195340642, - 108674.40703234686, - 108664.51842887592, - 108753.60422676819, - 108999.98281981848, - 109454.3607135021, - 110223.87101121563, - 111386.21790213598, - 113017.94018542217, - 115217.20505012447, - 117954.54049899237, - 121311.02939325389, - 125148.44637542438, - 129446.2932603761, - 134079.69180417806, - 138917.1165984668, - 143894.75831465653, - 148764.63045897605, - 153531.2203419255, - 157949.35659814428, - 161990.85575814912, - 165489.5331151221, - 168316.2233817489, - 170448.5136737744, - 171776.29483544157, - 172303.98272473027, - 172046.60099408476, - 171052.35298746914, - 169409.09838850942, - 167256.03941594833, - 164623.53217413087, - 161717.97980349543, - 158519.56556709105, - 155173.57598617842, - 151679.9526766127, - 148083.87947015706, - 144528.95125199042, - 140945.18793297125, - 137561.57577492116, - 134337.19488860312, - 131441.49509059082, - 128951.59942913259, - 126833.07541893305, - 125165.14148537519, - 123847.17572324708, - 122864.97498606915, - 122143.99315585608, - 121604.55190092865, - 121208.7384638464, - 120933.40343716917, - 120770.90900515974, - 120755.82020926093, - 120890.06473673142, - 121200.31670899787, - 121671.10435081126, - 122252.12297240496, - 122919.85378163762, - 123564.83067249012, - 124159.03738583655, - 124615.46994020067, - 124905.42940063083, - 125033.43430514184, - 125002.69285045553, - 124856.52006336449, - 124624.7979731085, - 124337.44138714354, - 124016.12021926354, - 123662.18215571721, - 123266.75103517233, - 122822.5577326677, - 122313.32087675338, - 121749.00139743568, - 121131.92755310754, - 120490.25969185898, - 119850.95605922744, - 119226.47512752193, - 118640.63469638253, - 118080.93584587326, - 117547.00465071925, - 117019.14899310608, - 116481.89365920128, - 115929.02404964712, - 115359.64439707648, - 114793.72502069337, - 114243.82956849552, - 113735.86392209545, - 113277.31652622552, - 112872.24977758285, - 112509.82286496545, - 112167.71442852229, - 111824.1157069037, - 111459.52405862948, - 111066.08664410972, - 110648.75255951608, - 110223.89702604632, - 109816.6611207017, - 109449.89641911793, - 109169.00145729956 - ], - "flow:J2:branch3_seg0": [ - 3.2015896947609694, - 3.2139539937544344, - 3.2445382810630115, - 3.2962123379783104, - 3.37146533744482, - 3.4742839127080436, - 3.616591689690848, - 3.808838384848529, - 4.075816769156403, - 4.435525273419922, - 4.9120352210947535, - 5.527698544855352, - 6.287512051430214, - 7.211489557715446, - 8.272933531768789, - 9.479541152196019, - 10.780921492492858, - 12.153847655333248, - 13.562828444554766, - 14.942294881187657, - 16.29457222482574, - 17.538437495812637, - 18.666442728625466, - 19.627052523090434, - 20.385457379195778, - 20.93633123451198, - 21.250392713296307, - 21.327292364455108, - 21.167153526953456, - 20.77439588168563, - 20.175779329508092, - 19.397253485989637, - 18.459909139215945, - 17.4128621400647, - 16.25148250750104, - 15.032797756712267, - 13.755222040202531, - 12.447920122677838, - 11.147381697686397, - 9.837993505891175, - 8.579610253248397, - 7.364357920183096, - 6.2419821867033285, - 5.2354883280770625, - 4.354847959686435, - 3.623495483997589, - 3.027345146354123, - 2.5736933490700804, - 2.2424774952429525, - 2.023542240280084, - 1.8990569932177737, - 1.8529658880170514, - 1.8751198463625105, - 1.9608643598524402, - 2.1057642117137876, - 2.3121083200171095, - 2.5727482556787398, - 2.8771495135210636, - 3.2169010272318834, - 3.5672897965044643, - 3.9181177026653846, - 4.242665333967739, - 4.529416657060591, - 4.766057288727412, - 4.947829679138602, - 5.079989522800164, - 5.1656377136888665, - 5.215088965121354, - 5.233621996681306, - 5.226521378889724, - 5.197008454641276, - 5.146716609096114, - 5.075107716839182, - 4.9848848454051105, - 4.876068840150857, - 4.755073934235765, - 4.627311865712305, - 4.498362153115034, - 4.375081779261256, - 4.25778866319312, - 4.149670692637945, - 4.046972831316623, - 3.949234723746171, - 3.8536222737209247, - 3.7587220123052862, - 3.667386603689509, - 3.5797926329465755, - 3.502427433772521, - 3.4372193433335254, - 3.3871201363222125, - 3.3521131987835036, - 3.328284941996328, - 3.3117153644263913, - 3.297071253913707, - 3.280798662021809, - 3.2612334767880085, - 3.239483899391289, - 3.219027967870287, - 3.204648815079862, - 3.2015896947609694 - ], - "pressure:J2:branch3_seg0": [ - 109169.00145729956, - 108932.30095742995, - 108766.70195340642, - 108674.40703234686, - 108664.51842887592, - 108753.60422676819, - 108999.98281981848, - 109454.3607135021, - 110223.87101121563, - 111386.21790213598, - 113017.94018542217, - 115217.20505012447, - 117954.54049899237, - 121311.02939325389, - 125148.44637542438, - 129446.2932603761, - 134079.69180417806, - 138917.1165984668, - 143894.75831465653, - 148764.63045897605, - 153531.2203419255, - 157949.35659814428, - 161990.85575814912, - 165489.5331151221, - 168316.2233817489, - 170448.5136737744, - 171776.29483544157, - 172303.98272473027, - 172046.60099408476, - 171052.35298746914, - 169409.09838850942, - 167256.03941594833, - 164623.53217413087, - 161717.97980349543, - 158519.56556709105, - 155173.57598617842, - 151679.9526766127, - 148083.87947015706, - 144528.95125199042, - 140945.18793297125, - 137561.57577492116, - 134337.19488860312, - 131441.49509059082, - 128951.59942913259, - 126833.07541893305, - 125165.14148537519, - 123847.17572324708, - 122864.97498606915, - 122143.99315585608, - 121604.55190092865, - 121208.7384638464, - 120933.40343716917, - 120770.90900515974, - 120755.82020926093, - 120890.06473673142, - 121200.31670899787, - 121671.10435081126, - 122252.12297240496, - 122919.85378163762, - 123564.83067249012, - 124159.03738583655, - 124615.46994020067, - 124905.42940063083, - 125033.43430514184, - 125002.69285045553, - 124856.52006336449, - 124624.7979731085, - 124337.44138714354, - 124016.12021926354, - 123662.18215571721, - 123266.75103517233, - 122822.5577326677, - 122313.32087675338, - 121749.00139743568, - 121131.92755310754, - 120490.25969185898, - 119850.95605922744, - 119226.47512752193, - 118640.63469638253, - 118080.93584587326, - 117547.00465071925, - 117019.14899310608, - 116481.89365920128, - 115929.02404964712, - 115359.64439707648, - 114793.72502069337, - 114243.82956849552, - 113735.86392209545, - 113277.31652622552, - 112872.24977758285, - 112509.82286496545, - 112167.71442852229, - 111824.1157069037, - 111459.52405862948, - 111066.08664410972, - 110648.75255951608, - 110223.89702604632, - 109816.6611207017, - 109449.89641911793, - 109169.00145729956 - ], - "flow:J2:branch7_seg0": [ - 2.9499539709799105, - 2.9648734833474184, - 2.999453363958137, - 3.0560482046127992, - 3.137441532478928, - 3.2469917551043554, - 3.3958928992619595, - 3.5959285761216813, - 3.8701578690339873, - 4.241535942053429, - 4.732725228561955, - 5.37340373946043, - 6.1687420806137245, - 7.140591094086405, - 8.268769398132308, - 9.544474171541491, - 10.940423308753102, - 12.410942152755558, - 13.93671712630555, - 15.443510601147771, - 16.915221065566303, - 18.286565796402815, - 19.52448290633925, - 20.594912693092766, - 21.447761697573313, - 22.073008832543835, - 22.434727611570878, - 22.527047131606967, - 22.349140702156642, - 21.909888928872768, - 21.230068842574152, - 20.3447416045191, - 19.272603188772468, - 18.06878804339904, - 16.749826666440786, - 15.35738468842143, - 13.917505418271825, - 12.44039439005221, - 10.974913691952016, - 9.514008277606157, - 8.111673491997388, - 6.778205709831496, - 5.547667884308676, - 4.456827816383263, - 3.5073598106002115, - 2.731264852665627, - 2.1150669014126753, - 1.6606709473604648, - 1.3497411182516155, - 1.1582794093600068, - 1.0690678330599859, - 1.0612876288240665, - 1.1234721995979755, - 1.2499233483887808, - 1.4350572769398757, - 1.6792195482629495, - 1.9790356905208228, - 2.323331342109318, - 2.7052813446205652, - 3.099154003697858, - 3.4905452352592867, - 3.8541009001228015, - 4.172085277297599, - 4.436583260047553, - 4.638825849988734, - 4.785258770412685, - 4.8796728805115155, - 4.932240742745177, - 4.952198465557704, - 4.945584108894707, - 4.91648933237605, - 4.866366660700317, - 4.794101799696547, - 4.701726301589433, - 4.5901779477212665, - 4.464642785698704, - 4.332280629953305, - 4.197870871219004, - 4.069964166772005, - 3.949701773271825, - 3.8400827423444808, - 3.7388644914723055, - 3.64265935689519, - 3.549478043612616, - 3.4561978066630914, - 3.3656033507671896, - 3.2791051814013077, - 3.202188719328087, - 3.1387286098162805, - 3.0910486239376147, - 3.0599727726658466, - 3.0417665466439927, - 3.0319497589270377, - 3.0246061291251882, - 3.0149403850894627, - 3.000682094129484, - 2.982472147188004, - 2.9642841550024746, - 2.9513959902331637, - 2.9499539709799105 - ], - "pressure:J2:branch7_seg0": [ - 109169.00145729956, - 108932.30095742995, - 108766.70195340642, - 108674.40703234686, - 108664.51842887592, - 108753.60422676819, - 108999.98281981848, - 109454.3607135021, - 110223.87101121563, - 111386.21790213598, - 113017.94018542217, - 115217.20505012447, - 117954.54049899237, - 121311.02939325389, - 125148.44637542438, - 129446.2932603761, - 134079.69180417806, - 138917.1165984668, - 143894.75831465653, - 148764.63045897605, - 153531.2203419255, - 157949.35659814428, - 161990.85575814912, - 165489.5331151221, - 168316.2233817489, - 170448.5136737744, - 171776.29483544157, - 172303.98272473027, - 172046.60099408476, - 171052.35298746914, - 169409.09838850942, - 167256.03941594833, - 164623.53217413087, - 161717.97980349543, - 158519.56556709105, - 155173.57598617842, - 151679.9526766127, - 148083.87947015706, - 144528.95125199042, - 140945.18793297125, - 137561.57577492116, - 134337.19488860312, - 131441.49509059082, - 128951.59942913259, - 126833.07541893305, - 125165.14148537519, - 123847.17572324708, - 122864.97498606915, - 122143.99315585608, - 121604.55190092865, - 121208.7384638464, - 120933.40343716917, - 120770.90900515974, - 120755.82020926093, - 120890.06473673142, - 121200.31670899787, - 121671.10435081126, - 122252.12297240496, - 122919.85378163762, - 123564.83067249012, - 124159.03738583655, - 124615.46994020067, - 124905.42940063083, - 125033.43430514184, - 125002.69285045553, - 124856.52006336449, - 124624.7979731085, - 124337.44138714354, - 124016.12021926354, - 123662.18215571721, - 123266.75103517233, - 122822.5577326677, - 122313.32087675338, - 121749.00139743568, - 121131.92755310754, - 120490.25969185898, - 119850.95605922744, - 119226.47512752193, - 118640.63469638253, - 118080.93584587326, - 117547.00465071925, - 117019.14899310608, - 116481.89365920128, - 115929.02404964712, - 115359.64439707648, - 114793.72502069337, - 114243.82956849552, - 113735.86392209545, - 113277.31652622552, - 112872.24977758285, - 112509.82286496545, - 112167.71442852229, - 111824.1157069037, - 111459.52405862948, - 111066.08664410972, - 110648.75255951608, - 110223.89702604632, - 109816.6611207017, - 109449.89641911793, - 109169.00145729956 - ], - "flow:branch3_seg2:J3": [ - 3.22331422985243, - 3.230255093788822, - 3.2557066197828024, - 3.3012551670724135, - 3.3698990282914716, - 3.463836444400081, - 3.592458265098978, - 3.7666855223617794, - 4.005978326831947, - 4.333776763412219, - 4.7688792420400645, - 5.343527671144884, - 6.059691045228676, - 6.941775285160667, - 7.972873201750815, - 9.137472586363975, - 10.424951532528542, - 11.776555922963844, - 13.187937802011968, - 14.584505118283648, - 15.945023407463479, - 17.220869358278005, - 18.373809891878548, - 19.379632565506505, - 20.192253498183444, - 20.80096795227418, - 21.174464359663414, - 21.31077404662959, - 21.203620427135363, - 20.867491924542257, - 20.31095517302446, - 19.572881308769244, - 18.663006920800164, - 17.63003029428377, - 16.495889125992008, - 15.28215851694248, - 14.024986650527786, - 12.719610664242756, - 11.413085816048643, - 10.100936316593856, - 8.825674098481738, - 7.599714311169485, - 6.451815189678721, - 5.418449979054344, - 4.501799861518232, - 3.73917867169849, - 3.115055580818642, - 2.6395657582591525, - 2.295203858561441, - 2.0627415005901, - 1.927931104981294, - 1.8714543070286023, - 1.8836615177938953, - 1.9584422538300623, - 2.092246513370204, - 2.284047576735468, - 2.5335762054195885, - 2.8294247520962594, - 3.1667757990212344, - 3.520725638855511, - 3.878176227103582, - 4.214525795570198, - 4.511446840936599, - 4.761812068296692, - 4.954005387420284, - 5.094938915727833, - 5.1863273451878555, - 5.238145766619054, - 5.258825235187604, - 5.25450557916543, - 5.228658363174922, - 5.182956080621218, - 5.116219973123228, - 5.0296973989688665, - 4.924453314423634, - 4.804265191531339, - 4.676574930796546, - 4.5451238393185776, - 4.419234052233075, - 4.29960642690332, - 4.1898935758433735, - 4.088403707532173, - 3.99126526289145, - 3.8974173207254017, - 3.8028812894485706, - 3.7102748265798544, - 3.6210865915612187, - 3.5399678498485048, - 3.4712640690812973, - 3.4173751672356367, - 3.3794620888650693, - 3.3547088666445237, - 3.3389533648431, - 3.3264153550291904, - 3.31241239338618, - 3.2942909684266084, - 3.2721691316913404, - 3.2496256537870463, - 3.2312675372152415, - 3.22331422985243 - ], - "pressure:branch3_seg2:J3": [ - 108982.76066347332, - 108700.04442825826, - 108481.73382251058, - 108328.115882558, - 108250.09938777928, - 108256.1194547796, - 108383.12244866721, - 108685.27943923314, - 109223.08806806225, - 110104.31637622548, - 111369.65020451593, - 113142.11673774416, - 115421.74116528827, - 118260.35172869873, - 121649.65587446616, - 125451.79437170255, - 129740.86234192841, - 134231.32085133906, - 138999.44891865912, - 143781.86747821697, - 148478.23633938396, - 153051.85235870144, - 157229.40584214122, - 161069.34100493917, - 164296.53532783463, - 166914.48937167926, - 168822.9939222973, - 169967.93621934482, - 170361.086313319, - 170034.59244903288, - 169011.29750369556, - 167444.66827610167, - 165349.44296858768, - 162865.85140599697, - 160113.98627843588, - 157043.78542253366, - 153881.10147597204, - 150480.64487347985, - 147070.11478576274, - 143624.70233197254, - 140203.43526992982, - 136978.0345923849, - 133887.28555234591, - 131181.9960213694, - 128767.24732548084, - 126757.65671067395, - 125110.08148752678, - 123782.96397408485, - 122769.46895372243, - 121960.3490724572, - 121347.94671679307, - 120878.73359172697, - 120550.45903650831, - 120365.63182140744, - 120342.63246469836, - 120478.57944512944, - 120798.22681140412, - 121245.44762171457, - 121808.35413309131, - 122414.54631066706, - 122997.09270209196, - 123521.63615205741, - 123899.53330202869, - 124156.85634470524, - 124254.70519994383, - 124233.59400241419, - 124110.80469945716, - 123910.54489743496, - 123661.80843477914, - 123368.24586127573, - 123030.23204565916, - 122642.225589351, - 122194.79378424413, - 121685.37633753456, - 121125.49119953616, - 120519.80027115518, - 119905.72256732396, - 119287.20911044635, - 118692.39257823688, - 118121.15282569012, - 117568.80449547536, - 117034.8562827921, - 116491.85552663822, - 115945.33881612118, - 115380.46730490543, - 114813.28586673358, - 114257.28140107656, - 113723.5322694765, - 113236.13378601757, - 112790.37782844652, - 112391.99486210986, - 112022.49717750291, - 111664.25605095246, - 111299.72078966425, - 110915.56546841854, - 110511.1466233067, - 110093.93847948633, - 109682.99016274858, - 109297.3420644098, - 108982.76066347332 - ], - "flow:J3:branch4_seg0": [ - 2.32048288249391, - 2.3205997678628982, - 2.3321901431915624, - 2.356938658633652, - 2.3970836535546067, - 2.4540173136043157, - 2.533834562351417, - 2.6416053665163353, - 2.790700175796588, - 2.993371230412963, - 3.2636288727114726, - 3.6227732762065163, - 4.071387178744346, - 4.632505995615114, - 5.289460840981943, - 6.044332210486668, - 6.882960676274763, - 7.774186794218505, - 8.71398784013549, - 9.649653280646445, - 10.577000481733233, - 11.448791029687165, - 12.254350616612081, - 12.96521781759752, - 13.558343667721923, - 14.025381590461665, - 14.339986890444425, - 14.505398624522647, - 14.511080860530292, - 14.365932123915057, - 14.07275185104588, - 13.65359139768803, - 13.111083330066656, - 12.48044154772466, - 11.76652610665734, - 10.994494280376653, - 10.178177877032292, - 9.322546774265575, - 8.456382243631115, - 7.571306136008729, - 6.707901940877058, - 5.85811587848291, - 5.056743246576161, - 4.316441491844554, - 3.645027109407711, - 3.0736623240128655, - 2.588320618295839, - 2.208219478842973, - 1.917414207280731, - 1.7100441267517101, - 1.5760150734856313, - 1.5022530816461142, - 1.481459138036447, - 1.507870092256473, - 1.576566720187254, - 1.6872424102391306, - 1.8377108077072486, - 2.022196151562321, - 2.2390999856871656, - 2.470526399784224, - 2.712478564835058, - 2.9439549145955763, - 3.1562891418574166, - 3.3406583031156534, - 3.487721059908496, - 3.6008544824078466, - 3.6780152419040606, - 3.7262582714801185, - 3.750019230888191, - 3.7542429685427616, - 3.7420592109048574, - 3.7154985597645536, - 3.674158877343361, - 3.619645175256571, - 3.5515602632241556, - 3.472942449414286, - 3.3872281504725366, - 3.2968790529117427, - 3.208620663570966, - 3.122371304442125, - 3.04274757024774, - 2.968066119514596, - 2.8974368033510696, - 2.8298791214321746, - 2.7626808898005284, - 2.697344265705879, - 2.633510020309365, - 2.5746943821777677, - 2.522606163316198, - 2.479881297757944, - 2.44738793620403, - 2.424207005918861, - 2.4085080444723896, - 2.3966358587056282, - 2.385627011100127, - 2.373081702981659, - 2.3583118696742758, - 2.3428108706603195, - 2.328874794076202, - 2.32048288249391 - ], - "pressure:J3:branch4_seg0": [ - 108982.76066347332, - 108700.04442825826, - 108481.73382251058, - 108328.115882558, - 108250.09938777928, - 108256.1194547796, - 108383.12244866721, - 108685.27943923314, - 109223.08806806225, - 110104.31637622548, - 111369.65020451593, - 113142.11673774416, - 115421.74116528827, - 118260.35172869873, - 121649.65587446616, - 125451.79437170255, - 129740.86234192841, - 134231.32085133906, - 138999.44891865912, - 143781.86747821697, - 148478.23633938396, - 153051.85235870144, - 157229.40584214122, - 161069.34100493917, - 164296.53532783463, - 166914.48937167926, - 168822.9939222973, - 169967.93621934482, - 170361.086313319, - 170034.59244903288, - 169011.29750369556, - 167444.66827610167, - 165349.44296858768, - 162865.85140599697, - 160113.98627843588, - 157043.78542253366, - 153881.10147597204, - 150480.64487347985, - 147070.11478576274, - 143624.70233197254, - 140203.43526992982, - 136978.0345923849, - 133887.28555234591, - 131181.9960213694, - 128767.24732548084, - 126757.65671067395, - 125110.08148752678, - 123782.96397408485, - 122769.46895372243, - 121960.3490724572, - 121347.94671679307, - 120878.73359172697, - 120550.45903650831, - 120365.63182140744, - 120342.63246469836, - 120478.57944512944, - 120798.22681140412, - 121245.44762171457, - 121808.35413309131, - 122414.54631066706, - 122997.09270209196, - 123521.63615205741, - 123899.53330202869, - 124156.85634470524, - 124254.70519994383, - 124233.59400241419, - 124110.80469945716, - 123910.54489743496, - 123661.80843477914, - 123368.24586127573, - 123030.23204565916, - 122642.225589351, - 122194.79378424413, - 121685.37633753456, - 121125.49119953616, - 120519.80027115518, - 119905.72256732396, - 119287.20911044635, - 118692.39257823688, - 118121.15282569012, - 117568.80449547536, - 117034.8562827921, - 116491.85552663822, - 115945.33881612118, - 115380.46730490543, - 114813.28586673358, - 114257.28140107656, - 113723.5322694765, - 113236.13378601757, - 112790.37782844652, - 112391.99486210986, - 112022.49717750291, - 111664.25605095246, - 111299.72078966425, - 110915.56546841854, - 110511.1466233067, - 110093.93847948633, - 109682.99016274858, - 109297.3420644098, - 108982.76066347332 - ], - "flow:J3:branch10_seg0": [ - 0.9028313473585201, - 0.9096553259259244, - 0.9235164765912407, - 0.9443165084387609, - 0.972815374736865, - 1.0098191307957658, - 1.0586237027475613, - 1.125080155845443, - 1.215278151035358, - 1.340405532999257, - 1.505250369328593, - 1.7207543949383677, - 1.9883038664843324, - 2.3092692895455538, - 2.683412360768875, - 3.093140375877308, - 3.5419908562537783, - 4.002369128745335, - 4.47394996187648, - 4.934851837637205, - 5.368022925730242, - 5.772078328590839, - 6.119459275266468, - 6.41441474790898, - 6.633909830461522, - 6.775586361812516, - 6.834477469218989, - 6.805375422106941, - 6.692539566605067, - 6.501559800627201, - 6.238203321978576, - 5.919289911081213, - 5.551923590733505, - 5.149588746559114, - 4.729363019334665, - 4.287664236565831, - 3.8468087734954923, - 3.3970638899771797, - 2.956703572417525, - 2.5296301805851256, - 2.1177721576046804, - 1.7415984326865745, - 1.3950719431025584, - 1.1020084872097902, - 0.8567727521105214, - 0.6655163476856241, - 0.526734962522803, - 0.43134627941617953, - 0.3777896512807093, - 0.3526973738383895, - 0.3519160314956626, - 0.36920122538248784, - 0.40220237975744866, - 0.45057216157358926, - 0.5156797931829498, - 0.5968051664963371, - 0.6958653977123397, - 0.8072286005339381, - 0.9276758133340687, - 1.0501992390712866, - 1.1656976622685238, - 1.2705708809746217, - 1.3551576990791814, - 1.4211537651810369, - 1.4662843275117878, - 1.494084433319986, - 1.5083121032837945, - 1.511887495138935, - 1.508806004299412, - 1.5002626106226693, - 1.4865991522700652, - 1.467457520856664, - 1.4420610957798676, - 1.4100522237122948, - 1.3728930511994792, - 1.331322742117053, - 1.2893467803240082, - 1.2482447864068336, - 1.2106133886621082, - 1.1772351224611948, - 1.1471460055956344, - 1.1203375880175777, - 1.0938284595403804, - 1.067538199293228, - 1.040200399648042, - 1.012930560873976, - 0.9875765712518532, - 0.9652734676707367, - 0.9486579057650998, - 0.9374938694776928, - 0.9320741526610391, - 0.9305018607256621, - 0.9304453203707099, - 0.9297794963235622, - 0.9267853822860541, - 0.9212092654449493, - 0.9138572620170643, - 0.9068147831267274, - 0.9023927431390389, - 0.9028313473585201 - ], - "pressure:J3:branch10_seg0": [ - 108982.76066347332, - 108700.04442825826, - 108481.73382251058, - 108328.115882558, - 108250.09938777928, - 108256.1194547796, - 108383.12244866721, - 108685.27943923314, - 109223.08806806225, - 110104.31637622548, - 111369.65020451593, - 113142.11673774416, - 115421.74116528827, - 118260.35172869873, - 121649.65587446616, - 125451.79437170255, - 129740.86234192841, - 134231.32085133906, - 138999.44891865912, - 143781.86747821697, - 148478.23633938396, - 153051.85235870144, - 157229.40584214122, - 161069.34100493917, - 164296.53532783463, - 166914.48937167926, - 168822.9939222973, - 169967.93621934482, - 170361.086313319, - 170034.59244903288, - 169011.29750369556, - 167444.66827610167, - 165349.44296858768, - 162865.85140599697, - 160113.98627843588, - 157043.78542253366, - 153881.10147597204, - 150480.64487347985, - 147070.11478576274, - 143624.70233197254, - 140203.43526992982, - 136978.0345923849, - 133887.28555234591, - 131181.9960213694, - 128767.24732548084, - 126757.65671067395, - 125110.08148752678, - 123782.96397408485, - 122769.46895372243, - 121960.3490724572, - 121347.94671679307, - 120878.73359172697, - 120550.45903650831, - 120365.63182140744, - 120342.63246469836, - 120478.57944512944, - 120798.22681140412, - 121245.44762171457, - 121808.35413309131, - 122414.54631066706, - 122997.09270209196, - 123521.63615205741, - 123899.53330202869, - 124156.85634470524, - 124254.70519994383, - 124233.59400241419, - 124110.80469945716, - 123910.54489743496, - 123661.80843477914, - 123368.24586127573, - 123030.23204565916, - 122642.225589351, - 122194.79378424413, - 121685.37633753456, - 121125.49119953616, - 120519.80027115518, - 119905.72256732396, - 119287.20911044635, - 118692.39257823688, - 118121.15282569012, - 117568.80449547536, - 117034.8562827921, - 116491.85552663822, - 115945.33881612118, - 115380.46730490543, - 114813.28586673358, - 114257.28140107656, - 113723.5322694765, - 113236.13378601757, - 112790.37782844652, - 112391.99486210986, - 112022.49717750291, - 111664.25605095246, - 111299.72078966425, - 110915.56546841854, - 110511.1466233067, - 110093.93847948633, - 109682.99016274858, - 109297.3420644098, - 108982.76066347332 - ], - "flow:branch5_seg2:J4": [ - 5.443625325014208, - 5.487713278220404, - 5.577435189942061, - 5.714243598968232, - 5.901121497420205, - 6.144004314680674, - 6.465087547591208, - 6.894131620762273, - 7.481415222847505, - 8.280632033292237, - 9.34107443983013, - 10.718804153129499, - 12.42420532474015, - 14.482299759008814, - 16.849688991185502, - 19.480759718084737, - 22.3115980485089, - 25.24328949980274, - 28.213254415827507, - 31.097406377152286, - 33.82995858393939, - 36.31409085913713, - 38.4827932990296, - 40.26533473370717, - 41.588734127814966, - 42.413577890459415, - 42.701199173707195, - 42.44330362852155, - 41.64868680707654, - 40.35590760756628, - 38.615200763607454, - 36.51451253165365, - 34.111427447195844, - 31.508500790656242, - 28.762215730351166, - 25.937097499859025, - 23.081602867271542, - 20.221078293271006, - 17.42198783330051, - 14.700471398465114, - 12.129756638524567, - 9.743481222572019, - 7.609268300096697, - 5.786937957009734, - 4.295430051628238, - 3.1628217429159404, - 2.3584730039919637, - 1.8583614905255132, - 1.611050351896665, - 1.5577231737880497, - 1.6508179831764005, - 1.851694376185095, - 2.1399342740957064, - 2.5144195965157103, - 2.9765681812038185, - 3.5353261454185563, - 4.189568143692485, - 4.918518825627842, - 5.699808367839523, - 6.481978022470451, - 7.226687442467115, - 7.884148666453006, - 8.420351559192909, - 8.822865834791227, - 9.089499110489415, - 9.240661978250543, - 9.299373896267106, - 9.291905515728033, - 9.241154369434515, - 9.159366495426868, - 9.050099317919921, - 8.911682436663861, - 8.737655047362656, - 8.528137199866347, - 8.285200886819156, - 8.020184343387154, - 7.749952784359941, - 7.487995856037891, - 7.249945177065283, - 7.038515340902354, - 6.8541725664752615, - 6.688966058524954, - 6.531701112048172, - 6.37479468135223, - 6.212889148205776, - 6.051285273095476, - 5.898107859015514, - 5.7661896974371585, - 5.66586510240402, - 5.602708766990327, - 5.574848815737765, - 5.572599295722481, - 5.5813936063167615, - 5.58624279821297, - 5.576466431609312, - 5.5486520833891415, - 5.507851349748018, - 5.466617076340112, - 5.440153826890172, - 5.443625325014208 - ], - "pressure:branch5_seg2:J4": [ - 109084.6218173866, - 108829.37915694356, - 108644.454261784, - 108532.35540828279, - 108501.44438803892, - 108565.70283649443, - 108774.18928677902, - 109175.88975479882, - 109866.51435028271, - 110925.09341506452, - 112431.44739668585, - 114477.47169064693, - 117054.89190404807, - 120234.43674213343, - 123902.64078041127, - 128043.02678264077, - 132537.77910566205, - 137255.44324327068, - 142133.99975482066, - 146936.6051528712, - 151649.0669430089, - 156060.52957404198, - 160120.159871361, - 163681.1285011483, - 166620.41715425157, - 168889.56925442678, - 170399.26440844932, - 171140.7337024876, - 171113.2461008764, - 170363.09313536622, - 168952.86173902688, - 167013.6322666939, - 164580.58468932117, - 161839.18960968123, - 158788.76980076233, - 155554.40907757857, - 152158.43105922287, - 148636.08439386438, - 145119.50014055404, - 141572.41870705216, - 138175.1686946488, - 134917.92930468905, - 131954.56122188174, - 129354.42879990466, - 127131.8597181801, - 125347.91111880097, - 123925.25241877104, - 122860.43937044225, - 122065.51393533363, - 121481.07963294098, - 121055.92064734838, - 120758.98981122412, - 120581.14011459102, - 120541.09827440383, - 120645.83765833227, - 120919.20548605348, - 121352.32574051208, - 121906.79601884316, - 122554.41714213381, - 123200.94686018495, - 123811.24368265919, - 124299.43063395993, - 124636.90158921338, - 124811.36597383225, - 124824.08445338266, - 124712.84249176875, - 124502.92719823204, - 124230.44405730197, - 123916.54216683704, - 123568.02601248598, - 123180.36510330936, - 122746.16929589148, - 122251.83395274029, - 121702.56250441082, - 121099.87618457107, - 120467.38088890075, - 119829.09204492297, - 119201.07056887336, - 118606.45734824151, - 118037.95380511213, - 117497.98527518162, - 116967.05838424225, - 116432.05184022471, - 115884.66719641334, - 115321.0487066789, - 114757.96048698395, - 114206.38525653952, - 113690.13820529977, - 113219.50251917868, - 112800.55913109878, - 112426.14180954087, - 112078.10130703654, - 111734.75948267913, - 111376.40028170015, - 110992.39510951277, - 110583.97786973561, - 110164.22215928748, - 109755.40191307724, - 109379.96888043925, - 109084.6218173866 - ], - "flow:J4:branch6_seg0": [ - 3.4556337423030343, - 3.487159357881352, - 3.5487986759716765, - 3.640570466423396, - 3.7644974065390953, - 3.9240790530532728, - 4.134384963272937, - 4.415997623194684, - 4.801344660906032, - 5.327808484212765, - 6.024678748363604, - 6.93006238696516, - 8.046957651726961, - 9.390024681411166, - 10.930179917958394, - 12.63022696849422, - 14.455769934579962, - 16.33101889792429, - 18.227343647374216, - 20.054977441352705, - 21.77615458463858, - 23.333329690259863, - 24.6760935463768, - 25.772198615604495, - 26.563905687103734, - 27.034933495479407, - 27.159293812481373, - 26.93375480103535, - 26.36672762678089, - 25.486304652037944, - 24.323695747417275, - 22.94249884068872, - 21.375377786341964, - 19.691491285770343, - 17.928497248849034, - 16.118868720344217, - 14.303574910779753, - 12.48340448984426, - 10.713012053474449, - 8.995592556792158, - 7.377723167599324, - 5.887483323570633, - 4.558013541317894, - 3.4384180995191294, - 2.5311553609331763, - 1.8560518631877472, - 1.3893730966267033, - 1.1127967304856685, - 0.9918423296784428, - 0.987407056727722, - 1.0685104849511002, - 1.212029999632515, - 1.4068934582544743, - 1.6535793372674814, - 1.9562025684780915, - 2.31932538341812, - 2.744589565208184, - 3.21553346506506, - 3.717860179123707, - 4.216971179617089, - 4.6866318771221, - 5.096593785226368, - 5.423684737523047, - 5.663585428447429, - 5.815438706181022, - 5.895290275743882, - 5.918407059817991, - 5.902972240993186, - 5.862959648877146, - 5.805981781189073, - 5.732854151312372, - 5.641645507844689, - 5.5277078371397765, - 5.390640163506198, - 5.2327586684895175, - 5.061063264882801, - 4.88800629156843, - 4.72163915430625, - 4.572477313517934, - 4.441397439848893, - 4.327933127916111, - 4.226443668415136, - 4.128741090459216, - 4.0303568363672655, - 3.927544402208541, - 3.8249119022204647, - 3.728141714176263, - 3.645827483747639, - 3.5852070338077824, - 3.548872372307291, - 3.535631771395009, - 3.5380235161731144, - 3.5461630026062028, - 3.5501001550051554, - 3.543036254911632, - 3.5235056738293187, - 3.4954993364704867, - 3.468047896729738, - 3.451429526977913, - 3.4556337423030343 - ], - "pressure:J4:branch6_seg0": [ - 109084.6218173866, - 108829.37915694356, - 108644.454261784, - 108532.35540828279, - 108501.44438803892, - 108565.70283649443, - 108774.18928677902, - 109175.88975479882, - 109866.51435028271, - 110925.09341506452, - 112431.44739668585, - 114477.47169064693, - 117054.89190404807, - 120234.43674213343, - 123902.64078041127, - 128043.02678264077, - 132537.77910566205, - 137255.44324327068, - 142133.99975482066, - 146936.6051528712, - 151649.0669430089, - 156060.52957404198, - 160120.159871361, - 163681.1285011483, - 166620.41715425157, - 168889.56925442678, - 170399.26440844932, - 171140.7337024876, - 171113.2461008764, - 170363.09313536622, - 168952.86173902688, - 167013.6322666939, - 164580.58468932117, - 161839.18960968123, - 158788.76980076233, - 155554.40907757857, - 152158.43105922287, - 148636.08439386438, - 145119.50014055404, - 141572.41870705216, - 138175.1686946488, - 134917.92930468905, - 131954.56122188174, - 129354.42879990466, - 127131.8597181801, - 125347.91111880097, - 123925.25241877104, - 122860.43937044225, - 122065.51393533363, - 121481.07963294098, - 121055.92064734838, - 120758.98981122412, - 120581.14011459102, - 120541.09827440383, - 120645.83765833227, - 120919.20548605348, - 121352.32574051208, - 121906.79601884316, - 122554.41714213381, - 123200.94686018495, - 123811.24368265919, - 124299.43063395993, - 124636.90158921338, - 124811.36597383225, - 124824.08445338266, - 124712.84249176875, - 124502.92719823204, - 124230.44405730197, - 123916.54216683704, - 123568.02601248598, - 123180.36510330936, - 122746.16929589148, - 122251.83395274029, - 121702.56250441082, - 121099.87618457107, - 120467.38088890075, - 119829.09204492297, - 119201.07056887336, - 118606.45734824151, - 118037.95380511213, - 117497.98527518162, - 116967.05838424225, - 116432.05184022471, - 115884.66719641334, - 115321.0487066789, - 114757.96048698395, - 114206.38525653952, - 113690.13820529977, - 113219.50251917868, - 112800.55913109878, - 112426.14180954087, - 112078.10130703654, - 111734.75948267913, - 111376.40028170015, - 110992.39510951277, - 110583.97786973561, - 110164.22215928748, - 109755.40191307724, - 109379.96888043925, - 109084.6218173866 - ], - "flow:J4:branch13_seg0": [ - 1.987991582711174, - 2.000553920339053, - 2.0286365139703824, - 2.0736731325448363, - 2.1366240908811114, - 2.2199252616274006, - 2.330702584318273, - 2.4781339975675882, - 2.6800705619414726, - 2.9528235490794734, - 3.3163956914665302, - 3.788741766164341, - 4.37724767301319, - 5.092275077597647, - 5.919509073227108, - 6.850532749590514, - 7.855828113928933, - 8.912270601878449, - 9.98591076845329, - 11.042428935799585, - 12.053803999300815, - 12.980761168877272, - 13.806699752652797, - 14.49313611810267, - 15.024828440711229, - 15.378644394980014, - 15.541905361225815, - 15.509548827486205, - 15.281959180295642, - 14.869602955528338, - 14.291505016190166, - 13.572013690964916, - 12.736049660853878, - 11.817009504885894, - 10.833718481502123, - 9.818228779514808, - 8.778027956491789, - 7.737673803426746, - 6.708975779826059, - 5.704878841672955, - 4.75203347092524, - 3.8559978990013857, - 3.0512547587788057, - 2.348519857490605, - 1.7642746906950624, - 1.306769879728194, - 0.9690999073652604, - 0.745564760039845, - 0.6192080222182221, - 0.5703161170603277, - 0.5823074982252996, - 0.63966437655258, - 0.7330408158412318, - 0.8608402592482286, - 1.0203656127257266, - 1.2160007620004367, - 1.4449785784843006, - 1.7029853605627814, - 1.9819481887158164, - 2.2650068428533614, - 2.540055565345015, - 2.787554881226638, - 2.9966668216698618, - 3.159280406343797, - 3.2740604043083934, - 3.345371702506662, - 3.380966836449117, - 3.388933274734846, - 3.3781947205573686, - 3.3533847142377944, - 3.317245166607547, - 3.2700369288191706, - 3.2099472102228788, - 3.137497036360148, - 3.052442218329638, - 2.9591210785043534, - 2.861946492791512, - 2.7663567017316395, - 2.6774678635473483, - 2.5971179010534615, - 2.526239438559149, - 2.4625223901098177, - 2.4029600215889566, - 2.3444378449849625, - 2.285344745997236, - 2.2263733708750113, - 2.169966144839252, - 2.1203622136895195, - 2.0806580685962355, - 2.053836394683036, - 2.0392170443427546, - 2.0345757795493653, - 2.0352306037105587, - 2.036142643207814, - 2.0334301766976792, - 2.0251464095598233, - 2.0123520132775305, - 1.9985691796103746, - 1.9887242999122583, - 1.987991582711174 - ], - "pressure:J4:branch13_seg0": [ - 109084.6218173866, - 108829.37915694356, - 108644.454261784, - 108532.35540828279, - 108501.44438803892, - 108565.70283649443, - 108774.18928677902, - 109175.88975479882, - 109866.51435028271, - 110925.09341506452, - 112431.44739668585, - 114477.47169064693, - 117054.89190404807, - 120234.43674213343, - 123902.64078041127, - 128043.02678264077, - 132537.77910566205, - 137255.44324327068, - 142133.99975482066, - 146936.6051528712, - 151649.0669430089, - 156060.52957404198, - 160120.159871361, - 163681.1285011483, - 166620.41715425157, - 168889.56925442678, - 170399.26440844932, - 171140.7337024876, - 171113.2461008764, - 170363.09313536622, - 168952.86173902688, - 167013.6322666939, - 164580.58468932117, - 161839.18960968123, - 158788.76980076233, - 155554.40907757857, - 152158.43105922287, - 148636.08439386438, - 145119.50014055404, - 141572.41870705216, - 138175.1686946488, - 134917.92930468905, - 131954.56122188174, - 129354.42879990466, - 127131.8597181801, - 125347.91111880097, - 123925.25241877104, - 122860.43937044225, - 122065.51393533363, - 121481.07963294098, - 121055.92064734838, - 120758.98981122412, - 120581.14011459102, - 120541.09827440383, - 120645.83765833227, - 120919.20548605348, - 121352.32574051208, - 121906.79601884316, - 122554.41714213381, - 123200.94686018495, - 123811.24368265919, - 124299.43063395993, - 124636.90158921338, - 124811.36597383225, - 124824.08445338266, - 124712.84249176875, - 124502.92719823204, - 124230.44405730197, - 123916.54216683704, - 123568.02601248598, - 123180.36510330936, - 122746.16929589148, - 122251.83395274029, - 121702.56250441082, - 121099.87618457107, - 120467.38088890075, - 119829.09204492297, - 119201.07056887336, - 118606.45734824151, - 118037.95380511213, - 117497.98527518162, - 116967.05838424225, - 116432.05184022471, - 115884.66719641334, - 115321.0487066789, - 114757.96048698395, - 114206.38525653952, - 113690.13820529977, - 113219.50251917868, - 112800.55913109878, - 112426.14180954087, - 112078.10130703654, - 111734.75948267913, - 111376.40028170015, - 110992.39510951277, - 110583.97786973561, - 110164.22215928748, - 109755.40191307724, - 109379.96888043925, - 109084.6218173866 - ], - "flow:branch7_seg2:J5": [ - 2.9707196644785867, - 2.980907477923101, - 3.0108287625710064, - 3.0621649247490295, - 3.1377694734778485, - 3.239877483451313, - 3.376875837742349, - 3.561417694541534, - 3.81214468005469, - 4.155952083105974, - 4.613092124004645, - 5.216481315186746, - 5.974145539788123, - 6.905411943397598, - 8.003733991880594, - 9.245321068241754, - 10.625746956129918, - 12.081511304525685, - 13.60214690472115, - 15.119599776113315, - 16.59507519182715, - 17.99343653208015, - 19.257765166574533, - 20.366751424257295, - 21.26587115157821, - 21.936055574928837, - 22.34932852958134, - 22.49480178813234, - 22.367217852853305, - 21.977730211420866, - 21.33641201428081, - 20.48513524539789, - 19.44265032611418, - 18.25616624663755, - 16.962416260858117, - 15.577271592631828, - 14.150616199148082, - 12.679392153522805, - 11.211199074898987, - 9.755292191274707, - 8.340060972892097, - 6.996040329533076, - 5.742032236677564, - 4.624541043808056, - 3.649140482027115, - 2.8460966996435433, - 2.2072754446239813, - 1.7304154445237263, - 1.4026654964187673, - 1.1978359700817152, - 1.098928455068636, - 1.0830819030404362, - 1.1363406156904494, - 1.251455387307831, - 1.4253979587774408, - 1.6567276761795884, - 1.9466789739698365, - 2.2839627479309703, - 2.6614039742076177, - 3.057036236725938, - 3.452376933971049, - 3.825902830124384, - 4.154448512090962, - 4.4304612066770295, - 4.6422645406702685, - 4.795488951861804, - 4.895313164791278, - 4.9513089129284555, - 4.974147777669376, - 4.970384422956942, - 4.944224968957464, - 4.897726522532568, - 4.830038226570563, - 4.74140681126939, - 4.633391572797837, - 4.508918603500634, - 4.376315727249666, - 4.240406676111344, - 4.110316734999511, - 3.9886249807341843, - 3.877568335199502, - 3.7766157548209716, - 3.6807695611652895, - 3.5887489128687635, - 3.496355274135975, - 3.405060273119346, - 3.317368256259547, - 3.2371872672168562, - 3.1703440784411265, - 3.1192680681350073, - 3.0855686775271054, - 3.066533986300536, - 3.057169566106848, - 3.051295386103716, - 3.043357273926989, - 3.030340237564407, - 3.012134369031268, - 2.992393649875555, - 2.976351861670911, - 2.9707196644785867 - ], - "pressure:branch7_seg2:J5": [ - 108871.19109059984, - 108571.3791614198, - 108332.34831473442, - 108155.8908668447, - 108051.51443275576, - 108027.68719670358, - 108111.26635493232, - 108356.46688199713, - 108810.8779745261, - 109579.47471942597, - 110707.80055894933, - 112298.06822983157, - 114388.26917767509, - 116994.14834045598, - 120158.87315640804, - 123732.71784990637, - 127788.03931456593, - 132085.60295874288, - 136639.07846220513, - 141283.22996157673, - 145836.53255214082, - 150340.5359979841, - 154484.93192572403, - 158336.1617661725, - 161659.87297804866, - 164405.3855231067, - 166532.4210727418, - 167936.7056847837, - 168636.9440956668, - 168642.87843189217, - 167968.31265997776, - 166734.22313475743, - 164979.7085765313, - 162780.58743591237, - 160298.67494797654, - 157450.40888222514, - 154470.0157639131, - 151241.67351711311, - 147925.18307690317, - 144580.8268694702, - 141172.1790515885, - 137940.99995395343, - 134797.34331360337, - 131978.74405412909, - 129459.85074908298, - 127288.591556827, - 125503.39381256336, - 124029.71665508693, - 122889.64576454047, - 121985.07534647596, - 121288.76905342915, - 120759.54691912563, - 120376.07556300554, - 120140.25239913516, - 120067.80406225774, - 120151.20745270365, - 120416.01573254247, - 120819.21973052691, - 121337.51264170923, - 121927.19236885644, - 122503.40261748544, - 123045.9788375563, - 123461.73797908516, - 123758.35386855403, - 123909.31231967578, - 123930.86546161438, - 123850.81891358124, - 123683.09794348919, - 123458.61429970038, - 123185.31271162242, - 122865.15886363613, - 122496.34302611028, - 122071.37552957468, - 121583.6447054551, - 121045.47430474199, - 120457.3597844516, - 119852.55257477865, - 119240.80977248032, - 118642.07234443519, - 118067.6005989395, - 117508.45957384868, - 116970.04959505744, - 116427.8723181531, - 115882.97818948225, - 115324.50058368708, - 114758.97503014655, - 114203.32558742043, - 113663.38825457117, - 113165.08305244827, - 112706.50302967092, - 112293.3951221252, - 111913.98446994189, - 111549.71426486797, - 111185.64100254943, - 110806.71710274181, - 110409.37750224528, - 109998.24181872146, - 109588.17003888445, - 109197.64101966018, - 108871.19109059984 - ], - "flow:J5:branch8_seg0": [ - 2.0728041049301558, - 2.078378522403957, - 2.0970622203560803, - 2.1304005449600374, - 2.180678813049116, - 2.2492613625947975, - 2.3423800303549904, - 2.4670182672436343, - 2.6369421364966783, - 2.8685428744000467, - 3.1761837450788835, - 3.5843323872203587, - 4.094819771779258, - 4.729194811893847, - 5.475670896478183, - 6.327667582330353, - 7.279487092270868, - 8.287191210895456, - 9.349946227132554, - 10.410014070309686, - 11.454297161074773, - 12.443782946821019, - 13.349924777382801, - 14.150095373858028, - 14.806619374275629, - 15.31032096708086, - 15.632505545127163, - 15.772432597844647, - 15.720568383976143, - 15.484502912641691, - 15.069221868954454, - 14.50394075294483, - 13.796538720241493, - 12.987597926843149, - 12.092583872749412, - 11.131899002557367, - 10.135367962131557, - 9.103037935591162, - 8.073647204488177, - 7.042669725771756, - 6.045263542833613, - 5.0866056307144385, - 4.191875551123815, - 3.3878306471038573, - 2.676308235933028, - 2.089106013288589, - 1.6105987838853528, - 1.2502548934544058, - 0.9948407401178654, - 0.8290555401634709, - 0.7430686428146364, - 0.7185842150277347, - 0.746164865054567, - 0.8195199133843196, - 0.9345486935841111, - 1.0910697288744466, - 1.2885013342263874, - 1.5192931835717092, - 1.780861933832093, - 2.0551054657717573, - 2.3343401140382043, - 2.599647786459832, - 2.837479300980187, - 3.0413949466188264, - 3.2003369785139664, - 3.3194701750956943, - 3.3992744996026705, - 3.447228003140316, - 3.4700664306239344, - 3.4723395314449657, - 3.4577716160420966, - 3.428357341836689, - 3.3837026488979443, - 3.3248270488168172, - 3.2518326682964416, - 3.1672526346998144, - 3.0761045003249436, - 2.98113245251242, - 2.889831900763273, - 2.8026731020675433, - 2.723147228021303, - 2.6502407081153367, - 2.581326358213614, - 2.5159584694531163, - 2.450620522274875, - 2.386785019634524, - 2.324888588125899, - 2.2681040878606478, - 2.2196693173294246, - 2.1817129816387855, - 2.1555957734747215, - 2.1396933681376136, - 2.1313325024672056, - 2.1262418588374294, - 2.1207512489133507, - 2.1125200742091508, - 2.1009852808553804, - 2.0882453144012185, - 2.0773109700826446, - 2.0728041049301558 - ], - "pressure:J5:branch8_seg0": [ - 108871.19109059984, - 108571.3791614198, - 108332.34831473442, - 108155.8908668447, - 108051.51443275576, - 108027.68719670358, - 108111.26635493232, - 108356.46688199713, - 108810.8779745261, - 109579.47471942597, - 110707.80055894933, - 112298.06822983157, - 114388.26917767509, - 116994.14834045598, - 120158.87315640804, - 123732.71784990637, - 127788.03931456593, - 132085.60295874288, - 136639.07846220513, - 141283.22996157673, - 145836.53255214082, - 150340.5359979841, - 154484.93192572403, - 158336.1617661725, - 161659.87297804866, - 164405.3855231067, - 166532.4210727418, - 167936.7056847837, - 168636.9440956668, - 168642.87843189217, - 167968.31265997776, - 166734.22313475743, - 164979.7085765313, - 162780.58743591237, - 160298.67494797654, - 157450.40888222514, - 154470.0157639131, - 151241.67351711311, - 147925.18307690317, - 144580.8268694702, - 141172.1790515885, - 137940.99995395343, - 134797.34331360337, - 131978.74405412909, - 129459.85074908298, - 127288.591556827, - 125503.39381256336, - 124029.71665508693, - 122889.64576454047, - 121985.07534647596, - 121288.76905342915, - 120759.54691912563, - 120376.07556300554, - 120140.25239913516, - 120067.80406225774, - 120151.20745270365, - 120416.01573254247, - 120819.21973052691, - 121337.51264170923, - 121927.19236885644, - 122503.40261748544, - 123045.9788375563, - 123461.73797908516, - 123758.35386855403, - 123909.31231967578, - 123930.86546161438, - 123850.81891358124, - 123683.09794348919, - 123458.61429970038, - 123185.31271162242, - 122865.15886363613, - 122496.34302611028, - 122071.37552957468, - 121583.6447054551, - 121045.47430474199, - 120457.3597844516, - 119852.55257477865, - 119240.80977248032, - 118642.07234443519, - 118067.6005989395, - 117508.45957384868, - 116970.04959505744, - 116427.8723181531, - 115882.97818948225, - 115324.50058368708, - 114758.97503014655, - 114203.32558742043, - 113663.38825457117, - 113165.08305244827, - 112706.50302967092, - 112293.3951221252, - 111913.98446994189, - 111549.71426486797, - 111185.64100254943, - 110806.71710274181, - 110409.37750224528, - 109998.24181872146, - 109588.17003888445, - 109197.64101966018, - 108871.19109059984 - ], - "flow:J5:branch12_seg0": [ - 0.8979155595484312, - 0.9025289555191436, - 0.913766542214926, - 0.9317643797889922, - 0.9570906604287333, - 0.9906161208565167, - 1.0344958073873582, - 1.094399427297899, - 1.1752025435580113, - 1.2874092087059268, - 1.4369083789257604, - 1.6321489279663879, - 1.8793257680088669, - 2.1762171315037513, - 2.528063095402414, - 2.9176534859114005, - 3.34625986385905, - 3.794320093630228, - 4.252200677588594, - 4.70958570580363, - 5.140778030752374, - 5.549653585259132, - 5.907840389191739, - 6.216656050399269, - 6.459251777302582, - 6.625734607847979, - 6.716822984454174, - 6.722369190287694, - 6.646649468877161, - 6.493227298779176, - 6.267190145326358, - 5.9811944924530565, - 5.646111605872689, - 5.2685683197943955, - 4.8698323881087076, - 4.445372590074461, - 4.015248237016528, - 3.5763542179316414, - 3.1375518704108107, - 2.7126224655029523, - 2.2947974300584817, - 1.909434698818637, - 1.5501566855537483, - 1.236710396704199, - 0.972832246094087, - 0.7569906863549544, - 0.5966766607386288, - 0.4801605510693208, - 0.4078247563009018, - 0.3687804299182442, - 0.35585981225399943, - 0.3644976880127014, - 0.3901757506358821, - 0.43193547392351156, - 0.4908492651933297, - 0.5656579473051416, - 0.6581776397434493, - 0.7646695643592614, - 0.880542040375525, - 1.0019307709541803, - 1.1180368199328445, - 1.2262550436645512, - 1.3169692111107743, - 1.3890662600582038, - 1.441927562156302, - 1.4760187767661093, - 1.4960386651886073, - 1.5040809097881398, - 1.504081347045442, - 1.4980448915119762, - 1.4864533529153667, - 1.4693691806958793, - 1.4463355776726188, - 1.4165797624525722, - 1.3815589045013947, - 1.3416659688008197, - 1.3002112269247212, - 1.2592742235989243, - 1.2204848342362382, - 1.1859518786666416, - 1.1544211071781993, - 1.1263750467056355, - 1.0994432029516756, - 1.0727904434156479, - 1.0457347518610995, - 1.018275253484822, - 0.9924796681336486, - 0.9690831793562076, - 0.9506747611117025, - 0.9375550864962217, - 0.9299729040523831, - 0.9268406181629217, - 0.9258370636396422, - 0.9250535272662864, - 0.9226060250136378, - 0.9178201633552558, - 0.9111490881758878, - 0.9041483354743372, - 0.8990408915882656, - 0.8979155595484312 - ], - "pressure:J5:branch12_seg0": [ - 108871.19109059984, - 108571.3791614198, - 108332.34831473442, - 108155.8908668447, - 108051.51443275576, - 108027.68719670358, - 108111.26635493232, - 108356.46688199713, - 108810.8779745261, - 109579.47471942597, - 110707.80055894933, - 112298.06822983157, - 114388.26917767509, - 116994.14834045598, - 120158.87315640804, - 123732.71784990637, - 127788.03931456593, - 132085.60295874288, - 136639.07846220513, - 141283.22996157673, - 145836.53255214082, - 150340.5359979841, - 154484.93192572403, - 158336.1617661725, - 161659.87297804866, - 164405.3855231067, - 166532.4210727418, - 167936.7056847837, - 168636.9440956668, - 168642.87843189217, - 167968.31265997776, - 166734.22313475743, - 164979.7085765313, - 162780.58743591237, - 160298.67494797654, - 157450.40888222514, - 154470.0157639131, - 151241.67351711311, - 147925.18307690317, - 144580.8268694702, - 141172.1790515885, - 137940.99995395343, - 134797.34331360337, - 131978.74405412909, - 129459.85074908298, - 127288.591556827, - 125503.39381256336, - 124029.71665508693, - 122889.64576454047, - 121985.07534647596, - 121288.76905342915, - 120759.54691912563, - 120376.07556300554, - 120140.25239913516, - 120067.80406225774, - 120151.20745270365, - 120416.01573254247, - 120819.21973052691, - 121337.51264170923, - 121927.19236885644, - 122503.40261748544, - 123045.9788375563, - 123461.73797908516, - 123758.35386855403, - 123909.31231967578, - 123930.86546161438, - 123850.81891358124, - 123683.09794348919, - 123458.61429970038, - 123185.31271162242, - 122865.15886363613, - 122496.34302611028, - 122071.37552957468, - 121583.6447054551, - 121045.47430474199, - 120457.3597844516, - 119852.55257477865, - 119240.80977248032, - 118642.07234443519, - 118067.6005989395, - 117508.45957384868, - 116970.04959505744, - 116427.8723181531, - 115882.97818948225, - 115324.50058368708, - 114758.97503014655, - 114203.32558742043, - 113663.38825457117, - 113165.08305244827, - 112706.50302967092, - 112293.3951221252, - 111913.98446994189, - 111549.71426486797, - 111185.64100254943, - 110806.71710274181, - 110409.37750224528, - 109998.24181872146, - 109588.17003888445, - 109197.64101966018, - 108871.19109059984 - ], - "flow:branch3_seg0:J6": [ - 3.2022030335535616, - 3.2144043060695138, - 3.2448348013764616, - 3.296329429452778, - 3.3713887514293797, - 3.473931105475683, - 3.6158261471098645, - 3.80751509303176, - 4.073672770695834, - 4.432446979759601, - 4.907718042334976, - 5.522180488213135, - 6.280642408890804, - 7.203368591274494, - 8.263885146747867, - 9.469367537641652, - 10.770373492834501, - 12.142669909967404, - 13.551698346060725, - 14.931536347083432, - 16.284164197152506, - 17.52899945143754, - 18.657889195685314, - 19.61991106899804, - 20.37985780778135, - 20.93245708137991, - 21.248308072871406, - 21.327034267251204, - 21.168521611107522, - 20.777431116330902, - 20.180019015218654, - 19.402711098901626, - 18.466187318144637, - 17.419622094440992, - 16.258924105617396, - 15.040358980306488, - 13.763285180471648, - 12.455985739492546, - 11.155388976795807, - 9.845870054172611, - 8.586989232348532, - 7.3712731916302765, - 6.2480202900631925, - 5.240736960905635, - 4.3590509662223305, - 3.626848557074766, - 3.029872110553598, - 2.575556565266398, - 2.2438991342110017, - 2.0245753450126434, - 1.8998175664727992, - 1.8534536254727887, - 1.8753215063420623, - 1.9607313316137236, - 2.105285417097958, - 2.3112155737773867, - 2.5715596744577915, - 2.8757071087550057, - 3.2154007652738588, - 3.565879417186204, - 3.91692345116725, - 4.241843203874328, - 4.528924783737375, - 4.765972919377671, - 4.948030618823391, - 5.080433608793943, - 5.166240554791386, - 5.2157746271378, - 5.234377015809882, - 5.227358016260275, - 5.19794608357537, - 5.147787459595017, - 5.076320306712228, - 4.986212488756285, - 4.877495143782955, - 4.7565130581749395, - 4.6287479663735285, - 4.499718815189603, - 4.376370152949813, - 4.259009961025446, - 4.150846962383748, - 4.048173064503291, - 3.950451074633704, - 3.85489315525337, - 3.7600060204115433, - 3.668640866099073, - 3.5809907402898173, - 3.5035108174878107, - 3.4381904271103636, - 3.3879784530401413, - 3.3528951063894996, - 3.329046082933724, - 3.312504555657267, - 3.2979218791562523, - 3.2817141401666037, - 3.2621896859141732, - 3.2404270401269426, - 3.2199080227397565, - 3.205409393107688, - 3.2022030335535616 - ], - "pressure:branch3_seg0:J6": [ - 109158.44989991483, - 108919.71024900943, - 108751.85356854404, - 108656.77723933355, - 108643.71857148284, - 108728.4974216387, - 108969.29537402099, - 109416.0453234125, - 110174.95544676053, - 111324.62006797841, - 112938.07727910849, - 115118.63468846866, - 117833.33540853788, - 121168.11023338296, - 124986.76405223277, - 129262.08005099061, - 133879.9822246947, - 138698.19083416418, - 143665.0647629555, - 148529.2882765195, - 153295.37384411658, - 157718.1094120952, - 161764.79839999252, - 165275.5105932459, - 168116.33400933084, - 170271.07000722084, - 171624.18225343054, - 172179.4618586196, - 171949.78642788157, - 170984.7780780504, - 169368.392165129, - 167244.26388154685, - 164635.83338248532, - 161750.10275916648, - 158570.79621297307, - 155238.7744411607, - 151762.55252236343, - 148177.77897155474, - 144633.28843359541, - 141052.70798794573, - 137669.1595738512, - 134442.8121759522, - 131539.3755426637, - 129044.77404108307, - 126912.98915471132, - 125231.61002217628, - 123898.14660090899, - 122900.29812124108, - 122168.1235403242, - 121618.08928517507, - 121213.55497321028, - 120929.81345616453, - 120759.00952807088, - 120736.28935154909, - 120863.52737975742, - 121166.45905139283, - 121631.03310978207, - 122205.29706441729, - 122869.21317313016, - 123512.15280150823, - 124106.97222099603, - 124566.92470580558, - 124859.79888960175, - 124993.02444763147, - 124967.09473200001, - 124826.17289847253, - 124599.42705210738, - 124315.81221632703, - 123997.49101346672, - 123646.10031799857, - 123253.12726454469, - 122811.71814446349, - 122305.22291030093, - 121743.45141691847, - 121128.61366563098, - 120488.26487378772, - 119850.37665343411, - 119226.05413506414, - 118640.17819614019, - 118079.89744065859, - 117545.12000213421, - 117017.26045123104, - 116479.9432491677, - 115927.63648162605, - 115358.46285974565, - 114792.38430028548, - 114241.86342610882, - 113732.76139220982, - 113272.9621015045, - 112866.39301961543, - 112502.6854978606, - 112159.46492670945, - 111815.30942328989, - 111450.74216467486, - 111057.70181802782, - 110640.91216599917, - 110216.22368053035, - 109808.70485348262, - 109440.94104883596, - 109158.44989991483 - ], - "flow:J6:branch3_seg1": [ - 3.2022030335535616, - 3.2144043060695138, - 3.2448348013764616, - 3.296329429452778, - 3.3713887514293797, - 3.473931105475683, - 3.6158261471098645, - 3.80751509303176, - 4.073672770695834, - 4.432446979759601, - 4.907718042334976, - 5.522180488213135, - 6.280642408890804, - 7.203368591274494, - 8.263885146747867, - 9.469367537641652, - 10.770373492834501, - 12.142669909967404, - 13.551698346060725, - 14.931536347083432, - 16.284164197152506, - 17.52899945143754, - 18.657889195685314, - 19.61991106899804, - 20.37985780778135, - 20.93245708137991, - 21.248308072871406, - 21.327034267251204, - 21.168521611107522, - 20.777431116330902, - 20.180019015218654, - 19.402711098901626, - 18.466187318144637, - 17.419622094440992, - 16.258924105617396, - 15.040358980306488, - 13.763285180471648, - 12.455985739492546, - 11.155388976795807, - 9.845870054172611, - 8.586989232348532, - 7.3712731916302765, - 6.2480202900631925, - 5.240736960905635, - 4.3590509662223305, - 3.626848557074766, - 3.029872110553598, - 2.575556565266398, - 2.2438991342110017, - 2.0245753450126434, - 1.8998175664727992, - 1.8534536254727887, - 1.8753215063420623, - 1.9607313316137236, - 2.105285417097958, - 2.3112155737773867, - 2.5715596744577915, - 2.8757071087550057, - 3.2154007652738588, - 3.565879417186204, - 3.91692345116725, - 4.241843203874328, - 4.528924783737375, - 4.765972919377671, - 4.948030618823391, - 5.080433608793943, - 5.166240554791386, - 5.2157746271378, - 5.234377015809882, - 5.227358016260275, - 5.19794608357537, - 5.147787459595017, - 5.076320306712228, - 4.986212488756285, - 4.877495143782955, - 4.7565130581749395, - 4.6287479663735285, - 4.499718815189603, - 4.376370152949813, - 4.259009961025446, - 4.150846962383748, - 4.048173064503291, - 3.950451074633704, - 3.85489315525337, - 3.7600060204115433, - 3.668640866099073, - 3.5809907402898173, - 3.5035108174878107, - 3.4381904271103636, - 3.3879784530401413, - 3.3528951063894996, - 3.329046082933724, - 3.312504555657267, - 3.2979218791562523, - 3.2817141401666037, - 3.2621896859141732, - 3.2404270401269426, - 3.2199080227397565, - 3.205409393107688, - 3.2022030335535616 - ], - "pressure:J6:branch3_seg1": [ - 109158.44989991483, - 108919.71024900943, - 108751.85356854404, - 108656.77723933355, - 108643.71857148284, - 108728.4974216387, - 108969.29537402099, - 109416.0453234125, - 110174.95544676053, - 111324.62006797841, - 112938.07727910849, - 115118.63468846866, - 117833.33540853788, - 121168.11023338296, - 124986.76405223277, - 129262.08005099061, - 133879.9822246947, - 138698.19083416418, - 143665.0647629555, - 148529.2882765195, - 153295.37384411658, - 157718.1094120952, - 161764.79839999252, - 165275.5105932459, - 168116.33400933084, - 170271.07000722084, - 171624.18225343054, - 172179.4618586196, - 171949.78642788157, - 170984.7780780504, - 169368.392165129, - 167244.26388154685, - 164635.83338248532, - 161750.10275916648, - 158570.79621297307, - 155238.7744411607, - 151762.55252236343, - 148177.77897155474, - 144633.28843359541, - 141052.70798794573, - 137669.1595738512, - 134442.8121759522, - 131539.3755426637, - 129044.77404108307, - 126912.98915471132, - 125231.61002217628, - 123898.14660090899, - 122900.29812124108, - 122168.1235403242, - 121618.08928517507, - 121213.55497321028, - 120929.81345616453, - 120759.00952807088, - 120736.28935154909, - 120863.52737975742, - 121166.45905139283, - 121631.03310978207, - 122205.29706441729, - 122869.21317313016, - 123512.15280150823, - 124106.97222099603, - 124566.92470580558, - 124859.79888960175, - 124993.02444763147, - 124967.09473200001, - 124826.17289847253, - 124599.42705210738, - 124315.81221632703, - 123997.49101346672, - 123646.10031799857, - 123253.12726454469, - 122811.71814446349, - 122305.22291030093, - 121743.45141691847, - 121128.61366563098, - 120488.26487378772, - 119850.37665343411, - 119226.05413506414, - 118640.17819614019, - 118079.89744065859, - 117545.12000213421, - 117017.26045123104, - 116479.9432491677, - 115927.63648162605, - 115358.46285974565, - 114792.38430028548, - 114241.86342610882, - 113732.76139220982, - 113272.9621015045, - 112866.39301961543, - 112502.6854978606, - 112159.46492670945, - 111815.30942328989, - 111450.74216467486, - 111057.70181802782, - 110640.91216599917, - 110216.22368053035, - 109808.70485348262, - 109440.94104883596, - 109158.44989991483 - ], - "flow:branch3_seg1:J7": [ - 3.2035303023275685, - 3.215385286422943, - 3.245488894266661, - 3.2965995140401403, - 3.371244496958031, - 3.4732060996415264, - 3.6142255124733733, - 3.8047404530409397, - 4.069148842592885, - 4.425925540215164, - 4.898564693793944, - 5.510463199078174, - 6.266087751421727, - 7.186164522778304, - 8.244735937050383, - 9.447762600448636, - 10.747968175609321, - 12.118941414446786, - 13.528106301720484, - 14.90883684866445, - 16.262151649343213, - 17.509040220619625, - 18.639718944851495, - 19.604690261492717, - 20.367943735984067, - 20.92418148342665, - 21.24379249091482, - 21.326333177890167, - 21.171216162060965, - 20.783654752143164, - 20.188811168316306, - 19.414066889754285, - 18.479276431209488, - 17.43369429165992, - 16.27453073813908, - 15.056245443934042, - 13.780315098658185, - 12.473068189062161, - 11.17228542229693, - 9.862536753079421, - 8.602609838997589, - 7.386012586068114, - 6.260978972679858, - 5.252019579482047, - 4.368097765359715, - 3.63404150388735, - 3.035304258361878, - 2.5795857727380325, - 2.247020047702979, - 2.026859554104241, - 1.90149945087268, - 1.8545309608771365, - 1.875782753683721, - 1.9604844876442649, - 2.1043115225732754, - 2.309348001822648, - 2.569040748730199, - 2.8726475381004475, - 3.2122108626539068, - 3.562892533767314, - 3.914386474089069, - 4.2400866227946326, - 4.527854554352409, - 4.765771611557002, - 4.948451627441931, - 5.081383200240601, - 5.167534846109116, - 5.21723673415263, - 5.235982786116732, - 5.229137862942828, - 5.199945712680313, - 5.150072574204384, - 5.078909064210525, - 4.989042905759612, - 4.880540309623197, - 4.759592357575996, - 4.631824217309687, - 4.502628882560076, - 4.379129153716068, - 4.26162465452222, - 4.153364492106716, - 4.050749388577105, - 3.9530628515008415, - 3.857620118704326, - 3.762759564305232, - 3.6713260006240653, - 3.5835618097010404, - 3.5058394316832584, - 3.4402850397569256, - 3.3898329063909802, - 3.3545805562872264, - 3.330683169900782, - 3.3141991211293065, - 3.29974817331994, - 3.283680329454247, - 3.2642440545510003, - 3.242454742972193, - 3.2218019293963223, - 3.207049344730095, - 3.2035303023275685 - ], - "pressure:branch3_seg1:J7": [ - 109115.03069470703, - 108870.72034597426, - 108696.53887406048, - 108593.55965550272, - 108571.34304620448, - 108643.74643876663, - 108868.28536008376, - 109292.85764022726, - 110020.63163719863, - 111132.3073378655, - 112691.23342616801, - 114813.0889296566, - 117455.85854264918, - 120716.06801237684, - 124463.19482562362, - 128650.65767996767, - 133193.40119016837, - 137920.4304149124, - 142812.55375854453, - 147612.24733536993, - 152323.26543381877, - 156705.63232472594, - 160714.7049872758, - 164211.62488219462, - 167052.5662556787, - 169238.56177701367, - 170642.9309732976, - 171267.89282340842, - 171121.0287805255, - 170255.04514837323, - 168741.54553724098, - 166733.21438162212, - 164233.9865187455, - 161448.44197624357, - 158369.76241552286, - 155123.01538784523, - 151739.79470387724, - 148228.60601615303, - 144750.48060606275, - 141214.05992022896, - 137860.0752316092, - 134653.84705560812, - 131749.4916859184, - 129256.89869932899, - 127100.95793838463, - 125391.04333342063, - 124021.54649027536, - 122985.27939797143, - 122225.12172184304, - 121647.88341839991, - 121220.60386022486, - 120914.54248168001, - 120721.48695351035, - 120677.83774226232, - 120785.47986874125, - 121067.43299495392, - 121513.45491985348, - 122067.4126553953, - 122718.04511312411, - 123352.34885068018, - 123945.07258722615, - 124410.8430572415, - 124708.26591820765, - 124852.60543370248, - 124837.35715725104, - 124708.81560183624, - 124494.25244864602, - 124220.02241738563, - 123909.50781415794, - 123565.04147262224, - 123179.06778548496, - 122745.7526870334, - 122247.58129782985, - 121693.8197865892, - 121086.44725951405, - 120451.22518653312, - 119818.696225987, - 119196.40679604001, - 118611.8301590523, - 118051.34921860145, - 117515.50684929932, - 116988.72718867869, - 116452.26626809564, - 115902.44770207573, - 115334.81314605186, - 114769.24014073609, - 114217.95986996993, - 113706.55662329774, - 113244.02732773805, - 112833.85813848473, - 112466.99108913861, - 112120.98129436006, - 111775.45616293748, - 111411.07687325792, - 111019.25168347562, - 110604.11148464314, - 110180.10293868612, - 109772.03524895057, - 109401.75290377182, - 109115.03069470703 - ], - "flow:J7:branch3_seg2": [ - 3.2035303023275685, - 3.215385286422943, - 3.245488894266661, - 3.2965995140401403, - 3.371244496958031, - 3.4732060996415264, - 3.6142255124733733, - 3.8047404530409397, - 4.069148842592885, - 4.425925540215164, - 4.898564693793944, - 5.510463199078174, - 6.266087751421727, - 7.186164522778304, - 8.244735937050383, - 9.447762600448636, - 10.747968175609321, - 12.118941414446786, - 13.528106301720484, - 14.90883684866445, - 16.262151649343213, - 17.509040220619625, - 18.639718944851495, - 19.604690261492717, - 20.367943735984067, - 20.92418148342665, - 21.24379249091482, - 21.326333177890167, - 21.171216162060965, - 20.783654752143164, - 20.188811168316306, - 19.414066889754285, - 18.479276431209488, - 17.43369429165992, - 16.27453073813908, - 15.056245443934042, - 13.780315098658185, - 12.473068189062161, - 11.17228542229693, - 9.862536753079421, - 8.602609838997589, - 7.386012586068114, - 6.260978972679858, - 5.252019579482047, - 4.368097765359715, - 3.63404150388735, - 3.035304258361878, - 2.5795857727380325, - 2.247020047702979, - 2.026859554104241, - 1.90149945087268, - 1.8545309608771365, - 1.875782753683721, - 1.9604844876442649, - 2.1043115225732754, - 2.309348001822648, - 2.569040748730199, - 2.8726475381004475, - 3.2122108626539068, - 3.562892533767314, - 3.914386474089069, - 4.2400866227946326, - 4.527854554352409, - 4.765771611557002, - 4.948451627441931, - 5.081383200240601, - 5.167534846109116, - 5.21723673415263, - 5.235982786116732, - 5.229137862942828, - 5.199945712680313, - 5.150072574204384, - 5.078909064210525, - 4.989042905759612, - 4.880540309623197, - 4.759592357575996, - 4.631824217309687, - 4.502628882560076, - 4.379129153716068, - 4.26162465452222, - 4.153364492106716, - 4.050749388577105, - 3.9530628515008415, - 3.857620118704326, - 3.762759564305232, - 3.6713260006240653, - 3.5835618097010404, - 3.5058394316832584, - 3.4402850397569256, - 3.3898329063909802, - 3.3545805562872264, - 3.330683169900782, - 3.3141991211293065, - 3.29974817331994, - 3.283680329454247, - 3.2642440545510003, - 3.242454742972193, - 3.2218019293963223, - 3.207049344730095, - 3.2035303023275685 - ], - "pressure:J7:branch3_seg2": [ - 109115.03069470703, - 108870.72034597426, - 108696.53887406048, - 108593.55965550272, - 108571.34304620448, - 108643.74643876663, - 108868.28536008376, - 109292.85764022726, - 110020.63163719863, - 111132.3073378655, - 112691.23342616801, - 114813.0889296566, - 117455.85854264918, - 120716.06801237684, - 124463.19482562362, - 128650.65767996767, - 133193.40119016837, - 137920.4304149124, - 142812.55375854453, - 147612.24733536993, - 152323.26543381877, - 156705.63232472594, - 160714.7049872758, - 164211.62488219462, - 167052.5662556787, - 169238.56177701367, - 170642.9309732976, - 171267.89282340842, - 171121.0287805255, - 170255.04514837323, - 168741.54553724098, - 166733.21438162212, - 164233.9865187455, - 161448.44197624357, - 158369.76241552286, - 155123.01538784523, - 151739.79470387724, - 148228.60601615303, - 144750.48060606275, - 141214.05992022896, - 137860.0752316092, - 134653.84705560812, - 131749.4916859184, - 129256.89869932899, - 127100.95793838463, - 125391.04333342063, - 124021.54649027536, - 122985.27939797143, - 122225.12172184304, - 121647.88341839991, - 121220.60386022486, - 120914.54248168001, - 120721.48695351035, - 120677.83774226232, - 120785.47986874125, - 121067.43299495392, - 121513.45491985348, - 122067.4126553953, - 122718.04511312411, - 123352.34885068018, - 123945.07258722615, - 124410.8430572415, - 124708.26591820765, - 124852.60543370248, - 124837.35715725104, - 124708.81560183624, - 124494.25244864602, - 124220.02241738563, - 123909.50781415794, - 123565.04147262224, - 123179.06778548496, - 122745.7526870334, - 122247.58129782985, - 121693.8197865892, - 121086.44725951405, - 120451.22518653312, - 119818.696225987, - 119196.40679604001, - 118611.8301590523, - 118051.34921860145, - 117515.50684929932, - 116988.72718867869, - 116452.26626809564, - 115902.44770207573, - 115334.81314605186, - 114769.24014073609, - 114217.95986996993, - 113706.55662329774, - 113244.02732773805, - 112833.85813848473, - 112466.99108913861, - 112120.98129436006, - 111775.45616293748, - 111411.07687325792, - 111019.25168347562, - 110604.11148464314, - 110180.10293868612, - 109772.03524895057, - 109401.75290377182, - 109115.03069470703 - ], - "flow:branch4_seg0:J8": [ - 2.3207719678759635, - 2.32083202650617, - 2.332362202908104, - 2.357048261305785, - 2.397118781428352, - 2.4539675373497722, - 2.5336418723321468, - 2.64123700818022, - 2.7900554936190765, - 2.992389509256215, - 3.26225361690199, - 3.620886458379183, - 4.069063978501269, - 4.6295965072657825, - 5.286150977270316, - 6.040585747155863, - 6.878877094726964, - 7.769939348966589, - 8.709523729727726, - 9.645317881464125, - 10.572657889654751, - 11.444768370913597, - 12.250617009174785, - 12.961939467285024, - 13.555665041711787, - 14.023259947980204, - 14.338592214157936, - 14.504678055185165, - 14.511062031615392, - 14.366560923552427, - 14.073975879565168, - 13.655262212171744, - 13.113237099182903, - 12.482832848369968, - 11.769244674779017, - 10.997367272287132, - 10.181200056646784, - 9.32572076908257, - 8.45949509043058, - 7.574538526367763, - 6.710928341905744, - 5.861075240237696, - 5.059422091961171, - 4.318775679612073, - 3.6471029634896777, - 3.0753035149340606, - 2.589715136998115, - 2.2092766296113635, - 1.9182457682970373, - 1.7106955622642084, - 1.576505670005147, - 1.5026219435573915, - 1.4817014635227903, - 1.5079650578134791, - 1.5765199489712112, - 1.6870300907958742, - 1.8373475468758564, - 2.0217369403482746, - 2.238536425684108, - 2.4699874985256787, - 2.711946603778133, - 2.9435385871065782, - 3.156000224568487, - 3.340490173296607, - 3.487699867929894, - 3.6009200361445206, - 3.678171668304913, - 3.7264674645854865, - 3.750270540074093, - 3.7545339912451707, - 3.7423944847966353, - 3.715880847804216, - 3.674603491233604, - 3.6201372189143557, - 3.5521033033873297, - 3.4735096813323243, - 3.3877956974877654, - 3.2974458554851243, - 3.2091521999656245, - 3.1228936066840682, - 3.0432445631778973, - 2.968561188732685, - 2.8979399595130277, - 2.8303894625665875, - 2.7632079539533025, - 2.697862137982524, - 2.6340183767290744, - 2.5751656512754666, - 2.5230379879061027, - 2.480269362115135, - 2.447738759018099, - 2.4245409385118957, - 2.4088387198968144, - 2.3969809829507835, - 2.3859917134735613, - 2.3734630481762187, - 2.3586980654202825, - 2.3431811718584723, - 2.329213482947276, - 2.3207719678759635 - ], - "pressure:branch4_seg0:J8": [ - 108957.00459529697, - 108671.90920977971, - 108450.64154724828, - 108293.3297996069, - 108211.27632304757, - 108212.31625571601, - 108332.40151869376, - 108625.97695690712, - 109150.42538174304, - 110015.79755429733, - 111259.71168783079, - 113007.5606241248, - 115259.04252142174, - 118065.84531650272, - 121425.55595459302, - 125194.24241424234, - 129461.43817761766, - 133926.09889120347, - 138681.2871192061, - 143453.36540373, - 148141.78739516807, - 152722.70283070562, - 156904.2582742226, - 160764.07940388436, - 164011.35050452134, - 166655.5471771236, - 168594.5895213649, - 169772.89252957804, - 170201.87278030752, - 169913.02216930847, - 168924.32069238406, - 167391.94482691598, - 165327.4341609652, - 162870.45727542115, - 160147.59317753775, - 157094.48041089482, - 153955.72398446835, - 150567.33034752018, - 147170.71295146534, - 143738.43949310065, - 140320.8328856493, - 137103.02505303177, - 134006.13515405895, - 131295.11402253367, - 128867.09894025765, - 126843.5176396266, - 125179.54982957985, - 123835.06447701293, - 122805.02998846112, - 121978.98764238965, - 121353.33386826485, - 120871.39506205272, - 120532.86003257362, - 120337.1912485879, - 120304.12367053075, - 120428.51745379072, - 120738.19245902533, - 121175.61216365194, - 121730.39514245975, - 122331.37252310874, - 122910.2018057896, - 123435.85669869107, - 123816.31859578697, - 124080.1504314727, - 124184.08650891816, - 124170.28280083508, - 124053.62900206495, - 123858.87666027837, - 123615.05796985237, - 123325.52545498115, - 122991.27488428894, - 122606.76285858764, - 122163.12741399989, - 121657.22536351818, - 121101.32776735917, - 120498.44172449957, - 119886.87699970332, - 119269.48810037611, - 118675.22727253991, - 118103.97874656516, - 117551.21645443366, - 117017.29750065712, - 116473.92700552929, - 115928.0765838294, - 115363.52251026299, - 114796.83740649668, - 114241.13180706004, - 113706.46615969895, - 113218.08495669445, - 112770.20371117692, - 112369.9349526742, - 111998.72625964889, - 111639.38228350675, - 111274.5024104632, - 110890.58756252076, - 110486.80059922257, - 110070.15334517988, - 109659.35854540185, - 109273.05239762068, - 108957.00459529697 - ], - "flow:J8:branch4_seg1": [ - 2.3207719678759635, - 2.32083202650617, - 2.332362202908104, - 2.357048261305785, - 2.397118781428352, - 2.4539675373497722, - 2.5336418723321468, - 2.64123700818022, - 2.7900554936190765, - 2.992389509256215, - 3.26225361690199, - 3.620886458379183, - 4.069063978501269, - 4.6295965072657825, - 5.286150977270316, - 6.040585747155863, - 6.878877094726964, - 7.769939348966589, - 8.709523729727726, - 9.645317881464125, - 10.572657889654751, - 11.444768370913597, - 12.250617009174785, - 12.961939467285024, - 13.555665041711787, - 14.023259947980204, - 14.338592214157936, - 14.504678055185165, - 14.511062031615392, - 14.366560923552427, - 14.073975879565168, - 13.655262212171744, - 13.113237099182903, - 12.482832848369968, - 11.769244674779017, - 10.997367272287132, - 10.181200056646784, - 9.32572076908257, - 8.45949509043058, - 7.574538526367763, - 6.710928341905744, - 5.861075240237696, - 5.059422091961171, - 4.318775679612073, - 3.6471029634896777, - 3.0753035149340606, - 2.589715136998115, - 2.2092766296113635, - 1.9182457682970373, - 1.7106955622642084, - 1.576505670005147, - 1.5026219435573915, - 1.4817014635227903, - 1.5079650578134791, - 1.5765199489712112, - 1.6870300907958742, - 1.8373475468758564, - 2.0217369403482746, - 2.238536425684108, - 2.4699874985256787, - 2.711946603778133, - 2.9435385871065782, - 3.156000224568487, - 3.340490173296607, - 3.487699867929894, - 3.6009200361445206, - 3.678171668304913, - 3.7264674645854865, - 3.750270540074093, - 3.7545339912451707, - 3.7423944847966353, - 3.715880847804216, - 3.674603491233604, - 3.6201372189143557, - 3.5521033033873297, - 3.4735096813323243, - 3.3877956974877654, - 3.2974458554851243, - 3.2091521999656245, - 3.1228936066840682, - 3.0432445631778973, - 2.968561188732685, - 2.8979399595130277, - 2.8303894625665875, - 2.7632079539533025, - 2.697862137982524, - 2.6340183767290744, - 2.5751656512754666, - 2.5230379879061027, - 2.480269362115135, - 2.447738759018099, - 2.4245409385118957, - 2.4088387198968144, - 2.3969809829507835, - 2.3859917134735613, - 2.3734630481762187, - 2.3586980654202825, - 2.3431811718584723, - 2.329213482947276, - 2.3207719678759635 - ], - "pressure:J8:branch4_seg1": [ - 108957.00459529697, - 108671.90920977971, - 108450.64154724828, - 108293.3297996069, - 108211.27632304757, - 108212.31625571601, - 108332.40151869376, - 108625.97695690712, - 109150.42538174304, - 110015.79755429733, - 111259.71168783079, - 113007.5606241248, - 115259.04252142174, - 118065.84531650272, - 121425.55595459302, - 125194.24241424234, - 129461.43817761766, - 133926.09889120347, - 138681.2871192061, - 143453.36540373, - 148141.78739516807, - 152722.70283070562, - 156904.2582742226, - 160764.07940388436, - 164011.35050452134, - 166655.5471771236, - 168594.5895213649, - 169772.89252957804, - 170201.87278030752, - 169913.02216930847, - 168924.32069238406, - 167391.94482691598, - 165327.4341609652, - 162870.45727542115, - 160147.59317753775, - 157094.48041089482, - 153955.72398446835, - 150567.33034752018, - 147170.71295146534, - 143738.43949310065, - 140320.8328856493, - 137103.02505303177, - 134006.13515405895, - 131295.11402253367, - 128867.09894025765, - 126843.5176396266, - 125179.54982957985, - 123835.06447701293, - 122805.02998846112, - 121978.98764238965, - 121353.33386826485, - 120871.39506205272, - 120532.86003257362, - 120337.1912485879, - 120304.12367053075, - 120428.51745379072, - 120738.19245902533, - 121175.61216365194, - 121730.39514245975, - 122331.37252310874, - 122910.2018057896, - 123435.85669869107, - 123816.31859578697, - 124080.1504314727, - 124184.08650891816, - 124170.28280083508, - 124053.62900206495, - 123858.87666027837, - 123615.05796985237, - 123325.52545498115, - 122991.27488428894, - 122606.76285858764, - 122163.12741399989, - 121657.22536351818, - 121101.32776735917, - 120498.44172449957, - 119886.87699970332, - 119269.48810037611, - 118675.22727253991, - 118103.97874656516, - 117551.21645443366, - 117017.29750065712, - 116473.92700552929, - 115928.0765838294, - 115363.52251026299, - 114796.83740649668, - 114241.13180706004, - 113706.46615969895, - 113218.08495669445, - 112770.20371117692, - 112369.9349526742, - 111998.72625964889, - 111639.38228350675, - 111274.5024104632, - 110890.58756252076, - 110486.80059922257, - 110070.15334517988, - 109659.35854540185, - 109273.05239762068, - 108957.00459529697 - ], - "flow:branch4_seg1:J9": [ - 2.320834818934411, - 2.320882863843716, - 2.332400222599967, - 2.357073158549272, - 2.397127860532315, - 2.453958849771441, - 2.5336028025550643, - 2.641161121713524, - 2.7899212618831473, - 2.9921843653998024, - 3.2619666680449475, - 3.620490598588608, - 4.068578585594895, - 4.628986240545979, - 5.285458930569, - 6.039805794816082, - 6.878027445269111, - 7.769061845992541, - 8.70859980655802, - 9.644424934553793, - 10.571763960991582, - 11.44394362115064, - 12.2498531544496, - 12.961268482049363, - 13.55511644374054, - 14.022820739279199, - 14.338300927510135, - 14.504520772453223, - 14.511046618758497, - 14.366673895188903, - 14.074209699197604, - 13.655583936899747, - 13.113660551169774, - 12.48330488162548, - 11.769785427696238, - 10.997942770966672, - 10.181806967738044, - 9.326365152072029, - 8.460129285926309, - 7.575205422361567, - 6.7115537042266284, - 5.861692171340667, - 5.05998217842325, - 4.319265493206444, - 3.6475442921500205, - 3.0756528218423758, - 2.590016136466926, - 2.2095049441276466, - 1.9184259834906632, - 1.7108375779343772, - 1.5766132157988528, - 1.5027038490601592, - 1.481756352904369, - 1.5079880141804891, - 1.576512555620154, - 1.686987372576995, - 1.837272618459618, - 2.0216420618234654, - 2.2384181319096075, - 2.469875064803023, - 2.711834449269574, - 2.943451485123214, - 3.1559404416880317, - 3.3404552930852645, - 3.487696482413649, - 3.6009342183695674, - 3.67820526764321, - 3.726512298259736, - 3.750324363986817, - 3.754596165445902, - 3.7424659512227803, - 3.7159620620142952, - 3.674698037531881, - 3.6202417602781805, - 3.552218828804072, - 3.4736303942337226, - 3.3879163577156293, - 3.2975668821813193, - 3.209265549316813, - 3.1230055431672348, - 3.0433509903567684, - 2.968667115675214, - 2.89804771508427, - 2.830498603384411, - 2.7633209608904115, - 2.6979732382471666, - 2.6341276551227577, - 2.575267022919146, - 2.523131049250598, - 2.4803531074735172, - 2.447814645368302, - 2.424613275847145, - 2.408910245536389, - 2.397055514704562, - 2.3860703158310166, - 2.37354517349727, - 2.358781320736128, - 2.3432610840853956, - 2.329286846636976, - 2.320834818934411 - ], - "pressure:branch4_seg1:J9": [ - 108858.22145996656, - 108571.39353457, - 108347.25791965831, - 108185.71265587135, - 108098.17922380372, - 108091.92285155052, - 108201.69843441012, - 108481.661721192, - 108985.74735000773, - 109824.2578075033, - 111030.63108615328, - 112728.6902243463, - 114915.54231978774, - 117637.22939178416, - 120893.26840528488, - 124530.54330610644, - 128646.87844915771, - 132930.96678867066, - 137485.5640762271, - 142038.77909488278, - 146491.37755816302, - 150842.50083744767, - 154793.61895158445, - 158449.01374714304, - 161518.94996563016, - 164025.13861741486, - 165877.49934201705, - 167021.75086965293, - 167474.5196660985, - 167263.8074996884, - 166401.55031124695, - 165035.47707232306, - 163170.13340480244, - 160929.35808568526, - 158438.94473489566, - 155613.23032820114, - 152703.6829752855, - 149529.03850901552, - 146332.27734538226, - 143084.9050229073, - 139823.07179924945, - 136744.05866191292, - 133752.64509520956, - 131125.38182371957, - 128756.15029888172, - 126772.15799798633, - 125132.40404709413, - 123799.6686616849, - 122773.92210366676, - 121945.98075785236, - 121316.86873909485, - 120828.89827852188, - 120483.79138182808, - 120279.12790025772, - 120235.7518034848, - 120346.69507710171, - 120641.77472016237, - 121062.32433284273, - 121598.70341280631, - 122181.30741163391, - 122740.82631844642, - 123250.07891407558, - 123615.49617400939, - 123868.49748917272, - 123963.86317204325, - 123945.02277267243, - 123825.59397480669, - 123630.24992303786, - 123387.72000876693, - 123100.70604243968, - 122770.35907735139, - 122390.92699191444, - 121953.9718696242, - 121455.73769169263, - 120909.02387145879, - 120315.3023131096, - 119713.1654688251, - 119104.41811464759, - 118518.01771764415, - 117953.86754833894, - 117407.20717723774, - 116879.17403889283, - 116340.96000757703, - 115800.67007154258, - 115241.28912690148, - 114679.66834543372, - 114128.67657905129, - 113597.40507267904, - 113111.83509899542, - 112665.25444506032, - 112265.74871370304, - 111894.80235015402, - 111535.66852099562, - 111171.29818723924, - 110788.2599818266, - 110385.72930552042, - 109970.42468563774, - 109560.71841207914, - 109174.80871167072, - 108858.22145996656 - ], - "flow:J9:branch4_seg2": [ - 2.320834818934411, - 2.320882863843716, - 2.332400222599967, - 2.357073158549272, - 2.397127860532315, - 2.453958849771441, - 2.5336028025550643, - 2.641161121713524, - 2.7899212618831473, - 2.9921843653998024, - 3.2619666680449475, - 3.620490598588608, - 4.068578585594895, - 4.628986240545979, - 5.285458930569, - 6.039805794816082, - 6.878027445269111, - 7.769061845992541, - 8.70859980655802, - 9.644424934553793, - 10.571763960991582, - 11.44394362115064, - 12.2498531544496, - 12.961268482049363, - 13.55511644374054, - 14.022820739279199, - 14.338300927510135, - 14.504520772453223, - 14.511046618758497, - 14.366673895188903, - 14.074209699197604, - 13.655583936899747, - 13.113660551169774, - 12.48330488162548, - 11.769785427696238, - 10.997942770966672, - 10.181806967738044, - 9.326365152072029, - 8.460129285926309, - 7.575205422361567, - 6.7115537042266284, - 5.861692171340667, - 5.05998217842325, - 4.319265493206444, - 3.6475442921500205, - 3.0756528218423758, - 2.590016136466926, - 2.2095049441276466, - 1.9184259834906632, - 1.7108375779343772, - 1.5766132157988528, - 1.5027038490601592, - 1.481756352904369, - 1.5079880141804891, - 1.576512555620154, - 1.686987372576995, - 1.837272618459618, - 2.0216420618234654, - 2.2384181319096075, - 2.469875064803023, - 2.711834449269574, - 2.943451485123214, - 3.1559404416880317, - 3.3404552930852645, - 3.487696482413649, - 3.6009342183695674, - 3.67820526764321, - 3.726512298259736, - 3.750324363986817, - 3.754596165445902, - 3.7424659512227803, - 3.7159620620142952, - 3.674698037531881, - 3.6202417602781805, - 3.552218828804072, - 3.4736303942337226, - 3.3879163577156293, - 3.2975668821813193, - 3.209265549316813, - 3.1230055431672348, - 3.0433509903567684, - 2.968667115675214, - 2.89804771508427, - 2.830498603384411, - 2.7633209608904115, - 2.6979732382471666, - 2.6341276551227577, - 2.575267022919146, - 2.523131049250598, - 2.4803531074735172, - 2.447814645368302, - 2.424613275847145, - 2.408910245536389, - 2.397055514704562, - 2.3860703158310166, - 2.37354517349727, - 2.358781320736128, - 2.3432610840853956, - 2.329286846636976, - 2.320834818934411 - ], - "pressure:J9:branch4_seg2": [ - 108858.22145996656, - 108571.39353457, - 108347.25791965831, - 108185.71265587135, - 108098.17922380372, - 108091.92285155052, - 108201.69843441012, - 108481.661721192, - 108985.74735000773, - 109824.2578075033, - 111030.63108615328, - 112728.6902243463, - 114915.54231978774, - 117637.22939178416, - 120893.26840528488, - 124530.54330610644, - 128646.87844915771, - 132930.96678867066, - 137485.5640762271, - 142038.77909488278, - 146491.37755816302, - 150842.50083744767, - 154793.61895158445, - 158449.01374714304, - 161518.94996563016, - 164025.13861741486, - 165877.49934201705, - 167021.75086965293, - 167474.5196660985, - 167263.8074996884, - 166401.55031124695, - 165035.47707232306, - 163170.13340480244, - 160929.35808568526, - 158438.94473489566, - 155613.23032820114, - 152703.6829752855, - 149529.03850901552, - 146332.27734538226, - 143084.9050229073, - 139823.07179924945, - 136744.05866191292, - 133752.64509520956, - 131125.38182371957, - 128756.15029888172, - 126772.15799798633, - 125132.40404709413, - 123799.6686616849, - 122773.92210366676, - 121945.98075785236, - 121316.86873909485, - 120828.89827852188, - 120483.79138182808, - 120279.12790025772, - 120235.7518034848, - 120346.69507710171, - 120641.77472016237, - 121062.32433284273, - 121598.70341280631, - 122181.30741163391, - 122740.82631844642, - 123250.07891407558, - 123615.49617400939, - 123868.49748917272, - 123963.86317204325, - 123945.02277267243, - 123825.59397480669, - 123630.24992303786, - 123387.72000876693, - 123100.70604243968, - 122770.35907735139, - 122390.92699191444, - 121953.9718696242, - 121455.73769169263, - 120909.02387145879, - 120315.3023131096, - 119713.1654688251, - 119104.41811464759, - 118518.01771764415, - 117953.86754833894, - 117407.20717723774, - 116879.17403889283, - 116340.96000757703, - 115800.67007154258, - 115241.28912690148, - 114679.66834543372, - 114128.67657905129, - 113597.40507267904, - 113111.83509899542, - 112665.25444506032, - 112265.74871370304, - 111894.80235015402, - 111535.66852099562, - 111171.29818723924, - 110788.2599818266, - 110385.72930552042, - 109970.42468563774, - 109560.71841207914, - 109174.80871167072, - 108858.22145996656 - ], - "flow:branch5_seg0:J10": [ - 5.438466509060354, - 5.483927911643522, - 5.574955310454926, - 5.713251569234083, - 5.901732440635074, - 6.14699515659486, - 6.471489059212345, - 6.905277669363217, - 7.499307021527524, - 8.306186452363557, - 9.376859120169081, - 10.764500330577768, - 12.481373736786797, - 14.549841567700845, - 16.9250411149091, - 19.56452517348155, - 22.39839359055229, - 25.334978487945296, - 28.30445416904323, - 31.186679951989515, - 33.91528871338993, - 36.39145254441101, - 38.552397168092675, - 40.32304546249347, - 41.63463029915475, - 42.445429849358646, - 42.71855488365429, - 42.4457200313754, - 41.63766430675484, - 40.33157520001022, - 38.58109216351579, - 36.47032849488138, - 34.06034589355398, - 31.45269001584246, - 28.7014656157292, - 25.87515632472141, - 23.01573069374268, - 20.15531928294274, - 17.35533905290227, - 14.635245607993388, - 12.068180911357253, - 9.686169419230751, - 7.55970836124547, - 5.743682937204771, - 4.260612806809828, - 3.1347796840797293, - 2.337359992514137, - 1.8429673885083135, - 1.5997244917163609, - 1.5495722448758096, - 1.6448572626982336, - 1.8478552613136419, - 2.138413105511957, - 2.515704631450154, - 2.9807550644147875, - 3.5428594621033476, - 4.199413760671815, - 4.930523314185146, - 5.712258482690314, - 6.493845066296381, - 7.2366805849794655, - 7.890945962030432, - 8.424237742139777, - 8.82340212550653, - 9.087709642582004, - 9.236871477634734, - 9.294299325084044, - 9.286021531651766, - 9.23468349728847, - 9.15223876412662, - 9.042183864520235, - 8.9026896280786, - 8.727520385388791, - 8.517014336231897, - 8.273285218216682, - 8.00818641540079, - 7.73798910268532, - 7.476680363433951, - 7.239147427380323, - 7.028277124632903, - 6.844311904969569, - 6.679003921187025, - 6.5216046105255785, - 6.3642465640097905, - 6.202221474835142, - 6.0407716723868745, - 5.888109761049875, - 5.757136229347714, - 5.657771308317259, - 5.59557587268416, - 5.568302857086043, - 5.5662327034256, - 5.574800873142054, - 5.5791570296143105, - 5.568855355951653, - 5.54069584804538, - 5.499985735586859, - 5.459260736888948, - 5.433769657549267, - 5.438466509060354 - ], - "pressure:branch5_seg0:J10": [ - 109171.08472954556, - 108942.03205260375, - 108784.85983463183, - 108702.97834504582, - 108704.78762398635, - 108810.21370901192, - 109077.58357339524, - 109560.54567642002, - 110369.81995975031, - 111577.99061460822, - 113275.66180503431, - 115538.54270180038, - 118354.43702826154, - 121783.59856066247, - 125678.32254242631, - 130047.10506864703, - 134717.6050170515, - 139601.68027049207, - 144590.3807084715, - 149451.0164583785, - 154192.10859948787, - 158559.21478298982, - 162548.10446161317, - 165964.79511592689, - 168707.4760555212, - 170729.72142573335, - 171943.20355998888, - 172355.12084882628, - 171985.3262574227, - 170879.7717971155, - 169142.19252247325, - 166892.22263421112, - 164187.13868461145, - 161228.22245561532, - 157977.31581714918, - 154604.21865858824, - 151072.45251094128, - 147465.83899688715, - 143899.45988039908, - 140329.63339945502, - 136971.30599467966, - 133775.88139349892, - 130935.27015001976, - 128485.13264194853, - 126437.64387924667, - 124835.42319866533, - 123585.9106651495, - 122674.06057390307, - 122004.19924137238, - 121514.94591006105, - 121160.63510218498, - 120921.84246616763, - 120794.53557956518, - 120810.36103585927, - 120972.63287492425, - 121311.27342536715, - 121803.43403286471, - 122407.13332862486, - 123084.46087995342, - 123732.87853991303, - 124321.29281197157, - 124759.71562653837, - 125034.4708740754, - 125137.74724934863, - 125084.44190500757, - 124915.62701294031, - 124662.2921531342, - 124358.8578914856, - 124023.65228071014, - 123657.66229253383, - 123251.62359901167, - 122796.23838152943, - 122276.95447744196, - 121703.74058714036, - 121079.03576841648, - 120433.88467888966, - 119790.78338444348, - 119167.7052450189, - 118583.52891737976, - 118027.11230692612, - 117497.74118251023, - 116971.00764124896, - 116435.74787054832, - 115882.78666462684, - 115314.52347587087, - 114750.99875453407, - 114204.73314407935, - 113702.482401597, - 113249.83505973408, - 112851.47138683769, - 112494.5730516454, - 112157.01396656463, - 111815.80222672533, - 111451.49581175612, - 111057.22484596299, - 110638.65883405702, - 110213.97776201427, - 109808.40167986408, - 109445.77367377242, - 109171.08472954556 - ], - "flow:J10:branch5_seg1": [ - 5.438466509060354, - 5.483927911643522, - 5.574955310454926, - 5.713251569234083, - 5.901732440635074, - 6.14699515659486, - 6.471489059212345, - 6.905277669363217, - 7.499307021527524, - 8.306186452363557, - 9.376859120169081, - 10.764500330577768, - 12.481373736786797, - 14.549841567700845, - 16.9250411149091, - 19.56452517348155, - 22.39839359055229, - 25.334978487945296, - 28.30445416904323, - 31.186679951989515, - 33.91528871338993, - 36.39145254441101, - 38.552397168092675, - 40.32304546249347, - 41.63463029915475, - 42.445429849358646, - 42.71855488365429, - 42.4457200313754, - 41.63766430675484, - 40.33157520001022, - 38.58109216351579, - 36.47032849488138, - 34.06034589355398, - 31.45269001584246, - 28.7014656157292, - 25.87515632472141, - 23.01573069374268, - 20.15531928294274, - 17.35533905290227, - 14.635245607993388, - 12.068180911357253, - 9.686169419230751, - 7.55970836124547, - 5.743682937204771, - 4.260612806809828, - 3.1347796840797293, - 2.337359992514137, - 1.8429673885083135, - 1.5997244917163609, - 1.5495722448758096, - 1.6448572626982336, - 1.8478552613136419, - 2.138413105511957, - 2.515704631450154, - 2.9807550644147875, - 3.5428594621033476, - 4.199413760671815, - 4.930523314185146, - 5.712258482690314, - 6.493845066296381, - 7.2366805849794655, - 7.890945962030432, - 8.424237742139777, - 8.82340212550653, - 9.087709642582004, - 9.236871477634734, - 9.294299325084044, - 9.286021531651766, - 9.23468349728847, - 9.15223876412662, - 9.042183864520235, - 8.9026896280786, - 8.727520385388791, - 8.517014336231897, - 8.273285218216682, - 8.00818641540079, - 7.73798910268532, - 7.476680363433951, - 7.239147427380323, - 7.028277124632903, - 6.844311904969569, - 6.679003921187025, - 6.5216046105255785, - 6.3642465640097905, - 6.202221474835142, - 6.0407716723868745, - 5.888109761049875, - 5.757136229347714, - 5.657771308317259, - 5.59557587268416, - 5.568302857086043, - 5.5662327034256, - 5.574800873142054, - 5.5791570296143105, - 5.568855355951653, - 5.54069584804538, - 5.499985735586859, - 5.459260736888948, - 5.433769657549267, - 5.438466509060354 - ], - "pressure:J10:branch5_seg1": [ - 109171.08472954556, - 108942.03205260375, - 108784.85983463183, - 108702.97834504582, - 108704.78762398635, - 108810.21370901192, - 109077.58357339524, - 109560.54567642002, - 110369.81995975031, - 111577.99061460822, - 113275.66180503431, - 115538.54270180038, - 118354.43702826154, - 121783.59856066247, - 125678.32254242631, - 130047.10506864703, - 134717.6050170515, - 139601.68027049207, - 144590.3807084715, - 149451.0164583785, - 154192.10859948787, - 158559.21478298982, - 162548.10446161317, - 165964.79511592689, - 168707.4760555212, - 170729.72142573335, - 171943.20355998888, - 172355.12084882628, - 171985.3262574227, - 170879.7717971155, - 169142.19252247325, - 166892.22263421112, - 164187.13868461145, - 161228.22245561532, - 157977.31581714918, - 154604.21865858824, - 151072.45251094128, - 147465.83899688715, - 143899.45988039908, - 140329.63339945502, - 136971.30599467966, - 133775.88139349892, - 130935.27015001976, - 128485.13264194853, - 126437.64387924667, - 124835.42319866533, - 123585.9106651495, - 122674.06057390307, - 122004.19924137238, - 121514.94591006105, - 121160.63510218498, - 120921.84246616763, - 120794.53557956518, - 120810.36103585927, - 120972.63287492425, - 121311.27342536715, - 121803.43403286471, - 122407.13332862486, - 123084.46087995342, - 123732.87853991303, - 124321.29281197157, - 124759.71562653837, - 125034.4708740754, - 125137.74724934863, - 125084.44190500757, - 124915.62701294031, - 124662.2921531342, - 124358.8578914856, - 124023.65228071014, - 123657.66229253383, - 123251.62359901167, - 122796.23838152943, - 122276.95447744196, - 121703.74058714036, - 121079.03576841648, - 120433.88467888966, - 119790.78338444348, - 119167.7052450189, - 118583.52891737976, - 118027.11230692612, - 117497.74118251023, - 116971.00764124896, - 116435.74787054832, - 115882.78666462684, - 115314.52347587087, - 114750.99875453407, - 114204.73314407935, - 113702.482401597, - 113249.83505973408, - 112851.47138683769, - 112494.5730516454, - 112157.01396656463, - 111815.80222672533, - 111451.49581175612, - 111057.22484596299, - 110638.65883405702, - 110213.97776201427, - 109808.40167986408, - 109445.77367377242, - 109171.08472954556 - ], - "flow:branch5_seg1:J11": [ - 5.440566195705784, - 5.48544449010151, - 5.575923469617721, - 5.713592258918615, - 5.901396238572934, - 6.145625724999179, - 6.468651298164089, - 6.900373571188385, - 7.491501902034247, - 8.295105869814385, - 9.361395941403888, - 10.744896538329035, - 12.456878534141353, - 14.521058895286806, - 16.893048842107447, - 19.529087008601877, - 22.361844718878558, - 25.296438730019148, - 28.266303705626196, - 31.149395333681408, - 33.87980032348248, - 36.359393189591245, - 38.52374115820244, - 40.299470919749396, - 41.61607215331639, - 42.43283922981374, - 42.712056274163565, - 42.445514010369166, - 41.64303873144032, - 40.34248094525043, - 38.595958465132085, - 36.489369813432994, - 34.08212980761971, - 31.47638288650461, - 28.727127464414853, - 25.901236919710186, - 23.043397903842777, - 20.182825384944813, - 17.383227580442988, - 14.662396371826038, - 12.093788800227264, - 9.709833831288414, - 7.58004361533876, - 5.761352444912594, - 4.274672902841351, - 3.146086709820939, - 2.3457771691330525, - 1.8490595045967055, - 1.604197332735337, - 1.5527690966748338, - 1.6471982973160813, - 1.849337484688295, - 2.138917797464876, - 2.515036947758017, - 2.978850990370583, - 3.5395589068583124, - 4.195178957871641, - 4.925402528908532, - 5.707041107936786, - 6.488905325334356, - 7.2326076553382075, - 7.888260436691907, - 8.422789483511403, - 8.82336912153777, - 9.08861456628044, - 9.238583273107256, - 9.296515280911711, - 9.288541831495174, - 9.237436476807709, - 9.155262177362893, - 9.045538346281512, - 8.906508971813889, - 8.731814902079437, - 8.52172370031083, - 8.278308165559185, - 8.013218701400442, - 7.742990395016756, - 7.481381993240891, - 7.243634885160207, - 7.032527881745039, - 6.848414732218136, - 6.683165913614836, - 6.525830918917857, - 6.368671592343301, - 6.206687992805557, - 6.045163073377908, - 5.892266693838318, - 5.760882514987027, - 5.661104321163673, - 5.598510544500692, - 5.571004708683918, - 5.568881098212761, - 5.577565888558713, - 5.582143190365899, - 5.572066656623904, - 5.544044408832274, - 5.5032775438130495, - 5.462318364500266, - 5.43639778952469, - 5.440566195705784 - ], - "pressure:branch5_seg1:J11": [ - 109115.73034216104, - 108872.40001539218, - 108699.98830270818, - 108601.40200775092, - 108585.01899138931, - 108667.42244717454, - 108901.98105063358, - 109339.53022360915, - 110082.6926999487, - 111207.16623369766, - 112797.29120601414, - 114937.36956607553, - 117616.04623640738, - 120899.3801127847, - 124656.99679910015, - 128884.12994523541, - 133437.34064832382, - 138205.29490110764, - 143105.24318823582, - 147902.43000381475, - 152595.6690246386, - 156954.64730642756, - 160952.6385266056, - 164422.04759661862, - 167251.45256162714, - 169394.8963771397, - 170764.18821144276, - 171358.5476300904, - 171186.12660985053, - 170292.1405480817, - 168756.4562230861, - 166703.49973034183, - 164176.3727439684, - 161366.75910466287, - 158254.57823959296, - 154985.24920460163, - 151552.83330892056, - 148014.7427652193, - 144495.6687715428, - 140954.64428471183, - 137589.1904580164, - 134370.41174492883, - 131471.04431975284, - 128945.08767273504, - 126806.2560316235, - 125108.24995892693, - 123766.43853447263, - 122772.765478832, - 122035.65046993399, - 121495.04288273132, - 121102.33915929827, - 120831.90634188957, - 120676.84868110722, - 120661.94725581708, - 120792.31789548333, - 121094.72637991254, - 121553.77545957653, - 122129.26259471185, - 122788.81599543881, - 123434.01955068826, - 124032.17969397591, - 124495.37869743606, - 124802.23261212737, - 124942.5622417228, - 124923.88339033042, - 124785.56071794027, - 124555.40453116533, - 124268.69858491719, - 123945.20771123398, - 123588.99863009287, - 123193.31944131822, - 122749.94602755956, - 122244.77331136812, - 121685.27964640243, - 121073.28948418064, - 120435.85750737185, - 119796.24267823639, - 119171.291266113, - 118582.27040178432, - 118019.97851296085, - 117485.48501816952, - 116956.98857807265, - 116422.33065538481, - 115872.83299967548, - 115307.50113653636, - 114744.65638940288, - 114195.89284842234, - 113686.4207971659, - 113224.28356892105, - 112814.96834213659, - 112448.6991221768, - 112105.5193915851, - 111763.1710796931, - 111402.08386085716, - 111013.38178105924, - 110600.34782618085, - 110178.39107918338, - 109771.12950702393, - 109401.61247544536, - 109115.73034216104 - ], - "flow:J11:branch5_seg2": [ - 5.440566195705784, - 5.48544449010151, - 5.575923469617721, - 5.713592258918615, - 5.901396238572934, - 6.145625724999179, - 6.468651298164089, - 6.900373571188385, - 7.491501902034247, - 8.295105869814385, - 9.361395941403888, - 10.744896538329035, - 12.456878534141353, - 14.521058895286806, - 16.893048842107447, - 19.529087008601877, - 22.361844718878558, - 25.296438730019148, - 28.266303705626196, - 31.149395333681408, - 33.87980032348248, - 36.359393189591245, - 38.52374115820244, - 40.299470919749396, - 41.61607215331639, - 42.43283922981374, - 42.712056274163565, - 42.445514010369166, - 41.64303873144032, - 40.34248094525043, - 38.595958465132085, - 36.489369813432994, - 34.08212980761971, - 31.47638288650461, - 28.727127464414853, - 25.901236919710186, - 23.043397903842777, - 20.182825384944813, - 17.383227580442988, - 14.662396371826038, - 12.093788800227264, - 9.709833831288414, - 7.58004361533876, - 5.761352444912594, - 4.274672902841351, - 3.146086709820939, - 2.3457771691330525, - 1.8490595045967055, - 1.604197332735337, - 1.5527690966748338, - 1.6471982973160813, - 1.849337484688295, - 2.138917797464876, - 2.515036947758017, - 2.978850990370583, - 3.5395589068583124, - 4.195178957871641, - 4.925402528908532, - 5.707041107936786, - 6.488905325334356, - 7.2326076553382075, - 7.888260436691907, - 8.422789483511403, - 8.82336912153777, - 9.08861456628044, - 9.238583273107256, - 9.296515280911711, - 9.288541831495174, - 9.237436476807709, - 9.155262177362893, - 9.045538346281512, - 8.906508971813889, - 8.731814902079437, - 8.52172370031083, - 8.278308165559185, - 8.013218701400442, - 7.742990395016756, - 7.481381993240891, - 7.243634885160207, - 7.032527881745039, - 6.848414732218136, - 6.683165913614836, - 6.525830918917857, - 6.368671592343301, - 6.206687992805557, - 6.045163073377908, - 5.892266693838318, - 5.760882514987027, - 5.661104321163673, - 5.598510544500692, - 5.571004708683918, - 5.568881098212761, - 5.577565888558713, - 5.582143190365899, - 5.572066656623904, - 5.544044408832274, - 5.5032775438130495, - 5.462318364500266, - 5.43639778952469, - 5.440566195705784 - ], - "pressure:J11:branch5_seg2": [ - 109115.73034216104, - 108872.40001539218, - 108699.98830270818, - 108601.40200775092, - 108585.01899138931, - 108667.42244717454, - 108901.98105063358, - 109339.53022360915, - 110082.6926999487, - 111207.16623369766, - 112797.29120601414, - 114937.36956607553, - 117616.04623640738, - 120899.3801127847, - 124656.99679910015, - 128884.12994523541, - 133437.34064832382, - 138205.29490110764, - 143105.24318823582, - 147902.43000381475, - 152595.6690246386, - 156954.64730642756, - 160952.6385266056, - 164422.04759661862, - 167251.45256162714, - 169394.8963771397, - 170764.18821144276, - 171358.5476300904, - 171186.12660985053, - 170292.1405480817, - 168756.4562230861, - 166703.49973034183, - 164176.3727439684, - 161366.75910466287, - 158254.57823959296, - 154985.24920460163, - 151552.83330892056, - 148014.7427652193, - 144495.6687715428, - 140954.64428471183, - 137589.1904580164, - 134370.41174492883, - 131471.04431975284, - 128945.08767273504, - 126806.2560316235, - 125108.24995892693, - 123766.43853447263, - 122772.765478832, - 122035.65046993399, - 121495.04288273132, - 121102.33915929827, - 120831.90634188957, - 120676.84868110722, - 120661.94725581708, - 120792.31789548333, - 121094.72637991254, - 121553.77545957653, - 122129.26259471185, - 122788.81599543881, - 123434.01955068826, - 124032.17969397591, - 124495.37869743606, - 124802.23261212737, - 124942.5622417228, - 124923.88339033042, - 124785.56071794027, - 124555.40453116533, - 124268.69858491719, - 123945.20771123398, - 123588.99863009287, - 123193.31944131822, - 122749.94602755956, - 122244.77331136812, - 121685.27964640243, - 121073.28948418064, - 120435.85750737185, - 119796.24267823639, - 119171.291266113, - 118582.27040178432, - 118019.97851296085, - 117485.48501816952, - 116956.98857807265, - 116422.33065538481, - 115872.83299967548, - 115307.50113653636, - 114744.65638940288, - 114195.89284842234, - 113686.4207971659, - 113224.28356892105, - 112814.96834213659, - 112448.6991221768, - 112105.5193915851, - 111763.1710796931, - 111402.08386085716, - 111013.38178105924, - 110600.34782618085, - 110178.39107918338, - 109771.12950702393, - 109401.61247544536, - 109115.73034216104 - ], - "flow:branch6_seg0:J12": [ - 3.4560121437287865, - 3.487445577866872, - 3.548994978194616, - 3.640665331472727, - 3.7644831255517293, - 3.923913181306726, - 4.133997695813696, - 4.415309988011613, - 4.8002171963328975, - 5.326173067949756, - 6.02237094745514, - 6.9270631539922185, - 8.043195975552555, - 9.385522428632358, - 10.925110814904295, - 12.624545975049278, - 14.449815738515115, - 16.324706896310694, - 18.220999291727505, - 20.048743777942402, - 21.7701412496407, - 23.327832570367665, - 24.67108068061538, - 25.767974322919414, - 26.560481057250996, - 27.032455099283077, - 27.157816734284417, - 26.933303093131038, - 26.367229098633935, - 25.487746189172547, - 24.32586731987391, - 22.945383476587608, - 21.378791815338896, - 19.695260046713887, - 17.932643069684318, - 16.12312779729182, - 14.308122646222508, - 12.48798384005257, - 10.717644734642507, - 9.000173940520158, - 7.382057390277879, - 5.891578442952457, - 4.5616028922766345, - 3.4415764756874796, - 2.53375613228727, - 1.8581502589265666, - 1.3909880108756045, - 1.1139905285164136, - 0.9927240061008586, - 0.988049515774889, - 1.068978274232255, - 1.212339898728523, - 1.4070449932537685, - 1.653535817111023, - 1.9559655475209532, - 2.3188552105323565, - 2.7439462180842744, - 3.2147346748803556, - 3.716998154364755, - 4.216137381978279, - 4.6858976105386505, - 5.09606240467933, - 5.423348822977064, - 5.663476816595046, - 5.8155052432972125, - 5.895506927353144, - 5.91872504634383, - 5.903358816347431, - 5.86339165715371, - 5.806461028104203, - 5.7333876425048125, - 5.642248682127456, - 5.528391029739775, - 5.3913915831923145, - 5.233571611469516, - 5.06189132167693, - 4.8888377186149246, - 4.722436034473444, - 4.573237049340613, - 4.442119361145153, - 4.328625300667707, - 4.227136749469218, - 4.129440723397367, - 4.03108390934967, - 3.9282826579125834, - 3.825643310895803, - 3.7288441594365223, - 3.6464701875040753, - 3.5857873793478836, - 3.5493847689759717, - 3.536098680452203, - 3.538470061010115, - 3.546617234148641, - 3.5505832204690106, - 3.543553836944994, - 3.524049757251075, - 3.496043990337191, - 3.468564793516768, - 3.4518872443696607, - 3.4560121437287865 - ], - "pressure:branch6_seg0:J12": [ - 109076.7356940898, - 108819.14379513562, - 108631.77918031487, - 108517.10248418746, - 108483.38742101654, - 108544.18334142181, - 108747.51786794672, - 109142.22003517371, - 109822.43761032559, - 110868.0837138333, - 112358.23778710044, - 114385.81696738883, - 116944.35286324186, - 120103.90098454387, - 123756.20726051122, - 127881.25229955092, - 132366.42652458613, - 137077.21700871162, - 141953.558481675, - 146760.56066460806, - 151479.13239753054, - 155903.7369771641, - 159977.6104939735, - 163558.4905038126, - 166520.488121373, - 168814.656077662, - 170351.53308877416, - 171120.43080752844, - 171119.48873632724, - 170394.46766946153, - 169005.86866154996, - 167084.88464724537, - 164667.21000570865, - 161935.3890225516, - 158894.20739431036, - 155664.02158168555, - 152272.83655577057, - 148752.19406276915, - 145234.49331751198, - 141685.88227966873, - 138281.52067566666, - 135017.10357408912, - 132040.93739152382, - 129426.7609842596, - 127188.61963814858, - 125388.33184149505, - 123951.2833810056, - 122873.13680941565, - 122068.03825272025, - 121475.8485893286, - 121044.98731339099, - 120743.4822671785, - 120561.4654102988, - 120516.63361816184, - 120616.46163938637, - 120884.08029294446, - 121312.15138525756, - 121862.66458530727, - 122507.91607574132, - 123155.09610423422, - 123767.69655290531, - 124261.07726086979, - 124604.51420419505, - 124785.50942149578, - 124804.23055934883, - 124697.8388812819, - 124491.59020668054, - 124221.5266468464, - 123909.20275065511, - 123562.01797601234, - 123175.79660791084, - 122743.32629458106, - 122251.1125084072, - 121703.76318624361, - 121102.88071649135, - 120471.24403477622, - 119833.09389828598, - 119204.4448101362, - 118608.61486204715, - 118038.99495793683, - 117497.9577524846, - 116966.67355827926, - 116431.72660746872, - 115884.81705531375, - 115321.65182998509, - 114758.50369012577, - 114206.39403908001, - 113688.78753301552, - 113216.48188095937, - 112795.6658329428, - 112419.72983558016, - 112070.83066854498, - 111727.42863959678, - 111369.71127584313, - 110986.70068174484, - 110579.21285178832, - 110159.86342577147, - 109750.6630213877, - 109374.00863863164, - 109076.7356940898 - ], - "flow:J12:branch6_seg1": [ - 3.4560121437287865, - 3.487445577866872, - 3.548994978194616, - 3.640665331472727, - 3.7644831255517293, - 3.923913181306726, - 4.133997695813696, - 4.415309988011613, - 4.8002171963328975, - 5.326173067949756, - 6.02237094745514, - 6.9270631539922185, - 8.043195975552555, - 9.385522428632358, - 10.925110814904295, - 12.624545975049278, - 14.449815738515115, - 16.324706896310694, - 18.220999291727505, - 20.048743777942402, - 21.7701412496407, - 23.327832570367665, - 24.67108068061538, - 25.767974322919414, - 26.560481057250996, - 27.032455099283077, - 27.157816734284417, - 26.933303093131038, - 26.367229098633935, - 25.487746189172547, - 24.32586731987391, - 22.945383476587608, - 21.378791815338896, - 19.695260046713887, - 17.932643069684318, - 16.12312779729182, - 14.308122646222508, - 12.48798384005257, - 10.717644734642507, - 9.000173940520158, - 7.382057390277879, - 5.891578442952457, - 4.5616028922766345, - 3.4415764756874796, - 2.53375613228727, - 1.8581502589265666, - 1.3909880108756045, - 1.1139905285164136, - 0.9927240061008586, - 0.988049515774889, - 1.068978274232255, - 1.212339898728523, - 1.4070449932537685, - 1.653535817111023, - 1.9559655475209532, - 2.3188552105323565, - 2.7439462180842744, - 3.2147346748803556, - 3.716998154364755, - 4.216137381978279, - 4.6858976105386505, - 5.09606240467933, - 5.423348822977064, - 5.663476816595046, - 5.8155052432972125, - 5.895506927353144, - 5.91872504634383, - 5.903358816347431, - 5.86339165715371, - 5.806461028104203, - 5.7333876425048125, - 5.642248682127456, - 5.528391029739775, - 5.3913915831923145, - 5.233571611469516, - 5.06189132167693, - 4.8888377186149246, - 4.722436034473444, - 4.573237049340613, - 4.442119361145153, - 4.328625300667707, - 4.227136749469218, - 4.129440723397367, - 4.03108390934967, - 3.9282826579125834, - 3.825643310895803, - 3.7288441594365223, - 3.6464701875040753, - 3.5857873793478836, - 3.5493847689759717, - 3.536098680452203, - 3.538470061010115, - 3.546617234148641, - 3.5505832204690106, - 3.543553836944994, - 3.524049757251075, - 3.496043990337191, - 3.468564793516768, - 3.4518872443696607, - 3.4560121437287865 - ], - "pressure:J12:branch6_seg1": [ - 109076.7356940898, - 108819.14379513562, - 108631.77918031487, - 108517.10248418746, - 108483.38742101654, - 108544.18334142181, - 108747.51786794672, - 109142.22003517371, - 109822.43761032559, - 110868.0837138333, - 112358.23778710044, - 114385.81696738883, - 116944.35286324186, - 120103.90098454387, - 123756.20726051122, - 127881.25229955092, - 132366.42652458613, - 137077.21700871162, - 141953.558481675, - 146760.56066460806, - 151479.13239753054, - 155903.7369771641, - 159977.6104939735, - 163558.4905038126, - 166520.488121373, - 168814.656077662, - 170351.53308877416, - 171120.43080752844, - 171119.48873632724, - 170394.46766946153, - 169005.86866154996, - 167084.88464724537, - 164667.21000570865, - 161935.3890225516, - 158894.20739431036, - 155664.02158168555, - 152272.83655577057, - 148752.19406276915, - 145234.49331751198, - 141685.88227966873, - 138281.52067566666, - 135017.10357408912, - 132040.93739152382, - 129426.7609842596, - 127188.61963814858, - 125388.33184149505, - 123951.2833810056, - 122873.13680941565, - 122068.03825272025, - 121475.8485893286, - 121044.98731339099, - 120743.4822671785, - 120561.4654102988, - 120516.63361816184, - 120616.46163938637, - 120884.08029294446, - 121312.15138525756, - 121862.66458530727, - 122507.91607574132, - 123155.09610423422, - 123767.69655290531, - 124261.07726086979, - 124604.51420419505, - 124785.50942149578, - 124804.23055934883, - 124697.8388812819, - 124491.59020668054, - 124221.5266468464, - 123909.20275065511, - 123562.01797601234, - 123175.79660791084, - 122743.32629458106, - 122251.1125084072, - 121703.76318624361, - 121102.88071649135, - 120471.24403477622, - 119833.09389828598, - 119204.4448101362, - 118608.61486204715, - 118038.99495793683, - 117497.9577524846, - 116966.67355827926, - 116431.72660746872, - 115884.81705531375, - 115321.65182998509, - 114758.50369012577, - 114206.39403908001, - 113688.78753301552, - 113216.48188095937, - 112795.6658329428, - 112419.72983558016, - 112070.83066854498, - 111727.42863959678, - 111369.71127584313, - 110986.70068174484, - 110579.21285178832, - 110159.86342577147, - 109750.6630213877, - 109374.00863863164, - 109076.7356940898 - ], - "flow:branch6_seg1:J13": [ - 3.4581516196976545, - 3.489075035201876, - 3.5501248206718987, - 3.6412332928615756, - 3.764445814992384, - 3.9230430856737346, - 4.131909900494146, - 4.411573531450185, - 4.7940639761486645, - 5.317220963878069, - 6.009726646777072, - 6.91060091711855, - 8.022557958772689, - 9.360813989977911, - 10.89729899758972, - 12.593401838447555, - 14.417176756454284, - 16.290152808278258, - 18.186265958954248, - 20.014640929885765, - 21.73723919311545, - 23.297724149495384, - 24.643580149353877, - 25.74470347178492, - 26.541509632192408, - 27.01855967431889, - 27.149307137372283, - 26.930316995852387, - 26.369403205700294, - 25.49502874688309, - 24.33716719598033, - 22.960608921289257, - 21.39699075129902, - 19.715483888798012, - 17.95502224799082, - 16.14624004043965, - 14.332904343782019, - 12.513066006213457, - 10.743094065899651, - 9.025444137111375, - 7.406043786289053, - 5.914321055929614, - 4.581622123641591, - 3.4592357655224952, - 2.5483611024822435, - 1.869954050549008, - 1.4001044519247694, - 1.1207468561166265, - 0.9977259553491372, - 0.9917049261352948, - 1.0716487658454117, - 1.214125791576265, - 1.407949641228853, - 1.6533585745344803, - 1.9547147305743062, - 2.316311313025555, - 2.740430370319145, - 3.210353793705508, - 3.7122477623908496, - 4.21153536518905, - 4.681831730265264, - 5.093108438709398, - 5.421474091296055, - 5.662855663435937, - 5.81586186566315, - 5.896699281253381, - 5.920486787643453, - 5.905505986176795, - 5.865793671313148, - 5.809124668884357, - 5.736351080438208, - 5.645595532304564, - 5.532181433878163, - 5.395561768355927, - 5.238087127057799, - 5.066499113099056, - 4.893468868100485, - 4.7268843015238025, - 4.577479665762918, - 4.44615387735903, - 4.33249292142527, - 4.231006078662385, - 4.133345666009888, - 4.035138975735349, - 3.9324034009915048, - 3.829729067353132, - 3.7327742559074664, - 3.6500734094457084, - 3.5890465063609476, - 3.552266906423365, - 3.538724451631965, - 3.540977599316275, - 3.5491621122574966, - 3.5532843638958393, - 3.546445669183234, - 3.5270905078137513, - 3.4990927235352376, - 3.4714644954647094, - 3.45446381280775, - 3.4581516196976545 - ], - "pressure:branch6_seg1:J13": [ - 109008.64927189425, - 108736.08479449873, - 108532.84593581359, - 108401.11894567987, - 108348.53613759161, - 108386.08727537372, - 108554.89876715552, - 108902.73379080411, - 109512.99761389007, - 110470.26033236491, - 111848.10747878335, - 113743.11229209324, - 116160.09698012887, - 119160.62464864431, - 122668.80854050709, - 126640.11308037977, - 130993.96168394419, - 135579.2991666889, - 140347.34983131438, - 145082.56737474535, - 149736.09273245992, - 154142.9100769048, - 158213.16087240845, - 161839.17306696795, - 164883.98833224812, - 167298.14918822845, - 168995.20815569384, - 169952.44479402268, - 170160.26260485116, - 169657.0051045336, - 168486.43717752857, - 166771.94635309596, - 164549.64819870944, - 161975.72802864463, - 159087.26249658887, - 155971.13528887133, - 152689.11415929394, - 149249.7861973447, - 145783.54395953068, - 142274.83376149205, - 138863.97395939127, - 135584.48537258894, - 132549.2026662195, - 129860.80215683205, - 127534.13309897031, - 125635.83346732857, - 124111.4007665808, - 122950.71785764137, - 122082.44801178966, - 121441.74756431545, - 120974.9059260298, - 120644.23402150374, - 120435.41633477696, - 120359.45947378674, - 120427.0208068615, - 120656.27169820566, - 121049.29908067267, - 121570.8388706377, - 122195.62986588087, - 122841.00993533, - 123461.43169010105, - 123981.27179107499, - 124356.79612284078, - 124574.58139747854, - 124628.40532265545, - 124551.02482195642, - 124367.42917084019, - 124112.81131480349, - 123811.034971302, - 123473.10838786329, - 123097.08996177276, - 122676.8443862335, - 122199.77171054608, - 121666.59794302793, - 121079.54356165118, - 120455.96590495747, - 119821.2616688543, - 119191.1882804816, - 118589.73018419182, - 118014.9026286215, - 117468.57346088481, - 116936.31718926835, - 116402.95039368916, - 115860.17938533865, - 115301.13246979954, - 114738.80881715243, - 114184.53928991567, - 113659.37966178067, - 113177.35638659504, - 112745.22280288476, - 112359.886524335, - 112005.51256216862, - 111661.57025752559, - 111307.7762849036, - 110931.05574243487, - 110529.62488234721, - 110113.19478130776, - 109701.98175270253, - 109317.95198697508, - 109008.64927189425 - ], - "flow:J13:branch6_seg2": [ - 3.4581516196976545, - 3.489075035201876, - 3.5501248206718987, - 3.6412332928615756, - 3.764445814992384, - 3.9230430856737346, - 4.131909900494146, - 4.411573531450185, - 4.7940639761486645, - 5.317220963878069, - 6.009726646777072, - 6.91060091711855, - 8.022557958772689, - 9.360813989977911, - 10.89729899758972, - 12.593401838447555, - 14.417176756454284, - 16.290152808278258, - 18.186265958954248, - 20.014640929885765, - 21.73723919311545, - 23.297724149495384, - 24.643580149353877, - 25.74470347178492, - 26.541509632192408, - 27.01855967431889, - 27.149307137372283, - 26.930316995852387, - 26.369403205700294, - 25.49502874688309, - 24.33716719598033, - 22.960608921289257, - 21.39699075129902, - 19.715483888798012, - 17.95502224799082, - 16.14624004043965, - 14.332904343782019, - 12.513066006213457, - 10.743094065899651, - 9.025444137111375, - 7.406043786289053, - 5.914321055929614, - 4.581622123641591, - 3.4592357655224952, - 2.5483611024822435, - 1.869954050549008, - 1.4001044519247694, - 1.1207468561166265, - 0.9977259553491372, - 0.9917049261352948, - 1.0716487658454117, - 1.214125791576265, - 1.407949641228853, - 1.6533585745344803, - 1.9547147305743062, - 2.316311313025555, - 2.740430370319145, - 3.210353793705508, - 3.7122477623908496, - 4.21153536518905, - 4.681831730265264, - 5.093108438709398, - 5.421474091296055, - 5.662855663435937, - 5.81586186566315, - 5.896699281253381, - 5.920486787643453, - 5.905505986176795, - 5.865793671313148, - 5.809124668884357, - 5.736351080438208, - 5.645595532304564, - 5.532181433878163, - 5.395561768355927, - 5.238087127057799, - 5.066499113099056, - 4.893468868100485, - 4.7268843015238025, - 4.577479665762918, - 4.44615387735903, - 4.33249292142527, - 4.231006078662385, - 4.133345666009888, - 4.035138975735349, - 3.9324034009915048, - 3.829729067353132, - 3.7327742559074664, - 3.6500734094457084, - 3.5890465063609476, - 3.552266906423365, - 3.538724451631965, - 3.540977599316275, - 3.5491621122574966, - 3.5532843638958393, - 3.546445669183234, - 3.5270905078137513, - 3.4990927235352376, - 3.4714644954647094, - 3.45446381280775, - 3.4581516196976545 - ], - "pressure:J13:branch6_seg2": [ - 109008.64927189425, - 108736.08479449873, - 108532.84593581359, - 108401.11894567987, - 108348.53613759161, - 108386.08727537372, - 108554.89876715552, - 108902.73379080411, - 109512.99761389007, - 110470.26033236491, - 111848.10747878335, - 113743.11229209324, - 116160.09698012887, - 119160.62464864431, - 122668.80854050709, - 126640.11308037977, - 130993.96168394419, - 135579.2991666889, - 140347.34983131438, - 145082.56737474535, - 149736.09273245992, - 154142.9100769048, - 158213.16087240845, - 161839.17306696795, - 164883.98833224812, - 167298.14918822845, - 168995.20815569384, - 169952.44479402268, - 170160.26260485116, - 169657.0051045336, - 168486.43717752857, - 166771.94635309596, - 164549.64819870944, - 161975.72802864463, - 159087.26249658887, - 155971.13528887133, - 152689.11415929394, - 149249.7861973447, - 145783.54395953068, - 142274.83376149205, - 138863.97395939127, - 135584.48537258894, - 132549.2026662195, - 129860.80215683205, - 127534.13309897031, - 125635.83346732857, - 124111.4007665808, - 122950.71785764137, - 122082.44801178966, - 121441.74756431545, - 120974.9059260298, - 120644.23402150374, - 120435.41633477696, - 120359.45947378674, - 120427.0208068615, - 120656.27169820566, - 121049.29908067267, - 121570.8388706377, - 122195.62986588087, - 122841.00993533, - 123461.43169010105, - 123981.27179107499, - 124356.79612284078, - 124574.58139747854, - 124628.40532265545, - 124551.02482195642, - 124367.42917084019, - 124112.81131480349, - 123811.034971302, - 123473.10838786329, - 123097.08996177276, - 122676.8443862335, - 122199.77171054608, - 121666.59794302793, - 121079.54356165118, - 120455.96590495747, - 119821.2616688543, - 119191.1882804816, - 118589.73018419182, - 118014.9026286215, - 117468.57346088481, - 116936.31718926835, - 116402.95039368916, - 115860.17938533865, - 115301.13246979954, - 114738.80881715243, - 114184.53928991567, - 113659.37966178067, - 113177.35638659504, - 112745.22280288476, - 112359.886524335, - 112005.51256216862, - 111661.57025752559, - 111307.7762849036, - 110931.05574243487, - 110529.62488234721, - 110113.19478130776, - 109701.98175270253, - 109317.95198697508, - 109008.64927189425 - ], - "flow:branch7_seg0:J14": [ - 2.955179247893858, - 2.9687188143478416, - 3.0019983691116625, - 3.0570759823323566, - 3.1368317457411905, - 3.2440444018659442, - 3.3894513986549746, - 3.5847646884464135, - 3.8520459587161966, - 4.215517752154295, - 4.696222977105309, - 5.326749063107911, - 6.110660418684763, - 7.0719449763675275, - 8.192305342634793, - 9.458518242610577, - 10.851339376577128, - 12.31654974701374, - 13.842757085465802, - 15.35271086248941, - 16.827399838943702, - 18.206947869518803, - 19.452333215053866, - 20.534675390696183, - 21.400523909142002, - 22.040318794515137, - 22.41711519001883, - 22.52482722820257, - 22.360604443348386, - 21.935391136446547, - 21.265695583275054, - 20.39062860015358, - 19.325392939959492, - 18.12562978958445, - 16.812421611796474, - 15.42098835224412, - 13.985371852650653, - 12.508299926901186, - 11.042350600300717, - 9.58035982191961, - 8.173841404944412, - 6.836471308036177, - 5.598540407729324, - 4.5010527317591436, - 3.5427646029308963, - 2.759513818151712, - 2.136352085793911, - 1.6763738404811086, - 1.361739915299086, - 1.167020167002333, - 1.075528215952272, - 1.0654563419661456, - 1.1252319676186726, - 1.2488591215133265, - 1.431073786912173, - 1.6717385383365397, - 1.9690580593969098, - 2.3112116088291206, - 2.6926809224865575, - 3.0873210922123233, - 3.4805491398521524, - 3.8472564265202216, - 4.168032259296009, - 4.435971992454582, - 4.640615956259955, - 4.789094515804486, - 4.884838881916146, - 4.938095880543369, - 4.958630541061147, - 4.952699537727169, - 4.924454689526711, - 4.875456870559674, - 4.804389308428716, - 4.712984903286679, - 4.602268128307605, - 4.476837622208712, - 4.344447439752197, - 4.209363017531666, - 4.080878770474505, - 3.960049302363074, - 3.8500518687635874, - 3.749040058502811, - 3.652974527934477, - 3.560258175963936, - 3.4670902158987165, - 3.37624412172318, - 3.289270111378452, - 3.2113823393180176, - 3.1469724135832573, - 3.098340069866836, - 3.0666205579257917, - 3.048242386112511, - 3.038666818890838, - 3.0318459653116765, - 3.022730689800693, - 3.008817062706453, - 2.9904947825866546, - 2.971770559964517, - 2.9578687223498927, - 2.955179247893858 - ], - "pressure:branch7_seg0:J14": [ - 109088.32974572212, - 108831.93855369886, - 108643.88198237665, - 108525.32742076262, - 108486.25258565701, - 108539.75441039767, - 108735.6384199583, - 109124.57610829227, - 109795.60425252285, - 110837.81464111089, - 112312.48741878642, - 114332.86603099157, - 116877.6330583969, - 120020.30458087238, - 123675.40338767502, - 127768.70043139947, - 132265.49710883238, - 136974.30060339524, - 141880.7984014729, - 146741.7270566913, - 151502.3458928932, - 156006.59193519302, - 160135.82805432702, - 163806.66195528096, - 166835.9749727294, - 169200.9828098037, - 170795.96944117546, - 171598.74437283122, - 171628.97258397884, - 170926.86712734387, - 169546.8280125476, - 167636.49793199098, - 165216.29629864334, - 162469.21827284453, - 159441.2505687245, - 156193.21135960953, - 152812.5274744367, - 149273.28440935333, - 145747.19934853984, - 142192.41260429498, - 138771.53501906426, - 135522.08627952487, - 132522.98437157986, - 129919.73520056896, - 127655.12043756325, - 125825.60874694622, - 124361.48470607965, - 123226.05430496462, - 122378.1333962205, - 121721.47107692287, - 121230.23736563582, - 120876.71011143812, - 120646.68238888653, - 120564.59660635395, - 120634.40593265959, - 120872.975754655, - 121282.41783033307, - 121810.30612065452, - 122439.18700481213, - 123071.46355116816, - 123664.72702976395, - 124153.08024546299, - 124483.11661354655, - 124669.1850885258, - 124697.5102298981, - 124604.80957560058, - 124420.274523523, - 124168.81250981885, - 123877.96492931872, - 123550.24426777923, - 123178.4791707696, - 122757.28707102385, - 122272.58877238925, - 121730.66532026838, - 121136.80708259363, - 120509.54260745006, - 119879.84101841332, - 119256.14176471771, - 118664.83496129831, - 118099.252080903, - 117556.58466818919, - 117025.96431236483, - 116485.90358701577, - 115934.58317025554, - 115366.93636864907, - 114799.82747508373, - 114247.17107725177, - 113728.29693714663, - 113256.78766638684, - 112834.49258417827, - 112456.35623059118, - 112102.89535921741, - 111753.53553428616, - 111389.65024182448, - 111000.57235804119, - 110588.9039058101, - 110167.35735155549, - 109758.63952718831, - 109383.81834258424, - 109088.32974572212 - ], - "flow:J14:branch7_seg1": [ - 2.955179247893858, - 2.9687188143478416, - 3.0019983691116625, - 3.0570759823323566, - 3.1368317457411905, - 3.2440444018659442, - 3.3894513986549746, - 3.5847646884464135, - 3.8520459587161966, - 4.215517752154295, - 4.696222977105309, - 5.326749063107911, - 6.110660418684763, - 7.0719449763675275, - 8.192305342634793, - 9.458518242610577, - 10.851339376577128, - 12.31654974701374, - 13.842757085465802, - 15.35271086248941, - 16.827399838943702, - 18.206947869518803, - 19.452333215053866, - 20.534675390696183, - 21.400523909142002, - 22.040318794515137, - 22.41711519001883, - 22.52482722820257, - 22.360604443348386, - 21.935391136446547, - 21.265695583275054, - 20.39062860015358, - 19.325392939959492, - 18.12562978958445, - 16.812421611796474, - 15.42098835224412, - 13.985371852650653, - 12.508299926901186, - 11.042350600300717, - 9.58035982191961, - 8.173841404944412, - 6.836471308036177, - 5.598540407729324, - 4.5010527317591436, - 3.5427646029308963, - 2.759513818151712, - 2.136352085793911, - 1.6763738404811086, - 1.361739915299086, - 1.167020167002333, - 1.075528215952272, - 1.0654563419661456, - 1.1252319676186726, - 1.2488591215133265, - 1.431073786912173, - 1.6717385383365397, - 1.9690580593969098, - 2.3112116088291206, - 2.6926809224865575, - 3.0873210922123233, - 3.4805491398521524, - 3.8472564265202216, - 4.168032259296009, - 4.435971992454582, - 4.640615956259955, - 4.789094515804486, - 4.884838881916146, - 4.938095880543369, - 4.958630541061147, - 4.952699537727169, - 4.924454689526711, - 4.875456870559674, - 4.804389308428716, - 4.712984903286679, - 4.602268128307605, - 4.476837622208712, - 4.344447439752197, - 4.209363017531666, - 4.080878770474505, - 3.960049302363074, - 3.8500518687635874, - 3.749040058502811, - 3.652974527934477, - 3.560258175963936, - 3.4670902158987165, - 3.37624412172318, - 3.289270111378452, - 3.2113823393180176, - 3.1469724135832573, - 3.098340069866836, - 3.0666205579257917, - 3.048242386112511, - 3.038666818890838, - 3.0318459653116765, - 3.022730689800693, - 3.008817062706453, - 2.9904947825866546, - 2.971770559964517, - 2.9578687223498927, - 2.955179247893858 - ], - "pressure:J14:branch7_seg1": [ - 109088.32974572212, - 108831.93855369886, - 108643.88198237665, - 108525.32742076262, - 108486.25258565701, - 108539.75441039767, - 108735.6384199583, - 109124.57610829227, - 109795.60425252285, - 110837.81464111089, - 112312.48741878642, - 114332.86603099157, - 116877.6330583969, - 120020.30458087238, - 123675.40338767502, - 127768.70043139947, - 132265.49710883238, - 136974.30060339524, - 141880.7984014729, - 146741.7270566913, - 151502.3458928932, - 156006.59193519302, - 160135.82805432702, - 163806.66195528096, - 166835.9749727294, - 169200.9828098037, - 170795.96944117546, - 171598.74437283122, - 171628.97258397884, - 170926.86712734387, - 169546.8280125476, - 167636.49793199098, - 165216.29629864334, - 162469.21827284453, - 159441.2505687245, - 156193.21135960953, - 152812.5274744367, - 149273.28440935333, - 145747.19934853984, - 142192.41260429498, - 138771.53501906426, - 135522.08627952487, - 132522.98437157986, - 129919.73520056896, - 127655.12043756325, - 125825.60874694622, - 124361.48470607965, - 123226.05430496462, - 122378.1333962205, - 121721.47107692287, - 121230.23736563582, - 120876.71011143812, - 120646.68238888653, - 120564.59660635395, - 120634.40593265959, - 120872.975754655, - 121282.41783033307, - 121810.30612065452, - 122439.18700481213, - 123071.46355116816, - 123664.72702976395, - 124153.08024546299, - 124483.11661354655, - 124669.1850885258, - 124697.5102298981, - 124604.80957560058, - 124420.274523523, - 124168.81250981885, - 123877.96492931872, - 123550.24426777923, - 123178.4791707696, - 122757.28707102385, - 122272.58877238925, - 121730.66532026838, - 121136.80708259363, - 120509.54260745006, - 119879.84101841332, - 119256.14176471771, - 118664.83496129831, - 118099.252080903, - 117556.58466818919, - 117025.96431236483, - 116485.90358701577, - 115934.58317025554, - 115366.93636864907, - 114799.82747508373, - 114247.17107725177, - 113728.29693714663, - 113256.78766638684, - 112834.49258417827, - 112456.35623059118, - 112102.89535921741, - 111753.53553428616, - 111389.65024182448, - 111000.57235804119, - 110588.9039058101, - 110167.35735155549, - 109758.63952718831, - 109383.81834258424, - 109088.32974572212 - ], - "flow:branch7_seg1:J15": [ - 2.956063323293109, - 2.9693980554256862, - 3.0024768108280684, - 3.0573268843358865, - 3.1368328268737082, - 3.2437212129784316, - 3.3886126395570515, - 3.5832528668851205, - 3.8495155413183664, - 4.211796875519129, - 4.691021340126503, - 5.319946715984867, - 6.102224784712947, - 7.061776422791699, - 8.180863974499351, - 9.445612764389029, - 10.837795024020432, - 12.302360626028415, - 13.828384325404892, - 15.33880893460344, - 16.8136902728367, - 18.19441515849587, - 19.440939444570976, - 20.524955083358375, - 21.39278952297308, - 22.034535762085977, - 22.413546600120718, - 22.52354132844992, - 22.361465864024755, - 21.938385338407617, - 21.270326566383854, - 20.396729185377808, - 19.33274577877767, - 18.133717280724383, - 16.821581135714514, - 15.430449660510652, - 13.995417057160303, - 12.518581201409228, - 11.052524754344667, - 9.5907237772025, - 8.18364806474136, - 6.845816515782418, - 5.606865994843206, - 4.508244810908079, - 3.5488172222792826, - 2.7644126222064775, - 2.1402661659994178, - 1.6793280980864096, - 1.3639814817341767, - 1.1686893555408175, - 1.0767847348639081, - 1.0663638601850367, - 1.125755318042666, - 1.248897631208955, - 1.4306320427173098, - 1.6707441854013185, - 1.9676425777971775, - 2.309491709399064, - 2.690778280789193, - 3.0854988238389733, - 3.478907939105639, - 3.8460510629701097, - 4.167280265055539, - 4.435721076232981, - 4.640773169687335, - 4.789546764186372, - 4.885521764743713, - 4.93892280307506, - 4.959578900630289, - 4.953769356503073, - 4.925651339206933, - 4.876811152329761, - 4.805939764115297, - 4.714695705471266, - 4.604129229728483, - 4.4787416607674055, - 4.346341774527662, - 4.211188834207234, - 4.082611086327796, - 3.9617176211812515, - 3.851658554543295, - 3.7506601869357086, - 3.6546102373671268, - 3.5619460060452917, - 3.4688142883740145, - 3.3779371181311295, - 3.290909796911559, - 3.2128802545288715, - 3.148324378958141, - 3.0995454371463196, - 3.067713966879378, - 3.0493009144168357, - 3.0397464688059834, - 3.0329904997973025, - 3.023950596207552, - 3.0100904536450943, - 2.9917667626224618, - 2.9729742503493504, - 2.9589345228408974, - 2.956063323293109 - ], - "pressure:branch7_seg1:J15": [ - 108980.81386542595, - 108713.29556952183, - 108511.9590547229, - 108377.37542622804, - 108319.8464607403, - 108350.53076766017, - 108514.06066518364, - 108860.67828319772, - 109468.45388586284, - 110431.21951600423, - 111800.65399950401, - 113694.677635602, - 116095.2460099482, - 119066.86026019743, - 122550.96480741016, - 126441.94850904543, - 130750.86880917237, - 135256.36667612538, - 139968.82094459163, - 144655.72524857227, - 149232.6595310642, - 153601.68147608652, - 157602.8936654184, - 161205.58038586305, - 164210.09396074477, - 166598.15369044326, - 168276.51309173545, - 169211.02249626408, - 169424.9360264455, - 168951.21904017523, - 167821.75696396583, - 166178.72692787138, - 164032.2547895139, - 161539.97347496406, - 158777.58470745137, - 155753.12155310911, - 152595.39126338184, - 149239.0561325004, - 145864.14671213255, - 142446.1624898711, - 139106.85209727116, - 135928.21621409946, - 132940.2844083862, - 130325.78351558777, - 128019.7368832345, - 126128.02838730482, - 124601.87013377777, - 123394.22449304498, - 122483.81573295509, - 121767.34371842719, - 121225.97234711325, - 120830.03065446285, - 120562.13089806719, - 120441.12953066602, - 120472.18888622156, - 120666.53538170148, - 121035.40990244062, - 121525.49185573158, - 122122.02304255679, - 122735.00335288375, - 123314.2514157861, - 123806.44616415224, - 124145.8912057823, - 124352.45245662316, - 124404.22375509603, - 124334.1502445035, - 124171.07226502834, - 123936.83757419797, - 123661.64542895935, - 123348.40859511956, - 122990.77759541167, - 122584.28035291526, - 122116.14445012601, - 121590.44570003022, - 121014.04835079817, - 120400.02200094615, - 119781.05554521455, - 119163.394216613, - 118574.22567019987, - 118010.16767339848, - 117466.93854484295, - 116938.52669905117, - 116400.48174176231, - 115853.35390752091, - 115290.00217067223, - 114725.44711085924, - 114174.3059498804, - 113652.14437681685, - 113175.73908503675, - 112745.66790843442, - 112359.98913554383, - 112000.91736216491, - 111648.68429479664, - 111285.3683355308, - 110898.95680367074, - 110490.84203952452, - 110071.73444354025, - 109662.84347469508, - 109284.12467403055, - 108980.81386542595 - ], - "flow:J15:branch7_seg2": [ - 2.956063323293109, - 2.9693980554256862, - 3.0024768108280684, - 3.0573268843358865, - 3.1368328268737082, - 3.2437212129784316, - 3.3886126395570515, - 3.5832528668851205, - 3.8495155413183664, - 4.211796875519129, - 4.691021340126503, - 5.319946715984867, - 6.102224784712947, - 7.061776422791699, - 8.180863974499351, - 9.445612764389029, - 10.837795024020432, - 12.302360626028415, - 13.828384325404892, - 15.33880893460344, - 16.8136902728367, - 18.19441515849587, - 19.440939444570976, - 20.524955083358375, - 21.39278952297308, - 22.034535762085977, - 22.413546600120718, - 22.52354132844992, - 22.361465864024755, - 21.938385338407617, - 21.270326566383854, - 20.396729185377808, - 19.33274577877767, - 18.133717280724383, - 16.821581135714514, - 15.430449660510652, - 13.995417057160303, - 12.518581201409228, - 11.052524754344667, - 9.5907237772025, - 8.18364806474136, - 6.845816515782418, - 5.606865994843206, - 4.508244810908079, - 3.5488172222792826, - 2.7644126222064775, - 2.1402661659994178, - 1.6793280980864096, - 1.3639814817341767, - 1.1686893555408175, - 1.0767847348639081, - 1.0663638601850367, - 1.125755318042666, - 1.248897631208955, - 1.4306320427173098, - 1.6707441854013185, - 1.9676425777971775, - 2.309491709399064, - 2.690778280789193, - 3.0854988238389733, - 3.478907939105639, - 3.8460510629701097, - 4.167280265055539, - 4.435721076232981, - 4.640773169687335, - 4.789546764186372, - 4.885521764743713, - 4.93892280307506, - 4.959578900630289, - 4.953769356503073, - 4.925651339206933, - 4.876811152329761, - 4.805939764115297, - 4.714695705471266, - 4.604129229728483, - 4.4787416607674055, - 4.346341774527662, - 4.211188834207234, - 4.082611086327796, - 3.9617176211812515, - 3.851658554543295, - 3.7506601869357086, - 3.6546102373671268, - 3.5619460060452917, - 3.4688142883740145, - 3.3779371181311295, - 3.290909796911559, - 3.2128802545288715, - 3.148324378958141, - 3.0995454371463196, - 3.067713966879378, - 3.0493009144168357, - 3.0397464688059834, - 3.0329904997973025, - 3.023950596207552, - 3.0100904536450943, - 2.9917667626224618, - 2.9729742503493504, - 2.9589345228408974, - 2.956063323293109 - ], - "pressure:J15:branch7_seg2": [ - 108980.81386542595, - 108713.29556952183, - 108511.9590547229, - 108377.37542622804, - 108319.8464607403, - 108350.53076766017, - 108514.06066518364, - 108860.67828319772, - 109468.45388586284, - 110431.21951600423, - 111800.65399950401, - 113694.677635602, - 116095.2460099482, - 119066.86026019743, - 122550.96480741016, - 126441.94850904543, - 130750.86880917237, - 135256.36667612538, - 139968.82094459163, - 144655.72524857227, - 149232.6595310642, - 153601.68147608652, - 157602.8936654184, - 161205.58038586305, - 164210.09396074477, - 166598.15369044326, - 168276.51309173545, - 169211.02249626408, - 169424.9360264455, - 168951.21904017523, - 167821.75696396583, - 166178.72692787138, - 164032.2547895139, - 161539.97347496406, - 158777.58470745137, - 155753.12155310911, - 152595.39126338184, - 149239.0561325004, - 145864.14671213255, - 142446.1624898711, - 139106.85209727116, - 135928.21621409946, - 132940.2844083862, - 130325.78351558777, - 128019.7368832345, - 126128.02838730482, - 124601.87013377777, - 123394.22449304498, - 122483.81573295509, - 121767.34371842719, - 121225.97234711325, - 120830.03065446285, - 120562.13089806719, - 120441.12953066602, - 120472.18888622156, - 120666.53538170148, - 121035.40990244062, - 121525.49185573158, - 122122.02304255679, - 122735.00335288375, - 123314.2514157861, - 123806.44616415224, - 124145.8912057823, - 124352.45245662316, - 124404.22375509603, - 124334.1502445035, - 124171.07226502834, - 123936.83757419797, - 123661.64542895935, - 123348.40859511956, - 122990.77759541167, - 122584.28035291526, - 122116.14445012601, - 121590.44570003022, - 121014.04835079817, - 120400.02200094615, - 119781.05554521455, - 119163.394216613, - 118574.22567019987, - 118010.16767339848, - 117466.93854484295, - 116938.52669905117, - 116400.48174176231, - 115853.35390752091, - 115290.00217067223, - 114725.44711085924, - 114174.3059498804, - 113652.14437681685, - 113175.73908503675, - 112745.66790843442, - 112359.98913554383, - 112000.91736216491, - 111648.68429479664, - 111285.3683355308, - 110898.95680367074, - 110490.84203952452, - 110071.73444354025, - 109662.84347469508, - 109284.12467403055, - 108980.81386542595 - ], - "flow:branch8_seg0:J16": [ - 2.0993555023322683, - 2.1003672773556943, - 2.1140493923191643, - 2.142312895912188, - 2.1863852764579996, - 2.2481187933966975, - 2.3302317603942404, - 2.4408854006455076, - 2.5899608650884227, - 2.7942006539767643, - 3.071113179785046, - 3.436882932147119, - 3.9113218222969834, - 4.498121269118077, - 5.20828668469476, - 6.027862710808846, - 6.9447077812841576, - 7.940406316473611, - 8.980518832639726, - 10.047826981769422, - 11.094932507320568, - 12.102714791288912, - 13.034381780308834, - 13.863440995165927, - 14.567388449980772, - 15.114145350604547, - 15.49373284961152, - 15.687569993190257, - 15.691196122973329, - 15.507050779850791, - 15.143751701293523, - 14.61691337947309, - 13.953317950288323, - 13.16867903098072, - 12.298955615694824, - 11.360202948276555, - 10.375222255257052, - 9.363661739239815, - 8.332641733541342, - 7.312126311422994, - 6.304239336728989, - 5.338997522908269, - 4.429219290476422, - 3.5965155676309264, - 2.866623476126103, - 2.2424048779027776, - 1.7404968419808617, - 1.3527050955964, - 1.0747955400935336, - 0.8940054086680654, - 0.7917976345145951, - 0.7553438663063676, - 0.7714883263808038, - 0.8323149314079087, - 0.9354318546153946, - 1.0784960399172954, - 1.2619952112662975, - 1.4838662908539184, - 1.7355125899391177, - 2.0100499761205537, - 2.2896828405310465, - 2.5621677330438257, - 2.8109044632402833, - 3.023327930137683, - 3.1951894231482845, - 3.3224922108451644, - 3.4103861010014787, - 3.4639031650084786, - 3.4902048696080006, - 3.496134410016032, - 3.4854681492669575, - 3.460104715471877, - 3.4205889435366448, - 3.365876165518214, - 3.2970544976961684, - 3.2153340240966597, - 3.1245515625733957, - 3.0302939899911356, - 2.9363504978942614, - 2.8482328536632013, - 2.766824749029307, - 2.693056005153654, - 2.6251289251124037, - 2.5599848808015624, - 2.496103744818955, - 2.4318016896973598, - 2.369069236576185, - 2.309921346301749, - 2.2581553064015165, - 2.216825491549956, - 2.187328610908677, - 2.1695571788034917, - 2.160480194402359, - 2.156144168693673, - 2.1521890811183337, - 2.145344115231621, - 2.1344789988769466, - 2.1207585909649547, - 2.1076342162089357, - 2.0993555023322683 - ], - "pressure:branch8_seg0:J16": [ - 108718.50588580406, - 108377.49723439525, - 108086.24997741025, - 107852.3000318542, - 107682.46906460801, - 107585.5590028887, - 107575.74313380959, - 107688.77944337296, - 107964.85953340212, - 108475.80592413641, - 109288.27346994028, - 110475.2114749412, - 112114.78772446232, - 114231.86476104197, - 116882.74831943453, - 120015.3156763001, - 123617.76803862273, - 127609.94611157718, - 131896.36917167532, - 136407.32507288046, - 140968.83545800368, - 145528.7697988078, - 149917.64982496953, - 154055.3505816192, - 157822.85550027422, - 161095.5602633593, - 163818.58578790622, - 165895.41174012018, - 167293.4977310727, - 167998.6788597317, - 168018.07606403794, - 167397.2084556787, - 166207.87741336625, - 164492.6808080793, - 162376.76400683154, - 159885.84752115188, - 157120.060849844, - 154117.41915170886, - 150920.25183526898, - 147631.03116547377, - 144248.3510033866, - 140906.99995215927, - 137634.40497315943, - 134540.53528096608, - 131709.74217942063, - 129167.30556519079, - 126984.90375471808, - 125138.25341516863, - 123632.63141062549, - 122427.02812526753, - 121472.21723775427, - 120732.934664909, - 120173.83364824655, - 119777.5781907828, - 119545.03877606435, - 119472.67484592776, - 119570.93152818311, - 119831.9044763052, - 120229.9570509075, - 120742.01303597826, - 121302.4513232863, - 121872.49029391639, - 122385.73678220635, - 122802.09689343005, - 123100.5844666724, - 123265.89659264087, - 123312.9763981602, - 123254.11556538008, - 123111.71236343747, - 122904.5463487297, - 122641.86507294733, - 122327.09563230503, - 121959.03082826863, - 121531.57962587594, - 121048.37028144665, - 120511.32037125091, - 119935.77198132632, - 119339.32656855867, - 118735.85493922864, - 118144.33541670242, - 117566.43279892039, - 117006.88285505044, - 116457.33558212465, - 115909.28739699333, - 115356.96044085734, - 114796.2396516341, - 114235.9834715896, - 113683.25037785433, - 113154.17070370872, - 112658.54507587584, - 112202.77664455748, - 111786.19579671344, - 111398.0713178781, - 111025.20723037921, - 110652.58143743573, - 110269.75686229242, - 109873.67943736509, - 109469.66449353905, - 109070.74738069685, - 108718.50588580406 - ], - "flow:J16:branch8_seg1": [ - 2.0993555023322683, - 2.1003672773556943, - 2.1140493923191643, - 2.142312895912188, - 2.1863852764579996, - 2.2481187933966975, - 2.3302317603942404, - 2.4408854006455076, - 2.5899608650884227, - 2.7942006539767643, - 3.071113179785046, - 3.436882932147119, - 3.9113218222969834, - 4.498121269118077, - 5.20828668469476, - 6.027862710808846, - 6.9447077812841576, - 7.940406316473611, - 8.980518832639726, - 10.047826981769422, - 11.094932507320568, - 12.102714791288912, - 13.034381780308834, - 13.863440995165927, - 14.567388449980772, - 15.114145350604547, - 15.49373284961152, - 15.687569993190257, - 15.691196122973329, - 15.507050779850791, - 15.143751701293523, - 14.61691337947309, - 13.953317950288323, - 13.16867903098072, - 12.298955615694824, - 11.360202948276555, - 10.375222255257052, - 9.363661739239815, - 8.332641733541342, - 7.312126311422994, - 6.304239336728989, - 5.338997522908269, - 4.429219290476422, - 3.5965155676309264, - 2.866623476126103, - 2.2424048779027776, - 1.7404968419808617, - 1.3527050955964, - 1.0747955400935336, - 0.8940054086680654, - 0.7917976345145951, - 0.7553438663063676, - 0.7714883263808038, - 0.8323149314079087, - 0.9354318546153946, - 1.0784960399172954, - 1.2619952112662975, - 1.4838662908539184, - 1.7355125899391177, - 2.0100499761205537, - 2.2896828405310465, - 2.5621677330438257, - 2.8109044632402833, - 3.023327930137683, - 3.1951894231482845, - 3.3224922108451644, - 3.4103861010014787, - 3.4639031650084786, - 3.4902048696080006, - 3.496134410016032, - 3.4854681492669575, - 3.460104715471877, - 3.4205889435366448, - 3.365876165518214, - 3.2970544976961684, - 3.2153340240966597, - 3.1245515625733957, - 3.0302939899911356, - 2.9363504978942614, - 2.8482328536632013, - 2.766824749029307, - 2.693056005153654, - 2.6251289251124037, - 2.5599848808015624, - 2.496103744818955, - 2.4318016896973598, - 2.369069236576185, - 2.309921346301749, - 2.2581553064015165, - 2.216825491549956, - 2.187328610908677, - 2.1695571788034917, - 2.160480194402359, - 2.156144168693673, - 2.1521890811183337, - 2.145344115231621, - 2.1344789988769466, - 2.1207585909649547, - 2.1076342162089357, - 2.0993555023322683 - ], - "pressure:J16:branch8_seg1": [ - 108718.50588580406, - 108377.49723439525, - 108086.24997741025, - 107852.3000318542, - 107682.46906460801, - 107585.5590028887, - 107575.74313380959, - 107688.77944337296, - 107964.85953340212, - 108475.80592413641, - 109288.27346994028, - 110475.2114749412, - 112114.78772446232, - 114231.86476104197, - 116882.74831943453, - 120015.3156763001, - 123617.76803862273, - 127609.94611157718, - 131896.36917167532, - 136407.32507288046, - 140968.83545800368, - 145528.7697988078, - 149917.64982496953, - 154055.3505816192, - 157822.85550027422, - 161095.5602633593, - 163818.58578790622, - 165895.41174012018, - 167293.4977310727, - 167998.6788597317, - 168018.07606403794, - 167397.2084556787, - 166207.87741336625, - 164492.6808080793, - 162376.76400683154, - 159885.84752115188, - 157120.060849844, - 154117.41915170886, - 150920.25183526898, - 147631.03116547377, - 144248.3510033866, - 140906.99995215927, - 137634.40497315943, - 134540.53528096608, - 131709.74217942063, - 129167.30556519079, - 126984.90375471808, - 125138.25341516863, - 123632.63141062549, - 122427.02812526753, - 121472.21723775427, - 120732.934664909, - 120173.83364824655, - 119777.5781907828, - 119545.03877606435, - 119472.67484592776, - 119570.93152818311, - 119831.9044763052, - 120229.9570509075, - 120742.01303597826, - 121302.4513232863, - 121872.49029391639, - 122385.73678220635, - 122802.09689343005, - 123100.5844666724, - 123265.89659264087, - 123312.9763981602, - 123254.11556538008, - 123111.71236343747, - 122904.5463487297, - 122641.86507294733, - 122327.09563230503, - 121959.03082826863, - 121531.57962587594, - 121048.37028144665, - 120511.32037125091, - 119935.77198132632, - 119339.32656855867, - 118735.85493922864, - 118144.33541670242, - 117566.43279892039, - 117006.88285505044, - 116457.33558212465, - 115909.28739699333, - 115356.96044085734, - 114796.2396516341, - 114235.9834715896, - 113683.25037785433, - 113154.17070370872, - 112658.54507587584, - 112202.77664455748, - 111786.19579671344, - 111398.0713178781, - 111025.20723037921, - 110652.58143743573, - 110269.75686229242, - 109873.67943736509, - 109469.66449353905, - 109070.74738069685, - 108718.50588580406 - ], - "flow:branch8_seg1:J17": [ - 2.101565747420968, - 2.1023100788138707, - 2.115661431311943, - 2.1435638008894684, - 2.187217455603211, - 2.2484831722309218, - 2.3299757842984365, - 2.4397743398764575, - 2.587681262015371, - 2.7902671022886527, - 3.065185962984676, - 3.4283707067086837, - 3.9000445957065093, - 4.483736946250276, - 5.190776176747284, - 6.0076321776825745, - 6.921638808826772, - 7.915527176527697, - 8.953886226737945, - 10.020475352399739, - 11.067542684188941, - 12.075693497380827, - 13.008798262344088, - 13.839539174743575, - 14.546194417479333, - 15.096033230680092, - 15.47921472578111, - 15.67699467994975, - 15.684718479819756, - 15.504648209509002, - 15.145422267299654, - 14.622111202141848, - 13.96189138608015, - 13.18002652283106, - 12.312516505126988, - 11.375950033276759, - 10.392321427971957, - 9.382321156586908, - 8.352081484241372, - 7.332179806241019, - 6.324554056367185, - 5.358929760636482, - 4.448598765607414, - 3.614431467798126, - 2.8830008047760707, - 2.256699825419043, - 1.7527092163050038, - 1.3628737466149778, - 1.0829735125504514, - 0.9005695980742956, - 0.7969100167031077, - 0.7592751923649957, - 0.7743970858521976, - 0.8342500189945902, - 0.9363858923343646, - 1.0784618975018234, - 1.260897893305229, - 1.481876997891866, - 1.7327200385392567, - 2.006777305752164, - 2.2862388900326565, - 2.5588440643577184, - 2.8081038195123784, - 3.0211398506423377, - 3.1938212729690343, - 3.32188064471133, - 3.410460470850569, - 3.464554466892593, - 3.491283827513179, - 3.4975723441763367, - 3.4872299698581113, - 3.4621789355226107, - 3.4230058005968593, - 3.3686462863676496, - 3.300154805434484, - 3.2187359607332335, - 3.128119305201042, - 3.0339649619966, - 2.939985284215416, - 2.8517889247048873, - 2.7702814123466983, - 2.6964096764698984, - 2.6284692291369995, - 2.563320109724761, - 2.499495352548394, - 2.435220367356003, - 2.3724631406086414, - 2.3132330147173135, - 2.261280295196316, - 2.2197304971497527, - 2.1899810503681807, - 2.171998046222534, - 2.162786204090591, - 2.158405176211403, - 2.1544886370471152, - 2.147721742600864, - 2.13693054508091, - 2.1232214420999704, - 2.1100233074684294, - 2.101565747420968 - ], - "pressure:branch8_seg1:J17": [ - 108668.3098640274, - 108320.41381930682, - 108020.19045950714, - 107776.12212281293, - 107594.58089934613, - 107484.37652795143, - 107457.62637072732, - 107546.62350689275, - 107790.34544543801, - 108254.34567640863, - 109008.35704654257, - 110119.99562850836, - 111672.48704801215, - 113692.46580443856, - 116235.81149955283, - 119267.23779611177, - 122759.45228617238, - 126658.59682762419, - 130852.13050614306, - 135285.16755088785, - 139789.3912283695, - 144296.22356666086, - 148664.9921313691, - 152792.4891635093, - 156582.23335201794, - 159901.63840130062, - 162694.12793897017, - 164868.18735460183, - 166382.93192461398, - 167220.2391669488, - 167384.7942333453, - 166907.62985365663, - 165862.07230666155, - 164284.1541241859, - 162287.5700461717, - 159915.76311576032, - 157243.04252404624, - 154332.05634061416, - 151205.37012133762, - 147969.40137242846, - 144631.1396321615, - 141303.97841536195, - 138037.265098729, - 134918.7534796763, - 132051.22311672012, - 129458.48332754639, - 127216.93498487107, - 125312.93246359809, - 123748.89584199028, - 122494.25954709187, - 121496.78047196832, - 120722.30855429986, - 120133.37486601765, - 119709.49936395523, - 119448.83213100891, - 119348.68176406578, - 119416.65947846184, - 119650.65695854092, - 120024.91473989122, - 120519.28258966528, - 121072.30820392788, - 121641.71506009555, - 122166.4142124739, - 122598.60603550516, - 122918.21044977891, - 123105.05814655244, - 123171.6254286331, - 123129.99961806498, - 123000.93272293797, - 122804.83301191348, - 122552.09029279051, - 122246.99375509203, - 121889.3521915293, - 121473.31601639476, - 121000.88646207469, - 120474.30532960805, - 119905.73178766744, - 119313.88002500412, - 118711.66965630194, - 118119.0380441642, - 117539.62540455522, - 116977.90254020362, - 116428.34945596302, - 115880.95868397313, - 115330.808223411, - 114772.11952579781, - 114212.23222524399, - 113658.47978408319, - 113125.15183750489, - 112624.02968316882, - 112161.57221716305, - 111738.9705447973, - 111346.92143209987, - 110972.57045480021, - 110601.01504989597, - 110220.73164418843, - 109827.39551233544, - 109424.70307897632, - 109024.67027737938, - 108668.3098640274 - ], - "flow:J17:branch8_seg2": [ - 2.101565747420968, - 2.1023100788138707, - 2.115661431311943, - 2.1435638008894684, - 2.187217455603211, - 2.2484831722309218, - 2.3299757842984365, - 2.4397743398764575, - 2.587681262015371, - 2.7902671022886527, - 3.065185962984676, - 3.4283707067086837, - 3.9000445957065093, - 4.483736946250276, - 5.190776176747284, - 6.0076321776825745, - 6.921638808826772, - 7.915527176527697, - 8.953886226737945, - 10.020475352399739, - 11.067542684188941, - 12.075693497380827, - 13.008798262344088, - 13.839539174743575, - 14.546194417479333, - 15.096033230680092, - 15.47921472578111, - 15.67699467994975, - 15.684718479819756, - 15.504648209509002, - 15.145422267299654, - 14.622111202141848, - 13.96189138608015, - 13.18002652283106, - 12.312516505126988, - 11.375950033276759, - 10.392321427971957, - 9.382321156586908, - 8.352081484241372, - 7.332179806241019, - 6.324554056367185, - 5.358929760636482, - 4.448598765607414, - 3.614431467798126, - 2.8830008047760707, - 2.256699825419043, - 1.7527092163050038, - 1.3628737466149778, - 1.0829735125504514, - 0.9005695980742956, - 0.7969100167031077, - 0.7592751923649957, - 0.7743970858521976, - 0.8342500189945902, - 0.9363858923343646, - 1.0784618975018234, - 1.260897893305229, - 1.481876997891866, - 1.7327200385392567, - 2.006777305752164, - 2.2862388900326565, - 2.5588440643577184, - 2.8081038195123784, - 3.0211398506423377, - 3.1938212729690343, - 3.32188064471133, - 3.410460470850569, - 3.464554466892593, - 3.491283827513179, - 3.4975723441763367, - 3.4872299698581113, - 3.4621789355226107, - 3.4230058005968593, - 3.3686462863676496, - 3.300154805434484, - 3.2187359607332335, - 3.128119305201042, - 3.0339649619966, - 2.939985284215416, - 2.8517889247048873, - 2.7702814123466983, - 2.6964096764698984, - 2.6284692291369995, - 2.563320109724761, - 2.499495352548394, - 2.435220367356003, - 2.3724631406086414, - 2.3132330147173135, - 2.261280295196316, - 2.2197304971497527, - 2.1899810503681807, - 2.171998046222534, - 2.162786204090591, - 2.158405176211403, - 2.1544886370471152, - 2.147721742600864, - 2.13693054508091, - 2.1232214420999704, - 2.1100233074684294, - 2.101565747420968 - ], - "pressure:J17:branch8_seg2": [ - 108668.3098640274, - 108320.41381930682, - 108020.19045950714, - 107776.12212281293, - 107594.58089934613, - 107484.37652795143, - 107457.62637072732, - 107546.62350689275, - 107790.34544543801, - 108254.34567640863, - 109008.35704654257, - 110119.99562850836, - 111672.48704801215, - 113692.46580443856, - 116235.81149955283, - 119267.23779611177, - 122759.45228617238, - 126658.59682762419, - 130852.13050614306, - 135285.16755088785, - 139789.3912283695, - 144296.22356666086, - 148664.9921313691, - 152792.4891635093, - 156582.23335201794, - 159901.63840130062, - 162694.12793897017, - 164868.18735460183, - 166382.93192461398, - 167220.2391669488, - 167384.7942333453, - 166907.62985365663, - 165862.07230666155, - 164284.1541241859, - 162287.5700461717, - 159915.76311576032, - 157243.04252404624, - 154332.05634061416, - 151205.37012133762, - 147969.40137242846, - 144631.1396321615, - 141303.97841536195, - 138037.265098729, - 134918.7534796763, - 132051.22311672012, - 129458.48332754639, - 127216.93498487107, - 125312.93246359809, - 123748.89584199028, - 122494.25954709187, - 121496.78047196832, - 120722.30855429986, - 120133.37486601765, - 119709.49936395523, - 119448.83213100891, - 119348.68176406578, - 119416.65947846184, - 119650.65695854092, - 120024.91473989122, - 120519.28258966528, - 121072.30820392788, - 121641.71506009555, - 122166.4142124739, - 122598.60603550516, - 122918.21044977891, - 123105.05814655244, - 123171.6254286331, - 123129.99961806498, - 123000.93272293797, - 122804.83301191348, - 122552.09029279051, - 122246.99375509203, - 121889.3521915293, - 121473.31601639476, - 121000.88646207469, - 120474.30532960805, - 119905.73178766744, - 119313.88002500412, - 118711.66965630194, - 118119.0380441642, - 117539.62540455522, - 116977.90254020362, - 116428.34945596302, - 115880.95868397313, - 115330.808223411, - 114772.11952579781, - 114212.23222524399, - 113658.47978408319, - 113125.15183750489, - 112624.02968316882, - 112161.57221716305, - 111738.9705447973, - 111346.92143209987, - 110972.57045480021, - 110601.01504989597, - 110220.73164418843, - 109827.39551233544, - 109424.70307897632, - 109024.67027737938, - 108668.3098640274 - ], - "flow:branch9_seg0:J18": [ - 4.604873812429838, - 4.6269062207733125, - 4.6826218696356205, - 4.774386532493243, - 4.904821981174576, - 5.078284095406396, - 5.308559317381929, - 5.617032010158008, - 6.03735411965671, - 6.610252489928346, - 7.374422234636159, - 8.372016860192868, - 9.621705079531553, - 11.14012306372248, - 12.909644284777212, - 14.896020164921458, - 17.056436345635582, - 19.320161457425222, - 21.633981604801, - 23.910958687070675, - 26.08904065664091, - 28.100753036608843, - 29.88453104001983, - 31.391076382185947, - 32.560675437097395, - 33.35882344474046, - 33.75455031962432, - 33.73440445523508, - 33.301577421972766, - 32.47740361514402, - 31.295443965185132, - 29.812996285817036, - 28.07686628229076, - 26.155177053746133, - 24.099358115473763, - 21.954079520975643, - 19.763028262489787, - 17.546917932821042, - 15.353010736616497, - 13.20327530170648, - 11.142398598917337, - 9.20850597770928, - 7.4436752764784915, - 5.899939878215689, - 4.600722003006551, - 3.56974659102609, - 2.7997415291129086, - 2.274118133437062, - 1.96178607627802, - 1.8212277870847877, - 1.8142886488286851, - 1.9092802131634397, - 2.0857876849922783, - 2.336549060362161, - 2.6608653865747764, - 3.0617693989813355, - 3.5400822720901965, - 4.083322641612269, - 4.67481310139161, - 5.2816530606854615, - 5.871208367805736, - 6.408085104645083, - 6.861842133049857, - 7.217760202506552, - 7.470106968676498, - 7.628458467025293, - 7.708129214017713, - 7.7280772702702185, - 7.706010812178291, - 7.653914357700062, - 7.576935820796616, - 7.475661784673403, - 7.347044881396836, - 7.1901380444095535, - 7.006547945280916, - 6.80268236465033, - 6.590200323831235, - 6.379766784983911, - 6.182979359071357, - 6.004885527012833, - 5.846843015291411, - 5.705104946374174, - 5.5722531378588975, - 5.442193818903743, - 5.310288814376031, - 5.178394588033738, - 5.051645763482318, - 4.938447086904576, - 4.8471756042228265, - 4.782818331222421, - 4.74604164608859, - 4.731340863431263, - 4.729152165532688, - 4.728458210465266, - 4.720207793504, - 4.700075486065988, - 4.6696807140236025, - 4.636486114680019, - 4.61107649312317, - 4.604873812429838 - ], - "pressure:branch9_seg0:J18": [ - 109127.4494217586, - 108889.6903200093, - 108722.28762788839, - 108629.18622840745, - 108618.57120918384, - 108709.29012127787, - 108956.49784625195, - 109411.87807857056, - 110181.69867439276, - 111338.03860099753, - 112970.21029199735, - 115154.78137005342, - 117885.21009476107, - 121221.13765679645, - 125028.87200546963, - 129315.71034005159, - 133917.67189586227, - 138748.8021973306, - 143698.6349418131, - 148545.42759463823, - 153286.7717932987, - 157677.49418796186, - 161706.59089123484, - 165183.3588721421, - 168004.48299152535, - 170119.55174546357, - 171440.05255295953, - 171967.87644318177, - 171718.43689550285, - 170732.35679849944, - 169108.4141186564, - 166960.9330350661, - 164349.47623841057, - 161465.48869060783, - 158280.05925894642, - 154957.8744632568, - 151467.97200511617, - 147894.40788493032, - 144347.621552196, - 140790.9666452792, - 137428.04915388988, - 134217.38030222905, - 131342.93703845804, - 128845.37404578678, - 126740.52070477336, - 125073.02570517806, - 123759.89442963866, - 122785.8433404691, - 122062.42602515302, - 121528.79262925622, - 121139.31203378322, - 120872.55681701434, - 120721.09185300078, - 120713.26851436196, - 120851.37583018569, - 121163.94772466614, - 121630.60229019458, - 122211.91752897062, - 122871.98396886123, - 123513.15114456127, - 124102.81426384953, - 124553.75864735339, - 124848.47054552897, - 124976.36245338438, - 124948.98106859803, - 124803.43258182122, - 124569.91463969198, - 124281.48453949927, - 123957.28788884179, - 123599.90903909304, - 123201.66435607304, - 122754.50117777496, - 122244.59113570192, - 121680.85469103826, - 121065.29269682302, - 120426.91407742872, - 119787.55583234277, - 119165.10140612382, - 118578.48117795672, - 118018.69990346539, - 117485.42606434753, - 116956.2607017993, - 116420.33537977785, - 115868.33424990336, - 115301.94329311907, - 114739.23364485247, - 114192.19456935741, - 113686.41031270784, - 113227.9941402792, - 112822.46236903858, - 112458.5364541407, - 112115.67824740107, - 111771.92685378568, - 111408.02604809673, - 111016.40115987214, - 110601.32037658678, - 110179.2305241809, - 109773.86732797416, - 109408.31880333599, - 109127.4494217586 - ], - "flow:J18:branch9_seg1": [ - 4.604873812429838, - 4.6269062207733125, - 4.6826218696356205, - 4.774386532493243, - 4.904821981174576, - 5.078284095406396, - 5.308559317381929, - 5.617032010158008, - 6.03735411965671, - 6.610252489928346, - 7.374422234636159, - 8.372016860192868, - 9.621705079531553, - 11.14012306372248, - 12.909644284777212, - 14.896020164921458, - 17.056436345635582, - 19.320161457425222, - 21.633981604801, - 23.910958687070675, - 26.08904065664091, - 28.100753036608843, - 29.88453104001983, - 31.391076382185947, - 32.560675437097395, - 33.35882344474046, - 33.75455031962432, - 33.73440445523508, - 33.301577421972766, - 32.47740361514402, - 31.295443965185132, - 29.812996285817036, - 28.07686628229076, - 26.155177053746133, - 24.099358115473763, - 21.954079520975643, - 19.763028262489787, - 17.546917932821042, - 15.353010736616497, - 13.20327530170648, - 11.142398598917337, - 9.20850597770928, - 7.4436752764784915, - 5.899939878215689, - 4.600722003006551, - 3.56974659102609, - 2.7997415291129086, - 2.274118133437062, - 1.96178607627802, - 1.8212277870847877, - 1.8142886488286851, - 1.9092802131634397, - 2.0857876849922783, - 2.336549060362161, - 2.6608653865747764, - 3.0617693989813355, - 3.5400822720901965, - 4.083322641612269, - 4.67481310139161, - 5.2816530606854615, - 5.871208367805736, - 6.408085104645083, - 6.861842133049857, - 7.217760202506552, - 7.470106968676498, - 7.628458467025293, - 7.708129214017713, - 7.7280772702702185, - 7.706010812178291, - 7.653914357700062, - 7.576935820796616, - 7.475661784673403, - 7.347044881396836, - 7.1901380444095535, - 7.006547945280916, - 6.80268236465033, - 6.590200323831235, - 6.379766784983911, - 6.182979359071357, - 6.004885527012833, - 5.846843015291411, - 5.705104946374174, - 5.5722531378588975, - 5.442193818903743, - 5.310288814376031, - 5.178394588033738, - 5.051645763482318, - 4.938447086904576, - 4.8471756042228265, - 4.782818331222421, - 4.74604164608859, - 4.731340863431263, - 4.729152165532688, - 4.728458210465266, - 4.720207793504, - 4.700075486065988, - 4.6696807140236025, - 4.636486114680019, - 4.61107649312317, - 4.604873812429838 - ], - "pressure:J18:branch9_seg1": [ - 109127.4494217586, - 108889.6903200093, - 108722.28762788839, - 108629.18622840745, - 108618.57120918384, - 108709.29012127787, - 108956.49784625195, - 109411.87807857056, - 110181.69867439276, - 111338.03860099753, - 112970.21029199735, - 115154.78137005342, - 117885.21009476107, - 121221.13765679645, - 125028.87200546963, - 129315.71034005159, - 133917.67189586227, - 138748.8021973306, - 143698.6349418131, - 148545.42759463823, - 153286.7717932987, - 157677.49418796186, - 161706.59089123484, - 165183.3588721421, - 168004.48299152535, - 170119.55174546357, - 171440.05255295953, - 171967.87644318177, - 171718.43689550285, - 170732.35679849944, - 169108.4141186564, - 166960.9330350661, - 164349.47623841057, - 161465.48869060783, - 158280.05925894642, - 154957.8744632568, - 151467.97200511617, - 147894.40788493032, - 144347.621552196, - 140790.9666452792, - 137428.04915388988, - 134217.38030222905, - 131342.93703845804, - 128845.37404578678, - 126740.52070477336, - 125073.02570517806, - 123759.89442963866, - 122785.8433404691, - 122062.42602515302, - 121528.79262925622, - 121139.31203378322, - 120872.55681701434, - 120721.09185300078, - 120713.26851436196, - 120851.37583018569, - 121163.94772466614, - 121630.60229019458, - 122211.91752897062, - 122871.98396886123, - 123513.15114456127, - 124102.81426384953, - 124553.75864735339, - 124848.47054552897, - 124976.36245338438, - 124948.98106859803, - 124803.43258182122, - 124569.91463969198, - 124281.48453949927, - 123957.28788884179, - 123599.90903909304, - 123201.66435607304, - 122754.50117777496, - 122244.59113570192, - 121680.85469103826, - 121065.29269682302, - 120426.91407742872, - 119787.55583234277, - 119165.10140612382, - 118578.48117795672, - 118018.69990346539, - 117485.42606434753, - 116956.2607017993, - 116420.33537977785, - 115868.33424990336, - 115301.94329311907, - 114739.23364485247, - 114192.19456935741, - 113686.41031270784, - 113227.9941402792, - 112822.46236903858, - 112458.5364541407, - 112115.67824740107, - 111771.92685378568, - 111408.02604809673, - 111016.40115987214, - 110601.32037658678, - 110179.2305241809, - 109773.86732797416, - 109408.31880333599, - 109127.4494217586 - ], - "flow:branch9_seg1:J19": [ - 4.606315894135713, - 4.627974483947051, - 4.683334494082081, - 4.774691893053761, - 4.904686873393309, - 5.077486957334676, - 5.306825353493955, - 5.613981135732416, - 6.032462010016754, - 6.603272298583498, - 7.364638069126971, - 8.359560020670168, - 9.60609763278808, - 11.121757447560682, - 12.88919084925395, - 14.87334914106115, - 17.03303656402169, - 19.295469117963464, - 21.609471629887963, - 23.88698039421981, - 26.066208108059072, - 28.08006703989296, - 29.865987811755772, - 31.375677238861062, - 32.548403603850744, - 33.3502590657285, - 33.74978038296747, - 33.73358012984305, - 33.30425326762801, - 32.48358468654596, - 31.304168080363414, - 29.824430032729605, - 28.09013929437542, - 26.16977850591266, - 24.1153018260945, - 21.970407711314763, - 19.780478111816105, - 17.564438750193485, - 15.370887753346457, - 13.220801434931653, - 11.159066131483163, - 9.223997457094404, - 7.457128411536394, - 5.911737691079033, - 4.610254866369304, - 3.5775129801576386, - 2.805606655245222, - 2.2784354698211406, - 1.9649974131257746, - 1.8235535577854942, - 1.8160167252089618, - 1.9104173348467544, - 2.0862692153867846, - 2.3362628435146338, - 2.659765061034029, - 3.059760048422511, - 3.537446009066351, - 4.080090930576897, - 4.671479595071421, - 5.278459328445069, - 5.868549561118738, - 6.406295083619416, - 6.860837042829496, - 7.217662434753879, - 7.47062286080131, - 7.629510904667583, - 7.709528846952155, - 7.72969334570513, - 7.707794588135634, - 7.655880532441979, - 7.579119510678183, - 7.47814563212815, - 7.3498361025469, - 7.19320347437784, - 7.009822517823589, - 6.805976617331571, - 6.593488278929248, - 6.382877241666368, - 6.185960075993916, - 6.007714639069114, - 5.849574426109158, - 5.707867919859275, - 5.575051389607059, - 5.445117237006476, - 5.313243486399253, - 5.181306443019692, - 5.054413111942096, - 4.940957252320649, - 4.84942184043332, - 4.78480840867835, - 4.747874319249175, - 4.733129191008362, - 4.731003946917078, - 4.730442427381624, - 4.722332482102754, - 4.7022899104675515, - 4.671865439277071, - 4.638529672893415, - 4.612852785492521, - 4.606315894135713 - ], - "pressure:branch9_seg1:J19": [ - 108969.4997854167, - 108709.65450201157, - 108516.57742640805, - 108394.70183714834, - 108351.77667893225, - 108403.08880920763, - 108595.50178945676, - 108975.70908259533, - 109637.11091964041, - 110651.47032606661, - 112100.86344055973, - 114065.03420961405, - 116545.17358376992, - 119598.85865195299, - 123122.13424558657, - 127109.63454334668, - 131426.03374749323, - 135976.60608184108, - 140664.46235041635, - 145290.35154321906, - 149833.12410723214, - 154084.96447636, - 158018.4378921012, - 161472.48737525792, - 164345.7898673006, - 166588.60398973385, - 168118.67843214894, - 168927.72733757133, - 169017.87606538934, - 168417.75688721932, - 167199.3002186053, - 165461.81141394042, - 163253.22103029588, - 160733.71317479468, - 157893.29179535754, - 154867.85297011692, - 151648.74206620635, - 148302.76328709608, - 144934.40781578398, - 141520.63528444088, - 138234.52616853305, - 135059.26639072798, - 132154.83348310462, - 129581.52335524914, - 127364.64738252274, - 125559.77327877503, - 124106.94428870468, - 122996.17598963367, - 122154.5575186517, - 121523.87604980174, - 121057.57188191287, - 120727.88018486719, - 120520.8215161293, - 120455.42112374061, - 120533.45771005913, - 120778.95213221025, - 121179.36920116824, - 121700.42910895718, - 122312.08406630313, - 122927.72054167597, - 123511.5233864396, - 123983.15949594043, - 124315.57188705467, - 124493.30423595192, - 124519.08445466842, - 124422.7270011732, - 124231.06685869515, - 123974.99810947252, - 123675.25266364239, - 123338.31459588278, - 122960.28629431846, - 122535.56282776785, - 122051.88558933801, - 121514.99878098872, - 120925.94107299393, - 120307.97001664957, - 119681.97407188211, - 119064.84416432613, - 118476.48595034616, - 117912.41192491082, - 117373.81008766292, - 116843.1156429229, - 116309.50266801573, - 115763.87319612887, - 115205.00404633115, - 114646.80470094769, - 114099.89571881082, - 113586.87346888542, - 113116.00282875293, - 112694.37738919572, - 112314.87083476085, - 111960.78915121731, - 111612.40850216302, - 111250.94959337945, - 110866.7829033811, - 110460.72055117648, - 110044.89734611128, - 109639.638248545, - 109266.19300562171, - 108969.4997854167 - ], - "flow:J19:branch9_seg2": [ - 4.606315894135713, - 4.627974483947051, - 4.683334494082081, - 4.774691893053761, - 4.904686873393309, - 5.077486957334676, - 5.306825353493955, - 5.613981135732416, - 6.032462010016754, - 6.603272298583498, - 7.364638069126971, - 8.359560020670168, - 9.60609763278808, - 11.121757447560682, - 12.88919084925395, - 14.87334914106115, - 17.03303656402169, - 19.295469117963464, - 21.609471629887963, - 23.88698039421981, - 26.066208108059072, - 28.08006703989296, - 29.865987811755772, - 31.375677238861062, - 32.548403603850744, - 33.3502590657285, - 33.74978038296747, - 33.73358012984305, - 33.30425326762801, - 32.48358468654596, - 31.304168080363414, - 29.824430032729605, - 28.09013929437542, - 26.16977850591266, - 24.1153018260945, - 21.970407711314763, - 19.780478111816105, - 17.564438750193485, - 15.370887753346457, - 13.220801434931653, - 11.159066131483163, - 9.223997457094404, - 7.457128411536394, - 5.911737691079033, - 4.610254866369304, - 3.5775129801576386, - 2.805606655245222, - 2.2784354698211406, - 1.9649974131257746, - 1.8235535577854942, - 1.8160167252089618, - 1.9104173348467544, - 2.0862692153867846, - 2.3362628435146338, - 2.659765061034029, - 3.059760048422511, - 3.537446009066351, - 4.080090930576897, - 4.671479595071421, - 5.278459328445069, - 5.868549561118738, - 6.406295083619416, - 6.860837042829496, - 7.217662434753879, - 7.47062286080131, - 7.629510904667583, - 7.709528846952155, - 7.72969334570513, - 7.707794588135634, - 7.655880532441979, - 7.579119510678183, - 7.47814563212815, - 7.3498361025469, - 7.19320347437784, - 7.009822517823589, - 6.805976617331571, - 6.593488278929248, - 6.382877241666368, - 6.185960075993916, - 6.007714639069114, - 5.849574426109158, - 5.707867919859275, - 5.575051389607059, - 5.445117237006476, - 5.313243486399253, - 5.181306443019692, - 5.054413111942096, - 4.940957252320649, - 4.84942184043332, - 4.78480840867835, - 4.747874319249175, - 4.733129191008362, - 4.731003946917078, - 4.730442427381624, - 4.722332482102754, - 4.7022899104675515, - 4.671865439277071, - 4.638529672893415, - 4.612852785492521, - 4.606315894135713 - ], - "pressure:J19:branch9_seg2": [ - 108969.4997854167, - 108709.65450201157, - 108516.57742640805, - 108394.70183714834, - 108351.77667893225, - 108403.08880920763, - 108595.50178945676, - 108975.70908259533, - 109637.11091964041, - 110651.47032606661, - 112100.86344055973, - 114065.03420961405, - 116545.17358376992, - 119598.85865195299, - 123122.13424558657, - 127109.63454334668, - 131426.03374749323, - 135976.60608184108, - 140664.46235041635, - 145290.35154321906, - 149833.12410723214, - 154084.96447636, - 158018.4378921012, - 161472.48737525792, - 164345.7898673006, - 166588.60398973385, - 168118.67843214894, - 168927.72733757133, - 169017.87606538934, - 168417.75688721932, - 167199.3002186053, - 165461.81141394042, - 163253.22103029588, - 160733.71317479468, - 157893.29179535754, - 154867.85297011692, - 151648.74206620635, - 148302.76328709608, - 144934.40781578398, - 141520.63528444088, - 138234.52616853305, - 135059.26639072798, - 132154.83348310462, - 129581.52335524914, - 127364.64738252274, - 125559.77327877503, - 124106.94428870468, - 122996.17598963367, - 122154.5575186517, - 121523.87604980174, - 121057.57188191287, - 120727.88018486719, - 120520.8215161293, - 120455.42112374061, - 120533.45771005913, - 120778.95213221025, - 121179.36920116824, - 121700.42910895718, - 122312.08406630313, - 122927.72054167597, - 123511.5233864396, - 123983.15949594043, - 124315.57188705467, - 124493.30423595192, - 124519.08445466842, - 124422.7270011732, - 124231.06685869515, - 123974.99810947252, - 123675.25266364239, - 123338.31459588278, - 122960.28629431846, - 122535.56282776785, - 122051.88558933801, - 121514.99878098872, - 120925.94107299393, - 120307.97001664957, - 119681.97407188211, - 119064.84416432613, - 118476.48595034616, - 117912.41192491082, - 117373.81008766292, - 116843.1156429229, - 116309.50266801573, - 115763.87319612887, - 115205.00404633115, - 114646.80470094769, - 114099.89571881082, - 113586.87346888542, - 113116.00282875293, - 112694.37738919572, - 112314.87083476085, - 111960.78915121731, - 111612.40850216302, - 111250.94959337945, - 110866.7829033811, - 110460.72055117648, - 110044.89734611128, - 109639.638248545, - 109266.19300562171, - 108969.4997854167 - ], - "flow:branch10_seg0:J20": [ - 0.903248200744412, - 0.9099903551859151, - 0.9237648021621971, - 0.9444748347484979, - 0.9728664105714281, - 1.0097478270410336, - 1.0583465495184954, - 1.1245500107162238, - 1.2143500103889493, - 1.3389920579237036, - 1.5032699885171004, - 1.7180373078313453, - 1.9849579691138401, - 2.3050787932812087, - 2.6786448028831633, - 3.087743199250869, - 3.536108037317087, - 3.9962491958239377, - 4.467517967505677, - 4.928604360246408, - 5.361764542044315, - 5.766280575370258, - 6.114077142926079, - 6.409688510324967, - 6.630046911021636, - 6.77252574114858, - 6.832463800310647, - 6.804332795873051, - 6.692507903522391, - 6.50246141494758, - 6.239962623740139, - 5.921693543483123, - 5.555023296702126, - 5.153031396198836, - 4.733277962667043, - 4.291801924772981, - 3.8511624342983897, - 3.401636240230895, - 2.9611887354415796, - 2.534287935594724, - 2.1221337060885475, - 1.745864129758382, - 1.3989337203378975, - 1.1053744825312222, - 0.8597664975185502, - 0.6678843508836264, - 0.5287474157024212, - 0.43287262502990276, - 0.3789907314114104, - 0.35363842179657545, - 0.35262503991636784, - 0.36973441830080583, - 0.4025530264093177, - 0.4507102915998307, - 0.5156135835957748, - 0.5965002766439444, - 0.6953429842060966, - 0.8065676958231263, - 0.9268644376953057, - 1.0494230448746606, - 1.1649311756558642, - 1.2699707191818688, - 1.3547407781234455, - 1.4209108649096003, - 1.466252980700149, - 1.4941782021185768, - 1.5085368676877593, - 1.5121884333415572, - 1.5091677925463567, - 1.5006817323193316, - 1.4870821106653778, - 1.4680082594304833, - 1.4427016408200126, - 1.4107611246041845, - 1.373675483158536, - 1.332140076227635, - 1.2901647053443448, - 1.2490616885796901, - 1.2113796135747907, - 1.1779880730295078, - 1.1478625250054175, - 1.1210513407307192, - 1.0945537790741264, - 1.0682738661098088, - 1.0409600898039448, - 1.0136770359888267, - 0.9883093719553998, - 0.9659528725283202, - 0.949280554052688, - 0.9380534712463254, - 0.9325801083463516, - 0.9309834282679134, - 0.9309221252002121, - 0.9302770329034464, - 0.9273110503504954, - 0.9217588702308527, - 0.9144138497749568, - 0.9073485163392783, - 0.9028809877469505, - 0.903248200744412 - ], - "pressure:branch10_seg0:J20": [ - 108957.36198295892, - 108671.39330211948, - 108449.50229430068, - 108292.14898043155, - 108209.66456688031, - 108210.58094881212, - 108329.4713888533, - 108621.03378479413, - 109143.04887233049, - 110003.72893686849, - 111245.23524190187, - 112986.61862811825, - 115237.49635089713, - 118040.43359208391, - 121400.69098518702, - 125174.95204371995, - 129438.16589333126, - 133914.6142601028, - 138665.35487090432, - 143448.06093133587, - 148141.8636574658, - 152725.68743924185, - 156917.8616736152, - 160777.77216414167, - 164035.9652706673, - 166684.0472759657, - 168631.44795070845, - 169815.33937331496, - 170249.17192045954, - 169961.75342613782, - 168976.1188418365, - 167439.58383355392, - 165376.05853513425, - 162913.06171942872, - 160183.01289471445, - 157129.49203870873, - 153978.95854875285, - 150593.55464872156, - 147185.73384819375, - 143749.89577158453, - 140324.84073677895, - 137096.91496724327, - 133996.4796821285, - 131273.42672349061, - 128845.33408080395, - 126813.03816235904, - 125150.00188454022, - 123804.54878765799, - 122776.65127378626, - 121956.8122102091, - 121334.44932241608, - 120857.69041753229, - 120521.66554996795, - 120328.13863277985, - 120296.1368382506, - 120422.1043895, - 120731.66699246579, - 121171.8826316371, - 121727.67322787312, - 122332.98590304646, - 122915.44040348046, - 123444.7235861213, - 123829.77165446221, - 124093.67036561685, - 124199.98985251345, - 124184.46901343779, - 124067.1443031332, - 123870.5241489892, - 123624.48872743509, - 123333.49035329818, - 122998.24224127647, - 122613.26124400023, - 122169.67181644977, - 121663.66341780759, - 121107.1422552422, - 120503.7641230118, - 119890.35744370676, - 119272.36447035878, - 118676.18941898992, - 118104.50087238333, - 117551.17991783777, - 117017.11221667274, - 116474.9176453466, - 115929.08119831691, - 115365.55226347808, - 114798.4411314447, - 114242.19952246605, - 113706.92723716474, - 113217.37415787656, - 112769.33321818516, - 112368.74254432338, - 111998.13358178061, - 111639.64617061593, - 111275.89676420219, - 110893.02146469215, - 110489.81820723467, - 110073.25301295363, - 109661.78279471459, - 109274.60562204986, - 108957.36198295892 - ], - "flow:J20:branch10_seg1": [ - 0.903248200744412, - 0.9099903551859151, - 0.9237648021621971, - 0.9444748347484979, - 0.9728664105714281, - 1.0097478270410336, - 1.0583465495184954, - 1.1245500107162238, - 1.2143500103889493, - 1.3389920579237036, - 1.5032699885171004, - 1.7180373078313453, - 1.9849579691138401, - 2.3050787932812087, - 2.6786448028831633, - 3.087743199250869, - 3.536108037317087, - 3.9962491958239377, - 4.467517967505677, - 4.928604360246408, - 5.361764542044315, - 5.766280575370258, - 6.114077142926079, - 6.409688510324967, - 6.630046911021636, - 6.77252574114858, - 6.832463800310647, - 6.804332795873051, - 6.692507903522391, - 6.50246141494758, - 6.239962623740139, - 5.921693543483123, - 5.555023296702126, - 5.153031396198836, - 4.733277962667043, - 4.291801924772981, - 3.8511624342983897, - 3.401636240230895, - 2.9611887354415796, - 2.534287935594724, - 2.1221337060885475, - 1.745864129758382, - 1.3989337203378975, - 1.1053744825312222, - 0.8597664975185502, - 0.6678843508836264, - 0.5287474157024212, - 0.43287262502990276, - 0.3789907314114104, - 0.35363842179657545, - 0.35262503991636784, - 0.36973441830080583, - 0.4025530264093177, - 0.4507102915998307, - 0.5156135835957748, - 0.5965002766439444, - 0.6953429842060966, - 0.8065676958231263, - 0.9268644376953057, - 1.0494230448746606, - 1.1649311756558642, - 1.2699707191818688, - 1.3547407781234455, - 1.4209108649096003, - 1.466252980700149, - 1.4941782021185768, - 1.5085368676877593, - 1.5121884333415572, - 1.5091677925463567, - 1.5006817323193316, - 1.4870821106653778, - 1.4680082594304833, - 1.4427016408200126, - 1.4107611246041845, - 1.373675483158536, - 1.332140076227635, - 1.2901647053443448, - 1.2490616885796901, - 1.2113796135747907, - 1.1779880730295078, - 1.1478625250054175, - 1.1210513407307192, - 1.0945537790741264, - 1.0682738661098088, - 1.0409600898039448, - 1.0136770359888267, - 0.9883093719553998, - 0.9659528725283202, - 0.949280554052688, - 0.9380534712463254, - 0.9325801083463516, - 0.9309834282679134, - 0.9309221252002121, - 0.9302770329034464, - 0.9273110503504954, - 0.9217588702308527, - 0.9144138497749568, - 0.9073485163392783, - 0.9028809877469505, - 0.903248200744412 - ], - "pressure:J20:branch10_seg1": [ - 108957.36198295892, - 108671.39330211948, - 108449.50229430068, - 108292.14898043155, - 108209.66456688031, - 108210.58094881212, - 108329.4713888533, - 108621.03378479413, - 109143.04887233049, - 110003.72893686849, - 111245.23524190187, - 112986.61862811825, - 115237.49635089713, - 118040.43359208391, - 121400.69098518702, - 125174.95204371995, - 129438.16589333126, - 133914.6142601028, - 138665.35487090432, - 143448.06093133587, - 148141.8636574658, - 152725.68743924185, - 156917.8616736152, - 160777.77216414167, - 164035.9652706673, - 166684.0472759657, - 168631.44795070845, - 169815.33937331496, - 170249.17192045954, - 169961.75342613782, - 168976.1188418365, - 167439.58383355392, - 165376.05853513425, - 162913.06171942872, - 160183.01289471445, - 157129.49203870873, - 153978.95854875285, - 150593.55464872156, - 147185.73384819375, - 143749.89577158453, - 140324.84073677895, - 137096.91496724327, - 133996.4796821285, - 131273.42672349061, - 128845.33408080395, - 126813.03816235904, - 125150.00188454022, - 123804.54878765799, - 122776.65127378626, - 121956.8122102091, - 121334.44932241608, - 120857.69041753229, - 120521.66554996795, - 120328.13863277985, - 120296.1368382506, - 120422.1043895, - 120731.66699246579, - 121171.8826316371, - 121727.67322787312, - 122332.98590304646, - 122915.44040348046, - 123444.7235861213, - 123829.77165446221, - 124093.67036561685, - 124199.98985251345, - 124184.46901343779, - 124067.1443031332, - 123870.5241489892, - 123624.48872743509, - 123333.49035329818, - 122998.24224127647, - 122613.26124400023, - 122169.67181644977, - 121663.66341780759, - 121107.1422552422, - 120503.7641230118, - 119890.35744370676, - 119272.36447035878, - 118676.18941898992, - 118104.50087238333, - 117551.17991783777, - 117017.11221667274, - 116474.9176453466, - 115929.08119831691, - 115365.55226347808, - 114798.4411314447, - 114242.19952246605, - 113706.92723716474, - 113217.37415787656, - 112769.33321818516, - 112368.74254432338, - 111998.13358178061, - 111639.64617061593, - 111275.89676420219, - 110893.02146469215, - 110489.81820723467, - 110073.25301295363, - 109661.78279471459, - 109274.60562204986, - 108957.36198295892 - ], - "flow:branch10_seg1:J21": [ - 0.9035149210583133, - 0.9102061642131055, - 0.9239262423414771, - 0.944580394749919, - 0.9729050814606666, - 1.009711049292652, - 1.058183703826256, - 1.1242307123436088, - 1.2137877266204495, - 1.3381285303772499, - 1.5020590045871425, - 1.716370020446257, - 1.9829023964003538, - 2.302504662346824, - 2.675709689926596, - 3.084432423402809, - 3.5324903827178606, - 3.9924983137388903, - 4.463571646423489, - 4.92476911507751, - 5.357930488363428, - 5.762713635561687, - 6.110770155616143, - 6.4067646187129865, - 6.627641271979806, - 6.770597185444774, - 6.83116022553958, - 6.803612955412197, - 6.692398767694352, - 6.502916974494015, - 6.240947178453947, - 5.9230761419009825, - 5.55684275066231, - 5.15507916036912, - 4.735619869373683, - 4.294306924799498, - 3.8538032769284927, - 3.404435695943311, - 2.9639493832516752, - 2.5371656046141684, - 2.1248513691118873, - 1.7485232570141576, - 1.4013626491666114, - 1.1074952152699837, - 0.8616629025239411, - 0.6693914473115853, - 0.5300292228430641, - 0.43385068006804123, - 0.379758669408769, - 0.3542431450854181, - 0.3530810893395849, - 0.370080019911724, - 0.40278333891592416, - 0.45080834195129926, - 0.5155825937443461, - 0.5963216314293561, - 0.6950256693753092, - 0.8061629367681258, - 0.9263635966991063, - 1.0489401143819796, - 1.1644543886211016, - 1.2695929692126682, - 1.354479073076141, - 1.4207554344331608, - 1.4662309525040325, - 1.4942348070279532, - 1.5086760510707076, - 1.5123766296467351, - 1.5093940790531024, - 1.500943887335604, - 1.487383754198831, - 1.4683519578358413, - 1.443101034920302, - 1.4112041217900533, - 1.374164280647228, - 1.3326527123310976, - 1.2906780994681555, - 1.2495758463477005, - 1.2118627272912528, - 1.1784626108810377, - 1.1483147341221065, - 1.1215003630665707, - 1.0950105583795628, - 1.0687363822127351, - 1.041438378016758, - 1.0141479591141451, - 0.9887719652946709, - 0.9663836033225565, - 0.9496753452836102, - 0.9384093649274181, - 0.9329016760877934, - 0.9312889020958897, - 0.9312238250527423, - 0.9305909575980752, - 0.9276424631626358, - 0.9221055088323864, - 0.9147656600252028, - 0.9076868972574428, - 0.9031918051125357, - 0.9035149210583133 - ], - "pressure:branch10_seg1:J21": [ - 108880.25137338044, - 108589.18767207146, - 108361.20800173622, - 108197.02235749482, - 108106.04477906911, - 108096.86024434204, - 108200.36253653002, - 108471.35033751061, - 108963.06630399916, - 109782.72632653159, - 110973.40057195006, - 112645.8417378161, - 114821.14483279016, - 117526.02963303811, - 120781.66931081773, - 124437.44746016065, - 128565.38081934337, - 132908.40279243348, - 137504.48611103618, - 142147.4433770977, - 146694.29162494224, - 151148.12421169176, - 155229.207991635, - 158999.24821807217, - 162209.98890539503, - 164840.01591342204, - 166816.5838607183, - 168067.8127501427, - 168607.19932499062, - 168454.78727896986, - 167629.04622713418, - 166258.57654000283, - 164374.6331800296, - 162079.07565630143, - 159513.5897488893, - 156613.05677302845, - 153596.62141483114, - 150340.01348043198, - 147029.21099384537, - 143685.98253648105, - 140321.54723263267, - 137140.97403049795, - 134066.48214892432, - 131345.8519251803, - 128918.08119115276, - 126865.98567006724, - 125188.6087343146, - 123821.72579413635, - 122775.66214940892, - 121941.68480464064, - 121305.213654748, - 120817.09635424773, - 120468.72000555138, - 120260.77207133644, - 120212.92881215912, - 120320.59821923556, - 120610.17001136379, - 121033.37032079237, - 121570.53124115121, - 122164.96649767291, - 122737.42423602306, - 123263.67778399818, - 123650.58565547875, - 123916.9730004191, - 124030.52037656898, - 124019.89686156712, - 123908.75824400377, - 123716.9096047887, - 123475.0307714018, - 123188.59508585402, - 122858.7396266682, - 122480.0985773704, - 122044.64356497083, - 121546.8237129451, - 120998.87171333712, - 120402.96384988363, - 119794.61112183034, - 119181.29227433943, - 118586.69443177765, - 118017.39712436334, - 117465.3766535443, - 116933.45244141122, - 116394.67453379123, - 115851.99049356306, - 115292.62227949113, - 114727.81656586693, - 114173.2432319545, - 113637.56704998174, - 113146.22585521043, - 112695.80608073047, - 112292.48781973748, - 111920.41528696589, - 111561.5739361593, - 111198.97711763746, - 110818.13537262421, - 110417.06988017756, - 110001.96907241004, - 109590.28926937393, - 109201.28546368812, - 108880.25137338044 - ], - "flow:J21:branch10_seg2": [ - 0.9035149210583133, - 0.9102061642131055, - 0.9239262423414771, - 0.944580394749919, - 0.9729050814606666, - 1.009711049292652, - 1.058183703826256, - 1.1242307123436088, - 1.2137877266204495, - 1.3381285303772499, - 1.5020590045871425, - 1.716370020446257, - 1.9829023964003538, - 2.302504662346824, - 2.675709689926596, - 3.084432423402809, - 3.5324903827178606, - 3.9924983137388903, - 4.463571646423489, - 4.92476911507751, - 5.357930488363428, - 5.762713635561687, - 6.110770155616143, - 6.4067646187129865, - 6.627641271979806, - 6.770597185444774, - 6.83116022553958, - 6.803612955412197, - 6.692398767694352, - 6.502916974494015, - 6.240947178453947, - 5.9230761419009825, - 5.55684275066231, - 5.15507916036912, - 4.735619869373683, - 4.294306924799498, - 3.8538032769284927, - 3.404435695943311, - 2.9639493832516752, - 2.5371656046141684, - 2.1248513691118873, - 1.7485232570141576, - 1.4013626491666114, - 1.1074952152699837, - 0.8616629025239411, - 0.6693914473115853, - 0.5300292228430641, - 0.43385068006804123, - 0.379758669408769, - 0.3542431450854181, - 0.3530810893395849, - 0.370080019911724, - 0.40278333891592416, - 0.45080834195129926, - 0.5155825937443461, - 0.5963216314293561, - 0.6950256693753092, - 0.8061629367681258, - 0.9263635966991063, - 1.0489401143819796, - 1.1644543886211016, - 1.2695929692126682, - 1.354479073076141, - 1.4207554344331608, - 1.4662309525040325, - 1.4942348070279532, - 1.5086760510707076, - 1.5123766296467351, - 1.5093940790531024, - 1.500943887335604, - 1.487383754198831, - 1.4683519578358413, - 1.443101034920302, - 1.4112041217900533, - 1.374164280647228, - 1.3326527123310976, - 1.2906780994681555, - 1.2495758463477005, - 1.2118627272912528, - 1.1784626108810377, - 1.1483147341221065, - 1.1215003630665707, - 1.0950105583795628, - 1.0687363822127351, - 1.041438378016758, - 1.0141479591141451, - 0.9887719652946709, - 0.9663836033225565, - 0.9496753452836102, - 0.9384093649274181, - 0.9329016760877934, - 0.9312889020958897, - 0.9312238250527423, - 0.9305909575980752, - 0.9276424631626358, - 0.9221055088323864, - 0.9147656600252028, - 0.9076868972574428, - 0.9031918051125357, - 0.9035149210583133 - ], - "pressure:J21:branch10_seg2": [ - 108880.25137338044, - 108589.18767207146, - 108361.20800173622, - 108197.02235749482, - 108106.04477906911, - 108096.86024434204, - 108200.36253653002, - 108471.35033751061, - 108963.06630399916, - 109782.72632653159, - 110973.40057195006, - 112645.8417378161, - 114821.14483279016, - 117526.02963303811, - 120781.66931081773, - 124437.44746016065, - 128565.38081934337, - 132908.40279243348, - 137504.48611103618, - 142147.4433770977, - 146694.29162494224, - 151148.12421169176, - 155229.207991635, - 158999.24821807217, - 162209.98890539503, - 164840.01591342204, - 166816.5838607183, - 168067.8127501427, - 168607.19932499062, - 168454.78727896986, - 167629.04622713418, - 166258.57654000283, - 164374.6331800296, - 162079.07565630143, - 159513.5897488893, - 156613.05677302845, - 153596.62141483114, - 150340.01348043198, - 147029.21099384537, - 143685.98253648105, - 140321.54723263267, - 137140.97403049795, - 134066.48214892432, - 131345.8519251803, - 128918.08119115276, - 126865.98567006724, - 125188.6087343146, - 123821.72579413635, - 122775.66214940892, - 121941.68480464064, - 121305.213654748, - 120817.09635424773, - 120468.72000555138, - 120260.77207133644, - 120212.92881215912, - 120320.59821923556, - 120610.17001136379, - 121033.37032079237, - 121570.53124115121, - 122164.96649767291, - 122737.42423602306, - 123263.67778399818, - 123650.58565547875, - 123916.9730004191, - 124030.52037656898, - 124019.89686156712, - 123908.75824400377, - 123716.9096047887, - 123475.0307714018, - 123188.59508585402, - 122858.7396266682, - 122480.0985773704, - 122044.64356497083, - 121546.8237129451, - 120998.87171333712, - 120402.96384988363, - 119794.61112183034, - 119181.29227433943, - 118586.69443177765, - 118017.39712436334, - 117465.3766535443, - 116933.45244141122, - 116394.67453379123, - 115851.99049356306, - 115292.62227949113, - 114727.81656586693, - 114173.2432319545, - 113637.56704998174, - 113146.22585521043, - 112695.80608073047, - 112292.48781973748, - 111920.41528696589, - 111561.5739361593, - 111198.97711763746, - 110818.13537262421, - 110417.06988017756, - 110001.96907241004, - 109590.28926937393, - 109201.28546368812, - 108880.25137338044 - ], - "flow:branch12_seg0:J22": [ - 0.8981127469898067, - 0.9026917509117474, - 0.9138915889576742, - 0.9318510301010027, - 0.9571304793156332, - 0.9906041838564651, - 1.0344008513981973, - 1.0941990975884819, - 1.174844934775224, - 1.286845588159184, - 1.4361127615778735, - 1.6310341146011391, - 1.8779384107447505, - 2.174470827764161, - 2.526042538144838, - 2.9153866618072994, - 3.3437307553953906, - 3.7916975495971763, - 4.249408752097733, - 4.706846832179601, - 5.138059469888539, - 5.5470755524899875, - 5.905453665489611, - 6.21449042419292, - 6.457443710165559, - 6.624253476946737, - 6.715777129531955, - 6.721732938702222, - 6.646434882961819, - 6.49340770599875, - 6.267764580103022, - 5.982062681615124, - 5.647311841826892, - 5.269954073432456, - 4.871411181345816, - 4.447114776605055, - 4.017079482096775, - 3.578339272113476, - 3.139525000451891, - 2.7146732250992494, - 2.296766917069404, - 1.9113534913822454, - 1.5519588806572808, - 1.2382955494784518, - 0.9742758910688725, - 0.7581538697785282, - 0.5976606298832758, - 0.4809352435374929, - 0.4084279484579379, - 0.3692683237642307, - 0.35622435590544876, - 0.3647707367008234, - 0.3903617002718119, - 0.43202631969665745, - 0.49084994621402755, - 0.5655568500950563, - 0.6579715545874564, - 0.7643957857786708, - 0.8801933600678047, - 1.0015839260709105, - 1.1176928522794887, - 1.2259654018594994, - 1.3167617546178012, - 1.388923780951145, - 1.4418827032164294, - 1.4760364153529204, - 1.4961180440222475, - 1.5042029697841883, - 1.5042302476433904, - 1.4982217359579415, - 1.486659873701821, - 1.4696064663315942, - 1.44661176684156, - 1.4168874687664874, - 1.3818982514386156, - 1.3420269019014448, - 1.3005751552776448, - 1.259643495983294, - 1.2208343337187042, - 1.1862940222295744, - 1.1547488987675072, - 1.1266962022518805, - 1.099771432058226, - 1.0731203260598112, - 1.0460754031738304, - 1.0186123601350265, - 0.9928104661998268, - 0.9693960459065077, - 0.9509625476514831, - 0.9378172802638525, - 0.9302095211939209, - 0.927062958367397, - 0.926053802007896, - 0.9252757816081604, - 0.9228397386018081, - 0.9180643197640144, - 0.9113983407669172, - 0.9043903097680978, - 0.8992664305601595, - 0.8981127469898067 - ], - "pressure:branch12_seg0:J22": [ - 108854.89322383744, - 108553.80766649329, - 108313.22757061508, - 108135.06380914159, - 108028.55893228043, - 108002.2522859831, - 108082.21607026941, - 108322.39424076823, - 108769.73249909989, - 109528.26280520174, - 110644.34562289034, - 112217.77357063376, - 114289.28452612458, - 116871.56613280466, - 120009.94021010847, - 123555.52929368537, - 127576.44517220613, - 131841.34939583848, - 136356.02202559565, - 140964.19179699072, - 145481.40078489194, - 149950.0507082594, - 154066.00251298613, - 157891.59725463676, - 161200.8635316709, - 163939.50902100382, - 166070.62572744585, - 167489.49517191818, - 168213.92504117425, - 168252.21272929228, - 167617.52315193354, - 166425.43141515585, - 164716.8972252787, - 162562.09989748654, - 160122.44818793386, - 157316.27091547783, - 154371.07691724238, - 151178.16371226715, - 147888.6218339785, - 144568.5491098219, - 141178.16030130337, - 137959.0265040811, - 134823.90719631416, - 132005.87898935823, - 129486.82953902494, - 127310.14235491447, - 125519.76942993396, - 124040.11665115673, - 122893.93046790951, - 121985.03246681133, - 121284.22384870783, - 120751.4696716887, - 120364.58838028413, - 120125.00226492243, - 120048.47096459215, - 120127.40025651017, - 120387.04322443472, - 120785.95873389303, - 121299.68548747656, - 121886.44187068028, - 122460.49626180202, - 123002.08928629354, - 123418.67250344831, - 123716.00391254245, - 123869.0983345496, - 123892.3186872239, - 123814.03645913285, - 123647.8791147935, - 123424.5532452879, - 123152.5382108581, - 122833.82501960962, - 122466.63560100745, - 122043.69521847123, - 121558.0977527704, - 121022.05320885986, - 120435.97641378832, - 119832.47961764305, - 119221.96351903203, - 118623.65102328004, - 118049.63083367792, - 117490.80454744422, - 116952.71197145712, - 116411.35665082245, - 115867.12075870685, - 115309.62193608326, - 114744.70436788621, - 114189.3876803905, - 113649.44212793055, - 113150.5888748892, - 112691.38447595967, - 112277.47512591531, - 111897.53670270994, - 111533.07058159605, - 111169.17408923904, - 110790.73202561877, - 110393.93157240396, - 109983.2155696201, - 109573.16507811304, - 109182.24654539421, - 108854.89322383744 - ], - "flow:J22:branch12_seg1": [ - 0.8981127469898067, - 0.9026917509117474, - 0.9138915889576742, - 0.9318510301010027, - 0.9571304793156332, - 0.9906041838564651, - 1.0344008513981973, - 1.0941990975884819, - 1.174844934775224, - 1.286845588159184, - 1.4361127615778735, - 1.6310341146011391, - 1.8779384107447505, - 2.174470827764161, - 2.526042538144838, - 2.9153866618072994, - 3.3437307553953906, - 3.7916975495971763, - 4.249408752097733, - 4.706846832179601, - 5.138059469888539, - 5.5470755524899875, - 5.905453665489611, - 6.21449042419292, - 6.457443710165559, - 6.624253476946737, - 6.715777129531955, - 6.721732938702222, - 6.646434882961819, - 6.49340770599875, - 6.267764580103022, - 5.982062681615124, - 5.647311841826892, - 5.269954073432456, - 4.871411181345816, - 4.447114776605055, - 4.017079482096775, - 3.578339272113476, - 3.139525000451891, - 2.7146732250992494, - 2.296766917069404, - 1.9113534913822454, - 1.5519588806572808, - 1.2382955494784518, - 0.9742758910688725, - 0.7581538697785282, - 0.5976606298832758, - 0.4809352435374929, - 0.4084279484579379, - 0.3692683237642307, - 0.35622435590544876, - 0.3647707367008234, - 0.3903617002718119, - 0.43202631969665745, - 0.49084994621402755, - 0.5655568500950563, - 0.6579715545874564, - 0.7643957857786708, - 0.8801933600678047, - 1.0015839260709105, - 1.1176928522794887, - 1.2259654018594994, - 1.3167617546178012, - 1.388923780951145, - 1.4418827032164294, - 1.4760364153529204, - 1.4961180440222475, - 1.5042029697841883, - 1.5042302476433904, - 1.4982217359579415, - 1.486659873701821, - 1.4696064663315942, - 1.44661176684156, - 1.4168874687664874, - 1.3818982514386156, - 1.3420269019014448, - 1.3005751552776448, - 1.259643495983294, - 1.2208343337187042, - 1.1862940222295744, - 1.1547488987675072, - 1.1266962022518805, - 1.099771432058226, - 1.0731203260598112, - 1.0460754031738304, - 1.0186123601350265, - 0.9928104661998268, - 0.9693960459065077, - 0.9509625476514831, - 0.9378172802638525, - 0.9302095211939209, - 0.927062958367397, - 0.926053802007896, - 0.9252757816081604, - 0.9228397386018081, - 0.9180643197640144, - 0.9113983407669172, - 0.9043903097680978, - 0.8992664305601595, - 0.8981127469898067 - ], - "pressure:J22:branch12_seg1": [ - 108854.89322383744, - 108553.80766649329, - 108313.22757061508, - 108135.06380914159, - 108028.55893228043, - 108002.2522859831, - 108082.21607026941, - 108322.39424076823, - 108769.73249909989, - 109528.26280520174, - 110644.34562289034, - 112217.77357063376, - 114289.28452612458, - 116871.56613280466, - 120009.94021010847, - 123555.52929368537, - 127576.44517220613, - 131841.34939583848, - 136356.02202559565, - 140964.19179699072, - 145481.40078489194, - 149950.0507082594, - 154066.00251298613, - 157891.59725463676, - 161200.8635316709, - 163939.50902100382, - 166070.62572744585, - 167489.49517191818, - 168213.92504117425, - 168252.21272929228, - 167617.52315193354, - 166425.43141515585, - 164716.8972252787, - 162562.09989748654, - 160122.44818793386, - 157316.27091547783, - 154371.07691724238, - 151178.16371226715, - 147888.6218339785, - 144568.5491098219, - 141178.16030130337, - 137959.0265040811, - 134823.90719631416, - 132005.87898935823, - 129486.82953902494, - 127310.14235491447, - 125519.76942993396, - 124040.11665115673, - 122893.93046790951, - 121985.03246681133, - 121284.22384870783, - 120751.4696716887, - 120364.58838028413, - 120125.00226492243, - 120048.47096459215, - 120127.40025651017, - 120387.04322443472, - 120785.95873389303, - 121299.68548747656, - 121886.44187068028, - 122460.49626180202, - 123002.08928629354, - 123418.67250344831, - 123716.00391254245, - 123869.0983345496, - 123892.3186872239, - 123814.03645913285, - 123647.8791147935, - 123424.5532452879, - 123152.5382108581, - 122833.82501960962, - 122466.63560100745, - 122043.69521847123, - 121558.0977527704, - 121022.05320885986, - 120435.97641378832, - 119832.47961764305, - 119221.96351903203, - 118623.65102328004, - 118049.63083367792, - 117490.80454744422, - 116952.71197145712, - 116411.35665082245, - 115867.12075870685, - 115309.62193608326, - 114744.70436788621, - 114189.3876803905, - 113649.44212793055, - 113150.5888748892, - 112691.38447595967, - 112277.47512591531, - 111897.53670270994, - 111533.07058159605, - 111169.17408923904, - 110790.73202561877, - 110393.93157240396, - 109983.2155696201, - 109573.16507811304, - 109182.24654539421, - 108854.89322383744 - ], - "flow:branch12_seg1:J23": [ - 0.9000483397522083, - 0.9042969685479215, - 0.9151332220933859, - 0.932723144620156, - 0.9575518655782521, - 0.9905281174151402, - 1.0335315634178173, - 1.0923175496930504, - 1.1714610218545083, - 1.2814827351708327, - 1.4285246552099968, - 1.6203857846133587, - 1.864664648742291, - 2.157763558440598, - 2.5066841333216274, - 2.893676623548901, - 3.3194875737218164, - 3.766560557134704, - 4.22264768722302, - 4.68056876375272, - 5.1119902497540215, - 5.522301736453654, - 5.882510709418027, - 6.193623380401033, - 6.439965057427088, - 6.609881034396274, - 6.705522279109908, - 6.715373244285901, - 6.644087287928896, - 6.494829171207472, - 6.272961698469083, - 5.990086825066687, - 5.658526669830125, - 5.282992020629117, - 4.886313237399504, - 4.463645721389215, - 4.034487661481034, - 3.5972693766236574, - 3.1583932169389715, - 2.7343020553722157, - 2.315691945643988, - 1.9298021372368388, - 1.5693427252853878, - 1.2536150695291575, - 0.9882429477244814, - 0.7694473344322206, - 0.6072216429124426, - 0.48849188618669426, - 0.414323606089269, - 0.37404748313316216, - 0.3598098045602827, - 0.3674712380378194, - 0.3922219347661721, - 0.4329722113674635, - 0.4909228664751239, - 0.5646506743162223, - 0.6560480130319539, - 0.761813727667664, - 0.8768881329939033, - 0.9982802165917071, - 1.1144155241573581, - 1.2231955496739177, - 1.31477953733368, - 1.387563544894846, - 1.4414597547097994, - 1.4762173814223933, - 1.4968922888891363, - 1.5053902892279007, - 1.5056768200110486, - 1.4999378591377968, - 1.48866141910257, - 1.471903603116908, - 1.4492816984274886, - 1.419863325360649, - 1.3851788003935477, - 1.3455201807245203, - 1.3041004564306578, - 1.263222302041064, - 1.2242269201308893, - 1.1896148588033542, - 1.1579340921317616, - 1.1298158120739317, - 1.102959478416134, - 1.0763238395970611, - 1.049383109780592, - 1.021889117238723, - 0.9960272249905868, - 0.9724444832750447, - 0.9537695083306987, - 0.9403790446977229, - 0.9325240561237754, - 0.9292376562411415, - 0.9281730348615289, - 0.9274460818119223, - 0.9251195428494666, - 0.9204448444777258, - 0.9138292277299406, - 0.9067534256114864, - 0.9014732999050978, - 0.9000483397522083 - ], - "pressure:branch12_seg1:J23": [ - 108739.36246053912, - 108425.13020385618, - 108169.27265372798, - 107975.27102254315, - 107849.40023421953, - 107801.5058565008, - 107849.98156009776, - 108045.90828694082, - 108432.42486136683, - 109103.6860293708, - 110120.30084881994, - 111559.44487858842, - 113497.81499194584, - 115922.81051627066, - 118907.52602442905, - 122321.71965510078, - 126184.51862052412, - 130359.91257101504, - 134754.53963395164, - 139308.71512279965, - 143787.89891401422, - 148227.52049357994, - 152377.70562352228, - 156231.34125235004, - 159639.64964859388, - 162485.4924781847, - 164760.59547517414, - 166344.91833467773, - 167249.07308179984, - 167472.8899150776, - 167035.38741753102, - 166010.31309299826, - 164479.52564157508, - 162467.72592739004, - 160150.53267114406, - 157480.7186404884, - 154614.1958808621, - 151534.51992134738, - 148295.35218256095, - 145032.0924846867, - 141673.86641169674, - 138450.0559564875, - 135310.6791699166, - 132426.73776613237, - 129858.5208374793, - 127593.05542872798, - 125728.1015510939, - 124174.27823946891, - 122955.11194617786, - 121996.30115423868, - 121244.44158319653, - 120673.49139518506, - 120250.94298960568, - 119973.4354677018, - 119856.13219782307, - 119892.69999186018, - 120104.00506457106, - 120467.80856927365, - 120946.88180886047, - 121518.78844308793, - 122089.35960529956, - 122639.23056257667, - 123083.78844733504, - 123404.42430180953, - 123593.6574553287, - 123643.52568971724, - 123589.46783133004, - 123442.63786214183, - 123231.96455480318, - 122972.72050358538, - 122666.96170365089, - 122313.32250189177, - 121906.7874340642, - 121437.77345770739, - 120916.84734138829, - 120344.74126490929, - 119746.74157779878, - 119141.27603415625, - 118539.8973269094, - 117963.87007789692, - 117402.65625851772, - 116862.51952230895, - 116325.43287453512, - 115783.40095281582, - 115232.04375078839, - 114669.41945697226, - 114113.52523040437, - 113570.30165707512, - 113062.44138632574, - 112594.56852274544, - 112170.56989915356, - 111784.12844538524, - 111417.24462267618, - 111055.00047986406, - 110681.425450876, - 110289.83501304738, - 109882.87530475734, - 109472.26825141186, - 109076.59564050322, - 108739.36246053912 - ], - "flow:J23:branch12_seg2": [ - 0.9000483397522083, - 0.9042969685479215, - 0.9151332220933859, - 0.932723144620156, - 0.9575518655782521, - 0.9905281174151402, - 1.0335315634178173, - 1.0923175496930504, - 1.1714610218545083, - 1.2814827351708327, - 1.4285246552099968, - 1.6203857846133587, - 1.864664648742291, - 2.157763558440598, - 2.5066841333216274, - 2.893676623548901, - 3.3194875737218164, - 3.766560557134704, - 4.22264768722302, - 4.68056876375272, - 5.1119902497540215, - 5.522301736453654, - 5.882510709418027, - 6.193623380401033, - 6.439965057427088, - 6.609881034396274, - 6.705522279109908, - 6.715373244285901, - 6.644087287928896, - 6.494829171207472, - 6.272961698469083, - 5.990086825066687, - 5.658526669830125, - 5.282992020629117, - 4.886313237399504, - 4.463645721389215, - 4.034487661481034, - 3.5972693766236574, - 3.1583932169389715, - 2.7343020553722157, - 2.315691945643988, - 1.9298021372368388, - 1.5693427252853878, - 1.2536150695291575, - 0.9882429477244814, - 0.7694473344322206, - 0.6072216429124426, - 0.48849188618669426, - 0.414323606089269, - 0.37404748313316216, - 0.3598098045602827, - 0.3674712380378194, - 0.3922219347661721, - 0.4329722113674635, - 0.4909228664751239, - 0.5646506743162223, - 0.6560480130319539, - 0.761813727667664, - 0.8768881329939033, - 0.9982802165917071, - 1.1144155241573581, - 1.2231955496739177, - 1.31477953733368, - 1.387563544894846, - 1.4414597547097994, - 1.4762173814223933, - 1.4968922888891363, - 1.5053902892279007, - 1.5056768200110486, - 1.4999378591377968, - 1.48866141910257, - 1.471903603116908, - 1.4492816984274886, - 1.419863325360649, - 1.3851788003935477, - 1.3455201807245203, - 1.3041004564306578, - 1.263222302041064, - 1.2242269201308893, - 1.1896148588033542, - 1.1579340921317616, - 1.1298158120739317, - 1.102959478416134, - 1.0763238395970611, - 1.049383109780592, - 1.021889117238723, - 0.9960272249905868, - 0.9724444832750447, - 0.9537695083306987, - 0.9403790446977229, - 0.9325240561237754, - 0.9292376562411415, - 0.9281730348615289, - 0.9274460818119223, - 0.9251195428494666, - 0.9204448444777258, - 0.9138292277299406, - 0.9067534256114864, - 0.9014732999050978, - 0.9000483397522083 - ], - "pressure:J23:branch12_seg2": [ - 108739.36246053912, - 108425.13020385618, - 108169.27265372798, - 107975.27102254315, - 107849.40023421953, - 107801.5058565008, - 107849.98156009776, - 108045.90828694082, - 108432.42486136683, - 109103.6860293708, - 110120.30084881994, - 111559.44487858842, - 113497.81499194584, - 115922.81051627066, - 118907.52602442905, - 122321.71965510078, - 126184.51862052412, - 130359.91257101504, - 134754.53963395164, - 139308.71512279965, - 143787.89891401422, - 148227.52049357994, - 152377.70562352228, - 156231.34125235004, - 159639.64964859388, - 162485.4924781847, - 164760.59547517414, - 166344.91833467773, - 167249.07308179984, - 167472.8899150776, - 167035.38741753102, - 166010.31309299826, - 164479.52564157508, - 162467.72592739004, - 160150.53267114406, - 157480.7186404884, - 154614.1958808621, - 151534.51992134738, - 148295.35218256095, - 145032.0924846867, - 141673.86641169674, - 138450.0559564875, - 135310.6791699166, - 132426.73776613237, - 129858.5208374793, - 127593.05542872798, - 125728.1015510939, - 124174.27823946891, - 122955.11194617786, - 121996.30115423868, - 121244.44158319653, - 120673.49139518506, - 120250.94298960568, - 119973.4354677018, - 119856.13219782307, - 119892.69999186018, - 120104.00506457106, - 120467.80856927365, - 120946.88180886047, - 121518.78844308793, - 122089.35960529956, - 122639.23056257667, - 123083.78844733504, - 123404.42430180953, - 123593.6574553287, - 123643.52568971724, - 123589.46783133004, - 123442.63786214183, - 123231.96455480318, - 122972.72050358538, - 122666.96170365089, - 122313.32250189177, - 121906.7874340642, - 121437.77345770739, - 120916.84734138829, - 120344.74126490929, - 119746.74157779878, - 119141.27603415625, - 118539.8973269094, - 117963.87007789692, - 117402.65625851772, - 116862.51952230895, - 116325.43287453512, - 115783.40095281582, - 115232.04375078839, - 114669.41945697226, - 114113.52523040437, - 113570.30165707512, - 113062.44138632574, - 112594.56852274544, - 112170.56989915356, - 111784.12844538524, - 111417.24462267618, - 111055.00047986406, - 110681.425450876, - 110289.83501304738, - 109882.87530475734, - 109472.26825141186, - 109076.59564050322, - 108739.36246053912 - ], - "flow:branch13_seg0:J24": [ - 1.989720447978144, - 2.0018632144480786, - 2.0295367002899107, - 2.0741118259055296, - 2.1365661817055144, - 2.219177452977572, - 2.3289468958368893, - 2.47501124869488, - 2.674946016712266, - 2.9453885659578196, - 3.3059030431072536, - 3.775106909997886, - 4.360151092005971, - 5.0718180604216805, - 5.8964876009306595, - 6.824742743433478, - 7.828812492257378, - 8.883644357354585, - 9.957149917235553, - 11.014181986512316, - 12.02656234803975, - 12.95586544497369, - 13.783996369763573, - 14.474003139945681, - 15.009307054418077, - 15.367396926622346, - 15.535178570260447, - 15.507450773490639, - 15.284165036604776, - 14.876055181938328, - 14.30125735968685, - 13.58499427020576, - 12.751433903371053, - 11.83400794205777, - 10.852439795394442, - 9.837476252817716, - 8.79860307218922, - 7.7584089423593925, - 6.729970735992358, - 5.725658225672511, - 4.771703319368067, - 3.8745955908371728, - 3.0675614406219993, - 2.362876528038378, - 1.776101488697546, - 1.3163161223316917, - 0.9764508096077902, - 0.751001548058561, - 0.6232272659434162, - 0.5732485979953924, - 0.58444655128994, - 0.6410860121528179, - 0.733742092590285, - 0.8606537173665758, - 1.0192985258090275, - 1.213872347007933, - 1.4420628230238868, - 1.699363085749635, - 1.978039296551317, - 2.2612281019352403, - 2.5367302933192355, - 2.785153792575876, - 2.995154315630713, - 3.1588008964109493, - 3.2743759015810894, - 3.346367848188553, - 3.3824221466168716, - 3.3906989950068445, - 3.3801659570859477, - 3.3555702880487415, - 3.3196771538172407, - 3.2727858344904908, - 3.213060177517834, - 3.1409202022312113, - 3.0561452625465235, - 2.9628925170539597, - 2.865733197850579, - 2.7699862584299133, - 2.680928562136444, - 2.600407120948032, - 2.5293937084588993, - 2.4656814990475326, - 2.406149460871659, - 2.3477525699868096, - 2.2887106428909734, - 2.229708114746116, - 2.173169087265874, - 2.1232931830483053, - 2.083305356024548, - 2.056174616991449, - 2.0413487000761967, - 2.036615218306235, - 2.037305520230715, - 2.0383491032629024, - 2.0357938257343826, - 2.027630563926848, - 2.014838454453568, - 2.000928913714149, - 1.9908143728061827, - 1.989720447978144 - ], - "pressure:branch13_seg0:J24": [ - 109045.79630245714, - 108782.30809684587, - 108588.29670308821, - 108465.81731517828, - 108423.74471816645, - 108473.95735995096, - 108663.47287101447, - 109038.79658840563, - 109691.68645845463, - 110701.79160226602, - 112144.95987201753, - 114120.36679681439, - 116615.59664149786, - 119713.50346969829, - 123301.29779310593, - 127362.00055189058, - 131795.13111639643, - 136450.50296676625, - 141293.46505469794, - 146072.12004072973, - 150776.50885850415, - 155201.01307767964, - 159284.05535507895, - 162891.2652311059, - 165895.38753104408, - 168245.5380923411, - 169851.63934200563, - 170701.20183084055, - 170784.12509048096, - 170152.3994754878, - 168848.91170762252, - 167016.2003870183, - 164671.83423992613, - 162006.92710858182, - 159024.79910342305, - 155839.9014817102, - 152493.91481175224, - 149002.35626546477, - 145508.4367591461, - 141971.59958590165, - 138569.57625564758, - 135296.07374537562, - 132301.83098996684, - 129657.39295335689, - 127380.47495353926, - 125539.94441116975, - 124056.58256782527, - 122941.30558061473, - 122100.21753711623, - 121480.28620484417, - 121027.8003714593, - 120707.3112834175, - 120510.28506123494, - 120450.03020769512, - 120534.09259549048, - 120784.91282535442, - 121196.38207445585, - 121731.56696428578, - 122366.77773021367, - 123007.6932026985, - 123622.7391115357, - 124122.73847789619, - 124478.65975893376, - 124675.50056323835, - 124709.57318745661, - 124619.29741524257, - 124425.09612176966, - 124164.90956111638, - 123859.82375043792, - 123518.0983783634, - 123137.29782878332, - 122710.44181083718, - 122224.38229694532, - 121683.61510877225, - 121088.69228550272, - 120461.69008421332, - 119826.49915228848, - 119197.98741200077, - 118601.47124464481, - 118029.10358612501, - 117486.19207583476, - 116953.60081014513, - 116418.27530263634, - 115872.69959298418, - 115310.34752145738, - 114748.00980790639, - 114195.2737726379, - 113675.31275948026, - 113199.47591465573, - 112774.16532106054, - 112393.73056436169, - 112041.64921408954, - 111696.58540384819, - 111339.29360992076, - 110958.05051674682, - 110552.81393678076, - 110135.03458674693, - 109725.94699057928, - 109347.10760862868, - 109045.79630245714 - ], - "flow:J24:branch13_seg1": [ - 1.989720447978144, - 2.0018632144480786, - 2.0295367002899107, - 2.0741118259055296, - 2.1365661817055144, - 2.219177452977572, - 2.3289468958368893, - 2.47501124869488, - 2.674946016712266, - 2.9453885659578196, - 3.3059030431072536, - 3.775106909997886, - 4.360151092005971, - 5.0718180604216805, - 5.8964876009306595, - 6.824742743433478, - 7.828812492257378, - 8.883644357354585, - 9.957149917235553, - 11.014181986512316, - 12.02656234803975, - 12.95586544497369, - 13.783996369763573, - 14.474003139945681, - 15.009307054418077, - 15.367396926622346, - 15.535178570260447, - 15.507450773490639, - 15.284165036604776, - 14.876055181938328, - 14.30125735968685, - 13.58499427020576, - 12.751433903371053, - 11.83400794205777, - 10.852439795394442, - 9.837476252817716, - 8.79860307218922, - 7.7584089423593925, - 6.729970735992358, - 5.725658225672511, - 4.771703319368067, - 3.8745955908371728, - 3.0675614406219993, - 2.362876528038378, - 1.776101488697546, - 1.3163161223316917, - 0.9764508096077902, - 0.751001548058561, - 0.6232272659434162, - 0.5732485979953924, - 0.58444655128994, - 0.6410860121528179, - 0.733742092590285, - 0.8606537173665758, - 1.0192985258090275, - 1.213872347007933, - 1.4420628230238868, - 1.699363085749635, - 1.978039296551317, - 2.2612281019352403, - 2.5367302933192355, - 2.785153792575876, - 2.995154315630713, - 3.1588008964109493, - 3.2743759015810894, - 3.346367848188553, - 3.3824221466168716, - 3.3906989950068445, - 3.3801659570859477, - 3.3555702880487415, - 3.3196771538172407, - 3.2727858344904908, - 3.213060177517834, - 3.1409202022312113, - 3.0561452625465235, - 2.9628925170539597, - 2.865733197850579, - 2.7699862584299133, - 2.680928562136444, - 2.600407120948032, - 2.5293937084588993, - 2.4656814990475326, - 2.406149460871659, - 2.3477525699868096, - 2.2887106428909734, - 2.229708114746116, - 2.173169087265874, - 2.1232931830483053, - 2.083305356024548, - 2.056174616991449, - 2.0413487000761967, - 2.036615218306235, - 2.037305520230715, - 2.0383491032629024, - 2.0357938257343826, - 2.027630563926848, - 2.014838454453568, - 2.000928913714149, - 1.9908143728061827, - 1.989720447978144 - ], - "pressure:J24:branch13_seg1": [ - 109045.79630245714, - 108782.30809684587, - 108588.29670308821, - 108465.81731517828, - 108423.74471816645, - 108473.95735995096, - 108663.47287101447, - 109038.79658840563, - 109691.68645845463, - 110701.79160226602, - 112144.95987201753, - 114120.36679681439, - 116615.59664149786, - 119713.50346969829, - 123301.29779310593, - 127362.00055189058, - 131795.13111639643, - 136450.50296676625, - 141293.46505469794, - 146072.12004072973, - 150776.50885850415, - 155201.01307767964, - 159284.05535507895, - 162891.2652311059, - 165895.38753104408, - 168245.5380923411, - 169851.63934200563, - 170701.20183084055, - 170784.12509048096, - 170152.3994754878, - 168848.91170762252, - 167016.2003870183, - 164671.83423992613, - 162006.92710858182, - 159024.79910342305, - 155839.9014817102, - 152493.91481175224, - 149002.35626546477, - 145508.4367591461, - 141971.59958590165, - 138569.57625564758, - 135296.07374537562, - 132301.83098996684, - 129657.39295335689, - 127380.47495353926, - 125539.94441116975, - 124056.58256782527, - 122941.30558061473, - 122100.21753711623, - 121480.28620484417, - 121027.8003714593, - 120707.3112834175, - 120510.28506123494, - 120450.03020769512, - 120534.09259549048, - 120784.91282535442, - 121196.38207445585, - 121731.56696428578, - 122366.77773021367, - 123007.6932026985, - 123622.7391115357, - 124122.73847789619, - 124478.65975893376, - 124675.50056323835, - 124709.57318745661, - 124619.29741524257, - 124425.09612176966, - 124164.90956111638, - 123859.82375043792, - 123518.0983783634, - 123137.29782878332, - 122710.44181083718, - 122224.38229694532, - 121683.61510877225, - 121088.69228550272, - 120461.69008421332, - 119826.49915228848, - 119197.98741200077, - 118601.47124464481, - 118029.10358612501, - 117486.19207583476, - 116953.60081014513, - 116418.27530263634, - 115872.69959298418, - 115310.34752145738, - 114748.00980790639, - 114195.2737726379, - 113675.31275948026, - 113199.47591465573, - 112774.16532106054, - 112393.73056436169, - 112041.64921408954, - 111696.58540384819, - 111339.29360992076, - 110958.05051674682, - 110552.81393678076, - 110135.03458674693, - 109725.94699057928, - 109347.10760862868, - 109045.79630245714 - ], - "flow:branch13_seg1:J25": [ - 1.9930834215226647, - 2.0044525132942086, - 2.031366783724685, - 2.0750786675558444, - 2.136612628151863, - 2.2179797918571835, - 2.325905999024881, - 2.4695265695071575, - 2.665778052131693, - 2.9319923701801214, - 3.2869158219871712, - 3.7502395697545, - 4.328985582335681, - 5.034277140221673, - 5.854099709462191, - 6.777016973535951, - 7.778670184311974, - 8.8303677220101, - 9.903586125537139, - 10.96144164596192, - 11.975431772616512, - 12.909034071132192, - 13.740833746970138, - 14.437510027688178, - 14.979331200110881, - 15.3452445452234, - 15.521362966852989, - 15.502097027510647, - 15.286858400884858, - 14.886706048286943, - 14.318181361961704, - 13.608020184081253, - 12.77909557021415, - 11.864830306960183, - 10.886785695507832, - 9.872893513357933, - 8.836800911959795, - 7.796924400284636, - 6.769073702803768, - 5.764630868381237, - 4.808599520904913, - 3.9099699948528652, - 3.098691747256493, - 2.390472755724095, - 1.7990619514572026, - 1.3348664931258942, - 0.9909322085448639, - 0.7618379007283582, - 0.6312727029904872, - 0.5792097008025432, - 0.5887891432071085, - 0.6440197773874811, - 0.7353434422651492, - 0.8605450266936782, - 1.0175965819978825, - 1.2101387614246828, - 1.4368240350371861, - 1.692782845605928, - 1.9707964790490509, - 2.254211292557288, - 2.5304041928224805, - 2.780488017677354, - 2.992107167726975, - 3.157664757048995, - 3.274772006828543, - 3.3480876517031315, - 3.3850236753855723, - 3.3939428542734573, - 3.383802803458482, - 3.3596277169613495, - 3.3242027092151414, - 3.277883566504752, - 3.2188528298307526, - 3.14728080820285, - 3.0630676444505545, - 2.9699702414311404, - 2.8728667212832435, - 2.7768638378483006, - 2.6874871231711213, - 2.606655955867734, - 2.5353861868113867, - 2.4716649238150854, - 2.4121797182296656, - 2.3540039395354664, - 2.2950551249940676, - 2.2360113254166123, - 2.1792519750818706, - 2.1288858183917343, - 2.088396200978445, - 2.0606727077848794, - 2.0454508279113632, - 2.0405137641587454, - 2.041240766227422, - 2.042512886912187, - 2.0402393373843823, - 2.0323080767811437, - 2.019541313023422, - 2.0054193866645673, - 1.9948294680628977, - 1.9930834215226647 - ], - "pressure:branch13_seg1:J25": [ - 108952.52812117372, - 108670.40497958021, - 108455.69997833243, - 108309.70149830906, - 108242.17910651761, - 108261.08634591449, - 108407.88941131045, - 108724.43077305741, - 109292.27517183172, - 110192.61360949243, - 111493.5309070265, - 113306.5403000142, - 115617.10385939601, - 118526.89591890475, - 121932.18385899291, - 125810.39992571945, - 130100.5330918923, - 134616.22516371295, - 139375.14934306144, - 144102.55906164457, - 148787.8796438943, - 153244.14097545066, - 157380.09120935734, - 161092.44760703205, - 164245.01771731456, - 166779.13238168476, - 168604.68675139922, - 169698.4598396796, - 170032.07978844122, - 169667.07815779568, - 168607.00474427847, - 167012.18101847213, - 164869.65303124866, - 162375.28411127022, - 159547.86079307727, - 156474.41260143236, - 153240.984423657, - 149822.06628223698, - 146377.66662472987, - 142867.32425959632, - 139454.1232968607, - 136148.50815655675, - 133086.29563452426, - 130343.36210603839, - 127946.2761235619, - 125976.07510146503, - 124356.84103343294, - 123125.45962547333, - 122179.78180092032, - 121478.82299663349, - 120963.66883784563, - 120589.5504308615, - 120348.79070493692, - 120242.32188862444, - 120279.45618690684, - 120478.32031564492, - 120839.28724412259, - 121330.04076186953, - 121934.64902677045, - 122562.34853842418, - 123185.82426604319, - 123712.09707854301, - 124109.0617103954, - 124356.04228625399, - 124439.213203218, - 124396.53460459739, - 124238.63527360583, - 124006.62005963676, - 123721.60227162477, - 123395.32551792245, - 123030.04862224836, - 122619.69653698502, - 122152.64962602191, - 121631.23717254405, - 121054.50256759865, - 120440.50398389768, - 119812.67411150096, - 119183.81172819821, - 118582.79638106578, - 118002.03206895203, - 117452.19360096459, - 116915.83359910517, - 116379.90829571104, - 115838.38667657826, - 115279.36416574771, - 114718.91678820633, - 114164.01455860089, - 113635.88296606622, - 113148.48917095603, - 112708.72137361676, - 112314.46440425448, - 111952.86494489077, - 111603.62885860885, - 111248.5783385022, - 110873.6121100129, - 110475.78343249297, - 110062.84908338563, - 109653.45721704185, - 109267.23812295392, - 108952.52812117372 - ], - "flow:J25:branch13_seg2": [ - 1.9930834215226647, - 2.0044525132942086, - 2.031366783724685, - 2.0750786675558444, - 2.136612628151863, - 2.2179797918571835, - 2.325905999024881, - 2.4695265695071575, - 2.665778052131693, - 2.9319923701801214, - 3.2869158219871712, - 3.7502395697545, - 4.328985582335681, - 5.034277140221673, - 5.854099709462191, - 6.777016973535951, - 7.778670184311974, - 8.8303677220101, - 9.903586125537139, - 10.96144164596192, - 11.975431772616512, - 12.909034071132192, - 13.740833746970138, - 14.437510027688178, - 14.979331200110881, - 15.3452445452234, - 15.521362966852989, - 15.502097027510647, - 15.286858400884858, - 14.886706048286943, - 14.318181361961704, - 13.608020184081253, - 12.77909557021415, - 11.864830306960183, - 10.886785695507832, - 9.872893513357933, - 8.836800911959795, - 7.796924400284636, - 6.769073702803768, - 5.764630868381237, - 4.808599520904913, - 3.9099699948528652, - 3.098691747256493, - 2.390472755724095, - 1.7990619514572026, - 1.3348664931258942, - 0.9909322085448639, - 0.7618379007283582, - 0.6312727029904872, - 0.5792097008025432, - 0.5887891432071085, - 0.6440197773874811, - 0.7353434422651492, - 0.8605450266936782, - 1.0175965819978825, - 1.2101387614246828, - 1.4368240350371861, - 1.692782845605928, - 1.9707964790490509, - 2.254211292557288, - 2.5304041928224805, - 2.780488017677354, - 2.992107167726975, - 3.157664757048995, - 3.274772006828543, - 3.3480876517031315, - 3.3850236753855723, - 3.3939428542734573, - 3.383802803458482, - 3.3596277169613495, - 3.3242027092151414, - 3.277883566504752, - 3.2188528298307526, - 3.14728080820285, - 3.0630676444505545, - 2.9699702414311404, - 2.8728667212832435, - 2.7768638378483006, - 2.6874871231711213, - 2.606655955867734, - 2.5353861868113867, - 2.4716649238150854, - 2.4121797182296656, - 2.3540039395354664, - 2.2950551249940676, - 2.2360113254166123, - 2.1792519750818706, - 2.1288858183917343, - 2.088396200978445, - 2.0606727077848794, - 2.0454508279113632, - 2.0405137641587454, - 2.041240766227422, - 2.042512886912187, - 2.0402393373843823, - 2.0323080767811437, - 2.019541313023422, - 2.0054193866645673, - 1.9948294680628977, - 1.9930834215226647 - ], - "pressure:J25:branch13_seg2": [ - 108952.52812117372, - 108670.40497958021, - 108455.69997833243, - 108309.70149830906, - 108242.17910651761, - 108261.08634591449, - 108407.88941131045, - 108724.43077305741, - 109292.27517183172, - 110192.61360949243, - 111493.5309070265, - 113306.5403000142, - 115617.10385939601, - 118526.89591890475, - 121932.18385899291, - 125810.39992571945, - 130100.5330918923, - 134616.22516371295, - 139375.14934306144, - 144102.55906164457, - 148787.8796438943, - 153244.14097545066, - 157380.09120935734, - 161092.44760703205, - 164245.01771731456, - 166779.13238168476, - 168604.68675139922, - 169698.4598396796, - 170032.07978844122, - 169667.07815779568, - 168607.00474427847, - 167012.18101847213, - 164869.65303124866, - 162375.28411127022, - 159547.86079307727, - 156474.41260143236, - 153240.984423657, - 149822.06628223698, - 146377.66662472987, - 142867.32425959632, - 139454.1232968607, - 136148.50815655675, - 133086.29563452426, - 130343.36210603839, - 127946.2761235619, - 125976.07510146503, - 124356.84103343294, - 123125.45962547333, - 122179.78180092032, - 121478.82299663349, - 120963.66883784563, - 120589.5504308615, - 120348.79070493692, - 120242.32188862444, - 120279.45618690684, - 120478.32031564492, - 120839.28724412259, - 121330.04076186953, - 121934.64902677045, - 122562.34853842418, - 123185.82426604319, - 123712.09707854301, - 124109.0617103954, - 124356.04228625399, - 124439.213203218, - 124396.53460459739, - 124238.63527360583, - 124006.62005963676, - 123721.60227162477, - 123395.32551792245, - 123030.04862224836, - 122619.69653698502, - 122152.64962602191, - 121631.23717254405, - 121054.50256759865, - 120440.50398389768, - 119812.67411150096, - 119183.81172819821, - 118582.79638106578, - 118002.03206895203, - 117452.19360096459, - 116915.83359910517, - 116379.90829571104, - 115838.38667657826, - 115279.36416574771, - 114718.91678820633, - 114164.01455860089, - 113635.88296606622, - 113148.48917095603, - 112708.72137361676, - 112314.46440425448, - 111952.86494489077, - 111603.62885860885, - 111248.5783385022, - 110873.6121100129, - 110475.78343249297, - 110062.84908338563, - 109653.45721704185, - 109267.23812295392, - 108952.52812117372 - ], - "flow:branch14_seg0:J26": [ - 3.685663915454117, - 3.730222258944899, - 3.808144211769672, - 3.918691455236362, - 4.064057544290251, - 4.249268206810849, - 4.4943514669277285, - 4.823579151349462, - 5.277081914386902, - 5.894777630884804, - 6.7083225857092765, - 7.756678554549522, - 9.034723306767738, - 10.557180270940123, - 12.277505164017688, - 14.156820024337028, - 16.148434308368653, - 18.171795478911733, - 20.195465955647858, - 22.117350490062982, - 23.908174124604507, - 25.498466414544925, - 26.845617401671543, - 27.909184546997103, - 28.631111581307486, - 28.99927400770006, - 28.987427852348308, - 28.598961235603657, - 27.84870798931643, - 26.77162394882919, - 25.408941973256407, - 23.83295144775871, - 22.077816209791603, - 20.22515494392434, - 18.304147060644116, - 16.355325981818297, - 14.41174145857275, - 12.476740943469057, - 10.611254584489272, - 8.811160731255601, - 7.138142705734337, - 5.6117854733847, - 4.277128078548693, - 3.1812149139386907, - 2.318976732049391, - 1.7086088369290418, - 1.3126578347146987, - 1.1088218109609354, - 1.0549116550916569, - 1.106697824716154, - 1.2340385269351475, - 1.4159692350336985, - 1.645222892029776, - 1.9284052851774585, - 2.2706865450783655, - 2.679429958818992, - 3.153073139340834, - 3.6700814355778393, - 4.213038829904186, - 4.739217791647114, - 5.222704640931999, - 5.629476627088649, - 5.939373172625975, - 6.152829734654962, - 6.273365969773202, - 6.322746467191999, - 6.319265743952916, - 6.28252766422318, - 6.226522304984257, - 6.156453969757255, - 6.070609918664046, - 5.965360906667984, - 5.8345269608247134, - 5.679220427033867, - 5.50251249312746, - 5.314490512581185, - 5.129430007437627, - 4.9557575380175445, - 4.804269592357365, - 4.67322710123419, - 4.560796650374494, - 4.458795788773572, - 4.357878520279853, - 4.253690287496083, - 4.143606483365384, - 4.034837421288219, - 3.9345579521146963, - 3.8532081985281836, - 3.7975884469305203, - 3.7693836653074992, - 3.7650636922285643, - 3.7745737221267417, - 3.7860969112376828, - 3.788856651035003, - 3.776895867912889, - 3.7506799210007356, - 3.7168860040656186, - 3.6871227234841255, - 3.6732313684357782, - 3.685663915454117 - ], - "pressure:branch14_seg0:J26": [ - 109169.09943136713, - 108940.65600170923, - 108784.40048966686, - 108703.5882635077, - 108706.47427334066, - 108813.04208101035, - 109081.47715302686, - 109566.07020394994, - 110377.3163214163, - 111588.77932458417, - 113290.92785901437, - 115559.33788766307, - 118382.84262091875, - 121819.26981658716, - 125723.39703772168, - 130099.43104431598, - 134777.03069526883, - 139666.58870465818, - 144657.98180810033, - 149521.18248431646, - 154260.43695692538, - 158625.60727882324, - 162608.75129604287, - 166019.01493280198, - 168753.10606642655, - 170765.14174003247, - 171967.40521907186, - 172366.7376745903, - 171984.04291526254, - 170865.26781850884, - 169115.43517957302, - 166853.60390209022, - 164139.36290867443, - 161171.30900962435, - 157915.13782707494, - 154537.03923596194, - 151002.9440835425, - 147395.02877934303, - 143827.53794301618, - 140259.05821298412, - 136901.1490339134, - 133709.56522134162, - 130872.25121087344, - 128428.2276899927, - 126388.12125350718, - 124793.75424007622, - 123553.6358722808, - 122649.82897011295, - 121988.47267753218, - 121506.03141859995, - 121157.21011889669, - 120922.54590981151, - 120798.12646650644, - 120816.1415136992, - 120980.56110279082, - 121321.11303327302, - 121815.6224992384, - 122421.7039651797, - 123100.89822214973, - 123751.12153394031, - 124339.65740494443, - 124777.8085653538, - 125050.49624343947, - 125150.94695177687, - 125094.33752737168, - 124921.93291382285, - 124665.59711062256, - 124359.54907812379, - 124022.4670281081, - 123655.25365602774, - 123248.36465589583, - 122792.31122944299, - 122272.39080361191, - 121698.28433046516, - 121072.7701193295, - 120426.67425315037, - 119782.93267360075, - 119159.62531796243, - 118575.48233695795, - 118019.68084549486, - 117490.88700304322, - 116964.98076048828, - 116430.3009329983, - 115877.66068749517, - 115309.5210960791, - 114745.82607522118, - 114199.55067767811, - 113697.36116864973, - 113245.17639294744, - 112847.5241218918, - 112491.57306019877, - 112154.96177382079, - 111814.53181791528, - 111450.64850650309, - 111056.40979390497, - 110637.54571150076, - 110212.393286393, - 109806.38646564657, - 109443.59985776553, - 109169.09943136713 - ], - "flow:J26:branch14_seg1": [ - 3.685663915454117, - 3.730222258944899, - 3.808144211769672, - 3.918691455236362, - 4.064057544290251, - 4.249268206810849, - 4.4943514669277285, - 4.823579151349462, - 5.277081914386902, - 5.894777630884804, - 6.7083225857092765, - 7.756678554549522, - 9.034723306767738, - 10.557180270940123, - 12.277505164017688, - 14.156820024337028, - 16.148434308368653, - 18.171795478911733, - 20.195465955647858, - 22.117350490062982, - 23.908174124604507, - 25.498466414544925, - 26.845617401671543, - 27.909184546997103, - 28.631111581307486, - 28.99927400770006, - 28.987427852348308, - 28.598961235603657, - 27.84870798931643, - 26.77162394882919, - 25.408941973256407, - 23.83295144775871, - 22.077816209791603, - 20.22515494392434, - 18.304147060644116, - 16.355325981818297, - 14.41174145857275, - 12.476740943469057, - 10.611254584489272, - 8.811160731255601, - 7.138142705734337, - 5.6117854733847, - 4.277128078548693, - 3.1812149139386907, - 2.318976732049391, - 1.7086088369290418, - 1.3126578347146987, - 1.1088218109609354, - 1.0549116550916569, - 1.106697824716154, - 1.2340385269351475, - 1.4159692350336985, - 1.645222892029776, - 1.9284052851774585, - 2.2706865450783655, - 2.679429958818992, - 3.153073139340834, - 3.6700814355778393, - 4.213038829904186, - 4.739217791647114, - 5.222704640931999, - 5.629476627088649, - 5.939373172625975, - 6.152829734654962, - 6.273365969773202, - 6.322746467191999, - 6.319265743952916, - 6.28252766422318, - 6.226522304984257, - 6.156453969757255, - 6.070609918664046, - 5.965360906667984, - 5.8345269608247134, - 5.679220427033867, - 5.50251249312746, - 5.314490512581185, - 5.129430007437627, - 4.9557575380175445, - 4.804269592357365, - 4.67322710123419, - 4.560796650374494, - 4.458795788773572, - 4.357878520279853, - 4.253690287496083, - 4.143606483365384, - 4.034837421288219, - 3.9345579521146963, - 3.8532081985281836, - 3.7975884469305203, - 3.7693836653074992, - 3.7650636922285643, - 3.7745737221267417, - 3.7860969112376828, - 3.788856651035003, - 3.776895867912889, - 3.7506799210007356, - 3.7168860040656186, - 3.6871227234841255, - 3.6732313684357782, - 3.685663915454117 - ], - "pressure:J26:branch14_seg1": [ - 109169.09943136713, - 108940.65600170923, - 108784.40048966686, - 108703.5882635077, - 108706.47427334066, - 108813.04208101035, - 109081.47715302686, - 109566.07020394994, - 110377.3163214163, - 111588.77932458417, - 113290.92785901437, - 115559.33788766307, - 118382.84262091875, - 121819.26981658716, - 125723.39703772168, - 130099.43104431598, - 134777.03069526883, - 139666.58870465818, - 144657.98180810033, - 149521.18248431646, - 154260.43695692538, - 158625.60727882324, - 162608.75129604287, - 166019.01493280198, - 168753.10606642655, - 170765.14174003247, - 171967.40521907186, - 172366.7376745903, - 171984.04291526254, - 170865.26781850884, - 169115.43517957302, - 166853.60390209022, - 164139.36290867443, - 161171.30900962435, - 157915.13782707494, - 154537.03923596194, - 151002.9440835425, - 147395.02877934303, - 143827.53794301618, - 140259.05821298412, - 136901.1490339134, - 133709.56522134162, - 130872.25121087344, - 128428.2276899927, - 126388.12125350718, - 124793.75424007622, - 123553.6358722808, - 122649.82897011295, - 121988.47267753218, - 121506.03141859995, - 121157.21011889669, - 120922.54590981151, - 120798.12646650644, - 120816.1415136992, - 120980.56110279082, - 121321.11303327302, - 121815.6224992384, - 122421.7039651797, - 123100.89822214973, - 123751.12153394031, - 124339.65740494443, - 124777.8085653538, - 125050.49624343947, - 125150.94695177687, - 125094.33752737168, - 124921.93291382285, - 124665.59711062256, - 124359.54907812379, - 124022.4670281081, - 123655.25365602774, - 123248.36465589583, - 122792.31122944299, - 122272.39080361191, - 121698.28433046516, - 121072.7701193295, - 120426.67425315037, - 119782.93267360075, - 119159.62531796243, - 118575.48233695795, - 118019.68084549486, - 117490.88700304322, - 116964.98076048828, - 116430.3009329983, - 115877.66068749517, - 115309.5210960791, - 114745.82607522118, - 114199.55067767811, - 113697.36116864973, - 113245.17639294744, - 112847.5241218918, - 112491.57306019877, - 112154.96177382079, - 111814.53181791528, - 111450.64850650309, - 111056.40979390497, - 110637.54571150076, - 110212.393286393, - 109806.38646564657, - 109443.59985776553, - 109169.09943136713 - ], - "flow:branch14_seg1:J27": [ - 3.687320812848904, - 3.731420815676856, - 3.808911495999729, - 3.91896755783087, - 4.063802778370159, - 4.248204896674075, - 4.492138608954374, - 4.819746708422952, - 5.270979919837996, - 5.886108256857463, - 6.696234386820932, - 7.741363935527577, - 9.015611680141287, - 10.534757991505437, - 12.252615742338119, - 14.129307263467744, - 16.120088071265904, - 18.141968267885858, - 20.165969044490318, - 22.088560369582062, - 23.88078584013189, - 25.473706859948354, - 26.8234863044399, - 27.89091934345619, - 28.616686038893988, - 28.989400665210624, - 28.98220714719469, - 28.598559040781222, - 27.85258870545652, - 26.77976605108078, - 25.420164249554873, - 23.84742623613768, - 22.094457394806515, - 20.243326484692695, - 18.32389365797792, - 16.375476422543894, - 14.433157902796632, - 12.498106885249864, - 10.632951666282219, - 8.832327599235006, - 7.158145766608057, - 5.630284278253658, - 4.2930600924189175, - 3.1950490783882164, - 2.329987097842739, - 1.7174518162669195, - 1.319232489380075, - 1.1135742909536177, - 1.0584003273364697, - 1.109191592403605, - 1.235870425034231, - 1.4171331039110089, - 1.6456234072966056, - 1.9278916376292854, - 2.269201306039002, - 2.6768547040980595, - 3.149762755227811, - 3.6660821982799643, - 4.208968599232207, - 4.735370502793699, - 5.219542775372158, - 5.627400628200044, - 5.938271015603916, - 6.152833240162763, - 6.274104187043697, - 6.324112518257703, - 6.321024727866862, - 6.284519056814741, - 6.228693259717284, - 6.158832821929411, - 6.073246819572322, - 5.968361611948527, - 5.837899448866403, - 5.682919388243465, - 5.506456560852574, - 5.31844415709502, - 5.133357486142729, - 4.959450316831589, - 4.807792754525636, - 4.676564493975363, - 4.564018330013285, - 4.4620644304206625, - 4.36120005451968, - 4.25716818164784, - 4.147119035833081, - 4.0382906968040935, - 3.9378278027934543, - 3.856156045779086, - 3.800210427278778, - 3.771693795386011, - 3.7671899152591566, - 3.7766588094474276, - 3.7882745320474713, - 3.791209264000144, - 3.779427034964472, - 3.753319598014499, - 3.7194816586539363, - 3.689533911910901, - 3.6753044699834354, - 3.687320812848904 - ], - "pressure:branch14_seg1:J27": [ - 109065.9553648671, - 108817.701661294, - 108641.32465581769, - 108538.63017465593, - 108517.17224778178, - 108591.92261571159, - 108812.58864310058, - 109231.61005843118, - 109945.54634765038, - 111036.44349576907, - 112583.77504059298, - 114674.81104143862, - 117303.35461180308, - 120524.48090379669, - 124230.47359962374, - 128386.44058590393, - 132875.7004811959, - 137568.60347368327, - 142390.84328796354, - 147124.8502987856, - 151742.33335253375, - 156052.21209724311, - 159998.08224068815, - 163444.64256576807, - 166270.5670897449, - 168432.33169284952, - 169845.67184448714, - 170501.94120507885, - 170406.23891105285, - 169600.25096923002, - 168154.84236263818, - 166190.1529656512, - 163752.95365054088, - 161012.61237054662, - 157979.58031796518, - 154766.68507286982, - 151397.26813407373, - 147906.78169521177, - 144419.9603543701, - 140910.6838579228, - 137548.92192930228, - 134340.5132349246, - 131427.38325868832, - 128892.2296757382, - 126742.18415550579, - 125033.15991041105, - 123690.74626958347, - 122695.12759692877, - 121966.5833889957, - 121434.13365637283, - 121049.4849801126, - 120783.3691124403, - 120627.88768181302, - 120606.93481985341, - 120730.02490246021, - 121021.09857182513, - 121472.38624291439, - 122042.55600240904, - 122699.46416725143, - 123349.67248497489, - 123951.23681955402, - 124424.60969248255, - 124736.87503135817, - 124882.0208953357, - 124864.91049390633, - 124724.69387409312, - 124491.9576201274, - 124201.20003039957, - 123874.79926492399, - 123518.08449811264, - 123124.25797311378, - 122684.72905294586, - 122184.86780765711, - 121629.2171489376, - 121020.99915723308, - 120383.82030511311, - 119743.60515328287, - 119117.13852506566, - 118526.1870253141, - 117964.39484068126, - 117430.53320661392, - 116905.84278074956, - 116375.01393831127, - 115829.57359391058, - 115266.98427769504, - 114704.03368555833, - 114154.19025449081, - 113641.29613743153, - 113176.4883765205, - 112764.92262076632, - 112398.45841345182, - 112057.14529923824, - 111718.29383141862, - 111361.26840674588, - 110975.9221114335, - 110564.51408056983, - 110141.70994784102, - 109731.32292545175, - 109357.1543610179, - 109065.9553648671 - ], - "flow:J27:branch14_seg2": [ - 3.687320812848904, - 3.731420815676856, - 3.808911495999729, - 3.91896755783087, - 4.063802778370159, - 4.248204896674075, - 4.492138608954374, - 4.819746708422952, - 5.270979919837996, - 5.886108256857463, - 6.696234386820932, - 7.741363935527577, - 9.015611680141287, - 10.534757991505437, - 12.252615742338119, - 14.129307263467744, - 16.120088071265904, - 18.141968267885858, - 20.165969044490318, - 22.088560369582062, - 23.88078584013189, - 25.473706859948354, - 26.8234863044399, - 27.89091934345619, - 28.616686038893988, - 28.989400665210624, - 28.98220714719469, - 28.598559040781222, - 27.85258870545652, - 26.77976605108078, - 25.420164249554873, - 23.84742623613768, - 22.094457394806515, - 20.243326484692695, - 18.32389365797792, - 16.375476422543894, - 14.433157902796632, - 12.498106885249864, - 10.632951666282219, - 8.832327599235006, - 7.158145766608057, - 5.630284278253658, - 4.2930600924189175, - 3.1950490783882164, - 2.329987097842739, - 1.7174518162669195, - 1.319232489380075, - 1.1135742909536177, - 1.0584003273364697, - 1.109191592403605, - 1.235870425034231, - 1.4171331039110089, - 1.6456234072966056, - 1.9278916376292854, - 2.269201306039002, - 2.6768547040980595, - 3.149762755227811, - 3.6660821982799643, - 4.208968599232207, - 4.735370502793699, - 5.219542775372158, - 5.627400628200044, - 5.938271015603916, - 6.152833240162763, - 6.274104187043697, - 6.324112518257703, - 6.321024727866862, - 6.284519056814741, - 6.228693259717284, - 6.158832821929411, - 6.073246819572322, - 5.968361611948527, - 5.837899448866403, - 5.682919388243465, - 5.506456560852574, - 5.31844415709502, - 5.133357486142729, - 4.959450316831589, - 4.807792754525636, - 4.676564493975363, - 4.564018330013285, - 4.4620644304206625, - 4.36120005451968, - 4.25716818164784, - 4.147119035833081, - 4.0382906968040935, - 3.9378278027934543, - 3.856156045779086, - 3.800210427278778, - 3.771693795386011, - 3.7671899152591566, - 3.7766588094474276, - 3.7882745320474713, - 3.791209264000144, - 3.779427034964472, - 3.753319598014499, - 3.7194816586539363, - 3.689533911910901, - 3.6753044699834354, - 3.687320812848904 - ], - "pressure:J27:branch14_seg2": [ - 109065.9553648671, - 108817.701661294, - 108641.32465581769, - 108538.63017465593, - 108517.17224778178, - 108591.92261571159, - 108812.58864310058, - 109231.61005843118, - 109945.54634765038, - 111036.44349576907, - 112583.77504059298, - 114674.81104143862, - 117303.35461180308, - 120524.48090379669, - 124230.47359962374, - 128386.44058590393, - 132875.7004811959, - 137568.60347368327, - 142390.84328796354, - 147124.8502987856, - 151742.33335253375, - 156052.21209724311, - 159998.08224068815, - 163444.64256576807, - 166270.5670897449, - 168432.33169284952, - 169845.67184448714, - 170501.94120507885, - 170406.23891105285, - 169600.25096923002, - 168154.84236263818, - 166190.1529656512, - 163752.95365054088, - 161012.61237054662, - 157979.58031796518, - 154766.68507286982, - 151397.26813407373, - 147906.78169521177, - 144419.9603543701, - 140910.6838579228, - 137548.92192930228, - 134340.5132349246, - 131427.38325868832, - 128892.2296757382, - 126742.18415550579, - 125033.15991041105, - 123690.74626958347, - 122695.12759692877, - 121966.5833889957, - 121434.13365637283, - 121049.4849801126, - 120783.3691124403, - 120627.88768181302, - 120606.93481985341, - 120730.02490246021, - 121021.09857182513, - 121472.38624291439, - 122042.55600240904, - 122699.46416725143, - 123349.67248497489, - 123951.23681955402, - 124424.60969248255, - 124736.87503135817, - 124882.0208953357, - 124864.91049390633, - 124724.69387409312, - 124491.9576201274, - 124201.20003039957, - 123874.79926492399, - 123518.08449811264, - 123124.25797311378, - 122684.72905294586, - 122184.86780765711, - 121629.2171489376, - 121020.99915723308, - 120383.82030511311, - 119743.60515328287, - 119117.13852506566, - 118526.1870253141, - 117964.39484068126, - 117430.53320661392, - 116905.84278074956, - 116375.01393831127, - 115829.57359391058, - 115266.98427769504, - 114704.03368555833, - 114154.19025449081, - 113641.29613743153, - 113176.4883765205, - 112764.92262076632, - 112398.45841345182, - 112057.14529923824, - 111718.29383141862, - 111361.26840674588, - 110975.9221114335, - 110564.51408056983, - 110141.70994784102, - 109731.32292545175, - 109357.1543610179, - 109065.9553648671 - ], - "flow:branch15_seg0:J28": [ - 4.905764000646724, - 4.920005092037806, - 4.966721777154673, - 5.048124161327178, - 5.166773448917845, - 5.326573735659686, - 5.540556478170966, - 5.828896437013686, - 6.223285078981822, - 6.762545642714665, - 7.482041525547487, - 8.421636542383212, - 9.595921110552954, - 11.018576944963078, - 12.668966341005302, - 14.509030441972458, - 16.49656921684508, - 18.559223706232153, - 20.649336376486282, - 22.685628392922574, - 24.6154120084696, - 26.38260656166905, - 27.936926904250157, - 29.242690051574385, - 30.252060523877024, - 30.942467747701773, - 31.29125038366584, - 31.29089629549123, - 30.945520887253352, - 30.274521810062645, - 29.303748437067693, - 28.081408292328288, - 26.640974191433017, - 25.037372980496396, - 23.30956235224068, - 21.489757660223788, - 19.614084081055154, - 17.69393729678197, - 15.771368420172, - 13.862532250098857, - 12.008268926796319, - 10.244183753985252, - 8.610249743592073, - 7.159881219520651, - 5.917598867191092, - 4.91232914363889, - 4.141590119218383, - 3.5955142075619992, - 3.2490294564056548, - 3.0655423702322944, - 3.0109295868300463, - 3.0557464669055516, - 3.180962905532694, - 3.3797207982956006, - 3.6514022226849416, - 3.998647581158099, - 4.422503927986433, - 4.9103150252499095, - 5.44631949815894, - 5.998352135347069, - 6.535198647638375, - 7.022970201081705, - 7.432266941756477, - 7.749793112440083, - 7.969940945919489, - 8.102456074012771, - 8.161837860285512, - 8.166099312683814, - 8.131944578432051, - 8.070555372322932, - 7.986583222612537, - 7.880434123113347, - 7.748947260467512, - 7.591030587829861, - 7.408024957640537, - 7.205685315175478, - 6.995166523393758, - 6.786243314985663, - 6.590138232006777, - 6.4115041066199145, - 6.251765488908949, - 6.107528367322984, - 5.971624277603564, - 5.838453254460879, - 5.703379314922551, - 5.568209835426177, - 5.437803984615171, - 5.320168103798649, - 5.2234789442837775, - 5.152574249843424, - 5.10829927058337, - 5.085508785574951, - 5.075132469547727, - 5.066632573708152, - 5.051280557152702, - 5.024831752974102, - 4.988682496902093, - 4.949919097676914, - 4.918595943097787, - 4.905764000646724 - ], - "pressure:branch15_seg0:J28": [ - 109047.76912298618, - 108795.21424150476, - 108610.94019890018, - 108499.237297528, - 108468.04852233965, - 108534.21703543777, - 108747.19468611825, - 109156.19344537592, - 109858.70830503468, - 110928.10003462291, - 112450.72948048756, - 114506.48283141479, - 117099.00393801693, - 120287.63213286852, - 123963.23448667783, - 128122.8670784812, - 132624.62119629685, - 137373.81831079075, - 142266.6915337426, - 147091.3504707298, - 151823.49291520068, - 156239.9406936719, - 160306.31050562585, - 163849.66906593583, - 166760.67278067753, - 168984.85541220033, - 170435.76669085407, - 171107.68398439614, - 171010.87596013973, - 170184.16557025482, - 168715.37476901087, - 166716.60310333822, - 164247.3480355881, - 161484.1410434122, - 158418.80229642542, - 155195.38771071585, - 151803.4450101008, - 148313.1077795006, - 144830.25255247692, - 141329.28897019962, - 137989.02681544647, - 134788.20018429004, - 131888.26196050138, - 129340.74192065094, - 127165.58345147234, - 125410.2918583878, - 124007.45254217795, - 122943.73966027013, - 122141.87188372377, - 121542.97196829916, - 121101.17262061802, - 120791.02040148551, - 120601.62148166013, - 120554.73809183818, - 120653.14469960642, - 120921.80553477554, - 121346.10610353643, - 121890.97161669757, - 122523.65692010873, - 123154.88303919572, - 123748.04194577051, - 124220.722670197, - 124547.46881448678, - 124713.98021541325, - 124725.8478896811, - 124615.28859676725, - 124410.40049644756, - 124143.1772334713, - 123834.21920237524, - 123489.04220121735, - 123102.7083547327, - 122668.61723656589, - 122174.1676156626, - 121625.86683882502, - 121025.47806248063, - 120398.01289783663, - 119764.83324684862, - 119143.4654539157, - 118553.25851156158, - 117988.56064404348, - 117449.84965605411, - 116918.18555509955, - 116382.47053161224, - 115833.46563244362, - 115270.8408475071, - 114709.81717903576, - 114161.69293338594, - 113649.84895132374, - 113182.20872607168, - 112765.1322703339, - 112390.1910057921, - 112039.42113069612, - 111692.3315673053, - 111329.97749689779, - 110943.28972887492, - 110534.1466055137, - 110116.08923806794, - 109710.53446026759, - 109339.42692810661, - 109047.76912298618 - ], - "flow:J28:branch15_seg1": [ - 4.905764000646724, - 4.920005092037806, - 4.966721777154673, - 5.048124161327178, - 5.166773448917845, - 5.326573735659686, - 5.540556478170966, - 5.828896437013686, - 6.223285078981822, - 6.762545642714665, - 7.482041525547487, - 8.421636542383212, - 9.595921110552954, - 11.018576944963078, - 12.668966341005302, - 14.509030441972458, - 16.49656921684508, - 18.559223706232153, - 20.649336376486282, - 22.685628392922574, - 24.6154120084696, - 26.38260656166905, - 27.936926904250157, - 29.242690051574385, - 30.252060523877024, - 30.942467747701773, - 31.29125038366584, - 31.29089629549123, - 30.945520887253352, - 30.274521810062645, - 29.303748437067693, - 28.081408292328288, - 26.640974191433017, - 25.037372980496396, - 23.30956235224068, - 21.489757660223788, - 19.614084081055154, - 17.69393729678197, - 15.771368420172, - 13.862532250098857, - 12.008268926796319, - 10.244183753985252, - 8.610249743592073, - 7.159881219520651, - 5.917598867191092, - 4.91232914363889, - 4.141590119218383, - 3.5955142075619992, - 3.2490294564056548, - 3.0655423702322944, - 3.0109295868300463, - 3.0557464669055516, - 3.180962905532694, - 3.3797207982956006, - 3.6514022226849416, - 3.998647581158099, - 4.422503927986433, - 4.9103150252499095, - 5.44631949815894, - 5.998352135347069, - 6.535198647638375, - 7.022970201081705, - 7.432266941756477, - 7.749793112440083, - 7.969940945919489, - 8.102456074012771, - 8.161837860285512, - 8.166099312683814, - 8.131944578432051, - 8.070555372322932, - 7.986583222612537, - 7.880434123113347, - 7.748947260467512, - 7.591030587829861, - 7.408024957640537, - 7.205685315175478, - 6.995166523393758, - 6.786243314985663, - 6.590138232006777, - 6.4115041066199145, - 6.251765488908949, - 6.107528367322984, - 5.971624277603564, - 5.838453254460879, - 5.703379314922551, - 5.568209835426177, - 5.437803984615171, - 5.320168103798649, - 5.2234789442837775, - 5.152574249843424, - 5.10829927058337, - 5.085508785574951, - 5.075132469547727, - 5.066632573708152, - 5.051280557152702, - 5.024831752974102, - 4.988682496902093, - 4.949919097676914, - 4.918595943097787, - 4.905764000646724 - ], - "pressure:J28:branch15_seg1": [ - 109047.76912298618, - 108795.21424150476, - 108610.94019890018, - 108499.237297528, - 108468.04852233965, - 108534.21703543777, - 108747.19468611825, - 109156.19344537592, - 109858.70830503468, - 110928.10003462291, - 112450.72948048756, - 114506.48283141479, - 117099.00393801693, - 120287.63213286852, - 123963.23448667783, - 128122.8670784812, - 132624.62119629685, - 137373.81831079075, - 142266.6915337426, - 147091.3504707298, - 151823.49291520068, - 156239.9406936719, - 160306.31050562585, - 163849.66906593583, - 166760.67278067753, - 168984.85541220033, - 170435.76669085407, - 171107.68398439614, - 171010.87596013973, - 170184.16557025482, - 168715.37476901087, - 166716.60310333822, - 164247.3480355881, - 161484.1410434122, - 158418.80229642542, - 155195.38771071585, - 151803.4450101008, - 148313.1077795006, - 144830.25255247692, - 141329.28897019962, - 137989.02681544647, - 134788.20018429004, - 131888.26196050138, - 129340.74192065094, - 127165.58345147234, - 125410.2918583878, - 124007.45254217795, - 122943.73966027013, - 122141.87188372377, - 121542.97196829916, - 121101.17262061802, - 120791.02040148551, - 120601.62148166013, - 120554.73809183818, - 120653.14469960642, - 120921.80553477554, - 121346.10610353643, - 121890.97161669757, - 122523.65692010873, - 123154.88303919572, - 123748.04194577051, - 124220.722670197, - 124547.46881448678, - 124713.98021541325, - 124725.8478896811, - 124615.28859676725, - 124410.40049644756, - 124143.1772334713, - 123834.21920237524, - 123489.04220121735, - 123102.7083547327, - 122668.61723656589, - 122174.1676156626, - 121625.86683882502, - 121025.47806248063, - 120398.01289783663, - 119764.83324684862, - 119143.4654539157, - 118553.25851156158, - 117988.56064404348, - 117449.84965605411, - 116918.18555509955, - 116382.47053161224, - 115833.46563244362, - 115270.8408475071, - 114709.81717903576, - 114161.69293338594, - 113649.84895132374, - 113182.20872607168, - 112765.1322703339, - 112390.1910057921, - 112039.42113069612, - 111692.3315673053, - 111329.97749689779, - 110943.28972887492, - 110534.1466055137, - 110116.08923806794, - 109710.53446026759, - 109339.42692810661, - 109047.76912298618 - ], - "flow:branch15_seg1:J29": [ - 4.9065980403453295, - 4.920645766838489, - 4.9671736036656275, - 5.048361074562329, - 5.166777310948703, - 5.326239454634791, - 5.539744374746547, - 5.827417455323504, - 6.220870108831904, - 6.759052771616036, - 7.477114322995122, - 8.415306140552895, - 9.587968782100921, - 11.00916788629562, - 12.658435694349567, - 14.497341019150557, - 16.484441937429338, - 18.546438115551833, - 20.63659949835185, - 22.67316078626914, - 24.603501591620503, - 26.371747755086083, - 27.92713108901626, - 29.23444329195946, - 30.245377346746984, - 30.937623596161952, - 31.28830747182258, - 31.2899307888071, - 30.9463356914754, - 30.277121249005504, - 29.3076895408915, - 28.08675389929302, - 26.647325170529882, - 25.044466369030808, - 23.317405507600622, - 21.497897185596745, - 19.622855454522135, - 17.70285121962079, - 15.780524413898078, - 13.871617340567875, - 12.0170041852135, - 10.252412545439437, - 8.6175324835605, - 7.166353772864662, - 5.922950996877476, - 4.916747417494367, - 4.14501174894069, - 3.598095439550972, - 3.2509831476489266, - 3.066987855098917, - 3.012017773299699, - 3.0564945717703265, - 3.181351439361449, - 3.3796968775640566, - 3.6509442395213085, - 3.997706075286299, - 4.421207964461231, - 4.908688815321596, - 5.444598267565986, - 5.9966767921842, - 6.533767293139648, - 7.021962425729048, - 7.431662289983382, - 7.749658628019405, - 7.9701458955977635, - 8.102958581257056, - 8.1625429068955, - 8.16693634972137, - 8.132881424832206, - 8.071593245197876, - 7.987737472207663, - 7.881743427502098, - 7.7504193153194105, - 7.592650273028331, - 7.409763020704569, - 7.207450117855657, - 6.996939058848959, - 6.787938247775134, - 6.59176834706953, - 6.413057830284599, - 6.253265961970907, - 6.1090379720508965, - 5.973149132927676, - 5.840038797161989, - 5.704984850852003, - 5.56979830847674, - 5.439325633170764, - 5.321564196915184, - 5.224740907749703, - 5.15370116255216, - 5.109336082733101, - 5.086511188344666, - 5.0761562080160845, - 5.067716850991588, - 5.052434941430426, - 5.026035460677493, - 4.98987897544756, - 4.951051423150269, - 4.91959856788246, - 4.9065980403453295 - ], - "pressure:branch15_seg1:J29": [ - 108747.37954009394, - 108471.24540335308, - 108258.32560604053, - 108113.30212400881, - 108043.51602903618, - 108062.13871754486, - 108209.05395654235, - 108527.6368039159, - 109099.64135577089, - 109996.04397492793, - 111293.33787239017, - 113070.06223503401, - 115336.70351259416, - 118144.44176351758, - 121413.84307372545, - 125124.4565356892, - 129164.8745455586, - 133433.94609243647, - 137844.28985728777, - 142216.19289059757, - 146510.07428468086, - 150553.7281135116, - 154301.46857536558, - 157622.80000079487, - 160420.91472393554, - 162648.3974082635, - 164232.56825564426, - 165160.0926866335, - 165429.54422416654, - 165065.81277260935, - 164125.41707530365, - 162696.02681866335, - 160819.80732669812, - 158629.98777805685, - 156133.15110404117, - 153433.555905693, - 150539.6625321189, - 147498.48587080324, - 144401.94342707528, - 141238.24594793128, - 138147.13424441867, - 135134.44168700845, - 132331.38716464667, - 129808.43341882934, - 127597.48578164057, - 125757.28881427512, - 124249.51881790302, - 123069.12677420149, - 122159.11220087337, - 121466.3562129034, - 120946.25719435753, - 120568.25335333827, - 120316.0308778686, - 120201.45554016976, - 120227.15719874552, - 120412.46674497513, - 120750.73570528171, - 121212.97564081941, - 121772.08086579916, - 122352.39054262497, - 122914.18171157653, - 123384.68700713008, - 123729.75381137765, - 123931.183478074, - 123986.3697137928, - 123919.61510092109, - 123754.84666453511, - 123520.90918378311, - 123239.17514319048, - 122918.65408640032, - 122558.15991646358, - 122153.42299846414, - 121693.79670145869, - 121182.26797832453, - 120619.74736025474, - 120024.69429899372, - 119416.80781972765, - 118812.21129865096, - 118230.3792476189, - 117670.40509622938, - 117134.15746270317, - 116608.15241855392, - 116081.59068043774, - 115545.72868155967, - 114997.43440982421, - 114447.43915857008, - 113905.5396165507, - 113391.4503904445, - 112915.23167883865, - 112484.51304057233, - 112095.2310815087, - 111733.70802093671, - 111382.22229836232, - 111022.84939616415, - 110644.72587690153, - 110246.28524379808, - 109836.4960372327, - 109432.84037756834, - 109054.9310827982, - 108747.37954009394 - ], - "flow:J29:branch15_seg2": [ - 4.9065980403453295, - 4.920645766838489, - 4.9671736036656275, - 5.048361074562329, - 5.166777310948703, - 5.326239454634791, - 5.539744374746547, - 5.827417455323504, - 6.220870108831904, - 6.759052771616036, - 7.477114322995122, - 8.415306140552895, - 9.587968782100921, - 11.00916788629562, - 12.658435694349567, - 14.497341019150557, - 16.484441937429338, - 18.546438115551833, - 20.63659949835185, - 22.67316078626914, - 24.603501591620503, - 26.371747755086083, - 27.92713108901626, - 29.23444329195946, - 30.245377346746984, - 30.937623596161952, - 31.28830747182258, - 31.2899307888071, - 30.9463356914754, - 30.277121249005504, - 29.3076895408915, - 28.08675389929302, - 26.647325170529882, - 25.044466369030808, - 23.317405507600622, - 21.497897185596745, - 19.622855454522135, - 17.70285121962079, - 15.780524413898078, - 13.871617340567875, - 12.0170041852135, - 10.252412545439437, - 8.6175324835605, - 7.166353772864662, - 5.922950996877476, - 4.916747417494367, - 4.14501174894069, - 3.598095439550972, - 3.2509831476489266, - 3.066987855098917, - 3.012017773299699, - 3.0564945717703265, - 3.181351439361449, - 3.3796968775640566, - 3.6509442395213085, - 3.997706075286299, - 4.421207964461231, - 4.908688815321596, - 5.444598267565986, - 5.9966767921842, - 6.533767293139648, - 7.021962425729048, - 7.431662289983382, - 7.749658628019405, - 7.9701458955977635, - 8.102958581257056, - 8.1625429068955, - 8.16693634972137, - 8.132881424832206, - 8.071593245197876, - 7.987737472207663, - 7.881743427502098, - 7.7504193153194105, - 7.592650273028331, - 7.409763020704569, - 7.207450117855657, - 6.996939058848959, - 6.787938247775134, - 6.59176834706953, - 6.413057830284599, - 6.253265961970907, - 6.1090379720508965, - 5.973149132927676, - 5.840038797161989, - 5.704984850852003, - 5.56979830847674, - 5.439325633170764, - 5.321564196915184, - 5.224740907749703, - 5.15370116255216, - 5.109336082733101, - 5.086511188344666, - 5.0761562080160845, - 5.067716850991588, - 5.052434941430426, - 5.026035460677493, - 4.98987897544756, - 4.951051423150269, - 4.91959856788246, - 4.9065980403453295 - ], - "pressure:J29:branch15_seg2": [ - 108747.37954009394, - 108471.24540335308, - 108258.32560604053, - 108113.30212400881, - 108043.51602903618, - 108062.13871754486, - 108209.05395654235, - 108527.6368039159, - 109099.64135577089, - 109996.04397492793, - 111293.33787239017, - 113070.06223503401, - 115336.70351259416, - 118144.44176351758, - 121413.84307372545, - 125124.4565356892, - 129164.8745455586, - 133433.94609243647, - 137844.28985728777, - 142216.19289059757, - 146510.07428468086, - 150553.7281135116, - 154301.46857536558, - 157622.80000079487, - 160420.91472393554, - 162648.3974082635, - 164232.56825564426, - 165160.0926866335, - 165429.54422416654, - 165065.81277260935, - 164125.41707530365, - 162696.02681866335, - 160819.80732669812, - 158629.98777805685, - 156133.15110404117, - 153433.555905693, - 150539.6625321189, - 147498.48587080324, - 144401.94342707528, - 141238.24594793128, - 138147.13424441867, - 135134.44168700845, - 132331.38716464667, - 129808.43341882934, - 127597.48578164057, - 125757.28881427512, - 124249.51881790302, - 123069.12677420149, - 122159.11220087337, - 121466.3562129034, - 120946.25719435753, - 120568.25335333827, - 120316.0308778686, - 120201.45554016976, - 120227.15719874552, - 120412.46674497513, - 120750.73570528171, - 121212.97564081941, - 121772.08086579916, - 122352.39054262497, - 122914.18171157653, - 123384.68700713008, - 123729.75381137765, - 123931.183478074, - 123986.3697137928, - 123919.61510092109, - 123754.84666453511, - 123520.90918378311, - 123239.17514319048, - 122918.65408640032, - 122558.15991646358, - 122153.42299846414, - 121693.79670145869, - 121182.26797832453, - 120619.74736025474, - 120024.69429899372, - 119416.80781972765, - 118812.21129865096, - 118230.3792476189, - 117670.40509622938, - 117134.15746270317, - 116608.15241855392, - 116081.59068043774, - 115545.72868155967, - 114997.43440982421, - 114447.43915857008, - 113905.5396165507, - 113391.4503904445, - 112915.23167883865, - 112484.51304057233, - 112095.2310815087, - 111733.70802093671, - 111382.22229836232, - 111022.84939616415, - 110644.72587690153, - 110246.28524379808, - 109836.4960372327, - 109432.84037756834, - 109054.9310827982, - 108747.37954009394 - ], - "flow:INFLOW:branch0_seg0": [ - 25.674478887744097, - 25.94535841671895, - 26.40397770930373, - 27.078557220791417, - 27.987924243407218, - 29.223018699271037, - 30.872863997957957, - 33.14710517392046, - 36.24233649316084, - 40.32941619284094, - 45.707199117022874, - 52.3992217826857, - 60.62210097617118, - 70.22501556164931, - 81.05839546420485, - 92.99648379412291, - 105.49834749077813, - 118.48276992683357, - 131.27259753840468, - 143.7649170026322, - 155.35688109143825, - 165.80346685084584, - 174.7861901139547, - 181.8894769571331, - 187.03405970454247, - 189.92968409297364, - 190.54660446170104, - 188.8393317841419, - 184.95869990371955, - 179.00706479935084, - 171.36892276825773, - 162.17188382738493, - 151.9224840372999, - 140.69629176277343, - 128.8758653843917, - 116.79196935170167, - 104.40209357822438, - 92.1540459381269, - 79.96017988979212, - 68.31079157809357, - 57.16093078281224, - 46.90621631712706, - 37.866800968464474, - 30.021884357838466, - 23.657451092007406, - 18.65215821403915, - 15.026506001685505, - 12.617459012327329, - 11.222617178148154, - 10.668320045402487, - 10.775780400321388, - 11.426953130150322, - 12.573357800939682, - 14.17715631699319, - 16.245875690586708, - 18.77312459468089, - 21.66200146102451, - 24.87301321309217, - 28.183734122582287, - 31.485700969509814, - 34.5548741049021, - 37.202931571616574, - 39.38566156483294, - 41.01172010677542, - 42.138563589177416, - 42.809473436279944, - 43.1255305264649, - 43.165580110023946, - 42.997790777114155, - 42.65457442604729, - 42.154960997292505, - 41.48541045198559, - 40.6598910096873, - 39.67391551057553, - 38.569986753415115, - 37.41430731338149, - 36.24090910332261, - 35.129941865339894, - 34.09139769664441, - 33.1525575391422, - 32.297312222462224, - 31.48971969828123, - 30.714288194429606, - 29.93583369617746, - 29.174750273047025, - 28.437718719180175, - 27.777383767244913, - 27.22607248914084, - 26.812199166529453, - 26.54440338309936, - 26.39417815218615, - 26.321846831150243, - 26.27277536814443, - 26.202064928995775, - 26.085898194797117, - 25.925203022216337, - 25.754547731026946, - 25.61956451593617, - 25.57745195059132, - 25.674478887744097 - ], - "pressure:INFLOW:branch0_seg0": [ - 109225.35517502786, - 109048.0668547693, - 108945.75755824002, - 108923.55935985269, - 108989.75213785323, - 109183.28622178744, - 109568.42394205276, - 110223.78563380771, - 111267.83853982725, - 112764.83918082484, - 114831.12019546475, - 117475.38563010095, - 120730.43919392621, - 124568.41192311261, - 128812.29886926232, - 133484.49259455275, - 138327.1871978209, - 143331.76761132048, - 148291.61620013483, - 153053.97536626118, - 157575.57553654382, - 161627.20212355338, - 165211.5023684122, - 168128.8699169012, - 170328.15296371919, - 171737.8044459968, - 172321.04973836194, - 172088.5464223156, - 171108.68052392793, - 169429.474600592, - 167218.7294116578, - 164538.0865110365, - 161518.83677185225, - 158315.953825623, - 154890.1663383233, - 151424.998873472, - 147824.1414270587, - 144234.7188256728, - 140685.9229493635, - 137234.79654450406, - 134028.97172195464, - 131074.82301420873, - 128562.52123640837, - 126459.60447397645, - 124823.94735868313, - 123600.63113631333, - 122720.7203344653, - 122139.64845171306, - 121734.53349132377, - 121458.96592523201, - 121268.59543071088, - 121159.89011855445, - 121155.6707506346, - 121290.58801679319, - 121577.3960699162, - 122042.99445812752, - 122639.22095851495, - 123331.87749431231, - 124037.11833090613, - 124675.748185626, - 125192.60355051565, - 125508.48597317269, - 125640.89254669056, - 125585.28555196329, - 125390.94004370298, - 125101.89616715055, - 124754.86372054802, - 124385.36784359274, - 124001.43907460252, - 123594.37976553493, - 123149.58392129304, - 122648.73830986893, - 122084.18065987158, - 121466.29133818735, - 120807.24604063094, - 120146.91694689103, - 119502.06849630733, - 118899.22499496539, - 118339.1855126514, - 117811.43235800066, - 117306.75741036616, - 116792.24758157638, - 116261.87532432457, - 115704.84172568998, - 115135.89676377975, - 114578.14764298004, - 114051.27269063503, - 113581.51595699471, - 113170.25560329833, - 112814.42388280501, - 112491.94772319662, - 112174.68026513058, - 111836.7692698948, - 111461.75324082223, - 111049.96659225323, - 110615.41027661464, - 110186.24780721415, - 109791.43187676017, - 109457.38381138149, - 109225.35517502786 - ], - "flow:branch4_seg2:RCR_0": [ - 2.340962380744252, - 2.3374102617755828, - 2.3450875466708863, - 2.365912336199518, - 2.401248792859304, - 2.45287245161515, - 2.5233929300405005, - 2.6200412659893852, - 2.7514312210954053, - 2.9326453324170214, - 3.17870389968377, - 3.5048163114011297, - 3.927891849158672, - 4.451859509954861, - 5.086431711857931, - 5.818053270317741, - 6.637610499380785, - 7.525109910083959, - 8.452000870935095, - 9.400234721562287, - 10.32874199642577, - 11.221862564747795, - 12.045969985638042, - 12.781911599916025, - 13.409043279876732, - 13.903702327213685, - 14.258064224366208, - 14.457708054725375, - 14.500439123271699, - 14.387624313312383, - 14.126334055218287, - 13.728797885497471, - 13.215093730591, - 12.597196227294324, - 11.902889914482873, - 11.142559423363375, - 10.335586437776257, - 9.4945870501995, - 8.626959315160397, - 7.755482069538984, - 6.881693413489749, - 6.032415333877002, - 5.216482800359113, - 4.456900189007041, - 3.774318862946777, - 3.175937165962824, - 2.6783287202941106, - 2.2766264597268084, - 1.9719853981664295, - 1.7538389922417479, - 1.6097398419244058, - 1.5287421608351588, - 1.4999549590261199, - 1.5166783849317131, - 1.5762118757571801, - 1.6762373123574612, - 1.8169485913338086, - 1.9957531931846924, - 2.2053566575910617, - 2.4391269646057645, - 2.68108979183756, - 2.920546314920642, - 3.1414040919814323, - 3.3329376059560007, - 3.4895617842794984, - 3.607406535437425, - 3.6902207947414523, - 3.7415388275729664, - 3.7677309329586715, - 3.7742499809216032, - 3.7647021627738466, - 3.7409355060209, - 3.7036120439751756, - 3.65204394521793, - 3.587253883122604, - 3.510163046571059, - 3.4242873613136244, - 3.3341898973257384, - 3.2434759219436717, - 3.157002699306905, - 3.0757033002163654, - 3.00092340933216, - 2.931019413004802, - 2.8638955421113153, - 2.7980629160257435, - 2.732154414999303, - 2.6678251462572806, - 2.6065943241445315, - 2.551980181168818, - 2.506464400607471, - 2.4716349334001815, - 2.4474781143229913, - 2.431591918545503, - 2.4207110844329773, - 2.410983604063525, - 2.399531777792505, - 2.3851188079212617, - 2.3685519910454467, - 2.35261084838154, - 2.340962380744252 - ], - "pressure:branch4_seg2:RCR_0": [ - 108282.47874626964, - 107930.87576779995, - 107621.02169102132, - 107361.33890648374, - 107158.51096721091, - 107020.87983075899, - 106959.95547748014, - 107004.06137954911, - 107187.47125653249, - 107568.63218158044, - 108208.01702144499, - 109168.6830202501, - 110522.07149812618, - 112295.52582764359, - 114537.5597186015, - 117215.20662140811, - 120308.84190027062, - 123759.40955335775, - 127473.6082224976, - 131392.22114420074, - 135370.9656838321, - 139350.19880887563, - 143204.5793045504, - 146854.90441855846, - 150214.7914936841, - 153183.67379015908, - 155714.47958279736, - 157735.5890602403, - 159216.9882883824, - 160141.22742991734, - 160511.59811605152, - 160350.72439812563, - 159711.35976266238, - 158620.11370083183, - 157161.77990923155, - 155363.49920710284, - 153285.37561038753, - 150966.99669336816, - 148430.33227276345, - 145753.8132439598, - 142943.21776069037, - 140094.42412563635, - 137243.4937488386, - 134477.54261405958, - 131879.21611858552, - 129485.55605801963, - 127368.3160087253, - 125524.96321084471, - 123973.60752957108, - 122690.78567853433, - 121644.52770921249, - 120806.50481871852, - 120146.8520910281, - 119649.0884304306, - 119309.96282105206, - 119127.22294983601, - 119107.13944746161, - 119246.19259294559, - 119523.58264735786, - 119919.912495895, - 120381.47713962299, - 120871.03651271873, - 121330.7116767459, - 121719.28021914203, - 122012.52512322628, - 122191.42460658522, - 122263.7042116478, - 122236.86646064465, - 122129.06531908686, - 121956.15770174949, - 121728.20291968757, - 121449.52537463079, - 121120.49431863413, - 120736.76193989282, - 120299.9691890092, - 119811.57908541906, - 119282.38848355498, - 118727.50908553111, - 118159.23462411226, - 117594.8924692381, - 117038.49650636814, - 116495.64785849139, - 115961.51762293155, - 115429.35319934723, - 114894.31788547021, - 114351.73279558288, - 113807.52209300459, - 113267.36761458352, - 112744.26472116544, - 112248.06537166257, - 111785.74287571554, - 111358.8184529594, - 110960.27105611579, - 110579.64927423447, - 110203.93233979779, - 109823.00647950257, - 109432.19549692373, - 109033.92677960709, - 108637.78579803427, - 108282.47874626964 - ], - "flow:branch6_seg2:RCR_1": [ - 3.464970296958512, - 3.494382372115413, - 3.553902685946891, - 3.643332989709192, - 3.7647198472942347, - 3.920965173105704, - 4.1263606771024826, - 4.401359542748433, - 4.7769364425138, - 5.29181372946632, - 5.9736344903422225, - 6.862784092381201, - 7.962436042237261, - 9.288007139580419, - 10.814565799575387, - 12.500306950533993, - 14.318312938434591, - 16.18556058245995, - 18.079951966376377, - 19.910036831886906, - 21.635652035544055, - 23.203898286056337, - 24.557373011075956, - 25.6704960574049, - 26.48038926159032, - 26.972506776919047, - 27.119630734603184, - 26.917394933372954, - 26.372548469727512, - 25.513891453663803, - 24.36918153653312, - 23.004617958318484, - 21.450836659255838, - 19.775893154189088, - 18.022252537495742, - 16.216445221167568, - 14.407945131032623, - 12.589911770711995, - 10.820763158393428, - 9.103118469476014, - 7.4801355848754545, - 5.985056193011263, - 4.644845429315344, - 3.515145537279284, - 2.59538207578795, - 1.9079804360570454, - 1.429877247851559, - 1.142948979651197, - 1.0142286856572416, - 1.0038036619127089, - 1.0804830151518598, - 1.2201520043270009, - 1.4112908460331477, - 1.6534840774773993, - 1.951613514450784, - 2.309335356808433, - 2.730252129539333, - 3.1974737990804445, - 3.6978167823862687, - 4.197329668565355, - 4.668889705401987, - 5.083256805490697, - 5.41486952994811, - 5.659986033210277, - 5.816204871697094, - 5.899723858632964, - 5.9254592561464, - 5.911786194079301, - 5.872928148015316, - 5.817055474909286, - 5.745176360642801, - 5.655526115281767, - 5.543452174718815, - 5.408012611172101, - 5.251657390257676, - 5.080513812107045, - 4.907614491322831, - 4.740625366322789, - 4.590567384657812, - 4.458618792287432, - 4.344389787643522, - 4.242816100633126, - 4.145237729043403, - 4.047420031051787, - 3.9449444760356074, - 3.8422139404163436, - 3.7448814789288503, - 3.6612798581617594, - 3.599237780623569, - 3.561311640488879, - 3.546901461439384, - 3.5486836435636246, - 3.55687083266375, - 3.5613917016139367, - 3.555117982275522, - 3.536255717316374, - 3.5083863146204926, - 3.4804110757242075, - 3.462542955743237, - 3.464970296958512 - ], - "pressure:branch6_seg2:RCR_1": [ - 108970.33985895183, - 108681.41659306857, - 108461.21535240478, - 108311.81407613569, - 108240.02474978044, - 108254.6200233883, - 108388.7451091271, - 108689.94412817615, - 109229.66026844562, - 110098.62909994589, - 111367.1033782169, - 113134.76506454861, - 115425.68982657848, - 118289.704518111, - 121692.74704085315, - 125561.692208991, - 129852.34885276793, - 134398.17838706347, - 139155.4757601814, - 143931.35333989767, - 148633.38578346247, - 153139.94629692507, - 157314.17887261842, - 161083.34683852465, - 164292.5920737094, - 166884.8781930905, - 168775.24236585578, - 169924.97347805506, - 170318.98242172174, - 169989.81323747386, - 168970.34167751262, - 167377.7341582606, - 165259.47433822858, - 162744.80289846036, - 159915.35143536163, - 156821.35551772223, - 153565.16874531936, - 150132.66101111504, - 146648.18981976513, - 143122.78622180462, - 139652.9151560889, - 136318.8417706631, - 133188.90976280323, - 130395.66844142677, - 127956.287248625, - 125936.68013620895, - 124308.15381338024, - 123049.95661114481, - 122108.51798295847, - 121412.28593735115, - 120904.8742001131, - 120542.21421070994, - 120304.97747664948, - 120196.40571355322, - 120231.10861195803, - 120421.32371576644, - 120779.6793537635, - 121275.4086977544, - 121884.12841294531, - 122536.32780066055, - 123173.78167940883, - 123731.82354891994, - 124150.80497006807, - 124415.56654799476, - 124513.46112815816, - 124471.25087361585, - 124314.45998617428, - 124077.24135815157, - 123786.54673276216, - 123457.69026019155, - 123091.43165394284, - 122682.70577591882, - 122220.1714511518, - 121699.91541301717, - 121125.25573925642, - 120507.44780062944, - 119873.05612171964, - 119238.32194806142, - 118627.26027945224, - 118043.9587661432, - 117489.16129595814, - 116953.71536783047, - 116420.28607282661, - 115880.23984306568, - 115324.16431083831, - 114761.01951330875, - 114202.86185429589, - 113667.86916320409, - 113173.93650812267, - 112728.34549777824, - 112331.91667278484, - 111971.0827195575, - 111626.39690681375, - 111276.95548664105, - 110907.24077258838, - 110512.47575260323, - 110099.16813843398, - 109685.46171498299, - 109293.0662290239, - 108970.33985895183 - ], - "flow:branch8_seg2:RCR_2": [ - 2.10338423835452, - 2.1039224624057287, - 2.117012342115531, - 2.144624863439817, - 2.187946190655085, - 2.248839317935319, - 2.3298576597822658, - 2.438990621364695, - 2.5860050330780022, - 2.7873074548390346, - 3.060653840289863, - 3.421829228570122, - 3.8912535090344784, - 4.472493114503663, - 5.1769436584771205, - 5.9915495585696, - 6.903231863347009, - 7.895517637026048, - 8.93245006151591, - 9.998275143893878, - 11.045269625398177, - 12.053583433685326, - 12.987783518727294, - 13.819826371792292, - 14.528558819444596, - 15.08087963857141, - 15.466880128852521, - 15.667850135660052, - 15.67889349343314, - 15.50215883580346, - 15.146259727481013, - 14.625901560695628, - 13.968429152115704, - 13.188944774781682, - 12.323274806795421, - 11.388544526132582, - 10.406079528663314, - 9.397332489612252, - 8.367847417643432, - 7.348415282589497, - 6.341138829471442, - 5.375216718305266, - 4.464508724105718, - 3.6292503732901573, - 2.89654650379062, - 2.268658542672615, - 1.7629347466226515, - 1.3714463185581023, - 1.089893263567365, - 0.9061141248215921, - 0.8012491351943768, - 0.7626194123390337, - 0.7768907997512737, - 0.8359502850646319, - 0.9372799278567525, - 1.078558734188815, - 1.2601332176809905, - 1.4803592574706315, - 1.73054455514028, - 2.0041429287072523, - 2.283437697980182, - 2.556082900768623, - 2.805724171190334, - 3.0192539429004417, - 3.192576688727836, - 3.3212685951649967, - 3.4104144595419355, - 3.464997758396319, - 3.492097334635313, - 3.498688210507968, - 3.488612218183164, - 3.4638153391287516, - 3.4249138043241474, - 3.3708459746061115, - 3.3026243377921554, - 3.2214611244634086, - 3.13099801439388, - 3.036933502147802, - 2.9429475103074805, - 2.85468642704212, - 2.7731042574767675, - 2.699144167308968, - 2.631180069622248, - 2.5660242706098906, - 2.502237461347183, - 2.4379929561401084, - 2.375220995781412, - 2.315936968994243, - 2.2638421457651794, - 2.222118711529513, - 2.192165225545878, - 2.174001303231048, - 2.1646691706368033, - 2.1602376006611688, - 2.1563414862775843, - 2.1496341034921276, - 2.1389058614247554, - 2.125217615365285, - 2.1119721079555442, - 2.10338423835452 - ], - "pressure:branch8_seg2:RCR_2": [ - 108660.7130795604, - 108310.59337157762, - 108007.53765012756, - 107760.34958879472, - 107575.27293342711, - 107461.13063089944, - 107429.420023727, - 107511.33948159001, - 107745.59193358502, - 108195.80512216687, - 108932.89422339847, - 110023.03809806606, - 111551.3025166605, - 113545.4011819041, - 116061.3088078445, - 119069.66410643594, - 122538.40874390496, - 126422.29829634972, - 130603.27101057391, - 135030.83657875386, - 139538.01161587788, - 144050.00753058784, - 148434.6395114159, - 152580.00392448154, - 156395.85181348742, - 159745.78716572648, - 162571.73370255888, - 164783.1281429263, - 166335.94919817208, - 167210.8898327967, - 167412.22451281044, - 166967.11694301825, - 165950.3829733481, - 164397.02005366667, - 162418.08957134365, - 160063.6934315747, - 157400.4714743987, - 154499.64228391857, - 151377.81009359364, - 148142.9124036278, - 144805.0292242693, - 141470.49549697115, - 138195.96078354368, - 135061.7943684922, - 132176.48244399385, - 129563.26293694007, - 127299.50597572837, - 125374.89818962062, - 123790.56768824386, - 122519.16528354053, - 121507.37552372705, - 120721.27442416041, - 120122.6661085578, - 119690.02402848928, - 119420.58649653872, - 119311.98059022355, - 119370.9013767543, - 119597.13035974686, - 119964.92586765568, - 120454.98703952, - 121007.26463725707, - 121578.17947991051, - 122108.29913101734, - 122547.21051342138, - 122874.99158522602, - 123069.88755596001, - 123143.52712185589, - 123107.9796993541, - 122983.49987851983, - 122791.06520037923, - 122541.4722904856, - 122239.31304125015, - 121884.72866673407, - 121471.96516746609, - 121002.48838560519, - 120478.67666833835, - 119911.68410043883, - 119320.61171846924, - 118718.13271388349, - 118124.48997308941, - 117544.0067652619, - 116981.0491080895, - 116431.00859035639, - 115883.38333149691, - 115333.50388230007, - 114775.06207215408, - 114214.89321774973, - 113660.44666388711, - 113125.41977808093, - 112622.25738171232, - 112157.44145997333, - 111732.76032428723, - 111339.3661421847, - 110964.48887442499, - 110593.2458240747, - 110213.74400377397, - 109821.23827741825, - 109418.90733474462, - 109018.44703557767, - 108660.7130795604 - ], - "flow:branch9_seg2:RCR_3": [ - 4.611922327839921, - 4.6323310090724075, - 4.686460270627847, - 4.776413644420641, - 4.904883004918245, - 5.0755201025705645, - 5.301797342484984, - 5.60470273468957, - 6.0172035897517535, - 6.5811031844952375, - 7.333172053698542, - 8.318790486196512, - 9.554627470495701, - 11.060517352172083, - 12.820243020861241, - 14.796331173966365, - 16.952650109165834, - 19.2101689569776, - 21.523648353861297, - 23.80244279652366, - 25.985016375565937, - 28.005575486058703, - 29.798311022926715, - 31.318030651643046, - 32.50113629605899, - 33.31522387100215, - 33.727564534804515, - 33.7248172990402, - 33.3077191385147, - 32.49939873040276, - 31.32948256402034, - 29.859569933275637, - 28.13255796721897, - 26.217581741389843, - 24.168340245841975, - 22.025551584065617, - 19.839947638744675, - 17.625207153561526, - 15.433198419508262, - 13.282686041044588, - 11.218580326578017, - 9.280061861639577, - 7.5068355209975515, - 5.955982892885018, - 4.647132368131888, - 3.6080633475532653, - 2.829352436375139, - 2.296405513724063, - 1.9786060000582408, - 1.8336313889720999, - 1.8236196341500948, - 1.9157023239572246, - 2.089170229509429, - 2.336456948749848, - 2.6571149210109994, - 3.0539291838690863, - 3.5292222365926316, - 4.069628135250923, - 4.66020026341787, - 5.267326599070078, - 5.858882790974478, - 6.3993129627748235, - 6.856431366088265, - 7.2163137151595205, - 7.471545163748361, - 7.63246492729542, - 7.713905961774742, - 7.735030543707602, - 7.713854333738437, - 7.662634040913356, - 7.586648034407427, - 7.486679326393563, - 7.359440857056882, - 7.203791572800313, - 7.021216641912708, - 6.817585972229464, - 6.605193542523254, - 6.394133276917641, - 6.196807315477108, - 6.0180519497981555, - 5.859536314319224, - 5.717854480942936, - 5.585103161251083, - 5.455550717536127, - 5.323826938860649, - 5.191799726619871, - 5.064494093935441, - 4.95023923350929, - 4.857839699928857, - 4.792340876224657, - 4.754789877648345, - 4.7397790526867505, - 4.737747112102805, - 4.737543227825783, - 4.729874179654776, - 4.710163355575126, - 4.679723532618687, - 4.646011662383153, - 4.6195300059895175, - 4.611922327839921 - ], - "pressure:branch9_seg2:RCR_3": [ - 108713.64291017831, - 108399.44130615718, - 108144.80687130516, - 107955.42829616804, - 107838.08952103782, - 107801.31373953052, - 107870.10764386416, - 108082.87993382754, - 108499.196212206, - 109195.5648169103, - 110242.78513979258, - 111728.36881506619, - 113695.16459585392, - 116192.0889546502, - 119209.73445719156, - 122701.73878483659, - 126621.8616236025, - 130849.75521443399, - 135316.1469583252, - 139873.38280598595, - 144415.6974793538, - 148826.87288935747, - 152985.71860181892, - 156801.65179568416, - 160150.30504312748, - 162955.0660748443, - 165136.89969814316, - 166646.83072801726, - 167458.62363884965, - 167583.50375036098, - 167045.07891977162, - 165922.26351373625, - 164267.1812879128, - 162178.25530657623, - 159733.44964019206, - 156992.1695229178, - 154033.75702523853, - 150878.8771421397, - 147612.65730109086, - 144268.92504262397, - 140925.60373623992, - 137654.7041510282, - 134530.9977938746, - 131661.11144669334, - 129093.04752303302, - 126889.4911817823, - 125053.25621713154, - 123577.63093028052, - 122428.33398751183, - 121549.40480298019, - 120889.39776160567, - 120402.55590237044, - 120061.12809527264, - 119857.73847680248, - 119796.406790451, - 119886.39451375481, - 120136.47032627699, - 120529.45361791003, - 121044.59926610104, - 121629.24206414766, - 122230.77612348068, - 122788.91538272919, - 123246.47732552951, - 123574.58180653873, - 123754.25200818416, - 123795.564202352, - 123716.81313446522, - 123544.5147403303, - 123304.60356191054, - 123014.67777065698, - 122681.5674777949, - 122304.97557254283, - 121877.90927875738, - 121396.68295915543, - 120861.94487163448, - 120281.68309818914, - 119674.99694929535, - 119058.1497939811, - 118451.90906249372, - 117865.33290911086, - 117302.49374829486, - 116759.17162458402, - 116223.39478308707, - 115686.27784998216, - 115139.12829466951, - 114584.9125423927, - 114031.99474920702, - 113494.53273570495, - 112988.07335917797, - 112522.47208914727, - 112101.29360748696, - 111717.43434314209, - 111356.51168541645, - 111000.85287282271, - 110635.11023604994, - 110251.14869176093, - 109850.31219615063, - 109444.24771197369, - 109050.16963898674, - 108713.64291017831 - ], - "flow:branch10_seg2:RCR_4": [ - 0.908416045360656, - 0.9141972853884434, - 0.9269346280072731, - 0.9465927149911144, - 0.9737180549552668, - 1.009191197406625, - 1.0554609623345284, - 1.1187280384316207, - 1.2040486620148443, - 1.322991198415295, - 1.4807914797488442, - 1.6869062923946643, - 1.9464339726413662, - 2.256751520011441, - 2.623207715137312, - 3.025356965851405, - 3.467489632458866, - 3.9252309807002064, - 4.392494796756738, - 4.855467256953912, - 5.288771831672211, - 5.697902738491951, - 6.050853547892469, - 6.3533604706867415, - 6.583530590096183, - 6.734971490583176, - 6.806667589827655, - 6.789645285075608, - 6.689450101683129, - 6.510123248250881, - 6.25784727174511, - 5.947186942187345, - 5.5889581360149885, - 5.191571934997215, - 4.777244200663501, - 4.3392774667031455, - 3.9009758377759995, - 3.454781324202974, - 3.0136915349449964, - 2.5889773041488406, - 2.1741628678746023, - 1.7965698334017013, - 1.4456523227441769, - 1.1461332857538458, - 0.8963770105595216, - 0.6971058345716741, - 0.5535783011066093, - 0.4519452367430517, - 0.39390284019503774, - 0.36544348655115727, - 0.36152407999340014, - 0.3765292647232335, - 0.4071357117508329, - 0.4528051842207535, - 0.5152280815662166, - 0.5933535675072457, - 0.6894890074937559, - 0.7990190636637502, - 0.9174295568388902, - 1.0402060894676757, - 1.1558292822674872, - 1.2626181587883512, - 1.3496401116717316, - 1.4177765076996733, - 1.4656980641052173, - 1.4951434404660224, - 1.5111001297095132, - 1.515727907468003, - 1.5134374504670836, - 1.5056378074623469, - 1.492781057908078, - 1.4745015547040192, - 1.4502441940402866, - 1.4191570363410282, - 1.382936765133288, - 1.3419053361244557, - 1.2999507674778057, - 1.25889330251045, - 1.2206336908606088, - 1.187065933421675, - 1.1565246256587816, - 1.1296114912243524, - 1.1032727108972984, - 1.0770810636213806, - 1.0500841727793557, - 1.0226829870909822, - 0.9971599959039841, - 0.974236406576759, - 0.9568672847350447, - 0.9449137413996933, - 0.9387667202767842, - 0.9368414428382393, - 0.9366877426127254, - 0.936255749157772, - 0.93361993762948, - 0.9283642526538171, - 0.9211386860590636, - 0.9138409498058052, - 0.908872434323728, - 0.908416045360656 - ], - "pressure:branch10_seg2:RCR_4": [ - 108824.82736995311, - 108522.40773680444, - 108281.8862798213, - 108105.25125981007, - 107999.22459677412, - 107973.54158121515, - 108051.0777976855, - 108286.80083161409, - 108728.08627691983, - 109478.04500053688, - 110591.22049557665, - 112158.2946307255, - 114237.81210903777, - 116824.49853500178, - 119979.6363270752, - 123551.1559691175, - 127585.15133232521, - 131892.70702016688, - 136425.89208368058, - 141073.88476226057, - 145622.2789369356, - 150106.5911795243, - 154252.2333536261, - 158086.98156139647, - 161412.58127819834, - 164150.61756511038, - 166267.0838813443, - 167660.44645532177, - 168347.65147729556, - 168334.77383222934, - 167647.6382634425, - 166383.137029096, - 164613.28471567403, - 162392.17210482285, - 159892.8090673775, - 157054.994581719, - 154064.83561325842, - 150861.56075549455, - 147550.0432771608, - 144227.8567839597, - 140846.46925584885, - 137637.45411206436, - 134526.34978824382, - 131727.4999822936, - 129246.06801705042, - 127103.88851651613, - 125362.86786527855, - 123926.03969191789, - 122821.8936143925, - 121948.69185781057, - 121274.04540765843, - 120759.60915067107, - 120383.73959498716, - 120147.04570129578, - 120068.40941973442, - 120144.50957527863, - 120399.46196325544, - 120800.93376175256, - 121315.35156057592, - 121908.28197880644, - 122484.92692101134, - 123028.85238662982, - 123446.0678854564, - 123736.84384046658, - 123884.02603584985, - 123894.87679939297, - 123804.87025090154, - 123627.31914795317, - 123395.13542646267, - 123117.79723619406, - 122797.25863468173, - 122428.8411595811, - 122006.20155687028, - 121520.26980116511, - 120982.9327797635, - 120395.21790894825, - 119787.82255097404, - 119175.77388152824, - 118575.08892192144, - 118002.67846523905, - 117446.23342654968, - 116911.86536874948, - 116375.50350046023, - 115833.7175509963, - 115278.78394517326, - 114713.66261789485, - 114157.28215842605, - 113616.25853182645, - 113116.02805525028, - 112657.36701024136, - 112245.29981980255, - 111868.65886185018, - 111508.45920837237, - 111148.2569781584, - 110771.92580286076, - 110375.2369099466, - 109962.69306257249, - 109549.36576124589, - 109155.19173063315, - 108824.82736995311 - ], - "flow:branch11_seg0:RCR_5": [ - 1.1880352070857652, - 1.204843853797469, - 1.2325337473077176, - 1.2707084717514536, - 1.3203895179035825, - 1.3832544568224399, - 1.4670719913105457, - 1.5798037050704283, - 1.7358593672002216, - 1.9483469742031054, - 2.226641041390795, - 2.5856190052689816, - 3.0193069631056586, - 3.5365458470310513, - 4.1174815156402955, - 4.750214094624897, - 5.420860349902037, - 6.098382861207587, - 6.7780718540696085, - 7.419127259248108, - 8.016833993725985, - 8.543853088493009, - 8.98715449534217, - 9.331928877817697, - 9.55642225282731, - 9.65965718954928, - 9.630539490197144, - 9.47272167797316, - 9.19171400227867, - 8.80200378752542, - 8.317660237901302, - 7.767809685465622, - 7.160041935811667, - 6.527157893425745, - 5.875424734653039, - 5.2192513766742765, - 4.570001436810871, - 3.9257279327584156, - 3.311764576587713, - 2.7202522256719113, - 2.1776161019369917, - 1.6851191389819022, - 1.259964050191005, - 0.9174002878384656, - 0.6498881017164015, - 0.4668035531915498, - 0.35030677250373143, - 0.2949740151564031, - 0.2860610905784838, - 0.3084609885947141, - 0.3539746155528382, - 0.41640078927472013, - 0.49399690148006736, - 0.5902702413727481, - 0.7063096526993977, - 0.8448021221810512, - 1.0047202150461843, - 1.177254679671479, - 1.3579308169721216, - 1.530219851335331, - 1.6876258998938327, - 1.8179540816832578, - 1.9153294431166903, - 1.9816799684589912, - 2.0176616370857743, - 2.0318193117411676, - 2.029764091125018, - 2.017736197031026, - 2.000128151425578, - 1.9779692920597198, - 1.950217204234778, - 1.915754895429453, - 1.8722497036492625, - 1.8207682703840369, - 1.7623461476170355, - 1.7008046754400827, - 1.6412308379879221, - 1.5856616799430485, - 1.538133845885354, - 1.4969403884629302, - 1.4616504325895843, - 1.4292466255574243, - 1.3964708629909885, - 1.3624388064370456, - 1.3262869479912038, - 1.291092051254515, - 1.2591491018939374, - 1.2340771531728179, - 1.2177926236653112, - 1.2105498076160701, - 1.210811208737838, - 1.2149067798317026, - 1.2188976930518822, - 1.2193649853408401, - 1.2147048206091138, - 1.205499205776871, - 1.1942857987082938, - 1.1851963632397693, - 1.1820069483284357, - 1.1880352070857652 - ], - "pressure:branch11_seg0:RCR_5": [ - 109106.1273681991, - 108856.59368670806, - 108679.74255040087, - 108575.7034617162, - 108553.18734871848, - 108625.07216345922, - 108841.7502948611, - 109256.78903351557, - 109964.74781890192, - 111056.10097477761, - 112601.25536903155, - 114706.80077591239, - 117355.39911551644, - 120618.48107696764, - 124394.9555639399, - 128626.00380026731, - 133239.64012303596, - 138053.61079914117, - 143040.741074555, - 147951.4016850432, - 152745.80042692838, - 157246.78027534983, - 161355.63081575933, - 164962.08686915276, - 167908.4278955295, - 170159.18365858946, - 171617.1444213681, - 172272.35616756376, - 172127.30408701894, - 171241.18789871997, - 169673.62671401832, - 167580.5395835045, - 164993.03546069853, - 162097.96877861497, - 158929.44137144, - 155570.72481284704, - 152092.45001955287, - 148484.30752468196, - 144903.47782576305, - 141310.58983491917, - 137872.44454731885, - 134610.46229830736, - 131641.6087000426, - 129076.63987148457, - 126889.9001592482, - 125157.40804244133, - 123791.15176168071, - 122774.36060184106, - 122032.0849854109, - 121483.24501947126, - 121085.3473732572, - 120805.88926049972, - 120638.23093148322, - 120607.1814974218, - 120723.87292293209, - 121009.17880466055, - 121462.29558157634, - 122034.37521036425, - 122700.96538935008, - 123362.98849471926, - 123978.30342251489, - 124468.76589086675, - 124791.44329179778, - 124950.02426756558, - 124940.68635847964, - 124808.18757270952, - 124581.39997337302, - 124294.49417376977, - 123971.92466124047, - 123618.68624914359, - 123227.36694507494, - 122789.82508784757, - 122290.24129663502, - 121732.90717463908, - 121122.31299709687, - 120480.06093666266, - 119836.59594154477, - 119204.87415423435, - 118610.63215695106, - 118045.5103072048, - 117508.46577409521, - 116982.6330205058, - 116448.78253903434, - 115901.5014249382, - 115335.16044918515, - 114768.0424080972, - 114214.45112057493, - 113697.24117261007, - 113229.90203493889, - 112816.1105905825, - 112448.74004013077, - 112107.22338203764, - 111768.42436605439, - 111411.41640391, - 111025.4971484871, - 110612.9256096185, - 110188.04496608193, - 109775.57722869261, - 109399.08191541211, - 109106.1273681991 - ], - "flow:branch12_seg2:RCR_6": [ - 0.900335437384559, - 0.9045382797092762, - 0.9153227600767405, - 0.9328602644699798, - 0.957625934273437, - 0.9905331737076365, - 1.0334356664006767, - 1.0920808872666476, - 1.1710310869311753, - 1.2807770420253812, - 1.427510558743575, - 1.618956335850799, - 1.8628404186290335, - 2.155477715435088, - 2.503973107210024, - 2.890634139944076, - 3.31604713659158, - 3.7629742108204325, - 4.218827936664591, - 4.676756200596307, - 5.10823800904857, - 5.518646421888578, - 5.879149282936725, - 6.190520483524108, - 6.4373327687189486, - 6.607708910373248, - 6.703898326593841, - 6.71432224016183, - 6.643614174145158, - 6.494912055543275, - 6.273603790734079, - 5.99115807948717, - 5.660045950357527, - 5.284825990319677, - 4.8883938580843385, - 4.466016525307434, - 4.036963508357551, - 3.5999745616475014, - 3.1611243418213935, - 2.737099183833924, - 2.3184789640323236, - 1.9324766788097147, - 1.571917163749443, - 1.255898042147436, - 0.99030715988577, - 0.7711677438832397, - 0.6086605751365299, - 0.4896570005387615, - 0.41522741169887684, - 0.3747732479314088, - 0.36035702733908404, - 0.3678866884262923, - 0.3925165787114589, - 0.4331407133871435, - 0.49095879609578896, - 0.5645510385915289, - 0.6557962645501922, - 0.7614580533220939, - 0.8764321843726526, - 0.9977945934003537, - 1.1139377470774283, - 1.2227660885453095, - 1.3144618517699287, - 1.3873383369511323, - 1.4413672363838967, - 1.4762210802509814, - 1.4969814078393013, - 1.5055454153465453, - 1.505873625467775, - 1.5001755433094928, - 1.4889395037988085, - 1.4722229452295712, - 1.449650816877911, - 1.4202811006611795, - 1.3856393653876726, - 1.3460183739368088, - 1.3046072971741214, - 1.2637365889306131, - 1.2247212671684957, - 1.1900941672804901, - 1.1583973794134725, - 1.1302652158832704, - 1.1034166053157006, - 1.076781690340442, - 1.049854993924646, - 1.022361666807713, - 0.9964911857469625, - 0.9728908985823984, - 0.9541800901854799, - 0.9407558194123086, - 0.9328633112612491, - 0.9295524701101202, - 0.9284776076547473, - 0.9277543447064523, - 0.9254420528108097, - 0.9207822820949255, - 0.9141762527443485, - 0.9070952472305229, - 0.9017960419294325, - 0.900335437384559 - ], - "pressure:branch12_seg2:RCR_6": [ - 108734.50495323232, - 108419.43155934125, - 108162.61662941308, - 107967.64552591472, - 107840.60224758033, - 107791.42145173474, - 107838.00984645907, - 108031.27371586989, - 108414.14056696038, - 109080.14987254076, - 110090.88831950356, - 111522.11696968795, - 113452.91198509044, - 115869.10665337951, - 118845.6207512455, - 122253.46797972564, - 126108.58422814755, - 130281.14313204506, - 134671.26331404573, - 139225.4591103904, - 143705.78228900203, - 148147.08176705887, - 152302.86052510742, - 156161.30770646542, - 159578.51583052575, - 162433.08298307742, - 164718.5189240289, - 166313.71430483877, - 167228.81607156817, - 167463.17345771703, - 167036.27548739154, - 166019.31922667183, - 164496.97568658905, - 162491.14558355167, - 160178.5330416504, - 157514.24200934207, - 154649.60363542303, - 151574.25106285262, - 148335.54453855945, - 145073.43271864956, - 141715.07393235478, - 138489.01121197495, - 135347.75523108375, - 132458.21484608512, - 129885.7729659417, - 127613.77590517633, - 125743.40797490152, - 124184.38659024706, - 122960.22486050715, - 121998.0305174083, - 121242.79564803539, - 120669.37384599967, - 120244.5714499516, - 119964.71442269285, - 119844.9227280298, - 119878.95923286583, - 120087.4004641965, - 120449.25951351464, - 120926.47195209486, - 121497.82849782714, - 122068.60841170681, - 122619.4249540458, - 123066.17101855628, - 123388.62507346443, - 123580.43743142963, - 123632.19486619587, - 123579.80414438374, - 123434.27438427105, - 123224.42979952524, - 122965.99527571784, - 122661.03284367183, - 122308.20546497399, - 121902.64254675651, - 121434.58977415325, - 120914.5052972387, - 120343.15213952032, - 119745.34582539523, - 119140.04628886499, - 118538.31782375977, - 117962.021913309, - 117400.53217424684, - 116860.15192910234, - 116323.2406190808, - 115781.25130330227, - 115230.19363670953, - 114667.6203154441, - 114111.5937117283, - 113568.07470942687, - 113059.55903781642, - 112591.07377586268, - 112166.38800854933, - 111779.50827110463, - 111412.46175482223, - 111050.32072450426, - 110677.05401166156, - 110285.78703149852, - 109879.05024230415, - 109468.38457238884, - 109072.38537106033, - 108734.50495323232 - ], - "flow:branch13_seg2:RCR_7": [ - 2.0090883784179883, - 2.0171791254002787, - 2.0407925466066583, - 2.0807117265193042, - 2.1382760432005536, - 2.2146073253553507, - 2.314884440183858, - 2.4488301680678988, - 2.6295468784564724, - 2.877894238938793, - 3.209610919768805, - 3.647052493271911, - 4.19965448644065, - 4.8757550151035725, - 5.673243152190214, - 6.570904495837263, - 7.559580284319044, - 8.596581462662535, - 9.667949870317, - 10.727711070189, - 11.745989140936128, - 12.697249200066155, - 13.541475713720244, - 14.267354213887664, - 14.836315046013063, - 15.23561218627638, - 15.44790928402821, - 15.464651785216587, - 15.28561271104251, - 14.921146856434001, - 14.38201276380951, - 13.699451068795646, - 12.892517291594352, - 11.993733487507033, - 11.033991103095627, - 10.026111946901981, - 9.004376368639392, - 7.965818990634999, - 6.941237928220566, - 5.938461242753853, - 4.973383714715171, - 4.072365688976887, - 3.2432539707716996, - 2.5200075901856787, - 1.908906170136149, - 1.4237236113606249, - 1.0622456381309286, - 0.8163672851847447, - 0.6721235461216919, - 0.6102642632635301, - 0.6112699412619651, - 0.6595833071218694, - 0.745097029751719, - 0.8623491888698791, - 1.0128672050096401, - 1.1960933875553077, - 1.4157363707701207, - 1.6656041627254692, - 1.939487204216104, - 2.2235708092478834, - 2.501196086018262, - 2.7577428174833485, - 2.976111750274355, - 3.149848195592503, - 3.2742770749245396, - 3.3539597670683903, - 3.3951065681747377, - 3.4074776712398815, - 3.399205962747992, - 3.3770943554809176, - 3.34380690671661, - 3.2998256797635146, - 3.2439672326031674, - 3.1748025265728472, - 3.093422254152958, - 3.00136000203538, - 2.9047406369983695, - 2.807995727008711, - 2.717184753950364, - 2.6351121995311906, - 2.562666845471107, - 2.4987036645712646, - 2.4393411377637615, - 2.3819461489072835, - 2.323364463017757, - 2.2643111293788527, - 2.206853879310265, - 2.1545501960570554, - 2.1121270962267324, - 2.081672935115573, - 2.064583260744205, - 2.058420764701388, - 2.0589950320847064, - 2.0610788904036736, - 2.0599180894535887, - 2.0530657743003453, - 2.040633621481668, - 2.02583050939533, - 2.013459183876764, - 2.0090883784179883 - ], - "pressure:branch13_seg2:RCR_7": [ - 108813.82146609022, - 108492.07210812233, - 108231.17204802904, - 108036.28815369615, - 107914.71597984739, - 107873.13563528935, - 107933.3060575575, - 108134.63004407329, - 108530.2979802259, - 109204.24807052156, - 110224.45614055422, - 111685.53914601749, - 113637.89273635882, - 116128.53129768149, - 119167.74904429521, - 122693.9687995506, - 126687.38719839785, - 131002.69721288492, - 135594.0527060997, - 140295.88247251432, - 144994.4516415351, - 149588.6091869623, - 153919.20107147092, - 157928.0507220376, - 161454.17385647816, - 164426.7727539292, - 166756.36521720953, - 168383.4463559185, - 169278.44488715392, - 169450.8244339283, - 168913.59219754036, - 167756.8884920332, - 166031.1605547265, - 163838.84144204616, - 161282.02331037348, - 158399.91519785984, - 155313.44564233077, - 152010.6614687868, - 148603.87335482545, - 145125.41967453636, - 141637.8236270027, - 138245.5652658672, - 134987.47157417217, - 132000.92894639296, - 129325.46841450983, - 127029.07334065562, - 125122.94390633903, - 123595.33783392241, - 122412.13199202657, - 121517.06630185139, - 120850.04955835614, - 120362.72852517942, - 120024.47355756747, - 119820.37350809487, - 119760.62998372003, - 119847.8343421796, - 120100.42500561393, - 120500.67663043854, - 121029.77938087161, - 121640.06521913272, - 122270.91953594674, - 122867.1940496165, - 123362.06648962236, - 123725.77046586835, - 123934.21296226502, - 123996.75173457139, - 123929.73738521255, - 123763.52278856975, - 123523.97290322804, - 123233.27686122395, - 122899.28866576859, - 122522.19842265538, - 122096.10993804345, - 121613.98310018945, - 121077.97002759631, - 120491.94770558801, - 119877.08293173402, - 119249.20355127816, - 118630.76565291313, - 118033.18919299076, - 117461.07955973002, - 116911.7407858795, - 116372.10131334414, - 115833.1193535371, - 115283.4581669905, - 114725.56767208471, - 114167.07828227335, - 113621.39728817988, - 113106.83409399305, - 112632.60774793266, - 112205.70307484236, - 111819.09016949192, - 111458.88909303959, - 111106.72595785996, - 110745.194857699, - 110364.719465941, - 109964.83102311094, - 109556.54898611242, - 109157.2925188755, - 108813.82146609022 - ], - "flow:branch14_seg2:RCR_8": [ - 3.6928327413052537, - 3.7355281168664587, - 3.81165808255616, - 3.9202150010394305, - 4.063419854231113, - 4.245552062139865, - 4.486151750711447, - 4.809183790676247, - 5.253788006764561, - 5.861163026350015, - 6.6612144346206055, - 7.696024472115493, - 8.95895598641634, - 10.467305601469667, - 12.176973107985948, - 14.04512202648383, - 16.032021295944713, - 18.049327126172788, - 20.073040075187762, - 21.997923114459127, - 23.79365340962391, - 25.394229565553278, - 26.7515828374099, - 27.830311287017228, - 28.568085732337398, - 28.954571747488796, - 28.96200299163664, - 28.593307408416067, - 27.86113345997417, - 26.801866266714512, - 25.452876780762544, - 23.89031809022833, - 22.145024285492276, - 20.298850108831193, - 18.384752238730552, - 16.438213752778257, - 14.499744142339564, - 12.565465063849434, - 10.70081886375354, - 8.89941794313321, - 7.221575690854688, - 5.689801932506205, - 4.345281310191134, - 3.240506272076313, - 2.3671063333956277, - 1.7470735549841434, - 1.3416962728754682, - 1.129935166118003, - 1.0703825803786278, - 1.1178294626616607, - 1.24219124581221, - 1.4212704427869136, - 1.6474855019414838, - 1.926957270064223, - 2.2653414321453322, - 2.66960531127036, - 3.1399188706717887, - 3.6540195100364765, - 4.196115741514759, - 4.723078484622841, - 5.208951210821781, - 5.619924138515151, - 5.93385139853291, - 6.15181115875138, - 6.275677648781046, - 6.327823911158702, - 6.326173450022134, - 6.290536478002141, - 6.2353106886948435, - 6.166067954747332, - 6.081260730746237, - 5.977417384429189, - 5.848137584092038, - 5.694188393599276, - 5.518601114765439, - 5.330800099401155, - 5.145690570551727, - 4.971216627709919, - 4.818958095962505, - 4.6871462587639225, - 4.574159419410792, - 4.472245791344974, - 4.371527987904986, - 4.267928731646429, - 4.158075273398036, - 4.049118400175024, - 3.9482026338633367, - 3.865609990172896, - 3.808684730052721, - 3.7791635701942115, - 3.7739750615212264, - 3.783184179077126, - 3.7949659197306103, - 3.7983828546826848, - 3.787162759510901, - 3.7614615975216594, - 3.727618676466083, - 3.6972161059205133, - 3.682051937965077, - 3.6928327413052537 - ], - "pressure:branch14_seg2:RCR_8": [ - 109023.51374412532, - 108758.19679442786, - 108565.16586993892, - 108444.99351221937, - 108404.60931033405, - 108455.16916362893, - 108638.53691121962, - 109007.03890315702, - 109644.95149873792, - 110644.01373568903, - 112076.39466108738, - 114041.08378677384, - 116543.11564710374, - 119634.41594448859, - 123246.25959736633, - 127307.76660262755, - 131752.0430580605, - 136410.73827976585, - 141237.8532392266, - 146023.05317780786, - 150696.47245303894, - 155116.03805529603, - 159168.75433207356, - 162764.75350804173, - 165756.74364976055, - 168096.6947708808, - 169701.20911915076, - 170545.8824848081, - 170626.2162749461, - 169986.44117376112, - 168675.4423511441, - 166823.00815775493, - 164474.497148373, - 161779.3441050496, - 158796.98126103845, - 155593.09971670117, - 152247.78145028342, - 148754.2782044993, - 145244.56002974944, - 141712.63647091613, - 138284.13216104652, - 135015.36551220654, - 132000.16512621762, - 129359.27994574088, - 127095.49089601394, - 125271.52940925526, - 123830.79889379189, - 122748.49224095923, - 121957.62183102356, - 121379.97725446179, - 120963.93845998085, - 120671.10449199853, - 120490.55286116531, - 120437.98270213194, - 120528.83082388033, - 120781.39001697263, - 121201.18151459347, - 121748.80430513942, - 122396.00148577908, - 123058.79808938614, - 123683.76494680266, - 124200.05479606947, - 124557.08258566371, - 124749.1468040133, - 124772.13302559119, - 124663.11988732332, - 124452.1207929145, - 124174.3886412332, - 123856.0054953453, - 123506.6076630595, - 123122.0586620286, - 122694.2350245552, - 122208.90808783617, - 121665.57489981422, - 121068.4122594757, - 120434.49335173325, - 119792.70913983948, - 119159.19237324361, - 118557.99271765155, - 117987.47017231061, - 117446.06173808391, - 116919.9100220002, - 116390.1760706024, - 115848.8671523089, - 115289.00131518218, - 114724.35152484472, - 114169.29847368282, - 113644.99018115319, - 113167.63296579427, - 112742.74082111317, - 112366.41699558569, - 112020.78583309997, - 111683.38311276154, - 111332.56129219863, - 110955.08768238362, - 110550.06231246721, - 110128.93990281927, - 109714.16518234009, - 109329.54876029705, - 109023.51374412532 - ], - "flow:branch15_seg2:RCR_9": [ - 4.911313715267248, - 4.924436951469584, - 4.970021508648883, - 5.050144118668321, - 5.1674002565519785, - 5.325287539826016, - 5.536571585357192, - 5.821190536046086, - 6.210325362111096, - 6.743405339112046, - 7.454740637665342, - 8.386010416255433, - 9.550936895447753, - 10.9648803394196, - 12.608387641188777, - 14.44154906079155, - 16.426012896438657, - 18.484812362251642, - 20.574657161682516, - 22.61236873287879, - 24.545072016286724, - 26.317879795034223, - 27.877943296273653, - 29.191980485243008, - 30.209927146545223, - 30.91030309224881, - 31.26957588534762, - 31.280183673931845, - 30.944912613753882, - 30.284124090561626, - 29.32147100702835, - 28.10746640009303, - 26.673512253995895, - 25.074867006088024, - 23.352012058177106, - 21.53480899944782, - 19.663366894082365, - 17.745096825835706, - 15.824472419158823, - 13.916169776562787, - 12.060647214129135, - 10.294409159608323, - 8.655785580427551, - 7.201027867953148, - 5.952622846431132, - 4.941698281705668, - 4.164946870901319, - 3.613563388049957, - 3.2629005906932185, - 3.075990619143677, - 3.0188767769070957, - 3.0614161972034384, - 3.184372604990843, - 3.380612527841495, - 3.649671217748213, - 3.9939997628904047, - 4.41554339395456, - 4.9012425602532135, - 5.43630918810621, - 5.9883564257969395, - 6.526333162560944, - 7.01634611397016, - 7.427943927382058, - 7.748201247813173, - 7.970504516406438, - 8.104930274071387, - 8.165697226783198, - 8.170911569069059, - 8.137460815148186, - 8.07672069581506, - 7.993457943398624, - 7.888203721781126, - 7.757691796290628, - 7.600682307149548, - 7.418452573794905, - 7.2164077448327815, - 7.006033712066908, - 6.7967891492803085, - 6.600331706439154, - 6.421264836276024, - 6.261185566553941, - 6.116933849329803, - 5.981082182167202, - 5.848226978818506, - 5.713305210112857, - 5.57808335138841, - 5.447358099925559, - 5.329056862799988, - 5.231611019188203, - 5.159901517267247, - 5.115026817519503, - 5.0919342160138, - 5.0815775793826425, - 5.073354640732293, - 5.058383805287929, - 5.032246878997896, - 4.996129075132597, - 4.957076409571332, - 4.925080661982964, - 4.911313715267248 - ], - "pressure:branch15_seg2:RCR_9": [ - 108482.05611105567, - 108166.47037065281, - 107907.83612287183, - 107711.71609330497, - 107584.6507135447, - 107534.81795976749, - 107585.94775022392, - 107774.54780151825, - 108156.98961781531, - 108805.48178339153, - 109786.23389036133, - 111179.93863364101, - 113023.65252600674, - 115357.78369124095, - 118166.18618498166, - 121396.92001114643, - 124998.33970449974, - 128851.7179099702, - 132889.3168671718, - 136974.3417294081, - 141014.38897025603, - 144910.86884045598, - 148564.39760541054, - 151905.2562008996, - 154833.4486732703, - 157293.27148853187, - 159224.42651422432, - 160591.589814425, - 161376.32918088537, - 161589.7693950307, - 161249.88615048866, - 160421.03056676168, - 159139.32904557334, - 157482.47927978935, - 155507.85266304776, - 153257.35212474747, - 150792.4446310328, - 148122.5131339854, - 145319.09545951488, - 142407.4397963185, - 139456.0496904774, - 136530.14167363415, - 133699.73244763355, - 131067.48275296063, - 128683.54863782249, - 126613.78160398023, - 124869.00854281316, - 123450.41644373508, - 122332.32161234065, - 121466.75573153944, - 120808.21190260719, - 120315.1707058098, - 119962.2059864167, - 119742.6303267266, - 119660.42090426045, - 119724.27147924171, - 119942.28169120071, - 120297.72455410035, - 120770.0844383542, - 121308.71445575665, - 121862.8640456887, - 122375.14568758993, - 122791.51022561439, - 123085.08583556968, - 123238.63959619285, - 123262.26324887591, - 123173.66072358776, - 122997.97656268069, - 122759.58186941146, - 122474.84838535634, - 122149.93819451204, - 121784.28715657358, - 121371.07341887004, - 120906.58606833532, - 120391.25577191435, - 119832.41235310497, - 119247.88841803782, - 118652.91594803524, - 118067.0053694986, - 117498.76136706796, - 116952.05865201811, - 116423.00489012901, - 115900.36050315572, - 115375.75624021993, - 114841.00465026851, - 114298.91390141385, - 113757.4684537584, - 113230.14252822447, - 112731.81682712414, - 112272.00727938898, - 111854.28768778055, - 111472.07628134415, - 111111.80537342431, - 110756.70823540402, - 110392.15177787191, - 110010.31919916293, - 109612.4042109251, - 109209.41961781497, - 108817.75024721271, - 108482.05611105567 - ] + { + "bc_name": "RCR_1", + "bc_type": "RCR", + "bc_values": { + "C": 0.000105293, + "Pd": 0.0, + "Rd": 13335.72, + "Rp": 2084.437 + } }, - "dy": { - "flow:branch0_seg0:J0": [ - 12.399728212432766, - 33.33707683519497, - 55.6173542722526, - 79.81565096384257, - 105.92369712126721, - 141.84358204660316, - 189.59954094760545, - 259.86313768620363, - 354.9639544461098, - 471.64077821622527, - 620.2561926299508, - 772.7494862036402, - 948.3878048107842, - 1109.2913906375977, - 1245.9787778480338, - 1361.646393116094, - 1422.9525501300252, - 1461.4903862117762, - 1438.2896325255817, - 1387.5306529161821, - 1285.2559748179574, - 1146.834444174269, - 970.9760599317459, - 758.7054436487634, - 530.7842044202035, - 276.46087367818905, - 18.01922743084168, - -243.74835745854372, - -489.2288679177194, - -717.2385757643004, - -902.7815677859603, - -1069.8965975476215, - -1187.9687500510443, - -1278.9101600879194, - -1339.9811170843589, - -1369.082302538976, - -1387.791672379891, - -1372.1048565241358, - -1357.8124020488444, - -1301.092029967615, - -1233.639781268555, - -1129.1015076330134, - -990.2666716389749, - -845.0706476233805, - -673.5678349547783, - -516.8631108482757, - -364.18046139659293, - -227.72454619755865, - -118.74456186199531, - -30.455738426983828, - 37.39368247728439, - 91.05358869929837, - 141.98023865459308, - 190.5730549152426, - 241.43218601904925, - 292.62932170185906, - 334.0646543011102, - 369.26685829183987, - 378.95165470833194, - 373.6377404925963, - 342.83324588047935, - 291.5010298300029, - 232.39443477874048, - 166.71206470034318, - 108.53410991413284, - 59.07934832465174, - 20.463792845239883, - -6.7363770152210805, - -26.874419553726682, - -43.83623984490595, - -59.677793451061575, - -78.20181537979454, - -96.34573375473016, - -114.25159287572453, - -127.70136580497451, - -133.3024819593157, - -133.47739262229922, - -124.67614461170247, - -114.45504651614756, - -102.37384224686355, - -92.02363497815331, - -86.72597831233915, - -84.36184806685135, - -85.56712474049182, - -85.35170688361626, - -82.55489784603421, - -74.14501132547846, - -60.62967138834128, - -43.48082786096216, - -26.02324601204575, - -11.961357891271517, - -3.6713011877497213, - -2.319861363150541, - -6.601487062873745, - -13.58710685589997, - -19.898916866151005, - -21.48842237771449, - -16.900954048676745, - -5.125931675302984, - 12.399728212432766 - ], - "pressure:branch0_seg0:J0": [ - -13010.73750243797, - -20954.406840745964, - -13043.189264509538, - -3992.8656376044232, - 5803.909802894504, - 20943.20406567034, - 42336.788610268646, - 72751.84566770101, - 115108.56100161937, - 162944.2076345431, - 226771.21718429413, - 286622.3861355156, - 357871.0650394812, - 419665.3021437452, - 466486.2837056249, - 516243.59959583747, - 532390.6529639588, - 560921.3585878195, - 554490.9632991046, - 542022.5636938381, - 515052.7782874692, - 465126.22678394936, - 414075.61130866525, - 339032.1805162116, - 264378.1759990997, - 175928.1765501233, - 85988.59375056374, - -6778.573559273435, - -88677.23574327365, - -169355.0295354136, - -226542.7790221904, - -286521.71485581686, - -324697.90701152146, - -351556.0239597287, - -378429.9491025916, - -383404.74564983504, - -404417.1312259775, - -400250.48878476705, - -404440.8998365643, - -391500.8790197878, - -368573.7042905247, - -338681.5457981936, - -289742.5797978354, - -250424.83177493242, - -197702.25768043956, - -158353.5453855524, - -116999.89874864346, - -84223.73750102005, - -61669.67876171784, - -43810.08102968138, - -31917.11590374467, - -19813.308767635735, - -5708.539141023131, - 11052.412778481332, - 29005.766718578398, - 48985.17855263174, - 62220.66764329419, - 74738.01030296004, - 75451.5469627584, - 71200.45218005203, - 58171.59849176116, - 37917.21209163224, - 19906.771060673305, - -537.8133162355471, - -13911.192312464726, - -25323.786630618688, - -32353.680925478642, - -36482.13828179352, - -39739.80278543321, - -43609.58764784895, - -48400.243695819045, - -55191.398679355836, - -61985.466222555406, - -67973.40223053932, - -72324.46095711131, - -72286.65502516546, - -71657.58836118088, - -67135.64498614923, - -64019.76595360098, - -60591.61264693777, - -58556.712565935406, - -59516.9725247856, - -60516.78621121936, - -63393.250352406234, - -63899.577106093886, - -62728.05329450215, - -59197.52197470393, - -53207.36383511738, - -47172.29934497381, - -41481.62136634499, - -38221.55490494586, - -37612.712305159024, - -39458.210808737305, - -42753.57792108329, - -46029.09557292745, - -47939.80888663119, - -46980.31586001356, - -43441.82104680678, - -37100.165106485554, - -13010.73750243797 - ], - "flow:J0:branch1_seg0": [ - 5.650744758230708, - 10.91028614604792, - 16.67561620684848, - 23.38660713935622, - 30.82408627915827, - 43.362186828417656, - 57.77842632167928, - 81.68652124060779, - 109.73545493503556, - 142.70273082487947, - 186.34642011722977, - 222.85948115687924, - 276.0170588450905, - 314.8735841785008, - 353.2232037193513, - 381.62681538229344, - 395.5404950181304, - 406.1064517804176, - 392.9665724573949, - 389.0042550954318, - 353.81606858979075, - 322.0076869071285, - 265.8932737954584, - 204.72628734474904, - 144.64716501854878, - 70.72841758841939, - 1.9524019548591236, - -70.24418195948546, - -136.9730223226892, - -197.51047904703782, - -244.10979428819846, - -293.4722304158622, - -320.5963662938056, - -354.1244372496523, - -368.2926188576014, - -381.31193476181056, - -384.7271743672383, - -375.7880008323469, - -382.2651937407886, - -356.61613240863494, - -348.3641635944154, - -312.8386217330585, - -273.4427721043322, - -238.87355060701395, - -188.76450629041636, - -153.99625690857525, - -114.25274284040762, - -78.58686060621386, - -50.61412613273574, - -24.594511104344054, - -2.9190683535212814, - 14.250525213226545, - 33.577901973709274, - 49.05145876206114, - 66.36223623714513, - 80.87535650440877, - 90.65981222920261, - 101.48120422786587, - 99.90035366828198, - 100.908987052235, - 91.12925118664434, - 78.05575102876765, - 64.26862531312771, - 47.69317896012191, - 34.400814070796436, - 22.56294583553012, - 12.368144703329468, - 4.754450508637433, - -2.201878546502306, - -8.78229290388143, - -14.355609612742946, - -21.200683353550104, - -26.013412194044754, - -31.509733137647707, - -34.242392237753585, - -35.01906239825878, - -35.35527166087319, - -32.42477486971024, - -31.341384703263, - -28.863855818610354, - -27.220089087399494, - -26.524875044247285, - -25.86970017600626, - -25.761329860522583, - -24.495447247977403, - -23.26431146422626, - -19.839754836067687, - -16.286853032609677, - -11.508537922492385, - -7.530514145184786, - -4.773522777081789, - -3.272959877529254, - -3.381219421128624, - -4.262392988501441, - -5.255956485196588, - -5.762465359581307, - -4.803230182910075, - -2.6720622802155582, - 0.9920303533137526, - 5.650744758230708 - ], - "pressure:J0:branch1_seg0": [ - -13010.73750243797, - -20954.406840745964, - -13043.189264509538, - -3992.8656376044232, - 5803.909802894504, - 20943.20406567034, - 42336.788610268646, - 72751.84566770101, - 115108.56100161937, - 162944.2076345431, - 226771.21718429413, - 286622.3861355156, - 357871.0650394812, - 419665.3021437452, - 466486.2837056249, - 516243.59959583747, - 532390.6529639588, - 560921.3585878195, - 554490.9632991046, - 542022.5636938381, - 515052.7782874692, - 465126.22678394936, - 414075.61130866525, - 339032.1805162116, - 264378.1759990997, - 175928.1765501233, - 85988.59375056374, - -6778.573559273435, - -88677.23574327365, - -169355.0295354136, - -226542.7790221904, - -286521.71485581686, - -324697.90701152146, - -351556.0239597287, - -378429.9491025916, - -383404.74564983504, - -404417.1312259775, - -400250.48878476705, - -404440.8998365643, - -391500.8790197878, - -368573.7042905247, - -338681.5457981936, - -289742.5797978354, - -250424.83177493242, - -197702.25768043956, - -158353.5453855524, - -116999.89874864346, - -84223.73750102005, - -61669.67876171784, - -43810.08102968138, - -31917.11590374467, - -19813.308767635735, - -5708.539141023131, - 11052.412778481332, - 29005.766718578398, - 48985.17855263174, - 62220.66764329419, - 74738.01030296004, - 75451.5469627584, - 71200.45218005203, - 58171.59849176116, - 37917.21209163224, - 19906.771060673305, - -537.8133162355471, - -13911.192312464726, - -25323.786630618688, - -32353.680925478642, - -36482.13828179352, - -39739.80278543321, - -43609.58764784895, - -48400.243695819045, - -55191.398679355836, - -61985.466222555406, - -67973.40223053932, - -72324.46095711131, - -72286.65502516546, - -71657.58836118088, - -67135.64498614923, - -64019.76595360098, - -60591.61264693777, - -58556.712565935406, - -59516.9725247856, - -60516.78621121936, - -63393.250352406234, - -63899.577106093886, - -62728.05329450215, - -59197.52197470393, - -53207.36383511738, - -47172.29934497381, - -41481.62136634499, - -38221.55490494586, - -37612.712305159024, - -39458.210808737305, - -42753.57792108329, - -46029.09557292745, - -47939.80888663119, - -46980.31586001356, - -43441.82104680678, - -37100.165106485554, - -13010.73750243797 - ], - "flow:J0:branch5_seg0": [ - 2.680969844845781, - 7.675777110108798, - 12.836118676086192, - 18.32220329486017, - 24.127763675239844, - 31.50702042880803, - 42.00421085950715, - 56.69188020492954, - 77.92029537717453, - 104.32403738280773, - 137.6581697057948, - 173.9614394465319, - 212.91352121640318, - 250.9329277466931, - 281.99593554997665, - 309.70166119511026, - 324.244531312625, - 334.0095996157865, - 330.2183615490349, - 315.9617058509144, - 294.4689684400031, - 260.4544516758577, - 222.2599627057649, - 173.56901928837289, - 119.49306629906751, - 61.08292778446871, - -0.2715766122192396, - -61.74514300170886, - -119.28231450229778, - -173.58868643062178, - -217.71077970690422, - -255.6704035332896, - -283.6810164350282, - -301.34014479998876, - -315.1515658356229, - -318.65012815521686, - -322.5156381781111, - -318.27689250938397, - -310.35431969181616, - -298.429187708569, - -278.0861252086458, - -254.4027169947938, - -221.56339313258465, - -185.4622850316607, - -146.09005550822678, - -107.49600302141168, - -71.45969148939045, - -40.378627977543566, - -15.306339958238699, - 3.4844050814503116, - 17.194260922448144, - 28.070440986584032, - 37.373526040601746, - 47.348459065215025, - 57.513696730934, - 68.70728598017419, - 78.26950976202797, - 85.64343540141608, - 88.63591529165842, - 86.37480785262723, - 79.19693284774672, - 66.93149944610282, - 52.45264052985432, - 36.84680862836216, - 22.85345898495978, - 11.00616878047478, - 2.3087563799589503, - -3.6965454224210705, - -7.674457363772926, - -10.796636820843943, - -13.956656163403352, - -17.587483967778752, - -21.729726444085646, - -25.601751401692486, - -28.88015947478918, - -30.278937577930574, - -30.13937536401424, - -28.112289015526656, - -25.217937373566322, - -22.074727594724205, - -19.38049352338718, - -17.97042315503856, - -17.467457810041292, - -17.98518199092162, - -18.285023624784447, - -17.812105455061566, - -16.191533000167816, - -13.007928309591724, - -9.106684354474725, - -4.8792208153352385, - -1.385393896327792, - 0.6347214626706721, - 0.9791248116414099, - -0.21655456966145056, - -2.184612496583682, - -4.047287169024702, - -4.826677463480326, - -4.01001458240787, - -1.3770609153535054, - 2.680969844845781 - ], - "pressure:J0:branch5_seg0": [ - -13010.73750243797, - -20954.406840745964, - -13043.189264509538, - -3992.8656376044232, - 5803.909802894504, - 20943.20406567034, - 42336.788610268646, - 72751.84566770101, - 115108.56100161937, - 162944.2076345431, - 226771.21718429413, - 286622.3861355156, - 357871.0650394812, - 419665.3021437452, - 466486.2837056249, - 516243.59959583747, - 532390.6529639588, - 560921.3585878195, - 554490.9632991046, - 542022.5636938381, - 515052.7782874692, - 465126.22678394936, - 414075.61130866525, - 339032.1805162116, - 264378.1759990997, - 175928.1765501233, - 85988.59375056374, - -6778.573559273435, - -88677.23574327365, - -169355.0295354136, - -226542.7790221904, - -286521.71485581686, - -324697.90701152146, - -351556.0239597287, - -378429.9491025916, - -383404.74564983504, - -404417.1312259775, - -400250.48878476705, - -404440.8998365643, - -391500.8790197878, - -368573.7042905247, - -338681.5457981936, - -289742.5797978354, - -250424.83177493242, - -197702.25768043956, - -158353.5453855524, - -116999.89874864346, - -84223.73750102005, - -61669.67876171784, - -43810.08102968138, - -31917.11590374467, - -19813.308767635735, - -5708.539141023131, - 11052.412778481332, - 29005.766718578398, - 48985.17855263174, - 62220.66764329419, - 74738.01030296004, - 75451.5469627584, - 71200.45218005203, - 58171.59849176116, - 37917.21209163224, - 19906.771060673305, - -537.8133162355471, - -13911.192312464726, - -25323.786630618688, - -32353.680925478642, - -36482.13828179352, - -39739.80278543321, - -43609.58764784895, - -48400.243695819045, - -55191.398679355836, - -61985.466222555406, - -67973.40223053932, - -72324.46095711131, - -72286.65502516546, - -71657.58836118088, - -67135.64498614923, - -64019.76595360098, - -60591.61264693777, - -58556.712565935406, - -59516.9725247856, - -60516.78621121936, - -63393.250352406234, - -63899.577106093886, - -62728.05329450215, - -59197.52197470393, - -53207.36383511738, - -47172.29934497381, - -41481.62136634499, - -38221.55490494586, - -37612.712305159024, - -39458.210808737305, - -42753.57792108329, - -46029.09557292745, - -47939.80888663119, - -46980.31586001356, - -43441.82104680678, - -37100.165106485554, - -13010.73750243797 - ], - "flow:J0:branch9_seg0": [ - 0.8228264710219817, - 4.355828474790351, - 8.287596316080187, - 12.47587490762436, - 16.968633323300832, - 22.40153741279714, - 29.921341573477, - 40.36893473141572, - 55.328770900311355, - 74.5239287027021, - 98.6100061098455, - 126.09751939580842, - 155.54093213644805, - 185.7437597677051, - 211.7133077648802, - 234.38776061794331, - 249.33775640466857, - 258.1489256198074, - 259.1118648762977, - 250.85024760532042, - 236.65828588754528, - 213.6505561182028, - 185.49166607130215, - 150.44209975040386, - 110.42072350442075, - 66.91224308049816, - 20.670928444964748, - -26.224967126386673, - -71.48158018485958, - -113.95169981470298, - -150.73110377434818, - -181.82990097736567, - -206.9402512504485, - -224.12155402255897, - -237.21181089598684, - -243.84828312983055, - -248.046513934087, - -248.00528083918638, - -244.01349332576368, - -237.34407634806735, - -224.6899804564112, - -208.57132571671434, - -185.97010035826906, - -159.6326367270671, - -130.53694437676384, - -100.48696125390917, - -72.16813163392621, - -46.196384899018305, - -24.592429200195138, - -7.487065581798627, - 5.5279630927262415, - 15.605459570646746, - 24.094847264901247, - 32.38883179912596, - 40.7194140738824, - 49.573136272944765, - 57.63587214012692, - 64.13308964242754, - 67.9011620497285, - 67.68547445647108, - 63.86640322676832, - 55.893233731582264, - 45.5469525856691, - 33.9388427681927, - 22.693533605447513, - 12.972826914375375, - 5.209749172837765, - -0.41251963691499, - -4.334880346729669, - -7.3161990672324535, - -10.009516740776863, - -12.880692662478863, - -16.087630471079823, - -19.196028423279778, - -21.95978682818589, - -23.560416692418848, - -23.930364297783985, - -22.97946969127706, - -21.055249850264794, - -18.85763986007406, - -16.70439242688248, - -15.30617627676018, - -14.640686737304964, - -14.671858462954955, - -14.878190077636543, - -14.620993083740899, - -13.638407843158282, - -11.57150496112358, - -8.76653374722829, - -5.590567702225187, - -2.717511199275063, - -0.7468684068311287, - 0.019418413772351942, - -0.3957217214646237, - -1.5828390359487101, - -2.9304501654232746, - -3.7285971668953812, - -3.473281823923647, - -1.9338127262007536, - 0.8228264710219817 - ], - "pressure:J0:branch9_seg0": [ - -13010.73750243797, - -20954.406840745964, - -13043.189264509538, - -3992.8656376044232, - 5803.909802894504, - 20943.20406567034, - 42336.788610268646, - 72751.84566770101, - 115108.56100161937, - 162944.2076345431, - 226771.21718429413, - 286622.3861355156, - 357871.0650394812, - 419665.3021437452, - 466486.2837056249, - 516243.59959583747, - 532390.6529639588, - 560921.3585878195, - 554490.9632991046, - 542022.5636938381, - 515052.7782874692, - 465126.22678394936, - 414075.61130866525, - 339032.1805162116, - 264378.1759990997, - 175928.1765501233, - 85988.59375056374, - -6778.573559273435, - -88677.23574327365, - -169355.0295354136, - -226542.7790221904, - -286521.71485581686, - -324697.90701152146, - -351556.0239597287, - -378429.9491025916, - -383404.74564983504, - -404417.1312259775, - -400250.48878476705, - -404440.8998365643, - -391500.8790197878, - -368573.7042905247, - -338681.5457981936, - -289742.5797978354, - -250424.83177493242, - -197702.25768043956, - -158353.5453855524, - -116999.89874864346, - -84223.73750102005, - -61669.67876171784, - -43810.08102968138, - -31917.11590374467, - -19813.308767635735, - -5708.539141023131, - 11052.412778481332, - 29005.766718578398, - 48985.17855263174, - 62220.66764329419, - 74738.01030296004, - 75451.5469627584, - 71200.45218005203, - 58171.59849176116, - 37917.21209163224, - 19906.771060673305, - -537.8133162355471, - -13911.192312464726, - -25323.786630618688, - -32353.680925478642, - -36482.13828179352, - -39739.80278543321, - -43609.58764784895, - -48400.243695819045, - -55191.398679355836, - -61985.466222555406, - -67973.40223053932, - -72324.46095711131, - -72286.65502516546, - -71657.58836118088, - -67135.64498614923, - -64019.76595360098, - -60591.61264693777, - -58556.712565935406, - -59516.9725247856, - -60516.78621121936, - -63393.250352406234, - -63899.577106093886, - -62728.05329450215, - -59197.52197470393, - -53207.36383511738, - -47172.29934497381, - -41481.62136634499, - -38221.55490494586, - -37612.712305159024, - -39458.210808737305, - -42753.57792108329, - -46029.09557292745, - -47939.80888663119, - -46980.31586001356, - -43441.82104680678, - -37100.165106485554, - -13010.73750243797 - ], - "flow:J0:branch14_seg0": [ - 3.140593914366885, - 6.926382368208884, - 10.561586065852476, - 14.335144699813892, - 18.370114664778153, - 23.708714916428306, - 31.828612389068248, - 43.057504942051615, - 59.65767319285991, - 79.51734384704594, - 104.3117973669234, - 130.68193187277674, - 157.4380797640249, - 183.68599347233697, - 201.93420531673237, - 219.29655834573163, - 225.34175260692467, - 228.8921854648745, - 223.19833485520127, - 208.6113443759029, - 191.85673812382132, - 164.29148756706837, - 136.65832818217834, - 100.44594634501375, - 61.501461779487066, - 20.217104357398274, - -22.808174702062132, - -64.76948554116943, - -103.08361368452883, - -138.40852963019103, - -165.74874918499464, - -188.1658660083213, - -204.37250937506573, - -211.5557809313858, - -218.9358839262297, - -217.48023443984894, - -218.82623486126417, - -213.92094441174362, - -205.93681396507918, - -196.70375948856005, - -179.1873058977847, - -161.9087185415702, - -136.1268791023491, - -110.11075854999076, - -82.44020537395247, - -55.92425262272188, - -33.08541409171091, - -13.4033348590398, - 0.6212347199043595, - 10.684151246604717, - 17.526618093597328, - 23.1569741844986, - 28.536495072638857, - 35.15264400037521, - 41.95389652028248, - 49.86207684860769, - 55.9308399607343, - 60.055144177274954, - 60.83602092712813, - 57.09904401062752, - 50.63836962747685, - 40.13776487667394, - 29.37999285999092, - 18.358042742941482, - 9.209516895582977, - 2.195822140500153, - -2.5943704834870744, - -5.401648725592765, - -7.117622859642977, - -8.6905893545209, - -10.644418868442004, - -13.171537756759575, - -16.174017493728243, - -18.697806766148528, - -20.777393336112894, - -21.089890016203977, - -20.344860970951135, - -18.33180469337487, - -15.812889099398491, - -13.613528444094513, - -11.780922263796745, - -11.29685004163746, - -11.374683904491455, - -12.107258707066366, - -12.459500347107372, - -11.868863342077706, - -10.426098490479937, - -7.68797189511209, - -4.70262591117579, - -1.6659665946250135, - 0.5071944780508916, - 1.3900335130382233, - 0.9666191842968773, - -0.46826424059436844, - -2.210999605526934, - -3.553267297055895, - -3.7882666419813837, - -2.6701394268024217, - -0.2216687076393677, - 3.140593914366885 - ], - "pressure:J0:branch14_seg0": [ - -13010.73750243797, - -20954.406840745964, - -13043.189264509538, - -3992.8656376044232, - 5803.909802894504, - 20943.20406567034, - 42336.788610268646, - 72751.84566770101, - 115108.56100161937, - 162944.2076345431, - 226771.21718429413, - 286622.3861355156, - 357871.0650394812, - 419665.3021437452, - 466486.2837056249, - 516243.59959583747, - 532390.6529639588, - 560921.3585878195, - 554490.9632991046, - 542022.5636938381, - 515052.7782874692, - 465126.22678394936, - 414075.61130866525, - 339032.1805162116, - 264378.1759990997, - 175928.1765501233, - 85988.59375056374, - -6778.573559273435, - -88677.23574327365, - -169355.0295354136, - -226542.7790221904, - -286521.71485581686, - -324697.90701152146, - -351556.0239597287, - -378429.9491025916, - -383404.74564983504, - -404417.1312259775, - -400250.48878476705, - -404440.8998365643, - -391500.8790197878, - -368573.7042905247, - -338681.5457981936, - -289742.5797978354, - -250424.83177493242, - -197702.25768043956, - -158353.5453855524, - -116999.89874864346, - -84223.73750102005, - -61669.67876171784, - -43810.08102968138, - -31917.11590374467, - -19813.308767635735, - -5708.539141023131, - 11052.412778481332, - 29005.766718578398, - 48985.17855263174, - 62220.66764329419, - 74738.01030296004, - 75451.5469627584, - 71200.45218005203, - 58171.59849176116, - 37917.21209163224, - 19906.771060673305, - -537.8133162355471, - -13911.192312464726, - -25323.786630618688, - -32353.680925478642, - -36482.13828179352, - -39739.80278543321, - -43609.58764784895, - -48400.243695819045, - -55191.398679355836, - -61985.466222555406, - -67973.40223053932, - -72324.46095711131, - -72286.65502516546, - -71657.58836118088, - -67135.64498614923, - -64019.76595360098, - -60591.61264693777, - -58556.712565935406, - -59516.9725247856, - -60516.78621121936, - -63393.250352406234, - -63899.577106093886, - -62728.05329450215, - -59197.52197470393, - -53207.36383511738, - -47172.29934497381, - -41481.62136634499, - -38221.55490494586, - -37612.712305159024, - -39458.210808737305, - -42753.57792108329, - -46029.09557292745, - -47939.80888663119, - -46980.31586001356, - -43441.82104680678, - -37100.165106485554, - -13010.73750243797 - ], - "flow:J0:branch15_seg0": [ - 0.10459322396914598, - 3.468802736037771, - 7.256437007384292, - 11.295820922187536, - 15.633099178793168, - 20.86412246015836, - 28.066949803862435, - 38.05829656720256, - 52.321760040719866, - 70.57273745878548, - 93.32979933016352, - 119.14911433162466, - 146.47821284882636, - 174.055125472371, - 197.11212549706997, - 216.63359757499745, - 228.48801478768934, - 234.33322373093785, - 232.79449878765115, - 223.1030999886111, - 208.4559137767861, - 186.4302619060311, - 160.67282917703702, - 129.5220909202574, - 94.72178781864494, - 57.52018086748381, - 18.47564834525564, - -20.764579829824417, - -58.40833722335033, - -93.77918084177576, - -124.48114083153204, - -150.75819661273923, - -172.378606696707, - -187.76824308435465, - -200.38923756891015, - -207.79172205224512, - -213.67611103915945, - -216.1137379314718, - -215.24258132540842, - -211.9988740137751, - -203.3122061112979, - -191.38012464686835, - -173.1635269414299, - -150.99141670764442, - -125.73612340541511, - -98.9596370416501, - -73.21448134115919, - -49.15933785574483, - -28.852901290728372, - -12.54271806889586, - 0.06390872203099222, - 9.97018874434008, - 18.397468302741952, - 26.63166128846599, - 34.882942456799974, - 43.61146609573179, - 51.568620209016615, - 57.95398484284713, - 61.67820277154198, - 61.56942712063407, - 58.00228899184735, - 50.48278074687294, - 40.74622349009458, - 29.875191600722747, - 19.376786357349783, - 10.341584653744428, - 3.1715130725888505, - -1.9801137389249601, - -5.5455804370729185, - -8.250521698426375, - -10.71159206570387, - -13.361417639227874, - -16.34094715179764, - -19.246273146964633, - -21.841633928124836, - -23.354175274477655, - -23.70752032866011, - -22.82780634180275, - -21.02758548966167, - -18.964090529352923, - -16.937737676700205, - -15.627653794664957, - -15.009319439012716, - -15.041495719028722, - -15.2335455861109, - -14.988624500928855, - -14.049217155609636, - -12.07541318990597, - -9.39644592559336, - -6.3569767546747284, - -3.59212449664186, - -1.6762278791003125, - -0.9038043517295339, - -1.25855354265393, - -2.352699232640761, - -3.605446875071143, - -4.341650922463113, - -4.075455935327218, - -2.5854196794277495, - 0.10459322396914598 - ], - "pressure:J0:branch15_seg0": [ - -13010.73750243797, - -20954.406840745964, - -13043.189264509538, - -3992.8656376044232, - 5803.909802894504, - 20943.20406567034, - 42336.788610268646, - 72751.84566770101, - 115108.56100161937, - 162944.2076345431, - 226771.21718429413, - 286622.3861355156, - 357871.0650394812, - 419665.3021437452, - 466486.2837056249, - 516243.59959583747, - 532390.6529639588, - 560921.3585878195, - 554490.9632991046, - 542022.5636938381, - 515052.7782874692, - 465126.22678394936, - 414075.61130866525, - 339032.1805162116, - 264378.1759990997, - 175928.1765501233, - 85988.59375056374, - -6778.573559273435, - -88677.23574327365, - -169355.0295354136, - -226542.7790221904, - -286521.71485581686, - -324697.90701152146, - -351556.0239597287, - -378429.9491025916, - -383404.74564983504, - -404417.1312259775, - -400250.48878476705, - -404440.8998365643, - -391500.8790197878, - -368573.7042905247, - -338681.5457981936, - -289742.5797978354, - -250424.83177493242, - -197702.25768043956, - -158353.5453855524, - -116999.89874864346, - -84223.73750102005, - -61669.67876171784, - -43810.08102968138, - -31917.11590374467, - -19813.308767635735, - -5708.539141023131, - 11052.412778481332, - 29005.766718578398, - 48985.17855263174, - 62220.66764329419, - 74738.01030296004, - 75451.5469627584, - 71200.45218005203, - 58171.59849176116, - 37917.21209163224, - 19906.771060673305, - -537.8133162355471, - -13911.192312464726, - -25323.786630618688, - -32353.680925478642, - -36482.13828179352, - -39739.80278543321, - -43609.58764784895, - -48400.243695819045, - -55191.398679355836, - -61985.466222555406, - -67973.40223053932, - -72324.46095711131, - -72286.65502516546, - -71657.58836118088, - -67135.64498614923, - -64019.76595360098, - -60591.61264693777, - -58556.712565935406, - -59516.9725247856, - -60516.78621121936, - -63393.250352406234, - -63899.577106093886, - -62728.05329450215, - -59197.52197470393, - -53207.36383511738, - -47172.29934497381, - -41481.62136634499, - -38221.55490494586, - -37612.712305159024, - -39458.210808737305, - -42753.57792108329, - -46029.09557292745, - -47939.80888663119, - -46980.31586001356, - -43441.82104680678, - -37100.165106485554, - -13010.73750243797 - ], - "flow:branch1_seg0:J1": [ - 3.040575088679457, - 8.28261986860831, - 13.859266720799841, - 20.333980599933575, - 27.44239462984382, - 37.375812475563734, - 50.51807884104423, - 68.90354894026034, - 94.44526761533126, - 124.50853446420807, - 165.4385766275633, - 205.67117788727103, - 253.65714578894816, - 297.41410716568953, - 331.9949106672555, - 369.08976576987305, - 386.80678143129563, - 405.6566967649843, - 403.9411218466176, - 391.3074697001748, - 367.7126626138887, - 329.64232122373215, - 287.9650655865389, - 231.19498976720394, - 172.4025346389853, - 101.99076961067361, - 30.134996285255735, - -41.87103668245816, - -109.62203369984783, - -174.46101589770996, - -227.05633226799787, - -278.1560034482665, - -314.43069625956883, - -339.74457886392366, - -362.25667822866944, - -371.19163583722883, - -384.06140154852454, - -382.73206417058, - -382.2282903944205, - -368.6203859151184, - -348.82053481040583, - -324.7165585286027, - -287.2244269815217, - -254.85119679631157, - -209.0213417846539, - -167.4386917722322, - -125.60477012803413, - -85.7296401970977, - -55.931972843640054, - -29.20392849208812, - -7.882879475981195, - 10.35136214811741, - 27.86306451392966, - 44.035312363837505, - 59.42569004494991, - 75.21481246424553, - 87.22675537095476, - 98.89199973675429, - 102.84454969315223, - 102.6666046092018, - 96.29820184679316, - 83.26843585424832, - 70.49273531720327, - 53.85215293765418, - 39.19980395119021, - 25.63174008834397, - 13.928840087781408, - 5.504003535812437, - -1.3316962019127871, - -7.24615206642152, - -12.654851629290373, - -18.644962844585788, - -24.27126416037389, - -29.360983592281723, - -33.505908821543436, - -35.139830569664916, - -36.23416567428145, - -34.42477407987873, - -32.44958788381284, - -29.744679963742264, - -26.904188854853533, - -25.970870922027814, - -25.09837621891388, - -25.415222604879293, - -25.043555852685053, - -23.826118196987714, - -21.49685093645141, - -17.7285539922542, - -13.5653880572388, - -9.115374578818402, - -5.580772576990627, - -3.1766869531919864, - -2.388206504279726, - -3.012925393387903, - -4.293558597373333, - -5.537441085722389, - -5.622535428756248, - -4.377662132738162, - -1.3625370961971965, - 3.040575088679457 - ], - "pressure:branch1_seg0:J1": [ - -13653.325100940168, - -21715.246241798293, - -13906.195277164175, - -4896.955009618543, - 4828.4199638502805, - 19298.8416798914, - 40349.35760838223, - 69442.58375392876, - 111097.06438617027, - 158229.214237869, - 221266.87284588403, - 281165.16518894356, - 350846.23359854304, - 413139.8332265571, - 459705.80361279065, - 512421.93998953525, - 529534.6404123495, - 560023.022389712, - 555928.4666866412, - 540387.6415558598, - 518033.8419181116, - 468530.80924033985, - 420656.50082477485, - 347710.6575540397, - 272268.23663865874, - 184932.8414980178, - 95154.15875742571, - 2944.0058135097656, - -78676.74253269906, - -160729.14216489877, - -219219.22533867092, - -280034.93706304574, - -319909.0529571286, - -345278.0591382088, - -375446.70935962145, - -380771.57016262895, - -403835.3201987467, - -401868.0860955597, - -402867.3659555381, - -393412.56578057376, - -369158.32289399375, - -342327.39833163423, - -295524.74492566066, - -256435.43158445193, - -203835.6106640384, - -163147.35652673175, - -121636.09993713355, - -88531.9074812355, - -66015.24470680693, - -47365.3044063716, - -34739.131760508695, - -21919.50619923687, - -7796.203938589882, - 8971.990321916353, - 26603.5834870858, - 46924.347092481396, - 60863.91030916752, - 73601.70836967221, - 75464.95766798436, - 71088.68622469083, - 59119.409458625225, - 39580.90828977418, - 22248.89787381887, - 1745.459540213999, - -11977.821093569557, - -23790.402095295267, - -31277.259007005836, - -35453.21596452493, - -38815.67722532993, - -42764.22290122565, - -47658.679850632194, - -54369.96911264953, - -61330.87538864561, - -67199.35492721312, - -71845.73999207209, - -72115.54904590083, - -71764.10542750129, - -67487.10063994037, - -64250.350955354006, - -60836.8220448978, - -58668.795093363595, - -59703.268406885974, - -60588.9387079009, - -63439.15891352103, - -64054.66167663769, - -62741.84861451116, - -59572.45044393196, - -53687.39286096583, - -47830.14282322406, - -42144.31455570315, - -38611.94768268236, - -37786.465389260266, - -39406.65204525843, - -42589.70953710095, - -45860.88363162638, - -47854.697878448234, - -47060.582647004194, - -43735.91046763336, - -37575.7819328568, - -13653.325100940168 - ], - "flow:J1:branch2_seg0": [ - 1.6055030108753163, - 5.586692910754157, - 9.998495788642012, - 15.21404556620604, - 20.97386748314776, - 28.919322791158255, - 39.11324078849922, - 53.35400585749136, - 72.9224765227466, - 96.1331711385309, - 128.2918347604308, - 160.00008623581013, - 198.6244335604393, - 233.97096080153204, - 262.89454148183046, - 294.25827445424966, - 310.8805138397495, - 328.45753807205585, - 329.62302259799253, - 322.0444942855636, - 304.50907092675726, - 276.33293035641304, - 244.5383324491827, - 200.8800083181541, - 155.58281267044225, - 99.77044288439774, - 42.63362891264978, - -14.973663227964796, - -70.09003924473983, - -123.25932047178875, - -167.69156866855022, - -211.54697533606, - -243.48462157451704, - -267.14118429378664, - -287.69767810891244, - -298.0389461924494, - -310.7601793405488, - -312.2237902483148, - -314.4413515621982, - -304.8309448872813, - -291.24312085301176, - -273.53825846265113, - -245.30150629894226, - -221.41719899025296, - -185.12498428985003, - -151.5771267624065, - -116.98373483563421, - -83.0617931373936, - -57.28578740106908, - -33.54293495406058, - -14.251221450084008, - 2.21092242677426, - 17.823518701957504, - 31.730063621064062, - 44.793059901877015, - 57.942886069268155, - 68.23837997906142, - 78.64153371141066, - 82.88079117408321, - 84.14117683942919, - 80.27231827624081, - 70.95094571682873, - 61.68083384593679, - 48.67747310453396, - 36.75314989674622, - 25.28375938058421, - 14.95144816593957, - 7.28357311141203, - 0.9715096434151526, - -4.371580379041408, - -9.081427222656744, - -14.126119004240646, - -18.75751860946961, - -23.043889990256766, - -26.60399789706434, - -28.319566944735023, - -29.734264229761795, - -28.747984060280697, - -27.54338695318621, - -25.533261485253398, - -23.20630173740183, - -22.297673875066813, - -21.359189253042942, - -21.39343997740469, - -20.990313526294223, - -20.05866842168159, - -18.313798592330713, - -15.536819989064306, - -12.381854038051124, - -8.88654914533683, - -5.95105535171334, - -3.691610166003399, - -2.630238529389116, - -2.710363210413578, - -3.42359051563001, - -4.305095622589552, - -4.458969450256258, - -3.717835196237883, - -1.6345882509579683, - 1.6055030108753163 - ], - "pressure:J1:branch2_seg0": [ - -13653.325100940168, - -21715.246241798293, - -13906.195277164175, - -4896.955009618543, - 4828.4199638502805, - 19298.8416798914, - 40349.35760838223, - 69442.58375392876, - 111097.06438617027, - 158229.214237869, - 221266.87284588403, - 281165.16518894356, - 350846.23359854304, - 413139.8332265571, - 459705.80361279065, - 512421.93998953525, - 529534.6404123495, - 560023.022389712, - 555928.4666866412, - 540387.6415558598, - 518033.8419181116, - 468530.80924033985, - 420656.50082477485, - 347710.6575540397, - 272268.23663865874, - 184932.8414980178, - 95154.15875742571, - 2944.0058135097656, - -78676.74253269906, - -160729.14216489877, - -219219.22533867092, - -280034.93706304574, - -319909.0529571286, - -345278.0591382088, - -375446.70935962145, - -380771.57016262895, - -403835.3201987467, - -401868.0860955597, - -402867.3659555381, - -393412.56578057376, - -369158.32289399375, - -342327.39833163423, - -295524.74492566066, - -256435.43158445193, - -203835.6106640384, - -163147.35652673175, - -121636.09993713355, - -88531.9074812355, - -66015.24470680693, - -47365.3044063716, - -34739.131760508695, - -21919.50619923687, - -7796.203938589882, - 8971.990321916353, - 26603.5834870858, - 46924.347092481396, - 60863.91030916752, - 73601.70836967221, - 75464.95766798436, - 71088.68622469083, - 59119.409458625225, - 39580.90828977418, - 22248.89787381887, - 1745.459540213999, - -11977.821093569557, - -23790.402095295267, - -31277.259007005836, - -35453.21596452493, - -38815.67722532993, - -42764.22290122565, - -47658.679850632194, - -54369.96911264953, - -61330.87538864561, - -67199.35492721312, - -71845.73999207209, - -72115.54904590083, - -71764.10542750129, - -67487.10063994037, - -64250.350955354006, - -60836.8220448978, - -58668.795093363595, - -59703.268406885974, - -60588.9387079009, - -63439.15891352103, - -64054.66167663769, - -62741.84861451116, - -59572.45044393196, - -53687.39286096583, - -47830.14282322406, - -42144.31455570315, - -38611.94768268236, - -37786.465389260266, - -39406.65204525843, - -42589.70953710095, - -45860.88363162638, - -47854.697878448234, - -47060.582647004194, - -43735.91046763336, - -37575.7819328568, - -13653.325100940168 - ], - "flow:J1:branch11_seg0": [ - 1.435072077802249, - 2.69592695785441, - 3.8607709321585677, - 5.119935033726875, - 6.468527146697165, - 8.45648968440569, - 11.404838052544623, - 15.549543082767405, - 21.522791092578153, - 28.375363325677366, - 37.146741867134494, - 45.67109165145832, - 55.03271222850889, - 63.44314636416073, - 69.10036918542521, - 74.83149131562271, - 75.9262675915422, - 77.1991586929317, - 74.31809924863086, - 69.26297541459684, - 63.20359168713229, - 53.309390867305396, - 43.42673313734852, - 30.314981449037298, - 16.819721968558184, - 2.22032672627323, - -12.498632627386014, - -26.897373454502965, - -39.531994455121726, - -51.20169542591681, - -59.36476359943991, - -66.60902811221406, - -70.94607468503848, - -72.60339457013463, - -74.55900011976178, - -73.15268964478206, - -73.30122220796596, - -70.50827392227147, - -67.78693883222455, - -63.78944102783905, - -57.57741395739438, - -51.17830006595087, - -41.92292068258043, - -33.43399780606243, - -23.896357494805414, - -15.861565009825787, - -8.621035292398417, - -2.667847059703049, - 1.3538145574290747, - 4.339006461973415, - 6.368341974102251, - 8.140439721343732, - 10.039545811972063, - 12.305248742772667, - 14.632630143073195, - 17.271926394975875, - 18.988375391896902, - 20.25046602534365, - 19.96375851906881, - 18.525427769774595, - 16.025883570555404, - 12.317490137421197, - 8.811901471269751, - 5.174679833123533, - 2.4466540544470945, - 0.34798070776392653, - -1.022608078155658, - -1.7795695756035834, - -2.3032058453324495, - -2.874571687381534, - -3.5734244066382286, - -4.518843840347, - -5.513745550904787, - -6.3170936020227675, - -6.9019109244809265, - -6.820263624933928, - -6.4999014445224175, - -5.676790019601393, - -4.906200930627953, - -4.211418478487819, - -3.6978871174513093, - -3.673197046959211, - -3.7391869658734347, - -4.021782627476297, - -4.053242326389387, - -3.767449775307491, - -3.1830523441230874, - -2.191734003187355, - -1.1835340191873178, - -0.22882543347979822, - 0.3702827747223785, - 0.5149232128132274, - 0.24203202511006017, - -0.30256218297286186, - -0.8699680817432726, - -1.232345463133734, - -1.1635659785019954, - -0.6598269364986481, - 0.272051154761289, - 1.435072077802249 - ], - "pressure:J1:branch11_seg0": [ - -13653.325100940168, - -21715.246241798293, - -13906.195277164175, - -4896.955009618543, - 4828.4199638502805, - 19298.8416798914, - 40349.35760838223, - 69442.58375392876, - 111097.06438617027, - 158229.214237869, - 221266.87284588403, - 281165.16518894356, - 350846.23359854304, - 413139.8332265571, - 459705.80361279065, - 512421.93998953525, - 529534.6404123495, - 560023.022389712, - 555928.4666866412, - 540387.6415558598, - 518033.8419181116, - 468530.80924033985, - 420656.50082477485, - 347710.6575540397, - 272268.23663865874, - 184932.8414980178, - 95154.15875742571, - 2944.0058135097656, - -78676.74253269906, - -160729.14216489877, - -219219.22533867092, - -280034.93706304574, - -319909.0529571286, - -345278.0591382088, - -375446.70935962145, - -380771.57016262895, - -403835.3201987467, - -401868.0860955597, - -402867.3659555381, - -393412.56578057376, - -369158.32289399375, - -342327.39833163423, - -295524.74492566066, - -256435.43158445193, - -203835.6106640384, - -163147.35652673175, - -121636.09993713355, - -88531.9074812355, - -66015.24470680693, - -47365.3044063716, - -34739.131760508695, - -21919.50619923687, - -7796.203938589882, - 8971.990321916353, - 26603.5834870858, - 46924.347092481396, - 60863.91030916752, - 73601.70836967221, - 75464.95766798436, - 71088.68622469083, - 59119.409458625225, - 39580.90828977418, - 22248.89787381887, - 1745.459540213999, - -11977.821093569557, - -23790.402095295267, - -31277.259007005836, - -35453.21596452493, - -38815.67722532993, - -42764.22290122565, - -47658.679850632194, - -54369.96911264953, - -61330.87538864561, - -67199.35492721312, - -71845.73999207209, - -72115.54904590083, - -71764.10542750129, - -67487.10063994037, - -64250.350955354006, - -60836.8220448978, - -58668.795093363595, - -59703.268406885974, - -60588.9387079009, - -63439.15891352103, - -64054.66167663769, - -62741.84861451116, - -59572.45044393196, - -53687.39286096583, - -47830.14282322406, - -42144.31455570315, - -38611.94768268236, - -37786.465389260266, - -39406.65204525843, - -42589.70953710095, - -45860.88363162638, - -47854.697878448234, - -47060.582647004194, - -43735.91046763336, - -37575.7819328568, - -13653.325100940168 - ], - "flow:branch2_seg0:J2": [ - 1.1895153231894002, - 5.16223210202175, - 9.557985874852044, - 14.739290745640275, - 20.45851553475228, - 27.95742938954021, - 37.930907768932244, - 51.377613818571156, - 70.55968724459468, - 93.38862645515245, - 124.89160027173783, - 157.37758930628743, - 194.76942407406662, - 231.00130456960824, - 259.807591276064, - 292.39425203275437, - 309.5875710963511, - 328.0984956957714, - 330.7907435727652, - 322.22946424862806, - 306.6455532909732, - 277.8879803201895, - 248.1967036834206, - 205.139464213022, - 159.5810718364514, - 104.72585595374929, - 47.17229886338693, - -10.307743324114314, - -65.67375790048712, - -119.5724387454747, - -165.09705244149615, - -208.7881522765329, - -242.0067521975754, - -264.9910110371753, - -286.85563193296065, - -296.6476247032964, - -310.6779378167652, - -313.2431981649219, - -313.89010781815495, - -306.4644477511469, - -291.5188785177927, - -275.6580133394332, - -247.78338077066502, - -223.62672072162033, - -188.3087167548712, - -153.47499003436545, - -118.83266278477356, - -84.49940992704798, - -58.260679407637156, - -34.29469477016391, - -14.987954854596783, - 1.6482523692378814, - 16.889594357173486, - 30.85457867741872, - 43.68891647725549, - 57.04446306041689, - 67.76433767183724, - 78.0872401955, - 83.28660665296307, - 84.32680566078652, - 81.10171011354814, - 71.88670085262291, - 62.6824300969544, - 49.66535010166593, - 37.45368542027966, - 25.737422485223263, - 15.252786072031062, - 7.451021163305194, - 1.1355377800731332, - -4.127366451915767, - -8.835621579596687, - -13.715152789981225, - -18.452428765981946, - -22.695448805495484, - -26.47898058081294, - -28.360408181555787, - -29.840208805719556, - -29.0724311458997, - -27.675651440523016, - -25.662211613650555, - -23.206023774509656, - -22.237406348885834, - -21.246608312652974, - -21.318433183908766, - -21.03431070771017, - -20.1337452251619, - -18.57285214509279, - -15.792103389908311, - -12.727111572812971, - -9.14305555778675, - -6.064704807744156, - -3.679382528714696, - -2.485068184906283, - -2.5248357565165778, - -3.2757226232184578, - -4.260370202092915, - -4.579263787333959, - -3.9689940442459104, - -1.999249607074474, - 1.1895153231894002 - ], - "pressure:branch2_seg0:J2": [ - -14251.179283437232, - -22480.902391322576, - -14782.645067023803, - -5823.717032274163, - 3860.5055964801027, - 17697.983847426225, - 38312.41746192966, - 66248.57229776977, - 107245.55177258703, - 153986.6517203663, - 215820.28467263634, - 275900.4395130657, - 343518.6357356762, - 406171.4905248491, - 452697.5090336108, - 508703.39488796116, - 527844.6724405015, - 558976.910479077, - 556818.0195736331, - 538685.646549535, - 520883.66788910795, - 472526.77753174887, - 428044.7461285847, - 357406.34106526076, - 280335.41870705946, - 193977.7540786677, - 104342.37935472648, - 12879.429370005773, - -68714.40377612453, - -152019.230887111, - -212468.95302677088, - -273293.70788374095, - -314455.21785942296, - -338806.20953743503, - -372625.64975703816, - -378804.560567573, - -403499.6637444604, - -403599.95034307695, - -400951.7992662004, - -394134.8394465672, - -369388.22333346785, - -345986.0782147298, - -302063.55331863504, - -262437.98277968884, - -210326.03659790853, - -167777.34408638568, - -126538.84430030844, - -93234.93065552086, - -71048.78139647182, - -51662.88057162713, - -37997.75324418059, - -24398.545362849072, - -10060.83723765638, - 6694.0589893995975, - 24011.821009844956, - 44662.39814919727, - 59444.82603756553, - 72119.60108834296, - 75015.00380061392, - 70597.20135401166, - 59804.81218821555, - 41210.66165272272, - 24630.134905199076, - 4338.759822862059, - -9969.145296594003, - -22090.374953524468, - -30046.710612459116, - -34231.365993939704, - -37715.59024886533, - -41802.50340644519, - -46845.76531579173, - -53508.24495106712, - -60585.65099804377, - -66358.34093450326, - -71279.71960896056, - -71933.18734076618, - -71755.034227155, - -67809.68680280533, - -64400.06428625241, - -61064.03250412306, - -58810.456554433586, - -59975.304198320286, - -60798.68206848542, - -63493.416612009874, - -64155.4450573213, - -62690.242574424476, - -59863.77929515926, - -54138.437892686845, - -48515.38371285758, - -42881.42523858891, - -39073.49279137646, - -38032.671349703705, - -39428.71842322324, - -42490.03475588669, - -45722.03738602748, - -47752.59959090031, - -47104.67061034423, - -43948.68515610047, - -37987.35506119275, - -14251.179283437232 - ], - "flow:J2:branch3_seg0": [ - 0.5143296223478472, - 2.4201373340443837, - 4.513841278005515, - 7.035066739792822, - 9.844929418138303, - 13.679989684916114, - 18.601184284333016, - 25.35104469767321, - 34.67848003455319, - 45.64374993828651, - 61.47178414943805, - 77.02221982119258, - 95.72883915046738, - 112.53577363715544, - 125.59998956908801, - 140.91742924200474, - 148.4735034237818, - 158.45476075485288, - 159.47147773546072, - 155.35021216100083, - 145.73773604515716, - 131.46482953334097, - 116.86871048129625, - 96.72102342410636, - 76.1598179193469, - 49.33532629874888, - 21.860981327176944, - -5.682819427772942, - -31.20610497787197, - -56.01568380926188, - -76.69559166122939, - -97.9084156690379, - -113.25505658781925, - -124.02353575177766, - -133.43126812096205, - -137.93026724755256, - -145.55289383720535, - -147.60368044889992, - -149.64516619682252, - -145.07421139762778, - -138.37534704197074, - -130.237231212947, - -117.35295833368751, - -108.1933316709476, - -91.65284380774759, - -75.88795567069639, - -58.75752450474538, - -42.04999455892759, - -30.00727825640238, - -18.94701134442022, - -10.032004174825401, - -1.734866828404658, - 6.2582108420058935, - 13.402271054164588, - 19.789911213732008, - 26.24554455757317, - 31.400168733194832, - 36.905262354460326, - 39.37247209403231, - 40.10565230712004, - 38.20406559224187, - 33.555318284550296, - 29.534784369228376, - 23.48421421574263, - 18.056780531241973, - 12.427246141891043, - 7.26242312274936, - 3.423091787711094, - 0.41217462151316625, - -2.0544925813936508, - -4.325699578468173, - -6.824504798204588, - -9.182547465818475, - -11.289888350503551, - -13.013753245941334, - -13.802230069486967, - -14.64493269288883, - -14.268522269289157, - -13.754964633957291, - -12.740550073369981, - -11.517797481192158, - -11.111853910394661, - -10.675511894220532, - -10.844888888644261, - -10.681087896372357, - -10.193489621134328, - -9.263267349247664, - -7.875344798415364, - -6.407256778871803, - -4.758226950606137, - -3.3880536079925014, - -2.231556851346227, - -1.6413978373642768, - -1.6158764521858486, - -1.9395132741494663, - -2.388761447964487, - -2.4649123129162684, - -2.1103691488682395, - -1.0846756816594807, - 0.5143296223478472 - ], - "pressure:J2:branch3_seg0": [ - -14251.179283437232, - -22480.902391322576, - -14782.645067023803, - -5823.717032274163, - 3860.5055964801027, - 17697.983847426225, - 38312.41746192966, - 66248.57229776977, - 107245.55177258703, - 153986.6517203663, - 215820.28467263634, - 275900.4395130657, - 343518.6357356762, - 406171.4905248491, - 452697.5090336108, - 508703.39488796116, - 527844.6724405015, - 558976.910479077, - 556818.0195736331, - 538685.646549535, - 520883.66788910795, - 472526.77753174887, - 428044.7461285847, - 357406.34106526076, - 280335.41870705946, - 193977.7540786677, - 104342.37935472648, - 12879.429370005773, - -68714.40377612453, - -152019.230887111, - -212468.95302677088, - -273293.70788374095, - -314455.21785942296, - -338806.20953743503, - -372625.64975703816, - -378804.560567573, - -403499.6637444604, - -403599.95034307695, - -400951.7992662004, - -394134.8394465672, - -369388.22333346785, - -345986.0782147298, - -302063.55331863504, - -262437.98277968884, - -210326.03659790853, - -167777.34408638568, - -126538.84430030844, - -93234.93065552086, - -71048.78139647182, - -51662.88057162713, - -37997.75324418059, - -24398.545362849072, - -10060.83723765638, - 6694.0589893995975, - 24011.821009844956, - 44662.39814919727, - 59444.82603756553, - 72119.60108834296, - 75015.00380061392, - 70597.20135401166, - 59804.81218821555, - 41210.66165272272, - 24630.134905199076, - 4338.759822862059, - -9969.145296594003, - -22090.374953524468, - -30046.710612459116, - -34231.365993939704, - -37715.59024886533, - -41802.50340644519, - -46845.76531579173, - -53508.24495106712, - -60585.65099804377, - -66358.34093450326, - -71279.71960896056, - -71933.18734076618, - -71755.034227155, - -67809.68680280533, - -64400.06428625241, - -61064.03250412306, - -58810.456554433586, - -59975.304198320286, - -60798.68206848542, - -63493.416612009874, - -64155.4450573213, - -62690.242574424476, - -59863.77929515926, - -54138.437892686845, - -48515.38371285758, - -42881.42523858891, - -39073.49279137646, - -38032.671349703705, - -39428.71842322324, - -42490.03475588669, - -45722.03738602748, - -47752.59959090031, - -47104.67061034423, - -43948.68515610047, - -37987.35506119275, - -14251.179283437232 - ], - "flow:J2:branch7_seg0": [ - 0.6751857008423099, - 2.742094767978213, - 5.044144596847125, - 7.704224005847261, - 10.613586116611563, - 14.277439704623019, - 19.329723484598, - 26.02656912089951, - 35.88120721003998, - 47.74487651686388, - 63.41981612229953, - 80.35536948509265, - 99.04058492360248, - 118.46553093245674, - 134.20760170697315, - 151.47682279074175, - 161.11406767257938, - 169.6437349409245, - 171.3192658373035, - 166.87925208762985, - 160.90781724581544, - 146.4231507868466, - 131.32799320212365, - 108.41844078891197, - 83.4212539171103, - 55.39052965500959, - 25.311317536202875, - -4.624923896360551, - -34.46765292262188, - -63.55675493620935, - -88.4014607802556, - -110.87973660749054, - -128.75169560976835, - -140.96747528538768, - -153.42436381199488, - -158.71735745575182, - -165.12504397956374, - -165.63951771602373, - -164.24494162133118, - -161.39023635352132, - -153.14353147581951, - -145.42078212648698, - -130.43042243697926, - -115.43338905066945, - -96.65587294712107, - -77.58703436366847, - -60.07513828002915, - -42.44941536812181, - -28.25340115123502, - -15.347683425744025, - -4.955950679771465, - 3.383119197642138, - 10.631383515167121, - 17.45230762325388, - 23.89900526352323, - 30.7989185028444, - 36.36416893864082, - 41.18197784104062, - 43.91413455892915, - 44.22115335366413, - 42.897644521307285, - 38.331382568073025, - 33.14764572772783, - 26.1811358859278, - 19.396904889039014, - 13.31017634332934, - 7.990362949285901, - 4.027929375589116, - 0.7233631585606821, - -2.072873870524698, - -4.509922001130609, - -6.890647991777463, - -9.269881300164824, - -11.40556045498996, - -13.465227334873871, - -14.558178112073902, - -15.195276112835115, - -14.803908876609182, - -13.920686806568135, - -12.921661540283964, - -11.688226293317896, - -11.125552438491848, - -10.571096418433632, - -10.473544295263746, - -10.35322281133923, - -9.94025560402927, - -9.309584795846014, - -7.916758591493656, - -6.319854793940855, - -4.384828607178171, - -2.676651199753514, - -1.4478256773688265, - -0.843670347539259, - -0.9089593043295109, - -1.3362093490706535, - -1.8716087541273656, - -2.1143514744191396, - -1.858624895376865, - -0.9145739254147396, - 0.6751857008423099 - ], - "pressure:J2:branch7_seg0": [ - -14251.179283437232, - -22480.902391322576, - -14782.645067023803, - -5823.717032274163, - 3860.5055964801027, - 17697.983847426225, - 38312.41746192966, - 66248.57229776977, - 107245.55177258703, - 153986.6517203663, - 215820.28467263634, - 275900.4395130657, - 343518.6357356762, - 406171.4905248491, - 452697.5090336108, - 508703.39488796116, - 527844.6724405015, - 558976.910479077, - 556818.0195736331, - 538685.646549535, - 520883.66788910795, - 472526.77753174887, - 428044.7461285847, - 357406.34106526076, - 280335.41870705946, - 193977.7540786677, - 104342.37935472648, - 12879.429370005773, - -68714.40377612453, - -152019.230887111, - -212468.95302677088, - -273293.70788374095, - -314455.21785942296, - -338806.20953743503, - -372625.64975703816, - -378804.560567573, - -403499.6637444604, - -403599.95034307695, - -400951.7992662004, - -394134.8394465672, - -369388.22333346785, - -345986.0782147298, - -302063.55331863504, - -262437.98277968884, - -210326.03659790853, - -167777.34408638568, - -126538.84430030844, - -93234.93065552086, - -71048.78139647182, - -51662.88057162713, - -37997.75324418059, - -24398.545362849072, - -10060.83723765638, - 6694.0589893995975, - 24011.821009844956, - 44662.39814919727, - 59444.82603756553, - 72119.60108834296, - 75015.00380061392, - 70597.20135401166, - 59804.81218821555, - 41210.66165272272, - 24630.134905199076, - 4338.759822862059, - -9969.145296594003, - -22090.374953524468, - -30046.710612459116, - -34231.365993939704, - -37715.59024886533, - -41802.50340644519, - -46845.76531579173, - -53508.24495106712, - -60585.65099804377, - -66358.34093450326, - -71279.71960896056, - -71933.18734076618, - -71755.034227155, - -67809.68680280533, - -64400.06428625241, - -61064.03250412306, - -58810.456554433586, - -59975.304198320286, - -60798.68206848542, - -63493.416612009874, - -64155.4450573213, - -62690.242574424476, - -59863.77929515926, - -54138.437892686845, - -48515.38371285758, - -42881.42523858891, - -39073.49279137646, - -38032.671349703705, - -39428.71842322324, - -42490.03475588669, - -45722.03738602748, - -47752.59959090031, - -47104.67061034423, - -43948.68515610047, - -37987.35506119275, - -14251.179283437232 - ], - "flow:branch3_seg2:J3": [ - -0.10982349511002992, - 1.7692951529485454, - 3.9396263179716713, - 6.392629413191461, - 9.055488872282325, - 12.196477027498505, - 16.815675472558368, - 22.59458522669098, - 31.60042377955794, - 42.44817198563112, - 56.22007653649177, - 72.42631736777093, - 88.96738849314652, - 107.90576836800241, - 123.18061624790984, - 139.30225724907712, - 148.379949191685, - 156.17627525872948, - 157.97345630949687, - 154.2281444384545, - 150.16132706016091, - 136.02706080071988, - 123.21090874887257, - 102.19209328250882, - 79.62210916229965, - 55.45086754885682, - 28.573685477709837, - 1.8224871461075214, - -24.95439683683455, - -50.785754979050964, - -73.32839411349819, - -92.78049744979855, - -109.73361725891544, - -121.20311235121353, - -133.5552021441198, - -138.3275628406338, - -145.202844856919, - -146.64734258067037, - -146.0502384421579, - -146.65192512230632, - -139.66986155528608, - -135.2531512047155, - -122.87426368479845, - -109.5545267850277, - -94.24031443678797, - -77.29083470634, - -61.74738069537915, - -45.94096718694397, - -32.35105936370722, - -20.116082230251568, - -10.441422899226385, - -2.056005301094969, - 4.786850185626583, - 11.766869435498608, - 18.0887800365287, - 25.035980121061595, - 30.87678261168513, - 35.627504370321965, - 39.29367291372166, - 39.92391424929126, - 39.587418893715196, - 35.83294104806082, - 31.06003128293234, - 24.75704285876469, - 18.5687286240509, - 12.784862587612814, - 7.9015385635094955, - 4.019661471493689, - 0.8400006925210836, - -1.726612564501015, - -4.087132797345788, - -6.268893664428732, - -8.666796545437299, - -10.700162512550616, - -12.836048191317962, - -14.03983681017064, - -14.668664637757606, - -14.546746700390898, - -13.733391788309078, - -12.899260702662255, - -11.801068599280006, - -11.191549922213254, - -10.632341637226293, - -10.574414187120517, - -10.492486057350831, - -10.194237589598849, - -9.741882524041321, - -8.430586567421862, - -7.012801874060854, - -5.096030730641604, - -3.415290686341353, - -2.1660295065199007, - -1.4813441208979292, - -1.4384110721992207, - -1.790638622984844, - -2.2904750742809847, - -2.584610956979369, - -2.390795092847897, - -1.5758837522195468, - -0.10982349511002992 - ], - "pressure:branch3_seg2:J3": [ - -18743.459044653384, - -28202.298579948612, - -20878.88203750761, - -13263.684350832673, - -4202.077828542973, - 6161.933535206509, - 23535.70540721979, - 44947.536759690454, - 78555.41309006447, - 119558.68303778111, - 167546.87764369874, - 229651.17727664055, - 282983.199092816, - 354095.8162277401, - 402956.6976384781, - 456150.12787643075, - 497038.31862027914, - 517325.52982798166, - 543360.8524566143, - 527973.9794059737, - 528530.1895091314, - 489788.0787648204, - 454490.6331544258, - 399096.00151867844, - 326196.6391432964, - 258148.68754673423, - 169788.53709298017, - 87589.99248161835, - 2247.2505523445075, - -76690.4534145867, - -149080.24765311513, - -203723.50329054572, - -262323.44162195455, - -291431.8443530988, - -331164.86758960516, - -350014.2747656654, - -368312.06624324876, - -386631.3773596161, - -379452.3489937911, - -393611.8477757254, - -368849.2526689676, - -360429.9218076095, - -326398.9068290954, - -284583.7702883643, - -252833.00700603196, - -200188.4397976783, - -169845.9270616763, - -128899.95741075052, - -101364.01675541706, - -79351.87394258568, - -59754.96742496738, - -44852.91318959738, - -29413.086484171512, - -11476.881773468245, - 5802.274990077089, - 25956.535069963276, - 44314.3567146259, - 56075.16297326205, - 68677.18914224663, - 65801.63628507208, - 64858.94820860036, - 50855.53525696161, - 35379.53147860236, - 20615.964839267966, - 2791.52741334234, - -7854.009734117505, - -18905.13871200313, - -25360.15484328246, - -30505.289008039115, - -35355.37889764309, - -40749.272741899695, - -46490.8997527786, - -54062.09742513675, - -59851.25966865161, - -66045.70448506883, - -68994.7679082991, - -69065.97635175673, - -68943.06356580787, - -64701.48750134123, - -63534.900449887886, - -60476.836821373196, - -60237.65666795092, - -61202.137908774464, - -62090.469660737035, - -64094.43665227004, - -62989.66701846276, - -61815.26532652206, - -57315.041836053446, - -52513.70858055522, - -47190.748854824335, - -42658.48724781661, - -40589.68602707057, - -40190.55484230645, - -41936.49628706027, - -44313.749139884254, - -46335.59023982538, - -46920.716931847055, - -44995.167973687196, - -41144.66076193385, - -18743.459044653384 - ], - "flow:J3:branch4_seg0": [ - -0.5041425723057251, - 0.6154357807771406, - 1.989833574338895, - 3.6497182113854403, - 5.391740328275032, - 7.502772369733205, - 10.422717234964603, - 14.003179746663816, - 19.66578895924137, - 26.242809612969538, - 35.161540734353345, - 45.10059679064722, - 56.26127454936141, - 68.50215588406003, - 79.09139459451079, - 90.99367604544328, - 96.76002292253568, - 104.10574801535917, - 104.87089578309683, - 104.31446796973825, - 102.56739833525675, - 93.77898608651458, - 86.92664727488078, - 72.954417288298, - 59.559924565077026, - 43.876839097162105, - 27.047722593107327, - 9.762547901966299, - -7.718396045715678, - -25.160029418281677, - -40.21074287466303, - -54.358768351186725, - -66.00540902290238, - -75.12372605184815, - -84.89377551723483, - -88.58476859276566, - -95.34669573225673, - -96.15876917987566, - -97.80904407921926, - -98.91790715904389, - -95.63911290336584, - -94.32340727846876, - -86.69400232536414, - -79.66702731110918, - -69.33185201787329, - -59.23430092999148, - -48.45321205150328, - -37.806954373048086, - -28.119671792450728, - -18.717654379802273, - -11.50312783503149, - -4.884718722216521, - 0.2543931745169051, - 5.389465941151101, - 9.90835570822517, - 14.903874012899331, - 18.90867663582634, - 22.64764538622138, - 25.36132904985353, - 26.584429544082745, - 26.99482211134185, - 25.12175371876502, - 22.66647847948438, - 18.447799547402077, - 14.641281449849963, - 10.434156277448652, - 6.992679684397184, - 4.0332508683359265, - 1.5039615647305904, - -0.4832171229634843, - -2.246551490074578, - -3.8022480129175156, - -5.415295766975935, - -6.817031006038371, - -8.363738534586155, - -9.276530615453083, - -10.012041602995902, - -10.041221262596299, - -9.808391660971958, - -9.308203238692988, - -8.648322357989024, - -8.238495083157158, - -7.658839650336672, - -7.5991063678713155, - -7.370928718994234, - -7.235574674982644, - -7.010641689508112, - -6.228687306110847, - -5.451388706029683, - -4.177262775379661, - -3.0755549372063333, - -2.1103745719612186, - -1.4841433142842382, - -1.249005947272783, - -1.3037367230397385, - -1.5400706084148557, - -1.726857374828866, - -1.7111053456426855, - -1.3083391741128763, - -0.5041425723057251 - ], - "pressure:J3:branch4_seg0": [ - -18743.459044653384, - -28202.298579948612, - -20878.88203750761, - -13263.684350832673, - -4202.077828542973, - 6161.933535206509, - 23535.70540721979, - 44947.536759690454, - 78555.41309006447, - 119558.68303778111, - 167546.87764369874, - 229651.17727664055, - 282983.199092816, - 354095.8162277401, - 402956.6976384781, - 456150.12787643075, - 497038.31862027914, - 517325.52982798166, - 543360.8524566143, - 527973.9794059737, - 528530.1895091314, - 489788.0787648204, - 454490.6331544258, - 399096.00151867844, - 326196.6391432964, - 258148.68754673423, - 169788.53709298017, - 87589.99248161835, - 2247.2505523445075, - -76690.4534145867, - -149080.24765311513, - -203723.50329054572, - -262323.44162195455, - -291431.8443530988, - -331164.86758960516, - -350014.2747656654, - -368312.06624324876, - -386631.3773596161, - -379452.3489937911, - -393611.8477757254, - -368849.2526689676, - -360429.9218076095, - -326398.9068290954, - -284583.7702883643, - -252833.00700603196, - -200188.4397976783, - -169845.9270616763, - -128899.95741075052, - -101364.01675541706, - -79351.87394258568, - -59754.96742496738, - -44852.91318959738, - -29413.086484171512, - -11476.881773468245, - 5802.274990077089, - 25956.535069963276, - 44314.3567146259, - 56075.16297326205, - 68677.18914224663, - 65801.63628507208, - 64858.94820860036, - 50855.53525696161, - 35379.53147860236, - 20615.964839267966, - 2791.52741334234, - -7854.009734117505, - -18905.13871200313, - -25360.15484328246, - -30505.289008039115, - -35355.37889764309, - -40749.272741899695, - -46490.8997527786, - -54062.09742513675, - -59851.25966865161, - -66045.70448506883, - -68994.7679082991, - -69065.97635175673, - -68943.06356580787, - -64701.48750134123, - -63534.900449887886, - -60476.836821373196, - -60237.65666795092, - -61202.137908774464, - -62090.469660737035, - -64094.43665227004, - -62989.66701846276, - -61815.26532652206, - -57315.041836053446, - -52513.70858055522, - -47190.748854824335, - -42658.48724781661, - -40589.68602707057, - -40190.55484230645, - -41936.49628706027, - -44313.749139884254, - -46335.59023982538, - -46920.716931847055, - -44995.167973687196, - -41144.66076193385, - -18743.459044653384 - ], - "flow:J3:branch10_seg0": [ - 0.3943190771956738, - 1.153859372170816, - 1.9497927436325457, - 2.742911201806991, - 3.663748544006544, - 4.693704657764707, - 6.392958237594017, - 8.591405480028447, - 11.934634820316605, - 16.205362372662524, - 21.05853580213801, - 27.325720577123864, - 32.70611394378858, - 39.40361248394199, - 44.08922165340077, - 48.30858120363261, - 51.61992626915118, - 52.07052724337275, - 53.10256052640118, - 49.9136764687163, - 47.593928724905574, - 42.248074714203, - 36.28426147399864, - 29.23767599421438, - 20.06218459722195, - 11.574028451696439, - 1.5259628845965691, - -7.940060755858697, - -17.236000791126028, - -25.625725560770437, - -33.11765123883444, - -38.42172909861619, - -43.72820823601576, - -46.079386299369055, - -48.661426626888485, - -49.74279424786504, - -49.856149124667, - -50.4885734007932, - -48.241194362934955, - -47.734017963263895, - -44.03074865191829, - -40.92974392624722, - -36.180261359435, - -29.887499473918062, - -24.90846241891362, - -18.05653377634725, - -13.294168643874878, - -8.134012813895648, - -4.231387571256616, - -1.3984278504491983, - 1.0617049358056774, - 2.828713421121544, - 4.5324570111098055, - 6.377403494347333, - 8.1804243283026, - 10.132106108162299, - 11.96810597585915, - 12.979858984100714, - 13.932343863869475, - 13.33948470520944, - 12.592596782374173, - 10.711187329294255, - 8.393552803447356, - 6.309243311361991, - 3.9274471742027646, - 2.350706310163006, - 0.9088588791120136, - -0.01358939684196348, - -0.6639608722100679, - -1.2433954415375403, - -1.8405813072719317, - -2.466645651512822, - -3.251500778461145, - -3.8831315065106136, - -4.472309656729645, - -4.763306194718514, - -4.656623034760579, - -4.505525437794697, - -3.9250001273372828, - -3.5910574639693222, - -3.152746241291869, - -2.9530548390553726, - -2.9735019868895556, - -2.97530781924948, - -3.1215573383554904, - -2.9586629146160863, - -2.7312408345341064, - -2.2018992613108517, - -1.5614131680309824, - -0.9187679552623993, - -0.3397357491344348, - -0.05565493455939835, - 0.0027991933854591942, - -0.18940512492695114, - -0.4869018999462851, - -0.7504044658672786, - -0.8577535821485845, - -0.6796897472068557, - -0.2675445781068598, - 0.3943190771956738 - ], - "pressure:J3:branch10_seg0": [ - -18743.459044653384, - -28202.298579948612, - -20878.88203750761, - -13263.684350832673, - -4202.077828542973, - 6161.933535206509, - 23535.70540721979, - 44947.536759690454, - 78555.41309006447, - 119558.68303778111, - 167546.87764369874, - 229651.17727664055, - 282983.199092816, - 354095.8162277401, - 402956.6976384781, - 456150.12787643075, - 497038.31862027914, - 517325.52982798166, - 543360.8524566143, - 527973.9794059737, - 528530.1895091314, - 489788.0787648204, - 454490.6331544258, - 399096.00151867844, - 326196.6391432964, - 258148.68754673423, - 169788.53709298017, - 87589.99248161835, - 2247.2505523445075, - -76690.4534145867, - -149080.24765311513, - -203723.50329054572, - -262323.44162195455, - -291431.8443530988, - -331164.86758960516, - -350014.2747656654, - -368312.06624324876, - -386631.3773596161, - -379452.3489937911, - -393611.8477757254, - -368849.2526689676, - -360429.9218076095, - -326398.9068290954, - -284583.7702883643, - -252833.00700603196, - -200188.4397976783, - -169845.9270616763, - -128899.95741075052, - -101364.01675541706, - -79351.87394258568, - -59754.96742496738, - -44852.91318959738, - -29413.086484171512, - -11476.881773468245, - 5802.274990077089, - 25956.535069963276, - 44314.3567146259, - 56075.16297326205, - 68677.18914224663, - 65801.63628507208, - 64858.94820860036, - 50855.53525696161, - 35379.53147860236, - 20615.964839267966, - 2791.52741334234, - -7854.009734117505, - -18905.13871200313, - -25360.15484328246, - -30505.289008039115, - -35355.37889764309, - -40749.272741899695, - -46490.8997527786, - -54062.09742513675, - -59851.25966865161, - -66045.70448506883, - -68994.7679082991, - -69065.97635175673, - -68943.06356580787, - -64701.48750134123, - -63534.900449887886, - -60476.836821373196, - -60237.65666795092, - -61202.137908774464, - -62090.469660737035, - -64094.43665227004, - -62989.66701846276, - -61815.26532652206, - -57315.041836053446, - -52513.70858055522, - -47190.748854824335, - -42658.48724781661, - -40589.68602707057, - -40190.55484230645, - -41936.49628706027, - -44313.749139884254, - -46335.59023982538, - -46920.716931847055, - -44995.167973687196, - -41144.66076193385, - -18743.459044653384 - ], - "flow:branch5_seg2:J4": [ - 2.5082786769836427, - 7.496485704622695, - 12.646608183026533, - 18.114643279945298, - 23.9041223673922, - 31.115628933332165, - 41.51798254690654, - 55.8584196223994, - 76.91174993540983, - 103.13437583981225, - 136.25112259263824, - 172.81324157414468, - 211.38521295927, - 249.71205191136104, - 280.5694539264606, - 308.8030915457608, - 323.7023701499732, - 333.87797381512723, - 330.8751317751213, - 316.09875870863027, - 295.30403901131945, - 260.98725777789565, - 223.67930530806328, - 175.32617648443278, - 121.32914901836612, - 63.144168257569, - 1.612365311635172, - -59.82267887567164, - -117.45451991944793, - -171.98115231396676, - -216.55760215376577, - -254.55897117730115, - -283.13948720444796, - -300.3485077268613, - -314.6702490397831, - -317.9974723426315, - -322.378199103906, - -318.7019917954882, - -310.3178112555701, - -299.1059198885351, - -278.10777398454053, - -255.17326973911747, - -222.4933725143721, - -186.52662006460392, - -147.46467574720276, - -108.40573018857113, - -72.27280303280992, - -40.889717272119945, - -15.712507976600229, - 3.135733545922239, - 16.850065736323124, - 27.788501710065326, - 36.99370759453244, - 47.00009212964489, - 57.047173450516574, - 68.31393954921056, - 78.02810438729375, - 85.44452723822513, - 88.80008071184758, - 86.4681180761529, - 79.5342131118912, - 67.27912657421082, - 52.87155197380969, - 37.28138593504113, - 23.18261706799625, - 11.231833124634699, - 2.4259488579750785, - -3.6344695605736033, - -7.60843063124608, - -10.693739279899077, - -13.84195921267562, - -17.41740330733121, - -21.605129369462517, - -25.453247758385757, - -28.821598245247696, - -30.281894128986337, - -30.187777936935092, - -28.24461842024496, - -25.289062217312885, - -22.1375754439079, - -19.365805514681064, - -17.938200016057575, - -17.424201072291492, - -17.956797666931777, - -18.315498993536362, - -17.844442568959753, - -16.293070496740455, - -13.105476617872888, - -9.244775708488621, - -4.991711585037183, - -1.448427165469835, - 0.634254794696644, - 1.038224876221309, - -0.1358542483324048, - -2.1186103059806642, - -4.026651390564486, - -4.874659029744872, - -4.115917778312576, - -1.5305714234143803, - 2.5082786769836427 - ], - "pressure:branch5_seg2:J4": [ - -16189.6939199242, - -24630.876420317552, - -16875.692637128166, - -8141.026257126466, - 1264.0206128613502, - 14332.593290812985, - 33388.23450867302, - 59302.03879766721, - 97177.26019357215, - 141004.093482576, - 198859.13863992903, - 258380.95698425503, - 324033.51944625215, - 387816.08460309316, - 436811.31057165103, - 489383.48192269023, - 513177.2034443219, - 543661.4783698408, - 546346.0449651352, - 536861.6164279974, - 517869.65908883663, - 473656.20276841684, - 431730.23396119836, - 363899.36661027244, - 294864.6657847484, - 213344.96913339462, - 127108.30110369805, - 38818.623772261286, - -43355.182820428294, - -124265.34620232004, - -187255.52043719677, - -248560.10119885002, - -294114.8824125859, - -324802.45735594485, - -357218.369647429, - -367269.3367883, - -391819.6888066177, - -394511.59121898614, - -399045.73459668126, - -394528.1186889654, - -373448.27986341383, - -352778.4519367134, - -309416.8583744811, - -272098.043632354, - -224017.53040729428, - -180688.87055717825, - -139095.85246493653, - -102855.0045617947, - -75969.1873861987, - -55344.35661641422, - -40250.027335549996, - -26639.66558512643, - -12971.414314731075, - 3800.782914963134, - 20496.775623234123, - 40538.041147500735, - 55478.39701364076, - 68839.550500721, - 74242.6092092983, - 71840.78069012059, - 63274.58584696742, - 45863.491196450545, - 28987.95606104039, - 9422.220847484672, - -5710.4880352244345, - -18636.510934052112, - -27375.83154916385, - -33273.70215533611, - -37194.593922164575, - -41266.50853521542, - -45941.631100811275, - -51950.00659894564, - -58829.10568113341, - -64717.19715223452, - -70003.83396277628, - -71329.16009077046, - -71600.71458159905, - -68624.85320014501, - -65421.198492941054, - -62172.63116984059, - -59621.970914187936, - -59692.52120056775, - -60267.26083170759, - -62605.853439292776, - -63559.24770040859, - -62970.357161540895, - -60476.82823643026, - -55349.33082902009, - -49970.3355560869, - -44124.96377241589, - -40198.83663347435, - -38442.615709496065, - -39104.401867012, - -41586.93233495503, - -44559.4509665868, - -46836.78911778929, - -46885.71333932621, - -44491.33321030954, - -39396.482282297016, - -16189.6939199242 - ], - "flow:J4:branch6_seg0": [ - 1.9167280907819122, - 5.225949483526584, - 8.586405644723072, - 12.064666380304601, - 15.780713441949938, - 20.366042042756405, - 27.24377893069379, - 36.62190605457543, - 50.62296023014947, - 67.89777609036986, - 89.42729297216927, - 113.58199723421633, - 137.87117431988068, - 163.05909890973047, - 181.85593942753388, - 199.31986360161198, - 208.1407763702236, - 212.89287376633862, - 210.80006614128615, - 199.4837611050102, - 185.84180820812713, - 162.5976163530239, - 138.21213064418149, - 106.38633406116064, - 71.34707719998595, - 33.84748593361172, - -5.793174290046384, - -44.85520345961247, - -81.68334690484814, - -115.60351273063344, - -143.660141478406, - -166.2628623959014, - -184.1319629000284, - -193.4070050383494, - -201.86979439596212, - -202.96710851611556, - -204.85147394748154, - -202.2575328816329, - -195.82801208720167, - -188.81367200339645, - -174.15933944785326, - -159.59528042488373, - -137.44741922363025, - -114.02916455072409, - -88.9788941794146, - -63.53752033071079, - -41.43100102041323, - -21.41724078977947, - -6.3663611742962996, - 4.863851112655765, - 12.893321075216456, - 19.11577197513873, - 24.617858409131323, - 30.862858072235714, - 37.14738568542003, - 44.45350009331384, - 50.57727932574933, - 55.00564093244149, - 57.016537824692335, - 54.72310772150447, - 50.07428923588694, - 41.446748200747365, - 31.909053737011522, - 21.802480238506682, - 12.71072937568986, - 5.4786549405663205, - 0.11885045052720682, - -3.336561542217954, - -5.512323127926681, - -7.284634837880397, - -9.167135414499777, - -11.417184239825799, - -14.166499982188663, - -16.573612695944977, - -18.7393596546025, - -19.507516658956032, - -19.22917888113221, - -17.856564431063592, - -15.695270035302576, - -13.71847732773008, - -11.868805149612976, - -11.072217631396676, - -10.89001671058551, - -11.304326628922832, - -11.670402007287436, - -11.303057057690008, - -10.258335361359132, - -8.068143666249437, - -5.482630828376299, - -2.6774538407518267, - -0.44719317072138853, - 0.7838742134159314, - 0.8455190008992369, - -0.09409955182752437, - -1.5112238150863646, - -2.797666045982071, - -3.303287594467096, - -2.674522704868034, - -0.8594385537733127, - 1.9167280907819122 - ], - "pressure:J4:branch6_seg0": [ - -16189.6939199242, - -24630.876420317552, - -16875.692637128166, - -8141.026257126466, - 1264.0206128613502, - 14332.593290812985, - 33388.23450867302, - 59302.03879766721, - 97177.26019357215, - 141004.093482576, - 198859.13863992903, - 258380.95698425503, - 324033.51944625215, - 387816.08460309316, - 436811.31057165103, - 489383.48192269023, - 513177.2034443219, - 543661.4783698408, - 546346.0449651352, - 536861.6164279974, - 517869.65908883663, - 473656.20276841684, - 431730.23396119836, - 363899.36661027244, - 294864.6657847484, - 213344.96913339462, - 127108.30110369805, - 38818.623772261286, - -43355.182820428294, - -124265.34620232004, - -187255.52043719677, - -248560.10119885002, - -294114.8824125859, - -324802.45735594485, - -357218.369647429, - -367269.3367883, - -391819.6888066177, - -394511.59121898614, - -399045.73459668126, - -394528.1186889654, - -373448.27986341383, - -352778.4519367134, - -309416.8583744811, - -272098.043632354, - -224017.53040729428, - -180688.87055717825, - -139095.85246493653, - -102855.0045617947, - -75969.1873861987, - -55344.35661641422, - -40250.027335549996, - -26639.66558512643, - -12971.414314731075, - 3800.782914963134, - 20496.775623234123, - 40538.041147500735, - 55478.39701364076, - 68839.550500721, - 74242.6092092983, - 71840.78069012059, - 63274.58584696742, - 45863.491196450545, - 28987.95606104039, - 9422.220847484672, - -5710.4880352244345, - -18636.510934052112, - -27375.83154916385, - -33273.70215533611, - -37194.593922164575, - -41266.50853521542, - -45941.631100811275, - -51950.00659894564, - -58829.10568113341, - -64717.19715223452, - -70003.83396277628, - -71329.16009077046, - -71600.71458159905, - -68624.85320014501, - -65421.198492941054, - -62172.63116984059, - -59621.970914187936, - -59692.52120056775, - -60267.26083170759, - -62605.853439292776, - -63559.24770040859, - -62970.357161540895, - -60476.82823643026, - -55349.33082902009, - -49970.3355560869, - -44124.96377241589, - -40198.83663347435, - -38442.615709496065, - -39104.401867012, - -41586.93233495503, - -44559.4509665868, - -46836.78911778929, - -46885.71333932621, - -44491.33321030954, - -39396.482282297016, - -16189.6939199242 - ], - "flow:J4:branch13_seg0": [ - 0.5915505862014689, - 2.2705362210959605, - 4.060202538303047, - 6.049976899640893, - 8.123408925447015, - 10.749586890575172, - 14.27420361621211, - 19.23651356782633, - 26.28878970526105, - 35.236599749445176, - 46.82382962047192, - 59.231244339926704, - 73.51403863939007, - 86.65295300162865, - 98.7135144989369, - 109.48322794415395, - 115.56159377974495, - 120.98510004879326, - 120.075065633837, - 116.61499760361208, - 109.46223080319126, - 98.38964142487622, - 85.46717466387463, - 68.93984242327709, - 49.9820718183706, - 29.296682323969552, - 7.405539601700522, - -14.967475416044326, - -35.77117301460288, - -56.37763958332703, - -72.89746067534881, - -88.29610878141226, - -99.00752430443951, - -106.9415026885142, - -112.80045464381523, - -115.03036382652597, - -117.52672515641463, - -116.44445891385419, - -114.48979916836527, - -110.29224788514047, - -103.94843453668688, - -95.57798931423137, - -85.04595329074, - -72.49745551388116, - -58.48578156778899, - -44.868209857861906, - -30.84180201239815, - -19.47247648234091, - -9.346146802303736, - -1.7281175667340753, - 3.956744661107205, - 8.672729734926085, - 12.375849185400876, - 16.13723405740858, - 19.899787765095933, - 23.86043945589776, - 27.45082506154548, - 30.438886305783313, - 31.783542887155317, - 31.745010354647317, - 29.4599238760028, - 25.832378373459882, - 20.96249823679932, - 15.478905696532635, - 10.471887692309748, - 5.753178184067426, - 2.3070984074485934, - -0.29790801835553427, - -2.096107503319665, - -3.409104442019444, - -4.674823798169801, - -6.00021906750456, - -7.438629387274742, - -8.87963506243659, - -10.082238590644526, - -10.774377470031062, - -10.958599055806237, - -10.388053989181975, - -9.59379218200743, - -8.41909811617892, - -7.497000365066826, - -6.865982384662174, - -6.534184361705387, - -6.6524710380105105, - -6.645096986248283, - -6.541385511269083, - -6.034735135381372, - -5.0373329516258964, - -3.762144880112192, - -2.3142577442863055, - -1.0012339947496616, - -0.1496194187186174, - 0.1927058753245145, - -0.0417546965041848, - -0.6073864908953172, - -1.2289853445823915, - -1.571371435277654, - -1.4413950734454337, - -0.671132869640661, - 0.5915505862014689 - ], - "pressure:J4:branch13_seg0": [ - -16189.6939199242, - -24630.876420317552, - -16875.692637128166, - -8141.026257126466, - 1264.0206128613502, - 14332.593290812985, - 33388.23450867302, - 59302.03879766721, - 97177.26019357215, - 141004.093482576, - 198859.13863992903, - 258380.95698425503, - 324033.51944625215, - 387816.08460309316, - 436811.31057165103, - 489383.48192269023, - 513177.2034443219, - 543661.4783698408, - 546346.0449651352, - 536861.6164279974, - 517869.65908883663, - 473656.20276841684, - 431730.23396119836, - 363899.36661027244, - 294864.6657847484, - 213344.96913339462, - 127108.30110369805, - 38818.623772261286, - -43355.182820428294, - -124265.34620232004, - -187255.52043719677, - -248560.10119885002, - -294114.8824125859, - -324802.45735594485, - -357218.369647429, - -367269.3367883, - -391819.6888066177, - -394511.59121898614, - -399045.73459668126, - -394528.1186889654, - -373448.27986341383, - -352778.4519367134, - -309416.8583744811, - -272098.043632354, - -224017.53040729428, - -180688.87055717825, - -139095.85246493653, - -102855.0045617947, - -75969.1873861987, - -55344.35661641422, - -40250.027335549996, - -26639.66558512643, - -12971.414314731075, - 3800.782914963134, - 20496.775623234123, - 40538.041147500735, - 55478.39701364076, - 68839.550500721, - 74242.6092092983, - 71840.78069012059, - 63274.58584696742, - 45863.491196450545, - 28987.95606104039, - 9422.220847484672, - -5710.4880352244345, - -18636.510934052112, - -27375.83154916385, - -33273.70215533611, - -37194.593922164575, - -41266.50853521542, - -45941.631100811275, - -51950.00659894564, - -58829.10568113341, - -64717.19715223452, - -70003.83396277628, - -71329.16009077046, - -71600.71458159905, - -68624.85320014501, - -65421.198492941054, - -62172.63116984059, - -59621.970914187936, - -59692.52120056775, - -60267.26083170759, - -62605.853439292776, - -63559.24770040859, - -62970.357161540895, - -60476.82823643026, - -55349.33082902009, - -49970.3355560869, - -44124.96377241589, - -40198.83663347435, - -38442.615709496065, - -39104.401867012, - -41586.93233495503, - -44559.4509665868, - -46836.78911778929, - -46885.71333932621, - -44491.33321030954, - -39396.482282297016, - -16189.6939199242 - ], - "flow:branch7_seg2:J5": [ - 0.16919535294665466, - 2.2011460964319807, - 4.536039762048981, - 7.086551151079363, - 9.893478023061906, - 13.12413013946982, - 17.878596490539618, - 23.89318982757918, - 33.035961393162786, - 44.54064795627306, - 58.73536406118155, - 76.45086879438051, - 94.14321175241633, - 114.70448258616227, - 131.7146381268164, - 147.94773847009782, - 159.42692174783085, - 167.44153606321052, - 171.75624154657024, - 168.41079439648692, - 163.6629712797848, - 149.01396191671822, - 134.07770361521733, - 112.99830406141469, - 88.2718203942936, - 62.10275244256347, - 31.455990407477348, - 0.7654417527164468, - -29.62419900534758, - -58.3213809270284, - -84.22254679743043, - -106.25125355834984, - -126.33591790170485, - -139.67702508282505, - -151.8965565848787, - -157.38602328841498, - -162.94443870205666, - -165.44469138907246, - -163.81460518955637, - -163.38511324906904, - -154.40962292033, - -146.8440973415917, - -133.22690068693655, - -117.06532861994931, - -100.78211506583165, - -80.87828186191041, - -62.72919145602474, - -44.58266115697016, - -29.113429975195277, - -16.564642530861267, - -6.389926470547052, - 2.180350037382249, - 9.455034069751667, - 16.53017098889757, - 22.767467726171596, - 29.335570019644802, - 35.31316543667458, - 40.06674315063287, - 44.120688856922634, - 44.64186100941763, - 43.8208495379478, - 39.64416198873983, - 33.904642957222336, - 27.38945895567185, - 20.45941102005146, - 14.170447046280934, - 8.583534244072593, - 4.173506732354808, - 0.8582664721985677, - -1.6991820452564574, - -4.02922676164974, - -6.311229119706322, - -8.877945146585832, - -11.066410361297205, - -13.216095904033105, - -14.541028210015746, - -15.094849226562976, - -15.102727376408627, - -14.148216922369436, - -13.15621751115812, - -11.848910879189056, - -10.946298058692467, - -10.428491041474967, - -10.326480953358766, - -10.394831746537202, - -10.09935640273366, - -9.585674842009102, - -8.250619546856692, - -6.6775997823307485, - -4.725219009086822, - -2.8833734726062934, - -1.5304125541085882, - -0.736612240888007, - -0.6716510900838719, - -1.1278451684236381, - -1.782029936338778, - -2.2449934842619417, - -2.1229782785152764, - -1.329613432057434, - 0.16919535294665466 - ], - "pressure:branch7_seg2:J5": [ - -20407.939508844473, - -30350.18368421359, - -23291.3388834668, - -16094.323781951447, - -7340.234960735385, - 2357.45066993427, - 17884.32896206069, - 37629.06459794206, - 67084.31831507188, - 105651.8108401289, - 149192.57994346885, - 208874.4150134941, - 260209.57978605467, - 327464.80963800737, - 379215.2992660883, - 425843.9984391016, - 475057.9478978881, - 493206.5825017546, - 524970.8398574102, - 515526.82442649495, - 511877.9975791137, - 485605.841919393, - 449465.47061550646, - 407576.77114038216, - 340072.6076649711, - 278056.85298855766, - 195926.50629332385, - 118228.10749711082, - 38446.94932554195, - -36331.68949839173, - -110514.9792284702, - -165924.8112053267, - -228061.577563421, - -262907.25500096264, - -298979.65890640457, - -329175.68719540926, - -345576.3329888408, - -373721.2963983183, - -371230.5389558229, - -385215.0788353929, - -369824.6595081675, - -359793.4024924265, - -337586.7652098488, - -296798.53847334284, - -269868.7164137738, - -217658.80829949136, - -183910.31413207634, - -144801.967365326, - -112685.42240682364, - -90999.28288467338, - -68028.28203626537, - -50937.30116437635, - -34659.115699169364, - -16864.301101715417, - 38.699051893413426, - 19080.886899099016, - 38667.077390140614, - 51368.39688706125, - 65312.93111630919, - 65100.35693169043, - 64525.767822918075, - 54394.728938079046, - 39033.76209103487, - 26757.46555074654, - 8557.530336021868, - -3185.409580560885, - -14725.906662263636, - -22736.904340896446, - -27808.143446015893, - -33047.912752723605, - -38591.64724398224, - -44348.43210396328, - -51621.96215310953, - -57540.37671815285, - -63461.66988478845, - -67489.05323970578, - -68058.43359997038, - -69009.61374560626, - -65349.72944405847, - -63943.9724996065, - -61271.279255543646, - -60031.63040887881, - -61313.82216429134, - -61639.43608730503, - -63632.41716555867, - -62981.764798529875, - -61797.59184139231, - -58435.45033338303, - -53740.88371198416, - -48947.27070132345, - -44166.34355885685, - -41495.064365079255, - -40453.62783794407, - -41478.59990474745, - -43614.74448495981, - -45566.914686070966, - -46517.89774084373, - -45164.876473166965, - -42082.61917238365, - -20407.939508844473 - ], - "flow:J5:branch8_seg0": [ - -0.007684550414627338, - 1.3226758802957999, - 2.889856504930631, - 4.683218784031973, - 6.5995888155732585, - 8.864213059589456, - 12.144343794434736, - 16.131235490354726, - 22.40668616311555, - 29.912434734801256, - 39.67932015687914, - 51.46590744066343, - 63.80530229397664, - 78.08519165045048, - 89.83589669373201, - 102.26205953881613, - 109.44378766385951, - 116.91386536806266, - 119.60726381622307, - 118.45840192640458, - 116.4292335700276, - 105.53681997732342, - 96.77188326298436, - 81.48091967595884, - 65.40931136015939, - 47.40428185734036, - 26.123375196658287, - 4.74493557957266, - -16.633859672001012, - -37.037392433610165, - -55.05314703675795, - -71.45126839160291, - -85.84968260339635, - -95.93381187611472, - -105.84340790121426, - -108.9169804177178, - -114.55191042945147, - -115.5409175405114, - -115.49725342504696, - -115.8066459839646, - -109.19913327376065, - -105.07721926355548, - -94.98568647945537, - -84.93483809873234, - -73.42741758786539, - -60.08930033132048, - -47.2188737126273, - -34.091887888324784, - -23.121255630694897, - -13.615264123943746, - -6.297874537252874, - 0.20477226574523846, - 5.660591481684627, - 10.875508220717215, - 15.274909185788289, - 19.988546895072595, - 23.992046379151024, - 27.57934539800492, - 30.565013091439138, - 31.248414623676567, - 31.1124490851826, - 28.336557333762865, - 24.85387907306734, - 20.244770411573327, - 15.709726293587286, - 11.165456692753857, - 7.084821122332862, - 3.801402486106937, - 1.1942125660694032, - -0.7126472733859699, - -2.417475595664309, - -4.076161120950048, - -5.898353601564533, - -7.41542577930875, - -8.9950529444763, - -9.895586332224685, - -10.47574578956711, - -10.538054110773619, - -10.062313293717063, - -9.440867855273403, - -8.521154144917446, - -7.928187365989641, - -7.392060770934978, - -7.351012265352074, - -7.291089752925652, - -7.090622513623304, - -6.8031240991377695, - -5.860892459778305, - -4.916997448483041, - -3.556653328043601, - -2.3214207843247263, - -1.3378704223199456, - -0.6784915473255516, - -0.5177223101884924, - -0.7195729421828606, - -1.1211193743735877, - -1.4344885029963843, - -1.4099755069150923, - -0.935300189238705, - -0.007684550414627338 - ], - "pressure:J5:branch8_seg0": [ - -20407.939508844473, - -30350.18368421359, - -23291.3388834668, - -16094.323781951447, - -7340.234960735385, - 2357.45066993427, - 17884.32896206069, - 37629.06459794206, - 67084.31831507188, - 105651.8108401289, - 149192.57994346885, - 208874.4150134941, - 260209.57978605467, - 327464.80963800737, - 379215.2992660883, - 425843.9984391016, - 475057.9478978881, - 493206.5825017546, - 524970.8398574102, - 515526.82442649495, - 511877.9975791137, - 485605.841919393, - 449465.47061550646, - 407576.77114038216, - 340072.6076649711, - 278056.85298855766, - 195926.50629332385, - 118228.10749711082, - 38446.94932554195, - -36331.68949839173, - -110514.9792284702, - -165924.8112053267, - -228061.577563421, - -262907.25500096264, - -298979.65890640457, - -329175.68719540926, - -345576.3329888408, - -373721.2963983183, - -371230.5389558229, - -385215.0788353929, - -369824.6595081675, - -359793.4024924265, - -337586.7652098488, - -296798.53847334284, - -269868.7164137738, - -217658.80829949136, - -183910.31413207634, - -144801.967365326, - -112685.42240682364, - -90999.28288467338, - -68028.28203626537, - -50937.30116437635, - -34659.115699169364, - -16864.301101715417, - 38.699051893413426, - 19080.886899099016, - 38667.077390140614, - 51368.39688706125, - 65312.93111630919, - 65100.35693169043, - 64525.767822918075, - 54394.728938079046, - 39033.76209103487, - 26757.46555074654, - 8557.530336021868, - -3185.409580560885, - -14725.906662263636, - -22736.904340896446, - -27808.143446015893, - -33047.912752723605, - -38591.64724398224, - -44348.43210396328, - -51621.96215310953, - -57540.37671815285, - -63461.66988478845, - -67489.05323970578, - -68058.43359997038, - -69009.61374560626, - -65349.72944405847, - -63943.9724996065, - -61271.279255543646, - -60031.63040887881, - -61313.82216429134, - -61639.43608730503, - -63632.41716555867, - -62981.764798529875, - -61797.59184139231, - -58435.45033338303, - -53740.88371198416, - -48947.27070132345, - -44166.34355885685, - -41495.064365079255, - -40453.62783794407, - -41478.59990474745, - -43614.74448495981, - -45566.914686070966, - -46517.89774084373, - -45164.876473166965, - -42082.61917238365, - -20407.939508844473 - ], - "flow:J5:branch12_seg0": [ - 0.1768799033609508, - 0.8784702161356652, - 1.6461832571186752, - 2.4033323670474775, - 3.293889207488865, - 4.259917079881213, - 5.734252696105343, - 7.761954337225019, - 10.629275230048062, - 14.628213221471492, - 19.056043904302044, - 24.984961353717544, - 30.33790945844074, - 36.619290935712606, - 41.87874143308584, - 45.68567893128068, - 49.98313408397496, - 50.52767069514834, - 52.14897773034894, - 49.952392470077214, - 47.23373770975551, - 43.4771419393875, - 37.305820352233866, - 31.51738438545011, - 22.862509034125285, - 14.698470585218026, - 5.332615210811074, - -3.979493826858221, - -12.99033933335256, - -21.283988493416018, - -29.169399760666717, - -34.79998516674068, - -40.48623529831587, - -43.74321320671095, - -46.053148683661604, - -48.4690428706926, - -48.39252827261127, - -49.90377384856239, - -48.317351764508814, - -47.57846726510473, - -45.21048964656958, - -41.76687807803773, - -38.24121420748236, - -32.130490521215535, - -27.354697477966663, - -20.78898153058937, - -15.510317743398645, - -10.490773268645318, - -5.992174344500595, - -2.9493784069176097, - -0.0920519332942091, - 1.9755777716373106, - 3.7944425880669432, - 5.6546627681802235, - 7.492558540383306, - 9.347023124571658, - 11.321119057523807, - 12.487397752628322, - 13.555675765483457, - 13.393446385740615, - 12.708400452765854, - 11.307604654977379, - 9.050763884154899, - 7.144688544097967, - 4.7496847264653335, - 3.004990353528362, - 1.4987131217403225, - 0.3721042462478462, - -0.33594609387076774, - -0.9865347718700888, - -1.6117511659846158, - -2.2350679987552065, - -2.97959154502147, - -3.6509845819887996, - -4.221042959558457, - -4.64544187778961, - -4.61910343699485, - -4.564673265634593, - -4.085903628653777, - -3.7153496558844026, - -3.327756734272063, - -3.0181106927033636, - -3.0364302705405244, - -2.975468688005999, - -3.1037419936109147, - -3.0087338891103976, - -2.782550742870644, - -2.389727087077726, - -1.7606023338475951, - -1.1685656810430434, - -0.5619526882808804, - -0.1925421317893428, - -0.058120693562028765, - -0.1539287798946338, - -0.4082722262400956, - -0.6609105619647604, - -0.8105049812657066, - -0.7130027716009519, - -0.39431324281872326, - 0.1768799033609508 - ], - "pressure:J5:branch12_seg0": [ - -20407.939508844473, - -30350.18368421359, - -23291.3388834668, - -16094.323781951447, - -7340.234960735385, - 2357.45066993427, - 17884.32896206069, - 37629.06459794206, - 67084.31831507188, - 105651.8108401289, - 149192.57994346885, - 208874.4150134941, - 260209.57978605467, - 327464.80963800737, - 379215.2992660883, - 425843.9984391016, - 475057.9478978881, - 493206.5825017546, - 524970.8398574102, - 515526.82442649495, - 511877.9975791137, - 485605.841919393, - 449465.47061550646, - 407576.77114038216, - 340072.6076649711, - 278056.85298855766, - 195926.50629332385, - 118228.10749711082, - 38446.94932554195, - -36331.68949839173, - -110514.9792284702, - -165924.8112053267, - -228061.577563421, - -262907.25500096264, - -298979.65890640457, - -329175.68719540926, - -345576.3329888408, - -373721.2963983183, - -371230.5389558229, - -385215.0788353929, - -369824.6595081675, - -359793.4024924265, - -337586.7652098488, - -296798.53847334284, - -269868.7164137738, - -217658.80829949136, - -183910.31413207634, - -144801.967365326, - -112685.42240682364, - -90999.28288467338, - -68028.28203626537, - -50937.30116437635, - -34659.115699169364, - -16864.301101715417, - 38.699051893413426, - 19080.886899099016, - 38667.077390140614, - 51368.39688706125, - 65312.93111630919, - 65100.35693169043, - 64525.767822918075, - 54394.728938079046, - 39033.76209103487, - 26757.46555074654, - 8557.530336021868, - -3185.409580560885, - -14725.906662263636, - -22736.904340896446, - -27808.143446015893, - -33047.912752723605, - -38591.64724398224, - -44348.43210396328, - -51621.96215310953, - -57540.37671815285, - -63461.66988478845, - -67489.05323970578, - -68058.43359997038, - -69009.61374560626, - -65349.72944405847, - -63943.9724996065, - -61271.279255543646, - -60031.63040887881, - -61313.82216429134, - -61639.43608730503, - -63632.41716555867, - -62981.764798529875, - -61797.59184139231, - -58435.45033338303, - -53740.88371198416, - -48947.27070132345, - -44166.34355885685, - -41495.064365079255, - -40453.62783794407, - -41478.59990474745, - -43614.74448495981, - -45566.914686070966, - -46517.89774084373, - -45164.876473166965, - -42082.61917238365, - -20407.939508844473 - ], - "flow:branch3_seg0:J6": [ - 0.49640214018411705, - 2.401638912404165, - 4.495604602628993, - 7.015115722780156, - 9.82251060706085, - 13.638095605552463, - 18.549816302939334, - 25.268405827342253, - 34.580677685802094, - 45.53367914162862, - 61.3219859701997, - 76.90332348550405, - 95.55181644041531, - 112.40442364228552, - 125.4877460503017, - 140.8435567920492, - 148.4305567858605, - 158.41942524391166, - 159.4892079718274, - 155.34838892212753, - 145.8394057188974, - 131.55278124814689, - 117.03108291636099, - 96.89867274666395, - 76.31122468858312, - 49.54232692337023, - 22.059477925250622, - -5.475741391289084, - -31.017283071463748, - -55.855712374549704, - -76.58529204637388, - -97.77564880178508, - -113.17608169296902, - -123.93777100472647, - -133.40591627177815, - -137.8910769540273, - -145.54407058999604, - -147.6259042222201, - -149.59734205913284, - -145.1370091425269, - -138.3983327903761, - -130.3422509481172, - -117.47586510334581, - -108.26955033929111, - -91.7747989169769, - -75.95979468160408, - -58.84044734257878, - -42.12828840836643, - -30.056293531933846, - -18.980718724592293, - -10.059765538970508, - -1.7561754569090402, - 6.217094979187973, - 13.361978426142752, - 19.742460477367896, - 26.20696190120674, - 31.3806233372022, - 36.87575520466081, - 39.38355260744849, - 40.10986872927283, - 38.24070031251499, - 33.60326711904047, - 29.57717251204356, - 23.525338917775787, - 18.08308627025196, - 12.444952287932805, - 7.277841040972461, - 3.4332027650751398, - 0.4207266346309625, - -2.0439620601270523, - -4.315738336040381, - -6.806962953180057, - -9.168704160169895, - -11.274525633393385, - -13.008157050457454, - -13.805292634424879, - -14.647672229034123, - -14.28080342683931, - -13.758827602350603, - -12.745995791095252, - -11.520674985938689, - -11.110538892248808, - -10.671639558691218, - -10.840258293202275, - -10.680712482838121, - -10.19594937395687, - -9.275037854894888, - -7.8878779032298585, - -6.422805539389118, - -4.769052191965245, - -3.3919269943489017, - -2.230948975065047, - -1.6358527552670863, - -1.608724684337243, - -1.9336769277014103, - -2.386474643770696, - -2.4695504458100137, - -2.120219440415352, - -1.099810613418554, - 0.49640214018411705 - ], - "pressure:branch3_seg0:J6": [ - -14438.418688909636, - -22736.92433923861, - -15095.75933999654, - -6143.513835592655, - 3533.880174698758, - 17130.585337056575, - 37559.73558714805, - 65032.788339922074, - 105837.1669993193, - 152515.2612555544, - 213995.59457859822, - 274099.9025934364, - 340777.04164573835, - 403212.3954162762, - 449341.54126827343, - 507049.15864713426, - 526861.0964422545, - 558367.0627402203, - 556251.510686831, - 536468.6521804538, - 520265.53821653675, - 472345.69666919624, - 429938.2792489927, - 360363.8750321398, - 282464.3184578791, - 196128.09327866844, - 106668.98868639782, - 15893.352451071323, - -65122.37122463416, - -148752.4153457486, - -209910.3698755914, - -270658.52292972914, - -311814.1676546742, - -335236.53114958614, - -370628.1371259174, - -377042.5030378884, - -403012.8864826494, - -403775.8406268715, - -399325.69804522314, - -393004.2308434107, - -368021.55236298527, - -346471.81660909706, - -304151.1825412228, - -264547.6249302772, - -212209.7675372039, - -168658.19481378488, - -127401.83204873747, - -94313.95553317806, - -72838.55235396385, - -53287.9901332005, - -39175.07479235735, - -25099.038309622094, - -10655.158542191342, - 5930.922331939852, - 22963.674928670713, - 43773.06754944806, - 58970.674328173154, - 71642.82902330905, - 74771.32816384015, - 70190.1897695288, - 59747.527400030565, - 41541.251424038215, - 25450.62271575145, - 5236.3463474516075, - -9345.119489203695, - -21690.96220684307, - -29829.713107807325, - -33874.028709818616, - -37302.05365162213, - -41405.34324566871, - -46548.222622595364, - -53234.10858614414, - -60334.87142901854, - -66019.32935921298, - -71028.55095310685, - -71835.47108630207, - -71751.33537920268, - -67903.46085128264, - -64389.01470545605, - -61032.345926233145, - -58741.564854557466, - -60051.4838817731, - -60879.24537981461, - -63531.87617726324, - -64158.99969385405, - -62585.25830639234, - -59891.10351337026, - -54236.330396268844, - -48754.92341007747, - -43149.572611509386, - -39218.77352384292, - -38078.15257949812, - -39398.15233036285, - -42446.31317188566, - -45690.33658270198, - -47741.64289220594, - -47129.16588634718, - -44013.907441294854, - -38107.23981614427, - -14438.418688909636 - ], - "flow:J6:branch3_seg1": [ - 0.49640214018411705, - 2.401638912404165, - 4.495604602628993, - 7.015115722780156, - 9.82251060706085, - 13.638095605552463, - 18.549816302939334, - 25.268405827342253, - 34.580677685802094, - 45.53367914162862, - 61.3219859701997, - 76.90332348550405, - 95.55181644041531, - 112.40442364228552, - 125.4877460503017, - 140.8435567920492, - 148.4305567858605, - 158.41942524391166, - 159.4892079718274, - 155.34838892212753, - 145.8394057188974, - 131.55278124814689, - 117.03108291636099, - 96.89867274666395, - 76.31122468858312, - 49.54232692337023, - 22.059477925250622, - -5.475741391289084, - -31.017283071463748, - -55.855712374549704, - -76.58529204637388, - -97.77564880178508, - -113.17608169296902, - -123.93777100472647, - -133.40591627177815, - -137.8910769540273, - -145.54407058999604, - -147.6259042222201, - -149.59734205913284, - -145.1370091425269, - -138.3983327903761, - -130.3422509481172, - -117.47586510334581, - -108.26955033929111, - -91.7747989169769, - -75.95979468160408, - -58.84044734257878, - -42.12828840836643, - -30.056293531933846, - -18.980718724592293, - -10.059765538970508, - -1.7561754569090402, - 6.217094979187973, - 13.361978426142752, - 19.742460477367896, - 26.20696190120674, - 31.3806233372022, - 36.87575520466081, - 39.38355260744849, - 40.10986872927283, - 38.24070031251499, - 33.60326711904047, - 29.57717251204356, - 23.525338917775787, - 18.08308627025196, - 12.444952287932805, - 7.277841040972461, - 3.4332027650751398, - 0.4207266346309625, - -2.0439620601270523, - -4.315738336040381, - -6.806962953180057, - -9.168704160169895, - -11.274525633393385, - -13.008157050457454, - -13.805292634424879, - -14.647672229034123, - -14.28080342683931, - -13.758827602350603, - -12.745995791095252, - -11.520674985938689, - -11.110538892248808, - -10.671639558691218, - -10.840258293202275, - -10.680712482838121, - -10.19594937395687, - -9.275037854894888, - -7.8878779032298585, - -6.422805539389118, - -4.769052191965245, - -3.3919269943489017, - -2.230948975065047, - -1.6358527552670863, - -1.608724684337243, - -1.9336769277014103, - -2.386474643770696, - -2.4695504458100137, - -2.120219440415352, - -1.099810613418554, - 0.49640214018411705 - ], - "pressure:J6:branch3_seg1": [ - -14438.418688909636, - -22736.92433923861, - -15095.75933999654, - -6143.513835592655, - 3533.880174698758, - 17130.585337056575, - 37559.73558714805, - 65032.788339922074, - 105837.1669993193, - 152515.2612555544, - 213995.59457859822, - 274099.9025934364, - 340777.04164573835, - 403212.3954162762, - 449341.54126827343, - 507049.15864713426, - 526861.0964422545, - 558367.0627402203, - 556251.510686831, - 536468.6521804538, - 520265.53821653675, - 472345.69666919624, - 429938.2792489927, - 360363.8750321398, - 282464.3184578791, - 196128.09327866844, - 106668.98868639782, - 15893.352451071323, - -65122.37122463416, - -148752.4153457486, - -209910.3698755914, - -270658.52292972914, - -311814.1676546742, - -335236.53114958614, - -370628.1371259174, - -377042.5030378884, - -403012.8864826494, - -403775.8406268715, - -399325.69804522314, - -393004.2308434107, - -368021.55236298527, - -346471.81660909706, - -304151.1825412228, - -264547.6249302772, - -212209.7675372039, - -168658.19481378488, - -127401.83204873747, - -94313.95553317806, - -72838.55235396385, - -53287.9901332005, - -39175.07479235735, - -25099.038309622094, - -10655.158542191342, - 5930.922331939852, - 22963.674928670713, - 43773.06754944806, - 58970.674328173154, - 71642.82902330905, - 74771.32816384015, - 70190.1897695288, - 59747.527400030565, - 41541.251424038215, - 25450.62271575145, - 5236.3463474516075, - -9345.119489203695, - -21690.96220684307, - -29829.713107807325, - -33874.028709818616, - -37302.05365162213, - -41405.34324566871, - -46548.222622595364, - -53234.10858614414, - -60334.87142901854, - -66019.32935921298, - -71028.55095310685, - -71835.47108630207, - -71751.33537920268, - -67903.46085128264, - -64389.01470545605, - -61032.345926233145, - -58741.564854557466, - -60051.4838817731, - -60879.24537981461, - -63531.87617726324, - -64158.99969385405, - -62585.25830639234, - -59891.10351337026, - -54236.330396268844, - -48754.92341007747, - -43149.572611509386, - -39218.77352384292, - -38078.15257949812, - -39398.15233036285, - -42446.31317188566, - -45690.33658270198, - -47741.64289220594, - -47129.16588634718, - -44013.907441294854, - -38107.23981614427, - -14438.418688909636 - ], - "flow:branch3_seg1:J7": [ - 0.45780054312587076, - 2.3616881916277133, - 4.457467754512102, - 6.9731598594041335, - 9.77414740743038, - 13.547424339555164, - 18.439273015296152, - 25.092839786547447, - 34.37641714068531, - 45.30886728181968, - 60.99926821722959, - 76.64018499304154, - 95.16052588084496, - 112.1223358812329, - 125.2761094579086, - 140.704714200593, - 148.36552302956397, - 158.32581279470617, - 159.48922974176548, - 155.32761852314826, - 146.07586250812517, - 131.77036225368798, - 117.39141496272725, - 97.2639384064667, - 76.59981937482266, - 49.96439655740858, - 22.479522658682143, - -5.0285887497176, - -30.621192300259658, - -55.52138005024844, - -76.35903115140606, - -97.48172114658868, - -112.99230965601721, - -123.75799126531021, - -133.36985188525216, - -137.83814453357283, - -145.5226144488814, - -147.63946924165367, - -149.45657452236478, - -145.2592362339208, - -138.455816375741, - -130.59217613483526, - -117.7618393211693, - -108.40806450726042, - -92.00603160618884, - -76.09321107829827, - -59.02060044649204, - -42.31849174047121, - -30.173704027943614, - -19.053162827138284, - -10.10924198525692, - -1.7942017197557265, - 6.127749280575353, - 13.270819968099117, - 19.639347935437648, - 26.126463352317703, - 31.34174972960644, - 36.80756235347065, - 39.39902096683462, - 40.11290329175673, - 38.32176009455961, - 33.71780684450937, - 29.669382048236653, - 23.610835502356977, - 18.132082850705523, - 12.478133344009235, - 7.31291782423018, - 3.4594514350298264, - 0.44147337549323795, - -2.0220891927436258, - -4.296397808912358, - -6.7702394928326495, - -9.1382759561076, - -11.240468240507056, - -12.996466285902988, - -13.814328275538111, - -14.652217220864378, - -14.304521896846952, - -13.764173188710766, - -12.75712065185538, - -11.530268208323115, - -11.11004664290816, - -10.664946145209079, - -10.828253528362318, - -10.676596849928307, - -10.199661547035538, - -9.301655660528297, - -7.917064342600968, - -6.457490174835446, - -4.791621041791814, - -3.3982375219831735, - -2.228806361645919, - -1.6245210866678579, - -1.5946562651017584, - -1.9221176627022225, - -2.381205389676868, - -2.4787683791227266, - -2.140263145441446, - -1.131734126535575, - 0.45780054312587076 - ], - "pressure:branch3_seg1:J7": [ - -14944.87312657042, - -23444.204582359966, - -15968.879382689129, - -7064.538997301456, - 2566.3878522351324, - 15492.895194485169, - 35368.060056634706, - 61553.144199953626, - 101707.5453164051, - 148062.8123260218, - 208270.3635224613, - 268147.7435009405, - 331858.4402156825, - 393245.0251103575, - 437799.88656918023, - 499118.0125216574, - 520198.88629206334, - 551673.9770025752, - 549191.2124715009, - 524861.9913563305, - 512676.62950156105, - 466144.2484921673, - 429454.23548080993, - 363421.06114105537, - 284244.78429857676, - 199345.91107232342, - 111771.5764711375, - 24297.5910809456, - -53910.61789490703, - -137060.86152090822, - -199193.72032764083, - -258752.24088895004, - -299480.4229547863, - -320392.259140944, - -359814.3116288428, - -367161.6774227472, - -396518.45642689435, - -399461.26147358346, - -390791.887203522, - -386361.8722341423, - -361435.2587566227, - -345309.261992002, - -307780.53622178535, - -268572.3110106006, - -216217.73470268832, - -170308.85245376837, - -129336.09146909788, - -96952.61484160885, - -77402.15116065057, - -57508.87468056041, - -42253.14104472614, - -26989.625054351338, - -12303.831663857647, - 3807.7555202833864, - 20059.41886696292, - 41220.059538975416, - 57461.59885657391, - 70035.50535104214, - 73749.83173630985, - 68725.46434838451, - 59216.36708389423, - 42062.07764284619, - 27254.718548669072, - 7347.07648242884, - -7918.95314080238, - -20762.3934350909, - -29318.699633310316, - -32960.67308964676, - -36208.225316175514, - -40323.119086278224, - -45694.2022581727, - -52404.010671490934, - -59532.57699780896, - -64966.98093526328, - -70187.45804201029, - -71401.62815052987, - -71544.12901992555, - -67982.26156176974, - -64198.983460090225, - -60817.80776161317, - -58444.92403311712, - -60128.88950839987, - -60982.23562702025, - -63509.36530231891, - -64054.27040545876, - -62214.10212522021, - -59876.62859173332, - -54427.27952724057, - -49332.42476935907, - -43818.772953163585, - -39580.9152939198, - -38187.7131669721, - -39308.47503584739, - -42316.907000136314, - -45584.31504806159, - -47683.89978561171, - -47169.12478427596, - -44164.82353870201, - -38419.95381815884, - -14944.87312657042 - ], - "flow:J7:branch3_seg2": [ - 0.45780054312587076, - 2.3616881916277133, - 4.457467754512102, - 6.9731598594041335, - 9.77414740743038, - 13.547424339555164, - 18.439273015296152, - 25.092839786547447, - 34.37641714068531, - 45.30886728181968, - 60.99926821722959, - 76.64018499304154, - 95.16052588084496, - 112.1223358812329, - 125.2761094579086, - 140.704714200593, - 148.36552302956397, - 158.32581279470617, - 159.48922974176548, - 155.32761852314826, - 146.07586250812517, - 131.77036225368798, - 117.39141496272725, - 97.2639384064667, - 76.59981937482266, - 49.96439655740858, - 22.479522658682143, - -5.0285887497176, - -30.621192300259658, - -55.52138005024844, - -76.35903115140606, - -97.48172114658868, - -112.99230965601721, - -123.75799126531021, - -133.36985188525216, - -137.83814453357283, - -145.5226144488814, - -147.63946924165367, - -149.45657452236478, - -145.2592362339208, - -138.455816375741, - -130.59217613483526, - -117.7618393211693, - -108.40806450726042, - -92.00603160618884, - -76.09321107829827, - -59.02060044649204, - -42.31849174047121, - -30.173704027943614, - -19.053162827138284, - -10.10924198525692, - -1.7942017197557265, - 6.127749280575353, - 13.270819968099117, - 19.639347935437648, - 26.126463352317703, - 31.34174972960644, - 36.80756235347065, - 39.39902096683462, - 40.11290329175673, - 38.32176009455961, - 33.71780684450937, - 29.669382048236653, - 23.610835502356977, - 18.132082850705523, - 12.478133344009235, - 7.31291782423018, - 3.4594514350298264, - 0.44147337549323795, - -2.0220891927436258, - -4.296397808912358, - -6.7702394928326495, - -9.1382759561076, - -11.240468240507056, - -12.996466285902988, - -13.814328275538111, - -14.652217220864378, - -14.304521896846952, - -13.764173188710766, - -12.75712065185538, - -11.530268208323115, - -11.11004664290816, - -10.664946145209079, - -10.828253528362318, - -10.676596849928307, - -10.199661547035538, - -9.301655660528297, - -7.917064342600968, - -6.457490174835446, - -4.791621041791814, - -3.3982375219831735, - -2.228806361645919, - -1.6245210866678579, - -1.5946562651017584, - -1.9221176627022225, - -2.381205389676868, - -2.4787683791227266, - -2.140263145441446, - -1.131734126535575, - 0.45780054312587076 - ], - "pressure:J7:branch3_seg2": [ - -14944.87312657042, - -23444.204582359966, - -15968.879382689129, - -7064.538997301456, - 2566.3878522351324, - 15492.895194485169, - 35368.060056634706, - 61553.144199953626, - 101707.5453164051, - 148062.8123260218, - 208270.3635224613, - 268147.7435009405, - 331858.4402156825, - 393245.0251103575, - 437799.88656918023, - 499118.0125216574, - 520198.88629206334, - 551673.9770025752, - 549191.2124715009, - 524861.9913563305, - 512676.62950156105, - 466144.2484921673, - 429454.23548080993, - 363421.06114105537, - 284244.78429857676, - 199345.91107232342, - 111771.5764711375, - 24297.5910809456, - -53910.61789490703, - -137060.86152090822, - -199193.72032764083, - -258752.24088895004, - -299480.4229547863, - -320392.259140944, - -359814.3116288428, - -367161.6774227472, - -396518.45642689435, - -399461.26147358346, - -390791.887203522, - -386361.8722341423, - -361435.2587566227, - -345309.261992002, - -307780.53622178535, - -268572.3110106006, - -216217.73470268832, - -170308.85245376837, - -129336.09146909788, - -96952.61484160885, - -77402.15116065057, - -57508.87468056041, - -42253.14104472614, - -26989.625054351338, - -12303.831663857647, - 3807.7555202833864, - 20059.41886696292, - 41220.059538975416, - 57461.59885657391, - 70035.50535104214, - 73749.83173630985, - 68725.46434838451, - 59216.36708389423, - 42062.07764284619, - 27254.718548669072, - 7347.07648242884, - -7918.95314080238, - -20762.3934350909, - -29318.699633310316, - -32960.67308964676, - -36208.225316175514, - -40323.119086278224, - -45694.2022581727, - -52404.010671490934, - -59532.57699780896, - -64966.98093526328, - -70187.45804201029, - -71401.62815052987, - -71544.12901992555, - -67982.26156176974, - -64198.983460090225, - -60817.80776161317, - -58444.92403311712, - -60128.88950839987, - -60982.23562702025, - -63509.36530231891, - -64054.27040545876, - -62214.10212522021, - -59876.62859173332, - -54427.27952724057, - -49332.42476935907, - -43818.772953163585, - -39580.9152939198, - -38187.7131669721, - -39308.47503584739, - -42316.907000136314, - -45584.31504806159, - -47683.89978561171, - -47169.12478427596, - -44164.82353870201, - -38419.95381815884, - -14944.87312657042 - ], - "flow:branch4_seg0:J8": [ - -0.5100155511816813, - 0.6086726284262394, - 1.983416846367041, - 3.6416227154896146, - 5.383234929187892, - 7.490680455753436, - 10.404185001646114, - 13.980373871393493, - 19.628707310273054, - 26.20419810535308, - 35.10667565866784, - 45.048507266807135, - 56.20350122099906, - 68.44453145122874, - 79.0549319357664, - 90.93257071597388, - 96.7485131306227, - 104.06490635097353, - 104.87526985755196, - 104.32898425554157, - 102.57406252668747, - 93.83008153303736, - 86.95003765067712, - 73.02136864838536, - 59.62085241401165, - 43.95320759697117, - 27.127652177886755, - 9.841145903741502, - -7.6467513129885, - -25.084533358963448, - -40.15665875560978, - -54.29995574379945, - -65.96669865017932, - -75.10343305175162, - -84.8526428660604, - -88.58562253309037, - -95.30912965804164, - -96.1619335605466, - -97.80691893732521, - -98.91804243979402, - -95.66764405537131, - -94.32914259302977, - -86.73816543266337, - -79.69163990701097, - -69.3781740333663, - -59.27106532589257, - -48.48797765242183, - -37.83957912453709, - -28.138003242884324, - -18.739596299653694, - -11.516428183814053, - -4.900778765935517, - 0.24042488153487993, - 5.372193097142961, - 9.893338716882006, - 14.883105894155882, - 18.895934708612774, - 22.63485952843164, - 25.35685414538113, - 26.588230846955156, - 26.999927155059215, - 25.138555141799237, - 22.67655769209921, - 18.466263277999143, - 14.65236097429289, - 10.445886330880997, - 7.000601328059915, - 4.0377228139896815, - 1.5085515607857494, - -0.47885640864022, - -2.2412020882437687, - -3.7960891292841232, - -5.408533332955, - -6.81238163459457, - -8.358324382467972, - -9.276213124157826, - -10.010855084984318, - -10.044216183454134, - -9.810795834695892, - -9.31039167329924, - -8.650668777991863, - -8.236617555210216, - -7.6591164282703925, - -7.596360157492193, - -7.371071419121213, - -7.237022560868301, - -7.012493418142551, - -6.234172396239222, - -5.455035318003907, - -4.182585537649188, - -3.078523552516234, - -2.1116254655952376, - -1.4834751131447113, - -1.2468092664610064, - -1.3015218232814445, - -1.5386002784740624, - -1.7275516352804645, - -1.7136739870556066, - -1.3132170235576102, - -0.5100155511816813 - ], - "pressure:branch4_seg0:J8": [ - -18964.571819371675, - -28509.717325208705, - -21218.62211232837, - -13715.924231827497, - -4706.405004979533, - 5461.100659956757, - 22737.979810348537, - 43754.386754336796, - 77018.75506237001, - 117510.88177257127, - 164552.29704533433, - 226867.95838282324, - 279096.1680953837, - 351239.89132177137, - 399862.4762675608, - 452639.02182238543, - 494500.3810627772, - 514007.9453771023, - 542216.4727332614, - 527249.0186765355, - 529368.4603459507, - 490370.65996156074, - 455793.52724203956, - 400650.17251477554, - 328465.6222238686, - 261961.1630852338, - 173361.34371504813, - 91843.42174723007, - 5965.771106525565, - -72463.78281642353, - -145368.53899925115, - -199390.9661548522, - -259406.49227161185, - -288696.3249973812, - -328819.41019532684, - -347852.3423362085, - -365658.4802403895, - -384793.27948001237, - -377629.51774966053, - -393744.91075696814, - -368137.8845842119, - -361015.33591914264, - -326440.8319230052, - -284726.5319261486, - -254840.90613607908, - -201593.24684532473, - -172650.51984489808, - -130865.24843036417, - -102996.78580964006, - -80842.36854913115, - -61052.8507130195, - -46236.4422526709, - -30788.672058038028, - -12624.827586867626, - 4673.642806498471, - 24811.550029170146, - 43180.172838161685, - 54773.43354156935, - 68105.91340152375, - 65155.547375726215, - 65068.626776723744, - 51070.35234280578, - 35671.37587326339, - 21328.765454040436, - 3395.5927105235714, - -6933.955903353815, - -18144.718292490023, - -24758.082683525605, - -30066.396511176095, - -34969.175133395176, - -40374.33396908989, - -46025.69925007898, - -53655.839234056, - -59415.5205261287, - -65710.44463860805, - -68702.13290589496, - -68752.21015873743, - -68900.17209653856, - -64591.979102423495, - -63686.45734045835, - -60544.64876499196, - -60218.231405190556, - -61170.5318351703, - -61948.74878762331, - -64059.03236996399, - -62976.8230627497, - -61910.768479369835, - -57416.847611598554, - -52683.90802049988, - -47358.95485906272, - -42860.15246038487, - -40786.13914709857, - -40288.586193962576, - -41954.39575548678, - -44244.75545160695, - -46237.8814278534, - -46878.014643669245, - -45003.969472952325, - -41289.06460244999, - -18964.571819371675 - ], - "flow:J8:branch4_seg1": [ - -0.5100155511816813, - 0.6086726284262394, - 1.983416846367041, - 3.6416227154896146, - 5.383234929187892, - 7.490680455753436, - 10.404185001646114, - 13.980373871393493, - 19.628707310273054, - 26.20419810535308, - 35.10667565866784, - 45.048507266807135, - 56.20350122099906, - 68.44453145122874, - 79.0549319357664, - 90.93257071597388, - 96.7485131306227, - 104.06490635097353, - 104.87526985755196, - 104.32898425554157, - 102.57406252668747, - 93.83008153303736, - 86.95003765067712, - 73.02136864838536, - 59.62085241401165, - 43.95320759697117, - 27.127652177886755, - 9.841145903741502, - -7.6467513129885, - -25.084533358963448, - -40.15665875560978, - -54.29995574379945, - -65.96669865017932, - -75.10343305175162, - -84.8526428660604, - -88.58562253309037, - -95.30912965804164, - -96.1619335605466, - -97.80691893732521, - -98.91804243979402, - -95.66764405537131, - -94.32914259302977, - -86.73816543266337, - -79.69163990701097, - -69.3781740333663, - -59.27106532589257, - -48.48797765242183, - -37.83957912453709, - -28.138003242884324, - -18.739596299653694, - -11.516428183814053, - -4.900778765935517, - 0.24042488153487993, - 5.372193097142961, - 9.893338716882006, - 14.883105894155882, - 18.895934708612774, - 22.63485952843164, - 25.35685414538113, - 26.588230846955156, - 26.999927155059215, - 25.138555141799237, - 22.67655769209921, - 18.466263277999143, - 14.65236097429289, - 10.445886330880997, - 7.000601328059915, - 4.0377228139896815, - 1.5085515607857494, - -0.47885640864022, - -2.2412020882437687, - -3.7960891292841232, - -5.408533332955, - -6.81238163459457, - -8.358324382467972, - -9.276213124157826, - -10.010855084984318, - -10.044216183454134, - -9.810795834695892, - -9.31039167329924, - -8.650668777991863, - -8.236617555210216, - -7.6591164282703925, - -7.596360157492193, - -7.371071419121213, - -7.237022560868301, - -7.012493418142551, - -6.234172396239222, - -5.455035318003907, - -4.182585537649188, - -3.078523552516234, - -2.1116254655952376, - -1.4834751131447113, - -1.2468092664610064, - -1.3015218232814445, - -1.5386002784740624, - -1.7275516352804645, - -1.7136739870556066, - -1.3132170235576102, - -0.5100155511816813 - ], - "pressure:J8:branch4_seg1": [ - -18964.571819371675, - -28509.717325208705, - -21218.62211232837, - -13715.924231827497, - -4706.405004979533, - 5461.100659956757, - 22737.979810348537, - 43754.386754336796, - 77018.75506237001, - 117510.88177257127, - 164552.29704533433, - 226867.95838282324, - 279096.1680953837, - 351239.89132177137, - 399862.4762675608, - 452639.02182238543, - 494500.3810627772, - 514007.9453771023, - 542216.4727332614, - 527249.0186765355, - 529368.4603459507, - 490370.65996156074, - 455793.52724203956, - 400650.17251477554, - 328465.6222238686, - 261961.1630852338, - 173361.34371504813, - 91843.42174723007, - 5965.771106525565, - -72463.78281642353, - -145368.53899925115, - -199390.9661548522, - -259406.49227161185, - -288696.3249973812, - -328819.41019532684, - -347852.3423362085, - -365658.4802403895, - -384793.27948001237, - -377629.51774966053, - -393744.91075696814, - -368137.8845842119, - -361015.33591914264, - -326440.8319230052, - -284726.5319261486, - -254840.90613607908, - -201593.24684532473, - -172650.51984489808, - -130865.24843036417, - -102996.78580964006, - -80842.36854913115, - -61052.8507130195, - -46236.4422526709, - -30788.672058038028, - -12624.827586867626, - 4673.642806498471, - 24811.550029170146, - 43180.172838161685, - 54773.43354156935, - 68105.91340152375, - 65155.547375726215, - 65068.626776723744, - 51070.35234280578, - 35671.37587326339, - 21328.765454040436, - 3395.5927105235714, - -6933.955903353815, - -18144.718292490023, - -24758.082683525605, - -30066.396511176095, - -34969.175133395176, - -40374.33396908989, - -46025.69925007898, - -53655.839234056, - -59415.5205261287, - -65710.44463860805, - -68702.13290589496, - -68752.21015873743, - -68900.17209653856, - -64591.979102423495, - -63686.45734045835, - -60544.64876499196, - -60218.231405190556, - -61170.5318351703, - -61948.74878762331, - -64059.03236996399, - -62976.8230627497, - -61910.768479369835, - -57416.847611598554, - -52683.90802049988, - -47358.95485906272, - -42860.15246038487, - -40786.13914709857, - -40288.586193962576, - -41954.39575548678, - -44244.75545160695, - -46237.8814278534, - -46878.014643669245, - -45003.969472952325, - -41289.06460244999, - -18964.571819371675 - ], - "flow:branch4_seg1:J9": [ - -0.5112416817206628, - 0.6072469884262791, - 1.9820602043696702, - 3.6398778144988526, - 5.381442060780728, - 7.488190727364257, - 10.400266622773271, - 13.975677549502485, - 19.620743402550552, - 26.195979888023675, - 35.09512559774721, - 45.037681316344184, - 56.19181621350882, - 68.43257636520676, - 79.04741862846222, - 90.91911221753243, - 96.74661741383397, - 104.05644990743961, - 104.8774068033019, - 104.33297046005423, - 102.57466108193086, - 93.84098308787652, - 86.95372402254056, - 73.03553685271457, - 59.63365469334383, - 43.968698158286784, - 27.14369739530084, - 9.856581059278097, - -7.632514582410429, - -25.069111739630458, - -40.14571451686334, - -54.288161559564756, - -65.95896923782134, - -75.09953080909972, - -84.84291715867903, - -88.58570909355139, - -95.30014966968577, - -96.1628688224535, - -97.8069034731365, - -98.91726276925483, - -95.67353036313585, - -94.32872385144177, - -86.74686457718718, - -79.69663999758278, - -69.38828290264354, - -59.278983082907224, - -48.49525475349772, - -37.84604105944388, - -28.141554347466784, - -18.744413813453246, - -11.519383955529065, - -4.904472334417564, - 0.23752304991732992, - 5.368561206245087, - 9.890249097567299, - 14.878531873851776, - 18.893146362372473, - 22.632197755362988, - 25.355958421900688, - 26.589212312610154, - 27.000859369368438, - 25.14196443678621, - 22.678507602046693, - 18.470305514881854, - 14.654755496851193, - 10.448514990664329, - 7.002222621256999, - 4.038561673139384, - 1.5094867851516107, - -0.47793594558347907, - -2.240020363161421, - -3.794789885402137, - -5.407095837142016, - -6.811455222134586, - -8.357115260644932, - -9.276109585849037, - -10.010568776648881, - -10.04488091115682, - -9.81134582260859, - -9.310864189212507, - -8.651123364164759, - -8.236125609708678, - -7.659192809374025, - -7.5957638182039755, - -7.371169944827845, - -7.237361319559775, - -7.012812898293029, - -6.235322691074947, - -5.4557293698137315, - -4.183747119204303, - -3.0791950118084364, - -2.1119195781398767, - -1.4833378703533573, - -1.2463257787120028, - -1.3010368152359781, - -1.5382865587470997, - -1.727702593430186, - -1.7142198883152104, - -1.3142551187290177, - -0.5112416817206628 - ], - "pressure:branch4_seg1:J9": [ - -19093.512039982583, - -28770.97523107061, - -21589.49196340942, - -14274.176265948592, - -5417.524171540459, - 4462.387239665526, - 21458.336798949767, - 41911.24643944587, - 74461.44944792365, - 113972.93016828483, - 159404.7855153985, - 220644.9676463853, - 270432.0732071694, - 341134.2020809949, - 387101.2760868341, - 436358.6722369635, - 476112.22653872473, - 491592.2644569215, - 518868.9519376691, - 501995.5034162851, - 503393.1722606409, - 464525.32271328394, - 430724.40574794495, - 378692.55360545806, - 310420.3237593415, - 249720.27071684913, - 166489.8978103858, - 91460.11056092422, - 11369.54914732693, - -60619.75626536458, - -128907.48126288856, - -178176.50935232808, - -236189.98841563554, - -263821.2773453626, - -302700.72651396034, - -322425.92772052746, - -339921.9858676696, - -361398.8499605922, - -355893.0699263773, - -375282.98574946565, - -351647.513003495, - -347601.45451952086, - -315407.4197385116, - -276075.55551996524, - -249787.93603628164, - -197862.2414327105, - -171360.6260805079, - -130041.48535474423, - -102704.45754890524, - -81033.52241762464, - -61485.03317989458, - -47032.87861875915, - -31798.2906733757, - -13689.133863235962, - 3413.780763703222, - 23278.68712171918, - 41398.374719423286, - 52581.612172170826, - 66162.58395583363, - 62937.986838126904, - 63288.68950465199, - 49289.219603262514, - 34021.4147744596, - 20248.776996618588, - 2515.815300807894, - -7234.258562636337, - -18254.162846759304, - -24707.03975963689, - -29892.590847591906, - -34642.24710812399, - -39886.334410784584, - -45325.2334079162, - -52849.34687134971, - -58463.906555576126, - -64701.09883404376, - -67657.14758993275, - -67646.74262573253, - -68009.9306339623, - -63694.45034671592, - -63039.08444718501, - -59906.79468456654, - -59564.60038637544, - -60565.71524830543, - -61281.083741065064, - -63496.912790336304, - -62452.22866042872, - -61491.40166722555, - -57065.246971127846, - -52441.981713065376, - -47205.26728588748, - -42806.04980815222, - -40792.39664704104, - -40264.532448339334, - -41887.60823412761, - -44111.65070416675, - -46069.224834906425, - -46737.869968526065, - -44902.81816694643, - -41311.952363715034, - -19093.512039982583 - ], - "flow:J9:branch4_seg2": [ - -0.5112416817206628, - 0.6072469884262791, - 1.9820602043696702, - 3.6398778144988526, - 5.381442060780728, - 7.488190727364257, - 10.400266622773271, - 13.975677549502485, - 19.620743402550552, - 26.195979888023675, - 35.09512559774721, - 45.037681316344184, - 56.19181621350882, - 68.43257636520676, - 79.04741862846222, - 90.91911221753243, - 96.74661741383397, - 104.05644990743961, - 104.8774068033019, - 104.33297046005423, - 102.57466108193086, - 93.84098308787652, - 86.95372402254056, - 73.03553685271457, - 59.63365469334383, - 43.968698158286784, - 27.14369739530084, - 9.856581059278097, - -7.632514582410429, - -25.069111739630458, - -40.14571451686334, - -54.288161559564756, - -65.95896923782134, - -75.09953080909972, - -84.84291715867903, - -88.58570909355139, - -95.30014966968577, - -96.1628688224535, - -97.8069034731365, - -98.91726276925483, - -95.67353036313585, - -94.32872385144177, - -86.74686457718718, - -79.69663999758278, - -69.38828290264354, - -59.278983082907224, - -48.49525475349772, - -37.84604105944388, - -28.141554347466784, - -18.744413813453246, - -11.519383955529065, - -4.904472334417564, - 0.23752304991732992, - 5.368561206245087, - 9.890249097567299, - 14.878531873851776, - 18.893146362372473, - 22.632197755362988, - 25.355958421900688, - 26.589212312610154, - 27.000859369368438, - 25.14196443678621, - 22.678507602046693, - 18.470305514881854, - 14.654755496851193, - 10.448514990664329, - 7.002222621256999, - 4.038561673139384, - 1.5094867851516107, - -0.47793594558347907, - -2.240020363161421, - -3.794789885402137, - -5.407095837142016, - -6.811455222134586, - -8.357115260644932, - -9.276109585849037, - -10.010568776648881, - -10.04488091115682, - -9.81134582260859, - -9.310864189212507, - -8.651123364164759, - -8.236125609708678, - -7.659192809374025, - -7.5957638182039755, - -7.371169944827845, - -7.237361319559775, - -7.012812898293029, - -6.235322691074947, - -5.4557293698137315, - -4.183747119204303, - -3.0791950118084364, - -2.1119195781398767, - -1.4833378703533573, - -1.2463257787120028, - -1.3010368152359781, - -1.5382865587470997, - -1.727702593430186, - -1.7142198883152104, - -1.3142551187290177, - -0.5112416817206628 - ], - "pressure:J9:branch4_seg2": [ - -19093.512039982583, - -28770.97523107061, - -21589.49196340942, - -14274.176265948592, - -5417.524171540459, - 4462.387239665526, - 21458.336798949767, - 41911.24643944587, - 74461.44944792365, - 113972.93016828483, - 159404.7855153985, - 220644.9676463853, - 270432.0732071694, - 341134.2020809949, - 387101.2760868341, - 436358.6722369635, - 476112.22653872473, - 491592.2644569215, - 518868.9519376691, - 501995.5034162851, - 503393.1722606409, - 464525.32271328394, - 430724.40574794495, - 378692.55360545806, - 310420.3237593415, - 249720.27071684913, - 166489.8978103858, - 91460.11056092422, - 11369.54914732693, - -60619.75626536458, - -128907.48126288856, - -178176.50935232808, - -236189.98841563554, - -263821.2773453626, - -302700.72651396034, - -322425.92772052746, - -339921.9858676696, - -361398.8499605922, - -355893.0699263773, - -375282.98574946565, - -351647.513003495, - -347601.45451952086, - -315407.4197385116, - -276075.55551996524, - -249787.93603628164, - -197862.2414327105, - -171360.6260805079, - -130041.48535474423, - -102704.45754890524, - -81033.52241762464, - -61485.03317989458, - -47032.87861875915, - -31798.2906733757, - -13689.133863235962, - 3413.780763703222, - 23278.68712171918, - 41398.374719423286, - 52581.612172170826, - 66162.58395583363, - 62937.986838126904, - 63288.68950465199, - 49289.219603262514, - 34021.4147744596, - 20248.776996618588, - 2515.815300807894, - -7234.258562636337, - -18254.162846759304, - -24707.03975963689, - -29892.590847591906, - -34642.24710812399, - -39886.334410784584, - -45325.2334079162, - -52849.34687134971, - -58463.906555576126, - -64701.09883404376, - -67657.14758993275, - -67646.74262573253, - -68009.9306339623, - -63694.45034671592, - -63039.08444718501, - -59906.79468456654, - -59564.60038637544, - -60565.71524830543, - -61281.083741065064, - -63496.912790336304, - -62452.22866042872, - -61491.40166722555, - -57065.246971127846, - -52441.981713065376, - -47205.26728588748, - -42806.04980815222, - -40792.39664704104, - -40264.532448339334, - -41887.60823412761, - -44111.65070416675, - -46069.224834906425, - -46737.869968526065, - -44902.81816694643, - -41311.952363715034, - -19093.512039982583 - ], - "flow:branch5_seg0:J10": [ - 2.652746566143373, - 7.647368404528673, - 12.805664399100829, - 18.289193678502055, - 24.091188318663406, - 31.44226894907826, - 41.92569172854144, - 56.55360337747089, - 77.75489778948116, - 104.12718429076293, - 137.43198882454635, - 173.7754117803313, - 212.67157184333522, - 250.74397622077396, - 281.7659458372769, - 309.56578470016757, - 324.1494646073071, - 334.00455269168356, - 330.3370421323829, - 315.9864286817215, - 294.6195876426668, - 260.53691705015103, - 222.49886965890542, - 173.8555781752708, - 119.79373982899835, - 61.42159056342645, - 0.03381670478376573, - -61.43785152920217, - -118.98594015981209, - -173.3391313504125, - -217.52593368847016, - -255.50478536390855, - -283.6147084757133, - -301.18458918596144, - -315.08650789574824, - -318.54057844665937, - -322.50868754984504, - -318.3522351742821, - -310.3542108330343, - -298.5594478645345, - -278.0912639472036, - -254.53130290515094, - -221.71247696300475, - -185.63514616287955, - -146.30910254288307, - -107.6413731430509, - -71.58239721000955, - -40.45579199388935, - -15.363789498024357, - 3.434612472859042, - 17.140599802855373, - 28.02828769769767, - 37.311727296999074, - 47.29422006784505, - 57.438677907034155, - 68.64607438562379, - 78.2323754941687, - 85.6154387639228, - 88.66775564426956, - 86.39380506899971, - 79.25280476125636, - 66.9878212399491, - 52.51992202608148, - 36.913363899701174, - 22.90534417741152, - 11.039344767204554, - 2.3256224635592995, - -3.688438261308664, - -7.665043896199559, - -10.780016947598591, - -13.938254793402773, - -17.55984161073933, - -21.710893541245177, - -25.578515136040863, - -28.872201481855775, - -30.280240574626973, - -30.148887488300012, - -28.13391234131837, - -25.22992173137654, - -22.084248752538066, - -19.377062092438372, - -17.964426872602168, - -17.459106538173543, - -17.98144558254106, - -18.2909622981251, - -17.81818494668212, - -16.20946187757434, - -13.023512467606297, - -9.128919282956538, - -4.89634992348685, - -1.3941131492877146, - 0.6357683722465077, - 0.989865761463881, - -0.20304444345038852, - -2.174211572999753, - -4.04486294661164, - -4.835544745241184, - -4.028465921335637, - -1.4025238788037333, - 2.652746566143373 - ], - "pressure:branch5_seg0:J10": [ - -13516.555847488606, - -21531.293139332894, - -13642.851974433144, - -4635.5262835112435, - 5099.3467394676945, - 19920.433379373615, - 40966.91437299068, - 70672.49678388632, - 112347.82538786251, - 159562.37284462468, - 222553.61212625334, - 282430.4991373823, - 353005.1975103235, - 415314.8519284176, - 462608.59842477465, - 513077.8250739774, - 530530.805891075, - 559743.4097159582, - 554966.7661876266, - 543080.4755175562, - 517426.3167269485, - 468185.63728482457, - 418440.14972308266, - 344217.8645280171, - 270168.0120042432, - 182385.9119460617, - 92569.26763454324, - -2.992197981258567, - -82342.45727516862, - -163462.46332745385, - -221758.95084148445, - -282205.80172499624, - -321686.2369233642, - -349042.4874849752, - -376722.32436106034, - -382238.07471121766, - -403762.1086091716, - -400472.3130248551, - -404634.9413664686, - -392907.64137555327, - -370014.4884225084, - -341374.5913025725, - -293102.2035548748, - -254064.09718952174, - -201978.77977359833, - -162027.75670843973, - -120567.05223697319, - -87199.88998273714, - -63932.8463243127, - -45616.57131366713, - -33234.60748976249, - -20893.492787015344, - -6859.71153420013, - 9921.603078143715, - 27678.12131276847, - 47692.32478354376, - 61195.33573582557, - 73892.25003297464, - 75368.08150864416, - 71434.90466015025, - 59098.554359974805, - 39265.433132911116, - 21426.566083252783, - 1082.7362491236784, - -12564.118620988645, - -24236.39235247979, - -31553.17666825939, - -35977.13580022342, - -39349.891110011646, - -43256.54721402522, - -48030.22782802206, - -54704.25451967977, - -61523.16645892793, - -67497.21073286464, - -72002.50362722593, - -72172.5813083638, - -71694.68255517131, - -67406.70303631831, - -64283.196528643566, - -60875.14622738915, - -58747.09452094477, - -59563.87545932632, - -60487.76004803414, - -63290.53818344973, - -63872.50436637653, - -62794.09853590019, - -59427.650739484896, - -53561.241578048255, - -47624.40086827798, - -41901.70821630392, - -38534.79657378436, - -37743.61376741434, - -39400.99555294628, - -42567.78781466604, - -45797.58458514697, - -47770.412189300645, - -46971.666038877156, - -43617.31813616023, - -37469.93041804814, - -13516.555847488606 - ], - "flow:J10:branch5_seg1": [ - 2.652746566143373, - 7.647368404528673, - 12.805664399100829, - 18.289193678502055, - 24.091188318663406, - 31.44226894907826, - 41.92569172854144, - 56.55360337747089, - 77.75489778948116, - 104.12718429076293, - 137.43198882454635, - 173.7754117803313, - 212.67157184333522, - 250.74397622077396, - 281.7659458372769, - 309.56578470016757, - 324.1494646073071, - 334.00455269168356, - 330.3370421323829, - 315.9864286817215, - 294.6195876426668, - 260.53691705015103, - 222.49886965890542, - 173.8555781752708, - 119.79373982899835, - 61.42159056342645, - 0.03381670478376573, - -61.43785152920217, - -118.98594015981209, - -173.3391313504125, - -217.52593368847016, - -255.50478536390855, - -283.6147084757133, - -301.18458918596144, - -315.08650789574824, - -318.54057844665937, - -322.50868754984504, - -318.3522351742821, - -310.3542108330343, - -298.5594478645345, - -278.0912639472036, - -254.53130290515094, - -221.71247696300475, - -185.63514616287955, - -146.30910254288307, - -107.6413731430509, - -71.58239721000955, - -40.45579199388935, - -15.363789498024357, - 3.434612472859042, - 17.140599802855373, - 28.02828769769767, - 37.311727296999074, - 47.29422006784505, - 57.438677907034155, - 68.64607438562379, - 78.2323754941687, - 85.6154387639228, - 88.66775564426956, - 86.39380506899971, - 79.25280476125636, - 66.9878212399491, - 52.51992202608148, - 36.913363899701174, - 22.90534417741152, - 11.039344767204554, - 2.3256224635592995, - -3.688438261308664, - -7.665043896199559, - -10.780016947598591, - -13.938254793402773, - -17.55984161073933, - -21.710893541245177, - -25.578515136040863, - -28.872201481855775, - -30.280240574626973, - -30.148887488300012, - -28.13391234131837, - -25.22992173137654, - -22.084248752538066, - -19.377062092438372, - -17.964426872602168, - -17.459106538173543, - -17.98144558254106, - -18.2909622981251, - -17.81818494668212, - -16.20946187757434, - -13.023512467606297, - -9.128919282956538, - -4.89634992348685, - -1.3941131492877146, - 0.6357683722465077, - 0.989865761463881, - -0.20304444345038852, - -2.174211572999753, - -4.04486294661164, - -4.835544745241184, - -4.028465921335637, - -1.4025238788037333, - 2.652746566143373 - ], - "pressure:J10:branch5_seg1": [ - -13516.555847488606, - -21531.293139332894, - -13642.851974433144, - -4635.5262835112435, - 5099.3467394676945, - 19920.433379373615, - 40966.91437299068, - 70672.49678388632, - 112347.82538786251, - 159562.37284462468, - 222553.61212625334, - 282430.4991373823, - 353005.1975103235, - 415314.8519284176, - 462608.59842477465, - 513077.8250739774, - 530530.805891075, - 559743.4097159582, - 554966.7661876266, - 543080.4755175562, - 517426.3167269485, - 468185.63728482457, - 418440.14972308266, - 344217.8645280171, - 270168.0120042432, - 182385.9119460617, - 92569.26763454324, - -2.992197981258567, - -82342.45727516862, - -163462.46332745385, - -221758.95084148445, - -282205.80172499624, - -321686.2369233642, - -349042.4874849752, - -376722.32436106034, - -382238.07471121766, - -403762.1086091716, - -400472.3130248551, - -404634.9413664686, - -392907.64137555327, - -370014.4884225084, - -341374.5913025725, - -293102.2035548748, - -254064.09718952174, - -201978.77977359833, - -162027.75670843973, - -120567.05223697319, - -87199.88998273714, - -63932.8463243127, - -45616.57131366713, - -33234.60748976249, - -20893.492787015344, - -6859.71153420013, - 9921.603078143715, - 27678.12131276847, - 47692.32478354376, - 61195.33573582557, - 73892.25003297464, - 75368.08150864416, - 71434.90466015025, - 59098.554359974805, - 39265.433132911116, - 21426.566083252783, - 1082.7362491236784, - -12564.118620988645, - -24236.39235247979, - -31553.17666825939, - -35977.13580022342, - -39349.891110011646, - -43256.54721402522, - -48030.22782802206, - -54704.25451967977, - -61523.16645892793, - -67497.21073286464, - -72002.50362722593, - -72172.5813083638, - -71694.68255517131, - -67406.70303631831, - -64283.196528643566, - -60875.14622738915, - -58747.09452094477, - -59563.87545932632, - -60487.76004803414, - -63290.53818344973, - -63872.50436637653, - -62794.09853590019, - -59427.650739484896, - -53561.241578048255, - -47624.40086827798, - -41901.70821630392, - -38534.79657378436, - -37743.61376741434, - -39400.99555294628, - -42567.78781466604, - -45797.58458514697, - -47770.412189300645, - -46971.666038877156, - -43617.31813616023, - -37469.93041804814, - -13516.555847488606 - ], - "flow:branch5_seg1:J11": [ - 2.5907092677557433, - 7.584072139103499, - 12.738206491777419, - 18.215770300038617, - 24.010996961883077, - 31.300752103366904, - 41.75262656936057, - 56.25161035057506, - 77.3922749964993, - 103.69751747208346, - 136.932754152504, - 173.36822336375715, - 212.1359694201478, - 250.32083716370002, - 281.26063409391634, - 309.2617295000177, - 323.9513919539752, - 333.9836421810246, - 330.5942981328902, - 316.0395811941035, - 294.93424639329646, - 260.7174272873144, - 223.01238967484198, - 174.47937295932593, - 120.44613177195485, - 62.15508015542696, - 0.6969812503081793, - -60.766295936476446, - -118.34088940066565, - -172.7851275459261, - -217.12082323042299, - -255.12815481266608, - -283.44704555162303, - -300.83286423211405, - -314.9258895097456, - -318.2968708741677, - -322.4746184065067, - -318.50976303246614, - -310.3441263723654, - -298.82372578870576, - -278.0945395805775, - -254.8074070240828, - -222.0397524382631, - -186.01466144260078, - -146.79604762528973, - -107.9636849434308, - -71.8605760034634, - -40.630497986311795, - -15.498086085459684, - 3.318374883710061, - 17.019813444010953, - 27.931909468328158, - 37.17541480056262, - 47.17221000268688, - 57.272408832606324, - 68.5086803021542, - 78.14887484095746, - 85.5500177935509, - 88.73429182878897, - 86.43211587177872, - 79.37489191009253, - 67.11165581633668, - 52.66875707106566, - 37.06387275367776, - 23.021180208837446, - 11.115517944204862, - 2.3644819775117263, - -3.6690237777304797, - -7.643265411688336, - -10.743343095713726, - -13.897554918065403, - -17.498914543711766, - -21.66816605709675, - -25.526403355808068, - -28.85324065948737, - -30.28230067655778, - -30.168279236466578, - -28.1815705215319, - -25.2558888044269, - -22.105590029035366, - -19.370217003946276, - -17.951795309046013, - -17.441890258497793, - -17.972432964264524, - -18.303338142806687, - -17.830752106451115, - -16.24744057374449, - -13.057932547915351, - -9.178091325600933, - -4.9351901940376415, - -1.414804386243105, - 0.6370144515603923, - 1.0125223948974784, - -0.1735805400911713, - -2.150956472276663, - -4.038670890394453, - -4.854143008390119, - -4.068017415188924, - -1.4581889474950545, - 2.5907092677557433 - ], - "pressure:branch5_seg1:J11": [ - -14970.988038784937, - -23225.109147408133, - -15426.51726282138, - -6579.626205020758, - 2953.9757774145496, - 16805.7828240643, - 36757.15065688444, - 64342.69471858292, - 103882.29798139758, - 149105.89185700455, - 209197.82681913985, - 268635.5198208126, - 336327.5798238111, - 399072.6708420021, - 446790.010950102, - 497974.6804699453, - 518255.62502996135, - 547923.3254181937, - 546945.565549146, - 536184.404082107, - 514102.34470628516, - 467624.15693295933, - 422490.305134625, - 352233.7303608264, - 281732.99824235786, - 198208.14148911712, - 111277.15861906475, - 21920.49720393641, - -59438.87647480372, - -139745.48781397604, - -199975.41417300593, - -260643.2396972889, - -303340.9818543499, - -332468.0220242907, - -362851.2944515332, - -370935.8574567681, - -394518.926496933, - -394788.19326514006, - -399622.19833450334, - -392231.63909642794, - -370577.27970938914, - -346526.39584418264, - -301089.0084645588, - -263309.7945198682, - -213555.25073906325, - -171989.09720808585, - -130492.34277570988, - -95601.08291317636, - -70393.71840410016, - -50842.917693725176, - -37040.64953712471, - -24035.84932426764, - -10227.388526690209, - 6543.363016934162, - 23693.48888560274, - 43708.15370412095, - 57927.72361396659, - 70977.83464575453, - 74556.50381474347, - 71438.81889336742, - 61118.61178959685, - 42585.587461584524, - 25317.11103446576, - 5423.987346623261, - -8943.604977717932, - -21249.08460885211, - -29299.1969844883, - -34502.770447095594, - -38158.54955329063, - -42142.372355561914, - -46847.7758393513, - -53149.650678989055, - -59994.687416723405, - -65905.08996796388, - -70826.49660386826, - -71605.31306657226, - -71547.46132352822, - -67970.22063816198, - -64826.40542268061, - -61510.60201527687, - -59156.53373494905, - -59576.2383780479, - -60305.03999175644, - -62871.2193584087, - -63661.19232618138, - -62850.390128680454, - -59960.90812574098, - -54491.59437291605, - -48865.81331738888, - -43083.19888429898, - -39426.942850473635, - -38122.07917937726, - -39242.917053607394, - -42036.62982606205, - -45122.80667589294, - -47258.17936022187, - -46915.103931130114, - -44085.01710659259, - -38511.257780335574, - -14970.988038784937 - ], - "flow:J11:branch5_seg2": [ - 2.5907092677557433, - 7.584072139103499, - 12.738206491777419, - 18.215770300038617, - 24.010996961883077, - 31.300752103366904, - 41.75262656936057, - 56.25161035057506, - 77.3922749964993, - 103.69751747208346, - 136.932754152504, - 173.36822336375715, - 212.1359694201478, - 250.32083716370002, - 281.26063409391634, - 309.2617295000177, - 323.9513919539752, - 333.9836421810246, - 330.5942981328902, - 316.0395811941035, - 294.93424639329646, - 260.7174272873144, - 223.01238967484198, - 174.47937295932593, - 120.44613177195485, - 62.15508015542696, - 0.6969812503081793, - -60.766295936476446, - -118.34088940066565, - -172.7851275459261, - -217.12082323042299, - -255.12815481266608, - -283.44704555162303, - -300.83286423211405, - -314.9258895097456, - -318.2968708741677, - -322.4746184065067, - -318.50976303246614, - -310.3441263723654, - -298.82372578870576, - -278.0945395805775, - -254.8074070240828, - -222.0397524382631, - -186.01466144260078, - -146.79604762528973, - -107.9636849434308, - -71.8605760034634, - -40.630497986311795, - -15.498086085459684, - 3.318374883710061, - 17.019813444010953, - 27.931909468328158, - 37.17541480056262, - 47.17221000268688, - 57.272408832606324, - 68.5086803021542, - 78.14887484095746, - 85.5500177935509, - 88.73429182878897, - 86.43211587177872, - 79.37489191009253, - 67.11165581633668, - 52.66875707106566, - 37.06387275367776, - 23.021180208837446, - 11.115517944204862, - 2.3644819775117263, - -3.6690237777304797, - -7.643265411688336, - -10.743343095713726, - -13.897554918065403, - -17.498914543711766, - -21.66816605709675, - -25.526403355808068, - -28.85324065948737, - -30.28230067655778, - -30.168279236466578, - -28.1815705215319, - -25.2558888044269, - -22.105590029035366, - -19.370217003946276, - -17.951795309046013, - -17.441890258497793, - -17.972432964264524, - -18.303338142806687, - -17.830752106451115, - -16.24744057374449, - -13.057932547915351, - -9.178091325600933, - -4.9351901940376415, - -1.414804386243105, - 0.6370144515603923, - 1.0125223948974784, - -0.1735805400911713, - -2.150956472276663, - -4.038670890394453, - -4.854143008390119, - -4.068017415188924, - -1.4581889474950545, - 2.5907092677557433 - ], - "pressure:J11:branch5_seg2": [ - -14970.988038784937, - -23225.109147408133, - -15426.51726282138, - -6579.626205020758, - 2953.9757774145496, - 16805.7828240643, - 36757.15065688444, - 64342.69471858292, - 103882.29798139758, - 149105.89185700455, - 209197.82681913985, - 268635.5198208126, - 336327.5798238111, - 399072.6708420021, - 446790.010950102, - 497974.6804699453, - 518255.62502996135, - 547923.3254181937, - 546945.565549146, - 536184.404082107, - 514102.34470628516, - 467624.15693295933, - 422490.305134625, - 352233.7303608264, - 281732.99824235786, - 198208.14148911712, - 111277.15861906475, - 21920.49720393641, - -59438.87647480372, - -139745.48781397604, - -199975.41417300593, - -260643.2396972889, - -303340.9818543499, - -332468.0220242907, - -362851.2944515332, - -370935.8574567681, - -394518.926496933, - -394788.19326514006, - -399622.19833450334, - -392231.63909642794, - -370577.27970938914, - -346526.39584418264, - -301089.0084645588, - -263309.7945198682, - -213555.25073906325, - -171989.09720808585, - -130492.34277570988, - -95601.08291317636, - -70393.71840410016, - -50842.917693725176, - -37040.64953712471, - -24035.84932426764, - -10227.388526690209, - 6543.363016934162, - 23693.48888560274, - 43708.15370412095, - 57927.72361396659, - 70977.83464575453, - 74556.50381474347, - 71438.81889336742, - 61118.61178959685, - 42585.587461584524, - 25317.11103446576, - 5423.987346623261, - -8943.604977717932, - -21249.08460885211, - -29299.1969844883, - -34502.770447095594, - -38158.54955329063, - -42142.372355561914, - -46847.7758393513, - -53149.650678989055, - -59994.687416723405, - -65905.08996796388, - -70826.49660386826, - -71605.31306657226, - -71547.46132352822, - -67970.22063816198, - -64826.40542268061, - -61510.60201527687, - -59156.53373494905, - -59576.2383780479, - -60305.03999175644, - -62871.2193584087, - -63661.19232618138, - -62850.390128680454, - -59960.90812574098, - -54491.59437291605, - -48865.81331738888, - -43083.19888429898, - -39426.942850473635, - -38122.07917937726, - -39242.917053607394, - -42036.62982606205, - -45122.80667589294, - -47258.17936022187, - -46915.103931130114, - -44085.01710659259, - -38511.257780335574, - -14970.988038784937 - ], - "flow:branch6_seg0:J12": [ - 1.907266180504827, - 5.215533514368674, - 8.575712482333538, - 12.052704493598805, - 15.768254525031052, - 20.345079259482194, - 27.21641210101397, - 36.57785698089799, - 50.56801788022567, - 67.83399912717954, - 89.34707599549989, - 113.51556123150048, - 137.78052419896676, - 162.9850217083571, - 181.77559945259307, - 199.26155740319575, - 208.113418524101, - 212.87169745489052, - 210.82378948042683, - 199.48960848447828, - 185.88071020154058, - 162.6336851801511, - 138.28719248992888, - 106.48507855076329, - 71.44984226358581, - 33.96238415271073, - -5.683914510700734, - -44.74096843408651, - -81.5782290799431, - -115.50385819024324, - -143.59226679747653, - -166.18991937526525, - -184.08872358081618, - -193.35092828161447, - -201.8368057658873, - -202.93647523346786, - -204.83497438632511, - -202.27549868276446, - -195.82326552150147, - -188.83923091577523, - -174.16360736452646, - -159.63751007467675, - -137.5017908386148, - -114.08831361958994, - -89.05649375267603, - -63.589378669457496, - -41.48323774764523, - -21.450491944199317, - -6.395073233668865, - 4.8399442491267095, - 12.8731028966148, - 19.097771705874663, - 24.5970383429602, - 30.842164156272126, - 37.1212347000771, - 44.42986099924211, - 50.56219179346006, - 54.99146893225899, - 57.02106165071146, - 54.72573456364778, - 50.09226561840225, - 41.466531811211624, - 31.93287573982802, - 21.82908265514439, - 12.729855073241586, - 5.493614009639041, - 0.1270337063834578, - -3.3315446198912406, - -5.507639369976356, - -7.278860884709987, - -9.16055092672592, - -11.407809811570003, - -14.158639935952397, - -16.56487841915566, - -18.735023086520663, - -19.50713674949004, - -19.230721385295443, - -17.863566526179373, - -15.698887516282252, - -13.72262751080336, - -11.868933801815821, - -11.071048131912963, - -10.88853379894883, - -11.30209722530632, - -11.671227563712664, - -11.304324509523324, - -10.263166600356405, - -8.073905142048813, - -5.490423091660267, - -2.684420018037953, - -0.4516398822745221, - 0.7831102667115512, - 0.8479745590281842, - -0.08995973403118054, - -1.507385697895684, - -2.795883120483328, - -3.3051700401520874, - -2.679499240727667, - -0.8675614456572246, - 1.907266180504827 - ], - "pressure:branch6_seg0:J12": [ - -16431.998179881648, - -24908.245946924806, - -17151.189840041214, - -8445.069667281801, - 941.2657805245539, - 13855.990724097073, - 32719.416688655383, - 58330.02942972422, - 95834.2659338109, - 139429.95841477337, - 196833.81692300228, - 256413.40376291383, - 321731.7962580613, - 385726.78002423607, - 435063.86348904535, - 487813.22967125586, - 512509.6721674425, - 542985.3678394912, - 546648.0188768882, - 537332.3742646199, - 518862.6018012764, - 475215.36842648225, - 433596.20585853147, - 366465.3952125853, - 297501.54371207114, - 216329.3467197666, - 130141.68150234822, - 41921.274806095316, - -40495.37563492557, - -121525.93344120307, - -185198.1097830096, - -246556.90524320645, - -292742.4951853507, - -323719.3695956578, - -356337.42984048784, - -366920.5512194975, - -391327.10707181215, - -394732.45102128346, - -399056.4551658294, - -395014.1704804969, - -374164.9872278333, - -353849.90181035275, - -311079.64239755116, - -273717.8947007317, - -225991.0026259881, - -182329.58507410943, - -140679.88386580994, - -104140.46781427675, - -76969.47264129751, - -56107.672426072844, - -40814.989418664125, - -27119.416651184198, - -13461.245327493094, - 3248.12790877362, - 19900.06336148227, - 39892.42533490584, - 55013.28598765133, - 68435.52198488526, - 74189.18933782406, - 71968.17205742939, - 63697.50115956405, - 46518.69389825337, - 29687.146705096297, - 10188.44189470551, - -5115.208230337989, - -18147.211305549383, - -27052.624820857513, - -33059.77039498916, - -37041.99072570389, - -41112.166461549234, - -45770.20624842334, - -51725.40717647647, - -58596.76181727449, - -64499.72107794972, - -69841.18335718596, - -71291.6321929389, - -71616.59947295873, - -68762.94434896618, - -65542.03246908468, - -62301.15565942071, - -59701.83821762927, - -59698.77110902212, - -60248.67009612539, - -62537.55490777527, - -63541.647626927486, - -62993.69514750527, - -60578.223617664815, - -55525.042418380275, - -50174.896792142026, - -44330.54820165836, - -40337.710515825194, - -38493.69533850247, - -39065.92067713143, - -41485.39901825435, - -44444.09988154762, - -46753.3963625812, - -46885.7542803199, - -44579.45764180942, - -39579.57457159514, - -16431.998179881648 - ], - "flow:J12:branch6_seg1": [ - 1.907266180504827, - 5.215533514368674, - 8.575712482333538, - 12.052704493598805, - 15.768254525031052, - 20.345079259482194, - 27.21641210101397, - 36.57785698089799, - 50.56801788022567, - 67.83399912717954, - 89.34707599549989, - 113.51556123150048, - 137.78052419896676, - 162.9850217083571, - 181.77559945259307, - 199.26155740319575, - 208.113418524101, - 212.87169745489052, - 210.82378948042683, - 199.48960848447828, - 185.88071020154058, - 162.6336851801511, - 138.28719248992888, - 106.48507855076329, - 71.44984226358581, - 33.96238415271073, - -5.683914510700734, - -44.74096843408651, - -81.5782290799431, - -115.50385819024324, - -143.59226679747653, - -166.18991937526525, - -184.08872358081618, - -193.35092828161447, - -201.8368057658873, - -202.93647523346786, - -204.83497438632511, - -202.27549868276446, - -195.82326552150147, - -188.83923091577523, - -174.16360736452646, - -159.63751007467675, - -137.5017908386148, - -114.08831361958994, - -89.05649375267603, - -63.589378669457496, - -41.48323774764523, - -21.450491944199317, - -6.395073233668865, - 4.8399442491267095, - 12.8731028966148, - 19.097771705874663, - 24.5970383429602, - 30.842164156272126, - 37.1212347000771, - 44.42986099924211, - 50.56219179346006, - 54.99146893225899, - 57.02106165071146, - 54.72573456364778, - 50.09226561840225, - 41.466531811211624, - 31.93287573982802, - 21.82908265514439, - 12.729855073241586, - 5.493614009639041, - 0.1270337063834578, - -3.3315446198912406, - -5.507639369976356, - -7.278860884709987, - -9.16055092672592, - -11.407809811570003, - -14.158639935952397, - -16.56487841915566, - -18.735023086520663, - -19.50713674949004, - -19.230721385295443, - -17.863566526179373, - -15.698887516282252, - -13.72262751080336, - -11.868933801815821, - -11.071048131912963, - -10.88853379894883, - -11.30209722530632, - -11.671227563712664, - -11.304324509523324, - -10.263166600356405, - -8.073905142048813, - -5.490423091660267, - -2.684420018037953, - -0.4516398822745221, - 0.7831102667115512, - 0.8479745590281842, - -0.08995973403118054, - -1.507385697895684, - -2.795883120483328, - -3.3051700401520874, - -2.679499240727667, - -0.8675614456572246, - 1.907266180504827 - ], - "pressure:J12:branch6_seg1": [ - -16431.998179881648, - -24908.245946924806, - -17151.189840041214, - -8445.069667281801, - 941.2657805245539, - 13855.990724097073, - 32719.416688655383, - 58330.02942972422, - 95834.2659338109, - 139429.95841477337, - 196833.81692300228, - 256413.40376291383, - 321731.7962580613, - 385726.78002423607, - 435063.86348904535, - 487813.22967125586, - 512509.6721674425, - 542985.3678394912, - 546648.0188768882, - 537332.3742646199, - 518862.6018012764, - 475215.36842648225, - 433596.20585853147, - 366465.3952125853, - 297501.54371207114, - 216329.3467197666, - 130141.68150234822, - 41921.274806095316, - -40495.37563492557, - -121525.93344120307, - -185198.1097830096, - -246556.90524320645, - -292742.4951853507, - -323719.3695956578, - -356337.42984048784, - -366920.5512194975, - -391327.10707181215, - -394732.45102128346, - -399056.4551658294, - -395014.1704804969, - -374164.9872278333, - -353849.90181035275, - -311079.64239755116, - -273717.8947007317, - -225991.0026259881, - -182329.58507410943, - -140679.88386580994, - -104140.46781427675, - -76969.47264129751, - -56107.672426072844, - -40814.989418664125, - -27119.416651184198, - -13461.245327493094, - 3248.12790877362, - 19900.06336148227, - 39892.42533490584, - 55013.28598765133, - 68435.52198488526, - 74189.18933782406, - 71968.17205742939, - 63697.50115956405, - 46518.69389825337, - 29687.146705096297, - 10188.44189470551, - -5115.208230337989, - -18147.211305549383, - -27052.624820857513, - -33059.77039498916, - -37041.99072570389, - -41112.166461549234, - -45770.20624842334, - -51725.40717647647, - -58596.76181727449, - -64499.72107794972, - -69841.18335718596, - -71291.6321929389, - -71616.59947295873, - -68762.94434896618, - -65542.03246908468, - -62301.15565942071, - -59701.83821762927, - -59698.77110902212, - -60248.67009612539, - -62537.55490777527, - -63541.647626927486, - -62993.69514750527, - -60578.223617664815, - -55525.042418380275, - -50174.896792142026, - -44330.54820165836, - -40337.710515825194, - -38493.69533850247, - -39065.92067713143, - -41485.39901825435, - -44444.09988154762, - -46753.3963625812, - -46885.7542803199, - -44579.45764180942, - -39579.57457159514, - -16431.998179881648 - ], - "flow:branch6_seg1:J13": [ - 1.8550385945612762, - 5.157724442596324, - 8.516450196636484, - 11.986412634138764, - 15.699312093799508, - 20.23000964169912, - 27.065142441142783, - 36.33629897358354, - 50.265595475623876, - 67.48459995045836, - 88.90591377990283, - 113.14906817912436, - 137.28335530305495, - 162.57706237999963, - 181.33836312924072, - 198.94350003470123, - 207.97106304199283, - 212.75750687748288, - 210.94931386912938, - 199.5232913858064, - 186.0888067437509, - 162.83019664851543, - 138.68984789567483, - 107.01836720462543, - 72.00152907669269, - 34.5784913012842, - -5.096329255557098, - -44.12433221051951, - -81.00864301217871, - -114.9598577160939, - -143.21932467617802, - -165.78518205788362, - -183.83911670867366, - -193.03529990337694, - -201.64374137135007, - -202.7617646233152, - -204.73166647454417, - -202.36080128022502, - -195.78753952850306, - -188.9632341874994, - -174.18158212529696, - -159.86120220341255, - -137.8018032341634, - -114.41233689456061, - -89.48384716702672, - -63.87774413559574, - -41.77398616422858, - -21.638378115567136, - -6.557444241501097, - 4.704724324580642, - 12.75976519749975, - 18.997153768255252, - 24.48207469457287, - 30.72688168823246, - 36.97676186776065, - 44.297829964110555, - 50.47803641703922, - 54.91192749375057, - 57.04266677967797, - 54.73955224948091, - 50.189861806740105, - 41.57640071706237, - 32.064450642745385, - 21.97697215776721, - 12.836162640286492, - 5.5769118628307215, - 0.17295353219068335, - -3.3030823142134733, - -5.481446665650237, - -7.246869468928552, - -9.124126394009956, - -11.356224103283175, - -14.114575075041511, - -16.516413546100885, - -18.71010548360296, - -19.50468024773577, - -19.238529859515104, - -17.90160361933753, - -15.718849467494817, - -13.745519136842264, - -11.87017327421092, - -11.064897179504996, - -10.880796185851045, - -11.289570505052257, - -11.67500623494971, - -11.310901962637821, - -10.289220462950055, - -8.10578928012778, - -5.533492156161876, - -2.7234769378152857, - -0.4767474610825101, - 0.7783382373297029, - 0.8610925844670587, - -0.06728414249221734, - -1.4860906226035822, - -2.785618801581077, - -3.315061837101041, - -2.7064737808340324, - -0.9121215544882604, - 1.8550385945612762 - ], - "pressure:branch6_seg1:J13": [ - -17958.465942867846, - -26696.14157657646, - -18954.90174111246, - -10472.176861328739, - -1244.622538899624, - 10659.218887257197, - 28202.919873820927, - 51815.76745341528, - 86758.30905769343, - 128659.83397558678, - 182647.93205044372, - 241840.23388687917, - 304090.77325443056, - 368196.353436039, - 418520.193916746, - 470748.2988585676, - 500042.967853068, - 528745.9336761403, - 537333.5337890348, - 528681.5010268282, - 513375.03528900247, - 474270.92692673195, - 435493.03819887777, - 374791.9796481524, - 308510.8434280212, - 232272.5346873699, - 149461.10553518787, - 64730.540184755664, - -16576.222031075293, - -96007.34413913354, - -162521.6689805919, - -223129.73471514843, - -272819.34633104934, - -306065.7415951727, - -340450.1471875249, - -355678.3389022249, - -379818.2071008228, - -388805.4725683102, - -392943.5699194962, - -392864.3335228204, - -374851.3225172435, - -357728.4367648842, - -319833.6643362103, - -282672.7928460059, - -237605.16541142474, - -192109.89407775566, - -150371.50341253146, - -112113.51156679369, - -83254.4352619351, - -60952.31397926044, - -44402.46621033077, - -30194.461051678303, - -16602.494987691407, - -367.27217327839276, - 15967.072218302532, - 35517.95067339985, - 51699.09782037114, - 65351.21831970344, - 73139.72854447283, - 72021.78783060226, - 65611.95785852811, - 50033.24832823784, - 33559.13706407181, - 14657.501718462516, - -1619.2736129307002, - -15184.983148691366, - -25046.36397454942, - -31658.31366893891, - -35989.0913131639, - -40020.023174014954, - -44543.66029491016, - -50138.46309294242, - -56904.02737461128, - -62876.82848575462, - -68522.86176546068, - -70782.21871489585, - -71430.7448952272, - -69372.18330429931, - -66071.99236325348, - -62923.12586027641, - -60060.09230141091, - -59607.23335965789, - -60024.30416728113, - -61971.44393594407, - -63276.519165134014, - -62991.49534987404, - -61081.31762409529, - -56538.925671221834, - -51395.100605773034, - -45599.5612732323, - -41206.55101588131, - -38824.24942687913, - -38837.6170967965, - -40852.39634463611, - -43708.894453259374, - -46197.21910891117, - -46845.34409004988, - -45090.28288073485, - -40705.901897961005, - -17958.465942867846 - ], - "flow:J13:branch6_seg2": [ - 1.8550385945612762, - 5.157724442596324, - 8.516450196636484, - 11.986412634138764, - 15.699312093799508, - 20.23000964169912, - 27.065142441142783, - 36.33629897358354, - 50.265595475623876, - 67.48459995045836, - 88.90591377990283, - 113.14906817912436, - 137.28335530305495, - 162.57706237999963, - 181.33836312924072, - 198.94350003470123, - 207.97106304199283, - 212.75750687748288, - 210.94931386912938, - 199.5232913858064, - 186.0888067437509, - 162.83019664851543, - 138.68984789567483, - 107.01836720462543, - 72.00152907669269, - 34.5784913012842, - -5.096329255557098, - -44.12433221051951, - -81.00864301217871, - -114.9598577160939, - -143.21932467617802, - -165.78518205788362, - -183.83911670867366, - -193.03529990337694, - -201.64374137135007, - -202.7617646233152, - -204.73166647454417, - -202.36080128022502, - -195.78753952850306, - -188.9632341874994, - -174.18158212529696, - -159.86120220341255, - -137.8018032341634, - -114.41233689456061, - -89.48384716702672, - -63.87774413559574, - -41.77398616422858, - -21.638378115567136, - -6.557444241501097, - 4.704724324580642, - 12.75976519749975, - 18.997153768255252, - 24.48207469457287, - 30.72688168823246, - 36.97676186776065, - 44.297829964110555, - 50.47803641703922, - 54.91192749375057, - 57.04266677967797, - 54.73955224948091, - 50.189861806740105, - 41.57640071706237, - 32.064450642745385, - 21.97697215776721, - 12.836162640286492, - 5.5769118628307215, - 0.17295353219068335, - -3.3030823142134733, - -5.481446665650237, - -7.246869468928552, - -9.124126394009956, - -11.356224103283175, - -14.114575075041511, - -16.516413546100885, - -18.71010548360296, - -19.50468024773577, - -19.238529859515104, - -17.90160361933753, - -15.718849467494817, - -13.745519136842264, - -11.87017327421092, - -11.064897179504996, - -10.880796185851045, - -11.289570505052257, - -11.67500623494971, - -11.310901962637821, - -10.289220462950055, - -8.10578928012778, - -5.533492156161876, - -2.7234769378152857, - -0.4767474610825101, - 0.7783382373297029, - 0.8610925844670587, - -0.06728414249221734, - -1.4860906226035822, - -2.785618801581077, - -3.315061837101041, - -2.7064737808340324, - -0.9121215544882604, - 1.8550385945612762 - ], - "pressure:J13:branch6_seg2": [ - -17958.465942867846, - -26696.14157657646, - -18954.90174111246, - -10472.176861328739, - -1244.622538899624, - 10659.218887257197, - 28202.919873820927, - 51815.76745341528, - 86758.30905769343, - 128659.83397558678, - 182647.93205044372, - 241840.23388687917, - 304090.77325443056, - 368196.353436039, - 418520.193916746, - 470748.2988585676, - 500042.967853068, - 528745.9336761403, - 537333.5337890348, - 528681.5010268282, - 513375.03528900247, - 474270.92692673195, - 435493.03819887777, - 374791.9796481524, - 308510.8434280212, - 232272.5346873699, - 149461.10553518787, - 64730.540184755664, - -16576.222031075293, - -96007.34413913354, - -162521.6689805919, - -223129.73471514843, - -272819.34633104934, - -306065.7415951727, - -340450.1471875249, - -355678.3389022249, - -379818.2071008228, - -388805.4725683102, - -392943.5699194962, - -392864.3335228204, - -374851.3225172435, - -357728.4367648842, - -319833.6643362103, - -282672.7928460059, - -237605.16541142474, - -192109.89407775566, - -150371.50341253146, - -112113.51156679369, - -83254.4352619351, - -60952.31397926044, - -44402.46621033077, - -30194.461051678303, - -16602.494987691407, - -367.27217327839276, - 15967.072218302532, - 35517.95067339985, - 51699.09782037114, - 65351.21831970344, - 73139.72854447283, - 72021.78783060226, - 65611.95785852811, - 50033.24832823784, - 33559.13706407181, - 14657.501718462516, - -1619.2736129307002, - -15184.983148691366, - -25046.36397454942, - -31658.31366893891, - -35989.0913131639, - -40020.023174014954, - -44543.66029491016, - -50138.46309294242, - -56904.02737461128, - -62876.82848575462, - -68522.86176546068, - -70782.21871489585, - -71430.7448952272, - -69372.18330429931, - -66071.99236325348, - -62923.12586027641, - -60060.09230141091, - -59607.23335965789, - -60024.30416728113, - -61971.44393594407, - -63276.519165134014, - -62991.49534987404, - -61081.31762409529, - -56538.925671221834, - -51395.100605773034, - -45599.5612732323, - -41206.55101588131, - -38824.24942687913, - -38837.6170967965, - -40852.39634463611, - -43708.894453259374, - -46197.21910891117, - -46845.34409004988, - -45090.28288073485, - -40705.901897961005, - -17958.465942867846 - ], - "flow:branch7_seg0:J14": [ - 0.5233652273821738, - 2.58558769672598, - 4.8899298099693596, - 7.5355674704844215, - 10.424046421948994, - 13.92278218432799, - 18.894848353648683, - 25.32662279533396, - 35.053347277493955, - 46.81367893187514, - 62.152712890163016, - 79.35152631182228, - 97.54399444240683, - 117.35636528570396, - 133.2598356633401, - 150.85616096726775, - 160.75461083586166, - 169.35057237601814, - 171.4716248086638, - 166.8634692808322, - 161.76667546920382, - 147.16284834205638, - 132.70229115355613, - 109.91984054632213, - 84.69795774869444, - 57.1342771480565, - 26.981324924794563, - -2.881515842455265, - -32.876564800503935, - -62.2098939580671, - -87.47541721987722, - -109.76257197181744, - -128.0871350983057, - -140.24198842424047, - -153.21001183943304, - -158.3830459781316, - -165.0518496041002, - -165.82701543369058, - -163.83706818123795, - -161.91778036149515, - -153.3320760845872, - -146.30715767534295, - -131.46878154890192, - -116.07614212786793, - -97.68524844317633, - -78.19016528310357, - -60.771694072671956, - -43.108197321840834, - -28.66537832317166, - -15.630520480702618, - -5.188888184195464, - 3.205308432439572, - 10.284907910555244, - 17.1121630068416, - 23.49751873691467, - 30.47289441303583, - 36.19995414308269, - 40.933257486251435, - 44.00923325294311, - 44.257110735057736, - 43.2078855260412, - 38.73702836348578, - 33.506170402726674, - 26.528497409983686, - 19.61834575657207, - 13.458014065324821, - 8.119095463931119, - 4.112200255864623, - 0.7949941091188126, - -1.984093314800594, - -4.426102061472169, - -6.742599525026596, - -9.1531295657493, - -11.27571576867108, - -13.418186404313058, - -14.584498072274926, - -15.218838414632982, - -14.908192350212309, - -13.953263408410645, - -12.967345763023523, - -11.712090450969791, - -11.114083484142078, - -10.538047897710774, - -10.434305657071722, - -10.3498912990943, - -9.96094560313494, - -9.409199687149068, - -8.022730098758196, - -6.45151234120278, - -4.476237557308449, - -2.7090405578528802, - -1.4421754937004392, - -0.7962536596031068, - -0.8481583574672268, - -1.2867935935486432, - -1.8524209456000376, - -2.1538725349626606, - -1.9422309544637266, - -1.0428476091160448, - 0.5233652273821738 - ], - "pressure:branch7_seg0:J14": [ - -16196.184230014274, - -24925.932304735386, - -17410.991557343066, - -8901.527130550698, - 457.6885550398312, - 12628.941755586635, - 31878.826478233746, - 57085.677753577314, - 95162.7153854333, - 139799.61513404793, - 195490.98049342097, - 255874.71042083684, - 317881.4990227556, - 383877.2393856401, - 433102.34498234215, - 489732.64845708525, - 516141.584691629, - 542560.0611783527, - 551482.6325341542, - 535538.5483948657, - 528974.8208771799, - 485162.41157583403, - 442102.2784364991, - 377584.99702687754, - 300622.7190512384, - 223733.45078921886, - 136511.79400101796, - 46838.35846671958, - -37864.52260845127, - -121684.86136192734, - -186403.16901913594, - -243993.78561552122, - -292324.2091476695, - -320247.15918574546, - -359965.9271035798, - -370542.7781627778, - -391236.6468816952, - -398304.0735976792, - -392617.85663123295, - -397223.848091978, - -374443.16715755936, - -355345.8496126384, - -315584.61685932794, - -272011.4362516445, - -228200.16867667568, - -184111.1931979636, - -146693.28810087446, - -110500.57544242177, - -83699.16366634016, - -62189.97667703392, - -46528.90186281129, - -33313.56461344611, - -18887.335042503066, - -838.0198418811931, - 17089.19082428236, - 37737.65128784728, - 53587.83534810394, - 65165.24371492126, - 72091.06262270255, - 69275.25196709072, - 62618.36902617634, - 46450.82513191856, - 29567.360829305057, - 10827.92742463268, - -4619.096120214012, - -15882.354477290228, - -24711.909201922146, - -30254.87192814896, - -34898.41385015348, - -39546.19555291608, - -44395.92767701424, - -50370.75158438894, - -57721.678978448974, - -63747.34405727096, - -69379.83386595866, - -71028.92115017942, - -70710.88558465743, - -68160.10233456257, - -64647.058328988256, - -62207.56732665146, - -59858.04080147387, - -60307.83073837471, - -60874.85282611792, - -62774.30241049567, - -64083.13447811874, - -62916.53740690189, - -60894.59568806637, - -55619.17260979659, - -50162.65931113852, - -44667.38586685366, - -40462.910160775355, - -39102.956303429215, - -39845.780488367476, - -42242.493159004836, - -45044.56646218509, - -47040.30006540956, - -46995.145073613385, - -44462.81488408678, - -39343.128760212545, - -16196.184230014274 - ], - "flow:J14:branch7_seg1": [ - 0.5233652273821738, - 2.58558769672598, - 4.8899298099693596, - 7.5355674704844215, - 10.424046421948994, - 13.92278218432799, - 18.894848353648683, - 25.32662279533396, - 35.053347277493955, - 46.81367893187514, - 62.152712890163016, - 79.35152631182228, - 97.54399444240683, - 117.35636528570396, - 133.2598356633401, - 150.85616096726775, - 160.75461083586166, - 169.35057237601814, - 171.4716248086638, - 166.8634692808322, - 161.76667546920382, - 147.16284834205638, - 132.70229115355613, - 109.91984054632213, - 84.69795774869444, - 57.1342771480565, - 26.981324924794563, - -2.881515842455265, - -32.876564800503935, - -62.2098939580671, - -87.47541721987722, - -109.76257197181744, - -128.0871350983057, - -140.24198842424047, - -153.21001183943304, - -158.3830459781316, - -165.0518496041002, - -165.82701543369058, - -163.83706818123795, - -161.91778036149515, - -153.3320760845872, - -146.30715767534295, - -131.46878154890192, - -116.07614212786793, - -97.68524844317633, - -78.19016528310357, - -60.771694072671956, - -43.108197321840834, - -28.66537832317166, - -15.630520480702618, - -5.188888184195464, - 3.205308432439572, - 10.284907910555244, - 17.1121630068416, - 23.49751873691467, - 30.47289441303583, - 36.19995414308269, - 40.933257486251435, - 44.00923325294311, - 44.257110735057736, - 43.2078855260412, - 38.73702836348578, - 33.506170402726674, - 26.528497409983686, - 19.61834575657207, - 13.458014065324821, - 8.119095463931119, - 4.112200255864623, - 0.7949941091188126, - -1.984093314800594, - -4.426102061472169, - -6.742599525026596, - -9.1531295657493, - -11.27571576867108, - -13.418186404313058, - -14.584498072274926, - -15.218838414632982, - -14.908192350212309, - -13.953263408410645, - -12.967345763023523, - -11.712090450969791, - -11.114083484142078, - -10.538047897710774, - -10.434305657071722, - -10.3498912990943, - -9.96094560313494, - -9.409199687149068, - -8.022730098758196, - -6.45151234120278, - -4.476237557308449, - -2.7090405578528802, - -1.4421754937004392, - -0.7962536596031068, - -0.8481583574672268, - -1.2867935935486432, - -1.8524209456000376, - -2.1538725349626606, - -1.9422309544637266, - -1.0428476091160448, - 0.5233652273821738 - ], - "pressure:J14:branch7_seg1": [ - -16196.184230014274, - -24925.932304735386, - -17410.991557343066, - -8901.527130550698, - 457.6885550398312, - 12628.941755586635, - 31878.826478233746, - 57085.677753577314, - 95162.7153854333, - 139799.61513404793, - 195490.98049342097, - 255874.71042083684, - 317881.4990227556, - 383877.2393856401, - 433102.34498234215, - 489732.64845708525, - 516141.584691629, - 542560.0611783527, - 551482.6325341542, - 535538.5483948657, - 528974.8208771799, - 485162.41157583403, - 442102.2784364991, - 377584.99702687754, - 300622.7190512384, - 223733.45078921886, - 136511.79400101796, - 46838.35846671958, - -37864.52260845127, - -121684.86136192734, - -186403.16901913594, - -243993.78561552122, - -292324.2091476695, - -320247.15918574546, - -359965.9271035798, - -370542.7781627778, - -391236.6468816952, - -398304.0735976792, - -392617.85663123295, - -397223.848091978, - -374443.16715755936, - -355345.8496126384, - -315584.61685932794, - -272011.4362516445, - -228200.16867667568, - -184111.1931979636, - -146693.28810087446, - -110500.57544242177, - -83699.16366634016, - -62189.97667703392, - -46528.90186281129, - -33313.56461344611, - -18887.335042503066, - -838.0198418811931, - 17089.19082428236, - 37737.65128784728, - 53587.83534810394, - 65165.24371492126, - 72091.06262270255, - 69275.25196709072, - 62618.36902617634, - 46450.82513191856, - 29567.360829305057, - 10827.92742463268, - -4619.096120214012, - -15882.354477290228, - -24711.909201922146, - -30254.87192814896, - -34898.41385015348, - -39546.19555291608, - -44395.92767701424, - -50370.75158438894, - -57721.678978448974, - -63747.34405727096, - -69379.83386595866, - -71028.92115017942, - -70710.88558465743, - -68160.10233456257, - -64647.058328988256, - -62207.56732665146, - -59858.04080147387, - -60307.83073837471, - -60874.85282611792, - -62774.30241049567, - -64083.13447811874, - -62916.53740690189, - -60894.59568806637, - -55619.17260979659, - -50162.65931113852, - -44667.38586685366, - -40462.910160775355, - -39102.956303429215, - -39845.780488367476, - -42242.493159004836, - -45044.56646218509, - -47040.30006540956, - -46995.145073613385, - -44462.81488408678, - -39343.128760212545, - -16196.184230014274 - ], - "flow:branch7_seg1:J15": [ - 0.5013987975770362, - 2.5621864389153504, - 4.8678613975322085, - 7.509001751064338, - 10.393170058943555, - 13.872529695344907, - 18.831879830805107, - 25.23325343748831, - 34.93038988129067, - 46.67522886243922, - 61.95120747056762, - 79.18511501997318, - 97.33112313964159, - 117.19444152441386, - 133.1502108481288, - 150.71034501050048, - 160.6838347940135, - 169.26102960219094, - 171.4914519516417, - 166.924579200258, - 161.8879577060074, - 147.27434721926113, - 132.8287803218858, - 110.11931701021342, - 84.90456973954814, - 57.420906349888185, - 27.243718656282716, - -2.6481372793697804, - -32.66658809907424, - -61.98746038518869, - -87.29969170300669, - -109.56580749002573, - -127.9834321690921, - -140.182061809448, - -153.1474644908628, - -158.32489607616017, - -164.96456343516354, - -165.8211478994531, - -163.81337497934723, - -162.00339735464263, - -153.38365479251303, - -146.37474825291636, - -131.59204267847076, - -116.14798302424555, - -97.86202118599807, - -78.32777064401861, - -60.885862262621025, - -43.20111051641069, - -28.704599769332113, - -15.682172468346145, - -5.248767781774939, - 3.155342646555285, - 10.233797932748386, - 17.07140181742434, - 23.447662550447333, - 30.41095200729107, - 36.15646987343604, - 40.88576743268245, - 44.01893996298038, - 44.27421774736308, - 43.2487099904624, - 38.794196617753265, - 33.540713327118, - 26.58071132023958, - 19.663182725631636, - 13.493946694609658, - 8.144239249062753, - 4.119002675733402, - 0.8011739875450535, - -1.968182078850121, - -4.406018516449988, - -6.717735998293497, - -9.136166872217611, - -11.260664355524346, - -13.407811524937653, - -14.584178962180445, - -15.215118607386046, - -14.92142928626096, - -13.962619853483025, - -12.977251429251934, - -11.718771307066705, - -11.106865979064933, - -10.531920730247307, - -10.427995522024087, - -10.35149155129923, - -9.967511812176859, - -9.421457423042042, - -8.037269850700165, - -6.467381440578188, - -4.490855171560204, - -2.7176004700408947, - -1.4453844638506987, - -0.7914075984925748, - -0.8379872782371051, - -1.2779097705329006, - -1.8486352451132064, - -2.1595742225845056, - -1.9537615460686466, - -1.0609099844081131, - 0.5013987975770362 - ], - "pressure:branch7_seg1:J15": [ - -17268.378237531924, - -26336.929476368525, - -18994.177351951876, - -10822.080738796443, - -1736.490147276765, - 9425.747817371286, - 27736.57135306616, - 51224.96962197797, - 87271.48645463336, - 130199.72337448488, - 181724.78959024747, - 241183.1266309105, - 298775.0075389102, - 364714.4552283504, - 413422.78603974794, - 467715.895021892, - 495962.38212571415, - 517328.5887773924, - 530298.4236533475, - 514433.01359646016, - 512612.7455440011, - 471843.92700093804, - 430392.2186042391, - 371776.57494089485, - 298303.8049557418, - 230569.58629442175, - 149440.53202891257, - 65732.29832749619, - -15649.23948570826, - -94979.24545181272, - -158394.71466756042, - -211423.37150884114, - -261824.1920651419, - -291138.0202321306, - -333430.44054221077, - -347405.0008100511, - -366749.2601496526, - -379252.2488524789, - -373926.31100550113, - -386277.4549435554, - -366771.5182134486, - -351778.89854682, - -316349.2759618562, - -272360.3639887035, - -234504.77764155416, - -190615.29180150488, - -156022.83649224346, - -118876.40306607253, - -89997.22921774264, - -67688.72261385615, - -51103.4698838222, - -38204.30336108582, - -23839.523261240505, - -5265.139344895617, - 12813.666331545965, - 33237.03173071034, - 49481.58966260638, - 60284.26144148746, - 69180.46110307996, - 67112.16910104765, - 62586.000783763266, - 47807.418629329455, - 30894.515155607372, - 13284.8366265514, - -2535.5457249543306, - -13100.791890299684, - -22186.456507975305, - -28291.132020209436, - -33391.8248188585, - -38212.3408508719, - -42860.45604860037, - -48376.11200927733, - -55761.88709530174, - -61834.327058556344, - -67752.11955261743, - -69910.35128257665, - -69510.51031114017, - -67756.11804157753, - -64237.78647880118, - -62328.02031645397, - -59981.87828800917, - -60065.949155898226, - -60541.823242679566, - -62014.70204419453, - -63676.27740913067, - -62695.32081766843, - -61119.74758656844, - -56152.98812702172, - -50845.75095753673, - -45497.49549514766, - -41141.63150051425, - -39642.10426026012, - -40045.766979482025, - -42079.250160994474, - -44635.1583292682, - -46592.964742169126, - -46862.8872986356, - -44672.691574443845, - -40043.63239065118, - -17268.378237531924 - ], - "flow:J15:branch7_seg2": [ - 0.5013987975770362, - 2.5621864389153504, - 4.8678613975322085, - 7.509001751064338, - 10.393170058943555, - 13.872529695344907, - 18.831879830805107, - 25.23325343748831, - 34.93038988129067, - 46.67522886243922, - 61.95120747056762, - 79.18511501997318, - 97.33112313964159, - 117.19444152441386, - 133.1502108481288, - 150.71034501050048, - 160.6838347940135, - 169.26102960219094, - 171.4914519516417, - 166.924579200258, - 161.8879577060074, - 147.27434721926113, - 132.8287803218858, - 110.11931701021342, - 84.90456973954814, - 57.420906349888185, - 27.243718656282716, - -2.6481372793697804, - -32.66658809907424, - -61.98746038518869, - -87.29969170300669, - -109.56580749002573, - -127.9834321690921, - -140.182061809448, - -153.1474644908628, - -158.32489607616017, - -164.96456343516354, - -165.8211478994531, - -163.81337497934723, - -162.00339735464263, - -153.38365479251303, - -146.37474825291636, - -131.59204267847076, - -116.14798302424555, - -97.86202118599807, - -78.32777064401861, - -60.885862262621025, - -43.20111051641069, - -28.704599769332113, - -15.682172468346145, - -5.248767781774939, - 3.155342646555285, - 10.233797932748386, - 17.07140181742434, - 23.447662550447333, - 30.41095200729107, - 36.15646987343604, - 40.88576743268245, - 44.01893996298038, - 44.27421774736308, - 43.2487099904624, - 38.794196617753265, - 33.540713327118, - 26.58071132023958, - 19.663182725631636, - 13.493946694609658, - 8.144239249062753, - 4.119002675733402, - 0.8011739875450535, - -1.968182078850121, - -4.406018516449988, - -6.717735998293497, - -9.136166872217611, - -11.260664355524346, - -13.407811524937653, - -14.584178962180445, - -15.215118607386046, - -14.92142928626096, - -13.962619853483025, - -12.977251429251934, - -11.718771307066705, - -11.106865979064933, - -10.531920730247307, - -10.427995522024087, - -10.35149155129923, - -9.967511812176859, - -9.421457423042042, - -8.037269850700165, - -6.467381440578188, - -4.490855171560204, - -2.7176004700408947, - -1.4453844638506987, - -0.7914075984925748, - -0.8379872782371051, - -1.2779097705329006, - -1.8486352451132064, - -2.1595742225845056, - -1.9537615460686466, - -1.0609099844081131, - 0.5013987975770362 - ], - "pressure:J15:branch7_seg2": [ - -17268.378237531924, - -26336.929476368525, - -18994.177351951876, - -10822.080738796443, - -1736.490147276765, - 9425.747817371286, - 27736.57135306616, - 51224.96962197797, - 87271.48645463336, - 130199.72337448488, - 181724.78959024747, - 241183.1266309105, - 298775.0075389102, - 364714.4552283504, - 413422.78603974794, - 467715.895021892, - 495962.38212571415, - 517328.5887773924, - 530298.4236533475, - 514433.01359646016, - 512612.7455440011, - 471843.92700093804, - 430392.2186042391, - 371776.57494089485, - 298303.8049557418, - 230569.58629442175, - 149440.53202891257, - 65732.29832749619, - -15649.23948570826, - -94979.24545181272, - -158394.71466756042, - -211423.37150884114, - -261824.1920651419, - -291138.0202321306, - -333430.44054221077, - -347405.0008100511, - -366749.2601496526, - -379252.2488524789, - -373926.31100550113, - -386277.4549435554, - -366771.5182134486, - -351778.89854682, - -316349.2759618562, - -272360.3639887035, - -234504.77764155416, - -190615.29180150488, - -156022.83649224346, - -118876.40306607253, - -89997.22921774264, - -67688.72261385615, - -51103.4698838222, - -38204.30336108582, - -23839.523261240505, - -5265.139344895617, - 12813.666331545965, - 33237.03173071034, - 49481.58966260638, - 60284.26144148746, - 69180.46110307996, - 67112.16910104765, - 62586.000783763266, - 47807.418629329455, - 30894.515155607372, - 13284.8366265514, - -2535.5457249543306, - -13100.791890299684, - -22186.456507975305, - -28291.132020209436, - -33391.8248188585, - -38212.3408508719, - -42860.45604860037, - -48376.11200927733, - -55761.88709530174, - -61834.327058556344, - -67752.11955261743, - -69910.35128257665, - -69510.51031114017, - -67756.11804157753, - -64237.78647880118, - -62328.02031645397, - -59981.87828800917, - -60065.949155898226, - -60541.823242679566, - -62014.70204419453, - -63676.27740913067, - -62695.32081766843, - -61119.74758656844, - -56152.98812702172, - -50845.75095753673, - -45497.49549514766, - -41141.63150051425, - -39642.10426026012, - -40045.766979482025, - -42079.250160994474, - -44635.1583292682, - -46592.964742169126, - -46862.8872986356, - -44672.691574443845, - -40043.63239065118, - -17268.378237531924 - ], - "flow:branch8_seg0:J16": [ - -0.47159817763221473, - 0.7731993383116593, - 2.3353223073118414, - 4.022763483080494, - 5.9103687090753425, - 7.985943909049938, - 10.62501683357524, - 14.371844696714284, - 19.426528212082125, - 26.74971372290166, - 35.660862724882776, - 46.97549006857812, - 59.43876210598451, - 72.6955092450128, - 86.32399210119259, - 97.348809987212, - 108.28573547928755, - 114.42736221084101, - 119.04707577775093, - 119.426734709994, - 115.39352201516412, - 109.91511463330468, - 98.89342960200035, - 86.85886841219299, - 70.51569532437463, - 52.176737559480614, - 32.43261044676686, - 11.08982846239827, - -10.233540941957497, - -30.831774730661458, - -50.52399663804358, - -67.15072831968013, - -81.7622299516638, - -93.52228626203538, - -101.41762396808737, - -108.84603938942365, - -111.90424601562015, - -115.25003554329764, - -115.46808531243569, - -113.83117807534535, - -111.47523900673367, - -105.1958870210546, - -98.57987012011016, - -87.82740704761734, - -76.25417630173963, - -63.23574680329659, - -49.734702846509535, - -37.2956706384432, - -25.37466171451628, - -15.666240602636016, - -7.477405519789653, - -0.929720050706874, - 4.42616282280561, - 9.200462224737876, - 13.85401596220827, - 18.272377714323838, - 22.909890582754635, - 26.7122176684646, - 29.750493823130927, - 31.42729690906933, - 31.18118612237335, - 29.619080938400018, - 25.973061417261164, - 21.719497888175415, - 16.734175412863355, - 11.968334873559495, - 7.822259105968601, - 4.328785519671234, - 1.7298080499776085, - -0.317842703253817, - -2.05163494146821, - -3.6388105253553467, - -5.272303902918864, - -6.968392269665665, - -8.463978671044691, - -9.804330888961708, - -10.458111430097523, - -10.670252725994182, - -10.276102026054856, - -9.514765384279746, - -8.719743731011038, - -7.872422245395809, - -7.457845624477438, - -7.186747381045603, - -7.200770618854223, - -7.177890013258323, - -6.871809603850388, - -6.324009199982825, - -5.247967895740112, - -4.003696052442921, - -2.6193344548825226, - -1.4310381254568798, - -0.6725126339740901, - -0.3876572170848854, - -0.5668799414616394, - -0.9926762604181639, - -1.4263526837518763, - -1.5792063785169435, - -1.2911486718085334, - -0.47159817763221473 - ], - "pressure:branch8_seg0:J16": [ - -24258.616159039113, - -35681.75189674217, - -29556.280498807108, - -22862.38081180941, - -15108.862070148714, - -6438.685434448808, - 5060.578167177183, - 20906.06422893315, - 42584.470431796435, - 73243.47656531936, - 110264.42164708264, - 158243.92921346804, - 209703.7121277281, - 267565.25139333145, - 325917.19970686274, - 376929.745238818, - 430049.6576980826, - 464386.50038833177, - 497464.5405486363, - 511425.7255106788, - 512554.735187772, - 505822.94268484577, - 479042.67949092755, - 447352.78429699375, - 396381.198439546, - 338116.386706181, - 270160.7138775876, - 195510.08588554934, - 117995.1586600971, - 40986.17619165843, - -35727.60253778939, - -102069.4111446272, - -165218.8123103829, - -216932.54769511486, - -257941.44744183135, - -298082.00677709235, - -322701.10352149414, - -350902.18685405276, - -364680.39213695895, - -375277.9599544316, - -379286.8336541596, - -371430.77662933856, - -360389.2760922044, - -332694.14237850346, - -303638.18277856667, - -264767.62196626316, - -225918.4037100015, - -187907.43864443837, - -150973.8025911574, - -121025.86010158007, - -94169.06361593297, - -72298.6778590515, - -53368.90114065286, - -35340.513970135886, - -17189.083434521664, - 1103.10842493611, - 20758.01779187454, - 37288.70231109205, - 52168.065275479814, - 61091.473025502346, - 64284.59297683846, - 62052.057041224536, - 52371.610704564606, - 40969.263466114324, - 25768.3832300532, - 11694.7180565499, - -1060.5452292772618, - -11796.603613782243, - -19766.927741162002, - -26441.752146937546, - -32458.63254570528, - -38262.00429424077, - -44623.330868276964, - -51176.91929611481, - -57301.81523867543, - -62880.344568465815, - -65951.5232367784, - -67844.10278225476, - -67169.90987371352, - -65693.32711677326, - -63835.254745117614, - -61916.76227242971, - -61642.58474051134, - -61546.35662774455, - -62574.38332627942, - -63068.069928726174, - -62602.70344243441, - -61063.1146827461, - -57602.97712432361, - -53517.246702092394, - -48836.651771606776, - -44914.31233162952, - -42412.56037346712, - -41575.15215912394, - -42285.79279924434, - -43731.97827065768, - -45101.18062825058, - -45312.78179679204, - -43944.88381474038, - -24258.616159039113 - ], - "flow:J16:branch8_seg1": [ - -0.47159817763221473, - 0.7731993383116593, - 2.3353223073118414, - 4.022763483080494, - 5.9103687090753425, - 7.985943909049938, - 10.62501683357524, - 14.371844696714284, - 19.426528212082125, - 26.74971372290166, - 35.660862724882776, - 46.97549006857812, - 59.43876210598451, - 72.6955092450128, - 86.32399210119259, - 97.348809987212, - 108.28573547928755, - 114.42736221084101, - 119.04707577775093, - 119.426734709994, - 115.39352201516412, - 109.91511463330468, - 98.89342960200035, - 86.85886841219299, - 70.51569532437463, - 52.176737559480614, - 32.43261044676686, - 11.08982846239827, - -10.233540941957497, - -30.831774730661458, - -50.52399663804358, - -67.15072831968013, - -81.7622299516638, - -93.52228626203538, - -101.41762396808737, - -108.84603938942365, - -111.90424601562015, - -115.25003554329764, - -115.46808531243569, - -113.83117807534535, - -111.47523900673367, - -105.1958870210546, - -98.57987012011016, - -87.82740704761734, - -76.25417630173963, - -63.23574680329659, - -49.734702846509535, - -37.2956706384432, - -25.37466171451628, - -15.666240602636016, - -7.477405519789653, - -0.929720050706874, - 4.42616282280561, - 9.200462224737876, - 13.85401596220827, - 18.272377714323838, - 22.909890582754635, - 26.7122176684646, - 29.750493823130927, - 31.42729690906933, - 31.18118612237335, - 29.619080938400018, - 25.973061417261164, - 21.719497888175415, - 16.734175412863355, - 11.968334873559495, - 7.822259105968601, - 4.328785519671234, - 1.7298080499776085, - -0.317842703253817, - -2.05163494146821, - -3.6388105253553467, - -5.272303902918864, - -6.968392269665665, - -8.463978671044691, - -9.804330888961708, - -10.458111430097523, - -10.670252725994182, - -10.276102026054856, - -9.514765384279746, - -8.719743731011038, - -7.872422245395809, - -7.457845624477438, - -7.186747381045603, - -7.200770618854223, - -7.177890013258323, - -6.871809603850388, - -6.324009199982825, - -5.247967895740112, - -4.003696052442921, - -2.6193344548825226, - -1.4310381254568798, - -0.6725126339740901, - -0.3876572170848854, - -0.5668799414616394, - -0.9926762604181639, - -1.4263526837518763, - -1.5792063785169435, - -1.2911486718085334, - -0.47159817763221473 - ], - "pressure:J16:branch8_seg1": [ - -24258.616159039113, - -35681.75189674217, - -29556.280498807108, - -22862.38081180941, - -15108.862070148714, - -6438.685434448808, - 5060.578167177183, - 20906.06422893315, - 42584.470431796435, - 73243.47656531936, - 110264.42164708264, - 158243.92921346804, - 209703.7121277281, - 267565.25139333145, - 325917.19970686274, - 376929.745238818, - 430049.6576980826, - 464386.50038833177, - 497464.5405486363, - 511425.7255106788, - 512554.735187772, - 505822.94268484577, - 479042.67949092755, - 447352.78429699375, - 396381.198439546, - 338116.386706181, - 270160.7138775876, - 195510.08588554934, - 117995.1586600971, - 40986.17619165843, - -35727.60253778939, - -102069.4111446272, - -165218.8123103829, - -216932.54769511486, - -257941.44744183135, - -298082.00677709235, - -322701.10352149414, - -350902.18685405276, - -364680.39213695895, - -375277.9599544316, - -379286.8336541596, - -371430.77662933856, - -360389.2760922044, - -332694.14237850346, - -303638.18277856667, - -264767.62196626316, - -225918.4037100015, - -187907.43864443837, - -150973.8025911574, - -121025.86010158007, - -94169.06361593297, - -72298.6778590515, - -53368.90114065286, - -35340.513970135886, - -17189.083434521664, - 1103.10842493611, - 20758.01779187454, - 37288.70231109205, - 52168.065275479814, - 61091.473025502346, - 64284.59297683846, - 62052.057041224536, - 52371.610704564606, - 40969.263466114324, - 25768.3832300532, - 11694.7180565499, - -1060.5452292772618, - -11796.603613782243, - -19766.927741162002, - -26441.752146937546, - -32458.63254570528, - -38262.00429424077, - -44623.330868276964, - -51176.91929611481, - -57301.81523867543, - -62880.344568465815, - -65951.5232367784, - -67844.10278225476, - -67169.90987371352, - -65693.32711677326, - -63835.254745117614, - -61916.76227242971, - -61642.58474051134, - -61546.35662774455, - -62574.38332627942, - -63068.069928726174, - -62602.70344243441, - -61063.1146827461, - -57602.97712432361, - -53517.246702092394, - -48836.651771606776, - -44914.31233162952, - -42412.56037346712, - -41575.15215912394, - -42285.79279924434, - -43731.97827065768, - -45101.18062825058, - -45312.78179679204, - -43944.88381474038, - -24258.616159039113 - ], - "flow:branch8_seg1:J17": [ - -0.49654840245872983, - 0.7390564157129732, - 2.2960211771127015, - 3.979425784196263, - 5.8611929833216285, - 7.929105362013262, - 10.539794379074895, - 14.264120531621803, - 19.264764051742798, - 26.545198948843712, - 35.41313737799537, - 46.659648296729145, - 59.12479489134111, - 72.31798912077188, - 86.0008314245744, - 97.03236475335574, - 108.02949086733004, - 114.23855865822105, - 118.88441225509116, - 119.4019706114982, - 115.37130558561458, - 110.05850032585194, - 99.05709416007159, - 87.11175362096122, - 70.84884357836245, - 52.52437574007933, - 32.873385960581366, - 11.546191175324623, - -9.764147606660844, - -30.376399475251855, - -50.097146944483775, - -66.77927603703137, - -81.39202196171223, - -93.25400053656583, - -101.14900419123163, - -108.67496678706141, - -111.74131889197639, - -115.10941583802088, - -115.41033986147478, - -113.72941472099183, - -111.52387999656634, - -105.22686247116725, - -98.70776476994183, - -88.01386670920562, - -76.42751856906223, - -63.487301752139764, - -49.95633644515407, - -37.53642714521149, - -25.58396925385671, - -15.833832463728461, - -7.618853162654485, - -1.050017386683419, - 4.3155207886778415, - 9.084011901081837, - 13.746210823104839, - 18.156308197939666, - 22.799870243375366, - 26.622743023775055, - 29.66380983386749, - 31.398780537464344, - 31.169369319248005, - 29.661977235213755, - 26.043532487070202, - 21.79839036838329, - 16.8247956728348, - 12.046171908665478, - 7.8952390023916745, - 4.387043266016117, - 1.77421275332414, - -0.2818589706744305, - -2.0176577579923807, - -3.603617505671264, - -5.229608266833571, - -6.93078747107862, - -8.42594090317946, - -9.778776826829251, - -10.445702585210478, - -10.663492818534934, - -10.285685972656832, - -9.522271125712392, - -8.73335523014802, - -7.880128049121117, - -7.4590701637482315, - -7.183356886456398, - -7.193306222798154, - -7.178405424211745, - -6.875709854041879, - -6.341838676266617, - -5.270482069789261, - -4.031464621016263, - -2.6462699947959707, - -1.4497740463729212, - -0.6833298056717689, - -0.38789979407795394, - -0.5596881521908831, - -0.9830823773073845, - -1.4200270510048363, - -1.5827431868901576, - -1.305310758017356, - -0.49654840245872983 - ], - "pressure:branch8_seg1:J17": [ - -24891.081877436067, - -36585.80206566663, - -30647.45598033959, - -24060.885607254702, - -16512.737392894076, - -8045.505985892795, - 2739.7480012146775, - 17857.56388719858, - 38153.48593959858, - 67296.10492668847, - 103028.09080570338, - 148665.61825919125, - 199761.7544243604, - 255493.6367926708, - 314250.59487765, - 365411.7660479112, - 418101.0752116179, - 454572.7687491349, - 486920.3951967495, - 504264.6552474561, - 505981.1128115625, - 502130.192729565, - 477327.1474847791, - 447655.4355647685, - 400496.63618339354, - 344118.28650758485, - 280040.4622386129, - 207565.55997839948, - 132146.23066116346, - 56366.46309236079, - -19170.317804017457, - -86269.91394533572, - -148682.2588364928, - -202737.74697139065, - -244603.52358018365, - -286189.49837595865, - -312709.994049198, - -341095.8072184944, - -358247.797504638, - -368957.28106050985, - -376774.82640481374, - -370069.3493780729, - -361401.7243282763, - -336649.81331079797, - -307713.32768792077, - -271658.3074454149, - -232282.44265686104, - -194697.77969776827, - -157160.49004803255, - -125902.41124811849, - -98531.3923153663, - -75916.24782487893, - -56583.24955985927, - -38542.52199396086, - -20233.50071457175, - -2116.5859173806775, - 17434.26250654498, - 34541.467661640876, - 49484.44825893749, - 59892.360863002345, - 63691.452056368435, - 62755.88511013908, - 54101.55531092876, - 42872.73265062127, - 28318.699484310724, - 13947.019021065398, - 1082.8307171191311, - -10035.333894929738, - -18453.821718875723, - -25322.380835301516, - -31375.158226294385, - -37151.97570811639, - -43326.6412880539, - -49948.36784492151, - -56081.52825115072, - -61877.91835253971, - -65368.39195530328, - -67406.65912598924, - -67265.1823873758, - -65798.30522238971, - -64098.24921272055, - -62096.073984419294, - -61550.792517308364, - -61404.259265248154, - -62261.32394537547, - -62949.59265152606, - -62616.40417538381, - -61382.50086054017, - -58160.656823018006, - -54213.13528173229, - -49582.07179301438, - -45475.13477546918, - -42741.65514769824, - -41593.11485152962, - -42054.84009331762, - -43405.2102325376, - -44832.920363369296, - -45304.647823507235, - -44226.11014619087, - -24891.081877436067 - ], - "flow:J17:branch8_seg2": [ - -0.49654840245872983, - 0.7390564157129732, - 2.2960211771127015, - 3.979425784196263, - 5.8611929833216285, - 7.929105362013262, - 10.539794379074895, - 14.264120531621803, - 19.264764051742798, - 26.545198948843712, - 35.41313737799537, - 46.659648296729145, - 59.12479489134111, - 72.31798912077188, - 86.0008314245744, - 97.03236475335574, - 108.02949086733004, - 114.23855865822105, - 118.88441225509116, - 119.4019706114982, - 115.37130558561458, - 110.05850032585194, - 99.05709416007159, - 87.11175362096122, - 70.84884357836245, - 52.52437574007933, - 32.873385960581366, - 11.546191175324623, - -9.764147606660844, - -30.376399475251855, - -50.097146944483775, - -66.77927603703137, - -81.39202196171223, - -93.25400053656583, - -101.14900419123163, - -108.67496678706141, - -111.74131889197639, - -115.10941583802088, - -115.41033986147478, - -113.72941472099183, - -111.52387999656634, - -105.22686247116725, - -98.70776476994183, - -88.01386670920562, - -76.42751856906223, - -63.487301752139764, - -49.95633644515407, - -37.53642714521149, - -25.58396925385671, - -15.833832463728461, - -7.618853162654485, - -1.050017386683419, - 4.3155207886778415, - 9.084011901081837, - 13.746210823104839, - 18.156308197939666, - 22.799870243375366, - 26.622743023775055, - 29.66380983386749, - 31.398780537464344, - 31.169369319248005, - 29.661977235213755, - 26.043532487070202, - 21.79839036838329, - 16.8247956728348, - 12.046171908665478, - 7.8952390023916745, - 4.387043266016117, - 1.77421275332414, - -0.2818589706744305, - -2.0176577579923807, - -3.603617505671264, - -5.229608266833571, - -6.93078747107862, - -8.42594090317946, - -9.778776826829251, - -10.445702585210478, - -10.663492818534934, - -10.285685972656832, - -9.522271125712392, - -8.73335523014802, - -7.880128049121117, - -7.4590701637482315, - -7.183356886456398, - -7.193306222798154, - -7.178405424211745, - -6.875709854041879, - -6.341838676266617, - -5.270482069789261, - -4.031464621016263, - -2.6462699947959707, - -1.4497740463729212, - -0.6833298056717689, - -0.38789979407795394, - -0.5596881521908831, - -0.9830823773073845, - -1.4200270510048363, - -1.5827431868901576, - -1.305310758017356, - -0.49654840245872983 - ], - "pressure:J17:branch8_seg2": [ - -24891.081877436067, - -36585.80206566663, - -30647.45598033959, - -24060.885607254702, - -16512.737392894076, - -8045.505985892795, - 2739.7480012146775, - 17857.56388719858, - 38153.48593959858, - 67296.10492668847, - 103028.09080570338, - 148665.61825919125, - 199761.7544243604, - 255493.6367926708, - 314250.59487765, - 365411.7660479112, - 418101.0752116179, - 454572.7687491349, - 486920.3951967495, - 504264.6552474561, - 505981.1128115625, - 502130.192729565, - 477327.1474847791, - 447655.4355647685, - 400496.63618339354, - 344118.28650758485, - 280040.4622386129, - 207565.55997839948, - 132146.23066116346, - 56366.46309236079, - -19170.317804017457, - -86269.91394533572, - -148682.2588364928, - -202737.74697139065, - -244603.52358018365, - -286189.49837595865, - -312709.994049198, - -341095.8072184944, - -358247.797504638, - -368957.28106050985, - -376774.82640481374, - -370069.3493780729, - -361401.7243282763, - -336649.81331079797, - -307713.32768792077, - -271658.3074454149, - -232282.44265686104, - -194697.77969776827, - -157160.49004803255, - -125902.41124811849, - -98531.3923153663, - -75916.24782487893, - -56583.24955985927, - -38542.52199396086, - -20233.50071457175, - -2116.5859173806775, - 17434.26250654498, - 34541.467661640876, - 49484.44825893749, - 59892.360863002345, - 63691.452056368435, - 62755.88511013908, - 54101.55531092876, - 42872.73265062127, - 28318.699484310724, - 13947.019021065398, - 1082.8307171191311, - -10035.333894929738, - -18453.821718875723, - -25322.380835301516, - -31375.158226294385, - -37151.97570811639, - -43326.6412880539, - -49948.36784492151, - -56081.52825115072, - -61877.91835253971, - -65368.39195530328, - -67406.65912598924, - -67265.1823873758, - -65798.30522238971, - -64098.24921272055, - -62096.073984419294, - -61550.792517308364, - -61404.259265248154, - -62261.32394537547, - -62949.59265152606, - -62616.40417538381, - -61382.50086054017, - -58160.656823018006, - -54213.13528173229, - -49582.07179301438, - -45475.13477546918, - -42741.65514769824, - -41593.11485152962, - -42054.84009331762, - -43405.2102325376, - -44832.920363369296, - -45304.647823507235, - -44226.11014619087, - -24891.081877436067 - ], - "flow:branch9_seg0:J18": [ - 0.7748577122409075, - 4.307582012324162, - 8.23587633621329, - 12.419814709540617, - 16.906511483635416, - 22.291435580303148, - 29.78788895795857, - 40.13376031969607, - 55.04765114797455, - 74.18946344986051, - 98.22588251864588, - 125.78210521971745, - 155.130381992961, - 185.42373169360184, - 211.3231886817003, - 234.1581315188752, - 249.17731749016554, - 258.14167553725923, - 259.31471200590954, - 250.89215737670528, - 236.91429589273199, - 213.78952945837094, - 185.89691894778835, - 150.92772139334537, - 110.9298941246515, - 67.48567849575568, - 21.187376543312386, - -25.705244968569104, - -70.98018665718912, - -113.52971763513182, - -150.41871671221614, - -181.54965397198524, - -206.82845896572215, - -223.85684674296985, - -237.10109844023384, - -243.6611978258652, - -248.03427009097, - -248.1328383369942, - -244.01221343349886, - -237.56488588936236, - -224.6971390394248, - -208.78903959263596, - -186.22257024623286, - -159.92566598335864, - -130.90866793796627, - -100.7331219522311, - -72.37584078542538, - -46.32665136353286, - -24.689354141226694, - -7.571184116663723, - 5.437059068564895, - 15.53406394202817, - 23.989888593829985, - 32.29677803955939, - 40.59192402847233, - 49.46923711227859, - 57.57298568627669, - 64.08571070775828, - 67.95564694057722, - 67.71782403079695, - 63.96144877192116, - 55.9888228960143, - 45.66111503983429, - 34.051690498662644, - 22.781393345276623, - 13.028855959415496, - 5.2380855858032085, - -0.3989982918202037, - -4.319033350205199, - -7.288018634237251, - -9.978288938601125, - -12.83372074493961, - -16.05569485887082, - -19.156566262700814, - -21.946355304316935, - -23.56270590717917, - -23.946585475496455, - -23.01626293172999, - -21.07556038730534, - -18.87374158053065, - -16.698421335545437, - -15.295883585828134, - -14.626420331672298, - -14.665496666425046, - -14.888314836792977, - -14.631326135630433, - -13.668906075284983, - -11.597949495610495, - -8.804294710612025, - -5.619606998647437, - -2.7322368327143502, - -0.7449908473355118, - 0.03776171158115489, - -0.37271835196174363, - -1.5651726068079461, - -2.9263860452329484, - -3.7437500534662296, - -3.5047162671127703, - -1.97713348337933, - 0.7748577122409075 - ], - "pressure:branch9_seg0:J18": [ - -14368.70930510718, - -22619.330722052317, - -14845.890002855245, - -5970.293236273468, - 3645.1189661817916, - 18029.736897087834, - 38372.02950722087, - 67045.13734643495, - 107156.5932602176, - 152937.7999478611, - 214240.34037387284, - 273336.7514766489, - 342972.71647597686, - 404978.9875523199, - 453165.61418260983, - 504113.3948770653, - 523575.84431310446, - 554039.9703558437, - 552632.9947311383, - 542730.0405550777, - 518723.5860675092, - 471974.6322552913, - 423586.39819706243, - 352247.1978640025, - 279661.9474158383, - 193791.09669251565, - 105251.28060274049, - 13391.437115532834, - -68785.061910908, - -150065.96135023958, - -209660.03231206242, - -270990.7165070794, - -312395.7395660172, - -341531.9483623612, - -369894.1614944709, - -377087.5089553992, - -398951.19841417467, - -398111.76457581087, - -402893.25006666075, - -392614.4391810096, - -371527.5741806395, - -343733.66252748284, - -297630.46041286684, - -259613.94861355273, - -209140.93843217753, - -169516.72333489734, - -127746.95182575202, - -93745.92409668954, - -69398.65467585076, - -49962.638035270385, - -36716.037379730966, - -23769.615062055298, - -9476.363591382198, - 7193.586542335936, - 24916.0453262377, - 44682.34688296292, - 58509.19312835694, - 71557.43714443238, - 74043.69798313922, - 71200.67084510505, - 59829.973609393186, - 41102.67386437282, - 23877.827377059155, - 3983.442179444118, - -9773.223378787114, - -21746.16627035791, - -29587.057367481273, - -34515.77703720155, - -38307.61207246767, - -42370.62836241569, - -47167.12330623869, - -53724.50367588884, - -60444.74095269444, - -66459.34684020645, - -71053.10124008739, - -71566.11425804904, - -71405.4015353152, - -67559.4237313532, - -64650.70769455523, - -61308.48972715693, - -59125.321177706945, - -59715.34157648922, - -60446.84894242492, - -63078.575468535506, - -63734.16648082477, - -62799.613028652115, - -59665.81874355149, - -54104.139756506374, - -48344.15237192355, - -42737.295811148615, - -39244.76138522902, - -38205.685196854625, - -39525.409835283644, - -42371.75515634278, - -45420.51029727968, - -47389.34946874149, - -46790.99186478971, - -43760.00675682981, - -37993.51560716307, - -14368.70930510718 - ], - "flow:J18:branch9_seg1": [ - 0.7748577122409075, - 4.307582012324162, - 8.23587633621329, - 12.419814709540617, - 16.906511483635416, - 22.291435580303148, - 29.78788895795857, - 40.13376031969607, - 55.04765114797455, - 74.18946344986051, - 98.22588251864588, - 125.78210521971745, - 155.130381992961, - 185.42373169360184, - 211.3231886817003, - 234.1581315188752, - 249.17731749016554, - 258.14167553725923, - 259.31471200590954, - 250.89215737670528, - 236.91429589273199, - 213.78952945837094, - 185.89691894778835, - 150.92772139334537, - 110.9298941246515, - 67.48567849575568, - 21.187376543312386, - -25.705244968569104, - -70.98018665718912, - -113.52971763513182, - -150.41871671221614, - -181.54965397198524, - -206.82845896572215, - -223.85684674296985, - -237.10109844023384, - -243.6611978258652, - -248.03427009097, - -248.1328383369942, - -244.01221343349886, - -237.56488588936236, - -224.6971390394248, - -208.78903959263596, - -186.22257024623286, - -159.92566598335864, - -130.90866793796627, - -100.7331219522311, - -72.37584078542538, - -46.32665136353286, - -24.689354141226694, - -7.571184116663723, - 5.437059068564895, - 15.53406394202817, - 23.989888593829985, - 32.29677803955939, - 40.59192402847233, - 49.46923711227859, - 57.57298568627669, - 64.08571070775828, - 67.95564694057722, - 67.71782403079695, - 63.96144877192116, - 55.9888228960143, - 45.66111503983429, - 34.051690498662644, - 22.781393345276623, - 13.028855959415496, - 5.2380855858032085, - -0.3989982918202037, - -4.319033350205199, - -7.288018634237251, - -9.978288938601125, - -12.83372074493961, - -16.05569485887082, - -19.156566262700814, - -21.946355304316935, - -23.56270590717917, - -23.946585475496455, - -23.01626293172999, - -21.07556038730534, - -18.87374158053065, - -16.698421335545437, - -15.295883585828134, - -14.626420331672298, - -14.665496666425046, - -14.888314836792977, - -14.631326135630433, - -13.668906075284983, - -11.597949495610495, - -8.804294710612025, - -5.619606998647437, - -2.7322368327143502, - -0.7449908473355118, - 0.03776171158115489, - -0.37271835196174363, - -1.5651726068079461, - -2.9263860452329484, - -3.7437500534662296, - -3.5047162671127703, - -1.97713348337933, - 0.7748577122409075 - ], - "pressure:J18:branch9_seg1": [ - -14368.70930510718, - -22619.330722052317, - -14845.890002855245, - -5970.293236273468, - 3645.1189661817916, - 18029.736897087834, - 38372.02950722087, - 67045.13734643495, - 107156.5932602176, - 152937.7999478611, - 214240.34037387284, - 273336.7514766489, - 342972.71647597686, - 404978.9875523199, - 453165.61418260983, - 504113.3948770653, - 523575.84431310446, - 554039.9703558437, - 552632.9947311383, - 542730.0405550777, - 518723.5860675092, - 471974.6322552913, - 423586.39819706243, - 352247.1978640025, - 279661.9474158383, - 193791.09669251565, - 105251.28060274049, - 13391.437115532834, - -68785.061910908, - -150065.96135023958, - -209660.03231206242, - -270990.7165070794, - -312395.7395660172, - -341531.9483623612, - -369894.1614944709, - -377087.5089553992, - -398951.19841417467, - -398111.76457581087, - -402893.25006666075, - -392614.4391810096, - -371527.5741806395, - -343733.66252748284, - -297630.46041286684, - -259613.94861355273, - -209140.93843217753, - -169516.72333489734, - -127746.95182575202, - -93745.92409668954, - -69398.65467585076, - -49962.638035270385, - -36716.037379730966, - -23769.615062055298, - -9476.363591382198, - 7193.586542335936, - 24916.0453262377, - 44682.34688296292, - 58509.19312835694, - 71557.43714443238, - 74043.69798313922, - 71200.67084510505, - 59829.973609393186, - 41102.67386437282, - 23877.827377059155, - 3983.442179444118, - -9773.223378787114, - -21746.16627035791, - -29587.057367481273, - -34515.77703720155, - -38307.61207246767, - -42370.62836241569, - -47167.12330623869, - -53724.50367588884, - -60444.74095269444, - -66459.34684020645, - -71053.10124008739, - -71566.11425804904, - -71405.4015353152, - -67559.4237313532, - -64650.70769455523, - -61308.48972715693, - -59125.321177706945, - -59715.34157648922, - -60446.84894242492, - -63078.575468535506, - -63734.16648082477, - -62799.613028652115, - -59665.81874355149, - -54104.139756506374, - -48344.15237192355, - -42737.295811148615, - -39244.76138522902, - -38205.685196854625, - -39525.409835283644, - -42371.75515634278, - -45420.51029727968, - -47389.34946874149, - -46790.99186478971, - -43760.00675682981, - -37993.51560716307, - -14368.70930510718 - ], - "flow:branch9_seg1:J19": [ - 0.7354514603530747, - 4.2668704229490615, - 8.191624427117295, - 12.371975116123, - 16.855294516615732, - 22.202170119125604, - 29.676435523275597, - 39.940468825563116, - 54.81609898922195, - 73.91769589677762, - 97.90781135085766, - 125.52626757457955, - 154.79332514519248, - 185.14421802572616, - 210.98164622202796, - 233.95561353605947, - 249.0509054520257, - 258.1349516189287, - 259.468874121075, - 250.92652908452075, - 237.1043568950115, - 213.88418956769397, - 186.21529151038303, - 151.329684690496, - 111.34479957358452, - 67.94445145165633, - 21.598776917871906, - -25.28643688040971, - -70.56953800419652, - -113.17807095554316, - -150.16422799148307, - -181.31031868723352, - -206.6992895502853, - -223.60994924876678, - -236.98211150997423, - -243.48149299864428, - -247.99996756222893, - -248.22890354277732, - -244.00603318031304, - -237.7122644248684, - -224.67721248761666, - -208.94991454373323, - -186.43303577613543, - -160.16804868949143, - -131.22687454844313, - -100.94920697601198, - -72.55541614442602, - -46.44088144510203, - -24.778740960790145, - -7.6531399090697425, - 5.351436886533977, - 15.467513229278376, - 23.899724323660138, - 32.21640888704867, - 40.48237780824466, - 49.37820473469322, - 57.520328140687084, - 64.04293647961576, - 67.99387274775528, - 67.74024652046194, - 64.03570420827228, - 56.06469902699185, - 45.75477045744602, - 34.15124281510787, - 22.860443208863234, - 13.079481161659706, - 5.2648701339591915, - -0.38519339590509377, - -4.303877188028462, - -7.263364047898339, - -9.951919419233713, - -12.794607413722725, - -16.027033004535202, - -19.121964875251667, - -21.932806244312687, - -23.563460649367872, - -23.95795299320916, - -23.046530053652653, - -21.09300577545122, - -18.88674384553352, - -16.693200720428308, - -15.287815181906202, - -14.616147119103443, - -14.660578270806646, - -14.895390836390566, - -14.638869888905976, - -13.69196725900712, - -11.618451300795932, - -8.835567704446262, - -5.645763026479126, - -2.7471307441034605, - -0.745700681083682, - 0.05137487784082438, - -0.35438881499628044, - -1.5502461527527045, - -2.921900276684408, - -3.755067616871712, - -3.529302234137069, - -2.011966805578291, - 0.7354514603530747 - ], - "pressure:branch9_seg1:J19": [ - -16531.61847442361, - -25361.432567007883, - -17890.15706890318, - -9399.591622614458, - -173.3925347451977, - 12861.293654200423, - 31291.381008912078, - 56917.307113285526, - 92994.71626863434, - 134929.18952754256, - 191075.5765065214, - 247612.38472918404, - 312612.80018814775, - 372569.8048161268, - 420462.9712437026, - 470178.571187679, - 492366.7601601751, - 522542.76095065195, - 526503.118148099, - 519151.85781960905, - 499246.96539413306, - 458712.7996189365, - 416428.60997969576, - 354359.18232906476, - 289385.5816792755, - 213034.80523855527, - 132804.25886493266, - 48841.9053356068, - -27911.815995859146, - -104733.52226214691, - -164244.41371927652, - -224583.7731357299, - -269238.7313836392, - -301873.38607547747, - -333100.1187216134, - -345571.9701945587, - -370171.71553355234, - -376681.4977358908, - -384453.31706270407, - -380618.9248983324, - -365101.3893839879, - -343181.6919754558, - -304024.665467104, - -269690.9224288524, - -224265.89777883116, - -185034.2179535854, - -143516.47417491954, - -108172.39775505684, - -81366.86093983147, - -59715.00431352041, - -44406.171317861255, - -30235.924568582457, - -15757.092106524464, - 600.1659884344381, - 17787.68213284929, - 36968.34767453953, - 51539.77177492508, - 65092.40442631876, - 70144.75349332197, - 69324.17641361505, - 60617.01062888205, - 44508.4124819734, - 28733.23680315005, - 10086.48307150921, - -4010.5422158695833, - -16548.744679222382, - -25403.136730669456, - -31390.99740502743, - -35875.83043892929, - -40142.398685333035, - -44867.1972071747, - -50954.01439659774, - -57442.600813461046, - -63408.80103223491, - -68309.79242272081, - -69696.71174119032, - -70255.091197615, - -67545.1199474962, - -65003.29809977564, - -61889.953791656415, - -59565.6558750727, - -59613.987676524936, - -59973.5088307917, - -62185.78045331014, - -63060.23764013602, - -62508.77498736639, - -60035.38042109086, - -55239.446675893814, - -49996.74146423221, - -44607.574843345064, - -40810.442507962194, - -39128.51461829701, - -39630.81197910079, - -41758.43526372513, - -44418.626703751885, - -46441.544397108395, - -46398.27574410429, - -44168.48556574113, - -39354.142145715734, - -16531.61847442361 - ], - "flow:J19:branch9_seg2": [ - 0.7354514603530747, - 4.2668704229490615, - 8.191624427117295, - 12.371975116123, - 16.855294516615732, - 22.202170119125604, - 29.676435523275597, - 39.940468825563116, - 54.81609898922195, - 73.91769589677762, - 97.90781135085766, - 125.52626757457955, - 154.79332514519248, - 185.14421802572616, - 210.98164622202796, - 233.95561353605947, - 249.0509054520257, - 258.1349516189287, - 259.468874121075, - 250.92652908452075, - 237.1043568950115, - 213.88418956769397, - 186.21529151038303, - 151.329684690496, - 111.34479957358452, - 67.94445145165633, - 21.598776917871906, - -25.28643688040971, - -70.56953800419652, - -113.17807095554316, - -150.16422799148307, - -181.31031868723352, - -206.6992895502853, - -223.60994924876678, - -236.98211150997423, - -243.48149299864428, - -247.99996756222893, - -248.22890354277732, - -244.00603318031304, - -237.7122644248684, - -224.67721248761666, - -208.94991454373323, - -186.43303577613543, - -160.16804868949143, - -131.22687454844313, - -100.94920697601198, - -72.55541614442602, - -46.44088144510203, - -24.778740960790145, - -7.6531399090697425, - 5.351436886533977, - 15.467513229278376, - 23.899724323660138, - 32.21640888704867, - 40.48237780824466, - 49.37820473469322, - 57.520328140687084, - 64.04293647961576, - 67.99387274775528, - 67.74024652046194, - 64.03570420827228, - 56.06469902699185, - 45.75477045744602, - 34.15124281510787, - 22.860443208863234, - 13.079481161659706, - 5.2648701339591915, - -0.38519339590509377, - -4.303877188028462, - -7.263364047898339, - -9.951919419233713, - -12.794607413722725, - -16.027033004535202, - -19.121964875251667, - -21.932806244312687, - -23.563460649367872, - -23.95795299320916, - -23.046530053652653, - -21.09300577545122, - -18.88674384553352, - -16.693200720428308, - -15.287815181906202, - -14.616147119103443, - -14.660578270806646, - -14.895390836390566, - -14.638869888905976, - -13.69196725900712, - -11.618451300795932, - -8.835567704446262, - -5.645763026479126, - -2.7471307441034605, - -0.745700681083682, - 0.05137487784082438, - -0.35438881499628044, - -1.5502461527527045, - -2.921900276684408, - -3.755067616871712, - -3.529302234137069, - -2.011966805578291, - 0.7354514603530747 - ], - "pressure:J19:branch9_seg2": [ - -16531.61847442361, - -25361.432567007883, - -17890.15706890318, - -9399.591622614458, - -173.3925347451977, - 12861.293654200423, - 31291.381008912078, - 56917.307113285526, - 92994.71626863434, - 134929.18952754256, - 191075.5765065214, - 247612.38472918404, - 312612.80018814775, - 372569.8048161268, - 420462.9712437026, - 470178.571187679, - 492366.7601601751, - 522542.76095065195, - 526503.118148099, - 519151.85781960905, - 499246.96539413306, - 458712.7996189365, - 416428.60997969576, - 354359.18232906476, - 289385.5816792755, - 213034.80523855527, - 132804.25886493266, - 48841.9053356068, - -27911.815995859146, - -104733.52226214691, - -164244.41371927652, - -224583.7731357299, - -269238.7313836392, - -301873.38607547747, - -333100.1187216134, - -345571.9701945587, - -370171.71553355234, - -376681.4977358908, - -384453.31706270407, - -380618.9248983324, - -365101.3893839879, - -343181.6919754558, - -304024.665467104, - -269690.9224288524, - -224265.89777883116, - -185034.2179535854, - -143516.47417491954, - -108172.39775505684, - -81366.86093983147, - -59715.00431352041, - -44406.171317861255, - -30235.924568582457, - -15757.092106524464, - 600.1659884344381, - 17787.68213284929, - 36968.34767453953, - 51539.77177492508, - 65092.40442631876, - 70144.75349332197, - 69324.17641361505, - 60617.01062888205, - 44508.4124819734, - 28733.23680315005, - 10086.48307150921, - -4010.5422158695833, - -16548.744679222382, - -25403.136730669456, - -31390.99740502743, - -35875.83043892929, - -40142.398685333035, - -44867.1972071747, - -50954.01439659774, - -57442.600813461046, - -63408.80103223491, - -68309.79242272081, - -69696.71174119032, - -70255.091197615, - -67545.1199474962, - -65003.29809977564, - -61889.953791656415, - -59565.6558750727, - -59613.987676524936, - -59973.5088307917, - -62185.78045331014, - -63060.23764013602, - -62508.77498736639, - -60035.38042109086, - -55239.446675893814, - -49996.74146423221, - -44607.574843345064, - -40810.442507962194, - -39128.51461829701, - -39630.81197910079, - -41758.43526372513, - -44418.626703751885, - -46441.544397108395, - -46398.27574410429, - -44168.48556574113, - -39354.142145715734, - -16531.61847442361 - ], - "flow:branch10_seg0:J20": [ - 0.3858646146006125, - 1.1441196990492628, - 1.9405497504602507, - 2.7312466987571247, - 3.651493345689668, - 4.676280036506332, - 6.366274110674538, - 8.558554362692464, - 11.881245089040288, - 16.14974877343718, - 20.97949140292027, - 27.250702692561752, - 32.62283460588805, - 39.32064068949982, - 44.03663840264068, - 48.22053256428075, - 51.603260740624, - 52.01159213490062, - 53.108820273285865, - 49.93449587399307, - 47.60358582059499, - 42.32156595920732, - 36.317962937661015, - 29.33402380870659, - 20.14989738441683, - 11.68406612763969, - 1.641075761334999, - -7.8268079164307505, - -17.132793655342486, - -25.516937296301098, - -33.03969182472008, - -38.336905530830634, - -43.672409572688935, - -46.05005326622891, - -48.602166772261405, - -49.74391025300122, - -49.80197576115488, - -50.49304455513689, - -48.23802581001843, - -47.73426529731565, - -44.07172640875173, - -40.938044885680306, - -36.243760547973, - -29.922874570238857, - -24.97520118358743, - -18.109453415366072, - -13.344335174517477, - -8.181026694755147, - -4.2578381091666815, - -1.4300677815761824, - 1.0425061198514725, - 2.805534973223233, - 4.512290642129835, - 6.352504036210683, - 8.158770973807888, - 10.102184680437931, - 11.949727888740956, - 12.961398007727123, - 13.925887005244107, - 13.344905792593977, - 12.599952987847214, - 10.735349260939795, - 8.40805010118714, - 6.335830122178857, - 3.943401519771662, - 2.367627478023932, - 0.9202903821257712, - -0.007124419280414099, - -0.6573358251815348, - -1.237103973429373, - -1.8328698830109036, - -2.4577649350282513, - -3.2417588488017657, - -3.876424690511772, - -4.464510334524442, - -4.762836010336266, - -4.654897786056072, - -4.509832667223032, - -3.9284476615482475, - -3.594216553949811, - -3.156124310067824, - -2.9503557860837453, - -2.973902368713895, - -2.971352599987198, - -3.1217659100289805, - -2.960745690484096, - -2.7339114163466625, - -2.2097915048882597, - -1.566665221173415, - -0.9264300728834037, - -0.34401508964658173, - -0.05746663662075995, - 0.0037521498980908263, - -0.1862511805935894, - -0.4837166416310968, - -0.7482875546048731, - -0.8587515440342239, - -0.6833834945928815, - -0.27456601086734217, - 0.3858646146006125 - ], - "pressure:branch10_seg0:J20": [ - -19080.36644630378, - -28594.30640999568, - -21273.101821413828, - -13733.74234350178, - -4725.724445261442, - 5468.927386619166, - 22447.912793058687, - 43596.03710784149, - 76399.2781039155, - 117154.24457928463, - 164354.28022545372, - 226222.82129629946, - 279474.5936014541, - 350210.92826953303, - 400268.6731076742, - 452438.11296397477, - 495364.0783554856, - 514970.77168516803, - 542530.1784218589, - 528337.7133636059, - 528348.2647328909, - 491996.1622018363, - 455665.0434849053, - 402254.48425937636, - 329547.1804161898, - 262058.65006924164, - 174311.61632374025, - 92064.62639405225, - 6626.2815935511535, - -72189.50929181115, - -145377.52719408742, - -200112.70996126477, - -259301.44976281488, - -289619.47710216866, - -328371.65523117594, - -349145.88976896263, - -366039.1852705073, - -385818.2471656452, - -378979.094104805, - -392849.56143885525, - -369938.94908629096, - -360422.4909195725, - -328364.2369395368, - -286060.69559626764, - -254971.85470167093, - -202467.23768071606, - -171669.2334609124, - -130893.17793746146, - -102580.25732600394, - -80601.54640916518, - -60650.26855841681, - -45768.85161763705, - -30276.677901454375, - -12526.619044034558, - 4836.2286378463805, - 24702.189019504425, - 43375.26684066977, - 55260.214890977986, - 68151.35096317453, - 65898.317710214, - 64986.12308313415, - 51693.441584387714, - 36017.21561325258, - 21564.282629488058, - 3548.282176148581, - -7202.391863522445, - -18376.706974713907, - -25045.857576635357, - -30212.253452835394, - -35073.61575425026, - -40414.85645185144, - -46112.37377073998, - -53617.17638957455, - -59513.17202206925, - -65667.53093024406, - -68867.78679702771, - -68966.78974667404, - -69004.99856772649, - -64830.3424047936, - -63601.129944480264, - -60589.985886918425, - -60137.57195432641, - -61154.85186287024, - -61931.01162177946, - -64017.46119101169, - -63025.71779064268, - -61872.682027771974, - -57579.106494788924, - -52722.54428542286, - -47477.087975414564, - -42847.35684645169, - -40667.316544908754, - -40161.933996174455, - -41804.6346875543, - -44163.95250948789, - -46217.4061841039, - -46911.40855179061, - -45109.1592270087, - -41389.11921893223, - -19080.36644630378 - ], - "flow:J20:branch10_seg1": [ - 0.3858646146006125, - 1.1441196990492628, - 1.9405497504602507, - 2.7312466987571247, - 3.651493345689668, - 4.676280036506332, - 6.366274110674538, - 8.558554362692464, - 11.881245089040288, - 16.14974877343718, - 20.97949140292027, - 27.250702692561752, - 32.62283460588805, - 39.32064068949982, - 44.03663840264068, - 48.22053256428075, - 51.603260740624, - 52.01159213490062, - 53.108820273285865, - 49.93449587399307, - 47.60358582059499, - 42.32156595920732, - 36.317962937661015, - 29.33402380870659, - 20.14989738441683, - 11.68406612763969, - 1.641075761334999, - -7.8268079164307505, - -17.132793655342486, - -25.516937296301098, - -33.03969182472008, - -38.336905530830634, - -43.672409572688935, - -46.05005326622891, - -48.602166772261405, - -49.74391025300122, - -49.80197576115488, - -50.49304455513689, - -48.23802581001843, - -47.73426529731565, - -44.07172640875173, - -40.938044885680306, - -36.243760547973, - -29.922874570238857, - -24.97520118358743, - -18.109453415366072, - -13.344335174517477, - -8.181026694755147, - -4.2578381091666815, - -1.4300677815761824, - 1.0425061198514725, - 2.805534973223233, - 4.512290642129835, - 6.352504036210683, - 8.158770973807888, - 10.102184680437931, - 11.949727888740956, - 12.961398007727123, - 13.925887005244107, - 13.344905792593977, - 12.599952987847214, - 10.735349260939795, - 8.40805010118714, - 6.335830122178857, - 3.943401519771662, - 2.367627478023932, - 0.9202903821257712, - -0.007124419280414099, - -0.6573358251815348, - -1.237103973429373, - -1.8328698830109036, - -2.4577649350282513, - -3.2417588488017657, - -3.876424690511772, - -4.464510334524442, - -4.762836010336266, - -4.654897786056072, - -4.509832667223032, - -3.9284476615482475, - -3.594216553949811, - -3.156124310067824, - -2.9503557860837453, - -2.973902368713895, - -2.971352599987198, - -3.1217659100289805, - -2.960745690484096, - -2.7339114163466625, - -2.2097915048882597, - -1.566665221173415, - -0.9264300728834037, - -0.34401508964658173, - -0.05746663662075995, - 0.0037521498980908263, - -0.1862511805935894, - -0.4837166416310968, - -0.7482875546048731, - -0.8587515440342239, - -0.6833834945928815, - -0.27456601086734217, - 0.3858646146006125 - ], - "pressure:J20:branch10_seg1": [ - -19080.36644630378, - -28594.30640999568, - -21273.101821413828, - -13733.74234350178, - -4725.724445261442, - 5468.927386619166, - 22447.912793058687, - 43596.03710784149, - 76399.2781039155, - 117154.24457928463, - 164354.28022545372, - 226222.82129629946, - 279474.5936014541, - 350210.92826953303, - 400268.6731076742, - 452438.11296397477, - 495364.0783554856, - 514970.77168516803, - 542530.1784218589, - 528337.7133636059, - 528348.2647328909, - 491996.1622018363, - 455665.0434849053, - 402254.48425937636, - 329547.1804161898, - 262058.65006924164, - 174311.61632374025, - 92064.62639405225, - 6626.2815935511535, - -72189.50929181115, - -145377.52719408742, - -200112.70996126477, - -259301.44976281488, - -289619.47710216866, - -328371.65523117594, - -349145.88976896263, - -366039.1852705073, - -385818.2471656452, - -378979.094104805, - -392849.56143885525, - -369938.94908629096, - -360422.4909195725, - -328364.2369395368, - -286060.69559626764, - -254971.85470167093, - -202467.23768071606, - -171669.2334609124, - -130893.17793746146, - -102580.25732600394, - -80601.54640916518, - -60650.26855841681, - -45768.85161763705, - -30276.677901454375, - -12526.619044034558, - 4836.2286378463805, - 24702.189019504425, - 43375.26684066977, - 55260.214890977986, - 68151.35096317453, - 65898.317710214, - 64986.12308313415, - 51693.441584387714, - 36017.21561325258, - 21564.282629488058, - 3548.282176148581, - -7202.391863522445, - -18376.706974713907, - -25045.857576635357, - -30212.253452835394, - -35073.61575425026, - -40414.85645185144, - -46112.37377073998, - -53617.17638957455, - -59513.17202206925, - -65667.53093024406, - -68867.78679702771, - -68966.78974667404, - -69004.99856772649, - -64830.3424047936, - -63601.129944480264, - -60589.985886918425, - -60137.57195432641, - -61154.85186287024, - -61931.01162177946, - -64017.46119101169, - -63025.71779064268, - -61872.682027771974, - -57579.106494788924, - -52722.54428542286, - -47477.087975414564, - -42847.35684645169, - -40667.316544908754, - -40161.933996174455, - -41804.6346875543, - -44163.95250948789, - -46217.4061841039, - -46911.40855179061, - -45109.1592270087, - -41389.11921893223, - -19080.36644630378 - ], - "flow:branch10_seg1:J21": [ - 0.380612743284987, - 1.1380524398964305, - 1.9347318809726943, - 2.724019603302957, - 3.6438442014666026, - 4.665707593149744, - 6.349759689942195, - 8.538532778540212, - 11.84824453863487, - 16.11513226133864, - 20.931329254888322, - 27.20360206668641, - 32.57272513845537, - 39.268618612909975, - 44.00434435603828, - 48.166841961300534, - 51.59192071108888, - 51.97752824044738, - 53.11188492857299, - 49.94877451682019, - 47.607962472944145, - 42.366109908207065, - 36.33735663984126, - 29.39132806133744, - 20.203317887044843, - 11.749138590189663, - 1.710490515023677, - -7.759204968528914, - -17.0700108737995, - -25.450779556729934, - -32.99065791056251, - -38.28528450038423, - -43.63626371467492, - -46.031198351591904, - -48.56357504405803, - -49.742183589784055, - -49.76767081904981, - -50.49319871328139, - -48.23635446842347, - -47.73118944513389, - -44.09680124095958, - -40.94076612039841, - -36.28173977032763, - -29.94574759353039, - -25.015238049474725, - -18.1439710906736, - -13.374795337764665, - -8.210970462996011, - -4.274857990358249, - -1.450003602971793, - 1.030017705129503, - 2.79101059606108, - 4.49978790323511, - 6.336875581561592, - 8.145260605457874, - 10.083403967209707, - 11.937806796485319, - 12.950162547396909, - 13.921103261152334, - 13.348566826667266, - 12.60383690195624, - 10.750167497469267, - 8.417306899124453, - 6.352100473303492, - 3.9538453121864037, - 2.378089550274763, - 0.9275839541643001, - -0.003049785363475521, - -0.6531909347169593, - -1.2331852916878108, - -1.8280430899884788, - -2.4523303195479595, - -3.235605012780331, - -3.8722555945109796, - -4.459480365688657, - -4.76230182146019, - -4.653884651640295, - -4.512241863617949, - -3.930803174634425, - -3.5960361637658975, - -3.1582922855429016, - -2.9487563821511453, - -2.9740746553326014, - -2.9690119755384914, - -3.121748828704128, - -2.96204038309859, - -2.7354064160678115, - -2.2146710108307754, - -1.569926406994398, - -0.9312562116688649, - -0.3468231840421054, - -0.05866943726522946, - 0.004246324152074343, - -0.18430615905577927, - -0.48171397610170985, - -0.7469203390044087, - -0.8592550783392457, - -0.6856286618183396, - -0.27884405479987545, - 0.380612743284987 - ], - "pressure:branch10_seg1:J21": [ - -19585.181443756715, - -29233.01760076985, - -21975.935615051014, - -14604.530929555522, - -5748.9446868342775, - 4120.836279441431, - 20383.968013155878, - 40949.36373508414, - 72256.24837561812, - 112142.89132321892, - 157550.71242958313, - 218017.06028471742, - 270000.7143184937, - 338464.75845072774, - 388487.1858246376, - 437250.7265525764, - 480938.7385415548, - 498077.4834839674, - 525940.3584297891, - 512998.5564794319, - 511667.74017393525, - 479516.80200081744, - 443146.7056002268, - 394758.84363945515, - 325817.63083281036, - 262553.06387941656, - 180011.44193486744, - 101770.63330058496, - 20119.690207572265, - -55261.69635871518, - -126980.65726225605, - -180515.23724576717, - -239459.39944424867, - -271793.8981623313, - -309525.8296743162, - -334023.4682993009, - -350260.3332238083, - -373296.96968065575, - -368777.7716668376, - -383512.3205937655, - -365013.73752482067, - -355294.4704481704, - -327404.6662517064, - -285619.7479613134, - -256221.69082339434, - -204656.2656833302, - -173561.52814934377, - -133360.19488349714, - -104132.21443593329, - -82316.30169468689, - -61964.57997397953, - -47178.58578382964, - -31687.996975121798, - -14302.883227187198, - 3066.008556046423, - 22375.242608292087, - 41318.98411554748, - 53241.85477347346, - 66357.51101664647, - 64948.28936616881, - 64032.629584461814, - 51854.904614956184, - 36078.661301213615, - 22241.568207261134, - 4204.710894381216, - -6539.811825132372, - -17727.51344935364, - -24599.81363126222, - -29724.596353693716, - -34539.33243900414, - -39741.973663366225, - -45314.40477112537, - -52642.785423131456, - -58632.565447239554, - -64675.71026702988, - -68213.53563831167, - -68378.63007575859, - -68664.8382223207, - -64656.29353474594, - -63369.50466286152, - -60473.92979455111, - -59742.373845188704, - -60835.49452961334, - -61460.48039236671, - -63652.393790841874, - -62840.86712339355, - -61737.427528409724, - -57783.103219949175, - -52898.925523292986, - -47813.98678390591, - -43090.70207460894, - -40773.52281684281, - -40122.89076023878, - -41604.09246511277, - -43915.67634591906, - -45994.05463916706, - -46833.35481777214, - -45219.82569955484, - -41713.63300902274, - -19585.181443756715 - ], - "flow:J21:branch10_seg2": [ - 0.380612743284987, - 1.1380524398964305, - 1.9347318809726943, - 2.724019603302957, - 3.6438442014666026, - 4.665707593149744, - 6.349759689942195, - 8.538532778540212, - 11.84824453863487, - 16.11513226133864, - 20.931329254888322, - 27.20360206668641, - 32.57272513845537, - 39.268618612909975, - 44.00434435603828, - 48.166841961300534, - 51.59192071108888, - 51.97752824044738, - 53.11188492857299, - 49.94877451682019, - 47.607962472944145, - 42.366109908207065, - 36.33735663984126, - 29.39132806133744, - 20.203317887044843, - 11.749138590189663, - 1.710490515023677, - -7.759204968528914, - -17.0700108737995, - -25.450779556729934, - -32.99065791056251, - -38.28528450038423, - -43.63626371467492, - -46.031198351591904, - -48.56357504405803, - -49.742183589784055, - -49.76767081904981, - -50.49319871328139, - -48.23635446842347, - -47.73118944513389, - -44.09680124095958, - -40.94076612039841, - -36.28173977032763, - -29.94574759353039, - -25.015238049474725, - -18.1439710906736, - -13.374795337764665, - -8.210970462996011, - -4.274857990358249, - -1.450003602971793, - 1.030017705129503, - 2.79101059606108, - 4.49978790323511, - 6.336875581561592, - 8.145260605457874, - 10.083403967209707, - 11.937806796485319, - 12.950162547396909, - 13.921103261152334, - 13.348566826667266, - 12.60383690195624, - 10.750167497469267, - 8.417306899124453, - 6.352100473303492, - 3.9538453121864037, - 2.378089550274763, - 0.9275839541643001, - -0.003049785363475521, - -0.6531909347169593, - -1.2331852916878108, - -1.8280430899884788, - -2.4523303195479595, - -3.235605012780331, - -3.8722555945109796, - -4.459480365688657, - -4.76230182146019, - -4.653884651640295, - -4.512241863617949, - -3.930803174634425, - -3.5960361637658975, - -3.1582922855429016, - -2.9487563821511453, - -2.9740746553326014, - -2.9690119755384914, - -3.121748828704128, - -2.96204038309859, - -2.7354064160678115, - -2.2146710108307754, - -1.569926406994398, - -0.9312562116688649, - -0.3468231840421054, - -0.05866943726522946, - 0.004246324152074343, - -0.18430615905577927, - -0.48171397610170985, - -0.7469203390044087, - -0.8592550783392457, - -0.6856286618183396, - -0.27884405479987545, - 0.380612743284987 - ], - "pressure:J21:branch10_seg2": [ - -19585.181443756715, - -29233.01760076985, - -21975.935615051014, - -14604.530929555522, - -5748.9446868342775, - 4120.836279441431, - 20383.968013155878, - 40949.36373508414, - 72256.24837561812, - 112142.89132321892, - 157550.71242958313, - 218017.06028471742, - 270000.7143184937, - 338464.75845072774, - 388487.1858246376, - 437250.7265525764, - 480938.7385415548, - 498077.4834839674, - 525940.3584297891, - 512998.5564794319, - 511667.74017393525, - 479516.80200081744, - 443146.7056002268, - 394758.84363945515, - 325817.63083281036, - 262553.06387941656, - 180011.44193486744, - 101770.63330058496, - 20119.690207572265, - -55261.69635871518, - -126980.65726225605, - -180515.23724576717, - -239459.39944424867, - -271793.8981623313, - -309525.8296743162, - -334023.4682993009, - -350260.3332238083, - -373296.96968065575, - -368777.7716668376, - -383512.3205937655, - -365013.73752482067, - -355294.4704481704, - -327404.6662517064, - -285619.7479613134, - -256221.69082339434, - -204656.2656833302, - -173561.52814934377, - -133360.19488349714, - -104132.21443593329, - -82316.30169468689, - -61964.57997397953, - -47178.58578382964, - -31687.996975121798, - -14302.883227187198, - 3066.008556046423, - 22375.242608292087, - 41318.98411554748, - 53241.85477347346, - 66357.51101664647, - 64948.28936616881, - 64032.629584461814, - 51854.904614956184, - 36078.661301213615, - 22241.568207261134, - 4204.710894381216, - -6539.811825132372, - -17727.51344935364, - -24599.81363126222, - -29724.596353693716, - -34539.33243900414, - -39741.973663366225, - -45314.40477112537, - -52642.785423131456, - -58632.565447239554, - -64675.71026702988, - -68213.53563831167, - -68378.63007575859, - -68664.8382223207, - -64656.29353474594, - -63369.50466286152, - -60473.92979455111, - -59742.373845188704, - -60835.49452961334, - -61460.48039236671, - -63652.393790841874, - -62840.86712339355, - -61737.427528409724, - -57783.103219949175, - -52898.925523292986, - -47813.98678390591, - -43090.70207460894, - -40773.52281684281, - -40122.89076023878, - -41604.09246511277, - -43915.67634591906, - -45994.05463916706, - -46833.35481777214, - -45219.82569955484, - -41713.63300902274, - -19585.181443756715 - ], - "flow:branch12_seg0:J22": [ - 0.17338719191299862, - 0.8743255676817322, - 1.6419960753584382, - 2.3983372633015447, - 3.288679789400577, - 4.2532767339504245, - 5.722830489147039, - 7.748670005227762, - 10.606842857216177, - 14.604346123560447, - 19.025661195844815, - 24.95119475779898, - 30.304825270462384, - 36.57881445273117, - 41.85209897691653, - 45.648455239557045, - 49.97427213707785, - 50.508755786625464, - 52.14500706688155, - 49.95958708097704, - 47.22622429097386, - 43.50968451536116, - 37.32205022926656, - 31.55808470653042, - 22.90127342695651, - 14.735068135351607, - 5.38016313243887, - -3.9313721873913616, - -12.941792300520616, - -21.236654081761344, - -29.13485404370297, - -34.76711849539783, - -40.45553352566387, - -43.72479804436139, - -46.01977274641911, - -48.46817888572822, - -48.372626480083646, - -49.90180240611689, - -48.3172197904825, - -47.56417049198329, - -45.22738462172984, - -41.7681269874407, - -38.26837037050048, - -32.1525018088941, - -27.37657623993236, - -20.812834803959795, - -15.529598905667276, - -10.515033234678691, - -6.009350636580531, - -2.9651017426575295, - -0.10115269730651914, - 1.966913245715412, - 3.7850923473956595, - 5.642045092221296, - 7.48177962265964, - 9.334039247423428, - 11.312910381381421, - 12.480806244569385, - 13.549622463587372, - 13.394710284512437, - 12.70897042766783, - 11.31721559788673, - 9.059201002936891, - 7.155920700036151, - 4.757498875231867, - 3.011162046772065, - 1.5043262024518507, - 0.3761277373237811, - -0.33184844790878293, - -0.9834897157715426, - -1.6089519444335136, - -2.2317522575986453, - -2.974889417257966, - -3.6475892878010434, - -4.2170305757409245, - -4.644718630156114, - -4.618940124787674, - -4.5656981930829295, - -4.0875046770589, - -3.715944874418263, - -3.3292541389281713, - -3.0177011526779727, - -3.036950608177811, - -2.9742553098110323, - -3.103088683887442, - -3.0093879919075643, - -2.7830776588114143, - -2.3931995671699298, - -1.7631147050171319, - -1.1719480669605635, - -0.5642230984122856, - -0.19327601034073005, - -0.05808688118623102, - -0.1529591147485634, - -0.40712773922859574, - -0.659943797832184, - -0.810440777407783, - -0.7142614464002285, - -0.3969864666366675, - 0.17338719191299862 - ], - "pressure:branch12_seg0:J22": [ - -20532.571912380565, - -30510.99229953896, - -23473.940313168998, - -16307.996770112219, - -7594.14848968409, - 2043.5783353134566, - 17378.265160768362, - 36997.23029752594, - 66088.72352461971, - 104417.00091699824, - 147616.78899178782, - 206798.61314986952, - 257969.49395974065, - 324484.3406397855, - 376248.3565389962, - 422243.3056152776, - 471372.7782075586, - 489229.3569829438, - 520610.28456914914, - 511624.73004174687, - 507503.96611064783, - 482318.9246609175, - 446253.87870112684, - 405355.3889893202, - 338912.61978142394, - 277686.5161553528, - 197097.68598738345, - 120415.05018166397, - 41699.667995578624, - -32257.66489632851, - -105884.48752078183, - -161065.9748519712, - -222785.23388328357, - -258152.50033514568, - -294016.6299816551, - -325055.0828391939, - -341541.409186257, - -370179.26668528665, - -368519.72330160276, - -382435.9808406369, - -368471.55599084875, - -358418.0957924137, - -337236.8533330329, - -296869.60346845206, - -270017.02120211115, - -218384.4187857751, - -184444.81996171607, - -145585.76330726765, - -113287.63056564677, - -91484.52953812674, - -68440.94047896625, - -51309.88355289359, - -35051.58227117376, - -17351.815673461344, - -417.5361734944378, - 18518.894692568105, - 38145.31498814157, - 50909.54668913028, - 64801.60211827505, - 64882.30941767072, - 64272.365884949475, - 54440.45676111122, - 39138.768375413514, - 26913.57354385158, - 8779.281956501134, - -3016.7598516346584, - -14525.170638867605, - -22578.633955881123, - -27665.558900591426, - -32905.47050831685, - -38427.31037866931, - -44152.75974606715, - -51363.63294816059, - -57311.500121051955, - -63205.90546235879, - -67310.94021090817, - -67929.02043361905, - -68899.86672135282, - -65321.76200898447, - -63879.88236450006, - -61253.10896830318, - -59965.948679866444, - -61236.86924678954, - -61542.24142671562, - -63528.619732862215, - -62937.733770849954, - -61761.42535507856, - -58489.71942692248, - -53799.01610478191, - -49037.11684061536, - -44244.78275077552, - -41528.80558188541, - -40458.93641627337, - -41439.642003873276, - -43555.059512040985, - -45508.37198306164, - -46486.049072728194, - -45186.976931107565, - -42155.4882358742, - -20532.571912380565 - ], - "flow:J22:branch12_seg1": [ - 0.17338719191299862, - 0.8743255676817322, - 1.6419960753584382, - 2.3983372633015447, - 3.288679789400577, - 4.2532767339504245, - 5.722830489147039, - 7.748670005227762, - 10.606842857216177, - 14.604346123560447, - 19.025661195844815, - 24.95119475779898, - 30.304825270462384, - 36.57881445273117, - 41.85209897691653, - 45.648455239557045, - 49.97427213707785, - 50.508755786625464, - 52.14500706688155, - 49.95958708097704, - 47.22622429097386, - 43.50968451536116, - 37.32205022926656, - 31.55808470653042, - 22.90127342695651, - 14.735068135351607, - 5.38016313243887, - -3.9313721873913616, - -12.941792300520616, - -21.236654081761344, - -29.13485404370297, - -34.76711849539783, - -40.45553352566387, - -43.72479804436139, - -46.01977274641911, - -48.46817888572822, - -48.372626480083646, - -49.90180240611689, - -48.3172197904825, - -47.56417049198329, - -45.22738462172984, - -41.7681269874407, - -38.26837037050048, - -32.1525018088941, - -27.37657623993236, - -20.812834803959795, - -15.529598905667276, - -10.515033234678691, - -6.009350636580531, - -2.9651017426575295, - -0.10115269730651914, - 1.966913245715412, - 3.7850923473956595, - 5.642045092221296, - 7.48177962265964, - 9.334039247423428, - 11.312910381381421, - 12.480806244569385, - 13.549622463587372, - 13.394710284512437, - 12.70897042766783, - 11.31721559788673, - 9.059201002936891, - 7.155920700036151, - 4.757498875231867, - 3.011162046772065, - 1.5043262024518507, - 0.3761277373237811, - -0.33184844790878293, - -0.9834897157715426, - -1.6089519444335136, - -2.2317522575986453, - -2.974889417257966, - -3.6475892878010434, - -4.2170305757409245, - -4.644718630156114, - -4.618940124787674, - -4.5656981930829295, - -4.0875046770589, - -3.715944874418263, - -3.3292541389281713, - -3.0177011526779727, - -3.036950608177811, - -2.9742553098110323, - -3.103088683887442, - -3.0093879919075643, - -2.7830776588114143, - -2.3931995671699298, - -1.7631147050171319, - -1.1719480669605635, - -0.5642230984122856, - -0.19327601034073005, - -0.05808688118623102, - -0.1529591147485634, - -0.40712773922859574, - -0.659943797832184, - -0.810440777407783, - -0.7142614464002285, - -0.3969864666366675, - 0.17338719191299862 - ], - "pressure:J22:branch12_seg1": [ - -20532.571912380565, - -30510.99229953896, - -23473.940313168998, - -16307.996770112219, - -7594.14848968409, - 2043.5783353134566, - 17378.265160768362, - 36997.23029752594, - 66088.72352461971, - 104417.00091699824, - 147616.78899178782, - 206798.61314986952, - 257969.49395974065, - 324484.3406397855, - 376248.3565389962, - 422243.3056152776, - 471372.7782075586, - 489229.3569829438, - 520610.28456914914, - 511624.73004174687, - 507503.96611064783, - 482318.9246609175, - 446253.87870112684, - 405355.3889893202, - 338912.61978142394, - 277686.5161553528, - 197097.68598738345, - 120415.05018166397, - 41699.667995578624, - -32257.66489632851, - -105884.48752078183, - -161065.9748519712, - -222785.23388328357, - -258152.50033514568, - -294016.6299816551, - -325055.0828391939, - -341541.409186257, - -370179.26668528665, - -368519.72330160276, - -382435.9808406369, - -368471.55599084875, - -358418.0957924137, - -337236.8533330329, - -296869.60346845206, - -270017.02120211115, - -218384.4187857751, - -184444.81996171607, - -145585.76330726765, - -113287.63056564677, - -91484.52953812674, - -68440.94047896625, - -51309.88355289359, - -35051.58227117376, - -17351.815673461344, - -417.5361734944378, - 18518.894692568105, - 38145.31498814157, - 50909.54668913028, - 64801.60211827505, - 64882.30941767072, - 64272.365884949475, - 54440.45676111122, - 39138.768375413514, - 26913.57354385158, - 8779.281956501134, - -3016.7598516346584, - -14525.170638867605, - -22578.633955881123, - -27665.558900591426, - -32905.47050831685, - -38427.31037866931, - -44152.75974606715, - -51363.63294816059, - -57311.500121051955, - -63205.90546235879, - -67310.94021090817, - -67929.02043361905, - -68899.86672135282, - -65321.76200898447, - -63879.88236450006, - -61253.10896830318, - -59965.948679866444, - -61236.86924678954, - -61542.24142671562, - -63528.619732862215, - -62937.733770849954, - -61761.42535507856, - -58489.71942692248, - -53799.01610478191, - -49037.11684061536, - -44244.78275077552, - -41528.80558188541, - -40458.93641627337, - -41439.642003873276, - -43555.059512040985, - -45508.37198306164, - -46486.049072728194, - -45186.976931107565, - -42155.4882358742, - -20532.571912380565 - ], - "flow:branch12_seg1:J23": [ - 0.139874371560026, - 0.8344715408044131, - 1.6015770449151843, - 2.350441459246439, - 3.2384868892873513, - 4.189700093543366, - 5.613247814910205, - 7.6214107613102, - 10.392205142393912, - 14.374992644665278, - 18.735511278017455, - 24.625007365016188, - 29.98852201878105, - 36.188629017655735, - 41.595376203274746, - 45.29543531365165, - 49.88434623708415, - 50.331050039307854, - 52.101499252256154, - 50.02757890263972, - 47.1549048899825, - 43.817928918492086, - 37.47699375557486, - 31.9408917900521, - 23.269036284293016, - 15.080228184408572, - 5.833312673577035, - -3.473618186480127, - -12.478896195305826, - -20.786433504853402, - -28.801682268584752, - -34.45209795465614, - -40.15576762335425, - -43.54413051121477, - -45.69948453953947, - -48.45261959986392, - -48.18103795324327, - -49.87360417142075, - -48.312191920308564, - -47.4213820142271, - -45.38636458048907, - -41.77756045564948, - -38.523575728955024, - -32.36360666139067, - -27.581033517892674, - -21.044597941124458, - -15.71470707922088, - -10.7493908223417, - -6.176098593232787, - -3.1151731468056574, - -0.18970594278807412, - 1.882862450003921, - 3.6944536771252383, - 5.520265110764745, - 7.378119532730142, - 9.209472979502236, - 11.23267581051553, - 12.417025230650083, - 13.489227036113636, - 13.40656279009616, - 12.713568301011824, - 11.40874804904013, - 9.140839949401693, - 7.262182854966441, - 4.833266835472209, - 3.0704371303981137, - 1.5588545593869847, - 0.4153547600875161, - -0.292700895360878, - -0.9544152582253058, - -1.5820027910362733, - -2.199819573199173, - -2.929414083804709, - -3.6147974857619, - -4.178365958947558, - -4.63718792856893, - -4.617340491767162, - -4.574622740458898, - -4.103040021020562, - -3.721448644681039, - -3.3437334359636135, - -3.014227605376763, - -3.0414963591750093, - -2.962748866337284, - -3.096381063503468, - -3.0155240346286414, - -2.788058784702902, - -2.4262876836009943, - -1.7872997443341143, - -1.204370099586014, - -0.5862482902046139, - -0.20057359019234874, - -0.058090439644006245, - -0.14382256831146975, - -0.39608309249671664, - -0.6505212382796077, - -0.8095578062998475, - -0.7262428431575636, - -0.42244232228815565, - 0.139874371560026 - ], - "pressure:branch12_seg1:J23": [ - -21857.992807662813, - -32132.992121675925, - -25236.734359573267, - -18243.07816929391, - -9848.444983017007, - -642.8313671038665, - 12822.046411925208, - 31577.470110853526, - 57366.11905170472, - 94076.56972276258, - 135213.0835746264, - 190487.30265118953, - 243155.51486247254, - 304630.8887426975, - 361262.19877874793, - 405571.4251773328, - 458281.90900934197, - 478008.23832941114, - 508858.0737189669, - 508042.03643135994, - 500107.55831620685, - 486939.02511048975, - 447944.47537135246, - 413278.3976087938, - 350718.6788732563, - 289376.9090451207, - 216355.4103564573, - 139945.23275733652, - 62933.484649067694, - -11191.17858622258, - -85574.34484805378, - -142858.75019102392, - -202479.4578363515, - -244471.73574886203, - -277482.18535835954, - -315858.8253893346, - -330102.42691757623, - -360400.2265044445, - -364018.56160991377, - -372843.9463636469, - -371390.02289276785, - -356476.7820928769, - -342952.8101010659, - -304253.8313331755, - -274994.81213247345, - -229340.45697825818, - -191745.51317677685, - -155236.91079270816, - -120428.89120637966, - -96642.90892123338, - -72930.04658989498, - -55345.15881069854, - -39233.419395988174, - -22396.93872414136, - -4735.507521887554, - 13337.306911582376, - 33552.57331518232, - 47424.5729241025, - 60767.08439837376, - 64743.70680517761, - 63697.5472258487, - 57228.6493661788, - 42369.151798424944, - 29987.778321160193, - 12378.228588891092, - -467.00928776983153, - -11844.937367964467, - -20649.438312301714, - -26226.636281595223, - -31663.935946719237, - -37040.96967004911, - -42541.87272461619, - -49179.28295900957, - -55661.827795631514, - -61369.403385947684, - -66362.18201624665, - -67528.20153562384, - -68502.45845660284, - -65870.267643124, - -63860.28732801932, - -61725.50018097751, - -59884.63653560948, - -60886.216592721416, - -61005.72085119213, - -62860.06529060502, - -62952.44856096488, - -61811.533776561264, - -59456.59044703493, - -54696.51918326672, - -50183.48340824761, - -45193.884349948494, - -41939.852627960136, - -40574.197652781295, - -41062.09777769808, - -42955.30312765517, - -44943.980759429534, - -46218.84505624007, - -45526.77709414304, - -42978.9284663841, - -21857.992807662813 - ], - "flow:J23:branch12_seg2": [ - 0.139874371560026, - 0.8344715408044131, - 1.6015770449151843, - 2.350441459246439, - 3.2384868892873513, - 4.189700093543366, - 5.613247814910205, - 7.6214107613102, - 10.392205142393912, - 14.374992644665278, - 18.735511278017455, - 24.625007365016188, - 29.98852201878105, - 36.188629017655735, - 41.595376203274746, - 45.29543531365165, - 49.88434623708415, - 50.331050039307854, - 52.101499252256154, - 50.02757890263972, - 47.1549048899825, - 43.817928918492086, - 37.47699375557486, - 31.9408917900521, - 23.269036284293016, - 15.080228184408572, - 5.833312673577035, - -3.473618186480127, - -12.478896195305826, - -20.786433504853402, - -28.801682268584752, - -34.45209795465614, - -40.15576762335425, - -43.54413051121477, - -45.69948453953947, - -48.45261959986392, - -48.18103795324327, - -49.87360417142075, - -48.312191920308564, - -47.4213820142271, - -45.38636458048907, - -41.77756045564948, - -38.523575728955024, - -32.36360666139067, - -27.581033517892674, - -21.044597941124458, - -15.71470707922088, - -10.7493908223417, - -6.176098593232787, - -3.1151731468056574, - -0.18970594278807412, - 1.882862450003921, - 3.6944536771252383, - 5.520265110764745, - 7.378119532730142, - 9.209472979502236, - 11.23267581051553, - 12.417025230650083, - 13.489227036113636, - 13.40656279009616, - 12.713568301011824, - 11.40874804904013, - 9.140839949401693, - 7.262182854966441, - 4.833266835472209, - 3.0704371303981137, - 1.5588545593869847, - 0.4153547600875161, - -0.292700895360878, - -0.9544152582253058, - -1.5820027910362733, - -2.199819573199173, - -2.929414083804709, - -3.6147974857619, - -4.178365958947558, - -4.63718792856893, - -4.617340491767162, - -4.574622740458898, - -4.103040021020562, - -3.721448644681039, - -3.3437334359636135, - -3.014227605376763, - -3.0414963591750093, - -2.962748866337284, - -3.096381063503468, - -3.0155240346286414, - -2.788058784702902, - -2.4262876836009943, - -1.7872997443341143, - -1.204370099586014, - -0.5862482902046139, - -0.20057359019234874, - -0.058090439644006245, - -0.14382256831146975, - -0.39608309249671664, - -0.6505212382796077, - -0.8095578062998475, - -0.7262428431575636, - -0.42244232228815565, - 0.139874371560026 - ], - "pressure:J23:branch12_seg2": [ - -21857.992807662813, - -32132.992121675925, - -25236.734359573267, - -18243.07816929391, - -9848.444983017007, - -642.8313671038665, - 12822.046411925208, - 31577.470110853526, - 57366.11905170472, - 94076.56972276258, - 135213.0835746264, - 190487.30265118953, - 243155.51486247254, - 304630.8887426975, - 361262.19877874793, - 405571.4251773328, - 458281.90900934197, - 478008.23832941114, - 508858.0737189669, - 508042.03643135994, - 500107.55831620685, - 486939.02511048975, - 447944.47537135246, - 413278.3976087938, - 350718.6788732563, - 289376.9090451207, - 216355.4103564573, - 139945.23275733652, - 62933.484649067694, - -11191.17858622258, - -85574.34484805378, - -142858.75019102392, - -202479.4578363515, - -244471.73574886203, - -277482.18535835954, - -315858.8253893346, - -330102.42691757623, - -360400.2265044445, - -364018.56160991377, - -372843.9463636469, - -371390.02289276785, - -356476.7820928769, - -342952.8101010659, - -304253.8313331755, - -274994.81213247345, - -229340.45697825818, - -191745.51317677685, - -155236.91079270816, - -120428.89120637966, - -96642.90892123338, - -72930.04658989498, - -55345.15881069854, - -39233.419395988174, - -22396.93872414136, - -4735.507521887554, - 13337.306911582376, - 33552.57331518232, - 47424.5729241025, - 60767.08439837376, - 64743.70680517761, - 63697.5472258487, - 57228.6493661788, - 42369.151798424944, - 29987.778321160193, - 12378.228588891092, - -467.00928776983153, - -11844.937367964467, - -20649.438312301714, - -26226.636281595223, - -31663.935946719237, - -37040.96967004911, - -42541.87272461619, - -49179.28295900957, - -55661.827795631514, - -61369.403385947684, - -66362.18201624665, - -67528.20153562384, - -68502.45845660284, - -65870.267643124, - -63860.28732801932, - -61725.50018097751, - -59884.63653560948, - -60886.216592721416, - -61005.72085119213, - -62860.06529060502, - -62952.44856096488, - -61811.533776561264, - -59456.59044703493, - -54696.51918326672, - -50183.48340824761, - -45193.884349948494, - -41939.852627960136, - -40574.197652781295, - -41062.09777769808, - -42955.30312765517, - -44943.980759429534, - -46218.84505624007, - -45526.77709414304, - -42978.9284663841, - -21857.992807662813 - ], - "flow:branch13_seg0:J24": [ - 0.5484801638802512, - 2.223134394555716, - 4.011557798137558, - 5.995541619299938, - 8.066733430291562, - 10.654174016257285, - 14.149639293084213, - 19.03603538526605, - 26.038743035764824, - 34.94654099614064, - 46.459108226871955, - 58.92971097855215, - 73.10260741164838, - 86.31732385969461, - 98.34948754679698, - 109.21954511621178, - 115.43910710077147, - 120.8902161261384, - 120.18495569005425, - 116.64240309062212, - 109.63915972092553, - 98.55304814087829, - 85.8062946886693, - 69.38703695538452, - 50.446378981972984, - 29.815786662778535, - 7.8987472439886695, - -14.45185957908964, - -35.29653007638947, - -55.9269878365963, - -72.5908909189356, - -87.965323326757, - -98.81136756558878, - -106.68591409700667, - -112.64898061359098, - -114.88959045435703, - -117.44938425932031, - -116.52484700098175, - -114.4663415047537, - -110.40674536745134, - -103.96616480822105, - -95.76830043515078, - -85.29217029272704, - -72.76559229213174, - -58.83837671688507, - -45.103720501283625, - -31.079175169256956, - -19.62332351511431, - -9.47655318997989, - -1.8366636356921837, - 3.864831241283895, - 8.590841818929865, - 12.281132542182121, - 16.043016011588808, - 19.780781680958714, - 23.752847416913728, - 27.382296102496248, - 30.374525481533116, - 31.804349351984836, - 31.757119559619767, - 29.541797848950882, - 25.922335111026005, - 21.07075128440483, - 15.599789346456735, - 10.558682445255789, - 5.8210610929742055, - 2.3440784210697228, - -0.27523013426357934, - -2.074924402161024, - -3.3828871583275175, - -4.644882493129783, - -5.957580638559644, - -7.402870696509565, - -8.839915989426315, - -10.062517374137647, - -10.772679579895481, - -10.965615450701787, - -10.419934855402628, - -9.61021601842902, - -8.437940981956626, - -7.497486010994473, - -6.860579547543088, - -6.527381065447248, - -6.642281009248893, - -6.648873706667378, - -6.547147517751958, - -6.056726241759937, - -5.0635431330356635, - -3.797568785550623, - -2.345941445053331, - -1.0214227517318668, - -0.15304658913727093, - 0.20392430417356291, - -0.02287957381993973, - -0.5899183003320038, - -1.2208933743941974, - -1.5799825959879563, - -1.46408843264633, - -0.7081392892734191, - 0.5484801638802512 - ], - "pressure:branch13_seg0:J24": [ - -17005.252234077227, - -25619.110596562638, - -17980.625311361677, - -9310.954223364373, - -61.00615753594859, - 12447.620507591924, - 30927.96668802447, - 55507.31757634408, - 92449.85452568643, - 135023.76851229006, - 191205.97489063346, - 250358.71039321297, - 313967.47743665177, - 378315.35249893623, - 427697.88326930045, - 481750.0722715599, - 506946.5208738409, - 538772.2368269284, - 542137.9538679279, - 534240.7909923223, - 518072.9166646216, - 474969.06600496016, - 437333.6532544306, - 369828.61689641234, - 303102.20281450433, - 223252.15360990807, - 138113.33658701644, - 51626.223724301075, - -30563.298453629523, - -111664.74860898573, - -175637.92168877675, - -237484.2028237905, - -284255.6066332271, - -316073.5389710226, - -351035.6397613433, - -361654.38296420936, - -388643.57153081, - -391245.37093230034, - -396404.0391799923, - -394247.03386844246, - -372990.76456816774, - -356794.3696368892, - -314000.10175364965, - -277829.921498175, - -230882.63830084668, - -186361.05694075226, - -145258.41882616558, - -108544.12970390255, - -80393.79101308169, - -59327.01402097821, - -42993.25634885324, - -28787.973207415802, - -15349.495374882292, - 1768.6337931968148, - 17818.015014437082, - 38144.573680051355, - 53310.60484423239, - 66801.5182358861, - 73438.69568908049, - 71288.65702897028, - 64324.93879313502, - 47739.72864535348, - 31396.744883214746, - 12146.813628614995, - -3361.5772920953173, - -16755.349648847863, - -25723.29213994574, - -32230.03031593202, - -36248.60182172338, - -40496.15961940539, - -45214.31229172779, - -50980.485196892696, - -57943.674695828384, - -63676.118509693915, - -69298.5056514295, - -70898.63903691752, - -71443.63540406471, - -68864.32450862286, - -65657.43233525408, - -62521.65706125404, - -59931.83593580538, - -59802.98788241147, - -60257.84980988096, - -62439.9103186911, - -63359.596159318935, - -62941.59401729172, - -60726.45485764549, - -55821.27383854964, - -50761.80883027692, - -44816.649192068486, - -40810.337473666164, - -38747.54275288727, - -39094.64415775702, - -41372.12136373432, - -44198.369509794145, - -46527.619808976146, - -46795.38591085482, - -44677.7062526728, - -39919.93318847982, - -17005.252234077227 - ], - "flow:J24:branch13_seg1": [ - 0.5484801638802512, - 2.223134394555716, - 4.011557798137558, - 5.995541619299938, - 8.066733430291562, - 10.654174016257285, - 14.149639293084213, - 19.03603538526605, - 26.038743035764824, - 34.94654099614064, - 46.459108226871955, - 58.92971097855215, - 73.10260741164838, - 86.31732385969461, - 98.34948754679698, - 109.21954511621178, - 115.43910710077147, - 120.8902161261384, - 120.18495569005425, - 116.64240309062212, - 109.63915972092553, - 98.55304814087829, - 85.8062946886693, - 69.38703695538452, - 50.446378981972984, - 29.815786662778535, - 7.8987472439886695, - -14.45185957908964, - -35.29653007638947, - -55.9269878365963, - -72.5908909189356, - -87.965323326757, - -98.81136756558878, - -106.68591409700667, - -112.64898061359098, - -114.88959045435703, - -117.44938425932031, - -116.52484700098175, - -114.4663415047537, - -110.40674536745134, - -103.96616480822105, - -95.76830043515078, - -85.29217029272704, - -72.76559229213174, - -58.83837671688507, - -45.103720501283625, - -31.079175169256956, - -19.62332351511431, - -9.47655318997989, - -1.8366636356921837, - 3.864831241283895, - 8.590841818929865, - 12.281132542182121, - 16.043016011588808, - 19.780781680958714, - 23.752847416913728, - 27.382296102496248, - 30.374525481533116, - 31.804349351984836, - 31.757119559619767, - 29.541797848950882, - 25.922335111026005, - 21.07075128440483, - 15.599789346456735, - 10.558682445255789, - 5.8210610929742055, - 2.3440784210697228, - -0.27523013426357934, - -2.074924402161024, - -3.3828871583275175, - -4.644882493129783, - -5.957580638559644, - -7.402870696509565, - -8.839915989426315, - -10.062517374137647, - -10.772679579895481, - -10.965615450701787, - -10.419934855402628, - -9.61021601842902, - -8.437940981956626, - -7.497486010994473, - -6.860579547543088, - -6.527381065447248, - -6.642281009248893, - -6.648873706667378, - -6.547147517751958, - -6.056726241759937, - -5.0635431330356635, - -3.797568785550623, - -2.345941445053331, - -1.0214227517318668, - -0.15304658913727093, - 0.20392430417356291, - -0.02287957381993973, - -0.5899183003320038, - -1.2208933743941974, - -1.5799825959879563, - -1.46408843264633, - -0.7081392892734191, - 0.5484801638802512 - ], - "pressure:J24:branch13_seg1": [ - -17005.252234077227, - -25619.110596562638, - -17980.625311361677, - -9310.954223364373, - -61.00615753594859, - 12447.620507591924, - 30927.96668802447, - 55507.31757634408, - 92449.85452568643, - 135023.76851229006, - 191205.97489063346, - 250358.71039321297, - 313967.47743665177, - 378315.35249893623, - 427697.88326930045, - 481750.0722715599, - 506946.5208738409, - 538772.2368269284, - 542137.9538679279, - 534240.7909923223, - 518072.9166646216, - 474969.06600496016, - 437333.6532544306, - 369828.61689641234, - 303102.20281450433, - 223252.15360990807, - 138113.33658701644, - 51626.223724301075, - -30563.298453629523, - -111664.74860898573, - -175637.92168877675, - -237484.2028237905, - -284255.6066332271, - -316073.5389710226, - -351035.6397613433, - -361654.38296420936, - -388643.57153081, - -391245.37093230034, - -396404.0391799923, - -394247.03386844246, - -372990.76456816774, - -356794.3696368892, - -314000.10175364965, - -277829.921498175, - -230882.63830084668, - -186361.05694075226, - -145258.41882616558, - -108544.12970390255, - -80393.79101308169, - -59327.01402097821, - -42993.25634885324, - -28787.973207415802, - -15349.495374882292, - 1768.6337931968148, - 17818.015014437082, - 38144.573680051355, - 53310.60484423239, - 66801.5182358861, - 73438.69568908049, - 71288.65702897028, - 64324.93879313502, - 47739.72864535348, - 31396.744883214746, - 12146.813628614995, - -3361.5772920953173, - -16755.349648847863, - -25723.29213994574, - -32230.03031593202, - -36248.60182172338, - -40496.15961940539, - -45214.31229172779, - -50980.485196892696, - -57943.674695828384, - -63676.118509693915, - -69298.5056514295, - -70898.63903691752, - -71443.63540406471, - -68864.32450862286, - -65657.43233525408, - -62521.65706125404, - -59931.83593580538, - -59802.98788241147, - -60257.84980988096, - -62439.9103186911, - -63359.596159318935, - -62941.59401729172, - -60726.45485764549, - -55821.27383854964, - -50761.80883027692, - -44816.649192068486, - -40810.337473666164, - -38747.54275288727, - -39094.64415775702, - -41372.12136373432, - -44198.369509794145, - -46527.619808976146, - -46795.38591085482, - -44677.7062526728, - -39919.93318847982, - -17005.252234077227 - ], - "flow:branch13_seg1:J25": [ - 0.4703034338241627, - 2.1341550623406786, - 3.92297459459979, - 5.893431250516315, - 7.961176884225932, - 10.47857672660326, - 13.920627333622932, - 18.677908888524662, - 25.58757074912028, - 34.42140136869056, - 45.77160196789028, - 58.36416871246249, - 72.30237537085176, - 85.71255350983259, - 97.70501487224965, - 108.71062967072085, - 115.23647778993303, - 120.61867542438421, - 120.34449458750507, - 116.68767497573837, - 109.9658998563533, - 98.90826501419363, - 86.4116000246423, - 70.17153855608657, - 51.28370245121093, - 30.751260346665422, - 8.811596967305446, - -13.47757296594101, - -34.4405545145468, - -55.05509119205966, - -72.02479274238556, - -87.28813024869247, - -98.42448006781572, - -106.23262656041285, - -112.35665636612895, - -114.66594692727567, - -117.24401912732228, - -116.61562421055181, - -114.38628287623706, - -110.58512226969202, - -104.02389719719399, - -96.14412780524005, - -85.72048218374835, - -73.24217086832421, - -59.47062868234204, - -45.51352243075269, - -31.572079748946354, - -19.915748725787232, - -9.748145522755973, - -2.052116303316339, - 3.703292794809978, - 8.427072667330554, - 12.108100914175749, - 15.865326083024975, - 19.560023942023363, - 23.552164634335554, - 27.245878865854454, - 30.23845447811291, - 31.827683373423692, - 31.762141517360018, - 29.703137733370845, - 26.08570711106506, - 21.269606489892137, - 15.826361415248801, - 10.709337629130895, - 5.958774191044505, - 2.4185781516843847, - -0.22597650640365088, - -2.029337596025866, - -3.3362729372658073, - -4.588105788304963, - -5.878956823269197, - -7.335635944790601, - -8.76503023234282, - -10.024513402579755, - -10.766178091544903, - -10.971642325333272, - -10.47645533664984, - -9.633739764010388, - -8.479286165189128, - -7.50257007988506, - -6.853191680524838, - -6.518664208821764, - -6.617278626363735, - -6.653405250071516, - -6.556011460556205, - -6.09616032317593, - -5.115479407623711, - -3.862896650695757, - -2.4040835591784724, - -1.0612296516770834, - -0.16049762706628093, - 0.22030934728303442, - 0.009601526224237204, - -0.5577677038763066, - -1.2042246013581486, - -1.5930415354839524, - -1.5017082921714469, - -0.7752904728437233, - 0.4703034338241627 - ], - "pressure:branch13_seg1:J25": [ - -18833.920999174054, - -27874.095326367315, - -20469.897394279877, - -11979.553121326127, - -3075.9725182180764, - 8224.804776671916, - 25317.574641300624, - 47041.465776387064, - 81725.01213964054, - 121793.24803473524, - 173863.74592755397, - 231924.1310199464, - 290964.7992241928, - 356502.46721959545, - 407150.682539698, - 464044.5615063333, - 493852.3475755368, - 527264.8514012455, - 532168.621998419, - 528108.1955377633, - 518232.8818627495, - 478654.9036862641, - 449675.2142227468, - 383913.533816486, - 321705.75919029093, - 245575.7002043597, - 163013.87367290404, - 80606.5296314189, - -1830.857323163989, - -83035.99004862242, - -149833.01700785873, - -212323.24925949576, - -261830.78171135738, - -296495.7465925736, - -336778.83061589097, - -349952.3388666183, - -381001.3750552383, - -383634.7729742447, - -390051.8086049678, - -392714.3591584756, - -372008.7256527947, - -365189.53978660103, - -325014.305538332, - -290663.1392143271, - -246144.59248909607, - -198998.04220353413, - -159208.08768525714, - -121424.84328990847, - -90644.00411435033, - -68484.12796060584, - -49289.80730789007, - -33744.68156904575, - -20640.88853500144, - -2942.747599827459, - 11791.841364864102, - 32520.627597819173, - 48331.212249088494, - 62014.59268072752, - 71213.39558432132, - 69871.9945026159, - 66497.7860622418, - 52060.394752002794, - 36841.81506966669, - 18433.02398898502, - 1946.7433949492718, - -12428.32339141739, - -22017.068711827873, - -29804.466911547246, - -34097.72357200875, - -38733.34418269804, - -43534.31910322975, - -48800.03946067575, - -55872.11422339462, - -61309.15187745376, - -67606.48820509583, - -69950.72088437034, - -71028.92007591517, - -69351.6070173301, - -66149.49051037295, - -63313.39936050125, - -60647.27366949839, - -60060.81815662173, - -60299.46405871879, - -62024.48356846998, - -62845.96643813945, - -62809.20248750835, - -61229.314911984715, - -56898.57321656731, - -52526.48811310591, - -46435.19416197493, - -42216.09382771955, - -39461.26201508167, - -39096.2984547225, - -40888.269459974996, - -43380.058885136896, - -45797.223665071906, - -46559.64865594191, - -45056.103224012724, - -41080.32984718747, - -18833.920999174054 - ], - "flow:J25:branch13_seg2": [ - 0.4703034338241627, - 2.1341550623406786, - 3.92297459459979, - 5.893431250516315, - 7.961176884225932, - 10.47857672660326, - 13.920627333622932, - 18.677908888524662, - 25.58757074912028, - 34.42140136869056, - 45.77160196789028, - 58.36416871246249, - 72.30237537085176, - 85.71255350983259, - 97.70501487224965, - 108.71062967072085, - 115.23647778993303, - 120.61867542438421, - 120.34449458750507, - 116.68767497573837, - 109.9658998563533, - 98.90826501419363, - 86.4116000246423, - 70.17153855608657, - 51.28370245121093, - 30.751260346665422, - 8.811596967305446, - -13.47757296594101, - -34.4405545145468, - -55.05509119205966, - -72.02479274238556, - -87.28813024869247, - -98.42448006781572, - -106.23262656041285, - -112.35665636612895, - -114.66594692727567, - -117.24401912732228, - -116.61562421055181, - -114.38628287623706, - -110.58512226969202, - -104.02389719719399, - -96.14412780524005, - -85.72048218374835, - -73.24217086832421, - -59.47062868234204, - -45.51352243075269, - -31.572079748946354, - -19.915748725787232, - -9.748145522755973, - -2.052116303316339, - 3.703292794809978, - 8.427072667330554, - 12.108100914175749, - 15.865326083024975, - 19.560023942023363, - 23.552164634335554, - 27.245878865854454, - 30.23845447811291, - 31.827683373423692, - 31.762141517360018, - 29.703137733370845, - 26.08570711106506, - 21.269606489892137, - 15.826361415248801, - 10.709337629130895, - 5.958774191044505, - 2.4185781516843847, - -0.22597650640365088, - -2.029337596025866, - -3.3362729372658073, - -4.588105788304963, - -5.878956823269197, - -7.335635944790601, - -8.76503023234282, - -10.024513402579755, - -10.766178091544903, - -10.971642325333272, - -10.47645533664984, - -9.633739764010388, - -8.479286165189128, - -7.50257007988506, - -6.853191680524838, - -6.518664208821764, - -6.617278626363735, - -6.653405250071516, - -6.556011460556205, - -6.09616032317593, - -5.115479407623711, - -3.862896650695757, - -2.4040835591784724, - -1.0612296516770834, - -0.16049762706628093, - 0.22030934728303442, - 0.009601526224237204, - -0.5577677038763066, - -1.2042246013581486, - -1.5930415354839524, - -1.5017082921714469, - -0.7752904728437233, - 0.4703034338241627 - ], - "pressure:J25:branch13_seg2": [ - -18833.920999174054, - -27874.095326367315, - -20469.897394279877, - -11979.553121326127, - -3075.9725182180764, - 8224.804776671916, - 25317.574641300624, - 47041.465776387064, - 81725.01213964054, - 121793.24803473524, - 173863.74592755397, - 231924.1310199464, - 290964.7992241928, - 356502.46721959545, - 407150.682539698, - 464044.5615063333, - 493852.3475755368, - 527264.8514012455, - 532168.621998419, - 528108.1955377633, - 518232.8818627495, - 478654.9036862641, - 449675.2142227468, - 383913.533816486, - 321705.75919029093, - 245575.7002043597, - 163013.87367290404, - 80606.5296314189, - -1830.857323163989, - -83035.99004862242, - -149833.01700785873, - -212323.24925949576, - -261830.78171135738, - -296495.7465925736, - -336778.83061589097, - -349952.3388666183, - -381001.3750552383, - -383634.7729742447, - -390051.8086049678, - -392714.3591584756, - -372008.7256527947, - -365189.53978660103, - -325014.305538332, - -290663.1392143271, - -246144.59248909607, - -198998.04220353413, - -159208.08768525714, - -121424.84328990847, - -90644.00411435033, - -68484.12796060584, - -49289.80730789007, - -33744.68156904575, - -20640.88853500144, - -2942.747599827459, - 11791.841364864102, - 32520.627597819173, - 48331.212249088494, - 62014.59268072752, - 71213.39558432132, - 69871.9945026159, - 66497.7860622418, - 52060.394752002794, - 36841.81506966669, - 18433.02398898502, - 1946.7433949492718, - -12428.32339141739, - -22017.068711827873, - -29804.466911547246, - -34097.72357200875, - -38733.34418269804, - -43534.31910322975, - -48800.03946067575, - -55872.11422339462, - -61309.15187745376, - -67606.48820509583, - -69950.72088437034, - -71028.92007591517, - -69351.6070173301, - -66149.49051037295, - -63313.39936050125, - -60647.27366949839, - -60060.81815662173, - -60299.46405871879, - -62024.48356846998, - -62845.96643813945, - -62809.20248750835, - -61229.314911984715, - -56898.57321656731, - -52526.48811310591, - -46435.19416197493, - -42216.09382771955, - -39461.26201508167, - -39096.2984547225, - -40888.269459974996, - -43380.058885136896, - -45797.223665071906, - -46559.64865594191, - -45056.103224012724, - -41080.32984718747, - -18833.920999174054 - ], - "flow:branch14_seg0:J26": [ - 3.125390794119589, - 6.911078348882228, - 10.54517818406051, - 14.317360496392538, - 18.35040892383849, - 23.673831764552457, - 31.786314258004555, - 42.983013300887855, - 59.56857261698087, - 79.41128875914484, - 104.18994456307661, - 130.58169874075816, - 157.30771706693596, - 183.58417130547284, - 201.81025591194057, - 219.22331939367342, - 225.29047248908378, - 228.88943366100463, - 223.26223032894325, - 208.6246420244241, - 191.93787096918214, - 164.3358985278589, - 136.7870522795906, - 100.60033526111837, - 61.663483409832146, - 20.39959703410322, - -22.64359764445005, - -64.60388364635011, - -102.92388998768502, - -138.27403970445312, - -165.6491155101473, - -188.07661265300916, - -204.33676266523594, - -211.47195970847304, - -218.90083291147715, - -217.42119608381236, - -218.8225039991701, - -213.96152997690217, - -205.9367698130473, - -196.7739465196466, - -179.1900757161846, - -161.97800005092103, - -136.20718163015744, - -110.20389007613149, - -82.5582129610792, - -56.002579878386726, - -33.151530044021186, - -13.44491786051032, - 0.590271115275973, - 10.657313308768522, - 17.497697376960602, - 23.134256348319383, - 28.503196028689786, - 35.123422036658575, - 41.913477741043245, - 49.82909908689627, - 55.91082632017352, - 60.04005443798065, - 60.85316377529424, - 57.10926815144803, - 50.66846058099965, - 40.168096849837596, - 29.416237752907747, - 18.39389761901353, - 9.237475729062934, - 2.2137020218635644, - -2.5852755573534942, - -5.3972747339407325, - -7.112546468493024, - -8.681633309999075, - -10.634504235688924, - -13.156645494203449, - -16.163871403155266, - -18.685286875025458, - -20.773104300979817, - -21.09058720217954, - -20.34998272931726, - -18.343450399320382, - -15.81934473968315, - -13.618657838225067, - -11.779074503065479, - -11.293621971143763, - -11.37018566112778, - -12.105247574740241, - -12.462699359217156, - -11.872137760295342, - -10.4357557218186, - -7.6963650802266965, - -4.7146039007952, - -1.6751943575632562, - 0.5024949772712789, - 1.3905944159289816, - 0.9724023228172493, - -0.46098858489160216, - -2.205397339101774, - -3.5519609092783955, - -3.7930416549376567, - -2.680077225570075, - -0.2353837546869269, - 3.125390794119589 - ], - "pressure:branch14_seg0:J26": [ - -13467.3267487509, - -21446.353643093735, - -13522.580049576738, - -4519.680630763887, - 5231.147056079582, - 20037.922906063308, - 41099.04955673794, - 70866.41758090115, - 112605.81573639724, - 160053.92832291877, - 223107.99156939267, - 283219.41660495684, - 353820.54526603833, - 416215.8628051235, - 463583.9726432439, - 513803.57196788845, - 531514.2164343187, - 560103.7156689416, - 555417.9030596422, - 542898.7041418854, - 517113.35573663475, - 467826.1787308478, - 417622.25546184427, - 343607.17930188164, - 269034.01524634403, - 181195.27297800794, - 91185.96986413898, - -1461.3962396949682, - -83849.63528783353, - -164849.1905734656, - -223252.42294810739, - -283324.47128713527, - -322742.0577999568, - -349763.9101325223, - -377179.85229985166, - -382873.1043923963, - -403820.6855113613, - -400836.34604689636, - -404471.6825071481, - -392728.53095901513, - -369742.1399687972, - -340824.3040360414, - -292803.1141198759, - -253289.34646779974, - -201189.6249626296, - -161002.55184076558, - -119538.32043453495, - -86218.18119525292, - -63100.37537448157, - -44925.48255418415, - -32733.392260652527, - -20513.865311149963, - -6556.592105123578, - 10132.132542765801, - 27934.313877761873, - 47896.068544407266, - 61500.68802081087, - 74131.28104784385, - 75577.31666881163, - 71531.02769953942, - 59062.10381881462, - 39162.246516247666, - 21145.494903771007, - 766.6403852656749, - -12965.760168941644, - -24602.487587423046, - -31904.515178849113, - -36219.06506045432, - -39530.51021505043, - -43357.75085615341, - -48107.47482793879, - -54777.16580348262, - -61599.63467365314, - -67598.98448570084, - -72092.00975351005, - -72284.34154333791, - -71741.15111556997, - -67429.42155426569, - -64235.66893692175, - -60802.98858501516, - -58659.42823471229, - -59481.440840442985, - -60450.90132370559, - -63263.97994660302, - -63886.9754159601, - -62792.527953455254, - -59421.93378347583, - -53536.10010144765, - -47550.500114858856, - -41820.935216786726, - -38420.78216128503, - -37643.43699385526, - -39328.70215103366, - -42538.09267167329, - -45818.32762767341, - -47817.03444919761, - -47029.65412382095, - -43653.05226644824, - -37470.225682185, - -13467.3267487509 - ], - "flow:J26:branch14_seg1": [ - 3.125390794119589, - 6.911078348882228, - 10.54517818406051, - 14.317360496392538, - 18.35040892383849, - 23.673831764552457, - 31.786314258004555, - 42.983013300887855, - 59.56857261698087, - 79.41128875914484, - 104.18994456307661, - 130.58169874075816, - 157.30771706693596, - 183.58417130547284, - 201.81025591194057, - 219.22331939367342, - 225.29047248908378, - 228.88943366100463, - 223.26223032894325, - 208.6246420244241, - 191.93787096918214, - 164.3358985278589, - 136.7870522795906, - 100.60033526111837, - 61.663483409832146, - 20.39959703410322, - -22.64359764445005, - -64.60388364635011, - -102.92388998768502, - -138.27403970445312, - -165.6491155101473, - -188.07661265300916, - -204.33676266523594, - -211.47195970847304, - -218.90083291147715, - -217.42119608381236, - -218.8225039991701, - -213.96152997690217, - -205.9367698130473, - -196.7739465196466, - -179.1900757161846, - -161.97800005092103, - -136.20718163015744, - -110.20389007613149, - -82.5582129610792, - -56.002579878386726, - -33.151530044021186, - -13.44491786051032, - 0.590271115275973, - 10.657313308768522, - 17.497697376960602, - 23.134256348319383, - 28.503196028689786, - 35.123422036658575, - 41.913477741043245, - 49.82909908689627, - 55.91082632017352, - 60.04005443798065, - 60.85316377529424, - 57.10926815144803, - 50.66846058099965, - 40.168096849837596, - 29.416237752907747, - 18.39389761901353, - 9.237475729062934, - 2.2137020218635644, - -2.5852755573534942, - -5.3972747339407325, - -7.112546468493024, - -8.681633309999075, - -10.634504235688924, - -13.156645494203449, - -16.163871403155266, - -18.685286875025458, - -20.773104300979817, - -21.09058720217954, - -20.34998272931726, - -18.343450399320382, - -15.81934473968315, - -13.618657838225067, - -11.779074503065479, - -11.293621971143763, - -11.37018566112778, - -12.105247574740241, - -12.462699359217156, - -11.872137760295342, - -10.4357557218186, - -7.6963650802266965, - -4.7146039007952, - -1.6751943575632562, - 0.5024949772712789, - 1.3905944159289816, - 0.9724023228172493, - -0.46098858489160216, - -2.205397339101774, - -3.5519609092783955, - -3.7930416549376567, - -2.680077225570075, - -0.2353837546869269, - 3.125390794119589 - ], - "pressure:J26:branch14_seg1": [ - -13467.3267487509, - -21446.353643093735, - -13522.580049576738, - -4519.680630763887, - 5231.147056079582, - 20037.922906063308, - 41099.04955673794, - 70866.41758090115, - 112605.81573639724, - 160053.92832291877, - 223107.99156939267, - 283219.41660495684, - 353820.54526603833, - 416215.8628051235, - 463583.9726432439, - 513803.57196788845, - 531514.2164343187, - 560103.7156689416, - 555417.9030596422, - 542898.7041418854, - 517113.35573663475, - 467826.1787308478, - 417622.25546184427, - 343607.17930188164, - 269034.01524634403, - 181195.27297800794, - 91185.96986413898, - -1461.3962396949682, - -83849.63528783353, - -164849.1905734656, - -223252.42294810739, - -283324.47128713527, - -322742.0577999568, - -349763.9101325223, - -377179.85229985166, - -382873.1043923963, - -403820.6855113613, - -400836.34604689636, - -404471.6825071481, - -392728.53095901513, - -369742.1399687972, - -340824.3040360414, - -292803.1141198759, - -253289.34646779974, - -201189.6249626296, - -161002.55184076558, - -119538.32043453495, - -86218.18119525292, - -63100.37537448157, - -44925.48255418415, - -32733.392260652527, - -20513.865311149963, - -6556.592105123578, - 10132.132542765801, - 27934.313877761873, - 47896.068544407266, - 61500.68802081087, - 74131.28104784385, - 75577.31666881163, - 71531.02769953942, - 59062.10381881462, - 39162.246516247666, - 21145.494903771007, - 766.6403852656749, - -12965.760168941644, - -24602.487587423046, - -31904.515178849113, - -36219.06506045432, - -39530.51021505043, - -43357.75085615341, - -48107.47482793879, - -54777.16580348262, - -61599.63467365314, - -67598.98448570084, - -72092.00975351005, - -72284.34154333791, - -71741.15111556997, - -67429.42155426569, - -64235.66893692175, - -60802.98858501516, - -58659.42823471229, - -59481.440840442985, - -60450.90132370559, - -63263.97994660302, - -63886.9754159601, - -62792.527953455254, - -59421.93378347583, - -53536.10010144765, - -47550.500114858856, - -41820.935216786726, - -38420.78216128503, - -37643.43699385526, - -39328.70215103366, - -42538.09267167329, - -45818.32762767341, - -47817.03444919761, - -47029.65412382095, - -43653.05226644824, - -37470.225682185, - -13467.3267487509 - ], - "flow:branch14_seg1:J27": [ - 3.0765007519415652, - 6.861331670469059, - 10.492250450114568, - 14.259957766874246, - 18.28743799652082, - 23.562901801147312, - 31.650518868779148, - 42.746973600369685, - 59.28455543686178, - 79.07501171990906, - 103.80121635650936, - 130.26300586418915, - 156.8926193448866, - 183.25637288596812, - 201.4263544469691, - 218.99398332790244, - 225.13925882810133, - 228.88167493265246, - 223.46134981155402, - 208.66805264965035, - 192.18186161928776, - 164.47776216948324, - 137.18180019160525, - 101.07640872411261, - 62.159582179238484, - 20.95934742450129, - -22.136953577318398, - -64.08987248866003, - -102.42587881187949, - -137.84782340315513, - -165.33007436990076, - -187.78301933305394, - -204.20030716450714, - -211.19676561722764, - -218.77022877921672, - -217.22730211723, - -218.79198721946474, - -214.0754451426721, - -205.9206546791335, - -196.97408776990656, - -179.19310075808843, - -162.19050191785067, - -136.46424057786172, - -110.50027664587792, - -82.93789698300782, - -56.254774063630464, - -33.367350100984524, - -13.585309269635284, - 0.4855589554614943, - 10.56656551822684, - 17.403720506538196, - 23.060282448623443, - 28.39671123339272, - 35.02786695828192, - 41.78395543636811, - 49.72110552115163, - 55.84538325151834, - 59.98906629819633, - 60.90468189701234, - 57.14031084165187, - 50.76341507356585, - 40.2668198151344, - 29.533120257154287, - 18.511136459337035, - 9.327867741767449, - 2.2721675886533492, - -2.5548683422031355, - -5.382398808586901, - -7.095807750976341, - -8.652962894199524, - -10.602837374128622, - -13.108950288582784, - -16.130251615602887, - -18.644721409134824, - -20.757955988710712, - -21.092171236729108, - -20.365354937528764, - -18.380435099138335, - -15.839809991690004, - -13.635005929517044, - -11.774313157174465, - -11.283682064206602, - -11.356417015262384, - -12.09816131677201, - -12.47190809717784, - -11.88196533019113, - -10.465563652238918, - -7.723817421361986, - -4.753357765349302, - -1.7057525175867843, - 0.4865031791963392, - 1.3916829893328402, - 0.990418146546834, - -0.43775860867100486, - -2.187069753221323, - -3.547039222090342, - -3.8075870433192427, - -2.7112132290720647, - -0.2791222986371222, - 3.0765007519415652 - ], - "pressure:branch14_seg1:J27": [ - -15536.093327393908, - -23748.277829455667, - -15827.635252397082, - -7111.20167846325, - 2371.905304466732, - 15578.256537436968, - 34945.68688976438, - 61596.11824220035, - 100133.957213066, - 145278.58151453294, - 203782.31553362941, - 263784.0852665221, - 329517.8467971457, - 392295.21170026524, - 440038.7769948183, - 489599.9434069116, - 512348.38916899444, - 538588.3851461806, - 540095.9796401272, - 526884.9665494137, - 506373.86922303855, - 462023.4382747376, - 417782.767340725, - 352082.63972538034, - 282066.8600371444, - 201932.15052300022, - 116872.08625810927, - 29938.01077933773, - -50383.99809398778, - -129161.21243998525, - -190976.62076133446, - -250003.75471057626, - -294547.246777409, - -323512.963708, - -354425.3985631377, - -365499.6701065, - -387598.8156472617, - -391970.29548901325, - -394851.9057139945, - -390150.7758853477, - -369043.5771906168, - -346201.979415549, - -303843.20130139356, - -264275.93959050736, - -215740.6048912755, - -172029.30789615153, - -130458.41642025052, - -94964.65340610917, - -69485.83768874992, - -50021.76519571658, - -36481.69370116975, - -23787.365269730628, - -10540.613015436928, - 5694.916195708123, - 22714.80449901044, - 42394.84496763029, - 57497.30107516019, - 70345.88816810118, - 74901.13909114477, - 71655.01502166521, - 61766.82914413473, - 43677.64317579645, - 25857.31368751566, - 6104.230229105078, - -9054.556389420084, - -21487.159015923033, - -29851.564464211096, - -34904.943979694945, - -38396.7437560245, - -41996.8871523472, - -46526.81672194305, - -52586.4212274956, - -59449.16531781453, - -65452.46362536874, - -70532.87717578332, - -71778.23277578132, - -71620.6091830751, - -68327.07123466898, - -64818.9757873599, - -61431.19022236856, - -58874.66892123386, - -59099.277417417085, - -59957.63407625975, - -62445.859430239914, - -63572.11819059077, - -62831.528576129196, - -60192.91888093504, - -54852.561008504454, - -49149.57330433818, - -43309.04954859433, - -39320.545750649195, - -37806.00536318883, - -38772.48212192519, - -41577.08832704386, - -44844.59836682356, - -47204.23232246751, - -47176.65197140115, - -44527.690057836626, - -39095.8115368006, - -15536.093327393908 - ], - "flow:J27:branch14_seg2": [ - 3.0765007519415652, - 6.861331670469059, - 10.492250450114568, - 14.259957766874246, - 18.28743799652082, - 23.562901801147312, - 31.650518868779148, - 42.746973600369685, - 59.28455543686178, - 79.07501171990906, - 103.80121635650936, - 130.26300586418915, - 156.8926193448866, - 183.25637288596812, - 201.4263544469691, - 218.99398332790244, - 225.13925882810133, - 228.88167493265246, - 223.46134981155402, - 208.66805264965035, - 192.18186161928776, - 164.47776216948324, - 137.18180019160525, - 101.07640872411261, - 62.159582179238484, - 20.95934742450129, - -22.136953577318398, - -64.08987248866003, - -102.42587881187949, - -137.84782340315513, - -165.33007436990076, - -187.78301933305394, - -204.20030716450714, - -211.19676561722764, - -218.77022877921672, - -217.22730211723, - -218.79198721946474, - -214.0754451426721, - -205.9206546791335, - -196.97408776990656, - -179.19310075808843, - -162.19050191785067, - -136.46424057786172, - -110.50027664587792, - -82.93789698300782, - -56.254774063630464, - -33.367350100984524, - -13.585309269635284, - 0.4855589554614943, - 10.56656551822684, - 17.403720506538196, - 23.060282448623443, - 28.39671123339272, - 35.02786695828192, - 41.78395543636811, - 49.72110552115163, - 55.84538325151834, - 59.98906629819633, - 60.90468189701234, - 57.14031084165187, - 50.76341507356585, - 40.2668198151344, - 29.533120257154287, - 18.511136459337035, - 9.327867741767449, - 2.2721675886533492, - -2.5548683422031355, - -5.382398808586901, - -7.095807750976341, - -8.652962894199524, - -10.602837374128622, - -13.108950288582784, - -16.130251615602887, - -18.644721409134824, - -20.757955988710712, - -21.092171236729108, - -20.365354937528764, - -18.380435099138335, - -15.839809991690004, - -13.635005929517044, - -11.774313157174465, - -11.283682064206602, - -11.356417015262384, - -12.09816131677201, - -12.47190809717784, - -11.88196533019113, - -10.465563652238918, - -7.723817421361986, - -4.753357765349302, - -1.7057525175867843, - 0.4865031791963392, - 1.3916829893328402, - 0.990418146546834, - -0.43775860867100486, - -2.187069753221323, - -3.547039222090342, - -3.8075870433192427, - -2.7112132290720647, - -0.2791222986371222, - 3.0765007519415652 - ], - "pressure:J27:branch14_seg2": [ - -15536.093327393908, - -23748.277829455667, - -15827.635252397082, - -7111.20167846325, - 2371.905304466732, - 15578.256537436968, - 34945.68688976438, - 61596.11824220035, - 100133.957213066, - 145278.58151453294, - 203782.31553362941, - 263784.0852665221, - 329517.8467971457, - 392295.21170026524, - 440038.7769948183, - 489599.9434069116, - 512348.38916899444, - 538588.3851461806, - 540095.9796401272, - 526884.9665494137, - 506373.86922303855, - 462023.4382747376, - 417782.767340725, - 352082.63972538034, - 282066.8600371444, - 201932.15052300022, - 116872.08625810927, - 29938.01077933773, - -50383.99809398778, - -129161.21243998525, - -190976.62076133446, - -250003.75471057626, - -294547.246777409, - -323512.963708, - -354425.3985631377, - -365499.6701065, - -387598.8156472617, - -391970.29548901325, - -394851.9057139945, - -390150.7758853477, - -369043.5771906168, - -346201.979415549, - -303843.20130139356, - -264275.93959050736, - -215740.6048912755, - -172029.30789615153, - -130458.41642025052, - -94964.65340610917, - -69485.83768874992, - -50021.76519571658, - -36481.69370116975, - -23787.365269730628, - -10540.613015436928, - 5694.916195708123, - 22714.80449901044, - 42394.84496763029, - 57497.30107516019, - 70345.88816810118, - 74901.13909114477, - 71655.01502166521, - 61766.82914413473, - 43677.64317579645, - 25857.31368751566, - 6104.230229105078, - -9054.556389420084, - -21487.159015923033, - -29851.564464211096, - -34904.943979694945, - -38396.7437560245, - -41996.8871523472, - -46526.81672194305, - -52586.4212274956, - -59449.16531781453, - -65452.46362536874, - -70532.87717578332, - -71778.23277578132, - -71620.6091830751, - -68327.07123466898, - -64818.9757873599, - -61431.19022236856, - -58874.66892123386, - -59099.277417417085, - -59957.63407625975, - -62445.859430239914, - -63572.11819059077, - -62831.528576129196, - -60192.91888093504, - -54852.561008504454, - -49149.57330433818, - -43309.04954859433, - -39320.545750649195, - -37806.00536318883, - -38772.48212192519, - -41577.08832704386, - -44844.59836682356, - -47204.23232246751, - -47176.65197140115, - -44527.690057836626, - -39095.8115368006, - -15536.093327393908 - ], - "flow:branch15_seg0:J28": [ - 0.0033906045474019486, - 3.367151272681173, - 7.14746265135815, - 11.177707782783825, - 15.50222326214119, - 20.631686412944163, - 27.78547113912895, - 37.56170680066656, - 51.72891876751414, - 69.86793659117166, - 92.52136971375789, - 118.48802854184468, - 145.616738072396, - 173.38667100752326, - 196.29488851582167, - 216.15733826255254, - 228.15639580668469, - 234.32530267834636, - 233.2283196913279, - 223.19184041179474, - 208.99521670939367, - 186.71711082259654, - 161.52205378014938, - 130.53768300775565, - 95.78482855911835, - 58.71728947758096, - 19.55097348015098, - -19.68198365491245, - -57.362824088549964, - -92.90003995558267, - -123.83067253296205, - -150.17293538872715, - -172.1462918987225, - -187.2086207751664, - -200.15469751431473, - -207.3925214960429, - -213.6474902196505, - -216.3797813253856, - -215.23431032483253, - -212.46061185003884, - -203.31957545970013, - -191.83445240068872, - -173.69094240773705, - -151.60545495481273, - -126.51758515219136, - -99.47541972862291, - -73.64953852979068, - -49.43099573625085, - -29.05490573699735, - -12.718421127757466, - -0.12689921496833784, - 9.820421492568322, - 18.176285451980007, - 26.43792772116904, - 34.61408092302783, - 43.39290006946544, - 51.436999636814335, - 57.85503174536102, - 61.794841168157866, - 61.63818707979792, - 58.20325491374499, - 50.68386859039635, - 40.986260192077204, - 30.112124085677834, - 19.560834472664137, - 10.458380080692907, - 3.2300321333131774, - -1.9525388877775574, - -5.512706757631123, - -8.191305865596153, - -10.645889047527351, - -13.262362521505777, - -16.27384326516625, - -19.163135452151597, - -21.813626708736695, - -23.359211385250447, - -23.741870996545423, - -22.905532824748974, - -21.070177108928814, - -18.997704772990826, - -16.924572552441507, - -15.605538392159595, - -14.978914517804991, - -15.028012273199582, - -15.255022793018416, - -15.010418581031162, - -14.113636154174008, - -12.131017918796408, - -9.475979160617259, - -6.417962657808705, - -3.6228357530876742, - -1.6719001000531484, - -0.8647745874719002, - -1.2098589748412365, - -2.3154559961625703, - -3.597068711201526, - -4.373912172423537, - -4.142044240652132, - -2.6769743474595966, - 0.0033906045474019486 - ], - "pressure:branch15_seg0:J28": [ - -15823.186867334553, - -24444.307915988713, - -16816.23208710181, - -8164.780447539242, - 1234.5258029200847, - 14778.309503448501, - 33912.35940051404, - 60698.983813928564, - 98394.79947180786, - 142264.1877878783, - 200587.48122366544, - 258783.9629138229, - 326302.67683220183, - 388721.23099520744, - 438831.64480906446, - 490728.58855440153, - 514690.5998501243, - 545841.9444439599, - 548482.6801384637, - 540251.1316304724, - 519063.55102269514, - 475714.02071693935, - 429508.6815353314, - 361618.00640156184, - 290605.9583286271, - 207370.825285781, - 120421.03471467367, - 30392.718887179988, - -51468.57487631963, - -132016.15666602313, - -193286.95985089353, - -254224.11658128098, - -297459.5364117878, - -327832.9147036642, - -357036.4881536642, - -366936.758154786, - -388607.4362539207, - -390517.13101040386, - -395351.54606642516, - -387912.66680204554, - -369164.7179657431, - -344503.4730275703, - -302757.39207531605, - -266359.8440167015, - -218783.29859086432, - -179002.7320836758, - -137854.27020443356, - -103287.45557660257, - -77486.87216807266, - -56729.90326266267, - -42018.42628410482, - -28210.68513282314, - -13730.631610404582, - 2793.6245712333166, - 20230.886689169747, - 39667.8940985836, - 54216.306330796804, - 67723.06614096767, - 72042.50881944112, - 70589.95383719851, - 61203.01902959132, - 44391.44488832219, - 27924.35507254832, - 8688.28725415714, - -5637.732547770384, - -18167.881691152335, - -26837.50793626112, - -32540.805008724805, - -36809.45271821556, - -41027.35862361945, - -45805.74647847315, - -52082.60259250565, - -58683.94657220562, - -64687.4710336492, - -69513.48401413797, - -70692.85323240889, - -70960.19533603724, - -67834.00934469703, - -65082.391963259994, - -61900.18461278474, - -59622.58262769194, - -59815.70659105268, - -60339.020610280364, - -62637.049394589856, - -63397.367716093184, - -62696.18511839038, - -60016.92776043158, - -54995.0755256288, - -49568.833208506134, - -44081.39982996708, - -40350.030998788134, - -38844.721268944275, - -39597.274213387056, - -41965.83450834199, - -44766.98390340611, - -46776.70322833208, - -46563.800945887495, - -44059.67171977057, - -38928.724715515156, - -15823.186867334553 - ], - "flow:J28:branch15_seg1": [ - 0.0033906045474019486, - 3.367151272681173, - 7.14746265135815, - 11.177707782783825, - 15.50222326214119, - 20.631686412944163, - 27.78547113912895, - 37.56170680066656, - 51.72891876751414, - 69.86793659117166, - 92.52136971375789, - 118.48802854184468, - 145.616738072396, - 173.38667100752326, - 196.29488851582167, - 216.15733826255254, - 228.15639580668469, - 234.32530267834636, - 233.2283196913279, - 223.19184041179474, - 208.99521670939367, - 186.71711082259654, - 161.52205378014938, - 130.53768300775565, - 95.78482855911835, - 58.71728947758096, - 19.55097348015098, - -19.68198365491245, - -57.362824088549964, - -92.90003995558267, - -123.83067253296205, - -150.17293538872715, - -172.1462918987225, - -187.2086207751664, - -200.15469751431473, - -207.3925214960429, - -213.6474902196505, - -216.3797813253856, - -215.23431032483253, - -212.46061185003884, - -203.31957545970013, - -191.83445240068872, - -173.69094240773705, - -151.60545495481273, - -126.51758515219136, - -99.47541972862291, - -73.64953852979068, - -49.43099573625085, - -29.05490573699735, - -12.718421127757466, - -0.12689921496833784, - 9.820421492568322, - 18.176285451980007, - 26.43792772116904, - 34.61408092302783, - 43.39290006946544, - 51.436999636814335, - 57.85503174536102, - 61.794841168157866, - 61.63818707979792, - 58.20325491374499, - 50.68386859039635, - 40.986260192077204, - 30.112124085677834, - 19.560834472664137, - 10.458380080692907, - 3.2300321333131774, - -1.9525388877775574, - -5.512706757631123, - -8.191305865596153, - -10.645889047527351, - -13.262362521505777, - -16.27384326516625, - -19.163135452151597, - -21.813626708736695, - -23.359211385250447, - -23.741870996545423, - -22.905532824748974, - -21.070177108928814, - -18.997704772990826, - -16.924572552441507, - -15.605538392159595, - -14.978914517804991, - -15.028012273199582, - -15.255022793018416, - -15.010418581031162, - -14.113636154174008, - -12.131017918796408, - -9.475979160617259, - -6.417962657808705, - -3.6228357530876742, - -1.6719001000531484, - -0.8647745874719002, - -1.2098589748412365, - -2.3154559961625703, - -3.597068711201526, - -4.373912172423537, - -4.142044240652132, - -2.6769743474595966, - 0.0033906045474019486 - ], - "pressure:J28:branch15_seg1": [ - -15823.186867334553, - -24444.307915988713, - -16816.23208710181, - -8164.780447539242, - 1234.5258029200847, - 14778.309503448501, - 33912.35940051404, - 60698.983813928564, - 98394.79947180786, - 142264.1877878783, - 200587.48122366544, - 258783.9629138229, - 326302.67683220183, - 388721.23099520744, - 438831.64480906446, - 490728.58855440153, - 514690.5998501243, - 545841.9444439599, - 548482.6801384637, - 540251.1316304724, - 519063.55102269514, - 475714.02071693935, - 429508.6815353314, - 361618.00640156184, - 290605.9583286271, - 207370.825285781, - 120421.03471467367, - 30392.718887179988, - -51468.57487631963, - -132016.15666602313, - -193286.95985089353, - -254224.11658128098, - -297459.5364117878, - -327832.9147036642, - -357036.4881536642, - -366936.758154786, - -388607.4362539207, - -390517.13101040386, - -395351.54606642516, - -387912.66680204554, - -369164.7179657431, - -344503.4730275703, - -302757.39207531605, - -266359.8440167015, - -218783.29859086432, - -179002.7320836758, - -137854.27020443356, - -103287.45557660257, - -77486.87216807266, - -56729.90326266267, - -42018.42628410482, - -28210.68513282314, - -13730.631610404582, - 2793.6245712333166, - 20230.886689169747, - 39667.8940985836, - 54216.306330796804, - 67723.06614096767, - 72042.50881944112, - 70589.95383719851, - 61203.01902959132, - 44391.44488832219, - 27924.35507254832, - 8688.28725415714, - -5637.732547770384, - -18167.881691152335, - -26837.50793626112, - -32540.805008724805, - -36809.45271821556, - -41027.35862361945, - -45805.74647847315, - -52082.60259250565, - -58683.94657220562, - -64687.4710336492, - -69513.48401413797, - -70692.85323240889, - -70960.19533603724, - -67834.00934469703, - -65082.391963259994, - -61900.18461278474, - -59622.58262769194, - -59815.70659105268, - -60339.020610280364, - -62637.049394589856, - -63397.367716093184, - -62696.18511839038, - -60016.92776043158, - -54995.0755256288, - -49568.833208506134, - -44081.39982996708, - -40350.030998788134, - -38844.721268944275, - -39597.274213387056, - -41965.83450834199, - -44766.98390340611, - -46776.70322833208, - -46563.800945887495, - -44059.67171977057, - -38928.724715515156, - -15823.186867334553 - ], - "flow:branch15_seg1:J29": [ - -0.016755082069948454, - 3.345706508006074, - 7.124176490954326, - 11.152495517464276, - 15.475255050386206, - 20.586129812408025, - 27.727719041441546, - 37.464766948688435, - 51.610878801296195, - 69.72865007106003, - 92.35643701940234, - 118.35166776623801, - 145.43971139597616, - 173.23657878809803, - 196.12267315099407, - 216.0520239995153, - 228.09148912870617, - 234.31461330146243, - 233.29746496463662, - 223.2117901402991, - 209.0856408529032, - 186.77043652050205, - 161.68008522967668, - 130.73686458921242, - 95.9879652712898, - 58.943475845745986, - 19.758241296885295, - -19.46986921842212, - -57.155100683689284, - -92.71889641544661, - -123.69629358780789, - -150.04314588016632, - -172.06843496172732, - -187.08281470834964, - -200.0863118462446, - -207.2984842093996, - -213.61916289410112, - -216.41490389208616, - -215.21984116034162, - -212.51614198413847, - -203.30734535687392, - -191.90825935515716, - -173.79201847255047, - -151.72265728206858, - -126.67643805145664, - -99.58719823674879, - -73.74566319101706, - -49.49781703631753, - -29.10942544176185, - -12.767201463763088, - -0.17422712229750328, - 9.783042122781445, - 18.128578489055826, - 26.394110924598834, - 34.55688233126349, - 43.34361392121704, - 51.40625886402621, - 57.82858193932242, - 61.80815242502691, - 61.64724717240858, - 58.238521784323204, - 50.72275058353671, - 41.0350702152829, - 30.1650219936353, - 19.60279860614309, - 10.486648740940923, - 3.246610555790875, - -1.9430151726511016, - -5.503491590424299, - -8.17816959210391, - -10.631968198495994, - -13.242179087500796, - -16.2580311602231, - -19.14485759884983, - -21.805094224587982, - -23.358028242237832, - -23.74605827573243, - -22.91976943265718, - -21.07869636947755, - -19.00440110925786, - -16.923124177052767, - -15.60239104866599, - -14.974277818525339, - -15.02503326519782, - -15.257629500056039, - -15.01375592880806, - -14.12449092369842, - -12.141708390298334, - -9.492225060300855, - -6.432127097690886, - -3.6314301179389785, - -1.6733776710467316, - -0.8589634204392537, - -1.2011337694024569, - -2.3077783477643177, - -3.5941241686999437, - -4.378695953249099, - -4.153591732273369, - -2.6942191856743336, - -0.016755082069948454 - ], - "pressure:branch15_seg1:J29": [ - -18068.087890740437, - -27441.77172477306, - -20268.866795580845, - -12194.554450898364, - -3391.6117189478236, - 8522.667729075318, - 25317.387645161525, - 48473.46591055128, - 81289.49676778857, - 120394.75341574514, - 171894.91586828398, - 225605.05166420434, - 286004.68320035253, - 343833.70172918256, - 391126.68079749, - 438532.1436629695, - 463160.2280745734, - 490781.1071989617, - 496381.0223428554, - 489499.3505079765, - 472443.2049101037, - 436870.2456829701, - 398647.5213376821, - 343278.6375006667, - 283909.5331744283, - 215141.96466174079, - 142049.70358582243, - 65965.43700516906, - -4884.740676259229, - -75354.58262110747, - -132149.4187033861, - -187990.36717707085, - -231467.79478553854, - -263593.9597679929, - -294658.3410894318, - -310451.1070003679, - -334756.4374865699, - -344710.44149970065, - -353869.61498008744, - -354809.9676564486, - -344176.2962350158, - -328281.4839417433, - -296953.63527059474, - -266810.05790576665, - -226797.18960961493, - -189353.57986580388, - -150528.13995609502, - -116113.2079008753, - -88830.26211068754, - -66555.41962567554, - -50101.95719367496, - -35359.59384291642, - -20959.90762527738, - -5059.990530224522, - 11495.813371117443, - 29912.63294960175, - 44918.64000612132, - 58560.3783750908, - 65212.48562217409, - 65686.08713331213, - 59214.246629498375, - 45545.6864850928, - 30919.230510511774, - 13502.806009004556, - -754.0850824713565, - -13388.057881878545, - -22722.47746207565, - -29211.567780531273, - -33963.33502125458, - -38226.12713792983, - -42788.87498570481, - -48433.96770404925, - -54628.79743028106, - -60424.02203742613, - -65439.67066654522, - -67524.07419860759, - -68504.21670728434, - -66611.90230815814, - -64317.78276528231, - -61527.943520577086, - -59245.06599550846, - -58940.2909083894, - -59160.289245270804, - -60988.72389446323, - -61943.76520397581, - -61652.452517537145, - -59730.64733106462, - -55640.55721226398, - -50885.40684470636, - -45763.938650140655, - -41830.8130490931, - -39726.87430203517, - -39654.94226699761, - -41261.98448810051, - -43613.812695320354, - -45619.74235512165, - -45957.573990514305, - -44291.464412130066, - -40221.786932622395, - -18068.087890740437 - ], - "flow:J29:branch15_seg2": [ - -0.016755082069948454, - 3.345706508006074, - 7.124176490954326, - 11.152495517464276, - 15.475255050386206, - 20.586129812408025, - 27.727719041441546, - 37.464766948688435, - 51.610878801296195, - 69.72865007106003, - 92.35643701940234, - 118.35166776623801, - 145.43971139597616, - 173.23657878809803, - 196.12267315099407, - 216.0520239995153, - 228.09148912870617, - 234.31461330146243, - 233.29746496463662, - 223.2117901402991, - 209.0856408529032, - 186.77043652050205, - 161.68008522967668, - 130.73686458921242, - 95.9879652712898, - 58.943475845745986, - 19.758241296885295, - -19.46986921842212, - -57.155100683689284, - -92.71889641544661, - -123.69629358780789, - -150.04314588016632, - -172.06843496172732, - -187.08281470834964, - -200.0863118462446, - -207.2984842093996, - -213.61916289410112, - -216.41490389208616, - -215.21984116034162, - -212.51614198413847, - -203.30734535687392, - -191.90825935515716, - -173.79201847255047, - -151.72265728206858, - -126.67643805145664, - -99.58719823674879, - -73.74566319101706, - -49.49781703631753, - -29.10942544176185, - -12.767201463763088, - -0.17422712229750328, - 9.783042122781445, - 18.128578489055826, - 26.394110924598834, - 34.55688233126349, - 43.34361392121704, - 51.40625886402621, - 57.82858193932242, - 61.80815242502691, - 61.64724717240858, - 58.238521784323204, - 50.72275058353671, - 41.0350702152829, - 30.1650219936353, - 19.60279860614309, - 10.486648740940923, - 3.246610555790875, - -1.9430151726511016, - -5.503491590424299, - -8.17816959210391, - -10.631968198495994, - -13.242179087500796, - -16.2580311602231, - -19.14485759884983, - -21.805094224587982, - -23.358028242237832, - -23.74605827573243, - -22.91976943265718, - -21.07869636947755, - -19.00440110925786, - -16.923124177052767, - -15.60239104866599, - -14.974277818525339, - -15.02503326519782, - -15.257629500056039, - -15.01375592880806, - -14.12449092369842, - -12.141708390298334, - -9.492225060300855, - -6.432127097690886, - -3.6314301179389785, - -1.6733776710467316, - -0.8589634204392537, - -1.2011337694024569, - -2.3077783477643177, - -3.5941241686999437, - -4.378695953249099, - -4.153591732273369, - -2.6942191856743336, - -0.016755082069948454 - ], - "pressure:J29:branch15_seg2": [ - -18068.087890740437, - -27441.77172477306, - -20268.866795580845, - -12194.554450898364, - -3391.6117189478236, - 8522.667729075318, - 25317.387645161525, - 48473.46591055128, - 81289.49676778857, - 120394.75341574514, - 171894.91586828398, - 225605.05166420434, - 286004.68320035253, - 343833.70172918256, - 391126.68079749, - 438532.1436629695, - 463160.2280745734, - 490781.1071989617, - 496381.0223428554, - 489499.3505079765, - 472443.2049101037, - 436870.2456829701, - 398647.5213376821, - 343278.6375006667, - 283909.5331744283, - 215141.96466174079, - 142049.70358582243, - 65965.43700516906, - -4884.740676259229, - -75354.58262110747, - -132149.4187033861, - -187990.36717707085, - -231467.79478553854, - -263593.9597679929, - -294658.3410894318, - -310451.1070003679, - -334756.4374865699, - -344710.44149970065, - -353869.61498008744, - -354809.9676564486, - -344176.2962350158, - -328281.4839417433, - -296953.63527059474, - -266810.05790576665, - -226797.18960961493, - -189353.57986580388, - -150528.13995609502, - -116113.2079008753, - -88830.26211068754, - -66555.41962567554, - -50101.95719367496, - -35359.59384291642, - -20959.90762527738, - -5059.990530224522, - 11495.813371117443, - 29912.63294960175, - 44918.64000612132, - 58560.3783750908, - 65212.48562217409, - 65686.08713331213, - 59214.246629498375, - 45545.6864850928, - 30919.230510511774, - 13502.806009004556, - -754.0850824713565, - -13388.057881878545, - -22722.47746207565, - -29211.567780531273, - -33963.33502125458, - -38226.12713792983, - -42788.87498570481, - -48433.96770404925, - -54628.79743028106, - -60424.02203742613, - -65439.67066654522, - -67524.07419860759, - -68504.21670728434, - -66611.90230815814, - -64317.78276528231, - -61527.943520577086, - -59245.06599550846, - -58940.2909083894, - -59160.289245270804, - -60988.72389446323, - -61943.76520397581, - -61652.452517537145, - -59730.64733106462, - -55640.55721226398, - -50885.40684470636, - -45763.938650140655, - -41830.8130490931, - -39726.87430203517, - -39654.94226699761, - -41261.98448810051, - -43613.812695320354, - -45619.74235512165, - -45957.573990514305, - -44291.464412130066, - -40221.786932622395, - -18068.087890740437 - ], - "flow:INFLOW:branch0_seg0": [ - 20.124757211774295, - 39.67142307930636, - 62.72540053976514, - 88.57549017902605, - 119.78152172225221, - 163.6964438370627, - 222.8726011754913, - 305.2419616878857, - 407.43659171298196, - 534.043883387541, - 683.4871189302785, - 847.588628995997, - 1017.225019261191, - 1106.5433377227075, - 1295.1066180446333, - 1389.2851490633516, - 1445.9887350757238, - 1462.0794378376906, - 1439.4278818604832, - 1366.522589400432, - 1186.467973515935, - 1099.7853526367217, - 915.3610897402733, - 704.2616197963754, - 474.71058786130965, - 224.9187079853196, - -37.447571657237035, - -304.3335010604637, - -551.2050714009936, - -770.6919669404163, - -950.5542979737963, - -1096.9450431491355, - -1171.133080465963, - -1295.7427572644874, - -1321.30892394079, - -1384.3135332119973, - -1393.508000940604, - -1380.9207808255205, - -1346.712181424987, - -1277.181945851917, - -1203.9468124365364, - -1089.4583652582246, - -948.8902905055746, - -786.4000039637028, - -625.1525921662812, - -472.2349056922629, - -316.73690416713043, - -209.46149967438768, - -106.74099597242359, - -22.156491950463135, - 45.9606713138445, - 103.88548376144337, - 155.89607892492944, - 197.3467455329063, - 257.0763926004194, - 304.0293120781809, - 343.7996356906697, - 370.37999730961417, - 377.87851668975327, - 361.52923091021455, - 323.0535962295179, - 277.19559689696126, - 219.70179997988893, - 160.43344638201626, - 102.43057579006906, - 53.7627799765748, - 18.235176549479636, - -8.770251380460525, - -29.83002605444341, - -48.039460077721046, - -65.66794120777351, - -84.68293995644254, - -101.7618132551415, - -119.11209663809147, - -129.39413350041292, - -132.4952023067848, - -129.32997063434402, - -121.38645611372333, - -110.96682246905641, - -95.55941097459194, - -92.81601474569374, - -88.88026388876992, - -87.44508841661329, - -87.18035987749828, - -85.49292485678602, - -79.8031873188606, - -66.26421744286002, - -55.75549547734092, - -38.990313273339964, - -23.362076127668125, - -11.785962394212714, - -5.9065668550558525, - -5.825981266091555, - -9.758632140607522, - -15.329341796522783, - -19.436491925664395, - -18.396033489219512, - -10.852475892946806, - 2.297409555986385, - 20.124757211774295 - ], - "pressure:INFLOW:branch0_seg0": [ - -8059.653650761236, - -15532.667005842952, - -7086.094598304028, - 2287.2599395345683, - 13169.86546640812, - 31417.48585592613, - 55338.511475276966, - 93790.97488261668, - 142766.0590717582, - 198355.1329878568, - 266288.28264551546, - 328642.10750471795, - 399967.5376372683, - 454526.6778539261, - 504244.6283643925, - 542006.9512722688, - 555251.9128007265, - 564305.6931409306, - 539156.3342304847, - 525654.8254032349, - 478423.0228581888, - 432845.2260245338, - 369620.40342008375, - 286350.1176265091, - 205162.8976936748, - 111424.58251990205, - 20234.62776311135, - -70112.60839691796, - -151302.2678458563, - -223309.38751349424, - -274962.52843779046, - -322672.68505755544, - -342617.31166444754, - -374840.57413351117, - -390601.69879662915, - -398985.45550928276, - -408211.9238206605, - -395375.3616258205, - -397083.7911636231, - -366580.03812706604, - -349060.7738811364, - -312421.42181977857, - -258139.05726811025, - -211820.8214350068, - -156777.1694855617, - -116472.20893541342, - -79739.95993886476, - -53946.18055290485, - -37543.92478031083, - -25992.107919818365, - -16886.76482983338, - -7384.508557041272, - 6976.719669635928, - 22846.153046500334, - 42648.7344981394, - 61286.713150662414, - 72500.97049127633, - 80805.83680409202, - 74822.78238112878, - 66312.53388438652, - 48539.674214794984, - 25307.39819594739, - 4686.858344170608, - -14829.834359228242, - -27872.561793567143, - -36745.85233096932, - -40539.58660696862, - -42366.77377384514, - -44079.78562429113, - -47561.898236981186, - -52540.76750688479, - -59917.26955061439, - -66016.61984871876, - -72296.78604370334, - -75112.46393781288, - -73563.76042827703, - -70630.29768479484, - -64740.91396449472, - -60804.52768104731, - -57422.089537040774, - -56926.317158010475, - -58789.695149175, - -61092.61720600187, - -63681.17485110289, - -63161.86696348386, - -61449.21200650306, - -55924.469897620525, - -49624.11471936019, - -42928.21739613701, - -37503.584054428116, - -35406.82531338846, - -36275.63823149241, - -39824.80281868, - -44328.784845312155, - -47883.128901581236, - -49116.35722580916, - -46776.775273901265, - -41297.56983916956, - -33379.56494269341, - -8059.653650761236 - ], - "flow:branch4_seg2:RCR_0": [ - -0.8762124901026458, - 0.1824259285687925, - 1.5793394235606453, - 3.1144287073980155, - 4.853030869870242, - 6.76912115854196, - 9.221649628266517, - 12.612682802754128, - 17.196943374103924, - 23.753333774448727, - 31.715498788576422, - 41.91367438037461, - 53.00137691365431, - 65.01528314753318, - 77.07653890734537, - 86.98600261749677, - 96.62606991691106, - 101.912058941451, - 106.03504022035226, - 105.93740369706185, - 102.4488035250689, - 97.18407311401265, - 87.55387073235441, - 77.16553270932411, - 63.16096681087691, - 47.90694926238158, - 31.259129714837098, - 13.593811312032027, - -4.063508192030396, - -21.077912928206928, - -37.39036403771943, - -51.34369302220683, - -63.924548743351465, - -74.16597433187684, - -81.61034674148814, - -88.60884436576676, - -92.27297166869243, - -96.43673190457451, - -97.80492618295257, - -98.11950379085772, - -97.26245073058952, - -93.4447017363399, - -89.07794479681601, - -80.99476345142321, - -72.29944086599245, - -61.561120241446574, - -50.45412220223659, - -39.56580529527991, - -29.02283283124844, - -20.174913155392954, - -12.381059656215488, - -6.037805680641012, - -0.5687849787806976, - 4.305585288029873, - 9.010591993652856, - 13.467888559510383, - 18.066034100028382, - 21.891088437541807, - 25.119518759506995, - 26.980970760526276, - 27.231099414118766, - 26.15186939027345, - 23.212044204908473, - 19.702186696821283, - 15.35673207658774, - 11.220403806403144, - 7.4248499517413915, - 4.218641329975779, - 1.754104603056053, - -0.2230464659083692, - -1.8873422053892115, - -3.4240856571304903, - -4.982814533661537, - -6.564128422058041, - -7.980682365994577, - -9.249442090475638, - -9.927204025924542, - -10.253335105116937, - -9.992146641646972, - -9.438132491399307, - -8.768680636120918, - -8.050741317584382, - -7.6815126025934815, - -7.4073562092774, - -7.413239680409957, - -7.344983281296909, - -7.081078321426626, - -6.580746973413919, - -5.636906566663684, - -4.540783843696031, - -3.2822135464108775, - -2.1941292325846233, - -1.4319339108214706, - -1.0868796401021457, - -1.148429229981457, - -1.4449604827984714, - -1.7779714087478309, - -1.884596722725446, - -1.6304949477405144, - -0.8762124901026458 - ], - "pressure:branch4_seg2:RCR_0": [ - -25020.36703610804, - -37323.742365641316, - -32069.063046740393, - -26125.794158139164, - -19245.23533345682, - -11491.649944784449, - -1571.4199334486539, - 12032.14320574145, - 30343.06560426682, - 56316.987297166364, - 88209.18055441696, - 129154.4168780977, - 174708.86195301675, - 225055.04328705044, - 277264.8518684992, - 323433.5799858053, - 369980.10670105467, - 402312.1682176546, - 431116.7891092689, - 445421.97099383816, - 447475.5714924089, - 442667.70407691656, - 421428.5890668477, - 396058.945231147, - 356259.2808164857, - 309933.0656942144, - 256464.30769648874, - 196955.30035611094, - 134968.13143098692, - 72759.27595140591, - 10663.098615145347, - -45322.341957324155, - -98311.59828321435, - -144723.17668366563, - -182509.64646570492, - -219707.85208699235, - -245916.62783976804, - -274321.616908739, - -293292.1307675885, - -308551.1397066595, - -319658.12666047126, - -319943.50023914705, - -317689.79347147746, - -301475.54987805564, - -281821.8039965206, - -253623.34545731652, - -222476.92560685807, - -190519.36844365278, - -158187.03492474585, - -130371.17291200858, - -105039.97473948277, - -83760.31472744292, - -64698.676021081876, - -46990.648596519735, - -29198.99313825647, - -11638.467415683042, - 7046.480629937082, - 23618.424274574107, - 38574.55978367748, - 49115.03338197433, - 54131.84605798876, - 54438.05876096864, - 47924.20998952361, - 38929.29972796635, - 26440.00880024484, - 14047.94017204536, - 2275.871264842636, - -7947.817639365218, - -15986.850052646947, - -22640.01950838115, - -28457.4763159171, - -34055.24651219851, - -39943.616458263234, - -46133.92456756596, - -51954.34193695021, - -57447.92124205128, - -61009.82047664, - -63402.88477451353, - -63746.04594902923, - -62991.154656138875, - -61742.954030271256, - -60214.798747221874, - -59820.53296713977, - -59708.08355808605, - -60547.53087933289, - -61123.56582898324, - -60985.8540762144, - -59967.88014451407, - -57291.158188007226, - -53934.05188790367, - -49836.884817328326, - -46163.79605474377, - -43496.67952806102, - -42206.96357192422, - -42319.441121137745, - -43280.536151444554, - -44416.44771563279, - -44796.00771147418, - -43905.237640779415, - -25020.36703610804 - ], - "flow:branch6_seg2:RCR_1": [ - 1.7021226557118838, - 4.982308274191867, - 8.339012385980032, - 11.78784206839475, - 15.491280425026286, - 19.905909054446443, - 26.619642361344297, - 35.66240623328577, - 49.386243584221404, - 66.48750634698345, - 87.60168538780287, - 111.97824388407722, - 135.78446492978355, - 161.26587939252, - 180.0588385271688, - 197.9098202472712, - 207.5643083346078, - 212.30344050600996, - 211.10969075361484, - 199.6116834454549, - 186.6059972384661, - 163.51565729588472, - 139.8128201501627, - 108.61277104051604, - 73.61698821223315, - 36.39196934993844, - -3.300375748466593, - -42.2323392070556, - -79.25694285169357, - -113.25445667884847, - -142.02518136681073, - -164.4950635539864, - -182.94586717074205, - -192.11359161946922, - -200.99389241791224, - -202.33485129193286, - -204.34573772269746, - -202.48134448096542, - -195.65612425922242, - -189.17101454173832, - -174.314829900896, - -160.45357658815863, - -138.77125702799648, - -115.36210875453602, - -90.71107983798935, - -64.77409416383584, - -42.67431624038373, - -22.287433010099566, - -7.109258539740134, - 4.252366517262693, - 12.403448542274804, - 18.685724121136758, - 24.151411234258475, - 30.372192113995332, - 36.5587816647316, - 43.88000060666324, - 50.20097318717545, - 54.64495757521456, - 57.02294716751879, - 54.765295639685036, - 50.43993054480824, - 41.92438815906573, - 32.461003771602776, - 22.436082596910346, - 13.170243717419124, - 5.845145109756198, - 0.3316720632728334, - -3.197715698895673, - -5.395323846452487, - -7.149914270151531, - -9.014588380805092, - -11.208403042251476, - -13.972343426744487, - -16.371513290377557, - -18.61747806024857, - -19.491440818574485, - -19.249650747554906, - -17.99889126987646, - -15.780409942483, - -13.815982460156336, - -11.891185030056093, - -11.056127345461977, - -10.868061886894166, - -11.248764058276796, - -11.670667306726346, - -11.323356078471553, - -10.355357303798227, - -8.204606090662073, - -5.661389817489987, - -2.849529461920062, - -0.5608897864770083, - 0.7527498109525637, - 0.8899126941401163, - -0.004914066255321926, - -1.4215278676275174, - -2.7463091939655095, - -3.3323401673891926, - -2.774471568302521, - -1.0362366258242883, - 1.7021226557118838 - ], - "pressure:branch6_seg2:RCR_1": [ - -19639.384175259256, - -28639.09192388271, - -20831.69645920255, - -12554.249617726016, - -3450.4524150055713, - 7457.442285679113, - 23612.52182404421, - 45267.89634925401, - 77615.72574359199, - 118298.18559596449, - 168895.0938201331, - 228212.0214302142, - 288279.9525446516, - 353911.077565814, - 407422.75862941757, - 460388.82091581135, - 497418.5937229342, - 524565.9478309831, - 539490.4596198712, - 532218.9875531257, - 520709.57157439156, - 486589.38502032455, - 449072.9283278952, - 393575.845198525, - 327238.0394278651, - 253202.12765986676, - 170735.30336805634, - 86544.37757257694, - 3106.1412288421284, - -76954.1741946334, - -148767.27292106906, - -209455.11257161578, - -263467.248779948, - -299178.24194910727, - -334931.21630032425, - -355351.2619783708, - -377085.7115776749, - -390718.08944871713, - -393438.69401828514, - -396271.7784150359, - -380655.6793633339, - -365806.2941258275, - -333097.32785787503, - -294719.98237939633, - -251699.06085459312, - -203746.74632212368, - -161772.0978412642, - -121532.81158124859, - -90639.14749970438, - -66576.17626689511, - -48383.19161574147, - -33496.46656321327, - -19835.67258112576, - -4131.568070483775, - 12013.27916684699, - 31067.10271831966, - 48609.332795581104, - 62650.17220951857, - 72667.06384422332, - 72981.39842895254, - 68689.10890964248, - 55091.09071458393, - 38708.59516338908, - 20315.364123380088, - 2647.8310297155026, - -11673.22167981333, - -22770.814978974522, - -30108.424164895365, - -34908.639165153625, - -38945.32429348035, - -43360.68233819631, - -48627.1266637253, - -55289.80839785657, - -61407.48461193287, - -67396.71121986215, - -70657.42485533252, - -71600.22207805833, - -70374.51175138053, - -66962.97177972815, - -63901.84436414296, - -60749.17637646535, - -59742.97340289436, - -60042.728637909124, - -61526.109727145515, - -63134.747825911225, - -63137.75640416538, - -61791.14949171276, - -57844.83610005315, - -52873.17324354087, - -47111.177195735334, - -42216.82699862222, - -39202.38712266146, - -38581.403632030844, - -40148.32522149901, - -42906.81577435186, - -45594.14742535025, - -46827.12609365338, - -45676.57855054737, - -41969.235785877856, - -19639.384175259256 - ], - "flow:branch8_seg2:RCR_2": [ - -0.5153764396020473, - 0.7124076695756563, - 2.264550373156312, - 3.945181688401473, - 5.821694695098625, - 7.884235147161941, - 10.474891410949917, - 14.180147761645756, - 19.14244554859163, - 26.384059128020652, - 35.21948039329668, - 46.40714686609779, - 58.87188047699997, - 72.01671382393441, - 85.73070651505948, - 96.78252597080156, - 107.7975214343347, - 114.08436526447143, - 118.73623006108384, - 119.36829808862251, - 115.36201743339885, - 110.147232217715, - 99.19033012036721, - 87.29572823985934, - 71.11264412015855, - 52.80664999334956, - 33.22638849140079, - 11.91369112640897, - -9.384969934186799, - -30.007685278919766, - -49.73824194746043, - -66.47057143312763, - -81.08408494032349, - -93.02499685987621, - -100.9409513547285, - -108.51264435983205, - -111.6144425238464, - -114.97975452934274, - -115.35650743373377, - -113.65606463079212, - -111.54561879619666, - -105.25577453820286, - -98.7913970715856, - -88.16041350456962, - -76.56420206950797, - -63.69314092285201, - -50.14056873130993, - -37.730716439478385, - -25.75842998510518, - -15.9715821773756, - -7.741137154517274, - -1.1524043680674285, - 4.2235931517843195, - 8.991457076386387, - 13.658780763837111, - 18.06399401611812, - 22.706652214376014, - 26.54671026886801, - 29.590658912229852, - 31.36975398763044, - 31.157702063220032, - 29.689042425526267, - 26.09834571166327, - 21.857959385723355, - 16.900199939416797, - 12.111810824108305, - 7.956700863219488, - 4.436615088858296, - 1.8106716561284786, - -0.2517095323233497, - -1.9891157283994245, - -3.574738813353339, - -5.1957888778961205, - -6.899798438059987, - -8.395452644233513, - -9.755434577479498, - -10.43399947309159, - -10.655842753919842, - -10.292533314661922, - -9.528734664310852, - -8.744146896640125, - -7.887907341004196, - -7.459514904346839, - -7.181892915899548, - -7.187276741460565, - -7.178004371073618, - -6.878741018687338, - -6.353821492417072, - -5.288394554082516, - -4.05311867215412, - -2.6687230770907706, - -1.4666160963072363, - -0.693610532619529, - -0.3894456365978247, - -0.5544512799278142, - -0.975351536359624, - -1.4141735094396832, - -1.58433585284921, - -1.3150413497010145, - -0.5153764396020473 - ], - "pressure:branch8_seg2:RCR_2": [ - -25098.19104148333, - -36874.28564463153, - -30988.21472863253, - -24425.558967787423, - -16933.076317180195, - -8517.29016564184, - 2056.724836253391, - 16963.629486599224, - 36853.95246371391, - 65557.64138613729, - 100954.57284163778, - 145940.34548129002, - 197069.97153960937, - 252305.09860634743, - 311425.0727329365, - 362916.6992419537, - 415739.4501225894, - 453220.6363367787, - 485598.63811291085, - 504277.8635851861, - 506340.90285047673, - 503461.4648095867, - 479235.2209488846, - 450019.4394273413, - 403774.4463480728, - 347560.46231825533, - 284200.21733644267, - 211814.5783223547, - 136448.59234504277, - 60469.93855658149, - -15210.443160893019, - -82977.68855930796, - -145457.69030618898, - -200458.15264641846, - -242673.89578641244, - -284689.92038713093, - -311738.86773965653, - -340024.15752507135, - -358083.82796574745, - -368617.85786144965, - -377417.95699810074, - -370849.7336014371, - -362695.39170015673, - -338684.99150609085, - -309589.7972529272, - -274298.6027495683, - -234625.26630397906, - -197082.34925514448, - -159286.32495989196, - -127551.52450182296, - -99987.52635712427, - -77102.88589947113, - -57616.14725339542, - -39548.11659003485, - -21169.309660308547, - -3085.3858201306616, - 16451.222441715636, - 33774.330430410664, - 48765.69528832385, - 59678.684638849365, - 63692.444774925614, - 63177.258855144864, - 54849.61430089207, - 43651.13072649859, - 29282.963786606742, - 14779.844838273782, - 1847.95143383322, - -9423.0712971214, - -18011.595693552335, - -24959.840170940293, - -31038.57174935513, - -36820.51280035853, - -42948.84435058929, - -49604.88934089561, - -55752.91274049336, - -61626.19578380732, - -65257.88873954339, - -67342.41890054606, - -67371.61622909259, - -65902.01577129737, - -64245.91790056214, - -62211.500527831624, - -61571.440872074716, - -61408.1207412529, - -62207.252821366405, - -62957.15909327351, - -62665.01778126755, - -61523.779503177204, - -58374.56926359484, - -54463.37001182733, - -49841.45024951671, - -45668.28999663402, - -42854.680936113575, - -41602.86493694172, - -41983.71406453683, - -43304.835881016435, - -44753.30737313999, - -45310.07829608474, - -44323.35482920887, - -25098.19104148333 - ], - "flow:branch9_seg2:RCR_3": [ - 0.6073149361817964, - 4.127931055032544, - 8.037700110664307, - 12.205699180614792, - 16.68485131957758, - 21.917421752995097, - 29.299467295139017, - 39.31281930396866, - 54.05546911010082, - 73.04103784799354, - 96.84103561121336, - 124.6724371444114, - 153.65358418897705, - 184.109050348278, - 209.71891231124437, - 233.15404786999773, - 248.60224629681753, - 258.02550734746075, - 259.802338556718, - 251.01339158013144, - 237.6214896380185, - 214.13631708626673, - 187.20625875330506, - 152.71578211920541, - 112.75394851794812, - 69.46692181735281, - 22.988497931372763, - -23.844220198385372, - -69.1311655777881, - -111.90706622608428, - -149.27059500637301, - -180.42442912748402, - -206.0553076457275, - -222.6682837885482, - -236.4678566706797, - -242.80774080859905, - -247.7810792532469, - -248.50615808014783, - -243.9935985628613, - -238.03014870405585, - -224.54229100323147, - -209.41486599770684, - -187.16749636003442, - -160.98314482777008, - -132.333779673567, - -101.73589067054664, - -73.20800397750558, - -46.87051248109808, - -25.135424023251865, - -7.995822572084018, - 5.013988691119142, - 15.204679398305386, - 23.585506054920206, - 31.92874227714029, - 40.10050581084295, - 49.046825198487866, - 57.33596397411274, - 63.87340173242794, - 68.06174942524923, - 67.78467905093326, - 64.2519659597634, - 56.30009656143729, - 46.060319738359446, - 34.513763168387115, - 23.156700786639878, - 13.275004227437462, - 5.37794384705206, - -0.31932331809216297, - -4.23890207014792, - -7.1735787794892225, - -9.860605962572256, - -12.664231018056084, - -15.9180429864589, - -18.99706714678258, - -21.872441975996043, - -23.558021304592895, - -23.982483857067294, - -23.142716983789217, - -21.153574662363773, - -18.93091568012157, - -16.67850850529103, - -15.265874651729957, - -14.591782126465635, - -14.64522310136811, - -14.908290440382856, - -14.65794537613556, - -13.756981897661943, - -11.680547213710206, - -8.938994957601068, - -5.744122772670225, - -2.8115510969949735, - -0.7614988105056019, - 0.08580714421357055, - -0.2992402239576827, - -1.4997689134144534, - -2.900162711595624, - -3.78402486706776, - -3.6008107119939905, - -2.1201735097144976, - 0.6073149361817964 - ], - "pressure:branch9_seg2:RCR_3": [ - -21874.499729280193, - -32056.035834993494, - -25041.52375269049, - -17346.022619938023, - -8865.053705474385, - 1146.7644048317013, - 15059.538842660018, - 33810.257026433945, - 61054.3015741249, - 96303.42516824465, - 140753.62220597523, - 193455.65752167086, - 249832.48417444076, - 310546.0683631363, - 365176.65167934936, - 417784.67293211306, - 458629.4563391116, - 490316.31463861157, - 509863.25559071475, - 511848.1736840828, - 505523.77447364177, - 481471.28377244185, - 450036.16701820376, - 404194.58247556584, - 346892.03533113684, - 281397.4917433796, - 207705.3915757595, - 130354.22116487434, - 52463.00062099605, - -24207.419574382802, - -94695.24455803141, - -157232.3968391361, - -212603.66950759015, - -254597.95910358333, - -292909.92343412933, - -319667.83130332304, - -344414.0257877213, - -362351.7843139496, - -371488.7688116013, - -377850.1269217303, - -371220.6892260326, - -360894.9653060477, - -337664.28797824524, - -306298.3608859635, - -269057.0761425627, - -226589.5344556819, - -185518.41502072723, - -146161.17719534502, - -112682.2934802205, - -85393.39154946356, - -63824.91126175528, - -46092.4644577171, - -30711.27034251044, - -14856.320452774793, - 1247.514535109649, - 19157.40834284365, - 36555.9012327005, - 51559.50289256334, - 63081.637476730495, - 67427.20709442771, - 66327.03340768273, - 57625.34136175785, - 44556.57342981034, - 28618.36298081543, - 12196.851425758641, - -2533.8793720959084, - -14630.419805845224, - -23597.141533804337, - -29985.105753734035, - -34992.14946088587, - -39777.84815411341, - -44928.17315455137, - -51009.158224961066, - -57010.61427671735, - -62873.24237720499, - -66947.02245761608, - -69024.33720102586, - -69024.84119762287, - -67044.26032335615, - -64538.141439685576, - -61826.86684418179, - -60352.07908316073, - -60008.02325216986, - -60819.81133325078, - -61984.00677675182, - -62309.89559332374, - -61536.98731523662, - -58749.618841525815, - -54714.25065629896, - -49739.36096689944, - -44983.466501626244, - -41497.41953665302, - -39874.20246571066, - -40245.008927485294, - -42000.00026295742, - -44170.53807394577, - -45580.16037926896, - -45277.12864507256, - -42808.12420220245, - -21874.499729280193 - ], - "flow:branch10_seg2:RCR_4": [ - 0.2869279694095758, - 1.0294246086586747, - 1.8289382425007052, - 2.5956999754762866, - 3.5063923891070536, - 4.4835198271810155, - 6.056378659180264, - 8.190150342087257, - 11.261784852252614, - 15.491270739773508, - 20.089190146305434, - 26.337093842704792, - 31.703253801566962, - 38.30155439269162, - 43.410294050301, - 47.20036940135234, - 51.33315306647219, - 51.40448179504562, - 53.12016530097473, - 50.231607815871214, - 47.63598926758066, - 43.157235494023624, - 36.664690164601524, - 30.398200960725987, - 21.1867139779559, - 12.890116439780474, - 2.9681631945060905, - -6.557412882171443, - -15.926140789970521, - -24.258796481529025, - -32.0726170618464, - -37.37652236727054, - -42.951489872554475, - -45.695916222062365, - -47.84371884305568, - -49.68051780868965, - -49.164732835654995, - -50.460455568752025, - -48.24681566379492, - -47.621629970563866, - -44.56385142767873, - -40.951006171826265, - -36.94100900836102, - -30.39170772850396, - -25.699099297098673, - -18.80634111237124, - -13.900057264154947, - -8.763591624856241, - -4.593513254079372, - -1.8109782804050587, - 0.7934064410078854, - 2.5303084952149417, - 4.278173452504912, - 6.054875856589869, - 7.902836088278537, - 9.743929399009213, - 11.711207035398106, - 12.754897675280333, - 13.813873255377132, - 13.420193182459473, - 12.65462923859368, - 11.009894281413208, - 8.590581576728136, - 6.6371366784022925, - 4.1560370546781105, - 2.5644514697002845, - 1.0639493380967668, - 0.07198681876566908, - -0.5779549225320725, - -1.1625721184551538, - -1.740680494158712, - -2.3572090810433632, - -3.1228780975362795, - -3.7976286704691717, - -4.365087377526544, - -4.7467728512867815, - -4.637991612411909, - -4.548687955251589, - -3.9790330579580817, - -3.625121191447046, - -3.1991832510625104, - -2.922742804755311, - -2.975264050955937, - -2.930689190617078, - -3.1176510195880094, - -2.9853294481289336, - -2.758090626086969, - -2.3011816345994154, - -1.6283984123002715, - -1.0190978115014055, - -0.40090561120836055, - -0.08214480122700474, - 0.010500278610260802, - -0.14998464146768656, - -0.4453416974807807, - -0.7211421871813417, - -0.8651369048344142, - -0.7243634492031165, - -0.35288377818390076, - 0.2869279694095758 - ], - "pressure:branch10_seg2:RCR_4": [ - -20773.228266794667, - -30594.286060485483, - -23365.48709252652, - -16152.086345250897, - -7497.120949918909, - 1999.4210773778805, - 16735.32693919447, - 36652.68588996815, - 65004.79235961398, - 104002.52354719784, - 147407.37438343102, - 205991.71605899278, - 259321.85497813957, - 324501.196028696, - 379552.6048673541, - 425108.37810483284, - 474833.4904819811, - 491974.76740501146, - 522747.144771164, - 515771.43527419167, - 509984.230606945, - 487867.4109907607, - 447197.3061923882, - 406417.580055254, - 338928.2660967594, - 275928.292366851, - 196717.62879913335, - 117445.86636294468, - 36385.13089586195, - -39136.62235831162, - -113082.48422758753, - -168689.97561925265, - -228184.9524034382, - -265993.4462916197, - -299478.6980205289, - -331197.6684680322, - -343677.2827603516, - -371084.0898450881, - -369627.5521255432, - -380394.5510460605, - -370884.2108680128, - -355389.71284387144, - -335578.80801659886, - -293119.8936019791, - -263865.22484766576, - -214774.7844848582, - -179752.72295460594, - -141272.31746674594, - -109028.17578643464, - -86972.3130050178, - -65455.62922706097, - -50302.219589270084, - -34488.94851860231, - -17893.47788763165, - -112.80040227182715, - 18175.882303864866, - 38135.449340632156, - 51046.8608904101, - 64383.51849922608, - 66024.80276867324, - 64345.88120326627, - 55152.332053916965, - 38897.93278043809, - 25714.914138292683, - 7472.086547787922, - -4225.065474941307, - -15688.268035965539, - -23435.233573343365, - -28656.540187693383, - -33550.308904888174, - -38577.38448530658, - -44115.58865326066, - -51085.738254618554, - -57563.11681599546, - -63351.07593725922, - -67796.595090257, - -68275.55028838197, - -68871.27639431655, - -65444.70164099315, - -63593.855513798, - -61037.58184724094, - -59558.892342417916, - -60731.344959674, - -61103.322156508366, - -63384.982990573466, - -63077.40912281907, - -61923.19572658, - -58798.362028518015, - -53707.69562241167, - -48930.80093212997, - -43865.994808284006, - -41082.77118033766, - -40075.74459853276, - -41141.15404192597, - -43387.2440634492, - -45571.92362237816, - -46756.789404317846, - -45626.1206408366, - -42530.78615225854, - -20773.228266794667 - ], - "flow:branch11_seg0:RCR_5": [ - 1.2595860149773748, - 2.516815503620884, - 3.6747910447460232, - 4.919511438973296, - 6.250991461009387, - 8.050361164489686, - 10.905642130952149, - 14.715130714997118, - 20.525559498227555, - 27.217152683203178, - 35.71140913457239, - 44.56471089818882, - 53.40453136957669, - 62.188334708393924, - 67.79477552113306, - 74.04373333992952, - 75.37850700969595, - 77.0458894008406, - 74.80784182419373, - 69.33741836086041, - 64.10234307884741, - 53.96160596631757, - 44.96952112511572, - 32.111321598351005, - 18.504974851770466, - 4.310334396100056, - -10.584394701766042, - -24.928653178619175, - -37.667712812763575, - -49.6453601613069, - -58.269452968072684, - -65.44283015897243, - -70.31954557356123, - -71.69233246840946, - -74.2016192369093, - -72.56162459955709, - -73.26513761489271, - -70.93676012237152, - -67.55093906164393, - -64.47569195605018, - -57.690045955697315, - -52.071057423064396, - -42.96876247962187, - -34.36454664432685, - -25.239282917568197, - -16.660880317963365, - -9.400180722656012, - -3.2738774370726316, - 0.9424196912069275, - 4.0215821156037785, - 6.057012100639677, - 7.902702610419551, - 9.644972303189709, - 11.93542092540708, - 14.166100190517295, - 16.8924989153862, - 18.788194902873126, - 20.015778760027786, - 20.134391441360936, - 18.602700570193168, - 16.375027130552617, - 12.711427751638436, - 9.234040473440295, - 5.591258804702493, - 2.7419400144456776, - 0.5391365239306786, - -0.8955378712956296, - -1.7088735104258235, - -2.233897385169975, - -2.771401339123847, - -3.4696566246536666, - -4.345308363966819, - -5.384884094148163, - -6.169863539719661, - -6.849047828627905, - -6.837363010873261, - -6.544372557262687, - -5.813602645245386, - -4.961719231742189, - -4.2655851322886065, - -3.697535201705928, - -3.647742991609227, - -3.691633762955059, - -3.9901283647220764, - -4.071710186362227, - -3.7989796569811096, - -3.2922367446328145, - -2.2992373242290083, - -1.329197483222054, - -0.3370388980965592, - 0.32233713021719945, - 0.5200351545742724, - 0.303224060838781, - -0.22437102717069543, - -0.8076574740617133, - -1.2135280489055225, - -1.2143620933673598, - -0.7657755558211545, - 0.1182257672244197, - 1.2595860149773748 - ], - "pressure:branch11_seg0:RCR_5": [ - -15698.253577028721, - -23862.39908703619, - -15939.99880563541, - -7220.140531842767, - 2323.1448069461044, - 15013.929848999904, - 34577.47764059898, - 60618.854929549554, - 99784.86773831546, - 145725.87867522807, - 204201.2247343081, - 266964.3219452018, - 331617.78430445294, - 398127.8026210113, - 447275.74597869394, - 501577.1323852901, - 527404.5420558256, - 555302.4370929463, - 559781.2537106114, - 543768.5667840645, - 527879.1163354967, - 480631.3465076869, - 437896.0910021421, - 369290.2705336624, - 292892.8947646719, - 209649.77505728893, - 118616.03838426233, - 27390.432779357056, - -57543.8360168892, - -140822.94178573822, - -206537.67530294968, - -265270.1381215878, - -311735.4363738327, - -337818.56503946416, - -371099.2587962322, - -379566.57258032897, - -401751.85448781616, - -405550.56797440734, - -402094.2890344647, - -399776.0739227421, - -373839.3215773995, - -353424.443249933, - -310263.4407604745, - -267770.9847290436, - -220063.47285302484, - -173295.36033104456, - -132568.7846829386, - -96950.748156459, - -71490.10326093066, - -51981.04852706108, - -38094.24246042526, - -24893.135224777845, - -11911.55440914745, - 4839.7585344334375, - 21751.537436770708, - 42215.65749744922, - 58265.96455023266, - 70634.25048033928, - 76557.14095344237, - 72350.0106024637, - 63543.491777127994, - 45385.063757560674, - 27422.91460826528, - 7610.306088750295, - -8292.204543839596, - -20928.283406054128, - -29413.515087231473, - -34453.8480928779, - -37920.509828418835, - -41583.5617769344, - -46357.194389433804, - -52370.65072892085, - -59604.95121543257, - -65526.74318295239, - -70996.28887177994, - -72409.19335672009, - -72077.30943605717, - -69008.68520813526, - -64989.925462805346, - -61723.56509403397, - -59057.63351452307, - -59408.74910820087, - -60325.86781090688, - -62796.125459475814, - -64021.73526818978, - -63097.54254884168, - -60680.75142084491, - -55165.11115606721, - -49545.6055799385, - -43547.26532253133, - -39336.17521892432, - -37784.11398921014, - -38716.514587378566, - -41605.64735930754, - -44968.65208455601, - -47394.55997724431, - -47452.14598772252, - -44763.65607537959, - -39309.979597856596, - -15698.253577028721 - ], - "flow:branch12_seg2:RCR_6": [ - 0.13527075785320936, - 0.8289016129707673, - 1.5956789246555847, - 2.34407985094263, - 3.2312327995600176, - 4.181148373100897, - 5.598616480360877, - 7.604268734851213, - 10.364385197596212, - 14.342671603488991, - 18.69719029060922, - 24.575217229638394, - 29.945363873554196, - 36.13071217610223, - 41.55637242045278, - 45.25260358750752, - 49.85720979613703, - 50.3112284438593, - 52.082676524552966, - 50.03676535757935, - 47.151087210697206, - 43.855020053728424, - 37.50174965613393, - 31.985139594256758, - 23.322045167305365, - 15.128761842829535, - 5.9024368696533625, - -3.4084617657042933, - -12.412805268261076, - -20.725113677535685, - -28.74709845610575, - -34.40675750602489, - -40.10556792370119, - -43.516846817100095, - -45.66211797191145, - -48.44071285261261, - -48.15967141404546, - -49.85780192494906, - -48.31209466744917, - -47.4025041711077, - -45.408360871670475, - -41.781053212738264, - -38.55184611118768, - -32.395278584393935, - -27.603443211319906, - -21.085395029555862, - -15.742290286022367, - -10.784117773601109, - -6.201575624872641, - -3.1336168483441753, - -0.20524737211520025, - 1.8691171333542558, - 3.6804579319696145, - 5.503566554607758, - 7.364208740695153, - 9.192957502607472, - 11.218694827640897, - 12.407045175908841, - 13.477742512270506, - 13.408325934440871, - 12.713847747091565, - 11.420337942206533, - 9.153465782671308, - 7.274081722167663, - 4.846279732358436, - 3.0795832186555065, - 1.568104701537788, - 0.42183435373683426, - -0.28797905220270076, - -0.950529872861734, - -1.577782358606085, - -2.1949656944533746, - -2.9227617834500714, - -3.6101011187512504, - -4.173139449621239, - -4.635111353951216, - -4.617081079278709, - -4.574407575612262, - -4.105867704886595, - -3.7222875440881453, - -3.3461591900016843, - -3.014689112956399, - -3.041115366130747, - -2.961664994585891, - -3.0949097713511464, - -3.016341466248489, - -2.7889447614631946, - -2.4302531801433664, - -1.7908802762532776, - -1.208705465399137, - -0.5897782643909063, - -0.20220016586667064, - -0.05868761314785988, - -0.14277294915869282, - -0.3943377697778392, - -0.6489426863452826, - -0.809021820323453, - -0.7277459031229178, - -0.4255432329605661, - 0.13527075785320936 - ], - "pressure:branch12_seg2:RCR_6": [ - -21943.79600809284, - -32235.700215906607, - -25346.030990808496, - -18360.526197598025, - -9983.764917737657, - -802.3496406761768, - 12546.386550973624, - 31253.536169539635, - 56839.390185107666, - 93460.32484746416, - 134484.82826364398, - 189530.85389107605, - 242332.5220821942, - 303518.8990050003, - 360512.34283914044, - 404759.3476244366, - 457742.47459168517, - 477632.7072652567, - 508477.3719386405, - 508212.488854821, - 500035.11222996115, - 487633.0654652703, - 448412.11812658806, - 414102.21433689055, - 351723.05543911597, - 290292.61799200904, - 217671.67710477952, - 141178.74891243063, - 64184.78155603707, - -10035.161099998155, - -84534.95974215702, - -142004.70637172172, - -201522.75566900507, - -243961.42734824028, - -276789.39177371596, - -315630.6498224566, - -329711.00188471394, - -360091.89193850226, - -364025.80465560936, - -372490.29105843254, - -371816.2618022695, - -356549.8206287499, - -343486.8714410846, - -304863.7476011801, - -275415.159607477, - -230130.36317653416, - -192272.17382688806, - -155899.74583388158, - -120913.82009301972, - -96986.50940300888, - -73224.97863555531, - -55603.85595308548, - -39495.920877613215, - -22709.089091169764, - -4993.994415325127, - 13029.154615681871, - 33288.16428961179, - 47238.80959333786, - 60549.71462975808, - 64783.84391094333, - 63708.146591228586, - 57454.39993603555, - 42617.256042711146, - 30216.1260977354, - 12634.362615889537, - -287.4299890515067, - -11662.704030589846, - -20521.36445176662, - -26134.606746457976, - -31587.24447845851, - -36957.09364424994, - -42445.97057349367, - -49049.05976817915, - -55569.30946171962, - -61267.053232983766, - -66318.60013386593, - -67520.6098735755, - -68493.78699169501, - -65922.47894698413, - -63873.46398703245, - -61769.36274991631, - -59891.39502911093, - -60874.22054640563, - -60982.15918551484, - -62827.65091077003, - -62964.46422289445, - -61825.068582596374, - -59527.96345201977, - -54761.52652470907, - -50262.35236163254, - -45258.07117833871, - -41967.69807792377, - -40582.2686020577, - -41038.139111534554, - -42917.49984641672, - -44909.34508783508, - -46204.037898413095, - -45551.3712145898, - -43033.777741621794, - -21943.79600809284 - ], - "flow:branch13_seg2:RCR_7": [ - 0.14913696831383538, - 1.7393963326963062, - 3.560416253827823, - 5.4438321700757015, - 7.484892879719619, - 9.73377911058523, - 12.973638317968373, - 17.283042201884527, - 23.76623644425682, - 32.254989087889726, - 42.68972981783873, - 55.653769599678235, - 68.47387248178448, - 83.24361529529786, - 95.3453764346095, - 106.33407920876316, - 114.54732096689165, - 118.43877872025035, - 120.60746683430158, - 116.83049844831974, - 111.42280435160679, - 101.1158630299281, - 88.83085979985094, - 72.9568490691675, - 54.645066921984665, - 34.581324911103515, - 12.850464066803376, - -9.013521676078424, - -30.928656752514573, - -50.89018510025751, - -69.35084140693878, - -83.69129971156657, - -96.60163508122174, - -104.53693342090801, - -111.02128749455098, - -114.2639134292891, - -115.79761941702195, - -116.2235143783778, - -113.68582891383676, - -111.1680554549708, - -104.66807034790116, - -97.99202192280477, - -87.29422890788007, - -75.04474865585411, - -61.79959711160241, - -47.03482107014337, - -34.221385915880134, - -21.405615484027813, - -11.257527689943597, - -3.1226561527079775, - 3.1026363040792355, - 7.622637067045722, - 11.388749791325587, - 15.064679488819658, - 18.620502731449783, - 22.672968530128898, - 26.48845674331962, - 29.47499756057016, - 31.754493315011512, - 31.628306242143506, - 30.466877031687527, - 26.815151731030397, - 22.11603111659137, - 16.781242711349147, - 11.252215821084905, - 6.67607547181513, - 2.8158398147344235, - 0.07559473044034538, - -1.766180521278242, - -3.1526049150694715, - -4.328176520830712, - -5.549295958968675, - -7.044229945918112, - -8.433782790314122, - -9.839123881843166, - -10.695750868214274, - -10.92415168072524, - -10.660853769442747, - -9.668548630248793, - -8.721154573371455, - -7.58647093783955, - -6.855601291784406, - -6.519036370798491, - -6.44763643439738, - -6.650346078478328, - -6.576790389633415, - -6.255965890067671, - -5.381439136281466, - -4.141431055110584, - -2.640814731206206, - -1.250675969965863, - -0.20700156614602302, - 0.24317098770563858, - 0.12075436710597377, - -0.425039803134901, - -1.1149760946359126, - -1.6131007630113026, - -1.6166687684320469, - -1.047326152081749, - 0.14913696831383538 - ], - "pressure:branch13_seg2:RCR_7": [ - -22693.119487453365, - -32887.21803692654, - -25642.374728159903, - -17906.631638728148, - -9314.069691338664, - 334.27476958338036, - 13962.920978763053, - 32014.31950551634, - 58707.4559531275, - 93769.69496768307, - 137238.34457345298, - 191588.07819829683, - 247266.30947922578, - 311993.67574065324, - 368970.3224569046, - 423478.0899322505, - 469321.14322910126, - 500183.1142812715, - 525252.1489502835, - 528453.4627040772, - 524948.4507095332, - 502461.98887384834, - 470944.58832989546, - 424370.8102377108, - 366300.5793580093, - 299025.1764794964, - 222586.08852585612, - 142427.20078586717, - 58862.36245817838, - -20645.28872740238, - -97539.79726151374, - -161789.01830174064, - -222820.76451729954, - -267228.08770496066, - -307278.7727146214, - -336255.05278770765, - -359154.5064832031, - -378198.29665919795, - -386151.8779377248, - -393708.88163573656, - -386090.7698514451, - -376679.6327842765, - -351396.68648087856, - -318656.6444459185, - -280381.5095418267, - -234457.257264097, - -193525.46466477582, - -150645.2043706405, - -115744.67252801084, - -86777.94416450651, - -63698.59313572154, - -46028.81234768217, - -30488.930606553964, - -14764.440855381898, - 1056.7718145735012, - 19200.636810165826, - 37062.189617471675, - 52389.12355056175, - 65518.00627285929, - 70056.63256250932, - 70702.06329995758, - 61934.9112998561, - 48711.28798592805, - 32421.890260947348, - 14596.39352612353, - -523.9100060286718, - -13691.226081813382, - -23275.387187231394, - -29942.57015857777, - -35186.379845359115, - -39848.19337747294, - -44848.95432976991, - -51035.211208791836, - -57053.32002734733, - -63323.90048162277, - -67772.12658923697, - -70008.09102402655, - -70453.34127622933, - -68147.4748311327, - -65852.43999265358, - -62712.18532700747, - -60890.9886717124, - -60419.0032116653, - -60871.81074234555, - -62333.73591596844, - -62796.60477318814, - -62331.444945520045, - -59768.171074667014, - -55712.6127266489, - -50511.52274512644, - -45489.73588178907, - -41544.65268169076, - -39642.64768815259, - -39794.62562055289, - -41537.636781089066, - -43898.7192859146, - -45656.65257006872, - -45659.80744546612, - -43544.050988287665, - -22693.119487453365 - ], - "flow:branch14_seg2:RCR_8": [ - 2.9293608980830594, - 6.703940520441054, - 10.331638327543972, - 14.084349311835807, - 18.101100710848712, - 23.24632817495857, - 31.23512184141297, - 42.083340464269575, - 58.44779552309514, - 78.1022639454859, - 102.61272075624316, - 129.24946385282385, - 155.56490682355198, - 182.13270332301948, - 200.33374389325772, - 218.19575812125402, - 224.74142556474186, - 228.68684207520687, - 223.8323120989489, - 208.78531068590044, - 192.76634548690038, - 165.08143560207373, - 138.31383301443316, - 102.53697544396415, - 63.631857183772546, - 22.638339825679303, - -20.551108786845028, - -62.4425005477053, - -100.87383164498165, - -136.44054434304368, - -164.30391438006117, - -186.76640893238022, - -203.55898036110634, - -210.42753462036265, - -218.29119635822127, - -216.80474154557896, - -218.5954058777042, - -214.3381457879132, - -205.8093639403453, - -197.34817434760515, - -179.30279547557544, - -162.80412463404105, - -137.31683511002936, - -111.38692258589744, - -84.08168269652097, - -57.02046097935567, - -34.07676296394993, - -14.112194194925623, - 0.09334432474538065, - 10.232935238502028, - 17.118166144347825, - 22.82688575543603, - 28.09262090395231, - 34.72243406794468, - 41.405705966945675, - 49.36509635034724, - 55.62410450604869, - 59.7891810069548, - 60.98176682437788, - 57.205688175089165, - 51.0263023415327, - 40.5969945185534, - 29.899076790613766, - 18.90078982688441, - 9.611368401133582, - 2.470026683811097, - -2.439494616175443, - -5.32016918742716, - -7.03633112423755, - -8.568208294899133, - -10.50938154560343, - -12.968500163702728, - -16.01209729589642, - -18.519798560487512, - -20.692710133699222, - -21.090865255004132, - -20.397521714544865, - -18.485450433002867, - -15.899739022147518, - -13.688848955867892, - -11.783100376589456, - -11.263055699450485, - -11.327498657678365, - -12.066572781598815, - -12.480501535481352, - -11.902825098110858, - -10.540285632153788, - -7.8170810370280295, - -4.873984580182963, - -1.8109573818264095, - 0.4259771050887456, - 1.3847109432968887, - 1.035315799388687, - -0.37092842953878696, - -2.1273727155807816, - -3.5207465612507733, - -3.8381094024117397, - -2.791526780876889, - -0.40466680363815044, - 2.9293608980830594 - ], - "pressure:branch14_seg2:RCR_8": [ - -17340.842197641283, - -25704.116115792353, - -17689.88678443113, - -9149.07704818244, - 208.07569212234003, - 12108.450686314114, - 30076.490463713824, - 54353.09377628781, - 90475.88321995155, - 134450.30854988607, - 189596.69980470682, - 250937.50686070466, - 313619.26961201674, - 378900.479348132, - 429525.4407088185, - 480801.10734364507, - 510898.3301609325, - 536076.7464683008, - 543991.5509456599, - 530992.3762282955, - 514840.80475684645, - 474050.132832168, - 432810.07612763636, - 371409.0029880396, - 300811.95775951695, - 222976.08498252067, - 137467.01859898385, - 51162.254873539685, - -31575.634516936192, - -111569.90904767984, - -179006.62057889145, - -237700.78068382703, - -286835.8106924629, - -317360.7531681726, - -350327.0710437839, - -365186.9799003265, - -386273.9093829988, - -395384.09766242123, - -395417.2131648372, - -394912.48171429225, - -374470.59101940505, - -355661.33423837525, - -317528.55800895055, - -276330.542341524, - -230326.68544167344, - -182506.34430559864, - -140796.8215866597, - -103174.0234911406, - -75451.34234663016, - -54727.6985081162, - -39689.989127217435, - -26476.133435691667, - -13722.365911765788, - 2155.9970724100367, - 18643.642166883485, - 38189.812977070425, - 54971.74706452324, - 68020.29119707707, - 75473.22022101913, - 73045.12784283659, - 65521.15969096599, - 48993.797445163524, - 31056.00861295228, - 11659.615461162792, - -5243.3155859639, - -18591.432551568854, - -28057.21482954508, - -33858.85629057719, - -37556.69558929027, - -41016.70120188034, - -45412.30530179548, - -50986.050669171666, - -57923.42575200918, - -64025.76461577614, - -69657.90601090033, - -71919.36520182552, - -72013.77494009836, - -69621.32031198729, - -65706.53560320953, - -62335.686491638466, - -59388.47937419625, - -59047.59471195082, - -59834.39531713772, - -61961.866777789364, - -63504.41625295025, - -63095.52742963258, - -61075.945701989534, - -56229.12470655726, - -50721.6066100148, - -44734.81516039217, - -40147.40257884652, - -37932.772886513296, - -38255.170970018626, - -40720.42162228427, - -44002.01007955778, - -46703.09051682645, - -47372.536532077094, - -45344.25715971965, - -40559.357896612935, - -17340.842197641283 - ], - "flow:branch15_seg2:RCR_9": [ - -0.11045931972051745, - 3.2401832637242527, - 7.008556902465879, - 11.027146505515793, - 15.344311751176122, - 20.37706978094696, - 27.450075821977602, - 37.02386460300323, - 51.06127647333138, - 69.08386964489557, - 91.56820677597875, - 117.68405306656172, - 144.58299207968932, - 172.46184549983528, - 195.28370759242264, - 215.50780972460677, - 227.788372988282, - 234.21034183078314, - 233.51741740807788, - 223.31353988322576, - 209.4373945044763, - 187.01855526852668, - 162.3637512254558, - 131.64545050023003, - 96.8927113289288, - 59.94045206785309, - 20.698203369002165, - -18.491091508313513, - -56.18551392395989, - -91.84016702738981, - -123.03695255246959, - -149.3696060995227, - -171.55979960467567, - -186.4375244657463, - -199.67018198182257, - -206.80462762932288, - -213.37811379158327, - -216.4788411979145, - -215.08785785496204, - -212.6023731951135, - -203.2001226704824, - -192.17580728712613, - -174.24414515786538, - -152.2428957288988, - -127.42218095280828, - -100.14788688215259, - -74.24370704403499, - -49.87570516952564, - -29.43417924631802, - -13.059893018758537, - -0.437043433878288, - 9.573016998309352, - 17.88963291205877, - 26.165853375750533, - 34.274367508523476, - 43.08635272711343, - 51.23884414331966, - 57.6718778067314, - 61.817838958783724, - 61.66666648836982, - 58.379923474976685, - 50.90056850576032, - 41.26705877047108, - 30.435940145237737, - 19.821598541257973, - 10.642464664147372, - 3.348179165941563, - -1.8783447951519106, - -5.44719089194839, - -8.110632967858136, - -10.5628807984139, - -13.146277274209718, - -16.172662845759668, - -19.05192713771596, - -21.750861118745426, - -23.341655592301834, - -23.752598019033773, - -22.97859856246112, - -21.117904418110147, - -19.03662272509253, - -16.923363396018814, - -15.594120502672414, - -14.959417703473902, - -15.009268952381987, - -15.260809448657549, - -15.02439787726634, - -14.166337943756472, - -12.190655896156525, - -9.56967809448332, - -6.5072461921549625, - -3.6828487434721127, - -1.6913389247082524, - -0.8416083114683509, - -1.1655312104148785, - -2.2710691223791715, - -3.5743053714056088, - -4.39276976910521, - -4.198866184213384, - -2.769604181917329, - -0.11045931972051745 - ], - "pressure:branch15_seg2:RCR_9": [ - -21903.242860110062, - -32355.53882525621, - -25639.322874225414, - -18264.525594802548, - -10134.816888402953, - -547.3315599264861, - 12745.696701969484, - 30638.53709196503, - 56552.068135155874, - 89993.8817077423, - 131987.02078237646, - 181478.9478290562, - 233927.25200838194, - 289753.38779701706, - 338979.2921305254, - 385301.98974293144, - 419728.6676249226, - 445079.5797364662, - 458983.9032437715, - 456929.2791282228, - 448027.2671719092, - 423952.7162833794, - 394586.2270238196, - 353463.1129395684, - 303528.72099551506, - 247623.260722008, - 185441.96402974546, - 120757.49157778645, - 55954.34887406926, - -7914.560524508863, - -66722.79789363714, - -119423.47687278308, - -166944.88351294087, - -203711.12284222565, - -238637.1872823626, - -264249.5832616742, - -289260.0198469288, - -308870.73032352753, - -321095.5898159547, - -331352.4246918498, - -329870.5083796168, - -324998.25984676165, - -307856.81461495394, - -282656.32198467635, - -251272.002203993, - -214081.217781602, - -177340.4790968622, - -141397.5730410662, - -110335.08316261723, - -84664.87549667, - -64132.44031223863, - -47113.94008490687, - -32260.67632788164, - -16939.69042734508, - -1365.252586489229, - 15894.831893231682, - 32633.18704178719, - 47025.520464585585, - 58035.30902958865, - 62150.83653014629, - 61031.59215879343, - 52708.07386552472, - 40274.94532337689, - 25196.42264748922, - 9730.069021689797, - -4062.7985627283933, - -15340.940288079866, - -23669.36083644568, - -29587.788437597366, - -34234.25200660221, - -38701.67825499255, - -43542.09377124897, - -49285.84539830249, - -54980.70741726476, - -60561.9364732636, - -64478.62349791111, - -66528.56535155313, - -66632.93219498036, - -64865.83333691071, - -62602.94527059696, - -60140.33075696446, - -58830.071404201204, - -58582.07651981772, - -59420.673657441184, - -60597.54004601077, - -60977.55287766204, - -60307.72571420963, - -57722.71683591344, - -53929.49581207263, - -49224.644897571154, - -44706.987069894756, - -41383.02376700193, - -39823.2479436459, - -40158.467870317705, - -41816.51372982433, - -43879.608654445816, - -45227.967647328005, - -44950.63873824584, - -42610.23049474491, - -21903.242860110062 - ] + { + "bc_name": "RCR_2", + "bc_type": "RCR", + "bc_values": { + "C": 6.2771e-5, + "Pd": 0.0, + "Rd": 22067.45, + "Rp": 3495.473 + } + }, + { + "bc_name": "RCR_3", + "bc_type": "RCR", + "bc_values": { + "C": 0.00013478, + "Pd": 0.0, + "Rd": 10230.62, + "Rp": 1627.759 + } + }, + { + "bc_name": "RCR_4", + "bc_type": "RCR", + "bc_values": { + "C": 2.69561e-5, + "Pd": 0.0, + "Rd": 51446.11, + "Rp": 8139.868 + } + }, + { + "bc_name": "RCR_5", + "bc_type": "RCR", + "bc_values": { + "C": 3.67007e-5, + "Pd": 0.0, + "Rd": 38604.41, + "Rp": 5981.256 + } + }, + { + "bc_name": "RCR_6", + "bc_type": "RCR", + "bc_values": { + "C": 2.69561e-5, + "Pd": 0.0, + "Rd": 51680.49, + "Rp": 8140.638 + } + }, + { + "bc_name": "RCR_7", + "bc_type": "RCR", + "bc_values": { + "C": 6.0493e-5, + "Pd": 0.0, + "Rd": 23055.22, + "Rp": 3627.554 + } + }, + { + "bc_name": "RCR_8", + "bc_type": "RCR", + "bc_values": { + "C": 0.000112253, + "Pd": 0.0, + "Rd": 12537.03, + "Rp": 1955.241 + } + }, + { + "bc_name": "RCR_9", + "bc_type": "RCR", + "bc_values": { + "C": 0.00013478, + "Pd": 0.0, + "Rd": 10019.46, + "Rp": 1627.064 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0], + "junction_name": "J0", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [1, 9, 21, 34, 37] + }, + { + "inlet_vessels": [1], + "junction_name": "J1", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [2, 27] + }, + { + "inlet_vessels": [2], + "junction_name": "J2", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [3, 15] + }, + { + "inlet_vessels": [5], + "junction_name": "J3", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [6, 24] + }, + { + "inlet_vessels": [11], + "junction_name": "J4", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [12, 31] + }, + { + "inlet_vessels": [17], + "junction_name": "J5", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [18, 28] + }, + { + "inlet_vessels": [3], + "junction_name": "J6", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [4] + }, + { + "inlet_vessels": [4], + "junction_name": "J7", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [5] + }, + { + "inlet_vessels": [6], + "junction_name": "J8", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [7] + }, + { + "inlet_vessels": [7], + "junction_name": "J9", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [8] + }, + { + "inlet_vessels": [9], + "junction_name": "J10", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [10] + }, + { + "inlet_vessels": [10], + "junction_name": "J11", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [11] + }, + { + "inlet_vessels": [12], + "junction_name": "J12", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [13] + }, + { + "inlet_vessels": [13], + "junction_name": "J13", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [14] + }, + { + "inlet_vessels": [15], + "junction_name": "J14", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [16] + }, + { + "inlet_vessels": [16], + "junction_name": "J15", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [17] + }, + { + "inlet_vessels": [18], + "junction_name": "J16", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [19] + }, + { + "inlet_vessels": [19], + "junction_name": "J17", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [20] + }, + { + "inlet_vessels": [21], + "junction_name": "J18", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [22] + }, + { + "inlet_vessels": [22], + "junction_name": "J19", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [23] + }, + { + "inlet_vessels": [24], + "junction_name": "J20", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [25] + }, + { + "inlet_vessels": [25], + "junction_name": "J21", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [26] + }, + { + "inlet_vessels": [28], + "junction_name": "J22", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [29] + }, + { + "inlet_vessels": [29], + "junction_name": "J23", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [30] + }, + { + "inlet_vessels": [31], + "junction_name": "J24", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [32] + }, + { + "inlet_vessels": [32], + "junction_name": "J25", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [33] + }, + { + "inlet_vessels": [34], + "junction_name": "J26", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [35] + }, + { + "inlet_vessels": [35], + "junction_name": "J27", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [36] + }, + { + "inlet_vessels": [37], + "junction_name": "J28", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [38] + }, + { + "inlet_vessels": [38], + "junction_name": "J29", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [39] + } + ], + "simulation_parameters": { + "density": 1.06, + "model_name": "0140_2001", + "number_of_cardiac_cycles": 9, + "number_of_time_pts_per_cardiac_cycle": 882, + "viscosity": 0.04, + "output_all_cycles": false + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 10.363988810880336, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 1, + "vessel_length": 4.66281727880718, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 2, + "vessel_length": 2.116158678641109, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 3, + "vessel_length": 0.35990552284365307, + "vessel_name": "branch3_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 4, + "vessel_length": 0.864484150026015, + "vessel_name": "branch3_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 5, + "vessel_length": 8.844469069947266, + "vessel_name": "branch3_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 6, + "vessel_length": 0.3274863354762827, + "vessel_name": "branch4_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 7, + "vessel_length": 0.13126708493434283, + "vessel_name": "branch4_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_0" + }, + "vessel_id": 8, + "vessel_length": 14.522367746763132, + "vessel_name": "branch4_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 9, + "vessel_length": 0.4354726919461728, + "vessel_name": "branch5_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 10, + "vessel_length": 1.1021257371704019, + "vessel_name": "branch5_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 11, + "vessel_length": 1.197892120556633, + "vessel_name": "branch5_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 12, + "vessel_length": 0.22487849028322263, + "vessel_name": "branch6_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 13, + "vessel_length": 1.3305241414719227, + "vessel_name": "branch6_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_1" + }, + "vessel_id": 14, + "vessel_length": 2.4724650795955725, + "vessel_name": "branch6_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 15, + "vessel_length": 3.1676143243342416, + "vessel_name": "branch7_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 16, + "vessel_length": 0.9349331414099631, + "vessel_name": "branch7_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 17, + "vessel_length": 6.532761902851568, + "vessel_name": "branch7_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 18, + "vessel_length": 12.131550548508903, + "vessel_name": "branch8_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 19, + "vessel_length": 1.3728431428203225, + "vessel_name": "branch8_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_2" + }, + "vessel_id": 20, + "vessel_length": 0.7043738355971776, + "vessel_name": "branch8_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 21, + "vessel_length": 1.1208205168121053, + "vessel_name": "branch9_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 22, + "vessel_length": 1.3241597330959292, + "vessel_name": "branch9_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_3" + }, + "vessel_id": 23, + "vessel_length": 4.00169754634469, + "vessel_name": "branch9_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 24, + "vessel_length": 0.552191808078751, + "vessel_name": "branch10_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 25, + "vessel_length": 0.5270977183058395, + "vessel_name": "branch10_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_4" + }, + "vessel_id": 26, + "vessel_length": 3.5488612883908073, + "vessel_name": "branch10_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_5" + }, + "vessel_id": 27, + "vessel_length": 4.236657060976641, + "vessel_name": "branch11_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 28, + "vessel_length": 0.23664468015987364, + "vessel_name": "branch12_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 29, + "vessel_length": 2.4484809178077045, + "vessel_name": "branch12_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_6" + }, + "vessel_id": 30, + "vessel_length": 0.23609553650119913, + "vessel_name": "branch12_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 31, + "vessel_length": 1.2623969755085829, + "vessel_name": "branch13_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 32, + "vessel_length": 2.6214394087987603, + "vessel_name": "branch13_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_7" + }, + "vessel_id": 33, + "vessel_length": 8.331258378528362, + "vessel_name": "branch13_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 34, + "vessel_length": 0.34130122602911156, + "vessel_name": "branch14_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 35, + "vessel_length": 1.3016520368622686, + "vessel_name": "branch14_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_8" + }, + "vessel_id": 36, + "vessel_length": 2.1909658954476545, + "vessel_name": "branch14_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 37, + "vessel_length": 2.410068685549808, + "vessel_name": "branch15_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_id": 38, + "vessel_length": 1.035048097779632, + "vessel_name": "branch15_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_9" + }, + "vessel_id": 39, + "vessel_length": 3.1133534339282987, + "vessel_name": "branch15_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 0.0, + "L": 0.0, + "R_poiseuille": 0.0, + "stenosis_coefficient": 0.0 + } } -} \ No newline at end of file + ], + "calibration_parameters": { + "tolerance_gradient": 1e-5, + "tolerance_increment": 1e-9, + "maximum_iterations": 20, + "calibrate_stenosis_coefficient": true, + "set_capacitance_to_zero": false + }, + "y": { + "flow:branch0_seg0:J0": [ + 25.863323772071247, 26.06534674187386, 26.459196283666618, + 27.061639362616134, 27.88760555157769, 28.983016274996206, + 30.452124167904238, 32.430199389180856, 35.14836624831182, + 38.80758211143984, 43.661115494028934, 49.87416140261827, + 57.548975918926985, 66.72639482604868, 77.18688725274224, + 88.83613024474077, 101.23713669719305, 114.15430812387144, + 127.14319510970785, 139.73852082273768, 151.68961485662334, + 162.48867104512536, 171.95511061891037, 179.69716263964915, + 185.46565707395226, 189.08166141476366, 190.39708702196583, + 189.37892044192168, 186.11699630312276, 180.713119197081, + 173.46985007178625, 164.6381410961134, 154.53433544794441, + 143.56598965027945, 131.87453556098077, 119.84913878577369, + 107.53092980714148, 95.18456966323538, 83.00803881751354, + 71.11288191795548, 59.84187394901971, 49.30463606527955, + 39.84944691398702, 31.650020879730278, 24.86369061791769, + 19.548567269207535, 15.641451594755027, 13.031591526129706, + 11.50925189664932, 10.866502817983738, 10.904218934912478, + 11.483416985155252, 12.51982008170942, 14.001353209480461, + 15.917927961234305, 18.301323798323622, 21.104084682135632, + 24.251912478613047, 27.60988161549061, 30.97703550721582, + 34.18092551885121, 37.00918861664934, 39.35046152966264, + 41.12700343575892, 42.354204580073365, 43.09322224059531, + 43.437550864493616, 43.49122078037609, 43.336241793805236, + 43.01981831913373, 42.55858004514483, 41.94606348969096, + 41.166901188734684, 40.22980631619228, 39.14743037841075, + 37.98006936721861, 36.78418486004231, 35.62782883646672, + 34.558886323876024, 33.59440656670651, 32.73499664299225, + 31.94169655252137, 31.184279982752365, 30.425741445838774, + 29.66031036327914, 28.9104059998316, 28.20728285662232, + 27.607308334983024, 27.141972028881682, 26.83267756919372, + 26.666609880773095, 26.601017531143924, 26.579349103458593, + 26.5434365817637, 26.454653953989112, 26.303415397928898, + 26.114703113304863, 25.93765665448461, 25.834821269358752, + 25.863323772071247 + ], + "pressure:branch0_seg0:J0": [ + 109184.2247568038, 108960.08334194825, 108808.06574557221, + 108731.74896974048, 108739.52602852343, 108852.52443392164, + 109130.65677680589, 109628.5798950928, 110459.49911959124, + 111694.7250239259, 113426.70669932579, 115727.48340001119, + 118584.44801677066, 122054.67606022613, 125984.32388200116, + 130385.63529497715, 135076.34647184293, 139976.53360305945, + 144968.40845658391, 149821.79630325394, 154548.70591976435, + 158888.73640108993, 162846.17958416927, 166220.22044639027, + 168913.964837845, 170881.90888809774, 172036.83396279917, + 172388.77362303305, 171961.4944070379, 170800.28099754866, + 169015.85834421997, 166724.15396851714, 163986.2168437468, + 161004.30752469026, 157733.61560797074, 154350.84037058838, + 150808.796995675, 147199.93892578868, 143635.24895918067, + 140070.97164123447, 136727.099766906, 133549.4813533953, + 130736.24146440033, 128317.26758275626, 126304.78114427126, + 124737.65773122244, 123521.38916637588, 122638.59596455404, + 121992.47646638434, 121521.25083525143, 121180.33089748345, + 120952.43649170286, 120834.63132245911, 120860.82711785649, + 121033.78095603862, 121384.33913911138, 121887.03597776733, + 122499.30294968892, 123181.13403299895, 123828.90644073393, + 124411.91644126122, 124839.81798045697, 125101.69245403043, + 125190.7135153392, 125124.4371865532, 124944.47306541247, + 124682.85457732512, 124373.60266435878, 124034.46070551482, + 123665.30323659649, 123255.9944818378, 122796.83522608771, + 122273.18686325914, 121695.81835354793, 121067.43992441318, + 120420.3975050044, 119776.87622267928, 119155.21909994849, + 118573.36839880272, 118019.56638371758, 117492.44049653572, + 116966.73814747296, 116431.65285694577, 115877.86671576713, + 115308.98052861723, 114745.59030351634, 114200.5697665593, + 113701.13744281624, 113252.0483103213, 112857.64790667953, + 112504.07554719147, 112168.46991160532, 111827.6173024971, + 111462.16627531259, 111065.97085790984, 110645.54173513905, + 110220.0156388605, 109815.13620006792, 109454.9922570863, + 109184.2247568038 + ], + "flow:J0:branch1_seg0": [ + 7.23486699454111, 7.308799409906743, 7.42958760593467, 7.608094153155919, + 7.84904783991485, 8.177495118521556, 8.628202784872602, 9.239974736535169, + 10.08687402661895, 11.199194091243369, 12.671234937730405, + 14.498402220766632, 16.73915410311762, 19.371483523431163, + 22.306724105178784, 25.60020471543251, 29.024529402411538, + 32.649276903903505, 36.242525268337275, 39.72316478747301, + 43.0526954999471, 46.017073706330876, 48.64809709421645, + 50.75951839364263, 52.331233276601914, 53.29839334644185, + 53.62699043782589, 53.310212439991744, 52.40202387611779, + 50.893528404901744, 48.928146034360346, 46.500712293738125, + 43.746674222009545, 40.76958071019044, 37.53973124074869, + 34.25555659201786, 30.811685999113067, 27.396147729846703, + 24.00258868989273, 20.683529765100975, 17.562893692993622, + 14.625685471698914, 12.019985623027043, 9.718356623639293, + 7.807650217988583, 6.256708466098765, 5.0749240151124075, + 4.228048166579419, 3.656917269174855, 3.332806839221945, + 3.2069633672009417, 3.258867182348223, 3.470743312831576, + 3.838712287237346, 4.348141985303119, 5.008283336226442, + 5.775882227485648, 6.641868719808868, 7.5475200264356905, + 8.44894786732002, 9.30291139644758, 10.049819591324827, + 10.688667955275355, 11.183493228602465, 11.556160062547152, + 11.808176870152554, 11.9609809120793, 12.036319374098492, + 12.045588212056774, 11.995979934673167, 11.892606052834523, + 11.733702562267984, 11.522094159958838, 11.266905795734532, + 10.972485885040324, 10.664431188880727, 10.346675405361776, + 10.043686891303238, 9.756004090339355, 9.489436726713258, + 9.243771976493965, 9.003969528638905, 8.773839593240016, + 8.540702845707001, 8.314469724897254, 8.101597784970666, 7.90781803153242, + 7.749718302864885, 7.626043115731935, 7.541201589138908, + 7.487092297312254, 7.451430262797096, 7.422635200023167, + 7.389506300289824, 7.3472874928992615, 7.2974113235328675, + 7.249537563920786, 7.214180469597871, 7.20610417361053, 7.23486699454111 + ], + "pressure:J0:branch1_seg0": [ + 109184.2247568038, 108960.08334194825, 108808.06574557221, + 108731.74896974048, 108739.52602852343, 108852.52443392164, + 109130.65677680589, 109628.5798950928, 110459.49911959124, + 111694.7250239259, 113426.70669932579, 115727.48340001119, + 118584.44801677066, 122054.67606022613, 125984.32388200116, + 130385.63529497715, 135076.34647184293, 139976.53360305945, + 144968.40845658391, 149821.79630325394, 154548.70591976435, + 158888.73640108993, 162846.17958416927, 166220.22044639027, + 168913.964837845, 170881.90888809774, 172036.83396279917, + 172388.77362303305, 171961.4944070379, 170800.28099754866, + 169015.85834421997, 166724.15396851714, 163986.2168437468, + 161004.30752469026, 157733.61560797074, 154350.84037058838, + 150808.796995675, 147199.93892578868, 143635.24895918067, + 140070.97164123447, 136727.099766906, 133549.4813533953, + 130736.24146440033, 128317.26758275626, 126304.78114427126, + 124737.65773122244, 123521.38916637588, 122638.59596455404, + 121992.47646638434, 121521.25083525143, 121180.33089748345, + 120952.43649170286, 120834.63132245911, 120860.82711785649, + 121033.78095603862, 121384.33913911138, 121887.03597776733, + 122499.30294968892, 123181.13403299895, 123828.90644073393, + 124411.91644126122, 124839.81798045697, 125101.69245403043, + 125190.7135153392, 125124.4371865532, 124944.47306541247, + 124682.85457732512, 124373.60266435878, 124034.46070551482, + 123665.30323659649, 123255.9944818378, 122796.83522608771, + 122273.18686325914, 121695.81835354793, 121067.43992441318, + 120420.3975050044, 119776.87622267928, 119155.21909994849, + 118573.36839880272, 118019.56638371758, 117492.44049653572, + 116966.73814747296, 116431.65285694577, 115877.86671576713, + 115308.98052861723, 114745.59030351634, 114200.5697665593, + 113701.13744281624, 113252.0483103213, 112857.64790667953, + 112504.07554719147, 112168.46991160532, 111827.6173024971, + 111462.16627531259, 111065.97085790984, 110645.54173513905, + 110220.0156388605, 109815.13620006792, 109454.9922570863, + 109184.2247568038 + ], + "flow:J0:branch5_seg0": [ + 5.4375478162733755, 5.483272706587209, 5.574546685809298, + 5.713125535225978, 5.901911731383291, 6.147647235152849, + 6.472809778232448, 6.907546647127241, 7.502898215847121, + 8.311268262718105, 9.383936977688641, 10.773444126864975, + 12.492547437728211, 14.562945214312458, 16.93959784902539, + 19.580637950193587, 22.41499920994195, 25.352488556880175, + 28.321765450888567, 31.20360148915004, 33.93137121499567, + 36.405965319667885, 38.565319674238864, 40.33362417601144, + 41.642886009147695, 42.45092500721531, 42.721244006002735, + 42.44551102818489, 41.634903423855285, 40.326294004940024, + 38.57403261310543, 36.46138971853747, 34.050211824087484, + 31.44172486896506, 28.689659804435646, 25.863205446799796, + 23.00311401606976, 20.142833779890072, 17.342714638778013, + 14.623020971757121, 12.056678169697195, 9.675602962357841, + 7.550674015700896, 5.735868284732074, 4.25444521191055, 3.129832919872798, + 2.333707310536194, 1.840338982366575, 1.5977999941814776, + 1.548205419316709, 1.643858758792726, 1.8472340447045892, + 2.1382317071539587, 2.5160473559630003, 2.98165766393436, + 3.5443866592325572, 4.201352601132688, 4.93285524709079, + 5.714612320782986, 6.496066980540755, 7.2384940665259165, + 7.892125304580829, 8.424855997313683, 8.823381011947854, + 9.087273945763139, 9.236079615797324, 9.29328818935135, 9.284881595148942, + 9.233441817377226, 9.150876516223455, 9.040672371885996, + 8.900965930922174, 8.725584265542256, 8.514891562805344, 8.27102654161215, + 8.005929764668728, 7.7357512439354466, 7.474584370564958, + 7.237147742325565, 7.026384745787861, 6.842483615427028, + 6.677145376346303, 6.51971531672521, 6.362266322315722, 6.200225141690724, + 6.03881193278834, 5.886260137657523, 5.755474490352005, 5.656298008113565, + 5.594280293483494, 5.567108721147121, 5.565057278540992, + 5.573567722049154, 5.577820992183491, 5.567416993321287, + 5.539197725496349, 5.498517695574097, 5.45790300090882, 5.432610112107991, + 5.4375478162733755 + ], + "pressure:J0:branch5_seg0": [ + 109184.2247568038, 108960.08334194825, 108808.06574557221, + 108731.74896974048, 108739.52602852343, 108852.52443392164, + 109130.65677680589, 109628.5798950928, 110459.49911959124, + 111694.7250239259, 113426.70669932579, 115727.48340001119, + 118584.44801677066, 122054.67606022613, 125984.32388200116, + 130385.63529497715, 135076.34647184293, 139976.53360305945, + 144968.40845658391, 149821.79630325394, 154548.70591976435, + 158888.73640108993, 162846.17958416927, 166220.22044639027, + 168913.964837845, 170881.90888809774, 172036.83396279917, + 172388.77362303305, 171961.4944070379, 170800.28099754866, + 169015.85834421997, 166724.15396851714, 163986.2168437468, + 161004.30752469026, 157733.61560797074, 154350.84037058838, + 150808.796995675, 147199.93892578868, 143635.24895918067, + 140070.97164123447, 136727.099766906, 133549.4813533953, + 130736.24146440033, 128317.26758275626, 126304.78114427126, + 124737.65773122244, 123521.38916637588, 122638.59596455404, + 121992.47646638434, 121521.25083525143, 121180.33089748345, + 120952.43649170286, 120834.63132245911, 120860.82711785649, + 121033.78095603862, 121384.33913911138, 121887.03597776733, + 122499.30294968892, 123181.13403299895, 123828.90644073393, + 124411.91644126122, 124839.81798045697, 125101.69245403043, + 125190.7135153392, 125124.4371865532, 124944.47306541247, + 124682.85457732512, 124373.60266435878, 124034.46070551482, + 123665.30323659649, 123255.9944818378, 122796.83522608771, + 122273.18686325914, 121695.81835354793, 121067.43992441318, + 120420.3975050044, 119776.87622267928, 119155.21909994849, + 118573.36839880272, 118019.56638371758, 117492.44049653572, + 116966.73814747296, 116431.65285694577, 115877.86671576713, + 115308.98052861723, 114745.59030351634, 114200.5697665593, + 113701.13744281624, 113252.0483103213, 112857.64790667953, + 112504.07554719147, 112168.46991160532, 111827.6173024971, + 111462.16627531259, 111065.97085790984, 110645.54173513905, + 110220.0156388605, 109815.13620006792, 109454.9922570863, + 109184.2247568038 + ], + "flow:J0:branch9_seg0": [ + 4.603306224222611, 4.6257863490276065, 4.681920641318977, + 4.774165239742731, 4.905119227141204, 5.079385104900929, + 5.310797128284378, 5.620882086490945, 6.0434519710340195, + 6.618882812374348, 7.386444214732206, 8.387205673497858, 9.64067944419896, + 11.162369068160086, 12.934349097971154, 14.92335993084346, + 17.08460034765694, 19.349855428258447, 21.6633279329863, + 23.93963875896967, 26.116293295417712, 28.125339755250874, + 29.906422963223502, 31.408995272432538, 32.57466286466512, + 33.36813739651153, 33.75911662681014, 33.73406700987722, 33.2969254104764, + 32.46848746481316, 31.283523590324553, 29.79789306335981, + 28.05974080651138, 26.13664291863365, 24.079394514989342, + 21.933867787068518, 19.741677359583306, 17.52578469106344, + 15.331631680464117, 13.182568224281638, 11.122910084178546, + 9.190600607250097, 7.428367178335163, 5.886695276895574, + 4.5902699181318365, 3.5613603950519903, 2.7935480123004823, + 2.269658597894026, 1.9585164398682435, 1.8189008732627754, + 1.812583472588597, 1.9082135847616355, 2.085467065361458, + 2.3371184031660768, 2.662385599013123, 3.064350565976442, + 3.5433612789393836, 4.087268477726163, 4.6787936932220475, + 5.285407991475916, 5.874267802773741, 6.410066343899225, 6.86287134457146, + 7.217704739148744, 7.469350378426576, 7.627099665825538, + 7.706400768715049, 7.726132347255088, 7.703894608692921, + 7.6515941901868185, 7.574362553305648, 7.472728067522319, + 7.343750509482943, 7.186526925097425, 7.002706471205347, + 6.798845238379311, 6.586395465561815, 6.376203470316048, + 6.179579303732929, 6.001667353173499, 5.843732984973724, 5.70194248167643, + 5.569037796308207, 5.4388232569073836, 5.306890883370993, + 5.175058944355324, 5.04849748626802, 4.935618306999321, 4.84466686437778, + 4.78061114414114, 4.744006004782861, 4.729336061794418, 4.727048411826222, + 4.7261790723643795, 4.717754654411711, 4.697521081487855, + 4.667178073754169, 4.634171578722273, 4.609099351840685, 4.603306224222611 + ], + "pressure:J0:branch9_seg0": [ + 109184.2247568038, 108960.08334194825, 108808.06574557221, + 108731.74896974048, 108739.52602852343, 108852.52443392164, + 109130.65677680589, 109628.5798950928, 110459.49911959124, + 111694.7250239259, 113426.70669932579, 115727.48340001119, + 118584.44801677066, 122054.67606022613, 125984.32388200116, + 130385.63529497715, 135076.34647184293, 139976.53360305945, + 144968.40845658391, 149821.79630325394, 154548.70591976435, + 158888.73640108993, 162846.17958416927, 166220.22044639027, + 168913.964837845, 170881.90888809774, 172036.83396279917, + 172388.77362303305, 171961.4944070379, 170800.28099754866, + 169015.85834421997, 166724.15396851714, 163986.2168437468, + 161004.30752469026, 157733.61560797074, 154350.84037058838, + 150808.796995675, 147199.93892578868, 143635.24895918067, + 140070.97164123447, 136727.099766906, 133549.4813533953, + 130736.24146440033, 128317.26758275626, 126304.78114427126, + 124737.65773122244, 123521.38916637588, 122638.59596455404, + 121992.47646638434, 121521.25083525143, 121180.33089748345, + 120952.43649170286, 120834.63132245911, 120860.82711785649, + 121033.78095603862, 121384.33913911138, 121887.03597776733, + 122499.30294968892, 123181.13403299895, 123828.90644073393, + 124411.91644126122, 124839.81798045697, 125101.69245403043, + 125190.7135153392, 125124.4371865532, 124944.47306541247, + 124682.85457732512, 124373.60266435878, 124034.46070551482, + 123665.30323659649, 123255.9944818378, 122796.83522608771, + 122273.18686325914, 121695.81835354793, 121067.43992441318, + 120420.3975050044, 119776.87622267928, 119155.21909994849, + 118573.36839880272, 118019.56638371758, 117492.44049653572, + 116966.73814747296, 116431.65285694577, 115877.86671576713, + 115308.98052861723, 114745.59030351634, 114200.5697665593, + 113701.13744281624, 113252.0483103213, 112857.64790667953, + 112504.07554719147, 112168.46991160532, 111827.6173024971, + 111462.16627531259, 111065.97085790984, 110645.54173513905, + 110220.0156388605, 109815.13620006792, 109454.9922570863, + 109184.2247568038 + ], + "flow:J0:branch14_seg0": [ + 3.6851688154625646, 3.7298690983035048, 3.8079238940603153, + 3.9186233876667655, 4.0641539737905035, 4.24961935137308, + 4.495062814429342, 4.8248013456578365, 5.279016391445132, + 5.897515137753224, 6.712135448205373, 7.761496703188749, + 9.040742958632205, 10.564239828972447, 12.28534791237976, + 14.16550140171437, 16.157381600171227, 18.181230451632235, + 20.2047941536192, 22.1264691015811, 23.916840868442254, + 25.506287644543807, 26.85258183869496, 27.914886180112006, + 28.635561502754776, 29.00223637313285, 28.988878110699385, + 28.598849697898363, 27.8472211963508, 26.768778903780436, + 25.405138475312004, 23.828135159281207, 22.072355750024247, + 20.219246501177203, 18.297785657630687, 16.34888634985482, + 14.404943159455387, 12.470013372434387, 10.60445216861702, + 8.804573798155523, 7.1319446470264865, 5.606091915976807, + 4.272259894331069, 3.177003826486692, 2.3156530065396823, + 1.7059428164933645, 1.3106890829003681, 1.107404940356618, + 1.05387414315721, 1.1059608786218678, 1.2335001255132267, + 1.4156341823404635, 1.6451248450611804, 1.9285896273126057, + 2.2711725396099935, 2.68025245713892, 3.154117443118852, + 3.6713375837844815, 4.214306850501926, 4.740414864773663, + 5.223681753495169, 5.630112204433606, 5.939706511106839, + 6.152818626192052, 6.273131487269979, 6.322320044942418, + 6.318721130778246, 6.281913594728283, 6.225853369240464, + 6.155720046196422, 6.069795574742362, 5.964432232681414, + 5.833483847770555, 5.67807674369824, 5.5012955824553424, + 5.313274664024858, 5.1282242506555065, 4.9546281848535045, + 4.803192096335847, 4.672207414090582, 4.559811489416546, + 4.457794347493871, 4.356860532101158, 4.252623316179806, + 4.142530850910758, 4.03378149111719, 3.9335613334347106, 3.85231277775273, + 3.7967945335687654, 3.7686854921550754, 3.764420180168544, + 3.773940312305971, 3.785432430937901, 3.788136769332418, + 3.7761208778962065, 3.7498727402431906, 3.716095019342763, + 3.6863911413940427, 3.6726065342943475, 3.6851688154625646 + ], + "pressure:J0:branch14_seg0": [ + 109184.2247568038, 108960.08334194825, 108808.06574557221, + 108731.74896974048, 108739.52602852343, 108852.52443392164, + 109130.65677680589, 109628.5798950928, 110459.49911959124, + 111694.7250239259, 113426.70669932579, 115727.48340001119, + 118584.44801677066, 122054.67606022613, 125984.32388200116, + 130385.63529497715, 135076.34647184293, 139976.53360305945, + 144968.40845658391, 149821.79630325394, 154548.70591976435, + 158888.73640108993, 162846.17958416927, 166220.22044639027, + 168913.964837845, 170881.90888809774, 172036.83396279917, + 172388.77362303305, 171961.4944070379, 170800.28099754866, + 169015.85834421997, 166724.15396851714, 163986.2168437468, + 161004.30752469026, 157733.61560797074, 154350.84037058838, + 150808.796995675, 147199.93892578868, 143635.24895918067, + 140070.97164123447, 136727.099766906, 133549.4813533953, + 130736.24146440033, 128317.26758275626, 126304.78114427126, + 124737.65773122244, 123521.38916637588, 122638.59596455404, + 121992.47646638434, 121521.25083525143, 121180.33089748345, + 120952.43649170286, 120834.63132245911, 120860.82711785649, + 121033.78095603862, 121384.33913911138, 121887.03597776733, + 122499.30294968892, 123181.13403299895, 123828.90644073393, + 124411.91644126122, 124839.81798045697, 125101.69245403043, + 125190.7135153392, 125124.4371865532, 124944.47306541247, + 124682.85457732512, 124373.60266435878, 124034.46070551482, + 123665.30323659649, 123255.9944818378, 122796.83522608771, + 122273.18686325914, 121695.81835354793, 121067.43992441318, + 120420.3975050044, 119776.87622267928, 119155.21909994849, + 118573.36839880272, 118019.56638371758, 117492.44049653572, + 116966.73814747296, 116431.65285694577, 115877.86671576713, + 115308.98052861723, 114745.59030351634, 114200.5697665593, + 113701.13744281624, 113252.0483103213, 112857.64790667953, + 112504.07554719147, 112168.46991160532, 111827.6173024971, + 111462.16627531259, 111065.97085790984, 110645.54173513905, + 110220.0156388605, 109815.13620006792, 109454.9922570863, + 109184.2247568038 + ], + "flow:J0:branch15_seg0": [ + 4.9024339215715855, 4.9176191780488026, 4.965217456543355, + 5.047631046824745, 5.1673727793478434, 5.3288694650477995, + 5.545251662085463, 5.836994573369656, 6.236125643366603, + 6.780721807350797, 7.5073639156723075, 8.45361267830006, + 9.635851975249999, 11.06535719117254, 12.72086828818717, + 14.566426246556853, 16.555626137011398, 18.621456783197075, + 20.71078230387651, 22.74564668556387, 24.672413977820604, + 26.43400461933194, 27.982689048536596, 29.280138617450532, + 30.281313420782737, 30.961969291462143, 31.300857840627646, + 31.290280265969496, 30.935922396322493, 30.25603041864561, + 29.27900935868392, 28.05001086119677, 26.605352845311756, + 24.998794651313087, 23.267964343176374, 21.447622610032685, + 19.569509272919966, 17.649790090000764, 15.726651639761648, + 13.819189158660192, 11.967447355123866, 10.206655107995887, + 8.578160202592853, 7.132096867976642, 5.8956722633470395, + 4.894722671690618, 4.128583173905578, 3.5861408389330682, + 3.242144050267534, 3.0606288075604424, 3.007313210816988, + 3.053467991000337, 3.1802531513012497, 3.3808855358014345, + 3.654570173373706, 4.00405077974926, 4.429371131459059, 4.918582450202744, + 5.454648724547957, 6.006197803105469, 6.541570499608816, 7.02706517241085, + 7.434359721395302, 7.749605829867818, 7.9682887060665175, + 8.099546043877472, 8.158159863569681, 8.161973869145283, 8.12746378643784, + 8.06564763185387, 7.981143492376289, 7.874234696297066, 7.741988405980091, + 7.583405288856743, 7.39991589809759, 7.197588511264988, + 6.9871384945277635, 6.778725919428971, 6.582963091142326, + 6.404710326941306, 6.245196576680975, 6.100844818365855, + 5.964826744377778, 5.831325704728858, 5.696193762409405, + 5.561155846600078, 5.431145867729642, 5.314184457014082, + 5.218169507089637, 5.147899050275101, 5.103982677362316, + 5.081253615705447, 5.070665338622148, 5.061793447593589, 5.04607393546064, + 5.019412527168638, 4.983374760713053, 4.945010463861597, + 4.914401097505198, 4.9024339215715855 + ], + "pressure:J0:branch15_seg0": [ + 109184.2247568038, 108960.08334194825, 108808.06574557221, + 108731.74896974048, 108739.52602852343, 108852.52443392164, + 109130.65677680589, 109628.5798950928, 110459.49911959124, + 111694.7250239259, 113426.70669932579, 115727.48340001119, + 118584.44801677066, 122054.67606022613, 125984.32388200116, + 130385.63529497715, 135076.34647184293, 139976.53360305945, + 144968.40845658391, 149821.79630325394, 154548.70591976435, + 158888.73640108993, 162846.17958416927, 166220.22044639027, + 168913.964837845, 170881.90888809774, 172036.83396279917, + 172388.77362303305, 171961.4944070379, 170800.28099754866, + 169015.85834421997, 166724.15396851714, 163986.2168437468, + 161004.30752469026, 157733.61560797074, 154350.84037058838, + 150808.796995675, 147199.93892578868, 143635.24895918067, + 140070.97164123447, 136727.099766906, 133549.4813533953, + 130736.24146440033, 128317.26758275626, 126304.78114427126, + 124737.65773122244, 123521.38916637588, 122638.59596455404, + 121992.47646638434, 121521.25083525143, 121180.33089748345, + 120952.43649170286, 120834.63132245911, 120860.82711785649, + 121033.78095603862, 121384.33913911138, 121887.03597776733, + 122499.30294968892, 123181.13403299895, 123828.90644073393, + 124411.91644126122, 124839.81798045697, 125101.69245403043, + 125190.7135153392, 125124.4371865532, 124944.47306541247, + 124682.85457732512, 124373.60266435878, 124034.46070551482, + 123665.30323659649, 123255.9944818378, 122796.83522608771, + 122273.18686325914, 121695.81835354793, 121067.43992441318, + 120420.3975050044, 119776.87622267928, 119155.21909994849, + 118573.36839880272, 118019.56638371758, 117492.44049653572, + 116966.73814747296, 116431.65285694577, 115877.86671576713, + 115308.98052861723, 114745.59030351634, 114200.5697665593, + 113701.13744281624, 113252.0483103213, 112857.64790667953, + 112504.07554719147, 112168.46991160532, 111827.6173024971, + 111462.16627531259, 111065.97085790984, 110645.54173513905, + 110220.0156388605, 109815.13620006792, 109454.9922570863, + 109184.2247568038 + ], + "flow:branch1_seg0:J1": [ + 7.3197718780767556, 7.369334878794585, 7.467316708502656, + 7.619689385809693, 7.832408511991693, 8.117147987783696, 8.50603553439325, + 9.030148470029188, 9.754808637574882, 10.729323737876205, + 12.016862433871658, 13.671543380294008, 15.706260742664968, + 18.160281710872695, 20.9613732316132, 24.11121481873409, + 27.490195509235633, 31.031593530368294, 34.64337419011497, + 38.160322318944395, 41.56744568008477, 44.677005170641515, + 47.45484884873186, 49.78269222787319, 51.56890501178819, + 52.79084201223384, 53.37847740106379, 53.32921011367024, + 52.656582725170615, 51.38081182286356, 49.579695951379044, + 47.32582943592153, 44.682337282823326, 41.782040017696886, + 38.63005057638742, 35.35940577114101, 31.97728654153215, + 28.54986403947577, 25.169262417947447, 21.81350994974648, + 18.626244209153384, 15.602656952316035, 12.855417117298565, + 10.441046710795943, 8.378080168098585, 6.714204685958567, + 5.4127156110965835, 4.471073419037803, 3.834794853179514, + 3.4590781419122854, 3.2991477925002113, 3.3161447494034015, + 3.4873479297903778, 3.8068452199966147, 4.264504229895799, + 4.866887361951135, 5.5964149513536805, 6.4260635138079785, + 7.329683931689211, 8.243334694188206, 9.135077123090635, 9.94064125995641, + 10.631400765562898, 11.185366688548806, 11.596396137595715, + 11.8813662464241, 12.054456829152201, 12.141711668594384, + 12.160385988267999, 12.121919147132683, 12.032340722084815, + 11.893050750313447, 11.701085827893179, 11.463156138047376, + 11.181309689237656, 10.873075425040623, 10.553582847821465, + 10.237480614387577, 9.940884212794273, 9.664388784497653, + 9.412790566422258, 9.175779109423729, 8.948490808281766, + 8.723764024560431, 8.499023825969568, 8.282770749087586, + 8.078812978319814, 7.9033386940498165, 7.762236145913541, + 7.660953852706622, 7.597454991469454, 7.560055374723918, 7.53659330380527, + 7.512978397758939, 7.48022592924787, 7.435882572348591, 7.385235103466752, + 7.339683330120218, 7.313282508474946, 7.3197718780767556 + ], + "pressure:branch1_seg0:J1": [ + 109176.92713602296, 108946.4254865615, 108787.650024979, + 108703.44664266305, 108702.53063588498, 108803.37347596798, + 109065.39908933234, 109540.83958801902, 110340.42746858626, + 111538.63548363814, 113219.96194765385, 115470.54294946173, + 118267.03961915965, 121681.13578407999, 125564.83767087158, + 129915.58729604482, 134578.1056189281, 139447.22228621427, + 144432.02136552546, 149291.2799233579, 154036.56991151356, + 158412.93390918177, 162411.32677210672, 165845.85717791982, + 168604.10950240394, 170652.93404691495, 171892.67607451946, + 172332.0145290301, 171989.13311836513, 170911.0104723265, + 169196.38436512815, 166974.24148307854, 164288.59086561305, + 161345.66917726723, 158111.06671322297, 154747.4927440472, + 151229.22292340902, 147626.24782183475, 144067.62638311, + 140492.6977122976, 137129.63166477042, 133927.068294865, + 131071.91491387735, 128616.76235554605, 126550.86739023564, + 124935.15316620983, 123669.4460912874, 122739.31440389613, + 122057.94166324999, 121554.92993387688, 121188.58048620251, + 120938.8254717534, 120799.9204838209, 120806.55633822628, + 120960.85284827492, 121292.12902982089, 121779.98989457637, + 122377.61243791059, 123054.07264129318, 123701.35348954255, + 124291.29517125935, 124734.16238122205, 125010.65714651112, + 125119.12039099543, 125069.97468802896, 124906.01251967152, + 124658.28293330081, 124359.0256240877, 124028.04088880248, + 123666.00292508074, 123263.2683832054, 122811.45603796093, + 122294.77135278039, 121723.7426162955, 121100.62051038096, + 120455.82150096084, 119813.94644928658, 119190.38793709065, + 118606.45257847413, 118049.63607631795, 117519.29988408211, + 116992.70471728998, 116456.77636061836, 115903.58221979988, + 115334.4455807272, 114769.75129740298, 114222.09508271841, + 113718.26584304699, 113264.29515107117, 112864.64017232378, + 112506.8831486158, 112168.41702612347, 111826.63763733678, + 111461.96057227504, 111067.33492009953, 110648.44014441938, + 110223.05179427212, 109816.71415465746, 109452.96167414922, + 109176.92713602296 + ], + "flow:J1:branch2_seg0": [ + 6.137648634370128, 6.168779670964727, 6.237549827513741, + 6.349987650235961, 6.511128155742191, 6.730180635998866, + 7.031136106749137, 7.436848397757457, 7.997321349388062, + 8.750165825166189, 9.747077443542905, 11.031096837952965, + 12.618504884428493, 14.54312715687865, 16.75421329133072, + 19.2609822823652, 21.966041128609483, 24.823833019193682, + 27.75670098285821, 30.63565352127467, 33.44937859121861, + 36.04159894002707, 38.38543771785981, 40.38272955409003, 41.9591359556501, + 43.094869486052445, 43.72913285724328, 43.85568489092064, + 43.47996285097755, 42.60994757297456, 41.30455719092424, + 39.612473078967845, 37.584547631120785, 35.32206076621726, + 32.82773088795951, 30.21426656170316, 27.485992291245417, + 24.702484061072116, 21.93604729912859, 19.17002598379929, + 16.52063779859227, 13.984329725971211, 11.653109538573817, + 9.573743297125956, 7.768014039780911, 6.279322726415551, + 5.086216734922329, 4.193460082545154, 3.5617104041439784, + 3.1599487156442714, 2.9520547683078795, 2.904118015830618, + 2.994972099953548, 3.2149211098965993, 3.5531000489659617, + 4.013015976805565, 4.5799064135862295, 5.234518167018617, + 5.957089702734147, 6.699306677523272, 7.435977703693984, + 8.115027254188012, 8.711774460652151, 9.203399854113355, + 9.581105229358084, 9.854225264600016, 10.03082943650658, + 10.130924164681675, 10.167862392520119, 10.152324482196276, + 10.091453813570098, 9.987936364050732, 9.840837988456713, + 9.655532856433194, 9.433017433486983, 9.186373889623681, + 8.926396054370999, 8.665025518439174, 8.415330077438334, + 8.179360434084062, 7.96262917566333, 7.758227657340324, 7.563884264068535, + 7.373754371219923, 7.185287332061811, 7.003970981956132, + 6.831340350194465, 6.679787509935753, 6.5538277075744364, + 6.458679002022267, 6.3942297880974355, 6.352574437702323, 6.3254375322735, + 6.301976246449721, 6.274522538679644, 6.239774405857534, + 6.200184176767684, 6.163074609253481, 6.138659786764289, 6.137648634370128 + ], + "pressure:J1:branch2_seg0": [ + 109176.92713602296, 108946.4254865615, 108787.650024979, + 108703.44664266305, 108702.53063588498, 108803.37347596798, + 109065.39908933234, 109540.83958801902, 110340.42746858626, + 111538.63548363814, 113219.96194765385, 115470.54294946173, + 118267.03961915965, 121681.13578407999, 125564.83767087158, + 129915.58729604482, 134578.1056189281, 139447.22228621427, + 144432.02136552546, 149291.2799233579, 154036.56991151356, + 158412.93390918177, 162411.32677210672, 165845.85717791982, + 168604.10950240394, 170652.93404691495, 171892.67607451946, + 172332.0145290301, 171989.13311836513, 170911.0104723265, + 169196.38436512815, 166974.24148307854, 164288.59086561305, + 161345.66917726723, 158111.06671322297, 154747.4927440472, + 151229.22292340902, 147626.24782183475, 144067.62638311, + 140492.6977122976, 137129.63166477042, 133927.068294865, + 131071.91491387735, 128616.76235554605, 126550.86739023564, + 124935.15316620983, 123669.4460912874, 122739.31440389613, + 122057.94166324999, 121554.92993387688, 121188.58048620251, + 120938.8254717534, 120799.9204838209, 120806.55633822628, + 120960.85284827492, 121292.12902982089, 121779.98989457637, + 122377.61243791059, 123054.07264129318, 123701.35348954255, + 124291.29517125935, 124734.16238122205, 125010.65714651112, + 125119.12039099543, 125069.97468802896, 124906.01251967152, + 124658.28293330081, 124359.0256240877, 124028.04088880248, + 123666.00292508074, 123263.2683832054, 122811.45603796093, + 122294.77135278039, 121723.7426162955, 121100.62051038096, + 120455.82150096084, 119813.94644928658, 119190.38793709065, + 118606.45257847413, 118049.63607631795, 117519.29988408211, + 116992.70471728998, 116456.77636061836, 115903.58221979988, + 115334.4455807272, 114769.75129740298, 114222.09508271841, + 113718.26584304699, 113264.29515107117, 112864.64017232378, + 112506.8831486158, 112168.41702612347, 111826.63763733678, + 111461.96057227504, 111067.33492009953, 110648.44014441938, + 110223.05179427212, 109816.71415465746, 109452.96167414922, + 109176.92713602296 + ], + "flow:J1:branch11_seg0": [ + 1.1821232437066251, 1.2005552078298576, 1.2297668809889168, + 1.269701735573735, 1.3212803562495017, 1.3869673517848293, + 1.4748994276441127, 1.593300072271732, 1.7574872881868175, + 1.9791579127100143, 2.269784990328756, 2.6404465423410426, + 3.087755858236477, 3.6171545539940455, 4.207159940282474, + 4.850232536368892, 5.524154380626155, 6.207760511174619, 6.88667320725676, + 7.524668797669744, 8.118067088866157, 8.635406230614443, + 9.069411130872039, 9.399962673783172, 9.609769056138104, + 9.695972526181391, 9.649344543820515, 9.473525222749608, + 9.176619874193062, 8.770864249888998, 8.275138760454798, + 7.713356356953679, 7.097789651702556, 6.459979251479625, + 5.802319688427909, 5.145139209437848, 4.49129425028673, 3.847379978403651, + 3.2332151188188627, 2.64348396594718, 2.1056064105611156, + 1.6183272263448287, 1.202307578724749, 0.8673034136699889, + 0.6100661283176734, 0.43488195954301606, 0.32649887617425394, + 0.27761333649264874, 0.2730844490355353, 0.29912942626801403, + 0.3470930241923313, 0.41202673357278247, 0.4923758298368295, + 0.5919241101000149, 0.7114041809298368, 0.8538713851455697, + 1.016508537767452, 1.1915453467893617, 1.3725942289550637, + 1.544028016664934, 1.6990994193966473, 1.8256140057683983, + 1.9196263049107456, 1.9819668344354502, 2.015290908237627, + 2.0271409818240804, 2.023627392645622, 2.010787503912709, + 1.9925235957478764, 1.9695946649364076, 1.9408869085147165, + 1.9051143862627156, 1.8602478394364654, 1.8076232816141835, + 1.7482922557506728, 1.6867015354169401, 1.6271867934504671, + 1.572455095948407, 1.5255541353559388, 1.485028350413592, + 1.450161390758928, 1.4175514520834047, 1.3846065442132298, + 1.350009653340505, 1.3137364939077556, 1.2787997671314548, + 1.24747262812535, 1.2235511841140638, 1.2084084383391058, + 1.202274850684353, 1.2032252033720192, 1.2074809370215964, + 1.2111557715317702, 1.2110021513092197, 1.2057033905682253, + 1.196108166491057, 1.1850509266990692, 1.176608720866736, + 1.174622721710659, 1.1821232437066251 + ], + "pressure:J1:branch11_seg0": [ + 109176.92713602296, 108946.4254865615, 108787.650024979, + 108703.44664266305, 108702.53063588498, 108803.37347596798, + 109065.39908933234, 109540.83958801902, 110340.42746858626, + 111538.63548363814, 113219.96194765385, 115470.54294946173, + 118267.03961915965, 121681.13578407999, 125564.83767087158, + 129915.58729604482, 134578.1056189281, 139447.22228621427, + 144432.02136552546, 149291.2799233579, 154036.56991151356, + 158412.93390918177, 162411.32677210672, 165845.85717791982, + 168604.10950240394, 170652.93404691495, 171892.67607451946, + 172332.0145290301, 171989.13311836513, 170911.0104723265, + 169196.38436512815, 166974.24148307854, 164288.59086561305, + 161345.66917726723, 158111.06671322297, 154747.4927440472, + 151229.22292340902, 147626.24782183475, 144067.62638311, + 140492.6977122976, 137129.63166477042, 133927.068294865, + 131071.91491387735, 128616.76235554605, 126550.86739023564, + 124935.15316620983, 123669.4460912874, 122739.31440389613, + 122057.94166324999, 121554.92993387688, 121188.58048620251, + 120938.8254717534, 120799.9204838209, 120806.55633822628, + 120960.85284827492, 121292.12902982089, 121779.98989457637, + 122377.61243791059, 123054.07264129318, 123701.35348954255, + 124291.29517125935, 124734.16238122205, 125010.65714651112, + 125119.12039099543, 125069.97468802896, 124906.01251967152, + 124658.28293330081, 124359.0256240877, 124028.04088880248, + 123666.00292508074, 123263.2683832054, 122811.45603796093, + 122294.77135278039, 121723.7426162955, 121100.62051038096, + 120455.82150096084, 119813.94644928658, 119190.38793709065, + 118606.45257847413, 118049.63607631795, 117519.29988408211, + 116992.70471728998, 116456.77636061836, 115903.58221979988, + 115334.4455807272, 114769.75129740298, 114222.09508271841, + 113718.26584304699, 113264.29515107117, 112864.64017232378, + 112506.8831486158, 112168.41702612347, 111826.63763733678, + 111461.96057227504, 111067.33492009953, 110648.44014441938, + 110223.05179427212, 109816.71415465746, 109452.96167414922, + 109176.92713602296 + ], + "flow:branch2_seg0:J2": [ + 6.15154366574088, 6.178827477101852, 6.243991645021148, 6.35226054259111, + 6.508906869923747, 6.7212756678123995, 7.012484588952808, + 7.404766960970209, 7.945974638190391, 8.67706121547335, 9.644760449656705, + 10.901102284315781, 12.456254132043938, 14.352080651801849, + 16.5417029299011, 19.024015323737512, 21.72134480124597, + 24.564789808088808, 27.49954557086032, 30.385805482335428, + 33.209793290392035, 35.825003292215456, 38.19092563496472, + 40.2219652161832, 41.83321907676909, 43.00934006705581, 43.68512032486719, + 43.85433949606205, 43.51629422911009, 42.684284810558395, + 41.40584817208224, 39.74199509050874, 37.7325123279884, + 35.481650183463735, 33.001309173941834, 30.390182445133696, + 27.67272745847436, 24.888314512730044, 22.122295389638417, + 19.352001783497336, 16.691283745245777, 14.142563630014592, + 11.789650071012003, 9.692316144460325, 7.862207770286647, + 6.354760336663215, 5.1424120477668, 4.234364296430544, 3.592218613494567, + 3.181821649640091, 2.9681248262777595, 2.914253516841117, + 2.998592045960487, 3.2107877082412215, 3.540821488653663, + 3.991327868280058, 4.551783946199563, 5.2004808556303805, + 5.922182371852449, 6.6664438002023205, 7.408662937924672, + 8.096766234090541, 8.70150193435819, 9.202640548774962, 9.586655529127336, + 9.865248293212849, 10.045310594200386, 10.147329707866527, + 10.18582046223901, 10.172105487784432, 10.113497787017325, + 10.01308326979643, 9.86920951653573, 9.686611146994542, 9.466246787872125, + 9.219716719934471, 8.959592495665614, 8.696233024334036, + 8.445045946033263, 8.207490436464942, 7.989753434982425, 7.78583732278893, + 7.591894080641362, 7.40310031733354, 7.214919818968377, 7.032989954456698, + 6.858897814347883, 6.704616153100607, 6.5759479531498055, + 6.478168760259828, 6.4120859714493506, 6.37005148864032, + 6.343665123353429, 6.321677383038896, 6.2957390471112715, + 6.261915570917493, 6.221956046579294, 6.183312122872762, + 6.156044805313025, 6.15154366574088 + ], + "pressure:branch2_seg0:J2": [ + 109169.00145729956, 108932.30095742995, 108766.70195340642, + 108674.40703234686, 108664.51842887592, 108753.60422676819, + 108999.98281981848, 109454.3607135021, 110223.87101121563, + 111386.21790213598, 113017.94018542217, 115217.20505012447, + 117954.54049899237, 121311.02939325389, 125148.44637542438, + 129446.2932603761, 134079.69180417806, 138917.1165984668, + 143894.75831465653, 148764.63045897605, 153531.2203419255, + 157949.35659814428, 161990.85575814912, 165489.5331151221, + 168316.2233817489, 170448.5136737744, 171776.29483544157, + 172303.98272473027, 172046.60099408476, 171052.35298746914, + 169409.09838850942, 167256.03941594833, 164623.53217413087, + 161717.97980349543, 158519.56556709105, 155173.57598617842, + 151679.9526766127, 148083.87947015706, 144528.95125199042, + 140945.18793297125, 137561.57577492116, 134337.19488860312, + 131441.49509059082, 128951.59942913259, 126833.07541893305, + 125165.14148537519, 123847.17572324708, 122864.97498606915, + 122143.99315585608, 121604.55190092865, 121208.7384638464, + 120933.40343716917, 120770.90900515974, 120755.82020926093, + 120890.06473673142, 121200.31670899787, 121671.10435081126, + 122252.12297240496, 122919.85378163762, 123564.83067249012, + 124159.03738583655, 124615.46994020067, 124905.42940063083, + 125033.43430514184, 125002.69285045553, 124856.52006336449, + 124624.7979731085, 124337.44138714354, 124016.12021926354, + 123662.18215571721, 123266.75103517233, 122822.5577326677, + 122313.32087675338, 121749.00139743568, 121131.92755310754, + 120490.25969185898, 119850.95605922744, 119226.47512752193, + 118640.63469638253, 118080.93584587326, 117547.00465071925, + 117019.14899310608, 116481.89365920128, 115929.02404964712, + 115359.64439707648, 114793.72502069337, 114243.82956849552, + 113735.86392209545, 113277.31652622552, 112872.24977758285, + 112509.82286496545, 112167.71442852229, 111824.1157069037, + 111459.52405862948, 111066.08664410972, 110648.75255951608, + 110223.89702604632, 109816.6611207017, 109449.89641911793, + 109169.00145729956 + ], + "flow:J2:branch3_seg0": [ + 3.2015896947609694, 3.2139539937544344, 3.2445382810630115, + 3.2962123379783104, 3.37146533744482, 3.4742839127080436, + 3.616591689690848, 3.808838384848529, 4.075816769156403, + 4.435525273419922, 4.9120352210947535, 5.527698544855352, + 6.287512051430214, 7.211489557715446, 8.272933531768789, + 9.479541152196019, 10.780921492492858, 12.153847655333248, + 13.562828444554766, 14.942294881187657, 16.29457222482574, + 17.538437495812637, 18.666442728625466, 19.627052523090434, + 20.385457379195778, 20.93633123451198, 21.250392713296307, + 21.327292364455108, 21.167153526953456, 20.77439588168563, + 20.175779329508092, 19.397253485989637, 18.459909139215945, + 17.4128621400647, 16.25148250750104, 15.032797756712267, + 13.755222040202531, 12.447920122677838, 11.147381697686397, + 9.837993505891175, 8.579610253248397, 7.364357920183096, + 6.2419821867033285, 5.2354883280770625, 4.354847959686435, + 3.623495483997589, 3.027345146354123, 2.5736933490700804, + 2.2424774952429525, 2.023542240280084, 1.8990569932177737, + 1.8529658880170514, 1.8751198463625105, 1.9608643598524402, + 2.1057642117137876, 2.3121083200171095, 2.5727482556787398, + 2.8771495135210636, 3.2169010272318834, 3.5672897965044643, + 3.9181177026653846, 4.242665333967739, 4.529416657060591, + 4.766057288727412, 4.947829679138602, 5.079989522800164, + 5.1656377136888665, 5.215088965121354, 5.233621996681306, + 5.226521378889724, 5.197008454641276, 5.146716609096114, + 5.075107716839182, 4.9848848454051105, 4.876068840150857, + 4.755073934235765, 4.627311865712305, 4.498362153115034, + 4.375081779261256, 4.25778866319312, 4.149670692637945, 4.046972831316623, + 3.949234723746171, 3.8536222737209247, 3.7587220123052862, + 3.667386603689509, 3.5797926329465755, 3.502427433772521, + 3.4372193433335254, 3.3871201363222125, 3.3521131987835036, + 3.328284941996328, 3.3117153644263913, 3.297071253913707, + 3.280798662021809, 3.2612334767880085, 3.239483899391289, + 3.219027967870287, 3.204648815079862, 3.2015896947609694 + ], + "pressure:J2:branch3_seg0": [ + 109169.00145729956, 108932.30095742995, 108766.70195340642, + 108674.40703234686, 108664.51842887592, 108753.60422676819, + 108999.98281981848, 109454.3607135021, 110223.87101121563, + 111386.21790213598, 113017.94018542217, 115217.20505012447, + 117954.54049899237, 121311.02939325389, 125148.44637542438, + 129446.2932603761, 134079.69180417806, 138917.1165984668, + 143894.75831465653, 148764.63045897605, 153531.2203419255, + 157949.35659814428, 161990.85575814912, 165489.5331151221, + 168316.2233817489, 170448.5136737744, 171776.29483544157, + 172303.98272473027, 172046.60099408476, 171052.35298746914, + 169409.09838850942, 167256.03941594833, 164623.53217413087, + 161717.97980349543, 158519.56556709105, 155173.57598617842, + 151679.9526766127, 148083.87947015706, 144528.95125199042, + 140945.18793297125, 137561.57577492116, 134337.19488860312, + 131441.49509059082, 128951.59942913259, 126833.07541893305, + 125165.14148537519, 123847.17572324708, 122864.97498606915, + 122143.99315585608, 121604.55190092865, 121208.7384638464, + 120933.40343716917, 120770.90900515974, 120755.82020926093, + 120890.06473673142, 121200.31670899787, 121671.10435081126, + 122252.12297240496, 122919.85378163762, 123564.83067249012, + 124159.03738583655, 124615.46994020067, 124905.42940063083, + 125033.43430514184, 125002.69285045553, 124856.52006336449, + 124624.7979731085, 124337.44138714354, 124016.12021926354, + 123662.18215571721, 123266.75103517233, 122822.5577326677, + 122313.32087675338, 121749.00139743568, 121131.92755310754, + 120490.25969185898, 119850.95605922744, 119226.47512752193, + 118640.63469638253, 118080.93584587326, 117547.00465071925, + 117019.14899310608, 116481.89365920128, 115929.02404964712, + 115359.64439707648, 114793.72502069337, 114243.82956849552, + 113735.86392209545, 113277.31652622552, 112872.24977758285, + 112509.82286496545, 112167.71442852229, 111824.1157069037, + 111459.52405862948, 111066.08664410972, 110648.75255951608, + 110223.89702604632, 109816.6611207017, 109449.89641911793, + 109169.00145729956 + ], + "flow:J2:branch7_seg0": [ + 2.9499539709799105, 2.9648734833474184, 2.999453363958137, + 3.0560482046127992, 3.137441532478928, 3.2469917551043554, + 3.3958928992619595, 3.5959285761216813, 3.8701578690339873, + 4.241535942053429, 4.732725228561955, 5.37340373946043, + 6.1687420806137245, 7.140591094086405, 8.268769398132308, + 9.544474171541491, 10.940423308753102, 12.410942152755558, + 13.93671712630555, 15.443510601147771, 16.915221065566303, + 18.286565796402815, 19.52448290633925, 20.594912693092766, + 21.447761697573313, 22.073008832543835, 22.434727611570878, + 22.527047131606967, 22.349140702156642, 21.909888928872768, + 21.230068842574152, 20.3447416045191, 19.272603188772468, + 18.06878804339904, 16.749826666440786, 15.35738468842143, + 13.917505418271825, 12.44039439005221, 10.974913691952016, + 9.514008277606157, 8.111673491997388, 6.778205709831496, + 5.547667884308676, 4.456827816383263, 3.5073598106002115, + 2.731264852665627, 2.1150669014126753, 1.6606709473604648, + 1.3497411182516155, 1.1582794093600068, 1.0690678330599859, + 1.0612876288240665, 1.1234721995979755, 1.2499233483887808, + 1.4350572769398757, 1.6792195482629495, 1.9790356905208228, + 2.323331342109318, 2.7052813446205652, 3.099154003697858, + 3.4905452352592867, 3.8541009001228015, 4.172085277297599, + 4.436583260047553, 4.638825849988734, 4.785258770412685, + 4.8796728805115155, 4.932240742745177, 4.952198465557704, + 4.945584108894707, 4.91648933237605, 4.866366660700317, 4.794101799696547, + 4.701726301589433, 4.5901779477212665, 4.464642785698704, + 4.332280629953305, 4.197870871219004, 4.069964166772005, + 3.949701773271825, 3.8400827423444808, 3.7388644914723055, + 3.64265935689519, 3.549478043612616, 3.4561978066630914, + 3.3656033507671896, 3.2791051814013077, 3.202188719328087, + 3.1387286098162805, 3.0910486239376147, 3.0599727726658466, + 3.0417665466439927, 3.0319497589270377, 3.0246061291251882, + 3.0149403850894627, 3.000682094129484, 2.982472147188004, + 2.9642841550024746, 2.9513959902331637, 2.9499539709799105 + ], + "pressure:J2:branch7_seg0": [ + 109169.00145729956, 108932.30095742995, 108766.70195340642, + 108674.40703234686, 108664.51842887592, 108753.60422676819, + 108999.98281981848, 109454.3607135021, 110223.87101121563, + 111386.21790213598, 113017.94018542217, 115217.20505012447, + 117954.54049899237, 121311.02939325389, 125148.44637542438, + 129446.2932603761, 134079.69180417806, 138917.1165984668, + 143894.75831465653, 148764.63045897605, 153531.2203419255, + 157949.35659814428, 161990.85575814912, 165489.5331151221, + 168316.2233817489, 170448.5136737744, 171776.29483544157, + 172303.98272473027, 172046.60099408476, 171052.35298746914, + 169409.09838850942, 167256.03941594833, 164623.53217413087, + 161717.97980349543, 158519.56556709105, 155173.57598617842, + 151679.9526766127, 148083.87947015706, 144528.95125199042, + 140945.18793297125, 137561.57577492116, 134337.19488860312, + 131441.49509059082, 128951.59942913259, 126833.07541893305, + 125165.14148537519, 123847.17572324708, 122864.97498606915, + 122143.99315585608, 121604.55190092865, 121208.7384638464, + 120933.40343716917, 120770.90900515974, 120755.82020926093, + 120890.06473673142, 121200.31670899787, 121671.10435081126, + 122252.12297240496, 122919.85378163762, 123564.83067249012, + 124159.03738583655, 124615.46994020067, 124905.42940063083, + 125033.43430514184, 125002.69285045553, 124856.52006336449, + 124624.7979731085, 124337.44138714354, 124016.12021926354, + 123662.18215571721, 123266.75103517233, 122822.5577326677, + 122313.32087675338, 121749.00139743568, 121131.92755310754, + 120490.25969185898, 119850.95605922744, 119226.47512752193, + 118640.63469638253, 118080.93584587326, 117547.00465071925, + 117019.14899310608, 116481.89365920128, 115929.02404964712, + 115359.64439707648, 114793.72502069337, 114243.82956849552, + 113735.86392209545, 113277.31652622552, 112872.24977758285, + 112509.82286496545, 112167.71442852229, 111824.1157069037, + 111459.52405862948, 111066.08664410972, 110648.75255951608, + 110223.89702604632, 109816.6611207017, 109449.89641911793, + 109169.00145729956 + ], + "flow:branch3_seg2:J3": [ + 3.22331422985243, 3.230255093788822, 3.2557066197828024, + 3.3012551670724135, 3.3698990282914716, 3.463836444400081, + 3.592458265098978, 3.7666855223617794, 4.005978326831947, + 4.333776763412219, 4.7688792420400645, 5.343527671144884, + 6.059691045228676, 6.941775285160667, 7.972873201750815, + 9.137472586363975, 10.424951532528542, 11.776555922963844, + 13.187937802011968, 14.584505118283648, 15.945023407463479, + 17.220869358278005, 18.373809891878548, 19.379632565506505, + 20.192253498183444, 20.80096795227418, 21.174464359663414, + 21.31077404662959, 21.203620427135363, 20.867491924542257, + 20.31095517302446, 19.572881308769244, 18.663006920800164, + 17.63003029428377, 16.495889125992008, 15.28215851694248, + 14.024986650527786, 12.719610664242756, 11.413085816048643, + 10.100936316593856, 8.825674098481738, 7.599714311169485, + 6.451815189678721, 5.418449979054344, 4.501799861518232, 3.73917867169849, + 3.115055580818642, 2.6395657582591525, 2.295203858561441, 2.0627415005901, + 1.927931104981294, 1.8714543070286023, 1.8836615177938953, + 1.9584422538300623, 2.092246513370204, 2.284047576735468, + 2.5335762054195885, 2.8294247520962594, 3.1667757990212344, + 3.520725638855511, 3.878176227103582, 4.214525795570198, + 4.511446840936599, 4.761812068296692, 4.954005387420284, + 5.094938915727833, 5.1863273451878555, 5.238145766619054, + 5.258825235187604, 5.25450557916543, 5.228658363174922, 5.182956080621218, + 5.116219973123228, 5.0296973989688665, 4.924453314423634, + 4.804265191531339, 4.676574930796546, 4.5451238393185776, + 4.419234052233075, 4.29960642690332, 4.1898935758433735, + 4.088403707532173, 3.99126526289145, 3.8974173207254017, + 3.8028812894485706, 3.7102748265798544, 3.6210865915612187, + 3.5399678498485048, 3.4712640690812973, 3.4173751672356367, + 3.3794620888650693, 3.3547088666445237, 3.3389533648431, + 3.3264153550291904, 3.31241239338618, 3.2942909684266084, + 3.2721691316913404, 3.2496256537870463, 3.2312675372152415, + 3.22331422985243 + ], + "pressure:branch3_seg2:J3": [ + 108982.76066347332, 108700.04442825826, 108481.73382251058, + 108328.115882558, 108250.09938777928, 108256.1194547796, + 108383.12244866721, 108685.27943923314, 109223.08806806225, + 110104.31637622548, 111369.65020451593, 113142.11673774416, + 115421.74116528827, 118260.35172869873, 121649.65587446616, + 125451.79437170255, 129740.86234192841, 134231.32085133906, + 138999.44891865912, 143781.86747821697, 148478.23633938396, + 153051.85235870144, 157229.40584214122, 161069.34100493917, + 164296.53532783463, 166914.48937167926, 168822.9939222973, + 169967.93621934482, 170361.086313319, 170034.59244903288, + 169011.29750369556, 167444.66827610167, 165349.44296858768, + 162865.85140599697, 160113.98627843588, 157043.78542253366, + 153881.10147597204, 150480.64487347985, 147070.11478576274, + 143624.70233197254, 140203.43526992982, 136978.0345923849, + 133887.28555234591, 131181.9960213694, 128767.24732548084, + 126757.65671067395, 125110.08148752678, 123782.96397408485, + 122769.46895372243, 121960.3490724572, 121347.94671679307, + 120878.73359172697, 120550.45903650831, 120365.63182140744, + 120342.63246469836, 120478.57944512944, 120798.22681140412, + 121245.44762171457, 121808.35413309131, 122414.54631066706, + 122997.09270209196, 123521.63615205741, 123899.53330202869, + 124156.85634470524, 124254.70519994383, 124233.59400241419, + 124110.80469945716, 123910.54489743496, 123661.80843477914, + 123368.24586127573, 123030.23204565916, 122642.225589351, + 122194.79378424413, 121685.37633753456, 121125.49119953616, + 120519.80027115518, 119905.72256732396, 119287.20911044635, + 118692.39257823688, 118121.15282569012, 117568.80449547536, + 117034.8562827921, 116491.85552663822, 115945.33881612118, + 115380.46730490543, 114813.28586673358, 114257.28140107656, + 113723.5322694765, 113236.13378601757, 112790.37782844652, + 112391.99486210986, 112022.49717750291, 111664.25605095246, + 111299.72078966425, 110915.56546841854, 110511.1466233067, + 110093.93847948633, 109682.99016274858, 109297.3420644098, + 108982.76066347332 + ], + "flow:J3:branch4_seg0": [ + 2.32048288249391, 2.3205997678628982, 2.3321901431915624, + 2.356938658633652, 2.3970836535546067, 2.4540173136043157, + 2.533834562351417, 2.6416053665163353, 2.790700175796588, + 2.993371230412963, 3.2636288727114726, 3.6227732762065163, + 4.071387178744346, 4.632505995615114, 5.289460840981943, + 6.044332210486668, 6.882960676274763, 7.774186794218505, 8.71398784013549, + 9.649653280646445, 10.577000481733233, 11.448791029687165, + 12.254350616612081, 12.96521781759752, 13.558343667721923, + 14.025381590461665, 14.339986890444425, 14.505398624522647, + 14.511080860530292, 14.365932123915057, 14.07275185104588, + 13.65359139768803, 13.111083330066656, 12.48044154772466, + 11.76652610665734, 10.994494280376653, 10.178177877032292, + 9.322546774265575, 8.456382243631115, 7.571306136008729, + 6.707901940877058, 5.85811587848291, 5.056743246576161, 4.316441491844554, + 3.645027109407711, 3.0736623240128655, 2.588320618295839, + 2.208219478842973, 1.917414207280731, 1.7100441267517101, + 1.5760150734856313, 1.5022530816461142, 1.481459138036447, + 1.507870092256473, 1.576566720187254, 1.6872424102391306, + 1.8377108077072486, 2.022196151562321, 2.2390999856871656, + 2.470526399784224, 2.712478564835058, 2.9439549145955763, + 3.1562891418574166, 3.3406583031156534, 3.487721059908496, + 3.6008544824078466, 3.6780152419040606, 3.7262582714801185, + 3.750019230888191, 3.7542429685427616, 3.7420592109048574, + 3.7154985597645536, 3.674158877343361, 3.619645175256571, + 3.5515602632241556, 3.472942449414286, 3.3872281504725366, + 3.2968790529117427, 3.208620663570966, 3.122371304442125, + 3.04274757024774, 2.968066119514596, 2.8974368033510696, + 2.8298791214321746, 2.7626808898005284, 2.697344265705879, + 2.633510020309365, 2.5746943821777677, 2.522606163316198, + 2.479881297757944, 2.44738793620403, 2.424207005918861, + 2.4085080444723896, 2.3966358587056282, 2.385627011100127, + 2.373081702981659, 2.3583118696742758, 2.3428108706603195, + 2.328874794076202, 2.32048288249391 + ], + "pressure:J3:branch4_seg0": [ + 108982.76066347332, 108700.04442825826, 108481.73382251058, + 108328.115882558, 108250.09938777928, 108256.1194547796, + 108383.12244866721, 108685.27943923314, 109223.08806806225, + 110104.31637622548, 111369.65020451593, 113142.11673774416, + 115421.74116528827, 118260.35172869873, 121649.65587446616, + 125451.79437170255, 129740.86234192841, 134231.32085133906, + 138999.44891865912, 143781.86747821697, 148478.23633938396, + 153051.85235870144, 157229.40584214122, 161069.34100493917, + 164296.53532783463, 166914.48937167926, 168822.9939222973, + 169967.93621934482, 170361.086313319, 170034.59244903288, + 169011.29750369556, 167444.66827610167, 165349.44296858768, + 162865.85140599697, 160113.98627843588, 157043.78542253366, + 153881.10147597204, 150480.64487347985, 147070.11478576274, + 143624.70233197254, 140203.43526992982, 136978.0345923849, + 133887.28555234591, 131181.9960213694, 128767.24732548084, + 126757.65671067395, 125110.08148752678, 123782.96397408485, + 122769.46895372243, 121960.3490724572, 121347.94671679307, + 120878.73359172697, 120550.45903650831, 120365.63182140744, + 120342.63246469836, 120478.57944512944, 120798.22681140412, + 121245.44762171457, 121808.35413309131, 122414.54631066706, + 122997.09270209196, 123521.63615205741, 123899.53330202869, + 124156.85634470524, 124254.70519994383, 124233.59400241419, + 124110.80469945716, 123910.54489743496, 123661.80843477914, + 123368.24586127573, 123030.23204565916, 122642.225589351, + 122194.79378424413, 121685.37633753456, 121125.49119953616, + 120519.80027115518, 119905.72256732396, 119287.20911044635, + 118692.39257823688, 118121.15282569012, 117568.80449547536, + 117034.8562827921, 116491.85552663822, 115945.33881612118, + 115380.46730490543, 114813.28586673358, 114257.28140107656, + 113723.5322694765, 113236.13378601757, 112790.37782844652, + 112391.99486210986, 112022.49717750291, 111664.25605095246, + 111299.72078966425, 110915.56546841854, 110511.1466233067, + 110093.93847948633, 109682.99016274858, 109297.3420644098, + 108982.76066347332 + ], + "flow:J3:branch10_seg0": [ + 0.9028313473585201, 0.9096553259259244, 0.9235164765912407, + 0.9443165084387609, 0.972815374736865, 1.0098191307957658, + 1.0586237027475613, 1.125080155845443, 1.215278151035358, + 1.340405532999257, 1.505250369328593, 1.7207543949383677, + 1.9883038664843324, 2.3092692895455538, 2.683412360768875, + 3.093140375877308, 3.5419908562537783, 4.002369128745335, + 4.47394996187648, 4.934851837637205, 5.368022925730242, 5.772078328590839, + 6.119459275266468, 6.41441474790898, 6.633909830461522, 6.775586361812516, + 6.834477469218989, 6.805375422106941, 6.692539566605067, + 6.501559800627201, 6.238203321978576, 5.919289911081213, + 5.551923590733505, 5.149588746559114, 4.729363019334665, + 4.287664236565831, 3.8468087734954923, 3.3970638899771797, + 2.956703572417525, 2.5296301805851256, 2.1177721576046804, + 1.7415984326865745, 1.3950719431025584, 1.1020084872097902, + 0.8567727521105214, 0.6655163476856241, 0.526734962522803, + 0.43134627941617953, 0.3777896512807093, 0.3526973738383895, + 0.3519160314956626, 0.36920122538248784, 0.40220237975744866, + 0.45057216157358926, 0.5156797931829498, 0.5968051664963371, + 0.6958653977123397, 0.8072286005339381, 0.9276758133340687, + 1.0501992390712866, 1.1656976622685238, 1.2705708809746217, + 1.3551576990791814, 1.4211537651810369, 1.4662843275117878, + 1.494084433319986, 1.5083121032837945, 1.511887495138935, + 1.508806004299412, 1.5002626106226693, 1.4865991522700652, + 1.467457520856664, 1.4420610957798676, 1.4100522237122948, + 1.3728930511994792, 1.331322742117053, 1.2893467803240082, + 1.2482447864068336, 1.2106133886621082, 1.1772351224611948, + 1.1471460055956344, 1.1203375880175777, 1.0938284595403804, + 1.067538199293228, 1.040200399648042, 1.012930560873976, + 0.9875765712518532, 0.9652734676707367, 0.9486579057650998, + 0.9374938694776928, 0.9320741526610391, 0.9305018607256621, + 0.9304453203707099, 0.9297794963235622, 0.9267853822860541, + 0.9212092654449493, 0.9138572620170643, 0.9068147831267274, + 0.9023927431390389, 0.9028313473585201 + ], + "pressure:J3:branch10_seg0": [ + 108982.76066347332, 108700.04442825826, 108481.73382251058, + 108328.115882558, 108250.09938777928, 108256.1194547796, + 108383.12244866721, 108685.27943923314, 109223.08806806225, + 110104.31637622548, 111369.65020451593, 113142.11673774416, + 115421.74116528827, 118260.35172869873, 121649.65587446616, + 125451.79437170255, 129740.86234192841, 134231.32085133906, + 138999.44891865912, 143781.86747821697, 148478.23633938396, + 153051.85235870144, 157229.40584214122, 161069.34100493917, + 164296.53532783463, 166914.48937167926, 168822.9939222973, + 169967.93621934482, 170361.086313319, 170034.59244903288, + 169011.29750369556, 167444.66827610167, 165349.44296858768, + 162865.85140599697, 160113.98627843588, 157043.78542253366, + 153881.10147597204, 150480.64487347985, 147070.11478576274, + 143624.70233197254, 140203.43526992982, 136978.0345923849, + 133887.28555234591, 131181.9960213694, 128767.24732548084, + 126757.65671067395, 125110.08148752678, 123782.96397408485, + 122769.46895372243, 121960.3490724572, 121347.94671679307, + 120878.73359172697, 120550.45903650831, 120365.63182140744, + 120342.63246469836, 120478.57944512944, 120798.22681140412, + 121245.44762171457, 121808.35413309131, 122414.54631066706, + 122997.09270209196, 123521.63615205741, 123899.53330202869, + 124156.85634470524, 124254.70519994383, 124233.59400241419, + 124110.80469945716, 123910.54489743496, 123661.80843477914, + 123368.24586127573, 123030.23204565916, 122642.225589351, + 122194.79378424413, 121685.37633753456, 121125.49119953616, + 120519.80027115518, 119905.72256732396, 119287.20911044635, + 118692.39257823688, 118121.15282569012, 117568.80449547536, + 117034.8562827921, 116491.85552663822, 115945.33881612118, + 115380.46730490543, 114813.28586673358, 114257.28140107656, + 113723.5322694765, 113236.13378601757, 112790.37782844652, + 112391.99486210986, 112022.49717750291, 111664.25605095246, + 111299.72078966425, 110915.56546841854, 110511.1466233067, + 110093.93847948633, 109682.99016274858, 109297.3420644098, + 108982.76066347332 + ], + "flow:branch5_seg2:J4": [ + 5.443625325014208, 5.487713278220404, 5.577435189942061, + 5.714243598968232, 5.901121497420205, 6.144004314680674, + 6.465087547591208, 6.894131620762273, 7.481415222847505, + 8.280632033292237, 9.34107443983013, 10.718804153129499, + 12.42420532474015, 14.482299759008814, 16.849688991185502, + 19.480759718084737, 22.3115980485089, 25.24328949980274, + 28.213254415827507, 31.097406377152286, 33.82995858393939, + 36.31409085913713, 38.4827932990296, 40.26533473370717, + 41.588734127814966, 42.413577890459415, 42.701199173707195, + 42.44330362852155, 41.64868680707654, 40.35590760756628, + 38.615200763607454, 36.51451253165365, 34.111427447195844, + 31.508500790656242, 28.762215730351166, 25.937097499859025, + 23.081602867271542, 20.221078293271006, 17.42198783330051, + 14.700471398465114, 12.129756638524567, 9.743481222572019, + 7.609268300096697, 5.786937957009734, 4.295430051628238, + 3.1628217429159404, 2.3584730039919637, 1.8583614905255132, + 1.611050351896665, 1.5577231737880497, 1.6508179831764005, + 1.851694376185095, 2.1399342740957064, 2.5144195965157103, + 2.9765681812038185, 3.5353261454185563, 4.189568143692485, + 4.918518825627842, 5.699808367839523, 6.481978022470451, + 7.226687442467115, 7.884148666453006, 8.420351559192909, + 8.822865834791227, 9.089499110489415, 9.240661978250543, + 9.299373896267106, 9.291905515728033, 9.241154369434515, + 9.159366495426868, 9.050099317919921, 8.911682436663861, + 8.737655047362656, 8.528137199866347, 8.285200886819156, + 8.020184343387154, 7.749952784359941, 7.487995856037891, + 7.249945177065283, 7.038515340902354, 6.8541725664752615, + 6.688966058524954, 6.531701112048172, 6.37479468135223, 6.212889148205776, + 6.051285273095476, 5.898107859015514, 5.7661896974371585, + 5.66586510240402, 5.602708766990327, 5.574848815737765, 5.572599295722481, + 5.5813936063167615, 5.58624279821297, 5.576466431609312, + 5.5486520833891415, 5.507851349748018, 5.466617076340112, + 5.440153826890172, 5.443625325014208 + ], + "pressure:branch5_seg2:J4": [ + 109084.6218173866, 108829.37915694356, 108644.454261784, + 108532.35540828279, 108501.44438803892, 108565.70283649443, + 108774.18928677902, 109175.88975479882, 109866.51435028271, + 110925.09341506452, 112431.44739668585, 114477.47169064693, + 117054.89190404807, 120234.43674213343, 123902.64078041127, + 128043.02678264077, 132537.77910566205, 137255.44324327068, + 142133.99975482066, 146936.6051528712, 151649.0669430089, + 156060.52957404198, 160120.159871361, 163681.1285011483, + 166620.41715425157, 168889.56925442678, 170399.26440844932, + 171140.7337024876, 171113.2461008764, 170363.09313536622, + 168952.86173902688, 167013.6322666939, 164580.58468932117, + 161839.18960968123, 158788.76980076233, 155554.40907757857, + 152158.43105922287, 148636.08439386438, 145119.50014055404, + 141572.41870705216, 138175.1686946488, 134917.92930468905, + 131954.56122188174, 129354.42879990466, 127131.8597181801, + 125347.91111880097, 123925.25241877104, 122860.43937044225, + 122065.51393533363, 121481.07963294098, 121055.92064734838, + 120758.98981122412, 120581.14011459102, 120541.09827440383, + 120645.83765833227, 120919.20548605348, 121352.32574051208, + 121906.79601884316, 122554.41714213381, 123200.94686018495, + 123811.24368265919, 124299.43063395993, 124636.90158921338, + 124811.36597383225, 124824.08445338266, 124712.84249176875, + 124502.92719823204, 124230.44405730197, 123916.54216683704, + 123568.02601248598, 123180.36510330936, 122746.16929589148, + 122251.83395274029, 121702.56250441082, 121099.87618457107, + 120467.38088890075, 119829.09204492297, 119201.07056887336, + 118606.45734824151, 118037.95380511213, 117497.98527518162, + 116967.05838424225, 116432.05184022471, 115884.66719641334, + 115321.0487066789, 114757.96048698395, 114206.38525653952, + 113690.13820529977, 113219.50251917868, 112800.55913109878, + 112426.14180954087, 112078.10130703654, 111734.75948267913, + 111376.40028170015, 110992.39510951277, 110583.97786973561, + 110164.22215928748, 109755.40191307724, 109379.96888043925, + 109084.6218173866 + ], + "flow:J4:branch6_seg0": [ + 3.4556337423030343, 3.487159357881352, 3.5487986759716765, + 3.640570466423396, 3.7644974065390953, 3.9240790530532728, + 4.134384963272937, 4.415997623194684, 4.801344660906032, + 5.327808484212765, 6.024678748363604, 6.93006238696516, 8.046957651726961, + 9.390024681411166, 10.930179917958394, 12.63022696849422, + 14.455769934579962, 16.33101889792429, 18.227343647374216, + 20.054977441352705, 21.77615458463858, 23.333329690259863, + 24.6760935463768, 25.772198615604495, 26.563905687103734, + 27.034933495479407, 27.159293812481373, 26.93375480103535, + 26.36672762678089, 25.486304652037944, 24.323695747417275, + 22.94249884068872, 21.375377786341964, 19.691491285770343, + 17.928497248849034, 16.118868720344217, 14.303574910779753, + 12.48340448984426, 10.713012053474449, 8.995592556792158, + 7.377723167599324, 5.887483323570633, 4.558013541317894, + 3.4384180995191294, 2.5311553609331763, 1.8560518631877472, + 1.3893730966267033, 1.1127967304856685, 0.9918423296784428, + 0.987407056727722, 1.0685104849511002, 1.212029999632515, + 1.4068934582544743, 1.6535793372674814, 1.9562025684780915, + 2.31932538341812, 2.744589565208184, 3.21553346506506, 3.717860179123707, + 4.216971179617089, 4.6866318771221, 5.096593785226368, 5.423684737523047, + 5.663585428447429, 5.815438706181022, 5.895290275743882, + 5.918407059817991, 5.902972240993186, 5.862959648877146, + 5.805981781189073, 5.732854151312372, 5.641645507844689, + 5.5277078371397765, 5.390640163506198, 5.2327586684895175, + 5.061063264882801, 4.88800629156843, 4.72163915430625, 4.572477313517934, + 4.441397439848893, 4.327933127916111, 4.226443668415136, + 4.128741090459216, 4.0303568363672655, 3.927544402208541, + 3.8249119022204647, 3.728141714176263, 3.645827483747639, + 3.5852070338077824, 3.548872372307291, 3.535631771395009, + 3.5380235161731144, 3.5461630026062028, 3.5501001550051554, + 3.543036254911632, 3.5235056738293187, 3.4954993364704867, + 3.468047896729738, 3.451429526977913, 3.4556337423030343 + ], + "pressure:J4:branch6_seg0": [ + 109084.6218173866, 108829.37915694356, 108644.454261784, + 108532.35540828279, 108501.44438803892, 108565.70283649443, + 108774.18928677902, 109175.88975479882, 109866.51435028271, + 110925.09341506452, 112431.44739668585, 114477.47169064693, + 117054.89190404807, 120234.43674213343, 123902.64078041127, + 128043.02678264077, 132537.77910566205, 137255.44324327068, + 142133.99975482066, 146936.6051528712, 151649.0669430089, + 156060.52957404198, 160120.159871361, 163681.1285011483, + 166620.41715425157, 168889.56925442678, 170399.26440844932, + 171140.7337024876, 171113.2461008764, 170363.09313536622, + 168952.86173902688, 167013.6322666939, 164580.58468932117, + 161839.18960968123, 158788.76980076233, 155554.40907757857, + 152158.43105922287, 148636.08439386438, 145119.50014055404, + 141572.41870705216, 138175.1686946488, 134917.92930468905, + 131954.56122188174, 129354.42879990466, 127131.8597181801, + 125347.91111880097, 123925.25241877104, 122860.43937044225, + 122065.51393533363, 121481.07963294098, 121055.92064734838, + 120758.98981122412, 120581.14011459102, 120541.09827440383, + 120645.83765833227, 120919.20548605348, 121352.32574051208, + 121906.79601884316, 122554.41714213381, 123200.94686018495, + 123811.24368265919, 124299.43063395993, 124636.90158921338, + 124811.36597383225, 124824.08445338266, 124712.84249176875, + 124502.92719823204, 124230.44405730197, 123916.54216683704, + 123568.02601248598, 123180.36510330936, 122746.16929589148, + 122251.83395274029, 121702.56250441082, 121099.87618457107, + 120467.38088890075, 119829.09204492297, 119201.07056887336, + 118606.45734824151, 118037.95380511213, 117497.98527518162, + 116967.05838424225, 116432.05184022471, 115884.66719641334, + 115321.0487066789, 114757.96048698395, 114206.38525653952, + 113690.13820529977, 113219.50251917868, 112800.55913109878, + 112426.14180954087, 112078.10130703654, 111734.75948267913, + 111376.40028170015, 110992.39510951277, 110583.97786973561, + 110164.22215928748, 109755.40191307724, 109379.96888043925, + 109084.6218173866 + ], + "flow:J4:branch13_seg0": [ + 1.987991582711174, 2.000553920339053, 2.0286365139703824, + 2.0736731325448363, 2.1366240908811114, 2.2199252616274006, + 2.330702584318273, 2.4781339975675882, 2.6800705619414726, + 2.9528235490794734, 3.3163956914665302, 3.788741766164341, + 4.37724767301319, 5.092275077597647, 5.919509073227108, 6.850532749590514, + 7.855828113928933, 8.912270601878449, 9.98591076845329, + 11.042428935799585, 12.053803999300815, 12.980761168877272, + 13.806699752652797, 14.49313611810267, 15.024828440711229, + 15.378644394980014, 15.541905361225815, 15.509548827486205, + 15.281959180295642, 14.869602955528338, 14.291505016190166, + 13.572013690964916, 12.736049660853878, 11.817009504885894, + 10.833718481502123, 9.818228779514808, 8.778027956491789, + 7.737673803426746, 6.708975779826059, 5.704878841672955, 4.75203347092524, + 3.8559978990013857, 3.0512547587788057, 2.348519857490605, + 1.7642746906950624, 1.306769879728194, 0.9690999073652604, + 0.745564760039845, 0.6192080222182221, 0.5703161170603277, + 0.5823074982252996, 0.63966437655258, 0.7330408158412318, + 0.8608402592482286, 1.0203656127257266, 1.2160007620004367, + 1.4449785784843006, 1.7029853605627814, 1.9819481887158164, + 2.2650068428533614, 2.540055565345015, 2.787554881226638, + 2.9966668216698618, 3.159280406343797, 3.2740604043083934, + 3.345371702506662, 3.380966836449117, 3.388933274734846, + 3.3781947205573686, 3.3533847142377944, 3.317245166607547, + 3.2700369288191706, 3.2099472102228788, 3.137497036360148, + 3.052442218329638, 2.9591210785043534, 2.861946492791512, + 2.7663567017316395, 2.6774678635473483, 2.5971179010534615, + 2.526239438559149, 2.4625223901098177, 2.4029600215889566, + 2.3444378449849625, 2.285344745997236, 2.2263733708750113, + 2.169966144839252, 2.1203622136895195, 2.0806580685962355, + 2.053836394683036, 2.0392170443427546, 2.0345757795493653, + 2.0352306037105587, 2.036142643207814, 2.0334301766976792, + 2.0251464095598233, 2.0123520132775305, 1.9985691796103746, + 1.9887242999122583, 1.987991582711174 + ], + "pressure:J4:branch13_seg0": [ + 109084.6218173866, 108829.37915694356, 108644.454261784, + 108532.35540828279, 108501.44438803892, 108565.70283649443, + 108774.18928677902, 109175.88975479882, 109866.51435028271, + 110925.09341506452, 112431.44739668585, 114477.47169064693, + 117054.89190404807, 120234.43674213343, 123902.64078041127, + 128043.02678264077, 132537.77910566205, 137255.44324327068, + 142133.99975482066, 146936.6051528712, 151649.0669430089, + 156060.52957404198, 160120.159871361, 163681.1285011483, + 166620.41715425157, 168889.56925442678, 170399.26440844932, + 171140.7337024876, 171113.2461008764, 170363.09313536622, + 168952.86173902688, 167013.6322666939, 164580.58468932117, + 161839.18960968123, 158788.76980076233, 155554.40907757857, + 152158.43105922287, 148636.08439386438, 145119.50014055404, + 141572.41870705216, 138175.1686946488, 134917.92930468905, + 131954.56122188174, 129354.42879990466, 127131.8597181801, + 125347.91111880097, 123925.25241877104, 122860.43937044225, + 122065.51393533363, 121481.07963294098, 121055.92064734838, + 120758.98981122412, 120581.14011459102, 120541.09827440383, + 120645.83765833227, 120919.20548605348, 121352.32574051208, + 121906.79601884316, 122554.41714213381, 123200.94686018495, + 123811.24368265919, 124299.43063395993, 124636.90158921338, + 124811.36597383225, 124824.08445338266, 124712.84249176875, + 124502.92719823204, 124230.44405730197, 123916.54216683704, + 123568.02601248598, 123180.36510330936, 122746.16929589148, + 122251.83395274029, 121702.56250441082, 121099.87618457107, + 120467.38088890075, 119829.09204492297, 119201.07056887336, + 118606.45734824151, 118037.95380511213, 117497.98527518162, + 116967.05838424225, 116432.05184022471, 115884.66719641334, + 115321.0487066789, 114757.96048698395, 114206.38525653952, + 113690.13820529977, 113219.50251917868, 112800.55913109878, + 112426.14180954087, 112078.10130703654, 111734.75948267913, + 111376.40028170015, 110992.39510951277, 110583.97786973561, + 110164.22215928748, 109755.40191307724, 109379.96888043925, + 109084.6218173866 + ], + "flow:branch7_seg2:J5": [ + 2.9707196644785867, 2.980907477923101, 3.0108287625710064, + 3.0621649247490295, 3.1377694734778485, 3.239877483451313, + 3.376875837742349, 3.561417694541534, 3.81214468005469, 4.155952083105974, + 4.613092124004645, 5.216481315186746, 5.974145539788123, + 6.905411943397598, 8.003733991880594, 9.245321068241754, + 10.625746956129918, 12.081511304525685, 13.60214690472115, + 15.119599776113315, 16.59507519182715, 17.99343653208015, + 19.257765166574533, 20.366751424257295, 21.26587115157821, + 21.936055574928837, 22.34932852958134, 22.49480178813234, + 22.367217852853305, 21.977730211420866, 21.33641201428081, + 20.48513524539789, 19.44265032611418, 18.25616624663755, + 16.962416260858117, 15.577271592631828, 14.150616199148082, + 12.679392153522805, 11.211199074898987, 9.755292191274707, + 8.340060972892097, 6.996040329533076, 5.742032236677564, + 4.624541043808056, 3.649140482027115, 2.8460966996435433, + 2.2072754446239813, 1.7304154445237263, 1.4026654964187673, + 1.1978359700817152, 1.098928455068636, 1.0830819030404362, + 1.1363406156904494, 1.251455387307831, 1.4253979587774408, + 1.6567276761795884, 1.9466789739698365, 2.2839627479309703, + 2.6614039742076177, 3.057036236725938, 3.452376933971049, + 3.825902830124384, 4.154448512090962, 4.4304612066770295, + 4.6422645406702685, 4.795488951861804, 4.895313164791278, + 4.9513089129284555, 4.974147777669376, 4.970384422956942, + 4.944224968957464, 4.897726522532568, 4.830038226570563, 4.74140681126939, + 4.633391572797837, 4.508918603500634, 4.376315727249666, + 4.240406676111344, 4.110316734999511, 3.9886249807341843, + 3.877568335199502, 3.7766157548209716, 3.6807695611652895, + 3.5887489128687635, 3.496355274135975, 3.405060273119346, + 3.317368256259547, 3.2371872672168562, 3.1703440784411265, + 3.1192680681350073, 3.0855686775271054, 3.066533986300536, + 3.057169566106848, 3.051295386103716, 3.043357273926989, + 3.030340237564407, 3.012134369031268, 2.992393649875555, + 2.976351861670911, 2.9707196644785867 + ], + "pressure:branch7_seg2:J5": [ + 108871.19109059984, 108571.3791614198, 108332.34831473442, + 108155.8908668447, 108051.51443275576, 108027.68719670358, + 108111.26635493232, 108356.46688199713, 108810.8779745261, + 109579.47471942597, 110707.80055894933, 112298.06822983157, + 114388.26917767509, 116994.14834045598, 120158.87315640804, + 123732.71784990637, 127788.03931456593, 132085.60295874288, + 136639.07846220513, 141283.22996157673, 145836.53255214082, + 150340.5359979841, 154484.93192572403, 158336.1617661725, + 161659.87297804866, 164405.3855231067, 166532.4210727418, + 167936.7056847837, 168636.9440956668, 168642.87843189217, + 167968.31265997776, 166734.22313475743, 164979.7085765313, + 162780.58743591237, 160298.67494797654, 157450.40888222514, + 154470.0157639131, 151241.67351711311, 147925.18307690317, + 144580.8268694702, 141172.1790515885, 137940.99995395343, + 134797.34331360337, 131978.74405412909, 129459.85074908298, + 127288.591556827, 125503.39381256336, 124029.71665508693, + 122889.64576454047, 121985.07534647596, 121288.76905342915, + 120759.54691912563, 120376.07556300554, 120140.25239913516, + 120067.80406225774, 120151.20745270365, 120416.01573254247, + 120819.21973052691, 121337.51264170923, 121927.19236885644, + 122503.40261748544, 123045.9788375563, 123461.73797908516, + 123758.35386855403, 123909.31231967578, 123930.86546161438, + 123850.81891358124, 123683.09794348919, 123458.61429970038, + 123185.31271162242, 122865.15886363613, 122496.34302611028, + 122071.37552957468, 121583.6447054551, 121045.47430474199, + 120457.3597844516, 119852.55257477865, 119240.80977248032, + 118642.07234443519, 118067.6005989395, 117508.45957384868, + 116970.04959505744, 116427.8723181531, 115882.97818948225, + 115324.50058368708, 114758.97503014655, 114203.32558742043, + 113663.38825457117, 113165.08305244827, 112706.50302967092, + 112293.3951221252, 111913.98446994189, 111549.71426486797, + 111185.64100254943, 110806.71710274181, 110409.37750224528, + 109998.24181872146, 109588.17003888445, 109197.64101966018, + 108871.19109059984 + ], + "flow:J5:branch8_seg0": [ + 2.0728041049301558, 2.078378522403957, 2.0970622203560803, + 2.1304005449600374, 2.180678813049116, 2.2492613625947975, + 2.3423800303549904, 2.4670182672436343, 2.6369421364966783, + 2.8685428744000467, 3.1761837450788835, 3.5843323872203587, + 4.094819771779258, 4.729194811893847, 5.475670896478183, + 6.327667582330353, 7.279487092270868, 8.287191210895456, + 9.349946227132554, 10.410014070309686, 11.454297161074773, + 12.443782946821019, 13.349924777382801, 14.150095373858028, + 14.806619374275629, 15.31032096708086, 15.632505545127163, + 15.772432597844647, 15.720568383976143, 15.484502912641691, + 15.069221868954454, 14.50394075294483, 13.796538720241493, + 12.987597926843149, 12.092583872749412, 11.131899002557367, + 10.135367962131557, 9.103037935591162, 8.073647204488177, + 7.042669725771756, 6.045263542833613, 5.0866056307144385, + 4.191875551123815, 3.3878306471038573, 2.676308235933028, + 2.089106013288589, 1.6105987838853528, 1.2502548934544058, + 0.9948407401178654, 0.8290555401634709, 0.7430686428146364, + 0.7185842150277347, 0.746164865054567, 0.8195199133843196, + 0.9345486935841111, 1.0910697288744466, 1.2885013342263874, + 1.5192931835717092, 1.780861933832093, 2.0551054657717573, + 2.3343401140382043, 2.599647786459832, 2.837479300980187, + 3.0413949466188264, 3.2003369785139664, 3.3194701750956943, + 3.3992744996026705, 3.447228003140316, 3.4700664306239344, + 3.4723395314449657, 3.4577716160420966, 3.428357341836689, + 3.3837026488979443, 3.3248270488168172, 3.2518326682964416, + 3.1672526346998144, 3.0761045003249436, 2.98113245251242, + 2.889831900763273, 2.8026731020675433, 2.723147228021303, + 2.6502407081153367, 2.581326358213614, 2.5159584694531163, + 2.450620522274875, 2.386785019634524, 2.324888588125899, + 2.2681040878606478, 2.2196693173294246, 2.1817129816387855, + 2.1555957734747215, 2.1396933681376136, 2.1313325024672056, + 2.1262418588374294, 2.1207512489133507, 2.1125200742091508, + 2.1009852808553804, 2.0882453144012185, 2.0773109700826446, + 2.0728041049301558 + ], + "pressure:J5:branch8_seg0": [ + 108871.19109059984, 108571.3791614198, 108332.34831473442, + 108155.8908668447, 108051.51443275576, 108027.68719670358, + 108111.26635493232, 108356.46688199713, 108810.8779745261, + 109579.47471942597, 110707.80055894933, 112298.06822983157, + 114388.26917767509, 116994.14834045598, 120158.87315640804, + 123732.71784990637, 127788.03931456593, 132085.60295874288, + 136639.07846220513, 141283.22996157673, 145836.53255214082, + 150340.5359979841, 154484.93192572403, 158336.1617661725, + 161659.87297804866, 164405.3855231067, 166532.4210727418, + 167936.7056847837, 168636.9440956668, 168642.87843189217, + 167968.31265997776, 166734.22313475743, 164979.7085765313, + 162780.58743591237, 160298.67494797654, 157450.40888222514, + 154470.0157639131, 151241.67351711311, 147925.18307690317, + 144580.8268694702, 141172.1790515885, 137940.99995395343, + 134797.34331360337, 131978.74405412909, 129459.85074908298, + 127288.591556827, 125503.39381256336, 124029.71665508693, + 122889.64576454047, 121985.07534647596, 121288.76905342915, + 120759.54691912563, 120376.07556300554, 120140.25239913516, + 120067.80406225774, 120151.20745270365, 120416.01573254247, + 120819.21973052691, 121337.51264170923, 121927.19236885644, + 122503.40261748544, 123045.9788375563, 123461.73797908516, + 123758.35386855403, 123909.31231967578, 123930.86546161438, + 123850.81891358124, 123683.09794348919, 123458.61429970038, + 123185.31271162242, 122865.15886363613, 122496.34302611028, + 122071.37552957468, 121583.6447054551, 121045.47430474199, + 120457.3597844516, 119852.55257477865, 119240.80977248032, + 118642.07234443519, 118067.6005989395, 117508.45957384868, + 116970.04959505744, 116427.8723181531, 115882.97818948225, + 115324.50058368708, 114758.97503014655, 114203.32558742043, + 113663.38825457117, 113165.08305244827, 112706.50302967092, + 112293.3951221252, 111913.98446994189, 111549.71426486797, + 111185.64100254943, 110806.71710274181, 110409.37750224528, + 109998.24181872146, 109588.17003888445, 109197.64101966018, + 108871.19109059984 + ], + "flow:J5:branch12_seg0": [ + 0.8979155595484312, 0.9025289555191436, 0.913766542214926, + 0.9317643797889922, 0.9570906604287333, 0.9906161208565167, + 1.0344958073873582, 1.094399427297899, 1.1752025435580113, + 1.2874092087059268, 1.4369083789257604, 1.6321489279663879, + 1.8793257680088669, 2.1762171315037513, 2.528063095402414, + 2.9176534859114005, 3.34625986385905, 3.794320093630228, + 4.252200677588594, 4.70958570580363, 5.140778030752374, 5.549653585259132, + 5.907840389191739, 6.216656050399269, 6.459251777302582, + 6.625734607847979, 6.716822984454174, 6.722369190287694, + 6.646649468877161, 6.493227298779176, 6.267190145326358, + 5.9811944924530565, 5.646111605872689, 5.2685683197943955, + 4.8698323881087076, 4.445372590074461, 4.015248237016528, + 3.5763542179316414, 3.1375518704108107, 2.7126224655029523, + 2.2947974300584817, 1.909434698818637, 1.5501566855537483, + 1.236710396704199, 0.972832246094087, 0.7569906863549544, + 0.5966766607386288, 0.4801605510693208, 0.4078247563009018, + 0.3687804299182442, 0.35585981225399943, 0.3644976880127014, + 0.3901757506358821, 0.43193547392351156, 0.4908492651933297, + 0.5656579473051416, 0.6581776397434493, 0.7646695643592614, + 0.880542040375525, 1.0019307709541803, 1.1180368199328445, + 1.2262550436645512, 1.3169692111107743, 1.3890662600582038, + 1.441927562156302, 1.4760187767661093, 1.4960386651886073, + 1.5040809097881398, 1.504081347045442, 1.4980448915119762, + 1.4864533529153667, 1.4693691806958793, 1.4463355776726188, + 1.4165797624525722, 1.3815589045013947, 1.3416659688008197, + 1.3002112269247212, 1.2592742235989243, 1.2204848342362382, + 1.1859518786666416, 1.1544211071781993, 1.1263750467056355, + 1.0994432029516756, 1.0727904434156479, 1.0457347518610995, + 1.018275253484822, 0.9924796681336486, 0.9690831793562076, + 0.9506747611117025, 0.9375550864962217, 0.9299729040523831, + 0.9268406181629217, 0.9258370636396422, 0.9250535272662864, + 0.9226060250136378, 0.9178201633552558, 0.9111490881758878, + 0.9041483354743372, 0.8990408915882656, 0.8979155595484312 + ], + "pressure:J5:branch12_seg0": [ + 108871.19109059984, 108571.3791614198, 108332.34831473442, + 108155.8908668447, 108051.51443275576, 108027.68719670358, + 108111.26635493232, 108356.46688199713, 108810.8779745261, + 109579.47471942597, 110707.80055894933, 112298.06822983157, + 114388.26917767509, 116994.14834045598, 120158.87315640804, + 123732.71784990637, 127788.03931456593, 132085.60295874288, + 136639.07846220513, 141283.22996157673, 145836.53255214082, + 150340.5359979841, 154484.93192572403, 158336.1617661725, + 161659.87297804866, 164405.3855231067, 166532.4210727418, + 167936.7056847837, 168636.9440956668, 168642.87843189217, + 167968.31265997776, 166734.22313475743, 164979.7085765313, + 162780.58743591237, 160298.67494797654, 157450.40888222514, + 154470.0157639131, 151241.67351711311, 147925.18307690317, + 144580.8268694702, 141172.1790515885, 137940.99995395343, + 134797.34331360337, 131978.74405412909, 129459.85074908298, + 127288.591556827, 125503.39381256336, 124029.71665508693, + 122889.64576454047, 121985.07534647596, 121288.76905342915, + 120759.54691912563, 120376.07556300554, 120140.25239913516, + 120067.80406225774, 120151.20745270365, 120416.01573254247, + 120819.21973052691, 121337.51264170923, 121927.19236885644, + 122503.40261748544, 123045.9788375563, 123461.73797908516, + 123758.35386855403, 123909.31231967578, 123930.86546161438, + 123850.81891358124, 123683.09794348919, 123458.61429970038, + 123185.31271162242, 122865.15886363613, 122496.34302611028, + 122071.37552957468, 121583.6447054551, 121045.47430474199, + 120457.3597844516, 119852.55257477865, 119240.80977248032, + 118642.07234443519, 118067.6005989395, 117508.45957384868, + 116970.04959505744, 116427.8723181531, 115882.97818948225, + 115324.50058368708, 114758.97503014655, 114203.32558742043, + 113663.38825457117, 113165.08305244827, 112706.50302967092, + 112293.3951221252, 111913.98446994189, 111549.71426486797, + 111185.64100254943, 110806.71710274181, 110409.37750224528, + 109998.24181872146, 109588.17003888445, 109197.64101966018, + 108871.19109059984 + ], + "flow:branch3_seg0:J6": [ + 3.2022030335535616, 3.2144043060695138, 3.2448348013764616, + 3.296329429452778, 3.3713887514293797, 3.473931105475683, + 3.6158261471098645, 3.80751509303176, 4.073672770695834, + 4.432446979759601, 4.907718042334976, 5.522180488213135, + 6.280642408890804, 7.203368591274494, 8.263885146747867, + 9.469367537641652, 10.770373492834501, 12.142669909967404, + 13.551698346060725, 14.931536347083432, 16.284164197152506, + 17.52899945143754, 18.657889195685314, 19.61991106899804, + 20.37985780778135, 20.93245708137991, 21.248308072871406, + 21.327034267251204, 21.168521611107522, 20.777431116330902, + 20.180019015218654, 19.402711098901626, 18.466187318144637, + 17.419622094440992, 16.258924105617396, 15.040358980306488, + 13.763285180471648, 12.455985739492546, 11.155388976795807, + 9.845870054172611, 8.586989232348532, 7.3712731916302765, + 6.2480202900631925, 5.240736960905635, 4.3590509662223305, + 3.626848557074766, 3.029872110553598, 2.575556565266398, + 2.2438991342110017, 2.0245753450126434, 1.8998175664727992, + 1.8534536254727887, 1.8753215063420623, 1.9607313316137236, + 2.105285417097958, 2.3112155737773867, 2.5715596744577915, + 2.8757071087550057, 3.2154007652738588, 3.565879417186204, + 3.91692345116725, 4.241843203874328, 4.528924783737375, 4.765972919377671, + 4.948030618823391, 5.080433608793943, 5.166240554791386, 5.2157746271378, + 5.234377015809882, 5.227358016260275, 5.19794608357537, 5.147787459595017, + 5.076320306712228, 4.986212488756285, 4.877495143782955, + 4.7565130581749395, 4.6287479663735285, 4.499718815189603, + 4.376370152949813, 4.259009961025446, 4.150846962383748, + 4.048173064503291, 3.950451074633704, 3.85489315525337, + 3.7600060204115433, 3.668640866099073, 3.5809907402898173, + 3.5035108174878107, 3.4381904271103636, 3.3879784530401413, + 3.3528951063894996, 3.329046082933724, 3.312504555657267, + 3.2979218791562523, 3.2817141401666037, 3.2621896859141732, + 3.2404270401269426, 3.2199080227397565, 3.205409393107688, + 3.2022030335535616 + ], + "pressure:branch3_seg0:J6": [ + 109158.44989991483, 108919.71024900943, 108751.85356854404, + 108656.77723933355, 108643.71857148284, 108728.4974216387, + 108969.29537402099, 109416.0453234125, 110174.95544676053, + 111324.62006797841, 112938.07727910849, 115118.63468846866, + 117833.33540853788, 121168.11023338296, 124986.76405223277, + 129262.08005099061, 133879.9822246947, 138698.19083416418, + 143665.0647629555, 148529.2882765195, 153295.37384411658, + 157718.1094120952, 161764.79839999252, 165275.5105932459, + 168116.33400933084, 170271.07000722084, 171624.18225343054, + 172179.4618586196, 171949.78642788157, 170984.7780780504, + 169368.392165129, 167244.26388154685, 164635.83338248532, + 161750.10275916648, 158570.79621297307, 155238.7744411607, + 151762.55252236343, 148177.77897155474, 144633.28843359541, + 141052.70798794573, 137669.1595738512, 134442.8121759522, + 131539.3755426637, 129044.77404108307, 126912.98915471132, + 125231.61002217628, 123898.14660090899, 122900.29812124108, + 122168.1235403242, 121618.08928517507, 121213.55497321028, + 120929.81345616453, 120759.00952807088, 120736.28935154909, + 120863.52737975742, 121166.45905139283, 121631.03310978207, + 122205.29706441729, 122869.21317313016, 123512.15280150823, + 124106.97222099603, 124566.92470580558, 124859.79888960175, + 124993.02444763147, 124967.09473200001, 124826.17289847253, + 124599.42705210738, 124315.81221632703, 123997.49101346672, + 123646.10031799857, 123253.12726454469, 122811.71814446349, + 122305.22291030093, 121743.45141691847, 121128.61366563098, + 120488.26487378772, 119850.37665343411, 119226.05413506414, + 118640.17819614019, 118079.89744065859, 117545.12000213421, + 117017.26045123104, 116479.9432491677, 115927.63648162605, + 115358.46285974565, 114792.38430028548, 114241.86342610882, + 113732.76139220982, 113272.9621015045, 112866.39301961543, + 112502.6854978606, 112159.46492670945, 111815.30942328989, + 111450.74216467486, 111057.70181802782, 110640.91216599917, + 110216.22368053035, 109808.70485348262, 109440.94104883596, + 109158.44989991483 + ], + "flow:J6:branch3_seg1": [ + 3.2022030335535616, 3.2144043060695138, 3.2448348013764616, + 3.296329429452778, 3.3713887514293797, 3.473931105475683, + 3.6158261471098645, 3.80751509303176, 4.073672770695834, + 4.432446979759601, 4.907718042334976, 5.522180488213135, + 6.280642408890804, 7.203368591274494, 8.263885146747867, + 9.469367537641652, 10.770373492834501, 12.142669909967404, + 13.551698346060725, 14.931536347083432, 16.284164197152506, + 17.52899945143754, 18.657889195685314, 19.61991106899804, + 20.37985780778135, 20.93245708137991, 21.248308072871406, + 21.327034267251204, 21.168521611107522, 20.777431116330902, + 20.180019015218654, 19.402711098901626, 18.466187318144637, + 17.419622094440992, 16.258924105617396, 15.040358980306488, + 13.763285180471648, 12.455985739492546, 11.155388976795807, + 9.845870054172611, 8.586989232348532, 7.3712731916302765, + 6.2480202900631925, 5.240736960905635, 4.3590509662223305, + 3.626848557074766, 3.029872110553598, 2.575556565266398, + 2.2438991342110017, 2.0245753450126434, 1.8998175664727992, + 1.8534536254727887, 1.8753215063420623, 1.9607313316137236, + 2.105285417097958, 2.3112155737773867, 2.5715596744577915, + 2.8757071087550057, 3.2154007652738588, 3.565879417186204, + 3.91692345116725, 4.241843203874328, 4.528924783737375, 4.765972919377671, + 4.948030618823391, 5.080433608793943, 5.166240554791386, 5.2157746271378, + 5.234377015809882, 5.227358016260275, 5.19794608357537, 5.147787459595017, + 5.076320306712228, 4.986212488756285, 4.877495143782955, + 4.7565130581749395, 4.6287479663735285, 4.499718815189603, + 4.376370152949813, 4.259009961025446, 4.150846962383748, + 4.048173064503291, 3.950451074633704, 3.85489315525337, + 3.7600060204115433, 3.668640866099073, 3.5809907402898173, + 3.5035108174878107, 3.4381904271103636, 3.3879784530401413, + 3.3528951063894996, 3.329046082933724, 3.312504555657267, + 3.2979218791562523, 3.2817141401666037, 3.2621896859141732, + 3.2404270401269426, 3.2199080227397565, 3.205409393107688, + 3.2022030335535616 + ], + "pressure:J6:branch3_seg1": [ + 109158.44989991483, 108919.71024900943, 108751.85356854404, + 108656.77723933355, 108643.71857148284, 108728.4974216387, + 108969.29537402099, 109416.0453234125, 110174.95544676053, + 111324.62006797841, 112938.07727910849, 115118.63468846866, + 117833.33540853788, 121168.11023338296, 124986.76405223277, + 129262.08005099061, 133879.9822246947, 138698.19083416418, + 143665.0647629555, 148529.2882765195, 153295.37384411658, + 157718.1094120952, 161764.79839999252, 165275.5105932459, + 168116.33400933084, 170271.07000722084, 171624.18225343054, + 172179.4618586196, 171949.78642788157, 170984.7780780504, + 169368.392165129, 167244.26388154685, 164635.83338248532, + 161750.10275916648, 158570.79621297307, 155238.7744411607, + 151762.55252236343, 148177.77897155474, 144633.28843359541, + 141052.70798794573, 137669.1595738512, 134442.8121759522, + 131539.3755426637, 129044.77404108307, 126912.98915471132, + 125231.61002217628, 123898.14660090899, 122900.29812124108, + 122168.1235403242, 121618.08928517507, 121213.55497321028, + 120929.81345616453, 120759.00952807088, 120736.28935154909, + 120863.52737975742, 121166.45905139283, 121631.03310978207, + 122205.29706441729, 122869.21317313016, 123512.15280150823, + 124106.97222099603, 124566.92470580558, 124859.79888960175, + 124993.02444763147, 124967.09473200001, 124826.17289847253, + 124599.42705210738, 124315.81221632703, 123997.49101346672, + 123646.10031799857, 123253.12726454469, 122811.71814446349, + 122305.22291030093, 121743.45141691847, 121128.61366563098, + 120488.26487378772, 119850.37665343411, 119226.05413506414, + 118640.17819614019, 118079.89744065859, 117545.12000213421, + 117017.26045123104, 116479.9432491677, 115927.63648162605, + 115358.46285974565, 114792.38430028548, 114241.86342610882, + 113732.76139220982, 113272.9621015045, 112866.39301961543, + 112502.6854978606, 112159.46492670945, 111815.30942328989, + 111450.74216467486, 111057.70181802782, 110640.91216599917, + 110216.22368053035, 109808.70485348262, 109440.94104883596, + 109158.44989991483 + ], + "flow:branch3_seg1:J7": [ + 3.2035303023275685, 3.215385286422943, 3.245488894266661, + 3.2965995140401403, 3.371244496958031, 3.4732060996415264, + 3.6142255124733733, 3.8047404530409397, 4.069148842592885, + 4.425925540215164, 4.898564693793944, 5.510463199078174, + 6.266087751421727, 7.186164522778304, 8.244735937050383, + 9.447762600448636, 10.747968175609321, 12.118941414446786, + 13.528106301720484, 14.90883684866445, 16.262151649343213, + 17.509040220619625, 18.639718944851495, 19.604690261492717, + 20.367943735984067, 20.92418148342665, 21.24379249091482, + 21.326333177890167, 21.171216162060965, 20.783654752143164, + 20.188811168316306, 19.414066889754285, 18.479276431209488, + 17.43369429165992, 16.27453073813908, 15.056245443934042, + 13.780315098658185, 12.473068189062161, 11.17228542229693, + 9.862536753079421, 8.602609838997589, 7.386012586068114, + 6.260978972679858, 5.252019579482047, 4.368097765359715, 3.63404150388735, + 3.035304258361878, 2.5795857727380325, 2.247020047702979, + 2.026859554104241, 1.90149945087268, 1.8545309608771365, + 1.875782753683721, 1.9604844876442649, 2.1043115225732754, + 2.309348001822648, 2.569040748730199, 2.8726475381004475, + 3.2122108626539068, 3.562892533767314, 3.914386474089069, + 4.2400866227946326, 4.527854554352409, 4.765771611557002, + 4.948451627441931, 5.081383200240601, 5.167534846109116, 5.21723673415263, + 5.235982786116732, 5.229137862942828, 5.199945712680313, + 5.150072574204384, 5.078909064210525, 4.989042905759612, + 4.880540309623197, 4.759592357575996, 4.631824217309687, + 4.502628882560076, 4.379129153716068, 4.26162465452222, 4.153364492106716, + 4.050749388577105, 3.9530628515008415, 3.857620118704326, + 3.762759564305232, 3.6713260006240653, 3.5835618097010404, + 3.5058394316832584, 3.4402850397569256, 3.3898329063909802, + 3.3545805562872264, 3.330683169900782, 3.3141991211293065, + 3.29974817331994, 3.283680329454247, 3.2642440545510003, + 3.242454742972193, 3.2218019293963223, 3.207049344730095, + 3.2035303023275685 + ], + "pressure:branch3_seg1:J7": [ + 109115.03069470703, 108870.72034597426, 108696.53887406048, + 108593.55965550272, 108571.34304620448, 108643.74643876663, + 108868.28536008376, 109292.85764022726, 110020.63163719863, + 111132.3073378655, 112691.23342616801, 114813.0889296566, + 117455.85854264918, 120716.06801237684, 124463.19482562362, + 128650.65767996767, 133193.40119016837, 137920.4304149124, + 142812.55375854453, 147612.24733536993, 152323.26543381877, + 156705.63232472594, 160714.7049872758, 164211.62488219462, + 167052.5662556787, 169238.56177701367, 170642.9309732976, + 171267.89282340842, 171121.0287805255, 170255.04514837323, + 168741.54553724098, 166733.21438162212, 164233.9865187455, + 161448.44197624357, 158369.76241552286, 155123.01538784523, + 151739.79470387724, 148228.60601615303, 144750.48060606275, + 141214.05992022896, 137860.0752316092, 134653.84705560812, + 131749.4916859184, 129256.89869932899, 127100.95793838463, + 125391.04333342063, 124021.54649027536, 122985.27939797143, + 122225.12172184304, 121647.88341839991, 121220.60386022486, + 120914.54248168001, 120721.48695351035, 120677.83774226232, + 120785.47986874125, 121067.43299495392, 121513.45491985348, + 122067.4126553953, 122718.04511312411, 123352.34885068018, + 123945.07258722615, 124410.8430572415, 124708.26591820765, + 124852.60543370248, 124837.35715725104, 124708.81560183624, + 124494.25244864602, 124220.02241738563, 123909.50781415794, + 123565.04147262224, 123179.06778548496, 122745.7526870334, + 122247.58129782985, 121693.8197865892, 121086.44725951405, + 120451.22518653312, 119818.696225987, 119196.40679604001, + 118611.8301590523, 118051.34921860145, 117515.50684929932, + 116988.72718867869, 116452.26626809564, 115902.44770207573, + 115334.81314605186, 114769.24014073609, 114217.95986996993, + 113706.55662329774, 113244.02732773805, 112833.85813848473, + 112466.99108913861, 112120.98129436006, 111775.45616293748, + 111411.07687325792, 111019.25168347562, 110604.11148464314, + 110180.10293868612, 109772.03524895057, 109401.75290377182, + 109115.03069470703 + ], + "flow:J7:branch3_seg2": [ + 3.2035303023275685, 3.215385286422943, 3.245488894266661, + 3.2965995140401403, 3.371244496958031, 3.4732060996415264, + 3.6142255124733733, 3.8047404530409397, 4.069148842592885, + 4.425925540215164, 4.898564693793944, 5.510463199078174, + 6.266087751421727, 7.186164522778304, 8.244735937050383, + 9.447762600448636, 10.747968175609321, 12.118941414446786, + 13.528106301720484, 14.90883684866445, 16.262151649343213, + 17.509040220619625, 18.639718944851495, 19.604690261492717, + 20.367943735984067, 20.92418148342665, 21.24379249091482, + 21.326333177890167, 21.171216162060965, 20.783654752143164, + 20.188811168316306, 19.414066889754285, 18.479276431209488, + 17.43369429165992, 16.27453073813908, 15.056245443934042, + 13.780315098658185, 12.473068189062161, 11.17228542229693, + 9.862536753079421, 8.602609838997589, 7.386012586068114, + 6.260978972679858, 5.252019579482047, 4.368097765359715, 3.63404150388735, + 3.035304258361878, 2.5795857727380325, 2.247020047702979, + 2.026859554104241, 1.90149945087268, 1.8545309608771365, + 1.875782753683721, 1.9604844876442649, 2.1043115225732754, + 2.309348001822648, 2.569040748730199, 2.8726475381004475, + 3.2122108626539068, 3.562892533767314, 3.914386474089069, + 4.2400866227946326, 4.527854554352409, 4.765771611557002, + 4.948451627441931, 5.081383200240601, 5.167534846109116, 5.21723673415263, + 5.235982786116732, 5.229137862942828, 5.199945712680313, + 5.150072574204384, 5.078909064210525, 4.989042905759612, + 4.880540309623197, 4.759592357575996, 4.631824217309687, + 4.502628882560076, 4.379129153716068, 4.26162465452222, 4.153364492106716, + 4.050749388577105, 3.9530628515008415, 3.857620118704326, + 3.762759564305232, 3.6713260006240653, 3.5835618097010404, + 3.5058394316832584, 3.4402850397569256, 3.3898329063909802, + 3.3545805562872264, 3.330683169900782, 3.3141991211293065, + 3.29974817331994, 3.283680329454247, 3.2642440545510003, + 3.242454742972193, 3.2218019293963223, 3.207049344730095, + 3.2035303023275685 + ], + "pressure:J7:branch3_seg2": [ + 109115.03069470703, 108870.72034597426, 108696.53887406048, + 108593.55965550272, 108571.34304620448, 108643.74643876663, + 108868.28536008376, 109292.85764022726, 110020.63163719863, + 111132.3073378655, 112691.23342616801, 114813.0889296566, + 117455.85854264918, 120716.06801237684, 124463.19482562362, + 128650.65767996767, 133193.40119016837, 137920.4304149124, + 142812.55375854453, 147612.24733536993, 152323.26543381877, + 156705.63232472594, 160714.7049872758, 164211.62488219462, + 167052.5662556787, 169238.56177701367, 170642.9309732976, + 171267.89282340842, 171121.0287805255, 170255.04514837323, + 168741.54553724098, 166733.21438162212, 164233.9865187455, + 161448.44197624357, 158369.76241552286, 155123.01538784523, + 151739.79470387724, 148228.60601615303, 144750.48060606275, + 141214.05992022896, 137860.0752316092, 134653.84705560812, + 131749.4916859184, 129256.89869932899, 127100.95793838463, + 125391.04333342063, 124021.54649027536, 122985.27939797143, + 122225.12172184304, 121647.88341839991, 121220.60386022486, + 120914.54248168001, 120721.48695351035, 120677.83774226232, + 120785.47986874125, 121067.43299495392, 121513.45491985348, + 122067.4126553953, 122718.04511312411, 123352.34885068018, + 123945.07258722615, 124410.8430572415, 124708.26591820765, + 124852.60543370248, 124837.35715725104, 124708.81560183624, + 124494.25244864602, 124220.02241738563, 123909.50781415794, + 123565.04147262224, 123179.06778548496, 122745.7526870334, + 122247.58129782985, 121693.8197865892, 121086.44725951405, + 120451.22518653312, 119818.696225987, 119196.40679604001, + 118611.8301590523, 118051.34921860145, 117515.50684929932, + 116988.72718867869, 116452.26626809564, 115902.44770207573, + 115334.81314605186, 114769.24014073609, 114217.95986996993, + 113706.55662329774, 113244.02732773805, 112833.85813848473, + 112466.99108913861, 112120.98129436006, 111775.45616293748, + 111411.07687325792, 111019.25168347562, 110604.11148464314, + 110180.10293868612, 109772.03524895057, 109401.75290377182, + 109115.03069470703 + ], + "flow:branch4_seg0:J8": [ + 2.3207719678759635, 2.32083202650617, 2.332362202908104, + 2.357048261305785, 2.397118781428352, 2.4539675373497722, + 2.5336418723321468, 2.64123700818022, 2.7900554936190765, + 2.992389509256215, 3.26225361690199, 3.620886458379183, 4.069063978501269, + 4.6295965072657825, 5.286150977270316, 6.040585747155863, + 6.878877094726964, 7.769939348966589, 8.709523729727726, + 9.645317881464125, 10.572657889654751, 11.444768370913597, + 12.250617009174785, 12.961939467285024, 13.555665041711787, + 14.023259947980204, 14.338592214157936, 14.504678055185165, + 14.511062031615392, 14.366560923552427, 14.073975879565168, + 13.655262212171744, 13.113237099182903, 12.482832848369968, + 11.769244674779017, 10.997367272287132, 10.181200056646784, + 9.32572076908257, 8.45949509043058, 7.574538526367763, 6.710928341905744, + 5.861075240237696, 5.059422091961171, 4.318775679612073, + 3.6471029634896777, 3.0753035149340606, 2.589715136998115, + 2.2092766296113635, 1.9182457682970373, 1.7106955622642084, + 1.576505670005147, 1.5026219435573915, 1.4817014635227903, + 1.5079650578134791, 1.5765199489712112, 1.6870300907958742, + 1.8373475468758564, 2.0217369403482746, 2.238536425684108, + 2.4699874985256787, 2.711946603778133, 2.9435385871065782, + 3.156000224568487, 3.340490173296607, 3.487699867929894, + 3.6009200361445206, 3.678171668304913, 3.7264674645854865, + 3.750270540074093, 3.7545339912451707, 3.7423944847966353, + 3.715880847804216, 3.674603491233604, 3.6201372189143557, + 3.5521033033873297, 3.4735096813323243, 3.3877956974877654, + 3.2974458554851243, 3.2091521999656245, 3.1228936066840682, + 3.0432445631778973, 2.968561188732685, 2.8979399595130277, + 2.8303894625665875, 2.7632079539533025, 2.697862137982524, + 2.6340183767290744, 2.5751656512754666, 2.5230379879061027, + 2.480269362115135, 2.447738759018099, 2.4245409385118957, + 2.4088387198968144, 2.3969809829507835, 2.3859917134735613, + 2.3734630481762187, 2.3586980654202825, 2.3431811718584723, + 2.329213482947276, 2.3207719678759635 + ], + "pressure:branch4_seg0:J8": [ + 108957.00459529697, 108671.90920977971, 108450.64154724828, + 108293.3297996069, 108211.27632304757, 108212.31625571601, + 108332.40151869376, 108625.97695690712, 109150.42538174304, + 110015.79755429733, 111259.71168783079, 113007.5606241248, + 115259.04252142174, 118065.84531650272, 121425.55595459302, + 125194.24241424234, 129461.43817761766, 133926.09889120347, + 138681.2871192061, 143453.36540373, 148141.78739516807, + 152722.70283070562, 156904.2582742226, 160764.07940388436, + 164011.35050452134, 166655.5471771236, 168594.5895213649, + 169772.89252957804, 170201.87278030752, 169913.02216930847, + 168924.32069238406, 167391.94482691598, 165327.4341609652, + 162870.45727542115, 160147.59317753775, 157094.48041089482, + 153955.72398446835, 150567.33034752018, 147170.71295146534, + 143738.43949310065, 140320.8328856493, 137103.02505303177, + 134006.13515405895, 131295.11402253367, 128867.09894025765, + 126843.5176396266, 125179.54982957985, 123835.06447701293, + 122805.02998846112, 121978.98764238965, 121353.33386826485, + 120871.39506205272, 120532.86003257362, 120337.1912485879, + 120304.12367053075, 120428.51745379072, 120738.19245902533, + 121175.61216365194, 121730.39514245975, 122331.37252310874, + 122910.2018057896, 123435.85669869107, 123816.31859578697, + 124080.1504314727, 124184.08650891816, 124170.28280083508, + 124053.62900206495, 123858.87666027837, 123615.05796985237, + 123325.52545498115, 122991.27488428894, 122606.76285858764, + 122163.12741399989, 121657.22536351818, 121101.32776735917, + 120498.44172449957, 119886.87699970332, 119269.48810037611, + 118675.22727253991, 118103.97874656516, 117551.21645443366, + 117017.29750065712, 116473.92700552929, 115928.0765838294, + 115363.52251026299, 114796.83740649668, 114241.13180706004, + 113706.46615969895, 113218.08495669445, 112770.20371117692, + 112369.9349526742, 111998.72625964889, 111639.38228350675, + 111274.5024104632, 110890.58756252076, 110486.80059922257, + 110070.15334517988, 109659.35854540185, 109273.05239762068, + 108957.00459529697 + ], + "flow:J8:branch4_seg1": [ + 2.3207719678759635, 2.32083202650617, 2.332362202908104, + 2.357048261305785, 2.397118781428352, 2.4539675373497722, + 2.5336418723321468, 2.64123700818022, 2.7900554936190765, + 2.992389509256215, 3.26225361690199, 3.620886458379183, 4.069063978501269, + 4.6295965072657825, 5.286150977270316, 6.040585747155863, + 6.878877094726964, 7.769939348966589, 8.709523729727726, + 9.645317881464125, 10.572657889654751, 11.444768370913597, + 12.250617009174785, 12.961939467285024, 13.555665041711787, + 14.023259947980204, 14.338592214157936, 14.504678055185165, + 14.511062031615392, 14.366560923552427, 14.073975879565168, + 13.655262212171744, 13.113237099182903, 12.482832848369968, + 11.769244674779017, 10.997367272287132, 10.181200056646784, + 9.32572076908257, 8.45949509043058, 7.574538526367763, 6.710928341905744, + 5.861075240237696, 5.059422091961171, 4.318775679612073, + 3.6471029634896777, 3.0753035149340606, 2.589715136998115, + 2.2092766296113635, 1.9182457682970373, 1.7106955622642084, + 1.576505670005147, 1.5026219435573915, 1.4817014635227903, + 1.5079650578134791, 1.5765199489712112, 1.6870300907958742, + 1.8373475468758564, 2.0217369403482746, 2.238536425684108, + 2.4699874985256787, 2.711946603778133, 2.9435385871065782, + 3.156000224568487, 3.340490173296607, 3.487699867929894, + 3.6009200361445206, 3.678171668304913, 3.7264674645854865, + 3.750270540074093, 3.7545339912451707, 3.7423944847966353, + 3.715880847804216, 3.674603491233604, 3.6201372189143557, + 3.5521033033873297, 3.4735096813323243, 3.3877956974877654, + 3.2974458554851243, 3.2091521999656245, 3.1228936066840682, + 3.0432445631778973, 2.968561188732685, 2.8979399595130277, + 2.8303894625665875, 2.7632079539533025, 2.697862137982524, + 2.6340183767290744, 2.5751656512754666, 2.5230379879061027, + 2.480269362115135, 2.447738759018099, 2.4245409385118957, + 2.4088387198968144, 2.3969809829507835, 2.3859917134735613, + 2.3734630481762187, 2.3586980654202825, 2.3431811718584723, + 2.329213482947276, 2.3207719678759635 + ], + "pressure:J8:branch4_seg1": [ + 108957.00459529697, 108671.90920977971, 108450.64154724828, + 108293.3297996069, 108211.27632304757, 108212.31625571601, + 108332.40151869376, 108625.97695690712, 109150.42538174304, + 110015.79755429733, 111259.71168783079, 113007.5606241248, + 115259.04252142174, 118065.84531650272, 121425.55595459302, + 125194.24241424234, 129461.43817761766, 133926.09889120347, + 138681.2871192061, 143453.36540373, 148141.78739516807, + 152722.70283070562, 156904.2582742226, 160764.07940388436, + 164011.35050452134, 166655.5471771236, 168594.5895213649, + 169772.89252957804, 170201.87278030752, 169913.02216930847, + 168924.32069238406, 167391.94482691598, 165327.4341609652, + 162870.45727542115, 160147.59317753775, 157094.48041089482, + 153955.72398446835, 150567.33034752018, 147170.71295146534, + 143738.43949310065, 140320.8328856493, 137103.02505303177, + 134006.13515405895, 131295.11402253367, 128867.09894025765, + 126843.5176396266, 125179.54982957985, 123835.06447701293, + 122805.02998846112, 121978.98764238965, 121353.33386826485, + 120871.39506205272, 120532.86003257362, 120337.1912485879, + 120304.12367053075, 120428.51745379072, 120738.19245902533, + 121175.61216365194, 121730.39514245975, 122331.37252310874, + 122910.2018057896, 123435.85669869107, 123816.31859578697, + 124080.1504314727, 124184.08650891816, 124170.28280083508, + 124053.62900206495, 123858.87666027837, 123615.05796985237, + 123325.52545498115, 122991.27488428894, 122606.76285858764, + 122163.12741399989, 121657.22536351818, 121101.32776735917, + 120498.44172449957, 119886.87699970332, 119269.48810037611, + 118675.22727253991, 118103.97874656516, 117551.21645443366, + 117017.29750065712, 116473.92700552929, 115928.0765838294, + 115363.52251026299, 114796.83740649668, 114241.13180706004, + 113706.46615969895, 113218.08495669445, 112770.20371117692, + 112369.9349526742, 111998.72625964889, 111639.38228350675, + 111274.5024104632, 110890.58756252076, 110486.80059922257, + 110070.15334517988, 109659.35854540185, 109273.05239762068, + 108957.00459529697 + ], + "flow:branch4_seg1:J9": [ + 2.320834818934411, 2.320882863843716, 2.332400222599967, + 2.357073158549272, 2.397127860532315, 2.453958849771441, + 2.5336028025550643, 2.641161121713524, 2.7899212618831473, + 2.9921843653998024, 3.2619666680449475, 3.620490598588608, + 4.068578585594895, 4.628986240545979, 5.285458930569, 6.039805794816082, + 6.878027445269111, 7.769061845992541, 8.70859980655802, 9.644424934553793, + 10.571763960991582, 11.44394362115064, 12.2498531544496, + 12.961268482049363, 13.55511644374054, 14.022820739279199, + 14.338300927510135, 14.504520772453223, 14.511046618758497, + 14.366673895188903, 14.074209699197604, 13.655583936899747, + 13.113660551169774, 12.48330488162548, 11.769785427696238, + 10.997942770966672, 10.181806967738044, 9.326365152072029, + 8.460129285926309, 7.575205422361567, 6.7115537042266284, + 5.861692171340667, 5.05998217842325, 4.319265493206444, + 3.6475442921500205, 3.0756528218423758, 2.590016136466926, + 2.2095049441276466, 1.9184259834906632, 1.7108375779343772, + 1.5766132157988528, 1.5027038490601592, 1.481756352904369, + 1.5079880141804891, 1.576512555620154, 1.686987372576995, + 1.837272618459618, 2.0216420618234654, 2.2384181319096075, + 2.469875064803023, 2.711834449269574, 2.943451485123214, + 3.1559404416880317, 3.3404552930852645, 3.487696482413649, + 3.6009342183695674, 3.67820526764321, 3.726512298259736, + 3.750324363986817, 3.754596165445902, 3.7424659512227803, + 3.7159620620142952, 3.674698037531881, 3.6202417602781805, + 3.552218828804072, 3.4736303942337226, 3.3879163577156293, + 3.2975668821813193, 3.209265549316813, 3.1230055431672348, + 3.0433509903567684, 2.968667115675214, 2.89804771508427, + 2.830498603384411, 2.7633209608904115, 2.6979732382471666, + 2.6341276551227577, 2.575267022919146, 2.523131049250598, + 2.4803531074735172, 2.447814645368302, 2.424613275847145, + 2.408910245536389, 2.397055514704562, 2.3860703158310166, + 2.37354517349727, 2.358781320736128, 2.3432610840853956, + 2.329286846636976, 2.320834818934411 + ], + "pressure:branch4_seg1:J9": [ + 108858.22145996656, 108571.39353457, 108347.25791965831, + 108185.71265587135, 108098.17922380372, 108091.92285155052, + 108201.69843441012, 108481.661721192, 108985.74735000773, + 109824.2578075033, 111030.63108615328, 112728.6902243463, + 114915.54231978774, 117637.22939178416, 120893.26840528488, + 124530.54330610644, 128646.87844915771, 132930.96678867066, + 137485.5640762271, 142038.77909488278, 146491.37755816302, + 150842.50083744767, 154793.61895158445, 158449.01374714304, + 161518.94996563016, 164025.13861741486, 165877.49934201705, + 167021.75086965293, 167474.5196660985, 167263.8074996884, + 166401.55031124695, 165035.47707232306, 163170.13340480244, + 160929.35808568526, 158438.94473489566, 155613.23032820114, + 152703.6829752855, 149529.03850901552, 146332.27734538226, + 143084.9050229073, 139823.07179924945, 136744.05866191292, + 133752.64509520956, 131125.38182371957, 128756.15029888172, + 126772.15799798633, 125132.40404709413, 123799.6686616849, + 122773.92210366676, 121945.98075785236, 121316.86873909485, + 120828.89827852188, 120483.79138182808, 120279.12790025772, + 120235.7518034848, 120346.69507710171, 120641.77472016237, + 121062.32433284273, 121598.70341280631, 122181.30741163391, + 122740.82631844642, 123250.07891407558, 123615.49617400939, + 123868.49748917272, 123963.86317204325, 123945.02277267243, + 123825.59397480669, 123630.24992303786, 123387.72000876693, + 123100.70604243968, 122770.35907735139, 122390.92699191444, + 121953.9718696242, 121455.73769169263, 120909.02387145879, + 120315.3023131096, 119713.1654688251, 119104.41811464759, + 118518.01771764415, 117953.86754833894, 117407.20717723774, + 116879.17403889283, 116340.96000757703, 115800.67007154258, + 115241.28912690148, 114679.66834543372, 114128.67657905129, + 113597.40507267904, 113111.83509899542, 112665.25444506032, + 112265.74871370304, 111894.80235015402, 111535.66852099562, + 111171.29818723924, 110788.2599818266, 110385.72930552042, + 109970.42468563774, 109560.71841207914, 109174.80871167072, + 108858.22145996656 + ], + "flow:J9:branch4_seg2": [ + 2.320834818934411, 2.320882863843716, 2.332400222599967, + 2.357073158549272, 2.397127860532315, 2.453958849771441, + 2.5336028025550643, 2.641161121713524, 2.7899212618831473, + 2.9921843653998024, 3.2619666680449475, 3.620490598588608, + 4.068578585594895, 4.628986240545979, 5.285458930569, 6.039805794816082, + 6.878027445269111, 7.769061845992541, 8.70859980655802, 9.644424934553793, + 10.571763960991582, 11.44394362115064, 12.2498531544496, + 12.961268482049363, 13.55511644374054, 14.022820739279199, + 14.338300927510135, 14.504520772453223, 14.511046618758497, + 14.366673895188903, 14.074209699197604, 13.655583936899747, + 13.113660551169774, 12.48330488162548, 11.769785427696238, + 10.997942770966672, 10.181806967738044, 9.326365152072029, + 8.460129285926309, 7.575205422361567, 6.7115537042266284, + 5.861692171340667, 5.05998217842325, 4.319265493206444, + 3.6475442921500205, 3.0756528218423758, 2.590016136466926, + 2.2095049441276466, 1.9184259834906632, 1.7108375779343772, + 1.5766132157988528, 1.5027038490601592, 1.481756352904369, + 1.5079880141804891, 1.576512555620154, 1.686987372576995, + 1.837272618459618, 2.0216420618234654, 2.2384181319096075, + 2.469875064803023, 2.711834449269574, 2.943451485123214, + 3.1559404416880317, 3.3404552930852645, 3.487696482413649, + 3.6009342183695674, 3.67820526764321, 3.726512298259736, + 3.750324363986817, 3.754596165445902, 3.7424659512227803, + 3.7159620620142952, 3.674698037531881, 3.6202417602781805, + 3.552218828804072, 3.4736303942337226, 3.3879163577156293, + 3.2975668821813193, 3.209265549316813, 3.1230055431672348, + 3.0433509903567684, 2.968667115675214, 2.89804771508427, + 2.830498603384411, 2.7633209608904115, 2.6979732382471666, + 2.6341276551227577, 2.575267022919146, 2.523131049250598, + 2.4803531074735172, 2.447814645368302, 2.424613275847145, + 2.408910245536389, 2.397055514704562, 2.3860703158310166, + 2.37354517349727, 2.358781320736128, 2.3432610840853956, + 2.329286846636976, 2.320834818934411 + ], + "pressure:J9:branch4_seg2": [ + 108858.22145996656, 108571.39353457, 108347.25791965831, + 108185.71265587135, 108098.17922380372, 108091.92285155052, + 108201.69843441012, 108481.661721192, 108985.74735000773, + 109824.2578075033, 111030.63108615328, 112728.6902243463, + 114915.54231978774, 117637.22939178416, 120893.26840528488, + 124530.54330610644, 128646.87844915771, 132930.96678867066, + 137485.5640762271, 142038.77909488278, 146491.37755816302, + 150842.50083744767, 154793.61895158445, 158449.01374714304, + 161518.94996563016, 164025.13861741486, 165877.49934201705, + 167021.75086965293, 167474.5196660985, 167263.8074996884, + 166401.55031124695, 165035.47707232306, 163170.13340480244, + 160929.35808568526, 158438.94473489566, 155613.23032820114, + 152703.6829752855, 149529.03850901552, 146332.27734538226, + 143084.9050229073, 139823.07179924945, 136744.05866191292, + 133752.64509520956, 131125.38182371957, 128756.15029888172, + 126772.15799798633, 125132.40404709413, 123799.6686616849, + 122773.92210366676, 121945.98075785236, 121316.86873909485, + 120828.89827852188, 120483.79138182808, 120279.12790025772, + 120235.7518034848, 120346.69507710171, 120641.77472016237, + 121062.32433284273, 121598.70341280631, 122181.30741163391, + 122740.82631844642, 123250.07891407558, 123615.49617400939, + 123868.49748917272, 123963.86317204325, 123945.02277267243, + 123825.59397480669, 123630.24992303786, 123387.72000876693, + 123100.70604243968, 122770.35907735139, 122390.92699191444, + 121953.9718696242, 121455.73769169263, 120909.02387145879, + 120315.3023131096, 119713.1654688251, 119104.41811464759, + 118518.01771764415, 117953.86754833894, 117407.20717723774, + 116879.17403889283, 116340.96000757703, 115800.67007154258, + 115241.28912690148, 114679.66834543372, 114128.67657905129, + 113597.40507267904, 113111.83509899542, 112665.25444506032, + 112265.74871370304, 111894.80235015402, 111535.66852099562, + 111171.29818723924, 110788.2599818266, 110385.72930552042, + 109970.42468563774, 109560.71841207914, 109174.80871167072, + 108858.22145996656 + ], + "flow:branch5_seg0:J10": [ + 5.438466509060354, 5.483927911643522, 5.574955310454926, + 5.713251569234083, 5.901732440635074, 6.14699515659486, 6.471489059212345, + 6.905277669363217, 7.499307021527524, 8.306186452363557, + 9.376859120169081, 10.764500330577768, 12.481373736786797, + 14.549841567700845, 16.9250411149091, 19.56452517348155, + 22.39839359055229, 25.334978487945296, 28.30445416904323, + 31.186679951989515, 33.91528871338993, 36.39145254441101, + 38.552397168092675, 40.32304546249347, 41.63463029915475, + 42.445429849358646, 42.71855488365429, 42.4457200313754, + 41.63766430675484, 40.33157520001022, 38.58109216351579, + 36.47032849488138, 34.06034589355398, 31.45269001584246, 28.7014656157292, + 25.87515632472141, 23.01573069374268, 20.15531928294274, + 17.35533905290227, 14.635245607993388, 12.068180911357253, + 9.686169419230751, 7.55970836124547, 5.743682937204771, 4.260612806809828, + 3.1347796840797293, 2.337359992514137, 1.8429673885083135, + 1.5997244917163609, 1.5495722448758096, 1.6448572626982336, + 1.8478552613136419, 2.138413105511957, 2.515704631450154, + 2.9807550644147875, 3.5428594621033476, 4.199413760671815, + 4.930523314185146, 5.712258482690314, 6.493845066296381, + 7.2366805849794655, 7.890945962030432, 8.424237742139777, + 8.82340212550653, 9.087709642582004, 9.236871477634734, 9.294299325084044, + 9.286021531651766, 9.23468349728847, 9.15223876412662, 9.042183864520235, + 8.9026896280786, 8.727520385388791, 8.517014336231897, 8.273285218216682, + 8.00818641540079, 7.73798910268532, 7.476680363433951, 7.239147427380323, + 7.028277124632903, 6.844311904969569, 6.679003921187025, + 6.5216046105255785, 6.3642465640097905, 6.202221474835142, + 6.0407716723868745, 5.888109761049875, 5.757136229347714, + 5.657771308317259, 5.59557587268416, 5.568302857086043, 5.5662327034256, + 5.574800873142054, 5.5791570296143105, 5.568855355951653, + 5.54069584804538, 5.499985735586859, 5.459260736888948, 5.433769657549267, + 5.438466509060354 + ], + "pressure:branch5_seg0:J10": [ + 109171.08472954556, 108942.03205260375, 108784.85983463183, + 108702.97834504582, 108704.78762398635, 108810.21370901192, + 109077.58357339524, 109560.54567642002, 110369.81995975031, + 111577.99061460822, 113275.66180503431, 115538.54270180038, + 118354.43702826154, 121783.59856066247, 125678.32254242631, + 130047.10506864703, 134717.6050170515, 139601.68027049207, + 144590.3807084715, 149451.0164583785, 154192.10859948787, + 158559.21478298982, 162548.10446161317, 165964.79511592689, + 168707.4760555212, 170729.72142573335, 171943.20355998888, + 172355.12084882628, 171985.3262574227, 170879.7717971155, + 169142.19252247325, 166892.22263421112, 164187.13868461145, + 161228.22245561532, 157977.31581714918, 154604.21865858824, + 151072.45251094128, 147465.83899688715, 143899.45988039908, + 140329.63339945502, 136971.30599467966, 133775.88139349892, + 130935.27015001976, 128485.13264194853, 126437.64387924667, + 124835.42319866533, 123585.9106651495, 122674.06057390307, + 122004.19924137238, 121514.94591006105, 121160.63510218498, + 120921.84246616763, 120794.53557956518, 120810.36103585927, + 120972.63287492425, 121311.27342536715, 121803.43403286471, + 122407.13332862486, 123084.46087995342, 123732.87853991303, + 124321.29281197157, 124759.71562653837, 125034.4708740754, + 125137.74724934863, 125084.44190500757, 124915.62701294031, + 124662.2921531342, 124358.8578914856, 124023.65228071014, + 123657.66229253383, 123251.62359901167, 122796.23838152943, + 122276.95447744196, 121703.74058714036, 121079.03576841648, + 120433.88467888966, 119790.78338444348, 119167.7052450189, + 118583.52891737976, 118027.11230692612, 117497.74118251023, + 116971.00764124896, 116435.74787054832, 115882.78666462684, + 115314.52347587087, 114750.99875453407, 114204.73314407935, + 113702.482401597, 113249.83505973408, 112851.47138683769, + 112494.5730516454, 112157.01396656463, 111815.80222672533, + 111451.49581175612, 111057.22484596299, 110638.65883405702, + 110213.97776201427, 109808.40167986408, 109445.77367377242, + 109171.08472954556 + ], + "flow:J10:branch5_seg1": [ + 5.438466509060354, 5.483927911643522, 5.574955310454926, + 5.713251569234083, 5.901732440635074, 6.14699515659486, 6.471489059212345, + 6.905277669363217, 7.499307021527524, 8.306186452363557, + 9.376859120169081, 10.764500330577768, 12.481373736786797, + 14.549841567700845, 16.9250411149091, 19.56452517348155, + 22.39839359055229, 25.334978487945296, 28.30445416904323, + 31.186679951989515, 33.91528871338993, 36.39145254441101, + 38.552397168092675, 40.32304546249347, 41.63463029915475, + 42.445429849358646, 42.71855488365429, 42.4457200313754, + 41.63766430675484, 40.33157520001022, 38.58109216351579, + 36.47032849488138, 34.06034589355398, 31.45269001584246, 28.7014656157292, + 25.87515632472141, 23.01573069374268, 20.15531928294274, + 17.35533905290227, 14.635245607993388, 12.068180911357253, + 9.686169419230751, 7.55970836124547, 5.743682937204771, 4.260612806809828, + 3.1347796840797293, 2.337359992514137, 1.8429673885083135, + 1.5997244917163609, 1.5495722448758096, 1.6448572626982336, + 1.8478552613136419, 2.138413105511957, 2.515704631450154, + 2.9807550644147875, 3.5428594621033476, 4.199413760671815, + 4.930523314185146, 5.712258482690314, 6.493845066296381, + 7.2366805849794655, 7.890945962030432, 8.424237742139777, + 8.82340212550653, 9.087709642582004, 9.236871477634734, 9.294299325084044, + 9.286021531651766, 9.23468349728847, 9.15223876412662, 9.042183864520235, + 8.9026896280786, 8.727520385388791, 8.517014336231897, 8.273285218216682, + 8.00818641540079, 7.73798910268532, 7.476680363433951, 7.239147427380323, + 7.028277124632903, 6.844311904969569, 6.679003921187025, + 6.5216046105255785, 6.3642465640097905, 6.202221474835142, + 6.0407716723868745, 5.888109761049875, 5.757136229347714, + 5.657771308317259, 5.59557587268416, 5.568302857086043, 5.5662327034256, + 5.574800873142054, 5.5791570296143105, 5.568855355951653, + 5.54069584804538, 5.499985735586859, 5.459260736888948, 5.433769657549267, + 5.438466509060354 + ], + "pressure:J10:branch5_seg1": [ + 109171.08472954556, 108942.03205260375, 108784.85983463183, + 108702.97834504582, 108704.78762398635, 108810.21370901192, + 109077.58357339524, 109560.54567642002, 110369.81995975031, + 111577.99061460822, 113275.66180503431, 115538.54270180038, + 118354.43702826154, 121783.59856066247, 125678.32254242631, + 130047.10506864703, 134717.6050170515, 139601.68027049207, + 144590.3807084715, 149451.0164583785, 154192.10859948787, + 158559.21478298982, 162548.10446161317, 165964.79511592689, + 168707.4760555212, 170729.72142573335, 171943.20355998888, + 172355.12084882628, 171985.3262574227, 170879.7717971155, + 169142.19252247325, 166892.22263421112, 164187.13868461145, + 161228.22245561532, 157977.31581714918, 154604.21865858824, + 151072.45251094128, 147465.83899688715, 143899.45988039908, + 140329.63339945502, 136971.30599467966, 133775.88139349892, + 130935.27015001976, 128485.13264194853, 126437.64387924667, + 124835.42319866533, 123585.9106651495, 122674.06057390307, + 122004.19924137238, 121514.94591006105, 121160.63510218498, + 120921.84246616763, 120794.53557956518, 120810.36103585927, + 120972.63287492425, 121311.27342536715, 121803.43403286471, + 122407.13332862486, 123084.46087995342, 123732.87853991303, + 124321.29281197157, 124759.71562653837, 125034.4708740754, + 125137.74724934863, 125084.44190500757, 124915.62701294031, + 124662.2921531342, 124358.8578914856, 124023.65228071014, + 123657.66229253383, 123251.62359901167, 122796.23838152943, + 122276.95447744196, 121703.74058714036, 121079.03576841648, + 120433.88467888966, 119790.78338444348, 119167.7052450189, + 118583.52891737976, 118027.11230692612, 117497.74118251023, + 116971.00764124896, 116435.74787054832, 115882.78666462684, + 115314.52347587087, 114750.99875453407, 114204.73314407935, + 113702.482401597, 113249.83505973408, 112851.47138683769, + 112494.5730516454, 112157.01396656463, 111815.80222672533, + 111451.49581175612, 111057.22484596299, 110638.65883405702, + 110213.97776201427, 109808.40167986408, 109445.77367377242, + 109171.08472954556 + ], + "flow:branch5_seg1:J11": [ + 5.440566195705784, 5.48544449010151, 5.575923469617721, 5.713592258918615, + 5.901396238572934, 6.145625724999179, 6.468651298164089, + 6.900373571188385, 7.491501902034247, 8.295105869814385, + 9.361395941403888, 10.744896538329035, 12.456878534141353, + 14.521058895286806, 16.893048842107447, 19.529087008601877, + 22.361844718878558, 25.296438730019148, 28.266303705626196, + 31.149395333681408, 33.87980032348248, 36.359393189591245, + 38.52374115820244, 40.299470919749396, 41.61607215331639, + 42.43283922981374, 42.712056274163565, 42.445514010369166, + 41.64303873144032, 40.34248094525043, 38.595958465132085, + 36.489369813432994, 34.08212980761971, 31.47638288650461, + 28.727127464414853, 25.901236919710186, 23.043397903842777, + 20.182825384944813, 17.383227580442988, 14.662396371826038, + 12.093788800227264, 9.709833831288414, 7.58004361533876, + 5.761352444912594, 4.274672902841351, 3.146086709820939, + 2.3457771691330525, 1.8490595045967055, 1.604197332735337, + 1.5527690966748338, 1.6471982973160813, 1.849337484688295, + 2.138917797464876, 2.515036947758017, 2.978850990370583, + 3.5395589068583124, 4.195178957871641, 4.925402528908532, + 5.707041107936786, 6.488905325334356, 7.2326076553382075, + 7.888260436691907, 8.422789483511403, 8.82336912153777, 9.08861456628044, + 9.238583273107256, 9.296515280911711, 9.288541831495174, + 9.237436476807709, 9.155262177362893, 9.045538346281512, + 8.906508971813889, 8.731814902079437, 8.52172370031083, 8.278308165559185, + 8.013218701400442, 7.742990395016756, 7.481381993240891, + 7.243634885160207, 7.032527881745039, 6.848414732218136, + 6.683165913614836, 6.525830918917857, 6.368671592343301, + 6.206687992805557, 6.045163073377908, 5.892266693838318, + 5.760882514987027, 5.661104321163673, 5.598510544500692, + 5.571004708683918, 5.568881098212761, 5.577565888558713, + 5.582143190365899, 5.572066656623904, 5.544044408832274, + 5.5032775438130495, 5.462318364500266, 5.43639778952469, 5.440566195705784 + ], + "pressure:branch5_seg1:J11": [ + 109115.73034216104, 108872.40001539218, 108699.98830270818, + 108601.40200775092, 108585.01899138931, 108667.42244717454, + 108901.98105063358, 109339.53022360915, 110082.6926999487, + 111207.16623369766, 112797.29120601414, 114937.36956607553, + 117616.04623640738, 120899.3801127847, 124656.99679910015, + 128884.12994523541, 133437.34064832382, 138205.29490110764, + 143105.24318823582, 147902.43000381475, 152595.6690246386, + 156954.64730642756, 160952.6385266056, 164422.04759661862, + 167251.45256162714, 169394.8963771397, 170764.18821144276, + 171358.5476300904, 171186.12660985053, 170292.1405480817, + 168756.4562230861, 166703.49973034183, 164176.3727439684, + 161366.75910466287, 158254.57823959296, 154985.24920460163, + 151552.83330892056, 148014.7427652193, 144495.6687715428, + 140954.64428471183, 137589.1904580164, 134370.41174492883, + 131471.04431975284, 128945.08767273504, 126806.2560316235, + 125108.24995892693, 123766.43853447263, 122772.765478832, + 122035.65046993399, 121495.04288273132, 121102.33915929827, + 120831.90634188957, 120676.84868110722, 120661.94725581708, + 120792.31789548333, 121094.72637991254, 121553.77545957653, + 122129.26259471185, 122788.81599543881, 123434.01955068826, + 124032.17969397591, 124495.37869743606, 124802.23261212737, + 124942.5622417228, 124923.88339033042, 124785.56071794027, + 124555.40453116533, 124268.69858491719, 123945.20771123398, + 123588.99863009287, 123193.31944131822, 122749.94602755956, + 122244.77331136812, 121685.27964640243, 121073.28948418064, + 120435.85750737185, 119796.24267823639, 119171.291266113, + 118582.27040178432, 118019.97851296085, 117485.48501816952, + 116956.98857807265, 116422.33065538481, 115872.83299967548, + 115307.50113653636, 114744.65638940288, 114195.89284842234, + 113686.4207971659, 113224.28356892105, 112814.96834213659, + 112448.6991221768, 112105.5193915851, 111763.1710796931, + 111402.08386085716, 111013.38178105924, 110600.34782618085, + 110178.39107918338, 109771.12950702393, 109401.61247544536, + 109115.73034216104 + ], + "flow:J11:branch5_seg2": [ + 5.440566195705784, 5.48544449010151, 5.575923469617721, 5.713592258918615, + 5.901396238572934, 6.145625724999179, 6.468651298164089, + 6.900373571188385, 7.491501902034247, 8.295105869814385, + 9.361395941403888, 10.744896538329035, 12.456878534141353, + 14.521058895286806, 16.893048842107447, 19.529087008601877, + 22.361844718878558, 25.296438730019148, 28.266303705626196, + 31.149395333681408, 33.87980032348248, 36.359393189591245, + 38.52374115820244, 40.299470919749396, 41.61607215331639, + 42.43283922981374, 42.712056274163565, 42.445514010369166, + 41.64303873144032, 40.34248094525043, 38.595958465132085, + 36.489369813432994, 34.08212980761971, 31.47638288650461, + 28.727127464414853, 25.901236919710186, 23.043397903842777, + 20.182825384944813, 17.383227580442988, 14.662396371826038, + 12.093788800227264, 9.709833831288414, 7.58004361533876, + 5.761352444912594, 4.274672902841351, 3.146086709820939, + 2.3457771691330525, 1.8490595045967055, 1.604197332735337, + 1.5527690966748338, 1.6471982973160813, 1.849337484688295, + 2.138917797464876, 2.515036947758017, 2.978850990370583, + 3.5395589068583124, 4.195178957871641, 4.925402528908532, + 5.707041107936786, 6.488905325334356, 7.2326076553382075, + 7.888260436691907, 8.422789483511403, 8.82336912153777, 9.08861456628044, + 9.238583273107256, 9.296515280911711, 9.288541831495174, + 9.237436476807709, 9.155262177362893, 9.045538346281512, + 8.906508971813889, 8.731814902079437, 8.52172370031083, 8.278308165559185, + 8.013218701400442, 7.742990395016756, 7.481381993240891, + 7.243634885160207, 7.032527881745039, 6.848414732218136, + 6.683165913614836, 6.525830918917857, 6.368671592343301, + 6.206687992805557, 6.045163073377908, 5.892266693838318, + 5.760882514987027, 5.661104321163673, 5.598510544500692, + 5.571004708683918, 5.568881098212761, 5.577565888558713, + 5.582143190365899, 5.572066656623904, 5.544044408832274, + 5.5032775438130495, 5.462318364500266, 5.43639778952469, 5.440566195705784 + ], + "pressure:J11:branch5_seg2": [ + 109115.73034216104, 108872.40001539218, 108699.98830270818, + 108601.40200775092, 108585.01899138931, 108667.42244717454, + 108901.98105063358, 109339.53022360915, 110082.6926999487, + 111207.16623369766, 112797.29120601414, 114937.36956607553, + 117616.04623640738, 120899.3801127847, 124656.99679910015, + 128884.12994523541, 133437.34064832382, 138205.29490110764, + 143105.24318823582, 147902.43000381475, 152595.6690246386, + 156954.64730642756, 160952.6385266056, 164422.04759661862, + 167251.45256162714, 169394.8963771397, 170764.18821144276, + 171358.5476300904, 171186.12660985053, 170292.1405480817, + 168756.4562230861, 166703.49973034183, 164176.3727439684, + 161366.75910466287, 158254.57823959296, 154985.24920460163, + 151552.83330892056, 148014.7427652193, 144495.6687715428, + 140954.64428471183, 137589.1904580164, 134370.41174492883, + 131471.04431975284, 128945.08767273504, 126806.2560316235, + 125108.24995892693, 123766.43853447263, 122772.765478832, + 122035.65046993399, 121495.04288273132, 121102.33915929827, + 120831.90634188957, 120676.84868110722, 120661.94725581708, + 120792.31789548333, 121094.72637991254, 121553.77545957653, + 122129.26259471185, 122788.81599543881, 123434.01955068826, + 124032.17969397591, 124495.37869743606, 124802.23261212737, + 124942.5622417228, 124923.88339033042, 124785.56071794027, + 124555.40453116533, 124268.69858491719, 123945.20771123398, + 123588.99863009287, 123193.31944131822, 122749.94602755956, + 122244.77331136812, 121685.27964640243, 121073.28948418064, + 120435.85750737185, 119796.24267823639, 119171.291266113, + 118582.27040178432, 118019.97851296085, 117485.48501816952, + 116956.98857807265, 116422.33065538481, 115872.83299967548, + 115307.50113653636, 114744.65638940288, 114195.89284842234, + 113686.4207971659, 113224.28356892105, 112814.96834213659, + 112448.6991221768, 112105.5193915851, 111763.1710796931, + 111402.08386085716, 111013.38178105924, 110600.34782618085, + 110178.39107918338, 109771.12950702393, 109401.61247544536, + 109115.73034216104 + ], + "flow:branch6_seg0:J12": [ + 3.4560121437287865, 3.487445577866872, 3.548994978194616, + 3.640665331472727, 3.7644831255517293, 3.923913181306726, + 4.133997695813696, 4.415309988011613, 4.8002171963328975, + 5.326173067949756, 6.02237094745514, 6.9270631539922185, + 8.043195975552555, 9.385522428632358, 10.925110814904295, + 12.624545975049278, 14.449815738515115, 16.324706896310694, + 18.220999291727505, 20.048743777942402, 21.7701412496407, + 23.327832570367665, 24.67108068061538, 25.767974322919414, + 26.560481057250996, 27.032455099283077, 27.157816734284417, + 26.933303093131038, 26.367229098633935, 25.487746189172547, + 24.32586731987391, 22.945383476587608, 21.378791815338896, + 19.695260046713887, 17.932643069684318, 16.12312779729182, + 14.308122646222508, 12.48798384005257, 10.717644734642507, + 9.000173940520158, 7.382057390277879, 5.891578442952457, + 4.5616028922766345, 3.4415764756874796, 2.53375613228727, + 1.8581502589265666, 1.3909880108756045, 1.1139905285164136, + 0.9927240061008586, 0.988049515774889, 1.068978274232255, + 1.212339898728523, 1.4070449932537685, 1.653535817111023, + 1.9559655475209532, 2.3188552105323565, 2.7439462180842744, + 3.2147346748803556, 3.716998154364755, 4.216137381978279, + 4.6858976105386505, 5.09606240467933, 5.423348822977064, + 5.663476816595046, 5.8155052432972125, 5.895506927353144, + 5.91872504634383, 5.903358816347431, 5.86339165715371, 5.806461028104203, + 5.7333876425048125, 5.642248682127456, 5.528391029739775, + 5.3913915831923145, 5.233571611469516, 5.06189132167693, + 4.8888377186149246, 4.722436034473444, 4.573237049340613, + 4.442119361145153, 4.328625300667707, 4.227136749469218, + 4.129440723397367, 4.03108390934967, 3.9282826579125834, + 3.825643310895803, 3.7288441594365223, 3.6464701875040753, + 3.5857873793478836, 3.5493847689759717, 3.536098680452203, + 3.538470061010115, 3.546617234148641, 3.5505832204690106, + 3.543553836944994, 3.524049757251075, 3.496043990337191, + 3.468564793516768, 3.4518872443696607, 3.4560121437287865 + ], + "pressure:branch6_seg0:J12": [ + 109076.7356940898, 108819.14379513562, 108631.77918031487, + 108517.10248418746, 108483.38742101654, 108544.18334142181, + 108747.51786794672, 109142.22003517371, 109822.43761032559, + 110868.0837138333, 112358.23778710044, 114385.81696738883, + 116944.35286324186, 120103.90098454387, 123756.20726051122, + 127881.25229955092, 132366.42652458613, 137077.21700871162, + 141953.558481675, 146760.56066460806, 151479.13239753054, + 155903.7369771641, 159977.6104939735, 163558.4905038126, 166520.488121373, + 168814.656077662, 170351.53308877416, 171120.43080752844, + 171119.48873632724, 170394.46766946153, 169005.86866154996, + 167084.88464724537, 164667.21000570865, 161935.3890225516, + 158894.20739431036, 155664.02158168555, 152272.83655577057, + 148752.19406276915, 145234.49331751198, 141685.88227966873, + 138281.52067566666, 135017.10357408912, 132040.93739152382, + 129426.7609842596, 127188.61963814858, 125388.33184149505, + 123951.2833810056, 122873.13680941565, 122068.03825272025, + 121475.8485893286, 121044.98731339099, 120743.4822671785, + 120561.4654102988, 120516.63361816184, 120616.46163938637, + 120884.08029294446, 121312.15138525756, 121862.66458530727, + 122507.91607574132, 123155.09610423422, 123767.69655290531, + 124261.07726086979, 124604.51420419505, 124785.50942149578, + 124804.23055934883, 124697.8388812819, 124491.59020668054, + 124221.5266468464, 123909.20275065511, 123562.01797601234, + 123175.79660791084, 122743.32629458106, 122251.1125084072, + 121703.76318624361, 121102.88071649135, 120471.24403477622, + 119833.09389828598, 119204.4448101362, 118608.61486204715, + 118038.99495793683, 117497.9577524846, 116966.67355827926, + 116431.72660746872, 115884.81705531375, 115321.65182998509, + 114758.50369012577, 114206.39403908001, 113688.78753301552, + 113216.48188095937, 112795.6658329428, 112419.72983558016, + 112070.83066854498, 111727.42863959678, 111369.71127584313, + 110986.70068174484, 110579.21285178832, 110159.86342577147, + 109750.6630213877, 109374.00863863164, 109076.7356940898 + ], + "flow:J12:branch6_seg1": [ + 3.4560121437287865, 3.487445577866872, 3.548994978194616, + 3.640665331472727, 3.7644831255517293, 3.923913181306726, + 4.133997695813696, 4.415309988011613, 4.8002171963328975, + 5.326173067949756, 6.02237094745514, 6.9270631539922185, + 8.043195975552555, 9.385522428632358, 10.925110814904295, + 12.624545975049278, 14.449815738515115, 16.324706896310694, + 18.220999291727505, 20.048743777942402, 21.7701412496407, + 23.327832570367665, 24.67108068061538, 25.767974322919414, + 26.560481057250996, 27.032455099283077, 27.157816734284417, + 26.933303093131038, 26.367229098633935, 25.487746189172547, + 24.32586731987391, 22.945383476587608, 21.378791815338896, + 19.695260046713887, 17.932643069684318, 16.12312779729182, + 14.308122646222508, 12.48798384005257, 10.717644734642507, + 9.000173940520158, 7.382057390277879, 5.891578442952457, + 4.5616028922766345, 3.4415764756874796, 2.53375613228727, + 1.8581502589265666, 1.3909880108756045, 1.1139905285164136, + 0.9927240061008586, 0.988049515774889, 1.068978274232255, + 1.212339898728523, 1.4070449932537685, 1.653535817111023, + 1.9559655475209532, 2.3188552105323565, 2.7439462180842744, + 3.2147346748803556, 3.716998154364755, 4.216137381978279, + 4.6858976105386505, 5.09606240467933, 5.423348822977064, + 5.663476816595046, 5.8155052432972125, 5.895506927353144, + 5.91872504634383, 5.903358816347431, 5.86339165715371, 5.806461028104203, + 5.7333876425048125, 5.642248682127456, 5.528391029739775, + 5.3913915831923145, 5.233571611469516, 5.06189132167693, + 4.8888377186149246, 4.722436034473444, 4.573237049340613, + 4.442119361145153, 4.328625300667707, 4.227136749469218, + 4.129440723397367, 4.03108390934967, 3.9282826579125834, + 3.825643310895803, 3.7288441594365223, 3.6464701875040753, + 3.5857873793478836, 3.5493847689759717, 3.536098680452203, + 3.538470061010115, 3.546617234148641, 3.5505832204690106, + 3.543553836944994, 3.524049757251075, 3.496043990337191, + 3.468564793516768, 3.4518872443696607, 3.4560121437287865 + ], + "pressure:J12:branch6_seg1": [ + 109076.7356940898, 108819.14379513562, 108631.77918031487, + 108517.10248418746, 108483.38742101654, 108544.18334142181, + 108747.51786794672, 109142.22003517371, 109822.43761032559, + 110868.0837138333, 112358.23778710044, 114385.81696738883, + 116944.35286324186, 120103.90098454387, 123756.20726051122, + 127881.25229955092, 132366.42652458613, 137077.21700871162, + 141953.558481675, 146760.56066460806, 151479.13239753054, + 155903.7369771641, 159977.6104939735, 163558.4905038126, 166520.488121373, + 168814.656077662, 170351.53308877416, 171120.43080752844, + 171119.48873632724, 170394.46766946153, 169005.86866154996, + 167084.88464724537, 164667.21000570865, 161935.3890225516, + 158894.20739431036, 155664.02158168555, 152272.83655577057, + 148752.19406276915, 145234.49331751198, 141685.88227966873, + 138281.52067566666, 135017.10357408912, 132040.93739152382, + 129426.7609842596, 127188.61963814858, 125388.33184149505, + 123951.2833810056, 122873.13680941565, 122068.03825272025, + 121475.8485893286, 121044.98731339099, 120743.4822671785, + 120561.4654102988, 120516.63361816184, 120616.46163938637, + 120884.08029294446, 121312.15138525756, 121862.66458530727, + 122507.91607574132, 123155.09610423422, 123767.69655290531, + 124261.07726086979, 124604.51420419505, 124785.50942149578, + 124804.23055934883, 124697.8388812819, 124491.59020668054, + 124221.5266468464, 123909.20275065511, 123562.01797601234, + 123175.79660791084, 122743.32629458106, 122251.1125084072, + 121703.76318624361, 121102.88071649135, 120471.24403477622, + 119833.09389828598, 119204.4448101362, 118608.61486204715, + 118038.99495793683, 117497.9577524846, 116966.67355827926, + 116431.72660746872, 115884.81705531375, 115321.65182998509, + 114758.50369012577, 114206.39403908001, 113688.78753301552, + 113216.48188095937, 112795.6658329428, 112419.72983558016, + 112070.83066854498, 111727.42863959678, 111369.71127584313, + 110986.70068174484, 110579.21285178832, 110159.86342577147, + 109750.6630213877, 109374.00863863164, 109076.7356940898 + ], + "flow:branch6_seg1:J13": [ + 3.4581516196976545, 3.489075035201876, 3.5501248206718987, + 3.6412332928615756, 3.764445814992384, 3.9230430856737346, + 4.131909900494146, 4.411573531450185, 4.7940639761486645, + 5.317220963878069, 6.009726646777072, 6.91060091711855, 8.022557958772689, + 9.360813989977911, 10.89729899758972, 12.593401838447555, + 14.417176756454284, 16.290152808278258, 18.186265958954248, + 20.014640929885765, 21.73723919311545, 23.297724149495384, + 24.643580149353877, 25.74470347178492, 26.541509632192408, + 27.01855967431889, 27.149307137372283, 26.930316995852387, + 26.369403205700294, 25.49502874688309, 24.33716719598033, + 22.960608921289257, 21.39699075129902, 19.715483888798012, + 17.95502224799082, 16.14624004043965, 14.332904343782019, + 12.513066006213457, 10.743094065899651, 9.025444137111375, + 7.406043786289053, 5.914321055929614, 4.581622123641591, + 3.4592357655224952, 2.5483611024822435, 1.869954050549008, + 1.4001044519247694, 1.1207468561166265, 0.9977259553491372, + 0.9917049261352948, 1.0716487658454117, 1.214125791576265, + 1.407949641228853, 1.6533585745344803, 1.9547147305743062, + 2.316311313025555, 2.740430370319145, 3.210353793705508, + 3.7122477623908496, 4.21153536518905, 4.681831730265264, + 5.093108438709398, 5.421474091296055, 5.662855663435937, 5.81586186566315, + 5.896699281253381, 5.920486787643453, 5.905505986176795, + 5.865793671313148, 5.809124668884357, 5.736351080438208, + 5.645595532304564, 5.532181433878163, 5.395561768355927, + 5.238087127057799, 5.066499113099056, 4.893468868100485, + 4.7268843015238025, 4.577479665762918, 4.44615387735903, 4.33249292142527, + 4.231006078662385, 4.133345666009888, 4.035138975735349, + 3.9324034009915048, 3.829729067353132, 3.7327742559074664, + 3.6500734094457084, 3.5890465063609476, 3.552266906423365, + 3.538724451631965, 3.540977599316275, 3.5491621122574966, + 3.5532843638958393, 3.546445669183234, 3.5270905078137513, + 3.4990927235352376, 3.4714644954647094, 3.45446381280775, + 3.4581516196976545 + ], + "pressure:branch6_seg1:J13": [ + 109008.64927189425, 108736.08479449873, 108532.84593581359, + 108401.11894567987, 108348.53613759161, 108386.08727537372, + 108554.89876715552, 108902.73379080411, 109512.99761389007, + 110470.26033236491, 111848.10747878335, 113743.11229209324, + 116160.09698012887, 119160.62464864431, 122668.80854050709, + 126640.11308037977, 130993.96168394419, 135579.2991666889, + 140347.34983131438, 145082.56737474535, 149736.09273245992, + 154142.9100769048, 158213.16087240845, 161839.17306696795, + 164883.98833224812, 167298.14918822845, 168995.20815569384, + 169952.44479402268, 170160.26260485116, 169657.0051045336, + 168486.43717752857, 166771.94635309596, 164549.64819870944, + 161975.72802864463, 159087.26249658887, 155971.13528887133, + 152689.11415929394, 149249.7861973447, 145783.54395953068, + 142274.83376149205, 138863.97395939127, 135584.48537258894, + 132549.2026662195, 129860.80215683205, 127534.13309897031, + 125635.83346732857, 124111.4007665808, 122950.71785764137, + 122082.44801178966, 121441.74756431545, 120974.9059260298, + 120644.23402150374, 120435.41633477696, 120359.45947378674, + 120427.0208068615, 120656.27169820566, 121049.29908067267, + 121570.8388706377, 122195.62986588087, 122841.00993533, + 123461.43169010105, 123981.27179107499, 124356.79612284078, + 124574.58139747854, 124628.40532265545, 124551.02482195642, + 124367.42917084019, 124112.81131480349, 123811.034971302, + 123473.10838786329, 123097.08996177276, 122676.8443862335, + 122199.77171054608, 121666.59794302793, 121079.54356165118, + 120455.96590495747, 119821.2616688543, 119191.1882804816, + 118589.73018419182, 118014.9026286215, 117468.57346088481, + 116936.31718926835, 116402.95039368916, 115860.17938533865, + 115301.13246979954, 114738.80881715243, 114184.53928991567, + 113659.37966178067, 113177.35638659504, 112745.22280288476, + 112359.886524335, 112005.51256216862, 111661.57025752559, + 111307.7762849036, 110931.05574243487, 110529.62488234721, + 110113.19478130776, 109701.98175270253, 109317.95198697508, + 109008.64927189425 + ], + "flow:J13:branch6_seg2": [ + 3.4581516196976545, 3.489075035201876, 3.5501248206718987, + 3.6412332928615756, 3.764445814992384, 3.9230430856737346, + 4.131909900494146, 4.411573531450185, 4.7940639761486645, + 5.317220963878069, 6.009726646777072, 6.91060091711855, 8.022557958772689, + 9.360813989977911, 10.89729899758972, 12.593401838447555, + 14.417176756454284, 16.290152808278258, 18.186265958954248, + 20.014640929885765, 21.73723919311545, 23.297724149495384, + 24.643580149353877, 25.74470347178492, 26.541509632192408, + 27.01855967431889, 27.149307137372283, 26.930316995852387, + 26.369403205700294, 25.49502874688309, 24.33716719598033, + 22.960608921289257, 21.39699075129902, 19.715483888798012, + 17.95502224799082, 16.14624004043965, 14.332904343782019, + 12.513066006213457, 10.743094065899651, 9.025444137111375, + 7.406043786289053, 5.914321055929614, 4.581622123641591, + 3.4592357655224952, 2.5483611024822435, 1.869954050549008, + 1.4001044519247694, 1.1207468561166265, 0.9977259553491372, + 0.9917049261352948, 1.0716487658454117, 1.214125791576265, + 1.407949641228853, 1.6533585745344803, 1.9547147305743062, + 2.316311313025555, 2.740430370319145, 3.210353793705508, + 3.7122477623908496, 4.21153536518905, 4.681831730265264, + 5.093108438709398, 5.421474091296055, 5.662855663435937, 5.81586186566315, + 5.896699281253381, 5.920486787643453, 5.905505986176795, + 5.865793671313148, 5.809124668884357, 5.736351080438208, + 5.645595532304564, 5.532181433878163, 5.395561768355927, + 5.238087127057799, 5.066499113099056, 4.893468868100485, + 4.7268843015238025, 4.577479665762918, 4.44615387735903, 4.33249292142527, + 4.231006078662385, 4.133345666009888, 4.035138975735349, + 3.9324034009915048, 3.829729067353132, 3.7327742559074664, + 3.6500734094457084, 3.5890465063609476, 3.552266906423365, + 3.538724451631965, 3.540977599316275, 3.5491621122574966, + 3.5532843638958393, 3.546445669183234, 3.5270905078137513, + 3.4990927235352376, 3.4714644954647094, 3.45446381280775, + 3.4581516196976545 + ], + "pressure:J13:branch6_seg2": [ + 109008.64927189425, 108736.08479449873, 108532.84593581359, + 108401.11894567987, 108348.53613759161, 108386.08727537372, + 108554.89876715552, 108902.73379080411, 109512.99761389007, + 110470.26033236491, 111848.10747878335, 113743.11229209324, + 116160.09698012887, 119160.62464864431, 122668.80854050709, + 126640.11308037977, 130993.96168394419, 135579.2991666889, + 140347.34983131438, 145082.56737474535, 149736.09273245992, + 154142.9100769048, 158213.16087240845, 161839.17306696795, + 164883.98833224812, 167298.14918822845, 168995.20815569384, + 169952.44479402268, 170160.26260485116, 169657.0051045336, + 168486.43717752857, 166771.94635309596, 164549.64819870944, + 161975.72802864463, 159087.26249658887, 155971.13528887133, + 152689.11415929394, 149249.7861973447, 145783.54395953068, + 142274.83376149205, 138863.97395939127, 135584.48537258894, + 132549.2026662195, 129860.80215683205, 127534.13309897031, + 125635.83346732857, 124111.4007665808, 122950.71785764137, + 122082.44801178966, 121441.74756431545, 120974.9059260298, + 120644.23402150374, 120435.41633477696, 120359.45947378674, + 120427.0208068615, 120656.27169820566, 121049.29908067267, + 121570.8388706377, 122195.62986588087, 122841.00993533, + 123461.43169010105, 123981.27179107499, 124356.79612284078, + 124574.58139747854, 124628.40532265545, 124551.02482195642, + 124367.42917084019, 124112.81131480349, 123811.034971302, + 123473.10838786329, 123097.08996177276, 122676.8443862335, + 122199.77171054608, 121666.59794302793, 121079.54356165118, + 120455.96590495747, 119821.2616688543, 119191.1882804816, + 118589.73018419182, 118014.9026286215, 117468.57346088481, + 116936.31718926835, 116402.95039368916, 115860.17938533865, + 115301.13246979954, 114738.80881715243, 114184.53928991567, + 113659.37966178067, 113177.35638659504, 112745.22280288476, + 112359.886524335, 112005.51256216862, 111661.57025752559, + 111307.7762849036, 110931.05574243487, 110529.62488234721, + 110113.19478130776, 109701.98175270253, 109317.95198697508, + 109008.64927189425 + ], + "flow:branch7_seg0:J14": [ + 2.955179247893858, 2.9687188143478416, 3.0019983691116625, + 3.0570759823323566, 3.1368317457411905, 3.2440444018659442, + 3.3894513986549746, 3.5847646884464135, 3.8520459587161966, + 4.215517752154295, 4.696222977105309, 5.326749063107911, + 6.110660418684763, 7.0719449763675275, 8.192305342634793, + 9.458518242610577, 10.851339376577128, 12.31654974701374, + 13.842757085465802, 15.35271086248941, 16.827399838943702, + 18.206947869518803, 19.452333215053866, 20.534675390696183, + 21.400523909142002, 22.040318794515137, 22.41711519001883, + 22.52482722820257, 22.360604443348386, 21.935391136446547, + 21.265695583275054, 20.39062860015358, 19.325392939959492, + 18.12562978958445, 16.812421611796474, 15.42098835224412, + 13.985371852650653, 12.508299926901186, 11.042350600300717, + 9.58035982191961, 8.173841404944412, 6.836471308036177, 5.598540407729324, + 4.5010527317591436, 3.5427646029308963, 2.759513818151712, + 2.136352085793911, 1.6763738404811086, 1.361739915299086, + 1.167020167002333, 1.075528215952272, 1.0654563419661456, + 1.1252319676186726, 1.2488591215133265, 1.431073786912173, + 1.6717385383365397, 1.9690580593969098, 2.3112116088291206, + 2.6926809224865575, 3.0873210922123233, 3.4805491398521524, + 3.8472564265202216, 4.168032259296009, 4.435971992454582, + 4.640615956259955, 4.789094515804486, 4.884838881916146, + 4.938095880543369, 4.958630541061147, 4.952699537727169, + 4.924454689526711, 4.875456870559674, 4.804389308428716, + 4.712984903286679, 4.602268128307605, 4.476837622208712, + 4.344447439752197, 4.209363017531666, 4.080878770474505, + 3.960049302363074, 3.8500518687635874, 3.749040058502811, + 3.652974527934477, 3.560258175963936, 3.4670902158987165, + 3.37624412172318, 3.289270111378452, 3.2113823393180176, + 3.1469724135832573, 3.098340069866836, 3.0666205579257917, + 3.048242386112511, 3.038666818890838, 3.0318459653116765, + 3.022730689800693, 3.008817062706453, 2.9904947825866546, + 2.971770559964517, 2.9578687223498927, 2.955179247893858 + ], + "pressure:branch7_seg0:J14": [ + 109088.32974572212, 108831.93855369886, 108643.88198237665, + 108525.32742076262, 108486.25258565701, 108539.75441039767, + 108735.6384199583, 109124.57610829227, 109795.60425252285, + 110837.81464111089, 112312.48741878642, 114332.86603099157, + 116877.6330583969, 120020.30458087238, 123675.40338767502, + 127768.70043139947, 132265.49710883238, 136974.30060339524, + 141880.7984014729, 146741.7270566913, 151502.3458928932, + 156006.59193519302, 160135.82805432702, 163806.66195528096, + 166835.9749727294, 169200.9828098037, 170795.96944117546, + 171598.74437283122, 171628.97258397884, 170926.86712734387, + 169546.8280125476, 167636.49793199098, 165216.29629864334, + 162469.21827284453, 159441.2505687245, 156193.21135960953, + 152812.5274744367, 149273.28440935333, 145747.19934853984, + 142192.41260429498, 138771.53501906426, 135522.08627952487, + 132522.98437157986, 129919.73520056896, 127655.12043756325, + 125825.60874694622, 124361.48470607965, 123226.05430496462, + 122378.1333962205, 121721.47107692287, 121230.23736563582, + 120876.71011143812, 120646.68238888653, 120564.59660635395, + 120634.40593265959, 120872.975754655, 121282.41783033307, + 121810.30612065452, 122439.18700481213, 123071.46355116816, + 123664.72702976395, 124153.08024546299, 124483.11661354655, + 124669.1850885258, 124697.5102298981, 124604.80957560058, + 124420.274523523, 124168.81250981885, 123877.96492931872, + 123550.24426777923, 123178.4791707696, 122757.28707102385, + 122272.58877238925, 121730.66532026838, 121136.80708259363, + 120509.54260745006, 119879.84101841332, 119256.14176471771, + 118664.83496129831, 118099.252080903, 117556.58466818919, + 117025.96431236483, 116485.90358701577, 115934.58317025554, + 115366.93636864907, 114799.82747508373, 114247.17107725177, + 113728.29693714663, 113256.78766638684, 112834.49258417827, + 112456.35623059118, 112102.89535921741, 111753.53553428616, + 111389.65024182448, 111000.57235804119, 110588.9039058101, + 110167.35735155549, 109758.63952718831, 109383.81834258424, + 109088.32974572212 + ], + "flow:J14:branch7_seg1": [ + 2.955179247893858, 2.9687188143478416, 3.0019983691116625, + 3.0570759823323566, 3.1368317457411905, 3.2440444018659442, + 3.3894513986549746, 3.5847646884464135, 3.8520459587161966, + 4.215517752154295, 4.696222977105309, 5.326749063107911, + 6.110660418684763, 7.0719449763675275, 8.192305342634793, + 9.458518242610577, 10.851339376577128, 12.31654974701374, + 13.842757085465802, 15.35271086248941, 16.827399838943702, + 18.206947869518803, 19.452333215053866, 20.534675390696183, + 21.400523909142002, 22.040318794515137, 22.41711519001883, + 22.52482722820257, 22.360604443348386, 21.935391136446547, + 21.265695583275054, 20.39062860015358, 19.325392939959492, + 18.12562978958445, 16.812421611796474, 15.42098835224412, + 13.985371852650653, 12.508299926901186, 11.042350600300717, + 9.58035982191961, 8.173841404944412, 6.836471308036177, 5.598540407729324, + 4.5010527317591436, 3.5427646029308963, 2.759513818151712, + 2.136352085793911, 1.6763738404811086, 1.361739915299086, + 1.167020167002333, 1.075528215952272, 1.0654563419661456, + 1.1252319676186726, 1.2488591215133265, 1.431073786912173, + 1.6717385383365397, 1.9690580593969098, 2.3112116088291206, + 2.6926809224865575, 3.0873210922123233, 3.4805491398521524, + 3.8472564265202216, 4.168032259296009, 4.435971992454582, + 4.640615956259955, 4.789094515804486, 4.884838881916146, + 4.938095880543369, 4.958630541061147, 4.952699537727169, + 4.924454689526711, 4.875456870559674, 4.804389308428716, + 4.712984903286679, 4.602268128307605, 4.476837622208712, + 4.344447439752197, 4.209363017531666, 4.080878770474505, + 3.960049302363074, 3.8500518687635874, 3.749040058502811, + 3.652974527934477, 3.560258175963936, 3.4670902158987165, + 3.37624412172318, 3.289270111378452, 3.2113823393180176, + 3.1469724135832573, 3.098340069866836, 3.0666205579257917, + 3.048242386112511, 3.038666818890838, 3.0318459653116765, + 3.022730689800693, 3.008817062706453, 2.9904947825866546, + 2.971770559964517, 2.9578687223498927, 2.955179247893858 + ], + "pressure:J14:branch7_seg1": [ + 109088.32974572212, 108831.93855369886, 108643.88198237665, + 108525.32742076262, 108486.25258565701, 108539.75441039767, + 108735.6384199583, 109124.57610829227, 109795.60425252285, + 110837.81464111089, 112312.48741878642, 114332.86603099157, + 116877.6330583969, 120020.30458087238, 123675.40338767502, + 127768.70043139947, 132265.49710883238, 136974.30060339524, + 141880.7984014729, 146741.7270566913, 151502.3458928932, + 156006.59193519302, 160135.82805432702, 163806.66195528096, + 166835.9749727294, 169200.9828098037, 170795.96944117546, + 171598.74437283122, 171628.97258397884, 170926.86712734387, + 169546.8280125476, 167636.49793199098, 165216.29629864334, + 162469.21827284453, 159441.2505687245, 156193.21135960953, + 152812.5274744367, 149273.28440935333, 145747.19934853984, + 142192.41260429498, 138771.53501906426, 135522.08627952487, + 132522.98437157986, 129919.73520056896, 127655.12043756325, + 125825.60874694622, 124361.48470607965, 123226.05430496462, + 122378.1333962205, 121721.47107692287, 121230.23736563582, + 120876.71011143812, 120646.68238888653, 120564.59660635395, + 120634.40593265959, 120872.975754655, 121282.41783033307, + 121810.30612065452, 122439.18700481213, 123071.46355116816, + 123664.72702976395, 124153.08024546299, 124483.11661354655, + 124669.1850885258, 124697.5102298981, 124604.80957560058, + 124420.274523523, 124168.81250981885, 123877.96492931872, + 123550.24426777923, 123178.4791707696, 122757.28707102385, + 122272.58877238925, 121730.66532026838, 121136.80708259363, + 120509.54260745006, 119879.84101841332, 119256.14176471771, + 118664.83496129831, 118099.252080903, 117556.58466818919, + 117025.96431236483, 116485.90358701577, 115934.58317025554, + 115366.93636864907, 114799.82747508373, 114247.17107725177, + 113728.29693714663, 113256.78766638684, 112834.49258417827, + 112456.35623059118, 112102.89535921741, 111753.53553428616, + 111389.65024182448, 111000.57235804119, 110588.9039058101, + 110167.35735155549, 109758.63952718831, 109383.81834258424, + 109088.32974572212 + ], + "flow:branch7_seg1:J15": [ + 2.956063323293109, 2.9693980554256862, 3.0024768108280684, + 3.0573268843358865, 3.1368328268737082, 3.2437212129784316, + 3.3886126395570515, 3.5832528668851205, 3.8495155413183664, + 4.211796875519129, 4.691021340126503, 5.319946715984867, + 6.102224784712947, 7.061776422791699, 8.180863974499351, + 9.445612764389029, 10.837795024020432, 12.302360626028415, + 13.828384325404892, 15.33880893460344, 16.8136902728367, + 18.19441515849587, 19.440939444570976, 20.524955083358375, + 21.39278952297308, 22.034535762085977, 22.413546600120718, + 22.52354132844992, 22.361465864024755, 21.938385338407617, + 21.270326566383854, 20.396729185377808, 19.33274577877767, + 18.133717280724383, 16.821581135714514, 15.430449660510652, + 13.995417057160303, 12.518581201409228, 11.052524754344667, + 9.5907237772025, 8.18364806474136, 6.845816515782418, 5.606865994843206, + 4.508244810908079, 3.5488172222792826, 2.7644126222064775, + 2.1402661659994178, 1.6793280980864096, 1.3639814817341767, + 1.1686893555408175, 1.0767847348639081, 1.0663638601850367, + 1.125755318042666, 1.248897631208955, 1.4306320427173098, + 1.6707441854013185, 1.9676425777971775, 2.309491709399064, + 2.690778280789193, 3.0854988238389733, 3.478907939105639, + 3.8460510629701097, 4.167280265055539, 4.435721076232981, + 4.640773169687335, 4.789546764186372, 4.885521764743713, 4.93892280307506, + 4.959578900630289, 4.953769356503073, 4.925651339206933, + 4.876811152329761, 4.805939764115297, 4.714695705471266, + 4.604129229728483, 4.4787416607674055, 4.346341774527662, + 4.211188834207234, 4.082611086327796, 3.9617176211812515, + 3.851658554543295, 3.7506601869357086, 3.6546102373671268, + 3.5619460060452917, 3.4688142883740145, 3.3779371181311295, + 3.290909796911559, 3.2128802545288715, 3.148324378958141, + 3.0995454371463196, 3.067713966879378, 3.0493009144168357, + 3.0397464688059834, 3.0329904997973025, 3.023950596207552, + 3.0100904536450943, 2.9917667626224618, 2.9729742503493504, + 2.9589345228408974, 2.956063323293109 + ], + "pressure:branch7_seg1:J15": [ + 108980.81386542595, 108713.29556952183, 108511.9590547229, + 108377.37542622804, 108319.8464607403, 108350.53076766017, + 108514.06066518364, 108860.67828319772, 109468.45388586284, + 110431.21951600423, 111800.65399950401, 113694.677635602, + 116095.2460099482, 119066.86026019743, 122550.96480741016, + 126441.94850904543, 130750.86880917237, 135256.36667612538, + 139968.82094459163, 144655.72524857227, 149232.6595310642, + 153601.68147608652, 157602.8936654184, 161205.58038586305, + 164210.09396074477, 166598.15369044326, 168276.51309173545, + 169211.02249626408, 169424.9360264455, 168951.21904017523, + 167821.75696396583, 166178.72692787138, 164032.2547895139, + 161539.97347496406, 158777.58470745137, 155753.12155310911, + 152595.39126338184, 149239.0561325004, 145864.14671213255, + 142446.1624898711, 139106.85209727116, 135928.21621409946, + 132940.2844083862, 130325.78351558777, 128019.7368832345, + 126128.02838730482, 124601.87013377777, 123394.22449304498, + 122483.81573295509, 121767.34371842719, 121225.97234711325, + 120830.03065446285, 120562.13089806719, 120441.12953066602, + 120472.18888622156, 120666.53538170148, 121035.40990244062, + 121525.49185573158, 122122.02304255679, 122735.00335288375, + 123314.2514157861, 123806.44616415224, 124145.8912057823, + 124352.45245662316, 124404.22375509603, 124334.1502445035, + 124171.07226502834, 123936.83757419797, 123661.64542895935, + 123348.40859511956, 122990.77759541167, 122584.28035291526, + 122116.14445012601, 121590.44570003022, 121014.04835079817, + 120400.02200094615, 119781.05554521455, 119163.394216613, + 118574.22567019987, 118010.16767339848, 117466.93854484295, + 116938.52669905117, 116400.48174176231, 115853.35390752091, + 115290.00217067223, 114725.44711085924, 114174.3059498804, + 113652.14437681685, 113175.73908503675, 112745.66790843442, + 112359.98913554383, 112000.91736216491, 111648.68429479664, + 111285.3683355308, 110898.95680367074, 110490.84203952452, + 110071.73444354025, 109662.84347469508, 109284.12467403055, + 108980.81386542595 + ], + "flow:J15:branch7_seg2": [ + 2.956063323293109, 2.9693980554256862, 3.0024768108280684, + 3.0573268843358865, 3.1368328268737082, 3.2437212129784316, + 3.3886126395570515, 3.5832528668851205, 3.8495155413183664, + 4.211796875519129, 4.691021340126503, 5.319946715984867, + 6.102224784712947, 7.061776422791699, 8.180863974499351, + 9.445612764389029, 10.837795024020432, 12.302360626028415, + 13.828384325404892, 15.33880893460344, 16.8136902728367, + 18.19441515849587, 19.440939444570976, 20.524955083358375, + 21.39278952297308, 22.034535762085977, 22.413546600120718, + 22.52354132844992, 22.361465864024755, 21.938385338407617, + 21.270326566383854, 20.396729185377808, 19.33274577877767, + 18.133717280724383, 16.821581135714514, 15.430449660510652, + 13.995417057160303, 12.518581201409228, 11.052524754344667, + 9.5907237772025, 8.18364806474136, 6.845816515782418, 5.606865994843206, + 4.508244810908079, 3.5488172222792826, 2.7644126222064775, + 2.1402661659994178, 1.6793280980864096, 1.3639814817341767, + 1.1686893555408175, 1.0767847348639081, 1.0663638601850367, + 1.125755318042666, 1.248897631208955, 1.4306320427173098, + 1.6707441854013185, 1.9676425777971775, 2.309491709399064, + 2.690778280789193, 3.0854988238389733, 3.478907939105639, + 3.8460510629701097, 4.167280265055539, 4.435721076232981, + 4.640773169687335, 4.789546764186372, 4.885521764743713, 4.93892280307506, + 4.959578900630289, 4.953769356503073, 4.925651339206933, + 4.876811152329761, 4.805939764115297, 4.714695705471266, + 4.604129229728483, 4.4787416607674055, 4.346341774527662, + 4.211188834207234, 4.082611086327796, 3.9617176211812515, + 3.851658554543295, 3.7506601869357086, 3.6546102373671268, + 3.5619460060452917, 3.4688142883740145, 3.3779371181311295, + 3.290909796911559, 3.2128802545288715, 3.148324378958141, + 3.0995454371463196, 3.067713966879378, 3.0493009144168357, + 3.0397464688059834, 3.0329904997973025, 3.023950596207552, + 3.0100904536450943, 2.9917667626224618, 2.9729742503493504, + 2.9589345228408974, 2.956063323293109 + ], + "pressure:J15:branch7_seg2": [ + 108980.81386542595, 108713.29556952183, 108511.9590547229, + 108377.37542622804, 108319.8464607403, 108350.53076766017, + 108514.06066518364, 108860.67828319772, 109468.45388586284, + 110431.21951600423, 111800.65399950401, 113694.677635602, + 116095.2460099482, 119066.86026019743, 122550.96480741016, + 126441.94850904543, 130750.86880917237, 135256.36667612538, + 139968.82094459163, 144655.72524857227, 149232.6595310642, + 153601.68147608652, 157602.8936654184, 161205.58038586305, + 164210.09396074477, 166598.15369044326, 168276.51309173545, + 169211.02249626408, 169424.9360264455, 168951.21904017523, + 167821.75696396583, 166178.72692787138, 164032.2547895139, + 161539.97347496406, 158777.58470745137, 155753.12155310911, + 152595.39126338184, 149239.0561325004, 145864.14671213255, + 142446.1624898711, 139106.85209727116, 135928.21621409946, + 132940.2844083862, 130325.78351558777, 128019.7368832345, + 126128.02838730482, 124601.87013377777, 123394.22449304498, + 122483.81573295509, 121767.34371842719, 121225.97234711325, + 120830.03065446285, 120562.13089806719, 120441.12953066602, + 120472.18888622156, 120666.53538170148, 121035.40990244062, + 121525.49185573158, 122122.02304255679, 122735.00335288375, + 123314.2514157861, 123806.44616415224, 124145.8912057823, + 124352.45245662316, 124404.22375509603, 124334.1502445035, + 124171.07226502834, 123936.83757419797, 123661.64542895935, + 123348.40859511956, 122990.77759541167, 122584.28035291526, + 122116.14445012601, 121590.44570003022, 121014.04835079817, + 120400.02200094615, 119781.05554521455, 119163.394216613, + 118574.22567019987, 118010.16767339848, 117466.93854484295, + 116938.52669905117, 116400.48174176231, 115853.35390752091, + 115290.00217067223, 114725.44711085924, 114174.3059498804, + 113652.14437681685, 113175.73908503675, 112745.66790843442, + 112359.98913554383, 112000.91736216491, 111648.68429479664, + 111285.3683355308, 110898.95680367074, 110490.84203952452, + 110071.73444354025, 109662.84347469508, 109284.12467403055, + 108980.81386542595 + ], + "flow:branch8_seg0:J16": [ + 2.0993555023322683, 2.1003672773556943, 2.1140493923191643, + 2.142312895912188, 2.1863852764579996, 2.2481187933966975, + 2.3302317603942404, 2.4408854006455076, 2.5899608650884227, + 2.7942006539767643, 3.071113179785046, 3.436882932147119, + 3.9113218222969834, 4.498121269118077, 5.20828668469476, + 6.027862710808846, 6.9447077812841576, 7.940406316473611, + 8.980518832639726, 10.047826981769422, 11.094932507320568, + 12.102714791288912, 13.034381780308834, 13.863440995165927, + 14.567388449980772, 15.114145350604547, 15.49373284961152, + 15.687569993190257, 15.691196122973329, 15.507050779850791, + 15.143751701293523, 14.61691337947309, 13.953317950288323, + 13.16867903098072, 12.298955615694824, 11.360202948276555, + 10.375222255257052, 9.363661739239815, 8.332641733541342, + 7.312126311422994, 6.304239336728989, 5.338997522908269, + 4.429219290476422, 3.5965155676309264, 2.866623476126103, + 2.2424048779027776, 1.7404968419808617, 1.3527050955964, + 1.0747955400935336, 0.8940054086680654, 0.7917976345145951, + 0.7553438663063676, 0.7714883263808038, 0.8323149314079087, + 0.9354318546153946, 1.0784960399172954, 1.2619952112662975, + 1.4838662908539184, 1.7355125899391177, 2.0100499761205537, + 2.2896828405310465, 2.5621677330438257, 2.8109044632402833, + 3.023327930137683, 3.1951894231482845, 3.3224922108451644, + 3.4103861010014787, 3.4639031650084786, 3.4902048696080006, + 3.496134410016032, 3.4854681492669575, 3.460104715471877, + 3.4205889435366448, 3.365876165518214, 3.2970544976961684, + 3.2153340240966597, 3.1245515625733957, 3.0302939899911356, + 2.9363504978942614, 2.8482328536632013, 2.766824749029307, + 2.693056005153654, 2.6251289251124037, 2.5599848808015624, + 2.496103744818955, 2.4318016896973598, 2.369069236576185, + 2.309921346301749, 2.2581553064015165, 2.216825491549956, + 2.187328610908677, 2.1695571788034917, 2.160480194402359, + 2.156144168693673, 2.1521890811183337, 2.145344115231621, + 2.1344789988769466, 2.1207585909649547, 2.1076342162089357, + 2.0993555023322683 + ], + "pressure:branch8_seg0:J16": [ + 108718.50588580406, 108377.49723439525, 108086.24997741025, + 107852.3000318542, 107682.46906460801, 107585.5590028887, + 107575.74313380959, 107688.77944337296, 107964.85953340212, + 108475.80592413641, 109288.27346994028, 110475.2114749412, + 112114.78772446232, 114231.86476104197, 116882.74831943453, + 120015.3156763001, 123617.76803862273, 127609.94611157718, + 131896.36917167532, 136407.32507288046, 140968.83545800368, + 145528.7697988078, 149917.64982496953, 154055.3505816192, + 157822.85550027422, 161095.5602633593, 163818.58578790622, + 165895.41174012018, 167293.4977310727, 167998.6788597317, + 168018.07606403794, 167397.2084556787, 166207.87741336625, + 164492.6808080793, 162376.76400683154, 159885.84752115188, + 157120.060849844, 154117.41915170886, 150920.25183526898, + 147631.03116547377, 144248.3510033866, 140906.99995215927, + 137634.40497315943, 134540.53528096608, 131709.74217942063, + 129167.30556519079, 126984.90375471808, 125138.25341516863, + 123632.63141062549, 122427.02812526753, 121472.21723775427, + 120732.934664909, 120173.83364824655, 119777.5781907828, + 119545.03877606435, 119472.67484592776, 119570.93152818311, + 119831.9044763052, 120229.9570509075, 120742.01303597826, + 121302.4513232863, 121872.49029391639, 122385.73678220635, + 122802.09689343005, 123100.5844666724, 123265.89659264087, + 123312.9763981602, 123254.11556538008, 123111.71236343747, + 122904.5463487297, 122641.86507294733, 122327.09563230503, + 121959.03082826863, 121531.57962587594, 121048.37028144665, + 120511.32037125091, 119935.77198132632, 119339.32656855867, + 118735.85493922864, 118144.33541670242, 117566.43279892039, + 117006.88285505044, 116457.33558212465, 115909.28739699333, + 115356.96044085734, 114796.2396516341, 114235.9834715896, + 113683.25037785433, 113154.17070370872, 112658.54507587584, + 112202.77664455748, 111786.19579671344, 111398.0713178781, + 111025.20723037921, 110652.58143743573, 110269.75686229242, + 109873.67943736509, 109469.66449353905, 109070.74738069685, + 108718.50588580406 + ], + "flow:J16:branch8_seg1": [ + 2.0993555023322683, 2.1003672773556943, 2.1140493923191643, + 2.142312895912188, 2.1863852764579996, 2.2481187933966975, + 2.3302317603942404, 2.4408854006455076, 2.5899608650884227, + 2.7942006539767643, 3.071113179785046, 3.436882932147119, + 3.9113218222969834, 4.498121269118077, 5.20828668469476, + 6.027862710808846, 6.9447077812841576, 7.940406316473611, + 8.980518832639726, 10.047826981769422, 11.094932507320568, + 12.102714791288912, 13.034381780308834, 13.863440995165927, + 14.567388449980772, 15.114145350604547, 15.49373284961152, + 15.687569993190257, 15.691196122973329, 15.507050779850791, + 15.143751701293523, 14.61691337947309, 13.953317950288323, + 13.16867903098072, 12.298955615694824, 11.360202948276555, + 10.375222255257052, 9.363661739239815, 8.332641733541342, + 7.312126311422994, 6.304239336728989, 5.338997522908269, + 4.429219290476422, 3.5965155676309264, 2.866623476126103, + 2.2424048779027776, 1.7404968419808617, 1.3527050955964, + 1.0747955400935336, 0.8940054086680654, 0.7917976345145951, + 0.7553438663063676, 0.7714883263808038, 0.8323149314079087, + 0.9354318546153946, 1.0784960399172954, 1.2619952112662975, + 1.4838662908539184, 1.7355125899391177, 2.0100499761205537, + 2.2896828405310465, 2.5621677330438257, 2.8109044632402833, + 3.023327930137683, 3.1951894231482845, 3.3224922108451644, + 3.4103861010014787, 3.4639031650084786, 3.4902048696080006, + 3.496134410016032, 3.4854681492669575, 3.460104715471877, + 3.4205889435366448, 3.365876165518214, 3.2970544976961684, + 3.2153340240966597, 3.1245515625733957, 3.0302939899911356, + 2.9363504978942614, 2.8482328536632013, 2.766824749029307, + 2.693056005153654, 2.6251289251124037, 2.5599848808015624, + 2.496103744818955, 2.4318016896973598, 2.369069236576185, + 2.309921346301749, 2.2581553064015165, 2.216825491549956, + 2.187328610908677, 2.1695571788034917, 2.160480194402359, + 2.156144168693673, 2.1521890811183337, 2.145344115231621, + 2.1344789988769466, 2.1207585909649547, 2.1076342162089357, + 2.0993555023322683 + ], + "pressure:J16:branch8_seg1": [ + 108718.50588580406, 108377.49723439525, 108086.24997741025, + 107852.3000318542, 107682.46906460801, 107585.5590028887, + 107575.74313380959, 107688.77944337296, 107964.85953340212, + 108475.80592413641, 109288.27346994028, 110475.2114749412, + 112114.78772446232, 114231.86476104197, 116882.74831943453, + 120015.3156763001, 123617.76803862273, 127609.94611157718, + 131896.36917167532, 136407.32507288046, 140968.83545800368, + 145528.7697988078, 149917.64982496953, 154055.3505816192, + 157822.85550027422, 161095.5602633593, 163818.58578790622, + 165895.41174012018, 167293.4977310727, 167998.6788597317, + 168018.07606403794, 167397.2084556787, 166207.87741336625, + 164492.6808080793, 162376.76400683154, 159885.84752115188, + 157120.060849844, 154117.41915170886, 150920.25183526898, + 147631.03116547377, 144248.3510033866, 140906.99995215927, + 137634.40497315943, 134540.53528096608, 131709.74217942063, + 129167.30556519079, 126984.90375471808, 125138.25341516863, + 123632.63141062549, 122427.02812526753, 121472.21723775427, + 120732.934664909, 120173.83364824655, 119777.5781907828, + 119545.03877606435, 119472.67484592776, 119570.93152818311, + 119831.9044763052, 120229.9570509075, 120742.01303597826, + 121302.4513232863, 121872.49029391639, 122385.73678220635, + 122802.09689343005, 123100.5844666724, 123265.89659264087, + 123312.9763981602, 123254.11556538008, 123111.71236343747, + 122904.5463487297, 122641.86507294733, 122327.09563230503, + 121959.03082826863, 121531.57962587594, 121048.37028144665, + 120511.32037125091, 119935.77198132632, 119339.32656855867, + 118735.85493922864, 118144.33541670242, 117566.43279892039, + 117006.88285505044, 116457.33558212465, 115909.28739699333, + 115356.96044085734, 114796.2396516341, 114235.9834715896, + 113683.25037785433, 113154.17070370872, 112658.54507587584, + 112202.77664455748, 111786.19579671344, 111398.0713178781, + 111025.20723037921, 110652.58143743573, 110269.75686229242, + 109873.67943736509, 109469.66449353905, 109070.74738069685, + 108718.50588580406 + ], + "flow:branch8_seg1:J17": [ + 2.101565747420968, 2.1023100788138707, 2.115661431311943, + 2.1435638008894684, 2.187217455603211, 2.2484831722309218, + 2.3299757842984365, 2.4397743398764575, 2.587681262015371, + 2.7902671022886527, 3.065185962984676, 3.4283707067086837, + 3.9000445957065093, 4.483736946250276, 5.190776176747284, + 6.0076321776825745, 6.921638808826772, 7.915527176527697, + 8.953886226737945, 10.020475352399739, 11.067542684188941, + 12.075693497380827, 13.008798262344088, 13.839539174743575, + 14.546194417479333, 15.096033230680092, 15.47921472578111, + 15.67699467994975, 15.684718479819756, 15.504648209509002, + 15.145422267299654, 14.622111202141848, 13.96189138608015, + 13.18002652283106, 12.312516505126988, 11.375950033276759, + 10.392321427971957, 9.382321156586908, 8.352081484241372, + 7.332179806241019, 6.324554056367185, 5.358929760636482, + 4.448598765607414, 3.614431467798126, 2.8830008047760707, + 2.256699825419043, 1.7527092163050038, 1.3628737466149778, + 1.0829735125504514, 0.9005695980742956, 0.7969100167031077, + 0.7592751923649957, 0.7743970858521976, 0.8342500189945902, + 0.9363858923343646, 1.0784618975018234, 1.260897893305229, + 1.481876997891866, 1.7327200385392567, 2.006777305752164, + 2.2862388900326565, 2.5588440643577184, 2.8081038195123784, + 3.0211398506423377, 3.1938212729690343, 3.32188064471133, + 3.410460470850569, 3.464554466892593, 3.491283827513179, + 3.4975723441763367, 3.4872299698581113, 3.4621789355226107, + 3.4230058005968593, 3.3686462863676496, 3.300154805434484, + 3.2187359607332335, 3.128119305201042, 3.0339649619966, 2.939985284215416, + 2.8517889247048873, 2.7702814123466983, 2.6964096764698984, + 2.6284692291369995, 2.563320109724761, 2.499495352548394, + 2.435220367356003, 2.3724631406086414, 2.3132330147173135, + 2.261280295196316, 2.2197304971497527, 2.1899810503681807, + 2.171998046222534, 2.162786204090591, 2.158405176211403, + 2.1544886370471152, 2.147721742600864, 2.13693054508091, + 2.1232214420999704, 2.1100233074684294, 2.101565747420968 + ], + "pressure:branch8_seg1:J17": [ + 108668.3098640274, 108320.41381930682, 108020.19045950714, + 107776.12212281293, 107594.58089934613, 107484.37652795143, + 107457.62637072732, 107546.62350689275, 107790.34544543801, + 108254.34567640863, 109008.35704654257, 110119.99562850836, + 111672.48704801215, 113692.46580443856, 116235.81149955283, + 119267.23779611177, 122759.45228617238, 126658.59682762419, + 130852.13050614306, 135285.16755088785, 139789.3912283695, + 144296.22356666086, 148664.9921313691, 152792.4891635093, + 156582.23335201794, 159901.63840130062, 162694.12793897017, + 164868.18735460183, 166382.93192461398, 167220.2391669488, + 167384.7942333453, 166907.62985365663, 165862.07230666155, + 164284.1541241859, 162287.5700461717, 159915.76311576032, + 157243.04252404624, 154332.05634061416, 151205.37012133762, + 147969.40137242846, 144631.1396321615, 141303.97841536195, + 138037.265098729, 134918.7534796763, 132051.22311672012, + 129458.48332754639, 127216.93498487107, 125312.93246359809, + 123748.89584199028, 122494.25954709187, 121496.78047196832, + 120722.30855429986, 120133.37486601765, 119709.49936395523, + 119448.83213100891, 119348.68176406578, 119416.65947846184, + 119650.65695854092, 120024.91473989122, 120519.28258966528, + 121072.30820392788, 121641.71506009555, 122166.4142124739, + 122598.60603550516, 122918.21044977891, 123105.05814655244, + 123171.6254286331, 123129.99961806498, 123000.93272293797, + 122804.83301191348, 122552.09029279051, 122246.99375509203, + 121889.3521915293, 121473.31601639476, 121000.88646207469, + 120474.30532960805, 119905.73178766744, 119313.88002500412, + 118711.66965630194, 118119.0380441642, 117539.62540455522, + 116977.90254020362, 116428.34945596302, 115880.95868397313, + 115330.808223411, 114772.11952579781, 114212.23222524399, + 113658.47978408319, 113125.15183750489, 112624.02968316882, + 112161.57221716305, 111738.9705447973, 111346.92143209987, + 110972.57045480021, 110601.01504989597, 110220.73164418843, + 109827.39551233544, 109424.70307897632, 109024.67027737938, + 108668.3098640274 + ], + "flow:J17:branch8_seg2": [ + 2.101565747420968, 2.1023100788138707, 2.115661431311943, + 2.1435638008894684, 2.187217455603211, 2.2484831722309218, + 2.3299757842984365, 2.4397743398764575, 2.587681262015371, + 2.7902671022886527, 3.065185962984676, 3.4283707067086837, + 3.9000445957065093, 4.483736946250276, 5.190776176747284, + 6.0076321776825745, 6.921638808826772, 7.915527176527697, + 8.953886226737945, 10.020475352399739, 11.067542684188941, + 12.075693497380827, 13.008798262344088, 13.839539174743575, + 14.546194417479333, 15.096033230680092, 15.47921472578111, + 15.67699467994975, 15.684718479819756, 15.504648209509002, + 15.145422267299654, 14.622111202141848, 13.96189138608015, + 13.18002652283106, 12.312516505126988, 11.375950033276759, + 10.392321427971957, 9.382321156586908, 8.352081484241372, + 7.332179806241019, 6.324554056367185, 5.358929760636482, + 4.448598765607414, 3.614431467798126, 2.8830008047760707, + 2.256699825419043, 1.7527092163050038, 1.3628737466149778, + 1.0829735125504514, 0.9005695980742956, 0.7969100167031077, + 0.7592751923649957, 0.7743970858521976, 0.8342500189945902, + 0.9363858923343646, 1.0784618975018234, 1.260897893305229, + 1.481876997891866, 1.7327200385392567, 2.006777305752164, + 2.2862388900326565, 2.5588440643577184, 2.8081038195123784, + 3.0211398506423377, 3.1938212729690343, 3.32188064471133, + 3.410460470850569, 3.464554466892593, 3.491283827513179, + 3.4975723441763367, 3.4872299698581113, 3.4621789355226107, + 3.4230058005968593, 3.3686462863676496, 3.300154805434484, + 3.2187359607332335, 3.128119305201042, 3.0339649619966, 2.939985284215416, + 2.8517889247048873, 2.7702814123466983, 2.6964096764698984, + 2.6284692291369995, 2.563320109724761, 2.499495352548394, + 2.435220367356003, 2.3724631406086414, 2.3132330147173135, + 2.261280295196316, 2.2197304971497527, 2.1899810503681807, + 2.171998046222534, 2.162786204090591, 2.158405176211403, + 2.1544886370471152, 2.147721742600864, 2.13693054508091, + 2.1232214420999704, 2.1100233074684294, 2.101565747420968 + ], + "pressure:J17:branch8_seg2": [ + 108668.3098640274, 108320.41381930682, 108020.19045950714, + 107776.12212281293, 107594.58089934613, 107484.37652795143, + 107457.62637072732, 107546.62350689275, 107790.34544543801, + 108254.34567640863, 109008.35704654257, 110119.99562850836, + 111672.48704801215, 113692.46580443856, 116235.81149955283, + 119267.23779611177, 122759.45228617238, 126658.59682762419, + 130852.13050614306, 135285.16755088785, 139789.3912283695, + 144296.22356666086, 148664.9921313691, 152792.4891635093, + 156582.23335201794, 159901.63840130062, 162694.12793897017, + 164868.18735460183, 166382.93192461398, 167220.2391669488, + 167384.7942333453, 166907.62985365663, 165862.07230666155, + 164284.1541241859, 162287.5700461717, 159915.76311576032, + 157243.04252404624, 154332.05634061416, 151205.37012133762, + 147969.40137242846, 144631.1396321615, 141303.97841536195, + 138037.265098729, 134918.7534796763, 132051.22311672012, + 129458.48332754639, 127216.93498487107, 125312.93246359809, + 123748.89584199028, 122494.25954709187, 121496.78047196832, + 120722.30855429986, 120133.37486601765, 119709.49936395523, + 119448.83213100891, 119348.68176406578, 119416.65947846184, + 119650.65695854092, 120024.91473989122, 120519.28258966528, + 121072.30820392788, 121641.71506009555, 122166.4142124739, + 122598.60603550516, 122918.21044977891, 123105.05814655244, + 123171.6254286331, 123129.99961806498, 123000.93272293797, + 122804.83301191348, 122552.09029279051, 122246.99375509203, + 121889.3521915293, 121473.31601639476, 121000.88646207469, + 120474.30532960805, 119905.73178766744, 119313.88002500412, + 118711.66965630194, 118119.0380441642, 117539.62540455522, + 116977.90254020362, 116428.34945596302, 115880.95868397313, + 115330.808223411, 114772.11952579781, 114212.23222524399, + 113658.47978408319, 113125.15183750489, 112624.02968316882, + 112161.57221716305, 111738.9705447973, 111346.92143209987, + 110972.57045480021, 110601.01504989597, 110220.73164418843, + 109827.39551233544, 109424.70307897632, 109024.67027737938, + 108668.3098640274 + ], + "flow:branch9_seg0:J18": [ + 4.604873812429838, 4.6269062207733125, 4.6826218696356205, + 4.774386532493243, 4.904821981174576, 5.078284095406396, + 5.308559317381929, 5.617032010158008, 6.03735411965671, 6.610252489928346, + 7.374422234636159, 8.372016860192868, 9.621705079531553, + 11.14012306372248, 12.909644284777212, 14.896020164921458, + 17.056436345635582, 19.320161457425222, 21.633981604801, + 23.910958687070675, 26.08904065664091, 28.100753036608843, + 29.88453104001983, 31.391076382185947, 32.560675437097395, + 33.35882344474046, 33.75455031962432, 33.73440445523508, + 33.301577421972766, 32.47740361514402, 31.295443965185132, + 29.812996285817036, 28.07686628229076, 26.155177053746133, + 24.099358115473763, 21.954079520975643, 19.763028262489787, + 17.546917932821042, 15.353010736616497, 13.20327530170648, + 11.142398598917337, 9.20850597770928, 7.4436752764784915, + 5.899939878215689, 4.600722003006551, 3.56974659102609, + 2.7997415291129086, 2.274118133437062, 1.96178607627802, + 1.8212277870847877, 1.8142886488286851, 1.9092802131634397, + 2.0857876849922783, 2.336549060362161, 2.6608653865747764, + 3.0617693989813355, 3.5400822720901965, 4.083322641612269, + 4.67481310139161, 5.2816530606854615, 5.871208367805736, + 6.408085104645083, 6.861842133049857, 7.217760202506552, + 7.470106968676498, 7.628458467025293, 7.708129214017713, + 7.7280772702702185, 7.706010812178291, 7.653914357700062, + 7.576935820796616, 7.475661784673403, 7.347044881396836, + 7.1901380444095535, 7.006547945280916, 6.80268236465033, + 6.590200323831235, 6.379766784983911, 6.182979359071357, + 6.004885527012833, 5.846843015291411, 5.705104946374174, + 5.5722531378588975, 5.442193818903743, 5.310288814376031, + 5.178394588033738, 5.051645763482318, 4.938447086904576, + 4.8471756042228265, 4.782818331222421, 4.74604164608859, + 4.731340863431263, 4.729152165532688, 4.728458210465266, 4.720207793504, + 4.700075486065988, 4.6696807140236025, 4.636486114680019, + 4.61107649312317, 4.604873812429838 + ], + "pressure:branch9_seg0:J18": [ + 109127.4494217586, 108889.6903200093, 108722.28762788839, + 108629.18622840745, 108618.57120918384, 108709.29012127787, + 108956.49784625195, 109411.87807857056, 110181.69867439276, + 111338.03860099753, 112970.21029199735, 115154.78137005342, + 117885.21009476107, 121221.13765679645, 125028.87200546963, + 129315.71034005159, 133917.67189586227, 138748.8021973306, + 143698.6349418131, 148545.42759463823, 153286.7717932987, + 157677.49418796186, 161706.59089123484, 165183.3588721421, + 168004.48299152535, 170119.55174546357, 171440.05255295953, + 171967.87644318177, 171718.43689550285, 170732.35679849944, + 169108.4141186564, 166960.9330350661, 164349.47623841057, + 161465.48869060783, 158280.05925894642, 154957.8744632568, + 151467.97200511617, 147894.40788493032, 144347.621552196, + 140790.9666452792, 137428.04915388988, 134217.38030222905, + 131342.93703845804, 128845.37404578678, 126740.52070477336, + 125073.02570517806, 123759.89442963866, 122785.8433404691, + 122062.42602515302, 121528.79262925622, 121139.31203378322, + 120872.55681701434, 120721.09185300078, 120713.26851436196, + 120851.37583018569, 121163.94772466614, 121630.60229019458, + 122211.91752897062, 122871.98396886123, 123513.15114456127, + 124102.81426384953, 124553.75864735339, 124848.47054552897, + 124976.36245338438, 124948.98106859803, 124803.43258182122, + 124569.91463969198, 124281.48453949927, 123957.28788884179, + 123599.90903909304, 123201.66435607304, 122754.50117777496, + 122244.59113570192, 121680.85469103826, 121065.29269682302, + 120426.91407742872, 119787.55583234277, 119165.10140612382, + 118578.48117795672, 118018.69990346539, 117485.42606434753, + 116956.2607017993, 116420.33537977785, 115868.33424990336, + 115301.94329311907, 114739.23364485247, 114192.19456935741, + 113686.41031270784, 113227.9941402792, 112822.46236903858, + 112458.5364541407, 112115.67824740107, 111771.92685378568, + 111408.02604809673, 111016.40115987214, 110601.32037658678, + 110179.2305241809, 109773.86732797416, 109408.31880333599, + 109127.4494217586 + ], + "flow:J18:branch9_seg1": [ + 4.604873812429838, 4.6269062207733125, 4.6826218696356205, + 4.774386532493243, 4.904821981174576, 5.078284095406396, + 5.308559317381929, 5.617032010158008, 6.03735411965671, 6.610252489928346, + 7.374422234636159, 8.372016860192868, 9.621705079531553, + 11.14012306372248, 12.909644284777212, 14.896020164921458, + 17.056436345635582, 19.320161457425222, 21.633981604801, + 23.910958687070675, 26.08904065664091, 28.100753036608843, + 29.88453104001983, 31.391076382185947, 32.560675437097395, + 33.35882344474046, 33.75455031962432, 33.73440445523508, + 33.301577421972766, 32.47740361514402, 31.295443965185132, + 29.812996285817036, 28.07686628229076, 26.155177053746133, + 24.099358115473763, 21.954079520975643, 19.763028262489787, + 17.546917932821042, 15.353010736616497, 13.20327530170648, + 11.142398598917337, 9.20850597770928, 7.4436752764784915, + 5.899939878215689, 4.600722003006551, 3.56974659102609, + 2.7997415291129086, 2.274118133437062, 1.96178607627802, + 1.8212277870847877, 1.8142886488286851, 1.9092802131634397, + 2.0857876849922783, 2.336549060362161, 2.6608653865747764, + 3.0617693989813355, 3.5400822720901965, 4.083322641612269, + 4.67481310139161, 5.2816530606854615, 5.871208367805736, + 6.408085104645083, 6.861842133049857, 7.217760202506552, + 7.470106968676498, 7.628458467025293, 7.708129214017713, + 7.7280772702702185, 7.706010812178291, 7.653914357700062, + 7.576935820796616, 7.475661784673403, 7.347044881396836, + 7.1901380444095535, 7.006547945280916, 6.80268236465033, + 6.590200323831235, 6.379766784983911, 6.182979359071357, + 6.004885527012833, 5.846843015291411, 5.705104946374174, + 5.5722531378588975, 5.442193818903743, 5.310288814376031, + 5.178394588033738, 5.051645763482318, 4.938447086904576, + 4.8471756042228265, 4.782818331222421, 4.74604164608859, + 4.731340863431263, 4.729152165532688, 4.728458210465266, 4.720207793504, + 4.700075486065988, 4.6696807140236025, 4.636486114680019, + 4.61107649312317, 4.604873812429838 + ], + "pressure:J18:branch9_seg1": [ + 109127.4494217586, 108889.6903200093, 108722.28762788839, + 108629.18622840745, 108618.57120918384, 108709.29012127787, + 108956.49784625195, 109411.87807857056, 110181.69867439276, + 111338.03860099753, 112970.21029199735, 115154.78137005342, + 117885.21009476107, 121221.13765679645, 125028.87200546963, + 129315.71034005159, 133917.67189586227, 138748.8021973306, + 143698.6349418131, 148545.42759463823, 153286.7717932987, + 157677.49418796186, 161706.59089123484, 165183.3588721421, + 168004.48299152535, 170119.55174546357, 171440.05255295953, + 171967.87644318177, 171718.43689550285, 170732.35679849944, + 169108.4141186564, 166960.9330350661, 164349.47623841057, + 161465.48869060783, 158280.05925894642, 154957.8744632568, + 151467.97200511617, 147894.40788493032, 144347.621552196, + 140790.9666452792, 137428.04915388988, 134217.38030222905, + 131342.93703845804, 128845.37404578678, 126740.52070477336, + 125073.02570517806, 123759.89442963866, 122785.8433404691, + 122062.42602515302, 121528.79262925622, 121139.31203378322, + 120872.55681701434, 120721.09185300078, 120713.26851436196, + 120851.37583018569, 121163.94772466614, 121630.60229019458, + 122211.91752897062, 122871.98396886123, 123513.15114456127, + 124102.81426384953, 124553.75864735339, 124848.47054552897, + 124976.36245338438, 124948.98106859803, 124803.43258182122, + 124569.91463969198, 124281.48453949927, 123957.28788884179, + 123599.90903909304, 123201.66435607304, 122754.50117777496, + 122244.59113570192, 121680.85469103826, 121065.29269682302, + 120426.91407742872, 119787.55583234277, 119165.10140612382, + 118578.48117795672, 118018.69990346539, 117485.42606434753, + 116956.2607017993, 116420.33537977785, 115868.33424990336, + 115301.94329311907, 114739.23364485247, 114192.19456935741, + 113686.41031270784, 113227.9941402792, 112822.46236903858, + 112458.5364541407, 112115.67824740107, 111771.92685378568, + 111408.02604809673, 111016.40115987214, 110601.32037658678, + 110179.2305241809, 109773.86732797416, 109408.31880333599, + 109127.4494217586 + ], + "flow:branch9_seg1:J19": [ + 4.606315894135713, 4.627974483947051, 4.683334494082081, + 4.774691893053761, 4.904686873393309, 5.077486957334676, + 5.306825353493955, 5.613981135732416, 6.032462010016754, + 6.603272298583498, 7.364638069126971, 8.359560020670168, 9.60609763278808, + 11.121757447560682, 12.88919084925395, 14.87334914106115, + 17.03303656402169, 19.295469117963464, 21.609471629887963, + 23.88698039421981, 26.066208108059072, 28.08006703989296, + 29.865987811755772, 31.375677238861062, 32.548403603850744, + 33.3502590657285, 33.74978038296747, 33.73358012984305, 33.30425326762801, + 32.48358468654596, 31.304168080363414, 29.824430032729605, + 28.09013929437542, 26.16977850591266, 24.1153018260945, + 21.970407711314763, 19.780478111816105, 17.564438750193485, + 15.370887753346457, 13.220801434931653, 11.159066131483163, + 9.223997457094404, 7.457128411536394, 5.911737691079033, + 4.610254866369304, 3.5775129801576386, 2.805606655245222, + 2.2784354698211406, 1.9649974131257746, 1.8235535577854942, + 1.8160167252089618, 1.9104173348467544, 2.0862692153867846, + 2.3362628435146338, 2.659765061034029, 3.059760048422511, + 3.537446009066351, 4.080090930576897, 4.671479595071421, + 5.278459328445069, 5.868549561118738, 6.406295083619416, + 6.860837042829496, 7.217662434753879, 7.47062286080131, 7.629510904667583, + 7.709528846952155, 7.72969334570513, 7.707794588135634, 7.655880532441979, + 7.579119510678183, 7.47814563212815, 7.3498361025469, 7.19320347437784, + 7.009822517823589, 6.805976617331571, 6.593488278929248, + 6.382877241666368, 6.185960075993916, 6.007714639069114, + 5.849574426109158, 5.707867919859275, 5.575051389607059, + 5.445117237006476, 5.313243486399253, 5.181306443019692, + 5.054413111942096, 4.940957252320649, 4.84942184043332, 4.78480840867835, + 4.747874319249175, 4.733129191008362, 4.731003946917078, + 4.730442427381624, 4.722332482102754, 4.7022899104675515, + 4.671865439277071, 4.638529672893415, 4.612852785492521, 4.606315894135713 + ], + "pressure:branch9_seg1:J19": [ + 108969.4997854167, 108709.65450201157, 108516.57742640805, + 108394.70183714834, 108351.77667893225, 108403.08880920763, + 108595.50178945676, 108975.70908259533, 109637.11091964041, + 110651.47032606661, 112100.86344055973, 114065.03420961405, + 116545.17358376992, 119598.85865195299, 123122.13424558657, + 127109.63454334668, 131426.03374749323, 135976.60608184108, + 140664.46235041635, 145290.35154321906, 149833.12410723214, + 154084.96447636, 158018.4378921012, 161472.48737525792, 164345.7898673006, + 166588.60398973385, 168118.67843214894, 168927.72733757133, + 169017.87606538934, 168417.75688721932, 167199.3002186053, + 165461.81141394042, 163253.22103029588, 160733.71317479468, + 157893.29179535754, 154867.85297011692, 151648.74206620635, + 148302.76328709608, 144934.40781578398, 141520.63528444088, + 138234.52616853305, 135059.26639072798, 132154.83348310462, + 129581.52335524914, 127364.64738252274, 125559.77327877503, + 124106.94428870468, 122996.17598963367, 122154.5575186517, + 121523.87604980174, 121057.57188191287, 120727.88018486719, + 120520.8215161293, 120455.42112374061, 120533.45771005913, + 120778.95213221025, 121179.36920116824, 121700.42910895718, + 122312.08406630313, 122927.72054167597, 123511.5233864396, + 123983.15949594043, 124315.57188705467, 124493.30423595192, + 124519.08445466842, 124422.7270011732, 124231.06685869515, + 123974.99810947252, 123675.25266364239, 123338.31459588278, + 122960.28629431846, 122535.56282776785, 122051.88558933801, + 121514.99878098872, 120925.94107299393, 120307.97001664957, + 119681.97407188211, 119064.84416432613, 118476.48595034616, + 117912.41192491082, 117373.81008766292, 116843.1156429229, + 116309.50266801573, 115763.87319612887, 115205.00404633115, + 114646.80470094769, 114099.89571881082, 113586.87346888542, + 113116.00282875293, 112694.37738919572, 112314.87083476085, + 111960.78915121731, 111612.40850216302, 111250.94959337945, + 110866.7829033811, 110460.72055117648, 110044.89734611128, + 109639.638248545, 109266.19300562171, 108969.4997854167 + ], + "flow:J19:branch9_seg2": [ + 4.606315894135713, 4.627974483947051, 4.683334494082081, + 4.774691893053761, 4.904686873393309, 5.077486957334676, + 5.306825353493955, 5.613981135732416, 6.032462010016754, + 6.603272298583498, 7.364638069126971, 8.359560020670168, 9.60609763278808, + 11.121757447560682, 12.88919084925395, 14.87334914106115, + 17.03303656402169, 19.295469117963464, 21.609471629887963, + 23.88698039421981, 26.066208108059072, 28.08006703989296, + 29.865987811755772, 31.375677238861062, 32.548403603850744, + 33.3502590657285, 33.74978038296747, 33.73358012984305, 33.30425326762801, + 32.48358468654596, 31.304168080363414, 29.824430032729605, + 28.09013929437542, 26.16977850591266, 24.1153018260945, + 21.970407711314763, 19.780478111816105, 17.564438750193485, + 15.370887753346457, 13.220801434931653, 11.159066131483163, + 9.223997457094404, 7.457128411536394, 5.911737691079033, + 4.610254866369304, 3.5775129801576386, 2.805606655245222, + 2.2784354698211406, 1.9649974131257746, 1.8235535577854942, + 1.8160167252089618, 1.9104173348467544, 2.0862692153867846, + 2.3362628435146338, 2.659765061034029, 3.059760048422511, + 3.537446009066351, 4.080090930576897, 4.671479595071421, + 5.278459328445069, 5.868549561118738, 6.406295083619416, + 6.860837042829496, 7.217662434753879, 7.47062286080131, 7.629510904667583, + 7.709528846952155, 7.72969334570513, 7.707794588135634, 7.655880532441979, + 7.579119510678183, 7.47814563212815, 7.3498361025469, 7.19320347437784, + 7.009822517823589, 6.805976617331571, 6.593488278929248, + 6.382877241666368, 6.185960075993916, 6.007714639069114, + 5.849574426109158, 5.707867919859275, 5.575051389607059, + 5.445117237006476, 5.313243486399253, 5.181306443019692, + 5.054413111942096, 4.940957252320649, 4.84942184043332, 4.78480840867835, + 4.747874319249175, 4.733129191008362, 4.731003946917078, + 4.730442427381624, 4.722332482102754, 4.7022899104675515, + 4.671865439277071, 4.638529672893415, 4.612852785492521, 4.606315894135713 + ], + "pressure:J19:branch9_seg2": [ + 108969.4997854167, 108709.65450201157, 108516.57742640805, + 108394.70183714834, 108351.77667893225, 108403.08880920763, + 108595.50178945676, 108975.70908259533, 109637.11091964041, + 110651.47032606661, 112100.86344055973, 114065.03420961405, + 116545.17358376992, 119598.85865195299, 123122.13424558657, + 127109.63454334668, 131426.03374749323, 135976.60608184108, + 140664.46235041635, 145290.35154321906, 149833.12410723214, + 154084.96447636, 158018.4378921012, 161472.48737525792, 164345.7898673006, + 166588.60398973385, 168118.67843214894, 168927.72733757133, + 169017.87606538934, 168417.75688721932, 167199.3002186053, + 165461.81141394042, 163253.22103029588, 160733.71317479468, + 157893.29179535754, 154867.85297011692, 151648.74206620635, + 148302.76328709608, 144934.40781578398, 141520.63528444088, + 138234.52616853305, 135059.26639072798, 132154.83348310462, + 129581.52335524914, 127364.64738252274, 125559.77327877503, + 124106.94428870468, 122996.17598963367, 122154.5575186517, + 121523.87604980174, 121057.57188191287, 120727.88018486719, + 120520.8215161293, 120455.42112374061, 120533.45771005913, + 120778.95213221025, 121179.36920116824, 121700.42910895718, + 122312.08406630313, 122927.72054167597, 123511.5233864396, + 123983.15949594043, 124315.57188705467, 124493.30423595192, + 124519.08445466842, 124422.7270011732, 124231.06685869515, + 123974.99810947252, 123675.25266364239, 123338.31459588278, + 122960.28629431846, 122535.56282776785, 122051.88558933801, + 121514.99878098872, 120925.94107299393, 120307.97001664957, + 119681.97407188211, 119064.84416432613, 118476.48595034616, + 117912.41192491082, 117373.81008766292, 116843.1156429229, + 116309.50266801573, 115763.87319612887, 115205.00404633115, + 114646.80470094769, 114099.89571881082, 113586.87346888542, + 113116.00282875293, 112694.37738919572, 112314.87083476085, + 111960.78915121731, 111612.40850216302, 111250.94959337945, + 110866.7829033811, 110460.72055117648, 110044.89734611128, + 109639.638248545, 109266.19300562171, 108969.4997854167 + ], + "flow:branch10_seg0:J20": [ + 0.903248200744412, 0.9099903551859151, 0.9237648021621971, + 0.9444748347484979, 0.9728664105714281, 1.0097478270410336, + 1.0583465495184954, 1.1245500107162238, 1.2143500103889493, + 1.3389920579237036, 1.5032699885171004, 1.7180373078313453, + 1.9849579691138401, 2.3050787932812087, 2.6786448028831633, + 3.087743199250869, 3.536108037317087, 3.9962491958239377, + 4.467517967505677, 4.928604360246408, 5.361764542044315, + 5.766280575370258, 6.114077142926079, 6.409688510324967, + 6.630046911021636, 6.77252574114858, 6.832463800310647, 6.804332795873051, + 6.692507903522391, 6.50246141494758, 6.239962623740139, 5.921693543483123, + 5.555023296702126, 5.153031396198836, 4.733277962667043, + 4.291801924772981, 3.8511624342983897, 3.401636240230895, + 2.9611887354415796, 2.534287935594724, 2.1221337060885475, + 1.745864129758382, 1.3989337203378975, 1.1053744825312222, + 0.8597664975185502, 0.6678843508836264, 0.5287474157024212, + 0.43287262502990276, 0.3789907314114104, 0.35363842179657545, + 0.35262503991636784, 0.36973441830080583, 0.4025530264093177, + 0.4507102915998307, 0.5156135835957748, 0.5965002766439444, + 0.6953429842060966, 0.8065676958231263, 0.9268644376953057, + 1.0494230448746606, 1.1649311756558642, 1.2699707191818688, + 1.3547407781234455, 1.4209108649096003, 1.466252980700149, + 1.4941782021185768, 1.5085368676877593, 1.5121884333415572, + 1.5091677925463567, 1.5006817323193316, 1.4870821106653778, + 1.4680082594304833, 1.4427016408200126, 1.4107611246041845, + 1.373675483158536, 1.332140076227635, 1.2901647053443448, + 1.2490616885796901, 1.2113796135747907, 1.1779880730295078, + 1.1478625250054175, 1.1210513407307192, 1.0945537790741264, + 1.0682738661098088, 1.0409600898039448, 1.0136770359888267, + 0.9883093719553998, 0.9659528725283202, 0.949280554052688, + 0.9380534712463254, 0.9325801083463516, 0.9309834282679134, + 0.9309221252002121, 0.9302770329034464, 0.9273110503504954, + 0.9217588702308527, 0.9144138497749568, 0.9073485163392783, + 0.9028809877469505, 0.903248200744412 + ], + "pressure:branch10_seg0:J20": [ + 108957.36198295892, 108671.39330211948, 108449.50229430068, + 108292.14898043155, 108209.66456688031, 108210.58094881212, + 108329.4713888533, 108621.03378479413, 109143.04887233049, + 110003.72893686849, 111245.23524190187, 112986.61862811825, + 115237.49635089713, 118040.43359208391, 121400.69098518702, + 125174.95204371995, 129438.16589333126, 133914.6142601028, + 138665.35487090432, 143448.06093133587, 148141.8636574658, + 152725.68743924185, 156917.8616736152, 160777.77216414167, + 164035.9652706673, 166684.0472759657, 168631.44795070845, + 169815.33937331496, 170249.17192045954, 169961.75342613782, + 168976.1188418365, 167439.58383355392, 165376.05853513425, + 162913.06171942872, 160183.01289471445, 157129.49203870873, + 153978.95854875285, 150593.55464872156, 147185.73384819375, + 143749.89577158453, 140324.84073677895, 137096.91496724327, + 133996.4796821285, 131273.42672349061, 128845.33408080395, + 126813.03816235904, 125150.00188454022, 123804.54878765799, + 122776.65127378626, 121956.8122102091, 121334.44932241608, + 120857.69041753229, 120521.66554996795, 120328.13863277985, + 120296.1368382506, 120422.1043895, 120731.66699246579, 121171.8826316371, + 121727.67322787312, 122332.98590304646, 122915.44040348046, + 123444.7235861213, 123829.77165446221, 124093.67036561685, + 124199.98985251345, 124184.46901343779, 124067.1443031332, + 123870.5241489892, 123624.48872743509, 123333.49035329818, + 122998.24224127647, 122613.26124400023, 122169.67181644977, + 121663.66341780759, 121107.1422552422, 120503.7641230118, + 119890.35744370676, 119272.36447035878, 118676.18941898992, + 118104.50087238333, 117551.17991783777, 117017.11221667274, + 116474.9176453466, 115929.08119831691, 115365.55226347808, + 114798.4411314447, 114242.19952246605, 113706.92723716474, + 113217.37415787656, 112769.33321818516, 112368.74254432338, + 111998.13358178061, 111639.64617061593, 111275.89676420219, + 110893.02146469215, 110489.81820723467, 110073.25301295363, + 109661.78279471459, 109274.60562204986, 108957.36198295892 + ], + "flow:J20:branch10_seg1": [ + 0.903248200744412, 0.9099903551859151, 0.9237648021621971, + 0.9444748347484979, 0.9728664105714281, 1.0097478270410336, + 1.0583465495184954, 1.1245500107162238, 1.2143500103889493, + 1.3389920579237036, 1.5032699885171004, 1.7180373078313453, + 1.9849579691138401, 2.3050787932812087, 2.6786448028831633, + 3.087743199250869, 3.536108037317087, 3.9962491958239377, + 4.467517967505677, 4.928604360246408, 5.361764542044315, + 5.766280575370258, 6.114077142926079, 6.409688510324967, + 6.630046911021636, 6.77252574114858, 6.832463800310647, 6.804332795873051, + 6.692507903522391, 6.50246141494758, 6.239962623740139, 5.921693543483123, + 5.555023296702126, 5.153031396198836, 4.733277962667043, + 4.291801924772981, 3.8511624342983897, 3.401636240230895, + 2.9611887354415796, 2.534287935594724, 2.1221337060885475, + 1.745864129758382, 1.3989337203378975, 1.1053744825312222, + 0.8597664975185502, 0.6678843508836264, 0.5287474157024212, + 0.43287262502990276, 0.3789907314114104, 0.35363842179657545, + 0.35262503991636784, 0.36973441830080583, 0.4025530264093177, + 0.4507102915998307, 0.5156135835957748, 0.5965002766439444, + 0.6953429842060966, 0.8065676958231263, 0.9268644376953057, + 1.0494230448746606, 1.1649311756558642, 1.2699707191818688, + 1.3547407781234455, 1.4209108649096003, 1.466252980700149, + 1.4941782021185768, 1.5085368676877593, 1.5121884333415572, + 1.5091677925463567, 1.5006817323193316, 1.4870821106653778, + 1.4680082594304833, 1.4427016408200126, 1.4107611246041845, + 1.373675483158536, 1.332140076227635, 1.2901647053443448, + 1.2490616885796901, 1.2113796135747907, 1.1779880730295078, + 1.1478625250054175, 1.1210513407307192, 1.0945537790741264, + 1.0682738661098088, 1.0409600898039448, 1.0136770359888267, + 0.9883093719553998, 0.9659528725283202, 0.949280554052688, + 0.9380534712463254, 0.9325801083463516, 0.9309834282679134, + 0.9309221252002121, 0.9302770329034464, 0.9273110503504954, + 0.9217588702308527, 0.9144138497749568, 0.9073485163392783, + 0.9028809877469505, 0.903248200744412 + ], + "pressure:J20:branch10_seg1": [ + 108957.36198295892, 108671.39330211948, 108449.50229430068, + 108292.14898043155, 108209.66456688031, 108210.58094881212, + 108329.4713888533, 108621.03378479413, 109143.04887233049, + 110003.72893686849, 111245.23524190187, 112986.61862811825, + 115237.49635089713, 118040.43359208391, 121400.69098518702, + 125174.95204371995, 129438.16589333126, 133914.6142601028, + 138665.35487090432, 143448.06093133587, 148141.8636574658, + 152725.68743924185, 156917.8616736152, 160777.77216414167, + 164035.9652706673, 166684.0472759657, 168631.44795070845, + 169815.33937331496, 170249.17192045954, 169961.75342613782, + 168976.1188418365, 167439.58383355392, 165376.05853513425, + 162913.06171942872, 160183.01289471445, 157129.49203870873, + 153978.95854875285, 150593.55464872156, 147185.73384819375, + 143749.89577158453, 140324.84073677895, 137096.91496724327, + 133996.4796821285, 131273.42672349061, 128845.33408080395, + 126813.03816235904, 125150.00188454022, 123804.54878765799, + 122776.65127378626, 121956.8122102091, 121334.44932241608, + 120857.69041753229, 120521.66554996795, 120328.13863277985, + 120296.1368382506, 120422.1043895, 120731.66699246579, 121171.8826316371, + 121727.67322787312, 122332.98590304646, 122915.44040348046, + 123444.7235861213, 123829.77165446221, 124093.67036561685, + 124199.98985251345, 124184.46901343779, 124067.1443031332, + 123870.5241489892, 123624.48872743509, 123333.49035329818, + 122998.24224127647, 122613.26124400023, 122169.67181644977, + 121663.66341780759, 121107.1422552422, 120503.7641230118, + 119890.35744370676, 119272.36447035878, 118676.18941898992, + 118104.50087238333, 117551.17991783777, 117017.11221667274, + 116474.9176453466, 115929.08119831691, 115365.55226347808, + 114798.4411314447, 114242.19952246605, 113706.92723716474, + 113217.37415787656, 112769.33321818516, 112368.74254432338, + 111998.13358178061, 111639.64617061593, 111275.89676420219, + 110893.02146469215, 110489.81820723467, 110073.25301295363, + 109661.78279471459, 109274.60562204986, 108957.36198295892 + ], + "flow:branch10_seg1:J21": [ + 0.9035149210583133, 0.9102061642131055, 0.9239262423414771, + 0.944580394749919, 0.9729050814606666, 1.009711049292652, + 1.058183703826256, 1.1242307123436088, 1.2137877266204495, + 1.3381285303772499, 1.5020590045871425, 1.716370020446257, + 1.9829023964003538, 2.302504662346824, 2.675709689926596, + 3.084432423402809, 3.5324903827178606, 3.9924983137388903, + 4.463571646423489, 4.92476911507751, 5.357930488363428, 5.762713635561687, + 6.110770155616143, 6.4067646187129865, 6.627641271979806, + 6.770597185444774, 6.83116022553958, 6.803612955412197, 6.692398767694352, + 6.502916974494015, 6.240947178453947, 5.9230761419009825, + 5.55684275066231, 5.15507916036912, 4.735619869373683, 4.294306924799498, + 3.8538032769284927, 3.404435695943311, 2.9639493832516752, + 2.5371656046141684, 2.1248513691118873, 1.7485232570141576, + 1.4013626491666114, 1.1074952152699837, 0.8616629025239411, + 0.6693914473115853, 0.5300292228430641, 0.43385068006804123, + 0.379758669408769, 0.3542431450854181, 0.3530810893395849, + 0.370080019911724, 0.40278333891592416, 0.45080834195129926, + 0.5155825937443461, 0.5963216314293561, 0.6950256693753092, + 0.8061629367681258, 0.9263635966991063, 1.0489401143819796, + 1.1644543886211016, 1.2695929692126682, 1.354479073076141, + 1.4207554344331608, 1.4662309525040325, 1.4942348070279532, + 1.5086760510707076, 1.5123766296467351, 1.5093940790531024, + 1.500943887335604, 1.487383754198831, 1.4683519578358413, + 1.443101034920302, 1.4112041217900533, 1.374164280647228, + 1.3326527123310976, 1.2906780994681555, 1.2495758463477005, + 1.2118627272912528, 1.1784626108810377, 1.1483147341221065, + 1.1215003630665707, 1.0950105583795628, 1.0687363822127351, + 1.041438378016758, 1.0141479591141451, 0.9887719652946709, + 0.9663836033225565, 0.9496753452836102, 0.9384093649274181, + 0.9329016760877934, 0.9312889020958897, 0.9312238250527423, + 0.9305909575980752, 0.9276424631626358, 0.9221055088323864, + 0.9147656600252028, 0.9076868972574428, 0.9031918051125357, + 0.9035149210583133 + ], + "pressure:branch10_seg1:J21": [ + 108880.25137338044, 108589.18767207146, 108361.20800173622, + 108197.02235749482, 108106.04477906911, 108096.86024434204, + 108200.36253653002, 108471.35033751061, 108963.06630399916, + 109782.72632653159, 110973.40057195006, 112645.8417378161, + 114821.14483279016, 117526.02963303811, 120781.66931081773, + 124437.44746016065, 128565.38081934337, 132908.40279243348, + 137504.48611103618, 142147.4433770977, 146694.29162494224, + 151148.12421169176, 155229.207991635, 158999.24821807217, + 162209.98890539503, 164840.01591342204, 166816.5838607183, + 168067.8127501427, 168607.19932499062, 168454.78727896986, + 167629.04622713418, 166258.57654000283, 164374.6331800296, + 162079.07565630143, 159513.5897488893, 156613.05677302845, + 153596.62141483114, 150340.01348043198, 147029.21099384537, + 143685.98253648105, 140321.54723263267, 137140.97403049795, + 134066.48214892432, 131345.8519251803, 128918.08119115276, + 126865.98567006724, 125188.6087343146, 123821.72579413635, + 122775.66214940892, 121941.68480464064, 121305.213654748, + 120817.09635424773, 120468.72000555138, 120260.77207133644, + 120212.92881215912, 120320.59821923556, 120610.17001136379, + 121033.37032079237, 121570.53124115121, 122164.96649767291, + 122737.42423602306, 123263.67778399818, 123650.58565547875, + 123916.9730004191, 124030.52037656898, 124019.89686156712, + 123908.75824400377, 123716.9096047887, 123475.0307714018, + 123188.59508585402, 122858.7396266682, 122480.0985773704, + 122044.64356497083, 121546.8237129451, 120998.87171333712, + 120402.96384988363, 119794.61112183034, 119181.29227433943, + 118586.69443177765, 118017.39712436334, 117465.3766535443, + 116933.45244141122, 116394.67453379123, 115851.99049356306, + 115292.62227949113, 114727.81656586693, 114173.2432319545, + 113637.56704998174, 113146.22585521043, 112695.80608073047, + 112292.48781973748, 111920.41528696589, 111561.5739361593, + 111198.97711763746, 110818.13537262421, 110417.06988017756, + 110001.96907241004, 109590.28926937393, 109201.28546368812, + 108880.25137338044 + ], + "flow:J21:branch10_seg2": [ + 0.9035149210583133, 0.9102061642131055, 0.9239262423414771, + 0.944580394749919, 0.9729050814606666, 1.009711049292652, + 1.058183703826256, 1.1242307123436088, 1.2137877266204495, + 1.3381285303772499, 1.5020590045871425, 1.716370020446257, + 1.9829023964003538, 2.302504662346824, 2.675709689926596, + 3.084432423402809, 3.5324903827178606, 3.9924983137388903, + 4.463571646423489, 4.92476911507751, 5.357930488363428, 5.762713635561687, + 6.110770155616143, 6.4067646187129865, 6.627641271979806, + 6.770597185444774, 6.83116022553958, 6.803612955412197, 6.692398767694352, + 6.502916974494015, 6.240947178453947, 5.9230761419009825, + 5.55684275066231, 5.15507916036912, 4.735619869373683, 4.294306924799498, + 3.8538032769284927, 3.404435695943311, 2.9639493832516752, + 2.5371656046141684, 2.1248513691118873, 1.7485232570141576, + 1.4013626491666114, 1.1074952152699837, 0.8616629025239411, + 0.6693914473115853, 0.5300292228430641, 0.43385068006804123, + 0.379758669408769, 0.3542431450854181, 0.3530810893395849, + 0.370080019911724, 0.40278333891592416, 0.45080834195129926, + 0.5155825937443461, 0.5963216314293561, 0.6950256693753092, + 0.8061629367681258, 0.9263635966991063, 1.0489401143819796, + 1.1644543886211016, 1.2695929692126682, 1.354479073076141, + 1.4207554344331608, 1.4662309525040325, 1.4942348070279532, + 1.5086760510707076, 1.5123766296467351, 1.5093940790531024, + 1.500943887335604, 1.487383754198831, 1.4683519578358413, + 1.443101034920302, 1.4112041217900533, 1.374164280647228, + 1.3326527123310976, 1.2906780994681555, 1.2495758463477005, + 1.2118627272912528, 1.1784626108810377, 1.1483147341221065, + 1.1215003630665707, 1.0950105583795628, 1.0687363822127351, + 1.041438378016758, 1.0141479591141451, 0.9887719652946709, + 0.9663836033225565, 0.9496753452836102, 0.9384093649274181, + 0.9329016760877934, 0.9312889020958897, 0.9312238250527423, + 0.9305909575980752, 0.9276424631626358, 0.9221055088323864, + 0.9147656600252028, 0.9076868972574428, 0.9031918051125357, + 0.9035149210583133 + ], + "pressure:J21:branch10_seg2": [ + 108880.25137338044, 108589.18767207146, 108361.20800173622, + 108197.02235749482, 108106.04477906911, 108096.86024434204, + 108200.36253653002, 108471.35033751061, 108963.06630399916, + 109782.72632653159, 110973.40057195006, 112645.8417378161, + 114821.14483279016, 117526.02963303811, 120781.66931081773, + 124437.44746016065, 128565.38081934337, 132908.40279243348, + 137504.48611103618, 142147.4433770977, 146694.29162494224, + 151148.12421169176, 155229.207991635, 158999.24821807217, + 162209.98890539503, 164840.01591342204, 166816.5838607183, + 168067.8127501427, 168607.19932499062, 168454.78727896986, + 167629.04622713418, 166258.57654000283, 164374.6331800296, + 162079.07565630143, 159513.5897488893, 156613.05677302845, + 153596.62141483114, 150340.01348043198, 147029.21099384537, + 143685.98253648105, 140321.54723263267, 137140.97403049795, + 134066.48214892432, 131345.8519251803, 128918.08119115276, + 126865.98567006724, 125188.6087343146, 123821.72579413635, + 122775.66214940892, 121941.68480464064, 121305.213654748, + 120817.09635424773, 120468.72000555138, 120260.77207133644, + 120212.92881215912, 120320.59821923556, 120610.17001136379, + 121033.37032079237, 121570.53124115121, 122164.96649767291, + 122737.42423602306, 123263.67778399818, 123650.58565547875, + 123916.9730004191, 124030.52037656898, 124019.89686156712, + 123908.75824400377, 123716.9096047887, 123475.0307714018, + 123188.59508585402, 122858.7396266682, 122480.0985773704, + 122044.64356497083, 121546.8237129451, 120998.87171333712, + 120402.96384988363, 119794.61112183034, 119181.29227433943, + 118586.69443177765, 118017.39712436334, 117465.3766535443, + 116933.45244141122, 116394.67453379123, 115851.99049356306, + 115292.62227949113, 114727.81656586693, 114173.2432319545, + 113637.56704998174, 113146.22585521043, 112695.80608073047, + 112292.48781973748, 111920.41528696589, 111561.5739361593, + 111198.97711763746, 110818.13537262421, 110417.06988017756, + 110001.96907241004, 109590.28926937393, 109201.28546368812, + 108880.25137338044 + ], + "flow:branch12_seg0:J22": [ + 0.8981127469898067, 0.9026917509117474, 0.9138915889576742, + 0.9318510301010027, 0.9571304793156332, 0.9906041838564651, + 1.0344008513981973, 1.0941990975884819, 1.174844934775224, + 1.286845588159184, 1.4361127615778735, 1.6310341146011391, + 1.8779384107447505, 2.174470827764161, 2.526042538144838, + 2.9153866618072994, 3.3437307553953906, 3.7916975495971763, + 4.249408752097733, 4.706846832179601, 5.138059469888539, + 5.5470755524899875, 5.905453665489611, 6.21449042419292, + 6.457443710165559, 6.624253476946737, 6.715777129531955, + 6.721732938702222, 6.646434882961819, 6.49340770599875, 6.267764580103022, + 5.982062681615124, 5.647311841826892, 5.269954073432456, + 4.871411181345816, 4.447114776605055, 4.017079482096775, + 3.578339272113476, 3.139525000451891, 2.7146732250992494, + 2.296766917069404, 1.9113534913822454, 1.5519588806572808, + 1.2382955494784518, 0.9742758910688725, 0.7581538697785282, + 0.5976606298832758, 0.4809352435374929, 0.4084279484579379, + 0.3692683237642307, 0.35622435590544876, 0.3647707367008234, + 0.3903617002718119, 0.43202631969665745, 0.49084994621402755, + 0.5655568500950563, 0.6579715545874564, 0.7643957857786708, + 0.8801933600678047, 1.0015839260709105, 1.1176928522794887, + 1.2259654018594994, 1.3167617546178012, 1.388923780951145, + 1.4418827032164294, 1.4760364153529204, 1.4961180440222475, + 1.5042029697841883, 1.5042302476433904, 1.4982217359579415, + 1.486659873701821, 1.4696064663315942, 1.44661176684156, + 1.4168874687664874, 1.3818982514386156, 1.3420269019014448, + 1.3005751552776448, 1.259643495983294, 1.2208343337187042, + 1.1862940222295744, 1.1547488987675072, 1.1266962022518805, + 1.099771432058226, 1.0731203260598112, 1.0460754031738304, + 1.0186123601350265, 0.9928104661998268, 0.9693960459065077, + 0.9509625476514831, 0.9378172802638525, 0.9302095211939209, + 0.927062958367397, 0.926053802007896, 0.9252757816081604, + 0.9228397386018081, 0.9180643197640144, 0.9113983407669172, + 0.9043903097680978, 0.8992664305601595, 0.8981127469898067 + ], + "pressure:branch12_seg0:J22": [ + 108854.89322383744, 108553.80766649329, 108313.22757061508, + 108135.06380914159, 108028.55893228043, 108002.2522859831, + 108082.21607026941, 108322.39424076823, 108769.73249909989, + 109528.26280520174, 110644.34562289034, 112217.77357063376, + 114289.28452612458, 116871.56613280466, 120009.94021010847, + 123555.52929368537, 127576.44517220613, 131841.34939583848, + 136356.02202559565, 140964.19179699072, 145481.40078489194, + 149950.0507082594, 154066.00251298613, 157891.59725463676, + 161200.8635316709, 163939.50902100382, 166070.62572744585, + 167489.49517191818, 168213.92504117425, 168252.21272929228, + 167617.52315193354, 166425.43141515585, 164716.8972252787, + 162562.09989748654, 160122.44818793386, 157316.27091547783, + 154371.07691724238, 151178.16371226715, 147888.6218339785, + 144568.5491098219, 141178.16030130337, 137959.0265040811, + 134823.90719631416, 132005.87898935823, 129486.82953902494, + 127310.14235491447, 125519.76942993396, 124040.11665115673, + 122893.93046790951, 121985.03246681133, 121284.22384870783, + 120751.4696716887, 120364.58838028413, 120125.00226492243, + 120048.47096459215, 120127.40025651017, 120387.04322443472, + 120785.95873389303, 121299.68548747656, 121886.44187068028, + 122460.49626180202, 123002.08928629354, 123418.67250344831, + 123716.00391254245, 123869.0983345496, 123892.3186872239, + 123814.03645913285, 123647.8791147935, 123424.5532452879, + 123152.5382108581, 122833.82501960962, 122466.63560100745, + 122043.69521847123, 121558.0977527704, 121022.05320885986, + 120435.97641378832, 119832.47961764305, 119221.96351903203, + 118623.65102328004, 118049.63083367792, 117490.80454744422, + 116952.71197145712, 116411.35665082245, 115867.12075870685, + 115309.62193608326, 114744.70436788621, 114189.3876803905, + 113649.44212793055, 113150.5888748892, 112691.38447595967, + 112277.47512591531, 111897.53670270994, 111533.07058159605, + 111169.17408923904, 110790.73202561877, 110393.93157240396, + 109983.2155696201, 109573.16507811304, 109182.24654539421, + 108854.89322383744 + ], + "flow:J22:branch12_seg1": [ + 0.8981127469898067, 0.9026917509117474, 0.9138915889576742, + 0.9318510301010027, 0.9571304793156332, 0.9906041838564651, + 1.0344008513981973, 1.0941990975884819, 1.174844934775224, + 1.286845588159184, 1.4361127615778735, 1.6310341146011391, + 1.8779384107447505, 2.174470827764161, 2.526042538144838, + 2.9153866618072994, 3.3437307553953906, 3.7916975495971763, + 4.249408752097733, 4.706846832179601, 5.138059469888539, + 5.5470755524899875, 5.905453665489611, 6.21449042419292, + 6.457443710165559, 6.624253476946737, 6.715777129531955, + 6.721732938702222, 6.646434882961819, 6.49340770599875, 6.267764580103022, + 5.982062681615124, 5.647311841826892, 5.269954073432456, + 4.871411181345816, 4.447114776605055, 4.017079482096775, + 3.578339272113476, 3.139525000451891, 2.7146732250992494, + 2.296766917069404, 1.9113534913822454, 1.5519588806572808, + 1.2382955494784518, 0.9742758910688725, 0.7581538697785282, + 0.5976606298832758, 0.4809352435374929, 0.4084279484579379, + 0.3692683237642307, 0.35622435590544876, 0.3647707367008234, + 0.3903617002718119, 0.43202631969665745, 0.49084994621402755, + 0.5655568500950563, 0.6579715545874564, 0.7643957857786708, + 0.8801933600678047, 1.0015839260709105, 1.1176928522794887, + 1.2259654018594994, 1.3167617546178012, 1.388923780951145, + 1.4418827032164294, 1.4760364153529204, 1.4961180440222475, + 1.5042029697841883, 1.5042302476433904, 1.4982217359579415, + 1.486659873701821, 1.4696064663315942, 1.44661176684156, + 1.4168874687664874, 1.3818982514386156, 1.3420269019014448, + 1.3005751552776448, 1.259643495983294, 1.2208343337187042, + 1.1862940222295744, 1.1547488987675072, 1.1266962022518805, + 1.099771432058226, 1.0731203260598112, 1.0460754031738304, + 1.0186123601350265, 0.9928104661998268, 0.9693960459065077, + 0.9509625476514831, 0.9378172802638525, 0.9302095211939209, + 0.927062958367397, 0.926053802007896, 0.9252757816081604, + 0.9228397386018081, 0.9180643197640144, 0.9113983407669172, + 0.9043903097680978, 0.8992664305601595, 0.8981127469898067 + ], + "pressure:J22:branch12_seg1": [ + 108854.89322383744, 108553.80766649329, 108313.22757061508, + 108135.06380914159, 108028.55893228043, 108002.2522859831, + 108082.21607026941, 108322.39424076823, 108769.73249909989, + 109528.26280520174, 110644.34562289034, 112217.77357063376, + 114289.28452612458, 116871.56613280466, 120009.94021010847, + 123555.52929368537, 127576.44517220613, 131841.34939583848, + 136356.02202559565, 140964.19179699072, 145481.40078489194, + 149950.0507082594, 154066.00251298613, 157891.59725463676, + 161200.8635316709, 163939.50902100382, 166070.62572744585, + 167489.49517191818, 168213.92504117425, 168252.21272929228, + 167617.52315193354, 166425.43141515585, 164716.8972252787, + 162562.09989748654, 160122.44818793386, 157316.27091547783, + 154371.07691724238, 151178.16371226715, 147888.6218339785, + 144568.5491098219, 141178.16030130337, 137959.0265040811, + 134823.90719631416, 132005.87898935823, 129486.82953902494, + 127310.14235491447, 125519.76942993396, 124040.11665115673, + 122893.93046790951, 121985.03246681133, 121284.22384870783, + 120751.4696716887, 120364.58838028413, 120125.00226492243, + 120048.47096459215, 120127.40025651017, 120387.04322443472, + 120785.95873389303, 121299.68548747656, 121886.44187068028, + 122460.49626180202, 123002.08928629354, 123418.67250344831, + 123716.00391254245, 123869.0983345496, 123892.3186872239, + 123814.03645913285, 123647.8791147935, 123424.5532452879, + 123152.5382108581, 122833.82501960962, 122466.63560100745, + 122043.69521847123, 121558.0977527704, 121022.05320885986, + 120435.97641378832, 119832.47961764305, 119221.96351903203, + 118623.65102328004, 118049.63083367792, 117490.80454744422, + 116952.71197145712, 116411.35665082245, 115867.12075870685, + 115309.62193608326, 114744.70436788621, 114189.3876803905, + 113649.44212793055, 113150.5888748892, 112691.38447595967, + 112277.47512591531, 111897.53670270994, 111533.07058159605, + 111169.17408923904, 110790.73202561877, 110393.93157240396, + 109983.2155696201, 109573.16507811304, 109182.24654539421, + 108854.89322383744 + ], + "flow:branch12_seg1:J23": [ + 0.9000483397522083, 0.9042969685479215, 0.9151332220933859, + 0.932723144620156, 0.9575518655782521, 0.9905281174151402, + 1.0335315634178173, 1.0923175496930504, 1.1714610218545083, + 1.2814827351708327, 1.4285246552099968, 1.6203857846133587, + 1.864664648742291, 2.157763558440598, 2.5066841333216274, + 2.893676623548901, 3.3194875737218164, 3.766560557134704, + 4.22264768722302, 4.68056876375272, 5.1119902497540215, 5.522301736453654, + 5.882510709418027, 6.193623380401033, 6.439965057427088, + 6.609881034396274, 6.705522279109908, 6.715373244285901, + 6.644087287928896, 6.494829171207472, 6.272961698469083, + 5.990086825066687, 5.658526669830125, 5.282992020629117, + 4.886313237399504, 4.463645721389215, 4.034487661481034, + 3.5972693766236574, 3.1583932169389715, 2.7343020553722157, + 2.315691945643988, 1.9298021372368388, 1.5693427252853878, + 1.2536150695291575, 0.9882429477244814, 0.7694473344322206, + 0.6072216429124426, 0.48849188618669426, 0.414323606089269, + 0.37404748313316216, 0.3598098045602827, 0.3674712380378194, + 0.3922219347661721, 0.4329722113674635, 0.4909228664751239, + 0.5646506743162223, 0.6560480130319539, 0.761813727667664, + 0.8768881329939033, 0.9982802165917071, 1.1144155241573581, + 1.2231955496739177, 1.31477953733368, 1.387563544894846, + 1.4414597547097994, 1.4762173814223933, 1.4968922888891363, + 1.5053902892279007, 1.5056768200110486, 1.4999378591377968, + 1.48866141910257, 1.471903603116908, 1.4492816984274886, + 1.419863325360649, 1.3851788003935477, 1.3455201807245203, + 1.3041004564306578, 1.263222302041064, 1.2242269201308893, + 1.1896148588033542, 1.1579340921317616, 1.1298158120739317, + 1.102959478416134, 1.0763238395970611, 1.049383109780592, + 1.021889117238723, 0.9960272249905868, 0.9724444832750447, + 0.9537695083306987, 0.9403790446977229, 0.9325240561237754, + 0.9292376562411415, 0.9281730348615289, 0.9274460818119223, + 0.9251195428494666, 0.9204448444777258, 0.9138292277299406, + 0.9067534256114864, 0.9014732999050978, 0.9000483397522083 + ], + "pressure:branch12_seg1:J23": [ + 108739.36246053912, 108425.13020385618, 108169.27265372798, + 107975.27102254315, 107849.40023421953, 107801.5058565008, + 107849.98156009776, 108045.90828694082, 108432.42486136683, + 109103.6860293708, 110120.30084881994, 111559.44487858842, + 113497.81499194584, 115922.81051627066, 118907.52602442905, + 122321.71965510078, 126184.51862052412, 130359.91257101504, + 134754.53963395164, 139308.71512279965, 143787.89891401422, + 148227.52049357994, 152377.70562352228, 156231.34125235004, + 159639.64964859388, 162485.4924781847, 164760.59547517414, + 166344.91833467773, 167249.07308179984, 167472.8899150776, + 167035.38741753102, 166010.31309299826, 164479.52564157508, + 162467.72592739004, 160150.53267114406, 157480.7186404884, + 154614.1958808621, 151534.51992134738, 148295.35218256095, + 145032.0924846867, 141673.86641169674, 138450.0559564875, + 135310.6791699166, 132426.73776613237, 129858.5208374793, + 127593.05542872798, 125728.1015510939, 124174.27823946891, + 122955.11194617786, 121996.30115423868, 121244.44158319653, + 120673.49139518506, 120250.94298960568, 119973.4354677018, + 119856.13219782307, 119892.69999186018, 120104.00506457106, + 120467.80856927365, 120946.88180886047, 121518.78844308793, + 122089.35960529956, 122639.23056257667, 123083.78844733504, + 123404.42430180953, 123593.6574553287, 123643.52568971724, + 123589.46783133004, 123442.63786214183, 123231.96455480318, + 122972.72050358538, 122666.96170365089, 122313.32250189177, + 121906.7874340642, 121437.77345770739, 120916.84734138829, + 120344.74126490929, 119746.74157779878, 119141.27603415625, + 118539.8973269094, 117963.87007789692, 117402.65625851772, + 116862.51952230895, 116325.43287453512, 115783.40095281582, + 115232.04375078839, 114669.41945697226, 114113.52523040437, + 113570.30165707512, 113062.44138632574, 112594.56852274544, + 112170.56989915356, 111784.12844538524, 111417.24462267618, + 111055.00047986406, 110681.425450876, 110289.83501304738, + 109882.87530475734, 109472.26825141186, 109076.59564050322, + 108739.36246053912 + ], + "flow:J23:branch12_seg2": [ + 0.9000483397522083, 0.9042969685479215, 0.9151332220933859, + 0.932723144620156, 0.9575518655782521, 0.9905281174151402, + 1.0335315634178173, 1.0923175496930504, 1.1714610218545083, + 1.2814827351708327, 1.4285246552099968, 1.6203857846133587, + 1.864664648742291, 2.157763558440598, 2.5066841333216274, + 2.893676623548901, 3.3194875737218164, 3.766560557134704, + 4.22264768722302, 4.68056876375272, 5.1119902497540215, 5.522301736453654, + 5.882510709418027, 6.193623380401033, 6.439965057427088, + 6.609881034396274, 6.705522279109908, 6.715373244285901, + 6.644087287928896, 6.494829171207472, 6.272961698469083, + 5.990086825066687, 5.658526669830125, 5.282992020629117, + 4.886313237399504, 4.463645721389215, 4.034487661481034, + 3.5972693766236574, 3.1583932169389715, 2.7343020553722157, + 2.315691945643988, 1.9298021372368388, 1.5693427252853878, + 1.2536150695291575, 0.9882429477244814, 0.7694473344322206, + 0.6072216429124426, 0.48849188618669426, 0.414323606089269, + 0.37404748313316216, 0.3598098045602827, 0.3674712380378194, + 0.3922219347661721, 0.4329722113674635, 0.4909228664751239, + 0.5646506743162223, 0.6560480130319539, 0.761813727667664, + 0.8768881329939033, 0.9982802165917071, 1.1144155241573581, + 1.2231955496739177, 1.31477953733368, 1.387563544894846, + 1.4414597547097994, 1.4762173814223933, 1.4968922888891363, + 1.5053902892279007, 1.5056768200110486, 1.4999378591377968, + 1.48866141910257, 1.471903603116908, 1.4492816984274886, + 1.419863325360649, 1.3851788003935477, 1.3455201807245203, + 1.3041004564306578, 1.263222302041064, 1.2242269201308893, + 1.1896148588033542, 1.1579340921317616, 1.1298158120739317, + 1.102959478416134, 1.0763238395970611, 1.049383109780592, + 1.021889117238723, 0.9960272249905868, 0.9724444832750447, + 0.9537695083306987, 0.9403790446977229, 0.9325240561237754, + 0.9292376562411415, 0.9281730348615289, 0.9274460818119223, + 0.9251195428494666, 0.9204448444777258, 0.9138292277299406, + 0.9067534256114864, 0.9014732999050978, 0.9000483397522083 + ], + "pressure:J23:branch12_seg2": [ + 108739.36246053912, 108425.13020385618, 108169.27265372798, + 107975.27102254315, 107849.40023421953, 107801.5058565008, + 107849.98156009776, 108045.90828694082, 108432.42486136683, + 109103.6860293708, 110120.30084881994, 111559.44487858842, + 113497.81499194584, 115922.81051627066, 118907.52602442905, + 122321.71965510078, 126184.51862052412, 130359.91257101504, + 134754.53963395164, 139308.71512279965, 143787.89891401422, + 148227.52049357994, 152377.70562352228, 156231.34125235004, + 159639.64964859388, 162485.4924781847, 164760.59547517414, + 166344.91833467773, 167249.07308179984, 167472.8899150776, + 167035.38741753102, 166010.31309299826, 164479.52564157508, + 162467.72592739004, 160150.53267114406, 157480.7186404884, + 154614.1958808621, 151534.51992134738, 148295.35218256095, + 145032.0924846867, 141673.86641169674, 138450.0559564875, + 135310.6791699166, 132426.73776613237, 129858.5208374793, + 127593.05542872798, 125728.1015510939, 124174.27823946891, + 122955.11194617786, 121996.30115423868, 121244.44158319653, + 120673.49139518506, 120250.94298960568, 119973.4354677018, + 119856.13219782307, 119892.69999186018, 120104.00506457106, + 120467.80856927365, 120946.88180886047, 121518.78844308793, + 122089.35960529956, 122639.23056257667, 123083.78844733504, + 123404.42430180953, 123593.6574553287, 123643.52568971724, + 123589.46783133004, 123442.63786214183, 123231.96455480318, + 122972.72050358538, 122666.96170365089, 122313.32250189177, + 121906.7874340642, 121437.77345770739, 120916.84734138829, + 120344.74126490929, 119746.74157779878, 119141.27603415625, + 118539.8973269094, 117963.87007789692, 117402.65625851772, + 116862.51952230895, 116325.43287453512, 115783.40095281582, + 115232.04375078839, 114669.41945697226, 114113.52523040437, + 113570.30165707512, 113062.44138632574, 112594.56852274544, + 112170.56989915356, 111784.12844538524, 111417.24462267618, + 111055.00047986406, 110681.425450876, 110289.83501304738, + 109882.87530475734, 109472.26825141186, 109076.59564050322, + 108739.36246053912 + ], + "flow:branch13_seg0:J24": [ + 1.989720447978144, 2.0018632144480786, 2.0295367002899107, + 2.0741118259055296, 2.1365661817055144, 2.219177452977572, + 2.3289468958368893, 2.47501124869488, 2.674946016712266, + 2.9453885659578196, 3.3059030431072536, 3.775106909997886, + 4.360151092005971, 5.0718180604216805, 5.8964876009306595, + 6.824742743433478, 7.828812492257378, 8.883644357354585, + 9.957149917235553, 11.014181986512316, 12.02656234803975, + 12.95586544497369, 13.783996369763573, 14.474003139945681, + 15.009307054418077, 15.367396926622346, 15.535178570260447, + 15.507450773490639, 15.284165036604776, 14.876055181938328, + 14.30125735968685, 13.58499427020576, 12.751433903371053, + 11.83400794205777, 10.852439795394442, 9.837476252817716, + 8.79860307218922, 7.7584089423593925, 6.729970735992358, + 5.725658225672511, 4.771703319368067, 3.8745955908371728, + 3.0675614406219993, 2.362876528038378, 1.776101488697546, + 1.3163161223316917, 0.9764508096077902, 0.751001548058561, + 0.6232272659434162, 0.5732485979953924, 0.58444655128994, + 0.6410860121528179, 0.733742092590285, 0.8606537173665758, + 1.0192985258090275, 1.213872347007933, 1.4420628230238868, + 1.699363085749635, 1.978039296551317, 2.2612281019352403, + 2.5367302933192355, 2.785153792575876, 2.995154315630713, + 3.1588008964109493, 3.2743759015810894, 3.346367848188553, + 3.3824221466168716, 3.3906989950068445, 3.3801659570859477, + 3.3555702880487415, 3.3196771538172407, 3.2727858344904908, + 3.213060177517834, 3.1409202022312113, 3.0561452625465235, + 2.9628925170539597, 2.865733197850579, 2.7699862584299133, + 2.680928562136444, 2.600407120948032, 2.5293937084588993, + 2.4656814990475326, 2.406149460871659, 2.3477525699868096, + 2.2887106428909734, 2.229708114746116, 2.173169087265874, + 2.1232931830483053, 2.083305356024548, 2.056174616991449, + 2.0413487000761967, 2.036615218306235, 2.037305520230715, + 2.0383491032629024, 2.0357938257343826, 2.027630563926848, + 2.014838454453568, 2.000928913714149, 1.9908143728061827, + 1.989720447978144 + ], + "pressure:branch13_seg0:J24": [ + 109045.79630245714, 108782.30809684587, 108588.29670308821, + 108465.81731517828, 108423.74471816645, 108473.95735995096, + 108663.47287101447, 109038.79658840563, 109691.68645845463, + 110701.79160226602, 112144.95987201753, 114120.36679681439, + 116615.59664149786, 119713.50346969829, 123301.29779310593, + 127362.00055189058, 131795.13111639643, 136450.50296676625, + 141293.46505469794, 146072.12004072973, 150776.50885850415, + 155201.01307767964, 159284.05535507895, 162891.2652311059, + 165895.38753104408, 168245.5380923411, 169851.63934200563, + 170701.20183084055, 170784.12509048096, 170152.3994754878, + 168848.91170762252, 167016.2003870183, 164671.83423992613, + 162006.92710858182, 159024.79910342305, 155839.9014817102, + 152493.91481175224, 149002.35626546477, 145508.4367591461, + 141971.59958590165, 138569.57625564758, 135296.07374537562, + 132301.83098996684, 129657.39295335689, 127380.47495353926, + 125539.94441116975, 124056.58256782527, 122941.30558061473, + 122100.21753711623, 121480.28620484417, 121027.8003714593, + 120707.3112834175, 120510.28506123494, 120450.03020769512, + 120534.09259549048, 120784.91282535442, 121196.38207445585, + 121731.56696428578, 122366.77773021367, 123007.6932026985, + 123622.7391115357, 124122.73847789619, 124478.65975893376, + 124675.50056323835, 124709.57318745661, 124619.29741524257, + 124425.09612176966, 124164.90956111638, 123859.82375043792, + 123518.0983783634, 123137.29782878332, 122710.44181083718, + 122224.38229694532, 121683.61510877225, 121088.69228550272, + 120461.69008421332, 119826.49915228848, 119197.98741200077, + 118601.47124464481, 118029.10358612501, 117486.19207583476, + 116953.60081014513, 116418.27530263634, 115872.69959298418, + 115310.34752145738, 114748.00980790639, 114195.2737726379, + 113675.31275948026, 113199.47591465573, 112774.16532106054, + 112393.73056436169, 112041.64921408954, 111696.58540384819, + 111339.29360992076, 110958.05051674682, 110552.81393678076, + 110135.03458674693, 109725.94699057928, 109347.10760862868, + 109045.79630245714 + ], + "flow:J24:branch13_seg1": [ + 1.989720447978144, 2.0018632144480786, 2.0295367002899107, + 2.0741118259055296, 2.1365661817055144, 2.219177452977572, + 2.3289468958368893, 2.47501124869488, 2.674946016712266, + 2.9453885659578196, 3.3059030431072536, 3.775106909997886, + 4.360151092005971, 5.0718180604216805, 5.8964876009306595, + 6.824742743433478, 7.828812492257378, 8.883644357354585, + 9.957149917235553, 11.014181986512316, 12.02656234803975, + 12.95586544497369, 13.783996369763573, 14.474003139945681, + 15.009307054418077, 15.367396926622346, 15.535178570260447, + 15.507450773490639, 15.284165036604776, 14.876055181938328, + 14.30125735968685, 13.58499427020576, 12.751433903371053, + 11.83400794205777, 10.852439795394442, 9.837476252817716, + 8.79860307218922, 7.7584089423593925, 6.729970735992358, + 5.725658225672511, 4.771703319368067, 3.8745955908371728, + 3.0675614406219993, 2.362876528038378, 1.776101488697546, + 1.3163161223316917, 0.9764508096077902, 0.751001548058561, + 0.6232272659434162, 0.5732485979953924, 0.58444655128994, + 0.6410860121528179, 0.733742092590285, 0.8606537173665758, + 1.0192985258090275, 1.213872347007933, 1.4420628230238868, + 1.699363085749635, 1.978039296551317, 2.2612281019352403, + 2.5367302933192355, 2.785153792575876, 2.995154315630713, + 3.1588008964109493, 3.2743759015810894, 3.346367848188553, + 3.3824221466168716, 3.3906989950068445, 3.3801659570859477, + 3.3555702880487415, 3.3196771538172407, 3.2727858344904908, + 3.213060177517834, 3.1409202022312113, 3.0561452625465235, + 2.9628925170539597, 2.865733197850579, 2.7699862584299133, + 2.680928562136444, 2.600407120948032, 2.5293937084588993, + 2.4656814990475326, 2.406149460871659, 2.3477525699868096, + 2.2887106428909734, 2.229708114746116, 2.173169087265874, + 2.1232931830483053, 2.083305356024548, 2.056174616991449, + 2.0413487000761967, 2.036615218306235, 2.037305520230715, + 2.0383491032629024, 2.0357938257343826, 2.027630563926848, + 2.014838454453568, 2.000928913714149, 1.9908143728061827, + 1.989720447978144 + ], + "pressure:J24:branch13_seg1": [ + 109045.79630245714, 108782.30809684587, 108588.29670308821, + 108465.81731517828, 108423.74471816645, 108473.95735995096, + 108663.47287101447, 109038.79658840563, 109691.68645845463, + 110701.79160226602, 112144.95987201753, 114120.36679681439, + 116615.59664149786, 119713.50346969829, 123301.29779310593, + 127362.00055189058, 131795.13111639643, 136450.50296676625, + 141293.46505469794, 146072.12004072973, 150776.50885850415, + 155201.01307767964, 159284.05535507895, 162891.2652311059, + 165895.38753104408, 168245.5380923411, 169851.63934200563, + 170701.20183084055, 170784.12509048096, 170152.3994754878, + 168848.91170762252, 167016.2003870183, 164671.83423992613, + 162006.92710858182, 159024.79910342305, 155839.9014817102, + 152493.91481175224, 149002.35626546477, 145508.4367591461, + 141971.59958590165, 138569.57625564758, 135296.07374537562, + 132301.83098996684, 129657.39295335689, 127380.47495353926, + 125539.94441116975, 124056.58256782527, 122941.30558061473, + 122100.21753711623, 121480.28620484417, 121027.8003714593, + 120707.3112834175, 120510.28506123494, 120450.03020769512, + 120534.09259549048, 120784.91282535442, 121196.38207445585, + 121731.56696428578, 122366.77773021367, 123007.6932026985, + 123622.7391115357, 124122.73847789619, 124478.65975893376, + 124675.50056323835, 124709.57318745661, 124619.29741524257, + 124425.09612176966, 124164.90956111638, 123859.82375043792, + 123518.0983783634, 123137.29782878332, 122710.44181083718, + 122224.38229694532, 121683.61510877225, 121088.69228550272, + 120461.69008421332, 119826.49915228848, 119197.98741200077, + 118601.47124464481, 118029.10358612501, 117486.19207583476, + 116953.60081014513, 116418.27530263634, 115872.69959298418, + 115310.34752145738, 114748.00980790639, 114195.2737726379, + 113675.31275948026, 113199.47591465573, 112774.16532106054, + 112393.73056436169, 112041.64921408954, 111696.58540384819, + 111339.29360992076, 110958.05051674682, 110552.81393678076, + 110135.03458674693, 109725.94699057928, 109347.10760862868, + 109045.79630245714 + ], + "flow:branch13_seg1:J25": [ + 1.9930834215226647, 2.0044525132942086, 2.031366783724685, + 2.0750786675558444, 2.136612628151863, 2.2179797918571835, + 2.325905999024881, 2.4695265695071575, 2.665778052131693, + 2.9319923701801214, 3.2869158219871712, 3.7502395697545, + 4.328985582335681, 5.034277140221673, 5.854099709462191, + 6.777016973535951, 7.778670184311974, 8.8303677220101, 9.903586125537139, + 10.96144164596192, 11.975431772616512, 12.909034071132192, + 13.740833746970138, 14.437510027688178, 14.979331200110881, + 15.3452445452234, 15.521362966852989, 15.502097027510647, + 15.286858400884858, 14.886706048286943, 14.318181361961704, + 13.608020184081253, 12.77909557021415, 11.864830306960183, + 10.886785695507832, 9.872893513357933, 8.836800911959795, + 7.796924400284636, 6.769073702803768, 5.764630868381237, + 4.808599520904913, 3.9099699948528652, 3.098691747256493, + 2.390472755724095, 1.7990619514572026, 1.3348664931258942, + 0.9909322085448639, 0.7618379007283582, 0.6312727029904872, + 0.5792097008025432, 0.5887891432071085, 0.6440197773874811, + 0.7353434422651492, 0.8605450266936782, 1.0175965819978825, + 1.2101387614246828, 1.4368240350371861, 1.692782845605928, + 1.9707964790490509, 2.254211292557288, 2.5304041928224805, + 2.780488017677354, 2.992107167726975, 3.157664757048995, + 3.274772006828543, 3.3480876517031315, 3.3850236753855723, + 3.3939428542734573, 3.383802803458482, 3.3596277169613495, + 3.3242027092151414, 3.277883566504752, 3.2188528298307526, + 3.14728080820285, 3.0630676444505545, 2.9699702414311404, + 2.8728667212832435, 2.7768638378483006, 2.6874871231711213, + 2.606655955867734, 2.5353861868113867, 2.4716649238150854, + 2.4121797182296656, 2.3540039395354664, 2.2950551249940676, + 2.2360113254166123, 2.1792519750818706, 2.1288858183917343, + 2.088396200978445, 2.0606727077848794, 2.0454508279113632, + 2.0405137641587454, 2.041240766227422, 2.042512886912187, + 2.0402393373843823, 2.0323080767811437, 2.019541313023422, + 2.0054193866645673, 1.9948294680628977, 1.9930834215226647 + ], + "pressure:branch13_seg1:J25": [ + 108952.52812117372, 108670.40497958021, 108455.69997833243, + 108309.70149830906, 108242.17910651761, 108261.08634591449, + 108407.88941131045, 108724.43077305741, 109292.27517183172, + 110192.61360949243, 111493.5309070265, 113306.5403000142, + 115617.10385939601, 118526.89591890475, 121932.18385899291, + 125810.39992571945, 130100.5330918923, 134616.22516371295, + 139375.14934306144, 144102.55906164457, 148787.8796438943, + 153244.14097545066, 157380.09120935734, 161092.44760703205, + 164245.01771731456, 166779.13238168476, 168604.68675139922, + 169698.4598396796, 170032.07978844122, 169667.07815779568, + 168607.00474427847, 167012.18101847213, 164869.65303124866, + 162375.28411127022, 159547.86079307727, 156474.41260143236, + 153240.984423657, 149822.06628223698, 146377.66662472987, + 142867.32425959632, 139454.1232968607, 136148.50815655675, + 133086.29563452426, 130343.36210603839, 127946.2761235619, + 125976.07510146503, 124356.84103343294, 123125.45962547333, + 122179.78180092032, 121478.82299663349, 120963.66883784563, + 120589.5504308615, 120348.79070493692, 120242.32188862444, + 120279.45618690684, 120478.32031564492, 120839.28724412259, + 121330.04076186953, 121934.64902677045, 122562.34853842418, + 123185.82426604319, 123712.09707854301, 124109.0617103954, + 124356.04228625399, 124439.213203218, 124396.53460459739, + 124238.63527360583, 124006.62005963676, 123721.60227162477, + 123395.32551792245, 123030.04862224836, 122619.69653698502, + 122152.64962602191, 121631.23717254405, 121054.50256759865, + 120440.50398389768, 119812.67411150096, 119183.81172819821, + 118582.79638106578, 118002.03206895203, 117452.19360096459, + 116915.83359910517, 116379.90829571104, 115838.38667657826, + 115279.36416574771, 114718.91678820633, 114164.01455860089, + 113635.88296606622, 113148.48917095603, 112708.72137361676, + 112314.46440425448, 111952.86494489077, 111603.62885860885, + 111248.5783385022, 110873.6121100129, 110475.78343249297, + 110062.84908338563, 109653.45721704185, 109267.23812295392, + 108952.52812117372 + ], + "flow:J25:branch13_seg2": [ + 1.9930834215226647, 2.0044525132942086, 2.031366783724685, + 2.0750786675558444, 2.136612628151863, 2.2179797918571835, + 2.325905999024881, 2.4695265695071575, 2.665778052131693, + 2.9319923701801214, 3.2869158219871712, 3.7502395697545, + 4.328985582335681, 5.034277140221673, 5.854099709462191, + 6.777016973535951, 7.778670184311974, 8.8303677220101, 9.903586125537139, + 10.96144164596192, 11.975431772616512, 12.909034071132192, + 13.740833746970138, 14.437510027688178, 14.979331200110881, + 15.3452445452234, 15.521362966852989, 15.502097027510647, + 15.286858400884858, 14.886706048286943, 14.318181361961704, + 13.608020184081253, 12.77909557021415, 11.864830306960183, + 10.886785695507832, 9.872893513357933, 8.836800911959795, + 7.796924400284636, 6.769073702803768, 5.764630868381237, + 4.808599520904913, 3.9099699948528652, 3.098691747256493, + 2.390472755724095, 1.7990619514572026, 1.3348664931258942, + 0.9909322085448639, 0.7618379007283582, 0.6312727029904872, + 0.5792097008025432, 0.5887891432071085, 0.6440197773874811, + 0.7353434422651492, 0.8605450266936782, 1.0175965819978825, + 1.2101387614246828, 1.4368240350371861, 1.692782845605928, + 1.9707964790490509, 2.254211292557288, 2.5304041928224805, + 2.780488017677354, 2.992107167726975, 3.157664757048995, + 3.274772006828543, 3.3480876517031315, 3.3850236753855723, + 3.3939428542734573, 3.383802803458482, 3.3596277169613495, + 3.3242027092151414, 3.277883566504752, 3.2188528298307526, + 3.14728080820285, 3.0630676444505545, 2.9699702414311404, + 2.8728667212832435, 2.7768638378483006, 2.6874871231711213, + 2.606655955867734, 2.5353861868113867, 2.4716649238150854, + 2.4121797182296656, 2.3540039395354664, 2.2950551249940676, + 2.2360113254166123, 2.1792519750818706, 2.1288858183917343, + 2.088396200978445, 2.0606727077848794, 2.0454508279113632, + 2.0405137641587454, 2.041240766227422, 2.042512886912187, + 2.0402393373843823, 2.0323080767811437, 2.019541313023422, + 2.0054193866645673, 1.9948294680628977, 1.9930834215226647 + ], + "pressure:J25:branch13_seg2": [ + 108952.52812117372, 108670.40497958021, 108455.69997833243, + 108309.70149830906, 108242.17910651761, 108261.08634591449, + 108407.88941131045, 108724.43077305741, 109292.27517183172, + 110192.61360949243, 111493.5309070265, 113306.5403000142, + 115617.10385939601, 118526.89591890475, 121932.18385899291, + 125810.39992571945, 130100.5330918923, 134616.22516371295, + 139375.14934306144, 144102.55906164457, 148787.8796438943, + 153244.14097545066, 157380.09120935734, 161092.44760703205, + 164245.01771731456, 166779.13238168476, 168604.68675139922, + 169698.4598396796, 170032.07978844122, 169667.07815779568, + 168607.00474427847, 167012.18101847213, 164869.65303124866, + 162375.28411127022, 159547.86079307727, 156474.41260143236, + 153240.984423657, 149822.06628223698, 146377.66662472987, + 142867.32425959632, 139454.1232968607, 136148.50815655675, + 133086.29563452426, 130343.36210603839, 127946.2761235619, + 125976.07510146503, 124356.84103343294, 123125.45962547333, + 122179.78180092032, 121478.82299663349, 120963.66883784563, + 120589.5504308615, 120348.79070493692, 120242.32188862444, + 120279.45618690684, 120478.32031564492, 120839.28724412259, + 121330.04076186953, 121934.64902677045, 122562.34853842418, + 123185.82426604319, 123712.09707854301, 124109.0617103954, + 124356.04228625399, 124439.213203218, 124396.53460459739, + 124238.63527360583, 124006.62005963676, 123721.60227162477, + 123395.32551792245, 123030.04862224836, 122619.69653698502, + 122152.64962602191, 121631.23717254405, 121054.50256759865, + 120440.50398389768, 119812.67411150096, 119183.81172819821, + 118582.79638106578, 118002.03206895203, 117452.19360096459, + 116915.83359910517, 116379.90829571104, 115838.38667657826, + 115279.36416574771, 114718.91678820633, 114164.01455860089, + 113635.88296606622, 113148.48917095603, 112708.72137361676, + 112314.46440425448, 111952.86494489077, 111603.62885860885, + 111248.5783385022, 110873.6121100129, 110475.78343249297, + 110062.84908338563, 109653.45721704185, 109267.23812295392, + 108952.52812117372 + ], + "flow:branch14_seg0:J26": [ + 3.685663915454117, 3.730222258944899, 3.808144211769672, + 3.918691455236362, 4.064057544290251, 4.249268206810849, + 4.4943514669277285, 4.823579151349462, 5.277081914386902, + 5.894777630884804, 6.7083225857092765, 7.756678554549522, + 9.034723306767738, 10.557180270940123, 12.277505164017688, + 14.156820024337028, 16.148434308368653, 18.171795478911733, + 20.195465955647858, 22.117350490062982, 23.908174124604507, + 25.498466414544925, 26.845617401671543, 27.909184546997103, + 28.631111581307486, 28.99927400770006, 28.987427852348308, + 28.598961235603657, 27.84870798931643, 26.77162394882919, + 25.408941973256407, 23.83295144775871, 22.077816209791603, + 20.22515494392434, 18.304147060644116, 16.355325981818297, + 14.41174145857275, 12.476740943469057, 10.611254584489272, + 8.811160731255601, 7.138142705734337, 5.6117854733847, 4.277128078548693, + 3.1812149139386907, 2.318976732049391, 1.7086088369290418, + 1.3126578347146987, 1.1088218109609354, 1.0549116550916569, + 1.106697824716154, 1.2340385269351475, 1.4159692350336985, + 1.645222892029776, 1.9284052851774585, 2.2706865450783655, + 2.679429958818992, 3.153073139340834, 3.6700814355778393, + 4.213038829904186, 4.739217791647114, 5.222704640931999, + 5.629476627088649, 5.939373172625975, 6.152829734654962, + 6.273365969773202, 6.322746467191999, 6.319265743952916, 6.28252766422318, + 6.226522304984257, 6.156453969757255, 6.070609918664046, + 5.965360906667984, 5.8345269608247134, 5.679220427033867, + 5.50251249312746, 5.314490512581185, 5.129430007437627, + 4.9557575380175445, 4.804269592357365, 4.67322710123419, + 4.560796650374494, 4.458795788773572, 4.357878520279853, + 4.253690287496083, 4.143606483365384, 4.034837421288219, + 3.9345579521146963, 3.8532081985281836, 3.7975884469305203, + 3.7693836653074992, 3.7650636922285643, 3.7745737221267417, + 3.7860969112376828, 3.788856651035003, 3.776895867912889, + 3.7506799210007356, 3.7168860040656186, 3.6871227234841255, + 3.6732313684357782, 3.685663915454117 + ], + "pressure:branch14_seg0:J26": [ + 109169.09943136713, 108940.65600170923, 108784.40048966686, + 108703.5882635077, 108706.47427334066, 108813.04208101035, + 109081.47715302686, 109566.07020394994, 110377.3163214163, + 111588.77932458417, 113290.92785901437, 115559.33788766307, + 118382.84262091875, 121819.26981658716, 125723.39703772168, + 130099.43104431598, 134777.03069526883, 139666.58870465818, + 144657.98180810033, 149521.18248431646, 154260.43695692538, + 158625.60727882324, 162608.75129604287, 166019.01493280198, + 168753.10606642655, 170765.14174003247, 171967.40521907186, + 172366.7376745903, 171984.04291526254, 170865.26781850884, + 169115.43517957302, 166853.60390209022, 164139.36290867443, + 161171.30900962435, 157915.13782707494, 154537.03923596194, + 151002.9440835425, 147395.02877934303, 143827.53794301618, + 140259.05821298412, 136901.1490339134, 133709.56522134162, + 130872.25121087344, 128428.2276899927, 126388.12125350718, + 124793.75424007622, 123553.6358722808, 122649.82897011295, + 121988.47267753218, 121506.03141859995, 121157.21011889669, + 120922.54590981151, 120798.12646650644, 120816.1415136992, + 120980.56110279082, 121321.11303327302, 121815.6224992384, + 122421.7039651797, 123100.89822214973, 123751.12153394031, + 124339.65740494443, 124777.8085653538, 125050.49624343947, + 125150.94695177687, 125094.33752737168, 124921.93291382285, + 124665.59711062256, 124359.54907812379, 124022.4670281081, + 123655.25365602774, 123248.36465589583, 122792.31122944299, + 122272.39080361191, 121698.28433046516, 121072.7701193295, + 120426.67425315037, 119782.93267360075, 119159.62531796243, + 118575.48233695795, 118019.68084549486, 117490.88700304322, + 116964.98076048828, 116430.3009329983, 115877.66068749517, + 115309.5210960791, 114745.82607522118, 114199.55067767811, + 113697.36116864973, 113245.17639294744, 112847.5241218918, + 112491.57306019877, 112154.96177382079, 111814.53181791528, + 111450.64850650309, 111056.40979390497, 110637.54571150076, + 110212.393286393, 109806.38646564657, 109443.59985776553, + 109169.09943136713 + ], + "flow:J26:branch14_seg1": [ + 3.685663915454117, 3.730222258944899, 3.808144211769672, + 3.918691455236362, 4.064057544290251, 4.249268206810849, + 4.4943514669277285, 4.823579151349462, 5.277081914386902, + 5.894777630884804, 6.7083225857092765, 7.756678554549522, + 9.034723306767738, 10.557180270940123, 12.277505164017688, + 14.156820024337028, 16.148434308368653, 18.171795478911733, + 20.195465955647858, 22.117350490062982, 23.908174124604507, + 25.498466414544925, 26.845617401671543, 27.909184546997103, + 28.631111581307486, 28.99927400770006, 28.987427852348308, + 28.598961235603657, 27.84870798931643, 26.77162394882919, + 25.408941973256407, 23.83295144775871, 22.077816209791603, + 20.22515494392434, 18.304147060644116, 16.355325981818297, + 14.41174145857275, 12.476740943469057, 10.611254584489272, + 8.811160731255601, 7.138142705734337, 5.6117854733847, 4.277128078548693, + 3.1812149139386907, 2.318976732049391, 1.7086088369290418, + 1.3126578347146987, 1.1088218109609354, 1.0549116550916569, + 1.106697824716154, 1.2340385269351475, 1.4159692350336985, + 1.645222892029776, 1.9284052851774585, 2.2706865450783655, + 2.679429958818992, 3.153073139340834, 3.6700814355778393, + 4.213038829904186, 4.739217791647114, 5.222704640931999, + 5.629476627088649, 5.939373172625975, 6.152829734654962, + 6.273365969773202, 6.322746467191999, 6.319265743952916, 6.28252766422318, + 6.226522304984257, 6.156453969757255, 6.070609918664046, + 5.965360906667984, 5.8345269608247134, 5.679220427033867, + 5.50251249312746, 5.314490512581185, 5.129430007437627, + 4.9557575380175445, 4.804269592357365, 4.67322710123419, + 4.560796650374494, 4.458795788773572, 4.357878520279853, + 4.253690287496083, 4.143606483365384, 4.034837421288219, + 3.9345579521146963, 3.8532081985281836, 3.7975884469305203, + 3.7693836653074992, 3.7650636922285643, 3.7745737221267417, + 3.7860969112376828, 3.788856651035003, 3.776895867912889, + 3.7506799210007356, 3.7168860040656186, 3.6871227234841255, + 3.6732313684357782, 3.685663915454117 + ], + "pressure:J26:branch14_seg1": [ + 109169.09943136713, 108940.65600170923, 108784.40048966686, + 108703.5882635077, 108706.47427334066, 108813.04208101035, + 109081.47715302686, 109566.07020394994, 110377.3163214163, + 111588.77932458417, 113290.92785901437, 115559.33788766307, + 118382.84262091875, 121819.26981658716, 125723.39703772168, + 130099.43104431598, 134777.03069526883, 139666.58870465818, + 144657.98180810033, 149521.18248431646, 154260.43695692538, + 158625.60727882324, 162608.75129604287, 166019.01493280198, + 168753.10606642655, 170765.14174003247, 171967.40521907186, + 172366.7376745903, 171984.04291526254, 170865.26781850884, + 169115.43517957302, 166853.60390209022, 164139.36290867443, + 161171.30900962435, 157915.13782707494, 154537.03923596194, + 151002.9440835425, 147395.02877934303, 143827.53794301618, + 140259.05821298412, 136901.1490339134, 133709.56522134162, + 130872.25121087344, 128428.2276899927, 126388.12125350718, + 124793.75424007622, 123553.6358722808, 122649.82897011295, + 121988.47267753218, 121506.03141859995, 121157.21011889669, + 120922.54590981151, 120798.12646650644, 120816.1415136992, + 120980.56110279082, 121321.11303327302, 121815.6224992384, + 122421.7039651797, 123100.89822214973, 123751.12153394031, + 124339.65740494443, 124777.8085653538, 125050.49624343947, + 125150.94695177687, 125094.33752737168, 124921.93291382285, + 124665.59711062256, 124359.54907812379, 124022.4670281081, + 123655.25365602774, 123248.36465589583, 122792.31122944299, + 122272.39080361191, 121698.28433046516, 121072.7701193295, + 120426.67425315037, 119782.93267360075, 119159.62531796243, + 118575.48233695795, 118019.68084549486, 117490.88700304322, + 116964.98076048828, 116430.3009329983, 115877.66068749517, + 115309.5210960791, 114745.82607522118, 114199.55067767811, + 113697.36116864973, 113245.17639294744, 112847.5241218918, + 112491.57306019877, 112154.96177382079, 111814.53181791528, + 111450.64850650309, 111056.40979390497, 110637.54571150076, + 110212.393286393, 109806.38646564657, 109443.59985776553, + 109169.09943136713 + ], + "flow:branch14_seg1:J27": [ + 3.687320812848904, 3.731420815676856, 3.808911495999729, 3.91896755783087, + 4.063802778370159, 4.248204896674075, 4.492138608954374, + 4.819746708422952, 5.270979919837996, 5.886108256857463, + 6.696234386820932, 7.741363935527577, 9.015611680141287, + 10.534757991505437, 12.252615742338119, 14.129307263467744, + 16.120088071265904, 18.141968267885858, 20.165969044490318, + 22.088560369582062, 23.88078584013189, 25.473706859948354, + 26.8234863044399, 27.89091934345619, 28.616686038893988, + 28.989400665210624, 28.98220714719469, 28.598559040781222, + 27.85258870545652, 26.77976605108078, 25.420164249554873, + 23.84742623613768, 22.094457394806515, 20.243326484692695, + 18.32389365797792, 16.375476422543894, 14.433157902796632, + 12.498106885249864, 10.632951666282219, 8.832327599235006, + 7.158145766608057, 5.630284278253658, 4.2930600924189175, + 3.1950490783882164, 2.329987097842739, 1.7174518162669195, + 1.319232489380075, 1.1135742909536177, 1.0584003273364697, + 1.109191592403605, 1.235870425034231, 1.4171331039110089, + 1.6456234072966056, 1.9278916376292854, 2.269201306039002, + 2.6768547040980595, 3.149762755227811, 3.6660821982799643, + 4.208968599232207, 4.735370502793699, 5.219542775372158, + 5.627400628200044, 5.938271015603916, 6.152833240162763, + 6.274104187043697, 6.324112518257703, 6.321024727866862, + 6.284519056814741, 6.228693259717284, 6.158832821929411, + 6.073246819572322, 5.968361611948527, 5.837899448866403, + 5.682919388243465, 5.506456560852574, 5.31844415709502, 5.133357486142729, + 4.959450316831589, 4.807792754525636, 4.676564493975363, + 4.564018330013285, 4.4620644304206625, 4.36120005451968, 4.25716818164784, + 4.147119035833081, 4.0382906968040935, 3.9378278027934543, + 3.856156045779086, 3.800210427278778, 3.771693795386011, + 3.7671899152591566, 3.7766588094474276, 3.7882745320474713, + 3.791209264000144, 3.779427034964472, 3.753319598014499, + 3.7194816586539363, 3.689533911910901, 3.6753044699834354, + 3.687320812848904 + ], + "pressure:branch14_seg1:J27": [ + 109065.9553648671, 108817.701661294, 108641.32465581769, + 108538.63017465593, 108517.17224778178, 108591.92261571159, + 108812.58864310058, 109231.61005843118, 109945.54634765038, + 111036.44349576907, 112583.77504059298, 114674.81104143862, + 117303.35461180308, 120524.48090379669, 124230.47359962374, + 128386.44058590393, 132875.7004811959, 137568.60347368327, + 142390.84328796354, 147124.8502987856, 151742.33335253375, + 156052.21209724311, 159998.08224068815, 163444.64256576807, + 166270.5670897449, 168432.33169284952, 169845.67184448714, + 170501.94120507885, 170406.23891105285, 169600.25096923002, + 168154.84236263818, 166190.1529656512, 163752.95365054088, + 161012.61237054662, 157979.58031796518, 154766.68507286982, + 151397.26813407373, 147906.78169521177, 144419.9603543701, + 140910.6838579228, 137548.92192930228, 134340.5132349246, + 131427.38325868832, 128892.2296757382, 126742.18415550579, + 125033.15991041105, 123690.74626958347, 122695.12759692877, + 121966.5833889957, 121434.13365637283, 121049.4849801126, + 120783.3691124403, 120627.88768181302, 120606.93481985341, + 120730.02490246021, 121021.09857182513, 121472.38624291439, + 122042.55600240904, 122699.46416725143, 123349.67248497489, + 123951.23681955402, 124424.60969248255, 124736.87503135817, + 124882.0208953357, 124864.91049390633, 124724.69387409312, + 124491.9576201274, 124201.20003039957, 123874.79926492399, + 123518.08449811264, 123124.25797311378, 122684.72905294586, + 122184.86780765711, 121629.2171489376, 121020.99915723308, + 120383.82030511311, 119743.60515328287, 119117.13852506566, + 118526.1870253141, 117964.39484068126, 117430.53320661392, + 116905.84278074956, 116375.01393831127, 115829.57359391058, + 115266.98427769504, 114704.03368555833, 114154.19025449081, + 113641.29613743153, 113176.4883765205, 112764.92262076632, + 112398.45841345182, 112057.14529923824, 111718.29383141862, + 111361.26840674588, 110975.9221114335, 110564.51408056983, + 110141.70994784102, 109731.32292545175, 109357.1543610179, + 109065.9553648671 + ], + "flow:J27:branch14_seg2": [ + 3.687320812848904, 3.731420815676856, 3.808911495999729, 3.91896755783087, + 4.063802778370159, 4.248204896674075, 4.492138608954374, + 4.819746708422952, 5.270979919837996, 5.886108256857463, + 6.696234386820932, 7.741363935527577, 9.015611680141287, + 10.534757991505437, 12.252615742338119, 14.129307263467744, + 16.120088071265904, 18.141968267885858, 20.165969044490318, + 22.088560369582062, 23.88078584013189, 25.473706859948354, + 26.8234863044399, 27.89091934345619, 28.616686038893988, + 28.989400665210624, 28.98220714719469, 28.598559040781222, + 27.85258870545652, 26.77976605108078, 25.420164249554873, + 23.84742623613768, 22.094457394806515, 20.243326484692695, + 18.32389365797792, 16.375476422543894, 14.433157902796632, + 12.498106885249864, 10.632951666282219, 8.832327599235006, + 7.158145766608057, 5.630284278253658, 4.2930600924189175, + 3.1950490783882164, 2.329987097842739, 1.7174518162669195, + 1.319232489380075, 1.1135742909536177, 1.0584003273364697, + 1.109191592403605, 1.235870425034231, 1.4171331039110089, + 1.6456234072966056, 1.9278916376292854, 2.269201306039002, + 2.6768547040980595, 3.149762755227811, 3.6660821982799643, + 4.208968599232207, 4.735370502793699, 5.219542775372158, + 5.627400628200044, 5.938271015603916, 6.152833240162763, + 6.274104187043697, 6.324112518257703, 6.321024727866862, + 6.284519056814741, 6.228693259717284, 6.158832821929411, + 6.073246819572322, 5.968361611948527, 5.837899448866403, + 5.682919388243465, 5.506456560852574, 5.31844415709502, 5.133357486142729, + 4.959450316831589, 4.807792754525636, 4.676564493975363, + 4.564018330013285, 4.4620644304206625, 4.36120005451968, 4.25716818164784, + 4.147119035833081, 4.0382906968040935, 3.9378278027934543, + 3.856156045779086, 3.800210427278778, 3.771693795386011, + 3.7671899152591566, 3.7766588094474276, 3.7882745320474713, + 3.791209264000144, 3.779427034964472, 3.753319598014499, + 3.7194816586539363, 3.689533911910901, 3.6753044699834354, + 3.687320812848904 + ], + "pressure:J27:branch14_seg2": [ + 109065.9553648671, 108817.701661294, 108641.32465581769, + 108538.63017465593, 108517.17224778178, 108591.92261571159, + 108812.58864310058, 109231.61005843118, 109945.54634765038, + 111036.44349576907, 112583.77504059298, 114674.81104143862, + 117303.35461180308, 120524.48090379669, 124230.47359962374, + 128386.44058590393, 132875.7004811959, 137568.60347368327, + 142390.84328796354, 147124.8502987856, 151742.33335253375, + 156052.21209724311, 159998.08224068815, 163444.64256576807, + 166270.5670897449, 168432.33169284952, 169845.67184448714, + 170501.94120507885, 170406.23891105285, 169600.25096923002, + 168154.84236263818, 166190.1529656512, 163752.95365054088, + 161012.61237054662, 157979.58031796518, 154766.68507286982, + 151397.26813407373, 147906.78169521177, 144419.9603543701, + 140910.6838579228, 137548.92192930228, 134340.5132349246, + 131427.38325868832, 128892.2296757382, 126742.18415550579, + 125033.15991041105, 123690.74626958347, 122695.12759692877, + 121966.5833889957, 121434.13365637283, 121049.4849801126, + 120783.3691124403, 120627.88768181302, 120606.93481985341, + 120730.02490246021, 121021.09857182513, 121472.38624291439, + 122042.55600240904, 122699.46416725143, 123349.67248497489, + 123951.23681955402, 124424.60969248255, 124736.87503135817, + 124882.0208953357, 124864.91049390633, 124724.69387409312, + 124491.9576201274, 124201.20003039957, 123874.79926492399, + 123518.08449811264, 123124.25797311378, 122684.72905294586, + 122184.86780765711, 121629.2171489376, 121020.99915723308, + 120383.82030511311, 119743.60515328287, 119117.13852506566, + 118526.1870253141, 117964.39484068126, 117430.53320661392, + 116905.84278074956, 116375.01393831127, 115829.57359391058, + 115266.98427769504, 114704.03368555833, 114154.19025449081, + 113641.29613743153, 113176.4883765205, 112764.92262076632, + 112398.45841345182, 112057.14529923824, 111718.29383141862, + 111361.26840674588, 110975.9221114335, 110564.51408056983, + 110141.70994784102, 109731.32292545175, 109357.1543610179, + 109065.9553648671 + ], + "flow:branch15_seg0:J28": [ + 4.905764000646724, 4.920005092037806, 4.966721777154673, + 5.048124161327178, 5.166773448917845, 5.326573735659686, + 5.540556478170966, 5.828896437013686, 6.223285078981822, + 6.762545642714665, 7.482041525547487, 8.421636542383212, + 9.595921110552954, 11.018576944963078, 12.668966341005302, + 14.509030441972458, 16.49656921684508, 18.559223706232153, + 20.649336376486282, 22.685628392922574, 24.6154120084696, + 26.38260656166905, 27.936926904250157, 29.242690051574385, + 30.252060523877024, 30.942467747701773, 31.29125038366584, + 31.29089629549123, 30.945520887253352, 30.274521810062645, + 29.303748437067693, 28.081408292328288, 26.640974191433017, + 25.037372980496396, 23.30956235224068, 21.489757660223788, + 19.614084081055154, 17.69393729678197, 15.771368420172, + 13.862532250098857, 12.008268926796319, 10.244183753985252, + 8.610249743592073, 7.159881219520651, 5.917598867191092, 4.91232914363889, + 4.141590119218383, 3.5955142075619992, 3.2490294564056548, + 3.0655423702322944, 3.0109295868300463, 3.0557464669055516, + 3.180962905532694, 3.3797207982956006, 3.6514022226849416, + 3.998647581158099, 4.422503927986433, 4.9103150252499095, + 5.44631949815894, 5.998352135347069, 6.535198647638375, 7.022970201081705, + 7.432266941756477, 7.749793112440083, 7.969940945919489, + 8.102456074012771, 8.161837860285512, 8.166099312683814, + 8.131944578432051, 8.070555372322932, 7.986583222612537, + 7.880434123113347, 7.748947260467512, 7.591030587829861, + 7.408024957640537, 7.205685315175478, 6.995166523393758, + 6.786243314985663, 6.590138232006777, 6.4115041066199145, + 6.251765488908949, 6.107528367322984, 5.971624277603564, + 5.838453254460879, 5.703379314922551, 5.568209835426177, + 5.437803984615171, 5.320168103798649, 5.2234789442837775, + 5.152574249843424, 5.10829927058337, 5.085508785574951, 5.075132469547727, + 5.066632573708152, 5.051280557152702, 5.024831752974102, + 4.988682496902093, 4.949919097676914, 4.918595943097787, 4.905764000646724 + ], + "pressure:branch15_seg0:J28": [ + 109047.76912298618, 108795.21424150476, 108610.94019890018, + 108499.237297528, 108468.04852233965, 108534.21703543777, + 108747.19468611825, 109156.19344537592, 109858.70830503468, + 110928.10003462291, 112450.72948048756, 114506.48283141479, + 117099.00393801693, 120287.63213286852, 123963.23448667783, + 128122.8670784812, 132624.62119629685, 137373.81831079075, + 142266.6915337426, 147091.3504707298, 151823.49291520068, + 156239.9406936719, 160306.31050562585, 163849.66906593583, + 166760.67278067753, 168984.85541220033, 170435.76669085407, + 171107.68398439614, 171010.87596013973, 170184.16557025482, + 168715.37476901087, 166716.60310333822, 164247.3480355881, + 161484.1410434122, 158418.80229642542, 155195.38771071585, + 151803.4450101008, 148313.1077795006, 144830.25255247692, + 141329.28897019962, 137989.02681544647, 134788.20018429004, + 131888.26196050138, 129340.74192065094, 127165.58345147234, + 125410.2918583878, 124007.45254217795, 122943.73966027013, + 122141.87188372377, 121542.97196829916, 121101.17262061802, + 120791.02040148551, 120601.62148166013, 120554.73809183818, + 120653.14469960642, 120921.80553477554, 121346.10610353643, + 121890.97161669757, 122523.65692010873, 123154.88303919572, + 123748.04194577051, 124220.722670197, 124547.46881448678, + 124713.98021541325, 124725.8478896811, 124615.28859676725, + 124410.40049644756, 124143.1772334713, 123834.21920237524, + 123489.04220121735, 123102.7083547327, 122668.61723656589, + 122174.1676156626, 121625.86683882502, 121025.47806248063, + 120398.01289783663, 119764.83324684862, 119143.4654539157, + 118553.25851156158, 117988.56064404348, 117449.84965605411, + 116918.18555509955, 116382.47053161224, 115833.46563244362, + 115270.8408475071, 114709.81717903576, 114161.69293338594, + 113649.84895132374, 113182.20872607168, 112765.1322703339, + 112390.1910057921, 112039.42113069612, 111692.3315673053, + 111329.97749689779, 110943.28972887492, 110534.1466055137, + 110116.08923806794, 109710.53446026759, 109339.42692810661, + 109047.76912298618 + ], + "flow:J28:branch15_seg1": [ + 4.905764000646724, 4.920005092037806, 4.966721777154673, + 5.048124161327178, 5.166773448917845, 5.326573735659686, + 5.540556478170966, 5.828896437013686, 6.223285078981822, + 6.762545642714665, 7.482041525547487, 8.421636542383212, + 9.595921110552954, 11.018576944963078, 12.668966341005302, + 14.509030441972458, 16.49656921684508, 18.559223706232153, + 20.649336376486282, 22.685628392922574, 24.6154120084696, + 26.38260656166905, 27.936926904250157, 29.242690051574385, + 30.252060523877024, 30.942467747701773, 31.29125038366584, + 31.29089629549123, 30.945520887253352, 30.274521810062645, + 29.303748437067693, 28.081408292328288, 26.640974191433017, + 25.037372980496396, 23.30956235224068, 21.489757660223788, + 19.614084081055154, 17.69393729678197, 15.771368420172, + 13.862532250098857, 12.008268926796319, 10.244183753985252, + 8.610249743592073, 7.159881219520651, 5.917598867191092, 4.91232914363889, + 4.141590119218383, 3.5955142075619992, 3.2490294564056548, + 3.0655423702322944, 3.0109295868300463, 3.0557464669055516, + 3.180962905532694, 3.3797207982956006, 3.6514022226849416, + 3.998647581158099, 4.422503927986433, 4.9103150252499095, + 5.44631949815894, 5.998352135347069, 6.535198647638375, 7.022970201081705, + 7.432266941756477, 7.749793112440083, 7.969940945919489, + 8.102456074012771, 8.161837860285512, 8.166099312683814, + 8.131944578432051, 8.070555372322932, 7.986583222612537, + 7.880434123113347, 7.748947260467512, 7.591030587829861, + 7.408024957640537, 7.205685315175478, 6.995166523393758, + 6.786243314985663, 6.590138232006777, 6.4115041066199145, + 6.251765488908949, 6.107528367322984, 5.971624277603564, + 5.838453254460879, 5.703379314922551, 5.568209835426177, + 5.437803984615171, 5.320168103798649, 5.2234789442837775, + 5.152574249843424, 5.10829927058337, 5.085508785574951, 5.075132469547727, + 5.066632573708152, 5.051280557152702, 5.024831752974102, + 4.988682496902093, 4.949919097676914, 4.918595943097787, 4.905764000646724 + ], + "pressure:J28:branch15_seg1": [ + 109047.76912298618, 108795.21424150476, 108610.94019890018, + 108499.237297528, 108468.04852233965, 108534.21703543777, + 108747.19468611825, 109156.19344537592, 109858.70830503468, + 110928.10003462291, 112450.72948048756, 114506.48283141479, + 117099.00393801693, 120287.63213286852, 123963.23448667783, + 128122.8670784812, 132624.62119629685, 137373.81831079075, + 142266.6915337426, 147091.3504707298, 151823.49291520068, + 156239.9406936719, 160306.31050562585, 163849.66906593583, + 166760.67278067753, 168984.85541220033, 170435.76669085407, + 171107.68398439614, 171010.87596013973, 170184.16557025482, + 168715.37476901087, 166716.60310333822, 164247.3480355881, + 161484.1410434122, 158418.80229642542, 155195.38771071585, + 151803.4450101008, 148313.1077795006, 144830.25255247692, + 141329.28897019962, 137989.02681544647, 134788.20018429004, + 131888.26196050138, 129340.74192065094, 127165.58345147234, + 125410.2918583878, 124007.45254217795, 122943.73966027013, + 122141.87188372377, 121542.97196829916, 121101.17262061802, + 120791.02040148551, 120601.62148166013, 120554.73809183818, + 120653.14469960642, 120921.80553477554, 121346.10610353643, + 121890.97161669757, 122523.65692010873, 123154.88303919572, + 123748.04194577051, 124220.722670197, 124547.46881448678, + 124713.98021541325, 124725.8478896811, 124615.28859676725, + 124410.40049644756, 124143.1772334713, 123834.21920237524, + 123489.04220121735, 123102.7083547327, 122668.61723656589, + 122174.1676156626, 121625.86683882502, 121025.47806248063, + 120398.01289783663, 119764.83324684862, 119143.4654539157, + 118553.25851156158, 117988.56064404348, 117449.84965605411, + 116918.18555509955, 116382.47053161224, 115833.46563244362, + 115270.8408475071, 114709.81717903576, 114161.69293338594, + 113649.84895132374, 113182.20872607168, 112765.1322703339, + 112390.1910057921, 112039.42113069612, 111692.3315673053, + 111329.97749689779, 110943.28972887492, 110534.1466055137, + 110116.08923806794, 109710.53446026759, 109339.42692810661, + 109047.76912298618 + ], + "flow:branch15_seg1:J29": [ + 4.9065980403453295, 4.920645766838489, 4.9671736036656275, + 5.048361074562329, 5.166777310948703, 5.326239454634791, + 5.539744374746547, 5.827417455323504, 6.220870108831904, + 6.759052771616036, 7.477114322995122, 8.415306140552895, + 9.587968782100921, 11.00916788629562, 12.658435694349567, + 14.497341019150557, 16.484441937429338, 18.546438115551833, + 20.63659949835185, 22.67316078626914, 24.603501591620503, + 26.371747755086083, 27.92713108901626, 29.23444329195946, + 30.245377346746984, 30.937623596161952, 31.28830747182258, + 31.2899307888071, 30.9463356914754, 30.277121249005504, 29.3076895408915, + 28.08675389929302, 26.647325170529882, 25.044466369030808, + 23.317405507600622, 21.497897185596745, 19.622855454522135, + 17.70285121962079, 15.780524413898078, 13.871617340567875, + 12.0170041852135, 10.252412545439437, 8.6175324835605, 7.166353772864662, + 5.922950996877476, 4.916747417494367, 4.14501174894069, 3.598095439550972, + 3.2509831476489266, 3.066987855098917, 3.012017773299699, + 3.0564945717703265, 3.181351439361449, 3.3796968775640566, + 3.6509442395213085, 3.997706075286299, 4.421207964461231, + 4.908688815321596, 5.444598267565986, 5.9966767921842, 6.533767293139648, + 7.021962425729048, 7.431662289983382, 7.749658628019405, + 7.9701458955977635, 8.102958581257056, 8.1625429068955, 8.16693634972137, + 8.132881424832206, 8.071593245197876, 7.987737472207663, + 7.881743427502098, 7.7504193153194105, 7.592650273028331, + 7.409763020704569, 7.207450117855657, 6.996939058848959, + 6.787938247775134, 6.59176834706953, 6.413057830284599, 6.253265961970907, + 6.1090379720508965, 5.973149132927676, 5.840038797161989, + 5.704984850852003, 5.56979830847674, 5.439325633170764, 5.321564196915184, + 5.224740907749703, 5.15370116255216, 5.109336082733101, 5.086511188344666, + 5.0761562080160845, 5.067716850991588, 5.052434941430426, + 5.026035460677493, 4.98987897544756, 4.951051423150269, 4.91959856788246, + 4.9065980403453295 + ], + "pressure:branch15_seg1:J29": [ + 108747.37954009394, 108471.24540335308, 108258.32560604053, + 108113.30212400881, 108043.51602903618, 108062.13871754486, + 108209.05395654235, 108527.6368039159, 109099.64135577089, + 109996.04397492793, 111293.33787239017, 113070.06223503401, + 115336.70351259416, 118144.44176351758, 121413.84307372545, + 125124.4565356892, 129164.8745455586, 133433.94609243647, + 137844.28985728777, 142216.19289059757, 146510.07428468086, + 150553.7281135116, 154301.46857536558, 157622.80000079487, + 160420.91472393554, 162648.3974082635, 164232.56825564426, + 165160.0926866335, 165429.54422416654, 165065.81277260935, + 164125.41707530365, 162696.02681866335, 160819.80732669812, + 158629.98777805685, 156133.15110404117, 153433.555905693, + 150539.6625321189, 147498.48587080324, 144401.94342707528, + 141238.24594793128, 138147.13424441867, 135134.44168700845, + 132331.38716464667, 129808.43341882934, 127597.48578164057, + 125757.28881427512, 124249.51881790302, 123069.12677420149, + 122159.11220087337, 121466.3562129034, 120946.25719435753, + 120568.25335333827, 120316.0308778686, 120201.45554016976, + 120227.15719874552, 120412.46674497513, 120750.73570528171, + 121212.97564081941, 121772.08086579916, 122352.39054262497, + 122914.18171157653, 123384.68700713008, 123729.75381137765, + 123931.183478074, 123986.3697137928, 123919.61510092109, + 123754.84666453511, 123520.90918378311, 123239.17514319048, + 122918.65408640032, 122558.15991646358, 122153.42299846414, + 121693.79670145869, 121182.26797832453, 120619.74736025474, + 120024.69429899372, 119416.80781972765, 118812.21129865096, + 118230.3792476189, 117670.40509622938, 117134.15746270317, + 116608.15241855392, 116081.59068043774, 115545.72868155967, + 114997.43440982421, 114447.43915857008, 113905.5396165507, + 113391.4503904445, 112915.23167883865, 112484.51304057233, + 112095.2310815087, 111733.70802093671, 111382.22229836232, + 111022.84939616415, 110644.72587690153, 110246.28524379808, + 109836.4960372327, 109432.84037756834, 109054.9310827982, + 108747.37954009394 + ], + "flow:J29:branch15_seg2": [ + 4.9065980403453295, 4.920645766838489, 4.9671736036656275, + 5.048361074562329, 5.166777310948703, 5.326239454634791, + 5.539744374746547, 5.827417455323504, 6.220870108831904, + 6.759052771616036, 7.477114322995122, 8.415306140552895, + 9.587968782100921, 11.00916788629562, 12.658435694349567, + 14.497341019150557, 16.484441937429338, 18.546438115551833, + 20.63659949835185, 22.67316078626914, 24.603501591620503, + 26.371747755086083, 27.92713108901626, 29.23444329195946, + 30.245377346746984, 30.937623596161952, 31.28830747182258, + 31.2899307888071, 30.9463356914754, 30.277121249005504, 29.3076895408915, + 28.08675389929302, 26.647325170529882, 25.044466369030808, + 23.317405507600622, 21.497897185596745, 19.622855454522135, + 17.70285121962079, 15.780524413898078, 13.871617340567875, + 12.0170041852135, 10.252412545439437, 8.6175324835605, 7.166353772864662, + 5.922950996877476, 4.916747417494367, 4.14501174894069, 3.598095439550972, + 3.2509831476489266, 3.066987855098917, 3.012017773299699, + 3.0564945717703265, 3.181351439361449, 3.3796968775640566, + 3.6509442395213085, 3.997706075286299, 4.421207964461231, + 4.908688815321596, 5.444598267565986, 5.9966767921842, 6.533767293139648, + 7.021962425729048, 7.431662289983382, 7.749658628019405, + 7.9701458955977635, 8.102958581257056, 8.1625429068955, 8.16693634972137, + 8.132881424832206, 8.071593245197876, 7.987737472207663, + 7.881743427502098, 7.7504193153194105, 7.592650273028331, + 7.409763020704569, 7.207450117855657, 6.996939058848959, + 6.787938247775134, 6.59176834706953, 6.413057830284599, 6.253265961970907, + 6.1090379720508965, 5.973149132927676, 5.840038797161989, + 5.704984850852003, 5.56979830847674, 5.439325633170764, 5.321564196915184, + 5.224740907749703, 5.15370116255216, 5.109336082733101, 5.086511188344666, + 5.0761562080160845, 5.067716850991588, 5.052434941430426, + 5.026035460677493, 4.98987897544756, 4.951051423150269, 4.91959856788246, + 4.9065980403453295 + ], + "pressure:J29:branch15_seg2": [ + 108747.37954009394, 108471.24540335308, 108258.32560604053, + 108113.30212400881, 108043.51602903618, 108062.13871754486, + 108209.05395654235, 108527.6368039159, 109099.64135577089, + 109996.04397492793, 111293.33787239017, 113070.06223503401, + 115336.70351259416, 118144.44176351758, 121413.84307372545, + 125124.4565356892, 129164.8745455586, 133433.94609243647, + 137844.28985728777, 142216.19289059757, 146510.07428468086, + 150553.7281135116, 154301.46857536558, 157622.80000079487, + 160420.91472393554, 162648.3974082635, 164232.56825564426, + 165160.0926866335, 165429.54422416654, 165065.81277260935, + 164125.41707530365, 162696.02681866335, 160819.80732669812, + 158629.98777805685, 156133.15110404117, 153433.555905693, + 150539.6625321189, 147498.48587080324, 144401.94342707528, + 141238.24594793128, 138147.13424441867, 135134.44168700845, + 132331.38716464667, 129808.43341882934, 127597.48578164057, + 125757.28881427512, 124249.51881790302, 123069.12677420149, + 122159.11220087337, 121466.3562129034, 120946.25719435753, + 120568.25335333827, 120316.0308778686, 120201.45554016976, + 120227.15719874552, 120412.46674497513, 120750.73570528171, + 121212.97564081941, 121772.08086579916, 122352.39054262497, + 122914.18171157653, 123384.68700713008, 123729.75381137765, + 123931.183478074, 123986.3697137928, 123919.61510092109, + 123754.84666453511, 123520.90918378311, 123239.17514319048, + 122918.65408640032, 122558.15991646358, 122153.42299846414, + 121693.79670145869, 121182.26797832453, 120619.74736025474, + 120024.69429899372, 119416.80781972765, 118812.21129865096, + 118230.3792476189, 117670.40509622938, 117134.15746270317, + 116608.15241855392, 116081.59068043774, 115545.72868155967, + 114997.43440982421, 114447.43915857008, 113905.5396165507, + 113391.4503904445, 112915.23167883865, 112484.51304057233, + 112095.2310815087, 111733.70802093671, 111382.22229836232, + 111022.84939616415, 110644.72587690153, 110246.28524379808, + 109836.4960372327, 109432.84037756834, 109054.9310827982, + 108747.37954009394 + ], + "flow:INFLOW:branch0_seg0": [ + 25.674478887744097, 25.94535841671895, 26.40397770930373, + 27.078557220791417, 27.987924243407218, 29.223018699271037, + 30.872863997957957, 33.14710517392046, 36.24233649316084, + 40.32941619284094, 45.707199117022874, 52.3992217826857, + 60.62210097617118, 70.22501556164931, 81.05839546420485, + 92.99648379412291, 105.49834749077813, 118.48276992683357, + 131.27259753840468, 143.7649170026322, 155.35688109143825, + 165.80346685084584, 174.7861901139547, 181.8894769571331, + 187.03405970454247, 189.92968409297364, 190.54660446170104, + 188.8393317841419, 184.95869990371955, 179.00706479935084, + 171.36892276825773, 162.17188382738493, 151.9224840372999, + 140.69629176277343, 128.8758653843917, 116.79196935170167, + 104.40209357822438, 92.1540459381269, 79.96017988979212, + 68.31079157809357, 57.16093078281224, 46.90621631712706, + 37.866800968464474, 30.021884357838466, 23.657451092007406, + 18.65215821403915, 15.026506001685505, 12.617459012327329, + 11.222617178148154, 10.668320045402487, 10.775780400321388, + 11.426953130150322, 12.573357800939682, 14.17715631699319, + 16.245875690586708, 18.77312459468089, 21.66200146102451, + 24.87301321309217, 28.183734122582287, 31.485700969509814, + 34.5548741049021, 37.202931571616574, 39.38566156483294, + 41.01172010677542, 42.138563589177416, 42.809473436279944, + 43.1255305264649, 43.165580110023946, 42.997790777114155, + 42.65457442604729, 42.154960997292505, 41.48541045198559, + 40.6598910096873, 39.67391551057553, 38.569986753415115, + 37.41430731338149, 36.24090910332261, 35.129941865339894, + 34.09139769664441, 33.1525575391422, 32.297312222462224, + 31.48971969828123, 30.714288194429606, 29.93583369617746, + 29.174750273047025, 28.437718719180175, 27.777383767244913, + 27.22607248914084, 26.812199166529453, 26.54440338309936, + 26.39417815218615, 26.321846831150243, 26.27277536814443, + 26.202064928995775, 26.085898194797117, 25.925203022216337, + 25.754547731026946, 25.61956451593617, 25.57745195059132, + 25.674478887744097 + ], + "pressure:INFLOW:branch0_seg0": [ + 109225.35517502786, 109048.0668547693, 108945.75755824002, + 108923.55935985269, 108989.75213785323, 109183.28622178744, + 109568.42394205276, 110223.78563380771, 111267.83853982725, + 112764.83918082484, 114831.12019546475, 117475.38563010095, + 120730.43919392621, 124568.41192311261, 128812.29886926232, + 133484.49259455275, 138327.1871978209, 143331.76761132048, + 148291.61620013483, 153053.97536626118, 157575.57553654382, + 161627.20212355338, 165211.5023684122, 168128.8699169012, + 170328.15296371919, 171737.8044459968, 172321.04973836194, + 172088.5464223156, 171108.68052392793, 169429.474600592, + 167218.7294116578, 164538.0865110365, 161518.83677185225, + 158315.953825623, 154890.1663383233, 151424.998873472, 147824.1414270587, + 144234.7188256728, 140685.9229493635, 137234.79654450406, + 134028.97172195464, 131074.82301420873, 128562.52123640837, + 126459.60447397645, 124823.94735868313, 123600.63113631333, + 122720.7203344653, 122139.64845171306, 121734.53349132377, + 121458.96592523201, 121268.59543071088, 121159.89011855445, + 121155.6707506346, 121290.58801679319, 121577.3960699162, + 122042.99445812752, 122639.22095851495, 123331.87749431231, + 124037.11833090613, 124675.748185626, 125192.60355051565, + 125508.48597317269, 125640.89254669056, 125585.28555196329, + 125390.94004370298, 125101.89616715055, 124754.86372054802, + 124385.36784359274, 124001.43907460252, 123594.37976553493, + 123149.58392129304, 122648.73830986893, 122084.18065987158, + 121466.29133818735, 120807.24604063094, 120146.91694689103, + 119502.06849630733, 118899.22499496539, 118339.1855126514, + 117811.43235800066, 117306.75741036616, 116792.24758157638, + 116261.87532432457, 115704.84172568998, 115135.89676377975, + 114578.14764298004, 114051.27269063503, 113581.51595699471, + 113170.25560329833, 112814.42388280501, 112491.94772319662, + 112174.68026513058, 111836.7692698948, 111461.75324082223, + 111049.96659225323, 110615.41027661464, 110186.24780721415, + 109791.43187676017, 109457.38381138149, 109225.35517502786 + ], + "flow:branch4_seg2:RCR_0": [ + 2.340962380744252, 2.3374102617755828, 2.3450875466708863, + 2.365912336199518, 2.401248792859304, 2.45287245161515, + 2.5233929300405005, 2.6200412659893852, 2.7514312210954053, + 2.9326453324170214, 3.17870389968377, 3.5048163114011297, + 3.927891849158672, 4.451859509954861, 5.086431711857931, + 5.818053270317741, 6.637610499380785, 7.525109910083959, + 8.452000870935095, 9.400234721562287, 10.32874199642577, + 11.221862564747795, 12.045969985638042, 12.781911599916025, + 13.409043279876732, 13.903702327213685, 14.258064224366208, + 14.457708054725375, 14.500439123271699, 14.387624313312383, + 14.126334055218287, 13.728797885497471, 13.215093730591, + 12.597196227294324, 11.902889914482873, 11.142559423363375, + 10.335586437776257, 9.4945870501995, 8.626959315160397, 7.755482069538984, + 6.881693413489749, 6.032415333877002, 5.216482800359113, + 4.456900189007041, 3.774318862946777, 3.175937165962824, + 2.6783287202941106, 2.2766264597268084, 1.9719853981664295, + 1.7538389922417479, 1.6097398419244058, 1.5287421608351588, + 1.4999549590261199, 1.5166783849317131, 1.5762118757571801, + 1.6762373123574612, 1.8169485913338086, 1.9957531931846924, + 2.2053566575910617, 2.4391269646057645, 2.68108979183756, + 2.920546314920642, 3.1414040919814323, 3.3329376059560007, + 3.4895617842794984, 3.607406535437425, 3.6902207947414523, + 3.7415388275729664, 3.7677309329586715, 3.7742499809216032, + 3.7647021627738466, 3.7409355060209, 3.7036120439751756, 3.65204394521793, + 3.587253883122604, 3.510163046571059, 3.4242873613136244, + 3.3341898973257384, 3.2434759219436717, 3.157002699306905, + 3.0757033002163654, 3.00092340933216, 2.931019413004802, + 2.8638955421113153, 2.7980629160257435, 2.732154414999303, + 2.6678251462572806, 2.6065943241445315, 2.551980181168818, + 2.506464400607471, 2.4716349334001815, 2.4474781143229913, + 2.431591918545503, 2.4207110844329773, 2.410983604063525, + 2.399531777792505, 2.3851188079212617, 2.3685519910454467, + 2.35261084838154, 2.340962380744252 + ], + "pressure:branch4_seg2:RCR_0": [ + 108282.47874626964, 107930.87576779995, 107621.02169102132, + 107361.33890648374, 107158.51096721091, 107020.87983075899, + 106959.95547748014, 107004.06137954911, 107187.47125653249, + 107568.63218158044, 108208.01702144499, 109168.6830202501, + 110522.07149812618, 112295.52582764359, 114537.5597186015, + 117215.20662140811, 120308.84190027062, 123759.40955335775, + 127473.6082224976, 131392.22114420074, 135370.9656838321, + 139350.19880887563, 143204.5793045504, 146854.90441855846, + 150214.7914936841, 153183.67379015908, 155714.47958279736, + 157735.5890602403, 159216.9882883824, 160141.22742991734, + 160511.59811605152, 160350.72439812563, 159711.35976266238, + 158620.11370083183, 157161.77990923155, 155363.49920710284, + 153285.37561038753, 150966.99669336816, 148430.33227276345, + 145753.8132439598, 142943.21776069037, 140094.42412563635, + 137243.4937488386, 134477.54261405958, 131879.21611858552, + 129485.55605801963, 127368.3160087253, 125524.96321084471, + 123973.60752957108, 122690.78567853433, 121644.52770921249, + 120806.50481871852, 120146.8520910281, 119649.0884304306, + 119309.96282105206, 119127.22294983601, 119107.13944746161, + 119246.19259294559, 119523.58264735786, 119919.912495895, + 120381.47713962299, 120871.03651271873, 121330.7116767459, + 121719.28021914203, 122012.52512322628, 122191.42460658522, + 122263.7042116478, 122236.86646064465, 122129.06531908686, + 121956.15770174949, 121728.20291968757, 121449.52537463079, + 121120.49431863413, 120736.76193989282, 120299.9691890092, + 119811.57908541906, 119282.38848355498, 118727.50908553111, + 118159.23462411226, 117594.8924692381, 117038.49650636814, + 116495.64785849139, 115961.51762293155, 115429.35319934723, + 114894.31788547021, 114351.73279558288, 113807.52209300459, + 113267.36761458352, 112744.26472116544, 112248.06537166257, + 111785.74287571554, 111358.8184529594, 110960.27105611579, + 110579.64927423447, 110203.93233979779, 109823.00647950257, + 109432.19549692373, 109033.92677960709, 108637.78579803427, + 108282.47874626964 + ], + "flow:branch6_seg2:RCR_1": [ + 3.464970296958512, 3.494382372115413, 3.553902685946891, + 3.643332989709192, 3.7647198472942347, 3.920965173105704, + 4.1263606771024826, 4.401359542748433, 4.7769364425138, 5.29181372946632, + 5.9736344903422225, 6.862784092381201, 7.962436042237261, + 9.288007139580419, 10.814565799575387, 12.500306950533993, + 14.318312938434591, 16.18556058245995, 18.079951966376377, + 19.910036831886906, 21.635652035544055, 23.203898286056337, + 24.557373011075956, 25.6704960574049, 26.48038926159032, + 26.972506776919047, 27.119630734603184, 26.917394933372954, + 26.372548469727512, 25.513891453663803, 24.36918153653312, + 23.004617958318484, 21.450836659255838, 19.775893154189088, + 18.022252537495742, 16.216445221167568, 14.407945131032623, + 12.589911770711995, 10.820763158393428, 9.103118469476014, + 7.4801355848754545, 5.985056193011263, 4.644845429315344, + 3.515145537279284, 2.59538207578795, 1.9079804360570454, + 1.429877247851559, 1.142948979651197, 1.0142286856572416, + 1.0038036619127089, 1.0804830151518598, 1.2201520043270009, + 1.4112908460331477, 1.6534840774773993, 1.951613514450784, + 2.309335356808433, 2.730252129539333, 3.1974737990804445, + 3.6978167823862687, 4.197329668565355, 4.668889705401987, + 5.083256805490697, 5.41486952994811, 5.659986033210277, 5.816204871697094, + 5.899723858632964, 5.9254592561464, 5.911786194079301, 5.872928148015316, + 5.817055474909286, 5.745176360642801, 5.655526115281767, + 5.543452174718815, 5.408012611172101, 5.251657390257676, + 5.080513812107045, 4.907614491322831, 4.740625366322789, + 4.590567384657812, 4.458618792287432, 4.344389787643522, + 4.242816100633126, 4.145237729043403, 4.047420031051787, + 3.9449444760356074, 3.8422139404163436, 3.7448814789288503, + 3.6612798581617594, 3.599237780623569, 3.561311640488879, + 3.546901461439384, 3.5486836435636246, 3.55687083266375, + 3.5613917016139367, 3.555117982275522, 3.536255717316374, + 3.5083863146204926, 3.4804110757242075, 3.462542955743237, + 3.464970296958512 + ], + "pressure:branch6_seg2:RCR_1": [ + 108970.33985895183, 108681.41659306857, 108461.21535240478, + 108311.81407613569, 108240.02474978044, 108254.6200233883, + 108388.7451091271, 108689.94412817615, 109229.66026844562, + 110098.62909994589, 111367.1033782169, 113134.76506454861, + 115425.68982657848, 118289.704518111, 121692.74704085315, + 125561.692208991, 129852.34885276793, 134398.17838706347, + 139155.4757601814, 143931.35333989767, 148633.38578346247, + 153139.94629692507, 157314.17887261842, 161083.34683852465, + 164292.5920737094, 166884.8781930905, 168775.24236585578, + 169924.97347805506, 170318.98242172174, 169989.81323747386, + 168970.34167751262, 167377.7341582606, 165259.47433822858, + 162744.80289846036, 159915.35143536163, 156821.35551772223, + 153565.16874531936, 150132.66101111504, 146648.18981976513, + 143122.78622180462, 139652.9151560889, 136318.8417706631, + 133188.90976280323, 130395.66844142677, 127956.287248625, + 125936.68013620895, 124308.15381338024, 123049.95661114481, + 122108.51798295847, 121412.28593735115, 120904.8742001131, + 120542.21421070994, 120304.97747664948, 120196.40571355322, + 120231.10861195803, 120421.32371576644, 120779.6793537635, + 121275.4086977544, 121884.12841294531, 122536.32780066055, + 123173.78167940883, 123731.82354891994, 124150.80497006807, + 124415.56654799476, 124513.46112815816, 124471.25087361585, + 124314.45998617428, 124077.24135815157, 123786.54673276216, + 123457.69026019155, 123091.43165394284, 122682.70577591882, + 122220.1714511518, 121699.91541301717, 121125.25573925642, + 120507.44780062944, 119873.05612171964, 119238.32194806142, + 118627.26027945224, 118043.9587661432, 117489.16129595814, + 116953.71536783047, 116420.28607282661, 115880.23984306568, + 115324.16431083831, 114761.01951330875, 114202.86185429589, + 113667.86916320409, 113173.93650812267, 112728.34549777824, + 112331.91667278484, 111971.0827195575, 111626.39690681375, + 111276.95548664105, 110907.24077258838, 110512.47575260323, + 110099.16813843398, 109685.46171498299, 109293.0662290239, + 108970.33985895183 + ], + "flow:branch8_seg2:RCR_2": [ + 2.10338423835452, 2.1039224624057287, 2.117012342115531, + 2.144624863439817, 2.187946190655085, 2.248839317935319, + 2.3298576597822658, 2.438990621364695, 2.5860050330780022, + 2.7873074548390346, 3.060653840289863, 3.421829228570122, + 3.8912535090344784, 4.472493114503663, 5.1769436584771205, + 5.9915495585696, 6.903231863347009, 7.895517637026048, 8.93245006151591, + 9.998275143893878, 11.045269625398177, 12.053583433685326, + 12.987783518727294, 13.819826371792292, 14.528558819444596, + 15.08087963857141, 15.466880128852521, 15.667850135660052, + 15.67889349343314, 15.50215883580346, 15.146259727481013, + 14.625901560695628, 13.968429152115704, 13.188944774781682, + 12.323274806795421, 11.388544526132582, 10.406079528663314, + 9.397332489612252, 8.367847417643432, 7.348415282589497, + 6.341138829471442, 5.375216718305266, 4.464508724105718, + 3.6292503732901573, 2.89654650379062, 2.268658542672615, + 1.7629347466226515, 1.3714463185581023, 1.089893263567365, + 0.9061141248215921, 0.8012491351943768, 0.7626194123390337, + 0.7768907997512737, 0.8359502850646319, 0.9372799278567525, + 1.078558734188815, 1.2601332176809905, 1.4803592574706315, + 1.73054455514028, 2.0041429287072523, 2.283437697980182, + 2.556082900768623, 2.805724171190334, 3.0192539429004417, + 3.192576688727836, 3.3212685951649967, 3.4104144595419355, + 3.464997758396319, 3.492097334635313, 3.498688210507968, + 3.488612218183164, 3.4638153391287516, 3.4249138043241474, + 3.3708459746061115, 3.3026243377921554, 3.2214611244634086, + 3.13099801439388, 3.036933502147802, 2.9429475103074805, 2.85468642704212, + 2.7731042574767675, 2.699144167308968, 2.631180069622248, + 2.5660242706098906, 2.502237461347183, 2.4379929561401084, + 2.375220995781412, 2.315936968994243, 2.2638421457651794, + 2.222118711529513, 2.192165225545878, 2.174001303231048, + 2.1646691706368033, 2.1602376006611688, 2.1563414862775843, + 2.1496341034921276, 2.1389058614247554, 2.125217615365285, + 2.1119721079555442, 2.10338423835452 + ], + "pressure:branch8_seg2:RCR_2": [ + 108660.7130795604, 108310.59337157762, 108007.53765012756, + 107760.34958879472, 107575.27293342711, 107461.13063089944, + 107429.420023727, 107511.33948159001, 107745.59193358502, + 108195.80512216687, 108932.89422339847, 110023.03809806606, + 111551.3025166605, 113545.4011819041, 116061.3088078445, + 119069.66410643594, 122538.40874390496, 126422.29829634972, + 130603.27101057391, 135030.83657875386, 139538.01161587788, + 144050.00753058784, 148434.6395114159, 152580.00392448154, + 156395.85181348742, 159745.78716572648, 162571.73370255888, + 164783.1281429263, 166335.94919817208, 167210.8898327967, + 167412.22451281044, 166967.11694301825, 165950.3829733481, + 164397.02005366667, 162418.08957134365, 160063.6934315747, + 157400.4714743987, 154499.64228391857, 151377.81009359364, + 148142.9124036278, 144805.0292242693, 141470.49549697115, + 138195.96078354368, 135061.7943684922, 132176.48244399385, + 129563.26293694007, 127299.50597572837, 125374.89818962062, + 123790.56768824386, 122519.16528354053, 121507.37552372705, + 120721.27442416041, 120122.6661085578, 119690.02402848928, + 119420.58649653872, 119311.98059022355, 119370.9013767543, + 119597.13035974686, 119964.92586765568, 120454.98703952, + 121007.26463725707, 121578.17947991051, 122108.29913101734, + 122547.21051342138, 122874.99158522602, 123069.88755596001, + 123143.52712185589, 123107.9796993541, 122983.49987851983, + 122791.06520037923, 122541.4722904856, 122239.31304125015, + 121884.72866673407, 121471.96516746609, 121002.48838560519, + 120478.67666833835, 119911.68410043883, 119320.61171846924, + 118718.13271388349, 118124.48997308941, 117544.0067652619, + 116981.0491080895, 116431.00859035639, 115883.38333149691, + 115333.50388230007, 114775.06207215408, 114214.89321774973, + 113660.44666388711, 113125.41977808093, 112622.25738171232, + 112157.44145997333, 111732.76032428723, 111339.3661421847, + 110964.48887442499, 110593.2458240747, 110213.74400377397, + 109821.23827741825, 109418.90733474462, 109018.44703557767, + 108660.7130795604 + ], + "flow:branch9_seg2:RCR_3": [ + 4.611922327839921, 4.6323310090724075, 4.686460270627847, + 4.776413644420641, 4.904883004918245, 5.0755201025705645, + 5.301797342484984, 5.60470273468957, 6.0172035897517535, + 6.5811031844952375, 7.333172053698542, 8.318790486196512, + 9.554627470495701, 11.060517352172083, 12.820243020861241, + 14.796331173966365, 16.952650109165834, 19.2101689569776, + 21.523648353861297, 23.80244279652366, 25.985016375565937, + 28.005575486058703, 29.798311022926715, 31.318030651643046, + 32.50113629605899, 33.31522387100215, 33.727564534804515, + 33.7248172990402, 33.3077191385147, 32.49939873040276, 31.32948256402034, + 29.859569933275637, 28.13255796721897, 26.217581741389843, + 24.168340245841975, 22.025551584065617, 19.839947638744675, + 17.625207153561526, 15.433198419508262, 13.282686041044588, + 11.218580326578017, 9.280061861639577, 7.5068355209975515, + 5.955982892885018, 4.647132368131888, 3.6080633475532653, + 2.829352436375139, 2.296405513724063, 1.9786060000582408, + 1.8336313889720999, 1.8236196341500948, 1.9157023239572246, + 2.089170229509429, 2.336456948749848, 2.6571149210109994, + 3.0539291838690863, 3.5292222365926316, 4.069628135250923, + 4.66020026341787, 5.267326599070078, 5.858882790974478, + 6.3993129627748235, 6.856431366088265, 7.2163137151595205, + 7.471545163748361, 7.63246492729542, 7.713905961774742, 7.735030543707602, + 7.713854333738437, 7.662634040913356, 7.586648034407427, + 7.486679326393563, 7.359440857056882, 7.203791572800313, + 7.021216641912708, 6.817585972229464, 6.605193542523254, + 6.394133276917641, 6.196807315477108, 6.0180519497981555, + 5.859536314319224, 5.717854480942936, 5.585103161251083, + 5.455550717536127, 5.323826938860649, 5.191799726619871, + 5.064494093935441, 4.95023923350929, 4.857839699928857, 4.792340876224657, + 4.754789877648345, 4.7397790526867505, 4.737747112102805, + 4.737543227825783, 4.729874179654776, 4.710163355575126, + 4.679723532618687, 4.646011662383153, 4.6195300059895175, + 4.611922327839921 + ], + "pressure:branch9_seg2:RCR_3": [ + 108713.64291017831, 108399.44130615718, 108144.80687130516, + 107955.42829616804, 107838.08952103782, 107801.31373953052, + 107870.10764386416, 108082.87993382754, 108499.196212206, + 109195.5648169103, 110242.78513979258, 111728.36881506619, + 113695.16459585392, 116192.0889546502, 119209.73445719156, + 122701.73878483659, 126621.8616236025, 130849.75521443399, + 135316.1469583252, 139873.38280598595, 144415.6974793538, + 148826.87288935747, 152985.71860181892, 156801.65179568416, + 160150.30504312748, 162955.0660748443, 165136.89969814316, + 166646.83072801726, 167458.62363884965, 167583.50375036098, + 167045.07891977162, 165922.26351373625, 164267.1812879128, + 162178.25530657623, 159733.44964019206, 156992.1695229178, + 154033.75702523853, 150878.8771421397, 147612.65730109086, + 144268.92504262397, 140925.60373623992, 137654.7041510282, + 134530.9977938746, 131661.11144669334, 129093.04752303302, + 126889.4911817823, 125053.25621713154, 123577.63093028052, + 122428.33398751183, 121549.40480298019, 120889.39776160567, + 120402.55590237044, 120061.12809527264, 119857.73847680248, + 119796.406790451, 119886.39451375481, 120136.47032627699, + 120529.45361791003, 121044.59926610104, 121629.24206414766, + 122230.77612348068, 122788.91538272919, 123246.47732552951, + 123574.58180653873, 123754.25200818416, 123795.564202352, + 123716.81313446522, 123544.5147403303, 123304.60356191054, + 123014.67777065698, 122681.5674777949, 122304.97557254283, + 121877.90927875738, 121396.68295915543, 120861.94487163448, + 120281.68309818914, 119674.99694929535, 119058.1497939811, + 118451.90906249372, 117865.33290911086, 117302.49374829486, + 116759.17162458402, 116223.39478308707, 115686.27784998216, + 115139.12829466951, 114584.9125423927, 114031.99474920702, + 113494.53273570495, 112988.07335917797, 112522.47208914727, + 112101.29360748696, 111717.43434314209, 111356.51168541645, + 111000.85287282271, 110635.11023604994, 110251.14869176093, + 109850.31219615063, 109444.24771197369, 109050.16963898674, + 108713.64291017831 + ], + "flow:branch10_seg2:RCR_4": [ + 0.908416045360656, 0.9141972853884434, 0.9269346280072731, + 0.9465927149911144, 0.9737180549552668, 1.009191197406625, + 1.0554609623345284, 1.1187280384316207, 1.2040486620148443, + 1.322991198415295, 1.4807914797488442, 1.6869062923946643, + 1.9464339726413662, 2.256751520011441, 2.623207715137312, + 3.025356965851405, 3.467489632458866, 3.9252309807002064, + 4.392494796756738, 4.855467256953912, 5.288771831672211, + 5.697902738491951, 6.050853547892469, 6.3533604706867415, + 6.583530590096183, 6.734971490583176, 6.806667589827655, + 6.789645285075608, 6.689450101683129, 6.510123248250881, 6.25784727174511, + 5.947186942187345, 5.5889581360149885, 5.191571934997215, + 4.777244200663501, 4.3392774667031455, 3.9009758377759995, + 3.454781324202974, 3.0136915349449964, 2.5889773041488406, + 2.1741628678746023, 1.7965698334017013, 1.4456523227441769, + 1.1461332857538458, 0.8963770105595216, 0.6971058345716741, + 0.5535783011066093, 0.4519452367430517, 0.39390284019503774, + 0.36544348655115727, 0.36152407999340014, 0.3765292647232335, + 0.4071357117508329, 0.4528051842207535, 0.5152280815662166, + 0.5933535675072457, 0.6894890074937559, 0.7990190636637502, + 0.9174295568388902, 1.0402060894676757, 1.1558292822674872, + 1.2626181587883512, 1.3496401116717316, 1.4177765076996733, + 1.4656980641052173, 1.4951434404660224, 1.5111001297095132, + 1.515727907468003, 1.5134374504670836, 1.5056378074623469, + 1.492781057908078, 1.4745015547040192, 1.4502441940402866, + 1.4191570363410282, 1.382936765133288, 1.3419053361244557, + 1.2999507674778057, 1.25889330251045, 1.2206336908606088, + 1.187065933421675, 1.1565246256587816, 1.1296114912243524, + 1.1032727108972984, 1.0770810636213806, 1.0500841727793557, + 1.0226829870909822, 0.9971599959039841, 0.974236406576759, + 0.9568672847350447, 0.9449137413996933, 0.9387667202767842, + 0.9368414428382393, 0.9366877426127254, 0.936255749157772, + 0.93361993762948, 0.9283642526538171, 0.9211386860590636, + 0.9138409498058052, 0.908872434323728, 0.908416045360656 + ], + "pressure:branch10_seg2:RCR_4": [ + 108824.82736995311, 108522.40773680444, 108281.8862798213, + 108105.25125981007, 107999.22459677412, 107973.54158121515, + 108051.0777976855, 108286.80083161409, 108728.08627691983, + 109478.04500053688, 110591.22049557665, 112158.2946307255, + 114237.81210903777, 116824.49853500178, 119979.6363270752, + 123551.1559691175, 127585.15133232521, 131892.70702016688, + 136425.89208368058, 141073.88476226057, 145622.2789369356, + 150106.5911795243, 154252.2333536261, 158086.98156139647, + 161412.58127819834, 164150.61756511038, 166267.0838813443, + 167660.44645532177, 168347.65147729556, 168334.77383222934, + 167647.6382634425, 166383.137029096, 164613.28471567403, + 162392.17210482285, 159892.8090673775, 157054.994581719, + 154064.83561325842, 150861.56075549455, 147550.0432771608, + 144227.8567839597, 140846.46925584885, 137637.45411206436, + 134526.34978824382, 131727.4999822936, 129246.06801705042, + 127103.88851651613, 125362.86786527855, 123926.03969191789, + 122821.8936143925, 121948.69185781057, 121274.04540765843, + 120759.60915067107, 120383.73959498716, 120147.04570129578, + 120068.40941973442, 120144.50957527863, 120399.46196325544, + 120800.93376175256, 121315.35156057592, 121908.28197880644, + 122484.92692101134, 123028.85238662982, 123446.0678854564, + 123736.84384046658, 123884.02603584985, 123894.87679939297, + 123804.87025090154, 123627.31914795317, 123395.13542646267, + 123117.79723619406, 122797.25863468173, 122428.8411595811, + 122006.20155687028, 121520.26980116511, 120982.9327797635, + 120395.21790894825, 119787.82255097404, 119175.77388152824, + 118575.08892192144, 118002.67846523905, 117446.23342654968, + 116911.86536874948, 116375.50350046023, 115833.7175509963, + 115278.78394517326, 114713.66261789485, 114157.28215842605, + 113616.25853182645, 113116.02805525028, 112657.36701024136, + 112245.29981980255, 111868.65886185018, 111508.45920837237, + 111148.2569781584, 110771.92580286076, 110375.2369099466, + 109962.69306257249, 109549.36576124589, 109155.19173063315, + 108824.82736995311 + ], + "flow:branch11_seg0:RCR_5": [ + 1.1880352070857652, 1.204843853797469, 1.2325337473077176, + 1.2707084717514536, 1.3203895179035825, 1.3832544568224399, + 1.4670719913105457, 1.5798037050704283, 1.7358593672002216, + 1.9483469742031054, 2.226641041390795, 2.5856190052689816, + 3.0193069631056586, 3.5365458470310513, 4.1174815156402955, + 4.750214094624897, 5.420860349902037, 6.098382861207587, + 6.7780718540696085, 7.419127259248108, 8.016833993725985, + 8.543853088493009, 8.98715449534217, 9.331928877817697, 9.55642225282731, + 9.65965718954928, 9.630539490197144, 9.47272167797316, 9.19171400227867, + 8.80200378752542, 8.317660237901302, 7.767809685465622, 7.160041935811667, + 6.527157893425745, 5.875424734653039, 5.2192513766742765, + 4.570001436810871, 3.9257279327584156, 3.311764576587713, + 2.7202522256719113, 2.1776161019369917, 1.6851191389819022, + 1.259964050191005, 0.9174002878384656, 0.6498881017164015, + 0.4668035531915498, 0.35030677250373143, 0.2949740151564031, + 0.2860610905784838, 0.3084609885947141, 0.3539746155528382, + 0.41640078927472013, 0.49399690148006736, 0.5902702413727481, + 0.7063096526993977, 0.8448021221810512, 1.0047202150461843, + 1.177254679671479, 1.3579308169721216, 1.530219851335331, + 1.6876258998938327, 1.8179540816832578, 1.9153294431166903, + 1.9816799684589912, 2.0176616370857743, 2.0318193117411676, + 2.029764091125018, 2.017736197031026, 2.000128151425578, + 1.9779692920597198, 1.950217204234778, 1.915754895429453, + 1.8722497036492625, 1.8207682703840369, 1.7623461476170355, + 1.7008046754400827, 1.6412308379879221, 1.5856616799430485, + 1.538133845885354, 1.4969403884629302, 1.4616504325895843, + 1.4292466255574243, 1.3964708629909885, 1.3624388064370456, + 1.3262869479912038, 1.291092051254515, 1.2591491018939374, + 1.2340771531728179, 1.2177926236653112, 1.2105498076160701, + 1.210811208737838, 1.2149067798317026, 1.2188976930518822, + 1.2193649853408401, 1.2147048206091138, 1.205499205776871, + 1.1942857987082938, 1.1851963632397693, 1.1820069483284357, + 1.1880352070857652 + ], + "pressure:branch11_seg0:RCR_5": [ + 109106.1273681991, 108856.59368670806, 108679.74255040087, + 108575.7034617162, 108553.18734871848, 108625.07216345922, + 108841.7502948611, 109256.78903351557, 109964.74781890192, + 111056.10097477761, 112601.25536903155, 114706.80077591239, + 117355.39911551644, 120618.48107696764, 124394.9555639399, + 128626.00380026731, 133239.64012303596, 138053.61079914117, + 143040.741074555, 147951.4016850432, 152745.80042692838, + 157246.78027534983, 161355.63081575933, 164962.08686915276, + 167908.4278955295, 170159.18365858946, 171617.1444213681, + 172272.35616756376, 172127.30408701894, 171241.18789871997, + 169673.62671401832, 167580.5395835045, 164993.03546069853, + 162097.96877861497, 158929.44137144, 155570.72481284704, + 152092.45001955287, 148484.30752468196, 144903.47782576305, + 141310.58983491917, 137872.44454731885, 134610.46229830736, + 131641.6087000426, 129076.63987148457, 126889.9001592482, + 125157.40804244133, 123791.15176168071, 122774.36060184106, + 122032.0849854109, 121483.24501947126, 121085.3473732572, + 120805.88926049972, 120638.23093148322, 120607.1814974218, + 120723.87292293209, 121009.17880466055, 121462.29558157634, + 122034.37521036425, 122700.96538935008, 123362.98849471926, + 123978.30342251489, 124468.76589086675, 124791.44329179778, + 124950.02426756558, 124940.68635847964, 124808.18757270952, + 124581.39997337302, 124294.49417376977, 123971.92466124047, + 123618.68624914359, 123227.36694507494, 122789.82508784757, + 122290.24129663502, 121732.90717463908, 121122.31299709687, + 120480.06093666266, 119836.59594154477, 119204.87415423435, + 118610.63215695106, 118045.5103072048, 117508.46577409521, + 116982.6330205058, 116448.78253903434, 115901.5014249382, + 115335.16044918515, 114768.0424080972, 114214.45112057493, + 113697.24117261007, 113229.90203493889, 112816.1105905825, + 112448.74004013077, 112107.22338203764, 111768.42436605439, + 111411.41640391, 111025.4971484871, 110612.9256096185, 110188.04496608193, + 109775.57722869261, 109399.08191541211, 109106.1273681991 + ], + "flow:branch12_seg2:RCR_6": [ + 0.900335437384559, 0.9045382797092762, 0.9153227600767405, + 0.9328602644699798, 0.957625934273437, 0.9905331737076365, + 1.0334356664006767, 1.0920808872666476, 1.1710310869311753, + 1.2807770420253812, 1.427510558743575, 1.618956335850799, + 1.8628404186290335, 2.155477715435088, 2.503973107210024, + 2.890634139944076, 3.31604713659158, 3.7629742108204325, + 4.218827936664591, 4.676756200596307, 5.10823800904857, 5.518646421888578, + 5.879149282936725, 6.190520483524108, 6.4373327687189486, + 6.607708910373248, 6.703898326593841, 6.71432224016183, 6.643614174145158, + 6.494912055543275, 6.273603790734079, 5.99115807948717, 5.660045950357527, + 5.284825990319677, 4.8883938580843385, 4.466016525307434, + 4.036963508357551, 3.5999745616475014, 3.1611243418213935, + 2.737099183833924, 2.3184789640323236, 1.9324766788097147, + 1.571917163749443, 1.255898042147436, 0.99030715988577, + 0.7711677438832397, 0.6086605751365299, 0.4896570005387615, + 0.41522741169887684, 0.3747732479314088, 0.36035702733908404, + 0.3678866884262923, 0.3925165787114589, 0.4331407133871435, + 0.49095879609578896, 0.5645510385915289, 0.6557962645501922, + 0.7614580533220939, 0.8764321843726526, 0.9977945934003537, + 1.1139377470774283, 1.2227660885453095, 1.3144618517699287, + 1.3873383369511323, 1.4413672363838967, 1.4762210802509814, + 1.4969814078393013, 1.5055454153465453, 1.505873625467775, + 1.5001755433094928, 1.4889395037988085, 1.4722229452295712, + 1.449650816877911, 1.4202811006611795, 1.3856393653876726, + 1.3460183739368088, 1.3046072971741214, 1.2637365889306131, + 1.2247212671684957, 1.1900941672804901, 1.1583973794134725, + 1.1302652158832704, 1.1034166053157006, 1.076781690340442, + 1.049854993924646, 1.022361666807713, 0.9964911857469625, + 0.9728908985823984, 0.9541800901854799, 0.9407558194123086, + 0.9328633112612491, 0.9295524701101202, 0.9284776076547473, + 0.9277543447064523, 0.9254420528108097, 0.9207822820949255, + 0.9141762527443485, 0.9070952472305229, 0.9017960419294325, + 0.900335437384559 + ], + "pressure:branch12_seg2:RCR_6": [ + 108734.50495323232, 108419.43155934125, 108162.61662941308, + 107967.64552591472, 107840.60224758033, 107791.42145173474, + 107838.00984645907, 108031.27371586989, 108414.14056696038, + 109080.14987254076, 110090.88831950356, 111522.11696968795, + 113452.91198509044, 115869.10665337951, 118845.6207512455, + 122253.46797972564, 126108.58422814755, 130281.14313204506, + 134671.26331404573, 139225.4591103904, 143705.78228900203, + 148147.08176705887, 152302.86052510742, 156161.30770646542, + 159578.51583052575, 162433.08298307742, 164718.5189240289, + 166313.71430483877, 167228.81607156817, 167463.17345771703, + 167036.27548739154, 166019.31922667183, 164496.97568658905, + 162491.14558355167, 160178.5330416504, 157514.24200934207, + 154649.60363542303, 151574.25106285262, 148335.54453855945, + 145073.43271864956, 141715.07393235478, 138489.01121197495, + 135347.75523108375, 132458.21484608512, 129885.7729659417, + 127613.77590517633, 125743.40797490152, 124184.38659024706, + 122960.22486050715, 121998.0305174083, 121242.79564803539, + 120669.37384599967, 120244.5714499516, 119964.71442269285, + 119844.9227280298, 119878.95923286583, 120087.4004641965, + 120449.25951351464, 120926.47195209486, 121497.82849782714, + 122068.60841170681, 122619.4249540458, 123066.17101855628, + 123388.62507346443, 123580.43743142963, 123632.19486619587, + 123579.80414438374, 123434.27438427105, 123224.42979952524, + 122965.99527571784, 122661.03284367183, 122308.20546497399, + 121902.64254675651, 121434.58977415325, 120914.5052972387, + 120343.15213952032, 119745.34582539523, 119140.04628886499, + 118538.31782375977, 117962.021913309, 117400.53217424684, + 116860.15192910234, 116323.2406190808, 115781.25130330227, + 115230.19363670953, 114667.6203154441, 114111.5937117283, + 113568.07470942687, 113059.55903781642, 112591.07377586268, + 112166.38800854933, 111779.50827110463, 111412.46175482223, + 111050.32072450426, 110677.05401166156, 110285.78703149852, + 109879.05024230415, 109468.38457238884, 109072.38537106033, + 108734.50495323232 + ], + "flow:branch13_seg2:RCR_7": [ + 2.0090883784179883, 2.0171791254002787, 2.0407925466066583, + 2.0807117265193042, 2.1382760432005536, 2.2146073253553507, + 2.314884440183858, 2.4488301680678988, 2.6295468784564724, + 2.877894238938793, 3.209610919768805, 3.647052493271911, 4.19965448644065, + 4.8757550151035725, 5.673243152190214, 6.570904495837263, + 7.559580284319044, 8.596581462662535, 9.667949870317, 10.727711070189, + 11.745989140936128, 12.697249200066155, 13.541475713720244, + 14.267354213887664, 14.836315046013063, 15.23561218627638, + 15.44790928402821, 15.464651785216587, 15.28561271104251, + 14.921146856434001, 14.38201276380951, 13.699451068795646, + 12.892517291594352, 11.993733487507033, 11.033991103095627, + 10.026111946901981, 9.004376368639392, 7.965818990634999, + 6.941237928220566, 5.938461242753853, 4.973383714715171, + 4.072365688976887, 3.2432539707716996, 2.5200075901856787, + 1.908906170136149, 1.4237236113606249, 1.0622456381309286, + 0.8163672851847447, 0.6721235461216919, 0.6102642632635301, + 0.6112699412619651, 0.6595833071218694, 0.745097029751719, + 0.8623491888698791, 1.0128672050096401, 1.1960933875553077, + 1.4157363707701207, 1.6656041627254692, 1.939487204216104, + 2.2235708092478834, 2.501196086018262, 2.7577428174833485, + 2.976111750274355, 3.149848195592503, 3.2742770749245396, + 3.3539597670683903, 3.3951065681747377, 3.4074776712398815, + 3.399205962747992, 3.3770943554809176, 3.34380690671661, + 3.2998256797635146, 3.2439672326031674, 3.1748025265728472, + 3.093422254152958, 3.00136000203538, 2.9047406369983695, + 2.807995727008711, 2.717184753950364, 2.6351121995311906, + 2.562666845471107, 2.4987036645712646, 2.4393411377637615, + 2.3819461489072835, 2.323364463017757, 2.2643111293788527, + 2.206853879310265, 2.1545501960570554, 2.1121270962267324, + 2.081672935115573, 2.064583260744205, 2.058420764701388, + 2.0589950320847064, 2.0610788904036736, 2.0599180894535887, + 2.0530657743003453, 2.040633621481668, 2.02583050939533, + 2.013459183876764, 2.0090883784179883 + ], + "pressure:branch13_seg2:RCR_7": [ + 108813.82146609022, 108492.07210812233, 108231.17204802904, + 108036.28815369615, 107914.71597984739, 107873.13563528935, + 107933.3060575575, 108134.63004407329, 108530.2979802259, + 109204.24807052156, 110224.45614055422, 111685.53914601749, + 113637.89273635882, 116128.53129768149, 119167.74904429521, + 122693.9687995506, 126687.38719839785, 131002.69721288492, + 135594.0527060997, 140295.88247251432, 144994.4516415351, + 149588.6091869623, 153919.20107147092, 157928.0507220376, + 161454.17385647816, 164426.7727539292, 166756.36521720953, + 168383.4463559185, 169278.44488715392, 169450.8244339283, + 168913.59219754036, 167756.8884920332, 166031.1605547265, + 163838.84144204616, 161282.02331037348, 158399.91519785984, + 155313.44564233077, 152010.6614687868, 148603.87335482545, + 145125.41967453636, 141637.8236270027, 138245.5652658672, + 134987.47157417217, 132000.92894639296, 129325.46841450983, + 127029.07334065562, 125122.94390633903, 123595.33783392241, + 122412.13199202657, 121517.06630185139, 120850.04955835614, + 120362.72852517942, 120024.47355756747, 119820.37350809487, + 119760.62998372003, 119847.8343421796, 120100.42500561393, + 120500.67663043854, 121029.77938087161, 121640.06521913272, + 122270.91953594674, 122867.1940496165, 123362.06648962236, + 123725.77046586835, 123934.21296226502, 123996.75173457139, + 123929.73738521255, 123763.52278856975, 123523.97290322804, + 123233.27686122395, 122899.28866576859, 122522.19842265538, + 122096.10993804345, 121613.98310018945, 121077.97002759631, + 120491.94770558801, 119877.08293173402, 119249.20355127816, + 118630.76565291313, 118033.18919299076, 117461.07955973002, + 116911.7407858795, 116372.10131334414, 115833.1193535371, + 115283.4581669905, 114725.56767208471, 114167.07828227335, + 113621.39728817988, 113106.83409399305, 112632.60774793266, + 112205.70307484236, 111819.09016949192, 111458.88909303959, + 111106.72595785996, 110745.194857699, 110364.719465941, + 109964.83102311094, 109556.54898611242, 109157.2925188755, + 108813.82146609022 + ], + "flow:branch14_seg2:RCR_8": [ + 3.6928327413052537, 3.7355281168664587, 3.81165808255616, + 3.9202150010394305, 4.063419854231113, 4.245552062139865, + 4.486151750711447, 4.809183790676247, 5.253788006764561, + 5.861163026350015, 6.6612144346206055, 7.696024472115493, + 8.95895598641634, 10.467305601469667, 12.176973107985948, + 14.04512202648383, 16.032021295944713, 18.049327126172788, + 20.073040075187762, 21.997923114459127, 23.79365340962391, + 25.394229565553278, 26.7515828374099, 27.830311287017228, + 28.568085732337398, 28.954571747488796, 28.96200299163664, + 28.593307408416067, 27.86113345997417, 26.801866266714512, + 25.452876780762544, 23.89031809022833, 22.145024285492276, + 20.298850108831193, 18.384752238730552, 16.438213752778257, + 14.499744142339564, 12.565465063849434, 10.70081886375354, + 8.89941794313321, 7.221575690854688, 5.689801932506205, 4.345281310191134, + 3.240506272076313, 2.3671063333956277, 1.7470735549841434, + 1.3416962728754682, 1.129935166118003, 1.0703825803786278, + 1.1178294626616607, 1.24219124581221, 1.4212704427869136, + 1.6474855019414838, 1.926957270064223, 2.2653414321453322, + 2.66960531127036, 3.1399188706717887, 3.6540195100364765, + 4.196115741514759, 4.723078484622841, 5.208951210821781, + 5.619924138515151, 5.93385139853291, 6.15181115875138, 6.275677648781046, + 6.327823911158702, 6.326173450022134, 6.290536478002141, + 6.2353106886948435, 6.166067954747332, 6.081260730746237, + 5.977417384429189, 5.848137584092038, 5.694188393599276, + 5.518601114765439, 5.330800099401155, 5.145690570551727, + 4.971216627709919, 4.818958095962505, 4.6871462587639225, + 4.574159419410792, 4.472245791344974, 4.371527987904986, + 4.267928731646429, 4.158075273398036, 4.049118400175024, + 3.9482026338633367, 3.865609990172896, 3.808684730052721, + 3.7791635701942115, 3.7739750615212264, 3.783184179077126, + 3.7949659197306103, 3.7983828546826848, 3.787162759510901, + 3.7614615975216594, 3.727618676466083, 3.6972161059205133, + 3.682051937965077, 3.6928327413052537 + ], + "pressure:branch14_seg2:RCR_8": [ + 109023.51374412532, 108758.19679442786, 108565.16586993892, + 108444.99351221937, 108404.60931033405, 108455.16916362893, + 108638.53691121962, 109007.03890315702, 109644.95149873792, + 110644.01373568903, 112076.39466108738, 114041.08378677384, + 116543.11564710374, 119634.41594448859, 123246.25959736633, + 127307.76660262755, 131752.0430580605, 136410.73827976585, + 141237.8532392266, 146023.05317780786, 150696.47245303894, + 155116.03805529603, 159168.75433207356, 162764.75350804173, + 165756.74364976055, 168096.6947708808, 169701.20911915076, + 170545.8824848081, 170626.2162749461, 169986.44117376112, + 168675.4423511441, 166823.00815775493, 164474.497148373, + 161779.3441050496, 158796.98126103845, 155593.09971670117, + 152247.78145028342, 148754.2782044993, 145244.56002974944, + 141712.63647091613, 138284.13216104652, 135015.36551220654, + 132000.16512621762, 129359.27994574088, 127095.49089601394, + 125271.52940925526, 123830.79889379189, 122748.49224095923, + 121957.62183102356, 121379.97725446179, 120963.93845998085, + 120671.10449199853, 120490.55286116531, 120437.98270213194, + 120528.83082388033, 120781.39001697263, 121201.18151459347, + 121748.80430513942, 122396.00148577908, 123058.79808938614, + 123683.76494680266, 124200.05479606947, 124557.08258566371, + 124749.1468040133, 124772.13302559119, 124663.11988732332, + 124452.1207929145, 124174.3886412332, 123856.0054953453, + 123506.6076630595, 123122.0586620286, 122694.2350245552, + 122208.90808783617, 121665.57489981422, 121068.4122594757, + 120434.49335173325, 119792.70913983948, 119159.19237324361, + 118557.99271765155, 117987.47017231061, 117446.06173808391, + 116919.9100220002, 116390.1760706024, 115848.8671523089, + 115289.00131518218, 114724.35152484472, 114169.29847368282, + 113644.99018115319, 113167.63296579427, 112742.74082111317, + 112366.41699558569, 112020.78583309997, 111683.38311276154, + 111332.56129219863, 110955.08768238362, 110550.06231246721, + 110128.93990281927, 109714.16518234009, 109329.54876029705, + 109023.51374412532 + ], + "flow:branch15_seg2:RCR_9": [ + 4.911313715267248, 4.924436951469584, 4.970021508648883, + 5.050144118668321, 5.1674002565519785, 5.325287539826016, + 5.536571585357192, 5.821190536046086, 6.210325362111096, + 6.743405339112046, 7.454740637665342, 8.386010416255433, + 9.550936895447753, 10.9648803394196, 12.608387641188777, + 14.44154906079155, 16.426012896438657, 18.484812362251642, + 20.574657161682516, 22.61236873287879, 24.545072016286724, + 26.317879795034223, 27.877943296273653, 29.191980485243008, + 30.209927146545223, 30.91030309224881, 31.26957588534762, + 31.280183673931845, 30.944912613753882, 30.284124090561626, + 29.32147100702835, 28.10746640009303, 26.673512253995895, + 25.074867006088024, 23.352012058177106, 21.53480899944782, + 19.663366894082365, 17.745096825835706, 15.824472419158823, + 13.916169776562787, 12.060647214129135, 10.294409159608323, + 8.655785580427551, 7.201027867953148, 5.952622846431132, + 4.941698281705668, 4.164946870901319, 3.613563388049957, + 3.2629005906932185, 3.075990619143677, 3.0188767769070957, + 3.0614161972034384, 3.184372604990843, 3.380612527841495, + 3.649671217748213, 3.9939997628904047, 4.41554339395456, + 4.9012425602532135, 5.43630918810621, 5.9883564257969395, + 6.526333162560944, 7.01634611397016, 7.427943927382058, 7.748201247813173, + 7.970504516406438, 8.104930274071387, 8.165697226783198, + 8.170911569069059, 8.137460815148186, 8.07672069581506, 7.993457943398624, + 7.888203721781126, 7.757691796290628, 7.600682307149548, + 7.418452573794905, 7.2164077448327815, 7.006033712066908, + 6.7967891492803085, 6.600331706439154, 6.421264836276024, + 6.261185566553941, 6.116933849329803, 5.981082182167202, + 5.848226978818506, 5.713305210112857, 5.57808335138841, 5.447358099925559, + 5.329056862799988, 5.231611019188203, 5.159901517267247, + 5.115026817519503, 5.0919342160138, 5.0815775793826425, 5.073354640732293, + 5.058383805287929, 5.032246878997896, 4.996129075132597, + 4.957076409571332, 4.925080661982964, 4.911313715267248 + ], + "pressure:branch15_seg2:RCR_9": [ + 108482.05611105567, 108166.47037065281, 107907.83612287183, + 107711.71609330497, 107584.6507135447, 107534.81795976749, + 107585.94775022392, 107774.54780151825, 108156.98961781531, + 108805.48178339153, 109786.23389036133, 111179.93863364101, + 113023.65252600674, 115357.78369124095, 118166.18618498166, + 121396.92001114643, 124998.33970449974, 128851.7179099702, + 132889.3168671718, 136974.3417294081, 141014.38897025603, + 144910.86884045598, 148564.39760541054, 151905.2562008996, + 154833.4486732703, 157293.27148853187, 159224.42651422432, + 160591.589814425, 161376.32918088537, 161589.7693950307, + 161249.88615048866, 160421.03056676168, 159139.32904557334, + 157482.47927978935, 155507.85266304776, 153257.35212474747, + 150792.4446310328, 148122.5131339854, 145319.09545951488, + 142407.4397963185, 139456.0496904774, 136530.14167363415, + 133699.73244763355, 131067.48275296063, 128683.54863782249, + 126613.78160398023, 124869.00854281316, 123450.41644373508, + 122332.32161234065, 121466.75573153944, 120808.21190260719, + 120315.1707058098, 119962.2059864167, 119742.6303267266, + 119660.42090426045, 119724.27147924171, 119942.28169120071, + 120297.72455410035, 120770.0844383542, 121308.71445575665, + 121862.8640456887, 122375.14568758993, 122791.51022561439, + 123085.08583556968, 123238.63959619285, 123262.26324887591, + 123173.66072358776, 122997.97656268069, 122759.58186941146, + 122474.84838535634, 122149.93819451204, 121784.28715657358, + 121371.07341887004, 120906.58606833532, 120391.25577191435, + 119832.41235310497, 119247.88841803782, 118652.91594803524, + 118067.0053694986, 117498.76136706796, 116952.05865201811, + 116423.00489012901, 115900.36050315572, 115375.75624021993, + 114841.00465026851, 114298.91390141385, 113757.4684537584, + 113230.14252822447, 112731.81682712414, 112272.00727938898, + 111854.28768778055, 111472.07628134415, 111111.80537342431, + 110756.70823540402, 110392.15177787191, 110010.31919916293, + 109612.4042109251, 109209.41961781497, 108817.75024721271, + 108482.05611105567 + ] + }, + "dy": { + "flow:branch0_seg0:J0": [ + 12.399728212432766, 33.33707683519497, 55.6173542722526, + 79.81565096384257, 105.92369712126721, 141.84358204660316, + 189.59954094760545, 259.86313768620363, 354.9639544461098, + 471.64077821622527, 620.2561926299508, 772.7494862036402, + 948.3878048107842, 1109.2913906375977, 1245.9787778480338, + 1361.646393116094, 1422.9525501300252, 1461.4903862117762, + 1438.2896325255817, 1387.5306529161821, 1285.2559748179574, + 1146.834444174269, 970.9760599317459, 758.7054436487634, + 530.7842044202035, 276.46087367818905, 18.01922743084168, + -243.74835745854372, -489.2288679177194, -717.2385757643004, + -902.7815677859603, -1069.8965975476215, -1187.9687500510443, + -1278.9101600879194, -1339.9811170843589, -1369.082302538976, + -1387.791672379891, -1372.1048565241358, -1357.8124020488444, + -1301.092029967615, -1233.639781268555, -1129.1015076330134, + -990.2666716389749, -845.0706476233805, -673.5678349547783, + -516.8631108482757, -364.18046139659293, -227.72454619755865, + -118.74456186199531, -30.455738426983828, 37.39368247728439, + 91.05358869929837, 141.98023865459308, 190.5730549152426, + 241.43218601904925, 292.62932170185906, 334.0646543011102, + 369.26685829183987, 378.95165470833194, 373.6377404925963, + 342.83324588047935, 291.5010298300029, 232.39443477874048, + 166.71206470034318, 108.53410991413284, 59.07934832465174, + 20.463792845239883, -6.7363770152210805, -26.874419553726682, + -43.83623984490595, -59.677793451061575, -78.20181537979454, + -96.34573375473016, -114.25159287572453, -127.70136580497451, + -133.3024819593157, -133.47739262229922, -124.67614461170247, + -114.45504651614756, -102.37384224686355, -92.02363497815331, + -86.72597831233915, -84.36184806685135, -85.56712474049182, + -85.35170688361626, -82.55489784603421, -74.14501132547846, + -60.62967138834128, -43.48082786096216, -26.02324601204575, + -11.961357891271517, -3.6713011877497213, -2.319861363150541, + -6.601487062873745, -13.58710685589997, -19.898916866151005, + -21.48842237771449, -16.900954048676745, -5.125931675302984, + 12.399728212432766 + ], + "pressure:branch0_seg0:J0": [ + -13010.73750243797, -20954.406840745964, -13043.189264509538, + -3992.8656376044232, 5803.909802894504, 20943.20406567034, + 42336.788610268646, 72751.84566770101, 115108.56100161937, + 162944.2076345431, 226771.21718429413, 286622.3861355156, + 357871.0650394812, 419665.3021437452, 466486.2837056249, + 516243.59959583747, 532390.6529639588, 560921.3585878195, + 554490.9632991046, 542022.5636938381, 515052.7782874692, + 465126.22678394936, 414075.61130866525, 339032.1805162116, + 264378.1759990997, 175928.1765501233, 85988.59375056374, + -6778.573559273435, -88677.23574327365, -169355.0295354136, + -226542.7790221904, -286521.71485581686, -324697.90701152146, + -351556.0239597287, -378429.9491025916, -383404.74564983504, + -404417.1312259775, -400250.48878476705, -404440.8998365643, + -391500.8790197878, -368573.7042905247, -338681.5457981936, + -289742.5797978354, -250424.83177493242, -197702.25768043956, + -158353.5453855524, -116999.89874864346, -84223.73750102005, + -61669.67876171784, -43810.08102968138, -31917.11590374467, + -19813.308767635735, -5708.539141023131, 11052.412778481332, + 29005.766718578398, 48985.17855263174, 62220.66764329419, + 74738.01030296004, 75451.5469627584, 71200.45218005203, 58171.59849176116, + 37917.21209163224, 19906.771060673305, -537.8133162355471, + -13911.192312464726, -25323.786630618688, -32353.680925478642, + -36482.13828179352, -39739.80278543321, -43609.58764784895, + -48400.243695819045, -55191.398679355836, -61985.466222555406, + -67973.40223053932, -72324.46095711131, -72286.65502516546, + -71657.58836118088, -67135.64498614923, -64019.76595360098, + -60591.61264693777, -58556.712565935406, -59516.9725247856, + -60516.78621121936, -63393.250352406234, -63899.577106093886, + -62728.05329450215, -59197.52197470393, -53207.36383511738, + -47172.29934497381, -41481.62136634499, -38221.55490494586, + -37612.712305159024, -39458.210808737305, -42753.57792108329, + -46029.09557292745, -47939.80888663119, -46980.31586001356, + -43441.82104680678, -37100.165106485554, -13010.73750243797 + ], + "flow:J0:branch1_seg0": [ + 5.650744758230708, 10.91028614604792, 16.67561620684848, + 23.38660713935622, 30.82408627915827, 43.362186828417656, + 57.77842632167928, 81.68652124060779, 109.73545493503556, + 142.70273082487947, 186.34642011722977, 222.85948115687924, + 276.0170588450905, 314.8735841785008, 353.2232037193513, + 381.62681538229344, 395.5404950181304, 406.1064517804176, + 392.9665724573949, 389.0042550954318, 353.81606858979075, + 322.0076869071285, 265.8932737954584, 204.72628734474904, + 144.64716501854878, 70.72841758841939, 1.9524019548591236, + -70.24418195948546, -136.9730223226892, -197.51047904703782, + -244.10979428819846, -293.4722304158622, -320.5963662938056, + -354.1244372496523, -368.2926188576014, -381.31193476181056, + -384.7271743672383, -375.7880008323469, -382.2651937407886, + -356.61613240863494, -348.3641635944154, -312.8386217330585, + -273.4427721043322, -238.87355060701395, -188.76450629041636, + -153.99625690857525, -114.25274284040762, -78.58686060621386, + -50.61412613273574, -24.594511104344054, -2.9190683535212814, + 14.250525213226545, 33.577901973709274, 49.05145876206114, + 66.36223623714513, 80.87535650440877, 90.65981222920261, + 101.48120422786587, 99.90035366828198, 100.908987052235, + 91.12925118664434, 78.05575102876765, 64.26862531312771, + 47.69317896012191, 34.400814070796436, 22.56294583553012, + 12.368144703329468, 4.754450508637433, -2.201878546502306, + -8.78229290388143, -14.355609612742946, -21.200683353550104, + -26.013412194044754, -31.509733137647707, -34.242392237753585, + -35.01906239825878, -35.35527166087319, -32.42477486971024, + -31.341384703263, -28.863855818610354, -27.220089087399494, + -26.524875044247285, -25.86970017600626, -25.761329860522583, + -24.495447247977403, -23.26431146422626, -19.839754836067687, + -16.286853032609677, -11.508537922492385, -7.530514145184786, + -4.773522777081789, -3.272959877529254, -3.381219421128624, + -4.262392988501441, -5.255956485196588, -5.762465359581307, + -4.803230182910075, -2.6720622802155582, 0.9920303533137526, + 5.650744758230708 + ], + "pressure:J0:branch1_seg0": [ + -13010.73750243797, -20954.406840745964, -13043.189264509538, + -3992.8656376044232, 5803.909802894504, 20943.20406567034, + 42336.788610268646, 72751.84566770101, 115108.56100161937, + 162944.2076345431, 226771.21718429413, 286622.3861355156, + 357871.0650394812, 419665.3021437452, 466486.2837056249, + 516243.59959583747, 532390.6529639588, 560921.3585878195, + 554490.9632991046, 542022.5636938381, 515052.7782874692, + 465126.22678394936, 414075.61130866525, 339032.1805162116, + 264378.1759990997, 175928.1765501233, 85988.59375056374, + -6778.573559273435, -88677.23574327365, -169355.0295354136, + -226542.7790221904, -286521.71485581686, -324697.90701152146, + -351556.0239597287, -378429.9491025916, -383404.74564983504, + -404417.1312259775, -400250.48878476705, -404440.8998365643, + -391500.8790197878, -368573.7042905247, -338681.5457981936, + -289742.5797978354, -250424.83177493242, -197702.25768043956, + -158353.5453855524, -116999.89874864346, -84223.73750102005, + -61669.67876171784, -43810.08102968138, -31917.11590374467, + -19813.308767635735, -5708.539141023131, 11052.412778481332, + 29005.766718578398, 48985.17855263174, 62220.66764329419, + 74738.01030296004, 75451.5469627584, 71200.45218005203, 58171.59849176116, + 37917.21209163224, 19906.771060673305, -537.8133162355471, + -13911.192312464726, -25323.786630618688, -32353.680925478642, + -36482.13828179352, -39739.80278543321, -43609.58764784895, + -48400.243695819045, -55191.398679355836, -61985.466222555406, + -67973.40223053932, -72324.46095711131, -72286.65502516546, + -71657.58836118088, -67135.64498614923, -64019.76595360098, + -60591.61264693777, -58556.712565935406, -59516.9725247856, + -60516.78621121936, -63393.250352406234, -63899.577106093886, + -62728.05329450215, -59197.52197470393, -53207.36383511738, + -47172.29934497381, -41481.62136634499, -38221.55490494586, + -37612.712305159024, -39458.210808737305, -42753.57792108329, + -46029.09557292745, -47939.80888663119, -46980.31586001356, + -43441.82104680678, -37100.165106485554, -13010.73750243797 + ], + "flow:J0:branch5_seg0": [ + 2.680969844845781, 7.675777110108798, 12.836118676086192, + 18.32220329486017, 24.127763675239844, 31.50702042880803, + 42.00421085950715, 56.69188020492954, 77.92029537717453, + 104.32403738280773, 137.6581697057948, 173.9614394465319, + 212.91352121640318, 250.9329277466931, 281.99593554997665, + 309.70166119511026, 324.244531312625, 334.0095996157865, + 330.2183615490349, 315.9617058509144, 294.4689684400031, + 260.4544516758577, 222.2599627057649, 173.56901928837289, + 119.49306629906751, 61.08292778446871, -0.2715766122192396, + -61.74514300170886, -119.28231450229778, -173.58868643062178, + -217.71077970690422, -255.6704035332896, -283.6810164350282, + -301.34014479998876, -315.1515658356229, -318.65012815521686, + -322.5156381781111, -318.27689250938397, -310.35431969181616, + -298.429187708569, -278.0861252086458, -254.4027169947938, + -221.56339313258465, -185.4622850316607, -146.09005550822678, + -107.49600302141168, -71.45969148939045, -40.378627977543566, + -15.306339958238699, 3.4844050814503116, 17.194260922448144, + 28.070440986584032, 37.373526040601746, 47.348459065215025, + 57.513696730934, 68.70728598017419, 78.26950976202797, 85.64343540141608, + 88.63591529165842, 86.37480785262723, 79.19693284774672, + 66.93149944610282, 52.45264052985432, 36.84680862836216, + 22.85345898495978, 11.00616878047478, 2.3087563799589503, + -3.6965454224210705, -7.674457363772926, -10.796636820843943, + -13.956656163403352, -17.587483967778752, -21.729726444085646, + -25.601751401692486, -28.88015947478918, -30.278937577930574, + -30.13937536401424, -28.112289015526656, -25.217937373566322, + -22.074727594724205, -19.38049352338718, -17.97042315503856, + -17.467457810041292, -17.98518199092162, -18.285023624784447, + -17.812105455061566, -16.191533000167816, -13.007928309591724, + -9.106684354474725, -4.8792208153352385, -1.385393896327792, + 0.6347214626706721, 0.9791248116414099, -0.21655456966145056, + -2.184612496583682, -4.047287169024702, -4.826677463480326, + -4.01001458240787, -1.3770609153535054, 2.680969844845781 + ], + "pressure:J0:branch5_seg0": [ + -13010.73750243797, -20954.406840745964, -13043.189264509538, + -3992.8656376044232, 5803.909802894504, 20943.20406567034, + 42336.788610268646, 72751.84566770101, 115108.56100161937, + 162944.2076345431, 226771.21718429413, 286622.3861355156, + 357871.0650394812, 419665.3021437452, 466486.2837056249, + 516243.59959583747, 532390.6529639588, 560921.3585878195, + 554490.9632991046, 542022.5636938381, 515052.7782874692, + 465126.22678394936, 414075.61130866525, 339032.1805162116, + 264378.1759990997, 175928.1765501233, 85988.59375056374, + -6778.573559273435, -88677.23574327365, -169355.0295354136, + -226542.7790221904, -286521.71485581686, -324697.90701152146, + -351556.0239597287, -378429.9491025916, -383404.74564983504, + -404417.1312259775, -400250.48878476705, -404440.8998365643, + -391500.8790197878, -368573.7042905247, -338681.5457981936, + -289742.5797978354, -250424.83177493242, -197702.25768043956, + -158353.5453855524, -116999.89874864346, -84223.73750102005, + -61669.67876171784, -43810.08102968138, -31917.11590374467, + -19813.308767635735, -5708.539141023131, 11052.412778481332, + 29005.766718578398, 48985.17855263174, 62220.66764329419, + 74738.01030296004, 75451.5469627584, 71200.45218005203, 58171.59849176116, + 37917.21209163224, 19906.771060673305, -537.8133162355471, + -13911.192312464726, -25323.786630618688, -32353.680925478642, + -36482.13828179352, -39739.80278543321, -43609.58764784895, + -48400.243695819045, -55191.398679355836, -61985.466222555406, + -67973.40223053932, -72324.46095711131, -72286.65502516546, + -71657.58836118088, -67135.64498614923, -64019.76595360098, + -60591.61264693777, -58556.712565935406, -59516.9725247856, + -60516.78621121936, -63393.250352406234, -63899.577106093886, + -62728.05329450215, -59197.52197470393, -53207.36383511738, + -47172.29934497381, -41481.62136634499, -38221.55490494586, + -37612.712305159024, -39458.210808737305, -42753.57792108329, + -46029.09557292745, -47939.80888663119, -46980.31586001356, + -43441.82104680678, -37100.165106485554, -13010.73750243797 + ], + "flow:J0:branch9_seg0": [ + 0.8228264710219817, 4.355828474790351, 8.287596316080187, + 12.47587490762436, 16.968633323300832, 22.40153741279714, 29.921341573477, + 40.36893473141572, 55.328770900311355, 74.5239287027021, 98.6100061098455, + 126.09751939580842, 155.54093213644805, 185.7437597677051, + 211.7133077648802, 234.38776061794331, 249.33775640466857, + 258.1489256198074, 259.1118648762977, 250.85024760532042, + 236.65828588754528, 213.6505561182028, 185.49166607130215, + 150.44209975040386, 110.42072350442075, 66.91224308049816, + 20.670928444964748, -26.224967126386673, -71.48158018485958, + -113.95169981470298, -150.73110377434818, -181.82990097736567, + -206.9402512504485, -224.12155402255897, -237.21181089598684, + -243.84828312983055, -248.046513934087, -248.00528083918638, + -244.01349332576368, -237.34407634806735, -224.6899804564112, + -208.57132571671434, -185.97010035826906, -159.6326367270671, + -130.53694437676384, -100.48696125390917, -72.16813163392621, + -46.196384899018305, -24.592429200195138, -7.487065581798627, + 5.5279630927262415, 15.605459570646746, 24.094847264901247, + 32.38883179912596, 40.7194140738824, 49.573136272944765, + 57.63587214012692, 64.13308964242754, 67.9011620497285, 67.68547445647108, + 63.86640322676832, 55.893233731582264, 45.5469525856691, 33.9388427681927, + 22.693533605447513, 12.972826914375375, 5.209749172837765, + -0.41251963691499, -4.334880346729669, -7.3161990672324535, + -10.009516740776863, -12.880692662478863, -16.087630471079823, + -19.196028423279778, -21.95978682818589, -23.560416692418848, + -23.930364297783985, -22.97946969127706, -21.055249850264794, + -18.85763986007406, -16.70439242688248, -15.30617627676018, + -14.640686737304964, -14.671858462954955, -14.878190077636543, + -14.620993083740899, -13.638407843158282, -11.57150496112358, + -8.76653374722829, -5.590567702225187, -2.717511199275063, + -0.7468684068311287, 0.019418413772351942, -0.3957217214646237, + -1.5828390359487101, -2.9304501654232746, -3.7285971668953812, + -3.473281823923647, -1.9338127262007536, 0.8228264710219817 + ], + "pressure:J0:branch9_seg0": [ + -13010.73750243797, -20954.406840745964, -13043.189264509538, + -3992.8656376044232, 5803.909802894504, 20943.20406567034, + 42336.788610268646, 72751.84566770101, 115108.56100161937, + 162944.2076345431, 226771.21718429413, 286622.3861355156, + 357871.0650394812, 419665.3021437452, 466486.2837056249, + 516243.59959583747, 532390.6529639588, 560921.3585878195, + 554490.9632991046, 542022.5636938381, 515052.7782874692, + 465126.22678394936, 414075.61130866525, 339032.1805162116, + 264378.1759990997, 175928.1765501233, 85988.59375056374, + -6778.573559273435, -88677.23574327365, -169355.0295354136, + -226542.7790221904, -286521.71485581686, -324697.90701152146, + -351556.0239597287, -378429.9491025916, -383404.74564983504, + -404417.1312259775, -400250.48878476705, -404440.8998365643, + -391500.8790197878, -368573.7042905247, -338681.5457981936, + -289742.5797978354, -250424.83177493242, -197702.25768043956, + -158353.5453855524, -116999.89874864346, -84223.73750102005, + -61669.67876171784, -43810.08102968138, -31917.11590374467, + -19813.308767635735, -5708.539141023131, 11052.412778481332, + 29005.766718578398, 48985.17855263174, 62220.66764329419, + 74738.01030296004, 75451.5469627584, 71200.45218005203, 58171.59849176116, + 37917.21209163224, 19906.771060673305, -537.8133162355471, + -13911.192312464726, -25323.786630618688, -32353.680925478642, + -36482.13828179352, -39739.80278543321, -43609.58764784895, + -48400.243695819045, -55191.398679355836, -61985.466222555406, + -67973.40223053932, -72324.46095711131, -72286.65502516546, + -71657.58836118088, -67135.64498614923, -64019.76595360098, + -60591.61264693777, -58556.712565935406, -59516.9725247856, + -60516.78621121936, -63393.250352406234, -63899.577106093886, + -62728.05329450215, -59197.52197470393, -53207.36383511738, + -47172.29934497381, -41481.62136634499, -38221.55490494586, + -37612.712305159024, -39458.210808737305, -42753.57792108329, + -46029.09557292745, -47939.80888663119, -46980.31586001356, + -43441.82104680678, -37100.165106485554, -13010.73750243797 + ], + "flow:J0:branch14_seg0": [ + 3.140593914366885, 6.926382368208884, 10.561586065852476, + 14.335144699813892, 18.370114664778153, 23.708714916428306, + 31.828612389068248, 43.057504942051615, 59.65767319285991, + 79.51734384704594, 104.3117973669234, 130.68193187277674, + 157.4380797640249, 183.68599347233697, 201.93420531673237, + 219.29655834573163, 225.34175260692467, 228.8921854648745, + 223.19833485520127, 208.6113443759029, 191.85673812382132, + 164.29148756706837, 136.65832818217834, 100.44594634501375, + 61.501461779487066, 20.217104357398274, -22.808174702062132, + -64.76948554116943, -103.08361368452883, -138.40852963019103, + -165.74874918499464, -188.1658660083213, -204.37250937506573, + -211.5557809313858, -218.9358839262297, -217.48023443984894, + -218.82623486126417, -213.92094441174362, -205.93681396507918, + -196.70375948856005, -179.1873058977847, -161.9087185415702, + -136.1268791023491, -110.11075854999076, -82.44020537395247, + -55.92425262272188, -33.08541409171091, -13.4033348590398, + 0.6212347199043595, 10.684151246604717, 17.526618093597328, + 23.1569741844986, 28.536495072638857, 35.15264400037521, + 41.95389652028248, 49.86207684860769, 55.9308399607343, + 60.055144177274954, 60.83602092712813, 57.09904401062752, + 50.63836962747685, 40.13776487667394, 29.37999285999092, + 18.358042742941482, 9.209516895582977, 2.195822140500153, + -2.5943704834870744, -5.401648725592765, -7.117622859642977, + -8.6905893545209, -10.644418868442004, -13.171537756759575, + -16.174017493728243, -18.697806766148528, -20.777393336112894, + -21.089890016203977, -20.344860970951135, -18.33180469337487, + -15.812889099398491, -13.613528444094513, -11.780922263796745, + -11.29685004163746, -11.374683904491455, -12.107258707066366, + -12.459500347107372, -11.868863342077706, -10.426098490479937, + -7.68797189511209, -4.70262591117579, -1.6659665946250135, + 0.5071944780508916, 1.3900335130382233, 0.9666191842968773, + -0.46826424059436844, -2.210999605526934, -3.553267297055895, + -3.7882666419813837, -2.6701394268024217, -0.2216687076393677, + 3.140593914366885 + ], + "pressure:J0:branch14_seg0": [ + -13010.73750243797, -20954.406840745964, -13043.189264509538, + -3992.8656376044232, 5803.909802894504, 20943.20406567034, + 42336.788610268646, 72751.84566770101, 115108.56100161937, + 162944.2076345431, 226771.21718429413, 286622.3861355156, + 357871.0650394812, 419665.3021437452, 466486.2837056249, + 516243.59959583747, 532390.6529639588, 560921.3585878195, + 554490.9632991046, 542022.5636938381, 515052.7782874692, + 465126.22678394936, 414075.61130866525, 339032.1805162116, + 264378.1759990997, 175928.1765501233, 85988.59375056374, + -6778.573559273435, -88677.23574327365, -169355.0295354136, + -226542.7790221904, -286521.71485581686, -324697.90701152146, + -351556.0239597287, -378429.9491025916, -383404.74564983504, + -404417.1312259775, -400250.48878476705, -404440.8998365643, + -391500.8790197878, -368573.7042905247, -338681.5457981936, + -289742.5797978354, -250424.83177493242, -197702.25768043956, + -158353.5453855524, -116999.89874864346, -84223.73750102005, + -61669.67876171784, -43810.08102968138, -31917.11590374467, + -19813.308767635735, -5708.539141023131, 11052.412778481332, + 29005.766718578398, 48985.17855263174, 62220.66764329419, + 74738.01030296004, 75451.5469627584, 71200.45218005203, 58171.59849176116, + 37917.21209163224, 19906.771060673305, -537.8133162355471, + -13911.192312464726, -25323.786630618688, -32353.680925478642, + -36482.13828179352, -39739.80278543321, -43609.58764784895, + -48400.243695819045, -55191.398679355836, -61985.466222555406, + -67973.40223053932, -72324.46095711131, -72286.65502516546, + -71657.58836118088, -67135.64498614923, -64019.76595360098, + -60591.61264693777, -58556.712565935406, -59516.9725247856, + -60516.78621121936, -63393.250352406234, -63899.577106093886, + -62728.05329450215, -59197.52197470393, -53207.36383511738, + -47172.29934497381, -41481.62136634499, -38221.55490494586, + -37612.712305159024, -39458.210808737305, -42753.57792108329, + -46029.09557292745, -47939.80888663119, -46980.31586001356, + -43441.82104680678, -37100.165106485554, -13010.73750243797 + ], + "flow:J0:branch15_seg0": [ + 0.10459322396914598, 3.468802736037771, 7.256437007384292, + 11.295820922187536, 15.633099178793168, 20.86412246015836, + 28.066949803862435, 38.05829656720256, 52.321760040719866, + 70.57273745878548, 93.32979933016352, 119.14911433162466, + 146.47821284882636, 174.055125472371, 197.11212549706997, + 216.63359757499745, 228.48801478768934, 234.33322373093785, + 232.79449878765115, 223.1030999886111, 208.4559137767861, + 186.4302619060311, 160.67282917703702, 129.5220909202574, + 94.72178781864494, 57.52018086748381, 18.47564834525564, + -20.764579829824417, -58.40833722335033, -93.77918084177576, + -124.48114083153204, -150.75819661273923, -172.378606696707, + -187.76824308435465, -200.38923756891015, -207.79172205224512, + -213.67611103915945, -216.1137379314718, -215.24258132540842, + -211.9988740137751, -203.3122061112979, -191.38012464686835, + -173.1635269414299, -150.99141670764442, -125.73612340541511, + -98.9596370416501, -73.21448134115919, -49.15933785574483, + -28.852901290728372, -12.54271806889586, 0.06390872203099222, + 9.97018874434008, 18.397468302741952, 26.63166128846599, + 34.882942456799974, 43.61146609573179, 51.568620209016615, + 57.95398484284713, 61.67820277154198, 61.56942712063407, + 58.00228899184735, 50.48278074687294, 40.74622349009458, + 29.875191600722747, 19.376786357349783, 10.341584653744428, + 3.1715130725888505, -1.9801137389249601, -5.5455804370729185, + -8.250521698426375, -10.71159206570387, -13.361417639227874, + -16.34094715179764, -19.246273146964633, -21.841633928124836, + -23.354175274477655, -23.70752032866011, -22.82780634180275, + -21.02758548966167, -18.964090529352923, -16.937737676700205, + -15.627653794664957, -15.009319439012716, -15.041495719028722, + -15.2335455861109, -14.988624500928855, -14.049217155609636, + -12.07541318990597, -9.39644592559336, -6.3569767546747284, + -3.59212449664186, -1.6762278791003125, -0.9038043517295339, + -1.25855354265393, -2.352699232640761, -3.605446875071143, + -4.341650922463113, -4.075455935327218, -2.5854196794277495, + 0.10459322396914598 + ], + "pressure:J0:branch15_seg0": [ + -13010.73750243797, -20954.406840745964, -13043.189264509538, + -3992.8656376044232, 5803.909802894504, 20943.20406567034, + 42336.788610268646, 72751.84566770101, 115108.56100161937, + 162944.2076345431, 226771.21718429413, 286622.3861355156, + 357871.0650394812, 419665.3021437452, 466486.2837056249, + 516243.59959583747, 532390.6529639588, 560921.3585878195, + 554490.9632991046, 542022.5636938381, 515052.7782874692, + 465126.22678394936, 414075.61130866525, 339032.1805162116, + 264378.1759990997, 175928.1765501233, 85988.59375056374, + -6778.573559273435, -88677.23574327365, -169355.0295354136, + -226542.7790221904, -286521.71485581686, -324697.90701152146, + -351556.0239597287, -378429.9491025916, -383404.74564983504, + -404417.1312259775, -400250.48878476705, -404440.8998365643, + -391500.8790197878, -368573.7042905247, -338681.5457981936, + -289742.5797978354, -250424.83177493242, -197702.25768043956, + -158353.5453855524, -116999.89874864346, -84223.73750102005, + -61669.67876171784, -43810.08102968138, -31917.11590374467, + -19813.308767635735, -5708.539141023131, 11052.412778481332, + 29005.766718578398, 48985.17855263174, 62220.66764329419, + 74738.01030296004, 75451.5469627584, 71200.45218005203, 58171.59849176116, + 37917.21209163224, 19906.771060673305, -537.8133162355471, + -13911.192312464726, -25323.786630618688, -32353.680925478642, + -36482.13828179352, -39739.80278543321, -43609.58764784895, + -48400.243695819045, -55191.398679355836, -61985.466222555406, + -67973.40223053932, -72324.46095711131, -72286.65502516546, + -71657.58836118088, -67135.64498614923, -64019.76595360098, + -60591.61264693777, -58556.712565935406, -59516.9725247856, + -60516.78621121936, -63393.250352406234, -63899.577106093886, + -62728.05329450215, -59197.52197470393, -53207.36383511738, + -47172.29934497381, -41481.62136634499, -38221.55490494586, + -37612.712305159024, -39458.210808737305, -42753.57792108329, + -46029.09557292745, -47939.80888663119, -46980.31586001356, + -43441.82104680678, -37100.165106485554, -13010.73750243797 + ], + "flow:branch1_seg0:J1": [ + 3.040575088679457, 8.28261986860831, 13.859266720799841, + 20.333980599933575, 27.44239462984382, 37.375812475563734, + 50.51807884104423, 68.90354894026034, 94.44526761533126, + 124.50853446420807, 165.4385766275633, 205.67117788727103, + 253.65714578894816, 297.41410716568953, 331.9949106672555, + 369.08976576987305, 386.80678143129563, 405.6566967649843, + 403.9411218466176, 391.3074697001748, 367.7126626138887, + 329.64232122373215, 287.9650655865389, 231.19498976720394, + 172.4025346389853, 101.99076961067361, 30.134996285255735, + -41.87103668245816, -109.62203369984783, -174.46101589770996, + -227.05633226799787, -278.1560034482665, -314.43069625956883, + -339.74457886392366, -362.25667822866944, -371.19163583722883, + -384.06140154852454, -382.73206417058, -382.2282903944205, + -368.6203859151184, -348.82053481040583, -324.7165585286027, + -287.2244269815217, -254.85119679631157, -209.0213417846539, + -167.4386917722322, -125.60477012803413, -85.7296401970977, + -55.931972843640054, -29.20392849208812, -7.882879475981195, + 10.35136214811741, 27.86306451392966, 44.035312363837505, + 59.42569004494991, 75.21481246424553, 87.22675537095476, + 98.89199973675429, 102.84454969315223, 102.6666046092018, + 96.29820184679316, 83.26843585424832, 70.49273531720327, + 53.85215293765418, 39.19980395119021, 25.63174008834397, + 13.928840087781408, 5.504003535812437, -1.3316962019127871, + -7.24615206642152, -12.654851629290373, -18.644962844585788, + -24.27126416037389, -29.360983592281723, -33.505908821543436, + -35.139830569664916, -36.23416567428145, -34.42477407987873, + -32.44958788381284, -29.744679963742264, -26.904188854853533, + -25.970870922027814, -25.09837621891388, -25.415222604879293, + -25.043555852685053, -23.826118196987714, -21.49685093645141, + -17.7285539922542, -13.5653880572388, -9.115374578818402, + -5.580772576990627, -3.1766869531919864, -2.388206504279726, + -3.012925393387903, -4.293558597373333, -5.537441085722389, + -5.622535428756248, -4.377662132738162, -1.3625370961971965, + 3.040575088679457 + ], + "pressure:branch1_seg0:J1": [ + -13653.325100940168, -21715.246241798293, -13906.195277164175, + -4896.955009618543, 4828.4199638502805, 19298.8416798914, + 40349.35760838223, 69442.58375392876, 111097.06438617027, + 158229.214237869, 221266.87284588403, 281165.16518894356, + 350846.23359854304, 413139.8332265571, 459705.80361279065, + 512421.93998953525, 529534.6404123495, 560023.022389712, + 555928.4666866412, 540387.6415558598, 518033.8419181116, + 468530.80924033985, 420656.50082477485, 347710.6575540397, + 272268.23663865874, 184932.8414980178, 95154.15875742571, + 2944.0058135097656, -78676.74253269906, -160729.14216489877, + -219219.22533867092, -280034.93706304574, -319909.0529571286, + -345278.0591382088, -375446.70935962145, -380771.57016262895, + -403835.3201987467, -401868.0860955597, -402867.3659555381, + -393412.56578057376, -369158.32289399375, -342327.39833163423, + -295524.74492566066, -256435.43158445193, -203835.6106640384, + -163147.35652673175, -121636.09993713355, -88531.9074812355, + -66015.24470680693, -47365.3044063716, -34739.131760508695, + -21919.50619923687, -7796.203938589882, 8971.990321916353, + 26603.5834870858, 46924.347092481396, 60863.91030916752, + 73601.70836967221, 75464.95766798436, 71088.68622469083, + 59119.409458625225, 39580.90828977418, 22248.89787381887, + 1745.459540213999, -11977.821093569557, -23790.402095295267, + -31277.259007005836, -35453.21596452493, -38815.67722532993, + -42764.22290122565, -47658.679850632194, -54369.96911264953, + -61330.87538864561, -67199.35492721312, -71845.73999207209, + -72115.54904590083, -71764.10542750129, -67487.10063994037, + -64250.350955354006, -60836.8220448978, -58668.795093363595, + -59703.268406885974, -60588.9387079009, -63439.15891352103, + -64054.66167663769, -62741.84861451116, -59572.45044393196, + -53687.39286096583, -47830.14282322406, -42144.31455570315, + -38611.94768268236, -37786.465389260266, -39406.65204525843, + -42589.70953710095, -45860.88363162638, -47854.697878448234, + -47060.582647004194, -43735.91046763336, -37575.7819328568, + -13653.325100940168 + ], + "flow:J1:branch2_seg0": [ + 1.6055030108753163, 5.586692910754157, 9.998495788642012, + 15.21404556620604, 20.97386748314776, 28.919322791158255, + 39.11324078849922, 53.35400585749136, 72.9224765227466, 96.1331711385309, + 128.2918347604308, 160.00008623581013, 198.6244335604393, + 233.97096080153204, 262.89454148183046, 294.25827445424966, + 310.8805138397495, 328.45753807205585, 329.62302259799253, + 322.0444942855636, 304.50907092675726, 276.33293035641304, + 244.5383324491827, 200.8800083181541, 155.58281267044225, + 99.77044288439774, 42.63362891264978, -14.973663227964796, + -70.09003924473983, -123.25932047178875, -167.69156866855022, + -211.54697533606, -243.48462157451704, -267.14118429378664, + -287.69767810891244, -298.0389461924494, -310.7601793405488, + -312.2237902483148, -314.4413515621982, -304.8309448872813, + -291.24312085301176, -273.53825846265113, -245.30150629894226, + -221.41719899025296, -185.12498428985003, -151.5771267624065, + -116.98373483563421, -83.0617931373936, -57.28578740106908, + -33.54293495406058, -14.251221450084008, 2.21092242677426, + 17.823518701957504, 31.730063621064062, 44.793059901877015, + 57.942886069268155, 68.23837997906142, 78.64153371141066, + 82.88079117408321, 84.14117683942919, 80.27231827624081, + 70.95094571682873, 61.68083384593679, 48.67747310453396, + 36.75314989674622, 25.28375938058421, 14.95144816593957, 7.28357311141203, + 0.9715096434151526, -4.371580379041408, -9.081427222656744, + -14.126119004240646, -18.75751860946961, -23.043889990256766, + -26.60399789706434, -28.319566944735023, -29.734264229761795, + -28.747984060280697, -27.54338695318621, -25.533261485253398, + -23.20630173740183, -22.297673875066813, -21.359189253042942, + -21.39343997740469, -20.990313526294223, -20.05866842168159, + -18.313798592330713, -15.536819989064306, -12.381854038051124, + -8.88654914533683, -5.95105535171334, -3.691610166003399, + -2.630238529389116, -2.710363210413578, -3.42359051563001, + -4.305095622589552, -4.458969450256258, -3.717835196237883, + -1.6345882509579683, 1.6055030108753163 + ], + "pressure:J1:branch2_seg0": [ + -13653.325100940168, -21715.246241798293, -13906.195277164175, + -4896.955009618543, 4828.4199638502805, 19298.8416798914, + 40349.35760838223, 69442.58375392876, 111097.06438617027, + 158229.214237869, 221266.87284588403, 281165.16518894356, + 350846.23359854304, 413139.8332265571, 459705.80361279065, + 512421.93998953525, 529534.6404123495, 560023.022389712, + 555928.4666866412, 540387.6415558598, 518033.8419181116, + 468530.80924033985, 420656.50082477485, 347710.6575540397, + 272268.23663865874, 184932.8414980178, 95154.15875742571, + 2944.0058135097656, -78676.74253269906, -160729.14216489877, + -219219.22533867092, -280034.93706304574, -319909.0529571286, + -345278.0591382088, -375446.70935962145, -380771.57016262895, + -403835.3201987467, -401868.0860955597, -402867.3659555381, + -393412.56578057376, -369158.32289399375, -342327.39833163423, + -295524.74492566066, -256435.43158445193, -203835.6106640384, + -163147.35652673175, -121636.09993713355, -88531.9074812355, + -66015.24470680693, -47365.3044063716, -34739.131760508695, + -21919.50619923687, -7796.203938589882, 8971.990321916353, + 26603.5834870858, 46924.347092481396, 60863.91030916752, + 73601.70836967221, 75464.95766798436, 71088.68622469083, + 59119.409458625225, 39580.90828977418, 22248.89787381887, + 1745.459540213999, -11977.821093569557, -23790.402095295267, + -31277.259007005836, -35453.21596452493, -38815.67722532993, + -42764.22290122565, -47658.679850632194, -54369.96911264953, + -61330.87538864561, -67199.35492721312, -71845.73999207209, + -72115.54904590083, -71764.10542750129, -67487.10063994037, + -64250.350955354006, -60836.8220448978, -58668.795093363595, + -59703.268406885974, -60588.9387079009, -63439.15891352103, + -64054.66167663769, -62741.84861451116, -59572.45044393196, + -53687.39286096583, -47830.14282322406, -42144.31455570315, + -38611.94768268236, -37786.465389260266, -39406.65204525843, + -42589.70953710095, -45860.88363162638, -47854.697878448234, + -47060.582647004194, -43735.91046763336, -37575.7819328568, + -13653.325100940168 + ], + "flow:J1:branch11_seg0": [ + 1.435072077802249, 2.69592695785441, 3.8607709321585677, + 5.119935033726875, 6.468527146697165, 8.45648968440569, + 11.404838052544623, 15.549543082767405, 21.522791092578153, + 28.375363325677366, 37.146741867134494, 45.67109165145832, + 55.03271222850889, 63.44314636416073, 69.10036918542521, + 74.83149131562271, 75.9262675915422, 77.1991586929317, 74.31809924863086, + 69.26297541459684, 63.20359168713229, 53.309390867305396, + 43.42673313734852, 30.314981449037298, 16.819721968558184, + 2.22032672627323, -12.498632627386014, -26.897373454502965, + -39.531994455121726, -51.20169542591681, -59.36476359943991, + -66.60902811221406, -70.94607468503848, -72.60339457013463, + -74.55900011976178, -73.15268964478206, -73.30122220796596, + -70.50827392227147, -67.78693883222455, -63.78944102783905, + -57.57741395739438, -51.17830006595087, -41.92292068258043, + -33.43399780606243, -23.896357494805414, -15.861565009825787, + -8.621035292398417, -2.667847059703049, 1.3538145574290747, + 4.339006461973415, 6.368341974102251, 8.140439721343732, + 10.039545811972063, 12.305248742772667, 14.632630143073195, + 17.271926394975875, 18.988375391896902, 20.25046602534365, + 19.96375851906881, 18.525427769774595, 16.025883570555404, + 12.317490137421197, 8.811901471269751, 5.174679833123533, + 2.4466540544470945, 0.34798070776392653, -1.022608078155658, + -1.7795695756035834, -2.3032058453324495, -2.874571687381534, + -3.5734244066382286, -4.518843840347, -5.513745550904787, + -6.3170936020227675, -6.9019109244809265, -6.820263624933928, + -6.4999014445224175, -5.676790019601393, -4.906200930627953, + -4.211418478487819, -3.6978871174513093, -3.673197046959211, + -3.7391869658734347, -4.021782627476297, -4.053242326389387, + -3.767449775307491, -3.1830523441230874, -2.191734003187355, + -1.1835340191873178, -0.22882543347979822, 0.3702827747223785, + 0.5149232128132274, 0.24203202511006017, -0.30256218297286186, + -0.8699680817432726, -1.232345463133734, -1.1635659785019954, + -0.6598269364986481, 0.272051154761289, 1.435072077802249 + ], + "pressure:J1:branch11_seg0": [ + -13653.325100940168, -21715.246241798293, -13906.195277164175, + -4896.955009618543, 4828.4199638502805, 19298.8416798914, + 40349.35760838223, 69442.58375392876, 111097.06438617027, + 158229.214237869, 221266.87284588403, 281165.16518894356, + 350846.23359854304, 413139.8332265571, 459705.80361279065, + 512421.93998953525, 529534.6404123495, 560023.022389712, + 555928.4666866412, 540387.6415558598, 518033.8419181116, + 468530.80924033985, 420656.50082477485, 347710.6575540397, + 272268.23663865874, 184932.8414980178, 95154.15875742571, + 2944.0058135097656, -78676.74253269906, -160729.14216489877, + -219219.22533867092, -280034.93706304574, -319909.0529571286, + -345278.0591382088, -375446.70935962145, -380771.57016262895, + -403835.3201987467, -401868.0860955597, -402867.3659555381, + -393412.56578057376, -369158.32289399375, -342327.39833163423, + -295524.74492566066, -256435.43158445193, -203835.6106640384, + -163147.35652673175, -121636.09993713355, -88531.9074812355, + -66015.24470680693, -47365.3044063716, -34739.131760508695, + -21919.50619923687, -7796.203938589882, 8971.990321916353, + 26603.5834870858, 46924.347092481396, 60863.91030916752, + 73601.70836967221, 75464.95766798436, 71088.68622469083, + 59119.409458625225, 39580.90828977418, 22248.89787381887, + 1745.459540213999, -11977.821093569557, -23790.402095295267, + -31277.259007005836, -35453.21596452493, -38815.67722532993, + -42764.22290122565, -47658.679850632194, -54369.96911264953, + -61330.87538864561, -67199.35492721312, -71845.73999207209, + -72115.54904590083, -71764.10542750129, -67487.10063994037, + -64250.350955354006, -60836.8220448978, -58668.795093363595, + -59703.268406885974, -60588.9387079009, -63439.15891352103, + -64054.66167663769, -62741.84861451116, -59572.45044393196, + -53687.39286096583, -47830.14282322406, -42144.31455570315, + -38611.94768268236, -37786.465389260266, -39406.65204525843, + -42589.70953710095, -45860.88363162638, -47854.697878448234, + -47060.582647004194, -43735.91046763336, -37575.7819328568, + -13653.325100940168 + ], + "flow:branch2_seg0:J2": [ + 1.1895153231894002, 5.16223210202175, 9.557985874852044, + 14.739290745640275, 20.45851553475228, 27.95742938954021, + 37.930907768932244, 51.377613818571156, 70.55968724459468, + 93.38862645515245, 124.89160027173783, 157.37758930628743, + 194.76942407406662, 231.00130456960824, 259.807591276064, + 292.39425203275437, 309.5875710963511, 328.0984956957714, + 330.7907435727652, 322.22946424862806, 306.6455532909732, + 277.8879803201895, 248.1967036834206, 205.139464213022, 159.5810718364514, + 104.72585595374929, 47.17229886338693, -10.307743324114314, + -65.67375790048712, -119.5724387454747, -165.09705244149615, + -208.7881522765329, -242.0067521975754, -264.9910110371753, + -286.85563193296065, -296.6476247032964, -310.6779378167652, + -313.2431981649219, -313.89010781815495, -306.4644477511469, + -291.5188785177927, -275.6580133394332, -247.78338077066502, + -223.62672072162033, -188.3087167548712, -153.47499003436545, + -118.83266278477356, -84.49940992704798, -58.260679407637156, + -34.29469477016391, -14.987954854596783, 1.6482523692378814, + 16.889594357173486, 30.85457867741872, 43.68891647725549, + 57.04446306041689, 67.76433767183724, 78.0872401955, 83.28660665296307, + 84.32680566078652, 81.10171011354814, 71.88670085262291, 62.6824300969544, + 49.66535010166593, 37.45368542027966, 25.737422485223263, + 15.252786072031062, 7.451021163305194, 1.1355377800731332, + -4.127366451915767, -8.835621579596687, -13.715152789981225, + -18.452428765981946, -22.695448805495484, -26.47898058081294, + -28.360408181555787, -29.840208805719556, -29.0724311458997, + -27.675651440523016, -25.662211613650555, -23.206023774509656, + -22.237406348885834, -21.246608312652974, -21.318433183908766, + -21.03431070771017, -20.1337452251619, -18.57285214509279, + -15.792103389908311, -12.727111572812971, -9.14305555778675, + -6.064704807744156, -3.679382528714696, -2.485068184906283, + -2.5248357565165778, -3.2757226232184578, -4.260370202092915, + -4.579263787333959, -3.9689940442459104, -1.999249607074474, + 1.1895153231894002 + ], + "pressure:branch2_seg0:J2": [ + -14251.179283437232, -22480.902391322576, -14782.645067023803, + -5823.717032274163, 3860.5055964801027, 17697.983847426225, + 38312.41746192966, 66248.57229776977, 107245.55177258703, + 153986.6517203663, 215820.28467263634, 275900.4395130657, + 343518.6357356762, 406171.4905248491, 452697.5090336108, + 508703.39488796116, 527844.6724405015, 558976.910479077, + 556818.0195736331, 538685.646549535, 520883.66788910795, + 472526.77753174887, 428044.7461285847, 357406.34106526076, + 280335.41870705946, 193977.7540786677, 104342.37935472648, + 12879.429370005773, -68714.40377612453, -152019.230887111, + -212468.95302677088, -273293.70788374095, -314455.21785942296, + -338806.20953743503, -372625.64975703816, -378804.560567573, + -403499.6637444604, -403599.95034307695, -400951.7992662004, + -394134.8394465672, -369388.22333346785, -345986.0782147298, + -302063.55331863504, -262437.98277968884, -210326.03659790853, + -167777.34408638568, -126538.84430030844, -93234.93065552086, + -71048.78139647182, -51662.88057162713, -37997.75324418059, + -24398.545362849072, -10060.83723765638, 6694.0589893995975, + 24011.821009844956, 44662.39814919727, 59444.82603756553, + 72119.60108834296, 75015.00380061392, 70597.20135401166, + 59804.81218821555, 41210.66165272272, 24630.134905199076, + 4338.759822862059, -9969.145296594003, -22090.374953524468, + -30046.710612459116, -34231.365993939704, -37715.59024886533, + -41802.50340644519, -46845.76531579173, -53508.24495106712, + -60585.65099804377, -66358.34093450326, -71279.71960896056, + -71933.18734076618, -71755.034227155, -67809.68680280533, + -64400.06428625241, -61064.03250412306, -58810.456554433586, + -59975.304198320286, -60798.68206848542, -63493.416612009874, + -64155.4450573213, -62690.242574424476, -59863.77929515926, + -54138.437892686845, -48515.38371285758, -42881.42523858891, + -39073.49279137646, -38032.671349703705, -39428.71842322324, + -42490.03475588669, -45722.03738602748, -47752.59959090031, + -47104.67061034423, -43948.68515610047, -37987.35506119275, + -14251.179283437232 + ], + "flow:J2:branch3_seg0": [ + 0.5143296223478472, 2.4201373340443837, 4.513841278005515, + 7.035066739792822, 9.844929418138303, 13.679989684916114, + 18.601184284333016, 25.35104469767321, 34.67848003455319, + 45.64374993828651, 61.47178414943805, 77.02221982119258, + 95.72883915046738, 112.53577363715544, 125.59998956908801, + 140.91742924200474, 148.4735034237818, 158.45476075485288, + 159.47147773546072, 155.35021216100083, 145.73773604515716, + 131.46482953334097, 116.86871048129625, 96.72102342410636, + 76.1598179193469, 49.33532629874888, 21.860981327176944, + -5.682819427772942, -31.20610497787197, -56.01568380926188, + -76.69559166122939, -97.9084156690379, -113.25505658781925, + -124.02353575177766, -133.43126812096205, -137.93026724755256, + -145.55289383720535, -147.60368044889992, -149.64516619682252, + -145.07421139762778, -138.37534704197074, -130.237231212947, + -117.35295833368751, -108.1933316709476, -91.65284380774759, + -75.88795567069639, -58.75752450474538, -42.04999455892759, + -30.00727825640238, -18.94701134442022, -10.032004174825401, + -1.734866828404658, 6.2582108420058935, 13.402271054164588, + 19.789911213732008, 26.24554455757317, 31.400168733194832, + 36.905262354460326, 39.37247209403231, 40.10565230712004, + 38.20406559224187, 33.555318284550296, 29.534784369228376, + 23.48421421574263, 18.056780531241973, 12.427246141891043, + 7.26242312274936, 3.423091787711094, 0.41217462151316625, + -2.0544925813936508, -4.325699578468173, -6.824504798204588, + -9.182547465818475, -11.289888350503551, -13.013753245941334, + -13.802230069486967, -14.64493269288883, -14.268522269289157, + -13.754964633957291, -12.740550073369981, -11.517797481192158, + -11.111853910394661, -10.675511894220532, -10.844888888644261, + -10.681087896372357, -10.193489621134328, -9.263267349247664, + -7.875344798415364, -6.407256778871803, -4.758226950606137, + -3.3880536079925014, -2.231556851346227, -1.6413978373642768, + -1.6158764521858486, -1.9395132741494663, -2.388761447964487, + -2.4649123129162684, -2.1103691488682395, -1.0846756816594807, + 0.5143296223478472 + ], + "pressure:J2:branch3_seg0": [ + -14251.179283437232, -22480.902391322576, -14782.645067023803, + -5823.717032274163, 3860.5055964801027, 17697.983847426225, + 38312.41746192966, 66248.57229776977, 107245.55177258703, + 153986.6517203663, 215820.28467263634, 275900.4395130657, + 343518.6357356762, 406171.4905248491, 452697.5090336108, + 508703.39488796116, 527844.6724405015, 558976.910479077, + 556818.0195736331, 538685.646549535, 520883.66788910795, + 472526.77753174887, 428044.7461285847, 357406.34106526076, + 280335.41870705946, 193977.7540786677, 104342.37935472648, + 12879.429370005773, -68714.40377612453, -152019.230887111, + -212468.95302677088, -273293.70788374095, -314455.21785942296, + -338806.20953743503, -372625.64975703816, -378804.560567573, + -403499.6637444604, -403599.95034307695, -400951.7992662004, + -394134.8394465672, -369388.22333346785, -345986.0782147298, + -302063.55331863504, -262437.98277968884, -210326.03659790853, + -167777.34408638568, -126538.84430030844, -93234.93065552086, + -71048.78139647182, -51662.88057162713, -37997.75324418059, + -24398.545362849072, -10060.83723765638, 6694.0589893995975, + 24011.821009844956, 44662.39814919727, 59444.82603756553, + 72119.60108834296, 75015.00380061392, 70597.20135401166, + 59804.81218821555, 41210.66165272272, 24630.134905199076, + 4338.759822862059, -9969.145296594003, -22090.374953524468, + -30046.710612459116, -34231.365993939704, -37715.59024886533, + -41802.50340644519, -46845.76531579173, -53508.24495106712, + -60585.65099804377, -66358.34093450326, -71279.71960896056, + -71933.18734076618, -71755.034227155, -67809.68680280533, + -64400.06428625241, -61064.03250412306, -58810.456554433586, + -59975.304198320286, -60798.68206848542, -63493.416612009874, + -64155.4450573213, -62690.242574424476, -59863.77929515926, + -54138.437892686845, -48515.38371285758, -42881.42523858891, + -39073.49279137646, -38032.671349703705, -39428.71842322324, + -42490.03475588669, -45722.03738602748, -47752.59959090031, + -47104.67061034423, -43948.68515610047, -37987.35506119275, + -14251.179283437232 + ], + "flow:J2:branch7_seg0": [ + 0.6751857008423099, 2.742094767978213, 5.044144596847125, + 7.704224005847261, 10.613586116611563, 14.277439704623019, + 19.329723484598, 26.02656912089951, 35.88120721003998, 47.74487651686388, + 63.41981612229953, 80.35536948509265, 99.04058492360248, + 118.46553093245674, 134.20760170697315, 151.47682279074175, + 161.11406767257938, 169.6437349409245, 171.3192658373035, + 166.87925208762985, 160.90781724581544, 146.4231507868466, + 131.32799320212365, 108.41844078891197, 83.4212539171103, + 55.39052965500959, 25.311317536202875, -4.624923896360551, + -34.46765292262188, -63.55675493620935, -88.4014607802556, + -110.87973660749054, -128.75169560976835, -140.96747528538768, + -153.42436381199488, -158.71735745575182, -165.12504397956374, + -165.63951771602373, -164.24494162133118, -161.39023635352132, + -153.14353147581951, -145.42078212648698, -130.43042243697926, + -115.43338905066945, -96.65587294712107, -77.58703436366847, + -60.07513828002915, -42.44941536812181, -28.25340115123502, + -15.347683425744025, -4.955950679771465, 3.383119197642138, + 10.631383515167121, 17.45230762325388, 23.89900526352323, + 30.7989185028444, 36.36416893864082, 41.18197784104062, 43.91413455892915, + 44.22115335366413, 42.897644521307285, 38.331382568073025, + 33.14764572772783, 26.1811358859278, 19.396904889039014, + 13.31017634332934, 7.990362949285901, 4.027929375589116, + 0.7233631585606821, -2.072873870524698, -4.509922001130609, + -6.890647991777463, -9.269881300164824, -11.40556045498996, + -13.465227334873871, -14.558178112073902, -15.195276112835115, + -14.803908876609182, -13.920686806568135, -12.921661540283964, + -11.688226293317896, -11.125552438491848, -10.571096418433632, + -10.473544295263746, -10.35322281133923, -9.94025560402927, + -9.309584795846014, -7.916758591493656, -6.319854793940855, + -4.384828607178171, -2.676651199753514, -1.4478256773688265, + -0.843670347539259, -0.9089593043295109, -1.3362093490706535, + -1.8716087541273656, -2.1143514744191396, -1.858624895376865, + -0.9145739254147396, 0.6751857008423099 + ], + "pressure:J2:branch7_seg0": [ + -14251.179283437232, -22480.902391322576, -14782.645067023803, + -5823.717032274163, 3860.5055964801027, 17697.983847426225, + 38312.41746192966, 66248.57229776977, 107245.55177258703, + 153986.6517203663, 215820.28467263634, 275900.4395130657, + 343518.6357356762, 406171.4905248491, 452697.5090336108, + 508703.39488796116, 527844.6724405015, 558976.910479077, + 556818.0195736331, 538685.646549535, 520883.66788910795, + 472526.77753174887, 428044.7461285847, 357406.34106526076, + 280335.41870705946, 193977.7540786677, 104342.37935472648, + 12879.429370005773, -68714.40377612453, -152019.230887111, + -212468.95302677088, -273293.70788374095, -314455.21785942296, + -338806.20953743503, -372625.64975703816, -378804.560567573, + -403499.6637444604, -403599.95034307695, -400951.7992662004, + -394134.8394465672, -369388.22333346785, -345986.0782147298, + -302063.55331863504, -262437.98277968884, -210326.03659790853, + -167777.34408638568, -126538.84430030844, -93234.93065552086, + -71048.78139647182, -51662.88057162713, -37997.75324418059, + -24398.545362849072, -10060.83723765638, 6694.0589893995975, + 24011.821009844956, 44662.39814919727, 59444.82603756553, + 72119.60108834296, 75015.00380061392, 70597.20135401166, + 59804.81218821555, 41210.66165272272, 24630.134905199076, + 4338.759822862059, -9969.145296594003, -22090.374953524468, + -30046.710612459116, -34231.365993939704, -37715.59024886533, + -41802.50340644519, -46845.76531579173, -53508.24495106712, + -60585.65099804377, -66358.34093450326, -71279.71960896056, + -71933.18734076618, -71755.034227155, -67809.68680280533, + -64400.06428625241, -61064.03250412306, -58810.456554433586, + -59975.304198320286, -60798.68206848542, -63493.416612009874, + -64155.4450573213, -62690.242574424476, -59863.77929515926, + -54138.437892686845, -48515.38371285758, -42881.42523858891, + -39073.49279137646, -38032.671349703705, -39428.71842322324, + -42490.03475588669, -45722.03738602748, -47752.59959090031, + -47104.67061034423, -43948.68515610047, -37987.35506119275, + -14251.179283437232 + ], + "flow:branch3_seg2:J3": [ + -0.10982349511002992, 1.7692951529485454, 3.9396263179716713, + 6.392629413191461, 9.055488872282325, 12.196477027498505, + 16.815675472558368, 22.59458522669098, 31.60042377955794, + 42.44817198563112, 56.22007653649177, 72.42631736777093, + 88.96738849314652, 107.90576836800241, 123.18061624790984, + 139.30225724907712, 148.379949191685, 156.17627525872948, + 157.97345630949687, 154.2281444384545, 150.16132706016091, + 136.02706080071988, 123.21090874887257, 102.19209328250882, + 79.62210916229965, 55.45086754885682, 28.573685477709837, + 1.8224871461075214, -24.95439683683455, -50.785754979050964, + -73.32839411349819, -92.78049744979855, -109.73361725891544, + -121.20311235121353, -133.5552021441198, -138.3275628406338, + -145.202844856919, -146.64734258067037, -146.0502384421579, + -146.65192512230632, -139.66986155528608, -135.2531512047155, + -122.87426368479845, -109.5545267850277, -94.24031443678797, + -77.29083470634, -61.74738069537915, -45.94096718694397, + -32.35105936370722, -20.116082230251568, -10.441422899226385, + -2.056005301094969, 4.786850185626583, 11.766869435498608, + 18.0887800365287, 25.035980121061595, 30.87678261168513, + 35.627504370321965, 39.29367291372166, 39.92391424929126, + 39.587418893715196, 35.83294104806082, 31.06003128293234, + 24.75704285876469, 18.5687286240509, 12.784862587612814, + 7.9015385635094955, 4.019661471493689, 0.8400006925210836, + -1.726612564501015, -4.087132797345788, -6.268893664428732, + -8.666796545437299, -10.700162512550616, -12.836048191317962, + -14.03983681017064, -14.668664637757606, -14.546746700390898, + -13.733391788309078, -12.899260702662255, -11.801068599280006, + -11.191549922213254, -10.632341637226293, -10.574414187120517, + -10.492486057350831, -10.194237589598849, -9.741882524041321, + -8.430586567421862, -7.012801874060854, -5.096030730641604, + -3.415290686341353, -2.1660295065199007, -1.4813441208979292, + -1.4384110721992207, -1.790638622984844, -2.2904750742809847, + -2.584610956979369, -2.390795092847897, -1.5758837522195468, + -0.10982349511002992 + ], + "pressure:branch3_seg2:J3": [ + -18743.459044653384, -28202.298579948612, -20878.88203750761, + -13263.684350832673, -4202.077828542973, 6161.933535206509, + 23535.70540721979, 44947.536759690454, 78555.41309006447, + 119558.68303778111, 167546.87764369874, 229651.17727664055, + 282983.199092816, 354095.8162277401, 402956.6976384781, + 456150.12787643075, 497038.31862027914, 517325.52982798166, + 543360.8524566143, 527973.9794059737, 528530.1895091314, + 489788.0787648204, 454490.6331544258, 399096.00151867844, + 326196.6391432964, 258148.68754673423, 169788.53709298017, + 87589.99248161835, 2247.2505523445075, -76690.4534145867, + -149080.24765311513, -203723.50329054572, -262323.44162195455, + -291431.8443530988, -331164.86758960516, -350014.2747656654, + -368312.06624324876, -386631.3773596161, -379452.3489937911, + -393611.8477757254, -368849.2526689676, -360429.9218076095, + -326398.9068290954, -284583.7702883643, -252833.00700603196, + -200188.4397976783, -169845.9270616763, -128899.95741075052, + -101364.01675541706, -79351.87394258568, -59754.96742496738, + -44852.91318959738, -29413.086484171512, -11476.881773468245, + 5802.274990077089, 25956.535069963276, 44314.3567146259, + 56075.16297326205, 68677.18914224663, 65801.63628507208, + 64858.94820860036, 50855.53525696161, 35379.53147860236, + 20615.964839267966, 2791.52741334234, -7854.009734117505, + -18905.13871200313, -25360.15484328246, -30505.289008039115, + -35355.37889764309, -40749.272741899695, -46490.8997527786, + -54062.09742513675, -59851.25966865161, -66045.70448506883, + -68994.7679082991, -69065.97635175673, -68943.06356580787, + -64701.48750134123, -63534.900449887886, -60476.836821373196, + -60237.65666795092, -61202.137908774464, -62090.469660737035, + -64094.43665227004, -62989.66701846276, -61815.26532652206, + -57315.041836053446, -52513.70858055522, -47190.748854824335, + -42658.48724781661, -40589.68602707057, -40190.55484230645, + -41936.49628706027, -44313.749139884254, -46335.59023982538, + -46920.716931847055, -44995.167973687196, -41144.66076193385, + -18743.459044653384 + ], + "flow:J3:branch4_seg0": [ + -0.5041425723057251, 0.6154357807771406, 1.989833574338895, + 3.6497182113854403, 5.391740328275032, 7.502772369733205, + 10.422717234964603, 14.003179746663816, 19.66578895924137, + 26.242809612969538, 35.161540734353345, 45.10059679064722, + 56.26127454936141, 68.50215588406003, 79.09139459451079, + 90.99367604544328, 96.76002292253568, 104.10574801535917, + 104.87089578309683, 104.31446796973825, 102.56739833525675, + 93.77898608651458, 86.92664727488078, 72.954417288298, 59.559924565077026, + 43.876839097162105, 27.047722593107327, 9.762547901966299, + -7.718396045715678, -25.160029418281677, -40.21074287466303, + -54.358768351186725, -66.00540902290238, -75.12372605184815, + -84.89377551723483, -88.58476859276566, -95.34669573225673, + -96.15876917987566, -97.80904407921926, -98.91790715904389, + -95.63911290336584, -94.32340727846876, -86.69400232536414, + -79.66702731110918, -69.33185201787329, -59.23430092999148, + -48.45321205150328, -37.806954373048086, -28.119671792450728, + -18.717654379802273, -11.50312783503149, -4.884718722216521, + 0.2543931745169051, 5.389465941151101, 9.90835570822517, + 14.903874012899331, 18.90867663582634, 22.64764538622138, + 25.36132904985353, 26.584429544082745, 26.99482211134185, + 25.12175371876502, 22.66647847948438, 18.447799547402077, + 14.641281449849963, 10.434156277448652, 6.992679684397184, + 4.0332508683359265, 1.5039615647305904, -0.4832171229634843, + -2.246551490074578, -3.8022480129175156, -5.415295766975935, + -6.817031006038371, -8.363738534586155, -9.276530615453083, + -10.012041602995902, -10.041221262596299, -9.808391660971958, + -9.308203238692988, -8.648322357989024, -8.238495083157158, + -7.658839650336672, -7.5991063678713155, -7.370928718994234, + -7.235574674982644, -7.010641689508112, -6.228687306110847, + -5.451388706029683, -4.177262775379661, -3.0755549372063333, + -2.1103745719612186, -1.4841433142842382, -1.249005947272783, + -1.3037367230397385, -1.5400706084148557, -1.726857374828866, + -1.7111053456426855, -1.3083391741128763, -0.5041425723057251 + ], + "pressure:J3:branch4_seg0": [ + -18743.459044653384, -28202.298579948612, -20878.88203750761, + -13263.684350832673, -4202.077828542973, 6161.933535206509, + 23535.70540721979, 44947.536759690454, 78555.41309006447, + 119558.68303778111, 167546.87764369874, 229651.17727664055, + 282983.199092816, 354095.8162277401, 402956.6976384781, + 456150.12787643075, 497038.31862027914, 517325.52982798166, + 543360.8524566143, 527973.9794059737, 528530.1895091314, + 489788.0787648204, 454490.6331544258, 399096.00151867844, + 326196.6391432964, 258148.68754673423, 169788.53709298017, + 87589.99248161835, 2247.2505523445075, -76690.4534145867, + -149080.24765311513, -203723.50329054572, -262323.44162195455, + -291431.8443530988, -331164.86758960516, -350014.2747656654, + -368312.06624324876, -386631.3773596161, -379452.3489937911, + -393611.8477757254, -368849.2526689676, -360429.9218076095, + -326398.9068290954, -284583.7702883643, -252833.00700603196, + -200188.4397976783, -169845.9270616763, -128899.95741075052, + -101364.01675541706, -79351.87394258568, -59754.96742496738, + -44852.91318959738, -29413.086484171512, -11476.881773468245, + 5802.274990077089, 25956.535069963276, 44314.3567146259, + 56075.16297326205, 68677.18914224663, 65801.63628507208, + 64858.94820860036, 50855.53525696161, 35379.53147860236, + 20615.964839267966, 2791.52741334234, -7854.009734117505, + -18905.13871200313, -25360.15484328246, -30505.289008039115, + -35355.37889764309, -40749.272741899695, -46490.8997527786, + -54062.09742513675, -59851.25966865161, -66045.70448506883, + -68994.7679082991, -69065.97635175673, -68943.06356580787, + -64701.48750134123, -63534.900449887886, -60476.836821373196, + -60237.65666795092, -61202.137908774464, -62090.469660737035, + -64094.43665227004, -62989.66701846276, -61815.26532652206, + -57315.041836053446, -52513.70858055522, -47190.748854824335, + -42658.48724781661, -40589.68602707057, -40190.55484230645, + -41936.49628706027, -44313.749139884254, -46335.59023982538, + -46920.716931847055, -44995.167973687196, -41144.66076193385, + -18743.459044653384 + ], + "flow:J3:branch10_seg0": [ + 0.3943190771956738, 1.153859372170816, 1.9497927436325457, + 2.742911201806991, 3.663748544006544, 4.693704657764707, + 6.392958237594017, 8.591405480028447, 11.934634820316605, + 16.205362372662524, 21.05853580213801, 27.325720577123864, + 32.70611394378858, 39.40361248394199, 44.08922165340077, + 48.30858120363261, 51.61992626915118, 52.07052724337275, + 53.10256052640118, 49.9136764687163, 47.593928724905574, 42.248074714203, + 36.28426147399864, 29.23767599421438, 20.06218459722195, + 11.574028451696439, 1.5259628845965691, -7.940060755858697, + -17.236000791126028, -25.625725560770437, -33.11765123883444, + -38.42172909861619, -43.72820823601576, -46.079386299369055, + -48.661426626888485, -49.74279424786504, -49.856149124667, + -50.4885734007932, -48.241194362934955, -47.734017963263895, + -44.03074865191829, -40.92974392624722, -36.180261359435, + -29.887499473918062, -24.90846241891362, -18.05653377634725, + -13.294168643874878, -8.134012813895648, -4.231387571256616, + -1.3984278504491983, 1.0617049358056774, 2.828713421121544, + 4.5324570111098055, 6.377403494347333, 8.1804243283026, + 10.132106108162299, 11.96810597585915, 12.979858984100714, + 13.932343863869475, 13.33948470520944, 12.592596782374173, + 10.711187329294255, 8.393552803447356, 6.309243311361991, + 3.9274471742027646, 2.350706310163006, 0.9088588791120136, + -0.01358939684196348, -0.6639608722100679, -1.2433954415375403, + -1.8405813072719317, -2.466645651512822, -3.251500778461145, + -3.8831315065106136, -4.472309656729645, -4.763306194718514, + -4.656623034760579, -4.505525437794697, -3.9250001273372828, + -3.5910574639693222, -3.152746241291869, -2.9530548390553726, + -2.9735019868895556, -2.97530781924948, -3.1215573383554904, + -2.9586629146160863, -2.7312408345341064, -2.2018992613108517, + -1.5614131680309824, -0.9187679552623993, -0.3397357491344348, + -0.05565493455939835, 0.0027991933854591942, -0.18940512492695114, + -0.4869018999462851, -0.7504044658672786, -0.8577535821485845, + -0.6796897472068557, -0.2675445781068598, 0.3943190771956738 + ], + "pressure:J3:branch10_seg0": [ + -18743.459044653384, -28202.298579948612, -20878.88203750761, + -13263.684350832673, -4202.077828542973, 6161.933535206509, + 23535.70540721979, 44947.536759690454, 78555.41309006447, + 119558.68303778111, 167546.87764369874, 229651.17727664055, + 282983.199092816, 354095.8162277401, 402956.6976384781, + 456150.12787643075, 497038.31862027914, 517325.52982798166, + 543360.8524566143, 527973.9794059737, 528530.1895091314, + 489788.0787648204, 454490.6331544258, 399096.00151867844, + 326196.6391432964, 258148.68754673423, 169788.53709298017, + 87589.99248161835, 2247.2505523445075, -76690.4534145867, + -149080.24765311513, -203723.50329054572, -262323.44162195455, + -291431.8443530988, -331164.86758960516, -350014.2747656654, + -368312.06624324876, -386631.3773596161, -379452.3489937911, + -393611.8477757254, -368849.2526689676, -360429.9218076095, + -326398.9068290954, -284583.7702883643, -252833.00700603196, + -200188.4397976783, -169845.9270616763, -128899.95741075052, + -101364.01675541706, -79351.87394258568, -59754.96742496738, + -44852.91318959738, -29413.086484171512, -11476.881773468245, + 5802.274990077089, 25956.535069963276, 44314.3567146259, + 56075.16297326205, 68677.18914224663, 65801.63628507208, + 64858.94820860036, 50855.53525696161, 35379.53147860236, + 20615.964839267966, 2791.52741334234, -7854.009734117505, + -18905.13871200313, -25360.15484328246, -30505.289008039115, + -35355.37889764309, -40749.272741899695, -46490.8997527786, + -54062.09742513675, -59851.25966865161, -66045.70448506883, + -68994.7679082991, -69065.97635175673, -68943.06356580787, + -64701.48750134123, -63534.900449887886, -60476.836821373196, + -60237.65666795092, -61202.137908774464, -62090.469660737035, + -64094.43665227004, -62989.66701846276, -61815.26532652206, + -57315.041836053446, -52513.70858055522, -47190.748854824335, + -42658.48724781661, -40589.68602707057, -40190.55484230645, + -41936.49628706027, -44313.749139884254, -46335.59023982538, + -46920.716931847055, -44995.167973687196, -41144.66076193385, + -18743.459044653384 + ], + "flow:branch5_seg2:J4": [ + 2.5082786769836427, 7.496485704622695, 12.646608183026533, + 18.114643279945298, 23.9041223673922, 31.115628933332165, + 41.51798254690654, 55.8584196223994, 76.91174993540983, + 103.13437583981225, 136.25112259263824, 172.81324157414468, + 211.38521295927, 249.71205191136104, 280.5694539264606, 308.8030915457608, + 323.7023701499732, 333.87797381512723, 330.8751317751213, + 316.09875870863027, 295.30403901131945, 260.98725777789565, + 223.67930530806328, 175.32617648443278, 121.32914901836612, + 63.144168257569, 1.612365311635172, -59.82267887567164, + -117.45451991944793, -171.98115231396676, -216.55760215376577, + -254.55897117730115, -283.13948720444796, -300.3485077268613, + -314.6702490397831, -317.9974723426315, -322.378199103906, + -318.7019917954882, -310.3178112555701, -299.1059198885351, + -278.10777398454053, -255.17326973911747, -222.4933725143721, + -186.52662006460392, -147.46467574720276, -108.40573018857113, + -72.27280303280992, -40.889717272119945, -15.712507976600229, + 3.135733545922239, 16.850065736323124, 27.788501710065326, + 36.99370759453244, 47.00009212964489, 57.047173450516574, + 68.31393954921056, 78.02810438729375, 85.44452723822513, + 88.80008071184758, 86.4681180761529, 79.5342131118912, 67.27912657421082, + 52.87155197380969, 37.28138593504113, 23.18261706799625, + 11.231833124634699, 2.4259488579750785, -3.6344695605736033, + -7.60843063124608, -10.693739279899077, -13.84195921267562, + -17.41740330733121, -21.605129369462517, -25.453247758385757, + -28.821598245247696, -30.281894128986337, -30.187777936935092, + -28.24461842024496, -25.289062217312885, -22.1375754439079, + -19.365805514681064, -17.938200016057575, -17.424201072291492, + -17.956797666931777, -18.315498993536362, -17.844442568959753, + -16.293070496740455, -13.105476617872888, -9.244775708488621, + -4.991711585037183, -1.448427165469835, 0.634254794696644, + 1.038224876221309, -0.1358542483324048, -2.1186103059806642, + -4.026651390564486, -4.874659029744872, -4.115917778312576, + -1.5305714234143803, 2.5082786769836427 + ], + "pressure:branch5_seg2:J4": [ + -16189.6939199242, -24630.876420317552, -16875.692637128166, + -8141.026257126466, 1264.0206128613502, 14332.593290812985, + 33388.23450867302, 59302.03879766721, 97177.26019357215, 141004.093482576, + 198859.13863992903, 258380.95698425503, 324033.51944625215, + 387816.08460309316, 436811.31057165103, 489383.48192269023, + 513177.2034443219, 543661.4783698408, 546346.0449651352, + 536861.6164279974, 517869.65908883663, 473656.20276841684, + 431730.23396119836, 363899.36661027244, 294864.6657847484, + 213344.96913339462, 127108.30110369805, 38818.623772261286, + -43355.182820428294, -124265.34620232004, -187255.52043719677, + -248560.10119885002, -294114.8824125859, -324802.45735594485, + -357218.369647429, -367269.3367883, -391819.6888066177, + -394511.59121898614, -399045.73459668126, -394528.1186889654, + -373448.27986341383, -352778.4519367134, -309416.8583744811, + -272098.043632354, -224017.53040729428, -180688.87055717825, + -139095.85246493653, -102855.0045617947, -75969.1873861987, + -55344.35661641422, -40250.027335549996, -26639.66558512643, + -12971.414314731075, 3800.782914963134, 20496.775623234123, + 40538.041147500735, 55478.39701364076, 68839.550500721, 74242.6092092983, + 71840.78069012059, 63274.58584696742, 45863.491196450545, + 28987.95606104039, 9422.220847484672, -5710.4880352244345, + -18636.510934052112, -27375.83154916385, -33273.70215533611, + -37194.593922164575, -41266.50853521542, -45941.631100811275, + -51950.00659894564, -58829.10568113341, -64717.19715223452, + -70003.83396277628, -71329.16009077046, -71600.71458159905, + -68624.85320014501, -65421.198492941054, -62172.63116984059, + -59621.970914187936, -59692.52120056775, -60267.26083170759, + -62605.853439292776, -63559.24770040859, -62970.357161540895, + -60476.82823643026, -55349.33082902009, -49970.3355560869, + -44124.96377241589, -40198.83663347435, -38442.615709496065, + -39104.401867012, -41586.93233495503, -44559.4509665868, + -46836.78911778929, -46885.71333932621, -44491.33321030954, + -39396.482282297016, -16189.6939199242 + ], + "flow:J4:branch6_seg0": [ + 1.9167280907819122, 5.225949483526584, 8.586405644723072, + 12.064666380304601, 15.780713441949938, 20.366042042756405, + 27.24377893069379, 36.62190605457543, 50.62296023014947, + 67.89777609036986, 89.42729297216927, 113.58199723421633, + 137.87117431988068, 163.05909890973047, 181.85593942753388, + 199.31986360161198, 208.1407763702236, 212.89287376633862, + 210.80006614128615, 199.4837611050102, 185.84180820812713, + 162.5976163530239, 138.21213064418149, 106.38633406116064, + 71.34707719998595, 33.84748593361172, -5.793174290046384, + -44.85520345961247, -81.68334690484814, -115.60351273063344, + -143.660141478406, -166.2628623959014, -184.1319629000284, + -193.4070050383494, -201.86979439596212, -202.96710851611556, + -204.85147394748154, -202.2575328816329, -195.82801208720167, + -188.81367200339645, -174.15933944785326, -159.59528042488373, + -137.44741922363025, -114.02916455072409, -88.9788941794146, + -63.53752033071079, -41.43100102041323, -21.41724078977947, + -6.3663611742962996, 4.863851112655765, 12.893321075216456, + 19.11577197513873, 24.617858409131323, 30.862858072235714, + 37.14738568542003, 44.45350009331384, 50.57727932574933, + 55.00564093244149, 57.016537824692335, 54.72310772150447, + 50.07428923588694, 41.446748200747365, 31.909053737011522, + 21.802480238506682, 12.71072937568986, 5.4786549405663205, + 0.11885045052720682, -3.336561542217954, -5.512323127926681, + -7.284634837880397, -9.167135414499777, -11.417184239825799, + -14.166499982188663, -16.573612695944977, -18.7393596546025, + -19.507516658956032, -19.22917888113221, -17.856564431063592, + -15.695270035302576, -13.71847732773008, -11.868805149612976, + -11.072217631396676, -10.89001671058551, -11.304326628922832, + -11.670402007287436, -11.303057057690008, -10.258335361359132, + -8.068143666249437, -5.482630828376299, -2.6774538407518267, + -0.44719317072138853, 0.7838742134159314, 0.8455190008992369, + -0.09409955182752437, -1.5112238150863646, -2.797666045982071, + -3.303287594467096, -2.674522704868034, -0.8594385537733127, + 1.9167280907819122 + ], + "pressure:J4:branch6_seg0": [ + -16189.6939199242, -24630.876420317552, -16875.692637128166, + -8141.026257126466, 1264.0206128613502, 14332.593290812985, + 33388.23450867302, 59302.03879766721, 97177.26019357215, 141004.093482576, + 198859.13863992903, 258380.95698425503, 324033.51944625215, + 387816.08460309316, 436811.31057165103, 489383.48192269023, + 513177.2034443219, 543661.4783698408, 546346.0449651352, + 536861.6164279974, 517869.65908883663, 473656.20276841684, + 431730.23396119836, 363899.36661027244, 294864.6657847484, + 213344.96913339462, 127108.30110369805, 38818.623772261286, + -43355.182820428294, -124265.34620232004, -187255.52043719677, + -248560.10119885002, -294114.8824125859, -324802.45735594485, + -357218.369647429, -367269.3367883, -391819.6888066177, + -394511.59121898614, -399045.73459668126, -394528.1186889654, + -373448.27986341383, -352778.4519367134, -309416.8583744811, + -272098.043632354, -224017.53040729428, -180688.87055717825, + -139095.85246493653, -102855.0045617947, -75969.1873861987, + -55344.35661641422, -40250.027335549996, -26639.66558512643, + -12971.414314731075, 3800.782914963134, 20496.775623234123, + 40538.041147500735, 55478.39701364076, 68839.550500721, 74242.6092092983, + 71840.78069012059, 63274.58584696742, 45863.491196450545, + 28987.95606104039, 9422.220847484672, -5710.4880352244345, + -18636.510934052112, -27375.83154916385, -33273.70215533611, + -37194.593922164575, -41266.50853521542, -45941.631100811275, + -51950.00659894564, -58829.10568113341, -64717.19715223452, + -70003.83396277628, -71329.16009077046, -71600.71458159905, + -68624.85320014501, -65421.198492941054, -62172.63116984059, + -59621.970914187936, -59692.52120056775, -60267.26083170759, + -62605.853439292776, -63559.24770040859, -62970.357161540895, + -60476.82823643026, -55349.33082902009, -49970.3355560869, + -44124.96377241589, -40198.83663347435, -38442.615709496065, + -39104.401867012, -41586.93233495503, -44559.4509665868, + -46836.78911778929, -46885.71333932621, -44491.33321030954, + -39396.482282297016, -16189.6939199242 + ], + "flow:J4:branch13_seg0": [ + 0.5915505862014689, 2.2705362210959605, 4.060202538303047, + 6.049976899640893, 8.123408925447015, 10.749586890575172, + 14.27420361621211, 19.23651356782633, 26.28878970526105, + 35.236599749445176, 46.82382962047192, 59.231244339926704, + 73.51403863939007, 86.65295300162865, 98.7135144989369, + 109.48322794415395, 115.56159377974495, 120.98510004879326, + 120.075065633837, 116.61499760361208, 109.46223080319126, + 98.38964142487622, 85.46717466387463, 68.93984242327709, 49.9820718183706, + 29.296682323969552, 7.405539601700522, -14.967475416044326, + -35.77117301460288, -56.37763958332703, -72.89746067534881, + -88.29610878141226, -99.00752430443951, -106.9415026885142, + -112.80045464381523, -115.03036382652597, -117.52672515641463, + -116.44445891385419, -114.48979916836527, -110.29224788514047, + -103.94843453668688, -95.57798931423137, -85.04595329074, + -72.49745551388116, -58.48578156778899, -44.868209857861906, + -30.84180201239815, -19.47247648234091, -9.346146802303736, + -1.7281175667340753, 3.956744661107205, 8.672729734926085, + 12.375849185400876, 16.13723405740858, 19.899787765095933, + 23.86043945589776, 27.45082506154548, 30.438886305783313, + 31.783542887155317, 31.745010354647317, 29.4599238760028, + 25.832378373459882, 20.96249823679932, 15.478905696532635, + 10.471887692309748, 5.753178184067426, 2.3070984074485934, + -0.29790801835553427, -2.096107503319665, -3.409104442019444, + -4.674823798169801, -6.00021906750456, -7.438629387274742, + -8.87963506243659, -10.082238590644526, -10.774377470031062, + -10.958599055806237, -10.388053989181975, -9.59379218200743, + -8.41909811617892, -7.497000365066826, -6.865982384662174, + -6.534184361705387, -6.6524710380105105, -6.645096986248283, + -6.541385511269083, -6.034735135381372, -5.0373329516258964, + -3.762144880112192, -2.3142577442863055, -1.0012339947496616, + -0.1496194187186174, 0.1927058753245145, -0.0417546965041848, + -0.6073864908953172, -1.2289853445823915, -1.571371435277654, + -1.4413950734454337, -0.671132869640661, 0.5915505862014689 + ], + "pressure:J4:branch13_seg0": [ + -16189.6939199242, -24630.876420317552, -16875.692637128166, + -8141.026257126466, 1264.0206128613502, 14332.593290812985, + 33388.23450867302, 59302.03879766721, 97177.26019357215, 141004.093482576, + 198859.13863992903, 258380.95698425503, 324033.51944625215, + 387816.08460309316, 436811.31057165103, 489383.48192269023, + 513177.2034443219, 543661.4783698408, 546346.0449651352, + 536861.6164279974, 517869.65908883663, 473656.20276841684, + 431730.23396119836, 363899.36661027244, 294864.6657847484, + 213344.96913339462, 127108.30110369805, 38818.623772261286, + -43355.182820428294, -124265.34620232004, -187255.52043719677, + -248560.10119885002, -294114.8824125859, -324802.45735594485, + -357218.369647429, -367269.3367883, -391819.6888066177, + -394511.59121898614, -399045.73459668126, -394528.1186889654, + -373448.27986341383, -352778.4519367134, -309416.8583744811, + -272098.043632354, -224017.53040729428, -180688.87055717825, + -139095.85246493653, -102855.0045617947, -75969.1873861987, + -55344.35661641422, -40250.027335549996, -26639.66558512643, + -12971.414314731075, 3800.782914963134, 20496.775623234123, + 40538.041147500735, 55478.39701364076, 68839.550500721, 74242.6092092983, + 71840.78069012059, 63274.58584696742, 45863.491196450545, + 28987.95606104039, 9422.220847484672, -5710.4880352244345, + -18636.510934052112, -27375.83154916385, -33273.70215533611, + -37194.593922164575, -41266.50853521542, -45941.631100811275, + -51950.00659894564, -58829.10568113341, -64717.19715223452, + -70003.83396277628, -71329.16009077046, -71600.71458159905, + -68624.85320014501, -65421.198492941054, -62172.63116984059, + -59621.970914187936, -59692.52120056775, -60267.26083170759, + -62605.853439292776, -63559.24770040859, -62970.357161540895, + -60476.82823643026, -55349.33082902009, -49970.3355560869, + -44124.96377241589, -40198.83663347435, -38442.615709496065, + -39104.401867012, -41586.93233495503, -44559.4509665868, + -46836.78911778929, -46885.71333932621, -44491.33321030954, + -39396.482282297016, -16189.6939199242 + ], + "flow:branch7_seg2:J5": [ + 0.16919535294665466, 2.2011460964319807, 4.536039762048981, + 7.086551151079363, 9.893478023061906, 13.12413013946982, + 17.878596490539618, 23.89318982757918, 33.035961393162786, + 44.54064795627306, 58.73536406118155, 76.45086879438051, + 94.14321175241633, 114.70448258616227, 131.7146381268164, + 147.94773847009782, 159.42692174783085, 167.44153606321052, + 171.75624154657024, 168.41079439648692, 163.6629712797848, + 149.01396191671822, 134.07770361521733, 112.99830406141469, + 88.2718203942936, 62.10275244256347, 31.455990407477348, + 0.7654417527164468, -29.62419900534758, -58.3213809270284, + -84.22254679743043, -106.25125355834984, -126.33591790170485, + -139.67702508282505, -151.8965565848787, -157.38602328841498, + -162.94443870205666, -165.44469138907246, -163.81460518955637, + -163.38511324906904, -154.40962292033, -146.8440973415917, + -133.22690068693655, -117.06532861994931, -100.78211506583165, + -80.87828186191041, -62.72919145602474, -44.58266115697016, + -29.113429975195277, -16.564642530861267, -6.389926470547052, + 2.180350037382249, 9.455034069751667, 16.53017098889757, + 22.767467726171596, 29.335570019644802, 35.31316543667458, + 40.06674315063287, 44.120688856922634, 44.64186100941763, + 43.8208495379478, 39.64416198873983, 33.904642957222336, + 27.38945895567185, 20.45941102005146, 14.170447046280934, + 8.583534244072593, 4.173506732354808, 0.8582664721985677, + -1.6991820452564574, -4.02922676164974, -6.311229119706322, + -8.877945146585832, -11.066410361297205, -13.216095904033105, + -14.541028210015746, -15.094849226562976, -15.102727376408627, + -14.148216922369436, -13.15621751115812, -11.848910879189056, + -10.946298058692467, -10.428491041474967, -10.326480953358766, + -10.394831746537202, -10.09935640273366, -9.585674842009102, + -8.250619546856692, -6.6775997823307485, -4.725219009086822, + -2.8833734726062934, -1.5304125541085882, -0.736612240888007, + -0.6716510900838719, -1.1278451684236381, -1.782029936338778, + -2.2449934842619417, -2.1229782785152764, -1.329613432057434, + 0.16919535294665466 + ], + "pressure:branch7_seg2:J5": [ + -20407.939508844473, -30350.18368421359, -23291.3388834668, + -16094.323781951447, -7340.234960735385, 2357.45066993427, + 17884.32896206069, 37629.06459794206, 67084.31831507188, + 105651.8108401289, 149192.57994346885, 208874.4150134941, + 260209.57978605467, 327464.80963800737, 379215.2992660883, + 425843.9984391016, 475057.9478978881, 493206.5825017546, + 524970.8398574102, 515526.82442649495, 511877.9975791137, + 485605.841919393, 449465.47061550646, 407576.77114038216, + 340072.6076649711, 278056.85298855766, 195926.50629332385, + 118228.10749711082, 38446.94932554195, -36331.68949839173, + -110514.9792284702, -165924.8112053267, -228061.577563421, + -262907.25500096264, -298979.65890640457, -329175.68719540926, + -345576.3329888408, -373721.2963983183, -371230.5389558229, + -385215.0788353929, -369824.6595081675, -359793.4024924265, + -337586.7652098488, -296798.53847334284, -269868.7164137738, + -217658.80829949136, -183910.31413207634, -144801.967365326, + -112685.42240682364, -90999.28288467338, -68028.28203626537, + -50937.30116437635, -34659.115699169364, -16864.301101715417, + 38.699051893413426, 19080.886899099016, 38667.077390140614, + 51368.39688706125, 65312.93111630919, 65100.35693169043, + 64525.767822918075, 54394.728938079046, 39033.76209103487, + 26757.46555074654, 8557.530336021868, -3185.409580560885, + -14725.906662263636, -22736.904340896446, -27808.143446015893, + -33047.912752723605, -38591.64724398224, -44348.43210396328, + -51621.96215310953, -57540.37671815285, -63461.66988478845, + -67489.05323970578, -68058.43359997038, -69009.61374560626, + -65349.72944405847, -63943.9724996065, -61271.279255543646, + -60031.63040887881, -61313.82216429134, -61639.43608730503, + -63632.41716555867, -62981.764798529875, -61797.59184139231, + -58435.45033338303, -53740.88371198416, -48947.27070132345, + -44166.34355885685, -41495.064365079255, -40453.62783794407, + -41478.59990474745, -43614.74448495981, -45566.914686070966, + -46517.89774084373, -45164.876473166965, -42082.61917238365, + -20407.939508844473 + ], + "flow:J5:branch8_seg0": [ + -0.007684550414627338, 1.3226758802957999, 2.889856504930631, + 4.683218784031973, 6.5995888155732585, 8.864213059589456, + 12.144343794434736, 16.131235490354726, 22.40668616311555, + 29.912434734801256, 39.67932015687914, 51.46590744066343, + 63.80530229397664, 78.08519165045048, 89.83589669373201, + 102.26205953881613, 109.44378766385951, 116.91386536806266, + 119.60726381622307, 118.45840192640458, 116.4292335700276, + 105.53681997732342, 96.77188326298436, 81.48091967595884, + 65.40931136015939, 47.40428185734036, 26.123375196658287, + 4.74493557957266, -16.633859672001012, -37.037392433610165, + -55.05314703675795, -71.45126839160291, -85.84968260339635, + -95.93381187611472, -105.84340790121426, -108.9169804177178, + -114.55191042945147, -115.5409175405114, -115.49725342504696, + -115.8066459839646, -109.19913327376065, -105.07721926355548, + -94.98568647945537, -84.93483809873234, -73.42741758786539, + -60.08930033132048, -47.2188737126273, -34.091887888324784, + -23.121255630694897, -13.615264123943746, -6.297874537252874, + 0.20477226574523846, 5.660591481684627, 10.875508220717215, + 15.274909185788289, 19.988546895072595, 23.992046379151024, + 27.57934539800492, 30.565013091439138, 31.248414623676567, + 31.1124490851826, 28.336557333762865, 24.85387907306734, + 20.244770411573327, 15.709726293587286, 11.165456692753857, + 7.084821122332862, 3.801402486106937, 1.1942125660694032, + -0.7126472733859699, -2.417475595664309, -4.076161120950048, + -5.898353601564533, -7.41542577930875, -8.9950529444763, + -9.895586332224685, -10.47574578956711, -10.538054110773619, + -10.062313293717063, -9.440867855273403, -8.521154144917446, + -7.928187365989641, -7.392060770934978, -7.351012265352074, + -7.291089752925652, -7.090622513623304, -6.8031240991377695, + -5.860892459778305, -4.916997448483041, -3.556653328043601, + -2.3214207843247263, -1.3378704223199456, -0.6784915473255516, + -0.5177223101884924, -0.7195729421828606, -1.1211193743735877, + -1.4344885029963843, -1.4099755069150923, -0.935300189238705, + -0.007684550414627338 + ], + "pressure:J5:branch8_seg0": [ + -20407.939508844473, -30350.18368421359, -23291.3388834668, + -16094.323781951447, -7340.234960735385, 2357.45066993427, + 17884.32896206069, 37629.06459794206, 67084.31831507188, + 105651.8108401289, 149192.57994346885, 208874.4150134941, + 260209.57978605467, 327464.80963800737, 379215.2992660883, + 425843.9984391016, 475057.9478978881, 493206.5825017546, + 524970.8398574102, 515526.82442649495, 511877.9975791137, + 485605.841919393, 449465.47061550646, 407576.77114038216, + 340072.6076649711, 278056.85298855766, 195926.50629332385, + 118228.10749711082, 38446.94932554195, -36331.68949839173, + -110514.9792284702, -165924.8112053267, -228061.577563421, + -262907.25500096264, -298979.65890640457, -329175.68719540926, + -345576.3329888408, -373721.2963983183, -371230.5389558229, + -385215.0788353929, -369824.6595081675, -359793.4024924265, + -337586.7652098488, -296798.53847334284, -269868.7164137738, + -217658.80829949136, -183910.31413207634, -144801.967365326, + -112685.42240682364, -90999.28288467338, -68028.28203626537, + -50937.30116437635, -34659.115699169364, -16864.301101715417, + 38.699051893413426, 19080.886899099016, 38667.077390140614, + 51368.39688706125, 65312.93111630919, 65100.35693169043, + 64525.767822918075, 54394.728938079046, 39033.76209103487, + 26757.46555074654, 8557.530336021868, -3185.409580560885, + -14725.906662263636, -22736.904340896446, -27808.143446015893, + -33047.912752723605, -38591.64724398224, -44348.43210396328, + -51621.96215310953, -57540.37671815285, -63461.66988478845, + -67489.05323970578, -68058.43359997038, -69009.61374560626, + -65349.72944405847, -63943.9724996065, -61271.279255543646, + -60031.63040887881, -61313.82216429134, -61639.43608730503, + -63632.41716555867, -62981.764798529875, -61797.59184139231, + -58435.45033338303, -53740.88371198416, -48947.27070132345, + -44166.34355885685, -41495.064365079255, -40453.62783794407, + -41478.59990474745, -43614.74448495981, -45566.914686070966, + -46517.89774084373, -45164.876473166965, -42082.61917238365, + -20407.939508844473 + ], + "flow:J5:branch12_seg0": [ + 0.1768799033609508, 0.8784702161356652, 1.6461832571186752, + 2.4033323670474775, 3.293889207488865, 4.259917079881213, + 5.734252696105343, 7.761954337225019, 10.629275230048062, + 14.628213221471492, 19.056043904302044, 24.984961353717544, + 30.33790945844074, 36.619290935712606, 41.87874143308584, + 45.68567893128068, 49.98313408397496, 50.52767069514834, + 52.14897773034894, 49.952392470077214, 47.23373770975551, + 43.4771419393875, 37.305820352233866, 31.51738438545011, + 22.862509034125285, 14.698470585218026, 5.332615210811074, + -3.979493826858221, -12.99033933335256, -21.283988493416018, + -29.169399760666717, -34.79998516674068, -40.48623529831587, + -43.74321320671095, -46.053148683661604, -48.4690428706926, + -48.39252827261127, -49.90377384856239, -48.317351764508814, + -47.57846726510473, -45.21048964656958, -41.76687807803773, + -38.24121420748236, -32.130490521215535, -27.354697477966663, + -20.78898153058937, -15.510317743398645, -10.490773268645318, + -5.992174344500595, -2.9493784069176097, -0.0920519332942091, + 1.9755777716373106, 3.7944425880669432, 5.6546627681802235, + 7.492558540383306, 9.347023124571658, 11.321119057523807, + 12.487397752628322, 13.555675765483457, 13.393446385740615, + 12.708400452765854, 11.307604654977379, 9.050763884154899, + 7.144688544097967, 4.7496847264653335, 3.004990353528362, + 1.4987131217403225, 0.3721042462478462, -0.33594609387076774, + -0.9865347718700888, -1.6117511659846158, -2.2350679987552065, + -2.97959154502147, -3.6509845819887996, -4.221042959558457, + -4.64544187778961, -4.61910343699485, -4.564673265634593, + -4.085903628653777, -3.7153496558844026, -3.327756734272063, + -3.0181106927033636, -3.0364302705405244, -2.975468688005999, + -3.1037419936109147, -3.0087338891103976, -2.782550742870644, + -2.389727087077726, -1.7606023338475951, -1.1685656810430434, + -0.5619526882808804, -0.1925421317893428, -0.058120693562028765, + -0.1539287798946338, -0.4082722262400956, -0.6609105619647604, + -0.8105049812657066, -0.7130027716009519, -0.39431324281872326, + 0.1768799033609508 + ], + "pressure:J5:branch12_seg0": [ + -20407.939508844473, -30350.18368421359, -23291.3388834668, + -16094.323781951447, -7340.234960735385, 2357.45066993427, + 17884.32896206069, 37629.06459794206, 67084.31831507188, + 105651.8108401289, 149192.57994346885, 208874.4150134941, + 260209.57978605467, 327464.80963800737, 379215.2992660883, + 425843.9984391016, 475057.9478978881, 493206.5825017546, + 524970.8398574102, 515526.82442649495, 511877.9975791137, + 485605.841919393, 449465.47061550646, 407576.77114038216, + 340072.6076649711, 278056.85298855766, 195926.50629332385, + 118228.10749711082, 38446.94932554195, -36331.68949839173, + -110514.9792284702, -165924.8112053267, -228061.577563421, + -262907.25500096264, -298979.65890640457, -329175.68719540926, + -345576.3329888408, -373721.2963983183, -371230.5389558229, + -385215.0788353929, -369824.6595081675, -359793.4024924265, + -337586.7652098488, -296798.53847334284, -269868.7164137738, + -217658.80829949136, -183910.31413207634, -144801.967365326, + -112685.42240682364, -90999.28288467338, -68028.28203626537, + -50937.30116437635, -34659.115699169364, -16864.301101715417, + 38.699051893413426, 19080.886899099016, 38667.077390140614, + 51368.39688706125, 65312.93111630919, 65100.35693169043, + 64525.767822918075, 54394.728938079046, 39033.76209103487, + 26757.46555074654, 8557.530336021868, -3185.409580560885, + -14725.906662263636, -22736.904340896446, -27808.143446015893, + -33047.912752723605, -38591.64724398224, -44348.43210396328, + -51621.96215310953, -57540.37671815285, -63461.66988478845, + -67489.05323970578, -68058.43359997038, -69009.61374560626, + -65349.72944405847, -63943.9724996065, -61271.279255543646, + -60031.63040887881, -61313.82216429134, -61639.43608730503, + -63632.41716555867, -62981.764798529875, -61797.59184139231, + -58435.45033338303, -53740.88371198416, -48947.27070132345, + -44166.34355885685, -41495.064365079255, -40453.62783794407, + -41478.59990474745, -43614.74448495981, -45566.914686070966, + -46517.89774084373, -45164.876473166965, -42082.61917238365, + -20407.939508844473 + ], + "flow:branch3_seg0:J6": [ + 0.49640214018411705, 2.401638912404165, 4.495604602628993, + 7.015115722780156, 9.82251060706085, 13.638095605552463, + 18.549816302939334, 25.268405827342253, 34.580677685802094, + 45.53367914162862, 61.3219859701997, 76.90332348550405, 95.55181644041531, + 112.40442364228552, 125.4877460503017, 140.8435567920492, + 148.4305567858605, 158.41942524391166, 159.4892079718274, + 155.34838892212753, 145.8394057188974, 131.55278124814689, + 117.03108291636099, 96.89867274666395, 76.31122468858312, + 49.54232692337023, 22.059477925250622, -5.475741391289084, + -31.017283071463748, -55.855712374549704, -76.58529204637388, + -97.77564880178508, -113.17608169296902, -123.93777100472647, + -133.40591627177815, -137.8910769540273, -145.54407058999604, + -147.6259042222201, -149.59734205913284, -145.1370091425269, + -138.3983327903761, -130.3422509481172, -117.47586510334581, + -108.26955033929111, -91.7747989169769, -75.95979468160408, + -58.84044734257878, -42.12828840836643, -30.056293531933846, + -18.980718724592293, -10.059765538970508, -1.7561754569090402, + 6.217094979187973, 13.361978426142752, 19.742460477367896, + 26.20696190120674, 31.3806233372022, 36.87575520466081, 39.38355260744849, + 40.10986872927283, 38.24070031251499, 33.60326711904047, + 29.57717251204356, 23.525338917775787, 18.08308627025196, + 12.444952287932805, 7.277841040972461, 3.4332027650751398, + 0.4207266346309625, -2.0439620601270523, -4.315738336040381, + -6.806962953180057, -9.168704160169895, -11.274525633393385, + -13.008157050457454, -13.805292634424879, -14.647672229034123, + -14.28080342683931, -13.758827602350603, -12.745995791095252, + -11.520674985938689, -11.110538892248808, -10.671639558691218, + -10.840258293202275, -10.680712482838121, -10.19594937395687, + -9.275037854894888, -7.8878779032298585, -6.422805539389118, + -4.769052191965245, -3.3919269943489017, -2.230948975065047, + -1.6358527552670863, -1.608724684337243, -1.9336769277014103, + -2.386474643770696, -2.4695504458100137, -2.120219440415352, + -1.099810613418554, 0.49640214018411705 + ], + "pressure:branch3_seg0:J6": [ + -14438.418688909636, -22736.92433923861, -15095.75933999654, + -6143.513835592655, 3533.880174698758, 17130.585337056575, + 37559.73558714805, 65032.788339922074, 105837.1669993193, + 152515.2612555544, 213995.59457859822, 274099.9025934364, + 340777.04164573835, 403212.3954162762, 449341.54126827343, + 507049.15864713426, 526861.0964422545, 558367.0627402203, + 556251.510686831, 536468.6521804538, 520265.53821653675, + 472345.69666919624, 429938.2792489927, 360363.8750321398, + 282464.3184578791, 196128.09327866844, 106668.98868639782, + 15893.352451071323, -65122.37122463416, -148752.4153457486, + -209910.3698755914, -270658.52292972914, -311814.1676546742, + -335236.53114958614, -370628.1371259174, -377042.5030378884, + -403012.8864826494, -403775.8406268715, -399325.69804522314, + -393004.2308434107, -368021.55236298527, -346471.81660909706, + -304151.1825412228, -264547.6249302772, -212209.7675372039, + -168658.19481378488, -127401.83204873747, -94313.95553317806, + -72838.55235396385, -53287.9901332005, -39175.07479235735, + -25099.038309622094, -10655.158542191342, 5930.922331939852, + 22963.674928670713, 43773.06754944806, 58970.674328173154, + 71642.82902330905, 74771.32816384015, 70190.1897695288, + 59747.527400030565, 41541.251424038215, 25450.62271575145, + 5236.3463474516075, -9345.119489203695, -21690.96220684307, + -29829.713107807325, -33874.028709818616, -37302.05365162213, + -41405.34324566871, -46548.222622595364, -53234.10858614414, + -60334.87142901854, -66019.32935921298, -71028.55095310685, + -71835.47108630207, -71751.33537920268, -67903.46085128264, + -64389.01470545605, -61032.345926233145, -58741.564854557466, + -60051.4838817731, -60879.24537981461, -63531.87617726324, + -64158.99969385405, -62585.25830639234, -59891.10351337026, + -54236.330396268844, -48754.92341007747, -43149.572611509386, + -39218.77352384292, -38078.15257949812, -39398.15233036285, + -42446.31317188566, -45690.33658270198, -47741.64289220594, + -47129.16588634718, -44013.907441294854, -38107.23981614427, + -14438.418688909636 + ], + "flow:J6:branch3_seg1": [ + 0.49640214018411705, 2.401638912404165, 4.495604602628993, + 7.015115722780156, 9.82251060706085, 13.638095605552463, + 18.549816302939334, 25.268405827342253, 34.580677685802094, + 45.53367914162862, 61.3219859701997, 76.90332348550405, 95.55181644041531, + 112.40442364228552, 125.4877460503017, 140.8435567920492, + 148.4305567858605, 158.41942524391166, 159.4892079718274, + 155.34838892212753, 145.8394057188974, 131.55278124814689, + 117.03108291636099, 96.89867274666395, 76.31122468858312, + 49.54232692337023, 22.059477925250622, -5.475741391289084, + -31.017283071463748, -55.855712374549704, -76.58529204637388, + -97.77564880178508, -113.17608169296902, -123.93777100472647, + -133.40591627177815, -137.8910769540273, -145.54407058999604, + -147.6259042222201, -149.59734205913284, -145.1370091425269, + -138.3983327903761, -130.3422509481172, -117.47586510334581, + -108.26955033929111, -91.7747989169769, -75.95979468160408, + -58.84044734257878, -42.12828840836643, -30.056293531933846, + -18.980718724592293, -10.059765538970508, -1.7561754569090402, + 6.217094979187973, 13.361978426142752, 19.742460477367896, + 26.20696190120674, 31.3806233372022, 36.87575520466081, 39.38355260744849, + 40.10986872927283, 38.24070031251499, 33.60326711904047, + 29.57717251204356, 23.525338917775787, 18.08308627025196, + 12.444952287932805, 7.277841040972461, 3.4332027650751398, + 0.4207266346309625, -2.0439620601270523, -4.315738336040381, + -6.806962953180057, -9.168704160169895, -11.274525633393385, + -13.008157050457454, -13.805292634424879, -14.647672229034123, + -14.28080342683931, -13.758827602350603, -12.745995791095252, + -11.520674985938689, -11.110538892248808, -10.671639558691218, + -10.840258293202275, -10.680712482838121, -10.19594937395687, + -9.275037854894888, -7.8878779032298585, -6.422805539389118, + -4.769052191965245, -3.3919269943489017, -2.230948975065047, + -1.6358527552670863, -1.608724684337243, -1.9336769277014103, + -2.386474643770696, -2.4695504458100137, -2.120219440415352, + -1.099810613418554, 0.49640214018411705 + ], + "pressure:J6:branch3_seg1": [ + -14438.418688909636, -22736.92433923861, -15095.75933999654, + -6143.513835592655, 3533.880174698758, 17130.585337056575, + 37559.73558714805, 65032.788339922074, 105837.1669993193, + 152515.2612555544, 213995.59457859822, 274099.9025934364, + 340777.04164573835, 403212.3954162762, 449341.54126827343, + 507049.15864713426, 526861.0964422545, 558367.0627402203, + 556251.510686831, 536468.6521804538, 520265.53821653675, + 472345.69666919624, 429938.2792489927, 360363.8750321398, + 282464.3184578791, 196128.09327866844, 106668.98868639782, + 15893.352451071323, -65122.37122463416, -148752.4153457486, + -209910.3698755914, -270658.52292972914, -311814.1676546742, + -335236.53114958614, -370628.1371259174, -377042.5030378884, + -403012.8864826494, -403775.8406268715, -399325.69804522314, + -393004.2308434107, -368021.55236298527, -346471.81660909706, + -304151.1825412228, -264547.6249302772, -212209.7675372039, + -168658.19481378488, -127401.83204873747, -94313.95553317806, + -72838.55235396385, -53287.9901332005, -39175.07479235735, + -25099.038309622094, -10655.158542191342, 5930.922331939852, + 22963.674928670713, 43773.06754944806, 58970.674328173154, + 71642.82902330905, 74771.32816384015, 70190.1897695288, + 59747.527400030565, 41541.251424038215, 25450.62271575145, + 5236.3463474516075, -9345.119489203695, -21690.96220684307, + -29829.713107807325, -33874.028709818616, -37302.05365162213, + -41405.34324566871, -46548.222622595364, -53234.10858614414, + -60334.87142901854, -66019.32935921298, -71028.55095310685, + -71835.47108630207, -71751.33537920268, -67903.46085128264, + -64389.01470545605, -61032.345926233145, -58741.564854557466, + -60051.4838817731, -60879.24537981461, -63531.87617726324, + -64158.99969385405, -62585.25830639234, -59891.10351337026, + -54236.330396268844, -48754.92341007747, -43149.572611509386, + -39218.77352384292, -38078.15257949812, -39398.15233036285, + -42446.31317188566, -45690.33658270198, -47741.64289220594, + -47129.16588634718, -44013.907441294854, -38107.23981614427, + -14438.418688909636 + ], + "flow:branch3_seg1:J7": [ + 0.45780054312587076, 2.3616881916277133, 4.457467754512102, + 6.9731598594041335, 9.77414740743038, 13.547424339555164, + 18.439273015296152, 25.092839786547447, 34.37641714068531, + 45.30886728181968, 60.99926821722959, 76.64018499304154, + 95.16052588084496, 112.1223358812329, 125.2761094579086, 140.704714200593, + 148.36552302956397, 158.32581279470617, 159.48922974176548, + 155.32761852314826, 146.07586250812517, 131.77036225368798, + 117.39141496272725, 97.2639384064667, 76.59981937482266, + 49.96439655740858, 22.479522658682143, -5.0285887497176, + -30.621192300259658, -55.52138005024844, -76.35903115140606, + -97.48172114658868, -112.99230965601721, -123.75799126531021, + -133.36985188525216, -137.83814453357283, -145.5226144488814, + -147.63946924165367, -149.45657452236478, -145.2592362339208, + -138.455816375741, -130.59217613483526, -117.7618393211693, + -108.40806450726042, -92.00603160618884, -76.09321107829827, + -59.02060044649204, -42.31849174047121, -30.173704027943614, + -19.053162827138284, -10.10924198525692, -1.7942017197557265, + 6.127749280575353, 13.270819968099117, 19.639347935437648, + 26.126463352317703, 31.34174972960644, 36.80756235347065, + 39.39902096683462, 40.11290329175673, 38.32176009455961, + 33.71780684450937, 29.669382048236653, 23.610835502356977, + 18.132082850705523, 12.478133344009235, 7.31291782423018, + 3.4594514350298264, 0.44147337549323795, -2.0220891927436258, + -4.296397808912358, -6.7702394928326495, -9.1382759561076, + -11.240468240507056, -12.996466285902988, -13.814328275538111, + -14.652217220864378, -14.304521896846952, -13.764173188710766, + -12.75712065185538, -11.530268208323115, -11.11004664290816, + -10.664946145209079, -10.828253528362318, -10.676596849928307, + -10.199661547035538, -9.301655660528297, -7.917064342600968, + -6.457490174835446, -4.791621041791814, -3.3982375219831735, + -2.228806361645919, -1.6245210866678579, -1.5946562651017584, + -1.9221176627022225, -2.381205389676868, -2.4787683791227266, + -2.140263145441446, -1.131734126535575, 0.45780054312587076 + ], + "pressure:branch3_seg1:J7": [ + -14944.87312657042, -23444.204582359966, -15968.879382689129, + -7064.538997301456, 2566.3878522351324, 15492.895194485169, + 35368.060056634706, 61553.144199953626, 101707.5453164051, + 148062.8123260218, 208270.3635224613, 268147.7435009405, + 331858.4402156825, 393245.0251103575, 437799.88656918023, + 499118.0125216574, 520198.88629206334, 551673.9770025752, + 549191.2124715009, 524861.9913563305, 512676.62950156105, + 466144.2484921673, 429454.23548080993, 363421.06114105537, + 284244.78429857676, 199345.91107232342, 111771.5764711375, + 24297.5910809456, -53910.61789490703, -137060.86152090822, + -199193.72032764083, -258752.24088895004, -299480.4229547863, + -320392.259140944, -359814.3116288428, -367161.6774227472, + -396518.45642689435, -399461.26147358346, -390791.887203522, + -386361.8722341423, -361435.2587566227, -345309.261992002, + -307780.53622178535, -268572.3110106006, -216217.73470268832, + -170308.85245376837, -129336.09146909788, -96952.61484160885, + -77402.15116065057, -57508.87468056041, -42253.14104472614, + -26989.625054351338, -12303.831663857647, 3807.7555202833864, + 20059.41886696292, 41220.059538975416, 57461.59885657391, + 70035.50535104214, 73749.83173630985, 68725.46434838451, + 59216.36708389423, 42062.07764284619, 27254.718548669072, + 7347.07648242884, -7918.95314080238, -20762.3934350909, + -29318.699633310316, -32960.67308964676, -36208.225316175514, + -40323.119086278224, -45694.2022581727, -52404.010671490934, + -59532.57699780896, -64966.98093526328, -70187.45804201029, + -71401.62815052987, -71544.12901992555, -67982.26156176974, + -64198.983460090225, -60817.80776161317, -58444.92403311712, + -60128.88950839987, -60982.23562702025, -63509.36530231891, + -64054.27040545876, -62214.10212522021, -59876.62859173332, + -54427.27952724057, -49332.42476935907, -43818.772953163585, + -39580.9152939198, -38187.7131669721, -39308.47503584739, + -42316.907000136314, -45584.31504806159, -47683.89978561171, + -47169.12478427596, -44164.82353870201, -38419.95381815884, + -14944.87312657042 + ], + "flow:J7:branch3_seg2": [ + 0.45780054312587076, 2.3616881916277133, 4.457467754512102, + 6.9731598594041335, 9.77414740743038, 13.547424339555164, + 18.439273015296152, 25.092839786547447, 34.37641714068531, + 45.30886728181968, 60.99926821722959, 76.64018499304154, + 95.16052588084496, 112.1223358812329, 125.2761094579086, 140.704714200593, + 148.36552302956397, 158.32581279470617, 159.48922974176548, + 155.32761852314826, 146.07586250812517, 131.77036225368798, + 117.39141496272725, 97.2639384064667, 76.59981937482266, + 49.96439655740858, 22.479522658682143, -5.0285887497176, + -30.621192300259658, -55.52138005024844, -76.35903115140606, + -97.48172114658868, -112.99230965601721, -123.75799126531021, + -133.36985188525216, -137.83814453357283, -145.5226144488814, + -147.63946924165367, -149.45657452236478, -145.2592362339208, + -138.455816375741, -130.59217613483526, -117.7618393211693, + -108.40806450726042, -92.00603160618884, -76.09321107829827, + -59.02060044649204, -42.31849174047121, -30.173704027943614, + -19.053162827138284, -10.10924198525692, -1.7942017197557265, + 6.127749280575353, 13.270819968099117, 19.639347935437648, + 26.126463352317703, 31.34174972960644, 36.80756235347065, + 39.39902096683462, 40.11290329175673, 38.32176009455961, + 33.71780684450937, 29.669382048236653, 23.610835502356977, + 18.132082850705523, 12.478133344009235, 7.31291782423018, + 3.4594514350298264, 0.44147337549323795, -2.0220891927436258, + -4.296397808912358, -6.7702394928326495, -9.1382759561076, + -11.240468240507056, -12.996466285902988, -13.814328275538111, + -14.652217220864378, -14.304521896846952, -13.764173188710766, + -12.75712065185538, -11.530268208323115, -11.11004664290816, + -10.664946145209079, -10.828253528362318, -10.676596849928307, + -10.199661547035538, -9.301655660528297, -7.917064342600968, + -6.457490174835446, -4.791621041791814, -3.3982375219831735, + -2.228806361645919, -1.6245210866678579, -1.5946562651017584, + -1.9221176627022225, -2.381205389676868, -2.4787683791227266, + -2.140263145441446, -1.131734126535575, 0.45780054312587076 + ], + "pressure:J7:branch3_seg2": [ + -14944.87312657042, -23444.204582359966, -15968.879382689129, + -7064.538997301456, 2566.3878522351324, 15492.895194485169, + 35368.060056634706, 61553.144199953626, 101707.5453164051, + 148062.8123260218, 208270.3635224613, 268147.7435009405, + 331858.4402156825, 393245.0251103575, 437799.88656918023, + 499118.0125216574, 520198.88629206334, 551673.9770025752, + 549191.2124715009, 524861.9913563305, 512676.62950156105, + 466144.2484921673, 429454.23548080993, 363421.06114105537, + 284244.78429857676, 199345.91107232342, 111771.5764711375, + 24297.5910809456, -53910.61789490703, -137060.86152090822, + -199193.72032764083, -258752.24088895004, -299480.4229547863, + -320392.259140944, -359814.3116288428, -367161.6774227472, + -396518.45642689435, -399461.26147358346, -390791.887203522, + -386361.8722341423, -361435.2587566227, -345309.261992002, + -307780.53622178535, -268572.3110106006, -216217.73470268832, + -170308.85245376837, -129336.09146909788, -96952.61484160885, + -77402.15116065057, -57508.87468056041, -42253.14104472614, + -26989.625054351338, -12303.831663857647, 3807.7555202833864, + 20059.41886696292, 41220.059538975416, 57461.59885657391, + 70035.50535104214, 73749.83173630985, 68725.46434838451, + 59216.36708389423, 42062.07764284619, 27254.718548669072, + 7347.07648242884, -7918.95314080238, -20762.3934350909, + -29318.699633310316, -32960.67308964676, -36208.225316175514, + -40323.119086278224, -45694.2022581727, -52404.010671490934, + -59532.57699780896, -64966.98093526328, -70187.45804201029, + -71401.62815052987, -71544.12901992555, -67982.26156176974, + -64198.983460090225, -60817.80776161317, -58444.92403311712, + -60128.88950839987, -60982.23562702025, -63509.36530231891, + -64054.27040545876, -62214.10212522021, -59876.62859173332, + -54427.27952724057, -49332.42476935907, -43818.772953163585, + -39580.9152939198, -38187.7131669721, -39308.47503584739, + -42316.907000136314, -45584.31504806159, -47683.89978561171, + -47169.12478427596, -44164.82353870201, -38419.95381815884, + -14944.87312657042 + ], + "flow:branch4_seg0:J8": [ + -0.5100155511816813, 0.6086726284262394, 1.983416846367041, + 3.6416227154896146, 5.383234929187892, 7.490680455753436, + 10.404185001646114, 13.980373871393493, 19.628707310273054, + 26.20419810535308, 35.10667565866784, 45.048507266807135, + 56.20350122099906, 68.44453145122874, 79.0549319357664, 90.93257071597388, + 96.7485131306227, 104.06490635097353, 104.87526985755196, + 104.32898425554157, 102.57406252668747, 93.83008153303736, + 86.95003765067712, 73.02136864838536, 59.62085241401165, + 43.95320759697117, 27.127652177886755, 9.841145903741502, + -7.6467513129885, -25.084533358963448, -40.15665875560978, + -54.29995574379945, -65.96669865017932, -75.10343305175162, + -84.8526428660604, -88.58562253309037, -95.30912965804164, + -96.1619335605466, -97.80691893732521, -98.91804243979402, + -95.66764405537131, -94.32914259302977, -86.73816543266337, + -79.69163990701097, -69.3781740333663, -59.27106532589257, + -48.48797765242183, -37.83957912453709, -28.138003242884324, + -18.739596299653694, -11.516428183814053, -4.900778765935517, + 0.24042488153487993, 5.372193097142961, 9.893338716882006, + 14.883105894155882, 18.895934708612774, 22.63485952843164, + 25.35685414538113, 26.588230846955156, 26.999927155059215, + 25.138555141799237, 22.67655769209921, 18.466263277999143, + 14.65236097429289, 10.445886330880997, 7.000601328059915, + 4.0377228139896815, 1.5085515607857494, -0.47885640864022, + -2.2412020882437687, -3.7960891292841232, -5.408533332955, + -6.81238163459457, -8.358324382467972, -9.276213124157826, + -10.010855084984318, -10.044216183454134, -9.810795834695892, + -9.31039167329924, -8.650668777991863, -8.236617555210216, + -7.6591164282703925, -7.596360157492193, -7.371071419121213, + -7.237022560868301, -7.012493418142551, -6.234172396239222, + -5.455035318003907, -4.182585537649188, -3.078523552516234, + -2.1116254655952376, -1.4834751131447113, -1.2468092664610064, + -1.3015218232814445, -1.5386002784740624, -1.7275516352804645, + -1.7136739870556066, -1.3132170235576102, -0.5100155511816813 + ], + "pressure:branch4_seg0:J8": [ + -18964.571819371675, -28509.717325208705, -21218.62211232837, + -13715.924231827497, -4706.405004979533, 5461.100659956757, + 22737.979810348537, 43754.386754336796, 77018.75506237001, + 117510.88177257127, 164552.29704533433, 226867.95838282324, + 279096.1680953837, 351239.89132177137, 399862.4762675608, + 452639.02182238543, 494500.3810627772, 514007.9453771023, + 542216.4727332614, 527249.0186765355, 529368.4603459507, + 490370.65996156074, 455793.52724203956, 400650.17251477554, + 328465.6222238686, 261961.1630852338, 173361.34371504813, + 91843.42174723007, 5965.771106525565, -72463.78281642353, + -145368.53899925115, -199390.9661548522, -259406.49227161185, + -288696.3249973812, -328819.41019532684, -347852.3423362085, + -365658.4802403895, -384793.27948001237, -377629.51774966053, + -393744.91075696814, -368137.8845842119, -361015.33591914264, + -326440.8319230052, -284726.5319261486, -254840.90613607908, + -201593.24684532473, -172650.51984489808, -130865.24843036417, + -102996.78580964006, -80842.36854913115, -61052.8507130195, + -46236.4422526709, -30788.672058038028, -12624.827586867626, + 4673.642806498471, 24811.550029170146, 43180.172838161685, + 54773.43354156935, 68105.91340152375, 65155.547375726215, + 65068.626776723744, 51070.35234280578, 35671.37587326339, + 21328.765454040436, 3395.5927105235714, -6933.955903353815, + -18144.718292490023, -24758.082683525605, -30066.396511176095, + -34969.175133395176, -40374.33396908989, -46025.69925007898, + -53655.839234056, -59415.5205261287, -65710.44463860805, + -68702.13290589496, -68752.21015873743, -68900.17209653856, + -64591.979102423495, -63686.45734045835, -60544.64876499196, + -60218.231405190556, -61170.5318351703, -61948.74878762331, + -64059.03236996399, -62976.8230627497, -61910.768479369835, + -57416.847611598554, -52683.90802049988, -47358.95485906272, + -42860.15246038487, -40786.13914709857, -40288.586193962576, + -41954.39575548678, -44244.75545160695, -46237.8814278534, + -46878.014643669245, -45003.969472952325, -41289.06460244999, + -18964.571819371675 + ], + "flow:J8:branch4_seg1": [ + -0.5100155511816813, 0.6086726284262394, 1.983416846367041, + 3.6416227154896146, 5.383234929187892, 7.490680455753436, + 10.404185001646114, 13.980373871393493, 19.628707310273054, + 26.20419810535308, 35.10667565866784, 45.048507266807135, + 56.20350122099906, 68.44453145122874, 79.0549319357664, 90.93257071597388, + 96.7485131306227, 104.06490635097353, 104.87526985755196, + 104.32898425554157, 102.57406252668747, 93.83008153303736, + 86.95003765067712, 73.02136864838536, 59.62085241401165, + 43.95320759697117, 27.127652177886755, 9.841145903741502, + -7.6467513129885, -25.084533358963448, -40.15665875560978, + -54.29995574379945, -65.96669865017932, -75.10343305175162, + -84.8526428660604, -88.58562253309037, -95.30912965804164, + -96.1619335605466, -97.80691893732521, -98.91804243979402, + -95.66764405537131, -94.32914259302977, -86.73816543266337, + -79.69163990701097, -69.3781740333663, -59.27106532589257, + -48.48797765242183, -37.83957912453709, -28.138003242884324, + -18.739596299653694, -11.516428183814053, -4.900778765935517, + 0.24042488153487993, 5.372193097142961, 9.893338716882006, + 14.883105894155882, 18.895934708612774, 22.63485952843164, + 25.35685414538113, 26.588230846955156, 26.999927155059215, + 25.138555141799237, 22.67655769209921, 18.466263277999143, + 14.65236097429289, 10.445886330880997, 7.000601328059915, + 4.0377228139896815, 1.5085515607857494, -0.47885640864022, + -2.2412020882437687, -3.7960891292841232, -5.408533332955, + -6.81238163459457, -8.358324382467972, -9.276213124157826, + -10.010855084984318, -10.044216183454134, -9.810795834695892, + -9.31039167329924, -8.650668777991863, -8.236617555210216, + -7.6591164282703925, -7.596360157492193, -7.371071419121213, + -7.237022560868301, -7.012493418142551, -6.234172396239222, + -5.455035318003907, -4.182585537649188, -3.078523552516234, + -2.1116254655952376, -1.4834751131447113, -1.2468092664610064, + -1.3015218232814445, -1.5386002784740624, -1.7275516352804645, + -1.7136739870556066, -1.3132170235576102, -0.5100155511816813 + ], + "pressure:J8:branch4_seg1": [ + -18964.571819371675, -28509.717325208705, -21218.62211232837, + -13715.924231827497, -4706.405004979533, 5461.100659956757, + 22737.979810348537, 43754.386754336796, 77018.75506237001, + 117510.88177257127, 164552.29704533433, 226867.95838282324, + 279096.1680953837, 351239.89132177137, 399862.4762675608, + 452639.02182238543, 494500.3810627772, 514007.9453771023, + 542216.4727332614, 527249.0186765355, 529368.4603459507, + 490370.65996156074, 455793.52724203956, 400650.17251477554, + 328465.6222238686, 261961.1630852338, 173361.34371504813, + 91843.42174723007, 5965.771106525565, -72463.78281642353, + -145368.53899925115, -199390.9661548522, -259406.49227161185, + -288696.3249973812, -328819.41019532684, -347852.3423362085, + -365658.4802403895, -384793.27948001237, -377629.51774966053, + -393744.91075696814, -368137.8845842119, -361015.33591914264, + -326440.8319230052, -284726.5319261486, -254840.90613607908, + -201593.24684532473, -172650.51984489808, -130865.24843036417, + -102996.78580964006, -80842.36854913115, -61052.8507130195, + -46236.4422526709, -30788.672058038028, -12624.827586867626, + 4673.642806498471, 24811.550029170146, 43180.172838161685, + 54773.43354156935, 68105.91340152375, 65155.547375726215, + 65068.626776723744, 51070.35234280578, 35671.37587326339, + 21328.765454040436, 3395.5927105235714, -6933.955903353815, + -18144.718292490023, -24758.082683525605, -30066.396511176095, + -34969.175133395176, -40374.33396908989, -46025.69925007898, + -53655.839234056, -59415.5205261287, -65710.44463860805, + -68702.13290589496, -68752.21015873743, -68900.17209653856, + -64591.979102423495, -63686.45734045835, -60544.64876499196, + -60218.231405190556, -61170.5318351703, -61948.74878762331, + -64059.03236996399, -62976.8230627497, -61910.768479369835, + -57416.847611598554, -52683.90802049988, -47358.95485906272, + -42860.15246038487, -40786.13914709857, -40288.586193962576, + -41954.39575548678, -44244.75545160695, -46237.8814278534, + -46878.014643669245, -45003.969472952325, -41289.06460244999, + -18964.571819371675 + ], + "flow:branch4_seg1:J9": [ + -0.5112416817206628, 0.6072469884262791, 1.9820602043696702, + 3.6398778144988526, 5.381442060780728, 7.488190727364257, + 10.400266622773271, 13.975677549502485, 19.620743402550552, + 26.195979888023675, 35.09512559774721, 45.037681316344184, + 56.19181621350882, 68.43257636520676, 79.04741862846222, + 90.91911221753243, 96.74661741383397, 104.05644990743961, + 104.8774068033019, 104.33297046005423, 102.57466108193086, + 93.84098308787652, 86.95372402254056, 73.03553685271457, + 59.63365469334383, 43.968698158286784, 27.14369739530084, + 9.856581059278097, -7.632514582410429, -25.069111739630458, + -40.14571451686334, -54.288161559564756, -65.95896923782134, + -75.09953080909972, -84.84291715867903, -88.58570909355139, + -95.30014966968577, -96.1628688224535, -97.8069034731365, + -98.91726276925483, -95.67353036313585, -94.32872385144177, + -86.74686457718718, -79.69663999758278, -69.38828290264354, + -59.278983082907224, -48.49525475349772, -37.84604105944388, + -28.141554347466784, -18.744413813453246, -11.519383955529065, + -4.904472334417564, 0.23752304991732992, 5.368561206245087, + 9.890249097567299, 14.878531873851776, 18.893146362372473, + 22.632197755362988, 25.355958421900688, 26.589212312610154, + 27.000859369368438, 25.14196443678621, 22.678507602046693, + 18.470305514881854, 14.654755496851193, 10.448514990664329, + 7.002222621256999, 4.038561673139384, 1.5094867851516107, + -0.47793594558347907, -2.240020363161421, -3.794789885402137, + -5.407095837142016, -6.811455222134586, -8.357115260644932, + -9.276109585849037, -10.010568776648881, -10.04488091115682, + -9.81134582260859, -9.310864189212507, -8.651123364164759, + -8.236125609708678, -7.659192809374025, -7.5957638182039755, + -7.371169944827845, -7.237361319559775, -7.012812898293029, + -6.235322691074947, -5.4557293698137315, -4.183747119204303, + -3.0791950118084364, -2.1119195781398767, -1.4833378703533573, + -1.2463257787120028, -1.3010368152359781, -1.5382865587470997, + -1.727702593430186, -1.7142198883152104, -1.3142551187290177, + -0.5112416817206628 + ], + "pressure:branch4_seg1:J9": [ + -19093.512039982583, -28770.97523107061, -21589.49196340942, + -14274.176265948592, -5417.524171540459, 4462.387239665526, + 21458.336798949767, 41911.24643944587, 74461.44944792365, + 113972.93016828483, 159404.7855153985, 220644.9676463853, + 270432.0732071694, 341134.2020809949, 387101.2760868341, + 436358.6722369635, 476112.22653872473, 491592.2644569215, + 518868.9519376691, 501995.5034162851, 503393.1722606409, + 464525.32271328394, 430724.40574794495, 378692.55360545806, + 310420.3237593415, 249720.27071684913, 166489.8978103858, + 91460.11056092422, 11369.54914732693, -60619.75626536458, + -128907.48126288856, -178176.50935232808, -236189.98841563554, + -263821.2773453626, -302700.72651396034, -322425.92772052746, + -339921.9858676696, -361398.8499605922, -355893.0699263773, + -375282.98574946565, -351647.513003495, -347601.45451952086, + -315407.4197385116, -276075.55551996524, -249787.93603628164, + -197862.2414327105, -171360.6260805079, -130041.48535474423, + -102704.45754890524, -81033.52241762464, -61485.03317989458, + -47032.87861875915, -31798.2906733757, -13689.133863235962, + 3413.780763703222, 23278.68712171918, 41398.374719423286, + 52581.612172170826, 66162.58395583363, 62937.986838126904, + 63288.68950465199, 49289.219603262514, 34021.4147744596, + 20248.776996618588, 2515.815300807894, -7234.258562636337, + -18254.162846759304, -24707.03975963689, -29892.590847591906, + -34642.24710812399, -39886.334410784584, -45325.2334079162, + -52849.34687134971, -58463.906555576126, -64701.09883404376, + -67657.14758993275, -67646.74262573253, -68009.9306339623, + -63694.45034671592, -63039.08444718501, -59906.79468456654, + -59564.60038637544, -60565.71524830543, -61281.083741065064, + -63496.912790336304, -62452.22866042872, -61491.40166722555, + -57065.246971127846, -52441.981713065376, -47205.26728588748, + -42806.04980815222, -40792.39664704104, -40264.532448339334, + -41887.60823412761, -44111.65070416675, -46069.224834906425, + -46737.869968526065, -44902.81816694643, -41311.952363715034, + -19093.512039982583 + ], + "flow:J9:branch4_seg2": [ + -0.5112416817206628, 0.6072469884262791, 1.9820602043696702, + 3.6398778144988526, 5.381442060780728, 7.488190727364257, + 10.400266622773271, 13.975677549502485, 19.620743402550552, + 26.195979888023675, 35.09512559774721, 45.037681316344184, + 56.19181621350882, 68.43257636520676, 79.04741862846222, + 90.91911221753243, 96.74661741383397, 104.05644990743961, + 104.8774068033019, 104.33297046005423, 102.57466108193086, + 93.84098308787652, 86.95372402254056, 73.03553685271457, + 59.63365469334383, 43.968698158286784, 27.14369739530084, + 9.856581059278097, -7.632514582410429, -25.069111739630458, + -40.14571451686334, -54.288161559564756, -65.95896923782134, + -75.09953080909972, -84.84291715867903, -88.58570909355139, + -95.30014966968577, -96.1628688224535, -97.8069034731365, + -98.91726276925483, -95.67353036313585, -94.32872385144177, + -86.74686457718718, -79.69663999758278, -69.38828290264354, + -59.278983082907224, -48.49525475349772, -37.84604105944388, + -28.141554347466784, -18.744413813453246, -11.519383955529065, + -4.904472334417564, 0.23752304991732992, 5.368561206245087, + 9.890249097567299, 14.878531873851776, 18.893146362372473, + 22.632197755362988, 25.355958421900688, 26.589212312610154, + 27.000859369368438, 25.14196443678621, 22.678507602046693, + 18.470305514881854, 14.654755496851193, 10.448514990664329, + 7.002222621256999, 4.038561673139384, 1.5094867851516107, + -0.47793594558347907, -2.240020363161421, -3.794789885402137, + -5.407095837142016, -6.811455222134586, -8.357115260644932, + -9.276109585849037, -10.010568776648881, -10.04488091115682, + -9.81134582260859, -9.310864189212507, -8.651123364164759, + -8.236125609708678, -7.659192809374025, -7.5957638182039755, + -7.371169944827845, -7.237361319559775, -7.012812898293029, + -6.235322691074947, -5.4557293698137315, -4.183747119204303, + -3.0791950118084364, -2.1119195781398767, -1.4833378703533573, + -1.2463257787120028, -1.3010368152359781, -1.5382865587470997, + -1.727702593430186, -1.7142198883152104, -1.3142551187290177, + -0.5112416817206628 + ], + "pressure:J9:branch4_seg2": [ + -19093.512039982583, -28770.97523107061, -21589.49196340942, + -14274.176265948592, -5417.524171540459, 4462.387239665526, + 21458.336798949767, 41911.24643944587, 74461.44944792365, + 113972.93016828483, 159404.7855153985, 220644.9676463853, + 270432.0732071694, 341134.2020809949, 387101.2760868341, + 436358.6722369635, 476112.22653872473, 491592.2644569215, + 518868.9519376691, 501995.5034162851, 503393.1722606409, + 464525.32271328394, 430724.40574794495, 378692.55360545806, + 310420.3237593415, 249720.27071684913, 166489.8978103858, + 91460.11056092422, 11369.54914732693, -60619.75626536458, + -128907.48126288856, -178176.50935232808, -236189.98841563554, + -263821.2773453626, -302700.72651396034, -322425.92772052746, + -339921.9858676696, -361398.8499605922, -355893.0699263773, + -375282.98574946565, -351647.513003495, -347601.45451952086, + -315407.4197385116, -276075.55551996524, -249787.93603628164, + -197862.2414327105, -171360.6260805079, -130041.48535474423, + -102704.45754890524, -81033.52241762464, -61485.03317989458, + -47032.87861875915, -31798.2906733757, -13689.133863235962, + 3413.780763703222, 23278.68712171918, 41398.374719423286, + 52581.612172170826, 66162.58395583363, 62937.986838126904, + 63288.68950465199, 49289.219603262514, 34021.4147744596, + 20248.776996618588, 2515.815300807894, -7234.258562636337, + -18254.162846759304, -24707.03975963689, -29892.590847591906, + -34642.24710812399, -39886.334410784584, -45325.2334079162, + -52849.34687134971, -58463.906555576126, -64701.09883404376, + -67657.14758993275, -67646.74262573253, -68009.9306339623, + -63694.45034671592, -63039.08444718501, -59906.79468456654, + -59564.60038637544, -60565.71524830543, -61281.083741065064, + -63496.912790336304, -62452.22866042872, -61491.40166722555, + -57065.246971127846, -52441.981713065376, -47205.26728588748, + -42806.04980815222, -40792.39664704104, -40264.532448339334, + -41887.60823412761, -44111.65070416675, -46069.224834906425, + -46737.869968526065, -44902.81816694643, -41311.952363715034, + -19093.512039982583 + ], + "flow:branch5_seg0:J10": [ + 2.652746566143373, 7.647368404528673, 12.805664399100829, + 18.289193678502055, 24.091188318663406, 31.44226894907826, + 41.92569172854144, 56.55360337747089, 77.75489778948116, + 104.12718429076293, 137.43198882454635, 173.7754117803313, + 212.67157184333522, 250.74397622077396, 281.7659458372769, + 309.56578470016757, 324.1494646073071, 334.00455269168356, + 330.3370421323829, 315.9864286817215, 294.6195876426668, + 260.53691705015103, 222.49886965890542, 173.8555781752708, + 119.79373982899835, 61.42159056342645, 0.03381670478376573, + -61.43785152920217, -118.98594015981209, -173.3391313504125, + -217.52593368847016, -255.50478536390855, -283.6147084757133, + -301.18458918596144, -315.08650789574824, -318.54057844665937, + -322.50868754984504, -318.3522351742821, -310.3542108330343, + -298.5594478645345, -278.0912639472036, -254.53130290515094, + -221.71247696300475, -185.63514616287955, -146.30910254288307, + -107.6413731430509, -71.58239721000955, -40.45579199388935, + -15.363789498024357, 3.434612472859042, 17.140599802855373, + 28.02828769769767, 37.311727296999074, 47.29422006784505, + 57.438677907034155, 68.64607438562379, 78.2323754941687, 85.6154387639228, + 88.66775564426956, 86.39380506899971, 79.25280476125636, 66.9878212399491, + 52.51992202608148, 36.913363899701174, 22.90534417741152, + 11.039344767204554, 2.3256224635592995, -3.688438261308664, + -7.665043896199559, -10.780016947598591, -13.938254793402773, + -17.55984161073933, -21.710893541245177, -25.578515136040863, + -28.872201481855775, -30.280240574626973, -30.148887488300012, + -28.13391234131837, -25.22992173137654, -22.084248752538066, + -19.377062092438372, -17.964426872602168, -17.459106538173543, + -17.98144558254106, -18.2909622981251, -17.81818494668212, + -16.20946187757434, -13.023512467606297, -9.128919282956538, + -4.89634992348685, -1.3941131492877146, 0.6357683722465077, + 0.989865761463881, -0.20304444345038852, -2.174211572999753, + -4.04486294661164, -4.835544745241184, -4.028465921335637, + -1.4025238788037333, 2.652746566143373 + ], + "pressure:branch5_seg0:J10": [ + -13516.555847488606, -21531.293139332894, -13642.851974433144, + -4635.5262835112435, 5099.3467394676945, 19920.433379373615, + 40966.91437299068, 70672.49678388632, 112347.82538786251, + 159562.37284462468, 222553.61212625334, 282430.4991373823, + 353005.1975103235, 415314.8519284176, 462608.59842477465, + 513077.8250739774, 530530.805891075, 559743.4097159582, 554966.7661876266, + 543080.4755175562, 517426.3167269485, 468185.63728482457, + 418440.14972308266, 344217.8645280171, 270168.0120042432, + 182385.9119460617, 92569.26763454324, -2.992197981258567, + -82342.45727516862, -163462.46332745385, -221758.95084148445, + -282205.80172499624, -321686.2369233642, -349042.4874849752, + -376722.32436106034, -382238.07471121766, -403762.1086091716, + -400472.3130248551, -404634.9413664686, -392907.64137555327, + -370014.4884225084, -341374.5913025725, -293102.2035548748, + -254064.09718952174, -201978.77977359833, -162027.75670843973, + -120567.05223697319, -87199.88998273714, -63932.8463243127, + -45616.57131366713, -33234.60748976249, -20893.492787015344, + -6859.71153420013, 9921.603078143715, 27678.12131276847, + 47692.32478354376, 61195.33573582557, 73892.25003297464, + 75368.08150864416, 71434.90466015025, 59098.554359974805, + 39265.433132911116, 21426.566083252783, 1082.7362491236784, + -12564.118620988645, -24236.39235247979, -31553.17666825939, + -35977.13580022342, -39349.891110011646, -43256.54721402522, + -48030.22782802206, -54704.25451967977, -61523.16645892793, + -67497.21073286464, -72002.50362722593, -72172.5813083638, + -71694.68255517131, -67406.70303631831, -64283.196528643566, + -60875.14622738915, -58747.09452094477, -59563.87545932632, + -60487.76004803414, -63290.53818344973, -63872.50436637653, + -62794.09853590019, -59427.650739484896, -53561.241578048255, + -47624.40086827798, -41901.70821630392, -38534.79657378436, + -37743.61376741434, -39400.99555294628, -42567.78781466604, + -45797.58458514697, -47770.412189300645, -46971.666038877156, + -43617.31813616023, -37469.93041804814, -13516.555847488606 + ], + "flow:J10:branch5_seg1": [ + 2.652746566143373, 7.647368404528673, 12.805664399100829, + 18.289193678502055, 24.091188318663406, 31.44226894907826, + 41.92569172854144, 56.55360337747089, 77.75489778948116, + 104.12718429076293, 137.43198882454635, 173.7754117803313, + 212.67157184333522, 250.74397622077396, 281.7659458372769, + 309.56578470016757, 324.1494646073071, 334.00455269168356, + 330.3370421323829, 315.9864286817215, 294.6195876426668, + 260.53691705015103, 222.49886965890542, 173.8555781752708, + 119.79373982899835, 61.42159056342645, 0.03381670478376573, + -61.43785152920217, -118.98594015981209, -173.3391313504125, + -217.52593368847016, -255.50478536390855, -283.6147084757133, + -301.18458918596144, -315.08650789574824, -318.54057844665937, + -322.50868754984504, -318.3522351742821, -310.3542108330343, + -298.5594478645345, -278.0912639472036, -254.53130290515094, + -221.71247696300475, -185.63514616287955, -146.30910254288307, + -107.6413731430509, -71.58239721000955, -40.45579199388935, + -15.363789498024357, 3.434612472859042, 17.140599802855373, + 28.02828769769767, 37.311727296999074, 47.29422006784505, + 57.438677907034155, 68.64607438562379, 78.2323754941687, 85.6154387639228, + 88.66775564426956, 86.39380506899971, 79.25280476125636, 66.9878212399491, + 52.51992202608148, 36.913363899701174, 22.90534417741152, + 11.039344767204554, 2.3256224635592995, -3.688438261308664, + -7.665043896199559, -10.780016947598591, -13.938254793402773, + -17.55984161073933, -21.710893541245177, -25.578515136040863, + -28.872201481855775, -30.280240574626973, -30.148887488300012, + -28.13391234131837, -25.22992173137654, -22.084248752538066, + -19.377062092438372, -17.964426872602168, -17.459106538173543, + -17.98144558254106, -18.2909622981251, -17.81818494668212, + -16.20946187757434, -13.023512467606297, -9.128919282956538, + -4.89634992348685, -1.3941131492877146, 0.6357683722465077, + 0.989865761463881, -0.20304444345038852, -2.174211572999753, + -4.04486294661164, -4.835544745241184, -4.028465921335637, + -1.4025238788037333, 2.652746566143373 + ], + "pressure:J10:branch5_seg1": [ + -13516.555847488606, -21531.293139332894, -13642.851974433144, + -4635.5262835112435, 5099.3467394676945, 19920.433379373615, + 40966.91437299068, 70672.49678388632, 112347.82538786251, + 159562.37284462468, 222553.61212625334, 282430.4991373823, + 353005.1975103235, 415314.8519284176, 462608.59842477465, + 513077.8250739774, 530530.805891075, 559743.4097159582, 554966.7661876266, + 543080.4755175562, 517426.3167269485, 468185.63728482457, + 418440.14972308266, 344217.8645280171, 270168.0120042432, + 182385.9119460617, 92569.26763454324, -2.992197981258567, + -82342.45727516862, -163462.46332745385, -221758.95084148445, + -282205.80172499624, -321686.2369233642, -349042.4874849752, + -376722.32436106034, -382238.07471121766, -403762.1086091716, + -400472.3130248551, -404634.9413664686, -392907.64137555327, + -370014.4884225084, -341374.5913025725, -293102.2035548748, + -254064.09718952174, -201978.77977359833, -162027.75670843973, + -120567.05223697319, -87199.88998273714, -63932.8463243127, + -45616.57131366713, -33234.60748976249, -20893.492787015344, + -6859.71153420013, 9921.603078143715, 27678.12131276847, + 47692.32478354376, 61195.33573582557, 73892.25003297464, + 75368.08150864416, 71434.90466015025, 59098.554359974805, + 39265.433132911116, 21426.566083252783, 1082.7362491236784, + -12564.118620988645, -24236.39235247979, -31553.17666825939, + -35977.13580022342, -39349.891110011646, -43256.54721402522, + -48030.22782802206, -54704.25451967977, -61523.16645892793, + -67497.21073286464, -72002.50362722593, -72172.5813083638, + -71694.68255517131, -67406.70303631831, -64283.196528643566, + -60875.14622738915, -58747.09452094477, -59563.87545932632, + -60487.76004803414, -63290.53818344973, -63872.50436637653, + -62794.09853590019, -59427.650739484896, -53561.241578048255, + -47624.40086827798, -41901.70821630392, -38534.79657378436, + -37743.61376741434, -39400.99555294628, -42567.78781466604, + -45797.58458514697, -47770.412189300645, -46971.666038877156, + -43617.31813616023, -37469.93041804814, -13516.555847488606 + ], + "flow:branch5_seg1:J11": [ + 2.5907092677557433, 7.584072139103499, 12.738206491777419, + 18.215770300038617, 24.010996961883077, 31.300752103366904, + 41.75262656936057, 56.25161035057506, 77.3922749964993, + 103.69751747208346, 136.932754152504, 173.36822336375715, + 212.1359694201478, 250.32083716370002, 281.26063409391634, + 309.2617295000177, 323.9513919539752, 333.9836421810246, + 330.5942981328902, 316.0395811941035, 294.93424639329646, + 260.7174272873144, 223.01238967484198, 174.47937295932593, + 120.44613177195485, 62.15508015542696, 0.6969812503081793, + -60.766295936476446, -118.34088940066565, -172.7851275459261, + -217.12082323042299, -255.12815481266608, -283.44704555162303, + -300.83286423211405, -314.9258895097456, -318.2968708741677, + -322.4746184065067, -318.50976303246614, -310.3441263723654, + -298.82372578870576, -278.0945395805775, -254.8074070240828, + -222.0397524382631, -186.01466144260078, -146.79604762528973, + -107.9636849434308, -71.8605760034634, -40.630497986311795, + -15.498086085459684, 3.318374883710061, 17.019813444010953, + 27.931909468328158, 37.17541480056262, 47.17221000268688, + 57.272408832606324, 68.5086803021542, 78.14887484095746, 85.5500177935509, + 88.73429182878897, 86.43211587177872, 79.37489191009253, + 67.11165581633668, 52.66875707106566, 37.06387275367776, + 23.021180208837446, 11.115517944204862, 2.3644819775117263, + -3.6690237777304797, -7.643265411688336, -10.743343095713726, + -13.897554918065403, -17.498914543711766, -21.66816605709675, + -25.526403355808068, -28.85324065948737, -30.28230067655778, + -30.168279236466578, -28.1815705215319, -25.2558888044269, + -22.105590029035366, -19.370217003946276, -17.951795309046013, + -17.441890258497793, -17.972432964264524, -18.303338142806687, + -17.830752106451115, -16.24744057374449, -13.057932547915351, + -9.178091325600933, -4.9351901940376415, -1.414804386243105, + 0.6370144515603923, 1.0125223948974784, -0.1735805400911713, + -2.150956472276663, -4.038670890394453, -4.854143008390119, + -4.068017415188924, -1.4581889474950545, 2.5907092677557433 + ], + "pressure:branch5_seg1:J11": [ + -14970.988038784937, -23225.109147408133, -15426.51726282138, + -6579.626205020758, 2953.9757774145496, 16805.7828240643, + 36757.15065688444, 64342.69471858292, 103882.29798139758, + 149105.89185700455, 209197.82681913985, 268635.5198208126, + 336327.5798238111, 399072.6708420021, 446790.010950102, 497974.6804699453, + 518255.62502996135, 547923.3254181937, 546945.565549146, 536184.404082107, + 514102.34470628516, 467624.15693295933, 422490.305134625, + 352233.7303608264, 281732.99824235786, 198208.14148911712, + 111277.15861906475, 21920.49720393641, -59438.87647480372, + -139745.48781397604, -199975.41417300593, -260643.2396972889, + -303340.9818543499, -332468.0220242907, -362851.2944515332, + -370935.8574567681, -394518.926496933, -394788.19326514006, + -399622.19833450334, -392231.63909642794, -370577.27970938914, + -346526.39584418264, -301089.0084645588, -263309.7945198682, + -213555.25073906325, -171989.09720808585, -130492.34277570988, + -95601.08291317636, -70393.71840410016, -50842.917693725176, + -37040.64953712471, -24035.84932426764, -10227.388526690209, + 6543.363016934162, 23693.48888560274, 43708.15370412095, + 57927.72361396659, 70977.83464575453, 74556.50381474347, + 71438.81889336742, 61118.61178959685, 42585.587461584524, + 25317.11103446576, 5423.987346623261, -8943.604977717932, + -21249.08460885211, -29299.1969844883, -34502.770447095594, + -38158.54955329063, -42142.372355561914, -46847.7758393513, + -53149.650678989055, -59994.687416723405, -65905.08996796388, + -70826.49660386826, -71605.31306657226, -71547.46132352822, + -67970.22063816198, -64826.40542268061, -61510.60201527687, + -59156.53373494905, -59576.2383780479, -60305.03999175644, + -62871.2193584087, -63661.19232618138, -62850.390128680454, + -59960.90812574098, -54491.59437291605, -48865.81331738888, + -43083.19888429898, -39426.942850473635, -38122.07917937726, + -39242.917053607394, -42036.62982606205, -45122.80667589294, + -47258.17936022187, -46915.103931130114, -44085.01710659259, + -38511.257780335574, -14970.988038784937 + ], + "flow:J11:branch5_seg2": [ + 2.5907092677557433, 7.584072139103499, 12.738206491777419, + 18.215770300038617, 24.010996961883077, 31.300752103366904, + 41.75262656936057, 56.25161035057506, 77.3922749964993, + 103.69751747208346, 136.932754152504, 173.36822336375715, + 212.1359694201478, 250.32083716370002, 281.26063409391634, + 309.2617295000177, 323.9513919539752, 333.9836421810246, + 330.5942981328902, 316.0395811941035, 294.93424639329646, + 260.7174272873144, 223.01238967484198, 174.47937295932593, + 120.44613177195485, 62.15508015542696, 0.6969812503081793, + -60.766295936476446, -118.34088940066565, -172.7851275459261, + -217.12082323042299, -255.12815481266608, -283.44704555162303, + -300.83286423211405, -314.9258895097456, -318.2968708741677, + -322.4746184065067, -318.50976303246614, -310.3441263723654, + -298.82372578870576, -278.0945395805775, -254.8074070240828, + -222.0397524382631, -186.01466144260078, -146.79604762528973, + -107.9636849434308, -71.8605760034634, -40.630497986311795, + -15.498086085459684, 3.318374883710061, 17.019813444010953, + 27.931909468328158, 37.17541480056262, 47.17221000268688, + 57.272408832606324, 68.5086803021542, 78.14887484095746, 85.5500177935509, + 88.73429182878897, 86.43211587177872, 79.37489191009253, + 67.11165581633668, 52.66875707106566, 37.06387275367776, + 23.021180208837446, 11.115517944204862, 2.3644819775117263, + -3.6690237777304797, -7.643265411688336, -10.743343095713726, + -13.897554918065403, -17.498914543711766, -21.66816605709675, + -25.526403355808068, -28.85324065948737, -30.28230067655778, + -30.168279236466578, -28.1815705215319, -25.2558888044269, + -22.105590029035366, -19.370217003946276, -17.951795309046013, + -17.441890258497793, -17.972432964264524, -18.303338142806687, + -17.830752106451115, -16.24744057374449, -13.057932547915351, + -9.178091325600933, -4.9351901940376415, -1.414804386243105, + 0.6370144515603923, 1.0125223948974784, -0.1735805400911713, + -2.150956472276663, -4.038670890394453, -4.854143008390119, + -4.068017415188924, -1.4581889474950545, 2.5907092677557433 + ], + "pressure:J11:branch5_seg2": [ + -14970.988038784937, -23225.109147408133, -15426.51726282138, + -6579.626205020758, 2953.9757774145496, 16805.7828240643, + 36757.15065688444, 64342.69471858292, 103882.29798139758, + 149105.89185700455, 209197.82681913985, 268635.5198208126, + 336327.5798238111, 399072.6708420021, 446790.010950102, 497974.6804699453, + 518255.62502996135, 547923.3254181937, 546945.565549146, 536184.404082107, + 514102.34470628516, 467624.15693295933, 422490.305134625, + 352233.7303608264, 281732.99824235786, 198208.14148911712, + 111277.15861906475, 21920.49720393641, -59438.87647480372, + -139745.48781397604, -199975.41417300593, -260643.2396972889, + -303340.9818543499, -332468.0220242907, -362851.2944515332, + -370935.8574567681, -394518.926496933, -394788.19326514006, + -399622.19833450334, -392231.63909642794, -370577.27970938914, + -346526.39584418264, -301089.0084645588, -263309.7945198682, + -213555.25073906325, -171989.09720808585, -130492.34277570988, + -95601.08291317636, -70393.71840410016, -50842.917693725176, + -37040.64953712471, -24035.84932426764, -10227.388526690209, + 6543.363016934162, 23693.48888560274, 43708.15370412095, + 57927.72361396659, 70977.83464575453, 74556.50381474347, + 71438.81889336742, 61118.61178959685, 42585.587461584524, + 25317.11103446576, 5423.987346623261, -8943.604977717932, + -21249.08460885211, -29299.1969844883, -34502.770447095594, + -38158.54955329063, -42142.372355561914, -46847.7758393513, + -53149.650678989055, -59994.687416723405, -65905.08996796388, + -70826.49660386826, -71605.31306657226, -71547.46132352822, + -67970.22063816198, -64826.40542268061, -61510.60201527687, + -59156.53373494905, -59576.2383780479, -60305.03999175644, + -62871.2193584087, -63661.19232618138, -62850.390128680454, + -59960.90812574098, -54491.59437291605, -48865.81331738888, + -43083.19888429898, -39426.942850473635, -38122.07917937726, + -39242.917053607394, -42036.62982606205, -45122.80667589294, + -47258.17936022187, -46915.103931130114, -44085.01710659259, + -38511.257780335574, -14970.988038784937 + ], + "flow:branch6_seg0:J12": [ + 1.907266180504827, 5.215533514368674, 8.575712482333538, + 12.052704493598805, 15.768254525031052, 20.345079259482194, + 27.21641210101397, 36.57785698089799, 50.56801788022567, + 67.83399912717954, 89.34707599549989, 113.51556123150048, + 137.78052419896676, 162.9850217083571, 181.77559945259307, + 199.26155740319575, 208.113418524101, 212.87169745489052, + 210.82378948042683, 199.48960848447828, 185.88071020154058, + 162.6336851801511, 138.28719248992888, 106.48507855076329, + 71.44984226358581, 33.96238415271073, -5.683914510700734, + -44.74096843408651, -81.5782290799431, -115.50385819024324, + -143.59226679747653, -166.18991937526525, -184.08872358081618, + -193.35092828161447, -201.8368057658873, -202.93647523346786, + -204.83497438632511, -202.27549868276446, -195.82326552150147, + -188.83923091577523, -174.16360736452646, -159.63751007467675, + -137.5017908386148, -114.08831361958994, -89.05649375267603, + -63.589378669457496, -41.48323774764523, -21.450491944199317, + -6.395073233668865, 4.8399442491267095, 12.8731028966148, + 19.097771705874663, 24.5970383429602, 30.842164156272126, + 37.1212347000771, 44.42986099924211, 50.56219179346006, 54.99146893225899, + 57.02106165071146, 54.72573456364778, 50.09226561840225, + 41.466531811211624, 31.93287573982802, 21.82908265514439, + 12.729855073241586, 5.493614009639041, 0.1270337063834578, + -3.3315446198912406, -5.507639369976356, -7.278860884709987, + -9.16055092672592, -11.407809811570003, -14.158639935952397, + -16.56487841915566, -18.735023086520663, -19.50713674949004, + -19.230721385295443, -17.863566526179373, -15.698887516282252, + -13.72262751080336, -11.868933801815821, -11.071048131912963, + -10.88853379894883, -11.30209722530632, -11.671227563712664, + -11.304324509523324, -10.263166600356405, -8.073905142048813, + -5.490423091660267, -2.684420018037953, -0.4516398822745221, + 0.7831102667115512, 0.8479745590281842, -0.08995973403118054, + -1.507385697895684, -2.795883120483328, -3.3051700401520874, + -2.679499240727667, -0.8675614456572246, 1.907266180504827 + ], + "pressure:branch6_seg0:J12": [ + -16431.998179881648, -24908.245946924806, -17151.189840041214, + -8445.069667281801, 941.2657805245539, 13855.990724097073, + 32719.416688655383, 58330.02942972422, 95834.2659338109, + 139429.95841477337, 196833.81692300228, 256413.40376291383, + 321731.7962580613, 385726.78002423607, 435063.86348904535, + 487813.22967125586, 512509.6721674425, 542985.3678394912, + 546648.0188768882, 537332.3742646199, 518862.6018012764, + 475215.36842648225, 433596.20585853147, 366465.3952125853, + 297501.54371207114, 216329.3467197666, 130141.68150234822, + 41921.274806095316, -40495.37563492557, -121525.93344120307, + -185198.1097830096, -246556.90524320645, -292742.4951853507, + -323719.3695956578, -356337.42984048784, -366920.5512194975, + -391327.10707181215, -394732.45102128346, -399056.4551658294, + -395014.1704804969, -374164.9872278333, -353849.90181035275, + -311079.64239755116, -273717.8947007317, -225991.0026259881, + -182329.58507410943, -140679.88386580994, -104140.46781427675, + -76969.47264129751, -56107.672426072844, -40814.989418664125, + -27119.416651184198, -13461.245327493094, 3248.12790877362, + 19900.06336148227, 39892.42533490584, 55013.28598765133, + 68435.52198488526, 74189.18933782406, 71968.17205742939, + 63697.50115956405, 46518.69389825337, 29687.146705096297, + 10188.44189470551, -5115.208230337989, -18147.211305549383, + -27052.624820857513, -33059.77039498916, -37041.99072570389, + -41112.166461549234, -45770.20624842334, -51725.40717647647, + -58596.76181727449, -64499.72107794972, -69841.18335718596, + -71291.6321929389, -71616.59947295873, -68762.94434896618, + -65542.03246908468, -62301.15565942071, -59701.83821762927, + -59698.77110902212, -60248.67009612539, -62537.55490777527, + -63541.647626927486, -62993.69514750527, -60578.223617664815, + -55525.042418380275, -50174.896792142026, -44330.54820165836, + -40337.710515825194, -38493.69533850247, -39065.92067713143, + -41485.39901825435, -44444.09988154762, -46753.3963625812, + -46885.7542803199, -44579.45764180942, -39579.57457159514, + -16431.998179881648 + ], + "flow:J12:branch6_seg1": [ + 1.907266180504827, 5.215533514368674, 8.575712482333538, + 12.052704493598805, 15.768254525031052, 20.345079259482194, + 27.21641210101397, 36.57785698089799, 50.56801788022567, + 67.83399912717954, 89.34707599549989, 113.51556123150048, + 137.78052419896676, 162.9850217083571, 181.77559945259307, + 199.26155740319575, 208.113418524101, 212.87169745489052, + 210.82378948042683, 199.48960848447828, 185.88071020154058, + 162.6336851801511, 138.28719248992888, 106.48507855076329, + 71.44984226358581, 33.96238415271073, -5.683914510700734, + -44.74096843408651, -81.5782290799431, -115.50385819024324, + -143.59226679747653, -166.18991937526525, -184.08872358081618, + -193.35092828161447, -201.8368057658873, -202.93647523346786, + -204.83497438632511, -202.27549868276446, -195.82326552150147, + -188.83923091577523, -174.16360736452646, -159.63751007467675, + -137.5017908386148, -114.08831361958994, -89.05649375267603, + -63.589378669457496, -41.48323774764523, -21.450491944199317, + -6.395073233668865, 4.8399442491267095, 12.8731028966148, + 19.097771705874663, 24.5970383429602, 30.842164156272126, + 37.1212347000771, 44.42986099924211, 50.56219179346006, 54.99146893225899, + 57.02106165071146, 54.72573456364778, 50.09226561840225, + 41.466531811211624, 31.93287573982802, 21.82908265514439, + 12.729855073241586, 5.493614009639041, 0.1270337063834578, + -3.3315446198912406, -5.507639369976356, -7.278860884709987, + -9.16055092672592, -11.407809811570003, -14.158639935952397, + -16.56487841915566, -18.735023086520663, -19.50713674949004, + -19.230721385295443, -17.863566526179373, -15.698887516282252, + -13.72262751080336, -11.868933801815821, -11.071048131912963, + -10.88853379894883, -11.30209722530632, -11.671227563712664, + -11.304324509523324, -10.263166600356405, -8.073905142048813, + -5.490423091660267, -2.684420018037953, -0.4516398822745221, + 0.7831102667115512, 0.8479745590281842, -0.08995973403118054, + -1.507385697895684, -2.795883120483328, -3.3051700401520874, + -2.679499240727667, -0.8675614456572246, 1.907266180504827 + ], + "pressure:J12:branch6_seg1": [ + -16431.998179881648, -24908.245946924806, -17151.189840041214, + -8445.069667281801, 941.2657805245539, 13855.990724097073, + 32719.416688655383, 58330.02942972422, 95834.2659338109, + 139429.95841477337, 196833.81692300228, 256413.40376291383, + 321731.7962580613, 385726.78002423607, 435063.86348904535, + 487813.22967125586, 512509.6721674425, 542985.3678394912, + 546648.0188768882, 537332.3742646199, 518862.6018012764, + 475215.36842648225, 433596.20585853147, 366465.3952125853, + 297501.54371207114, 216329.3467197666, 130141.68150234822, + 41921.274806095316, -40495.37563492557, -121525.93344120307, + -185198.1097830096, -246556.90524320645, -292742.4951853507, + -323719.3695956578, -356337.42984048784, -366920.5512194975, + -391327.10707181215, -394732.45102128346, -399056.4551658294, + -395014.1704804969, -374164.9872278333, -353849.90181035275, + -311079.64239755116, -273717.8947007317, -225991.0026259881, + -182329.58507410943, -140679.88386580994, -104140.46781427675, + -76969.47264129751, -56107.672426072844, -40814.989418664125, + -27119.416651184198, -13461.245327493094, 3248.12790877362, + 19900.06336148227, 39892.42533490584, 55013.28598765133, + 68435.52198488526, 74189.18933782406, 71968.17205742939, + 63697.50115956405, 46518.69389825337, 29687.146705096297, + 10188.44189470551, -5115.208230337989, -18147.211305549383, + -27052.624820857513, -33059.77039498916, -37041.99072570389, + -41112.166461549234, -45770.20624842334, -51725.40717647647, + -58596.76181727449, -64499.72107794972, -69841.18335718596, + -71291.6321929389, -71616.59947295873, -68762.94434896618, + -65542.03246908468, -62301.15565942071, -59701.83821762927, + -59698.77110902212, -60248.67009612539, -62537.55490777527, + -63541.647626927486, -62993.69514750527, -60578.223617664815, + -55525.042418380275, -50174.896792142026, -44330.54820165836, + -40337.710515825194, -38493.69533850247, -39065.92067713143, + -41485.39901825435, -44444.09988154762, -46753.3963625812, + -46885.7542803199, -44579.45764180942, -39579.57457159514, + -16431.998179881648 + ], + "flow:branch6_seg1:J13": [ + 1.8550385945612762, 5.157724442596324, 8.516450196636484, + 11.986412634138764, 15.699312093799508, 20.23000964169912, + 27.065142441142783, 36.33629897358354, 50.265595475623876, + 67.48459995045836, 88.90591377990283, 113.14906817912436, + 137.28335530305495, 162.57706237999963, 181.33836312924072, + 198.94350003470123, 207.97106304199283, 212.75750687748288, + 210.94931386912938, 199.5232913858064, 186.0888067437509, + 162.83019664851543, 138.68984789567483, 107.01836720462543, + 72.00152907669269, 34.5784913012842, -5.096329255557098, + -44.12433221051951, -81.00864301217871, -114.9598577160939, + -143.21932467617802, -165.78518205788362, -183.83911670867366, + -193.03529990337694, -201.64374137135007, -202.7617646233152, + -204.73166647454417, -202.36080128022502, -195.78753952850306, + -188.9632341874994, -174.18158212529696, -159.86120220341255, + -137.8018032341634, -114.41233689456061, -89.48384716702672, + -63.87774413559574, -41.77398616422858, -21.638378115567136, + -6.557444241501097, 4.704724324580642, 12.75976519749975, + 18.997153768255252, 24.48207469457287, 30.72688168823246, + 36.97676186776065, 44.297829964110555, 50.47803641703922, + 54.91192749375057, 57.04266677967797, 54.73955224948091, + 50.189861806740105, 41.57640071706237, 32.064450642745385, + 21.97697215776721, 12.836162640286492, 5.5769118628307215, + 0.17295353219068335, -3.3030823142134733, -5.481446665650237, + -7.246869468928552, -9.124126394009956, -11.356224103283175, + -14.114575075041511, -16.516413546100885, -18.71010548360296, + -19.50468024773577, -19.238529859515104, -17.90160361933753, + -15.718849467494817, -13.745519136842264, -11.87017327421092, + -11.064897179504996, -10.880796185851045, -11.289570505052257, + -11.67500623494971, -11.310901962637821, -10.289220462950055, + -8.10578928012778, -5.533492156161876, -2.7234769378152857, + -0.4767474610825101, 0.7783382373297029, 0.8610925844670587, + -0.06728414249221734, -1.4860906226035822, -2.785618801581077, + -3.315061837101041, -2.7064737808340324, -0.9121215544882604, + 1.8550385945612762 + ], + "pressure:branch6_seg1:J13": [ + -17958.465942867846, -26696.14157657646, -18954.90174111246, + -10472.176861328739, -1244.622538899624, 10659.218887257197, + 28202.919873820927, 51815.76745341528, 86758.30905769343, + 128659.83397558678, 182647.93205044372, 241840.23388687917, + 304090.77325443056, 368196.353436039, 418520.193916746, 470748.2988585676, + 500042.967853068, 528745.9336761403, 537333.5337890348, 528681.5010268282, + 513375.03528900247, 474270.92692673195, 435493.03819887777, + 374791.9796481524, 308510.8434280212, 232272.5346873699, + 149461.10553518787, 64730.540184755664, -16576.222031075293, + -96007.34413913354, -162521.6689805919, -223129.73471514843, + -272819.34633104934, -306065.7415951727, -340450.1471875249, + -355678.3389022249, -379818.2071008228, -388805.4725683102, + -392943.5699194962, -392864.3335228204, -374851.3225172435, + -357728.4367648842, -319833.6643362103, -282672.7928460059, + -237605.16541142474, -192109.89407775566, -150371.50341253146, + -112113.51156679369, -83254.4352619351, -60952.31397926044, + -44402.46621033077, -30194.461051678303, -16602.494987691407, + -367.27217327839276, 15967.072218302532, 35517.95067339985, + 51699.09782037114, 65351.21831970344, 73139.72854447283, + 72021.78783060226, 65611.95785852811, 50033.24832823784, + 33559.13706407181, 14657.501718462516, -1619.2736129307002, + -15184.983148691366, -25046.36397454942, -31658.31366893891, + -35989.0913131639, -40020.023174014954, -44543.66029491016, + -50138.46309294242, -56904.02737461128, -62876.82848575462, + -68522.86176546068, -70782.21871489585, -71430.7448952272, + -69372.18330429931, -66071.99236325348, -62923.12586027641, + -60060.09230141091, -59607.23335965789, -60024.30416728113, + -61971.44393594407, -63276.519165134014, -62991.49534987404, + -61081.31762409529, -56538.925671221834, -51395.100605773034, + -45599.5612732323, -41206.55101588131, -38824.24942687913, + -38837.6170967965, -40852.39634463611, -43708.894453259374, + -46197.21910891117, -46845.34409004988, -45090.28288073485, + -40705.901897961005, -17958.465942867846 + ], + "flow:J13:branch6_seg2": [ + 1.8550385945612762, 5.157724442596324, 8.516450196636484, + 11.986412634138764, 15.699312093799508, 20.23000964169912, + 27.065142441142783, 36.33629897358354, 50.265595475623876, + 67.48459995045836, 88.90591377990283, 113.14906817912436, + 137.28335530305495, 162.57706237999963, 181.33836312924072, + 198.94350003470123, 207.97106304199283, 212.75750687748288, + 210.94931386912938, 199.5232913858064, 186.0888067437509, + 162.83019664851543, 138.68984789567483, 107.01836720462543, + 72.00152907669269, 34.5784913012842, -5.096329255557098, + -44.12433221051951, -81.00864301217871, -114.9598577160939, + -143.21932467617802, -165.78518205788362, -183.83911670867366, + -193.03529990337694, -201.64374137135007, -202.7617646233152, + -204.73166647454417, -202.36080128022502, -195.78753952850306, + -188.9632341874994, -174.18158212529696, -159.86120220341255, + -137.8018032341634, -114.41233689456061, -89.48384716702672, + -63.87774413559574, -41.77398616422858, -21.638378115567136, + -6.557444241501097, 4.704724324580642, 12.75976519749975, + 18.997153768255252, 24.48207469457287, 30.72688168823246, + 36.97676186776065, 44.297829964110555, 50.47803641703922, + 54.91192749375057, 57.04266677967797, 54.73955224948091, + 50.189861806740105, 41.57640071706237, 32.064450642745385, + 21.97697215776721, 12.836162640286492, 5.5769118628307215, + 0.17295353219068335, -3.3030823142134733, -5.481446665650237, + -7.246869468928552, -9.124126394009956, -11.356224103283175, + -14.114575075041511, -16.516413546100885, -18.71010548360296, + -19.50468024773577, -19.238529859515104, -17.90160361933753, + -15.718849467494817, -13.745519136842264, -11.87017327421092, + -11.064897179504996, -10.880796185851045, -11.289570505052257, + -11.67500623494971, -11.310901962637821, -10.289220462950055, + -8.10578928012778, -5.533492156161876, -2.7234769378152857, + -0.4767474610825101, 0.7783382373297029, 0.8610925844670587, + -0.06728414249221734, -1.4860906226035822, -2.785618801581077, + -3.315061837101041, -2.7064737808340324, -0.9121215544882604, + 1.8550385945612762 + ], + "pressure:J13:branch6_seg2": [ + -17958.465942867846, -26696.14157657646, -18954.90174111246, + -10472.176861328739, -1244.622538899624, 10659.218887257197, + 28202.919873820927, 51815.76745341528, 86758.30905769343, + 128659.83397558678, 182647.93205044372, 241840.23388687917, + 304090.77325443056, 368196.353436039, 418520.193916746, 470748.2988585676, + 500042.967853068, 528745.9336761403, 537333.5337890348, 528681.5010268282, + 513375.03528900247, 474270.92692673195, 435493.03819887777, + 374791.9796481524, 308510.8434280212, 232272.5346873699, + 149461.10553518787, 64730.540184755664, -16576.222031075293, + -96007.34413913354, -162521.6689805919, -223129.73471514843, + -272819.34633104934, -306065.7415951727, -340450.1471875249, + -355678.3389022249, -379818.2071008228, -388805.4725683102, + -392943.5699194962, -392864.3335228204, -374851.3225172435, + -357728.4367648842, -319833.6643362103, -282672.7928460059, + -237605.16541142474, -192109.89407775566, -150371.50341253146, + -112113.51156679369, -83254.4352619351, -60952.31397926044, + -44402.46621033077, -30194.461051678303, -16602.494987691407, + -367.27217327839276, 15967.072218302532, 35517.95067339985, + 51699.09782037114, 65351.21831970344, 73139.72854447283, + 72021.78783060226, 65611.95785852811, 50033.24832823784, + 33559.13706407181, 14657.501718462516, -1619.2736129307002, + -15184.983148691366, -25046.36397454942, -31658.31366893891, + -35989.0913131639, -40020.023174014954, -44543.66029491016, + -50138.46309294242, -56904.02737461128, -62876.82848575462, + -68522.86176546068, -70782.21871489585, -71430.7448952272, + -69372.18330429931, -66071.99236325348, -62923.12586027641, + -60060.09230141091, -59607.23335965789, -60024.30416728113, + -61971.44393594407, -63276.519165134014, -62991.49534987404, + -61081.31762409529, -56538.925671221834, -51395.100605773034, + -45599.5612732323, -41206.55101588131, -38824.24942687913, + -38837.6170967965, -40852.39634463611, -43708.894453259374, + -46197.21910891117, -46845.34409004988, -45090.28288073485, + -40705.901897961005, -17958.465942867846 + ], + "flow:branch7_seg0:J14": [ + 0.5233652273821738, 2.58558769672598, 4.8899298099693596, + 7.5355674704844215, 10.424046421948994, 13.92278218432799, + 18.894848353648683, 25.32662279533396, 35.053347277493955, + 46.81367893187514, 62.152712890163016, 79.35152631182228, + 97.54399444240683, 117.35636528570396, 133.2598356633401, + 150.85616096726775, 160.75461083586166, 169.35057237601814, + 171.4716248086638, 166.8634692808322, 161.76667546920382, + 147.16284834205638, 132.70229115355613, 109.91984054632213, + 84.69795774869444, 57.1342771480565, 26.981324924794563, + -2.881515842455265, -32.876564800503935, -62.2098939580671, + -87.47541721987722, -109.76257197181744, -128.0871350983057, + -140.24198842424047, -153.21001183943304, -158.3830459781316, + -165.0518496041002, -165.82701543369058, -163.83706818123795, + -161.91778036149515, -153.3320760845872, -146.30715767534295, + -131.46878154890192, -116.07614212786793, -97.68524844317633, + -78.19016528310357, -60.771694072671956, -43.108197321840834, + -28.66537832317166, -15.630520480702618, -5.188888184195464, + 3.205308432439572, 10.284907910555244, 17.1121630068416, + 23.49751873691467, 30.47289441303583, 36.19995414308269, + 40.933257486251435, 44.00923325294311, 44.257110735057736, + 43.2078855260412, 38.73702836348578, 33.506170402726674, + 26.528497409983686, 19.61834575657207, 13.458014065324821, + 8.119095463931119, 4.112200255864623, 0.7949941091188126, + -1.984093314800594, -4.426102061472169, -6.742599525026596, + -9.1531295657493, -11.27571576867108, -13.418186404313058, + -14.584498072274926, -15.218838414632982, -14.908192350212309, + -13.953263408410645, -12.967345763023523, -11.712090450969791, + -11.114083484142078, -10.538047897710774, -10.434305657071722, + -10.3498912990943, -9.96094560313494, -9.409199687149068, + -8.022730098758196, -6.45151234120278, -4.476237557308449, + -2.7090405578528802, -1.4421754937004392, -0.7962536596031068, + -0.8481583574672268, -1.2867935935486432, -1.8524209456000376, + -2.1538725349626606, -1.9422309544637266, -1.0428476091160448, + 0.5233652273821738 + ], + "pressure:branch7_seg0:J14": [ + -16196.184230014274, -24925.932304735386, -17410.991557343066, + -8901.527130550698, 457.6885550398312, 12628.941755586635, + 31878.826478233746, 57085.677753577314, 95162.7153854333, + 139799.61513404793, 195490.98049342097, 255874.71042083684, + 317881.4990227556, 383877.2393856401, 433102.34498234215, + 489732.64845708525, 516141.584691629, 542560.0611783527, + 551482.6325341542, 535538.5483948657, 528974.8208771799, + 485162.41157583403, 442102.2784364991, 377584.99702687754, + 300622.7190512384, 223733.45078921886, 136511.79400101796, + 46838.35846671958, -37864.52260845127, -121684.86136192734, + -186403.16901913594, -243993.78561552122, -292324.2091476695, + -320247.15918574546, -359965.9271035798, -370542.7781627778, + -391236.6468816952, -398304.0735976792, -392617.85663123295, + -397223.848091978, -374443.16715755936, -355345.8496126384, + -315584.61685932794, -272011.4362516445, -228200.16867667568, + -184111.1931979636, -146693.28810087446, -110500.57544242177, + -83699.16366634016, -62189.97667703392, -46528.90186281129, + -33313.56461344611, -18887.335042503066, -838.0198418811931, + 17089.19082428236, 37737.65128784728, 53587.83534810394, + 65165.24371492126, 72091.06262270255, 69275.25196709072, + 62618.36902617634, 46450.82513191856, 29567.360829305057, + 10827.92742463268, -4619.096120214012, -15882.354477290228, + -24711.909201922146, -30254.87192814896, -34898.41385015348, + -39546.19555291608, -44395.92767701424, -50370.75158438894, + -57721.678978448974, -63747.34405727096, -69379.83386595866, + -71028.92115017942, -70710.88558465743, -68160.10233456257, + -64647.058328988256, -62207.56732665146, -59858.04080147387, + -60307.83073837471, -60874.85282611792, -62774.30241049567, + -64083.13447811874, -62916.53740690189, -60894.59568806637, + -55619.17260979659, -50162.65931113852, -44667.38586685366, + -40462.910160775355, -39102.956303429215, -39845.780488367476, + -42242.493159004836, -45044.56646218509, -47040.30006540956, + -46995.145073613385, -44462.81488408678, -39343.128760212545, + -16196.184230014274 + ], + "flow:J14:branch7_seg1": [ + 0.5233652273821738, 2.58558769672598, 4.8899298099693596, + 7.5355674704844215, 10.424046421948994, 13.92278218432799, + 18.894848353648683, 25.32662279533396, 35.053347277493955, + 46.81367893187514, 62.152712890163016, 79.35152631182228, + 97.54399444240683, 117.35636528570396, 133.2598356633401, + 150.85616096726775, 160.75461083586166, 169.35057237601814, + 171.4716248086638, 166.8634692808322, 161.76667546920382, + 147.16284834205638, 132.70229115355613, 109.91984054632213, + 84.69795774869444, 57.1342771480565, 26.981324924794563, + -2.881515842455265, -32.876564800503935, -62.2098939580671, + -87.47541721987722, -109.76257197181744, -128.0871350983057, + -140.24198842424047, -153.21001183943304, -158.3830459781316, + -165.0518496041002, -165.82701543369058, -163.83706818123795, + -161.91778036149515, -153.3320760845872, -146.30715767534295, + -131.46878154890192, -116.07614212786793, -97.68524844317633, + -78.19016528310357, -60.771694072671956, -43.108197321840834, + -28.66537832317166, -15.630520480702618, -5.188888184195464, + 3.205308432439572, 10.284907910555244, 17.1121630068416, + 23.49751873691467, 30.47289441303583, 36.19995414308269, + 40.933257486251435, 44.00923325294311, 44.257110735057736, + 43.2078855260412, 38.73702836348578, 33.506170402726674, + 26.528497409983686, 19.61834575657207, 13.458014065324821, + 8.119095463931119, 4.112200255864623, 0.7949941091188126, + -1.984093314800594, -4.426102061472169, -6.742599525026596, + -9.1531295657493, -11.27571576867108, -13.418186404313058, + -14.584498072274926, -15.218838414632982, -14.908192350212309, + -13.953263408410645, -12.967345763023523, -11.712090450969791, + -11.114083484142078, -10.538047897710774, -10.434305657071722, + -10.3498912990943, -9.96094560313494, -9.409199687149068, + -8.022730098758196, -6.45151234120278, -4.476237557308449, + -2.7090405578528802, -1.4421754937004392, -0.7962536596031068, + -0.8481583574672268, -1.2867935935486432, -1.8524209456000376, + -2.1538725349626606, -1.9422309544637266, -1.0428476091160448, + 0.5233652273821738 + ], + "pressure:J14:branch7_seg1": [ + -16196.184230014274, -24925.932304735386, -17410.991557343066, + -8901.527130550698, 457.6885550398312, 12628.941755586635, + 31878.826478233746, 57085.677753577314, 95162.7153854333, + 139799.61513404793, 195490.98049342097, 255874.71042083684, + 317881.4990227556, 383877.2393856401, 433102.34498234215, + 489732.64845708525, 516141.584691629, 542560.0611783527, + 551482.6325341542, 535538.5483948657, 528974.8208771799, + 485162.41157583403, 442102.2784364991, 377584.99702687754, + 300622.7190512384, 223733.45078921886, 136511.79400101796, + 46838.35846671958, -37864.52260845127, -121684.86136192734, + -186403.16901913594, -243993.78561552122, -292324.2091476695, + -320247.15918574546, -359965.9271035798, -370542.7781627778, + -391236.6468816952, -398304.0735976792, -392617.85663123295, + -397223.848091978, -374443.16715755936, -355345.8496126384, + -315584.61685932794, -272011.4362516445, -228200.16867667568, + -184111.1931979636, -146693.28810087446, -110500.57544242177, + -83699.16366634016, -62189.97667703392, -46528.90186281129, + -33313.56461344611, -18887.335042503066, -838.0198418811931, + 17089.19082428236, 37737.65128784728, 53587.83534810394, + 65165.24371492126, 72091.06262270255, 69275.25196709072, + 62618.36902617634, 46450.82513191856, 29567.360829305057, + 10827.92742463268, -4619.096120214012, -15882.354477290228, + -24711.909201922146, -30254.87192814896, -34898.41385015348, + -39546.19555291608, -44395.92767701424, -50370.75158438894, + -57721.678978448974, -63747.34405727096, -69379.83386595866, + -71028.92115017942, -70710.88558465743, -68160.10233456257, + -64647.058328988256, -62207.56732665146, -59858.04080147387, + -60307.83073837471, -60874.85282611792, -62774.30241049567, + -64083.13447811874, -62916.53740690189, -60894.59568806637, + -55619.17260979659, -50162.65931113852, -44667.38586685366, + -40462.910160775355, -39102.956303429215, -39845.780488367476, + -42242.493159004836, -45044.56646218509, -47040.30006540956, + -46995.145073613385, -44462.81488408678, -39343.128760212545, + -16196.184230014274 + ], + "flow:branch7_seg1:J15": [ + 0.5013987975770362, 2.5621864389153504, 4.8678613975322085, + 7.509001751064338, 10.393170058943555, 13.872529695344907, + 18.831879830805107, 25.23325343748831, 34.93038988129067, + 46.67522886243922, 61.95120747056762, 79.18511501997318, + 97.33112313964159, 117.19444152441386, 133.1502108481288, + 150.71034501050048, 160.6838347940135, 169.26102960219094, + 171.4914519516417, 166.924579200258, 161.8879577060074, + 147.27434721926113, 132.8287803218858, 110.11931701021342, + 84.90456973954814, 57.420906349888185, 27.243718656282716, + -2.6481372793697804, -32.66658809907424, -61.98746038518869, + -87.29969170300669, -109.56580749002573, -127.9834321690921, + -140.182061809448, -153.1474644908628, -158.32489607616017, + -164.96456343516354, -165.8211478994531, -163.81337497934723, + -162.00339735464263, -153.38365479251303, -146.37474825291636, + -131.59204267847076, -116.14798302424555, -97.86202118599807, + -78.32777064401861, -60.885862262621025, -43.20111051641069, + -28.704599769332113, -15.682172468346145, -5.248767781774939, + 3.155342646555285, 10.233797932748386, 17.07140181742434, + 23.447662550447333, 30.41095200729107, 36.15646987343604, + 40.88576743268245, 44.01893996298038, 44.27421774736308, 43.2487099904624, + 38.794196617753265, 33.540713327118, 26.58071132023958, + 19.663182725631636, 13.493946694609658, 8.144239249062753, + 4.119002675733402, 0.8011739875450535, -1.968182078850121, + -4.406018516449988, -6.717735998293497, -9.136166872217611, + -11.260664355524346, -13.407811524937653, -14.584178962180445, + -15.215118607386046, -14.92142928626096, -13.962619853483025, + -12.977251429251934, -11.718771307066705, -11.106865979064933, + -10.531920730247307, -10.427995522024087, -10.35149155129923, + -9.967511812176859, -9.421457423042042, -8.037269850700165, + -6.467381440578188, -4.490855171560204, -2.7176004700408947, + -1.4453844638506987, -0.7914075984925748, -0.8379872782371051, + -1.2779097705329006, -1.8486352451132064, -2.1595742225845056, + -1.9537615460686466, -1.0609099844081131, 0.5013987975770362 + ], + "pressure:branch7_seg1:J15": [ + -17268.378237531924, -26336.929476368525, -18994.177351951876, + -10822.080738796443, -1736.490147276765, 9425.747817371286, + 27736.57135306616, 51224.96962197797, 87271.48645463336, + 130199.72337448488, 181724.78959024747, 241183.1266309105, + 298775.0075389102, 364714.4552283504, 413422.78603974794, + 467715.895021892, 495962.38212571415, 517328.5887773924, + 530298.4236533475, 514433.01359646016, 512612.7455440011, + 471843.92700093804, 430392.2186042391, 371776.57494089485, + 298303.8049557418, 230569.58629442175, 149440.53202891257, + 65732.29832749619, -15649.23948570826, -94979.24545181272, + -158394.71466756042, -211423.37150884114, -261824.1920651419, + -291138.0202321306, -333430.44054221077, -347405.0008100511, + -366749.2601496526, -379252.2488524789, -373926.31100550113, + -386277.4549435554, -366771.5182134486, -351778.89854682, + -316349.2759618562, -272360.3639887035, -234504.77764155416, + -190615.29180150488, -156022.83649224346, -118876.40306607253, + -89997.22921774264, -67688.72261385615, -51103.4698838222, + -38204.30336108582, -23839.523261240505, -5265.139344895617, + 12813.666331545965, 33237.03173071034, 49481.58966260638, + 60284.26144148746, 69180.46110307996, 67112.16910104765, + 62586.000783763266, 47807.418629329455, 30894.515155607372, + 13284.8366265514, -2535.5457249543306, -13100.791890299684, + -22186.456507975305, -28291.132020209436, -33391.8248188585, + -38212.3408508719, -42860.45604860037, -48376.11200927733, + -55761.88709530174, -61834.327058556344, -67752.11955261743, + -69910.35128257665, -69510.51031114017, -67756.11804157753, + -64237.78647880118, -62328.02031645397, -59981.87828800917, + -60065.949155898226, -60541.823242679566, -62014.70204419453, + -63676.27740913067, -62695.32081766843, -61119.74758656844, + -56152.98812702172, -50845.75095753673, -45497.49549514766, + -41141.63150051425, -39642.10426026012, -40045.766979482025, + -42079.250160994474, -44635.1583292682, -46592.964742169126, + -46862.8872986356, -44672.691574443845, -40043.63239065118, + -17268.378237531924 + ], + "flow:J15:branch7_seg2": [ + 0.5013987975770362, 2.5621864389153504, 4.8678613975322085, + 7.509001751064338, 10.393170058943555, 13.872529695344907, + 18.831879830805107, 25.23325343748831, 34.93038988129067, + 46.67522886243922, 61.95120747056762, 79.18511501997318, + 97.33112313964159, 117.19444152441386, 133.1502108481288, + 150.71034501050048, 160.6838347940135, 169.26102960219094, + 171.4914519516417, 166.924579200258, 161.8879577060074, + 147.27434721926113, 132.8287803218858, 110.11931701021342, + 84.90456973954814, 57.420906349888185, 27.243718656282716, + -2.6481372793697804, -32.66658809907424, -61.98746038518869, + -87.29969170300669, -109.56580749002573, -127.9834321690921, + -140.182061809448, -153.1474644908628, -158.32489607616017, + -164.96456343516354, -165.8211478994531, -163.81337497934723, + -162.00339735464263, -153.38365479251303, -146.37474825291636, + -131.59204267847076, -116.14798302424555, -97.86202118599807, + -78.32777064401861, -60.885862262621025, -43.20111051641069, + -28.704599769332113, -15.682172468346145, -5.248767781774939, + 3.155342646555285, 10.233797932748386, 17.07140181742434, + 23.447662550447333, 30.41095200729107, 36.15646987343604, + 40.88576743268245, 44.01893996298038, 44.27421774736308, 43.2487099904624, + 38.794196617753265, 33.540713327118, 26.58071132023958, + 19.663182725631636, 13.493946694609658, 8.144239249062753, + 4.119002675733402, 0.8011739875450535, -1.968182078850121, + -4.406018516449988, -6.717735998293497, -9.136166872217611, + -11.260664355524346, -13.407811524937653, -14.584178962180445, + -15.215118607386046, -14.92142928626096, -13.962619853483025, + -12.977251429251934, -11.718771307066705, -11.106865979064933, + -10.531920730247307, -10.427995522024087, -10.35149155129923, + -9.967511812176859, -9.421457423042042, -8.037269850700165, + -6.467381440578188, -4.490855171560204, -2.7176004700408947, + -1.4453844638506987, -0.7914075984925748, -0.8379872782371051, + -1.2779097705329006, -1.8486352451132064, -2.1595742225845056, + -1.9537615460686466, -1.0609099844081131, 0.5013987975770362 + ], + "pressure:J15:branch7_seg2": [ + -17268.378237531924, -26336.929476368525, -18994.177351951876, + -10822.080738796443, -1736.490147276765, 9425.747817371286, + 27736.57135306616, 51224.96962197797, 87271.48645463336, + 130199.72337448488, 181724.78959024747, 241183.1266309105, + 298775.0075389102, 364714.4552283504, 413422.78603974794, + 467715.895021892, 495962.38212571415, 517328.5887773924, + 530298.4236533475, 514433.01359646016, 512612.7455440011, + 471843.92700093804, 430392.2186042391, 371776.57494089485, + 298303.8049557418, 230569.58629442175, 149440.53202891257, + 65732.29832749619, -15649.23948570826, -94979.24545181272, + -158394.71466756042, -211423.37150884114, -261824.1920651419, + -291138.0202321306, -333430.44054221077, -347405.0008100511, + -366749.2601496526, -379252.2488524789, -373926.31100550113, + -386277.4549435554, -366771.5182134486, -351778.89854682, + -316349.2759618562, -272360.3639887035, -234504.77764155416, + -190615.29180150488, -156022.83649224346, -118876.40306607253, + -89997.22921774264, -67688.72261385615, -51103.4698838222, + -38204.30336108582, -23839.523261240505, -5265.139344895617, + 12813.666331545965, 33237.03173071034, 49481.58966260638, + 60284.26144148746, 69180.46110307996, 67112.16910104765, + 62586.000783763266, 47807.418629329455, 30894.515155607372, + 13284.8366265514, -2535.5457249543306, -13100.791890299684, + -22186.456507975305, -28291.132020209436, -33391.8248188585, + -38212.3408508719, -42860.45604860037, -48376.11200927733, + -55761.88709530174, -61834.327058556344, -67752.11955261743, + -69910.35128257665, -69510.51031114017, -67756.11804157753, + -64237.78647880118, -62328.02031645397, -59981.87828800917, + -60065.949155898226, -60541.823242679566, -62014.70204419453, + -63676.27740913067, -62695.32081766843, -61119.74758656844, + -56152.98812702172, -50845.75095753673, -45497.49549514766, + -41141.63150051425, -39642.10426026012, -40045.766979482025, + -42079.250160994474, -44635.1583292682, -46592.964742169126, + -46862.8872986356, -44672.691574443845, -40043.63239065118, + -17268.378237531924 + ], + "flow:branch8_seg0:J16": [ + -0.47159817763221473, 0.7731993383116593, 2.3353223073118414, + 4.022763483080494, 5.9103687090753425, 7.985943909049938, + 10.62501683357524, 14.371844696714284, 19.426528212082125, + 26.74971372290166, 35.660862724882776, 46.97549006857812, + 59.43876210598451, 72.6955092450128, 86.32399210119259, 97.348809987212, + 108.28573547928755, 114.42736221084101, 119.04707577775093, + 119.426734709994, 115.39352201516412, 109.91511463330468, + 98.89342960200035, 86.85886841219299, 70.51569532437463, + 52.176737559480614, 32.43261044676686, 11.08982846239827, + -10.233540941957497, -30.831774730661458, -50.52399663804358, + -67.15072831968013, -81.7622299516638, -93.52228626203538, + -101.41762396808737, -108.84603938942365, -111.90424601562015, + -115.25003554329764, -115.46808531243569, -113.83117807534535, + -111.47523900673367, -105.1958870210546, -98.57987012011016, + -87.82740704761734, -76.25417630173963, -63.23574680329659, + -49.734702846509535, -37.2956706384432, -25.37466171451628, + -15.666240602636016, -7.477405519789653, -0.929720050706874, + 4.42616282280561, 9.200462224737876, 13.85401596220827, + 18.272377714323838, 22.909890582754635, 26.7122176684646, + 29.750493823130927, 31.42729690906933, 31.18118612237335, + 29.619080938400018, 25.973061417261164, 21.719497888175415, + 16.734175412863355, 11.968334873559495, 7.822259105968601, + 4.328785519671234, 1.7298080499776085, -0.317842703253817, + -2.05163494146821, -3.6388105253553467, -5.272303902918864, + -6.968392269665665, -8.463978671044691, -9.804330888961708, + -10.458111430097523, -10.670252725994182, -10.276102026054856, + -9.514765384279746, -8.719743731011038, -7.872422245395809, + -7.457845624477438, -7.186747381045603, -7.200770618854223, + -7.177890013258323, -6.871809603850388, -6.324009199982825, + -5.247967895740112, -4.003696052442921, -2.6193344548825226, + -1.4310381254568798, -0.6725126339740901, -0.3876572170848854, + -0.5668799414616394, -0.9926762604181639, -1.4263526837518763, + -1.5792063785169435, -1.2911486718085334, -0.47159817763221473 + ], + "pressure:branch8_seg0:J16": [ + -24258.616159039113, -35681.75189674217, -29556.280498807108, + -22862.38081180941, -15108.862070148714, -6438.685434448808, + 5060.578167177183, 20906.06422893315, 42584.470431796435, + 73243.47656531936, 110264.42164708264, 158243.92921346804, + 209703.7121277281, 267565.25139333145, 325917.19970686274, + 376929.745238818, 430049.6576980826, 464386.50038833177, + 497464.5405486363, 511425.7255106788, 512554.735187772, + 505822.94268484577, 479042.67949092755, 447352.78429699375, + 396381.198439546, 338116.386706181, 270160.7138775876, 195510.08588554934, + 117995.1586600971, 40986.17619165843, -35727.60253778939, + -102069.4111446272, -165218.8123103829, -216932.54769511486, + -257941.44744183135, -298082.00677709235, -322701.10352149414, + -350902.18685405276, -364680.39213695895, -375277.9599544316, + -379286.8336541596, -371430.77662933856, -360389.2760922044, + -332694.14237850346, -303638.18277856667, -264767.62196626316, + -225918.4037100015, -187907.43864443837, -150973.8025911574, + -121025.86010158007, -94169.06361593297, -72298.6778590515, + -53368.90114065286, -35340.513970135886, -17189.083434521664, + 1103.10842493611, 20758.01779187454, 37288.70231109205, + 52168.065275479814, 61091.473025502346, 64284.59297683846, + 62052.057041224536, 52371.610704564606, 40969.263466114324, + 25768.3832300532, 11694.7180565499, -1060.5452292772618, + -11796.603613782243, -19766.927741162002, -26441.752146937546, + -32458.63254570528, -38262.00429424077, -44623.330868276964, + -51176.91929611481, -57301.81523867543, -62880.344568465815, + -65951.5232367784, -67844.10278225476, -67169.90987371352, + -65693.32711677326, -63835.254745117614, -61916.76227242971, + -61642.58474051134, -61546.35662774455, -62574.38332627942, + -63068.069928726174, -62602.70344243441, -61063.1146827461, + -57602.97712432361, -53517.246702092394, -48836.651771606776, + -44914.31233162952, -42412.56037346712, -41575.15215912394, + -42285.79279924434, -43731.97827065768, -45101.18062825058, + -45312.78179679204, -43944.88381474038, -24258.616159039113 + ], + "flow:J16:branch8_seg1": [ + -0.47159817763221473, 0.7731993383116593, 2.3353223073118414, + 4.022763483080494, 5.9103687090753425, 7.985943909049938, + 10.62501683357524, 14.371844696714284, 19.426528212082125, + 26.74971372290166, 35.660862724882776, 46.97549006857812, + 59.43876210598451, 72.6955092450128, 86.32399210119259, 97.348809987212, + 108.28573547928755, 114.42736221084101, 119.04707577775093, + 119.426734709994, 115.39352201516412, 109.91511463330468, + 98.89342960200035, 86.85886841219299, 70.51569532437463, + 52.176737559480614, 32.43261044676686, 11.08982846239827, + -10.233540941957497, -30.831774730661458, -50.52399663804358, + -67.15072831968013, -81.7622299516638, -93.52228626203538, + -101.41762396808737, -108.84603938942365, -111.90424601562015, + -115.25003554329764, -115.46808531243569, -113.83117807534535, + -111.47523900673367, -105.1958870210546, -98.57987012011016, + -87.82740704761734, -76.25417630173963, -63.23574680329659, + -49.734702846509535, -37.2956706384432, -25.37466171451628, + -15.666240602636016, -7.477405519789653, -0.929720050706874, + 4.42616282280561, 9.200462224737876, 13.85401596220827, + 18.272377714323838, 22.909890582754635, 26.7122176684646, + 29.750493823130927, 31.42729690906933, 31.18118612237335, + 29.619080938400018, 25.973061417261164, 21.719497888175415, + 16.734175412863355, 11.968334873559495, 7.822259105968601, + 4.328785519671234, 1.7298080499776085, -0.317842703253817, + -2.05163494146821, -3.6388105253553467, -5.272303902918864, + -6.968392269665665, -8.463978671044691, -9.804330888961708, + -10.458111430097523, -10.670252725994182, -10.276102026054856, + -9.514765384279746, -8.719743731011038, -7.872422245395809, + -7.457845624477438, -7.186747381045603, -7.200770618854223, + -7.177890013258323, -6.871809603850388, -6.324009199982825, + -5.247967895740112, -4.003696052442921, -2.6193344548825226, + -1.4310381254568798, -0.6725126339740901, -0.3876572170848854, + -0.5668799414616394, -0.9926762604181639, -1.4263526837518763, + -1.5792063785169435, -1.2911486718085334, -0.47159817763221473 + ], + "pressure:J16:branch8_seg1": [ + -24258.616159039113, -35681.75189674217, -29556.280498807108, + -22862.38081180941, -15108.862070148714, -6438.685434448808, + 5060.578167177183, 20906.06422893315, 42584.470431796435, + 73243.47656531936, 110264.42164708264, 158243.92921346804, + 209703.7121277281, 267565.25139333145, 325917.19970686274, + 376929.745238818, 430049.6576980826, 464386.50038833177, + 497464.5405486363, 511425.7255106788, 512554.735187772, + 505822.94268484577, 479042.67949092755, 447352.78429699375, + 396381.198439546, 338116.386706181, 270160.7138775876, 195510.08588554934, + 117995.1586600971, 40986.17619165843, -35727.60253778939, + -102069.4111446272, -165218.8123103829, -216932.54769511486, + -257941.44744183135, -298082.00677709235, -322701.10352149414, + -350902.18685405276, -364680.39213695895, -375277.9599544316, + -379286.8336541596, -371430.77662933856, -360389.2760922044, + -332694.14237850346, -303638.18277856667, -264767.62196626316, + -225918.4037100015, -187907.43864443837, -150973.8025911574, + -121025.86010158007, -94169.06361593297, -72298.6778590515, + -53368.90114065286, -35340.513970135886, -17189.083434521664, + 1103.10842493611, 20758.01779187454, 37288.70231109205, + 52168.065275479814, 61091.473025502346, 64284.59297683846, + 62052.057041224536, 52371.610704564606, 40969.263466114324, + 25768.3832300532, 11694.7180565499, -1060.5452292772618, + -11796.603613782243, -19766.927741162002, -26441.752146937546, + -32458.63254570528, -38262.00429424077, -44623.330868276964, + -51176.91929611481, -57301.81523867543, -62880.344568465815, + -65951.5232367784, -67844.10278225476, -67169.90987371352, + -65693.32711677326, -63835.254745117614, -61916.76227242971, + -61642.58474051134, -61546.35662774455, -62574.38332627942, + -63068.069928726174, -62602.70344243441, -61063.1146827461, + -57602.97712432361, -53517.246702092394, -48836.651771606776, + -44914.31233162952, -42412.56037346712, -41575.15215912394, + -42285.79279924434, -43731.97827065768, -45101.18062825058, + -45312.78179679204, -43944.88381474038, -24258.616159039113 + ], + "flow:branch8_seg1:J17": [ + -0.49654840245872983, 0.7390564157129732, 2.2960211771127015, + 3.979425784196263, 5.8611929833216285, 7.929105362013262, + 10.539794379074895, 14.264120531621803, 19.264764051742798, + 26.545198948843712, 35.41313737799537, 46.659648296729145, + 59.12479489134111, 72.31798912077188, 86.0008314245744, 97.03236475335574, + 108.02949086733004, 114.23855865822105, 118.88441225509116, + 119.4019706114982, 115.37130558561458, 110.05850032585194, + 99.05709416007159, 87.11175362096122, 70.84884357836245, + 52.52437574007933, 32.873385960581366, 11.546191175324623, + -9.764147606660844, -30.376399475251855, -50.097146944483775, + -66.77927603703137, -81.39202196171223, -93.25400053656583, + -101.14900419123163, -108.67496678706141, -111.74131889197639, + -115.10941583802088, -115.41033986147478, -113.72941472099183, + -111.52387999656634, -105.22686247116725, -98.70776476994183, + -88.01386670920562, -76.42751856906223, -63.487301752139764, + -49.95633644515407, -37.53642714521149, -25.58396925385671, + -15.833832463728461, -7.618853162654485, -1.050017386683419, + 4.3155207886778415, 9.084011901081837, 13.746210823104839, + 18.156308197939666, 22.799870243375366, 26.622743023775055, + 29.66380983386749, 31.398780537464344, 31.169369319248005, + 29.661977235213755, 26.043532487070202, 21.79839036838329, + 16.8247956728348, 12.046171908665478, 7.8952390023916745, + 4.387043266016117, 1.77421275332414, -0.2818589706744305, + -2.0176577579923807, -3.603617505671264, -5.229608266833571, + -6.93078747107862, -8.42594090317946, -9.778776826829251, + -10.445702585210478, -10.663492818534934, -10.285685972656832, + -9.522271125712392, -8.73335523014802, -7.880128049121117, + -7.4590701637482315, -7.183356886456398, -7.193306222798154, + -7.178405424211745, -6.875709854041879, -6.341838676266617, + -5.270482069789261, -4.031464621016263, -2.6462699947959707, + -1.4497740463729212, -0.6833298056717689, -0.38789979407795394, + -0.5596881521908831, -0.9830823773073845, -1.4200270510048363, + -1.5827431868901576, -1.305310758017356, -0.49654840245872983 + ], + "pressure:branch8_seg1:J17": [ + -24891.081877436067, -36585.80206566663, -30647.45598033959, + -24060.885607254702, -16512.737392894076, -8045.505985892795, + 2739.7480012146775, 17857.56388719858, 38153.48593959858, + 67296.10492668847, 103028.09080570338, 148665.61825919125, + 199761.7544243604, 255493.6367926708, 314250.59487765, 365411.7660479112, + 418101.0752116179, 454572.7687491349, 486920.3951967495, + 504264.6552474561, 505981.1128115625, 502130.192729565, 477327.1474847791, + 447655.4355647685, 400496.63618339354, 344118.28650758485, + 280040.4622386129, 207565.55997839948, 132146.23066116346, + 56366.46309236079, -19170.317804017457, -86269.91394533572, + -148682.2588364928, -202737.74697139065, -244603.52358018365, + -286189.49837595865, -312709.994049198, -341095.8072184944, + -358247.797504638, -368957.28106050985, -376774.82640481374, + -370069.3493780729, -361401.7243282763, -336649.81331079797, + -307713.32768792077, -271658.3074454149, -232282.44265686104, + -194697.77969776827, -157160.49004803255, -125902.41124811849, + -98531.3923153663, -75916.24782487893, -56583.24955985927, + -38542.52199396086, -20233.50071457175, -2116.5859173806775, + 17434.26250654498, 34541.467661640876, 49484.44825893749, + 59892.360863002345, 63691.452056368435, 62755.88511013908, + 54101.55531092876, 42872.73265062127, 28318.699484310724, + 13947.019021065398, 1082.8307171191311, -10035.333894929738, + -18453.821718875723, -25322.380835301516, -31375.158226294385, + -37151.97570811639, -43326.6412880539, -49948.36784492151, + -56081.52825115072, -61877.91835253971, -65368.39195530328, + -67406.65912598924, -67265.1823873758, -65798.30522238971, + -64098.24921272055, -62096.073984419294, -61550.792517308364, + -61404.259265248154, -62261.32394537547, -62949.59265152606, + -62616.40417538381, -61382.50086054017, -58160.656823018006, + -54213.13528173229, -49582.07179301438, -45475.13477546918, + -42741.65514769824, -41593.11485152962, -42054.84009331762, + -43405.2102325376, -44832.920363369296, -45304.647823507235, + -44226.11014619087, -24891.081877436067 + ], + "flow:J17:branch8_seg2": [ + -0.49654840245872983, 0.7390564157129732, 2.2960211771127015, + 3.979425784196263, 5.8611929833216285, 7.929105362013262, + 10.539794379074895, 14.264120531621803, 19.264764051742798, + 26.545198948843712, 35.41313737799537, 46.659648296729145, + 59.12479489134111, 72.31798912077188, 86.0008314245744, 97.03236475335574, + 108.02949086733004, 114.23855865822105, 118.88441225509116, + 119.4019706114982, 115.37130558561458, 110.05850032585194, + 99.05709416007159, 87.11175362096122, 70.84884357836245, + 52.52437574007933, 32.873385960581366, 11.546191175324623, + -9.764147606660844, -30.376399475251855, -50.097146944483775, + -66.77927603703137, -81.39202196171223, -93.25400053656583, + -101.14900419123163, -108.67496678706141, -111.74131889197639, + -115.10941583802088, -115.41033986147478, -113.72941472099183, + -111.52387999656634, -105.22686247116725, -98.70776476994183, + -88.01386670920562, -76.42751856906223, -63.487301752139764, + -49.95633644515407, -37.53642714521149, -25.58396925385671, + -15.833832463728461, -7.618853162654485, -1.050017386683419, + 4.3155207886778415, 9.084011901081837, 13.746210823104839, + 18.156308197939666, 22.799870243375366, 26.622743023775055, + 29.66380983386749, 31.398780537464344, 31.169369319248005, + 29.661977235213755, 26.043532487070202, 21.79839036838329, + 16.8247956728348, 12.046171908665478, 7.8952390023916745, + 4.387043266016117, 1.77421275332414, -0.2818589706744305, + -2.0176577579923807, -3.603617505671264, -5.229608266833571, + -6.93078747107862, -8.42594090317946, -9.778776826829251, + -10.445702585210478, -10.663492818534934, -10.285685972656832, + -9.522271125712392, -8.73335523014802, -7.880128049121117, + -7.4590701637482315, -7.183356886456398, -7.193306222798154, + -7.178405424211745, -6.875709854041879, -6.341838676266617, + -5.270482069789261, -4.031464621016263, -2.6462699947959707, + -1.4497740463729212, -0.6833298056717689, -0.38789979407795394, + -0.5596881521908831, -0.9830823773073845, -1.4200270510048363, + -1.5827431868901576, -1.305310758017356, -0.49654840245872983 + ], + "pressure:J17:branch8_seg2": [ + -24891.081877436067, -36585.80206566663, -30647.45598033959, + -24060.885607254702, -16512.737392894076, -8045.505985892795, + 2739.7480012146775, 17857.56388719858, 38153.48593959858, + 67296.10492668847, 103028.09080570338, 148665.61825919125, + 199761.7544243604, 255493.6367926708, 314250.59487765, 365411.7660479112, + 418101.0752116179, 454572.7687491349, 486920.3951967495, + 504264.6552474561, 505981.1128115625, 502130.192729565, 477327.1474847791, + 447655.4355647685, 400496.63618339354, 344118.28650758485, + 280040.4622386129, 207565.55997839948, 132146.23066116346, + 56366.46309236079, -19170.317804017457, -86269.91394533572, + -148682.2588364928, -202737.74697139065, -244603.52358018365, + -286189.49837595865, -312709.994049198, -341095.8072184944, + -358247.797504638, -368957.28106050985, -376774.82640481374, + -370069.3493780729, -361401.7243282763, -336649.81331079797, + -307713.32768792077, -271658.3074454149, -232282.44265686104, + -194697.77969776827, -157160.49004803255, -125902.41124811849, + -98531.3923153663, -75916.24782487893, -56583.24955985927, + -38542.52199396086, -20233.50071457175, -2116.5859173806775, + 17434.26250654498, 34541.467661640876, 49484.44825893749, + 59892.360863002345, 63691.452056368435, 62755.88511013908, + 54101.55531092876, 42872.73265062127, 28318.699484310724, + 13947.019021065398, 1082.8307171191311, -10035.333894929738, + -18453.821718875723, -25322.380835301516, -31375.158226294385, + -37151.97570811639, -43326.6412880539, -49948.36784492151, + -56081.52825115072, -61877.91835253971, -65368.39195530328, + -67406.65912598924, -67265.1823873758, -65798.30522238971, + -64098.24921272055, -62096.073984419294, -61550.792517308364, + -61404.259265248154, -62261.32394537547, -62949.59265152606, + -62616.40417538381, -61382.50086054017, -58160.656823018006, + -54213.13528173229, -49582.07179301438, -45475.13477546918, + -42741.65514769824, -41593.11485152962, -42054.84009331762, + -43405.2102325376, -44832.920363369296, -45304.647823507235, + -44226.11014619087, -24891.081877436067 + ], + "flow:branch9_seg0:J18": [ + 0.7748577122409075, 4.307582012324162, 8.23587633621329, + 12.419814709540617, 16.906511483635416, 22.291435580303148, + 29.78788895795857, 40.13376031969607, 55.04765114797455, + 74.18946344986051, 98.22588251864588, 125.78210521971745, + 155.130381992961, 185.42373169360184, 211.3231886817003, + 234.1581315188752, 249.17731749016554, 258.14167553725923, + 259.31471200590954, 250.89215737670528, 236.91429589273199, + 213.78952945837094, 185.89691894778835, 150.92772139334537, + 110.9298941246515, 67.48567849575568, 21.187376543312386, + -25.705244968569104, -70.98018665718912, -113.52971763513182, + -150.41871671221614, -181.54965397198524, -206.82845896572215, + -223.85684674296985, -237.10109844023384, -243.6611978258652, + -248.03427009097, -248.1328383369942, -244.01221343349886, + -237.56488588936236, -224.6971390394248, -208.78903959263596, + -186.22257024623286, -159.92566598335864, -130.90866793796627, + -100.7331219522311, -72.37584078542538, -46.32665136353286, + -24.689354141226694, -7.571184116663723, 5.437059068564895, + 15.53406394202817, 23.989888593829985, 32.29677803955939, + 40.59192402847233, 49.46923711227859, 57.57298568627669, + 64.08571070775828, 67.95564694057722, 67.71782403079695, + 63.96144877192116, 55.9888228960143, 45.66111503983429, + 34.051690498662644, 22.781393345276623, 13.028855959415496, + 5.2380855858032085, -0.3989982918202037, -4.319033350205199, + -7.288018634237251, -9.978288938601125, -12.83372074493961, + -16.05569485887082, -19.156566262700814, -21.946355304316935, + -23.56270590717917, -23.946585475496455, -23.01626293172999, + -21.07556038730534, -18.87374158053065, -16.698421335545437, + -15.295883585828134, -14.626420331672298, -14.665496666425046, + -14.888314836792977, -14.631326135630433, -13.668906075284983, + -11.597949495610495, -8.804294710612025, -5.619606998647437, + -2.7322368327143502, -0.7449908473355118, 0.03776171158115489, + -0.37271835196174363, -1.5651726068079461, -2.9263860452329484, + -3.7437500534662296, -3.5047162671127703, -1.97713348337933, + 0.7748577122409075 + ], + "pressure:branch9_seg0:J18": [ + -14368.70930510718, -22619.330722052317, -14845.890002855245, + -5970.293236273468, 3645.1189661817916, 18029.736897087834, + 38372.02950722087, 67045.13734643495, 107156.5932602176, + 152937.7999478611, 214240.34037387284, 273336.7514766489, + 342972.71647597686, 404978.9875523199, 453165.61418260983, + 504113.3948770653, 523575.84431310446, 554039.9703558437, + 552632.9947311383, 542730.0405550777, 518723.5860675092, + 471974.6322552913, 423586.39819706243, 352247.1978640025, + 279661.9474158383, 193791.09669251565, 105251.28060274049, + 13391.437115532834, -68785.061910908, -150065.96135023958, + -209660.03231206242, -270990.7165070794, -312395.7395660172, + -341531.9483623612, -369894.1614944709, -377087.5089553992, + -398951.19841417467, -398111.76457581087, -402893.25006666075, + -392614.4391810096, -371527.5741806395, -343733.66252748284, + -297630.46041286684, -259613.94861355273, -209140.93843217753, + -169516.72333489734, -127746.95182575202, -93745.92409668954, + -69398.65467585076, -49962.638035270385, -36716.037379730966, + -23769.615062055298, -9476.363591382198, 7193.586542335936, + 24916.0453262377, 44682.34688296292, 58509.19312835694, 71557.43714443238, + 74043.69798313922, 71200.67084510505, 59829.973609393186, + 41102.67386437282, 23877.827377059155, 3983.442179444118, + -9773.223378787114, -21746.16627035791, -29587.057367481273, + -34515.77703720155, -38307.61207246767, -42370.62836241569, + -47167.12330623869, -53724.50367588884, -60444.74095269444, + -66459.34684020645, -71053.10124008739, -71566.11425804904, + -71405.4015353152, -67559.4237313532, -64650.70769455523, + -61308.48972715693, -59125.321177706945, -59715.34157648922, + -60446.84894242492, -63078.575468535506, -63734.16648082477, + -62799.613028652115, -59665.81874355149, -54104.139756506374, + -48344.15237192355, -42737.295811148615, -39244.76138522902, + -38205.685196854625, -39525.409835283644, -42371.75515634278, + -45420.51029727968, -47389.34946874149, -46790.99186478971, + -43760.00675682981, -37993.51560716307, -14368.70930510718 + ], + "flow:J18:branch9_seg1": [ + 0.7748577122409075, 4.307582012324162, 8.23587633621329, + 12.419814709540617, 16.906511483635416, 22.291435580303148, + 29.78788895795857, 40.13376031969607, 55.04765114797455, + 74.18946344986051, 98.22588251864588, 125.78210521971745, + 155.130381992961, 185.42373169360184, 211.3231886817003, + 234.1581315188752, 249.17731749016554, 258.14167553725923, + 259.31471200590954, 250.89215737670528, 236.91429589273199, + 213.78952945837094, 185.89691894778835, 150.92772139334537, + 110.9298941246515, 67.48567849575568, 21.187376543312386, + -25.705244968569104, -70.98018665718912, -113.52971763513182, + -150.41871671221614, -181.54965397198524, -206.82845896572215, + -223.85684674296985, -237.10109844023384, -243.6611978258652, + -248.03427009097, -248.1328383369942, -244.01221343349886, + -237.56488588936236, -224.6971390394248, -208.78903959263596, + -186.22257024623286, -159.92566598335864, -130.90866793796627, + -100.7331219522311, -72.37584078542538, -46.32665136353286, + -24.689354141226694, -7.571184116663723, 5.437059068564895, + 15.53406394202817, 23.989888593829985, 32.29677803955939, + 40.59192402847233, 49.46923711227859, 57.57298568627669, + 64.08571070775828, 67.95564694057722, 67.71782403079695, + 63.96144877192116, 55.9888228960143, 45.66111503983429, + 34.051690498662644, 22.781393345276623, 13.028855959415496, + 5.2380855858032085, -0.3989982918202037, -4.319033350205199, + -7.288018634237251, -9.978288938601125, -12.83372074493961, + -16.05569485887082, -19.156566262700814, -21.946355304316935, + -23.56270590717917, -23.946585475496455, -23.01626293172999, + -21.07556038730534, -18.87374158053065, -16.698421335545437, + -15.295883585828134, -14.626420331672298, -14.665496666425046, + -14.888314836792977, -14.631326135630433, -13.668906075284983, + -11.597949495610495, -8.804294710612025, -5.619606998647437, + -2.7322368327143502, -0.7449908473355118, 0.03776171158115489, + -0.37271835196174363, -1.5651726068079461, -2.9263860452329484, + -3.7437500534662296, -3.5047162671127703, -1.97713348337933, + 0.7748577122409075 + ], + "pressure:J18:branch9_seg1": [ + -14368.70930510718, -22619.330722052317, -14845.890002855245, + -5970.293236273468, 3645.1189661817916, 18029.736897087834, + 38372.02950722087, 67045.13734643495, 107156.5932602176, + 152937.7999478611, 214240.34037387284, 273336.7514766489, + 342972.71647597686, 404978.9875523199, 453165.61418260983, + 504113.3948770653, 523575.84431310446, 554039.9703558437, + 552632.9947311383, 542730.0405550777, 518723.5860675092, + 471974.6322552913, 423586.39819706243, 352247.1978640025, + 279661.9474158383, 193791.09669251565, 105251.28060274049, + 13391.437115532834, -68785.061910908, -150065.96135023958, + -209660.03231206242, -270990.7165070794, -312395.7395660172, + -341531.9483623612, -369894.1614944709, -377087.5089553992, + -398951.19841417467, -398111.76457581087, -402893.25006666075, + -392614.4391810096, -371527.5741806395, -343733.66252748284, + -297630.46041286684, -259613.94861355273, -209140.93843217753, + -169516.72333489734, -127746.95182575202, -93745.92409668954, + -69398.65467585076, -49962.638035270385, -36716.037379730966, + -23769.615062055298, -9476.363591382198, 7193.586542335936, + 24916.0453262377, 44682.34688296292, 58509.19312835694, 71557.43714443238, + 74043.69798313922, 71200.67084510505, 59829.973609393186, + 41102.67386437282, 23877.827377059155, 3983.442179444118, + -9773.223378787114, -21746.16627035791, -29587.057367481273, + -34515.77703720155, -38307.61207246767, -42370.62836241569, + -47167.12330623869, -53724.50367588884, -60444.74095269444, + -66459.34684020645, -71053.10124008739, -71566.11425804904, + -71405.4015353152, -67559.4237313532, -64650.70769455523, + -61308.48972715693, -59125.321177706945, -59715.34157648922, + -60446.84894242492, -63078.575468535506, -63734.16648082477, + -62799.613028652115, -59665.81874355149, -54104.139756506374, + -48344.15237192355, -42737.295811148615, -39244.76138522902, + -38205.685196854625, -39525.409835283644, -42371.75515634278, + -45420.51029727968, -47389.34946874149, -46790.99186478971, + -43760.00675682981, -37993.51560716307, -14368.70930510718 + ], + "flow:branch9_seg1:J19": [ + 0.7354514603530747, 4.2668704229490615, 8.191624427117295, + 12.371975116123, 16.855294516615732, 22.202170119125604, + 29.676435523275597, 39.940468825563116, 54.81609898922195, + 73.91769589677762, 97.90781135085766, 125.52626757457955, + 154.79332514519248, 185.14421802572616, 210.98164622202796, + 233.95561353605947, 249.0509054520257, 258.1349516189287, + 259.468874121075, 250.92652908452075, 237.1043568950115, + 213.88418956769397, 186.21529151038303, 151.329684690496, + 111.34479957358452, 67.94445145165633, 21.598776917871906, + -25.28643688040971, -70.56953800419652, -113.17807095554316, + -150.16422799148307, -181.31031868723352, -206.6992895502853, + -223.60994924876678, -236.98211150997423, -243.48149299864428, + -247.99996756222893, -248.22890354277732, -244.00603318031304, + -237.7122644248684, -224.67721248761666, -208.94991454373323, + -186.43303577613543, -160.16804868949143, -131.22687454844313, + -100.94920697601198, -72.55541614442602, -46.44088144510203, + -24.778740960790145, -7.6531399090697425, 5.351436886533977, + 15.467513229278376, 23.899724323660138, 32.21640888704867, + 40.48237780824466, 49.37820473469322, 57.520328140687084, + 64.04293647961576, 67.99387274775528, 67.74024652046194, + 64.03570420827228, 56.06469902699185, 45.75477045744602, + 34.15124281510787, 22.860443208863234, 13.079481161659706, + 5.2648701339591915, -0.38519339590509377, -4.303877188028462, + -7.263364047898339, -9.951919419233713, -12.794607413722725, + -16.027033004535202, -19.121964875251667, -21.932806244312687, + -23.563460649367872, -23.95795299320916, -23.046530053652653, + -21.09300577545122, -18.88674384553352, -16.693200720428308, + -15.287815181906202, -14.616147119103443, -14.660578270806646, + -14.895390836390566, -14.638869888905976, -13.69196725900712, + -11.618451300795932, -8.835567704446262, -5.645763026479126, + -2.7471307441034605, -0.745700681083682, 0.05137487784082438, + -0.35438881499628044, -1.5502461527527045, -2.921900276684408, + -3.755067616871712, -3.529302234137069, -2.011966805578291, + 0.7354514603530747 + ], + "pressure:branch9_seg1:J19": [ + -16531.61847442361, -25361.432567007883, -17890.15706890318, + -9399.591622614458, -173.3925347451977, 12861.293654200423, + 31291.381008912078, 56917.307113285526, 92994.71626863434, + 134929.18952754256, 191075.5765065214, 247612.38472918404, + 312612.80018814775, 372569.8048161268, 420462.9712437026, + 470178.571187679, 492366.7601601751, 522542.76095065195, 526503.118148099, + 519151.85781960905, 499246.96539413306, 458712.7996189365, + 416428.60997969576, 354359.18232906476, 289385.5816792755, + 213034.80523855527, 132804.25886493266, 48841.9053356068, + -27911.815995859146, -104733.52226214691, -164244.41371927652, + -224583.7731357299, -269238.7313836392, -301873.38607547747, + -333100.1187216134, -345571.9701945587, -370171.71553355234, + -376681.4977358908, -384453.31706270407, -380618.9248983324, + -365101.3893839879, -343181.6919754558, -304024.665467104, + -269690.9224288524, -224265.89777883116, -185034.2179535854, + -143516.47417491954, -108172.39775505684, -81366.86093983147, + -59715.00431352041, -44406.171317861255, -30235.924568582457, + -15757.092106524464, 600.1659884344381, 17787.68213284929, + 36968.34767453953, 51539.77177492508, 65092.40442631876, + 70144.75349332197, 69324.17641361505, 60617.01062888205, 44508.4124819734, + 28733.23680315005, 10086.48307150921, -4010.5422158695833, + -16548.744679222382, -25403.136730669456, -31390.99740502743, + -35875.83043892929, -40142.398685333035, -44867.1972071747, + -50954.01439659774, -57442.600813461046, -63408.80103223491, + -68309.79242272081, -69696.71174119032, -70255.091197615, + -67545.1199474962, -65003.29809977564, -61889.953791656415, + -59565.6558750727, -59613.987676524936, -59973.5088307917, + -62185.78045331014, -63060.23764013602, -62508.77498736639, + -60035.38042109086, -55239.446675893814, -49996.74146423221, + -44607.574843345064, -40810.442507962194, -39128.51461829701, + -39630.81197910079, -41758.43526372513, -44418.626703751885, + -46441.544397108395, -46398.27574410429, -44168.48556574113, + -39354.142145715734, -16531.61847442361 + ], + "flow:J19:branch9_seg2": [ + 0.7354514603530747, 4.2668704229490615, 8.191624427117295, + 12.371975116123, 16.855294516615732, 22.202170119125604, + 29.676435523275597, 39.940468825563116, 54.81609898922195, + 73.91769589677762, 97.90781135085766, 125.52626757457955, + 154.79332514519248, 185.14421802572616, 210.98164622202796, + 233.95561353605947, 249.0509054520257, 258.1349516189287, + 259.468874121075, 250.92652908452075, 237.1043568950115, + 213.88418956769397, 186.21529151038303, 151.329684690496, + 111.34479957358452, 67.94445145165633, 21.598776917871906, + -25.28643688040971, -70.56953800419652, -113.17807095554316, + -150.16422799148307, -181.31031868723352, -206.6992895502853, + -223.60994924876678, -236.98211150997423, -243.48149299864428, + -247.99996756222893, -248.22890354277732, -244.00603318031304, + -237.7122644248684, -224.67721248761666, -208.94991454373323, + -186.43303577613543, -160.16804868949143, -131.22687454844313, + -100.94920697601198, -72.55541614442602, -46.44088144510203, + -24.778740960790145, -7.6531399090697425, 5.351436886533977, + 15.467513229278376, 23.899724323660138, 32.21640888704867, + 40.48237780824466, 49.37820473469322, 57.520328140687084, + 64.04293647961576, 67.99387274775528, 67.74024652046194, + 64.03570420827228, 56.06469902699185, 45.75477045744602, + 34.15124281510787, 22.860443208863234, 13.079481161659706, + 5.2648701339591915, -0.38519339590509377, -4.303877188028462, + -7.263364047898339, -9.951919419233713, -12.794607413722725, + -16.027033004535202, -19.121964875251667, -21.932806244312687, + -23.563460649367872, -23.95795299320916, -23.046530053652653, + -21.09300577545122, -18.88674384553352, -16.693200720428308, + -15.287815181906202, -14.616147119103443, -14.660578270806646, + -14.895390836390566, -14.638869888905976, -13.69196725900712, + -11.618451300795932, -8.835567704446262, -5.645763026479126, + -2.7471307441034605, -0.745700681083682, 0.05137487784082438, + -0.35438881499628044, -1.5502461527527045, -2.921900276684408, + -3.755067616871712, -3.529302234137069, -2.011966805578291, + 0.7354514603530747 + ], + "pressure:J19:branch9_seg2": [ + -16531.61847442361, -25361.432567007883, -17890.15706890318, + -9399.591622614458, -173.3925347451977, 12861.293654200423, + 31291.381008912078, 56917.307113285526, 92994.71626863434, + 134929.18952754256, 191075.5765065214, 247612.38472918404, + 312612.80018814775, 372569.8048161268, 420462.9712437026, + 470178.571187679, 492366.7601601751, 522542.76095065195, 526503.118148099, + 519151.85781960905, 499246.96539413306, 458712.7996189365, + 416428.60997969576, 354359.18232906476, 289385.5816792755, + 213034.80523855527, 132804.25886493266, 48841.9053356068, + -27911.815995859146, -104733.52226214691, -164244.41371927652, + -224583.7731357299, -269238.7313836392, -301873.38607547747, + -333100.1187216134, -345571.9701945587, -370171.71553355234, + -376681.4977358908, -384453.31706270407, -380618.9248983324, + -365101.3893839879, -343181.6919754558, -304024.665467104, + -269690.9224288524, -224265.89777883116, -185034.2179535854, + -143516.47417491954, -108172.39775505684, -81366.86093983147, + -59715.00431352041, -44406.171317861255, -30235.924568582457, + -15757.092106524464, 600.1659884344381, 17787.68213284929, + 36968.34767453953, 51539.77177492508, 65092.40442631876, + 70144.75349332197, 69324.17641361505, 60617.01062888205, 44508.4124819734, + 28733.23680315005, 10086.48307150921, -4010.5422158695833, + -16548.744679222382, -25403.136730669456, -31390.99740502743, + -35875.83043892929, -40142.398685333035, -44867.1972071747, + -50954.01439659774, -57442.600813461046, -63408.80103223491, + -68309.79242272081, -69696.71174119032, -70255.091197615, + -67545.1199474962, -65003.29809977564, -61889.953791656415, + -59565.6558750727, -59613.987676524936, -59973.5088307917, + -62185.78045331014, -63060.23764013602, -62508.77498736639, + -60035.38042109086, -55239.446675893814, -49996.74146423221, + -44607.574843345064, -40810.442507962194, -39128.51461829701, + -39630.81197910079, -41758.43526372513, -44418.626703751885, + -46441.544397108395, -46398.27574410429, -44168.48556574113, + -39354.142145715734, -16531.61847442361 + ], + "flow:branch10_seg0:J20": [ + 0.3858646146006125, 1.1441196990492628, 1.9405497504602507, + 2.7312466987571247, 3.651493345689668, 4.676280036506332, + 6.366274110674538, 8.558554362692464, 11.881245089040288, + 16.14974877343718, 20.97949140292027, 27.250702692561752, + 32.62283460588805, 39.32064068949982, 44.03663840264068, + 48.22053256428075, 51.603260740624, 52.01159213490062, 53.108820273285865, + 49.93449587399307, 47.60358582059499, 42.32156595920732, + 36.317962937661015, 29.33402380870659, 20.14989738441683, + 11.68406612763969, 1.641075761334999, -7.8268079164307505, + -17.132793655342486, -25.516937296301098, -33.03969182472008, + -38.336905530830634, -43.672409572688935, -46.05005326622891, + -48.602166772261405, -49.74391025300122, -49.80197576115488, + -50.49304455513689, -48.23802581001843, -47.73426529731565, + -44.07172640875173, -40.938044885680306, -36.243760547973, + -29.922874570238857, -24.97520118358743, -18.109453415366072, + -13.344335174517477, -8.181026694755147, -4.2578381091666815, + -1.4300677815761824, 1.0425061198514725, 2.805534973223233, + 4.512290642129835, 6.352504036210683, 8.158770973807888, + 10.102184680437931, 11.949727888740956, 12.961398007727123, + 13.925887005244107, 13.344905792593977, 12.599952987847214, + 10.735349260939795, 8.40805010118714, 6.335830122178857, + 3.943401519771662, 2.367627478023932, 0.9202903821257712, + -0.007124419280414099, -0.6573358251815348, -1.237103973429373, + -1.8328698830109036, -2.4577649350282513, -3.2417588488017657, + -3.876424690511772, -4.464510334524442, -4.762836010336266, + -4.654897786056072, -4.509832667223032, -3.9284476615482475, + -3.594216553949811, -3.156124310067824, -2.9503557860837453, + -2.973902368713895, -2.971352599987198, -3.1217659100289805, + -2.960745690484096, -2.7339114163466625, -2.2097915048882597, + -1.566665221173415, -0.9264300728834037, -0.34401508964658173, + -0.05746663662075995, 0.0037521498980908263, -0.1862511805935894, + -0.4837166416310968, -0.7482875546048731, -0.8587515440342239, + -0.6833834945928815, -0.27456601086734217, 0.3858646146006125 + ], + "pressure:branch10_seg0:J20": [ + -19080.36644630378, -28594.30640999568, -21273.101821413828, + -13733.74234350178, -4725.724445261442, 5468.927386619166, + 22447.912793058687, 43596.03710784149, 76399.2781039155, + 117154.24457928463, 164354.28022545372, 226222.82129629946, + 279474.5936014541, 350210.92826953303, 400268.6731076742, + 452438.11296397477, 495364.0783554856, 514970.77168516803, + 542530.1784218589, 528337.7133636059, 528348.2647328909, + 491996.1622018363, 455665.0434849053, 402254.48425937636, + 329547.1804161898, 262058.65006924164, 174311.61632374025, + 92064.62639405225, 6626.2815935511535, -72189.50929181115, + -145377.52719408742, -200112.70996126477, -259301.44976281488, + -289619.47710216866, -328371.65523117594, -349145.88976896263, + -366039.1852705073, -385818.2471656452, -378979.094104805, + -392849.56143885525, -369938.94908629096, -360422.4909195725, + -328364.2369395368, -286060.69559626764, -254971.85470167093, + -202467.23768071606, -171669.2334609124, -130893.17793746146, + -102580.25732600394, -80601.54640916518, -60650.26855841681, + -45768.85161763705, -30276.677901454375, -12526.619044034558, + 4836.2286378463805, 24702.189019504425, 43375.26684066977, + 55260.214890977986, 68151.35096317453, 65898.317710214, 64986.12308313415, + 51693.441584387714, 36017.21561325258, 21564.282629488058, + 3548.282176148581, -7202.391863522445, -18376.706974713907, + -25045.857576635357, -30212.253452835394, -35073.61575425026, + -40414.85645185144, -46112.37377073998, -53617.17638957455, + -59513.17202206925, -65667.53093024406, -68867.78679702771, + -68966.78974667404, -69004.99856772649, -64830.3424047936, + -63601.129944480264, -60589.985886918425, -60137.57195432641, + -61154.85186287024, -61931.01162177946, -64017.46119101169, + -63025.71779064268, -61872.682027771974, -57579.106494788924, + -52722.54428542286, -47477.087975414564, -42847.35684645169, + -40667.316544908754, -40161.933996174455, -41804.6346875543, + -44163.95250948789, -46217.4061841039, -46911.40855179061, + -45109.1592270087, -41389.11921893223, -19080.36644630378 + ], + "flow:J20:branch10_seg1": [ + 0.3858646146006125, 1.1441196990492628, 1.9405497504602507, + 2.7312466987571247, 3.651493345689668, 4.676280036506332, + 6.366274110674538, 8.558554362692464, 11.881245089040288, + 16.14974877343718, 20.97949140292027, 27.250702692561752, + 32.62283460588805, 39.32064068949982, 44.03663840264068, + 48.22053256428075, 51.603260740624, 52.01159213490062, 53.108820273285865, + 49.93449587399307, 47.60358582059499, 42.32156595920732, + 36.317962937661015, 29.33402380870659, 20.14989738441683, + 11.68406612763969, 1.641075761334999, -7.8268079164307505, + -17.132793655342486, -25.516937296301098, -33.03969182472008, + -38.336905530830634, -43.672409572688935, -46.05005326622891, + -48.602166772261405, -49.74391025300122, -49.80197576115488, + -50.49304455513689, -48.23802581001843, -47.73426529731565, + -44.07172640875173, -40.938044885680306, -36.243760547973, + -29.922874570238857, -24.97520118358743, -18.109453415366072, + -13.344335174517477, -8.181026694755147, -4.2578381091666815, + -1.4300677815761824, 1.0425061198514725, 2.805534973223233, + 4.512290642129835, 6.352504036210683, 8.158770973807888, + 10.102184680437931, 11.949727888740956, 12.961398007727123, + 13.925887005244107, 13.344905792593977, 12.599952987847214, + 10.735349260939795, 8.40805010118714, 6.335830122178857, + 3.943401519771662, 2.367627478023932, 0.9202903821257712, + -0.007124419280414099, -0.6573358251815348, -1.237103973429373, + -1.8328698830109036, -2.4577649350282513, -3.2417588488017657, + -3.876424690511772, -4.464510334524442, -4.762836010336266, + -4.654897786056072, -4.509832667223032, -3.9284476615482475, + -3.594216553949811, -3.156124310067824, -2.9503557860837453, + -2.973902368713895, -2.971352599987198, -3.1217659100289805, + -2.960745690484096, -2.7339114163466625, -2.2097915048882597, + -1.566665221173415, -0.9264300728834037, -0.34401508964658173, + -0.05746663662075995, 0.0037521498980908263, -0.1862511805935894, + -0.4837166416310968, -0.7482875546048731, -0.8587515440342239, + -0.6833834945928815, -0.27456601086734217, 0.3858646146006125 + ], + "pressure:J20:branch10_seg1": [ + -19080.36644630378, -28594.30640999568, -21273.101821413828, + -13733.74234350178, -4725.724445261442, 5468.927386619166, + 22447.912793058687, 43596.03710784149, 76399.2781039155, + 117154.24457928463, 164354.28022545372, 226222.82129629946, + 279474.5936014541, 350210.92826953303, 400268.6731076742, + 452438.11296397477, 495364.0783554856, 514970.77168516803, + 542530.1784218589, 528337.7133636059, 528348.2647328909, + 491996.1622018363, 455665.0434849053, 402254.48425937636, + 329547.1804161898, 262058.65006924164, 174311.61632374025, + 92064.62639405225, 6626.2815935511535, -72189.50929181115, + -145377.52719408742, -200112.70996126477, -259301.44976281488, + -289619.47710216866, -328371.65523117594, -349145.88976896263, + -366039.1852705073, -385818.2471656452, -378979.094104805, + -392849.56143885525, -369938.94908629096, -360422.4909195725, + -328364.2369395368, -286060.69559626764, -254971.85470167093, + -202467.23768071606, -171669.2334609124, -130893.17793746146, + -102580.25732600394, -80601.54640916518, -60650.26855841681, + -45768.85161763705, -30276.677901454375, -12526.619044034558, + 4836.2286378463805, 24702.189019504425, 43375.26684066977, + 55260.214890977986, 68151.35096317453, 65898.317710214, 64986.12308313415, + 51693.441584387714, 36017.21561325258, 21564.282629488058, + 3548.282176148581, -7202.391863522445, -18376.706974713907, + -25045.857576635357, -30212.253452835394, -35073.61575425026, + -40414.85645185144, -46112.37377073998, -53617.17638957455, + -59513.17202206925, -65667.53093024406, -68867.78679702771, + -68966.78974667404, -69004.99856772649, -64830.3424047936, + -63601.129944480264, -60589.985886918425, -60137.57195432641, + -61154.85186287024, -61931.01162177946, -64017.46119101169, + -63025.71779064268, -61872.682027771974, -57579.106494788924, + -52722.54428542286, -47477.087975414564, -42847.35684645169, + -40667.316544908754, -40161.933996174455, -41804.6346875543, + -44163.95250948789, -46217.4061841039, -46911.40855179061, + -45109.1592270087, -41389.11921893223, -19080.36644630378 + ], + "flow:branch10_seg1:J21": [ + 0.380612743284987, 1.1380524398964305, 1.9347318809726943, + 2.724019603302957, 3.6438442014666026, 4.665707593149744, + 6.349759689942195, 8.538532778540212, 11.84824453863487, + 16.11513226133864, 20.931329254888322, 27.20360206668641, + 32.57272513845537, 39.268618612909975, 44.00434435603828, + 48.166841961300534, 51.59192071108888, 51.97752824044738, + 53.11188492857299, 49.94877451682019, 47.607962472944145, + 42.366109908207065, 36.33735663984126, 29.39132806133744, + 20.203317887044843, 11.749138590189663, 1.710490515023677, + -7.759204968528914, -17.0700108737995, -25.450779556729934, + -32.99065791056251, -38.28528450038423, -43.63626371467492, + -46.031198351591904, -48.56357504405803, -49.742183589784055, + -49.76767081904981, -50.49319871328139, -48.23635446842347, + -47.73118944513389, -44.09680124095958, -40.94076612039841, + -36.28173977032763, -29.94574759353039, -25.015238049474725, + -18.1439710906736, -13.374795337764665, -8.210970462996011, + -4.274857990358249, -1.450003602971793, 1.030017705129503, + 2.79101059606108, 4.49978790323511, 6.336875581561592, 8.145260605457874, + 10.083403967209707, 11.937806796485319, 12.950162547396909, + 13.921103261152334, 13.348566826667266, 12.60383690195624, + 10.750167497469267, 8.417306899124453, 6.352100473303492, + 3.9538453121864037, 2.378089550274763, 0.9275839541643001, + -0.003049785363475521, -0.6531909347169593, -1.2331852916878108, + -1.8280430899884788, -2.4523303195479595, -3.235605012780331, + -3.8722555945109796, -4.459480365688657, -4.76230182146019, + -4.653884651640295, -4.512241863617949, -3.930803174634425, + -3.5960361637658975, -3.1582922855429016, -2.9487563821511453, + -2.9740746553326014, -2.9690119755384914, -3.121748828704128, + -2.96204038309859, -2.7354064160678115, -2.2146710108307754, + -1.569926406994398, -0.9312562116688649, -0.3468231840421054, + -0.05866943726522946, 0.004246324152074343, -0.18430615905577927, + -0.48171397610170985, -0.7469203390044087, -0.8592550783392457, + -0.6856286618183396, -0.27884405479987545, 0.380612743284987 + ], + "pressure:branch10_seg1:J21": [ + -19585.181443756715, -29233.01760076985, -21975.935615051014, + -14604.530929555522, -5748.9446868342775, 4120.836279441431, + 20383.968013155878, 40949.36373508414, 72256.24837561812, + 112142.89132321892, 157550.71242958313, 218017.06028471742, + 270000.7143184937, 338464.75845072774, 388487.1858246376, + 437250.7265525764, 480938.7385415548, 498077.4834839674, + 525940.3584297891, 512998.5564794319, 511667.74017393525, + 479516.80200081744, 443146.7056002268, 394758.84363945515, + 325817.63083281036, 262553.06387941656, 180011.44193486744, + 101770.63330058496, 20119.690207572265, -55261.69635871518, + -126980.65726225605, -180515.23724576717, -239459.39944424867, + -271793.8981623313, -309525.8296743162, -334023.4682993009, + -350260.3332238083, -373296.96968065575, -368777.7716668376, + -383512.3205937655, -365013.73752482067, -355294.4704481704, + -327404.6662517064, -285619.7479613134, -256221.69082339434, + -204656.2656833302, -173561.52814934377, -133360.19488349714, + -104132.21443593329, -82316.30169468689, -61964.57997397953, + -47178.58578382964, -31687.996975121798, -14302.883227187198, + 3066.008556046423, 22375.242608292087, 41318.98411554748, + 53241.85477347346, 66357.51101664647, 64948.28936616881, + 64032.629584461814, 51854.904614956184, 36078.661301213615, + 22241.568207261134, 4204.710894381216, -6539.811825132372, + -17727.51344935364, -24599.81363126222, -29724.596353693716, + -34539.33243900414, -39741.973663366225, -45314.40477112537, + -52642.785423131456, -58632.565447239554, -64675.71026702988, + -68213.53563831167, -68378.63007575859, -68664.8382223207, + -64656.29353474594, -63369.50466286152, -60473.92979455111, + -59742.373845188704, -60835.49452961334, -61460.48039236671, + -63652.393790841874, -62840.86712339355, -61737.427528409724, + -57783.103219949175, -52898.925523292986, -47813.98678390591, + -43090.70207460894, -40773.52281684281, -40122.89076023878, + -41604.09246511277, -43915.67634591906, -45994.05463916706, + -46833.35481777214, -45219.82569955484, -41713.63300902274, + -19585.181443756715 + ], + "flow:J21:branch10_seg2": [ + 0.380612743284987, 1.1380524398964305, 1.9347318809726943, + 2.724019603302957, 3.6438442014666026, 4.665707593149744, + 6.349759689942195, 8.538532778540212, 11.84824453863487, + 16.11513226133864, 20.931329254888322, 27.20360206668641, + 32.57272513845537, 39.268618612909975, 44.00434435603828, + 48.166841961300534, 51.59192071108888, 51.97752824044738, + 53.11188492857299, 49.94877451682019, 47.607962472944145, + 42.366109908207065, 36.33735663984126, 29.39132806133744, + 20.203317887044843, 11.749138590189663, 1.710490515023677, + -7.759204968528914, -17.0700108737995, -25.450779556729934, + -32.99065791056251, -38.28528450038423, -43.63626371467492, + -46.031198351591904, -48.56357504405803, -49.742183589784055, + -49.76767081904981, -50.49319871328139, -48.23635446842347, + -47.73118944513389, -44.09680124095958, -40.94076612039841, + -36.28173977032763, -29.94574759353039, -25.015238049474725, + -18.1439710906736, -13.374795337764665, -8.210970462996011, + -4.274857990358249, -1.450003602971793, 1.030017705129503, + 2.79101059606108, 4.49978790323511, 6.336875581561592, 8.145260605457874, + 10.083403967209707, 11.937806796485319, 12.950162547396909, + 13.921103261152334, 13.348566826667266, 12.60383690195624, + 10.750167497469267, 8.417306899124453, 6.352100473303492, + 3.9538453121864037, 2.378089550274763, 0.9275839541643001, + -0.003049785363475521, -0.6531909347169593, -1.2331852916878108, + -1.8280430899884788, -2.4523303195479595, -3.235605012780331, + -3.8722555945109796, -4.459480365688657, -4.76230182146019, + -4.653884651640295, -4.512241863617949, -3.930803174634425, + -3.5960361637658975, -3.1582922855429016, -2.9487563821511453, + -2.9740746553326014, -2.9690119755384914, -3.121748828704128, + -2.96204038309859, -2.7354064160678115, -2.2146710108307754, + -1.569926406994398, -0.9312562116688649, -0.3468231840421054, + -0.05866943726522946, 0.004246324152074343, -0.18430615905577927, + -0.48171397610170985, -0.7469203390044087, -0.8592550783392457, + -0.6856286618183396, -0.27884405479987545, 0.380612743284987 + ], + "pressure:J21:branch10_seg2": [ + -19585.181443756715, -29233.01760076985, -21975.935615051014, + -14604.530929555522, -5748.9446868342775, 4120.836279441431, + 20383.968013155878, 40949.36373508414, 72256.24837561812, + 112142.89132321892, 157550.71242958313, 218017.06028471742, + 270000.7143184937, 338464.75845072774, 388487.1858246376, + 437250.7265525764, 480938.7385415548, 498077.4834839674, + 525940.3584297891, 512998.5564794319, 511667.74017393525, + 479516.80200081744, 443146.7056002268, 394758.84363945515, + 325817.63083281036, 262553.06387941656, 180011.44193486744, + 101770.63330058496, 20119.690207572265, -55261.69635871518, + -126980.65726225605, -180515.23724576717, -239459.39944424867, + -271793.8981623313, -309525.8296743162, -334023.4682993009, + -350260.3332238083, -373296.96968065575, -368777.7716668376, + -383512.3205937655, -365013.73752482067, -355294.4704481704, + -327404.6662517064, -285619.7479613134, -256221.69082339434, + -204656.2656833302, -173561.52814934377, -133360.19488349714, + -104132.21443593329, -82316.30169468689, -61964.57997397953, + -47178.58578382964, -31687.996975121798, -14302.883227187198, + 3066.008556046423, 22375.242608292087, 41318.98411554748, + 53241.85477347346, 66357.51101664647, 64948.28936616881, + 64032.629584461814, 51854.904614956184, 36078.661301213615, + 22241.568207261134, 4204.710894381216, -6539.811825132372, + -17727.51344935364, -24599.81363126222, -29724.596353693716, + -34539.33243900414, -39741.973663366225, -45314.40477112537, + -52642.785423131456, -58632.565447239554, -64675.71026702988, + -68213.53563831167, -68378.63007575859, -68664.8382223207, + -64656.29353474594, -63369.50466286152, -60473.92979455111, + -59742.373845188704, -60835.49452961334, -61460.48039236671, + -63652.393790841874, -62840.86712339355, -61737.427528409724, + -57783.103219949175, -52898.925523292986, -47813.98678390591, + -43090.70207460894, -40773.52281684281, -40122.89076023878, + -41604.09246511277, -43915.67634591906, -45994.05463916706, + -46833.35481777214, -45219.82569955484, -41713.63300902274, + -19585.181443756715 + ], + "flow:branch12_seg0:J22": [ + 0.17338719191299862, 0.8743255676817322, 1.6419960753584382, + 2.3983372633015447, 3.288679789400577, 4.2532767339504245, + 5.722830489147039, 7.748670005227762, 10.606842857216177, + 14.604346123560447, 19.025661195844815, 24.95119475779898, + 30.304825270462384, 36.57881445273117, 41.85209897691653, + 45.648455239557045, 49.97427213707785, 50.508755786625464, + 52.14500706688155, 49.95958708097704, 47.22622429097386, + 43.50968451536116, 37.32205022926656, 31.55808470653042, + 22.90127342695651, 14.735068135351607, 5.38016313243887, + -3.9313721873913616, -12.941792300520616, -21.236654081761344, + -29.13485404370297, -34.76711849539783, -40.45553352566387, + -43.72479804436139, -46.01977274641911, -48.46817888572822, + -48.372626480083646, -49.90180240611689, -48.3172197904825, + -47.56417049198329, -45.22738462172984, -41.7681269874407, + -38.26837037050048, -32.1525018088941, -27.37657623993236, + -20.812834803959795, -15.529598905667276, -10.515033234678691, + -6.009350636580531, -2.9651017426575295, -0.10115269730651914, + 1.966913245715412, 3.7850923473956595, 5.642045092221296, + 7.48177962265964, 9.334039247423428, 11.312910381381421, + 12.480806244569385, 13.549622463587372, 13.394710284512437, + 12.70897042766783, 11.31721559788673, 9.059201002936891, + 7.155920700036151, 4.757498875231867, 3.011162046772065, + 1.5043262024518507, 0.3761277373237811, -0.33184844790878293, + -0.9834897157715426, -1.6089519444335136, -2.2317522575986453, + -2.974889417257966, -3.6475892878010434, -4.2170305757409245, + -4.644718630156114, -4.618940124787674, -4.5656981930829295, + -4.0875046770589, -3.715944874418263, -3.3292541389281713, + -3.0177011526779727, -3.036950608177811, -2.9742553098110323, + -3.103088683887442, -3.0093879919075643, -2.7830776588114143, + -2.3931995671699298, -1.7631147050171319, -1.1719480669605635, + -0.5642230984122856, -0.19327601034073005, -0.05808688118623102, + -0.1529591147485634, -0.40712773922859574, -0.659943797832184, + -0.810440777407783, -0.7142614464002285, -0.3969864666366675, + 0.17338719191299862 + ], + "pressure:branch12_seg0:J22": [ + -20532.571912380565, -30510.99229953896, -23473.940313168998, + -16307.996770112219, -7594.14848968409, 2043.5783353134566, + 17378.265160768362, 36997.23029752594, 66088.72352461971, + 104417.00091699824, 147616.78899178782, 206798.61314986952, + 257969.49395974065, 324484.3406397855, 376248.3565389962, + 422243.3056152776, 471372.7782075586, 489229.3569829438, + 520610.28456914914, 511624.73004174687, 507503.96611064783, + 482318.9246609175, 446253.87870112684, 405355.3889893202, + 338912.61978142394, 277686.5161553528, 197097.68598738345, + 120415.05018166397, 41699.667995578624, -32257.66489632851, + -105884.48752078183, -161065.9748519712, -222785.23388328357, + -258152.50033514568, -294016.6299816551, -325055.0828391939, + -341541.409186257, -370179.26668528665, -368519.72330160276, + -382435.9808406369, -368471.55599084875, -358418.0957924137, + -337236.8533330329, -296869.60346845206, -270017.02120211115, + -218384.4187857751, -184444.81996171607, -145585.76330726765, + -113287.63056564677, -91484.52953812674, -68440.94047896625, + -51309.88355289359, -35051.58227117376, -17351.815673461344, + -417.5361734944378, 18518.894692568105, 38145.31498814157, + 50909.54668913028, 64801.60211827505, 64882.30941767072, + 64272.365884949475, 54440.45676111122, 39138.768375413514, + 26913.57354385158, 8779.281956501134, -3016.7598516346584, + -14525.170638867605, -22578.633955881123, -27665.558900591426, + -32905.47050831685, -38427.31037866931, -44152.75974606715, + -51363.63294816059, -57311.500121051955, -63205.90546235879, + -67310.94021090817, -67929.02043361905, -68899.86672135282, + -65321.76200898447, -63879.88236450006, -61253.10896830318, + -59965.948679866444, -61236.86924678954, -61542.24142671562, + -63528.619732862215, -62937.733770849954, -61761.42535507856, + -58489.71942692248, -53799.01610478191, -49037.11684061536, + -44244.78275077552, -41528.80558188541, -40458.93641627337, + -41439.642003873276, -43555.059512040985, -45508.37198306164, + -46486.049072728194, -45186.976931107565, -42155.4882358742, + -20532.571912380565 + ], + "flow:J22:branch12_seg1": [ + 0.17338719191299862, 0.8743255676817322, 1.6419960753584382, + 2.3983372633015447, 3.288679789400577, 4.2532767339504245, + 5.722830489147039, 7.748670005227762, 10.606842857216177, + 14.604346123560447, 19.025661195844815, 24.95119475779898, + 30.304825270462384, 36.57881445273117, 41.85209897691653, + 45.648455239557045, 49.97427213707785, 50.508755786625464, + 52.14500706688155, 49.95958708097704, 47.22622429097386, + 43.50968451536116, 37.32205022926656, 31.55808470653042, + 22.90127342695651, 14.735068135351607, 5.38016313243887, + -3.9313721873913616, -12.941792300520616, -21.236654081761344, + -29.13485404370297, -34.76711849539783, -40.45553352566387, + -43.72479804436139, -46.01977274641911, -48.46817888572822, + -48.372626480083646, -49.90180240611689, -48.3172197904825, + -47.56417049198329, -45.22738462172984, -41.7681269874407, + -38.26837037050048, -32.1525018088941, -27.37657623993236, + -20.812834803959795, -15.529598905667276, -10.515033234678691, + -6.009350636580531, -2.9651017426575295, -0.10115269730651914, + 1.966913245715412, 3.7850923473956595, 5.642045092221296, + 7.48177962265964, 9.334039247423428, 11.312910381381421, + 12.480806244569385, 13.549622463587372, 13.394710284512437, + 12.70897042766783, 11.31721559788673, 9.059201002936891, + 7.155920700036151, 4.757498875231867, 3.011162046772065, + 1.5043262024518507, 0.3761277373237811, -0.33184844790878293, + -0.9834897157715426, -1.6089519444335136, -2.2317522575986453, + -2.974889417257966, -3.6475892878010434, -4.2170305757409245, + -4.644718630156114, -4.618940124787674, -4.5656981930829295, + -4.0875046770589, -3.715944874418263, -3.3292541389281713, + -3.0177011526779727, -3.036950608177811, -2.9742553098110323, + -3.103088683887442, -3.0093879919075643, -2.7830776588114143, + -2.3931995671699298, -1.7631147050171319, -1.1719480669605635, + -0.5642230984122856, -0.19327601034073005, -0.05808688118623102, + -0.1529591147485634, -0.40712773922859574, -0.659943797832184, + -0.810440777407783, -0.7142614464002285, -0.3969864666366675, + 0.17338719191299862 + ], + "pressure:J22:branch12_seg1": [ + -20532.571912380565, -30510.99229953896, -23473.940313168998, + -16307.996770112219, -7594.14848968409, 2043.5783353134566, + 17378.265160768362, 36997.23029752594, 66088.72352461971, + 104417.00091699824, 147616.78899178782, 206798.61314986952, + 257969.49395974065, 324484.3406397855, 376248.3565389962, + 422243.3056152776, 471372.7782075586, 489229.3569829438, + 520610.28456914914, 511624.73004174687, 507503.96611064783, + 482318.9246609175, 446253.87870112684, 405355.3889893202, + 338912.61978142394, 277686.5161553528, 197097.68598738345, + 120415.05018166397, 41699.667995578624, -32257.66489632851, + -105884.48752078183, -161065.9748519712, -222785.23388328357, + -258152.50033514568, -294016.6299816551, -325055.0828391939, + -341541.409186257, -370179.26668528665, -368519.72330160276, + -382435.9808406369, -368471.55599084875, -358418.0957924137, + -337236.8533330329, -296869.60346845206, -270017.02120211115, + -218384.4187857751, -184444.81996171607, -145585.76330726765, + -113287.63056564677, -91484.52953812674, -68440.94047896625, + -51309.88355289359, -35051.58227117376, -17351.815673461344, + -417.5361734944378, 18518.894692568105, 38145.31498814157, + 50909.54668913028, 64801.60211827505, 64882.30941767072, + 64272.365884949475, 54440.45676111122, 39138.768375413514, + 26913.57354385158, 8779.281956501134, -3016.7598516346584, + -14525.170638867605, -22578.633955881123, -27665.558900591426, + -32905.47050831685, -38427.31037866931, -44152.75974606715, + -51363.63294816059, -57311.500121051955, -63205.90546235879, + -67310.94021090817, -67929.02043361905, -68899.86672135282, + -65321.76200898447, -63879.88236450006, -61253.10896830318, + -59965.948679866444, -61236.86924678954, -61542.24142671562, + -63528.619732862215, -62937.733770849954, -61761.42535507856, + -58489.71942692248, -53799.01610478191, -49037.11684061536, + -44244.78275077552, -41528.80558188541, -40458.93641627337, + -41439.642003873276, -43555.059512040985, -45508.37198306164, + -46486.049072728194, -45186.976931107565, -42155.4882358742, + -20532.571912380565 + ], + "flow:branch12_seg1:J23": [ + 0.139874371560026, 0.8344715408044131, 1.6015770449151843, + 2.350441459246439, 3.2384868892873513, 4.189700093543366, + 5.613247814910205, 7.6214107613102, 10.392205142393912, + 14.374992644665278, 18.735511278017455, 24.625007365016188, + 29.98852201878105, 36.188629017655735, 41.595376203274746, + 45.29543531365165, 49.88434623708415, 50.331050039307854, + 52.101499252256154, 50.02757890263972, 47.1549048899825, + 43.817928918492086, 37.47699375557486, 31.9408917900521, + 23.269036284293016, 15.080228184408572, 5.833312673577035, + -3.473618186480127, -12.478896195305826, -20.786433504853402, + -28.801682268584752, -34.45209795465614, -40.15576762335425, + -43.54413051121477, -45.69948453953947, -48.45261959986392, + -48.18103795324327, -49.87360417142075, -48.312191920308564, + -47.4213820142271, -45.38636458048907, -41.77756045564948, + -38.523575728955024, -32.36360666139067, -27.581033517892674, + -21.044597941124458, -15.71470707922088, -10.7493908223417, + -6.176098593232787, -3.1151731468056574, -0.18970594278807412, + 1.882862450003921, 3.6944536771252383, 5.520265110764745, + 7.378119532730142, 9.209472979502236, 11.23267581051553, + 12.417025230650083, 13.489227036113636, 13.40656279009616, + 12.713568301011824, 11.40874804904013, 9.140839949401693, + 7.262182854966441, 4.833266835472209, 3.0704371303981137, + 1.5588545593869847, 0.4153547600875161, -0.292700895360878, + -0.9544152582253058, -1.5820027910362733, -2.199819573199173, + -2.929414083804709, -3.6147974857619, -4.178365958947558, + -4.63718792856893, -4.617340491767162, -4.574622740458898, + -4.103040021020562, -3.721448644681039, -3.3437334359636135, + -3.014227605376763, -3.0414963591750093, -2.962748866337284, + -3.096381063503468, -3.0155240346286414, -2.788058784702902, + -2.4262876836009943, -1.7872997443341143, -1.204370099586014, + -0.5862482902046139, -0.20057359019234874, -0.058090439644006245, + -0.14382256831146975, -0.39608309249671664, -0.6505212382796077, + -0.8095578062998475, -0.7262428431575636, -0.42244232228815565, + 0.139874371560026 + ], + "pressure:branch12_seg1:J23": [ + -21857.992807662813, -32132.992121675925, -25236.734359573267, + -18243.07816929391, -9848.444983017007, -642.8313671038665, + 12822.046411925208, 31577.470110853526, 57366.11905170472, + 94076.56972276258, 135213.0835746264, 190487.30265118953, + 243155.51486247254, 304630.8887426975, 361262.19877874793, + 405571.4251773328, 458281.90900934197, 478008.23832941114, + 508858.0737189669, 508042.03643135994, 500107.55831620685, + 486939.02511048975, 447944.47537135246, 413278.3976087938, + 350718.6788732563, 289376.9090451207, 216355.4103564573, + 139945.23275733652, 62933.484649067694, -11191.17858622258, + -85574.34484805378, -142858.75019102392, -202479.4578363515, + -244471.73574886203, -277482.18535835954, -315858.8253893346, + -330102.42691757623, -360400.2265044445, -364018.56160991377, + -372843.9463636469, -371390.02289276785, -356476.7820928769, + -342952.8101010659, -304253.8313331755, -274994.81213247345, + -229340.45697825818, -191745.51317677685, -155236.91079270816, + -120428.89120637966, -96642.90892123338, -72930.04658989498, + -55345.15881069854, -39233.419395988174, -22396.93872414136, + -4735.507521887554, 13337.306911582376, 33552.57331518232, + 47424.5729241025, 60767.08439837376, 64743.70680517761, 63697.5472258487, + 57228.6493661788, 42369.151798424944, 29987.778321160193, + 12378.228588891092, -467.00928776983153, -11844.937367964467, + -20649.438312301714, -26226.636281595223, -31663.935946719237, + -37040.96967004911, -42541.87272461619, -49179.28295900957, + -55661.827795631514, -61369.403385947684, -66362.18201624665, + -67528.20153562384, -68502.45845660284, -65870.267643124, + -63860.28732801932, -61725.50018097751, -59884.63653560948, + -60886.216592721416, -61005.72085119213, -62860.06529060502, + -62952.44856096488, -61811.533776561264, -59456.59044703493, + -54696.51918326672, -50183.48340824761, -45193.884349948494, + -41939.852627960136, -40574.197652781295, -41062.09777769808, + -42955.30312765517, -44943.980759429534, -46218.84505624007, + -45526.77709414304, -42978.9284663841, -21857.992807662813 + ], + "flow:J23:branch12_seg2": [ + 0.139874371560026, 0.8344715408044131, 1.6015770449151843, + 2.350441459246439, 3.2384868892873513, 4.189700093543366, + 5.613247814910205, 7.6214107613102, 10.392205142393912, + 14.374992644665278, 18.735511278017455, 24.625007365016188, + 29.98852201878105, 36.188629017655735, 41.595376203274746, + 45.29543531365165, 49.88434623708415, 50.331050039307854, + 52.101499252256154, 50.02757890263972, 47.1549048899825, + 43.817928918492086, 37.47699375557486, 31.9408917900521, + 23.269036284293016, 15.080228184408572, 5.833312673577035, + -3.473618186480127, -12.478896195305826, -20.786433504853402, + -28.801682268584752, -34.45209795465614, -40.15576762335425, + -43.54413051121477, -45.69948453953947, -48.45261959986392, + -48.18103795324327, -49.87360417142075, -48.312191920308564, + -47.4213820142271, -45.38636458048907, -41.77756045564948, + -38.523575728955024, -32.36360666139067, -27.581033517892674, + -21.044597941124458, -15.71470707922088, -10.7493908223417, + -6.176098593232787, -3.1151731468056574, -0.18970594278807412, + 1.882862450003921, 3.6944536771252383, 5.520265110764745, + 7.378119532730142, 9.209472979502236, 11.23267581051553, + 12.417025230650083, 13.489227036113636, 13.40656279009616, + 12.713568301011824, 11.40874804904013, 9.140839949401693, + 7.262182854966441, 4.833266835472209, 3.0704371303981137, + 1.5588545593869847, 0.4153547600875161, -0.292700895360878, + -0.9544152582253058, -1.5820027910362733, -2.199819573199173, + -2.929414083804709, -3.6147974857619, -4.178365958947558, + -4.63718792856893, -4.617340491767162, -4.574622740458898, + -4.103040021020562, -3.721448644681039, -3.3437334359636135, + -3.014227605376763, -3.0414963591750093, -2.962748866337284, + -3.096381063503468, -3.0155240346286414, -2.788058784702902, + -2.4262876836009943, -1.7872997443341143, -1.204370099586014, + -0.5862482902046139, -0.20057359019234874, -0.058090439644006245, + -0.14382256831146975, -0.39608309249671664, -0.6505212382796077, + -0.8095578062998475, -0.7262428431575636, -0.42244232228815565, + 0.139874371560026 + ], + "pressure:J23:branch12_seg2": [ + -21857.992807662813, -32132.992121675925, -25236.734359573267, + -18243.07816929391, -9848.444983017007, -642.8313671038665, + 12822.046411925208, 31577.470110853526, 57366.11905170472, + 94076.56972276258, 135213.0835746264, 190487.30265118953, + 243155.51486247254, 304630.8887426975, 361262.19877874793, + 405571.4251773328, 458281.90900934197, 478008.23832941114, + 508858.0737189669, 508042.03643135994, 500107.55831620685, + 486939.02511048975, 447944.47537135246, 413278.3976087938, + 350718.6788732563, 289376.9090451207, 216355.4103564573, + 139945.23275733652, 62933.484649067694, -11191.17858622258, + -85574.34484805378, -142858.75019102392, -202479.4578363515, + -244471.73574886203, -277482.18535835954, -315858.8253893346, + -330102.42691757623, -360400.2265044445, -364018.56160991377, + -372843.9463636469, -371390.02289276785, -356476.7820928769, + -342952.8101010659, -304253.8313331755, -274994.81213247345, + -229340.45697825818, -191745.51317677685, -155236.91079270816, + -120428.89120637966, -96642.90892123338, -72930.04658989498, + -55345.15881069854, -39233.419395988174, -22396.93872414136, + -4735.507521887554, 13337.306911582376, 33552.57331518232, + 47424.5729241025, 60767.08439837376, 64743.70680517761, 63697.5472258487, + 57228.6493661788, 42369.151798424944, 29987.778321160193, + 12378.228588891092, -467.00928776983153, -11844.937367964467, + -20649.438312301714, -26226.636281595223, -31663.935946719237, + -37040.96967004911, -42541.87272461619, -49179.28295900957, + -55661.827795631514, -61369.403385947684, -66362.18201624665, + -67528.20153562384, -68502.45845660284, -65870.267643124, + -63860.28732801932, -61725.50018097751, -59884.63653560948, + -60886.216592721416, -61005.72085119213, -62860.06529060502, + -62952.44856096488, -61811.533776561264, -59456.59044703493, + -54696.51918326672, -50183.48340824761, -45193.884349948494, + -41939.852627960136, -40574.197652781295, -41062.09777769808, + -42955.30312765517, -44943.980759429534, -46218.84505624007, + -45526.77709414304, -42978.9284663841, -21857.992807662813 + ], + "flow:branch13_seg0:J24": [ + 0.5484801638802512, 2.223134394555716, 4.011557798137558, + 5.995541619299938, 8.066733430291562, 10.654174016257285, + 14.149639293084213, 19.03603538526605, 26.038743035764824, + 34.94654099614064, 46.459108226871955, 58.92971097855215, + 73.10260741164838, 86.31732385969461, 98.34948754679698, + 109.21954511621178, 115.43910710077147, 120.8902161261384, + 120.18495569005425, 116.64240309062212, 109.63915972092553, + 98.55304814087829, 85.8062946886693, 69.38703695538452, + 50.446378981972984, 29.815786662778535, 7.8987472439886695, + -14.45185957908964, -35.29653007638947, -55.9269878365963, + -72.5908909189356, -87.965323326757, -98.81136756558878, + -106.68591409700667, -112.64898061359098, -114.88959045435703, + -117.44938425932031, -116.52484700098175, -114.4663415047537, + -110.40674536745134, -103.96616480822105, -95.76830043515078, + -85.29217029272704, -72.76559229213174, -58.83837671688507, + -45.103720501283625, -31.079175169256956, -19.62332351511431, + -9.47655318997989, -1.8366636356921837, 3.864831241283895, + 8.590841818929865, 12.281132542182121, 16.043016011588808, + 19.780781680958714, 23.752847416913728, 27.382296102496248, + 30.374525481533116, 31.804349351984836, 31.757119559619767, + 29.541797848950882, 25.922335111026005, 21.07075128440483, + 15.599789346456735, 10.558682445255789, 5.8210610929742055, + 2.3440784210697228, -0.27523013426357934, -2.074924402161024, + -3.3828871583275175, -4.644882493129783, -5.957580638559644, + -7.402870696509565, -8.839915989426315, -10.062517374137647, + -10.772679579895481, -10.965615450701787, -10.419934855402628, + -9.61021601842902, -8.437940981956626, -7.497486010994473, + -6.860579547543088, -6.527381065447248, -6.642281009248893, + -6.648873706667378, -6.547147517751958, -6.056726241759937, + -5.0635431330356635, -3.797568785550623, -2.345941445053331, + -1.0214227517318668, -0.15304658913727093, 0.20392430417356291, + -0.02287957381993973, -0.5899183003320038, -1.2208933743941974, + -1.5799825959879563, -1.46408843264633, -0.7081392892734191, + 0.5484801638802512 + ], + "pressure:branch13_seg0:J24": [ + -17005.252234077227, -25619.110596562638, -17980.625311361677, + -9310.954223364373, -61.00615753594859, 12447.620507591924, + 30927.96668802447, 55507.31757634408, 92449.85452568643, + 135023.76851229006, 191205.97489063346, 250358.71039321297, + 313967.47743665177, 378315.35249893623, 427697.88326930045, + 481750.0722715599, 506946.5208738409, 538772.2368269284, + 542137.9538679279, 534240.7909923223, 518072.9166646216, + 474969.06600496016, 437333.6532544306, 369828.61689641234, + 303102.20281450433, 223252.15360990807, 138113.33658701644, + 51626.223724301075, -30563.298453629523, -111664.74860898573, + -175637.92168877675, -237484.2028237905, -284255.6066332271, + -316073.5389710226, -351035.6397613433, -361654.38296420936, + -388643.57153081, -391245.37093230034, -396404.0391799923, + -394247.03386844246, -372990.76456816774, -356794.3696368892, + -314000.10175364965, -277829.921498175, -230882.63830084668, + -186361.05694075226, -145258.41882616558, -108544.12970390255, + -80393.79101308169, -59327.01402097821, -42993.25634885324, + -28787.973207415802, -15349.495374882292, 1768.6337931968148, + 17818.015014437082, 38144.573680051355, 53310.60484423239, + 66801.5182358861, 73438.69568908049, 71288.65702897028, 64324.93879313502, + 47739.72864535348, 31396.744883214746, 12146.813628614995, + -3361.5772920953173, -16755.349648847863, -25723.29213994574, + -32230.03031593202, -36248.60182172338, -40496.15961940539, + -45214.31229172779, -50980.485196892696, -57943.674695828384, + -63676.118509693915, -69298.5056514295, -70898.63903691752, + -71443.63540406471, -68864.32450862286, -65657.43233525408, + -62521.65706125404, -59931.83593580538, -59802.98788241147, + -60257.84980988096, -62439.9103186911, -63359.596159318935, + -62941.59401729172, -60726.45485764549, -55821.27383854964, + -50761.80883027692, -44816.649192068486, -40810.337473666164, + -38747.54275288727, -39094.64415775702, -41372.12136373432, + -44198.369509794145, -46527.619808976146, -46795.38591085482, + -44677.7062526728, -39919.93318847982, -17005.252234077227 + ], + "flow:J24:branch13_seg1": [ + 0.5484801638802512, 2.223134394555716, 4.011557798137558, + 5.995541619299938, 8.066733430291562, 10.654174016257285, + 14.149639293084213, 19.03603538526605, 26.038743035764824, + 34.94654099614064, 46.459108226871955, 58.92971097855215, + 73.10260741164838, 86.31732385969461, 98.34948754679698, + 109.21954511621178, 115.43910710077147, 120.8902161261384, + 120.18495569005425, 116.64240309062212, 109.63915972092553, + 98.55304814087829, 85.8062946886693, 69.38703695538452, + 50.446378981972984, 29.815786662778535, 7.8987472439886695, + -14.45185957908964, -35.29653007638947, -55.9269878365963, + -72.5908909189356, -87.965323326757, -98.81136756558878, + -106.68591409700667, -112.64898061359098, -114.88959045435703, + -117.44938425932031, -116.52484700098175, -114.4663415047537, + -110.40674536745134, -103.96616480822105, -95.76830043515078, + -85.29217029272704, -72.76559229213174, -58.83837671688507, + -45.103720501283625, -31.079175169256956, -19.62332351511431, + -9.47655318997989, -1.8366636356921837, 3.864831241283895, + 8.590841818929865, 12.281132542182121, 16.043016011588808, + 19.780781680958714, 23.752847416913728, 27.382296102496248, + 30.374525481533116, 31.804349351984836, 31.757119559619767, + 29.541797848950882, 25.922335111026005, 21.07075128440483, + 15.599789346456735, 10.558682445255789, 5.8210610929742055, + 2.3440784210697228, -0.27523013426357934, -2.074924402161024, + -3.3828871583275175, -4.644882493129783, -5.957580638559644, + -7.402870696509565, -8.839915989426315, -10.062517374137647, + -10.772679579895481, -10.965615450701787, -10.419934855402628, + -9.61021601842902, -8.437940981956626, -7.497486010994473, + -6.860579547543088, -6.527381065447248, -6.642281009248893, + -6.648873706667378, -6.547147517751958, -6.056726241759937, + -5.0635431330356635, -3.797568785550623, -2.345941445053331, + -1.0214227517318668, -0.15304658913727093, 0.20392430417356291, + -0.02287957381993973, -0.5899183003320038, -1.2208933743941974, + -1.5799825959879563, -1.46408843264633, -0.7081392892734191, + 0.5484801638802512 + ], + "pressure:J24:branch13_seg1": [ + -17005.252234077227, -25619.110596562638, -17980.625311361677, + -9310.954223364373, -61.00615753594859, 12447.620507591924, + 30927.96668802447, 55507.31757634408, 92449.85452568643, + 135023.76851229006, 191205.97489063346, 250358.71039321297, + 313967.47743665177, 378315.35249893623, 427697.88326930045, + 481750.0722715599, 506946.5208738409, 538772.2368269284, + 542137.9538679279, 534240.7909923223, 518072.9166646216, + 474969.06600496016, 437333.6532544306, 369828.61689641234, + 303102.20281450433, 223252.15360990807, 138113.33658701644, + 51626.223724301075, -30563.298453629523, -111664.74860898573, + -175637.92168877675, -237484.2028237905, -284255.6066332271, + -316073.5389710226, -351035.6397613433, -361654.38296420936, + -388643.57153081, -391245.37093230034, -396404.0391799923, + -394247.03386844246, -372990.76456816774, -356794.3696368892, + -314000.10175364965, -277829.921498175, -230882.63830084668, + -186361.05694075226, -145258.41882616558, -108544.12970390255, + -80393.79101308169, -59327.01402097821, -42993.25634885324, + -28787.973207415802, -15349.495374882292, 1768.6337931968148, + 17818.015014437082, 38144.573680051355, 53310.60484423239, + 66801.5182358861, 73438.69568908049, 71288.65702897028, 64324.93879313502, + 47739.72864535348, 31396.744883214746, 12146.813628614995, + -3361.5772920953173, -16755.349648847863, -25723.29213994574, + -32230.03031593202, -36248.60182172338, -40496.15961940539, + -45214.31229172779, -50980.485196892696, -57943.674695828384, + -63676.118509693915, -69298.5056514295, -70898.63903691752, + -71443.63540406471, -68864.32450862286, -65657.43233525408, + -62521.65706125404, -59931.83593580538, -59802.98788241147, + -60257.84980988096, -62439.9103186911, -63359.596159318935, + -62941.59401729172, -60726.45485764549, -55821.27383854964, + -50761.80883027692, -44816.649192068486, -40810.337473666164, + -38747.54275288727, -39094.64415775702, -41372.12136373432, + -44198.369509794145, -46527.619808976146, -46795.38591085482, + -44677.7062526728, -39919.93318847982, -17005.252234077227 + ], + "flow:branch13_seg1:J25": [ + 0.4703034338241627, 2.1341550623406786, 3.92297459459979, + 5.893431250516315, 7.961176884225932, 10.47857672660326, + 13.920627333622932, 18.677908888524662, 25.58757074912028, + 34.42140136869056, 45.77160196789028, 58.36416871246249, + 72.30237537085176, 85.71255350983259, 97.70501487224965, + 108.71062967072085, 115.23647778993303, 120.61867542438421, + 120.34449458750507, 116.68767497573837, 109.9658998563533, + 98.90826501419363, 86.4116000246423, 70.17153855608657, 51.28370245121093, + 30.751260346665422, 8.811596967305446, -13.47757296594101, + -34.4405545145468, -55.05509119205966, -72.02479274238556, + -87.28813024869247, -98.42448006781572, -106.23262656041285, + -112.35665636612895, -114.66594692727567, -117.24401912732228, + -116.61562421055181, -114.38628287623706, -110.58512226969202, + -104.02389719719399, -96.14412780524005, -85.72048218374835, + -73.24217086832421, -59.47062868234204, -45.51352243075269, + -31.572079748946354, -19.915748725787232, -9.748145522755973, + -2.052116303316339, 3.703292794809978, 8.427072667330554, + 12.108100914175749, 15.865326083024975, 19.560023942023363, + 23.552164634335554, 27.245878865854454, 30.23845447811291, + 31.827683373423692, 31.762141517360018, 29.703137733370845, + 26.08570711106506, 21.269606489892137, 15.826361415248801, + 10.709337629130895, 5.958774191044505, 2.4185781516843847, + -0.22597650640365088, -2.029337596025866, -3.3362729372658073, + -4.588105788304963, -5.878956823269197, -7.335635944790601, + -8.76503023234282, -10.024513402579755, -10.766178091544903, + -10.971642325333272, -10.47645533664984, -9.633739764010388, + -8.479286165189128, -7.50257007988506, -6.853191680524838, + -6.518664208821764, -6.617278626363735, -6.653405250071516, + -6.556011460556205, -6.09616032317593, -5.115479407623711, + -3.862896650695757, -2.4040835591784724, -1.0612296516770834, + -0.16049762706628093, 0.22030934728303442, 0.009601526224237204, + -0.5577677038763066, -1.2042246013581486, -1.5930415354839524, + -1.5017082921714469, -0.7752904728437233, 0.4703034338241627 + ], + "pressure:branch13_seg1:J25": [ + -18833.920999174054, -27874.095326367315, -20469.897394279877, + -11979.553121326127, -3075.9725182180764, 8224.804776671916, + 25317.574641300624, 47041.465776387064, 81725.01213964054, + 121793.24803473524, 173863.74592755397, 231924.1310199464, + 290964.7992241928, 356502.46721959545, 407150.682539698, + 464044.5615063333, 493852.3475755368, 527264.8514012455, 532168.621998419, + 528108.1955377633, 518232.8818627495, 478654.9036862641, + 449675.2142227468, 383913.533816486, 321705.75919029093, + 245575.7002043597, 163013.87367290404, 80606.5296314189, + -1830.857323163989, -83035.99004862242, -149833.01700785873, + -212323.24925949576, -261830.78171135738, -296495.7465925736, + -336778.83061589097, -349952.3388666183, -381001.3750552383, + -383634.7729742447, -390051.8086049678, -392714.3591584756, + -372008.7256527947, -365189.53978660103, -325014.305538332, + -290663.1392143271, -246144.59248909607, -198998.04220353413, + -159208.08768525714, -121424.84328990847, -90644.00411435033, + -68484.12796060584, -49289.80730789007, -33744.68156904575, + -20640.88853500144, -2942.747599827459, 11791.841364864102, + 32520.627597819173, 48331.212249088494, 62014.59268072752, + 71213.39558432132, 69871.9945026159, 66497.7860622418, 52060.394752002794, + 36841.81506966669, 18433.02398898502, 1946.7433949492718, + -12428.32339141739, -22017.068711827873, -29804.466911547246, + -34097.72357200875, -38733.34418269804, -43534.31910322975, + -48800.03946067575, -55872.11422339462, -61309.15187745376, + -67606.48820509583, -69950.72088437034, -71028.92007591517, + -69351.6070173301, -66149.49051037295, -63313.39936050125, + -60647.27366949839, -60060.81815662173, -60299.46405871879, + -62024.48356846998, -62845.96643813945, -62809.20248750835, + -61229.314911984715, -56898.57321656731, -52526.48811310591, + -46435.19416197493, -42216.09382771955, -39461.26201508167, + -39096.2984547225, -40888.269459974996, -43380.058885136896, + -45797.223665071906, -46559.64865594191, -45056.103224012724, + -41080.32984718747, -18833.920999174054 + ], + "flow:J25:branch13_seg2": [ + 0.4703034338241627, 2.1341550623406786, 3.92297459459979, + 5.893431250516315, 7.961176884225932, 10.47857672660326, + 13.920627333622932, 18.677908888524662, 25.58757074912028, + 34.42140136869056, 45.77160196789028, 58.36416871246249, + 72.30237537085176, 85.71255350983259, 97.70501487224965, + 108.71062967072085, 115.23647778993303, 120.61867542438421, + 120.34449458750507, 116.68767497573837, 109.9658998563533, + 98.90826501419363, 86.4116000246423, 70.17153855608657, 51.28370245121093, + 30.751260346665422, 8.811596967305446, -13.47757296594101, + -34.4405545145468, -55.05509119205966, -72.02479274238556, + -87.28813024869247, -98.42448006781572, -106.23262656041285, + -112.35665636612895, -114.66594692727567, -117.24401912732228, + -116.61562421055181, -114.38628287623706, -110.58512226969202, + -104.02389719719399, -96.14412780524005, -85.72048218374835, + -73.24217086832421, -59.47062868234204, -45.51352243075269, + -31.572079748946354, -19.915748725787232, -9.748145522755973, + -2.052116303316339, 3.703292794809978, 8.427072667330554, + 12.108100914175749, 15.865326083024975, 19.560023942023363, + 23.552164634335554, 27.245878865854454, 30.23845447811291, + 31.827683373423692, 31.762141517360018, 29.703137733370845, + 26.08570711106506, 21.269606489892137, 15.826361415248801, + 10.709337629130895, 5.958774191044505, 2.4185781516843847, + -0.22597650640365088, -2.029337596025866, -3.3362729372658073, + -4.588105788304963, -5.878956823269197, -7.335635944790601, + -8.76503023234282, -10.024513402579755, -10.766178091544903, + -10.971642325333272, -10.47645533664984, -9.633739764010388, + -8.479286165189128, -7.50257007988506, -6.853191680524838, + -6.518664208821764, -6.617278626363735, -6.653405250071516, + -6.556011460556205, -6.09616032317593, -5.115479407623711, + -3.862896650695757, -2.4040835591784724, -1.0612296516770834, + -0.16049762706628093, 0.22030934728303442, 0.009601526224237204, + -0.5577677038763066, -1.2042246013581486, -1.5930415354839524, + -1.5017082921714469, -0.7752904728437233, 0.4703034338241627 + ], + "pressure:J25:branch13_seg2": [ + -18833.920999174054, -27874.095326367315, -20469.897394279877, + -11979.553121326127, -3075.9725182180764, 8224.804776671916, + 25317.574641300624, 47041.465776387064, 81725.01213964054, + 121793.24803473524, 173863.74592755397, 231924.1310199464, + 290964.7992241928, 356502.46721959545, 407150.682539698, + 464044.5615063333, 493852.3475755368, 527264.8514012455, 532168.621998419, + 528108.1955377633, 518232.8818627495, 478654.9036862641, + 449675.2142227468, 383913.533816486, 321705.75919029093, + 245575.7002043597, 163013.87367290404, 80606.5296314189, + -1830.857323163989, -83035.99004862242, -149833.01700785873, + -212323.24925949576, -261830.78171135738, -296495.7465925736, + -336778.83061589097, -349952.3388666183, -381001.3750552383, + -383634.7729742447, -390051.8086049678, -392714.3591584756, + -372008.7256527947, -365189.53978660103, -325014.305538332, + -290663.1392143271, -246144.59248909607, -198998.04220353413, + -159208.08768525714, -121424.84328990847, -90644.00411435033, + -68484.12796060584, -49289.80730789007, -33744.68156904575, + -20640.88853500144, -2942.747599827459, 11791.841364864102, + 32520.627597819173, 48331.212249088494, 62014.59268072752, + 71213.39558432132, 69871.9945026159, 66497.7860622418, 52060.394752002794, + 36841.81506966669, 18433.02398898502, 1946.7433949492718, + -12428.32339141739, -22017.068711827873, -29804.466911547246, + -34097.72357200875, -38733.34418269804, -43534.31910322975, + -48800.03946067575, -55872.11422339462, -61309.15187745376, + -67606.48820509583, -69950.72088437034, -71028.92007591517, + -69351.6070173301, -66149.49051037295, -63313.39936050125, + -60647.27366949839, -60060.81815662173, -60299.46405871879, + -62024.48356846998, -62845.96643813945, -62809.20248750835, + -61229.314911984715, -56898.57321656731, -52526.48811310591, + -46435.19416197493, -42216.09382771955, -39461.26201508167, + -39096.2984547225, -40888.269459974996, -43380.058885136896, + -45797.223665071906, -46559.64865594191, -45056.103224012724, + -41080.32984718747, -18833.920999174054 + ], + "flow:branch14_seg0:J26": [ + 3.125390794119589, 6.911078348882228, 10.54517818406051, + 14.317360496392538, 18.35040892383849, 23.673831764552457, + 31.786314258004555, 42.983013300887855, 59.56857261698087, + 79.41128875914484, 104.18994456307661, 130.58169874075816, + 157.30771706693596, 183.58417130547284, 201.81025591194057, + 219.22331939367342, 225.29047248908378, 228.88943366100463, + 223.26223032894325, 208.6246420244241, 191.93787096918214, + 164.3358985278589, 136.7870522795906, 100.60033526111837, + 61.663483409832146, 20.39959703410322, -22.64359764445005, + -64.60388364635011, -102.92388998768502, -138.27403970445312, + -165.6491155101473, -188.07661265300916, -204.33676266523594, + -211.47195970847304, -218.90083291147715, -217.42119608381236, + -218.8225039991701, -213.96152997690217, -205.9367698130473, + -196.7739465196466, -179.1900757161846, -161.97800005092103, + -136.20718163015744, -110.20389007613149, -82.5582129610792, + -56.002579878386726, -33.151530044021186, -13.44491786051032, + 0.590271115275973, 10.657313308768522, 17.497697376960602, + 23.134256348319383, 28.503196028689786, 35.123422036658575, + 41.913477741043245, 49.82909908689627, 55.91082632017352, + 60.04005443798065, 60.85316377529424, 57.10926815144803, + 50.66846058099965, 40.168096849837596, 29.416237752907747, + 18.39389761901353, 9.237475729062934, 2.2137020218635644, + -2.5852755573534942, -5.3972747339407325, -7.112546468493024, + -8.681633309999075, -10.634504235688924, -13.156645494203449, + -16.163871403155266, -18.685286875025458, -20.773104300979817, + -21.09058720217954, -20.34998272931726, -18.343450399320382, + -15.81934473968315, -13.618657838225067, -11.779074503065479, + -11.293621971143763, -11.37018566112778, -12.105247574740241, + -12.462699359217156, -11.872137760295342, -10.4357557218186, + -7.6963650802266965, -4.7146039007952, -1.6751943575632562, + 0.5024949772712789, 1.3905944159289816, 0.9724023228172493, + -0.46098858489160216, -2.205397339101774, -3.5519609092783955, + -3.7930416549376567, -2.680077225570075, -0.2353837546869269, + 3.125390794119589 + ], + "pressure:branch14_seg0:J26": [ + -13467.3267487509, -21446.353643093735, -13522.580049576738, + -4519.680630763887, 5231.147056079582, 20037.922906063308, + 41099.04955673794, 70866.41758090115, 112605.81573639724, + 160053.92832291877, 223107.99156939267, 283219.41660495684, + 353820.54526603833, 416215.8628051235, 463583.9726432439, + 513803.57196788845, 531514.2164343187, 560103.7156689416, + 555417.9030596422, 542898.7041418854, 517113.35573663475, + 467826.1787308478, 417622.25546184427, 343607.17930188164, + 269034.01524634403, 181195.27297800794, 91185.96986413898, + -1461.3962396949682, -83849.63528783353, -164849.1905734656, + -223252.42294810739, -283324.47128713527, -322742.0577999568, + -349763.9101325223, -377179.85229985166, -382873.1043923963, + -403820.6855113613, -400836.34604689636, -404471.6825071481, + -392728.53095901513, -369742.1399687972, -340824.3040360414, + -292803.1141198759, -253289.34646779974, -201189.6249626296, + -161002.55184076558, -119538.32043453495, -86218.18119525292, + -63100.37537448157, -44925.48255418415, -32733.392260652527, + -20513.865311149963, -6556.592105123578, 10132.132542765801, + 27934.313877761873, 47896.068544407266, 61500.68802081087, + 74131.28104784385, 75577.31666881163, 71531.02769953942, + 59062.10381881462, 39162.246516247666, 21145.494903771007, + 766.6403852656749, -12965.760168941644, -24602.487587423046, + -31904.515178849113, -36219.06506045432, -39530.51021505043, + -43357.75085615341, -48107.47482793879, -54777.16580348262, + -61599.63467365314, -67598.98448570084, -72092.00975351005, + -72284.34154333791, -71741.15111556997, -67429.42155426569, + -64235.66893692175, -60802.98858501516, -58659.42823471229, + -59481.440840442985, -60450.90132370559, -63263.97994660302, + -63886.9754159601, -62792.527953455254, -59421.93378347583, + -53536.10010144765, -47550.500114858856, -41820.935216786726, + -38420.78216128503, -37643.43699385526, -39328.70215103366, + -42538.09267167329, -45818.32762767341, -47817.03444919761, + -47029.65412382095, -43653.05226644824, -37470.225682185, + -13467.3267487509 + ], + "flow:J26:branch14_seg1": [ + 3.125390794119589, 6.911078348882228, 10.54517818406051, + 14.317360496392538, 18.35040892383849, 23.673831764552457, + 31.786314258004555, 42.983013300887855, 59.56857261698087, + 79.41128875914484, 104.18994456307661, 130.58169874075816, + 157.30771706693596, 183.58417130547284, 201.81025591194057, + 219.22331939367342, 225.29047248908378, 228.88943366100463, + 223.26223032894325, 208.6246420244241, 191.93787096918214, + 164.3358985278589, 136.7870522795906, 100.60033526111837, + 61.663483409832146, 20.39959703410322, -22.64359764445005, + -64.60388364635011, -102.92388998768502, -138.27403970445312, + -165.6491155101473, -188.07661265300916, -204.33676266523594, + -211.47195970847304, -218.90083291147715, -217.42119608381236, + -218.8225039991701, -213.96152997690217, -205.9367698130473, + -196.7739465196466, -179.1900757161846, -161.97800005092103, + -136.20718163015744, -110.20389007613149, -82.5582129610792, + -56.002579878386726, -33.151530044021186, -13.44491786051032, + 0.590271115275973, 10.657313308768522, 17.497697376960602, + 23.134256348319383, 28.503196028689786, 35.123422036658575, + 41.913477741043245, 49.82909908689627, 55.91082632017352, + 60.04005443798065, 60.85316377529424, 57.10926815144803, + 50.66846058099965, 40.168096849837596, 29.416237752907747, + 18.39389761901353, 9.237475729062934, 2.2137020218635644, + -2.5852755573534942, -5.3972747339407325, -7.112546468493024, + -8.681633309999075, -10.634504235688924, -13.156645494203449, + -16.163871403155266, -18.685286875025458, -20.773104300979817, + -21.09058720217954, -20.34998272931726, -18.343450399320382, + -15.81934473968315, -13.618657838225067, -11.779074503065479, + -11.293621971143763, -11.37018566112778, -12.105247574740241, + -12.462699359217156, -11.872137760295342, -10.4357557218186, + -7.6963650802266965, -4.7146039007952, -1.6751943575632562, + 0.5024949772712789, 1.3905944159289816, 0.9724023228172493, + -0.46098858489160216, -2.205397339101774, -3.5519609092783955, + -3.7930416549376567, -2.680077225570075, -0.2353837546869269, + 3.125390794119589 + ], + "pressure:J26:branch14_seg1": [ + -13467.3267487509, -21446.353643093735, -13522.580049576738, + -4519.680630763887, 5231.147056079582, 20037.922906063308, + 41099.04955673794, 70866.41758090115, 112605.81573639724, + 160053.92832291877, 223107.99156939267, 283219.41660495684, + 353820.54526603833, 416215.8628051235, 463583.9726432439, + 513803.57196788845, 531514.2164343187, 560103.7156689416, + 555417.9030596422, 542898.7041418854, 517113.35573663475, + 467826.1787308478, 417622.25546184427, 343607.17930188164, + 269034.01524634403, 181195.27297800794, 91185.96986413898, + -1461.3962396949682, -83849.63528783353, -164849.1905734656, + -223252.42294810739, -283324.47128713527, -322742.0577999568, + -349763.9101325223, -377179.85229985166, -382873.1043923963, + -403820.6855113613, -400836.34604689636, -404471.6825071481, + -392728.53095901513, -369742.1399687972, -340824.3040360414, + -292803.1141198759, -253289.34646779974, -201189.6249626296, + -161002.55184076558, -119538.32043453495, -86218.18119525292, + -63100.37537448157, -44925.48255418415, -32733.392260652527, + -20513.865311149963, -6556.592105123578, 10132.132542765801, + 27934.313877761873, 47896.068544407266, 61500.68802081087, + 74131.28104784385, 75577.31666881163, 71531.02769953942, + 59062.10381881462, 39162.246516247666, 21145.494903771007, + 766.6403852656749, -12965.760168941644, -24602.487587423046, + -31904.515178849113, -36219.06506045432, -39530.51021505043, + -43357.75085615341, -48107.47482793879, -54777.16580348262, + -61599.63467365314, -67598.98448570084, -72092.00975351005, + -72284.34154333791, -71741.15111556997, -67429.42155426569, + -64235.66893692175, -60802.98858501516, -58659.42823471229, + -59481.440840442985, -60450.90132370559, -63263.97994660302, + -63886.9754159601, -62792.527953455254, -59421.93378347583, + -53536.10010144765, -47550.500114858856, -41820.935216786726, + -38420.78216128503, -37643.43699385526, -39328.70215103366, + -42538.09267167329, -45818.32762767341, -47817.03444919761, + -47029.65412382095, -43653.05226644824, -37470.225682185, + -13467.3267487509 + ], + "flow:branch14_seg1:J27": [ + 3.0765007519415652, 6.861331670469059, 10.492250450114568, + 14.259957766874246, 18.28743799652082, 23.562901801147312, + 31.650518868779148, 42.746973600369685, 59.28455543686178, + 79.07501171990906, 103.80121635650936, 130.26300586418915, + 156.8926193448866, 183.25637288596812, 201.4263544469691, + 218.99398332790244, 225.13925882810133, 228.88167493265246, + 223.46134981155402, 208.66805264965035, 192.18186161928776, + 164.47776216948324, 137.18180019160525, 101.07640872411261, + 62.159582179238484, 20.95934742450129, -22.136953577318398, + -64.08987248866003, -102.42587881187949, -137.84782340315513, + -165.33007436990076, -187.78301933305394, -204.20030716450714, + -211.19676561722764, -218.77022877921672, -217.22730211723, + -218.79198721946474, -214.0754451426721, -205.9206546791335, + -196.97408776990656, -179.19310075808843, -162.19050191785067, + -136.46424057786172, -110.50027664587792, -82.93789698300782, + -56.254774063630464, -33.367350100984524, -13.585309269635284, + 0.4855589554614943, 10.56656551822684, 17.403720506538196, + 23.060282448623443, 28.39671123339272, 35.02786695828192, + 41.78395543636811, 49.72110552115163, 55.84538325151834, + 59.98906629819633, 60.90468189701234, 57.14031084165187, + 50.76341507356585, 40.2668198151344, 29.533120257154287, + 18.511136459337035, 9.327867741767449, 2.2721675886533492, + -2.5548683422031355, -5.382398808586901, -7.095807750976341, + -8.652962894199524, -10.602837374128622, -13.108950288582784, + -16.130251615602887, -18.644721409134824, -20.757955988710712, + -21.092171236729108, -20.365354937528764, -18.380435099138335, + -15.839809991690004, -13.635005929517044, -11.774313157174465, + -11.283682064206602, -11.356417015262384, -12.09816131677201, + -12.47190809717784, -11.88196533019113, -10.465563652238918, + -7.723817421361986, -4.753357765349302, -1.7057525175867843, + 0.4865031791963392, 1.3916829893328402, 0.990418146546834, + -0.43775860867100486, -2.187069753221323, -3.547039222090342, + -3.8075870433192427, -2.7112132290720647, -0.2791222986371222, + 3.0765007519415652 + ], + "pressure:branch14_seg1:J27": [ + -15536.093327393908, -23748.277829455667, -15827.635252397082, + -7111.20167846325, 2371.905304466732, 15578.256537436968, + 34945.68688976438, 61596.11824220035, 100133.957213066, + 145278.58151453294, 203782.31553362941, 263784.0852665221, + 329517.8467971457, 392295.21170026524, 440038.7769948183, + 489599.9434069116, 512348.38916899444, 538588.3851461806, + 540095.9796401272, 526884.9665494137, 506373.86922303855, + 462023.4382747376, 417782.767340725, 352082.63972538034, + 282066.8600371444, 201932.15052300022, 116872.08625810927, + 29938.01077933773, -50383.99809398778, -129161.21243998525, + -190976.62076133446, -250003.75471057626, -294547.246777409, + -323512.963708, -354425.3985631377, -365499.6701065, -387598.8156472617, + -391970.29548901325, -394851.9057139945, -390150.7758853477, + -369043.5771906168, -346201.979415549, -303843.20130139356, + -264275.93959050736, -215740.6048912755, -172029.30789615153, + -130458.41642025052, -94964.65340610917, -69485.83768874992, + -50021.76519571658, -36481.69370116975, -23787.365269730628, + -10540.613015436928, 5694.916195708123, 22714.80449901044, + 42394.84496763029, 57497.30107516019, 70345.88816810118, + 74901.13909114477, 71655.01502166521, 61766.82914413473, + 43677.64317579645, 25857.31368751566, 6104.230229105078, + -9054.556389420084, -21487.159015923033, -29851.564464211096, + -34904.943979694945, -38396.7437560245, -41996.8871523472, + -46526.81672194305, -52586.4212274956, -59449.16531781453, + -65452.46362536874, -70532.87717578332, -71778.23277578132, + -71620.6091830751, -68327.07123466898, -64818.9757873599, + -61431.19022236856, -58874.66892123386, -59099.277417417085, + -59957.63407625975, -62445.859430239914, -63572.11819059077, + -62831.528576129196, -60192.91888093504, -54852.561008504454, + -49149.57330433818, -43309.04954859433, -39320.545750649195, + -37806.00536318883, -38772.48212192519, -41577.08832704386, + -44844.59836682356, -47204.23232246751, -47176.65197140115, + -44527.690057836626, -39095.8115368006, -15536.093327393908 + ], + "flow:J27:branch14_seg2": [ + 3.0765007519415652, 6.861331670469059, 10.492250450114568, + 14.259957766874246, 18.28743799652082, 23.562901801147312, + 31.650518868779148, 42.746973600369685, 59.28455543686178, + 79.07501171990906, 103.80121635650936, 130.26300586418915, + 156.8926193448866, 183.25637288596812, 201.4263544469691, + 218.99398332790244, 225.13925882810133, 228.88167493265246, + 223.46134981155402, 208.66805264965035, 192.18186161928776, + 164.47776216948324, 137.18180019160525, 101.07640872411261, + 62.159582179238484, 20.95934742450129, -22.136953577318398, + -64.08987248866003, -102.42587881187949, -137.84782340315513, + -165.33007436990076, -187.78301933305394, -204.20030716450714, + -211.19676561722764, -218.77022877921672, -217.22730211723, + -218.79198721946474, -214.0754451426721, -205.9206546791335, + -196.97408776990656, -179.19310075808843, -162.19050191785067, + -136.46424057786172, -110.50027664587792, -82.93789698300782, + -56.254774063630464, -33.367350100984524, -13.585309269635284, + 0.4855589554614943, 10.56656551822684, 17.403720506538196, + 23.060282448623443, 28.39671123339272, 35.02786695828192, + 41.78395543636811, 49.72110552115163, 55.84538325151834, + 59.98906629819633, 60.90468189701234, 57.14031084165187, + 50.76341507356585, 40.2668198151344, 29.533120257154287, + 18.511136459337035, 9.327867741767449, 2.2721675886533492, + -2.5548683422031355, -5.382398808586901, -7.095807750976341, + -8.652962894199524, -10.602837374128622, -13.108950288582784, + -16.130251615602887, -18.644721409134824, -20.757955988710712, + -21.092171236729108, -20.365354937528764, -18.380435099138335, + -15.839809991690004, -13.635005929517044, -11.774313157174465, + -11.283682064206602, -11.356417015262384, -12.09816131677201, + -12.47190809717784, -11.88196533019113, -10.465563652238918, + -7.723817421361986, -4.753357765349302, -1.7057525175867843, + 0.4865031791963392, 1.3916829893328402, 0.990418146546834, + -0.43775860867100486, -2.187069753221323, -3.547039222090342, + -3.8075870433192427, -2.7112132290720647, -0.2791222986371222, + 3.0765007519415652 + ], + "pressure:J27:branch14_seg2": [ + -15536.093327393908, -23748.277829455667, -15827.635252397082, + -7111.20167846325, 2371.905304466732, 15578.256537436968, + 34945.68688976438, 61596.11824220035, 100133.957213066, + 145278.58151453294, 203782.31553362941, 263784.0852665221, + 329517.8467971457, 392295.21170026524, 440038.7769948183, + 489599.9434069116, 512348.38916899444, 538588.3851461806, + 540095.9796401272, 526884.9665494137, 506373.86922303855, + 462023.4382747376, 417782.767340725, 352082.63972538034, + 282066.8600371444, 201932.15052300022, 116872.08625810927, + 29938.01077933773, -50383.99809398778, -129161.21243998525, + -190976.62076133446, -250003.75471057626, -294547.246777409, + -323512.963708, -354425.3985631377, -365499.6701065, -387598.8156472617, + -391970.29548901325, -394851.9057139945, -390150.7758853477, + -369043.5771906168, -346201.979415549, -303843.20130139356, + -264275.93959050736, -215740.6048912755, -172029.30789615153, + -130458.41642025052, -94964.65340610917, -69485.83768874992, + -50021.76519571658, -36481.69370116975, -23787.365269730628, + -10540.613015436928, 5694.916195708123, 22714.80449901044, + 42394.84496763029, 57497.30107516019, 70345.88816810118, + 74901.13909114477, 71655.01502166521, 61766.82914413473, + 43677.64317579645, 25857.31368751566, 6104.230229105078, + -9054.556389420084, -21487.159015923033, -29851.564464211096, + -34904.943979694945, -38396.7437560245, -41996.8871523472, + -46526.81672194305, -52586.4212274956, -59449.16531781453, + -65452.46362536874, -70532.87717578332, -71778.23277578132, + -71620.6091830751, -68327.07123466898, -64818.9757873599, + -61431.19022236856, -58874.66892123386, -59099.277417417085, + -59957.63407625975, -62445.859430239914, -63572.11819059077, + -62831.528576129196, -60192.91888093504, -54852.561008504454, + -49149.57330433818, -43309.04954859433, -39320.545750649195, + -37806.00536318883, -38772.48212192519, -41577.08832704386, + -44844.59836682356, -47204.23232246751, -47176.65197140115, + -44527.690057836626, -39095.8115368006, -15536.093327393908 + ], + "flow:branch15_seg0:J28": [ + 0.0033906045474019486, 3.367151272681173, 7.14746265135815, + 11.177707782783825, 15.50222326214119, 20.631686412944163, + 27.78547113912895, 37.56170680066656, 51.72891876751414, + 69.86793659117166, 92.52136971375789, 118.48802854184468, + 145.616738072396, 173.38667100752326, 196.29488851582167, + 216.15733826255254, 228.15639580668469, 234.32530267834636, + 233.2283196913279, 223.19184041179474, 208.99521670939367, + 186.71711082259654, 161.52205378014938, 130.53768300775565, + 95.78482855911835, 58.71728947758096, 19.55097348015098, + -19.68198365491245, -57.362824088549964, -92.90003995558267, + -123.83067253296205, -150.17293538872715, -172.1462918987225, + -187.2086207751664, -200.15469751431473, -207.3925214960429, + -213.6474902196505, -216.3797813253856, -215.23431032483253, + -212.46061185003884, -203.31957545970013, -191.83445240068872, + -173.69094240773705, -151.60545495481273, -126.51758515219136, + -99.47541972862291, -73.64953852979068, -49.43099573625085, + -29.05490573699735, -12.718421127757466, -0.12689921496833784, + 9.820421492568322, 18.176285451980007, 26.43792772116904, + 34.61408092302783, 43.39290006946544, 51.436999636814335, + 57.85503174536102, 61.794841168157866, 61.63818707979792, + 58.20325491374499, 50.68386859039635, 40.986260192077204, + 30.112124085677834, 19.560834472664137, 10.458380080692907, + 3.2300321333131774, -1.9525388877775574, -5.512706757631123, + -8.191305865596153, -10.645889047527351, -13.262362521505777, + -16.27384326516625, -19.163135452151597, -21.813626708736695, + -23.359211385250447, -23.741870996545423, -22.905532824748974, + -21.070177108928814, -18.997704772990826, -16.924572552441507, + -15.605538392159595, -14.978914517804991, -15.028012273199582, + -15.255022793018416, -15.010418581031162, -14.113636154174008, + -12.131017918796408, -9.475979160617259, -6.417962657808705, + -3.6228357530876742, -1.6719001000531484, -0.8647745874719002, + -1.2098589748412365, -2.3154559961625703, -3.597068711201526, + -4.373912172423537, -4.142044240652132, -2.6769743474595966, + 0.0033906045474019486 + ], + "pressure:branch15_seg0:J28": [ + -15823.186867334553, -24444.307915988713, -16816.23208710181, + -8164.780447539242, 1234.5258029200847, 14778.309503448501, + 33912.35940051404, 60698.983813928564, 98394.79947180786, + 142264.1877878783, 200587.48122366544, 258783.9629138229, + 326302.67683220183, 388721.23099520744, 438831.64480906446, + 490728.58855440153, 514690.5998501243, 545841.9444439599, + 548482.6801384637, 540251.1316304724, 519063.55102269514, + 475714.02071693935, 429508.6815353314, 361618.00640156184, + 290605.9583286271, 207370.825285781, 120421.03471467367, + 30392.718887179988, -51468.57487631963, -132016.15666602313, + -193286.95985089353, -254224.11658128098, -297459.5364117878, + -327832.9147036642, -357036.4881536642, -366936.758154786, + -388607.4362539207, -390517.13101040386, -395351.54606642516, + -387912.66680204554, -369164.7179657431, -344503.4730275703, + -302757.39207531605, -266359.8440167015, -218783.29859086432, + -179002.7320836758, -137854.27020443356, -103287.45557660257, + -77486.87216807266, -56729.90326266267, -42018.42628410482, + -28210.68513282314, -13730.631610404582, 2793.6245712333166, + 20230.886689169747, 39667.8940985836, 54216.306330796804, + 67723.06614096767, 72042.50881944112, 70589.95383719851, + 61203.01902959132, 44391.44488832219, 27924.35507254832, 8688.28725415714, + -5637.732547770384, -18167.881691152335, -26837.50793626112, + -32540.805008724805, -36809.45271821556, -41027.35862361945, + -45805.74647847315, -52082.60259250565, -58683.94657220562, + -64687.4710336492, -69513.48401413797, -70692.85323240889, + -70960.19533603724, -67834.00934469703, -65082.391963259994, + -61900.18461278474, -59622.58262769194, -59815.70659105268, + -60339.020610280364, -62637.049394589856, -63397.367716093184, + -62696.18511839038, -60016.92776043158, -54995.0755256288, + -49568.833208506134, -44081.39982996708, -40350.030998788134, + -38844.721268944275, -39597.274213387056, -41965.83450834199, + -44766.98390340611, -46776.70322833208, -46563.800945887495, + -44059.67171977057, -38928.724715515156, -15823.186867334553 + ], + "flow:J28:branch15_seg1": [ + 0.0033906045474019486, 3.367151272681173, 7.14746265135815, + 11.177707782783825, 15.50222326214119, 20.631686412944163, + 27.78547113912895, 37.56170680066656, 51.72891876751414, + 69.86793659117166, 92.52136971375789, 118.48802854184468, + 145.616738072396, 173.38667100752326, 196.29488851582167, + 216.15733826255254, 228.15639580668469, 234.32530267834636, + 233.2283196913279, 223.19184041179474, 208.99521670939367, + 186.71711082259654, 161.52205378014938, 130.53768300775565, + 95.78482855911835, 58.71728947758096, 19.55097348015098, + -19.68198365491245, -57.362824088549964, -92.90003995558267, + -123.83067253296205, -150.17293538872715, -172.1462918987225, + -187.2086207751664, -200.15469751431473, -207.3925214960429, + -213.6474902196505, -216.3797813253856, -215.23431032483253, + -212.46061185003884, -203.31957545970013, -191.83445240068872, + -173.69094240773705, -151.60545495481273, -126.51758515219136, + -99.47541972862291, -73.64953852979068, -49.43099573625085, + -29.05490573699735, -12.718421127757466, -0.12689921496833784, + 9.820421492568322, 18.176285451980007, 26.43792772116904, + 34.61408092302783, 43.39290006946544, 51.436999636814335, + 57.85503174536102, 61.794841168157866, 61.63818707979792, + 58.20325491374499, 50.68386859039635, 40.986260192077204, + 30.112124085677834, 19.560834472664137, 10.458380080692907, + 3.2300321333131774, -1.9525388877775574, -5.512706757631123, + -8.191305865596153, -10.645889047527351, -13.262362521505777, + -16.27384326516625, -19.163135452151597, -21.813626708736695, + -23.359211385250447, -23.741870996545423, -22.905532824748974, + -21.070177108928814, -18.997704772990826, -16.924572552441507, + -15.605538392159595, -14.978914517804991, -15.028012273199582, + -15.255022793018416, -15.010418581031162, -14.113636154174008, + -12.131017918796408, -9.475979160617259, -6.417962657808705, + -3.6228357530876742, -1.6719001000531484, -0.8647745874719002, + -1.2098589748412365, -2.3154559961625703, -3.597068711201526, + -4.373912172423537, -4.142044240652132, -2.6769743474595966, + 0.0033906045474019486 + ], + "pressure:J28:branch15_seg1": [ + -15823.186867334553, -24444.307915988713, -16816.23208710181, + -8164.780447539242, 1234.5258029200847, 14778.309503448501, + 33912.35940051404, 60698.983813928564, 98394.79947180786, + 142264.1877878783, 200587.48122366544, 258783.9629138229, + 326302.67683220183, 388721.23099520744, 438831.64480906446, + 490728.58855440153, 514690.5998501243, 545841.9444439599, + 548482.6801384637, 540251.1316304724, 519063.55102269514, + 475714.02071693935, 429508.6815353314, 361618.00640156184, + 290605.9583286271, 207370.825285781, 120421.03471467367, + 30392.718887179988, -51468.57487631963, -132016.15666602313, + -193286.95985089353, -254224.11658128098, -297459.5364117878, + -327832.9147036642, -357036.4881536642, -366936.758154786, + -388607.4362539207, -390517.13101040386, -395351.54606642516, + -387912.66680204554, -369164.7179657431, -344503.4730275703, + -302757.39207531605, -266359.8440167015, -218783.29859086432, + -179002.7320836758, -137854.27020443356, -103287.45557660257, + -77486.87216807266, -56729.90326266267, -42018.42628410482, + -28210.68513282314, -13730.631610404582, 2793.6245712333166, + 20230.886689169747, 39667.8940985836, 54216.306330796804, + 67723.06614096767, 72042.50881944112, 70589.95383719851, + 61203.01902959132, 44391.44488832219, 27924.35507254832, 8688.28725415714, + -5637.732547770384, -18167.881691152335, -26837.50793626112, + -32540.805008724805, -36809.45271821556, -41027.35862361945, + -45805.74647847315, -52082.60259250565, -58683.94657220562, + -64687.4710336492, -69513.48401413797, -70692.85323240889, + -70960.19533603724, -67834.00934469703, -65082.391963259994, + -61900.18461278474, -59622.58262769194, -59815.70659105268, + -60339.020610280364, -62637.049394589856, -63397.367716093184, + -62696.18511839038, -60016.92776043158, -54995.0755256288, + -49568.833208506134, -44081.39982996708, -40350.030998788134, + -38844.721268944275, -39597.274213387056, -41965.83450834199, + -44766.98390340611, -46776.70322833208, -46563.800945887495, + -44059.67171977057, -38928.724715515156, -15823.186867334553 + ], + "flow:branch15_seg1:J29": [ + -0.016755082069948454, 3.345706508006074, 7.124176490954326, + 11.152495517464276, 15.475255050386206, 20.586129812408025, + 27.727719041441546, 37.464766948688435, 51.610878801296195, + 69.72865007106003, 92.35643701940234, 118.35166776623801, + 145.43971139597616, 173.23657878809803, 196.12267315099407, + 216.0520239995153, 228.09148912870617, 234.31461330146243, + 233.29746496463662, 223.2117901402991, 209.0856408529032, + 186.77043652050205, 161.68008522967668, 130.73686458921242, + 95.9879652712898, 58.943475845745986, 19.758241296885295, + -19.46986921842212, -57.155100683689284, -92.71889641544661, + -123.69629358780789, -150.04314588016632, -172.06843496172732, + -187.08281470834964, -200.0863118462446, -207.2984842093996, + -213.61916289410112, -216.41490389208616, -215.21984116034162, + -212.51614198413847, -203.30734535687392, -191.90825935515716, + -173.79201847255047, -151.72265728206858, -126.67643805145664, + -99.58719823674879, -73.74566319101706, -49.49781703631753, + -29.10942544176185, -12.767201463763088, -0.17422712229750328, + 9.783042122781445, 18.128578489055826, 26.394110924598834, + 34.55688233126349, 43.34361392121704, 51.40625886402621, + 57.82858193932242, 61.80815242502691, 61.64724717240858, + 58.238521784323204, 50.72275058353671, 41.0350702152829, 30.1650219936353, + 19.60279860614309, 10.486648740940923, 3.246610555790875, + -1.9430151726511016, -5.503491590424299, -8.17816959210391, + -10.631968198495994, -13.242179087500796, -16.2580311602231, + -19.14485759884983, -21.805094224587982, -23.358028242237832, + -23.74605827573243, -22.91976943265718, -21.07869636947755, + -19.00440110925786, -16.923124177052767, -15.60239104866599, + -14.974277818525339, -15.02503326519782, -15.257629500056039, + -15.01375592880806, -14.12449092369842, -12.141708390298334, + -9.492225060300855, -6.432127097690886, -3.6314301179389785, + -1.6733776710467316, -0.8589634204392537, -1.2011337694024569, + -2.3077783477643177, -3.5941241686999437, -4.378695953249099, + -4.153591732273369, -2.6942191856743336, -0.016755082069948454 + ], + "pressure:branch15_seg1:J29": [ + -18068.087890740437, -27441.77172477306, -20268.866795580845, + -12194.554450898364, -3391.6117189478236, 8522.667729075318, + 25317.387645161525, 48473.46591055128, 81289.49676778857, + 120394.75341574514, 171894.91586828398, 225605.05166420434, + 286004.68320035253, 343833.70172918256, 391126.68079749, + 438532.1436629695, 463160.2280745734, 490781.1071989617, + 496381.0223428554, 489499.3505079765, 472443.2049101037, + 436870.2456829701, 398647.5213376821, 343278.6375006667, + 283909.5331744283, 215141.96466174079, 142049.70358582243, + 65965.43700516906, -4884.740676259229, -75354.58262110747, + -132149.4187033861, -187990.36717707085, -231467.79478553854, + -263593.9597679929, -294658.3410894318, -310451.1070003679, + -334756.4374865699, -344710.44149970065, -353869.61498008744, + -354809.9676564486, -344176.2962350158, -328281.4839417433, + -296953.63527059474, -266810.05790576665, -226797.18960961493, + -189353.57986580388, -150528.13995609502, -116113.2079008753, + -88830.26211068754, -66555.41962567554, -50101.95719367496, + -35359.59384291642, -20959.90762527738, -5059.990530224522, + 11495.813371117443, 29912.63294960175, 44918.64000612132, + 58560.3783750908, 65212.48562217409, 65686.08713331213, + 59214.246629498375, 45545.6864850928, 30919.230510511774, + 13502.806009004556, -754.0850824713565, -13388.057881878545, + -22722.47746207565, -29211.567780531273, -33963.33502125458, + -38226.12713792983, -42788.87498570481, -48433.96770404925, + -54628.79743028106, -60424.02203742613, -65439.67066654522, + -67524.07419860759, -68504.21670728434, -66611.90230815814, + -64317.78276528231, -61527.943520577086, -59245.06599550846, + -58940.2909083894, -59160.289245270804, -60988.72389446323, + -61943.76520397581, -61652.452517537145, -59730.64733106462, + -55640.55721226398, -50885.40684470636, -45763.938650140655, + -41830.8130490931, -39726.87430203517, -39654.94226699761, + -41261.98448810051, -43613.812695320354, -45619.74235512165, + -45957.573990514305, -44291.464412130066, -40221.786932622395, + -18068.087890740437 + ], + "flow:J29:branch15_seg2": [ + -0.016755082069948454, 3.345706508006074, 7.124176490954326, + 11.152495517464276, 15.475255050386206, 20.586129812408025, + 27.727719041441546, 37.464766948688435, 51.610878801296195, + 69.72865007106003, 92.35643701940234, 118.35166776623801, + 145.43971139597616, 173.23657878809803, 196.12267315099407, + 216.0520239995153, 228.09148912870617, 234.31461330146243, + 233.29746496463662, 223.2117901402991, 209.0856408529032, + 186.77043652050205, 161.68008522967668, 130.73686458921242, + 95.9879652712898, 58.943475845745986, 19.758241296885295, + -19.46986921842212, -57.155100683689284, -92.71889641544661, + -123.69629358780789, -150.04314588016632, -172.06843496172732, + -187.08281470834964, -200.0863118462446, -207.2984842093996, + -213.61916289410112, -216.41490389208616, -215.21984116034162, + -212.51614198413847, -203.30734535687392, -191.90825935515716, + -173.79201847255047, -151.72265728206858, -126.67643805145664, + -99.58719823674879, -73.74566319101706, -49.49781703631753, + -29.10942544176185, -12.767201463763088, -0.17422712229750328, + 9.783042122781445, 18.128578489055826, 26.394110924598834, + 34.55688233126349, 43.34361392121704, 51.40625886402621, + 57.82858193932242, 61.80815242502691, 61.64724717240858, + 58.238521784323204, 50.72275058353671, 41.0350702152829, 30.1650219936353, + 19.60279860614309, 10.486648740940923, 3.246610555790875, + -1.9430151726511016, -5.503491590424299, -8.17816959210391, + -10.631968198495994, -13.242179087500796, -16.2580311602231, + -19.14485759884983, -21.805094224587982, -23.358028242237832, + -23.74605827573243, -22.91976943265718, -21.07869636947755, + -19.00440110925786, -16.923124177052767, -15.60239104866599, + -14.974277818525339, -15.02503326519782, -15.257629500056039, + -15.01375592880806, -14.12449092369842, -12.141708390298334, + -9.492225060300855, -6.432127097690886, -3.6314301179389785, + -1.6733776710467316, -0.8589634204392537, -1.2011337694024569, + -2.3077783477643177, -3.5941241686999437, -4.378695953249099, + -4.153591732273369, -2.6942191856743336, -0.016755082069948454 + ], + "pressure:J29:branch15_seg2": [ + -18068.087890740437, -27441.77172477306, -20268.866795580845, + -12194.554450898364, -3391.6117189478236, 8522.667729075318, + 25317.387645161525, 48473.46591055128, 81289.49676778857, + 120394.75341574514, 171894.91586828398, 225605.05166420434, + 286004.68320035253, 343833.70172918256, 391126.68079749, + 438532.1436629695, 463160.2280745734, 490781.1071989617, + 496381.0223428554, 489499.3505079765, 472443.2049101037, + 436870.2456829701, 398647.5213376821, 343278.6375006667, + 283909.5331744283, 215141.96466174079, 142049.70358582243, + 65965.43700516906, -4884.740676259229, -75354.58262110747, + -132149.4187033861, -187990.36717707085, -231467.79478553854, + -263593.9597679929, -294658.3410894318, -310451.1070003679, + -334756.4374865699, -344710.44149970065, -353869.61498008744, + -354809.9676564486, -344176.2962350158, -328281.4839417433, + -296953.63527059474, -266810.05790576665, -226797.18960961493, + -189353.57986580388, -150528.13995609502, -116113.2079008753, + -88830.26211068754, -66555.41962567554, -50101.95719367496, + -35359.59384291642, -20959.90762527738, -5059.990530224522, + 11495.813371117443, 29912.63294960175, 44918.64000612132, + 58560.3783750908, 65212.48562217409, 65686.08713331213, + 59214.246629498375, 45545.6864850928, 30919.230510511774, + 13502.806009004556, -754.0850824713565, -13388.057881878545, + -22722.47746207565, -29211.567780531273, -33963.33502125458, + -38226.12713792983, -42788.87498570481, -48433.96770404925, + -54628.79743028106, -60424.02203742613, -65439.67066654522, + -67524.07419860759, -68504.21670728434, -66611.90230815814, + -64317.78276528231, -61527.943520577086, -59245.06599550846, + -58940.2909083894, -59160.289245270804, -60988.72389446323, + -61943.76520397581, -61652.452517537145, -59730.64733106462, + -55640.55721226398, -50885.40684470636, -45763.938650140655, + -41830.8130490931, -39726.87430203517, -39654.94226699761, + -41261.98448810051, -43613.812695320354, -45619.74235512165, + -45957.573990514305, -44291.464412130066, -40221.786932622395, + -18068.087890740437 + ], + "flow:INFLOW:branch0_seg0": [ + 20.124757211774295, 39.67142307930636, 62.72540053976514, + 88.57549017902605, 119.78152172225221, 163.6964438370627, + 222.8726011754913, 305.2419616878857, 407.43659171298196, + 534.043883387541, 683.4871189302785, 847.588628995997, 1017.225019261191, + 1106.5433377227075, 1295.1066180446333, 1389.2851490633516, + 1445.9887350757238, 1462.0794378376906, 1439.4278818604832, + 1366.522589400432, 1186.467973515935, 1099.7853526367217, + 915.3610897402733, 704.2616197963754, 474.71058786130965, + 224.9187079853196, -37.447571657237035, -304.3335010604637, + -551.2050714009936, -770.6919669404163, -950.5542979737963, + -1096.9450431491355, -1171.133080465963, -1295.7427572644874, + -1321.30892394079, -1384.3135332119973, -1393.508000940604, + -1380.9207808255205, -1346.712181424987, -1277.181945851917, + -1203.9468124365364, -1089.4583652582246, -948.8902905055746, + -786.4000039637028, -625.1525921662812, -472.2349056922629, + -316.73690416713043, -209.46149967438768, -106.74099597242359, + -22.156491950463135, 45.9606713138445, 103.88548376144337, + 155.89607892492944, 197.3467455329063, 257.0763926004194, + 304.0293120781809, 343.7996356906697, 370.37999730961417, + 377.87851668975327, 361.52923091021455, 323.0535962295179, + 277.19559689696126, 219.70179997988893, 160.43344638201626, + 102.43057579006906, 53.7627799765748, 18.235176549479636, + -8.770251380460525, -29.83002605444341, -48.039460077721046, + -65.66794120777351, -84.68293995644254, -101.7618132551415, + -119.11209663809147, -129.39413350041292, -132.4952023067848, + -129.32997063434402, -121.38645611372333, -110.96682246905641, + -95.55941097459194, -92.81601474569374, -88.88026388876992, + -87.44508841661329, -87.18035987749828, -85.49292485678602, + -79.8031873188606, -66.26421744286002, -55.75549547734092, + -38.990313273339964, -23.362076127668125, -11.785962394212714, + -5.9065668550558525, -5.825981266091555, -9.758632140607522, + -15.329341796522783, -19.436491925664395, -18.396033489219512, + -10.852475892946806, 2.297409555986385, 20.124757211774295 + ], + "pressure:INFLOW:branch0_seg0": [ + -8059.653650761236, -15532.667005842952, -7086.094598304028, + 2287.2599395345683, 13169.86546640812, 31417.48585592613, + 55338.511475276966, 93790.97488261668, 142766.0590717582, + 198355.1329878568, 266288.28264551546, 328642.10750471795, + 399967.5376372683, 454526.6778539261, 504244.6283643925, + 542006.9512722688, 555251.9128007265, 564305.6931409306, + 539156.3342304847, 525654.8254032349, 478423.0228581888, + 432845.2260245338, 369620.40342008375, 286350.1176265091, + 205162.8976936748, 111424.58251990205, 20234.62776311135, + -70112.60839691796, -151302.2678458563, -223309.38751349424, + -274962.52843779046, -322672.68505755544, -342617.31166444754, + -374840.57413351117, -390601.69879662915, -398985.45550928276, + -408211.9238206605, -395375.3616258205, -397083.7911636231, + -366580.03812706604, -349060.7738811364, -312421.42181977857, + -258139.05726811025, -211820.8214350068, -156777.1694855617, + -116472.20893541342, -79739.95993886476, -53946.18055290485, + -37543.92478031083, -25992.107919818365, -16886.76482983338, + -7384.508557041272, 6976.719669635928, 22846.153046500334, + 42648.7344981394, 61286.713150662414, 72500.97049127633, + 80805.83680409202, 74822.78238112878, 66312.53388438652, + 48539.674214794984, 25307.39819594739, 4686.858344170608, + -14829.834359228242, -27872.561793567143, -36745.85233096932, + -40539.58660696862, -42366.77377384514, -44079.78562429113, + -47561.898236981186, -52540.76750688479, -59917.26955061439, + -66016.61984871876, -72296.78604370334, -75112.46393781288, + -73563.76042827703, -70630.29768479484, -64740.91396449472, + -60804.52768104731, -57422.089537040774, -56926.317158010475, + -58789.695149175, -61092.61720600187, -63681.17485110289, + -63161.86696348386, -61449.21200650306, -55924.469897620525, + -49624.11471936019, -42928.21739613701, -37503.584054428116, + -35406.82531338846, -36275.63823149241, -39824.80281868, + -44328.784845312155, -47883.128901581236, -49116.35722580916, + -46776.775273901265, -41297.56983916956, -33379.56494269341, + -8059.653650761236 + ], + "flow:branch4_seg2:RCR_0": [ + -0.8762124901026458, 0.1824259285687925, 1.5793394235606453, + 3.1144287073980155, 4.853030869870242, 6.76912115854196, + 9.221649628266517, 12.612682802754128, 17.196943374103924, + 23.753333774448727, 31.715498788576422, 41.91367438037461, + 53.00137691365431, 65.01528314753318, 77.07653890734537, + 86.98600261749677, 96.62606991691106, 101.912058941451, + 106.03504022035226, 105.93740369706185, 102.4488035250689, + 97.18407311401265, 87.55387073235441, 77.16553270932411, + 63.16096681087691, 47.90694926238158, 31.259129714837098, + 13.593811312032027, -4.063508192030396, -21.077912928206928, + -37.39036403771943, -51.34369302220683, -63.924548743351465, + -74.16597433187684, -81.61034674148814, -88.60884436576676, + -92.27297166869243, -96.43673190457451, -97.80492618295257, + -98.11950379085772, -97.26245073058952, -93.4447017363399, + -89.07794479681601, -80.99476345142321, -72.29944086599245, + -61.561120241446574, -50.45412220223659, -39.56580529527991, + -29.02283283124844, -20.174913155392954, -12.381059656215488, + -6.037805680641012, -0.5687849787806976, 4.305585288029873, + 9.010591993652856, 13.467888559510383, 18.066034100028382, + 21.891088437541807, 25.119518759506995, 26.980970760526276, + 27.231099414118766, 26.15186939027345, 23.212044204908473, + 19.702186696821283, 15.35673207658774, 11.220403806403144, + 7.4248499517413915, 4.218641329975779, 1.754104603056053, + -0.2230464659083692, -1.8873422053892115, -3.4240856571304903, + -4.982814533661537, -6.564128422058041, -7.980682365994577, + -9.249442090475638, -9.927204025924542, -10.253335105116937, + -9.992146641646972, -9.438132491399307, -8.768680636120918, + -8.050741317584382, -7.6815126025934815, -7.4073562092774, + -7.413239680409957, -7.344983281296909, -7.081078321426626, + -6.580746973413919, -5.636906566663684, -4.540783843696031, + -3.2822135464108775, -2.1941292325846233, -1.4319339108214706, + -1.0868796401021457, -1.148429229981457, -1.4449604827984714, + -1.7779714087478309, -1.884596722725446, -1.6304949477405144, + -0.8762124901026458 + ], + "pressure:branch4_seg2:RCR_0": [ + -25020.36703610804, -37323.742365641316, -32069.063046740393, + -26125.794158139164, -19245.23533345682, -11491.649944784449, + -1571.4199334486539, 12032.14320574145, 30343.06560426682, + 56316.987297166364, 88209.18055441696, 129154.4168780977, + 174708.86195301675, 225055.04328705044, 277264.8518684992, + 323433.5799858053, 369980.10670105467, 402312.1682176546, + 431116.7891092689, 445421.97099383816, 447475.5714924089, + 442667.70407691656, 421428.5890668477, 396058.945231147, + 356259.2808164857, 309933.0656942144, 256464.30769648874, + 196955.30035611094, 134968.13143098692, 72759.27595140591, + 10663.098615145347, -45322.341957324155, -98311.59828321435, + -144723.17668366563, -182509.64646570492, -219707.85208699235, + -245916.62783976804, -274321.616908739, -293292.1307675885, + -308551.1397066595, -319658.12666047126, -319943.50023914705, + -317689.79347147746, -301475.54987805564, -281821.8039965206, + -253623.34545731652, -222476.92560685807, -190519.36844365278, + -158187.03492474585, -130371.17291200858, -105039.97473948277, + -83760.31472744292, -64698.676021081876, -46990.648596519735, + -29198.99313825647, -11638.467415683042, 7046.480629937082, + 23618.424274574107, 38574.55978367748, 49115.03338197433, + 54131.84605798876, 54438.05876096864, 47924.20998952361, + 38929.29972796635, 26440.00880024484, 14047.94017204536, + 2275.871264842636, -7947.817639365218, -15986.850052646947, + -22640.01950838115, -28457.4763159171, -34055.24651219851, + -39943.616458263234, -46133.92456756596, -51954.34193695021, + -57447.92124205128, -61009.82047664, -63402.88477451353, + -63746.04594902923, -62991.154656138875, -61742.954030271256, + -60214.798747221874, -59820.53296713977, -59708.08355808605, + -60547.53087933289, -61123.56582898324, -60985.8540762144, + -59967.88014451407, -57291.158188007226, -53934.05188790367, + -49836.884817328326, -46163.79605474377, -43496.67952806102, + -42206.96357192422, -42319.441121137745, -43280.536151444554, + -44416.44771563279, -44796.00771147418, -43905.237640779415, + -25020.36703610804 + ], + "flow:branch6_seg2:RCR_1": [ + 1.7021226557118838, 4.982308274191867, 8.339012385980032, + 11.78784206839475, 15.491280425026286, 19.905909054446443, + 26.619642361344297, 35.66240623328577, 49.386243584221404, + 66.48750634698345, 87.60168538780287, 111.97824388407722, + 135.78446492978355, 161.26587939252, 180.0588385271688, 197.9098202472712, + 207.5643083346078, 212.30344050600996, 211.10969075361484, + 199.6116834454549, 186.6059972384661, 163.51565729588472, + 139.8128201501627, 108.61277104051604, 73.61698821223315, + 36.39196934993844, -3.300375748466593, -42.2323392070556, + -79.25694285169357, -113.25445667884847, -142.02518136681073, + -164.4950635539864, -182.94586717074205, -192.11359161946922, + -200.99389241791224, -202.33485129193286, -204.34573772269746, + -202.48134448096542, -195.65612425922242, -189.17101454173832, + -174.314829900896, -160.45357658815863, -138.77125702799648, + -115.36210875453602, -90.71107983798935, -64.77409416383584, + -42.67431624038373, -22.287433010099566, -7.109258539740134, + 4.252366517262693, 12.403448542274804, 18.685724121136758, + 24.151411234258475, 30.372192113995332, 36.5587816647316, + 43.88000060666324, 50.20097318717545, 54.64495757521456, + 57.02294716751879, 54.765295639685036, 50.43993054480824, + 41.92438815906573, 32.461003771602776, 22.436082596910346, + 13.170243717419124, 5.845145109756198, 0.3316720632728334, + -3.197715698895673, -5.395323846452487, -7.149914270151531, + -9.014588380805092, -11.208403042251476, -13.972343426744487, + -16.371513290377557, -18.61747806024857, -19.491440818574485, + -19.249650747554906, -17.99889126987646, -15.780409942483, + -13.815982460156336, -11.891185030056093, -11.056127345461977, + -10.868061886894166, -11.248764058276796, -11.670667306726346, + -11.323356078471553, -10.355357303798227, -8.204606090662073, + -5.661389817489987, -2.849529461920062, -0.5608897864770083, + 0.7527498109525637, 0.8899126941401163, -0.004914066255321926, + -1.4215278676275174, -2.7463091939655095, -3.3323401673891926, + -2.774471568302521, -1.0362366258242883, 1.7021226557118838 + ], + "pressure:branch6_seg2:RCR_1": [ + -19639.384175259256, -28639.09192388271, -20831.69645920255, + -12554.249617726016, -3450.4524150055713, 7457.442285679113, + 23612.52182404421, 45267.89634925401, 77615.72574359199, + 118298.18559596449, 168895.0938201331, 228212.0214302142, + 288279.9525446516, 353911.077565814, 407422.75862941757, + 460388.82091581135, 497418.5937229342, 524565.9478309831, + 539490.4596198712, 532218.9875531257, 520709.57157439156, + 486589.38502032455, 449072.9283278952, 393575.845198525, + 327238.0394278651, 253202.12765986676, 170735.30336805634, + 86544.37757257694, 3106.1412288421284, -76954.1741946334, + -148767.27292106906, -209455.11257161578, -263467.248779948, + -299178.24194910727, -334931.21630032425, -355351.2619783708, + -377085.7115776749, -390718.08944871713, -393438.69401828514, + -396271.7784150359, -380655.6793633339, -365806.2941258275, + -333097.32785787503, -294719.98237939633, -251699.06085459312, + -203746.74632212368, -161772.0978412642, -121532.81158124859, + -90639.14749970438, -66576.17626689511, -48383.19161574147, + -33496.46656321327, -19835.67258112576, -4131.568070483775, + 12013.27916684699, 31067.10271831966, 48609.332795581104, + 62650.17220951857, 72667.06384422332, 72981.39842895254, + 68689.10890964248, 55091.09071458393, 38708.59516338908, + 20315.364123380088, 2647.8310297155026, -11673.22167981333, + -22770.814978974522, -30108.424164895365, -34908.639165153625, + -38945.32429348035, -43360.68233819631, -48627.1266637253, + -55289.80839785657, -61407.48461193287, -67396.71121986215, + -70657.42485533252, -71600.22207805833, -70374.51175138053, + -66962.97177972815, -63901.84436414296, -60749.17637646535, + -59742.97340289436, -60042.728637909124, -61526.109727145515, + -63134.747825911225, -63137.75640416538, -61791.14949171276, + -57844.83610005315, -52873.17324354087, -47111.177195735334, + -42216.82699862222, -39202.38712266146, -38581.403632030844, + -40148.32522149901, -42906.81577435186, -45594.14742535025, + -46827.12609365338, -45676.57855054737, -41969.235785877856, + -19639.384175259256 + ], + "flow:branch8_seg2:RCR_2": [ + -0.5153764396020473, 0.7124076695756563, 2.264550373156312, + 3.945181688401473, 5.821694695098625, 7.884235147161941, + 10.474891410949917, 14.180147761645756, 19.14244554859163, + 26.384059128020652, 35.21948039329668, 46.40714686609779, + 58.87188047699997, 72.01671382393441, 85.73070651505948, + 96.78252597080156, 107.7975214343347, 114.08436526447143, + 118.73623006108384, 119.36829808862251, 115.36201743339885, + 110.147232217715, 99.19033012036721, 87.29572823985934, 71.11264412015855, + 52.80664999334956, 33.22638849140079, 11.91369112640897, + -9.384969934186799, -30.007685278919766, -49.73824194746043, + -66.47057143312763, -81.08408494032349, -93.02499685987621, + -100.9409513547285, -108.51264435983205, -111.6144425238464, + -114.97975452934274, -115.35650743373377, -113.65606463079212, + -111.54561879619666, -105.25577453820286, -98.7913970715856, + -88.16041350456962, -76.56420206950797, -63.69314092285201, + -50.14056873130993, -37.730716439478385, -25.75842998510518, + -15.9715821773756, -7.741137154517274, -1.1524043680674285, + 4.2235931517843195, 8.991457076386387, 13.658780763837111, + 18.06399401611812, 22.706652214376014, 26.54671026886801, + 29.590658912229852, 31.36975398763044, 31.157702063220032, + 29.689042425526267, 26.09834571166327, 21.857959385723355, + 16.900199939416797, 12.111810824108305, 7.956700863219488, + 4.436615088858296, 1.8106716561284786, -0.2517095323233497, + -1.9891157283994245, -3.574738813353339, -5.1957888778961205, + -6.899798438059987, -8.395452644233513, -9.755434577479498, + -10.43399947309159, -10.655842753919842, -10.292533314661922, + -9.528734664310852, -8.744146896640125, -7.887907341004196, + -7.459514904346839, -7.181892915899548, -7.187276741460565, + -7.178004371073618, -6.878741018687338, -6.353821492417072, + -5.288394554082516, -4.05311867215412, -2.6687230770907706, + -1.4666160963072363, -0.693610532619529, -0.3894456365978247, + -0.5544512799278142, -0.975351536359624, -1.4141735094396832, + -1.58433585284921, -1.3150413497010145, -0.5153764396020473 + ], + "pressure:branch8_seg2:RCR_2": [ + -25098.19104148333, -36874.28564463153, -30988.21472863253, + -24425.558967787423, -16933.076317180195, -8517.29016564184, + 2056.724836253391, 16963.629486599224, 36853.95246371391, + 65557.64138613729, 100954.57284163778, 145940.34548129002, + 197069.97153960937, 252305.09860634743, 311425.0727329365, + 362916.6992419537, 415739.4501225894, 453220.6363367787, + 485598.63811291085, 504277.8635851861, 506340.90285047673, + 503461.4648095867, 479235.2209488846, 450019.4394273413, + 403774.4463480728, 347560.46231825533, 284200.21733644267, + 211814.5783223547, 136448.59234504277, 60469.93855658149, + -15210.443160893019, -82977.68855930796, -145457.69030618898, + -200458.15264641846, -242673.89578641244, -284689.92038713093, + -311738.86773965653, -340024.15752507135, -358083.82796574745, + -368617.85786144965, -377417.95699810074, -370849.7336014371, + -362695.39170015673, -338684.99150609085, -309589.7972529272, + -274298.6027495683, -234625.26630397906, -197082.34925514448, + -159286.32495989196, -127551.52450182296, -99987.52635712427, + -77102.88589947113, -57616.14725339542, -39548.11659003485, + -21169.309660308547, -3085.3858201306616, 16451.222441715636, + 33774.330430410664, 48765.69528832385, 59678.684638849365, + 63692.444774925614, 63177.258855144864, 54849.61430089207, + 43651.13072649859, 29282.963786606742, 14779.844838273782, + 1847.95143383322, -9423.0712971214, -18011.595693552335, + -24959.840170940293, -31038.57174935513, -36820.51280035853, + -42948.84435058929, -49604.88934089561, -55752.91274049336, + -61626.19578380732, -65257.88873954339, -67342.41890054606, + -67371.61622909259, -65902.01577129737, -64245.91790056214, + -62211.500527831624, -61571.440872074716, -61408.1207412529, + -62207.252821366405, -62957.15909327351, -62665.01778126755, + -61523.779503177204, -58374.56926359484, -54463.37001182733, + -49841.45024951671, -45668.28999663402, -42854.680936113575, + -41602.86493694172, -41983.71406453683, -43304.835881016435, + -44753.30737313999, -45310.07829608474, -44323.35482920887, + -25098.19104148333 + ], + "flow:branch9_seg2:RCR_3": [ + 0.6073149361817964, 4.127931055032544, 8.037700110664307, + 12.205699180614792, 16.68485131957758, 21.917421752995097, + 29.299467295139017, 39.31281930396866, 54.05546911010082, + 73.04103784799354, 96.84103561121336, 124.6724371444114, + 153.65358418897705, 184.109050348278, 209.71891231124437, + 233.15404786999773, 248.60224629681753, 258.02550734746075, + 259.802338556718, 251.01339158013144, 237.6214896380185, + 214.13631708626673, 187.20625875330506, 152.71578211920541, + 112.75394851794812, 69.46692181735281, 22.988497931372763, + -23.844220198385372, -69.1311655777881, -111.90706622608428, + -149.27059500637301, -180.42442912748402, -206.0553076457275, + -222.6682837885482, -236.4678566706797, -242.80774080859905, + -247.7810792532469, -248.50615808014783, -243.9935985628613, + -238.03014870405585, -224.54229100323147, -209.41486599770684, + -187.16749636003442, -160.98314482777008, -132.333779673567, + -101.73589067054664, -73.20800397750558, -46.87051248109808, + -25.135424023251865, -7.995822572084018, 5.013988691119142, + 15.204679398305386, 23.585506054920206, 31.92874227714029, + 40.10050581084295, 49.046825198487866, 57.33596397411274, + 63.87340173242794, 68.06174942524923, 67.78467905093326, 64.2519659597634, + 56.30009656143729, 46.060319738359446, 34.513763168387115, + 23.156700786639878, 13.275004227437462, 5.37794384705206, + -0.31932331809216297, -4.23890207014792, -7.1735787794892225, + -9.860605962572256, -12.664231018056084, -15.9180429864589, + -18.99706714678258, -21.872441975996043, -23.558021304592895, + -23.982483857067294, -23.142716983789217, -21.153574662363773, + -18.93091568012157, -16.67850850529103, -15.265874651729957, + -14.591782126465635, -14.64522310136811, -14.908290440382856, + -14.65794537613556, -13.756981897661943, -11.680547213710206, + -8.938994957601068, -5.744122772670225, -2.8115510969949735, + -0.7614988105056019, 0.08580714421357055, -0.2992402239576827, + -1.4997689134144534, -2.900162711595624, -3.78402486706776, + -3.6008107119939905, -2.1201735097144976, 0.6073149361817964 + ], + "pressure:branch9_seg2:RCR_3": [ + -21874.499729280193, -32056.035834993494, -25041.52375269049, + -17346.022619938023, -8865.053705474385, 1146.7644048317013, + 15059.538842660018, 33810.257026433945, 61054.3015741249, + 96303.42516824465, 140753.62220597523, 193455.65752167086, + 249832.48417444076, 310546.0683631363, 365176.65167934936, + 417784.67293211306, 458629.4563391116, 490316.31463861157, + 509863.25559071475, 511848.1736840828, 505523.77447364177, + 481471.28377244185, 450036.16701820376, 404194.58247556584, + 346892.03533113684, 281397.4917433796, 207705.3915757595, + 130354.22116487434, 52463.00062099605, -24207.419574382802, + -94695.24455803141, -157232.3968391361, -212603.66950759015, + -254597.95910358333, -292909.92343412933, -319667.83130332304, + -344414.0257877213, -362351.7843139496, -371488.7688116013, + -377850.1269217303, -371220.6892260326, -360894.9653060477, + -337664.28797824524, -306298.3608859635, -269057.0761425627, + -226589.5344556819, -185518.41502072723, -146161.17719534502, + -112682.2934802205, -85393.39154946356, -63824.91126175528, + -46092.4644577171, -30711.27034251044, -14856.320452774793, + 1247.514535109649, 19157.40834284365, 36555.9012327005, 51559.50289256334, + 63081.637476730495, 67427.20709442771, 66327.03340768273, + 57625.34136175785, 44556.57342981034, 28618.36298081543, + 12196.851425758641, -2533.8793720959084, -14630.419805845224, + -23597.141533804337, -29985.105753734035, -34992.14946088587, + -39777.84815411341, -44928.17315455137, -51009.158224961066, + -57010.61427671735, -62873.24237720499, -66947.02245761608, + -69024.33720102586, -69024.84119762287, -67044.26032335615, + -64538.141439685576, -61826.86684418179, -60352.07908316073, + -60008.02325216986, -60819.81133325078, -61984.00677675182, + -62309.89559332374, -61536.98731523662, -58749.618841525815, + -54714.25065629896, -49739.36096689944, -44983.466501626244, + -41497.41953665302, -39874.20246571066, -40245.008927485294, + -42000.00026295742, -44170.53807394577, -45580.16037926896, + -45277.12864507256, -42808.12420220245, -21874.499729280193 + ], + "flow:branch10_seg2:RCR_4": [ + 0.2869279694095758, 1.0294246086586747, 1.8289382425007052, + 2.5956999754762866, 3.5063923891070536, 4.4835198271810155, + 6.056378659180264, 8.190150342087257, 11.261784852252614, + 15.491270739773508, 20.089190146305434, 26.337093842704792, + 31.703253801566962, 38.30155439269162, 43.410294050301, 47.20036940135234, + 51.33315306647219, 51.40448179504562, 53.12016530097473, + 50.231607815871214, 47.63598926758066, 43.157235494023624, + 36.664690164601524, 30.398200960725987, 21.1867139779559, + 12.890116439780474, 2.9681631945060905, -6.557412882171443, + -15.926140789970521, -24.258796481529025, -32.0726170618464, + -37.37652236727054, -42.951489872554475, -45.695916222062365, + -47.84371884305568, -49.68051780868965, -49.164732835654995, + -50.460455568752025, -48.24681566379492, -47.621629970563866, + -44.56385142767873, -40.951006171826265, -36.94100900836102, + -30.39170772850396, -25.699099297098673, -18.80634111237124, + -13.900057264154947, -8.763591624856241, -4.593513254079372, + -1.8109782804050587, 0.7934064410078854, 2.5303084952149417, + 4.278173452504912, 6.054875856589869, 7.902836088278537, + 9.743929399009213, 11.711207035398106, 12.754897675280333, + 13.813873255377132, 13.420193182459473, 12.65462923859368, + 11.009894281413208, 8.590581576728136, 6.6371366784022925, + 4.1560370546781105, 2.5644514697002845, 1.0639493380967668, + 0.07198681876566908, -0.5779549225320725, -1.1625721184551538, + -1.740680494158712, -2.3572090810433632, -3.1228780975362795, + -3.7976286704691717, -4.365087377526544, -4.7467728512867815, + -4.637991612411909, -4.548687955251589, -3.9790330579580817, + -3.625121191447046, -3.1991832510625104, -2.922742804755311, + -2.975264050955937, -2.930689190617078, -3.1176510195880094, + -2.9853294481289336, -2.758090626086969, -2.3011816345994154, + -1.6283984123002715, -1.0190978115014055, -0.40090561120836055, + -0.08214480122700474, 0.010500278610260802, -0.14998464146768656, + -0.4453416974807807, -0.7211421871813417, -0.8651369048344142, + -0.7243634492031165, -0.35288377818390076, 0.2869279694095758 + ], + "pressure:branch10_seg2:RCR_4": [ + -20773.228266794667, -30594.286060485483, -23365.48709252652, + -16152.086345250897, -7497.120949918909, 1999.4210773778805, + 16735.32693919447, 36652.68588996815, 65004.79235961398, + 104002.52354719784, 147407.37438343102, 205991.71605899278, + 259321.85497813957, 324501.196028696, 379552.6048673541, + 425108.37810483284, 474833.4904819811, 491974.76740501146, + 522747.144771164, 515771.43527419167, 509984.230606945, 487867.4109907607, + 447197.3061923882, 406417.580055254, 338928.2660967594, 275928.292366851, + 196717.62879913335, 117445.86636294468, 36385.13089586195, + -39136.62235831162, -113082.48422758753, -168689.97561925265, + -228184.9524034382, -265993.4462916197, -299478.6980205289, + -331197.6684680322, -343677.2827603516, -371084.0898450881, + -369627.5521255432, -380394.5510460605, -370884.2108680128, + -355389.71284387144, -335578.80801659886, -293119.8936019791, + -263865.22484766576, -214774.7844848582, -179752.72295460594, + -141272.31746674594, -109028.17578643464, -86972.3130050178, + -65455.62922706097, -50302.219589270084, -34488.94851860231, + -17893.47788763165, -112.80040227182715, 18175.882303864866, + 38135.449340632156, 51046.8608904101, 64383.51849922608, + 66024.80276867324, 64345.88120326627, 55152.332053916965, + 38897.93278043809, 25714.914138292683, 7472.086547787922, + -4225.065474941307, -15688.268035965539, -23435.233573343365, + -28656.540187693383, -33550.308904888174, -38577.38448530658, + -44115.58865326066, -51085.738254618554, -57563.11681599546, + -63351.07593725922, -67796.595090257, -68275.55028838197, + -68871.27639431655, -65444.70164099315, -63593.855513798, + -61037.58184724094, -59558.892342417916, -60731.344959674, + -61103.322156508366, -63384.982990573466, -63077.40912281907, + -61923.19572658, -58798.362028518015, -53707.69562241167, + -48930.80093212997, -43865.994808284006, -41082.77118033766, + -40075.74459853276, -41141.15404192597, -43387.2440634492, + -45571.92362237816, -46756.789404317846, -45626.1206408366, + -42530.78615225854, -20773.228266794667 + ], + "flow:branch11_seg0:RCR_5": [ + 1.2595860149773748, 2.516815503620884, 3.6747910447460232, + 4.919511438973296, 6.250991461009387, 8.050361164489686, + 10.905642130952149, 14.715130714997118, 20.525559498227555, + 27.217152683203178, 35.71140913457239, 44.56471089818882, + 53.40453136957669, 62.188334708393924, 67.79477552113306, + 74.04373333992952, 75.37850700969595, 77.0458894008406, 74.80784182419373, + 69.33741836086041, 64.10234307884741, 53.96160596631757, + 44.96952112511572, 32.111321598351005, 18.504974851770466, + 4.310334396100056, -10.584394701766042, -24.928653178619175, + -37.667712812763575, -49.6453601613069, -58.269452968072684, + -65.44283015897243, -70.31954557356123, -71.69233246840946, + -74.2016192369093, -72.56162459955709, -73.26513761489271, + -70.93676012237152, -67.55093906164393, -64.47569195605018, + -57.690045955697315, -52.071057423064396, -42.96876247962187, + -34.36454664432685, -25.239282917568197, -16.660880317963365, + -9.400180722656012, -3.2738774370726316, 0.9424196912069275, + 4.0215821156037785, 6.057012100639677, 7.902702610419551, + 9.644972303189709, 11.93542092540708, 14.166100190517295, + 16.8924989153862, 18.788194902873126, 20.015778760027786, + 20.134391441360936, 18.602700570193168, 16.375027130552617, + 12.711427751638436, 9.234040473440295, 5.591258804702493, + 2.7419400144456776, 0.5391365239306786, -0.8955378712956296, + -1.7088735104258235, -2.233897385169975, -2.771401339123847, + -3.4696566246536666, -4.345308363966819, -5.384884094148163, + -6.169863539719661, -6.849047828627905, -6.837363010873261, + -6.544372557262687, -5.813602645245386, -4.961719231742189, + -4.2655851322886065, -3.697535201705928, -3.647742991609227, + -3.691633762955059, -3.9901283647220764, -4.071710186362227, + -3.7989796569811096, -3.2922367446328145, -2.2992373242290083, + -1.329197483222054, -0.3370388980965592, 0.32233713021719945, + 0.5200351545742724, 0.303224060838781, -0.22437102717069543, + -0.8076574740617133, -1.2135280489055225, -1.2143620933673598, + -0.7657755558211545, 0.1182257672244197, 1.2595860149773748 + ], + "pressure:branch11_seg0:RCR_5": [ + -15698.253577028721, -23862.39908703619, -15939.99880563541, + -7220.140531842767, 2323.1448069461044, 15013.929848999904, + 34577.47764059898, 60618.854929549554, 99784.86773831546, + 145725.87867522807, 204201.2247343081, 266964.3219452018, + 331617.78430445294, 398127.8026210113, 447275.74597869394, + 501577.1323852901, 527404.5420558256, 555302.4370929463, + 559781.2537106114, 543768.5667840645, 527879.1163354967, + 480631.3465076869, 437896.0910021421, 369290.2705336624, + 292892.8947646719, 209649.77505728893, 118616.03838426233, + 27390.432779357056, -57543.8360168892, -140822.94178573822, + -206537.67530294968, -265270.1381215878, -311735.4363738327, + -337818.56503946416, -371099.2587962322, -379566.57258032897, + -401751.85448781616, -405550.56797440734, -402094.2890344647, + -399776.0739227421, -373839.3215773995, -353424.443249933, + -310263.4407604745, -267770.9847290436, -220063.47285302484, + -173295.36033104456, -132568.7846829386, -96950.748156459, + -71490.10326093066, -51981.04852706108, -38094.24246042526, + -24893.135224777845, -11911.55440914745, 4839.7585344334375, + 21751.537436770708, 42215.65749744922, 58265.96455023266, + 70634.25048033928, 76557.14095344237, 72350.0106024637, + 63543.491777127994, 45385.063757560674, 27422.91460826528, + 7610.306088750295, -8292.204543839596, -20928.283406054128, + -29413.515087231473, -34453.8480928779, -37920.509828418835, + -41583.5617769344, -46357.194389433804, -52370.65072892085, + -59604.95121543257, -65526.74318295239, -70996.28887177994, + -72409.19335672009, -72077.30943605717, -69008.68520813526, + -64989.925462805346, -61723.56509403397, -59057.63351452307, + -59408.74910820087, -60325.86781090688, -62796.125459475814, + -64021.73526818978, -63097.54254884168, -60680.75142084491, + -55165.11115606721, -49545.6055799385, -43547.26532253133, + -39336.17521892432, -37784.11398921014, -38716.514587378566, + -41605.64735930754, -44968.65208455601, -47394.55997724431, + -47452.14598772252, -44763.65607537959, -39309.979597856596, + -15698.253577028721 + ], + "flow:branch12_seg2:RCR_6": [ + 0.13527075785320936, 0.8289016129707673, 1.5956789246555847, + 2.34407985094263, 3.2312327995600176, 4.181148373100897, + 5.598616480360877, 7.604268734851213, 10.364385197596212, + 14.342671603488991, 18.69719029060922, 24.575217229638394, + 29.945363873554196, 36.13071217610223, 41.55637242045278, + 45.25260358750752, 49.85720979613703, 50.3112284438593, + 52.082676524552966, 50.03676535757935, 47.151087210697206, + 43.855020053728424, 37.50174965613393, 31.985139594256758, + 23.322045167305365, 15.128761842829535, 5.9024368696533625, + -3.4084617657042933, -12.412805268261076, -20.725113677535685, + -28.74709845610575, -34.40675750602489, -40.10556792370119, + -43.516846817100095, -45.66211797191145, -48.44071285261261, + -48.15967141404546, -49.85780192494906, -48.31209466744917, + -47.4025041711077, -45.408360871670475, -41.781053212738264, + -38.55184611118768, -32.395278584393935, -27.603443211319906, + -21.085395029555862, -15.742290286022367, -10.784117773601109, + -6.201575624872641, -3.1336168483441753, -0.20524737211520025, + 1.8691171333542558, 3.6804579319696145, 5.503566554607758, + 7.364208740695153, 9.192957502607472, 11.218694827640897, + 12.407045175908841, 13.477742512270506, 13.408325934440871, + 12.713847747091565, 11.420337942206533, 9.153465782671308, + 7.274081722167663, 4.846279732358436, 3.0795832186555065, + 1.568104701537788, 0.42183435373683426, -0.28797905220270076, + -0.950529872861734, -1.577782358606085, -2.1949656944533746, + -2.9227617834500714, -3.6101011187512504, -4.173139449621239, + -4.635111353951216, -4.617081079278709, -4.574407575612262, + -4.105867704886595, -3.7222875440881453, -3.3461591900016843, + -3.014689112956399, -3.041115366130747, -2.961664994585891, + -3.0949097713511464, -3.016341466248489, -2.7889447614631946, + -2.4302531801433664, -1.7908802762532776, -1.208705465399137, + -0.5897782643909063, -0.20220016586667064, -0.05868761314785988, + -0.14277294915869282, -0.3943377697778392, -0.6489426863452826, + -0.809021820323453, -0.7277459031229178, -0.4255432329605661, + 0.13527075785320936 + ], + "pressure:branch12_seg2:RCR_6": [ + -21943.79600809284, -32235.700215906607, -25346.030990808496, + -18360.526197598025, -9983.764917737657, -802.3496406761768, + 12546.386550973624, 31253.536169539635, 56839.390185107666, + 93460.32484746416, 134484.82826364398, 189530.85389107605, + 242332.5220821942, 303518.8990050003, 360512.34283914044, + 404759.3476244366, 457742.47459168517, 477632.7072652567, + 508477.3719386405, 508212.488854821, 500035.11222996115, + 487633.0654652703, 448412.11812658806, 414102.21433689055, + 351723.05543911597, 290292.61799200904, 217671.67710477952, + 141178.74891243063, 64184.78155603707, -10035.161099998155, + -84534.95974215702, -142004.70637172172, -201522.75566900507, + -243961.42734824028, -276789.39177371596, -315630.6498224566, + -329711.00188471394, -360091.89193850226, -364025.80465560936, + -372490.29105843254, -371816.2618022695, -356549.8206287499, + -343486.8714410846, -304863.7476011801, -275415.159607477, + -230130.36317653416, -192272.17382688806, -155899.74583388158, + -120913.82009301972, -96986.50940300888, -73224.97863555531, + -55603.85595308548, -39495.920877613215, -22709.089091169764, + -4993.994415325127, 13029.154615681871, 33288.16428961179, + 47238.80959333786, 60549.71462975808, 64783.84391094333, + 63708.146591228586, 57454.39993603555, 42617.256042711146, + 30216.1260977354, 12634.362615889537, -287.4299890515067, + -11662.704030589846, -20521.36445176662, -26134.606746457976, + -31587.24447845851, -36957.09364424994, -42445.97057349367, + -49049.05976817915, -55569.30946171962, -61267.053232983766, + -66318.60013386593, -67520.6098735755, -68493.78699169501, + -65922.47894698413, -63873.46398703245, -61769.36274991631, + -59891.39502911093, -60874.22054640563, -60982.15918551484, + -62827.65091077003, -62964.46422289445, -61825.068582596374, + -59527.96345201977, -54761.52652470907, -50262.35236163254, + -45258.07117833871, -41967.69807792377, -40582.2686020577, + -41038.139111534554, -42917.49984641672, -44909.34508783508, + -46204.037898413095, -45551.3712145898, -43033.777741621794, + -21943.79600809284 + ], + "flow:branch13_seg2:RCR_7": [ + 0.14913696831383538, 1.7393963326963062, 3.560416253827823, + 5.4438321700757015, 7.484892879719619, 9.73377911058523, + 12.973638317968373, 17.283042201884527, 23.76623644425682, + 32.254989087889726, 42.68972981783873, 55.653769599678235, + 68.47387248178448, 83.24361529529786, 95.3453764346095, + 106.33407920876316, 114.54732096689165, 118.43877872025035, + 120.60746683430158, 116.83049844831974, 111.42280435160679, + 101.1158630299281, 88.83085979985094, 72.9568490691675, + 54.645066921984665, 34.581324911103515, 12.850464066803376, + -9.013521676078424, -30.928656752514573, -50.89018510025751, + -69.35084140693878, -83.69129971156657, -96.60163508122174, + -104.53693342090801, -111.02128749455098, -114.2639134292891, + -115.79761941702195, -116.2235143783778, -113.68582891383676, + -111.1680554549708, -104.66807034790116, -97.99202192280477, + -87.29422890788007, -75.04474865585411, -61.79959711160241, + -47.03482107014337, -34.221385915880134, -21.405615484027813, + -11.257527689943597, -3.1226561527079775, 3.1026363040792355, + 7.622637067045722, 11.388749791325587, 15.064679488819658, + 18.620502731449783, 22.672968530128898, 26.48845674331962, + 29.47499756057016, 31.754493315011512, 31.628306242143506, + 30.466877031687527, 26.815151731030397, 22.11603111659137, + 16.781242711349147, 11.252215821084905, 6.67607547181513, + 2.8158398147344235, 0.07559473044034538, -1.766180521278242, + -3.1526049150694715, -4.328176520830712, -5.549295958968675, + -7.044229945918112, -8.433782790314122, -9.839123881843166, + -10.695750868214274, -10.92415168072524, -10.660853769442747, + -9.668548630248793, -8.721154573371455, -7.58647093783955, + -6.855601291784406, -6.519036370798491, -6.44763643439738, + -6.650346078478328, -6.576790389633415, -6.255965890067671, + -5.381439136281466, -4.141431055110584, -2.640814731206206, + -1.250675969965863, -0.20700156614602302, 0.24317098770563858, + 0.12075436710597377, -0.425039803134901, -1.1149760946359126, + -1.6131007630113026, -1.6166687684320469, -1.047326152081749, + 0.14913696831383538 + ], + "pressure:branch13_seg2:RCR_7": [ + -22693.119487453365, -32887.21803692654, -25642.374728159903, + -17906.631638728148, -9314.069691338664, 334.27476958338036, + 13962.920978763053, 32014.31950551634, 58707.4559531275, + 93769.69496768307, 137238.34457345298, 191588.07819829683, + 247266.30947922578, 311993.67574065324, 368970.3224569046, + 423478.0899322505, 469321.14322910126, 500183.1142812715, + 525252.1489502835, 528453.4627040772, 524948.4507095332, + 502461.98887384834, 470944.58832989546, 424370.8102377108, + 366300.5793580093, 299025.1764794964, 222586.08852585612, + 142427.20078586717, 58862.36245817838, -20645.28872740238, + -97539.79726151374, -161789.01830174064, -222820.76451729954, + -267228.08770496066, -307278.7727146214, -336255.05278770765, + -359154.5064832031, -378198.29665919795, -386151.8779377248, + -393708.88163573656, -386090.7698514451, -376679.6327842765, + -351396.68648087856, -318656.6444459185, -280381.5095418267, + -234457.257264097, -193525.46466477582, -150645.2043706405, + -115744.67252801084, -86777.94416450651, -63698.59313572154, + -46028.81234768217, -30488.930606553964, -14764.440855381898, + 1056.7718145735012, 19200.636810165826, 37062.189617471675, + 52389.12355056175, 65518.00627285929, 70056.63256250932, + 70702.06329995758, 61934.9112998561, 48711.28798592805, + 32421.890260947348, 14596.39352612353, -523.9100060286718, + -13691.226081813382, -23275.387187231394, -29942.57015857777, + -35186.379845359115, -39848.19337747294, -44848.95432976991, + -51035.211208791836, -57053.32002734733, -63323.90048162277, + -67772.12658923697, -70008.09102402655, -70453.34127622933, + -68147.4748311327, -65852.43999265358, -62712.18532700747, + -60890.9886717124, -60419.0032116653, -60871.81074234555, + -62333.73591596844, -62796.60477318814, -62331.444945520045, + -59768.171074667014, -55712.6127266489, -50511.52274512644, + -45489.73588178907, -41544.65268169076, -39642.64768815259, + -39794.62562055289, -41537.636781089066, -43898.7192859146, + -45656.65257006872, -45659.80744546612, -43544.050988287665, + -22693.119487453365 + ], + "flow:branch14_seg2:RCR_8": [ + 2.9293608980830594, 6.703940520441054, 10.331638327543972, + 14.084349311835807, 18.101100710848712, 23.24632817495857, + 31.23512184141297, 42.083340464269575, 58.44779552309514, + 78.1022639454859, 102.61272075624316, 129.24946385282385, + 155.56490682355198, 182.13270332301948, 200.33374389325772, + 218.19575812125402, 224.74142556474186, 228.68684207520687, + 223.8323120989489, 208.78531068590044, 192.76634548690038, + 165.08143560207373, 138.31383301443316, 102.53697544396415, + 63.631857183772546, 22.638339825679303, -20.551108786845028, + -62.4425005477053, -100.87383164498165, -136.44054434304368, + -164.30391438006117, -186.76640893238022, -203.55898036110634, + -210.42753462036265, -218.29119635822127, -216.80474154557896, + -218.5954058777042, -214.3381457879132, -205.8093639403453, + -197.34817434760515, -179.30279547557544, -162.80412463404105, + -137.31683511002936, -111.38692258589744, -84.08168269652097, + -57.02046097935567, -34.07676296394993, -14.112194194925623, + 0.09334432474538065, 10.232935238502028, 17.118166144347825, + 22.82688575543603, 28.09262090395231, 34.72243406794468, + 41.405705966945675, 49.36509635034724, 55.62410450604869, + 59.7891810069548, 60.98176682437788, 57.205688175089165, 51.0263023415327, + 40.5969945185534, 29.899076790613766, 18.90078982688441, + 9.611368401133582, 2.470026683811097, -2.439494616175443, + -5.32016918742716, -7.03633112423755, -8.568208294899133, + -10.50938154560343, -12.968500163702728, -16.01209729589642, + -18.519798560487512, -20.692710133699222, -21.090865255004132, + -20.397521714544865, -18.485450433002867, -15.899739022147518, + -13.688848955867892, -11.783100376589456, -11.263055699450485, + -11.327498657678365, -12.066572781598815, -12.480501535481352, + -11.902825098110858, -10.540285632153788, -7.8170810370280295, + -4.873984580182963, -1.8109573818264095, 0.4259771050887456, + 1.3847109432968887, 1.035315799388687, -0.37092842953878696, + -2.1273727155807816, -3.5207465612507733, -3.8381094024117397, + -2.791526780876889, -0.40466680363815044, 2.9293608980830594 + ], + "pressure:branch14_seg2:RCR_8": [ + -17340.842197641283, -25704.116115792353, -17689.88678443113, + -9149.07704818244, 208.07569212234003, 12108.450686314114, + 30076.490463713824, 54353.09377628781, 90475.88321995155, + 134450.30854988607, 189596.69980470682, 250937.50686070466, + 313619.26961201674, 378900.479348132, 429525.4407088185, + 480801.10734364507, 510898.3301609325, 536076.7464683008, + 543991.5509456599, 530992.3762282955, 514840.80475684645, + 474050.132832168, 432810.07612763636, 371409.0029880396, + 300811.95775951695, 222976.08498252067, 137467.01859898385, + 51162.254873539685, -31575.634516936192, -111569.90904767984, + -179006.62057889145, -237700.78068382703, -286835.8106924629, + -317360.7531681726, -350327.0710437839, -365186.9799003265, + -386273.9093829988, -395384.09766242123, -395417.2131648372, + -394912.48171429225, -374470.59101940505, -355661.33423837525, + -317528.55800895055, -276330.542341524, -230326.68544167344, + -182506.34430559864, -140796.8215866597, -103174.0234911406, + -75451.34234663016, -54727.6985081162, -39689.989127217435, + -26476.133435691667, -13722.365911765788, 2155.9970724100367, + 18643.642166883485, 38189.812977070425, 54971.74706452324, + 68020.29119707707, 75473.22022101913, 73045.12784283659, + 65521.15969096599, 48993.797445163524, 31056.00861295228, + 11659.615461162792, -5243.3155859639, -18591.432551568854, + -28057.21482954508, -33858.85629057719, -37556.69558929027, + -41016.70120188034, -45412.30530179548, -50986.050669171666, + -57923.42575200918, -64025.76461577614, -69657.90601090033, + -71919.36520182552, -72013.77494009836, -69621.32031198729, + -65706.53560320953, -62335.686491638466, -59388.47937419625, + -59047.59471195082, -59834.39531713772, -61961.866777789364, + -63504.41625295025, -63095.52742963258, -61075.945701989534, + -56229.12470655726, -50721.6066100148, -44734.81516039217, + -40147.40257884652, -37932.772886513296, -38255.170970018626, + -40720.42162228427, -44002.01007955778, -46703.09051682645, + -47372.536532077094, -45344.25715971965, -40559.357896612935, + -17340.842197641283 + ], + "flow:branch15_seg2:RCR_9": [ + -0.11045931972051745, 3.2401832637242527, 7.008556902465879, + 11.027146505515793, 15.344311751176122, 20.37706978094696, + 27.450075821977602, 37.02386460300323, 51.06127647333138, + 69.08386964489557, 91.56820677597875, 117.68405306656172, + 144.58299207968932, 172.46184549983528, 195.28370759242264, + 215.50780972460677, 227.788372988282, 234.21034183078314, + 233.51741740807788, 223.31353988322576, 209.4373945044763, + 187.01855526852668, 162.3637512254558, 131.64545050023003, + 96.8927113289288, 59.94045206785309, 20.698203369002165, + -18.491091508313513, -56.18551392395989, -91.84016702738981, + -123.03695255246959, -149.3696060995227, -171.55979960467567, + -186.4375244657463, -199.67018198182257, -206.80462762932288, + -213.37811379158327, -216.4788411979145, -215.08785785496204, + -212.6023731951135, -203.2001226704824, -192.17580728712613, + -174.24414515786538, -152.2428957288988, -127.42218095280828, + -100.14788688215259, -74.24370704403499, -49.87570516952564, + -29.43417924631802, -13.059893018758537, -0.437043433878288, + 9.573016998309352, 17.88963291205877, 26.165853375750533, + 34.274367508523476, 43.08635272711343, 51.23884414331966, + 57.6718778067314, 61.817838958783724, 61.66666648836982, + 58.379923474976685, 50.90056850576032, 41.26705877047108, + 30.435940145237737, 19.821598541257973, 10.642464664147372, + 3.348179165941563, -1.8783447951519106, -5.44719089194839, + -8.110632967858136, -10.5628807984139, -13.146277274209718, + -16.172662845759668, -19.05192713771596, -21.750861118745426, + -23.341655592301834, -23.752598019033773, -22.97859856246112, + -21.117904418110147, -19.03662272509253, -16.923363396018814, + -15.594120502672414, -14.959417703473902, -15.009268952381987, + -15.260809448657549, -15.02439787726634, -14.166337943756472, + -12.190655896156525, -9.56967809448332, -6.5072461921549625, + -3.6828487434721127, -1.6913389247082524, -0.8416083114683509, + -1.1655312104148785, -2.2710691223791715, -3.5743053714056088, + -4.39276976910521, -4.198866184213384, -2.769604181917329, + -0.11045931972051745 + ], + "pressure:branch15_seg2:RCR_9": [ + -21903.242860110062, -32355.53882525621, -25639.322874225414, + -18264.525594802548, -10134.816888402953, -547.3315599264861, + 12745.696701969484, 30638.53709196503, 56552.068135155874, + 89993.8817077423, 131987.02078237646, 181478.9478290562, + 233927.25200838194, 289753.38779701706, 338979.2921305254, + 385301.98974293144, 419728.6676249226, 445079.5797364662, + 458983.9032437715, 456929.2791282228, 448027.2671719092, + 423952.7162833794, 394586.2270238196, 353463.1129395684, + 303528.72099551506, 247623.260722008, 185441.96402974546, + 120757.49157778645, 55954.34887406926, -7914.560524508863, + -66722.79789363714, -119423.47687278308, -166944.88351294087, + -203711.12284222565, -238637.1872823626, -264249.5832616742, + -289260.0198469288, -308870.73032352753, -321095.5898159547, + -331352.4246918498, -329870.5083796168, -324998.25984676165, + -307856.81461495394, -282656.32198467635, -251272.002203993, + -214081.217781602, -177340.4790968622, -141397.5730410662, + -110335.08316261723, -84664.87549667, -64132.44031223863, + -47113.94008490687, -32260.67632788164, -16939.69042734508, + -1365.252586489229, 15894.831893231682, 32633.18704178719, + 47025.520464585585, 58035.30902958865, 62150.83653014629, + 61031.59215879343, 52708.07386552472, 40274.94532337689, + 25196.42264748922, 9730.069021689797, -4062.7985627283933, + -15340.940288079866, -23669.36083644568, -29587.788437597366, + -34234.25200660221, -38701.67825499255, -43542.09377124897, + -49285.84539830249, -54980.70741726476, -60561.9364732636, + -64478.62349791111, -66528.56535155313, -66632.93219498036, + -64865.83333691071, -62602.94527059696, -60140.33075696446, + -58830.071404201204, -58582.07651981772, -59420.673657441184, + -60597.54004601077, -60977.55287766204, -60307.72571420963, + -57722.71683591344, -53929.49581207263, -49224.644897571154, + -44706.987069894756, -41383.02376700193, -39823.2479436459, + -40158.467870317705, -41816.51372982433, -43879.608654445816, + -45227.967647328005, -44950.63873824584, -42610.23049474491, + -21903.242860110062 + ] + } +} diff --git a/tests/cases/vmr/reference/0080_0001_optimal_from_0d.json b/tests/cases/vmr/reference/0080_0001_optimal_from_0d.json index 813876cf5..ca0fe67fb 100644 --- a/tests/cases/vmr/reference/0080_0001_optimal_from_0d.json +++ b/tests/cases/vmr/reference/0080_0001_optimal_from_0d.json @@ -1,6008 +1,4713 @@ { - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 75.20299897326457, - 96.65267412104662, - 119.99354078316293, - 144.17380006076564, - 167.9658841666732, - 190.3696829636227, - 210.539633459793, - 228.17046625364924, - 242.9747282756045, - 255.2014820400909, - 264.9641929042962, - 272.5425139975115, - 278.1173908184526, - 281.71507365610944, - 283.4287638529393, - 283.1528247869028, - 280.9953282566522, - 277.01330499064323, - 271.42719348182607, - 264.5481890704203, - 256.6550987507877, - 248.09449679231844, - 239.07228804540608, - 229.77115927781313, - 220.27790209477615, - 210.66210491346732, - 201.0046443422202, - 191.43529598397646, - 182.11466390146362, - 173.25197793789246, - 164.97566318917916, - 157.33328152109064, - 150.2111639710666, - 143.3062267750492, - 136.1796666660292, - 128.35920133027145, - 119.3648034925374, - 108.93952592334738, - 97.04733249512748, - 83.91749296354521, - 70.08943644257923, - 56.22987686297122, - 43.0640615598422, - 31.27367207163051, - 21.326966664990948, - 13.43401984507759, - 7.669076370632103, - 3.740251938280678, - 1.4637389428075391, - 0.4392048839653444, - 0.4553672117473945, - 1.308051498843595, - 2.867902490283212, - 5.084102812636766, - 7.812543206442015, - 10.922185934965515, - 14.162611975365328, - 17.2596912659035, - 19.919103623620533, - 21.93250239088451, - 23.144467808458348, - 23.603003428606115, - 23.40149680224406, - 22.765029351425937, - 21.903198808636184, - 20.98860513570841, - 20.10078155357604, - 19.220633057034316, - 18.255074714906527, - 17.079230037750044, - 15.60883210599078, - 13.833341524659831, - 11.832825655557745, - 9.77472462346009, - 7.861520308776615, - 6.256079921580375, - 5.076284178657773, - 4.313387383470458, - 3.8751743405077996, - 3.6233866077584307, - 3.4100685192271674, - 3.1528936655615403, - 2.8632600365853316, - 2.6399974317076484, - 2.6403660750881706, - 3.003355397122063, - 3.82233416362992, - 5.044994517247155, - 6.5484299700527515, - 8.125004113094377, - 9.610667498260323, - 10.97085284285842, - 12.389307510260862, - 14.331752993739022, - 17.43007161210963, - 22.566724857016226, - 30.466563730966133, - 41.76171723743491, - 56.77632872832844, - 75.20299897326457 - ], - "t": [ - 0.0, - 0.007130101010101008, - 0.014260202020202017, - 0.021390303030303023, - 0.028520404040404033, - 0.035650505050505044, - 0.04278060606060605, - 0.04991070707070706, - 0.05704080808080807, - 0.06417090909090907, - 0.07130101010101009, - 0.07843111111111109, - 0.0855612121212121, - 0.09269131313131311, - 0.09982141414141411, - 0.10695151515151513, - 0.11408161616161613, - 0.12121171717171714, - 0.12834181818181814, - 0.13547191919191917, - 0.14260202020202017, - 0.14973212121212118, - 0.15686222222222218, - 0.16399232323232318, - 0.1711224242424242, - 0.17825252525252522, - 0.18538262626262622, - 0.19251272727272722, - 0.19964282828282823, - 0.20677292929292923, - 0.21390303030303026, - 0.22103313131313126, - 0.22816323232323227, - 0.23529333333333327, - 0.24242343434343427, - 0.2495535353535353, - 0.2566836363636363, - 0.2638137373737373, - 0.27094383838383834, - 0.2780739393939393, - 0.28520404040404035, - 0.2923341414141413, - 0.29946424242424236, - 0.3065943434343434, - 0.31372444444444436, - 0.3208545454545454, - 0.32798464646464637, - 0.3351147474747474, - 0.3422448484848484, - 0.3493749494949494, - 0.35650505050505044, - 0.3636351515151514, - 0.37076525252525244, - 0.3778953535353534, - 0.38502545454545445, - 0.3921555555555555, - 0.39928565656565645, - 0.4064157575757575, - 0.41354585858585846, - 0.4206759595959595, - 0.4278060606060605, - 0.4349361616161615, - 0.44206626262626253, - 0.4491963636363635, - 0.45632646464646454, - 0.46345656565656557, - 0.47058666666666654, - 0.4777167676767676, - 0.48484686868686855, - 0.4919769696969696, - 0.4991070707070706, - 0.5062371717171716, - 0.5133672727272726, - 0.5204973737373736, - 0.5276274747474746, - 0.5347575757575757, - 0.5418876767676767, - 0.5490177777777776, - 0.5561478787878786, - 0.5632779797979797, - 0.5704080808080807, - 0.5775381818181817, - 0.5846682828282826, - 0.5917983838383837, - 0.5989284848484847, - 0.6060585858585857, - 0.6131886868686868, - 0.6203187878787877, - 0.6274488888888887, - 0.6345789898989898, - 0.6417090909090908, - 0.6488391919191918, - 0.6559692929292927, - 0.6630993939393938, - 0.6702294949494948, - 0.6773595959595958, - 0.6844896969696967, - 0.6916197979797978, - 0.6987498989898988, - 0.7058799999999998 - ] - } - }, - { - "bc_name": "RESISTANCE_0", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5498.7352908831 - } - }, - { - "bc_name": "RESISTANCE_1", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6395.90661976335 - } - }, - { - "bc_name": "RESISTANCE_2", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6395.90661976335 - } - }, - { - "bc_name": "RESISTANCE_3", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4967.70988574267 - } - }, - { - "bc_name": "RESISTANCE_4", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3714.2687347715 - } - }, - { - "bc_name": "RESISTANCE_5", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5171.48649207728 - } - }, - { - "bc_name": "RESISTANCE_6", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3382.949932341 - } - }, - { - "bc_name": "RESISTANCE_7", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5053.51674230097 - } - }, - { - "bc_name": "RESISTANCE_8", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5972.50259803863 - } - }, - { - "bc_name": "RESISTANCE_9", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4806.11337621455 - } - }, - { - "bc_name": "RESISTANCE_10", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5665.52978369007 - } - }, - { - "bc_name": "RESISTANCE_11", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5714.82998380798 - } - }, - { - "bc_name": "RESISTANCE_12", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4912.03366380404 - } - }, - { - "bc_name": "RESISTANCE_13", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4066.44572311571 - } - }, - { - "bc_name": "RESISTANCE_14", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4093.36138650337 - } - }, - { - "bc_name": "RESISTANCE_15", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6951.52470108444 - } - }, - { - "bc_name": "RESISTANCE_16", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7277.06705089581 - } - }, - { - "bc_name": "RESISTANCE_17", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5492.24220788137 - } - }, - { - "bc_name": "RESISTANCE_18", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4285.29799962289 - } - }, - { - "bc_name": "RESISTANCE_19", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4912.03366380404 - } - }, - { - "bc_name": "RESISTANCE_20", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7787.55548633284 - } - }, - { - "bc_name": "RESISTANCE_21", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6395.90661976335 - } - }, - { - "bc_name": "RESISTANCE_22", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5855.14374377891 - } - }, - { - "bc_name": "RESISTANCE_23", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4535.5587808418 - } - }, - { - "bc_name": "RESISTANCE_24", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5112.56156376216 - } - }, - { - "bc_name": "RESISTANCE_25", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6122.44897959184 - } - }, - { - "bc_name": "RESISTANCE_26", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5440.75561213941 - } - }, - { - "bc_name": "RESISTANCE_27", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5524.35319031397 - } - }, - { - "bc_name": "RESISTANCE_28", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7277.06705089581 - } - }, - { - "bc_name": "RESISTANCE_29", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5346.4499572284 - } - }, - { - "bc_name": "RESISTANCE_30", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5007.41096823299 - } - }, - { - "bc_name": "RESISTANCE_31", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7210.23853872499 - } - }, - { - "bc_name": "RESISTANCE_32", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3743.63581910752 - } - }, - { - "bc_name": "RESISTANCE_33", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5346.4499572284 - } - }, - { - "bc_name": "RESISTANCE_34", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6086.61249581545 - } - }, - { - "bc_name": "RESISTANCE_35", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5346.39278878541 - } - }, - { - "bc_name": "RESISTANCE_36", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4406.3539624138 - } - }, - { - "bc_name": "RESISTANCE_37", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4343.41971912552 - } - }, - { - "bc_name": "RESISTANCE_38", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3712.80695631511 - } - }, - { - "bc_name": "RESISTANCE_39", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5665.52978369007 - } - }, - { - "bc_name": "RESISTANCE_40", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4336.16870587045 - } - }, - { - "bc_name": "RESISTANCE_41", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5053.51674230097 - } - }, - { - "bc_name": "RESISTANCE_42", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3941.84983128883 - } - }, - { - "bc_name": "RESISTANCE_43", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3809.11266720418 - } - }, - { - "bc_name": "RESISTANCE_44", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4321.89471864465 - } - }, - { - "bc_name": "RESISTANCE_45", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4157.55469263198 - } - }, - { - "bc_name": "RESISTANCE_46", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4786.29205954147 - } - }, - { - "bc_name": "RESISTANCE_47", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5260.66600031564 - } - }, - { - "bc_name": "RESISTANCE_48", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5062.6759279885 - } - }, - { - "bc_name": "RESISTANCE_49", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6415.73994867408 - } - }, - { - "bc_name": "RESISTANCE_50", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5053.51674230097 - } - }, - { - "bc_name": "RESISTANCE_51", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4093.36138650337 - } - }, - { - "bc_name": "RESISTANCE_52", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4093.36138650337 - } - }, - { - "bc_name": "RESISTANCE_53", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7675.08794371602 - } - }, - { - "bc_name": "RESISTANCE_54", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3389.07227535534 - } - }, - { - "bc_name": "RESISTANCE_55", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3011.91211240456 - } - }, - { - "bc_name": "RESISTANCE_56", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 8710.04267920913 - } - }, - { - "bc_name": "RESISTANCE_57", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4502.27364819234 - } - }, - { - "bc_name": "RESISTANCE_58", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4165.48066175603 - } - }, - { - "bc_name": "RESISTANCE_59", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5053.51674230097 - } - }, - { - "bc_name": "RESISTANCE_60", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7277.06705089581 - } - }, - { - "bc_name": "RESISTANCE_61", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5384.30475164894 - } - }, - { - "bc_name": "RESISTANCE_62", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4093.36138650337 - } - }, - { - "bc_name": "RESISTANCE_63", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5693.72323950077 - } - }, - { - "bc_name": "RESISTANCE_64", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6846.42331435353 - } - }, - { - "bc_name": "RESISTANCE_65", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5931.12774462936 - } - }, - { - "bc_name": "RESISTANCE_66", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5665.59398087295 - } - }, - { - "bc_name": "RESISTANCE_67", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6508.93351124418 - } - }, - { - "bc_name": "RESISTANCE_68", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4093.36138650337 - } - }, - { - "bc_name": "RESISTANCE_69", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5443.21367335275 - } - }, - { - "bc_name": "RESISTANCE_70", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5616.96773613732 - } - }, - { - "bc_name": "RESISTANCE_71", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5295.95565519798 - } - }, - { - "bc_name": "RESISTANCE_72", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5306.82280518654 - } - }, - { - "bc_name": "RESISTANCE_73", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4933.84535684037 - } - }, - { - "bc_name": "RESISTANCE_74", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5054.2829994137 - } - }, - { - "bc_name": "RESISTANCE_75", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4767.58045292014 - } - }, - { - "bc_name": "RESISTANCE_76", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5664.88789186862 - } - }, - { - "bc_name": "RESISTANCE_77", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7277.06705089581 - } - }, - { - "bc_name": "RESISTANCE_78", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5071.55970747244 - } - }, - { - "bc_name": "RESISTANCE_79", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4912.03366380404 - } - }, - { - "bc_name": "RESISTANCE_80", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6488.66106478928 - } - }, - { - "bc_name": "RESISTANCE_81", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 8134.82110172594 - } - }, - { - "bc_name": "RESISTANCE_82", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4912.03366380404 - } - }, - { - "bc_name": "RESISTANCE_83", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 8732.48046107497 - } - }, - { - "bc_name": "RESISTANCE_84", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4024.68473302925 - } - }, - { - "bc_name": "RESISTANCE_85", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3143.69845644406 - } - }, - { - "bc_name": "RESISTANCE_86", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 6798.63574042809 - } - }, - { - "bc_name": "RESISTANCE_87", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5665.52978369007 - } - }, - { - "bc_name": "RESISTANCE_88", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5344.97349783974 - } - }, - { - "bc_name": "RESISTANCE_89", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 2944.53670659458 - } - }, - { - "bc_name": "RESISTANCE_90", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 4472.47193523861 - } - }, - { - "bc_name": "RESISTANCE_91", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 3717.44908643689 - } - }, - { - "bc_name": "RESISTANCE_92", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 7168.03058359716 - } - }, - { - "bc_name": "RESISTANCE_93", - "bc_type": "RESISTANCE", - "bc_values": { - "Pd": 3999.0, - "R": 5665.52978369007 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0 - ], - "junction_name": "J0", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 1, - 8 - ] - }, - { - "inlet_vessels": [ - 3 - ], - "junction_name": "J1", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 4, - 37, - 49, - 59, - 70, - 73, - 91, - 94, - 100, - 137, - 156, - 168, - 186, - 198 - ] - }, - { - "inlet_vessels": [ - 4 - ], - "junction_name": "J2", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 5, - 48 - ] - }, - { - "inlet_vessels": [ - 8 - ], - "junction_name": "J3", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 9, - 18, - 26, - 28, - 41, - 51, - 68, - 92, - 105, - 164, - 183, - 212 - ] - }, - { - "inlet_vessels": [ - 9 - ], - "junction_name": "J4", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 10, - 125, - 185 - ] - }, - { - "inlet_vessels": [ - 10 - ], - "junction_name": "J5", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 11, - 16, - 69, - 83, - 87 - ] - }, - { - "inlet_vessels": [ - 11 - ], - "junction_name": "J6", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 12, - 21 - ] - }, - { - "inlet_vessels": [ - 12 - ], - "junction_name": "J7", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 13, - 65 - ] - }, - { - "inlet_vessels": [ - 16 - ], - "junction_name": "J8", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 17, - 184 - ] - }, - { - "inlet_vessels": [ - 18 - ], - "junction_name": "J9", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 19, - 106, - 130 - ] - }, - { - "inlet_vessels": [ - 19 - ], - "junction_name": "J10", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 20, - 148 - ] - }, - { - "inlet_vessels": [ - 21 - ], - "junction_name": "J11", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 22, - 30 - ] - }, - { - "inlet_vessels": [ - 22 - ], - "junction_name": "J12", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 23, - 162 - ] - }, - { - "inlet_vessels": [ - 23 - ], - "junction_name": "J13", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 24, - 63 - ] - }, - { - "inlet_vessels": [ - 24 - ], - "junction_name": "J14", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 25, - 29 - ] - }, - { - "inlet_vessels": [ - 26 - ], - "junction_name": "J15", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 27, - 76, - 149 - ] - }, - { - "inlet_vessels": [ - 30 - ], - "junction_name": "J16", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 31, - 204 - ] - }, - { - "inlet_vessels": [ - 31 - ], - "junction_name": "J17", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 32, - 58 - ] - }, - { - "inlet_vessels": [ - 32 - ], - "junction_name": "J18", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 33, - 170 - ] - }, - { - "inlet_vessels": [ - 33 - ], - "junction_name": "J19", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 34, - 61 - ] - }, - { - "inlet_vessels": [ - 37 - ], - "junction_name": "J20", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 38, - 43, - 56, - 62, - 90, - 113, - 145, - 171 - ] - }, - { - "inlet_vessels": [ - 41 - ], - "junction_name": "J21", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 42, - 139 - ] - }, - { - "inlet_vessels": [ - 43 - ], - "junction_name": "J22", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 44, - 107, - 163 - ] - }, - { - "inlet_vessels": [ - 44 - ], - "junction_name": "J23", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 45, - 143 - ] - }, - { - "inlet_vessels": [ - 49 - ], - "junction_name": "J24", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 50, - 140 - ] - }, - { - "inlet_vessels": [ - 51 - ], - "junction_name": "J25", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 52, - 154 - ] - }, - { - "inlet_vessels": [ - 52 - ], - "junction_name": "J26", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 53, - 136 - ] - }, - { - "inlet_vessels": [ - 56 - ], - "junction_name": "J27", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 57, - 192 - ] - }, - { - "inlet_vessels": [ - 59 - ], - "junction_name": "J28", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 60, - 121 - ] - }, - { - "inlet_vessels": [ - 63 - ], - "junction_name": "J29", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 64, - 120 - ] - }, - { - "inlet_vessels": [ - 70 - ], - "junction_name": "J30", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 71, - 144, - 205 - ] - }, - { - "inlet_vessels": [ - 71 - ], - "junction_name": "J31", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 72, - 112 - ] - }, - { - "inlet_vessels": [ - 73 - ], - "junction_name": "J32", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 74, - 79, - 197 - ] - }, - { - "inlet_vessels": [ - 74 - ], - "junction_name": "J33", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 75, - 211 - ] - }, - { - "inlet_vessels": [ - 81 - ], - "junction_name": "J34", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 82, - 178 - ] - }, - { - "inlet_vessels": [ - 83 - ], - "junction_name": "J35", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 84, - 109, - 135 - ] - }, - { - "inlet_vessels": [ - 87 - ], - "junction_name": "J36", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 88, - 89, - 108 - ] - }, - { - "inlet_vessels": [ - 92 - ], - "junction_name": "J37", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 93, - 97 - ] - }, - { - "inlet_vessels": [ - 94 - ], - "junction_name": "J38", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 95, - 104 - ] - }, - { - "inlet_vessels": [ - 95 - ], - "junction_name": "J39", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 96, - 122 - ] - }, - { - "inlet_vessels": [ - 100 - ], - "junction_name": "J40", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 101, - 126 - ] - }, - { - "inlet_vessels": [ - 113 - ], - "junction_name": "J41", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 114, - 151 - ] - }, - { - "inlet_vessels": [ - 116 - ], - "junction_name": "J42", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 117, - 210 - ] - }, - { - "inlet_vessels": [ - 126 - ], - "junction_name": "J43", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 127, - 195, - 201 - ] - }, - { - "inlet_vessels": [ - 130 - ], - "junction_name": "J44", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 131, - 159 - ] - }, - { - "inlet_vessels": [ - 131 - ], - "junction_name": "J45", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 132, - 155 - ] - }, - { - "inlet_vessels": [ - 137 - ], - "junction_name": "J46", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 138, - 209 - ] - }, - { - "inlet_vessels": [ - 149 - ], - "junction_name": "J47", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 150, - 206 - ] - }, - { - "inlet_vessels": [ - 156 - ], - "junction_name": "J48", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 157, - 189 - ] - }, - { - "inlet_vessels": [ - 157 - ], - "junction_name": "J49", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 158, - 174 - ] - }, - { - "inlet_vessels": [ - 164 - ], - "junction_name": "J50", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 165, - 179 - ] - }, - { - "inlet_vessels": [ - 168 - ], - "junction_name": "J51", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 169, - 182 - ] - }, - { - "inlet_vessels": [ - 176 - ], - "junction_name": "J52", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 177, - 196 - ] - }, - { - "inlet_vessels": [ - 1 - ], - "junction_name": "J53", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 2 - ] - }, - { - "inlet_vessels": [ - 2 - ], - "junction_name": "J54", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 3 - ] - }, - { - "inlet_vessels": [ - 5 - ], - "junction_name": "J55", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 6 - ] - }, - { - "inlet_vessels": [ - 6 - ], - "junction_name": "J56", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 7 - ] - }, - { - "inlet_vessels": [ - 13 - ], - "junction_name": "J57", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 14 - ] - }, - { - "inlet_vessels": [ - 14 - ], - "junction_name": "J58", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 15 - ] - }, - { - "inlet_vessels": [ - 34 - ], - "junction_name": "J59", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 35 - ] - }, - { - "inlet_vessels": [ - 35 - ], - "junction_name": "J60", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 36 - ] - }, - { - "inlet_vessels": [ - 38 - ], - "junction_name": "J61", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 39 - ] - }, - { - "inlet_vessels": [ - 39 - ], - "junction_name": "J62", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 40 - ] - }, - { - "inlet_vessels": [ - 45 - ], - "junction_name": "J63", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 46 - ] - }, - { - "inlet_vessels": [ - 46 - ], - "junction_name": "J64", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 47 - ] - }, - { - "inlet_vessels": [ - 53 - ], - "junction_name": "J65", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 54 - ] - }, - { - "inlet_vessels": [ - 54 - ], - "junction_name": "J66", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 55 - ] - }, - { - "inlet_vessels": [ - 65 - ], - "junction_name": "J67", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 66 - ] - }, - { - "inlet_vessels": [ - 66 - ], - "junction_name": "J68", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 67 - ] - }, - { - "inlet_vessels": [ - 76 - ], - "junction_name": "J69", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 77 - ] - }, - { - "inlet_vessels": [ - 77 - ], - "junction_name": "J70", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 78 - ] - }, - { - "inlet_vessels": [ - 79 - ], - "junction_name": "J71", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 80 - ] - }, - { - "inlet_vessels": [ - 80 - ], - "junction_name": "J72", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 81 - ] - }, - { - "inlet_vessels": [ - 84 - ], - "junction_name": "J73", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 85 - ] - }, - { - "inlet_vessels": [ - 85 - ], - "junction_name": "J74", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 86 - ] - }, - { - "inlet_vessels": [ - 97 - ], - "junction_name": "J75", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 98 - ] - }, - { - "inlet_vessels": [ - 98 - ], - "junction_name": "J76", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 99 - ] - }, - { - "inlet_vessels": [ - 101 - ], - "junction_name": "J77", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 102 - ] - }, - { - "inlet_vessels": [ - 102 - ], - "junction_name": "J78", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 103 - ] - }, - { - "inlet_vessels": [ - 109 - ], - "junction_name": "J79", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 110 - ] - }, - { - "inlet_vessels": [ - 110 - ], - "junction_name": "J80", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 111 - ] - }, - { - "inlet_vessels": [ - 114 - ], - "junction_name": "J81", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 115 - ] - }, - { - "inlet_vessels": [ - 115 - ], - "junction_name": "J82", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 116 - ] - }, - { - "inlet_vessels": [ - 117 - ], - "junction_name": "J83", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 118 - ] - }, - { - "inlet_vessels": [ - 118 - ], - "junction_name": "J84", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 119 - ] - }, - { - "inlet_vessels": [ - 122 - ], - "junction_name": "J85", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 123 - ] - }, - { - "inlet_vessels": [ - 123 - ], - "junction_name": "J86", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 124 - ] - }, - { - "inlet_vessels": [ - 127 - ], - "junction_name": "J87", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 128 - ] - }, - { - "inlet_vessels": [ - 128 - ], - "junction_name": "J88", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 129 - ] - }, - { - "inlet_vessels": [ - 132 - ], - "junction_name": "J89", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 133 - ] - }, - { - "inlet_vessels": [ - 133 - ], - "junction_name": "J90", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 134 - ] - }, - { - "inlet_vessels": [ - 140 - ], - "junction_name": "J91", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 141 - ] - }, - { - "inlet_vessels": [ - 141 - ], - "junction_name": "J92", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 142 - ] - }, - { - "inlet_vessels": [ - 145 - ], - "junction_name": "J93", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 146 - ] - }, - { - "inlet_vessels": [ - 146 - ], - "junction_name": "J94", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 147 - ] - }, - { - "inlet_vessels": [ - 151 - ], - "junction_name": "J95", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 152 - ] - }, - { - "inlet_vessels": [ - 152 - ], - "junction_name": "J96", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 153 - ] - }, - { - "inlet_vessels": [ - 159 - ], - "junction_name": "J97", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 160 - ] - }, - { - "inlet_vessels": [ - 160 - ], - "junction_name": "J98", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 161 - ] - }, - { - "inlet_vessels": [ - 165 - ], - "junction_name": "J99", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 166 - ] - }, - { - "inlet_vessels": [ - 166 - ], - "junction_name": "J100", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 167 - ] - }, - { - "inlet_vessels": [ - 171 - ], - "junction_name": "J101", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 172 - ] - }, - { - "inlet_vessels": [ - 172 - ], - "junction_name": "J102", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 173 - ] - }, - { - "inlet_vessels": [ - 174 - ], - "junction_name": "J103", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 175 - ] - }, - { - "inlet_vessels": [ - 175 - ], - "junction_name": "J104", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 176 - ] - }, - { - "inlet_vessels": [ - 179 - ], - "junction_name": "J105", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 180 - ] - }, - { - "inlet_vessels": [ - 180 - ], - "junction_name": "J106", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 181 - ] - }, - { - "inlet_vessels": [ - 186 - ], - "junction_name": "J107", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 187 - ] - }, - { - "inlet_vessels": [ - 187 - ], - "junction_name": "J108", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 188 - ] - }, - { - "inlet_vessels": [ - 189 - ], - "junction_name": "J109", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 190 - ] - }, - { - "inlet_vessels": [ - 190 - ], - "junction_name": "J110", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 191 - ] - }, - { - "inlet_vessels": [ - 192 - ], - "junction_name": "J111", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 193 - ] - }, - { - "inlet_vessels": [ - 193 - ], - "junction_name": "J112", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 194 - ] - }, - { - "inlet_vessels": [ - 198 - ], - "junction_name": "J113", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 199 - ] - }, - { - "inlet_vessels": [ - 199 - ], - "junction_name": "J114", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 200 - ] - }, - { - "inlet_vessels": [ - 201 - ], - "junction_name": "J115", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 202 - ] - }, - { - "inlet_vessels": [ - 202 - ], - "junction_name": "J116", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 203 - ] - }, - { - "inlet_vessels": [ - 206 - ], - "junction_name": "J117", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 207 - ] - }, - { - "inlet_vessels": [ - 207 - ], - "junction_name": "J118", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 208 - ] - }, - { - "inlet_vessels": [ - 212 - ], - "junction_name": "J119", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 213 - ] - }, - { - "inlet_vessels": [ - 213 - ], - "junction_name": "J120", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 214 - ] - } - ], - "simulation_parameters": { - "density": 1.06, - "model_name": "0080_0001", - "number_of_cardiac_cycles": 3, - "number_of_time_pts_per_cardiac_cycle": 705, - "output_all_cycles": false, - "viscosity": 0.04 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 1.3805440959686677, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.20313055779656e-06, - "L": 0.24982933228819232, - "R_poiseuille": 0.03694368442953243, - "stenosis_coefficient": 1.0627181517794056e-05 - } - }, - { - "vessel_id": 1, - "vessel_length": 0.4700096249069316, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.800354557926104e-07, - "L": 0.19447707506436307, - "R_poiseuille": 0.07073181752123706, - "stenosis_coefficient": 1.2175602680007738e-05 - } - }, - { - "vessel_id": 2, - "vessel_length": 1.236264289578453, - "vessel_name": "branch1_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.4855337769166476e-07, - "L": 0.5410118482305434, - "R_poiseuille": 0.21295074265777292, - "stenosis_coefficient": 0.0009604963895366624 - } - }, - { - "vessel_id": 3, - "vessel_length": 0.027089022417558086, - "vessel_name": "branch1_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.0625908233296277e-08, - "L": 0.010985462817714911, - "R_poiseuille": 0.004009176257249289, - "stenosis_coefficient": -1.3267897320598285e-07 - } - }, - { - "vessel_id": 4, - "vessel_length": 0.767092376484422, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.7441570632192325e-08, - "L": 5.303689240830299, - "R_poiseuille": 32.82041018171888, - "stenosis_coefficient": 0.12987903065565853 - } - }, - { - "vessel_id": 5, - "vessel_length": 1.9137134015067134, - "vessel_name": "branch3_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.3734924177005566e-08, - "L": 16.929617042312756, - "R_poiseuille": 134.00704060209105, - "stenosis_coefficient": 0.2799306752759997 - } - }, - { - "vessel_id": 6, - "vessel_length": 1.3994359853698075, - "vessel_name": "branch3_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.2363657623029927e-08, - "L": 13.60012686115154, - "R_poiseuille": 118.25526273866126, - "stenosis_coefficient": 0.8685768886591523 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_0" - }, - "vessel_id": 7, - "vessel_length": 0.6031024092142984, - "vessel_name": "branch3_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 9.641143493796211e-09, - "L": 5.85902178849921, - "R_poiseuille": 50.92664156344334, - "stenosis_coefficient": 0.18554869502414761 - } - }, - { - "vessel_id": 8, - "vessel_length": 1.6221170932907283, - "vessel_name": "branch4_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.587848264218883e-07, - "L": 0.7464959825172531, - "R_poiseuille": 0.3059610636496817, - "stenosis_coefficient": 1.1711205640164641e-05 - } - }, - { - "vessel_id": 9, - "vessel_length": 0.03377137318889544, - "vessel_name": "branch5_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.1328340842611756e-09, - "L": 0.0578857913489929, - "R_poiseuille": 0.088653085668703, - "stenosis_coefficient": 2.119553111930494e-06 - } - }, - { - "vessel_id": 10, - "vessel_length": 1.3376670796129662, - "vessel_name": "branch6_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.330485636476161e-08, - "L": 4.48778913652762, - "R_poiseuille": 13.477306930137654, - "stenosis_coefficient": -0.00018416356445705064 - } - }, - { - "vessel_id": 11, - "vessel_length": 0.597556026956815, - "vessel_name": "branch7_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.3024119838493435e-08, - "L": 2.4587971981934342, - "R_poiseuille": 9.05501366512407, - "stenosis_coefficient": -0.00017822028495800038 - } - }, - { - "vessel_id": 12, - "vessel_length": 0.3780642267581488, - "vessel_name": "branch8_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.782324216463856e-09, - "L": 3.8318884046771635, - "R_poiseuille": 34.75120324748241, - "stenosis_coefficient": -0.002474751762406789 - } - }, - { - "vessel_id": 13, - "vessel_length": 0.06402900125534544, - "vessel_name": "branch9_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.689262861103303e-10, - "L": 0.7272359365021961, - "R_poiseuille": 7.390560313339868, - "stenosis_coefficient": -0.0006201659389895438 - } - }, - { - "vessel_id": 14, - "vessel_length": 0.8652668710938062, - "vessel_name": "branch9_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.1243209854693166e-08, - "L": 10.240734400564131, - "R_poiseuille": 108.44266462338133, - "stenosis_coefficient": 1.42543195630556 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_1" - }, - "vessel_id": 15, - "vessel_length": 1.475694913974687, - "vessel_name": "branch9_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.8720023875835964e-08, - "L": 17.86541903948072, - "R_poiseuille": 193.50736023145214, - "stenosis_coefficient": 0.006382066235276468 - } - }, - { - "vessel_id": 16, - "vessel_length": 0.4511882149052207, - "vessel_name": "branch10_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.049324819938714e-09, - "L": 5.184485654998075, - "R_poiseuille": 53.3020855579649, - "stenosis_coefficient": -0.00356578391370318 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_2" - }, - "vessel_id": 17, - "vessel_length": 0.926581286933064, - "vessel_name": "branch11_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 9.969326930547595e-09, - "L": 13.101534766363503, - "R_poiseuille": 165.7420447603574, - "stenosis_coefficient": 3.8788448373475184 - } - }, - { - "vessel_id": 18, - "vessel_length": 0.2944816785427889, - "vessel_name": "branch12_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.4724332880381028e-08, - "L": 0.9353028965941073, - "R_poiseuille": 2.6588652452843395, - "stenosis_coefficient": -6.568337869750691e-05 - } - }, - { - "vessel_id": 19, - "vessel_length": 0.7814774469262069, - "vessel_name": "branch13_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.980141813316165e-08, - "L": 4.861717970589825, - "R_poiseuille": 27.073315398801515, - "stenosis_coefficient": 0.007424838632713153 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_3" - }, - "vessel_id": 20, - "vessel_length": 2.546928970164378, - "vessel_name": "branch14_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.611029724322229e-08, - "L": 21.95988518954964, - "R_poiseuille": 169.41538483056414, - "stenosis_coefficient": 0.1591643155811024 - } - }, - { - "vessel_id": 21, - "vessel_length": 0.43552068967368024, - "vessel_name": "branch15_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.531166797594862e-08, - "L": 1.9620176887687177, - "R_poiseuille": 7.910180210499989, - "stenosis_coefficient": 0.016088492704385657 - } - }, - { - "vessel_id": 22, - "vessel_length": 1.422373662231766, - "vessel_name": "branch16_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.5703131984998293e-08, - "L": 12.282698101100769, - "R_poiseuille": 94.90078503539023, - "stenosis_coefficient": 0.6287457126838166 - } - }, - { - "vessel_id": 23, - "vessel_length": 0.0321936092555048, - "vessel_name": "branch17_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.855797193371881e-10, - "L": 0.2762272084137619, - "R_poiseuille": 2.1205999455263385, - "stenosis_coefficient": -4.2820845009857686e-05 - } - }, - { - "vessel_id": 24, - "vessel_length": 0.06466890835245662, - "vessel_name": "branch18_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.1580056072247715e-09, - "L": 0.5633115564110789, - "R_poiseuille": 4.390337916213127, - "stenosis_coefficient": -0.00016026908062443903 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_4" - }, - "vessel_id": 25, - "vessel_length": 1.6684049591136723, - "vessel_name": "branch19_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.1803571919724054e-08, - "L": 13.681679151649737, - "R_poiseuille": 100.38551741694508, - "stenosis_coefficient": 0.0021163694969631 - } - }, - { - "vessel_id": 26, - "vessel_length": 0.45959397190300655, - "vessel_name": "branch20_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3965645210745943e-08, - "L": 2.3909759319954405, - "R_poiseuille": 11.133864135645696, - "stenosis_coefficient": -0.0005990557004248448 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_5" - }, - "vessel_id": 27, - "vessel_length": 0.3473633681374321, - "vessel_name": "branch21_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.92381618237805e-09, - "L": 3.786626771920076, - "R_poiseuille": 36.93308161248114, - "stenosis_coefficient": 0.06498673118053047 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_6" - }, - "vessel_id": 28, - "vessel_length": 1.8491184142546093, - "vessel_name": "branch22_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.993578487161621e-08, - "L": 13.437504917306546, - "R_poiseuille": 87.38610764299868, - "stenosis_coefficient": 0.17175732921827158 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_7" - }, - "vessel_id": 29, - "vessel_length": 1.1480030859456651, - "vessel_name": "branch23_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.6395349262556706e-08, - "L": 12.419668662359248, - "R_poiseuille": 120.2132502021811, - "stenosis_coefficient": 0.4999838919534153 - } - }, - { - "vessel_id": 30, - "vessel_length": 0.566556332257165, - "vessel_name": "branch24_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.0569731673352377e-08, - "L": 4.744193616832872, - "R_poiseuille": 35.54574340258078, - "stenosis_coefficient": -0.0007681933293057463 - } - }, - { - "vessel_id": 31, - "vessel_length": 0.031139405875391275, - "vessel_name": "branch25_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.003912969072602e-10, - "L": 0.3009945802400388, - "R_poiseuille": 2.603154014105532, - "stenosis_coefficient": -6.0217893685834384e-05 - } - }, - { - "vessel_id": 32, - "vessel_length": 0.0709074115605942, - "vessel_name": "branch26_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.4820988316758036e-09, - "L": 0.5318396492481426, - "R_poiseuille": 3.569321996503202, - "stenosis_coefficient": -0.00013202266923703328 - } - }, - { - "vessel_id": 33, - "vessel_length": 0.03778956430673017, - "vessel_name": "branch27_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.032488967471239e-10, - "L": 0.2788536239921549, - "R_poiseuille": 1.8411862476775251, - "stenosis_coefficient": -9.930673518866784e-05 - } - }, - { - "vessel_id": 34, - "vessel_length": 0.1133163787610899, - "vessel_name": "branch28_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3691237169933132e-09, - "L": 1.4364901170357192, - "R_poiseuille": 16.292464081781805, - "stenosis_coefficient": 0.008460460333282923 - } - }, - { - "vessel_id": 35, - "vessel_length": 0.1408917238471644, - "vessel_name": "branch28_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.7185452284894384e-09, - "L": 1.770113597658604, - "R_poiseuille": 19.897138979789496, - "stenosis_coefficient": 0.11724955124191633 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_8" - }, - "vessel_id": 36, - "vessel_length": 1.1913123850343972, - "vessel_name": "branch28_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.4499176199234383e-08, - "L": 14.99828882350692, - "R_poiseuille": 168.9370257809113, - "stenosis_coefficient": 0.20226335442284307 - } - }, - { - "vessel_id": 37, - "vessel_length": 0.1558046205341548, - "vessel_name": "branch29_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.81439544602933e-09, - "L": 0.5654686482094565, - "R_poiseuille": 1.8377639593788992, - "stenosis_coefficient": -4.479256758984913e-05 - } - }, - { - "vessel_id": 38, - "vessel_length": 0.7581169080643847, - "vessel_name": "branch30_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.8542734428267293e-08, - "L": 4.882656787379888, - "R_poiseuille": 28.14594769323111, - "stenosis_coefficient": 0.009697601163521507 - } - }, - { - "vessel_id": 39, - "vessel_length": 0.951309792830832, - "vessel_name": "branch30_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.824381375392974e-08, - "L": 7.760209986152595, - "R_poiseuille": 56.64310939808853, - "stenosis_coefficient": 0.17889402344033686 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_9" - }, - "vessel_id": 40, - "vessel_length": 0.8878614004687725, - "vessel_name": "branch30_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.6441801807373037e-08, - "L": 7.4890090528399, - "R_poiseuille": 56.51978572057841, - "stenosis_coefficient": 0.2551209481452766 - } - }, - { - "vessel_id": 41, - "vessel_length": 1.3933087944952214, - "vessel_name": "branch31_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.8772048679832015e-08, - "L": 6.304331350130275, - "R_poiseuille": 25.53578543522187, - "stenosis_coefficient": 7.823246838722234 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_10" - }, - "vessel_id": 42, - "vessel_length": 1.3874296295510535, - "vessel_name": "branch32_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.2420927666722568e-08, - "L": 13.345079204192519, - "R_poiseuille": 114.84951252503247, - "stenosis_coefficient": 1.696969803511413 - } - }, - { - "vessel_id": 43, - "vessel_length": 1.2720532346178934, - "vessel_name": "branch33_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.2713115912952867e-08, - "L": 4.872059121155858, - "R_poiseuille": 16.706285626783234, - "stenosis_coefficient": 0.0008963538313690405 - } - }, - { - "vessel_id": 44, - "vessel_length": 0.07413814137318625, - "vessel_name": "branch34_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.7109225871617176e-09, - "L": 0.5050839205722175, - "R_poiseuille": 3.079279589481256, - "stenosis_coefficient": -0.0003743656174357588 - } - }, - { - "vessel_id": 45, - "vessel_length": 0.6835632147915793, - "vessel_name": "branch35_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.1809790286163691e-08, - "L": 6.1640527029635495, - "R_poiseuille": 49.73445584970096, - "stenosis_coefficient": -0.006445644739562099 - } - }, - { - "vessel_id": 46, - "vessel_length": 0.6971206020209955, - "vessel_name": "branch35_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.871002982522588e-09, - "L": 8.41519248688527, - "R_poiseuille": 90.88484243571875, - "stenosis_coefficient": 1.4793370231153598 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_11" - }, - "vessel_id": 47, - "vessel_length": 0.7512820508518326, - "vessel_name": "branch35_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.1253307556342792e-08, - "L": 7.7668159636996075, - "R_poiseuille": 71.83982847573373, - "stenosis_coefficient": 0.004893506007443196 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_12" - }, - "vessel_id": 48, - "vessel_length": 3.057463759696044, - "vessel_name": "branch36_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.557854895768364e-08, - "L": 22.37166243149191, - "R_poiseuille": 146.47424805104194, - "stenosis_coefficient": 3.369595126571579 - } - }, - { - "vessel_id": 49, - "vessel_length": 0.9496079890052714, - "vessel_name": "branch37_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.0422273173555522e-08, - "L": 6.9306959630363165, - "R_poiseuille": 45.26646912089075, - "stenosis_coefficient": -0.002644128252017259 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_13" - }, - "vessel_id": 50, - "vessel_length": 2.0045402443387177, - "vessel_name": "branch38_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.310221731236157e-08, - "L": 14.631023441916964, - "R_poiseuille": 95.55789739238047, - "stenosis_coefficient": 2.10433108136133 - } - }, - { - "vessel_id": 51, - "vessel_length": 0.7139818673389967, - "vessel_name": "branch39_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.8359235922765807e-08, - "L": 4.3762333829784525, - "R_poiseuille": 24.00491187373974, - "stenosis_coefficient": 3.2656318132766415 - } - }, - { - "vessel_id": 52, - "vessel_length": 1.2098135849553884, - "vessel_name": "branch40_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.086383317233347e-08, - "L": 7.4759123486884755, - "R_poiseuille": 41.34343163993003, - "stenosis_coefficient": 0.27301321781642507 - } - }, - { - "vessel_id": 53, - "vessel_length": 0.21966625688935024, - "vessel_name": "branch41_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.85240648194805e-09, - "L": 1.952660195824614, - "R_poiseuille": 15.531364427033221, - "stenosis_coefficient": 0.0031190228406036444 - } - }, - { - "vessel_id": 54, - "vessel_length": 0.4635552949302021, - "vessel_name": "branch41_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.136740123017714e-09, - "L": 4.1169180882218175, - "R_poiseuille": 32.71571782004087, - "stenosis_coefficient": 0.008899076744168271 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_14" - }, - "vessel_id": 55, - "vessel_length": 1.235447647190862, - "vessel_name": "branch41_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.2264724515595482e-08, - "L": 10.696017743926326, - "R_poiseuille": 82.85543890244656, - "stenosis_coefficient": 0.01044249543186508 - } - }, - { - "vessel_id": 56, - "vessel_length": 0.541966306937773, - "vessel_name": "branch42_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.879109881382353e-09, - "L": 5.146211883166852, - "R_poiseuille": 43.72449736702581, - "stenosis_coefficient": -0.005801498281450447 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_15" - }, - "vessel_id": 57, - "vessel_length": 1.6790196506715351, - "vessel_name": "branch43_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.171635631146599e-08, - "L": 19.964366568687176, - "R_poiseuille": 212.38586042432655, - "stenosis_coefficient": 0.20967802889835543 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_16" - }, - "vessel_id": 58, - "vessel_length": 0.6101758693529614, - "vessel_name": "branch44_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.037945434196296e-09, - "L": 8.080826314018188, - "R_poiseuille": 95.74661843565647, - "stenosis_coefficient": -0.007354369294157293 - } - }, - { - "vessel_id": 59, - "vessel_length": 1.5708710381014765, - "vessel_name": "branch45_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.321526326940867e-08, - "L": 9.013583153149506, - "R_poiseuille": 46.288846467032215, - "stenosis_coefficient": 0.09890246189682052 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_17" - }, - "vessel_id": 60, - "vessel_length": 0.6994048703533935, - "vessel_name": "branch46_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.1293214460196082e-08, - "L": 6.731471406575816, - "R_poiseuille": 57.96857809801745, - "stenosis_coefficient": 1.2888871787562064 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_18" - }, - "vessel_id": 61, - "vessel_length": 0.8916502618658464, - "vessel_name": "branch47_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.7149793919664535e-08, - "L": 7.249009294751909, - "R_poiseuille": 52.730067570167854, - "stenosis_coefficient": 0.01182913289577082 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_19" - }, - "vessel_id": 62, - "vessel_length": 2.7463421709430342, - "vessel_name": "branch48_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.980814467202447e-08, - "L": 23.646356777121007, - "R_poiseuille": 182.17463953756953, - "stenosis_coefficient": 0.4679228429155233 - } - }, - { - "vessel_id": 63, - "vessel_length": 0.4479144623319764, - "vessel_name": "branch49_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.755615083220887e-09, - "L": 4.600117796765683, - "R_poiseuille": 42.26908036741031, - "stenosis_coefficient": -0.0015221046244199088 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_20" - }, - "vessel_id": 64, - "vessel_length": 0.7112296941340819, - "vessel_name": "branch50_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.440275427637408e-09, - "L": 11.808257248130959, - "R_poiseuille": 175.39539800844946, - "stenosis_coefficient": 1.9370833769736082 - } - }, - { - "vessel_id": 65, - "vessel_length": 0.42533483343073947, - "vessel_name": "branch51_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.701969301562087e-09, - "L": 5.862648327204785, - "R_poiseuille": 72.29838822196072, - "stenosis_coefficient": 0.01062633768372156 - } - }, - { - "vessel_id": 66, - "vessel_length": 0.8114218236874672, - "vessel_name": "branch51_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.740268058818437e-09, - "L": 12.836259960894541, - "R_poiseuille": 181.67273547295716, - "stenosis_coefficient": 4.247023681467859 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_21" - }, - "vessel_id": 67, - "vessel_length": 0.3482852208627482, - "vessel_name": "branch51_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.924591203169635e-09, - "L": 4.714822251302191, - "R_poiseuille": 57.103410248122806, - "stenosis_coefficient": 0.018276672486460695 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_22" - }, - "vessel_id": 68, - "vessel_length": 1.9747651599405993, - "vessel_name": "branch52_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.2136865975918875e-08, - "L": 18.861677788776447, - "R_poiseuille": 161.1982516339199, - "stenosis_coefficient": 2.425567016558952 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_23" - }, - "vessel_id": 69, - "vessel_length": 0.7711519337457966, - "vessel_name": "branch53_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.680877939672861e-08, - "L": 5.554434317035609, - "R_poiseuille": 35.80394171715377, - "stenosis_coefficient": 0.13791262077133556 - } - }, - { - "vessel_id": 70, - "vessel_length": 0.5744528633349233, - "vessel_name": "branch54_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.4718235439280243e-08, - "L": 3.534275175994684, - "R_poiseuille": 19.46082186137312, - "stenosis_coefficient": 0.02091668800336438 - } - }, - { - "vessel_id": 71, - "vessel_length": 0.5854170378707935, - "vessel_name": "branch55_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.2721961839737996e-08, - "L": 4.229846454077836, - "R_poiseuille": 27.34933144656623, - "stenosis_coefficient": 0.0044273105124093505 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_24" - }, - "vessel_id": 72, - "vessel_length": 1.3856830790186532, - "vessel_name": "branch56_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.8120447254641172e-08, - "L": 10.696705886594854, - "R_poiseuille": 73.88403972424608, - "stenosis_coefficient": -0.004348596527931027 - } - }, - { - "vessel_id": 73, - "vessel_length": 0.13141398733204784, - "vessel_name": "branch57_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.433683976878402e-09, - "L": 0.6167410211473422, - "R_poiseuille": 2.5905461384560744, - "stenosis_coefficient": -7.925534741104015e-05 - } - }, - { - "vessel_id": 74, - "vessel_length": 0.9837215570289305, - "vessel_name": "branch58_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.1962096582906894e-08, - "L": 6.925181208070337, - "R_poiseuille": 43.63206525330421, - "stenosis_coefficient": -0.006557907926163422 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_25" - }, - "vessel_id": 75, - "vessel_length": 1.6268724719976426, - "vessel_name": "branch59_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.4891006887962734e-08, - "L": 16.48636474288479, - "R_poiseuille": 149.47906457958607, - "stenosis_coefficient": 1.6635519405027668 - } - }, - { - "vessel_id": 76, - "vessel_length": 0.7189379658116499, - "vessel_name": "branch60_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.943807297287305e-09, - "L": 8.868878201364595, - "R_poiseuille": 97.88483115639154, - "stenosis_coefficient": 0.14202295145940852 - } - }, - { - "vessel_id": 77, - "vessel_length": 0.6031613093730539, - "vessel_name": "branch60_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.474975462649345e-09, - "L": 8.547834122667535, - "R_poiseuille": 108.37555498248054, - "stenosis_coefficient": 5.7204302621768734 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_26" - }, - "vessel_id": 78, - "vessel_length": 0.52456071048224, - "vessel_name": "branch60_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.111090420084729e-09, - "L": 5.964861686084706, - "R_poiseuille": 60.68517984279006, - "stenosis_coefficient": 0.008551117663226613 - } - }, - { - "vessel_id": 79, - "vessel_length": 0.7484344961809235, - "vessel_name": "branch61_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3530404837081883e-08, - "L": 6.463638901400951, - "R_poiseuille": 49.95014453290341, - "stenosis_coefficient": -0.0015630649095422337 - } - }, - { - "vessel_id": 80, - "vessel_length": 0.7031144664254374, - "vessel_name": "branch61_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.2210227975140483e-08, - "L": 6.311771100843579, - "R_poiseuille": 50.70015619100316, - "stenosis_coefficient": 0.09313867714481025 - } - }, - { - "vessel_id": 81, - "vessel_length": 0.3611216104843036, - "vessel_name": "branch61_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.61647233779187e-09, - "L": 3.0777608386732043, - "R_poiseuille": 23.472384801376098, - "stenosis_coefficient": 0.022404136052152048 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_27" - }, - "vessel_id": 82, - "vessel_length": 2.578388894821237, - "vessel_name": "branch62_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.368126677593007e-08, - "L": 23.69204748133513, - "R_poiseuille": 194.77987703336987, - "stenosis_coefficient": 0.23530671660601973 - } - }, - { - "vessel_id": 83, - "vessel_length": 1.01285639512377, - "vessel_name": "branch63_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.346528301673273e-08, - "L": 4.852066413125371, - "R_poiseuille": 20.8040243637392, - "stenosis_coefficient": 0.05372942942783647 - } - }, - { - "vessel_id": 84, - "vessel_length": 0.808961964697254, - "vessel_name": "branch64_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3309027200535244e-08, - "L": 7.6455589833846815, - "R_poiseuille": 64.6553949043159, - "stenosis_coefficient": 0.9850244435145563 - } - }, - { - "vessel_id": 85, - "vessel_length": 1.4447132719150624, - "vessel_name": "branch64_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.0767258881689885e-08, - "L": 15.533659912466064, - "R_poiseuille": 149.43152742443186, - "stenosis_coefficient": 1.2234536853178601 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_28" - }, - "vessel_id": 86, - "vessel_length": 0.31510151228426275, - "vessel_name": "branch64_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.1424891411725445e-09, - "L": 4.782232274785176, - "R_poiseuille": 64.9332406150214, - "stenosis_coefficient": 0.014121761829022304 - } - }, - { - "vessel_id": 87, - "vessel_length": 1.2040510161756994, - "vessel_name": "branch65_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.3509304404046217e-08, - "L": 9.649631251227031, - "R_poiseuille": 69.19852208756303, - "stenosis_coefficient": 9.913968782866935 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_29" - }, - "vessel_id": 88, - "vessel_length": 0.9188238112661333, - "vessel_name": "branch66_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.308557078756582e-08, - "L": 9.967636246429834, - "R_poiseuille": 96.74658477616676, - "stenosis_coefficient": 0.4335375468446274 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_30" - }, - "vessel_id": 89, - "vessel_length": 1.295691750912049, - "vessel_name": "branch67_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.815960143265868e-08, - "L": 14.27187176392049, - "R_poiseuille": 140.65012419245122, - "stenosis_coefficient": 6.863077184842725 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_31" - }, - "vessel_id": 90, - "vessel_length": 2.2649380500474936, - "vessel_name": "branch68_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.904126420324915e-08, - "L": 27.161895265686283, - "R_poiseuille": 291.42797286814067, - "stenosis_coefficient": 0.8403587976570299 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_32" - }, - "vessel_id": 91, - "vessel_length": 1.4445560024538837, - "vessel_name": "branch69_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.873966430469474e-08, - "L": 8.49920189788078, - "R_poiseuille": 44.75858938361012, - "stenosis_coefficient": 0.0034379043037513794 - } - }, - { - "vessel_id": 92, - "vessel_length": 0.16948463710753808, - "vessel_name": "branch70_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.6960486275796424e-09, - "L": 1.2198786493340976, - "R_poiseuille": 7.85624191927153, - "stenosis_coefficient": -0.00013851870473046037 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_33" - }, - "vessel_id": 93, - "vessel_length": 2.5753601577939262, - "vessel_name": "branch71_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.734899053374061e-08, - "L": 27.471775157026077, - "R_poiseuille": 262.19582796411765, - "stenosis_coefficient": 0.8826845800684497 - } - }, - { - "vessel_id": 94, - "vessel_length": 0.6289952402012521, - "vessel_name": "branch72_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.27501579293961e-08, - "L": 1.1929753227209159, - "R_poiseuille": 2.029062474597748, - "stenosis_coefficient": -0.0003070312107399008 - } - }, - { - "vessel_id": 95, - "vessel_length": 0.6109827240923978, - "vessel_name": "branch73_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.7207359972326834e-08, - "L": 3.427026651137577, - "R_poiseuille": 17.209427113261782, - "stenosis_coefficient": -0.003263049688842491 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_34" - }, - "vessel_id": 96, - "vessel_length": 3.3888546756436506, - "vessel_name": "branch74_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.857990407155108e-08, - "L": 30.548734050691913, - "R_poiseuille": 246.39554825551747, - "stenosis_coefficient": 0.6783818133094566 - } - }, - { - "vessel_id": 97, - "vessel_length": 0.611214345422349, - "vessel_name": "branch75_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.315968434577546e-09, - "L": 6.928290504199418, - "R_poiseuille": 70.26561485852834, - "stenosis_coefficient": 0.04807865460654962 - } - }, - { - "vessel_id": 98, - "vessel_length": 0.416201834518502, - "vessel_name": "branch75_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.556751910340338e-09, - "L": 4.802948169289961, - "R_poiseuille": 49.58906283887946, - "stenosis_coefficient": 0.08025877160142852 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_35" - }, - "vessel_id": 99, - "vessel_length": 0.14191378404545324, - "vessel_name": "branch75_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.928910402105771e-09, - "L": 1.6099064689413782, - "R_poiseuille": 16.340045644874948, - "stenosis_coefficient": -0.002407815670220812 - } - }, - { - "vessel_id": 100, - "vessel_length": 1.4665070334686685, - "vessel_name": "branch76_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.342822151161027e-08, - "L": 6.379492546804305, - "R_poiseuille": 24.84222126366244, - "stenosis_coefficient": 1.5634956611085382 - } - }, - { - "vessel_id": 101, - "vessel_length": 0.7221439726843699, - "vessel_name": "branch77_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.6596341056017046e-08, - "L": 4.940384948509888, - "R_poiseuille": 30.24508359392104, - "stenosis_coefficient": -0.004349725062992071 - } - }, - { - "vessel_id": 102, - "vessel_length": 0.5034373205326561, - "vessel_name": "branch77_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.0203085000454555e-08, - "L": 3.891598360912806, - "R_poiseuille": 26.9177199667982, - "stenosis_coefficient": 2.511180954265666e-05 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_36" - }, - "vessel_id": 103, - "vessel_length": 0.43643507588657493, - "vessel_name": "branch77_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.90339793737875e-09, - "L": 3.352006808455692, - "R_poiseuille": 23.036394309255112, - "stenosis_coefficient": -0.002634656013946628 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_37" - }, - "vessel_id": 104, - "vessel_length": 1.8223285969227923, - "vessel_name": "branch78_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.91236464851546e-08, - "L": 10.669427419510182, - "R_poiseuille": 55.90822965962876, - "stenosis_coefficient": 0.15517529236037966 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_38" - }, - "vessel_id": 105, - "vessel_length": 1.8964600844526125, - "vessel_name": "branch79_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.057607642593336e-08, - "L": 13.907809685679492, - "R_poiseuille": 91.27309615375273, - "stenosis_coefficient": 5.297437606973821 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_39" - }, - "vessel_id": 106, - "vessel_length": 1.9462368644775894, - "vessel_name": "branch80_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.221124665093072e-08, - "L": 18.297955850643227, - "R_poiseuille": 153.93011849353297, - "stenosis_coefficient": -0.015495021398820858 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_40" - }, - "vessel_id": 107, - "vessel_length": 2.0691552767977677, - "vessel_name": "branch81_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.397531230189269e-08, - "L": 12.505074265275365, - "R_poiseuille": 67.628310282911, - "stenosis_coefficient": 0.2074548966560277 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_41" - }, - "vessel_id": 108, - "vessel_length": 1.5314877042581692, - "vessel_name": "branch82_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.0194300065647384e-08, - "L": 17.875045777814037, - "R_poiseuille": 186.66229792744386, - "stenosis_coefficient": 1.571664712552897 - } - }, - { - "vessel_id": 109, - "vessel_length": 0.24582786567907236, - "vessel_name": "branch83_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.609017963178241e-09, - "L": 2.048650449942356, - "R_poiseuille": 15.276429986601276, - "stenosis_coefficient": -0.001256046397491457 - } - }, - { - "vessel_id": 110, - "vessel_length": 0.5047355886889087, - "vessel_name": "branch83_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 9.13410465590127e-09, - "L": 4.352401947016632, - "R_poiseuille": 33.58148578099896, - "stenosis_coefficient": 0.06346480937972404 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_42" - }, - "vessel_id": 111, - "vessel_length": 0.7446549997402947, - "vessel_name": "branch83_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3928069621182322e-08, - "L": 6.219776187084276, - "R_poiseuille": 46.48299509821661, - "stenosis_coefficient": -0.0009914101728754664 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_43" - }, - "vessel_id": 112, - "vessel_length": 1.603474169200975, - "vessel_name": "branch84_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.678452975068164e-08, - "L": 10.987184481047358, - "R_poiseuille": 67.36615063073837, - "stenosis_coefficient": 0.3754580688863928 - } - }, - { - "vessel_id": 113, - "vessel_length": 2.032819460778153, - "vessel_name": "branch85_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.3302218285994196e-08, - "L": 12.229646707424463, - "R_poiseuille": 65.84417945634029, - "stenosis_coefficient": 0.3100608126506722 - } - }, - { - "vessel_id": 114, - "vessel_length": 0.23451239270361057, - "vessel_name": "branch86_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.235187932615298e-09, - "L": 2.0264306996348607, - "R_poiseuille": 15.668163424988082, - "stenosis_coefficient": -0.0007845101455939162 - } - }, - { - "vessel_id": 115, - "vessel_length": 0.04826055052317403, - "vessel_name": "branch86_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.620086463702124e-10, - "L": 0.421456710785644, - "R_poiseuille": 3.293305441519731, - "stenosis_coefficient": -0.00016115224350473704 - } - }, - { - "vessel_id": 116, - "vessel_length": 1.259398809614766, - "vessel_name": "branch86_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.3848679582065356e-08, - "L": 10.39490073208519, - "R_poiseuille": 76.76837564863816, - "stenosis_coefficient": -0.003146848945193266 - } - }, - { - "vessel_id": 117, - "vessel_length": 0.8920212348651329, - "vessel_name": "branch87_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.1789652322706818e-08, - "L": 5.74820775693585, - "R_poiseuille": 33.14485161416498, - "stenosis_coefficient": 0.2222602060159043 - } - }, - { - "vessel_id": 118, - "vessel_length": 0.3987976977796542, - "vessel_name": "branch87_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.163646930693461e-09, - "L": 3.052355277565934, - "R_poiseuille": 20.903719706624397, - "stenosis_coefficient": 0.33640084106346946 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_44" - }, - "vessel_id": 119, - "vessel_length": 0.22559277415133924, - "vessel_name": "branch87_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.771295730100876e-09, - "L": 1.672812418028439, - "R_poiseuille": 11.09887954918891, - "stenosis_coefficient": -0.0010091025436389754 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_45" - }, - "vessel_id": 120, - "vessel_length": 0.8204456954795754, - "vessel_name": "branch88_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.4625520381275403e-08, - "L": 7.177686900997254, - "R_poiseuille": 56.183369709799976, - "stenosis_coefficient": 0.0008532625819189535 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_46" - }, - "vessel_id": 121, - "vessel_length": 0.693357974494855, - "vessel_name": "branch89_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3250805448954719e-08, - "L": 5.6737818512857405, - "R_poiseuille": 41.545112033015535, - "stenosis_coefficient": 0.036870378666360164 - } - }, - { - "vessel_id": 122, - "vessel_length": 1.5854845802238893, - "vessel_name": "branch90_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.6183079740369267e-08, - "L": 14.933702236592852, - "R_poiseuille": 125.85441636804968, - "stenosis_coefficient": 0.003385394684794815 - } - }, - { - "vessel_id": 123, - "vessel_length": 0.5280646035122366, - "vessel_name": "branch90_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.732522907220595e-09, - "L": 4.966265284398897, - "R_poiseuille": 41.78932250184097, - "stenosis_coefficient": 0.16019793405935884 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_47" - }, - "vessel_id": 124, - "vessel_length": 0.30456850785941825, - "vessel_name": "branch90_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.235242890808013e-09, - "L": 2.7597529079931693, - "R_poiseuille": 22.374370456004886, - "stenosis_coefficient": -0.000867530412994634 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_48" - }, - "vessel_id": 125, - "vessel_length": 2.1841735530418993, - "vessel_name": "branch91_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.767618107085036e-08, - "L": 15.710476643731594, - "R_poiseuille": 101.12937936284536, - "stenosis_coefficient": 4.525903420719852 - } - }, - { - "vessel_id": 126, - "vessel_length": 0.0525308327091072, - "vessel_name": "branch92_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.0613695225071521e-09, - "L": 0.40732123302140144, - "R_poiseuille": 2.8262353177300827, - "stenosis_coefficient": -0.0001740839819511823 - } - }, - { - "vessel_id": 127, - "vessel_length": 0.6006926738529617, - "vessel_name": "branch93_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.134203160875153e-09, - "L": 6.8381035734331705, - "R_poiseuille": 69.64611012713628, - "stenosis_coefficient": -0.006351002053245614 - } - }, - { - "vessel_id": 128, - "vessel_length": 0.3971979355160251, - "vessel_name": "branch93_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.3947135054580555e-09, - "L": 4.508306508773921, - "R_poiseuille": 45.78223617262981, - "stenosis_coefficient": 0.08476871174475555 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_49" - }, - "vessel_id": 129, - "vessel_length": 0.23405158835742126, - "vessel_name": "branch93_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.2378970199524683e-09, - "L": 2.610340399024153, - "R_poiseuille": 26.047214974514944, - "stenosis_coefficient": -0.002069810395029726 - } - }, - { - "vessel_id": 130, - "vessel_length": 1.7564678632179243, - "vessel_name": "branch94_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.7532523086144064e-08, - "L": 12.901842528040195, - "R_poiseuille": 84.80417851137268, - "stenosis_coefficient": -0.002252934670306111 - } - }, - { - "vessel_id": 131, - "vessel_length": 0.3506494197134689, - "vessel_name": "branch95_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.2220085827886665e-09, - "L": 3.0822521621431975, - "R_poiseuille": 24.24292395037213, - "stenosis_coefficient": -0.0017612785590134176 - } - }, - { - "vessel_id": 132, - "vessel_length": 0.751353956435578, - "vessel_name": "branch96_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.0987232649702102e-08, - "L": 7.949233576371104, - "R_poiseuille": 75.24801838183133, - "stenosis_coefficient": 0.0686347136153479 - } - }, - { - "vessel_id": 133, - "vessel_length": 0.29667593046399116, - "vessel_name": "branch96_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.12180234954691e-09, - "L": 3.295338156333335, - "R_poiseuille": 32.74921323665505, - "stenosis_coefficient": 0.30860487981651147 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_50" - }, - "vessel_id": 134, - "vessel_length": 0.2838705083106226, - "vessel_name": "branch96_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.157234843906209e-09, - "L": 2.998737617978695, - "R_poiseuille": 28.342886182630508, - "stenosis_coefficient": -0.0019689968990747302 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_51" - }, - "vessel_id": 135, - "vessel_length": 2.209355069611248, - "vessel_name": "branch97_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.812454715071038e-08, - "L": 19.94504785159606, - "R_poiseuille": 161.10190758038664, - "stenosis_coefficient": 0.7019103452362243 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_52" - }, - "vessel_id": 136, - "vessel_length": 1.4800327576573449, - "vessel_name": "branch98_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.6196520711653983e-08, - "L": 13.039693189790029, - "R_poiseuille": 102.7941715936553, - "stenosis_coefficient": 3.208691081601073 - } - }, - { - "vessel_id": 137, - "vessel_length": 0.04959465207359494, - "vessel_name": "branch99_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.372545976000418e-10, - "L": 0.45729573113694044, - "R_poiseuille": 3.7729177657308006, - "stenosis_coefficient": -1.380730267276886e-05 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_53" - }, - "vessel_id": 138, - "vessel_length": 2.190636927574853, - "vessel_name": "branch100_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.6427343637378958e-08, - "L": 27.82589371936103, - "R_poiseuille": 316.21890897544455, - "stenosis_coefficient": 1.1566279498802778 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_54" - }, - "vessel_id": 139, - "vessel_length": 1.8514224613548453, - "vessel_name": "branch101_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.7170286321538994e-08, - "L": 14.446563528823075, - "R_poiseuille": 100.86805553463809, - "stenosis_coefficient": 0.0975936326292985 - } - }, - { - "vessel_id": 140, - "vessel_length": 0.9763193461215273, - "vessel_name": "branch102_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.9465479907592107e-08, - "L": 5.114115777869901, - "R_poiseuille": 23.9753398630642, - "stenosis_coefficient": 0.08615414412988946 - } - }, - { - "vessel_id": 141, - "vessel_length": 0.9700779332887878, - "vessel_name": "branch102_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.9405079024222535e-08, - "L": 5.058825113165409, - "R_poiseuille": 23.60863066974851, - "stenosis_coefficient": 0.17769235734649128 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_55" - }, - "vessel_id": 142, - "vessel_length": 0.2654573437023177, - "vessel_name": "branch102_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.921640536860886e-09, - "L": 1.4057123981237523, - "R_poiseuille": 6.6614723955074915, - "stenosis_coefficient": 0.0645434249482301 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_56" - }, - "vessel_id": 143, - "vessel_length": 1.1945502040546236, - "vessel_name": "branch103_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.2409462391753824e-08, - "L": 17.452999861432115, - "R_poiseuille": 228.13644373500975, - "stenosis_coefficient": 0.2234601162194665 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_57" - }, - "vessel_id": 144, - "vessel_length": 1.9310746610389045, - "vessel_name": "branch104_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.3583288276854336e-08, - "L": 17.308646197439174, - "R_poiseuille": 138.81394763824017, - "stenosis_coefficient": 5.048506972019783 - } - }, - { - "vessel_id": 145, - "vessel_length": 1.8549457029011562, - "vessel_name": "branch105_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.1179758372611174e-08, - "L": 13.130029952298898, - "R_poiseuille": 83.16842989960799, - "stenosis_coefficient": 0.15978735682285464 - } - }, - { - "vessel_id": 146, - "vessel_length": 0.7825249302368995, - "vessel_name": "branch105_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.498968508195203e-08, - "L": 6.388966622837847, - "R_poiseuille": 46.67416280329348, - "stenosis_coefficient": 0.6810980358899503 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_58" - }, - "vessel_id": 147, - "vessel_length": 0.22956112265344816, - "vessel_name": "branch105_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.958117272200887e-09, - "L": 1.6680586594089133, - "R_poiseuille": 10.845577052494516, - "stenosis_coefficient": -0.0011017327501046548 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_59" - }, - "vessel_id": 148, - "vessel_length": 2.0704474220346873, - "vessel_name": "branch106_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.029364798600291e-08, - "L": 21.896389093465928, - "R_poiseuille": 207.18896235274497, - "stenosis_coefficient": 0.7993669727720518 - } - }, - { - "vessel_id": 149, - "vessel_length": 0.28031060209411607, - "vessel_name": "branch107_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.134035082095317e-09, - "L": 2.0115123270594384, - "R_poiseuille": 12.917545376320463, - "stenosis_coefficient": -0.0009050830883986259 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_60" - }, - "vessel_id": 150, - "vessel_length": 1.8429878931971733, - "vessel_name": "branch108_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.3086505263004195e-08, - "L": 22.588716530425074, - "R_poiseuille": 247.70183001390978, - "stenosis_coefficient": 2.714570661314533 - } - }, - { - "vessel_id": 151, - "vessel_length": 0.0186622778417643, - "vessel_name": "branch109_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.303955396288649e-10, - "L": 0.12722320045560667, - "R_poiseuille": 0.7761358797418295, - "stenosis_coefficient": 0.0021990311424318165 - } - }, - { - "vessel_id": 152, - "vessel_length": 1.1462608351629446, - "vessel_name": "branch109_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.8410821639447262e-08, - "L": 11.086296620929641, - "R_poiseuille": 95.93617081922345, - "stenosis_coefficient": 0.28011271707419194 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_61" - }, - "vessel_id": 153, - "vessel_length": 0.3377410934055567, - "vessel_name": "branch109_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.58679665405356e-09, - "L": 3.1753004914526866, - "R_poiseuille": 26.710336422490624, - "stenosis_coefficient": -0.0015478651487522046 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_62" - }, - "vessel_id": 154, - "vessel_length": 1.5473329584349158, - "vessel_name": "branch110_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.989542689465414e-08, - "L": 12.531876230195204, - "R_poiseuille": 90.81969163214907, - "stenosis_coefficient": 0.3988773578820312 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_63" - }, - "vessel_id": 155, - "vessel_length": 1.3860209873354536, - "vessel_name": "branch111_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.9507520580321444e-08, - "L": 15.207962610065453, - "R_poiseuille": 149.2990362905643, - "stenosis_coefficient": 0.21675330362620393 - } - }, - { - "vessel_id": 156, - "vessel_length": 0.5165824403623721, - "vessel_name": "branch112_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.1598034855333736e-08, - "L": 3.615680865763725, - "R_poiseuille": 22.647311742131144, - "stenosis_coefficient": -0.0012498877944626665 - } - }, - { - "vessel_id": 157, - "vessel_length": 0.770452476158731, - "vessel_name": "branch113_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.6083306406580305e-08, - "L": 5.788960613766145, - "R_poiseuille": 38.92364618867085, - "stenosis_coefficient": -0.0029759893846869456 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_64" - }, - "vessel_id": 158, - "vessel_length": 1.6470438692325127, - "vessel_name": "branch114_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.952815332247603e-08, - "L": 21.259851167608822, - "R_poiseuille": 245.51682688431072, - "stenosis_coefficient": 6.7488430638487955 - } - }, - { - "vessel_id": 159, - "vessel_length": 0.22776071817940843, - "vessel_name": "branch115_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.78981233092694e-09, - "L": 2.8509943031262956, - "R_poiseuille": 31.929131468720843, - "stenosis_coefficient": 0.01773878563476012 - } - }, - { - "vessel_id": 160, - "vessel_length": 0.21714442030142875, - "vessel_name": "branch115_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.65626295220276e-09, - "L": 2.7214248112059187, - "R_poiseuille": 30.515278459182007, - "stenosis_coefficient": 0.06160600819570855 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_65" - }, - "vessel_id": 161, - "vessel_length": 0.8433519629875749, - "vessel_name": "branch115_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.0473603900538317e-08, - "L": 10.41931114932247, - "R_poiseuille": 115.17118595283276, - "stenosis_coefficient": 0.07890425382826427 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_66" - }, - "vessel_id": 162, - "vessel_length": 1.831647199279749, - "vessel_name": "branch116_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.590617572830399e-08, - "L": 19.99971313163473, - "R_poiseuille": 195.38068496529792, - "stenosis_coefficient": 1.5291988694136036 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_67" - }, - "vessel_id": 163, - "vessel_length": 0.8879559682870087, - "vessel_name": "branch117_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.2294457425575641e-08, - "L": 9.89520504605341, - "R_poiseuille": 98.65862761864035, - "stenosis_coefficient": 7.917502713983395 - } - }, - { - "vessel_id": 164, - "vessel_length": 0.96520618026765, - "vessel_name": "branch118_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.420453444446828e-08, - "L": 6.063110602458655, - "R_poiseuille": 34.08574538944893, - "stenosis_coefficient": 0.5356133379926846 - } - }, - { - "vessel_id": 165, - "vessel_length": 0.6703950785660061, - "vessel_name": "branch119_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3183022346982425e-08, - "L": 5.337221819618195, - "R_poiseuille": 38.023504760322396, - "stenosis_coefficient": 0.005317662377323716 - } - }, - { - "vessel_id": 166, - "vessel_length": 1.2038473751456866, - "vessel_name": "branch119_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.1097278567720434e-08, - "L": 10.710291670657883, - "R_poiseuille": 85.25906190432802, - "stenosis_coefficient": 1.5162851950302998 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_68" - }, - "vessel_id": 167, - "vessel_length": 0.7224027740166741, - "vessel_name": "branch119_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3211761218421067e-08, - "L": 6.166822162379177, - "R_poiseuille": 47.10327856894818, - "stenosis_coefficient": 0.01856714150511237 - } - }, - { - "vessel_id": 168, - "vessel_length": 2.2416747602530096, - "vessel_name": "branch120_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.014857898659348e-08, - "L": 13.18150878497682, - "R_poiseuille": 69.36856530650408, - "stenosis_coefficient": 0.21212206201975967 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_69" - }, - "vessel_id": 169, - "vessel_length": 1.3192362301447014, - "vessel_name": "branch121_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.2561939578272445e-08, - "L": 12.014614931914547, - "R_poiseuille": 97.90449208492146, - "stenosis_coefficient": -0.00019279797623182802 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_70" - }, - "vessel_id": 170, - "vessel_length": 1.0517739141509332, - "vessel_name": "branch122_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.4155507564766925e-08, - "L": 12.039261709650901, - "R_poiseuille": 123.29646571900255, - "stenosis_coefficient": 0.5436488692735286 - } - }, - { - "vessel_id": 171, - "vessel_length": 0.2908085645766913, - "vessel_name": "branch123_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.412181499420098e-09, - "L": 2.442480316821504, - "R_poiseuille": 18.358230817399217, - "stenosis_coefficient": 0.29603498625367575 - } - }, - { - "vessel_id": 172, - "vessel_length": 1.424012535465686, - "vessel_name": "branch123_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.3895437181138975e-08, - "L": 13.213352330123278, - "R_poiseuille": 109.699977779701, - "stenosis_coefficient": 4.4828758761861724 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_71" - }, - "vessel_id": 173, - "vessel_length": 0.2332756260216596, - "vessel_name": "branch123_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.8685254303535645e-09, - "L": 2.188178024433902, - "R_poiseuille": 18.36487132218399, - "stenosis_coefficient": 0.02355052126941836 - } - }, - { - "vessel_id": 174, - "vessel_length": 0.08933625535225823, - "vessel_name": "branch124_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.6077370771546506e-09, - "L": 0.7746965592104588, - "R_poiseuille": 6.011208011943777, - "stenosis_coefficient": -0.0005758940618330996 - } - }, - { - "vessel_id": 175, - "vessel_length": 0.397648710425473, - "vessel_name": "branch124_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.133146769466608e-09, - "L": 3.45894865712368, - "R_poiseuille": 26.92211176016951, - "stenosis_coefficient": 0.019004876347998592 - } - }, - { - "vessel_id": 176, - "vessel_length": 0.8945602031072306, - "vessel_name": "branch124_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.7092760376099297e-08, - "L": 7.320338256217136, - "R_poiseuille": 53.60029599413787, - "stenosis_coefficient": -0.004350012174580513 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_72" - }, - "vessel_id": 177, - "vessel_length": 1.1423383551685218, - "vessel_name": "branch125_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.850597820730325e-08, - "L": 10.9565350505902, - "R_poiseuille": 94.02432081558848, - "stenosis_coefficient": 1.286395047359414 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_73" - }, - "vessel_id": 178, - "vessel_length": 2.2285190627274383, - "vessel_name": "branch126_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.027151428175234e-08, - "L": 19.24355760061555, - "R_poiseuille": 148.67795097819183, - "stenosis_coefficient": 0.12081320820496662 - } - }, - { - "vessel_id": 179, - "vessel_length": 1.6212067636049716, - "vessel_name": "branch127_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.6603067967212766e-08, - "L": 15.36584320840334, - "R_poiseuille": 130.31176685221564, - "stenosis_coefficient": 0.04379675264029805 - } - }, - { - "vessel_id": 180, - "vessel_length": 1.282198364801577, - "vessel_name": "branch127_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.6687635553740252e-08, - "L": 15.153877037112412, - "R_poiseuille": 160.23882229506563, - "stenosis_coefficient": 2.350245642297233 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_74" - }, - "vessel_id": 181, - "vessel_length": 0.1940528076665006, - "vessel_name": "branch127_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.908879364214913e-09, - "L": 2.004831279750573, - "R_poiseuille": 18.532067036795304, - "stenosis_coefficient": -0.0018452680607820163 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_75" - }, - "vessel_id": 182, - "vessel_length": 0.5607507398688213, - "vessel_name": "branch128_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.1122419187269179e-08, - "L": 4.426354641090247, - "R_poiseuille": 31.265053327646523, - "stenosis_coefficient": 1.404371780613012 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_76" - }, - "vessel_id": 183, - "vessel_length": 3.9779415762156565, - "vessel_name": "branch129_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.15089272005258e-08, - "L": 34.52810943646964, - "R_poiseuille": 268.1697834380188, - "stenosis_coefficient": 0.05213557847088714 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_77" - }, - "vessel_id": 184, - "vessel_length": 1.4286105395948658, - "vessel_name": "branch130_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.4253461710454063e-08, - "L": 21.67679323227909, - "R_poiseuille": 294.26646870111983, - "stenosis_coefficient": 3.9919113158705954 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_78" - }, - "vessel_id": 185, - "vessel_length": 1.9977889411535166, - "vessel_name": "branch131_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.1543712309752606e-08, - "L": 12.206351434457376, - "R_poiseuille": 66.75415301672963, - "stenosis_coefficient": 2.3056674683148444 - } - }, - { - "vessel_id": 186, - "vessel_length": 0.5617562776124612, - "vessel_name": "branch132_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.2643314046105608e-08, - "L": 3.922470315474491, - "R_poiseuille": 24.51178572778096, - "stenosis_coefficient": 0.009260456797604066 - } - }, - { - "vessel_id": 187, - "vessel_length": 0.42672901571828004, - "vessel_name": "branch132_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.369096464058734e-09, - "L": 3.851381835259205, - "R_poiseuille": 31.10393107982454, - "stenosis_coefficient": 0.14013117342713352 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_79" - }, - "vessel_id": 188, - "vessel_length": 0.8735242288475483, - "vessel_name": "branch132_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.5878352724373658e-08, - "L": 7.504232187715227, - "R_poiseuille": 57.684328580029074, - "stenosis_coefficient": 0.010607118109219554 - } - }, - { - "vessel_id": 189, - "vessel_length": 0.7120827001719353, - "vessel_name": "branch133_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3069156370860951e-08, - "L": 6.060608839472396, - "R_poiseuille": 46.15828969562926, - "stenosis_coefficient": -0.007516731804120262 - } - }, - { - "vessel_id": 190, - "vessel_length": 1.0077097131491346, - "vessel_name": "branch133_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.6012601105416653e-08, - "L": 9.850567503658166, - "R_poiseuille": 86.15478013127274, - "stenosis_coefficient": 0.029782265853926508 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_80" - }, - "vessel_id": 191, - "vessel_length": 0.4917976064181432, - "vessel_name": "branch133_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.721227799463997e-09, - "L": 5.549398547757552, - "R_poiseuille": 56.02440859071147, - "stenosis_coefficient": -0.0037358919096864133 - } - }, - { - "vessel_id": 192, - "vessel_length": 1.262636440146434, - "vessel_name": "branch134_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3892954430600401e-08, - "L": 17.485047594505048, - "R_poiseuille": 216.62759106294538, - "stenosis_coefficient": 0.13888698535152708 - } - }, - { - "vessel_id": 193, - "vessel_length": 0.46392895638658593, - "vessel_name": "branch134_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.87823890959809e-09, - "L": 6.7018417365488165, - "R_poiseuille": 86.61569917799557, - "stenosis_coefficient": 0.11403162156482816 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_81" - }, - "vessel_id": 194, - "vessel_length": 0.4552562346352282, - "vessel_name": "branch134_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.7726665293888664e-09, - "L": 6.594655136250097, - "R_poiseuille": 85.46541172964318, - "stenosis_coefficient": 0.08981610437830075 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_82" - }, - "vessel_id": 195, - "vessel_length": 1.009448557146865, - "vessel_name": "branch135_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.9049190136796895e-08, - "L": 8.36174575795873, - "R_poiseuille": 61.97664026625221, - "stenosis_coefficient": 0.05925590721356802 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_83" - }, - "vessel_id": 196, - "vessel_length": 0.7885756149364074, - "vessel_name": "branch136_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.919343290039753e-09, - "L": 11.890603891758822, - "R_poiseuille": 160.40677194675675, - "stenosis_coefficient": 0.9953179210280904 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_84" - }, - "vessel_id": 197, - "vessel_length": 2.2756488074671433, - "vessel_name": "branch137_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.0647780268450735e-08, - "L": 16.067483673475856, - "R_poiseuille": 101.5212961709619, - "stenosis_coefficient": 0.7396220855780873 - } - }, - { - "vessel_id": 198, - "vessel_length": 0.2760137505564742, - "vessel_name": "branch138_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 9.354636091660975e-09, - "L": 1.2895526372672188, - "R_poiseuille": 5.392688947387771, - "stenosis_coefficient": 0.026101634071027308 - } - }, - { - "vessel_id": 199, - "vessel_length": 1.3368910578317676, - "vessel_name": "branch138_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.567221815789866e-08, - "L": 7.906302628547979, - "R_poiseuille": 41.85032941248089, - "stenosis_coefficient": 0.10173650958538297 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_85" - }, - "vessel_id": 200, - "vessel_length": 1.2002256069240955, - "vessel_name": "branch138_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.373644315573067e-08, - "L": 6.743683559231753, - "R_poiseuille": 33.909027710195545, - "stenosis_coefficient": 0.08882365685805574 - } - }, - { - "vessel_id": 201, - "vessel_length": 1.7693205145222453, - "vessel_name": "branch139_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.4710673906662763e-08, - "L": 19.558749273562764, - "R_poiseuille": 193.4460909547245, - "stenosis_coefficient": 0.09296689310253535 - } - }, - { - "vessel_id": 202, - "vessel_length": 1.06214931132661, - "vessel_name": "branch139_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3581640772459005e-08, - "L": 12.763716034679947, - "R_poiseuille": 137.22737243375025, - "stenosis_coefficient": 1.4584019514986772 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_86" - }, - "vessel_id": 203, - "vessel_length": 0.48303953446564885, - "vessel_name": "branch139_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.232422883152953e-09, - "L": 5.755167907030063, - "R_poiseuille": 61.34870458563243, - "stenosis_coefficient": 0.12468332673971436 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_87" - }, - "vessel_id": 204, - "vessel_length": 0.843109508708837, - "vessel_name": "branch140_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.4084845182517803e-08, - "L": 7.851421551887109, - "R_poiseuille": 65.418584701195, - "stenosis_coefficient": 0.11907591934390345 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_88" - }, - "vessel_id": 205, - "vessel_length": 2.0603411078869778, - "vessel_name": "branch141_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.335491022619064e-08, - "L": 19.782323013481545, - "R_poiseuille": 169.9466444677624, - "stenosis_coefficient": 1.8400738779673824 - } - }, - { - "vessel_id": 206, - "vessel_length": 0.6602430182165941, - "vessel_name": "branch142_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.8135909220198244e-08, - "L": 3.794323931654896, - "R_poiseuille": 19.516580419905655, - "stenosis_coefficient": 0.00039914429558572635 - } - }, - { - "vessel_id": 207, - "vessel_length": 1.585889694767858, - "vessel_name": "branch142_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.592946056056992e-08, - "L": 11.00169376270429, - "R_poiseuille": 68.29422140673535, - "stenosis_coefficient": 1.2892066469056835 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_89" - }, - "vessel_id": 208, - "vessel_length": 0.09433776315388086, - "vessel_name": "branch142_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.4066523771139305e-09, - "L": 0.582683643260534, - "R_poiseuille": 3.220597162963081, - "stenosis_coefficient": 0.07887520048763677 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_90" - }, - "vessel_id": 209, - "vessel_length": 2.1364480183130805, - "vessel_name": "branch143_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.1121242503719746e-08, - "L": 17.36672269371948, - "R_poiseuille": 126.32324771260508, - "stenosis_coefficient": 0.09753760315637029 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_91" - }, - "vessel_id": 210, - "vessel_length": 1.8509017198379139, - "vessel_name": "branch144_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.0923751499746944e-08, - "L": 13.144754212399663, - "R_poiseuille": 83.52910899252765, - "stenosis_coefficient": 0.021909355571244515 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_92" - }, - "vessel_id": 211, - "vessel_length": 2.022718739860449, - "vessel_name": "branch145_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.344802466203728e-08, - "L": 19.027624043259635, - "R_poiseuille": 160.1492375836278, - "stenosis_coefficient": 4.90346428742025 - } - }, - { - "vessel_id": 212, - "vessel_length": 0.3284897109005369, - "vessel_name": "branch146_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.753265268336677e-09, - "L": 2.923163954837516, - "R_poiseuille": 23.27408806752983, - "stenosis_coefficient": 0.008770415451516548 - } - }, - { - "vessel_id": 213, - "vessel_length": 1.512182409452769, - "vessel_name": "branch146_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.8090332136395305e-08, - "L": 19.359316107216173, - "R_poiseuille": 221.73702288592912, - "stenosis_coefficient": 12.943715997831246 - } - }, - { - "boundary_conditions": { - "outlet": "RESISTANCE_93" - }, - "vessel_id": 214, - "vessel_length": 0.487915826971711, - "vessel_name": "branch146_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.300811088509598e-09, - "L": 5.810171502749099, - "R_poiseuille": 61.90193715062472, - "stenosis_coefficient": 0.1115127876855571 - } - } - ] -} \ No newline at end of file + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 75.20299897326457, 96.65267412104662, 119.99354078316293, + 144.17380006076564, 167.9658841666732, 190.3696829636227, + 210.539633459793, 228.17046625364924, 242.9747282756045, + 255.2014820400909, 264.9641929042962, 272.5425139975115, + 278.1173908184526, 281.71507365610944, 283.4287638529393, + 283.1528247869028, 280.9953282566522, 277.01330499064323, + 271.42719348182607, 264.5481890704203, 256.6550987507877, + 248.09449679231844, 239.07228804540608, 229.77115927781313, + 220.27790209477615, 210.66210491346732, 201.0046443422202, + 191.43529598397646, 182.11466390146362, 173.25197793789246, + 164.97566318917916, 157.33328152109064, 150.2111639710666, + 143.3062267750492, 136.1796666660292, 128.35920133027145, + 119.3648034925374, 108.93952592334738, 97.04733249512748, + 83.91749296354521, 70.08943644257923, 56.22987686297122, + 43.0640615598422, 31.27367207163051, 21.326966664990948, + 13.43401984507759, 7.669076370632103, 3.740251938280678, + 1.4637389428075391, 0.4392048839653444, 0.4553672117473945, + 1.308051498843595, 2.867902490283212, 5.084102812636766, + 7.812543206442015, 10.922185934965515, 14.162611975365328, + 17.2596912659035, 19.919103623620533, 21.93250239088451, + 23.144467808458348, 23.603003428606115, 23.40149680224406, + 22.765029351425937, 21.903198808636184, 20.98860513570841, + 20.10078155357604, 19.220633057034316, 18.255074714906527, + 17.079230037750044, 15.60883210599078, 13.833341524659831, + 11.832825655557745, 9.77472462346009, 7.861520308776615, + 6.256079921580375, 5.076284178657773, 4.313387383470458, + 3.8751743405077996, 3.6233866077584307, 3.4100685192271674, + 3.1528936655615403, 2.8632600365853316, 2.6399974317076484, + 2.6403660750881706, 3.003355397122063, 3.82233416362992, + 5.044994517247155, 6.5484299700527515, 8.125004113094377, + 9.610667498260323, 10.97085284285842, 12.389307510260862, + 14.331752993739022, 17.43007161210963, 22.566724857016226, + 30.466563730966133, 41.76171723743491, 56.77632872832844, + 75.20299897326457 + ], + "t": [ + 0.0, 0.007130101010101008, 0.014260202020202017, 0.021390303030303023, + 0.028520404040404033, 0.035650505050505044, 0.04278060606060605, + 0.04991070707070706, 0.05704080808080807, 0.06417090909090907, + 0.07130101010101009, 0.07843111111111109, 0.0855612121212121, + 0.09269131313131311, 0.09982141414141411, 0.10695151515151513, + 0.11408161616161613, 0.12121171717171714, 0.12834181818181814, + 0.13547191919191917, 0.14260202020202017, 0.14973212121212118, + 0.15686222222222218, 0.16399232323232318, 0.1711224242424242, + 0.17825252525252522, 0.18538262626262622, 0.19251272727272722, + 0.19964282828282823, 0.20677292929292923, 0.21390303030303026, + 0.22103313131313126, 0.22816323232323227, 0.23529333333333327, + 0.24242343434343427, 0.2495535353535353, 0.2566836363636363, + 0.2638137373737373, 0.27094383838383834, 0.2780739393939393, + 0.28520404040404035, 0.2923341414141413, 0.29946424242424236, + 0.3065943434343434, 0.31372444444444436, 0.3208545454545454, + 0.32798464646464637, 0.3351147474747474, 0.3422448484848484, + 0.3493749494949494, 0.35650505050505044, 0.3636351515151514, + 0.37076525252525244, 0.3778953535353534, 0.38502545454545445, + 0.3921555555555555, 0.39928565656565645, 0.4064157575757575, + 0.41354585858585846, 0.4206759595959595, 0.4278060606060605, + 0.4349361616161615, 0.44206626262626253, 0.4491963636363635, + 0.45632646464646454, 0.46345656565656557, 0.47058666666666654, + 0.4777167676767676, 0.48484686868686855, 0.4919769696969696, + 0.4991070707070706, 0.5062371717171716, 0.5133672727272726, + 0.5204973737373736, 0.5276274747474746, 0.5347575757575757, + 0.5418876767676767, 0.5490177777777776, 0.5561478787878786, + 0.5632779797979797, 0.5704080808080807, 0.5775381818181817, + 0.5846682828282826, 0.5917983838383837, 0.5989284848484847, + 0.6060585858585857, 0.6131886868686868, 0.6203187878787877, + 0.6274488888888887, 0.6345789898989898, 0.6417090909090908, + 0.6488391919191918, 0.6559692929292927, 0.6630993939393938, + 0.6702294949494948, 0.6773595959595958, 0.6844896969696967, + 0.6916197979797978, 0.6987498989898988, 0.7058799999999998 + ] + } + }, + { + "bc_name": "RESISTANCE_0", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5498.7352908831 + } + }, + { + "bc_name": "RESISTANCE_1", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6395.90661976335 + } + }, + { + "bc_name": "RESISTANCE_2", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6395.90661976335 + } + }, + { + "bc_name": "RESISTANCE_3", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4967.70988574267 + } + }, + { + "bc_name": "RESISTANCE_4", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3714.2687347715 + } + }, + { + "bc_name": "RESISTANCE_5", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5171.48649207728 + } + }, + { + "bc_name": "RESISTANCE_6", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3382.949932341 + } + }, + { + "bc_name": "RESISTANCE_7", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5053.51674230097 + } + }, + { + "bc_name": "RESISTANCE_8", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5972.50259803863 + } + }, + { + "bc_name": "RESISTANCE_9", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4806.11337621455 + } + }, + { + "bc_name": "RESISTANCE_10", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5665.52978369007 + } + }, + { + "bc_name": "RESISTANCE_11", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5714.82998380798 + } + }, + { + "bc_name": "RESISTANCE_12", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4912.03366380404 + } + }, + { + "bc_name": "RESISTANCE_13", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4066.44572311571 + } + }, + { + "bc_name": "RESISTANCE_14", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4093.36138650337 + } + }, + { + "bc_name": "RESISTANCE_15", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6951.52470108444 + } + }, + { + "bc_name": "RESISTANCE_16", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7277.06705089581 + } + }, + { + "bc_name": "RESISTANCE_17", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5492.24220788137 + } + }, + { + "bc_name": "RESISTANCE_18", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4285.29799962289 + } + }, + { + "bc_name": "RESISTANCE_19", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4912.03366380404 + } + }, + { + "bc_name": "RESISTANCE_20", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7787.55548633284 + } + }, + { + "bc_name": "RESISTANCE_21", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6395.90661976335 + } + }, + { + "bc_name": "RESISTANCE_22", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5855.14374377891 + } + }, + { + "bc_name": "RESISTANCE_23", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4535.5587808418 + } + }, + { + "bc_name": "RESISTANCE_24", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5112.56156376216 + } + }, + { + "bc_name": "RESISTANCE_25", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6122.44897959184 + } + }, + { + "bc_name": "RESISTANCE_26", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5440.75561213941 + } + }, + { + "bc_name": "RESISTANCE_27", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5524.35319031397 + } + }, + { + "bc_name": "RESISTANCE_28", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7277.06705089581 + } + }, + { + "bc_name": "RESISTANCE_29", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5346.4499572284 + } + }, + { + "bc_name": "RESISTANCE_30", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5007.41096823299 + } + }, + { + "bc_name": "RESISTANCE_31", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7210.23853872499 + } + }, + { + "bc_name": "RESISTANCE_32", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3743.63581910752 + } + }, + { + "bc_name": "RESISTANCE_33", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5346.4499572284 + } + }, + { + "bc_name": "RESISTANCE_34", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6086.61249581545 + } + }, + { + "bc_name": "RESISTANCE_35", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5346.39278878541 + } + }, + { + "bc_name": "RESISTANCE_36", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4406.3539624138 + } + }, + { + "bc_name": "RESISTANCE_37", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4343.41971912552 + } + }, + { + "bc_name": "RESISTANCE_38", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3712.80695631511 + } + }, + { + "bc_name": "RESISTANCE_39", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5665.52978369007 + } + }, + { + "bc_name": "RESISTANCE_40", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4336.16870587045 + } + }, + { + "bc_name": "RESISTANCE_41", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5053.51674230097 + } + }, + { + "bc_name": "RESISTANCE_42", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3941.84983128883 + } + }, + { + "bc_name": "RESISTANCE_43", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3809.11266720418 + } + }, + { + "bc_name": "RESISTANCE_44", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4321.89471864465 + } + }, + { + "bc_name": "RESISTANCE_45", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4157.55469263198 + } + }, + { + "bc_name": "RESISTANCE_46", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4786.29205954147 + } + }, + { + "bc_name": "RESISTANCE_47", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5260.66600031564 + } + }, + { + "bc_name": "RESISTANCE_48", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5062.6759279885 + } + }, + { + "bc_name": "RESISTANCE_49", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6415.73994867408 + } + }, + { + "bc_name": "RESISTANCE_50", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5053.51674230097 + } + }, + { + "bc_name": "RESISTANCE_51", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4093.36138650337 + } + }, + { + "bc_name": "RESISTANCE_52", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4093.36138650337 + } + }, + { + "bc_name": "RESISTANCE_53", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7675.08794371602 + } + }, + { + "bc_name": "RESISTANCE_54", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3389.07227535534 + } + }, + { + "bc_name": "RESISTANCE_55", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3011.91211240456 + } + }, + { + "bc_name": "RESISTANCE_56", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 8710.04267920913 + } + }, + { + "bc_name": "RESISTANCE_57", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4502.27364819234 + } + }, + { + "bc_name": "RESISTANCE_58", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4165.48066175603 + } + }, + { + "bc_name": "RESISTANCE_59", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5053.51674230097 + } + }, + { + "bc_name": "RESISTANCE_60", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7277.06705089581 + } + }, + { + "bc_name": "RESISTANCE_61", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5384.30475164894 + } + }, + { + "bc_name": "RESISTANCE_62", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4093.36138650337 + } + }, + { + "bc_name": "RESISTANCE_63", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5693.72323950077 + } + }, + { + "bc_name": "RESISTANCE_64", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6846.42331435353 + } + }, + { + "bc_name": "RESISTANCE_65", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5931.12774462936 + } + }, + { + "bc_name": "RESISTANCE_66", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5665.59398087295 + } + }, + { + "bc_name": "RESISTANCE_67", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6508.93351124418 + } + }, + { + "bc_name": "RESISTANCE_68", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4093.36138650337 + } + }, + { + "bc_name": "RESISTANCE_69", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5443.21367335275 + } + }, + { + "bc_name": "RESISTANCE_70", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5616.96773613732 + } + }, + { + "bc_name": "RESISTANCE_71", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5295.95565519798 + } + }, + { + "bc_name": "RESISTANCE_72", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5306.82280518654 + } + }, + { + "bc_name": "RESISTANCE_73", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4933.84535684037 + } + }, + { + "bc_name": "RESISTANCE_74", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5054.2829994137 + } + }, + { + "bc_name": "RESISTANCE_75", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4767.58045292014 + } + }, + { + "bc_name": "RESISTANCE_76", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5664.88789186862 + } + }, + { + "bc_name": "RESISTANCE_77", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7277.06705089581 + } + }, + { + "bc_name": "RESISTANCE_78", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5071.55970747244 + } + }, + { + "bc_name": "RESISTANCE_79", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4912.03366380404 + } + }, + { + "bc_name": "RESISTANCE_80", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6488.66106478928 + } + }, + { + "bc_name": "RESISTANCE_81", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 8134.82110172594 + } + }, + { + "bc_name": "RESISTANCE_82", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4912.03366380404 + } + }, + { + "bc_name": "RESISTANCE_83", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 8732.48046107497 + } + }, + { + "bc_name": "RESISTANCE_84", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4024.68473302925 + } + }, + { + "bc_name": "RESISTANCE_85", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3143.69845644406 + } + }, + { + "bc_name": "RESISTANCE_86", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 6798.63574042809 + } + }, + { + "bc_name": "RESISTANCE_87", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5665.52978369007 + } + }, + { + "bc_name": "RESISTANCE_88", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5344.97349783974 + } + }, + { + "bc_name": "RESISTANCE_89", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 2944.53670659458 + } + }, + { + "bc_name": "RESISTANCE_90", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 4472.47193523861 + } + }, + { + "bc_name": "RESISTANCE_91", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 3717.44908643689 + } + }, + { + "bc_name": "RESISTANCE_92", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 7168.03058359716 + } + }, + { + "bc_name": "RESISTANCE_93", + "bc_type": "RESISTANCE", + "bc_values": { + "Pd": 3999.0, + "R": 5665.52978369007 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0], + "junction_name": "J0", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [1, 8] + }, + { + "inlet_vessels": [3], + "junction_name": "J1", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [ + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + ], + "R_poiseuille": [ + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + ], + "stenosis_coefficient": [ + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + ] + }, + "outlet_vessels": [ + 4, 37, 49, 59, 70, 73, 91, 94, 100, 137, 156, 168, 186, 198 + ] + }, + { + "inlet_vessels": [4], + "junction_name": "J2", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [5, 48] + }, + { + "inlet_vessels": [8], + "junction_name": "J3", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], + "R_poiseuille": [ + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + ], + "stenosis_coefficient": [ + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + ] + }, + "outlet_vessels": [9, 18, 26, 28, 41, 51, 68, 92, 105, 164, 183, 212] + }, + { + "inlet_vessels": [9], + "junction_name": "J4", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0] + }, + "outlet_vessels": [10, 125, 185] + }, + { + "inlet_vessels": [10], + "junction_name": "J5", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0, 0.0, 0.0] + }, + "outlet_vessels": [11, 16, 69, 83, 87] + }, + { + "inlet_vessels": [11], + "junction_name": "J6", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [12, 21] + }, + { + "inlet_vessels": [12], + "junction_name": "J7", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [13, 65] + }, + { + "inlet_vessels": [16], + "junction_name": "J8", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [17, 184] + }, + { + "inlet_vessels": [18], + "junction_name": "J9", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0] + }, + "outlet_vessels": [19, 106, 130] + }, + { + "inlet_vessels": [19], + "junction_name": "J10", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [20, 148] + }, + { + "inlet_vessels": [21], + "junction_name": "J11", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [22, 30] + }, + { + "inlet_vessels": [22], + "junction_name": "J12", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [23, 162] + }, + { + "inlet_vessels": [23], + "junction_name": "J13", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [24, 63] + }, + { + "inlet_vessels": [24], + "junction_name": "J14", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [25, 29] + }, + { + "inlet_vessels": [26], + "junction_name": "J15", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0] + }, + "outlet_vessels": [27, 76, 149] + }, + { + "inlet_vessels": [30], + "junction_name": "J16", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [31, 204] + }, + { + "inlet_vessels": [31], + "junction_name": "J17", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [32, 58] + }, + { + "inlet_vessels": [32], + "junction_name": "J18", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [33, 170] + }, + { + "inlet_vessels": [33], + "junction_name": "J19", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [34, 61] + }, + { + "inlet_vessels": [37], + "junction_name": "J20", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0] + }, + "outlet_vessels": [38, 43, 56, 62, 90, 113, 145, 171] + }, + { + "inlet_vessels": [41], + "junction_name": "J21", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [42, 139] + }, + { + "inlet_vessels": [43], + "junction_name": "J22", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0] + }, + "outlet_vessels": [44, 107, 163] + }, + { + "inlet_vessels": [44], + "junction_name": "J23", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [45, 143] + }, + { + "inlet_vessels": [49], + "junction_name": "J24", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [50, 140] + }, + { + "inlet_vessels": [51], + "junction_name": "J25", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [52, 154] + }, + { + "inlet_vessels": [52], + "junction_name": "J26", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [53, 136] + }, + { + "inlet_vessels": [56], + "junction_name": "J27", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [57, 192] + }, + { + "inlet_vessels": [59], + "junction_name": "J28", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [60, 121] + }, + { + "inlet_vessels": [63], + "junction_name": "J29", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [64, 120] + }, + { + "inlet_vessels": [70], + "junction_name": "J30", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0] + }, + "outlet_vessels": [71, 144, 205] + }, + { + "inlet_vessels": [71], + "junction_name": "J31", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [72, 112] + }, + { + "inlet_vessels": [73], + "junction_name": "J32", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0] + }, + "outlet_vessels": [74, 79, 197] + }, + { + "inlet_vessels": [74], + "junction_name": "J33", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [75, 211] + }, + { + "inlet_vessels": [81], + "junction_name": "J34", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [82, 178] + }, + { + "inlet_vessels": [83], + "junction_name": "J35", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0] + }, + "outlet_vessels": [84, 109, 135] + }, + { + "inlet_vessels": [87], + "junction_name": "J36", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0] + }, + "outlet_vessels": [88, 89, 108] + }, + { + "inlet_vessels": [92], + "junction_name": "J37", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [93, 97] + }, + { + "inlet_vessels": [94], + "junction_name": "J38", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [95, 104] + }, + { + "inlet_vessels": [95], + "junction_name": "J39", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [96, 122] + }, + { + "inlet_vessels": [100], + "junction_name": "J40", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [101, 126] + }, + { + "inlet_vessels": [113], + "junction_name": "J41", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [114, 151] + }, + { + "inlet_vessels": [116], + "junction_name": "J42", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [117, 210] + }, + { + "inlet_vessels": [126], + "junction_name": "J43", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0] + }, + "outlet_vessels": [127, 195, 201] + }, + { + "inlet_vessels": [130], + "junction_name": "J44", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [131, 159] + }, + { + "inlet_vessels": [131], + "junction_name": "J45", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [132, 155] + }, + { + "inlet_vessels": [137], + "junction_name": "J46", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [138, 209] + }, + { + "inlet_vessels": [149], + "junction_name": "J47", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [150, 206] + }, + { + "inlet_vessels": [156], + "junction_name": "J48", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [157, 189] + }, + { + "inlet_vessels": [157], + "junction_name": "J49", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [158, 174] + }, + { + "inlet_vessels": [164], + "junction_name": "J50", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [165, 179] + }, + { + "inlet_vessels": [168], + "junction_name": "J51", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [169, 182] + }, + { + "inlet_vessels": [176], + "junction_name": "J52", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [177, 196] + }, + { + "inlet_vessels": [1], + "junction_name": "J53", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [2] + }, + { + "inlet_vessels": [2], + "junction_name": "J54", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [3] + }, + { + "inlet_vessels": [5], + "junction_name": "J55", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [6] + }, + { + "inlet_vessels": [6], + "junction_name": "J56", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [7] + }, + { + "inlet_vessels": [13], + "junction_name": "J57", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [14] + }, + { + "inlet_vessels": [14], + "junction_name": "J58", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [15] + }, + { + "inlet_vessels": [34], + "junction_name": "J59", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [35] + }, + { + "inlet_vessels": [35], + "junction_name": "J60", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [36] + }, + { + "inlet_vessels": [38], + "junction_name": "J61", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [39] + }, + { + "inlet_vessels": [39], + "junction_name": "J62", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [40] + }, + { + "inlet_vessels": [45], + "junction_name": "J63", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [46] + }, + { + "inlet_vessels": [46], + "junction_name": "J64", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [47] + }, + { + "inlet_vessels": [53], + "junction_name": "J65", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [54] + }, + { + "inlet_vessels": [54], + "junction_name": "J66", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [55] + }, + { + "inlet_vessels": [65], + "junction_name": "J67", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [66] + }, + { + "inlet_vessels": [66], + "junction_name": "J68", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [67] + }, + { + "inlet_vessels": [76], + "junction_name": "J69", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [77] + }, + { + "inlet_vessels": [77], + "junction_name": "J70", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [78] + }, + { + "inlet_vessels": [79], + "junction_name": "J71", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [80] + }, + { + "inlet_vessels": [80], + "junction_name": "J72", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [81] + }, + { + "inlet_vessels": [84], + "junction_name": "J73", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [85] + }, + { + "inlet_vessels": [85], + "junction_name": "J74", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [86] + }, + { + "inlet_vessels": [97], + "junction_name": "J75", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [98] + }, + { + "inlet_vessels": [98], + "junction_name": "J76", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [99] + }, + { + "inlet_vessels": [101], + "junction_name": "J77", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [102] + }, + { + "inlet_vessels": [102], + "junction_name": "J78", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [103] + }, + { + "inlet_vessels": [109], + "junction_name": "J79", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [110] + }, + { + "inlet_vessels": [110], + "junction_name": "J80", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [111] + }, + { + "inlet_vessels": [114], + "junction_name": "J81", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [115] + }, + { + "inlet_vessels": [115], + "junction_name": "J82", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [116] + }, + { + "inlet_vessels": [117], + "junction_name": "J83", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [118] + }, + { + "inlet_vessels": [118], + "junction_name": "J84", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [119] + }, + { + "inlet_vessels": [122], + "junction_name": "J85", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [123] + }, + { + "inlet_vessels": [123], + "junction_name": "J86", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [124] + }, + { + "inlet_vessels": [127], + "junction_name": "J87", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [128] + }, + { + "inlet_vessels": [128], + "junction_name": "J88", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [129] + }, + { + "inlet_vessels": [132], + "junction_name": "J89", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [133] + }, + { + "inlet_vessels": [133], + "junction_name": "J90", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [134] + }, + { + "inlet_vessels": [140], + "junction_name": "J91", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [141] + }, + { + "inlet_vessels": [141], + "junction_name": "J92", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [142] + }, + { + "inlet_vessels": [145], + "junction_name": "J93", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [146] + }, + { + "inlet_vessels": [146], + "junction_name": "J94", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [147] + }, + { + "inlet_vessels": [151], + "junction_name": "J95", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [152] + }, + { + "inlet_vessels": [152], + "junction_name": "J96", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [153] + }, + { + "inlet_vessels": [159], + "junction_name": "J97", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [160] + }, + { + "inlet_vessels": [160], + "junction_name": "J98", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [161] + }, + { + "inlet_vessels": [165], + "junction_name": "J99", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [166] + }, + { + "inlet_vessels": [166], + "junction_name": "J100", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [167] + }, + { + "inlet_vessels": [171], + "junction_name": "J101", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [172] + }, + { + "inlet_vessels": [172], + "junction_name": "J102", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [173] + }, + { + "inlet_vessels": [174], + "junction_name": "J103", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [175] + }, + { + "inlet_vessels": [175], + "junction_name": "J104", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [176] + }, + { + "inlet_vessels": [179], + "junction_name": "J105", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [180] + }, + { + "inlet_vessels": [180], + "junction_name": "J106", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [181] + }, + { + "inlet_vessels": [186], + "junction_name": "J107", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [187] + }, + { + "inlet_vessels": [187], + "junction_name": "J108", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [188] + }, + { + "inlet_vessels": [189], + "junction_name": "J109", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [190] + }, + { + "inlet_vessels": [190], + "junction_name": "J110", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [191] + }, + { + "inlet_vessels": [192], + "junction_name": "J111", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [193] + }, + { + "inlet_vessels": [193], + "junction_name": "J112", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [194] + }, + { + "inlet_vessels": [198], + "junction_name": "J113", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [199] + }, + { + "inlet_vessels": [199], + "junction_name": "J114", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [200] + }, + { + "inlet_vessels": [201], + "junction_name": "J115", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [202] + }, + { + "inlet_vessels": [202], + "junction_name": "J116", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [203] + }, + { + "inlet_vessels": [206], + "junction_name": "J117", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [207] + }, + { + "inlet_vessels": [207], + "junction_name": "J118", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [208] + }, + { + "inlet_vessels": [212], + "junction_name": "J119", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [213] + }, + { + "inlet_vessels": [213], + "junction_name": "J120", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [214] + } + ], + "simulation_parameters": { + "density": 1.06, + "model_name": "0080_0001", + "number_of_cardiac_cycles": 3, + "number_of_time_pts_per_cardiac_cycle": 705, + "output_all_cycles": false, + "viscosity": 0.04 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 1.3805440959686677, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.20313055779656e-6, + "L": 0.24982933228819232, + "R_poiseuille": 0.03694368442953243, + "stenosis_coefficient": 1.0627181517794056e-5 + } + }, + { + "vessel_id": 1, + "vessel_length": 0.4700096249069316, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.800354557926104e-7, + "L": 0.19447707506436307, + "R_poiseuille": 0.07073181752123706, + "stenosis_coefficient": 1.2175602680007738e-5 + } + }, + { + "vessel_id": 2, + "vessel_length": 1.236264289578453, + "vessel_name": "branch1_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.4855337769166476e-7, + "L": 0.5410118482305434, + "R_poiseuille": 0.21295074265777292, + "stenosis_coefficient": 0.0009604963895366624 + } + }, + { + "vessel_id": 3, + "vessel_length": 0.027089022417558086, + "vessel_name": "branch1_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.0625908233296277e-8, + "L": 0.010985462817714911, + "R_poiseuille": 0.004009176257249289, + "stenosis_coefficient": -1.3267897320598285e-7 + } + }, + { + "vessel_id": 4, + "vessel_length": 0.767092376484422, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.7441570632192325e-8, + "L": 5.303689240830299, + "R_poiseuille": 32.82041018171888, + "stenosis_coefficient": 0.12987903065565853 + } + }, + { + "vessel_id": 5, + "vessel_length": 1.9137134015067134, + "vessel_name": "branch3_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.3734924177005566e-8, + "L": 16.929617042312756, + "R_poiseuille": 134.00704060209105, + "stenosis_coefficient": 0.2799306752759997 + } + }, + { + "vessel_id": 6, + "vessel_length": 1.3994359853698075, + "vessel_name": "branch3_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.2363657623029927e-8, + "L": 13.60012686115154, + "R_poiseuille": 118.25526273866126, + "stenosis_coefficient": 0.8685768886591523 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_0" + }, + "vessel_id": 7, + "vessel_length": 0.6031024092142984, + "vessel_name": "branch3_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 9.641143493796211e-9, + "L": 5.85902178849921, + "R_poiseuille": 50.92664156344334, + "stenosis_coefficient": 0.18554869502414761 + } + }, + { + "vessel_id": 8, + "vessel_length": 1.6221170932907283, + "vessel_name": "branch4_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.587848264218883e-7, + "L": 0.7464959825172531, + "R_poiseuille": 0.3059610636496817, + "stenosis_coefficient": 1.1711205640164641e-5 + } + }, + { + "vessel_id": 9, + "vessel_length": 0.03377137318889544, + "vessel_name": "branch5_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.1328340842611756e-9, + "L": 0.0578857913489929, + "R_poiseuille": 0.088653085668703, + "stenosis_coefficient": 2.119553111930494e-6 + } + }, + { + "vessel_id": 10, + "vessel_length": 1.3376670796129662, + "vessel_name": "branch6_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.330485636476161e-8, + "L": 4.48778913652762, + "R_poiseuille": 13.477306930137654, + "stenosis_coefficient": -0.00018416356445705064 + } + }, + { + "vessel_id": 11, + "vessel_length": 0.597556026956815, + "vessel_name": "branch7_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.3024119838493435e-8, + "L": 2.4587971981934342, + "R_poiseuille": 9.05501366512407, + "stenosis_coefficient": -0.00017822028495800038 + } + }, + { + "vessel_id": 12, + "vessel_length": 0.3780642267581488, + "vessel_name": "branch8_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.782324216463856e-9, + "L": 3.8318884046771635, + "R_poiseuille": 34.75120324748241, + "stenosis_coefficient": -0.002474751762406789 + } + }, + { + "vessel_id": 13, + "vessel_length": 0.06402900125534544, + "vessel_name": "branch9_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.689262861103303e-10, + "L": 0.7272359365021961, + "R_poiseuille": 7.390560313339868, + "stenosis_coefficient": -0.0006201659389895438 + } + }, + { + "vessel_id": 14, + "vessel_length": 0.8652668710938062, + "vessel_name": "branch9_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.1243209854693166e-8, + "L": 10.240734400564131, + "R_poiseuille": 108.44266462338133, + "stenosis_coefficient": 1.42543195630556 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_1" + }, + "vessel_id": 15, + "vessel_length": 1.475694913974687, + "vessel_name": "branch9_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.8720023875835964e-8, + "L": 17.86541903948072, + "R_poiseuille": 193.50736023145214, + "stenosis_coefficient": 0.006382066235276468 + } + }, + { + "vessel_id": 16, + "vessel_length": 0.4511882149052207, + "vessel_name": "branch10_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.049324819938714e-9, + "L": 5.184485654998075, + "R_poiseuille": 53.3020855579649, + "stenosis_coefficient": -0.00356578391370318 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_2" + }, + "vessel_id": 17, + "vessel_length": 0.926581286933064, + "vessel_name": "branch11_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 9.969326930547595e-9, + "L": 13.101534766363503, + "R_poiseuille": 165.7420447603574, + "stenosis_coefficient": 3.8788448373475184 + } + }, + { + "vessel_id": 18, + "vessel_length": 0.2944816785427889, + "vessel_name": "branch12_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.4724332880381028e-8, + "L": 0.9353028965941073, + "R_poiseuille": 2.6588652452843395, + "stenosis_coefficient": -6.568337869750691e-5 + } + }, + { + "vessel_id": 19, + "vessel_length": 0.7814774469262069, + "vessel_name": "branch13_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.980141813316165e-8, + "L": 4.861717970589825, + "R_poiseuille": 27.073315398801515, + "stenosis_coefficient": 0.007424838632713153 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_3" + }, + "vessel_id": 20, + "vessel_length": 2.546928970164378, + "vessel_name": "branch14_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.611029724322229e-8, + "L": 21.95988518954964, + "R_poiseuille": 169.41538483056414, + "stenosis_coefficient": 0.1591643155811024 + } + }, + { + "vessel_id": 21, + "vessel_length": 0.43552068967368024, + "vessel_name": "branch15_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.531166797594862e-8, + "L": 1.9620176887687177, + "R_poiseuille": 7.910180210499989, + "stenosis_coefficient": 0.016088492704385657 + } + }, + { + "vessel_id": 22, + "vessel_length": 1.422373662231766, + "vessel_name": "branch16_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.5703131984998293e-8, + "L": 12.282698101100769, + "R_poiseuille": 94.90078503539023, + "stenosis_coefficient": 0.6287457126838166 + } + }, + { + "vessel_id": 23, + "vessel_length": 0.0321936092555048, + "vessel_name": "branch17_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.855797193371881e-10, + "L": 0.2762272084137619, + "R_poiseuille": 2.1205999455263385, + "stenosis_coefficient": -4.2820845009857686e-5 + } + }, + { + "vessel_id": 24, + "vessel_length": 0.06466890835245662, + "vessel_name": "branch18_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.1580056072247715e-9, + "L": 0.5633115564110789, + "R_poiseuille": 4.390337916213127, + "stenosis_coefficient": -0.00016026908062443903 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_4" + }, + "vessel_id": 25, + "vessel_length": 1.6684049591136723, + "vessel_name": "branch19_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.1803571919724054e-8, + "L": 13.681679151649737, + "R_poiseuille": 100.38551741694508, + "stenosis_coefficient": 0.0021163694969631 + } + }, + { + "vessel_id": 26, + "vessel_length": 0.45959397190300655, + "vessel_name": "branch20_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3965645210745943e-8, + "L": 2.3909759319954405, + "R_poiseuille": 11.133864135645696, + "stenosis_coefficient": -0.0005990557004248448 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_5" + }, + "vessel_id": 27, + "vessel_length": 0.3473633681374321, + "vessel_name": "branch21_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.92381618237805e-9, + "L": 3.786626771920076, + "R_poiseuille": 36.93308161248114, + "stenosis_coefficient": 0.06498673118053047 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_6" + }, + "vessel_id": 28, + "vessel_length": 1.8491184142546093, + "vessel_name": "branch22_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.993578487161621e-8, + "L": 13.437504917306546, + "R_poiseuille": 87.38610764299868, + "stenosis_coefficient": 0.17175732921827158 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_7" + }, + "vessel_id": 29, + "vessel_length": 1.1480030859456651, + "vessel_name": "branch23_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.6395349262556706e-8, + "L": 12.419668662359248, + "R_poiseuille": 120.2132502021811, + "stenosis_coefficient": 0.4999838919534153 + } + }, + { + "vessel_id": 30, + "vessel_length": 0.566556332257165, + "vessel_name": "branch24_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.0569731673352377e-8, + "L": 4.744193616832872, + "R_poiseuille": 35.54574340258078, + "stenosis_coefficient": -0.0007681933293057463 + } + }, + { + "vessel_id": 31, + "vessel_length": 0.031139405875391275, + "vessel_name": "branch25_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.003912969072602e-10, + "L": 0.3009945802400388, + "R_poiseuille": 2.603154014105532, + "stenosis_coefficient": -6.0217893685834384e-5 + } + }, + { + "vessel_id": 32, + "vessel_length": 0.0709074115605942, + "vessel_name": "branch26_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.4820988316758036e-9, + "L": 0.5318396492481426, + "R_poiseuille": 3.569321996503202, + "stenosis_coefficient": -0.00013202266923703328 + } + }, + { + "vessel_id": 33, + "vessel_length": 0.03778956430673017, + "vessel_name": "branch27_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.032488967471239e-10, + "L": 0.2788536239921549, + "R_poiseuille": 1.8411862476775251, + "stenosis_coefficient": -9.930673518866784e-5 + } + }, + { + "vessel_id": 34, + "vessel_length": 0.1133163787610899, + "vessel_name": "branch28_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3691237169933132e-9, + "L": 1.4364901170357192, + "R_poiseuille": 16.292464081781805, + "stenosis_coefficient": 0.008460460333282923 + } + }, + { + "vessel_id": 35, + "vessel_length": 0.1408917238471644, + "vessel_name": "branch28_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.7185452284894384e-9, + "L": 1.770113597658604, + "R_poiseuille": 19.897138979789496, + "stenosis_coefficient": 0.11724955124191633 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_8" + }, + "vessel_id": 36, + "vessel_length": 1.1913123850343972, + "vessel_name": "branch28_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.4499176199234383e-8, + "L": 14.99828882350692, + "R_poiseuille": 168.9370257809113, + "stenosis_coefficient": 0.20226335442284307 + } + }, + { + "vessel_id": 37, + "vessel_length": 0.1558046205341548, + "vessel_name": "branch29_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.81439544602933e-9, + "L": 0.5654686482094565, + "R_poiseuille": 1.8377639593788992, + "stenosis_coefficient": -4.479256758984913e-5 + } + }, + { + "vessel_id": 38, + "vessel_length": 0.7581169080643847, + "vessel_name": "branch30_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.8542734428267293e-8, + "L": 4.882656787379888, + "R_poiseuille": 28.14594769323111, + "stenosis_coefficient": 0.009697601163521507 + } + }, + { + "vessel_id": 39, + "vessel_length": 0.951309792830832, + "vessel_name": "branch30_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.824381375392974e-8, + "L": 7.760209986152595, + "R_poiseuille": 56.64310939808853, + "stenosis_coefficient": 0.17889402344033686 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_9" + }, + "vessel_id": 40, + "vessel_length": 0.8878614004687725, + "vessel_name": "branch30_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.6441801807373037e-8, + "L": 7.4890090528399, + "R_poiseuille": 56.51978572057841, + "stenosis_coefficient": 0.2551209481452766 + } + }, + { + "vessel_id": 41, + "vessel_length": 1.3933087944952214, + "vessel_name": "branch31_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.8772048679832015e-8, + "L": 6.304331350130275, + "R_poiseuille": 25.53578543522187, + "stenosis_coefficient": 7.823246838722234 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_10" + }, + "vessel_id": 42, + "vessel_length": 1.3874296295510535, + "vessel_name": "branch32_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.2420927666722568e-8, + "L": 13.345079204192519, + "R_poiseuille": 114.84951252503247, + "stenosis_coefficient": 1.696969803511413 + } + }, + { + "vessel_id": 43, + "vessel_length": 1.2720532346178934, + "vessel_name": "branch33_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.2713115912952867e-8, + "L": 4.872059121155858, + "R_poiseuille": 16.706285626783234, + "stenosis_coefficient": 0.0008963538313690405 + } + }, + { + "vessel_id": 44, + "vessel_length": 0.07413814137318625, + "vessel_name": "branch34_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.7109225871617176e-9, + "L": 0.5050839205722175, + "R_poiseuille": 3.079279589481256, + "stenosis_coefficient": -0.0003743656174357588 + } + }, + { + "vessel_id": 45, + "vessel_length": 0.6835632147915793, + "vessel_name": "branch35_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.1809790286163691e-8, + "L": 6.1640527029635495, + "R_poiseuille": 49.73445584970096, + "stenosis_coefficient": -0.006445644739562099 + } + }, + { + "vessel_id": 46, + "vessel_length": 0.6971206020209955, + "vessel_name": "branch35_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.871002982522588e-9, + "L": 8.41519248688527, + "R_poiseuille": 90.88484243571875, + "stenosis_coefficient": 1.4793370231153598 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_11" + }, + "vessel_id": 47, + "vessel_length": 0.7512820508518326, + "vessel_name": "branch35_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.1253307556342792e-8, + "L": 7.7668159636996075, + "R_poiseuille": 71.83982847573373, + "stenosis_coefficient": 0.004893506007443196 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_12" + }, + "vessel_id": 48, + "vessel_length": 3.057463759696044, + "vessel_name": "branch36_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.557854895768364e-8, + "L": 22.37166243149191, + "R_poiseuille": 146.47424805104194, + "stenosis_coefficient": 3.369595126571579 + } + }, + { + "vessel_id": 49, + "vessel_length": 0.9496079890052714, + "vessel_name": "branch37_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.0422273173555522e-8, + "L": 6.9306959630363165, + "R_poiseuille": 45.26646912089075, + "stenosis_coefficient": -0.002644128252017259 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_13" + }, + "vessel_id": 50, + "vessel_length": 2.0045402443387177, + "vessel_name": "branch38_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.310221731236157e-8, + "L": 14.631023441916964, + "R_poiseuille": 95.55789739238047, + "stenosis_coefficient": 2.10433108136133 + } + }, + { + "vessel_id": 51, + "vessel_length": 0.7139818673389967, + "vessel_name": "branch39_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.8359235922765807e-8, + "L": 4.3762333829784525, + "R_poiseuille": 24.00491187373974, + "stenosis_coefficient": 3.2656318132766415 + } + }, + { + "vessel_id": 52, + "vessel_length": 1.2098135849553884, + "vessel_name": "branch40_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.086383317233347e-8, + "L": 7.4759123486884755, + "R_poiseuille": 41.34343163993003, + "stenosis_coefficient": 0.27301321781642507 + } + }, + { + "vessel_id": 53, + "vessel_length": 0.21966625688935024, + "vessel_name": "branch41_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.85240648194805e-9, + "L": 1.952660195824614, + "R_poiseuille": 15.531364427033221, + "stenosis_coefficient": 0.0031190228406036444 + } + }, + { + "vessel_id": 54, + "vessel_length": 0.4635552949302021, + "vessel_name": "branch41_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.136740123017714e-9, + "L": 4.1169180882218175, + "R_poiseuille": 32.71571782004087, + "stenosis_coefficient": 0.008899076744168271 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_14" + }, + "vessel_id": 55, + "vessel_length": 1.235447647190862, + "vessel_name": "branch41_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.2264724515595482e-8, + "L": 10.696017743926326, + "R_poiseuille": 82.85543890244656, + "stenosis_coefficient": 0.01044249543186508 + } + }, + { + "vessel_id": 56, + "vessel_length": 0.541966306937773, + "vessel_name": "branch42_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.879109881382353e-9, + "L": 5.146211883166852, + "R_poiseuille": 43.72449736702581, + "stenosis_coefficient": -0.005801498281450447 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_15" + }, + "vessel_id": 57, + "vessel_length": 1.6790196506715351, + "vessel_name": "branch43_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.171635631146599e-8, + "L": 19.964366568687176, + "R_poiseuille": 212.38586042432655, + "stenosis_coefficient": 0.20967802889835543 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_16" + }, + "vessel_id": 58, + "vessel_length": 0.6101758693529614, + "vessel_name": "branch44_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.037945434196296e-9, + "L": 8.080826314018188, + "R_poiseuille": 95.74661843565647, + "stenosis_coefficient": -0.007354369294157293 + } + }, + { + "vessel_id": 59, + "vessel_length": 1.5708710381014765, + "vessel_name": "branch45_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.321526326940867e-8, + "L": 9.013583153149506, + "R_poiseuille": 46.288846467032215, + "stenosis_coefficient": 0.09890246189682052 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_17" + }, + "vessel_id": 60, + "vessel_length": 0.6994048703533935, + "vessel_name": "branch46_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.1293214460196082e-8, + "L": 6.731471406575816, + "R_poiseuille": 57.96857809801745, + "stenosis_coefficient": 1.2888871787562064 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_18" + }, + "vessel_id": 61, + "vessel_length": 0.8916502618658464, + "vessel_name": "branch47_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.7149793919664535e-8, + "L": 7.249009294751909, + "R_poiseuille": 52.730067570167854, + "stenosis_coefficient": 0.01182913289577082 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_19" + }, + "vessel_id": 62, + "vessel_length": 2.7463421709430342, + "vessel_name": "branch48_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.980814467202447e-8, + "L": 23.646356777121007, + "R_poiseuille": 182.17463953756953, + "stenosis_coefficient": 0.4679228429155233 + } + }, + { + "vessel_id": 63, + "vessel_length": 0.4479144623319764, + "vessel_name": "branch49_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.755615083220887e-9, + "L": 4.600117796765683, + "R_poiseuille": 42.26908036741031, + "stenosis_coefficient": -0.0015221046244199088 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_20" + }, + "vessel_id": 64, + "vessel_length": 0.7112296941340819, + "vessel_name": "branch50_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.440275427637408e-9, + "L": 11.808257248130959, + "R_poiseuille": 175.39539800844946, + "stenosis_coefficient": 1.9370833769736082 + } + }, + { + "vessel_id": 65, + "vessel_length": 0.42533483343073947, + "vessel_name": "branch51_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.701969301562087e-9, + "L": 5.862648327204785, + "R_poiseuille": 72.29838822196072, + "stenosis_coefficient": 0.01062633768372156 + } + }, + { + "vessel_id": 66, + "vessel_length": 0.8114218236874672, + "vessel_name": "branch51_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.740268058818437e-9, + "L": 12.836259960894541, + "R_poiseuille": 181.67273547295716, + "stenosis_coefficient": 4.247023681467859 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_21" + }, + "vessel_id": 67, + "vessel_length": 0.3482852208627482, + "vessel_name": "branch51_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.924591203169635e-9, + "L": 4.714822251302191, + "R_poiseuille": 57.103410248122806, + "stenosis_coefficient": 0.018276672486460695 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_22" + }, + "vessel_id": 68, + "vessel_length": 1.9747651599405993, + "vessel_name": "branch52_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.2136865975918875e-8, + "L": 18.861677788776447, + "R_poiseuille": 161.1982516339199, + "stenosis_coefficient": 2.425567016558952 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_23" + }, + "vessel_id": 69, + "vessel_length": 0.7711519337457966, + "vessel_name": "branch53_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.680877939672861e-8, + "L": 5.554434317035609, + "R_poiseuille": 35.80394171715377, + "stenosis_coefficient": 0.13791262077133556 + } + }, + { + "vessel_id": 70, + "vessel_length": 0.5744528633349233, + "vessel_name": "branch54_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.4718235439280243e-8, + "L": 3.534275175994684, + "R_poiseuille": 19.46082186137312, + "stenosis_coefficient": 0.02091668800336438 + } + }, + { + "vessel_id": 71, + "vessel_length": 0.5854170378707935, + "vessel_name": "branch55_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.2721961839737996e-8, + "L": 4.229846454077836, + "R_poiseuille": 27.34933144656623, + "stenosis_coefficient": 0.0044273105124093505 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_24" + }, + "vessel_id": 72, + "vessel_length": 1.3856830790186532, + "vessel_name": "branch56_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.8120447254641172e-8, + "L": 10.696705886594854, + "R_poiseuille": 73.88403972424608, + "stenosis_coefficient": -0.004348596527931027 + } + }, + { + "vessel_id": 73, + "vessel_length": 0.13141398733204784, + "vessel_name": "branch57_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.433683976878402e-9, + "L": 0.6167410211473422, + "R_poiseuille": 2.5905461384560744, + "stenosis_coefficient": -7.925534741104015e-5 + } + }, + { + "vessel_id": 74, + "vessel_length": 0.9837215570289305, + "vessel_name": "branch58_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.1962096582906894e-8, + "L": 6.925181208070337, + "R_poiseuille": 43.63206525330421, + "stenosis_coefficient": -0.006557907926163422 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_25" + }, + "vessel_id": 75, + "vessel_length": 1.6268724719976426, + "vessel_name": "branch59_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.4891006887962734e-8, + "L": 16.48636474288479, + "R_poiseuille": 149.47906457958607, + "stenosis_coefficient": 1.6635519405027668 + } + }, + { + "vessel_id": 76, + "vessel_length": 0.7189379658116499, + "vessel_name": "branch60_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.943807297287305e-9, + "L": 8.868878201364595, + "R_poiseuille": 97.88483115639154, + "stenosis_coefficient": 0.14202295145940852 + } + }, + { + "vessel_id": 77, + "vessel_length": 0.6031613093730539, + "vessel_name": "branch60_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.474975462649345e-9, + "L": 8.547834122667535, + "R_poiseuille": 108.37555498248054, + "stenosis_coefficient": 5.7204302621768734 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_26" + }, + "vessel_id": 78, + "vessel_length": 0.52456071048224, + "vessel_name": "branch60_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.111090420084729e-9, + "L": 5.964861686084706, + "R_poiseuille": 60.68517984279006, + "stenosis_coefficient": 0.008551117663226613 + } + }, + { + "vessel_id": 79, + "vessel_length": 0.7484344961809235, + "vessel_name": "branch61_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3530404837081883e-8, + "L": 6.463638901400951, + "R_poiseuille": 49.95014453290341, + "stenosis_coefficient": -0.0015630649095422337 + } + }, + { + "vessel_id": 80, + "vessel_length": 0.7031144664254374, + "vessel_name": "branch61_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.2210227975140483e-8, + "L": 6.311771100843579, + "R_poiseuille": 50.70015619100316, + "stenosis_coefficient": 0.09313867714481025 + } + }, + { + "vessel_id": 81, + "vessel_length": 0.3611216104843036, + "vessel_name": "branch61_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.61647233779187e-9, + "L": 3.0777608386732043, + "R_poiseuille": 23.472384801376098, + "stenosis_coefficient": 0.022404136052152048 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_27" + }, + "vessel_id": 82, + "vessel_length": 2.578388894821237, + "vessel_name": "branch62_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.368126677593007e-8, + "L": 23.69204748133513, + "R_poiseuille": 194.77987703336987, + "stenosis_coefficient": 0.23530671660601973 + } + }, + { + "vessel_id": 83, + "vessel_length": 1.01285639512377, + "vessel_name": "branch63_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.346528301673273e-8, + "L": 4.852066413125371, + "R_poiseuille": 20.8040243637392, + "stenosis_coefficient": 0.05372942942783647 + } + }, + { + "vessel_id": 84, + "vessel_length": 0.808961964697254, + "vessel_name": "branch64_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3309027200535244e-8, + "L": 7.6455589833846815, + "R_poiseuille": 64.6553949043159, + "stenosis_coefficient": 0.9850244435145563 + } + }, + { + "vessel_id": 85, + "vessel_length": 1.4447132719150624, + "vessel_name": "branch64_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.0767258881689885e-8, + "L": 15.533659912466064, + "R_poiseuille": 149.43152742443186, + "stenosis_coefficient": 1.2234536853178601 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_28" + }, + "vessel_id": 86, + "vessel_length": 0.31510151228426275, + "vessel_name": "branch64_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.1424891411725445e-9, + "L": 4.782232274785176, + "R_poiseuille": 64.9332406150214, + "stenosis_coefficient": 0.014121761829022304 + } + }, + { + "vessel_id": 87, + "vessel_length": 1.2040510161756994, + "vessel_name": "branch65_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.3509304404046217e-8, + "L": 9.649631251227031, + "R_poiseuille": 69.19852208756303, + "stenosis_coefficient": 9.913968782866935 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_29" + }, + "vessel_id": 88, + "vessel_length": 0.9188238112661333, + "vessel_name": "branch66_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.308557078756582e-8, + "L": 9.967636246429834, + "R_poiseuille": 96.74658477616676, + "stenosis_coefficient": 0.4335375468446274 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_30" + }, + "vessel_id": 89, + "vessel_length": 1.295691750912049, + "vessel_name": "branch67_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.815960143265868e-8, + "L": 14.27187176392049, + "R_poiseuille": 140.65012419245122, + "stenosis_coefficient": 6.863077184842725 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_31" + }, + "vessel_id": 90, + "vessel_length": 2.2649380500474936, + "vessel_name": "branch68_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.904126420324915e-8, + "L": 27.161895265686283, + "R_poiseuille": 291.42797286814067, + "stenosis_coefficient": 0.8403587976570299 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_32" + }, + "vessel_id": 91, + "vessel_length": 1.4445560024538837, + "vessel_name": "branch69_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.873966430469474e-8, + "L": 8.49920189788078, + "R_poiseuille": 44.75858938361012, + "stenosis_coefficient": 0.0034379043037513794 + } + }, + { + "vessel_id": 92, + "vessel_length": 0.16948463710753808, + "vessel_name": "branch70_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.6960486275796424e-9, + "L": 1.2198786493340976, + "R_poiseuille": 7.85624191927153, + "stenosis_coefficient": -0.00013851870473046037 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_33" + }, + "vessel_id": 93, + "vessel_length": 2.5753601577939262, + "vessel_name": "branch71_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.734899053374061e-8, + "L": 27.471775157026077, + "R_poiseuille": 262.19582796411765, + "stenosis_coefficient": 0.8826845800684497 + } + }, + { + "vessel_id": 94, + "vessel_length": 0.6289952402012521, + "vessel_name": "branch72_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.27501579293961e-8, + "L": 1.1929753227209159, + "R_poiseuille": 2.029062474597748, + "stenosis_coefficient": -0.0003070312107399008 + } + }, + { + "vessel_id": 95, + "vessel_length": 0.6109827240923978, + "vessel_name": "branch73_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.7207359972326834e-8, + "L": 3.427026651137577, + "R_poiseuille": 17.209427113261782, + "stenosis_coefficient": -0.003263049688842491 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_34" + }, + "vessel_id": 96, + "vessel_length": 3.3888546756436506, + "vessel_name": "branch74_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.857990407155108e-8, + "L": 30.548734050691913, + "R_poiseuille": 246.39554825551747, + "stenosis_coefficient": 0.6783818133094566 + } + }, + { + "vessel_id": 97, + "vessel_length": 0.611214345422349, + "vessel_name": "branch75_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.315968434577546e-9, + "L": 6.928290504199418, + "R_poiseuille": 70.26561485852834, + "stenosis_coefficient": 0.04807865460654962 + } + }, + { + "vessel_id": 98, + "vessel_length": 0.416201834518502, + "vessel_name": "branch75_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.556751910340338e-9, + "L": 4.802948169289961, + "R_poiseuille": 49.58906283887946, + "stenosis_coefficient": 0.08025877160142852 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_35" + }, + "vessel_id": 99, + "vessel_length": 0.14191378404545324, + "vessel_name": "branch75_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.928910402105771e-9, + "L": 1.6099064689413782, + "R_poiseuille": 16.340045644874948, + "stenosis_coefficient": -0.002407815670220812 + } + }, + { + "vessel_id": 100, + "vessel_length": 1.4665070334686685, + "vessel_name": "branch76_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.342822151161027e-8, + "L": 6.379492546804305, + "R_poiseuille": 24.84222126366244, + "stenosis_coefficient": 1.5634956611085382 + } + }, + { + "vessel_id": 101, + "vessel_length": 0.7221439726843699, + "vessel_name": "branch77_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.6596341056017046e-8, + "L": 4.940384948509888, + "R_poiseuille": 30.24508359392104, + "stenosis_coefficient": -0.004349725062992071 + } + }, + { + "vessel_id": 102, + "vessel_length": 0.5034373205326561, + "vessel_name": "branch77_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.0203085000454555e-8, + "L": 3.891598360912806, + "R_poiseuille": 26.9177199667982, + "stenosis_coefficient": 2.511180954265666e-5 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_36" + }, + "vessel_id": 103, + "vessel_length": 0.43643507588657493, + "vessel_name": "branch77_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.90339793737875e-9, + "L": 3.352006808455692, + "R_poiseuille": 23.036394309255112, + "stenosis_coefficient": -0.002634656013946628 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_37" + }, + "vessel_id": 104, + "vessel_length": 1.8223285969227923, + "vessel_name": "branch78_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.91236464851546e-8, + "L": 10.669427419510182, + "R_poiseuille": 55.90822965962876, + "stenosis_coefficient": 0.15517529236037966 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_38" + }, + "vessel_id": 105, + "vessel_length": 1.8964600844526125, + "vessel_name": "branch79_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.057607642593336e-8, + "L": 13.907809685679492, + "R_poiseuille": 91.27309615375273, + "stenosis_coefficient": 5.297437606973821 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_39" + }, + "vessel_id": 106, + "vessel_length": 1.9462368644775894, + "vessel_name": "branch80_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.221124665093072e-8, + "L": 18.297955850643227, + "R_poiseuille": 153.93011849353297, + "stenosis_coefficient": -0.015495021398820858 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_40" + }, + "vessel_id": 107, + "vessel_length": 2.0691552767977677, + "vessel_name": "branch81_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.397531230189269e-8, + "L": 12.505074265275365, + "R_poiseuille": 67.628310282911, + "stenosis_coefficient": 0.2074548966560277 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_41" + }, + "vessel_id": 108, + "vessel_length": 1.5314877042581692, + "vessel_name": "branch82_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.0194300065647384e-8, + "L": 17.875045777814037, + "R_poiseuille": 186.66229792744386, + "stenosis_coefficient": 1.571664712552897 + } + }, + { + "vessel_id": 109, + "vessel_length": 0.24582786567907236, + "vessel_name": "branch83_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.609017963178241e-9, + "L": 2.048650449942356, + "R_poiseuille": 15.276429986601276, + "stenosis_coefficient": -0.001256046397491457 + } + }, + { + "vessel_id": 110, + "vessel_length": 0.5047355886889087, + "vessel_name": "branch83_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 9.13410465590127e-9, + "L": 4.352401947016632, + "R_poiseuille": 33.58148578099896, + "stenosis_coefficient": 0.06346480937972404 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_42" + }, + "vessel_id": 111, + "vessel_length": 0.7446549997402947, + "vessel_name": "branch83_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3928069621182322e-8, + "L": 6.219776187084276, + "R_poiseuille": 46.48299509821661, + "stenosis_coefficient": -0.0009914101728754664 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_43" + }, + "vessel_id": 112, + "vessel_length": 1.603474169200975, + "vessel_name": "branch84_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.678452975068164e-8, + "L": 10.987184481047358, + "R_poiseuille": 67.36615063073837, + "stenosis_coefficient": 0.3754580688863928 + } + }, + { + "vessel_id": 113, + "vessel_length": 2.032819460778153, + "vessel_name": "branch85_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.3302218285994196e-8, + "L": 12.229646707424463, + "R_poiseuille": 65.84417945634029, + "stenosis_coefficient": 0.3100608126506722 + } + }, + { + "vessel_id": 114, + "vessel_length": 0.23451239270361057, + "vessel_name": "branch86_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.235187932615298e-9, + "L": 2.0264306996348607, + "R_poiseuille": 15.668163424988082, + "stenosis_coefficient": -0.0007845101455939162 + } + }, + { + "vessel_id": 115, + "vessel_length": 0.04826055052317403, + "vessel_name": "branch86_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.620086463702124e-10, + "L": 0.421456710785644, + "R_poiseuille": 3.293305441519731, + "stenosis_coefficient": -0.00016115224350473704 + } + }, + { + "vessel_id": 116, + "vessel_length": 1.259398809614766, + "vessel_name": "branch86_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.3848679582065356e-8, + "L": 10.39490073208519, + "R_poiseuille": 76.76837564863816, + "stenosis_coefficient": -0.003146848945193266 + } + }, + { + "vessel_id": 117, + "vessel_length": 0.8920212348651329, + "vessel_name": "branch87_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.1789652322706818e-8, + "L": 5.74820775693585, + "R_poiseuille": 33.14485161416498, + "stenosis_coefficient": 0.2222602060159043 + } + }, + { + "vessel_id": 118, + "vessel_length": 0.3987976977796542, + "vessel_name": "branch87_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.163646930693461e-9, + "L": 3.052355277565934, + "R_poiseuille": 20.903719706624397, + "stenosis_coefficient": 0.33640084106346946 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_44" + }, + "vessel_id": 119, + "vessel_length": 0.22559277415133924, + "vessel_name": "branch87_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.771295730100876e-9, + "L": 1.672812418028439, + "R_poiseuille": 11.09887954918891, + "stenosis_coefficient": -0.0010091025436389754 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_45" + }, + "vessel_id": 120, + "vessel_length": 0.8204456954795754, + "vessel_name": "branch88_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.4625520381275403e-8, + "L": 7.177686900997254, + "R_poiseuille": 56.183369709799976, + "stenosis_coefficient": 0.0008532625819189535 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_46" + }, + "vessel_id": 121, + "vessel_length": 0.693357974494855, + "vessel_name": "branch89_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3250805448954719e-8, + "L": 5.6737818512857405, + "R_poiseuille": 41.545112033015535, + "stenosis_coefficient": 0.036870378666360164 + } + }, + { + "vessel_id": 122, + "vessel_length": 1.5854845802238893, + "vessel_name": "branch90_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.6183079740369267e-8, + "L": 14.933702236592852, + "R_poiseuille": 125.85441636804968, + "stenosis_coefficient": 0.003385394684794815 + } + }, + { + "vessel_id": 123, + "vessel_length": 0.5280646035122366, + "vessel_name": "branch90_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.732522907220595e-9, + "L": 4.966265284398897, + "R_poiseuille": 41.78932250184097, + "stenosis_coefficient": 0.16019793405935884 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_47" + }, + "vessel_id": 124, + "vessel_length": 0.30456850785941825, + "vessel_name": "branch90_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.235242890808013e-9, + "L": 2.7597529079931693, + "R_poiseuille": 22.374370456004886, + "stenosis_coefficient": -0.000867530412994634 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_48" + }, + "vessel_id": 125, + "vessel_length": 2.1841735530418993, + "vessel_name": "branch91_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.767618107085036e-8, + "L": 15.710476643731594, + "R_poiseuille": 101.12937936284536, + "stenosis_coefficient": 4.525903420719852 + } + }, + { + "vessel_id": 126, + "vessel_length": 0.0525308327091072, + "vessel_name": "branch92_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.0613695225071521e-9, + "L": 0.40732123302140144, + "R_poiseuille": 2.8262353177300827, + "stenosis_coefficient": -0.0001740839819511823 + } + }, + { + "vessel_id": 127, + "vessel_length": 0.6006926738529617, + "vessel_name": "branch93_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.134203160875153e-9, + "L": 6.8381035734331705, + "R_poiseuille": 69.64611012713628, + "stenosis_coefficient": -0.006351002053245614 + } + }, + { + "vessel_id": 128, + "vessel_length": 0.3971979355160251, + "vessel_name": "branch93_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.3947135054580555e-9, + "L": 4.508306508773921, + "R_poiseuille": 45.78223617262981, + "stenosis_coefficient": 0.08476871174475555 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_49" + }, + "vessel_id": 129, + "vessel_length": 0.23405158835742126, + "vessel_name": "branch93_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.2378970199524683e-9, + "L": 2.610340399024153, + "R_poiseuille": 26.047214974514944, + "stenosis_coefficient": -0.002069810395029726 + } + }, + { + "vessel_id": 130, + "vessel_length": 1.7564678632179243, + "vessel_name": "branch94_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.7532523086144064e-8, + "L": 12.901842528040195, + "R_poiseuille": 84.80417851137268, + "stenosis_coefficient": -0.002252934670306111 + } + }, + { + "vessel_id": 131, + "vessel_length": 0.3506494197134689, + "vessel_name": "branch95_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.2220085827886665e-9, + "L": 3.0822521621431975, + "R_poiseuille": 24.24292395037213, + "stenosis_coefficient": -0.0017612785590134176 + } + }, + { + "vessel_id": 132, + "vessel_length": 0.751353956435578, + "vessel_name": "branch96_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.0987232649702102e-8, + "L": 7.949233576371104, + "R_poiseuille": 75.24801838183133, + "stenosis_coefficient": 0.0686347136153479 + } + }, + { + "vessel_id": 133, + "vessel_length": 0.29667593046399116, + "vessel_name": "branch96_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.12180234954691e-9, + "L": 3.295338156333335, + "R_poiseuille": 32.74921323665505, + "stenosis_coefficient": 0.30860487981651147 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_50" + }, + "vessel_id": 134, + "vessel_length": 0.2838705083106226, + "vessel_name": "branch96_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.157234843906209e-9, + "L": 2.998737617978695, + "R_poiseuille": 28.342886182630508, + "stenosis_coefficient": -0.0019689968990747302 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_51" + }, + "vessel_id": 135, + "vessel_length": 2.209355069611248, + "vessel_name": "branch97_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.812454715071038e-8, + "L": 19.94504785159606, + "R_poiseuille": 161.10190758038664, + "stenosis_coefficient": 0.7019103452362243 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_52" + }, + "vessel_id": 136, + "vessel_length": 1.4800327576573449, + "vessel_name": "branch98_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.6196520711653983e-8, + "L": 13.039693189790029, + "R_poiseuille": 102.7941715936553, + "stenosis_coefficient": 3.208691081601073 + } + }, + { + "vessel_id": 137, + "vessel_length": 0.04959465207359494, + "vessel_name": "branch99_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.372545976000418e-10, + "L": 0.45729573113694044, + "R_poiseuille": 3.7729177657308006, + "stenosis_coefficient": -1.380730267276886e-5 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_53" + }, + "vessel_id": 138, + "vessel_length": 2.190636927574853, + "vessel_name": "branch100_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.6427343637378958e-8, + "L": 27.82589371936103, + "R_poiseuille": 316.21890897544455, + "stenosis_coefficient": 1.1566279498802778 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_54" + }, + "vessel_id": 139, + "vessel_length": 1.8514224613548453, + "vessel_name": "branch101_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.7170286321538994e-8, + "L": 14.446563528823075, + "R_poiseuille": 100.86805553463809, + "stenosis_coefficient": 0.0975936326292985 + } + }, + { + "vessel_id": 140, + "vessel_length": 0.9763193461215273, + "vessel_name": "branch102_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.9465479907592107e-8, + "L": 5.114115777869901, + "R_poiseuille": 23.9753398630642, + "stenosis_coefficient": 0.08615414412988946 + } + }, + { + "vessel_id": 141, + "vessel_length": 0.9700779332887878, + "vessel_name": "branch102_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.9405079024222535e-8, + "L": 5.058825113165409, + "R_poiseuille": 23.60863066974851, + "stenosis_coefficient": 0.17769235734649128 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_55" + }, + "vessel_id": 142, + "vessel_length": 0.2654573437023177, + "vessel_name": "branch102_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.921640536860886e-9, + "L": 1.4057123981237523, + "R_poiseuille": 6.6614723955074915, + "stenosis_coefficient": 0.0645434249482301 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_56" + }, + "vessel_id": 143, + "vessel_length": 1.1945502040546236, + "vessel_name": "branch103_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.2409462391753824e-8, + "L": 17.452999861432115, + "R_poiseuille": 228.13644373500975, + "stenosis_coefficient": 0.2234601162194665 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_57" + }, + "vessel_id": 144, + "vessel_length": 1.9310746610389045, + "vessel_name": "branch104_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.3583288276854336e-8, + "L": 17.308646197439174, + "R_poiseuille": 138.81394763824017, + "stenosis_coefficient": 5.048506972019783 + } + }, + { + "vessel_id": 145, + "vessel_length": 1.8549457029011562, + "vessel_name": "branch105_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.1179758372611174e-8, + "L": 13.130029952298898, + "R_poiseuille": 83.16842989960799, + "stenosis_coefficient": 0.15978735682285464 + } + }, + { + "vessel_id": 146, + "vessel_length": 0.7825249302368995, + "vessel_name": "branch105_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.498968508195203e-8, + "L": 6.388966622837847, + "R_poiseuille": 46.67416280329348, + "stenosis_coefficient": 0.6810980358899503 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_58" + }, + "vessel_id": 147, + "vessel_length": 0.22956112265344816, + "vessel_name": "branch105_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.958117272200887e-9, + "L": 1.6680586594089133, + "R_poiseuille": 10.845577052494516, + "stenosis_coefficient": -0.0011017327501046548 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_59" + }, + "vessel_id": 148, + "vessel_length": 2.0704474220346873, + "vessel_name": "branch106_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.029364798600291e-8, + "L": 21.896389093465928, + "R_poiseuille": 207.18896235274497, + "stenosis_coefficient": 0.7993669727720518 + } + }, + { + "vessel_id": 149, + "vessel_length": 0.28031060209411607, + "vessel_name": "branch107_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.134035082095317e-9, + "L": 2.0115123270594384, + "R_poiseuille": 12.917545376320463, + "stenosis_coefficient": -0.0009050830883986259 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_60" + }, + "vessel_id": 150, + "vessel_length": 1.8429878931971733, + "vessel_name": "branch108_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.3086505263004195e-8, + "L": 22.588716530425074, + "R_poiseuille": 247.70183001390978, + "stenosis_coefficient": 2.714570661314533 + } + }, + { + "vessel_id": 151, + "vessel_length": 0.0186622778417643, + "vessel_name": "branch109_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.303955396288649e-10, + "L": 0.12722320045560667, + "R_poiseuille": 0.7761358797418295, + "stenosis_coefficient": 0.0021990311424318165 + } + }, + { + "vessel_id": 152, + "vessel_length": 1.1462608351629446, + "vessel_name": "branch109_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.8410821639447262e-8, + "L": 11.086296620929641, + "R_poiseuille": 95.93617081922345, + "stenosis_coefficient": 0.28011271707419194 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_61" + }, + "vessel_id": 153, + "vessel_length": 0.3377410934055567, + "vessel_name": "branch109_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.58679665405356e-9, + "L": 3.1753004914526866, + "R_poiseuille": 26.710336422490624, + "stenosis_coefficient": -0.0015478651487522046 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_62" + }, + "vessel_id": 154, + "vessel_length": 1.5473329584349158, + "vessel_name": "branch110_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.989542689465414e-8, + "L": 12.531876230195204, + "R_poiseuille": 90.81969163214907, + "stenosis_coefficient": 0.3988773578820312 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_63" + }, + "vessel_id": 155, + "vessel_length": 1.3860209873354536, + "vessel_name": "branch111_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.9507520580321444e-8, + "L": 15.207962610065453, + "R_poiseuille": 149.2990362905643, + "stenosis_coefficient": 0.21675330362620393 + } + }, + { + "vessel_id": 156, + "vessel_length": 0.5165824403623721, + "vessel_name": "branch112_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.1598034855333736e-8, + "L": 3.615680865763725, + "R_poiseuille": 22.647311742131144, + "stenosis_coefficient": -0.0012498877944626665 + } + }, + { + "vessel_id": 157, + "vessel_length": 0.770452476158731, + "vessel_name": "branch113_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.6083306406580305e-8, + "L": 5.788960613766145, + "R_poiseuille": 38.92364618867085, + "stenosis_coefficient": -0.0029759893846869456 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_64" + }, + "vessel_id": 158, + "vessel_length": 1.6470438692325127, + "vessel_name": "branch114_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.952815332247603e-8, + "L": 21.259851167608822, + "R_poiseuille": 245.51682688431072, + "stenosis_coefficient": 6.7488430638487955 + } + }, + { + "vessel_id": 159, + "vessel_length": 0.22776071817940843, + "vessel_name": "branch115_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.78981233092694e-9, + "L": 2.8509943031262956, + "R_poiseuille": 31.929131468720843, + "stenosis_coefficient": 0.01773878563476012 + } + }, + { + "vessel_id": 160, + "vessel_length": 0.21714442030142875, + "vessel_name": "branch115_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.65626295220276e-9, + "L": 2.7214248112059187, + "R_poiseuille": 30.515278459182007, + "stenosis_coefficient": 0.06160600819570855 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_65" + }, + "vessel_id": 161, + "vessel_length": 0.8433519629875749, + "vessel_name": "branch115_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.0473603900538317e-8, + "L": 10.41931114932247, + "R_poiseuille": 115.17118595283276, + "stenosis_coefficient": 0.07890425382826427 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_66" + }, + "vessel_id": 162, + "vessel_length": 1.831647199279749, + "vessel_name": "branch116_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.590617572830399e-8, + "L": 19.99971313163473, + "R_poiseuille": 195.38068496529792, + "stenosis_coefficient": 1.5291988694136036 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_67" + }, + "vessel_id": 163, + "vessel_length": 0.8879559682870087, + "vessel_name": "branch117_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.2294457425575641e-8, + "L": 9.89520504605341, + "R_poiseuille": 98.65862761864035, + "stenosis_coefficient": 7.917502713983395 + } + }, + { + "vessel_id": 164, + "vessel_length": 0.96520618026765, + "vessel_name": "branch118_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.420453444446828e-8, + "L": 6.063110602458655, + "R_poiseuille": 34.08574538944893, + "stenosis_coefficient": 0.5356133379926846 + } + }, + { + "vessel_id": 165, + "vessel_length": 0.6703950785660061, + "vessel_name": "branch119_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3183022346982425e-8, + "L": 5.337221819618195, + "R_poiseuille": 38.023504760322396, + "stenosis_coefficient": 0.005317662377323716 + } + }, + { + "vessel_id": 166, + "vessel_length": 1.2038473751456866, + "vessel_name": "branch119_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.1097278567720434e-8, + "L": 10.710291670657883, + "R_poiseuille": 85.25906190432802, + "stenosis_coefficient": 1.5162851950302998 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_68" + }, + "vessel_id": 167, + "vessel_length": 0.7224027740166741, + "vessel_name": "branch119_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3211761218421067e-8, + "L": 6.166822162379177, + "R_poiseuille": 47.10327856894818, + "stenosis_coefficient": 0.01856714150511237 + } + }, + { + "vessel_id": 168, + "vessel_length": 2.2416747602530096, + "vessel_name": "branch120_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.014857898659348e-8, + "L": 13.18150878497682, + "R_poiseuille": 69.36856530650408, + "stenosis_coefficient": 0.21212206201975967 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_69" + }, + "vessel_id": 169, + "vessel_length": 1.3192362301447014, + "vessel_name": "branch121_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.2561939578272445e-8, + "L": 12.014614931914547, + "R_poiseuille": 97.90449208492146, + "stenosis_coefficient": -0.00019279797623182802 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_70" + }, + "vessel_id": 170, + "vessel_length": 1.0517739141509332, + "vessel_name": "branch122_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.4155507564766925e-8, + "L": 12.039261709650901, + "R_poiseuille": 123.29646571900255, + "stenosis_coefficient": 0.5436488692735286 + } + }, + { + "vessel_id": 171, + "vessel_length": 0.2908085645766913, + "vessel_name": "branch123_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.412181499420098e-9, + "L": 2.442480316821504, + "R_poiseuille": 18.358230817399217, + "stenosis_coefficient": 0.29603498625367575 + } + }, + { + "vessel_id": 172, + "vessel_length": 1.424012535465686, + "vessel_name": "branch123_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.3895437181138975e-8, + "L": 13.213352330123278, + "R_poiseuille": 109.699977779701, + "stenosis_coefficient": 4.4828758761861724 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_71" + }, + "vessel_id": 173, + "vessel_length": 0.2332756260216596, + "vessel_name": "branch123_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.8685254303535645e-9, + "L": 2.188178024433902, + "R_poiseuille": 18.36487132218399, + "stenosis_coefficient": 0.02355052126941836 + } + }, + { + "vessel_id": 174, + "vessel_length": 0.08933625535225823, + "vessel_name": "branch124_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.6077370771546506e-9, + "L": 0.7746965592104588, + "R_poiseuille": 6.011208011943777, + "stenosis_coefficient": -0.0005758940618330996 + } + }, + { + "vessel_id": 175, + "vessel_length": 0.397648710425473, + "vessel_name": "branch124_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.133146769466608e-9, + "L": 3.45894865712368, + "R_poiseuille": 26.92211176016951, + "stenosis_coefficient": 0.019004876347998592 + } + }, + { + "vessel_id": 176, + "vessel_length": 0.8945602031072306, + "vessel_name": "branch124_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.7092760376099297e-8, + "L": 7.320338256217136, + "R_poiseuille": 53.60029599413787, + "stenosis_coefficient": -0.004350012174580513 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_72" + }, + "vessel_id": 177, + "vessel_length": 1.1423383551685218, + "vessel_name": "branch125_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.850597820730325e-8, + "L": 10.9565350505902, + "R_poiseuille": 94.02432081558848, + "stenosis_coefficient": 1.286395047359414 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_73" + }, + "vessel_id": 178, + "vessel_length": 2.2285190627274383, + "vessel_name": "branch126_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.027151428175234e-8, + "L": 19.24355760061555, + "R_poiseuille": 148.67795097819183, + "stenosis_coefficient": 0.12081320820496662 + } + }, + { + "vessel_id": 179, + "vessel_length": 1.6212067636049716, + "vessel_name": "branch127_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.6603067967212766e-8, + "L": 15.36584320840334, + "R_poiseuille": 130.31176685221564, + "stenosis_coefficient": 0.04379675264029805 + } + }, + { + "vessel_id": 180, + "vessel_length": 1.282198364801577, + "vessel_name": "branch127_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.6687635553740252e-8, + "L": 15.153877037112412, + "R_poiseuille": 160.23882229506563, + "stenosis_coefficient": 2.350245642297233 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_74" + }, + "vessel_id": 181, + "vessel_length": 0.1940528076665006, + "vessel_name": "branch127_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.908879364214913e-9, + "L": 2.004831279750573, + "R_poiseuille": 18.532067036795304, + "stenosis_coefficient": -0.0018452680607820163 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_75" + }, + "vessel_id": 182, + "vessel_length": 0.5607507398688213, + "vessel_name": "branch128_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.1122419187269179e-8, + "L": 4.426354641090247, + "R_poiseuille": 31.265053327646523, + "stenosis_coefficient": 1.404371780613012 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_76" + }, + "vessel_id": 183, + "vessel_length": 3.9779415762156565, + "vessel_name": "branch129_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.15089272005258e-8, + "L": 34.52810943646964, + "R_poiseuille": 268.1697834380188, + "stenosis_coefficient": 0.05213557847088714 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_77" + }, + "vessel_id": 184, + "vessel_length": 1.4286105395948658, + "vessel_name": "branch130_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.4253461710454063e-8, + "L": 21.67679323227909, + "R_poiseuille": 294.26646870111983, + "stenosis_coefficient": 3.9919113158705954 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_78" + }, + "vessel_id": 185, + "vessel_length": 1.9977889411535166, + "vessel_name": "branch131_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.1543712309752606e-8, + "L": 12.206351434457376, + "R_poiseuille": 66.75415301672963, + "stenosis_coefficient": 2.3056674683148444 + } + }, + { + "vessel_id": 186, + "vessel_length": 0.5617562776124612, + "vessel_name": "branch132_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.2643314046105608e-8, + "L": 3.922470315474491, + "R_poiseuille": 24.51178572778096, + "stenosis_coefficient": 0.009260456797604066 + } + }, + { + "vessel_id": 187, + "vessel_length": 0.42672901571828004, + "vessel_name": "branch132_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.369096464058734e-9, + "L": 3.851381835259205, + "R_poiseuille": 31.10393107982454, + "stenosis_coefficient": 0.14013117342713352 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_79" + }, + "vessel_id": 188, + "vessel_length": 0.8735242288475483, + "vessel_name": "branch132_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.5878352724373658e-8, + "L": 7.504232187715227, + "R_poiseuille": 57.684328580029074, + "stenosis_coefficient": 0.010607118109219554 + } + }, + { + "vessel_id": 189, + "vessel_length": 0.7120827001719353, + "vessel_name": "branch133_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3069156370860951e-8, + "L": 6.060608839472396, + "R_poiseuille": 46.15828969562926, + "stenosis_coefficient": -0.007516731804120262 + } + }, + { + "vessel_id": 190, + "vessel_length": 1.0077097131491346, + "vessel_name": "branch133_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.6012601105416653e-8, + "L": 9.850567503658166, + "R_poiseuille": 86.15478013127274, + "stenosis_coefficient": 0.029782265853926508 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_80" + }, + "vessel_id": 191, + "vessel_length": 0.4917976064181432, + "vessel_name": "branch133_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.721227799463997e-9, + "L": 5.549398547757552, + "R_poiseuille": 56.02440859071147, + "stenosis_coefficient": -0.0037358919096864133 + } + }, + { + "vessel_id": 192, + "vessel_length": 1.262636440146434, + "vessel_name": "branch134_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3892954430600401e-8, + "L": 17.485047594505048, + "R_poiseuille": 216.62759106294538, + "stenosis_coefficient": 0.13888698535152708 + } + }, + { + "vessel_id": 193, + "vessel_length": 0.46392895638658593, + "vessel_name": "branch134_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.87823890959809e-9, + "L": 6.7018417365488165, + "R_poiseuille": 86.61569917799557, + "stenosis_coefficient": 0.11403162156482816 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_81" + }, + "vessel_id": 194, + "vessel_length": 0.4552562346352282, + "vessel_name": "branch134_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.7726665293888664e-9, + "L": 6.594655136250097, + "R_poiseuille": 85.46541172964318, + "stenosis_coefficient": 0.08981610437830075 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_82" + }, + "vessel_id": 195, + "vessel_length": 1.009448557146865, + "vessel_name": "branch135_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.9049190136796895e-8, + "L": 8.36174575795873, + "R_poiseuille": 61.97664026625221, + "stenosis_coefficient": 0.05925590721356802 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_83" + }, + "vessel_id": 196, + "vessel_length": 0.7885756149364074, + "vessel_name": "branch136_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.919343290039753e-9, + "L": 11.890603891758822, + "R_poiseuille": 160.40677194675675, + "stenosis_coefficient": 0.9953179210280904 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_84" + }, + "vessel_id": 197, + "vessel_length": 2.2756488074671433, + "vessel_name": "branch137_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.0647780268450735e-8, + "L": 16.067483673475856, + "R_poiseuille": 101.5212961709619, + "stenosis_coefficient": 0.7396220855780873 + } + }, + { + "vessel_id": 198, + "vessel_length": 0.2760137505564742, + "vessel_name": "branch138_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 9.354636091660975e-9, + "L": 1.2895526372672188, + "R_poiseuille": 5.392688947387771, + "stenosis_coefficient": 0.026101634071027308 + } + }, + { + "vessel_id": 199, + "vessel_length": 1.3368910578317676, + "vessel_name": "branch138_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.567221815789866e-8, + "L": 7.906302628547979, + "R_poiseuille": 41.85032941248089, + "stenosis_coefficient": 0.10173650958538297 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_85" + }, + "vessel_id": 200, + "vessel_length": 1.2002256069240955, + "vessel_name": "branch138_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.373644315573067e-8, + "L": 6.743683559231753, + "R_poiseuille": 33.909027710195545, + "stenosis_coefficient": 0.08882365685805574 + } + }, + { + "vessel_id": 201, + "vessel_length": 1.7693205145222453, + "vessel_name": "branch139_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.4710673906662763e-8, + "L": 19.558749273562764, + "R_poiseuille": 193.4460909547245, + "stenosis_coefficient": 0.09296689310253535 + } + }, + { + "vessel_id": 202, + "vessel_length": 1.06214931132661, + "vessel_name": "branch139_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3581640772459005e-8, + "L": 12.763716034679947, + "R_poiseuille": 137.22737243375025, + "stenosis_coefficient": 1.4584019514986772 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_86" + }, + "vessel_id": 203, + "vessel_length": 0.48303953446564885, + "vessel_name": "branch139_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.232422883152953e-9, + "L": 5.755167907030063, + "R_poiseuille": 61.34870458563243, + "stenosis_coefficient": 0.12468332673971436 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_87" + }, + "vessel_id": 204, + "vessel_length": 0.843109508708837, + "vessel_name": "branch140_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.4084845182517803e-8, + "L": 7.851421551887109, + "R_poiseuille": 65.418584701195, + "stenosis_coefficient": 0.11907591934390345 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_88" + }, + "vessel_id": 205, + "vessel_length": 2.0603411078869778, + "vessel_name": "branch141_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.335491022619064e-8, + "L": 19.782323013481545, + "R_poiseuille": 169.9466444677624, + "stenosis_coefficient": 1.8400738779673824 + } + }, + { + "vessel_id": 206, + "vessel_length": 0.6602430182165941, + "vessel_name": "branch142_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.8135909220198244e-8, + "L": 3.794323931654896, + "R_poiseuille": 19.516580419905655, + "stenosis_coefficient": 0.00039914429558572635 + } + }, + { + "vessel_id": 207, + "vessel_length": 1.585889694767858, + "vessel_name": "branch142_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.592946056056992e-8, + "L": 11.00169376270429, + "R_poiseuille": 68.29422140673535, + "stenosis_coefficient": 1.2892066469056835 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_89" + }, + "vessel_id": 208, + "vessel_length": 0.09433776315388086, + "vessel_name": "branch142_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.4066523771139305e-9, + "L": 0.582683643260534, + "R_poiseuille": 3.220597162963081, + "stenosis_coefficient": 0.07887520048763677 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_90" + }, + "vessel_id": 209, + "vessel_length": 2.1364480183130805, + "vessel_name": "branch143_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.1121242503719746e-8, + "L": 17.36672269371948, + "R_poiseuille": 126.32324771260508, + "stenosis_coefficient": 0.09753760315637029 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_91" + }, + "vessel_id": 210, + "vessel_length": 1.8509017198379139, + "vessel_name": "branch144_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.0923751499746944e-8, + "L": 13.144754212399663, + "R_poiseuille": 83.52910899252765, + "stenosis_coefficient": 0.021909355571244515 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_92" + }, + "vessel_id": 211, + "vessel_length": 2.022718739860449, + "vessel_name": "branch145_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.344802466203728e-8, + "L": 19.027624043259635, + "R_poiseuille": 160.1492375836278, + "stenosis_coefficient": 4.90346428742025 + } + }, + { + "vessel_id": 212, + "vessel_length": 0.3284897109005369, + "vessel_name": "branch146_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.753265268336677e-9, + "L": 2.923163954837516, + "R_poiseuille": 23.27408806752983, + "stenosis_coefficient": 0.008770415451516548 + } + }, + { + "vessel_id": 213, + "vessel_length": 1.512182409452769, + "vessel_name": "branch146_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.8090332136395305e-8, + "L": 19.359316107216173, + "R_poiseuille": 221.73702288592912, + "stenosis_coefficient": 12.943715997831246 + } + }, + { + "boundary_conditions": { + "outlet": "RESISTANCE_93" + }, + "vessel_id": 214, + "vessel_length": 0.487915826971711, + "vessel_name": "branch146_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.300811088509598e-9, + "L": 5.810171502749099, + "R_poiseuille": 61.90193715062472, + "stenosis_coefficient": 0.1115127876855571 + } + } + ] +} diff --git a/tests/cases/vmr/reference/0104_0001_optimal_from_0d.json b/tests/cases/vmr/reference/0104_0001_optimal_from_0d.json index 83876fb40..517dce887 100644 --- a/tests/cases/vmr/reference/0104_0001_optimal_from_0d.json +++ b/tests/cases/vmr/reference/0104_0001_optimal_from_0d.json @@ -1,689 +1,470 @@ { - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 19.581907481595668, - 29.24682998044782, - 42.0511165296033, - 58.583913202644474, - 78.95362616027712, - 103.27506735565193, - 130.16534882450802, - 158.11460426170575, - 185.3564624676055, - 210.00675799120174, - 230.14062159309847, - 244.73105343201496, - 253.69338170314, - 257.05601197452415, - 256.0693925199267, - 251.86471784525148, - 245.88851566046975, - 239.12106476762335, - 232.10897405704137, - 225.15125147491213, - 217.97720402973337, - 210.1674463421351, - 201.4946309392784, - 191.82313530044465, - 181.19449872183276, - 169.9852394452257, - 158.72346366351152, - 147.6930079809729, - 136.9482091445109, - 126.56365701566217, - 116.06082531356147, - 104.86525943054755, - 92.70970076933371, - 79.3807344047527, - 64.81272634444237, - 49.86814034140978, - 35.19454243721392, - 21.51179631610772, - 9.992989822184512, - 0.8867712885176026, - -5.537671779881001, - -9.579657157216602, - -11.611404933684915, - -12.33447052477908, - -12.218625949917055, - -11.640767443352093, - -10.689850735695753, - -9.276334007322495, - -7.253939643489095, - -4.5124157127967175, - -1.0622631811875014, - 2.740625109763227, - 6.476082901308106, - 9.639835317912233, - 11.730779557406226, - 12.519379517353505, - 12.095924459442914, - 10.775316065370106, - 9.110507086398105, - 7.665149973221131, - 6.854060102188092, - 6.88444268118512, - 7.567583025205867, - 8.528115822955554, - 9.202847862573616, - 9.068039723252227, - 7.86356755044207, - 5.555421231360338, - 2.5134069022190055, - -0.7866296297480672, - -3.665410108802718, - -5.626432153743674, - -6.491107894311172, - -6.249539655106462, - -5.35236204167692, - -4.319870419424456, - -3.727209684989501, - -4.015479774824012, - -5.297081449614054, - -7.469070649799495, - -10.087968366633373, - -12.675902678245876, - -14.779047115069162, - -16.048740620275993, - -16.433639588685313, - -16.06971930508376, - -15.251965727850354, - -14.292802363131837, - -13.40752847300765, - -12.676279065948533, - -11.988085430841524, - -11.12210395441212, - -9.830647135308425, - -7.950669625931317, - -5.353410386770605, - -2.085489965433775, - 1.8538463401322447, - 6.520264580067509, - 12.319343064136449, - 19.581907481595668 - ], - "t": [ - 0.0, - 0.009777777777777785, - 0.01955555555555557, - 0.029333333333333354, - 0.03911111111111114, - 0.048888888888888926, - 0.05866666666666671, - 0.06844444444444449, - 0.07822222222222228, - 0.08800000000000006, - 0.09777777777777785, - 0.10755555555555563, - 0.11733333333333341, - 0.1271111111111112, - 0.13688888888888898, - 0.14666666666666678, - 0.15644444444444455, - 0.16622222222222233, - 0.17600000000000013, - 0.1857777777777779, - 0.1955555555555557, - 0.20533333333333348, - 0.21511111111111125, - 0.22488888888888905, - 0.23466666666666683, - 0.2444444444444446, - 0.2542222222222224, - 0.2640000000000002, - 0.27377777777777795, - 0.2835555555555557, - 0.29333333333333356, - 0.30311111111111133, - 0.3128888888888891, - 0.3226666666666669, - 0.33244444444444465, - 0.3422222222222225, - 0.35200000000000026, - 0.36177777777777803, - 0.3715555555555558, - 0.3813333333333336, - 0.3911111111111114, - 0.4008888888888892, - 0.41066666666666696, - 0.42044444444444473, - 0.4302222222222225, - 0.4400000000000003, - 0.4497777777777781, - 0.4595555555555559, - 0.46933333333333366, - 0.47911111111111143, - 0.4888888888888892, - 0.49866666666666704, - 0.5084444444444448, - 0.5182222222222226, - 0.5280000000000004, - 0.5377777777777781, - 0.5475555555555559, - 0.5573333333333337, - 0.5671111111111115, - 0.5768888888888893, - 0.5866666666666671, - 0.5964444444444449, - 0.6062222222222227, - 0.6160000000000004, - 0.6257777777777782, - 0.635555555555556, - 0.6453333333333338, - 0.6551111111111115, - 0.6648888888888893, - 0.6746666666666671, - 0.684444444444445, - 0.6942222222222227, - 0.7040000000000005, - 0.7137777777777783, - 0.7235555555555561, - 0.7333333333333338, - 0.7431111111111116, - 0.7528888888888894, - 0.7626666666666672, - 0.7724444444444449, - 0.7822222222222228, - 0.7920000000000006, - 0.8017777777777784, - 0.8115555555555561, - 0.8213333333333339, - 0.8311111111111117, - 0.8408888888888895, - 0.8506666666666672, - 0.860444444444445, - 0.8702222222222228, - 0.8800000000000006, - 0.8897777777777784, - 0.8995555555555562, - 0.909333333333334, - 0.9191111111111118, - 0.9288888888888895, - 0.9386666666666673, - 0.9484444444444451, - 0.9582222222222229, - 0.9680000000000007 - ] - } - }, - { - "bc_name": "RCR_0", - "bc_type": "RCR", - "bc_values": { - "C": 0.00012993, - "Pd": 0.0, - "Rd": 14964.0, - "Rp": 888.0 - } - }, - { - "bc_name": "RCR_1", - "bc_type": "RCR", - "bc_values": { - "C": 0.00060244, - "Pd": 0.0, - "Rd": 3163.0000000000005, - "Rp": 256.0 - } - }, - { - "bc_name": "RCR_2", - "bc_type": "RCR", - "bc_values": { - "C": 0.00011318999999999999, - "Pd": 0.0, - "Rd": 17177.0, - "Rp": 1019.0 - } - }, - { - "bc_name": "RCR_3", - "bc_type": "RCR", - "bc_values": { - "C": 4.123e-05, - "Pd": 0.0, - "Rd": 44958.0, - "Rp": 4995.0 - } - }, - { - "bc_name": "RCR_4", - "bc_type": "RCR", - "bc_values": { - "C": 0.00011318999999999999, - "Pd": 0.0, - "Rd": 17177.0, - "Rp": 1019.0 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0 - ], - "junction_name": "J0", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 1, - 5, - 9 - ] - }, - { - "inlet_vessels": [ - 1 - ], - "junction_name": "J1", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 2, - 15 - ] - }, - { - "inlet_vessels": [ - 5 - ], - "junction_name": "J2", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 6, - 12 - ] - }, - { - "inlet_vessels": [ - 2 - ], - "junction_name": "J3", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 3 - ] - }, - { - "inlet_vessels": [ - 3 - ], - "junction_name": "J4", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 4 - ] - }, - { - "inlet_vessels": [ - 6 - ], - "junction_name": "J5", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 7 - ] - }, - { - "inlet_vessels": [ - 7 - ], - "junction_name": "J6", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 8 - ] - }, - { - "inlet_vessels": [ - 9 - ], - "junction_name": "J7", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 10 - ] - }, - { - "inlet_vessels": [ - 10 - ], - "junction_name": "J8", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 11 - ] - }, - { - "inlet_vessels": [ - 12 - ], - "junction_name": "J9", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 13 - ] - }, - { - "inlet_vessels": [ - 13 - ], - "junction_name": "J10", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 14 - ] - }, - { - "inlet_vessels": [ - 15 - ], - "junction_name": "J11", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 16 - ] - }, - { - "inlet_vessels": [ - 16 - ], - "junction_name": "J12", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 17 - ] - } - ], - "simulation_parameters": { - "density": 1.06, - "model_name": "0104_0001", - "number_of_cardiac_cycles": 9, - "number_of_time_pts_per_cardiac_cycle": 968, - "output_all_cycles": false, - "viscosity": 0.04 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 5.462738535526542, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.7452803065095692e-06, - "L": 1.7026477662281492, - "R_poiseuille": 0.4777727232913649, - "stenosis_coefficient": -6.0333518268674465e-06 - } - }, - { - "vessel_id": 1, - "vessel_length": 1.2615694946168765, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.772761524728445e-07, - "L": 1.407991366380127, - "R_poiseuille": 1.4083288595986885, - "stenosis_coefficient": -4.6464294457291044e-05 - } - }, - { - "vessel_id": 2, - "vessel_length": 3.066087671068054, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3144264322377128e-07, - "L": 11.188143094378043, - "R_poiseuille": 36.52554470225894, - "stenosis_coefficient": 0.006578552177730159 - } - }, - { - "vessel_id": 3, - "vessel_length": 0.386387365444609, - "vessel_name": "branch2_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3183794010597983e-08, - "L": 1.771760324984766, - "R_poiseuille": 7.268308125543165, - "stenosis_coefficient": 0.0022115706304455655 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_0" - }, - "vessel_id": 4, - "vessel_length": 1.0711328524532193, - "vessel_name": "branch2_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.6054949996933236e-08, - "L": 4.979501312553903, - "R_poiseuille": 20.708956044253053, - "stenosis_coefficient": 0.00014755774195687285 - } - }, - { - "vessel_id": 5, - "vessel_length": 0.6541411252008914, - "vessel_name": "branch3_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.671566365517948e-08, - "L": 0.7736880635783858, - "R_poiseuille": 0.8196063976813875, - "stenosis_coefficient": 0.026777676095912573 - } - }, - { - "vessel_id": 6, - "vessel_length": 3.9035420097681923, - "vessel_name": "branch4_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.954635533767153e-07, - "L": 3.4347071500331667, - "R_poiseuille": 2.6960139470366253, - "stenosis_coefficient": 0.006464519966371423 - } - }, - { - "vessel_id": 7, - "vessel_length": 1.6172339670911955, - "vessel_name": "branch4_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.8751549478742754e-07, - "L": 1.4277752314716303, - "R_poiseuille": 1.1244860454075662, - "stenosis_coefficient": 0.005829359169821435 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_1" - }, - "vessel_id": 8, - "vessel_length": 10.404354538354355, - "vessel_name": "branch4_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.8256106805995246e-06, - "L": 9.314130469472266, - "R_poiseuille": 7.475199813896197, - "stenosis_coefficient": 0.0022450177635880667 - } - }, - { - "vessel_id": 9, - "vessel_length": 2.0528043053140657, - "vessel_name": "branch5_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.433892156097748e-07, - "L": 4.606682411029632, - "R_poiseuille": 9.252848527620445, - "stenosis_coefficient": -0.0002136101334142752 - } - }, - { - "vessel_id": 10, - "vessel_length": 1.8557246843610942, - "vessel_name": "branch5_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.083976992899144e-08, - "L": 8.834086988916406, - "R_poiseuille": 37.622952316395796, - "stenosis_coefficient": 0.09831393956330917 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_2" - }, - "vessel_id": 11, - "vessel_length": 1.6295908330522304, - "vessel_name": "branch5_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.6356497509633646e-08, - "L": 7.370238155103511, - "R_poiseuille": 29.81962044361845, - "stenosis_coefficient": 6.27409403317757e-07 - } - }, - { - "vessel_id": 12, - "vessel_length": 1.560439375019021, - "vessel_name": "branch6_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.166688285656661e-08, - "L": 7.355254416841223, - "R_poiseuille": 31.02990366177535, - "stenosis_coefficient": -0.0026443719432060414 - } - }, - { - "vessel_id": 13, - "vessel_length": 1.6347590809944081, - "vessel_name": "branch6_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.8488034320178465e-08, - "L": 10.77036372639733, - "R_poiseuille": 63.48802055635521, - "stenosis_coefficient": 0.11981496757776272 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_3" - }, - "vessel_id": 14, - "vessel_length": 3.8286489278855598, - "vessel_name": "branch6_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.951304531510058e-08, - "L": 28.494063691908643, - "R_poiseuille": 189.6432833288259, - "stenosis_coefficient": 0.09084230317905481 - } - }, - { - "vessel_id": 15, - "vessel_length": 0.8548959459506262, - "vessel_name": "branch7_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.5079463327330116e-08, - "L": 4.54100682061056, - "R_poiseuille": 21.581642747920846, - "stenosis_coefficient": -0.0002040687113801918 - } - }, - { - "vessel_id": 16, - "vessel_length": 0.3605161548345858, - "vessel_name": "branch7_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 9.181794196002474e-09, - "L": 2.2007729425853197, - "R_poiseuille": 12.0198393396498, - "stenosis_coefficient": 0.0012070044889376014 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_4" - }, - "vessel_id": 17, - "vessel_length": 2.8490356278827176, - "vessel_name": "branch7_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.149237221369845e-08, - "L": 17.630327958811, - "R_poiseuille": 97.60222669602646, - "stenosis_coefficient": 0.0009677697336982867 - } - } - ] -} \ No newline at end of file + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 19.581907481595668, 29.24682998044782, 42.0511165296033, + 58.583913202644474, 78.95362616027712, 103.27506735565193, + 130.16534882450802, 158.11460426170575, 185.3564624676055, + 210.00675799120174, 230.14062159309847, 244.73105343201496, + 253.69338170314, 257.05601197452415, 256.0693925199267, + 251.86471784525148, 245.88851566046975, 239.12106476762335, + 232.10897405704137, 225.15125147491213, 217.97720402973337, + 210.1674463421351, 201.4946309392784, 191.82313530044465, + 181.19449872183276, 169.9852394452257, 158.72346366351152, + 147.6930079809729, 136.9482091445109, 126.56365701566217, + 116.06082531356147, 104.86525943054755, 92.70970076933371, + 79.3807344047527, 64.81272634444237, 49.86814034140978, + 35.19454243721392, 21.51179631610772, 9.992989822184512, + 0.8867712885176026, -5.537671779881001, -9.579657157216602, + -11.611404933684915, -12.33447052477908, -12.218625949917055, + -11.640767443352093, -10.689850735695753, -9.276334007322495, + -7.253939643489095, -4.5124157127967175, -1.0622631811875014, + 2.740625109763227, 6.476082901308106, 9.639835317912233, + 11.730779557406226, 12.519379517353505, 12.095924459442914, + 10.775316065370106, 9.110507086398105, 7.665149973221131, + 6.854060102188092, 6.88444268118512, 7.567583025205867, + 8.528115822955554, 9.202847862573616, 9.068039723252227, + 7.86356755044207, 5.555421231360338, 2.5134069022190055, + -0.7866296297480672, -3.665410108802718, -5.626432153743674, + -6.491107894311172, -6.249539655106462, -5.35236204167692, + -4.319870419424456, -3.727209684989501, -4.015479774824012, + -5.297081449614054, -7.469070649799495, -10.087968366633373, + -12.675902678245876, -14.779047115069162, -16.048740620275993, + -16.433639588685313, -16.06971930508376, -15.251965727850354, + -14.292802363131837, -13.40752847300765, -12.676279065948533, + -11.988085430841524, -11.12210395441212, -9.830647135308425, + -7.950669625931317, -5.353410386770605, -2.085489965433775, + 1.8538463401322447, 6.520264580067509, 12.319343064136449, + 19.581907481595668 + ], + "t": [ + 0.0, 0.009777777777777785, 0.01955555555555557, 0.029333333333333354, + 0.03911111111111114, 0.048888888888888926, 0.05866666666666671, + 0.06844444444444449, 0.07822222222222228, 0.08800000000000006, + 0.09777777777777785, 0.10755555555555563, 0.11733333333333341, + 0.1271111111111112, 0.13688888888888898, 0.14666666666666678, + 0.15644444444444455, 0.16622222222222233, 0.17600000000000013, + 0.1857777777777779, 0.1955555555555557, 0.20533333333333348, + 0.21511111111111125, 0.22488888888888905, 0.23466666666666683, + 0.2444444444444446, 0.2542222222222224, 0.2640000000000002, + 0.27377777777777795, 0.2835555555555557, 0.29333333333333356, + 0.30311111111111133, 0.3128888888888891, 0.3226666666666669, + 0.33244444444444465, 0.3422222222222225, 0.35200000000000026, + 0.36177777777777803, 0.3715555555555558, 0.3813333333333336, + 0.3911111111111114, 0.4008888888888892, 0.41066666666666696, + 0.42044444444444473, 0.4302222222222225, 0.4400000000000003, + 0.4497777777777781, 0.4595555555555559, 0.46933333333333366, + 0.47911111111111143, 0.4888888888888892, 0.49866666666666704, + 0.5084444444444448, 0.5182222222222226, 0.5280000000000004, + 0.5377777777777781, 0.5475555555555559, 0.5573333333333337, + 0.5671111111111115, 0.5768888888888893, 0.5866666666666671, + 0.5964444444444449, 0.6062222222222227, 0.6160000000000004, + 0.6257777777777782, 0.635555555555556, 0.6453333333333338, + 0.6551111111111115, 0.6648888888888893, 0.6746666666666671, + 0.684444444444445, 0.6942222222222227, 0.7040000000000005, + 0.7137777777777783, 0.7235555555555561, 0.7333333333333338, + 0.7431111111111116, 0.7528888888888894, 0.7626666666666672, + 0.7724444444444449, 0.7822222222222228, 0.7920000000000006, + 0.8017777777777784, 0.8115555555555561, 0.8213333333333339, + 0.8311111111111117, 0.8408888888888895, 0.8506666666666672, + 0.860444444444445, 0.8702222222222228, 0.8800000000000006, + 0.8897777777777784, 0.8995555555555562, 0.909333333333334, + 0.9191111111111118, 0.9288888888888895, 0.9386666666666673, + 0.9484444444444451, 0.9582222222222229, 0.9680000000000007 + ] + } + }, + { + "bc_name": "RCR_0", + "bc_type": "RCR", + "bc_values": { + "C": 0.00012993, + "Pd": 0.0, + "Rd": 14964.0, + "Rp": 888.0 + } + }, + { + "bc_name": "RCR_1", + "bc_type": "RCR", + "bc_values": { + "C": 0.00060244, + "Pd": 0.0, + "Rd": 3163.0000000000005, + "Rp": 256.0 + } + }, + { + "bc_name": "RCR_2", + "bc_type": "RCR", + "bc_values": { + "C": 0.00011318999999999999, + "Pd": 0.0, + "Rd": 17177.0, + "Rp": 1019.0 + } + }, + { + "bc_name": "RCR_3", + "bc_type": "RCR", + "bc_values": { + "C": 4.123e-5, + "Pd": 0.0, + "Rd": 44958.0, + "Rp": 4995.0 + } + }, + { + "bc_name": "RCR_4", + "bc_type": "RCR", + "bc_values": { + "C": 0.00011318999999999999, + "Pd": 0.0, + "Rd": 17177.0, + "Rp": 1019.0 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0], + "junction_name": "J0", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0] + }, + "outlet_vessels": [1, 5, 9] + }, + { + "inlet_vessels": [1], + "junction_name": "J1", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [2, 15] + }, + { + "inlet_vessels": [5], + "junction_name": "J2", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [6, 12] + }, + { + "inlet_vessels": [2], + "junction_name": "J3", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [3] + }, + { + "inlet_vessels": [3], + "junction_name": "J4", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [4] + }, + { + "inlet_vessels": [6], + "junction_name": "J5", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [7] + }, + { + "inlet_vessels": [7], + "junction_name": "J6", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [8] + }, + { + "inlet_vessels": [9], + "junction_name": "J7", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [10] + }, + { + "inlet_vessels": [10], + "junction_name": "J8", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [11] + }, + { + "inlet_vessels": [12], + "junction_name": "J9", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [13] + }, + { + "inlet_vessels": [13], + "junction_name": "J10", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [14] + }, + { + "inlet_vessels": [15], + "junction_name": "J11", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [16] + }, + { + "inlet_vessels": [16], + "junction_name": "J12", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [17] + } + ], + "simulation_parameters": { + "density": 1.06, + "model_name": "0104_0001", + "number_of_cardiac_cycles": 9, + "number_of_time_pts_per_cardiac_cycle": 968, + "output_all_cycles": false, + "viscosity": 0.04 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 5.462738535526542, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.7452803065095692e-6, + "L": 1.7026477662281492, + "R_poiseuille": 0.4777727232913649, + "stenosis_coefficient": -6.0333518268674465e-6 + } + }, + { + "vessel_id": 1, + "vessel_length": 1.2615694946168765, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.772761524728445e-7, + "L": 1.407991366380127, + "R_poiseuille": 1.4083288595986885, + "stenosis_coefficient": -4.6464294457291044e-5 + } + }, + { + "vessel_id": 2, + "vessel_length": 3.066087671068054, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3144264322377128e-7, + "L": 11.188143094378043, + "R_poiseuille": 36.52554470225894, + "stenosis_coefficient": 0.006578552177730159 + } + }, + { + "vessel_id": 3, + "vessel_length": 0.386387365444609, + "vessel_name": "branch2_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3183794010597983e-8, + "L": 1.771760324984766, + "R_poiseuille": 7.268308125543165, + "stenosis_coefficient": 0.0022115706304455655 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_0" + }, + "vessel_id": 4, + "vessel_length": 1.0711328524532193, + "vessel_name": "branch2_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.6054949996933236e-8, + "L": 4.979501312553903, + "R_poiseuille": 20.708956044253053, + "stenosis_coefficient": 0.00014755774195687285 + } + }, + { + "vessel_id": 5, + "vessel_length": 0.6541411252008914, + "vessel_name": "branch3_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.671566365517948e-8, + "L": 0.7736880635783858, + "R_poiseuille": 0.8196063976813875, + "stenosis_coefficient": 0.026777676095912573 + } + }, + { + "vessel_id": 6, + "vessel_length": 3.9035420097681923, + "vessel_name": "branch4_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.954635533767153e-7, + "L": 3.4347071500331667, + "R_poiseuille": 2.6960139470366253, + "stenosis_coefficient": 0.006464519966371423 + } + }, + { + "vessel_id": 7, + "vessel_length": 1.6172339670911955, + "vessel_name": "branch4_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.8751549478742754e-7, + "L": 1.4277752314716303, + "R_poiseuille": 1.1244860454075662, + "stenosis_coefficient": 0.005829359169821435 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_1" + }, + "vessel_id": 8, + "vessel_length": 10.404354538354355, + "vessel_name": "branch4_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.8256106805995246e-6, + "L": 9.314130469472266, + "R_poiseuille": 7.475199813896197, + "stenosis_coefficient": 0.0022450177635880667 + } + }, + { + "vessel_id": 9, + "vessel_length": 2.0528043053140657, + "vessel_name": "branch5_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.433892156097748e-7, + "L": 4.606682411029632, + "R_poiseuille": 9.252848527620445, + "stenosis_coefficient": -0.0002136101334142752 + } + }, + { + "vessel_id": 10, + "vessel_length": 1.8557246843610942, + "vessel_name": "branch5_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.083976992899144e-8, + "L": 8.834086988916406, + "R_poiseuille": 37.622952316395796, + "stenosis_coefficient": 0.09831393956330917 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_2" + }, + "vessel_id": 11, + "vessel_length": 1.6295908330522304, + "vessel_name": "branch5_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.6356497509633646e-8, + "L": 7.370238155103511, + "R_poiseuille": 29.81962044361845, + "stenosis_coefficient": 6.27409403317757e-7 + } + }, + { + "vessel_id": 12, + "vessel_length": 1.560439375019021, + "vessel_name": "branch6_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.166688285656661e-8, + "L": 7.355254416841223, + "R_poiseuille": 31.02990366177535, + "stenosis_coefficient": -0.0026443719432060414 + } + }, + { + "vessel_id": 13, + "vessel_length": 1.6347590809944081, + "vessel_name": "branch6_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.8488034320178465e-8, + "L": 10.77036372639733, + "R_poiseuille": 63.48802055635521, + "stenosis_coefficient": 0.11981496757776272 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_3" + }, + "vessel_id": 14, + "vessel_length": 3.8286489278855598, + "vessel_name": "branch6_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.951304531510058e-8, + "L": 28.494063691908643, + "R_poiseuille": 189.6432833288259, + "stenosis_coefficient": 0.09084230317905481 + } + }, + { + "vessel_id": 15, + "vessel_length": 0.8548959459506262, + "vessel_name": "branch7_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.5079463327330116e-8, + "L": 4.54100682061056, + "R_poiseuille": 21.581642747920846, + "stenosis_coefficient": -0.0002040687113801918 + } + }, + { + "vessel_id": 16, + "vessel_length": 0.3605161548345858, + "vessel_name": "branch7_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 9.181794196002474e-9, + "L": 2.2007729425853197, + "R_poiseuille": 12.0198393396498, + "stenosis_coefficient": 0.0012070044889376014 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_4" + }, + "vessel_id": 17, + "vessel_length": 2.8490356278827176, + "vessel_name": "branch7_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.149237221369845e-8, + "L": 17.630327958811, + "R_poiseuille": 97.60222669602646, + "stenosis_coefficient": 0.0009677697336982867 + } + } + ] +} diff --git a/tests/cases/vmr/reference/0140_2001_optimal_from_0d.json b/tests/cases/vmr/reference/0140_2001_optimal_from_0d.json index dd788dc75..f32345bfe 100644 --- a/tests/cases/vmr/reference/0140_2001_optimal_from_0d.json +++ b/tests/cases/vmr/reference/0140_2001_optimal_from_0d.json @@ -1,1241 +1,916 @@ { - "boundary_conditions": [ - { - "bc_name": "INFLOW", - "bc_type": "FLOW", - "bc_values": { - "Q": [ - 25.674478887744097, - 25.94535841671895, - 26.40397770930373, - 27.078557220791417, - 27.987924243407218, - 29.223018699271037, - 30.872863997957957, - 33.14710517392046, - 36.24233649316084, - 40.32941619284094, - 45.707199117022874, - 52.3992217826857, - 60.62210097617118, - 70.22501556164931, - 81.05839546420485, - 92.99648379412291, - 105.49834749077813, - 118.48276992683357, - 131.27259753840468, - 143.7649170026322, - 155.35688109143825, - 165.80346685084584, - 174.7861901139547, - 181.8894769571331, - 187.03405970454247, - 189.92968409297364, - 190.54660446170104, - 188.8393317841419, - 184.95869990371955, - 179.00706479935084, - 171.36892276825773, - 162.17188382738493, - 151.9224840372999, - 140.69629176277343, - 128.8758653843917, - 116.79196935170167, - 104.40209357822438, - 92.1540459381269, - 79.96017988979212, - 68.31079157809357, - 57.16093078281224, - 46.90621631712706, - 37.866800968464474, - 30.021884357838466, - 23.657451092007406, - 18.65215821403915, - 15.026506001685505, - 12.617459012327329, - 11.222617178148154, - 10.668320045402487, - 10.775780400321388, - 11.426953130150322, - 12.573357800939682, - 14.17715631699319, - 16.245875690586708, - 18.77312459468089, - 21.66200146102451, - 24.87301321309217, - 28.183734122582287, - 31.485700969509814, - 34.5548741049021, - 37.202931571616574, - 39.38566156483294, - 41.01172010677542, - 42.138563589177416, - 42.809473436279944, - 43.1255305264649, - 43.165580110023946, - 42.997790777114155, - 42.65457442604729, - 42.154960997292505, - 41.48541045198559, - 40.6598910096873, - 39.67391551057553, - 38.569986753415115, - 37.41430731338149, - 36.24090910332261, - 35.129941865339894, - 34.09139769664441, - 33.1525575391422, - 32.297312222462224, - 31.48971969828123, - 30.714288194429606, - 29.93583369617746, - 29.174750273047025, - 28.437718719180175, - 27.777383767244913, - 27.22607248914084, - 26.812199166529453, - 26.54440338309936, - 26.39417815218615, - 26.321846831150243, - 26.27277536814443, - 26.202064928995775, - 26.085898194797117, - 25.925203022216337, - 25.754547731026946, - 25.61956451593617, - 25.57745195059132, - 25.674478887744097 - ], - "t": [ - 0.0, - 0.008909090909090906, - 0.017818181818181813, - 0.026727272727272718, - 0.035636363636363626, - 0.044545454545454534, - 0.053454545454545435, - 0.06236363636363634, - 0.07127272727272725, - 0.08018181818181816, - 0.08909090909090907, - 0.09799999999999998, - 0.10690909090909087, - 0.11581818181818178, - 0.12472727272727269, - 0.1336363636363636, - 0.1425454545454545, - 0.1514545454545454, - 0.16036363636363632, - 0.1692727272727272, - 0.17818181818181814, - 0.18709090909090903, - 0.19599999999999995, - 0.20490909090909085, - 0.21381818181818174, - 0.22272727272727266, - 0.23163636363636356, - 0.24054545454545448, - 0.24945454545454537, - 0.2583636363636363, - 0.2672727272727272, - 0.2761818181818181, - 0.285090909090909, - 0.29399999999999993, - 0.3029090909090908, - 0.3118181818181817, - 0.32072727272727264, - 0.32963636363636356, - 0.3385454545454544, - 0.34745454545454535, - 0.35636363636363627, - 0.36527272727272714, - 0.37418181818181806, - 0.383090909090909, - 0.3919999999999999, - 0.40090909090909077, - 0.4098181818181817, - 0.4187272727272726, - 0.4276363636363635, - 0.4365454545454544, - 0.4454545454545453, - 0.45436363636363625, - 0.4632727272727271, - 0.47218181818181804, - 0.48109090909090896, - 0.4899999999999999, - 0.49890909090909075, - 0.5078181818181816, - 0.5167272727272726, - 0.5256363636363635, - 0.5345454545454544, - 0.5434545454545453, - 0.5523636363636362, - 0.5612727272727271, - 0.570181818181818, - 0.5790909090909089, - 0.5879999999999999, - 0.5969090909090907, - 0.6058181818181816, - 0.6147272727272726, - 0.6236363636363634, - 0.6325454545454544, - 0.6414545454545453, - 0.6503636363636361, - 0.6592727272727271, - 0.668181818181818, - 0.6770909090909089, - 0.6859999999999998, - 0.6949090909090907, - 0.7038181818181816, - 0.7127272727272725, - 0.7216363636363634, - 0.7305454545454543, - 0.7394545454545453, - 0.7483636363636361, - 0.7572727272727271, - 0.766181818181818, - 0.7750909090909088, - 0.7839999999999998, - 0.7929090909090907, - 0.8018181818181815, - 0.8107272727272725, - 0.8196363636363634, - 0.8285454545454543, - 0.8374545454545452, - 0.8463636363636361, - 0.855272727272727, - 0.8641818181818179, - 0.8730909090909088, - 0.8819999999999997 - ] - } - }, - { - "bc_name": "RCR_0", - "bc_type": "RCR", - "bc_values": { - "C": 6.2771e-05, - "Pd": 0.0, - "Rd": 21136.07, - "Rp": 3492.25 - } - }, - { - "bc_name": "RCR_1", - "bc_type": "RCR", - "bc_values": { - "C": 0.000105293, - "Pd": 0.0, - "Rd": 13335.72, - "Rp": 2084.437 - } - }, - { - "bc_name": "RCR_2", - "bc_type": "RCR", - "bc_values": { - "C": 6.2771e-05, - "Pd": 0.0, - "Rd": 22067.45, - "Rp": 3495.473 - } - }, - { - "bc_name": "RCR_3", - "bc_type": "RCR", - "bc_values": { - "C": 0.00013478, - "Pd": 0.0, - "Rd": 10230.62, - "Rp": 1627.759 - } - }, - { - "bc_name": "RCR_4", - "bc_type": "RCR", - "bc_values": { - "C": 2.69561e-05, - "Pd": 0.0, - "Rd": 51446.11, - "Rp": 8139.868 - } - }, - { - "bc_name": "RCR_5", - "bc_type": "RCR", - "bc_values": { - "C": 3.67007e-05, - "Pd": 0.0, - "Rd": 38604.41, - "Rp": 5981.256 - } - }, - { - "bc_name": "RCR_6", - "bc_type": "RCR", - "bc_values": { - "C": 2.69561e-05, - "Pd": 0.0, - "Rd": 51680.49, - "Rp": 8140.638 - } - }, - { - "bc_name": "RCR_7", - "bc_type": "RCR", - "bc_values": { - "C": 6.0493e-05, - "Pd": 0.0, - "Rd": 23055.22, - "Rp": 3627.554 - } - }, - { - "bc_name": "RCR_8", - "bc_type": "RCR", - "bc_values": { - "C": 0.000112253, - "Pd": 0.0, - "Rd": 12537.03, - "Rp": 1955.241 - } - }, - { - "bc_name": "RCR_9", - "bc_type": "RCR", - "bc_values": { - "C": 0.00013478, - "Pd": 0.0, - "Rd": 10019.46, - "Rp": 1627.064 - } - } - ], - "junctions": [ - { - "inlet_vessels": [ - 0 - ], - "junction_name": "J0", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 1, - 9, - 21, - 34, - 37 - ] - }, - { - "inlet_vessels": [ - 1 - ], - "junction_name": "J1", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 2, - 27 - ] - }, - { - "inlet_vessels": [ - 2 - ], - "junction_name": "J2", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 3, - 15 - ] - }, - { - "inlet_vessels": [ - 5 - ], - "junction_name": "J3", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 6, - 24 - ] - }, - { - "inlet_vessels": [ - 11 - ], - "junction_name": "J4", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 12, - 31 - ] - }, - { - "inlet_vessels": [ - 17 - ], - "junction_name": "J5", - "junction_type": "BloodVesselJunction", - "junction_values": { - "L": [ - 0.0, - 0.0 - ], - "R_poiseuille": [ - 0.0, - 0.0 - ], - "stenosis_coefficient": [ - 0.0, - 0.0 - ] - }, - "outlet_vessels": [ - 18, - 28 - ] - }, - { - "inlet_vessels": [ - 3 - ], - "junction_name": "J6", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 4 - ] - }, - { - "inlet_vessels": [ - 4 - ], - "junction_name": "J7", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 5 - ] - }, - { - "inlet_vessels": [ - 6 - ], - "junction_name": "J8", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 7 - ] - }, - { - "inlet_vessels": [ - 7 - ], - "junction_name": "J9", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 8 - ] - }, - { - "inlet_vessels": [ - 9 - ], - "junction_name": "J10", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 10 - ] - }, - { - "inlet_vessels": [ - 10 - ], - "junction_name": "J11", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 11 - ] - }, - { - "inlet_vessels": [ - 12 - ], - "junction_name": "J12", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 13 - ] - }, - { - "inlet_vessels": [ - 13 - ], - "junction_name": "J13", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 14 - ] - }, - { - "inlet_vessels": [ - 15 - ], - "junction_name": "J14", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 16 - ] - }, - { - "inlet_vessels": [ - 16 - ], - "junction_name": "J15", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 17 - ] - }, - { - "inlet_vessels": [ - 18 - ], - "junction_name": "J16", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 19 - ] - }, - { - "inlet_vessels": [ - 19 - ], - "junction_name": "J17", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 20 - ] - }, - { - "inlet_vessels": [ - 21 - ], - "junction_name": "J18", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 22 - ] - }, - { - "inlet_vessels": [ - 22 - ], - "junction_name": "J19", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 23 - ] - }, - { - "inlet_vessels": [ - 24 - ], - "junction_name": "J20", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 25 - ] - }, - { - "inlet_vessels": [ - 25 - ], - "junction_name": "J21", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 26 - ] - }, - { - "inlet_vessels": [ - 28 - ], - "junction_name": "J22", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 29 - ] - }, - { - "inlet_vessels": [ - 29 - ], - "junction_name": "J23", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 30 - ] - }, - { - "inlet_vessels": [ - 31 - ], - "junction_name": "J24", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 32 - ] - }, - { - "inlet_vessels": [ - 32 - ], - "junction_name": "J25", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 33 - ] - }, - { - "inlet_vessels": [ - 34 - ], - "junction_name": "J26", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 35 - ] - }, - { - "inlet_vessels": [ - 35 - ], - "junction_name": "J27", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 36 - ] - }, - { - "inlet_vessels": [ - 37 - ], - "junction_name": "J28", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 38 - ] - }, - { - "inlet_vessels": [ - 38 - ], - "junction_name": "J29", - "junction_type": "NORMAL_JUNCTION", - "outlet_vessels": [ - 39 - ] - } - ], - "simulation_parameters": { - "density": 1.06, - "model_name": "0140_2001", - "number_of_cardiac_cycles": 9, - "number_of_time_pts_per_cardiac_cycle": 882, - "output_all_cycles": false, - "viscosity": 0.04 - }, - "vessels": [ - { - "boundary_conditions": { - "inlet": "INFLOW" - }, - "vessel_id": 0, - "vessel_length": 10.363988810880336, - "vessel_name": "branch0_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.699209921723042e-06, - "L": 2.218210311889882, - "R_poiseuille": 0.4246538251041063, - "stenosis_coefficient": 0.0044989777441738 - } - }, - { - "vessel_id": 1, - "vessel_length": 4.66281727880718, - "vessel_name": "branch1_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.8887889570493387e-06, - "L": 1.196972066735352, - "R_poiseuille": 0.27466521424269813, - "stenosis_coefficient": 0.03247484576662445 - } - }, - { - "vessel_id": 2, - "vessel_length": 2.116158678641109, - "vessel_name": "branch2_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.627092026928628e-07, - "L": 1.5391694459399448, - "R_poiseuille": 1.001070434056113, - "stenosis_coefficient": 3.1526760080926675e-05 - } - }, - { - "vessel_id": 3, - "vessel_length": 0.35990552284365307, - "vessel_name": "branch3_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.0026536556692363e-08, - "L": 1.027588269776792, - "R_poiseuille": 2.624196805635794, - "stenosis_coefficient": 0.16323274550503442 - } - }, - { - "vessel_id": 4, - "vessel_length": 0.864484150026015, - "vessel_name": "branch3_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.3066247736731026e-08, - "L": 2.7556584406831934, - "R_poiseuille": 7.856726280353549, - "stenosis_coefficient": 1.6665899248484743 - } - }, - { - "vessel_id": 5, - "vessel_length": 8.844469069947266, - "vessel_name": "branch3_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.314067027137132e-07, - "L": 19.69493088444097, - "R_poiseuille": 39.22965123490933, - "stenosis_coefficient": 0.9390781762417053 - } - }, - { - "vessel_id": 6, - "vessel_length": 0.3274863354762827, - "vessel_name": "branch4_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 8.234401938162641e-09, - "L": 2.0516467432944183, - "R_poiseuille": 11.497883509910954, - "stenosis_coefficient": 0.03822927787546466 - } - }, - { - "vessel_id": 7, - "vessel_length": 0.13126708493434283, - "vessel_name": "branch4_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.7807438119996326e-09, - "L": 1.491472326958464, - "R_poiseuille": 15.158809062531324, - "stenosis_coefficient": 11.961566899384392 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_0" - }, - "vessel_id": 8, - "vessel_length": 14.522367746763132, - "vessel_name": "branch4_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.705898179056795e-07, - "L": 58.60870584261096, - "R_poiseuille": 211.57598233667576, - "stenosis_coefficient": 25.766602127424623 - } - }, - { - "vessel_id": 9, - "vessel_length": 0.4354726919461728, - "vessel_name": "branch5_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 3.125627502861371e-08, - "L": 0.9645211704280183, - "R_poiseuille": 1.9109577329108933, - "stenosis_coefficient": 0.00655522053734541 - } - }, - { - "vessel_id": 10, - "vessel_length": 1.1021257371704019, - "vessel_name": "branch5_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.016947601426625e-08, - "L": 2.7513272285027073, - "R_poiseuille": 6.143746162988891, - "stenosis_coefficient": 0.5012189376771709 - } - }, - { - "vessel_id": 11, - "vessel_length": 1.197892120556633, - "vessel_name": "branch5_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 9.754927202832805e-08, - "L": 2.338907502222537, - "R_poiseuille": 4.084958263922775, - "stenosis_coefficient": 0.10233779930247422 - } - }, - { - "vessel_id": 12, - "vessel_length": 0.22487849028322263, - "vessel_name": "branch6_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.1618668071130106e-08, - "L": 0.691311582170704, - "R_poiseuille": 1.9010497691446933, - "stenosis_coefficient": 4.5188890804463615e-05 - } - }, - { - "vessel_id": 13, - "vessel_length": 1.3305241414719227, - "vessel_name": "branch6_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 6.51303409026496e-08, - "L": 4.316063631712128, - "R_poiseuille": 12.523916166841385, - "stenosis_coefficient": 1.4076758609917186 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_1" - }, - "vessel_id": 14, - "vessel_length": 2.4724650795955725, - "vessel_name": "branch6_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.9851451138121888e-07, - "L": 4.896275245061057, - "R_poiseuille": 8.67361868365192, - "stenosis_coefficient": 0.0009406129375433834 - } - }, - { - "vessel_id": 15, - "vessel_length": 3.1676143243342416, - "vessel_name": "branch7_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.705238588375632e-07, - "L": 9.347105744301148, - "R_poiseuille": 24.673569626408845, - "stenosis_coefficient": 0.3470097875791695 - } - }, - { - "vessel_id": 16, - "vessel_length": 0.9349331414099631, - "vessel_name": "branch7_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.7124431327006367e-08, - "L": 5.09014704107778, - "R_poiseuille": 24.790752409990755, - "stenosis_coefficient": 3.631805418659238 - } - }, - { - "vessel_id": 17, - "vessel_length": 6.532761902851568, - "vessel_name": "branch7_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.354152849750551e-07, - "L": 15.580117995729902, - "R_poiseuille": 33.23890957246182, - "stenosis_coefficient": 1.0133319737033264 - } - }, - { - "vessel_id": 18, - "vessel_length": 12.131550548508903, - "vessel_name": "branch8_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.219413990772519e-07, - "L": 32.3968453452825, - "R_poiseuille": 77.3892242014525, - "stenosis_coefficient": 1.8547539417996073 - } - }, - { - "vessel_id": 19, - "vessel_length": 1.3728431428203225, - "vessel_name": "branch8_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.441971727229301e-08, - "L": 5.491877405488456, - "R_poiseuille": 19.652640454611436, - "stenosis_coefficient": 2.663588359527892 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_2" - }, - "vessel_id": 20, - "vessel_length": 0.7043738355971776, - "vessel_name": "branch8_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.4074098947741604e-08, - "L": 1.789223946357539, - "R_poiseuille": 4.065555650302604, - "stenosis_coefficient": 2.595490740095725e-05 - } - }, - { - "vessel_id": 21, - "vessel_length": 1.1208205168121053, - "vessel_name": "branch9_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.3325478248572535e-08, - "L": 3.740171313528651, - "R_poiseuille": 11.164513426638363, - "stenosis_coefficient": 0.1233951361647492 - } - }, - { - "vessel_id": 22, - "vessel_length": 1.3241597330959292, - "vessel_name": "branch9_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.685770322110523e-08, - "L": 5.9268765737491655, - "R_poiseuille": 23.730318842099678, - "stenosis_coefficient": 2.0997194175977567 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_3" - }, - "vessel_id": 23, - "vessel_length": 4.00169754634469, - "vessel_name": "branch9_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.7017575370853542e-07, - "L": 14.929717491504793, - "R_poiseuille": 49.82598974287316, - "stenosis_coefficient": 0.8402446736243419 - } - }, - { - "vessel_id": 24, - "vessel_length": 0.552191808078751, - "vessel_name": "branch10_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.1868134512148983e-08, - "L": 4.03143604063299, - "R_poiseuille": 26.329816172649085, - "stenosis_coefficient": 0.10693845943833373 - } - }, - { - "vessel_id": 25, - "vessel_length": 0.5270977183058395, - "vessel_name": "branch10_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.514927036317449e-09, - "L": 5.712466118512032, - "R_poiseuille": 55.38142724160355, - "stenosis_coefficient": 30.56216687723954 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_4" - }, - "vessel_id": 26, - "vessel_length": 3.5488612883908073, - "vessel_name": "branch10_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3623179585876954e-07, - "L": 14.655424280249111, - "R_poiseuille": 54.138759923986754, - "stenosis_coefficient": 2.918770919440078 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_5" - }, - "vessel_id": 27, - "vessel_length": 4.236657060976641, - "vessel_name": "branch11_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.9646283150606693e-07, - "L": 14.502918257610919, - "R_poiseuille": 44.41013782106845, - "stenosis_coefficient": 0.005968068568130207 - } - }, - { - "vessel_id": 28, - "vessel_length": 0.23664468015987364, - "vessel_name": "branch12_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.360755231759969e-09, - "L": 1.6415408987726623, - "R_poiseuille": 10.186058448898706, - "stenosis_coefficient": 8.523721092728112 - } - }, - { - "vessel_id": 29, - "vessel_length": 2.4484809178077045, - "vessel_name": "branch12_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.2417839604202794e-08, - "L": 17.944839672881145, - "R_poiseuille": 117.65140001102448, - "stenosis_coefficient": 9.2086946586924 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_6" - }, - "vessel_id": 30, - "vessel_length": 0.23609553650119913, - "vessel_name": "branch12_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 7.509867065640586e-09, - "L": 1.1741082108716758, - "R_poiseuille": 5.223247069307699, - "stenosis_coefficient": 0.0028427243613021384 - } - }, - { - "vessel_id": 31, - "vessel_length": 1.2623969755085829, - "vessel_name": "branch13_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.30705961639518e-08, - "L": 4.76375721528962, - "R_poiseuille": 16.0809562508642, - "stenosis_coefficient": 1.0767637360699724 - } - }, - { - "vessel_id": 32, - "vessel_length": 2.6214394087987603, - "vessel_name": "branch13_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.0066797766862113e-07, - "L": 10.82112551380516, - "R_poiseuille": 39.959375673069474, - "stenosis_coefficient": 2.1997770007930773 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_7" - }, - "vessel_id": 33, - "vessel_length": 8.331258378528362, - "vessel_name": "branch13_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 4.541493137921168e-07, - "L": 24.280621783866213, - "R_poiseuille": 63.30014929242619, - "stenosis_coefficient": 2.298869590773983 - } - }, - { - "vessel_id": 34, - "vessel_length": 0.34130122602911156, - "vessel_name": "branch14_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.6841878680139002e-08, - "L": 1.0982997114690165, - "R_poiseuille": 3.161563790882163, - "stenosis_coefficient": 0.0031591908823196168 - } - }, - { - "vessel_id": 35, - "vessel_length": 1.3016520368622686, - "vessel_name": "branch14_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 5.533733735759024e-08, - "L": 4.857563731511191, - "R_poiseuille": 16.2155151382348, - "stenosis_coefficient": 2.093671813812707 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_8" - }, - "vessel_id": 36, - "vessel_length": 2.1909658954476545, - "vessel_name": "branch14_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.7259740570039247e-07, - "L": 4.4220361971259985, - "R_poiseuille": 7.983492634519308, - "stenosis_coefficient": 0.004782454298560274 - } - }, - { - "vessel_id": 37, - "vessel_length": 2.410068685549808, - "vessel_name": "branch15_seg0", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.1331452245317805e-07, - "L": 8.1376231161035, - "R_poiseuille": 24.578213816626562, - "stenosis_coefficient": 0.6865913189649374 - } - }, - { - "vessel_id": 38, - "vessel_length": 1.035048097779632, - "vessel_name": "branch15_seg1", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 2.5909686452944444e-08, - "L": 6.512824614159762, - "R_poiseuille": 36.65843755345858, - "stenosis_coefficient": 5.032416007881057 - } - }, - { - "boundary_conditions": { - "outlet": "RCR_9" - }, - "vessel_id": 39, - "vessel_length": 3.1133534339282987, - "vessel_name": "branch15_seg2", - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "C": 1.3697519243864332e-07, - "L": 11.230395110861556, - "R_poiseuille": 36.236294245522544, - "stenosis_coefficient": 3.7202912981572984 - } - } - ] -} \ No newline at end of file + "boundary_conditions": [ + { + "bc_name": "INFLOW", + "bc_type": "FLOW", + "bc_values": { + "Q": [ + 25.674478887744097, 25.94535841671895, 26.40397770930373, + 27.078557220791417, 27.987924243407218, 29.223018699271037, + 30.872863997957957, 33.14710517392046, 36.24233649316084, + 40.32941619284094, 45.707199117022874, 52.3992217826857, + 60.62210097617118, 70.22501556164931, 81.05839546420485, + 92.99648379412291, 105.49834749077813, 118.48276992683357, + 131.27259753840468, 143.7649170026322, 155.35688109143825, + 165.80346685084584, 174.7861901139547, 181.8894769571331, + 187.03405970454247, 189.92968409297364, 190.54660446170104, + 188.8393317841419, 184.95869990371955, 179.00706479935084, + 171.36892276825773, 162.17188382738493, 151.9224840372999, + 140.69629176277343, 128.8758653843917, 116.79196935170167, + 104.40209357822438, 92.1540459381269, 79.96017988979212, + 68.31079157809357, 57.16093078281224, 46.90621631712706, + 37.866800968464474, 30.021884357838466, 23.657451092007406, + 18.65215821403915, 15.026506001685505, 12.617459012327329, + 11.222617178148154, 10.668320045402487, 10.775780400321388, + 11.426953130150322, 12.573357800939682, 14.17715631699319, + 16.245875690586708, 18.77312459468089, 21.66200146102451, + 24.87301321309217, 28.183734122582287, 31.485700969509814, + 34.5548741049021, 37.202931571616574, 39.38566156483294, + 41.01172010677542, 42.138563589177416, 42.809473436279944, + 43.1255305264649, 43.165580110023946, 42.997790777114155, + 42.65457442604729, 42.154960997292505, 41.48541045198559, + 40.6598910096873, 39.67391551057553, 38.569986753415115, + 37.41430731338149, 36.24090910332261, 35.129941865339894, + 34.09139769664441, 33.1525575391422, 32.297312222462224, + 31.48971969828123, 30.714288194429606, 29.93583369617746, + 29.174750273047025, 28.437718719180175, 27.777383767244913, + 27.22607248914084, 26.812199166529453, 26.54440338309936, + 26.39417815218615, 26.321846831150243, 26.27277536814443, + 26.202064928995775, 26.085898194797117, 25.925203022216337, + 25.754547731026946, 25.61956451593617, 25.57745195059132, + 25.674478887744097 + ], + "t": [ + 0.0, 0.008909090909090906, 0.017818181818181813, 0.026727272727272718, + 0.035636363636363626, 0.044545454545454534, 0.053454545454545435, + 0.06236363636363634, 0.07127272727272725, 0.08018181818181816, + 0.08909090909090907, 0.09799999999999998, 0.10690909090909087, + 0.11581818181818178, 0.12472727272727269, 0.1336363636363636, + 0.1425454545454545, 0.1514545454545454, 0.16036363636363632, + 0.1692727272727272, 0.17818181818181814, 0.18709090909090903, + 0.19599999999999995, 0.20490909090909085, 0.21381818181818174, + 0.22272727272727266, 0.23163636363636356, 0.24054545454545448, + 0.24945454545454537, 0.2583636363636363, 0.2672727272727272, + 0.2761818181818181, 0.285090909090909, 0.29399999999999993, + 0.3029090909090908, 0.3118181818181817, 0.32072727272727264, + 0.32963636363636356, 0.3385454545454544, 0.34745454545454535, + 0.35636363636363627, 0.36527272727272714, 0.37418181818181806, + 0.383090909090909, 0.3919999999999999, 0.40090909090909077, + 0.4098181818181817, 0.4187272727272726, 0.4276363636363635, + 0.4365454545454544, 0.4454545454545453, 0.45436363636363625, + 0.4632727272727271, 0.47218181818181804, 0.48109090909090896, + 0.4899999999999999, 0.49890909090909075, 0.5078181818181816, + 0.5167272727272726, 0.5256363636363635, 0.5345454545454544, + 0.5434545454545453, 0.5523636363636362, 0.5612727272727271, + 0.570181818181818, 0.5790909090909089, 0.5879999999999999, + 0.5969090909090907, 0.6058181818181816, 0.6147272727272726, + 0.6236363636363634, 0.6325454545454544, 0.6414545454545453, + 0.6503636363636361, 0.6592727272727271, 0.668181818181818, + 0.6770909090909089, 0.6859999999999998, 0.6949090909090907, + 0.7038181818181816, 0.7127272727272725, 0.7216363636363634, + 0.7305454545454543, 0.7394545454545453, 0.7483636363636361, + 0.7572727272727271, 0.766181818181818, 0.7750909090909088, + 0.7839999999999998, 0.7929090909090907, 0.8018181818181815, + 0.8107272727272725, 0.8196363636363634, 0.8285454545454543, + 0.8374545454545452, 0.8463636363636361, 0.855272727272727, + 0.8641818181818179, 0.8730909090909088, 0.8819999999999997 + ] + } + }, + { + "bc_name": "RCR_0", + "bc_type": "RCR", + "bc_values": { + "C": 6.2771e-5, + "Pd": 0.0, + "Rd": 21136.07, + "Rp": 3492.25 + } + }, + { + "bc_name": "RCR_1", + "bc_type": "RCR", + "bc_values": { + "C": 0.000105293, + "Pd": 0.0, + "Rd": 13335.72, + "Rp": 2084.437 + } + }, + { + "bc_name": "RCR_2", + "bc_type": "RCR", + "bc_values": { + "C": 6.2771e-5, + "Pd": 0.0, + "Rd": 22067.45, + "Rp": 3495.473 + } + }, + { + "bc_name": "RCR_3", + "bc_type": "RCR", + "bc_values": { + "C": 0.00013478, + "Pd": 0.0, + "Rd": 10230.62, + "Rp": 1627.759 + } + }, + { + "bc_name": "RCR_4", + "bc_type": "RCR", + "bc_values": { + "C": 2.69561e-5, + "Pd": 0.0, + "Rd": 51446.11, + "Rp": 8139.868 + } + }, + { + "bc_name": "RCR_5", + "bc_type": "RCR", + "bc_values": { + "C": 3.67007e-5, + "Pd": 0.0, + "Rd": 38604.41, + "Rp": 5981.256 + } + }, + { + "bc_name": "RCR_6", + "bc_type": "RCR", + "bc_values": { + "C": 2.69561e-5, + "Pd": 0.0, + "Rd": 51680.49, + "Rp": 8140.638 + } + }, + { + "bc_name": "RCR_7", + "bc_type": "RCR", + "bc_values": { + "C": 6.0493e-5, + "Pd": 0.0, + "Rd": 23055.22, + "Rp": 3627.554 + } + }, + { + "bc_name": "RCR_8", + "bc_type": "RCR", + "bc_values": { + "C": 0.000112253, + "Pd": 0.0, + "Rd": 12537.03, + "Rp": 1955.241 + } + }, + { + "bc_name": "RCR_9", + "bc_type": "RCR", + "bc_values": { + "C": 0.00013478, + "Pd": 0.0, + "Rd": 10019.46, + "Rp": 1627.064 + } + } + ], + "junctions": [ + { + "inlet_vessels": [0], + "junction_name": "J0", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0, 0.0, 0.0, 0.0], + "R_poiseuille": [0.0, 0.0, 0.0, 0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0, 0.0, 0.0, 0.0] + }, + "outlet_vessels": [1, 9, 21, 34, 37] + }, + { + "inlet_vessels": [1], + "junction_name": "J1", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [2, 27] + }, + { + "inlet_vessels": [2], + "junction_name": "J2", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [3, 15] + }, + { + "inlet_vessels": [5], + "junction_name": "J3", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [6, 24] + }, + { + "inlet_vessels": [11], + "junction_name": "J4", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [12, 31] + }, + { + "inlet_vessels": [17], + "junction_name": "J5", + "junction_type": "BloodVesselJunction", + "junction_values": { + "L": [0.0, 0.0], + "R_poiseuille": [0.0, 0.0], + "stenosis_coefficient": [0.0, 0.0] + }, + "outlet_vessels": [18, 28] + }, + { + "inlet_vessels": [3], + "junction_name": "J6", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [4] + }, + { + "inlet_vessels": [4], + "junction_name": "J7", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [5] + }, + { + "inlet_vessels": [6], + "junction_name": "J8", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [7] + }, + { + "inlet_vessels": [7], + "junction_name": "J9", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [8] + }, + { + "inlet_vessels": [9], + "junction_name": "J10", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [10] + }, + { + "inlet_vessels": [10], + "junction_name": "J11", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [11] + }, + { + "inlet_vessels": [12], + "junction_name": "J12", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [13] + }, + { + "inlet_vessels": [13], + "junction_name": "J13", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [14] + }, + { + "inlet_vessels": [15], + "junction_name": "J14", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [16] + }, + { + "inlet_vessels": [16], + "junction_name": "J15", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [17] + }, + { + "inlet_vessels": [18], + "junction_name": "J16", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [19] + }, + { + "inlet_vessels": [19], + "junction_name": "J17", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [20] + }, + { + "inlet_vessels": [21], + "junction_name": "J18", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [22] + }, + { + "inlet_vessels": [22], + "junction_name": "J19", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [23] + }, + { + "inlet_vessels": [24], + "junction_name": "J20", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [25] + }, + { + "inlet_vessels": [25], + "junction_name": "J21", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [26] + }, + { + "inlet_vessels": [28], + "junction_name": "J22", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [29] + }, + { + "inlet_vessels": [29], + "junction_name": "J23", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [30] + }, + { + "inlet_vessels": [31], + "junction_name": "J24", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [32] + }, + { + "inlet_vessels": [32], + "junction_name": "J25", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [33] + }, + { + "inlet_vessels": [34], + "junction_name": "J26", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [35] + }, + { + "inlet_vessels": [35], + "junction_name": "J27", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [36] + }, + { + "inlet_vessels": [37], + "junction_name": "J28", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [38] + }, + { + "inlet_vessels": [38], + "junction_name": "J29", + "junction_type": "NORMAL_JUNCTION", + "outlet_vessels": [39] + } + ], + "simulation_parameters": { + "density": 1.06, + "model_name": "0140_2001", + "number_of_cardiac_cycles": 9, + "number_of_time_pts_per_cardiac_cycle": 882, + "output_all_cycles": false, + "viscosity": 0.04 + }, + "vessels": [ + { + "boundary_conditions": { + "inlet": "INFLOW" + }, + "vessel_id": 0, + "vessel_length": 10.363988810880336, + "vessel_name": "branch0_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.699209921723042e-6, + "L": 2.218210311889882, + "R_poiseuille": 0.4246538251041063, + "stenosis_coefficient": 0.0044989777441738 + } + }, + { + "vessel_id": 1, + "vessel_length": 4.66281727880718, + "vessel_name": "branch1_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.8887889570493387e-6, + "L": 1.196972066735352, + "R_poiseuille": 0.27466521424269813, + "stenosis_coefficient": 0.03247484576662445 + } + }, + { + "vessel_id": 2, + "vessel_length": 2.116158678641109, + "vessel_name": "branch2_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.627092026928628e-7, + "L": 1.5391694459399448, + "R_poiseuille": 1.001070434056113, + "stenosis_coefficient": 3.1526760080926675e-5 + } + }, + { + "vessel_id": 3, + "vessel_length": 0.35990552284365307, + "vessel_name": "branch3_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.0026536556692363e-8, + "L": 1.027588269776792, + "R_poiseuille": 2.624196805635794, + "stenosis_coefficient": 0.16323274550503442 + } + }, + { + "vessel_id": 4, + "vessel_length": 0.864484150026015, + "vessel_name": "branch3_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.3066247736731026e-8, + "L": 2.7556584406831934, + "R_poiseuille": 7.856726280353549, + "stenosis_coefficient": 1.6665899248484743 + } + }, + { + "vessel_id": 5, + "vessel_length": 8.844469069947266, + "vessel_name": "branch3_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.314067027137132e-7, + "L": 19.69493088444097, + "R_poiseuille": 39.22965123490933, + "stenosis_coefficient": 0.9390781762417053 + } + }, + { + "vessel_id": 6, + "vessel_length": 0.3274863354762827, + "vessel_name": "branch4_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 8.234401938162641e-9, + "L": 2.0516467432944183, + "R_poiseuille": 11.497883509910954, + "stenosis_coefficient": 0.03822927787546466 + } + }, + { + "vessel_id": 7, + "vessel_length": 0.13126708493434283, + "vessel_name": "branch4_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.7807438119996326e-9, + "L": 1.491472326958464, + "R_poiseuille": 15.158809062531324, + "stenosis_coefficient": 11.961566899384392 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_0" + }, + "vessel_id": 8, + "vessel_length": 14.522367746763132, + "vessel_name": "branch4_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.705898179056795e-7, + "L": 58.60870584261096, + "R_poiseuille": 211.57598233667576, + "stenosis_coefficient": 25.766602127424623 + } + }, + { + "vessel_id": 9, + "vessel_length": 0.4354726919461728, + "vessel_name": "branch5_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 3.125627502861371e-8, + "L": 0.9645211704280183, + "R_poiseuille": 1.9109577329108933, + "stenosis_coefficient": 0.00655522053734541 + } + }, + { + "vessel_id": 10, + "vessel_length": 1.1021257371704019, + "vessel_name": "branch5_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.016947601426625e-8, + "L": 2.7513272285027073, + "R_poiseuille": 6.143746162988891, + "stenosis_coefficient": 0.5012189376771709 + } + }, + { + "vessel_id": 11, + "vessel_length": 1.197892120556633, + "vessel_name": "branch5_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 9.754927202832805e-8, + "L": 2.338907502222537, + "R_poiseuille": 4.084958263922775, + "stenosis_coefficient": 0.10233779930247422 + } + }, + { + "vessel_id": 12, + "vessel_length": 0.22487849028322263, + "vessel_name": "branch6_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.1618668071130106e-8, + "L": 0.691311582170704, + "R_poiseuille": 1.9010497691446933, + "stenosis_coefficient": 4.5188890804463615e-5 + } + }, + { + "vessel_id": 13, + "vessel_length": 1.3305241414719227, + "vessel_name": "branch6_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 6.51303409026496e-8, + "L": 4.316063631712128, + "R_poiseuille": 12.523916166841385, + "stenosis_coefficient": 1.4076758609917186 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_1" + }, + "vessel_id": 14, + "vessel_length": 2.4724650795955725, + "vessel_name": "branch6_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.9851451138121888e-7, + "L": 4.896275245061057, + "R_poiseuille": 8.67361868365192, + "stenosis_coefficient": 0.0009406129375433834 + } + }, + { + "vessel_id": 15, + "vessel_length": 3.1676143243342416, + "vessel_name": "branch7_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.705238588375632e-7, + "L": 9.347105744301148, + "R_poiseuille": 24.673569626408845, + "stenosis_coefficient": 0.3470097875791695 + } + }, + { + "vessel_id": 16, + "vessel_length": 0.9349331414099631, + "vessel_name": "branch7_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.7124431327006367e-8, + "L": 5.09014704107778, + "R_poiseuille": 24.790752409990755, + "stenosis_coefficient": 3.631805418659238 + } + }, + { + "vessel_id": 17, + "vessel_length": 6.532761902851568, + "vessel_name": "branch7_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.354152849750551e-7, + "L": 15.580117995729902, + "R_poiseuille": 33.23890957246182, + "stenosis_coefficient": 1.0133319737033264 + } + }, + { + "vessel_id": 18, + "vessel_length": 12.131550548508903, + "vessel_name": "branch8_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.219413990772519e-7, + "L": 32.3968453452825, + "R_poiseuille": 77.3892242014525, + "stenosis_coefficient": 1.8547539417996073 + } + }, + { + "vessel_id": 19, + "vessel_length": 1.3728431428203225, + "vessel_name": "branch8_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.441971727229301e-8, + "L": 5.491877405488456, + "R_poiseuille": 19.652640454611436, + "stenosis_coefficient": 2.663588359527892 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_2" + }, + "vessel_id": 20, + "vessel_length": 0.7043738355971776, + "vessel_name": "branch8_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.4074098947741604e-8, + "L": 1.789223946357539, + "R_poiseuille": 4.065555650302604, + "stenosis_coefficient": 2.595490740095725e-5 + } + }, + { + "vessel_id": 21, + "vessel_length": 1.1208205168121053, + "vessel_name": "branch9_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.3325478248572535e-8, + "L": 3.740171313528651, + "R_poiseuille": 11.164513426638363, + "stenosis_coefficient": 0.1233951361647492 + } + }, + { + "vessel_id": 22, + "vessel_length": 1.3241597330959292, + "vessel_name": "branch9_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.685770322110523e-8, + "L": 5.9268765737491655, + "R_poiseuille": 23.730318842099678, + "stenosis_coefficient": 2.0997194175977567 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_3" + }, + "vessel_id": 23, + "vessel_length": 4.00169754634469, + "vessel_name": "branch9_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.7017575370853542e-7, + "L": 14.929717491504793, + "R_poiseuille": 49.82598974287316, + "stenosis_coefficient": 0.8402446736243419 + } + }, + { + "vessel_id": 24, + "vessel_length": 0.552191808078751, + "vessel_name": "branch10_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.1868134512148983e-8, + "L": 4.03143604063299, + "R_poiseuille": 26.329816172649085, + "stenosis_coefficient": 0.10693845943833373 + } + }, + { + "vessel_id": 25, + "vessel_length": 0.5270977183058395, + "vessel_name": "branch10_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.514927036317449e-9, + "L": 5.712466118512032, + "R_poiseuille": 55.38142724160355, + "stenosis_coefficient": 30.56216687723954 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_4" + }, + "vessel_id": 26, + "vessel_length": 3.5488612883908073, + "vessel_name": "branch10_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3623179585876954e-7, + "L": 14.655424280249111, + "R_poiseuille": 54.138759923986754, + "stenosis_coefficient": 2.918770919440078 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_5" + }, + "vessel_id": 27, + "vessel_length": 4.236657060976641, + "vessel_name": "branch11_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.9646283150606693e-7, + "L": 14.502918257610919, + "R_poiseuille": 44.41013782106845, + "stenosis_coefficient": 0.005968068568130207 + } + }, + { + "vessel_id": 28, + "vessel_length": 0.23664468015987364, + "vessel_name": "branch12_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.360755231759969e-9, + "L": 1.6415408987726623, + "R_poiseuille": 10.186058448898706, + "stenosis_coefficient": 8.523721092728112 + } + }, + { + "vessel_id": 29, + "vessel_length": 2.4484809178077045, + "vessel_name": "branch12_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.2417839604202794e-8, + "L": 17.944839672881145, + "R_poiseuille": 117.65140001102448, + "stenosis_coefficient": 9.2086946586924 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_6" + }, + "vessel_id": 30, + "vessel_length": 0.23609553650119913, + "vessel_name": "branch12_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 7.509867065640586e-9, + "L": 1.1741082108716758, + "R_poiseuille": 5.223247069307699, + "stenosis_coefficient": 0.0028427243613021384 + } + }, + { + "vessel_id": 31, + "vessel_length": 1.2623969755085829, + "vessel_name": "branch13_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.30705961639518e-8, + "L": 4.76375721528962, + "R_poiseuille": 16.0809562508642, + "stenosis_coefficient": 1.0767637360699724 + } + }, + { + "vessel_id": 32, + "vessel_length": 2.6214394087987603, + "vessel_name": "branch13_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.0066797766862113e-7, + "L": 10.82112551380516, + "R_poiseuille": 39.959375673069474, + "stenosis_coefficient": 2.1997770007930773 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_7" + }, + "vessel_id": 33, + "vessel_length": 8.331258378528362, + "vessel_name": "branch13_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 4.541493137921168e-7, + "L": 24.280621783866213, + "R_poiseuille": 63.30014929242619, + "stenosis_coefficient": 2.298869590773983 + } + }, + { + "vessel_id": 34, + "vessel_length": 0.34130122602911156, + "vessel_name": "branch14_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.6841878680139002e-8, + "L": 1.0982997114690165, + "R_poiseuille": 3.161563790882163, + "stenosis_coefficient": 0.0031591908823196168 + } + }, + { + "vessel_id": 35, + "vessel_length": 1.3016520368622686, + "vessel_name": "branch14_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 5.533733735759024e-8, + "L": 4.857563731511191, + "R_poiseuille": 16.2155151382348, + "stenosis_coefficient": 2.093671813812707 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_8" + }, + "vessel_id": 36, + "vessel_length": 2.1909658954476545, + "vessel_name": "branch14_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.7259740570039247e-7, + "L": 4.4220361971259985, + "R_poiseuille": 7.983492634519308, + "stenosis_coefficient": 0.004782454298560274 + } + }, + { + "vessel_id": 37, + "vessel_length": 2.410068685549808, + "vessel_name": "branch15_seg0", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.1331452245317805e-7, + "L": 8.1376231161035, + "R_poiseuille": 24.578213816626562, + "stenosis_coefficient": 0.6865913189649374 + } + }, + { + "vessel_id": 38, + "vessel_length": 1.035048097779632, + "vessel_name": "branch15_seg1", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 2.5909686452944444e-8, + "L": 6.512824614159762, + "R_poiseuille": 36.65843755345858, + "stenosis_coefficient": 5.032416007881057 + } + }, + { + "boundary_conditions": { + "outlet": "RCR_9" + }, + "vessel_id": 39, + "vessel_length": 3.1133534339282987, + "vessel_name": "branch15_seg2", + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "C": 1.3697519243864332e-7, + "L": 11.230395110861556, + "R_poiseuille": 36.236294245522544, + "stenosis_coefficient": 3.7202912981572984 + } + } + ] +} diff --git a/tests/test_interface/test_01/svzerod_3Dcoupling.json b/tests/test_interface/test_01/svzerod_3Dcoupling.json index ed45d147c..a2cc5e586 100644 --- a/tests/test_interface/test_01/svzerod_3Dcoupling.json +++ b/tests/test_interface/test_01/svzerod_3Dcoupling.json @@ -1,576 +1,574 @@ { - "simulation_parameters": { - "coupled_simulation": true, - "number_of_time_pts": 50, - "output_all_cycles": true, - "steady_initial": false - }, - "boundary_conditions": [ - { - "bc_name": "BC_RCR1", - "bc_type": "ClosedLoopRCR", - "bc_values": { - "Rp": 0.14517763, - "Rd": 1.46790713, - "C": 0.25116364, - "closed_loop_outlet": true - } - }, - { - "bc_name": "BC_lca1", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 145.27234317, - "Ram": 236.06755765, - "Rv": 290.06461147, - "Cim": 0.00105039, - "Ca": 0.00010326 - } - }, - { - "bc_name": "BC_lca10", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 264.50228916, - "Ram": 429.81621988, - "Rv": 528.13048970, - "Cim": 0.00066247, - "Ca": 0.00006513 - } - }, - { - "bc_name": "BC_lca11", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 242.34288877, - "Ram": 393.80719426, - "Rv": 483.88491806, - "Cim": 0.00070852, - "Ca": 0.00006966 - } - }, - { - "bc_name": "BC_lca12", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 434.80456767, - "Ram": 706.55742246, - "Rv": 868.17225653, - "Cim": 0.00045194, - "Ca": 0.00004440 - } - }, - { - "bc_name": "BC_lca2", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 215.56835732, - "Ram": 350.29858065, - "Rv": 430.42433573, - "Cim": 0.00077533, - "Ca": 0.00007617 - } - }, - { - "bc_name": "BC_lca3", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 128.32140944, - "Ram": 208.52229034, - "Rv": 256.21876096, - "Cim": 0.00115556, - "Ca": 0.00011358 - } - }, - { - "bc_name": "BC_lca4", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 485.25934900, - "Ram": 788.54644212, - "Rv": 968.91508361, - "Cim": 0.00041538, - "Ca": 0.00004083 - } - }, - { - "bc_name": "BC_lca5", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 220.09705473, - "Ram": 357.65771393, - "Rv": 439.46676478, - "Cim": 0.00076305, - "Ca": 0.00007498 - } - }, - { - "bc_name": "BC_lca6", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 312.82644777, - "Ram": 508.34297763, - "Rv": 624.61911227, - "Cim": 0.00058227, - "Ca": 0.00005727 - } - }, - { - "bc_name": "BC_lca7", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 187.95513270, - "Ram": 305.42709064, - "Rv": 375.28913867, - "Cim": 0.00086153, - "Ca": 0.00008467 - } - }, - { - "bc_name": "BC_lca8", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 353.61869908, - "Ram": 574.63038601, - "Rv": 706.06881062, - "Cim": 0.00052984, - "Ca": 0.00005210 - } - }, - { - "bc_name": "BC_lca9", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 169.53550051, - "Ram": 275.49518834, - "Rv": 338.51074481, - "Cim": 0.00093274, - "Ca": 0.00009166 - } - }, - { - "bc_name": "BC_rca1", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 80.29184258, - "Ram": 130.47424420, - "Rv": 160.31834838, - "Cim": 0.00141371, - "Ca": 0.00017264 - } - }, - { - "bc_name": "BC_rca10", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 218.08868882, - "Ram": 354.39411934, - "Rv": 435.45666992, - "Cim": 0.00065544, - "Ca": 0.00008004 - } - }, - { - "bc_name": "BC_rca2", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 105.20903691, - "Ram": 170.96468497, - "Rv": 210.07039433, - "Cim": 0.00114837, - "Ca": 0.00014026 - } - }, - { - "bc_name": "BC_rca3", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 186.14291060, - "Ram": 302.48222973, - "Rv": 371.67068322, - "Cim": 0.00074037, - "Ca": 0.00009038 - } - }, - { - "bc_name": "BC_rca4", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 193.76088038, - "Ram": 314.86143062, - "Rv": 386.88144804, - "Cim": 0.00071786, - "Ca": 0.00008767 - } - }, - { - "bc_name": "BC_rca5", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 124.95088751, - "Ram": 203.04519220, - "Rv": 249.48885552, - "Cim": 0.00100610, - "Ca": 0.00012286 - } - }, - { - "bc_name": "BC_rca6", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 218.27513756, - "Ram": 354.69709853, - "Rv": 435.82895125, - "Cim": 0.00065505, - "Ca": 0.00007994 - } - }, - { - "bc_name": "BC_rca7", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 178.05349026, - "Ram": 289.33692167, - "Rv": 355.51857526, - "Cim": 0.00076610, - "Ca": 0.00009357 - } - }, - { - "bc_name": "BC_rca8", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 173.61664735, - "Ram": 282.12705194, - "Rv": 346.65955170, - "Cim": 0.00078117, - "Ca": 0.00009540 - } - }, - { - "bc_name": "BC_rca9", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 162.07275385, - "Ram": 263.36822500, - "Rv": 323.60991327, - "Cim": 0.00082363, - "Ca": 0.00010053 - } - } - ], - "junctions": [], - "vessels": [], - "external_solver_coupling_blocks": [ - { - "name": "inlet_BC_RCR1", - "connected_block": "BC_RCR1", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca1", - "connected_block": "BC_lca1", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca10", - "connected_block": "BC_lca10", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca11", - "connected_block": "BC_lca11", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca12", - "connected_block": "BC_lca12", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca2", - "connected_block": "BC_lca2", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca3", - "connected_block": "BC_lca3", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca4", - "connected_block": "BC_lca4", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca5", - "connected_block": "BC_lca5", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca6", - "connected_block": "BC_lca6", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca7", - "connected_block": "BC_lca7", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca8", - "connected_block": "BC_lca8", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_lca9", - "connected_block": "BC_lca9", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_rca1", - "connected_block": "BC_rca1", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_rca10", - "connected_block": "BC_rca10", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_rca2", - "connected_block": "BC_rca2", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_rca3", - "connected_block": "BC_rca3", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_rca4", - "connected_block": "BC_rca4", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_rca5", - "connected_block": "BC_rca5", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_rca6", - "connected_block": "BC_rca6", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_rca7", - "connected_block": "BC_rca7", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_rca8", - "connected_block": "BC_rca8", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "inlet_BC_rca9", - "connected_block": "BC_rca9", - "type": "FLOW", - "location": "inlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - }, - { - "name": "outlet_aorta", - "connected_block": "ClosedLoopHeartAndPulmonary", - "type": "FLOW", - "location": "outlet", - "periodic": false, - "values": { - "t": [1.0000, 1.0000], - "Q": [1.0000, 1.0000] - } - } - ], - "closed_loop_blocks": [ - { - "outlet_blocks": [ - "outlet_aorta" - ], - "closed_loop_type": "ClosedLoopHeartAndPulmonary", - "cardiac_cycle_period": 0.9231, - "parameters": { - "Tsa": 0.403594, - "tpwave": 8.975463, - "Erv_s": 1.557941, - "Elv_s": 3.536852, - "iml": 0.588690, - "imr": 0.994136, - "Lrv_a": 0.000375, - "Rrv_a": 0.039082, - "Lra_v": 0.000375, - "Rra_v": 0.007390, - "Lla_v": 0.000375, - "Rla_v": 0.006480, - "Rlv_ao": 0.025915, - "Llv_a": 0.000130, - "Vrv_u": 2.574133, - "Vlv_u": -4.220641, - "Rpd": 0.074351, - "Cp": 1.089993, - "Cpa": 0.352885, - "Kxp_ra": 8.646988, - "Kxv_ra": 0.004883, - "Emax_ra": 0.300000, - "Vaso_ra": 4.175754, - "Kxp_la": 8.149902, - "Kxv_la": 0.008012, - "Emax_la": 0.309459, - "Vaso_la": 8.093518 - } - } - ], - "initial_condition": { - "V_RA:CLH": 31.20, - "V_RV:CLH": 97.50, - "V_LA:CLH": 31.20, - "V_LV:CLH": 97.50, - "P_pul:CLH": 8.0, - "pressure_all": 69.00 + "simulation_parameters": { + "coupled_simulation": true, + "number_of_time_pts": 50, + "output_all_cycles": true, + "steady_initial": false + }, + "boundary_conditions": [ + { + "bc_name": "BC_RCR1", + "bc_type": "ClosedLoopRCR", + "bc_values": { + "Rp": 0.14517763, + "Rd": 1.46790713, + "C": 0.25116364, + "closed_loop_outlet": true + } + }, + { + "bc_name": "BC_lca1", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 145.27234317, + "Ram": 236.06755765, + "Rv": 290.06461147, + "Cim": 0.00105039, + "Ca": 0.00010326 + } + }, + { + "bc_name": "BC_lca10", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 264.50228916, + "Ram": 429.81621988, + "Rv": 528.1304897, + "Cim": 0.00066247, + "Ca": 0.00006513 + } + }, + { + "bc_name": "BC_lca11", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 242.34288877, + "Ram": 393.80719426, + "Rv": 483.88491806, + "Cim": 0.00070852, + "Ca": 0.00006966 + } + }, + { + "bc_name": "BC_lca12", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 434.80456767, + "Ram": 706.55742246, + "Rv": 868.17225653, + "Cim": 0.00045194, + "Ca": 0.0000444 + } + }, + { + "bc_name": "BC_lca2", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 215.56835732, + "Ram": 350.29858065, + "Rv": 430.42433573, + "Cim": 0.00077533, + "Ca": 0.00007617 + } + }, + { + "bc_name": "BC_lca3", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 128.32140944, + "Ram": 208.52229034, + "Rv": 256.21876096, + "Cim": 0.00115556, + "Ca": 0.00011358 + } + }, + { + "bc_name": "BC_lca4", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 485.259349, + "Ram": 788.54644212, + "Rv": 968.91508361, + "Cim": 0.00041538, + "Ca": 0.00004083 + } + }, + { + "bc_name": "BC_lca5", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 220.09705473, + "Ram": 357.65771393, + "Rv": 439.46676478, + "Cim": 0.00076305, + "Ca": 0.00007498 + } + }, + { + "bc_name": "BC_lca6", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 312.82644777, + "Ram": 508.34297763, + "Rv": 624.61911227, + "Cim": 0.00058227, + "Ca": 0.00005727 + } + }, + { + "bc_name": "BC_lca7", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 187.9551327, + "Ram": 305.42709064, + "Rv": 375.28913867, + "Cim": 0.00086153, + "Ca": 0.00008467 + } + }, + { + "bc_name": "BC_lca8", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 353.61869908, + "Ram": 574.63038601, + "Rv": 706.06881062, + "Cim": 0.00052984, + "Ca": 0.0000521 + } + }, + { + "bc_name": "BC_lca9", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 169.53550051, + "Ram": 275.49518834, + "Rv": 338.51074481, + "Cim": 0.00093274, + "Ca": 0.00009166 + } + }, + { + "bc_name": "BC_rca1", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 80.29184258, + "Ram": 130.4742442, + "Rv": 160.31834838, + "Cim": 0.00141371, + "Ca": 0.00017264 + } + }, + { + "bc_name": "BC_rca10", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 218.08868882, + "Ram": 354.39411934, + "Rv": 435.45666992, + "Cim": 0.00065544, + "Ca": 0.00008004 + } + }, + { + "bc_name": "BC_rca2", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 105.20903691, + "Ram": 170.96468497, + "Rv": 210.07039433, + "Cim": 0.00114837, + "Ca": 0.00014026 + } + }, + { + "bc_name": "BC_rca3", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 186.1429106, + "Ram": 302.48222973, + "Rv": 371.67068322, + "Cim": 0.00074037, + "Ca": 0.00009038 + } + }, + { + "bc_name": "BC_rca4", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 193.76088038, + "Ram": 314.86143062, + "Rv": 386.88144804, + "Cim": 0.00071786, + "Ca": 0.00008767 + } + }, + { + "bc_name": "BC_rca5", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 124.95088751, + "Ram": 203.0451922, + "Rv": 249.48885552, + "Cim": 0.0010061, + "Ca": 0.00012286 + } + }, + { + "bc_name": "BC_rca6", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 218.27513756, + "Ram": 354.69709853, + "Rv": 435.82895125, + "Cim": 0.00065505, + "Ca": 0.00007994 + } + }, + { + "bc_name": "BC_rca7", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 178.05349026, + "Ram": 289.33692167, + "Rv": 355.51857526, + "Cim": 0.0007661, + "Ca": 0.00009357 + } + }, + { + "bc_name": "BC_rca8", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 173.61664735, + "Ram": 282.12705194, + "Rv": 346.6595517, + "Cim": 0.00078117, + "Ca": 0.0000954 + } + }, + { + "bc_name": "BC_rca9", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 162.07275385, + "Ram": 263.368225, + "Rv": 323.60991327, + "Cim": 0.00082363, + "Ca": 0.00010053 + } + } + ], + "junctions": [], + "vessels": [], + "external_solver_coupling_blocks": [ + { + "name": "inlet_BC_RCR1", + "connected_block": "BC_RCR1", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca1", + "connected_block": "BC_lca1", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca10", + "connected_block": "BC_lca10", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca11", + "connected_block": "BC_lca11", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca12", + "connected_block": "BC_lca12", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca2", + "connected_block": "BC_lca2", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca3", + "connected_block": "BC_lca3", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca4", + "connected_block": "BC_lca4", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca5", + "connected_block": "BC_lca5", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca6", + "connected_block": "BC_lca6", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca7", + "connected_block": "BC_lca7", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca8", + "connected_block": "BC_lca8", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_lca9", + "connected_block": "BC_lca9", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_rca1", + "connected_block": "BC_rca1", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_rca10", + "connected_block": "BC_rca10", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_rca2", + "connected_block": "BC_rca2", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_rca3", + "connected_block": "BC_rca3", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_rca4", + "connected_block": "BC_rca4", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_rca5", + "connected_block": "BC_rca5", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_rca6", + "connected_block": "BC_rca6", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_rca7", + "connected_block": "BC_rca7", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_rca8", + "connected_block": "BC_rca8", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "inlet_BC_rca9", + "connected_block": "BC_rca9", + "type": "FLOW", + "location": "inlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + }, + { + "name": "outlet_aorta", + "connected_block": "ClosedLoopHeartAndPulmonary", + "type": "FLOW", + "location": "outlet", + "periodic": false, + "values": { + "t": [1.0, 1.0], + "Q": [1.0, 1.0] + } + } + ], + "closed_loop_blocks": [ + { + "outlet_blocks": ["outlet_aorta"], + "closed_loop_type": "ClosedLoopHeartAndPulmonary", + "cardiac_cycle_period": 0.9231, + "parameters": { + "Tsa": 0.403594, + "tpwave": 8.975463, + "Erv_s": 1.557941, + "Elv_s": 3.536852, + "iml": 0.58869, + "imr": 0.994136, + "Lrv_a": 0.000375, + "Rrv_a": 0.039082, + "Lra_v": 0.000375, + "Rra_v": 0.00739, + "Lla_v": 0.000375, + "Rla_v": 0.00648, + "Rlv_ao": 0.025915, + "Llv_a": 0.00013, + "Vrv_u": 2.574133, + "Vlv_u": -4.220641, + "Rpd": 0.074351, + "Cp": 1.089993, + "Cpa": 0.352885, + "Kxp_ra": 8.646988, + "Kxv_ra": 0.004883, + "Emax_ra": 0.3, + "Vaso_ra": 4.175754, + "Kxp_la": 8.149902, + "Kxv_la": 0.008012, + "Emax_la": 0.309459, + "Vaso_la": 8.093518 + } } + ], + "initial_condition": { + "V_RA:CLH": 31.2, + "V_RV:CLH": 97.5, + "V_LA:CLH": 31.2, + "V_LV:CLH": 97.5, + "P_pul:CLH": 8.0, + "pressure_all": 69.0 + } } diff --git a/tests/test_interface/test_02/svzerod_tuned.json b/tests/test_interface/test_02/svzerod_tuned.json index 0fad408f5..10ff05ee1 100644 --- a/tests/test_interface/test_02/svzerod_tuned.json +++ b/tests/test_interface/test_02/svzerod_tuned.json @@ -1,1098 +1,998 @@ { - "simulation_parameters": { - "number_of_cardiac_cycles": 6, - "number_of_time_pts_per_cardiac_cycle": 1000, - "steady_initial": false, - "output_all_cycles": true, - "output_variable_based": true - }, - "boundary_conditions": [ - { - "bc_name": "BC_RCR1", - "bc_type": "ClosedLoopRCR", - "bc_values": { - "Rp": 0.14517763, - "Rd": 1.46790713, - "C": 0.25116364, - "closed_loop_outlet": true - } - }, - { - "bc_name": "BC_lca1", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 145.27234317, - "Ram": 236.06755765, - "Rv": 290.06461147, - "Cim": 0.00105039, - "Ca": 0.00010326 - } - }, - { - "bc_name": "BC_lca10", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 264.50228916, - "Ram": 429.81621988, - "Rv": 528.13048970, - "Cim": 0.00066247, - "Ca": 0.00006513 - } - }, - { - "bc_name": "BC_lca11", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 242.34288877, - "Ram": 393.80719426, - "Rv": 483.88491806, - "Cim": 0.00070852, - "Ca": 0.00006966 - } - }, - { - "bc_name": "BC_lca12", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 434.80456767, - "Ram": 706.55742246, - "Rv": 868.17225653, - "Cim": 0.00045194, - "Ca": 0.00004440 - } - }, - { - "bc_name": "BC_lca2", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 215.56835732, - "Ram": 350.29858065, - "Rv": 430.42433573, - "Cim": 0.00077533, - "Ca": 0.00007617 - } - }, - { - "bc_name": "BC_lca3", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 128.32140944, - "Ram": 208.52229034, - "Rv": 256.21876096, - "Cim": 0.00115556, - "Ca": 0.00011358 - } - }, - { - "bc_name": "BC_lca4", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 485.25934900, - "Ram": 788.54644212, - "Rv": 968.91508361, - "Cim": 0.00041538, - "Ca": 0.00004083 - } - }, - { - "bc_name": "BC_lca5", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 220.09705473, - "Ram": 357.65771393, - "Rv": 439.46676478, - "Cim": 0.00076305, - "Ca": 0.00007498 - } - }, - { - "bc_name": "BC_lca6", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 312.82644777, - "Ram": 508.34297763, - "Rv": 624.61911227, - "Cim": 0.00058227, - "Ca": 0.00005727 - } - }, - { - "bc_name": "BC_lca7", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 187.95513270, - "Ram": 305.42709064, - "Rv": 375.28913867, - "Cim": 0.00086153, - "Ca": 0.00008467 - } - }, - { - "bc_name": "BC_lca8", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 353.61869908, - "Ram": 574.63038601, - "Rv": 706.06881062, - "Cim": 0.00052984, - "Ca": 0.00005210 - } - }, - { - "bc_name": "BC_lca9", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 169.53550051, - "Ram": 275.49518834, - "Rv": 338.51074481, - "Cim": 0.00093274, - "Ca": 0.00009166 - } - }, - { - "bc_name": "BC_rca1", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 80.29184258, - "Ram": 130.47424420, - "Rv": 160.31834838, - "Cim": 0.00141371, - "Ca": 0.00017264 - } - }, - { - "bc_name": "BC_rca10", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 218.08868882, - "Ram": 354.39411934, - "Rv": 435.45666992, - "Cim": 0.00065544, - "Ca": 0.00008004 - } - }, - { - "bc_name": "BC_rca2", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 105.20903691, - "Ram": 170.96468497, - "Rv": 210.07039433, - "Cim": 0.00114837, - "Ca": 0.00014026 - } - }, - { - "bc_name": "BC_rca3", - "bc_type": "ClosedLoopCoronaryLeft", - "bc_values": { - "Ra": 186.14291060, - "Ram": 302.48222973, - "Rv": 371.67068322, - "Cim": 0.00074037, - "Ca": 0.00009038 - } - }, - { - "bc_name": "BC_rca4", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 193.76088038, - "Ram": 314.86143062, - "Rv": 386.88144804, - "Cim": 0.00071786, - "Ca": 0.00008767 - } - }, - { - "bc_name": "BC_rca5", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 124.95088751, - "Ram": 203.04519220, - "Rv": 249.48885552, - "Cim": 0.00100610, - "Ca": 0.00012286 - } - }, - { - "bc_name": "BC_rca6", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 218.27513756, - "Ram": 354.69709853, - "Rv": 435.82895125, - "Cim": 0.00065505, - "Ca": 0.00007994 - } - }, - { - "bc_name": "BC_rca7", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 178.05349026, - "Ram": 289.33692167, - "Rv": 355.51857526, - "Cim": 0.00076610, - "Ca": 0.00009357 - } - }, - { - "bc_name": "BC_rca8", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 173.61664735, - "Ram": 282.12705194, - "Rv": 346.65955170, - "Cim": 0.00078117, - "Ca": 0.00009540 - } - }, - { - "bc_name": "BC_rca9", - "bc_type": "ClosedLoopCoronaryRight", - "bc_values": { - "Ra": 162.07275385, - "Ram": 263.36822500, - "Rv": 323.60991327, - "Cim": 0.00082363, - "Ca": 0.00010053 - } - } - ], - "vessels": [ - { - "vessel_name": "aorta", - "vessel_id": 0, - "vessel_length": 0.66112316, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.00000967, - "L": 0.00007322, - "C": 0.03796592, - "stenosis_coefficient": 0.00000000 - } - }, - { - "boundary_conditions": { - "outlet": "BC_RCR1" - }, - "vessel_name": "aorta_outlet", - "vessel_id": 1, - "vessel_length": 1.75194297, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.00002617, - "L": 0.00019606, - "C": 0.09956642, - "stenosis_coefficient": 0.00000000 - } - }, - { - "vessel_name": "branch2_seg0", - "vessel_id": 2, - "vessel_length": 4.12881563, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.04701796, - "L": 0.01275703, - "C": 0.00849882, - "stenosis_coefficient": 0.00552872 - } - }, - { - "vessel_name": "branch3_seg0", - "vessel_id": 3, - "vessel_length": 1.14204214, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.21456086, - "L": 0.01433248, - "C": 0.00057876, - "stenosis_coefficient": 0.00000000 - } - }, - { - "vessel_name": "branch4_seg0", - "vessel_id": 4, - "vessel_length": 0.52897498, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.48018432, - "L": 0.01459240, - "C": 0.00012196, - "stenosis_coefficient": 0.00000044 - } - }, - { - "vessel_name": "branch5_seg0", - "vessel_id": 5, - "vessel_length": 1.81322649, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.94887937, - "L": 0.03797839, - "C": 0.00055059, - "stenosis_coefficient": 0.04093514 - } - }, - { - "vessel_name": "branch6_seg0", - "vessel_id": 6, - "vessel_length": 1.12500965, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 2.27041077, - "L": 0.04627382, - "C": 0.00017395, - "stenosis_coefficient": 0.00662043 - } - }, - { - "vessel_name": "branch7_seg0", - "vessel_id": 7, - "vessel_length": 0.79203945, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.79856153, - "L": 0.02302675, - "C": 0.00017327, - "stenosis_coefficient": 0.00000000 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca1" - }, - "vessel_name": "lca1", - "vessel_id": 8, - "vessel_length": 4.28071029, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 20.29815063, - "L": 0.26989273, - "C": 0.00002639, - "stenosis_coefficient": 1.99849135 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca10" - }, - "vessel_name": "lca10", - "vessel_id": 9, - "vessel_length": 0.87523345, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 24.54508224, - "L": 0.13419898, - "C": 0.00000188, - "stenosis_coefficient": 3.42088449 - } - }, - { - "vessel_name": "branch10_seg0", - "vessel_id": 10, - "vessel_length": 0.71170083, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.32283384, - "L": 0.01387852, - "C": 0.00001204, - "stenosis_coefficient": 0.00000000 - } - }, - { - "vessel_name": "branch11_seg0", - "vessel_id": 11, - "vessel_length": 4.62351211, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 3.61412480, - "L": 0.11835663, - "C": 0.00005957, - "stenosis_coefficient": 14.00573414 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca11" - }, - "vessel_name": "lca11", - "vessel_id": 12, - "vessel_length": 2.31158288, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 22.44186019, - "L": 0.20853991, - "C": 0.00000932, - "stenosis_coefficient": 1.66010823 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca12" - }, - "vessel_name": "lca12", - "vessel_id": 13, - "vessel_length": 6.88744833, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 35.86392182, - "L": 0.45505417, - "C": 0.00004017, - "stenosis_coefficient": 6.40569879 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca2" - }, - "vessel_name": "lca2", - "vessel_id": 14, - "vessel_length": 6.88258878, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 16.33057337, - "L": 0.30695991, - "C": 0.00006396, - "stenosis_coefficient": 0.93156876 - } - }, - { - "vessel_name": "branch15_seg0", - "vessel_id": 15, - "vessel_length": 1.65325150, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 6.43502136, - "L": 0.09443859, - "C": 0.00001199, - "stenosis_coefficient": 0.13505610 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca3" - }, - "vessel_name": "lca3", - "vessel_id": 16, - "vessel_length": 0.61111855, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 3.35785775, - "L": 0.04147620, - "C": 0.00000345, - "stenosis_coefficient": 0.02251603 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca4" - }, - "vessel_name": "lca4", - "vessel_id": 17, - "vessel_length": 2.23023369, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 30.40222928, - "L": 0.23841465, - "C": 0.00000736, - "stenosis_coefficient": 10.17051450 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca5" - }, - "vessel_name": "lca5", - "vessel_id": 18, - "vessel_length": 3.45268608, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 19.69933014, - "L": 0.23878624, - "C": 0.00001908, - "stenosis_coefficient": 1.85344297 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca6" - }, - "vessel_name": "lca6", - "vessel_id": 19, - "vessel_length": 1.40311067, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 16.57757459, - "L": 0.13964053, - "C": 0.00000504, - "stenosis_coefficient": 0.22107556 - } - }, - { - "vessel_name": "branch20_seg0", - "vessel_id": 20, - "vessel_length": 1.11230760, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 4.41271486, - "L": 0.06414612, - "C": 0.00000689, - "stenosis_coefficient": 0.64069732 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca7" - }, - "vessel_name": "lca7", - "vessel_id": 21, - "vessel_length": 1.36712305, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 9.78248188, - "L": 0.10588474, - "C": 0.00000661, - "stenosis_coefficient": 0.47214903 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca8" - }, - "vessel_name": "lca8", - "vessel_id": 22, - "vessel_length": 1.94613639, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 36.94014009, - "L": 0.24549403, - "C": 0.00000528, - "stenosis_coefficient": 0.44274105 - } - }, - { - "boundary_conditions": { - "outlet": "BC_lca9" - }, - "vessel_name": "lca9", - "vessel_id": 23, - "vessel_length": 1.71324850, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 8.55904537, - "L": 0.11087353, - "C": 0.00001024, - "stenosis_coefficient": 1.61692094 - } - }, - { - "vessel_name": "branch24_seg0", - "vessel_id": 24, - "vessel_length": 2.49802491, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.03934789, - "L": 0.00907746, - "C": 0.00026594, - "stenosis_coefficient": 0.00000000 - } - }, - { - "vessel_name": "branch25_seg0", - "vessel_id": 25, - "vessel_length": 2.80679680, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.33806796, - "L": 0.02820412, - "C": 0.00010806, - "stenosis_coefficient": 0.70557854 - } - }, - { - "vessel_name": "branch26_seg0", - "vessel_id": 26, - "vessel_length": 5.66814626, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 1.67039723, - "L": 0.08909133, - "C": 0.00013951, - "stenosis_coefficient": 0.13068133 - } - }, - { - "vessel_name": "branch27_seg0", - "vessel_id": 27, - "vessel_length": 3.21876810, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 5.26722925, - "L": 0.11921777, - "C": 0.00003362, - "stenosis_coefficient": 0.00972055 - } - }, - { - "boundary_conditions": { - "outlet": "BC_rca1" - }, - "vessel_name": "rca1", - "vessel_id": 28, - "vessel_length": 1.64389655, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 5.55012415, - "L": 0.08745681, - "C": 0.00001240, - "stenosis_coefficient": 0.37631306 - } - }, - { - "vessel_name": "branch29_seg0", - "vessel_id": 29, - "vessel_length": 0.70812320, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 0.27550269, - "L": 0.01278858, - "C": 0.00001573, - "stenosis_coefficient": 0.00006426 - } - }, - { - "vessel_name": "branch30_seg0", - "vessel_id": 30, - "vessel_length": 2.84248391, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 5.31519922, - "L": 0.11254179, - "C": 0.00002880, - "stenosis_coefficient": 0.36678610 - } - }, - { - "boundary_conditions": { - "outlet": "BC_rca10" - }, - "vessel_name": "rca10", - "vessel_id": 31, - "vessel_length": 1.21839472, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 15.19167032, - "L": 0.12456665, - "C": 0.00000424, - "stenosis_coefficient": 1.61300559 - } - }, - { - "boundary_conditions": { - "outlet": "BC_rca2" - }, - "vessel_name": "rca2", - "vessel_id": 32, - "vessel_length": 3.27087111, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 7.74895513, - "L": 0.14576670, - "C": 0.00003042, - "stenosis_coefficient": 0.26740420 - } - }, - { - "vessel_name": "branch33_seg0", - "vessel_id": 33, - "vessel_length": 3.86406358, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 6.89361845, - "L": 0.14943447, - "C": 0.00004142, - "stenosis_coefficient": 0.30197805 - } - }, - { - "boundary_conditions": { - "outlet": "BC_rca3" - }, - "vessel_name": "rca3", - "vessel_id": 34, - "vessel_length": 3.79211944, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 20.26259566, - "L": 0.25380114, - "C": 0.00002178, - "stenosis_coefficient": 0.97491397 - } - }, - { - "boundary_conditions": { - "outlet": "BC_rca4" - }, - "vessel_name": "rca4", - "vessel_id": 35, - "vessel_length": 2.62440581, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 19.25114116, - "L": 0.20580161, - "C": 0.00001250, - "stenosis_coefficient": 0.21767635 - } - }, - { - "boundary_conditions": { - "outlet": "BC_rca5" - }, - "vessel_name": "rca5", - "vessel_id": 36, - "vessel_length": 2.67001331, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 10.92529052, - "L": 0.15637893, - "C": 0.00001796, - "stenosis_coefficient": 3.72519237 - } - }, - { - "boundary_conditions": { - "outlet": "BC_rca6" - }, - "vessel_name": "rca6", - "vessel_id": 37, - "vessel_length": 0.70154505, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 8.53998736, - "L": 0.07086984, - "C": 0.00000247, - "stenosis_coefficient": 0.10919271 - } - }, - { - "vessel_name": "branch38_seg0", - "vessel_id": 38, - "vessel_length": 2.35200908, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 2.86606254, - "L": 0.07517395, - "C": 0.00002622, - "stenosis_coefficient": 0.05925971 - } - }, - { - "boundary_conditions": { - "outlet": "BC_rca7" - }, - "vessel_name": "rca7", - "vessel_id": 39, - "vessel_length": 2.40530257, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 13.88168541, - "L": 0.16730580, - "C": 0.00001320, - "stenosis_coefficient": 0.22733188 - } - }, - { - "boundary_conditions": { - "outlet": "BC_rca8" - }, - "vessel_name": "rca8", - "vessel_id": 40, - "vessel_length": 0.98298044, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 8.71842056, - "L": 0.08476106, - "C": 0.00000418, - "stenosis_coefficient": 0.05314967 - } - }, - { - "boundary_conditions": { - "outlet": "BC_rca9" - }, - "vessel_name": "rca9", - "vessel_id": 41, - "vessel_length": 0.57759712, - "zero_d_element_type": "BloodVessel", - "zero_d_element_values": { - "R_poiseuille": 3.41266911, - "L": 0.04065038, - "C": 0.00000313, - "stenosis_coefficient": 0.00000000 - } - } - ], - "junctions": [ - { - "junction_name": "J0", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 0 - ], - "outlet_vessels": [ - 1, - 2, - 24 - ] - }, - { - "junction_name": "J1", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 2 - ], - "outlet_vessels": [ - 3, - 10 - ] - }, - { - "junction_name": "J2", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 3 - ], - "outlet_vessels": [ - 4, - 19 - ] - }, - { - "junction_name": "J3", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 4 - ], - "outlet_vessels": [ - 5, - 15, - 20 - ] - }, - { - "junction_name": "J4", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 5 - ], - "outlet_vessels": [ - 6, - 23 - ] - }, - { - "junction_name": "J5", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 6 - ], - "outlet_vessels": [ - 7, - 18 - ] - }, - { - "junction_name": "J6", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 7 - ], - "outlet_vessels": [ - 8, - 9 - ] - }, - { - "junction_name": "J7", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 10 - ], - "outlet_vessels": [ - 11, - 13 - ] - }, - { - "junction_name": "J8", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 11 - ], - "outlet_vessels": [ - 12, - 14 - ] - }, - { - "junction_name": "J9", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 15 - ], - "outlet_vessels": [ - 16, - 17 - ] - }, - { - "junction_name": "J10", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 20 - ], - "outlet_vessels": [ - 21, - 22 - ] - }, - { - "junction_name": "J11", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 24 - ], - "outlet_vessels": [ - 25, - 32 - ] - }, - { - "junction_name": "J12", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 25 - ], - "outlet_vessels": [ - 26, - 33, - 36 - ] - }, - { - "junction_name": "J13", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 26 - ], - "outlet_vessels": [ - 27, - 29 - ] - }, - { - "junction_name": "J14", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 27 - ], - "outlet_vessels": [ - 28, - 37 - ] - }, - { - "junction_name": "J15", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 29 - ], - "outlet_vessels": [ - 30, - 38 - ] - }, - { - "junction_name": "J16", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 30 - ], - "outlet_vessels": [ - 31, - 41 - ] - }, - { - "junction_name": "J17", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 33 - ], - "outlet_vessels": [ - 34, - 35 - ] - }, - { - "junction_name": "J18", - "junction_type": "NORMAL_JUNCTION", - "inlet_vessels": [ - 38 - ], - "outlet_vessels": [ - 39, - 40 - ] - } - ], - "closed_loop_blocks": [ - { - "outlet_blocks": [ - "aorta" - ], - "closed_loop_type": "ClosedLoopHeartAndPulmonary", - "cardiac_cycle_period": 0.9231, - "parameters": { - "Tsa": 0.403594, - "tpwave": 8.975463, - "Erv_s": 1.557941, - "Elv_s": 3.536852, - "iml": 0.588690, - "imr": 0.994136, - "Lrv_a": 0.000375, - "Rrv_a": 0.039082, - "Lra_v": 0.000375, - "Rra_v": 0.007390, - "Lla_v": 0.000375, - "Rla_v": 0.006480, - "Rlv_ao": 0.025915, - "Llv_a": 0.000130, - "Vrv_u": 2.574133, - "Vlv_u": -4.220641, - "Rpd": 0.074351, - "Cp": 1.089993, - "Cpa": 0.352885, - "Kxp_ra": 8.646988, - "Kxv_ra": 0.004883, - "Emax_ra": 0.300000, - "Vaso_ra": 4.175754, - "Kxp_la": 8.149902, - "Kxv_la": 0.008012, - "Emax_la": 0.309459, - "Vaso_la": 8.093518 - } - } - ], - "initial_condition": { - "V_RA:CLH": 31.20, - "V_RV:CLH": 97.50, - "V_LA:CLH": 31.20, - "V_LV:CLH": 97.50, - "P_pul:CLH": 8.0, - "pressure_all": 69.00 + "simulation_parameters": { + "number_of_cardiac_cycles": 6, + "number_of_time_pts_per_cardiac_cycle": 1000, + "steady_initial": false, + "output_all_cycles": true, + "output_variable_based": true + }, + "boundary_conditions": [ + { + "bc_name": "BC_RCR1", + "bc_type": "ClosedLoopRCR", + "bc_values": { + "Rp": 0.14517763, + "Rd": 1.46790713, + "C": 0.25116364, + "closed_loop_outlet": true + } + }, + { + "bc_name": "BC_lca1", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 145.27234317, + "Ram": 236.06755765, + "Rv": 290.06461147, + "Cim": 0.00105039, + "Ca": 0.00010326 + } + }, + { + "bc_name": "BC_lca10", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 264.50228916, + "Ram": 429.81621988, + "Rv": 528.1304897, + "Cim": 0.00066247, + "Ca": 0.00006513 + } + }, + { + "bc_name": "BC_lca11", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 242.34288877, + "Ram": 393.80719426, + "Rv": 483.88491806, + "Cim": 0.00070852, + "Ca": 0.00006966 + } + }, + { + "bc_name": "BC_lca12", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 434.80456767, + "Ram": 706.55742246, + "Rv": 868.17225653, + "Cim": 0.00045194, + "Ca": 0.0000444 + } + }, + { + "bc_name": "BC_lca2", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 215.56835732, + "Ram": 350.29858065, + "Rv": 430.42433573, + "Cim": 0.00077533, + "Ca": 0.00007617 + } + }, + { + "bc_name": "BC_lca3", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 128.32140944, + "Ram": 208.52229034, + "Rv": 256.21876096, + "Cim": 0.00115556, + "Ca": 0.00011358 + } + }, + { + "bc_name": "BC_lca4", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 485.259349, + "Ram": 788.54644212, + "Rv": 968.91508361, + "Cim": 0.00041538, + "Ca": 0.00004083 + } + }, + { + "bc_name": "BC_lca5", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 220.09705473, + "Ram": 357.65771393, + "Rv": 439.46676478, + "Cim": 0.00076305, + "Ca": 0.00007498 + } + }, + { + "bc_name": "BC_lca6", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 312.82644777, + "Ram": 508.34297763, + "Rv": 624.61911227, + "Cim": 0.00058227, + "Ca": 0.00005727 + } + }, + { + "bc_name": "BC_lca7", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 187.9551327, + "Ram": 305.42709064, + "Rv": 375.28913867, + "Cim": 0.00086153, + "Ca": 0.00008467 + } + }, + { + "bc_name": "BC_lca8", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 353.61869908, + "Ram": 574.63038601, + "Rv": 706.06881062, + "Cim": 0.00052984, + "Ca": 0.0000521 + } + }, + { + "bc_name": "BC_lca9", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 169.53550051, + "Ram": 275.49518834, + "Rv": 338.51074481, + "Cim": 0.00093274, + "Ca": 0.00009166 + } + }, + { + "bc_name": "BC_rca1", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 80.29184258, + "Ram": 130.4742442, + "Rv": 160.31834838, + "Cim": 0.00141371, + "Ca": 0.00017264 + } + }, + { + "bc_name": "BC_rca10", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 218.08868882, + "Ram": 354.39411934, + "Rv": 435.45666992, + "Cim": 0.00065544, + "Ca": 0.00008004 + } + }, + { + "bc_name": "BC_rca2", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 105.20903691, + "Ram": 170.96468497, + "Rv": 210.07039433, + "Cim": 0.00114837, + "Ca": 0.00014026 + } + }, + { + "bc_name": "BC_rca3", + "bc_type": "ClosedLoopCoronaryLeft", + "bc_values": { + "Ra": 186.1429106, + "Ram": 302.48222973, + "Rv": 371.67068322, + "Cim": 0.00074037, + "Ca": 0.00009038 + } + }, + { + "bc_name": "BC_rca4", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 193.76088038, + "Ram": 314.86143062, + "Rv": 386.88144804, + "Cim": 0.00071786, + "Ca": 0.00008767 + } + }, + { + "bc_name": "BC_rca5", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 124.95088751, + "Ram": 203.0451922, + "Rv": 249.48885552, + "Cim": 0.0010061, + "Ca": 0.00012286 + } + }, + { + "bc_name": "BC_rca6", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 218.27513756, + "Ram": 354.69709853, + "Rv": 435.82895125, + "Cim": 0.00065505, + "Ca": 0.00007994 + } + }, + { + "bc_name": "BC_rca7", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 178.05349026, + "Ram": 289.33692167, + "Rv": 355.51857526, + "Cim": 0.0007661, + "Ca": 0.00009357 + } + }, + { + "bc_name": "BC_rca8", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 173.61664735, + "Ram": 282.12705194, + "Rv": 346.6595517, + "Cim": 0.00078117, + "Ca": 0.0000954 + } + }, + { + "bc_name": "BC_rca9", + "bc_type": "ClosedLoopCoronaryRight", + "bc_values": { + "Ra": 162.07275385, + "Ram": 263.368225, + "Rv": 323.60991327, + "Cim": 0.00082363, + "Ca": 0.00010053 + } + } + ], + "vessels": [ + { + "vessel_name": "aorta", + "vessel_id": 0, + "vessel_length": 0.66112316, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.00000967, + "L": 0.00007322, + "C": 0.03796592, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "BC_RCR1" + }, + "vessel_name": "aorta_outlet", + "vessel_id": 1, + "vessel_length": 1.75194297, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.00002617, + "L": 0.00019606, + "C": 0.09956642, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_name": "branch2_seg0", + "vessel_id": 2, + "vessel_length": 4.12881563, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.04701796, + "L": 0.01275703, + "C": 0.00849882, + "stenosis_coefficient": 0.00552872 + } + }, + { + "vessel_name": "branch3_seg0", + "vessel_id": 3, + "vessel_length": 1.14204214, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.21456086, + "L": 0.01433248, + "C": 0.00057876, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_name": "branch4_seg0", + "vessel_id": 4, + "vessel_length": 0.52897498, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.48018432, + "L": 0.0145924, + "C": 0.00012196, + "stenosis_coefficient": 0.00000044 + } + }, + { + "vessel_name": "branch5_seg0", + "vessel_id": 5, + "vessel_length": 1.81322649, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.94887937, + "L": 0.03797839, + "C": 0.00055059, + "stenosis_coefficient": 0.04093514 + } + }, + { + "vessel_name": "branch6_seg0", + "vessel_id": 6, + "vessel_length": 1.12500965, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 2.27041077, + "L": 0.04627382, + "C": 0.00017395, + "stenosis_coefficient": 0.00662043 + } + }, + { + "vessel_name": "branch7_seg0", + "vessel_id": 7, + "vessel_length": 0.79203945, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.79856153, + "L": 0.02302675, + "C": 0.00017327, + "stenosis_coefficient": 0.0 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca1" + }, + "vessel_name": "lca1", + "vessel_id": 8, + "vessel_length": 4.28071029, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 20.29815063, + "L": 0.26989273, + "C": 0.00002639, + "stenosis_coefficient": 1.99849135 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca10" + }, + "vessel_name": "lca10", + "vessel_id": 9, + "vessel_length": 0.87523345, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 24.54508224, + "L": 0.13419898, + "C": 0.00000188, + "stenosis_coefficient": 3.42088449 + } + }, + { + "vessel_name": "branch10_seg0", + "vessel_id": 10, + "vessel_length": 0.71170083, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.32283384, + "L": 0.01387852, + "C": 0.00001204, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_name": "branch11_seg0", + "vessel_id": 11, + "vessel_length": 4.62351211, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 3.6141248, + "L": 0.11835663, + "C": 0.00005957, + "stenosis_coefficient": 14.00573414 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca11" + }, + "vessel_name": "lca11", + "vessel_id": 12, + "vessel_length": 2.31158288, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 22.44186019, + "L": 0.20853991, + "C": 0.00000932, + "stenosis_coefficient": 1.66010823 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca12" + }, + "vessel_name": "lca12", + "vessel_id": 13, + "vessel_length": 6.88744833, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 35.86392182, + "L": 0.45505417, + "C": 0.00004017, + "stenosis_coefficient": 6.40569879 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca2" + }, + "vessel_name": "lca2", + "vessel_id": 14, + "vessel_length": 6.88258878, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 16.33057337, + "L": 0.30695991, + "C": 0.00006396, + "stenosis_coefficient": 0.93156876 + } + }, + { + "vessel_name": "branch15_seg0", + "vessel_id": 15, + "vessel_length": 1.6532515, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 6.43502136, + "L": 0.09443859, + "C": 0.00001199, + "stenosis_coefficient": 0.1350561 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca3" + }, + "vessel_name": "lca3", + "vessel_id": 16, + "vessel_length": 0.61111855, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 3.35785775, + "L": 0.0414762, + "C": 0.00000345, + "stenosis_coefficient": 0.02251603 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca4" + }, + "vessel_name": "lca4", + "vessel_id": 17, + "vessel_length": 2.23023369, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 30.40222928, + "L": 0.23841465, + "C": 0.00000736, + "stenosis_coefficient": 10.1705145 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca5" + }, + "vessel_name": "lca5", + "vessel_id": 18, + "vessel_length": 3.45268608, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 19.69933014, + "L": 0.23878624, + "C": 0.00001908, + "stenosis_coefficient": 1.85344297 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca6" + }, + "vessel_name": "lca6", + "vessel_id": 19, + "vessel_length": 1.40311067, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 16.57757459, + "L": 0.13964053, + "C": 0.00000504, + "stenosis_coefficient": 0.22107556 + } + }, + { + "vessel_name": "branch20_seg0", + "vessel_id": 20, + "vessel_length": 1.1123076, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 4.41271486, + "L": 0.06414612, + "C": 0.00000689, + "stenosis_coefficient": 0.64069732 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca7" + }, + "vessel_name": "lca7", + "vessel_id": 21, + "vessel_length": 1.36712305, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 9.78248188, + "L": 0.10588474, + "C": 0.00000661, + "stenosis_coefficient": 0.47214903 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca8" + }, + "vessel_name": "lca8", + "vessel_id": 22, + "vessel_length": 1.94613639, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 36.94014009, + "L": 0.24549403, + "C": 0.00000528, + "stenosis_coefficient": 0.44274105 + } + }, + { + "boundary_conditions": { + "outlet": "BC_lca9" + }, + "vessel_name": "lca9", + "vessel_id": 23, + "vessel_length": 1.7132485, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 8.55904537, + "L": 0.11087353, + "C": 0.00001024, + "stenosis_coefficient": 1.61692094 + } + }, + { + "vessel_name": "branch24_seg0", + "vessel_id": 24, + "vessel_length": 2.49802491, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.03934789, + "L": 0.00907746, + "C": 0.00026594, + "stenosis_coefficient": 0.0 + } + }, + { + "vessel_name": "branch25_seg0", + "vessel_id": 25, + "vessel_length": 2.8067968, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.33806796, + "L": 0.02820412, + "C": 0.00010806, + "stenosis_coefficient": 0.70557854 + } + }, + { + "vessel_name": "branch26_seg0", + "vessel_id": 26, + "vessel_length": 5.66814626, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 1.67039723, + "L": 0.08909133, + "C": 0.00013951, + "stenosis_coefficient": 0.13068133 + } + }, + { + "vessel_name": "branch27_seg0", + "vessel_id": 27, + "vessel_length": 3.2187681, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 5.26722925, + "L": 0.11921777, + "C": 0.00003362, + "stenosis_coefficient": 0.00972055 + } + }, + { + "boundary_conditions": { + "outlet": "BC_rca1" + }, + "vessel_name": "rca1", + "vessel_id": 28, + "vessel_length": 1.64389655, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 5.55012415, + "L": 0.08745681, + "C": 0.0000124, + "stenosis_coefficient": 0.37631306 + } + }, + { + "vessel_name": "branch29_seg0", + "vessel_id": 29, + "vessel_length": 0.7081232, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 0.27550269, + "L": 0.01278858, + "C": 0.00001573, + "stenosis_coefficient": 0.00006426 + } + }, + { + "vessel_name": "branch30_seg0", + "vessel_id": 30, + "vessel_length": 2.84248391, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 5.31519922, + "L": 0.11254179, + "C": 0.0000288, + "stenosis_coefficient": 0.3667861 + } + }, + { + "boundary_conditions": { + "outlet": "BC_rca10" + }, + "vessel_name": "rca10", + "vessel_id": 31, + "vessel_length": 1.21839472, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 15.19167032, + "L": 0.12456665, + "C": 0.00000424, + "stenosis_coefficient": 1.61300559 + } + }, + { + "boundary_conditions": { + "outlet": "BC_rca2" + }, + "vessel_name": "rca2", + "vessel_id": 32, + "vessel_length": 3.27087111, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 7.74895513, + "L": 0.1457667, + "C": 0.00003042, + "stenosis_coefficient": 0.2674042 + } + }, + { + "vessel_name": "branch33_seg0", + "vessel_id": 33, + "vessel_length": 3.86406358, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 6.89361845, + "L": 0.14943447, + "C": 0.00004142, + "stenosis_coefficient": 0.30197805 + } + }, + { + "boundary_conditions": { + "outlet": "BC_rca3" + }, + "vessel_name": "rca3", + "vessel_id": 34, + "vessel_length": 3.79211944, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 20.26259566, + "L": 0.25380114, + "C": 0.00002178, + "stenosis_coefficient": 0.97491397 + } + }, + { + "boundary_conditions": { + "outlet": "BC_rca4" + }, + "vessel_name": "rca4", + "vessel_id": 35, + "vessel_length": 2.62440581, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 19.25114116, + "L": 0.20580161, + "C": 0.0000125, + "stenosis_coefficient": 0.21767635 + } + }, + { + "boundary_conditions": { + "outlet": "BC_rca5" + }, + "vessel_name": "rca5", + "vessel_id": 36, + "vessel_length": 2.67001331, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 10.92529052, + "L": 0.15637893, + "C": 0.00001796, + "stenosis_coefficient": 3.72519237 + } + }, + { + "boundary_conditions": { + "outlet": "BC_rca6" + }, + "vessel_name": "rca6", + "vessel_id": 37, + "vessel_length": 0.70154505, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 8.53998736, + "L": 0.07086984, + "C": 0.00000247, + "stenosis_coefficient": 0.10919271 + } + }, + { + "vessel_name": "branch38_seg0", + "vessel_id": 38, + "vessel_length": 2.35200908, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 2.86606254, + "L": 0.07517395, + "C": 0.00002622, + "stenosis_coefficient": 0.05925971 + } + }, + { + "boundary_conditions": { + "outlet": "BC_rca7" + }, + "vessel_name": "rca7", + "vessel_id": 39, + "vessel_length": 2.40530257, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 13.88168541, + "L": 0.1673058, + "C": 0.0000132, + "stenosis_coefficient": 0.22733188 + } + }, + { + "boundary_conditions": { + "outlet": "BC_rca8" + }, + "vessel_name": "rca8", + "vessel_id": 40, + "vessel_length": 0.98298044, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 8.71842056, + "L": 0.08476106, + "C": 0.00000418, + "stenosis_coefficient": 0.05314967 + } + }, + { + "boundary_conditions": { + "outlet": "BC_rca9" + }, + "vessel_name": "rca9", + "vessel_id": 41, + "vessel_length": 0.57759712, + "zero_d_element_type": "BloodVessel", + "zero_d_element_values": { + "R_poiseuille": 3.41266911, + "L": 0.04065038, + "C": 0.00000313, + "stenosis_coefficient": 0.0 + } + } + ], + "junctions": [ + { + "junction_name": "J0", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [0], + "outlet_vessels": [1, 2, 24] + }, + { + "junction_name": "J1", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [2], + "outlet_vessels": [3, 10] + }, + { + "junction_name": "J2", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [3], + "outlet_vessels": [4, 19] + }, + { + "junction_name": "J3", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [4], + "outlet_vessels": [5, 15, 20] + }, + { + "junction_name": "J4", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [5], + "outlet_vessels": [6, 23] + }, + { + "junction_name": "J5", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [6], + "outlet_vessels": [7, 18] + }, + { + "junction_name": "J6", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [7], + "outlet_vessels": [8, 9] + }, + { + "junction_name": "J7", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [10], + "outlet_vessels": [11, 13] + }, + { + "junction_name": "J8", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [11], + "outlet_vessels": [12, 14] + }, + { + "junction_name": "J9", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [15], + "outlet_vessels": [16, 17] + }, + { + "junction_name": "J10", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [20], + "outlet_vessels": [21, 22] + }, + { + "junction_name": "J11", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [24], + "outlet_vessels": [25, 32] + }, + { + "junction_name": "J12", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [25], + "outlet_vessels": [26, 33, 36] + }, + { + "junction_name": "J13", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [26], + "outlet_vessels": [27, 29] + }, + { + "junction_name": "J14", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [27], + "outlet_vessels": [28, 37] + }, + { + "junction_name": "J15", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [29], + "outlet_vessels": [30, 38] + }, + { + "junction_name": "J16", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [30], + "outlet_vessels": [31, 41] + }, + { + "junction_name": "J17", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [33], + "outlet_vessels": [34, 35] + }, + { + "junction_name": "J18", + "junction_type": "NORMAL_JUNCTION", + "inlet_vessels": [38], + "outlet_vessels": [39, 40] + } + ], + "closed_loop_blocks": [ + { + "outlet_blocks": ["aorta"], + "closed_loop_type": "ClosedLoopHeartAndPulmonary", + "cardiac_cycle_period": 0.9231, + "parameters": { + "Tsa": 0.403594, + "tpwave": 8.975463, + "Erv_s": 1.557941, + "Elv_s": 3.536852, + "iml": 0.58869, + "imr": 0.994136, + "Lrv_a": 0.000375, + "Rrv_a": 0.039082, + "Lra_v": 0.000375, + "Rra_v": 0.00739, + "Lla_v": 0.000375, + "Rla_v": 0.00648, + "Rlv_ao": 0.025915, + "Llv_a": 0.00013, + "Vrv_u": 2.574133, + "Vlv_u": -4.220641, + "Rpd": 0.074351, + "Cp": 1.089993, + "Cpa": 0.352885, + "Kxp_ra": 8.646988, + "Kxv_ra": 0.004883, + "Emax_ra": 0.3, + "Vaso_ra": 4.175754, + "Kxp_la": 8.149902, + "Kxv_la": 0.008012, + "Emax_la": 0.309459, + "Vaso_la": 8.093518 + } } + ], + "initial_condition": { + "V_RA:CLH": 31.2, + "V_RV:CLH": 97.5, + "V_LA:CLH": 31.2, + "V_LV:CLH": 97.5, + "P_pul:CLH": 8.0, + "pressure_all": 69.0 + } } diff --git a/tests/test_interface/test_03/svzerod_3Dcoupling.json b/tests/test_interface/test_03/svzerod_3Dcoupling.json index 10f2af3f9..685d969a4 100644 --- a/tests/test_interface/test_03/svzerod_3Dcoupling.json +++ b/tests/test_interface/test_03/svzerod_3Dcoupling.json @@ -1,35 +1,35 @@ { - "simulation_parameters": { - "coupled_simulation": true, - "number_of_time_pts": 50, - "output_all_cycles": true, - "steady_initial": false - }, - "boundary_conditions": [ - { - "bc_name": "RCR", - "bc_type": "RCR", - "bc_values": { - "Rp": 121.0, - "Rd": 1212.0, - "C": 1.5e-4, - "Pd": 0.0 - } - } - ], - "external_solver_coupling_blocks": [ - { - "name": "RCR_coupling", - "type": "FLOW", - "location": "inlet", - "connected_block": "RCR", - "periodic": false, - "values": { - "t": [0.0, 1.0], - "Q": [1.0, 1.0] - } - } - ], - "junctions": [], - "vessels": [] + "simulation_parameters": { + "coupled_simulation": true, + "number_of_time_pts": 50, + "output_all_cycles": true, + "steady_initial": false + }, + "boundary_conditions": [ + { + "bc_name": "RCR", + "bc_type": "RCR", + "bc_values": { + "Rp": 121.0, + "Rd": 1212.0, + "C": 1.5e-4, + "Pd": 0.0 + } + } + ], + "external_solver_coupling_blocks": [ + { + "name": "RCR_coupling", + "type": "FLOW", + "location": "inlet", + "connected_block": "RCR", + "periodic": false, + "values": { + "t": [0.0, 1.0], + "Q": [1.0, 1.0] + } + } + ], + "junctions": [], + "vessels": [] }